From 61209e2ddb09198c740504d613e84a26dba70842 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 22 Sep 2017 09:58:21 +0100 Subject: [PATCH 001/683] ECC-539: grib_copy/grib_set - suggestion to avoid overwriting files (Part 1) --- tools/grib_tools.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/tools/grib_tools.c b/tools/grib_tools.c index 6b0713552..20665d7a6 100644 --- a/tools/grib_tools.c +++ b/tools/grib_tools.c @@ -14,6 +14,8 @@ */ #include "grib_tools.h" +#include + #if HAVE_LIBJASPER /* Remove compiler warnings re macros being redefined */ #undef PACKAGE_BUGREPORT @@ -982,6 +984,16 @@ void grib_print_full_statistics(grib_runtime_options* options) options->filter_handle_count,options->handle_count,options->file_count); } +static int filenames_equal(const char * f1, const char * f2) +{ + char resolved1[8192] = {0,}; + char resolved2[8192] = {0,}; + realpath(f1, resolved1); + realpath(f2, resolved2); + int eq = (strcmp(resolved1, resolved2)==0); + return eq; +} + void grib_tools_write_message(grib_runtime_options* options, grib_handle* h) { const void *buffer; @@ -1001,6 +1013,13 @@ void grib_tools_write_message(grib_runtime_options* options, grib_handle* h) err = grib_recompose_name(h, NULL, options->outfile->name, filename, 0); + // Check outfile is not same as infile + if (filenames_equal(options->infile->name, filename)) { + grib_context_log(h->context, GRIB_LOG_ERROR, + "output file '%s' is the same as input file. Aborting\n", filename); + exit(GRIB_IO_PROBLEM); + } + of = grib_file_open(filename, "w", &err); if (!of || !of->handle) { From 7eb6c3439b338d55abea2e5d65f2f5558dfc7673 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 21 Nov 2019 14:51:37 +0000 Subject: [PATCH 002/683] ECC-1028: Segmentation fault: bufr_dump -d on message with incorrect replication --- src/grib_accessor_class_expanded_descriptors.c | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/src/grib_accessor_class_expanded_descriptors.c b/src/grib_accessor_class_expanded_descriptors.c index e0cf65c22..f0236e0ae 100644 --- a/src/grib_accessor_class_expanded_descriptors.c +++ b/src/grib_accessor_class_expanded_descriptors.c @@ -739,18 +739,16 @@ static int pack_long(grib_accessor* a, const long* val, size_t *len) static int value_count(grib_accessor* a,long* rlen) { grib_accessor_expanded_descriptors* self = (grib_accessor_expanded_descriptors*)a; - int ret=0; - grib_context* c=a->context; + int err=0; *rlen=0; - ret=expand(a); - *rlen=BUFR_DESCRIPTORS_ARRAY_USED_SIZE(self->expanded); - if (ret) { - grib_context_log(c,GRIB_LOG_ERROR,"%s unable to compute size",a->name); - return ret; + err=expand(a); + if (err) { + grib_context_log(a->context,GRIB_LOG_ERROR,"%s unable to compute size",a->name); + return err; } - - return ret; + *rlen=BUFR_DESCRIPTORS_ARRAY_USED_SIZE(self->expanded); + return err; } static void destroy(grib_context* c,grib_accessor* a) From b9543befce03110b08639bf7266ad7ef8584a3fc Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 21 Nov 2019 15:36:35 +0000 Subject: [PATCH 003/683] Update from tigge_check: pl levels update for CERRA --- tigge/tigge_check.c | 43 +++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 41 insertions(+), 2 deletions(-) diff --git a/tigge/tigge_check.c b/tigge/tigge_check.c index 615782211..235b42e2f 100755 --- a/tigge/tigge_check.c +++ b/tigge/tigge_check.c @@ -554,7 +554,7 @@ static void pressure_level(grib_handle* h,const parameter* p,double min,double m { long level = get(h,"level"); - if (is_uerra){ + if (is_uerra && !is_crra){ switch(level) { case 1000: @@ -577,7 +577,7 @@ static void pressure_level(grib_handle* h,const parameter* p,double min,double m case 150: case 100: case 70: - case 50: + case 50: case 30: case 20: case 10: @@ -588,6 +588,45 @@ static void pressure_level(grib_handle* h,const parameter* p,double min,double m break; } } + else if (is_uerra && is_crra){ + switch(level) + { + case 1000: + case 975: + case 950: + case 925: + case 900: + case 875: + case 850: + case 825: + case 800: + case 750: + case 700: + case 600: + case 500: + case 400: + case 300: + case 250: + case 200: + case 150: + case 100: + case 70: + case 50: + case 30: + case 20: + case 10: + case 7: + case 5: + case 3: + case 2: + case 1: + break; + default: + printf("%s, field %d [%s]: invalid pressure level %ld\n",file,field,param,level); + error++; + break; + } + } else if (is_s2s){ switch(level) { From 3ae397bc8197709a66076e49d6a05aa0585325ad Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 22 Nov 2019 10:49:12 +0000 Subject: [PATCH 004/683] Definitions: Add missing tables --- definitions/grib2/tables/22/1.4.table | 13 +++++ definitions/grib2/tables/22/3.15.table | 23 ++++++++ definitions/grib2/tables/22/4.10.table | 16 ++++++ definitions/grib2/tables/22/4.4.table | 17 ++++++ definitions/grib2/tables/22/4.5.table | 72 ++++++++++++++++++++++++++ definitions/grib2/tables/22/4.91.table | 16 ++++++ 6 files changed, 157 insertions(+) create mode 100644 definitions/grib2/tables/22/1.4.table create mode 100644 definitions/grib2/tables/22/3.15.table create mode 100644 definitions/grib2/tables/22/4.10.table create mode 100644 definitions/grib2/tables/22/4.4.table create mode 100644 definitions/grib2/tables/22/4.5.table create mode 100644 definitions/grib2/tables/22/4.91.table diff --git a/definitions/grib2/tables/22/1.4.table b/definitions/grib2/tables/22/1.4.table new file mode 100644 index 000000000..03203d874 --- /dev/null +++ b/definitions/grib2/tables/22/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/definitions/grib2/tables/22/3.15.table b/definitions/grib2/tables/22/3.15.table new file mode 100644 index 000000000..331217ebe --- /dev/null +++ b/definitions/grib2/tables/22/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.10.table b/definitions/grib2/tables/22/4.10.table new file mode 100644 index 000000000..1a92baaf6 --- /dev/null +++ b/definitions/grib2/tables/22/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/definitions/grib2/tables/22/4.4.table b/definitions/grib2/tables/22/4.4.table new file mode 100644 index 000000000..7087ebddb --- /dev/null +++ b/definitions/grib2/tables/22/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.5.table b/definitions/grib2/tables/22/4.5.table new file mode 100644 index 000000000..35df9e2aa --- /dev/null +++ b/definitions/grib2/tables/22/4.5.table @@ -0,0 +1,72 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface (-) +2 2 Cloud base level (-) +3 3 Level of cloud tops (-) +4 4 Level of 0 degree C isotherm (-) +5 5 Level of adiabatic condensation lifted from the surface (-) +6 6 Maximum wind level (-) +7 7 Tropopause (-) +8 sfc Nominal top of the atmosphere (-) +9 9 Sea bottom (-) +10 10 Entire atmosphere (-) +11 11 Cumulonimbus [CB] base (m) +12 12 Cumulonimbus [CB] top (m) +13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage [cloud base for a given percentage cloud cover] (%) +14 14 Level of free convection (LFC) +15 15 Convective condensation level (CCL) +16 16 Level of neutral buoyancy or equilibrium level (LNB) +# 17-19 Reserved +20 20 Isothermal level (K) +21 21 Lowest level where mass density exceeds the specified value [base for a given threshold of mass density] (kg m-3) +22 22 Highest level where mass density exceeds the specified value [top for a given threshold of mass density] (kg m-3) +23 23 Lowest level where air concentration exceeds the specified value [base for a given threshold of air concentration] (Bq m-3) +24 24 Highest level where air concentration exceeds the specified value [top for a given threshold of air concentration] (Bq m-3) +# 25-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level (-) +106 sfc Depth below land surface (m) +107 pt Isentropic [theta] level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level (-) +112 112 Reserved +113 113 Logarithmic hybrid level +114 114 Snow level (Numeric) +115 115 Sigma height level +# 116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level (-) +119 hpl Hybrid pressure level (-) +# 120-149 Reserved +150 150 Generalized vertical height coordinate +151 sol Soil level (Numeric) +# 152-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom (-) +163 163 Bottom of sediment layer (-) +164 164 Bottom of thermally active sediment layer (-) +165 165 Bottom of sediment layer penetrated by thermal wave (-) +166 166 Mixing layer (-) +167 167 Bottom of root zone (-) +# 168-173 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +# 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.91.table b/definitions/grib2/tables/22/4.91.table new file mode 100644 index 000000000..44cf25f44 --- /dev/null +++ b/definitions/grib2/tables/22/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing From e1b99a7f3974ae770d23916650ba12d4e9061981 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 25 Nov 2019 14:18:17 +0000 Subject: [PATCH 005/683] Definitions: remove unnecessary notes from code tables --- definitions/grib2/tables/0/3.15.table | 8 -------- definitions/grib2/tables/0/4.2.1.0.table | 7 ------- definitions/grib2/tables/1/3.15.table | 8 -------- definitions/grib2/tables/1/4.2.1.0.table | 7 ------- definitions/grib2/tables/2/3.15.table | 8 -------- definitions/grib2/tables/2/4.2.1.0.table | 7 ------- definitions/grib2/tables/3/3.15.table | 8 -------- definitions/grib2/tables/3/4.2.1.0.table | 7 ------- definitions/grib2/tables/4/3.15.table | 3 --- definitions/grib2/tables/4/4.2.1.0.table | 5 ----- definitions/grib2/tables/5/3.15.table | 3 --- definitions/grib2/tables/6/3.15.table | 4 ---- definitions/grib2/tables/7/3.15.table | 8 -------- 13 files changed, 83 deletions(-) diff --git a/definitions/grib2/tables/0/3.15.table b/definitions/grib2/tables/0/3.15.table index bb431e14f..d4f7e0ed2 100644 --- a/definitions/grib2/tables/0/3.15.table +++ b/definitions/grib2/tables/0/3.15.table @@ -1,7 +1,5 @@ # CODE TABLE 3.15, Physical meaning of vertical coordinate -# 0-19 Reserved 20 20 Temperature K -# 21-99 Reserved 100 100 Pressure Pa 101 101 Pressure deviation from mean sea level Pa 102 102 Altitude above mean sea level m @@ -15,11 +13,5 @@ 110 110 Geometrical height m 111 111 Eta coordinate (see Note 2) 112 112 Geopotential height gpm -# 113-159 Reserved 160 160 Depth below sea level m -# 161-191 Reserved -# 192-254 Reserved for local use 255 255 Missing -# Notes: -# (1) Negative values associated to this coordinate will indicate depth below ground surface. If values are all below surface, use of entry 106 is recommended, with positive coordinate values instead. -# (2) The Eta vertical coordinate system involves normalizing the pressure at some point on a specific level by the mean sea level pressure at that point. diff --git a/definitions/grib2/tables/0/4.2.1.0.table b/definitions/grib2/tables/0/4.2.1.0.table index 97efaa8cc..828c869de 100644 --- a/definitions/grib2/tables/0/4.2.1.0.table +++ b/definitions/grib2/tables/0/4.2.1.0.table @@ -6,11 +6,4 @@ 4 4 Snow water equivalent percent of normal (%) 5 5 Baseflow-groundwater runoff (kg m-2) 6 6 Storm surface runoff (kg m-2) -# 7-191 Reserved -# 192-254 Reserved for local use 255 255 Missing -# Notes: -# (1) Remotely sensed snow cover is expressed as a field of dimensionless, thematic values. The currently accepted values are for no-snow/no-cloud, 50, for clouds, 100, and for snow, 250. See code table 4.215. -# (2) A data field representing snow coverage by elevation portrays at which elevations there is a snow pack. The elevation values typically range from 0 to 90 in 100 m increments. A value of 253 is used to represent a no-snow/no-cloud data point. A value of 254 is used to represent a data point at which snow elevation could not be estimated because of clouds obscuring the remote sensor (when using aircraft or satellite measurements). -# (3) Snow water equivalent percent of normal is stored in percent of normal units. For example, a value of 110 indicates 110 percent of the normal snow water equivalent for a given depth of snow. - diff --git a/definitions/grib2/tables/1/3.15.table b/definitions/grib2/tables/1/3.15.table index bb431e14f..d4f7e0ed2 100644 --- a/definitions/grib2/tables/1/3.15.table +++ b/definitions/grib2/tables/1/3.15.table @@ -1,7 +1,5 @@ # CODE TABLE 3.15, Physical meaning of vertical coordinate -# 0-19 Reserved 20 20 Temperature K -# 21-99 Reserved 100 100 Pressure Pa 101 101 Pressure deviation from mean sea level Pa 102 102 Altitude above mean sea level m @@ -15,11 +13,5 @@ 110 110 Geometrical height m 111 111 Eta coordinate (see Note 2) 112 112 Geopotential height gpm -# 113-159 Reserved 160 160 Depth below sea level m -# 161-191 Reserved -# 192-254 Reserved for local use 255 255 Missing -# Notes: -# (1) Negative values associated to this coordinate will indicate depth below ground surface. If values are all below surface, use of entry 106 is recommended, with positive coordinate values instead. -# (2) The Eta vertical coordinate system involves normalizing the pressure at some point on a specific level by the mean sea level pressure at that point. diff --git a/definitions/grib2/tables/1/4.2.1.0.table b/definitions/grib2/tables/1/4.2.1.0.table index 97efaa8cc..828c869de 100644 --- a/definitions/grib2/tables/1/4.2.1.0.table +++ b/definitions/grib2/tables/1/4.2.1.0.table @@ -6,11 +6,4 @@ 4 4 Snow water equivalent percent of normal (%) 5 5 Baseflow-groundwater runoff (kg m-2) 6 6 Storm surface runoff (kg m-2) -# 7-191 Reserved -# 192-254 Reserved for local use 255 255 Missing -# Notes: -# (1) Remotely sensed snow cover is expressed as a field of dimensionless, thematic values. The currently accepted values are for no-snow/no-cloud, 50, for clouds, 100, and for snow, 250. See code table 4.215. -# (2) A data field representing snow coverage by elevation portrays at which elevations there is a snow pack. The elevation values typically range from 0 to 90 in 100 m increments. A value of 253 is used to represent a no-snow/no-cloud data point. A value of 254 is used to represent a data point at which snow elevation could not be estimated because of clouds obscuring the remote sensor (when using aircraft or satellite measurements). -# (3) Snow water equivalent percent of normal is stored in percent of normal units. For example, a value of 110 indicates 110 percent of the normal snow water equivalent for a given depth of snow. - diff --git a/definitions/grib2/tables/2/3.15.table b/definitions/grib2/tables/2/3.15.table index bb431e14f..d4f7e0ed2 100644 --- a/definitions/grib2/tables/2/3.15.table +++ b/definitions/grib2/tables/2/3.15.table @@ -1,7 +1,5 @@ # CODE TABLE 3.15, Physical meaning of vertical coordinate -# 0-19 Reserved 20 20 Temperature K -# 21-99 Reserved 100 100 Pressure Pa 101 101 Pressure deviation from mean sea level Pa 102 102 Altitude above mean sea level m @@ -15,11 +13,5 @@ 110 110 Geometrical height m 111 111 Eta coordinate (see Note 2) 112 112 Geopotential height gpm -# 113-159 Reserved 160 160 Depth below sea level m -# 161-191 Reserved -# 192-254 Reserved for local use 255 255 Missing -# Notes: -# (1) Negative values associated to this coordinate will indicate depth below ground surface. If values are all below surface, use of entry 106 is recommended, with positive coordinate values instead. -# (2) The Eta vertical coordinate system involves normalizing the pressure at some point on a specific level by the mean sea level pressure at that point. diff --git a/definitions/grib2/tables/2/4.2.1.0.table b/definitions/grib2/tables/2/4.2.1.0.table index 97efaa8cc..828c869de 100644 --- a/definitions/grib2/tables/2/4.2.1.0.table +++ b/definitions/grib2/tables/2/4.2.1.0.table @@ -6,11 +6,4 @@ 4 4 Snow water equivalent percent of normal (%) 5 5 Baseflow-groundwater runoff (kg m-2) 6 6 Storm surface runoff (kg m-2) -# 7-191 Reserved -# 192-254 Reserved for local use 255 255 Missing -# Notes: -# (1) Remotely sensed snow cover is expressed as a field of dimensionless, thematic values. The currently accepted values are for no-snow/no-cloud, 50, for clouds, 100, and for snow, 250. See code table 4.215. -# (2) A data field representing snow coverage by elevation portrays at which elevations there is a snow pack. The elevation values typically range from 0 to 90 in 100 m increments. A value of 253 is used to represent a no-snow/no-cloud data point. A value of 254 is used to represent a data point at which snow elevation could not be estimated because of clouds obscuring the remote sensor (when using aircraft or satellite measurements). -# (3) Snow water equivalent percent of normal is stored in percent of normal units. For example, a value of 110 indicates 110 percent of the normal snow water equivalent for a given depth of snow. - diff --git a/definitions/grib2/tables/3/3.15.table b/definitions/grib2/tables/3/3.15.table index bb431e14f..d4f7e0ed2 100644 --- a/definitions/grib2/tables/3/3.15.table +++ b/definitions/grib2/tables/3/3.15.table @@ -1,7 +1,5 @@ # CODE TABLE 3.15, Physical meaning of vertical coordinate -# 0-19 Reserved 20 20 Temperature K -# 21-99 Reserved 100 100 Pressure Pa 101 101 Pressure deviation from mean sea level Pa 102 102 Altitude above mean sea level m @@ -15,11 +13,5 @@ 110 110 Geometrical height m 111 111 Eta coordinate (see Note 2) 112 112 Geopotential height gpm -# 113-159 Reserved 160 160 Depth below sea level m -# 161-191 Reserved -# 192-254 Reserved for local use 255 255 Missing -# Notes: -# (1) Negative values associated to this coordinate will indicate depth below ground surface. If values are all below surface, use of entry 106 is recommended, with positive coordinate values instead. -# (2) The Eta vertical coordinate system involves normalizing the pressure at some point on a specific level by the mean sea level pressure at that point. diff --git a/definitions/grib2/tables/3/4.2.1.0.table b/definitions/grib2/tables/3/4.2.1.0.table index 97efaa8cc..828c869de 100644 --- a/definitions/grib2/tables/3/4.2.1.0.table +++ b/definitions/grib2/tables/3/4.2.1.0.table @@ -6,11 +6,4 @@ 4 4 Snow water equivalent percent of normal (%) 5 5 Baseflow-groundwater runoff (kg m-2) 6 6 Storm surface runoff (kg m-2) -# 7-191 Reserved -# 192-254 Reserved for local use 255 255 Missing -# Notes: -# (1) Remotely sensed snow cover is expressed as a field of dimensionless, thematic values. The currently accepted values are for no-snow/no-cloud, 50, for clouds, 100, and for snow, 250. See code table 4.215. -# (2) A data field representing snow coverage by elevation portrays at which elevations there is a snow pack. The elevation values typically range from 0 to 90 in 100 m increments. A value of 253 is used to represent a no-snow/no-cloud data point. A value of 254 is used to represent a data point at which snow elevation could not be estimated because of clouds obscuring the remote sensor (when using aircraft or satellite measurements). -# (3) Snow water equivalent percent of normal is stored in percent of normal units. For example, a value of 110 indicates 110 percent of the normal snow water equivalent for a given depth of snow. - diff --git a/definitions/grib2/tables/4/3.15.table b/definitions/grib2/tables/4/3.15.table index bb431e14f..6a035be56 100644 --- a/definitions/grib2/tables/4/3.15.table +++ b/definitions/grib2/tables/4/3.15.table @@ -20,6 +20,3 @@ # 161-191 Reserved # 192-254 Reserved for local use 255 255 Missing -# Notes: -# (1) Negative values associated to this coordinate will indicate depth below ground surface. If values are all below surface, use of entry 106 is recommended, with positive coordinate values instead. -# (2) The Eta vertical coordinate system involves normalizing the pressure at some point on a specific level by the mean sea level pressure at that point. diff --git a/definitions/grib2/tables/4/4.2.1.0.table b/definitions/grib2/tables/4/4.2.1.0.table index 97efaa8cc..1e867e1cb 100644 --- a/definitions/grib2/tables/4/4.2.1.0.table +++ b/definitions/grib2/tables/4/4.2.1.0.table @@ -9,8 +9,3 @@ # 7-191 Reserved # 192-254 Reserved for local use 255 255 Missing -# Notes: -# (1) Remotely sensed snow cover is expressed as a field of dimensionless, thematic values. The currently accepted values are for no-snow/no-cloud, 50, for clouds, 100, and for snow, 250. See code table 4.215. -# (2) A data field representing snow coverage by elevation portrays at which elevations there is a snow pack. The elevation values typically range from 0 to 90 in 100 m increments. A value of 253 is used to represent a no-snow/no-cloud data point. A value of 254 is used to represent a data point at which snow elevation could not be estimated because of clouds obscuring the remote sensor (when using aircraft or satellite measurements). -# (3) Snow water equivalent percent of normal is stored in percent of normal units. For example, a value of 110 indicates 110 percent of the normal snow water equivalent for a given depth of snow. - diff --git a/definitions/grib2/tables/5/3.15.table b/definitions/grib2/tables/5/3.15.table index bb431e14f..6a035be56 100644 --- a/definitions/grib2/tables/5/3.15.table +++ b/definitions/grib2/tables/5/3.15.table @@ -20,6 +20,3 @@ # 161-191 Reserved # 192-254 Reserved for local use 255 255 Missing -# Notes: -# (1) Negative values associated to this coordinate will indicate depth below ground surface. If values are all below surface, use of entry 106 is recommended, with positive coordinate values instead. -# (2) The Eta vertical coordinate system involves normalizing the pressure at some point on a specific level by the mean sea level pressure at that point. diff --git a/definitions/grib2/tables/6/3.15.table b/definitions/grib2/tables/6/3.15.table index bb431e14f..b3adaeb33 100644 --- a/definitions/grib2/tables/6/3.15.table +++ b/definitions/grib2/tables/6/3.15.table @@ -1,5 +1,4 @@ # CODE TABLE 3.15, Physical meaning of vertical coordinate -# 0-19 Reserved 20 20 Temperature K # 21-99 Reserved 100 100 Pressure Pa @@ -20,6 +19,3 @@ # 161-191 Reserved # 192-254 Reserved for local use 255 255 Missing -# Notes: -# (1) Negative values associated to this coordinate will indicate depth below ground surface. If values are all below surface, use of entry 106 is recommended, with positive coordinate values instead. -# (2) The Eta vertical coordinate system involves normalizing the pressure at some point on a specific level by the mean sea level pressure at that point. diff --git a/definitions/grib2/tables/7/3.15.table b/definitions/grib2/tables/7/3.15.table index eb83c1b42..337bdce96 100644 --- a/definitions/grib2/tables/7/3.15.table +++ b/definitions/grib2/tables/7/3.15.table @@ -1,7 +1,5 @@ # CODE TABLE 3.15, Physical meaning of vertical coordinate -# 0-19 Reserved 20 20 Temperature (K) -# 21-99 Reserved 100 100 Pressure (Pa) 101 101 Pressure deviation from mean sea level (Pa) 102 102 Altitude above mean sea level (m) @@ -15,11 +13,5 @@ 110 110 Geometrical height (m) 111 111 Eta coordinate (see Note 2) 112 112 Geopotential height (gpm) -# 113-159 Reserved 160 160 Depth below sea level (m) -# 161-191 Reserved -# 192-254 Reserved for local use 255 255 Missing -# Notes: -# (1) Negative values associated to this coordinate will indicate depth below ground surface. If values are all below surface, use of entry 106 is recommended, with positive coordinate values instead. -# (2) The Eta vertical coordinate system involves normalizing the pressure at some point on a specific level by the mean sea level pressure at that point. From 76f3cd31713d3e77b360c99dc31ddc3abe571363 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 26 Nov 2019 10:56:41 +0000 Subject: [PATCH 006/683] ECC-1030: grib_get: Add '-B' option for ordering --- tests/CMakeLists.txt | 1 + tests/grib_ecc-1030.sh | 51 ++++++++++++++++++++++++++++++++++++++++++ tools/grib_get.c | 6 +---- tools/grib_options.c | 6 ++--- 4 files changed, 56 insertions(+), 8 deletions(-) create mode 100755 tests/grib_ecc-1030.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index f62ad4a13..36878b44f 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -118,6 +118,7 @@ list( APPEND tests_data_reqd grib_ecc-984 grib_ecc-1000 grib_ecc-1001 + grib_ecc-1030 bufr_ecc-556 gts_get gts_ls diff --git a/tests/grib_ecc-1030.sh b/tests/grib_ecc-1030.sh new file mode 100755 index 000000000..96a102110 --- /dev/null +++ b/tests/grib_ecc-1030.sh @@ -0,0 +1,51 @@ +#!/bin/sh +# Copyright 2005-2019 ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +# --------------------------------------------------------- +# This is the test for the JIRA issue ECC-1030 +# grib_get with the ordering option '-B' +# --------------------------------------------------------- +label="grib_ecc-1030-test" +tempRef=temp.${label}.ref +tempOut=temp.${label}.out + +# Test 1 +# ------ +input=${data_dir}/pad.grib +${tools_dir}/grib_get -p count,level -B'level:i' $input > $tempOut +cat > $tempRef < $tempOut +cat > $tempRef <integer, d->float, s->string, n->namespace." From 3a2e1dbbcc0d99929c27a0f5de6687aa4512a3cb Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 26 Nov 2019 15:55:01 +0000 Subject: [PATCH 007/683] Remove the error message. In IFS 1000s of messages are posted. Need to track the guilty party --- src/grib_accessor_class_ascii.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grib_accessor_class_ascii.c b/src/grib_accessor_class_ascii.c index 6ec67e107..10207e0ed 100644 --- a/src/grib_accessor_class_ascii.c +++ b/src/grib_accessor_class_ascii.c @@ -256,7 +256,7 @@ static int unpack_double (grib_accessor* a, double*v, size_t *len) return GRIB_SUCCESS; } - grib_context_log(a->context,GRIB_LOG_ERROR,"Cannot unpack %s as double. Hint: Try unpacking as string",a->name); + grib_context_log(a->context,GRIB_LOG_WARNING,"Cannot unpack %s as double. Hint: Try unpacking as string",a->name); return GRIB_NOT_IMPLEMENTED; } From 98b3f9ed8520d5d68e540af7c4824c7950d26d42 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 26 Nov 2019 15:55:24 +0000 Subject: [PATCH 008/683] REVERT ECC-827 and ECC-962 due to regression. See SD-27528 --- tools/grib_to_netcdf.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/tools/grib_to_netcdf.c b/tools/grib_to_netcdf.c index d20d45d0c..176c18782 100644 --- a/tools/grib_to_netcdf.c +++ b/tools/grib_to_netcdf.c @@ -1989,11 +1989,14 @@ static void validation_time(request *r) if(ndate) { const char* p = get_value(r, "date", 0); - const char* hdate = get_value(r, "hdate", 0); - /* All hindcast Data. See GRIB-699, GRIB-762 and ECC-962 */ - if (hdate) { - grib_context_log(ctx, GRIB_LOG_DEBUG, "grib_to_netcdf: Hindcast data hdate=%s", hdate); - p = hdate; /* Don't use 'date'. Use the hindcast date instead */ + const char* marsClass = get_value(r, "class", 0); + if (eq_string(marsClass, "s2")) { + /* S2S Data. See GRIB-699 and GRIB-762 */ + const char* hdate = get_value(r, "hdate", 0); + grib_context_log(ctx, GRIB_LOG_DEBUG, "grib_to_netcdf: S2S Data"); + if (hdate) { + p = hdate; /* This is a hindcast */ + } } if(is_number(p)) date = atol(p); From 0a2a1d3afd00c80ec84ed47ca40839fa72fd7afd Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 10 Jan 2020 14:03:02 +0000 Subject: [PATCH 009/683] Indentation and formatting --- src/grib_accessor_class_box.c | 29 +- src/grib_accessor_class_constant.c | 37 +- ...grib_accessor_class_data_complex_packing.c | 9 +- src/grib_accessor_class_double.c | 19 +- src/grib_accessor_class_evaluate.c | 28 +- src/grib_accessor_class_g1bitmap.c | 18 +- src/grib_accessor_class_g1fcperiod.c | 33 +- src/grib_accessor_class_label.c | 28 +- src/grib_accessor_class_latlon_increment.c | 10 +- src/grib_accessor_class_local_definition.c | 3 +- src/grib_accessor_class_long_vector.c | 123 ++--- src/grib_accessor_class_message.c | 48 +- src/grib_accessor_class_message_copy.c | 39 +- src/grib_accessor_class_nearest.c | 31 +- src/grib_accessor_class_offset_file.c | 47 +- src/grib_accessor_class_pack_bufr_values.c | 63 +-- src/grib_accessor_class_padding.c | 27 +- src/grib_accessor_class_padtoeven.c | 40 +- src/grib_accessor_class_size.c | 27 +- src/grib_dumper_class_grib_encode_C.c | 515 +++++++++--------- src/grib_dumper_class_serialize.c | 489 ++++++++--------- src/grib_expression_class_is_in_list.c | 209 ++++--- src/grib_expression_class_is_integer.c | 131 +++-- 23 files changed, 981 insertions(+), 1022 deletions(-) diff --git a/src/grib_accessor_class_box.c b/src/grib_accessor_class_box.c index dfcb8148c..7ed4bc27f 100644 --- a/src/grib_accessor_class_box.c +++ b/src/grib_accessor_class_box.c @@ -131,31 +131,30 @@ static void init_class(grib_accessor_class* c) static void init(grib_accessor* a,const long l, grib_arguments* args) { - grib_accessor_box* self = (grib_accessor_box*)a; - self->args = args; + grib_accessor_box* self = (grib_accessor_box*)a; + self->args = args; } static void dump(grib_accessor* a,grib_dumper* dumper) { - /* TODO: pass args */ - grib_dump_label(dumper,a,NULL); + /* TODO: pass args */ + grib_dump_label(dumper,a,NULL); } grib_box* grib_box_new(grib_handle* h,int* error) { - grib_accessor* a = NULL; - grib_accessor_box* na =NULL; - grib_box* n =NULL; - *error=GRIB_NOT_IMPLEMENTED; - a = grib_find_accessor(h,"BOX"); - na = (grib_accessor_box*)a; + grib_accessor* a = NULL; + grib_accessor_box* na =NULL; + grib_box* n =NULL; + *error=GRIB_NOT_IMPLEMENTED; + a = grib_find_accessor(h,"BOX"); + na = (grib_accessor_box*)a; - if (!a) return NULL; + if (!a) return NULL; - n = grib_box_factory(h,na->args); + n = grib_box_factory(h,na->args); - if (n) *error=GRIB_SUCCESS; + if (n) *error=GRIB_SUCCESS; - return n; + return n; } - diff --git a/src/grib_accessor_class_constant.c b/src/grib_accessor_class_constant.c index 3f6ef998e..20f8c98a6 100644 --- a/src/grib_accessor_class_constant.c +++ b/src/grib_accessor_class_constant.c @@ -136,40 +136,39 @@ static void init_class(grib_accessor_class* c) /* END_CLASS_IMP */ - -void accessor_constant_set_type(grib_accessor* a,int type) { - grib_accessor_constant* self = (grib_accessor_constant*)a; - self->type=type; -} - -void accessor_constant_set_dval(grib_accessor* a,double dval) { - grib_accessor_constant* self = (grib_accessor_constant*)a; - self->dval=dval; -} - - -static void init(grib_accessor* a, const long len , grib_arguments* arg ) +void accessor_constant_set_type(grib_accessor* a,int type) { - a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; + grib_accessor_constant* self = (grib_accessor_constant*)a; + self->type=type; +} + +void accessor_constant_set_dval(grib_accessor* a,double dval) +{ + grib_accessor_constant* self = (grib_accessor_constant*)a; + self->dval=dval; +} + +static void init(grib_accessor* a, const long len , grib_arguments* arg) +{ + a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; } static int pack_bytes(grib_accessor* a,const unsigned char* val, size_t *len) { - return GRIB_READ_ONLY; + return GRIB_READ_ONLY; } static int pack_double(grib_accessor* a, const double* val,size_t *len) { - return GRIB_READ_ONLY; + return GRIB_READ_ONLY; } static int pack_long(grib_accessor* a, const long* val,size_t *len) { - return GRIB_READ_ONLY; + return GRIB_READ_ONLY; } static int pack_string(grib_accessor* a, const char* val, size_t *len) { - return GRIB_READ_ONLY; + return GRIB_READ_ONLY; } - diff --git a/src/grib_accessor_class_data_complex_packing.c b/src/grib_accessor_class_data_complex_packing.c index 1ed10628d..2339d558a 100644 --- a/src/grib_accessor_class_data_complex_packing.c +++ b/src/grib_accessor_class_data_complex_packing.c @@ -380,11 +380,10 @@ static int unpack_double(grib_accessor* a, double* val, size_t *len) } /* - printf("UNPACKING LAPLACE=%.20f\n",laplacianOperator); - - printf("packed offset=%ld\n",packed_offset); - for(i=0;iflags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) - { - int e=grib_unpack_double(a,&value,&one); - Assert(e == 0); - return value == GRIB_MISSING_DOUBLE; - } - return 0; + if(a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) + { + int e=grib_unpack_double(a,&value,&one); + Assert(e == 0); + return value == GRIB_MISSING_DOUBLE; + } + return 0; } */ diff --git a/src/grib_accessor_class_evaluate.c b/src/grib_accessor_class_evaluate.c index 10974350a..e10d8e91b 100644 --- a/src/grib_accessor_class_evaluate.c +++ b/src/grib_accessor_class_evaluate.c @@ -132,28 +132,24 @@ static void init_class(grib_accessor_class* c) static void init(grib_accessor* a,const long l, grib_arguments* c) { - grib_accessor_evaluate* self = (grib_accessor_evaluate*)a; - self->arg = c; - a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; + grib_accessor_evaluate* self = (grib_accessor_evaluate*)a; + self->arg = c; + a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; } -static int pack_long(grib_accessor* a, const long* val, size_t *len){ - - return GRIB_NOT_IMPLEMENTED; - +static int pack_long(grib_accessor* a, const long* val, size_t *len) +{ + return GRIB_NOT_IMPLEMENTED; } - static int unpack_long(grib_accessor* a, long* val, size_t *len) { - int ret=0; - grib_accessor_evaluate* self = (grib_accessor_evaluate*)a; - grib_expression* e = grib_arguments_get_expression(grib_handle_of_accessor(a),self->arg,0); + int ret=0; + grib_accessor_evaluate* self = (grib_accessor_evaluate*)a; + grib_expression* e = grib_arguments_get_expression(grib_handle_of_accessor(a),self->arg,0); + ret = grib_expression_evaluate_long(grib_handle_of_accessor(a),e,val); + *len = 1; - ret = grib_expression_evaluate_long(grib_handle_of_accessor(a),e,val); - *len = 1; - - return ret; + return ret; } - diff --git a/src/grib_accessor_class_g1bitmap.c b/src/grib_accessor_class_g1bitmap.c index e4808bb84..aa685f930 100644 --- a/src/grib_accessor_class_g1bitmap.c +++ b/src/grib_accessor_class_g1bitmap.c @@ -139,19 +139,15 @@ static void init_class(grib_accessor_class* c) static void grib_set_bit_on( unsigned char* p, long *bitp); -static void init(grib_accessor* a, const long len , grib_arguments* arg ) +static void init(grib_accessor* a, const long len , grib_arguments* arg) { - grib_accessor_g1bitmap* self = (grib_accessor_g1bitmap*)a; - self->unusedBits = grib_arguments_get_name(grib_handle_of_accessor(a),arg,4); - } - -static int pack_double(grib_accessor* a, const double* val,size_t *len){ +static int pack_double(grib_accessor* a, const double* val,size_t *len) +{ grib_accessor_g1bitmap* self = (grib_accessor_g1bitmap*)a; - size_t tlen; unsigned char* buf = NULL; @@ -191,7 +187,6 @@ static int pack_double(grib_accessor* a, const double* val,size_t *len){ return GRIB_SUCCESS; } - static int value_count(grib_accessor* a,long* count) { grib_accessor_g1bitmap* self = (grib_accessor_g1bitmap*)a; @@ -201,8 +196,8 @@ static int value_count(grib_accessor* a,long* count) if ((err=grib_get_long_internal(grib_handle_of_accessor(a), self->unusedBits, &tlen)) != GRIB_SUCCESS) grib_context_log(a->context, GRIB_LOG_ERROR, "grib_accessor_class_bitmap.value_count : cannot get %s err=%d",self->unusedBits,err); - *count = (a->length*8)-tlen; - return err; + *count = (a->length*8)-tlen; + return err; } static int unpack_bytes(grib_accessor* a, unsigned char* val, size_t *len) @@ -232,7 +227,8 @@ static int unpack_bytes(grib_accessor* a, unsigned char* val, size_t *len) return GRIB_SUCCESS; } -static void grib_set_bit_on( unsigned char* p, long *bitp){ +static void grib_set_bit_on( unsigned char* p, long *bitp) +{ unsigned char o = 1; p += (*bitp >> 3); o <<= 7-((*bitp)%8); diff --git a/src/grib_accessor_class_g1fcperiod.c b/src/grib_accessor_class_g1fcperiod.c index fe7eaccf8..dad7d2c85 100644 --- a/src/grib_accessor_class_g1fcperiod.c +++ b/src/grib_accessor_class_g1fcperiod.c @@ -138,30 +138,27 @@ static void init_class(grib_accessor_class* c) /* END_CLASS_IMP */ - static int unpack_string(grib_accessor* a, char* val, size_t *len) { - long start = 0, theEnd = 0; - char tmp[1024]; - int err = grib_g1_step_get_steps(a,&start,&theEnd); - size_t l = 0; + long start = 0, theEnd = 0; + char tmp[1024]; + int err = grib_g1_step_get_steps(a,&start,&theEnd); + size_t l = 0; + if(err) return err; - if(err) return err; + sprintf(tmp,"%ld-%ld",start/24,theEnd/24); + /*printf("---- FCPERIOD %s [start:%g, end:%g]",tmp,start,end);*/ - sprintf(tmp,"%ld-%ld",start/24,theEnd/24); - /*printf("---- FCPERIOD %s [start:%g, end:%g]",tmp,start,end);*/ + l = strlen(tmp) + 1; + if(*len < l) + { + *len = l; + return GRIB_BUFFER_TOO_SMALL; + } - l = strlen(tmp) + 1; - if(*len < l) - { *len = l; - return GRIB_BUFFER_TOO_SMALL; - } + strcpy(val,tmp); - *len = l; - strcpy(val,tmp); - - - return GRIB_SUCCESS; + return GRIB_SUCCESS; } diff --git a/src/grib_accessor_class_label.c b/src/grib_accessor_class_label.c index a51fa7616..011c52302 100644 --- a/src/grib_accessor_class_label.c +++ b/src/grib_accessor_class_label.c @@ -129,33 +129,31 @@ static void init_class(grib_accessor_class* c) static void init(grib_accessor* a, const long len , grib_arguments* arg) { - a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; - a->flags |= GRIB_ACCESSOR_FLAG_EDITION_SPECIFIC; - a->length = 0; + a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; + a->flags |= GRIB_ACCESSOR_FLAG_EDITION_SPECIFIC; + a->length = 0; } - static void dump(grib_accessor* a, grib_dumper* dumper) { - grib_dump_label(dumper,a,NULL); + grib_dump_label(dumper,a,NULL); } static int get_native_type(grib_accessor* a) { - return GRIB_TYPE_LABEL; + return GRIB_TYPE_LABEL; } - -static int compare(grib_accessor* a, grib_accessor* b) { - return GRIB_SUCCESS; +static int compare(grib_accessor* a, grib_accessor* b) +{ + return GRIB_SUCCESS; } static int unpack_string(grib_accessor* a, char* val, size_t *len) { - size_t vlen=strlen(a->name); - if (vlen > *len) return GRIB_BUFFER_TOO_SMALL; - *len=vlen; - strcpy(val,a->name); - return GRIB_SUCCESS; + size_t vlen=strlen(a->name); + if (vlen > *len) return GRIB_BUFFER_TOO_SMALL; + *len=vlen; + strcpy(val,a->name); + return GRIB_SUCCESS; } - diff --git a/src/grib_accessor_class_latlon_increment.c b/src/grib_accessor_class_latlon_increment.c index 353b64bc7..9b5955169 100644 --- a/src/grib_accessor_class_latlon_increment.c +++ b/src/grib_accessor_class_latlon_increment.c @@ -162,7 +162,7 @@ static void init(grib_accessor* a,const long l, grib_arguments* c) self->isLongitude=grib_arguments_get_long(grib_handle_of_accessor(a), c,n++); } -static int unpack_double (grib_accessor* a, double* val, size_t *len) +static int unpack_double(grib_accessor* a, double* val, size_t *len) { grib_accessor_latlon_increment* self = (grib_accessor_latlon_increment*)a; int ret = 0; @@ -315,8 +315,8 @@ static int pack_double(grib_accessor* a, const double* val, size_t *len) } /*ret = grib_set_long_internal(grib_handle_of_accessor(a), self->numberOfPoints,numberOfPoints); - if(ret ) - grib_context_log(a->context, GRIB_LOG_ERROR, "Accessor %s cannot pack value for %s error %d \n", a->name, self->numberOfPoints, ret); + if(ret) + grib_context_log(a->context, GRIB_LOG_ERROR, "Accessor %s cannot pack value for %s error %d \n", a->name, self->numberOfPoints, ret); */ grib_get_long_internal(grib_handle_of_accessor(a), self->numberOfPoints,&codedNumberOfPoints); @@ -342,8 +342,8 @@ static int pack_double(grib_accessor* a, const double* val, size_t *len) return ret; } -static int is_missing(grib_accessor* a){ - +static int is_missing(grib_accessor* a) +{ size_t len=1; double val=0; diff --git a/src/grib_accessor_class_local_definition.c b/src/grib_accessor_class_local_definition.c index 0118fa9f8..9ef251987 100644 --- a/src/grib_accessor_class_local_definition.c +++ b/src/grib_accessor_class_local_definition.c @@ -395,7 +395,7 @@ static int pack_long(grib_accessor* a, const long* val, size_t *len) grib_set_long(hand, self->grib2LocalSectionNumber,*val); - return 0; + return 0; } static int value_count(grib_accessor* a,long* count) @@ -403,4 +403,3 @@ static int value_count(grib_accessor* a,long* count) *count=1; return 0; } - diff --git a/src/grib_accessor_class_long_vector.c b/src/grib_accessor_class_long_vector.c index 8787adf18..7bfc49f3a 100644 --- a/src/grib_accessor_class_long_vector.c +++ b/src/grib_accessor_class_long_vector.c @@ -142,90 +142,91 @@ static void init_class(grib_accessor_class* c) /* END_CLASS_IMP */ typedef struct grib_accessor_abstract_long_vector { - grib_accessor att; - /* Members defined in gen */ - /* Members defined in abstract_long_vector */ - long* v; - long pack_index; - int number_of_elements; + grib_accessor att; + /* Members defined in gen */ + /* Members defined in abstract_long_vector */ + long* v; + long pack_index; + int number_of_elements; } grib_accessor_abstract_long_vector; static void init(grib_accessor* a,const long l, grib_arguments* c) { - grib_accessor_long_vector* self = (grib_accessor_long_vector*)a; - grib_accessor* va=NULL; - grib_accessor_abstract_long_vector* v =NULL; - int n = 0; + grib_accessor_long_vector* self = (grib_accessor_long_vector*)a; + grib_accessor* va=NULL; + grib_accessor_abstract_long_vector* v =NULL; + int n = 0; - self->vector = grib_arguments_get_name(grib_handle_of_accessor(a),c,n++); + self->vector = grib_arguments_get_name(grib_handle_of_accessor(a),c,n++); - va=(grib_accessor*)grib_find_accessor(grib_handle_of_accessor(a),self->vector); - v=(grib_accessor_abstract_long_vector*)va; + va=(grib_accessor*)grib_find_accessor(grib_handle_of_accessor(a),self->vector); + v=(grib_accessor_abstract_long_vector*)va; - self->index = grib_arguments_get_long(grib_handle_of_accessor(a),c,n++); + self->index = grib_arguments_get_long(grib_handle_of_accessor(a),c,n++); - /* check self->index on init and never change it */ - Assert(self->index < v->number_of_elements && self->index>=0); + /* check self->index on init and never change it */ + Assert(self->index < v->number_of_elements && self->index>=0); - a->length=0; + a->length=0; } -static int unpack_long(grib_accessor* a, long* val, size_t *len) { - size_t size=0; - long* vector; - grib_accessor_long_vector* self = (grib_accessor_long_vector*)a; - grib_accessor* va=NULL; - grib_accessor_abstract_long_vector* v =NULL; - - va=(grib_accessor*)grib_find_accessor(grib_handle_of_accessor(a),self->vector); - v=(grib_accessor_abstract_long_vector*)va; +static int unpack_long(grib_accessor* a, long* val, size_t *len) +{ + size_t size=0; + long* vector; + grib_accessor_long_vector* self = (grib_accessor_long_vector*)a; + grib_accessor* va=NULL; + grib_accessor_abstract_long_vector* v =NULL; - /*TODO implement the dirty mechanism to avoid to unpack every time */ - grib_get_size(grib_handle_of_accessor(a),self->vector,&size); - vector=(long*)grib_context_malloc(a->context,sizeof(long)*size); - grib_unpack_long(va,vector,&size); - grib_context_free(a->context,vector); - + va=(grib_accessor*)grib_find_accessor(grib_handle_of_accessor(a),self->vector); + v=(grib_accessor_abstract_long_vector*)va; - *val = v->v[self->index]; + /*TODO implement the dirty mechanism to avoid to unpack every time */ + grib_get_size(grib_handle_of_accessor(a),self->vector,&size); + vector=(long*)grib_context_malloc(a->context,sizeof(long)*size); + grib_unpack_long(va,vector,&size); + grib_context_free(a->context,vector); - return GRIB_SUCCESS; + *val = v->v[self->index]; + + return GRIB_SUCCESS; } -static int unpack_double(grib_accessor* a, double* val, size_t *len) { - long lval=0; - int err=0; - grib_accessor_long_vector* self = (grib_accessor_long_vector*)a; - grib_accessor* va=NULL; - grib_accessor_abstract_long_vector* v =NULL; - va=(grib_accessor*)grib_find_accessor(grib_handle_of_accessor(a),self->vector); - v=(grib_accessor_abstract_long_vector*)va; - - err=unpack_long(a,&lval,len); +static int unpack_double(grib_accessor* a, double* val, size_t *len) +{ + long lval=0; + int err=0; + grib_accessor_long_vector* self = (grib_accessor_long_vector*)a; + grib_accessor* va=NULL; + grib_accessor_abstract_long_vector* v =NULL; + va=(grib_accessor*)grib_find_accessor(grib_handle_of_accessor(a),self->vector); + v=(grib_accessor_abstract_long_vector*)va; - *val = (double)v->v[self->index]; + err=unpack_long(a,&lval,len); - return err; + *val = (double)v->v[self->index]; + + return err; } -static int pack_long (grib_accessor* a, const long* val, size_t *len) { - int err=0; - grib_accessor_long_vector* self = (grib_accessor_long_vector*)a; - grib_accessor* va=NULL; - grib_accessor_abstract_long_vector* v =NULL; - - va=(grib_accessor*)grib_find_accessor(grib_handle_of_accessor(a),self->vector); - v=(grib_accessor_abstract_long_vector*)va; +static int pack_long(grib_accessor* a, const long* val, size_t *len) +{ + int err=0; + grib_accessor_long_vector* self = (grib_accessor_long_vector*)a; + grib_accessor* va=NULL; + grib_accessor_abstract_long_vector* v =NULL; - v->pack_index=self->index; + va=(grib_accessor*)grib_find_accessor(grib_handle_of_accessor(a),self->vector); + v=(grib_accessor_abstract_long_vector*)va; - err=grib_pack_long(va,val,len); + v->pack_index=self->index; - return err; + err=grib_pack_long(va,val,len); + + return err; } -static int get_native_type(grib_accessor* a){ - return GRIB_TYPE_LONG; +static int get_native_type(grib_accessor* a) +{ + return GRIB_TYPE_LONG; } - - diff --git a/src/grib_accessor_class_message.c b/src/grib_accessor_class_message.c index 7dd2c1e71..0c03cc657 100644 --- a/src/grib_accessor_class_message.c +++ b/src/grib_accessor_class_message.c @@ -136,9 +136,9 @@ static void init_class(grib_accessor_class* c) static void init(grib_accessor* a, const long len, grib_arguments*arg ) { - a->flags |= GRIB_ACCESSOR_FLAG_EDITION_SPECIFIC; - a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; - a->length=grib_handle_of_accessor(a)->buffer->ulength-len-a->offset; + a->flags |= GRIB_ACCESSOR_FLAG_EDITION_SPECIFIC; + a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; + a->length=grib_handle_of_accessor(a)->buffer->ulength-len-a->offset; } static int compare(grib_accessor* a, grib_accessor* b) @@ -149,43 +149,41 @@ static int compare(grib_accessor* a, grib_accessor* b) static void update_size(grib_accessor* a,size_t new_size) { - /* printf("update_size: grib_accessor_class_message.c %ld %ld %s %s\n", (long)new_size,(long)a->length,a->cclass->name,a->name); */ - a->length = new_size; + /* printf("update_size: grib_accessor_class_message.c %ld %ld %s %s\n", (long)new_size,(long)a->length,a->cclass->name,a->name); */ + a->length = new_size; } static void resize(grib_accessor* a,size_t new_size) { - void* zero = grib_context_malloc_clear(a->context,new_size); - - grib_buffer_replace(a,(const unsigned char*)zero,new_size,1,0); - grib_context_free(a->context,zero); - grib_context_log(a->context,GRIB_LOG_DEBUG,"resize: grib_accessor_class_message.c %ld %ld %s %s\n",(long)new_size,(long)a->length,a->cclass->name,a->name); - Assert(new_size == a->length); + void* zero = grib_context_malloc_clear(a->context,new_size); + grib_buffer_replace(a,(const unsigned char*)zero,new_size,1,0); + grib_context_free(a->context,zero); + grib_context_log(a->context,GRIB_LOG_DEBUG,"resize: grib_accessor_class_message.c %ld %ld %s %s\n",(long)new_size,(long)a->length,a->cclass->name,a->name); + Assert(new_size == a->length); } static int value_count(grib_accessor* a,long* count){ *count=1;return 0;} static int unpack_string(grib_accessor* a, char* val, size_t *len) { + int i = 0; - int i = 0; + if(len[0] < (a->length+1)) + { + grib_context_log(a->context, GRIB_LOG_ERROR, "unpack_string: Wrong size (%d) for %s it contains %d values ", len[0], a->name , a->length+1 ); + len[0] = 0; + return GRIB_ARRAY_TOO_SMALL; + } - if(len[0] < (a->length+1)) - { - grib_context_log(a->context, GRIB_LOG_ERROR, "unpack_string: Wrong size (%d) for %s it contains %d values ", len[0], a->name , a->length+1 ); - len[0] = 0; - return GRIB_ARRAY_TOO_SMALL; - } - - for ( i = 0; i < a->length; i++) - val[i] = grib_handle_of_accessor(a)->buffer->data[a->offset+i]; - val[i] = 0; - len[0] = i; - return GRIB_SUCCESS; + for ( i = 0; i < a->length; i++) + val[i] = grib_handle_of_accessor(a)->buffer->data[a->offset+i]; + val[i] = 0; + len[0] = i; + return GRIB_SUCCESS; } static size_t string_length(grib_accessor* a) { - return a->length; + return a->length; } diff --git a/src/grib_accessor_class_message_copy.c b/src/grib_accessor_class_message_copy.c index 01a04e37e..76f5aaf9a 100644 --- a/src/grib_accessor_class_message_copy.c +++ b/src/grib_accessor_class_message_copy.c @@ -131,42 +131,43 @@ static void init_class(grib_accessor_class* c) static void init(grib_accessor* a, const long length , grib_arguments* args ) { - a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; - a->length=0; + a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; + a->length=0; } static void dump(grib_accessor* a, grib_dumper* dumper) { - grib_dump_string(dumper,a,NULL); + grib_dump_string(dumper,a,NULL); } static int get_native_type(grib_accessor* a) { - return GRIB_TYPE_STRING; + return GRIB_TYPE_STRING; } -static int unpack_string (grib_accessor* a, char* val, size_t *len){ - size_t slen=grib_handle_of_accessor(a)->buffer->ulength ; - size_t i; - unsigned char* v=0; +static int unpack_string(grib_accessor* a, char* val, size_t *len) +{ + size_t slen=grib_handle_of_accessor(a)->buffer->ulength ; + size_t i; + unsigned char* v=0; - if (*len < slen) { return GRIB_ARRAY_TOO_SMALL; } - v=grib_handle_of_accessor(a)->buffer->data; - /* replace unprintable characters with space */ - for (i=0;i126) v[i]=32; - memcpy(val,grib_handle_of_accessor(a)->buffer->data,slen); + if (*len < slen) { return GRIB_ARRAY_TOO_SMALL; } + v=grib_handle_of_accessor(a)->buffer->data; + /* replace unprintable characters with space */ + for (i=0;i126) v[i]=32; + memcpy(val,grib_handle_of_accessor(a)->buffer->data,slen); - *len=slen; + *len=slen; - return GRIB_SUCCESS; + return GRIB_SUCCESS; } static size_t string_length(grib_accessor* a) { - return grib_handle_of_accessor(a)->buffer->ulength; + return grib_handle_of_accessor(a)->buffer->ulength; } -static long byte_count(grib_accessor* a) { - return a->length; +static long byte_count(grib_accessor* a) +{ + return a->length; } - diff --git a/src/grib_accessor_class_nearest.c b/src/grib_accessor_class_nearest.c index 2adb1107f..45bf2ac7d 100644 --- a/src/grib_accessor_class_nearest.c +++ b/src/grib_accessor_class_nearest.c @@ -130,32 +130,31 @@ static void init_class(grib_accessor_class* c) static void init(grib_accessor* a,const long l, grib_arguments* args) { - grib_accessor_nearest* self = (grib_accessor_nearest*)a; - self->args = args; + grib_accessor_nearest* self = (grib_accessor_nearest*)a; + self->args = args; } static void dump(grib_accessor* a,grib_dumper* dumper) { - /* TODO: pass args */ - grib_dump_label(dumper,a,NULL); + /* TODO: pass args */ + grib_dump_label(dumper,a,NULL); } grib_nearest* grib_nearest_new(const grib_handle* ch, int* error) { - grib_handle* h = (grib_handle*)ch; - grib_accessor* a = NULL; - grib_accessor_nearest* na =NULL; - grib_nearest* n =NULL; - *error=GRIB_NOT_IMPLEMENTED; - a = grib_find_accessor(h,"NEAREST"); - na = (grib_accessor_nearest*)a; + grib_handle* h = (grib_handle*)ch; + grib_accessor* a = NULL; + grib_accessor_nearest* na =NULL; + grib_nearest* n =NULL; + *error=GRIB_NOT_IMPLEMENTED; + a = grib_find_accessor(h,"NEAREST"); + na = (grib_accessor_nearest*)a; - if (!a) return NULL; + if (!a) return NULL; - n = grib_nearest_factory(h,na->args); + n = grib_nearest_factory(h,na->args); - if (n) *error=GRIB_SUCCESS; + if (n) *error=GRIB_SUCCESS; - return n; + return n; } - diff --git a/src/grib_accessor_class_offset_file.c b/src/grib_accessor_class_offset_file.c index 09d11b5ae..81aedd4e5 100644 --- a/src/grib_accessor_class_offset_file.c +++ b/src/grib_accessor_class_offset_file.c @@ -134,42 +134,39 @@ static void init_class(grib_accessor_class* c) static void init(grib_accessor* a,const long l, grib_arguments* c) { - a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; - a->length=0; + a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; + a->length=0; } -static int unpack_double(grib_accessor* a, double* val, size_t *len) +static int unpack_double(grib_accessor* a, double* val, size_t *len) { - *val = (double)grib_handle_of_accessor(a)->offset; - *len =1; - return 0; + *val = (double)grib_handle_of_accessor(a)->offset; + *len =1; + return 0; } -static int unpack_string(grib_accessor*a , char* v, size_t *len){ +static int unpack_string(grib_accessor*a , char* v, size_t *len) +{ + double val = 0; + size_t l = 1; + char repres[1024]; - double val = 0; - size_t l = 1; - char repres[1024]; + grib_unpack_double (a , &val, &l); - grib_unpack_double (a , &val, &l); + sprintf(repres,"%.0f", val); - sprintf(repres,"%.0f", val); + l = strlen(repres)+1; - l = strlen(repres)+1; + if(l >*len ){ + grib_context_log(a->context, GRIB_LOG_ERROR, "grib_accessor_long : unpack_string : Buffer too small for %s ", a->name ); - if(l >*len ){ - grib_context_log(a->context, GRIB_LOG_ERROR, "grib_accessor_long : unpack_string : Buffer too small for %s ", a->name ); + *len = l; + return GRIB_BUFFER_TOO_SMALL; + } + grib_context_log(a->context,GRIB_LOG_DEBUG, "grib_accessor_long: Casting double %s to string ", a->name); *len = l; - return GRIB_BUFFER_TOO_SMALL; - } - grib_context_log(a->context,GRIB_LOG_DEBUG, "grib_accessor_long: Casting double %s to string ", a->name); - - *len = l; - - strcpy(v,repres); - return GRIB_SUCCESS; - + strcpy(v,repres); + return GRIB_SUCCESS; } - diff --git a/src/grib_accessor_class_pack_bufr_values.c b/src/grib_accessor_class_pack_bufr_values.c index da2f0d44b..d77cc61e7 100644 --- a/src/grib_accessor_class_pack_bufr_values.c +++ b/src/grib_accessor_class_pack_bufr_values.c @@ -134,70 +134,67 @@ static void init_class(grib_accessor_class* c) /* END_CLASS_IMP */ -static void init(grib_accessor* a, const long len, grib_arguments* params) { +static void init(grib_accessor* a, const long len, grib_arguments* params) +{ + char* key; + grib_accessor_pack_bufr_values* self = (grib_accessor_pack_bufr_values*)a; + key = (char*)grib_arguments_get_name(grib_handle_of_accessor(a),params,0); + self->data_accessor=grib_find_accessor(grib_handle_of_accessor(a),key); - char* key; - grib_accessor_pack_bufr_values* self = (grib_accessor_pack_bufr_values*)a; - key = (char*)grib_arguments_get_name(grib_handle_of_accessor(a),params,0); - self->data_accessor=grib_find_accessor(grib_handle_of_accessor(a),key); - - a->length = 0; + a->length = 0; } static void dump(grib_accessor* a, grib_dumper* dumper) { - return; } -static int unpack_string_array (grib_accessor* a, char** buffer, size_t *len) +static int unpack_string_array(grib_accessor* a, char** buffer, size_t *len) { - return GRIB_NOT_IMPLEMENTED; + return GRIB_NOT_IMPLEMENTED; } -static int unpack_string (grib_accessor* a, char* buffer, size_t *len) +static int unpack_string(grib_accessor* a, char* buffer, size_t *len) { - return GRIB_NOT_IMPLEMENTED; + return GRIB_NOT_IMPLEMENTED; } -static int unpack_long (grib_accessor* a, long* val, size_t *len) +static int unpack_long(grib_accessor* a, long* val, size_t *len) { - return GRIB_NOT_IMPLEMENTED; + return GRIB_NOT_IMPLEMENTED; } -static int unpack_double (grib_accessor* a, double* val, size_t *len) +static int unpack_double(grib_accessor* a, double* val, size_t *len) { - return GRIB_NOT_IMPLEMENTED; + return GRIB_NOT_IMPLEMENTED; } static int value_count(grib_accessor* a,long* count) { - *count=1; - return 0; + *count=1; + return 0; } static void destroy(grib_context* context,grib_accessor* a) { - return; } -static int get_native_type(grib_accessor* a){ - return GRIB_TYPE_LONG; -} - -static int pack_long (grib_accessor* a, const long* val, size_t *len) +static int get_native_type(grib_accessor* a) { - grib_accessor_pack_bufr_values* self = (grib_accessor_pack_bufr_values*)a; - grib_accessor* data=(grib_accessor*)self->data_accessor; - - return grib_pack_double(data,0,0); + return GRIB_TYPE_LONG; } - -static int pack_double (grib_accessor* a, const double* val, size_t *len) +static int pack_long(grib_accessor* a, const long* val, size_t *len) { - grib_accessor_pack_bufr_values* self = (grib_accessor_pack_bufr_values*)a; - grib_accessor* data=(grib_accessor*)self->data_accessor; + grib_accessor_pack_bufr_values* self = (grib_accessor_pack_bufr_values*)a; + grib_accessor* data=(grib_accessor*)self->data_accessor; - return grib_pack_double(data,0,0); + return grib_pack_double(data,0,0); } +static int pack_double(grib_accessor* a, const double* val, size_t *len) +{ + grib_accessor_pack_bufr_values* self = (grib_accessor_pack_bufr_values*)a; + grib_accessor* data=(grib_accessor*)self->data_accessor; + + return grib_pack_double(data,0,0); +} diff --git a/src/grib_accessor_class_padding.c b/src/grib_accessor_class_padding.c index 48a063666..e391fbed2 100644 --- a/src/grib_accessor_class_padding.c +++ b/src/grib_accessor_class_padding.c @@ -132,33 +132,32 @@ static void init_class(grib_accessor_class* c) /* END_CLASS_IMP */ - static void init(grib_accessor* a, const long len, grib_arguments*arg ) { - a->flags |= GRIB_ACCESSOR_FLAG_EDITION_SPECIFIC; - a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; + a->flags |= GRIB_ACCESSOR_FLAG_EDITION_SPECIFIC; + a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; } -static int compare(grib_accessor* a, grib_accessor* b) { - if (a->length != b->length) return GRIB_COUNT_MISMATCH; - return GRIB_SUCCESS; +static int compare(grib_accessor* a, grib_accessor* b) +{ + if (a->length != b->length) return GRIB_COUNT_MISMATCH; + return GRIB_SUCCESS; } static void update_size(grib_accessor* a,size_t new_size) { - /* printf("update_size: grib_accessor_class_padding.c %ld %ld %s %s\n", (long)new_size,(long)a->length,a->cclass->name,a->name); */ - a->length = new_size; + /* printf("update_size: grib_accessor_class_padding.c %ld %ld %s %s\n", (long)new_size,(long)a->length,a->cclass->name,a->name); */ + a->length = new_size; } static void resize(grib_accessor* a,size_t new_size) { - void* zero = grib_context_malloc_clear(a->context,new_size); - - grib_buffer_replace(a,(const unsigned char*)zero,new_size,1,0); - grib_context_free(a->context,zero); - grib_context_log(a->context,GRIB_LOG_DEBUG,"resize: grib_accessor_class_padding.c %ld %ld %s %s\n",(long)new_size,(long)a->length,a->cclass->name,a->name); - Assert(new_size == a->length); + void* zero = grib_context_malloc_clear(a->context,new_size); + grib_buffer_replace(a,(const unsigned char*)zero,new_size,1,0); + grib_context_free(a->context,zero); + grib_context_log(a->context,GRIB_LOG_DEBUG,"resize: grib_accessor_class_padding.c %ld %ld %s %s\n",(long)new_size,(long)a->length,a->cclass->name,a->name); + Assert(new_size == a->length); } static int value_count(grib_accessor* a,long *c){ *c=a->length; return 0;} diff --git a/src/grib_accessor_class_padtoeven.c b/src/grib_accessor_class_padtoeven.c index 7a9a786a9..ddcb97840 100644 --- a/src/grib_accessor_class_padtoeven.c +++ b/src/grib_accessor_class_padtoeven.c @@ -139,38 +139,36 @@ static void init_class(grib_accessor_class* c) static size_t preferred_size(grib_accessor* a,int from_handle) { - grib_accessor_padtoeven* self = (grib_accessor_padtoeven*)a; - long offset = 0; - long length = 0; - long seclen; + grib_accessor_padtoeven* self = (grib_accessor_padtoeven*)a; + long offset = 0; + long length = 0; + long seclen; - grib_get_long_internal(grib_handle_of_accessor(a),self->section_offset,&offset); - grib_get_long_internal(grib_handle_of_accessor(a),self->section_length,&length); + grib_get_long_internal(grib_handle_of_accessor(a),self->section_offset,&offset); + grib_get_long_internal(grib_handle_of_accessor(a),self->section_length,&length); - if((length%2) && from_handle) { + if((length%2) && from_handle) { #if 0 - grib_context_log(a->context, - GRIB_LOG_ERROR,"GRIB message has an odd length section (%ld, %s)", - (long)length,a->name); + grib_context_log(a->context, + GRIB_LOG_ERROR,"GRIB message has an odd length section (%ld, %s)", + (long)length,a->name); #endif - return 0; + return 0; - } + } - /* printf("EVEN %ld %ld\n",(long) a->offset,(long) offset);*/ + /* printf("EVEN %ld %ld\n",(long) a->offset,(long) offset);*/ + seclen = a->offset - offset; - seclen = a->offset - offset; - - return seclen % 2 ? 1 : 0; + return seclen % 2 ? 1 : 0; } static void init(grib_accessor* a, const long len, grib_arguments* args) { - grib_accessor_padtoeven* self = (grib_accessor_padtoeven*)a; + grib_accessor_padtoeven* self = (grib_accessor_padtoeven*)a; - self->section_offset = grib_arguments_get_name(grib_handle_of_accessor(a),args,0); - self->section_length = grib_arguments_get_name(grib_handle_of_accessor(a),args,1); - - a->length = preferred_size(a,1); + self->section_offset = grib_arguments_get_name(grib_handle_of_accessor(a),args,0); + self->section_length = grib_arguments_get_name(grib_handle_of_accessor(a),args,1); + a->length = preferred_size(a,1); } diff --git a/src/grib_accessor_class_size.c b/src/grib_accessor_class_size.c index dd3922761..c495c8993 100644 --- a/src/grib_accessor_class_size.c +++ b/src/grib_accessor_class_size.c @@ -131,21 +131,20 @@ static void init_class(grib_accessor_class* c) static void init(grib_accessor* a,const long l, grib_arguments* c) { - grib_accessor_size* self = (grib_accessor_size*)a; - self->accessor = grib_arguments_get_name(grib_handle_of_accessor(a),c,0); - a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; - a->flags |= GRIB_ACCESSOR_FLAG_FUNCTION; - a->length=0; + grib_accessor_size* self = (grib_accessor_size*)a; + self->accessor = grib_arguments_get_name(grib_handle_of_accessor(a),c,0); + a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; + a->flags |= GRIB_ACCESSOR_FLAG_FUNCTION; + a->length=0; } -static int unpack_long(grib_accessor* a, long* val, size_t *len) +static int unpack_long(grib_accessor* a, long* val, size_t *len) { - int ret=0; - size_t size=0; - grib_accessor_size* self = (grib_accessor_size*)a; - ret=grib_get_size(grib_handle_of_accessor(a),self->accessor,&size); - *val=(long)size; - *len =1; - return ret; + int ret=0; + size_t size=0; + grib_accessor_size* self = (grib_accessor_size*)a; + ret=grib_get_size(grib_handle_of_accessor(a),self->accessor,&size); + *val=(long)size; + *len =1; + return ret; } - diff --git a/src/grib_dumper_class_grib_encode_C.c b/src/grib_dumper_class_grib_encode_C.c index bb656ec26..110cf74ae 100644 --- a/src/grib_dumper_class_grib_encode_C.c +++ b/src/grib_dumper_class_grib_encode_C.c @@ -86,69 +86,69 @@ static void init_class (grib_dumper_class* c){} static int init(grib_dumper* d) { - /* grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; */ - return GRIB_SUCCESS; + /* grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; */ + return GRIB_SUCCESS; } static int destroy (grib_dumper* d){ - return GRIB_SUCCESS; + return GRIB_SUCCESS; } static void pcomment(FILE* f,long value,const char* p) { - int cr = 0; - fprintf(f,"\n /* %ld = ",value); + int cr = 0; + fprintf(f,"\n /* %ld = ",value); - while(*p) - { - switch(*p) + while(*p) { - case ';': - fprintf(f,"\n "); - cr = 1; - break; + switch(*p) + { + case ';': + fprintf(f,"\n "); + cr = 1; + break; - case ':': - if(cr) - fprintf(f,"\n See "); - else - fprintf(f,". See "); - break; + case ':': + if(cr) + fprintf(f,"\n See "); + else + fprintf(f,". See "); + break; - default: - fputc(*p,f); - break; + default: + fputc(*p,f); + break; + } + + p++; } - p++; - } - - fprintf(f," */\n"); + fprintf(f," */\n"); } static void dump_long(grib_dumper* d,grib_accessor* a,const char* comment) { - grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; - long value; size_t size = 1; - int err = grib_unpack_long(a,&value,&size); + grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; + long value; size_t size = 1; + int err = grib_unpack_long(a,&value,&size); - if((a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY)) - return; + if((a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY)) + return; #if 1 - if(comment) pcomment(self->dumper.out,value,comment); + if(comment) pcomment(self->dumper.out,value,comment); #endif - if( ((a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) != 0) && (value == GRIB_MISSING_LONG)) - fprintf(self->dumper.out," GRIB_CHECK(grib_set_missing(h,\"%s\"),%d);\n",a->name,0); - else - fprintf(self->dumper.out," GRIB_CHECK(grib_set_long(h,\"%s\",%ld),%d);\n",a->name,value,0); + if( ((a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) != 0) && (value == GRIB_MISSING_LONG)) + fprintf(self->dumper.out," GRIB_CHECK(grib_set_missing(h,\"%s\"),%d);\n",a->name,0); + else + fprintf(self->dumper.out," GRIB_CHECK(grib_set_long(h,\"%s\",%ld),%d);\n",a->name,value,0); - if(err) - fprintf(self->dumper.out," /* Error accessing %s (%s) */",a->name,grib_get_error_message(err)); + if(err) + fprintf(self->dumper.out," /* Error accessing %s (%s) */",a->name,grib_get_error_message(err)); - if(comment) fprintf(self->dumper.out,"\n"); + if(comment) fprintf(self->dumper.out,"\n"); } @@ -157,302 +157,301 @@ static int test_bit(long a, long b) {return a&(1<flags & GRIB_ACCESSOR_FLAG_READ_ONLY) - return; + if(a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) + return; - if(a->length == 0) - return; + if(a->length == 0) + return; - buf[0] = 0; + buf[0] = 0; - for(i=0;i<(a->length*8);i++) { - if(test_bit(value,a->length*8-i-1)) - strcat(buf,"1"); + for(i=0;i<(a->length*8);i++) { + if(test_bit(value,a->length*8-i-1)) + strcat(buf,"1"); + else + strcat(buf,"0"); + } + + if(comment) { + strcat(buf,";"); + strcat(buf,comment); + } + + pcomment(self->dumper.out,value,buf); + + if(err) + fprintf(self->dumper.out," /* Error accessing %s (%s) */",a->name,grib_get_error_message(err)); else - strcat(buf,"0"); - } + fprintf(self->dumper.out," GRIB_CHECK(grib_set_long(h,\"%s\",%ld),%d);\n",a->name,value,0); - if(comment) { - strcat(buf,";"); - strcat(buf,comment); - } - - pcomment(self->dumper.out,value,buf); - - if(err) - fprintf(self->dumper.out," /* Error accessing %s (%s) */",a->name,grib_get_error_message(err)); - else - fprintf(self->dumper.out," GRIB_CHECK(grib_set_long(h,\"%s\",%ld),%d);\n",a->name,value,0); - - fprintf(self->dumper.out,"\n"); + fprintf(self->dumper.out,"\n"); } static void dump_double(grib_dumper* d,grib_accessor* a,const char* comment) { - grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; - double value; size_t size = 1; - int err = grib_unpack_double(a,&value,&size); - if(a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) - return; + grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; + double value; size_t size = 1; + int err = grib_unpack_double(a,&value,&size); + if(a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) + return; - if(a->length == 0) - return; + if(a->length == 0) + return; #if 0 - if(comment) fprintf(self->dumper.out,"/* %s */\n",comment); + if(comment) fprintf(self->dumper.out,"/* %s */\n",comment); #endif - fprintf(self->dumper.out," GRIB_CHECK(grib_set_double(h,\"%s\",%g),%d);\n",a->name,value,0); + fprintf(self->dumper.out," GRIB_CHECK(grib_set_double(h,\"%s\",%g),%d);\n",a->name,value,0); - if(err) - fprintf(self->dumper.out," /* Error accessing %s (%s) */",a->name,grib_get_error_message(err)); + if(err) + fprintf(self->dumper.out," /* Error accessing %s (%s) */",a->name,grib_get_error_message(err)); } static void dump_string(grib_dumper* d,grib_accessor* a,const char* comment) { - grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; - char value[1024]; size_t size = sizeof(value); - int err = grib_unpack_string(a,value,&size); + grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; + char value[1024]; size_t size = sizeof(value); + int err = grib_unpack_string(a,value,&size); - if (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) - return; + if (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) + return; - if(a->length == 0) - return; + if(a->length == 0) + return; #if 1 - if(comment) fprintf(self->dumper.out,"/* %s */\n",comment); + if(comment) fprintf(self->dumper.out,"/* %s */\n",comment); #endif - fprintf(self->dumper.out," p = \"%s\";\n",value); - fprintf(self->dumper.out," size = strlen(p);\n"); - fprintf(self->dumper.out," GRIB_CHECK(grib_set_string(h,\"%s\",p,&size),%d);\n",a->name,0); + fprintf(self->dumper.out," p = \"%s\";\n",value); + fprintf(self->dumper.out," size = strlen(p);\n"); + fprintf(self->dumper.out," GRIB_CHECK(grib_set_string(h,\"%s\",p,&size),%d);\n",a->name,0); - if(err) - fprintf(self->dumper.out," /* Error accessing %s (%s) */",a->name,grib_get_error_message(err)); + if(err) + fprintf(self->dumper.out," /* Error accessing %s (%s) */",a->name,grib_get_error_message(err)); } static void dump_bytes(grib_dumper* d,grib_accessor* a,const char* comment) { - grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; - int err =0; - size_t size = a->length; - unsigned char* buf; + grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; + int err =0; + size_t size = a->length; + unsigned char* buf; - if (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) - return; + if (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) + return; - if(size == 0) - return; + if(size == 0) + return; - buf = (unsigned char*)grib_context_malloc(d->handle->context,size); + buf = (unsigned char*)grib_context_malloc(d->handle->context,size); - if(!buf) - { - fprintf(self->dumper.out,"/* %s: cannot malloc(%ld) */\n",a->name,(long)size); - return; - } + if(!buf) + { + fprintf(self->dumper.out,"/* %s: cannot malloc(%ld) */\n",a->name,(long)size); + return; + } - err = grib_unpack_bytes(a,buf,&size); - if(err){ - grib_context_free(d->handle->context,buf); - fprintf(self->dumper.out," *** ERR=%d (%s) [grib_dumper_grib_encode_C::dump_bytes]\n}",err,grib_get_error_message(err)); - return ; - } + err = grib_unpack_bytes(a,buf,&size); + if(err){ + grib_context_free(d->handle->context,buf); + fprintf(self->dumper.out," *** ERR=%d (%s) [grib_dumper_grib_encode_C::dump_bytes]\n}",err,grib_get_error_message(err)); + return ; + } #if 0 - if(size > 100) { - more = size - 100; - size = 100; - } - - k = 0; - /* if(size > 100) size = 100; */ - while(k < size) - { - int j; - for(i = 0; i < d->depth + 3 ; i++) fprintf(self->dumper.out," "); - for(j = 0; j < 16 && k < size; j++, k++) - { - fprintf(self->dumper.out,"%02x",buf[k]); - if(k != size-1) - fprintf(self->dumper.out,", "); + if(size > 100) { + more = size - 100; + size = 100; + } + + k = 0; + /* if(size > 100) size = 100; */ + while(k < size) + { + int j; + for(i = 0; i < d->depth + 3 ; i++) fprintf(self->dumper.out," "); + for(j = 0; j < 16 && k < size; j++, k++) + { + fprintf(self->dumper.out,"%02x",buf[k]); + if(k != size-1) + fprintf(self->dumper.out,", "); + } + fprintf(self->dumper.out,"\n"); } - fprintf(self->dumper.out,"\n"); - } #endif - grib_context_free(d->handle->context,buf); + grib_context_free(d->handle->context,buf); } static void dump_values(grib_dumper* d,grib_accessor* a) { - grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; - int k,err =0; - double* buf = NULL; - int type=0; - char stype[10]; - size_t size=0; - long count=0; + grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; + int k,err =0; + double* buf = NULL; + int type=0; + char stype[10]; + size_t size=0; + long count=0; - stype[0]='\0'; + stype[0]='\0'; - if((a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) - || ((a->flags & GRIB_ACCESSOR_FLAG_DATA) - && (d->option_flags & GRIB_DUMP_FLAG_NO_DATA) ) ) - return; + if((a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) + || ((a->flags & GRIB_ACCESSOR_FLAG_DATA) + && (d->option_flags & GRIB_DUMP_FLAG_NO_DATA) ) ) + return; - grib_value_count(a,&count); - size=count; + grib_value_count(a,&count); + size=count; - if(size == 1){ - dump_double(d,a,NULL); - return ; - } + if(size == 1){ + dump_double(d,a,NULL); + return ; + } - type=grib_accessor_get_native_type(a); - switch (type) { - case GRIB_TYPE_LONG: - sprintf(stype,"%s","long"); - break; - case GRIB_TYPE_DOUBLE: - sprintf(stype,"%s","double"); - break; - default: - return; - } + type=grib_accessor_get_native_type(a); + switch (type) { + case GRIB_TYPE_LONG: + sprintf(stype,"%s","long"); + break; + case GRIB_TYPE_DOUBLE: + sprintf(stype,"%s","double"); + break; + default: + return; + } - buf = (double*)grib_context_malloc(d->handle->context,size * sizeof(double)); - if(!buf) - { - fprintf(self->dumper.out,"/* %s: cannot malloc(%ld) */\n",a->name,(long)size); - return; - } + buf = (double*)grib_context_malloc(d->handle->context,size * sizeof(double)); + if(!buf) + { + fprintf(self->dumper.out,"/* %s: cannot malloc(%ld) */\n",a->name,(long)size); + return; + } - err = grib_unpack_double(a,buf,&size); + err = grib_unpack_double(a,buf,&size); + + if(err){ + grib_context_free(d->handle->context,buf); + fprintf(self->dumper.out," /* Error accessing %s (%s) */",a->name,grib_get_error_message(err)); + return ; + } + + fprintf(self->dumper.out," size = %ld;\n",(long)size); + fprintf(self->dumper.out," v%s = (%s*)calloc(size,sizeof(%s));\n",stype,stype,stype); + fprintf(self->dumper.out," if(!v%s) {\n",stype); + fprintf(self->dumper.out," fprintf(stderr,\"failed to allocate %%d bytes\\n\",size*sizeof(%s));\n",stype); + fprintf(self->dumper.out," exit(1);\n"); + fprintf(self->dumper.out," }\n"); + + + fprintf(self->dumper.out,"\n "); + k = 0; + while(k < size) + { + fprintf(self->dumper.out," v%s[%4d] = %7g;",stype,k,buf[k]); + k++; + if(k%4 == 0) fprintf(self->dumper.out,"\n "); + + } + if(size%4) fprintf(self->dumper.out,"\n"); + fprintf(self->dumper.out,"\n"); + fprintf(self->dumper.out," GRIB_CHECK(grib_set_%s_array(h,\"%s\",v%s,size),%d);\n",stype,a->name,stype,0); + fprintf(self->dumper.out," free(v%s);\n",stype); - if(err){ grib_context_free(d->handle->context,buf); - fprintf(self->dumper.out," /* Error accessing %s (%s) */",a->name,grib_get_error_message(err)); - return ; - } - - fprintf(self->dumper.out," size = %ld;\n",(long)size); - fprintf(self->dumper.out," v%s = (%s*)calloc(size,sizeof(%s));\n",stype,stype,stype); - fprintf(self->dumper.out," if(!v%s) {\n",stype); - fprintf(self->dumper.out," fprintf(stderr,\"failed to allocate %%d bytes\\n\",size*sizeof(%s));\n",stype); - fprintf(self->dumper.out," exit(1);\n"); - fprintf(self->dumper.out," }\n"); - - - fprintf(self->dumper.out,"\n "); - k = 0; - while(k < size) - { - fprintf(self->dumper.out," v%s[%4d] = %7g;",stype,k,buf[k]); - k++; - if(k%4 == 0) fprintf(self->dumper.out,"\n "); - - } - if(size%4) fprintf(self->dumper.out,"\n"); - fprintf(self->dumper.out,"\n"); - fprintf(self->dumper.out," GRIB_CHECK(grib_set_%s_array(h,\"%s\",v%s,size),%d);\n",stype,a->name,stype,0); - fprintf(self->dumper.out," free(v%s);\n",stype); - - grib_context_free(d->handle->context,buf); } static void dump_label(grib_dumper* d,grib_accessor* a,const char* comment) { - grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; - fprintf(self->dumper.out,"\n /* %s */\n\n",a->name); + grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; + fprintf(self->dumper.out,"\n /* %s */\n\n",a->name); } static void dump_section(grib_dumper* d,grib_accessor* a,grib_block_of_accessors* block) { - /*grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d;*/ - grib_dump_accessors_block(d,block); + /*grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d;*/ + grib_dump_accessors_block(d,block); } static void header(grib_dumper* d,grib_handle* h) { - long edition=0; - int ret=0; - grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; + long edition=0; + int ret=0; + grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; ret=grib_get_long(h,"editionNumber",&edition); - if (ret != GRIB_SUCCESS) { - grib_context_log(h->context,GRIB_LOG_ERROR,"Unable to get edition number."); - Assert(0); - } + if (ret != GRIB_SUCCESS) { + grib_context_log(h->context,GRIB_LOG_ERROR,"Unable to get edition number."); + Assert(0); + } - fprintf(self->dumper.out, - "#include \n" - "\n" - "/* This code was generated automatically */\n" - "\n"); + fprintf(self->dumper.out, + "#include \n" + "\n" + "/* This code was generated automatically */\n" + "\n"); - fprintf(self->dumper.out, - "\n" - "int main(int argc,const char** argv)\n" - "{\n" - " grib_handle *h = NULL;\n" - " size_t size = 0;\n" - " double* vdouble = NULL;\n" - " long* vlong = NULL;\n" - " FILE* f = NULL;\n" - " const char* p = NULL;\n" - " const void* buffer = NULL;\n" - "\n" - " if(argc != 2) {\n" - " fprintf(stderr,\"usage: %%s out\\n\",argv[0]);\n" - " exit(1);\n" - " }\n" - "\n" - " h = grib_handle_new_from_samples(NULL,\"GRIB%ld\");\n" - " if(!h) {\n" - " fprintf(stderr,\"Cannot create grib handle\\n\");\n" - " exit(1);\n" - " }\n" - "\n",(long)edition + fprintf(self->dumper.out, + "\n" + "int main(int argc,const char** argv)\n" + "{\n" + " grib_handle *h = NULL;\n" + " size_t size = 0;\n" + " double* vdouble = NULL;\n" + " long* vlong = NULL;\n" + " FILE* f = NULL;\n" + " const char* p = NULL;\n" + " const void* buffer = NULL;\n" + "\n" + " if(argc != 2) {\n" + " fprintf(stderr,\"usage: %%s out\\n\",argv[0]);\n" + " exit(1);\n" + " }\n" + "\n" + " h = grib_handle_new_from_samples(NULL,\"GRIB%ld\");\n" + " if(!h) {\n" + " fprintf(stderr,\"Cannot create grib handle\\n\");\n" + " exit(1);\n" + " }\n" + "\n",(long)edition ); } static void footer(grib_dumper* d,grib_handle* h) { - grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; + grib_dumper_grib_encode_C *self = (grib_dumper_grib_encode_C*)d; - fprintf(self->dumper.out, - - "/* Save the message */\n" - "\n" - " f = fopen(argv[1],\"w\");\n" - " if(!f) {\n" - " perror(argv[1]);\n" - " exit(1);\n" - " }\n" - "\n" - " GRIB_CHECK(grib_get_message(h,&buffer,&size),0);\n" - "\n" - " if(fwrite(buffer,1,size,f) != size) {\n" - " perror(argv[1]);\n" - " exit(1);\n" - " }\n" - "\n" - " if(fclose(f)) {\n" - " perror(argv[1]);\n" - " exit(1);\n" - " }\n" - "\n" - " grib_handle_delete(h);\n" - " return 0;\n" - "}\n" + fprintf(self->dumper.out, + "/* Save the message */\n" + "\n" + " f = fopen(argv[1],\"w\");\n" + " if(!f) {\n" + " perror(argv[1]);\n" + " exit(1);\n" + " }\n" + "\n" + " GRIB_CHECK(grib_get_message(h,&buffer,&size),0);\n" + "\n" + " if(fwrite(buffer,1,size,f) != size) {\n" + " perror(argv[1]);\n" + " exit(1);\n" + " }\n" + "\n" + " if(fclose(f)) {\n" + " perror(argv[1]);\n" + " exit(1);\n" + " }\n" + "\n" + " grib_handle_delete(h);\n" + " return 0;\n" + "}\n" ); } diff --git a/src/grib_dumper_class_serialize.c b/src/grib_dumper_class_serialize.c index 85bbb706b..809d547e7 100644 --- a/src/grib_dumper_class_serialize.c +++ b/src/grib_dumper_class_serialize.c @@ -87,46 +87,46 @@ static void init_class (grib_dumper_class* c){} static int init(grib_dumper* d) { - grib_dumper_serialize *self = (grib_dumper_serialize*)d; - self->format = (char*)d->arg; - return GRIB_SUCCESS; + grib_dumper_serialize *self = (grib_dumper_serialize*)d; + self->format = (char*)d->arg; + return GRIB_SUCCESS; } -static int destroy (grib_dumper* d){ - return GRIB_SUCCESS; +static int destroy (grib_dumper* d) +{ + return GRIB_SUCCESS; } static void dump_long(grib_dumper* d,grib_accessor* a,const char* comment) { - grib_dumper_serialize *self = (grib_dumper_serialize*)d; - long value=0; size_t size = 1; - int err = grib_unpack_long(a,&value,&size); + grib_dumper_serialize *self = (grib_dumper_serialize*)d; + long value=0; size_t size = 1; + int err = grib_unpack_long(a,&value,&size); - if( (a->flags & GRIB_ACCESSOR_FLAG_HIDDEN) != 0 ) - return; + if( (a->flags & GRIB_ACCESSOR_FLAG_HIDDEN) != 0 ) + return; - if( (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) != 0 && - (d->option_flags & GRIB_DUMP_FLAG_READ_ONLY) == 0 && - (strcmp(a->cclass->name,"lookup") != 0) ) - return; + if( (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) != 0 && + (d->option_flags & GRIB_DUMP_FLAG_READ_ONLY) == 0 && + (strcmp(a->cclass->name,"lookup") != 0) ) + return; - if( ((a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) != 0) && (value == GRIB_MISSING_LONG)) - fprintf(self->dumper.out,"%s = MISSING", a->name); - else - fprintf(self->dumper.out,"%s = %ld", a->name,value); + if( ((a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) != 0) && (value == GRIB_MISSING_LONG)) + fprintf(self->dumper.out,"%s = MISSING", a->name); + else + fprintf(self->dumper.out,"%s = %ld", a->name,value); - if ( ((a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) != 0) && - (strcmp(a->cclass->name,"lookup") != 0) ) - fprintf(self->dumper.out," (read_only)"); + if ( ((a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) != 0) && + (strcmp(a->cclass->name,"lookup") != 0) ) + fprintf(self->dumper.out," (read_only)"); #if 0 - if(comment) fprintf(self->dumper.out," [%s]",comment); + if(comment) fprintf(self->dumper.out," [%s]",comment); #endif - if(err) - fprintf(self->dumper.out," *** ERR=%d (%s) [grib_dumper_serialize::dump_long]",err,grib_get_error_message(err)); - - fprintf(self->dumper.out,"\n"); + if(err) + fprintf(self->dumper.out," *** ERR=%d (%s) [grib_dumper_serialize::dump_long]",err,grib_get_error_message(err)); + fprintf(self->dumper.out,"\n"); } #if 0 @@ -135,299 +135,292 @@ static int test_bit(long a, long b) {return a&(1<flags & GRIB_ACCESSOR_FLAG_HIDDEN) != 0 ) - return; + if( (a->flags & GRIB_ACCESSOR_FLAG_HIDDEN) != 0 ) + return; - if( (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) != 0 && - (d->option_flags & GRIB_DUMP_FLAG_READ_ONLY) == 0) - return; + if( (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) != 0 && + (d->option_flags & GRIB_DUMP_FLAG_READ_ONLY) == 0) + return; - fprintf(self->dumper.out,"%s = %ld ", a->name,value); + fprintf(self->dumper.out,"%s = %ld ", a->name,value); #if 0 - fprintf(self->dumper.out,"["); - for(i=0;i<(a->length*8);i++) { - if(test_bit(value,a->length*8-i-1)) - fprintf(self->dumper.out,"1"); + fprintf(self->dumper.out,"["); + for(i=0;i<(a->length*8);i++) { + if(test_bit(value,a->length*8-i-1)) + fprintf(self->dumper.out,"1"); + else + fprintf(self->dumper.out,"0"); + } + + if(comment) + fprintf(self->dumper.out,":%s]",comment); else - fprintf(self->dumper.out,"0"); - } - - if(comment) - fprintf(self->dumper.out,":%s]",comment); - else - fprintf(self->dumper.out,"]"); + fprintf(self->dumper.out,"]"); #endif - if(err) - fprintf(self->dumper.out," *** ERR=%d (%s)",err,grib_get_error_message(err)); - - fprintf(self->dumper.out,"\n"); + if(err) + fprintf(self->dumper.out," *** ERR=%d (%s)",err,grib_get_error_message(err)); + fprintf(self->dumper.out,"\n"); } static void dump_double(grib_dumper* d,grib_accessor* a,const char* comment) { - grib_dumper_serialize *self = (grib_dumper_serialize*)d; - double value; size_t size = 1; - int err = grib_unpack_double(a,&value,&size); + grib_dumper_serialize *self = (grib_dumper_serialize*)d; + double value; size_t size = 1; + int err = grib_unpack_double(a,&value,&size); - if( (a->flags & GRIB_ACCESSOR_FLAG_HIDDEN) != 0 ) - return; + if( (a->flags & GRIB_ACCESSOR_FLAG_HIDDEN) != 0 ) + return; - if( (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) != 0 && - (d->option_flags & GRIB_DUMP_FLAG_READ_ONLY) == 0) - return; + if( (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) != 0 && + (d->option_flags & GRIB_DUMP_FLAG_READ_ONLY) == 0) + return; + if( ((a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) != 0) && (value == GRIB_MISSING_DOUBLE)) + fprintf(self->dumper.out,"%s = MISSING", a->name); + else + fprintf(self->dumper.out,"%s = %g",a->name,value); - if( ((a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) != 0) && (value == GRIB_MISSING_DOUBLE)) - fprintf(self->dumper.out,"%s = MISSING", a->name); - else - fprintf(self->dumper.out,"%s = %g",a->name,value); - - if ( (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) != 0 ) fprintf(self->dumper.out," (read_only)"); + if ( (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) != 0 ) fprintf(self->dumper.out," (read_only)"); #if 0 - if(comment) fprintf(self->dumper.out," [%s]",comment); + if(comment) fprintf(self->dumper.out," [%s]",comment); #endif - if(err) - fprintf(self->dumper.out," *** ERR=%d (%s) [grib_dumper_serialize::dump_double]",err,grib_get_error_message(err)); - fprintf(self->dumper.out,"\n"); - + if(err) + fprintf(self->dumper.out," *** ERR=%d (%s) [grib_dumper_serialize::dump_double]",err,grib_get_error_message(err)); + fprintf(self->dumper.out,"\n"); } static void dump_string(grib_dumper* d,grib_accessor* a,const char* comment) { - grib_dumper_serialize *self = (grib_dumper_serialize*)d; - char value[1024]={0,}; size_t size = sizeof(value); - int err = grib_unpack_string(a,value,&size); - int i; + grib_dumper_serialize *self = (grib_dumper_serialize*)d; + char value[1024]={0,}; size_t size = sizeof(value); + int err = grib_unpack_string(a,value,&size); + int i; - char *p = value; + char *p = value; - if( (a->flags & GRIB_ACCESSOR_FLAG_HIDDEN) != 0 ) - return; + if( (a->flags & GRIB_ACCESSOR_FLAG_HIDDEN) != 0 ) + return; - if( (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) != 0 && - (d->option_flags & GRIB_DUMP_FLAG_READ_ONLY) == 0) - return; + if( (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) != 0 && + (d->option_flags & GRIB_DUMP_FLAG_READ_ONLY) == 0) + return; - while(*p) { if(!isprint(*p)) *p = '.'; p++; } + while(*p) { if(!isprint(*p)) *p = '.'; p++; } - for(i = 0; i < d->depth ; i++) fprintf(self->dumper.out," "); + for(i = 0; i < d->depth ; i++) fprintf(self->dumper.out," "); - - - fprintf(self->dumper.out,"%s = %s", a->name,value); - if ( (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) != 0 ) fprintf(self->dumper.out," (read_only)"); + fprintf(self->dumper.out,"%s = %s", a->name,value); + if ( (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) != 0 ) fprintf(self->dumper.out," (read_only)"); #if 0 - if(comment) fprintf(self->dumper.out," [%s]",comment); + if(comment) fprintf(self->dumper.out," [%s]",comment); #endif - if(err) - fprintf(self->dumper.out," *** ERR=%d (%s) [grib_dumper_serialize::dump_string]",err,grib_get_error_message(err)); - fprintf(self->dumper.out,"\n"); + if(err) + fprintf(self->dumper.out," *** ERR=%d (%s) [grib_dumper_serialize::dump_string]",err,grib_get_error_message(err)); + fprintf(self->dumper.out,"\n"); } static void dump_bytes(grib_dumper* d,grib_accessor* a,const char* comment) { - grib_dumper_serialize *self = (grib_dumper_serialize*)d; - int i,k,err =0; - int more = 0; - size_t size = a->length; - unsigned char* buf = (unsigned char*)grib_context_malloc(d->handle->context,size); + grib_dumper_serialize *self = (grib_dumper_serialize*)d; + int i,k,err =0; + int more = 0; + size_t size = a->length; + unsigned char* buf = (unsigned char*)grib_context_malloc(d->handle->context,size); - if( (a->flags & GRIB_ACCESSOR_FLAG_HIDDEN) != 0 ) - return; + if( (a->flags & GRIB_ACCESSOR_FLAG_HIDDEN) != 0 ) + return; - if( (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) != 0 && - (d->option_flags & GRIB_DUMP_FLAG_READ_ONLY) == 0) - return; + if( (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) != 0 && + (d->option_flags & GRIB_DUMP_FLAG_READ_ONLY) == 0) + return; - for(i = 0; i < d->depth ; i++) fprintf(self->dumper.out," "); - fprintf(self->dumper.out,"%s = (%ld) {", a->name,a->length); + for(i = 0; i < d->depth ; i++) fprintf(self->dumper.out," "); + fprintf(self->dumper.out,"%s = (%ld) {", a->name,a->length); - if(!buf) - { - if(size == 0) - fprintf(self->dumper.out,"}\n"); - else - fprintf(self->dumper.out," *** ERR cannot malloc(%ld) }\n",(long)size); - return; - } - - fprintf(self->dumper.out,"\n"); - - err = grib_unpack_bytes(a,buf,&size); - if(err){ - grib_context_free(d->handle->context,buf); - fprintf(self->dumper.out," *** ERR=%d (%s) [grib_dumper_serialize::dump_bytes]\n}",err,grib_get_error_message(err)); - return ; - } - - if(size > 100) { - more = size - 100; - size = 100; - } - - k = 0; - /* if(size > 100) size = 100; */ - while(k < size) - { - int j; - for(i = 0; i < d->depth + 3 ; i++) fprintf(self->dumper.out," "); - for(j = 0; j < 16 && k < size; j++, k++) + if(!buf) { - fprintf(self->dumper.out,"%02x",buf[k]); - if(k != size-1) - fprintf(self->dumper.out,", "); + if(size == 0) + fprintf(self->dumper.out,"}\n"); + else + fprintf(self->dumper.out," *** ERR cannot malloc(%ld) }\n",(long)size); + return; } + fprintf(self->dumper.out,"\n"); - } - if(more) - { - for(i = 0; i < d->depth + 3 ; i++) fprintf(self->dumper.out," "); - fprintf(self->dumper.out,"... %d more values\n",more); - } + err = grib_unpack_bytes(a,buf,&size); + if(err){ + grib_context_free(d->handle->context,buf); + fprintf(self->dumper.out," *** ERR=%d (%s) [grib_dumper_serialize::dump_bytes]\n}",err,grib_get_error_message(err)); + return ; + } - for(i = 0; i < d->depth ; i++) fprintf(self->dumper.out," "); - fprintf(self->dumper.out,"} # %s %s \n",a->creator->op, a->name); - grib_context_free(d->handle->context,buf); + if(size > 100) { + more = size - 100; + size = 100; + } + + k = 0; + /* if(size > 100) size = 100; */ + while(k < size) + { + int j; + for(i = 0; i < d->depth + 3 ; i++) fprintf(self->dumper.out," "); + for(j = 0; j < 16 && k < size; j++, k++) + { + fprintf(self->dumper.out,"%02x",buf[k]); + if(k != size-1) + fprintf(self->dumper.out,", "); + } + fprintf(self->dumper.out,"\n"); + } + + if(more) + { + for(i = 0; i < d->depth + 3 ; i++) fprintf(self->dumper.out," "); + fprintf(self->dumper.out,"... %d more values\n",more); + } + + for(i = 0; i < d->depth ; i++) fprintf(self->dumper.out," "); + fprintf(self->dumper.out,"} # %s %s \n",a->creator->op, a->name); + grib_context_free(d->handle->context,buf); } static void dump_values(grib_dumper* d,grib_accessor* a) { - grib_dumper_serialize *self = (grib_dumper_serialize*)d; - int k,err =0; - double* buf = NULL; - int last=0; - int columns=4; - char* values_format=NULL; - char* default_format="%.16e"; - char* columns_str=NULL; - size_t len=0; - char* pc=NULL; - char* pcf=NULL; - size_t size=0; - long count=0; - values_format=default_format; - - if((a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY)) - return; - - grib_value_count(a,&count); - size=count; - - if (self->format) { - if (self->format[0]=='\"') values_format=self->format+1; - else values_format=self->format; - last=strlen(values_format)-1; - if (values_format[last]=='\"') values_format[last]='\0'; - } - - - pc = values_format; - pcf = values_format; - while( *pc!='\0' && *pc != '%') pc++; - if (strlen(pc) > 1 ) { - values_format=pc; - len=pc-pcf; - } else { + grib_dumper_serialize *self = (grib_dumper_serialize*)d; + int k,err =0; + double* buf = NULL; + int last=0; + int columns=4; + char* values_format=NULL; + char* default_format="%.16e"; + char* columns_str=NULL; + size_t len=0; + char* pc=NULL; + char* pcf=NULL; + size_t size=0; + long count=0; values_format=default_format; - len=0; - } - if (len>0) { - columns_str=(char*)malloc((len+1)*sizeof(char)); - Assert(columns_str); - columns_str=(char*)memcpy(columns_str,pcf,len); - columns_str[len]='\0'; - columns=atoi(columns_str); - free(columns_str); - } + if((a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY)) + return; - if(size == 1){ - dump_double(d,a,NULL); - return ; - } + grib_value_count(a,&count); + size=count; - if ((d->option_flags & GRIB_DUMP_FLAG_VALUES) == 0 ) return; - - buf = (double*)grib_context_malloc(d->handle->context,size * sizeof(double)); - - fprintf(self->dumper.out,"%s (%ld) {",a->name,(long)size); - - if(!buf) - { - if(size == 0) - fprintf(self->dumper.out,"}\n"); - else - fprintf(self->dumper.out," *** ERR cannot malloc(%ld) }\n",(long)size); - return; - } - - fprintf(self->dumper.out,"\n"); - - err = grib_unpack_double(a,buf,&size); - - if(err){ - grib_context_free(d->handle->context,buf); - fprintf(self->dumper.out," *** ERR=%d (%s) [grib_dumper_serialize::dump_values]\n}",err,grib_get_error_message(err)); - return ; - } - - k = 0; - while(k < size) - { - int j; - for(j = 0; j < columns && k < size; j++, k++) - { - fprintf(self->dumper.out,values_format,buf[k]); - if(k != size-1) - fprintf(self->dumper.out,", "); + if (self->format) { + if (self->format[0]=='\"') values_format=self->format+1; + else values_format=self->format; + last=strlen(values_format)-1; + if (values_format[last]=='\"') values_format[last]='\0'; } + + pc = values_format; + pcf = values_format; + while( *pc!='\0' && *pc != '%') pc++; + if (strlen(pc) > 1 ) { + values_format=pc; + len=pc-pcf; + } else { + values_format=default_format; + len=0; + } + + if (len>0) { + columns_str=(char*)malloc((len+1)*sizeof(char)); + Assert(columns_str); + columns_str=(char*)memcpy(columns_str,pcf,len); + columns_str[len]='\0'; + columns=atoi(columns_str); + free(columns_str); + } + + if(size == 1){ + dump_double(d,a,NULL); + return ; + } + + if ((d->option_flags & GRIB_DUMP_FLAG_VALUES) == 0 ) return; + + buf = (double*)grib_context_malloc(d->handle->context,size * sizeof(double)); + + fprintf(self->dumper.out,"%s (%ld) {",a->name,(long)size); + + if(!buf) + { + if(size == 0) + fprintf(self->dumper.out,"}\n"); + else + fprintf(self->dumper.out," *** ERR cannot malloc(%ld) }\n",(long)size); + return; + } + fprintf(self->dumper.out,"\n"); - } - fprintf(self->dumper.out,"}\n"); - grib_context_free(d->handle->context,buf); + + err = grib_unpack_double(a,buf,&size); + + if(err){ + grib_context_free(d->handle->context,buf); + fprintf(self->dumper.out," *** ERR=%d (%s) [grib_dumper_serialize::dump_values]\n}",err,grib_get_error_message(err)); + return ; + } + + k = 0; + while(k < size) + { + int j; + for(j = 0; j < columns && k < size; j++, k++) + { + fprintf(self->dumper.out,values_format,buf[k]); + if(k != size-1) + fprintf(self->dumper.out,", "); + } + fprintf(self->dumper.out,"\n"); + } + fprintf(self->dumper.out,"}\n"); + grib_context_free(d->handle->context,buf); } static void dump_label(grib_dumper* d,grib_accessor* a,const char* comment) { #if 0 - grib_dumper_serialize *self = (grib_dumper_serialize*)d; - int i; - for(i = 0; i < d->depth ; i++) fprintf(self->dumper.out," "); - fprintf(self->dumper.out,"----> %s %s %s\n",a->creator->op, a->name,comment?comment:""); + grib_dumper_serialize *self = (grib_dumper_serialize*)d; + int i; + for(i = 0; i < d->depth ; i++) fprintf(self->dumper.out," "); + fprintf(self->dumper.out,"----> %s %s %s\n",a->creator->op, a->name,comment?comment:""); #endif } static void dump_section(grib_dumper* d,grib_accessor* a,grib_block_of_accessors* block) { - const char* secstr="section"; - int len=0; - grib_dumper_serialize *self = (grib_dumper_serialize*)d; + const char* secstr="section"; + int len=0; + grib_dumper_serialize *self = (grib_dumper_serialize*)d; - len=strlen(secstr); + len=strlen(secstr); + + if(a->name[0] == '_'){ + grib_dump_accessors_block(d,block); + return; + } + + if (strncmp(secstr,a->name,len)==0) + fprintf(self->dumper.out,"#------ %s -------\n",a->name); - if(a->name[0] == '_'){ grib_dump_accessors_block(d,block); - return; - } - - if (strncmp(secstr,a->name,len)==0) - fprintf(self->dumper.out,"#------ %s -------\n",a->name); - - - grib_dump_accessors_block(d,block); #if 0 - fprintf(self->dumper.out,"<------ %s %s\n",a->creator->op, a->name); + fprintf(self->dumper.out,"<------ %s %s\n",a->creator->op, a->name); #endif } diff --git a/src/grib_expression_class_is_in_list.c b/src/grib_expression_class_is_in_list.c index 51cf8c057..0fb44b4fb 100644 --- a/src/grib_expression_class_is_in_list.c +++ b/src/grib_expression_class_is_in_list.c @@ -91,167 +91,164 @@ static void init_class(grib_expression_class* c) /* END_CLASS_IMP */ -static grib_trie* load_list(grib_context* c,grib_expression* e, int* err) { +static grib_trie* load_list(grib_context* c,grib_expression* e, int* err) +{ + grib_expression_is_in_list* self = (grib_expression_is_in_list*)e; - grib_expression_is_in_list* self = (grib_expression_is_in_list*)e; + char* filename=NULL; + char line[1024]={0,}; + grib_trie* list=NULL; + FILE* f=NULL; - char* filename=NULL; - char line[1024]={0,}; - grib_trie* list=NULL; - FILE* f=NULL; + *err=GRIB_SUCCESS; - *err=GRIB_SUCCESS; + filename=grib_context_full_defs_path(c,self->list); + if (!filename) { + grib_context_log(c,GRIB_LOG_ERROR,"unable to find def file %s",self->list); + *err=GRIB_FILE_NOT_FOUND; + return NULL; + } else { + grib_context_log(c,GRIB_LOG_DEBUG,"found def file %s",filename); + } + list=(grib_trie*)grib_trie_get(c->lists,filename); + if (list) { + grib_context_log(c,GRIB_LOG_DEBUG,"using list %s from cache",self->list); + return list; + } else { + grib_context_log(c,GRIB_LOG_DEBUG,"using list %s from file %s",self->list,filename); + } - filename=grib_context_full_defs_path(c,self->list); - if (!filename) { - grib_context_log(c,GRIB_LOG_ERROR,"unable to find def file %s",self->list); - *err=GRIB_FILE_NOT_FOUND; - return NULL; - } else { - grib_context_log(c,GRIB_LOG_DEBUG,"found def file %s",filename); - } - list=(grib_trie*)grib_trie_get(c->lists,filename); - if (list) { - grib_context_log(c,GRIB_LOG_DEBUG,"using list %s from cache",self->list); - return list; - } else { - grib_context_log(c,GRIB_LOG_DEBUG,"using list %s from file %s",self->list,filename); - } + f=codes_fopen(filename,"r"); + if (!f) {*err=GRIB_IO_PROBLEM; return NULL;} - f=codes_fopen(filename,"r"); - if (!f) {*err=GRIB_IO_PROBLEM; return NULL;} + list=grib_trie_new(c); - list=grib_trie_new(c); + while(fgets(line,sizeof(line)-1,f)) { + unsigned char* p=(unsigned char*)line; + while (*p!=0) { + if (*p<33) {*p=0; break;} + p++; + } + grib_trie_insert(list,line,line); + } - while(fgets(line,sizeof(line)-1,f)) { - unsigned char* p=(unsigned char*)line; - while (*p!=0) { - if (*p<33) {*p=0; break;} - p++; - } - grib_trie_insert(list,line,line); - } + grib_trie_insert(c->lists,filename,list); - grib_trie_insert(c->lists,filename,list); - - fclose(f); - - return list; + fclose(f); + return list; } static const char* get_name(grib_expression* g) { - grib_expression_is_in_list* e = (grib_expression_is_in_list*)g; - return e->name; + grib_expression_is_in_list* e = (grib_expression_is_in_list*)g; + return e->name; } static int evaluate_long(grib_expression* g,grib_handle *h,long* result) { - grib_expression_is_in_list* e = (grib_expression_is_in_list*)g; - int err=0; - char mybuf[1024]={0,}; - size_t size=1024; + grib_expression_is_in_list* e = (grib_expression_is_in_list*)g; + int err=0; + char mybuf[1024]={0,}; + size_t size=1024; - grib_trie* list=load_list(h->context,g,&err); + grib_trie* list=load_list(h->context,g,&err); - if((err=grib_get_string_internal(h,e->name,mybuf,&size)) != GRIB_SUCCESS) - return err; + if((err=grib_get_string_internal(h,e->name,mybuf,&size)) != GRIB_SUCCESS) + return err; - if (grib_trie_get(list,mybuf)) *result=1; - else *result=0; + if (grib_trie_get(list,mybuf)) *result=1; + else *result=0; - return err; + return err; } static int evaluate_double(grib_expression *g,grib_handle *h,double* result) { - grib_expression_is_in_list* e = (grib_expression_is_in_list*)g; - int err=0; - char mybuf[1024]={0,}; - size_t size=1024; + grib_expression_is_in_list* e = (grib_expression_is_in_list*)g; + int err=0; + char mybuf[1024]={0,}; + size_t size=1024; - grib_trie* list=load_list(h->context,g,&err); + grib_trie* list=load_list(h->context,g,&err); - if((err=grib_get_string_internal(h,e->name,mybuf,&size)) != GRIB_SUCCESS) - return err; + if((err=grib_get_string_internal(h,e->name,mybuf,&size)) != GRIB_SUCCESS) + return err; - if (grib_trie_get(list,mybuf)) *result=1; - else *result=0; + if (grib_trie_get(list,mybuf)) *result=1; + else *result=0; - return err; + return err; } static string evaluate_string(grib_expression* g,grib_handle* h,char* buf,size_t* size,int* err) { - grib_expression_is_in_list* e = (grib_expression_is_in_list*)g; - char mybuf[1024]={0,}; - size_t sizebuf=1024; - long result; + grib_expression_is_in_list* e = (grib_expression_is_in_list*)g; + char mybuf[1024]={0,}; + size_t sizebuf=1024; + long result; - grib_trie* list=load_list(h->context,g,err); + grib_trie* list=load_list(h->context,g,err); - if((*err=grib_get_string_internal(h,e->name,mybuf,&sizebuf)) != GRIB_SUCCESS) - return NULL; + if((*err=grib_get_string_internal(h,e->name,mybuf,&sizebuf)) != GRIB_SUCCESS) + return NULL; - if (grib_trie_get(list,mybuf)) result=1; - else result=0; + if (grib_trie_get(list,mybuf)) result=1; + else result=0; - sprintf(buf,"%ld",result); - *size=strlen(buf); - return buf; + sprintf(buf,"%ld",result); + *size=strlen(buf); + return buf; } static void print(grib_context* c,grib_expression* g,grib_handle* f) { - grib_expression_is_in_list* e = (grib_expression_is_in_list*)g; - printf("access('%s",e->name); - if(f) - { - long s = 0; - grib_get_long(f,e->name,&s); - printf("=%ld",s); - } - printf("')"); + grib_expression_is_in_list* e = (grib_expression_is_in_list*)g; + printf("access('%s",e->name); + if(f) + { + long s = 0; + grib_get_long(f,e->name,&s); + printf("=%ld",s); + } + printf("')"); } static void destroy(grib_context* c,grib_expression* g) { } +static void add_dependency(grib_expression* g, grib_accessor* observer){ + grib_expression_is_in_list* e = (grib_expression_is_in_list*)g; + grib_accessor *observed = grib_find_accessor(grib_handle_of_accessor(observer),e->name); -static void add_dependency(grib_expression* g, grib_accessor* observer){ - grib_expression_is_in_list* e = (grib_expression_is_in_list*)g; - grib_accessor *observed = grib_find_accessor(grib_handle_of_accessor(observer),e->name); + if(!observed) + { + /* grib_context_log(observer->context, GRIB_LOG_ERROR, */ + /* "Error in accessor_add_dependency: cannot find [%s]", e->name); */ + /* Assert(observed); */ + return; + } - if(!observed) - { - /* grib_context_log(observer->context, GRIB_LOG_ERROR, */ - /* "Error in accessor_add_dependency: cannot find [%s]", e->name); */ - /* Assert(observed); */ - return; - } - - grib_dependency_add(observer,observed); + grib_dependency_add(observer,observed); } grib_expression* new_is_in_list_expression(grib_context* c,const char* name,const char* list) { - grib_expression_is_in_list* e = (grib_expression_is_in_list*)grib_context_malloc_clear_persistent(c,sizeof(grib_expression_is_in_list)); - e->base.cclass = grib_expression_class_is_in_list; - e->name = grib_context_strdup_persistent(c,name); - e->list = grib_context_strdup_persistent(c,list); - return (grib_expression*)e; + grib_expression_is_in_list* e = (grib_expression_is_in_list*)grib_context_malloc_clear_persistent(c,sizeof(grib_expression_is_in_list)); + e->base.cclass = grib_expression_class_is_in_list; + e->name = grib_context_strdup_persistent(c,name); + e->list = grib_context_strdup_persistent(c,list); + return (grib_expression*)e; } static int native_type(grib_expression* g,grib_handle *h) { - grib_expression_is_in_list* e = (grib_expression_is_in_list*)g; - int type = 0; - int err; - if((err=grib_get_native_type(h,e->name,&type)) != GRIB_SUCCESS) - grib_context_log(h->context, GRIB_LOG_ERROR, - "Error in native_type %s : %s", e->name,grib_get_error_message(err)); - return type; + grib_expression_is_in_list* e = (grib_expression_is_in_list*)g; + int type = 0; + int err; + if((err=grib_get_native_type(h,e->name,&type)) != GRIB_SUCCESS) + grib_context_log(h->context, GRIB_LOG_ERROR, + "Error in native_type %s : %s", e->name,grib_get_error_message(err)); + return type; } - diff --git a/src/grib_expression_class_is_integer.c b/src/grib_expression_class_is_integer.c index 6933f7365..1eed17568 100644 --- a/src/grib_expression_class_is_integer.c +++ b/src/grib_expression_class_is_integer.c @@ -94,113 +94,112 @@ static void init_class(grib_expression_class* c) static const char* get_name(grib_expression* g) { - grib_expression_is_integer* e = (grib_expression_is_integer*)g; - return e->name; + grib_expression_is_integer* e = (grib_expression_is_integer*)g; + return e->name; } static int evaluate_long(grib_expression* g,grib_handle *h,long* result) { - grib_expression_is_integer* e = (grib_expression_is_integer*)g; - int err=0; - char mybuf[1024]={0,}; - size_t size=1024; - char *p=0; - long val=0; - char* start=0; + grib_expression_is_integer* e = (grib_expression_is_integer*)g; + int err=0; + char mybuf[1024]={0,}; + size_t size=1024; + char *p=0; + long val=0; + char* start=0; - if((err=grib_get_string_internal(h,e->name,mybuf,&size)) != GRIB_SUCCESS) - return err; + if((err=grib_get_string_internal(h,e->name,mybuf,&size)) != GRIB_SUCCESS) + return err; - start=mybuf+e->start; + start=mybuf+e->start; - if (e->length > 0 ) start[e->length]=0; + if (e->length > 0 ) start[e->length]=0; - val=strtol(start,&p,10); + val=strtol(start,&p,10); - if (*p!=0) - *result=0; - else - *result=1; + if (*p!=0) + *result=0; + else + *result=1; - (void)val; - return err; + (void)val; + return err; } static int evaluate_double(grib_expression *g,grib_handle *h,double* result) { - int err=0; - long lresult=0; + int err=0; + long lresult=0; - err=evaluate_long(g,h,&lresult); - *result=lresult; - return err; + err=evaluate_long(g,h,&lresult); + *result=lresult; + return err; } static string evaluate_string(grib_expression* g,grib_handle* h,char* buf,size_t* size,int* err) { - long lresult=0; - double dresult=0.0; + long lresult=0; + double dresult=0.0; - switch (grib_expression_native_type(h, g)) { + switch (grib_expression_native_type(h, g)) { case GRIB_TYPE_LONG: - *err=evaluate_long(g,h,&lresult); - sprintf(buf,"%ld",lresult); - break; + *err=evaluate_long(g,h,&lresult); + sprintf(buf,"%ld",lresult); + break; case GRIB_TYPE_DOUBLE: - *err=evaluate_double(g,h,&dresult); - sprintf(buf,"%g",dresult); - break; - } - return buf; + *err=evaluate_double(g,h,&dresult); + sprintf(buf,"%g",dresult); + break; + } + return buf; } static void print(grib_context* c,grib_expression* g,grib_handle* f) { - grib_expression_is_integer* e = (grib_expression_is_integer*)g; - printf("access('%s",e->name); - if(f) - { - long s = 0; - grib_get_long(f,e->name,&s); - printf("=%ld",s); - } - printf("')"); + grib_expression_is_integer* e = (grib_expression_is_integer*)g; + printf("access('%s",e->name); + if(f) + { + long s = 0; + grib_get_long(f,e->name,&s); + printf("=%ld",s); + } + printf("')"); } static void destroy(grib_context* c,grib_expression* g) { - grib_expression_is_integer* e = (grib_expression_is_integer*)g; - grib_context_free_persistent(c,e->name); + grib_expression_is_integer* e = (grib_expression_is_integer*)g; + grib_context_free_persistent(c,e->name); } -static void add_dependency(grib_expression* g, grib_accessor* observer){ - grib_expression_is_integer* e = (grib_expression_is_integer*)g; - grib_accessor *observed = grib_find_accessor(grib_handle_of_accessor(observer),e->name); +static void add_dependency(grib_expression* g, grib_accessor* observer){ + grib_expression_is_integer* e = (grib_expression_is_integer*)g; + grib_accessor *observed = grib_find_accessor(grib_handle_of_accessor(observer),e->name); - if(!observed) - { - /* grib_context_log(observer->context, GRIB_LOG_ERROR, */ - /* "Error in accessor_add_dependency: cannot find [%s]", e->name); */ - /* Assert(observed); */ - return; - } + if(!observed) + { + /* grib_context_log(observer->context, GRIB_LOG_ERROR, */ + /* "Error in accessor_add_dependency: cannot find [%s]", e->name); */ + /* Assert(observed); */ + return; + } - grib_dependency_add(observer,observed); + grib_dependency_add(observer,observed); } grib_expression* new_is_integer_expression(grib_context* c,const char *name,int start,int length) { - grib_expression_is_integer* e = (grib_expression_is_integer*)grib_context_malloc_clear_persistent(c,sizeof(grib_expression_is_integer)); - e->base.cclass = grib_expression_class_is_integer; - e->name = grib_context_strdup_persistent(c,name); - e->start = start; - e->length = length; - return (grib_expression*)e; + grib_expression_is_integer* e = (grib_expression_is_integer*)grib_context_malloc_clear_persistent(c,sizeof(grib_expression_is_integer)); + e->base.cclass = grib_expression_class_is_integer; + e->name = grib_context_strdup_persistent(c,name); + e->start = start; + e->length = length; + return (grib_expression*)e; } static int native_type(grib_expression* g,grib_handle *h) { - return GRIB_TYPE_LONG; + return GRIB_TYPE_LONG; } - From 205bb2462f8d4fa1872afeb5a04422569428b6df Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 10 Jan 2020 14:06:45 +0000 Subject: [PATCH 010/683] Indentation --- src/grib_accessor_class_long.c | 22 +++++++++++----------- src/grib_accessor_class_section_length.c | 16 ++++++++-------- src/grib_accessor_class_variable.c | 18 +++++++++--------- 3 files changed, 28 insertions(+), 28 deletions(-) diff --git a/src/grib_accessor_class_long.c b/src/grib_accessor_class_long.c index 9c1684d85..2ddba18f7 100644 --- a/src/grib_accessor_class_long.c +++ b/src/grib_accessor_class_long.c @@ -186,20 +186,20 @@ static int pack_missing(grib_accessor* a) /* static int is_missing(grib_accessor* a){ - size_t one = 1; - long value = GRIB_MISSING_LONG; - long ret=0; + size_t one = 1; + long value = GRIB_MISSING_LONG; + long ret=0; - if(a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) - { - ret = grib_unpack_long(a,&value,&one); - Assert( ret == 0); - return value == GRIB_MISSING_LONG; - } + if(a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) + { + ret = grib_unpack_long(a,&value,&one); + Assert( ret == 0); + return value == GRIB_MISSING_LONG; + } - return 0; + return 0; } - */ +*/ static int unpack_double(grib_accessor* a, double* val,size_t *len) { diff --git a/src/grib_accessor_class_section_length.c b/src/grib_accessor_class_section_length.c index 291074715..f80a2f895 100644 --- a/src/grib_accessor_class_section_length.c +++ b/src/grib_accessor_class_section_length.c @@ -133,20 +133,20 @@ static void init_class(grib_accessor_class* c) static void init(grib_accessor* a, const long len , grib_arguments* arg ) { - a->parent->aclength = a; - a->length = len; - a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; - a->flags |= GRIB_ACCESSOR_FLAG_EDITION_SPECIFIC; - Assert(a->length>=0); + a->parent->aclength = a; + a->length = len; + a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; + a->flags |= GRIB_ACCESSOR_FLAG_EDITION_SPECIFIC; + Assert(a->length>=0); } static void dump(grib_accessor* a, grib_dumper* dumper) { - grib_dump_long(dumper,a,NULL); + grib_dump_long(dumper,a,NULL); } static int value_count(grib_accessor* a,long* c) { - *c=1; - return 0; + *c=1; + return 0; } diff --git a/src/grib_accessor_class_variable.c b/src/grib_accessor_class_variable.c index 2cc343faf..19bdb6ccb 100644 --- a/src/grib_accessor_class_variable.c +++ b/src/grib_accessor_class_variable.c @@ -356,16 +356,16 @@ static long byte_count(grib_accessor* a) /* NOT ANY MORE static long byte_count(grib_accessor* a) { - grib_accessor_variable *self = (grib_accessor_variable*)a; - char buf[80]={0,}; + grib_accessor_variable *self = (grib_accessor_variable*)a; + char buf[80]={0,}; - if(self->type == GRIB_TYPE_STRING) { - return strlen(self->cval) +1; - } else { - sprintf(buf,"%g",self->dval); - printf("========> \"%s\"\n",buf); - return strlen(buf)+1; - } + if(self->type == GRIB_TYPE_STRING) { + return strlen(self->cval) +1; + } else { + sprintf(buf,"%g",self->dval); + printf("========> \"%s\"\n",buf); + return strlen(buf)+1; + } } */ From 701a152575b5d3585b605e9a39a2ba9893fa4537 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 10 Jan 2020 15:40:59 +0000 Subject: [PATCH 011/683] ECC-1018: Reduced size of sample file --- samples/diag.tmpl | Bin 2423 -> 120 bytes tests/diag.sh | 23 ++++++++++++++++------- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/samples/diag.tmpl b/samples/diag.tmpl index 94b2b629d1ade8f50606e677c63e029ce93be313..e9603d191887997477a7c383d7ab6505f550fc68 100644 GIT binary patch literal 120 zcmZ?qbaZE6kYGq+WMlw=3@&~i1|S>4(_&y?0f_>65Cr1Df%8KKh6V;E-Bbp1AYd?u IOAx^T0JDPyo&W#< literal 2423 zcmYk7yN=sH3`LbklORBfG^ql&>AVXBspZkbgPrw5q%G_sRjPbKJ}sY@OH#w300U>P zE??u3G~|Bny06{uH*Y$*{(SuWsRQfk!`gN4MSa(GZ#&auxn2E_Z~yu)zrJI6!0&mt z`#U9G`WGIThusc*S;mx!OW>1pIyXI?T~CA?TdeTO8Hoa)rfcEbveRq2o&t-Gz&mV8RdS!-T7`2~kW%RSL_U|nE67o=BizQw{EbaK|X~;zR0;e-7I?u~U_Zh?O zbrxj~+?Ru_=w6so)xqu&-4^N@#*6!xGKV z%pTbNHoN&TyIE}Z#%qb3ZGqV*;zv9>G9&mJ_+fu@{b7&Oym^?OoL~1X_H}=By)S~6 z^H7>zrl#k>)7WTm~8z|Vn?fm44Ot3Mrjs=OaYsi1l8nR4Yz%BR4xE9!y% zSb3V046k|`vrJ~p=SyW?w`WB5bG0)w;VjWQoW)~&Q@?NtdRd!Jx>e@4Z8Ns*F_r;q zPTd{Jk2C4Dl((E;}4@7vZ@~bQ PlyiD2<7wvO?kBGQe1t|H diff --git a/tests/diag.sh b/tests/diag.sh index 76b06371a..41509629f 100755 --- a/tests/diag.sh +++ b/tests/diag.sh @@ -25,16 +25,14 @@ sample=$ECCODES_SAMPLES_PATH/diag.tmpl ${tools_dir}/grib_ls $sample > $REDIRECT ${tools_dir}/grib_dump $sample > $REDIRECT -# Check setting keys -# ------------------- +echo "Check setting integer keys..." +# ---------------------------------- echo 'set numberOfIntegers=3; set integerValues={55, 44, 66}; write;' | ${tools_dir}/grib_filter -o $tempOut - $sample ${tools_dir}/grib_dump -p numberOfFloats,numberOfIntegers,floatValues,integerValues $tempOut | sed 1d > $tempTxt cat > $tempRef < $tempTxt cat > $tempRef < $tempRef < $tempTxt @@ -70,6 +72,13 @@ cat > $tempRef < $tempTxt +grep -q "'E', 'C', 'M', 'W', 'F', ' '" $tempTxt + # TODO encoding of characters not fully working. We are using one-byte integers instead #echo 'set numberOfCharacters=4; set charValues={"J","u","m","p"}; write;'| ${tools_dir}/grib_filter -o $tempOut - $sample #res=`${tools_dir}/grib_dump $tempOut | grep charValues | tr -d '\n' | tr -d ' '` From 7162f9efe98893ad2a171166f1cc799122375189 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 27 Apr 2020 12:51:19 +0100 Subject: [PATCH 012/683] Update version number --- .appveyor.yml | 2 +- VERSION.cmake | 2 +- version.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 09ff2b126..6ab28a6e5 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -2,7 +2,7 @@ # general configuration # #---------------------------------# -version: 2.17.0-{build}-{branch} +version: 2.17.1-{build}-{branch} branches: only: diff --git a/VERSION.cmake b/VERSION.cmake index b4cbdd932..18c8f99ec 100644 --- a/VERSION.cmake +++ b/VERSION.cmake @@ -1 +1 @@ -set( ${PROJECT_NAME}_VERSION_STR "2.17.0" ) +set( ${PROJECT_NAME}_VERSION_STR "2.17.1" ) diff --git a/version.sh b/version.sh index aa1f5541e..0accc9930 100644 --- a/version.sh +++ b/version.sh @@ -4,7 +4,7 @@ PACKAGE_NAME='eccodes' # Package version ECCODES_MAJOR_VERSION=2 ECCODES_MINOR_VERSION=17 -ECCODES_REVISION_VERSION=0 +ECCODES_REVISION_VERSION=1 ECCODES_CURRENT=1 ECCODES_REVISION=0 From d0ae5a24393436d358eff856437067d6bcb36744 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 27 Apr 2020 13:08:24 +0100 Subject: [PATCH 013/683] ECC-1090: Create a new MARS type 'eme' for ensemble data assimilation model errors --- definitions/mars/type.table | 1 + src/grib_accessor_class_g2_mars_labeling.c | 1 + 2 files changed, 2 insertions(+) diff --git a/definitions/mars/type.table b/definitions/mars/type.table index c9dd876fa..2f28ede79 100644 --- a/definitions/mars/type.table +++ b/definitions/mars/type.table @@ -37,6 +37,7 @@ 36 pd Probability distribution 37 ci Cluster information 38 sot Shift of Tail +39 eme Ensemble data assimilation model errors 40 im Images 42 sim Simulated images 43 wem Weighted ensemble mean diff --git a/src/grib_accessor_class_g2_mars_labeling.c b/src/grib_accessor_class_g2_mars_labeling.c index d758b4d43..2fb5b9d3c 100644 --- a/src/grib_accessor_class_g2_mars_labeling.c +++ b/src/grib_accessor_class_g2_mars_labeling.c @@ -353,6 +353,7 @@ static int extra_set(grib_accessor* a, long val) case 36: /* Probability distribution (pd) */ case 37: /* Cluster information (ci) */ case 38: /* Shift of Tail (sot) */ + case 39: /* Ensemble data assimilation model errors */ case 40: /* Images (im) */ case 42: /* Simulated images (sim) */ typeOfProcessedData = 255; From 155d753efea1931d8865d846dfe6c2a97291453f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 27 Apr 2020 13:39:42 +0100 Subject: [PATCH 014/683] ECC-1091: Change shortname of paramId 171055 to mean2t24a --- definitions/grib1/localConcepts/ecmf/cfVarName.def | 2 +- definitions/grib1/localConcepts/ecmf/shortName.def | 2 +- definitions/grib2/localConcepts/ecmf/cfVarName.def | 2 +- definitions/grib2/localConcepts/ecmf/shortName.def | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/definitions/grib1/localConcepts/ecmf/cfVarName.def b/definitions/grib1/localConcepts/ecmf/cfVarName.def index 8d7a0369b..40549c858 100644 --- a/definitions/grib1/localConcepts/ecmf/cfVarName.def +++ b/definitions/grib1/localConcepts/ecmf/cfVarName.def @@ -13910,7 +13910,7 @@ indicatorOfParameter = 54 ; } #Mean 2 metre temperature in the last 24 hours anomaly -'mn2t24a' = { +'mean2t24a' = { table2Version = 171 ; indicatorOfParameter = 55 ; } diff --git a/definitions/grib1/localConcepts/ecmf/shortName.def b/definitions/grib1/localConcepts/ecmf/shortName.def index 01113ad30..c6bbdf88d 100644 --- a/definitions/grib1/localConcepts/ecmf/shortName.def +++ b/definitions/grib1/localConcepts/ecmf/shortName.def @@ -13910,7 +13910,7 @@ indicatorOfParameter = 54 ; } #Mean 2 metre temperature in the last 24 hours anomaly -'mn2t24a' = { +'mean2t24a' = { table2Version = 171 ; indicatorOfParameter = 55 ; } diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.def b/definitions/grib2/localConcepts/ecmf/cfVarName.def index 75ca27689..5a4b2ab9b 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.def @@ -17983,7 +17983,7 @@ parameterNumber = 54 ; } #Mean 2 metre temperature in the last 24 hours anomaly -'mn2t24a' = { +'mean2t24a' = { discipline = 192 ; parameterCategory = 171 ; parameterNumber = 55 ; diff --git a/definitions/grib2/localConcepts/ecmf/shortName.def b/definitions/grib2/localConcepts/ecmf/shortName.def index c7d270334..78b8e5e70 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.def @@ -17983,7 +17983,7 @@ parameterNumber = 54 ; } #Mean 2 metre temperature in the last 24 hours anomaly -'mn2t24a' = { +'mean2t24a' = { discipline = 192 ; parameterCategory = 171 ; parameterNumber = 55 ; From ac5266ab777b28f93b2bfebc95a6a41a5eeff494 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Fri, 15 May 2020 10:59:52 +0100 Subject: [PATCH 015/683] adding sea ice Level and sea ice layer in the GRIB2 typeOfLevel concept --- definitions/grib2/template.4.horizontal.def | 2 ++ 1 file changed, 2 insertions(+) diff --git a/definitions/grib2/template.4.horizontal.def b/definitions/grib2/template.4.horizontal.def index 348e4eb89..4a6f69902 100755 --- a/definitions/grib2/template.4.horizontal.def +++ b/definitions/grib2/template.4.horizontal.def @@ -74,6 +74,8 @@ concept_nofail vertical.typeOfLevel (unknown) { 'entireOcean' = {typeOfFirstFixedSurface=1;typeOfSecondFixedSurface=9;} 'snow' = {typeOfFirstFixedSurface=114;typeOfSecondFixedSurface=255;} 'snowLayer' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=114;} + 'seaIce' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=255;} + 'seaIceLayer' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=152;} 'oceanSurface' = {typeOfFirstFixedSurface=160; scaleFactorOfFirstFixedSurface=0; scaledValueOfFirstFixedSurface=0; typeOfSecondFixedSurface=255;} 'oceanLayer' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=160;} From 43b3aff9a1c2986357e663d86b8fd8b975fb9ee2 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Fri, 15 May 2020 11:29:14 +0100 Subject: [PATCH 016/683] move TypeOfLevel concept into a external file typeOfLevelConcept.def --- definitions/grib2/template.4.horizontal.def | 58 +-------------------- definitions/grib2/typeOfLevelConcept.def | 47 +++++++++++++++++ 2 files changed, 48 insertions(+), 57 deletions(-) create mode 100644 definitions/grib2/typeOfLevelConcept.def diff --git a/definitions/grib2/template.4.horizontal.def b/definitions/grib2/template.4.horizontal.def index 4a6f69902..d9f82be5f 100755 --- a/definitions/grib2/template.4.horizontal.def +++ b/definitions/grib2/template.4.horizontal.def @@ -24,63 +24,7 @@ unsigned[4] scaledValueOfSecondFixedSurface = missing() : can_be_missing,dump,no transient pressureUnits="hPa"; -concept_nofail vertical.typeOfLevel (unknown) { -#set uses the last one -#get returns the first match - 'surface' = { typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=255; } - 'cloudBase' = { typeOfFirstFixedSurface=2; typeOfSecondFixedSurface=255; } - 'cloudTop' = { typeOfFirstFixedSurface=3; typeOfSecondFixedSurface=255; } - 'isothermZero' = { typeOfFirstFixedSurface=4; typeOfSecondFixedSurface=255; } - 'adiabaticCondensation' = {typeOfFirstFixedSurface=5; typeOfSecondFixedSurface=255; } - 'maxWind' = {typeOfFirstFixedSurface=6; typeOfSecondFixedSurface=255;} - 'tropopause' = {typeOfFirstFixedSurface=7; typeOfSecondFixedSurface=255;} - 'nominalTop' = {typeOfFirstFixedSurface=8; typeOfSecondFixedSurface=255; } - 'seaBottom' = {typeOfFirstFixedSurface=9; typeOfSecondFixedSurface=255;} - - # Note: We already had 'entireAtmosphere' mapped before adding this one so had to choose another name - 'atmosphere' = {typeOfFirstFixedSurface=10; typeOfSecondFixedSurface=255;} - - 'isothermal' = {typeOfFirstFixedSurface=20; typeOfSecondFixedSurface=255;} - 'isobaricInPa' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=255; pressureUnits='Pa'; } - 'isobaricInhPa' = {typeOfFirstFixedSurface=100; pressureUnits='hPa'; typeOfSecondFixedSurface=255;} - 'isobaricLayer' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=100;} - 'meanSea' = { typeOfFirstFixedSurface=101; typeOfSecondFixedSurface=255; } - 'heightAboveSea' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=255;} - 'heightAboveSeaLayer' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=102;} - 'heightAboveGround' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=255;} - 'heightAboveGroundLayer' = {typeOfFirstFixedSurface=103;typeOfSecondFixedSurface=103;} - 'sigma' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=255;} - 'sigmaLayer' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=104;} - 'hybrid' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=255;} - 'hybridHeight' = {typeOfFirstFixedSurface=118; typeOfSecondFixedSurface=255;} - 'hybridLayer' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=105; } - 'depthBelowLand' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=255;} - 'depthBelowLandLayer' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=106;} - 'theta' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=255;} - 'thetaLayer' = {typeOfFirstFixedSurface=107;typeOfSecondFixedSurface=107;} - 'pressureFromGround' = {typeOfFirstFixedSurface=108; typeOfSecondFixedSurface=255;} - 'pressureFromGroundLayer' = {typeOfFirstFixedSurface=108;typeOfSecondFixedSurface=108;} - 'potentialVorticity' = {typeOfFirstFixedSurface=109; typeOfSecondFixedSurface=255;} - 'eta' = {typeOfFirstFixedSurface=111; typeOfSecondFixedSurface=255;} - 'soil' = {typeOfFirstFixedSurface=151; typeOfSecondFixedSurface=255;} - 'soilLayer' = {typeOfFirstFixedSurface=151; typeOfSecondFixedSurface=151;} - -# In the case of Generalized vertical height coordinates, NV must be 6 - 'generalVertical' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; NV=6;} - 'generalVerticalLayer' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; typeOfSecondFixedSurface=150; NV=6;} - - 'depthBelowSea' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=255;} - 'entireAtmosphere' = {typeOfFirstFixedSurface=1;typeOfSecondFixedSurface=8;} - 'entireOcean' = {typeOfFirstFixedSurface=1;typeOfSecondFixedSurface=9;} - 'snow' = {typeOfFirstFixedSurface=114;typeOfSecondFixedSurface=255;} - 'snowLayer' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=114;} - 'seaIce' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=255;} - 'seaIceLayer' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=152;} - - 'oceanSurface' = {typeOfFirstFixedSurface=160; scaleFactorOfFirstFixedSurface=0; scaledValueOfFirstFixedSurface=0; typeOfSecondFixedSurface=255;} - 'oceanLayer' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=160;} - 'mixedLayerDepth' = {typeOfFirstFixedSurface=169; typeOfSecondFixedSurface=255;} -} +concept_nofail vertical.typeOfLevel (unknown,"typeOfLevelConcept.def",conceptsLocalMarsDirAll,conceptsMasterMarsDir); alias levelType=typeOfFirstFixedSurface; diff --git a/definitions/grib2/typeOfLevelConcept.def b/definitions/grib2/typeOfLevelConcept.def new file mode 100644 index 000000000..83893e82e --- /dev/null +++ b/definitions/grib2/typeOfLevelConcept.def @@ -0,0 +1,47 @@ +# Concept type of level +'surface' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=255;} +'cloudBase' = {typeOfFirstFixedSurface=2; typeOfSecondFixedSurface=255;} +'cloudTop' = {typeOfFirstFixedSurface=3; typeOfSecondFixedSurface=255;} +'isothermZero' = {typeOfFirstFixedSurface=4; typeOfSecondFixedSurface=255;} +'adiabaticCondensation' = {typeOfFirstFixedSurface=5; typeOfSecondFixedSurface=255;} +'maxWind' = {typeOfFirstFixedSurface=6; typeOfSecondFixedSurface=255;} +'tropopause' = {typeOfFirstFixedSurface=7; typeOfSecondFixedSurface=255;} +'nominalTop' = {typeOfFirstFixedSurface=8; typeOfSecondFixedSurface=255;} +'seaBottom' = {typeOfFirstFixedSurface=9; typeOfSecondFixedSurface=255;} +'atmosphere' = {typeOfFirstFixedSurface=10; typeOfSecondFixedSurface=255;} +'isothermal' = {typeOfFirstFixedSurface=20; typeOfSecondFixedSurface=255;} +'isobaricInPa' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=255; pressureUnits='Pa';} +'isobaricInhPa' = {typeOfFirstFixedSurface=100; pressureUnits='hPa'; typeOfSecondFixedSurface=255;} +'isobaricLayer' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=100;} +'meanSea' = {typeOfFirstFixedSurface=101; typeOfSecondFixedSurface=255;} +'heightAboveSea' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=255;} +'heightAboveSeaLayer' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=102;} +'heightAboveGround' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=255;} +'heightAboveGroundLayer' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=103;} +'sigma' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=255;} +'sigmaLayer' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=104;} +'hybrid' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=255;} +'hybridHeight' = {typeOfFirstFixedSurface=118; typeOfSecondFixedSurface=255;} +'hybridLayer' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=105;} +'depthBelowLand' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=255;} +'depthBelowLandLayer' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=106;} +'theta' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=255;} +'thetaLayer' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=107;} +'pressureFromGround' = {typeOfFirstFixedSurface=108; typeOfSecondFixedSurface=255;} +'pressureFromGroundLayer' = {typeOfFirstFixedSurface=108; typeOfSecondFixedSurface=108;} +'potentialVorticity' = {typeOfFirstFixedSurface=109; typeOfSecondFixedSurface=255;} +'eta' = {typeOfFirstFixedSurface=111; typeOfSecondFixedSurface=255;} +'soil' = {typeOfFirstFixedSurface=151; typeOfSecondFixedSurface=255;} +'soilLayer' = {typeOfFirstFixedSurface=151; typeOfSecondFixedSurface=151;} +'generalVertical' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; NV=6;} +'generalVerticalLayer' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; typeOfSecondFixedSurface=150; NV=6;} +'depthBelowSea' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=255;} +'oceanSurface' = {typeOfFirstFixedSurface=160; scaleFactorOfFirstFixedSurface=0; scaledValueOfFirstFixedSurface=0; typeOfSecondFixedSurface=255;} +'oceanLayer' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=160;} +'entireAtmosphere' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=8;} +'entireOcean' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=9;} +'snow' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=255;} +'snowLayer' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=114;} +'seaIce' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=255;} +'seaIceLayer' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=152;} +'mixedLayerDepth' = {typeOfFirstFixedSurface=169; typeOfSecondFixedSurface=255;} From fa45bf2a472498446aeeed41dca2019a4ccb1294 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Fri, 15 May 2020 11:46:19 +0100 Subject: [PATCH 017/683] update the typeOfLevel concept with correct lookup paths --- definitions/grib2/template.4.horizontal.def | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/definitions/grib2/template.4.horizontal.def b/definitions/grib2/template.4.horizontal.def index d9f82be5f..d3739c0b1 100755 --- a/definitions/grib2/template.4.horizontal.def +++ b/definitions/grib2/template.4.horizontal.def @@ -24,7 +24,7 @@ unsigned[4] scaledValueOfSecondFixedSurface = missing() : can_be_missing,dump,no transient pressureUnits="hPa"; -concept_nofail vertical.typeOfLevel (unknown,"typeOfLevelConcept.def",conceptsLocalMarsDirAll,conceptsMasterMarsDir); +concept_nofail vertical.typeOfLevel (unknown,"typeOfLevelConcept.def",conceptsMasterDir,conceptsLocalDirAll); alias levelType=typeOfFirstFixedSurface; From 56eb01236625912b0b8698968435cfc6061c7709 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 21 Jun 2020 13:13:32 +0100 Subject: [PATCH 018/683] Message offsets: first draft --- src/eccodes.h | 10 ++++++ src/grib_api_prototypes.h | 2 ++ src/grib_io.c | 67 ++++++++++++++++++++++++++++++++++++ tests/bufr_extract_headers.c | 28 +++++++++++++++ 4 files changed, 107 insertions(+) diff --git a/src/eccodes.h b/src/eccodes.h index a310dbbfb..9592860b5 100644 --- a/src/eccodes.h +++ b/src/eccodes.h @@ -1281,6 +1281,16 @@ codes_handle* codes_grib_util_set_spec(codes_handle* h, int codes_bufr_extract_headers_malloc(codes_context* c, const char* filename, codes_bufr_header** result, int* num_messages, int strict_mode); int codes_bufr_header_get_string(codes_bufr_header* bh, const char* key, char* val, size_t* len); +/* EXPERIMENTAL FEATURE + * Build an array of offsets from input file. + * result = array of offsets with 'length' elements. + * This array should be freed by the caller. + * length = number of messages found in the input file. + * strict = If 1 means fail if any message is invalid. + * returns 0 if OK, integer value on error. + */ +int codes_extract_offsets_malloc(grib_context* c, FILE* f, ProductKind product, off_t** offsets, size_t* length, int strict_mode); + /* --------------------------------------- */ #ifdef __cplusplus } diff --git a/src/grib_api_prototypes.h b/src/grib_api_prototypes.h index 362345ec6..cfeff922a 100644 --- a/src/grib_api_prototypes.h +++ b/src/grib_api_prototypes.h @@ -1138,6 +1138,8 @@ int grib_read_any_from_memory_alloc(grib_context* ctx, unsigned char** data, siz int grib_read_any_from_memory(grib_context* ctx, unsigned char** data, size_t* data_length, void* buffer, size_t* len); int grib_count_in_file(grib_context* c, FILE* f, int* n); int grib_count_in_filename(grib_context* c, const char* filename, int* n); +int codes_extract_offsets_malloc(grib_context* c, FILE* f, ProductKind product, off_t** offsets, size_t* length, int strict_mode); + /* grib_trie.c */ grib_trie* grib_trie_new(grib_context* c); diff --git a/src/grib_io.c b/src/grib_io.c index ed8e171da..9b9203b6b 100644 --- a/src/grib_io.c +++ b/src/grib_io.c @@ -1717,3 +1717,70 @@ int grib_count_in_filename(grib_context* c, const char* filename, int* n) fclose(fp); return err; } + +int codes_extract_offsets_malloc(grib_context* c, FILE* f, ProductKind product, off_t** offsets, size_t* length, int strict_mode) +{ + int err = 0; + void* mesg = NULL; + size_t size = 0; + off_t offset = 0; + int num_messages = 0, i = 0; + + typedef void* (*decoder_proc)(FILE* f, int headers_only, size_t* size, off_t* offset, int* err); + decoder_proc decoder = NULL; + if (product == PRODUCT_GRIB) decoder = &wmo_read_grib_from_file_malloc; + else if (product == PRODUCT_BUFR) decoder = &wmo_read_bufr_from_file_malloc; + else if (product == PRODUCT_GTS) decoder = &wmo_read_gts_from_file_malloc; + else if (product == PRODUCT_ANY) decoder = &wmo_read_any_from_file_malloc; + else { + grib_context_log(c, GRIB_LOG_ERROR, "codes_extract_offsets_malloc: not supported for given product"); + return GRIB_INVALID_ARGUMENT; + } + + if (!c) c = grib_context_get_default(); + + err = grib_count_in_file(c, f, &num_messages); + if (err) { + grib_context_log(c, GRIB_LOG_ERROR, "codes_extract_offsets_malloc: Unable to count messages"); + return err; + } + *length = num_messages; + if (num_messages == 0) { + grib_context_log(c, GRIB_LOG_ERROR, "codes_extract_offsets_malloc: No messages in file"); + return GRIB_INVALID_MESSAGE; + } + *offsets = (off_t*)calloc(num_messages, sizeof(off_t)); + if (!*offsets) { + return GRIB_OUT_OF_MEMORY; + } +printf("dbg: num_messages=%d\n", num_messages); + i = 0; + while (err != GRIB_END_OF_FILE) { + if (i >= num_messages) + break; + //printf("dbg: decoding msg %d\n", i); + mesg = decoder(f, 0, &size, &offset, &err); + if (mesg != NULL && err == 0) { + (*offsets)[i] = offset; + grib_context_free(c, mesg); + } + if (mesg && err) { + if (strict_mode) { + grib_context_free(c, mesg); + return GRIB_DECODING_ERROR; + } + } + if (!mesg) { + if (err != GRIB_END_OF_FILE && err != GRIB_PREMATURE_END_OF_FILE) { + /* An error occurred */ + grib_context_log(c, GRIB_LOG_ERROR, "codes_extract_offsets_malloc: Unable to read message"); + if (strict_mode) { + return GRIB_DECODING_ERROR; + } + } + } + ++i; + } + + return err; +} diff --git a/tests/bufr_extract_headers.c b/tests/bufr_extract_headers.c index 6ba409baa..2aafd52cd 100644 --- a/tests/bufr_extract_headers.c +++ b/tests/bufr_extract_headers.c @@ -13,6 +13,33 @@ #define MAX_KEYS 100 +int main(int argc, char* argv[]) +{ + char *filename; + int err = 0; + size_t num_messages = 0, i =0; + off_t* offsets = NULL; + codes_context* c = codes_context_get_default(); + const int strict_mode = 1; + FILE* fp; + + /* Usage: prog file */ + assert(argc == 2); + + filename = argv[1]; + fp = fopen(filename, "rb"); + assert(fp); + err = codes_extract_offsets_malloc(c, fp, PRODUCT_GRIB, &offsets, &num_messages, strict_mode); + assert(!err); + + for (i = 0; i < num_messages; ++i) { + printf("Message %lu: %lu\n", i, offsets[i]); + } + free(offsets); + return 0; +} + +#if 0 int main(int argc, char* argv[]) { char *filename, *keys; @@ -60,3 +87,4 @@ int main(int argc, char* argv[]) return 0; } +#endif From 8a51acde192f19f6b42bdbcf0f87be46c1253684 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 21 Jun 2020 14:20:32 +0100 Subject: [PATCH 019/683] Message offsets: get count of product --- src/grib_io.c | 61 +++++++++++++++++++++++++++++------- tests/bufr_extract_headers.c | 5 ++- 2 files changed, 52 insertions(+), 14 deletions(-) diff --git a/src/grib_io.c b/src/grib_io.c index 9b9203b6b..5c3cb56e6 100644 --- a/src/grib_io.c +++ b/src/grib_io.c @@ -1718,6 +1718,50 @@ int grib_count_in_filename(grib_context* c, const char* filename, int* n) return err; } +typedef void* (*decoder_proc)(FILE* f, int headers_only, size_t* size, off_t* offset, int* err); + +static decoder_proc get_reader_for_product(ProductKind product) +{ + decoder_proc decoder = NULL; + if (product == PRODUCT_GRIB) decoder = &wmo_read_grib_from_file_malloc; + else if (product == PRODUCT_BUFR) decoder = &wmo_read_bufr_from_file_malloc; + else if (product == PRODUCT_GTS) decoder = &wmo_read_gts_from_file_malloc; + else if (product == PRODUCT_ANY) decoder = &wmo_read_any_from_file_malloc; + return decoder; +} + +static int count_product_in_file(grib_context* c, FILE* f, ProductKind product, int* count) +{ + int err = 0; + decoder_proc decoder = NULL; + + *count = 0; + if (!c) c = grib_context_get_default(); + decoder = get_reader_for_product(product); + + if (!decoder) { + grib_context_log(c, GRIB_LOG_ERROR, "count_product_in_file: not supported for given product"); + return GRIB_INVALID_ARGUMENT; + } + + if (c->multi_support_on) { + grib_context_log(c, GRIB_LOG_ERROR, "count_product_in_file: Multi-field GRIBs not supported"); + err = GRIB_NOT_IMPLEMENTED; + } + else { + void* mesg = NULL; + size_t size = 0; + off_t offset = 0; + while ((mesg = decoder(f, 0, &size, &offset, &err)) != NULL && err == GRIB_SUCCESS) { + grib_context_free(c, mesg); + (*count)++; + } + rewind(f); + } + + return err == GRIB_END_OF_FILE ? 0 : err; +} + int codes_extract_offsets_malloc(grib_context* c, FILE* f, ProductKind product, off_t** offsets, size_t* length, int strict_mode) { int err = 0; @@ -1725,21 +1769,16 @@ int codes_extract_offsets_malloc(grib_context* c, FILE* f, ProductKind product, size_t size = 0; off_t offset = 0; int num_messages = 0, i = 0; - - typedef void* (*decoder_proc)(FILE* f, int headers_only, size_t* size, off_t* offset, int* err); decoder_proc decoder = NULL; - if (product == PRODUCT_GRIB) decoder = &wmo_read_grib_from_file_malloc; - else if (product == PRODUCT_BUFR) decoder = &wmo_read_bufr_from_file_malloc; - else if (product == PRODUCT_GTS) decoder = &wmo_read_gts_from_file_malloc; - else if (product == PRODUCT_ANY) decoder = &wmo_read_any_from_file_malloc; - else { + + decoder = get_reader_for_product(product); + if (!decoder) { grib_context_log(c, GRIB_LOG_ERROR, "codes_extract_offsets_malloc: not supported for given product"); return GRIB_INVALID_ARGUMENT; } - if (!c) c = grib_context_get_default(); - err = grib_count_in_file(c, f, &num_messages); + err = count_product_in_file(c, f, product, &num_messages); if (err) { grib_context_log(c, GRIB_LOG_ERROR, "codes_extract_offsets_malloc: Unable to count messages"); return err; @@ -1753,12 +1792,12 @@ int codes_extract_offsets_malloc(grib_context* c, FILE* f, ProductKind product, if (!*offsets) { return GRIB_OUT_OF_MEMORY; } -printf("dbg: num_messages=%d\n", num_messages); + i = 0; while (err != GRIB_END_OF_FILE) { if (i >= num_messages) break; - //printf("dbg: decoding msg %d\n", i); + mesg = decoder(f, 0, &size, &offset, &err); if (mesg != NULL && err == 0) { (*offsets)[i] = offset; diff --git a/tests/bufr_extract_headers.c b/tests/bufr_extract_headers.c index 2aafd52cd..6cfb3271f 100644 --- a/tests/bufr_extract_headers.c +++ b/tests/bufr_extract_headers.c @@ -12,7 +12,7 @@ #include #define MAX_KEYS 100 - +#if 0 int main(int argc, char* argv[]) { char *filename; @@ -38,8 +38,8 @@ int main(int argc, char* argv[]) free(offsets); return 0; } +#endif -#if 0 int main(int argc, char* argv[]) { char *filename, *keys; @@ -87,4 +87,3 @@ int main(int argc, char* argv[]) return 0; } -#endif From 2fa536b111576239749ad4f89352809fa7470e26 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 23 Jun 2020 13:56:45 +0100 Subject: [PATCH 020/683] SUP-3196: tests fail when compiling eccodes with -DVECTOR --- src/grib_bits_any_endian.c | 2 +- src/grib_bits_any_endian_vector.c | 12 +++++++----- src/grib_bits_fast_big_endian.c | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/grib_bits_any_endian.c b/src/grib_bits_any_endian.c index 1591fd5d1..c614d0a80 100644 --- a/src/grib_bits_any_endian.c +++ b/src/grib_bits_any_endian.c @@ -420,7 +420,7 @@ int grib_encode_size_tb(unsigned char* p, size_t val, long* bitp, long nb) #if OMP_PACKING #include "grib_bits_any_endian_omp.c" #elif VECTOR -#include "grib_bits_any_endian_vector.c" +#include "grib_bits_any_endian_vector.c" /* Experimental */ #else #include "grib_bits_any_endian_simple.c" #endif diff --git a/src/grib_bits_any_endian_vector.c b/src/grib_bits_any_endian_vector.c index 3c3a13582..f8e29af79 100644 --- a/src/grib_bits_any_endian_vector.c +++ b/src/grib_bits_any_endian_vector.c @@ -10,7 +10,7 @@ /*************************************************************************** * Enrico Fucile - 19.06.2007 * - * * + * EXPERIMENTAL CODE - NOT FULLY TESTED * ***************************************************************************/ int grib_decode_long_array(const unsigned char* p, long* bitp, long bitsPerValue, @@ -19,7 +19,8 @@ int grib_decode_long_array(const unsigned char* p, long* bitp, long bitsPerValue long i = 0; unsigned long lvalue = 0; - if (bitsPerValue % 8) { + /* SUP-3196: Thanks to Daniel Tameling */ + if (bitsPerValue % 8 || (*bitp & 7)) { int j = 0; for (i = 0; i < n_vals; i++) { lvalue = 0; @@ -54,7 +55,6 @@ int grib_decode_long_array(const unsigned char* p, long* bitp, long bitsPerValue return 0; } - int grib_decode_double_array(const unsigned char* p, long* bitp, long bitsPerValue, double reference_value, double s, double d, size_t n_vals, double* val) @@ -96,12 +96,14 @@ int grib_decode_double_array(const unsigned char* p, long* bitp, long bitsPerVal return 0; } -int grib_decode_double_array_complex(const unsigned char* p, long* bitp, long nbits, double reference_value, double s, double* d, size_t size, double* val) +int grib_decode_double_array_complex(const unsigned char* p, long* bitp, long nbits, double reference_value, + double s, double* d, size_t size, double* val) { return GRIB_NOT_IMPLEMENTED; } -int grib_encode_double_array(size_t n_vals, const double* val, long bits_per_value, double reference_value, double d, double divisor, unsigned char* p, long* off) +int grib_encode_double_array(size_t n_vals, const double* val, long bits_per_value, double reference_value, + double d, double divisor, unsigned char* p, long* off) { size_t i = 0; unsigned long unsigned_val = 0; diff --git a/src/grib_bits_fast_big_endian.c b/src/grib_bits_fast_big_endian.c index dccd60189..0f1a14cc9 100644 --- a/src/grib_bits_fast_big_endian.c +++ b/src/grib_bits_fast_big_endian.c @@ -186,7 +186,7 @@ int grib_encode_unsigned_longb(unsigned char* p, unsigned long val, long* bitp, } #if VECTOR -#include "grib_bits_fast_big_endian_vector.c" +#include "grib_bits_fast_big_endian_vector.c" /* Experimental */ #elif OMP #include "grib_bits_fast_big_endian_omp.c" #else From 5ce9acba221734ef6664e8eca0fca0b576d98dc4 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 20 Jul 2020 18:11:10 +0100 Subject: [PATCH 021/683] mapping snow level and sea ice level in table 4.5 to levtype sol --- definitions/grib2/tables/25/4.5.table | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/definitions/grib2/tables/25/4.5.table b/definitions/grib2/tables/25/4.5.table index a600714b0..bf8473c40 100644 --- a/definitions/grib2/tables/25/4.5.table +++ b/definitions/grib2/tables/25/4.5.table @@ -13,9 +13,9 @@ 11 11 Cumulonimbus (CB) base (m) 12 12 Cumulonimbus (CB) top (m) 13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) -14 14 Level of free convection (LFC) -15 15 Convective condensation level (CCL) -16 16 Level of neutral buoyancy or equilibrium level (LNB) +14 14 Level of free convection (LFC) (-) +15 15 Convective condensation level (CCL) (-) +16 16 Level of neutral buoyancy or equilibrium level (LNB) (-) # 17-19 Reserved 20 20 Isothermal level (K) 21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) @@ -45,7 +45,7 @@ 111 111 Eta level (-) 112 112 Reserved 113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) +114 sol Snow level (Numeric) 115 115 Sigma height level # 116 Reserved 117 117 Mixed layer depth (m) @@ -54,7 +54,7 @@ # 120-149 Reserved 150 150 Generalized vertical height coordinate 151 sol Soil level (Numeric) -152 152 Sea ice level (Numeric) +152 sol Sea ice level (Numeric) # 153-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) From 0979bef7c40a760dcf5e3a5d6fec15993e81262a Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 22 Jul 2020 15:52:46 +0100 Subject: [PATCH 022/683] ECC-1136: BUFR: Add new key 'restrict' to ECMWF Local Section --- definitions/bufr/rdb_key.def | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/definitions/bufr/rdb_key.def b/definitions/bufr/rdb_key.def index e5eeaddd4..d6732f7b1 100644 --- a/definitions/bufr/rdb_key.def +++ b/definitions/bufr/rdb_key.def @@ -47,28 +47,33 @@ meta ls.rdbtimeTime sprintf("%.2d%.2d%.2d",rdbtimeHour,rdbtimeMinute,rdbtimeSeco meta rdbDateTime julian_date(rdbtimeYear,rdbtimeMonth,rdbtimeDay,rdbtimeHour,rdbtimeMinute,rdbtimeSecond) : no_copy; byte[3] rectime; -meta rectimeDay bits(rectime,0,6) : dump,long_type,no_copy; -meta rectimeHour bits(rectime,6,5) : dump,long_type,no_copy; +meta rectimeDay bits(rectime,0,6) : dump,long_type,no_copy; +meta rectimeHour bits(rectime,6,5) : dump,long_type,no_copy; meta rectimeMinute bits(rectime,11,6) : dump,long_type,no_copy; meta rectimeSecond bits(rectime,17,6) : dump,long_type,no_copy; +meta restrict bits(rectime,23,1) : long_type,no_copy; # ECC-1136 meta recDateTime julian_date(rdbtimeYear,rdbtimeMonth,rectimeDay,rectimeHour,rectimeMinute,rectimeSecond) : no_copy; byte[1] corr1Data; meta correction1 bits(corr1Data,0,6) : dump,long_type,no_copy; meta correction1Part bits(corr1Data,6,1) : dump,long_type,no_copy; +meta spare1 bits(corr1Data,7,1) : long_type,no_copy; byte[1] corr2Data; meta correction2 bits(corr2Data,0,6) : dump,long_type,no_copy; meta correction2Part bits(corr2Data,6,1) : dump,long_type,no_copy; +meta spare2 bits(corr2Data,7,1) : long_type,no_copy; byte[1] corr3Data; meta correction3 bits(corr3Data,0,6) : dump,long_type,no_copy; meta correction3Part bits(corr3Data,6,1) : dump,long_type,no_copy; +meta spare3 bits(corr3Data,7,1) : long_type,no_copy; byte[1] corr4Data; meta correction4 bits(corr4Data,0,6) : dump,long_type,no_copy; meta correction4Part bits(corr4Data,6,1) : dump,long_type,no_copy; +meta spare4 bits(corr4Data,7,1) : long_type,no_copy; unsigned[1] qualityControl : dump,long_type; alias qualityControl=qualityControl; From c8374590e58f31d34cf189694e2f330fe0e35fff Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 22 Jul 2020 23:03:18 +0100 Subject: [PATCH 023/683] ECC-1136: rename key to restricted --- definitions/bufr/rdb_key.def | 2 +- examples/python/high_level_api.py | 2 +- tests/bufr_keys_iter.sh | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/definitions/bufr/rdb_key.def b/definitions/bufr/rdb_key.def index d6732f7b1..f8c5a5af4 100644 --- a/definitions/bufr/rdb_key.def +++ b/definitions/bufr/rdb_key.def @@ -51,7 +51,7 @@ meta rectimeDay bits(rectime,0,6) : dump,long_type,no_copy; meta rectimeHour bits(rectime,6,5) : dump,long_type,no_copy; meta rectimeMinute bits(rectime,11,6) : dump,long_type,no_copy; meta rectimeSecond bits(rectime,17,6) : dump,long_type,no_copy; -meta restrict bits(rectime,23,1) : long_type,no_copy; # ECC-1136 +meta restricted bits(rectime,23,1) : dump,long_type,no_copy; # ECC-1136 meta recDateTime julian_date(rdbtimeYear,rdbtimeMonth,rectimeDay,rectimeHour,rectimeMinute,rectimeSecond) : no_copy; diff --git a/examples/python/high_level_api.py b/examples/python/high_level_api.py index 0f1c4a196..7ed9eeae2 100644 --- a/examples/python/high_level_api.py +++ b/examples/python/high_level_api.py @@ -360,7 +360,7 @@ class TestBufrMessage(unittest.TestCase): msg = BufrMessage(bufr_file) msg.unpack() msg_keys = list(msg.keys()) - self.assertEqual(len(msg_keys), 201) + self.assertEqual(len(msg_keys), 202) for key in KNOWN_BUFR_KEYS: assert key in msg_keys # Size of message in bytes diff --git a/tests/bufr_keys_iter.sh b/tests/bufr_keys_iter.sh index 665d253eb..923961406 100755 --- a/tests/bufr_keys_iter.sh +++ b/tests/bufr_keys_iter.sh @@ -63,6 +63,7 @@ rectimeDay rectimeHour rectimeMinute rectimeSecond +restricted correction1 correction1Part correction2 From ee7ad0bc925e45f74e290d71d2a61e2b1e8c1728 Mon Sep 17 00:00:00 2001 From: Shinji Suzuki Date: Mon, 10 Aug 2020 18:40:59 +0900 Subject: [PATCH 024/683] Fix multiple free. (Pointers to concept_value in the trie are borrowed pointers, which should not be free'd.) --- src/action_class_concept.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/action_class_concept.c b/src/action_class_concept.c index 6694410d4..8c0821cb3 100644 --- a/src/action_class_concept.c +++ b/src/action_class_concept.c @@ -209,7 +209,7 @@ static void destroy(grib_context* context, grib_action* act) grib_concept_value* v = self->concept; if (v) - grib_trie_delete(v->index); + grib_trie_delete_container(v->index); while (v) { grib_concept_value* n = v->next; grib_concept_value_delete(context, v); From 5720903cb0601eed74f508bab49c8f27fcd49233 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 17 Aug 2020 16:43:18 +0100 Subject: [PATCH 025/683] Support for ecbuild v3.4. Changes to ecbuild_add_option and REQUIRED_PACKAGES --- CMakeLists.txt | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 232d2dbb9..11e092b43 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -99,10 +99,11 @@ ecbuild_add_option( FEATURE JPG_LIBOPENJPEG CONDITION ENABLE_JPG DEFAULT ON ) +find_package( PNG ) ecbuild_add_option( FEATURE PNG DESCRIPTION "Support for PNG decoding/encoding" DEFAULT OFF - REQUIRED_PACKAGES PNG ) + CONDITION PNG_FOUND ) if( HAVE_PNG ) set( HAVE_LIBPNG 1 ) # compatibility with autotools @@ -111,21 +112,29 @@ else() set( HAVE_LIBPNG 0 ) endif() +find_package( NetCDF ) ecbuild_add_option( FEATURE NETCDF DESCRIPTION "Support for GRIB to NetCDF conversion" DEFAULT ON - REQUIRED_PACKAGES NetCDF + CONDITION NetCDF_FOUND NO_TPL ) +find_package( AEC QUIET ) ecbuild_add_option( FEATURE AEC DESCRIPTION "Support for Adaptive Entropy Coding" DEFAULT OFF - REQUIRED_PACKAGES AEC ) + CONDITION AEC_FOUND ) +#find_package( Python 2.6 NO_LIBS ) +ecbuild_find_python( VERSION 2.6 NO_LIBS ) +find_package( NumPy ) +message(STATUS "..............Python_FOUND=${PYTHON_FOUND} and NumPy_FOUND=${NUMPY_FOUND}") ecbuild_add_option( FEATURE PYTHON DESCRIPTION "Build the ecCodes Python2 interface (deprecated)" DEFAULT OFF - REQUIRED_PACKAGES "Python VERSION 2.6 NO_LIBS" NumPy ) + #REQUIRED_PACKAGES "Python VERSION 2.6 NO_LIBS" NumPy + CONDITION Python_FOUND AND NumPy_FOUND + ) # For Python2 we build our own bindings (using SWIG) in the build directory # but for Python3 one has to add the eccodes from pip3 AFTER the install if( PYTHON_VERSION_MAJOR EQUAL 3 ) From ad93825ffe5eb8e2cfd86d0a4aa77030fdec4255 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 18 Aug 2020 11:14:29 +0100 Subject: [PATCH 026/683] Support for ecbuild v3.4. Version macros and PRIVATE_LIB --- CMakeLists.txt | 19 ++++++++----------- eccodes_config.h.in | 8 ++++---- fortran/CMakeLists.txt | 2 +- src/CMakeLists.txt | 2 +- src/eccodes_version.h.in | 8 ++++---- tools/CMakeLists.txt | 2 +- 6 files changed, 19 insertions(+), 22 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 11e092b43..e6d08a7c6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -99,11 +99,10 @@ ecbuild_add_option( FEATURE JPG_LIBOPENJPEG CONDITION ENABLE_JPG DEFAULT ON ) -find_package( PNG ) ecbuild_add_option( FEATURE PNG DESCRIPTION "Support for PNG decoding/encoding" DEFAULT OFF - CONDITION PNG_FOUND ) + REQUIRED_PACKAGES PNG ) if( HAVE_PNG ) set( HAVE_LIBPNG 1 ) # compatibility with autotools @@ -112,20 +111,18 @@ else() set( HAVE_LIBPNG 0 ) endif() -find_package( NetCDF ) ecbuild_add_option( FEATURE NETCDF DESCRIPTION "Support for GRIB to NetCDF conversion" DEFAULT ON - CONDITION NetCDF_FOUND + REQUIRED_PACKAGES NetCDF NO_TPL ) -find_package( AEC QUIET ) +find_package( AEC ) ecbuild_add_option( FEATURE AEC DESCRIPTION "Support for Adaptive Entropy Coding" DEFAULT OFF CONDITION AEC_FOUND ) -#find_package( Python 2.6 NO_LIBS ) ecbuild_find_python( VERSION 2.6 NO_LIBS ) find_package( NumPy ) message(STATUS "..............Python_FOUND=${PYTHON_FOUND} and NumPy_FOUND=${NUMPY_FOUND}") @@ -218,11 +215,11 @@ if( ENABLE_JPG ) # which can affect future package discovery if not undone by the caller. # The current CMAKE_PREFIX_PATH is backed up as _CMAKE_PREFIX_PATH # - set(CMAKE_WARN_DEPRECATED OFF) # Suppress deprecation message - ecbuild_add_extra_search_paths( jasper ) + #set(CMAKE_WARN_DEPRECATED OFF) # Suppress deprecation message + #ecbuild_add_extra_search_paths( jasper ) find_package( Jasper ) - set(CMAKE_PREFIX_PATH ${_CMAKE_PREFIX_PATH}) # Restore CMAKE_PREFIX_PATH - set(CMAKE_WARN_DEPRECATED ON) # Remove suppression + #set(CMAKE_PREFIX_PATH ${_CMAKE_PREFIX_PATH}) # Restore CMAKE_PREFIX_PATH + #set(CMAKE_WARN_DEPRECATED ON) # Remove suppression find_package( OpenJPEG ) @@ -507,7 +504,7 @@ ecbuild_print_summary() ecbuild_info("") ecbuild_info(" +--------------------------+") -ecbuild_info(" | ecCodes version ${ECCODES_VERSION} |") +ecbuild_info(" | ecCodes version ${eccodes_VERSION} |") ecbuild_info(" +--------------------------+") ecbuild_info("") diff --git a/eccodes_config.h.in b/eccodes_config.h.in index 6c00bc7bb..534c9bf23 100644 --- a/eccodes_config.h.in +++ b/eccodes_config.h.in @@ -13,13 +13,13 @@ #include "eccodes_ecbuild_config.h" /* generated by ecbuild */ -#define ECCODES_VERSION_STR "@ECCODES_VERSION_STR@" +#define ECCODES_VERSION_STR "@eccodes_VERSION_STR@" /* ECCODES_VERSION is defined in eccodes_version.h from the 3 version components below */ -#define ECCODES_MAJOR_VERSION @ECCODES_MAJOR_VERSION@ -#define ECCODES_MINOR_VERSION @ECCODES_MINOR_VERSION@ -#define ECCODES_REVISION_VERSION @ECCODES_PATCH_VERSION@ +#define ECCODES_MAJOR_VERSION @eccodes_VERSION_MAJOR@ +#define ECCODES_MINOR_VERSION @eccodes_VERSION_MINOR@ +#define ECCODES_REVISION_VERSION @eccodes_VERSION_PATCH@ #define ECCODES_DEFINITION_PATH "@ECCODES_DEFINITION_PATH@" diff --git a/fortran/CMakeLists.txt b/fortran/CMakeLists.txt index cfd9e7607..6ae04a24b 100644 --- a/fortran/CMakeLists.txt +++ b/fortran/CMakeLists.txt @@ -45,7 +45,7 @@ if( HAVE_FORTRAN ) ecbuild_add_library( TARGET eccodes_f90 SOURCES grib_fortran.c grib_f90.f90 eccodes_f90.f90 grib_kinds.h GENERATED grib_f90.f90 eccodes_f90.f90 - LIBS eccodes ) + PRIVATE_LIBS eccodes ) if( DEFINED ecbuild_VERSION AND NOT ${ecbuild_VERSION} VERSION_LESS 3.1 ) # Installed module directory is not in the PUBLIC INCLUDES! target_include_directories( eccodes_f90 PUBLIC $ ) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6ffefeef8..431ed3945 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -440,7 +440,7 @@ ecbuild_add_library( TARGET eccodes # griby.c gribl.c ${grib_api_srcs} GENERATED grib_api_version.c - LIBS ${ECCODES_EXTRA_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${CMATH_LIBRARIES} + PRIVATE_LIBS ${ECCODES_EXTRA_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${CMATH_LIBRARIES} TEMPLATES ${grib_api_extra_srcs} INSTALL_HEADERS_LIST grib_api.h diff --git a/src/eccodes_version.h.in b/src/eccodes_version.h.in index 27fb37ec4..08eec18ec 100644 --- a/src/eccodes_version.h.in +++ b/src/eccodes_version.h.in @@ -11,11 +11,11 @@ #ifndef eccodes_version_H #define eccodes_version_H -#define ECCODES_VERSION_STR "@ECCODES_VERSION_STR@" +#define ECCODES_VERSION_STR "@eccodes_VERSION_STR@" -#define ECCODES_MAJOR_VERSION @ECCODES_MAJOR_VERSION@ -#define ECCODES_MINOR_VERSION @ECCODES_MINOR_VERSION@ -#define ECCODES_REVISION_VERSION @ECCODES_PATCH_VERSION@ +#define ECCODES_MAJOR_VERSION @eccodes_VERSION_MAJOR@ +#define ECCODES_MINOR_VERSION @eccodes_VERSION_MINOR@ +#define ECCODES_REVISION_VERSION @eccodes_VERSION_PATCH@ #define ECCODES_VERSION (ECCODES_MAJOR_VERSION*10000+ECCODES_MINOR_VERSION*100+ECCODES_REVISION_VERSION) #endif /* eccodes_version_H */ diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 634cbf8bf..20e87e98c 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -23,7 +23,7 @@ ecbuild_add_library( TARGET grib_tools TYPE STATIC NOINSTALL SOURCES ${grib_tools_sources} - LIBS eccodes ) + PRIVATE_LIBS eccodes ) # tools binaries list( APPEND ecc_tools_binaries From 9e7aa5e5182061ec54f0dd0a26afad6517dc1c61 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 19 Aug 2020 11:39:47 +0100 Subject: [PATCH 027/683] Support for ecbuild v3.4. Update minimum required versions of CMake and ecbuild --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e6d08a7c6..ae3b37df4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ # # -DCMAKE_MODULE_PATH=/path/to/ecbuild/cmake -cmake_minimum_required( VERSION 3.6 FATAL_ERROR ) +cmake_minimum_required( VERSION 3.11 FATAL_ERROR ) project( eccodes VERSION 2.19.0 LANGUAGES C ) @@ -24,7 +24,7 @@ set( CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH} include( ecbuild_system NO_POLICY_SCOPE ) -ecbuild_requires_macro_version( 2.7.2 ) +ecbuild_requires_macro_version( 3.4 ) ############################################################################### # local project From 455e39da4613bee7927fcc11525c81cbba83ea89 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 19 Aug 2020 16:08:07 +0100 Subject: [PATCH 028/683] Support for ecbuild v3.4. Fix AEC, maths library and Python/Numpy --- CMakeLists.txt | 5 ++--- src/CMakeLists.txt | 5 ++++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ae3b37df4..5180c9802 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -125,12 +125,11 @@ ecbuild_add_option( FEATURE AEC ecbuild_find_python( VERSION 2.6 NO_LIBS ) find_package( NumPy ) -message(STATUS "..............Python_FOUND=${PYTHON_FOUND} and NumPy_FOUND=${NUMPY_FOUND}") ecbuild_add_option( FEATURE PYTHON DESCRIPTION "Build the ecCodes Python2 interface (deprecated)" DEFAULT OFF - #REQUIRED_PACKAGES "Python VERSION 2.6 NO_LIBS" NumPy - CONDITION Python_FOUND AND NumPy_FOUND + #CONDITION Python_FOUND AND NumPy_FOUND + CONDITION PYTHON_FOUND AND NUMPY_FOUND ) # For Python2 we build our own bindings (using SWIG) in the build directory # but for Python3 one has to add the eccodes from pip3 AFTER the install diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 431ed3945..7a973ced6 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -440,7 +440,10 @@ ecbuild_add_library( TARGET eccodes # griby.c gribl.c ${grib_api_srcs} GENERATED grib_api_version.c - PRIVATE_LIBS ${ECCODES_EXTRA_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${CMATH_LIBRARIES} + #PRIVATE_LIBS ${ECCODES_EXTRA_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${CMATH_LIBRARIES} + PRIVATE_INCLUDES "${AEC_INCLUDE_DIRS}" + PRIVATE_LIBS ${ECCODES_EXTRA_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${AEC_LIBRARIES} + PUBLIC_LIBS ${CMATH_LIBRARIES} TEMPLATES ${grib_api_extra_srcs} INSTALL_HEADERS_LIST grib_api.h From a85d4de9eaf9d27dad6d225958bb766ad3ec16ed Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 19 Aug 2020 17:06:56 +0100 Subject: [PATCH 029/683] Support for ecbuild v3.4. Fix threads/PNG --- examples/C/CMakeLists.txt | 2 +- src/CMakeLists.txt | 4 ++-- tests/CMakeLists.txt | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/C/CMakeLists.txt b/examples/C/CMakeLists.txt index bd8299a06..7452a1528 100644 --- a/examples/C/CMakeLists.txt +++ b/examples/C/CMakeLists.txt @@ -156,7 +156,7 @@ if( ENABLE_EXTRA_TESTS AND HAVE_ECCODES_THREADS ) ecbuild_add_executable( TARGET c_${test} NOINSTALL SOURCES ${test}.c - LIBS eccodes ) + LIBS eccodes ${CMAKE_THREAD_LIBS_INIT} ) ecbuild_add_test( TARGET eccodes_c_${test} TYPE SCRIPT COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/${test}.sh diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 7a973ced6..b6669bdf9 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -442,8 +442,8 @@ ecbuild_add_library( TARGET eccodes GENERATED grib_api_version.c #PRIVATE_LIBS ${ECCODES_EXTRA_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${CMATH_LIBRARIES} PRIVATE_INCLUDES "${AEC_INCLUDE_DIRS}" - PRIVATE_LIBS ${ECCODES_EXTRA_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${AEC_LIBRARIES} - PUBLIC_LIBS ${CMATH_LIBRARIES} + PRIVATE_LIBS ${ECCODES_EXTRA_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${AEC_LIBRARIES} ${PNG_LIBRARIES} + PUBLIC_LIBS ${CMATH_LIBRARIES} ${THREADS_LIBRARIES} TEMPLATES ${grib_api_extra_srcs} INSTALL_HEADERS_LIST grib_api.h diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index d013f2466..fb8dcc9a6 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -279,7 +279,7 @@ if( HAVE_BUILD_TOOLS ) ecbuild_add_executable( TARGET grib_encode_pthreads NOINSTALL SOURCES grib_encode_pthreads.c - LIBS eccodes ) + LIBS eccodes ${CMAKE_THREAD_LIBS_INIT} ) ecbuild_add_test( TARGET eccodes_t_grib_encode_pthreads TYPE SCRIPT COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/grib_encode_pthreads.sh ) @@ -288,7 +288,7 @@ if( HAVE_BUILD_TOOLS ) ecbuild_add_executable( TARGET ${test} NOINSTALL SOURCES ${test}.c - LIBS eccodes ) + LIBS eccodes ${CMAKE_THREAD_LIBS_INIT} ) endforeach() ecbuild_add_test( TARGET eccodes_t_grib_threads_ecc-604 TYPE SCRIPT From ac878ef07e3cdded4e16625879a1b19a9b798448 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 21 Aug 2020 11:29:16 +0100 Subject: [PATCH 030/683] Documentation. bufr_compare does not have a -P option --- tools/bufr_compare.c | 4 ++-- tools/grib_compare.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/bufr_compare.c b/tools/bufr_compare.c index 0768d37c5..3077fee10 100644 --- a/tools/bufr_compare.c +++ b/tools/bufr_compare.c @@ -219,7 +219,7 @@ grib_option grib_options[] = { { "R:", 0, 0, 0, 1, 0 }, { "A:", 0, 0, 0, 1, 0 }, /* {"P",0,"Compare data values using the packing error as tolerance.\n",0,1,0},*/ - { "t:", "factor", "Compare data values using factor multiplied by the tolerance specified in options -P -R -A.\n", 0, 1, 0 }, + { "t:", "factor", "Compare data values using factor multiplied by the tolerance specified in options -R -A.\n", 0, 1, 0 }, { "w:", 0, 0, 0, 1, 0 }, { "f", 0, 0, 0, 1, 0 }, { "F", 0, 0, 1, 0, 0 }, @@ -239,7 +239,7 @@ static int end = -1; const char* tool_description = "Compare BUFR messages contained in two files." "\n\tIf some differences are found it fails returning an error code." - "\n\tFloating-point values are compared exactly by default, different tolerance can be defined see -P -A -R." + "\n\tFloating-point values are compared exactly by default, different tolerances can be defined (see -A -R)." "\n\tDefault behaviour: absolute error=0, bit-by-bit compare, same order in files."; const char* tool_name = "bufr_compare"; diff --git a/tools/grib_compare.c b/tools/grib_compare.c index 9af9b8c9c..8b238272b 100644 --- a/tools/grib_compare.c +++ b/tools/grib_compare.c @@ -168,7 +168,7 @@ static int theEnd = -1; const char* tool_description = "Compare GRIB messages contained in two files." "\n\tIf some differences are found it fails returning an error code." - "\n\tFloating-point values are compared exactly by default, different tolerance can be defined see -P -A -R." + "\n\tFloating-point values are compared exactly by default, different tolerances can be defined (see -P -A -R)." "\n\tDefault behaviour: absolute error=0, bit-by-bit compare, same order in files."; const char* tool_name = "grib_compare"; From 79d935920df14b7ac7237b7eec9d587ead1c731d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 21 Aug 2020 16:32:53 +0100 Subject: [PATCH 031/683] Support for ecbuild v3.4. Including ecbuild --- CMakeLists.txt | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5180c9802..7bde9ba77 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,21 +16,14 @@ # # -DCMAKE_MODULE_PATH=/path/to/ecbuild/cmake -cmake_minimum_required( VERSION 3.11 FATAL_ERROR ) +cmake_minimum_required( VERSION 3.12 FATAL_ERROR ) +find_package( ecbuild 3.4 REQUIRED ) +# Initialise project project( eccodes VERSION 2.19.0 LANGUAGES C ) set( CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild/cmake" ) -include( ecbuild_system NO_POLICY_SCOPE ) - -ecbuild_requires_macro_version( 3.4 ) - -############################################################################### -# local project - -ecbuild_declare_project() - ############################################################################### # system checks needed for eccodes_config.h and some options like MEMFS From 666e61fc7456a369e2d990842e84c060f6b714ab Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 24 Aug 2020 15:10:45 +0100 Subject: [PATCH 032/683] ECC-1143: CMake: Migration to ecbuild v3.4 --- python/setup.py.in | 2 +- src/grib_api_version.c.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/setup.py.in b/python/setup.py.in index f54d42893..f6fee2fc6 100644 --- a/python/setup.py.in +++ b/python/setup.py.in @@ -66,7 +66,7 @@ if shared_libs == 'OFF': setup(name='eccodes', - version='@ECCODES_VERSION_STR@', + version='@eccodes_VERSION_STR@', author='ECMWF', author_email='Software.Support@ecmwf.int', description="""Python interface for ecCodes""", diff --git a/src/grib_api_version.c.in b/src/grib_api_version.c.in index ed4920951..804835014 100644 --- a/src/grib_api_version.c.in +++ b/src/grib_api_version.c.in @@ -1,3 +1,3 @@ #include "grib_api_internal.h" -const char * grib_get_git_sha1() { return "@ECCODES_GIT_SHA1@"; } +const char * grib_get_git_sha1() { return "@eccodes_GIT_SHA1@"; } From 282a69b65d52ab4541b76ef1bc72c6a2d9ec2c9f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 24 Aug 2020 17:14:19 +0100 Subject: [PATCH 033/683] Support for ecbuild v3.4: Version info --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 8bd42df8b..5236ecbc9 100755 --- a/configure.ac +++ b/configure.ac @@ -20,12 +20,12 @@ ECCODES_MAIN_VERSION="${ECCODES_MAJOR_VERSION}.${ECCODES_MINOR_VERSION}.${ECCODE PACKAGE_VERSION="${ECCODES_MAIN_VERSION}" ECCODES_VERSION_STR="${ECCODES_MAIN_VERSION}" -ECCODES_PATCH_VERSION="${ECCODES_REVISION_VERSION}" +ECCODES_REVISION_VERSION="${ECCODES_REVISION_VERSION}" AC_SUBST(ECCODES_MAIN_VERSION) AC_SUBST(ECCODES_VERSION_STR) AC_SUBST(ECCODES_MAJOR_VERSION) AC_SUBST(ECCODES_MINOR_VERSION) -AC_SUBST(ECCODES_PATCH_VERSION) +AC_SUBST(ECCODES_REVISION_VERSION) AC_SUBST(ECCODES_CURRENT) AC_SUBST(ECCODES_REVISION) From af4fcc5fe91077008f458d50e28341a9fbdd030d Mon Sep 17 00:00:00 2001 From: shahramn Date: Tue, 25 Aug 2020 12:32:01 +0100 Subject: [PATCH 034/683] Update action_class_concept.c Minor change to kick off Travis again so I can merge this PR --- src/action_class_concept.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/action_class_concept.c b/src/action_class_concept.c index 8c0821cb3..19064b7f8 100644 --- a/src/action_class_concept.c +++ b/src/action_class_concept.c @@ -208,8 +208,9 @@ static void destroy(grib_context* context, grib_action* act) grib_action_concept* self = (grib_action_concept*)act; grib_concept_value* v = self->concept; - if (v) + if (v) { grib_trie_delete_container(v->index); + } while (v) { grib_concept_value* n = v->next; grib_concept_value_delete(context, v); From e0dd102a11036db25d701392ce4f7521bcbaa743 Mon Sep 17 00:00:00 2001 From: Willem Deconinck Date: Tue, 25 Aug 2020 12:40:34 +0100 Subject: [PATCH 035/683] Support for ecbuild v3.4: Fix export in bundles --- src/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b6669bdf9..cc019209d 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -450,4 +450,7 @@ ecbuild_add_library( TARGET eccodes eccodes.h eccodes_windef.h ${CMAKE_CURRENT_BINARY_DIR}/eccodes_version.h - ${PROJECT_BINARY_DIR}/eccodes_config.h ) + ${PROJECT_BINARY_DIR}/eccodes_config.h + PUBLIC_INCLUDES + $ + $ ) From 51e764b910e2389d686d6d0ff33535d958e5cc47 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 25 Aug 2020 13:23:24 +0100 Subject: [PATCH 036/683] Testing: for the PR fix_free_concept_value --- tests/grib_indexing.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/grib_indexing.c b/tests/grib_indexing.c index 1de587d52..fb565fff6 100644 --- a/tests/grib_indexing.c +++ b/tests/grib_indexing.c @@ -153,5 +153,7 @@ int main(int argc, char* argv[]) free(shortNames[i]); free(shortNames); + grib_context_delete(grib_context_get_default()); + return 0; } From 6c38bb2a7ed28da30ec9d7c08c46e382668e47c8 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 26 Aug 2020 10:53:37 +0100 Subject: [PATCH 037/683] clang address sanitizer suppressions --- tests/lsan-leap42.supp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/lsan-leap42.supp b/tests/lsan-leap42.supp index d11c22254..8089a595f 100644 --- a/tests/lsan-leap42.supp +++ b/tests/lsan-leap42.supp @@ -1,3 +1,4 @@ leak:process_elements leak:tests/bufr_ecc-517.c leak:src/action_class_rename.c +leak:tests/grib_indexing.c From 3146d9ceb2b5ad1bf0ae3d27ba2a7018396d91af Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 26 Aug 2020 20:53:33 +0100 Subject: [PATCH 038/683] clang address sanitizer --- tests/grib_indexing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/grib_indexing.c b/tests/grib_indexing.c index fb565fff6..328cb490b 100644 --- a/tests/grib_indexing.c +++ b/tests/grib_indexing.c @@ -153,7 +153,7 @@ int main(int argc, char* argv[]) free(shortNames[i]); free(shortNames); - grib_context_delete(grib_context_get_default()); + /*grib_context_delete(grib_context_get_default());*/ return 0; } From 4078f97a8ed27eb81e05d4a0715f7e355adafd8e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 27 Aug 2020 13:09:06 +0100 Subject: [PATCH 039/683] Remove Visual Studio Code settings --- .gitignore | 1 + .vscode/c_cpp_properties.json | 19 ------------------- 2 files changed, 1 insertion(+), 19 deletions(-) delete mode 100644 .vscode/c_cpp_properties.json diff --git a/.gitignore b/.gitignore index 8a3639ff7..07b6b263b 100644 --- a/.gitignore +++ b/.gitignore @@ -69,6 +69,7 @@ data/bufr/*test *.sublime-workspace .idea +.vscode build/ *.back diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json deleted file mode 100644 index 256560fbd..000000000 --- a/.vscode/c_cpp_properties.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "configurations": [ - { - "name": "Linux", - "includePath": [ - "/usr/include", - "/usr/include/linux", - "/usr/local/apps/gcc/7.3.0/lib64/gcc/x86_64-suse-linux/7.3.0/include", - "${workspaceRoot}" - ], - "defines": [], - "compilerPath": "/usr/local/apps/gcc/7.3.0/bin/gcc", - "cStandard": "c89", - "cppStandard": "c++17", - "intelliSenseMode": "clang-x64" - } - ], - "version": 4 -} From 5d99ce70f01c40f0ded5137820bd73e96821296b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 27 Aug 2020 14:39:43 +0100 Subject: [PATCH 040/683] ECC-1143: CMake: Migration to ecbuild v3.4 --- CMakeLists.txt | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7bde9ba77..cd2e9b54c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -444,18 +444,6 @@ if( HAVE_FORTRAN ) list( APPEND ECCODES_LIBRARIES eccodes_f90 ) endif() -# Bundle -if( NOT PROJECT_NAME STREQUAL CMAKE_PROJECT_NAME ) - set( ECCODES_FOUND TRUE PARENT_SCOPE ) - set( ECCODES_DEFINITIONS ${ECCODES_DEFINITIONS} PARENT_SCOPE )# includes already TPL definitions - set( ECCODES_INCLUDE_DIRS ${ECCODES_INCLUDE_DIRS} ${ECCODES_EXTRA_INCLUDE_DIRS} PARENT_SCOPE ) - set( ECCODES_LIBRARIES ${ECCODES_LIBRARIES} ${ECCODES_EXTRA_LIBRARIES} PARENT_SCOPE ) - set( ECCODES_INSTALL_EXTRA_TOOLS ${ECCODES_INSTALL_EXTRA_TOOLS} PARENT_SCOPE ) - set( ECCODES_DEFINITION_PATH ${CMAKE_BINARY_DIR}/${ECCODES_DEFINITION_SUFF} PARENT_SCOPE ) - set( ECCODES_SAMPLES_PATH ${CMAKE_BINARY_DIR}/${ECCODES_SAMPLES_SUFF} PARENT_SCOPE ) - set( ECCODES_IFS_SAMPLES_PATH ${CMAKE_BINARY_DIR}/${ECCODES_IFS_SAMPLES_SUFF} PARENT_SCOPE ) -endif() - # pkg-config ecbuild_pkgconfig( NAME eccodes From fd83c9068db04fa22c419a1767387e306c852bba Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 27 Aug 2020 15:30:20 +0100 Subject: [PATCH 041/683] ECC-1143: CMake: Migration to ecbuild v3.4 --- eccodes-import.cmake.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eccodes-import.cmake.in b/eccodes-import.cmake.in index 62c20ffb6..f7882b01b 100644 --- a/eccodes-import.cmake.in +++ b/eccodes-import.cmake.in @@ -10,3 +10,5 @@ else() set( ECCODES_SAMPLES_PATH ${eccodes_BASE_DIR}/@ECCODES_SAMPLES_SUFF@ ) set( ECCODES_IFS_SAMPLES_PATH ${eccodes_BASE_DIR}/@ECCODES_IFS_SAMPLES_SUFF@ ) endif() + +set( ECCODES_INSTALL_EXTRA_TOOLS ${ECCODES_INSTALL_EXTRA_TOOLS} PARENT_SCOPE ) From 7cbf37a91893824fff2e5e8178daf90c80a18d59 Mon Sep 17 00:00:00 2001 From: Olivier Iffrig Date: Thu, 27 Aug 2020 16:01:14 +0100 Subject: [PATCH 042/683] ECC-1143: CMake: Migration to ecbuild v3.4 --- eccodes-import.cmake.in | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/eccodes-import.cmake.in b/eccodes-import.cmake.in index f7882b01b..8bf42f779 100644 --- a/eccodes-import.cmake.in +++ b/eccodes-import.cmake.in @@ -1,14 +1,5 @@ -if( @PNAME@_IS_BUILD_DIR_EXPORT ) - set( ECCODES_DEFINITION_PATH @CMAKE_BINARY_DIR@/@ECCODES_DEFINITION_SUFF@ ) - set( ECCODES_SAMPLES_PATH @CMAKE_BINARY_DIR@/@ECCODES_SAMPLES_SUFF@ ) - set( ECCODES_IFS_SAMPLES_PATH @CMAKE_BINARY_DIR@/@ECCODES_IFS_SAMPLES_SUFF@ ) -else() - if( NOT DEFINED eccodes_BASE_DIR ) # ecbuild 2.x - get_filename_component( eccodes_BASE_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE ) - endif() - set( ECCODES_DEFINITION_PATH ${eccodes_BASE_DIR}/@ECCODES_DEFINITION_SUFF@ ) - set( ECCODES_SAMPLES_PATH ${eccodes_BASE_DIR}/@ECCODES_SAMPLES_SUFF@ ) - set( ECCODES_IFS_SAMPLES_PATH ${eccodes_BASE_DIR}/@ECCODES_IFS_SAMPLES_SUFF@ ) -endif() +set( ECCODES_DEFINITION_PATH ${eccodes_BASE_DIR}/@ECCODES_DEFINITION_SUFF@ ) +set( ECCODES_SAMPLES_PATH ${eccodes_BASE_DIR}/@ECCODES_SAMPLES_SUFF@ ) +set( ECCODES_IFS_SAMPLES_PATH ${eccodes_BASE_DIR}/@ECCODES_IFS_SAMPLES_SUFF@ ) -set( ECCODES_INSTALL_EXTRA_TOOLS ${ECCODES_INSTALL_EXTRA_TOOLS} PARENT_SCOPE ) +set( ECCODES_INSTALL_EXTRA_TOOLS @ECCODES_INSTALL_EXTRA_TOOLS@ ) From 36315f989167f5f7366a0ebcefea4aa53140e9e4 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 27 Aug 2020 17:54:29 +0100 Subject: [PATCH 043/683] ECC-1143: Put the CMAKE_MODULE_PATH line before find_package(ecbuild) --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cd2e9b54c..c4bf8c5b4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,12 +17,13 @@ # -DCMAKE_MODULE_PATH=/path/to/ecbuild/cmake cmake_minimum_required( VERSION 3.12 FATAL_ERROR ) + +set( CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild/cmake" ) find_package( ecbuild 3.4 REQUIRED ) # Initialise project project( eccodes VERSION 2.19.0 LANGUAGES C ) -set( CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild/cmake" ) ############################################################################### # system checks needed for eccodes_config.h and some options like MEMFS From 49ae510df2fd23627ee3463cb1729be3d7082513 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 29 Aug 2020 12:30:03 +0100 Subject: [PATCH 044/683] Testing: use bufr_filter instead of bufr_ls --- tests/bufr_ecc-765.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/bufr_ecc-765.sh b/tests/bufr_ecc-765.sh index fafac9945..d4879573e 100755 --- a/tests/bufr_ecc-765.sh +++ b/tests/bufr_ecc-765.sh @@ -17,6 +17,7 @@ label="bufr_ecc-765-test" tempLog=temp.${label}.log tempSupp=temp.${label}.supp +tempFilt=temp.${label}.filt if test "x$ECCODES_TEST_WITH_VALGRIND" = "x"; then echo "Environment variable ECCODES_TEST_WITH_VALGRIND not defined. Test disabled" @@ -30,10 +31,14 @@ tools_dir=$build_dir/bin files=`cat ${data_dir}/bufr/bufr_data_files.txt` VALGRIND_OPTIONS="--error-exitcode=1 --leak-check=full --log-file=$tempLog" +cat > $tempFilt </dev/null + valgrind $VALGRIND_OPTIONS ${tools_dir}/codes_bufr_filter $tempFilt ${data_dir}/bufr/$bf >/dev/null done @@ -56,4 +61,4 @@ done # Clean up -rm -f $tempLog $tempSupp +rm -f $tempLog $tempSupp $tempFilt From be695126cb1a8e51be0742bf921c0b8db936decd Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 29 Aug 2020 12:45:10 +0100 Subject: [PATCH 045/683] Testing: comments --- tests/bufr_ecc-765.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/bufr_ecc-765.sh b/tests/bufr_ecc-765.sh index d4879573e..e4bc09268 100755 --- a/tests/bufr_ecc-765.sh +++ b/tests/bufr_ecc-765.sh @@ -35,8 +35,6 @@ cat > $tempFilt </dev/null done From 5863d3eecbd7a9b8fa615bf8f16736ec35c94c77 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 29 Aug 2020 12:45:41 +0100 Subject: [PATCH 046/683] Tools: compiler warning re unused 'chunks' (netcdf v3) --- tools/grib_to_netcdf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/grib_to_netcdf.c b/tools/grib_to_netcdf.c index da0ad9019..db328327a 100644 --- a/tools/grib_to_netcdf.c +++ b/tools/grib_to_netcdf.c @@ -3076,6 +3076,7 @@ static int define_netcdf_dimensions(hypercube* h, fieldset* fs, int ncid, datase stat = nc_def_var_deflate(ncid, var_id, setup.shuffle, 1, setup.deflate); check_err("nc_def_var_deflate", stat, __LINE__); #else + (void)chunks; grib_context_log(ctx, GRIB_LOG_ERROR, "Deflate option only supported in NetCDF4"); #endif } From 28cdad35a59cf2639d1ed72725837c8eeb8ddad9 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 9 Sep 2020 16:47:53 +0100 Subject: [PATCH 047/683] ECC-1143: Fix for Fortran modules within bundles --- fortran/CMakeLists.txt | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/fortran/CMakeLists.txt b/fortran/CMakeLists.txt index 6ae04a24b..7362750d7 100644 --- a/fortran/CMakeLists.txt +++ b/fortran/CMakeLists.txt @@ -42,10 +42,15 @@ if( HAVE_FORTRAN ) # SOURCES grib_fortran.c grib_f77.c # LIBS eccodes ) - ecbuild_add_library( TARGET eccodes_f90 - SOURCES grib_fortran.c grib_f90.f90 eccodes_f90.f90 grib_kinds.h - GENERATED grib_f90.f90 eccodes_f90.f90 - PRIVATE_LIBS eccodes ) + # Note: $ will be present only while building (for the whole bundle), + # whereas $ is only present once you install the package / bundle + ecbuild_add_library( TARGET eccodes_f90 + SOURCES grib_fortran.c grib_f90.f90 eccodes_f90.f90 grib_kinds.h + GENERATED grib_f90.f90 eccodes_f90.f90 + PUBLIC_INCLUDES $ + $ + PRIVATE_LIBS eccodes ) + if( DEFINED ecbuild_VERSION AND NOT ${ecbuild_VERSION} VERSION_LESS 3.1 ) # Installed module directory is not in the PUBLIC INCLUDES! target_include_directories( eccodes_f90 PUBLIC $ ) From 219dc5c70721477ad94a1e7ac11f18f98de9c54e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 9 Sep 2020 19:25:04 +0100 Subject: [PATCH 048/683] ECC-1143: changes to NetCDF (FindNetCDF) --- tools/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index 20e87e98c..0e5087a8d 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -75,9 +75,8 @@ ecbuild_add_executable( TARGET gts_count # grib to netcdf is optional ecbuild_add_executable( TARGET grib_to_netcdf SOURCES grib_to_netcdf.c - INCLUDES ${NETCDF_INCLUDE_DIRS} CONDITION HAVE_NETCDF - LIBS grib_tools ${NETCDF_LIBRARIES} ) + LIBS grib_tools NetCDF::NetCDF_C ) ecbuild_add_executable( TARGET grib_list_keys From 951e4f1978e13f88411ef22c281a40de2b8dfb0e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 11 Sep 2020 12:36:29 +0100 Subject: [PATCH 049/683] ECC-1143: Python2 install broken for lib64 --- python/CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index 08572574a..43cd2be22 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -37,7 +37,7 @@ if( HAVE_PYTHON ) set( _gribapi_swig "gribapi/_gribapi_swig${CMAKE_SHARED_LIBRARY_SUFFIX}" ) # Build the extension module for use in build tree with RPATH pointing to the build tree add_custom_command( OUTPUT ${_gribapi_swig} - COMMAND ${PYTHON_EXECUTABLE} setup.py build_ext --inplace --rpath ${CMAKE_BINARY_DIR}/lib + COMMAND ${PYTHON_EXECUTABLE} setup.py build_ext --inplace --rpath ${CMAKE_BINARY_DIR}/${INSTALL_LIB_DIR} DEPENDS grib_interface.h grib_interface.c swig_wrap_numpy.c setup.py.in eccodes ) add_custom_target(eccodes_build_swig_wrapper ALL DEPENDS ${_gribapi_swig}) @@ -61,10 +61,11 @@ ${PYTHON_EXECUTABLE} setup.py build_ext --rpath ${CMAKE_INSTALL_PREFIX}/${INSTAL WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})") # Library installation directory override + # INSTALL_LIB_DIR = lib or lib64 if( NOT INSTALL_LIB_DIR STREQUAL lib ) execute_process( COMMAND ${PYTHON_EXECUTABLE} -c "from __future__ import print_function; import sys; print(sys.version[:3], end='')" OUTPUT_VARIABLE PYVER ) - set( __install_lib "--install-lib=${ECCODES_FULL_INSTALL_LIB_DIR}/python${PYVER}/site-packages" ) + set( __install_lib "--install-lib=${eccodes_FULL_INSTALL_LIB_DIR}/python${PYVER}/site-packages" ) endif() # Call distutils for installation From 0bb6d97f8b379dd292e1288a72e1d51244e9b06d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 16 Sep 2020 11:25:51 +0100 Subject: [PATCH 050/683] ECC-1136: BUFR: Add new key 'restricted' to ECMWF Local Section --- src/grib_hash_keys.c | 12939 ++++++++++++++++++++--------------------- tests/keys | 2522 ++++---- 2 files changed, 7606 insertions(+), 7855 deletions(-) diff --git a/src/grib_hash_keys.c b/src/grib_hash_keys.c index 482c7f532..62d536a7a 100644 --- a/src/grib_hash_keys.c +++ b/src/grib_hash_keys.c @@ -34,12 +34,12 @@ error "gperf generated tables don't work with this execution character set. Plea struct grib_keys_hash { char* name; int id;}; #include -#define TOTAL_KEYWORDS 2371 +#define TOTAL_KEYWORDS 2381 #define MIN_WORD_LENGTH 1 #define MAX_WORD_LENGTH 74 #define MIN_HASH_VALUE 5 -#define MAX_HASH_VALUE 34788 -/* maximum key range = 34784, duplicates = 0 */ +#define MAX_HASH_VALUE 33410 +/* maximum key range = 33406, duplicates = 0 */ #ifdef __GNUC__ @@ -55,32 +55,32 @@ hash_keys (str, len) { static const unsigned short asso_values[] = { - 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, - 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, - 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, - 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, - 34789, 34789, 4, 34789, 34789, 2, 34789, 34789, 29, 2144, - 1674, 1713, 1133, 2634, 1315, 3050, 216, 16, 3, 2, - 2, 34789, 34789, 34789, 34789, 1851, 3863, 2767, 4, 1692, - 56, 5537, 4813, 819, 155, 114, 789, 1453, 569, 16, - 1903, 4, 1238, 62, 64, 5039, 2064, 3256, 452, 4732, - 2, 2, 2, 34789, 34789, 2204, 34789, 4, 452, 46, - 2, 7, 271, 207, 97, 7, 2212, 2600, 69, 8, - 2, 21, 23, 1042, 9, 9, 3, 63, 206, 427, - 655, 79, 207, 74, 165, 3, 34789, 34789, 34789, 34789, - 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, - 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, - 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, - 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, - 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, - 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, - 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, - 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, - 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, - 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, - 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, - 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, - 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789, 34789 + 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, + 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, + 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, + 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, + 33411, 33411, 3, 33411, 33411, 2, 33411, 33411, 64, 2180, + 1898, 1554, 1991, 3500, 2018, 1460, 85, 51, 3, 2, + 2, 33411, 33411, 33411, 33411, 1483, 3797, 2469, 4, 1285, + 119, 5182, 4401, 820, 1036, 241, 733, 1412, 648, 103, + 2158, 49, 844, 96, 71, 3818, 2001, 2614, 590, 4618, + 8, 2, 2, 33411, 33411, 2703, 33411, 4, 305, 46, + 2, 7, 293, 160, 97, 7, 1667, 3523, 69, 8, + 2, 21, 23, 1042, 9, 9, 3, 63, 170, 102, + 757, 79, 1483, 24, 1302, 3, 33411, 33411, 33411, 33411, + 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, + 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, + 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, + 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, + 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, + 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, + 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, + 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, + 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, + 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, + 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, + 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, + 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411 }; register int hval = len; @@ -173,951 +173,953 @@ static const unsigned char lengthtable[] = 0, 0, 7, 3, 5, 5, 0, 0, 5, 0, 7, 0, 0, 4, 7, 0, 0, 4, 9, 0, 9, 0, 9, 0, 6, 0, 9, 0, 0, 0, 7, 6, 10, 5, 0, 0, 9, 4, 4, 6, 0, 0, - 5, 0, 0, 7, 10, 6, 7, 0, 6, 10, 10, 6, 8, 6, - 4, 0, 8, 9, 0, 8, 7, 10, 7, 0, 8, 4, 10, 5, - 10, 10, 0, 6, 3, 0, 0, 0, 0, 5, 7, 0, 0, 0, - 7, 10, 9, 5, 0, 0, 6, 0, 0, 0, 0, 5, 5, 0, - 3, 9, 8, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 3, - 0, 4, 0, 10, 6, 8, 5, 0, 0, 7, 0, 0, 0, 5, - 0, 10, 0, 9, 9, 10, 6, 0, 2, 7, 7, 0, 2, 0, - 10, 0, 0, 0, 0, 8, 0, 4, 8, 0, 0, 11, 0, 10, - 0, 8, 11, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1, 8, 4, 0, 5, 0, 13, 17, 0, - 0, 8, 2, 5, 0, 0, 5, 0, 8, 0, 0, 14, 12, 11, - 0, 0, 0, 13, 0, 0, 6, 0, 0, 6, 10, 10, 8, 9, - 8, 5, 5, 4, 7, 20, 0, 10, 11, 0, 0, 0, 0, 0, - 0, 2, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 11, 0, 0, 0, 0, 13, 7, 12, 0, 6, 8, - 0, 7, 0, 1, 0, 0, 0, 0, 0, 7, 0, 8, 0, 0, - 0, 13, 0, 9, 0, 9, 0, 5, 13, 0, 0, 17, 8, 0, - 0, 9, 0, 10, 0, 10, 0, 6, 0, 8, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 11, 0, 11, 0, 0, 0, 0, 0, 0, - 10, 4, 0, 0, 0, 0, 0, 0, 5, 6, 0, 10, 0, 0, - 18, 9, 0, 9, 6, 8, 0, 0, 0, 0, 8, 0, 0, 0, - 0, 0, 0, 0, 8, 9, 0, 0, 0, 17, 0, 23, 0, 0, - 24, 10, 7, 10, 13, 0, 0, 8, 0, 1, 0, 0, 0, 0, - 0, 11, 0, 0, 8, 11, 0, 0, 0, 0, 0, 0, 5, 0, - 0, 0, 0, 2, 12, 0, 0, 0, 10, 0, 0, 0, 0, 15, - 11, 17, 0, 10, 0, 0, 0, 0, 0, 0, 7, 0, 0, 7, - 0, 0, 0, 10, 4, 0, 0, 0, 0, 22, 0, 0, 0, 3, - 10, 11, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, - 0, 3, 0, 0, 4, 0, 2, 0, 0, 0, 2, 0, 7, 0, - 14, 0, 0, 0, 0, 6, 11, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 23, 0, 0, 0, - 0, 18, 0, 8, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, - 0, 9, 0, 0, 9, 0, 7, 0, 0, 0, 6, 0, 0, 0, - 0, 0, 0, 0, 8, 0, 12, 11, 0, 0, 0, 14, 13, 6, - 5, 0, 0, 6, 19, 0, 12, 0, 0, 10, 0, 2, 0, 12, - 22, 2, 0, 6, 0, 14, 0, 0, 0, 11, 0, 8, 0, 0, - 0, 12, 0, 0, 0, 0, 7, 13, 0, 0, 0, 0, 11, 12, - 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, - 12, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, - 0, 22, 0, 11, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 9, 0, 13, 0, 0, 14, 2, - 0, 0, 10, 0, 0, 0, 0, 14, 0, 0, 0, 9, 11, 8, - 14, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 15, 6, - 15, 2, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 22, 0, - 21, 9, 0, 0, 0, 0, 6, 12, 0, 0, 19, 0, 0, 0, - 13, 0, 0, 13, 0, 9, 4, 0, 0, 0, 0, 0, 7, 0, - 0, 11, 0, 0, 0, 0, 3, 0, 30, 0, 0, 14, 0, 12, - 0, 0, 0, 0, 21, 19, 0, 0, 0, 3, 0, 0, 0, 0, - 10, 0, 18, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, - 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 13, - 14, 9, 8, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, - 13, 12, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 18, - 0, 6, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, - 0, 0, 13, 0, 14, 0, 0, 9, 0, 0, 7, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 5, 0, 0, 0, - 0, 6, 0, 0, 0, 0, 19, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 7, 0, 0, 17, 0, 6, 0, 0, 25, 6, 10, - 0, 0, 27, 0, 12, 0, 0, 0, 0, 18, 0, 10, 10, 0, - 0, 13, 0, 0, 30, 0, 0, 0, 0, 0, 0, 2, 0, 0, - 10, 0, 0, 0, 0, 11, 0, 39, 40, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 13, 13, 48, 30, 9, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 3, 0, 0, 14, 0, 0, 13, 0, 0, 0, 0, 0, - 0, 0, 13, 21, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 23, 0, 0, 0, 44, 0, 0, 0, 18, 0, 0, 0, - 0, 15, 17, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, - 0, 0, 17, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 15, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, - 0, 0, 0, 27, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 11, 2, 0, 11, 16, 0, 0, 16, - 16, 12, 0, 16, 0, 0, 17, 0, 0, 0, 0, 0, 15, 0, - 0, 0, 18, 0, 24, 1, 0, 0, 10, 0, 0, 0, 0, 0, - 0, 15, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 10, 12, 0, 0, 10, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, - 0, 0, 17, 0, 0, 16, 0, 27, 0, 0, 20, 0, 8, 14, - 0, 0, 0, 0, 0, 15, 9, 0, 8, 0, 0, 0, 25, 0, - 12, 0, 13, 0, 12, 0, 0, 10, 14, 0, 0, 0, 0, 0, - 0, 0, 0, 20, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, - 9, 0, 0, 37, 13, 0, 21, 0, 0, 0, 0, 0, 0, 13, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 13, 0, 0, 0, - 0, 0, 0, 0, 0, 9, 0, 0, 11, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 13, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, - 2, 35, 0, 0, 0, 26, 0, 23, 0, 3, 0, 0, 0, 0, - 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 31, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, - 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 18, 16, 13, 11, - 0, 19, 17, 0, 17, 0, 0, 0, 0, 8, 0, 0, 0, 14, - 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, - 15, 0, 0, 0, 0, 0, 0, 0, 15, 9, 0, 12, 0, 14, - 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 22, - 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 5, 0, - 0, 0, 0, 0, 0, 2, 0, 0, 17, 0, 0, 0, 0, 0, - 0, 0, 16, 10, 31, 0, 0, 0, 0, 15, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 9, 0, 31, 0, 0, 11, 0, 0, - 0, 12, 16, 20, 9, 23, 0, 21, 0, 0, 16, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 13, 18, 0, 0, 0, 0, 0, - 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 21, 0, 0, 16, 0, 0, 26, 0, 2, 0, 0, - 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 10, 0, 0, 0, 9, 17, 0, 0, 0, 0, - 0, 0, 0, 0, 9, 0, 0, 0, 11, 0, 0, 12, 0, 0, - 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, - 0, 13, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 10, 0, 23, 0, 0, 0, 0, 0, 9, 0, 26, 0, 24, 0, - 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 14, 11, 18, 0, 0, 0, - 0, 0, 25, 24, 0, 0, 0, 14, 0, 0, 0, 32, 0, 0, - 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, - 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 18, 0, 0, 12, - 12, 0, 23, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, - 0, 13, 0, 0, 28, 0, 0, 23, 0, 9, 0, 0, 16, 0, - 34, 0, 12, 0, 0, 0, 0, 0, 0, 0, 15, 0, 15, 0, - 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 15, 0, - 10, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 26, 0, 14, - 0, 0, 0, 0, 0, 0, 0, 11, 0, 15, 0, 0, 0, 0, - 0, 0, 14, 0, 11, 0, 0, 0, 0, 0, 0, 12, 18, 0, - 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 25, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 22, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 13, 3, - 6, 11, 13, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 0, 12, 0, 30, 0, 0, 19, 0, - 0, 9, 3, 0, 0, 13, 0, 6, 0, 0, 12, 0, 8, 0, - 0, 0, 0, 0, 0, 0, 13, 23, 0, 0, 0, 0, 0, 0, - 14, 29, 0, 0, 0, 6, 10, 0, 15, 0, 0, 0, 0, 0, - 0, 0, 0, 8, 11, 0, 0, 0, 3, 0, 0, 0, 0, 12, - 3, 0, 0, 0, 0, 0, 0, 0, 30, 17, 0, 0, 0, 0, - 0, 0, 0, 24, 0, 11, 0, 0, 24, 0, 19, 14, 0, 0, - 0, 0, 19, 22, 10, 15, 25, 0, 0, 0, 0, 0, 0, 0, - 15, 0, 13, 3, 12, 0, 0, 0, 0, 0, 0, 0, 13, 0, - 18, 0, 11, 0, 0, 20, 0, 0, 26, 0, 30, 0, 16, 0, - 22, 2, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 6, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, - 17, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 20, 0, 15, 0, 3, 2, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 25, 38, 0, 3, 0, 0, 0, 0, - 0, 0, 0, 0, 17, 0, 12, 0, 0, 0, 30, 17, 27, 0, - 0, 0, 0, 0, 24, 0, 0, 0, 32, 22, 0, 0, 0, 0, - 0, 42, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 21, 0, - 0, 14, 0, 0, 0, 8, 31, 14, 0, 9, 0, 15, 0, 0, - 0, 25, 0, 0, 11, 20, 0, 0, 10, 0, 0, 17, 0, 0, - 22, 0, 0, 9, 16, 0, 0, 0, 0, 0, 25, 0, 0, 0, - 19, 16, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 39, 0, 0, 12, 0, 18, 0, 22, 0, 0, - 0, 0, 0, 39, 15, 0, 0, 0, 10, 0, 0, 0, 0, 0, - 8, 0, 0, 0, 0, 0, 0, 0, 29, 0, 2, 0, 0, 0, - 0, 10, 0, 0, 0, 19, 0, 0, 0, 14, 0, 0, 0, 0, - 0, 0, 0, 22, 0, 0, 0, 15, 0, 0, 17, 0, 0, 0, - 0, 0, 0, 8, 10, 0, 0, 0, 0, 0, 14, 0, 0, 0, - 0, 10, 0, 0, 20, 0, 0, 0, 0, 19, 0, 10, 0, 0, - 0, 3, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 10, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, - 16, 0, 0, 0, 19, 9, 14, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, - 0, 14, 15, 9, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, - 0, 16, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 15, 0, - 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, - 12, 9, 9, 0, 15, 11, 0, 0, 33, 0, 15, 0, 0, 0, - 21, 12, 0, 11, 0, 23, 0, 7, 24, 16, 0, 0, 9, 0, - 0, 0, 11, 0, 33, 0, 0, 0, 0, 14, 18, 16, 0, 0, - 0, 0, 21, 3, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 34, 0, 0, 0, 0, 0, 10, 0, 22, 15, 0, 0, 0, 0, - 15, 0, 11, 16, 18, 21, 8, 0, 0, 0, 0, 0, 27, 0, - 0, 0, 0, 17, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, - 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, - 17, 0, 0, 0, 17, 0, 0, 14, 23, 10, 0, 0, 0, 0, - 0, 0, 14, 0, 0, 0, 42, 18, 25, 0, 0, 0, 13, 0, - 0, 0, 0, 0, 24, 0, 8, 23, 0, 15, 7, 0, 0, 10, - 0, 0, 0, 0, 31, 0, 0, 10, 4, 13, 0, 0, 0, 0, - 27, 0, 0, 0, 0, 0, 0, 0, 22, 25, 18, 23, 0, 14, - 0, 0, 29, 0, 0, 14, 0, 0, 0, 26, 7, 0, 22, 0, - 0, 15, 10, 0, 0, 0, 14, 0, 0, 38, 0, 0, 13, 0, - 22, 0, 20, 8, 0, 14, 0, 0, 8, 0, 9, 0, 0, 0, - 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 12, 24, 0, 0, - 15, 0, 0, 12, 0, 15, 6, 0, 0, 0, 16, 0, 10, 0, - 10, 20, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 15, 0, - 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, - 24, 11, 13, 0, 9, 0, 10, 0, 0, 22, 0, 0, 15, 14, - 0, 18, 11, 0, 0, 0, 18, 11, 0, 17, 0, 0, 0, 0, - 23, 0, 0, 0, 0, 20, 0, 0, 0, 17, 0, 0, 10, 0, - 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, - 0, 0, 0, 0, 23, 0, 0, 6, 0, 0, 0, 0, 0, 0, - 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 16, 3, 24, 0, 0, 0, 0, 28, 18, 0, 0, 23, 0, - 27, 0, 0, 15, 0, 17, 14, 0, 9, 1, 0, 0, 0, 17, - 0, 0, 0, 0, 28, 0, 0, 23, 0, 0, 0, 0, 20, 0, - 0, 0, 18, 0, 2, 0, 18, 22, 47, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 13, 0, 30, 0, 0, 0, 0, 0, 0, 0, - 0, 19, 0, 0, 16, 0, 0, 23, 23, 27, 0, 0, 0, 0, - 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 17, 0, 0, 0, 10, 0, 0, 0, 24, 0, 17, 0, 0, - 0, 15, 9, 0, 0, 0, 0, 21, 0, 0, 23, 14, 0, 12, - 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 11, 23, 14, - 0, 0, 0, 0, 17, 0, 16, 0, 11, 0, 0, 0, 15, 0, - 0, 0, 0, 0, 0, 26, 0, 0, 33, 2, 15, 19, 0, 0, - 25, 20, 0, 0, 0, 15, 0, 13, 14, 15, 13, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 12, 0, 22, 0, - 0, 21, 0, 0, 13, 0, 0, 8, 0, 0, 0, 0, 0, 0, - 10, 0, 0, 0, 24, 0, 0, 0, 15, 0, 0, 0, 0, 0, - 16, 0, 21, 11, 0, 0, 0, 0, 26, 14, 0, 0, 0, 0, - 30, 0, 0, 0, 7, 28, 10, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 0, 18, 0, 0, 23, 29, 22, 0, 0, 0, - 0, 22, 0, 18, 0, 0, 0, 12, 0, 0, 23, 0, 13, 0, - 0, 0, 0, 0, 0, 18, 11, 21, 0, 0, 29, 0, 20, 15, - 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, - 0, 0, 0, 0, 10, 0, 0, 21, 0, 0, 15, 0, 0, 18, - 0, 0, 0, 0, 11, 0, 18, 0, 0, 0, 0, 0, 0, 0, - 0, 20, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 10, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, - 0, 18, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, - 0, 0, 21, 15, 0, 0, 0, 19, 0, 0, 3, 10, 0, 0, - 0, 0, 18, 11, 14, 0, 0, 14, 0, 0, 28, 0, 32, 3, - 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, - 0, 28, 0, 0, 0, 14, 0, 0, 0, 24, 0, 26, 0, 15, - 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 30, 0, 0, 0, - 0, 0, 11, 9, 0, 0, 24, 0, 0, 12, 0, 0, 0, 30, - 0, 0, 9, 24, 21, 0, 2, 0, 0, 0, 0, 0, 0, 24, - 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 33, 0, 18, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 16, 0, 32, - 0, 15, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 6, 0, 0, 16, 0, 11, 12, 0, 0, 14, - 0, 0, 0, 26, 0, 16, 0, 0, 14, 0, 0, 12, 0, 0, - 2, 0, 0, 0, 0, 0, 0, 0, 31, 0, 11, 0, 0, 0, - 25, 29, 24, 0, 0, 0, 0, 21, 0, 16, 0, 0, 0, 11, - 0, 11, 34, 3, 0, 29, 0, 0, 25, 0, 0, 24, 0, 0, - 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 12, 0, 28, 0, 0, 0, 0, 0, 0, 16, - 0, 0, 0, 0, 11, 0, 0, 22, 0, 7, 14, 0, 0, 0, - 6, 0, 0, 0, 20, 0, 13, 0, 0, 0, 15, 0, 12, 0, - 0, 0, 17, 35, 14, 0, 0, 19, 0, 0, 27, 0, 0, 0, - 24, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, - 0, 0, 32, 27, 9, 0, 0, 13, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, - 0, 14, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, - 0, 14, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 22, 14, - 0, 9, 0, 0, 0, 0, 0, 0, 0, 14, 33, 0, 0, 35, - 0, 41, 0, 0, 0, 0, 0, 0, 22, 17, 0, 0, 0, 15, - 0, 0, 0, 17, 0, 0, 22, 40, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 17, 12, 0, 0, - 13, 0, 0, 27, 15, 0, 0, 0, 12, 0, 20, 23, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, - 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, - 0, 12, 5, 23, 0, 13, 12, 0, 0, 0, 0, 13, 0, 0, - 0, 0, 0, 0, 14, 0, 0, 21, 0, 25, 0, 0, 0, 0, - 13, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, - 0, 16, 24, 0, 16, 0, 0, 0, 13, 21, 0, 0, 12, 23, - 0, 10, 0, 0, 0, 16, 0, 0, 2, 0, 0, 0, 0, 1, - 0, 26, 20, 0, 0, 0, 0, 27, 11, 0, 0, 23, 0, 0, - 0, 0, 0, 13, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, - 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, - 0, 29, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 30, 0, 37, 24, 0, 0, 0, 0, 34, 12, 0, 0, 35, 0, - 0, 0, 0, 13, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 20, 0, 0, 0, 0, 0, 11, 0, 30, 16, 21, 2, - 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 25, 0, - 18, 15, 14, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, - 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 16, 13, 0, 0, 9, 0, 15, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, - 15, 0, 0, 28, 28, 0, 0, 0, 0, 0, 15, 0, 11, 22, - 10, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 11, 0, 0, 0, 26, 18, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 13, 15, 0, 0, 0, 0, - 0, 0, 18, 0, 0, 24, 0, 14, 0, 14, 0, 34, 0, 0, - 6, 0, 0, 15, 0, 24, 0, 0, 26, 0, 18, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 13, 16, 0, 23, 0, 31, - 0, 0, 0, 0, 0, 0, 12, 31, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 14, 0, 0, - 15, 19, 0, 0, 11, 0, 21, 0, 0, 0, 0, 0, 14, 15, - 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, - 12, 6, 0, 3, 0, 0, 0, 0, 0, 22, 0, 0, 0, 4, - 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 7, 19, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 14, 0, 24, 15, 19, 0, 0, 0, 0, - 0, 0, 0, 15, 0, 13, 14, 15, 0, 0, 0, 24, 0, 0, - 0, 0, 0, 22, 0, 0, 0, 0, 13, 31, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, - 14, 0, 0, 19, 0, 0, 23, 0, 0, 18, 0, 0, 0, 16, - 14, 0, 0, 0, 0, 4, 0, 15, 0, 0, 0, 0, 0, 0, - 0, 0, 30, 0, 29, 33, 0, 25, 11, 0, 0, 0, 0, 21, - 25, 0, 0, 0, 0, 0, 0, 42, 15, 0, 0, 30, 0, 0, - 0, 0, 19, 0, 12, 0, 16, 0, 0, 19, 0, 3, 17, 0, - 0, 0, 0, 0, 0, 0, 0, 12, 0, 15, 13, 24, 0, 0, - 0, 0, 0, 17, 0, 0, 0, 37, 0, 16, 0, 19, 0, 0, - 0, 0, 0, 0, 0, 21, 11, 0, 0, 22, 0, 11, 0, 0, - 0, 0, 0, 0, 14, 13, 0, 0, 0, 2, 0, 0, 0, 33, - 0, 26, 23, 14, 0, 0, 0, 14, 0, 8, 0, 13, 0, 37, - 0, 18, 0, 0, 20, 0, 0, 20, 0, 0, 0, 0, 8, 0, - 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, - 0, 0, 0, 0, 0, 19, 2, 14, 0, 0, 0, 0, 18, 0, - 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 18, 27, - 18, 20, 6, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 13, 0, 0, 0, 0, 0, 19, 29, 0, 0, 0, 34, 0, - 15, 0, 0, 31, 0, 0, 0, 29, 15, 0, 11, 0, 0, 15, - 34, 15, 0, 0, 0, 17, 9, 16, 0, 13, 31, 0, 0, 0, - 0, 0, 0, 10, 33, 0, 33, 14, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 42, 0, 0, 15, 17, 0, 14, 19, 0, 0, 0, - 15, 0, 0, 0, 16, 0, 0, 0, 10, 0, 0, 0, 0, 25, - 0, 13, 0, 9, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, - 32, 31, 0, 15, 0, 0, 29, 0, 14, 0, 9, 0, 28, 0, - 0, 18, 41, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 24, 0, 0, 0, 15, 20, 0, 0, 0, 10, 0, - 0, 0, 0, 13, 0, 15, 0, 0, 19, 15, 23, 0, 18, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, - 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 9, 12, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 12, 30, 0, 0, - 0, 0, 21, 25, 13, 0, 0, 15, 0, 0, 0, 0, 0, 22, - 22, 37, 20, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 12, 0, 0, 0, 0, 0, 0, 2, 13, 0, 0, 0, - 10, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 14, 0, 8, 0, 31, 0, 0, 0, 0, 0, 0, 22, - 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 2, 0, 3, 0, - 0, 18, 0, 0, 13, 0, 0, 0, 0, 0, 0, 13, 42, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, - 30, 16, 2, 0, 0, 0, 2, 0, 0, 0, 31, 0, 3, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 22, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 18, 0, 13, 0, - 0, 0, 0, 0, 0, 37, 0, 31, 0, 0, 0, 0, 0, 12, - 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 2, 0, 0, 0, 0, 0, 30, 0, 18, 21, 0, 0, 0, - 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, - 15, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 15, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, - 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 20, 0, - 0, 0, 0, 17, 0, 0, 27, 0, 0, 16, 9, 0, 0, 3, - 0, 0, 0, 0, 0, 31, 0, 17, 0, 23, 0, 0, 14, 0, - 0, 0, 0, 0, 0, 0, 27, 0, 34, 17, 0, 0, 10, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, - 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 19, 2, 0, 0, - 15, 0, 0, 27, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, - 0, 0, 0, 0, 25, 0, 0, 0, 20, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, - 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, - 0, 0, 15, 19, 0, 0, 0, 15, 15, 0, 0, 0, 0, 14, - 14, 31, 3, 0, 0, 0, 0, 0, 19, 0, 0, 0, 4, 0, - 0, 0, 25, 6, 12, 3, 0, 0, 23, 0, 18, 0, 0, 0, - 0, 4, 0, 0, 0, 0, 21, 0, 22, 27, 9, 0, 0, 0, - 0, 0, 15, 0, 20, 32, 0, 0, 0, 9, 0, 0, 0, 15, - 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, - 0, 0, 0, 0, 0, 28, 21, 0, 0, 0, 0, 0, 0, 0, - 30, 0, 15, 0, 0, 0, 37, 0, 0, 0, 35, 0, 0, 0, - 0, 0, 0, 0, 20, 32, 28, 0, 32, 23, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, - 0, 0, 0, 11, 0, 0, 0, 15, 0, 15, 0, 0, 0, 21, - 15, 0, 0, 4, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, - 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 16, 0, - 0, 0, 16, 2, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, - 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 18, 4, - 0, 0, 0, 0, 16, 24, 15, 0, 29, 0, 0, 0, 0, 19, - 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, - 11, 0, 34, 0, 0, 0, 0, 16, 11, 0, 0, 15, 0, 14, - 0, 0, 11, 0, 0, 0, 0, 20, 0, 0, 0, 0, 28, 0, - 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 6, 0, 0, 0, - 0, 0, 0, 0, 12, 0, 0, 0, 0, 18, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 11, 8, 22, 0, 0, 0, - 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, - 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, - 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, - 27, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, - 16, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, - 0, 16, 15, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, - 0, 14, 0, 0, 0, 0, 0, 0, 32, 0, 19, 0, 0, 32, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 9, 31, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, - 0, 0, 0, 34, 12, 0, 0, 0, 24, 0, 0, 2, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, - 0, 0, 0, 0, 0, 0, 39, 0, 0, 8, 0, 0, 0, 32, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 19, 0, 15, 0, 15, 0, 0, 0, 0, 0, 0, 26, 0, - 25, 0, 0, 0, 13, 0, 0, 29, 0, 0, 0, 11, 0, 0, - 9, 0, 0, 22, 0, 0, 0, 0, 17, 0, 0, 0, 24, 0, - 0, 14, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, - 0, 0, 10, 0, 0, 15, 13, 6, 0, 0, 0, 0, 0, 0, - 22, 6, 0, 0, 0, 23, 13, 14, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, - 0, 15, 3, 0, 28, 35, 0, 0, 9, 0, 0, 0, 0, 3, - 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 26, 0, 0, 0, 12, 40, 10, 0, 19, 0, - 0, 0, 0, 34, 22, 18, 0, 0, 0, 0, 13, 7, 0, 0, - 16, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, - 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 15, 35, 0, - 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, - 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, - 0, 0, 0, 0, 11, 18, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 25, 0, 0, 25, 0, 0, 25, 0, 0, 0, - 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 11, 0, 0, 0, 21, 0, 0, 0, 0, 0, 9, 0, 0, - 0, 0, 16, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, - 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, - 0, 0, 22, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 28, 0, 0, 0, 28, 24, 0, 37, 0, 0, 0, 0, 0, - 0, 0, 0, 11, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 14, 0, 0, 0, - 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 11, 0, - 19, 18, 0, 0, 0, 8, 0, 0, 15, 12, 31, 15, 0, 8, - 14, 0, 0, 0, 0, 0, 0, 14, 0, 0, 13, 0, 22, 0, - 0, 15, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 14, 14, - 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 15, - 0, 2, 0, 34, 0, 23, 0, 0, 24, 0, 0, 0, 0, 9, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 22, 26, 0, - 0, 0, 8, 0, 0, 15, 0, 0, 0, 0, 0, 23, 32, 18, - 0, 0, 27, 0, 0, 0, 25, 38, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 14, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 14, 7, - 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 31, 0, 29, - 0, 8, 19, 0, 0, 0, 23, 0, 0, 0, 20, 17, 0, 0, - 0, 0, 8, 0, 0, 0, 11, 15, 0, 0, 0, 0, 0, 0, - 24, 0, 0, 0, 3, 0, 0, 0, 27, 0, 0, 14, 17, 0, - 0, 0, 10, 32, 26, 0, 38, 0, 0, 0, 0, 0, 0, 0, - 0, 14, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 13, 0, - 30, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 10, 0, - 0, 0, 35, 0, 11, 30, 0, 0, 0, 11, 13, 0, 0, 0, - 0, 0, 0, 36, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, - 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 17, 0, 0, - 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 18, 0, 0, - 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 18, 0, - 0, 0, 0, 0, 0, 0, 29, 0, 0, 24, 0, 0, 0, 16, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, - 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 73, 74, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 21, 0, 0, 0, - 21, 24, 0, 0, 0, 0, 0, 18, 0, 0, 16, 0, 22, 0, - 0, 22, 0, 0, 0, 0, 0, 30, 0, 0, 0, 20, 0, 0, - 0, 0, 0, 26, 0, 0, 0, 28, 13, 0, 0, 21, 0, 0, - 0, 0, 16, 0, 14, 0, 0, 0, 11, 0, 0, 0, 0, 30, - 0, 0, 19, 0, 0, 0, 0, 0, 24, 0, 0, 25, 0, 0, - 36, 0, 0, 29, 31, 0, 0, 19, 0, 0, 0, 0, 0, 0, - 0, 30, 0, 30, 0, 0, 0, 0, 26, 0, 0, 11, 0, 0, - 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, - 30, 11, 25, 0, 0, 0, 0, 0, 18, 23, 0, 0, 0, 33, - 21, 0, 9, 0, 0, 0, 19, 0, 0, 0, 0, 0, 23, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, - 31, 30, 20, 0, 10, 0, 0, 15, 0, 0, 0, 0, 0, 0, - 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 22, - 0, 0, 0, 18, 0, 0, 0, 0, 17, 0, 0, 0, 18, 0, - 0, 0, 0, 28, 0, 0, 0, 26, 27, 0, 0, 0, 0, 0, - 19, 0, 0, 0, 0, 0, 7, 0, 0, 3, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 43, 0, 28, 0, 0, 0, 0, 0, 43, 0, 0, 11, 0, - 0, 0, 34, 0, 0, 25, 0, 25, 0, 0, 15, 0, 0, 18, - 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, - 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, - 0, 0, 0, 27, 0, 35, 0, 0, 18, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 17, 0, 17, 0, 0, 0, 0, 0, 27, 0, 0, 0, - 27, 0, 0, 0, 0, 0, 0, 0, 0, 18, 16, 0, 25, 0, - 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 42, - 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 24, 0, 0, 0, 0, 36, 0, 0, 0, 38, - 0, 0, 0, 0, 0, 0, 14, 18, 0, 0, 22, 16, 0, 0, - 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 12, - 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 20, 0, - 0, 17, 0, 0, 16, 0, 0, 0, 0, 10, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, - 6, 0, 13, 0, 0, 0, 24, 0, 13, 0, 36, 0, 0, 0, - 11, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 14, 0, 0, 17, 0, 0, 22, 0, 0, 0, 30, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 22, 16, 0, 0, 0, 0, 72, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 26, 0, 0, 14, - 0, 0, 0, 28, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 23, - 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 11, - 0, 0, 0, 0, 0, 0, 0, 24, 14, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 11, 0, 0, 12, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, - 0, 0, 0, 0, 10, 0, 0, 22, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 30, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, - 2, 0, 0, 16, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 0, 0, 0, 15, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, - 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 26, 0, 0, 28, 0, 0, 0, 23, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 25, 38, 0, - 0, 0, 29, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 11, 23, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 25, 23, 0, 0, 0, 0, 0, 0, 0, 0, 18, - 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 22, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, - 14, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 16, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 16, 0, 0, 0, 0, 0, 0, 16, 0, 0, 17, 29, 0, 0, - 0, 22, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 16, - 0, 0, 0, 0, 0, 15, 0, 17, 0, 0, 10, 0, 0, 0, - 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 44, 0, 0, 0, 0, 0, 19, 5, 0, 0, 7, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 14, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 14, - 0, 0, 24, 0, 10, 0, 0, 0, 0, 27, 0, 34, 27, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 23, - 0, 6, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 22, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, - 19, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 23, 24, 0, 0, 0, 0, - 0, 0, 17, 0, 0, 32, 9, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 0, 23, 0, 0, 25, 0, 0, 0, 0, 0, - 0, 0, 43, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 29, - 22, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 22, 0, 0, 0, 0, 28, 0, 0, 0, 0, 28, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, - 0, 33, 22, 0, 0, 0, 0, 0, 28, 0, 0, 0, 26, 0, - 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 25, 0, 0, 0, 0, 29, 21, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 24, 0, 0, - 30, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 29, - 0, 0, 0, 0, 17, 0, 31, 0, 0, 0, 0, 0, 0, 0, - 33, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 7, 0, 0, 0, 0, 27, 0, 0, 0, 0, - 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 23, 15, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, - 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 15, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 28, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, - 0, 25, 0, 0, 0, 0, 32, 0, 0, 16, 0, 0, 24, 22, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 22, 24, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, - 0, 0, 6, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 7, 0, 0, 35, 0, 26, 0, 8, 0, 23, 0, - 0, 0, 0, 6, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, - 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, - 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 7, 0, 11, - 0, 0, 29, 0, 0, 0, 0, 0, 0, 2, 10, 0, 0, 27, - 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 27, 29, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, - 15, 0, 0, 0, 25, 23, 0, 0, 0, 0, 0, 0, 0, 0, - 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 13, - 0, 0, 0, 16, 0, 0, 0, 22, 14, 0, 0, 22, 0, 0, - 0, 25, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 14, - 0, 0, 13, 0, 0, 0, 0, 0, 9, 0, 0, 0, 11, 0, - 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 25, 0, - 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 10, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 16, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, - 29, 0, 16, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, - 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 28, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, - 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 21, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 32, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 29, 28, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 25, 33, 0, - 33, 0, 0, 0, 0, 0, 0, 0, 39, 0, 0, 0, 0, 0, - 0, 35, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 29, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, - 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 25, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 29, 0, 0, 0, - 0, 14, 0, 0, 0, 0, 0, 25, 0, 8, 0, 23, 0, 0, - 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 16, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 25, 0, 19, 18, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 18, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 22, 0, 0, 22, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, - 0, 0, 0, 29, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, - 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 27, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 24, - 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 32, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, - 0, 0, 26, 15, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 15, 30, 0, - 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 24, 37, 13, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 5, 0, 0, 25, 33, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 14, 14, 0, 0, - 0, 0, 0, 25, 33, 0, 0, 24, 0, 0, 14, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 5, 0, 0, 7, 10, 6, 7, 0, 6, 10, 10, 6, 0, 0, + 4, 0, 10, 9, 8, 0, 7, 10, 7, 8, 8, 4, 8, 5, + 10, 10, 0, 6, 3, 0, 0, 0, 0, 5, 0, 0, 0, 0, + 7, 0, 9, 5, 0, 6, 6, 0, 0, 0, 3, 5, 5, 0, + 3, 0, 0, 0, 10, 0, 0, 0, 2, 2, 2, 0, 0, 3, + 0, 4, 7, 0, 0, 8, 5, 10, 0, 7, 0, 0, 0, 5, + 0, 10, 4, 9, 9, 10, 6, 9, 8, 7, 7, 0, 5, 0, + 10, 0, 0, 0, 0, 0, 0, 4, 8, 10, 0, 0, 8, 0, + 0, 8, 0, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 8, 0, 0, 0, 0, 8, 0, 5, 5, 7, 6, 17, 8, + 0, 0, 0, 11, 13, 9, 5, 0, 8, 0, 0, 0, 0, 11, + 0, 11, 0, 0, 14, 0, 6, 9, 0, 0, 0, 10, 0, 2, + 0, 0, 14, 10, 6, 8, 10, 8, 0, 0, 0, 0, 12, 0, + 9, 11, 5, 5, 13, 0, 0, 0, 0, 13, 0, 0, 10, 0, + 0, 12, 0, 0, 0, 9, 0, 9, 0, 7, 0, 0, 0, 0, + 0, 7, 0, 0, 0, 10, 8, 0, 0, 10, 9, 4, 0, 1, + 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, + 13, 6, 0, 7, 0, 10, 0, 0, 0, 0, 6, 0, 0, 0, + 9, 0, 8, 0, 0, 7, 0, 11, 0, 0, 11, 0, 10, 10, + 13, 2, 8, 7, 0, 0, 0, 0, 7, 8, 0, 7, 0, 0, + 0, 6, 0, 0, 10, 8, 6, 0, 0, 4, 0, 11, 0, 12, + 20, 0, 5, 0, 5, 8, 0, 0, 0, 0, 0, 9, 0, 0, + 0, 10, 0, 6, 0, 0, 18, 0, 0, 0, 0, 13, 8, 3, + 0, 0, 4, 0, 0, 0, 6, 0, 11, 0, 0, 0, 11, 0, + 0, 2, 10, 23, 0, 0, 24, 0, 0, 0, 0, 12, 8, 19, + 0, 0, 0, 0, 0, 0, 8, 11, 0, 0, 10, 0, 0, 7, + 0, 0, 0, 0, 0, 11, 0, 0, 11, 0, 0, 0, 0, 13, + 0, 0, 0, 0, 11, 15, 2, 1, 6, 0, 0, 0, 17, 0, + 17, 0, 10, 0, 0, 0, 0, 3, 0, 13, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 7, 15, 0, 0, 0, 0, 0, 10, + 9, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 18, + 12, 8, 0, 11, 10, 0, 0, 0, 0, 0, 11, 0, 14, 0, + 0, 0, 0, 5, 0, 0, 0, 0, 11, 0, 0, 0, 12, 6, + 0, 0, 23, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, + 7, 0, 19, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 13, + 0, 0, 0, 0, 22, 14, 0, 0, 0, 0, 0, 0, 0, 12, + 18, 0, 12, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 14, 13, 0, + 0, 0, 0, 0, 2, 6, 12, 0, 2, 0, 0, 0, 0, 8, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 24, 0, 0, 30, 24, 0, 0, 0, 0, 0, 0, 28, 70, - 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, - 0, 0, 35, 13, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 29, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, - 0, 31, 17, 0, 0, 0, 0, 0, 0, 22, 20, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, - 0, 23, 0, 0, 0, 0, 0, 0, 15, 0, 0, 13, 0, 17, - 14, 0, 0, 0, 0, 0, 22, 0, 0, 0, 14, 0, 35, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 16, 0, 21, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 19, 0, - 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 27, 0, 0, 27, 0, 0, 15, 0, 0, 0, 0, 15, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 25, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 17, 0, 17, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 23, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, - 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 32, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, - 0, 0, 0, 6, 15, 0, 0, 0, 0, 0, 17, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 25, 0, 0, 15, 0, 0, 0, 0, 31, 0, 0, 0, - 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 12, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 10, + 0, 0, 0, 19, 4, 22, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 6, 10, 18, 0, 0, 14, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, + 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 13, + 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 10, 0, 0, 0, + 5, 18, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, + 0, 6, 9, 0, 13, 0, 0, 15, 0, 0, 0, 11, 0, 17, + 16, 0, 3, 0, 0, 0, 9, 0, 2, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 9, 0, 0, 25, + 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 5, 0, 0, 0, + 12, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3, 6, 0, 0, 9, 8, 0, 0, 0, 0, 0, 25, 0, + 0, 0, 7, 0, 3, 0, 13, 0, 9, 0, 0, 7, 21, 0, + 0, 0, 0, 21, 0, 0, 22, 0, 0, 0, 14, 2, 0, 0, + 10, 0, 18, 0, 0, 14, 0, 13, 0, 0, 0, 0, 0, 10, + 0, 0, 0, 6, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, + 0, 0, 3, 0, 0, 14, 0, 0, 0, 0, 0, 13, 0, 0, + 0, 0, 0, 0, 0, 3, 0, 0, 17, 0, 13, 16, 0, 0, + 16, 0, 10, 39, 40, 0, 7, 0, 14, 14, 0, 0, 0, 10, + 0, 14, 17, 0, 0, 0, 0, 8, 6, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 27, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, + 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, 0, + 0, 0, 0, 18, 20, 0, 0, 0, 0, 0, 13, 0, 0, 9, + 15, 0, 14, 0, 0, 0, 12, 24, 0, 0, 0, 9, 0, 0, + 0, 0, 18, 13, 0, 0, 13, 0, 0, 9, 0, 0, 48, 13, + 0, 0, 9, 0, 0, 10, 0, 0, 15, 0, 0, 0, 0, 0, + 0, 0, 0, 30, 8, 0, 0, 0, 21, 12, 0, 0, 0, 12, + 0, 0, 10, 27, 0, 0, 0, 0, 0, 17, 0, 0, 20, 15, + 17, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 0, 0, 0, 0, 27, 0, 0, 13, 10, 0, 12, + 0, 0, 0, 0, 0, 0, 0, 15, 12, 0, 0, 0, 0, 37, + 0, 0, 17, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 11, 0, 13, + 0, 0, 0, 0, 0, 0, 9, 0, 8, 0, 11, 0, 11, 11, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 2, 0, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 10, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 11, 0, 23, 0, 0, 0, 0, 24, 0, 0, 0, 0, + 0, 11, 0, 0, 0, 0, 9, 0, 0, 1, 0, 0, 0, 26, + 0, 11, 13, 0, 0, 0, 0, 0, 12, 19, 0, 0, 0, 0, + 0, 0, 0, 30, 12, 17, 0, 16, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, 0, 23, 17, 0, 35, 12, + 24, 0, 26, 5, 0, 16, 0, 0, 3, 16, 0, 0, 14, 0, + 0, 0, 0, 23, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 15, 26, 0, 25, 0, 30, 0, 11, 0, 0, 0, 0, 0, 31, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 15, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, + 14, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 9, 0, 0, + 0, 0, 0, 0, 0, 12, 0, 0, 0, 10, 0, 0, 25, 10, + 0, 15, 32, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 19, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 11, 0, + 0, 0, 0, 0, 13, 16, 0, 0, 0, 0, 13, 0, 0, 0, + 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 16, + 0, 0, 16, 0, 11, 0, 0, 0, 19, 0, 0, 0, 0, 0, + 0, 0, 5, 0, 0, 23, 2, 16, 2, 0, 0, 0, 0, 0, + 11, 0, 0, 3, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 5, 0, 4, 0, 0, 31, 12, 0, 0, 0, 0, + 0, 0, 0, 13, 13, 0, 0, 12, 0, 9, 0, 0, 11, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 13, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, + 0, 0, 0, 0, 16, 0, 0, 0, 30, 0, 2, 13, 0, 0, + 15, 0, 0, 6, 0, 0, 0, 0, 0, 9, 0, 0, 0, 22, + 0, 0, 17, 17, 0, 8, 0, 0, 0, 0, 0, 0, 9, 0, + 14, 0, 0, 11, 18, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 12, 15, 0, 13, 0, 0, 0, 0, 0, 0, + 0, 9, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 28, 0, 0, 21, 9, 0, 0, 34, 0, + 0, 0, 0, 0, 0, 0, 0, 11, 23, 0, 0, 0, 0, 0, + 0, 6, 0, 0, 18, 0, 0, 0, 13, 0, 0, 0, 18, 0, + 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 15, 0, 4, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, + 0, 0, 0, 12, 18, 0, 0, 0, 0, 0, 0, 0, 12, 0, + 0, 0, 0, 3, 19, 0, 0, 0, 15, 0, 0, 0, 0, 0, + 0, 0, 0, 15, 14, 11, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 18, 0, 12, 20, 0, 0, 0, 0, 0, 0, 0, + 0, 19, 15, 13, 15, 0, 0, 13, 0, 14, 13, 0, 0, 15, + 35, 22, 0, 10, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 15, 0, 0, + 0, 15, 26, 12, 0, 0, 0, 15, 0, 0, 0, 0, 42, 0, + 0, 0, 0, 0, 39, 0, 13, 0, 0, 0, 13, 0, 0, 13, + 0, 12, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 10, 0, 0, 14, 0, + 0, 0, 0, 0, 27, 0, 0, 19, 0, 12, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 19, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 25, 11, 17, 0, 0, 0, 32, 15, + 15, 0, 27, 0, 0, 19, 24, 0, 20, 0, 0, 23, 0, 9, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, + 0, 28, 0, 0, 16, 0, 14, 0, 29, 9, 0, 0, 0, 13, + 0, 0, 0, 0, 0, 14, 20, 24, 0, 0, 0, 11, 0, 15, + 0, 0, 0, 28, 19, 0, 0, 0, 12, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, + 11, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 1, 0, 13, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, + 0, 0, 0, 26, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 9, 13, 21, 17, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 30, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 24, 0, 21, 0, 0, 0, 0, 21, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 11, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 0, 0, 2, 0, 0, 10, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, + 19, 10, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 3, + 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 18, 0, + 33, 0, 3, 0, 9, 0, 0, 0, 16, 0, 0, 18, 0, 0, + 0, 8, 0, 0, 6, 0, 0, 0, 0, 2, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 34, 2, 38, + 18, 0, 16, 0, 0, 0, 0, 0, 0, 0, 15, 9, 21, 0, + 3, 0, 20, 10, 10, 0, 15, 30, 0, 0, 0, 0, 13, 22, + 0, 0, 0, 3, 0, 0, 0, 0, 0, 15, 22, 0, 0, 0, + 26, 0, 0, 0, 10, 0, 0, 0, 0, 31, 0, 0, 0, 0, + 2, 0, 20, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, + 15, 0, 0, 0, 17, 10, 0, 0, 24, 0, 0, 17, 0, 0, + 0, 0, 0, 0, 0, 0, 20, 0, 13, 0, 22, 15, 0, 0, + 13, 32, 0, 0, 0, 23, 0, 39, 0, 0, 12, 0, 0, 27, + 0, 12, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 23, 11, + 23, 0, 0, 22, 0, 0, 3, 20, 0, 22, 0, 0, 0, 0, + 0, 0, 0, 17, 9, 20, 22, 0, 22, 3, 0, 0, 20, 19, + 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 2, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, + 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 30, + 0, 17, 0, 17, 25, 0, 0, 18, 33, 15, 14, 0, 0, 0, + 0, 0, 8, 0, 22, 0, 0, 16, 0, 0, 0, 15, 13, 0, + 0, 0, 18, 0, 0, 0, 0, 0, 0, 22, 18, 0, 0, 0, + 0, 0, 0, 0, 13, 14, 0, 8, 10, 0, 31, 0, 0, 0, + 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 9, + 7, 0, 0, 0, 0, 19, 0, 0, 17, 0, 0, 0, 23, 0, + 0, 0, 0, 0, 0, 14, 47, 11, 10, 0, 0, 29, 16, 24, + 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, + 13, 0, 0, 0, 9, 17, 0, 0, 30, 0, 24, 12, 0, 25, + 0, 0, 27, 0, 0, 17, 0, 0, 0, 25, 6, 0, 31, 15, + 16, 14, 0, 0, 0, 0, 0, 0, 0, 23, 0, 18, 36, 0, + 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, + 0, 16, 0, 0, 0, 0, 0, 24, 0, 23, 0, 0, 0, 0, + 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 15, 0, + 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 25, 0, 21, 0, 0, 26, 0, 0, 0, 0, 3, 0, + 10, 0, 0, 0, 0, 23, 22, 0, 11, 21, 0, 0, 14, 21, + 0, 20, 0, 23, 0, 0, 0, 0, 0, 13, 0, 0, 16, 0, + 0, 0, 23, 0, 12, 0, 0, 0, 0, 23, 18, 27, 0, 0, + 24, 0, 0, 14, 29, 0, 0, 0, 0, 21, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 14, 22, 0, 0, 0, 0, 0, 25, 0, + 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 16, 0, 0, + 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 0, 26, 12, 22, 0, 0, 16, 0, 0, 8, 0, 1, 18, 0, + 0, 16, 13, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, + 0, 0, 23, 0, 0, 2, 0, 0, 0, 0, 0, 0, 14, 0, + 24, 0, 31, 0, 0, 38, 17, 0, 0, 25, 0, 0, 0, 0, + 0, 18, 0, 0, 20, 0, 0, 11, 25, 10, 10, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 9, 0, 0, 15, 0, 0, 18, 27, + 0, 0, 0, 21, 0, 9, 0, 0, 0, 0, 0, 18, 0, 21, + 0, 0, 0, 18, 0, 0, 0, 0, 18, 13, 13, 0, 0, 24, + 9, 0, 0, 16, 0, 23, 0, 0, 0, 0, 34, 15, 10, 0, + 29, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 22, 28, 0, + 0, 0, 0, 0, 0, 0, 0, 27, 35, 0, 0, 0, 0, 0, + 0, 3, 0, 0, 0, 0, 10, 0, 0, 9, 25, 21, 0, 0, + 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, + 0, 15, 0, 0, 0, 0, 0, 0, 0, 31, 9, 9, 0, 0, + 15, 0, 0, 0, 0, 0, 24, 0, 20, 20, 10, 0, 0, 8, + 0, 28, 26, 0, 0, 0, 12, 0, 0, 0, 0, 11, 9, 0, + 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 7, 10, 0, 0, + 0, 0, 21, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 26, 0, 12, 8, 0, 0, 0, 0, 0, 0, 10, 0, + 0, 22, 29, 0, 0, 26, 17, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 10, 13, 0, 0, 0, 0, 10, 0, + 0, 18, 0, 27, 2, 0, 11, 0, 15, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 32, 0, 0, 0, + 28, 24, 0, 0, 0, 22, 29, 3, 0, 0, 0, 0, 0, 12, + 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 31, 0, 6, 0, 0, 0, 18, 0, 0, 0, 0, 27, 13, 0, + 24, 0, 0, 15, 0, 0, 0, 0, 0, 0, 24, 11, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 10, 12, 16, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, + 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 24, 0, 14, + 0, 0, 18, 0, 0, 0, 0, 17, 0, 12, 25, 0, 0, 0, + 21, 0, 0, 0, 0, 0, 29, 0, 0, 17, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, - 0, 6, 0, 27, 0, 2, 0, 21, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 14, 0, 23, 21, + 0, 0, 0, 30, 11, 0, 0, 0, 16, 0, 7, 25, 21, 0, + 18, 0, 0, 15, 16, 0, 21, 11, 0, 0, 0, 12, 0, 12, + 0, 0, 0, 0, 0, 9, 0, 0, 2, 15, 25, 0, 0, 0, + 0, 9, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 30, 0, 16, 19, 15, 0, 35, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 17, 0, 0, 0, + 15, 13, 0, 0, 0, 0, 15, 0, 0, 16, 0, 0, 18, 0, + 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 25, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, + 20, 0, 0, 0, 0, 0, 16, 0, 13, 29, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 41, 37, 0, 4, 0, 20, + 0, 17, 0, 0, 0, 0, 0, 15, 0, 14, 0, 27, 0, 0, + 0, 0, 0, 0, 14, 0, 15, 15, 0, 10, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 15, + 0, 0, 0, 11, 0, 0, 22, 0, 31, 0, 0, 16, 0, 0, + 0, 17, 15, 0, 0, 0, 0, 0, 7, 13, 0, 34, 0, 0, + 0, 0, 0, 0, 14, 0, 12, 0, 10, 0, 0, 0, 26, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 14, 34, 0, 0, 0, 0, + 0, 0, 0, 19, 0, 0, 0, 14, 0, 0, 0, 0, 13, 0, + 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 18, 0, 14, 0, 0, 0, 0, 4, 15, 0, 0, 0, 0, 40, + 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, + 0, 0, 0, 0, 0, 12, 0, 11, 0, 7, 35, 0, 0, 0, + 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 12, 0, + 0, 14, 5, 0, 19, 13, 0, 8, 0, 0, 0, 0, 20, 0, + 0, 0, 0, 0, 0, 22, 0, 21, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 8, 0, 0, 0, 0, 14, 13, 0, 0, 0, 0, + 0, 0, 0, 0, 28, 0, 0, 0, 26, 0, 0, 0, 0, 0, + 0, 0, 0, 31, 0, 0, 0, 16, 0, 24, 0, 6, 10, 0, + 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 30, 0, 0, 0, 0, 0, 0, 4, 18, 14, 0, 0, + 0, 0, 11, 0, 11, 0, 0, 0, 18, 28, 15, 0, 22, 0, + 0, 24, 0, 0, 0, 0, 0, 0, 23, 0, 16, 15, 10, 0, + 0, 0, 14, 30, 19, 26, 37, 0, 19, 0, 11, 24, 14, 0, + 13, 0, 0, 0, 0, 31, 2, 15, 18, 0, 0, 0, 14, 26, + 0, 0, 12, 0, 15, 15, 0, 0, 0, 0, 0, 14, 17, 0, + 34, 0, 26, 31, 0, 0, 0, 22, 33, 3, 0, 0, 0, 0, + 0, 18, 0, 0, 14, 20, 0, 0, 0, 0, 0, 0, 0, 30, + 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 24, 0, 19, 0, 42, 0, 0, 13, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 14, 0, 14, 0, 31, 0, 13, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 9, 21, 0, 0, 0, 0, 13, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 9, + 12, 0, 0, 0, 0, 0, 0, 0, 23, 0, 33, 12, 33, 0, + 0, 0, 0, 14, 0, 0, 0, 17, 25, 42, 0, 0, 0, 0, + 25, 0, 0, 29, 20, 0, 0, 27, 0, 0, 24, 10, 0, 0, + 6, 0, 0, 0, 0, 13, 23, 0, 9, 0, 12, 0, 0, 0, + 0, 0, 15, 29, 14, 0, 15, 0, 2, 0, 11, 0, 29, 0, + 0, 0, 0, 0, 25, 0, 23, 0, 0, 0, 28, 0, 0, 11, + 19, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 50, + 0, 0, 14, 0, 0, 0, 0, 9, 0, 0, 0, 0, 13, 0, + 0, 0, 30, 0, 0, 0, 0, 23, 6, 12, 0, 21, 0, 0, + 22, 0, 0, 0, 0, 0, 12, 11, 6, 0, 0, 0, 32, 27, + 0, 18, 0, 32, 0, 0, 17, 0, 31, 15, 0, 0, 0, 0, + 41, 0, 0, 0, 33, 0, 14, 0, 0, 30, 0, 8, 0, 0, + 0, 0, 0, 31, 0, 0, 0, 0, 0, 14, 0, 0, 0, 15, + 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, + 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 12, 0, 29, 0, 0, 0, 8, 0, 0, 0, 0, + 12, 0, 0, 0, 0, 0, 20, 0, 0, 13, 0, 0, 0, 18, + 13, 0, 0, 0, 0, 13, 0, 0, 24, 0, 0, 27, 13, 0, + 23, 16, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, + 0, 0, 25, 0, 15, 0, 27, 0, 0, 0, 30, 13, 0, 16, + 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, + 12, 16, 0, 0, 0, 0, 15, 0, 37, 0, 0, 0, 0, 0, + 0, 0, 0, 12, 0, 0, 0, 3, 0, 20, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 26, 0, 11, 0, + 0, 0, 0, 0, 0, 19, 26, 0, 0, 0, 19, 0, 0, 0, + 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 19, 13, 0, 0, 15, 14, 0, 0, + 0, 0, 0, 0, 0, 0, 23, 0, 17, 27, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 1, 0, 22, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 16, 15, 0, 11, + 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 34, 11, + 22, 0, 0, 0, 20, 0, 0, 20, 0, 0, 8, 0, 0, 0, + 0, 0, 0, 28, 0, 0, 0, 0, 0, 16, 28, 0, 0, 0, + 0, 0, 0, 0, 0, 13, 2, 0, 0, 0, 0, 0, 13, 3, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, + 0, 18, 0, 0, 0, 0, 0, 32, 6, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 18, 0, + 21, 0, 0, 21, 0, 0, 0, 20, 2, 19, 0, 0, 0, 2, + 30, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 8, 0, 0, + 0, 0, 0, 16, 13, 0, 19, 0, 0, 15, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, + 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, + 0, 32, 31, 0, 6, 0, 0, 20, 12, 0, 0, 0, 23, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 6, 0, 3, 0, 0, 14, 0, 0, 0, 0, 0, 12, 4, + 17, 0, 28, 0, 0, 0, 0, 12, 0, 0, 0, 15, 0, 0, + 0, 9, 0, 0, 0, 15, 0, 0, 0, 0, 0, 9, 22, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 16, + 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 18, 13, + 0, 0, 0, 0, 0, 0, 0, 0, 24, 29, 0, 13, 0, 0, + 0, 33, 11, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 6, 27, 2, 0, 0, 11, 0, 0, 19, 0, 0, 0, + 2, 0, 0, 0, 2, 0, 14, 22, 15, 0, 0, 0, 0, 16, + 0, 0, 0, 0, 14, 0, 0, 0, 31, 28, 0, 0, 0, 0, + 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, + 0, 0, 0, 9, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, + 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, + 15, 0, 0, 0, 0, 17, 0, 0, 29, 0, 12, 0, 8, 3, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, + 0, 0, 19, 0, 31, 0, 0, 29, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 14, 0, 0, 28, 0, 0, 0, 11, 15, 0, + 0, 21, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 0, 25, 19, 13, 0, 0, 3, + 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 17, 15, 0, 14, 13, 15, 16, + 15, 0, 19, 0, 0, 15, 18, 9, 0, 0, 14, 0, 0, 0, + 21, 0, 27, 21, 0, 0, 35, 0, 0, 22, 0, 15, 0, 0, + 0, 12, 15, 0, 0, 0, 0, 22, 0, 12, 22, 0, 0, 20, + 0, 0, 0, 0, 0, 0, 0, 0, 14, 11, 0, 14, 15, 0, + 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 11, 27, 0, 0, 0, 16, 15, 0, 0, 0, + 35, 11, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 18, 0, 28, 0, 2, 35, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, + 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 8, + 35, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, + 0, 22, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 20, 0, + 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 19, 0, 14, 18, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, + 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, + 0, 0, 0, 0, 7, 32, 0, 0, 0, 16, 0, 0, 0, 0, + 11, 3, 0, 0, 0, 0, 0, 0, 34, 0, 0, 20, 0, 21, + 0, 0, 9, 0, 3, 15, 0, 30, 0, 0, 22, 0, 37, 31, + 4, 0, 0, 35, 0, 6, 10, 3, 0, 0, 0, 0, 0, 26, + 0, 0, 0, 4, 0, 0, 0, 0, 22, 8, 14, 18, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 18, 0, 0, + 0, 0, 0, 0, 0, 0, 13, 0, 0, 12, 0, 0, 15, 0, + 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, + 0, 24, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 26, + 0, 0, 0, 0, 0, 0, 0, 14, 0, 39, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 14, 19, 0, 0, + 0, 30, 0, 0, 8, 0, 0, 0, 18, 0, 0, 26, 0, 0, + 0, 0, 0, 34, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 24, 0, 0, 37, + 0, 0, 0, 22, 25, 0, 0, 0, 31, 0, 0, 0, 20, 0, + 35, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, + 12, 0, 14, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 8, 0, 0, 0, 6, 0, 0, 7, 0, + 0, 0, 0, 0, 0, 30, 0, 0, 31, 0, 12, 0, 28, 0, + 0, 16, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, + 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, + 15, 0, 3, 0, 16, 0, 0, 31, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 0, 0, 0, 16, 0, 0, 0, 0, 17, 19, 0, 0, 0, 0, + 25, 0, 0, 32, 0, 18, 0, 0, 0, 9, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 11, 0, 0, 12, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 32, 23, 19, 23, + 0, 0, 0, 0, 0, 0, 33, 30, 0, 15, 0, 0, 0, 0, + 0, 29, 31, 0, 11, 0, 0, 15, 0, 0, 0, 0, 14, 0, + 0, 0, 0, 0, 0, 0, 34, 0, 11, 18, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, + 18, 0, 2, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 14, + 0, 0, 19, 0, 0, 0, 0, 0, 15, 20, 0, 16, 0, 18, + 33, 0, 0, 0, 0, 0, 15, 0, 0, 0, 15, 0, 26, 24, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 26, 0, 0, 0, 18, 0, 0, 0, 14, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 29, 24, 0, 24, 21, 0, + 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 23, 0, 14, 19, 0, 0, 0, + 19, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 23, 0, 0, 0, 0, 0, 0, 10, 0, 13, 0, 0, 0, + 0, 9, 0, 0, 0, 35, 0, 0, 0, 31, 0, 15, 0, 0, + 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 0, 32, 0, 0, + 0, 0, 19, 12, 0, 0, 16, 0, 0, 0, 0, 20, 0, 0, + 0, 0, 0, 0, 11, 14, 0, 18, 0, 0, 0, 0, 0, 0, + 0, 33, 0, 14, 0, 0, 0, 0, 7, 0, 10, 0, 0, 0, + 14, 19, 0, 0, 0, 13, 18, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, + 0, 10, 0, 24, 0, 0, 0, 0, 35, 16, 0, 22, 0, 0, + 0, 0, 33, 0, 28, 12, 0, 26, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 22, + 0, 12, 0, 20, 0, 0, 27, 0, 0, 25, 29, 0, 0, 0, + 0, 0, 0, 0, 12, 31, 0, 0, 0, 14, 0, 0, 0, 0, + 11, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 30, 21, 9, 0, 13, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 14, + 0, 0, 16, 0, 0, 0, 20, 0, 5, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 6, 0, 2, 19, 0, 38, 0, 0, 0, 0, + 0, 0, 25, 23, 0, 11, 0, 13, 0, 0, 14, 0, 0, 0, + 17, 0, 10, 0, 0, 22, 0, 24, 0, 30, 0, 23, 22, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 13, 28, 0, 0, 0, 0, + 6, 0, 15, 0, 21, 0, 21, 0, 10, 0, 0, 0, 0, 0, + 0, 32, 0, 0, 0, 0, 0, 0, 0, 25, 12, 0, 73, 74, + 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, + 0, 0, 0, 25, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 12, 0, 0, 0, 0, 15, 43, 0, 0, 0, 11, 0, 0, + 0, 21, 0, 0, 0, 0, 11, 0, 0, 27, 0, 15, 0, 0, + 0, 0, 14, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, + 0, 0, 36, 0, 0, 38, 0, 0, 43, 0, 0, 0, 0, 0, + 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 14, 0, 0, 0, 0, 0, 0, 14, 11, 0, 0, + 0, 0, 0, 25, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 30, 0, 0, 0, 0, 11, 0, 17, 0, 0, 19, 0, + 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, + 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 23, 13, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 30, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 14, + 26, 0, 0, 11, 0, 8, 0, 0, 0, 18, 0, 35, 0, 29, + 0, 20, 0, 0, 28, 0, 0, 27, 23, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 11, 0, 21, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 24, 2, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, + 0, 0, 23, 0, 0, 0, 25, 0, 0, 30, 0, 13, 6, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, + 0, 0, 0, 8, 0, 15, 0, 0, 22, 0, 0, 0, 0, 18, + 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 26, 24, 10, 0, + 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, + 19, 0, 28, 0, 0, 0, 0, 0, 10, 0, 0, 32, 0, 0, + 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 14, 12, 0, 0, 0, 0, 0, 0, 0, 0, 31, + 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, + 0, 0, 0, 0, 23, 18, 0, 0, 0, 0, 2, 0, 0, 0, + 34, 0, 0, 0, 0, 0, 25, 0, 0, 0, 14, 0, 0, 0, + 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 13, 0, + 30, 0, 0, 0, 0, 22, 19, 6, 0, 0, 0, 14, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 27, 23, 0, 27, 0, 0, + 0, 0, 27, 23, 0, 0, 0, 0, 0, 9, 0, 0, 0, 18, + 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 25, 0, 16, 0, 0, 0, 0, + 24, 0, 0, 0, 34, 0, 0, 0, 18, 0, 0, 36, 0, 0, + 0, 0, 0, 0, 10, 0, 0, 17, 0, 0, 72, 0, 0, 0, + 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 28, 18, 0, + 0, 0, 0, 24, 0, 0, 0, 15, 0, 0, 0, 0, 0, 19, + 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, + 29, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, + 17, 14, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 28, + 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 9, + 0, 16, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, + 16, 44, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, + 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, + 0, 0, 0, 0, 0, 0, 6, 0, 10, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, + 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, + 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 20, + 3, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 15, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 27, 0, 0, 0, + 34, 18, 0, 0, 36, 0, 19, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 10, 0, 0, 42, 0, 0, 0, 0, 0, 34, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 11, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 14, + 0, 0, 18, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, + 0, 0, 0, 0, 23, 27, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 17, 0, + 0, 24, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 4, 24, 0, 0, 0, 0, 0, 0, 26, 0, 28, 0, 0, + 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, + 36, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 24, 0, 0, 0, 30, 0, 0, 7, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 7, 0, 0, 0, + 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, + 11, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 9, + 0, 0, 0, 31, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 13, 6, 0, 23, 24, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, + 0, 22, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 27, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 14, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, + 0, 28, 29, 14, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 28, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, + 0, 0, 0, 0, 18, 24, 0, 36, 11, 0, 0, 0, 0, 22, + 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 30, + 0, 0, 15, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 21, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 17, 0, 0, 0, + 0, 0, 0, 0, 3, 15, 0, 0, 35, 0, 0, 0, 0, 11, + 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, + 24, 27, 32, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 23, 16, 0, 0, 0, 0, 0, 0, 0, + 19, 0, 0, 0, 0, 0, 0, 0, 0, 22, 28, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, - 13, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, + 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 16, 0, 39, 0, 0, 0, 0, 0, 0, 0, 24, + 0, 0, 0, 0, 22, 0, 28, 0, 0, 0, 27, 0, 0, 0, + 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 13, 0, 0, + 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 24, 0, 13, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 17, 0, 0, 0, + 22, 0, 0, 0, 20, 0, 0, 0, 10, 0, 0, 0, 16, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 0, 14, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 33, 0, 0, 0, 0, 35, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 28, 0, 25, 0, 0, 0, 0, 0, 0, + 0, 0, 10, 0, 29, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, + 18, 7, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 25, + 0, 5, 0, 0, 23, 0, 16, 0, 0, 29, 0, 0, 0, 0, + 0, 0, 0, 0, 24, 0, 0, 14, 0, 15, 22, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 7, 0, 0, + 0, 0, 0, 0, 0, 0, 21, 0, 0, 19, 0, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 25, 19, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 35, 0, 0, 22, 0, 0, 0, 0, 11, 0, + 43, 0, 0, 0, 23, 0, 0, 23, 0, 0, 0, 0, 0, 0, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 28, 0, 0, + 0, 0, 0, 22, 0, 0, 18, 0, 15, 0, 0, 0, 0, 0, + 0, 28, 17, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, + 0, 0, 22, 25, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 2, 0, + 24, 0, 6, 0, 0, 18, 23, 0, 0, 0, 0, 0, 0, 19, + 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 13, 0, + 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 30, 0, 15, 0, 20, 0, 6, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 16, 0, 16, 0, 0, 0, 0, + 0, 0, 0, 22, 0, 0, 0, 25, 0, 0, 22, 29, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 29, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, + 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 6, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 35, 0, 29, + 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 33, 0, + 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 24, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 32, 0, + 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, + 27, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 24, 0, 28, 9, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 37, 0, 0, + 0, 0, 0, 0, 0, 22, 25, 0, 0, 25, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 6, + 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, + 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, + 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 16, 0, 23, 0, 0, 0, 0, 0, 13, + 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, + 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 13, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, + 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 37, 0, 22, 0, 0, 0, 19, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 25, 17, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2, 0, 27, 6, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 3, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 13, 0, 0, 0, 17, 30, 0, 0, 0, 0, 14, 0, 0, + 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 43, 17, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, + 0, 0, 0, 0, 31, 0, 24, 36, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 40, 15, 0, 0, 0, 25, + 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 22, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, + 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 21, 0, 16, 0, 0, 0, 0, 10, 0, 0, 15, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 17, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, + 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, + 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, + 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 70, 0, 15, 0, 0, 28, 0, + 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 16, 0, 13, + 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 29, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 31, 25, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, + 22, 17, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 36, 0, 0, 20, 24, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 24, 0, 0, 22, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 14, 0, 0, 0, 0, 0, 9, 31, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 10, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 29, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, + 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 17, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, - 0, 28, 0, 0, 0, 13, 0, 20, 0, 0, 0, 8, 0, 0, - 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 27, 0, 15, - 0, 23, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 13, 0, 28, 0, 0, 33, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 15, 0, 17, + 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, + 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, + 19, 0, 16, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 27, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 14, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 15, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, - 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, - 0, 23, 0, 0, 0, 0, 0, 29, 14, 0, 0, 17, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 24, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 17, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 6, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 15, 0, 17, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 14, 0, + 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 11, 0, 0, 0, 14, 0, 0, 0, 14, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, - 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 35, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 7, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 16, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 28, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, + 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, + 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, - 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 24, 36, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, - 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 21, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 14, 0, 0, 25, 0, 0, 0, 0, 0, 0, - 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 7, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, + 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, - 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 28, 0, 0, 0, 0, 15, 38, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 3, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 28, 0, 17, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 34, 0, 0, 0, 0, 15, 0, 0, 0, 0, 36, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 37, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 15, - 0, 0, 0, 15, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, + 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 24, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 35, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 37, 0, 27, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 14, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 17, 0, 17, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 28, 31, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 32, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 18, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 14, 0, 38, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 7, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 16, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, + 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 23, 0, 0, 0, 0, 27, 0, 0, 0, 0, + 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 28, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 28, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, + 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 7, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 14, 0, 0, 0, 0, 6, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 15, 0, + 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, + 0, 0, 0, 28, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 28, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 28, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 16, 0, 36, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 28, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 6, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 30, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 34, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 6, 15, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 36, + 0, 0, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 27, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, + 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, + 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 15, 0, 0, 0, - 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 17, 0, + 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 14, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1128,206 +1130,194 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 17, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 28, 0, 0, 0, - 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 15, + 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, - 0, 17, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, - 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 34, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 26, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 15, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 14, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, + 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 15, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, + 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 20, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 26, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1347,17 +1337,175 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 17, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1366,64 +1514,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1434,6 +1525,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1443,6 +1535,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1451,12 +1544,13 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1467,10 +1561,9 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1501,7 +1594,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1530,12 +1622,11 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1565,7 +1656,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1574,7 +1664,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1593,7 +1682,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1601,7 +1689,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1750,6 +1837,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1773,18 +1861,22 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1834,6 +1926,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1850,6 +1943,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1858,7 +1952,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1885,7 +1978,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1908,6 +2000,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1919,15 +2012,14 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1937,7 +2029,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1976,6 +2067,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2061,14 +2153,12 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2091,7 +2181,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2133,7 +2222,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2201,7 +2289,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2215,6 +2302,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2320,7 +2408,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2465,4606 +2552,4273 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31 + 0, 0, 0, 0, 0, 0, 31 }; static const struct grib_keys_hash wordlist[] = { {""}, {""}, {""}, {""}, {""}, - {"n",1305}, + {"n",1307}, {""}, - {"t",2110}, - {"nd",1315}, - {"td",2120}, - {"nt",1333}, - {"nnn",1319}, - {"na",1308}, + {"t",2116}, + {"nd",1317}, + {"td",2126}, + {"nt",1335}, + {"nnn",1321}, + {"na",1310}, {"ed",712}, {""}, - {"sd",1906}, + {"sd",1909}, {""}, - {"m",1186}, + {"m",1188}, {""}, {""}, {"Di",31}, {"data",617}, - {"min",1268}, + {"min",1270}, {""}, {""}, {""}, {""}, {"date",635}, {""}, {"ident",946}, {""}, {""}, - {"name",1309}, + {"name",1311}, {""}, {""}, {""}, - {"time",2146}, + {"time",2152}, {""}, {""}, {""}, - {"one",1501}, + {"one",1503}, {"Dstart",39}, {""}, - {"mars",1189}, - {"names",1314}, + {"mars",1191}, + {"names",1316}, {""}, {"dataDate",620}, - {"metadata",1264}, + {"metadata",1266}, {""}, - {"sort",2031}, + {"sort",2034}, {""}, {"eps",760}, {"domain",695}, {""}, - {"stream",2083}, + {"stream",2089}, {""}, {""}, {""}, {"edition",713}, {"cat",379}, {"enorm",755}, - {"param",1610}, + {"param",1612}, {""}, {""}, - {"spare",2048}, + {"spare",2051}, {""}, - {"marsDir",1193}, + {"marsDir",1195}, {""}, {""}, - {"step",2072}, - {"present",1660}, + {"step",2078}, + {"present",1662}, {""}, {""}, - {"oper",1513}, + {"oper",1515}, {"iteration",1017}, {""}, {"dimension",678}, {""}, - {"masterDir",1222}, + {"masterDir",1224}, {""}, - {"points",1650}, + {"points",1652}, {""}, {"assertion",312}, {""}, {""}, {""}, - {"opttime",1520}, + {"opttime",1522}, {"centre",397}, - {"marsDomain",1194}, + {"marsDomain",1196}, {"const",566}, {""}, {""}, - {"parameter",1616}, - {"true",2179}, + {"parameter",1618}, + {"true",2185}, {"core",592}, - {"second",1907}, + {"second",1910}, {""}, {""}, - {"units",2239}, + {"units",2245}, {""}, {""}, - {"rectime",1746}, - {"parameters",1624}, - {"minute",1270}, - {"section",1929}, + {"rectime",1748}, + {"parameters",1626}, + {"minute",1272}, + {"section",1932}, {""}, - {"status",2071}, - {"partitions",1629}, - {"timerepres",2159}, - {"radius",1721}, - {"stepZero",2082}, - {"isSens",1002}, - {"year",2363}, + {"status",2077}, + {"partitions",1631}, + {"timerepres",2165}, + {"radius",1723}, + {""}, {""}, + {"year",2373}, {""}, - {"dataTime",632}, + {"restricted",1789}, {"direction",681}, + {"stepZero",2088}, {""}, - {"dateTime",644}, - {"minimum",1269}, - {"statistics",2070}, - {"radials",1720}, - {""}, + {"minimum",1271}, + {"statistics",2076}, + {"radials",1722}, + {"dataTime",632}, {"leadtime",1078}, - {"type",2190}, - {"dataStream",630}, + {"type",2196}, + {"dateTime",644}, {"hdate",919}, {"instrument",973}, - {"notDecoded",1332}, + {"notDecoded",1334}, {""}, - {"system",2108}, - {"ucs",2232}, + {"system",2114}, + {"ucs",2238}, {""}, {""}, {""}, {""}, - {"three",2133}, - {"endStep",747}, - {""}, {""}, {""}, - {"process",1690}, - {"marsStream",1214}, - {"precision",1656}, + {"three",2139}, + {""}, {""}, {""}, {""}, + {"process",1692}, + {""}, + {"precision",1658}, {"count",606}, - {""}, {""}, - {"method",1265}, - {""}, {""}, {""}, {""}, - {"class",421}, - {"phase",1643}, {""}, - {"uco",2231}, - {"startStep",2064}, - {"marsStep",1213}, - {""}, {""}, {""}, {""}, {""}, + {"isSens",1002}, + {"method",1267}, + {""}, {""}, {""}, + {"two",2194}, + {"class",421}, + {"phase",1645}, + {""}, + {"uco",2237}, + {""}, {""}, {""}, + {"dataStream",630}, + {""}, {""}, {""}, {"dy",702}, - {"pl",1647}, + {"pl",1649}, {"Dy",43}, {""}, {""}, {"day",646}, {""}, {"char",418}, - {""}, - {"operStream",1514}, - {"yFirst",2361}, - {"latitude",1044}, - {"total",2161}, + {"endStep",747}, {""}, {""}, - {"product",1692}, + {"latitude",1044}, + {"total",2167}, + {"marsStream",1216}, + {""}, + {"product",1694}, {""}, {""}, {""}, - {"model",1286}, + {"model",1288}, {""}, {"correction",597}, - {""}, + {"grid",897}, {"latitudes",1074}, {"consensus",564}, {"conceptDir",558}, - {"normal",1322}, - {""}, - {"TS",232}, + {"normal",1324}, + {"startStep",2070}, + {"marsStep",1215}, {"hundred",938}, - {"million",1267}, + {"million",1269}, {""}, - {"TT",234}, + {"range",1728}, {""}, {"discipline",687}, - {""}, {""}, {""}, {""}, - {"dataType",633}, - {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {"hour",930}, {"landtype",1036}, + {"operStream",1516}, {""}, {""}, - {"oceanStream",1464}, - {""}, - {"ieeeFloats",951}, - {""}, - {"thousand",2132}, - {"endTimeStep",749}, - {""}, {""}, {""}, {""}, {""}, - {"marsType",1217}, + {"dataType",633}, + {""}, {""}, + {"thousand",2138}, + {""}, {""}, + {"origin",1527}, + {"TT",234}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"marsType",1219}, + {""}, {""}, {""}, {""}, + {"reserved",1772}, {""}, - {"K",96}, - {"stepType",2078}, - {"grid",897}, - {""}, - {"month",1293}, - {""}, + {"varno",2294}, + {"month",1295}, + {"version",2299}, + {"yFirst",2371}, + {"standardDeviation",2063}, + {"stepType",2084}, + {""}, {""}, {""}, + {"oceanStream",1466}, {"elementsTable",719}, - {"standardDeviation",2057}, - {""}, {""}, - {"dataKeys",622}, - {"KS",97}, - {"range",1726}, - {""}, {""}, + {"localDate",1116}, {"dummy",697}, {""}, - {"localDir",1123}, - {""}, {""}, - {"partitionTable",1628}, - {"marsQuantile",1210}, - {"temperature",2122}, - {""}, {""}, {""}, - {"userDateStart",2262}, + {"localDir",1124}, + {""}, {""}, {""}, {""}, + {"temperature",2128}, + {""}, + {"endTimeStep",749}, {""}, {""}, + {"partitionTable",1630}, + {""}, {"dummyc",700}, - {""}, {""}, - {"origin",1525}, - {"reportType",1766}, - {"rectimeDay",1747}, - {"codeType",546}, - {"matchSort",1229}, - {"reserved",1770}, - {"zeros",2371}, - {"varno",2284}, - {"zero",2370}, - {"version",2289}, - {"indicatorOfParameter",961}, - {""}, - {"dataOrigin",624}, - {"recDateTime",1743}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"JS",95}, - {""}, - {"local",1115}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"unitsFactor",2245}, - {""}, {""}, {""}, {""}, - {"dataSelection",629}, - {"channel",416}, - {"isOctahedral",998}, - {""}, - {"eleven",721}, - {"hideThis",924}, - {""}, - {"country",610}, - {""}, - {"J",94}, - {""}, {""}, {""}, {""}, {""}, - {"refdate",1752}, - {""}, - {"meanSize",1256}, + {"windSpeed",2343}, {""}, {""}, {""}, - {"userTimeStart",2266}, + {"rectimeDay",1749}, {""}, - {"threshold",2134}, - {""}, - {"signature",2014}, + {"TS",232}, + {""}, {""}, + {"endDescriptors",726}, + {"reportType",1768}, + {"eleven",721}, + {"codeType",546}, + {"ieeeFloats",951}, + {"section8",1971}, + {""}, {""}, {""}, {""}, + {"optionalData",1521}, {""}, + {"signature",2017}, + {"recDateTime",1745}, {"eight",718}, - {"dimensionType",680}, + {"local",1115}, + {"windDirection",2332}, + {""}, {""}, {""}, {""}, + {"userDateStart",2272}, {""}, {""}, - {"centreDescription",398}, - {"isFillup",996}, + {"categories",380}, {""}, {""}, + {"marsQuantile",1212}, + {""}, {""}, {""}, + {"matchSort",1231}, + {""}, {"elevation",720}, {""}, - {"categories",380}, + {"channel",416}, + {""}, {""}, {""}, {""}, {""}, + {"country",610}, + {""}, {""}, {""}, + {"dataOrigin",624}, + {"hideThis",924}, + {""}, {""}, + {"diagnostic",674}, + {"localTime",1143}, + {"band",324}, {""}, + {"g",874}, + {""}, {""}, {""}, + {"threshold",2140}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"centreDescription",398}, + {""}, {""}, + {"dataSelection",629}, + {"values",2282}, + {""}, + {"refdate",1754}, + {""}, + {"waveDomain",2322}, + {""}, {""}, {""}, {""}, + {"levels",1098}, + {""}, {""}, {""}, + {"longitude",1149}, + {""}, + {"levelist",1097}, + {""}, {""}, + {"rdbtime",1734}, + {""}, + {"typicalDate",2226}, + {""}, {""}, + {"unitsFactor",2251}, + {""}, + {"longitudes",1179}, {"identifier",950}, + {"userTimeStart",2276}, + {"pv",1708}, + {"dataKeys",622}, + {"padding",1541}, + {""}, {""}, {""}, {""}, + {"levtype",1099}, + {"gridType",906}, {""}, + {"average",316}, + {""}, {""}, {""}, + {"bitmap",362}, + {""}, {""}, + {"countTotal",609}, + {"localDay",1118}, {"TScalc",233}, + {""}, {""}, + {"file",839}, {""}, - {"efiOrder",717}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"isSatellite",1000}, {""}, - {"typicalDate",2220}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"diagnostic",674}, - {"file",839}, - {""}, {""}, {""}, {""}, {""}, {""}, + {"isOctahedral",998}, + {"indicatorOfParameter",961}, + {""}, {"false",832}, - {"values",2272}, {""}, - {"countTotal",609}, + {"level",1094}, + {"isFillup",996}, + {""}, {""}, {""}, {""}, {""}, + {"reference",1755}, + {""}, {""}, {""}, + {"typicalDay",2228}, + {""}, + {"number",1336}, {""}, {""}, - {"statisticalProcess",2068}, - {"datumSize",645}, - {""}, - {"reference",1753}, - {"levels",1098}, - {"localDay",1117}, + {"statisticalProcess",2074}, {""}, {""}, {""}, {""}, - {"levelist",1097}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"localDateTime",1117}, {"fcperiod",836}, - {"longitude",1147}, + {"lev",1092}, + {""}, {""}, + {"nlev",1320}, + {""}, {""}, {""}, + {"mybits",1306}, + {""}, + {"aerosolType",295}, + {""}, {""}, {""}, + {"typicalTime",2233}, + {""}, {""}, + {"KS",97}, + {"tubeDomain",2192}, + {"unitsDecimalScaleFactor",2249}, + {""}, {""}, + {"statisticalProcessesList",2075}, + {""}, {""}, {""}, {""}, + {"spectralType",2061}, + {"platform",1650}, + {"parameterDiscipline",1621}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"efiOrder",717}, + {"productType",1699}, + {""}, {""}, + {"codeFigure",545}, + {""}, {""}, + {"obstype",1463}, + {""}, {""}, {""}, {""}, {""}, + {"rdbtimeDate",1735}, + {""}, {""}, + {"oneThousand",1514}, + {""}, {""}, {""}, {""}, + {"startTimeStep",2072}, + {""}, {""}, {""}, {""}, + {"runwayState",1848}, + {"satelliteSeries",1853}, + {"gg",886}, + {"K",96}, + {"fgDate",837}, {""}, {""}, {""}, {"laplacianOperator",1037}, {""}, - {"unitsDecimalScaleFactor",2243}, - {""}, {""}, - {"statisticalProcessesList",2069}, - {"typicalDay",2222}, - {"levtype",1099}, - {"longitudes",1177}, - {"localDateTime",1116}, - {""}, {""}, - {"gridType",906}, + {"userDateTimeStart",2274}, {""}, - {"g",874}, - {""}, {""}, {""}, {""}, {""}, - {"aerosolType",295}, - {""}, {""}, - {"platform",1648}, - {"typicalTime",2227}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"level",1094}, - {""}, {""}, {""}, {""}, - {"pv",1706}, - {"spectralType",2055}, - {""}, {""}, {""}, - {"codeFigure",545}, - {""}, {""}, {""}, {""}, - {"satelliteSeries",1850}, - {"productType",1697}, - {"userDateTimeStart",2264}, - {""}, - {"coefsFirst",550}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"average",316}, - {""}, {""}, - {"padding",1539}, - {""}, {""}, {""}, - {"unitOfTime",2236}, - {"band",324}, - {""}, {""}, {""}, {""}, - {"laplacianOperatorIsSet",1038}, - {""}, {""}, {""}, - {"two",2188}, {"ccsdsFlags",386}, - {"headersOnly",920}, - {""}, {""}, {""}, {""}, {""}, - {"parameterDiscipline",1619}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"lev",1092}, - {""}, {""}, - {"nlev",1318}, - {""}, - {"Xo",268}, - {""}, {""}, {""}, - {"Xp",269}, - {""}, - {"rdbtime",1732}, - {""}, - {"longitudesList",1178}, {""}, {""}, {""}, {""}, - {"fgDate",837}, - {"oneThousand",1512}, + {"avg",320}, + {""}, + {"marsStartStep",1214}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"bitmap",362}, {""}, - {"localDecimalScaleFactor",1118}, - {""}, {""}, {""}, {""}, - {"coordinatesPresent",591}, - {""}, - {"section8",1968}, - {""}, {""}, {""}, {""}, - {"overlayTemplate",1533}, - {""}, {""}, {""}, {""}, {""}, {""}, + {"rdbType",1732}, + {"overlayTemplate",1535}, + {""}, {""}, {""}, {""}, {""}, + {"rdbtimeDay",1736}, {"levelType",1096}, - {""}, {""}, - {"windSpeed",2333}, - {""}, - {"fcmonth",835}, {""}, {""}, {""}, - {"number",1334}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"referenceDate",1756}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"coordinatesPresent",591}, + {"angleDivisor",301}, {"dataFlag",621}, {""}, - {"periodOfTime",1639}, - {"localSecond",1137}, - {""}, {""}, {""}, - {"forecastperiod",866}, - {"forecastSteps",864}, - {"mybits",1304}, + {"rdbDateTime",1730}, + {"coefsFirst",550}, + {""}, {""}, {""}, {""}, {""}, + {"rdbtimeTime",1741}, + {""}, + {"longitudesList",1180}, + {""}, {""}, {""}, {""}, {"flags",854}, - {""}, {""}, + {""}, {""}, {""}, {""}, + {"localSecond",1138}, + {""}, {""}, {""}, + {"validityTime",2281}, {"fgTime",838}, - {"setDecimalPrecision",2004}, - {""}, - {"forecastTime",865}, {""}, {""}, - {"tubeDomain",2186}, - {""}, - {"Ni",194}, - {""}, - {"validityTime",2271}, - {"longitudeOfCentrePoint",1151}, - {"Nr",196}, - {""}, - {"offset",1466}, - {""}, - {"endDescriptors",726}, - {""}, {""}, {""}, - {"clusterSize",539}, - {""}, - {"anoffset",307}, - {""}, {""}, {""}, - {"optionalData",1519}, + {"localDecimalScaleFactor",1119}, {""}, {""}, {""}, {""}, - {"obstype",1461}, - {"windDirection",2322}, - {""}, {""}, {""}, {""}, - {"rdbtimeDate",1733}, - {"angleDivisor",301}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"gg",886}, - {""}, {""}, {""}, - {"avg",320}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"firstDimension",841}, - {""}, {""}, - {"categoryType",381}, - {""}, {""}, {""}, {""}, {""}, - {"rdbType",1730}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"rdbtimeDay",1734}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"verticalDomainTemplate",2299}, - {""}, - {"rdbDateTime",1728}, + {"validityDate",2280}, {""}, {""}, {""}, {""}, {""}, {""}, - {"rdbtimeTime",1739}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"fcmonth",835}, {""}, - {"suiteName",2102}, - {""}, - {"parameterName",1621}, - {""}, {""}, - {"dateOfForecast",637}, - {"NT",186}, - {""}, {""}, - {"waveDomain",2312}, + {"setDecimalPrecision",2007}, {""}, {""}, {""}, {""}, - {"timeOfForecast",2153}, - {""}, {""}, {""}, - {"modelName",1289}, - {"coefsSecond",551}, - {"extraDim",786}, - {"aerosolpacking",297}, - {""}, {""}, {""}, {""}, - {"lengthDescriptors",1083}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"analysisOffsets",300}, - {"crcrlf",611}, - {"derivedForecast",672}, - {"Ny",202}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"dayOfForecast",649}, - {""}, - {"controlForecastCluster",570}, - {""}, - {"latitudeOfCentrePoint",1049}, - {"shortName",2010}, - {""}, {""}, {""}, {""}, - {"xFirst",2354}, - {"ensembleSize",758}, - {""}, {""}, - {"latitudeSexagesimal",1071}, - {""}, {""}, {""}, - {"marsStartStep",1212}, - {""}, {""}, - {"startTimeStep",2066}, - {""}, - {"localFlag",1125}, - {"flag",849}, + {"unitOfTime",2242}, {""}, {""}, {""}, {""}, {""}, - {"maximum",1234}, - {""}, {""}, - {"runwayState",1845}, + {"reservedOctet",1777}, {""}, {""}, {""}, {""}, - {"Ncy",192}, - {""}, - {"horizontalCoordinateSupplement",926}, - {""}, {""}, - {"yearOfForecast",2367}, - {""}, - {"logTransform",1146}, - {""}, {""}, {""}, {""}, - {"stepTypeForConversion",2079}, - {"optimizeScaleFactor",1518}, - {""}, {""}, {""}, - {"Nuy",200}, - {""}, {""}, {""}, {""}, - {"oldSubtype",1500}, - {""}, - {"incrementOfLengths",955}, - {""}, {""}, {""}, - {"LaD",105}, + {"laplacianOperatorIsSet",1038}, + {"forecastperiod",866}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Latin",113}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"editionNumber",714}, - {"referenceDate",1754}, - {"offsetSection9",1497}, - {"Nassigned",189}, - {"gridName",904}, - {""}, {""}, - {"subSetK",2098}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"perturbedType",1642}, {"freeFormData",869}, - {"Lap",108}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetSection0",1486}, - {"representationType",1768}, + {"incrementOfLengths",955}, {""}, - {"siteId",2021}, + {"categoryType",381}, + {""}, {""}, {""}, {""}, + {"forecastTime",865}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"aerosolpacking",297}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"firstDimension",841}, + {"forecastSteps",864}, {""}, {""}, {""}, {""}, {""}, - {"reservedOctet",1775}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"sectionNumber",1977}, + {"Xo",268}, + {"offset",1468}, + {"ensembleSize",758}, {""}, - {"hourOfForecast",933}, - {""}, {""}, - {"marsIdent",1200}, - {""}, {""}, - {"paramId",1611}, + {"Xp",269}, + {""}, {""}, {""}, {""}, + {"anoffset",307}, + {"verticalDomainTemplate",2309}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"daLoop",616}, - {""}, {""}, - {"yLast",2362}, {""}, {""}, {""}, {""}, - {"global",887}, - {""}, {""}, {""}, {""}, - {"subcentreOfAnalysis",2100}, + {"observedData",1462}, + {""}, {""}, {""}, {""}, {""}, + {"Ni",194}, {""}, {""}, {""}, - {"monthOfForecast",1296}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"subSetJ",2097}, + {"Nr",196}, + {""}, {""}, {""}, + {"lengthDescriptors",1083}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"periodOfTime",1641}, {""}, {""}, - {"offsetDescriptors",1480}, - {""}, - {"cfName",404}, + {"oldSubtype",1502}, + {""}, {""}, {""}, + {"latitudeSexagesimal",1071}, + {"flag",849}, + {"longitudeOfCentrePoint",1153}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"generatingProcessTemplate",883}, - {"expver",784}, - {"iIncrement",943}, - {""}, {""}, - {"originalSubCentreIdentifier",1528}, - {""}, - {"validityDate",2270}, - {""}, {""}, {""}, {""}, + {"global",887}, + {"newSubtype",1319}, {"decimalScaleFactor",654}, - {""}, - {"visibility",2303}, - {"energyNorm",754}, {""}, {""}, - {"anoffsetFirst",308}, - {""}, {""}, - {"horizontalCoordinateDefinition",925}, + {"gridDefinition",899}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"coefsSecond",551}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"localFlag",1126}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"localDefinition",1122}, + {"referenceStep",1763}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Ly",151}, + {"LaD",105}, + {""}, {""}, {""}, + {"visibility",2313}, + {""}, {""}, {""}, + {"Latin",113}, + {"integerScaleFactor",977}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"logTransform",1148}, + {""}, {""}, {""}, {""}, {""}, + {"crcrlf",611}, + {"suiteName",2108}, + {""}, + {"parameterName",1623}, {""}, {""}, - {"upperLimit",2257}, - {""}, {""}, {""}, {""}, + {"derivedForecast",672}, + {""}, {""}, {""}, {"clearTables",423}, {""}, - {"integerScalingFactorAppliedToDirections",978}, - {"integerScalingFactorAppliedToFrequencies",979}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"computeStatistics",557}, + {"scaledDirections",1877}, + {""}, + {"Lap",108}, + {""}, {""}, {""}, + {"modelName",1291}, + {""}, + {"NT",186}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"analysisOffsets",300}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Ny",202}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"extraDim",786}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"shortName",2013}, + {""}, {""}, + {"generatingProcessTemplate",883}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"daLoop",616}, + {""}, {""}, + {"yLast",2372}, + {""}, {""}, {""}, + {"marsKeywords",1203}, + {""}, {""}, + {"boustrophedonic",369}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"clusterNumber",538}, - {"expandedTypes",777}, - {"typeOfStatisticalPostProcessingOfEnsembleMembers",2214}, - {"latitudeOfCentrePointInDegrees",1050}, - {"auxiliary",315}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Ncy",192}, + {"siteId",2024}, + {""}, {""}, + {"Nassigned",189}, + {"gridName",904}, + {""}, {""}, {""}, {""}, {""}, + {"gridDefinitionDescription",900}, + {""}, {""}, {""}, + {"maximum",1236}, {""}, + {"Nuy",200}, + {""}, + {"dayOfForecast",649}, + {""}, + {"marsIdent",1202}, + {""}, {""}, + {"paramId",1613}, + {"overlayTemplateNumber",1536}, + {""}, {""}, {""}, {""}, + {"stepTypeForConversion",2085}, + {""}, {""}, + {"controlForecastCluster",570}, + {""}, {""}, {""}, + {"dateOfForecast",637}, + {"Ly",151}, + {""}, {""}, + {"upperLimit",2267}, + {""}, + {"referenceOfLengths",1759}, + {""}, {""}, + {"timeOfForecast",2159}, + {""}, + {"editionNumber",714}, + {""}, {""}, {""}, {""}, {""}, + {"rdbSubtype",1731}, + {""}, {""}, {""}, + {"xFirst",2364}, + {"latitudeOfCentrePoint",1049}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"iIncrement",943}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"gridDefinitionSection",901}, + {""}, {""}, {""}, {"Lcy",120}, {""}, {""}, - {"numberOfFloats",1381}, - {""}, {""}, - {"channelNumber",417}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"referenceStep",1761}, - {"overlayTemplateNumber",1534}, - {""}, - {"Luy",147}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"listOfScaledFrequencies",1114}, - {""}, {""}, {""}, - {"atmosphericChemicalOrPhysicalConstituentType",313}, - {""}, {""}, {""}, - {"integerScaleFactor",977}, - {""}, {""}, {""}, {""}, - {"boustrophedonic",369}, - {"truncateLaplacian",2182}, - {""}, {""}, {""}, {""}, - {"localDefinition",1121}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"computeStatistics",557}, - {""}, {""}, {""}, {""}, {""}, - {"gridDefinition",899}, - {""}, {""}, {""}, {""}, - {"modelIdentifier",1288}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"referenceOfLengths",1757}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfDirections",1371}, - {""}, {""}, {""}, - {"typeOfStatisticalProcessing",2215}, - {""}, {""}, {""}, - {"indexingTime",960}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"faFieldName",829}, - {"Nf",193}, - {""}, - {"defaultName",658}, - {"secondOfForecast",1914}, - {""}, {""}, - {"minuteOfForecast",1273}, - {"numberOfDiamonds",1370}, - {"marsKeywords",1201}, - {""}, - {"scaledDirections",1874}, - {""}, {""}, - {"numberOfTimeSteps",1441}, - {""}, {""}, {""}, {""}, {""}, - {"climateDateFrom",424}, - {""}, {""}, {""}, - {"setLocalDefinition",2005}, - {""}, - {"numberingOrderOfDiamonds",1453}, - {"N",169}, - {""}, {""}, - {"newSubtype",1317}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"ccccIdentifiers",383}, - {""}, - {"levTypeName",1093}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"modeNumber",1285}, - {"observedData",1460}, - {""}, {""}, - {"rdbSubtype",1729}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"marsLevel",1205}, - {""}, {""}, {""}, {""}, {""}, - {"anoffsetFrequency",309}, - {""}, {""}, - {"defaultStepUnits",662}, - {""}, - {"generatingProcessIdentifier",882}, - {""}, {""}, - {"longitudeSexagesimal",1176}, - {""}, - {"topLevel",2160}, {"lcwfvSuiteName",1077}, {""}, {""}, {""}, {""}, {""}, - {"numberOfSubsets",1438}, - {"sequences",2001}, - {""}, - {"quantile",1718}, - {""}, {""}, {""}, - {"gridDefinitionDescription",900}, - {""}, - {"siteLatitude",2022}, - {""}, - {"matchLandType",1228}, - {""}, - {"marsLatitude",1204}, - {""}, {""}, - {"dataLength",623}, - {"offsetSection8",1496}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"instrumentIdentifier",974}, - {""}, {""}, {""}, {""}, {""}, - {"qnh",1711}, - {""}, {""}, {""}, {""}, - {"corr4Data",596}, - {""}, {""}, - {"generatingProcessIdentificationNumber",881}, - {"latitudesList",1075}, - {""}, - {"gridDefinitionSection",901}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"pressureLevel",1680}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"crraSection",614}, - {"rectimeSecond",1750}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"expoffset",783}, - {""}, {""}, - {"totalNumber",2165}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"sectionNumber",1980}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"DiInDegrees",33}, - {"indexTemplate",956}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"dx",701}, - {""}, - {"Dx",40}, - {"listOfDistributionFunctionParameter",1110}, - {""}, {""}, {""}, - {"typeOfDistributionFunction",2195}, - {""}, - {"iteratorDisableUnrotate",1019}, - {""}, - {"max",1233}, - {""}, {""}, {""}, {""}, - {"qfe",1708}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Luy",147}, {""}, {""}, - {"optimisationTime",1517}, - {"numberOfOperationalForecastTube",1407}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"satelliteIdentifier",1848}, - {""}, {""}, - {"lowerLimit",1180}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"defaultFaFieldName",655}, - {"stretchingFactor",2085}, - {"endOfInterval",743}, - {"DyInDegrees",44}, - {""}, - {"numberOfFrequencies",1387}, - {"templatesLocalDir",2124}, - {""}, - {"masterTableNumber",1223}, - {""}, {""}, {""}, {""}, - {"ccsdsRsi",387}, - {""}, {""}, {""}, - {"centreForLocal",399}, - {""}, {""}, - {"systemNumber",2109}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"localSection",1138}, - {"correction1Part",599}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"secondDimension",1908}, - {"legNumber",1081}, - {""}, - {"methodNumber",1266}, - {""}, - {"groupSplitting",910}, - {"typicalSecond",2226}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"expandedNames",772}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"indexingDate",959}, - {"stretchingFactorScaled",2086}, - {""}, {""}, - {"longitudeOfCentrePointInDegrees",1152}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"partitionItems",1626}, - {""}, {""}, {""}, {""}, {""}, - {"xLast",2355}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Nb",190}, - {""}, {""}, - {"localDefNumberTwo",1120}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfForcasts",1382}, - {"diffInDays",676}, - {"longitudinalDirectionGridLength",1179}, - {""}, {""}, {""}, {""}, - {"heightLevelName",921}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"marsRange",1211}, - {""}, - {"generatingProcessTemplateNumber",884}, - {""}, {""}, - {"typeOfLevel",2204}, - {""}, {""}, {""}, - {"bufrTemplate",374}, - {"secondOrderFlags",1916}, - {"yDirectionGridLength",2358}, - {"stepRange",2076}, - {"referenceSampleInterval",1760}, - {""}, - {"localDefinitionNumber",1122}, - {""}, {""}, - {"diagnosticNumber",675}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetDescriptors",1482}, {""}, {"createNewData",612}, - {"offsetFreeFormData",1482}, - {""}, {""}, {""}, {""}, {""}, - {"conceptsLocalDirAll",559}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"distinctLatitudes",689}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"secondOfForecast",1917}, {""}, {""}, - {"periodOfTimeIntervals",1640}, - {""}, {""}, - {"forecastLeadTime",857}, - {""}, {""}, - {"orderOfSpatialDifferencing",1522}, + {"minuteOfForecast",1275}, {""}, - {"MS",156}, + {"energyNorm",754}, + {"integerScalingFactorAppliedToDirections",978}, + {"integerScalingFactorAppliedToFrequencies",979}, + {""}, + {"subSetK",2104}, + {""}, + {"offsetSection9",1499}, + {"yearOfForecast",2377}, + {""}, {""}, {""}, + {"lowerLimit",1182}, + {""}, + {"groupSplitting",910}, + {"truncateLaplacian",2188}, + {""}, {""}, {""}, {""}, + {"ccsdsRsi",387}, + {"expver",784}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"originalSubCentreIdentifier",1530}, + {""}, + {"offsetSection0",1488}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"anoffsetFirst",308}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cfName",404}, + {""}, {""}, {""}, {""}, + {"numberOfFloats",1383}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetSection8",1498}, + {""}, {""}, {""}, + {"numberOfDiamonds",1372}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfDirections",1373}, + {"longitudeSexagesimal",1178}, + {""}, {""}, {""}, {""}, {""}, + {"clusterNumber",538}, {""}, {""}, - {"correction3Part",603}, - {"missingDataFlag",1278}, + {"marsRange",1213}, + {"modelIdentifier",1290}, + {""}, + {"hourOfForecast",933}, + {""}, {""}, {""}, + {"bufrTemplate",374}, + {"numberingOrderOfDiamonds",1455}, + {""}, {""}, {""}, + {"stepRange",2082}, + {""}, {""}, {""}, {""}, + {"setLocalDefinition",2008}, + {"channelNumber",417}, + {""}, {""}, + {"indexTemplate",956}, + {""}, {""}, + {"auxiliary",315}, + {""}, {""}, + {"typeOfStatisticalPostProcessingOfEnsembleMembers",2220}, + {"expandedTypes",777}, + {""}, {""}, + {"marsLevel",1207}, + {""}, {""}, + {"modeNumber",1287}, + {""}, {""}, + {"monthOfForecast",1298}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"latitudeOfCentrePointInDegrees",1050}, + {"topLevel",2166}, + {""}, {""}, {""}, + {"localDefinitionNumber",1123}, + {"siteLatitude",2025}, + {""}, {""}, {""}, + {"marsLatitude",1206}, + {""}, {""}, + {"dataLength",623}, + {"generatingProcessIdentifier",882}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfTimeSteps",1443}, + {""}, {""}, + {"instrumentIdentifier",974}, + {"climateDateFrom",424}, + {"masterTableNumber",1225}, + {""}, {""}, {""}, + {"partitionItems",1628}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"ccccIdentifiers",383}, + {""}, {""}, {""}, {""}, + {"typeOfStatisticalProcessing",2221}, + {""}, {""}, + {"latitudesList",1075}, + {"upperRange",2268}, + {""}, + {"indexingTime",960}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfSubsets",1440}, + {"indexingDate",959}, + {""}, {""}, {""}, {""}, + {"generatingProcessIdentificationNumber",881}, + {""}, {""}, + {"distinctLatitudes",689}, + {""}, {""}, {""}, {""}, + {"listOfScaledFrequencies",1114}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"upperRange",2258}, - {""}, {""}, {""}, - {"molarMass",1292}, - {"productDefinition",1693}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"frequency",870}, - {""}, {""}, {""}, - {"bottomLevel",368}, - {""}, {""}, - {"tiggeSection",2140}, - {""}, {""}, {""}, {""}, - {"extractSubset",817}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"atmosphericChemicalOrPhysicalConstituentType",313}, + {"levTypeName",1093}, {""}, - {"matchTimeRepres",1230}, - {""}, - {"sizeOfOffsets",2025}, - {""}, {""}, - {"numberOfSection",1434}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"tubeNumber",2187}, - {""}, - {"numberOfForecastsInTube",1386}, - {""}, {""}, {""}, {""}, {""}, - {"marsModel",1208}, - {""}, - {"observablePropertyTemplate",1455}, - {""}, - {"northernLatitudeOfDomain",1330}, + {"pressureLevel",1682}, {""}, {""}, {""}, {""}, {""}, {""}, - {"rdbtimeSecond",1738}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"stepTypeInternal",2080}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"expandedDescriptors",771}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"levelIndicator",1095}, - {"tableNumber",2113}, - {"simpleThinningSkip",2018}, - {""}, {""}, {""}, {""}, {""}, - {"longitudeOfFirstGridPoint",1156}, - {"southernLatitudeOfDomain",2042}, - {""}, {""}, {""}, - {"earthMinorAxis",706}, - {""}, {""}, {""}, - {"observablePropertyTemplateNumber",1456}, - {""}, {""}, {""}, {""}, - {"binaryScaleFactor",360}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"sequences",2004}, {""}, - {"verificationDate",2285}, - {""}, {""}, {""}, {""}, - {"isEps",995}, - {""}, {""}, {""}, {""}, {""}, - {"oneMillionConstant",1503}, - {""}, {""}, - {"marsLevelist",1206}, - {"memberNumber",1262}, + {"quantile",1720}, {""}, - {"widthOfFirstOrderValues",2318}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"endOfRange",746}, - {""}, {""}, {""}, {""}, {""}, - {"FirstLatitude",68}, - {""}, {""}, - {"verticalDomainTemplateNumber",2300}, + {"totalNumber",2171}, + {""}, + {"defaultName",658}, + {"DiInDegrees",33}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"ensembleForecastNumbers",756}, - {""}, - {"corr2Data",594}, - {""}, {""}, - {"defaultShortName",661}, - {""}, - {"powerOfTenUsedToScaleClimateWeight",1653}, - {""}, - {"oceanLevName",1463}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"iterationNumber",1018}, - {""}, - {"dimensionNumber",679}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"parameterNumber",1622}, - {""}, {""}, {""}, {""}, - {"partitionNumber",1627}, - {""}, - {"theMessage",2127}, + {"JS",95}, {""}, {""}, {""}, {""}, {""}, + {"Nf",193}, + {""}, {""}, {""}, {""}, + {"qnh",1713}, + {"lowerRange",1183}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"matchTimeRepres",1232}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Nb",190}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"faFieldName",829}, + {""}, + {"iteratorDisableUnrotate",1019}, + {""}, {""}, {""}, {""}, + {"northernLatitudeOfDomain",1332}, + {""}, {""}, {""}, {""}, {""}, + {"DyInDegrees",44}, + {""}, {""}, {""}, {""}, + {"legNumber",1081}, + {""}, {""}, + {"N",169}, + {""}, {""}, {""}, + {"orderOfSpatialDifferencing",1524}, + {""}, + {"crraSection",614}, + {"rectimeSecond",1752}, + {""}, {""}, {""}, {""}, {""}, + {"marsLevelist",1208}, + {"satelliteIdentifier",1851}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"spectralDataRepresentationMode",2058}, + {"systemNumber",2115}, + {"anoffsetFrequency",309}, + {""}, + {"stretchingFactor",2091}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"numberOfSection",1436}, + {""}, {""}, {""}, + {"widthOfFirstOrderValues",2328}, + {"templatesLocalDir",2130}, + {""}, + {"listOfDistributionFunctionParameter",1110}, + {"methodNumber",1268}, + {"southernLatitudeOfDomain",2045}, + {""}, + {"typeOfDistributionFunction",2201}, + {"isEps",995}, + {""}, + {"optimisationTime",1519}, + {""}, {""}, + {"qfe",1710}, + {"defaultStepUnits",662}, + {""}, {""}, + {"levelIndicator",1095}, + {""}, {""}, {""}, {""}, + {"numberOfForecastsInTube",1388}, + {""}, {""}, + {"stepTypeInternal",2086}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"secondDimension",1911}, + {"observablePropertyTemplate",1457}, + {""}, + {"numberOfDistinctSection9s",1380}, + {""}, + {"spectralDataRepresentationType",2059}, + {""}, + {"bottomLevel",368}, + {""}, {""}, {""}, {""}, {""}, + {"longitudinalDirectionGridLength",1181}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"stretchingFactorScaled",2092}, + {""}, {""}, {""}, + {"heightLevelName",921}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfDistinctSection8s",1379}, + {""}, {""}, {""}, {""}, + {"centreForLocal",399}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfFrequencies",1389}, + {""}, {""}, {""}, {""}, + {"expoffset",783}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"localSection",1139}, + {""}, {""}, {""}, + {"tubeNumber",2193}, + {""}, {""}, + {"longitudeOfFirstGridPoint",1158}, + {"endOfRange",746}, + {""}, + {"missingDataFlag",1280}, + {"observablePropertyTemplateNumber",1458}, + {""}, {""}, {""}, + {"typicalSecond",2232}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"expandedDescriptors",771}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfOperationalForecastTube",1409}, + {""}, {""}, {""}, {""}, {""}, + {"marsEndStep",1197}, + {""}, {""}, {""}, {""}, {""}, + {"dimensionType",680}, + {"diagnosticNumber",675}, + {""}, {""}, {""}, {""}, + {"endOfInterval",743}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"generatingProcessTemplateNumber",884}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfForcasts",1384}, + {""}, {""}, + {"forecastLeadTime",857}, + {""}, + {"tableNumber",2119}, + {""}, {""}, {""}, + {"conceptsLocalDirAll",559}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"xLast",2365}, + {""}, {""}, + {"referenceSampleInterval",1762}, + {"dx",701}, + {"secondOrderFlags",1919}, + {"Dx",40}, + {""}, {""}, {""}, {""}, {""}, + {"typeOfLevel",2210}, + {""}, {""}, + {"max",1235}, + {""}, {""}, + {"diffInDays",676}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"zeros",2381}, + {""}, + {"zero",2380}, + {""}, {""}, + {"longitudeOfCentrePointInDegrees",1154}, + {"memberNumber",1264}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"earthIsOblate",703}, + {"rdbtimeSecond",1740}, + {""}, {""}, + {"tiggeSection",2146}, + {""}, + {"molarMass",1294}, + {""}, {""}, + {"userDateEnd",2271}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"Adelta",13}, + {"extractSubset",817}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"defaultFaFieldName",655}, + {""}, {""}, {""}, {""}, + {"defaultShortName",661}, + {""}, {""}, {""}, + {"multiplicationFactorForLatLong",1305}, + {""}, + {"MS",156}, + {"expandedNames",772}, + {""}, {""}, + {"userDateTimeEnd",2273}, + {""}, {""}, + {"isAuto",986}, + {""}, {""}, {""}, {""}, {""}, + {"marsModel",1210}, + {""}, {""}, {""}, + {"clutterFilterIndicator",542}, + {""}, {""}, + {"binaryScaleFactor",360}, + {"productDefinition",1695}, + {""}, + {"meanSize",1258}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"frequency",870}, + {""}, + {"earthMinorAxis",706}, + {""}, {""}, + {"userTimeEnd",2275}, + {"offsetFreeFormData",1484}, + {""}, + {"unsignedIntegers",2260}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"anoffsetLast",310}, + {"angleOfRotation",303}, + {""}, + {"siteElevation",2023}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"corr3Data",595}, {""}, {""}, {""}, {""}, - {"addressOfFileFreeSpaceInfo",294}, - {""}, - {"clusterMember9",537}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"marsEndStep",1195}, - {""}, - {"directionNumber",682}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"thisMarsStream",2130}, - {""}, - {"localMinute",1134}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"thisMarsType",2131}, - {"numberOfIterations",1395}, - {""}, {""}, - {"secondDimensionPhysicalSignificance",1910}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Nx",201}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unitsOfSecondFixedSurface",2248}, - {""}, - {"localMonth",1135}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"localLatitude",1128}, + {"representationType",1770}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"satelliteNumber",1849}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"Ncx",191}, + {"verticalDomainTemplateNumber",2310}, {""}, {""}, - {"clutterFilterIndicator",542}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"earthIsOblate",703}, + {"periodOfTimeIntervals",1642}, + {"datumSize",645}, {""}, {""}, - {"siteLongitude",2023}, - {"Nux",199}, - {"Adelta",13}, - {"DxInDegrees",41}, - {"marsLongitude",1207}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"iScansNegatively",944}, - {""}, {""}, {""}, {""}, {""}, - {"angleMultiplier",302}, - {""}, {""}, {""}, {""}, {""}, - {"spectralMode",2054}, - {""}, - {"multiplicationFactorForLatLong",1303}, - {""}, {""}, - {"indexTemplateNumber",957}, - {""}, {""}, - {"marsParam",1209}, - {"SPD",222}, - {""}, {""}, - {"operatingMode",1515}, - {""}, - {"isAuto",986}, - {""}, {""}, - {"globalDomain",888}, - {""}, - {"epsPoint",762}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"firstLatitude",844}, + {"powerOfTenUsedToScaleClimateWeight",1655}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"headersOnly",920}, {"biFourierTruncationType",359}, {""}, {""}, {""}, {""}, {""}, {""}, - {"secondLatitude",1911}, - {"unitOfOffsetFromReferenceTime",2235}, - {""}, {""}, {""}, {"TAFstr",230}, - {"lowerRange",1181}, - {""}, - {"userDateTimeEnd",2263}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"realPart",1741}, - {"userDateEnd",2261}, - {""}, {""}, {""}, - {"ITN",93}, - {""}, {""}, {""}, {""}, - {"anoffsetLast",310}, - {"TAF",229}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"spectralDataRepresentationMode",2052}, - {"minuteOfReference",1275}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unitsOfFirstFixedSurface",2247}, - {""}, - {"faLevelName",830}, {""}, {""}, - {"numberOfLocalDefinitions",1396}, - {""}, - {"iDirectionIncrement",939}, - {"SecondLatitude",223}, - {""}, {""}, {""}, {""}, - {"roundedMarsLevelist",1791}, - {"scaleFactorOfFirstSize",1858}, - {"tiggeModel",2139}, - {"dateOfReference",641}, - {"numberOfDistinctSection9s",1378}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"timeOfReference",2155}, - {""}, - {"timeIncrement",2150}, - {"Azi",15}, - {"scanningMode",1899}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"simpleThinningSkip",2021}, + {""}, {""}, {""}, {"dataAccessors",618}, - {""}, - {"representationMode",1767}, - {""}, - {"userTimeEnd",2265}, - {""}, {""}, - {"xDirectionGridLength",2351}, - {""}, {""}, - {"indicatorOfUnitOfTimeRange",965}, - {""}, - {"spectralDataRepresentationType",2053}, - {""}, - {"unsignedIntegers",2254}, - {""}, - {"treatmentOfMissingData",2178}, - {"Lx",149}, - {"siteElevation",2020}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"g2grid",877}, - {""}, - {"defaultFaLevelName",656}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"simpleThinningStart",2019}, - {"angleSubdivisions",306}, - {"roundedMarsLongitude",1792}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"identificationNumber",947}, - {""}, - {"yearOfReference",2369}, - {""}, - {"Lcx",118}, - {"NL",182}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ensembleStandardDeviation",759}, - {"observationGeneratingProcessIdentifier",1458}, - {""}, - {"Lux",145}, + {"representationMode",1769}, + {""}, {""}, + {"secondLatitude",1914}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"calendarIdPresent",376}, - {""}, - {"LaDInDegrees",106}, - {""}, {""}, {""}, - {"scaleFactorOfStandardDeviation",1870}, - {"scaledFrequencies",1875}, - {"scalingFactorForFrequencies",1897}, - {""}, {""}, {""}, {""}, {""}, - {"computeLaplacianOperator",556}, - {""}, {""}, {""}, - {"extractedDateTimeNumberOfSubsets",822}, - {"northLatitudeOfCluster",1323}, - {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfStandardDeviationInTheCluster",1871}, - {""}, {""}, {""}, - {"scaleFactorOfFirstFixedSurface",1857}, + {"theMessage",2133}, + {""}, {""}, + {"verificationDate",2295}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"correction4Part",605}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"minuteOfReference",1277}, {""}, {""}, {""}, {""}, - {"tablesMasterDir",2116}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"biFourierMakeTemplate",352}, - {""}, {""}, - {"startOfMessage",2062}, + {"oceanLevName",1465}, + {"oneMillionConstant",1505}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"globalDomain",888}, + {""}, {""}, {""}, {""}, + {"TAF",229}, + {"simpleThinningStart",2022}, {""}, {""}, {""}, - {"ifsParam",952}, - {"productDefinitionTemplateNumber",1694}, - {"clusterMember8",536}, - {""}, - {"tileIndex",2145}, - {""}, - {"hourOfReference",935}, - {""}, {""}, {""}, - {"standardParallelInDegrees",2059}, - {""}, {""}, - {"pvlLocation",1707}, - {"climatologicalRegime",426}, - {""}, {""}, - {"dataValues",634}, - {""}, {""}, - {"localDefNumberOne",1119}, - {""}, {""}, - {"southLatitudeOfCluster",2038}, - {""}, {""}, - {"corr1Data",593}, - {"standardParallel",2058}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfDistinctSection8s",1377}, - {""}, {""}, {""}, - {"roundedMarsLatitude",1790}, - {"monthOfReference",1298}, + {"dateOfReference",641}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfSecondSize",1868}, + {"timeOfReference",2161}, + {"SecondLatitude",223}, + {"localMinute",1135}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"productDefinitionTemplateNumberInternal",1695}, {""}, {""}, - {"numberOfInts",1394}, + {"numberOfIterations",1397}, {""}, - {"perturbationNumber",1641}, + {"thisMarsType",2137}, + {"climatologicalRegime",426}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"indexTemplateNumber",957}, + {"iterationNumber",1018}, + {"perturbedType",1644}, + {"dimensionNumber",679}, + {""}, {""}, + {"FirstLatitude",68}, {""}, - {"eastLongitudeOfCluster",708}, + {"thisMarsStream",2136}, + {"operatingMode",1517}, + {""}, {""}, + {"parameterNumber",1624}, + {"secondDimensionPhysicalSignificance",1913}, + {"scaleFactorOfFirstSize",1861}, + {""}, + {"localMonth",1136}, + {"partitionNumber",1629}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"clusterMember9",537}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfStandardDeviation",1873}, + {""}, {""}, {""}, + {"angleMultiplier",302}, + {""}, {""}, {""}, + {"directionNumber",682}, + {"indicatorOfUnitOfTimeRange",965}, + {"spectralMode",2060}, + {""}, {""}, {""}, + {"yearOfReference",2379}, + {""}, {""}, {""}, {""}, + {"scaleFactorOfStandardDeviationInTheCluster",1874}, {""}, {""}, {""}, {""}, {""}, {"inputDelayedDescriptorReplicationFactor",967}, - {"angleOfRotation",303}, - {""}, {""}, {""}, - {"orderOfSPD",1521}, - {""}, {""}, {""}, {""}, {""}, - {"is_uerra",1012}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"temperatureAndDewpointPresent",2123}, {""}, - {"_T",284}, - {""}, {""}, {""}, {""}, - {"DiInMetres",34}, + {"siteLongitude",2026}, {""}, {""}, {""}, - {"sensitiveAreaDomain",2000}, - {""}, {""}, {""}, - {"localLongitude",1131}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfEnsembleForecast",2196}, - {""}, {""}, {""}, - {"defaultSequence",660}, + {"marsLongitude",1209}, {""}, {""}, - {"conceptsMasterDir",562}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"section4",1951}, - {"section_09",1987}, - {""}, {""}, {""}, {""}, {""}, - {"neitherPresent",1316}, - {""}, {""}, {""}, {""}, - {"short_name",2013}, - {""}, {""}, - {"representativeMember",1769}, - {""}, {""}, {""}, {""}, - {"unitOfTimeIncrement",2237}, + {"localLatitude",1129}, {""}, - {"charValues",419}, - {""}, {""}, {""}, - {"_TS",285}, - {"indicatorOfUnitForTimeIncrement",963}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"DyInMetres",45}, - {""}, {""}, - {"gridDefinitionTemplateNumber",902}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"startStepInHours",2065}, - {""}, {""}, {""}, - {"typeOfTimeIncrement",2216}, - {"cnmc_isac",544}, - {"groupLeafNodeK",908}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfInts",1396}, {""}, - {"is_aerosol",1003}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"accumulationInterval",289}, - {""}, {""}, {""}, - {"forecastPeriod",860}, - {"numberOfRadials",1427}, - {"probPoint",1686}, - {""}, {""}, {""}, {""}, {""}, - {"II",89}, - {""}, {""}, {""}, {""}, {""}, - {"defaultParameter",659}, - {""}, {""}, {""}, {""}, - {"truncateDegrees",2181}, + {"clusterSize",539}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"calendarIdentification",377}, - {""}, {""}, - {"internalVersion",981}, - {""}, {""}, - {"epsStatisticsPoint",764}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scanningMode8",1904}, - {""}, {""}, {""}, - {"marsLamModel",1203}, - {"cnmc_cmcc",543}, - {"local_use",1145}, + {"truncateDegrees",2187}, {""}, - {"monthOfAnalysis",1294}, - {"codedValues",549}, + {"tiggeModel",2145}, {""}, {""}, - {"versionNumOfFilesFreeSpaceStorage",2290}, - {""}, - {"classOfAnalysis",422}, - {""}, {""}, {""}, - {"applicationIdentifier",311}, - {"numberOfRows",1432}, - {""}, - {"faModelName",831}, - {""}, - {"originalParameterNumber",1526}, - {""}, - {"is_efas",1007}, - {"longitudeOfLastGridPoint",1159}, - {"streamOfAnalysis",2084}, + {"clusterMember8",536}, + {""}, {""}, {""}, {""}, {""}, + {"scalingFactorForFrequencies",1900}, {""}, {""}, - {"julianDay",1027}, - {""}, {""}, {""}, - {"is_chemical",1005}, + {"sensitiveAreaDomain",2003}, {""}, - {"lengthIncrementForTheGroupLengths",1084}, - {""}, {""}, {""}, {""}, - {"referenceValue",1762}, - {"dataRepresentation",625}, - {"forecastPeriodTo",862}, - {""}, {""}, {""}, {""}, - {"latitudeLastInDegrees",1046}, - {"NAT",172}, - {"internationalDataSubCategory",982}, + {"scanningMode",1902}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfFirstGridPointInDegrees",1157}, - {""}, {""}, {""}, {""}, {""}, - {"gts_header",917}, + {"satelliteNumber",1852}, {""}, - {"changeDecimalPrecision",410}, - {"sectionPosition",1978}, - {""}, {""}, {""}, {""}, - {"coordinate1Flag",577}, - {""}, - {"baseAddress",325}, - {"minuteOfAnalysis",1271}, - {"forecastPeriodFrom",861}, - {"lengthOfIndexTemplate",1087}, - {"floatVal",855}, + {"roundedMarsLatitude",1793}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"conceptsMasterDir",562}, {""}, {""}, {""}, {""}, {""}, + {"ensembleStandardDeviation",759}, + {"DxInDegrees",41}, + {"angleSubdivisions",306}, + {""}, {""}, {""}, + {"extractedDateTimeNumberOfSubsets",822}, + {"numberOfRadials",1429}, + {"hourOfReference",935}, + {""}, {"ensembleForecastNumbersList",757}, - {""}, {""}, {""}, {""}, - {"dateOfForecastRun",638}, - {""}, {""}, {""}, - {"falseNorthing",834}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"marsExperimentOffset",1196}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"calendarIdentificationTemplateNumber",378}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"numberOfIntegers",1393}, - {""}, {""}, {""}, {""}, - {"extractSubsetList",820}, - {""}, {""}, {""}, - {"originatingCentre",1529}, {""}, {""}, - {"dateOfAnalysis",636}, - {"deleteExtraLocalSection",669}, - {"marsExpver",1197}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"timeOfAnalysis",2152}, - {""}, {""}, {""}, - {"scaleFactorOfDistributionFunctionParameter",1854}, - {"parameterIndicator",1620}, - {"numberInTheAuxiliaryArray",1337}, - {""}, {""}, {""}, - {"rectimeMinute",1749}, - {""}, {""}, {""}, {""}, {""}, - {"nameOfSecondFixedSurface",1313}, + {"subcentreOfAnalysis",2106}, + {"numberOfLocalDefinitions",1398}, {""}, - {"is_tigge",1011}, + {"representativeMember",1771}, + {""}, {""}, {"boustrophedonicOrdering",370}, {""}, - {"startingAzimuth",2067}, - {"md5Data",1235}, - {""}, {""}, - {"tigge_name",2142}, + {"julianDay",1027}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"iDirectionIncrement",939}, {""}, {""}, {""}, {""}, - {"scaleFactorOfSecondFixedSurface",1867}, + {"gridDefinitionTemplateNumber",902}, {""}, {""}, - {"efas_model",715}, - {"kurt",1033}, - {"dayOfAnalysis",647}, - {""}, {""}, {""}, {""}, - {"significanceOfReferenceTime",2016}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"dataRepresentationType",628}, - {"inputDataPresentIndicator",966}, - {"typeOfSizeInterval",2213}, - {"longitudeFirstInDegrees",1148}, + {"monthOfReference",1300}, {""}, {"isAccumulation",985}, + {""}, + {"unitOfOffsetFromReferenceTime",2241}, + {"corr2Data",594}, + {""}, {""}, {""}, + {"firstLatitude",844}, + {""}, {""}, {""}, {""}, {""}, + {"localLongitude",1132}, + {"identificationNumber",947}, + {"unitsOfFirstFixedSurface",2253}, + {""}, {""}, {""}, + {"baseAddress",325}, + {""}, + {"tablesMasterDir",2122}, + {""}, {""}, {""}, + {"internationalDataSubCategory",982}, + {"roundedMarsLevelist",1794}, + {""}, {""}, {""}, + {"LaDInDegrees",106}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfFirstFixedSurface",1860}, + {""}, {""}, {""}, + {"faLevelName",830}, + {"scaleFactorOfSecondSize",1871}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"J",94}, + {""}, + {"timeIncrement",2156}, + {""}, {""}, {""}, {""}, + {"unitsOfSecondFixedSurface",2254}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"addressOfFileFreeSpaceInfo",294}, {""}, {""}, - {"numberInTheGridCoordinateList",1338}, + {"roundedMarsLongitude",1795}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfModels",1404}, + {"corr4Data",596}, + {"scanningMode8",1907}, + {"biFourierMakeTemplate",352}, + {"originatingCentre",1531}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"NL",182}, + {"horizontalCoordinateSupplement",926}, + {""}, {""}, + {"typeOfEnsembleForecast",2202}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"computeLaplacianOperator",556}, + {""}, + {"latitudeLastInDegrees",1046}, + {""}, {""}, {""}, {""}, + {"applicationIdentifier",311}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"dataRepresentation",625}, + {""}, + {"pvlLocation",1709}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"marsForecastMonth",1200}, + {""}, {""}, {""}, {""}, + {"Nx",201}, + {""}, {""}, + {"projString",1702}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfIntegers",1395}, + {""}, + {"optimizeScaleFactor",1520}, + {"dataValues",634}, + {""}, {""}, {""}, {""}, + {"ITN",93}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"calendarIdPresent",376}, + {""}, + {"Ncx",191}, + {"startOfMessage",2068}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"scaleFactorOfDistributionFunctionParameter",1857}, + {"defaultFaLevelName",656}, + {""}, + {"versionNumOfFilesFreeSpaceStorage",2300}, + {""}, + {"Nux",199}, + {""}, + {"marsParam",1211}, + {""}, {""}, {""}, + {"streamOfAnalysis",2090}, + {""}, {""}, + {"perturbationNumber",1643}, + {""}, {""}, {""}, + {"epsPoint",762}, + {""}, {""}, + {"g2grid",877}, + {""}, {""}, {""}, {""}, + {"Lx",149}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"SPD",222}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"realPart",1743}, + {""}, + {"NAT",172}, + {""}, {""}, + {"longitudeOfFirstGridPointInDegrees",1159}, + {"XR",266}, + {"numberOfDistributionFunctionParameters",1381}, + {"parameterIndicator",1622}, + {""}, + {"minuteOfAnalysis",1273}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"correction1Part",599}, + {"corr1Data",593}, + {"numberOfReservedBytes",1433}, + {""}, + {"Lcx",118}, + {""}, + {"radialAngularSpacing",1721}, + {"DiInMetres",34}, + {"marsExpver",1199}, + {""}, + {"bufrDataEncoded",371}, + {"horizontalCoordinateDefinition",925}, + {""}, {""}, {""}, {""}, + {"matchLandType",1230}, + {"dataRepresentationType",628}, + {""}, {""}, {""}, + {"Lux",145}, + {""}, {""}, {""}, {""}, {""}, + {"correction3Part",603}, + {"directionScalingFactor",684}, {""}, {""}, {""}, {"dataRepresentationTemplate",626}, - {"keyData",1029}, - {""}, - {"minutesAfterDataCutoff",1276}, - {""}, {""}, - {"listMembersUsed",1105}, - {"gts_ddhh00",916}, {""}, {""}, {""}, - {"yearOfAnalysis",2364}, - {""}, {""}, - {"numberOfDistributionFunctionParameters",1379}, - {""}, {""}, - {"tablesVersion",2117}, - {""}, - {"westLongitudeOfCluster",2314}, - {""}, - {"bitmapSectionPresent",364}, - {"section6",1960}, - {""}, - {"typeOfAnalysis",2191}, - {""}, {""}, - {"kurtosis",1034}, - {""}, - {"section_8",1997}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"biFourierSubTruncationType",358}, + {"charValues",419}, {""}, {""}, {""}, {""}, - {"grib2divider",892}, - {"typeOfSecondFixedSurface",2212}, - {""}, {""}, - {"coordinate3Flag",582}, - {""}, {""}, - {"stringValues",2087}, - {""}, - {"averagingPeriod",319}, - {"keySat",1031}, - {""}, {""}, {""}, - {"clusteringMethod",541}, - {""}, - {"section_08",1986}, - {""}, - {"projString",1700}, - {"radialAngularSpacing",1719}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"dataRepresentationTemplateNumber",627}, - {""}, - {"lengthOfMessage",1088}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"grib3divider",893}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"groupSplittingMethodUsed",911}, - {"floatValues",856}, - {"typicalMinute",2224}, - {""}, - {"_anoffset",286}, - {""}, - {"widthOfSPD",2320}, - {""}, {""}, - {"directionScalingFactor",684}, - {""}, {""}, - {"bufrDataEncoded",371}, - {"hourOfAnalysis",931}, - {""}, - {"secondsOfReference",1928}, - {"windPresent",2332}, - {""}, {""}, {""}, - {"defaultFaModelName",657}, - {"md5Section9",1249}, - {""}, - {"marsForecastMonth",1198}, + {"productDefinitionTemplateNumber",1696}, {""}, {""}, {""}, {""}, - {"nameOfFirstFixedSurface",1312}, - {""}, {""}, {""}, {""}, - {"numberOfDataMatrices",1365}, - {""}, {""}, {""}, - {"julianForecastDay",1028}, - {""}, {""}, - {"isConstant",992}, - {""}, {""}, {""}, {""}, - {"numberOfReservedBytes",1431}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"aerosolbinnumber",296}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"totalNumberOfdimensions",2177}, - {""}, {""}, - {"CDFstr",23}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"productIdentifier",1696}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"dirty_statistics",685}, - {"CDF",22}, - {"extractAreaWestLongitude",796}, - {""}, {""}, {""}, {""}, - {"lengthOfProjectLocalTemplate",1090}, - {"thresholdIndicator",2135}, - {""}, {""}, - {"totalNumberOfDirections",2168}, - {""}, - {"meaningOfVerticalCoordinate",1261}, - {""}, {""}, - {"correction2Part",601}, - {""}, - {"changingPrecision",415}, - {"radiusInMetres",1722}, - {""}, - {"marsClass",1190}, - {"M",153}, - {""}, {""}, {""}, - {"clusterIdentifier",527}, - {""}, {""}, {""}, {""}, - {"yDirectionGridLengthInMetres",2359}, - {""}, {""}, - {"typeOfFirstFixedSurface",2198}, - {""}, {""}, {""}, {""}, - {"orientationOfTheGrid",1523}, - {""}, {""}, {""}, - {"centuryOfReference",402}, - {""}, - {"XR",266}, - {""}, - {"totalNumberOfTubes",2175}, - {"laplacianScalingFactor",1039}, - {"inputExtendedDelayedDescriptorReplicationFactor",968}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"postAuxiliary",1651}, - {""}, - {"versionNumberOfGribLocalTables",2294}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"dewPointTemperature",673}, - {""}, {""}, - {"endOfFileAddress",741}, - {""}, {""}, - {"offsetAfterLocalSection",1470}, - {"monthlyVerificationDate",1299}, - {"indicatorOfUnitForTimeRange",964}, - {""}, {""}, {""}, {""}, - {"conceptsLocalDirECMF",560}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"normAtInitialTime",1321}, - {""}, {""}, {""}, - {"DxInMetres",42}, - {""}, {""}, {""}, - {"totalNumberOfFrequencies",2170}, - {""}, - {"doExtractDateTime",692}, - {""}, {""}, {""}, - {"offsetSection10",1488}, - {"cfVarName",407}, - {""}, {""}, {""}, {""}, - {"extraDimensionPresent",787}, - {""}, {""}, - {"conceptsLocalMarsDirAll",561}, - {"upperThreshold",2259}, - {""}, - {"endOfProduct",745}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"projectionCenterFlag",1704}, - {""}, {""}, {""}, - {"md5Section8",1248}, - {"monthlyVerificationTime",1301}, - {"libraryVersion",1100}, - {""}, {""}, {""}, {""}, - {"referenceOfWidths",1758}, - {""}, - {"numberOfAnalysis",1341}, - {""}, - {"sfc_levtype",2007}, - {""}, {""}, {""}, - {"predefined_grid",1658}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfModeOfDistribution",1403}, - {""}, {""}, - {"yDirectionGridLengthInMillimetres",2360}, {"NR",184}, - {"windSpeedTrend4",2337}, - {"windDirectionTrend4",2326}, - {""}, {""}, - {"longitudeOfStretchingPole",1167}, - {"projectionCentreFlag",1705}, - {""}, {""}, {""}, - {"tsectionNumber4",2184}, {""}, - {"rdbtimeMinute",1736}, - {"offsetSection4",1492}, - {"isectionNumber4",1015}, - {"numericValues",1454}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"md5Structure",1250}, - {""}, {""}, {""}, - {"scanPosition",1898}, - {""}, - {"expandedOriginalWidths",776}, - {""}, {""}, - {"expandedOriginalCodes",773}, - {""}, {""}, - {"parameterCode",1618}, - {""}, {""}, - {"skewness",2029}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"qnhPresent",1713}, - {""}, {""}, {""}, - {"extractSubsetIntervalEnd",818}, - {""}, {""}, {""}, - {"bitMapIndicator",361}, + {"yDirectionGridLength",2368}, {""}, {""}, {""}, {""}, {""}, - {"iScansPositively",945}, - {""}, - {"coordinateIndexNumber",590}, - {"extraValues",790}, - {""}, {""}, {""}, {""}, - {"extractSubsetIntervalStart",819}, - {"dayOfReference",651}, - {""}, {""}, {""}, {""}, - {"distanceFromTubeToEnsembleMean",688}, - {""}, {""}, {""}, - {"unknown",2249}, - {"iDirectionIncrementInDegrees",942}, - {"jIncrement",1024}, + {"scaledFrequencies",1878}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfMissing",1400}, - {""}, {""}, - {"offsetAfterPadding",1471}, - {""}, {""}, - {"numberOfEffectiveValues",1380}, - {"offsetAfterCentreLocalSection",1468}, - {"expandedOriginalScales",775}, - {""}, {""}, {""}, {""}, - {"listOfModelIdentifiers",1112}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"northLatitudeOfCluster",1325}, {""}, - {"defaultTypeOfLevel",663}, + {"predefined_grid",1660}, {""}, {""}, {""}, - {"missingValue",1279}, + {"doExtractDateTime",692}, + {"DyInMetres",45}, {""}, {""}, + {"groupSplittingMethodUsed",911}, + {""}, {""}, + {"julianForecastDay",1028}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"marsExperimentOffset",1198}, + {""}, + {"dayOfAnalysis",647}, + {""}, + {"minutesAfterDataCutoff",1278}, + {"internalVersion",981}, + {""}, {""}, + {"rectimeMinute",1751}, + {"dataRepresentationTemplateNumber",627}, + {""}, {""}, {""}, {"identificationOfProject",949}, {""}, - {"integerValues",980}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"tileClassification",2144}, - {"packingType",1538}, - {"additionalFlagPresent",293}, + {"productDefinitionTemplateNumberInternal",1697}, {""}, {""}, - {"orientationOfTheGridInDegrees",1524}, + {"grib3divider",893}, + {""}, {""}, + {"significanceOfReferenceTime",2019}, {""}, - {"typeOfPostProcessing",2208}, - {"param_value_min",1615}, - {""}, {""}, {""}, - {"numberOfDistinctSection4s",1373}, + {"marsLamModel",1205}, + {""}, {""}, + {"codedValues",549}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section9Pointer",1973}, + {"totalNumberOfdimensions",2183}, + {"windPresent",2342}, + {"deleteExtraLocalSection",669}, + {""}, {""}, + {"southLatitudeOfCluster",2041}, + {""}, {""}, + {"LaR",107}, + {"numberOfDataMatrices",1367}, + {""}, + {"eastLongitudeOfCluster",708}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"localDefNumberOne",1120}, + {"tileIndex",2151}, + {"projectionCenterFlag",1706}, + {"treatmentOfMissingData",2184}, + {""}, + {"laplacianScalingFactor",1039}, + {"LoR",126}, + {""}, {""}, + {"accumulationInterval",289}, + {"unitOfTimeIncrement",2243}, {""}, {""}, {""}, {""}, {""}, {""}, + {"totalNumberOfDirections",2174}, + {""}, {""}, {""}, {""}, {""}, + {"II",89}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"projectionCentreFlag",1707}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"typeOfTimeIncrement",2222}, + {""}, {""}, {""}, {""}, + {"distanceFromTubeToEnsembleMean",688}, + {""}, + {"extractSubsetList",820}, + {""}, + {"dateOfForecastRun",638}, + {"standardParallelInDegrees",2065}, + {""}, {""}, + {"totalNumberOfTubes",2181}, + {"lengthIncrementForTheGroupLengths",1084}, + {"sectionPosition",1981}, + {"referenceValue",1764}, + {""}, {""}, {""}, {""}, {""}, + {"ifsParam",952}, + {""}, + {"calendarIdentification",377}, + {""}, {""}, + {"standardParallel",2064}, + {""}, {""}, {""}, + {"defaultSequence",660}, + {"tablesVersion",2123}, + {""}, {""}, {""}, + {"thresholdIndicator",2141}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"westLongitudeOfCluster",2324}, + {"secondsOfReference",1931}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"typicalMinute",2230}, + {"radiusInMetres",1724}, + {""}, + {"floatVal",855}, + {"isConstant",992}, + {""}, + {"scaleFactorOfSecondFixedSurface",1870}, + {""}, {""}, {""}, + {"startStepInHours",2071}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"orientationOfTheGrid",1525}, + {""}, + {"probPoint",1688}, + {"subSetJ",2103}, + {""}, {""}, {""}, {""}, + {"dewPointTemperature",673}, + {""}, {""}, + {"productIdentifier",1698}, + {""}, {""}, {""}, + {"monthlyVerificationDate",1301}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfModels",1406}, + {"inputExtendedDelayedDescriptorReplicationFactor",968}, + {"faModelName",831}, + {"jIncrement",1024}, + {""}, {""}, + {"temperatureAndDewpointPresent",2129}, + {"numberOfAnalysis",1343}, + {"angleOfRotationInDegrees",304}, + {""}, {""}, {""}, {""}, {""}, + {"neitherPresent",1318}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"falseNorthing",834}, + {""}, {""}, {""}, + {"marsClass",1192}, + {"clusterIdentifier",527}, + {""}, {""}, + {"numberOfOctetsExtraDescriptors",1408}, + {""}, + {"totalNumberOfFrequencies",2176}, + {"stringValues",2093}, + {""}, + {"numberInTheAuxiliaryArray",1339}, + {""}, {""}, + {"angleOfRotationOfProjection",305}, + {""}, {""}, + {"normAtInitialTime",1323}, + {""}, {""}, {""}, + {"inputDataPresentIndicator",966}, + {"CDFstr",23}, + {""}, + {"indicatorOfUnitForTimeIncrement",963}, + {"listMembersUsed",1105}, + {"endOfFileAddress",741}, + {"groupLeafNodeK",908}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"monthlyVerificationTime",1303}, + {""}, + {"centuryOfReference",402}, + {"calendarIdentificationTemplateNumber",378}, + {""}, {""}, {""}, + {"rdbtimeMinute",1738}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"oneConstant",1504}, + {""}, {""}, {""}, {""}, + {"aerosolbinnumber",296}, + {""}, {""}, {""}, {""}, {""}, + {"extractAreaWestLongitude",796}, + {""}, + {"longitudeFirstInDegrees",1150}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"postAuxiliary",1653}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"lengthOfMessage",1088}, + {""}, {""}, {""}, {""}, + {"extractSubsetIntervalEnd",818}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"longitudeOfStretchingPole",1169}, + {""}, + {"lengthOfIndexTemplate",1087}, + {""}, {""}, + {"extractSubsetIntervalStart",819}, + {""}, {""}, {""}, {""}, + {"CDF",22}, + {""}, + {"orderOfSPD",1523}, + {""}, {""}, {""}, {""}, + {"numberOfEffectiveValues",1382}, + {"expandedOriginalWidths",776}, + {""}, + {"floatValues",856}, + {"expandedOriginalCodes",773}, + {""}, {""}, + {"forecastPeriod",860}, + {"windVariableDirection",2353}, + {""}, + {"projectLocalTemplate",1704}, + {""}, + {"originalParameterNumber",1528}, + {""}, {""}, {""}, {""}, {""}, + {"parameterCode",1620}, + {""}, {""}, + {"defaultParameter",659}, + {""}, {""}, {""}, + {"offsetAfterLocalSection",1472}, + {""}, + {"grib2divider",892}, + {""}, {""}, {""}, {""}, + {"nameOfFirstFixedSurface",1314}, + {"defaultTypeOfLevel",663}, + {"indicatorOfUnitForTimeRange",964}, + {""}, {""}, + {"easternLongitudeOfDomain",711}, + {""}, {""}, + {"tableReference",2120}, + {"orientationOfTheGridInDegrees",1526}, + {""}, {""}, {""}, {""}, + {"numberOfRemaininChars",1431}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"libraryVersion",1100}, + {"changeDecimalPrecision",410}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfDistinctSection7s",1378}, + {""}, {""}, {""}, {""}, {""}, + {"expandedOriginalScales",775}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"iScansNegatively",944}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"epsStatisticsPoint",764}, + {""}, {""}, {""}, {""}, {""}, + {"coordinate4Flag",585}, + {""}, {""}, {""}, {""}, + {"biFourierSubTruncationType",358}, + {"extendedFlag",785}, + {"predefined_grid_values",1661}, + {""}, {""}, + {"centralLongitude",394}, + {""}, {""}, + {"is_uerra",1012}, + {""}, + {"M",153}, + {"offsetAfterPadding",1473}, + {""}, {""}, + {"forecastPeriodTo",862}, + {"sizeOfOffsets",2028}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"listOfModelIdentifiers",1112}, + {""}, {""}, {""}, {""}, {""}, + {"typeOfFirstFixedSurface",2204}, + {""}, {""}, + {"_T",284}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"dayOfReference",651}, + {""}, + {"westernLongitudeOfDomain",2327}, + {""}, + {"totalNumberOfTileAttributePairs",2180}, + {""}, {""}, + {"observationGeneratingProcessIdentifier",1460}, + {"localDefNumberTwo",1121}, + {""}, {""}, + {"centralLongitudeInDegrees",395}, + {""}, {""}, {""}, {""}, {""}, + {"tileClassification",2150}, + {""}, {""}, + {"bitmapSectionPresent",364}, + {""}, {""}, + {"DjInDegrees",37}, + {"numberOfDistinctSection3s",1374}, + {"widthOfSPD",2330}, + {"short_name",2016}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"averagingPeriod",319}, + {""}, + {"subCentre",2094}, + {""}, {""}, + {"numberOfMissing",1402}, + {""}, {""}, + {"defaultFaModelName",657}, + {"meaningOfVerticalCoordinate",1263}, + {""}, {""}, {""}, + {"expandedAbbreviations",766}, + {""}, + {"tableCode",2118}, + {""}, {""}, {""}, {""}, {""}, + {"timeDomainTemplate",2154}, + {""}, + {"trueLengthOfLastGroup",2186}, + {""}, {""}, {""}, + {"verticalCoordinate",2307}, + {""}, {""}, {""}, {""}, + {"forecastPeriodFrom",861}, + {"climateDateTo",425}, + {"messageLength",1265}, + {""}, {""}, + {"nameOfSecondFixedSurface",1315}, + {"cnmc_isac",544}, + {""}, {""}, + {"clusteringMethod",541}, + {""}, + {"conceptsLocalMarsDirAll",561}, + {""}, {""}, {""}, {""}, + {"totalNumberOfForecastProbabilities",2175}, + {"bitMapIndicator",361}, + {"is_aerosol",1003}, + {""}, + {"offsetAfterCentreLocalSection",1470}, + {""}, + {"tiggeCentre",2142}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"targetCompressionRatio",2125}, + {"verticalCoordinateDefinition",2308}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfForecastsInEnsemble",1386}, + {"scaleFactorOfRadiusOfSphericalEarth",1869}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"_TS",285}, + {""}, {""}, {""}, {""}, + {"section_09",1990}, + {""}, {""}, + {"section_8",2000}, + {"scanningModeForOneDiamond",1908}, + {"paleontologicalOffset",1611}, + {""}, {""}, {""}, + {"Azi",15}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"parameterCategory",1619}, + {""}, {""}, + {"typicalDateTime",2227}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"referenceReflectivityForEchoTop",1761}, + {"cnmc_cmcc",543}, + {"local_use",1147}, + {""}, {""}, + {"constituentType",569}, + {""}, {""}, {""}, {""}, {""}, + {"typeOfSecondFixedSurface",2218}, + {""}, + {"xDirectionGridLength",2361}, + {"conceptsLocalDirECMF",560}, + {"gts_header",917}, + {""}, {""}, + {"section7",1967}, + {""}, + {"iDirectionIncrementInDegrees",942}, + {"numberOfModeOfDistribution",1405}, + {""}, {""}, {""}, + {"grib1divider",889}, + {""}, {""}, {""}, {""}, + {"is_chemical",1005}, + {"cfVarName",407}, + {""}, {""}, {""}, {""}, {""}, + {"section_08",1989}, + {""}, {""}, {""}, {""}, {""}, + {"is_efas",1007}, + {"DxInMetres",42}, + {""}, {""}, {""}, {""}, + {"coordinateIndexNumber",590}, + {""}, {""}, + {"startOfRange",2069}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"projectLocalTemplateNumber",1705}, + {""}, + {"endOfProduct",745}, + {"is_tigge",1011}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"tigge_name",2148}, + {""}, {""}, + {"numberOfVerticalPoints",1454}, + {"driverInformationBlockAddress",696}, + {""}, {""}, + {"expandedOriginalReferences",774}, + {"changingPrecision",415}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {"LyInMetres",152}, + {"numericValues",1456}, + {""}, {""}, {""}, {""}, + {"groupWidth",912}, {""}, {""}, - {"numberOfRemaininChars",1429}, + {"verticalVisibility",2311}, + {""}, + {"isotopeIdentificationNumber",1016}, + {"n3",1309}, + {""}, + {"extraValues",790}, + {""}, + {"isSatelliteType",1001}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section0Pointer",1931}, + {"scaleFactorOfDistanceFromEnsembleMean",1856}, + {""}, {""}, {""}, + {"numberOfVerticalCoordinateValues",1452}, + {""}, {""}, {""}, + {"centuryOfReferenceTimeOfData",403}, + {"reservedNeedNotBePresent",1776}, + {""}, {""}, {""}, + {"inputOriginatingCentre",969}, + {"listOfEnsembleForecastNumbers",1111}, + {"sp3",2048}, + {""}, {""}, {""}, {""}, {""}, + {"missingValue",1281}, + {""}, {""}, {""}, {""}, + {"integerValues",980}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfVerticalGridDescriptors",1453}, + {""}, + {"spare3",2054}, + {""}, {""}, {""}, + {"numberOfPartitions",1413}, + {""}, {""}, {""}, {""}, + {"simpleThinningMissingRadius",2020}, + {"forecastMonth",858}, + {""}, + {"numberOfMembersInCluster",1400}, {""}, {""}, + {"offsetSection10",1490}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"centralClusterDefinition",393}, + {"groupWidths",913}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"numberOfOctectsForNumberOfPoints",1407}, + {"efas_model",715}, + {"functionCode",873}, + {"doExtractSubsets",693}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"originatorLocalTemplate",1533}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"attributeOfTile",314}, + {""}, {""}, {""}, {""}, + {"latitudeOfStretchingPole",1062}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"totalNumberOfRepetitions",2179}, + {""}, + {"widthOfLengths",2329}, + {""}, {""}, + {"timeRangeIndicator",2162}, + {""}, {""}, {""}, {""}, + {"verificationMonth",2296}, + {""}, + {"latLonValues",1043}, + {"localNumberOfObservations",1137}, + {""}, {""}, {""}, + {"typeOfCompressionUsed",2200}, + {""}, {""}, {""}, {""}, {""}, + {"dayOfEndOfOverallTimeInterval",648}, + {""}, {""}, + {"secondsOfAnalysis",1930}, + {""}, {""}, {""}, + {"gts_ddhh00",916}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"lengthOfProjectLocalTemplate",1090}, + {""}, {""}, {""}, + {"earthMajorAxis",704}, + {""}, + {"totalNumberOfIterations",2178}, + {"Experiment_Identifier",56}, + {""}, {""}, {""}, + {"interpretationOfNumberOfPoints",983}, + {"LcyInMetres",121}, + {""}, {""}, {""}, + {"dirty_statistics",685}, + {""}, + {"subSetM",2105}, + {"numberOfDistinctSection4s",1375}, + {"conceptsMasterMarsDir",563}, + {""}, {"groupInternalNodeK",907}, + {""}, {""}, + {"frequencyNumber",871}, + {"modelVersionDate",1292}, + {""}, + {"extraDimensionPresent",787}, + {"LuyInMetres",148}, + {""}, {""}, {""}, + {"numberOfRows",1434}, + {""}, + {"scanPosition",1901}, + {""}, {""}, {""}, {""}, {""}, + {"reserved3",1775}, + {""}, {""}, + {"Dj",35}, + {"coordinate1Flag",577}, + {"numberOfDistinctSection6s",1377}, + {""}, {""}, {""}, {""}, + {"_anoffset",286}, + {""}, + {"qnhPresent",1715}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"implementationDateOfModelCycle",954}, + {""}, + {"doSimpleThinning",694}, + {"tablesVersionLatest",2124}, + {"coordinate3Flag",582}, + {""}, + {"typeOfIntervalForFirstAndSecondSize",2208}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"additionalFlagPresent",293}, + {""}, {""}, {""}, + {"centuryOfAnalysis",401}, + {""}, {""}, {""}, + {"monthOfAnalysis",1296}, + {"setCalendarId",2006}, + {""}, {""}, {""}, {""}, + {"classOfAnalysis",422}, + {""}, {""}, + {"modelVersionTime",1293}, + {""}, {""}, + {"is_chemical_distfn",1006}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"verifyingMonth",2298}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"numberOfMembersInEnsemble",1401}, + {""}, {""}, {""}, + {"consensusCount",565}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"typeOfPostProcessing",2214}, + {""}, {""}, {""}, {""}, {""}, + {"stepRangeInHours",2083}, + {""}, + {"numberOfChars",1354}, + {"numberInTheGridCoordinateList",1340}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"typeOfIntervalForFirstAndSecondWavelength",2209}, + {"versionNumOfRootGroupSymbolTableEntry",2301}, + {""}, + {"TIDE",231}, + {""}, + {"typeOfEnsembleMember",2203}, + {""}, + {"lengthOfTimeRange",1091}, + {""}, {""}, {""}, {""}, {""}, + {"section9Pointer",1976}, + {""}, + {"dateOfAnalysis",636}, + {""}, + {"scaleFactorAtReferencePoint",1854}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"timeOfAnalysis",2158}, + {""}, + {"section0Pointer",1934}, + {"param_value_min",1617}, + {""}, + {"lsdate_bug",1187}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"epsContinous",761}, + {"section8Pointer",1973}, + {""}, {""}, {""}, + {"sfc_levtype",2010}, + {""}, {""}, + {"earthMinorAxisInMetres",707}, + {""}, + {"timeRangeIndicatorFromStepRange",2163}, + {""}, {""}, + {"mAngleMultiplier",1189}, + {""}, {""}, {""}, + {"numberOfTimeRange",1442}, + {"startingAzimuth",2073}, + {""}, {""}, {""}, {""}, {""}, + {"md5Data",1237}, + {"section3Flags",1949}, + {""}, + {"longitudeOfStretchingPoleInDegrees",1170}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"complexPacking",553}, + {""}, + {"nosigPresent",1333}, + {""}, + {"qfePresent",1711}, + {""}, {""}, {""}, + {"longitudeOfIcosahedronPole",1160}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"yearOfAnalysis",2374}, + {"flagForIrregularGridCoordinateList",851}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"windDirectionTrend3",2335}, + {""}, {""}, {""}, + {"typeOfAnalysis",2197}, + {""}, {""}, {""}, {""}, + {"expandedCodes",767}, + {""}, {""}, {""}, + {"is_aerosol_optical",1004}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfLogicals",1399}, + {""}, {""}, {""}, + {"numberOfCharacters",1353}, + {""}, + {"averaging2Flag",318}, + {""}, {""}, {""}, {""}, + {"kurt",1033}, + {"windSpeedTrend3",2346}, + {""}, {""}, {""}, {""}, + {"secondDimensionCoordinateValueDefinition",1912}, + {"numberOfValues",1451}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"addExtraLocalSection",292}, + {""}, {""}, {""}, {""}, {""}, + {"endOfMessage",744}, + {""}, + {"correction4",604}, + {""}, + {"keyData",1029}, + {"numberOfMissingInStatisticalProcess",1403}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"timeDomainTemplateNumber",2155}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"isCorrection",993}, + {""}, {""}, + {"hourOfAnalysis",931}, + {"isEPS",994}, + {""}, + {"jDirectionIncrement",1020}, + {"probContinous",1687}, + {""}, + {"kurtosis",1034}, + {""}, {""}, {""}, {""}, + {"plusOneinOrdersOfSPD",1651}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"totalInitialConditions",2169}, + {""}, + {"secondaryMissingValue",1928}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"skewness",2032}, + {""}, {""}, {""}, {""}, + {"componentIndex",554}, + {"bitmapPresent",363}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"yDirectionGridLengthInMetres",2369}, + {""}, {""}, {""}, + {"coordinate4OfLastGridPoint",587}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"lengthOfOriginatorLocalTemplate",1089}, + {""}, {""}, {""}, + {"tigge_short_name",2149}, + {""}, + {"extractDateTimeYearStart",816}, + {""}, + {"keySat",1031}, + {"XRInMetres",267}, + {""}, + {"unknown",2255}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"sectionLengthLimitForEnsembles",1978}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"skew",2031}, + {"numberOfCategories",1352}, + {"typicalCentury",2225}, {""}, {""}, {""}, {""}, {"correction3",602}, {""}, - {"is_aerosol_optical",1004}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"md5TimeDomainSection",1251}, - {""}, {""}, - {"grib1divider",889}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"md5Section9",1251}, {""}, {""}, {""}, - {"lsdate_bug",1185}, - {""}, {""}, {""}, {""}, {""}, - {"extendedFlag",785}, - {""}, {""}, {""}, {""}, {""}, - {"verticalCoordinate",2297}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"simpleThinningMissingRadius",2017}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windVariableDirection",2343}, - {"frequencyNumber",871}, - {""}, {""}, {""}, - {"runwayDepositState4",1804}, - {""}, {""}, - {"LaR",107}, - {"qfePresent",1709}, - {""}, {""}, {""}, {""}, - {"numberOfPartitions",1411}, - {"oneConstant",1502}, - {"tableReference",2114}, - {""}, {""}, - {"complexPacking",553}, - {""}, {""}, - {"verticalCoordinateDefinition",2298}, - {""}, - {"numberOfOctectsForNumberOfPoints",1405}, - {"LoR",126}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"targetCompressionRatio",2119}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"centuryOfReferenceTimeOfData",403}, - {""}, {""}, {""}, - {"md5DataSection",1236}, - {""}, {""}, {""}, - {"numberOfMembersInCluster",1398}, - {""}, - {"longitudeOfIcosahedronPole",1158}, - {""}, - {"correction4Part",605}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"projectLocalTemplate",1702}, - {""}, {""}, - {"interpretationOfNumberOfPoints",983}, - {""}, {""}, {""}, {""}, {""}, - {"tiggeCentre",2136}, - {"subCentre",2088}, - {""}, {""}, - {"sampleSizeOfModelClimate",1846}, - {""}, {""}, - {"dataCategory",619}, - {""}, {""}, {""}, - {"numberOfOctetsExtraDescriptors",1406}, - {""}, {""}, - {"tableCode",2112}, - {"angleOfRotationInDegrees",304}, - {"expandedAbbreviations",766}, - {""}, - {"n2",1306}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"easternLongitudeOfDomain",711}, - {""}, {""}, {""}, - {"numberOfDistinctSection6s",1375}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfLastGridPointInDegrees",1160}, - {""}, - {"is_chemical_distfn",1006}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"sp2",2044}, - {""}, - {"modelVersionDate",1290}, - {""}, - {"longitudeOfNorthWestCornerOfArea",1161}, - {""}, - {"section8Pointer",1970}, - {""}, - {"verticalVisibility",2301}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"spare2",2049}, - {""}, {""}, - {"doExtractSubsets",693}, - {""}, - {"marsStream1",1215}, - {"latLonValues",1043}, - {""}, {""}, - {"lowerThreshold",1182}, - {""}, {""}, {""}, - {"expandedOriginalReferences",774}, - {""}, - {"centralLongitude",394}, - {""}, {""}, - {"offsetSection6",1494}, - {""}, {""}, - {"endDayTrend3",724}, - {""}, {""}, - {"n3",1307}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"totalNumberOfTileAttributePairs",2174}, - {""}, - {"LcyInMetres",121}, - {""}, {""}, {""}, - {"scanningModeForOneDiamond",1905}, - {"listOfEnsembleForecastNumbers",1111}, - {"latitudeOfFirstGridPoint",1051}, - {""}, {""}, {""}, {""}, - {"typeOfCompressionUsed",2194}, - {""}, - {"modelVersionTime",1291}, - {""}, {""}, {""}, - {"LuyInMetres",148}, - {""}, - {"correction1",598}, - {"totalNumberOfForecastProbabilities",2169}, - {"sp3",2045}, - {""}, - {"driverInformationBlockAddress",696}, - {""}, {""}, - {"centralLongitudeInDegrees",395}, - {""}, {""}, - {"reservedNeedNotBePresent",1774}, - {""}, {""}, {""}, {""}, - {"skew",2028}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle3",517}, - {""}, - {"xDirectionGridLengthInMetres",2352}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"decimalPrecision",653}, - {""}, {""}, {""}, {""}, - {"DjInDegrees",37}, - {""}, {""}, - {"numberOfVerticalPoints",1452}, - {""}, - {"subSetM",2099}, - {"verifyingMonth",2288}, - {""}, {""}, {""}, - {"dummy2",699}, - {""}, {""}, {""}, - {"runwaySideCodeState4",1844}, - {""}, - {"forecastMonth",858}, - {""}, {""}, {""}, - {"default_max_val",664}, - {""}, - {"functionCode",873}, - {""}, {""}, {""}, - {"secondsOfAnalysis",1927}, - {"typeOfIntervalForFirstAndSecondSize",2202}, - {"componentIndex",554}, - {""}, {""}, - {"localSectionPresent",1139}, - {""}, {""}, - {"isotopeIdentificationNumber",1016}, - {""}, {""}, {""}, - {"latitudeOfStretchingPole",1062}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"timeDomainTemplate",2148}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfVerticalCoordinateValues",1450}, - {"scaleFactorAtReferencePoint",1851}, - {"marsType2",1219}, - {""}, {""}, - {"climateDateTo",425}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"bitmapPresent",363}, - {""}, - {"instrumentType",975}, - {""}, {""}, {""}, {""}, - {"numberOfVerticalGridDescriptors",1451}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"averaging2Flag",318}, - {""}, - {"gribDataQualityChecks",894}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"earthMinorAxisInMetres",707}, - {"numberOfValues",1449}, - {""}, - {"reserved2",1772}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"consensusCount",565}, - {"xDirectionGridLengthInMillimetres",2353}, - {""}, {""}, - {"scaleFactorOfRadiusOfSphericalEarth",1866}, - {""}, - {"typeOfIntervalForFirstAndSecondWavelength",2203}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"predefined_grid_values",1659}, - {"verificationMonth",2286}, - {""}, {""}, {""}, - {"typicalDateTime",2221}, - {""}, {""}, {""}, - {"centuryOfAnalysis",401}, - {""}, {""}, - {"inputOriginatingCentre",969}, - {"secondDimensionCoordinateValueDefinition",1909}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"indexedStorageInternalNodeK",958}, - {""}, {""}, {""}, {""}, - {"parameterCategory",1617}, - {"nosigPresent",1331}, - {""}, {""}, - {"presentTrend4",1664}, - {""}, {""}, - {"angleOfRotationOfProjection",305}, - {"centreForTable2",400}, - {""}, {""}, {""}, - {"endDayTrend1",722}, - {""}, - {"plusOneinOrdersOfSPD",1649}, - {"scaleFactorOfLowerLimit",1862}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"reserved3",1773}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"numberOfMembersInEnsemble",1399}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"spatialProcessing",2050}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"isSatelliteType",1001}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"updateSequenceNumber",2256}, - {""}, - {"cloudsTitle1",507}, - {"isEPS",994}, - {"totalNumberOfIterations",2172}, - {""}, - {"setCalendarId",2003}, - {"epsContinous",761}, - {""}, {""}, {""}, {""}, - {"Lar2InDegrees",112}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"matrixOfValues",1232}, - {""}, {""}, - {"conceptsMasterMarsDir",563}, - {""}, - {"numberOfDistinctSection3s",1372}, - {""}, {""}, {""}, {""}, - {"Lor2InDegrees",144}, - {""}, {""}, {""}, {""}, {""}, - {"LxInMetres",150}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"coordinate1Start",578}, - {"westernLongitudeOfDomain",2317}, - {""}, - {"tigge_short_name",2143}, - {""}, {""}, {""}, - {"numberOfChars",1352}, - {"trueLengthOfLastGroup",2180}, - {""}, {""}, - {"boot_edition",367}, - {"heightOrPressureOfLevel",922}, - {""}, - {"groupWidth",912}, - {""}, {""}, {""}, - {"stepRangeInHours",2077}, - {""}, {""}, - {"X2",264}, - {""}, {""}, {""}, {""}, - {"P",206}, - {""}, - {"projectLocalTemplateNumber",1703}, - {"typeOfEnsembleMember",2197}, - {""}, {""}, {""}, {""}, - {"numberOfForecastsInEnsemble",1384}, - {"totalLength",2164}, - {""}, {""}, - {"originatorLocalTemplate",1531}, - {""}, {""}, {""}, {""}, {""}, - {"expandedCodes",767}, - {""}, {""}, {""}, {""}, - {"localNumberOfObservations",1136}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"backgroundProcess",323}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"centralClusterDefinition",393}, - {""}, {""}, {""}, - {"dayOfEndOfOverallTimeInterval",648}, - {""}, {""}, {""}, {""}, - {"cloudsTitle1Trend4",511}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"implementationDateOfModelCycle",954}, - {""}, - {"scaleFactorOfDistanceFromEnsembleMean",1853}, - {"extraLocalSectionPresent",789}, - {""}, {""}, {""}, {""}, - {"longitudeOfStretchingPoleInDegrees",1168}, - {"startOfRange",2063}, - {""}, {""}, - {"numberOfMissingInStatisticalProcess",1401}, - {""}, {""}, {""}, {""}, - {"messageLength",1263}, - {""}, {""}, - {"numberOfPoints",1412}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"addExtraLocalSection",292}, - {""}, {""}, {""}, {""}, {""}, - {"groupWidths",913}, - {""}, - {"standardParallelInMicrodegrees",2060}, - {"doSimpleThinning",694}, - {"paleontologicalOffset",1609}, - {"N2",171}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"is_s2s",1010}, - {""}, {""}, {""}, {""}, - {"forecastProbabilityNumber",863}, - {""}, - {"numberOfCharacters",1351}, - {"attributeOfTile",314}, - {"earthMajorAxis",704}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extraLocalSectionNumber",788}, - {""}, {""}, {""}, {""}, - {"isCorrection",993}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"tablesVersionLatest",2118}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"constituentType",569}, - {""}, {""}, {""}, - {"mAngleMultiplier",1187}, - {"local_padding",1144}, - {""}, {""}, - {"unitsBias",2240}, - {""}, - {"section4Padding",1953}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"probContinous",1685}, - {""}, - {"clusterMember10",529}, - {""}, {""}, - {"originalParameterTableNumber",1527}, + {"numberOfDataValues",1370}, {"extractedAreaNumberOfSubsets",821}, - {""}, {""}, {""}, {""}, {""}, - {"section2Present",1944}, + {"swapScanningLat",2110}, {""}, - {"LcxInMetres",119}, - {"totalInitialConditions",2163}, - {"XRInMetres",267}, - {""}, {""}, {""}, {""}, - {"coordinate3OfLastGridPoint",584}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"LuxInMetres",146}, - {""}, {""}, {""}, - {"typeOfAuxiliaryInformation",2192}, - {"cloudsTitle3Trend4",521}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"yearOfCentury",2365}, - {"endMinuteTrend4",736}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"timeRangeIndicator",2156}, + {"frequencyScalingFactor",872}, {""}, {""}, - {"timeCoordinateDefinition",2147}, + {"timeCoordinateDefinition",2153}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"secondLatitudeInDegrees",1915}, {""}, - {"clusterMember4",532}, + {"decimalPrecision",653}, + {"swapScanningLon",2111}, + {"LxInMetres",150}, + {""}, {""}, {""}, + {"gridCoordinate",898}, + {"versionNumberOfGribLocalTables",2304}, + {"runwayDepositState3",1806}, + {"numberOfForecastsInCluster",1385}, + {"minutesAfterReferenceTimeOfDataCutoff",1279}, + {""}, + {"localSectionPresent",1140}, + {""}, + {"md5Section8",1250}, + {"longitudeOfLastGridPoint",1161}, + {"offsetSection7",1497}, + {""}, + {"doExtractArea",691}, + {""}, {""}, {""}, {""}, + {"listOfContributingSpectralBands",1109}, + {"n2",1308}, + {"correction2Part",601}, + {"distinctLongitudes",690}, + {""}, {""}, {""}, + {"section9Length",1975}, + {"operationalForecastCluster",1518}, + {""}, {""}, + {"endDayTrend4",725}, + {""}, + {"default_max_val",664}, + {"coordAveraging0",571}, + {""}, {""}, {""}, {""}, {""}, + {"section0Length",1933}, + {"offsetAfterBitmap",1469}, + {""}, + {"significanceOfReferenceDateAndTime",2018}, + {""}, + {"typeOfAuxiliaryInformation",2198}, + {"northernLatitudeOfClusterDomain",1331}, + {""}, {""}, {""}, + {"scaledValueOfFirstSize",1885}, + {"yDirectionGridLengthInMillimetres",2370}, + {"sp2",2047}, + {""}, {""}, {""}, {""}, {""}, + {"coordAveragingTims",575}, + {""}, {""}, + {"section8Length",1972}, + {"runwaySideCodeState3",1846}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfStandardDeviation",1897}, + {""}, {""}, {""}, {""}, + {"spare2",2053}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extraLocalSectionPresent",789}, + {""}, + {"referenceValueError",1765}, + {""}, + {"scaledValueOfStandardDeviationInTheCluster",1898}, + {""}, {""}, + {"Lar2InDegrees",112}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"averaging1Flag",317}, {""}, - {"flagForIrregularGridCoordinateList",851}, - {""}, {""}, - {"LIMITS",99}, - {""}, {""}, - {"coordinate2Flag",580}, + {"md5DataSection",1238}, {""}, - {"totalNumberOfRepetitions",2173}, - {""}, {""}, - {"operationalForecastCluster",1516}, + {"southernLatitudeOfClusterDomain",2044}, {""}, - {"numberOfDataValues",1368}, + {"Lor2InDegrees",144}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"primaryBitmap",1682}, - {"reservedSection3",1777}, {""}, - {"secondLatitudeInDegrees",1912}, - {""}, - {"listOfContributingSpectralBands",1109}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"endOfMessage",744}, - {"referenceReflectivityForEchoTop",1759}, + {"stepUnits",2087}, + {"unitsConversionOffset",2247}, + {""}, {""}, {""}, {""}, + {"scaleValuesBy",1876}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"ijDirectionIncrementGiven",953}, + {"unitsBias",2246}, + {"cloudsTitle4",522}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfOriginalFieldValues",2206}, - {"gridCoordinate",898}, - {""}, {""}, - {"windSpeedTrend2",2335}, - {"windDirectionTrend2",2324}, - {""}, {""}, - {"md5Section6",1246}, + {"extraLocalSectionNumber",788}, {""}, - {"Experiment_Identifier",56}, - {""}, {""}, {""}, {""}, {""}, - {"offsetSection2",1490}, - {"isectionNumber2",1013}, - {"La2",104}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Lar2",111}, + {"longitudeOfFirstDiamondCenterLine",1155}, + {"endDayTrend3",724}, + {"longitudeOfFirstDiamondCentreLine",1156}, + {""}, {""}, {""}, {""}, + {"upperThreshold",2269}, {""}, {""}, {""}, - {"groupLengths",909}, - {"Latin2",116}, - {""}, - {"Lo2",125}, - {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfFirstSize",1882}, - {""}, {""}, {""}, - {"Lor2",143}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"section3Flags",1946}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"keyMore",1030}, - {"primaryMissingValue",1683}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"spatialProcessing",2056}, + {"selectStepTemplateInstant",2001}, + {"longitudeOfFirstDiamondCentreLineInDegrees",1157}, {""}, {""}, {""}, {""}, - {"azimuthalWidth",321}, - {""}, - {"timeDomainTemplateNumber",2149}, - {"windSpeedTrend3",2336}, - {"windDirectionTrend3",2325}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"tsectionNumber3",2183}, - {""}, - {"Lar1InDegrees",110}, - {"offsetSection3",1491}, - {"isectionNumber3",1014}, - {""}, {""}, {""}, - {"extractDateTimeYearStart",816}, - {""}, {""}, {""}, {""}, {""}, - {"frequencyScalingFactor",872}, - {""}, {""}, {""}, {""}, - {"Lor1InDegrees",142}, - {"timeRangeIndicatorFromStepRange",2157}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"LoVInDegrees",128}, + {"masterTablesVersionNumber",1226}, {""}, {""}, - {"beginDayTrend4",334}, + {"originatorLocalTemplateNumber",1534}, + {"updateSequenceNumber",2266}, {""}, {""}, - {"jDirectionIncrement",1020}, + {"indexedStorageInternalNodeK",958}, {""}, {""}, - {"numberIncludedInAverage",1339}, - {""}, {""}, - {"numberOfDataPoints",1366}, - {""}, {""}, {""}, - {"numberOfLogicals",1397}, - {"typicalCentury",2219}, - {""}, {""}, {""}, {""}, - {"TIDE",231}, - {""}, - {"subDefinitions2",2090}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfStandardDeviation",1894}, - {""}, - {"primaryMissingValueSubstitute",1684}, - {"latitudeOfFirstGridPointInDegrees",1052}, - {""}, - {"masterTablesVersionNumber",1224}, - {"legBaseDate",1079}, - {""}, {""}, {""}, {""}, - {"secondaryMissingValue",1925}, - {"latitudeOfIcosahedronPole",1053}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfStandardDeviationInTheCluster",1895}, - {"section4Pointer",1954}, - {""}, {""}, - {"scaledValueOfFirstFixedSurface",1881}, - {""}, {""}, {""}, {""}, - {"referenceValueError",1763}, - {""}, - {"La1InDegrees",103}, - {""}, - {"crraLocalVersion",613}, - {""}, {""}, - {"monthOfModelVersion",1297}, - {""}, - {"sp1",2043}, - {"gridPointPosition",905}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Lo1InDegrees",124}, - {""}, - {"numberOfColumns",1359}, - {"scanningMode4",1900}, {"extractDateTimeHourStart",803}, - {""}, {""}, {""}, {""}, {""}, - {"lengthOfTimeRange",1091}, - {""}, {""}, {""}, - {"latitudeOfCentralPointInClusterDomain",1048}, - {""}, - {"section10Pointer",1934}, - {""}, - {"runwayDepositState2",1802}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"biFourierCoefficients",351}, - {"legBaseTime",1080}, + {"DjInMetres",38}, {""}, {""}, - {"epsStatisticsContinous",763}, + {"dummy2",699}, + {""}, {""}, {""}, {""}, + {"yearOfCentury",2375}, + {"latitudeLongitudeValues",1047}, {""}, - {"correction4",604}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"section9Length",1972}, - {"mars_labeling",1220}, + {"windUnits",2348}, + {""}, + {"md5Structure",1252}, + {""}, {""}, {""}, {""}, {""}, + {"tsectionNumber3",2189}, + {"numberOfForecastsInTheCluster",1387}, + {"offsetSection3",1493}, + {""}, + {"isectionNumber3",1014}, + {""}, + {"Nj",195}, + {""}, + {"LcxInMetres",119}, + {""}, + {"extremeClockwiseWindDirection",823}, + {""}, {""}, {""}, {""}, {""}, + {"forecastProbabilityNumber",863}, + {""}, + {"heightOrPressureOfLevel",922}, {""}, {""}, {""}, - {"NP",183}, + {"originalParameterTableNumber",1529}, + {""}, {""}, + {"LuxInMetres",146}, + {"primaryMissingValue",1685}, + {""}, + {"matrixOfValues",1234}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"marsType2",1221}, + {""}, + {"totalNumberOfDataValuesMissingInStatisticalProcess",2173}, + {""}, {""}, + {"lowerThreshold",1184}, + {""}, {""}, {""}, {""}, + {"reserved2",1774}, + {""}, {""}, {""}, {""}, + {"primaryBitmap",1684}, + {""}, {""}, {""}, + {"scaledValueOfFirstFixedSurface",1884}, + {""}, {""}, {""}, {""}, + {"scaledValueOfSecondSize",1895}, + {"spare4",2055}, + {"cloudsTitle3",517}, + {""}, + {"biFourierCoefficients",351}, + {""}, {""}, + {"indicatorOfTypeOfLevel",962}, + {""}, {""}, {""}, {""}, {""}, + {"LoVInDegrees",128}, + {"packingType",1540}, + {"LIMITS",99}, + {""}, {""}, {""}, + {"latitudeWhereDxAndDyAreSpecified",1072}, + {"originatingCentreOfAnalysis",1532}, + {""}, + {"typeOfSizeInterval",2219}, + {""}, + {"sectionLengthLimitForProbability",1979}, + {""}, {""}, + {"referenceOfWidths",1760}, + {""}, + {"secondaryMissingValueSubstitute",1929}, + {"clusterMember10",529}, + {""}, {""}, {""}, {""}, + {"latitudeWhereDxAndDyAreSpecifiedInDegrees",1073}, {""}, {""}, {""}, {"latitudeOfStretchingPoleInDegrees",1063}, {""}, - {"numberOfForecastsInCluster",1383}, - {"scaledValueOfSecondSize",1892}, - {"section0Length",1930}, - {""}, {""}, {""}, - {"widthOfLengths",2319}, - {""}, - {"section1",1932}, - {""}, - {"table2Version",2111}, - {""}, - {"minutesAfterReferenceTimeOfDataCutoff",1277}, - {""}, - {"cloudsTitle1Trend2",509}, + {"instrumentType",975}, {""}, {""}, - {"secondOfModelVersion",1915}, - {""}, {""}, - {"minuteOfModelVersion",1274}, - {""}, {""}, {""}, {""}, - {"halfByte",918}, - {""}, {""}, - {"scaleValuesBy",1873}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windVariableDirectionTrend4",2347}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayDepositState3",1803}, - {"Dj",35}, - {"clusterMember6",534}, - {""}, {""}, {""}, {""}, - {"cloudsTitle1Trend3",510}, + {"standardParallelInMicrodegrees",2066}, + {""}, + {"section4",1954}, {""}, {""}, {""}, {""}, {""}, - {"marsStream2",1216}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"distinctLongitudes",690}, - {"resolutionAndComponentFlags",1779}, - {"listMembersMissing",1101}, - {"SecondOfModelVersion",224}, - {"dummy1",698}, - {""}, - {"numberOfCategories",1350}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"doExtractArea",691}, + {"monthOfEndOfOverallTimeInterval",1297}, {""}, {""}, {""}, {""}, {""}, - {"matchAerosolPacking",1227}, - {"originatorLocalTemplateNumber",1532}, + {"qualityControl",1717}, {""}, {""}, {""}, - {"significanceOfReferenceDateAndTime",2015}, - {""}, - {"param_value_max",1614}, - {""}, {""}, - {"lengthOfOriginatorLocalTemplate",1089}, + {"numberOfColumns",1361}, {""}, {""}, {""}, - {"extremeClockwiseWindDirection",823}, - {"section6Pointer",1962}, - {""}, - {"correction2",600}, - {""}, {""}, - {"coordinate4Flag",585}, - {"firstMonthUsedToBuildClimateMonth2",847}, - {"default_min_val",665}, - {""}, {""}, {""}, - {"numberOfTimeRange",1440}, - {"marsType1",1218}, - {"is_ocean2d_param",1008}, - {""}, - {"shortNameECMF",2011}, - {"northernLatitudeOfClusterDomain",1329}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"section_10",1989}, - {"longitudeOfFirstDiamondCenterLine",1153}, - {""}, - {"longitudeOfFirstDiamondCentreLine",1154}, - {"twoOrdersOfSPD",2189}, + {"yearOfEndOfOverallTimeInterval",2376}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfPoints",1414}, + {""}, {""}, {""}, {""}, {""}, + {"epsStatisticsContinous",763}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfFirstDiamondCentreLineInDegrees",1155}, {""}, {""}, - {"section2Padding",1942}, - {"offsetAfterBitmap",1467}, + {"dataCategory",619}, {""}, - {"typeOfCalendar",2193}, - {"g1conceptsMasterDir",876}, + {"primaryMissingValueSubstitute",1686}, {""}, {""}, {""}, - {"coordinateFlag2",589}, - {""}, {""}, {""}, - {"is_ocean3d_param",1009}, - {""}, {""}, {""}, - {"DjInMetres",38}, + {"section6",1963}, {""}, {""}, {""}, {""}, - {"selectStepTemplateInstant",1998}, + {"boot_edition",367}, + {""}, {""}, {""}, {""}, {""}, + {"md5TimeDomainSection",1253}, + {""}, {""}, + {"Lar1InDegrees",110}, + {""}, {""}, {""}, + {"numberOfDataPoints",1368}, + {"pressureUnits",1683}, + {""}, {""}, {""}, {""}, + {"section1Flags",1940}, + {""}, {""}, + {"monthlyVerificationMonth",1302}, + {""}, {""}, + {"resolutionAndComponentFlags",1781}, + {"Lor1InDegrees",142}, {""}, - {"unpackedError",2251}, - {""}, - {"reserved1",1771}, - {""}, - {"ijDirectionIncrementGiven",953}, + {"numberIncludedInAverage",1341}, + {"iScansPositively",945}, + {""}, {""}, {""}, {""}, {""}, + {"legBaseDate",1079}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeWhereDxAndDyAreSpecified",1072}, - {"southernLatitudeOfClusterDomain",2041}, - {""}, - {"section3Padding",1948}, - {""}, {""}, - {"numberOfForecastsInTheCluster",1385}, - {""}, - {"section8Length",1969}, - {""}, - {"section_4",1993}, - {""}, - {"flagForAnyFurtherInformation",850}, - {""}, {""}, - {"cloudsTitle3Trend2",519}, - {"latitudeWhereDxAndDyAreSpecifiedInDegrees",1073}, - {""}, - {"endDayTrend4",725}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"monthlyVerificationMonth",1300}, - {""}, {""}, {""}, - {"probabilityType",1688}, - {"runwaySideCodeState2",1842}, - {""}, {""}, {""}, - {"section_04",1982}, - {""}, {""}, {""}, {""}, - {"section1Flags",1937}, - {""}, - {"secondaryBitmap",1920}, - {""}, {""}, - {"probabilityTypeName",1689}, - {"section10Length",1933}, - {"latitudeLongitudeValues",1047}, - {""}, - {"cloudsTitle3Trend3",520}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"formatVersionMajorNumber",867}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"missingValueManagement",1280}, - {""}, {""}, {""}, {""}, - {"PLPresent",209}, - {"cloudsTitle4",522}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"swapScanningLat",2104}, - {""}, {""}, {""}, - {"sizeOfLength",2024}, - {"sectionLengthLimitForEnsembles",1975}, - {""}, {""}, {""}, {""}, - {"unitsConversionOffset",2241}, {"bufrdcExpandedDescriptors",375}, - {"thisMarsClass",2129}, - {""}, {""}, - {"swapScanningLon",2105}, - {""}, {""}, {""}, {""}, {""}, - {"inputProcessIdentifier",971}, - {"secondaryBitmapPresent",1921}, - {"versionNumOfRootGroupSymbolTableEntry",2291}, - {"runwaySideCodeState3",1843}, + {""}, + {"centreForTable2",400}, + {""}, + {"secondOrderOfDifferentWidth",1920}, {""}, {""}, {""}, - {"numberOfDistinctSection5s",1374}, + {"hourOfEndOfOverallTimeInterval",932}, + {"swapScanningX",2112}, + {""}, + {"crraLocalVersion",613}, + {""}, {""}, {""}, + {"scaledValueOfDistributionFunctionParameter",1881}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"packingError",1537}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"NV",188}, - {"scanningMode6",1902}, + {"sampleSizeOfModelClimate",1849}, + {"La1InDegrees",103}, + {"reservedSection4",1780}, + {""}, {""}, {""}, {""}, + {"secondaryBitmap",1923}, + {""}, + {"latitudeOfCentralPointInClusterDomain",1048}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Lo1InDegrees",124}, {""}, {""}, {""}, - {"md5Product",1239}, - {""}, {""}, - {"endDayTrend2",723}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"qualityControl",1715}, - {""}, - {"expandBy",765}, - {""}, - {"monthOfEndOfOverallTimeInterval",1295}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeOfSouthernPole",1060}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"coordAveraging0",571}, - {""}, {""}, - {"X1",262}, - {""}, {"WMO",259}, - {""}, {""}, - {"numberOfComponents",1360}, - {""}, {""}, - {"presentTrend2",1662}, + {""}, + {"fileConsistencyFlags",840}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"coordinate1Start",578}, + {"selectStepTemplateInterval",2002}, + {""}, + {"legBaseTime",1080}, {""}, {""}, {""}, {""}, {""}, {""}, - {"swapScanningX",2106}, - {"scaledValueOfDistributionFunctionParameter",1878}, + {"windDirectionTrend2",2334}, + {"coordinate3OfLastGridPoint",584}, + {""}, {""}, {""}, + {"matchAerosolPacking",1229}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"typeOfOriginalFieldValues",2212}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"monthOfModelVersion",1299}, + {"thisMarsClass",2135}, + {""}, {""}, + {"windSpeedTrend2",2345}, + {"typeOfCalendar",2199}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"shapeOfVerificationArea",2012}, + {""}, + {"stepForClustering",2079}, + {"windVariableDirectionTrend3",2356}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"P",206}, + {""}, + {"secondaryBitmapPresent",1924}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle2",512}, + {"resolutionAndComponentFlags8",1788}, + {""}, {""}, {""}, {""}, + {"reservedSection3",1779}, + {"normAtFinalTime",1322}, + {""}, + {"marsStream1",1217}, + {""}, {""}, {""}, + {"observationType",1461}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"flagShowingPostAuxiliaryArrayInUse",853}, + {"correction1",598}, + {"radiusOfCentralCluster",1725}, + {""}, {""}, {""}, + {"secondOfModelVersion",1918}, + {""}, {""}, + {"minuteOfModelVersion",1276}, + {""}, {""}, + {"halfByte",918}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"flagForAnyFurtherInformation",850}, + {""}, {""}, {""}, {""}, {""}, + {"secondaryBitmaps",1925}, + {"xDirectionGridLengthInMetres",2362}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"local_padding",1146}, + {"X2",264}, + {""}, {""}, {""}, {""}, {""}, + {"spaceUnitFlag",2049}, + {"sp1",2046}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"table2Version",2117}, + {""}, {""}, {""}, + {"numberOfComponents",1362}, + {""}, {""}, {""}, {""}, {""}, + {"longitudeOfNorthWestCornerOfArea",1163}, + {"spare1",2052}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"spatialSmoothingOfProduct",2057}, + {"listMembersMissing",1101}, + {""}, + {"gribDataQualityChecks",894}, + {""}, {""}, + {"secondaryBitmapsCount",1926}, + {""}, {""}, {""}, + {"SecondOfModelVersion",224}, + {"N2",171}, + {"windDirectionTrend4",2336}, + {""}, {""}, {""}, + {"AA",6}, + {"centralLongitudeInMicrodegrees",396}, + {""}, {""}, {""}, {""}, + {"section2Present",1947}, + {""}, {""}, {""}, {""}, {""}, + {"section1",1935}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfClusters",1357}, + {"presentTrend3",1665}, + {""}, + {"runwayDepositState2",1805}, + {""}, {""}, + {"section3Padding",1951}, + {""}, {""}, {""}, {""}, + {"windSpeedTrend4",2347}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"isHindcast",997}, + {""}, {""}, {""}, {""}, + {"xDirectionGridLengthInMillimetres",2363}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"secondOfEndOfOverallTimeInterval",1916}, + {""}, {""}, + {"minuteOfEndOfOverallTimeInterval",1274}, + {"scaledValueOfSecondFixedSurface",1894}, + {""}, + {"dummy1",698}, + {""}, {""}, + {"runwaySideCodeState2",1845}, + {"endDayTrend1",722}, + {""}, {""}, {""}, + {"scaleFactorOfLowerLimit",1865}, + {""}, + {"La2",104}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Lar2",111}, + {""}, {""}, {""}, {""}, + {"Latin2",116}, + {""}, + {"Lo2",125}, + {""}, {""}, + {"twoOrdersOfSPD",2195}, + {""}, {""}, {""}, {""}, {""}, + {"BufrTemplate",20}, + {"Lor2",143}, + {"backgroundProcess",323}, + {""}, + {"numberOfRepresentativeMember",1432}, + {""}, {""}, {""}, {""}, + {"falseEasting",833}, + {""}, {""}, {""}, + {"unitOfTimeRange",2244}, + {""}, {""}, {""}, + {"marsType1",1220}, + {""}, {""}, {""}, + {"section10Length",1936}, + {""}, {""}, {""}, {""}, {""}, + {"reserved1",1773}, + {"missingValueManagement",1282}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"subDefinitions2",2096}, + {""}, {""}, {""}, {""}, + {"dateSSTFieldUsed",643}, + {""}, {""}, {""}, {""}, {""}, + {"NUT",187}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsTitle4Trend3",525}, + {"shortNameECMF",2014}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"formatVersionMajorNumber",867}, + {"gridDescriptionSectionPresent",903}, + {""}, + {"mars_labeling",1222}, + {""}, {""}, {""}, + {"longitudeOfLastGridPointInDegrees",1162}, + {"totalLength",2170}, + {""}, {""}, {""}, + {"cloudsTitle1",507}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"is_s2s",1010}, + {"windVariableDirectionTrend2",2355}, + {"NV",188}, + {""}, {""}, + {"rectimeHour",1750}, + {""}, {""}, + {"runwayDepositState4",1807}, {""}, {""}, {""}, - {"yearOfEndOfOverallTimeInterval",2366}, - {"numberOfClusters",1355}, {"Yo",279}, {""}, {""}, {""}, {"Yp",280}, - {""}, {""}, {""}, - {"scaledValueOfSecondFixedSurface",1891}, {""}, - {"BOX",17}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"secondaryBitmaps",1922}, - {"radiusOfCentralCluster",1723}, + {"offsetSection2",1492}, + {"runwayDesignatorState3",1822}, + {"isectionNumber2",1013}, + {""}, {""}, {""}, {""}, + {"section10Pointer",1937}, + {""}, {""}, {""}, {""}, + {"clusterMember7",535}, {""}, {""}, {""}, - {"gridDescriptionSectionPresent",903}, + {"masterTablesVersionNumberLatest",1227}, + {"jDirectionIncrementInDegrees",1023}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"latitudeOfFirstGridPoint",1051}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"totalNumberOfDataValuesMissingInStatisticalProcess",2167}, - {""}, {""}, - {"coordAveragingTims",575}, - {""}, - {"presentTrend3",1663}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"backgroundGeneratingProcessIdentifier",322}, - {""}, - {"secondaryMissingValueSubstitute",1926}, + {"runwaySideCodeState4",1847}, {""}, {""}, {""}, {""}, {""}, - {"typicalMonth",2225}, + {"localHour",1128}, {""}, {""}, {""}, - {"section2Pointer",1943}, + {"longitudeOfReferencePoint",1164}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"is_ocean3d_param",1009}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"N1",170}, - {""}, {""}, {""}, {""}, {""}, - {"hourOfEndOfOverallTimeInterval",932}, {""}, - {"cloudsTitle1Trend1",508}, - {"secondaryBitmapsCount",1923}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"resolutionAndComponentFlags8",1786}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"fileConsistencyFlags",840}, + {"windVariableDirectionTrend4",2357}, {""}, - {"section3Pointer",1949}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"selectStepTemplateInterval",1999}, - {""}, - {"rangeBinSpacing",1727}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"codedNumberOfFirstOrderPackedValues",547}, - {""}, - {"isHindcast",997}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"BufrTemplate",20}, - {""}, - {"directionOfVariation",683}, + {"rangeBinSpacing",1729}, {""}, {""}, {""}, {""}, - {"offsetEndSection4",1481}, - {""}, {""}, - {"originatingCentreOfAnalysis",1530}, - {""}, {""}, - {"offsetBeforeData",1477}, - {"section_6",1995}, + {"gridPointPosition",905}, {""}, {""}, + {"scaleFactorOfSecondWavelength",1872}, + {""}, + {"tiggeLAMName",2143}, + {""}, + {"expandBy",765}, {"LoV",127}, - {""}, {""}, {""}, {""}, {""}, - {"productionStatusOfProcessedData",1698}, - {""}, - {"stepForClustering",2073}, - {""}, - {"shapeOfVerificationArea",2009}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"NrInRadiusOfEarth",197}, {""}, {""}, - {"efas_post_proc",716}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windVariableDirectionTrend2",2345}, + {"g1conceptsMasterDir",876}, {""}, - {"firstMonthUsedToBuildClimateMonth1",846}, - {"parametersVersion",1625}, + {"productionStatusOfProcessedData",1700}, {""}, {""}, - {"section_06",1984}, + {"biFourierResolutionParameterN",355}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"localYear",1143}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"subLocalDefinition2",2092}, - {""}, {""}, {""}, {""}, {""}, - {"typeOfPreProcessing",2209}, - {"Nj",195}, + {"azimuthalWidth",321}, {""}, {""}, - {"section1Padding",1939}, + {"scaleFactorOfFirstWavelength",1862}, + {""}, {""}, {""}, + {"typicalHour",2229}, + {"probabilityType",1690}, {""}, {""}, - {"windVariableDirectionTrend3",2346}, + {"versionOfModelClimate",2306}, + {""}, {""}, {""}, {""}, + {"firstMonthUsedToBuildClimateMonth2",847}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"section2Padding",1945}, + {""}, {""}, {""}, {""}, + {"numberOfDistinctSection5s",1376}, + {"windDirectionTrend1",2333}, + {"expandedUnits",778}, + {""}, {""}, + {"NRj",185}, + {""}, {""}, {""}, + {"default_min_val",665}, {""}, {""}, {""}, {""}, {""}, {""}, - {"localExtensionPadding",1124}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"spatialSmoothingOfProduct",2051}, - {""}, {""}, {""}, - {"secondaryBitmapsSize",1924}, + {"latitudeOfNorthWestCornerOfArea",1056}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"coordinate2Flag",580}, + {"parametersVersion",1627}, + {"tsectionNumber4",2190}, {""}, - {"indicatorOfTypeOfLevel",962}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle3Trend1",518}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typicalYear",2228}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"rectimeHour",1748}, + {"offsetSection4",1494}, + {"scanningMode7",1906}, + {"isectionNumber4",1015}, + {"deleteCalendarId",668}, + {"windSpeedTrend1",2344}, + {""}, + {"probabilityTypeName",1691}, {""}, {""}, - {"windSpeedTrend1",2334}, - {"windDirectionTrend1",2323}, - {""}, {""}, {""}, - {"percentileValue",1638}, - {"patch_precip_fp",1634}, - {""}, {""}, {""}, {""}, - {"endMonthTrend4",740}, - {"offsetSection1",1487}, - {"masterTablesVersionNumberLatest",1225}, - {"La1",102}, - {""}, {""}, {""}, {""}, {""}, - {"upperThresholdValue",2260}, - {""}, {""}, {""}, - {"Lar1",109}, - {""}, {""}, {""}, - {"numberOfDistinctSection7s",1376}, - {"Latin1",114}, - {"rdbtimeMonth",1737}, - {"Lo1",123}, - {""}, {""}, - {"unpackedSubsetPrecision",2252}, - {""}, - {"default_step_units",666}, - {""}, {""}, {""}, {""}, - {"Lor1",141}, - {""}, {""}, {""}, {""}, - {"versionOfModelClimate",2296}, - {""}, - {"runwayDesignatorState4",1820}, - {"secondOrderOfDifferentWidth",1917}, - {"stepUnits",2081}, - {""}, {""}, {""}, {""}, {""}, - {"offsetBSection9",1475}, - {""}, - {"numberOfPackedValues",1408}, - {"sectionLengthLimitForProbability",1976}, - {""}, {""}, {""}, - {"localHour",1127}, - {""}, {""}, {""}, - {"endMinuteTrend2",734}, - {""}, {""}, {""}, - {"centralLongitudeInMicrodegrees",396}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"clusterMember2",530}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfSubSatellitePoint",1169}, - {"variationOfVisibility",2273}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"variationOfVisibilityDirection",2274}, - {""}, - {"observationType",1459}, - {""}, {""}, {""}, - {"longitudeOfSubSatellitePointInDegrees",1170}, - {""}, {""}, {""}, - {"variationOfVisibilityDirectionAngle",2275}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"missingValuesPresent",1282}, - {"secondOfEndOfOverallTimeInterval",1913}, - {"numberOfRepresentativeMember",1430}, - {""}, - {"minuteOfEndOfOverallTimeInterval",1272}, - {"oceanAtmosphereCoupling",1462}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"packedValues",1536}, - {""}, {""}, {""}, {""}, - {"typicalHour",2223}, - {""}, {""}, {""}, {"endMinuteTrend3",735}, - {""}, - {"subDefinitions1",2089}, + {"sphericalHarmonics",2062}, + {"localYear",1145}, + {""}, {""}, + {"clusterMember3",531}, {""}, {""}, {""}, {"constantFieldHalfByte",568}, - {"_numberOfValues",288}, - {""}, {""}, - {"mask",1221}, {""}, - {"clusterMember3",531}, + {"thisExperimentVersionNumber",2134}, + {"localExtensionPadding",1125}, + {""}, {""}, + {"codedNumberOfFirstOrderPackedValues",547}, + {""}, {""}, + {"inputProcessIdentifier",971}, + {""}, + {"offsetBSection9",1477}, + {""}, {""}, {""}, + {"numberOfBits",1344}, + {"section7Pointer",1969}, + {""}, {""}, {""}, {""}, + {"extractDateTimeYearEnd",814}, + {""}, + {"groupLengths",909}, + {"alternativeRowScanning",298}, + {""}, {""}, + {"directionOfVariation",683}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"tiggeLAMName",2137}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"localLatitude2",1130}, + {"offsetSection6",1496}, + {"rdbtimeHour",1737}, {""}, - {"deleteCalendarId",668}, - {""}, {""}, {""}, - {"reservedSection4",1778}, - {"P2",208}, - {""}, {""}, {""}, {""}, {""}, - {"latitudeOfNorthWestCornerOfArea",1056}, - {""}, {""}, {""}, {""}, - {"visibilityInKilometresTrend4",2307}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"southEastLongitudeOfVerficationArea",2037}, - {"sphericalHarmonics",2056}, - {"pack",1535}, - {""}, {""}, {""}, {""}, - {"coordinate2Start",581}, - {"extractAreaNorthLatitude",794}, - {"normAtFinalTime",1320}, - {""}, - {"biFourierResolutionParameterN",355}, - {""}, {""}, {""}, {""}, - {"runwayDepositState1",1801}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"bitsPerValue",365}, + {"beginDayTrend3",333}, + {"section4Padding",1956}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"_leg_number",287}, - {""}, - {"scaleFactorOfLengthOfSemiMinorAxis",1861}, - {""}, {""}, {""}, {""}, - {"jScansPositively",1026}, - {"rdbtimeYear",1740}, - {""}, {""}, - {"section1Pointer",1940}, - {""}, - {"modelErrorType",1287}, - {""}, {""}, - {"ls_labeling",1184}, - {""}, {""}, {""}, {""}, - {"typeOfHorizontalLine",2201}, - {""}, {""}, {""}, {""}, - {"jDirectionIncrementInDegrees",1023}, - {""}, {""}, {""}, {""}, {""}, - {"beginDayTrend2",332}, - {""}, {""}, {""}, {""}, {""}, - {"unpack",2250}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfBits",1342}, - {""}, {""}, {""}, {""}, - {"cloudsTitle2Trend4",516}, + {"dataSubCategory",631}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"qnhAPresent",1714}, + {"windVariableDirectionTrend1",2354}, {""}, {""}, {""}, - {"qnhAPresent",1712}, - {"section5",1956}, - {"preProcessingParameter",1655}, - {""}, {""}, {""}, {""}, - {"reservedSection2",1776}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"thisExperimentVersionNumber",2128}, + {"offsetBeforeData",1479}, + {"coordinateFlag2",589}, + {""}, {""}, {""}, + {"scaledValueOfRadiusOfSphericalEarth",1893}, + {"typicalYear",2234}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"X1",262}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"percentileValue",1640}, + {"cloudsTitle4Trend2",524}, {""}, - {"numberOfDaysInClimateSamplingWindow",1369}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"marsKeywords1",1202}, - {""}, {""}, + {"numberOfDataBinsAlongRadials",1366}, + {""}, + {"NP",183}, {"biFourierResolutionSubSetParameterN",357}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"beginDayTrend3",333}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"numberOfDataBinsAlongRadials",1364}, - {""}, {""}, - {"windVariableDirectionTrend1",2344}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"rdb_key",1731}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"firstOrderValues",848}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Model_Identifier",166}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"rdbtimeHour",1735}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"dayOfTheYearDate",652}, - {"coordinateFlag1",588}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"startOfHeaders",2061}, - {""}, {""}, {""}, {""}, - {"section4Length",1952}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"secondOrderValuesDifferentWidths",1918}, - {""}, - {"lowerThresholdValue",1183}, - {""}, {""}, - {"longitudeOfSouthEastCornerOfArea",1164}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windUnits",2338}, - {"runwayFrictionCoefficientState4",1840}, - {"cloudsAbbreviation4",442}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"unpackedValues",2253}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwaySideCodeState1",1841}, + {"section3Pointer",1952}, {""}, {""}, {""}, {""}, {""}, {""}, - {"flagShowingPostAuxiliaryArrayInUse",853}, - {"falseEasting",833}, - {""}, {""}, {""}, - {"grib2LocalSectionPresent",891}, - {""}, {""}, - {"AA",6}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"yCoordinateOfOriginOfSectorImage",2356}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"latitudeOfSouthernPoleInDegrees",1061}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"firstDimensionCoordinateValueDefinition",842}, - {""}, {""}, - {"marsGrid",1199}, - {""}, {""}, {""}, - {"scaleFactorOfPrimeMeridianOffset",1865}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfLengthOfSemiMinorAxis",1864}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"grib2LocalSectionNumber",890}, + {"qnhUnits",1716}, + {"southEastLongitudeOfVerficationArea",2040}, + {""}, + {"param_value_max",1616}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"Ensemble_Identifier",52}, - {""}, - {"shapeOfTheEarth",2008}, - {""}, - {"Latin2InDegrees",117}, + {"N1",170}, + {""}, {""}, + {"runwayDesignatorState2",1821}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unitsConversionScaleFactor",2242}, - {""}, - {"subLocalDefinitionNumber2",2096}, + {"numberOfUnexpandedDescriptors",1444}, {""}, {""}, {""}, - {"spaceUnitFlag",2046}, - {""}, {""}, - {"scaleFactorOfSecondWavelength",1869}, - {""}, {""}, {""}, - {"md5Section5",1245}, - {""}, {""}, - {"section_2",1991}, - {""}, {""}, - {"runwayDesignatorState2",1818}, - {""}, {""}, {""}, {""}, - {"cavokOrVisibility",382}, - {""}, {""}, {""}, - {"formatVersionMinorNumber",868}, - {""}, {""}, - {"section6Length",1961}, + {"typeOfHorizontalLine",2207}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"md5Section10",1241}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"section_02",1980}, - {""}, {""}, - {"localLongitude2",1133}, - {"presentTrend1",1661}, - {"P_INST",212}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayDesignatorState3",1819}, - {"GTSstr",80}, + {"latitudeOfSouthernPole",1060}, {""}, {""}, {""}, - {"experimentVersionNumber",779}, - {"pressureUnits",1681}, - {"compressedData",555}, + {"runwayDepositState1",1804}, + {""}, + {"parameterUnits",1625}, + {"dateOfSSTFieldUsed",642}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"remarkPresent",1765}, - {""}, {""}, {""}, - {"unitOfTimeRange",2238}, - {"GTS",79}, + {""}, {""}, {""}, {""}, + {"rdbtimeYear",1742}, {""}, - {"scaleFactorOfFirstWavelength",1859}, - {"scaledValueOfRadiusOfSphericalEarth",1890}, - {""}, {""}, - {"section_3",1992}, - {""}, {""}, {""}, {""}, - {"NUT",187}, - {""}, {""}, {""}, {""}, - {"listMembersUsed3",1107}, - {""}, {""}, {""}, {""}, {""}, - {"lengthOfHeaders",1086}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"coordinate4OfLastGridPoint",587}, - {""}, {""}, {""}, - {"realPartOf00",1742}, - {"numberMissingFromAveragesOrAccumulations",1340}, - {"section_03",1981}, - {""}, - {"MonthOfModelVersion",168}, - {""}, {""}, {""}, {""}, - {"firstDimensionPhysicalSignificance",843}, - {"numberOfPointsInDomain",1423}, {"cloudsTitle4Trend4",526}, - {""}, {""}, {""}, {""}, - {"kindOfProduct",1032}, - {"DiGiven",32}, - {""}, {""}, - {"dateSSTFieldUsed",643}, - {""}, {""}, - {"scaledValueOfLowerLimit",1886}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"southPoleOnProjectionPlane",2040}, + {""}, {""}, + {"unpackedError",2257}, {""}, {""}, {""}, {""}, - {"listOfParametersUsedForClustering",1113}, + {"keyMore",1030}, + {"yCoordinateOfOriginOfSectorImage",2366}, + {""}, {""}, {""}, + {"is_ocean2d_param",1008}, + {""}, {""}, {""}, {""}, + {"ls_labeling",1186}, + {"BOX",17}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section5Pointer",1958}, - {"totalNumberOfValuesInUnpackedSubset",2176}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"earthMajorAxisInMetres",705}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"md5Section3",1243}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeYearEnd",814}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"MinuteOfModelVersion",157}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"md5Section7",1247}, - {"localTablesVersion",1140}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"dataSubCategory",631}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfReferencePoint",1162}, + {"firstMonthUsedToBuildClimateMonth1",846}, {""}, {""}, - {"numberOfCoordinatesValues",1363}, - {""}, {""}, - {"subLocalDefinitionLength2",2094}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle2Trend2",514}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwaySideCodeState1",1844}, {""}, - {"reducedGrid",1751}, - {""}, {""}, {""}, - {"changeIndicatorTrend4",414}, + {"variationOfVisibility",2283}, + {""}, {""}, + {"PLPresent",209}, + {""}, + {"La1",102}, + {"section1Padding",1942}, + {""}, + {"variationOfVisibilityDirection",2284}, + {""}, {""}, + {"runwayDesignatorState4",1823}, + {""}, + {"scaledValueOfDistanceFromEnsembleMean",1880}, + {"runwayFrictionCoefficientState3",1842}, + {"Lar1",109}, + {""}, {""}, + {"variationOfVisibilityDirectionAngle",2285}, + {""}, + {"Latin1",114}, + {"section_10",1992}, + {"Lo1",123}, {""}, {""}, {""}, {""}, {""}, - {"PVPresent",211}, - {""}, {""}, {""}, {""}, - {"bufrHeaderCentre",372}, + {"southEastLatitudeOfLPOArea",2037}, {""}, {""}, {""}, - {"subLocalDefinition1",2091}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle2Trend3",515}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"expandedCrex_scales",768}, + {"Lor1",141}, {""}, {""}, {""}, {""}, {"extractDateTimeHourEnd",801}, - {""}, {""}, {""}, - {"mixedCoordinateFieldFlag",1284}, + {"METARstr",155}, + {"startOfHeaders",2067}, + {"typeOfSSTFieldUsed",2217}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfGrid",2200}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"numberOfClusterLowResolution",1354}, - {""}, {""}, {""}, - {"rootGroupObjectHeaderAddress",1787}, - {"longitudeOfTangencyPoint",1171}, + {""}, {""}, + {"section9UniqueIdentifier",1977}, {""}, - {"scaledValueOfDistanceFromEnsembleMean",1877}, + {"cloudsTitle1Trend3",510}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"stepInHours",2075}, - {""}, {""}, {""}, {""}, - {"runwayDepthOfDepositCodeState4",1808}, + {"presentTrend2",1664}, + {""}, {""}, + {"packingError",1539}, + {""}, {""}, + {"subDefinitions1",2095}, + {""}, + {"md5Section7",1249}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsTitle3Trend3",520}, {""}, {""}, {""}, {""}, - {"expandedCrex_units",769}, + {"section8UniqueIdentifier",1974}, + {"earthMajorAxisInMetres",705}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"sizeOfPostAuxiliaryArray",2026}, - {""}, - {"section2Length",1941}, - {""}, {""}, {""}, - {"physicalFlag2",1645}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"forecastOrSingularVectorNumber",859}, - {"cloudsCode3",497}, - {""}, - {"numberOfCodedValues",1356}, - {"dateOfSSTFieldUsed",642}, - {""}, {""}, {""}, - {"nameECMF",1310}, - {""}, {""}, - {"secondaryBitMap",1919}, - {"wrongPadding",2348}, - {"runwayFrictionCoefficientState2",1838}, - {"tsectionNumber5",2185}, - {""}, - {"windGust",2327}, - {"offsetSection5",1493}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"section3Length",1947}, - {""}, {""}, - {"recentWeather",1744}, - {""}, - {"definitionFilesVersion",667}, - {""}, {""}, - {"endMinuteTrend1",733}, - {""}, {""}, - {"md5Section1",1240}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"coordinate1End",576}, - {"clusterMember1",528}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCoefficientState3",1839}, + {"marsKeywords1",1204}, {""}, {""}, {""}, {""}, {""}, + {"qfeUnits",1712}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"unitsConversionScaleFactor",2248}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section7Length",1968}, + {""}, + {"firstDimensionCoordinateValueDefinition",842}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberMissingFromAveragesOrAccumulations",1342}, + {""}, {""}, {""}, {""}, + {"offsetSection1",1489}, + {"subLocalDefinition2",2098}, + {""}, {""}, {""}, + {"numberOfStepsUsedForClustering",1439}, + {""}, {""}, + {"marsGrid",1201}, + {""}, {""}, {""}, + {"cloudsTitle4Trend1",523}, + {""}, {""}, + {"numberOfUsedTileAttributes",1447}, + {""}, {""}, {""}, {""}, {""}, + {"southEastLatitudeOfVerficationArea",2038}, + {""}, {""}, {""}, + {"Latin2InDegrees",117}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfSubSatellitePoint",1171}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetFromReferenceOfFirstTime",1486}, + {""}, + {"numberOfUsedSpatialTiles",1446}, + {""}, {""}, + {"longitudeOfSubSatellitePointInDegrees",1172}, + {""}, {""}, {""}, + {"runwayDesignatorState1",1820}, + {"latitudeOfIcosahedronPole",1053}, + {""}, {""}, {""}, + {"easternLongitudeOfClusterDomain",710}, + {""}, {""}, {""}, + {"numberOfPackedValues",1410}, + {""}, + {"totalNumberOfValuesInUnpackedSubset",2182}, + {""}, {""}, + {"section3Length",1950}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section2Pointer",1946}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"shapeOfTheEarth",2011}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentTrend4",1666}, + {""}, {""}, {""}, + {"wrongPadding",2358}, + {""}, + {"compressedData",555}, + {""}, {""}, + {"lengthOfHeaders",1086}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"windGust",2337}, + {""}, {""}, {""}, + {"GTSstr",80}, + {""}, {""}, + {"DiGiven",32}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"pentagonalResolutionParameterK",1638}, + {""}, {""}, + {"westernLongitudeOfClusterDomain",2326}, + {""}, + {"typicalMonth",2231}, + {""}, + {"numberOfClusterLowResolution",1356}, + {""}, {""}, + {"firstOrderValues",848}, + {""}, + {"modelErrorType",1289}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"section4Pointer",1957}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"missingValuesPresent",1284}, + {""}, + {"nameECMF",1312}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"bitsPerValue",365}, + {"section6Pointer",1965}, + {""}, + {"GTS",79}, + {""}, + {"bufrHeaderCentre",372}, + {""}, {""}, + {"runwayFrictionCoefficientState2",1841}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"grib2LocalSectionPresent",891}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"produceLargeConstantFields",1693}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"dayOfTheYearDate",652}, + {""}, {""}, {""}, {""}, + {"offsetEndSection4",1483}, + {"typeOfPreProcessing",2215}, + {""}, {""}, {""}, {""}, + {"numberOfCoordinatesValues",1365}, + {""}, {""}, + {"secondOrderValuesDifferentWidths",1921}, + {""}, + {"cloudsTitle1Trend2",509}, + {""}, {""}, {""}, + {"unitsECMF",2250}, + {""}, {""}, {""}, {""}, + {"coordinateFlag1",588}, + {""}, {""}, {""}, {""}, + {"reducedGrid",1753}, + {""}, {""}, + {"rdbtimeMonth",1739}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsTitle3Trend2",519}, + {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfPrimeMeridianOffset",1868}, + {"grib2LocalSectionNumber",890}, + {"Ensemble_Identifier",52}, + {"verticalVisibilityCoded",2312}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"latitudeOfFirstGridPointInDegrees",1052}, + {"numberOfSingularVectorsEvolved",1438}, + {""}, {"Latin1InDegrees",115}, + {""}, {""}, {""}, {""}, {""}, + {"biFourierResolutionParameterM",354}, + {"runwayFrictionCoefficientState4",1843}, + {""}, + {"stepInHours",2081}, + {""}, {""}, + {"endMinuteTrend2",734}, + {""}, {""}, {""}, {""}, + {"clusterMember2",530}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfReferencePointInDegrees",1165}, + {""}, + {"marsStream2",1218}, + {"localTablesVersion",1141}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"correction2",600}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsTitle1Trend4",511}, {""}, {"NC",174}, {""}, - {"southEastLatitudeOfVerficationArea",2035}, - {""}, - {"verticalVisibilityCoded",2302}, - {""}, {""}, - {"extractDateTimeMinuteEnd",804}, - {""}, {""}, {""}, {""}, - {"unitsECMF",2244}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberInMixedCoordinateDefinition",1336}, - {""}, - {"runwayDesignatorState1",1817}, - {"extractDateTimeMinuteStart",806}, - {""}, {""}, {""}, - {"deletePV",671}, - {""}, {""}, - {"preBitmapValues",1654}, - {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeMonthEnd",807}, - {"xCoordinateOfOriginOfSectorImage",2349}, - {"typeOfSSTFieldUsed",2211}, - {""}, {""}, - {"latitudeOfSubSatellitePoint",1064}, - {""}, {""}, {""}, - {"Sub-Experiment_Identifier",228}, - {"longitudeOfCentralPointInClusterDomain",1150}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeMonthStart",809}, - {""}, {""}, - {"endMonthTrend2",738}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"biFourierResolutionParameterM",354}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"mBasicAngle",1188}, - {""}, {""}, {""}, {""}, - {"localLatitude1",1129}, - {"Date_E4",29}, - {""}, {""}, {""}, {""}, {""}, - {"P1",207}, - {""}, {""}, {""}, {""}, {""}, - {"easternLongitudeOfClusterDomain",710}, - {""}, - {"numberOfClusterHighResolution",1353}, - {""}, - {"section7",1964}, - {"gribTablesVersionNo",896}, - {""}, {""}, {""}, - {"runwayDepositCodeState4",1800}, - {""}, {""}, {""}, - {"extractDateTimeStart",813}, - {"NrInRadiusOfEarth",197}, - {""}, {""}, {""}, {""}, - {"qnhUnits",1714}, - {""}, {""}, {""}, - {"baseDateEPS",326}, - {"section7Pointer",1966}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeSecondEnd",810}, - {""}, {""}, {""}, - {"NRj",185}, - {""}, {""}, {""}, - {"variationOfVisibilityTrend4",2283}, - {""}, {""}, - {"endMonthTrend3",739}, - {"tiggeLocalVersion",2138}, - {""}, {""}, {""}, - {"marsClass2",1192}, - {"versionNumberOfExperimentalSuite",2293}, - {"extractDateTimeSecondStart",812}, - {""}, - {"longitudeOfTheSouthernPoleOfProjection",1175}, + {"longitudeOfTangencyPoint",1173}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"parameterUnits",1623}, - {""}, {""}, {""}, {""}, - {"INBITS",90}, + {"beginDayTrend2",332}, + {""}, {""}, + {"numberOfCodedValues",1358}, {""}, {""}, {""}, {""}, {""}, - {"expandedUnits",778}, + {"section1Pointer",1943}, + {"extractDateTimeStart",813}, {""}, - {"longitudeOfThePoleOfStretching",1172}, + {"Model_Identifier",166}, + {""}, + {"cloudsTitle3Trend4",521}, + {"numberInMixedCoordinateDefinition",1338}, {""}, {""}, {""}, {""}, {""}, - {"beginDayTrend1",331}, - {""}, {""}, {""}, {""}, {""}, - {"gts_TTAAii",915}, + {"_numberOfValues",288}, + {""}, {""}, {""}, + {"secondaryBitMap",1922}, + {""}, + {"southPoleOnProjectionPlane",2043}, + {"extractDateTimeSecondEnd",810}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extractDateTimeSecondStart",812}, + {""}, {""}, {""}, + {"dateOfIceFieldUsed",639}, + {""}, {""}, {""}, + {"section2Length",1944}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"numberOfClusterHighResolution",1355}, + {"formatVersionMinorNumber",868}, + {""}, + {"mixedCoordinateFieldFlag",1286}, + {"changeIndicatorTrend3",413}, + {""}, {""}, {""}, + {"totalNumberOfClusters",2172}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"experimentVersionNumber",779}, + {""}, + {"localLatitude2",1131}, + {"MonthOfModelVersion",168}, + {""}, {""}, {""}, + {"cloudsAbbreviation3",437}, + {""}, + {"mBasicAngle",1190}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"oceanAtmosphereCoupling",1464}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"typeOfGrid",2206}, + {""}, + {"presentTrend1",1663}, + {""}, {""}, {""}, {""}, + {"section_7",1999}, {""}, {""}, {""}, {"biFourierResolutionSubSetParameterM",356}, + {""}, {""}, {""}, + {"runwayFrictionCoefficientState1",1840}, + {""}, + {"endMinuteTrend4",736}, + {""}, {""}, {""}, {""}, + {"clusterMember4",532}, + {""}, {""}, {""}, + {"section4Length",1955}, + {""}, {""}, {""}, {""}, + {"xCoordinateOfOriginOfSectorImage",2359}, + {""}, {""}, {""}, {""}, + {"gribTablesVersionNo",896}, + {"endDayTrend2",723}, + {""}, {""}, + {"coordinate2Start",581}, + {""}, {""}, {""}, {""}, + {"MinuteOfModelVersion",157}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"md5Section6",1248}, + {"section6Length",1964}, + {""}, + {"cloudsTitle1Trend1",508}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"listOfParametersUsedForClustering",1113}, + {""}, + {"beginDayTrend4",334}, + {""}, {""}, {""}, {""}, + {"NEAREST",177}, + {""}, + {"section_07",1988}, + {""}, {""}, {""}, + {"clusterMember6",534}, + {"subLocalDefinition1",2097}, + {""}, {""}, {""}, + {"rootTablesDir",1792}, + {"cloudsTitle3Trend1",518}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"localLongitude2",1134}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"stepHumanReadable",2080}, + {""}, {""}, {""}, {""}, {""}, + {"md5Product",1241}, + {""}, + {"extractDateTimeMinuteEnd",804}, + {""}, {""}, {""}, {""}, + {"numberOfDaysInClimateSamplingWindow",1371}, + {"jScansPositively",1026}, + {""}, + {"preProcessingParameter",1657}, + {""}, {""}, {""}, {""}, + {"numberOfContributingSpectralBands",1363}, + {""}, + {"rootGroupObjectHeaderAddress",1790}, + {"realPartOf00",1744}, + {""}, + {"extractDateTimeMinuteStart",806}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"extractDateTimeMonthEnd",807}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfRadarSitesUsed",1428}, + {""}, + {"cloudsTitle2",512}, + {""}, + {"secondaryBitmapsSize",1927}, + {""}, {""}, + {"numberOfControlForecastTube",1364}, + {""}, {""}, + {"extractDateTimeMonthStart",809}, + {"gribMasterTablesVersionNumber",895}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"timeUnitFlag",2164}, + {"latitudeOfSouthernPoleInDegrees",1061}, + {""}, {""}, {""}, + {"endMonthTrend3",739}, + {""}, {""}, {""}, {""}, + {"baseDateEPS",326}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"unstructuredGrid",2261}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"forecastOrSingularVectorNumber",859}, + {"matchAerosolBinNumber",1228}, + {"section_3",1995}, + {""}, + {"scanningMode4",1903}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"projSourceString",1701}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section1Length",1941}, + {""}, {""}, + {"projTargetString",1703}, + {""}, {""}, {""}, + {"unstructuredGridType",2263}, + {""}, + {"METAR",154}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"DELETE",25}, + {""}, + {"P2",208}, + {"upperThresholdValue",2270}, + {""}, + {"longitudeOfTheSouthernPoleOfProjection",1177}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"subLocalDefinitionNumber2",2102}, + {"qualityControlIndicator",1718}, {""}, {"baseTimeEPS",328}, - {"offsetFromReferenceOfFirstTime",1484}, + {""}, + {"scanningMode6",1905}, + {""}, {""}, + {"efas_post_proc",716}, {""}, {""}, {""}, - {"cloudsCode1",487}, - {"rootTablesDir",1789}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"variationOfVisibilityDirectionTrend4",2279}, + {"tiggeLocalVersion",2144}, + {""}, + {"section_03",1984}, + {""}, {""}, + {"definitionFilesVersion",667}, + {""}, + {"extractAreaNorthLatitude",794}, + {""}, + {"longitudeOfThePoleOfStretching",1174}, + {""}, + {"totalAerosolBinsNumbers",2168}, + {"numberOfPointsInDomain",1425}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"physicalFlag2",1647}, + {"visibilityInKilometresTrend3",2316}, {""}, {""}, {""}, {""}, - {"totalNumberOfClusters",2166}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle4Trend2",524}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"METARstr",155}, - {""}, {""}, - {"getNumberOfValues",885}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"visibilityInKilometresTrend2",2305}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle4Trend3",525}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"southEastLatitudeOfLPOArea",2034}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle2Trend1",513}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfUnexpandedDescriptors",1442}, - {""}, {""}, - {"section9UniqueIdentifier",1974}, - {""}, {""}, {""}, - {"recentWeatherTry",1745}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"qfeUnits",1710}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"produceLargeConstantFields",1691}, - {""}, {""}, {""}, - {"numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction",1357}, - {"numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction",1358}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"visibilityInKilometresTrend3",2306}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"pentagonalResolutionParameterK",1636}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"endStepInHours",748}, - {""}, {""}, {""}, - {"verificationYear",2287}, - {"matchAerosolBinNumber",1226}, - {""}, {""}, {""}, - {"changeIndicatorTrend2",412}, - {"numberOfPointsAlongXAxis",1419}, - {""}, {""}, {""}, {""}, {""}, - {"integerPointValues",976}, - {""}, {""}, - {"section11Pointer",1936}, - {""}, - {"cloudsBaseCoded1Trend4",471}, - {""}, {""}, - {"alternativeRowScanning",298}, - {""}, {""}, {""}, {""}, {""}, - {"pentagonalResolutionParameterJ",1635}, - {""}, {""}, {""}, - {"generalExtended2ordr",880}, - {""}, {""}, {""}, {""}, {""}, - {"accuracyMultipliedByFactor",290}, - {""}, {""}, {""}, - {"Model_Additional_Information",165}, - {"typeOfPacking",2207}, - {""}, {""}, - {"changeIndicatorTrend3",413}, - {""}, {""}, {""}, {""}, - {"padding_sec1_loc",1603}, - {""}, - {"section1Length",1938}, - {""}, {""}, {""}, - {"diffInHours",677}, - {""}, {""}, {""}, {""}, - {"numberOfStepsUsedForClustering",1437}, - {""}, {""}, - {"listMembersMissing4",1104}, - {""}, {""}, {""}, {""}, {""}, - {"localTablesVersionNumber",1141}, - {""}, {""}, - {"heightPressureEtcOfLevels",923}, - {""}, {""}, - {"timeIncrementBetweenSuccessiveFields",2151}, - {""}, {""}, - {"numberOfBytesOfFreeFormatData",1348}, - {"runwayFrictionCoefficientState1",1837}, - {""}, {""}, - {"expandedCrex_widths",770}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfBytesInLocalDefinition",1347}, - {""}, - {"runwayDepthOfDepositCodeState2",1806}, - {""}, {""}, {""}, {""}, - {"numberOfUsedTileAttributes",1445}, - {""}, {""}, - {"satelliteID",1847}, - {""}, {""}, {""}, {""}, - {"localFlagLatestVersion",1126}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"numberOfSingularVectorsEvolved",1436}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"section8UniqueIdentifier",1971}, - {"runwayDepthOfDepositCodeState3",1807}, - {"crraSuiteID",615}, - {"subLocalDefinitionNumber1",2095}, - {""}, {""}, {""}, {""}, {""}, - {"Product_Identifier",215}, - {"qualityControlIndicator",1716}, - {""}, {""}, {""}, - {"numberOfContributingSpectralBands",1361}, - {"unexpandedDescriptors",2233}, - {""}, - {"section_1",1988}, - {""}, {""}, {""}, - {"cloudsAbbreviation2",432}, - {""}, {""}, {""}, {""}, {""}, - {"totalAerosolBinsNumbers",2162}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"jPointsAreConsecutive",1025}, - {""}, {""}, - {"westernLongitudeOfClusterDomain",2316}, - {"yCoordinateOfSubSatellitePoint",2357}, - {"matrixBitmapsPresent",1231}, - {""}, - {"section_01",1979}, - {""}, {""}, - {"localLongitude1",1132}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetICEFieldsUsed",1485}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"cloudsBaseCoded3Trend4",481}, - {"sourceOfGridDefinition",2032}, - {""}, {""}, {""}, - {"dateOfModelVersion",640}, - {""}, {""}, {""}, {""}, - {"padding_local40_1",1600}, - {""}, {""}, {""}, - {"timeOfModelVersion",2154}, - {""}, {""}, {""}, {""}, - {"unexpandedDescriptorsEncoded",2234}, - {""}, {""}, {""}, - {"numberOfDataPointsExpected",1367}, - {"numberOfControlForecastTube",1362}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation3",437}, - {""}, {""}, {""}, {""}, {""}, - {"endMark",732}, - {""}, {""}, - {"NC2",176}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"scaleFactorOfMajorAxisOfOblateSpheroidEarth",1863}, - {""}, - {"resolutionAndComponentFlags4",1783}, - {""}, {""}, {""}, {""}, {""}, - {"identificationOfOriginatingGeneratingCentre",948}, - {""}, {""}, - {"commonBlock",552}, - {""}, {""}, {""}, - {"longitudeOfReferencePointInDegrees",1163}, - {""}, {""}, - {"cloudsAbbreviation4Trend4",446}, - {""}, - {"postAuxiliaryArrayPresent",1652}, - {""}, {""}, - {"section11Length",1935}, - {""}, {""}, - {"dateOfIceFieldUsed",639}, - {""}, {""}, - {"yearOfModelVersion",2368}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"cfVarNameECMF",408}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"referenceForGroupWidths",1756}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"stepHumanReadable",2074}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"variationOfVisibilityTrend2",2281}, - {""}, - {"northWestLongitudeOfVerficationArea",1328}, - {""}, {""}, - {"cloudsTitle4Trend1",523}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"dayOfModelVersion",650}, - {""}, - {"DayOfModelVersion",30}, - {""}, {""}, {""}, {""}, {""}, - {"southEastLongitudeOfLPOArea",2036}, - {""}, {""}, {""}, - {"variationOfVisibilityTrend3",2282}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"hourOfModelVersion",934}, - {"gaussianGridName",878}, - {""}, - {"subLocalDefinitionLength1",2093}, - {""}, {""}, {""}, {""}, - {"meanRVR4",1255}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"variationOfVisibilityDirectionTrend2",2277}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"gribMasterTablesVersionNumber",895}, - {""}, - {"numberOfParallelsBetweenAPoleAndTheEquator",1409}, - {""}, {""}, {""}, - {"referenceForGroupLengths",1755}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfUsedSpatialTiles",1444}, - {""}, {""}, {""}, {""}, - {"variationOfVisibilityDirectionTrend3",2278}, - {""}, {""}, {""}, - {"basicAngleOfTheInitialProductionDomain",330}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetSection7",1495}, - {"endOfHeadersMarker",742}, - {""}, {""}, - {"latitudeFirstInDegrees",1045}, - {"listMembersUsed4",1108}, - {""}, {""}, {""}, - {"countOfICEFieldsUsed",608}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"latitudeOfTangencyPoint",1066}, - {"tiggeSuiteID",2141}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"changeIndicatorTrend1",411}, - {""}, {""}, {""}, - {"checkInternalVersion",420}, - {""}, {""}, - {"beginMinuteTrend4",342}, - {""}, {""}, - {"addEmptySection2",291}, - {""}, {""}, {""}, {""}, - {"cfNameECMF",405}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"reflectivityCalibrationConstant",1764}, - {""}, {""}, {"PUnset",210}, {""}, - {"physicalFlag1",1644}, - {""}, {""}, {""}, - {"typeOfWavelengthInterval",2218}, + {"preBitmapValues",1656}, {""}, + {"jPointsAreConsecutive",1025}, + {""}, + {"changeIndicatorTrend2",412}, + {""}, + {"gts_TTAAii",915}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"versionNumberOfExperimentalSuite",2303}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"heightPressureEtcOfLevels",923}, + {"packedValues",1538}, + {""}, + {"numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction",1359}, + {"numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction",1360}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"lowerThresholdValue",1185}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"accuracyMultipliedByFactor",290}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"localFlagLatestVersion",1127}, + {""}, {""}, {""}, + {"subLocalDefinitionLength2",2100}, + {""}, + {"listMembersUsed4",1108}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section2Used",1948}, + {""}, {""}, {""}, {""}, + {"patch_precip_fp",1636}, + {"identificationOfOriginatingGeneratingCentre",948}, + {""}, {""}, {""}, + {"diffInHours",677}, + {""}, {""}, {""}, + {"changeIndicatorTrend4",414}, + {""}, {""}, {""}, {""}, + {"_leg_number",287}, + {""}, {""}, + {"latitudeOfSubSatellitePoint",1064}, + {""}, + {"endMinuteTrend1",733}, + {""}, {""}, {""}, {""}, + {"clusterMember1",528}, + {""}, {""}, {""}, {""}, {""}, + {"default_step_units",666}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"timeIncrementBetweenSuccessiveFields",2157}, + {""}, {""}, + {"basicAngleOfTheInitialProductionDomain",330}, + {""}, {""}, + {"scaleFactorOfMajorAxisOfOblateSpheroidEarth",1866}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfUpperLimit",1875}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"reservedSection2",1778}, + {"beginDayTrend1",331}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"endStepInHours",748}, + {"cloudsCode4",502}, + {""}, {""}, {""}, {""}, {""}, + {"Sub-Experiment_Identifier",228}, + {"offsetICEFieldsUsed",1487}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"pentagonalResolutionParameterJ",1637}, + {""}, {""}, {""}, {""}, + {"satelliteID",1850}, + {""}, + {"getNumberOfValues",885}, + {""}, {""}, + {"expandedCrex_scales",768}, + {""}, + {"listMembersUsed3",1107}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"longitudeOfCentralPointInClusterDomain",1152}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfBytesInLocalDefinition",1349}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"unstructuredGridSubtype",2262}, {"isRotatedGrid",999}, + {""}, {""}, + {"southEastLongitudeOfLPOArea",2039}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"yCoordinateOfSubSatellitePoint",2367}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cavokOrVisibility",382}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"localLatitude1",1130}, + {"numberOfDataPointsExpected",1369}, + {""}, {""}, + {"crraSuiteID",615}, {""}, - {"latitudeOfSubSatellitePointInDegrees",1065}, + {"deletePV",671}, {""}, {""}, {""}, - {"md5Section4",1244}, + {"expandedCrex_units",769}, + {""}, + {"northWestLongitudeOfVerficationArea",1330}, + {""}, + {"numberOfBytesOfFreeFormatData",1350}, + {""}, + {"countOfICEFieldsUsed",608}, + {""}, {""}, + {"Model_Additional_Information",165}, + {""}, {""}, + {"laplacianScalingFactorUnset",1040}, + {"unpackedSubsetPrecision",2258}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"cloudsCode3",497}, + {""}, + {"changeIndicatorTrend1",411}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section5Length",1957}, + {"localTablesVersionNumber",1142}, + {"YR",275}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"verificationYear",2297}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"tablesLocalDir",2115}, + {"unexpandedDescriptors",2239}, + {""}, {""}, + {"runwayDepositCodeState3",1802}, + {""}, {""}, {""}, + {"postAuxiliaryArrayPresent",1654}, + {""}, {""}, + {"scaleFactorOfCentralWaveNumber",1855}, + {""}, + {"recentWeather",1746}, + {"INBITS",90}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"PVPresent",211}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"ITERATOR",92}, + {""}, + {"localLongitude1",1133}, + {""}, {""}, + {"sourceOfGridDefinition",2035}, + {""}, {""}, {""}, {""}, + {"integerPointValues",976}, + {""}, {""}, + {"cloudsAbbreviation2",432}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"northWestLatitudeOfLPOArea",1327}, + {"numberOfPointsAlongXAxis",1421}, + {"marsClass2",1194}, + {""}, {""}, + {"backgroundGeneratingProcessIdentifier",322}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"tempPressureUnits",2127}, + {"expandedCrex_widths",770}, + {""}, + {"unexpandedDescriptorsEncoded",2240}, + {""}, {""}, {""}, {""}, {""}, + {"cfNameECMF",405}, + {""}, {""}, + {"longitudeOfSouthEastCornerOfArea",1166}, + {""}, {""}, {""}, {""}, + {"beginMinuteTrend3",341}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"tablesLocalDir",2121}, + {"tiggeSuiteID",2147}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfSingularVectorsComputed",1437}, + {""}, {""}, {""}, {""}, + {"gaussianGridName",878}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"physicalMeaningOfVerticalCoordinate",1648}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"unpackedValues",2259}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"localUsePresent",1144}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfLowerLimit",1889}, + {"endOfHeadersMarker",742}, + {""}, {""}, {""}, {""}, + {"P1",207}, + {""}, {""}, {""}, + {"northWestLatitudeOfVerficationArea",1328}, + {""}, {""}, {""}, {""}, {""}, + {"subLocalDefinitionNumber1",2101}, + {""}, {""}, {""}, + {"coordinate1End",576}, + {""}, {""}, {""}, + {"sizeOfLength",2027}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section7UniqueIdentifier",1970}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"physicalFlag1",1646}, + {""}, + {"pentagonalResolutionParameterM",1639}, + {""}, {""}, {""}, {""}, + {"latitudeFirstInDegrees",1045}, + {"cloudsAbbreviation4",442}, + {"P_INST",212}, + {""}, {""}, {""}, + {"endMonthTrend2",738}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"scaleFactorOfEarthMajorAxis",1858}, + {"latitudeOfTangencyPoint",1066}, + {""}, + {"scaleFactorOfEarthMinorAxis",1859}, + {""}, {""}, {""}, {""}, + {"variationOfVisibilityTrend3",2292}, + {"referenceForGroupWidths",1758}, + {""}, {""}, {""}, {""}, {""}, + {"section_2",1994}, + {""}, {""}, {""}, + {"dateOfModelVersion",640}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"timeOfModelVersion",2160}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"inputOverriddenReferenceValues",970}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"subLocalDefinitionLength1",2099}, + {""}, + {"clusteringDomain",540}, + {""}, {""}, {""}, {""}, + {"section3UniqueIdentifier",1953}, + {""}, {""}, {""}, + {"scaleFactorOfLengthOfSemiMajorAxis",1863}, + {""}, {""}, {""}, + {"cloudsTitle2Trend3",515}, + {""}, {""}, + {"variationOfVisibilityDirectionTrend3",2288}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"section_02",1983}, {""}, {""}, {"endGridDefinition",727}, {""}, {""}, - {"cloudsBaseCoded1Trend2",469}, - {""}, {""}, {""}, - {"runwayDepthOfDepositCodeState1",1805}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"listMembersUsed2",1106}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"cloudsBaseCoded1Trend3",470}, - {"clusteringDomain",540}, + {"typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing",2223}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayDepthOfDepositCodeState3",1810}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"visibilityInKilometresTrend2",2315}, + {"yearOfModelVersion",2378}, {""}, {""}, {""}, {""}, - {"typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing",2217}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfCentralWaveNumber",1852}, - {""}, {""}, {""}, - {"runwayDepthOfDepositState4",1812}, - {""}, {""}, - {"clusterMember5",533}, - {""}, {""}, {""}, - {"resolutionAndComponentFlags6",1784}, + {"referenceForGroupLengths",1757}, {""}, {""}, {""}, + {"section11Length",1938}, + {""}, {""}, {""}, {""}, {""}, {"lengthOf4DvarWindow",1085}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"rdb_key",1733}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfGroups",1390}, - {""}, {""}, {""}, - {"longitudeOfSouthernPole",1165}, - {""}, {""}, {""}, {""}, {""}, - {"endMonthTrend1",737}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"unstructuredGridUUID",2264}, + {"scaledValueOfSecondWavelength",1896}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"md5Section2",1242}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"horizontalDomainTemplate",928}, - {"offsetValuesBy",1499}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"cloudsBase3",457}, - {""}, {""}, - {"section2Used",1945}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"widthOfWidths",2321}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {"latitudinalDirectionGridLength",1076}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"marsClass1",1191}, - {""}, {""}, - {"cloudsBaseCoded3Trend2",479}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"xCoordinateOfSubSatellitePoint",2350}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"dayOfModelVersion",650}, {""}, - {"cloudsCode4",502}, + {"DayOfModelVersion",30}, + {"endMonthTrend4",740}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"YR",275}, - {""}, {""}, - {"cloudsBaseCoded3",477}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"visibilityTrend3",2310}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetSection11",1489}, - {"cloudsBaseCoded3Trend3",480}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"NEAREST",177}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"variationOfVisibilityTrend1",2280}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"physicalMeaningOfVerticalCoordinate",1646}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation2Trend4",436}, - {""}, {""}, - {"Date_E2",27}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"numberOfGroupsOfDataValues",1391}, - {""}, {""}, - {"visibilityInKilometresTrend1",2304}, - {""}, {""}, {""}, - {"runwayDepositCodeState2",1798}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfSingularVectorsComputed",1435}, - {""}, {""}, {""}, {""}, - {"cloudsAbbreviation3Trend4",441}, - {"numberOfPointsAlongXAxisInCouplingArea",1420}, - {""}, {""}, {""}, - {"runwayFrictionCodeValueState4",1832}, - {""}, {""}, {""}, - {"variationOfVisibilityDirectionTrend1",2276}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"cloudsCode2",492}, - {"numberOfBytesPerInteger",1349}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"scanningMode5",1901}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Date_E3",28}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"Total_Number_Members_Used",253}, - {"runwayDepositCodeState3",1799}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"templatesMasterDir",2125}, - {""}, {""}, {""}, - {"cloudsBase1",447}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"skipExtraKeyAttributes",2030}, - {""}, - {"extractAreaSouthLatitude",795}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section7Length",1965}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfLengthOfSemiMinorAxis",1885}, - {""}, {""}, - {"projSourceString",1699}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded1",467}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"visibilityTrend1",2308}, - {""}, {""}, {"beginMinuteTrend2",340}, - {"Total_Number_Members_Possible",252}, - {""}, {""}, {""}, - {"cloudsBaseCoded1Trend1",468}, {""}, {""}, - {"runwayDesignatorRVR4",1816}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"section4UniqueIdentifier",1955}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"projTargetString",1701}, + {"scaledValueOfFirstWavelength",1886}, {""}, {""}, {""}, {""}, {""}, - {"localUsePresent",1142}, + {"hourOfModelVersion",934}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section_4",1996}, {""}, - {"beginMinuteTrend3",341}, - {""}, {""}, - {"md5Headers",1238}, - {""}, {""}, {""}, - {"scaleFactorOfLengthOfSemiMajorAxis",1860}, + {"section11Pointer",1939}, + {""}, + {"coordAveraging3",574}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfGroups",1392}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"inputShortDelayedDescriptorReplicationFactor",972}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation1",427}, - {"METAR",154}, + {"runwayFrictionCodeValueState3",1834}, + {"visibilityTrend4",2321}, + {"inputShortDelayedDescriptorReplicationFactor",972}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"meanRVR3",1256}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cfVarNameECMF",408}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section_6",1998}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ZLMULT",283}, + {""}, + {"section_04",1985}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"beginMinuteTrend4",342}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"visibilityInKilometresTrend4",2317}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"widthOfWidths",2331}, + {""}, {""}, {""}, {""}, + {"cloudsCode1",487}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"remarkPresent",1767}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"section_06",1987}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"matrixBitmapsPresent",1233}, + {"NC2",176}, + {""}, {""}, {""}, + {"xCoordinateOfSubSatellitePoint",2360}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section5Pointer",1961}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"visibilityTrend3",2320}, + {"variationOfVisibilityTrend2",2291}, + {""}, {""}, {""}, + {"firstDimensionPhysicalSignificance",843}, + {"templatesMasterDir",2131}, {""}, {""}, - {"HDF5str",82}, + {"latitudeOfSubSatellitePointInDegrees",1065}, + {""}, + {"cloudsAbbreviation1",427}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"marsClass1",1193}, + {""}, {""}, + {"numberOfParallelsBetweenAPoleAndTheEquator",1411}, + {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfLengthOfSemiMinorAxis",1888}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"paramIdECMF",1614}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"generalExtended2ordr",880}, + {""}, {""}, {""}, {""}, {""}, + {"offsetValuesBy",1501}, + {""}, {""}, + {"cloudsTitle2Trend2",514}, + {""}, {""}, + {"variationOfVisibilityDirectionTrend2",2287}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"runwayDepthOfDepositCodeState2",1809}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayDepositCodeState2",1801}, + {"variationOfVisibilityTrend4",2293}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"DjGiven",36}, + {""}, {""}, {""}, {""}, {""}, + {"beginMinuteTrend1",339}, + {""}, {""}, + {"extractAreaEastLongitude",791}, + {"runwayDesignatorRVR3",1818}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"mask",1223}, + {"latitudeOfReferencePoint",1057}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfGroupsOfDataValues",1393}, + {""}, + {"resolutionAndComponentFlags7",1787}, + {""}, {""}, {""}, {""}, {""}, + {"section4UniqueIdentifier",1958}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsTitle2Trend4",516}, + {""}, {""}, + {"variationOfVisibilityDirectionTrend4",2289}, + {""}, {""}, {""}, {""}, + {"section5",1959}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"section6UniqueIdentifier",1966}, + {""}, {""}, {""}, + {"runwayDepthOfDepositCodeState4",1811}, + {""}, {""}, + {"Date_E3",28}, + {""}, + {"pack",1537}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"hoursAfterReferenceTimeOfDataCutoff",937}, + {""}, {""}, {""}, {""}, + {"WRAPstr",261}, + {""}, {""}, {""}, {""}, + {"endMonthTrend1",737}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfBytesPerInteger",1351}, + {"md5Section4",1246}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayFrictionCodeValueState2",1833}, + {""}, {""}, {""}, {""}, {""}, + {"section_1",1991}, + {""}, {""}, {""}, + {"reflectivityCalibrationConstant",1766}, + {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfMinorAxisOfOblateSpheroidEarth",1867}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"kindOfProduct",1032}, + {"unpack",2256}, + {""}, + {"monthlyVerificationYear",1304}, + {"iDirectionIncrementGiven",940}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"ceilingAndVisibilityOK",388}, + {""}, {""}, {""}, + {"cloudsBaseCoded4Trend3",485}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayDepositCodeState4",1803}, + {""}, {""}, {""}, + {"variationOfVisibilityTrend1",2290}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section_01",1982}, + {""}, + {"nameLegacyECMF",1313}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"numberOfPointsAlongXAxisInCouplingArea",1422}, + {""}, {""}, {""}, {""}, {""}, + {"visibilityInKilometresTrend1",2314}, + {"runwayFrictionCodeValueState4",1835}, + {"section5Length",1960}, + {""}, + {"numberOfBitsForScaledGroupLengths",1346}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"resolutionAndComponentFlags3",1784}, + {""}, {""}, {""}, {""}, {""}, + {"md5Section3",1245}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsTitle2Trend1",513}, + {"typeOfWavelengthInterval",2224}, + {""}, + {"variationOfVisibilityDirectionTrend1",2286}, + {"md5Section5",1247}, + {""}, {""}, {""}, {""}, + {"longitudeLastInDegrees",1151}, + {""}, {""}, + {"numberOfPointsAlongAMeridian",1415}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"7777",5}, + {""}, {""}, + {"runwayDepthOfDepositCodeState1",1808}, + {""}, {""}, + {"windUnitsTrend3",2351}, + {""}, {""}, + {"md5Section10",1243}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"cloudsAbbreviation3Trend3",440}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"addEmptySection2",291}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Product_Identifier",215}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"listMembersMissing3",1103}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"numberOfPointsAlongSecondAxis",1418}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetSection11",1491}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"numberOfMissingValues",1404}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayFrictionCodeValueState1",1832}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"NC1",175}, + {"coordAveraging2",573}, + {""}, {""}, + {"runwayFrictionCoefficientCodeState3",1838}, + {""}, {""}, {""}, {""}, + {"cloudsBase4",462}, {"GDSPresent",69}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"deleteLocalDefinition",670}, {""}, - {"section_5",1994}, + {"sizeOfPostAuxiliaryArray",2029}, + {"northWestLongitudeOfLPOArea",1329}, + {"scaledValueOfPrimeMeridianOffset",1892}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"meanRVR2",1255}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"longitudeOfThePolePoint",1175}, + {"visibilityTrend1",2318}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"codedNumberOfGroups",548}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded4Trend2",484}, + {"numberOfPointsAlongAParallel",1416}, + {""}, + {"typeOfGeneratingProcess",2205}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"setToMissingIfOutOfRange",2009}, + {""}, {""}, + {"commonBlock",552}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"experimentVersionNumberOfAnalysis",782}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"runwayDepositCodeState1",1800}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"cloudsBase3",457}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"cloudsBaseCoded4",482}, + {""}, + {"numberOfPressureLevelsUsedForClustering",1427}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"subdivisionsOfBasicAngle",2107}, + {""}, {""}, {""}, {""}, + {"cloudsBaseCoded4Trend4",486}, + {""}, + {"offsetFromOriginToInnerBound",1485}, + {""}, {""}, {""}, + {"Ensemble_Combination_Number",51}, + {""}, {""}, {""}, {""}, {""}, + {"totalNumberOfGridPoints",2177}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsAbbreviation2Trend3",435}, + {""}, {""}, {""}, {""}, {""}, + {"typeOfPacking",2213}, + {""}, {""}, {""}, + {"offsetAfterData",1471}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"meanRVR4",1257}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded1Trend3",470}, + {""}, {""}, {""}, + {"runwayDesignatorRVR2",1817}, + {""}, {""}, {""}, + {"YRInMetres",276}, + {""}, {""}, {""}, + {"cloudsBaseCoded3",477}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded3Trend3",480}, + {"cloudsAbbreviation4Trend3",445}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"checkInternalVersion",420}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"recentWeatherTry",1747}, + {"Date_E2",27}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayFrictionCoefficientCodeState2",1837}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded4Trend1",483}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"tsectionNumber5",2191}, + {""}, + {"offsetSection5",1495}, + {""}, + {"md5Section1",1242}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"baseDateOfThisLeg",327}, + {""}, {""}, {""}, + {"uuidOfVGrid",2278}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"padding_local40_1",1602}, + {""}, + {"latitudeOfReferencePointInDegrees",1058}, + {""}, {""}, {""}, {""}, + {"runwayFrictionCoefficientCodeState4",1839}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"runwayDesignatorRVR4",1819}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"versionNumOfSharedHeaderMessageFormat",2302}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"resolutionAndComponentFlags2",1783}, + {""}, + {"cloudsAbbreviation1Trend3",430}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"md5Headers",1240}, + {""}, + {"constantAntennaElevationAngle",567}, + {""}, {""}, {""}, + {"baseTimeOfThisLeg",329}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extractAreaSouthLatitude",795}, + {""}, {""}, + {"extractDateTimeEnd",800}, + {"Date_E4",29}, + {""}, {""}, + {"windUnitsTrend2",2350}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather3Present",1677}, + {""}, {""}, {""}, + {"cloudsAbbreviation3Trend2",439}, + {""}, + {"ECMWF",46}, + {""}, {""}, + {"numberOfGridInReference",1390}, + {""}, + {"listMembersUsed2",1106}, + {""}, {""}, + {"iDirectionIncrementGridLength",941}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"horizontalDomainTemplate",928}, + {""}, {""}, {"coordinate2End",579}, - {""}, {""}, {""}, {""}, - {"listMembersMissing2",1102}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"nameLegacyECMF",1311}, - {""}, {""}, - {"iDirectionIncrementGiven",940}, {""}, - {"section_05",1983}, - {""}, {""}, {""}, {""}, - {"scaleFactorOfEarthMajorAxis",1855}, - {""}, - {"northWestLatitudeOfVerficationArea",1326}, - {"scaleFactorOfEarthMinorAxis",1856}, + {"coordAveraging1",572}, + {"firstLatitudeInDegrees",845}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"NC1",175}, + {"runwayExtentOfContaminationState3",1830}, {""}, - {"longitudeOfThePolePoint",1173}, - {""}, - {"DELETE",25}, + {"HDF5str",82}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"observationDiagnostic",1459}, {""}, {""}, - {"timeUnitFlag",2158}, + {"listMembersMissing2",1102}, + {""}, {""}, {""}, {""}, + {"meanRVR1",1254}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded1Trend2",469}, + {""}, {""}, + {"spacingOfBinsAlongRadials",2050}, + {"shortNameLegacyECMF",2015}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfPointsUsed",1426}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayFrictionCoefficientCodeState1",1836}, + {""}, {""}, + {"cloudsBaseCoded3Trend2",479}, + {""}, {""}, {""}, {""}, + {"cloudsCode2",492}, + {""}, + {"scaledValueOfMajorAxisOfOblateSpheroidEarth",1890}, + {""}, {""}, {""}, + {"latitudeOfLastGridPoint",1054}, + {""}, {""}, + {"scaledValueOfUpperLimit",1899}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayDepthOfDepositState3",1814}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"resolutionAndComponentFlags4",1785}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"beginMonthTrend4",346}, + {""}, + {"numberOfPointsAlongFirstAxis",1417}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded1Trend4",471}, + {""}, {""}, + {"UseEcmfConventions",254}, + {""}, + {"windUnitsTrend4",2352}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"weightAppliedToClimateMonth1",2323}, + {"paramIdLegacyECMF",1615}, + {""}, {""}, {""}, {""}, + {"resolutionAndComponentFlags6",1786}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded3Trend4",481}, + {"cloudsAbbreviation3Trend4",441}, + {""}, + {"cloudsBase1",447}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"typeOfProcessedData",2216}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"NB",173}, + {""}, + {"offsetToEndOf4DvarWindow",1500}, + {""}, + {"RENAME",216}, + {""}, {""}, + {"legacyGaussSubarea",1082}, + {"longitudeOfSouthernPole",1167}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"listMembersMissing4",1104}, + {""}, {""}, {""}, + {"Total_Number_Members_Used",253}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"beginMonthTrend3",345}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayDesignatorRVR1",1816}, + {""}, {""}, {""}, + {"offsetBBitmap",1474}, + {""}, {""}, {""}, + {"northLatitudeOfDomainOfTubing",1326}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"scaledValueOfCentralWaveNumber",1879}, + {""}, + {"beginHourTrend3",337}, + {""}, + {"intervalBetweenTimes",984}, + {""}, + {"CLNOMA",24}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"padding_sec1_loc",1605}, + {""}, + {"cloudsBaseCoded1",467}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather2Present",1672}, + {""}, {""}, {""}, + {"cloudsAbbreviation2Trend2",434}, + {""}, {""}, + {"cloudsBaseCoded1Trend1",468}, + {"Total_Number_Members_Possible",252}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"southLatitudeOfDomainOfTubing",2042}, + {""}, {""}, {""}, {""}, {""}, + {"eastLongitudeOfDomainOfTubing",709}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"cloudsBaseCoded3Trend1",478}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"paramIdECMF",1612}, - {""}, {""}, {""}, {""}, - {"listMembersMissing3",1103}, - {""}, {""}, {""}, {""}, {""}, - {"section6UniqueIdentifier",1963}, + {"runwayExtentOfContaminationState2",1829}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"Y2",273}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"missingValueManagementUsed",1283}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"monthlyVerificationYear",1302}, - {"extractAreaEastLongitude",791}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"tempPressureUnits",2121}, - {""}, {""}, - {"scaledValueOfPrimeMeridianOffset",1889}, - {"Minute_E4",160}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfBitsForScaledGroupLengths",1344}, - {""}, - {"offsetBSection6",1474}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfUpperLimit",1872}, - {""}, {""}, - {"cloudsAbbreviation1Trend4",431}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfMinorAxisOfOblateSpheroidEarth",1864}, - {""}, {""}, {""}, - {"numberOfMissingValues",1402}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfSecondWavelength",1893}, - {"ceilingAndVisibilityOK",388}, - {""}, {""}, - {"baseDateOfThisLeg",327}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"pentagonalResolutionParameterM",1637}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"longitudeLastInDegrees",1149}, - {""}, {""}, {""}, {""}, - {"resolutionAndComponentFlags2",1781}, - {""}, {""}, {""}, {""}, - {"Total_Number_Members_Missing",251}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"LLCOSP",100}, {""}, {"cloudsAbbreviation4Trend2",444}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"beginYearTrend3",349}, + {""}, {""}, {""}, + {"qualityValueAssociatedWithParameter",1719}, {""}, - {"baseTimeOfThisLeg",329}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfFirstWavelength",1883}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"westLongitudeOfDomainOfTubing",2325}, {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCodeValueState2",1830}, - {""}, {""}, {""}, - {"experimentVersionNumberOfAnalysis",782}, - {"numberOfRadarSitesUsed",1426}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfPointsAlongAMeridian",1413}, - {""}, {""}, {""}, - {"northWestLatitudeOfLPOArea",1325}, - {""}, {""}, - {"resolutionAndComponentFlags3",1782}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endMark",732}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation4Trend3",445}, - {""}, {""}, {""}, {""}, - {"runwayFrictionCodeValueState3",1831}, - {"deleteLocalDefinition",670}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"clusterMember7",535}, - {""}, {""}, {""}, {""}, {""}, - {"latitudeOfReferencePoint",1057}, - {""}, {""}, - {"inputOverriddenReferenceValues",970}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"meanRVR2",1253}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"beginYearTrend4",350}, - {"numberOfPointsAlongSecondAxis",1416}, - {""}, {""}, {""}, {""}, - {"beginMinuteTrend1",339}, - {""}, - {"sizeOfPostAuxiliaryArrayPlusOne",2027}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"sourceSinkChemicalPhysicalProcess",2033}, - {""}, - {"numberOfSecondOrderPackedValues",1433}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"cloudsBaseCoded2Trend4",476}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"DjGiven",36}, - {""}, {""}, {""}, {""}, - {"laplacianScalingFactorUnset",1040}, - {""}, {""}, {""}, {""}, {""}, - {"meanRVR3",1254}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"windUnitsTrend4",2342}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"latitudeOfLastGridPoint",1054}, - {"coordAveraging2",573}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"offsetFromOriginToInnerBound",1483}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section3UniqueIdentifier",1950}, - {""}, {""}, {""}, {""}, {""}, - {"Y2",273}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"beginHourTrend4",338}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"coordAveraging3",574}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfPointsAlongAParallel",1414}, - {""}, {""}, {""}, {""}, {""}, - {"intervalBetweenTimes",984}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Used",137}, - {""}, {""}, {""}, {""}, - {"longitudeOfSouthernPoleInDegrees",1166}, - {""}, {""}, - {"pastTendencyRVR3",1632}, - {""}, {""}, - {"extractAreaLongitudeRank",793}, - {"presentWeather2Present",1670}, - {"runwayDepthOfDepositState2",1810}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"scanningMode7",1903}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"radiusOfTheEarth",1725}, - {""}, {""}, {""}, {""}, - {"presentWeather3Present",1675}, - {"subdivisionsOfBasicAngle",2101}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayExtentOfContaminationState4",1831}, {""}, {""}, {""}, {""}, {""}, {""}, {"disableGrib1LocalSection",686}, - {""}, {""}, - {"ZLMULT",283}, - {""}, {""}, {""}, {""}, - {"horizontalDomainTemplateNumber",929}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"isCavok",987}, - {""}, {""}, - {"runwayFrictionCoefficientCodeState4",1836}, - {""}, - {"runwayDepthOfDepositState3",1811}, - {""}, - {"ITERATOR",92}, - {""}, - {"runwayDepositCodeState1",1797}, - {""}, {""}, {""}, {""}, - {"LLCOSP",100}, - {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Possible",133}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"oneMinuteMeanMaximumRVR4",1507}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"uuidOfVGrid",2268}, - {""}, {""}, {""}, - {"typeOfProcessedData",2210}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"horizontalDimensionProcessed",927}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"WRAPstr",261}, - {""}, - {"cloudsBase4",462}, - {""}, {""}, - {"Original_Parameter_Identifier",205}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"NB",173}, - {"YRInMetres",276}, - {""}, {""}, - {"Ensemble_Combination_Number",51}, - {""}, {""}, {""}, {""}, - {"latitudeOfThePolePoint",1068}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"northWestLongitudeOfLPOArea",1327}, - {"runwayFrictionCodeValueState1",1829}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"codedNumberOfGroups",548}, - {""}, {""}, - {"offsetAfterData",1469}, - {""}, {""}, {""}, - {"cloudsAbbreviation2Trend2",434}, - {"typeOfGeneratingProcess",2199}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"setToMissingIfOutOfRange",2006}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded4",482}, + {"resolutionAndComponentFlags1",1782}, {""}, {""}, - {"endYearTrend4",753}, - {""}, {""}, {""}, - {"visibilityTrend4",2311}, - {""}, {""}, {""}, - {"firstLatitudeInDegrees",845}, - {"padding_loc9_2",1596}, - {""}, {""}, - {"cloudsBaseCoded4Trend4",486}, - {""}, {""}, {""}, - {"cloudsAbbreviation3Trend2",439}, - {""}, {""}, {""}, {""}, - {"pastTendencyRVR1",1630}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetBeforePL",1478}, - {""}, {""}, - {"offsetBBitmap",1472}, + {"oneMinuteMeanMaximumRVR3",1508}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsCode4Trend3",505}, {""}, {""}, {""}, {""}, {""}, - {"section_7",1996}, + {"longitudeOfThePolePointInDegrees",1176}, {""}, {""}, {""}, - {"cloudsBase2",452}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfHorizontalPoints",1392}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation2Trend3",435}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ccsdsCompressionOptionsMask",385}, - {""}, {""}, {""}, - {"section_07",1985}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"totalNumberOfGridPoints",2171}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation3Trend3",440}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_grid90_1",1546}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded2",472}, - {""}, {""}, {""}, {""}, - {"iDirectionIncrementGridLength",941}, - {""}, - {"visibilityTrend2",2309}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded2Trend2",474}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"endHourTrend4",731}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"hoursAfterReferenceTimeOfDataCutoff",937}, + {"offsetBeforePL",1480}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded2Trend3",475}, + {"cloudsAbbreviation2Trend4",436}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"runwayDesignatorRVR2",1814}, {""}, - {"Local_Number_Members_Missing",129}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfPointsAlongFirstAxis",1415}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather1Present",1665}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"beginMonthTrend3",345}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"windUnitsTrend1",2349}, {""}, {""}, {""}, {""}, {""}, - {"runwayDesignatorRVR3",1815}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"observationDiagnostic",1457}, - {""}, {""}, {""}, - {"paramIdLegacyECMF",1613}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"versionNumberOfSuperblock",2295}, + {"scaledValueOfEarthMajorAxis",1882}, {""}, {""}, - {"longitudeOfThePolePointInDegrees",1174}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfEarthMinorAxis",1883}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"versionNumOfSharedHeaderMessageFormat",2292}, + {"cloudsAbbreviation3Trend1",438}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"northLatitudeOfDomainOfTubing",1324}, - {"resolutionAndComponentFlags1",1780}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section_11",1990}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation4Trend1",443}, - {"runwayExtentOfContaminationState4",1828}, {""}, - {"latitudeOfReferencePointInDegrees",1058}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfPressureLevelsUsedForClustering",1425}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCoefficientCodeState2",1834}, + {"section5UniqueIdentifier",1962}, + {""}, + {"Total_Number_Members_Missing",251}, + {"Minute_E3",159}, + {""}, + {"numberOfUsefulPointsAlongXAxis",1448}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode1Trend4",491}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfLengthOfSemiMajorAxis",1887}, + {"numberOfReforecastYearsInModelClimate",1430}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Minute_E2",158}, + {"presentWeather1Present",1667}, + {"cloudsAbbreviation4Trend4",446}, {""}, {""}, - {"southLatitudeOfDomainOfTubing",2039}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"runwayFrictionCoefficientCodeState3",1835}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfMajorAxisOfOblateSpheroidEarth",1887}, - {""}, {""}, {""}, {""}, {"cloudsAbbreviation1Trend2",429}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"weightAppliedToClimateMonth1",2313}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetBeforeBitmap",1476}, - {""}, {""}, - {"eastLongitudeOfDomainOfTubing",709}, + {"runwayExtentOfContaminationState1",1828}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ZLBASE",282}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfPointsAlongTheXAxis",1419}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"FMULTE",66}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"clusterMember5",533}, {""}, {""}, {""}, {""}, - {"md5GridSection",1237}, + {"visibilityTrend2",2319}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetBeforeBitmap",1478}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"spacingOfBinsAlongRadials",2047}, - {""}, - {"meanRVR1",1252}, - {""}, - {"numberOfGridInReference",1388}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Minute_E3",159}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"beginMonthTrend1",343}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"cloudsAbbreviation1Trend3",430}, - {""}, - {"shortNameLegacyECMF",2012}, - {"legacyGaussSubarea",1082}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded4Trend2",484}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"extractDateTimeEnd",800}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode3Trend4",501}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Ensemble_Identifier_E4",55}, - {""}, {""}, - {"cloudsBaseCoded4Trend3",485}, - {""}, {""}, {""}, {""}, {""}, - {"coordAveraging1",572}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeOfThePoleOfStretching",1067}, - {"cloudsBaseCoded2Trend1",473}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section5UniqueIdentifier",1959}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Extra_Data_FreeFormat_0_none",57}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"beginYearTrend2",348}, - {"numberOfPointsAlongTheXAxis",1417}, - {""}, {""}, - {"Y1",271}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"Threshold_Or_Distribution_Units",244}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"experimentVersionNumber2",781}, - {""}, {""}, - {"************_EXPERIMENT_************",2}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"latitudeOfLastGridPointInDegrees",1055}, - {""}, {""}, {""}, - {"ccsdsBlockSize",384}, + {"radiusOfTheEarth",1727}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayDepthOfDepositState1",1809}, - {"windUnitsTrend2",2340}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"beginYearTrend3",349}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"latitudeOfTheSouthernPoleOfProjection",1070}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetBSection6",1476}, {""}, {""}, {""}, {""}, - {"numberOfPointsUsed",1424}, + {"runwayDepthOfDepositState2",1813}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cfNameLegacyECMF",406}, + {"cloudsAbbreviation1Trend4",431}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeOfThePolePointInDegrees",1069}, - {""}, {""}, {""}, {""}, - {"windUnitsTrend3",2341}, - {"scaledValueOfCentralWaveNumber",1876}, - {""}, {""}, {""}, - {"beginHourTrend2",336}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"oneMinuteMeanMinimumRVR4",1511}, - {"numberOfReforecastYearsInModelClimate",1428}, - {"isCavokTrend4",991}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"runwayFrictionCoefficientCodeState1",1833}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"beginHourTrend3",337}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"westLongitudeOfDomainOfTubing",2315}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ECMWF",46}, - {""}, {""}, - {"cloudsAbbreviation2Trend1",433}, - {"runwayExtentOfContaminationState2",1826}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"pastTendencyRVR4",1633}, - {""}, {""}, {""}, - {"CLNOMA",24}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode1Trend2",489}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc9_1",1595}, - {"padding_loc7_1",1594}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation3Trend1",438}, - {"runwayExtentOfContaminationState3",1827}, - {""}, {""}, - {"oneMinuteMeanMaximumRVR2",1505}, - {""}, {""}, - {"padding_loc6_1",1593}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode1Trend3",490}, - {""}, {""}, {""}, {""}, {""}, - {"typicalYear2",2229}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"Local_Number_Members_Possible_E4",136}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded4Trend1",483}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"oneMinuteMeanMaximumRVR3",1506}, - {""}, {""}, - {"numberOfUsefulPointsAlongXAxis",1446}, - {"section7UniqueIdentifier",1967}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"flagForNormalOrStaggeredGrid",852}, - {"altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius",299}, - {""}, - {"pastTendencyRVR2",1631}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"theHindcastMarsStream",2126}, - {""}, {""}, {""}, {""}, {""}, - {"qualityValueAssociatedWithParameter",1717}, - {"endYearTrend2",751}, - {""}, - {"offsetToEndOf4DvarWindow",1498}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"constantAntennaElevationAngle",567}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc190_1",1561}, - {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Missing_E4",132}, - {"cloudsCode3Trend2",499}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Ensemble_Identifier_E2",53}, - {"runwayDesignatorRVR1",1813}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"************_PRODUCT_***************",3}, - {""}, {""}, - {"extractAreaLatitudeRank",792}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc19_2",1566}, - {""}, {""}, - {"endYearTrend3",752}, - {""}, - {"cloudsCode3Trend3",500}, - {"padding_loc5_1",1592}, - {""}, {""}, {""}, {""}, {""}, - {"Ensemble_Identifier_E3",54}, - {""}, {""}, {""}, - {"windGustTrend4",2331}, - {""}, - {"Original_CodeTable_2_Version_Number",203}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc50_1",1591}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"endHourTrend2",729}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfLengthOfSemiMajorAxis",1884}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"padding_local_35",1601}, - {""}, - {"radiusOfClusterDomain",1724}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"endHourTrend3",730}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"missingValueManagementUsed",1281}, - {"countOfGroupLengths",607}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"SOH",221}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfEarthMajorAxis",1879}, - {""}, {""}, - {"scaledValueOfEarthMinorAxis",1880}, - {""}, {""}, - {"padding_loc30_2",1585}, - {""}, {""}, {""}, {""}, - {"padding_loc18_2",1560}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeDayStart",799}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"cloudsAbbreviation1Trend1",428}, - {"runwayExtentOfContaminationState1",1825}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"beginMonthTrend4",346}, - {""}, - {"cloudsCode1Trend1",488}, - {""}, - {"padding_local11_1",1597}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"unusedBitsInBitmap",2255}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {"jDirectionIncrementGiven",1021}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"numberInHorizontalCoordinates",1335}, - {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfUpperLimit",1896}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"cloudsCode4Trend2",504}, + {""}, {""}, {""}, {""}, + {"pastTendencyRVR4",1635}, {""}, - {"scaledValueOfMinorAxisOfOblateSpheroidEarth",1888}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase1Trend4",451}, + {"extractDateTimeDayStart",799}, + {""}, {""}, {""}, {""}, {""}, + {"ICEFieldsUsed",87}, + {""}, + {"beginMonthTrend1",343}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"probProductDefinition",1687}, + {"theHindcastMarsStream",2132}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"skipExtraKeyAttributes",2033}, + {""}, {""}, {""}, {""}, {""}, + {"endHourTrend3",730}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"beginMonthTrend2",344}, + {"cloudsAbbreviation2Trend1",433}, {""}, {""}, {""}, {""}, {""}, + {"scanningMode5",1904}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"numberOfBitsContainingEachPackedValue",1345}, + {""}, + {"latitudeOfThePolePoint",1068}, + {""}, {""}, {""}, + {"countOfGroupLengths",607}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"Local_Number_Members_Used",137}, + {"cloudsCode4Trend4",506}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Y1",271}, + {""}, + {"ccsdsCompressionOptionsMask",385}, + {"FMULTM",67}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"pastTendencyRVR3",1634}, + {""}, + {"SOH",221}, + {""}, {""}, {""}, + {"runwayDepthOfDepositState4",1815}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"beginHourTrend2",336}, + {"cloudsAbbreviation4Trend1",443}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endYearTrend3",752}, + {""}, {""}, {""}, + {"cloudsCode1Trend3",490}, + {"horizontalDomainTemplateNumber",929}, + {""}, {""}, {""}, {""}, + {"md5GridSection",1239}, + {""}, {""}, {""}, {""}, + {"Local_Number_Members_Possible",133}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsCode3Trend3",500}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"md5Section2",1244}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"flagForNormalOrStaggeredGrid",852}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"latitudeOfLastGridPointInDegrees",1055}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"scaledValueOfMinorAxisOfOblateSpheroidEarth",1891}, + {"cloudsCode4Trend1",503}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"beginYearTrend2",348}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfSecondOrderPackedValues",1435}, + {""}, + {"numberOfHorizontalPoints",1394}, + {"************_PRODUCT_***************",3}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"radiusOfClusterDomain",1726}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfBitsUsedForTheScaledGroupLengths",1348}, + {"beginHourTrend4",338}, + {""}, {""}, {""}, + {"cloudsAbbreviation1Trend1",428}, + {"oneMinuteMeanMaximumRVR2",1507}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfSouthernPoleInDegrees",1168}, + {""}, + {"cloudsBaseCoded2Trend3",475}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"WRAP",260}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Original_Parameter_Identifier",205}, + {""}, {""}, {""}, {""}, {""}, + {"Minute_E2",158}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Missing",129}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"probProductDefinition",1689}, + {""}, + {"uvRelativeToGrid",2279}, + {""}, {""}, {""}, {""}, + {"section_11",1993}, + {""}, {""}, + {"beginYearTrend4",350}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayDepthOfDepositState1",1812}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"oneMinuteMeanMaximumRVR4",1509}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsCode1Trend2",489}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"horizontalDimensionProcessed",927}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"BUFR",19}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsCode3Trend2",499}, + {""}, + {"cloudsBase2",452}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"NH",179}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"Minute_E4",160}, + {""}, {""}, {""}, {""}, {""}, + {"experimentVersionNumber2",781}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"cloudsCode1Trend4",491}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsCode3Trend4",501}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"oneMinuteMeanMinimumRVR3",1512}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"g1conceptsLocalDirAll",875}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded2",472}, + {""}, {""}, + {"altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius",299}, + {""}, + {"beginHourTrend1",335}, + {""}, {""}, + {"Extra_Data_FreeFormat_0_none",57}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded2Trend2",474}, + {""}, {""}, {""}, {""}, {""}, + {"pastTendencyRVR1",1632}, + {""}, + {"endHourTrend2",729}, + {""}, {""}, {""}, {""}, + {"unusedBitsInBitmap",2265}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cfNameLegacyECMF",406}, + {""}, {""}, {""}, {""}, + {"latitudeOfThePoleOfStretching",1067}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"sizeOfPostAuxiliaryArrayPlusOne",2030}, + {"mixedCoordinateDefinition",1285}, + {""}, {""}, {""}, {""}, {""}, + {"ICPLSIZE",88}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded2Trend4",476}, + {"cloudsCode1Trend1",488}, + {""}, + {"jDirectionIncrementGridLength",1022}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"windGustTrend3",2340}, + {""}, {""}, + {"cloudsCode3Trend1",498}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"beginYearTrend1",347}, + {""}, {""}, {""}, + {"isCavok",987}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"endYearTrend2",751}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"************_EXPERIMENT_************",2}, + {""}, {""}, + {"typicalYearOfCentury",2236}, + {"extractAreaLongitudeRank",793}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"oneMinuteMeanMaximumRVR1",1506}, + {""}, {""}, + {"Ensemble_Identifier_E3",54}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endHourTrend4",731}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_loc9_2",1598}, + {""}, {""}, {""}, {""}, {""}, + {"section_5",1997}, + {"latitudeOfThePolePointInDegrees",1069}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfParametersUsedForClustering",1412}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBase4Trend3",465}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"section_05",1986}, + {""}, {""}, {""}, {""}, + {"cloudsBaseCoded2Trend1",473}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"numberInHorizontalCoordinates",1337}, + {""}, {""}, {""}, {""}, + {"endYearTrend4",753}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"Threshold_Or_Distribution_Units",244}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"typeOfLevelECMF",2211}, + {""}, {""}, {""}, + {"latitudeOfTheSouthernPoleOfProjection",1070}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"LSTCUM",101}, + {""}, {""}, {""}, {""}, + {"padding_local_7_1",1604}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"experimentVersionNumber1",780}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"rootGroupSymbolTableEntry",1791}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"extractDateTimeDayEnd",797}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"beginMonthTrend2",344}, + {""}, {""}, {""}, {""}, + {"Ensemble_Identifier_E2",53}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endHourTrend1",728}, + {""}, + {"ceilingAndVisibilityOKTrend3",391}, + {""}, {""}, + {"sourceSinkChemicalPhysicalProcess",2036}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"cloudsBase4Trend2",464}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"Ensemble_Identifier_E4",55}, + {"XpInGridLengths",270}, + {""}, + {"padding_local11_1",1599}, + {""}, {""}, + {"numberOfGridUsed",1391}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"oneMinuteMeanMinimumRVR2",1511}, + {""}, {""}, + {"superblockExtensionAddress",2109}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBase4Trend4",466}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"uuidOfHGrid",2277}, + {"cfVarNameLegacyECMF",409}, + {""}, + {"padding_grid90_1",1548}, + {""}, {""}, {""}, {""}, + {"endYearTrend1",750}, + {""}, {""}, {""}, {""}, {""}, + {"coordinate4OfFirstGridPoint",586}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"typicalYear2",2235}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"padding_loc9_1",1597}, + {"padding_loc7_1",1596}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBase1Trend3",450}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"windGustTrend2",2339}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase3Trend3",460}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc6_1",1595}, + {""}, {""}, {""}, {""}, + {"oneMinuteMeanMinimumRVR4",1513}, + {""}, {""}, {""}, + {"numberOfPointsAlongYAxis",1423}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"runwayExtentOfContaminationCodeState3",1826}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_loc5_1",1594}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"extractAreaLatitudeRank",792}, + {"Original_CodeTable_2_Version_Number",203}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBase4Trend1",463}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"biFourierPackingModeForAxes",353}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"padding_loc50_1",1593}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"lastMonthUsedToBuildClimateMonth2",1042}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsCode2Trend3",495}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"windGustTrend4",2341}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"versionNumberOfSuperblock",2305}, + {""}, {""}, {""}, {""}, + {"isCavokTrend3",990}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Local_Number_Members_Possible_E3",135}, + {""}, {""}, + {"ECMWF_s",47}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Missing_E3",131}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase1Trend2",449}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase3Trend2",459}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayExtentOfContaminationCodeState2",1825}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"setBitsPerValue",2005}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"oneMinuteMeanMinimumRVR1",1510}, + {""}, {""}, {""}, {""}, + {"lastMonthUsedToBuildClimateMonth1",1041}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase1Trend4",451}, + {""}, {""}, {""}, {""}, + {"Number_Combination_Ensembles_1_none",198}, + {""}, {""}, {""}, {""}, + {"pastTendencyRVR2",1633}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase3Trend4",461}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"ceilingAndVisibilityOKTrend2",390}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"unitsLegacyECMF",2252}, + {""}, + {"runwayExtentOfContaminationCodeState4",1827}, + {""}, + {"coordinate3OfFirstGridPoint",583}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"cloudsCode2Trend2",494}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"windGustTrend1",2338}, + {""}, {""}, {"Local_Number_Members_Possible_E2",134}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Possible_E3",135}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"ZLBASE",282}, - {"beginYearTrend1",347}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsCode3Trend1",498}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"experimentVersionNumber1",780}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"ceilingAndVisibilityOKTrend4",392}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"rootGroupSymbolTableEntry",1788}, - {""}, {""}, - {"windUnitsTrend1",2339}, - {""}, {""}, {""}, {""}, - {"Local_Number_Members_Missing_E2",130}, - {""}, {""}, {""}, {""}, - {"cloudsBase3Trend4",461}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Missing_E3",131}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"UseEcmfConventions",254}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"beginHourTrend1",335}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc13_4",1552}, - {""}, - {"HDF5",81}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"WRAP",260}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"numberOfTensOfThousandsOfYearsOfOffset",1439}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"RENAME",216}, - {""}, - {"biFourierPackingModeForAxes",353}, - {""}, - {"NH",179}, - {""}, - {"g1conceptsLocalDirAll",875}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"mixedCoordinateDefinition",1283}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"oneMinuteMeanMaximumRVR1",1504}, - {"cloudsCode2Trend4",496}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"oneMinuteMeanMinimumRVR2",1509}, - {""}, - {"isCavokTrend2",989}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"FMULTM",67}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"superblockExtensionAddress",2103}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetBSection5",1473}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"oneMinuteMeanMinimumRVR3",1510}, - {""}, - {"isCavokTrend3",990}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"endYearTrend1",750}, - {""}, {""}, {""}, {""}, - {"cloudsBase1Trend2",449}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"cloudsBase1Trend3",450}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfBitsContainingEachPackedValue",1343}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unitsLegacyECMF",2246}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc10_1",1547}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather2PresentTrend4",1674}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_local1_1",1598}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"presentWeather3PresentTrend4",1679}, - {""}, {""}, {""}, {""}, {""}, - {"resolutionAndComponentFlags7",1785}, - {""}, {""}, {""}, - {"endHourTrend1",728}, - {""}, - {"typicalYearOfCentury",2230}, - {""}, {""}, {""}, - {"ICPLSIZE",88}, - {""}, {""}, {""}, {""}, {""}, - {"padding_sec3_1",1607}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"cloudsBase3Trend2",459}, - {"coordinate3OfFirstGridPoint",583}, - {""}, - {"padding_grid4_1",1543}, - {""}, - {"extractDateTimeYearRank",815}, - {""}, {""}, {""}, - {"typeOfLevelECMF",2205}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"cloudsBase3Trend3",460}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"windGustTrend2",2329}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc3_1",1589}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_loc14_2",1555}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_grid1_2",1541}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc30_1",1584}, - {""}, {""}, {""}, {""}, - {"padding_loc18_1",1559}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"cloudsCode4Trend4",506}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeHourRank",802}, - {""}, {""}, {""}, {""}, {""}, - {"jDirectionIncrementGridLength",1022}, - {"windGustTrend3",2330}, - {""}, {""}, - {"padding_local1_31",1599}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"setBitsPerValue",2002}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"TYPE_OF",240}, - {""}, {""}, {""}, {""}, - {"numberOfPointsAlongYAxis",1421}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Number_Combination_Ensembles_1_none",198}, - {""}, {""}, {""}, {""}, - {"padding_local_7_1",1602}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"TYPE_FF",238}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ICEFieldsUsed",87}, - {""}, {""}, {""}, - {"FMULTE",66}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"cloudsCode2Trend2",494}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc38_1",1588}, - {""}, - {"cloudsCode2Trend3",495}, - {"uvRelativeToGrid",2269}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {"cloudsBase1Trend1",448}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"numberOfBitsUsedForTheScaledGroupLengths",1346}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"octetAtWichPackedDataBegins",1465}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_sec2_2",1605}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"offsetBeforePV",1479}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather1PresentTrend4",1669}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"uuidOfHGrid",2267}, - {""}, {""}, {""}, - {"padding_loc2_2",1583}, - {""}, {""}, {""}, - {"padding_sec2_3",1606}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc29_2",1580}, + {"cloudsCode2Trend4",496}, {""}, {""}, {""}, {""}, - {"XpInGridLengths",270}, + {"NG",178}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {"cloudsBase3Trend1",458}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Hour_E4",86}, - {""}, {""}, - {"ceilingAndVisibilityOKTrend2",390}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_grid50_1",1544}, - {""}, {""}, {""}, - {"padding_loc29_3",1581}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"numberOfParametersUsedForClustering",1410}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_loc192_1",1565}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"cfVarNameLegacyECMF",409}, - {""}, {""}, - {"ceilingAndVisibilityOKTrend3",391}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_grid3_1",1542}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ceilingAndVisibilityOKTrend4",392}, + {"Local_Number_Members_Missing_E2",130}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc13_2",1550}, - {""}, {""}, {""}, - {"cloudsCode4Trend2",504}, + {"Local_Number_Members_Possible_E4",136}, + {"runwayExtentOfContaminationCodeState1",1824}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"oneMinuteMeanMinimumRVR1",1508}, - {"Threshold_Or_Distribution_0_no_1_yes",243}, - {"isCavokTrend1",988}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsCode4Trend3",505}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsCode2Trend1",493}, - {""}, - {"************_ENSEMBLE_**************",1}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc13_3",1551}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeMinuteRank",805}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"extractDateTimeMonthRank",808}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_loc191_3",1564}, - {""}, {""}, {""}, {""}, - {"cloudsBase2Trend4",456}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeDayEnd",797}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"YearOfModelVersion",278}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_loc4_2",1590}, - {""}, {""}, - {"extractDateTimeSecondRank",811}, {""}, {""}, {""}, {""}, {""}, {""}, - {"BUFR",19}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"ECMWF_s",47}, - {""}, {""}, {""}, - {"runwayExtentOfContaminationCodeState4",1824}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, + {"offsetBeforePV",1481}, + {""}, {""}, {""}, {""}, {""}, {""}, {"HourOfModelVersion",83}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"TYPE_FX",239}, - {""}, {""}, {""}, - {"windGustTrend1",2328}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"presentWeather2PresentTrend2",1672}, - {""}, {""}, {""}, {""}, - {"padding_loc14_1",1554}, - {"numberOfPointsAlongYAxisInCouplingArea",1422}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_grid1_1",1540}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc191_1",1562}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather3PresentTrend2",1677}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"LSTCUM",101}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Missing_E4",132}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"NG",178}, + {"ccsdsBlockSize",384}, + {""}, + {"numberOfTensOfThousandsOfYearsOfOffset",1441}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"TYPE_OF",240}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsCode2Trend1",493}, + {"TYPE_FF",238}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_local_35",1603}, + {""}, + {"presentWeather3PresentTrend3",1680}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"presentWeather2PresentTrend3",1673}, {""}, {""}, + {"YearOfModelVersion",278}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"latitudeOfSouthEastCornerOfArea",1059}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"************_ENSEMBLE_**************",1}, + {""}, {""}, {""}, + {"padding_loc4_2",1592}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfPointsAlongYAxisInCouplingArea",1424}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"isCavokTrend2",989}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"hoursAfterDataCutoff",936}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"ceilingAndVisibilityOKTrend1",389}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"*********_EXTRA_DATA_***************",4}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"lBB",1035}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"isCavokTrend4",991}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather3PresentTrend3",1678}, - {""}, - {"cloudsCode4Trend1",503}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Ensemble_Combinat_Number_0_none_E4",50}, - {""}, {""}, {""}, {""}, - {"padding_loc16_1",1557}, - {""}, {""}, {""}, {""}, - {"Less_Than_Or_To_Overall_Distribution",122}, - {""}, - {"cloudsBase4Trend4",466}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"padding_sec2_1",1604}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"cloudsBase2Trend2",454}, + {"extractDateTimeYearRank",815}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfGridUsed",1389}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase2Trend3",455}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"padding_loc2_1",1582}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc29_1",1579}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc20_1",1567}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayExtentOfContaminationCodeState2",1822}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"ceilingAndVisibilityOKTrend1",389}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"lastMonthUsedToBuildClimateMonth2",1042}, - {""}, - {"runwayExtentOfContaminationCodeState3",1823}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"presentWeather1PresentTrend2",1667}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_grid5_1",1545}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"HDF5",81}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc12_1",1548}, - {""}, - {"presentWeather1PresentTrend3",1668}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"hoursAfterDataCutoff",936}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Hour_E2",84}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc13_1",1549}, - {""}, {""}, {""}, - {"padding_loc28_1",1578}, - {""}, - {"RVR4_1",220}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"latitudeOfSouthEastCornerOfArea",1059}, + {"presentWeather2PresentTrend3",1675}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"Hour_E3",85}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7072,28 +6826,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"padding_sec4_1",1608}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Ensemble_Combinat_Number_0_none_E2",48}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"cloudsBase4Trend2",464}, - {"coordinate4OfFirstGridPoint",586}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Ensemble_Combinat_Number_0_none_E3",49}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"cloudsBase4Trend3",465}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsBase2Trend1",453}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7101,71 +6833,78 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayExtentOfContaminationCodeState1",1821}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"lastMonthUsedToBuildClimateMonth1",1041}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"presentWeather2PresentTrend1",1671}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"presentWeather3PresentTrend1",1676}, - {""}, {""}, - {"padding_loc17_2",1558}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Used_E4",140}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"TYPE_PF",242}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc191_2",1563}, - {""}, - {"*********_EXTRA_DATA_***************",4}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {"bufrHeaderSubCentre",373}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"X2InGridLengths",265}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"RVR2_1",218}, + {""}, {""}, {""}, + {"extractDateTimeHourRank",802}, + {""}, {""}, {""}, {""}, + {"octetAtWichPackedDataBegins",1467}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_sec4_1",1610}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc37_2",1587}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"RVR3_1",219}, + {"offsetBSection5",1475}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase4Trend1",463}, + {"padding_loc19_2",1568}, + {"presentWeather1PresentTrend3",1670}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"isCavokTrend1",988}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"padding_loc18_2",1562}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc30_2",1587}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase2Trend3",455}, + {""}, {""}, {""}, {""}, + {"precisionOfTheUnpackedSubset",1659}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather3PresentTrend2",1679}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_grid3_1",1544}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extremeValuesRVR3",827}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_grid1_2",1543}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfVGridUsed",1450}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"presentWeather3PresentTrend4",1681}, + {"X2InGridLengths",265}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"precisionOfTheUnpackedSubset",1657}, + {"TYPE_FX",239}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7176,312 +6915,430 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc244_3",1572}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather1PresentTrend1",1666}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"runwayBrakingActionState4",1796}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extremeValuesRVR4",828}, - {"padding_loc15_1",1556}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"TYPE_OR",241}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase2Trend2",454}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc13_5",1553}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"X1InGridLengths",263}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"RVR1_1",217}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc244_1",1570}, - {""}, {""}, {""}, {""}, - {"Missing_Model_LBC",161}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc26_1",1575}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather2PresentTrend2",1674}, {""}, {""}, {""}, - {"numberOfPointsAlongTheYAxis",1418}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"swapScanningY",2107}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"swapScanningY",2113}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"TYPE_CF",236}, + {"padding_loc190_1",1563}, + {""}, {""}, + {"Hour_E2",84}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Ensemble_Combinat_Number_0_none_E3",49}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"padding_sec3_1",1609}, + {""}, {""}, {""}, {""}, + {"RVR3_1",219}, + {"extremeValuesRVR2",826}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"cloudsBase2Trend4",456}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"CCCC",21}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_grid4_1",1545}, + {""}, {""}, {""}, + {"X1InGridLengths",263}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc3_1",1591}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"extremeValuesRVR4",828}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"padding_loc10_1",1549}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_local1_1",1600}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather2PresentTrend4",1676}, + {""}, {""}, {""}, {""}, + {"padding_loc18_1",1561}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc30_1",1586}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_local1_31",1601}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_loc38_1",1590}, + {""}, + {"presentWeather3PresentTrend1",1678}, + {""}, + {"Hour_E4",86}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase2Trend1",453}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"presentWeather1PresentTrend2",1669}, + {""}, {""}, {""}, {""}, {""}, + {"padding_sec2_3",1608}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"padding_grid1_1",1542}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extremeValuesRVR1",825}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfUsefulPointsAlongYAxis",1449}, + {""}, {""}, {""}, + {"TYPE_OR",241}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Ensemble_Combinat_Number_0_none_E2",48}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"RVR2_1",218}, + {"padding_loc13_3",1553}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc29_3",1583}, + {""}, {""}, {""}, {""}, {""}, + {"Threshold_Or_Distribution_0_no_1_yes",243}, + {""}, {""}, {""}, {""}, + {"extractDateTimeSecondRank",811}, + {"DIAG",26}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather1PresentTrend4",1671}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"numberOfPointsAlongTheYAxis",1420}, + {""}, {""}, {""}, {""}, + {"Ensemble_Combinat_Number_0_none_E4",50}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"RVR4_1",220}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather2PresentTrend1",1673}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"extractDateTimeMinuteRank",805}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"extractDateTimeMonthRank",808}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"RVR1_1",217}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfUnusedBitsAtEndOfSection3",1445}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather1PresentTrend1",1668}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"extractDateTimeDayRank",798}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Less_Than_Or_To_Overall_Distribution",122}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"padding_sec2_2",1607}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"TYPE_PF",242}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ExtremeValuesRVR3",64}, + {""}, {""}, {""}, + {"padding_loc17_2",1560}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"Missing_Model_LBC",161}, + {""}, {""}, + {"padding_loc37_2",1589}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"extremeCounterClockwiseWindDirection",824}, + {"padding_loc2_2",1585}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc13_2",1552}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc29_2",1582}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc13_4",1554}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"TYPE_CF",236}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"GRIBEditionNumber",75}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"LBC_Initial_Conditions",98}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ExtremeValuesRVR2",63}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {"TYPE_AN",235}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"Time_Range_One_E4",247}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"extremeValuesRVR2",826}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Time_Range_One_E3",246}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"extremeValuesRVR3",827}, - {"padding_loc23_1",1569}, + {""}, + {"ExtremeValuesRVR4",65}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"runwayBrakingActionState3",1798}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"padding_grid50_1",1546}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc37_1",1586}, + {"padding_loc14_2",1557}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_sec2_1",1606}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc191_3",1566}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"P_TACC",213}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"padding_loc37_1",1588}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"YY",277}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc2_1",1584}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ExtremeValuesRVR1",62}, + {""}, {""}, {""}, {""}, {""}, + {"padding_grid5_1",1547}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_loc13_1",1551}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc29_1",1581}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Used_E2",138}, - {""}, {""}, {""}, - {"numberOfUsefulPointsAlongYAxis",1447}, + {"padding_loc20_1",1569}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_loc28_1",1580}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"Time_Range_One_E2",245}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"Time_Range_One_E4",247}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc192_1",1567}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"YpInGridLengths",281}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfVGridUsed",1448}, + {"padding_loc12_1",1550}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"bitsPerValueAndRepack",366}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"genVertHeightCoords",879}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"padding_loc14_1",1556}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc16_1",1559}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"DIAG",26}, + {"padding_loc191_1",1564}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayBrakingActionState2",1797}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"GRIB",71}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"meanValueRVR3",1261}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayBrakingActionState4",1799}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc27_2",1579}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {"Local_Number_Members_Used_E3",139}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"CCCC",21}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"LBC_Initial_Conditions",98}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc27_2",1577}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"extremeValuesRVR1",825}, - {"padding_loc21_1",1568}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayBrakingActionState2",1794}, - {""}, {""}, {""}, {""}, {""}, - {"Time_Range_One_E2",245}, - {""}, {""}, {""}, {""}, {""}, - {"extremeCounterClockwiseWindDirection",824}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"Time_Range_One_E3",246}, - {""}, {""}, {""}, - {"YY",277}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"runwayBrakingActionState3",1795}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc244_2",1571}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"P_TACC",213}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Missing_Model_LBC_E4",164}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfUnusedBitsAtEndOfSection3",1443}, - {""}, {""}, - {"Original_Parameter_Iden_CodeTable2",204}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_loc245_1",1573}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"ExtremeValuesRVR4",65}, - {""}, {""}, {""}, {""}, - {"genVertHeightCoords",879}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"bitsPerValueAndRepack",366}, - {""}, {""}, {""}, {""}, {""}, - {"ExtremeValuesInMaximumRVR4",61}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"GRIBEditionNumber",75}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"padding_loc27_1",1576}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"runwayBrakingActionState1",1793}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ExtremeValuesInMaximumRVR3",60}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7500,23 +7357,18 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"7777",5}, + {"runwayBrakingActionState1",1796}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"ExtremeValuesRVR2",63}, - {""}, {""}, - {"YpInGridLengths",281}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"GRIB",71}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ExtremeValuesRVR3",64}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7531,21 +7383,25 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {"BBB",16}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Missing_Model_LBC_E3",163}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Missing_Model_LBC_E2",162}, + {"gts_CCCC",914}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"meanValueRVR4",1260}, + {"meanValueRVR2",1260}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Missing_Model_LBC_E3",163}, + {"padding_loc27_1",1578}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7556,58 +7412,88 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_loc245_2",1574}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ExtremeValuesRVR1",62}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"ExtremeValuesInMaximumRVR2",59}, + {"padding_loc23_1",1571}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"meanValueRVR4",1262}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Used_E2",138}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ExtremeValuesInMaximumRVR3",60}, + {"ExtremeValuesInMaximumRVR2",59}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Time_Range_Two_E3",249}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"GG",70}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"padding_loc191_2",1565}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Local_Number_Members_Used_E4",140}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"ExtremeValuesInMaximumRVR4",61}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"meanValueRVR1",1259}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc15_1",1558}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Time_Range_Two_E2",248}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc26_1",1577}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Missing_Model_LBC_E2",162}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"TYPE_FC",237}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"INGRIB",91}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"Time_Range_Two_E4",250}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7617,112 +7503,21 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"TYPE_FC",237}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Model_LBC_Member_Identifier",167}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"gts_CCCC",914}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"meanValueRVR2",1258}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Time_Range_Two_E2",248}, - {"GG",70}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc21_1",1570}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"Original_Parameter_Iden_CodeTable2",204}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Time_Range_Two_E3",249}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Missing_Model_LBC_E4",164}, {""}, {""}, {""}, {""}, {""}, {""}, - {"meanValueRVR3",1259}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"INGRIB",91}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {"ExtremeValuesInMaximumRVR1",58}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {"Y2InGridLengths",274}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7748,11 +7543,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"NINT_RITZ_EXP",181}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"At_least__Or_Distribut_Proportion_Of",14}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7760,25 +7550,7 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {"Y1InGridLengths",272}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7791,25 +7563,13 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"meanValueRVR1",1257}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Show_Combination_Ensem_E4_0_no_1_yes",227}, + {"padding_loc13_5",1555}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7845,56 +7605,14 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"GRIBEXSection1Problem",72}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"Show_Combination_Ensem_E2_0_no_1_yes",225}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Show_Combination_Ensem_E3_0_no_1_yes",226}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfBitsUsedForTheGroupWidths",1347}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"Model_LBC_Member_Identifier",167}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7911,6 +7629,8 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"padding_loc244_3",1574}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7934,6 +7654,8 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"GRIBEXSection1Problem",72}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7977,13 +7699,9 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"NINT_LOG10_RITZ",180}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"P_TAVG",214}, + {"padding_loc244_1",1572}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8020,63 +7738,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"numberOfBitsUsedForTheGroupWidths",1345}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"GRIBEX_boustrophedonic",74}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"BUDG",18}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8087,12 +7748,55 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"NINT_RITZ_EXP",181}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"NINT_LOG10_RITZ",180}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {"GRIBEXShBugPresent",73}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8128,6 +7832,8 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"P_TAVG",214}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8138,6 +7844,8 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc244_2",1573}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8145,6 +7853,8 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Show_Combination_Ensem_E3_0_no_1_yes",226}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8153,6 +7863,8 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"At_least__Or_Distribut_Proportion_Of",14}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8168,6 +7880,7 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc245_1",1575}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8182,307 +7895,7 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Show_Combination_Ensem_E2_0_no_1_yes",225}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8494,6 +7907,522 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Show_Combination_Ensem_E4_0_no_1_yes",227}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"GRIBEX_boustrophedonic",74}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc245_2",1576}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Used_Model_LBC_E3",257}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Used_Model_LBC_E2",256}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"Used_Model_LBC_E4",258}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"AEC_RESTRICTED_OPTION_MASK",12}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {"AEC_PAD_RSI_OPTION_MASK",11}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8537,8 +8466,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Used_Model_LBC_E4",258}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8573,56 +8500,7 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Used_Model_LBC_E2",256}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Used_Model_LBC_E3",257}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"AEC_DATA_SIGNED_OPTION_MASK",10}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8650,185 +8528,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"AEC_RESTRICTED_OPTION_MASK",12}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {"GRIB_LATITUDE",77}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8866,7 +8565,59 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {"GRIB_DEPTH",76}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8887,52 +8638,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"AEC_DATA_3BYTE_OPTION_MASK",7}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -9020,27 +8725,7 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"GRIB_LONGITUDE",78}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -9226,7 +8911,188 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {"AEC_DATA_MSB_OPTION_MASK",8}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -9616,132 +9482,7 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {"AEC_DATA_PREPROCESS_OPTION_MASK",9} }; diff --git a/tests/keys b/tests/keys index 96640b846..331c94356 100644 --- a/tests/keys +++ b/tests/keys @@ -1118,1259 +1118,1269 @@ listOfModelIdentifiers,1112 listOfParametersUsedForClustering,1113 listOfScaledFrequencies,1114 local,1115 -localDateTime,1116 -localDay,1117 -localDecimalScaleFactor,1118 -localDefNumberOne,1119 -localDefNumberTwo,1120 -localDefinition,1121 -localDefinitionNumber,1122 -localDir,1123 -localExtensionPadding,1124 -localFlag,1125 -localFlagLatestVersion,1126 -localHour,1127 -localLatitude,1128 -localLatitude1,1129 -localLatitude2,1130 -localLongitude,1131 -localLongitude1,1132 -localLongitude2,1133 -localMinute,1134 -localMonth,1135 -localNumberOfObservations,1136 -localSecond,1137 -localSection,1138 -localSectionPresent,1139 -localTablesVersion,1140 -localTablesVersionNumber,1141 -localUsePresent,1142 -localYear,1143 -local_padding,1144 -local_use,1145 -logTransform,1146 -longitude,1147 -longitudeFirstInDegrees,1148 -longitudeLastInDegrees,1149 -longitudeOfCentralPointInClusterDomain,1150 -longitudeOfCentrePoint,1151 -longitudeOfCentrePointInDegrees,1152 -longitudeOfFirstDiamondCenterLine,1153 -longitudeOfFirstDiamondCentreLine,1154 -longitudeOfFirstDiamondCentreLineInDegrees,1155 -longitudeOfFirstGridPoint,1156 -longitudeOfFirstGridPointInDegrees,1157 -longitudeOfIcosahedronPole,1158 -longitudeOfLastGridPoint,1159 -longitudeOfLastGridPointInDegrees,1160 -longitudeOfNorthWestCornerOfArea,1161 -longitudeOfReferencePoint,1162 -longitudeOfReferencePointInDegrees,1163 -longitudeOfSouthEastCornerOfArea,1164 -longitudeOfSouthernPole,1165 -longitudeOfSouthernPoleInDegrees,1166 -longitudeOfStretchingPole,1167 -longitudeOfStretchingPoleInDegrees,1168 -longitudeOfSubSatellitePoint,1169 -longitudeOfSubSatellitePointInDegrees,1170 -longitudeOfTangencyPoint,1171 -longitudeOfThePoleOfStretching,1172 -longitudeOfThePolePoint,1173 -longitudeOfThePolePointInDegrees,1174 -longitudeOfTheSouthernPoleOfProjection,1175 -longitudeSexagesimal,1176 -longitudes,1177 -longitudesList,1178 -longitudinalDirectionGridLength,1179 -lowerLimit,1180 -lowerRange,1181 -lowerThreshold,1182 -lowerThresholdValue,1183 -ls_labeling,1184 -lsdate_bug,1185 -m,1186 -mAngleMultiplier,1187 -mBasicAngle,1188 -mars,1189 -marsClass,1190 -marsClass1,1191 -marsClass2,1192 -marsDir,1193 -marsDomain,1194 -marsEndStep,1195 -marsExperimentOffset,1196 -marsExpver,1197 -marsForecastMonth,1198 -marsGrid,1199 -marsIdent,1200 -marsKeywords,1201 -marsKeywords1,1202 -marsLamModel,1203 -marsLatitude,1204 -marsLevel,1205 -marsLevelist,1206 -marsLongitude,1207 -marsModel,1208 -marsParam,1209 -marsQuantile,1210 -marsRange,1211 -marsStartStep,1212 -marsStep,1213 -marsStream,1214 -marsStream1,1215 -marsStream2,1216 -marsType,1217 -marsType1,1218 -marsType2,1219 -mars_labeling,1220 -mask,1221 -masterDir,1222 -masterTableNumber,1223 -masterTablesVersionNumber,1224 -masterTablesVersionNumberLatest,1225 -matchAerosolBinNumber,1226 -matchAerosolPacking,1227 -matchLandType,1228 -matchSort,1229 -matchTimeRepres,1230 -matrixBitmapsPresent,1231 -matrixOfValues,1232 -max,1233 -maximum,1234 -md5Data,1235 -md5DataSection,1236 -md5GridSection,1237 -md5Headers,1238 -md5Product,1239 -md5Section1,1240 -md5Section10,1241 -md5Section2,1242 -md5Section3,1243 -md5Section4,1244 -md5Section5,1245 -md5Section6,1246 -md5Section7,1247 -md5Section8,1248 -md5Section9,1249 -md5Structure,1250 -md5TimeDomainSection,1251 -meanRVR1,1252 -meanRVR2,1253 -meanRVR3,1254 -meanRVR4,1255 -meanSize,1256 -meanValueRVR1,1257 -meanValueRVR2,1258 -meanValueRVR3,1259 -meanValueRVR4,1260 -meaningOfVerticalCoordinate,1261 -memberNumber,1262 -messageLength,1263 -metadata,1264 -method,1265 -methodNumber,1266 -million,1267 -min,1268 -minimum,1269 -minute,1270 -minuteOfAnalysis,1271 -minuteOfEndOfOverallTimeInterval,1272 -minuteOfForecast,1273 -minuteOfModelVersion,1274 -minuteOfReference,1275 -minutesAfterDataCutoff,1276 -minutesAfterReferenceTimeOfDataCutoff,1277 -missingDataFlag,1278 -missingValue,1279 -missingValueManagement,1280 -missingValueManagementUsed,1281 -missingValuesPresent,1282 -mixedCoordinateDefinition,1283 -mixedCoordinateFieldFlag,1284 -modeNumber,1285 -model,1286 -modelErrorType,1287 -modelIdentifier,1288 -modelName,1289 -modelVersionDate,1290 -modelVersionTime,1291 -molarMass,1292 -month,1293 -monthOfAnalysis,1294 -monthOfEndOfOverallTimeInterval,1295 -monthOfForecast,1296 -monthOfModelVersion,1297 -monthOfReference,1298 -monthlyVerificationDate,1299 -monthlyVerificationMonth,1300 -monthlyVerificationTime,1301 -monthlyVerificationYear,1302 -multiplicationFactorForLatLong,1303 -mybits,1304 -n,1305 -n2,1306 -n3,1307 -na,1308 -name,1309 -nameECMF,1310 -nameLegacyECMF,1311 -nameOfFirstFixedSurface,1312 -nameOfSecondFixedSurface,1313 -names,1314 -nd,1315 -neitherPresent,1316 -newSubtype,1317 -nlev,1318 -nnn,1319 -normAtFinalTime,1320 -normAtInitialTime,1321 -normal,1322 -northLatitudeOfCluster,1323 -northLatitudeOfDomainOfTubing,1324 -northWestLatitudeOfLPOArea,1325 -northWestLatitudeOfVerficationArea,1326 -northWestLongitudeOfLPOArea,1327 -northWestLongitudeOfVerficationArea,1328 -northernLatitudeOfClusterDomain,1329 -northernLatitudeOfDomain,1330 -nosigPresent,1331 -notDecoded,1332 -nt,1333 -number,1334 -numberInHorizontalCoordinates,1335 -numberInMixedCoordinateDefinition,1336 -numberInTheAuxiliaryArray,1337 -numberInTheGridCoordinateList,1338 -numberIncludedInAverage,1339 -numberMissingFromAveragesOrAccumulations,1340 -numberOfAnalysis,1341 -numberOfBits,1342 -numberOfBitsContainingEachPackedValue,1343 -numberOfBitsForScaledGroupLengths,1344 -numberOfBitsUsedForTheGroupWidths,1345 -numberOfBitsUsedForTheScaledGroupLengths,1346 -numberOfBytesInLocalDefinition,1347 -numberOfBytesOfFreeFormatData,1348 -numberOfBytesPerInteger,1349 -numberOfCategories,1350 -numberOfCharacters,1351 -numberOfChars,1352 -numberOfClusterHighResolution,1353 -numberOfClusterLowResolution,1354 -numberOfClusters,1355 -numberOfCodedValues,1356 -numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction,1357 -numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction,1358 -numberOfColumns,1359 -numberOfComponents,1360 -numberOfContributingSpectralBands,1361 -numberOfControlForecastTube,1362 -numberOfCoordinatesValues,1363 -numberOfDataBinsAlongRadials,1364 -numberOfDataMatrices,1365 -numberOfDataPoints,1366 -numberOfDataPointsExpected,1367 -numberOfDataValues,1368 -numberOfDaysInClimateSamplingWindow,1369 -numberOfDiamonds,1370 -numberOfDirections,1371 -numberOfDistinctSection3s,1372 -numberOfDistinctSection4s,1373 -numberOfDistinctSection5s,1374 -numberOfDistinctSection6s,1375 -numberOfDistinctSection7s,1376 -numberOfDistinctSection8s,1377 -numberOfDistinctSection9s,1378 -numberOfDistributionFunctionParameters,1379 -numberOfEffectiveValues,1380 -numberOfFloats,1381 -numberOfForcasts,1382 -numberOfForecastsInCluster,1383 -numberOfForecastsInEnsemble,1384 -numberOfForecastsInTheCluster,1385 -numberOfForecastsInTube,1386 -numberOfFrequencies,1387 -numberOfGridInReference,1388 -numberOfGridUsed,1389 -numberOfGroups,1390 -numberOfGroupsOfDataValues,1391 -numberOfHorizontalPoints,1392 -numberOfIntegers,1393 -numberOfInts,1394 -numberOfIterations,1395 -numberOfLocalDefinitions,1396 -numberOfLogicals,1397 -numberOfMembersInCluster,1398 -numberOfMembersInEnsemble,1399 -numberOfMissing,1400 -numberOfMissingInStatisticalProcess,1401 -numberOfMissingValues,1402 -numberOfModeOfDistribution,1403 -numberOfModels,1404 -numberOfOctectsForNumberOfPoints,1405 -numberOfOctetsExtraDescriptors,1406 -numberOfOperationalForecastTube,1407 -numberOfPackedValues,1408 -numberOfParallelsBetweenAPoleAndTheEquator,1409 -numberOfParametersUsedForClustering,1410 -numberOfPartitions,1411 -numberOfPoints,1412 -numberOfPointsAlongAMeridian,1413 -numberOfPointsAlongAParallel,1414 -numberOfPointsAlongFirstAxis,1415 -numberOfPointsAlongSecondAxis,1416 -numberOfPointsAlongTheXAxis,1417 -numberOfPointsAlongTheYAxis,1418 -numberOfPointsAlongXAxis,1419 -numberOfPointsAlongXAxisInCouplingArea,1420 -numberOfPointsAlongYAxis,1421 -numberOfPointsAlongYAxisInCouplingArea,1422 -numberOfPointsInDomain,1423 -numberOfPointsUsed,1424 -numberOfPressureLevelsUsedForClustering,1425 -numberOfRadarSitesUsed,1426 -numberOfRadials,1427 -numberOfReforecastYearsInModelClimate,1428 -numberOfRemaininChars,1429 -numberOfRepresentativeMember,1430 -numberOfReservedBytes,1431 -numberOfRows,1432 -numberOfSecondOrderPackedValues,1433 -numberOfSection,1434 -numberOfSingularVectorsComputed,1435 -numberOfSingularVectorsEvolved,1436 -numberOfStepsUsedForClustering,1437 -numberOfSubsets,1438 -numberOfTensOfThousandsOfYearsOfOffset,1439 -numberOfTimeRange,1440 -numberOfTimeSteps,1441 -numberOfUnexpandedDescriptors,1442 -numberOfUnusedBitsAtEndOfSection3,1443 -numberOfUsedSpatialTiles,1444 -numberOfUsedTileAttributes,1445 -numberOfUsefulPointsAlongXAxis,1446 -numberOfUsefulPointsAlongYAxis,1447 -numberOfVGridUsed,1448 -numberOfValues,1449 -numberOfVerticalCoordinateValues,1450 -numberOfVerticalGridDescriptors,1451 -numberOfVerticalPoints,1452 -numberingOrderOfDiamonds,1453 -numericValues,1454 -observablePropertyTemplate,1455 -observablePropertyTemplateNumber,1456 -observationDiagnostic,1457 -observationGeneratingProcessIdentifier,1458 -observationType,1459 -observedData,1460 -obstype,1461 -oceanAtmosphereCoupling,1462 -oceanLevName,1463 -oceanStream,1464 -octetAtWichPackedDataBegins,1465 -offset,1466 -offsetAfterBitmap,1467 -offsetAfterCentreLocalSection,1468 -offsetAfterData,1469 -offsetAfterLocalSection,1470 -offsetAfterPadding,1471 -offsetBBitmap,1472 -offsetBSection5,1473 -offsetBSection6,1474 -offsetBSection9,1475 -offsetBeforeBitmap,1476 -offsetBeforeData,1477 -offsetBeforePL,1478 -offsetBeforePV,1479 -offsetDescriptors,1480 -offsetEndSection4,1481 -offsetFreeFormData,1482 -offsetFromOriginToInnerBound,1483 -offsetFromReferenceOfFirstTime,1484 -offsetICEFieldsUsed,1485 -offsetSection0,1486 -offsetSection1,1487 -offsetSection10,1488 -offsetSection11,1489 -offsetSection2,1490 -offsetSection3,1491 -offsetSection4,1492 -offsetSection5,1493 -offsetSection6,1494 -offsetSection7,1495 -offsetSection8,1496 -offsetSection9,1497 -offsetToEndOf4DvarWindow,1498 -offsetValuesBy,1499 -oldSubtype,1500 -one,1501 -oneConstant,1502 -oneMillionConstant,1503 -oneMinuteMeanMaximumRVR1,1504 -oneMinuteMeanMaximumRVR2,1505 -oneMinuteMeanMaximumRVR3,1506 -oneMinuteMeanMaximumRVR4,1507 -oneMinuteMeanMinimumRVR1,1508 -oneMinuteMeanMinimumRVR2,1509 -oneMinuteMeanMinimumRVR3,1510 -oneMinuteMeanMinimumRVR4,1511 -oneThousand,1512 -oper,1513 -operStream,1514 -operatingMode,1515 -operationalForecastCluster,1516 -optimisationTime,1517 -optimizeScaleFactor,1518 -optionalData,1519 -opttime,1520 -orderOfSPD,1521 -orderOfSpatialDifferencing,1522 -orientationOfTheGrid,1523 -orientationOfTheGridInDegrees,1524 -origin,1525 -originalParameterNumber,1526 -originalParameterTableNumber,1527 -originalSubCentreIdentifier,1528 -originatingCentre,1529 -originatingCentreOfAnalysis,1530 -originatorLocalTemplate,1531 -originatorLocalTemplateNumber,1532 -overlayTemplate,1533 -overlayTemplateNumber,1534 -pack,1535 -packedValues,1536 -packingError,1537 -packingType,1538 -padding,1539 -padding_grid1_1,1540 -padding_grid1_2,1541 -padding_grid3_1,1542 -padding_grid4_1,1543 -padding_grid50_1,1544 -padding_grid5_1,1545 -padding_grid90_1,1546 -padding_loc10_1,1547 -padding_loc12_1,1548 -padding_loc13_1,1549 -padding_loc13_2,1550 -padding_loc13_3,1551 -padding_loc13_4,1552 -padding_loc13_5,1553 -padding_loc14_1,1554 -padding_loc14_2,1555 -padding_loc15_1,1556 -padding_loc16_1,1557 -padding_loc17_2,1558 -padding_loc18_1,1559 -padding_loc18_2,1560 -padding_loc190_1,1561 -padding_loc191_1,1562 -padding_loc191_2,1563 -padding_loc191_3,1564 -padding_loc192_1,1565 -padding_loc19_2,1566 -padding_loc20_1,1567 -padding_loc21_1,1568 -padding_loc23_1,1569 -padding_loc244_1,1570 -padding_loc244_2,1571 -padding_loc244_3,1572 -padding_loc245_1,1573 -padding_loc245_2,1574 -padding_loc26_1,1575 -padding_loc27_1,1576 -padding_loc27_2,1577 -padding_loc28_1,1578 -padding_loc29_1,1579 -padding_loc29_2,1580 -padding_loc29_3,1581 -padding_loc2_1,1582 -padding_loc2_2,1583 -padding_loc30_1,1584 -padding_loc30_2,1585 -padding_loc37_1,1586 -padding_loc37_2,1587 -padding_loc38_1,1588 -padding_loc3_1,1589 -padding_loc4_2,1590 -padding_loc50_1,1591 -padding_loc5_1,1592 -padding_loc6_1,1593 -padding_loc7_1,1594 -padding_loc9_1,1595 -padding_loc9_2,1596 -padding_local11_1,1597 -padding_local1_1,1598 -padding_local1_31,1599 -padding_local40_1,1600 -padding_local_35,1601 -padding_local_7_1,1602 -padding_sec1_loc,1603 -padding_sec2_1,1604 -padding_sec2_2,1605 -padding_sec2_3,1606 -padding_sec3_1,1607 -padding_sec4_1,1608 -paleontologicalOffset,1609 -param,1610 -paramId,1611 -paramIdECMF,1612 -paramIdLegacyECMF,1613 -param_value_max,1614 -param_value_min,1615 -parameter,1616 -parameterCategory,1617 -parameterCode,1618 -parameterDiscipline,1619 -parameterIndicator,1620 -parameterName,1621 -parameterNumber,1622 -parameterUnits,1623 -parameters,1624 -parametersVersion,1625 -partitionItems,1626 -partitionNumber,1627 -partitionTable,1628 -partitions,1629 -pastTendencyRVR1,1630 -pastTendencyRVR2,1631 -pastTendencyRVR3,1632 -pastTendencyRVR4,1633 -patch_precip_fp,1634 -pentagonalResolutionParameterJ,1635 -pentagonalResolutionParameterK,1636 -pentagonalResolutionParameterM,1637 -percentileValue,1638 -periodOfTime,1639 -periodOfTimeIntervals,1640 -perturbationNumber,1641 -perturbedType,1642 -phase,1643 -physicalFlag1,1644 -physicalFlag2,1645 -physicalMeaningOfVerticalCoordinate,1646 -pl,1647 -platform,1648 -plusOneinOrdersOfSPD,1649 -points,1650 -postAuxiliary,1651 -postAuxiliaryArrayPresent,1652 -powerOfTenUsedToScaleClimateWeight,1653 -preBitmapValues,1654 -preProcessingParameter,1655 -precision,1656 -precisionOfTheUnpackedSubset,1657 -predefined_grid,1658 -predefined_grid_values,1659 -present,1660 -presentTrend1,1661 -presentTrend2,1662 -presentTrend3,1663 -presentTrend4,1664 -presentWeather1Present,1665 -presentWeather1PresentTrend1,1666 -presentWeather1PresentTrend2,1667 -presentWeather1PresentTrend3,1668 -presentWeather1PresentTrend4,1669 -presentWeather2Present,1670 -presentWeather2PresentTrend1,1671 -presentWeather2PresentTrend2,1672 -presentWeather2PresentTrend3,1673 -presentWeather2PresentTrend4,1674 -presentWeather3Present,1675 -presentWeather3PresentTrend1,1676 -presentWeather3PresentTrend2,1677 -presentWeather3PresentTrend3,1678 -presentWeather3PresentTrend4,1679 -pressureLevel,1680 -pressureUnits,1681 -primaryBitmap,1682 -primaryMissingValue,1683 -primaryMissingValueSubstitute,1684 -probContinous,1685 -probPoint,1686 -probProductDefinition,1687 -probabilityType,1688 -probabilityTypeName,1689 -process,1690 -produceLargeConstantFields,1691 -product,1692 -productDefinition,1693 -productDefinitionTemplateNumber,1694 -productDefinitionTemplateNumberInternal,1695 -productIdentifier,1696 -productType,1697 -productionStatusOfProcessedData,1698 -projSourceString,1699 -projString,1700 -projTargetString,1701 -projectLocalTemplate,1702 -projectLocalTemplateNumber,1703 -projectionCenterFlag,1704 -projectionCentreFlag,1705 -pv,1706 -pvlLocation,1707 -qfe,1708 -qfePresent,1709 -qfeUnits,1710 -qnh,1711 -qnhAPresent,1712 -qnhPresent,1713 -qnhUnits,1714 -qualityControl,1715 -qualityControlIndicator,1716 -qualityValueAssociatedWithParameter,1717 -quantile,1718 -radialAngularSpacing,1719 -radials,1720 -radius,1721 -radiusInMetres,1722 -radiusOfCentralCluster,1723 -radiusOfClusterDomain,1724 -radiusOfTheEarth,1725 -range,1726 -rangeBinSpacing,1727 -rdbDateTime,1728 -rdbSubtype,1729 -rdbType,1730 -rdb_key,1731 -rdbtime,1732 -rdbtimeDate,1733 -rdbtimeDay,1734 -rdbtimeHour,1735 -rdbtimeMinute,1736 -rdbtimeMonth,1737 -rdbtimeSecond,1738 -rdbtimeTime,1739 -rdbtimeYear,1740 -realPart,1741 -realPartOf00,1742 -recDateTime,1743 -recentWeather,1744 -recentWeatherTry,1745 -rectime,1746 -rectimeDay,1747 -rectimeHour,1748 -rectimeMinute,1749 -rectimeSecond,1750 -reducedGrid,1751 -refdate,1752 -reference,1753 -referenceDate,1754 -referenceForGroupLengths,1755 -referenceForGroupWidths,1756 -referenceOfLengths,1757 -referenceOfWidths,1758 -referenceReflectivityForEchoTop,1759 -referenceSampleInterval,1760 -referenceStep,1761 -referenceValue,1762 -referenceValueError,1763 -reflectivityCalibrationConstant,1764 -remarkPresent,1765 -reportType,1766 -representationMode,1767 -representationType,1768 -representativeMember,1769 -reserved,1770 -reserved1,1771 -reserved2,1772 -reserved3,1773 -reservedNeedNotBePresent,1774 -reservedOctet,1775 -reservedSection2,1776 -reservedSection3,1777 -reservedSection4,1778 -resolutionAndComponentFlags,1779 -resolutionAndComponentFlags1,1780 -resolutionAndComponentFlags2,1781 -resolutionAndComponentFlags3,1782 -resolutionAndComponentFlags4,1783 -resolutionAndComponentFlags6,1784 -resolutionAndComponentFlags7,1785 -resolutionAndComponentFlags8,1786 -rootGroupObjectHeaderAddress,1787 -rootGroupSymbolTableEntry,1788 -rootTablesDir,1789 -roundedMarsLatitude,1790 -roundedMarsLevelist,1791 -roundedMarsLongitude,1792 -runwayBrakingActionState1,1793 -runwayBrakingActionState2,1794 -runwayBrakingActionState3,1795 -runwayBrakingActionState4,1796 -runwayDepositCodeState1,1797 -runwayDepositCodeState2,1798 -runwayDepositCodeState3,1799 -runwayDepositCodeState4,1800 -runwayDepositState1,1801 -runwayDepositState2,1802 -runwayDepositState3,1803 -runwayDepositState4,1804 -runwayDepthOfDepositCodeState1,1805 -runwayDepthOfDepositCodeState2,1806 -runwayDepthOfDepositCodeState3,1807 -runwayDepthOfDepositCodeState4,1808 -runwayDepthOfDepositState1,1809 -runwayDepthOfDepositState2,1810 -runwayDepthOfDepositState3,1811 -runwayDepthOfDepositState4,1812 -runwayDesignatorRVR1,1813 -runwayDesignatorRVR2,1814 -runwayDesignatorRVR3,1815 -runwayDesignatorRVR4,1816 -runwayDesignatorState1,1817 -runwayDesignatorState2,1818 -runwayDesignatorState3,1819 -runwayDesignatorState4,1820 -runwayExtentOfContaminationCodeState1,1821 -runwayExtentOfContaminationCodeState2,1822 -runwayExtentOfContaminationCodeState3,1823 -runwayExtentOfContaminationCodeState4,1824 -runwayExtentOfContaminationState1,1825 -runwayExtentOfContaminationState2,1826 -runwayExtentOfContaminationState3,1827 -runwayExtentOfContaminationState4,1828 -runwayFrictionCodeValueState1,1829 -runwayFrictionCodeValueState2,1830 -runwayFrictionCodeValueState3,1831 -runwayFrictionCodeValueState4,1832 -runwayFrictionCoefficientCodeState1,1833 -runwayFrictionCoefficientCodeState2,1834 -runwayFrictionCoefficientCodeState3,1835 -runwayFrictionCoefficientCodeState4,1836 -runwayFrictionCoefficientState1,1837 -runwayFrictionCoefficientState2,1838 -runwayFrictionCoefficientState3,1839 -runwayFrictionCoefficientState4,1840 -runwaySideCodeState1,1841 -runwaySideCodeState2,1842 -runwaySideCodeState3,1843 -runwaySideCodeState4,1844 -runwayState,1845 -sampleSizeOfModelClimate,1846 -satelliteID,1847 -satelliteIdentifier,1848 -satelliteNumber,1849 -satelliteSeries,1850 -scaleFactorAtReferencePoint,1851 -scaleFactorOfCentralWaveNumber,1852 -scaleFactorOfDistanceFromEnsembleMean,1853 -scaleFactorOfDistributionFunctionParameter,1854 -scaleFactorOfEarthMajorAxis,1855 -scaleFactorOfEarthMinorAxis,1856 -scaleFactorOfFirstFixedSurface,1857 -scaleFactorOfFirstSize,1858 -scaleFactorOfFirstWavelength,1859 -scaleFactorOfLengthOfSemiMajorAxis,1860 -scaleFactorOfLengthOfSemiMinorAxis,1861 -scaleFactorOfLowerLimit,1862 -scaleFactorOfMajorAxisOfOblateSpheroidEarth,1863 -scaleFactorOfMinorAxisOfOblateSpheroidEarth,1864 -scaleFactorOfPrimeMeridianOffset,1865 -scaleFactorOfRadiusOfSphericalEarth,1866 -scaleFactorOfSecondFixedSurface,1867 -scaleFactorOfSecondSize,1868 -scaleFactorOfSecondWavelength,1869 -scaleFactorOfStandardDeviation,1870 -scaleFactorOfStandardDeviationInTheCluster,1871 -scaleFactorOfUpperLimit,1872 -scaleValuesBy,1873 -scaledDirections,1874 -scaledFrequencies,1875 -scaledValueOfCentralWaveNumber,1876 -scaledValueOfDistanceFromEnsembleMean,1877 -scaledValueOfDistributionFunctionParameter,1878 -scaledValueOfEarthMajorAxis,1879 -scaledValueOfEarthMinorAxis,1880 -scaledValueOfFirstFixedSurface,1881 -scaledValueOfFirstSize,1882 -scaledValueOfFirstWavelength,1883 -scaledValueOfLengthOfSemiMajorAxis,1884 -scaledValueOfLengthOfSemiMinorAxis,1885 -scaledValueOfLowerLimit,1886 -scaledValueOfMajorAxisOfOblateSpheroidEarth,1887 -scaledValueOfMinorAxisOfOblateSpheroidEarth,1888 -scaledValueOfPrimeMeridianOffset,1889 -scaledValueOfRadiusOfSphericalEarth,1890 -scaledValueOfSecondFixedSurface,1891 -scaledValueOfSecondSize,1892 -scaledValueOfSecondWavelength,1893 -scaledValueOfStandardDeviation,1894 -scaledValueOfStandardDeviationInTheCluster,1895 -scaledValueOfUpperLimit,1896 -scalingFactorForFrequencies,1897 -scanPosition,1898 -scanningMode,1899 -scanningMode4,1900 -scanningMode5,1901 -scanningMode6,1902 -scanningMode7,1903 -scanningMode8,1904 -scanningModeForOneDiamond,1905 -sd,1906 -second,1907 -secondDimension,1908 -secondDimensionCoordinateValueDefinition,1909 -secondDimensionPhysicalSignificance,1910 -secondLatitude,1911 -secondLatitudeInDegrees,1912 -secondOfEndOfOverallTimeInterval,1913 -secondOfForecast,1914 -secondOfModelVersion,1915 -secondOrderFlags,1916 -secondOrderOfDifferentWidth,1917 -secondOrderValuesDifferentWidths,1918 -secondaryBitMap,1919 -secondaryBitmap,1920 -secondaryBitmapPresent,1921 -secondaryBitmaps,1922 -secondaryBitmapsCount,1923 -secondaryBitmapsSize,1924 -secondaryMissingValue,1925 -secondaryMissingValueSubstitute,1926 -secondsOfAnalysis,1927 -secondsOfReference,1928 -section,1929 -section0Length,1930 -section0Pointer,1931 -section1,1932 -section10Length,1933 -section10Pointer,1934 -section11Length,1935 -section11Pointer,1936 -section1Flags,1937 -section1Length,1938 -section1Padding,1939 -section1Pointer,1940 -section2Length,1941 -section2Padding,1942 -section2Pointer,1943 -section2Present,1944 -section2Used,1945 -section3Flags,1946 -section3Length,1947 -section3Padding,1948 -section3Pointer,1949 -section3UniqueIdentifier,1950 -section4,1951 -section4Length,1952 -section4Padding,1953 -section4Pointer,1954 -section4UniqueIdentifier,1955 -section5,1956 -section5Length,1957 -section5Pointer,1958 -section5UniqueIdentifier,1959 -section6,1960 -section6Length,1961 -section6Pointer,1962 -section6UniqueIdentifier,1963 -section7,1964 -section7Length,1965 -section7Pointer,1966 -section7UniqueIdentifier,1967 -section8,1968 -section8Length,1969 -section8Pointer,1970 -section8UniqueIdentifier,1971 -section9Length,1972 -section9Pointer,1973 -section9UniqueIdentifier,1974 -sectionLengthLimitForEnsembles,1975 -sectionLengthLimitForProbability,1976 -sectionNumber,1977 -sectionPosition,1978 -section_01,1979 -section_02,1980 -section_03,1981 -section_04,1982 -section_05,1983 -section_06,1984 -section_07,1985 -section_08,1986 -section_09,1987 -section_1,1988 -section_10,1989 -section_11,1990 -section_2,1991 -section_3,1992 -section_4,1993 -section_5,1994 -section_6,1995 -section_7,1996 -section_8,1997 -selectStepTemplateInstant,1998 -selectStepTemplateInterval,1999 -sensitiveAreaDomain,2000 -sequences,2001 -setBitsPerValue,2002 -setCalendarId,2003 -setDecimalPrecision,2004 -setLocalDefinition,2005 -setToMissingIfOutOfRange,2006 -sfc_levtype,2007 -shapeOfTheEarth,2008 -shapeOfVerificationArea,2009 -shortName,2010 -shortNameECMF,2011 -shortNameLegacyECMF,2012 -short_name,2013 -signature,2014 -significanceOfReferenceDateAndTime,2015 -significanceOfReferenceTime,2016 -simpleThinningMissingRadius,2017 -simpleThinningSkip,2018 -simpleThinningStart,2019 -siteElevation,2020 -siteId,2021 -siteLatitude,2022 -siteLongitude,2023 -sizeOfLength,2024 -sizeOfOffsets,2025 -sizeOfPostAuxiliaryArray,2026 -sizeOfPostAuxiliaryArrayPlusOne,2027 -skew,2028 -skewness,2029 -skipExtraKeyAttributes,2030 -sort,2031 -sourceOfGridDefinition,2032 -sourceSinkChemicalPhysicalProcess,2033 -southEastLatitudeOfLPOArea,2034 -southEastLatitudeOfVerficationArea,2035 -southEastLongitudeOfLPOArea,2036 -southEastLongitudeOfVerficationArea,2037 -southLatitudeOfCluster,2038 -southLatitudeOfDomainOfTubing,2039 -southPoleOnProjectionPlane,2040 -southernLatitudeOfClusterDomain,2041 -southernLatitudeOfDomain,2042 -sp1,2043 -sp2,2044 -sp3,2045 -spaceUnitFlag,2046 -spacingOfBinsAlongRadials,2047 -spare,2048 -spare2,2049 -spatialProcessing,2050 -spatialSmoothingOfProduct,2051 -spectralDataRepresentationMode,2052 -spectralDataRepresentationType,2053 -spectralMode,2054 -spectralType,2055 -sphericalHarmonics,2056 -standardDeviation,2057 -standardParallel,2058 -standardParallelInDegrees,2059 -standardParallelInMicrodegrees,2060 -startOfHeaders,2061 -startOfMessage,2062 -startOfRange,2063 -startStep,2064 -startStepInHours,2065 -startTimeStep,2066 -startingAzimuth,2067 -statisticalProcess,2068 -statisticalProcessesList,2069 -statistics,2070 -status,2071 -step,2072 -stepForClustering,2073 -stepHumanReadable,2074 -stepInHours,2075 -stepRange,2076 -stepRangeInHours,2077 -stepType,2078 -stepTypeForConversion,2079 -stepTypeInternal,2080 -stepUnits,2081 -stepZero,2082 -stream,2083 -streamOfAnalysis,2084 -stretchingFactor,2085 -stretchingFactorScaled,2086 -stringValues,2087 -subCentre,2088 -subDefinitions1,2089 -subDefinitions2,2090 -subLocalDefinition1,2091 -subLocalDefinition2,2092 -subLocalDefinitionLength1,2093 -subLocalDefinitionLength2,2094 -subLocalDefinitionNumber1,2095 -subLocalDefinitionNumber2,2096 -subSetJ,2097 -subSetK,2098 -subSetM,2099 -subcentreOfAnalysis,2100 -subdivisionsOfBasicAngle,2101 -suiteName,2102 -superblockExtensionAddress,2103 -swapScanningLat,2104 -swapScanningLon,2105 -swapScanningX,2106 -swapScanningY,2107 -system,2108 -systemNumber,2109 -t,2110 -table2Version,2111 -tableCode,2112 -tableNumber,2113 -tableReference,2114 -tablesLocalDir,2115 -tablesMasterDir,2116 -tablesVersion,2117 -tablesVersionLatest,2118 -targetCompressionRatio,2119 -td,2120 -tempPressureUnits,2121 -temperature,2122 -temperatureAndDewpointPresent,2123 -templatesLocalDir,2124 -templatesMasterDir,2125 -theHindcastMarsStream,2126 -theMessage,2127 -thisExperimentVersionNumber,2128 -thisMarsClass,2129 -thisMarsStream,2130 -thisMarsType,2131 -thousand,2132 -three,2133 -threshold,2134 -thresholdIndicator,2135 -tiggeCentre,2136 -tiggeLAMName,2137 -tiggeLocalVersion,2138 -tiggeModel,2139 -tiggeSection,2140 -tiggeSuiteID,2141 -tigge_name,2142 -tigge_short_name,2143 -tileClassification,2144 -tileIndex,2145 -time,2146 -timeCoordinateDefinition,2147 -timeDomainTemplate,2148 -timeDomainTemplateNumber,2149 -timeIncrement,2150 -timeIncrementBetweenSuccessiveFields,2151 -timeOfAnalysis,2152 -timeOfForecast,2153 -timeOfModelVersion,2154 -timeOfReference,2155 -timeRangeIndicator,2156 -timeRangeIndicatorFromStepRange,2157 -timeUnitFlag,2158 -timerepres,2159 -topLevel,2160 -total,2161 -totalAerosolBinsNumbers,2162 -totalInitialConditions,2163 -totalLength,2164 -totalNumber,2165 -totalNumberOfClusters,2166 -totalNumberOfDataValuesMissingInStatisticalProcess,2167 -totalNumberOfDirections,2168 -totalNumberOfForecastProbabilities,2169 -totalNumberOfFrequencies,2170 -totalNumberOfGridPoints,2171 -totalNumberOfIterations,2172 -totalNumberOfRepetitions,2173 -totalNumberOfTileAttributePairs,2174 -totalNumberOfTubes,2175 -totalNumberOfValuesInUnpackedSubset,2176 -totalNumberOfdimensions,2177 -treatmentOfMissingData,2178 -true,2179 -trueLengthOfLastGroup,2180 -truncateDegrees,2181 -truncateLaplacian,2182 -tsectionNumber3,2183 -tsectionNumber4,2184 -tsectionNumber5,2185 -tubeDomain,2186 -tubeNumber,2187 -two,2188 -twoOrdersOfSPD,2189 -type,2190 -typeOfAnalysis,2191 -typeOfAuxiliaryInformation,2192 -typeOfCalendar,2193 -typeOfCompressionUsed,2194 -typeOfDistributionFunction,2195 -typeOfEnsembleForecast,2196 -typeOfEnsembleMember,2197 -typeOfFirstFixedSurface,2198 -typeOfGeneratingProcess,2199 -typeOfGrid,2200 -typeOfHorizontalLine,2201 -typeOfIntervalForFirstAndSecondSize,2202 -typeOfIntervalForFirstAndSecondWavelength,2203 -typeOfLevel,2204 -typeOfLevelECMF,2205 -typeOfOriginalFieldValues,2206 -typeOfPacking,2207 -typeOfPostProcessing,2208 -typeOfPreProcessing,2209 -typeOfProcessedData,2210 -typeOfSSTFieldUsed,2211 -typeOfSecondFixedSurface,2212 -typeOfSizeInterval,2213 -typeOfStatisticalPostProcessingOfEnsembleMembers,2214 -typeOfStatisticalProcessing,2215 -typeOfTimeIncrement,2216 -typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing,2217 -typeOfWavelengthInterval,2218 -typicalCentury,2219 -typicalDate,2220 -typicalDateTime,2221 -typicalDay,2222 -typicalHour,2223 -typicalMinute,2224 -typicalMonth,2225 -typicalSecond,2226 -typicalTime,2227 -typicalYear,2228 -typicalYear2,2229 -typicalYearOfCentury,2230 -uco,2231 -ucs,2232 -unexpandedDescriptors,2233 -unexpandedDescriptorsEncoded,2234 -unitOfOffsetFromReferenceTime,2235 -unitOfTime,2236 -unitOfTimeIncrement,2237 -unitOfTimeRange,2238 -units,2239 -unitsBias,2240 -unitsConversionOffset,2241 -unitsConversionScaleFactor,2242 -unitsDecimalScaleFactor,2243 -unitsECMF,2244 -unitsFactor,2245 -unitsLegacyECMF,2246 -unitsOfFirstFixedSurface,2247 -unitsOfSecondFixedSurface,2248 -unknown,2249 -unpack,2250 -unpackedError,2251 -unpackedSubsetPrecision,2252 -unpackedValues,2253 -unsignedIntegers,2254 -unusedBitsInBitmap,2255 -updateSequenceNumber,2256 -upperLimit,2257 -upperRange,2258 -upperThreshold,2259 -upperThresholdValue,2260 -userDateEnd,2261 -userDateStart,2262 -userDateTimeEnd,2263 -userDateTimeStart,2264 -userTimeEnd,2265 -userTimeStart,2266 -uuidOfHGrid,2267 -uuidOfVGrid,2268 -uvRelativeToGrid,2269 -validityDate,2270 -validityTime,2271 -values,2272 -variationOfVisibility,2273 -variationOfVisibilityDirection,2274 -variationOfVisibilityDirectionAngle,2275 -variationOfVisibilityDirectionTrend1,2276 -variationOfVisibilityDirectionTrend2,2277 -variationOfVisibilityDirectionTrend3,2278 -variationOfVisibilityDirectionTrend4,2279 -variationOfVisibilityTrend1,2280 -variationOfVisibilityTrend2,2281 -variationOfVisibilityTrend3,2282 -variationOfVisibilityTrend4,2283 -varno,2284 -verificationDate,2285 -verificationMonth,2286 -verificationYear,2287 -verifyingMonth,2288 -version,2289 -versionNumOfFilesFreeSpaceStorage,2290 -versionNumOfRootGroupSymbolTableEntry,2291 -versionNumOfSharedHeaderMessageFormat,2292 -versionNumberOfExperimentalSuite,2293 -versionNumberOfGribLocalTables,2294 -versionNumberOfSuperblock,2295 -versionOfModelClimate,2296 -verticalCoordinate,2297 -verticalCoordinateDefinition,2298 -verticalDomainTemplate,2299 -verticalDomainTemplateNumber,2300 -verticalVisibility,2301 -verticalVisibilityCoded,2302 -visibility,2303 -visibilityInKilometresTrend1,2304 -visibilityInKilometresTrend2,2305 -visibilityInKilometresTrend3,2306 -visibilityInKilometresTrend4,2307 -visibilityTrend1,2308 -visibilityTrend2,2309 -visibilityTrend3,2310 -visibilityTrend4,2311 -waveDomain,2312 -weightAppliedToClimateMonth1,2313 -westLongitudeOfCluster,2314 -westLongitudeOfDomainOfTubing,2315 -westernLongitudeOfClusterDomain,2316 -westernLongitudeOfDomain,2317 -widthOfFirstOrderValues,2318 -widthOfLengths,2319 -widthOfSPD,2320 -widthOfWidths,2321 -windDirection,2322 -windDirectionTrend1,2323 -windDirectionTrend2,2324 -windDirectionTrend3,2325 -windDirectionTrend4,2326 -windGust,2327 -windGustTrend1,2328 -windGustTrend2,2329 -windGustTrend3,2330 -windGustTrend4,2331 -windPresent,2332 -windSpeed,2333 -windSpeedTrend1,2334 -windSpeedTrend2,2335 -windSpeedTrend3,2336 -windSpeedTrend4,2337 -windUnits,2338 -windUnitsTrend1,2339 -windUnitsTrend2,2340 -windUnitsTrend3,2341 -windUnitsTrend4,2342 -windVariableDirection,2343 -windVariableDirectionTrend1,2344 -windVariableDirectionTrend2,2345 -windVariableDirectionTrend3,2346 -windVariableDirectionTrend4,2347 -wrongPadding,2348 -xCoordinateOfOriginOfSectorImage,2349 -xCoordinateOfSubSatellitePoint,2350 -xDirectionGridLength,2351 -xDirectionGridLengthInMetres,2352 -xDirectionGridLengthInMillimetres,2353 -xFirst,2354 -xLast,2355 -yCoordinateOfOriginOfSectorImage,2356 -yCoordinateOfSubSatellitePoint,2357 -yDirectionGridLength,2358 -yDirectionGridLengthInMetres,2359 -yDirectionGridLengthInMillimetres,2360 -yFirst,2361 -yLast,2362 -year,2363 -yearOfAnalysis,2364 -yearOfCentury,2365 -yearOfEndOfOverallTimeInterval,2366 -yearOfForecast,2367 -yearOfModelVersion,2368 -yearOfReference,2369 -zero,2370 -zeros,2371 +localDate,1116 +localDateTime,1117 +localDay,1118 +localDecimalScaleFactor,1119 +localDefNumberOne,1120 +localDefNumberTwo,1121 +localDefinition,1122 +localDefinitionNumber,1123 +localDir,1124 +localExtensionPadding,1125 +localFlag,1126 +localFlagLatestVersion,1127 +localHour,1128 +localLatitude,1129 +localLatitude1,1130 +localLatitude2,1131 +localLongitude,1132 +localLongitude1,1133 +localLongitude2,1134 +localMinute,1135 +localMonth,1136 +localNumberOfObservations,1137 +localSecond,1138 +localSection,1139 +localSectionPresent,1140 +localTablesVersion,1141 +localTablesVersionNumber,1142 +localTime,1143 +localUsePresent,1144 +localYear,1145 +local_padding,1146 +local_use,1147 +logTransform,1148 +longitude,1149 +longitudeFirstInDegrees,1150 +longitudeLastInDegrees,1151 +longitudeOfCentralPointInClusterDomain,1152 +longitudeOfCentrePoint,1153 +longitudeOfCentrePointInDegrees,1154 +longitudeOfFirstDiamondCenterLine,1155 +longitudeOfFirstDiamondCentreLine,1156 +longitudeOfFirstDiamondCentreLineInDegrees,1157 +longitudeOfFirstGridPoint,1158 +longitudeOfFirstGridPointInDegrees,1159 +longitudeOfIcosahedronPole,1160 +longitudeOfLastGridPoint,1161 +longitudeOfLastGridPointInDegrees,1162 +longitudeOfNorthWestCornerOfArea,1163 +longitudeOfReferencePoint,1164 +longitudeOfReferencePointInDegrees,1165 +longitudeOfSouthEastCornerOfArea,1166 +longitudeOfSouthernPole,1167 +longitudeOfSouthernPoleInDegrees,1168 +longitudeOfStretchingPole,1169 +longitudeOfStretchingPoleInDegrees,1170 +longitudeOfSubSatellitePoint,1171 +longitudeOfSubSatellitePointInDegrees,1172 +longitudeOfTangencyPoint,1173 +longitudeOfThePoleOfStretching,1174 +longitudeOfThePolePoint,1175 +longitudeOfThePolePointInDegrees,1176 +longitudeOfTheSouthernPoleOfProjection,1177 +longitudeSexagesimal,1178 +longitudes,1179 +longitudesList,1180 +longitudinalDirectionGridLength,1181 +lowerLimit,1182 +lowerRange,1183 +lowerThreshold,1184 +lowerThresholdValue,1185 +ls_labeling,1186 +lsdate_bug,1187 +m,1188 +mAngleMultiplier,1189 +mBasicAngle,1190 +mars,1191 +marsClass,1192 +marsClass1,1193 +marsClass2,1194 +marsDir,1195 +marsDomain,1196 +marsEndStep,1197 +marsExperimentOffset,1198 +marsExpver,1199 +marsForecastMonth,1200 +marsGrid,1201 +marsIdent,1202 +marsKeywords,1203 +marsKeywords1,1204 +marsLamModel,1205 +marsLatitude,1206 +marsLevel,1207 +marsLevelist,1208 +marsLongitude,1209 +marsModel,1210 +marsParam,1211 +marsQuantile,1212 +marsRange,1213 +marsStartStep,1214 +marsStep,1215 +marsStream,1216 +marsStream1,1217 +marsStream2,1218 +marsType,1219 +marsType1,1220 +marsType2,1221 +mars_labeling,1222 +mask,1223 +masterDir,1224 +masterTableNumber,1225 +masterTablesVersionNumber,1226 +masterTablesVersionNumberLatest,1227 +matchAerosolBinNumber,1228 +matchAerosolPacking,1229 +matchLandType,1230 +matchSort,1231 +matchTimeRepres,1232 +matrixBitmapsPresent,1233 +matrixOfValues,1234 +max,1235 +maximum,1236 +md5Data,1237 +md5DataSection,1238 +md5GridSection,1239 +md5Headers,1240 +md5Product,1241 +md5Section1,1242 +md5Section10,1243 +md5Section2,1244 +md5Section3,1245 +md5Section4,1246 +md5Section5,1247 +md5Section6,1248 +md5Section7,1249 +md5Section8,1250 +md5Section9,1251 +md5Structure,1252 +md5TimeDomainSection,1253 +meanRVR1,1254 +meanRVR2,1255 +meanRVR3,1256 +meanRVR4,1257 +meanSize,1258 +meanValueRVR1,1259 +meanValueRVR2,1260 +meanValueRVR3,1261 +meanValueRVR4,1262 +meaningOfVerticalCoordinate,1263 +memberNumber,1264 +messageLength,1265 +metadata,1266 +method,1267 +methodNumber,1268 +million,1269 +min,1270 +minimum,1271 +minute,1272 +minuteOfAnalysis,1273 +minuteOfEndOfOverallTimeInterval,1274 +minuteOfForecast,1275 +minuteOfModelVersion,1276 +minuteOfReference,1277 +minutesAfterDataCutoff,1278 +minutesAfterReferenceTimeOfDataCutoff,1279 +missingDataFlag,1280 +missingValue,1281 +missingValueManagement,1282 +missingValueManagementUsed,1283 +missingValuesPresent,1284 +mixedCoordinateDefinition,1285 +mixedCoordinateFieldFlag,1286 +modeNumber,1287 +model,1288 +modelErrorType,1289 +modelIdentifier,1290 +modelName,1291 +modelVersionDate,1292 +modelVersionTime,1293 +molarMass,1294 +month,1295 +monthOfAnalysis,1296 +monthOfEndOfOverallTimeInterval,1297 +monthOfForecast,1298 +monthOfModelVersion,1299 +monthOfReference,1300 +monthlyVerificationDate,1301 +monthlyVerificationMonth,1302 +monthlyVerificationTime,1303 +monthlyVerificationYear,1304 +multiplicationFactorForLatLong,1305 +mybits,1306 +n,1307 +n2,1308 +n3,1309 +na,1310 +name,1311 +nameECMF,1312 +nameLegacyECMF,1313 +nameOfFirstFixedSurface,1314 +nameOfSecondFixedSurface,1315 +names,1316 +nd,1317 +neitherPresent,1318 +newSubtype,1319 +nlev,1320 +nnn,1321 +normAtFinalTime,1322 +normAtInitialTime,1323 +normal,1324 +northLatitudeOfCluster,1325 +northLatitudeOfDomainOfTubing,1326 +northWestLatitudeOfLPOArea,1327 +northWestLatitudeOfVerficationArea,1328 +northWestLongitudeOfLPOArea,1329 +northWestLongitudeOfVerficationArea,1330 +northernLatitudeOfClusterDomain,1331 +northernLatitudeOfDomain,1332 +nosigPresent,1333 +notDecoded,1334 +nt,1335 +number,1336 +numberInHorizontalCoordinates,1337 +numberInMixedCoordinateDefinition,1338 +numberInTheAuxiliaryArray,1339 +numberInTheGridCoordinateList,1340 +numberIncludedInAverage,1341 +numberMissingFromAveragesOrAccumulations,1342 +numberOfAnalysis,1343 +numberOfBits,1344 +numberOfBitsContainingEachPackedValue,1345 +numberOfBitsForScaledGroupLengths,1346 +numberOfBitsUsedForTheGroupWidths,1347 +numberOfBitsUsedForTheScaledGroupLengths,1348 +numberOfBytesInLocalDefinition,1349 +numberOfBytesOfFreeFormatData,1350 +numberOfBytesPerInteger,1351 +numberOfCategories,1352 +numberOfCharacters,1353 +numberOfChars,1354 +numberOfClusterHighResolution,1355 +numberOfClusterLowResolution,1356 +numberOfClusters,1357 +numberOfCodedValues,1358 +numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction,1359 +numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction,1360 +numberOfColumns,1361 +numberOfComponents,1362 +numberOfContributingSpectralBands,1363 +numberOfControlForecastTube,1364 +numberOfCoordinatesValues,1365 +numberOfDataBinsAlongRadials,1366 +numberOfDataMatrices,1367 +numberOfDataPoints,1368 +numberOfDataPointsExpected,1369 +numberOfDataValues,1370 +numberOfDaysInClimateSamplingWindow,1371 +numberOfDiamonds,1372 +numberOfDirections,1373 +numberOfDistinctSection3s,1374 +numberOfDistinctSection4s,1375 +numberOfDistinctSection5s,1376 +numberOfDistinctSection6s,1377 +numberOfDistinctSection7s,1378 +numberOfDistinctSection8s,1379 +numberOfDistinctSection9s,1380 +numberOfDistributionFunctionParameters,1381 +numberOfEffectiveValues,1382 +numberOfFloats,1383 +numberOfForcasts,1384 +numberOfForecastsInCluster,1385 +numberOfForecastsInEnsemble,1386 +numberOfForecastsInTheCluster,1387 +numberOfForecastsInTube,1388 +numberOfFrequencies,1389 +numberOfGridInReference,1390 +numberOfGridUsed,1391 +numberOfGroups,1392 +numberOfGroupsOfDataValues,1393 +numberOfHorizontalPoints,1394 +numberOfIntegers,1395 +numberOfInts,1396 +numberOfIterations,1397 +numberOfLocalDefinitions,1398 +numberOfLogicals,1399 +numberOfMembersInCluster,1400 +numberOfMembersInEnsemble,1401 +numberOfMissing,1402 +numberOfMissingInStatisticalProcess,1403 +numberOfMissingValues,1404 +numberOfModeOfDistribution,1405 +numberOfModels,1406 +numberOfOctectsForNumberOfPoints,1407 +numberOfOctetsExtraDescriptors,1408 +numberOfOperationalForecastTube,1409 +numberOfPackedValues,1410 +numberOfParallelsBetweenAPoleAndTheEquator,1411 +numberOfParametersUsedForClustering,1412 +numberOfPartitions,1413 +numberOfPoints,1414 +numberOfPointsAlongAMeridian,1415 +numberOfPointsAlongAParallel,1416 +numberOfPointsAlongFirstAxis,1417 +numberOfPointsAlongSecondAxis,1418 +numberOfPointsAlongTheXAxis,1419 +numberOfPointsAlongTheYAxis,1420 +numberOfPointsAlongXAxis,1421 +numberOfPointsAlongXAxisInCouplingArea,1422 +numberOfPointsAlongYAxis,1423 +numberOfPointsAlongYAxisInCouplingArea,1424 +numberOfPointsInDomain,1425 +numberOfPointsUsed,1426 +numberOfPressureLevelsUsedForClustering,1427 +numberOfRadarSitesUsed,1428 +numberOfRadials,1429 +numberOfReforecastYearsInModelClimate,1430 +numberOfRemaininChars,1431 +numberOfRepresentativeMember,1432 +numberOfReservedBytes,1433 +numberOfRows,1434 +numberOfSecondOrderPackedValues,1435 +numberOfSection,1436 +numberOfSingularVectorsComputed,1437 +numberOfSingularVectorsEvolved,1438 +numberOfStepsUsedForClustering,1439 +numberOfSubsets,1440 +numberOfTensOfThousandsOfYearsOfOffset,1441 +numberOfTimeRange,1442 +numberOfTimeSteps,1443 +numberOfUnexpandedDescriptors,1444 +numberOfUnusedBitsAtEndOfSection3,1445 +numberOfUsedSpatialTiles,1446 +numberOfUsedTileAttributes,1447 +numberOfUsefulPointsAlongXAxis,1448 +numberOfUsefulPointsAlongYAxis,1449 +numberOfVGridUsed,1450 +numberOfValues,1451 +numberOfVerticalCoordinateValues,1452 +numberOfVerticalGridDescriptors,1453 +numberOfVerticalPoints,1454 +numberingOrderOfDiamonds,1455 +numericValues,1456 +observablePropertyTemplate,1457 +observablePropertyTemplateNumber,1458 +observationDiagnostic,1459 +observationGeneratingProcessIdentifier,1460 +observationType,1461 +observedData,1462 +obstype,1463 +oceanAtmosphereCoupling,1464 +oceanLevName,1465 +oceanStream,1466 +octetAtWichPackedDataBegins,1467 +offset,1468 +offsetAfterBitmap,1469 +offsetAfterCentreLocalSection,1470 +offsetAfterData,1471 +offsetAfterLocalSection,1472 +offsetAfterPadding,1473 +offsetBBitmap,1474 +offsetBSection5,1475 +offsetBSection6,1476 +offsetBSection9,1477 +offsetBeforeBitmap,1478 +offsetBeforeData,1479 +offsetBeforePL,1480 +offsetBeforePV,1481 +offsetDescriptors,1482 +offsetEndSection4,1483 +offsetFreeFormData,1484 +offsetFromOriginToInnerBound,1485 +offsetFromReferenceOfFirstTime,1486 +offsetICEFieldsUsed,1487 +offsetSection0,1488 +offsetSection1,1489 +offsetSection10,1490 +offsetSection11,1491 +offsetSection2,1492 +offsetSection3,1493 +offsetSection4,1494 +offsetSection5,1495 +offsetSection6,1496 +offsetSection7,1497 +offsetSection8,1498 +offsetSection9,1499 +offsetToEndOf4DvarWindow,1500 +offsetValuesBy,1501 +oldSubtype,1502 +one,1503 +oneConstant,1504 +oneMillionConstant,1505 +oneMinuteMeanMaximumRVR1,1506 +oneMinuteMeanMaximumRVR2,1507 +oneMinuteMeanMaximumRVR3,1508 +oneMinuteMeanMaximumRVR4,1509 +oneMinuteMeanMinimumRVR1,1510 +oneMinuteMeanMinimumRVR2,1511 +oneMinuteMeanMinimumRVR3,1512 +oneMinuteMeanMinimumRVR4,1513 +oneThousand,1514 +oper,1515 +operStream,1516 +operatingMode,1517 +operationalForecastCluster,1518 +optimisationTime,1519 +optimizeScaleFactor,1520 +optionalData,1521 +opttime,1522 +orderOfSPD,1523 +orderOfSpatialDifferencing,1524 +orientationOfTheGrid,1525 +orientationOfTheGridInDegrees,1526 +origin,1527 +originalParameterNumber,1528 +originalParameterTableNumber,1529 +originalSubCentreIdentifier,1530 +originatingCentre,1531 +originatingCentreOfAnalysis,1532 +originatorLocalTemplate,1533 +originatorLocalTemplateNumber,1534 +overlayTemplate,1535 +overlayTemplateNumber,1536 +pack,1537 +packedValues,1538 +packingError,1539 +packingType,1540 +padding,1541 +padding_grid1_1,1542 +padding_grid1_2,1543 +padding_grid3_1,1544 +padding_grid4_1,1545 +padding_grid50_1,1546 +padding_grid5_1,1547 +padding_grid90_1,1548 +padding_loc10_1,1549 +padding_loc12_1,1550 +padding_loc13_1,1551 +padding_loc13_2,1552 +padding_loc13_3,1553 +padding_loc13_4,1554 +padding_loc13_5,1555 +padding_loc14_1,1556 +padding_loc14_2,1557 +padding_loc15_1,1558 +padding_loc16_1,1559 +padding_loc17_2,1560 +padding_loc18_1,1561 +padding_loc18_2,1562 +padding_loc190_1,1563 +padding_loc191_1,1564 +padding_loc191_2,1565 +padding_loc191_3,1566 +padding_loc192_1,1567 +padding_loc19_2,1568 +padding_loc20_1,1569 +padding_loc21_1,1570 +padding_loc23_1,1571 +padding_loc244_1,1572 +padding_loc244_2,1573 +padding_loc244_3,1574 +padding_loc245_1,1575 +padding_loc245_2,1576 +padding_loc26_1,1577 +padding_loc27_1,1578 +padding_loc27_2,1579 +padding_loc28_1,1580 +padding_loc29_1,1581 +padding_loc29_2,1582 +padding_loc29_3,1583 +padding_loc2_1,1584 +padding_loc2_2,1585 +padding_loc30_1,1586 +padding_loc30_2,1587 +padding_loc37_1,1588 +padding_loc37_2,1589 +padding_loc38_1,1590 +padding_loc3_1,1591 +padding_loc4_2,1592 +padding_loc50_1,1593 +padding_loc5_1,1594 +padding_loc6_1,1595 +padding_loc7_1,1596 +padding_loc9_1,1597 +padding_loc9_2,1598 +padding_local11_1,1599 +padding_local1_1,1600 +padding_local1_31,1601 +padding_local40_1,1602 +padding_local_35,1603 +padding_local_7_1,1604 +padding_sec1_loc,1605 +padding_sec2_1,1606 +padding_sec2_2,1607 +padding_sec2_3,1608 +padding_sec3_1,1609 +padding_sec4_1,1610 +paleontologicalOffset,1611 +param,1612 +paramId,1613 +paramIdECMF,1614 +paramIdLegacyECMF,1615 +param_value_max,1616 +param_value_min,1617 +parameter,1618 +parameterCategory,1619 +parameterCode,1620 +parameterDiscipline,1621 +parameterIndicator,1622 +parameterName,1623 +parameterNumber,1624 +parameterUnits,1625 +parameters,1626 +parametersVersion,1627 +partitionItems,1628 +partitionNumber,1629 +partitionTable,1630 +partitions,1631 +pastTendencyRVR1,1632 +pastTendencyRVR2,1633 +pastTendencyRVR3,1634 +pastTendencyRVR4,1635 +patch_precip_fp,1636 +pentagonalResolutionParameterJ,1637 +pentagonalResolutionParameterK,1638 +pentagonalResolutionParameterM,1639 +percentileValue,1640 +periodOfTime,1641 +periodOfTimeIntervals,1642 +perturbationNumber,1643 +perturbedType,1644 +phase,1645 +physicalFlag1,1646 +physicalFlag2,1647 +physicalMeaningOfVerticalCoordinate,1648 +pl,1649 +platform,1650 +plusOneinOrdersOfSPD,1651 +points,1652 +postAuxiliary,1653 +postAuxiliaryArrayPresent,1654 +powerOfTenUsedToScaleClimateWeight,1655 +preBitmapValues,1656 +preProcessingParameter,1657 +precision,1658 +precisionOfTheUnpackedSubset,1659 +predefined_grid,1660 +predefined_grid_values,1661 +present,1662 +presentTrend1,1663 +presentTrend2,1664 +presentTrend3,1665 +presentTrend4,1666 +presentWeather1Present,1667 +presentWeather1PresentTrend1,1668 +presentWeather1PresentTrend2,1669 +presentWeather1PresentTrend3,1670 +presentWeather1PresentTrend4,1671 +presentWeather2Present,1672 +presentWeather2PresentTrend1,1673 +presentWeather2PresentTrend2,1674 +presentWeather2PresentTrend3,1675 +presentWeather2PresentTrend4,1676 +presentWeather3Present,1677 +presentWeather3PresentTrend1,1678 +presentWeather3PresentTrend2,1679 +presentWeather3PresentTrend3,1680 +presentWeather3PresentTrend4,1681 +pressureLevel,1682 +pressureUnits,1683 +primaryBitmap,1684 +primaryMissingValue,1685 +primaryMissingValueSubstitute,1686 +probContinous,1687 +probPoint,1688 +probProductDefinition,1689 +probabilityType,1690 +probabilityTypeName,1691 +process,1692 +produceLargeConstantFields,1693 +product,1694 +productDefinition,1695 +productDefinitionTemplateNumber,1696 +productDefinitionTemplateNumberInternal,1697 +productIdentifier,1698 +productType,1699 +productionStatusOfProcessedData,1700 +projSourceString,1701 +projString,1702 +projTargetString,1703 +projectLocalTemplate,1704 +projectLocalTemplateNumber,1705 +projectionCenterFlag,1706 +projectionCentreFlag,1707 +pv,1708 +pvlLocation,1709 +qfe,1710 +qfePresent,1711 +qfeUnits,1712 +qnh,1713 +qnhAPresent,1714 +qnhPresent,1715 +qnhUnits,1716 +qualityControl,1717 +qualityControlIndicator,1718 +qualityValueAssociatedWithParameter,1719 +quantile,1720 +radialAngularSpacing,1721 +radials,1722 +radius,1723 +radiusInMetres,1724 +radiusOfCentralCluster,1725 +radiusOfClusterDomain,1726 +radiusOfTheEarth,1727 +range,1728 +rangeBinSpacing,1729 +rdbDateTime,1730 +rdbSubtype,1731 +rdbType,1732 +rdb_key,1733 +rdbtime,1734 +rdbtimeDate,1735 +rdbtimeDay,1736 +rdbtimeHour,1737 +rdbtimeMinute,1738 +rdbtimeMonth,1739 +rdbtimeSecond,1740 +rdbtimeTime,1741 +rdbtimeYear,1742 +realPart,1743 +realPartOf00,1744 +recDateTime,1745 +recentWeather,1746 +recentWeatherTry,1747 +rectime,1748 +rectimeDay,1749 +rectimeHour,1750 +rectimeMinute,1751 +rectimeSecond,1752 +reducedGrid,1753 +refdate,1754 +reference,1755 +referenceDate,1756 +referenceForGroupLengths,1757 +referenceForGroupWidths,1758 +referenceOfLengths,1759 +referenceOfWidths,1760 +referenceReflectivityForEchoTop,1761 +referenceSampleInterval,1762 +referenceStep,1763 +referenceValue,1764 +referenceValueError,1765 +reflectivityCalibrationConstant,1766 +remarkPresent,1767 +reportType,1768 +representationMode,1769 +representationType,1770 +representativeMember,1771 +reserved,1772 +reserved1,1773 +reserved2,1774 +reserved3,1775 +reservedNeedNotBePresent,1776 +reservedOctet,1777 +reservedSection2,1778 +reservedSection3,1779 +reservedSection4,1780 +resolutionAndComponentFlags,1781 +resolutionAndComponentFlags1,1782 +resolutionAndComponentFlags2,1783 +resolutionAndComponentFlags3,1784 +resolutionAndComponentFlags4,1785 +resolutionAndComponentFlags6,1786 +resolutionAndComponentFlags7,1787 +resolutionAndComponentFlags8,1788 +restricted,1789 +rootGroupObjectHeaderAddress,1790 +rootGroupSymbolTableEntry,1791 +rootTablesDir,1792 +roundedMarsLatitude,1793 +roundedMarsLevelist,1794 +roundedMarsLongitude,1795 +runwayBrakingActionState1,1796 +runwayBrakingActionState2,1797 +runwayBrakingActionState3,1798 +runwayBrakingActionState4,1799 +runwayDepositCodeState1,1800 +runwayDepositCodeState2,1801 +runwayDepositCodeState3,1802 +runwayDepositCodeState4,1803 +runwayDepositState1,1804 +runwayDepositState2,1805 +runwayDepositState3,1806 +runwayDepositState4,1807 +runwayDepthOfDepositCodeState1,1808 +runwayDepthOfDepositCodeState2,1809 +runwayDepthOfDepositCodeState3,1810 +runwayDepthOfDepositCodeState4,1811 +runwayDepthOfDepositState1,1812 +runwayDepthOfDepositState2,1813 +runwayDepthOfDepositState3,1814 +runwayDepthOfDepositState4,1815 +runwayDesignatorRVR1,1816 +runwayDesignatorRVR2,1817 +runwayDesignatorRVR3,1818 +runwayDesignatorRVR4,1819 +runwayDesignatorState1,1820 +runwayDesignatorState2,1821 +runwayDesignatorState3,1822 +runwayDesignatorState4,1823 +runwayExtentOfContaminationCodeState1,1824 +runwayExtentOfContaminationCodeState2,1825 +runwayExtentOfContaminationCodeState3,1826 +runwayExtentOfContaminationCodeState4,1827 +runwayExtentOfContaminationState1,1828 +runwayExtentOfContaminationState2,1829 +runwayExtentOfContaminationState3,1830 +runwayExtentOfContaminationState4,1831 +runwayFrictionCodeValueState1,1832 +runwayFrictionCodeValueState2,1833 +runwayFrictionCodeValueState3,1834 +runwayFrictionCodeValueState4,1835 +runwayFrictionCoefficientCodeState1,1836 +runwayFrictionCoefficientCodeState2,1837 +runwayFrictionCoefficientCodeState3,1838 +runwayFrictionCoefficientCodeState4,1839 +runwayFrictionCoefficientState1,1840 +runwayFrictionCoefficientState2,1841 +runwayFrictionCoefficientState3,1842 +runwayFrictionCoefficientState4,1843 +runwaySideCodeState1,1844 +runwaySideCodeState2,1845 +runwaySideCodeState3,1846 +runwaySideCodeState4,1847 +runwayState,1848 +sampleSizeOfModelClimate,1849 +satelliteID,1850 +satelliteIdentifier,1851 +satelliteNumber,1852 +satelliteSeries,1853 +scaleFactorAtReferencePoint,1854 +scaleFactorOfCentralWaveNumber,1855 +scaleFactorOfDistanceFromEnsembleMean,1856 +scaleFactorOfDistributionFunctionParameter,1857 +scaleFactorOfEarthMajorAxis,1858 +scaleFactorOfEarthMinorAxis,1859 +scaleFactorOfFirstFixedSurface,1860 +scaleFactorOfFirstSize,1861 +scaleFactorOfFirstWavelength,1862 +scaleFactorOfLengthOfSemiMajorAxis,1863 +scaleFactorOfLengthOfSemiMinorAxis,1864 +scaleFactorOfLowerLimit,1865 +scaleFactorOfMajorAxisOfOblateSpheroidEarth,1866 +scaleFactorOfMinorAxisOfOblateSpheroidEarth,1867 +scaleFactorOfPrimeMeridianOffset,1868 +scaleFactorOfRadiusOfSphericalEarth,1869 +scaleFactorOfSecondFixedSurface,1870 +scaleFactorOfSecondSize,1871 +scaleFactorOfSecondWavelength,1872 +scaleFactorOfStandardDeviation,1873 +scaleFactorOfStandardDeviationInTheCluster,1874 +scaleFactorOfUpperLimit,1875 +scaleValuesBy,1876 +scaledDirections,1877 +scaledFrequencies,1878 +scaledValueOfCentralWaveNumber,1879 +scaledValueOfDistanceFromEnsembleMean,1880 +scaledValueOfDistributionFunctionParameter,1881 +scaledValueOfEarthMajorAxis,1882 +scaledValueOfEarthMinorAxis,1883 +scaledValueOfFirstFixedSurface,1884 +scaledValueOfFirstSize,1885 +scaledValueOfFirstWavelength,1886 +scaledValueOfLengthOfSemiMajorAxis,1887 +scaledValueOfLengthOfSemiMinorAxis,1888 +scaledValueOfLowerLimit,1889 +scaledValueOfMajorAxisOfOblateSpheroidEarth,1890 +scaledValueOfMinorAxisOfOblateSpheroidEarth,1891 +scaledValueOfPrimeMeridianOffset,1892 +scaledValueOfRadiusOfSphericalEarth,1893 +scaledValueOfSecondFixedSurface,1894 +scaledValueOfSecondSize,1895 +scaledValueOfSecondWavelength,1896 +scaledValueOfStandardDeviation,1897 +scaledValueOfStandardDeviationInTheCluster,1898 +scaledValueOfUpperLimit,1899 +scalingFactorForFrequencies,1900 +scanPosition,1901 +scanningMode,1902 +scanningMode4,1903 +scanningMode5,1904 +scanningMode6,1905 +scanningMode7,1906 +scanningMode8,1907 +scanningModeForOneDiamond,1908 +sd,1909 +second,1910 +secondDimension,1911 +secondDimensionCoordinateValueDefinition,1912 +secondDimensionPhysicalSignificance,1913 +secondLatitude,1914 +secondLatitudeInDegrees,1915 +secondOfEndOfOverallTimeInterval,1916 +secondOfForecast,1917 +secondOfModelVersion,1918 +secondOrderFlags,1919 +secondOrderOfDifferentWidth,1920 +secondOrderValuesDifferentWidths,1921 +secondaryBitMap,1922 +secondaryBitmap,1923 +secondaryBitmapPresent,1924 +secondaryBitmaps,1925 +secondaryBitmapsCount,1926 +secondaryBitmapsSize,1927 +secondaryMissingValue,1928 +secondaryMissingValueSubstitute,1929 +secondsOfAnalysis,1930 +secondsOfReference,1931 +section,1932 +section0Length,1933 +section0Pointer,1934 +section1,1935 +section10Length,1936 +section10Pointer,1937 +section11Length,1938 +section11Pointer,1939 +section1Flags,1940 +section1Length,1941 +section1Padding,1942 +section1Pointer,1943 +section2Length,1944 +section2Padding,1945 +section2Pointer,1946 +section2Present,1947 +section2Used,1948 +section3Flags,1949 +section3Length,1950 +section3Padding,1951 +section3Pointer,1952 +section3UniqueIdentifier,1953 +section4,1954 +section4Length,1955 +section4Padding,1956 +section4Pointer,1957 +section4UniqueIdentifier,1958 +section5,1959 +section5Length,1960 +section5Pointer,1961 +section5UniqueIdentifier,1962 +section6,1963 +section6Length,1964 +section6Pointer,1965 +section6UniqueIdentifier,1966 +section7,1967 +section7Length,1968 +section7Pointer,1969 +section7UniqueIdentifier,1970 +section8,1971 +section8Length,1972 +section8Pointer,1973 +section8UniqueIdentifier,1974 +section9Length,1975 +section9Pointer,1976 +section9UniqueIdentifier,1977 +sectionLengthLimitForEnsembles,1978 +sectionLengthLimitForProbability,1979 +sectionNumber,1980 +sectionPosition,1981 +section_01,1982 +section_02,1983 +section_03,1984 +section_04,1985 +section_05,1986 +section_06,1987 +section_07,1988 +section_08,1989 +section_09,1990 +section_1,1991 +section_10,1992 +section_11,1993 +section_2,1994 +section_3,1995 +section_4,1996 +section_5,1997 +section_6,1998 +section_7,1999 +section_8,2000 +selectStepTemplateInstant,2001 +selectStepTemplateInterval,2002 +sensitiveAreaDomain,2003 +sequences,2004 +setBitsPerValue,2005 +setCalendarId,2006 +setDecimalPrecision,2007 +setLocalDefinition,2008 +setToMissingIfOutOfRange,2009 +sfc_levtype,2010 +shapeOfTheEarth,2011 +shapeOfVerificationArea,2012 +shortName,2013 +shortNameECMF,2014 +shortNameLegacyECMF,2015 +short_name,2016 +signature,2017 +significanceOfReferenceDateAndTime,2018 +significanceOfReferenceTime,2019 +simpleThinningMissingRadius,2020 +simpleThinningSkip,2021 +simpleThinningStart,2022 +siteElevation,2023 +siteId,2024 +siteLatitude,2025 +siteLongitude,2026 +sizeOfLength,2027 +sizeOfOffsets,2028 +sizeOfPostAuxiliaryArray,2029 +sizeOfPostAuxiliaryArrayPlusOne,2030 +skew,2031 +skewness,2032 +skipExtraKeyAttributes,2033 +sort,2034 +sourceOfGridDefinition,2035 +sourceSinkChemicalPhysicalProcess,2036 +southEastLatitudeOfLPOArea,2037 +southEastLatitudeOfVerficationArea,2038 +southEastLongitudeOfLPOArea,2039 +southEastLongitudeOfVerficationArea,2040 +southLatitudeOfCluster,2041 +southLatitudeOfDomainOfTubing,2042 +southPoleOnProjectionPlane,2043 +southernLatitudeOfClusterDomain,2044 +southernLatitudeOfDomain,2045 +sp1,2046 +sp2,2047 +sp3,2048 +spaceUnitFlag,2049 +spacingOfBinsAlongRadials,2050 +spare,2051 +spare1,2052 +spare2,2053 +spare3,2054 +spare4,2055 +spatialProcessing,2056 +spatialSmoothingOfProduct,2057 +spectralDataRepresentationMode,2058 +spectralDataRepresentationType,2059 +spectralMode,2060 +spectralType,2061 +sphericalHarmonics,2062 +standardDeviation,2063 +standardParallel,2064 +standardParallelInDegrees,2065 +standardParallelInMicrodegrees,2066 +startOfHeaders,2067 +startOfMessage,2068 +startOfRange,2069 +startStep,2070 +startStepInHours,2071 +startTimeStep,2072 +startingAzimuth,2073 +statisticalProcess,2074 +statisticalProcessesList,2075 +statistics,2076 +status,2077 +step,2078 +stepForClustering,2079 +stepHumanReadable,2080 +stepInHours,2081 +stepRange,2082 +stepRangeInHours,2083 +stepType,2084 +stepTypeForConversion,2085 +stepTypeInternal,2086 +stepUnits,2087 +stepZero,2088 +stream,2089 +streamOfAnalysis,2090 +stretchingFactor,2091 +stretchingFactorScaled,2092 +stringValues,2093 +subCentre,2094 +subDefinitions1,2095 +subDefinitions2,2096 +subLocalDefinition1,2097 +subLocalDefinition2,2098 +subLocalDefinitionLength1,2099 +subLocalDefinitionLength2,2100 +subLocalDefinitionNumber1,2101 +subLocalDefinitionNumber2,2102 +subSetJ,2103 +subSetK,2104 +subSetM,2105 +subcentreOfAnalysis,2106 +subdivisionsOfBasicAngle,2107 +suiteName,2108 +superblockExtensionAddress,2109 +swapScanningLat,2110 +swapScanningLon,2111 +swapScanningX,2112 +swapScanningY,2113 +system,2114 +systemNumber,2115 +t,2116 +table2Version,2117 +tableCode,2118 +tableNumber,2119 +tableReference,2120 +tablesLocalDir,2121 +tablesMasterDir,2122 +tablesVersion,2123 +tablesVersionLatest,2124 +targetCompressionRatio,2125 +td,2126 +tempPressureUnits,2127 +temperature,2128 +temperatureAndDewpointPresent,2129 +templatesLocalDir,2130 +templatesMasterDir,2131 +theHindcastMarsStream,2132 +theMessage,2133 +thisExperimentVersionNumber,2134 +thisMarsClass,2135 +thisMarsStream,2136 +thisMarsType,2137 +thousand,2138 +three,2139 +threshold,2140 +thresholdIndicator,2141 +tiggeCentre,2142 +tiggeLAMName,2143 +tiggeLocalVersion,2144 +tiggeModel,2145 +tiggeSection,2146 +tiggeSuiteID,2147 +tigge_name,2148 +tigge_short_name,2149 +tileClassification,2150 +tileIndex,2151 +time,2152 +timeCoordinateDefinition,2153 +timeDomainTemplate,2154 +timeDomainTemplateNumber,2155 +timeIncrement,2156 +timeIncrementBetweenSuccessiveFields,2157 +timeOfAnalysis,2158 +timeOfForecast,2159 +timeOfModelVersion,2160 +timeOfReference,2161 +timeRangeIndicator,2162 +timeRangeIndicatorFromStepRange,2163 +timeUnitFlag,2164 +timerepres,2165 +topLevel,2166 +total,2167 +totalAerosolBinsNumbers,2168 +totalInitialConditions,2169 +totalLength,2170 +totalNumber,2171 +totalNumberOfClusters,2172 +totalNumberOfDataValuesMissingInStatisticalProcess,2173 +totalNumberOfDirections,2174 +totalNumberOfForecastProbabilities,2175 +totalNumberOfFrequencies,2176 +totalNumberOfGridPoints,2177 +totalNumberOfIterations,2178 +totalNumberOfRepetitions,2179 +totalNumberOfTileAttributePairs,2180 +totalNumberOfTubes,2181 +totalNumberOfValuesInUnpackedSubset,2182 +totalNumberOfdimensions,2183 +treatmentOfMissingData,2184 +true,2185 +trueLengthOfLastGroup,2186 +truncateDegrees,2187 +truncateLaplacian,2188 +tsectionNumber3,2189 +tsectionNumber4,2190 +tsectionNumber5,2191 +tubeDomain,2192 +tubeNumber,2193 +two,2194 +twoOrdersOfSPD,2195 +type,2196 +typeOfAnalysis,2197 +typeOfAuxiliaryInformation,2198 +typeOfCalendar,2199 +typeOfCompressionUsed,2200 +typeOfDistributionFunction,2201 +typeOfEnsembleForecast,2202 +typeOfEnsembleMember,2203 +typeOfFirstFixedSurface,2204 +typeOfGeneratingProcess,2205 +typeOfGrid,2206 +typeOfHorizontalLine,2207 +typeOfIntervalForFirstAndSecondSize,2208 +typeOfIntervalForFirstAndSecondWavelength,2209 +typeOfLevel,2210 +typeOfLevelECMF,2211 +typeOfOriginalFieldValues,2212 +typeOfPacking,2213 +typeOfPostProcessing,2214 +typeOfPreProcessing,2215 +typeOfProcessedData,2216 +typeOfSSTFieldUsed,2217 +typeOfSecondFixedSurface,2218 +typeOfSizeInterval,2219 +typeOfStatisticalPostProcessingOfEnsembleMembers,2220 +typeOfStatisticalProcessing,2221 +typeOfTimeIncrement,2222 +typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing,2223 +typeOfWavelengthInterval,2224 +typicalCentury,2225 +typicalDate,2226 +typicalDateTime,2227 +typicalDay,2228 +typicalHour,2229 +typicalMinute,2230 +typicalMonth,2231 +typicalSecond,2232 +typicalTime,2233 +typicalYear,2234 +typicalYear2,2235 +typicalYearOfCentury,2236 +uco,2237 +ucs,2238 +unexpandedDescriptors,2239 +unexpandedDescriptorsEncoded,2240 +unitOfOffsetFromReferenceTime,2241 +unitOfTime,2242 +unitOfTimeIncrement,2243 +unitOfTimeRange,2244 +units,2245 +unitsBias,2246 +unitsConversionOffset,2247 +unitsConversionScaleFactor,2248 +unitsDecimalScaleFactor,2249 +unitsECMF,2250 +unitsFactor,2251 +unitsLegacyECMF,2252 +unitsOfFirstFixedSurface,2253 +unitsOfSecondFixedSurface,2254 +unknown,2255 +unpack,2256 +unpackedError,2257 +unpackedSubsetPrecision,2258 +unpackedValues,2259 +unsignedIntegers,2260 +unstructuredGrid,2261 +unstructuredGridSubtype,2262 +unstructuredGridType,2263 +unstructuredGridUUID,2264 +unusedBitsInBitmap,2265 +updateSequenceNumber,2266 +upperLimit,2267 +upperRange,2268 +upperThreshold,2269 +upperThresholdValue,2270 +userDateEnd,2271 +userDateStart,2272 +userDateTimeEnd,2273 +userDateTimeStart,2274 +userTimeEnd,2275 +userTimeStart,2276 +uuidOfHGrid,2277 +uuidOfVGrid,2278 +uvRelativeToGrid,2279 +validityDate,2280 +validityTime,2281 +values,2282 +variationOfVisibility,2283 +variationOfVisibilityDirection,2284 +variationOfVisibilityDirectionAngle,2285 +variationOfVisibilityDirectionTrend1,2286 +variationOfVisibilityDirectionTrend2,2287 +variationOfVisibilityDirectionTrend3,2288 +variationOfVisibilityDirectionTrend4,2289 +variationOfVisibilityTrend1,2290 +variationOfVisibilityTrend2,2291 +variationOfVisibilityTrend3,2292 +variationOfVisibilityTrend4,2293 +varno,2294 +verificationDate,2295 +verificationMonth,2296 +verificationYear,2297 +verifyingMonth,2298 +version,2299 +versionNumOfFilesFreeSpaceStorage,2300 +versionNumOfRootGroupSymbolTableEntry,2301 +versionNumOfSharedHeaderMessageFormat,2302 +versionNumberOfExperimentalSuite,2303 +versionNumberOfGribLocalTables,2304 +versionNumberOfSuperblock,2305 +versionOfModelClimate,2306 +verticalCoordinate,2307 +verticalCoordinateDefinition,2308 +verticalDomainTemplate,2309 +verticalDomainTemplateNumber,2310 +verticalVisibility,2311 +verticalVisibilityCoded,2312 +visibility,2313 +visibilityInKilometresTrend1,2314 +visibilityInKilometresTrend2,2315 +visibilityInKilometresTrend3,2316 +visibilityInKilometresTrend4,2317 +visibilityTrend1,2318 +visibilityTrend2,2319 +visibilityTrend3,2320 +visibilityTrend4,2321 +waveDomain,2322 +weightAppliedToClimateMonth1,2323 +westLongitudeOfCluster,2324 +westLongitudeOfDomainOfTubing,2325 +westernLongitudeOfClusterDomain,2326 +westernLongitudeOfDomain,2327 +widthOfFirstOrderValues,2328 +widthOfLengths,2329 +widthOfSPD,2330 +widthOfWidths,2331 +windDirection,2332 +windDirectionTrend1,2333 +windDirectionTrend2,2334 +windDirectionTrend3,2335 +windDirectionTrend4,2336 +windGust,2337 +windGustTrend1,2338 +windGustTrend2,2339 +windGustTrend3,2340 +windGustTrend4,2341 +windPresent,2342 +windSpeed,2343 +windSpeedTrend1,2344 +windSpeedTrend2,2345 +windSpeedTrend3,2346 +windSpeedTrend4,2347 +windUnits,2348 +windUnitsTrend1,2349 +windUnitsTrend2,2350 +windUnitsTrend3,2351 +windUnitsTrend4,2352 +windVariableDirection,2353 +windVariableDirectionTrend1,2354 +windVariableDirectionTrend2,2355 +windVariableDirectionTrend3,2356 +windVariableDirectionTrend4,2357 +wrongPadding,2358 +xCoordinateOfOriginOfSectorImage,2359 +xCoordinateOfSubSatellitePoint,2360 +xDirectionGridLength,2361 +xDirectionGridLengthInMetres,2362 +xDirectionGridLengthInMillimetres,2363 +xFirst,2364 +xLast,2365 +yCoordinateOfOriginOfSectorImage,2366 +yCoordinateOfSubSatellitePoint,2367 +yDirectionGridLength,2368 +yDirectionGridLengthInMetres,2369 +yDirectionGridLengthInMillimetres,2370 +yFirst,2371 +yLast,2372 +year,2373 +yearOfAnalysis,2374 +yearOfCentury,2375 +yearOfEndOfOverallTimeInterval,2376 +yearOfForecast,2377 +yearOfModelVersion,2378 +yearOfReference,2379 +zero,2380 +zeros,2381 From aff465eba075b6791417922195d0850d5c3d3cd7 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 22 Sep 2020 11:49:36 +0100 Subject: [PATCH 051/683] ECC-1145: GRIB edition 2 parameter representing 'liquid water content in snow pack' --- definitions/grib2/cfVarName.def | 6 ++++++ definitions/grib2/name.def | 6 ++++++ definitions/grib2/paramId.def | 6 ++++++ definitions/grib2/shortName.def | 6 ++++++ definitions/grib2/units.def | 6 ++++++ 5 files changed, 30 insertions(+) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 6c1fe0106..5870c39d3 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -675,6 +675,12 @@ scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; } +#Liquid water content in snow pack +'lwcs' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } #Height of convective cloud top 'hcct' = { discipline = 0 ; diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index 19d2cf3a7..b153f9940 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -675,6 +675,12 @@ scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 103 ; } +#Liquid water content in snow pack +'Liquid water content in snow pack' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } #Height of convective cloud top 'Height of convective cloud top' = { discipline = 0 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index b9d267296..ed2840e8a 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -675,6 +675,12 @@ scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; } +#Liquid water content in snow pack +'228038' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } #Height of convective cloud top '228046' = { discipline = 0 ; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 6963c873f..66b70671f 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -675,6 +675,12 @@ scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; } +#Liquid water content in snow pack +'lwcs' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } #Height of convective cloud top 'hcct' = { discipline = 0 ; diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index b8093ec33..936bd8e43 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -675,6 +675,12 @@ scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 103 ; } +#Liquid water content in snow pack +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 23 ; + } #Height of convective cloud top 'm' = { discipline = 0 ; From 24a4143bac8966bd6a5189cabf7d0940f1a43038 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 22 Sep 2020 12:39:06 +0100 Subject: [PATCH 052/683] ECC-1148: BUFR decoding: better error message when descriptors overflow the data section --- src/grib_accessor_class_bufr_data_array.c | 36 +++++++++++++---------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/src/grib_accessor_class_bufr_data_array.c b/src/grib_accessor_class_bufr_data_array.c index 4d5797c9e..2cd08f03e 100644 --- a/src/grib_accessor_class_bufr_data_array.c +++ b/src/grib_accessor_class_bufr_data_array.c @@ -240,9 +240,9 @@ static void init_class(grib_accessor_class* c) /* Set the error code, if it is bad and we should fail (default case), return */ /* variable 'err' is assumed to be pointer to int */ /* If BUFRDC mode is enabled, then we tolerate problems like wrong data section length */ -#define CHECK_END_DATA_RETURN(ctx, b, size, retval) \ +#define CHECK_END_DATA_RETURN(ctx, bd, b, size, retval) \ { \ - *err = check_end_data(ctx, b, size); \ + *err = check_end_data(ctx, bd, b, size); \ if (*err != 0 && ctx->bufrdc_mode == 0) \ return retval; \ } @@ -428,12 +428,18 @@ static void clean_string(char* s,int len) } */ -static int check_end_data(grib_context* c, grib_accessor_bufr_data_array* self, int size) +static int check_end_data(grib_context* c, bufr_descriptor* bd, grib_accessor_bufr_data_array* self, int size) { - grib_context_log(c, GRIB_LOG_DEBUG, "BUFR data decoding: \tbitsToEndData=%d elementSize=%d", self->bitsToEndData, size); + const int saved_bitsToEndData = self->bitsToEndData; + if (c->debug == 1) + grib_context_log(c, GRIB_LOG_DEBUG, "BUFR data decoding: \tbitsToEndData=%d elementSize=%d", self->bitsToEndData, size); self->bitsToEndData -= size; - if (self->bitsToEndData < 0) + if (self->bitsToEndData < 0) { + grib_context_log(c, GRIB_LOG_ERROR, "BUFR data decoding: Number of bits left=%d but element size=%d", saved_bitsToEndData, size); + if (bd) + grib_context_log(c, GRIB_LOG_ERROR, "BUFR data decoding: code=%06ld key=%s", bd->code, bd->shortName); return GRIB_DECODING_ERROR; + } return 0; } @@ -570,14 +576,14 @@ static int decode_string_array(grib_context* c, unsigned char* data, long* pos, modifiedWidth = bd->width; sval = (char*)grib_context_malloc_clear(c, modifiedWidth / 8 + 1); - CHECK_END_DATA_RETURN(c, self, modifiedWidth, *err); + CHECK_END_DATA_RETURN(c, bd, self, modifiedWidth, *err); if (*err) { grib_sarray_push(c, sa, sval); grib_vsarray_push(c, self->stringValues, sa); return ret; } grib_decode_string(data, pos, modifiedWidth / 8, sval); - CHECK_END_DATA_RETURN(c, self, 6, *err); + CHECK_END_DATA_RETURN(c, bd, self, 6, *err); if (*err) { grib_sarray_push(c, sa, sval); grib_vsarray_push(c, self->stringValues, sa); @@ -585,7 +591,7 @@ static int decode_string_array(grib_context* c, unsigned char* data, long* pos, } width = grib_decode_unsigned_long(data, pos, 6); if (width) { - CHECK_END_DATA_RETURN(c, self, width * 8 * self->numberOfSubsets, *err); + CHECK_END_DATA_RETURN(c, bd, self, width * 8 * self->numberOfSubsets, *err); if (*err) { grib_sarray_push(c, sa, sval); grib_vsarray_push(c, self->stringValues, sa); @@ -632,7 +638,7 @@ static grib_darray* decode_double_array(grib_context* c, unsigned char* data, lo modifiedFactor = bd->factor; modifiedWidth = bd->width; - CHECK_END_DATA_RETURN(c, self, modifiedWidth + 6, NULL); + CHECK_END_DATA_RETURN(c, bd, self, modifiedWidth + 6, NULL); if (*err) { dval = GRIB_MISSING_DOUBLE; lval = 0; @@ -648,7 +654,7 @@ static grib_darray* decode_double_array(grib_context* c, unsigned char* data, lo grib_context_log(c, GRIB_LOG_DEBUG, "BUFR data decoding: \tlocalWidth=%ld", localWidth); ret = grib_darray_new(c, self->numberOfSubsets, 50); if (localWidth) { - CHECK_END_DATA_RETURN(c, self, localWidth * self->numberOfSubsets, NULL); + CHECK_END_DATA_RETURN(c, bd, self, localWidth * self->numberOfSubsets, NULL); if (*err) { dval = GRIB_MISSING_DOUBLE; lval = 0; @@ -1049,7 +1055,7 @@ static char* decode_string_value(grib_context* c, unsigned char* data, long* pos len = bd->width / 8; - CHECK_END_DATA_RETURN(c, self, bd->width, NULL); + CHECK_END_DATA_RETURN(c, bd, self, bd->width, NULL); sval = (char*)grib_context_malloc_clear(c, len + 1); if (*err) { *err = 0; @@ -1077,7 +1083,7 @@ static double decode_double_value(grib_context* c, unsigned char* data, long* po modifiedFactor = bd->factor; modifiedWidth = bd->width; - CHECK_END_DATA_RETURN(c, self, modifiedWidth, 0); + CHECK_END_DATA_RETURN(c, bd, self, modifiedWidth, 0); if (*err) { *err = 0; return GRIB_MISSING_DOUBLE; @@ -1116,7 +1122,7 @@ static int decode_element(grib_context* c, grib_accessor_bufr_data_array* self, grib_context_log(c, GRIB_LOG_DEBUG, "Operator 203YYY: Store for code %6.6ld => new ref val %ld", bd->code, new_ref_val); tableB_override_store_ref_val(c, self, bd->code, new_ref_val); bd->nokey = 1; - err = check_end_data(c, self, number_of_bits); /*advance bitsToEnd*/ + err = check_end_data(c, NULL, self, number_of_bits); /*advance bitsToEnd*/ return err; } grib_context_log(c, GRIB_LOG_DEBUG, "BUFR data decoding: -%ld- \tcode=%6.6ld width=%ld scale=%ld ref=%ld type=%ld (pos=%ld -> %ld)", @@ -1192,7 +1198,7 @@ static int decode_replication(grib_context* c, grib_accessor_bufr_data_array* se i, self->expanded->v[i]->code, self->expanded->v[i]->width); if (self->compressedData) { grib_context_log(c, GRIB_LOG_DEBUG, "BUFR data decoding: \tdelayed replication localReference width=%ld", descriptors[i]->width); - CHECK_END_DATA_RETURN(c, self, descriptors[i]->width + 6, *err); + CHECK_END_DATA_RETURN(c, NULL, self, descriptors[i]->width + 6, *err); if (*err) { *numberOfRepetitions = 0; } @@ -1212,7 +1218,7 @@ static int decode_replication(grib_context* c, grib_accessor_bufr_data_array* se } } else { - CHECK_END_DATA_RETURN(c, self, descriptors[i]->width, *err); + CHECK_END_DATA_RETURN(c, NULL, self, descriptors[i]->width, *err); if (*err) { *numberOfRepetitions = 0; } From 66bd3b24e2085c888f50869c6e139467aa8eccb7 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 23 Sep 2020 12:04:43 +0100 Subject: [PATCH 053/683] ECC-1147: remove typeOfFirstFixedSurface from paramId 228141 --- definitions/grib2/cfVarName.def | 1 - definitions/grib2/name.def | 1 - definitions/grib2/paramId.def | 1 - definitions/grib2/shortName.def | 1 - definitions/grib2/units.def | 1 - 5 files changed, 5 deletions(-) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 5870c39d3..92f95d8ae 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -3963,7 +3963,6 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; } #Snow Fall water equivalent 'sf' = { diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index b153f9940..ccd0d81bc 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -3963,7 +3963,6 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; } #Snow Fall water equivalent 'Snow Fall water equivalent' = { diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index ed2840e8a..5a40d28ef 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -3963,7 +3963,6 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; } #Snow Fall water equivalent '228144' = { diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 66b70671f..e4a8e248d 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -3963,7 +3963,6 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; } #Snow Fall water equivalent 'sf' = { diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index 936bd8e43..5bc16a494 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -3963,7 +3963,6 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; } #Snow Fall water equivalent 'kg m**-2' = { From f37fe8889beb6c0820cbbbc73e899b734e6ac835 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 23 Sep 2020 13:10:20 +0100 Subject: [PATCH 054/683] ECC-1149: GRIB: Add new fire parameters --- definitions/grib2/cfVarName.def | 48 +++++++++++++++++++++++++++++++++ definitions/grib2/name.def | 48 +++++++++++++++++++++++++++++++++ definitions/grib2/paramId.def | 48 +++++++++++++++++++++++++++++++++ definitions/grib2/shortName.def | 48 +++++++++++++++++++++++++++++++++ definitions/grib2/units.def | 48 +++++++++++++++++++++++++++++++++ 5 files changed, 240 insertions(+) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 92f95d8ae..6e6ed8fb3 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -1576,6 +1576,54 @@ parameterCategory = 1 ; parameterNumber = 23 ; } +#Keetch-Byram drought index +'kbdi' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#Drought factor (as defined by the Australian forest service) +'drtmrk' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Rate of spread (as defined by the Australian forest service) +'rosmrk' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Fire danger index (as defined by the Australian forest service) +'fdimrk' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 15 ; + } +#Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'scnfdr' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 16 ; + } +#Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) +'buinfdr' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 17 ; + } +#Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'icnfdr' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 18 ; + } +#Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'ercnfdr' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 19 ; + } #Universal thermal climate index 'utci' = { discipline = 20 ; diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index ccd0d81bc..b37225446 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -1576,6 +1576,54 @@ parameterCategory = 1 ; parameterNumber = 23 ; } +#Keetch-Byram drought index +'Keetch-Byram drought index' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#Drought factor (as defined by the Australian forest service) +'Drought factor (as defined by the Australian forest service)' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Rate of spread (as defined by the Australian forest service) +'Rate of spread (as defined by the Australian forest service)' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Fire danger index (as defined by the Australian forest service) +'Fire danger index (as defined by the Australian forest service)' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 15 ; + } +#Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System)' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 16 ; + } +#Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) +'Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System)' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 17 ; + } +#Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System)' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 18 ; + } +#Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System)' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 19 ; + } #Universal thermal climate index 'Universal thermal climate index' = { discipline = 20 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index 5a40d28ef..fc4183786 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -1576,6 +1576,54 @@ parameterCategory = 1 ; parameterNumber = 23 ; } +#Keetch-Byram drought index +'260557' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#Drought factor (as defined by the Australian forest service) +'260558' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Rate of spread (as defined by the Australian forest service) +'260559' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Fire danger index (as defined by the Australian forest service) +'260560' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 15 ; + } +#Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'260561' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 16 ; + } +#Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) +'260562' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 17 ; + } +#Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'260563' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 18 ; + } +#Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'260564' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 19 ; + } #Universal thermal climate index '261001' = { discipline = 20 ; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index e4a8e248d..c8d0a775b 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -1576,6 +1576,54 @@ parameterCategory = 1 ; parameterNumber = 23 ; } +#Keetch-Byram drought index +'kbdi' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#Drought factor (as defined by the Australian forest service) +'drtmrk' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Rate of spread (as defined by the Australian forest service) +'rosmrk' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Fire danger index (as defined by the Australian forest service) +'fdimrk' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 15 ; + } +#Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'scnfdr' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 16 ; + } +#Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) +'buinfdr' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 17 ; + } +#Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'icnfdr' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 18 ; + } +#Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'ercnfdr' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 19 ; + } #Universal thermal climate index 'utci' = { discipline = 20 ; diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index 5bc16a494..5d2580baa 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -1576,6 +1576,54 @@ parameterCategory = 1 ; parameterNumber = 23 ; } +#Keetch-Byram drought index +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 12 ; + } +#Drought factor (as defined by the Australian forest service) +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 13 ; + } +#Rate of spread (as defined by the Australian forest service) +'m s**-1' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + } +#Fire danger index (as defined by the Australian forest service) +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 15 ; + } +#Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 16 ; + } +#Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) +'Numeric' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 17 ; + } +#Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'%' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 18 ; + } +#Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) +'J m**-2' = { + discipline = 2 ; + parameterCategory = 4 ; + parameterNumber = 19 ; + } #Universal thermal climate index 'K' = { discipline = 20 ; From f94a5f092832390811efe307b674ddffc0e00bde Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 24 Sep 2020 15:54:33 +0100 Subject: [PATCH 055/683] Rename blacklist to blocklist --- src/grib_accessor_class_md5.c | 36 +++++++++++++++++------------------ src/grib_api_internal.h | 2 +- src/grib_context.c | 2 +- tools/bufr_compare.c | 30 ++++++++++++++--------------- tools/grib_compare.c | 34 ++++++++++++++++----------------- tools/gts_compare.c | 30 ++++++++++++++--------------- tools/metar_compare.c | 30 ++++++++++++++--------------- 7 files changed, 82 insertions(+), 82 deletions(-) diff --git a/src/grib_accessor_class_md5.c b/src/grib_accessor_class_md5.c index bb6603820..7d1ddabe8 100644 --- a/src/grib_accessor_class_md5.c +++ b/src/grib_accessor_class_md5.c @@ -20,7 +20,7 @@ IMPLEMENTS = compare;unpack_string;value_count;destroy MEMBERS = const char* offset MEMBERS = grib_expression* length - MEMBERS = grib_string_list* blacklist + MEMBERS = grib_string_list* blocklist END_CLASS_DEF */ @@ -50,7 +50,7 @@ typedef struct grib_accessor_md5 /* Members defined in md5 */ const char* offset; grib_expression* length; - grib_string_list* blacklist; + grib_string_list* blocklist; } grib_accessor_md5; extern grib_accessor_class* grib_accessor_class_gen; @@ -146,12 +146,12 @@ static void init(grib_accessor* a, const long len, grib_arguments* arg) self->offset = grib_arguments_get_name(grib_handle_of_accessor(a), arg, n++); self->length = grib_arguments_get_expression(grib_handle_of_accessor(a), arg, n++); - self->blacklist = NULL; + self->blocklist = NULL; while ((b = (char*)grib_arguments_get_name(grib_handle_of_accessor(a), arg, n++)) != NULL) { - if (!self->blacklist) { - self->blacklist = (grib_string_list*)grib_context_malloc_clear(context, sizeof(grib_string_list)); - self->blacklist->value = grib_context_strdup(context, b); - current = self->blacklist; + if (!self->blocklist) { + self->blocklist = (grib_string_list*)grib_context_malloc_clear(context, sizeof(grib_string_list)); + self->blocklist->value = grib_context_strdup(context, b); + current = self->blocklist; } else { Assert(current); @@ -204,7 +204,7 @@ static int unpack_string(grib_accessor* a, char* v, size_t* len) unsigned char* mess; unsigned char* p; long offset = 0, length = 0; - grib_string_list* blacklist = NULL; + grib_string_list* blocklist = NULL; grib_accessor* b = NULL; int ret = 0; int i = 0; @@ -223,14 +223,14 @@ static int unpack_string(grib_accessor* a, char* v, size_t* len) memcpy(mess, grib_handle_of_accessor(a)->buffer->data + offset, length); mess_len = length; - blacklist = a->context->blacklist; - /* passed blacklist overrides context blacklist. - Consider to modify following line to extend context blacklist. + blocklist = a->context->blocklist; + /* passed blocklist overrides context blocklist. + Consider to modify following line to extend context blocklist. */ - if (self->blacklist) - blacklist = self->blacklist; - while (blacklist && blacklist->value) { - b = grib_find_accessor(grib_handle_of_accessor(a), blacklist->value); + if (self->blocklist) + blocklist = self->blocklist; + while (blocklist && blocklist->value) { + b = grib_find_accessor(grib_handle_of_accessor(a), blocklist->value); if (!b) { grib_context_free(a->context, mess); return GRIB_NOT_FOUND; @@ -240,7 +240,7 @@ static int unpack_string(grib_accessor* a, char* v, size_t* len) for (i = 0; i < b->length; i++) *(p++) = 0; - blacklist = blacklist->next; + blocklist = blocklist->next; } grib_md5_init(&md5c); @@ -255,8 +255,8 @@ static int unpack_string(grib_accessor* a, char* v, size_t* len) static void destroy(grib_context* c, grib_accessor* a) { grib_accessor_md5* self = (grib_accessor_md5*)a; - if (self->blacklist) { - grib_string_list* next = self->blacklist; + if (self->blocklist) { + grib_string_list* next = self->blocklist; grib_string_list* cur = NULL; while (next) { cur = next; diff --git a/src/grib_api_internal.h b/src/grib_api_internal.h index 1bce88538..5c0a78bf4 100644 --- a/src/grib_api_internal.h +++ b/src/grib_api_internal.h @@ -1094,7 +1094,7 @@ struct grib_context int hash_array_count; grib_hash_array_value* hash_array[MAX_NUM_HASH_ARRAY]; grib_trie* def_files; - grib_string_list* blacklist; + grib_string_list* blocklist; int ieee_packing; int bufrdc_mode; int bufr_set_to_missing_if_out_of_range; diff --git a/src/grib_context.c b/src/grib_context.c index 5feeb6f66..327fdf13b 100644 --- a/src/grib_context.c +++ b/src/grib_context.c @@ -354,7 +354,7 @@ static grib_context default_grib_context = { 0, /* hash_array_count */ {0,}, /* hash_array */ 0, /* def_files */ - 0, /* blacklist */ + 0, /* blocklist */ 0, /* ieee_packing */ 0, /* bufrdc_mode */ 0, /* bufr_set_to_missing_if_out_of_range */ diff --git a/tools/bufr_compare.c b/tools/bufr_compare.c index 3077fee10..539634b5c 100644 --- a/tools/bufr_compare.c +++ b/tools/bufr_compare.c @@ -54,7 +54,7 @@ static grib_error* error_summary; static compare_double_proc compare_double; static double global_tolerance = 0; static int packingCompare = 0; -static grib_string_list* blacklist = 0; +static grib_string_list* blocklist = 0; static grib_string_list* keys_list = NULL; /* Used to determine rank of key */ static int isLeafKey = 0; /* 0 if key is top-level, 1 if key has no children attributes */ static int compareAbsolute = 1; @@ -177,9 +177,9 @@ static double compare_double_relative(double* a, double* b, double* err) return relativeError > *err ? relativeError : 0; } -static int blacklisted(const char* name) +static int blocklisted(const char* name) { - grib_string_list* b = blacklist; + grib_string_list* b = blocklist; if (!name) return 0; while (b) { Assert(b->value); @@ -314,15 +314,15 @@ int grib_tool_init(grib_runtime_options* options) if (grib_options_on("b:")) { grib_string_list* next = 0; int ii = 0; - blacklist = (grib_string_list*)grib_context_malloc_clear(context, sizeof(grib_string_list)); - blacklist->value = grib_context_strdup(context, options->set_values[0].name); - next = blacklist; + blocklist = (grib_string_list*)grib_context_malloc_clear(context, sizeof(grib_string_list)); + blocklist->value = grib_context_strdup(context, options->set_values[0].name); + next = blocklist; for (ii = 1; ii < options->set_values_count; ii++) { next->next = (grib_string_list*)grib_context_malloc_clear(context, sizeof(grib_string_list)); next->next->value = grib_context_strdup(context, options->set_values[ii].name); next = next->next; } - context->blacklist = blacklist; + context->blocklist = blocklist; } /* Check 1st file is not a directory */ @@ -1280,7 +1280,7 @@ static int compare_all_dump_keys(grib_handle* handle1, grib_handle* handle2, gri isLeafKey = 0; /* clear global variable for each key */ name = grib_keys_iterator_get_name(iter); - if (blacklisted(name)) + if (blocklisted(name)) continue; if (xa == NULL || (xa->flags & GRIB_ACCESSOR_FLAG_DUMP) == 0) continue; @@ -1296,7 +1296,7 @@ static int compare_all_dump_keys(grib_handle* handle1, grib_handle* handle2, gri prefix = (char*)xa->name; } - if (blacklisted(prefix)) { + if (blocklisted(prefix)) { if (dofree) grib_context_free(context, prefix); continue; } @@ -1330,10 +1330,10 @@ static int compare_handles(grib_handle* handle1, grib_handle* handle2, grib_runt const char* name = NULL; /* mask only if no -c option or headerMode (-H)*/ - if (blacklist && (!listFromCommandLine || headerMode)) { + if (blocklist && (!listFromCommandLine || headerMode)) { /* See ECC-245, GRIB-573, GRIB-915: Do not change handles in memory */ /* - grib_string_list* nextb=blacklist; + grib_string_list* nextb=blocklist; while (nextb) { grib_clear(handle1,nextb->value); grib_clear(handle2,nextb->value); @@ -1343,7 +1343,7 @@ static int compare_handles(grib_handle* handle1, grib_handle* handle2, grib_runt if (listFromCommandLine && onlyListed) { for (i = 0; i < options->compare_count; i++) { - if (blacklisted(options->compare[i].name)) + if (blocklisted(options->compare[i].name)) continue; if (options->compare[i].type == GRIB_NAMESPACE) { iter = grib_keys_iterator_new(handle1, 0, options->compare[i].name); @@ -1355,7 +1355,7 @@ static int compare_handles(grib_handle* handle1, grib_handle* handle2, grib_runt name = grib_keys_iterator_get_name(iter); /*printf("----- comparing %s\n",name);*/ - if (blacklisted(name)) + if (blocklisted(name)) continue; if (compare_values(options, handle1, handle2, name, GRIB_TYPE_UNDEFINED)) { err++; @@ -1405,7 +1405,7 @@ static int compare_handles(grib_handle* handle1, grib_handle* handle2, grib_runt if (listFromCommandLine) { for (i = 0; i < options->compare_count; i++) { - if (blacklisted(name)) + if (blocklisted(name)) continue; if (options->compare[i].type == GRIB_NAMESPACE) { iter = grib_keys_iterator_new(handle1, 0, options->compare[i].name); @@ -1418,7 +1418,7 @@ static int compare_handles(grib_handle* handle1, grib_handle* handle2, grib_runt name = grib_keys_iterator_get_name(iter); /*printf("----- comparing %s\n",name);*/ - if (blacklisted(name)) + if (blocklisted(name)) continue; if (compare_values(options, handle1, handle2, name, GRIB_TYPE_UNDEFINED)) { err++; diff --git a/tools/grib_compare.c b/tools/grib_compare.c index 8b238272b..a3f2ae251 100644 --- a/tools/grib_compare.c +++ b/tools/grib_compare.c @@ -54,7 +54,7 @@ static grib_error* error_summary; static compare_double_proc compare_double; static double global_tolerance = 0; static int packingCompare = 0; -static grib_string_list* blacklist = 0; +static grib_string_list* blocklist = 0; static int compareAbsolute = 1; static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_options* options); @@ -108,9 +108,9 @@ static double compare_double_relative(double* a, double* b, double tolerance) return relativeError > tolerance ? relativeError : 0; } -static int blacklisted(const char* name) +static int blocklisted(const char* name) { - grib_string_list* b = blacklist; + grib_string_list* b = blocklist; while (b) { Assert(b->value); if (!strcmp(name, b->value)) @@ -237,15 +237,15 @@ int grib_tool_init(grib_runtime_options* options) if (grib_options_on("b:")) { grib_string_list* next = 0; - blacklist = (grib_string_list*)grib_context_malloc_clear(context, sizeof(grib_string_list)); - blacklist->value = grib_context_strdup(context, options->set_values[0].name); - next = blacklist; + blocklist = (grib_string_list*)grib_context_malloc_clear(context, sizeof(grib_string_list)); + blocklist->value = grib_context_strdup(context, options->set_values[0].name); + next = blocklist; for (i = 1; i < options->set_values_count; i++) { next->next = (grib_string_list*)grib_context_malloc_clear(context, sizeof(grib_string_list)); next->next->value = grib_context_strdup(context, options->set_values[i].name); next = next->next; } - context->blacklist = blacklist; + context->blocklist = blocklist; } if (grib_options_on("r")) { @@ -653,8 +653,8 @@ static int compare_values(grib_runtime_options* options, grib_handle* h1, grib_h if (verbose) printf(" comparing %s", name); - /* If key was blacklisted, then we should not have got here */ - DebugAssert(!blacklisted(name)); + /* If key was blocklisted, then we should not have got here */ + DebugAssert(!blocklisted(name)); if (type1 == GRIB_TYPE_UNDEFINED && (err = grib_get_native_type(h1, name, &type1)) != GRIB_SUCCESS) { printInfo(h1); @@ -1130,9 +1130,9 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option grib_keys_iterator* iter = NULL; /* mask only if no -c option or headerMode (-H)*/ - if (blacklist && (!listFromCommandLine || headerMode)) { + if (blocklist && (!listFromCommandLine || headerMode)) { /* See ECC-245, GRIB-573, GRIB-915: Do not change handles in memory */ - /* grib_string_list* nextb=blacklist; + /* grib_string_list* nextb=blocklist; while (nextb) { grib_clear(h1,nextb->value); grib_clear(h2,nextb->value); @@ -1164,7 +1164,7 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option name = grib_keys_iterator_get_name(iter); /*printf("----- comparing %s\n",name);*/ - if (blacklisted(name)) + if (blocklisted(name)) continue; if (compare_values(options, h11, h22, name, GRIB_TYPE_UNDEFINED)) err++; @@ -1178,7 +1178,7 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option if (listFromCommandLine && onlyListed) { for (i = 0; i < options->compare_count; i++) { - if (blacklisted(options->compare[i].name)) + if (blocklisted(options->compare[i].name)) continue; if (options->compare[i].type == GRIB_NAMESPACE) { iter = grib_keys_iterator_new(h1, 0, options->compare[i].name); @@ -1190,7 +1190,7 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option name = grib_keys_iterator_get_name(iter); /*printf("----- comparing %s\n",name);*/ - if (blacklisted(name)) + if (blocklisted(name)) continue; if (compare_values(options, h1, h2, name, GRIB_TYPE_UNDEFINED)) err++; @@ -1222,7 +1222,7 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option name = grib_keys_iterator_get_name(iter); /*printf("----- comparing %s\n",name);*/ - if (blacklisted(name)) + if (blocklisted(name)) continue; if (compare_values(options, h1, h2, name, GRIB_TYPE_UNDEFINED)) err++; @@ -1232,7 +1232,7 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option if (listFromCommandLine) { for (i = 0; i < options->compare_count; i++) { - if (blacklisted(options->compare[i].name)) + if (blocklisted(options->compare[i].name)) continue; if (options->compare[i].type == GRIB_NAMESPACE) { iter = grib_keys_iterator_new(h1, 0, options->compare[i].name); @@ -1244,7 +1244,7 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option name = grib_keys_iterator_get_name(iter); /*printf("----- comparing %s\n",name);*/ - if (blacklisted(name)) + if (blocklisted(name)) continue; if (compare_values(options, h1, h2, name, GRIB_TYPE_UNDEFINED)) err++; diff --git a/tools/gts_compare.c b/tools/gts_compare.c index a4fcd0caf..dff76f038 100644 --- a/tools/gts_compare.c +++ b/tools/gts_compare.c @@ -34,7 +34,7 @@ struct grib_error grib_error* error_summary; compare_double_proc compare_double; -grib_string_list* blacklist = 0; +grib_string_list* blocklist = 0; static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_options* options); static int compare_values(grib_runtime_options* options, grib_handle* h1, grib_handle* h2, const char* name, int type); @@ -90,9 +90,9 @@ static void write_messages(grib_handle* h1, grib_handle* h2) write_message(h2, "error2"); } -static int blacklisted(const char* name) +static int blocklisted(const char* name) { - grib_string_list* b = blacklist; + grib_string_list* b = blocklist; if (!name) return 0; while (b) { Assert(b->value); @@ -205,15 +205,15 @@ int grib_tool_init(grib_runtime_options* options) if (grib_options_on("b:")) { grib_string_list* next = 0; int i = 0; - blacklist = (grib_string_list*)grib_context_malloc_clear(context, sizeof(grib_string_list)); - blacklist->value = grib_context_strdup(context, options->set_values[0].name); - next = blacklist; + blocklist = (grib_string_list*)grib_context_malloc_clear(context, sizeof(grib_string_list)); + blocklist->value = grib_context_strdup(context, options->set_values[0].name); + next = blocklist; for (i = 1; i < options->set_values_count; i++) { next->next = (grib_string_list*)grib_context_malloc_clear(context, sizeof(grib_string_list)); next->next->value = grib_context_strdup(context, options->set_values[i].name); next = next->next; } - context->blacklist = blacklist; + context->blocklist = blocklist; } if (grib_options_on("r")) { @@ -789,7 +789,7 @@ static int compare_all_dump_keys(grib_handle* h1, grib_handle* h2, grib_runtime_ name = grib_keys_iterator_get_name(iter); /* printf("----- comparing %s\n",name); */ - if (blacklisted(name)) + if (blocklisted(name)) continue; if (xa == NULL || (xa->flags & GRIB_ACCESSOR_FLAG_DUMP) == 0) continue; @@ -812,8 +812,8 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option const char* name = NULL; /* mask only if no -c option or headerMode (-H)*/ - if (blacklist && (!listFromCommandLine || headerMode)) { - grib_string_list* nextb = blacklist; + if (blocklist && (!listFromCommandLine || headerMode)) { + grib_string_list* nextb = blocklist; while (nextb) { grib_clear(h1, nextb->value); grib_clear(h2, nextb->value); @@ -846,7 +846,7 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option name = grib_keys_iterator_get_name(iter); /*printf("----- comparing %s\n",name);*/ - if (blacklisted(name)) + if (blocklisted(name)) continue; if (compare_values(options, h11, h22, name, GRIB_TYPE_UNDEFINED)) { err++; @@ -862,7 +862,7 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option if (listFromCommandLine && onlyListed) { for (i = 0; i < options->compare_count; i++) { - if (blacklisted((char*)options->compare[i].name)) + if (blocklisted((char*)options->compare[i].name)) continue; if (options->compare[i].type == GRIB_NAMESPACE) { iter = grib_keys_iterator_new(h1, 0, options->compare[i].name); @@ -874,7 +874,7 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option name = grib_keys_iterator_get_name(iter); /*printf("----- comparing %s\n",name);*/ - if (blacklisted(name)) + if (blocklisted(name)) continue; if (compare_values(options, h1, h2, name, GRIB_TYPE_UNDEFINED)) { err++; @@ -925,7 +925,7 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option if (listFromCommandLine) { for (i = 0; i < options->compare_count; i++) { - if (blacklisted(name)) + if (blocklisted(name)) continue; if (options->compare[i].type == GRIB_NAMESPACE) { iter = grib_keys_iterator_new(h1, 0, options->compare[i].name); @@ -937,7 +937,7 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option name = grib_keys_iterator_get_name(iter); /*printf("----- comparing %s\n",name);*/ - if (blacklisted(name)) + if (blocklisted(name)) continue; if (compare_values(options, h1, h2, name, GRIB_TYPE_UNDEFINED)) { err++; diff --git a/tools/metar_compare.c b/tools/metar_compare.c index 1e0a8f6d0..cd2b4df25 100644 --- a/tools/metar_compare.c +++ b/tools/metar_compare.c @@ -55,7 +55,7 @@ grib_error* error_summary; compare_double_proc compare_double; double global_tolerance = 0; int packingCompare = 0; -grib_string_list* blacklist = 0; +grib_string_list* blocklist = 0; int compareAbsolute = 1; static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_options* options); @@ -137,9 +137,9 @@ static double compare_double_relative(double* a, double* b, double* err) return relativeError > *err ? relativeError : 0; } -static int blacklisted(const char* name) +static int blocklisted(const char* name) { - grib_string_list* b = blacklist; + grib_string_list* b = blocklist; if (!name) return 0; while (b) { Assert(b->value); @@ -268,15 +268,15 @@ int grib_tool_init(grib_runtime_options* options) if (grib_options_on("b:")) { grib_string_list* next = 0; - blacklist = (grib_string_list*)grib_context_malloc_clear(context, sizeof(grib_string_list)); - blacklist->value = grib_context_strdup(context, options->set_values[0].name); - next = blacklist; + blocklist = (grib_string_list*)grib_context_malloc_clear(context, sizeof(grib_string_list)); + blocklist->value = grib_context_strdup(context, options->set_values[0].name); + next = blocklist; for (i = 1; i < options->set_values_count; i++) { next->next = (grib_string_list*)grib_context_malloc_clear(context, sizeof(grib_string_list)); next->next->value = grib_context_strdup(context, options->set_values[i].name); next = next->next; } - context->blacklist = blacklist; + context->blocklist = blocklist; } if (grib_options_on("r")) { @@ -1031,7 +1031,7 @@ static int compare_all_dump_keys(grib_handle* h1, grib_handle* h2, grib_runtime_ name = grib_keys_iterator_get_name(iter); /* printf("----- comparing %s\n",name); */ - if (blacklisted(name)) + if (blocklisted(name)) continue; if (xa == NULL || (xa->flags & GRIB_ACCESSOR_FLAG_DUMP) == 0) continue; @@ -1054,8 +1054,8 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option const char* name = NULL; /* mask only if no -c option or headerMode (-H)*/ - if (blacklist && (!listFromCommandLine || headerMode)) { - grib_string_list* nextb = blacklist; + if (blocklist && (!listFromCommandLine || headerMode)) { + grib_string_list* nextb = blocklist; while (nextb) { grib_clear(h1, nextb->value); grib_clear(h2, nextb->value); @@ -1088,7 +1088,7 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option name = grib_keys_iterator_get_name(iter); /*printf("----- comparing %s\n",name);*/ - if (blacklisted(name)) + if (blocklisted(name)) continue; if (compare_values(options, h11, h22, name, GRIB_TYPE_UNDEFINED)) { err++; @@ -1104,7 +1104,7 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option if (listFromCommandLine && onlyListed) { for (i = 0; i < options->compare_count; i++) { - if (blacklisted((char*)options->compare[i].name)) + if (blocklisted((char*)options->compare[i].name)) continue; if (options->compare[i].type == GRIB_NAMESPACE) { iter = grib_keys_iterator_new(h1, 0, options->compare[i].name); @@ -1116,7 +1116,7 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option name = grib_keys_iterator_get_name(iter); /*printf("----- comparing %s\n",name);*/ - if (blacklisted(name)) + if (blocklisted(name)) continue; if (compare_values(options, h1, h2, name, GRIB_TYPE_UNDEFINED)) { err++; @@ -1167,7 +1167,7 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option if (listFromCommandLine) { for (i = 0; i < options->compare_count; i++) { - if (blacklisted(name)) + if (blocklisted(name)) continue; if (options->compare[i].type == GRIB_NAMESPACE) { iter = grib_keys_iterator_new(h1, 0, options->compare[i].name); @@ -1179,7 +1179,7 @@ static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_option name = grib_keys_iterator_get_name(iter); /*printf("----- comparing %s\n",name);*/ - if (blacklisted(name)) + if (blocklisted(name)) continue; if (compare_values(options, h1, h2, name, GRIB_TYPE_UNDEFINED)) { err++; From 85754681800116cb1dbe92ae49c34b0b4d6c0f91 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 28 Sep 2020 13:16:55 +0100 Subject: [PATCH 056/683] Upgrade cmake --- bamboo/CLANG-env.sh | 2 +- bamboo/GCC-env.sh | 2 +- bamboo/INTEL-env.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bamboo/CLANG-env.sh b/bamboo/CLANG-env.sh index b16d22776..cb1b33378 100644 --- a/bamboo/CLANG-env.sh +++ b/bamboo/CLANG-env.sh @@ -15,6 +15,6 @@ module unload fftw module unload libemos module unload metview -module load cmake/3.10.2 +module load cmake/3.16.5 module switch gnu clang diff --git a/bamboo/GCC-env.sh b/bamboo/GCC-env.sh index 3d58400c9..877bc0faa 100644 --- a/bamboo/GCC-env.sh +++ b/bamboo/GCC-env.sh @@ -14,4 +14,4 @@ module unload fftw module unload libemos module unload metview -module load cmake/3.10.2 +module load cmake/3.16.5 diff --git a/bamboo/INTEL-env.sh b/bamboo/INTEL-env.sh index 36d6f525f..73c9c9700 100644 --- a/bamboo/INTEL-env.sh +++ b/bamboo/INTEL-env.sh @@ -15,6 +15,6 @@ module unload netcdf4 module list -module load cmake/3.10.2 +module load cmake/3.16.5 module switch gnu intel/17.0.3 From 279eaf6f5101c791ab699c3380f15d268d355194 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 29 Sep 2020 14:36:43 +0100 Subject: [PATCH 057/683] ECC-1150: keys 'lowerLimit' and 'upperLimit' cannot be MISSING --- definitions/grib2/template.4.probability.def | 19 ++++----- ...sor_class_from_scale_factor_scaled_value.c | 22 ++++++---- src/grib_accessor_class_gen.c | 5 ++- tests/CMakeLists.txt | 4 +- tests/grib_ecc-1150.sh | 41 +++++++++++++++++++ tests/grib_ecc-966.sh | 28 +++++++++++++ 6 files changed, 99 insertions(+), 20 deletions(-) create mode 100755 tests/grib_ecc-1150.sh create mode 100755 tests/grib_ecc-966.sh diff --git a/definitions/grib2/template.4.probability.def b/definitions/grib2/template.4.probability.def index ad1af9ff8..deb033b14 100755 --- a/definitions/grib2/template.4.probability.def +++ b/definitions/grib2/template.4.probability.def @@ -1,31 +1,30 @@ # (C) Copyright 2005- ECMWF. -# Forecast probability number +# Forecast probability number unsigned[1] forecastProbabilityNumber : dump; -# Total number of forecast probabilities +# Total number of forecast probabilities unsigned[1] totalNumberOfForecastProbabilities : dump; -# Probability type +# Probability type codetable[1] probabilityType ('4.9.table',masterDir,localDir) : dump; meta probabilityTypeName codetable_title(probabilityType): read_only; - -# Scale factor of lower limit +# Scale factor of lower limit signed[1] scaleFactorOfLowerLimit : can_be_missing,dump ; -# Scaled value of lower limit +# Scaled value of lower limit signed[4] scaledValueOfLowerLimit : can_be_missing,dump ; meta lowerLimit from_scale_factor_scaled_value( - scaleFactorOfLowerLimit, scaledValueOfLowerLimit); + scaleFactorOfLowerLimit, scaledValueOfLowerLimit): can_be_missing; -# Scale factor of upper limit +# Scale factor of upper limit signed[1] scaleFactorOfUpperLimit : can_be_missing,dump; -# Scaled value of upper limit +# Scaled value of upper limit signed[4] scaledValueOfUpperLimit : can_be_missing,dump; meta upperLimit from_scale_factor_scaled_value( - scaleFactorOfUpperLimit, scaledValueOfUpperLimit); + scaleFactorOfUpperLimit, scaledValueOfUpperLimit): can_be_missing; diff --git a/src/grib_accessor_class_from_scale_factor_scaled_value.c b/src/grib_accessor_class_from_scale_factor_scaled_value.c index 04710060e..fe17caabb 100644 --- a/src/grib_accessor_class_from_scale_factor_scaled_value.c +++ b/src/grib_accessor_class_from_scale_factor_scaled_value.c @@ -246,16 +246,22 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) if ((ret = grib_get_long_internal(hand, self->scaleFactor, &scaleFactor)) != GRIB_SUCCESS) return ret; - /* ECC-966: If scale factor is missing, print error and treat it as zero (as a fallback) */ - if (grib_is_missing(hand, self->scaleFactor, &ret) && ret == GRIB_SUCCESS) { - grib_context_log(a->context, GRIB_LOG_ERROR, - "unpack_double for %s: %s is missing! Setting it to zero", a->name, self->scaleFactor); - scaleFactor = 0; - } - if ((ret = grib_get_long_internal(hand, self->scaledValue, &scaledValue)) != GRIB_SUCCESS) return ret; + if (grib_is_missing(hand, self->scaledValue, &ret) && ret == GRIB_SUCCESS) { + *val = GRIB_MISSING_DOUBLE; + *len = 1; + return GRIB_SUCCESS; + } else { + /* ECC-966: If scale factor is missing, print error and treat it as zero (as a fallback) */ + if (grib_is_missing(hand, self->scaleFactor, &ret) && ret == GRIB_SUCCESS) { + grib_context_log(a->context, GRIB_LOG_ERROR, + "unpack_double for %s: %s is missing! Using zero instead", a->name, self->scaleFactor); + scaleFactor = 0; + } + } + *val = scaledValue; /* The formula is: @@ -289,5 +295,5 @@ static int is_missing(grib_accessor* a) if ((ret = grib_get_long_internal(grib_handle_of_accessor(a), self->scaledValue, &scaledValue)) != GRIB_SUCCESS) return ret; - return ((scaleFactor == GRIB_MISSING_LONG) | (scaledValue == GRIB_MISSING_LONG)); + return ((scaleFactor == GRIB_MISSING_LONG) || (scaledValue == GRIB_MISSING_LONG)); } diff --git a/src/grib_accessor_class_gen.c b/src/grib_accessor_class_gen.c index 797cf5145..3b4ca037a 100644 --- a/src/grib_accessor_class_gen.c +++ b/src/grib_accessor_class_gen.c @@ -275,7 +275,10 @@ static int unpack_long(grib_accessor* a, long* v, size_t* len) double val = 0.0; size_t l = 1; grib_unpack_double(a, &val, &l); - *v = (long)val; + if (val == GRIB_MISSING_DOUBLE) + *v = GRIB_MISSING_LONG; + else + *v = (long)val; grib_context_log(a->context, GRIB_LOG_DEBUG, " Casting double %s to long", a->name); return GRIB_SUCCESS; } diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index fb8dcc9a6..9940abddd 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -63,9 +63,11 @@ if( HAVE_BUILD_TOOLS ) grib_uerra grib_2nd_order_numValues grib_ecc-136 + grib_ecc-966 grib_ecc-967 - grib_ecc-1065 + grib_ecc-1150 grib_ecc-1053 + grib_ecc-1065 bufr_json_samples bufr_ecc-359 bufr_ecc-517 diff --git a/tests/grib_ecc-1150.sh b/tests/grib_ecc-1150.sh new file mode 100755 index 000000000..fa2de3367 --- /dev/null +++ b/tests/grib_ecc-1150.sh @@ -0,0 +1,41 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +# --------------------------------------------------------- +# This is the test for the JIRA issue ECC-1150 +# ECC-1150: keys 'lowerLimit' and 'upperLimit' cannot be MISSING +# --------------------------------------------------------- +label="grib_ecc-1150-test" +tempGrib=temp.${label}.grib +tempFilt=temp.${label}.filt + +in=$ECCODES_SAMPLES_PATH/GRIB2.tmpl +${tools_dir}/grib_set -s \ + productDefinitionTemplateNumber=5,scaleFactorOfLowerLimit=missing,scaledValueOfLowerLimit=missing \ + $in $tempGrib + +grib_check_key_equals $tempGrib lowerLimit MISSING +grib_check_key_equals $tempGrib upperLimit 0 + +cat > $tempFilt <$tempErrs +grep -q "ECCODES ERROR : unpack_double for radius" $tempErrs + +# Clean up +rm -f $tempGrib $tempErrs From 5a876733229aa4c965b06c9256a5ee1c33f61a1d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 29 Sep 2020 15:14:41 +0100 Subject: [PATCH 058/683] ECC-1151: GitHub CI: use same branch of ecbuild --- .appveyor.yml | 2 +- .travis.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 70f932690..d03c186b5 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -38,7 +38,7 @@ clone_depth: 1 # scripts that run after cloning repository install: # install ecbuild - - cmd: git clone --depth 1 https://github.com/ecmwf/ecbuild.git %ECBUILD_SRC% + - cmd: git clone --depth 1 https://github.com/ecmwf/ecbuild.git %ECBUILD_SRC% --branch %APPVEYOR_REPO_BRANCH% # install linux utils - cmd: conda install -c msys2 m2-bash ^ diff --git a/.travis.yml b/.travis.yml index 3234d4be0..df6be090e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,7 +43,7 @@ before_install: install: # install ecbuild - - git clone --depth 1 https://github.com/ecmwf/ecbuild.git ${ECBUILD_SRC} + - git clone --depth 1 https://github.com/ecmwf/ecbuild.git ${ECBUILD_SRC} --branch ${TRAVIS_BRANCH} #---------------------------------# # build configuration # From 4766ba34cb026e5b8c76b9e556ab76e9725b3473 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 29 Sep 2020 16:14:31 +0100 Subject: [PATCH 059/683] ECC-1150: Added more tests --- tests/grib_ecc-1150.sh | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/tests/grib_ecc-1150.sh b/tests/grib_ecc-1150.sh index fa2de3367..c0d8360e1 100755 --- a/tests/grib_ecc-1150.sh +++ b/tests/grib_ecc-1150.sh @@ -12,19 +12,21 @@ set -u # --------------------------------------------------------- # This is the test for the JIRA issue ECC-1150 -# ECC-1150: keys 'lowerLimit' and 'upperLimit' cannot be MISSING +# ECC-1150: keys 'lowerLimit' & 'upperLimit' cannot be MISSING # --------------------------------------------------------- label="grib_ecc-1150-test" tempGrib=temp.${label}.grib tempFilt=temp.${label}.filt in=$ECCODES_SAMPLES_PATH/GRIB2.tmpl + +# Lower limit +# ------------- ${tools_dir}/grib_set -s \ productDefinitionTemplateNumber=5,scaleFactorOfLowerLimit=missing,scaledValueOfLowerLimit=missing \ $in $tempGrib -grib_check_key_equals $tempGrib lowerLimit MISSING -grib_check_key_equals $tempGrib upperLimit 0 +grib_check_key_equals $tempGrib lowerLimit,upperLimit 'MISSING 0' cat > $tempFilt < $tempFilt < Date: Tue, 29 Sep 2020 16:53:48 +0100 Subject: [PATCH 060/683] Clean up: Remove obsolete directory --- concepts/grib1_short_name | 1117 ------------------------------------- 1 file changed, 1117 deletions(-) delete mode 100644 concepts/grib1_short_name diff --git a/concepts/grib1_short_name b/concepts/grib1_short_name deleted file mode 100644 index 61afcc567..000000000 --- a/concepts/grib1_short_name +++ /dev/null @@ -1,1117 +0,0 @@ -# Automatically generated by ./grib1_def.pl, do not edit - -concept grib1_short_name { - - 'STRF' = { indicatorOfParameter=1 ; gribTablesVersionNo=128 ;centre=98;} - 'VPOT' = { indicatorOfParameter=2 ; gribTablesVersionNo=128 ;centre=98;} - 'PT' = { indicatorOfParameter=3 ; gribTablesVersionNo=128 ;centre=98;} - 'EQPT' = { indicatorOfParameter=4 ; gribTablesVersionNo=128 ;centre=98;} - 'SEPT' = { indicatorOfParameter=5 ; gribTablesVersionNo=128 ;centre=98;} - 'SSFR' = { indicatorOfParameter=6 ; gribTablesVersionNo=128 ;centre=98;} - 'SCFR' = { indicatorOfParameter=7 ; gribTablesVersionNo=128 ;centre=98;} - 'SRO' = { indicatorOfParameter=8 ; gribTablesVersionNo=128 ;centre=98;} - 'SSRO' = { indicatorOfParameter=9 ; gribTablesVersionNo=128 ;centre=98;} - 'WIND' = { indicatorOfParameter=10 ; gribTablesVersionNo=128 ;centre=98;} - 'UDVW' = { indicatorOfParameter=11 ; gribTablesVersionNo=128 ;centre=98;} - 'VDVW' = { indicatorOfParameter=12 ; gribTablesVersionNo=128 ;centre=98;} - 'URTW' = { indicatorOfParameter=13 ; gribTablesVersionNo=128 ;centre=98;} - 'VRTW' = { indicatorOfParameter=14 ; gribTablesVersionNo=128 ;centre=98;} - 'ALUVP' = { indicatorOfParameter=15 ; gribTablesVersionNo=128 ;centre=98;} - 'ALUVD' = { indicatorOfParameter=16 ; gribTablesVersionNo=128 ;centre=98;} - 'ALNIP' = { indicatorOfParameter=17 ; gribTablesVersionNo=128 ;centre=98;} - 'ALNID' = { indicatorOfParameter=18 ; gribTablesVersionNo=128 ;centre=98;} - 'UVCS' = { indicatorOfParameter=19 ; gribTablesVersionNo=128 ;centre=98;} - 'PARCS' = { indicatorOfParameter=20 ; gribTablesVersionNo=128 ;centre=98;} - 'UCTP' = { indicatorOfParameter=21 ; gribTablesVersionNo=128 ;centre=98;} - 'UCLN' = { indicatorOfParameter=22 ; gribTablesVersionNo=128 ;centre=98;} - 'UCDV' = { indicatorOfParameter=23 ; gribTablesVersionNo=128 ;centre=98;} - 'CL' = { indicatorOfParameter=26 ; gribTablesVersionNo=128 ;centre=98;} - 'CVL' = { indicatorOfParameter=27 ; gribTablesVersionNo=128 ;centre=98;} - 'CVH' = { indicatorOfParameter=28 ; gribTablesVersionNo=128 ;centre=98;} - 'TVL' = { indicatorOfParameter=29 ; gribTablesVersionNo=128 ;centre=98;} - 'TVH' = { indicatorOfParameter=30 ; gribTablesVersionNo=128 ;centre=98;} - 'CI' = { indicatorOfParameter=31 ; gribTablesVersionNo=128 ;centre=98;} - 'ASN' = { indicatorOfParameter=32 ; gribTablesVersionNo=128 ;centre=98;} - 'RSN' = { indicatorOfParameter=33 ; gribTablesVersionNo=128 ;centre=98;} - 'SSTK' = { indicatorOfParameter=34 ; gribTablesVersionNo=128 ;centre=98;} - 'ISTL1' = { indicatorOfParameter=35 ; gribTablesVersionNo=128 ;centre=98;} - 'ISTL2' = { indicatorOfParameter=36 ; gribTablesVersionNo=128 ;centre=98;} - 'ISTL3' = { indicatorOfParameter=37 ; gribTablesVersionNo=128 ;centre=98;} - 'ISTL4' = { indicatorOfParameter=38 ; gribTablesVersionNo=128 ;centre=98;} - 'SWVL1' = { indicatorOfParameter=39 ; gribTablesVersionNo=128 ;centre=98;} - 'SWVL2' = { indicatorOfParameter=40 ; gribTablesVersionNo=128 ;centre=98;} - 'SWVL3' = { indicatorOfParameter=41 ; gribTablesVersionNo=128 ;centre=98;} - 'SWVL4' = { indicatorOfParameter=42 ; gribTablesVersionNo=128 ;centre=98;} - 'SLT' = { indicatorOfParameter=43 ; gribTablesVersionNo=128 ;centre=98;} - 'ES' = { indicatorOfParameter=44 ; gribTablesVersionNo=128 ;centre=98;} - 'SMLT' = { indicatorOfParameter=45 ; gribTablesVersionNo=128 ;centre=98;} - 'SDUR' = { indicatorOfParameter=46 ; gribTablesVersionNo=128 ;centre=98;} - 'DSRP' = { indicatorOfParameter=47 ; gribTablesVersionNo=128 ;centre=98;} - 'MAGSS' = { indicatorOfParameter=48 ; gribTablesVersionNo=128 ;centre=98;} - '10FG' = { indicatorOfParameter=49 ; gribTablesVersionNo=128 ;centre=98;} - 'LSPF' = { indicatorOfParameter=50 ; gribTablesVersionNo=128 ;centre=98;} - 'MX2T24' = { indicatorOfParameter=51 ; gribTablesVersionNo=128 ;centre=98;} - 'MN2T24' = { indicatorOfParameter=52 ; gribTablesVersionNo=128 ;centre=98;} - 'MONT' = { indicatorOfParameter=53 ; gribTablesVersionNo=128 ;centre=98;} - 'PRES' = { indicatorOfParameter=54 ; gribTablesVersionNo=128 ;centre=98;} - 'MEAN2T24' = { indicatorOfParameter=55 ; gribTablesVersionNo=128 ;centre=98;} - 'MN2D24' = { indicatorOfParameter=56 ; gribTablesVersionNo=128 ;centre=98;} - 'UVB' = { indicatorOfParameter=57 ; gribTablesVersionNo=128 ;centre=98;} - 'PAR' = { indicatorOfParameter=58 ; gribTablesVersionNo=128 ;centre=98;} - 'CAPE' = { indicatorOfParameter=59 ; gribTablesVersionNo=128 ;centre=98;} - 'PV' = { indicatorOfParameter=60 ; gribTablesVersionNo=128 ;centre=98;} - 'TPO' = { indicatorOfParameter=61 ; gribTablesVersionNo=128 ;centre=98;} - 'OBCT' = { indicatorOfParameter=62 ; gribTablesVersionNo=128 ;centre=98;} - 'ISSRD' = { indicatorOfParameter=72 ; gribTablesVersionNo=128 ;centre=98;} - 'ISTRD' = { indicatorOfParameter=73 ; gribTablesVersionNo=128 ;centre=98;} - 'SDFOR' = { indicatorOfParameter=74 ; gribTablesVersionNo=128 ;centre=98;} - 'MX2T6' = { indicatorOfParameter=121 ; gribTablesVersionNo=128 ;centre=98;} - 'MN2T6' = { indicatorOfParameter=122 ; gribTablesVersionNo=128 ;centre=98;} - '10FG6' = { indicatorOfParameter=123 ; gribTablesVersionNo=128 ;centre=98;} - 'EMIS' = { indicatorOfParameter=124 ; gribTablesVersionNo=128 ;centre=98;} - 'AT' = { indicatorOfParameter=127 ; gribTablesVersionNo=128 ;centre=98;} - 'BV' = { indicatorOfParameter=128 ; gribTablesVersionNo=128 ;centre=98;} - 'Z' = { indicatorOfParameter=129 ; gribTablesVersionNo=128 ;centre=98;} - 'T' = { indicatorOfParameter=130 ; gribTablesVersionNo=128 ;centre=98;} - 'U' = { indicatorOfParameter=131 ; gribTablesVersionNo=128 ;centre=98;} - 'V' = { indicatorOfParameter=132 ; gribTablesVersionNo=128 ;centre=98;} - 'Q' = { indicatorOfParameter=133 ; gribTablesVersionNo=128 ;centre=98;} - 'SP' = { indicatorOfParameter=134 ; gribTablesVersionNo=128 ;centre=98;} - 'W' = { indicatorOfParameter=135 ; gribTablesVersionNo=128 ;centre=98;} - 'TCW' = { indicatorOfParameter=136 ; gribTablesVersionNo=128 ;centre=98;} - 'TCWV' = { indicatorOfParameter=137 ; gribTablesVersionNo=128 ;centre=98;} - 'VO' = { indicatorOfParameter=138 ; gribTablesVersionNo=128 ;centre=98;} - 'STL1' = { indicatorOfParameter=139 ; gribTablesVersionNo=128 ;centre=98;} - 'SWL1' = { indicatorOfParameter=140 ; gribTablesVersionNo=128 ;centre=98;} - 'SD' = { indicatorOfParameter=141 ; gribTablesVersionNo=128 ;centre=98;} - 'LSP' = { indicatorOfParameter=142 ; gribTablesVersionNo=128 ;centre=98;} - 'CP' = { indicatorOfParameter=143 ; gribTablesVersionNo=128 ;centre=98;} - 'SF' = { indicatorOfParameter=144 ; gribTablesVersionNo=128 ;centre=98;} - 'BLD' = { indicatorOfParameter=145 ; gribTablesVersionNo=128 ;centre=98;} - 'SSHF' = { indicatorOfParameter=146 ; gribTablesVersionNo=128 ;centre=98;} - 'SLHF' = { indicatorOfParameter=147 ; gribTablesVersionNo=128 ;centre=98;} - 'CHNK' = { indicatorOfParameter=148 ; gribTablesVersionNo=128 ;centre=98;} - 'SNR' = { indicatorOfParameter=149 ; gribTablesVersionNo=128 ;centre=98;} - 'TNR' = { indicatorOfParameter=150 ; gribTablesVersionNo=128 ;centre=98;} - 'MSL' = { indicatorOfParameter=151 ; gribTablesVersionNo=128 ;centre=98;} - 'LNSP' = { indicatorOfParameter=152 ; gribTablesVersionNo=128 ;centre=98;} - 'SWHR' = { indicatorOfParameter=153 ; gribTablesVersionNo=128 ;centre=98;} - 'LWHR' = { indicatorOfParameter=154 ; gribTablesVersionNo=128 ;centre=98;} - 'D' = { indicatorOfParameter=155 ; gribTablesVersionNo=128 ;centre=98;} - 'GH' = { indicatorOfParameter=156 ; gribTablesVersionNo=128 ;centre=98;} - 'R' = { indicatorOfParameter=157 ; gribTablesVersionNo=128 ;centre=98;} - 'TSP' = { indicatorOfParameter=158 ; gribTablesVersionNo=128 ;centre=98;} - 'BLH' = { indicatorOfParameter=159 ; gribTablesVersionNo=128 ;centre=98;} - 'SDOR' = { indicatorOfParameter=160 ; gribTablesVersionNo=128 ;centre=98;} - 'ISOR' = { indicatorOfParameter=161 ; gribTablesVersionNo=128 ;centre=98;} - 'ANOR' = { indicatorOfParameter=162 ; gribTablesVersionNo=128 ;centre=98;} - 'SLOR' = { indicatorOfParameter=163 ; gribTablesVersionNo=128 ;centre=98;} - 'TCC' = { indicatorOfParameter=164 ; gribTablesVersionNo=128 ;centre=98;} - '10U' = { indicatorOfParameter=165 ; gribTablesVersionNo=128 ;centre=98;} - '10V' = { indicatorOfParameter=166 ; gribTablesVersionNo=128 ;centre=98;} - '2T' = { indicatorOfParameter=167 ; gribTablesVersionNo=128 ;centre=98;} - '2D' = { indicatorOfParameter=168 ; gribTablesVersionNo=128 ;centre=98;} - 'SSRD' = { indicatorOfParameter=169 ; gribTablesVersionNo=128 ;centre=98;} - 'STL2' = { indicatorOfParameter=170 ; gribTablesVersionNo=128 ;centre=98;} - 'SWL2' = { indicatorOfParameter=171 ; gribTablesVersionNo=128 ;centre=98;} - 'LSM' = { indicatorOfParameter=172 ; gribTablesVersionNo=128 ;centre=98;} - 'SR' = { indicatorOfParameter=173 ; gribTablesVersionNo=128 ;centre=98;} - 'AL' = { indicatorOfParameter=174 ; gribTablesVersionNo=128 ;centre=98;} - 'STRD' = { indicatorOfParameter=175 ; gribTablesVersionNo=128 ;centre=98;} - 'SSR' = { indicatorOfParameter=176 ; gribTablesVersionNo=128 ;centre=98;} - 'STR' = { indicatorOfParameter=177 ; gribTablesVersionNo=128 ;centre=98;} - 'TSR' = { indicatorOfParameter=178 ; gribTablesVersionNo=128 ;centre=98;} - 'TTR' = { indicatorOfParameter=179 ; gribTablesVersionNo=128 ;centre=98;} - 'EWSS' = { indicatorOfParameter=180 ; gribTablesVersionNo=128 ;centre=98;} - 'NSSS' = { indicatorOfParameter=181 ; gribTablesVersionNo=128 ;centre=98;} - 'E' = { indicatorOfParameter=182 ; gribTablesVersionNo=128 ;centre=98;} - 'STL3' = { indicatorOfParameter=183 ; gribTablesVersionNo=128 ;centre=98;} - 'SWL3' = { indicatorOfParameter=184 ; gribTablesVersionNo=128 ;centre=98;} - 'CCC' = { indicatorOfParameter=185 ; gribTablesVersionNo=128 ;centre=98;} - 'LCC' = { indicatorOfParameter=186 ; gribTablesVersionNo=128 ;centre=98;} - 'MCC' = { indicatorOfParameter=187 ; gribTablesVersionNo=128 ;centre=98;} - 'HCC' = { indicatorOfParameter=188 ; gribTablesVersionNo=128 ;centre=98;} - 'SUND' = { indicatorOfParameter=189 ; gribTablesVersionNo=128 ;centre=98;} - 'EWOV' = { indicatorOfParameter=190 ; gribTablesVersionNo=128 ;centre=98;} - 'NSOV' = { indicatorOfParameter=191 ; gribTablesVersionNo=128 ;centre=98;} - 'NWOV' = { indicatorOfParameter=192 ; gribTablesVersionNo=128 ;centre=98;} - 'NEOV' = { indicatorOfParameter=193 ; gribTablesVersionNo=128 ;centre=98;} - 'BTMP' = { indicatorOfParameter=194 ; gribTablesVersionNo=128 ;centre=98;} - 'LGWS' = { indicatorOfParameter=195 ; gribTablesVersionNo=128 ;centre=98;} - 'MGWS' = { indicatorOfParameter=196 ; gribTablesVersionNo=128 ;centre=98;} - 'GWD' = { indicatorOfParameter=197 ; gribTablesVersionNo=128 ;centre=98;} - 'SRC' = { indicatorOfParameter=198 ; gribTablesVersionNo=128 ;centre=98;} - 'VEG' = { indicatorOfParameter=199 ; gribTablesVersionNo=128 ;centre=98;} - 'VSO' = { indicatorOfParameter=200 ; gribTablesVersionNo=128 ;centre=98;} - 'MX2T' = { indicatorOfParameter=201 ; gribTablesVersionNo=128 ;centre=98;} - 'MN2T' = { indicatorOfParameter=202 ; gribTablesVersionNo=128 ;centre=98;} - 'O3' = { indicatorOfParameter=203 ; gribTablesVersionNo=128 ;centre=98;} - 'PAW' = { indicatorOfParameter=204 ; gribTablesVersionNo=128 ;centre=98;} - 'RO' = { indicatorOfParameter=205 ; gribTablesVersionNo=128 ;centre=98;} - 'TCO3' = { indicatorOfParameter=206 ; gribTablesVersionNo=128 ;centre=98;} - '10SI' = { indicatorOfParameter=207 ; gribTablesVersionNo=128 ;centre=98;} - 'TSRC' = { indicatorOfParameter=208 ; gribTablesVersionNo=128 ;centre=98;} - 'TTRC' = { indicatorOfParameter=209 ; gribTablesVersionNo=128 ;centre=98;} - 'SSRC' = { indicatorOfParameter=210 ; gribTablesVersionNo=128 ;centre=98;} - 'STRC' = { indicatorOfParameter=211 ; gribTablesVersionNo=128 ;centre=98;} - 'TISR' = { indicatorOfParameter=212 ; gribTablesVersionNo=128 ;centre=98;} - 'VIMD' = { indicatorOfParameter=213 ; gribTablesVersionNo=128 ;centre=98;} - 'DHR' = { indicatorOfParameter=214 ; gribTablesVersionNo=128 ;centre=98;} - 'DHVD' = { indicatorOfParameter=215 ; gribTablesVersionNo=128 ;centre=98;} - 'DHCC' = { indicatorOfParameter=216 ; gribTablesVersionNo=128 ;centre=98;} - 'DHLC' = { indicatorOfParameter=217 ; gribTablesVersionNo=128 ;centre=98;} - 'VDZW' = { indicatorOfParameter=218 ; gribTablesVersionNo=128 ;centre=98;} - 'VDMW' = { indicatorOfParameter=219 ; gribTablesVersionNo=128 ;centre=98;} - 'EWGD' = { indicatorOfParameter=220 ; gribTablesVersionNo=128 ;centre=98;} - 'NSGD' = { indicatorOfParameter=221 ; gribTablesVersionNo=128 ;centre=98;} - 'CTZW' = { indicatorOfParameter=222 ; gribTablesVersionNo=128 ;centre=98;} - 'CTMW' = { indicatorOfParameter=223 ; gribTablesVersionNo=128 ;centre=98;} - 'VDH' = { indicatorOfParameter=224 ; gribTablesVersionNo=128 ;centre=98;} - 'HTCC' = { indicatorOfParameter=225 ; gribTablesVersionNo=128 ;centre=98;} - 'HTLC' = { indicatorOfParameter=226 ; gribTablesVersionNo=128 ;centre=98;} - 'CRNH' = { indicatorOfParameter=227 ; gribTablesVersionNo=128 ;centre=98;} - 'TP' = { indicatorOfParameter=228 ; gribTablesVersionNo=128 ;centre=98;} - 'IEWS' = { indicatorOfParameter=229 ; gribTablesVersionNo=128 ;centre=98;} - 'INSS' = { indicatorOfParameter=230 ; gribTablesVersionNo=128 ;centre=98;} - 'ISHF' = { indicatorOfParameter=231 ; gribTablesVersionNo=128 ;centre=98;} - 'IE' = { indicatorOfParameter=232 ; gribTablesVersionNo=128 ;centre=98;} - 'ASQ' = { indicatorOfParameter=233 ; gribTablesVersionNo=128 ;centre=98;} - 'LSRH' = { indicatorOfParameter=234 ; gribTablesVersionNo=128 ;centre=98;} - 'SKT' = { indicatorOfParameter=235 ; gribTablesVersionNo=128 ;centre=98;} - 'STL4' = { indicatorOfParameter=236 ; gribTablesVersionNo=128 ;centre=98;} - 'SWL4' = { indicatorOfParameter=237 ; gribTablesVersionNo=128 ;centre=98;} - 'TSN' = { indicatorOfParameter=238 ; gribTablesVersionNo=128 ;centre=98;} - 'CSF' = { indicatorOfParameter=239 ; gribTablesVersionNo=128 ;centre=98;} - 'LSF' = { indicatorOfParameter=240 ; gribTablesVersionNo=128 ;centre=98;} - 'ACF' = { indicatorOfParameter=241 ; gribTablesVersionNo=128 ;centre=98;} - 'ALW' = { indicatorOfParameter=242 ; gribTablesVersionNo=128 ;centre=98;} - 'FAL' = { indicatorOfParameter=243 ; gribTablesVersionNo=128 ;centre=98;} - 'FSR' = { indicatorOfParameter=244 ; gribTablesVersionNo=128 ;centre=98;} - 'FLSR' = { indicatorOfParameter=245 ; gribTablesVersionNo=128 ;centre=98;} - 'CLWC' = { indicatorOfParameter=246 ; gribTablesVersionNo=128 ;centre=98;} - 'CIWC' = { indicatorOfParameter=247 ; gribTablesVersionNo=128 ;centre=98;} - 'CC' = { indicatorOfParameter=248 ; gribTablesVersionNo=128 ;centre=98;} - 'AIW' = { indicatorOfParameter=249 ; gribTablesVersionNo=128 ;centre=98;} - 'ICE' = { indicatorOfParameter=250 ; gribTablesVersionNo=128 ;centre=98;} - 'ATTE' = { indicatorOfParameter=251 ; gribTablesVersionNo=128 ;centre=98;} - 'ATHE' = { indicatorOfParameter=252 ; gribTablesVersionNo=128 ;centre=98;} - 'ATZE' = { indicatorOfParameter=253 ; gribTablesVersionNo=128 ;centre=98;} - 'ATMW' = { indicatorOfParameter=254 ; gribTablesVersionNo=128 ;centre=98;} - 'STRF' = { indicatorOfParameter=1 ; gribTablesVersionNo=129 ;centre=98;} - 'VPOT' = { indicatorOfParameter=2 ; gribTablesVersionNo=129 ;centre=98;} - 'PT' = { indicatorOfParameter=3 ; gribTablesVersionNo=129 ;centre=98;} - 'EQPT' = { indicatorOfParameter=4 ; gribTablesVersionNo=129 ;centre=98;} - 'SEPT' = { indicatorOfParameter=5 ; gribTablesVersionNo=129 ;centre=98;} - 'UDVW' = { indicatorOfParameter=11 ; gribTablesVersionNo=129 ;centre=98;} - 'VDVW' = { indicatorOfParameter=12 ; gribTablesVersionNo=129 ;centre=98;} - 'URTW' = { indicatorOfParameter=13 ; gribTablesVersionNo=129 ;centre=98;} - 'VRTW' = { indicatorOfParameter=14 ; gribTablesVersionNo=129 ;centre=98;} - 'UCTP' = { indicatorOfParameter=21 ; gribTablesVersionNo=129 ;centre=98;} - 'UCLN' = { indicatorOfParameter=22 ; gribTablesVersionNo=129 ;centre=98;} - 'UCDV' = { indicatorOfParameter=23 ; gribTablesVersionNo=129 ;centre=98;} - 'CL' = { indicatorOfParameter=26 ; gribTablesVersionNo=129 ;centre=98;} - 'CVL' = { indicatorOfParameter=27 ; gribTablesVersionNo=129 ;centre=98;} - 'CVH' = { indicatorOfParameter=28 ; gribTablesVersionNo=129 ;centre=98;} - 'TVL' = { indicatorOfParameter=29 ; gribTablesVersionNo=129 ;centre=98;} - 'TVH' = { indicatorOfParameter=30 ; gribTablesVersionNo=129 ;centre=98;} - 'CI' = { indicatorOfParameter=31 ; gribTablesVersionNo=129 ;centre=98;} - 'ASN' = { indicatorOfParameter=32 ; gribTablesVersionNo=129 ;centre=98;} - 'RSN' = { indicatorOfParameter=33 ; gribTablesVersionNo=129 ;centre=98;} - 'SSTK' = { indicatorOfParameter=34 ; gribTablesVersionNo=129 ;centre=98;} - 'ISTL1' = { indicatorOfParameter=35 ; gribTablesVersionNo=129 ;centre=98;} - 'ISTL2' = { indicatorOfParameter=36 ; gribTablesVersionNo=129 ;centre=98;} - 'ISTL3' = { indicatorOfParameter=37 ; gribTablesVersionNo=129 ;centre=98;} - 'ISTL4' = { indicatorOfParameter=38 ; gribTablesVersionNo=129 ;centre=98;} - 'SWVL1' = { indicatorOfParameter=39 ; gribTablesVersionNo=129 ;centre=98;} - 'SWVL2' = { indicatorOfParameter=40 ; gribTablesVersionNo=129 ;centre=98;} - 'SWVL3' = { indicatorOfParameter=41 ; gribTablesVersionNo=129 ;centre=98;} - 'SWVL4' = { indicatorOfParameter=42 ; gribTablesVersionNo=129 ;centre=98;} - 'SLT' = { indicatorOfParameter=43 ; gribTablesVersionNo=129 ;centre=98;} - 'ES' = { indicatorOfParameter=44 ; gribTablesVersionNo=129 ;centre=98;} - 'SMLT' = { indicatorOfParameter=45 ; gribTablesVersionNo=129 ;centre=98;} - 'SDUR' = { indicatorOfParameter=46 ; gribTablesVersionNo=129 ;centre=98;} - 'DSRP' = { indicatorOfParameter=47 ; gribTablesVersionNo=129 ;centre=98;} - 'MAGSS' = { indicatorOfParameter=48 ; gribTablesVersionNo=129 ;centre=98;} - '10FG' = { indicatorOfParameter=49 ; gribTablesVersionNo=129 ;centre=98;} - 'LSPF' = { indicatorOfParameter=50 ; gribTablesVersionNo=129 ;centre=98;} - 'MX2T24' = { indicatorOfParameter=51 ; gribTablesVersionNo=129 ;centre=98;} - 'MN2T24' = { indicatorOfParameter=52 ; gribTablesVersionNo=129 ;centre=98;} - 'MONT' = { indicatorOfParameter=53 ; gribTablesVersionNo=129 ;centre=98;} - 'PRES' = { indicatorOfParameter=54 ; gribTablesVersionNo=129 ;centre=98;} - 'MEAN2T24' = { indicatorOfParameter=55 ; gribTablesVersionNo=129 ;centre=98;} - 'MN2D24' = { indicatorOfParameter=56 ; gribTablesVersionNo=129 ;centre=98;} - 'UVB' = { indicatorOfParameter=57 ; gribTablesVersionNo=129 ;centre=98;} - 'PAR' = { indicatorOfParameter=58 ; gribTablesVersionNo=129 ;centre=98;} - 'CAPE' = { indicatorOfParameter=59 ; gribTablesVersionNo=129 ;centre=98;} - 'PV' = { indicatorOfParameter=60 ; gribTablesVersionNo=129 ;centre=98;} - 'TPO' = { indicatorOfParameter=61 ; gribTablesVersionNo=129 ;centre=98;} - 'OBCT' = { indicatorOfParameter=62 ; gribTablesVersionNo=129 ;centre=98;} - 'MX2T6' = { indicatorOfParameter=121 ; gribTablesVersionNo=129 ;centre=98;} - 'MN2T6' = { indicatorOfParameter=122 ; gribTablesVersionNo=129 ;centre=98;} - '10FG6' = { indicatorOfParameter=123 ; gribTablesVersionNo=129 ;centre=98;} - 'AT' = { indicatorOfParameter=127 ; gribTablesVersionNo=129 ;centre=98;} - 'BV' = { indicatorOfParameter=128 ; gribTablesVersionNo=129 ;centre=98;} - 'Z' = { indicatorOfParameter=129 ; gribTablesVersionNo=129 ;centre=98;} - 'T' = { indicatorOfParameter=130 ; gribTablesVersionNo=129 ;centre=98;} - 'U' = { indicatorOfParameter=131 ; gribTablesVersionNo=129 ;centre=98;} - 'V' = { indicatorOfParameter=132 ; gribTablesVersionNo=129 ;centre=98;} - 'Q' = { indicatorOfParameter=133 ; gribTablesVersionNo=129 ;centre=98;} - 'SP' = { indicatorOfParameter=134 ; gribTablesVersionNo=129 ;centre=98;} - 'W' = { indicatorOfParameter=135 ; gribTablesVersionNo=129 ;centre=98;} - 'TCW' = { indicatorOfParameter=136 ; gribTablesVersionNo=129 ;centre=98;} - 'TCWV' = { indicatorOfParameter=137 ; gribTablesVersionNo=129 ;centre=98;} - 'VO' = { indicatorOfParameter=138 ; gribTablesVersionNo=129 ;centre=98;} - 'STL1' = { indicatorOfParameter=139 ; gribTablesVersionNo=129 ;centre=98;} - 'SWL1' = { indicatorOfParameter=140 ; gribTablesVersionNo=129 ;centre=98;} - 'SD' = { indicatorOfParameter=141 ; gribTablesVersionNo=129 ;centre=98;} - 'LSP' = { indicatorOfParameter=142 ; gribTablesVersionNo=129 ;centre=98;} - 'CP' = { indicatorOfParameter=143 ; gribTablesVersionNo=129 ;centre=98;} - 'SF' = { indicatorOfParameter=144 ; gribTablesVersionNo=129 ;centre=98;} - 'BLD' = { indicatorOfParameter=145 ; gribTablesVersionNo=129 ;centre=98;} - 'SSHF' = { indicatorOfParameter=146 ; gribTablesVersionNo=129 ;centre=98;} - 'SLHF' = { indicatorOfParameter=147 ; gribTablesVersionNo=129 ;centre=98;} - 'CHNK' = { indicatorOfParameter=148 ; gribTablesVersionNo=129 ;centre=98;} - 'SNR' = { indicatorOfParameter=149 ; gribTablesVersionNo=129 ;centre=98;} - 'TNR' = { indicatorOfParameter=150 ; gribTablesVersionNo=129 ;centre=98;} - 'MSL' = { indicatorOfParameter=151 ; gribTablesVersionNo=129 ;centre=98;} - 'LNSP' = { indicatorOfParameter=152 ; gribTablesVersionNo=129 ;centre=98;} - 'SWHR' = { indicatorOfParameter=153 ; gribTablesVersionNo=129 ;centre=98;} - 'LWHR' = { indicatorOfParameter=154 ; gribTablesVersionNo=129 ;centre=98;} - 'D' = { indicatorOfParameter=155 ; gribTablesVersionNo=129 ;centre=98;} - 'GH' = { indicatorOfParameter=156 ; gribTablesVersionNo=129 ;centre=98;} - 'R' = { indicatorOfParameter=157 ; gribTablesVersionNo=129 ;centre=98;} - 'TSP' = { indicatorOfParameter=158 ; gribTablesVersionNo=129 ;centre=98;} - 'BLH' = { indicatorOfParameter=159 ; gribTablesVersionNo=129 ;centre=98;} - 'SDOR' = { indicatorOfParameter=160 ; gribTablesVersionNo=129 ;centre=98;} - 'ISOR' = { indicatorOfParameter=161 ; gribTablesVersionNo=129 ;centre=98;} - 'ANOR' = { indicatorOfParameter=162 ; gribTablesVersionNo=129 ;centre=98;} - 'SLOR' = { indicatorOfParameter=163 ; gribTablesVersionNo=129 ;centre=98;} - 'TCC' = { indicatorOfParameter=164 ; gribTablesVersionNo=129 ;centre=98;} - '10U' = { indicatorOfParameter=165 ; gribTablesVersionNo=129 ;centre=98;} - '10V' = { indicatorOfParameter=166 ; gribTablesVersionNo=129 ;centre=98;} - '2T' = { indicatorOfParameter=167 ; gribTablesVersionNo=129 ;centre=98;} - '2D' = { indicatorOfParameter=168 ; gribTablesVersionNo=129 ;centre=98;} - 'SSRD' = { indicatorOfParameter=169 ; gribTablesVersionNo=129 ;centre=98;} - 'STL2' = { indicatorOfParameter=170 ; gribTablesVersionNo=129 ;centre=98;} - 'SWL2' = { indicatorOfParameter=171 ; gribTablesVersionNo=129 ;centre=98;} - 'LSM' = { indicatorOfParameter=172 ; gribTablesVersionNo=129 ;centre=98;} - 'SR' = { indicatorOfParameter=173 ; gribTablesVersionNo=129 ;centre=98;} - 'AL' = { indicatorOfParameter=174 ; gribTablesVersionNo=129 ;centre=98;} - 'STRD' = { indicatorOfParameter=175 ; gribTablesVersionNo=129 ;centre=98;} - 'SSR' = { indicatorOfParameter=176 ; gribTablesVersionNo=129 ;centre=98;} - 'STR' = { indicatorOfParameter=177 ; gribTablesVersionNo=129 ;centre=98;} - 'TSR' = { indicatorOfParameter=178 ; gribTablesVersionNo=129 ;centre=98;} - 'TTR' = { indicatorOfParameter=179 ; gribTablesVersionNo=129 ;centre=98;} - 'EWSS' = { indicatorOfParameter=180 ; gribTablesVersionNo=129 ;centre=98;} - 'NSSS' = { indicatorOfParameter=181 ; gribTablesVersionNo=129 ;centre=98;} - 'E' = { indicatorOfParameter=182 ; gribTablesVersionNo=129 ;centre=98;} - 'STL3' = { indicatorOfParameter=183 ; gribTablesVersionNo=129 ;centre=98;} - 'SWL3' = { indicatorOfParameter=184 ; gribTablesVersionNo=129 ;centre=98;} - 'CCC' = { indicatorOfParameter=185 ; gribTablesVersionNo=129 ;centre=98;} - 'LCC' = { indicatorOfParameter=186 ; gribTablesVersionNo=129 ;centre=98;} - 'MCC' = { indicatorOfParameter=187 ; gribTablesVersionNo=129 ;centre=98;} - 'HCC' = { indicatorOfParameter=188 ; gribTablesVersionNo=129 ;centre=98;} - 'SUND' = { indicatorOfParameter=189 ; gribTablesVersionNo=129 ;centre=98;} - 'EWOV' = { indicatorOfParameter=190 ; gribTablesVersionNo=129 ;centre=98;} - 'NSOV' = { indicatorOfParameter=191 ; gribTablesVersionNo=129 ;centre=98;} - 'NWOV' = { indicatorOfParameter=192 ; gribTablesVersionNo=129 ;centre=98;} - 'NEOV' = { indicatorOfParameter=193 ; gribTablesVersionNo=129 ;centre=98;} - 'BTMP' = { indicatorOfParameter=194 ; gribTablesVersionNo=129 ;centre=98;} - 'LGWS' = { indicatorOfParameter=195 ; gribTablesVersionNo=129 ;centre=98;} - 'MGWS' = { indicatorOfParameter=196 ; gribTablesVersionNo=129 ;centre=98;} - 'GWD' = { indicatorOfParameter=197 ; gribTablesVersionNo=129 ;centre=98;} - 'SRC' = { indicatorOfParameter=198 ; gribTablesVersionNo=129 ;centre=98;} - 'VEG' = { indicatorOfParameter=199 ; gribTablesVersionNo=129 ;centre=98;} - 'VSO' = { indicatorOfParameter=200 ; gribTablesVersionNo=129 ;centre=98;} - 'MX2T' = { indicatorOfParameter=201 ; gribTablesVersionNo=129 ;centre=98;} - 'MN2T' = { indicatorOfParameter=202 ; gribTablesVersionNo=129 ;centre=98;} - 'O3' = { indicatorOfParameter=203 ; gribTablesVersionNo=129 ;centre=98;} - 'PAW' = { indicatorOfParameter=204 ; gribTablesVersionNo=129 ;centre=98;} - 'RO' = { indicatorOfParameter=205 ; gribTablesVersionNo=129 ;centre=98;} - 'TCO3' = { indicatorOfParameter=206 ; gribTablesVersionNo=129 ;centre=98;} - '10SI' = { indicatorOfParameter=207 ; gribTablesVersionNo=129 ;centre=98;} - 'TSRC' = { indicatorOfParameter=208 ; gribTablesVersionNo=129 ;centre=98;} - 'TTRC' = { indicatorOfParameter=209 ; gribTablesVersionNo=129 ;centre=98;} - 'SSRC' = { indicatorOfParameter=210 ; gribTablesVersionNo=129 ;centre=98;} - 'STRC' = { indicatorOfParameter=211 ; gribTablesVersionNo=129 ;centre=98;} - 'TISR' = { indicatorOfParameter=212 ; gribTablesVersionNo=129 ;centre=98;} - 'DHR' = { indicatorOfParameter=214 ; gribTablesVersionNo=129 ;centre=98;} - 'DHVD' = { indicatorOfParameter=215 ; gribTablesVersionNo=129 ;centre=98;} - 'DHCC' = { indicatorOfParameter=216 ; gribTablesVersionNo=129 ;centre=98;} - 'DHLC' = { indicatorOfParameter=217 ; gribTablesVersionNo=129 ;centre=98;} - 'VDZW' = { indicatorOfParameter=218 ; gribTablesVersionNo=129 ;centre=98;} - 'VDMW' = { indicatorOfParameter=219 ; gribTablesVersionNo=129 ;centre=98;} - 'EWGD' = { indicatorOfParameter=220 ; gribTablesVersionNo=129 ;centre=98;} - 'NSGD' = { indicatorOfParameter=221 ; gribTablesVersionNo=129 ;centre=98;} - 'CTZW' = { indicatorOfParameter=222 ; gribTablesVersionNo=129 ;centre=98;} - 'CTMW' = { indicatorOfParameter=223 ; gribTablesVersionNo=129 ;centre=98;} - 'VDH' = { indicatorOfParameter=224 ; gribTablesVersionNo=129 ;centre=98;} - 'HTCC' = { indicatorOfParameter=225 ; gribTablesVersionNo=129 ;centre=98;} - 'HTLC' = { indicatorOfParameter=226 ; gribTablesVersionNo=129 ;centre=98;} - 'CRNH' = { indicatorOfParameter=227 ; gribTablesVersionNo=129 ;centre=98;} - 'TP' = { indicatorOfParameter=228 ; gribTablesVersionNo=129 ;centre=98;} - 'IEWS' = { indicatorOfParameter=229 ; gribTablesVersionNo=129 ;centre=98;} - 'INSS' = { indicatorOfParameter=230 ; gribTablesVersionNo=129 ;centre=98;} - 'ISHF' = { indicatorOfParameter=231 ; gribTablesVersionNo=129 ;centre=98;} - 'IE' = { indicatorOfParameter=232 ; gribTablesVersionNo=129 ;centre=98;} - 'ASQ' = { indicatorOfParameter=233 ; gribTablesVersionNo=129 ;centre=98;} - 'LSRH' = { indicatorOfParameter=234 ; gribTablesVersionNo=129 ;centre=98;} - 'SKT' = { indicatorOfParameter=235 ; gribTablesVersionNo=129 ;centre=98;} - 'STL4' = { indicatorOfParameter=236 ; gribTablesVersionNo=129 ;centre=98;} - 'SWL4' = { indicatorOfParameter=237 ; gribTablesVersionNo=129 ;centre=98;} - 'TSN' = { indicatorOfParameter=238 ; gribTablesVersionNo=129 ;centre=98;} - 'CSF' = { indicatorOfParameter=239 ; gribTablesVersionNo=129 ;centre=98;} - 'LSF' = { indicatorOfParameter=240 ; gribTablesVersionNo=129 ;centre=98;} - 'ACF' = { indicatorOfParameter=241 ; gribTablesVersionNo=129 ;centre=98;} - 'ALW' = { indicatorOfParameter=242 ; gribTablesVersionNo=129 ;centre=98;} - 'FAL' = { indicatorOfParameter=243 ; gribTablesVersionNo=129 ;centre=98;} - 'FSR' = { indicatorOfParameter=244 ; gribTablesVersionNo=129 ;centre=98;} - 'FLSR' = { indicatorOfParameter=245 ; gribTablesVersionNo=129 ;centre=98;} - 'CLWC' = { indicatorOfParameter=246 ; gribTablesVersionNo=129 ;centre=98;} - 'CIWC' = { indicatorOfParameter=247 ; gribTablesVersionNo=129 ;centre=98;} - 'CC' = { indicatorOfParameter=248 ; gribTablesVersionNo=129 ;centre=98;} - 'AIW' = { indicatorOfParameter=249 ; gribTablesVersionNo=129 ;centre=98;} - 'ICE' = { indicatorOfParameter=250 ; gribTablesVersionNo=129 ;centre=98;} - 'ATTE' = { indicatorOfParameter=251 ; gribTablesVersionNo=129 ;centre=98;} - 'ATHE' = { indicatorOfParameter=252 ; gribTablesVersionNo=129 ;centre=98;} - 'ATZE' = { indicatorOfParameter=253 ; gribTablesVersionNo=129 ;centre=98;} - 'ATMW' = { indicatorOfParameter=254 ; gribTablesVersionNo=129 ;centre=98;} - 'TSRU' = { indicatorOfParameter=208 ; gribTablesVersionNo=130 ;centre=98;} - 'TTRU' = { indicatorOfParameter=209 ; gribTablesVersionNo=130 ;centre=98;} - 'TSUC' = { indicatorOfParameter=210 ; gribTablesVersionNo=130 ;centre=98;} - 'TTUC' = { indicatorOfParameter=211 ; gribTablesVersionNo=130 ;centre=98;} - 'CLW' = { indicatorOfParameter=212 ; gribTablesVersionNo=130 ;centre=98;} - 'CF' = { indicatorOfParameter=213 ; gribTablesVersionNo=130 ;centre=98;} - 'DHR' = { indicatorOfParameter=214 ; gribTablesVersionNo=130 ;centre=98;} - 'DHVD' = { indicatorOfParameter=215 ; gribTablesVersionNo=130 ;centre=98;} - 'DHCC' = { indicatorOfParameter=216 ; gribTablesVersionNo=130 ;centre=98;} - 'DHLC' = { indicatorOfParameter=217 ; gribTablesVersionNo=130 ;centre=98;} - 'VDZW' = { indicatorOfParameter=218 ; gribTablesVersionNo=130 ;centre=98;} - 'VDMW' = { indicatorOfParameter=219 ; gribTablesVersionNo=130 ;centre=98;} - 'EWGD' = { indicatorOfParameter=220 ; gribTablesVersionNo=130 ;centre=98;} - 'NSGD' = { indicatorOfParameter=221 ; gribTablesVersionNo=130 ;centre=98;} - 'CTZW' = { indicatorOfParameter=222 ; gribTablesVersionNo=130 ;centre=98;} - 'CTMW' = { indicatorOfParameter=223 ; gribTablesVersionNo=130 ;centre=98;} - 'VDH' = { indicatorOfParameter=224 ; gribTablesVersionNo=130 ;centre=98;} - 'HTCC' = { indicatorOfParameter=225 ; gribTablesVersionNo=130 ;centre=98;} - 'HTLC' = { indicatorOfParameter=226 ; gribTablesVersionNo=130 ;centre=98;} - 'CRNH' = { indicatorOfParameter=227 ; gribTablesVersionNo=130 ;centre=98;} - 'ATT' = { indicatorOfParameter=228 ; gribTablesVersionNo=130 ;centre=98;} - 'ATH' = { indicatorOfParameter=229 ; gribTablesVersionNo=130 ;centre=98;} - 'ATZW' = { indicatorOfParameter=230 ; gribTablesVersionNo=130 ;centre=98;} - 'ATMWAX' = { indicatorOfParameter=231 ; gribTablesVersionNo=130 ;centre=98;} - 'MVV' = { indicatorOfParameter=232 ; gribTablesVersionNo=130 ;centre=98;} - '2TAG2' = { indicatorOfParameter=1 ; gribTablesVersionNo=131 ;centre=98;} - '2TAG1' = { indicatorOfParameter=2 ; gribTablesVersionNo=131 ;centre=98;} - '2TAG0' = { indicatorOfParameter=3 ; gribTablesVersionNo=131 ;centre=98;} - '2TALM1' = { indicatorOfParameter=4 ; gribTablesVersionNo=131 ;centre=98;} - '2TALM2' = { indicatorOfParameter=5 ; gribTablesVersionNo=131 ;centre=98;} - 'TPAG20' = { indicatorOfParameter=6 ; gribTablesVersionNo=131 ;centre=98;} - 'TPAG10' = { indicatorOfParameter=7 ; gribTablesVersionNo=131 ;centre=98;} - 'H0DIP' = { indicatorOfParameter=15 ; gribTablesVersionNo=131 ;centre=98;} - 'HSLP' = { indicatorOfParameter=16 ; gribTablesVersionNo=131 ;centre=98;} - 'SAIP' = { indicatorOfParameter=17 ; gribTablesVersionNo=131 ;centre=98;} - 'WHIP' = { indicatorOfParameter=18 ; gribTablesVersionNo=131 ;centre=98;} - 'TALM2' = { indicatorOfParameter=20 ; gribTablesVersionNo=131 ;centre=98;} - 'TAG2' = { indicatorOfParameter=21 ; gribTablesVersionNo=131 ;centre=98;} - 'TALM8' = { indicatorOfParameter=22 ; gribTablesVersionNo=131 ;centre=98;} - 'TALM4' = { indicatorOfParameter=23 ; gribTablesVersionNo=131 ;centre=98;} - 'TAG4' = { indicatorOfParameter=24 ; gribTablesVersionNo=131 ;centre=98;} - 'TAG8' = { indicatorOfParameter=25 ; gribTablesVersionNo=131 ;centre=98;} - '10GP' = { indicatorOfParameter=49 ; gribTablesVersionNo=131 ;centre=98;} - 'CAPEP' = { indicatorOfParameter=59 ; gribTablesVersionNo=131 ;centre=98;} - 'TPG1' = { indicatorOfParameter=60 ; gribTablesVersionNo=131 ;centre=98;} - 'TPG5' = { indicatorOfParameter=61 ; gribTablesVersionNo=131 ;centre=98;} - 'TPG10' = { indicatorOfParameter=62 ; gribTablesVersionNo=131 ;centre=98;} - 'TPG20' = { indicatorOfParameter=63 ; gribTablesVersionNo=131 ;centre=98;} - 'TPL01' = { indicatorOfParameter=64 ; gribTablesVersionNo=131 ;centre=98;} - 'TPRL1' = { indicatorOfParameter=65 ; gribTablesVersionNo=131 ;centre=98;} - 'TPRG3' = { indicatorOfParameter=66 ; gribTablesVersionNo=131 ;centre=98;} - 'TPRG5' = { indicatorOfParameter=67 ; gribTablesVersionNo=131 ;centre=98;} - '10SPG10' = { indicatorOfParameter=68 ; gribTablesVersionNo=131 ;centre=98;} - '10SPG15' = { indicatorOfParameter=69 ; gribTablesVersionNo=131 ;centre=98;} - '10FGG15' = { indicatorOfParameter=70 ; gribTablesVersionNo=131 ;centre=98;} - '10FGG20' = { indicatorOfParameter=71 ; gribTablesVersionNo=131 ;centre=98;} - '10FGG25' = { indicatorOfParameter=72 ; gribTablesVersionNo=131 ;centre=98;} - '2TL273' = { indicatorOfParameter=73 ; gribTablesVersionNo=131 ;centre=98;} - 'SWHG2' = { indicatorOfParameter=74 ; gribTablesVersionNo=131 ;centre=98;} - 'SWHG4' = { indicatorOfParameter=75 ; gribTablesVersionNo=131 ;centre=98;} - 'SWHG6' = { indicatorOfParameter=76 ; gribTablesVersionNo=131 ;centre=98;} - 'SWHG8' = { indicatorOfParameter=77 ; gribTablesVersionNo=131 ;centre=98;} - 'MWPG8' = { indicatorOfParameter=78 ; gribTablesVersionNo=131 ;centre=98;} - 'MWPG10' = { indicatorOfParameter=79 ; gribTablesVersionNo=131 ;centre=98;} - 'MWPG12' = { indicatorOfParameter=80 ; gribTablesVersionNo=131 ;centre=98;} - 'MWPG15' = { indicatorOfParameter=81 ; gribTablesVersionNo=131 ;centre=98;} - 'TAP' = { indicatorOfParameter=130 ; gribTablesVersionNo=131 ;centre=98;} - 'SFP' = { indicatorOfParameter=144 ; gribTablesVersionNo=131 ;centre=98;} - 'TCCP' = { indicatorOfParameter=164 ; gribTablesVersionNo=131 ;centre=98;} - '10SP' = { indicatorOfParameter=165 ; gribTablesVersionNo=131 ;centre=98;} - '2TP' = { indicatorOfParameter=167 ; gribTablesVersionNo=131 ;centre=98;} - 'MX2TP' = { indicatorOfParameter=201 ; gribTablesVersionNo=131 ;centre=98;} - 'MN2TP' = { indicatorOfParameter=202 ; gribTablesVersionNo=131 ;centre=98;} - 'TPP' = { indicatorOfParameter=228 ; gribTablesVersionNo=131 ;centre=98;} - 'SWHP' = { indicatorOfParameter=229 ; gribTablesVersionNo=131 ;centre=98;} - 'MWPP' = { indicatorOfParameter=232 ; gribTablesVersionNo=131 ;centre=98;} - '10GP' = { indicatorOfParameter=49 ; gribTablesVersionNo=132 ;centre=98;} - '10SP' = { indicatorOfParameter=165 ; gribTablesVersionNo=132 ;centre=98;} - '2TP' = { indicatorOfParameter=167 ; gribTablesVersionNo=132 ;centre=98;} - 'TTP' = { indicatorOfParameter=228 ; gribTablesVersionNo=132 ;centre=98;} - 'WMB' = { indicatorOfParameter=219 ; gribTablesVersionNo=140 ;centre=98;} - 'MP1' = { indicatorOfParameter=220 ; gribTablesVersionNo=140 ;centre=98;} - 'MP2' = { indicatorOfParameter=221 ; gribTablesVersionNo=140 ;centre=98;} - 'WDW' = { indicatorOfParameter=222 ; gribTablesVersionNo=140 ;centre=98;} - 'P1WW' = { indicatorOfParameter=223 ; gribTablesVersionNo=140 ;centre=98;} - 'P2WW' = { indicatorOfParameter=224 ; gribTablesVersionNo=140 ;centre=98;} - 'DWWW' = { indicatorOfParameter=225 ; gribTablesVersionNo=140 ;centre=98;} - 'P1PS' = { indicatorOfParameter=226 ; gribTablesVersionNo=140 ;centre=98;} - 'P2PS' = { indicatorOfParameter=227 ; gribTablesVersionNo=140 ;centre=98;} - 'DWPS' = { indicatorOfParameter=228 ; gribTablesVersionNo=140 ;centre=98;} - 'SWH' = { indicatorOfParameter=229 ; gribTablesVersionNo=140 ;centre=98;} - 'MWD' = { indicatorOfParameter=230 ; gribTablesVersionNo=140 ;centre=98;} - 'PP1D' = { indicatorOfParameter=231 ; gribTablesVersionNo=140 ;centre=98;} - 'MWP' = { indicatorOfParameter=232 ; gribTablesVersionNo=140 ;centre=98;} - 'CDWW' = { indicatorOfParameter=233 ; gribTablesVersionNo=140 ;centre=98;} - 'SHWW' = { indicatorOfParameter=234 ; gribTablesVersionNo=140 ;centre=98;} - 'MDWW' = { indicatorOfParameter=235 ; gribTablesVersionNo=140 ;centre=98;} - 'MPWW' = { indicatorOfParameter=236 ; gribTablesVersionNo=140 ;centre=98;} - 'SHTS' = { indicatorOfParameter=237 ; gribTablesVersionNo=140 ;centre=98;} - 'MDTS' = { indicatorOfParameter=238 ; gribTablesVersionNo=140 ;centre=98;} - 'MPTS' = { indicatorOfParameter=239 ; gribTablesVersionNo=140 ;centre=98;} - 'SDHS' = { indicatorOfParameter=240 ; gribTablesVersionNo=140 ;centre=98;} - 'MU10' = { indicatorOfParameter=241 ; gribTablesVersionNo=140 ;centre=98;} - 'MDWI' = { indicatorOfParameter=242 ; gribTablesVersionNo=140 ;centre=98;} - 'SDU' = { indicatorOfParameter=243 ; gribTablesVersionNo=140 ;centre=98;} - 'MSQS' = { indicatorOfParameter=244 ; gribTablesVersionNo=140 ;centre=98;} - 'WIND' = { indicatorOfParameter=245 ; gribTablesVersionNo=140 ;centre=98;} - 'AWH' = { indicatorOfParameter=246 ; gribTablesVersionNo=140 ;centre=98;} - 'ACWH' = { indicatorOfParameter=247 ; gribTablesVersionNo=140 ;centre=98;} - 'ARRC' = { indicatorOfParameter=248 ; gribTablesVersionNo=140 ;centre=98;} - 'DWI' = { indicatorOfParameter=249 ; gribTablesVersionNo=140 ;centre=98;} - '2DSP' = { indicatorOfParameter=250 ; gribTablesVersionNo=140 ;centre=98;} - '2DFD' = { indicatorOfParameter=251 ; gribTablesVersionNo=140 ;centre=98;} - 'WSK' = { indicatorOfParameter=252 ; gribTablesVersionNo=140 ;centre=98;} - 'BFI' = { indicatorOfParameter=253 ; gribTablesVersionNo=140 ;centre=98;} - 'WSP' = { indicatorOfParameter=254 ; gribTablesVersionNo=140 ;centre=98;} - 'OCPT' = { indicatorOfParameter=129 ; gribTablesVersionNo=151 ;centre=98;} - 'S' = { indicatorOfParameter=130 ; gribTablesVersionNo=151 ;centre=98;} - 'U' = { indicatorOfParameter=131 ; gribTablesVersionNo=151 ;centre=98;} - 'V' = { indicatorOfParameter=132 ; gribTablesVersionNo=151 ;centre=98;} - 'WV' = { indicatorOfParameter=133 ; gribTablesVersionNo=151 ;centre=98;} - 'MST' = { indicatorOfParameter=134 ; gribTablesVersionNo=151 ;centre=98;} - 'VVS' = { indicatorOfParameter=135 ; gribTablesVersionNo=151 ;centre=98;} - 'VDF' = { indicatorOfParameter=136 ; gribTablesVersionNo=151 ;centre=98;} - 'DEP' = { indicatorOfParameter=137 ; gribTablesVersionNo=151 ;centre=98;} - 'STH' = { indicatorOfParameter=138 ; gribTablesVersionNo=151 ;centre=98;} - 'RN' = { indicatorOfParameter=139 ; gribTablesVersionNo=151 ;centre=98;} - 'UV' = { indicatorOfParameter=140 ; gribTablesVersionNo=151 ;centre=98;} - 'UT' = { indicatorOfParameter=141 ; gribTablesVersionNo=151 ;centre=98;} - 'VT' = { indicatorOfParameter=142 ; gribTablesVersionNo=151 ;centre=98;} - 'UU' = { indicatorOfParameter=143 ; gribTablesVersionNo=151 ;centre=98;} - 'VV' = { indicatorOfParameter=144 ; gribTablesVersionNo=151 ;centre=98;} - 'SL' = { indicatorOfParameter=145 ; gribTablesVersionNo=151 ;centre=98;} - 'SL_1' = { indicatorOfParameter=146 ; gribTablesVersionNo=151 ;centre=98;} - 'BSF' = { indicatorOfParameter=147 ; gribTablesVersionNo=151 ;centre=98;} - 'MLD' = { indicatorOfParameter=148 ; gribTablesVersionNo=151 ;centre=98;} - 'BTP' = { indicatorOfParameter=149 ; gribTablesVersionNo=151 ;centre=98;} - 'SH' = { indicatorOfParameter=150 ; gribTablesVersionNo=151 ;centre=98;} - 'CRL' = { indicatorOfParameter=151 ; gribTablesVersionNo=151 ;centre=98;} - 'TAX' = { indicatorOfParameter=153 ; gribTablesVersionNo=151 ;centre=98;} - 'TAY' = { indicatorOfParameter=154 ; gribTablesVersionNo=151 ;centre=98;} - 'TKI' = { indicatorOfParameter=155 ; gribTablesVersionNo=151 ;centre=98;} - 'NSF' = { indicatorOfParameter=156 ; gribTablesVersionNo=151 ;centre=98;} - 'ASR' = { indicatorOfParameter=157 ; gribTablesVersionNo=151 ;centre=98;} - 'PME' = { indicatorOfParameter=158 ; gribTablesVersionNo=151 ;centre=98;} - 'SST' = { indicatorOfParameter=159 ; gribTablesVersionNo=151 ;centre=98;} - 'SHF' = { indicatorOfParameter=160 ; gribTablesVersionNo=151 ;centre=98;} - 'DTE' = { indicatorOfParameter=161 ; gribTablesVersionNo=151 ;centre=98;} - 'HFC' = { indicatorOfParameter=162 ; gribTablesVersionNo=151 ;centre=98;} - '20D' = { indicatorOfParameter=163 ; gribTablesVersionNo=151 ;centre=98;} - 'TAV300' = { indicatorOfParameter=164 ; gribTablesVersionNo=151 ;centre=98;} - 'UBA1' = { indicatorOfParameter=165 ; gribTablesVersionNo=151 ;centre=98;} - 'VBA1' = { indicatorOfParameter=166 ; gribTablesVersionNo=151 ;centre=98;} - 'ZTR' = { indicatorOfParameter=167 ; gribTablesVersionNo=151 ;centre=98;} - 'MTR' = { indicatorOfParameter=168 ; gribTablesVersionNo=151 ;centre=98;} - 'ZHT' = { indicatorOfParameter=169 ; gribTablesVersionNo=151 ;centre=98;} - 'MHT' = { indicatorOfParameter=170 ; gribTablesVersionNo=151 ;centre=98;} - 'UMAX' = { indicatorOfParameter=171 ; gribTablesVersionNo=151 ;centre=98;} - 'DUMAX' = { indicatorOfParameter=172 ; gribTablesVersionNo=151 ;centre=98;} - 'SMAX' = { indicatorOfParameter=173 ; gribTablesVersionNo=151 ;centre=98;} - 'DSMAX' = { indicatorOfParameter=174 ; gribTablesVersionNo=151 ;centre=98;} - 'SAV300' = { indicatorOfParameter=175 ; gribTablesVersionNo=151 ;centre=98;} - 'LDP' = { indicatorOfParameter=176 ; gribTablesVersionNo=151 ;centre=98;} - 'LDU' = { indicatorOfParameter=177 ; gribTablesVersionNo=151 ;centre=98;} - 'PTI' = { indicatorOfParameter=178 ; gribTablesVersionNo=151 ;centre=98;} - 'PTAE' = { indicatorOfParameter=179 ; gribTablesVersionNo=151 ;centre=98;} - 'BPT' = { indicatorOfParameter=180 ; gribTablesVersionNo=151 ;centre=98;} - 'APT' = { indicatorOfParameter=181 ; gribTablesVersionNo=151 ;centre=98;} - 'PTBE' = { indicatorOfParameter=182 ; gribTablesVersionNo=151 ;centre=98;} - 'AS' = { indicatorOfParameter=183 ; gribTablesVersionNo=151 ;centre=98;} - 'SALI' = { indicatorOfParameter=184 ; gribTablesVersionNo=151 ;centre=98;} - 'EBT' = { indicatorOfParameter=185 ; gribTablesVersionNo=151 ;centre=98;} - 'EBS' = { indicatorOfParameter=186 ; gribTablesVersionNo=151 ;centre=98;} - 'UVI' = { indicatorOfParameter=187 ; gribTablesVersionNo=151 ;centre=98;} - 'VVI' = { indicatorOfParameter=188 ; gribTablesVersionNo=151 ;centre=98;} - 'SUBI' = { indicatorOfParameter=190 ; gribTablesVersionNo=151 ;centre=98;} - 'SALE' = { indicatorOfParameter=191 ; gribTablesVersionNo=151 ;centre=98;} - 'BSAL' = { indicatorOfParameter=192 ; gribTablesVersionNo=151 ;centre=98;} - 'SALBE' = { indicatorOfParameter=194 ; gribTablesVersionNo=151 ;centre=98;} - 'EBTA' = { indicatorOfParameter=199 ; gribTablesVersionNo=151 ;centre=98;} - 'EBSA' = { indicatorOfParameter=200 ; gribTablesVersionNo=151 ;centre=98;} - 'LTI' = { indicatorOfParameter=201 ; gribTablesVersionNo=151 ;centre=98;} - 'LSI' = { indicatorOfParameter=202 ; gribTablesVersionNo=151 ;centre=98;} - 'BZPGA' = { indicatorOfParameter=203 ; gribTablesVersionNo=151 ;centre=98;} - 'BMPGA' = { indicatorOfParameter=204 ; gribTablesVersionNo=151 ;centre=98;} - 'EBTL' = { indicatorOfParameter=205 ; gribTablesVersionNo=151 ;centre=98;} - 'EBSL' = { indicatorOfParameter=206 ; gribTablesVersionNo=151 ;centre=98;} - 'FGBT' = { indicatorOfParameter=207 ; gribTablesVersionNo=151 ;centre=98;} - 'FGBS' = { indicatorOfParameter=208 ; gribTablesVersionNo=151 ;centre=98;} - 'BPA' = { indicatorOfParameter=209 ; gribTablesVersionNo=151 ;centre=98;} - 'FGBP' = { indicatorOfParameter=210 ; gribTablesVersionNo=151 ;centre=98;} - 'PTA' = { indicatorOfParameter=211 ; gribTablesVersionNo=151 ;centre=98;} - 'PSA' = { indicatorOfParameter=212 ; gribTablesVersionNo=151 ;centre=98;} - 'AT' = { indicatorOfParameter=127 ; gribTablesVersionNo=160 ;centre=98;} - 'BV' = { indicatorOfParameter=128 ; gribTablesVersionNo=160 ;centre=98;} - 'Z' = { indicatorOfParameter=129 ; gribTablesVersionNo=160 ;centre=98;} - 'T' = { indicatorOfParameter=130 ; gribTablesVersionNo=160 ;centre=98;} - 'U' = { indicatorOfParameter=131 ; gribTablesVersionNo=160 ;centre=98;} - 'V' = { indicatorOfParameter=132 ; gribTablesVersionNo=160 ;centre=98;} - 'Q' = { indicatorOfParameter=133 ; gribTablesVersionNo=160 ;centre=98;} - 'SP' = { indicatorOfParameter=134 ; gribTablesVersionNo=160 ;centre=98;} - 'W' = { indicatorOfParameter=135 ; gribTablesVersionNo=160 ;centre=98;} - 'TCW' = { indicatorOfParameter=136 ; gribTablesVersionNo=160 ;centre=98;} - 'PWC' = { indicatorOfParameter=137 ; gribTablesVersionNo=160 ;centre=98;} - 'VO' = { indicatorOfParameter=138 ; gribTablesVersionNo=160 ;centre=98;} - 'STL1' = { indicatorOfParameter=139 ; gribTablesVersionNo=160 ;centre=98;} - 'SWL1' = { indicatorOfParameter=140 ; gribTablesVersionNo=160 ;centre=98;} - 'SD' = { indicatorOfParameter=141 ; gribTablesVersionNo=160 ;centre=98;} - 'LSP' = { indicatorOfParameter=142 ; gribTablesVersionNo=160 ;centre=98;} - 'CP' = { indicatorOfParameter=143 ; gribTablesVersionNo=160 ;centre=98;} - 'SF' = { indicatorOfParameter=144 ; gribTablesVersionNo=160 ;centre=98;} - 'BLD' = { indicatorOfParameter=145 ; gribTablesVersionNo=160 ;centre=98;} - 'SSHF' = { indicatorOfParameter=146 ; gribTablesVersionNo=160 ;centre=98;} - 'SLHF' = { indicatorOfParameter=147 ; gribTablesVersionNo=160 ;centre=98;} - 'MSL' = { indicatorOfParameter=151 ; gribTablesVersionNo=160 ;centre=98;} - 'LNSP' = { indicatorOfParameter=152 ; gribTablesVersionNo=160 ;centre=98;} - 'D' = { indicatorOfParameter=155 ; gribTablesVersionNo=160 ;centre=98;} - 'GH' = { indicatorOfParameter=156 ; gribTablesVersionNo=160 ;centre=98;} - 'R' = { indicatorOfParameter=157 ; gribTablesVersionNo=160 ;centre=98;} - 'TSP' = { indicatorOfParameter=158 ; gribTablesVersionNo=160 ;centre=98;} - 'TCC' = { indicatorOfParameter=164 ; gribTablesVersionNo=160 ;centre=98;} - '10U' = { indicatorOfParameter=165 ; gribTablesVersionNo=160 ;centre=98;} - '10V' = { indicatorOfParameter=166 ; gribTablesVersionNo=160 ;centre=98;} - '2T' = { indicatorOfParameter=167 ; gribTablesVersionNo=160 ;centre=98;} - '2D' = { indicatorOfParameter=168 ; gribTablesVersionNo=160 ;centre=98;} - 'STL2' = { indicatorOfParameter=170 ; gribTablesVersionNo=160 ;centre=98;} - 'SWL2' = { indicatorOfParameter=171 ; gribTablesVersionNo=160 ;centre=98;} - 'LSM' = { indicatorOfParameter=172 ; gribTablesVersionNo=160 ;centre=98;} - 'SR' = { indicatorOfParameter=173 ; gribTablesVersionNo=160 ;centre=98;} - 'AL' = { indicatorOfParameter=174 ; gribTablesVersionNo=160 ;centre=98;} - 'SSR' = { indicatorOfParameter=176 ; gribTablesVersionNo=160 ;centre=98;} - 'STR' = { indicatorOfParameter=177 ; gribTablesVersionNo=160 ;centre=98;} - 'TSR' = { indicatorOfParameter=178 ; gribTablesVersionNo=160 ;centre=98;} - 'TTR' = { indicatorOfParameter=179 ; gribTablesVersionNo=160 ;centre=98;} - 'EWSS' = { indicatorOfParameter=180 ; gribTablesVersionNo=160 ;centre=98;} - 'NSSS' = { indicatorOfParameter=181 ; gribTablesVersionNo=160 ;centre=98;} - 'E' = { indicatorOfParameter=182 ; gribTablesVersionNo=160 ;centre=98;} - 'STL3' = { indicatorOfParameter=183 ; gribTablesVersionNo=160 ;centre=98;} - 'SWL3' = { indicatorOfParameter=184 ; gribTablesVersionNo=160 ;centre=98;} - 'CCC' = { indicatorOfParameter=185 ; gribTablesVersionNo=160 ;centre=98;} - 'LCC' = { indicatorOfParameter=186 ; gribTablesVersionNo=160 ;centre=98;} - 'MCC' = { indicatorOfParameter=187 ; gribTablesVersionNo=160 ;centre=98;} - 'HCC' = { indicatorOfParameter=188 ; gribTablesVersionNo=160 ;centre=98;} - 'EWOV' = { indicatorOfParameter=190 ; gribTablesVersionNo=160 ;centre=98;} - 'NSOV' = { indicatorOfParameter=191 ; gribTablesVersionNo=160 ;centre=98;} - 'NWOV' = { indicatorOfParameter=192 ; gribTablesVersionNo=160 ;centre=98;} - 'NEOV' = { indicatorOfParameter=193 ; gribTablesVersionNo=160 ;centre=98;} - 'LGWS' = { indicatorOfParameter=195 ; gribTablesVersionNo=160 ;centre=98;} - 'MGWS' = { indicatorOfParameter=196 ; gribTablesVersionNo=160 ;centre=98;} - 'GWD' = { indicatorOfParameter=197 ; gribTablesVersionNo=160 ;centre=98;} - 'SRC' = { indicatorOfParameter=198 ; gribTablesVersionNo=160 ;centre=98;} - 'VEG' = { indicatorOfParameter=199 ; gribTablesVersionNo=160 ;centre=98;} - 'VSO' = { indicatorOfParameter=200 ; gribTablesVersionNo=160 ;centre=98;} - 'MX2T' = { indicatorOfParameter=201 ; gribTablesVersionNo=160 ;centre=98;} - 'MN2T' = { indicatorOfParameter=202 ; gribTablesVersionNo=160 ;centre=98;} - 'PAW' = { indicatorOfParameter=204 ; gribTablesVersionNo=160 ;centre=98;} - 'RO' = { indicatorOfParameter=205 ; gribTablesVersionNo=160 ;centre=98;} - 'ZZ' = { indicatorOfParameter=206 ; gribTablesVersionNo=160 ;centre=98;} - 'TZ' = { indicatorOfParameter=207 ; gribTablesVersionNo=160 ;centre=98;} - 'TT' = { indicatorOfParameter=208 ; gribTablesVersionNo=160 ;centre=98;} - 'QZ' = { indicatorOfParameter=209 ; gribTablesVersionNo=160 ;centre=98;} - 'QT' = { indicatorOfParameter=210 ; gribTablesVersionNo=160 ;centre=98;} - 'QQ' = { indicatorOfParameter=211 ; gribTablesVersionNo=160 ;centre=98;} - 'UZ' = { indicatorOfParameter=212 ; gribTablesVersionNo=160 ;centre=98;} - 'UT' = { indicatorOfParameter=213 ; gribTablesVersionNo=160 ;centre=98;} - 'UQ' = { indicatorOfParameter=214 ; gribTablesVersionNo=160 ;centre=98;} - 'UU' = { indicatorOfParameter=215 ; gribTablesVersionNo=160 ;centre=98;} - 'VZ' = { indicatorOfParameter=216 ; gribTablesVersionNo=160 ;centre=98;} - 'VT' = { indicatorOfParameter=217 ; gribTablesVersionNo=160 ;centre=98;} - 'VQ' = { indicatorOfParameter=218 ; gribTablesVersionNo=160 ;centre=98;} - 'VU' = { indicatorOfParameter=219 ; gribTablesVersionNo=160 ;centre=98;} - 'VV' = { indicatorOfParameter=220 ; gribTablesVersionNo=160 ;centre=98;} - 'WZ' = { indicatorOfParameter=221 ; gribTablesVersionNo=160 ;centre=98;} - 'WT' = { indicatorOfParameter=222 ; gribTablesVersionNo=160 ;centre=98;} - 'WQ' = { indicatorOfParameter=223 ; gribTablesVersionNo=160 ;centre=98;} - 'WU' = { indicatorOfParameter=224 ; gribTablesVersionNo=160 ;centre=98;} - 'WV' = { indicatorOfParameter=225 ; gribTablesVersionNo=160 ;centre=98;} - 'WW' = { indicatorOfParameter=226 ; gribTablesVersionNo=160 ;centre=98;} - 'TP' = { indicatorOfParameter=228 ; gribTablesVersionNo=160 ;centre=98;} - 'IEWS' = { indicatorOfParameter=229 ; gribTablesVersionNo=160 ;centre=98;} - 'INSS' = { indicatorOfParameter=230 ; gribTablesVersionNo=160 ;centre=98;} - 'ISHF' = { indicatorOfParameter=231 ; gribTablesVersionNo=160 ;centre=98;} - 'IE' = { indicatorOfParameter=232 ; gribTablesVersionNo=160 ;centre=98;} - 'ASQ' = { indicatorOfParameter=233 ; gribTablesVersionNo=160 ;centre=98;} - 'LSRH' = { indicatorOfParameter=234 ; gribTablesVersionNo=160 ;centre=98;} - 'SKT' = { indicatorOfParameter=235 ; gribTablesVersionNo=160 ;centre=98;} - 'STL4' = { indicatorOfParameter=236 ; gribTablesVersionNo=160 ;centre=98;} - 'SWL4' = { indicatorOfParameter=237 ; gribTablesVersionNo=160 ;centre=98;} - 'TSN' = { indicatorOfParameter=238 ; gribTablesVersionNo=160 ;centre=98;} - 'CSF' = { indicatorOfParameter=239 ; gribTablesVersionNo=160 ;centre=98;} - 'LSF' = { indicatorOfParameter=240 ; gribTablesVersionNo=160 ;centre=98;} - 'CLWCER' = { indicatorOfParameter=241 ; gribTablesVersionNo=160 ;centre=98;} - 'CC' = { indicatorOfParameter=242 ; gribTablesVersionNo=160 ;centre=98;} - 'FAL' = { indicatorOfParameter=243 ; gribTablesVersionNo=160 ;centre=98;} - 'FSR' = { indicatorOfParameter=244 ; gribTablesVersionNo=160 ;centre=98;} - 'FLSR' = { indicatorOfParameter=245 ; gribTablesVersionNo=160 ;centre=98;} - '10WS' = { indicatorOfParameter=246 ; gribTablesVersionNo=160 ;centre=98;} - 'MOFL' = { indicatorOfParameter=247 ; gribTablesVersionNo=160 ;centre=98;} - 'HSD' = { indicatorOfParameter=254 ; gribTablesVersionNo=160 ;centre=98;} - 'Z' = { indicatorOfParameter=129 ; gribTablesVersionNo=170 ;centre=98;} - 'T' = { indicatorOfParameter=130 ; gribTablesVersionNo=170 ;centre=98;} - 'U' = { indicatorOfParameter=131 ; gribTablesVersionNo=170 ;centre=98;} - 'V' = { indicatorOfParameter=132 ; gribTablesVersionNo=170 ;centre=98;} - 'VO' = { indicatorOfParameter=138 ; gribTablesVersionNo=170 ;centre=98;} - 'SWL1' = { indicatorOfParameter=140 ; gribTablesVersionNo=170 ;centre=98;} - 'SD' = { indicatorOfParameter=141 ; gribTablesVersionNo=170 ;centre=98;} - 'TSW' = { indicatorOfParameter=149 ; gribTablesVersionNo=170 ;centre=98;} - 'MSL' = { indicatorOfParameter=151 ; gribTablesVersionNo=170 ;centre=98;} - 'D' = { indicatorOfParameter=155 ; gribTablesVersionNo=170 ;centre=98;} - 'SWL2' = { indicatorOfParameter=171 ; gribTablesVersionNo=170 ;centre=98;} - 'TTR' = { indicatorOfParameter=179 ; gribTablesVersionNo=170 ;centre=98;} - 'SWL3' = { indicatorOfParameter=184 ; gribTablesVersionNo=170 ;centre=98;} - 'MX2T' = { indicatorOfParameter=201 ; gribTablesVersionNo=170 ;centre=98;} - 'MN2T' = { indicatorOfParameter=202 ; gribTablesVersionNo=170 ;centre=98;} - 'TP' = { indicatorOfParameter=228 ; gribTablesVersionNo=170 ;centre=98;} - 'SRO' = { indicatorOfParameter=8 ; gribTablesVersionNo=174 ;centre=98;} - 'SSRO' = { indicatorOfParameter=9 ; gribTablesVersionNo=174 ;centre=98;} - 'Z' = { indicatorOfParameter=129 ; gribTablesVersionNo=180 ;centre=98;} - 'T' = { indicatorOfParameter=130 ; gribTablesVersionNo=180 ;centre=98;} - 'U' = { indicatorOfParameter=131 ; gribTablesVersionNo=180 ;centre=98;} - 'V' = { indicatorOfParameter=132 ; gribTablesVersionNo=180 ;centre=98;} - 'Q' = { indicatorOfParameter=133 ; gribTablesVersionNo=180 ;centre=98;} - 'SP' = { indicatorOfParameter=134 ; gribTablesVersionNo=180 ;centre=98;} - 'TCWV' = { indicatorOfParameter=137 ; gribTablesVersionNo=180 ;centre=98;} - 'VO' = { indicatorOfParameter=138 ; gribTablesVersionNo=180 ;centre=98;} - 'SD' = { indicatorOfParameter=141 ; gribTablesVersionNo=180 ;centre=98;} - 'LSP' = { indicatorOfParameter=142 ; gribTablesVersionNo=180 ;centre=98;} - 'CP' = { indicatorOfParameter=143 ; gribTablesVersionNo=180 ;centre=98;} - 'SF' = { indicatorOfParameter=144 ; gribTablesVersionNo=180 ;centre=98;} - 'SSHF' = { indicatorOfParameter=146 ; gribTablesVersionNo=180 ;centre=98;} - 'SLHF' = { indicatorOfParameter=147 ; gribTablesVersionNo=180 ;centre=98;} - 'TSW' = { indicatorOfParameter=149 ; gribTablesVersionNo=180 ;centre=98;} - 'MSL' = { indicatorOfParameter=151 ; gribTablesVersionNo=180 ;centre=98;} - 'D' = { indicatorOfParameter=155 ; gribTablesVersionNo=180 ;centre=98;} - 'TCC' = { indicatorOfParameter=164 ; gribTablesVersionNo=180 ;centre=98;} - '10U' = { indicatorOfParameter=165 ; gribTablesVersionNo=180 ;centre=98;} - '10V' = { indicatorOfParameter=166 ; gribTablesVersionNo=180 ;centre=98;} - '2T' = { indicatorOfParameter=167 ; gribTablesVersionNo=180 ;centre=98;} - '2D' = { indicatorOfParameter=168 ; gribTablesVersionNo=180 ;centre=98;} - 'LSM' = { indicatorOfParameter=172 ; gribTablesVersionNo=180 ;centre=98;} - 'SSR' = { indicatorOfParameter=176 ; gribTablesVersionNo=180 ;centre=98;} - 'STR' = { indicatorOfParameter=177 ; gribTablesVersionNo=180 ;centre=98;} - 'TSR' = { indicatorOfParameter=178 ; gribTablesVersionNo=180 ;centre=98;} - 'TTR' = { indicatorOfParameter=179 ; gribTablesVersionNo=180 ;centre=98;} - 'EWSS' = { indicatorOfParameter=180 ; gribTablesVersionNo=180 ;centre=98;} - 'NSSS' = { indicatorOfParameter=181 ; gribTablesVersionNo=180 ;centre=98;} - 'E' = { indicatorOfParameter=182 ; gribTablesVersionNo=180 ;centre=98;} - 'RO' = { indicatorOfParameter=205 ; gribTablesVersionNo=180 ;centre=98;} - 'Z' = { indicatorOfParameter=129 ; gribTablesVersionNo=190 ;centre=98;} - 'T' = { indicatorOfParameter=130 ; gribTablesVersionNo=190 ;centre=98;} - 'U' = { indicatorOfParameter=131 ; gribTablesVersionNo=190 ;centre=98;} - 'V' = { indicatorOfParameter=132 ; gribTablesVersionNo=190 ;centre=98;} - 'Q' = { indicatorOfParameter=133 ; gribTablesVersionNo=190 ;centre=98;} - 'STL1' = { indicatorOfParameter=139 ; gribTablesVersionNo=190 ;centre=98;} - 'SD' = { indicatorOfParameter=141 ; gribTablesVersionNo=190 ;centre=98;} - 'SSHF' = { indicatorOfParameter=146 ; gribTablesVersionNo=190 ;centre=98;} - 'SLHF' = { indicatorOfParameter=147 ; gribTablesVersionNo=190 ;centre=98;} - 'MSL' = { indicatorOfParameter=151 ; gribTablesVersionNo=190 ;centre=98;} - 'TCC' = { indicatorOfParameter=164 ; gribTablesVersionNo=190 ;centre=98;} - '10U' = { indicatorOfParameter=165 ; gribTablesVersionNo=190 ;centre=98;} - '10V' = { indicatorOfParameter=166 ; gribTablesVersionNo=190 ;centre=98;} - '2T' = { indicatorOfParameter=167 ; gribTablesVersionNo=190 ;centre=98;} - '2D' = { indicatorOfParameter=168 ; gribTablesVersionNo=190 ;centre=98;} - 'SSRD' = { indicatorOfParameter=169 ; gribTablesVersionNo=190 ;centre=98;} - 'CAP' = { indicatorOfParameter=170 ; gribTablesVersionNo=190 ;centre=98;} - 'WILT' = { indicatorOfParameter=171 ; gribTablesVersionNo=190 ;centre=98;} - 'LSM' = { indicatorOfParameter=172 ; gribTablesVersionNo=190 ;centre=98;} - 'SR' = { indicatorOfParameter=173 ; gribTablesVersionNo=190 ;centre=98;} - 'AL' = { indicatorOfParameter=174 ; gribTablesVersionNo=190 ;centre=98;} - 'STRD' = { indicatorOfParameter=175 ; gribTablesVersionNo=190 ;centre=98;} - 'SSR' = { indicatorOfParameter=176 ; gribTablesVersionNo=190 ;centre=98;} - 'STR' = { indicatorOfParameter=177 ; gribTablesVersionNo=190 ;centre=98;} - 'TSR' = { indicatorOfParameter=178 ; gribTablesVersionNo=190 ;centre=98;} - 'TTR' = { indicatorOfParameter=179 ; gribTablesVersionNo=190 ;centre=98;} - 'E' = { indicatorOfParameter=182 ; gribTablesVersionNo=190 ;centre=98;} - 'MX2T' = { indicatorOfParameter=201 ; gribTablesVersionNo=190 ;centre=98;} - 'MN2T' = { indicatorOfParameter=202 ; gribTablesVersionNo=190 ;centre=98;} - 'TP' = { indicatorOfParameter=228 ; gribTablesVersionNo=190 ;centre=98;} - 'TSM' = { indicatorOfParameter=229 ; gribTablesVersionNo=190 ;centre=98;} - 'STRF' = { indicatorOfParameter=1 ; gribTablesVersionNo=200 ;centre=98;} - 'VPOT' = { indicatorOfParameter=2 ; gribTablesVersionNo=200 ;centre=98;} - 'PT' = { indicatorOfParameter=3 ; gribTablesVersionNo=200 ;centre=98;} - 'EQPT' = { indicatorOfParameter=4 ; gribTablesVersionNo=200 ;centre=98;} - 'SEPT' = { indicatorOfParameter=5 ; gribTablesVersionNo=200 ;centre=98;} - 'UDVW' = { indicatorOfParameter=11 ; gribTablesVersionNo=200 ;centre=98;} - 'VDVW' = { indicatorOfParameter=12 ; gribTablesVersionNo=200 ;centre=98;} - 'URTW' = { indicatorOfParameter=13 ; gribTablesVersionNo=200 ;centre=98;} - 'VRTW' = { indicatorOfParameter=14 ; gribTablesVersionNo=200 ;centre=98;} - 'UCTP' = { indicatorOfParameter=21 ; gribTablesVersionNo=200 ;centre=98;} - 'UCLN' = { indicatorOfParameter=22 ; gribTablesVersionNo=200 ;centre=98;} - 'UCDV' = { indicatorOfParameter=23 ; gribTablesVersionNo=200 ;centre=98;} - 'CL' = { indicatorOfParameter=26 ; gribTablesVersionNo=200 ;centre=98;} - 'CVL' = { indicatorOfParameter=27 ; gribTablesVersionNo=200 ;centre=98;} - 'CVH' = { indicatorOfParameter=28 ; gribTablesVersionNo=200 ;centre=98;} - 'TVL' = { indicatorOfParameter=29 ; gribTablesVersionNo=200 ;centre=98;} - 'TVH' = { indicatorOfParameter=30 ; gribTablesVersionNo=200 ;centre=98;} - 'CI' = { indicatorOfParameter=31 ; gribTablesVersionNo=200 ;centre=98;} - 'ASN' = { indicatorOfParameter=32 ; gribTablesVersionNo=200 ;centre=98;} - 'RSN' = { indicatorOfParameter=33 ; gribTablesVersionNo=200 ;centre=98;} - 'SSTK' = { indicatorOfParameter=34 ; gribTablesVersionNo=200 ;centre=98;} - 'ISTL1' = { indicatorOfParameter=35 ; gribTablesVersionNo=200 ;centre=98;} - 'ISTL2' = { indicatorOfParameter=36 ; gribTablesVersionNo=200 ;centre=98;} - 'ISTL3' = { indicatorOfParameter=37 ; gribTablesVersionNo=200 ;centre=98;} - 'ISTL4' = { indicatorOfParameter=38 ; gribTablesVersionNo=200 ;centre=98;} - 'SWVL1' = { indicatorOfParameter=39 ; gribTablesVersionNo=200 ;centre=98;} - 'SWVL2' = { indicatorOfParameter=40 ; gribTablesVersionNo=200 ;centre=98;} - 'SWVL3' = { indicatorOfParameter=41 ; gribTablesVersionNo=200 ;centre=98;} - 'SWVL4' = { indicatorOfParameter=42 ; gribTablesVersionNo=200 ;centre=98;} - 'SLT' = { indicatorOfParameter=43 ; gribTablesVersionNo=200 ;centre=98;} - 'ES' = { indicatorOfParameter=44 ; gribTablesVersionNo=200 ;centre=98;} - 'SMLT' = { indicatorOfParameter=45 ; gribTablesVersionNo=200 ;centre=98;} - 'SDUR' = { indicatorOfParameter=46 ; gribTablesVersionNo=200 ;centre=98;} - 'DSRP' = { indicatorOfParameter=47 ; gribTablesVersionNo=200 ;centre=98;} - 'MAGSS' = { indicatorOfParameter=48 ; gribTablesVersionNo=200 ;centre=98;} - '10FG' = { indicatorOfParameter=49 ; gribTablesVersionNo=200 ;centre=98;} - 'LSPF' = { indicatorOfParameter=50 ; gribTablesVersionNo=200 ;centre=98;} - 'MX2T24' = { indicatorOfParameter=51 ; gribTablesVersionNo=200 ;centre=98;} - 'MN2T24' = { indicatorOfParameter=52 ; gribTablesVersionNo=200 ;centre=98;} - 'MONT' = { indicatorOfParameter=53 ; gribTablesVersionNo=200 ;centre=98;} - 'PRES' = { indicatorOfParameter=54 ; gribTablesVersionNo=200 ;centre=98;} - 'MEAN2T24' = { indicatorOfParameter=55 ; gribTablesVersionNo=200 ;centre=98;} - 'MN2D24' = { indicatorOfParameter=56 ; gribTablesVersionNo=200 ;centre=98;} - 'UVB' = { indicatorOfParameter=57 ; gribTablesVersionNo=200 ;centre=98;} - 'PAR' = { indicatorOfParameter=58 ; gribTablesVersionNo=200 ;centre=98;} - 'CAPE' = { indicatorOfParameter=59 ; gribTablesVersionNo=200 ;centre=98;} - 'PV' = { indicatorOfParameter=60 ; gribTablesVersionNo=200 ;centre=98;} - 'TPO' = { indicatorOfParameter=61 ; gribTablesVersionNo=200 ;centre=98;} - 'OBCT' = { indicatorOfParameter=62 ; gribTablesVersionNo=200 ;centre=98;} - 'MX2T6' = { indicatorOfParameter=121 ; gribTablesVersionNo=200 ;centre=98;} - 'MN2T6' = { indicatorOfParameter=122 ; gribTablesVersionNo=200 ;centre=98;} - '10FG6' = { indicatorOfParameter=123 ; gribTablesVersionNo=200 ;centre=98;} - 'AT' = { indicatorOfParameter=127 ; gribTablesVersionNo=200 ;centre=98;} - 'BV' = { indicatorOfParameter=128 ; gribTablesVersionNo=200 ;centre=98;} - 'Z' = { indicatorOfParameter=129 ; gribTablesVersionNo=200 ;centre=98;} - 'T' = { indicatorOfParameter=130 ; gribTablesVersionNo=200 ;centre=98;} - 'U' = { indicatorOfParameter=131 ; gribTablesVersionNo=200 ;centre=98;} - 'V' = { indicatorOfParameter=132 ; gribTablesVersionNo=200 ;centre=98;} - 'Q' = { indicatorOfParameter=133 ; gribTablesVersionNo=200 ;centre=98;} - 'SP' = { indicatorOfParameter=134 ; gribTablesVersionNo=200 ;centre=98;} - 'W' = { indicatorOfParameter=135 ; gribTablesVersionNo=200 ;centre=98;} - 'TCW' = { indicatorOfParameter=136 ; gribTablesVersionNo=200 ;centre=98;} - 'TCWV' = { indicatorOfParameter=137 ; gribTablesVersionNo=200 ;centre=98;} - 'VO' = { indicatorOfParameter=138 ; gribTablesVersionNo=200 ;centre=98;} - 'STL1' = { indicatorOfParameter=139 ; gribTablesVersionNo=200 ;centre=98;} - 'SWL1' = { indicatorOfParameter=140 ; gribTablesVersionNo=200 ;centre=98;} - 'SD' = { indicatorOfParameter=141 ; gribTablesVersionNo=200 ;centre=98;} - 'LSP' = { indicatorOfParameter=142 ; gribTablesVersionNo=200 ;centre=98;} - 'CP' = { indicatorOfParameter=143 ; gribTablesVersionNo=200 ;centre=98;} - 'SF' = { indicatorOfParameter=144 ; gribTablesVersionNo=200 ;centre=98;} - 'BLD' = { indicatorOfParameter=145 ; gribTablesVersionNo=200 ;centre=98;} - 'SSHF' = { indicatorOfParameter=146 ; gribTablesVersionNo=200 ;centre=98;} - 'SLHF' = { indicatorOfParameter=147 ; gribTablesVersionNo=200 ;centre=98;} - 'CHNK' = { indicatorOfParameter=148 ; gribTablesVersionNo=200 ;centre=98;} - 'SNR' = { indicatorOfParameter=149 ; gribTablesVersionNo=200 ;centre=98;} - 'TNR' = { indicatorOfParameter=150 ; gribTablesVersionNo=200 ;centre=98;} - 'MSL' = { indicatorOfParameter=151 ; gribTablesVersionNo=200 ;centre=98;} - 'LNSP' = { indicatorOfParameter=152 ; gribTablesVersionNo=200 ;centre=98;} - 'SWHR' = { indicatorOfParameter=153 ; gribTablesVersionNo=200 ;centre=98;} - 'LWHR' = { indicatorOfParameter=154 ; gribTablesVersionNo=200 ;centre=98;} - 'D' = { indicatorOfParameter=155 ; gribTablesVersionNo=200 ;centre=98;} - 'GH' = { indicatorOfParameter=156 ; gribTablesVersionNo=200 ;centre=98;} - 'R' = { indicatorOfParameter=157 ; gribTablesVersionNo=200 ;centre=98;} - 'TSP' = { indicatorOfParameter=158 ; gribTablesVersionNo=200 ;centre=98;} - 'BLH' = { indicatorOfParameter=159 ; gribTablesVersionNo=200 ;centre=98;} - 'SDOR' = { indicatorOfParameter=160 ; gribTablesVersionNo=200 ;centre=98;} - 'ISOR' = { indicatorOfParameter=161 ; gribTablesVersionNo=200 ;centre=98;} - 'ANOR' = { indicatorOfParameter=162 ; gribTablesVersionNo=200 ;centre=98;} - 'SLOR' = { indicatorOfParameter=163 ; gribTablesVersionNo=200 ;centre=98;} - 'TCC' = { indicatorOfParameter=164 ; gribTablesVersionNo=200 ;centre=98;} - '10U' = { indicatorOfParameter=165 ; gribTablesVersionNo=200 ;centre=98;} - '10V' = { indicatorOfParameter=166 ; gribTablesVersionNo=200 ;centre=98;} - '2T' = { indicatorOfParameter=167 ; gribTablesVersionNo=200 ;centre=98;} - '2D' = { indicatorOfParameter=168 ; gribTablesVersionNo=200 ;centre=98;} - 'SSRD' = { indicatorOfParameter=169 ; gribTablesVersionNo=200 ;centre=98;} - 'STL2' = { indicatorOfParameter=170 ; gribTablesVersionNo=200 ;centre=98;} - 'SWL2' = { indicatorOfParameter=171 ; gribTablesVersionNo=200 ;centre=98;} - 'LSM' = { indicatorOfParameter=172 ; gribTablesVersionNo=200 ;centre=98;} - 'SR' = { indicatorOfParameter=173 ; gribTablesVersionNo=200 ;centre=98;} - 'AL' = { indicatorOfParameter=174 ; gribTablesVersionNo=200 ;centre=98;} - 'STRD' = { indicatorOfParameter=175 ; gribTablesVersionNo=200 ;centre=98;} - 'SSR' = { indicatorOfParameter=176 ; gribTablesVersionNo=200 ;centre=98;} - 'STR' = { indicatorOfParameter=177 ; gribTablesVersionNo=200 ;centre=98;} - 'TSR' = { indicatorOfParameter=178 ; gribTablesVersionNo=200 ;centre=98;} - 'TTR' = { indicatorOfParameter=179 ; gribTablesVersionNo=200 ;centre=98;} - 'EWSS' = { indicatorOfParameter=180 ; gribTablesVersionNo=200 ;centre=98;} - 'NSSS' = { indicatorOfParameter=181 ; gribTablesVersionNo=200 ;centre=98;} - 'E' = { indicatorOfParameter=182 ; gribTablesVersionNo=200 ;centre=98;} - 'STL3' = { indicatorOfParameter=183 ; gribTablesVersionNo=200 ;centre=98;} - 'SWL3' = { indicatorOfParameter=184 ; gribTablesVersionNo=200 ;centre=98;} - 'CCC' = { indicatorOfParameter=185 ; gribTablesVersionNo=200 ;centre=98;} - 'LCC' = { indicatorOfParameter=186 ; gribTablesVersionNo=200 ;centre=98;} - 'MCC' = { indicatorOfParameter=187 ; gribTablesVersionNo=200 ;centre=98;} - 'HCC' = { indicatorOfParameter=188 ; gribTablesVersionNo=200 ;centre=98;} - 'SUND' = { indicatorOfParameter=189 ; gribTablesVersionNo=200 ;centre=98;} - 'EWOV' = { indicatorOfParameter=190 ; gribTablesVersionNo=200 ;centre=98;} - 'NSOV' = { indicatorOfParameter=191 ; gribTablesVersionNo=200 ;centre=98;} - 'NWOV' = { indicatorOfParameter=192 ; gribTablesVersionNo=200 ;centre=98;} - 'NEOV' = { indicatorOfParameter=193 ; gribTablesVersionNo=200 ;centre=98;} - 'BTMP' = { indicatorOfParameter=194 ; gribTablesVersionNo=200 ;centre=98;} - 'LGWS' = { indicatorOfParameter=195 ; gribTablesVersionNo=200 ;centre=98;} - 'MGWS' = { indicatorOfParameter=196 ; gribTablesVersionNo=200 ;centre=98;} - 'GWD' = { indicatorOfParameter=197 ; gribTablesVersionNo=200 ;centre=98;} - 'SRC' = { indicatorOfParameter=198 ; gribTablesVersionNo=200 ;centre=98;} - 'VEG' = { indicatorOfParameter=199 ; gribTablesVersionNo=200 ;centre=98;} - 'VSO' = { indicatorOfParameter=200 ; gribTablesVersionNo=200 ;centre=98;} - 'MX2T' = { indicatorOfParameter=201 ; gribTablesVersionNo=200 ;centre=98;} - 'MN2T' = { indicatorOfParameter=202 ; gribTablesVersionNo=200 ;centre=98;} - 'O3' = { indicatorOfParameter=203 ; gribTablesVersionNo=200 ;centre=98;} - 'PAW' = { indicatorOfParameter=204 ; gribTablesVersionNo=200 ;centre=98;} - 'RO' = { indicatorOfParameter=205 ; gribTablesVersionNo=200 ;centre=98;} - 'TCO3' = { indicatorOfParameter=206 ; gribTablesVersionNo=200 ;centre=98;} - '10SI' = { indicatorOfParameter=207 ; gribTablesVersionNo=200 ;centre=98;} - 'TSRC' = { indicatorOfParameter=208 ; gribTablesVersionNo=200 ;centre=98;} - 'TTRC' = { indicatorOfParameter=209 ; gribTablesVersionNo=200 ;centre=98;} - 'SSRC' = { indicatorOfParameter=210 ; gribTablesVersionNo=200 ;centre=98;} - 'STRC' = { indicatorOfParameter=211 ; gribTablesVersionNo=200 ;centre=98;} - 'TISR' = { indicatorOfParameter=212 ; gribTablesVersionNo=200 ;centre=98;} - 'DHR' = { indicatorOfParameter=214 ; gribTablesVersionNo=200 ;centre=98;} - 'DHVD' = { indicatorOfParameter=215 ; gribTablesVersionNo=200 ;centre=98;} - 'DHCC' = { indicatorOfParameter=216 ; gribTablesVersionNo=200 ;centre=98;} - 'DHLC' = { indicatorOfParameter=217 ; gribTablesVersionNo=200 ;centre=98;} - 'VDZW' = { indicatorOfParameter=218 ; gribTablesVersionNo=200 ;centre=98;} - 'VDMW' = { indicatorOfParameter=219 ; gribTablesVersionNo=200 ;centre=98;} - 'EWGD' = { indicatorOfParameter=220 ; gribTablesVersionNo=200 ;centre=98;} - 'NSGD' = { indicatorOfParameter=221 ; gribTablesVersionNo=200 ;centre=98;} - 'CTZW' = { indicatorOfParameter=222 ; gribTablesVersionNo=200 ;centre=98;} - 'CTMW' = { indicatorOfParameter=223 ; gribTablesVersionNo=200 ;centre=98;} - 'VDH' = { indicatorOfParameter=224 ; gribTablesVersionNo=200 ;centre=98;} - 'HTCC' = { indicatorOfParameter=225 ; gribTablesVersionNo=200 ;centre=98;} - 'HTLC' = { indicatorOfParameter=226 ; gribTablesVersionNo=200 ;centre=98;} - 'CRNH' = { indicatorOfParameter=227 ; gribTablesVersionNo=200 ;centre=98;} - 'TP' = { indicatorOfParameter=228 ; gribTablesVersionNo=200 ;centre=98;} - 'IEWS' = { indicatorOfParameter=229 ; gribTablesVersionNo=200 ;centre=98;} - 'INSS' = { indicatorOfParameter=230 ; gribTablesVersionNo=200 ;centre=98;} - 'ISHF' = { indicatorOfParameter=231 ; gribTablesVersionNo=200 ;centre=98;} - 'IE' = { indicatorOfParameter=232 ; gribTablesVersionNo=200 ;centre=98;} - 'ASQ' = { indicatorOfParameter=233 ; gribTablesVersionNo=200 ;centre=98;} - 'LSRH' = { indicatorOfParameter=234 ; gribTablesVersionNo=200 ;centre=98;} - 'SKT' = { indicatorOfParameter=235 ; gribTablesVersionNo=200 ;centre=98;} - 'STL4' = { indicatorOfParameter=236 ; gribTablesVersionNo=200 ;centre=98;} - 'SWL4' = { indicatorOfParameter=237 ; gribTablesVersionNo=200 ;centre=98;} - 'TSN' = { indicatorOfParameter=238 ; gribTablesVersionNo=200 ;centre=98;} - 'CSF' = { indicatorOfParameter=239 ; gribTablesVersionNo=200 ;centre=98;} - 'LSF' = { indicatorOfParameter=240 ; gribTablesVersionNo=200 ;centre=98;} - 'ACF' = { indicatorOfParameter=241 ; gribTablesVersionNo=200 ;centre=98;} - 'ALW' = { indicatorOfParameter=242 ; gribTablesVersionNo=200 ;centre=98;} - 'FAL' = { indicatorOfParameter=243 ; gribTablesVersionNo=200 ;centre=98;} - 'FSR' = { indicatorOfParameter=244 ; gribTablesVersionNo=200 ;centre=98;} - 'FLSR' = { indicatorOfParameter=245 ; gribTablesVersionNo=200 ;centre=98;} - 'CLWC' = { indicatorOfParameter=246 ; gribTablesVersionNo=200 ;centre=98;} - 'CIWC' = { indicatorOfParameter=247 ; gribTablesVersionNo=200 ;centre=98;} - 'CC' = { indicatorOfParameter=248 ; gribTablesVersionNo=200 ;centre=98;} - 'AIW' = { indicatorOfParameter=249 ; gribTablesVersionNo=200 ;centre=98;} - 'ICE' = { indicatorOfParameter=250 ; gribTablesVersionNo=200 ;centre=98;} - 'ATTE' = { indicatorOfParameter=251 ; gribTablesVersionNo=200 ;centre=98;} - 'ATHE' = { indicatorOfParameter=252 ; gribTablesVersionNo=200 ;centre=98;} - 'ATZE' = { indicatorOfParameter=253 ; gribTablesVersionNo=200 ;centre=98;} - 'ATMW' = { indicatorOfParameter=254 ; gribTablesVersionNo=200 ;centre=98;} - 'APAB_S' = { indicatorOfParameter=5 ; gribTablesVersionNo=201 ;centre=98;} - 'SOHR_RAD' = { indicatorOfParameter=13 ; gribTablesVersionNo=201 ;centre=98;} - 'THHR_RAD' = { indicatorOfParameter=14 ; gribTablesVersionNo=201 ;centre=98;} - 'CLC' = { indicatorOfParameter=29 ; gribTablesVersionNo=201 ;centre=98;} - 'QC' = { indicatorOfParameter=31 ; gribTablesVersionNo=201 ;centre=98;} - 'QI' = { indicatorOfParameter=33 ; gribTablesVersionNo=201 ;centre=98;} - 'TWATER' = { indicatorOfParameter=41 ; gribTablesVersionNo=201 ;centre=98;} - 'CH_CM_CL' = { indicatorOfParameter=50 ; gribTablesVersionNo=201 ;centre=98;} - 'HBAS_CON' = { indicatorOfParameter=68 ; gribTablesVersionNo=201 ;centre=98;} - 'HTOP_CON' = { indicatorOfParameter=69 ; gribTablesVersionNo=201 ;centre=98;} - 'BAS_CON' = { indicatorOfParameter=72 ; gribTablesVersionNo=201 ;centre=98;} - 'TOP_CON' = { indicatorOfParameter=73 ; gribTablesVersionNo=201 ;centre=98;} - 'DT_CON' = { indicatorOfParameter=74 ; gribTablesVersionNo=201 ;centre=98;} - 'DQV_CON' = { indicatorOfParameter=75 ; gribTablesVersionNo=201 ;centre=98;} - 'DU_CON' = { indicatorOfParameter=78 ; gribTablesVersionNo=201 ;centre=98;} - 'DV_CON' = { indicatorOfParameter=79 ; gribTablesVersionNo=201 ;centre=98;} - 'HTOP_DC' = { indicatorOfParameter=82 ; gribTablesVersionNo=201 ;centre=98;} - 'HZEROCL' = { indicatorOfParameter=84 ; gribTablesVersionNo=201 ;centre=98;} - 'SNOWLMT' = { indicatorOfParameter=85 ; gribTablesVersionNo=201 ;centre=98;} - 'QRS_GSP' = { indicatorOfParameter=99 ; gribTablesVersionNo=201 ;centre=98;} - 'PRR_GSP' = { indicatorOfParameter=100 ; gribTablesVersionNo=201 ;centre=98;} - 'PRS_GSP' = { indicatorOfParameter=101 ; gribTablesVersionNo=201 ;centre=98;} - 'RAIN_GSP' = { indicatorOfParameter=102 ; gribTablesVersionNo=201 ;centre=98;} - 'PRR_CON' = { indicatorOfParameter=111 ; gribTablesVersionNo=201 ;centre=98;} - 'PRS_CON' = { indicatorOfParameter=112 ; gribTablesVersionNo=201 ;centre=98;} - 'RAIN_CON' = { indicatorOfParameter=113 ; gribTablesVersionNo=201 ;centre=98;} - 'PP' = { indicatorOfParameter=139 ; gribTablesVersionNo=201 ;centre=98;} - 'VMAX_10M' = { indicatorOfParameter=187 ; gribTablesVersionNo=201 ;centre=98;} - 'W_I' = { indicatorOfParameter=200 ; gribTablesVersionNo=201 ;centre=98;} - 'T_SNOW' = { indicatorOfParameter=203 ; gribTablesVersionNo=201 ;centre=98;} - 'T_ICE' = { indicatorOfParameter=215 ; gribTablesVersionNo=201 ;centre=98;} - 'CAPE_CON' = { indicatorOfParameter=241 ; gribTablesVersionNo=201 ;centre=98;} - 'AERMR01' = { indicatorOfParameter=1 ; gribTablesVersionNo=210 ;centre=98;} - 'AERMR02' = { indicatorOfParameter=2 ; gribTablesVersionNo=210 ;centre=98;} - 'AERMR03' = { indicatorOfParameter=3 ; gribTablesVersionNo=210 ;centre=98;} - 'AERMR04' = { indicatorOfParameter=4 ; gribTablesVersionNo=210 ;centre=98;} - 'AERMR05' = { indicatorOfParameter=5 ; gribTablesVersionNo=210 ;centre=98;} - 'AERMR06' = { indicatorOfParameter=6 ; gribTablesVersionNo=210 ;centre=98;} - 'AERMR07' = { indicatorOfParameter=7 ; gribTablesVersionNo=210 ;centre=98;} - 'AERMR08' = { indicatorOfParameter=8 ; gribTablesVersionNo=210 ;centre=98;} - 'AERMR09' = { indicatorOfParameter=9 ; gribTablesVersionNo=210 ;centre=98;} - 'AERMR10' = { indicatorOfParameter=10 ; gribTablesVersionNo=210 ;centre=98;} - 'AERMR11' = { indicatorOfParameter=11 ; gribTablesVersionNo=210 ;centre=98;} - 'AERMR12' = { indicatorOfParameter=12 ; gribTablesVersionNo=210 ;centre=98;} - 'AERGN01' = { indicatorOfParameter=16 ; gribTablesVersionNo=210 ;centre=98;} - 'AERGN02' = { indicatorOfParameter=17 ; gribTablesVersionNo=210 ;centre=98;} - 'AERGN03' = { indicatorOfParameter=18 ; gribTablesVersionNo=210 ;centre=98;} - 'AERGN04' = { indicatorOfParameter=19 ; gribTablesVersionNo=210 ;centre=98;} - 'AERGN05' = { indicatorOfParameter=20 ; gribTablesVersionNo=210 ;centre=98;} - 'AERGN06' = { indicatorOfParameter=21 ; gribTablesVersionNo=210 ;centre=98;} - 'AERGN07' = { indicatorOfParameter=22 ; gribTablesVersionNo=210 ;centre=98;} - 'AERGN08' = { indicatorOfParameter=23 ; gribTablesVersionNo=210 ;centre=98;} - 'AERGN09' = { indicatorOfParameter=24 ; gribTablesVersionNo=210 ;centre=98;} - 'AERGN10' = { indicatorOfParameter=25 ; gribTablesVersionNo=210 ;centre=98;} - 'AERGN11' = { indicatorOfParameter=26 ; gribTablesVersionNo=210 ;centre=98;} - 'AERGN12' = { indicatorOfParameter=27 ; gribTablesVersionNo=210 ;centre=98;} - 'AERLS01' = { indicatorOfParameter=31 ; gribTablesVersionNo=210 ;centre=98;} - 'AERLS02' = { indicatorOfParameter=32 ; gribTablesVersionNo=210 ;centre=98;} - 'AERLS03' = { indicatorOfParameter=33 ; gribTablesVersionNo=210 ;centre=98;} - 'AERLS04' = { indicatorOfParameter=34 ; gribTablesVersionNo=210 ;centre=98;} - 'AERLS05' = { indicatorOfParameter=35 ; gribTablesVersionNo=210 ;centre=98;} - 'AERLS06' = { indicatorOfParameter=36 ; gribTablesVersionNo=210 ;centre=98;} - 'AERLS07' = { indicatorOfParameter=37 ; gribTablesVersionNo=210 ;centre=98;} - 'AERLS08' = { indicatorOfParameter=38 ; gribTablesVersionNo=210 ;centre=98;} - 'AERLS09' = { indicatorOfParameter=39 ; gribTablesVersionNo=210 ;centre=98;} - 'AERLS10' = { indicatorOfParameter=40 ; gribTablesVersionNo=210 ;centre=98;} - 'AERLS11' = { indicatorOfParameter=41 ; gribTablesVersionNo=210 ;centre=98;} - 'AERLS12' = { indicatorOfParameter=42 ; gribTablesVersionNo=210 ;centre=98;} - 'AERPR' = { indicatorOfParameter=46 ; gribTablesVersionNo=210 ;centre=98;} - 'AERSM' = { indicatorOfParameter=47 ; gribTablesVersionNo=210 ;centre=98;} - 'AERLG' = { indicatorOfParameter=48 ; gribTablesVersionNo=210 ;centre=98;} - 'AODPR' = { indicatorOfParameter=49 ; gribTablesVersionNo=210 ;centre=98;} - 'AODSM' = { indicatorOfParameter=50 ; gribTablesVersionNo=210 ;centre=98;} - 'AODLG' = { indicatorOfParameter=51 ; gribTablesVersionNo=210 ;centre=98;} - 'AERDEP' = { indicatorOfParameter=52 ; gribTablesVersionNo=210 ;centre=98;} - 'AERLTS' = { indicatorOfParameter=53 ; gribTablesVersionNo=210 ;centre=98;} - 'AERSCC' = { indicatorOfParameter=54 ; gribTablesVersionNo=210 ;centre=98;} - 'CO2' = { indicatorOfParameter=61 ; gribTablesVersionNo=210 ;centre=98;} - 'CH4' = { indicatorOfParameter=62 ; gribTablesVersionNo=210 ;centre=98;} - 'N2O' = { indicatorOfParameter=63 ; gribTablesVersionNo=210 ;centre=98;} - 'TCCO2' = { indicatorOfParameter=64 ; gribTablesVersionNo=210 ;centre=98;} - 'TCCH4' = { indicatorOfParameter=65 ; gribTablesVersionNo=210 ;centre=98;} - 'TCN2O' = { indicatorOfParameter=66 ; gribTablesVersionNo=210 ;centre=98;} - 'CO2OF' = { indicatorOfParameter=67 ; gribTablesVersionNo=210 ;centre=98;} - 'CO2NBF' = { indicatorOfParameter=68 ; gribTablesVersionNo=210 ;centre=98;} - 'CO2APF' = { indicatorOfParameter=69 ; gribTablesVersionNo=210 ;centre=98;} - 'CO2FIRE' = { indicatorOfParameter=80 ; gribTablesVersionNo=210 ;centre=98;} - 'COFIRE' = { indicatorOfParameter=81 ; gribTablesVersionNo=210 ;centre=98;} - 'CH4FIRE' = { indicatorOfParameter=82 ; gribTablesVersionNo=210 ;centre=98;} - 'NMHCFIRE' = { indicatorOfParameter=83 ; gribTablesVersionNo=210 ;centre=98;} - 'H2FIRE' = { indicatorOfParameter=84 ; gribTablesVersionNo=210 ;centre=98;} - 'NOXFIRE' = { indicatorOfParameter=85 ; gribTablesVersionNo=210 ;centre=98;} - 'N2OFIRE' = { indicatorOfParameter=86 ; gribTablesVersionNo=210 ;centre=98;} - 'PM2P5FIRE' = { indicatorOfParameter=87 ; gribTablesVersionNo=210 ;centre=98;} - 'TPMFIRE' = { indicatorOfParameter=88 ; gribTablesVersionNo=210 ;centre=98;} - 'TCFIRE' = { indicatorOfParameter=89 ; gribTablesVersionNo=210 ;centre=98;} - 'OCFIRE' = { indicatorOfParameter=90 ; gribTablesVersionNo=210 ;centre=98;} - 'BCFIRE' = { indicatorOfParameter=91 ; gribTablesVersionNo=210 ;centre=98;} - 'CFIRE' = { indicatorOfParameter=92 ; gribTablesVersionNo=210 ;centre=98;} - 'C4FFIRE' = { indicatorOfParameter=93 ; gribTablesVersionNo=210 ;centre=98;} - 'VEGFIRE' = { indicatorOfParameter=94 ; gribTablesVersionNo=210 ;centre=98;} - 'CCFIRE' = { indicatorOfParameter=95 ; gribTablesVersionNo=210 ;centre=98;} - 'FLFIRE' = { indicatorOfParameter=96 ; gribTablesVersionNo=210 ;centre=98;} - 'BFFIRE' = { indicatorOfParameter=97 ; gribTablesVersionNo=210 ;centre=98;} - 'NO2' = { indicatorOfParameter=121 ; gribTablesVersionNo=210 ;centre=98;} - 'SO2' = { indicatorOfParameter=122 ; gribTablesVersionNo=210 ;centre=98;} - 'CO' = { indicatorOfParameter=123 ; gribTablesVersionNo=210 ;centre=98;} - 'HCHO' = { indicatorOfParameter=124 ; gribTablesVersionNo=210 ;centre=98;} - 'TCNO2' = { indicatorOfParameter=125 ; gribTablesVersionNo=210 ;centre=98;} - 'TCSO2' = { indicatorOfParameter=126 ; gribTablesVersionNo=210 ;centre=98;} - 'TCCO' = { indicatorOfParameter=127 ; gribTablesVersionNo=210 ;centre=98;} - 'TCHCHO' = { indicatorOfParameter=128 ; gribTablesVersionNo=210 ;centre=98;} - 'Ra' = { indicatorOfParameter=181 ; gribTablesVersionNo=210 ;centre=98;} - 'SF6' = { indicatorOfParameter=182 ; gribTablesVersionNo=210 ;centre=98;} - 'TCRa' = { indicatorOfParameter=183 ; gribTablesVersionNo=210 ;centre=98;} - 'TCSF6' = { indicatorOfParameter=184 ; gribTablesVersionNo=210 ;centre=98;} - 'SF6APF' = { indicatorOfParameter=185 ; gribTablesVersionNo=210 ;centre=98;} - 'GO3' = { indicatorOfParameter=203 ; gribTablesVersionNo=210 ;centre=98;} - 'GTCO3' = { indicatorOfParameter=206 ; gribTablesVersionNo=210 ;centre=98;} - 'AERPR' = { indicatorOfParameter=46 ; gribTablesVersionNo=211 ;centre=98;} - 'AERSM' = { indicatorOfParameter=47 ; gribTablesVersionNo=211 ;centre=98;} - 'AERLG' = { indicatorOfParameter=48 ; gribTablesVersionNo=211 ;centre=98;} - 'AODPR' = { indicatorOfParameter=49 ; gribTablesVersionNo=211 ;centre=98;} - 'AODSM' = { indicatorOfParameter=50 ; gribTablesVersionNo=211 ;centre=98;} - 'AODLG' = { indicatorOfParameter=51 ; gribTablesVersionNo=211 ;centre=98;} - 'CO2' = { indicatorOfParameter=61 ; gribTablesVersionNo=211 ;centre=98;} - 'CH4' = { indicatorOfParameter=62 ; gribTablesVersionNo=211 ;centre=98;} - 'N2O' = { indicatorOfParameter=63 ; gribTablesVersionNo=211 ;centre=98;} - 'NO2' = { indicatorOfParameter=121 ; gribTablesVersionNo=211 ;centre=98;} - 'SO2' = { indicatorOfParameter=122 ; gribTablesVersionNo=211 ;centre=98;} - 'CO' = { indicatorOfParameter=123 ; gribTablesVersionNo=211 ;centre=98;} - 'HCHO' = { indicatorOfParameter=124 ; gribTablesVersionNo=211 ;centre=98;} - 'GO3' = { indicatorOfParameter=203 ; gribTablesVersionNo=211 ;centre=98;} - 'TPOC' = { indicatorOfParameter=228 ; gribTablesVersionNo=220 ;centre=98;} - 'CIN' = { indicatorOfParameter=1 ; gribTablesVersionNo=228 ;centre=98;} - 'OROG' = { indicatorOfParameter=2 ; gribTablesVersionNo=228 ;centre=98;} - 'ZUST' = { indicatorOfParameter=3 ; gribTablesVersionNo=228 ;centre=98;} - 'SM' = { indicatorOfParameter=39 ; gribTablesVersionNo=228 ;centre=98;} - 'U10N' = { indicatorOfParameter=131 ; gribTablesVersionNo=228 ;centre=98;} - 'V10N' = { indicatorOfParameter=132 ; gribTablesVersionNo=228 ;centre=98;} - 'ST' = { indicatorOfParameter=139 ; gribTablesVersionNo=228 ;centre=98;} - 'SD' = { indicatorOfParameter=141 ; gribTablesVersionNo=228 ;centre=98;} - 'SF' = { indicatorOfParameter=144 ; gribTablesVersionNo=228 ;centre=98;} - 'TCC' = { indicatorOfParameter=164 ; gribTablesVersionNo=228 ;centre=98;} - 'CAP' = { indicatorOfParameter=170 ; gribTablesVersionNo=228 ;centre=98;} - 'WILT' = { indicatorOfParameter=171 ; gribTablesVersionNo=228 ;centre=98;} - 'SAT' = { indicatorOfParameter=172 ; gribTablesVersionNo=228 ;centre=98;} - 'TP' = { indicatorOfParameter=228 ; gribTablesVersionNo=228 ;centre=98;} - 'ESVAR' = { indicatorOfParameter=44 ; gribTablesVersionNo=230 ;centre=98;} - 'SMLTVAR' = { indicatorOfParameter=45 ; gribTablesVersionNo=230 ;centre=98;} - 'SDURVAR' = { indicatorOfParameter=46 ; gribTablesVersionNo=230 ;centre=98;} - 'UVBVAR' = { indicatorOfParameter=57 ; gribTablesVersionNo=230 ;centre=98;} - 'PARVAR' = { indicatorOfParameter=58 ; gribTablesVersionNo=230 ;centre=98;} - 'LSPVAR' = { indicatorOfParameter=142 ; gribTablesVersionNo=230 ;centre=98;} - 'CPVAR' = { indicatorOfParameter=143 ; gribTablesVersionNo=230 ;centre=98;} - 'SFVAR' = { indicatorOfParameter=144 ; gribTablesVersionNo=230 ;centre=98;} - 'BLDVAR' = { indicatorOfParameter=145 ; gribTablesVersionNo=230 ;centre=98;} - 'SSHFVAR' = { indicatorOfParameter=146 ; gribTablesVersionNo=230 ;centre=98;} - 'SLHFVAR' = { indicatorOfParameter=147 ; gribTablesVersionNo=230 ;centre=98;} - 'SSRDVAR' = { indicatorOfParameter=169 ; gribTablesVersionNo=230 ;centre=98;} - 'STRDVAR' = { indicatorOfParameter=175 ; gribTablesVersionNo=230 ;centre=98;} - 'SSRVAR' = { indicatorOfParameter=176 ; gribTablesVersionNo=230 ;centre=98;} - 'STRVAR' = { indicatorOfParameter=177 ; gribTablesVersionNo=230 ;centre=98;} - 'TSRVAR' = { indicatorOfParameter=178 ; gribTablesVersionNo=230 ;centre=98;} - 'TTRVAR' = { indicatorOfParameter=179 ; gribTablesVersionNo=230 ;centre=98;} - 'EWSSVAR' = { indicatorOfParameter=180 ; gribTablesVersionNo=230 ;centre=98;} - 'NSSSVAR' = { indicatorOfParameter=181 ; gribTablesVersionNo=230 ;centre=98;} - 'EVAR' = { indicatorOfParameter=182 ; gribTablesVersionNo=230 ;centre=98;} - 'SUNDVAR' = { indicatorOfParameter=189 ; gribTablesVersionNo=230 ;centre=98;} - 'LGWSVAR' = { indicatorOfParameter=195 ; gribTablesVersionNo=230 ;centre=98;} - 'MGWSVAR' = { indicatorOfParameter=196 ; gribTablesVersionNo=230 ;centre=98;} - 'GWDVAR' = { indicatorOfParameter=197 ; gribTablesVersionNo=230 ;centre=98;} - 'SRCVAR' = { indicatorOfParameter=198 ; gribTablesVersionNo=230 ;centre=98;} - 'ROVAR' = { indicatorOfParameter=205 ; gribTablesVersionNo=230 ;centre=98;} - 'TSRCVAR' = { indicatorOfParameter=208 ; gribTablesVersionNo=230 ;centre=98;} - 'TTRCVAR' = { indicatorOfParameter=209 ; gribTablesVersionNo=230 ;centre=98;} - 'SSRCVAR' = { indicatorOfParameter=210 ; gribTablesVersionNo=230 ;centre=98;} - 'STRCVAR' = { indicatorOfParameter=211 ; gribTablesVersionNo=230 ;centre=98;} - 'TISRVAR' = { indicatorOfParameter=212 ; gribTablesVersionNo=230 ;centre=98;} -} - From 5f0a6311ddc10a762a9720e83d2964a6368318b1 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 29 Sep 2020 17:07:58 +0100 Subject: [PATCH 061/683] Clean up: Remove examples/examples.dev from distro --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c4bf8c5b4..b9b425544 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -425,10 +425,10 @@ add_subdirectory( ifs_samples ) # must come after samples # ecbuild_dont_pack( DIRS samples DONT_PACK_REGEX "*.grib" ) ecbuild_dont_pack( DIRS - concepts tests.ecmwf doxygen confluence examples.dev templates parameters java + concepts tests.ecmwf doxygen confluence templates parameters java perl config m4 rpms gaussian_experimental gribex examples/F77 - examples/extra examples/deprecated bamboo fortran/fortranCtypes tigge/tools - share/eccodes .settings ) + examples/examples.dev examples/extra examples/deprecated bamboo + fortran/fortranCtypes tigge/tools share/eccodes .settings ) #ecbuild_dont_pack( DIRS data/bufr DONT_PACK_REGEX "*.bufr" ) #ecbuild_dont_pack( DIRS data/tigge DONT_PACK_REGEX "*.grib" ) From 238bad66cad6bee4c8ab8dc7e7c3f27039071d23 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 1 Oct 2020 12:20:50 +0100 Subject: [PATCH 062/683] ECC-1150: Deal with encoding a MISSING value --- ...essor_class_from_scale_factor_scaled_value.c | 8 ++++++++ tests/grib_ecc-1150.sh | 17 +++++++++++++---- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/src/grib_accessor_class_from_scale_factor_scaled_value.c b/src/grib_accessor_class_from_scale_factor_scaled_value.c index fe17caabb..3b5311e6e 100644 --- a/src/grib_accessor_class_from_scale_factor_scaled_value.c +++ b/src/grib_accessor_class_from_scale_factor_scaled_value.c @@ -200,6 +200,14 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) return GRIB_SUCCESS; } + if (exact == GRIB_MISSING_DOUBLE) { + if ((ret = grib_set_missing(hand, self->scaleFactor)) != GRIB_SUCCESS) + return ret; + if ((ret = grib_set_missing(hand, self->scaledValue)) != GRIB_SUCCESS) + return ret; + return GRIB_SUCCESS; + } + accessor_factor = grib_find_accessor(hand, self->scaleFactor); accessor_value = grib_find_accessor(hand, self->scaledValue); if (!accessor_factor || !accessor_value) { diff --git a/tests/grib_ecc-1150.sh b/tests/grib_ecc-1150.sh index c0d8360e1..c58cb950e 100755 --- a/tests/grib_ecc-1150.sh +++ b/tests/grib_ecc-1150.sh @@ -20,8 +20,8 @@ tempFilt=temp.${label}.filt in=$ECCODES_SAMPLES_PATH/GRIB2.tmpl -# Lower limit -# ------------- +# Decoding: Lower limit +# ---------------------- ${tools_dir}/grib_set -s \ productDefinitionTemplateNumber=5,scaleFactorOfLowerLimit=missing,scaledValueOfLowerLimit=missing \ $in $tempGrib @@ -39,8 +39,8 @@ EOF ${tools_dir}/grib_filter $tempFilt $tempGrib -# Try upper limit too -# -------------------- +# Decoding: upper limit +# ----------------------- ${tools_dir}/grib_set -s \ productDefinitionTemplateNumber=5,scaleFactorOfUpperLimit=missing,scaledValueOfUpperLimit=missing \ $in $tempGrib @@ -57,6 +57,15 @@ cat > $tempFilt < Date: Fri, 2 Oct 2020 14:57:16 +0100 Subject: [PATCH 063/683] GRIB2 Definitions: Add key 'constituentTypeName' --- definitions/grib2/template.4.parameter_chemical.def | 1 + definitions/grib2/template.4.parameter_chemical_distribution.def | 1 + definitions/grib2/template.4.parameter_chemical_source.def | 1 + 3 files changed, 3 insertions(+) diff --git a/definitions/grib2/template.4.parameter_chemical.def b/definitions/grib2/template.4.parameter_chemical.def index 767daf9cf..6b29f1591 100644 --- a/definitions/grib2/template.4.parameter_chemical.def +++ b/definitions/grib2/template.4.parameter_chemical.def @@ -10,6 +10,7 @@ meta parameterName codetable_title(parameterNumber) : dump; # Atmospheric chemical or physical constitutent type codetable[2] constituentType ('4.230.table',masterDir,localDir) : dump; +meta constituentTypeName codetable_title(constituentType); # Type of generating process codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; diff --git a/definitions/grib2/template.4.parameter_chemical_distribution.def b/definitions/grib2/template.4.parameter_chemical_distribution.def index 9a4265f0c..203b468d0 100644 --- a/definitions/grib2/template.4.parameter_chemical_distribution.def +++ b/definitions/grib2/template.4.parameter_chemical_distribution.def @@ -10,6 +10,7 @@ meta parameterName codetable_title(parameterNumber) : dump; # Atmospheric chemical or physical constitutent type codetable[2] constituentType ('4.230.table',masterDir,localDir) : dump; +meta constituentTypeName codetable_title(constituentType); # Number of mode(N) of distribution unsigned[2] numberOfModeOfDistribution : dump; diff --git a/definitions/grib2/template.4.parameter_chemical_source.def b/definitions/grib2/template.4.parameter_chemical_source.def index 94dc3c4a9..3b78cf330 100644 --- a/definitions/grib2/template.4.parameter_chemical_source.def +++ b/definitions/grib2/template.4.parameter_chemical_source.def @@ -10,6 +10,7 @@ meta parameterName codetable_title(parameterNumber) : dump; # Atmospheric chemical or physical constitutent type codetable[2] constituentType ('4.230.table',masterDir,localDir) : dump; +meta constituentTypeName codetable_title(constituentType); # Source, sink or chemical/physical process (Code table 4.238) codetable[1] sourceSinkChemicalPhysicalProcess ('4.238.table',masterDir,localDir) = 255 : dump; From c427b73dc3bb2f48a0cc3adab88901d922446845 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 5 Oct 2020 11:14:56 +0100 Subject: [PATCH 064/683] Data Quality Checks: more diagnostics --- src/grib_util.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/grib_util.c b/src/grib_util.c index 8366d5531..68c50e0af 100644 --- a/src/grib_util.c +++ b/src/grib_util.c @@ -2190,8 +2190,10 @@ int grib_util_grib_data_quality_check(grib_handle* h, double min_val, double max if (ctx->debug) { if (get_concept_condition_string(h, "param_value_max", NULL, description) == GRIB_SUCCESS) { - printf("ECCODES DEBUG grib_data_quality_check: Checking condition '%s' (min=%g, max=%g)\n", - description, min_field_value_allowed, max_field_value_allowed); + printf("ECCODES DEBUG grib_data_quality_check: Checking condition '%s' (allowed=%g, %g) (actual=%g, %g)\n", + description, min_field_value_allowed, max_field_value_allowed, + min_val, max_val + ); } } From d2908a0c1b93142bb30369618d430a1befe045b3 Mon Sep 17 00:00:00 2001 From: Tiago Quintino Date: Mon, 5 Oct 2020 11:17:40 +0100 Subject: [PATCH 065/683] Cleaner way to find ecbuild --- CMakeLists.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b9b425544..7d3b4bf3e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,13 +18,11 @@ cmake_minimum_required( VERSION 3.12 FATAL_ERROR ) -set( CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild/cmake" ) -find_package( ecbuild 3.4 REQUIRED ) +find_package( ecbuild 3.4 REQUIRED HINTS ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild) # Initialise project project( eccodes VERSION 2.19.0 LANGUAGES C ) - ############################################################################### # system checks needed for eccodes_config.h and some options like MEMFS From f1b79391d3c415494921255c1d7f6930d5bf957c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 5 Oct 2020 15:32:01 +0100 Subject: [PATCH 066/683] ECC-806: Local definitions precedence order (Initial try) --- definitions/boot.def | 4 +-- definitions/grib1/section.1.def | 29 +++++++++------ definitions/grib2/parameters.def | 14 ++++---- definitions/grib2/section.1.def | 8 +++++ definitions/grib2/template.4.horizontal.def | 2 +- tests/CMakeLists.txt | 1 + tests/grib_ecc-806.sh | 40 +++++++++++++++++++++ 7 files changed, 77 insertions(+), 21 deletions(-) create mode 100755 tests/grib_ecc-806.sh diff --git a/definitions/boot.def b/definitions/boot.def index ca68cf583..22edf96e1 100644 --- a/definitions/boot.def +++ b/definitions/boot.def @@ -11,7 +11,8 @@ constant definitionFilesVersion="2.0.0.0" : hidden; constant internalVersion=30 : hidden; meta checkInternalVersion check_internal_version(internalVersion) : hidden; -UseEcmfConventions = getenv("ECCODES_USE_ECMF_CONVENTIONS","1") :hidden ; +# ECC-806: Local concepts precedence order +transient preferLocalConcepts = 0 : hidden; constant defaultTypeOfLevel="unknown" : hidden; @@ -24,7 +25,6 @@ if (gribDataQualityChecks) { # If the environment variable is not defined, the key will be 0 GRIBEX_boustrophedonic = getenv("ECCODES_GRIBEX_BOUSTROPHEDONIC","0") :hidden; - constant zero=0 : hidden; constant one=1 : hidden; constant hundred=100 : hidden; diff --git a/definitions/grib1/section.1.def b/definitions/grib1/section.1.def index 91f891a41..14c4a8bd8 100644 --- a/definitions/grib1/section.1.def +++ b/definitions/grib1/section.1.def @@ -8,6 +8,14 @@ constant conceptsLocalDirAll="grib1/localConcepts/[centre:s]" : hidden; constant tablesMasterDir="grib1" : hidden; constant tablesLocalDir="grib1/local/[centre:s]" : hidden; +if (preferLocalConcepts) { + constant conceptsDir1 = conceptsMasterDir : hidden; + constant conceptsDir2 = conceptsLocalDirAll : hidden; +} else { + constant conceptsDir1 = conceptsLocalDirAll : hidden; + constant conceptsDir2 = conceptsMasterDir : hidden; +} + transient productionStatusOfProcessedData=0; position offsetSection1; section_length[3] section1Length ; @@ -53,7 +61,7 @@ alias levelType=indicatorOfTypeOfLevel; transient pressureUnits="hPa"; concept_nofail typeOfLevelECMF (unknown, "typeOfLevel.def",conceptsMasterDir,conceptsLocalDirECMF); -concept_nofail vertical.typeOfLevel (typeOfLevelECMF, "typeOfLevel.def",conceptsMasterDir,conceptsLocalDirAll); +concept_nofail vertical.typeOfLevel (typeOfLevelECMF, "typeOfLevel.def",conceptsDir2,conceptsDir1); when ( typeOfLevel is "isobaricInPa" ) { set pressureUnits="Pa"; } else { set pressureUnits="hPa";} @@ -71,7 +79,7 @@ if ( indicatorOfTypeOfLevel == 101 or indicatorOfTypeOfLevel == 120 or indicatorOfTypeOfLevel == 121 or indicatorOfTypeOfLevel == 128 or - indicatorOfTypeOfLevel == 141 ) + indicatorOfTypeOfLevel == 141 ) { unsigned[1] topLevel : can_be_missing,dump; unsigned[1] bottomLevel : can_be_missing,dump; @@ -148,20 +156,20 @@ if(table2Version >= 128) { #} concept paramIdECMF (defaultParameter,"paramId.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy; -concept paramId (paramIdECMF,"paramId.def",conceptsMasterDir,conceptsLocalDirAll): long_type,dump; +concept paramId (paramIdECMF,"paramId.def",conceptsDir2,conceptsDir1): long_type,dump; # transient pid = paramId : hidden; concept cfNameECMF(defaultName,"cfName.def",conceptsMasterDir,conceptsLocalDirECMF) : dump,no_copy,read_only; -concept cfName(cfNameECMF,"cfName.def",conceptsMasterDir,conceptsLocalDirAll) : dump,no_copy,read_only; +concept cfName(cfNameECMF,"cfName.def",conceptsDir2,conceptsDir1) : dump,no_copy,read_only; concept cfVarNameECMF(defaultName,"cfVarName.def",conceptsMasterDir,conceptsLocalDirECMF) : dump,no_copy,read_only; -concept cfVarName(cfVarNameECMF,"cfVarName.def",conceptsMasterDir,conceptsLocalDirAll) : dump,no_copy,read_only; +concept cfVarName(cfVarNameECMF,"cfVarName.def",conceptsDir2,conceptsDir1) : dump,no_copy,read_only; concept unitsECMF(defaultName,"units.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy,read_only; -concept units(unitsECMF,"units.def",conceptsMasterDir,conceptsLocalDirAll) : dump,no_copy,read_only; +concept units(unitsECMF,"units.def",conceptsDir2,conceptsDir1) : dump,no_copy,read_only; concept nameECMF(defaultName,"name.def",conceptsMasterDir,conceptsLocalDirECMF) : dump,no_copy,read_only; -concept name(nameECMF,"name.def",conceptsMasterDir,conceptsLocalDirAll) : dump,no_copy,read_only; +concept name(nameECMF,"name.def",conceptsDir2,conceptsDir1) : dump,no_copy,read_only; signed[2] decimalScaleFactor :dump; transient setLocalDefinition= 0 : no_copy; @@ -177,7 +185,7 @@ meta julianDay julian_day(dataDate,hour,minute,second) : edition_specific; codetable[1] stepUnits 'stepUnits.table' = 1 : transient,dump,no_copy; -concept_nofail stepType (timeRangeIndicator, "stepType.def", conceptsMasterDir, conceptsLocalDirAll); +concept_nofail stepType (timeRangeIndicator, "stepType.def", conceptsDir2, conceptsDir1); #alias stepTypeInternal=stepType; #alias lengthOfTimeRange=numberIncludedInAverage; @@ -287,9 +295,8 @@ section_padding section1Padding : read_only; # padtoeven evenpadding_sec1(offsetSection1,section1Length); #} - concept shortNameECMF (defaultShortName,"shortName.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy; -concept ls.shortName (shortNameECMF,"shortName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy,dump; +concept ls.shortName (shortNameECMF,"shortName.def",conceptsDir2,conceptsDir1) : no_copy,dump; meta ifsParam ifs_param(paramId,type); alias parameter.paramId=paramId; @@ -309,7 +316,7 @@ alias time.endStep=endStep; alias time.stepType=stepType; # ECC-457: GRIB1 to GRIB2 conversion -concept_nofail stepTypeForConversion (unknown, "stepTypeForConversion.def", conceptsMasterDir, conceptsLocalDirAll); +concept_nofail stepTypeForConversion (unknown, "stepTypeForConversion.def", conceptsDir2, conceptsDir1); if (stepTypeForConversion is "accum" ) { alias productDefinitionTemplateNumber=eight; } diff --git a/definitions/grib2/parameters.def b/definitions/grib2/parameters.def index 066b49feb..632902561 100644 --- a/definitions/grib2/parameters.def +++ b/definitions/grib2/parameters.def @@ -5,30 +5,30 @@ transient dummyc=0: hidden; concept paramIdLegacyECMF(defaultParameter,"paramId.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): long_type,no_copy,hidden; concept paramIdECMF (paramIdLegacyECMF,"paramId.def",conceptsMasterDir,conceptsLocalDirECMF): long_type,no_copy; -concept paramId (paramIdECMF,"paramId.def",conceptsMasterDir,conceptsLocalDirAll): long_type; +concept paramId (paramIdECMF,"paramId.def",conceptsDir2,conceptsDir1): long_type; concept shortNameLegacyECMF(defaultShortName,"shortName.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump,hidden; concept shortNameECMF (shortNameLegacyECMF,"shortName.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump; -concept ls.shortName (shortNameECMF,"shortName.def",conceptsMasterDir,conceptsLocalDirAll): no_copy,dump; +concept ls.shortName (shortNameECMF,"shortName.def",conceptsDir2,conceptsDir1): no_copy,dump; concept unitsLegacyECMF(defaultName,"units.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,hidden; concept unitsECMF (unitsLegacyECMF,"units.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy; -concept units (unitsECMF,"units.def",conceptsMasterDir,conceptsLocalDirAll): no_copy; +concept units (unitsECMF,"units.def",conceptsDir2,conceptsDir1): no_copy; concept nameLegacyECMF(defaultName,"name.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump,hidden; concept nameECMF(nameLegacyECMF,"name.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump; -concept name(nameECMF,"name.def",conceptsMasterDir,conceptsLocalDirAll): no_copy,dump; +concept name(nameECMF,"name.def",conceptsDir2,conceptsDir1): no_copy,dump; concept cfNameLegacyECMF(defaultShortName,"cfName.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump,hidden; concept cfNameECMF(cfNameLegacyECMF,"cfName.def",conceptsMasterDir,conceptsLocalDirECMF) : no_copy,dump; -concept cfName(cfNameECMF,"cfName.def",conceptsMasterDir,conceptsLocalDirAll) : no_copy,dump; +concept cfName(cfNameECMF,"cfName.def",conceptsDir2,conceptsDir1) : no_copy,dump; concept cfVarNameLegacyECMF(defaultShortName,"cfVarName.legacy.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump,hidden; concept cfVarNameECMF (cfVarNameLegacyECMF,"cfVarName.def",conceptsMasterDir,conceptsLocalDirECMF): no_copy,dump; -concept cfVarName (cfVarNameECMF,"cfVarName.def",conceptsMasterDir,conceptsLocalDirAll): no_copy,dump; +concept cfVarName (cfVarNameECMF,"cfVarName.def",conceptsDir2,conceptsDir1): no_copy,dump; # modelName: Contribution from Daniel Lee @ DWD -concept modelName (defaultName,"modelName.def",conceptsMasterDir,conceptsLocalDirAll): no_copy,dump,read_only; +concept modelName (defaultName,"modelName.def",conceptsDir2,conceptsDir1): no_copy,dump,read_only; template_nofail names "grib2/products_[productionStatusOfProcessedData].def"; diff --git a/definitions/grib2/section.1.def b/definitions/grib2/section.1.def index 72415c998..cca229b19 100644 --- a/definitions/grib2/section.1.def +++ b/definitions/grib2/section.1.def @@ -136,3 +136,11 @@ concept is_uerra(zero) { constant conceptsMasterDir="grib2" : hidden; constant conceptsLocalDirAll="grib2/localConcepts/[centre:s]" : hidden; constant conceptsLocalDirECMF="grib2/localConcepts/ecmf" : hidden; + +if (preferLocalConcepts) { + constant conceptsDir1 = conceptsMasterDir : hidden; + constant conceptsDir2 = conceptsLocalDirAll : hidden; +} else { + constant conceptsDir1 = conceptsLocalDirAll : hidden; + constant conceptsDir2 = conceptsMasterDir : hidden; +} diff --git a/definitions/grib2/template.4.horizontal.def b/definitions/grib2/template.4.horizontal.def index d3739c0b1..071ae07b0 100755 --- a/definitions/grib2/template.4.horizontal.def +++ b/definitions/grib2/template.4.horizontal.def @@ -24,7 +24,7 @@ unsigned[4] scaledValueOfSecondFixedSurface = missing() : can_be_missing,dump,no transient pressureUnits="hPa"; -concept_nofail vertical.typeOfLevel (unknown,"typeOfLevelConcept.def",conceptsMasterDir,conceptsLocalDirAll); +concept_nofail vertical.typeOfLevel (unknown,"typeOfLevelConcept.def",conceptsDir2,conceptsDir1); alias levelType=typeOfFirstFixedSurface; diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 9940abddd..54156ef9c 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -127,6 +127,7 @@ if( HAVE_BUILD_TOOLS ) bufr_ecc-887 grib_ecc-490 grib_ecc-756 + grib_ecc-806 grib_ecc-873 grib_ecc-600 grib_ecc-923 diff --git a/tests/grib_ecc-806.sh b/tests/grib_ecc-806.sh new file mode 100755 index 000000000..8fd5e640d --- /dev/null +++ b/tests/grib_ecc-806.sh @@ -0,0 +1,40 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +# -------------------------------------------- +# This is the test for the JIRA issue ECC-806 +# Local definitions precedence order +# -------------------------------------------- +label="grib_ecc-806-test" +tempGrb=temp.${label}.grb +tempOut=temp.${label}.txt +tempErr=temp.${label}.err + +# This NCEP grib2 file has the keys +# discipline = 0 +# parameterCategory = 1 +# parameterNumber = 11 +# Which is normally matched by 3066 but when overriden by NCEP local definitions +# should become 260056 +# This assumes our definitions contain the local kwbc concepts +# See definitions/grib2/localConcepts/kwbc/paramId.def + +input=$data_dir/gfs.complex.mvmu.grib2 +res=`${tools_dir}/grib_get -p paramId,shortName,units,name $input` +[ "$res" = "3066 sde m Snow depth" ] + +# Change the precedence rule +res=`${tools_dir}/grib_get -s preferLocalConcepts=1 -p paramId,shortName,units,name $input` +[ "$res" = "260056 sdwe kg m**-2 Water equivalent of accumulated snow depth (deprecated)" ] + +# Clean up +rm -f $tempGrb $tempOut $tempErr From 21b9229abfce52605c8cc968cae58848101cd18d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 5 Oct 2020 16:05:49 +0100 Subject: [PATCH 067/683] ECC-806: Local definitions precedence order --- definitions/grib1/section.1.def | 1 + definitions/grib2/section.1.def | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/definitions/grib1/section.1.def b/definitions/grib1/section.1.def index 14c4a8bd8..1ed21d91e 100644 --- a/definitions/grib1/section.1.def +++ b/definitions/grib1/section.1.def @@ -8,6 +8,7 @@ constant conceptsLocalDirAll="grib1/localConcepts/[centre:s]" : hidden; constant tablesMasterDir="grib1" : hidden; constant tablesLocalDir="grib1/local/[centre:s]" : hidden; +# ECC-806: Local concepts precedence order if (preferLocalConcepts) { constant conceptsDir1 = conceptsMasterDir : hidden; constant conceptsDir2 = conceptsLocalDirAll : hidden; diff --git a/definitions/grib2/section.1.def b/definitions/grib2/section.1.def index cca229b19..fd58c35f7 100644 --- a/definitions/grib2/section.1.def +++ b/definitions/grib2/section.1.def @@ -137,10 +137,11 @@ constant conceptsMasterDir="grib2" : hidden; constant conceptsLocalDirAll="grib2/localConcepts/[centre:s]" : hidden; constant conceptsLocalDirECMF="grib2/localConcepts/ecmf" : hidden; +# ECC-806: Local concepts precedence order if (preferLocalConcepts) { - constant conceptsDir1 = conceptsMasterDir : hidden; - constant conceptsDir2 = conceptsLocalDirAll : hidden; + constant conceptsDir1 = conceptsMasterDir : hidden; + constant conceptsDir2 = conceptsLocalDirAll : hidden; } else { - constant conceptsDir1 = conceptsLocalDirAll : hidden; - constant conceptsDir2 = conceptsMasterDir : hidden; + constant conceptsDir1 = conceptsLocalDirAll : hidden; + constant conceptsDir2 = conceptsMasterDir : hidden; } From ff09f7d06cf0f0645c6308c01a0bcf75ed8351ce Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 7 Oct 2020 14:11:39 +0100 Subject: [PATCH 068/683] ECC-1153: Originating Centre: New WMO code 291 for IAP CAS --- definitions/common/c-11.table | 1 + 1 file changed, 1 insertion(+) diff --git a/definitions/common/c-11.table b/definitions/common/c-11.table index 503b78f7b..0ad9780dc 100644 --- a/definitions/common/c-11.table +++ b/definitions/common/c-11.table @@ -141,5 +141,6 @@ 287 287 Swaziland (NMC) 288 288 Togo (NMC) 289 289 Zambia (NMC) +291 iapc Institute of Atmospheric Physics (Chinese Academy of Sciences) 65535 65535 Missing value From b45e1d3f46338b19f415fa391e858714ec8556af Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 7 Oct 2020 14:12:30 +0100 Subject: [PATCH 069/683] ECC-1153: Originating Centre: New WMO code 291 for IAP CAS --- definitions/common/c-11.table | 1 + 1 file changed, 1 insertion(+) diff --git a/definitions/common/c-11.table b/definitions/common/c-11.table index 503b78f7b..0ad9780dc 100644 --- a/definitions/common/c-11.table +++ b/definitions/common/c-11.table @@ -141,5 +141,6 @@ 287 287 Swaziland (NMC) 288 288 Togo (NMC) 289 289 Zambia (NMC) +291 iapc Institute of Atmospheric Physics (Chinese Academy of Sciences) 65535 65535 Missing value From cda663d9931f904af402dc064db0f5421232fa5a Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 7 Oct 2020 14:31:18 +0100 Subject: [PATCH 070/683] ECC-1153: Originating Centre: New WMO code 291 for IAP CAS --- src/bufr_util.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bufr_util.c b/src/bufr_util.c index 58bf2dedc..1161adf4c 100644 --- a/src/bufr_util.c +++ b/src/bufr_util.c @@ -772,6 +772,8 @@ static const char* codes_bufr_header_get_centre_name(long edition, long centre_c return "eums"; case 255: return "consensus"; + case 291: + return "iapc"; default: return NULL; } From f22c70dfa491bf97a2883fd988e9ad46a6937021 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 7 Oct 2020 17:42:28 +0100 Subject: [PATCH 071/683] ECC-1154: grib_get_data: File with missing jDirectionIncrement and lat1 < lat2 --- src/grib_iterator_class_latlon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grib_iterator_class_latlon.c b/src/grib_iterator_class_latlon.c index 59f883376..fc8ab47ed 100644 --- a/src/grib_iterator_class_latlon.c +++ b/src/grib_iterator_class_latlon.c @@ -186,7 +186,7 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args) jdir = (lat1 - lat2) / (Nj - 1); } else { - jdir = (lat1 + 360.0 - lat2) / (Nj - 1); + jdir = (lat2 - lat1) / (Nj - 1); } grib_context_log(h->context, GRIB_LOG_INFO, "%s is missing (See jDirectionIncrementGiven). Using value of %.6f obtained from La1, La2 and Nj", s_jdir, jdir); From 9eac6d620dad83e109b823c8ed2060b33b092f5a Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 9 Oct 2020 12:36:47 +0100 Subject: [PATCH 072/683] ECC-1155: GRIB: New CAPE and CIN parameters --- definitions/grib2/cfVarName.def | 50 +++++++++++++++++++++++++++++++++ definitions/grib2/name.def | 50 +++++++++++++++++++++++++++++++++ definitions/grib2/paramId.def | 50 +++++++++++++++++++++++++++++++++ definitions/grib2/shortName.def | 50 +++++++++++++++++++++++++++++++++ definitions/grib2/units.def | 50 +++++++++++++++++++++++++++++++++ 5 files changed, 250 insertions(+) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 6e6ed8fb3..0d9eeb340 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -849,6 +849,56 @@ parameterCategory = 0 ; parameterNumber = 33 ; } +#Mixed-layer CAPE in the lowest 50 hPa +'mlcape50' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 50 hPa +'mlcin50' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CAPE in the lowest 100 hPa +'mlcape100' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 100 hPa +'mlcin100' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Most-unstable CAPE +'mucape' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 17 ; + } +#Most-unstable CIN +'mucin' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 17 ; + } #200 metre U wind component 'u200' = { discipline = 0 ; diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index b37225446..cac125d41 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -849,6 +849,56 @@ parameterCategory = 0 ; parameterNumber = 33 ; } +#Mixed-layer CAPE in the lowest 50 hPa +'Mixed-layer CAPE in the lowest 50 hPa' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 50 hPa +'Mixed-layer CIN in the lowest 50 hPa' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CAPE in the lowest 100 hPa +'Mixed-layer CAPE in the lowest 100 hPa' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 100 hPa +'Mixed-layer CIN in the lowest 100 hPa' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Most-unstable CAPE +'Most-unstable CAPE' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 17 ; + } +#Most-unstable CIN +'Most-unstable CIN' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 17 ; + } #200 metre U wind component '200 metre U wind component' = { discipline = 0 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index fc4183786..396fcb2b8 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -849,6 +849,56 @@ parameterCategory = 0 ; parameterNumber = 33 ; } +#Mixed-layer CAPE in the lowest 50 hPa +'228231' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 50 hPa +'228232' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CAPE in the lowest 100 hPa +'228233' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 100 hPa +'228234' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Most-unstable CAPE +'228235' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 17 ; + } +#Most-unstable CIN +'228236' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 17 ; + } #200 metre U wind component '228239' = { discipline = 0 ; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index c8d0a775b..0c227d05a 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -849,6 +849,56 @@ parameterCategory = 0 ; parameterNumber = 33 ; } +#Mixed-layer CAPE in the lowest 50 hPa +'mlcape50' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 50 hPa +'mlcin50' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CAPE in the lowest 100 hPa +'mlcape100' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 100 hPa +'mlcin100' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Most-unstable CAPE +'mucape' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 17 ; + } +#Most-unstable CIN +'mucin' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 17 ; + } #200 metre U wind component '200u' = { discipline = 0 ; diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index 5d2580baa..7c10c9263 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -849,6 +849,56 @@ parameterCategory = 0 ; parameterNumber = 33 ; } +#Mixed-layer CAPE in the lowest 50 hPa +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 50 hPa +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 5000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CAPE in the lowest 100 hPa +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Mixed-layer CIN in the lowest 100 hPa +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 18 ; + scaledValueOfFirstFixedSurface = 10000 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Most-unstable CAPE +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 17 ; + } +#Most-unstable CIN +'J kg**-1' = { + discipline = 0 ; + parameterCategory = 7 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 17 ; + } #200 metre U wind component 'm s**-1' = { discipline = 0 ; From c238a49abe29b92bc30892354f6ef36a08d49698 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 9 Oct 2020 13:31:18 +0100 Subject: [PATCH 073/683] ECC-1155: GRIB: New CAPE and CIN parameters (Add keys with missing values) --- definitions/grib2/cfVarName.def | 2 ++ definitions/grib2/name.def | 2 ++ definitions/grib2/paramId.def | 2 ++ definitions/grib2/shortName.def | 2 ++ definitions/grib2/units.def | 2 ++ 5 files changed, 10 insertions(+) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 0d9eeb340..8ba406187 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -891,6 +891,8 @@ parameterCategory = 7 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 17 ; + scaleFactorOfFirstFixedSurface = missing() ; + scaledValueOfFirstFixedSurface = missing() ; } #Most-unstable CIN 'mucin' = { diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index cac125d41..f7093dc4a 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -891,6 +891,8 @@ parameterCategory = 7 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 17 ; + scaleFactorOfFirstFixedSurface = missing() ; + scaledValueOfFirstFixedSurface = missing() ; } #Most-unstable CIN 'Most-unstable CIN' = { diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index 396fcb2b8..3c6e0f350 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -891,6 +891,8 @@ parameterCategory = 7 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 17 ; + scaleFactorOfFirstFixedSurface = missing() ; + scaledValueOfFirstFixedSurface = missing() ; } #Most-unstable CIN '228236' = { diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 0c227d05a..e2d886b04 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -891,6 +891,8 @@ parameterCategory = 7 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 17 ; + scaleFactorOfFirstFixedSurface = missing() ; + scaledValueOfFirstFixedSurface = missing() ; } #Most-unstable CIN 'mucin' = { diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index 7c10c9263..7ea951869 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -891,6 +891,8 @@ parameterCategory = 7 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 17 ; + scaleFactorOfFirstFixedSurface = missing() ; + scaledValueOfFirstFixedSurface = missing() ; } #Most-unstable CIN 'J kg**-1' = { From 6e7177afd39327aa8d6fcb1403a71294aab7ff19 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 9 Oct 2020 14:16:28 +0100 Subject: [PATCH 074/683] ECC-1155: GRIB: New CAPE and CIN parameters (Add keys with missing values) --- definitions/grib2/cfVarName.def | 2 ++ definitions/grib2/name.def | 2 ++ definitions/grib2/paramId.def | 2 ++ definitions/grib2/shortName.def | 2 ++ definitions/grib2/units.def | 2 ++ 5 files changed, 10 insertions(+) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 8ba406187..a12236f65 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -900,6 +900,8 @@ parameterCategory = 7 ; parameterNumber = 7 ; typeOfFirstFixedSurface = 17 ; + scaleFactorOfFirstFixedSurface = missing() ; + scaledValueOfFirstFixedSurface = missing() ; } #200 metre U wind component 'u200' = { diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index f7093dc4a..6c0cec137 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -900,6 +900,8 @@ parameterCategory = 7 ; parameterNumber = 7 ; typeOfFirstFixedSurface = 17 ; + scaleFactorOfFirstFixedSurface = missing() ; + scaledValueOfFirstFixedSurface = missing() ; } #200 metre U wind component '200 metre U wind component' = { diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index 3c6e0f350..471ad3eac 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -900,6 +900,8 @@ parameterCategory = 7 ; parameterNumber = 7 ; typeOfFirstFixedSurface = 17 ; + scaleFactorOfFirstFixedSurface = missing() ; + scaledValueOfFirstFixedSurface = missing() ; } #200 metre U wind component '228239' = { diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index e2d886b04..646b719c6 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -900,6 +900,8 @@ parameterCategory = 7 ; parameterNumber = 7 ; typeOfFirstFixedSurface = 17 ; + scaleFactorOfFirstFixedSurface = missing() ; + scaledValueOfFirstFixedSurface = missing() ; } #200 metre U wind component '200u' = { diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index 7ea951869..17716a9e4 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -900,6 +900,8 @@ parameterCategory = 7 ; parameterNumber = 7 ; typeOfFirstFixedSurface = 17 ; + scaleFactorOfFirstFixedSurface = missing() ; + scaledValueOfFirstFixedSurface = missing() ; } #200 metre U wind component 'm s**-1' = { From ccbb0f9dabcdbbb77d48dd73f135ecc89e33560f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 9 Oct 2020 16:24:08 +0100 Subject: [PATCH 075/683] Parameter DB and definitions: deal with attribute_value of NULL --- definitions/create_def.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/definitions/create_def.pl b/definitions/create_def.pl index debac4cea..1f5b45ec0 100755 --- a/definitions/create_def.pl +++ b/definitions/create_def.pl @@ -87,6 +87,9 @@ EOF if ($attribute =~ /stepType/ ) { $value="\"accum\""; } + if ($value eq '') { + $value="missing()"; + } print $out "\t $attribute = $value ;\n" ; } if ($filebase) { From 7b3e9aa23bcc13a3631835af99fcc864be0d3f21 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 9 Oct 2020 16:24:39 +0100 Subject: [PATCH 076/683] ECC-1155: GRIB: New CAPE and CIN parameters (228237) --- definitions/grib2/cfVarName.def | 13 +++++++++++-- definitions/grib2/name.def | 13 +++++++++++-- definitions/grib2/paramId.def | 13 +++++++++++-- definitions/grib2/shortName.def | 13 +++++++++++-- definitions/grib2/units.def | 13 +++++++++++-- 5 files changed, 55 insertions(+), 10 deletions(-) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index a12236f65..777aca5f5 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -891,8 +891,8 @@ parameterCategory = 7 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 17 ; - scaleFactorOfFirstFixedSurface = missing() ; scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; } #Most-unstable CIN 'mucin' = { @@ -900,8 +900,17 @@ parameterCategory = 7 ; parameterNumber = 7 ; typeOfFirstFixedSurface = 17 ; - scaleFactorOfFirstFixedSurface = missing() ; scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#Departure level of the most unstable parcel expressed as Pressure +'mudlp' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; } #200 metre U wind component 'u200' = { diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index 6c0cec137..b00d667ba 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -891,8 +891,8 @@ parameterCategory = 7 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 17 ; - scaleFactorOfFirstFixedSurface = missing() ; scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; } #Most-unstable CIN 'Most-unstable CIN' = { @@ -900,8 +900,17 @@ parameterCategory = 7 ; parameterNumber = 7 ; typeOfFirstFixedSurface = 17 ; - scaleFactorOfFirstFixedSurface = missing() ; scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#Departure level of the most unstable parcel expressed as Pressure +'Departure level of the most unstable parcel expressed as Pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; } #200 metre U wind component '200 metre U wind component' = { diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index 471ad3eac..b3ddc98fb 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -891,8 +891,8 @@ parameterCategory = 7 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 17 ; - scaleFactorOfFirstFixedSurface = missing() ; scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; } #Most-unstable CIN '228236' = { @@ -900,8 +900,17 @@ parameterCategory = 7 ; parameterNumber = 7 ; typeOfFirstFixedSurface = 17 ; - scaleFactorOfFirstFixedSurface = missing() ; scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#Departure level of the most unstable parcel expressed as Pressure +'228237' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; } #200 metre U wind component '228239' = { diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 646b719c6..bc85829c2 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -891,8 +891,8 @@ parameterCategory = 7 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 17 ; - scaleFactorOfFirstFixedSurface = missing() ; scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; } #Most-unstable CIN 'mucin' = { @@ -900,8 +900,17 @@ parameterCategory = 7 ; parameterNumber = 7 ; typeOfFirstFixedSurface = 17 ; - scaleFactorOfFirstFixedSurface = missing() ; scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#Departure level of the most unstable parcel expressed as Pressure +'mudlp' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; } #200 metre U wind component '200u' = { diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index 17716a9e4..e243f4a31 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -891,8 +891,8 @@ parameterCategory = 7 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 17 ; - scaleFactorOfFirstFixedSurface = missing() ; scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; } #Most-unstable CIN 'J kg**-1' = { @@ -900,8 +900,17 @@ parameterCategory = 7 ; parameterNumber = 7 ; typeOfFirstFixedSurface = 17 ; - scaleFactorOfFirstFixedSurface = missing() ; scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; + } +#Departure level of the most unstable parcel expressed as Pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 17 ; + scaledValueOfFirstFixedSurface = missing() ; + scaleFactorOfFirstFixedSurface = missing() ; } #200 metre U wind component 'm s**-1' = { From e92a21503fc7666c336fd6f0afe40800a5246499 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 11 Oct 2020 19:10:51 +0100 Subject: [PATCH 077/683] Tools: Print config options in debug mode --- tools/codes_info.c | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/tools/codes_info.c b/tools/codes_info.c index 4aa9184fa..e6207793f 100644 --- a/tools/codes_info.c +++ b/tools/codes_info.c @@ -28,6 +28,26 @@ static void usage_and_exit(const char* progname) #define INFO_PRINT_DEFINITION_PATH (1 << 1) #define INFO_PRINT_SAMPLES_PATH (1 << 2) +void print_debug_info(grib_context* context) +{ + int memfs = 0, aec = 0; +#ifdef HAVE_MEMFS + memfs = 1; +#endif +#ifdef HAVE_AEC + aec = 1; +#endif + grib_context_log(context, GRIB_LOG_DEBUG, "Git SHA1=%s", grib_get_git_sha1()); + grib_context_log(context, GRIB_LOG_DEBUG, "HAVE_JPEG=%d", HAVE_JPEG); + grib_context_log(context, GRIB_LOG_DEBUG, "HAVE_LIBJASPER=%d", HAVE_LIBJASPER); + grib_context_log(context, GRIB_LOG_DEBUG, "HAVE_LIBOPENJPEG=%d", HAVE_JPEG); + grib_context_log(context, GRIB_LOG_DEBUG, "HAVE_LIBPNG=%d", HAVE_LIBPNG); + grib_context_log(context, GRIB_LOG_DEBUG, "HAVE_AEC=%d", aec); + grib_context_log(context, GRIB_LOG_DEBUG, "HAVE_ECCODES_THREADS=%d", GRIB_PTHREADS); + grib_context_log(context, GRIB_LOG_DEBUG, "HAVE_ECCODES_OMP_THREADS=%d", GRIB_OMP_THREADS); + grib_context_log(context, GRIB_LOG_DEBUG, "HAVE_MEMFS=%d", memfs); +} + int main(int argc, char* argv[]) { char* path = NULL; @@ -64,6 +84,7 @@ int main(int argc, char* argv[]) usage_and_exit(argv[0]); if (print_flags == INFO_PRINT_ALL) { + print_debug_info(context); printf("\n"); printf("%s Version %d.%d.%d", grib_get_package_name(), major, minor, revision); @@ -73,17 +94,7 @@ int main(int argc, char* argv[]) printf("\n"); printf("\n"); - if (context->debug) { - grib_context_log(context, GRIB_LOG_DEBUG, "Git SHA1=%s", grib_get_git_sha1()); - } -#if GRIB_PTHREADS - grib_context_log(context, GRIB_LOG_DEBUG, "POSIX threads enabled\n"); -#elif GRIB_OMP_THREADS - grib_context_log(context, GRIB_LOG_DEBUG, "OMP threads enabled\n"); -#endif -#ifdef HAVE_MEMFS - grib_context_log(context, GRIB_LOG_DEBUG, "MEMFS enabled"); -#endif + if ((path = getenv("ECCODES_DEFINITION_PATH")) != NULL) { printf("Definition files path from environment variable"); printf(" ECCODES_DEFINITION_PATH=%s\n", path); From e2a0dc6c4f5ebb06f3154bb510136dde8a06fcc5 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 12 Oct 2020 14:52:42 +0100 Subject: [PATCH 078/683] ECC-1156: Python bindings test fails when library is built with MEMFS --- definitions/metar/stations/nsd_cccc.txt | 6701 ----------------------- memfs.py | 9 +- 2 files changed, 5 insertions(+), 6705 deletions(-) delete mode 100644 definitions/metar/stations/nsd_cccc.txt diff --git a/definitions/metar/stations/nsd_cccc.txt b/definitions/metar/stations/nsd_cccc.txt deleted file mode 100644 index 7331a71cb..000000000 --- a/definitions/metar/stations/nsd_cccc.txt +++ /dev/null @@ -1,6701 +0,0 @@ -AGGH|91|520|Honiara / Henderson||Solomon Islands|5|09-25S|160-03E|||8|9|P -AGGL|91|541|Santa Cruz||Solomon Islands|5|10-42S|165-48E|10-42S|165-48E|23|24|P -AGGM|91|503|Munda||Solomon Islands|5|08-20S|157-16E|||6|6|P -ANAU|91|530|Nauru Airport||Nauru|5|00-32S|166-55E|||6|6| -AYMD|94|014|Madang||Papua New Guinea|5|05-13S|145-47E|05-13S|145-47E|3|5|P -AYMO|--|---|Manus Island/Momote||Papua New Guinea|5|02-03-43S|147-25-27E|||4|| -AYPY|94|035|Moresby||Papua New Guinea|5|09-26S|147-13E|09-26S|147-13E|38|49|P -AYWK|94|004|Wewak||Papua New Guinea|5|03-34S|143-38E|||6||P -BGAM|04|360|Tasiilaq||Greenland|6|65-36N|037-38W|65-36N|037-38W|50|52|P -BGAS|04|285|Angisoq||Greenland|6|59-59N|045-12W|||16|16| -BGAT|04|351|Aputiteeq||Greenland|6|67-47N|032-18W|||13|12| -BGBW|04|270|Narsarsuaq||Greenland|6|61-10N|045-25W|61-11N|045-26W|34|32|P -BGCO|04|341|Constable Pynt||Greenland|6|70-45N|022-39W|||14|10| -BGDB|04|330|Daneborg||Greenland|6|74-18N|020-13W|||44|44| -BGDH|04|320|Danmarkshavn||Greenland|6|76-46N|018-40W|76-46N|018-40W|11|12|P -BGEM|04|220|Egedesminde||Greenland|6|68-42N|052-45W|68-42N|052-45W|43|41|P -BGFH|04|260|Frederikshaab||Greenland|6|62-00N|049-40W|||13|15|P -BGGD|04|261|Groennedal||Greenland|6|61-14N|048-06W|||35|32| -BGGH|04|250|Godthaab / Nuuk||Greenland|6|64-10N|051-45W|||80|70|P -BGHB|04|230|Holsteinsborg||Greenland|6|66-55N|053-40W|||12|9|P -BGJH|04|272|Julianehaab||Greenland|6|60-43N|046-03W|||32|34|P -BGJN|04|221|Jacobshavn Lufthavn||Greenland|6|69-14N|051-04W|||29|31| -BGKK|04|361|Kulusuk Lufthavn||Greenland|6|65-35N|037-09W|||35|37| -BGKT|04|340|Cape Tobin Automated Reporting Station ||Greenland|6|70-25N|021-58W|70-25N|021-58W|41|41| -BGPC|04|390|Prins Christian Sund||Greenland|6|60-03N|043-10W|||88|75| -BGSC|04|339|Scoresbysund||Greenland|6|70-29N|021-57W|70-29N|021-58W|65|69| -BGSF|04|231|Sdr Stroemfjord||Greenland|6|67-01N|050-42W|67-00N|050-48W|50|53|P -BGTL|04|202|Thule A. B.||Greenland|6|76-32N|068-45W|76-32N|068-45W|77|77|P -BIAR|04|063|Akureyri||Iceland|6|65-41N|018-05W|||23|27|P -BIEG|04|089|Egilsstadir||Iceland|6|65-17N|014-24W|||23|23| -BIGR|04|065|Grimsey||Iceland|6|66-32N|018-01W|||15|16| -BIHN|04|082|Akurnes||Iceland|6|64-18N|015-13W|||17|21|P -BIKF|04|018|Keflavikurflugvollur||Iceland|6|63-58N|022-36W|63-58N|022-36W|52|54|P -BIRG|04|077|Raufarhofn||Iceland|6|66-27N|015-57W|||8|8|P -BIRK|04|030|Reykjavik||Iceland|6|64-08N|021-54W|||54|61|P -BIST|04|013|Stykkisholmur||Iceland|6|65-05N|022-44W|||8|8| -BIVM|04|048|Vestmannaeyjar||Iceland|6|63-24N|020-17W|||118|124|P -BIVO|04|085|Skjaldthingsstadir||Iceland|6|65-42N|014-49W|||44|48| -BIX1|--|---|Biloxi, Keesler Air Force Base, Navu|MS|United States|4|30-24-07N|088-55-04W|40-18-00N|088-08-00W|224|228| -BIX2|--|---|Biloxi, Keesler Air Force Base, Navu|MS|United States|4|30-24-34N|088-55-08W|30-24-34N|088-55-08W|7|10| -BIX3|--|---|Biloxi, Keesler Air Force Base, Navu|MS|United States|4|30-24-36N|088-55-09W|30-24-34N|088-55-08W|7|10| -CTPP|--|---|Camp Canargus||Haiti|4|18-34N|072-19W|||38|| -CWAC|71|483|Nitinat Lake Meteorological Aeronautical Presentation System ||Canada|4|48-40N|124-50W|||41|| -CWAD|--|---|Cape Mudge Light House ||Canada|4|50-00N|125-12W|||4|| -CWAE|--|---|Whistler ||Canada|4|50-08N|122-57W|||658|| -CWAF|71|426|Ile Rouge Meteorological Aeronautical Presentation System ||Canada|4|48-05N|069-33W|||5|| -CWAG|71|806|La Scie, Nfld.||Canada|4|49-55N|055-40W|||192|194|P -CWAH|71|410|Amherst, N. S.||Canada|4|45-51N|064-16W|||22|23|P -CWAJ|71|465|Erieau Meteorological Aeronautical Presentation System ||Canada|4|42-15N|081-54W|||178|| -CWAN|71|112|Amphitrite Point||Canada|4|48-55N|125-33W|||27|| -CWAQ|71|516|Coronach Spc||Canada|4|49-03N|105-29W|||756|| -CWAR|71|807|Argentia, Nfld||Canada|4|47-18N|054-00W|47-17N|054-00W|16|16|P -CWAS|71|211|Pam Rocks||Canada|4|49-29N|123-18W||||| -CWAU|--|---|Dryad Point Light House ||Canada|4|52-11N|128-07W|||4|| -CWAV|71|248|Sundre||Canada|4|51-46N|114-41W|||1114|| -CWAX|71|819|St. Anthony, Nfld.||Canada|4|51-22N|055-38W|||106|111|P -CWBA|71|122|Banff, Alta.||Canada|4|51-11N|115-34W|||1397|1384|P -CWBE|71|460|Killarney Meteorological Aeronautical Presentation System ||Canada|4|45-58N|081-29W|||196|| -CWBF|--|---|Burgeo Automated Reporting Station ||Canada|4|47-37N|057-38W|||12|| -CWBG|71|760|Big Creek ||Canada|4|51-15N|123-05W|||1670|| -CWBI|71|632|Britt, Ont.||Canada|4|45-48N|080-32W|||190||P -CWBJ|71|162|Inner Whalebacks||Canada|4|61-55N|113-44W|||165|| -CWBK|71|415|Caribou Point Meteorological Aeronautical Presentation System ||Canada|4|45-46N|062-41W|||2|| -CWBL|71|143|Bachelors Island Automated Reporting Station ||Canada|4|51-45N|099-54W|||256|| -CWBM|71|230|Beaverlodge||Canada|4|55-12N|119-24W|||745|| -CWBO|71|457|Brooks Automatic Weather Reporting System ||Canada|4|50-33N|111-51W|||747|| -CWBR|71|049|B, R||Canada|4|66-02N|091-50W|||31|| -CWBT|71|512|Longue Point De Mingan, Que.||Canada|4|50-16N|064-14W|||11|| -CWBV|71|403|Beaven Island, N. S.||Canada|4|44-49N|062-20W|||14|10|P -CWBY|71|810|Port Menier, Que.||Canada|4|49-50N|064-18W|||53|53|P -CWBZ|71|712|St Anicet||Canada|4|45-07N|074-17W|45-07N|074-17W|49|49| -CWCA|71|818|Cartwright, Nfld.||Canada|4|53-42N|057-02W|||14|14|P -CWCB|--|---|Nanakwa Shoals||Canada|4|53-49N|128-50W|||0|| -CWCD|71|513|Saskatoon Kernen||Canada|4|52-09N|106-33W|||510|| -CWCF|71|158|Berens River CS , Man.||Canada|4|52-21N|097-02W|||222|| -CWCH|71|748|Atikokan Automated Reporting Station ||Canada|4|48-45N|091-37W|||424|| -CWCI|71|433|Caribou Island, Ont.||Canada|4|47-20N|085-50W|||187||P -CWCJ|71|750|Pukaskwa ||Canada|4|48-36N|086-18W|||206|| -CWCL|71|474|Clinton, B. C.||Canada|4|51-09N|121-30W|||1057|1057|P -CWCM|71|170|Carberry Mcdc||Canada|4|49-54N|099-21W|||384|| -CWCN|--|---|Malloch Dome Automatic Weather Reporting System ||Canada|4|78-13N|101-03W|||12|| -CWCO|71|270|Collingwood Automatic Weather Reporting System ||Canada|4|44-30N|080-13W|||180|| -CWCQ|--|---|Chatham Automatic Weather Reporting System ||Canada|4|47-00N|065-28W|||34|| -CWCS|--|---|Cote-Ste-Cath Mot||Canada|4|45-25N|073-34W|||17|| -CWCT|--|---|Coronation Automated Reporting Station ||Canada|4|52-04N|111-28W|||791|| -CWCU|71|436|Barrie, Ont.||Canada|4|44-23N|079-47W|||295||P -CWCV|--|---|Nootka Lightstation, B. C.||Canada|4|49-36N|126-37W|||16|| -CWCX|71|056|Clut Lake Automated Reporting Station ||Canada|4|66-00N|117-46W|||185|| -CWCZ|--|---|Addenbrooke Island Light, B. C.||Canada|4|51-36N|127-52W|||21|| -CWDA|71|417|Englee Meteorological Aeronautical Presentation System ||Canada|4|50-43N|056-07W|||29|| -CWDB|71|967|Burwash Automatic Weather Reporting System ||Canada|4|61-22N|139-03W|||806|| -CWDC|71|076|Uranium City, Sask.||Canada|4|59-34N|108-29W|||318|318|P -CWDD|--|---|Belle River, Ont.||Canada|4|42-18N|082-42W|||184|| -CWDE|71|520|Lac Benoit||Canada|4|51-33N|071-07W|||549|| -CWDF|71|283|Oliphant \ Ont||Canada|4|44-44N|081-17W|||182|| -CWDH|71|185|Daniel's Harbour, Nfld||Canada|4|50-14N|057-35W|||18|19|P -CWDI|71|400|Badger, Nfld||Canada|4|48-58N|056-04W|||105||P -CWDJ|71|514|Regina University||Canada|4|50-24N|104-35W|||573|| -CWDK|71|234|Claresholm Automatic Weather Reporting System ||Canada|4|50-01N|113-38W|||1012|| -CWDL|71|958|Dease Lake B. C.||Canada|4|58-25N|130-00W|||816|816|P -CWDM|71|814|Chevery, Que.||Canada|4|50-28N|059-38W|||6|6|P -CWDN|--|---|Wasaga Beach Automatic Weather Reporting System ||Canada|4|44-31N|080-01W|||182|| -CWDO|71|402|Twillingate Meteorological Aeronautical Presentation System ||Canada|4|49-41N|054-48W|||92|| -CWDP|71|521|Manouane-Est Automated Reporting Station ||Canada|4|50-40N|070-32W|||496|| -CWDQ|71|378|La Tuque||Canada|4|47-25N|072-48W|||169|| -CWDS|71|802|St. Lawrence, Nfld.||Canada|4|46-55N|055-23W|||46|49|P -CWDT|71|522|Chute Des Passes||Canada|4|49-54N|071-15W|||399|| -CWDU|71|235|Cop Upper||Canada|4|51-05N|114-13W|||1235|| -CWDV|71|435|Upsala, Ont.||Canada|4|49-02N|090-28W|||489|489|P -CWDZ|--|---|Drumheller East||Canada|4|51-26N|112-40W|||678|| -CWEA|71|448|Pinawa Automatic Weather Reporting System ||Canada|4|50-11N|096-04W|||268|| -CWEB|71|894|Estevan Point, B. C.||Canada|4|49-23N|126-33W|||7||P -CWEC|71|751|Welcome Island||Canada|4|48-22N|089-07W|||209|| -CWEE|71|523|Chamouchouane Automatic Weather Reporting System||Canada|4|49-17N|073-21W|||305|| -CWEF|71|418|Saint Paul Island Meteorological Aeronautical Presentation System ||Canada|4|47-14N|060-08W|||26|| -CWEG|--|---|Alberta Weather Centre ||Canada|4|53-30N|113-30W||||| -CWEH|71|131|Eastend Cypress, Sask||Canada|4|49-26N|108-59W|||1078||P -CWEI|71|447|Melita, Man||Canada|4|49-17N|100-59W|||446|446|P -CWEJ|--|---|Bow Drill Iii||Canada|4|47-12N|055-06W|||0|| -CWEK|71|476|Grey Islet Meteorological Aeronautical Presentation System ||Canada|4|54-35N|130-42W|||8|| -CWEL|71|772|Entrance Island Automatic Weather Reporting System ||Canada|4|49-13N|123-48W|||5|| -CWEM|--|---|Egg Island Light||Canada|4|51-15N|127-50W|||14|| -CWEO|71|421|Lac Eon, Que||Canada|4|51-52N|063-17W|||561|561|P -CWEP|71|412|East Point, P. E. I||Canada|4|46-27N|061-58W|||11|13|P -CWEQ|71|443|Swan River, Man.||Canada|4|52-07N|101-14W|||335|335|P -CWER|71|424|Ile D'Orleans Automated Reporting Station ||Canada|4|47-00N|070-49W|||5|| -CWES|71|111|Cape Scott Light||Canada|4|50-47N|128-26W|||70|| -CWET|--|---|Egbert Meteorological Aeronautical Presentation System ||Canada|4|44-14N|079-47W|||251|| -CWEU|71|917|Eureka, N. W. T.||Canada|4|79-59N|085-56W|79-59N|085-56W|10|10|P -CWEV|71|085|Ellice River Automated Reporting Station ||Canada|4|67-42N|104-28W|||42|| -CWEW|71|524|L'Assomption||Canada|4|45-49N|073-26W|45-49N|073-26W|21|21| -CWEZ|71|473|Saturna Island Meteorological Aeronautical Presentation System ||Canada|4|48-47N|123-03W|||24|| -CWFD|71|094|Cape Dyer, N. W. T.||Canada|4|66-35N|061-37W|||393|393|P -CWFE|71|238|Elk Island National Park||Canada|4|53-41N|112-52W|||716|| -CWFF|71|456|Melfort Automatic Weather Reporting System ||Canada|4|52-49N|104-36W|||490|| -CWFG|71|478|Sartine Island Meteorological Aeronautical Presentation System ||Canada|4|50-49N|128-54W|||112|| -CWFH|--|---|St. Shotts||Canada|4|46-43N|053-29W|||143|| -CWFJ|71|153|Cardston Automated Reporting Station ||Canada|4|49-12N|113-17W|||1136|| -CWFL|71|073|Fort Reliance ||Canada|4|62-43N|109-10W|||164|| -CWFM|--|---|Chatham Point Lighthouse ||Canada|4|50-20N|125-26W|||23|| -CWFN|71|920|Cree Lake Meteorological Aeronautical Presentation System ||Canada|4|57-21N|107-08W|57-21N|107-08W|495|497| -CWFP|--|---|Nain||Canada|4|56-33N|061-42W|||7|| -CWFQ|71|373|Frelighsburg||Canada|4|45-03N|072-50W|||152|| -CWFR|--|---|Horsefly River, B. C.||Canada|4|52-17N|121-03W|||846|| -CWFU|--|---|Little Macatina||Canada|4|52-14N|061-19W|||321|| -CWFW|71|829|Baie Comeau||Canada|4|49-16N|068-09W|||129|| -CWFX|71|055|Colville Lake||Canada|4|67-02N|126-05W|||259|| -CWFY|--|---|Conne River||Canada|4|48-10N|055-29W|||183|| -CWFZ|71|160|Fort Reliance, N. W. T.||Canada|4|62-43N|109-11W|||168|| -CWGB|71|769|Ballenas Island Automatic Weather Reporting System ||Canada|4|49-21N|124-10W|||5|| -CWGD|71|261|Goderich Automatic Weather Reporting System ||Canada|4|43-46N|081-43W|||214|| -CWGF|71|253|Garden River Automatic Weather Reporting System ||Canada|4|58-41N|113-53W|||241|| -CWGH|71|281|Grenadier Island ||Canada|4|44-25N|075-51W|||82|| -CWGJ|--|---|Montreal River Radar Site||Canada|4|47-14N|084-31W|||559|| -CWGL|71|282|Lagoon City ||Canada|4|44-32N|079-13W|||221|| -CWGM|71|154|Waterton Park Gate||Canada|4|59-08N|113-48W|||1296|| -CWGN|71|441|Gretna, Man.||Canada|4|49-02N|097-34W|||251|253|P -CWGP|71|777|Pemberton Automatic Weather Reporting System ||Canada|4|50-18N|122-44W|||204|| -CWGQ|71|736|Roquemaure||Canada|4|48-38N|079-27W|||269|| -CWGR|71|710|Iles-De-La-Madelein||Canada|4|47-25N|061-48W|||10|| -CWGT|71|781|Sisters Island Automatic Weather Reporting System ||Canada|4|49-29N|124-26W|||5|| -CWGU|71|857|Gypsumville||Canada|4|51-40N|098-45W|||265|| -CWGV|--|---|Carp Radar Site||Canada|4|45-19N|076-00W||||| -CWGW|71|782|Sparwood Automatic Weather Reporting System ||Canada|4|49-45N|114-54W|||1137|| -CWGX|--|---|Gillam, Man.||Canada|4|56-22N|094-42W|||145|| -CWGY|71|240|Esther 1||Canada|4|51-40N|110-12W|||707|| -CWGZ|--|---|Grise Fiord Airport||Canada|4|76-25N|082-54W|||45|| -CWHA|71|241|Highvale||Canada|4|53-27N|114-28W|||747|| -CWHC|71|201|Vancouver Automatic Weather Reporting System ||Canada|4|49-18N|123-07W|||2|| -CWHE|71|239|Ellerslie||Canada|4|53-25N|113-12W|||694|| -CWHH|71|142|Hunters Point Mar||Canada|4|53-02N|100-56W|||256|| -CWHI|71|249|Three Hills||Canada|4|51-42N|113-13W|||907|| -CWHL|71|440|Holland Rock Automatic Weather Reporting System ||Canada|4|54-10N|130-22W|||5|| -CWHM|71|184|Varennes||Canada|4|45-43N|073-23W|||19|| -CWHN|--|---|Jimmy Lake ||Canada|4|54-55N|109-57W|54-55N|109-58W|658|625| -CWHO|71|900|Hopedale Meteorological Aeronautical Presentation System ||Canada|4|55-27N|060-14W|||8|| -CWHP|71|423|Heath Point Meteorological Aeronautical Presentation System ||Canada|4|49-05N|061-42W|||4|| -CWHQ|71|389|Deschambaults , Que.||Canada|4|46-41N|071-57W|||55|| -CWHS|71|062|Bernard Harbour||Canada|4|68-47N|114-50W|||65|| -CWHT|71|505|Haines Junction||Canada|4|60-46N|137-35W|||599|| -CWHU|--|---|Star Brook||Canada|4|48-35N|057-14W|||290|| -CWHV|71|323|Beauceville||Canada|4|46-12N|070-47W|||229|| -CWHW|71|193|Comfort Cove, Nfld.||Canada|4|49-16N|054-53W|||96|99|P -CWHY|71|618|Mont-Orford||Canada|4|45-19N|072-15W|||851|| -CWIA|--|---|Saint Henri , Que.||Canada|4|48-39N|071-51W|||103|| -CWIC|71|074|Isachsen Meteorological Aeronautical Presentation System ||Canada|4|78-47N|103-33W|||58|| -CWID|71|087|Fort Providence||Canada|4|61-19N|117-36W|||161|| -CWIE|71|161|Indian River ||Canada|4|64-23N|115-01W|||478|| -CWIF|--|---|Quatsino Light Station ||Canada|4|50-26N|128-02W|||21|| -CWIG|--|---|Ile Aux Grues, Que.||Canada|4|47-04N|070-32W|||18|| -CWII|71|552|Victoria Beach ||Canada|4|50-42N|096-34W|||220|| -CWIJ|71|496|Lupin, N. W. T.||Canada|4|65-46N|111-14W|||500|500|P -CWIK|71|861|Broadview, Sask.||Canada|4|50-23N|102-41W|50-23N|102-35W|598|602|P -CWIL|71|084|Hat Island, N. W. T.||Canada|4|68-19N|100-05W|||36|| -CWIM|--|---|Upsala Radar Site ||Canada|4|49-02N|090-25W|||480|| -CWIO|71|762|Iskut River ||Canada|4|56-44N|131-40W|||15|| -CWIP|71|390|Pointe Noire , Que.||Canada|4|50-10N|066-26W|||25|| -CWIQ|71|124|Primrose Lake ||Canada|4|54-45N|110-03W|54-45N|110-03W|702|700| -CWIR|--|---|Victoria Marine ||Canada|4|48-22N|123-45W|||32|| -CWIS|71|319|Charlevoix CS , Que.||Canada|4|47-17N|070-38W|||719|| -CWIT|71|614|Saint Clothilde Automated Reporting Station ||Canada|4|45-10N|073-41W|||52|| -CWIU|--|---|Saint Gedeon, Que.||Canada|4|48-29N|071-47W|||103|| -CWIW|71|511|Watrous East Automated Reporting Station ||Canada|4|51-40N|105-24W|||526|| -CWIX|71|381|Mistook Automated Reporting Station ||Canada|4|48-46N|071-43W|||113|| -CWIY|--|---|St Leonard Automatic Weather Reporting System||Canada|4|47-09N|067-49W|||49|| -CWIZ|71|372|L'Acadie||Canada|4|45-18N|073-21W|||45|| -CWJA|71|888|Jasper, Alta.||Canada|4|52-53N|118-04W|||1061|1061|P -CWJB|71|392|Ste Foy CS , Que.||Canada|4|47-18N|071-16W|||91|| -CWJC|71|923|Ennadai Lake Meteorological Aeronautical Presentation System ||Canada|4|61-08N|100-54W|||357|| -CWJD|71|858|Grand Rapids, Man.||Canada|4|53-11N|099-16W|||223|223|P -CWJG|--|---|Ivory Island Light||Canada|4|52-16N|128-25W|||10|| -CWJH|71|451|Southend Automatic Weather Reporting System ||Canada|4|56-20N|103-17W|||344|| -CWJI|71|487|Assiniboia Airport Automated Reporting Station||Canada|4|49-44N|105-56W|||724|| -CWJM|71|290|Upper Rideau Lake||Canada|4|44-42N|076-18W|||125|| -CWJN|71|501|Herschel Island Automatic Weather Reporting System ||Canada|4|69-34N|138-55W|||1|| -CWJO|71|617|Jonquiere Automated Reporting Station ||Canada|4|48-25N|071-13W|||133|| -CWJP|71|167|Porter Lake||Canada|4|61-40N|108-25W|||396|| -CWJR|71|770|Creston Automatic Weather Reporting System ||Canada|4|49-05N|116-30W|||646|| -CWJT|71|376|St Jovite Automatic Weather Reporting System ||Canada|4|46-04N|074-32W|||239|| -CWJU|71|899|Langara, B. C.||Canada|4|54-15N|133-03W|||41|41|P -CWJV|--|---|Vernon, B. C.||Canada|4|50-14N|119-18W|||556|| -CWJW|71|486|Jasper Warden Automated Reporting Station ||Canada|4|52-56N|118-19W|52-56N|118-19W|1020|1020| -CWJX|71|459|Leader Airport Automatic Weather Reporting System ||Canada|4|50-54N|109-30W|||672|| -CWJY|71|507|Yathkyed Lake Meteorological Aeronautical Presentation System ||Canada|4|62-42N|098-18W|||148|| -CWJZ|71|499|Dubawnt Lake Meteorological Aeronautical Presentation System ||Canada|4|63-14N|101-46W|||237|| -CWKD|71|383|Bonnard 1, Que.||Canada|4|50-44N|071-01W|||497|| -CWKE|71|919|Pelly Bay||Canada|4|68-26N|089-43W|||326|| -CWKG|71|599|Kejimkujik 1, N. S.||Canada|4|44-26N|065-12W|||127|| -CWKH|71|774|Malahat Automatic Weather Reporting System ||Canada||48-35N|123-35W|||366|| -CWKI|--|---|Kitimat||Canada|4|54-03N|128-41W|||13|| -CWKK|71|468|Katatota Island||Canada|4|49-43N|088-20W|||260|| -CWKM|71|046|Komakuk Beach, Y. T.||Canada|4|69-37N|140-12W|||13|| -CWKO|71|135|Rockglen, Sask.||Canada|4|49-10N|105-59W|||915|917|P -CWKR|--|---|King Radar Site||Canada|4|43-58N|079-34W|||390|| -CWKS|--|---|Sikanni Chief, B. C.||Canada|4|57-15N|122-43W|||937|| -CWKU|--|---|Whiskey Automated Reporting Station ||Canada|4|81-02N|076-57W|||829|| -CWKV|--|---|Hope Slide||Canada|4|49-17N|121-14W|||674|| -CWKW|71|176|Cape Kakkiviak||Canada|4|59-59N|064-10W|||551|| -CWKX|71|222|Dease Lake Coastal Station||Canada|4|58-25N|130-00W|||816|| -CWLA|71|899|Langara, B. C.||Canada|4|54-15N|133-08W|||41|| -CWLB|71|931|Lac La Biche, Alta.||Canada|4|54-46N|112-01W|||565|567|P -CWLC|--|---|Lucy Island, B. C.||Canada|4|54-18N|130-36W|||27|| -CWLE|71|455|Lucky Lake Automatic Weather Reporting System ||Canada|4|50-57N|107-09W|||665|| -CWLF|71|846|Lansdowne House ||Canada|4|52-14N|087-53W|||242|| -CWLG|71|164|Little Chicago||Canada|4|67-12N|130-13W|||63|| -CWLI|71|960|Liverpool Bay||Canada|4|69-36N|130-54W|||102|| -CWLM|71|200|Victoria Automatic Weather Reporting System ||Canada|4|48-25N|123-19W|||70|| -CWLO|71|853|Shilo||Canada|4|49-47N|099-38W|49-47N|099-38W|373|373| -CWLP|71|485|Herbert Island Meteorological Aeronautical Presentation System ||Canada|4|50-56N|127-38W|||17|| -CWLQ|71|271|Nipissing||Canada|4|46-19N|079-28W|||204|| -CWLS|71|631|Mount Forest, Ont.||Canada|4|43-59N|080-45W|||415||P -CWLT|71|082|Alert, N. W. T.||Canada|4|82-30N|062-20W|82-30N|062-20W|63|66|P -CWLU|--|---|Lauzon, Que.||Canada|4|46-50N|071-10W|||20|| -CWLV|71|454|Waskesiu Lake Automated Reporting Station ||Canada|4|53-55N|106-04W|||569|| -CWLX|71|091|Longstaff Bluff, N. W. T.||Canada|4|68-53N|075-08W|||162|161|P -CWLY|71|891|Lytton, B. C.||Canada|4|50-14N|121-35W|||229|229|P -CWLZ|71|146|Candle Lake||Canada|4|53-44N|105-16W|53-44N|105-16W|503|503| -CWMA|--|---|Masset A||Canada|4|54-01N|132-07W|||5|| -CWMD|--|---|Mould Bay Camp||Canada|4|76-14N|119-19W|||12|| -CWME|71|482|Cathedral Point Meteorological Aeronautical Presentation System ||Canada|4|52-11N|127-28W|||32|| -CWMH|71|817|Mary's Harbour, Nfld.||Canada|4|52-18N|055-50W|||10|11|P -CWMI|71|719|Miscou Island, N. B.||Canada|4|48-01N|064-30W|||3|4|P -CWMJ|71|721|Maniwaki||Canada|4|46-17N|076-00W|||200|| -CWMM|71|775|P. Meadows Coastal Station Automatic Weather Reporting System||Canada||49-12N|122-41W|||5|| -CWMN|71|626|Mcgill Radar Site||Canada|4|45-25N|073-56W|||63|| -CWMP|71|168|Powder Lake||Canada|4|61-03N|109-20W|||396|| -CWMQ|71|453|Maplecreek Automatic Weather Reporting System ||Canada|4|49-54N|109-28W|||767|| -CWMR|--|---|Merry Island ||Canada|4|49-28N|123-55W|||8|| -CWMS|71|897|Mcinnes Island, B. C.||Canada|4|52-16N|128-43W|||25|26|P -CWMT|71|163|Lac La Martre||Canada|4|63-09N|117-16W|||271|| -CWMU|71|981|Rampart River Automatic Weather Reporting System ||Canada|4|65-57N|130-28W|||155|| -CWMV|71|986|St Charles Creek||Canada|4|64-45N|124-13W|||341|| -CWMW|71|722|Maniwaki, Que.||Canada|4|46-23N|075-58W|46-22N|075-59W|170|173|P -CWMX|71|255|Mildred Lake||Canada|4|57-32N|111-34W|||310|| -CWMZ|71|438|Western Island Meteorological Aeronautical Presentation System ||Canada|4|45-02N|080-22W|||191|| -CWNB|71|466|S. E. Shoal Meteorological Aeronautical Presentation System ||Canada|4|41-50N|082-28W|||195|| -CWNC|71|431|Cobourg, Ont.||Canada|4|43-57N|078-10W|||78|78|P -CWND|71|502|Pelly Island Automatic Weather Reporting System ||Canada|4|69-38N|135-26W|||12|| -CWNE|--|---|North Point, Prince Edward Island||Canada|4|47-05N|064-00W|||15|| -CWNH|71|715|Riviere Du Loup, Que.||Canada|4|47-48N|069-33W|||148|148|P -CWNI|--|---|Nipterk Base||Canada|4|69-37N|135-20W|||10|| -CWNJ|--|---|Green Island Light Station - Heliport, B. C.||Canada|4|54-34N|130-42W|||12|| -CWNK|71|147|Carman U Of M||Canada|4|49-30N|098-02W|||268|| -CWNL|71|462|Great Duck Island||Canada|4|45-38N|082-58W|||183|| -CWNM|71|776|Nelson Automatic Weather Reporting System ||Canada|4|49-30N|117-18W|||535|| -CWNO|71|976|Satah River Automatic Weather Reporting System||Canada|4|66-52N|134-12W|||86|| -CWNP|71|216|Nakusp Automatic Weather Reporting System ||Canada||50-16N|117-49W|||524|| -CWNQ|71|723|Nicolet Automatic Weather Reporting System ||Canada|4|46-13N|072-39W|||10|| -CWNR|71|245|Nakiska Ridgetop ||Canada|4|50-57N|115-11W|||2543|| -CWNT|71|250|Turtle Mountain||Canada|4|49-35N|114-25W|||2164|| -CWNW|71|982|Haldane River Automatic Weather Reporting System||Canada|4|67-04N|121-06W|||186|| -CWNX|71|763|Nechako River ||Canada|4|53-41N|124-50W|||715|| -CWNZ|71|832|Nagagami, Ont.||Canada|4|49-45N|084-10W|||259|263|P -CWOA|71|060|Camsell River, N. W. T.||Canada|4|65-37N|118-07W|||230||P -CWOB|71|097|Brevoort Island||Canada|4|63-20N|064-09W|||367|| -CWOC|71|619|New Carlisle1||Canada|4|48-01N|065-20W|||47|| -CWOD|71|379|Normandin||Canada|4|48-50N|072-33W|||137|| -CWOE|71|116|Onefour Automatic Weather Reporting System ||Canada|4|49-07N|110-28W|||935|| -CWOH|71|720|Ste Agathe Des Mont||Canada|4|46-03N|074-17W|||395|| -CWOI|71|978|Ivvavik Park Automatic Weather Reporting System||Canada|4|69-09N|140-09W|||244|| -CWOK|71|450|Elbow Marine Aviation Reporting Station ||Canada|4|51-08N|106-35W|||595|| -CWOL|--|---|Sable Island Man ||Canada|4|43-55N|059-55W|||4|| -CWON|--|---|Dawson Automatic Weather Reporting System ||Canada|4|64-03N|139-09W|||370|| -CWOU|71|127|Primrose Lake 2||Canada|4|54-47N|110-04W|54-47N|110-04W|606|606| -CWOY|--|---|Wynyard Marine Aviation Reporting Station ||Canada|4|51-46N|104-13W|||561|| -CWPA|71|979|Henderickson Automatic Weather Reporting System||Canada|4|53-47N|118-26W|||1542|| -CWPB|71|272|Beausoleil Island Automated Reporting Station ||Canada|4|44-51N|079-52W|||183|| -CWPC|71|463|Port Colborne Automated Reporting Station ||Canada|4|42-52N|079-15W|||184|| -CWPD|71|382|Parc Des Laurentid||Canada|4|47-34N|071-14W|||803|| -CWPE|--|---|Point Lepreau, N. B.||Canada|4|45-04N|066-28W|||1|| -CWPF|71|798|Esquimalt Harbour, B. C.||Canada|4|48-26N|123-26W|||3|| -CWPH|71|907|Inukjuak, Que||Canada|4|58-27N|078-07W|58-27N|078-07W|3|6|P -CWPI|71|105|Pine Island Meteorological Aeronautical Presentation System ||Canada|4|50-59N|127-44W|||9|| -CWPJ|71|414|Point Escuminac Meteorological Aeronautical Presentation System ||Canada|4|47-04N|064-48W|||5|| -CWPK|71|726|Parent, Que.||Canada|4|47-55N|074-37W|||442|441|P -CWPL|71|845|Pickle Lake, Ont.||Canada|4|51-27N|090-12W|51-27N|090-12W|389|386|P -CWPO|71|148|Pilot Mound, Man.||Canada|4|49-12N|098-54W|||470|470|P -CWPQ|71|675|Montreal-Est||Canada|4|45-38N|070-33W|||51|| -CWPR|71|032|Princeton Automatic Weather Reporting System ||Canada|4|50-36N|120-31W|||700|| -CWPS|71|464|Long Point Meteorological Aeronautical Presentation System ||Canada|4|42-34N|080-03W|||175|| -CWPU|71|050|Puntzi Mountain, B. C.||Canada|4|52-07N|124-08W|||910|910|P -CWPX|--|---|Cape Peel West, N. W. T.||Canada|4|69-02N|107-49W|||165|| -CWPY|--|---|Fort Chipewyan Automated Reporting Station ||Canada|4|58-46N|111-08W|||232|| -CWPZ|71|952|Burns Lake CS , B. C.||Canada|4|54-23N|125-57W|||713|| -CWQC|71|475|Port Alberni, B. C.||Canada|4|49-15N|124-50W|||2|2|P -CWQE|71|284|Toronto Headland||Canada|4|43-37N|079-21W|||87|| -CWQF|71|980|Rabbit Kettle Automated Reporting Station||Canada|4|61-58N|127-13W|||634|| -CWQG|71|151|Valcartier||Canada|4|46-54N|071-30W|||168|| -CWQH|71|611|Lennoxville||Canada|4|45-22N|071-49W|||181|| -CWQJ|--|---|Sedco 710||Canada|4|46-30N|048-30W|||0|| -CWQK|71|778|Race Rocks Automatic Weather Reporting System ||Canada|4|48-18N|123-32W|||5|| -CWQL|71|243|Lethbridge Automated Reporting Station ||Canada|4|49-42N|112-47W|||921|| -CWQM|71|186|Cap Rouge||Canada|4|48-23N|070-32W|||7|| -CWQO|71|385|Ile Bicquette, Que.||Canada|4|48-24-56N|068-53-36W|||7|| -CWQP|71|430|Point Petre , Ont.||Canada|4|43-50N|077-09W|||79|79|P -CWQQ|71|242|Lacombe Cda||Canada|4|52-27N|113-45W|||874|| -CWQR|71|375|Ile Aux Perroquets, Que.||Canada|4|50-13-25N|064-12-30W|||9|| -CWQS|71|472|Kindakun Rocks, B. C.||Canada|4|53-19N|132-45W|||14|14|P -CWQV|71|189|Puinte Claveau||Canada|4|48-16N|070-07W|||0|| -CWQW|71|374|Cape Whittle||Canada|4|50-10N|060-04W|||7|| -CWQY|71|963|Hanbury River Automated Reporting Station ||Canada|4|63-35N|105-09W|||317|| -CWQZ|--|---|Quesnel Automatic Weather Reporting System ||Canada|4|53-02N|122-32W|||545|| -CWRA|71|800|Cape Race, Nfld||Canada|4|46-39N|053-04W|||27|28|P -CWRD|71|246|Red Earth||Canada|4|56-32N|115-16W|||546|| -CWRF|71|918|Pelly Bay 1||Canada|4|69-26N|089-44W|||325|| -CWRH|71|972|Resolution Island, N. W. T.||Canada|4|61-35N|64-39W|||369|| -CWRJ|71|510|Rosetown East, Sask||Canada|4|51-34N|107-55W|||586||P -CWRK|--|---|Bancroft Automatic Weather Reporting System||Canada|4|45-04N|077-52W|||331|| -CWRM|--|---|Rocky House Marine Aviation Reporting Station ||Canada|4|52-26N|114-56W|||988|| -CWRN|71|419|Hart Island Meteorological Aeronautical Presentation System ||Canada|4|45-21N|060-59W|||4|| -CWRO|71|477|Rose Spit Meteorological Aeronautical Presentation System ||Canada|4|54-10N|131-40W|||7|| -CWRP|71|956|Nicholson Peninsul ||Canada|4|69-56N|128-58W|||89|| -CWRQ|--|---|Trois Rivieres||Canada|4|46-23N|072-37W|||11|| -CWRT|71|236|Crowsnest||Canada|4|49-38N|114-29W|||1303|| -CWRU|71|479|Solander Island Meteorological Aeronautical Presentation System ||Canada|4|50-07N|127-56W|||99|| -CWRV|71|254|Camrose||Canada|4|53-02N|112-49W|||739|| -CWRW|71|416|Fourchu Head Meteorological Aeronautical Presentation System ||Canada|4|45-43N|060-14W|||10|| -CWRX|--|---|Rowley Island, N. W. T.||Canada|4|69-04N|079-04W|||41|| -CWRY|71|244|Milk River||Canada|4|49-08N|112-03W|||1050|| -CWRZ|71|429|Cap D'Espoir , Que.||Canada|4|48-25N|064-19W|||16|| -CWSA|71|600|Sable Island, N. S.||Canada|4|43-56N|060-01W|43-56N|060-01W|4|4|P -CWSD|--|---|Summerside Automatic Weather Reporting System ||Canada|4|46-26N|063-51W|||24|| -CWSE|71|119|Edmonton Stony Plain Alta.||Canada|4|53-32N|114-06W|53-33N|114-06W|766|766|P -CWSF|71|425|Cap Madeleine Meteorological Aeronautical Presentation System ||Canada|4|49-15N|065-20W|||29|| -CWSG|71|428|Cap Chat CS, Que.||Canada|4|49-07N|066-39W|||5|| -CWSH|71|247|Sousa Crk Avt ||Canada|4|58-35N|118-30W|||373|| -CWSI|71|527|Simcoe, Ont.||Canada|4|42-51N|080-16W|||241||P -CWSK|71|207|Squamish Airport, B. C||Canada|4|49-47N|123-10W|||59|52|P -CWSL|71|218|Salmon Arm Automatic Weather Reporting System ||Canada||50-42N|119-17W|||351|| -CWSO|--|---|Exeter Radar Site||Canada|4|43-22N|081-23W||||| -CWSP|71|780|Sheringham Automatic Weather Reporting System ||Canada|4|48-23N|123-55W|||21|| -CWSQ|71|974|Aulvik National Park||Canada|4|74-08N|119-59W|||32|| -CWSR|71|133|Spiritwood West, Sask||Canada|4|53-22N|107-33W|||584|590|P -CWSS|71|607|St. Stephen, N. B.||Canada|4|45-13N|067-15W|||26||P -CWST|71|713|La Pocatiere||Canada|4|47-21N|070-02W|||31|| -CWSV|--|---|Blue River Marine Aviation Reporting Station ||Canada|4|52-06N|119-18W|||683|| -CWSW|--|---|Sparwood / Elk Valley||Canada|4|49-45N|114-53W|||1138|| -CWSY|71|051|Sachs Harbour, N. W. T.||Canada|4|72-00N|125-16W|72-00N|125-16W|88|88|P -CWSZ|71|442|Fisher Branch Marine Aviation Reporting Station ||Canada|4|51-05N|097-33W|||253|| -CWTA|71|612|Mc Tavish Automated Reporting Station ||Canada|4|45-30N|073-35W|||63|| -CWTB|71|901|Border, Que.||Canada|4|55-20N|063-13W|||479|479|P -CWTC|71|102|Ethelda Bay||Canada|4|53-03N|129-41W|||10|| -CWTD|71|490|Robertson Lake Automated Reporting Station ||Canada|4|65-06N|102-26W|||244|| -CWTE|71|166|Trout Lake||Canada|4|60-26N|121-14W|||498|| -CWTF|71|134|Beartooth Island||Canada|4|59-13N|109-42W|||238|| -CWTG|71|427|Pointe-Des-Monts , Que.||Canada|4|49-19N|067-23W|||5|| -CWTH|--|---|Tetsa River||Canada|4|58-39N|124-14W|||804|| -CWTI|--|---|Triple Island Light, B. C.||Canada|4|54-18N|130-53W|||21|| -CWTN|71|384|Cap Tourmente||Canada|4|47-04N|070-48W|||6|| -CWTO|71|638|Toronto Aes Hq ||Canada|4|43-47N|079-28W|43-47N|079-28W|187|187| -CWTU|--|---|Tukialik Bay, Nfld.||Canada|4|54-43N|058-21W|||683|| -CWTY|71|724|Trois Rivieres||Canada|4|46-21N|072-31W|||6|| -CWTZ|--|---|Toronto Island||Canada|4|43-38N|079-25W|||77|| -CWUL|--|---|Quebec Fcst Office||Canada|4|45-30N|073-41W||||| -CWUM|71|949|Faro, Y. T.||Canada|4|62-14N|133-21W|||717|717|P -CWUP|71|093|Cape Hooper, N. W. T.||Canada|4|68-28N|066-48W|||401|390|P -CWUR|71|398|Truro, N. S.||Canada|4|45-22N|063-16W|||40||P -CWUS|71|768|Summerland Automatic Weather Reporting System ||Canada|4|49-34N|119-39W|||454|| -CWUT|71|150|Shoal Lake Airport Automated Reporting Station ||Canada|4|50-27N|100-36W|||561|| -CWUU|71|080|Mackar Inlet||Canada|4|68-18N|085-40W|||395|| -CWUW|71|092|Dewar Lakes, N. W. T.||Canada|4|68-39N|071-10W|||518|527|P -CWUX|71|388|La Baie , Que.||Canada|4|48-18N|70-56W|||135|| -CWUY|71|734|Rouyn||Canada|4|48-15N|079-02W|||318|| -CWVA|71|196|Bonavista, Nfld.||Canada|4|48-40N|053-07W|||25|27|P -CWVB|71|484|Bonilla Island Light||Canada|4|53-30N|130-38W|||16|| -CWVC|71|446|Swift Current Automatic Weather Reporting System ||Canada|4|50-16N|107-44W|||825|| -CWVD|71|096|Broughton Island||Canada|4|67-32N|063-47W|||584|| -CWVE|--|---|Valleyfield||Canada|4|45-14N|074-06W|||46|| -CWVF|--|---|Sand Heads CS, B. C.||Canada|4|49-06N|123-18W|||13|| -CWVH|71|052|Storm Hills , N. W. T.||Canada|4|68-54N|133-56W|||261|| -CWVI|71|458|Vegreville Automatic Weather Reporting System ||Canada|4|53-37N|112-02W|||639|| -CWVK|71|115|Vernon, B. C.||Canada|4|50-14N|119-17W|||555|556|P -CWVN|71|137|Val Marie Southeast, Sask||Canada|4|49-04N|107-35W|||785|785|P -CWVO|71|251|Vauxhall Cda||Canada|4|50-03N|112-08W|||779|| -CWVP|71|139|Cypress Hills Park||Canada|4|49-39N|109-31W|||1271|| -CWVQ|71|377|Ste Anne De Bell 1||Canada|4|45-26N|073-56W|||39|| -CWVT|71|077|Buffalo Narrows, Sask.||Canada|4|55-50N|108-26W|||434|434|P -CWVU|71|988|Brier Island, N. S.||Canada|4|44-17-09N|066-20-48W|||16|| -CWVV|--|---|Vic. Hartland Automatic Weather Reporting System||Canada|4|48-32N|123-28W|||154|| -CWVY|71|616|Villeroy Radar Site||Canada|4|46-26N|071-56W|||108|| -CWVZ|--|---|Ile Charron, Que.||Canada|4|45-35N|073-30W|||12|| -CWWA|71|784|W Vancouver Automatic Weather Reporting System ||Canada|4|49-21N|123-11W|||178|| -CWWB|71|437|Burlington Piers ||Canada|4|43-18N|079-48W|||77|| -CWWC|71|075|Collins Bay Automatic Weather Reporting System ||Canada|4|58-11N|103-42W|||492|| -CWWE|71|411|Western Head, N. S.||Canada|4|43-59N|064-40W|||9||P -CWWF|71|452|Weyburn Automatic Weather Reporting System ||Canada|4|49-42N|103-48W|||589|| -CWWK|71|785|White Rock Automatic Weather Reporting System ||Canada|4|49-01N|122-47W|||15|| -CWWL|71|484|Bonilla Island Meteorological Aeronautical Presentation System ||Canada|4|53-30N|130-38W|||17|| -CWWM|--|---|Grant Automatic Weather Reporting System ||Canada|4|82-30N|065-05W|||1242|| -CWWN|71|434|Peawanuck Meteorological Aeronautical Presentation System ||Canada|4|54-59N|085-26W|||52|| -CWWO|71|252|Willow Creek||Canada|4|53-23N|118-20W|||1402|| -CWWP|71|444|Wasagaming, Man.||Canada|4|50-39N|099-56W|||626|627|P -CWWQ|71|945|Muncho Lake||Canada|4|58-55N|125-46W|||835|| -CWWS|71|445|George Island Meteorological Aeronautical Presentation System ||Canada|4|52-48N|097-37W|||223|| -CWWU|--|---|Ingenika Point||Canada|4|56-48N|124-54W|||680|| -CWWV|71|098|Killinek Meteorological Aeronautical Presentation System ||Canada|4|60-25N|064-51W|||31|| -CWWX|71|439|Cove Island Meteorological Aeronautical Presentation System ||Canada|4|45-20N|081-44W|||181|| -CWWZ|71|432|Port Weller, Ont.||Canada|4|43-15N|079-13W|||79||P -CWXA|71|232|Bow Valley||Canada|4|51-05N|115-04W|||1298|| -CWXC|71|387|Onatchiway, Que.||Canada|4|48-53N|071-02W|||304|| -CWXH|71|562|Holberg, B. C.||Canada|4|50-38N|128-07W|||568|| -CWXI|--|---|Ferolle Point Meteorological Aeronautical Presentation System ||Canada|4|51-01N|057-06W|||8|| -CWXJ|--|---|Bull Arm Automatic Weather Reporting System||Canada|4|47-49N|053-54W|||119|| -CWXL|71|231|Bow Island||Canada|4|49-38N|111-27W|||838|| -CWXM|71|481|Helmcken Island Meteorological Aeronautical Presentation System ||Canada|4|50-24N|125-52W|||19|| -CWXO|--|---|Rowan Gorilla Iii||Canada|4|43-53N|060-33W|||44|| -CWXP|71|826|Pangnirtung||Canada|4|66-09N|065-44W|||23|| -CWXR|--|---|Croker River, N. W. T.||Canada|4|69-16N|119-13W|||69|| -CWXV|71|498|Back River Meteorological Aeronautical Presentation System ||Canada|4|66-05N|096-30W|||28|| -CWXW|71|183|Alexis River Meteorological Aeronautical Presentation System ||Canada|4|52-39N|056-52W|||43|| -CWYB|--|---|N. Bay Weather Office||Canada|4|46-19N|079-27W||||| -CWYE|71|551|Outlook Pfra||Canada|4|51-29N|107-03W|||541|| -CWYG|--|---|Charlottetown||Canada|4|46-14N|063-08W|||50|| -CWYH|71|165|Rae Lakes||Canada|4|64-07N|117-22W|||231|| -CWYJ|71|783|Victoria University||Canada||48-27N|123-18W|||60|| -CWYK|71|177|Cape Kiglapait, Nfld.||Canada|4|57-08N|061-29W|||834|| -CWYL|71|786|Yoho Park Automatic Weather Reporting System ||Canada||51-27N|116-20W|||1615|| -CWYM|71|975|Cape Mercy||Canada|4|64-57N|063-35W|||583|| -CWYO|71|865|Wynyard, Sask.||Canada|4|51-46N|104-12W|||561|561|P -CWYY|71|215|Osoyoos Automatic Weather Reporting System ||Canada||49-02N|119-26W|||283|| -CWZA|71|113|Agassiz Automated Reporting Station ||Canada||49-15N|121-46W|||15|| -CWZB|71|197|Port-Aux-Basques, Nfld.||Canada|4|47-34N|059-10W|47-34N|059-10W|40|40|P -CWZD|--|---|Scudder Point Meteorological Aeronautical Presentation System ||Canada|4|52-27N|131-14W|||5|| -CWZG|--|---|Banff Marine Aviation Reporting Station ||Canada|4|51-12N|115-33W|||1397|| -CWZL|--|---|Cumshewa Island Meteorological Aeronautical Presentation System ||Canada|4|53-02N|131-36W|||17|| -CWZM|--|---|Boat Bluff Light||Canada|4|52-39N|128-31W|||11|| -CWZN|71|408|Sagona Island Meteorological Aeronautical Presentation System ||Canada|4|47-22N|055-48W|||35|| -CWZO|--|---|Kelp Reefs, B. C.||Canada|4|48-33N|123-14W|||0|| -CWZQ|71|597|Grand Etang, N. S.||Canada|4|46-33N|061-03W|||13|| -CWZS|71|386|Amqui , Que.||Canada|4|48-28N|067-26W|||166|| -CWZT|71|550|Dauphin Coastal Station||Canada|4|51-06N|100-03W|||305|| -CWZV|71|048|Virginia Falls||Canada|4|61-38N|125-48W|||610|| -CWZW|--|---|Teslin Marine Aviation Reporting Station ||Canada|4|60-10N|132-46W|||705|| -CWZZ|71|804|Saglek Bay ||Canada|4|58-20N|062-35W|||483|| -CXBK|71|569|Bratts Lake, Sask.||Canada|4|50-12N|104-42W|||580|| -CXBO|71|578|Beauport CS, Que.||Canada|4|46-50N|071-12W|||10|| -CXBP|--|---|Confederation Bridge, Prince Edward Island ||Canada|4|46-14N|063-44W|||54|| -CXCH|--|---|Cheticamp, N. S.||Canada|4|46-39N|060-57W|||44|| -CXCK|71|039|Carmacks CS, Y. T.||Canada|4|62-07N|136-11W|||632|| -CXDE|71|503|Deline , N. W. T.||Canada|4|65-13N|123-26W|||213|| -CXDI|71|573|Delhi CS, Ont.||Canada|4|42-52N|080-33W|||232|| -CXDW|71|840|Deerwood RCS , Man.||Canada|4|49-24N|098-19W|||341|| -CXEC|71|157|Edmonton Municipal CR10 , Alta.||Canada|4|53-34N|113-31W|||671|| -CXEG|71|155|Edmonton International CS , Alta.||Canada|4|53-18N|113-36W|||715|| -CXGH|71|577|Gimli Harbour CS, Man.||Canada|4|50-37-52N|096-58-56W|||217|| -CXHF|71|391|High Falls , Que.||Canada|4|45-50N|075-39W|||190|| -CXKT|71|605|Kentville , N. S.||Canada|4|45-04N|064-29W|||49|| -CXLC|71|680|Lower Carp Lake , N. W. T.||Canada|4|63-36N|113-52W|||373|| -CXLL|71|682|Lindberg Landing , N. W. T.||Canada|4|61-07N|122-51W|||183|| -CXMD|71|564|Morden CDA CS , Man.||Canada|4|49-11N|098-05W|||298|| -CXMI|--|---|McNabs Island , N. S.||Canada|4|44-36N|063-32W|||15|| -CXMM|71|585|Fort McMurray CS, Alta.||Canada|4|56-39N|111-13W|||369|| -CXMY|--|---|Malay Falls , N. S.||Canada|4|44-59N|062-29W|||40|| -CXNM|71|604|North Mountain , N. S.||Canada|4|46-49N|060-40W|||439|| -CXOX|71|586|La Ronge , Sask.||Canada|4|55-09N|105-16W|||378|| -CXPV|71|593|Prairie River, Alta||Canada|4|58-37-20N|111-40-21W|||212|| -CXQA|71|583|Qavvik Lake, N. W. T.||Canada|4|68-15-28N|122-06-13W|||530|| -CXRH|71|588|Rocky Harbour CS, Nfld.||Canada|4|49-34N|057-53W|||68|| -CXSH|71|370|Shawinigan CS , Que.||Canada|4|46-35N|072-35W|||110|| -CXSR|71|571|Spirit River Auto Station, Alta||Canada|4|55-41-43N|119-14-03W|||1015|| -CXSW|71|587|St. John's West CDA CS, Nfld.||Canada|4|47-30-56N|052-47-05W|||114|| -CXTN|71|492|Tuktut Nogait , N. W. T.||Canada|4|69-11N|122-21W|||552|| -CXTP|71|589|Terra Nova National Park CS, Nfld.||Canada|4|48-33-25N|053-58-28W|||107|| -CXTV|71|683|Trail Valley , N. W. T.||Canada|4|68-45N|133-30W|||85|| -CXWN|71|579|Winnipeg The Forks, Man.||Canada|4|49-53N|097-08W|||230|| -CXXX|71|073|Cluff Lake , Sask.||Canada|4|58-23N|109-30W|||339|| -CXZU|71|256|Whitecourt , Alta.||Canada|4|54-09N|115-47W|||785|| -CYAD|--|---|La Grande Iii Supplementary Aviation Weather Reporting Station ||Canada|4|53-34N|076-12W|||233|| -CYAH|71|823|La Grande Iv, Que.||Canada|4|53-45N|073-40W|53-45N|073-40W|306|307|P -CYAJ|71|969|Komakuk Beach Airport||Canada|4|69-35N|140-11W|||7|| -CYAM|71|260|Sault Ste Marie, Ont.||Canada|4|46-29N|084-30W|||187|192|P -CYAS|--|---|Kangirsuk Supplementary Aviation Weather Reporting Station ||Canada|4|60-01N|070-00W|||117|| -CYAW|71|601|Shearwater, N. S.||Canada|4|44-38N|063-30W|44-38N|063-30W|51|51|P -CYAY|--|---|Saint Anthony Airport||Canada|4|51-24N|056-05W|||28|| -CYAZ|71|106|Tofino Airport||Canada|4|49-05N|125-46W|||24|| -CYBB|--|---|Pelly Bay Airport||Canada|4|68-32N|089-49W|||15|| -CYBC|71|187|Baie Comeau, Que.||Canada|4|49-08N|068-12W|||21|22|P -CYBD|71|206|Bella Coola Airport ||Canada|4|52-23N|126-35W|||35|| -CYBG|71|727|Bagotville, Que.||Canada|4|48-20N|071-00W|48-20N|071-00W|159|159|P -CYBK|71|926|Baker Lake, N. W. T.||Canada|4|64-18N|096-05W|64-18N|096-00W|18|18|P -CYBL|--|---|Campbell River Airport||Canada|4|49-57N|125-16W|||106|| -CYBN|--|---|Borden, Ont.||Canada|4|44-15N|079-55W|||223|| -CYBR|71|140|Brandon, Man.||Canada|4|49-55N|099-57W|||409|409|P -CYBU|71|130|Nipawin, Sask.||Canada|4|53-20N|104-00W|||372|372|P -CYBV|71|859|Berens River Airport||Canada|4|52-21N|097-02W|||222|| -CYBW|--|---|Calgary / Springbank||Canada|4|51-06N|114-22W|||1200|| -CYBX|71|808|Blanc Sablon, Que.||Canada|4|51-27N|057-11W|||30|36|P -CYCA|--|---|Cartwright Man ||Canada|4|53-41N|057-02W|||12|| -CYCB|71|925|Cambridge Bay, N. W. T.||Canada|4|69-06N|105-07W|69-08N|105-04W|23|27|P -CYCD|71|890|Nanaimo Airport||Canada|4|49-03N|123-52W|||28|| -CYCG|71|884|Castlegar Airport||Canada|4|49-18N|117-38W|49-18N|117-38W|495|495| -CYCH|71|717|Chatham Can-Mil ||Canada|4|47-00N|065-27W|47-01N|065-27W|31|34| -CYCL|71|711|Charlo, N. B.||Canada|4|47-59N|066-20W|||38|38|P -CYCO|71|938|Coppermine, N. W. T.||Canada|4|67-49N|115-08W|67-50N|115-07W|22|22|P -CYCP|71|883|Blue River, B. C.||Canada|4|52-08N|119-18W|||679|683|P -CYCQ|--|---|Chetwynd Airport||Canada|4|55-42N|121-38W|||609|| -CYCS|--|---|Chesterfield Inlet||Canada|4|63-20N|090-43W|||11|| -CYCT|71|873|Coronation Marine Aviation Reporting Station ||Canada|4|52-04N|111-27W|||791|| -CYCX|71|701|Gagetown Can-Mil ||Canada|4|45-50N|066-26W|45-50N|066-26W|51|51| -CYCY|71|090|Clyde, N. W. T.||Canada|4|70-29N|068-31W|70-27N|068-33W|25|26|P -CYDA|71|966|Dawson, Y. T.||Canada|4|64-03N|139-08W|||370|370|P -CYDB|--|---|Burwash Airport||Canada|4|61-22N|139-02W|||807|| -CYDC|71|886|Princeton Airport ||Canada|4|49-28N|120-31W|||700|| -CYDF|71|809|Deer Lake, Nfld.||Canada|4|49-13N|057-24W|||17|22|P -CYDM|--|---|Ross River Airport||Canada|4|61-58N|132-26W|||705|| -CYDN|71|855|Dauphin, Man.||Canada|4|51-06N|100-03W|51-06N|100-03W|305|305|P -CYDP|71|902|Nain, Nfld||Canada|4|56-33N|061-41W|||6|7|P -CYDQ|--|---|Dawson Creek Airport ||Canada|4|55-45N|120-11W|||655|| -CYED|71|121|Edmonton Namao Alta.||Canada|4|53-40N|113-28W|53-40N|113-28W|688|688|P -CYEG|71|123|Edmonton International, Alta.||Canada|4|53-18N|113-35W|53-19N|113-35W|715|723|P -CYEK|--|---|Arviat Airport||Canada|4|61-06N|094-04W|||10|| -CYEL|--|---|Elliot Lake Supplementary Aviation Weather Reporting Station ||Canada|4|46-21N|082-34W|||329|| -CYEN|71|862|Estevan, Sask.||Canada|4|49-13N|102-58W|||572|581|P -CYET|71|881|Edson, Alta.||Canada|4|53-35N|116-28W|||921|927|P -CYEU|--|---|Eureka Man ||Canada|4|80-00N|085-49W|||78|| -CYEV|71|957|Inuvik, N. W. T.||Canada|4|68-18N|133-29W|68-19N|133-32W|59|68|P -CYFB|71|909|Iqaluit, N. W. T.||Canada|4|63-45N|068-33W|63-45N|068-33W|34|34|P -CYFC|71|700|Fredericton, N. B.||Canada|4|45-52N|066-32W|||17|20|P -CYFO|--|---|Flin Flon Airport||Canada|4|54-41N|101-41W|||304|| -CYFR|--|---|Fort Resolution||Canada|4|61-11N|113-41W|||164|| -CYFS|71|946|Fort Simpson, N. W. T.||Canada|4|61-45N|121-14W|||168|169|P -CYFT|--|---|Makkovik Airport||Canada|4|55-05N|059-11W|||71|| -CYGE|--|---|Golden Airport||Canada|4|51-18N|116-59W|||785|| -CYGH|--|---|Fort Good Hope Airport||Canada|4|66-16N|128-37W|||60|| -CYGK|71|620|Kingston, Ont.||Canada|4|44-13N|076-36W|||93|93|P -CYGL|71|827|La Grande Riviere, Que||Canada|4|53-38N|077-42W|||195|195|P -CYGM|71|856|Gimli Industrial, Man||Canada|4|50-37N|097-02W|||230|232|P -CYGP|71|188|Gaspe, Que.||Canada|4|48-46N|064-29W|||33|33|P -CYGQ|71|834|Geraldton, Ont.||Canada|4|49-47N|086-56W|49-42N|086-57W|349|349|P -CYGR|71|709|Iles De La Madeleineque.||Canada|4|47-25N|061-47W|||10|10|P -CYGT|--|---|Igloolik Airport||Canada|4|69-22N|081-49W|||51|| -CYGV|71|313|Havre St Pierre ||Canada|4|50-17N|063-37W|||33|| -CYGW|71|905|Kuujjuarapik, Que.||Canada|4|55-17N|077-46W|||21|10|P -CYGX|71|912|Gillam, Man.||Canada|4|56-21N|094-42W|||145|145|P -CYHA|71|904|Quaqtaq Airport||Canada|4|61-03N|069-38W|||30|| -CYHB|71|868|Hudson Bay, Sask.||Canada|4|52-49N|102-19W|||357|358|P -CYHD|--|---|Dryden Airport||Canada|4|49-50N|092-45W|||413|| -CYHE|71|114|Hope, B. C.||Canada|4|49-22N|121-29W|||39|39|P -CYHH|--|---|Nemiscau Airport Supplementary Aviation Weather Reporting Station ||Canada|4|51-42N|076-07W|||244|| -CYHI|--|---|Holman Island Airport||Canada|4|70-46N|117-48W|||36|| -CYHK|--|---|Gjoa Haven Airport||Canada|4|68-38N|095-51W|||46|| -CYHM|71|263|Hamilton Airport ||Canada|4|43-10N|079-56W|||237|| -CYHU|71|371|Saint Hubert Airport ||Canada|4|45-31N|073-25W|||27|| -CYHY|71|935|Hay River, N. W. T.||Canada|4|60-50N|115-47W|||164|166|P -CYHZ|71|395|Halifax International Airport ||Canada|4|44-53N|063-30W|||145|| -CYID|--|---|Digby Airport Aviation Weather Reporting Station ||Canada|4|44-33N|065-47W|||152|| -CYIK|--|---|Ivujivik Airport Supplementary Aviation Weather Reporting Station ||Canada|4|62-25N|077-57W|||42|| -CYIO|71|095|Pond Inlet, N. W. T.||Canada|4|72-42N|077-58W|||59|55|P -CYIV|71|145|Island Lake, Man.||Canada|4|53-51N|094-39W|53-52N|094-40W|237|237|P -CYJF|--|---|Fort Liard Airport||Canada|4|60-14N|123-29W|||215|| -CYJT|71|815|Stephenville, Nfld.||Canada|4|48-32N|058-33W|48-32N|058-33W|8|26|P -CYKA|71|887|Kamloops, B. C.||Canada|4|50-42N|120-27W|||345|346|P -CYKD|--|---|Aklavik Airport||Canada|4|68-13N|135-00W|||7|| -CYKF|71|368|Waterloo Well ||Canada|4|43-28N|080-23W|||317|| -CYKG|--|---|Kangiqsujuaq Supplementary Aviation Weather Reporting Station ||Canada|4|61-35N|071-56W|||151|| -CYKJ|71|488|Key Lake||Canada|4|57-15N|105-37W|||509|| -CYKL|71|828|Schefferville, Que.||Canada|4|54-48N|066-48W|54-48N|066-49W|521|518|P -CYKO|--|---|Akulivik Airport||Canada|4|60-49N|078-09W|||20|| -CYKQ|--|---|Waskaganish Airport||Canada|4|51-29N|078-45W|||23|| -CYKY|71|129|Kindersley, Sask.||Canada|4|51-31N|109-10W|51-31N|109-11W|694|694|P -CYKZ|--|---|Toronto Buttonville||Canada|4|43-52N|079-22W|||198|| -CYLA|--|---|Aupaluk, Que.||Canada|4|59-17-48N|069-35-59W|||35|| -CYLC|--|---|Kimmirut A Nwt||Canada|4|62-51N|069-53W|||53|| -CYLD|--|---|Chapleau, Ont.||Canada|4|47-49N|083-21W|||447|| -CYLJ|71|125|Meadow Lake, Sask.||Canada|4|54-08N|108-31W|||480|480|P -CYLK|--|---|Lutsel KE, N. W. T.||Canada|4|62-25N|110-40W|||179|| -CYLL|71|871|Lloydminister, Alta.||Canada|4|53-19N|110-04W|||665|669|P -CYLT|--|---|Alert Airport||Canada|4|82-31N|062-17W|||31|| -CYLU|--|---|Kangiksualujjuaq A||Canada|4|58-43N|065-59W|||60|| -CYLW|71|203|Kelowna Airport||Canada|4|49-58N|119-23W|49-58N|119-23W|430|430| -CYMA|71|965|Mayo Airport||Canada|4|63-37N|135-52W|||504|| -CYMD|71|072|Mould Bay, N. W. T.||Canada|4|76-14N|119-20W|76-15N|119-21W|15|12|P -CYMH|--|---|Mary's Harbour ||Canada|4|52-18N|055-51W|||11|| -CYMJ|71|864|Moose Jaw, Sask.||Canada|4|50-20N|105-33W|||577|577|P -CYML|--|---|Charlevoix Airport||Canada|4|47-36N|070-14W|||298|| -CYMM|71|932|Fort Mcmurray, Alta.||Canada|4|56-39N|111-13W|56-39N|111-13W|369|369|P -CYMO|71|836|Moosonee, Ont.||Canada|4|51-16N|080-39W|51-16N|080-39W|10|10|P -CYMT|71|822|Chibougamau-Chapais, Que||Canada|4|49-46N|074-32W|||388|387|P -CYMU|--|---|Umiujaq||Canada|4|56-32N|076-31W|||71|| -CYMX|--|---|Montreal / Mirabel||Canada|4|45-41N|074-02W|||82|| -CYNA|71|813|Natashquan, Que.||Canada|4|50-11N|061-49W|||7|11|P -CYNC|--|---|Aeroport de Wemindji, Que.||Canada|4|53-00-39N|078-49-49W|||15|| -CYND|--|---|Gatineau Airport||Canada|4|45-31N|075-34W|||64|| -CYNE|71|141|Norway House, Man.||Canada|4|53-58N|097-50W|||223|223|P -CYNM|71|821|Matagami, Que.||Canada|4|49-46N|077-49W|||281|281|P -CYOA|--|---|Ekati, N. W. T.||Canada|4|64-42N|110-37W|||469|| -CYOC|--|---|Old Crow Airport||Canada|4|67-34N|139-49W|||251|| -CYOD|71|120|Cold Lake, Alta.||Canada|4|54-25N|110-17W|54-25N|110-17W|541|541|P -CYOJ|71|066|High Level, Alta||Canada|4|58-37N|117-10W|||338|338|P -CYOW|71|628|Ottawa Int'L. Ont.||Canada|4|45-19N|075-40W|45-19N|075-40W|116|114|P -CYOY|71|716|Valcartier Airport||Canada|4|46-54N|071-30W|46-54N|071-29W|168|178| -CYPA|71|869|Prince Albert, Sask.||Canada|4|53-13N|105-41W|53-13N|105-41W|428|428|P -CYPC|--|---|Paulatuk Airport||Canada|4|69-21N|124-02W|||6|| -CYPD|--|---|Port Hawkesbury||Canada|4|45-40N|061-23W|||114|| -CYPE|71|068|Peace River, Alta.||Canada|4|56-14N|117-26W|||571|571|P -CYPG|71|851|Portage Southport A||Canada|4|49-54N|098-16W||098-16W|269|259| -CYPH|--|---|Inukjuak Airport Supplementary Aviation Weather Reporting Station ||Canada|4|58-28N|078-05W|||25|| -CYPL|--|---|Pickle Lake Man ||Canada|4|51-27N|090-12W|||386|| -CYPN|--|---|Port Menier Man ||Canada|4|49-50N|064-17W|||51|| -CYPQ|71|629|Peterborough Airport ||Canada|4|44-14N|078-22W|||191|| -CYPR|71|898|Prince Rupert, B. C.||Canada|4|54-18N|130-26W|||34|34|P -CYPW|71|208|Powell River Airport ||Canada|4|49-50N|124-30W|||130|| -CYPX|--|---|Povungnituq||Canada|4|60-03N|077-17W|||23|| -CYPY|71|933|Fort Chipewyan, Alta.||Canada|4|58-46N|111-07W|||232|232|P -CYPZ|71|952|Burns Lake ||Canada|4|54-23N|125-57W|||713|| -CYQA|71|630|Muskoka, Ont.||Canada|4|44-58N|079-18W|||280|282|P -CYQB|71|714|Quebec, Que||Canada|4|46-48N|071-23W|46-48N|071-23W|70|74|P -CYQD|71|867|The Pas, Man.||Canada|4|53-58N|101-06W|53-58N|101-06W|271|271|P -CYQF|71|878|Red Deer, Alta.||Canada|4|52-11N|113-54W|52-11N|113-54W|905|905|P -CYQG|71|538|Windsor, Ont.||Canada|4|42-16N|082-58W|||190|190|P -CYQH|71|953|Watson Lake, Y. T.||Canada|4|60-07N|128-49W|60-07N|128-49W|690|690|P -CYQI|71|603|Yarmouth, N. S.||Canada|4|43-50N|066-05W|43-52N|066-06W|43|43|P -CYQK|71|850|Kenora, Ont.||Canada|4|49-47N|094-22W|||407|410|P -CYQL|71|874|Lethbridge, Alta.||Canada|4|49-38N|112-48W|49-38N|112-48W|929|929|P -CYQM|71|705|Moncton, N. B.||Canada|4|46-07N|064-41W|||71|71|P -CYQQ|71|893|Comox, B. C.||Canada|4|49-43N|124-54W|49-43N|124-54W|24|24|P -CYQR|71|863|Regina, Sask.||Canada|4|50-26N|104-40W|50-26N|104-40W|577|577|P -CYQT|71|749|Thunder Bay, Ont.||Canada|4|48-22N|089-19W|||199|199|P -CYQU|71|940|Grande Prairie, Alta.||Canada|4|55-11N|118-53W|||666|669|P -CYQV|71|138|Yorkton, Sask.||Canada|4|51-16N|102-28W|||498|498|P -CYQW|71|876|North Battleford, Sask.||Canada|4|52-46N|108-15W|||548|548|P -CYQX|71|803|Gander Int. Airport, Nfld.||Canada|4|48-57N|054-34W|48-57N|054-34W|151|151|P -CYQY|71|707|Sydney, N. S.||Canada|4|46-10N|060-03W|46-10N|060-03W|56|62|P -CYQZ|71|103|Quesnel Airport||Canada|4|53-02N|122-31W|||545|| -CYRB|71|924|Resolute, N. W. T.||Canada|4|74-43N|094-59W|74-42N|094-58W|67|67|P -CYRJ|71|728|Roberval, Que.||Canada|4|48-31N|072-16W|||179|179|P -CYRL|71|854|Red Lake, Ont.||Canada|4|51-04N|093-48W|||375|383|P -CYRM|71|928|Rocky Mountain House, Alta||Canada|4|52-26N|114-55W|52-23N|114-55W|988|988|P -CYRT|71|083|Rankin Inlet, N. W. T.||Canada|4|62-49N|092-07W|||31|31|P -CYRV|71|882|Revelstoke, B. C.||Canada|4|50-58N|118-11W|||443|443|P -CYSA|--|---|Sable Island Airport ||Canada|4|43-56N|060-00W|||4|| -CYSB|71|730|Sudbury, Ont.||Canada|4|46-37N|080-48W|||348|348|P -CYSC|71|610|Sherbrooke, Que.||Canada|4|45-24N|071-53W|||170||P -CYSD|71|128|Suffield Airport||Canada|4|50-16N|111-11W|||770|| -CYSF|71|132|Stony Rapids Airport||Canada|4|59-15N|105-50W|||250|| -CYSJ|71|609|Saint John, N. B.||Canada|4|45-20N|065-53W|||103|109|P -CYSK|--|---|Sanikiluaq Airport||Canada|4|56-32N|079-15W|||32|| -CYSL|71|703|Saint Leonard Airport ||Canada|4|47-09N|067-50W|||241|| -CYSM|71|934|Fort Smith, N. W. T.||Canada|4|60-01N|111-57W|60-02N|111-56W|203|205|P -CYSN|--|---|Saint Catharines Airport||Canada|4|43-12N|079-10W|||98|| -CYSR|--|---|Nanisivik Airport ||Canada|4|72-59N|084-38W|||649|| -CYSU|71|702|Summerside Can-Mil ||Canada|4|46-26N|063-50W|46-26N|063-50W|24|24| -CYSY|--|---|Sachs Harbour Airport||Canada|4|72-00N|125-17W|||86|| -CYTE|71|910|Cape Dorset, N. W. T.||Canada|4|64-13N|076-32W|||51|50|P -CYTH|71|079|Thompson Weather Office, Man||Canada|4|55-48N|097-51W|55-48N|097-52W|204|222|P -CYTJ|--|---|Terrace Bay Supplementary Aviation Weather Reporting Station ||Canada|4|48-49N|087-06W|||287|| -CYTL|71|848|Big Trout Lake||Canada|4|53-50N|089-52W|53-50N|089-52W|224|224| -CYTN|--|---|Trenton Municipal A, N. S.||Canada|4|45-36-41N|062-37-19W|||97|| -CYTQ|--|---|Tasiujaq A||Canada|4|58-40N|069-57W|||31|| -CYTR|71|621|Trenton, Ont.||Canada|4|44-07N|077-32W|44-07N|077-32W|85|86|P -CYTS|71|739|Timmins, Ont.||Canada|4|48-34N|081-22W|||295|295|P -CYTZ|71|265|Toronto Island Airport Automated Reporting Station||Canada|4|43-38N|079-24W|||77|| -CYUA|71|968|Shingle Point, Y. T.||Canada|4|68-57N|137-13W|||56|38|P -CYUB|71|954|Tuktoyaktuk ||Canada|4|69-27N|133-01W|69-27N|133-01W|5|5| -CYUI|71|939|Cape Young Airport||Canada|4|68-56N|116-55W|||16|| -CYUJ|71|937|Lady Franklin Point, N. W. T.||Canada|4|68-30N|113-13W|||21|16|P -CYUK|71|929|Byron Bay Airport||Canada|4|68-45N|109-04W|||92|| -CYUL|71|627|Montreal / Pierre Elliot Trudeau International Airport, Que||Canada|4|45-28N|073-45W|45-28N|073-45W|31|36|P -CYUQ|71|071|Jenny Lind Island Airport||Canada|4|68-39N|101-44W|||18|| -CYUS|71|911|Shepherd Bay, N. W. T.||Canada|4|68-49N|093-26W|||51|42|P -CYUT|--|---|Repulse Bay Airport||Canada|4|66-32N|086-15W|||24|| -CYUV|--|---|Longstaff Blf Airport||Canada|4|68-56N|075-17W|||14|| -CYUX|71|081|Hall Beach, N. W. T.||Canada|4|68-47N|081-15W|68-46N|081-13W|8|8|P -CYUY|--|---|Rouyn Airport||Canada|4|48-12N|078-50W|||301|| -CYVC|71|922|La Ronge, Sask||Canada|4|55-09N|105-16W|||375|379|P -CYVM|--|---|Broughton Island Airport||Canada|4|67-33N|064-02W|||6|| -CYVO|71|725|Val D'Or, Que.||Canada|4|48-04N|077-47W|||337|337|P -CYVP|71|906|Kuujjuaq, Que.||Canada|4|58-06N|068-25W|58-06N|068-25W|37|37|P -CYVQ|71|043|Norman Wells, N. W. T.||Canada|4|65-17N|126-48W|65-17N|126-45W|67|74|P -CYVR|71|892|Vancouver International Air-Port, B. C.||Canada|4|49-11N|123-10W|49-11N|123-10W|3|2|P -CYVT|--|---|Buffalo Narrows Man||Canada|4|55-50N|108-27W|||434|| -CYVV|71|633|Wiarton, Ont.||Canada|4|44-45N|081-06W|||222|222|P -CYWA|71|625|Petawawa, Ont.||Canada|4|45-57N|077-19W|45-57N|077-19W|130|130|P -CYWG|71|852|Winnipeg Int. Airportman.||Canada|4|49-54N|097-14W|49-54N|097-14W|239|239|P -CYWH|--|---|Victoria Harbour||Canada|4|48-25N|123-20W|||5|| -CYWJ|--|---|Fort Franklin Airport||Canada|4|65-12N|123-26W|||176|| -CYWK|71|825|Wabush Lake, Nfld.||Canada|4|52-56N|066-52W|||551|551|P -CYWL|71|104|Williams Lake, B. C.||Canada|4|52-11N|122-03W|||940|940|P -CYWO|--|---|Lupin Airport Supplementary Aviation Weather Reporting Station ||Canada|4|65-46N|111-15W|||494|| -CYWV|--|---|Wainwright Airport||Canada|4|52-48N|110-53W|||662|| -CYWY|--|---|Wrigley Airport||Canada|4|63-13N|123-26W|||150|| -CYXC|71|880|Cranbrook, B. C.||Canada|4|49-37N|115-47W|||939|939|P -CYXD|71|879|Edmonton Municipal Alta.||Canada|4|53-34N|113-31W|53-34N|113-31W|671|671|P -CYXE|71|866|Saskatoon, Sask.||Canada|4|52-10N|106-41W|52-10N|106-41W|501|504|P -CYXH|71|872|Medicine Hat, Alta.||Canada|4|50-01N|110-43W|||717|717|P -CYXJ|71|943|Fort St John, B. C.||Canada|4|56-14N|120-44W|||695|695|P -CYXL|71|842|Sioux Lookout, Ont.||Canada|4|50-07N|091-54W|||389|390|P -CYXN|--|---|Whale Cove Airport||Canada|4|62-14N|092-36W|||20|| -CYXP|--|---|Pangnirtung Airport||Canada|4|66-09N|065-43W|||23|| -CYXQ|--|---|Beaver Creek Airport||Canada|4|62-25N|140-52W|||649|| -CYXR|71|735|Earlton, Ont.||Canada|4|47-42N|079-51W|||243|243|P -CYXS|71|896|Prince George, B. C.||Canada|4|53-53N|122-41W|53-53N|122-40W|691|691|P -CYXT|71|951|Terrace, B. C.||Canada|4|54-28N|128-35W|||217|217|P -CYXU|71|623|London, Ont.||Canada|4|43-02N|081-09W|||278|278|P -CYXX|71|108|Abbotsford, B. C.||Canada|4|49-02N|122-22W|||54|58|P -CYXY|71|964|Whitehorse, Y. T.||Canada|4|60-43N|135-04W|60-43N|135-04W|703|703|P -CYXZ|71|738|Wawa, Ont.||Canada|4|47-58N|084-47W|||287|287|P -CYYB|71|731|North Bay, Ont.||Canada|4|46-21N|079-26W|46-22N|079-25W|358|371|P -CYYC|71|877|Calgary International, Alta.||Canada|4|51-07N|114-01W|51-07N|114-01W|1077|1084|P -CYYD|71|950|Smithers, B. C.||Canada|4|54-49N|127-11W|||523|523|P -CYYE|71|945|Fort Nelson, B. C.||Canada|4|58-50N|122-35W|58-50N|122-36W|382|382|P -CYYF|71|889|Penticton, B. C.||Canada|4|49-28N|119-36W|||344|344|P -CYYG|71|706|Charlottetown, P. E. I.||Canada|4|46-17N|063-08W|||48|54|P -CYYH|--|---|Spence Bay Airport ||Canada|4|69-33N|093-35W|||28|| -CYYJ|71|799|Victoria Int. Airport, B. C.||Canada|4|48-39N|123-26W|48-39N|123-26W|20|19|P -CYYL|71|078|Lynn Lake, Man.||Canada|4|56-52N|101-05W|56-52N|101-05W|357|357|P -CYYN|71|870|Swift Current, Sask.||Canada|4|50-17N|107-41W|||818|818|P -CYYQ|71|913|Churchill, Man.||Canada|4|58-44N|094-04W|58-44N|094-05W|28|29|P -CYYR|71|816|Goose, Nfld.||Canada|4|53-19N|060-25W|53-18N|060-22W|46|49|P -CYYT|71|801|St. John's, Nfld||Canada|4|47-37N|052-44W|47-40N|052-45W|134|140|P -CYYU|71|831|Kapuskasing, Ont.||Canada|4|49-25N|082-28W|||227|227|P -CYYW|71|841|Armstrong, Ont.||Canada|4|50-18N|089-02W|||351|351|P -CYYY|71|718|Mont Joli, Que.||Canada|4|48-36N|068-13W|||48|52|P -CYYZ|71|624|Toronto Pearson Int'L. Ont.||Canada|4|43-40N|079-38W|43-41N|079-38W|173|173|P -CYZE|71|733|Gore Bay, Ont.||Canada|4|45-53N|082-34W|||193|193|P -CYZF|71|936|Yellowknife, N. W. T.||Canada|4|62-28N|114-27W|||205|206|P -CYZG|--|---|Salliut Airport Supplementary Aviation Weather Reporting Station ||Canada|4|62-11N|075-40W|||226|| -CYZH|71|069|Slave Lake, Alta||Canada|4|55-18N|114-47W|55-18N|114-47W|581|581|P -CYZP|71|101|Sandspit, B. C.||Canada|4|53-15N|131-49W|||6|6|P -CYZR|71|634|Sarnia Airport ||Canada|4|43-00N|082-19W|||181|| -CYZS|71|915|Coral Harbour, N. W. T.||Canada|4|64-12N|083-22W|64-12N|083-22W|64|64|P -CYZT|71|109|Port Hardy, B. C.||Canada|4|50-41N|127-22W|50-41N|127-22W|22|22|P -CYZU|71|930|Whitecourt, Alta.||Canada|4|54-09N|115-47W|||783|782|P -CYZV|71|811|Sept-Iles, Que.||Canada|4|50-13N|066-16W|50-13N|066-15W|55|55|P -CYZW|71|045|Teslin, Y. T.||Canada|4|60-10N|132-44W|||711|705|P -CYZX|71|397|Greenwood, N. S.||Canada|4|44-59N|064-55W|||28|28|P -CYZY|71|944|Mackenzie, B. C.||Canada|4|55-18N|123-08W|||695|690|P -CZAG|--|---|La Grande Iv Remote Environment Automatic Data Acquisition Concept||Canada|4|53-45N|073-41W|||307|| -CZBF|--|---|Bathurst Airport Aviation Weather Reporting Station ||Canada|4|47-38N|065-45W|||59|| -CZCP|--|---|Cape Parry, N. W. T.||Canada|4|70-06N|124-43W|||87|| -CZDI|71|180|Churchill Falls||Canada|4|53-34N|064-06W|||440|| -CZEM|--|---|Eastmain River Airport||Canada|4|52-14N|078-31W|||7|| -CZFA|--|---|Faro Airport||Canada|4|62-12N|133-22W|||717|| -CZFM|--|---|Fort Mcpherson Airport||Canada|4|67-24N|134-51W|||43|| -CZFN|--|---|Fort Norman Airport||Canada|4|64-55N|125-34W|||98|| -CZNB|--|---|North Bay Remote Environment Automatic Data Acquisition Concept ||Canada|4|46-22N|079-25W|||364|| -CZOC|71|044|Old Crow Automatic Weather Reporting System ||Canada|4|67-34N|139-50W|||251|| -CZPC|--|---|Pincher Creek Airport||Canada|4|49-31N|113-59W|||1190|| -CZPK|71|984|Paulatuk Automated Reporting Station ||Canada|4|69-21N|124-03W|||6|| -CZST|71|955|Stewart Airport||Canada|4|55-56N|129-59W|||7|| -CZUB|71|985|Tuktoyaktuk Automated Reporting Station ||Canada|4|69-26N|133-02W|||6|| -CZUE|71|948|Cape Parry, N. W. T.||Canada|4|70-10N|124-42W|||17|17|P -CZUM|71|182|Churchill Falls, Nfld.||Canada|4|53-33N|064-06W|||440|440|P -CZVL|--|---|Edmonton / Villeneuve||Canada|4|53-40N|113-52W|||686|| -CZWN|--|---|Wainwright Automatic Weather Reporting System ||Canada|4|52-49N|111-05W|||684|| -DAAD|60|515|Bou-Saada||Algeria|1|35-20N|004-12E|||461|461|P -DAAE|60|402|Bejaia||Algeria|1|36-43N|005-04E|36-43N|005-04E|2|2|P -DAAF|--|---|Aoulef ||Algeria|1|26-58N|001-05E|||309|| -DAAG|60|390|Dar-El-Beida||Algeria|1|36-43N|003-15E|36-43N|003-15E|25|25|P -DAAJ|60|670|Djanet||Algeria|1|24-33N|009-28E|24-33N|009-28E|1054|1054|P -DAAP|60|640|Illizi||Algeria|1|26-30N|008-25E|26-30N|008-25E|558|558|P -DAAS|60|445|Setif||Algeria|1|36-11N|005-25E|36-11N|005-25E|1038|1081|P -DAAT|--|---|Tamanrasset / Aguenna||Algeria|1|22-49N|005-28E|||1377|| -DAAV|60|351|Jijel Achouat||Algeria|1|36-53N|005-49E|||2|10|P -DAAY|60|549|Mecheria||Algeria|1|34-56N|000-26W|34-56N|000-26W|1149|1149|P -DABB|60|360|Annaba||Algeria|1|36-50N|007-49E|36-50N|007-49E|4|4|P -DABC|60|419|Constantine||Algeria|1|36-17N|006-37E|36-17N|006-37E|694|694|P -DABP|60|355|Skikda||Algeria|1|36-56N|006-57E|36-56N|006-57E|7|7|P -DABS|60|475|Tebessa||Algeria|1|35-29N|008-08E|35-29N|008-08E|813|813|P -DABT|60|468|Batna||Algeria|1|35-33N|006-11E|||1052|1052|P -DAFH|--|---|Tilrempt/Hassi R'mel||Algeria|1|32-55-48N|003-18-44E|||774|| -DAFI|60|535|Djelfa||Algeria|1|34-41N|003-15E|34-41N|003-15E|1144|1144|P -DAOB|60|511|Tiaret||Algeria|1|35-15N|001-26E|||1127|1127|P -DAOF|60|656|Tindouf||Algeria|1|27-40N|008-08W|27-40N|008-08W|431|431|P -DAOI|60|425|Chlef||Algeria|1|36-13N|001-20E|36-13N|001-20E|143|143|P -DAOL|--|---|Oran/Tafaraoui||Algeria|1|35-32-33N|000-31-56W|||112|| -DAON|60|531|Tlemcen Zenata ||Algeria|1|35-01N|001-28W|||247|247|P -DAOO|60|490|Oran / Es Senia||Algeria|1|35-38N|000-36W|35-38N|000-36W|90|90|P -DAOR|60|571|Bechar||Algeria|1|31-37N|002-14W|31-37N|002-14W|773|773|P -DAOV|60|507|Mascara-Ghriss||Algeria|1|35-12N|000-08E|||514|| -DATG|--|---|In Guezzam||Algeria|1|19-34N|005-45E|||399|| -DATM|--|---|Bordj Mokhtar||Algeria|1|21-22-30N|000-55-26E|||396|| -DAUA|60|620|Adrar||Algeria|1|27-53N|000-17W|27-53N|000-17W|263|263|P -DAUB|60|525|Biskra||Algeria|1|34-48N|005-44E|34-48N|005-44E|87|87|P -DAUE|60|590|El Golea||Algeria|1|30-34N|002-52E|30-34N|002-52E|397|397|P -DAUG|60|566|Ghardaia||Algeria|1|32-23N|003-49E|32-23N|003-49E|450|450|P -DAUH|60|581|Hassi-Messaoud||Algeria|1|31-40N|006-09E|||142|142|P -DAUI|--|---|In Salah North||Algeria|1|27-15N|002-31E|||269|| -DAUK|60|555|Touggourt||Algeria|1|33-07N|006-08E|33-07N|006-08E|85|85|P -DAUL|60|545|Laghouat||Algeria|1|33-46N|002-56E|33-46N|002-56E|765|765|P -DAUO|60|559|El Oued||Algeria|1|33-30N|006-07E|33-30N|006-47E|63|63|P -DAUT|60|607|Timimoun||Algeria|1|29-15N|000-17E|29-15N|000-17E|312|312|P -DAUU|60|580|Ouargla||Algeria|1|31-55N|005-24E|31-55N|005-24E|141|141|P -DAUZ|60|611|In Amenas||Algeria|1|28-03N|009-38E|28-03N|009-38E|562|562|P -DBBB|65|344|Cotonou||Benin|1|06-21N|002-23E|06-21N|002-23E|5|9|P -DBBC|65|338|Bohicon||Benin|1|07-10N|002-04E|||166|167|P -DBBK|65|306|Kandi||Benin|1|11-08N|002-56E|11-08N|002-56E|290|292|P -DBBN|65|319|Natitingou||Benin|1|10-19N|001-23E|||460|461|P -DBBP|65|330|Parakou||Benin|1|09-21N|002-37E|09-21N|002-37E|392|393|P -DBBS|65|335|Save||Benin|1|08-02N|002-28E|||199|200|P -DFCC|65|502|Ouahigouya||Burkina Faso|1|13-34N|002-25W|||337|336| -DFCO|65|516|Boromo||Burkina Faso|1|11-45N|002-56W|||270|271| -DFCP|65|518|Po||Burkina Faso|1|11-09N|001-09W|||320|322| -DFEE|65|501|Dori||Burkina Faso|1|14-02N|000-02W|14-02N|000-02W|276|277| -DFEF|65|507|Fada N'Gourma||Burkina Faso|1|12-02N|000-22E|||308|309| -DFFD|65|503|Ouagadougou||Burkina Faso|1|12-21N|001-31W|12-21N|001-31W|316|306|P -DFOD|65|505|Dedougou||Burkina Faso|1|12-28N|003-29W|||300|300| -DFOG|65|522|Gaoua||Burkina Faso|1|10-20N|003-11W|||333|335| -DFOO|65|510|Bobo-Dioulasso||Burkina Faso|1|11-10N|004-19W|11-10N|004-19W|460|460|P -DGAA|65|472|Accra||Ghana|1|05-36N|000-10W|05-36N|000-10W|68|69|P -DGAD|65|475|Ada||Ghana|1|05-47N|000-38E|||5|7|P -DGAH|65|453|Ho||Ghana|1|06-36N|000-28E|||158|158|P -DGAK|65|460|Akuse||Ghana|1|06-06N|000-07E|||17|19|P -DGAS|65|469|Saltpond||Ghana|1|05-12N|001-04W|||44|47|P -DGAT|65|473|Tema||Ghana|1|05-37N|00-00E|||14|18| -DGKA|65|457|Akim Oda||Ghana|1|05-56N|000-59W|||139|140|P -DGKK|65|459|Koforidua||Ghana|1|06-05N|000-15W|||166|167|P -DGLB|65|416|Bole||Ghana|1|09-02N|002-29W|09-02N|002-29W|299|301|P -DGLE|65|418|Tamale||Ghana|1|09-30N|000-51W|09-30N|000-51W|168|173|P -DGLN|65|401|Navrongo||Ghana|1|10-54N|001-06W|||201|203|P -DGLW|65|404|Wa||Ghana|1|10-03N|002-30W|||323|323|P -DGLY|65|420|Yendi||Ghana|1|09-27N|000-01W|||195|197|P -DGSB|65|445|Sefwi Bekwai||Ghana|1|06-12N|002-20W|||171|172|P -DGSI|65|442|Kumasi||Ghana|1|06-43N|001-36W|06-43N|001-36W|287|293|P -DGSN|65|439|Sunyani||Ghana|1|07-20N|002-20W|||309|312|P -DGSW|65|432|Wenchi||Ghana|1|07-45N|002-06W|||339|340|P -DGTK|65|467|Takoradi||Ghana|1|04-53N|001-46W|04-53N|001-46W|5|9|P -DGTX|65|465|Axim||Ghana|1|04-52N|002-14W|||38|40|P -DIAD|65|585|Adiake||Cote d'Ivoire|1|05-18N|003-18W|||33|39|P -DIAP|65|578|Abidjan||Cote d'Ivoire|1|05-15N|003-56W|05-15N|003-56W|7|8|P -DIBK|65|555|Bouake||Cote d'Ivoire|1|07-44N|005-04W|07-44N|005-04W|376|376|P -DIBU|65|545|Bondoukou||Cote d'Ivoire|1|08-03N|002-47W|||369|370|P -DIDK|65|562|Dimbokro||Cote d'Ivoire|1|06-39N|004-42W|||92|92|P -DIDL|65|560|Daloa||Cote d'Ivoire|1|06-52N|006-28W|||276|277|P -DIGA|65|557|Gagnoa||Cote d'Ivoire|1|06-08N|005-57W|||205|210|P -DIKO|65|536|Korhogo||Cote d'Ivoire|1|09-25N|005-37W|09-25N|005-37W|381|381|P -DIMN|65|548|Man||Cote d'Ivoire|1|07-23N|007-31W|07-23N|007-31W|339|340|P -DIOD|65|528|Odienne||Cote d'Ivoire|1|09-30N|007-34W|09-30N|007-34W|434|421|P -DISP|65|594|San Pedro||Cote d'Ivoire|1|04-45N|006-39W|||30|30|P -DISS|65|599|Sassandra||Cote d'Ivoire|1|04-57N|006-05W|||62|66|P -DITB|65|592|Tabou||Cote d'Ivoire|1|04-25N|007-22W|04-25N|007-22W|21|21|P -DIYO|65|563|Yamoussoukro||Cote d'Ivoire|1|06-54N|005-21W|||196|213|P -DNBI|65|112|Bida||Nigeria|1|09-06N|006-01E|||137|143|P -DNCA|65|264|Calabar||Nigeria|1|04-58N|008-21E|||63|63|P -DNEN|65|257|Enugu||Nigeria|1|06-28N|007-33E|||137|| -DNGU|65|015|Gusau||Nigeria|1|12-10N|006-42E|||463|469|P -DNIB|65|208|Ibadan||Nigeria|1|07-26N|003-54E|07-26N|003-54E|234|228|P -DNIL|65|101|Ilorin||Nigeria|1|08-29N|004-35E|||308|305|P -DNJO|65|134|Jos||Nigeria|1|09-52N|008-54E|||1295|1285|P -DNKA|65|019|Kaduna||Nigeria|1|10-36N|007-27E|||645|642|P -DNKN|65|046|Kano||Nigeria|1|12-03N|008-32E|12-03N|008-32E|476|481|P -DNMA|65|082|Maiduguri||Nigeria|1|11-51N|013-05E|||354|| -DNMK|65|271|Makurdi||Nigeria|1|07-41N|008-37E|07-41N|008-37E|113|97|P -DNMM|65|201|Lagos / Ikeja||Nigeria|1|06-35N|003-20E|06-35N|003-20E|40|38|P -DNOS|65|215|Oshogbo||Nigeria|1|07-47N|004-29E|||305|304|P -DNPO|65|250|Port Harcourt||Nigeria|1|04-51N|007-01E|04-51N|007-01E|18|18|P -DNSO|65|010|Sokoto||Nigeria|1|13-01N|005-15E|||351|302|P -DNYO|65|167|Yola||Nigeria|1|09-14N|012-28E|09-14N|012-28E|191|174|P -DNZA|65|030|Zaria||Nigeria|1|11-08N|007-41E|||664|664|P -DRRB|61|075|Birni-N'Konni||Niger|1|13-48N|005-15E|13-48N|005-15E|272|273| -DRRG|61|099|Gaya||Niger|1|11-53N|003-27E|||202|203| -DRRI|61|017|Bilma||Niger|1|18-41N|012-55E|18-41N|012-55E|355|357| -DRRL|61|036|Tillabery||Niger|1|14-12N|001-27E|||209|210| -DRRM|61|080|Maradi||Niger|1|13-28N|007-05E|13-28N|007-05E|372|373| -DRRN|61|052|Niamey-Aero||Niger|1|13-29N|002-10E|13-29N|002-10E|223|227| -DRRT|61|043|Tahoua||Niger|1|14-54N|005-15E|||386|391| -DRZA|61|024|Agadez||Niger|1|16-58N|007-59E|16-58N|007-59E|501|502| -DRZF|61|085|Diffa||Niger|1|13-25N|012-47E|||303|305| -DRZG|61|045|Goure||Niger|1|13-59N|010-18E|||464|460| -DRZM|61|096|Maine-Soroa||Niger|1|13-14N|011-59E|||338|337| -DRZR|61|090|Zinder||Niger|1|13-47N|008-59E|13-47N|008-59E|452|453| -DTKA|60|710|Tabarka||Tunisia|1|36-57N|008-45E|36-57N|008-45E|20|21| -DTMB|--|---|Habib Bourguiba ||Tunisia|1|35-46N|010-45E|||2|| -DTTA|60|715|Tunis-Carthage||Tunisia|1|36-50N|010-14E|36-50N|010-14E|3|4|P -DTTB|60|714|Bizerte||Tunisia|1|37-15N|009-48E|37-14N|009-49E|5|3|P -DTTD|60|775|Remada||Tunisia|1|32-19N|010-24E|32-19N|010-24E|300|301|P -DTTF|60|745|Gafsa||Tunisia|1|34-25N|008-49E|34-25N|008-49E|313|314|P -DTTG|60|765|Gabes||Tunisia|1|33-53N|010-06E|33-53N|010-06E|4|5| -DTTJ|60|769|Djerba Mellita||Tunisia|1|33-52N|010-46E|33-52N|010-46E|3|4|P -DTTK|60|735|Kairouan||Tunisia|1|35-40N|010-06E|35-40N|010-06E|60|68|P -DTTL|60|720|Kelibia||Tunisia|1|36-51N|011-05E|37-04N|011-02E|29|30|P -DTTM|60|740|Monastir-Skanes||Tunisia|1|35-40N|010-45E|35-45N|010-45E|2|3|P -DTTN|60|725|Jendouba||Tunisia|1|36-29N|008-48E|36-29N|008-48E|143|144|P -DTTR|60|780|El Borma||Tunisia|1|31-41N|009-10E|31-41N|009-12E|258|259|P -DTTX|60|750|Sfax El-Maou||Tunisia|1|34-43N|010-41E|34-43N|010-41E|21|23|P -DTTZ|60|760|Tozeur||Tunisia|1|33-55N|008-06E|33-55N|008-10E|87|93|P -DXAK|65|376|Atakpame||Togo|1|07-35N|001-07E|||400|402|P -DXMG|65|352|Mango||Togo|1|10-22N|000-28E|||145|146|P -DXNG|65|355|Niamtougou||Togo|1|09-46N|001-06E|||342|343|P -DXSK|65|361|Sokode||Togo|1|08-59N|001-09E|08-59N|001-09E|386|387|P -DXTA|65|380|Tabligbo||Togo|1|06-35N|001-30E|||44|44|P -DXXX|65|387|Lome||Togo|1|06-10N|001-15E|06-10N|001-15E|20|25|P -EBAW|06|450|Antwerpen / Deurne||Belgium|6|51-12N|004-28E|||12|14|P -EBBE|06|458|Beauvechain||Belgium|6|50-45N|004-46E|||105|127|P -EBBL|06|479|Kleine Brogel||Belgium|6|51-10N|005-28E|51-10N|005-28E|55|64|P -EBBR|06|451|Bruxelles National||Belgium|6|50-54N|004-32E|50-54N|004-28E|55|58|P -EBBT|06|452|Brasschaat||Belgium|6|51-20N|004-30E|||22|23|P -EBBX|06|467|Bertrix Bel-Afb ||Belgium|6|49-54N|005-13E|||461|| -EBCI|06|449|Charleroi / Gosselies||Belgium|6|50-28N|004-27E|||187|192|P -EBCV|06|432|Chievres||Belgium|6|50-34N|003-50E|||60|63|P -EBDT|06|465|Schaffen||Belgium|6|51-00N|005-04E|||30|54| -EBFN|06|400|Koksijde||Belgium|6|51-05N|002-39E|||4|9|P -EBFS|06|456|Florennes||Belgium|6|50-14N|004-39E|||279|299|P -EBGT|06|431|Gent / Industrie-Zone||Belgium|6|51-11N|003-49E|||10|13|P -EBLB|06|496|Elsenborn||Belgium|6|50-28N|006-11E|50-28N|006-11E|564|570|P -EBLG|06|478|Bierset||Belgium|6|50-39N|005-27E|||186|178|P -EBMB|06|448|Melsbroek Bel-Afb ||Belgium|6|50-54N|004-30E|||55|| -EBMT|06|428|Munte||Belgium|6|50-56N|003-44E|||55|60|P -EBOS|06|407|Oostende Airport ||Belgium|6|51-12N|002-52E|||4|5|P -EBSP|06|490|Spa / La Sauveniere||Belgium|6|50-29N|005-55E|||470|482|P -EBST|06|470|Sint-Truiden||Belgium|6|50-48N|005-12E|||74|75|P -EBSU|06|476|St-Hubert||Belgium|6|50-02N|005-24E|50-02N|005-24E|563|557|P -EBTN|06|463|Goetsenhoven||Belgium|6|50-47N|004-57E|||71|81|P -EBWE|06|462|Weelde Military ||Belgium|6|51-25N|005-00E|||60|| -EBZW|06|481|Genk||Belgium|6|50-56N|005-30E|||61|63|P -EDAC|--|---|Altenburg Nobitz||Germany||50-58N|012-30E|||195|| -EDAH|--|---|Heringsdorf||Germany|6|53-53N|014-09E|||28|| -EDBM|--|---|Magdeburg, Sachsen-Anhalt||Germany|6|52-04-35N|011-37-25E|||82|| -EDDB|10|385|Berlin-Schoenefeld||Germany|6|52-23N|013-31E|52-23N|013-31E|47|50|P -EDDC|10|488|Dresden-Klotzsche||Germany|6|51-08N|013-45E|||230|232|P -EDDE|10|554|Erfurt-Bindersleben||Germany|6|50-59N|010-58E|||315|322|P -EDDF|10|637|Frankfurt / M-Flughafen||Germany|6|50-03N|008-36E|50-03N|008-35E|111|113|P -EDDG|10|315|Muenster / Osnabrueck||Germany|6|52-08N|007-42E|||48|53|P -EDDH|10|147|Hamburg-Fuhlsbuettel||Germany|6|53-38N|010-00E|||16|15|P -EDDI|10|384|Berlin-Tempelhof||Germany|6|52-28N|013-24E|52-29N|013-25E|50|49|P -EDDK|10|513|Koeln / Bonn||Germany|6|50-52N|007-10E|50-52N|007-08E|91|100|P -EDDL|10|400|Duesseldorf||Germany|6|51-18N|006-46E|||45|41|P -EDDM|10|866|Munchen||Germany|6|48-21N|011-47E|48-08N|011-43E|453|| -EDDN|10|763|Nuernberg||Germany|6|49-30N|011-03E|49-30N|011-05E|318|318|P -EDDP|10|469|Leipzig-Schkeuditz||Germany|6|51-25N|012-14E|||144|149|P -EDDR|10|708|Saarbruecken / Ensheim||Germany|6|49-13N|007-07E|49-13N|007-07E|322|320|P -EDDS|10|738|Stuttgart-Echterdingen||Germany|6|48-41N|009-13E|48-41N|009-13E|396|391|P -EDDT|10|382|Berlin-Tegel||Germany|6|52-34N|013-19E|||37|37| -EDDV|10|338|Hannover||Germany|6|52-28N|009-41E|52-28N|009-42E|56|59|P -EDDW|10|224|Bremen||Germany|6|53-03N|008-48E|||3|5|P -EDFH|10|616|Hahn||Germany|6|49-57N|007-16E|||491|498| -EDFM|10|729|Baden Wurttemberg, Neuostheim||Germany|6|49-28-21N|008-30-56E|||100|| -EDGS|--|---|Hessen||Germany|6|50-42-28N|008-04-59E|||602|| -EDHI|10|149|Hamburg-Finkenwerder||Germany|6|53-32N|009-50E|||5|13| -EDHK|--|---|Kiel / Holtenau Civilian||Germany||54-23N|010-10E|||31|| -EDHL|10|156|Luebeck-Blankensee||Germany|6|53-49N|010-42E|||14|15| -EDLN|--|---|Monchengladbach||Germany|6|51-13-49N|006-30-16E|||38|| -EDLP|10|426|Paderborn / Lippstadt||Germany|6|51-37N|008-37E|||213|| -EDLV|--|---|Niederrhein||Germany|6|51-36-09N|006-08-32E|||32|| -EDLW|10|416|Dortmund / Wickede||Germany|6|51-31N|007-37E|||127|| -EDMA|10|852|Augsburg||Germany|6|48-26N|010-56E|48-23N|010-51E|461|463|P -EDMO|--|---|Oberpfaffenhofen||Germany|6|48-05N|011-17E|||600|| -EDNY|10|935|Friedrichshafen||Germany|6|47-40N|009-31E|||416|424| -EDOP|10|745|Mecklenburg-Vorpommern, Parchim||Germany|6|53-25-37N|011-47-01E|||52|| -EDQD|10|677|Bayreuth||Germany|6|49-59N|011-38E|||488|498| -EDQM|10|685|Hof||Germany|6|50-19N|011-53E|||567|568|P -EDRZ|--|---|Zweibrucken, Rheinland-Pfalz||Germany|6|49-12-34N|007-24-04E|||344|| -EDSB|10|613|Karlsruhe, Baden Wurttemberg||Germany|6|48-46-43N|008-04-47E|||124|| -EDTD|10|912|Donaueschingen / Villingen||Germany|6|47-58N|008-31E|||680|| -EDTL|--|---|Lahr, CAN-AFB||Germany|6|48-22-09N|007-49-40E|||156|| -EDTZ|10|929|Konstanz||Germany|6|47-41N|009-11E|||443|447|P -EDVE|10|348|Braunschweig||Germany|6|52-18N|010-27E|||81|88|P -EDVK|10|436|Kassel / Calden||Germany|6|51-24N|009-23E|||277|283| -EDWD|--|---|Lemwerder||Germany|6|53-09N|008-37E|||30|| -EDXW|10|018|Westerland / Sylt||Germany|6|54-55N|008-21E|||16|20| -EDZE|10|410|Essen||Germany|6|51-24N|006-58E|51-24N|006-58E|152|161| -EEKA|26|116|Kardla||Estonia|6|58-59N|022-49E|||5|| -EEKE|--|---|Kuressaare||Estonia|6|58-13-48N|022-30-34E|||4|| -EEPU|--|---|Parnu||Estonia|6|58-25-09N|024-28-22E|||14|| -EETN|--|---|Tallinn||Estonia|6|59-24N|024-49E|59-27N|024-48E|40|34| -EETU|--|---|Tartu/Ulenurme||Estonia|6|58-18N|026-44E|||59|| -EFET|--|---|Enontekio||Finland|6|68-21-52N|023-25-39E|||308|| -EFHA|02|945|Halli||Finland|6|61-51N|024-48E|||143|145| -EFHF|02|975|Helsinki-Malmi||Finland|6|60-15N|025-03E|||17|28| -EFHK|02|974|Helsinki-Vantaa||Finland|6|60-19N|024-58E|60-19N|024-58E|51|56|P -EFHL|02|874|Hailuoto||Finland|6|65-02N|024-48E|||6|6| -EFHT|02|924|Ahtari||Finland|6|62-32N|024-13E|||157|161| -EFIL|--|---|Ilmajoki||Finland|6|62-42N|022-50E|||92|| -EFIV|02|807|Ivalo||Finland|6|68-37N|027-25E|||147|148|P -EFJO|02|929|Joensuu||Finland|6|62-40N|029-38E|||119|117|P -EFJY|02|935|Jyvaskyla||Finland|6|62-24N|025-41E|62-24N|025-40E|141|145|P -EFKA|02|913|Kauhava||Finland|6|63-06N|023-02E|||42|44| -EFKE|02|864|Kemi||Finland|6|65-47N|024-35E|||15|| -EFKI|02|897|Kajaani||Finland|6|64-17N|027-41E|||143|136|P -EFKK|02|903|Kruunupyy||Finland|6|63-43N|023-09E|||25|| -EFKS|02|869|Kuusamo||Finland|6|65-58N|029-11E|||262|263|P -EFKT|--|---|Kittila||Finland|6|67-42N|024-51E|||643|| -EFKU|02|917|Kuopio||Finland|6|63-01N|027-48E|63-01N|027-48E|98|102|P -EFLP|02|958|Lappeenranta||Finland|6|61-02-45N|028-08-55E|||106|| -EFMA|02|970|Mariehamn / Aland Island||Finland|6|60-07N|019-54E|||6|| -EFMI|02|947|Mikkeli||Finland|6|61-44N|027-18E|||138|138| -EFOU|02|875|Oulu||Finland|6|64-56N|025-22E|||12|15|P -EFPE|02|844|Pello||Finland|6|66-48N|024-00E|||84|84| -EFPO|02|952|Pori||Finland|6|61-28N|021-48E|||13|17|P -EFPU|02|867|Pudasjarvi||Finland|6|65-22N|027-01E|||114|117| -EFRO|02|845|Rovaniemi||Finland|6|66-34N|025-50E|||197|201| -EFSA|02|948|Savonlinna||Finland|6|61-57N|028-57E|||95|95| -EFSI|--|---|Seinajoki-Ilmajok||Finland|6|62-41-37N|022-49-55E|||91|| -EFSO|02|836|Sodankyla||Finland|6|67-22N|026-39E|67-22N|026-39E|179|179|P -EFSU|02|879|Suomussalmi||Finland|6|64-54N|029-01E|||223|224| -EFTP|02|944|Tampere / Pirkkala||Finland|6|61-25N|023-35E|||112|112|P -EFTU|02|972|Turku||Finland|6|60-31N|022-16E|60-31N|022-16E|49|59|P -EFUT|02|966|Utti||Finland|6|60-54N|026-56E|||100|100| -EFVA|02|911|Vaasa||Finland|6|63-03N|021-46E|||4|| -EFVI|02|915|Viitasaari||Finland|6|63-05N|025-52E|||132|132| -EFVR|--|---|Varkaus||Finland|6|62-10N|027-52E|||87|| -EGAA|03|917|Belfast / Aldergrove Airport||United Kingdom|6|54-39N|006-13W|||81|0|P -EGAC|03|924|Belfast / Harbour||United Kingdom|6|54-36N|005-53W|||5|0| -EGAE|--|---|Eglinton / Londonderr||United Kingdom|6|55-03N|007-09W|||9|| -EGBB|03|534|Birmingham / Airport||United Kingdom|6|52-27N|001-44W|||99|0|P -EGBE|--|---|Coventry Airport ||United Kingdom|6|52-22N|001-29W|||82|| -EGBJ|--|---|Staverton Private ||United Kingdom|6|51-54N|002-10W|||29|| -EGCC|03|334|Manchester Airport||United Kingdom|6|53-21N|002-17W|||69|0|P -EGDB|03|827|Plymouth||United Kingdom|6|50-21N|004-07W|||50|0|P -EGDC|03|707|Chivenor||United Kingdom|6|51-05N|004-09W|||8|0| -EGDG|03|817|Saint Mawgan||United Kingdom|6|50-26N|005-00W|||119|0|P -EGDK|--|---|Kemble Royal Air Force Base ||United Kingdom|6|51-40N|002-03W|||133|| -EGDL|03|740|Lyneham||United Kingdom|6|51-30N|001-59W|||145|0|P -EGDM|03|746|Boscombe Down||United Kingdom|6|51-10N|001-45W|||124|0|P -EGDP|03|858|Portland / Rnas||United Kingdom|6|50-34N|002-27W|||3|0| -EGDR|03|809|Culdrose||United Kingdom|6|50-05N|005-15W|||78|0|P -EGDX|--|---|St Athan Royal Air Force Base||United Kingdom|6|51-24N|003-26W|||50|| -EGDY|03|853|Yeovilton||United Kingdom|6|51-00N|002-38W|||23|0|P -EGEC|--|---|Campbeltown||United Kingdom|6|55-26-14N|005-41-11W|||13|| -EGFF|03|715|Cardiff-Wales Airport||United Kingdom|6|51-24N|003-21W|51-24N|003-21W|67|0|P -EGFH|--|---|Swansea||United Kingdom|6|51-36N|004-04W|||90|| -EGGD|--|---|Bristol / Lulsgate ||United Kingdom|6|51-23N|002-43W|||189|| -EGGP|--|---|Liverpool Airport ||United Kingdom|6|53-20N|002-51W|||26|| -EGGW|--|---|Luton Airport ||United Kingdom|6|51-52N|000-22W|||160|| -EGHD|--|---|Plymouth / Roborough||United Kingdom|6|50-25N|004-07W|||25|| -EGHE|03|803|Scilly, Saint Mary'S||United Kingdom|6|49-55N|006-18W|||31|0| -EGHH|03|862|Bournemouth Airport||United Kingdom|6|50-47N|001-50W|||11|0|P -EGHI|03|865|Southampton / Weather Centre||United Kingdom|6|50-54N|001-24W|||9|0| -EGJA|--|---|Alderney / Channel Island||United Kingdom|6|49-43N|002-12W|||71|| -EGJB|03|894|Guernsey Airport||United Kingdom|6|49-26N|002-36W|||102|0|P -EGJJ|03|895|Jersey Airport||United Kingdom|6|49-13N|002-12W|||84|0|P -EGKA|03|876|Shoreham Airport||United Kingdom|6|50-50N|000-17W|||2|0| -EGKB|--|---|Biggin Hill ||United Kingdom|6|51-19N|000-02E|||183|| -EGKK|03|776|London / Gatwick Airport||United Kingdom|6|51-09N|000-11W|||62|0|P -EGLC|--|---|London City Airport||United Kingdom|6|51-30N|000-30W|||5|| -EGLF|03|768|Farnborough||United Kingdom|6|51-17N|000-46W|||65|0| -EGLL|03|772|London / Heathrow Airport||United Kingdom|6|51-29N|000-27W|||24|0|P -EGMC|--|---|Southend-On-Sea ||United Kingdom|6|51-34N|000-42E|||15|| -EGMD|--|---|Lydd Airport ||United Kingdom|6|50-57N|000-56E|||3|| -EGMH|--|---|Manston, South East||United Kingdom|6|51-20-31N|001-20-46E|||55|| -EGNC|03|222|Carlisle||United Kingdom|6|54-56N|002-57W|||26|| -EGNH|03|318|Blackpool Airport||United Kingdom|6|53-46N|003-02W|||10|0|P -EGNJ|--|---|Humberside||United Kingdom|6|53-35N|000-21W|||31|| -EGNL|03|214|Walney Island||United Kingdom|6|54-07N|003-15W|||15|0| -EGNM|--|---|Leeds And Bradford||United Kingdom|6|53-52N|001-39W|||208|| -EGNR|03|321|Hawarden||United Kingdom|6|53-10N|002-59W|||10|0| -EGNS|03|204|Isle Of Man / Ronaldsway Airport||United Kingdom|6|54-05N|004-38W|||17|0|P -EGNT|--|---|Newcastle ||United Kingdom|6|55-02N|001-42W|||81|| -EGNV|--|---|Tees-Side||United Kingdom|6|54-31N|001-25W|||37|| -EGNX|--|---|East Midlands||United Kingdom|6|52-50N|001-20W|||94|| -EGOD|--|---|Llanbedr||United Kingdom|6|52-49N|004-08W|||9|| -EGOM|03|165|Spadeadam||United Kingdom|6|55-03N|002-33W|||325|| -EGOP|03|605|Pembrey Sands||United Kingdom|6|51-43N|004-22W|||3|| -EGOS|03|414|Shawbury||United Kingdom|6|52-48N|002-40W|||76|0|P -EGOV|03|302|Valley||United Kingdom|6|53-15N|004-32W|||1|0|P -EGOW|--|---|Woodvale||United Kingdom|6|53-34-54N|003-03-20W|||11|| -EGOY|03|132|West Freugh||United Kingdom|6|54-51N|004-57W|||11|0| -EGPA|03|017|Kirkwall Airport||United Kingdom|6|58-57N|002-54W|||21|0|P -EGPB|03|003|Sumburgh Cape ||United Kingdom|6|59-53N|001-18W|||5|| -EGPC|03|075|Wick||United Kingdom|6|58-27N|003-05W|||39|0|P -EGPD|03|091|Aberdeen / Dyce||United Kingdom|6|57-12N|002-13W|57-12N|002-13W|65|0|P -EGPE|03|059|Inverness / Dalcross||United Kingdom|6|57-32N|004-03W|||9|0| -EGPF|03|140|Glasgow Airport||United Kingdom|6|55-52N|004-26W|||8|0|P -EGPH|03|160|Edinburgh Airport||United Kingdom|6|55-57N|003-21W|||41|0|P -EGPI|--|---|Islay||United Kingdom|6|55-40-55N|006-15-24W|||16|| -EGPK|03|135|Prestwick Airport||United Kingdom|6|55-30N|004-35W|||20|0|P -EGPL|03|022|Benbecula||United Kingdom|6|57-28N|007-22W|||6|0|P -EGPM|--|---|Scatsa / Shetland Island||United Kingdom|6|60-26N|001-18W|||22|| -EGPN|--|---|Dundee / Riverside||United Kingdom|6|56-27N|003-01W|||4|| -EGPO|03|026|Stornoway||United Kingdom|6|58-13N|006-19W|58-13N|006-19W|9|13|P -EGPT|--|---|Perth / Scone ||United Kingdom|6|56-27N|003-22W|||121|| -EGPU|03|100|Tiree||United Kingdom|6|56-30N|006-53W|||12|0|P -EGPW|--|---|Unst Island||United Kingdom|6|60-44N|000-49W|||285|| -EGQA|03|062|Tain Range||United Kingdom|6|57-49N|003-58W|||4|0| -EGQJ|03|111|Machrihanish||United Kingdom|6|55-26N|005-42W|||13|0| -EGQK|03|066|Kinloss||United Kingdom|6|57-39N|003-34W|57-39N|003-34W|7|0|P -EGQL|03|171|Leuchars||United Kingdom|6|56-23N|002-52W|||12|0|P -EGQM|03|240|Boulmer||United Kingdom|6|55-25N|001-36W|55-25N|001-36W|23|0|P -EGQS|03|068|Lossiemouth||United Kingdom|6|57-43N|003-19W|||13||P -EGRB|03|779|London Weather Centre||United Kingdom|6|51-31N|000-07W|||5|0| -EGRR|03|763|Bracknell / Beaufort Park||United Kingdom|6|51-23N|000-47W|||74|0| -EGSC|--|---|Cambridge||United Kingdom|6|52-12N|000-11E|||15|| -EGSH|03|492|Norwich Weather Centre||United Kingdom|6|52-38N|001-18E|||14|0| -EGSS|03|683|Stansted Airport||United Kingdom|6|51-53N|000-14E|||106|0|P -EGSY|--|---|Yorkshire and Humberside, Sheffield City||United Kingdom|6|53-23-39N|001-23-18W|||70|| -EGTC|--|---|Cranfield||United Kingdom|6|52-04N|000-37W|||111|| -EGTE|03|839|Exeter Airport||United Kingdom|6|50-44N|003-25W|||30|| -EGTG|--|---|Filton Private ||United Kingdom|6|51-31N|002-35W|||69|| -EGTH|--|---|Hatfeild Private ||United Kingdom|6|51-46N|000-15W|||77|| -EGUA|--|---|Upper Heyford Royal Air Force Base ||United Kingdom|6|51-56N|001-15W|||134|| -EGUB|03|658|Benson||United Kingdom|6|51-37N|001-05W|||63|0|P -EGUC|03|502|Aberporth||United Kingdom|6|52-08N|004-34W|52-08N|004-34W|133|134|P -EGUF|03|766|Farnborough Military ||United Kingdom|6|51-17N|000-46W|||72|| -EGUL|03|583|Lakenheath Royal Air Force Base||United Kingdom|6|52-25N|000-34E|||10|| -EGUM|03|797|Manston||United Kingdom|6|51-21N|001-21E|||55|0|P -EGUN|03|577|Mildenhall Royal Air Force Base||United Kingdom|6|52-22N|000-29E|||10|| -EGUO|--|---|Colerne||United Kingdom|6|51-26-21N|002-17-11W|||181|| -EGUP|--|---|Sculthorpe Af Met ||United Kingdom|6|52-51N|000-46E|||65|| -EGUW|03|590|Wattisham||United Kingdom|6|52-07N|000-58E|||87|0|P -EGUY|03|566|Wyton Royal Air Force Base||United Kingdom|6|52-21N|000-07W|||41|| -EGVA|03|644|Fairford Royal Air Force Base||United Kingdom|6|51-41N|001-47W|||87|| -EGVG|--|---|Woodbridge Royal Air Force Base ||United Kingdom|6|52-05N|001-24E|||29|| -EGVI|--|---|Greenham Common Royal Air Force Base||United Kingdom|6|51-23N|001-17W|||122|| -EGVJ|--|---|Bentwaters Royal Air Force Base ||United Kingdom|6|52-08N|001-26E|||26|| -EGVN|03|649|Brize Norton||United Kingdom|6|51-45N|001-35W|51-45N|001-35W|88|0|P -EGVO|03|761|Odiham||United Kingdom|6|51-14N|000-57W|||123|0| -EGVP|03|749|Middle Wallop||United Kingdom|6|51-09N|001-34W|||91|0| -EGWC|--|---|Cosford Royal Air Force Base||United Kingdom|6|52-38N|002-18W|||83|| -EGWU|03|672|Northolt||United Kingdom|6|51-33N|000-25W|||38|0| -EGWZ|03|562|Alconbury Royal Air Force Base||United Kingdom|6|52-22N|000-13W|||49|| -EGXC|03|391|Coningsby Royal Air Force Base||United Kingdom|6|53-05N|000-10W|||7|| -EGXD|03|261|Disforth||United Kingdom|6|54-08N|001-25W|||36|0| -EGXE|03|257|Leeming||United Kingdom|6|54-18N|001-32W|54-18N|001-32W|40|40| -EGXF|--|---|Cowden||United Kingdom|6|53-51N|006-06W|||15|| -EGXG|03|355|Church Fenton||United Kingdom|6|53-50N|001-12W|||9|0| -EGXH|03|586|Honington Royal Air Force Base||United Kingdom|6|52-20N|000-46E|52-20N|000-46E|54|54| -EGXJ|03|453|Cottesmore||United Kingdom|6|52-44N|000-39W|||138|| -EGXN|--|---|Newton||United Kingdom|6|52-58N|000-59W|||55|| -EGXP|--|---|Scampton||United Kingdom|6|53-18-27N|000-33-03W|||62|| -EGXT|03|462|Wittering||United Kingdom|6|52-37N|000-28W|||84|0| -EGXU|03|266|Linton-On-Ouse||United Kingdom|6|54-03N|001-15W|||16|0| -EGXV|03|384|Leconfield||United Kingdom|6|53-52N|000-26W|||6|0| -EGXW|03|377|Waddington||United Kingdom|6|53-10N|000-31W|53-10N|000-31W|68|0|P -EGXZ|--|---|Topcliffe Royal Air Force Base ||United Kingdom|6|54-12N|001-23W|||28|| -EGYC|03|495|Coltishall||United Kingdom|6|52-26N|001-21E|||20|0|P -EGYD|03|379|Cranwell||United Kingdom|6|53-02N|000-30W|||67|0| -EGYE|--|---|Barkston Heath Royal Air Force Base ||United Kingdom|6|52-58N|000-34W|||112|| -EGYH|03|469|Holbeach||United Kingdom|6|52-52N|000-09E|||3|0| -EGYM|03|482|Marham||United Kingdom|6|52-39N|000-34E|||23|0|P -EGYP|88|889|Mount Pleasant Airport||South Georgia and the Islands|3|51-49S|058-27W|51-49S|058-27W|74|73| -EGYW|03|392|Wainfleet||United Kingdom|6|53-05N|000-16E|||3|0| -EHAM|06|240|Amsterdam Airport Schiphol||Netherlands|6|52-18N|004-46E|||-4|-2|P -EHBK|06|380|Maastricht Airport Zuid Limburg||Netherlands|6|50-55N|005-47E|||114|116| -EHDB|06|260|De Bilt||Netherlands|6|52-06N|005-11E|52-06N|005-11E|2|15|P -EHDL|06|275|Deelen||Netherlands|6|52-04N|005-53E|||48|52| -EHEH|06|370|Eindhoven||Netherlands|6|51-27N|005-25E|||23|28| -EHGG|06|280|Groningen Airport Eelde||Netherlands|6|53-08N|006-35E|||4|4| -EHGR|06|350|Gilze-Rijen||Netherlands|6|51-34N|004-56E|||15|24| -EHKD|06|235|De Kooy||Netherlands|6|52-55N|004-47E|||0|14|P -EHLE|06|269|Lelystad||Netherlands|6|52-27N|005-31E|||0|| -EHLW|06|270|Leeuwarden||Netherlands|6|53-13N|005-46E|||1|11|P -EHRD|06|344|Rotterdam Airport Zestienhoven||Netherlands|6|51-57N|004-27E|||-5|-4| -EHSB|06|265|Soesterberg||Netherlands|6|52-08N|005-17E|||20|25| -EHTW|06|290|Twenthe||Netherlands|6|52-16N|006-54E|52-16N|006-54E|35|57|P -EHVB|06|210|Valkenburg||Netherlands|6|52-11N|004-25E|52-11N|004-25E|0|2| -EHVK|06|375|Volkel||Netherlands|6|51-39N|005-42E|||22|21|P -EHVL|06|242|Vlieland||Netherlands|6|53-15N|004-55E|53-15N|004-55E|11|12| -EHWO|06|340|Woensdrecht||Netherlands|6|51-27N|004-20E|51-27N|004-20E|20|17| -EICK|03|955|Cork Airport||Ireland|6|51-51N|008-29W|||153|162|P -EIDW|03|969|Dublin Airport||Ireland|6|53-26N|006-15W|||68|85|P -EIKN|--|---|Connaught||Ireland|6|53-54-37N|008-49-05W|||203|| -EIME|03|967|Casement Aerodrome||Ireland|6|53-18N|006-26W|||97|93|P -EINN|03|962|Shannon Airport||Ireland|6|52-42N|008-55W|||14|20|P -EKAH|06|070|Tirstrup||Denmark|6|56-18N|010-37E|||23|25|P -EKAT|06|078|Anholt Island Automated Reporting Station ||Denmark|6|56-42N|011-33E|||8|| -EKAV|06|150|Avno Danish Air Force Base ||Denmark|6|55-05N|011-47E|||4|| -EKBI|06|104|Billund Lufthavn||Denmark|6|55-44N|009-10E|||75|79|P -EKCH|06|180|Koebenhavn / Kastrup||Denmark|6|55-37N|012-39E|55-38N|012-40E|5|5|P -EKEB|06|080|Esbjerg||Denmark|6|55-32N|008-34E|||30|29| -EKHO|06|054|Lindtorp Airport||Denmark|6|56-24N|008-27E|||15|| -EKHS|06|048|Hadsund||Denmark|6|56-43N|010-07E|||2|2| -EKKA|06|060|Karup||Denmark|6|56-18N|009-07E|||52|53|P -EKMB|06|143|Maribo Lufthavn||Denmark|6|54-42N|011-27E|||5|5| -EKOD|06|120|Odense / Beldringe||Denmark|6|55-29N|010-20E|||17|17|P -EKRK|06|170|Koebenhavn / Roskilde||Denmark|6|55-35N|012-08E|||44|44| -EKRN|06|190|Roenne||Denmark|6|55-04N|014-45E|||16|16| -EKSB|06|118|Soenderborg Lufthavn||Denmark|6|54-58N|009-47E|||7|14| -EKSN|06|034|Sindal Flyveplads||Denmark|6|57-30N|010-13E|||28|28| -EKSP|06|110|Skrydstrup||Denmark|6|55-14N|009-16E|||43|47|P -EKST|06|124|Sydfyns Flyveplads||Denmark|6|55-01N|010-34E|||6|| -EKSV|06|062|Skive Lufthavn||Denmark|6|56-33N|009-10E|||23|21| -EKTS|06|024|Thisted Lufthavn||Denmark|6|57-04N|008-43E|||7|7| -EKVA|06|100|Vandel||Denmark|6|55-42N|009-12E|||73|76| -EKVD|06|108|Vamdrup||Denmark|6|55-26N|009-20E|||44|45| -EKVG|06|010|Soervaag / Vagar||Denmark|6|62-04N|007-17W|||85|92| -EKVJ|06|066|Stauning Lufthavn||Denmark|6|56-00N|008-21E|||5|5| -EKVL|06|160|Vaerloese||Denmark|6|55-46N|012-20E|||18|31| -EKYT|06|030|Aalborg||Denmark|6|57-06N|009-51E|57-06N|009-52E|3|13|P -ELLX|06|590|Luxembourg / Luxembourg||Luxembourg|6|49-37N|006-13E|49-37N|006-13E|376|379|P -ENAL|01|210|Alesund / Vigra||Norway|6|62-34N|006-07E|||2|22| -ENAN|01|010|Andoya||Norway|6|69-18N|016-09E|69-18N|016-09E|1|14|P -ENAS|01|004|Ny-Alesund Ii||Norway|6|78-55N|011-56E|78-55N|011-56E|8|8| -ENAT|01|049|Alta Lufthavn||Norway|6|69-59N|023-22E|||0|3|P -ENBJ|01|028|Bjornoya||Norway|6|74-31N|019-01E|74-31N|019-01E|16|16|P -ENBL|--|---|Forde / Bringeland||Norway|6|61-27N|005-52E|||150|| -ENBM|01|336|Voss-Bo||Norway|6|60-39N|006-30E|||125|122| -ENBN|01|112|Bronnoysund / Bronnoy||Norway|6|65-28N|012-13E|||0|9| -ENBO|01|152|Bodo Vi||Norway|6|67-16N|014-22E|67-15N|014-24E|1|13|P -ENBR|01|311|Bergen / Flesland||Norway|6|60-17N|005-14E|||5|50|P -ENBS|--|---|Batsfjord||Norway|6|70-38N|029-44E|||10|| -ENBV|01|083|Berlevag||Norway|6|70-52N|029-02E|||1|13| -ENCN|01|452|Kristiansand / Kjevik||Norway|6|58-12N|008-05E|||1|17|P -ENDI|--|---|Dagali||Norway|6|60-25N|008-31E|||798|| -ENDR|--|---|Draugen||Norway|6|64-21-20N|007-47-30E|||0|| -ENDU|01|023|Bardufoss||Norway|6|69-04N|018-32E|||7|79|P -ENEK|--|---|Ekofisk Oil Platform||Norway|6|56-33N|003-15E|||3|| -ENEV|01|183|Evenes||Norway|6|68-31N|016-41E|||26|26| -ENFB|01|488|Oslo / Fornebu||Norway|6|59-54N|010-38E|||1|17|P -ENFG|01|368|Fagernes Leirin||Norway|6|61-00N|009-18E|||822|| -ENFL|01|310|Floro||Norway|6|61-35N|005-02E|||0|9| -ENFR|--|---|Frigg||Norway|6|59-56N|002-00E||||| -ENGC|--|---|Gullfax Platform ||Norway|6|61-02N|002-02E|||10|| -ENGM|01|384|Oslo / Gardermoen||Norway|6|60-12N|011-05E|60-12N|011-06E|20|204|P -ENHD|01|408|Haugesund / Karmoy||Norway|6|59-21N|005-13E|||2|24| -ENHE|--|---|Heidrun||Norway|6|65-19-30N|002-19-36E|||0|| -ENHF|01|052|Hammerfest||Norway|6|70-40N|023-40E|||8|81| -ENHK|--|---|Hasvik||Norway|6|70-29N|022-09E|||10|| -ENHO|01|062|Hopen||Norway|6|76-30N|025-04E|||6|10|P -ENHV|01|068|Honningsvag / Valan||Norway|6|71-01N|025-59E|||1|14| -ENJA|01|001|Jan Mayen||Norway|6|70-56N|008-40W|70-56N|008-40W|10|9|P -ENKA|01|047|Kautokeino||Norway|6|69-00N|023-02E|||305|308| -ENKB|01|223|Kristiansund / Kvernberget||Norway|6|63-07N|007-50E|||6|62| -ENKR|01|089|Kirkenes Lufthavn||Norway|6|69-44N|029-54E|||9|91|P -ENLI|01|428|Lista Flyplass||Norway|6|58-06N|006-38E|||1|10| -ENLK|01|141|Leknes||Norway|6|68-09N|013-37E|||2|26| -ENMH|01|074|Mehamn||Norway|6|71-02N|027-50E|||1|13| -ENML|01|217|Molde / Aro||Norway|6|62-45N|007-16E|||0|3| -ENMS|01|122|Mosjoen Kjaerstad||Norway|6|65-48N|013-08E|||70|| -ENNA|01|059|Banak||Norway|6|70-04N|024-59E|||0|8|P -ENNK|01|194|Narvik Iii||Norway|6|68-28N|017-30E|||17|23| -ENNM|01|290|Namsos Lufthavn||Norway|6|64-28N|011-35E|||0|2| -ENNO|--|---|Notodden||Norway|6|59-34N|009-13E|||19|| -ENOA|--|---|Oseberg ||Norway|6|59-19N|010-27E|||15|| -ENOL|01|241|Orland Iii||Norway|6|63-42N|009-36E|63-42N|009-36E|0|7|P -ENOV|01|209|Orsta-Volda / Hovden||Norway|6|62-11N|006-04E|||7|74| -ENRA|01|151|Mo I Rana / Rossvoll||Norway|6|66-22N|014-18E|||7|70| -ENRM|01|282|Rorvik / Ryum||Norway|6|64-50N|011-09E|||4|| -ENRO|01|289|Roros Lufthavn||Norway|6|62-35N|011-21E|||62|626| -ENRS|01|107|Rost Flyplass||Norway|6|67-31N|012-06E|||4|| -ENRY|01|494|Rygge||Norway|6|59-23N|010-47E|||5|53|P -ENSB|01|008|Svalbard Lufthavn||Norway|6|78-15N|015-28E|||2|29|P -ENSD|01|320|Sandane / Anda||Norway|6|61-50N|006-07E|||6|60| -ENSG|01|347|Sogndal / Haukasen||Norway|6|61-09N|007-08E|||49|497| -ENSH|01|161|Svolvaer / Helle||Norway|6|68-15N|014-40E|||0|9| -ENSK|01|162|Storkmarknes / Skagen||Norway|6|68-35N|015-01E|||0|3| -ENSN|01|475|Skien-Geiteryggen||Norway|6|59-11N|009-34E|||1|14| -ENSO|--|---|Stord / Soerstokken||Norway|6|59-48N|005-21E|||49|| -ENSR|01|046|Sorkjosen||Norway|6|69-47N|020-58E|||0|6| -ENSS|01|097|Svartnes||Norway|6|70-21N|031-03E|||12|| -ENST|01|116|Sandnessjoen / Stokka||Norway|6|65-58N|012-28E|||1|17| -ENTC|01|025|Tromso / Langnes||Norway|6|69-41N|018-55E|||1|10|P -ENTO|01|483|Torp||Norway|6|59-12N|010-16E|||8|88| -ENVA|01|271|Trondheim / Vaernes||Norway|6|63-28N|010-56E|||1|17|P -ENVD|01|088|Vadso||Norway|6|70-04N|029-51E|||3|39| -ENZV|01|415|Stavanger / Sola||Norway|6|58-53N|005-38E|58-52N|005-40E|0|9|P -EPGD|12|150|Gdansk-Rebiechowo||Poland|6|54-23N|018-28E|54-23N|018-28E|135|138|P -EPKK|12|566|Krakow||Poland|6|50-05N|019-48E|50-05N|019-48E|237|237|P -EPKO|12|105|Koszalin||Poland|6|54-12N|016-09E|54-12N|016-11E|32|34| -EPKT|12|560|Katowice||Poland|6|50-14N|019-02E|||284|284|P -EPPO|12|330|Poznan||Poland|6|52-25N|016-50E|52-25N|016-50E|86|92|P -EPRZ|12|580|Rzeszow-Jasionka||Poland|6|50-06N|022-03E|50-06N|022-03E|200|202|P -EPSC|12|205|Szczecin||Poland|6|53-24N|014-37E|53-24N|014-37E|1|3|P -EPSK|--|---|Slupsk ||Poland|6|54-28N|017-01E|||25|| -EPWA|12|375|Warszawa-Okecie||Poland|6|52-10N|020-58E|52-11N|020-59E|106|107|P -EPWR|12|424|Wroclaw Ii||Poland|6|51-06N|016-53E|||120|121|P -EPZG|12|400|Zielona Gora||Poland|6|51-56N|015-32E|||192|192|P -EQYG|--|---|NSA Souda Bay||Greece|6|35-32N|024-09E|||146|| -EQYN|--|---|Naples, Navsuppact||Italy|6|40-53N|014-17E|||91|| -EQYR|--|---|Rota, Naval Station||Spain|6|36-39N|006-20W|||26|| -EQYS|--|---|Sigonella, NAS||Italy|6|37-24N|014-55E|||25|| -ESCF|02|562|Linkoping / Malmen||Sweden|6|58-24N|015-31E|||93|117|P -ESCL|02|376|Soderhamn||Sweden|6|61-16N|017-06E|||26|36|P -ESCM|02|458|Uppsala||Sweden|6|59-53N|017-36E|||21|41|P -ESDA|02|630|Ljungbyhed, Ljungbyhed, SWE-AFB||Sweden|6|56-05-07N|013-12-26E|||52|52|P -ESDB|02|607|Angelholm||Sweden|6|56-18N|012-51E|||20|47|P -ESDF|02|664|Ronneby||Sweden|6|56-16N|015-17E|||58|74|P -ESGG|02|526|Goteborg / Landvetter||Sweden|6|57-40N|012-18E|||169|| -ESGJ|02|550|Jonkoping Flygplats||Sweden|6|57-46N|014-05E|||226|232|P -ESGP|02|512|Goteborg / Save||Sweden|6|57-47N|011-53E|||20|53|P -ESGR|02|535|Skovde Flygplats||Sweden|6|58-27N|013-58E|||98|105| -ESGT|--|---|Trollhattan Private ||Sweden|6|58-19N|012-21E|||41|| -ESIB|02|520|Satenas||Sweden|6|58-26N|012-42E|||54|74|P -ESKM|--|---|Siljan / Mora||Sweden|6|60-58N|014-31E|||193|| -ESKN|--|---|Stockholm/Skavsta||Sweden|6|58-47N|016-55E|||43|| -ESMK|02|651|Kristianstad / Everod||Sweden|6|55-55N|014-05E|||23|| -ESMQ|02|672|Kalmar||Sweden|6|56-44N|016-18E|||16|| -ESMS|02|636|Malmo / Sturup||Sweden|6|55-33N|013-22E|||106|| -ESMT|02|604|Halmstad Swedish Air Force Base ||Sweden|6|56-41N|012-50E|||30|| -ESMV|02|556|Hagshult||Sweden|6|57-18N|014-08E|||169|172|P -ESMX|02|641|Vaxjo||Sweden|6|56-51N|014-50E|||199|200| -ESNG|02|049|Gallivare||Sweden|6|67-09N|020-39E|||359|360| -ESNJ|02|142|Jokkmokk||Sweden|6|66-38N|019-39E|||263|264|P -ESNK|02|259|Kramfors Flygplats||Sweden|6|63-03N|017-46E|||10|19|P -ESNL|--|---|Lycksele||Sweden|6|64-32-51N|018-43-03E|||211|| -ESNN|02|366|Sundsvall-Harnosand Flygplats||Sweden|6|62-32N|017-27E|62-32N|017-27E|4|10|P -ESNO|02|267|Ornskoldsvik Airport||Sweden|6|63-24N|018-58E|||103|| -ESNQ|02|044|Kiruna Airport||Sweden|6|67-49N|020-20E|||452|| -ESNS|02|293|Skelleftea Airport||Sweden|6|64-38N|021-05E|||49|| -ESNU|02|286|Umea Flygplats||Sweden|6|63-48N|020-17E|||7|14|P -ESNY|--|---|Soderhamn||Sweden|6|61-15-41N|017-05-57E|||27|| -ESOE|--|---|Orebro Private ||Sweden|6|59-14N|015-03E|||57|| -ESOK|--|---|Karlstad ||Sweden|6|59-26-41N|013-20-15E|||107|| -ESOW|02|446|Vasteras / Hasslo||Sweden|6|59-35N|016-38E|||6|31|P -ESPA|02|186|Lulea / Kallax||Sweden|6|65-33N|022-08E|65-33N|022-08E|17|34|P -ESPC|02|226|Ostersund / Froson||Sweden|6|63-11N|014-30E|63-11N|014-30E|376|370|P -ESPD|02|128|Gunnarn||Sweden|6|64-58N|017-42E|||280|283|P -ESPE|02|154|Vidsel||Sweden|6|65-52N|020-08E|||180|182| -ESSA|02|460|Stockholm / Arlanda||Sweden|6|59-39N|017-57E|||38|61|P -ESSB|02|464|Stockholm / Bromma||Sweden|6|59-21N|017-57E|59-21N|017-57E|14|14| -ESSD|02|435|Borlange||Sweden|6|60-26N|015-31E|||145|0| -ESSF|02|565|Hultsfred Swedish Air Force Base ||Sweden|6|57-31N|015-50E|||112|| -ESSK|02|443|Gavle / Sandviken Air Force Base||Sweden|6|60-36N|016-57E|||79|| -ESSL|--|---|Linkoping / Saab||Sweden|6|58-24N|015-41E|||52|| -ESSP|02|571|Norrkoping||Sweden|6|58-35N|016-09E|||34|0| -ESSQ|02|418|Karlstad Flygplats||Sweden|6|59-22N|013-28E|||46|55|P -ESSV|02|590|Visby Flygplats||Sweden|6|57-40N|018-21E|||51|47|P -ESTL|--|---|Ljungbyhed||Sweden|6|56-04N|013-12E|||43|| -ETAD|10|607|Spangdahlem||Germany|6|49-59N|006-42E|||365|356| -ETAR|10|614|Ramstein||Germany|6|49-26N|007-36E|||238|237| -ETAS|10|712|Sembach United States Air Force Operated Base In Foreign Country ||Germany|6|49-30N|007-52E|||321|| -ETBA|10|503|Aachen / Merzbruck||Germany|6|50-49N|006-11E|50-49N|006-11E|191|190| -ETCE|--|---|Mebstetten / Albstadt||Germany|6|50-07N|009-07E|||475|| -ETEB|10|755|Ansbach / Katterbach||Germany|6|49-19N|010-38E|49-19N|010-38E|467|476| -ETEH|10|627|Bad Kreuznach||Germany|6|49-51N|007-53E|||103|105| -ETEU|10|653|Giebelstadt||Germany|6|49-39N|009-58E|49-39N|009-58E|298|298| -ETGB|10|238|Bergen||Germany|6|52-49N|009-56E|52-49N|009-56E|70|69| -ETGG|10|033|Gluecksburg / Meierwik||Germany|6|54-50N|009-30E|||27|33| -ETGI|10|618|Idar-Oberstein||Germany|6|49-42N|007-20E|49-42N|007-20E|376|377| -ETGK|10|771|Kuemmersruck||Germany|6|49-26N|011-54E|49-26N|011-54E|419|418| -ETGW|10|272|Wittstock||Germany|6|53-12N|012-31E|53-12N|012-31E|72|74| -ETGY|10|404|Kalkar||Germany|6|51-44N|006-16E|||31|43| -ETGZ|10|827|Messstetten||Germany|6|48-11N|009-00E|||920|930| -ETHA|10|954|Altenstadt||Germany|6|47-50N|010-52E|47-50N|010-52E|739|757| -ETHB|10|335|Bueckeburg||Germany|6|52-17N|009-05E|||70|78| -ETHC|10|343|Celle||Germany|6|52-36N|010-01E|||39|52| -ETHE|10|306|Rheine-Bentlage||Germany|6|52-18N|007-23E|||40|49| -ETHF|10|439|Fritzlar||Germany|6|51-07N|009-17E|||172|181| -ETHI|10|142|Itzehoe||Germany|6|54-00N|009-35E|||25|26| -ETHL|10|837|Laupheim||Germany|6|48-13N|009-55E|||538|550| -ETHM|10|514|Mendig||Germany|6|50-22N|007-19E|||182|190| -ETHN|10|743|Niederstetten||Germany|6|49-24N|009-58E|||468|473| -ETHR|10|765|Roth||Germany|6|49-13N|011-06E|49-13N|011-06E|388|395| -ETHS|10|246|Fassberg||Germany|6|52-55N|010-11E|||75|88| -ETHT|10|492|Cottbus Flugplatz ||Germany|6|51-46N|014-18E|||67|68| -ETIC|10|687|Grafenwoehr||Germany|6|49-42N|011-57E|49-06N|011-08E|415|415| -ETID|10|642|Hanau||Germany|6|50-10N|008-58E|50-10N|008-57E|112|114| -ETIE|10|734|Heidelberg||Germany|6|49-24N|008-39E|||110|109| -ETIH|10|775|Hohenfels||Germany|6|49-13N|011-50E|||442|442| -ETIK|10|752|Illesheim||Germany|6|49-28N|010-23E|||325|347| -ETIN|10|669|Kitzingen Usa \ Af ||Germany|6|49-45N|010-12E|49-45N|010-12E|210|210| -ETME|10|034|Eggebek||Germany|6|54-38N|009-21E|||20|22| -ETMK|10|046|Kiel-Holtenau||Germany|6|54-23N|010-09E|54-23N|010-09E|31|31| -ETMN|10|136|Nordholz||Germany|6|53-46N|008-40E|||23|31| -ETND|10|321|Diepholz||Germany|6|52-35N|008-21E|||39|43| -ETNG|10|500|Geilenkirchen||Germany|6|50-58N|006-03E|||90|98| -ETNH|10|038|Hohn||Germany|6|54-19N|009-32E|||12|17| -ETNJ|10|122|Jever||Germany|6|53-32N|007-53E|||7|21| -ETNL|10|172|Laage||Germany|6|53-55N|012-17E|||40|46| -ETNN|10|502|Noervenich||Germany|6|50-50N|006-40E|||118|135| -ETNP|10|314|Hopsten||Germany|6|52-20N|007-32E|||39|43| -ETNR|10|493|Preschen||Germany|6|51-40N|014-38E|||100|| -ETNS|10|037|Schleswig-Jagel||Germany|6|54-28N|009-31E|||22|25| -ETNT|10|126|Wittmundhaven||Germany|6|53-33N|007-40E|||8|12| -ETNU|10|281|Trollenhagen||Germany|6|53-36N|013-19E|||71|70| -ETNW|10|334|Wunstorf||Germany|6|52-27N|009-26E|||57|70| -ETOR|10|728|Coleman Mannheim ||Germany|6|49-34N|008-28E|||96|95| -ETOU|10|633|Wiesbaden||Germany|6|50-03N|008-20E|||140|| -ETSA|10|857|Landsberg||Germany|6|48-04N|010-54E|||623|628| -ETSB|10|613|Buechel||Germany|6|50-10N|007-04E|||478|486| -ETSE|10|869|Erding||Germany|6|48-19N|011-57E|||462|467| -ETSF|10|858|Fuerstenfeldbruck||Germany|6|48-12N|011-16E|||519|535| -ETSH|10|476|Holzdorf||Germany|6|51-46N|013-11E|||79|83| -ETSI|10|860|Ingolstadt||Germany|6|48-43N|011-32E|||367|370| -ETSL|10|856|Lechfeld||Germany|6|48-11N|010-52E|||555|562| -ETSM|10|947|Memmingen||Germany|6|47-59N|010-14E|||634|644| -ETSN|10|853|Neuburg / Donau||Germany|6|48-43N|011-13E|||380|387| -ETSP|10|626|Pferdsfeld||Germany|6|49-51N|007-36E|||396|403| -ETUL|10|405|Laarbruch||Germany|6|51-36N|006-09E|||32|31| -ETUN|10|308|Nordhorn||Germany|6|52-27N|007-10E|||26|26| -ETUO|10|320|Guetersloh||Germany|6|51-55N|008-18E|||72|72| -ETUR|10|401|Brueggen||Germany|6|51-12N|006-08E|||73|76| -ETWM|--|---|Meppen-Mil||Germany|6|52-43-24N|007-19-35E|||21|| -EVLA|--|---|Liepaja International Airport||Latvia|6|56-31N|021-05E|||5|| -EVRA|--|---|Riga International Airport||Latvia|6|56-55N|023-58E|||10|| -EYKA|--|---|Kaunas||Lithuania|6|54-54N|023-55-12E|||77|| -EYPA|--|---|Palanga Intl.||Lithuania|6|55-55-12N|021-03E|||10|| -EYSA|--|---|Siauliai Intl./Mil.||Lithuania|6|55-53-38N|023-23-42E|||135|| -EYVI|26|730|Vilnius||Lithuania|6|54-38N|025-06E|||162|156|P -FAAB|68|406|Alexander Bay||South Africa|1|28-34S|016-32E|28-34S|016-32E|21|0|P -FAAN|68|546|Aliwal North||South Africa|1|30-43S|026-43E|||1348|1300|P -FABL|68|442|Bloemfontein, Bloemfontein Airport||South Africa|1|29-06S|026-18E|29-06S|026-18E|1354|1400|P -FABM|68|461|Bethlehem Airport||South Africa|1|28-15S|028-20E|28-15S|028-20E|1686|1700|P -FABY|68|728|Beaufort West||South Africa|1|32-21S|022-35E|32-21S|022-35E|842|900|P -FACL|68|380|Carolina||South Africa|1|26-04S|030-07E|||1693|1700| -FACT|68|816|Cape Town, Cape Town International Airport||South Africa|1|33-59S|018-36E|33-58S|018-36E|42|0|P -FACV|68|618|Calvinia||South Africa|1|31-28S|019-46E|||975|1000|P -FADA|68|536|De Aar||South Africa|1|30-39S|024-01E|||1247|| -FADN|68|588|Durban, Durban International Airport||South Africa|1|29-58S|030-57E|29-58S|030-57E|14|0|P -FADY|68|538|De Aar||South Africa|1|30-38S|023-55E|||384|| -FAEL|68|858|East London, East London Airport||South Africa|1|33-02S|027-50E|33-02S|027-50E|125|0|P -FAEO|--|---|Ermelo||South Africa|1|26-30S|029-59E|||1737|| -FAER|68|156|Ellisras||South Africa|1|23-43-35S|027-41-18E|||851|| -FAFF|68|362|Frankfort||South Africa|1|27-16S|028-30E|||1499|1500|P -FAFR|68|624|Fraserburg||South Africa|1|31-55S|021-31E|||1264|1300|P -FAGB|68|116|Gobabis||Namibia|1|22-28S|018-58E|||1440|1400|P -FAGE|68|906|Gough Island||South Africa|1|40-21S|009-53W|40-21S|009-53W|54|0|P -FAGG|68|828|George, George Airport||South Africa|1|34-00S|022-23E|33-58S|022-25E|193|0|P -FAGM|--|---|Rand||South Africa|1|26-15S|028-00E|||1668|| -FAGR|68|736|Graaff Reinet||South Africa|1|32-15S|024-32E|||752|800|P -FAGY|--|---|Greytown||South Africa|1|29-07S|030-34E|||1100|| -FAHS|68|290|Hoedspruit||South Africa|1|24-22S|031-02E|||513|500|P -FAIR|68|263|Pretoria Irene ||South Africa|1|25-55S|028-13E|25-55S|028-13E|1523|1500| -FAJS|68|368|Johannesburg International Airport||South Africa|1|26-08S|028-14E|26-08S|028-14E|1694|1700|P -FAKD|68|347|Klerksdorp||South Africa|1|26-52S|026-43E|||1355|| -FAKM|68|438|Kimberley, Kim-Apt||South Africa|1|28-48S|024-46E|28-48S|024-46E|1198|1200|P -FALA|--|---|Lanseria||South Africa|1|25-56S|027-56E|||1377|| -FALT|--|---|Lichtenburg||South Africa|1|26-11S|026-11E|||1486|| -FALW|68|714|Langebaanweg||South Africa|1|32-58S|018-10E|||31|0|P -FALY|68|476|Ladysmith||South Africa|1|28-34S|029-46E|28-34S|029-46E|1078|1100|P -FAMB|68|638|Middelburg||South Africa|1|31-29S|025-02E|||1270|1300|P -FAME|68|994|Marion Island||South Africa|1|46-53S|037-52E|46-53S|037-52E|22|0|P -FAMG|--|---|Margate||South Africa|1|30-51S|030-21E|||151|| -FAMM|68|242|Mafikeng Intl. Ad||South Africa|1|25-47S|025-32E|25-47S|025-32E|1281|1300|P -FAMO|68|928|Mossel Bay Cape Saint Blaize ||South Africa|1|34-11S|022-09E|||59|0|P -FANC|--|---|Newcastle||South Africa|1|27-47S|029-59E|||1251|| -FANS|68|288|Nelspruit||South Africa|1|25-26S|030-59E|||671|700|P -FAOB|--|---|Overberg||South Africa|1|34-36S|020-17E|||75|| -FAOH|68|826|Oudtshoorn||South Africa|1|33-34S|022-13E|||359|0|P -FAPB|68|174|Pietersburg||South Africa|1|23-52S|029-27E|23-52S|029-27E|1228|1200|P -FAPE|68|842|Port Elizabeth, Port E Apt||South Africa|1|33-59S|025-36E|33-59S|025-36E|61|0|P -FAPG|--|---|Plettenberg Bay||South Africa|1|34-05-17S|023-19-46E|||139|| -FAPH|68|190|Phalaborwa||South Africa|1|23-56S|031-09E|||427|400|P -FAPI|--|---|Pietersburg Civil ||South Africa|1|23-54S|029-28E|||1327|| -FAPJ|68|674|Port St Johns||South Africa|1|31-38S|029-33E|||47|0|P -FAPM|--|---|Pietermaritzburg||South Africa|1|29-39S|030-24E|||739|| -FAPR|68|262|Pretoria||South Africa|1|25-44S|028-11E|25-44S|028-11E|1330|1300|P -FAPS|--|---|Potchefstroom||South Africa|1|26-40-16S|027-04-55E|||1378|| -FAQT|68|648|Queenstown||South Africa|1|31-54S|026-52E|||1094|1100|P -FARB|68|498|Richard Bay||South Africa|1|28-48S|032-06E|||47|0|P -FARG|--|---|Rustenburg||South Africa|1|25-38-39S|027-16-16E|||1128|| -FASB|68|512|Springbok||South Africa|1|29-40S|017-52E|29-40S|017-52E|1006|1000|P -FASI|--|---|Springs||South Africa|1|26-14-54S|028-23-51E|||1628|| -FASR|--|---|Standerton||South Africa|1|26-56S|029-13E|||1581|| -FASS|--|---|Sishen||South Africa|1|27-38-59S|023-00E|||1173|| -FATC|68|902|Tristan Da Cunha||South Africa|1|37-03S|012-19W|||23|0| -FATZ|--|---|Tzaneen ||South Africa|1|23-49S|030-20E|||583|| -FAUL|--|---|Ulundi||South Africa|1|28-19-06S|031-25-04E|||525|| -FAUP|68|424|Upington, Up-Apt||South Africa|1|28-24S|021-16E|28-24S|021-16E|839|800|P -FAUT|68|668|Umtata||South Africa|1|31-32S|028-40E|||742|700|P -FAVB|68|338|Vryburg||South Africa|1|26-57S|024-38E|||1234|1200|P -FAVG|--|---|Durban/Virginia||South Africa|1|29-46-14S|031-03-37E|||6|| -FAVR|68|614|Vredendal||South Africa|1|31-40S|018-30E|||34|0|P -FAVV|--|---|Vereeniging||South Africa|1|26-34-29S|027-57-45E|||1483|| -FAVY|--|---|Vryheid||South Africa|1|27-47S|030-48E|||1158|| -FAWB|--|---|Wonderboom / Pretoria||South Africa|1|25-39S|028-13E|||1248|| -FAWI|--|---|Witbank||South Africa|1|25-49-51S|029-11-32E|||1553|| -FAWK|68|264|Waterkloof (SAAF)||South Africa|1|25-50S|028-13E|||1498|1500|P -FAWM|68|346|Welkom||South Africa|1|28-00S|026-40E|||1338|1300|P -FBFT|68|054|Francistown||Botswana|1|21-13S|027-30E|21-10S|027-29E|1001|1000|P -FBGZ|68|024|Ghanzi||Botswana|1|21-42S|021-39E|21-42S|021-39E|1131|1100|P -FBJW|68|234|Jwaneng||Botswana|1|24-36S|024-40E|||1189|1200| -FBKE|68|029|Kasane||Botswana|1|17-49S|025-09E|||968|1000| -FBLT|68|040|Letlhakane||Botswana|1|21-25S|025-36E|||986|985| -FBMN|68|032|Maun||Botswana|1|19-59S|023-25E|19-59S|023-25E|945|900|P -FBSK|68|240|Seretse Khama International Airport||Botswana|1|24-13S|025-55E|24-13S|025-55E|1005|1005| -FBSN|68|038|Sua-Pan||Botswana|1|20-28S|025-59E|20-28S|025-59E|903|904| -FBSP|--|---|Selebi Phikwe||Botswana|1|22-03-19S|027-49-13E|||892|| -FBSW|68|026|Shakawe||Botswana|1|18-22S|021-51E|||1032|1000|P -FBTE|68|226|Tshane||Botswana|1|24-01S|021-53E|||1118|1100|P -FBTS|68|328|Tsabong||Botswana|1|26-03S|022-27E|26-03S|022-27E|960|1000|P -FCBB|64|450|Brazzaville / Maya-Maya||Congo, Republic of the|1|04-15S|015-15E|04-15S|015-15E|319|316|P -FCBD|64|453|Djambala||Congo, Republic of the|1|02-32S|014-46E|02-32S|014-46E|791|790|P -FCBM|64|402|Mouyondzi||Congo, Republic of the|1|03-59S|013-55E|||509|512|P -FCBO|64|452|M'Pouya||Congo, Republic of the|1|02-37S|016-13E|||311|312|P -FCBS|64|405|Sibiti||Congo, Republic of the|1|03-41S|013-21E|||530|531|P -FCOG|64|454|Gamboma||Congo, Republic of the|1|01-52S|015-52E|||476|377|P -FCOI|64|459|Impfondo||Congo, Republic of the|1|01-37N|018-04E|01-37N|018-04E|335|326|P -FCOM|64|456|Makoua||Congo, Republic of the|1|00-01S|015-35E|00-01S|015-35E|394|379|P -FCOS|64|460|Souanke||Congo, Republic of the|1|02-04N|014-08E|||549|550|P -FCOU|64|458|Ouesso||Congo, Republic of the|1|01-37N|016-03E|01-37N|016-03E|352|352|P -FCPA|64|403|Makabana||Congo, Republic of the|1|03-29S|012-37E|||160|161|P -FCPL|64|401|Loubomo||Congo, Republic of the|1|04-12S|012-42E|04-13S|012-40E|329|330|P -FCPP|64|400|Pointe-Noire||Congo, Republic of the|1|04-49S|011-54E|04-49S|011-54E|17|17|P -FDMS|68|396|Manzini / Matsapa Airport||Swaziland|1|26-32S|031-18E|||641|| -FEFA|64|662|Alindao||Central African Republic|1|05-03N|021-12E|||447|449|P -FEFB|64|659|Obo||Central African Republic|1|05-24N|026-30E|||650|651|P -FEFF|64|650|Bangui||Central African Republic|1|04-24N|018-31E|04-24N|018-31E|365|366|P -FEFG|64|656|Bangassou||Central African Republic|1|04-44N|022-50E|04-44N|022-50E|499|500|P -FEFI|64|658|Birao||Central African Republic|1|10-17N|022-47E|||463|464|P -FEFL|64|605|Bossembele||Central African Republic|1|05-16N|017-38E|||673|674|P -FEFM|64|660|Bambari||Central African Republic|1|05-51N|020-39E|||474|475|P -FEFN|64|654|N'Dele||Central African Republic|1|08-24N|020-39E|08-24N|020-39E|510|511|P -FEFO|64|601|Bouar||Central African Republic|1|05-58N|015-38E|05-58N|015-38E|1019|1020|P -FEFR|64|655|Bria||Central African Republic|1|06-32N|021-59E|||583|584|P -FEFS|64|610|Bossangoa||Central African Republic|1|06-29N|017-26E|06-29N|017-26E|464|465|P -FEFT|64|600|Berberati||Central African Republic|1|04-15N|015-48E|04-13N|015-47E|582|583|P -FEFY|64|661|Yalinga||Central African Republic|1|06-30N|023-16E|||601|602|P -FGSL|64|810|Malabo/Fernando Poo||Equatorial Guinea|1|03-45N|008-46E|||56|| -FHAW|61|902|Wide Awake Field Ascension Island ||Saint Helena|1|07-58S|014-24W|07-58S|014-24W|86|79|P -FIMP|61|990|Plaisance Mauritius ||Mauritius|1|20-26S|057-40E|||55|57|P -FIMR|61|988|Rodrigues||Mauritius|1|19-41S|063-25E|19-41S|063-25E|58|59|P -FJDG|61|967|NSF DIEGO GARCIA|IO|British Indian Ocean Territory|1|7-18S|72-24E|07-18S|072-24E|3|3| -FKAB|64|880|Banyo||Cameroon|1|06-47N|011-49E|||1110|| -FKAF|64|920|Bafia||Cameroon|1|04-44N|011-15E|||500|500|P -FKAG|64|960|Abong-Mbang||Cameroon|1|03-58N|013-12E|||693|| -FKAL|64|961|Lomie||Cameroon|1|03-09N|013-37E|||624|| -FKAM|64|882|Meiganga||Cameroon|1|06-32N|014-22E|||1027|1027|P -FKAN|64|911|Nkongsamba||Cameroon|1|04-57N|009-56E|04-57N|009-56E|816|821|P -FKAO|64|901|Betare-Oya||Cameroon|1|05-36N|014-04E|||815|804| -FKAY|64|900|Yoko||Cameroon|1|05-33N|012-22E|05-33N|012-22E|1027|1031|P -FKKA|64|851|Maroua-Salak||Cameroon|1|10-27N|014-15E|||423|422|P -FKKB|64|971|Kribi||Cameroon|1|02-57N|009-54E|||10|16|P -FKKC|64|912|Tiko||Cameroon|1|04-05N|009-22E|||52|| -FKKD|64|910|Douala Obs.||Cameroon|1|04-00N|009-44E|04-01N|009-42E|10|9|P -FKKF|64|890|Mamfe||Cameroon|1|05-43N|009-17E|||126|| -FKKI|64|931|Batouri||Cameroon|1|04-28N|014-22E|04-28N|014-22E|656|656|P -FKKM|64|893|Koundja||Cameroon|1|05-39N|010-45E|05-39N|010-45E|1208|1210|P -FKKN|64|870|Ngaoundere||Cameroon|1|07-21N|013-34E|07-21N|013-34E|1114|1104|P -FKKR|64|860|Garoua||Cameroon|1|09-20N|013-23E|09-20N|013-23E|242|244|P -FKKV|64|892|Bamenda ||Cameroon|1|06-03N|010-07E|||1239|| -FKKY|--|---|Younde Ii||Cameroon|1|03-50N|011-32E|||751|| -FKYS|64|950|Yaounde||Cameroon|1|03-50N|011-31E|03-50N|011-31E|751|760|P -FLBA|67|413|Mbala||Zambia|1|08-51S|031-20E|||1673|| -FLCH|67|753|Choma||Zambia|1|16-50S|027-04E|||1213|1278|P -FLCP|67|581|Chipata||Zambia|1|13-33S|032-35E|13-33S|032-35E|1028|1032|P -FLIK|67|481|Isoka||Zambia|1|10-07S|032-38E|||1360|| -FLKB|67|403|Kawambwa||Zambia|1|09-48S|029-05E|||1323|1324|P -FLKO|67|641|Kaoma||Zambia|1|14-48S|024-48E|||1213|1213|P -FLKS|67|475|Kasama||Zambia|1|10-13S|031-08E|10-13S|031-08E|1382|1384|P -FLKW|67|663|Kabwe||Zambia|1|14-27S|028-28E|14-27S|028-28E|1206|1207|P -FLLC|67|666|Lusaka City Airport||Zambia|1|14-27S|028-28E|15-25S|028-19E|1280|1280| -FLLD|67|583|Lundazi||Zambia|1|12-17S|033-12E|||1143|| -FLLI|67|743|Livingstone||Zambia|1|17-49S|025-49E|17-49S|025-49E|985|986|P -FLLS|67|665|Lusaka Internationalairport||Zambia|1|15-19S|028-27E|15-19S|028-27E|1152|1154|P -FLMA|67|461|Mansa||Zambia|1|11-06S|028-51E|||1382|1384|P -FLMF|--|---|Mfuwe||Zambia|1|13-15-32S|031-56-12E|||573|| -FLMG|67|633|Mongu||Zambia|1|15-15S|023-09E|15-15S|023-09E|1052|1053|P -FLMP|67|477|Mpika||Zambia|1|11-54S|031-26E|||1400|1402|P -FLMW|67|441|Mwinilunga||Zambia|1|11-45S|024-26E|11-45S|024-26E|1361|1363|P -FLND|67|561|Ndola||Zambia|1|13-00S|028-39E|13-00S|028-39E|1269|1270|P -FLPA|67|541|Kasempa||Zambia|1|13-32S|025-51E|||1234|1234|P -FLPE|67|673|Petauke||Zambia|1|14-15S|031-17E|||1035|1036|P -FLPO|67|543|Kabompo||Zambia|1|13-36S|024-12E|||1075|| -FLSE|67|571|Serenje||Zambia|1|13-14S|030-13E|||1384|| -FLSN|67|731|Senanga||Zambia|1|16-06S|023-16E|||1027|| -FLSS|67|741|Sesheke||Zambia|1|17-28S|024-18E|||949|951|P -FLSW|67|551|Solwezi||Zambia|1|12-11S|026-23E|||1386|| -FLZB|67|531|Zambezi||Zambia|1|13-32S|023-07E|||1077|1078|P -FMCH|67|002|Hahaya International Airport||Comoros|1|11-32S|043-16E|11-32S|043-16E|29|29| -FMCV|67|004|Ouani Anjouan ||Comoros|1|12-07S|044-26E|12-07S|044-26E|19|12|P -FMCZ|67|005|Dzaoudzi / Pamanzi Mayotte ||Comoros|1|12-48S|045-17E|12-48S|045-17E|8|7|P -FMEE|61|980|Saint-Denis / Gillot||Reunion|1|20-53S|055-31E|20-53S|055-31E|21|25|P -FMEP|61|984|Saint-Pierre||Reunion|1|21-20S|055-29E|21-20S|055-29E|52|53|P -FMME|67|107|Antsirabe||Madagascar|1|19-49S|047-04E|19-49S|047-04E|1523|1532| -FMMH|67|113|Mahanoro||Madagascar|1|19-50S|048-48E|19-50S|048-48E|5|5|P -FMMI|67|083|Antananarivo / Ivato||Madagascar|1|18-48S|047-29E|18-48S|047-29E|1279|1276|P -FMMO|67|073|Maintirano||Madagascar|1|18-03S|044-02E|18-03S|044-02E|23|23|P -FMMS|67|072|Sainte-Marie Aerodrome||Madagascar|1|17-05S|049-49E|17-05S|049-49E|2|3|P -FMMT|67|095|Tamatave||Madagascar|1|18-07S|049-24E|18-07S|049-24E|5|6|P -FMMV|67|117|Morondava||Madagascar|1|20-17S|044-19E|20-17S|044-19E|7|8|P -FMNA|67|009|Diego-Suarez||Madagascar|1|12-21S|049-18E|12-21S|049-18E|114|105|P -FMND|67|022|Andapa||Madagascar|1|14-39S|049-37E|||473|474| -FMNH|67|025|Antalaha||Madagascar|1|14-53S|050-15E|15-00S|050-20E|87|88|P -FMNL|67|019|Analalava||Madagascar|1|14-38S|047-46E|14-38S|047-46E|105|57|P -FMNM|67|027|Majunga||Madagascar|1|15-40S|046-21E|14-53S|050-15E|26|18|P -FMNN|67|012|Fascene Nossi-Be ||Madagascar|1|13-19S|048-19E|13-19S|048-19E|10|9|P -FMNQ|67|037|Besalampy||Madagascar|1|16-45S|044-29E|16-45S|044-29E|38|36| -FMNS|67|023|Sambava||Madagascar|1|14-17S|050-10E|14-17S|050-10E|5|5| -FMNV|67|017|Vohemar||Madagascar|1|13-22S|050-00E|13-22S|050-00E|6|5| -FMSD|67|197|Fort-Dauphin||Madagascar|1|25-02S|046-57E|25-02S|046-57E|8|9|P -FMSF|67|137|Fianarantsoa||Madagascar|1|21-27S|047-06E|21-27S|047-06E|1115|1109|P -FMSG|67|157|Farafangana||Madagascar|1|22-48S|047-50E|22-48S|047-50E|8|6|P -FMSM|67|143|Mananjary||Madagascar|1|21-12S|048-22E|21-12S|048-22E|5|6|P -FMSO|67|152|Ranohira||Madagascar|1|22-33S|045-24E|22-33S|045-24E|824|824|P -FMSR|67|131|Morombe||Madagascar|1|21-45S|043-22E|21-45S|043-22E|5|4| -FMST|67|161|Tulear||Madagascar|1|23-23S|043-44E|23-23S|043-44E|8|8|P -FNBG|66|310|Monbaca Benguela ||Angola|1|12-35S|013-25E|||33|4|P -FNCA|66|104|Cabinda||Angola|1|05-33S|012-11E|||25|20|P -FNHU|66|318|Huambo Nova Lisboa ||Angola|1|12-48S|015-45E|12-48S|015-45E|1710|1701|P -FNKU|66|325|Bie Silva Porto ||Angola|1|12-23S|016-57E|||1701|1699|P -FNLU|66|160|Luanda||Angola|1|08-51S|013-14E|08-51S|013-14E|74|70|P -FOGM|64|550|Mouila||Gabon|1|01-52S|011-01E|||88|89|P -FOGR|64|551|Lambarene||Gabon|1|00-43S|010-14E|||27|26|P -FOOB|64|510|Bitam||Gabon|1|02-05N|011-29E|02-05N|011-29E|600|599|P -FOOC|64|504|Cocobeach||Gabon|1|01-00N|009-36E|||12|13|P -FOOD|64|565|Moanda||Gabon|1|01-32S|013-16E|01-32S|013-16E|572|573|P -FOOE|64|545|Mekambo||Gabon|1|01-01N|013-56E|||499|501|P -FOOG|64|501|Port-Gentil||Gabon|1|00-42S|008-45E|00-42S|008-45E|3|4|P -FOOK|64|556|Makokou||Gabon|1|00-34N|012-52E|||509|515|P -FOOL|64|500|Libreville||Gabon|1|00-27N|009-25E|00-27N|009-25E|12|15|P -FOOM|64|552|Mitzic||Gabon|1|00-47N|011-32E|||583|583|P -FOON|--|---|Franceville / Mvengue||Gabon|1|01-39S|013-26E|||441|| -FOOR|64|560|Lastoursville||Gabon|1|00-50S|012-43E|||483|485|P -FOOT|64|507|Tchibanga||Gabon|1|02-51S|011-01E|||83|79|P -FOOY|64|503|Mayumba||Gabon|1|03-25S|010-39E|||31|34|P -FPPR|61|934|Principe||Sao Tome and Principe|1|01-39N|007-25E|||3|5|P -FPST|61|931|S. Tome||Sao Tome and Principe|1|00-23N|006-43E|00-23N|006-43E|8|13|P -FQBR|67|297|Beira||Mozambique|1|19-48S|034-54E|19-48S|034-54E|8|16| -FQCB|67|231|Cuamba||Mozambique|1|14-49S|036-32E|||606|607| -FQCH|67|295|Chimoio||Mozambique|1|19-07S|033-28E|||731|732| -FQIN|67|323|Inhambane||Mozambique|1|23-52S|035-23E|23-52S|035-23E|14|15| -FQLC|67|217|Lichinga||Mozambique|1|13-18S|035-14E|13-17S|035-15E|1364|1365| -FQLU|67|241|Lumbo||Mozambique|1|15-02S|040-40E|15-02S|040-40E|10|11| -FQMA|67|341|Maputo / Mavalane||Mozambique|1|25-55S|032-34E|25-55S|032-34E|39|44| -FQMP|67|205|Mocimboa Da Praia||Mozambique|1|11-21S|040-22E|||27|29| -FQNP|67|237|Nampula||Mozambique|1|15-06S|039-17E|15-06S|039-17E|438|441| -FQPB|67|215|Pemba||Mozambique|1|12-59S|040-32E|12-58S|040-30E|101|50| -FQQL|67|283|Quelimane||Mozambique|1|17-53S|036-53E|17-53S|036-53E|6|16| -FQTE|67|261|Tete||Mozambique|1|16-11S|033-35E|16-11S|033-35E|149|150| -FQTT|--|---|Tete / Chingozi||Mozambique|1|16-06S|033-38E|||160|| -FQVL|67|315|Vilanculos||Mozambique|1|22-00S|035-19E|||20|21| -FQXA|67|335|Xai Xai||Mozambique|1|25-03S|033-38E|||4|5| -FSIA|63|980|Seychelles Inter-National Airport||Seychelles|1|04-40S|055-31E|04-40S|055-31E|3|3|P -FSSS|63|985|Seychelles International Airport Rawinsonde Station ||Seychelles|1|04-41S|055-32E|04-41S|055-32E|4|4| -FTTA|64|750|Sarh||Chad|1|09-09N|018-23E|09-09N|018-23E|365|365|P -FTTC|64|756|Abeche||Chad|1|13-51N|020-51E|13-51N|020-51E|545|549|P -FTTD|64|706|Moundou||Chad|1|08-37N|016-04E|||428|422|P -FTTJ|64|700|Ndjamena||Chad|1|12-08N|015-02E|12-08N|015-02E|295|295|P -FTTK|64|708|Bokoro||Chad|1|12-23N|017-03E|||300|301|P -FTTL|64|702|Bol-Berim||Chad|1|13-26N|014-44E|||291|292|P -FTTN|64|754|Am-Timan||Chad|1|11-02N|020-17E|||433|436|P -FTTP|64|709|Pala||Chad|1|09-22N|014-55E|||467|455|P -FTTY|64|753|Faya||Chad|1|18-00N|019-10E|18-00N|019-10E|235|234|P -FVBB|67|991|Beitbridge||Zimbabwe|1|22-13S|030-00E|22-13S|030-00E|456|457|P -FVBI|67|755|Binga||Zimbabwe|1|17-37S|027-20E|||620|617| -FVBU|67|965|Bulawayo Airport||Zimbabwe|1|20-01S|028-37E|20-01S|028-37E|1326|1326|P -FVCH|67|983|Chipinge||Zimbabwe|1|20-12S|032-37E|||1131|1132|P -FVCZ|67|977|Buffalo Range||Zimbabwe|1|21-01S|031-35E|21-01S|031-35E|429|430|P -FVFA|67|843|Victoria Falls||Zimbabwe|1|18-06S|025-51E|18-06S|025-51E|1061|1062|P -FVGO|67|861|Gokwe||Zimbabwe|1|18-13S|028-56E|18-13S|028-56E|1282|1282|P -FVHA|67|775|Harare Kutsaga ||Zimbabwe|1|17-55S|031-08E|17-56S|031-06E|1479|1480|P -FVKA|67|765|Karoi||Zimbabwe|1|16-50S|029-37E|16-50S|029-37E|1343|1344|P -FVKB|67|761|Kariba||Zimbabwe|1|16-31S|028-53E|16-31S|028-53E|518|518| -FVMT|67|781|Mutoko||Zimbabwe|1|17-25S|032-13E|17-25S|032-13E|1244|1244| -FVMV|67|975|Masvingo||Zimbabwe|1|20-04S|030-52E|20-04S|030-52E|1094|1095|P -FVRU|67|881|Rusape||Zimbabwe|1|18-32S|032-08E|18-32S|032-09E|1430|1430|P -FVTL|67|867|Gweru||Zimbabwe|1|19-27S|029-51E|19-27S|029-51E|1428|1429|P -FVWN|67|853|Hwange National Park||Zimbabwe|1|18-38S|027-00E|18-38S|026-51E|1079|1077|P -FWCL|67|693|Chileka||Malawi|1|15-41S|034-58E|15-41S|034-58E|766|767|P -FWCT|67|421|Chitipa||Malawi|1|09-42S|033-16E|||1278|1278|P -FWDZ|67|689|Dedza||Malawi|1|14-19S|034-16E|||1630|1632| -FWKA|67|423|Karonga||Malawi|1|09-57S|033-53E|09-57S|033-54E|529|529|P -FWKI|67|586|Lilongwe International Airport||Malawi|1|13-47S|033-46E|13-47S|033-47E|1229|1229|P -FWKK|67|591|Nkhota Kota||Malawi|1|12-55S|034-16E|||500|500| -FWMG|67|695|Mangochi||Malawi|1|14-26S|035-15E|||485|485|P -FWMY|67|690|Monkey Bay||Malawi|1|14-05S|034-55E|||474|474| -FWMZ|67|485|Mzimba||Malawi|1|11-53S|033-37E|11-53S|033-37E|1349|1351|P -FWSM|67|597|Salima||Malawi|1|13-45S|034-35E|13-45S|034-35E|513|513|P -FWUU|67|489|Mzuzu||Malawi|1|11-27S|034-01E|11-27S|034-01E|1251|1253|P -FXMM|--|---|Maseru / Moshoeshoe||Lesotho|1|29-27S|027-33E|||1631|| -FXMU|68|454|Maseru-Mia||Lesotho|1|29-27S|027-33E|||1631|1628|P -FYGF|68|014|Grootfontein||Namibia|1|19-36S|018-07E|19-36S|018-07E|1411|1400|P -FYKM|--|---|Katima Mulilo||Namibia|1|17-38-04S|024-10-36E|||985|| -FYKT|68|312|Keetmanshoop||Namibia|1|26-32S|018-07E|26-32S|018-07E|1067|1100|P -FYLZ|--|---|Luderitz / Diaz Point||Namibia|1|26-41S|015-15E|||130|| -FYOA|--|---|Ondangwa||Namibia|1|17-52-42S|015-57-09E|||1096|| -FYRK|--|---|Rooikop Saaf / Civ ||Namibia|1|22-59S|014-39E|||88|| -FYRU|68|018|Rundu||Namibia|1|17-55S|019-46E|||1083|1100|P -FYWB|--|---|Walvis Bay||Namibia|1|22-58-59S|014-39E|||46|| -FYWH|68|112|J. G. Strijdom||Namibia|1|22-29S|017-28E|22-29S|017-28E|1715|1700|P -FYWW|--|---|Windhoek, Town MET||Namibia|1|22-34S|017-06E|||1725|| -FZAA|64|210|Kinshasa / N'Djili||Congo, Democratic Republic of the|1|04-23S|015-26E|04-23S|015-26E|309|312|P -FZAG|64|201|Moanda||Congo, Democratic Republic of the|1|06-00S|012-25E|||27|27|P -FZAM|64|207|Matadi||Congo, Democratic Republic of the|1|05-48S|013-26E|05-48S|013-26E|355|340|P -FZAN|64|206|Inga||Congo, Democratic Republic of the|1|05-31S|013-35E|||277|277|P -FZBA|64|115|Inongo||Congo, Democratic Republic of the|1|01-58S|018-16E|01-58S|018-16E|300|300|P -FZBO|64|108|Bandundu||Congo, Democratic Republic of the|1|03-18S|017-21E|||324|324|P -FZCA|64|222|Kikwit||Congo, Democratic Republic of the|1|05-02S|018-48E|05-02S|018-48E|518|449|P -FZCS|64|217|Kenge||Congo, Democratic Republic of the|1|04-55S|017-04E|||563|563|P -FZEA|64|005|Mbandaka||Congo, Democratic Republic of the|1|00-03N|018-16E|00-03N|018-16E|345|317|P -FZFK|64|006|Gemena||Congo, Democratic Republic of the|1|03-17N|019-47E|||475|446|P -FZGN|64|126|Boende||Congo, Democratic Republic of the|1|00-13S|020-51E|00-13S|020-51E|351|351|P -FZIA|64|040|Kisangani||Congo, Democratic Republic of the|1|00-31N|025-11E|00-31N|025-11E|415|396|P -FZMB|64|072|Butembo||Congo, Democratic Republic of the|1|00-08N|029-16E|||1840|1840|P -FZNA|64|184|Goma||Congo, Democratic Republic of the|1|01-41S|029-14E|||1552|1552|P -FZNC|64|157|Rutshuru||Congo, Democratic Republic of the|1|01-11S|029-27E|||1275|1275|P -FZOA|64|155|Kindu||Congo, Democratic Republic of the|1|02-57S|025-55E|02-57S|025-55E|497|497|P -FZQA|64|360|Lubumbashi-Luano||Congo, Democratic Republic of the|1|11-40S|027-29E|||1276|1298|P -FZQM|64|328|Kolwezi||Congo, Democratic Republic of the|1|10-43S|025-27E|||1405|1526|P -FZRA|64|282|Manono||Congo, Democratic Republic of the|1|07-17S|027-26E|07-17S|027-26E|614|633|P -FZRF|64|285|Kalemie||Congo, Democratic Republic of the|1|05-53S|029-11E|05-52S|029-11E|790|818|P -FZRQ|64|276|Kongolo||Congo, Democratic Republic of the|1|05-21S|027-00E|||561|561| -FZSA|64|315|Kamina / Base||Congo, Democratic Republic of the|1|08-38S|025-15E|08-38S|025-15E|1088|1106|P -FZUA|64|235|Kananga||Congo, Democratic Republic of the|1|05-53S|022-25E|||654|657|P -FZUK|64|228|Tshikapa||Congo, Democratic Republic of the|1|06-25S|020-51E|||521|481|P -FZVA|64|146|Lodja||Congo, Democratic Republic of the|1|03-29S|023-28E|||479|500|P -FZVI|64|246|Lusambo||Congo, Democratic Republic of the|1|04-58S|023-26E|||424|424|P -FZVS|64|224|Ilebo||Congo, Democratic Republic of the|1|04-20S|020-35E|||465|420|P -FZWA|64|247|Mbuji-Mayi||Congo, Democratic Republic of the|1|06-10S|023-37E|||633|677|P -GABG|61|296|Bougouni||Mali|1|11-25N|007-30W|11-25N|007-30W|350|351|P -GABS|61|291|Bamako / Senou||Mali|1|12-32N|007-57W|12-32N|007-57W|380|381|P -GAGO|61|226|Gao||Mali|1|16-16N|000-03W|16-16N|000-03W|265|260|P -GAHB|61|240|Hombori||Mali|1|15-20N|001-41W|||287|288|P -GAKA|61|285|Kenieba||Mali|1|12-51N|011-14W|||132|132|P -GAKL|61|214|Kidal||Mali|1|18-26N|001-21E|18-26N|001-21E|458|459|P -GAKO|61|293|Koutiala||Mali|1|12-23N|005-28W|||365|367|P -GAKT|61|270|Kita||Mali|1|13-04N|009-28W|||333|334|P -GAKY|61|257|Kayes||Mali|1|14-26N|011-26W|14-26N|011-26W|47|47|P -GAMB|61|265|Mopti||Mali|1|14-31N|004-06W|14-31N|004-06W|276|272|P -GAMK|61|250|Menaka||Mali|1|15-52N|002-13E|||278|278|P -GANK|61|233|Nara||Mali|1|15-10N|007-17W|15-10N|007-17W|271|265|P -GANR|61|230|Nioro Du Sahel||Mali|1|15-14N|009-21W|||235|237|P -GASG|61|272|Segou||Mali|1|13-24N|006-09W|13-26N|006-17W|288|289|P -GASK|61|297|Sikasso||Mali|1|11-21N|005-41W|11-21N|005-41W|374|375|P -GASN|61|277|San||Mali|1|13-20N|004-50W|||283|284|P -GATB|61|223|Tombouctou||Mali|1|16-43N|003-00W|16-43N|003-00W|263|264|P -GATS|61|202|Tessalit||Mali|1|20-12N|000-59E|20-12N|000-59E|494|491|P -GBYD|61|701|Banjul / Yundum||Gambia, The|1|13-21N|016-48W|13-21N|016-48W|36|36|P -GCFV|60|035|Fuerteventura / Aeropuerto||Spain|1|28-27N|013-52W|||22|30| -GCHI|60|001|Hierro / Aeropuerto||Spain|1|27-49N|017-53W|||32|32| -GCLA|60|005|La Palma / Aeropuerto||Spain|1|28-37N|017-45W|||29|31|P -GCLP|60|030|Gran Canaria - Canary Islands||Spain|1|27-56N|015-23W|27-56N|015-23W|23|47|P -GCRR|60|040|Lanzarote / Aeropuerto||Spain|1|28-57N|013-36W|||14|21|P -GCTS|60|025|Tenerife Sur||Spain|1|28-03N|016-34W|||64|77| -GCXO|60|015|Tenerife / Los Rodeos||Spain|1|28-28N|016-19W|||632|617|P -GEML|60|338|Melilla||Spain|1|35-17N|002-57W|||47|55|P -GFLL|61|856|Lungi||Sierra Leone|1|08-37N|013-12W|08-37N|013-12W|25|27|P -GGBF|61|781|Bafata||Guinea-Bissau|1|12-10N|014-40W|||42|43| -GGOV|61|766|Bissau Aeroport ||Guinea-Bissau|1|11-53N|015-39W|11-53N|015-39W|39|36| -GLRB|65|660|Grand Bassa, Roberts Field||Liberia|1|06-15N|010-21W|||18|| -GMAA|60|250|Agadir||Morocco|1|30-23N|009-34W|30-23N|009-34W|27|23|P -GMAD|60|252|Agadir Al Massira||Morocco|1|30-20N|009-24W|30-20N|009-25W|74|74| -GMAT|60|285|Tan-Tan||Morocco|1|28-27N|011-09W|||229|200|P -GMFF|60|141|Fes-Sais||Morocco|1|33-56N|004-59W|33-56N|004-59W|579|579|P -GMFI|60|160|Ifrane||Morocco|1|33-30N|005-10W|33-30N|005-10W|1664|1665|P -GMFK|60|210|Errachidia||Morocco|1|31-56N|004-24W|31-58N|004-25W|1034|1042|P -GMFM|60|150|Meknes||Morocco|1|33-53N|005-32W|33-53N|005-32W|576|549|P -GMFN|60|340|Nador||Morocco|1|35-09N|002-55W|35-09N|002-55W|3|16|P -GMFO|60|115|Oujda||Morocco|1|34-47N|001-56W|34-47N|001-57W|468|470|P -GMFZ|60|127|Taza||Morocco|1|34-13N|004-00W|34-13N|004-00W|509|510|P -GMMC|60|155|Casablanca||Morocco|1|33-34N|007-40W|33-34N|007-40W|62|62|P -GMME|60|135|Rabat-Sale||Morocco|1|34-03N|006-46W|34-03N|006-46W|84|75|P -GMMF|60|060|Sidi Ifni||Morocco|1|29-22N|010-11W|29-22N|010-11W|58|66|P -GMMI|60|220|Essaouira||Morocco|1|31-31N|009-47W|31-31N|009-47W|15|8|P -GMML|--|---|Laayoune/Hassan Isl||Morocco|1|27-10N|013-12-59W|||6|| -GMMN|60|156|Nouasseur||Morocco|1|33-22N|007-35W|||200|206|P -GMMS|60|185|Safi||Morocco|1|32-17N|009-14W|32-17N|009-14W|52|45|P -GMMW|--|---|Nador/Arwi||Morocco|1|34-59-20N|003-01-42W|||175|| -GMMX|60|230|Marrakech||Morocco|1|31-37N|008-02W|31-37N|008-02W|468|466|P -GMMY|60|120|Kenitra||Morocco|1|34-18N|006-36W|||5|14|P -GMMZ|60|265|Ouarzazate||Morocco|1|30-56N|006-54W|30-56N|006-54W|1139|1140|P -GMTA|60|107|Al Hoceima||Morocco|1|35-11N|003-51W|35-11N|003-51W|27|14|P -GMTN|60|318|Tetuan / Sania Ramel||Morocco|1|35-35N|005-20W|||10|10|P -GMTT|60|101|Tanger Aerodrome ||Morocco|1|35-44N|005-54W|35-44N|005-54W|19|21|P -GOGG|61|695|Ziguinchor||Senegal|1|12-33N|016-16W|12-33N|016-16W|26|23|P -GOGK|61|698|Kolda||Senegal|1|12-53N|014-58W|||10|10|P -GOGS|61|697|Cap-Skirring||Senegal|1|12-24N|016-45W|||16|13| -GOOD|61|666|Diourbel||Senegal|1|14-39N|016-14W|||7|9|P -GOOG|61|627|Linguere||Senegal|1|15-23N|015-07W|||20|21|P -GOOK|61|679|Kaolack||Senegal|1|14-08N|016-04W|||6|7|P -GOOY|61|641|Dakar / Yoff||Senegal|1|14-44N|017-30W|14-44N|017-30W|27|24|P -GOSM|61|630|Matam||Senegal|1|15-39N|013-15W|||15|17|P -GOSP|61|612|Podor||Senegal|1|16-39N|014-58W|||6|7|P -GOSS|61|600|Saint-Louis||Senegal|1|16-03N|016-27W|16-03N|016-27W|4|4|P -GOTK|61|699|Kedougou||Senegal|1|12-34N|012-13W|||178|167|P -GOTT|61|687|Tambacounda||Senegal|1|13-46N|013-41W|13-46N|013-41W|49|50|P -GQNA|61|499|Aioun El Atrouss||Mauritania|1|16-42N|009-36W|16-42N|009-36W|223|223|P -GQNB|61|461|Boutilimit||Mauritania|1|17-32N|014-41W|||77|75|P -GQND|61|450|Tidjikja||Mauritania|1|18-34N|011-26W|||396|402|P -GQNF|61|498|Kiffa||Mauritania|1|16-38N|011-24W|16-38N|011-24W|115|115|P -GQNI|61|497|Nema||Mauritania|1|16-36N|007-16W|16-36N|007-16W|269|269|P -GQNJ|61|437|Akjoujt||Mauritania|1|19-45N|014-22W|||123|120|P -GQNK|61|492|Kaedi||Mauritania|1|16-09N|013-31W|||18|18| -GQNN|61|442|Nouakchott||Mauritania|1|18-06N|015-57W|18-06N|015-57W|2|3|P -GQNR|61|489|Rosso||Mauritania|1|16-30N|015-49W|||5|6|P -GQPA|61|421|Atar||Mauritania|1|20-31N|013-04W|20-31N|013-04W|226|224|P -GQPP|61|415|Nouadhibou||Mauritania|1|20-56N|017-02W|20-56N|017-02W|5|3|P -GQPT|61|401|Bir Moghrein||Mauritania|1|25-14N|011-37W|25-14N|011-37W|364|360|P -GSVO|60|096|Villa Cisneros||Western Sahara|1|23-42N|015-52W|23-42N|015-56W|10|10|P -GUCY|61|832|Conakry / Gbessia||Guinea|1|09-34N|013-37W|09-34N|013-38W|26|26| -GUFH|61|833|Faranah / Badala||Guinea|1|10-02N|010-45W|||458|459| -GUID|61|818|Kindia||Guinea|1|10-03N|012-52W|||458|459| -GUKU|61|834|Kissidougou||Guinea|1|09-11N|010-06W|||525|525| -GULB|61|809|Labe||Guinea|1|11-19N|012-18W|11-19N|012-18W|1025|1026| -GUMA|61|847|Macenta||Guinea|1|08-32N|009-28W|||543|544| -GUNZ|61|849|N'Zerekore||Guinea|1|07-44N|008-50W|||470|470| -GUOK|61|816|Boke||Guinea|1|10-56N|014-19W|||69|69| -GUSI|61|811|Siguiri||Guinea|1|11-26N|009-10W|||362|366| -GUXD|61|829|Kankan||Guinea|1|10-23N|009-18W|10-23N|009-18W|377|384| -GVAC|08|594|Sal||Cape Verde|1|16-44N|022-57W|16-44N|022-57W|54|55|P -HAAB|63|450|Addis Ababa||Ethiopia|1|08-59N|038-48E|08-59N|038-48E|2355|2324|P -HAAG|--|---|Agordat ||Ethiopia|1|15-33N|037-53E|||626|| -HAAM|63|500|Arba Minch||Ethiopia|1|06-04N|037-40E|||1219|| -HAAW|--|---|Awash ||Ethiopia|1|08-59N|040-10E|||1052|| -HAAX|--|---|Axum||Ethiopia|1|14-07N|038-43E|||2134|| -HABC|--|---|Baco / Bako ||Ethiopia|1|05-50N|036-37E|||1311|| -HABD|63|332|Bahar Dar||Ethiopia|1|11-36N|037-24E|||1820|1805|P -HADC|63|333|Combolcha||Ethiopia|1|11-05N|039-43E|||1864|1916|P -HADM|63|334|Debremarcos||Ethiopia|1|10-21N|037-43E|||2476|2440|P -HADR|63|471|Dire Dawa||Ethiopia|1|09-36N|041-52E|||1146|1146|P -HAGH|--|---|Ghinnir / Ginir ||Ethiopia|1|07-09N|040-43E|||1844|| -HAGN|63|331|Gondar||Ethiopia|1|12-32N|037-26E|||1985|1966|P -HAGO|63|478|Gode||Ethiopia|1|05-06N|044-35E|05-06N|044-35E|320|320|P -HAGR|63|403|Gore||Ethiopia|1|08-10N|035-33E|||1974|1974|P -HAHM|63|451|Harar Meda||Ethiopia|1|08-44N|039-00E|08-44N|039-00E|1876|1876|P -HAJJ|63|473|Jiggiga||Ethiopia|1|09-20N|042-43E|||1644|1644|P -HAJM|63|402|Jimma||Ethiopia|1|07-40N|036-50E|||1676|1577|P -HAKD|--|---|Kabre Dare Military ||Ethiopia|1|06-45N|044-17E|||550|| -HALA|63|460|Awassa||Ethiopia|1|07-04N|038-30E|||1652|1652|P -HAMK|63|330|Makale||Ethiopia|1|13-30N|039-29E|||2212|2212|P -HAML|--|---|Masslo / Meslo ||Ethiopia|1|06-22N|039-50E|||2274|| -HAMS|63|023|Massawa||Ethiopia|1|15-37N|039-27E|||10|10|P -HANG|63|533|Neghelli||Ethiopia|1|05-17N|039-45E|05-17N|039-45E|1455|1455|P -HASB|63|043|Assab||Ethiopia|1|13-04N|042-43E|||14|14|P -HASO|--|---|Assosa / Asosa ||Ethiopia|1|10-02N|034-32E|||1733|| -HATS|--|---|Tessenei / Teseney ||Ethiopia|1|15-07N|036-41E|||615|| -HBBA|64|390|Bujumbura||Burundi|1|03-19S|029-19E|03-19S|029-19E|782|783|P -HCMH|63|170|Hargeisa||Somalia|1|09-30N|044-05E|||1326|| -HCMI|63|160|Berbera||Somalia|1|10-25N|045-01E|||9|| -HCMM|63|260|Mogadiscio||Somalia|1|02-02N|045-21E|02-02N|045-21E|9|9|P -HCMN|63|240|Belet Uen||Somalia|1|04-42N|045-13E|||173|173|P -HCMV|63|175|Burao||Somalia|1|09-30N|045-34E|||1032|| -HDAM|--|---|Djibouti \ Ambouli||Djibouti|1|11-33N|043-10E|||49|| -HEAR|62|337|El Arish||Egypt|1|31-05N|033-49E|31-05N|033-50E|31|32| -HEAT|62|393|Asyut||Egypt|1|27-03N|031-01E|27-11N|031-06E|226|70|P -HEAX|62|318|Alexandria / Nouzha||Egypt|1|31-12N|029-57E|31-12N|029-57E|-2|7|P -HEBA|--|---|Alexandria Borg El Arab||Egypt|1|31-31N|030-10E|||54|| -HECA|62|366|Cairo Airport||Egypt|1|30-08N|031-24E|||64|74|P -HEGN|62|463|Hurguada||Egypt|1|27-09N|033-43E|27-09N|033-43E|16|14| -HELX|62|405|Luxor||Egypt|1|25-40N|032-42E|25-40N|032-42E|93|99|P -HEMM|62|306|Mersa Matruh||Egypt|1|31-20N|027-13E|31-20N|027-13E|25|30| -HEPS|62|333|Port Said||Egypt|1|31-16N|032-18E|31-16N|032-14E|6|6| -HESH|--|---|Sharm El Sheikhintl||Egypt|1|27-58N|034-23E|||50|| -HESN|62|414|Asswan||Egypt|1|23-58N|032-47E|23-58N|032-47E|200|194|P -HETB|--|---|Taba||Egypt|1|29-35-57N|034-46-36E|||749|| -HETR|62|459|El Tor||Egypt|1|28-14N|032-37E|28-14N|033-37E|21|14|P -HFFF|63|125|Djibouti||Djibouti|1|11-33N|043-09E|11-33N|043-09E|13|19|P -HHAS|63|021|Asmara||Ethiopia|1|15-17N|038-55E|15-17N|038-55E|2356|2325|P -HKEL|63|686|Eldoret||Kenya|1|00-32N|035-17E|00-32N|035-17E|2120|2133|P -HKEM|63|720|Embu||Kenya|1|00-30S|037-27E|00-30S|037-27E|1493|1493|P -HKGA|63|723|Garissa||Kenya|1|00-28S|039-38E|00-28S|039-38E|138|147|P -HKIS|--|---|Isiolo ||Kenya|1|00-21N|037-35E|||1067|| -HKJK|--|---|Nairobi/Jomo Kenyatta Airport TWR/APP/NOF/Civil Airlines||Kenya|1|01-19S|036-55E|||1624|1624|P -HKKG|63|687|Kakamega||Kenya|1|00-17N|034-47E|||1530|| -HKKI|63|708|Kisumu||Kenya|1|00-06S|034-45E|00-06S|034-45E|1157|1146|P -HKKR|63|710|Kericho||Kenya|1|00-22S|035-21E|00-22S|035-21E|2184|2184|P -HKKS|63|709|Kisii||Kenya|1|00-40S|034-47E|||1493|| -HKKT|63|661|Kitale||Kenya|1|01-01N|035-00E|01-01N|035-00E|1890|1875|P -HKLO|63|612|Lodwar||Kenya|1|03-07N|035-37E|03-07N|035-37E|506|515|P -HKLU|63|772|Lamu||Kenya|1|02-16S|040-50E|||6||P -HKMA|63|624|Mandera||Kenya|1|03-56N|041-52E|03-56N|041-52E|230|231|P -HKMB|63|641|Marsabit||Kenya|1|02-18N|037-54E|02-18N|037-54E|1219|1345|P -HKME|63|695|Meru||Kenya|1|00-05N|037-39E|00-05N|037-39E|1554|1554|P -HKML|63|799|Malindi||Kenya|1|03-14S|040-06E|03-14S|040-06E|20|23|P -HKMO|63|820|Mombasa||Kenya|1|04-02S|039-37E|04-02S|039-37E|57|55|P -HKMU|63|766|Makindu||Kenya|1|02-17S|037-50E|02-17S|037-50E|1000|1000|P -HKMY|63|619|Moyale||Kenya|1|03-32N|039-03E|03-32N|039-03E|1097|1097|P -HKNA|63|740|Nairobi ACC/FIC/RCC/MET/COM/||Kenya|1|01-19S|036-56E|||1624|| -HKNC|63|741|Nairobi / Dagoretti||Kenya|1|01-18S|036-45E|01-18S|036-45E|1798|1798|P -HKNI|63|717|Nyeri||Kenya|1|00-30S|036-58E|00-30S|036-58E|1759|1759|P -HKNK|63|714|Nakuru||Kenya|1|00-16S|036-06E|00-16S|036-04E|1901|1901|P -HKNO|63|737|Narok||Kenya|1|01-08S|035-50E|01-06S|035-50E|1890|1890|P -HKNW|63|742|Nairobi / Wilson||Kenya|1|01-19S|036-49E|||1683|1679|P -HKNY|--|---|Nanyuki ||Kenya|1|00-04S|037-02E|||1905|| -HKVO|63|793|Voi||Kenya|1|03-24S|038-34E|03-24S|038-34E|579|579|P -HKWJ|63|671|Wajir||Kenya|1|01-45N|040-04E|01-45N|040-04E|244|244|P -HLGT|62|212|Ghat||Libya|1|25-08N|010-09E|25-08N|010-08E|699|693|P -HLKF|62|271|Kufra||Libya|1|24-13N|023-18E|24-13N|023-18E|417|436|P -HLLB|62|053|Benina||Libya|1|32-06N|020-16E|32-05N|020-16E|131|132|P -HLLS|62|124|Sebha||Libya|1|27-01N|014-27E|27-01N|014-26E|435|432|P -HLLT|62|010|Tripoli Inter-National Airport||Libya|1|32-40N|013-09E|32-41N|013-10E|80|82|P -HLTD|62|103|Ghadames||Libya|1|30-08N|009-30E|30-08N|009-30E|346|347|P -HRYG|64|381|Gisenyi||Rwanda|1|01-40S|029-15E|||1556|1554|P -HRYR|64|387|Kigali||Rwanda|1|01-58S|030-07E|01-58S|030-07E|1491|1497|P -HSAT|62|680|Atbara||Sudan|1|17-42N|033-58E|17-42N|033-58E|347|345|P -HSDN|62|650|Dongola||Sudan|1|19-10N|030-29E|19-10N|030-29E|226|226|P -HSDZ|62|805|Damazine||Sudan|1|11-47N|034-23E|11-47N|034-23E|474|470|P -HSFS|62|760|El Fasher||Sudan|1|13-37N|025-20E|13-37N|025-20E|733|730|P -HSGF|62|752|Gedaref||Sudan|1|14-02N|035-24E|14-02N|035-24E|599|599|P -HSGN|62|770|Geneina||Sudan|1|13-29N|022-27E|13-29N|022-27E|805|805|P -HSKA|62|730|Kassala||Sudan|1|15-28N|036-24E|15-28N|036-24E|500|500|P -HSKI|62|772|Kosti||Sudan|1|13-10N|032-40E|13-10N|032-40E|381|381|P -HSLI|62|810|Kadugli||Sudan|1|11-00N|029-43E|||499|499|P -HSNL|62|790|Nyala||Sudan|1|12-03N|024-53E|||67|674|P -HSNR|62|762|Sennar||Sudan|1|13-33N|033-37E|||418|418|P -HSOB|62|771|El Obeid||Sudan|1|13-10N|030-14E|13-10N|030-14E|574|574|P -HSPN|--|---|Port Sudan International||Sudan|1|19-26N|037-14E|||138|| -HSRN|62|801|Renk||Sudan|1|11-45N|032-47E|||282|282| -HSSJ|62|941|Juba||Sudan|1|04-52N|031-36E|04-52N|031-36E|460|457|P -HSSM|62|840|Malakal||Sudan|1|09-33N|031-39E|09-33N|031-39E|387|388|P -HSSP|62|641|Port Sudan||Sudan|1|19-35N|037-13E|19-35N|037-13E|3|2|P -HSSS|62|721|Khartoum||Sudan|1|15-36N|032-33E|15-36N|032-33E|382|380|P -HSSW|62|600|Wadi Halfa||Sudan|1|21-49N|031-29E|21-48N|031-31E|183|183|P -HTAR|63|789|Arusha||Tanzania|1|03-20S|036-37E|03-20S|036-37E|1387|1387|P -HTBU|63|729|Bukoba||Tanzania|1|01-20S|031-49E|01-20S|031-49E|1137|1137|P -HTDA|63|894|Dar Es Salaam Airport||Tanzania|1|06-52S|039-12E|06-52S|039-12E|55|55|P -HTDO|63|862|Dodoma||Tanzania|1|06-10S|035-46E|06-10S|035-46E|1119|1120|P -HTIR|63|887|Iringa||Tanzania|1|07-40S|035-45E|07-40S|035-45E|1426|1428|P -HTKA|63|801|Kigoma||Tanzania|1|04-53S|029-38E|04-53S|029-38E|882|885|P -HTKI|--|---|Kilwa Masoko ||Tanzania|1|08-56S|039-31E|||18|| -HTKJ|63|791|Kilimanjaro Airport||Tanzania|1|03-25S|037-04E|03-25S|037-04E|891|896|P -HTMB|63|932|Mbeya||Tanzania|1|08-56S|033-28E|08-56S|033-28E|1704|1707|P -HTMG|63|866|Morogoro||Tanzania|1|06-50S|037-39E|06-50S|037-39E|526|526|P -HTMO|63|818|Mombo||Tanzania|1|04-53S|038-17E|04-55S|038-14E|511|411| -HTMS|63|790|Moshi||Tanzania|1|03-21S|037-20E|||854|831|P -HTMT|63|971|Mtwara||Tanzania|1|10-16S|040-11E|10-16S|040-11E|113|113|P -HTMU|63|733|Musoma||Tanzania|1|01-30S|033-48E|||1147|1147|P -HTMW|63|756|Mwanza||Tanzania|1|02-28S|032-55E|02-28S|032-55E|1139|1140|P -HTNA|63|969|Nachingwea||Tanzania|1|10-21S|038-45E|||463|465| -HTPE|63|845|Pemba / Karume Airport||Tanzania|1|05-15S|039-49E|||25|| -HTSE|63|816|Same||Tanzania|1|04-05S|037-43E|04-05S|037-43E|872|872|P -HTSO|63|962|Songea||Tanzania|1|10-41S|035-35E|10-41S|035-35E|1067|1067|P -HTSY|--|---|Shinyanga||Tanzania|1|03-30S|033-00E|||1100|| -HTTB|63|832|Tabora Airport||Tanzania|1|05-05S|032-50E|05-05S|032-50E|1181|1190|P -HTTG|63|844|Tanga||Tanzania|1|05-05S|039-04E|05-05S|039-04E|39|35|P -HTZA|63|870|Zanzibar / Kisauni||Tanzania|1|06-13S|039-13E|||15|15|P -HUAR|63|602|Arua||Uganda|1|03-03N|030-55E|03-03N|030-55E|1204|1211|P -HUEN|63|705|Entebbe Airport||Uganda|1|00-03N|032-27E|00-03N|032-27E|1155|1155|P -HUFP|--|---|Fort Portal ||Uganda|1|00-40N|030-17E|||1533|| -HUGU|63|630|Gulu||Uganda|1|02-45N|032-20E|02-45N|032-20E|1104|1105|P -HUJI|63|682|Jinja||Uganda|1|00-27N|033-11E|||1175|1173|P -HUKB|63|726|Kabale||Uganda|1|01-15S|029-59E|01-15S|029-59E|1867|1869|P -HUKS|63|674|Kasese||Uganda|1|00-11N|030-06E|00-11N|030-06E|959|961|P -HULI|--|---|Lira||Uganda|1|02-15N|032-54E|||1091|| -HUMA|63|702|Mbarara||Uganda|1|00-37S|030-39E|00-37S|030-39E|1412|1413|P -HUMI|63|654|Masindi||Uganda|1|01-41N|031-43E|01-41N|031-43E|1146|1147|P -HUMO|--|---|Moroto ||Uganda|1|02-32N|034-39E|||1280|| -HUSO|63|658|Soroti||Uganda|1|01-43N|033-37E|01-43N|033-37E|1132|1123|P -HUTO|63|684|Tororo||Uganda|1|00-41N|034-10E|00-41N|034-10E|1170|1171|P -K01R|74|755|Claiborne Range, Airways Facilities Sector |LA|United States|4|31-08N|092-34W|31-11N|092-38W|67|67| -K01T|--|---|High Island|LA|United States|4|28-08N|094-24W|||30|| -K03Y|--|---|Hallock|MN|United States|4|48-47N|096-57W|||250|| -K04V|--|---|Saguache, Saguache Municipal Airport|CO|United States|4|38-05-50N|106-10-07W|||2385|| -K05F|--|---|Gatesville, City-County Airport|TX|United States|4|31-25-16N|097-47-49W|||276|| -K06D|--|---|Rolla Municipal Airport|ND|United States|4|48-53-04N|099-37-15W|||556|| -K07G|--|---|Charlotte, Fitch H Beach Airport|MI|United States|4|42-34-28N|084-48-41W|||271|| -K07S|--|---|Deer Park, Deer Park Airport|WA|United States|4|47-58-27N|117-25-42W|47-57-44N|117-26-06W|672|668| -K08D|--|---|Stanley Municipal Airport|ND|United States|4|48-18-03N|102-24-23W|||684|| -K0B9|--|---|Goat Island Remote Automatic Meteorological Observing System |ME|United States|4|43-20N|070-24W|||12|| -K0D1|--|---|South Haven, South Haven Area Regional Airport|MI|United States|4|42-21-03N|086-15-22W|||203|| -K0E4|--|---|Payson|AZ|United States|4|34-14N|111-20W|||1498|| -K0J4|--|---|FLORALA AIRPORT|AL|UNITED STATES|4|31-02N|86-18W|||96|| -K0L3|--|---|Zuma Beach|CA|United States|4|34-01N|118-49W|||6|| -K0V1|--|---|Custer, Custer County Airport|SD|United States|4|43-43-59N|103-36-41W|43-44-00N|103-36-50W|1711|1725| -K0VG|--|---|Lee County Airport|VA|United States|4|36-39-14N|083-13-04W|||430|| -K0W8|--|---|Chincoteague|VA|United States|4|37-56N|075-23W|||2|| -K0Y2|--|---|Sturgeon Bay|WI|United States|4|44-47N|087-19W|||176|| -K11J|--|---|Blakely, Early County Airport|GA|United States|4|31-23-49N|084-53-42W|||65|| -K11R|--|---|Brenham, Brenham Municipal Airport|TX|United States|4|30-13-08N|096-22-27W|||94|| -K12B|--|---|New Castles Coast Guard Light Station|NH|United States|4|43-07N|070-29W|||1|| -K12C|--|---|Rochelle, Rochelle Municipal-Koritz Field Airport|IL|United States|4|41-53-35N|089-04-42W|||238|| -K12N|--|---|AEROFLEX-ANDOVER AIRPORT|NJ|United States|4|41-01N|074-44W|41-00-29N|074-44-22W|178|177| -K13A|--|---|Nogales Automatic Meteorological Observing System|AZ|United States|4|31-25N|110-51W|||1198|| -K13G|--|---|Niagara Coast Guard Station|NY|United States|4|43-16N|079-04W|||82|| -K14B|--|---|Great Duck Island Coast Guard Light Station|ME|United States|4|44-09N|068-15W|||1|| -K14C|--|---|Frankfort Coast Guard Station|MI|United States|4|44-38N|086-15W|||174|| -K14R|--|---|Caldwell, Caldwell Municipal Airport|TX|United States|4|30-30-55N|096-42-14W|||119|| -K14Y|--|---|Todd Field Airport|MN|United States|4|45-54N|94-52W|||406|| -K15B|--|---|Halfway Rock Coast Guard Light Station|ME|United States|4|43-39N|070-02W|||1|| -K15C|--|---|Milwaukee Coast Guard Light Station|WI|United States|4|43-01N|087-57W|||179|| -K16B|--|---|Heron Neck Coast Guard Light Station|ME|United States|4|44-02N|068-52W|||1|| -K16C|--|---|Kenosha Coast Guard Station|WI|United States|4|42-35N|087-45W|||223|| -K17C|--|---|Ludington Coast Guard Station|MI|United States|4|43-57N|086-28W|||182|| -K17W|--|---|Wadena, Wadena Municipal Airport|MN|United States|4|46-26-48N|095-12-42W|||418|| -K17Y|--|---|Mc Gregor, Isedor Iverson Airport|MN|United States|4|46-37-07N|093-18-35W|||374|| -K18B|--|---|Monhegan / Manana Island|ME|United States|4|43-46N|069-20W|||1|| -K18C|--|---|Michigan City Coast Guard Station|IN|United States|4|41-43N|086-55W|||177|| -K18N|--|---|New London Ledge Coast Guard Station|CT|United States|4|41-18N|072-05W|||8|| -K19C|--|---|Muskegon Coast Guard Station|MI|United States|4|43-14N|086-20W|||182|| -K19D|--|---|Mora Municipal Automatic Weather Observing / Reporting System |MN|United States|4|45-53N|093-16W|||309|| -K19G|--|---|Buffalo Coast Guard Station|NY|United States|4|42-53N|078-53W|||180|| -K19R|--|---|Ship Shoal Platform|LA|United States|4|28-41N|091-13W|||18|| -K1A5|--|---|Franklin, Macon County Airport|NC|United States|4|35-13N|083-25W|||616|| -K1A6|--|---|Middlesboro, Middlesboro-Bell County Airport|KY|United States|4|36-36-38N|083-44-14W|||352|| -K1B7|--|---|Boothville Heliport|LA|United States|4|29-21N|89-26W|||1|| -K1F0|--|---|Ardmore, Ardmore Downtown Executive Airport|OK|United States|4|34-08-49N|097-07-21W|||257|| -K1F9|--|---|Bridgeport, Bridgeport Municipal Airport|TX|United States|4|33-10-31N|097-49-42W|||260|| -K1G2|--|---|Granite Falls, Granite Falls Municipal Airport/Lenzen-Roe Memorial Field|MN|United States|4|44-45-11N|095-33-21W|||319|| -K1G7|--|---|Mississippi Canyon|LA|United States|4|28-47N|089-03W|||18|| -K1H2|--|---|Effingham, Effingham County Memorial Airport|IL|United States|4|39-04-14N|088-32-00W|||179|| -K1J0|--|---|TRI COUNTY AIRPORT|FL|UNITED STATES|4|30-50N|085-36W|||26|| -K1J1|--|---|Saint Simon Island Coast Guard Station|GA|United States|4|31-08N|081-22W|||1|| -K1J2|--|---|Tybee Coast Guard Station|GA|United States|4|32-01N|080-51W|||2|| -K1J3|--|---|Ponce De Leon Inlet|FL|United States|4|29-04N|080-55W|||3|| -K1J4|--|---|Cape San Blas Coast Guard Station|FL|United States|4|29-41N|085-22W|||2|| -K1J5|--|---|Santa Rosa Coast Guard Station|FL|United States|4|30-19N|087-15W|||2|| -K1K5|72|460|Elkhart / Elkhart-Morton County Airport|KS|United States|4|37-00N|101-53W|||1102|1102|P -K1L2|--|---|Santa Monica Pier|CA|United States|4|34-00N|118-30W|||2|| -K1M4|--|---|Haleyville, Posey Field Airport|AL|United States|4|34-16-49N|087-36-01W|||284|| -K1O5|--|---|Montague|CA|United States|4|41-44N|122-33W|||770|| -K1P1|--|---|Plymouth, Plymouth Municipal Airport|NH|United States|4|43-46-45N|071-45-13W|||154|| -K1V1|--|---|Rifle Aviation Weather Reporting Station |CO|United States|4|39-32N|107-48W|||1622|| -K1V4|72|614|ST JOHNSBURY FAIRBANKS|VT|United States|4|44-25N|072-01W|44-25-10N|072-01-10W|212|210| -K1W9|--|---|Wrightsville Beach|NC|United States|4|34-11N|077-49W|||3|| -K20B|--|---|Rockland Coast Guard Station|ME|United States|4|44-06N|069-06W|||1|| -K20C|--|---|Saint Joseph Coast Guard Station|MI|United States|4|42-07N|086-29W|||176|| -K20G|--|---|Ashtabula Coast Guard Station|OH|United States|4|41-55N|080-48W|||178|| -K20J|--|---|West Jonesport Coast Guard Station|ME|United States|4|44-32N|067-37W|||5|| -K20U|--|---|Beach Airport Beach|ND|United States|4|46-55-31N|103-58-55W|||840|| -K20V|--|---|Kremmling, Mc Elroy Airfield|CO|United States|4|40-03-13N|106-22-08W|||2259|| -K215|--|---|Rantoul, Frank Elliott Field Airport|IL|United States|4|40-17-03N|088-08-03W|||225|| -K21C|--|---|Sheboygan Coast Guard Station|WI|United States|4|43-45N|087-42W|||1|| -K21D|--|---|Lake Elmo Airport|MN|United States|4|44-60N|92-51W|||284|| -K21G|--|---|Marblehead Coast Guard Station|OH|United States|4|41-33N|082-44W|||196|| -K23B|--|---|Seguin Island Coast Guard Light Station|ME|United States|4|43-40N|069-46W|||1|| -K23G|--|---|Cleveland Harbor Coast Guard Station|OH|United States|4|41-30N|081-43W|||181|| -K24B|--|---|West Quoddy Head Coast Guard Light Station|ME|United States|4|44-48N|066-57W|||1|| -K24G|--|---|Toledo Coast Guard Station|OH|United States|4|41-42N|083-27W|||180|| -K25B|--|---|Portsmouth Harbor|NH|United States|4|43-04N|070-43W|||1|| -K25G|--|---|Erie Coast Guard Station|PA|United States|4|42-07N|080-05W|||175|| -K25R|--|---|Edinburg, Edinburg International Airport|TX|United States|4|26-26-31N|098-07-46W|||24|| -K26B|--|---|Isle Of Shoals Coast Guard Station|NH|United States|4|42-58N|070-37W|||1|| -K26G|--|---|Rochester Coast Guard Light Station|NY|United States|4|43-15N|077-36W|||82|| -K27A|--|---|Elberton, Elbert County Airport-Patz Field|GA|United States|4|34-05-42N|082-48-57W|||184|| -K27B|--|---|Cape Neddick Coast Guard Light Station|ME|United States|4|43-10N|070-36W|||12|| -K27G|--|---|Lorain Coast Guard Station|OH|United States|4|41-28N|082-11W|||176|| -K27U|--|---|Salmon|ID|United States|4|45-11N|113-54W|||1210|| -K27Y|--|---|Grand Marais Coast Guard Station|MI|United States|4|46-40N|085-59W|||183|| -K28G|--|---|Oswego Coast Guard Station|NY|United States|4|43-28N|076-31W|||78|| -K28K|--|---|Grncyn Blk52 Supplementary Aviation Weather Reporting Station |LA|United States|4|27-53N|091-30W|||1|| -K28T|--|---|Sabine Pass|TX|United States|4|29-42N|093-57W|||5|| -K28Y|--|---|North Manitou Shoal|MI|United States|4|45-01N|085-57W|||177|| -K29B|--|---|Boston / Hull Coast Guard Light Station|MA|United States|4|42-19N|070-53W|||0|| -K29G|--|---|Ravenna / Portage County|OH|United States|4|41-13N|081-15W|||365|| -K29Y|--|---|Devils Island Light Station|WI|United States|4|47-05N|090-44W|||192|| -K2B8|--|---|Portland Head Coast Guard Light Station|ME|United States|4|43-37N|070-12W|||23|| -K2C2|72|269|White Sands|NM|United States|4|32-23N|106-29W|32-24N|106-22W|1244|1244| -K2C8|--|---|Cavalier Municipal Airport|ND|United States|4|48-47-01N|097-37-55W|||272|| -K2D5|--|---|Oakes Municipal Airport|ND|United States|4|46-10-23N|098-04-48W|||407|| -K2DP|74|695|Dare County Gunnery Range|NC|United States|4|35-40N|075-54W|35-41N|075-54W|3|3| -K2F8|--|---|Bastrop, Morehouse Memorial Airport|LA|United States|4|32-45-21N|091-52-50W|||51|| -K2G6|--|---|Meadville, Port Meadville Airport|PA|United States|4|41-37-33N|080-12-44W|41-37-33N|080-12-39W|426|428| -K2GL|--|---|Galliano, Galliano Heliport|LA|United States|4|29-24-48N|090-17-56W|||2|| -K2H1|--|---|Huntington B. Oil|CA|United States|4|33-34N|118-08W|||36|| -K2I4|--|---|Columbus / Bolton Field|OH|United States|4|39-54N|083-08W|||280|| -K2I5|--|---|Rantoul, Rantoul Natl Aviation Cntr-Frank Elliott Fld Airp.|IL|United States|4|40-17-37N|088-08-33W|||225|| -K2L6|--|---|Marina Del Rey|CA|United States|4|33-58N|118-26W|||8|| -K2L7|--|---|Solana Beach|CA|United States|4|32-59N|117-16W|||5|| -K2P3|--|---|Paynesville, Paynesville Municipal Airport|MN|United States|4|45-22-20N|094-44-47W|||360|| -K2PJ|74|792|Poinsett Range, Sumpter|SC|United States|4|33-51N|080-29W|33-51N|080-29W|68|68| -K2R8|--|---|Port Aransas, Mustang Beach Airport|TX|United States|4|27-48-41N|097-05-20W|||2|| -K2S9|--|---|Willapa Harbor|WA|United States|4|46-42N|123-49W|||5|| -K2U7|--|---|Stanley, Stanley Airport|ID|United States|4|44-12-30N|114-56-04W|||1952|1980| -K2V9|--|---|Gunnison Aviation Weather Reporting Station |CO|United States|4|38-36N|106-55W|||2380|| -K2WX|--|---|BUFFALO|SD|United States|4|45-36N|103-33W|45-36-16N|103-32-48W|916|915| -K30B|--|---|Sandwich Coast Guard Station|MA|United States|4|41-47N|070-30W|||1|| -K30G|--|---|Saginaw River Coast Guard Station|MI|United States|4|43-38N|083-51W|||177|| -K30N|--|---|Faulkner Island Coast Guard Light Station|CT|United States|4|41-13N|072-40W|||15|| -K30Y|--|---|Duluth Harbor Coast Guard Station|MN|United States|4|46-46N|092-05W|||186|| -K31B|--|---|Chatham Coast Guard Station|MA|United States|4|41-40N|069-57W|||1|| -K31F|--|---|Seminole, Gaines County Airport|TX|United States|4|32-40-31N|102-39-09W|||1010|| -K31G|--|---|Belle Isle Coast Guard Station|MI|United States|4|42-20N|082-58W|||177|| -K31Y|--|---|Eagle Harbor Coast Guard Light Station|MI|United States|4|47-28N|088-10W|||186|| -K32N|--|---|Little Gulf Island Light Station|CT|United States|4|41-12N|072-06W|||6|| -K32Y|--|---|Portage Coast Guard Station|MI|United States|4|47-14N|088-38W|||190|| -K33B|--|---|Buzzards Bay Coast Guard Light Station|MA|United States|4|41-23N|071-02W|||1|| -K33G|--|---|Port Huron Coast Guard Station|MI|United States|4|43-00N|082-25W|||177|| -K34B|--|---|Gloucester Coast Guard Station|MA|United States|4|42-35N|070-40W|||1|| -K34N|--|---|Eatons Neck Coast Guard Station|NY|United States|4|40-57N|073-24W|||1|| -K34Y|--|---|Marquette Coast Guard Light Station|MI|United States|4|46-33N|087-23W|||203|| -K35B|--|---|Merrimac River Coast Guard Station|MA|United States|4|42-49N|070-52W|||1|| -K36B|--|---|Race Point Coast Guard Station|MA|United States|4|42-03N|070-11W|||1|| -K36U|--|---|Heber, Heber City Municipal-Russ McDonald Field Airport|UT|United States|4|40-28-55N|111-25-44W|||1718|| -K36Y|--|---|Point Betsie / Frankfort|MI|United States|4|44-37N|086-12W|||183|| -K37B|--|---|Scituate Coast Guard Station|MA|United States|4|42-12N|070-43W|||1|| -K37W|--|---|Erwin, Harnett County Airport|NC|United States|4|35-22-43N|078-44-01W|||60|| -K38Y|--|---|Saint Ignace|MI|United States|4|45-51N|084-43W|||176|| -K39Y|--|---|Tawas Point Coast Guard Station|MI|United States|4|44-15N|083-26W|||178|| -K3A1|--|---|Cullman, Folsom Field Airport|AL|United States|4|34-16-07N|086-51-30W|||294|| -K3A6|--|---|Newhall|CA|United States|4|34-22N|118-34W|||427|| -K3B1|--|---|Greenville, Greenville Municipal Airport|ME|United States|4|45-27-47N|069-33-06W|45-27-44N|069-35-43W|427||P -K3B2|--|---|Marshfield Airport|MA|United States|4|42-06N|070-41W|||3|| -K3B6|--|---|Eugene Island 330|LA|United States|4|28-05N|92-42W|||0|| -K3B9|--|---|Chester, Chester Airport|CT|United States|4|41-23-02N|072-30-21W|||127|| -K3D4|--|---|Frankfort, Frankfort Dow Memorial Field Airport|MI|United States|4|44-37-30N|086-12-02W|||193|| -K3DU|--|---|Drummond|MT|United States|4|46-40N|113-09W|||1202|| -K3HE|--|---|Howell|MI|United States|4|42-38N|083-59W|||293|| -K3HT|--|---|Harlowton|MT|United States|4|46-26N|109-50W|||1268|| -K3I2|--|---|Point Pleasant, Mason County Airport|WV|United States|4|38-54-52N|082-05-54W|||196|| -K3J7|--|---|Greensboro, Greene County Regional Airport|GA|United States|4|33-35-51N|083-08-20W|||206|| -K3KM|--|---|Wichita, Colonel James Jabara Airport|KS|United States|4|37-44-59N|097-13-08W|||434|| -K3L3|--|---|Newport Beach|CA|United States|4|33-36N|117-53W|||3|| -K3LC|--|---|Lincoln, Logan County Airport|IL|United States|4|40-09-31N|089-20-06W|||182|| -K3LF|--|---|Litchfield, Litchfield Municipal Airport|IL|United States|4|39-09-44N|089-40-28W|||210|| -K3MW|--|---|Mount Werner|CO|United States|4|40-26-94N|106-44-95W|||3241|| -K3O6|--|---|Treasure Island|CA|United States|4|37-48N|122-22W|||8|| -K3OI|--|---|Lamoni|IA|United States|4|40-37N|093-57W|||342|| -K3R1|--|---|Bay City, Bay City Municipal Airport|TX|United States|4|28-58N|095-51W|||14|| -K3RN|74|365|Graying Air Force Range|MI|United States|4|44-50N|084-33W|44-50N|084-33W|387|387| -K3S2|--|---|Aurora State|OR|United States|4|45-15N|122-46W|||60|| -K3SE|--|---|Spencer|IA|United States|4|43-10N|095-09W|||404|408|P -K3T1|--|---|Mineola/Quitman, Wood County Airport|TX|United States|4|32-44-31N|095-29-47W|||132|| -K3T5|--|---|La Grange, Fayette Regional Air Center Airport|TX|United States|4|29-54-29N|096-57-00W|||99|| -K3TH|--|---|Thompson Falls|MT|United States|4|47-36N|115-22W|||725|| -K3V8|--|---|Venice Heliport|LA|United States|4|29-07N|089-12W|||80|| -K3W4|--|---|Swansboro / Bogue|NC|United States|4|34-39N|077-06W|||2|| -K40B|--|---|Clayton Lake|ME|United States|4|46-37N|069-32W|||314|| -K40G|--|---|Grand Canyon, Valle Airport|AZ|United States|4|35-39-03N|112-08-46W|||1829|| -K40J|--|---|PERRY-FOLEY AIRPORT|FL|United States|4|30-04N|083-35W|30-04-41N|083-34-48W|14|13| -K40N|--|---|Chester County Airport|PA|United States|4|39-59N|075-52W|||201|| -K40Y|--|---|Thunder Bay Island|MI|United States|4|45-04N|083-33W|||178|| -K41G|--|---|Bath|MI|United States|4|42-51N|084-29W|||261|| -K41I|--|---|Eugene Island|LA|United States|4|28-28N|091-47W|||30|| -K43F|--|---|Litchfield Municipal|MN|United States|4|45-06N|094-30W|||347|| -K43S|--|---|West Point Coast Guard Light Station|WA|United States|4|47-40N|122-26W|||4|| -K44N|--|---|Millbrook / Sky Acres|NY|United States|4|41-42N|073-44W|||213|| -K44W|74|696|Diamond Shoals Coast Guard Station|NC|United States|4|35-09N|075-18W|||1|| -K44Y|--|---|Sault Ste. Marie Coast Guard Station|MI|United States|4|46-30N|084-20W|||176|| -K45B|--|---|Brant Point Coast Guard Station|MA|United States|4|41-17N|070-05W|||8|| -K45J|--|---|Rockingham, Rockingham-Hamlet Airport|NC|United States|4|34-53-27N|079-45-32W|||109|| -K45N|--|---|Bay Shore / Fire Island|NY|United States|4|40-38N|073-16W|||5|| -K45W|--|---|Oracoke Coast Guard Station|NC|United States|4|35-07N|075-59W|||2|| -K46D|--|---|Carrington Municipal Airport|ND|United States|4|47-27-04N|099-09-05W|||490|| -K47A|--|---|Canton, Cherokee County Airport|GA|United States|4|34-18-38N|084-25-26W|||372|| -K48I|--|---|Sutton, Braxton County Airport|WV|United States|4|38-41-13N|080-39-06W|||387|| -K48N|--|---|Montauk Point Coast Guard Light Station|NY|United States|4|41-04N|071-56W|||1|| -K49N|--|---|East Moriches Coast Guard Station|NY|United States|4|40-47N|072-45W|||1|| -K49Y|--|---|Preston, Fillmore County Airport|MN|United States|4|43-40-36N|092-10-47W|||389|| -K4A9|--|---|Fort Payne, Isbell Field Airport|AL|United States|4|34-28-25N|085-43-17W|||267|| -K4BK|--|---|Brookings|OR|United States|4|42-03N|124-17W|||24|| -K4BL|--|---|Blanding |UT|United States|4|37-37N|109-28W|||1840|| -K4BM|--|---|Wilkerson Pass|CO|United States|4|39-03-01N|105-30-52W|||3438|| -K4BQ|--|---|Broadus |MT|United States|4|45-26N|105-24W|||922|| -K4CB|74|618|Cuddleback Gunnery Range|CA|United States|4|35-16N|117-26W|35-16N|117-26W|864|864| -K4CR|--|---|Corona / Lincoln|NM|United States|4|34-06N|105-41W|||1981|| -K4DG|72|568|Douglas|WY|United States|4|42-45N|105-23W|||1477|| -K4F4|--|---|Gilmer, Fox Stephens Field - Gilmer Municipal Airport|TX|United States|4|32-41-56N|094-56-56W|||127|| -K4HV|--|---|Hanksville |UT|United States|4|38-22N|110-43W|||1314|| -K4L7|--|---|Hermosa Beach Pier|CA|United States|4|33-52N|118-24W|||8|| -K4LW|--|---|Lakeview|OR|United States|4|42-13N|120-21W|||1455|| -K4MR|74|638|Melrose Gunnery Range|NM|United States|4|34-18N|103-48W|34-18N|103-48W|1326|1326| -K4MY|--|---|Moriarty|NM|United States|4|34-59N|106-03W|||1890|| -K4O4|--|---|Idabel, Mc Curtain County Regional Airport|OK|United States|4|33-54-33N|094-51-33W|||144|| -K4OM|--|---|Omak|WA|United States|4|48-25N|119-32W|||374|382|P -K4SL|--|---|Torreon|NM|United States|4|35-48N|107-11W|||2106|| -K4SU|74|619|Superior Valley Gunnery Range|CA|United States|4|36-20N|117-06W|36-20N|117-06W|962|962| -K4SV|--|---|Strevell|ID|United States|4|42-01N|113-15W|||1612|| -K4T6|--|---|Midlothian/Waxahachie, Mid-Way Regional Airport|TX|United States|4|32-27-21N|096-54-44W|||217|| -K4V5|--|---|Durango Aviation Weather Reporting Station|CO|United States|4|37-17N|107-52W|||2012|| -K50N|--|---|Rockaway Coast Guard Station|NY|United States|4|40-34N|073-53W|||3|| -K50Q|72|495|Farallon Island|CA|United States|4|37-42N|123-00W|||12|| -K51N|--|---|Short Beach Coast Guard Station|NY|United States|4|40-35N|073-33W|||1|| -K51Q|--|---|San Francisco Pbs |CA|United States|4|37-45N|122-42W|||5|| -K52N|--|---|Wildwood|NJ|United States|4|39-00N|074-49W|||2|| -K52Q|--|---|Davis Point Aviation Weather Reporting Station |CA|United States|4|38-03N|122-16W|||18|| -K53D|--|---|Glenwood|MN|United States|4|45-39N|095-23W|||423|| -K53Q|--|---|Pillar Pt / El Granda|CA|United States|4|37-30N|122-30W|||40|| -K53S|--|---|Point Wilson Coast Guard Light Station|WA|United States|4|48-07N|122-45W|||1|| -K54N|--|---|Manasquan Inl Coast Guard Station|NJ|United States|4|40-06N|074-01W|||1|| -K54Q|--|---|Castroville / Moss|CA|United States|4|36-48N|121-48W|||5|| -K55D|--|---|Grayling, Grayling AAF Airport|MI|United States|4|44-40-49N|084-43-44W|||353|| -K55N|--|---|Atlantic City Coast Guard Station|NJ|United States|4|39-23N|074-25W|||4|| -K56N|--|---|Sandy Hook Coast Guard Station|NJ|United States|4|40-28N|074-01W|||5|| -K5D3|--|---|Owosso, Owosso Community Airport|MI|United States|4|42-59-34N|084-08-20W|||224|| -K5G9|--|---|Lambertville, Toledo Suburban Airport|MI|United States|4|41-44-09N|083-39-19W|||204|| -K5H4|--|---|Harvey Municipal Airport|ND|United States|4|47-47-28N|099-55-54W|||490|| -K5I3|--|---|Pikeville Remote Automatic Meteorological Observing System |KY|United States|4|37-29N|082-31W|||446|| -K5J0|--|---|John Day, John Day State Airport|OR|United States|4|44-24-15N|118-57-45W|||1127|| -K5L8|--|---|Long Beach |CA|United States|4|33-46N|118-10W|||3|| -K5R0|--|---|East Addition B323|TX|United States|4|28-13N|093-45W|||26|| -K5R5|--|---|Wharton, Wharton Regional Airport|TX|United States|4|29-15-15N|096-09-15W|||31|| -K5SM|--|---|Sunlight|CO|United States|4|39-25-32N|107-22-45W|||3232|| -K5T5|--|---|Hillsboro, Hillsboro Municipal Airport|TX|United States|4|32-05-00N|097-05-50W|||209|| -K5T6|--|---|Santa Teresa, Dona Ana County Airport at Santa Teresa|NM|United States|4|31-52-51N|106-42-17W|||1253|| -K60Y|--|---|Slayton, Slayton Municipal Airport|MN|United States|4|43-59-12N|095-46-57W|||495|| -K61N|--|---|Indian River Coast Guard Station|DE|United States|4|38-37N|075-04W|||1|| -K61W|--|---|Annapolis Coast Guard Station|MD|United States|4|38-55N|076-28W|||8|| -K62G|--|---|Wilmette Marines|IL|United States|4|42-04N|087-41W|||183|| -K62H|--|---|Giddings, Giddings-Lee County Airport|TX|United States|4|30-10-09N|096-58-48W|||148|| -K62W|--|---|Cape Henry Coast Guard Light Station|VA|United States|4|36-56N|076-00W|||1|| -K63G|--|---|Chicago / Calumet Coast Guard Station|IL|United States|4|41-43N|087-32W|||180|| -K63W|--|---|Milford Haven Coast Guard Station|VA|United States|4|37-29N|076-19W|||1|| -K64W|--|---|Parramore Beach|VA|United States|4|37-32N|075-37W|||1|| -K65W|--|---|Thomas Point Coast Guard Station|MD|United States|4|38-54N|076-26W|||1|| -K66W|--|---|Cove Point Coast Guard Light Station|MD|United States|4|38-23N|076-23W|||1|| -K67B|--|---|Castle Hill Coast Guard Station|RI|United States|4|41-27N|071-21W|||15|| -K67W|--|---|Stillpond Coast Guard Station|MD|United States|4|39-20N|076-06W|||8|| -K69R|--|---|Rocksprings, Edwards County Airport|TX|United States|4|29-56-48N|100-10-25W|||723|| -K6A3|--|---|Andrews, Andrews-Murphy Airport|NC|United States|4|35-11-40N|083-51-53W|||518|| -K6L9|--|---|Huntington Beach|CA|United States|4|33-39N|118-00W|||35|| -K6R6|--|---|DRYDEN-TERRELL COUNTY AIRPORT|TX|United States|4|30-03N|102-13W|||708|701| -K6R9|--|---|Llano, Llano Municipal Airport|TX|United States|4|30-47-01N|098-39-43W|||336|| -K6V3|--|---|Richlands, Tazewell County Airport|VA|United States|4|37-03-49N|081-47-53W|||808|| -K75S|--|---|Burlington / Mt Vern|WA|United States|4|48-28N|122-25W|||43|| -K76S|--|---|Oak Harbor Airpark|WA|United States|4|48-15N|122-40W|||58|| -K77M|--|---|Malta|ID|United States|4|42-19N|113-20W|||1375|| -K77W|--|---|Cape Lookout Coast Guard Station|NC|United States|4|34-36N|076-32W|||4|| -K78D|--|---|Caro, Tuscola Area Airport|MI|United States|4|43-27-31N|083-26-43W|||214|| -K78N|--|---|Reidsville, Rockingham County NC Shiloh Airport|NC|United States|4|36-26-14N|079-51-03W|||211|| -K78W|--|---|South Port / Oak Island Coast Guard Station|NC|United States|4|33-53N|078-01W|||1|| -K79J|--|---|OPP/ANDALUSIA|AL|United States|4|31-18N|86-23W|||94|94| -K79W|--|---|Oregon Inlet Coast Guard Station|NC|United States|4|35-46N|075-31W|||1|| -K7A9|--|---|Plains / Peterson Field|GA|United States|4|32-05N|084-22W|||160|| -K7B5|--|---|West Cameron 560A|LA|United States|4|28-17N|93-11W|||0|| -K7BM|--|---|Cottonwood Pass|CO|United States|4|38-46-57N|106-13-05W|||2995|| -K7D2|--|---|Troy, Oakland/Troy Airport|MI|United States|4|42-32-34N|083-10-40W|||222|| -K7F6|--|---|Clarksville, Clarksville-Red River County Airport|TX|United States|4|33-35-35N|095-03-48W|||134|| -K7F9|--|---|Comanche, Comanche County-City Airport|TX|United States|4|31-55N|098-36-01W|||423|| -K7L2|--|---|Linton Municipal Airport|ND|United States|4|46-13-14N|100-14-44W|||542|| -K7R1|--|---|Venice, Venice Heliport|LA|United States|4|29-15-46N|089-21-48W|29-15-45N|089-21-46W|0|3| -K7R2|--|---|Leeville|LA|United States|4|29-13N|090-14W|||2|| -K7R3|--|---|Amelia / Lake Palourd|LA|United States|4|29-42N|091-06W|||2|| -K7R4|--|---|Intracoastal City|LA|United States|4|29-47N|092-08W|||5|| -K7R5|--|---|Cameron Heliport|LA|United States|4|29-47N|093-18W|||1|| -K7R8|--|---|South Marsh Island|LA|United States|4|28-18N|091-59W|||1|| -K82S|--|---|Cape Disappointment|WA|United States|4|46-17N|124-03W|||55|| -K83S|--|---|Coos Bay Coast Guard Station|OR|United States|4|43-21N|124-20W|||23|| -K84J|--|---|Folly Beach Long Range Navigation|SC|United States|4|32-41N|079-53W|||3|| -K84Q|--|---|Blunts Reef Coast Guard Station|CA|United States|4|40-26N|124-30W|||8|| -K84S|--|---|Grays Harbor Coast Guard Station|WA|United States|4|46-55N|124-06W|||6|| -K85J|--|---|Georgetown Coast Guard Light Station|SC|United States|4|33-13N|079-11W|||8|| -K85Q|--|---|Santa Cruz Harbor|CA|United States|4|36-58N|122-00W|||1|| -K85S|--|---|Siuslaw River Coast Guard Station|OR|United States|4|44-00N|124-07W|||12|| -K86J|--|---|Sullivans Island Coast Guard Station|SC|United States|4|32-46N|079-51W|||3|| -K86Q|--|---|St George Reef Coast Guard Light Station|CA|United States|4|41-50N|124-24W|||45|| -K86S|--|---|Smith Island Coast Guard Light Station|WA|United States|4|48-19N|122-51W|||1|| -K87Q|72|390|Point Piedras Blanca|CA|United States|4|35-39-56N|121-17-05W|||17|27|P -K87S|--|---|Quillayute River Coast Guard Light Station|WA|United States|4|47-54N|124-38W|||1|| -K88Q|--|---|Samoa / Humboldt Bay|CA|United States|4|40-46N|124-14W|||2|| -K88S|--|---|Tillamook Bay Coast Guard Station|OR|United States|4|45-34N|123-55W|||15|| -K89Q|--|---|Point Arena Coast Guard Light Station|CA|United States|4|38-57N|123-44W|||18|| -K8A0|--|---|Albertville, Albertville Municipal Airport|AL|United States|4|34-13-44N|086-15-20W|||315|| -K8B9|--|---|Egg Rock Light Station|ME|United States|4|44-21N|068-08W|||12|| -K8D3|--|---|SISSETON MUNICIPAL AIRPORT|SD|United States|4|45-40N|096-59W|45-40-04N|096-59-52W|354|354| -K8F7|--|---|Decatur, Decatur Municipal Airport|TX|United States|4|33-15-16N|097-34-50W|||319|| -K8R0|--|---|Pascagoula Coast Guard Station|MS|United States|4|30-22N|088-34W|||8|| -K8R1|--|---|Mobile Point Coast Guard Station|AL|United States|4|30-14N|088-02W|||1|| -K8R3|--|---|Southwest Pass Coast Guard Station|LA|United States|4|28-55N|089-26W|||1|| -K8R5|--|---|Grand Isle Coast Guard Station|LA|United States|4|29-16N|089-57W|||2|| -K8R6|--|---|Calcasieu Coast Guard Station|LA|United States|4|29-47N|093-21W|||1|| -K8R7|--|---|Sabine Pass Coast Guard Station|TX|United States|4|29-44N|093-52W|||1|| -K8R8|--|---|Freeport Coast Guard Station|TX|United States|4|28-57N|095-18W|||2|| -K8S0|--|---|Browning, Starr-Browning Airstrip|MT|United States|4|48-36-04N|113-06-53W|||1419|| -K8Y2|--|---|Buffalo, Buffalo Municipal Airport|MN|United States|4|45-09-32N|093-50-35W|||295|| -K8Y8|--|---|Crane Lake Automatic Weather Observing / Reporting System|MN|United States|4|46-16N|092-34W|||350|| -K90S|--|---|Umpqua River Coast Guard Station|OR|United States|4|43-41N|124-10W|||41|| -K91Q|--|---|Point Blunt Coast Guard Light Station|CA|United States|4|37-51N|122-25W|||73|| -K91S|--|---|Alki Point Coast Guard Light Station|WA|United States|4|47-31N|122-25W|||1|| -K92Q|--|---|Bodega Bay Coast Guard Light Station|CA|United States|4|38-19N|123-03W|||3|| -K92S|--|---|Cape Blanco Coast Guard Station|OR|United States|4|42-50N|124-34W|||57|| -K93Q|--|---|Pigeon Point Coast Guard Light Station|CA|United States|4|37-11N|122-24W|||1|| -K93S|--|---|Cape Flattery Coast Guard Light Station|WA|United States|4|48-23N|124-44W|||26|| -K94B|--|---|Wood Island Light Station|ME|United States|4|43-27N|070-19W|||9|| -K94Q|--|---|Point Bonita Coast Guard Light Station|CA|United States|4|37-48N|122-31W|||1|| -K95B|--|---|Cape Vincent Marine Aviation Reporting Station|NY|United States|4|44-07N|076-20W|||75|| -K95Q|--|---|Point Pinos Coast Guard Light Station|CA|United States|4|36-38N|121-56W|||6|| -K95S|--|---|Yaquina Bay Coast Guard Station|OR|United States|4|44-37N|124-03W|||1|| -K96B|--|---|Owl's Head Light Station|ME|United States|4|44-05N|069-02W|||15|| -K96D|--|---|Walhalla Municipal Airport|ND|United States|4|48-56-26N|097-54-10W|290|| -K96Q|--|---|Trinidad Head Coast Guard Light Station|CA|United States|4|41-03N|124-09W|||58|| -K96S|--|---|New Dungeness Coast Guard Station|WA|United States|4|48-10N|123-06W|||12|| -K97Q|--|---|Point Reyes Coast Guard Station|CA|United States|4|38-00N|123-01W|||87|| -K97S|--|---|Point No Point Coast Guard Station|WA|United States|4|47-55N|122-32W|||1|| -K98Q|--|---|Rio Vista Coast Guard Light Station|CA|United States|4|38-09N|121-42W|||1|| -K99M|--|---|Moorhead, Moorhead Municipal Airport|MN|United States|4|46-50-21N|096-39-47W|||280|| -K99Q|--|---|Port Chicago|CA|United States|4|38-02N|122-02W|||12|| -K99S|--|---|Point Robinson Coast Guard Light Station|WA|United States|4|47-23N|122-22W|||0|| -K9B2|72|612|Newport|VT|United States|4|44-56N|072-12W|||233|233| -K9B5|--|---|Bear Island Coast Guard Station|ME|United States|4|44-17N|068-16W|||12|| -K9BB|--|---|Wells|NV|United States|4|41-07N|114-58W|||1722|| -K9D7|--|---|Cando Municipal Airport|ND|United States|4|48-28-48N|099-14-11W|||451|| -K9F2|--|---|Fourchon Supplementary Aviation Weather Reporting Station|LA|United States|4|29-06N|090-12W|||2|| -K9L0|--|---|Dana Point|CA|United States|4|33-27N|117-41W|||15|| -K9L2|--|---|Edwards, Edwards Air Force Auxiliary North Base|CA|United States|4|34-59N|117-51W|||701|| -K9R0|--|---|Galveston Coast Guard Station|TX|United States|4|29-20N|094-46W|||1|| -K9R1|--|---|Port Aransas Coast Guard Station|TX|United States|4|27-50N|097-04W|||1|| -K9V9|72|653|CHAMBERLAIN MUNICIPAL AIRPORT|SD|United States|4|43-46N|099-19W|43-46-00N|099-19-06W|517|519| -K9W7|--|---|Currituck, Currituck County Airport|NC|United States|4|36-23-56N|076-00-58W|||5|| -KA21|--|---|Portage Glacier, Portage Visitor Center|AK|United States|4|60-47-03N|148-50-46W|60-47-59N|148-50-20W|31|28| -KAAA|--|---|Lincoln, Logan County Airport|IL|United States|4|40-09-31N|089-20-06W|||182|| -KAAF|72|220|APALACHICOLA MUNICIPAL AIRPORT|FL|United States|4|29-44N|085-01W|29-43-20N|085-01-32W|6|5| -KAAO|--|---|WICHITA JABARA AIRPORT|KS|United States|4|37-45N|97-13W|37-44-52N|097-13-28W|433|434| -KAAT|--|---|ALTURAS|CA|United States|4|41-29N|120-34W|41-28-59N|120-33-51W|1333|1331| -KABE|72|517|LEHIGH VALLEY INTERNATIONAL AIRPORT|PA|United States|4|40-39N|075-27W|40-39-12N|075-25-59W|120|114| -KABI|72|266|ABILENE REGIONAL AIRPORT|TX|United States|4|32-25N|099-41W|32-24-45N|099-40-52W|546|548| -KABQ|72|365|ALBUQUERQUE INTERNATIONAL AIRPORT|NM|United States|4|35-02N|106-36W|35-02-13N|106-37-18W|1631|1618| -KABR|72|659|ABERDEEN REGIONAL AIRPORT|SD|United States|4|45-27N|098-25W|45-27-25N|098-25-36W|397|400| -KABX|--|---|Albuquerque Nexrad|NM|United States|4|35-09N|106-49W|||1814|| -KABY|72|216|ALBANY SOUTHWEST GEORGIA|GA|United States|4|31-32N|084-12W|31-32-12N|084-14-3W|60|58| -KACB|--|---|Bellaire, Antrim County Airport|MI|United States|4|44-59-18N|085-11-54W|||190|| -KACK|--|---|NANTUCKET MEMORIAL AIRPORT|MA|United States|4|41-15N|70-04W|41-15-26N|070-03-49W|15|16| -KACP|--|---|Oakdale, Allen Parish Airport|LA|United States|4|30-45-02N|092-41-19W|||33|| -KACQ|--|---|Waseca, Waseca Municipal Airport|MN|United States|4|44-04-24N|093-33-11W|||343|| -KACT|72|256|WACO REGIONAL AIRPORT|TX|United States|4|31-36N|97-13W|31-36-33N|097-13-18W|157|151| -KACV|--|---|ARCATA/EUREKA ARCATA AIRPORT|CA|United States|4|40-59N|124-06W|40-58-14N|124-06-25W|66|67| -KACY|72|407|ATLANTIC CITY INTERNATIONAL|NJ|United States|4|39-28N|74-35W|39-26-58N|074-34-02W|23|35| -KADC|--|---|Wadena, Wadena Municipal Airport|MN|United States|4|46-27-01N|095-12-39W|||417|| -KADG|--|---|ADRIAN LENAWEE COUNTY AIRPORT|MI|United States|4|41-52N|84-05W|41-52-24N|084-04-28W|243|241| -KADH|--|---|Ada, Ada Municipal Airport|OK|United States|4|34-48-16N|096-40-17W|||310|| -KADM|--|---|Ardmore, Ardmore Municipal Airport|OK|United States|4|34-18-11N|097-01-10W|||232|| -KADQ|--|---|Kodiak, Kodiak Airport|AK|United States|4|57-45-04N|152-29-08W|57-44-52N|152-29-29W|22|33| -KADS|--|---|Dallas / Addison Airport|TX|United States|4|32-58N|096-50W|||196|| -KADU|--|---|Audubon, Audubon County Airport|IA|United States|4|41-42-04N|094-55-13W|||392|| -KADW|74|594|Camp Springs / Andrews Air Force Base|MD|United States|4|38-49N|076-51W|||86|88|P -KAEG|--|---|Albuquerque, Double Eagle II Airport|NM|United States|4|35-08-42N|106-47-42W|||1779|| -KAEJ|--|---|Buena Vista|CO|United States|4|38-48-51N|106-07-14W|||2422|| -KAEL|--|---|Albert Lea, Albert Lea Municipal Airport|MN|United States|4|43-41N|093-22W|||384|| -KAEX|74|754|ALEXANDRIA INTERNATIONAL AIRPORT|LA|United States|4|31-33N|092-56W|31-19-26N|092-32-37W|27|27| -KAFF|74|531|Air Force Academy|CO|United States|4|38-58N|104-49W|38-58N|104-49W|2003|1999| -KAFJ|--|---|Washington, Washington County Airport|PA|United States|4|40-08N|080-17W|||361|| -KAFK|--|---|Nebraska City, Nebraska City Municipal Airport|NE|United States|4|40-36N|095-51W|||354|| -KAFN|--|---|JAFFREY MUNI-SILVER RANCH|NH|United States|4|42-48N|72-00W|42-48-23N|072-00-10W|317|313| -KAFP|--|---|Wadesboro, Anson County Airport|NC|United States|4|35-01-14N|080-04-37W|||91|| -KAFW|--|---|FORT WORTH ALLIANCE AIRPORT|TX|United States|4|32-59N|097-19W|32-59-17N|097-18-39W|220|233| -KAGC|--|---|PITTSBURGH ALLEGHENY CTY.|PA|United States|4|40-21N|079-55W|40-20-44N|079-55-37W|382|389| -KAGR|74|796|Avon Park Gunnery Range|FL|United States|4|27-39N|081-20W|27-39N|081-20W|20|20| -KAGS|72|218|AUGUSTA BUSH FIELD|GA|United States|4|33-22N|081-58W|33-22-18N|081-58-27W|44|44| -KAHN|72|311|ATHENS BEN EPPS AIRPORT|GA|United States|4|33-57N|083-20W|33-57-05N|083-19-25W|246|244| -KAIA|--|---|ALLIANCE MUNICIPAL AIRPORT|NE|United States|4|42-03N|102-48W|42-03-51N|102-48-57W|1198|1196| -KAID|--|---|Anderson Municipal|IN|United States|4|40-07N|085-37W|||280|| -KAIG|--|---|Antigo, Langlade County Airport|WI|United States|4|45-09N|089-06W|||464|| -KAIO|--|---|Atlantic|IA|United States|4|41-24N|095-03W|||360|| -KAIT|--|---|Aitkin, Aitkin Municipal Airport-Steve Kurtz Field|MN|United States|4|46-33N|093-41W|||367|| -KAIZ|--|---|Kaiser Lake Ozark, Lee C Fine Memorial Airport|MO|United States|4|38-06N|092-33W|||265|| -KAJG|--|---|Mount Carmel, Mount Carmel Municipal Airport|IL|United States|4|38-36-23N|087-43-36W|||131|| -KAKH|--|---|GASTONIA MUNICIPAL AIRPORT|NC|United States|4|35-12N|81-09W|35-12-01N|081-09-12W|243|243| -KAKO|--|---|COLORADO PLAINS REGIONAL|CO|United States|4|40-10N|103-13W|40-10-15N|103-12-31W|1437|1421| -KAKQ|--|---|WAKEFIELD MUNICIPAL AIRPOR|VA|United States|4|36-59N|077-00W|36-58-48N|077-00-08W|34|33| -KAKR|--|---|AKRON FULTON INTERNATIONAL|OH|United States|4|41-02N|081-28W|41-02-17N|081-27-26W|326|363| -KAKW|--|---|Klawock, Klawock Airport|AK|United States|4|55-34-34N|133-04-34W|55-34-49N|133-04-08W|15|18| -KALB|72|518|ALBANY INTERNATIONAL AIRPORT|NY|United States|4|42-45N|73-48W|||87|| -KALI|--|---|ALICE INTERNATIONAL AIRPORT|TX|United States|4|27-44N|098-01W|27-44-31N|098-01-59W|54|53| -KALM|--|---|Alamogordo-White|NM|United States|4|32-50N|105-59W|||1279|| -KALN|--|---|Alton/St. Louis, St. Louis Regional Airport|IL|United States|4|38-54N|090-03W|||166|| -KALO|72|548|WATERLOO MUNICIPAL AIRPORT|IA|United States|4|42-33N|92-24W|42-33-00N|092-23-52W|266|264| -KALS|72|462|SAN LUIS VALLEY REGIONAL|CO|United States|4|37-26N|105-52W|37-26-36N|105-51-52W|2297|2299| -KALW|--|---|WALLA WALLA REGIONAL AIRPORT|WA|United States|4|46-06N|118-17W|46-05-35N|118-16-55W|367|363| -KALX|--|---|Alexander City, Thomas C Russell Field Airport|AL|United States|4|32-54-53N|085-57-46W|||209|| -KAMA|72|363|AMARILLO INTERNATIONAL AIRPORT|TX|United States|4|35-13N|101-43W|35-13-58N|101-42-28W|1099|1093| -KAMG|--|---|ALMA BACON COUNTY AIRPORT|GA|United States|4|31-32N|82-30W|31-32-27N|082-30-30W|61|59| -KAMN|--|---|Alma, Gratiot Community Airport|MI|United States|4|43-19-19N|084-41-16W|||229|| -KAMW|--|---|AMES MUNICIPAL AIRPORT|IA|United States|4|41-59N|93-37W|41-59-57N|093-37-22W|291|279| -KAMX|--|---|Miami Nexrad|FL|United States|4|25-37N|080-25W|||34|| -KANB|--|---|ANNISTON METRO AIRPORT|AL|United States|4|33-35N|085-51W|33-35-25N|085-51-04W|187|183| -KAND|--|---|ANDERSON COUNTY AIRPORT|SC|United States|4|34-30N|82-43W|34-30-04N|082-42-54W|238|239| -KANE|--|---|Minneapolis / Blaine|MN|United States|4|45-09N|093-13W|||278|| -KANJ|72|734|SAULT STE. MARIE MUNI|MI|United States|4|46-29N|084-21W|46-28-45N|084-21-24W|218|219| -KANN|--|---|Annette, Annette Island Airport|AK|United States|4|55-01-49N|131-34-34W|55-01-44N|131-34-38W|36|34| -KANW|--|---|Ainsworth Municipal|NE|United States|4|42-35N|100-00W|||789|| -KAOH|--|---|LIMA ALLEN COUNTY AIRPORT|OH|United States|4|40-42N|84-01W|40-42-17N|084-01-36W|297|296| -KAOO|--|---|ALTOONA-BLAIR COUNTY AIRPORT|PA|United States|4|40-18N|78-19W|40-17-37N|078-19-20W|458|455| -KAPA|--|---|DENVER CENTENNIAL AIRPORT|CO|United States|4|39-34N|104-51W|39-34-30N|104-50-42W|1793|1775| -KAPC|--|---|NAPA COUNTY AIRPORT|CA|United States|4|38-12N|122-17W|38-12-28N|122-16-41W|10|13| -KAPF|--|---|NAPLES MUNICIPAL AIRPORT|FL|United States|4|26-09N|081-46W|||3|| -KAPG|--|---|Phillips Army Air Field / Aberdeen|MD|United States|4|39-28N|076-10W|||18|| -KAPN|72|639|ALPENA COUNTY REGIONAL AIRPORT|MI|United States|4|45-05N|083-34W|45-04-12N|083-33-59W|210|210| -KAPV|--|---|Apple Valley|CA|United States|4|34-35N|117-11W|||932|| -KAQO|--|---|Llano, Llano Municipal Airport|TX|United States|4|30-47-01N|098-39-43W|||336|| -KAQP|--|---|Appleton, Appleton Municipal Airport|MN|United States|4|45-13-39N|096-00-15W|||310|| -KAQQ|72|220|Apalachicola, Apalachicola|FL|United States|4|29-43-37N|085-01-29W|29-43-20N|085-01-32W|6|5|P -KAQR|--|---|Atoka, Atoka Municipal Airport|FL|United States|4|34-23-54N|096-08-53W|||180|| -KAQV|--|---|Ft. Polk, Peason Ridge|LA|United States|4|31-40N|093-27W|||111|| -KAQW|--|---|N ADAMS HARRIMAN-AND-WEST|MA|United States|4|42-42N|073-10W|42-41-50N|073-09-51W|199|201| -KARA|--|---|NEW IBERIA ACADIANA REGIONAL|LA|United States|4|30-02N|091-53W|30-01-47N|091-52-35W|7|18| -KARB|--|---|ANN ARBOR MUNICIPAL AIRPORT|MI|United States|4|42-13N|083-45W|42-13-31N|083-44-47W|256|251| -KARG|--|---|Walnut Ridge, Walnut Ridge Regional Airport|AR|United States|4|36-08N|090-55W|||83|| -KARL|--|---|Arlington|WY|United States|4|41-42N|106-13W|||2179|| -KARM|--|---|Wharton, Wharton Regional Airport|TX|United States|4|29-15-15N|096-09-15W|||31|| -KARR|--|---|CHICAGO AURORA MUNICIPAL|IL|United States|4|41-46N|088-28W|41-46-05N|088-27-57W|217|215| -KART|--|---|WATERTOWN INTERNATIONAL AIRPORT|NY|United States|4|43-59N|076-02W|43-59-38N|076-01-25W|99|100| -KARV|--|---|Minocqua/Woodruff, Lakeland Airport/Noble F. Lee Memorial Field|WI|United States|4|45-56N|089-44W|||497|| -KASD|--|---|SLIDELL AIRPORT|LA|United States|4|30-21N|89-49W|30-20-25N|089-49-20W|9|8| -KASE|--|---|ASPEN-PITKIN COUNTY AIRPORT|CO|United States|4|39-14N|106-52W|39-13-33N|106-52-04W|2384|2354| -KASG|--|---|Springdale Municipal|AR|United States|4|36-11N|094-07W|||412|| -KASH|--|---|Nashua, Boire Field Airport|NH|United States|4|42-46-54N|071-30-53W|||61|| -KASJ|--|---|Ahoskie, Tri-County Airport|NC|United States|4|36-17-51N|077-10-15W|||21|| -KAST|72|791|PORT OF ASTORIA AIRPORT|OR|United States|4|46-09N|123-53W|46-09-22N|123-52-51W|3|3| -KASW|--|---|Warsaw, Warsaw Municipal Airport|IN|United States|4|41-16-28N|085-50-24W|||259|| -KASX|--|---|ASHLAND KENNEDY MEMORIAL|WI|United States|4|46-33N|090-55W|46-33-09N|090-54-57W|252|251| -KATL|72|219|HARTSFIELD-JACKSON ATLANTA|GA|United States|4|33-39N|84-26W|||313|| -KATP|--|---|Atlantis|LA|United States|4|27-11-44N|090-01-37W|||||| -KATS|--|---|Artesia, Artesia Municipal Airport|NM|United States|4|32-51-09N|104-28-03W|||1079|| -KATT|72|254|CAMP MABRY/AUSTIN CITY ASOS|TX|United States|4|30-19N|097-46W|||201|| -KATW|--|---|Appleton / Outagamie|WI|United States|4|44-15N|088-31W|||280|| -KATX|--|---|Seattle NEXRAD|WA|United States|4|48-12N|122-30W|||185|| -KATY|--|---|WATERTOWN MUNICIPAL AIRPORT|SD|United States|4|44-54N|097-09W|44-55-17N|097-09-38W|533|532| -KAUB|--|---|Auburn University Automatic Meteorological Observing System|AL|United States|4|32-36N|085-30W|||198|| -KAUD|--|---|Audubon Park|LA|United States|4|29-56N|090-08W|||2|| -KAUG|--|---|AUGUSTA STATE AIRPORT|ME|United States|4|44-19N|069-48W|44-19-03N|069-47-39W|107|109| -KAUH|--|---|Aurora, Aurora Municipal Airport|NE|United States|4|40-53-38N|097-59-40W|||550|| -KAUM|--|---|Austin Municipal|MN|United States|4|43-40N|092-56W|||375|| -KAUN|--|---|Auburn, Auburn Municipal Airport|CA|United States|4|38-57N|121-04W|||467|| -KAUO|--|---|Auburn-Opelika Airport|AL|United States|4|32-37N|085-26W|||236|| -KAUS|--|---|AUSTIN-BERGSTROM INTERNATIONAL AIRPORT|TX|United States|4|30-11N|097-41W|30-11-57N|097-40-13W|165|172| -KAUW|--|---|WAUSAU DOWNTOWN AIRPORT|WI|United States|4|44-56N|089-37W|44-55-46N|089-37-39W|366|362| -KAVC|--|---|South Hill, Mecklenburg-Brunswick Regional Airport|VA|United States|4|36-41-19N|078-03-15W|||135|| -KAVK|--|---|Alva, Alva Regional Airport|OK|United States|4|36-46-23N|098-40-12W|||449|| -KAVL|72|315|ASHEVILLE REGIONAL AIRPORT|NC|United States|4|35-26N|82-32W|35-26-04N|082-32-14W|660|670| -KAVP|72|513|WILKES-BARRE/SCRANTON INTERNATIONAL |PA|United States|4|41-20N|75-44W|41-20-10N|075-43-50W|293|291| -KAVX|72|292|AVALON CATALINA AIRPORT|CA|United States|4|33-24N|118-25W|33-24-12N|118-24-48W|488|482| -KAWG|--|---|Washington|IA|United States|4|41-17N|091-40W|||230|| -KAWH|--|---|Wildhorse Reservation / Elko|NV|United States|4|41-40N|115-47W|||1902|| -KAWI|--|---|Wainwright, Wainwright Airport|AK|United States|4|70-38-19N|160-00-24W|70-38-19N|160-00-24W|9|8| -KAWM|--|---|WEST MEMPHIS MUNICIPAL AIRPORT|AR|United States|4|35-08N|090-14W|||65|| -KAWO|--|---|Arlington Municipal|WA|United States|4|48-10N|122-10W|||42|| -KAXA|--|---|Algona|IA|United States|4|43-05N|094-16W|||372|| -KAXN|--|---|CHANDLER FIELD|MN|United States|4|45-52N|095-24W|45-51-55N|095-23-23W|434|433| -KAXO|--|---|Grand Isle Supplementary Aviation Weather Reporting Station|LA|United States|4|29-15N|089-58W|||2|| -KAXS|--|---|Altus, Altus/Quartz Mountain Regional Airport|OK|United States|4|34-41-55N|099-20-17W|||437|| -KAYE|--|---|Fort Devens / Ayer|MA|United States|4|42-34N|071-36W|||82|| -KAYS|72|213|Waycross / Ware County, Ga|GA|United States|4|31-15N|082-24W|31-15N|082-24W|46|46|P -KAZC|--|---|Colorado City, Colorado City Municipal Airport|AZ|United States|4|36-57N|113-00W|||1486|| -KAZO|--|---|KALAMAZOO/BATTLE CREEK AIRPORT|MI|United States|4|42-14N|085-33W|42-14-22N|085-33-22W|266|272| -KB23|--|---|Battle Mountain|NV|United States|4|40-36N|116-52W|||1381|| -KBAB|--|---|Marysville, Beale Air Force Base|CA|United States|4|39-08N|121-26W|||34|| -KBAC|--|---|Barnes County Municipal Airport|ND|United States|4|46-56-28N|098-01-05W|||427|| -KBAD|--|---|Barksdale Air Force Base|LA|United States|4|32-30N|093-40W|||51|| -KBAF|--|---|WESTFIELD BARNES MUNICIPAL|MA|United States|4|42-10N|072-43W|42-09-25N|072-43-06W|83|83| -KBAK|--|---|Columbus / Bakalar |IN|United States|4|39-16N|085-54W|||200|| -KBAN|--|---|MCMWTC BRIDGEPORT, CA|CA|||38-21N|119-31W|||2057|| -KBAX|--|---|Bad Axe, Huron County Memorial Airport|MI|United States|4|43-46-51N|082-59-08W|||233|| -KBAZ|--|---|NEW BRAUNFELS MUNICIPAL AIRPORT|TX|United States|4|29-43N|98-03W|29-42-20N|098-02-08W|198|195| -KBBB|--|---|Benson Municipal|MN|United States|4|45-19N|095-39W|||317|| -KBBD|--|---|Brady, Curtis Field Airport|TX|United States|4|31-10-45N|099-19-26W|||557|| -KBBF|--|---|Brazos 133|TX|United States|4|27-50-06N|096-00-47W|||||| -KBBW|--|---|BROKEN BOW MUNICIPAL AIRPORT|NE|United States|4|41-26N|099-38W|||776|| -KBCB|--|---|Virginia Tech Airport|VA|United States|4|37-13N|080-25W|||650|| -KBCE|--|---|BRYCE CANYON AIRPORT|UT|United States|4|37-42N|112-09W|37-42-05N|112-09-16W|2312|2312| -KBCG|--|---|Butte La Rose|LA|United States|4|30-07N|091-33W|||10|| -KBCT|--|---|Boca Raton, Boca Raton Airport|FL|United States|4|26-22-43N|080-06-28W|||4|| -KBDE|--|---|BAUDETTE INTERNATIONAL AIRPORT|MN|United States|4|48-44N|94-37W|48-43-17N|094-36-10W|330|329| -KBDF|--|---|Bradford / Rinkenberg|IL|United States|4|41-14N|089-37W|||247|| -KBDL|72|508|BRADLEY INTERNATIONAL AIRPORT |CT|United States|4|41-56N|072-41W|41-55-59N|072-41-12W|53|60| -KBDR|72|504|SIKORSKY MEMORIAL AIRPORT|CT|United States|4|41-10N|073-08W|41-09-50N|073-07-40W|3|7| -KBED|74|490|BEDFORD HANSCOM FIELD|MA|United States|4|42-28N|071-18W|42-27-57N|071-17-22W|41|50| -KBEH|--|---|SOUTHWEST MICHIGAN REGIONAL|MI|United States|4|42-08N|86-25W|42-07-32N|086-25-44W|196|191| -KBET|--|---|Bethel, Bethel Airport|AK|United States|4|60-47-09N|161-49-35W|60-47-03N|161-50-08W|39|39| -KBFD|--|---|BRADFORD REGIONAL AIRPORT|PA|United States|4|41-48N|078-38W|41-47-57N|078-38-24W|653|647| -KBFF|72|566|SCOTTSBLUFF HEILIG FIELD|NE|United States|4|41-52N|103-36W|41-52-12N|103-35-36W|1209|1203| -KBFI|--|---|SEATTLE BOEING FIELD|WA|United States|4|47-33N|122-19W|47-31-45N|122-18-11W|5|4| -KBFL|72|384|BAKERSFIELD MEADOWS FIELD|CA|United States|4|35-26N|119-03W|35-26-02N|119-03-06W|155|151| -KBFM|--|---|MOBILE DOWNTOWN AIRPORT|AL|United States|4|30-38N|88-04W|30-37-37N|088-04-05W|8|20| -KBFU|--|---|Belle Fourche|WY|United States|4|43-56N|105-27W|||1422|| -KBFW|--|---|Silver Bay|MN|United States|4|47-12N|091-24W|||331|| -KBGD|--|---|BORGER HUTCHINSON CO AIRPORT |TX|United States|4|35-42N|101-24W|35-41-43N|101-23-40W|931|927| -KBGE|--|---|Bainbridge, Decatur County Industrial Air Park Airport|GA|United States|4|30-58N|084-38W|||43|| -KBGM|72|515|BINGHAMTON REGIONAL AIRPORT|NY|United States|4|42-12N|75-59W|42-12-32N|075-58-58W|499|492| -KBGR|--|---|BANGOR INT'L AIRPORT|ME|United States|4|44-48N|068-49W|44-48-43N|068-49-31W|59|57| -KBHB|--|---|Bar Harbor, Hancock County-Bar Harbor Airport|ME|United States|4|44-27N|068-22W|||25|| -KBHK|--|---|BAKER MUNICIPAL AIRPORT|MT|United States|4|46-21N|104-15W|46-21-22N|104-16-12W|906|902| -KBHM|72|228|BIRMINGHAM INT'L AIRPORT|AL|United States|4|33-34N|086-45W|33-33-48N|086-44-42W|196|197| -KBHX|--|---|Eureka NEXRAD|CA|United States|4|40-30N|124-18W|||767|| -KBID|--|---|Block Island, Block Island State Airport|RI|United States|4|41-10N|071-34W|||33|| -KBIE|--|---|Beatrice Municipal|NE|United States|4|40-18N|096-45W|||403|| -KBIF|--|---|Biggs Army Air Field / Ft. Bliss|TX|United States|4|31-51N|106-23W|||1204|| -KBIG|--|---|Delta Junction / Ft. Greely, Allen Army Air Field|AK|United States|4|63-59-37N|145-41-33W|63-59-20N|145-43-05W|389|387| -KBIH|72|480|BISHOP AIRPORT|CA|United States|4|37-22N|118-22W|37-22-15N|118-21-59W|1256|1253| -KBIL|72|677|LOGAN INTERNATIONAL AIRPORT|MT|United States|4|45-49N|108-33W|45-48-15N|108-32-09W|1112|1091| -KBIS|72|764|BISMARCK MUNICIPAL AIRPORT|ND|United States|4|46-47N|100-45W|46-46-20N|100-45-26W|511|503| -KBIT|--|---|Bittercreek|WY|United States|4|41-39N|108-35W|||2160|| -KBIV|--|---|HOLLAND TULIP CITY AIRPORT|MI|United States|4|42-45N|86-06W|42-44-38N|086-06-56W|210|208| -KBIX|--|---|Keesler Air Force Base / Biloxi|MS|United States|4|30-25N|088-55W|||10|| -KBJC|--|---|Broomfield / Jeffco|CO|United States|4|39-55N|105-07W|||1724|| -KBJI|72|755|Bemidji|MN|United States|4|47-30N|094-56W|||423|420|P -KBJJ|--|---|WOOSTER WAYNE COUNTY AIRPORT|OH|United States|4|40-52N|81-53W|40-52-27N|081-52-54W|347|343| -KBJN|72|282|Las Vegas, Tonopah Range #74 Nellis AFB|NV|United States|4|37-37-02|116-15-51W|||1756|| -KBKB|--|---|Ft. Polk, Fullerton Landing Strip|LA|United States|4|31-00N|092-97W|||94|| -KBKE|--|---|BAKER MUNICIPAL AIRPORT|OR|United States|4|44-50N|117-49W|45-50-27N|117-48-25W|1027|1024| -KBKF|--|---|Aurora, Buckley Air Force Base Airport|CO|United States|4|39-42-36N|104-45-29W|||1726|| -KBKL|--|---|CLEVELAND BURKE LAKEFRONT|OH|United States|4|41-32N|81-40W|41-30-44N|081-41-21W|178|184| -KBKS|--|---|Falfurrias, Brooks County Airport|TX|United States|4|27-12-24N|098-07-16W|||34|| -KBKT|--|---|Ft. Pickett / Blackstone|VA|United States|4|37-05N|077-57W|||130|| -KBKV|--|---|BROOKSVILLE HERNANDO CO AIRPORT |FL|United States|4|28-28N|82-27W|28-28-23N|082-27-09W|23|20| -KBKW|72|412|RALEIGH COUNTY MEM AIRPORT |WV|United States|4|37-48N|081-07W|37-47-00N|081-07-16W|763|764| -KBKX|--|---|Brookings, Brookings Municipal Airport|SD|United States|4|44-18N|096-49W|||502|| -KBLF|--|---|BLUEFIELD MERCER COUNTY AIRPORT |WV|United States|4|37-18N|081-12W|37-17-32N|081-12-33W|871|873| -KBLH|--|---|BLYTHE AIRPORT|CA|United States|4|33-37N|114-43W|33-36-48N|114-42-48W|121|119| -KBLI|--|---|BELLINGHAM INTERNATIONAL AIRPORT|WA|United States|4|48-48N|122-32W|48-47-56N|122-32-05W|51|50| -KBLM|--|---|Belmar-Farmingdale|NJ|United States|4|40-11N|074-08W|||48|| -KBLU|--|---|BLUE CANYON AIRPORT|CA|United States|4|39-17N|120-42W|39-16-32N|120-42-29W|1611|1609| -KBLV|--|---|Belleville, Scott AFB/MidAmerica Airport|IL|United States|4|38-33N|089-51W|||140|| -KBLX|--|---|Billing Yell Nexrad|MT|United States|4|45-51-14N|108-36-22W|||1116|| -KBMG|--|---|MONROE COUNTY AIRPORT|IN|United States|4|39-09N|086-37W|39-08-51N|086-36-44W|258|257| -KBMI|--|---|Bloomington/Normal, Central Illinois Regional Airport at Bloomington-Normal|IL|United States|4|40-28-37N|088-54-57W|||266|| -KBML|72|616|BERLIN MUNICIPAL AIRPORT|NH|United States|4|44-35N|71-11W|44-34-41N|071-10-49W|353|345| -KBMQ|--|---|BURNET MUNICIPAL CRADDOCK FIELD|TX|United States|4|30-44N|98-14W|30-44-27N|098-14-10W|393|389| -KBMX|--|---|Birmingham Nexrad|AL|United States|4|33-10N|086-45W|||231|| -KBNA|72|327|NASHVILLE INTERNATIONAL AIRPORT|TN|United States|4|36-07N|086-41W|36-06-59N|086-40-31W|183|210| -KBNO|72|683|BURNS MUNICIPAL AIRPORT|OR|United States|4|43-36N|118-57W|43-35-12N|118-57-12W|1263|1264| -KBNW|--|---|Boone Municipal|IA|United States|4|42-03N|093-51W|||354|| -KBNY|--|---|Burney|CA|United States|4|40-53N|121-40W|||957|| -KBOI|72|681|BOISE AIR TERMINAL|ID|United States|4|43-34N|116-14W|43-34-03N|116-12-40W|871|875| -KBOK|--|---|Brookings, Brookings Airport|OR|United States|4|42-04-28N|124-17-24W|||140|| -KBOS|72|509|BOSTON LOGAN INTERNATIONAL|MA|United States|4|42-22N|071-01W|42-21-51N|071-01-09W|6|54| -KBOW|--|---|Bartow Municipal|FL|United States|4|27-57N|081-47W|||39|| -KBOX|--|---|Boston Nexrad|MA|United States|4|41-57N|071-08W|||71|| -KBPG|--|---|Big Spring, Big Spring McMahon-Wrinkle Airport|TX|United States|4|32-12N|101-31W|||784|| -KBPI|72|671|BIG PINEY-MARBLETON AIRPORT|WY|United States|4|42-35N|110-06W|42-34-41N|110-06-14W|2131|2117| -KBPK|--|---|OZARK REGIONAL AIRPORT|AR|United States|4|36-22N|092-28W|36-22-17N|092-27-42W|283|280| -KBPP|--|---|Bowman, Bowman Municipal Airport|ND|United States|4|46-11-13N|103-25-41W|||902|| -KBPT|72|241|SOUTHEAST TEXAS RGNL AIRPORT|TX|United States|4|29-95N|094-08W|29-57-27N|094-01-21W|5|5| -KBQK|--|---|Brunswick / Glynco|GA|United States|4|31-15N|081-28W|||8|| -KBQX|--|---|Brazos 451|TX|United States|4|28-29-37N|095-43-28W|||||| -KBRD|--|---|BRAINERD-CROW WING CO AIRPORT |MN|United States|4|46-24N|94-08W|46-23-33N|094-08-24W|374|372| -KBRL|--|---|BURLINGTON REGIONAL AIRPORT|IA|United States|4|40-46N|91-08W|40-46-55N|091-07-11W|213|211| -KBRO|72|250|BROWNSVILLE/SOUTH PADRE IS|TX|United States|4|25-54N|97-25W|25-54-22N|097-25-54W|7|5| -KBRX|--|---|Bordeaux|WY|United States|4|41-56N|104-57W|||1422|| -KBTL|--|---|W.K.KELLOGG REGIONAL AIRPORT|MI|United States|4|42-18N|085-15W|42-18-49N|085-14-19W|290|290| -KBTM|--|---|BERT MOONEY AIRPORT|MT|United States|4|45-58N|112-30W|45-57-15N|112-30-05W|1690|1688| -KBTP|--|---|Butler, Butler County Airport/K W Scholter Field|PA|United States|4|40-47N|079-57W|||380|| -KBTR|--|---|BATON ROUGE METRO RYAN FIELD|LA|United States|4|30-32N|91-09W|30-31-50N|091-08-36W|21|21| -KBTT|--|---|Bettles, Bettles Airport|AK|United States|4|66-54-58N|151-30-32W|66-54-58N|151-30-33W|196|197| -KBTV|72|617|BURLINGTON INTERNATIONAL|VT|United States|4|44-28N|73-09W|44-28-08N|073-09-18W|102|105| -KBUF|72|528|GREATER BUFFALO INTERNATIONAL AIRPORT |NY|United States|4|42-56N|078-44W|42-56-21N|078-43-10W|221|225| -KBUO|--|---|Beaumont|CA|United States|4|33-56N|116-58W|||692|| -KBUR|72|288|BURBANK-GLENDALE-PASADENA|CA|United States|4|34-12N|118-22W|34-11-58N|118-21-11W|236|217| -KBUU|--|---|Burlington, Burlington Municipal Airport|WI|United States|4|42-41-26N|088-18-17W|||237|| -KBUY|--|---|BURLINGTON ALAMANCE REGIONAL|NC|United States|4|36-02N|79-28W|36-03-00N|079-28-46W|188|180| -KBVE|72|232|Boothville|LA|United States|4|29-20N|089-24W|29-20N|089-24W|0|1| -KBVI|--|---|Beaver Falls Airport|PA|United States|4|40-46N|080-24W|||382|| -KBVN|--|---|Albion, Albion Municipal Airport|NE|United States|4|41-43-42N|098-03-20W|||551|| -KBVO|--|---|BARTLESVILLE MUNICIPAL AIRPORT |OK|United States|4|36-46N|96-01W|36-45-32N|096-00-26W|217|210| -KBVR|--|---|Beaver Rim|WY|United States|4|42-35N|108-17W|||2072|| -KBVS|--|---|Burlington/Mount Vernon, Skagit Regional Airport|WA|United States|4|48-28-15N|122-25-15W|||44|| -KBVX|--|---|Batesville, Batesville Regional Airport|AR|United States|4|35-44N|091-39W|||141|| -KBVY|--|---|BEVERLY MUNICIPAL AIRPORT|MA|United States|4|42-35N|070-55W|42-35-07N|070-54-46W|33|28| -KBWD|--|---|Brownwood, Brownwood Regional Airport|TX|United States|4|31-48N|098-57W|||422|| -KBWG|--|---|BOWLING GREEN-WARREN CO RGNL|KY|United States|4|36-58N|086-25W|36-57-45N|086-25-35W|167|161| -KBWI|72|406|BALTIMORE-WASHINGTON INTERNATIONAL |MD|United States|4|39-10N|076-41W|39-10-44N|076-40-11W|45|59| -KBWP|--|---|Wahpeton, Harry Stern Airport|ND|United States|4|46-14-38N|096-36-26W|||295|| -KBXA|--|---|Bogalusa, George R Carr Memorial Air Field|LA|United States|4|30-48-49N|089-51-53W|||36|| -KBYG|--|---|BUFFALO JOHNSON COUNTY AIRPORT |WY|United States|4|44-23N|106-43W|44-22-43N|106-42-55W|1514|1497| -KBYH|--|---|Eaker Air Force Base|AR|United States|4|35-58N|089-57W|||78|| -KBYI|--|---|BURLEY MUNICIPAL AIRPORT|ID|United States|4|42-33N|113-46W|42-32-20N|113-46-06W|1265|1264| -KBYS|74|611|Fort Irwin/Barstow, Bicycle Lake Army Airfield|CA|United States|4|35-17N|116-37W|35-17N|116-37W|716|716| -KBYY|--|---|Bay City, Bay City Municipal Airport|TX|United States|4|28-58-23N|095-51-48W|||14|| -KBZN|--|---|BOZEMAN GALLATIN FIELD|MT|United States|4|45-47N|111-09W|45-46-35N|111-09-15W|1364|1361| -KC09|--|---|Morris, Morris Municipal-James R Washburn Field Airport|IL|United States|4|41-25-31N|088-25-07W|||178|| -KC19|--|---|Holland / Tulip City|MI|United States|4|42-45N|086-06W|||210|| -KC52|--|---|Burlington, Burlington Municipal Airport|WI|United States|4|42-41-26N|088-18-17W|||237|| -KC58|--|---|Two Rivers Coast Guard Station|WI|United States|4|44-08N|087-33W|||176|| -KC73|--|---|Dixon / Walgreen Field|IL|United States|4|41-50N|089-27W|||240|| -KC75|--|---|Lacon, Marshall County Airport|IL|United States|4|41-01-09N|089-23-11W|||173|| -KC96|--|---|Winter Park Resort |CO|United States|4|39-53N|105-46W|||2771|| -KCAD|--|---|Cadillac / Wexford County|MI|United States|4|44-17N|085-25W|||398|| -KCAE|72|310|COLUMBIA METROPOLITAN AIRPORT |SC|United States|4|33-57N|081-07W|33-56-43N|081-07-22W|72|73| -KCAG|72|570|CRAIG MOFFAT AIRPORT|CO|United States|4|40-30N|107-31W|40-29-34N|107-31-16W|1888|1887| -KCAK|72|521|AKRON-CANTON REGIONAL AIRPORT |OH|United States|4|40-55N|081-27W|40-54-43N|081-26-18W|374|377| -KCAO|72|360|CLAYTON MUNICIPAL AIRPARK|NM|United States|4|36-27N|103-09W|36-26-46N|103-09-18W|1513|1514| -KCAR|72|712|CARIBOU MUNICIPAL AIRPORT|ME|United States|4|46-52N|68-01W|46-52-06N|068-00-48W|191|191| -KCAV|--|---|Clarion|IA|United States|4|42-45N|093-46W|||354|| -KCBE|--|---|Cumberland, Greater Cumberland Regional Airport|MD|United States|4|39-36-55N|078-45-39W|||236|| -KCBF|--|---|Council Bluffs|IA|United States|4|41-16N|095-46W|||382|| -KCBG|--|---|Cambridge Municipal|MN|United States|4|45-34N|093-16W|||287|| -KCBM|--|---|Columbus Air Force Base|MS|United States|4|33-39N|088-27W|||67|| -KCCO|--|---|Newnan, Newnan Coweta County Airport|GA|United States|4|33-18-44N|084-46-13W|||296|| -KCCR|--|---|CONCORD BUCHANAN FIELD|CA|United States|4|38-00N|122-03W|37-59-09N|122-03-16W|7|11| -KCCU|--|---|Copper Mountain, Red Cliff Pass|CO|United States|4|39-28-02N|106-09-01W|||3680|| -KCCX|--|---|State College Nexrad|PA|United States|4|40-55N|078-00W|||758|| -KCCY|--|---|Charles City|IA|United States|4|43-04N|092-37W|||343|| -KCDC|--|---|CEDAR CITY MUN AIRPORT|UT|United States|4|37-42N|113-06W|37-42-00N|113-05-30W|1715|1714| -KCDD|--|---|Crane Lake, Scotts Seaplane Base|MN|United States|4|48-15-59N|92-29-01W|||341|| -KCDH|--|---|Camden / Harrell Field|AR|United States|4|33-37N|092-46W|||40|| -KCDJ|--|---|CHILLICOTHE AGRI-SCIENCE CTR|MO|United States|4|39-49N|093-35W|||234|| -KCDR|--|---|CHADRON MUNICIPAL AIRPORT|NE|United States|4|42-50N|103-06W|42-49-44N|103-05-50W|1005|1010| -KCDS|--|---|CHILDRESS MUNICIPAL AIRPORT|TX|United States|4|34-26N|100-17W|34-25-39N|100-16-58W|595|594| -KCDV|--|---|Cordova, Smith Airport|AK|United States|4|60-29-20N|145-27-04W|60-29-38N|145-28-02W|12|18| -KCDW|--|---|CALDWELL ESSEX COUNTY AIRPORT |NJ|United States|4|40-53N|074-17W|40-52-33N|074-16-40W|53|64| -KCEC|--|---|CRESCENT CITY MC NAMARA|CA|United States|4|41-47N|124-14W|||17|| -KCEF|74|491|Chicopee Falls / Westover Air Force Base|MA|United States|4|42-12N|072-32W|||75|75| -KCEU|--|---|CLEMSON-OCONEE COUNTY AIRPORT |SC|United States|4|34-40N|082-53W|34-40-19N|082-52-49W|272|268| -KCEW|--|---|CRESTVIEW SIKES AIRPORT|FL|United States|4|30-46N|086-31W|||65|55| -KCEZ|--|---|CORTEZ MONTEZUMA COUNTY AIRPORT |CO|United States|4|37-18N|108-38W|37-18-14N|108-37-43W|1804|1797| -KCFE|--|---|Buffalo, Buffalo Municipal Airport|MN|United States|4|45-09-32N|093-50-35W|||295|| -KCFS|--|---|Caro, Tuscola Area Airport|MI|United States|4|43-27-31N|083-26-43W|||214|| -KCFT|--|---|Clifton/Morenci, Greenlee County Airport|AZ|United States|4|32-57-10N|109-12-37W|||1162|| -KCFV|--|---|COFFEYVILLE MUNICIPAL AIRPORT |KS|United States|4|37-05N|95-34W|37-05-52N|095-34-32W|230|225| -KCGF|--|---|Cleveland / Cuyahoga|OH|United States|4|41-34N|081-29W|||268|| -KCGI|--|---|CAPE GIRARDEAU REGIONAL|MO|United States|4|37-14N|089-35W|37-13-38N|089-33-53W|104|102| -KCGX|--|---|Chicago / Meigs|IL|United States|4|41-52N|087-36W|||181|| -KCGZ|--|---|Casa Grande, Casa Grande Municipal Airport|AZ|United States|4|32-57N|111-46W|||446|| -KCHA|72|324|LOVELL FIELD|TN|United States|4|35-02N|085-12W|35-01-31N|085-12-06W|208|210| -KCHD|--|---|Chandler, Chandler Municipal Airport|AZ|United States|4|33-16-09N|111-48-40W|||379|| -KCHH|74|494|Chatham|MA|United States|4|41-40N|069-58W|41-40N|069-58W|14|16| -KCHI|--|---|Chicago Weather Service Forecast Office|IL|United States|4|42-00N|087-53W|||181|| -KCHK|--|---|Chickasha, Chickasha Municipal Airport|OK|United States|4|35-05-46N|097-57-58W|||351|| -KCHO|--|---|CHARLOTTESVILLE-ALBEMARLE|VA|United States|4|38-08N|078-27W|38-08-19N|078-27-00W|195|192| -KCHS|72|208|CHARLESTON INT'L AIRPORT|SC|United States|4|32-54N|080-02W|32-53-40N|080-01-40W|14|13| -KCIC|--|---|Chico Municipal |CA|United States|4|39-48N|121-51W|||73|| -KCID|--|---|CEDAR RAPIDS AIRPORT|IA|United States|4|41-53N|91-43W|||263|| -KCIN|--|---|Carroll|IA|United States|4|42-03N|094-47W|||375|| -KCIR|--|---|Cairo, Cairo Regional Airport|IL|United States|4|37-03-52N|089-13-10W|||98|| -KCIU|--|---|Sault Ste Marie, Chippewa County International Airport|MI|United States|4|46-15N|084-28W|||244|| -KCJR|--|---|Culpeper, Culpeper County Airport|VA|United States|4|38-31-36N|077-51-32W|||95|| -KCKB|--|---|HARRISON/MARION REGIONAL|WV|United States|4|39-18N|080-13W|39-18-00N|080-13-45W|367|360| -KCKC|--|---|Grand Marais, Grand Marais/Cook County Airport|MN|United States|4|47-50-18N|090-22-59W|||548|| -KCKL|72|229|Centreville|AL|United States|4|32-54N|087-15W|32-54N|087-15W|140|140|P -KCKN|--|---|Crookston Municipal Field|MN|United States|4|47-51N|096-37W|||273|| -KCKP|--|---|Cherokee, Cherokee Municipal Airport|IA|United States|4|42-43-54N|095-33-21W|||374|| -KCKV|--|---|CLARKSVILLE OUTLAW FIELD|TN|United States|4|36-37N|87-25W|36-37-18N|087-25-07W|168|165| -KCLE|72|524|CLEVELAND-HOPKINS INTERNATIONAL |OH|United States|4|41-24N|081-51W|41-24-41N|081-51-36W|241|236| -KCLI|--|---|Clintonville, Clintonville Municipal Airport|WI|United States|4|44-36-50N|088-43-53W|||251|| -KCLK|--|---|Clinton, Clinton Regional Airport|OK|United States|4|35-32-17N|098-55-17W|||492|| -KCLL|--|---|COLLEGE STN EASTERWOOD FIELD|TX|United States|4|30-35N|096-22W|30-35-30N|096-21-30W|98|96| -KCLM|--|---|PORT ANGELES FAIRCHILD INTERNATIONAL |WA|United States|4|48-07N|123-30W|48-07-01N|123-29-32W|88|85| -KCLT|72|314|CHARLOTTE/DOUGLAS INTERNATIONAL |NC|United States|4|35-13N|80-57W|35-13-25N|080-56-46W|228|220| -KCMA|--|---|CAMARILLO AIRPORT|CA|United States|4|34-13N|119-05W|||23|| -KCMB|--|---|East Cameron 47|LA|United States|4|29-26-26N|092-58-45W|||||| -KCMH|72|428|PORT COLUMBUS INTERNATIONAL AIRPORT|OH|United States|4|40-00N|82-53W|40-00-24N|082-53-15W|248|247| -KCMI|--|---|UNIV OF ILLINOIS-WILLARD|IL|United States|4|40-02N|088-16W|40-02-24N|088-16-15W|230|228| -KCMS|--|---|Cemetery Separa|WY|United States|4|41-32N|109-28W|||1949|| -KCMX|72|744|HANCOCK HOUGHTON CTY. MEMO|MI|United States|4|47-10N|088-29W|47-10-15N|088-29-46W|334|326| -KCMY|--|---|Sparta, Sparta / Fort McCoy Airport|WI|United States|4|43-57-30N|090-44-16W|||255|| -KCNB|--|---|Myers Field Airport|MN|United States|4|44-43N|96-16W|||364|| -KCNC|--|---|Chariton|IA|United States|4|41-02N|093-22W|||320|| -KCNK|72|458|Concordia, Blosser Municipal Airport|KS|United States|4|39-33-05N|097-39-02W|39-33-00N|097-39-15W|453|447|P -KCNM|--|---|CARLSBAD CAVERN CITY|NM|United States|4|32-20N|104-16W|32-20-33N|104-15-07W|1004|985| -KCNO|--|---|CHINO AIRPORT|CA|United States|4|33-58N|117-38W|33-58-45N|117-38-19W|198|207| -KCNU|--|---|CHANUTE JOHNSON AIRPORT|KS|United States|4|37-40N|95-29W|37-41-09N|095-29-14W|305|297| -KCNY|--|---|MOAB CANYONLANDS FIELD|UT|United States|4|38-46N|109-45W|38-45-41N|109-44-22W|1388|1390| -KCOD|72|670|Cody|WY|United States|4|44-31N|109-01W|||1551|1553|P -KCOE|--|---|Coeur d'Alene, Coeur d'Alene Air Terminal|ID|United States|4|47-46N|116-49W|||707|| -KCOF|74|795|Cocoa / Patrick Air Force Base|FL|United States|4|28-14N|080-36W|||3|3| -KCOI|--|---|Merritt Island, Merritt Island Airport|FL|United States|4|28-20-29N|080-41-07W|||2|| -KCON|72|605|Concord, Concord Municipal Airport|NH|United States|4|43-11-43N|071-30-04W|43-12-22N|071-30-36W|105|103| -KCOQ|--|---|Cloquet, Cloquet Carlton County Airport|MN|United States|4|46-42N|092-30W|||390|| -KCOS|72|466|COLORADO SPRINGS MUNI|CO|United States|4|38-49N|104-43W|38-48-31N|104-43-14W|1885|1856| -KCOT|--|---|COTULLA-LASALLE COUNTY AIRPORT |TX|United States|4|28-27N|099-13W|28-27-13N|099-13-05W|145|140| -KCOU|72|445|COLUMBIA REGIONAL AIRPORT|MO|United States|4|38-49N|092-13W|38-49-06N|092-13-14W|271|271| -KCPC|--|---|Whiteville, Columbus County Municipal Airport|NC|United States|4|34-16-22N|078-42-54W|||30|| -KCPK|--|---|Chesapeake, Chesapeake Municipal Airport|VA|United States|4|36-39-56N|076-19-14W|||6|| -KCPR|72|569|NATRONA COUNTY INTERNATIONAL AIRPORT |WY|United States|4|42-54N|106-28W|42-53-50N|106-27-50W|1630|1621| -KCPS|--|---|ST LOUIS DOWNTOWN AIRPORT|IL|United States|4|38-34N|090-09W|38-34-13N|090-09-41W|126|126| -KCPT|--|---|Cleburne, Cleburne Municipal Airport|TX|United States|4|32-21-13N|097-26-01W|||260|| -KCPW|--|---|Pagosa Springs, Wolf Creek Pass|CO|United States|4|37-27-05N|106-48-01W|||3584|| -KCQB|--|---|Chandler, Chandler Municipal Airport|OK|United States|4|35-43-26N|096-49-13W|||300|| -KCQC|--|---|Clines Corners|NM|United States|4|35-00N|105-40W|||2160|| -KCQM|--|---|Cook, Cook Municipal Airport|MN|United States|4|47-49-19N|092-41-22W|||405|| -KCQN|--|---|Chattanooga / Daisy|TN|United States|4|35-10N|085-09W|||225|| -KCQT|--|---|LOS ANGELES USC CAMPUS|CA|United States|4|34-02N|118-17W|||56|| -KCQV|--|---|Colville Municipal|WA|United States|4|48-33N|117-53W|||572|| -KCQX|--|---|CHATHAM MUNICIPAL AIRPORT|MA|United States|4|41-41N|070-00W|41-41-17N|069-59-32W|21|19| -KCRE|--|---|N. MYRTLE BCH.GRAND STRAND|SC|United States|4|33-49N|078-43W|33-48-07N|078-34-4W|10|10| -KCRG|--|---|JACKSONVILLE CRAIG MUN|FL|United States|4|30-20N|81-31W|30-20-11N|081-30-53W|13|13| -KCRH|--|---|West Cameron|TX|United States|4|28-54-31N|093-18-06W|||||| -KCRP|72|251|CORPUS CHRISTI INTERNATIONAL |TX|United States|4|27-46N|97-31W|27-46-26N|097-29-59W|13|16| -KCRQ|--|---|CARLSBAD MCCLELLAN-PALOMAR|CA|United States|4|33-08N|117-17W|33-07-38N|117-16-32W|100|99| -KCRS|--|---|CORSICANA AIRFIELD|TX|United States|4|32-01N|96-23W|32-01-42N|096-23-46W|136|133| -KCRV|--|---|Nederland Mountain, Corona Pass|CO|United States|4|40-03-01N|105-35-02W|||3538|| -KCRW|72|414|YEAGER AIRPORT|WV|United States|4|38-22N|081-36W|38-21-44N|081-35-24W|299|309| -KCSG|--|---|COLUMBUS METROPOLITAN AIRPORT |GA|United States|4|32-31N|84-57W|32-31-18N|084-56-39W|121|135| -KCSL|--|---|Camp San Luis Airport |CA|United States|4|35-20N|120-44W|||76|| -KCSM|--|---|CLINTON-SHERMAN AIRPORT|OK|United States|4|35-21E|99-12W|35-21-05N|099-11-50W|586|588| -KCSQ|--|---|Creston|IA|United States|4|41-01N|094-22W|||394|| -KCSV|--|---|CROSSVILLE MEMORIAL AIRPORT |TN|United States|4|35-57N|85-05W|35-57-14N|085-04-59W|573|570| -KCTB|--|---|CUT BANK MUNICIPAL AIRPORT|MT|United States|4|48-36N|112-23W|||1175|| -KCTD|--|---|Continental Div|WY|United States|4|41-43N|107-47W|||2146|| -KCTO|--|---|Calverton / Grumman|NY|United States|4|40-55N|072-47W|||23|| -KCTY|72|212|CROSS CITY AIRPORT|FL|United States|4|29-38N|083-06W|29-37-49N|083-06-31W|13|12| -KCTZ|--|---|Clinton, Sampson County Airport|NC|United States|4|34-58-32N|078-21-53W|||45|| -KCUB|--|---|OWENS DOWNTOWN AIRPORT|SC|United States|4|33-58N|081-00W|33-58-22N|080-59-39W|65|56| -KCUH|--|---|Cushing, Cushing Municipal Airport|OK|United States|4|35-56-59N|096-46-22W|||279|| -KCUL|--|---|Carmi, Carmi Municipal Airport|IL|United States|4|38-05-22N|088-07-23W|||118|| -KCUT|--|---|CUSTER COUNTY AIRPORT|SD|United States|4|43-44N|103-37W|43-44-00N|103-36-50W|1707|1725| -KCVG|72|421|CINCINNATI/NORTHERN KY INTERNATIONAL |KY|United States|4|39-03N|084-40W|39-03-17N|084-39-40W|273|269| -KCVN|--|---|Clovis, Clovis Municipal Airport|NM|United States|4|34-26N|103-05W|||1285|| -KCVO|--|---|Corvallis, Corvallis Municipal Airport|OR|United States|4|44-30N|123-17W|||75|| -KCVS|--|---|Cannon Air Force Base / Clovis|NM|United States|4|34-23N|103-19W|||1309|| -KCVX|--|---|Charlevoix, Charlevoix Municipal Airport|MI|United States|4|45-18-17N|085-16-29W|||204|| -KCWA|--|---|Mosinee / Central Wisconsin|WI|United States|4|44-47N|089-40W|||389|| -KCWF|--|---|Chenault Airpark|LA|United States|4|30-13N|093-09W|||4|| -KCWI|--|---|Clinton, Clinton Municipal Airport|IA|United States|4|41-50N|090-20W|||216|| -KCWL|--|---|Calexico, Calexico International Airport|CA|United States|4|32-40-10N|115-30-48W|||1|| -KCXO|--|---|LONE STAR EXECUTIVE AIRPORT|TX|United States|4|30-21N|95-25W|30-21-11N|095-25-30W|75|75| -KCXP|--|---|Carson City|NV|United States|4|39-11-32N|119-43-57W|||1434|| -KCXY|--|---|HARRISBURG CAPITAL CITY|PA|United States|4|40-13N|76-51W|40-13-13N|076-51-14W|106|106| -KCYS|72|564|CHEYENNE AIRPORT|WY|United States|4|41-09N|104-48W|41-09-11N|104-48-33W|1878|1865| -KCZD|--|---|Cozad Municipal|NE|United States|4|40-52N|100-00W|||762|| -KCZK|--|---|Cascade Locks State|OR|United States|4|45-40N|121-53W|||46|| -KCZZ|--|---|Campo|CA|United States|4|32-37-34N|116-28-06W|||807|807| -KD07|--|---|FAITH, SOUTH DAKOTA|SD|United States|4|45-02N|102-01W|||787|784| -KD19|--|---|Luverne, Quentin Aanenson Field Airport|MN|United States|4|43-37-16N|096-12-56W|||436|| -KD45|72|756|Warroad|MN|United States|4|48-56N|095-21W|||328|328| -KD50|--|---|Crosby Municipal Airport|ND|United States|4|48-55-43N|103-17-50W|||594|| -KD55|--|---|Roberston Field Landon|ND|United States|4|48-45-11N|098-23-37W|||490|| -KD60|--|---|Tioga Municipal Airport|ND|United States|4|48-22-49N|102-53-51W|||692|| -KD87|--|---|Harbor Springs, Harbor Springs Airport|MI|United States|4|45-25-32N|084-54-48W|||209|| -KD97|--|---|South St. Paul Municipal|MN|United States|4|44-51N|093-09W|||250|| -KDAA|--|---|Fort Belvoir|VA|United States|4|38-43N|077-11W|||21|| -KDAB|--|---|DAYTONA BEACH INTERNATIONAL|FL|United States|4|29-10N|81-04W|29-10-56N|081-02-53W|11|9| -KDAG|--|---|BARSTOW-DAGGETT AIRPORT|CA|United States|4|34-51N|116-47W|34-51-10N|116-47-30W|587|587| -KDAL|--|---|DALLAS LOVE FIELD|TX|United States|4|32-51N|096-51W|32-50-42N|096-51-00W|148|158| -KDAN|--|---|DANVILLE REGIONAL AIRPORT|VA|United States|4|36-34N|079-20W|36-34-32N|079-20-24W|174|175| -KDAW|--|---|SKYHAVEN AIRPORT|NH|United States|4|43-17N|70-55W|43-16-56N|070-55-47W|98|100| -KDAX|--|---|Sacramento Nexrad|CA|United States|4|38-30N|121-41W|||44|| -KDAY|72|429|COX DAYTON INTERNATIONAL|OH|United States|4|39-54N|084-13W|39-54-16N|084-12-20W|308|305| -KDBN|--|---|Dublin, W H 'Bud' Barron Airport|GA|United States|4|32-33-52N|082-59-06W|||94|| -KDBQ|72|547|DUBUQUE REGIONAL AIRPORT|IA|United States|4|42-24N|90-42W|42-24-20N|090-42-20W|328|326| -KDCA|72|405|WASHINGTON NATIONAL AIRPORT |VA|United States|4|38-51N|077-02W|38-50-56N|077-02-29W|5|18| -KDCU|--|---|PRYOR FIELD|AL|United States|4|34-39N|086-57W|34-39-01N|086-56-52W|180|176| -KDDC|72|451|DODGE CITY REGIONAL AIRPORT|KS|United States|4|37-46N|99-58W|37-45-45N|099-58-08W|791|789| -KDDH|--|---|BENNINGTON MORSE STATE AIRPORT |VT|United States|4|42-53N|73-15W|42-53-24N|073-14-54W|252|244| -KDEC|--|---|DECATUR AIRPORT|IL|United States|4|39-50N|88-52W|39-50-05N|088-52-37W|208|207| -KDEE|--|---|Deering, Deering Airport|AK|United States|4|66-04-14N|162-45-30W|66-04-13N|162-45-30W|4|4| -KDEH|--|---|Decorah|IA|United States|4|43-17N|091-44W|||353|| -KDEN|72|565|DENVER INTERNATIONAL AIRPORT|CO|United States|4|39-52N|104-40W|39-51-45N|104-40-25W|1655|1640| -KDEQ|--|---|DE QUEEN HELMS SEVIER COUNTY|AR|United States|4|34-03N|94-24W|34-02-44N|094-23-58W|108|106| -KDET|--|---|DETROIT CITY AIRPORT|MI|United States|4|42-25N|083-01W|42-24-35N|083-00-18W|191|190| -KDEW|--|---|DEER PARK AIRPORT|WA|United States|4|47-58N|117-26W|47-57-44N|117-26-06W|672|668| -KDFI|--|---|DEFIANCE MEMORIAL AIRPORT|OH|United States|4|41-20N|84-26W|41-20-04N|084-25-40W|216|219| -KDFW|72|259|DALLAS/FT. WORTH INTERNATIONAL AIRPORT |TX|United States|4|32-54N|097-02W|32-53-07N|097-01-18W|184|174| -KDGW|72|568|DOUGLAS CONVERSE COUNTY|WY|United States|4|42-48N|105-23W|42-47-47N|105-23-06W|1502|1499| -KDHN|--|---|DOTHAN AIRPORT|AL|United States|4|31-19N|085-27W|31-18-54N|085-26-51W|122|113| -KDHS|--|---|Dead Horse|WY|United States|4|44-13N|106-06W|||1241|| -KDHT|--|---|DALHART MUNICIPAL AIRPORT|TX|United States|4|36-01N|102-33W|36-01-16N|102-32-52W|1216|1217| -KDIK|--|---|THEODORE ROOSEVELT REGIONAL|ND|United States|4|46-48N|102-48W|46-48-11N|102-47-59W|789|788| -KDIX|--|---|Philadelphia NEXRAD|PA|United States|4|39-57N|074-25W|||70|| -KDKB|--|---|De Kalb, De Kalb Taylor Municipal Airport|IL|United States|4|41-55-55N|088-42-30W|||279|| -KDKK|--|---|CHAUTAUQUA COUNTY/DUNKIRK|NY|United States|4|42-30N|079-17W|42-29-37N|079-16-45W|211|202| -KDKR|--|---|Crockett, Houston County Airport|TX|United States|4|31-18-25N|095-24-13W|||106|| -KDKX|--|---|Knoxville Downtown|TN|United States|4|35-58N|083-52W|||254|| -KDLF|--|---|Laughlin, Laughlin Air Force Base Auxiliary Airfield|TX|United States|4|29-07-00N|100-28-00W|||294|294| -KDLH|72|745|Duluth, Duluth International Airport|MN|United States|4|46-50-34N|092-13-34W|46-50-22N|092-11-24W|435|435|P -KDLL|--|---|Baraboo, Baraboo Wisconsin Dells Airport|WI|United States|4|43-31-19N|089-46-15W|||298|| -KDLN|--|---|DILLON AIRPORT|MT|United States|4|45-15N|112-33W|45-15-10N|112-33-10W|1597|1591| -KDLP|--|---|West Delta|MS|United States|4|29-07-17N|089-32-50W|||||| -KDLS|--|---|THE DALLES MUNICIPAL AIRPORT |OR|United States|4|45-37N|121-10W|45-37-06N|121-10-17W|74|71| -KDMA|--|---|Davis-Monthan Air Force Base|AZ|United States|4|32-10N|110-53W|||824|| -KDMH|--|---|BALTIMORE DOWNTOWN|MD|United States|4|39-17N|076-37W|||6|| -KDMN|--|---|DEMING MUNICIPAL AIRPORT|NM|United States|4|32-16N|107-43W|32-15-19N|107-43-21W|1315|1311| -KDMO|--|---|SEDALIA MEMORIAL AIRPORT|MO|United States|4|38-43N|93-10W|38-42-15N|093-11-00W|277|274| -KDMX|--|---|Des Moines Nexrad|IA|United States|4|41-44N|093-43W|||322|| -KDNK|--|---|Ft. Polk, Self Strip|LA|United States|4|31-10N|093-00W|||114|| -KDNL|--|---|AUGUSTA DANIEL FIELD|GA|United States|4|33-28N|82-02W|33-27-56N|082-02-07W|129|130| -KDNN|--|---|Dalton, Dalton Municipal Airport|GA|United States|4|34-43-18N|084-52-09W|||216|| -KDNR|72|469|Denver / Stapleton International, Co.|CO|United States|4|39-47N|104-52W|39-45N|104-52W|1626|1626|P -KDNS|--|---|Denison|IA|United States|4|41-59N|095-23W|||388|| -KDNV|--|---|Danville, Vermilion County Airport|IL|United States|4|40-11-58N|087-35-44W|||212|| -KDOV|--|---|Dover Air Force Base|DE|United States|4|39-08N|075-28W|||9|| -KDPA|--|---|CHICAGO/WEST CH DUPAGE|IL|United States|4|41-54N|88-15W|41-54-24N|088-15-20W|231|230| -KDPG|74|003|Dugway Proving Grounds|UT|United States|4|40-10N|112-56W|40-11N|112-56W|1326|1325| -KDPL|--|---|Kenansville, Duplin County Airport|NC|United States|4|35-00-00N|077-58-54W|||42|| -KDQH|--|---|Douglas, Douglas Municipal Airport|GA|United States|4|31-28-36N|082-51-37W|||78|| -KDRA|72|387|DESERT ROCK AIRPORT|NV|United States|4|36-38N|116-02W|36-37-27N|116-01-06W|1010|1006| -KDRC|--|---|Deer Creek|WY|United States|4|42-50N|105-52W|||1543|| -KDRI|--|---|De Ridder, Beauregard Parish Airport|LA|United States|4|30-49-54N|093-20-23W|||63|| -KDRO|--|---|DURANGO-LA PLATA COUNTY AIRPORT |CO|United States|4|37-09N|107-46W|37-09-34N|107-45-00W|2038|2035| -KDRT|72|261|DEL RIO INTERNATIONAL AIRPORT|TX|United States|4|29-22N|100-55W|29-22-28N|100-55-06W|304|313| -KDSM|72|546|DES MOINES INTERNATIONAL|IA|United States|4|41-32N|93-40W|41-32-20N|093-39-25W|292|295| -KDSV|--|---|DANSVILLE MUNICIPAL AIRPORT|NY|United States|4|42-34N|077-43W|42-34-03N|077-42-51W|202|198| -KDTL|--|---|Detroit Lakes, Detroit Lakes Airport-Wething Field|MN|United States|4|46-50N|095-53W|||426|| -KDTN|--|---|SHREVEPORT DOWNTOWN AIRPORT|LA|United States|4|32-32N|093-45W|32-32-23N|093-44-55W|55|53| -KDTO|--|---|DENTON MUNICIPAL AIRPORT|TX|United States|4|33-12N|97-12W|33-12-04N|097-11-39W|196|196| -KDTS|--|---|DESTIN-FT WALTON BEACH AIRPORT |FL|United States|4|30-24N|86-28W|30-23-48N|086-28-17W|7|5| -KDTW|72|537|DETROIT METROPOLITAN|MI|United States|4|42-14N|83-20W|42-12-51N|083-21-13W|195|195| -KDTX|--|---|Detroit NEXRAD|MI|United States|4|42-42N|083-27W|||361|| -KDUA|--|---|Durant, Eaker Field Airport|OK|United States|4|33-56-32N|096-23-40W|||213|| -KDUC|--|---|Duncan, Halliburton Field Airport|OK|United States|4|34-28-15N|097-57-36W|||339|| -KDUG|--|---|BISBEE DOUGLAS INTERNATIONAL AIRPORT |AZ|United States|4|31-28N|109-36W|||1265|| -KDUH|--|---|Lambertville, Toledo Suburban Airport|MI|United States|4|41-44-09N|083-39-19W|||204|| -KDUJ|--|---|DU BOIS-JEFFERSON COUNTY|PA|United States|4|41-11N|078-53W|||555|| -KDUX|--|---|Dumas, Moore County Airport|TX|United States|4|35-51-28N|102-00-47W|||1129|| -KDVL|--|---|Devils Lake, Devils Lake Municipal Airport|ND|United States|4|48-07N|098-55W|||444|| -KDVN|--|---|DAVENPORT MUNICIPAL AIRPORT|IA|United States|4|41-37N|90-35W|41-36-38N|090-35-06W|230|228| -KDVP|--|---|Slayton, Slayton Municipal Airport|MN|United States|4|43-59-12N|095-46-57W|||495|| -KDVT|--|---|PHOENIX-DEER VALLEY MUN|AZ|United States|4|33-41N|112-04W|33-41-08N|112-04-53W|450|443| -KDWH|--|---|HOUSTON HOOKS MEMORIAL|TX|United States|4|30-04N|95-33W|30-04-00N|095-33-21W|46|46| -KDXR|--|---|DANBURY MUNICIPAL AIRPORT|CT|United States|4|41-22N|073-29W|41-22-21N|073-29-03W|140|139| -KDXX|--|---|Madison, Madison-Lac Qui Parle County Airport|MN|United States|4|44-59-10N|096-10-40W|||330|| -KDYL|--|---|DOYLESTOWN AIRPORT|PA|United States|4|40-20N|075-07W|40-20-01N|075-07-22W|120|117| -KDYR|--|---|Dyersburg, Dyersburg Municipal Airport|TN|United States|4|36-00N|089-24W|||103|| -KDYS|--|---|Abilene, Dyess Air Force Base|TX|United States|4|32-25-12N|099-51-25W|||545|| -KDYT|--|---|Duluth, Sky Harbor Airport|MN|United States|4|46-43-19N|092-02-36W|||186|| -KE12|--|---|East Cameron 345|LA|United States|4|28-05N|092-42W|||0|| -KE15|--|---|Graham, Graham Municipal Airport|TX|United States|4|33-06-36N|098-33-19W|||342|| -KE24|--|---|Whiteriver, Whiteriver Airport|AZ|United States|4|33-49N|109-59W|||1570|| -KE28|74|733|Northrup Landing Strip|NM|United States|4|33-54N|106-24W|32-54N|106-24W|1193|1193| -KE29|--|---|Sonora, Sonora Municipal Airport|TX|United States|4|30-35-08N|100-38-54W|||652|| -KE33|--|---|Chama|NM|United States|4|36-54N|106-35W|||2393|| -KE38|--|---|Alpine, Alpine-Casparis Municipal Airport|TX|United States|4|30-23-03N|103-41-00W|||1376|| -KE74|--|---|Safford Automatic Meteorological Observing System|AZ|United States|4|32-49N|109-41W|||950|| -KE80|--|---|Belen Alexander Muni|NM|United States|4|34-38-56N|106-49-54W|||1583|| -KEAA|--|---|Eagle, Eagle Airport|AK|United States|4|64-46-35N|141-09-38W|64-46-35N|141-09-38W|268|273| -KEAR|--|---|Kearney, Kearney Municipal Airport|NE|United States|4|40-44N|099-00W|||650|| -KEAT|--|---|WENATCHEE PANGBORN MEMO|WA|United States|4|47-24N|120-12W|47-24-06N|120-12-21W|379|377| -KEAU|--|---|EAU CLAIRE CHIPPEWA VALLEY|WI|United States|4|44-52N|091-29W|||278|| -KEAX|--|---|Pleasant NEXRAD|MO|United States|4|38-49N|094-16W|||335|| -KEBG|--|---|Edinburg, Edinburg International Airport|TX|United States|4|26-26-31N|098-07-46W|||24|| -KEBS|--|---|Webster City|IA|United States|4|42-26N|093-52W|||342|| -KECG|--|---|ELIZABETH CITY C/G REGN AIRPORT |NC|United States|4|36-15N|076-10W|36-15-50N|076-10-30W|4|11| -KECP|--|---|Northwest Florida Beaches International Airport|FL|United States|4|30-21-13N|085-47-57W|||27|| -KECU|--|---|Rocksprings, Edwards County Airport|TX|United States|4|29-56-48N|100-10-25W|||723|| -KEDE|--|---|Edenton, Northeastern Regional Airport|NC|United States|4|36-01-40N|076-34-02W|||6|| -KEDW|72|381|Edwards Air Force Base|CA|United States|4|34-55N|117-54W|34-54N|117-55W|702|705| -KEED|--|---|NEEDLES AIRPORT|CA|United States|4|34-46N|114-37W|||300|| -KEEN|--|---|Keene, Dillant-Hopkins Airport|NH|United States|4|42-54N|072-16W|||149|| -KEEO|--|---|MEEKER AIRPORT|CO|United States|4|40-03N|107-53W|40-02-25N|107-53-30W|1957|1930| -KEET|--|---|SHELBY COUNTY AIRPORT|AL|United States|4|33-11N|86-47W|33-10-35N|086-46-51W|178|173| -KEEW|--|---|Neenah|WI|United States|4|44-13N|088-33W|||275|| -KEFC|--|---|Belle Fourche, Belle Fourche Municipal Airport|SD|United States|4|44-44N|103-52W|||972|| -KEFD|--|---|Houston / Ellington|TX|United States|4|29-36N|095-10W|||10|| -KEFT|--|---|Monroe, Monroe Municipal Airport|WI|United States|4|42-36-54N|089-35-27W|||331|| -KEGE|--|---|Eagle County Regional|CO|United States|4|39-39N|106-55W|||1993|| -KEGI|--|---|Duke Field / Eglin Auxiliary|FL|United States|4|30-39N|086-31W|||59|| -KEGV|--|---|Eagle River, Eagle River Union Airport|WI|United States|4|45-55-54N|089-16-09W|||501|| -KEHA|--|---|Elkhart, Elkhart-Morton County Airport|KS|United States|4|37-00N|101-53W|||1104|| -KEHC|--|---|East Cameron 278|LA|United States|4|28-25-44N|092-52-41W|||||| -KEHO|--|---|Shelby, Shelby Municipal Airport|NC|United States|4|35-15N|081-36W|||258|| -KEHR|--|---|Henderson City|KY|United States|4|37-49N|087-41W|||117|| -KEHY|--|---|Elk Mountain AWOS|WY|United States|4|41-43-31N|106-27-34W|||2225|| -KEIR|--|---|Eugene Island|LA|United States|4|28-38-05N|091-29-21W|||||| -KEKA|72|594|Eureka|CA|United States|4|40-48N|124-10W|||13|18|P -KEKM|--|---|Elkhart Municipal|IN|United States|4|41-43N|086-00W|||237|| -KEKN|72|417|JENNINGS RANDOLPH FIELD|WV|United States|4|38-53N|079-51W|38-53-01N|079-51-17W|606|603| -KEKO|--|---|ELKO REGIONAL AIRPORT|NV|United States|4|40-50N|115-47W|||1565|1547| -KEKQ|--|---|Monticello, Wayne County Airport|KY|United States|4|36-51-19N|084-51-22W|||294|| -KELD|--|---|SOUTH ARKANSAS REGIONAL|AR|United States|4|33-13N|092-49W|33-13-00N|092-48-37W|84|81| -KELM|--|---|ELMIRA COUNTY AIRPORT|NY|United States|4|42-10N|76-54W|42-09-45N|076-53-44W|291|302| -KELN|--|---|ELLENSBURG BOWERS FIELD|WA|United States|4|47-02N|120-32W|47-01-45N|120-32-11W|536|519| -KELO|--|---|Ely, Ely Municipal Airport|MN|United States|4|47-49N|091-50W|||444|| -KELP|72|270|EL PASO INTERNATIONAL AIRPORT |TX|United States|4|31-49N|106-23W|31-47-50N|106-23-28W|1206|1197| -KELY|72|486|ELY AIRPORT (YELLAND FIELD)|NV|United States|4|39-18N|114-51W|39-17-35N|114-50-32W|1907|1906| -KELZ|--|---|WELLSVILLE MUNICIPAL AIRPORT|NY|United States|4|42-06N|077-60W|42-06-39N|077-59-28W|647|646| -KEMK|--|---|East Breaks|TX|United States|4|27-49-07N|094-19-22W||||| -KEMP|--|---|EMPORIA MUNICIPAL AIRPORT|KS|United States|4|38-20N|96-12W|39-19-45N|096-11-29W|368|367| -KEMT|--|---|El Monte|CA|United States|4|34-05N|118-02W|||90|| -KEMV|--|---|Emporia, Emporia-Greensville Regional Airport|VA|United States|4|36-41-13N|077-28-58W|||39|| -KEND|--|---|Vance Air Force Base / Enid|OK|United States|4|36-20N|097-55W|||398|| -KENL|--|---|Centralia, Centralia Municipal Airport|IL|United States|4|38-30-53N|089-05-32W|||163|| -KENN|--|---|Nenana, Nenana Municipal Airport|AK|United States|4|64-32-52N|149-05-02W|64-32-52N|149-05-02W|110|109| -KENV|72|581|Wendover / Air Force Auxillary Field|UT|United States|4|40-44N|114-02W|40-44N|114-02W|1291|1292|P -KENW|--|---|KENOSHA REGIONAL AIRPORT|WI|United States|4|42-36N|087-56W|42-35-40N|087-55-39W|226|219| -KENX|--|---|Albany NEXRAD|NY|United States|4|42-36N|074-04W|||581|| -KEOK|--|---|Keokuk Municipal|IA|United States|4|40-28N|091-26W|||205|| -KEPH|--|---|EPHRATA MUNICIPAL AIRPORT|WA|United States|4|47-18N|119-31W|47-18-37N|119-31-18W|388|383| -KEPO|72|608|Eastport|ME|United States|4|44-55N|067-00W|||24|23| -KEPZ|72|364|Santa Teresa|NM|United States|4|31-52N|106-42W|31-52N|106-42W|1252|1252|P -KEQY|--|---|MONROE AIRPORT|NC|United States|4|35-01N|080-37W|35-01-20N|080-37-09W|207|212| -KERI|72|526|ERIE INTERNATIONAL AIRPORT|PA|United States|4|42-05N|080-11W|42-04-59N|080-11-00W|223|222| -KERV|--|---|Kerrville, Kerrville Municipal Airport/Louis Schreiner Field|TX|United States|4|29-58N|099-05W|||493|| -KERY|--|---|Newberry, Luce County Airport|MI|United States|4|46-18-40N|085-27-26W|||265|| -KESC|72|648|Escanaba|MI|United States|4|45-45N|087-02W|||180|187| -KESF|--|---|ALEXANDRIA ESLER RGNL AIRPORT |LA|United States|4|31-24N|092-18W|31-23-29N|092-17-41W|34|28| -KESN|--|---|Easton / Newman Field|MD|United States|4|38-48N|076-04W|||22|| -KEST|--|---|ESTHERVILLE MUNICIPAL AIRPORT |IA|United States|4|43-24N|94-45W|43-24-13N|094-44-48W|401|401| -KESX|--|---|Las Vegas Nexrad|NV|United States|4|35-43N|114-54W|||1509|| -KETB|--|---|West Bend, West Bend Municipal Airport|WI|United States|4|43-25-20N|088-07-41W|||270|| -KETH|--|---|Wheaton, Wheaton Municipal Airport|MN|United States|4|45-46N|096-32W|||312|| -KEUF|--|---|WEEDON FIELD AIRPORT|AL|UNITED STATES|4|31-57-05N|85-07-55W|||87|| -KEUG|72|693|MAHLON SWEET FIELD|OR|United States|4|44-08N|123-13W|44-07-15N|123-12-40W|111|114| -KEUL|--|---|Caldwell, Caldwell Industrial Airport|ID|United States|4|43-38N|116-38W|||741|| -KEVB|--|---|New Smyrna Beach, New Smyrna Beach Municipal Airport|FL|United States|4|29-03-20N|080-56-54W|||3|| -KEVM|--|---|Eveleth, Eveleth-Virginia Municipal Airport|MN|United States|4|47-25N|092-30W|||420|| -KEVV|72|432|EVANSVILLE REGIONAL|IN|United States|4|38-02N|087-32W|38-01-53N|087-32-16W|127|117| -KEVW|--|---|EVANSTON-UINTA COUNTY FIELD|WY|United States|4|41-16N|111-02W|41-16-23N|111-01-44W|2183|2177| -KEWB|--|---|NEW BEDFORD REGIONAL AIRPORT|MA|United States|4|41-41N|070-58W|41-41-04N|070-57-07W|24|23| -KEWK|--|---|Newton, Newton City/County Airport|KS|United States|4|38-03N|097-17W|||467|| -KEWN|--|---|New Bern, Craven County Regional Airport|NC|United States|4|35-04-03N|077-02-50W|35-04-36N|077-02-37W|5|3| -KEWR|72|502|NEWARK INTERNATIONAL AIRPORT|NJ|United States|4|40-41N|74-10W|40-42-22N|074-09-36W|5|7| -KEWX|--|---|San Antonio Nexrad|TX|United States|4|29-42N|098-02W|||223|| -KEXX|--|---|Lexington, Davidson County Airport|NC|United States|4|35-46-52N|080-18-14W|||223|| -KEYE|--|---|INDIANAPOLIS EAGLE CREEK|IN|United States|4|39-50N|86-18W|39-49-34N|086-17-42W|251|248| -KEYF|--|---|Elizabethtown, Curtis L Brown Jr. Field Airport|NC|United States|4|34-36N|078-35W|||40|| -KEYW|72|201|KEY WEST INTERNATIONAL AIRPORT |FL|United States|4|24-33N|81-46W|24-33-11N|081-45-24W|1|5| -KEZF|--|---|Fredericksburg, Shannon Airport|VA|United States|4|38-16N|077-27W|||26|| -KEZM|--|---|Eastman, Heart of Georgia Regional Airport|GA|United States|4|32-12-51N|083-07-40W|||93|| -KF05|--|---|Vernon, Wilbarger County Airport|TX|United States|4|34-13-32N|099-17-01W|||386|| -KF10|74|645|Henryetta Municipal|OK|United States|4|35-24N|096-01W|35-24N|096-01W|259|259| -KF18|--|---|Cleburne, Cleburne Municipal Airport|TX|United States|4|32-21-13N|097-26-01W|||260|| -KF28|--|---|El Reno, El Reno Municipal Air Park|OK|United States|4|35-28-21N|098-00-20W|||432|| -KF30|74|646|Sulphur Municipal|OK|United States|4|34-31N|096-59W|34-31N|096-59W|320|320| -KF39|--|---|Sherman-Denison|TX|United States|4|33-43N|096-40W|||228|| -KF55|--|---|Granbury, Granbury Municipal Airport|TX|United States|4|32-26-39N|097-49-01W|||237|| -KFAF|--|---|Fort Eustis / Felker|VA|United States|4|37-08N|076-37W|||4|| -KFAM|--|---|Farmington Airport|MO|United States|4|37-46N|090-26W|||288|| -KFAR|72|753|HECTOR INTERNATIONAL AIRPORT |ND|United States|4|46-56N|096-49W|46-54-29N|096-48-31W|274|277| -KFAT|72|389|FRESNO AIR TERMINAL|CA|United States|4|36-47N|119-43W|36-47-13N|119-43-01W|101|104| -KFAY|--|---|FAYETTEVILLE REGIONAL AIRPORT |NC|United States|4|34-59N|078-53W|34-59-29N|078-53-08W|58|55| -KFBG|74|693|Fort Bragg / Simmons Army Airfield|NC|United States|4|35-08N|078-56W|35-08N|078-56W|74|74| -KFBL|--|---|Faribault, Faribault Municipal Airport|MN|United States|4|44-20N|093-19W|||323|| -KFCA|72|779|Kalispell, Glacier Park International Airport|MT|United States|4|48-18-15N|114-15-49W|48-18-33N|114-15-01W|906|908|P -KFCH|--|---|Fresno-Chandler|CA|United States|4|36-44N|119-49W|||85|| -KFCL|--|---|Fort Collins Supplementary Aviation Weather Reporting Station |CO|United States|4|40-35N|105-05W|||1525|| -KFCM|--|---|Minneapolis, Flying Cloud Airport|MN|United States|4|44-49-56N|093-28-13W|44-49-18N|093-27-29W|287|280| -KFCS|72|468|Fort Carson|CO|United States|4|38-42N|104-46W|38-42N|104-46W|1789|1789| -KFCX|--|---|Roanoke NEXRAD|VA|United States|4|37-01N|080-16W|||904|| -KFDK|--|---|Frederick, Frederick Municipal Airport|MD|United States|4|39-25-03N|077-22-28W|||92|| -KFDR|--|---|FREDERICK MUNICIPAL AIRPORT|OK|United States|4|34-21N|98-59W|34-21-25N|098-59-12W|383|377| -KFDY|--|---|FINDLAY AIRPORT|OH|United States|4|41-01N|083-40W|||247|| -KFEP|--|---|Freeport, Albertus Airport|IL|United States|4|42-14-47N|089-34-56W|||262|| -KFET|--|---|Fremont Municipal Airport|NE|United States|4|41-27N|096-31W|||379|| -KFFA|--|---|Kill Devil Hills, First Flight Airport|NC|United States|4|36-01N|075-40W|||4|| -KFFC|--|---|PEACHTREE CITY-FALCON FIELD|GA|United States|4|33-22N|084-34W|33-21-29N|084-34-07W|246|248| -KFFL|--|---|Fair Field|IA|United States|4|41-03N|091-59W|||244|| -KFFM|--|---|Fergus Falls, Fergus Falls Municipal Airport-Einar Mickelson Field|MN|United States|4|46-17N|096-09W|||360|| -KFFO|74|570|Dayton / Wright-Patterson Air Force Base|OH|United States|4|39-50N|084-03W|39-50N|084-03W|251|251|P -KFFT|--|---|FRANKFORT CAPITAL CITY AIRPORT |KY|United States|4|38-11N|84-54W|38-10-50N|084-54-12W|245|236| -KFFZ|--|---|Mesa / Falcon Field|AZ|United States|4|33-28N|111-44W|||424|| -KFGN|--|---|Flag Island|MN|United States|4|49-19N|94-54W|||329|| -KFHR|--|---|FRIDAY HARBOR AIRPORT|WA|United States|4|48-31N|123-02W|48-31-31N|123-01-28W|33|32| -KFHU|72|273|Fort Huachuca, Libby AAF Ft Huachuca|AZ|United States|4|46-98N|110-20W|||1438|| -KFIG|--|---|CLEARFIELD-LAWRENCE AIRPORT|PA|United States|4|41-03N|078-25W|41-02-51N|078-24-51W|462|462| -KFIR|--|---|First Divide|WY|United States|4|41-18N|110-46W|||2294|| -KFIT|--|---|Fitchburg, Fitchburg Municipal Airport|MA|United States|4|42-33-07N|071-45-21W|42-33-15N|071-45-14W|106|103| -KFKA|--|---|Preston, Fillmore County Airport|MN|United States|4|43-40-36N|092-10-47W|||389|| -KFKL|--|---|Franklin, Venango Regional Airport|PA|United States|4|41-23N|079-52W|||469|| -KFKN|--|---|Franklin / J B Rose|VA|United States|4|36-42N|076-54W|||12|| -KFKS|--|---|Frankfort, Frankfort Dow Memorial Field Airport|MI|United States|4|44-37-30N|086-12-02W|||193|| -KFLD|--|---|FOND DU LAC COUNTY AIRPORT|WI|United States|4|43-46N|88-29W|43-46-05N|088-29-19W|247|240| -KFLG|--|---|FLAGSTAFF PULLIAM AIRPORT|AZ|United States|4|35-08N|111-40W|35-08-31N|111-40-15W|2137|2134| -KFLL|--|---|FORT LAUDERDALE/HOLLYWOOD|FL|United States|4|26-04N|080-09W|26-04-13N|080-09-21W|3|30| -KFLO|--|---|FLORENCE REGIONAL AIRPORT|SC|United States|4|34-11N|079-44W|34-11-36N|079-43-45W|45|44| -KFLP|--|---|Flippin, Marion County Regional Airport|AR|United States|4|36-18N|092-35W|||219|| -KFLV|--|---|Fort Leavenworth|KS|United States|4|39-22N|094-55W|||235|| -KFME|--|---|Fort Meade / Tipton|MD|United States|4|39-05N|076-46W|||46|| -KFMH|72|506|Otis Air National Guard Base|MA|United States|4|41-39N|070-31W|||40|| -KFMN|--|---|FARMINGTON FOUR CORNERS|NM|United States|4|36-45N|108-14W|36-44-21N|108-13-38W|1677|1685| -KFMY|--|---|FORT MYERS PAGE FIELD|FL|United States|4|26-35N|081-52W|26-35-27N|081-51-25W|5|4| -KFNB|--|---|FALLS CITY BRENNER FLD AIRPORT |NE|United States|4|40-05N|095-35W|||300|| -KFNL|--|---|Fort Collins/Loveland, Fort Collins-Loveland Municipal Airport|CO|United States|4|40-27N|105-01W|||1529|| -KFNT|72|637|FLINT BISHOP INTERNATIONAL AIRPORT|MI|United States|4|42-58N|83-45W|42-58-27N|083-44-52W|238|233| -KFOA|--|---|Flora, Flora Municipal Airport|IL|United States|4|38-39-54N|088-27-11W|||144|| -KFOD|72|549|Fort Dodge|IA|United States|4|42-33N|094-11W|||354|355| -KFOE|--|---|FORBES FIELD|KS|United States|4|38-56N|95-39W|38-56-53N|095-40-35W|329|320| -KFOK|--|---|THE GABRESKI AIRPORT|NY|United States|4|40-51N|072-37W|40-50-23N|072-38-29W|20|33| -KFOQ|--|---|Freeport Supplementary Aviation Weather Reporting Station |TX|United States|4|29-00N|095-19W|||2|| -KFOZ|--|---|Bigfork, Bigfork Municipal Airport|MN|United States|4|47-46-58N|093-39-01W|||411|| -KFPK|--|---|Charlotte, Fitch H Beach Airport|MI|United States|4|42-34-28N|084-48-41W|||271|| -KFPR|--|---|FORT PIERCE ST LUCIE|FL|United States|4|27-30N|080-23W|27-29-35N|080-22-24W|8|13| -KFQD|--|---|Rutherfordton, Rutherford County-Marchman Field Airport|NC|United States|4|35-25-42N|081-56-06W|||329|| -KFRG|--|---|FARMINGDALE REPUBLIC AIRPORT |NY|United States|4|40-44N|073-25W|40-43-39N|073-25-07W|25|21| -KFRI|72|455|Fort Riley, Marshall AAF Ft Riley|KS|United States|4|39-03-20N|096-45-51W|||324|| -KFRM|--|---|Fairmont, Fairmont Municipal Airport|MN|United States|4|43-39N|094-25W|||354|| -KFSD|72|651|SIOUX FALLS FOSS FIELD|SD|United States|4|43-35N|096-45W|43-35-14N|096-44-03W|436|434| -KFSE|--|---|Fosston, Fosston Municipal Airport|MN|United States|4|47-35-34N|095-46-24W|||389|| -KFSI|72|355|Fort Sill|OK|United States|4|34-36N|098-24W|34-39N|098-24W|362|360| -KFSM|72|344|FORT SMITH REGIONAL AIRPORT|AR|United States|4|35-20N|94-22W|35-20-16N|094-22-12W|143|140| -KFST|--|---|FORT STOCKTON PECOS CO AIRPORT |TX|United States|4|30-55N|102-55W|30-54-33N|102-54-45W|917|918| -KFSW|--|---|Fort Madison|IA|United States|4|40-40N|091-20W|||221|| -KFTG|--|---|Denver Nexrad|CO|United States|4|39-47N|104-33W|||1709|| -KFTK|72|424|Fort Knox|KY|United States|4|37-54N|085-58W|37-54N|085-58W|230|230| -KFTW|--|---|FORT WORTH MEACHAM INTERNATIONAL .|TX|United States|4|32-50N|097-22W|32-49-35N|097-21-22W|216|214| -KFTY|--|---|ATLANTA FULTON COUNTY AIRPORT |GA|United States|4|33-47N|84-31W|33-46-37N|084-31-12W|256|263| -KFUL|--|---|FULLERTON MUNICIPAL AIRPORT |CA|United States|4|33-52N|117-59W|33-52-15N|117-58-48W|29|35| -KFVE|--|---|NORTHERN AROOSTOOK REGIONAL|ME|United States|4|47-17N|68-18W|47-17-13N|068-18-50W|301|301| -KFVX|--|---|Farmville|VA|United States|4|37-21N|078-26W|||125|| -KFWA|72|533|FORT WAYNE INTERNATIONAL|IN|United States|4|41-00N|85-12W|40-59-11N|085-11-17W|248|248| -KFWC|--|---|Fairfield, Fairfield Municipal Airport|IL|United States|4|38-22-43N|088-24-46W|||133|| -KFWD|72|249|Fort Worth|TX|United States|4|32-50N|097-18W|32-50N|097-18W|196|196| -KFWN|--|---|SUSSEX AIRPORT|NJ|United States|4|41-12N|074-38W|41-12-02N|074-37-29W|128|133| -KFWQ|--|---|Monongahela, Rostraver Airport|PA|United States|4|40-12-35N|079-49-53W|||374|| -KFWS|--|---|Fort Worth, Forth Worth Spinks Airport|TX|United States|4|32-34N|097-18W|||213|| -KFXE|--|---|FORT LAUDERDALE EXECUTIVE|FL|United States|4|26-12N|080-11W|26-11-44N|080-10-25W|4|6| -KFYJ|--|---|West Point, Middle Peninsula Regional Airport|VA|United States|4|37-31-16N|076-45-52W|||7|| -KFYV|--|---|FAYETTEVILLE DRAKE FIELD|AR|United States|4|36-00N|94-10W|36-00-19N|094-10-21W|381|379| -KFZY|--|---|FULTON OSWEGO COUNTY AIRPORT|NY|United States|4|43-21N|076-23W|||145|| -KGAD|--|---|Gadsden, Gadsden Municipal Airport|AL|United States|4|33-58N|086-05W|||173|| -KGAF|--|---|Huston Field|ND|United States|4|48-24-17N|097-22-15W|||251|| -KGAG|--|---|GAGE AIRPORT|OK|United States|4|36-18N|99-46W|36-17-50N|099-46-07W|678|668| -KGAO|--|---|Galliano, South Lafourche Airport|LA|United States|4|29-26-41N|090-15-40W|||0|| -KGBD|--|---|Great Bend, Great Bend Municipal Airport|KS|United States|4|38-21N|098-52W|||575|| -KGBG|--|---|Galesburg, Galesburg Municipal Airport|IL|United States|4|40-56-17N|090-25-52W|||233|| -KGBK|--|---|Magnolia|LA|United States|4|27-12-14N|092-12-09W|||||| -KGBN|74|724|Gila Bend U. S. Army Airfield|AZ|United States|4|32-26N|112-41W|32-56N|112-42W|262|261| -KGCC|72|665|GILLETTE-CAMPBELL CTY AIRPORT |WY|United States|4|44-20N|105-33W|44-20-54N|105-32-13W|1330|1320| -KGCK|--|---|GARDEN CITY REGIONAL AIRPORT|KS|United States|4|37-55N|100-43W|37-55-36N|100-43-44W|881|877| -KGCM|--|---|Claremore, Claremore Regional Airport|OK|United States|4|36-17-40N|095-28-47W|||221|| -KGCN|--|---|GRAND CANYON NATL PARK AIRPORT |AZ|United States|4|35-57N|112-09W|35-57-27N|112-08-39W|2014|2016| -KGDB|--|---|Granite Falls, Granite Falls Municipal Airport/Lenzen-Roe Memorial Field|MN|United States|4|44-45-11N|095-33-21W|||319|| -KGDJ|--|---|Granbury, Granbury Municipal Airport|TX|United States|4|32-26-39N|097-49W|||237|| -KGDP|72|262|GUADALUPE PASS|TX|United States|4|31-50N|104-49W|||1663|1692| -KGDV|--|---|Glendive, Dawson Community Airport|MT|United States|4|47-08N|104-48W|||749|| -KGED|--|---|GEORGETOWN SUSSEX CO AIRPORT |DE|United States|4|38-41N|075-22W|38-41-30N|075-21-46W|16|19| -KGEG|72|785|SPOKANE INTERNATIONAL AIRPORT |WA|United States|4|47-37N|117-32W|47-37-19N|117-32-22W|723|735| -KGEU|--|---|Glendale, Glendale Municipal Airport|AZ|United States|4|33-31-38N|112-17-43W|||325|| -KGEV|--|---|Jefferson, Ashe County Airport|NC|United States|4|36-26N|81-25W|||969|| -KGEY|--|---|SOUTH BIG HORN COUNTY AIRPORT |WY|United States|4|44-31N|108-05W|44-30-36N|108-04-49W|1199|1191| -KGEZ|--|---|SHELBYVILLE MUNICIPAL AIRPORT |IN|United States|4|39-35N|85-48W|39-34-42N|085-47-59W|245|245| -KGFA|--|---|Malmstrom Air Force Base|MT|United States|4|47-30N|111-11W|||1075|| -KGFK|--|---|GRAND FORKS INTERNATIONAL|ND|United States|4|47-57N|97-11W|47-57-02N|097-10-42W|257|190| -KGFL|--|---|FLOYD BENNETT MEMORIAL AIRPORT |NY|United States|4|43-20N|073-37W|43-20-30N|073-36-20W|100|103| -KGGB|--|---|Golden Gate Bridge|CA|United States|4|37-49N|122-28W|||81|| -KGGG|72|247|LONGVIEW GREGG COUNTY AIRPORT |TX|United States|4|32-23N|094-43W|32-22-48N|094-42-43W|111|107| -KGGW|72|768|GLASGOW INTERNATIONAL AIRPORT |MT|United States|4|48-13N|106-37W|48-12-30N|106-37-34W|699|693| -KGHB|--|---|Salsa|LA|United States|4|27-50-25N|091-59-16W|||||| -KGHW|--|---|Glenwood, Glenwood Municipal Airport|MN|United States|4|45-39N|095-19W|||425|| -KGIF|--|---|WINTER HAVENS GILBERT AIRPORT |FL|United States|4|28-04N|81-45W|28-03-34N|081-45-08W|45|43| -KGJT|72|476|GRAND JUNCTION WALKER FIELD|CO|United States|4|39-08N|108-32W|39-07-00N|108-32-00W|1481|1452| -KGKJ|--|---|PORT MEADVILLE AIRPORT|PA|United States|4|41-38N|080-13W|||427|| -KGKN|--|---|Gulkana, Gulkana Airport|AK|United States|4|62-09-37N|145-27-27W|62-09-30N|145-27-24W|481|480| -KGKY|--|---|ARLINGTON MUNICIPAL AIRPORT|TX|United States|4|32-40N|97-06W|32-39-52N|097-05-30W|192|185| -KGLD|72|465|GOODLAND RENNER FIELD|KS|United States|4|39-22N|101-42W|39-22-12N|101-41-53W|1114|1114| -KGLE|--|---|Gainesville, Gainesville Municipal Airport|TX|United States|4|33-39-05N|097-11-49W|||256|| -KGLH|--|---|GREENVILLE MUNICIPAL AIRPORT |MS|United States|4|33-29N|090-59W|33-28-53N|090-59-25W|39|45| -KGLR|--|---|GAYLORD REGIONAL AIRPORT|MI|United States|4|45-01N|84-41W|45-00-59N|084-41-30W|405|407| -KGLS|72|242|SCHOLES FIELD|TX|United States|4|29-16N|094-52W|29-16-05N|094-51-18W|2|6| -KGLW|--|---|Glasgow, Glasgow Municipal Airport|KY|United States|4|37-01-54N|085-57-13W|||218|| -KGMJ|--|---|Grove, Grove Municipal Airport|OK|United States|4|36-36-19N|094-44-19W|||254|| -KGMU|--|---|GREENVILLE DOWNTOWN AIRPORT |SC|United States|4|34-51N|82-21W|34-51-01N|082-21-05W|319|315| -KGNA|--|---|Grand Marais, The Bay of Grand Marais|MN|United States|4|47-50N|090-23W|||186|| -KGNC|--|---|Seminole, Gaines County Airport|TX|United States|4|32-40-31N|102-39-09W|||1010|| -KGNR|--|---|Greenville|ME|United States|4|45-28N|69-35W|||427|| -KGNT|--|---|GRANTS-MILAN MUNICIPAL AIRPORT |NM|United States|4|35-10N|107-54W|35-09-58N|107-53-56W|1988|1987| -KGNV|--|---|GAINESVILLE REGIONAL AIRPORT |FL|United States|4|29-42N|082-17W|29-41-34N|082-16-48W|46|45| -KGOK|--|---|GUTHRIE MUNICIPAL AIRPORT|OK|United States|4|35-51N|97-25W|35-51-03N|097-25-07W|326|324| -KGON|--|---|GROTON/NEW LONDON AIRPORT |CT|United States|4|41-20N|72-03W|41-19-55N|072-02-42W|3|3| -KGOP|--|---|Gatesville, City-County Airport|TX|United States|4|31-25-16N|097-47-49W|||276|| -KGOV|--|---|Grayling, Grayling Army Airfield|MI|United States|4|44-40-49N|084-43-44W|||353|| -KGPI|72|779|GLACIER PARK INTERNATIONAL AIRPORT|MT|United States|4|48-18N|114-16W|48-18-33N|114-15-01W|906|908| -KGPM|--|---|Grand Prairie, Grand Prairie Municipal Airport|TX|United States|4|32-41-55N|097-02-48W|||180|| -KGPT|--|---|GULFPORT-BILOXI REG AIRPORT |MS|United States|4|30-25N|089-05W|30-24-05N|089-04-21W|9|14| -KGPZ|--|---|Grand Rapids, Grand Rapids/Itasca County Airport-Gordon Newstrom Field|MN|United States|4|47-13N|093-31W|||413|| -KGRB|72|645|AUSTIN STRAUBEL INTERNATIONAL AIRPORT |WI|United States|4|44-29N|088-08W|44-29-47N|088-06-46W|212|205| -KGRD|--|---|GREENWOOD COUNTY AIRPORT|SC|United States|4|34-14N|82-09W|34-14-46N|082-09-11W|192|185| -KGRF|74|207|Fort Lewis / Gray U. S. Army Airfield|WA|United States|4|47-07N|122-33W|47-08N|122-36W|92|87| -KGRI|72|552|CENTRAL NEBRASKA REGIONAL|NE|United States|4|40-58N|98-19W|40-57-30N|098-19-05W|563|561| -KGRK|--|---|Fort Hood, Robert Gray AAF Ft Hood|TX|United States|4|31-04N|097-49W|||309|| -KGRN|--|---|Gordon Municipal|NE|United States|4|42-48N|102-10W|||1085|| -KGRR|72|635|GERALD R. FORD INTERNATIONAL|MI|United States|4|42-53N|085-31W|42-53-04N|085-31-45W|242|239| -KGRY|--|---|Green Canyon 338|LA|United States|4|27-37-29N|090-26-28W|||||| -KGSB|--|---|Seymour-Johnson Air Force Base|NC|United States|4|35-20N|077-58W|||33|| -KGSH|--|---|GOSHEN MUNICIPAL AIRPORT|IN|United States|4|41-32N|85-47W|41-31-24N|085-47-39W|252|252| -KGSM|--|---|Ship Shoal 207A|LA|United States|4|28-32N|090-59W|||1|| -KGSN|--|---|SAIPAN INTERNATIONAL AIRPORT ||NORTHERN MARIANA ISLAND||15-07N|145-44E|||66|| -KGSO|72|317|PIEDMONT TRIAD INTERNATIONAL AIRPORT |NC|United States|4|36-06N|079-57W|36-05-53N|079-56-38W|282|275| -KGSP|72|312|GREER GREENVILLE SPARTBURG|SC|United States|4|34-53N|82-13W|34-53-00N|082-13-13W|296|286| -KGTB|74|370|Fort Drum / Wheeler-Sack U. S. Army Airfield|NY|United States|4|44-03N|075-44W|44-03N|075-44W|207|207| -KGTF|72|775|GREAT FALLS INTERNATIONAL|MT|United States|4|47-28N|111-23W|47-28-48N|111-21-31W|1120|1119| -KGTR|--|---|Columbus/West Point/Starkville, Golden Triangle Regional Airport|MS|United States|4|33-27N|088-35W|||81|| -KGTU|--|---|Georgetown, Georgetown Municipal Airport|TX|United States|4|30-41N|097-41W|||241|| -KGUC|--|---|Gunnison, Gunnison-Crested Butte Regional Airport|CO|United States|4|38-32N|106-56W|||2340|| -KGUL|--|---|Gunnison|TX|United States|4|27-18-14N|093-32-18W||||| -KGUP|--|---|GALLUP MUNICIPAL AIRPORT|NM|United States|4|35-31N|108-47W|35-30-54N|108-46-50W|1973|1971| -KGUS|--|---|Grissom Air Force Base / Peru|IN|United States|4|40-39N|086-09W|||247|| -KGUY|--|---|GUYMON MUNICIPAL AIRPORT|OK|United States|4|36-41N|101-30W|||952|948| -KGVB|--|---|Bogalusa|LA|United States|4|30-52-54N|089-51-44W|||||| -KGVL|--|---|GILMER MEMORIAL AIRPORT|GA|United States|4|34-16N|83-50W|34-16-33N|083-49-51W|389|386| -KGVT|--|---|Greenville / Majors|TX|United States|4|33-04N|096-04W|||163|| -KGVW|--|---|Kansas City, Richards-Gebaur Airport|MO|United States|4|38-50-06N|094-33-41W|38-50-45N|094-33-21W|332|337| -KGVX|--|---|Galveston 424|TX|United States|4|28-34-36N|094-58-36W|||||| -KGWO|--|---|GREENWOOD-LEFLORE AIRPORT|MS|United States|4|33-30N|090-05W|33-29-45N|090-05-22W|47|44| -KGWR|--|---|Gwinner-Roger Melroe Field Airport|ND|United States|4|46-13-07N|097-38-36W|||386|| -KGWW|--|---|Goldsboro, Goldsboro-Wayne Municipal Airport|NC|United States|4|35-27-38N|077-57-54W|||40|| -KGXY|--|---|Greeley, Greeley-Weld County Airport|CO|United States|4|40-26N|104-38W|||1432|| -KGYB|--|---|Giddings, Giddings-Lee County Airport|TX|United States|4|30-10-09N|096-58-48W|||148|| -KGYI|--|---|Sherman/Denison, Grayson County Airport|TX|United States|4|33-43N|096-40W|||228|| -KGYL|--|---|Glencoe, Glencoe Municipal Airport|MN|United States|4|44-45-22N|094-04-52W|||302|| -KGYR|--|---|Goodyear Municipal|AZ|United States|4|33-25N|112-23W|||295|| -KGYY|--|---|Gary Regional|IN|United States|4|41-37N|087-25W|||180|| -KGZH|--|---|EVERGREEN MIDDLETON FIELD|AL|United States|4|31-25N|87-03W|31-25-10N|087-02-38W|79|78| -KH08|--|---|High Island 264C|LA|United States|4|28-28N|93-44W|||0|| -KH32|--|---|Southwest Harbor|ME|United States|4|44-16N|068-19W|||5|| -KH39|--|---|High Island A572c|LA|United States|4|27-57N|093-59W|||30|| -KH45|--|---|Seminole, Seminole Municipal Airport|OK|United States|4|35-16-28N|096-40-30W|||312|| -KH92|74|643|Hominy Municipal|OK|United States|4|36-26N|096-23W|36-26N|096-23W|251|252| -KHAO|--|---|BUTLER COUNTY REGIONAL AIRPORT |OH|United States|4|39-22N|84-31W|39-21-47N|084-31-34W|193|188| -KHAT|72|304|Cape Hatteras|NC|United States|4|35-16N|075-33W|35-16N|075-33W|2|3|P -KHBG|--|---|HATTIESBURG CHAIN MUNICIPAL|MS|United States|4|31-16N|89-15W|31-16-11N|089-15-14W|46|44| -KHBI|--|---|Asheboro, Asheboro Municipal Airport|NC|United States|4|35-39-14N|079-53-42W|||205|| -KHBR|--|---|HOBART MUNICIPAL AIRPORT|OK|United States|4|34-59N|99-03W|34-59-19N|099-03-26W|477|473| -KHBV|--|---|Hebbronville, Jim Hogg County Airport|TX|United States|4|27-20N|098-44W|||202|| -KHCD|--|---|Hutchinson, Hutchinson Municipal Airport-Butler Field|MN|United States|4|44-52N|094-23W|||323|| -KHCO|--|---|Hallock, Hallock Municipal Airport|MN|United States|4|48-45-10N|096-56-35W|||250|| -KHDC|--|---|Hammond, Hammond Municipal Airport|LA|United States|4|30-31-15N|090-25-03W|||13|| -KHDE|--|---|Brewster Field Airport|NE|United States|4|40-27N|099-20W|||704|| -KHDN|--|---|Hayden, Yampa Valley Airport|CO|United States|4|40-29N|107-13W|||2012|| -KHDO|--|---|HONDO MUNICIPAL AIRPORT|TX|United States|4|29-22N|99-10W|29-21-26N|099-09-49W|283|282| -KHEF|--|---|Manassas, Manassas Regional Airport/Harry P. Davis Field|VA|United States|4|38-43N|077-31W|||59|| -KHEI|--|---|HETTINGER MUNICIPAL AIRPORT|ND|United States|4|46-01N|102-39W|46-01-02N|102-39-07W|824|828| -KHEY|--|---|Hanchey AHP / Ozark|AL|United States|4|31-21N|085-40W|||97|| -KHEZ|--|---|Natchez, Hardy-Anders Field Natchez-Adams County Airport|MS|United States|4|31-37N|091-18W|||83|| -KHFD|--|---|HARTFORD-BRAINARD AIRPORT|CT|United States|4|41-44N|072-39W|41-44-05N|072-39-07W|6|4| -KHFF|--|---|Mackall U. S. Army Airfield|NC|United States|4|35-02N|079-30W|||115|| -KHGR|--|---|HAGERSTOWN REGIONAL AIRPORT|MD|United States|4|39-42N|077-44W|39-42-37N|077-43-53W|215|224| -KHGX|--|---|Houston / Galviston Nexrad|TX|United States|4|29-28N|095-05W|||35|| -KHHF|--|---|Canadian, Hemphill County Airport|TX|United States|4|35-54N|100-24W|||730|| -KHHR|--|---|HAWTHORNE MUNICIPAL AIRPORT |CA|United States|4|33-55N|118-20W|33-55-24N|118-20-10W|19|18| -KHHV|--|---|Hoover Diana|TX|United States|4|26-56-21N|094-41-19W|||||| -KHIB|--|---|CHISHOLM-HIBBING AIRPORT|MN|United States|4|47-23N|92-50W|47-23-33N|092-50-21W|412|412| -KHIE|--|---|MT WASHINGTON REGIONAL AIRPORT |NH|United States|4|44-22N|71-33W|44-21-57N|071-33-03W|327|318| -KHIF|--|---|Hill Air Force Base / Ogden|UT|United States|4|41-07N|111-58W|||1459|| -KHIO|--|---|PORTLAND-HILLSBORO AIRPORT|OR|United States|4|45-33N|122-57W|45-32-15N|122-56-57W|62|68| -KHJH|--|---|Hebron, Hebron Municipal Airport|NE|United States|4|40-09-08N|097-35-13W|||447|| -KHJO|--|---|Hanford, Hanford Municipal Airport|CA|United States|4|36-19-07N|119-37-44W|||74|| -KHKA|--|---|BLYTHEVILLE MUNICIPAL AIRPORT |AR|United States|4|35-56N|89-50W|35-56-17N|089-49-55W|78|78| -KHKS|--|---|HAWKINS FIELD|MS|United States|4|32-20N|090-13W|32-19-58N|090-13-35W|104|108| -KHKY|--|---|HICKORY REGIONAL AIRPORT|NC|United States|4|35-45N|081-23W|35-44-30N|081-23-22W|362|354| -KHLC|--|---|HILL CITY MUNICIPAL AIRPORT|KS|United States|4|39-22N|99-50W|||680|669| -KHLD|--|---|Hiland|WY|United States|4|43-06N|107-19W|||1846|| -KHLG|--|---|WHEELING OHIO COUNTY AIRPORT|WV|United States|4|40-10N|080-39W|40-10-54N|080-38-48W|364|372| -KHLN|72|772|HELENA REGIONAL AIRPORT|MT|United States|4|46-36N|111-58W|46-36-09N|111-59-39W|1180|1187| -KHLR|72|257|Fort Hood, Hood AAF Ft Hood|TX|United States|4|31-08N|097-42W|||282|| -KHLX|--|---|Hillsville|VA|United States|4|36-46N|080-49W|||834|| -KHMM|--|---|Hamilton / Ravalli County|MT|United States|4|46-15N|114-09W|||1110|| -KHMN|74|732|Holloman Air Force Base|NM|United States|4|32-51N|106-06W|32-54N|106-06W|1248|1248| -KHMS|72|784|Hanford|WA|United States|4|46-34N|119-36W|||223|223| -KHMZ|--|---|Bedford, Bedford County Airport|PA|United States|4|40-05-07N|078-30-44W|||354|| -KHNB|--|---|Huntingburg|IN|United States|4|38-15N|086-57W|||161|| -KHND|--|---|Las Vegas, Henderson Executive Airport|NV|United States|4|35-58-22N|115-08-04W|||760|| -KHNR|--|---|Harlan, Harlan Municipal Airport|IA|United States|4|41-35-04N|095-20-23W|||375|| -KHNS|--|---|Haines, Haines Airport|AK|United States|4|59-14-38N|135-30-34W|59-14-36N|135-30-34W|4|5| -KHNZ|--|---|Oxford, Henderson-Oxford Airport|NC|United States|4|36-21-42N|078-31-45W|||161|| -KHOB|--|---|Hobbs / Lea County|NM|United States|4|32-41N|103-13W|||1115|| -KHOM|--|---|Homer, Homer Airport|AK|United States|4|59-38-33N|151-29-14W|59-38-23N|151-29-02W|23|23| -KHON|72|654|HURON REGIONAL AIRPORT|SD|United States|4|44-23N|098-14W|44-23-09N|098-13-22W|393|390| -KHOP|74|671|Fort Campbell U. S. Army Airfield|KY|United States|4|36-40N|087-30W|36-40N|087-30W|174|174| -KHOT|--|---|HOT SPRINGS MEMORIAL FIELD|AR|United States|4|34-29N|093-06W|34-28-57N|093-05-44W|165|162| -KHOU|--|---|HOUSTON HOBBY AIRPORT|TX|United States|4|29-38N|095-17W|29-38-24N|095-16-38W|14|36| -KHPN|--|---|WHITE PLAINS WESTCHESTER|NY|United States|4|41-04N|073-42W|41-03-46N|073-42-41W|134|121| -KHQI|--|---|High Island 376|TX|United States|4|27-57-43N|093-40-15W|||||| -KHQM|--|---|HOQUIAM BOWERMAN AIRPORT|WA|United States|4|46-58N|123-56W|46-58-26N|123-55-37W|4|7| -KHQU|--|---|Thomson, Thomson-McDuffie County Airport|GA|United States|4|33-31-46N|082-30-59W|||152|| -KHQZ|--|---|Mesquite, Mesquite Metro Airport|TX|United States|4|32-44-49N|096-31-49W|||136|| -KHRI|--|---|HERMISTON MUNICIPAL AIRPORT|OR|United States|4|45-50N|119-16W|45-49-41N|119-15-44W|195|195| -KHRJ|--|---|Erwin, Harnett County Airport|NC|United States|4|35-22-43N|078-44-01W|||60|| -KHRL|--|---|RIO GRANDE VALLEY|TX|United States|4|26-13N|97-39W|26-13-33N|097-39-40W|11|10| -KHRO|--|---|HARRISON BOONE COUNTY AIRPORT |AR|United States|4|36-16N|093-09W|36-15-53N|093-09-03W|416|417| -KHRT|74|777|Hurlburt Field|FL|United States|4|30-25N|086-41W|30-26N|086-41W|12|11| -KHSA|--|---|Bay St. Louis, Stennis International Airport|MS|United States|4|30-22-04N|089-27-17W|||7|| -KHSB|--|---|Harrisburg, Harrisburg-Raleigh Airport|IL|United States|4|37-48-41N|088-32-57W|||121|| -KHSE|--|---|MITCHELL FIELD|NC|United States|4|35-14N|075-37W|35-13-55N|075-37-22W|5|3| -KHSI|--|---|HASTINGS MUNICIPAL AIRPORT|NE|United States|4|40-36N|98-26W|40-36-00N|098-25-35W|598|591| -KHSP|--|---|Hot Springs / Ingalls|VA|United States|4|37-57N|079-50W|||1156|| -KHSS|--|---|Hot Springs Aviation Weather Reporting Station|NC|United States|4|35-54N|082-49W|||451|| -KHST|--|---|Homestead Air Force Base|FL|United States|4|25-29N|080-23W|||2|| -KHSV|72|323|HUNTSVILLE INTERNATIONAL JONES FIELD|AL|United States|4|34-39N|086-47W|34-38-46N|086-46-16W|192|191| -KHTH|--|---|Hawthorne Municipal|NV|United States|4|38-33N|118-38W|||1285|| -KHTL|72|638|ROSCOMMON COUNTY AIRPORT|MI|United States|4|44-21N|084-40W|44-21-02N|084-40-39W|351|351| -KHTO|--|---|East Hampton, East Hampton Airport|NY|United States|4|40-57-34N|072-15-07W|||17|| -KHTS|72|425|TRI-STATE AIRPORT|WV|United States|4|38-22N|082-33W|38-22-09N|082-33-18W|252|254| -KHUF|--|---|TERRE HAUTE INTERNATIONAL -HULMAN FLD|IN|United States|4|39-27N|087-19W|39-27-43N|087-18-09W|178|179| -KHUL|--|---|HOULTON INT'L AIRPORT|ME|United States|4|46-07N|067-48W|46-07-30N|067-47-10W|150|150| -KHUM|--|---|Houma-Terrebonne|LA|United States|4|29-34N|090-40W|||3|| -KHUT|--|---|HUTCHINSON MUNICIPAL AIRPORT|KS|United States|4|38-04N|97-52W|38-03-59N|097-51-38W|470|467| -KHVN|--|---|TWEED-NEW HAVEN AIRPORT|CT|United States|4|41-16N|072-53W|41-15-55N|072-53-05W|4|3| -KHVR|72|777|HAVRE CITY-COUNTY AIRPORT|MT|United States|4|48-33N|109-46W|48-32-46N|109-45-42W|789|787| -KHWD|--|---|HAYWARD AIR TERMINAL|CA|United States|4|37-40N|122-07W|37-39-46N|122-07-11W|14|21| -KHWO|--|---|HOLLYWOOD NORTH PERRY AIRPORT |FL|United States|4|26-00N|080-14W|26-00-00N|080-15-06W|3|2| -KHWV|--|---|SHIRLEY BROOKHAVEN AIRPORT|NY|United States|4|40-49N|072-52W|40-48-56N|072-52-03W|25|21| -KHXD|--|---|Hilton Head Island, Hilton Head Airport|SC|United States|4|32-13N|080-42W|||6|| -KHYA|--|---|HYANNIS BARNSTABLE BOARDMN|MA|United States|4|41-40N|070-16W|41-40-19N|070-16-11W|16|22| -KHYI|--|---|San Marcos, San Marcos Municipal Airport|TX|United States|4|29-53-37N|097-51-53W|||182|| -KHYR|--|---|HAYWARD MUNICIPAL AIRPORT|WI|United States|4|46-01N|91-27W|46-01-38N|091-26-45W|370|370| -KHYS|--|---|Hays, Hays Regional Airport|KS|United States|4|38-51N|099-16W|||609|| -KHYX|--|---|Saginaw, Saginaw County H.W. Browne Airport|MI|United States|4|43-26-00N|083-51-45W|||183|| -KHZE|--|---|Mercer County Regional Airport|ND|United States|4|47-17-24N|101-34-51W|||553|| -KHZX|--|---|Mc Gregor, Isedor Iverson Airport|MN|United States|4|46-37-07N|093-18-35W|||374|| -KHZY|--|---|ASHTABULA COUNTY AIRPORT|OH|United States|4|41-47N|080-42W|41-46-48N|080-42-04W|282|276| -KI12|--|---|Sidney, Sidney Municipal Airport|OH|United States|4|40-14-28N|084-09-03W|||318|| -KI16|--|---|Pineville, Kee Field Airport|WV|United States|4|37-36-01N|081-33-33W|||544|| -KI63|--|---|Mount Sterling, Mount Sterling Municipal Airport|IL|United States|4|39-59-15N|090-48-15W|||223|| -KIAB|--|---|McConnell Air Force Base|KS|United States|4|37-37N|097-16W|||418|| -KIAD|72|403|DULLES INTERNATIONAL AIRPORT|VA|United States|4|38-56N|077-27W|38-57-06N|077-26-37W|95|93| -KIAG|--|---|NIAGARA FALLS INTERNATIONAL AIRPORT|NY|United States|4|43-07N|078-56W|43-06-01N|078-56-37W|178|182| -KIAH|72|243|HOUSTON INTERCONTINENTAL|TX|United States|4|30-00N|095-22W|29-58-25N|095-20-33W|30|36| -KIBM|--|---|Kimball, Kimball Municipal Airport/Robert E Arraj Field|NE|United States|4|41-11N|103-40W|||1501|| -KICL|--|---|Clarinda|IA|United States|4|40-43N|095-02W|||303|| -KICR|--|---|WINNER REGIONAL AIRPORT |SD|UNITED STATES|4|43-23N|99-51W|||619|| -KICT|72|450|WICHITA MID-CONTINENT AIRPORT |KS|United States|4|37-39N|97-26W|37-39-16N|097-26-35W|406|408| -KIDA|--|---|IDAHO FALLS REGIONAL AIRPORT|ID|United States|4|43-31N|112-04W|43-30-56N|112-03-58W|1445|1453| -KIDI|--|---|Indiana / Stewart Field|PA|United States|4|40-38N|079-06W|||429|| -KIDV|--|---|I-25 Divide|WY|United States|4|43-56N|106-39W|||1531|| -KIEN|--|---|PINE RIDGE AIRPORT|SD|United States|4|43-02N|102-31W|43-01-34N|102-31-23W|1015|998| -KIER|--|---|Natchitoches, Natchitoches Regional Airport|LA|United States|4|31-44-09N|093-05-57W|||37|| -KIFP|--|---|Bullhead City, Laughlin/Bullhead International Airport|AZ|United States|4|35-09-27N|114-33-34W|||212|| -KIGC|--|---|Charleston Air Force Base|SC|United States|4|32-54N|080-03W|||14|| -KIGM|72|370|KINGMAN AIRPORT|AZ|United States|4|35-15N|113-56W|35-15-35N|113-56-31W|1050|1032| -KIGQ|--|---|Chicago, Lansing Municipal Airport|IL|United States|4|41-32-24N|087-31-56W|||188|| -KIGX|--|---|CHAPEL HILL WILLIAMS AIRPORT|NC|United States|4|35-56N|79-04W|35-56-01N|079-03-38W|156|155| -KIIB|--|---|Independence, Independence Municipal Airport|IA|United States|4|42-27N|091-56W|||298|| -KIIY|--|---|Washington, Washington-Wilkes County Airport|GA|United States|4|33-46-47N|082-48-59W|||197|| -KIJD|--|---|WILLIMANTIC WINDHAM AIRPORT|CT|United States|4|41-45N|072-11W|41-44-21N|072-10-56W|75|75| -KIJX|--|---|Jacksonville, Jacksonville Municipal Airport|IL|United States|4|39-46-27N|090-14-19W|||190|| -KIKA|--|---|Inyan Kara|WY|United States|4|44-18N|104-38W|||1319|| -KIKK|--|---|Kankakee, Greater Kankakee Airport|IL|United States|4|41-04-17N|087-50-47W|||192|| -KIKR|--|---|Kirtland, Kirtland Air Force Base Auxiliary Field|NM|United States|4|34-57-00N|106-34-00W|||1612|1609| -KIKT|--|---|Nakika|MS|United States|4|28-31-15N|088-17-20W|||||| -KIKV|--|---|Ankeny, Ankeny Regional Airport|IA|United States|4|41-41-24N|093-33-57W|||275|| -KILE|--|---|Killeen, Skylark Field Airport|TX|United States|4|31-05N|097-41W|||259|| -KILG|--|---|WILMINGTON NEW CASTLE CO|DE|United States|4|39-40N|075-36W|39-40-30N|075-35-54W|24|28| -KILI|--|---|Iliamna, Iliamna Airport|AK|United States|4|59-44-57N|154-54-33W|59-44-57N|154-54-33W|63|52| -KILL|--|---|Willmar, Willmar Municipal Airport-John L Rice Field|MN|United States|4|45-07N|095-05W|||344|| -KILM|--|---|WILMINGTON INT'L AIRPORT|NC|United States|4|34-16N|077-54W|34-16-31N|077-54-42W|10|9| -KILN|--|---|WILMINGTON INDUSTRIAL AIRPORT |OH|United States|4|39-26N|083-47W|||328|332| -KIML|--|---|IMPERIAL MUNICIPAL AIRPORT|NE|United States|4|40-31N|101-37W|||998|| -KIMT|--|---|IRON MOUNTAIN FORD AIRPORT|MI|United States|4|45-49N|88-07W|45-48-50N|088-07-00W|360|349| -KIND|72|438|INDIANAPOLIS INTERNATIONAL AIRPORT |IN|United States|4|39-43N|86-17W|39-42-29N|086-16-47W|243|242| -KINJ|--|---|Hillsboro, Hillsboro Municipal Airport|TX|United States|4|32-05N|097-05-50W|||209|| -KINK|--|---|WINKLER COUNTY AIRPORT|TX|United States|4|31-47N|103-12W|31-47-01N|103-11-40W|860|855| -KINL|72|747|FALLS INTERNATIONAL AIRPORT |MN|United States|4|48-34N|093-24W|48-33-59N|093-23-53W|361|360| -KINS|74|614|Indian Springs, Indian Springs Auxiliary AFLD Nellis AFB|NV|United States|4|36-35N|115-40W|||955|| -KINT|--|---|WINSTON SALEM SMITH REYNOLDS|NC|United States|4|36-08N|80-14W|36-08-13N|080-13-42W|296|291| -KINW|72|374|WINSLOW MUNICIPAL AIRPORT|AZ|United States|4|35-02N|110-43W|35-01-17N|110-43-02W|1505|1490| -KINX|--|---|Tulsa Nexrad|OK|United States|4|36-11N|095-34W|||226|| -KIOW|--|---|IOWA CITY MUNICIPAL AIRPORT |IA|United States|4|41-38N|91-33W|47-38-25N|091-32-30W|204|198| -KIPJ|--|---|Lincolnton, Lincolnton-Lincoln County Regional Airport|NC|United States|4|35-28-59N|081-09-41W|||267|| -KIPL|--|---|Imperial, Imperial County Airport|CA|United States|4|32-50-03N|115-34-43W|32-50-08N|115-34-36W|-17|-15| -KIPN|--|---|Independence|LA|United States|4|28-05-06N|087-59-09W|||||| -KIPT|72|514|WILLIAMSPORT-LYCOMING COUNTY|PA|United States|4|41-15N|076-55W|41-14-41N|076-55-08W|161|164| -KIRK|--|---|KIRKSVILLE REGIONAL AIRPORT |MO|United States|4|40-06N|092-33W|40-05-33N|092-32-41W|294|293| -KIRS|--|---|Sturgis, Kirsch Municipal Airport|MI|United States|4|41-48-46N|085-26-21W|||282|| -KISM|--|---|Orlando, Kissimmee Municipal Airport|FL|United States|4|28-17-23N|081-26-14W|||25|| -KISN|72|767|SLOULIN FIELD INTERNATIONAL AIRPORT|ND|United States|4|48-11N|103-39W|48-10-37N|103-37-52W|604|579| -KISO|--|---|Kinston, Kinston Regional Jetport at Stallings Field|NC|United States|4|35-20N|077-37W|||29|| -KISP|--|---|ISLIP LONG ISLAND MAC ART|NY|United States|4|40-48N|073-06W|40-47-29N|073-06-12W|30|43| -KISQ|--|---|Manistique, Schoolcraft County Airport|MI|United States|4|45-58-29N|086-10-19W|||209|| -KISW|--|---|WI RAPIDS ALEXANDER FIELD|WI|United States|4|44-22N|89-50W|44-21-42N|089-49-59W|311|307| -KITH|--|---|Ithaca, Ithaca Tompkins Regional Airport|NY|United States|4|42-29-27N|076-27-30W|||335|| -KITR|--|---|BURLINGTON CARSON COUNTY|CO|United States|4|39-15N|102-17W|39-14-38N|102-17-08W|1285|1279| -KIWA|--|---|Mesa, Williams Gateway Airport|AZ|United States|4|33-19N|111-39W|||421|| -KIWD|--|---|Ironwood, Gogebic-Iron County Airport|MI|United States|4|46-32N|090-08W|||375|| -KIWI|--|---|WISCASSET MUNICIPAL AIRPORT|ME|United States|4|43-58N|69-43W|43-57-50N|069-42-40W|21|20| -KIWS|--|---|West Houston / Lakeside|TX|United States|4|29-49N|095-40W|||34|| -KIXD|--|---|NEW CENTURY AIRCENTER|KS|United States|4|38-49N|94-53W|38-50-03N|094-53-25W|331|342| -KIYK|--|---|Inyokern|CA|United States|4|35-40N|117-50W|||749|| -KIZA|--|---|Santa Ynez, Santa Ynez Airport|CA|United States|4|34-36-25N|120-04-32W|||205|| -KIZG|--|---|FRYEBURG EASTERN SLOPES RGNL|ME|United States|4|43-59N|70-57W|43-59-18N|070-56-59W|138|135| -KJAC|--|---|Jackson, Jackson Hole Airport|WY|United States|4|43-36N|110-44W|||1966|| -KJAN|72|235|Jackson, Jackson International Airport|MS|United States|4|32-19-11N|090-04-39W|32-19-08N|090-04-49W|105|89|P -KJAS|--|---|Jasper, Jasper County-Bell Field Airport|TX|United States|4|30-53-08N|094-02-05W|||65|| -KJAX|72|206|JACKSONVILLE INTERNATIONAL|FL|United States|4|30-30N|81-42W|30-29-38N|081-40-52W|9|7| -KJBR|--|---|JONESBORO MUNICIPAL AIRPORT|AR|United States|4|35-50N|090-39W|35-50-10N|090-38-53W|80|79| -KJCT|74|740|KIMBLE COUNTY AIRPORT|TX|United States|4|30-31N|099-46W|30-30-36N|099-45-57W|533|523| -KJDD|--|---|Mineola/Quitman, Wood County Airport|TX|United States|4|32-44-31N|095-29-47W|||132|| -KJDN|--|---|JORDAN AIRPORT|MT|United States|4|47-20N|106-57W|||811|801| -KJEF|--|---|JEFFERSON CITY MEMORIAL AIRPORT |MO|United States|4|38-36N|92-09W|38-35-42N|092-09-15W|167|168| -KJER|--|---|JEROME COUNTY AIRPORT|ID|United States|4|42-44N|114-27W|||1234|| -KJES|--|---|Jesup-Wayne County Airport|GA|United States|4|31-33-14N|081-52-57W|||33|| -KJFK|74|486|KENNEDY INTERNATIONAL AIRPORT |NY|United States|4|40-38N|073-46W|40-38-34N|073-46-52W|4|9| -KJGG|--|---|Williamsburg, Williamsburg-Jamestown Airport|VA|United States|4|37-14-21N|076-42-57W|||15|| -KJHW|--|---|Jamestown, Chautauqua County/Jamestown Airport|NY|United States|4|42-09N|079-16W|||525|| -KJKJ|--|---|Moorhead, Moorhead Municipal Airport|MN|United States|4|46-50-21N|096-39-47W|||280|| -KJKL|--|---|JACKSON CARROLL AIRPORT|KY|United States|4|37-35N|083-19W|37-35-29N|083-19-02W|421|412| -KJLN|--|---|JOPLIN REGIONAL AIRPORT|MO|United States|4|37-09N|94-30W|37-08-50N|094-30-03W|299|299| -KJMR|--|---|Mora, Mora Municipal Airport|MN|United States|4|45-53-10N|093-16-18W|||309|| -KJMS|--|---|JAMESTOWN MUNICIPAL AIRPORT |ND|United States|4|46-56N|98-40W|46-55-35N|098-40-35W|457|455| -KJNW|--|---|Newport|OR|United States|4|44-35N|124-04W|||48|| -KJNX|--|---|Smithfield, Johnston County Airport|NC|United States|4|35-32-27N|078-23-25W|||50|| -KJOT|--|---|Joliet, Joliet Regional Airport|IL|United States|4|41-31-05N|088-10-31W|||177|| -KJQF|--|---|Concord, Concord Regional Airport|NC|United States|4|35-23-07N|080-42-35W|||210|| -KJSO|--|---|Jacksonville, Cherokee County Airport|TX|United States|4|31-52-09N|095-13-02W|||206|| -KJST|--|---|JOHNSTOWN-CAMBRIA CO AIRPORT |PA|United States|4|40-19N|078-50W|40-19-10N|078-49-59W|696|694| -KJSV|--|---|Sallisaw, Sallisaw Municipal Airport|OK|United States|4|35-26-17N|094-48-10W|||161|| -KJVL|--|---|Janesville / Rock County|WI|United States|4|42-37N|089-02W|||246|| -KJWG|--|---|Watonga, Watonga Airport|OK|United States|4|35-51-53N|098-25-15W|||472|| -KJWX|--|---|Fort Ritchie|MD|United States|4|39-44N|077-26W|||275|| -KJWY|--|---|Midlothian/Waxahachie, Mid-Way Regional Airport|TX|United States|4|32-27-21N|096-54-44W|||217|| -KJXI|--|---|Gilmer, Fox Stephens Field - Gilmer Municipal Airport|TX|United States|4|32-41-56N|094-56-55W|||127|| -KJXN|--|---|JACKSON COUNTY-REYNOLDS|MI|United States|4|42-16N|084-28W|||305|| -KJYG|--|---|St. James, St. James Municipal Airport|MN|United States|4|43-59-11N|094-33-29W|||325|| -KJYL|--|---|Sylvania, Plantation Airpark|GA|United States|4|32-38-43N|081-35-47W|||57|| -KJYM|--|---|Hillsdale, Hillsdale Municipal Airport|MI|United States|4|41-55-17N|084-35-09W|||360|| -KJYO|--|---|Leesburg / Godfrey|VA|United States|4|39-05N|077-34W|||119|| -KJYR|--|---|York, York Municipal Airport|NE|United States|4|40-53-48N|097-37-22W|||509|| -KKAL|--|---|Kaltag, Kaltag Airport|AK|United States|4|64-19-27N|158-43-59W|64-19-27N|158-43-59W|60|52| -KKLS|--|---|Kelso, Kelso-Longview Airport|WA|United States|4|46-07N|122-54W|||6|| -KKVL|--|---|Kivalina, Kivalina Airport|AK|United States|4|67-43-52N|164-32-33W|67-43-52N|164-32-33W|3|3| -KL10|--|---|San Clemente|CA|United States|4|33-25N|117-37W|||3|| -KL13|--|---|Point Loma / Cabrillo|CA|United States|4|32-40N|117-29W|||111|| -KL14|--|---|Cabrillo Beach|CA|United States|4|33-43N|118-17W|||8|| -KL21|--|---|Scripps Pier / La Jol|CA|United States|4|32-52N|117-15W|||4|| -KL27|--|---|Santa Catalina Island|CA|United States|4|33-20N|118-20W|||3|| -KL34|--|---|Oceanside Harbor|CA|United States|4|33-13N|117-24W|||9|| -KL40|--|---|High Island A489b|LA|United States|4|28-12N|094-12W||||| -KL42|--|---|Oakdale, Allen Parish Airport|LA|United States|4|30-45-02N|092-41-19W|||33|| -KL46|--|---|Anacapa Island|CA|United States|4|34-01N|119-22W|||42|| -KL49|--|---|Galliano, South Lafourche Airport|LA|United States|4|29-26-41N|090-15-40W|||0|| -KL55|--|---|Malibu Beach|CA|United States|4|34-02N|118-41W|||139|| -KL58|--|---|Mission Beach|CA|United States|4|32-46N|117-14W|||2|| -KL79|--|---|Oxnard / Channel Island|CA|United States|4|34-10N|119-13W|||2|| -KL82|--|---|Terminal Island|CA|United States|4|33-44N|118-16W|||10|| -KL97|--|---|Point Vincente|CA|United States|4|33-44N|118-24W|||5|| -KL98|--|---|El Capitan Beach|CA|United States|4|33-27N|120-02W|||27|| -KLAA|--|---|LAMAR MUNICIPAL AIRPORT|CO|United States|4|38-04N|102-41W|38-04-34N|102-41-31W|1129|1119| -KLAF|--|---|LAFAYETTE PURDUE UNIV AIRPORT |IN|United States|4|40-25N|86-57W|40-24-53N|086-56-00W|185|182| -KLAL|--|---|Lakeland Regional|FL|United States|4|27-59N|082-01W|||43|| -KLAM|--|---|Los Alamos, Los Alamos Airport|NM|United States|4|35-52-47N|106-16-09W|||2186|| -KLAN|72|539|CAPITAL CITY AIRPORT|MI|United States|4|42-47N|084-35W|42-46-27N|084-35-35W|262|264| -KLAR|--|---|LARAMIE REGIONAL AIRPORT|WY|United States|4|41-19N|105-40W|41-19-01N|105-40-16W|2218|2216| -KLAS|72|386|MCCARRAN INTERNATIONAL AIRPORT |NV|United States|4|36-07N|115-16W|36-04-58N|115-08-47W|663|636| -KLAW|--|---|LAWTON - FORT SILL REGIONAL|OK|United States|4|34-34N|98-25W|34-34-34N|098-25-16W|338|337| -KLAX|72|295|LOS ANGELES INTERNTL AIRPORT|CA|United States|4|33-56N|118-23W|33-56-41N|118-24-10W|38|46| -KLBB|72|267|LUBBOCK INTERNATIONAL AIRPORT |TX|United States|4|33-40N|101-49W|33-39-30N|101-48-52W|1000|992| -KLBE|--|---|Latrobe / Westmorland|PA|United States|4|40-17N|079-24W|||361|| -KLBF|72|562|NORTH PLATTE REGIONAL AIRPORT |NE|United States|4|41-07N|100-40W|41-07-58N|100-41-54W|847|847| -KLBL|--|---|Liberal, Liberal Municipal Airport|KS|United States|4|37-03N|100-58W|||879|| -KLBR|--|---|Clarksville, Clarksville/Red River County-J D Trissell Field Airport|TX|United States|4|33-35-35N|095-03-48W|||134|| -KLBT|--|---|LUMBERTON MUNICIPAL AIRPORT|NC|United States|4|34-36N|79-04W|34-36-50N|079-03-37W|38|37| -KLBX|--|---|BRAZORIA COUNTY AIRPORT|TX|United States|4|29-07N|095-28W|29-06-42N|095-27-35W|8|6| -KLCG|--|---|Wayne, Wayne Municipal Airport|NE|United States|4|42-14-30N|096-58-53W|||436|| -KLCH|72|240|LAKE CHARLES REGIONAL AIRPORT |LA|United States|4|30-12N|093-23W|30-07-29N|093-12-55W|5|3| -KLCI|--|---|Laconia, Laconia Municipal Airport|NH|United States|4|43-34N|071-25W|||166|| -KLCK|--|---|Rickenbacker Air National Guard Base|OH|United States|4|39-49N|082-56W|||227|| -KLDM|--|---|Ludington, Mason County Airport|MI|United States|4|43-58N|86-24W|||197|| -KLDS|--|---|Leeds|MT|United States|4|48-33N|109-41W|||775|| -KLEB|--|---|LEBANON MUNICIPAL AIRPORT|NH|United States|4|43-38N|072-18W|43-37-41N|072-18-42W|182|171| -KLEE|--|---|LEESBURG REGIONAL AIRPORT|FL|United States|4|28-49N|81-49W|28-49-44N|081-48-48W|23|23| -KLEW|--|---|Auburn-Lewiston|ME|United States|4|44-03N|070-17W|||88|| -KLEX|72|422|LEXINGTON BLUE GRASS AIRPORT|KY|United States|4|38-02N|084-36W|38-02-13N|084-35-54W|299|300| -KLFI|74|598|Langley Air Force Base|VA|United States|4|37-05N|076-21W|||3|6| -KLFK|--|---|LUFKIN ANGELINA COUNTY AIRPORT |TX|United States|4|31-14N|94-45W|31-13-53N|094-45-12W|90|88| -KLFT|--|---|LAFAYETTE REGIONAL AIRPORT|LA|United States|4|30-12N|092-00W|30-12-10N|091-59-42W|13|11| -KLGA|72|503|NEW YORK LA GUARDIA AIRPORT |NY|United States|4|40-47N|73-53W|40-46-25N|073-53-08W|7|11| -KLGB|72|297|LONG BEACH AIRPORT|CA|United States|4|33-49N|118-09W|33-48-42N|118-08-57W|17|10| -KLGC|--|---|La Grange, Callaway Airport|GA|United States|4|33-00-32N|085-04-21W|||211|| -KLGD|--|---|La Grande, La Grande/Union County Airport|OR|United States|4|45-17N|118-00W|||828|| -KLGU|--|---|LOGAN CACHE AIRPORT|UT|United States|4|41-47N|111-51W|41-46-58N|111-51-12W|1358|1355| -KLHB|--|---|Hearne, Hearne Municipal Airport|TX|United States|4|30-52-18N|096-37-20W|||87|| -KLHD|--|---|Anchorage, Lake Hood Sea Plane Base|AK|United States|4|61-10-41N|149-57-49W|61-10-41N|149-57-49W|21|28| -KLHQ|--|---|LANCASTER FAIRFIELD CO AIRPORT |OH|United States|4|39-45N|82-40W|39-45-10N|082-39-42W|265|260| -KLHU|--|---|Lake Havasu Automatic Weather Observing / Reporting System|AZ|United States|4|34-28N|111-46W|||147|| -KLHW|72|209|Ft. Stewart|GA|United States|4|31-53N|081-34W|31-53N|081-34W|14|14| -KLHX|--|---|LA JUNTA MUNICIPAL AIRPORT|CO|United States|4|38-03N|103-31W|38-02-43N|103-30-41W|1292|1277| -KLHZ|--|---|Louisburg, Franklin County Airport|NC|United States|4|36-01-24N|078-19-49W|||113|| -KLIC|--|---|LIMON MUNICIPAL AIRPORT|CO|United States|4|39-16N|103-40W|39-16-09N|103-40-00W|1635|1630| -KLIT|--|---|LITTLE ROCK ADAMS FIELD|AR|United States|4|34-44N|92-14W|34-43-59N|092-14-26W|79|79| -KLIX|72|233|Slidell|LA|United States|4|30-20N|089-49W|30-20N|089-49W|8|8| -KLIZ|--|---|Loring Air Force Base / Limeston|ME|United States|4|46-57N|067-53W|||227|| -KLJF|--|---|Litchfield, Litchfield Municipal Airport|MN|United States|4|45-05-50N|094-30-26W|||348|| -KLKU|--|---|Louisa, Louisa County Airport/Freeman Field|VA|United States|4|38-00-35N|077-58-13W|||150|| -KLKV|--|---|Lakeview, Lake County Airport|OR|United States|4|42-10N|120-24W|||1443|| -KLLJ|--|---|Challis, Challis Airport|ID|United States|4|44-31-22N|114-12-54W|44-31-12N|114-12-54W|1546|1536| -KLLQ|--|---|MONTICELLO MUNICIPAL AIRPORT|AR|United States|4|33-38N|91-45W|33-38-04N|091-45-20W|82|83| -KLMT|--|---|KLAMATH FALLS INTERNATIONAL AIRPORT|OR|United States|4|42-09N|121-43W|42-09-41N|121-44-32W|1247|1246| -KLNC|--|---|Lancaster, Lancaster Airport|TX|United States|4|32-34-45N|096-43-08W|||153|| -KLND|72|576|LANDER HUNT FIELD|WY|United States|4|42-49N|108-44W|42-49-00N|108-44-00W|1703|1694| -KLNK|72|551|LINCOLN MUNICIPAL AIRPORT|NE|United States|4|40-50N|96-46W|40-51-01N|096-44-52W|372|364| -KLNL|--|---|Land O' Lakes, Kings Land O' Lakes Airport|WI|United States|4|46-09-14N|089-12-43W|||520|| -KLNN|--|---|Willoughby|OH|United States|4|41-41N|081-23W|||191|| -KLNP|--|---|Wise / Lonesome Pine|VA|United States|4|36-59N|082-32W|||817|| -KLNR|--|---|LONE ROCK TRI-COUNTY REG|WI|United States|4|43-13N|090-11W|43-12-48N|090-11-27W|219|217| -KLNS|--|---|LANCASTER AIRPORT|PA|United States|4|40-07N|76-18W|40-07-28N|076-16-52W|123|125| -KLOL|--|---|LOVELOCK DERBY FIELD|NV|United States|4|40-04N|118-34W|40-04-13N|118-34-09W|1190|1189| -KLOM|--|---|Philadelphia, Wings Field Airport|PA|United States|4|40-08-15N|075-15-54W|||92|| -KLOR|--|---|Fort Rucker, Lowe Army Heliport|AL|United States|4|31-21-32N|085-44-54W|||78|93| -KLOT|--|---|Chicago/Romeoville, Lewis University Airport|IL|United States|4|41-36-30N|088-05-39W|||205|| -KLOU|--|---|BOWMAN FIELD|KY|United States|4|38-14N|085-40W|38-13-40N|085-39-39W|167|164| -KLOZ|--|---|LONDON-CORBIN AIRPORT|KY|United States|4|37-05N|084-04W|37-05-15N|084-04-15W|369|362| -KLPC|--|---|Lompoc, Lompoc Airport|CA|United States|4|34-40N|120-28W|||27|| -KLPR|--|---|LORAIN COUNTY REGIONAL AIRPORT |OH|United States|4|41-21N|082-11W|41-20-20N|082-10-38W|242|241| -KLRD|72|252|Laredo, Laredo International Airport|TX|United States|4|27-32-37N|099-27-41W|||155|| -KLRF|--|---|Little Rock Air Force Base|AR|United States|4|34-55N|092-09W|||95|| -KLRJ|--|---|Le Mars, Le Mars Municipal Airport|IA|United States|4|42-46-41N|096-11-37W|||365|| -KLRU|--|---|Las Cruces, Las Cruces International Airport|NM|United States|4|32-17-22N|106-55-19W|||1358|| -KLRX|--|---|Elko Nexrad|NV|United States|4|40-44-20N|116-48-10W|||2019|| -KLSD|--|---|Lexington / Creech|KY|United States|4|38-02N|084-37W|||299|| -KLSE|72|643|LA CROSSE MUNICIPAL AIRPORT |WI|United States|4|43-53N|091-15W|43-52-18N|091-15-09W|199|200| -KLSF|72|225|Fort Benning|GA|United States|4|32-20N|084-50W|32-20N|084-50W|71|130| -KLSV|--|---|Nellis Air Force Base|NV|United States|4|36-14N|115-02W|||570|| -KLTS|72|352|Altus Air Force Base|OK|United States|4|34-39N|099-16W|34-39N|099-16W|420|420| -KLTX|--|---|Wilmington Nexrad|NC|United States|4|33-59N|078-26W|||44|| -KLUD|--|---|Decatur, Decatur Municipal Airport|TX|United States|4|33-15-16N|097-34-50W|||319|| -KLUF|--|---|Luke Air Force Base / Phoenix|AZ|United States|4|33-32N|112-23W|33-32N|112-23W|332|332| -KLUK|--|---|CINCINNATI MUN LUNKEN FLD|OH|United States|4|39-06N|84-25W|39-06-26N|084-25-24W|147|155| -KLUM|--|---|Menomonie, Menomonie Municipal Airport-Score Field|WI|United States|4|44-53-32N|091-52-04W|||273|| -KLVJ|--|---|PEARLAND REGIONAL AIRPORT|TX|United States|4|29-31N|095-15W|29-31-05N|095-14-29W|13|12| -KLVK|--|---|LIVERMORE MUNICIPAL AIRPORT |CA|United States|4|37-42N|121-49W|37-41-45N|121-49-01W|121|117| -KLVM|--|---|LIVINGSTON MISSION FIELD|MT|United States|4|45-42N|110-26W|45-41-49N|110-27-12W|1419|1418| -KLVN|--|---|Minneapolis, Airlake Airport|MN|United States|4|44-37-40N|093-13-41W|||293|| -KLVS|--|---|LAS VEGAS MUNICIPAL AIRPORT |NM|United States|4|35-39N|105-08W|35-39-05N|105-08-50W|2096|2091| -KLVX|--|---|Louisville Nexrad|KY|United States|4|37-59N|085-56W|||254|| -KLWA|--|---|South Haven, South Haven Area Regional Airport|MI|United States|4|42-21-03N|086-15-22W|||203|| -KLWB|--|---|Lewisburg / Greenbrier|WV|United States|4|37-52N|080-24W|||702|| -KLWC|--|---|LAWRENCE MUNICIPAL AIRPORT|KS|United States|4|39-01N|95-13W|39-00-18N|095-12-57W|254|253| -KLWD|--|---|LAMONI MUNICIPAL AIRPORT|IA|United States|4|40-38N|093-54W|40-37-47N|093-54-01W|345|346| -KLWM|--|---|LAWRENCE MUNICIPAL AIRPORT|MA|United States|4|42-43N|071-08W|42-42-55N|071-07-14W|45|54| -KLWS|72|783|LEWISTON NEZ PERCE CO AIRPORT |ID|United States|4|46-22N|117-01W|46-22-38N|117-00-37W|438|438| -KLWT|--|---|LEWISTOWN MUNICIPAL AIRPORT |MT|United States|4|47-03N|109-27W|||1270|| -KLWV|--|---|LAWRENCEVILLE-VINCENNES INTERNATIONAL |IL|United States|4|38-46N|87-36W|38-45-40N|087-36-20W|131|131| -KLWX|--|---|Baltimore / DC Nexrad|MD|United States|4|38-59N|077-29W|||113|| -KLXL|--|---|Little Falls, Little Falls/Morrison County Airport-Lindbergh Field|MN|United States|4|45-57N|094-21W|||342|| -KLXN|--|---|Lexington, Jim Kelly Field Airport|NE|United States|4|40-47-28N|099-46-38W|||736|| -KLXT|--|---|LEE'S SUMMIT MUNICIPAL|MO|United States|4|38-58N|94-22W|||306|| -KLXV|--|---|LEADVILLE LAKE CO|CO|United States|4|39-14N|106-19W|||3026|3028| -KLYH|72|410|LYNCHBURG REGIONAL AIRPORT|VA|United States|4|37-19N|079-12W|37-19-45N|079-12-09W|286|295| -KLYV|--|---|Luverne, Quentin Aanenson Field Airport|MN|United States|4|43-37-16N|096-12-56W|||436|| -KLZK|72|340|North Little Rock, North Little Rock Airport|AR|United States|4|34-50N|092-15W|34-50N|092-15W|165|165|P -KLZU|--|---|Lawrenceville, Gwinnett County-Briscoe Field Airport|GA|United States|4|33-58-41N|083-57-45W|||323|| -KLZZ|--|---|Lampasas, Lampasas Airport|TX|United States|4|31-06-22N|098-11-45W|||370|| -KM19|--|---|Newport, Newport Municipal Airport|AR|United States|4|35-38-15N|091-10-34W|||73|| -KM30|--|---|Metropolis, Metropolis Municipal Airport|IL|United States|4|37-11-09N|088-45-02W|||117|| -KM39|--|---|Mena, Mena Intermountain Municipal Airport|AR|United States|4|34-32-43N|094-12-09W|34-32-54N|094-12-33W|329|| -KM82|--|---|Huntsville, Madison County Executive Airport|AL|United States|4|34-51-41N|086-33-26W|||230|| -KM89|--|---|Arkadelphia, Dexter B Florence Memorial Field Airport|AR|United States|4|34-05-59N|093-03-58W|||56|| -KM97|--|---|Tunica, Tunica Municipal Airport|MS|United States|4|34-40-51N|090-20-47W|||59|| -KMAE|--|---|MADERA MUNICIPAL AIRPORT|CA|United States|4|36-59N|120-07W|36-59-20N|120-06-28W|77|77| -KMAF|72|265|MIDLAND INTERNATIONAL AIRPORT |TX|United States|4|31-56N|102-12W|31-56-38N|102-11-23W|875|872| -KMAI|--|---|MARIANNA MUNICIPAL AIRPORT|FL|United States|4|30-50N|85-11W|30-50-06N|085-10-56W|34|32| -KMAN|--|---|Nampa|ID|United States|4|43-34-53N|116-31-23W|||773|| -KMAX|--|---|Medford Nexrad|OR|United States|4|42-04-51N|122-42-57W|||2290|| -KMBG|--|---|MOBRIDGE MUNICIPAL AIRPORT|SD|United States|4|45-33N|100-25W|45-32-35N|100-24-13W|523|510| -KMBL|--|---|Manistee, Manistee County-Blacker Airport|MI|United States|4|44-16N|086-15W|||189|| -KMBS|--|---|MBS INTERNATIONAL AIRPORT|MI|United States|4|43-32N|084-05W|43-31-36N|084-04-58W|204|202| -KMCB|--|---|MCCOMB/PIKE COUNTY AIRPORT|MS|United States|4|31-11N|90-28W|31-10-55N|090-28-16W|126|124| -KMCC|--|---|Sacramento, McClellan Airfield Airport|CA|United States|4|38-40N|121-24W|||23|| -KMCD|--|---|Macinac Island, Mackinac Island Airport|MI|United States|4|45-51-54N|084-38-14W|||226|| -KMCE|--|---|MERCED MUNICIPAL AIRPORT|CA|United States|4|37-17N|120-30W|37-17-20N|120-30-52W|48|47| -KMCF|74|788|Macdill Air Force Base, Fl.|FL|United States|4|27-51N|082-30W|27-51N|082-30W|4|4| -KMCG|--|---|McGrath, McGrath Airport|AK|United States|4|62-57-22N|155-36-21W|62-57-29N|155-36-00W|102|102| -KMCI|72|446|KANSAS CITY INTERNATIONAL AIRPORT|MO|United States|4|39-18N|94-44W|39-17-57N|094-43-03W|313|320| -KMCK|--|---|MC COOK MUNICIPAL AIRPORT|NE|United States|4|40-12N|100-35W|40-12-14N|100-35-38W|786|782| -KMCN|72|217|MIDDLE GEORGIA REGIONAL AIRPORT |GA|United States|4|32-41N|83-39W|32-42-05N|083-38-53W|108|109| -KMCO|72|205|ORLANDO INTERNATIONAL AIRPORT |FL|United States|4|28-25N|81-20W|28-25-52N|081-18-38W|29|29| -KMCW|--|---|MASON CITY MUNICIPAL AIRPORT |IA|United States|4|43-09N|093-20W|43-09-12N|093-20-11W|370|369| -KMDD|--|---|Midland, Midland Airpark|TX|United States|4|32-02-11N|102-06-03W|||854|| -KMDH|--|---|SOUTHERN ILLINOIS AIRPORT|IL|United States|4|37-47N|089-15W|37-46-36N|089-15-09W|125|130| -KMDJ|--|---|Mississippi Canyon|LA|United States|4|28-38-33N|089-47-39W|||||| -KMDQ|--|---|Huntsville, Madison County Executive Airport|AL|United States|4|34-51-41N|086-33-26W|||230|| -KMDT|--|---|HARRISBURG INTERNATIONAL AIRPORT|PA|United States|4|40-12N|076-46W|40-11-50N|076-45-48W|94|95| -KMDW|72|534|CHICAGO MIDWAY AIRPORT|IL|United States|4|41-47N|087-45W|41-46-49N|087-45-08W|189|188| -KMDZ|--|---|Medford, Taylor County Airport|WI|United States|4|45-06-04N|090-18-12W|||448|| -KMEB|--|---|LAURINBURG MAXTON AIRPORT|NC|United States|4|34-47N|79-22W|34-47-47N|079-22-07W|67|67| -KMEH|--|---|MEACHAM|OR|United States|4|45-31N|118-25W|45-30-41N|118-25-29W|1135|1136| -KMEI|72|234|MERIDIAN KEY FIELD|MS|United States|4|32-20N|088-45W|32-20-03N|088-44-25W|91|89| -KMEM|72|334|MEMPHIS INTERNATIONAL AIRPORT |TN|United States|4|35-02N|089-59W|35-03-00N|089-58-45W|102|86| -KMER|72|481|Merced / Castle Air Force Base|CA|United States|4|37-22N|120-34W|37-23N|120-34W|57|60| -KMEZ|--|---|Mena, Mena Intermountain Municipal Airport|AR|United States|4|34-32-43N|094-12-09W|34-32-54N|094-12-33W|329|| -KMFD|--|---|LAHM MUNICIPAL AIRPORT|OH|United States|4|40-49N|082-31W|40-48-56N|082-30-45W|395|395| -KMFE|--|---|MCALLEN MILLER INTERNATIONAL AIRPORT |TX|United States|4|26-11N|98-15W|26-10-42N|098-14-17W|33|38| -KMFI|--|---|MARSHFIELD MUNICIPAL AIRPORT|WI|United States|4|44-38N|90-11W|44-38-25N|090-11-01W|389|379| -KMFR|72|597|ROGUE VALLEY INTERNATIONAL AIRPORT|OR|United States|4|42-23N|122-53W|42-22-37N|122-52-50W|406|396| -KMFV|--|---|Melfa / Accomack Airport|VA|United States|4|37-39N|075-46W|||15|| -KMGE|72|227|Marietta / Dobbins Air Force Base|GA|United States|4|33-55N|084-31W|||326|326|P -KMGG|--|---|Maple Lake, Maple Lake Municipal Airport|MN|United States|4|45-14-10N|093-59-08W|||313|| -KMGJ|--|---|MONTGOMERY ORANGE CO AIRPORT|NY|United States|4|41-31N|074-16W|41-30-55N|074-15-41W|108|108| -KMGM|72|226|MONTGOMERY DANNELLY FIELD|AL|United States|4|32-18N|86-24W|32-18-17N|086-23-27W|67|63| -KMGN|--|---|Harbor Springs, Harbor Springs Airport|MI|United States|4|45-25-32N|084-54-48W|||209|| -KMGR|--|---|Moultrie, Moultrie Municipal Airport|GA|United States|4|31-05-05N|083-48-11W|||90|| -KMGW|--|---|MORGANTOWN MUNI-HART FIELD|WV|United States|4|39-39N|079-55W|39-38-35N|079-55-12W|380|378| -KMGY|--|---|DAYTON WRIGHT BROTHERS AIRPORT |OH|United States|4|39-36N|84-14W|39-35-29N|084-13-42W|293|289| -KMHE|--|---|MITCHELL MUNICIPAL AIRPORT|SD|United States|4|43-46N|98-02W|||397|| -KMHK|--|---|MANHATTAN REGIONAL AIRPORT|KS|United States|4|39-08N|96-41W|39-08-03N|096-40-10W|322|317| -KMHN|--|---|Mullen / Hooker County|NE|United States|4|42-03N|101-04W|||994|| -KMHR|--|---|Sacramento, Sacramento Mather Airport|CA|United States|4|38-33N|121-18W|||29|| -KMHS|--|---|MOUNT SHASTA|CA|United States|4|41-19N|122-19W|41-18-56N|122-18-57W|1077|1078| -KMHT|--|---|MANCHESTER AIRPORT|NH|United States|4|42-56N|071-26W|42-56-01N|071-26-21W|71|81| -KMHV|--|---|Mojave|CA|United States|4|35-04N|118-09W|||849|| -KMHX|72|305|Newport|NC|United States|4|34-47N|076-53W|34-47N|076-53W|11|11| -KMIA|72|202|MIAMI INTERNATIONAL AIRPORT |FL|United States|4|25-47N|080-19W|25-48-12N|080-17-49W|4|8| -KMIB|--|---|Minot Air Force Base|ND|United States|4|48-25N|101-21W|||508|| -KMIC|--|---|CRYSTAL AIRPORT|MN|United States|4|45-04N|093-21W|45-03-39N|093-21-20W|265|265| -KMIE|--|---|MUNCIE DELAWARE JOHNSON|IN|United States|4|40-14N|85-24W|40-14-31N|085-23-47W|286|285| -KMIS|--|---|Main Pass|MS|United States|4|29-17-44N|088-50-32W|||||| -KMIU|--|---|Mustang Island 31|TX|United States|4|27-17-20N|096-44-12W|||||| -KMIV|--|---|MILLVILLE MUNICIPAL AIRPORT |NJ|United States|4|39-22N|075-05W|39-22-12N|075-04-15W|26|23| -KMIW|--|---|MARSHALLTOWN MUNICIPAL AIRPORT |IA|United States|4|42-07N|92-55W|42-06-31N|092-54-51W|297|296| -KMJQ|--|---|Jackson, Jackson Municipal Airport|MN|United States|4|43-39N|094-59W|||441|| -KMKC|--|---|KANSAS CITY DOWNTOWN AIRPORT |MO|United States|4|39-07N|094-36W|39-07-27N|094-35-31W|231|227| -KMKE|72|640|GEN MITCHELL INTERNATIONAL AIRPORT|WI|United States|4|42-57N|87-54W|42-56-52N|087-54-23W|220|206| -KMKG|72|636|MUSKEGON COUNTY AIRPORT|MI|United States|4|43-10N|086-14W|43-09-50N|086-14-19W|191|191| -KMKJ|--|---|Marion / Wytheville|VA|United States|4|36-54N|081-21W|||780|| -KMKK|--|---|Kaunakakai, Molokai Airport|HI|United States|5|21-09-28N|157-05-55W|21-09-29N|157-05-54W|138|141| -KMKL|--|---|JACKSON MCKELLAR-SIPES RGNL|TN|United States|4|35-36N|088-55W|35-36-12N|088-55-22W|132|128| -KMKN|--|---|Comanche, Comanche County-City Airport|TX|United States|4|31-55N|098-36-01W|||423|| -KMKO|--|---|MUSKOGEE DAVIS FIELD|OK|United States|4|35-39N|95-22W|35-39-33N|095-21-14W|186|185| -KMKT|--|---|Mankato, Mankato Regional Airport|MN|United States|4|44-13N|093-55W|||311|| -KMKX|--|---|Milwaukee NEXRAD|WI|United States|4|42-58N|088-33W|||312|| -KMLB|72|204|MELBOURNE INTERNATIONAL|FL|United States|4|28-06N|080-39W|28-05-57N|080-38-36W|10|10| -KMLC|--|---|MCALESTER REGIONAL AIRPORT|OK|United States|4|34-53N|95-47W|34-52-30N|095-46-59W|235|232| -KMLD|--|---|Malad City|ID|United States|4|42-10N|112-18W|||1373|| -KMLE|--|---|Omaha, Millard Airport|NE|United States|4|41-11-45N|096-06-44W|||320|| -KMLF|--|---|MILFORD MUNICIPAL AIRPORT|UT|United States|4|38-25N|113-01W|38-25-08N|113-00-34W|1536|1534| -KMLI|72|544|MOLINE QUAD-CITY AIRPORT|IL|United States|4|41-27N|90-31W|41-26-33N|090-30-34W|180|184| -KMLJ|--|---|Milledgeville, Baldwin County Airport|GA|United States|4|33-09-15N|083-14-26W|||117|| -KMLP|--|---|MULLAN PASS VOR|ID|United States|4|47-27N|115-40W|47-27-23N|115-38-45W|1851|1837| -KMLS|74|230|MILES CITY WILEY FIELD|MT|United States|4|46-26N|105-53W|46-25-40N|105-52-29W|801|801| -KMLT|--|---|MILLINOCKET MUNICIPAL AIRPORT |ME|United States|4|45-39N|68-42W|45-38-38N|068-41-30W|124|123| -KMLU|--|---|MONROE REGIONAL AIRPORT|LA|United States|4|32-31N|092-02W|32-30-36N|092-02-36W|24|29| -KMMG|--|---|Matterhorn|LA|United States|4|28-44-32N|088-49-32W|||||| -KMMH|--|---|Mammoth / June Lakes|CA|United States|4|37-37N|118-50W|||2173|| -KMMK|--|---|MERIDEN MARKHAM MUNICIPAL AIRPORT |CT|United States|4|41-31N|072-50W|41-30-48N|072-49-49W|31|31| -KMML|--|---|Marshall, Southwest Minnesota Regional Airport - Marshall/Ryan Field|MN|United States|4|44-27N|095-49W|||360|| -KMMO|74|460|Marseilles Island|IL|United States|4|41-22N|088-41W|||223|225| -KMMT|--|---|McEntire Air National Guard Weather Facility Base|SC|United States|4|33-55N|080-48W|||77|| -KMMU|--|---|Morristown Municipal|NJ|United States|4|40-48N|074-25W|||57|| -KMMV|--|---|MCMINNVILLE MUNICIPAL AIRPORT |OR|United States|4|45-12N|123-08W|45-11-58N|123-08-17W|48|48| -KMNH|--|---|Elbert Mountain, Monument Pass|CO|United States|4|39-13-00N|104-38-02W|||2152|| -KMNI|--|---|Manning / Cooper Regional|SC|United States|4|33-35N|080-13W|||32|| -KMNM|--|---|Menominee, Menominee-Marinette Twin County Airport|MI|United States|4|45-08N|087-38W|||191|| -KMNN|--|---|MARION MUNICIPAL AIRPORT|OH|United States|4|40-37N|83-04W|40-36-59N|083-04-06W|303|301| -KMOB|72|223|MOBILE REGIONAL AIRPORT|AL|United States|4|30-41N|88-14W|30-40-58N|088-14-30W|66|67| -KMOD|--|---|MODESTO CITY CO SHAM FLD|CA|United States|4|37-37N|120-57W|37-37-45N|120-57-11W|30|29| -KMOP|--|---|Mount Pleasant, Mount Pleasant Municipal Airport|MI|United States|4|43-37N|84-44W|||230|| -KMOT|--|---|MINOT INTERNATIONAL AIRPORT |ND|United States|4|48-16N|101-17W|48-16-13N|101-17-06W|523|519| -KMOX|--|---|Morris, Morris Municipal Airport|MN|United States|4|45-34N|095-58W|||347|| -KMPO|--|---|MT POCONO POCONO MOUNTAINS|PA|United States|4|41-08N|075-23W|41-08-47N|075-22-31W|584|577| -KMPV|--|---|KNAPP STATE AIRPORT|VT|United States|4|44-12N|072-34W|44-12-08N|072-33-47W|355|343| -KMPZ|--|---|Mount Pleasant, Mount Pleasant Municipal Airport|IA|United States|4|40-56-48N|091-30-40W|||224|| -KMQB|--|---|Macomb, Macomb Municipal Airport|IL|United States|4|40-31-13N|090-39-09W|||216|| -KMQE|--|---|MILTON BLUE HILL OBSERV|MA|United States|4|42-13N|071-07W|||192|| -KMQI|--|---|Manteo / Dare County Regional|NC|United States|4|35-55N|075-42W|||4|| -KMQM|--|---|Monida|MT|United States|4|44-34N|112-19W|||2068|| -KMQT|72|743|Marquette|MI|United States|4|46-32N|087-33W|46-34N|087-24W|434|434|P -KMQY|--|---|Smyrna, Smyrna Airport|TN|United States|4|36-00-32N|086-31-12W|||166|| -KMRB|--|---|MARTINSBURG EASTERN WV REG|WV|United States|4|39-24N|77-59W|39-23-58N|077-58-50W|170|164| -KMRC|--|---|Columbia / Maury County|TN|United States|4|35-33N|087-11W|||206|| -KMRF|72|264|Marfa|TX|United States|4|30-22N|104-01W|||1478|1481|P -KMRH|--|---|BEAUFORT SMITH FIELD|NC|United States|4|34-44N|76-39W|34-43-59N|076-39-16W|3|3| -KMRI|--|---|Anchorage, Merrill Field|AK|United States|4|61-13-01N|149-51-18W|61-13-04N|149-50-25W|41|40| -KMRJ|--|---|Mineral Point, Iowa County Airport|WI|United States|4|42-53-07N|090-13-55W|||359|| -KMRN|--|---|Morganton, Morganton-Lenoir Airport|NC|United States|4|35-49-17N|081-36-39W|||387|| -KMRX|--|---|Morristown Nexrad|TN|United States|4|36-10N|083-24W|||437|| -KMRY|--|---|MONTEREY PENINSULA AIRPORT|CA|United States|4|36-35N|121-51W|36-35-17N|121-51-12W|77|66| -KMSL|--|---|NORTH WEST ALABAMA REGIONAL|AL|United States|4|34-45N|087-36W|34-44-49N|087-37-03W|168|164| -KMSN|72|641|MADISON DANE COUNTY RGNL|WI|United States|4|43-08N|89-21W|43-08-22N|089-20-46W|263|261| -KMSO|72|773|MISSOULA INTERNATIONAL AIRPORT |MT|United States|4|46-55N|114-06W|46-55-30N|114-05-24W|976|975| -KMSP|72|658|MINNEAPOLIS-ST PAUL INTERNATIONAL |MN|United States|4|44-52N|93-13W|44-53-15N|093-12-25W|256|265| -KMSS|--|---|MASSENA INTERNATIONAL -RICHARDS FLD|NY|United States|4|44-56N|074-51W|44-56-00N|074-50-35W|65|66| -KMSV|--|---|Monticello, Sullivan County International Airport|NY|United States|4|41-42N|074-48W|||428|| -KMSX|--|---|Missoula NEXRAD|MT|United States|4|47-02N|113-59W|||2451|| -KMSY|72|231|NEW ORLEANS INTERNATIONAL AIRPORT|LA|United States|4|30-00N|90-15W|29-59-11N|090-15-31W|2|5| -KMTC|--|---|Selfridge Air National Guard Base|MI|United States|4|42-37N|082-50W|||177|| -KMTH|--|---|MARATHON AIRPORT|FL|United States|4|24-44N|81-03W|24-43-31N|081-02-57W|2|2| -KMTJ|--|---|MONTROSE REGIONAL AIRPORT|CO|United States|4|38-30N|107-54W|38-29-32N|107-53-21W|1755|1750| -KMTN|--|---|Baltimore / Martin|MD|United States|4|39-20N|076-25W|||7|| -KMTO|--|---|MATTOON/CHARLESTON COLES CO|IL|United States|4|39-28N|88-16W|39-29-01N|088-16-33W|220|214| -KMTP|--|---|MONTAUK AIRPORT|NY|United States|4|41-04N|071-55W|||2|2| -KMTV|--|---|Martinsville|VA|United States|4|36-38N|080-01W|||287|| -KMTW|--|---|Manitowoc, Manitowoc County Airport|WI|United States|4|44-08N|087-41W|||198|| -KMTX|--|---|Salt Lake Nexrad|UT|United States|4|41-26N|112-45W|||2004|| -KMUI|--|---|Muir Army Air Field / Indiantown|PA|United States|4|40-26N|076-34W|||149|| -KMUO|--|---|Mountain Home Air Force Base|ID|United States|4|43-03N|115-52W|||913|| -KMUT|--|---|Muscatine|IA|United States|4|41-22N|091-09W|||167|| -KMUX|--|---|Monterey NEXRAD|CA|United States|4|37-10N|121-54W|||1082|| -KMVE|--|---|Montevideo, Montevideo-Chippewa County Airport|MN|United States|4|44-58N|095-43W|||315|| -KMVL|--|---|MORRISVILLE STOWE STATE AIRPORT |VT|United States|4|44-32N|72-37W|44-32-13N|072-36-57W|223|223| -KMVN|--|---|Mount Vernon, Mount Vernon Airport|IL|United States|4|38-19N|088-52W|||146|| -KMVY|--|---|VINEYARD HAVEN MARTHAS VIN|MA|United States|4|41-24N|70-37W|41-23-22N|070-36-45W|21|16| -KMWA|--|---|Marion, Williamson County Regional Airport|IL|United States|4|37-45-01N|089-00-04W|||144|| -KMWC|--|---|Milwaukee / Timmerman|WI|United States|4|43-07N|088-02W|||227|| -KMWH|--|---|GRANT COUNTY AIRPORT|WA|United States|4|47-12N|119-19W|47-11-23N|119-19-19W|361|362| -KMWK|--|---|Mount Airy, Mount Airy/Surry County Airport|NC|United States|4|36-27-35N|080-33-11W|||380|| -KMWL|--|---|MINERAL WELLS AIRPORT|TX|United States|4|32-47N|098-04W|32-47-00N|098-03-45W|296|284| -KMWM|--|---|Windom, Windom Municipal Airport|MN|United States|4|43-54-48N|095-06-34W|||430|| -KMWN|72|613|Mount Washington|NH|United States|4|44-16N|071-18W|||1909|1910| -KMWS|72|289|Mount Wilson|CA|United States|4|34-14N|118-04W|||1739|| -KMWT|--|---|MT IDA|AR|United States|4|34-33N|093-35W|||214|| -KMXF|--|---|Maxwell Air Force Base / Montgomery|AL|United States|4|32-23N|086-22W|||51|| -KMXO|--|---|Monticello Municipal|IA|United States|4|42-14N|091-10W|||259|| -KMYF|--|---|SAN DIEGO MONTGOMERY FIELD|CA|United States|4|32-49N|117-08W|32-49-01N|117-08-04W|129|136| -KMYL|--|---|MCCALL AIRPORT|ID|United States|4|44-53N|116-05W|44-53-50N|116-05-54W|1530|1533| -KMYP|--|---|Salida Mountain, Monarch Pass|CO|United States|4|38-29-04N|106-19-01W|||3667|| -KMYR|74|791|Myrtle Beach Air Force Base|SC|United States|4|33-41N|078-56W|33-41N|078-56W|8|8| -KMYT|--|---|Innovator|MS|United States|4|28-13-14N|089-36-54W|||||| -KMYV|--|---|MARYSVILLE YUBA COUNTY|CA|United States|4|39-06N|121-34W|39-05-50N|121-33-56W|19|21| -KMZG|--|---|Mustang Island A85A|TX|United States|4|27-43-37N|096-11-28W|||||| -KMZH|--|---|Moose Lake, Moose Lake Carlton County Airport|MN|United States|4|46-25N|092-48W|||328|| -KN00|--|---|Fulton, Oswego County Airport|NY|United States|4|43-20-59N|076-23-05W|43-21-03N|076-23-37W|144|138| -KN11|--|---|New Haven Coast Guard Station|CT|United States|4|41-16N|072-54W|||3|| -KN28|--|---|Ambrose / Ft. Tilden|NY|United States|4|40-27N|073-49W|||1|| -KN60|--|---|GARRISON MUNICIPAL AIRPORT|ND|United States|4|47-39N|101-26W|||583|582| -KN67|--|---|Philadelphia, Wings Field Airport|PA|United States|4|40-08-15N|075-15-54W|||92|| -KN78|74|590|Barnegat Coast Guard Station|NJ|United States|4|39-46N|074-06W|||6|| -KN80|--|---|Ocean City, Ocean City Municipal Airport|MD|United States|4|38-18-30N|075-07-26W|38-18-38N|075-07-13W|3|3| -KN84|--|---|Bronx / Execution Coast Guard Station|NY|United States|4|40-53N|073-44W|||8|| -KN91|--|---|Cape May Coast Guard Station|NJ|United States|4|38-57N|074-53W|||2|| -KNAE|--|---|Astor, Bombing Range Detachment Astor|FL|United States|4|29-08-35N|081-37-58W|29-08-34N|081-37-59W|28|29| -KNAK|--|---|ANNAPOLIS US NAVAL ACADEMY|MD|United States|4|38-59N|76-29W|38-59-02N|076-29-03W|2|11| -KNBC|--|---|BEAUFORT MCAS|SC|United States|4|32-29N|080-43W|32-28-15N|080-43-26W|12|8| -KNBE|--|---|Dallas United States Naval Air Station|TX|United States|4|32-44N|096-58W|||150|| -KNBG|--|---|NEW ORLEANS NAVAL AIR STN|LA|United States|4|29-50N|90-01W|||0|| -KNBJ|--|---|FOLEY, BARIN FIELD|AL|United States|4|30-23N|087-38W|30-23-20N|087-38-13W|14|14| -KNBQ|--|---|Kings Bay, Naval Station|GA|United States|4|30-47-39N|081-33-25W|30-47-05N|081-34-14W|8|10| -KNBT|--|---|PINEY ISLAND BT11 BOMB RANGE|NC|United States|4|35-01N|076-28W|34-58-00N|076-23-11W|5|3| -KNCA|--|---|MCAS NEW RIVER|NC|United States|4|34-42N|77-27W|34-42-26N|077-26-07W|8|4| -KNDZ|--|---|MILTON WHITING FIELD (SOUTH)|FL|United States|4|30-42N|87-01W|30-42-12N|087-00-54W|54|62| -KNED|--|---|Winner, Wiley Field|SD|United States|4|43-23-22N|099-50-34W|43-23-17N|099-50-40W|619|621| -KNEL|72|409|Lakehurst Naval Air Station|NJ|United States|4|40-02N|074-19W|40-02N|074-19W|31|24| -KNEN|--|---|NOLF WHITEHOUSE FIELD, FL|FL|UNITED STATES|4|30-21N|81-52W|||30|| -KNEW|--|---|NEW ORLEANS LAKEFRONT AIRPORT |LA|United States|4|30-03N|90-02W|30-02-31N|090-01-32W|3|3| -KNEX|--|---|Charleston Nise|SC|United States|4|32-55N|079-59W|||12|| -KNFE|--|---|FENTRESS NALF|VA|United States|4|36-42N|076-08W|36-42-20N|076-07-40W|4|4| -KNFG|--|---|MCAS CAMP PENDLETON|CA|United States|4|33-18N|117-21W|33-18-25N|117-21-13W|24|23| -KNFJ|--|---|CHOCTAW, WHITING FIELD, NOLF|FL|United States|4|30-30N|086-57W|30-30-45N|086-57-19W|34|38| -KNFL|--|---|FALLON NAVAL AIR STATION|NV|United States|4|39-26N|118-41W|39-25-16N|118-42-34W|1199|1199| -KNFW|--|---|NAS FORT WORTH TX|TX|United States|4|32-46N|97-27W|32-46-36N|097-25-54W|198|187| -KNGP|--|---|CORPUS CHRISTI NAVAL AIR STN|TX|United States|4|27-41N|097-17W|||6|| -KNGU|--|---|Norfolk, Naval Air Station|VA|United States|4|36-56-01N|076-17-45W|36-56-21N|076-17-34W|4|8| -KNGW|--|---|CABINESS FIELD|TX|United States|4|27-70N|97-43W|||9|| -KNGZ|74|506|Alameda Naval Air Station|CA|United States|4|37-47N|122-19W|||4|9| -KNHK|72|404|NAS PATUXENT RIVER MD|MD|United States|4|38-18N|76-24W|38-17-20N|076-25-23W|12|6| -KNHZ|74|392|BRUNSWICK NAVAL AIR STN|ME|United States|4|43-54N|69-56W|43-53-52N|069-56-06W|23|23| -KNID|74|612|NAWS CHINA LAKE|CA|United States|4|35-41N|117-42W|35-41-15N|117-40-47W|696|682| -KNIP|--|---|JACKSONVILLE NAVAL AIR STN|FL|United States|4|30-14N|81-40W|30-13-45N|081-40-03W|7|8| -KNIS|--|---|Cherry Point, Marine Corps Air Station|NC|United States|4|34-53-11N|076-51-47W|34-54-35N|076-53-16W|8|9| -KNJK|72|281|El Centro, Naval Air Facility|CA|United States|4|32-49-30N|115-39-38W|32-49-28N|115-40-22W|-13|-13| -KNJM|--|---|BOGUE FIELD, MCALF|NC|United States|4|34-42N|077-02W|34-41-34N|077-01-46W|7|6| -KNJW|--|---|MERIDIAN RANGE B|MS|United States|4|32-48N|088-50W|32-47-38N|088-49-58W|165|163| -KNKT|72|309|Cherry Point, Marine Corps Air Station|NC|United States|4|34-53-52N|076-52-51W|34-54-35N|076-53-16W|8|9| -KNKX|72|293|MCAS MIRAMAR|CA|United States|4|32-52N|117-09W|32-52-28N|117-08-20W|146|146| -KNLC|74|702|LEMOORE NAVAL AIR STATION|CA|United States|4|36-20N|119-57W|36-19-40N|119-56-50W|71|72| -KNLT|--|---|Atlantic, Atlantic Field Outlying Landing Field|NC|United States|4|34-52-45N|076-20-10W|34-52-35N|076-20-50W|4|4| -KNMM|--|---|MERIDIAN NAVAL AIR STATION|MS|United States|4|32-55N|88-56W|32-33N|088-33W|97|86| -KNMT|--|---|McMullen, McMullen Target Site|TX|United States|4|28-14-10N|098-43-27W|28-14-10N|098-43-25W|79|85| -KNNZ|--|---|Point Sur|CA|United States|4|36-18N|121-53W|||34|| -KNOG|--|---|ORANGE GROVE, NALF|TX|United States|4|27-89N|098-04W|27-53-58N|098-02-54W|78|91| -KNOW|74|201|Port Angeles Coast Guard Air Station|WA|United States|4|48-08N|123-24W|||5|9| -KNPA|--|---|Pensacola, Naval Air Station|FL|United States|4|30-21-22N|087-19-24W|30-20-51N|087-19-40W|9|10| -KNQA|--|---|Millington, Millington Municipal Airport|TN|United States|4|35-21-24N|089-52-13W|||98|| -KNQI|--|---|KINGSVILLE NAS|TX|United States|4|27-50N|097-81W|27-30-20N|097-48-51W|15|15| -KNQX|--|---|KEY WEST NAVAL AIR STATION|FL|United States|4|24-35N|81-41W|27-34-49N|081-41-18W|2|6| -KNRA|--|---|OLF COUPEVILLE|WA|United States|4|48-11N|122-38W|48-11-27N|122-37-45W|61|59| -KNRB|--|---|MAYPORT NAVAL AIR FACILITY|FL|United States|4|30-24N|81-25W|30-23-33N|081-25-02W|5|4| -KNRC|--|---|Crows Landing Naval Auxiliary Landing Field|CA|United States|4|37-24N|121-06W|||50|| -KNRS|--|---|IMPERIAL BEACH, NOLF|CA|United States|4|32-34N|117-07W|||7|5| -KNSE|--|---|MILTON WHITING FIELD (NORTH)|FL|United States|4|30-44N|87-01W|30-43-04N|087-01-21W|61|60| -KNSI|72|291|SAN NICOLAS ISLAND|CA|United States|4|33-14N|119-28W|33-14-25N|119-27-31W|154|153| -KNTD|72|391|NAWCWPNS POINT MUGU, CA|CA|United States|4|34-07N|119-07W|34-06-46N|119-07-04W|4|2| -KNTU|--|---|OCEANA, NAVAL AIR STATION|VA|United States|4|36-49N|076-02W|36-49-07N|076-02-00W|7|6| -KNUC|--|---|SAN CLEMENTE ISLAND NALF|CA|United States|4|33-01N|118-35W|33-01-19N|118-35-01W|55|62| -KNUI|--|---|KNUI WEBSTER FIELD ANNEX|MD|United States|4|38-09N|76-25W|38-08-30N|076-25-45W|6|6| -KNUQ|74|509|MOFFETT FIELD|CA|United States|4|37-26N|122-03W|37-24-32N|122-02-59W|10|19| -KNUW|--|---|NAS WHIDBEY ISLAND|WA|United States|4|48-21N|122-39W|48-20-45N|122-40-06W|14|8| -KNVT|--|---|WALDRON FLD NOLF|TX|United States|4|27-38N|97-19W|||8|| -KNXP|--|---|TWENTYNINE PALMS MARINE|CA|United States|4|34-18N|116-10W|34-17-41N|116-09-08W|626|627| -KNXX|--|---|WILLOW GROVE NAVAL AIR STA|PA|United States|4|40-12N|075-08W|40-12-15N|075-08-20W|110|101| -KNYC|--|---|NEW YORK CITY CENTRAL PARK|NY|United States|4|40-47N|073-58W|||48|48| -KNYG|--|---|QUANTICO MARINE CORPS AIRFAC|VA|United States|4|38-30N|077-18W|38-32-20N|077-18-25W|4|3| -KNYL|--|---|MCAS YUMA|AZ|United States|4|32-39N|114-36W|||65|63| -KNZC|--|---|Cecil, Naval Air Station|FL|United States|4|30-12-44N|081-52-13W|30-13-16N|081-52-51W|24|26| -KNZY|--|---|NAS NORTH ISLAND, SAN DIEGO|CA|United States|4|32-42N|117-13W|32-47-08N|117-11-49W|8|14| -KO18|--|---|Hanford, Hanford Municipal Airport|CA|United States|4|36-19-03N|119-37-46W|36-18-52N|119-37-39W|75|74| -KO54|--|---|Weaverville|CA|United States|4|40-44-50N|122-55-20W|||716|| -KO64|72|590|Fort Bragg|CA|United States|4|39-24N|123-49W|||19|| -KO72|--|---|Point Cabrillo|CA|United States|4|39-21N|123-49W|||20|| -KO87|--|---|Shelter Cove|CA|United States|4|40-01N|124-04W|||21|| -KOAJ|--|---|Jacksonville, Albert J Ellis Airport|NC|United States|4|34-50N|077-37W|||29|| -KOAK|72|493|METRO OAKLAND INTERNATIONAL AIRPORT |CA|United States|4|37-43N|122-14W|37-42-45N|122-12-48W|2|26| -KOAX|72|558|Valley|NE|United States|4|41-19N|096-22W|41-19N|096-22W|350|350| -KOBE|--|---|Okeechobee County Airport|FL|United States|4|27-15-60N|080-51-02W|||10|| -KOCF|--|---|Ocala, Ocala International Airport-Jim Taylor Field|FL|United States|4|29-10N|082-13W|||27|| -KOCH|--|---|Nacogdoches, A L Mangham Jr. Regional Airport|TX|United States|4|31-35N|094-43W|||108|| -KOCW|--|---|Washington, Warren Field Airport|NC|United States|4|35-34-14N|077-02-59W|||12|| -KODO|--|---|ODESSA SCHLEMEYER FIELD|TX|United States|4|31-55N|102-24W|31-55-08N|102-23-32W|915|902| -KODX|--|---|ORD EVELYN SHARP FLD AIRPORT |NE|United States|4|41-37N|098-57W|||631|| -KOEB|--|---|Coldwater, Branch County Memorial Airport|MI|United States|4|41-56N|085-03-09W|||292|| -KOEO|--|---|Osceola, L O Simenstad Municipal Airport|WI|United States|4|45-18-31N|092-41-24W|||275|| -KOFF|72|554|Omaha / Offutt Air Force Base|NE|United States|4|41-07N|095-54W|||319|315| -KOFK|72|556|KARL STEFAN MEMORIAL AIRPORT|NE|United States|4|41-59N|097-26W|41-59-05N|097-25-48W|479|470| -KOFP|--|---|HANOVER COUNTY MUNICIPAL|VA|United States|4|37-42N|077-26W|37-42-25N|077-26-18W|62|62| -KOGA|--|---|Ogallala, Searle Field Airport|NE|United States|4|41-07-11N|101-46-08W|||999|| -KOGB|--|---|ORANGEBURG MUNICIPAL AIRPORT|SC|United States|4|33-28N|080-51W|33-27-59N|080-51-18W|60|59| -KOGD|72|575|OGDEN-HINCKLEY AIRPORT|UT|United States|4|41-12N|112-01W|41-11-36N|112-00-25W|1362|1353| -KOGS|--|---|Ogdensburg International|NY|United States|4|44-41N|075-28W|||91|| -KOHX|--|---|Nashville NEXRAD|TN|United States|4|36-45N|086-34W|||206|| -KOJA|--|---|Weatherford, Thomas P Stafford Airport|OK|United States|4|35-32-41N|098-40-06W|||489|| -KOJC|--|---|OLATHE JOHNSON CO EXECUTIVE|KS|United States|4|38-50N|94-44W|38-50-51N|094-44-14W|334|326| -KOKB|--|---|OCEANSIDE|CA|United States|4|33-13N|117-21W|33-13-03N|117-21-07W|9|8| -KOKC|72|353|WILL ROGERS WORLD AIRPORT|OK|United States|4|35-23N|97-36W|35-24-05N|097-36-04W|395|390| -KOKH|--|---|Oceanside, Oceanside Municipal Airport|CA|United States|4|33-13-10N|117-20-58W|33-13-03N|117-21-07W|8|8| -KOKK|--|---|Kokomo, Kokomo Municipal Airport|IN|United States|4|40-32N|086-04W|||253|| -KOKM|--|---|Okmulgee, Okmulgee Municipal Airport|OK|United States|4|35-40-05N|095-56-55W|||220|| -KOKV|--|---|Winchester Regional|VA|United States|4|39-09N|078-09W|||222|| -KOKX|--|---|N. Y. City NEXRAD|NY|United States|4|40-52N|072-52W|||60|| -KOLD|--|---|Old Town / Dewitt Field|ME|United States|4|44-57N|068-40W|||39|| -KOLE|--|---|Olean Municipal|NY|United States|4|42-14N|078-22W|||651|| -KOLF|--|---|WOLF POINT CLAYTON AIRPORT|MT|United States|4|48-06N|105-35W|48-05-43N|105-34-21W|605|604| -KOLM|72|792|OLYMPIA AIRPORT|WA|United States|4|46-58N|122-54W|46-58-30N|122-53-46W|63|58| -KOLS|--|---|NOGALES INTERNATIONAL AIRPORT |AZ|United States|4|31-25N|110-51W|31-25-05N|110-50-57W|1198|1184| -KOLU|--|---|Columbus, Columbus Municipal Airport|NE|United States|4|41-27N|097-20W|||440|| -KOLV|--|---|Olive Branch, Olive Branch Airport|MS|United States|4|34-58-44N|089-47-13W|||122|| -KOLY|--|---|Olney-Noble, Olney-Noble Airport|IL|United States|4|38-43-19N|088-10-35W|||147|| -KOLZ|--|---|Oelwein, Oelwein Municipal Airport|IA|United States|4|42-40-51N|091-58-28W|||328|| -KOMA|72|550|OMAHA EPPLEY AIRFIELD|NE|United States|4|41-18N|095-54W|41-18-03N|095-53-55W|300|312| -KOMH|--|---|Orange, Orange County Airport|VA|United States|4|38-14-50N|78-02-44W|||142|| -KOMK|--|---|OMAK AIRPORT|WA|United States|4|48-28N|119-31W|48-27-40N|119-30-54W|397|395| -KOMN|--|---|Ormond Beach, Ormond Beach Municipal Airport|FL|United States|4|29-18-04N|081-06-49W|||9|| -KONA|--|---|Winona, Winona Municipal Airport-Max Conrad Field|MN|United States|4|44-05N|091-42W|||200|| -KONL|--|---|O'Neill / Baker Field|NE|United States|4|42-28N|098-41W|||619|| -KONM|72|362|Socorro Municipal|NM|United States|4|34-01N|106-54W|||1478|| -KONO|--|---|ONTARIO MUNICIPAL AIRPORT|OR|United States|4|44-01N|117-01W|44-01-24N|117-00-46W|668|667| -KONP|--|---|Newport, Newport Municipal Airport|OR|United States|4|44-34-49N|124-03-29W|||49|| -KONT|--|---|ONTARIO INTERNATIONAL AIRPORT|CA|United States|4|34-03N|117-35W|34-03-05N|117-35-55W|287|275| -KONX|--|---|Currituck, Currituck County Airport|NC|United States|4|36-23-56N|076-00-58W|||5|| -KONZ|--|---|Detroit/Grosse Ile, Grosse Ile Airport|MI|United States|4|42-05-55N|083-09-40W|||180|| -KOOA|--|---|Oskaloosa, Oskaloosa Municipal Airport|IA|United States|4|41-13-34N|092-29-37W|||256|| -KOPF|--|---|MIAMI OPA LOCKA AIRPORT|FL|United States|4|25-54N|80-17W|25-54-35N|080-16-23W|2|16| -KOPM|--|---|N. Padre Island|TX|United States|4|26-49-58N|096-56-24W|||||| -KOPN|--|---|Thomaston, Thomaston-Upson County Airport|GA|United States|4|32-57-18N|084-15-52W|||243|| -KOQT|--|---|OAK RIDGE|TN|United States|4|36-01N|84-14W|||277|| -KOQU|--|---|N. Kingston / Quonset|RI|United States|4|41-36N|071-25W|||6|| -KORB|--|---|Orr|MN|United States|4|48-01N|092-52W|||397|| -KORC|--|---|Orange City|IA|United States|4|42-59N|096-04W|||431|| -KORD|72|530|CHICAGO O'HARE INTERNATIONAL|IL|United States|4|41-59N|087-55W|42-00N|087-53W|204|200| -KORE|--|---|Orange, Orange Municipal Airport|MA|United States|4|42-34-18N|072-16-39W|42-34-20N|072-16-31W|169|164| -KORF|72|308|NORFOLK INTERNATIONAL AIRPORT |VA|United States|4|36-54N|076-12W|36-53-28N|076-17-06W|8|14| -KORG|--|---|Orange, Orange County Airport|TX|United States|4|30-04-09N|093-48-13W|||4|| -KORH|--|---|WORCESTER REGIONAL AIRPORT|MA|United States|4|42-16N|71-52W|42-16-10N|071-52-18W|308|304| -KORL|--|---|ORLANDO EXECUTIVE AIRPORT|FL|United States|4|28-33N|081-20W|28-32-37N|081-19-44W|34|37| -KORS|--|---|Eastsound, Orcas Island Airport|WA|United States|4|48-42-29N|122-54-37W|||9|| -KOSA|--|---|Mount Pleasant, Mount Pleasant Regional Airport|TX|United States|4|33-05-43N|094-57-41W|||111|| -KOSC|--|---|Oscoda, Oscoda-Wurtsmith Airport|MI|United States|4|44-27N|083-22W|||193|| -KOSH|--|---|WITTMAN REGIONAL AIRPORT|WI|United States|4|43-58N|88-33W|43-58-54N|088-33-37W|246|248| -KOSU|--|---|OHIO STATE UNIVERSITY AIRPORT |OH|United States|4|40-05N|083-05W|40-04-30N|083-04-16W|276|280| -KOTG|--|---|Worthington, Worthington Municipal Airport|MN|United States|4|43-39N|095-35W|||480|| -KOTH|--|---|North Bend, North Bend Municipal Airport|OR|United States|4|43-25N|124-15W|||5|| -KOTM|--|---|OTTUMWA INDUSTRIAL AIRPORT|IA|United States|4|41-06N|092-27W|41-06-24N|092-26-44W|258|256| -KOUN|72|357|Norman / Max Westheimer|OK|United States|4|35-13N|097-27W|35-13N|097-27W|357|357| -KOVE|--|---|OROVILLE MUNICIPAL AIRPORT|CA|United States|4|39-30N|121-37W|39-29-42N|121-36-48W|59|58| -KOVL|--|---|Olivia, Olivia Regional Airport|MN|United States|4|44-46-43N|095-01-58W|||328|| -KOVS|--|---|BOSCOBEL AIRPORT|WI|United States|4|43-09N|90-41W|43-08-42N|090-42-07W|205|202| -KOWA|--|---|Owatonna, Owatonna Degner Regional Airport|MN|United States|4|44-07N|093-15W|||349|| -KOWB|--|---|Owensboro, Owensboro-Daviess County Airport|KY|United States|4|37-44-24N|087-10-00W|||124|| -KOWD|--|---|NORWOOD MEMORIAL AIRPORT|MA|United States|4|42-11N|71-10W|42-11-10N|071-10-39W|15|19| -KOWY|--|---|Owyhee|NV|United States|4|41-57N|116-06W|||1645|| -KOXB|--|---|OCEAN CITY MUNICIPAL AIRPORT |MD|United States|4|38-19N|75-07W|||4|| -KOXC|--|---|Oxford, Waterbury-Oxford Airport|CT|United States|4|41-29N|073-08W|||221|| -KOXR|--|---|OXNARD AIRPORT|CA|United States|4|34-12N|119-12W|34-11-58N|119-12-20W|13|20| -KOXV|--|---|Knoxville|IA|United States|4|41-18N|093-07W|||283|| -KOZR|--|---|Cairns Army Air Field / Ozark|AL|United States|4|31-17N|085-43W|||91|| -KOZW|--|---|Howell, Livingston County Airport|MI|United States|4|42-37-46N|083-59-03W|||293|| -KP00|--|---|Tenneco Platform|LA|United States|4|28-00N|093-00W|||15|| -KP01|--|---|Ajo Municipal|AZ|United States|4|32-27N|112-52W|||444|| -KP06|--|---|Bullhead City|AZ|United States|4|35-10N|114-34W|||167|| -KP07|74|730|Sanderson|TX|United States|4|30-10N|102-25W|||865|865|P -KP11|72|758|Devils Lake|ND|United States|4|48-06N|098-52W|||439|443|P -KP21|--|---|Main Pass B68|LA|United States|4|29-40N|088-53W|||1|| -KP22|--|---|Vermilion B131|LA|United States|4|29-04N|092-11W|||1|| -KP24|72|765|Roseglen|ND|United States|4|47-45N|101-50W|||624|624|P -KP25|--|---|Vermilion B215|LA|United States|4|28-42N|092-19W|||1|| -KP26|--|---|Grand Isle B95|LA|United States|4|28-30N|090-07W|||1|| -KP28|72|452|MEDICINE LODGE|KS|United States|4|37-17N|098-33W|||469|469| -KP30|--|---|West Cameron|LA|United States|4|28-20N|093-01W|||24|| -KP35|72|540|Spickard|MO|United States|4|40-15N|093-43W|||271|270|P -KP38|72|487|Caliente|NV|United States|4|37-36-44N|114-31-35W|37-36-44N|114-31-35W|1333|1333|P -KP39|72|750|Pequot Lake|MN|United States|4|46-36N|094-19W|||390|390| -KP43|--|---|Ventura Harbor|CA|United States|4|34-15N|119-15W|||7|| -KP44|--|---|Santa Barbara Harbor|CA|United States|4|34-24N|119-42W|||8|| -KP47|--|---|Chetco River Coast Guard Station|OR|United States|4|42-09N|124-16W|||6|| -KP53|--|---|MUNISING LAKESHORE|MI|United States|4|46-25N|086-39W|||187|| -KP58|--|---|PORT HOPE|MI|United States|4|44-01N|082-48W|||180|179| -KP59|--|---|COPPER HARBOR|MI|United States|4|47-28N|087-53W|||191|190| -KP60|--|---|YELLOWSTONE LAKE|WY|United States|4|44-33N|110-25W|||2388|2388| -KP61|--|---|Grand Marais|MN|United States|4|47-44-50N|090-20-40W|||185|185| -KP65|--|---|Lukeville|AZ|United States|4|31-53N|112-49W|||511|| -KP67|--|---|Lidgerwood Remote Automatic Meteorological Observing System|ND|United States|4|46-06N|097-09W|||351|| -KP68|--|---|EUREKA|NV|United States|4|39-36N|116-00W|||1812|1809| -KP69|--|---|Lowell|ID|United States|4|46-08-39N|115-35-47W|||480|480| -KP75|--|---|Manistique|MI|United States|4|45-57-00N|086-13-47W|||178|178| -KP88|--|---|Rome Automatic Meteorological Observing System|OR|United States|4|42-54N|117-39W|||1162|| -KP92|--|---|SALT POINT|LA|United States|4|29-34N|091-32W|||1|0| -KPAE|--|---|EVERETT SNOHOMISH COUNTY|WA|United States|4|47-55N|122-17W|47-54-25N|122-16-42W|185|180| -KPAH|72|435|BARKLEY REGIONAL AIRPORT|KY|United States|4|37-03N|088-46W|37-04-07N|088-46-20W|125|118| -KPAM|74|775|Tyndall Air Force Base|FL|United States|4|30-04N|085-35W|30-04N|085-35W|5|13| -KPAO|--|---|Palo Alto Airport|CA|United States|4|37-28N|122-07W|||2|| -KPAQ|--|---|Palmer, Palmer Municipal Airport|AK|United States|4|61-35-46N|149-05-30W|61-35-52N|149-05-29W|70|69| -KPAT|--|---|Pathfinder Hill|WY|United States|4|42-34N|106-51W|||1912|| -KPBF|--|---|PINE BLUFF GRIDER FIELD|AR|United States|4|34-11N|091-56W|34-10-44N|091-56-16W|63|62| -KPBG|--|---|PLATTSBURGH INTERNATIONAL AIRPORT|NY|United States|4|44-39N|073-28W|||73|| -KPBH|--|---|Phillips / Price County|WI|United States|4|45-42N|090-24W|||449|| -KPBI|72|203|PALM BEACH INTERNATIONAL|FL|United States|4|26-41N|80-06W|26-40-40N|080-06-30W|6|6| -KPBV|--|---|St. George Island, New St. George Airport|AK|United States|4|56-34-37N|169-39-47W|56-34-37N|169-39-47W|27|34| -KPBZ|--|---|Pittsburgh Nexrad|PA|United States|4|40-32N|080-13W|||386|| -KPCM|--|---|Plant City, Plant City Municipal Airport|FL|United States|4|28-00N|082-09W|||47|| -KPCU|--|---|Picayune / Pearl River|MS|United States|4|30-31N|089-42W|||19|| -KPCZ|--|---|Waupaca, Waupaca Municipal Airport|WI|United States|4|44-20-01N|089-00-55W|||252|| -KPDC|--|---|Prairie Du Chien, Prairie Du Chien Municipal Airport|WI|United States|4|43-01-19N|091-07-29W|||201|| -KPDK|--|---|ATLANTA DE KALB-PEACHTREE|GA|United States|4|33-53N|084-18W|33-52-30N|084-17-06W|305|302| -KPDT|72|688|PENDLETON MUNICIPAL AIRPORT|OR|United States|4|45-70N|118-83W|45-41-22N|118-50-18W|455|458| -KPDX|72|698|PORTLAND INTERNATIONAL AIRPORT|OR|United States|4|45-35N|122-36W|45-35-50N|122-36-21W|8|7| -KPEA|--|---|Pella, Pella Municipal Airport|IA|United States|4|41-24N|092-56W|||270|| -KPEF|--|---|Peterson Air Force Base|CO|United States|4|38-49N|104-44W|||1876|| -KPEO|--|---|PENN YAN AIRPORT|NY|United States|4|42-39N|077-03W|42-38-37N|077-03-32W|298|256| -KPEQ|--|---|Pecos, Pecos Municipal Airport|TX|United States|4|31-22-56N|103-30-38W|||796|| -KPEX|--|---|Paynesville, Paynesville Municipal Airport|MN|United States|4|45-22-20N|094-44-47W|||360|| -KPFC|--|---|Pacific City State|OR|United States|4|45-12N|123-58W|||2|| -KPFN|--|---|PANAMA CITY-BAY CTY INTERNATIONAL |FL|United States|4|30-12N|085-41W|30-12-22N|085-40-54W|6|12| -KPGA|72|371|PAGE MUNICIPAL AIRPORT|AZ|United States|4|36-56N|111-27W|36-55-15N|111-26-53W|1314|1307| -KPGD|--|---|PUNTA GORDA CHARLOTTE COUNTY|FL|United States|4|26-55N|82-00W|26-54-57N|081-59-53W|7|7| -KPGL|--|---|Pascagoula / Jackson|MS|United States|4|30-24N|088-29W|||3|| -KPGV|--|---|Pitt-Greenville Airport|NC|United States|4|35-38N|077-24W|||8|| -KPHD|--|---|NEW PHILADELPHIA CLEVER FLD|OH|United States|4|40-28N|81-25W|40-28-13N|081-25-03W|273|272| -KPHF|--|---|WILLIAMSBURG INTERNATIONAL AIRPORT |VA|United States|4|37-08N|76-30W|37-07-54N|076-30-04W|13|12| -KPHL|72|408|PHILADELPHIA INTERNATIONAL AIRPT|PA|United States|4|39-52N|075-14W|39-52-34N|075-14-37W|6|18| -KPHN|--|---|St. Clair County International|MI|United States|4|42-55N|082-32W|||198|| -KPHP|--|---|PHILIP AIRPORT|SD|United States|4|44-03N|101-36W|44-03-08N|101-36-00W|673|672| -KPHX|72|278|Phoenix, Phoenix Sky Harbor International Airport|AZ|United States|4|33-26-03N|112-03-04W|33-26-07N|112-00-33W|345|336|P -KPIA|72|532|GREATER PEORIA REGIONAL AIRPORT |IL|United States|4|40-40N|89-41W|40-39-59N|089-41-15W|201|205| -KPIB|--|---|Hattiesburg/Laurel, Hattiesburg-Laurel Regional Airport|MS|United States|4|31-28N|089-20W|||91|| -KPIE|--|---|ST PETERSBURG/CLEARWATER|FL|United States|4|27-55N|82-41W|27-54-14N|082-41-30W|3|4| -KPIH|72|578|POCATELLO REGIONAL AIRPORT|ID|United States|4|42-55N|112-36W|42-54-16N|112-35-24W|1356|1359| -KPIL|--|---|PORT ISABEL CAMERON|TX|United States|4|26-10N|97-20W|26-09-34N|097-20-21W|6|5| -KPIN|--|---|Piney Creek|WY|United States|4|44-34N|106-49W|||1392|| -KPIR|--|---|PIERRE REGIONAL AIRPORT|SD|United States|4|44-23N|100-17W|44-22-49N|100-17-32W|531|526| -KPIT|72|520|GREATER PITTSBURGH INTERNATIONAL |PA|United States|4|40-29N|80-14W|40-29-41N|080-11-25W|367|357| -KPJB|--|---|Payson|AZ|United States|4|34-16N|111-21W|||1571|| -KPJI|--|---|Point Judith Coast Guard Station|RI|United States|4|41-21N|071-28W|||2|| -KPKB|--|---|MID-OHIO VALLEY RGNL AIRPORT|WV|United States|4|39-20N|81-27W|||262|| -KPKD|--|---|PARK RAPIDS MUNICIPAL AIRPORT |MN|United States|4|46-54N|95-04W|46-53-55N|095-03-51W|440|442| -KPKF|72|741|Park Falls|WI|United States|4|45-56N|090-27W|||462|469|P -KPKV|--|---|Port Lavaca, Calhoun County Airport|TX|United States|4|28-39-14N|096-40-52W|||9|| -KPLB|--|---|PLATTSBURGH CLINTON CO AIRPORT |NY|United States|4|44-41N|073-32W|44-41-29N|073-31-19W|113|106| -KPLN|--|---|PELLSTON REGIONAL AIRPORT|MI|United States|4|45-34N|084-48W|45-34-08N|084-47-10W|219|217| -KPMD|72|382|PALMDALE PROD FLIGHT PLANT|CA|United States|4|34-38N|118-05W|34-37-12N|118-04-50W|775|780| -KPMP|--|---|POMPANO BEACH AIRPARK|FL|United States|4|26-15N|080-07W|26-14-35N|080-06-51W|6|6| -KPMV|--|---|Plattsmouth, Plattsmouth Municipal Airport|NE|United States|4|40-57-00N|095-55-04W|||366|| -KPNA|--|---|Pinedale, Ralph Wenz Field Airport|WY|United States|4|42-47-43N|109-48-25W|||2160|| -KPNC|--|---|PONCA CITY MUNICIPAL AIRPORT|OK|United States|4|36-44N|97-06W|36-43-45N|097-06-04W|307|308| -KPNE|--|---|N.E. PHILADELPHIA AIRPORT|PA|United States|4|40-05N|075-01W|40-04-31N|075-00-35W|37|28| -KPNM|--|---|Princeton|MN|United States|4|45-33N|093-36W|||298|| -KPNS|--|---|PENSACOLA REGIONAL AIRPORT|FL|United States|4|30-29N|087-11W|30-28-37N|087-11-33W|37|38| -KPNT|--|---|Pontiac, Pontiac Municipal Airport|IL|United States|4|40-55-25N|088-37-31W|||201|| -KPOB|72|303|Pope Air Force Base|NC|United States|4|35-10N|079-02W|35-10N|079-02W|61|61| -KPOC|--|---|La Verne / Brackett|CA|United States|4|34-06N|117-47W|||308|| -KPOE|72|239|Fort Polk, Polk AAF Ft Polk|LA|United States|4|31-03N|093-11-38W|||101|| -KPOF|--|---|POPLAR BLUFF MUN AIRPORT|MO|United States|4|36-46N|090-19W|||101|100| -KPOU|--|---|POUGHKEEPSIE DUTCHESS CTY|NY|United States|4|41-38N|073-53W|41-37-28N|073-52-57W|51|46| -KPPA|--|---|Pampa, Perry Lefors Field Airport|TX|United States|4|35-36-46N|100-59-46W|||989|| -KPPF|--|---|PARSONS TRI-CITY AIRPORT|KS|United States|4|37-20N|95-30W|37-20-17N|095-30-31W|274|274| -KPPQ|--|---|Pittsfield, Pittsfield Penstone Municipal Airport|IL|United States|4|39-38-20N|090-46-42W|||216|| -KPQI|72|713|Presque Isle|ME|United States|4|46-41N|068-03W|||163|146| -KPQL|--|---|PASCAGOULA LOTT INTERNATIONAL AIRPORT |MS|United States|4|30-28N|88-32W|30-27-45N|088-31-36W|5|6| -KPQN|--|---|Pipestone, Pipestone Municipal Airport|MN|United States|4|43-59N|096-19W|||529|| -KPRB|--|---|PASO ROBLES AIRPORT|CA|United States|4|35-40N|120-38W|35-40-19N|120-38-13W|255|245| -KPRC|--|---|PRESCOTT LOVE FIELD|AZ|United States|4|34-39N|112-25W|34-38-58N|112-25-14W|1537|1524| -KPRG|--|---|Paris, Edgar County Airport|IL|United States|4|39-42-01N|087-40-11W|||199|| -KPRN|--|---|GREENVILLE AIRPORT|AL|UNITED STATES|4|31-47N|085-57W|||137|| -KPRX|--|---|Paris / Cox Field|TX|United States|4|33-38N|095-27W|||167|| -KPSC|--|---|TRI-CITIES AIRPORT|WA|United States|4|46-16N|119-07W|46-15-37N|119-06-52W|124|121| -KPSF|--|---|PITTSFIELD MUNICIPAL AIRPORT |MA|United States|4|42-26N|073-17W|42-25-32N|073-17-30W|364|355| -KPSK|--|---|Dublin / New River Valley|VA|United States|4|37-08N|080-41W|||642|| -KPSM|--|---|Pease Air Force Base / Portsmouth|NH|United States|4|43-05N|070-49W|||31|| -KPSN|--|---|Palestine, Palestine Municipal Airport|TX|United States|4|31-46-46N|095-42-22W|||129|| -KPSP|--|---|PALM SPRINGS REGIONAL AIRPORT |CA|United States|4|33-50N|116-30W|33-49-35N|116-30-26W|141|135| -KPSX|--|---|PALACIOS MUNICIPAL AIRPORT|TX|United States|4|28-43N|096-15W|||5|| -KPTB|--|---|Petersburg, Dinwiddie County Airport|VA|United States|4|37-11N|077-31W|||59|| -KPTK|--|---|OAKLAND COUNTY INTERNATIONAL|MI|United States|4|42-40N|083-25W|42-39-46N|083-25-00W|299|300| -KPTN|--|---|Patterson Memorial|LA|United States|4|29-43N|091-20W|||3|| -KPTT|74|543|Pratt Municipal|KS|United States|4|37-42N|098-45W|37-42N|098-45W|595|595| -KPTV|--|---|Porterville, Porterville Municipal Airport|CA|United States|4|36-02N|119-04W|||135|| -KPTW|--|---|POTTSTOWN LIMERICK AIRPORT|PA|United States|4|40-14N|075-33W|40-14-31N|075-33-22W|89|89| -KPUB|72|464|PUEBLO MEMORIAL AIRPORT|CO|United States|4|38-17N|104-30W|38-17-03N|104-29-43W|1440|1420| -KPUC|72|470|PRICE CARBON COUNTY AIRPORT|UT|United States|4|39-37N|110-45W|39-36-41N|110-44-55W|1814|2091| -KPUM|--|---|Pumpkin Vine|WY|United States|4|41-03N|105-28W|||2420|| -KPUW|--|---|PULLMAN/MOSCOW RGNL AIRPORT |WA|United States|4|46-45N|117-07W|46-44-37N|117-06-48W|778|773| -KPUX|--|---|Pueblo NEXRAD|CO|United States|4|38-28N|104-11W|||1620|| -KPVC|--|---|Provincetown, Provincetown Municipal Airport|MA|United States|4|42-04N|070-13W|||2|| -KPVD|72|507|PROVIDENCE GREEN STATE AIRPORT |RI|United States|4|41-44N|071-26W|41-43-53N|071-25-43W|17|16| -KPVJ|--|---|Pauls Valley, Pauls Valley Municipal Airport|OK|United States|4|34-42-40N|097-13-24W|||295|| -KPVU|--|---|Provo, Provo Municipal Airport|UT|United States|4|40-13N|111-43W|||1371|| -KPVW|--|---|Plainview, Hale County Airport|TX|United States|4|34-10-05N|101-43-02W|||1028|| -KPWA|--|---|WILEY POST|OK|United States|4|35-32N|97-39W|35-31-52N|097-38-34W|396|397| -KPWC|--|---|Pine River, Pine River Regional Airport|MN|United States|4|46-43-30N|094-23-01W|||395|| -KPWG|--|---|Waco, Mc Gregor Executive Airport|TX|United States|4|31-29N|097-19W|||180|| -KPWK|--|---|CHICAGO EXECUTIVE AIRPORT|IL|United States|4|42-07N|087-54W|42-06-37N|087-54-11W|197|203| -KPWM|72|606|PORTLAND INTERNATIONAL JETPORT|ME|United States|4|43-39N|70-18W|43-38-53N|070-18-09W|23|15| -KPWT|--|---|Bremerton, Bremerton National Airport|WA|United States|4|47-30N|122-45W|||134|| -KPYM|--|---|PLYMOUTH MUNICIPAL AIRPORT|MA|United States|4|41-54N|070-44W|41-54-34N|070-43-54W|45|43| -KPYX|--|---|Perryton, Perryton Ochiltree County Airport|TX|United States|4|36-24N|100-44W|||890|| -KPZQ|--|---|Rogers City, Presque Isle County Airport|MI|United States|4|45-24-25N|083-48-46W|||204|| -KQCA|--|---|Granite Peak|UT|United States|4|40-10N|113-21W|||1310|| -KQCB|--|---|Little Mountain|UT|United States|4|41-15N|112-15W|||1326|| -KQCJ|--|---|Eagle Range|UT|United States|4|41-03N|113-05W|||1294|| -KQHA|78|439|FOB Mandrian||Haiti|4|19-40N|072-62W|||17|| -KQIR|--|---|Al Udeid||Qatar|2|25-07N|051-18E|||42|| -KQTA|--|---|ATSUGI, JAPAN NAVAL AIR||JAPAN|2|35-27N|139-27E|||62|| -KQUK|--|---|Camp Bondsteel||Serbia and Montenegro|6|42-35N|021-23E|||592|| -KRAC|--|---|BATTEN INTERNATIONAL AIRPORT|WI|United States|4|42-46N|87-49W|42-45-32N|087-49-13W|205|203| -KRAD|--|---|Warroad Automatic Weather Observing / Reporting System|MN|United States|4|48-56N|095-20W|||328|| -KRAL|--|---|RIVERSIDE MUNICIPAL AIRPORT |CA|United States|4|33-57N|117-27W|33-56-59N|117-26-21W|249|252| -KRAP|72|662|RAPID CITY REGIONAL AIRPORT |SD|United States|4|44-03N|103-03W|44-02-33N|103-03-43W|976|965| -KRAS|--|---|Port Aransas, Mustang Beach Airport|TX|United States|4|27-48-42N|097-05-19W|||2|| -KRAX|--|---|Raleigh NEXRAD|NC|United States|4|35-40N|078-30W|||141|| -KRBD|--|---|DALLAS EXECUTIVE AIRPORT|TX|United States|4|32-41N|096-52W|32-40-51N|096-51-51W|201|203| -KRBG|--|---|ROSEBURG REGIONAL AIRPORT|OR|United States|4|43-14N|123-21W|43-14-10N|123-21-23W|160|154| -KRBL|72|591|RED BLUFF MUNICIPAL AIRPORT|CA|United States|4|40-09N|122-15W|40-09-19N|122-14-28W|106|104| -KRBO|--|---|Robstown, Nueces County Airport|TX|United States|4|27-46-42N|097-41-25W|||24|| -KRCA|--|---|Ellsworth Air Force Base|SD|United States|4|44-09N|103-06W|||999|| -KRCX|--|---|Ladysmith, Ruck County Airport|WI|United States|4|45-29-48N|091-00-01W|||377|| -KRDD|72|592|REDDING MUNICIPAL AIRPORT|CA|United States|4|40-30N|122-17W|40-31-00N|122-17-50W|153|155| -KRDG|--|---|READING REGIONAL AIRPORT|PA|United States|4|40-22N|075-58W|40-22-33N|075-57-58W|105|109| -KRDK|--|---|Red Oak|IA|United States|4|41-01N|095-16W|||318|| -KRDM|--|---|REDMOND ROBERTS FIELD|OR|United States|4|44-15N|121-08W|||938|| -KRDR|--|---|Grand Forks Air Force Base|ND|United States|4|47-58N|097-24W|47-58N|097-24W|278|278| -KRDU|72|306|RALEIGH-DURHAM INTERNATIONAL AIRPORT|NC|United States|4|35-54N|078-46W|35-52-59N|078-47-01W|133|130| -KRED|--|---|Red Lodge|MT|United States|4|45-11N|109-16W|||1757|| -KREE|--|---|Reese Air Force Base / Lubbock|TX|United States|4|33-36N|102-03W|||1017|| -KREO|--|---|ROME|OR|United States|4|42-35N|117-52W|42-35-24N|117-52-07W|1234|1235| -KRFD|72|543|GREATER ROCKFORD AIRPORT|IL|United States|4|42-12N|89-06W|42-11-25N|089-05-10W|224|221| -KRGK|--|---|Red Wing, Red Wing Municipal Airport|MN|United States|4|44-35-25N|092-29-10W|||239|| -KRGX|--|---|Reno NEXRAD|NV|United States|4|39-45N|119-28W|||2560|| -KRHI|--|---|RHINELANDER-ONEIDA CO AIRPORT |WI|United States|4|45-38N|89-29W|45-37-34N|089-27-48W|495|485| -KRHP|--|---|Andrews, Andrews-Murphy Airport|NC|United States|4|35-11-42N|083-51-49W|||517|| -KRHV|--|---|San Jose / Reid / Hillv|CA|United States|4|37-20N|121-49W|||41|| -KRIC|72|401|RICHMOND INTERNATIONAL AIRPORT|VA|United States|4|37-31N|077-19W|37-30-34N|077-19-55W|51|50| -KRIE|--|---|Rice Lake Municipal|WI|United States|4|45-29N|091-43W|||347|| -KRIL|--|---|RIFLE GARFIELD COUNTY RGNL|CO|United States|4|39-31N|107-44W|39-31-25N|107-43-30W|1690|1678| -KRIV|72|286|Riverside / March Air Force Base|CA|United States|4|33-54N|117-15W|||469|468| -KRIW|72|672|RIVERTON REGIONAL AIRPORT|WY|United States|4|43-04N|108-27W|43-03-43N|108-27-19W|1684|1664| -KRJO|--|---|San Marcos Automatic Weather Observing / Reporting System|TX|United States|4|29-54N|097-52W|||182|| -KRKD|--|---|Rockland, Knox County Regional Airport|ME|United States|4|44-04N|069-06W|||17|| -KRKP|--|---|ROCKPORT ARANSAS COUNTY AIRPORT |TX|United States|4|28-05N|97-03W|28-05-23N|097-02-45W|7|6| -KRKR|--|---|Poteau, Robert S Kerr Airport|OK|United States|4|35-01-18N|094-37-17W|||138|| -KRKS|72|574|ROCK SPRINGS-SWEETWATER CO|WY|United States|4|41-36N|109-03W|||2060|| -KRLX|--|---|Charleston|WV|United States|4|38-19N|081-43W|||364|| -KRME|--|---|GRIFFISS AIRFIELD|NY|United States|4|43-14N|075-24W|||154|| -KRMG|72|320|ROME R. B. RUSSELL AIRPORT|GA|United States|4|34-21N|085-10W|34-21-09N|085-09-44W|195|193| -KRMN|--|---|Stafford, Stafford Regional Airport|VA|United States|4|38-23-53N|077-27-19W|||65|| -KRMY|--|---|Marshall, Brooks Field Airport|MI|United States|4|42-15-04N|084-57-20W|||287|| -KRND|--|---|Randolph Air Force Base|TX|United States|4|29-32N|098-17W|||232|| -KRNH|--|---|New Richmond, New Richmond Municipal Airport|WI|United States|4|45-08-54N|092-32-17W|||304|| -KRNM|--|---|RAMONA AIRPORT|CA|United States|4|33-02N|116-55W|33-02-27N|116-54-39W|425|427| -KRNO|72|488|RENO/TAHOE INTERNATIONAL AIRPORT|NV|United States|4|39-29N|119-46W|39-29-53N|119-46-24W|1345|1342| -KRNP|--|---|Owosso, Owosso Community Airport|MI|United States|4|42-59-34N|084-08-20W|||224|| -KRNT|--|---|RENTON MUNICIPAL AIRPORT|WA|United States|4|47-30N|122-13W|47-29-50N|122-12-43W|9|21| -KROA|72|411|ROANOKE REGIONAL AIRPORT|VA|United States|4|37-19N|079-58W|37-19-32N|079-58-34W|358|362| -KROC|72|529|GREATER ROCHESTER INTERNATIONAL |NY|United States|4|43-07N|077-41W|43-07-44N|077-40-27W|170|178| -KROG|--|---|Rogers, Rogers Municipal Airport-Carter Field|AR|United States|4|36-22N|094-06W|||414|| -KROS|--|---|Rush City, Rush City Regional Airport|MN|United States|4|45-41-53N|092-57-11W|||281|| -KROW|72|268|ROSWELL INDUSTRIAL AIR CENTR|NM|United States|4|33-18N|104-32W|33-18-25N|104-31-38W|1118|1112| -KROX|--|---|Roseau, Roseau Municipal Airport/Rudy Billberg Field|MN|United States|4|48-51N|095-42W|||323|| -KRPD|--|---|Rice Lake, Rice Lake Regional-Carl's Field Airport|WI|United States|4|45-25-05N|091-46-25W|||337|| -KRPE|--|---|Sabine Pass|TX|United States|4|29-42N|093-57W|||3|| -KRPH|--|---|Graham, Graham Municipal Airport|TX|United States|4|33-06-36N|098-33-19W|||342|| -KRPJ|--|---|Rochelle, Rochelle Municipal-Koritz Field Airport|IL|United States|4|41-53-35N|089-04-42W|||238|| -KRQB|--|---|Big Rapids, Roben-Hood Airport|MI|United States|4|43-43-21N|085-30-15W|||302|| -KRQE|72|276|WINDOW ROCK AIRPORT|AZ|United States|4|35-39N|109-04W|35-39-34N|109-03-31W|2054|2055| -KRQO|--|---|El Reno, El Reno Regional Airport|OK|United States|4|35-28-21N|098-00-20W|||432|| -KRRF|--|---|New Port Richey, Tampa Bay Executive Airport|FL|United States|4|28-11-21N|082-37-33W|28-11-19N|082-37-44W|12|12| -KRRL|--|---|Merrill, Merrill Municipal Airport|WI|United States|4|45-11N|089-42W|||401|| -KRRT|--|---|Warroad, Warroad International Airport-Swede Carlston Field|MN|United States|4|48-56-29N|095-20-54W|||327|| -KRSL|--|---|RUSSELL MUNICIPAL AIRPORT|KS|United States|4|38-52N|98-49W|||568|567| -KRSN|--|---|Ruston, Ruston Regional Airport|LA|United States|4|32-30-52N|092-35-18W|||95|| -KRST|72|644|ROCHESTER INTERNATIONAL AIRPORT |MN|United States|4|43-54N|092-30W|43-54-42N|092-29-30W|401|403| -KRSV|--|---|Robinson, Robinson Municipal Airport|IL|United States|4|39-00-57N|087-38-59W|||141|| -KRSW|--|---|FORT MYERS SW FL INTERNATIONAL AIRPORT |FL|United States|4|26-32N|081-46W|26-32-13N|081-45-32W|9|9| -KRTN|--|---|Raton, Raton Municipal \ Crews Field Airport|NM|United States|4|36-44-31N|104-39-28W|||1935|1939| -KRTX|--|---|Portland NEXRAD|OR|United States|4|45-43N|122-58W|||514|| -KRUE|72|342|RUSSELVILLE MUNICIPAL AIRPORT |AR|United States|4|35-15N|93-06W|35-15-35N|093-05-48W|123|115| -KRUG|--|---|Rugby Municipal Airport|ND|United States|4|48-23-26N|100-01-28W|||472|| -KRUM|72|618|Rumford|ME|United States|4|44-32N|070-32W|||192|205| -KRUQ|--|---|Salisbury, Rowan County Airport|NC|United States|4|35-39N|080-31W|||236|| -KRUT|--|---|Rutland, Rutland-Southern Vermont Regional Airport|VT|United States|4|43-32N|072-57W|||240|| -KRVL|--|---|Reedsville / Mifflin|PA|United States|4|40-41N|077-38W|||250|| -KRVS|--|---|TULSA JONES JR. AIRPORT|OK|United States|4|36-03N|095-59W|36-02-09N|095-59-23W|194|200| -KRWF|--|---|REDWOOD FALLS MUNICIPAL|MN|United States|4|44-33N|95-05W|44-32-35N|095-04-38W|312|311| -KRWI|--|---|ROCKY MOUNT-WILSON AIRPORT|NC|United States|4|35-51N|077-54W|35-51-02N|077-53-54W|49|47| -KRWL|--|---|RAWLINS MUNICIPAL AIRPORT|WY|United States|4|41-48N|107-12W|||2077|| -KRWV|--|---|Caldwell, Caldwell Municipal Airport|TX|United States|4|30-30-55N|096-42-14W|||119|| -KRXE|--|---|REXBURG-MADISON COUNTY AIRPORT |ID|United States|4|43-50N|111-48W|43-49-55N|111-48-20W|1481|1480| -KRYV|--|---|Watertown|WI|United States|4|43-10N|088-43W|||254|| -KRYY|--|---|Marietta, Cobb County-McCollum Field Airport|GA|United States|4|34-00-47N|084-35-55W|||317|| -KRZN|--|---|Siren, Burnett County Airport|WI|United States|4|45-49-22N|092-22-21W|||301|| -KRZZ|--|---|HALIFAX COUNTY AIRPORT|NC|United States|4|36-26N|77-43W|36-26-32N|077-42-37W|78|75| -KS02|--|---|Ship Shoal B224a|LA|United States|4|28-30N|091-18W|||32|| -KS06|--|---|Mullan Aviation Weather Reporting Station|ID|United States|4|47-28N|115-48W|||1011|| -KS14|--|---|Spencer|ID|United States|4|44-21N|112-11W|||1793|| -KS21|--|---|Sunriver|OR|United States|4|43-53N|121-27W|||1266|| -KS25|--|---|Watford City Municipal Airport|ND|United States|4|47-47-48N|103-15-19W|||643|| -KS29|--|---|Salida|CO|United States|4|38-31N|106-01W|||2186|| -KS32|--|---|Rands Airport|KS|United States|4|47-25-22N|098-06-21W|||434|| -KS38|--|---|Burrows Island|WA|United States|4|48-05N|122-06W|||18|| -KS47|--|---|Tillamook, Tillamook Airport|OR|United States|4|45-25-05N|123-48-52W|||11|| -KS53|--|---|Destruction Island|WA|United States|4|47-40N|124-29W|||24|| -KS58|--|---|South Timbalier|LA|United States|4|28-32N|090-35W|||1|| -KS65|--|---|Ship Shoal 198g|LA|United States|4|28-30N|091-12W|||2|| -KS80|--|---|Grangeville |ID|United States|4|45-57N|116-08W|||1009|| -KS88|--|---|Skykomish, Skykomish State Airport|WA|United States|4|47-42N|121-20W|||304|| -KSAC|72|483|SACRAMENTO EXECUTIVE AIRPORT |CA|United States|4|38-30N|121-30W|38-30-50N|121-29-49W|6|11| -KSAD|--|---|SAFFORD MUNICIPAL AIRPORT|AZ|United States|4|32-51N|109-38W|32-51-01N|109-38-16W|968|962| -KSAF|--|---|SANTA FE COUNTY MUNICIPAL|NM|United States|4|35-37N|106-05W|35-37-03N|106-05-03W|1934|1930| -KSAN|72|290|SAN DIEGO INTERNATIONAL \LINDBERGH FLD|CA|United States|4|32-44N|117-11W|32-44-11N|117-11-22W|5|12| -KSAR|--|---|Sparta, Sparta Community-Hunter Field Airport|IL|United States|4|38-08-56N|089-41-55W|||164|| -KSAT|72|253|SAN ANTONIO INTERNATIONAL AIRPORT |TX|United States|4|29-32N|098-28W|29-31-42N|098-28-25W|247|243| -KSAV|72|207|SAVANNAH INTERNATIONAL AIRPORT |GA|United States|4|32-07N|81-12W|32-07-34N|081-11-55W|16|14| -KSAW|--|---|Marquette, Sawyer International Airport|MI|United States|4|46-21-13N|087-23-43W|||372|| -KSAZ|--|---|Staples, Staples Municipal Airport|MN|United States|4|46-22-51N|094-48-24W|||392|| -KSBA|--|---|SANTA BARBARA MUNICIPAL|CA|United States|4|34-26N|119-51W|34-25-49N|119-50-36W|3|3| -KSBD|--|---|Norton Air Force Base / San Bern|CA|United States|4|34-06N|117-14W|||353|| -KSBM|--|---|SHEBOYGAN CO MEMORIAL AIRPORT |WI|United States|4|43-47N|87-51W|43-45-41N|087-51-04W|228|232| -KSBN|72|535|SOUTH BEND REGIONAL AIRPORT|IN|United States|4|41-42N|086-19W|41-42-31N|086-18-52W|244|237| -KSBP|--|---|SAN LUIS OBISPO MC CHESNEY|CA|United States|4|35-14N|120-38W|35-14-19N|120-38-22W|64|59| -KSBS|--|---|Steamboat Springs|CO|United States|4|40-31N|106-52W|||2096|| -KSBY|--|---|SALISBURY-WICOMICO CTY REG|MD|United States|4|38-20N|075-30W|38-20-32N|075-31-00W|16|19| -KSCC|--|---|Deadhorse, Deadhorse Airport|AK|United States|4|70-11-30N|148-28-38W|70-11-53N|148-28-03W|17|23| -KSCF|--|---|South Marsh 268|LA|United States|4|29-06-57N|091-52-16W|||||| -KSCH|--|---|Schenectady Airport|NY|United States|4|42-51N|073-56W|||115|| -KSCK|72|492|STOCKTON METROPOLITAN AIRPORT |CA|United States|4|37-54N|121-14W|37-53-51N|121-15-00W|9|10| -KSDA|--|---|Shenandoah Municipal|IA|United States|4|40-45N|095-25W|||296|| -KSDB|72|383|SANDBERG|CA|United States|4|34-45N|118-43W|34-44-37N|118-43-27W|1379|1377| -KSDF|72|423|STANDIFORD FIELD|KY|United States|4|38-11N|085-44W|38-10-44N|085-43-50W|151|146| -KSDL|--|---|SCOTTSDALE AIRPORT|AZ|United States|4|33-37N|111-55W|33-37-17N|111-54-34W|460|447| -KSDM|--|---|San Diego, Brown Field Municipal Airport|CA|United States|4|32-34-31N|116-59-35W|32-34-10N|116-59-04W|164|159| -KSDY|--|---|Sidney-Richland|MT|United States|4|47-42N|104-12W|||605|| -KSEA|72|793|SEATTLE-TACOMA INTERNATIONAL AIRPORT |WA|United States|4|47-27N|122-19W|47-26-37N|122-18-07W|131|136| -KSEE|--|---|San Diego/El Cajon, Gillespie Field Airport|CA|United States|4|32-49-34N|116-58-20W|||118|| -KSEG|--|---|SELINSGROVE PENN VALLEY AIRPORT |PA|United States|4|40-49N|076-52W|40-48-59N|076-51-25W|137|134| -KSEM|--|---|Craig Field / Selma|AL|United States|4|32-21N|086-59W|||51|| -KSEP|72|260|Stephenville, Clark Field Municipal Airport|TX|United States|4|32-13N|098-11W|32-13N|098-11W|403|402| -KSET|--|---|ST. CHARLES CO SMARTT AIRPORT |MO|United States|4|38-56N|090-26W|38-55-49N|090-26-01W|133|134| -KSEZ|--|---|Sedona Airport|AZ|United States|4|34-51N|111-47W|||1471|| -KSFB|--|---|ORLANDO SANFORD AIRPORT|FL|United States|4|28-47N|081-15W|||17|| -KSFD|72|656|Winner, Bob Wiley Field Airport|SD|United States|4|43-23-26N|099-50-33W|||619|| -KSFF|--|---|FELTS FIELD|WA|United States|4|47-41N|117-19W|47-40-51N|117-19-04W|595|609| -KSFM|--|---|Sanford, Sanford Regional Airport|ME|United States|4|43-24N|070-43W|||74|| -KSFO|72|494|SAN FRANCISCO INTERNATIONAL AIRPORT |CA|United States|4|37-37N|122-22W|37-37-01N|122-22-58W|3|26| -KSFQ|--|---|Suffolk, Suffolk Municipal Airport|VA|United States|4|36-40-56N|076-36-07W|||22|| -KSFY|--|---|Savanna, Tri-Township Airport|IL|United States|4|42-02-45N|090-06-28W|||188|| -KSFZ|--|---|Pawtucket, North Central State Airport|RI|United States|4|41-55N|071-30W|||134|| -KSGF|72|440|SPRINGFIELD-BRANSON NATIONAL|MO|United States|4|37-14N|93-23W|37-14-26N|093-23-28W|386|389| -KSGH|--|---|Springfield, Springfield-Beckley Municipal Airport|OH|United States|4|39-50-25N|083-50-24W|||320|| -KSGJ|--|---|St. Augustine, St. Augustine Airport|FL|United States|4|29-57-33N|081-20-23W|||3|| -KSGR|--|---|SUGARLAND REGIONAL AIRPORT|TX|United States|4|29-37N|095-39W|||25|| -KSGS|--|---|South St. Paul, South St. Paul Municipal-Richard E. Fleming Field Airport|MN|United States|4|44-51-26N|093-01-58W|||250|| -KSGT|--|---|Stuttgart, Stuttgart Municipal Airport|AR|United States|4|34-36N|091-34W|||68|| -KSGU|--|---|St George, St George Municipal Airport|UT|United States|4|37-05N|113-36W|||896|| -KSHD|--|---|Staunton / Shenandoah|VA|United States|4|38-16N|078-54W|||366|| -KSHI|--|---|Ashtabula, Ashtabula County Airport|OH|United States|4|41-46-46N|080-41-48W|41-46-48N|080-42-04W|281|276| -KSHL|--|---|Sheldon|IA|United States|4|43-13N|095-50W|||432|| -KSHN|--|---|SHELTON SANDERSON FIELD|WA|United States|4|47-14N|123-08W|47-14-24N|123-08-25W|82|82| -KSHP|--|---|Sheppard Air Force Base|TX|United States|4|33-58N|098-29W|||314|| -KSHR|72|666|SHERIDAN COUNTY AIRPORT|WY|United States|4|44-46N|106-58W|44-46-26N|106-58-12W|1226|1202| -KSHV|72|248|SHREVEPORT REGIONAL AIRPORT|LA|United States|4|32-27N|93-50W|32-27-02N|093-50-01W|79|80| -KSIB|--|---|Sibley Peak|WY|United States|4|42-27N|105-02W|||1500|| -KSIL|--|---|Slidell Radar Site|LA|United States|4|30-15N|089-46W|||3|| -KSIY|--|---|MONTAGUE SISKIYOU COUNTY|CA|United States|4|41-46N|122-28W|||807|| -KSJC|--|---|SAN JOSE INTERNATIONAL AIRPORT|CA|United States|4|37-22N|121-55W|35-39-56N|121-17-05W|19|25| -KSJN|--|---|ST JOHNS INDUSTRIAL AIRPRK|AZ|United States|4|34-31N|109-23W|34-31-09N|109-22-44W|1747|1745| -KSJT|72|263|MATHIS FIELD|TX|United States|4|31-21N|100-30W|31-21-22N|100-30-10W|584|581| -KSJX|--|---|Beaver Island, Beaver Island Airport|MI|United States|4|45-41-32N|085-33-59W|||204|| -KSKA|--|---|Fairchild Air Force Base|WA|United States|4|47-37N|117-39W|||750|| -KSKC|--|---|Waukesha|WI|United States|4|43-02N|088-14W|||284|| -KSKF|--|---|Kelly Air Force Base|TX|United States|4|29-23N|098-35W|||210|| -KSKX|--|---|Taos, Taos Regional Airport|NM|United States|4|36-27N|105-40W|||2161|| -KSLB|--|---|Storm Lake|IA|United States|4|42-36N|095-14W|||454|| -KSLC|72|572|SALT LAKE CITY INTERNATIONAL AIRPORT |UT|United States|4|40-47N|111-58W|40-46-35N|111-57-31W|1288|1286| -KSLE|72|694|SALEM MCNARY FIELD|OR|United States|4|44-54N|123-00W|44-54-33N|123-00-25W|64|59| -KSLG|--|---|Siloam Springs, Smith Field Airport|AR|United States|4|36-12N|094-29W|||364|| -KSLH|--|---|Cheboygan, Cheboygan County Airport|MI|United States|4|45-39-13N|084-31-09W|||195|| -KSLI|--|---|Los Alamitos U. S. Army Airfield|CA|United States|4|33-47N|118-03W|||11|| -KSLK|--|---|ADIRONDACK REGIONAL AIRPORT|NY|United States|4|44-24N|074-12W|44-22-49N|074-12-14W|507|498| -KSLN|--|---|SALINA MUNICIPAL AIRPORT|KS|United States|4|38-47N|97-39W|38-46-08N|097-38-39W|388|385| -KSLO|72|433|Salem, Salem-Leckrone Airport|IL|United States|4|38-38-34N|088-57-51W|38-39N|088-58W|175|174| -KSLR|--|---|Sulphur Springs, Sulphur Springs Municipal Airport|TX|United States|4|33-09-40N|095-37-16W|||149|| -KSLW|--|---|Smithville / Wooster|OH|United States|4|40-53N|081-50W|||357|| -KSME|--|---|Somerset, Somerset-Pulaski County - J.T. Wilson Field Airport|KY|United States|4|37-03-15N|084-36-54W|||283|| -KSMF|--|---|SACRAMENTO INTERNATIONAL AIRPORT|CA|United States|4|38-42N|121-36W|38-41-30N|121-35-23W|8|6| -KSMN|--|---|Salmon, Lemhi County Airport|ID|United States|4|45-07N|113-53W|||1233|| -KSMO|--|---|SANTA MONICA MUNICIPAL AIRPORT |CA|United States|4|34-01N|118-27W|34-01-10N|118-26-53W|53|57| -KSMP|--|---|STAMPEDE PASS|WA|United States|4|47-17N|121-20W|47-16-36N|121-20-14W|1209|1208| -KSMQ|--|---|SOMERVILLE SOMERSET AIRPORT|NJ|United States|4|40-37N|074-40W|40-37-32N|074-40-08W|32|30| -KSMX|72|394|SANTA MARIA PUBLIC AIRPORT|CA|United States|4|34-54N|120-28W|34-53-57N|120-26-56W|79|74| -KSNA|--|---|SANTA ANA WAYNE ORANGE CTY|CA|United States|4|33-41N|117-52W|33-40-41N|117-52-08W|16|15| -KSNC|--|---|Chester, Chester Airport|CT|United States|4|41-23-02N|072-30-21W|||127|| -KSNK|--|---|Snyder, Winston Field Airport|TX|United States|4|32-41-36N|100-57-01W|||741|| -KSNL|--|---|Shawnee, Shawnee Municipal Airport|OK|United States|4|35-21-26N|096-56-34W|||327|| -KSNP|--|---|St. Paul Island, St. Paul Island Airport|AK|United States|4|57-09-21N|170-13-15W|57-09-25N|170-13-01W|13|7| -KSNS|--|---|SALINAS MUNICIPAL AIRPORT|CA|United States|4|36-40N|121-36W|36-39-37N|121-36-18W|26|30| -KSNT|--|---|Stanley, Stanley Ranger Station|ID|United States|4|44-12-31N|114-56-04W|||1980|| -KSNY|72|561|SIDNEY MUNICIPAL AIRPORT|NE|United States|4|41-06N|102-59W|41-06-10N|102-58-56W|1315|1307| -KSOA|--|---|Sonora, Sonora Municipal Airport|TX|United States|4|30-35-08N|100-38-54W|||652|| -KSOP|--|---|Pinehurst/Southern Pines, Moore County Airport|NC|United States|4|35-14N|079-24W|||141|| -KSOV|--|---|Seldovia, Seldovia Airport|AK|United States|4|59-26-48N|151-42-16W|59-26-48N|151-42-16W|8|10| -KSOW|--|---|Show Low, Show Low Regional Airport|AZ|United States|4|34-15-55N|110-00-20W|||1955|| -KSPA|--|---|Spartanburg Memorial|SC|United States|4|34-55N|081-57W|||246|| -KSPB|--|---|SCAPPOOSE INDUSTRIAL AIRPARK|OR|United States|4|45-46N|122-52W|45-46-35N|122-51-35W|17|14| -KSPD|--|---|SPRINGFIELD COMANCHE NATL|CO|United States|4|37-17N|102-37W|||1335|| -KSPF|--|---|Spearfish / Clyde Ice|SD|United States|4|44-29N|103-47W|||1188|| -KSPG|--|---|ST PETERSBURG WHITTED AIRPORT |FL|United States|4|27-46N|082-38W|27-46-00N|082-37-40W|2|2| -KSPI|--|---|ABRAHAM LINCOLN CAPITAL AIRPORT |IL|United States|4|39-51N|89-41W|39-51-04N|089-40-36W|182|181| -KSPL|--|---|South Padre Island Heliport|TX|United States|4|26-04-14N|097-09-26W|||3|| -KSPR|--|---|Ship Shoal|LA|United States|4|28-35-56N|091-12-23W|||||| -KSPS|72|351|WICHITA FALLS SHEPPARD AFB|TX|United States|4|33-59N|98-30W|33-58-25N|098-30-07W|309|308| -KSPW|--|---|SPENCER MUNICIPAL AIRPORT|IA|United States|4|43-10N|95-13W|43-10-02N|095-11-47W|408|403| -KSQI|--|---|Sterling Rockfalls|IL|United States|4|41-45N|089-40W|||197|| -KSQL|--|---|San Carlos Airport|CA|United States|4|37-31N|122-15W|||1|| -KSRC|--|---|Searcy, Searcy Municipal Airport|AR|United States|4|35-12-43N|091-44-14W|||81|| -KSRE|--|---|Seminole, Seminole Municipal Airport|OK|United States|4|35-16-28N|096-40-30W|||312|| -KSRF|--|---|Hamilton U. S. Army Airfield|CA|United States|4|38-04N|122-30W|||1|| -KSRN|--|---|South Marsh 268A|LA|United States|4|29-07N|91-52W|||0|| -KSRQ|--|---|SARASOTA/BRADENTON INTERNATIONAL .|FL|United States|4|27-24N|082-33W|27-24-09N|082-33-10W|9|18| -KSRR|--|---|Ruidoso Regional|NM|United States|4|33-28N|105-32W|||2076|| -KSSC|74|790|Shaw Air Force Base|SC|United States|4|33-58N|080-29W|33-58N|080-29W|74|73| -KSSF|--|---|SAN ANTONIO STINSON MUNI|TX|United States|4|29-20N|098-28W|29-20-19N|098-28-04W|176|176| -KSSI|--|---|BRUNSWICK MC KINNON AIRPORT |GA|United States|4|31-09N|081-23W|31-09-20N|081-23-13W|6|6| -KSSU|--|---|White Sulphur Sprng|WV|United States|4|37-46N|080-20W|||549|| -KSTC|--|---|ST. CLOUD REGIONAL AIRPORT|MN|United States|4|45-33N|094-03W|||312|| -KSTE|--|---|Stevens Point, Stevens Point Municipal Airport|WI|United States|4|44-32-42N|089-31-49W|||338|| -KSTJ|72|449|ROSECRANS MEMORIAL AIRPORT|MO|United States|4|39-46N|94-55W|39-46-14N|094-54-10W|252|247| -KSTL|72|434|LAMBERT-ST LOUIS INTERNATIONAL AIRPORT |MO|United States|4|38-45N|90-22W|38-45-06N|090-21-07W|184|171| -KSTP|--|---|DOWNTOWN HOLMAN FIELD|MN|United States|4|44-56N|093-03W|44-56-31N|093-03-55W|215|219| -KSTS|--|---|SANTA ROSA SONOMA COUNTY|CA|United States|4|38-30N|122-49W|38-30-16N|122-48-17W|38|39| -KSTT|--|---|CYRIL E. KING INT'L AIRPORT .|VI|United States|4|18-20N|064-59W|18-20-26N|064-58-30W|7|15| -KSTX|--|---|HENRY E. ROHLSEN|VI|United States|4|17-42N|064-48W|17-42-08N|064-47-56W|19|9| -KSTZ|--|---|South Timbalier|United States|4|28-09-35N|090-39-59W|||||| -KSUA|--|---|Stuart, Witham Field Airport|FL|United States|4|27-10-54N|080-13-16W|||6|| -KSUE|--|---|Sturgeon Bay|WI|United States|4|44-51N|087-25W|||221|| -KSUN|--|---|Hailey, Friedman Memorial Airport|ID|United States|4|43-30N|114-18W|||1621|| -KSUS|--|---|SPIRIT OF ST. LOUIS AIRPORT |MO|United States|4|38-39N|090-39W|38-39-45N|090-39-07W|141|141| -KSUT|--|---|Oak Island, Brunswick County Airport|NC|United States|4|33-55-45N|078-04-29W|||8|| -KSUU|74|516|Fairfield / Travis Air Force Base|CA|United States|4|38-16N|121-57W|||19|22|P -KSUW|--|---|Superior, Richard I. Bong Airport|WI|United States|4|46-41-23N|092-05-41W|||205|| -KSUX|72|557|SIOUX GATEWAY AIRPORT|IA|United States|4|42-23N|96-23W|42-24-03N|096-22-39W|335|338| -KSVC|72|272|Silver City / Grant|NM|United States|4|32-38N|108-09W|||1659|| -KSVE|--|---|Susanville Municipal|CA|United States|4|40-23N|120-34W|||1263|| -KSVH|--|---|Statesville, Statesville Municipal Airport|NC|United States|4|35-45-55N|080-57-24W|||294|| -KSVN|--|---|Hunter U. S. Army Airfield |GA|United States|4|32-01N|081-09W|||13|| -KSWD|--|---|Seward, Seward Airport|AK|United States|4|60-07-37N|149-25-07W|60-07-58N|149-25-35W|6|2| -KSWF|--|---|Newburgh / Stewart|NY|United States|4|41-30N|074-06W|||150|| -KSWO|--|---|STILLWATER REGIONAL AIRPORT|OK|United States|4|36-10N|97-05W|36-09-28N|097-05-01W|300|290| -KSWW|--|---|Sweetwater, Avenger Field Airport|TX|United States|4|32-28-02N|100-27-59W|||725|| -KSXT|--|---|SEXTON SUMMIT|OR|United States|4|42-36N|123-22W|42-36-01N|123-21-52W|1171|1170| -KSYN|--|---|Stanton, Stanton Airfield|MN|United States|4|44-28-31N|093-00-58W|||280|| -KSYR|72|519|SYRACUSE HANCOCK INTERNATIONAL AIRPORT |NY|United States|4|43-07N|76-06W|43-06-39N|076-06-38W|125|127| -KSZL|--|---|Whiteman Air Force Base|MO|United States|4|38-44N|093-33W|||265|| -KSZN|--|---|Santa Cruz Island|CA|United States|4|34-01N|119-45W|||10|| -KSZT|--|---|Sandpoint, Sandpoint Airport|ID|United States|4|48-17-58N|116-33-36W|||648|| -KT08|--|---|Tomahawk, Tomahawk Regional Airport|WI|United States|4|45-28-08N|089-48-20W|||453|| -KT18|--|---|Falfurrias, Brooks County Airport|TX|United States|4|27-12-24N|098-07-16W|||34|| -KT46|--|---|South Brazos A70|TX|United States|4|28-01N|095-52W|||23|| -KT49|--|---|Big Spring, Big Spring McMahon-Wrinkle Airport|TX|United States|4|32-12N|101-31W|||784|| -KT53|--|---|Robstown, Nueces County Airport|TX|United States|4|27-46-42N|097-41-25W|||24|| -KT56|--|---|Crockett, Houston County Airport|TX|United States|4|31-18-25N|095-24-13W|||106|| -KT62|--|---|Tooele|UT|United States|4|40-19N|112-18W|||1628|| -KT65|--|---|Weslaco, Mid Valley Airport|TX|United States|4|26-10-39N|097-58-23W|||21|| -KT72|--|---|Hearne, Hearne Municipal Airport|TX|United States|4|30-52-18N|096-37-20W|||87|| -KT82|--|---|Fredericksburg, Gillespie County Airport|TX|United States|4|30-14-37N|098-54-34W|||517|| -KT97|--|---|Port Lavaca, Calhoun County Airport|TX|United States|4|28-39-14N|096-40-52W|||9|| -KTAD|--|---|Trinidad, Perry Stokes Airport|CO|United States|4|37-16N|104-26W|||1756|| -KTAL|--|---|Tanana, Calhoun Memorial Airport|AK|United States|4|65-10-28N|152-06-25W|65-10-29N|152-06-30W|69|72| -KTAN|--|---|TAUNTON MUNICIPAL AIRPORT|MA|United States|4|41-53N|071-01W|41-52-31N|071-01-12W|13|7| -KTAZ|--|---|Taylorville, Taylorville Municipal Airport|IL|United States|4|39-32-03N|089-19-40W|||190|| -KTBN|--|---|Fort Leonard Wood|MO|United States|4|37-44N|092-08W|||353|| -KTBR|--|---|Statesboro, Statesboro-Bulloch County Airport|GA|United States|4|32-28-59N|081-44-14W|||57|| -KTBW|72|210|Tampa Bay Area|FL|United States|4|27-42N|082-24W|27-42N|082-24W|12|13|P -KTCC|--|---|TUCUMCARI MUNICIPAL AIRPORT |NM|United States|4|35-11N|103-36W|35-10-52N|103-36-33W|1239|1235| -KTCL|--|---|TUSCALOOSA REGIONAL AIRPORT|AL|United States|4|33-13N|087-37W|||52|| -KTCM|74|206|Tacoma / McChord Air Force Base|WA|United States|4|47-09N|122-29W|47-09N|122-29W|98|87| -KTCS|72|271|TRUTH OR CONSEQUENCES MUNI|NM|United States|4|33-14N|107-16W|33-14-17N|107-16-08W|1478|1469| -KTDF|--|---|Roxboro, Person County Airport|NC|United States|4|36-17-06N|078-59-03W|||186|| -KTDO|--|---|Toledo-Winlock Memorial|WA|United States|4|46-29N|122-48W|||113|| -KTDZ|--|---|TOLEDO METCALF FIELD|OH|United States|4|41-34N|83-29W|41-33-52N|083-28-34W|190|189| -KTEB|--|---|TETERBORO AIRPORT|NJ|United States|4|40-52N|74-03W|40-51-09N|074-03-19W|3|7| -KTEW|--|---|Mason, Mason Jewett Field Airport|MI|United States|4|42-33-57N|084-25-24W|||280|| -KTEX|--|---|Telluride, Telluride Regional Airport|CO|United States|4|37-57-14N|107-54-31W|||2767|| -KTFX|--|---|Great Falls Nexrad|MT|United States|4|47-28N|111-22W|||1151|| -KTHV|--|---|YORK AIRPORT|PA|United States|4|39-55N|076-53W|39-55-22N|076-52-41W|146|144| -KTIF|--|---|Thedford, Thomas County Airport|NE|United States|4|41-57-43N|100-34-08W|||892|| -KTIK|72|354|Tinker Air Force Base|OK|United States|4|35-25N|097-23W|35-25N|097-23W|394|397| -KTIP|--|---|Rantoul, Rantoul National Aviation Center Airport-Frank Elliott Field|IL|United States|4|40-17-37N|088-08-33W|||225|| -KTIW|--|---|Tacoma, Tacoma Narrows Airport|WA|United States|4|47-16-03N|122-34-34W|47-16-09N|122-34-25W|96|96| -KTIX|--|---|Titusville|FL|United States|4|28-31N|080-48W|||11|| -KTKA|--|---|Talkeetna, Talkeetna Airport|AK|United States|4|62-19-12N|150-05-42W|62-19-13N|150-05-38W|109|107| -KTKC|--|---|Tracy, Tracy Municipal Airport|MN|United States|4|44-14-56N|095-36-26W|||408|| -KTKI|--|---|COLLIN CNTY REGIONAL AIRPORT|TX|United States|4|33-11N|096-35W|33-10-39N|096-35-31W|178|179| -KTKV|--|---|Tomahawk, Tomahawk Regional Airport|WI|United States|4|45-28-08N|089-48-20W|||453|| -KTLH|72|214|TALLAHASSEE REGIONAL AIRPORT |FL|United States|4|30-24N|84-21W|30-23-46N|084-21-20W|25|16| -KTLX|--|---|Oklahoma City Nexrad|OK|United States|4|35-20N|097-17W|||338|| -KTMB|--|---|KENDALL-TAMIAMI EXEC AIRPORT |FL|United States|4|25-39N|080-26W|25-38-50N|080-25-35W|3|2| -KTMH|--|---|20 Mile Hill|WY|United States|4|43-07N|106-20W|||1743|| -KTNB|--|---|Boone, Watauga County Hospital Heliport|NC|United States|4|36-12N|081-39W|||959|| -KTNU|--|---|Newton Municipal|IA|United States|4|41-41N|093-01W|||290|| -KTNX|--|---|Tonopah Test Range|NV|United States|4|37-48N|116-47W|||1691|| -KTOA|--|---|Torrance, Zamperini Field Airport|CA|United States|4|33-48N|118-20W|||31|| -KTOB|--|---|Dodge Center, Dodge Center Airport|MN|United States|4|44-01-05N|092-49-53W|||398|| -KTOI|--|---|TROY MUNICIPAL AIRPORT|AL|United States|4|31-52N|086-01W|31-51-39N|088-00-28W|121|118| -KTOL|72|536|TOLEDO EXPRESS AIRPORT|OH|United States|4|41-35N|083-48W|41-35-33N|083-48-15W|208|210| -KTOP|72|456|TOPEKA BILLARD MUNICIPAL AIRPORT|KS|United States|4|39-04N|95-38W|39-04-21N|095-37-50W|269|268| -KTOR|--|---|TORRINGTON MUNICIPAL AIRPORT|WY|United States|4|42-03N|104-09W|42-03-45N|104-09-31W|1282|1277| -KTPA|72|211|TAMPA INTERNATIONAL AIRPORT |FL|United States|4|27-58N|082-32W|27-58-04N|082-31-33W|8|11| -KTPF|--|---|Tampa, Peter O Knight Airport|FL|United States|4|27-54-56N|082-26-57W|||2|| -KTPH|--|---|TONOPAH AIRPORT|NV|United States|4|38-02N|117-05W|38-03-49N|117-05-44W|1654|1652| -KTPL|--|---|Temple, Draughon-Miller Central Texas Regional Airport|TX|United States|4|31-09N|097-24W|||208|| -KTQE|--|---|TEKAMAH MUNICIPAL AIRPORT|NE|United States|4|41-46N|96-11W|41-46-02N|096-10-29W|313|312| -KTQH|--|---|Tahlequah, Tahlequah Municipal Airport|OK|United States|4|35-55-44N|095-00-16W|||266|| -KTRI|--|---|TRI-CITY REGIONAL AIRPORT|TN|United States|4|36-28N|082-24W|36-28-54N|082-24-26W|463|474| -KTRK|--|---|Truckee-Tahoe|CA|United States|4|39-19N|120-08W|||1798|| -KTRL|--|---|TERRELL MUNICIPAL AIRPORT|TX|United States|4|32-43N|96-16W|32-42-58N|096-16-07W|145|144| -KTRM|--|---|Palm Springs, Jacqueline Cochran Regional Airport|CA|United States|4|33-37-36N|116-09-34W|||-38|| -KTTA|--|---|Sanford, Sanford-Lee County Regional Airport|NC|United States|4|35-34-57N|079-06-05W|||75|| -KTTD|--|---|PORTLAND-TROUTDALE AIRPORT|OR|United States|4|45-33N|122-25W|45-33-03N|122-23-49W|11|14| -KTTF|--|---|Monroe, Custer Airport|MI|United States|4|41-56-24N|083-26-05W|||188|| -KTTN|--|---|TRENTON MERCER COUNTY AIRPORT |NJ|United States|4|40-17N|074-49W|40-16-39N|074-48-58W|65|59| -KTTS|--|---|Titusville, NASA Shuttle Landing Facility|FL|United States|4|28-37N|080-42W|||3|| -KTUL|72|356|TULSA INTERNATIONAL AIRPORT|OK|United States|4|36-12N|95-53W|36-11-32N|095-54-13W|206|207| -KTUP|72|332|TUPELO REGIONAL AIRPORT|MS|United States|4|34-16N|88-46W|34-15-54N|088-45-59W|105|105| -KTUS|72|274|TUCSON INTERNATIONAL AIRPORT |AZ|United States|4|32-08N|110-57W|32-07-28N|110-56-25W|805|786| -KTVC|--|---|CHERRY CAPITAL AIRPORT|MI|United States|4|44-44N|085-34W|44-44-38N|085-35-06W|190|190| -KTVF|--|---|Thief River Falls, Thief River Falls Regional Airport|MN|United States|4|48-04N|096-11W|||340|| -KTVI|--|---|Thomasville|GA|United States|4|30-54-06N|083-52-53W|||80|| -KTVL|--|---|SOUTH LAKE TAHOE AIRPORT|CA|United States|4|38-53N|119-59W|38-53-47N|119-59-50W|1909|1925| -KTVR|--|---|Vicksburg, Vicksburg / Tallulah Regional Airport|LA|United States|4|32-20-53N|091-01-48W|32-21-11N|091-01-29W|26|26| -KTWF|--|---|JOSLIN FLD-MAGIC VALLEY REGL|ID|United States|4|42-29N|114-29W|42-29-03N|114-28-55W|1265|1266| -KTWM|--|---|Two Harbors|MN|United States|4|47-03N|091-45W|||328|| -KTWX|--|---|Topeka NEXRAD|KS|United States|4|39-00N|096-14W|||431|| -KTXK|--|---|TEXARKANA RGNL WEBB FIELD|AR|United States|4|33-27N|093-59W|33-27-21N|093-59-38W|119|111| -KTYR|--|---|TYLER POUNDS FIELDS|TX|United States|4|32-21N|095-24W|32-21- N|095-24- W|166|165| -KTYS|72|326|MCGHEE TYSON AIRPORT|TN|United States|4|35-49N|083-59W|35-49-29N|083-59-10W|299|302| -KTZR|--|---|Columbus, Bolton Field Airport|OH|United States|4|39-54-03N|083-08-14W|||276|| -KU15|--|---|Challis, Challis Airport|ID|United States|4|44-31-22N|114-12-54W|44-31-12N|114-12-54W|1534|1536| -KU16|--|---|Eagle Range|UT|United States|4|41-03N|113-04W|||1292|| -KU17|--|---|Bullfrog Marina|UT|United States|4|37-30N|110-42W|||1110|| -KU24|--|---|Delta|UT|United States|4|39-20N|112-35W|||1414|| -KU28|--|---|Green River Range|UT|United States|4|39-00N|110-10W|||1241|| -KU31|--|---|Austin|NV|United States|4|39-30N|117-05W|||2014|| -KU42|--|---|Salt Lake City, Salt Lake City Municipal 2 Airport|UT|United States|4|40-37-10N|111-59-34W|||1403|| -KU59|--|---|Driggs, Driggs-Reed Memorial Airport|ID|United States|4|43-44-30N|111-05-52W|||1898|| -KU67|74|420|Roosevelt|UT|United States|4|40-18N|109-59W|||1553|1556| -KU71|--|---|Vernal|UT|United States|4|40-28N|109-32W|||1612|| -KU73|--|---|Jerome, Jerome County Airport|ID|United States|4|42-43-39N|114-27-11W|42-43-31N|114-27-15W|1233|1222| -KU78|--|---|Soda Springs / Tigert|ID|United States|4|42-39N|111-35W|||1780|| -KUAO|--|---|AURORA STATE AIRPORT|OR|United States|4|45-15N|122-46W|45-15-03N|122-45-57W|60|59| -KUCA|--|---|GRIFFISS AIRFIELD|NY|United States|4|43-07N|075-23W|43-08-50N|075-22-52W|226|228| -KUCP|--|---|New Castle, New Castle Municipal Airport|PA|United States|4|41-01-31N|080-24-48W|||327|| -KUDG|--|---|Darlington, Darlington County Jetport Airport|SC|United States|4|34-26-57N|079-53-25W|||59|| -KUES|--|---|Waukesha, Waukesha County Airport|WI|United States|4|43-02-28N|088-14-13W|||278|| -KUEX|--|---|Grand Island Nexrad|NE|United States|4|40-19N|098-26W|||626|| -KUGN|--|---|CHICAGO/WAUKEGAN REGIONAL|IL|United States|4|42-25N|087-52W|||222|| -KUIL|72|797|QUILLAYUTE STATE AIRPORT|WA|United States|4|47-56N|124-34W|47-56-03N|124-33-32W|59|54| -KUIN|--|---|QUINCY MUNI. BALDWIN FIELD|IL|United States|4|39-56N|091-12W|||234|| -KUKF|--|---|North Wilkesboro, Wilkes County Airport|NC|United States|4|36-13N|81-05W|||396|| -KUKI|--|---|UKIAH MUNICIPAL AIRPORT|CA|United States|4|39-08N|123-12W|||187|| -KUKL|--|---|Burlington, Coffey County Airport|KS|United States|4|38-18-09N|095-43-30W|||358|| -KUKT|--|---|Quakertown, Quakertown Airport|PA|United States|4|40-26-06N|075-22-54W|||160|| -KULM|--|---|New Ulm, New Ulm Municipal Airport|MN|United States|4|44-19N|094-30W|||308|| -KUNO|--|---|WEST PLAINS MUNICIPAL AIRPORT |MO|United States|4|36-53N|91-54W|36-52-44N|091-54-16W|374|372| -KUNU|--|---|Juneau, Dodge County Airport|WI|United States|4|43-25-36N|088-42-12W|||285|| -KUNV|--|---|State College, University Park Airport|PA|United States|4|40-51N|077-51W|||378|| -KUOX|--|---|Oxford, University-Oxford Airport|MS|United States|4|34-23-04N|089-32-08W|||138|| -KUTA|--|---|Tunica, Tunica Municipal Airport|MS|United States|4|34-40-51N|090-20-47W|||59|| -KUTS|--|---|HUNTSVILLE MUNICIPAL AIRPORT|TX|United States|4|30-45N|95-35W|30-44-34N|095-35-08W|112|104| -KUUU|--|---|NEWPORT STATE AIRPORT|RI|United States|4|41-32N|071-17W|41-31-53N|071-17-00W|52|51| -KUVA|--|---|Uvalde, Garner Field Airport|TX|United States|4|29-12-40N|099-44-36W|||287|| -KUZA|--|---|ROCK HILL-YORK COUNTY AIRPORT |SC|United States|4|34-59N|081-03W|34-59-14N|081-03-36W|204|202| -KVAD|74|781|Moody Air Force Base|GA|United States|4|30-58N|083-12W|||71|71| -KVAF|--|---|Boomvang|TX|United States|4|27-21-13N|094-37-31W|||||| -KVAY|--|---|MT HOLLY SOUTH JERSEY RGNL|NJ|United States|4|39-56N|074-50W|39-56-22N|074-50-38W|16|15| -KVBG|72|393|Lompoc, Vandenberg Air Force Base|CA|United States|4|34-43-46N|120-34-36W|34-44N|120-33W|112|121|P -KVBS|--|---|Sabine 13B|LA|United States|4|29-28-42N|093-38-18W|||||| -KVBT|--|---|Bentonville, Bentonville Municipal Airport/Louise M Thaden Field|AR|United States|4|36-21N|094-13W|||395|| -KVCB|--|---|VACAVILLE NUT TREE AIRPORT|CA|United States|4|38-23N|121-57W|38-22-32N|121-57-31W|35|33| -KVCT|72|255|VICTORIA REGIONAL AIRPORT|TX|United States|4|28-52N|96-56W|28-50-43N|096-55-13W|35|31| -KVCV|--|---|Victorville, Southern California Logistics Airport|CA|United States|4|34-35-50N|117-22-58W|||879|| -KVDF|--|---|Tampa, Vandenberg Airport|FL|United States|4|28-00-50N|082-20-43W|||7|| -KVDI|--|---|Vidalia, Vidalia Municipal Airport|GA|United States|4|32-11-33N|082-22-19W|||84|| -KVDW|--|---|Vedauwoo|WY|United States|4|41-09N|105-24W|||2542|| -KVEL|--|---|VERNAL AIRPORT|UT|United States|4|40-26N|109-30W|40-26-47N|109-30-42W|1609|1604| -KVGT|--|---|NORTH LAS VEGAS|NV|United States|4|36-12N|115-11W|||671|| -KVIH|--|---|ROLLA/VICHY ROLLA NATIONAL|MO|United States|4|38-08N|91-46W|38-07-56N|091-45-54W|350|333| -KVIS|--|---|Visalia, Visalia Municipal Airport|CA|United States|4|36-19N|119-24W|||90|| -KVJI|--|---|Abingdon|VA|United States|4|36-41N|082-02W|||631|| -KVKS|--|---|Vicksburg Municipal|MS|United States|4|32-14N|090-56W|||32|| -KVLD|--|---|VALDOSTA REGIONAL AIRPORT|GA|United States|4|30-47N|083-16W|||62|| -KVLG|--|---|The Villages|FL|United States|4|28-58N|081-58W|||27|| -KVLL|--|---|Troy, Oakland/Troy Airport|MI|United States|4|42-32-34N|083-10-40W|||222|| -KVNP|--|---|Vermillion 26|LA|United States|4|29-28-00N|092-22-07W|||||| -KVNY|--|---|VAN NUYS AIRPORT|CA|United States|4|34-13N|118-29W|34-12-29N|118-29-27W|244|245| -KVOK|--|---|Volk / Camp Douglas|WI|United States|4|43-56N|090-16W|||277|| -KVPC|--|---|CARTERSVILLE AIRPORT|GA|United States|4|34-08N|084-51W|34-07-22N|084-51-02W|233|222| -KVPS|72|221|Valparaiso / Eglin Air Force Base|FL|United States|4|30-29N|086-31W|30-29N|086-31W|26|29|P -KVPZ|--|---|VALPARAISO PORTER CO MUNI|IN|United States|4|41-27N|087-00W|41-26-58N|087-00-33W|235|231| -KVQN|--|---|Volens|VA|United States|4|36-57N|078-59W|||185|| -KVQQ|--|---|Jacksonville, Cecil Field Airport|FL|United States|4|30-13-07N|081-52-36W|||25|| -KVRB|--|---|VERO BEACH MUNICIPAL AIRPORT |FL|United States|4|27-39N|080-25W|27-39-05N|080-25-04W|7|10| -KVRX|--|---|Vermillion Area|LA|United States|4|28-35N|092-27W|||1|| -KVSF|--|---|HARTNESS STATE AIRPORT|VT|United States|4|43-21N|72-31W|43-20-34N|072-31-19W|176|175| -KVTA|--|---|NEWARK HEATH AIRPORT|OH|United States|4|40-01N|082-28W|40-01-25N|082-27-49W|269|268| -KVTI|--|---|Vinton, Vinton Veterans Memorial Airpark Airport|IA|United States|4|42-13-07N|092-01-33W|||258|| -KVTN|72|567|MILLER FIELD - VALENTINE, NE|NE|United States|4|42-52N|100-33W|42-51-41N|100-32-56W|789|788| -KVTP|--|---|La Veta Mountain, La Veta Pass|CO|United States|4|37-30-04N|105-10-01W|||3114|| -KVTX|--|---|Los Angeles Nexrad|CA|United States|4|34-25N|119-11W|||856|| -KVUJ|--|---|Albemarle, Stanly County Airport|NC|United States|4|35-25-00N|080-09-03W|||186|| -KVUO|--|---|PEARSON AIRFIELD|WA|United States|4|45-37N|122-39W|||8|| -KVUW|--|---|Eugene Island|LA|United States|4|28-15N|091-50W|||1|| -KVVG|--|---|The Villages|FL|United States|4|28-58N|081-58W|||27|| -KVVV|--|---|Ortonville, Ortonville Muncipal-Martinson Field Airport|MN|United States|4|45-18-20N|096-25-28W|||335|| -KVWU|--|---|Waskish, Waskish Municipal Airport|MN|United States|4|48-09-15N|094-31-01W|||360|| -KVYS|--|---|Peru, Illinois Valley Regional-Walter A Duncan Field Airport|IL|United States|4|41-21-07N|089-09-11W|||199|| -KW08|--|---|Weirwood / Kellam Field|VA|United States|4|37-28N|075-53W|||12|| -KW11|--|---|Menomonie, Menomonie Municipal Airport-Score Field|WI|United States|4|44-53-32N|091-52-04W|||273|| -KW22|--|---|Buckhannon, Upshur County Regional Airport|WV|United States|4|39-00N|080-16W|||498|| -KW30|74|595|Ocean City|MD|United States|4|38-20N|075-05W|||4|4| -KW39|--|---|Norfolk / Chesapeak|VA|United States|4|36-54N|075-43W|||23|| -KW44|--|---|Asheboro, Asheboro Municipal Airport|NC|United States|4|35-39-14N|079-53-42W|||205|| -KW45|--|---|Luray Caverns Airport|VA|United States|4|38-40-01N|078-30-02W|||274|| -KW51|--|---|Cape Charles Coast Guard Station|VA|United States|4|37-15N|076-00W|||2|| -KW60|--|---|West Cameron 560|LA|United States|4|28-09N|093-21W|||0|| -KW63|--|---|Clarksville / Marks|VA|United States|4|36-36N|078-34W|||128|| -KW71|--|---|Smith Point / Sunnybank|VA|United States|4|37-53N|076-11W|||1|| -KW76|--|---|West Cameron B522|LA|United States|4|28-23N|093-30W|||29|| -KW77|--|---|Sanford, Sanford-Lee County Brick Field Airport|NC|United States|4|35-26N|079-11W|||131|| -KW99|--|---|Petersburg, Grant County Airport|WV|United States|4|38-59N|079-08W|||293|| -KWAL|72|402|WALLOPS FLIGHT FAC AIRPORT |VA|United States|4|37-56N|075-28W|37-56-26N|075-28-01W|12|14| -KWDD|71|273|Belle River||Canada|4|42-18N|082-42W|||184|| -KWDG|--|---|Enid, Enid Woodring Regional Airport|OK|United States|4|36-22-45N|097-47-28W|||356|| -KWDR|--|---|Winder, Winder-Barrow Airport|GA|United States|4|33-58-56N|083-40-05W|||287|| -KWEY|--|---|West Yellowstone|MT|United States|4|44-39N|111-06W|||2031|| -KWHP|--|---|Los Angeles, Whiteman Airport|CA|United States|4|34-15N|118-24W|||306|| -KWJF|--|---|LANCASTER FOX AIRFIELD|CA|United States|4|34-44N|118-13W|||715|| -KWLD|--|---|STROTHER FIELD|KS|United States|4|37-10N|97-02W|37-10-11N|097-01-59W|354|350| -KWMC|72|583|WINNEMUCCA MUNICIPAL AIRPORT|NV|United States|4|40-54N|117-48W|40-54-18N|117-48-24W|1312|1310| -KWRB|--|---|Warner Robins Air Force Base|GA|United States|4|32-38N|083-36W|||90|| -KWRI|--|---|Mcguire Air Force Base|NJ|United States|4|40-01N|074-36W|||41|| -KWRL|--|---|WORLAND MUNICIPAL AIRPORT|WY|United States|4|43-58N|107-57W|43-58-22N|107-57-02W|1288|1271| -KWST|--|---|WESTERLY STATE AIRPORT|RI|United States|4|41-21N|071-48W|41-21-02N|071-48-24W|25|21| -KWTR|--|---|Whitaker|WY|United States|4|41-41N|104-87W|||1888|| -KWVI|--|---|WATSONVILLE MUNICIPAL AIRPORT |CA|United States|4|36-56N|121-47W|36-56-03N|121-47-12W|49|43| -KWVL|--|---|Waterville, Waterville Robert LaFleur Airport|ME|United States|4|44-32N|069-41W|||102|| -KWWD|--|---|Wildwood, Cape May County Airport|NJ|United States|4|39-01N|074-55W|||7|| -KWWR|74|641|Woodward, West Woodward Airport|OK|United States|4|36-26-12N|099-31-16W|36-26N|099-32W|667|667| -KWYS|--|---|West Yellowstone|MT|United States|4|44-41N|111-07W|||2025|| -KX21|--|---|Titusville, Arthur Dunn Air Park|FL|United States|4|28-37-20N|080-50-08W|||9|| -KX53|--|---|Clewiston|FL|United States|4|26-45N|080-57W|||6|| -KX68|--|---|Titusville, NASA Shuttle Landing Facility|FL|United States|4|28-37N|080-42W|||3|| -KX80|--|---|Jupiter Inlet Coast Guard Station|FL|United States|4|27-02N|080-07W|||1|| -KX81|--|---|Lake Worth Inlet|FL|United States|4|26-46N|080-03W|||1|| -KX82|--|---|Fort Pierce Coast Guard Station|FL|United States|4|27-28N|080-18W|||1|| -KX84|--|---|Islamorada Coast Guard Station|FL|United States|4|24-57N|080-35W|||1|| -KX86|--|---|Fowey Rocks Coast Guard Station|FL|United States|4|25-35N|080-06W|||1|| -KX87|--|---|Miami Beach Coast Guard Station|FL|United States|4|25-46N|080-08W|||1|| -KX88|--|---|Marathon Coast Guard Station|FL|United States|4|24-43N|081-07W|||1|| -KX89|--|---|Ft. Myers Beach Coast Guard Station|FL|United States|4|26-27N|081-57W|||1|| -KX90|--|---|Venice Long Range Navigation|FL|United States|4|27-05N|082-27W|||1|| -KX91|--|---|Egmont Key Coast Guard Station|FL|United States|4|27-36N|082-46W|||1|| -KXBP|--|---|Bridgeport, Bridgeport Municipal Airport|TX|United States|4|33-10-31N|097-49-42W|||260|| -KXCN|--|---|Green Canyon 184|LA|United States|4|27-46N|091-31W|||0|| -KXMR|74|794|Cocoa Beach, Cape Canaveral Air Force Station Skid Strip|FL|United States|4|28-28N|080-34W|28-28N|080-33W|3|3| -KXNA|--|---|NORTHWEST ARKANSAS REGIONAL|AR|United States|4|36-17N|94-18W|||392|| -KXVG|--|---|Longville, Longville Municipal Airport|MN|United States|4|46-59-25N|094-12-14W|||407|| -KXVW|--|---|Vandenberg Range|CA|United States|4|34-43N|120-34W|||100|| -KY12|--|---|Airlake|MN|United States|4|44-38N|093-14W|||292|| -KY15|--|---|Cheboygan, Cheboygan County Airport|MI|United States|4|45-39-13N|084-31-09W|||195|| -KY19|--|---|Mandan Municipal Airport|ND|United States|4|46-46-05N|100-53-38W|||592|| -KY26|--|---|Mobridge|SD|United States|4|45-32N|100-26W|||508|| -KY39|--|---|Olivia, Olivia Regional Airport|MN|United States|4|44-46-43N|095-01-58W|||328|| -KY50|--|---|Wautoma, Wautoma Municipal Airport|WI|United States|4|44-02-29N|089-18-16W|||262|| -KY51|--|---|Viroqua Municipal Airport|WI|United States|4|43-34-53N|90-53-59W|||390|| -KY63|--|---|Elbow Lake Municipal, Pride of the Prairie|MN|United States|4|45-59N|95-59W|||367|| -KY68|--|---|Tracy, Tracy Municipal Airport|MN|United States|4|44-14-56N|095-36-26W|||408|| -KYAK|--|---|Yakutat, Yakutat Airport|AK|United States|4|59-30-37N|139-39-46W|59-30-48N|139-40-15W|10|10| -KYIP|--|---|WILLOW RUN AIRPORT|MI|United States|4|42-14N|083-32W|42-14-05N|083-31-18W|218|215| -KYKM|72|781|YAKIMA AIR TERMINAL|WA|United States|4|46-34N|120-32W|46-34-14N|120-32-27W|334|324| -KYKN|--|---|Yankton, Chan Gurney Municipal Airport|SD|United States|4|42-55N|097-23W|||398|| -KYNG|72|525|YOUNGSTOWN-WARREN REG AIRPRT|OH|United States|4|41-15N|080-40W|41-15-48N|080-40-25W|365|360| -KYUK|--|---|YUKON RANGE R-2205|AK|UNITED STATES|4|64-43N|146-31W|||536|| -KYUM|72|280|Yuma / Yuma International|AZ|United States|4|32-39N|114-36W|32-52N|114-20W|65|63|P -KZAB|--|---|Albuquerque Radar Site|NM|United States|4|35-10N|106-34W|||1621|| -KZLC|--|---|Salt Lake City|UT|United States|4|40-47N|111-57W|||1288|| -KZSE|--|---|Auburn|WA|United States|4|47-17N|122-11W|||99|| -KZZV|--|---|ZANESVILLE MUNICIPAL AIRPORT |OH|United States|4|39-57N|81-54W|39-56-50N|081-53-32W|274|268| -LATI|13|615|Tirana||Albania|6|41-20N|019-47E|41-20N|019-47E|89|90|P -LBBG|15|655|Burgas||Bulgaria|6|42-29N|027-29E|||16|28|P -LBGO|--|---|Gorna Orechovista||Bulgaria|6|43-09N|025-36E||||| -LBPD|15|625|Plovdiv||Bulgaria|6|42-08N|024-45E|||179|185|P -LBRS|15|535|Rousse||Bulgaria|6|43-51N|025-57E|||37|45|P -LBSF|15|614|Sofia Observ. ||Bulgaria|6|42-39N|023-23E|42-39N|023-23E|586|595|P -LBWN|15|552|Varna||Bulgaria|6|43-12N|027-55E|||41|43|P -LCEN|--|---|Ercan||Cyprus|6|35-09N|033-30E|||91|| -LCLK|17|609|Larnaca Airport||Cyprus|6|34-53N|033-38E|34-53N|033-38E|2|2|P -LCNC|17|607|Athalassa||Cyprus|6|35-09N|033-24E|35-09N|033-24E|162|161| -LCPH|17|600|Paphos Airport||Cyprus|6|34-43N|032-29E|34-43N|032-29E|11|8|P -LCRA|17|601|Akrotiri||Cyprus|6|34-35N|032-59E|34-35N|032-59E|23|0| -LDDD|14|240|Zagreb / Maksimir||Croatia|6|45-49N|016-02E|45-49N|016-02E|123|128| -LDDU|14|474|Dubrovnik / Cilipi||Croatia|6|42-34N|018-16E|||157|165| -LDLO|--|---|Losinj Island||Croatia|6|44-33-57N|014-23-35E|||45|| -LDOC|--|---|Cepin||Croatia||45-31N|018-33E|||72|| -LDOR|14|370|Slavonski Brod||Croatia|6|45-10N|018-00E|45-10N|018-00E|88|89| -LDOS|14|280|Osijek / Cepin||Croatia|6|45-27N|018-48E|||88|| -LDPL|14|307|Pula Aerodrome||Croatia|6|45-54N|013-55E|||63|63| -LDRI|13|116|Rijeka / Omisalj||Croatia|6|45-13N|014-35E|||85|| -LDSB|--|---|Brac||Croatia|6|43-17-09N|016-40-47E|||541|| -LDSH|14|447|Hvar||Croatia|6|43-10N|016-27E|||20|25| -LDSP|14|444|Split / Resnik||Croatia|6|43-32N|016-18E|||19|21| -LDVA|14|246|Varazdin||Croatia|6|46-18N|016-23E|||167|168| -LDZA|14|241|Zagreb / Pleso||Croatia|6|45-44N|016-04E|||106|107| -LDZD|14|431|Zadar / Zemunik||Croatia|6|44-06N|015-21E|||82|| -LEAB|08|280|Albacete / Los Llanos||Spain|6|38-57N|001-51W|38-57N|001-51W|702|704|P -LEAL|08|360|Alicante / El Altet||Spain|6|38-17N|000-33W|||43|31|P -LEAM|08|487|Almeria / Aeropuerto||Spain|6|36-51N|002-23W|36-51N|002-23W|15|21|P -LEAS|08|011|Asturias / Aviles||Spain|6|43-33N|006-02W|||127|130| -LEBA|08|410|Cordoba / Aeropuerto||Spain|6|37-51N|004-51W|||90|92|P -LEBB|08|025|Bilbao / Sondica||Spain|6|43-18N|002-56W|||42|37|P -LEBG|08|075|Burgos / Villafria||Spain|6|42-22N|003-38W|||894|891|P -LEBL|08|181|Barcelona / Aeropuerto||Spain|6|41-17N|002-04E|41-17N|002-04E|4|6|P -LEBZ|08|330|Badajoz / Talavera La Real||Spain|6|38-53N|006-49W|38-53N|006-49W|185|192|P -LECH|08|233|Calamocha||Spain|6|40-56N|001-18W|||890|889| -LECO|08|002|La Coruna / Alvedro||Spain|6|43-18N|008-23W|43-18N|008-23W|97|103| -LECV|08|219|Madri-Colmenar||Spain|6|40-39N|003-44W||||| -LEGA|--|---|Granada / Armilla||Spain|6|37-08N|003-38-08W|||700|| -LEGE|08|184|Gerona / Costa Brava||Spain|6|41-54N|002-46E|||143|129| -LEGR|08|419|Granada / Aeropuerto||Spain|6|37-11N|003-47W|||567|570|P -LEGT|08|224|Madrid / Getafe||Spain|6|40-18N|003-43W|||620|617| -LEHI|08|335|Hinojosa Del Duque||Spain|6|38-31N|005-07W|||540|540| -LEIB|08|373|Ibiza / Es Codola||Spain|6|38-52N|001-23E|||7|12|P -LEJR|08|451|Jerez De La Fronteraaeropuerto||Spain|6|36-45N|006-04W|||27|28|P -LELC|08|433|Murcia / San Javier||Spain|6|37-47N|000-48W|37-47N|000-48W|5|3|P -LELL|--|---|Sabadell||Spain|6|41-31N|002-06E|||250|| -LELN|08|055|Leon / Virgen Del Camino||Spain|6|42-35N|005-39W|42-35N|005-39W|926|914|P -LELO|08|084|Logrono / Agoncillo||Spain|6|42-27N|002-20W|42-27N|002-20W|353|363|P -LEMD|08|221|Madrid / Barajas||Spain|6|40-27N|003-33W|40-30N|003-35W|609|582|P -LEMG|08|482|Malaga / Aeropuerto||Spain|6|36-40N|004-29W|36-40N|004-29W|16|7|P -LEMH|08|314|Menorca / Mahon||Spain|6|39-52N|004-14E|39-52N|004-14E|87|82|P -LEMO|08|397|Moron De La Frontera||Spain|6|37-09N|005-37W|||87|88| -LEPA|08|306|Palma De Mallorca / Son San Juan||Spain|6|39-33N|002-44E|||4|8|P -LEPP|08|085|Pamplona / Noain||Spain|6|42-46N|001-38W|||459|453| -LERI|08|429|Murcia / Alcantarilla||Spain|6|37-57N|001-14W|||75|75| -LERS|08|175|Reus / Aeropuerto||Spain|6|41-09N|001-10E|||71|76| -LERT|08|449|Rota||Spain|6|36-39N|006-21W|36-39N|006-21W|26|26| -LESA|08|202|Salamanca / Matacan||Spain|6|40-57N|005-30W|40-57N|005-30W|793|795|P -LESO|08|029|San Sebastian / Fuenterrabia||Spain|6|43-21N|001-48W|||5|8| -LEST|08|042|Santiago / Labacolla||Spain|6|42-54N|008-26W|||370|367|P -LETO|08|227|Madrid / Torrejon||Spain|6|40-29N|003-27W|||607|611| -LEVC|08|284|Valencia / Aeropuerto||Spain|6|39-30N|000-28W|39-30N|000-28W|69|62|P -LEVD|08|140|Valladolid / Villanubla||Spain|6|41-43N|004-51W|41-43N|004-51W|849|846|P -LEVS|08|223|Madrid / Cuatro Vientos||Spain|6|40-23N|003-47W|||690|687| -LEVT|08|080|Vitoria||Spain|6|42-53N|002-43W|||513|510| -LEVX|08|045|Vigo / Peinador||Spain|6|42-13N|008-38W|||264|255|P -LEXJ|08|021|Santander / Parayas||Spain|6|43-26N|003-49W|||6|9| -LEZA|--|---|Zaragoza United States Air Force Operated Base In Foreign Country ||Spain|6|41-40N|001-03W|||263|| -LEZG|08|160|Zaragoza / Aeropuerto||Spain|6|41-40N|001-01W|41-40N|001-01W|263|258|P -LEZL|08|391|Sevilla / San Pablo||Spain|6|37-25N|005-54W|37-25N|005-54W|34|31|P -LFAT|07|003|Le Touquet||France|6|50-31N|001-37E|||10|14|P -LFBA|07|524|Agen||France|6|44-11N|000-36E|||61|60|P -LFBC|07|502|Cazaux||France|6|44-32N|001-08W|44-32N|001-08W|25|33|P -LFBD|07|510|Bordeaux / Merignac||France|6|44-50N|000-42W|44-50N|000-42W|49|61|P -LFBE|07|530|Bergerac||France|6|44-49N|000-31E|||51|52|P -LFBF|07|631|Toulouse / Francazal||France|6|43-32N|001-22E|||164|166|P -LFBG|07|412|Cognac||France|6|45-40N|000-19W|45-40N|000-19W|30|31|P -LFBH|07|315|La Rochelle||France|6|46-09N|001-09W|||4|10|P -LFBI|07|335|Poitiers||France|6|46-35N|000-19E|46-35N|000-19E|129|120|P -LFBK|--|---|Montlucon / Gueret||France|6|46-13N|002-22E|||415|| -LFBL|07|434|Limoges||France|6|45-52N|001-11E|45-52N|001-11E|396|402|P -LFBM|07|607|Mont-De-Marsan||France|6|43-55N|000-30W|43-55N|000-30W|62|63|P -LFBN|07|330|Niort||France|6|46-19N|000-24W|||61|61|P -LFBO|07|630|Toulouse / Blagnac||France|6|43-38N|001-22E|43-38N|001-22E|152|153|P -LFBP|07|610|Pau||France|6|43-23N|000-25W|||188|185|P -LFBS|07|503|Biscarosse||France|6|44-26N|001-15W|44-26N|001-15W|33|39|P -LFBT|07|621|Tarbes Ossun Lourdes||France|6|43-11N|000-00W|||379|363|P -LFBV|07|438|Brive||France|6|45-09N|001-28E|||111|117|P -LFBX|07|428|Perigueux||France|6|45-12N|000-49E|||100|97| -LFBY|07|603|Dax||France|6|43-41N|001-04W|43-41N|001-04W|32|32|P -LFBZ|07|602|Biarritz||France|6|43-28N|001-32W|43-28N|001-32W|75|71|P -LFCG|07|627|St-Girons||France|6|43-00N|001-06E|43-00N|001-06E|414|412|P -LFCI|07|632|Albi||France|6|43-55N|002-07E|||172|178|P -LFCR|07|552|Rodez||France|6|44-24N|002-29E|||581|580| -LFDH|07|622|Auch||France|6|43-41N|000-36E|||125|128|P -LFFS|--|---|Suippes Range Met ||France|6|49-09N|004-32E|||199|| -LFGJ|--|---|Dole Tavaux||France|6|47-02-34N|005-26-06E|||196|| -LFHP|07|471|Le Puy||France|6|45-05N|003-46E|||832|833|P -LFIG|07|555|Cassagnes-Begonhes||France|6|44-11N|002-31E|||1020|| -LFJL|07|093|Metz-Nancy-Lorraine||France|6|48-59N|006-15E|||264|| -LFKB|07|790|Bastia||France|6|42-33N|009-29E|42-33N|009-29E|8|12|P -LFKC|07|754|Calvi||France|6|42-32N|008-48E|||64|58|P -LFKF|07|780|Figari||France|6|41-30N|009-06E|||26|23|P -LFKJ|07|761|Ajaccio||France|6|41-55N|008-48E|41-55N|008-48E|6|9|P -LFKS|07|765|Solenzara||France|6|41-55N|009-24E|41-55N|009-24E|8|22|P -LFLA|07|265|Auxerre||France|6|47-48N|003-33E|47-48N|003-33E|207|212|P -LFLB|07|491|Chambery / Aix-Les-Bains||France|6|45-39N|005-53E|||235|239|P -LFLC|07|460|Clermont-Ferrand||France|6|45-47N|003-10E|45-47N|003-10E|332|330|P -LFLD|07|255|Bourges||France|6|47-04N|002-22E|47-04N|002-22E|161|166|P -LFLL|07|481|Lyon / Satolas||France|6|45-44N|005-05E|45-44N|005-05E|248|240|P -LFLM|07|385|Macon||France|6|46-18N|004-48E|46-18N|004-48E|221|217|P -LFLN|07|379|Saint-Yan||France|6|46-25N|004-01E|||242|244|P -LFLQ|07|577|Montelimar||France|6|44-35N|004-44E|44-35N|004-44E|73|74|P -LFLS|07|486|Grenoble / St. Geoirs||France|6|45-22N|005-20E|||384|386|P -LFLV|07|374|Vichy||France|6|46-10N|003-24E|||249|251|P -LFLW|07|549|Aurillac||France|6|44-54N|002-25E|||640|639|P -LFLX|07|354|Chateauroux||France|6|46-51N|001-43E|||160|157|P -LFLY|07|480|Lyon / Bron||France|6|45-43N|004-57E|45-43N|004-57E|200|201|P -LFMA|07|649|Aix Les Milles||France|6|43-30N|005-22E|||111|111|P -LFMC|07|675|Le Luc||France|6|43-23N|006-23E|||80|78|P -LFMD|07|684|Cannes||France|6|43-33N|006-57E|||3|9|P -LFME|07|645|Nimes / Courbessac||France|6|43-52N|004-24E|43-52N|004-24E|60|62|P -LFMH|07|475|St-Etienne Boutheon||France|6|45-32N|004-18E|||404|402|P -LFMI|07|647|Istres||France|6|43-31N|004-56E|||23|24|P -LFMK|07|635|Carcassonne||France|6|43-13N|002-19E|43-13N|002-19E|130|130|P -LFML|07|650|Marseille / Marignane||France|6|43-27N|005-14E|43-27N|005-13E|6|36|P -LFMN|07|690|Nice||France|6|43-39N|007-12E|43-39N|007-12E|4|10|P -LFMO|07|579|Orange||France|6|44-08N|004-50E|||60|55|P -LFMP|07|747|Perpignan||France|6|42-44N|002-52E|42-44N|002-52E|43|48|P -LFMT|07|643|Montpellier||France|6|43-35N|003-58E|||5|6|P -LFMU|--|---|Beziers / Vias||France|6|43-19N|003-21E|||17|| -LFMX|07|588|St-Auban-Sur-Durance||France|6|44-04N|006-00E|44-04N|006-00E|460|461|P -LFMY|07|648|Salon||France|6|43-36N|005-06E|||59|60|P -LFNB|--|---|Mende / Brenoux||France|6|44-30N|003-32E|||1024|| -LFOA|--|---|Avord||France|6|47-03-12N|002-37-57E|||177|| -LFOB|07|055|Beauvais||France|6|49-28N|002-07E|||109|111|P -LFOC|07|140|Chateaudun||France|6|48-03N|001-23E|||134|127|P -LFOE|07|038|Evreux||France|6|49-01N|001-13E|||141|146|P -LFOF|07|139|Alencon||France|6|48-27N|000-07E|48-27N|000-07E|144|141|P -LFOH|07|028|La Heve||France|6|49-31N|000-04E|||100|103|P -LFOI|07|005|Abbeville||France|6|50-08N|001-50E|50-08N|001-50E|74|77|P -LFOJ|07|249|Orleans||France|6|47-59N|001-45E|47-59N|001-45E|126|125|P -LFOK|--|---|Chalons-Vatry||France|6|48-46-34N|004-11-04E|||179|| -LFOP|07|037|Rouen||France|6|49-23N|001-11E|49-23N|001-11E|157|157|P -LFOR|07|143|Chartres||France|6|48-28N|001-31E|||155|156|P -LFOS|07|033|Vittefleur / St. Vale||France|6|49-50N|000-39E|||83|| -LFOT|07|240|Tours||France|6|47-27N|000-43E|47-27N|000-43E|108|112|P -LFOW|07|061|Saint-Quentin||France|6|49-49N|003-12E|49-49N|003-12E|98|101|P -LFPB|07|150|Paris / Le Bourget||France|6|48-58N|002-27E|||66|65|P -LFPC|07|057|Creil Fafb ||France|6|49-15N|002-31E|||88|| -LFPG|07|157|Paris-Aeroport Charles De Gaulle||France|6|49-01N|002-32E|||118|109|P -LFPM|07|153|Melun||France|6|48-37N|002-41E|||95|92|P -LFPN|07|146|Toussus Le Noble||France|6|48-46N|001-06E|||164|161|P -LFPO|07|149|Paris-Orly||France|6|48-44N|002-24E|48-44N|002-24E|89|96|P -LFPV|07|147|Villacoublay||France|6|48-46N|002-12E|||177|179|P -LFPW|--|---|Paris Met Center||France|6|48-50N|002-20E|||75|| -LFQB|07|168|Troyes||France|6|48-20N|004-01E|||118|118|P -LFQG|07|260|Nevers||France|6|47-00N|003-06E|||180|181|P -LFQH|07|276|Chatillon-Sur-Seine||France|6|47-51N|004-33E|||264|| -LFQI|07|017|Cambrai||France|6|50-13N|003-09E|||78|77|P -LFQQ|07|015|Lille||France|6|50-34N|003-06E|50-34N|003-06E|48|52|P -LFQV|07|075|Charleville||France|6|49-47N|004-38E|||149|150|P -LFRA|07|230|Angers||France|6|47-30N|000-34W|||57|58|P -LFRB|07|110|Brest||France|6|48-27N|004-25W|48-27N|004-25W|99|103|P -LFRC|07|024|Cherbourg / Maupertus||France|6|49-39N|001-28W|49-39N|001-28W|138|139| -LFRD|07|125|Dinard||France|6|48-35N|002-04W|||65|60| -LFRH|07|205|Lann Bihoue||France|6|47-46N|003-27W|||52|44|P -LFRI|07|306|La Roche-Sur-Yon||France|6|46-42N|001-23W|||90|91|P -LFRJ|07|106|Landivisiau||France|6|48-31N|004-09W|||106|115|P -LFRK|07|027|Caen||France|6|49-11N|000-27W|||78|67|P -LFRL|07|109|Lanveoc Poulmic||France|6|48-17N|004-26W|||87|82|P -LFRM|07|235|Le Mans||France|6|47-56N|000-12E|||59|52|P -LFRN|07|130|Rennes||France|6|48-04N|001-44W|48-04N|001-44W|37|37|P -LFRO|--|---|Lannion / Servel||France|6|48-45N|003-28W|||89|| -LFRQ|07|201|Quimper||France|6|47-58N|004-10W|||92|94|P -LFRS|07|222|Nantes||France|6|47-10N|001-36W|47-10N|001-36W|27|27|P -LFRT|07|120|Saint-Brieuc||France|6|48-32N|002-51W|||138|136|P -LFRU|--|---|Morlaix / Ploujean||France|6|48-36N|003-49W|||86|| -LFRZ|07|217|St-Nazaire||France|6|47-19N|002-10W|||3|4|P -LFSA|07|288|Besancon||France|6|47-15N|005-59E|||307|309|P -LFSB|07|299|Bale-Mulhouse||France|6|47-36N|007-31E|||270|271|P -LFSC|07|197|Colmar||France|6|47-55N|007-24E|||211|217|P -LFSD|07|280|Dijon||France|6|47-16N|005-05E|47-16N|005-05E|222|227|P -LFSF|07|090|Metz / Frescaty||France|6|49-05N|006-08E|||190|191|P -LFSI|07|169|St-Dizier||France|6|48-38N|004-54E|||139|140|P -LFSL|07|179|Toul / Rosieres||France|6|48-47N|005-29E|||285|298|P -LFSN|07|180|Nancy / Essey||France|6|48-41N|006-13E|48-41N|006-13E|225|217|P -LFSO|07|181|Nancy / Ochey||France|6|48-35N|005-58E|||336|350|P -LFSQ|07|295|Belfort||France|6|47-38N|006-52E|||422|423|P -LFSR|07|070|Reims||France|6|49-18N|004-02E|49-18N|004-02E|95|99|P -LFST|07|190|Strasbourg||France|6|48-33N|007-38E|||153|154|P -LFSX|07|292|Luxeuil||France|6|47-47N|006-21E|||278|273|P -LFTH|07|667|Hyeres||France|6|43-06N|006-09E|||3|4|P -LFTU|07|680|St-Raphael||France|6|43-25N|006-45E|43-25N|006-45E|2|6|P -LFTW|07|646|Nimes / Garons||France|6|43-45N|004-25E|||94|96|P -LFVP|71|805|Saint-Pierre||Saint Pierre and Miquelon|4|46-46N|056-10W|46-46N|056-10W|3|5|P -LFXA|07|482|Amberieu||France|6|45-59N|005-20E|||250|257|P -LFYR|07|247|Romorantin||France|6|47-19N|001-41E|||85|86|P -LGAD|16|682|Andravida Airport ||Greece|6|37-55N|021-17E|||10|14|P -LGAL|16|627|Alexandroupoli Airport ||Greece|6|40-51N|025-55E|||7|3|P -LGAT|16|716|Athinai Airport ||Greece|6|37-54N|023-44E|37-54N|023-44E|28|15|P -LGAV|--|---|Athens Eleftherios Venizelos International Airport||Greece|6|37-56N|023-56E|||94|| -LGBL|16|665|Anchialos Airport ||Greece|6|39-13N|022-48E|||25|15| -LGEL|16|718|Elefsis Airport ||Greece|6|38-04N|023-33E|||44|31| -LGHI|16|706|Chios Airport ||Greece|6|38-20N|026-08E|||5|4|P -LGIR|16|754|Heraklion Airport ||Greece|6|35-20N|025-11E|35-20N|025-11E|37|39|P -LGKA|16|614|Kastoria Airport ||Greece|6|40-27N|021-17E|||604||P -LGKC|--|---|Kithira Airport||Greece|6|36-17-21N|023-01-24E|||321|| -LGKF|16|685|Kefalhnia Airport ||Greece|6|38-07N|020-30E|||19|22| -LGKL|16|726|Kalamata Airport ||Greece|6|37-04N|022-01E|||6|8| -LGKO|16|742|Kos Airport ||Greece|6|36-47N|027-04E|||129||P -LGKP|16|765|Karpathos Airport||Greece|6|35-24-51N|027-08-54E|||6|| -LGKR|16|641|Kerkyra Airport ||Greece|6|39-37N|019-55E|||2|4|P -LGKV|16|624|Chrysoupoli Airport ||Greece|6|40-59N|024-36E|||5|5|P -LGKZ|16|632|Kozani Airport ||Greece|6|40-18N|021-47E|||634|627| -LGLM|16|650|Limnos Airport ||Greece|6|39-55N|025-14E|||5|4|P -LGLR|16|648|Larissa Airport ||Greece|6|39-38N|022-25E|||73|74| -LGMK|--|---|Mikonos Island, Mikonos Airport||Greece|6|37-26-09N|025-20-45E|||123|| -LGMT|16|667|Mytilini Airport ||Greece|6|39-04N|026-36E|||3|5|P -LGNX|--|---|Cyclades Islands, Naxos Airport||Greece|6|37-04-47N|025-22-01E|||3|| -LGPA|--|---|Paros Community Airport||Greece|6|37-00-40N|025-07-32E|||36|| -LGPZ|16|643|Aktion Airport ||Greece|6|38-37N|020-46E|||4|4|P -LGRD|--|---|Rhodes / Maritsa||Greece|6|36-23N|028-07E|||62|| -LGRP|16|749|Rhodes Airport ||Greece|6|36-24N|028-05E|36-23N|028-07E|4|11|P -LGRX|16|687|Araxos Airport ||Greece|6|38-09N|021-25E|38-10N|021-25E|11|12| -LGSA|16|746|Souda Airport ||Greece|6|35-29N|024-07E|||146|151|P -LGSK|--|---|Skiathos Island||Greece|6|39-11N|023-30E|||15|| -LGSM|16|723|Samos Airport ||Greece|6|37-42N|026-55E|||2|7| -LGSO|--|---|Syros Airport||Greece|6|37-25-16N|024-56-54E|||73|| -LGSR|--|---|Santorini Island||Greece|6|36-24N|025-29E|||38|| -LGTG|16|699|Tanagra Airport ||Greece|6|38-19N|023-32E|||148|140| -LGTP|16|710|Tripolis Airport||Greece|6|37-32N|022-24E|||644|652| -LGTS|16|622|Thessaloniki Airport ||Greece|6|40-31N|022-58E|40-31N|022-58E|8|4|P -LGTT|16|715|Tatoi||Greece|6|38-06N|023-47E|||239|235| -LGZA|--|---|Zakinthos Airport ||Greece|6|37-45N|020-53E|||3|| -LHBC|12|992|Bekescsaba||Hungary|6|46-41N|021-10E|||88|90|P -LHBM|12|840|Budapest Met Center||Hungary|6|47-31N|019-02E|||129|| -LHBP|12|839|Budapest / Ferihegy||Hungary|6|47-26N|019-16E|||151|185| -LHBS|12|838|Budaors||Hungary|6|47-27N|018-58E|||132|| -LHDC|12|882|Debrecen||Hungary|6|47-29N|021-36E|47-29N|021-38E|108|109|P -LHKE|12|970|Kecskemet||Hungary|6|46-55N|019-45E|||113|123|P -LHKV|12|930|Kaposvar||Hungary|6|46-23N|017-50E|||144|145| -LHMC|12|772|Miskolc||Hungary|6|48-05N|020-46E|48-06N|020-47E|232|236|P -LHNY|12|892|Nyiregyhaza / Napkor||Hungary|6|47-58N|021-59E|||141|142|P -LHPA|12|825|Papa||Hungary|6|47-12N|017-30E|||145|146|P -LHPP|12|942|Pecs / Pogany||Hungary|6|46-06N|018-14E|46-00N|018-14E|201|203|P -LHSA|--|---|Szentkiralyszabadja||Hungary|6|47-04N|017-59E|||280|| -LHSK|12|935|Siofok||Hungary|6|46-55N|018-03E|46-55N|018-03E|108|109|P -LHSN|12|860|Szolnok||Hungary|6|47-07N|020-14E|47-10N|020-14E|89|94|P -LHSY|12|812|Szombathely||Hungary|6|47-16N|016-38E|47-16N|016-38E|220|221|P -LHTA|--|---|Taszar||Hungary|6|46-24N|017-55E|||160|| -LHTL|--|---|Tokol||Hungary|6|47-21N|018-59E|||101|| -LHUD|12|982|Szeged||Hungary|6|46-15N|020-06E|46-15N|020-06E|82|83|P -LIBA|16|261|Amendola||Italy|6|41-32N|015-43E|||57|60|P -LIBC|16|350|Crotone||Italy|6|39-00N|017-04E|||155|161|P -LIBD|16|270|Bari / Palese Macchie||Italy|6|41-08N|016-47E|||34|49|P -LIBE|16|258|Monte S. Angelo||Italy|6|41-42N|015-57E|||838|844| -LIBG|16|324|Grottaglie||Italy|6|40-31N|017-24E|||64|69| -LIBH|16|325|Marina Di Ginosa||Italy|6|40-26N|016-53E|||2|12|P -LIBN|16|332|Lecce||Italy|6|40-14N|018-09E|||48|61| -LIBP|16|230|Pescara||Italy|6|42-26N|014-12E|42-26N|014-12E|10|11|P -LIBQ|16|344|Monte Scuro||Italy|6|39-20N|016-24E|||1710|1720| -LIBR|16|320|Brindisi||Italy|6|40-39N|017-57E|40-39N|017-57E|15|10|P -LIBS|16|252|Campobasso||Italy|6|41-34N|014-39E|||793|807|P -LIBT|16|232|Termoli||Italy|6|42-00N|015-00E|||16|44| -LIBU|16|316|Latronico||Italy|6|40-05N|016-01E|||888|896| -LIBV|16|312|Gioia Del Colle||Italy|6|40-46N|016-56E|||345|350| -LIBW|16|337|Bonifati||Italy|6|39-35N|015-53E|39-35N|015-53E|484|485| -LIBY|16|360|S. Maria Di Leuca||Italy|6|39-49N|018-21E|||104|112|P -LIBZ|16|300|Potenza||Italy|6|40-38N|015-48E|40-38N|015-48E|823|843|P -LICA|16|362|Lamezia Terme||Italy|6|38-54N|016-15E|||15||P -LICB|--|---|Comiso As Usaf ||Italy|6|36-56N|014-36E|||220|| -LICC|16|460|Catania / Fontanarossa||Italy|6|37-28N|015-03E|37-28N|015-03E|11|17|P -LICD|16|490|Lampedusa||Italy|6|35-30N|012-36E|||16|20|P -LICE|16|450|Enna||Italy|6|37-34N|014-17E|||940|965| -LICF|16|420|Messina||Italy|6|38-12N|015-33E|38-12N|015-33E|59|51|P -LICG|16|470|Pantelleria||Italy|6|36-49N|011-58E|36-49N|011-58E|191|170|P -LICJ|16|405|Palermo / Punta Raisi||Italy|6|38-11N|013-06E|38-11N|013-06E|21|21|P -LICL|16|453|Gela||Italy|6|37-05N|014-13E|||11|33|P -LICM|--|---|Calopezzati ||Italy|6|39-33N|016-48E|||179|| -LICO|16|480|Cozzo Spadaro||Italy|6|36-41N|015-08E|||46|51|P -LICP|16|410|Palermo Boccadifalco||Italy|6|38-06N|013-18E|||107|117| -LICR|16|422|Reggio Calabria||Italy|6|38-04N|015-39E|||11|21| -LICT|16|429|Trapani / Birgi||Italy|6|37-55N|012-30E|37-55N|012-30E|7|14|P -LICU|16|400|Ustica||Italy|6|38-42N|013-11E|38-42N|013-11E|250|251|P -LICZ|16|459|Catania / Sigonella||Italy|6|37-24N|014-55E|||22|22| -LIEA|16|520|Alghero||Italy|6|40-38N|008-17E|40-38N|008-17E|23|40|P -LIEB|16|550|Capo Bellavista||Italy|6|39-56N|009-43E|||138|150|P -LIEC|16|564|Capo Carbonara||Italy|6|39-06N|009-31E|||116|118| -LIED|16|546|Decimomannu||Italy|6|39-21N|008-58E|||29|28| -LIEE|16|560|Cagliari / Elmas||Italy|6|39-15N|009-04E|39-15N|009-03E|4|5|P -LIEF|16|539|Capo Frasca||Italy|6|39-45N|008-28E|||89|95|P -LIEG|16|506|Guardiavecchia||Italy|6|41-13N|009-24E|||158|159|P -LIEH|16|522|Capo Caccia||Italy|6|40-34N|008-10E|40-34N|008-10E|200|204| -LIEL|16|542|Capo S. Lorenzo||Italy|6|39-30N|009-38E|||4|5| -LIEN|16|538|Fonni||Italy|6|40-07N|009-15E|||1022|1029| -LIEO|16|531|Olbia / Costa Smeralda||Italy|6|40-54N|009-31E|||11|13| -LIEP|16|541|Perdasdefogu||Italy|6|39-40N|009-26E|||608|606| -LIMC|16|066|Milano / Malpensa||Italy|6|45-37N|008-44E|||234|211|P -LIME|16|076|Bergamo / Orio Al Serio||Italy|6|45-40N|009-42E|||238|237| -LIMF|16|059|Torino / Caselle||Italy|6|45-13N|007-39E|45-13N|007-39E|301|287|P -LIMG|16|122|Albenga||Italy|6|44-03N|008-07E|||45|49| -LIMH|16|052|Pian Rosa||Italy|6|45-56N|007-42E|||3480|3488|P -LIMJ|16|120|Genova / Sestri||Italy|6|44-25N|008-51E|||2|3|P -LIMK|16|061|Torino / Bric Della Croce||Italy|6|45-02N|007-44E|||709|710| -LIML|16|080|Milano / Linate||Italy|6|45-26N|009-17E|45-26N|009-17E|107|103|P -LIMN|16|064|Novara / Cameri||Italy|6|45-31N|008-40E|||178|169| -LIMO|16|072|Monte Bisbino||Italy|6|45-52N|009-04E|||1319|1322| -LIMP|--|---|Parma||Italy|6|44-49-17N|010-17-41E|||50|| -LIMS|16|084|Piacenza||Italy|6|44-55N|009-44E|||134|138|P -LIMT|16|124|Passo Della Cisa||Italy|6|44-26N|009-56E|||1039|1040| -LIMU|16|153|Capo Mele||Italy|6|43-57N|008-10E|43-57N|008-10E|220|221|P -LIMV|16|119|Passo Dei Giovi||Italy|6|44-38N|008-56E|||468|475| -LIMY|16|115|Monte Malanotte||Italy|6|44-15N|007-48E|||1741|1742| -LIMZ|--|---|Cuneo / Levaldigi||Italy|6|44-32-47N|007-37-20E|||386|| -LIPA|16|036|Aviano||Italy|6|46-02N|012-36E|||128|128| -LIPB|16|020|Bolzano||Italy|6|46-28N|011-20E|||1459|1461|P -LIPC|16|148|Cervia||Italy|6|44-13N|012-18E|||6|10| -LIPD|16|044|Udine / Campoformido||Italy|6|46-02N|013-11E|46-02N|013-11E|93|94|P -LIPE|16|140|Bologna / Borgo Panigale||Italy|6|44-32N|011-18E|44-32N|011-18E|36|49| -LIPF|16|138|Ferrara||Italy|6|44-50N|011-37E|||10|10| -LIPH|16|099|Treviso / S. Angelo||Italy|6|45-39N|012-11E|||18|23| -LIPI|16|045|Udine / Rivolto||Italy|6|45-59N|013-02E|||51|53|P -LIPK|16|147|Forli||Italy|6|44-12N|012-04E|||27|32| -LIPL|16|088|Brescia / Ghedi||Italy|6|45-25N|010-17E|||102|97| -LIPO|--|---|Brescia / Montichia||Italy|6|45-24-02N|010-18-59E|||104|| -LIPP|--|---|Dova Area Control Center||Italy|6|45-24N|011-52E|||14|| -LIPQ|16|108|Ronchi Dei Legionari||Italy|6|45-49N|013-29E|||12|12| -LIPR|16|149|Rimini||Italy|6|44-02N|012-37E|||12|13|P -LIPS|16|098|Treviso / Istrana||Italy|6|45-41N|012-06E|||45|46| -LIPT|16|094|Vicenza||Italy|6|45-34N|011-31E|||39|53| -LIPX|16|090|Verona / Villafranca||Italy|6|45-23N|010-52E|||67|68|P -LIPY|16|191|Falconara||Italy|6|43-37N|013-22E|||12|10|P -LIPZ|16|105|Venezia / Tessera||Italy|6|45-30N|012-20E|45-30N|012-20E|2|6|P -LIQB|16|172|Arezzo||Italy|6|43-28N|011-51E|||248|249| -LIQC|16|294|Capri||Italy|6|40-33N|014-12E|||160|161| -LIQD|--|---|Porretta Pass||Italy|6|44-02N|010-56E|||932|| -LIQI|--|---|Gran Sasso Mountain Range ||Italy|6|42-27N|013-42E|||2138|| -LIQJ|16|214|Civitavecchia||Italy|6|42-02N|011-50E|||3|4| -LIQK|16|310|Capo Palinuro||Italy|6|40-01N|015-17E|||184|185|P -LIQN|16|221|Rieti||Italy|6|42-25N|012-51E|||389|| -LIQO|16|168|Monte Argentario||Italy|6|42-23N|011-10E|||630|631| -LIQP|16|129|Isola Di Palmaria||Italy|6|44-02N|009-50E|||192|191| -LIQR|16|204|Radicofani||Italy|6|42-54N|011-46E|||816|828| -LIQV|16|164|Volterra||Italy|6|43-24N|010-52E|||555|575| -LIQW|16|125|Sarzana / Luni||Italy|6|44-05N|009-59E|||9|10| -LIQZ|16|280|Ponza||Italy|6|40-55N|012-57E|||184|185|P -LIRA|16|239|Roma / Ciampino||Italy|6|41-47N|012-35E|||129|105| -LIRB|16|224|Vigna Di Valle||Italy|6|42-05N|012-13E|||262|266| -LIRE|16|245|Pratica Di Mare||Italy|6|41-39N|012-27E|41-39N|012-26E|6|21| -LIRF|16|242|Roma Fiumicino||Italy|6|41-48N|012-14E|41-48N|012-14E|2|3| -LIRG|16|234|Guidonia||Italy|6|42-00N|012-44E|||88|89| -LIRH|16|244|Frosinone||Italy|6|41-38N|013-18E|||180|185| -LIRI|--|---|Pontecagnano Air Force Base ||Italy|6|40-37N|014-55E|||40|| -LIRJ|16|197|M. Calamita||Italy|6|42-44N|010-24E|||396|397| -LIRK|16|219|Monte Terminillo||Italy|6|42-28N|012-59E|||1874|1875|P -LIRL|16|243|Latina||Italy|6|41-33N|012-54E|||25|26| -LIRM|16|253|Grazzanise||Italy|6|41-03N|014-04E|||9|10| -LIRN|16|289|Napoli / Capodichino||Italy|6|40-51N|014-18E|40-53N|014-18E|88|72|P -LIRP|16|158|Pisa / S. Giusto||Italy|6|43-41N|010-23E|43-40N|010-23E|2|6|P -LIRQ|16|170|Firenze / Peretola||Italy|6|43-48N|011-12E|||40|38|P -LIRS|16|206|Grosseto||Italy|6|42-45N|011-04E|||5|7|P -LIRT|16|263|Trevico||Italy|6|41-03N|015-14E|||1085|1093| -LIRU|16|235|Roma / Urbe||Italy|6|41-57N|012-30E|||18|24| -LIRV|16|216|Viterbo||Italy|6|42-26N|012-03E|||300|308| -LIRZ|16|181|Perugia||Italy|6|43-05N|012-30E|43-05N|012-30E|208|205|P -LIVC|16|134|Monte Cimone||Italy|6|44-12N|010-42E|||2165|2173|P -LIVD|16|033|Dobbiaco||Italy|6|46-44N|012-13E|||1222|1226| -LIVE|--|---|Resia Pass ||Italy|6|46-50N|010-30E|||1800|| -LIVF|16|179|Frontone||Italy|6|43-31N|012-44E|||570|574| -LIVM|16|146|Punta Marina||Italy|6|44-27N|012-18E|||2|6| -LIVO|16|040|Tarvisio||Italy|6|46-30N|013-35E|||777|778|P -LIVP|16|022|Paganella||Italy|6|46-09N|011-02E|||2125|2129| -LIVR|16|021|Passo Rolle||Italy|6|46-18N|011-47E|||2004|2006| -LIVT|16|110|Trieste||Italy|6|45-39N|013-45E|||8|20|P -LIYW|16|037|Aviano Usaf ||Italy|6|46-02N|012-37E|||126|| -LJLJ|14|014|Ljubljana / Brnik||Slovenia|6|46-13N|014-29E|46-13N|014-29E|385|362| -LJMB|14|026|Maribor / Slivnica||Slovenia|6|46-29N|015-41E|||264|265| -LJMS|13|031|Murska Sobota||Slovenia|6|46-39N|016-11E|||188|| -LJPZ|13|105|Portoroz||Slovenia|6|45-31N|013-34E|||95|| -LKHO|11|774|Holesov||Czech Republic|6|49-19N|017-34E|||224|224| -LKKU|--|---|Kunovice||Czech Republic|6|49-01-46N|017-26-23E|||177|| -LKKV|11|414|Karlovy Vary||Czech Republic|6|50-12N|012-55E|||603|604| -LKKZ|11|968|Kosice||Slovakia|6|48-40N|021-13E|48-42N|021-16E|230|231|P -LKLB|--|---|Liberec||Czech Republic|6|50-46-06N|015-01-30E|||405|| -LKMT|11|782|Ostrava / Mosnov||Czech Republic|6|49-41N|018-07E|49-47N|018-16E|256|256|P -LKPP|11|826|Piestany||Slovakia|6|48-37N|017-50E|||163|164| -LKPR|11|518|Praha / Ruzyne||Czech Republic|6|50-06N|014-15E|50-06N|014-17E|365|365|P -LKSL|11|903|Sliac||Slovakia|6|48-39N|019-09E|||314|315|P -LKTB|11|723|Brno / Turany||Czech Republic|6|49-09N|016-42E|||241|246|P -LLBG|40|180|Ben-Gurion International Airport||Israel|6|32-00N|034-54E|32-00N|034-54E|40|49|P -LLBS|40|191|Beer-Sheva||Israel|6|31-14N|034-47E|31-14N|034-47E|275|280|P -LLET|40|199|Eilat||Israel|6|29-33N|034-57E|29-33N|034-57E|12|12|P -LLHA|40|155|Sde-Haifa Haifa||Israel|6|32-48N|035-02E|||8|8|P -LLIB|--|---|Galilee / Pina||Israel|6|32-58-48N|035-34-12E||||| -LLJR|40|290|Jerusalem Airport||Israel|6|31-52N|035-13E|31-52N|035-13E|749|759|P -LLOV|40|198|Ovda||Israel|6|30-00N|034-50E|||432|445| -LLSD|--|---|Tel Aviv / Sde-Dov Airport||Israel|6|32-06-53N|034-46-56E|||13|| -LMML|16|597|Luqa||Malta|6|35-51N|014-29E|35-51N|014-29E|91|91|P -LOAG|--|---|Krems-Langenlois||Austria|6|48-26-46N|015-38-01E|||312|| -LOAN|--|---|Niederosterreich / Wiener Neustadt-Ost Flugplatz||Austria|6|47-50-36N|016-15-29E|||272|| -LOAV|11|181|Niederosterreich / Lugplatz Voslau||Austria|6|47-57-52N|016-15-34E|||233|| -LOGG|--|---|Punitz-Gussing||Austria|6|47-08-51N|016-19-04E|||290|| -LOIH|--|---|Hohenems-Dornbirn||Austria|6|47-23-05N|009-42-02E|||418|| -LOLF|--|---|Oberosterreich / Freistadt Flugplatz||Austria|6|48-30-53N|014-24-32E|||685|| -LOLW|--|---|Wels||Austria|6|48-10N|014-02E||||| -LOWG|11|240|Graz-Thalerhof-Flughafen||Austria|6|47-00N|015-26E|47-00N|015-27E|340|347|P -LOWI|11|120|Innsbruck-Flughafen||Austria|6|47-16N|011-21E|||581|593|P -LOWK|11|231|Klagenfurt-Flughafen||Austria|6|46-39N|014-20E|||448|476|P -LOWL|11|010|Linz / Hoersching-Flughafen||Austria|6|48-14N|014-11E|48-14N|014-11E|298|313|P -LOWS|11|150|Salzburg-Flughafen||Austria|6|47-48N|013-00E|||430|450|P -LOWW|11|036|Wien / Schwechat-Flughafen||Austria|6|48-07N|016-34E|||183|190|P -LOWZ|--|---|Zell Am See||Austria|6|47-17-33N|012-47-15E|||754|| -LOXA|11|157|Aigen Im Ennstal||Austria|6|47-32N|014-08E|||638|649|P -LOXL|11|011|Horsching Aus-Afb ||Austria|6|48-14N|014-11E|48-14N|014-11E|313|298| -LOXS|11|122|Schwaz Heliport ||Austria|6|47-20N|011-42E|||543|| -LOXT|11|030|Tulln||Austria|6|48-19N|016-07E|||175|176| -LOXZ|11|165|Zeltweg||Austria|6|47-12N|014-45E|||677|682|P -LPAZ|08|515|Santa Maria Acores ||Portugal|6|36-58N|025-10W|||100|100|P -LPBG|08|575|Braganca||Portugal|6|41-48N|006-44W|||691|692|P -LPBJ|08|562|Beja||Portugal|6|38-01N|007-52W|||246|247|P -LPFL|08|501|Flores Acores ||Portugal|6|39-27N|031-08W|||28|29|P -LPFR|08|554|Faro / Aeroporto||Portugal|6|37-01N|007-58W|37-01N|007-58W|7|8|P -LPFU|08|521|Funchal / S. Catarina||Portugal|1|32-41N|016-46W|32-41N|016-46W|58|49|P -LPHR|08|505|Horta / Castelo Branco Acores ||Portugal|6|38-31N|028-43W|||40|41|P -LPLA|08|509|Lajes Acores ||Portugal|6|38-46N|027-06W|38-44N|027-05W|52|54|P -LPMA|--|---|Aeroporto Da Madeira||Portugal|6|32-41-52N|016-46-28W|||59|| -LPMR|--|---|Monte Real Mil.||Portugal|6|39-49-52N|008-53-14W|||57|| -LPMT|--|---|Montijo Mil.||Portugal|6|38-42-14N|009-02-09W|||14|| -LPOV|--|---|Ovar Mil.||Portugal|6|40-54-57N|008-38-45W|||17|| -LPPD|08|512|Ponta Delgada / Nordela Acores ||Portugal|6|37-44N|025-42W|||71|72|P -LPPR|08|545|Porto / Pedras Rubras||Portugal|6|41-14N|008-41W|41-14N|008-41W|69|77|P -LPPS|08|524|Porto Santo||Portugal|1|33-04N|016-21W|||97|82|P -LPPT|08|536|Lisboa / Portela||Portugal|6|38-46N|009-08W|38-46N|009-08W|114|123| -LPST|--|---|Sintra Mil.||Portugal|6|38-49-52N|009-20-22W|||134|| -LPTN|--|---|Tancos Mil.||Portugal|6|39-28-31N|008-21-52W|||81|| -LPVR|08|567|Vila Real||Portugal|6|41-16N|007-43W|||561|562| -LQBI|13|228|Bihac||Serbia and Montenegro|6|44-49N|015-53E|44-49N|015-53E|250|246| -LQBK|13|242|Banja Luka||Bosnia and Herzegovina|6|44-47N|017-13E|||156|| -LQLV|14|640|Livno||Bosnia and Herzegovina|6|43-50N|017-01E|||724|728| -LQMO|13|348|Mostar||Bosnia and Herzegovina|6|43-21N|017-48E|43-21N|017-48E|108|99| -LQSA|13|353|Sarajevo||Bosnia and Herzegovina|6|43-49N|018-20E|43-49N|018-20E|511|510| -LQTZ|13|257|Tuzla||Bosnia and Herzegovina|6|44-33N|018-42E|||306|| -LRAR|15|200|Arad||Romania|6|46-12N|021-24E|46-10N|021-19E|117|118|P -LRBC|15|150|Bacau||Romania|6|46-35N|026-58E|46-35N|026-59E|184|190|P -LRBM|15|014|Baia Mare||Romania|6|47-40N|023-35E|47-40N|023-35E|218|194| -LRBS|15|420|Bucuresti / Imh||Romania|6|44-30N|026-08E|44-30N|026-08E|90|91|P -LRCK|15|481|Kogalniceanu||Romania|6|44-20N|028-26E|||97|102| -LRCL|15|120|Cluj-Napoca||Romania|6|46-47N|023-34E|46-47N|023-34E|410|413|P -LRCS|15|292|Caransebes||Romania|6|45-25N|022-15E|||241|242|P -LRCV|15|450|Craiova||Romania|6|44-14N|023-52E|44-14N|023-52E|192|195|P -LRIA|15|090|Iasi||Romania|6|47-10N|027-38E|47-10N|027-38E|102|104|P -LROD|15|080|Oradea||Romania|6|47-03N|021-56E|47-03N|021-56E|135|140|P -LROP|15|421|Bucuresti Otopeni||Romania|6|44-33N|026-06E|||95|95| -LRSB|15|260|Sibiu||Romania|6|45-48N|024-09E|45-48N|024-09E|443|444|P -LRSM|15|010|Satu Mare||Romania|6|47-48N|022-53E|47-47N|022-53E|123|124|P -LRSV|15|023|Suceava / Salcea||Romania|6|47-39N|026-15E|47-39N|026-15E|351|351| -LRTC|15|335|Tulcea||Romania|6|45-11N|028-49E|45-11N|028-49E|4|6| -LRTM|15|145|Tirgu Mures||Romania|6|46-32N|024-32E|46-32N|024-32E|308|309|P -LRTR|15|247|Timisoara||Romania|6|45-46N|021-15E|45-46N|021-15E|86|88|P -LSGC|--|---|Les Eplatures||Switzerland|6|47-05-03N|006-47-37E|||1027|| -LSGG|06|700|Geneve-Cointrin||Switzerland|6|46-15N|006-08E|||420|416|P -LSGL|06|710|Lausanne||Switzerland|6|46-33N|006-37E|||616|615| -LSGN|06|604|Neuchatel||Switzerland|6|47-00N|006-57E|||485|487| -LSGS|06|720|Sion||Switzerland|6|46-13N|007-20E|||482|481|P -LSMP|06|610|Payerne||Switzerland|6|46-49N|006-57E|46-49N|006-57E|490|491|P -LSZA|06|770|Lugano||Switzerland|6|46-00N|008-58E|||273|276| -LSZB|--|---|Bern / Belp ||Switzerland|6|46-55N|007-30E|||505|| -LSZG|06|632|Grenchen||Switzerland|6|47-10-53N|007-24-59E|||430|| -LSZH|06|670|Zurich-Kloten||Switzerland|6|47-29N|008-32E|||436|432|P -LSZR|06|691|Saint Gallen-Altenrhein||Switzerland|6|47-29-06N|009-33-43E|||398|| -LTAB|--|---|Ankara / Guvercin Lik||Turkey|6|39-56N|032-45E|||819|| -LTAC|17|128|Ankara / Esenboga||Turkey|6|40-07N|032-59E|||953|949|P -LTAD|17|129|Ankara / Etimesgut||Turkey|6|39-57N|032-41E|||799|806|P -LTAE|17|120|Murted Tur-Afb ||Turkey|6|40-05N|032-34E|||843|| -LTAF|17|352|Adana / Sakirpasa||Turkey|6|36-59N|035-18E|36-59N|035-18E|20|20| -LTAG|17|350|Adana / Incirlik||Turkey|6|37-00N|035-25E|37-00N|035-25E|73|66|P -LTAH|17|190|Afyon||Turkey|6|38-45N|030-32E|||1034|1034|P -LTAI|17|300|Antalya||Turkey|6|36-42N|030-44E|36-54N|030-47E|50|57|P -LTAJ|17|260|Gaziantep||Turkey|6|37-05N|037-22E|||701|701|P -LTAK|17|370|Iskenderun||Turkey|6|36-35N|036-10E|||3|3|P -LTAN|17|244|Konya||Turkey|6|37-58N|032-33E|37-58N|032-33E|1032|1022|P -LTAP|17|082|Merzifon||Turkey|6|40-51N|035-35E|40-50N|035-31E|545|535|P -LTAQ|17|029|Samsun||Turkey|6|41-16N|036-18E|||162|168| -LTAR|17|090|Sivas||Turkey|6|39-45N|037-01E|||1285|1285|P -LTAS|17|022|Zonguldak||Turkey|6|41-27N|031-48E|41-27N|031-48E|136|136|P -LTAT|17|200|Malatya / Erhac||Turkey|6|38-26N|038-05E|38-26N|038-05E|862|849|P -LTAU|17|195|Kayseri / Erkilet||Turkey|6|38-47N|035-29E|38-47N|035-29E|1053|1054|P -LTAV|--|---|Sivrihisar||Turkey|6|39-27N|031-21E|||96|| -LTAW|17|086|Tokat||Turkey|6|40-18N|036-34E|||608|608| -LTAY|--|---|Cardak||Turkey|6|37-47N|029-42E|||849|| -LTAZ|--|---|Nevsehir||Turkey|6|38-46-12N|034-32-30E|||945|| -LTBA|17|060|Istanbul / Ataturk||Turkey|6|40-58N|028-49E|||48|37|P -LTBD|17|234|Aydin||Turkey|6|37-51N|027-51E|||57|57|P -LTBE|17|116|Bursa||Turkey|6|40-11N|029-04E|||101|100|P -LTBF|17|150|Balikesir||Turkey|6|39-37N|027-55E|||101|102|P -LTBG|17|115|Bandirma||Turkey|6|40-19N|027-58E|40-19N|027-58E|51|49|P -LTBH|17|112|Canakkale||Turkey|6|40-08N|026-24E|||3|3|P -LTBI|17|124|Eskisehir||Turkey|6|39-47N|030-34E|39-47N|030-34E|785|785|P -LTBJ|17|219|Izmir / Adnan Menderes||Turkey|6|38-16N|027-09E|||125|120| -LTBL|17|218|Izmir / Cigli||Turkey|6|38-30N|027-01E|||5|5|P -LTBM|17|240|Isparta||Turkey|6|37-45N|030-33E|37-45N|030-33E|997|997|P -LTBO|17|188|Usak||Turkey|6|38-40N|029-25E|||919|919|P -LTBQ|--|---|Topel Tur-Afb ||Turkey|6|40-44N|030-05E|||50|| -LTBR|--|---|Bursa / Yenisehir, Mil-Civ||Turkey|6|40-15-19N|029-33-45E|||233|| -LTBS|17|295|Dalaman||Turkey|6|36-42N|028-47E|||7|2| -LTBT|17|184|Akhisar||Turkey|6|38-55N|027-51E|||93|93|P -LTBU|--|---|Corlu||Turkey|6|41-08N|027-55E|||173|| -LTBV|17|290|Bodrum||Turkey|6|37-02N|027-25E|||27|27|P -LTCA|17|202|Elazig||Turkey|6|38-36N|039-17E|||902|882|P -LTCC|17|280|Diyarbakir||Turkey|6|37-53N|040-11E|37-53N|040-11E|686|677|P -LTCD|17|092|Erzincan||Turkey|6|39-44N|039-30E|||1156|1215|P -LTCE|17|096|Erzurum||Turkey|6|39-55N|041-16E|||1756|1758|P -LTCF|17|098|Kars||Turkey|6|40-36N|043-05E|||1775|1775|P -LTCG|17|038|Trabzon||Turkey|6|41-00N|039-43E|||35|30|P -LTCH|17|270|Urfa||Turkey|6|37-08N|038-46E|||547|547|P -LTCI|17|170|Van||Turkey|6|38-27N|043-19E|||1667|1661|P -LTCJ|17|282|Batman||Turkey|6|37-52N|041-10E|||540|540| -LTCK|--|---|Mus Tur-Afb ||Turkey|6|38-45N|041-40E|||1266|| -LTFA|--|---|Izmir \ Kaklic||Turkey|6|38-31N|026-59E|||4|| -LTFC|--|---|Suleyman Demirel||Turkey|6|37-51N|030-22E|||864|| -LTFE|--|---|Bodrum Milas Airport||Turkey|6|37-14-53N|027-40-55E|||6|| -LTFH|--|---|Samsun / Carsamba||Turkey|6|41-15-15N|036-34-03E|||5|| -LTFJ|--|---|Istanbul / Sabiha Gokcen||Turkey|6|40-53-55N|029-18-33E|||95|| -LUBL|--|---|Baltsi-Leadoveni - The North of Moldova||Moldova|6|47-50-03N|027-46-09E|||231|| -LUCH|--|---|Kaxul - The South of Moldova||Moldova|6|45-50-38N|028-15-55E|||199|| -LUKK|--|---|Chisinau International Airport||Moldova|6|46-55-40N|028-55-51E|||122|| -LWOH|13|578|Ohrid||Macedonia, The Republic of|6|41-07N|020-48E|||760|761| -LWSK|13|586|Skopje-Petrovec||Macedonia, The Republic of|6|41-58N|021-39E|41-57N|021-38E|238|239|P -LXGB|08|495|Gibraltar||Gibraltar|6|36-09N|005-21W|36-15N|005-33W|5|0| -LYBE|13|272|Beograd / Surcin||Serbia and Montenegro|6|44-49N|020-17E|||96|99|P -LYNI|13|388|Nis||Serbia and Montenegro|6|43-20N|021-54E|43-20N|021-54E|202|202|P -LYPG|--|---|Podgorica Titograd ||Serbia and Montenegro|6|42-26N|019-17E|||53|| -LYPR|13|481|Pristina||Serbia and Montenegro|6|42-34N|021-02E|||545|576|P -LYPZ|14|105|Portoroz / Secovlje||Slovenia|6|45-29N|013-37E|||2|3| -LYTI|13|462|Podgorica / Golubovci||Serbia and Montenegro|6|42-22N|019-15E|42-22N|019-15E|33|33|P -LYTV|13|457|Tivat||Serbia and Montenegro|6|42-24N|018-44E|||5|5|P -LYVR|13|183|Vrsac||Serbia and Montenegro|6|45-09N|021-19E|||83|85|P -LZIB|11|816|Bratislava Ivanka||Slovakia|6|48-12N|017-12E|48-10N|017-12E|133|142|P -LZKC|11|993|Kamenica Nad Cirochou||Slovakia|6|48-56N|022-00E|||177|| -LZKZ|--|---|Kosice, Barca||Slovakia|6|48-39-47N|021-14-28E|||232|| -LZLU|11|927|Lucenec||Slovakia|6|48-20N|019-44E|||214|| -LZNI|--|---|Nitra||Slovakia|6|48-16-46N|018-07-58E|||134|| -LZPE|--|---|Prievidza||Slovakia|6|48-45-59N|018-35-18E|||260|| -LZPP|--|---|Piestany||Slovakia|6|48-37-30N|017-49-43E|||163|| -LZSL|--|---|Sliac||Slovakia|6|48-38-17N|019-08-03E|||318|| -LZTT|11|934|Poprad / Tatry||Slovakia|6|49-04N|020-15E|49-04N|020-15E|694|695|P -LZZI|--|---|Dolny Hricov||Slovakia|6|49-14N|018-36-49E|||312|| -MBPV|--|---|Providenciales||Turks and Caicos Islands|4|21-46-25N|072-15-57W|||5|| -MDBH|78|482|Barahona||Dominican Republic|4|18-12N|071-06W|||3||P -MDHE|78|484|Herrera||Dominican Republic|4|18-28N|069-58W|||58|| -MDLR|--|---|La Romana International Airport||Dominican Republic|4|18-25N|068-57W|||8|| -MDPC|78|479|Punta Cana||Dominican Republic|4|18-34N|068-22W|||12||P -MDPP|78|457|Puerto Plata International||Dominican Republic|4|19-45N|070-33W|||15|| -MDSD|78|485|Las Americas||Dominican Republic|4|18-26N|069-40W|||18||P -MDSI|--|---|San Isidro Air Force Base||Dominican Republic|4|18-30N|069-46W|||111|| -MDST|78|460|Santiago||Dominican Republic|4|19-27N|070-42W|||183||P -MGCB|78|631|Coban||Guatemala|4|15-28N|090-19W|||1316|| -MGFL|78|615|Flores||Guatemala|4|16-55N|089-53W|||115|115| -MGGT|78|641|Guatemala Aeropuertola Aurora ||Guatemala|4|14-35N|090-31W|14-35N|090-31W|1489|1489| -MGHT|78|627|Huehuetenango||Guatemala|4|15-19N|091-28W|||1901|1901| -MGPB|78|637|Puerto Barrios||Guatemala|4|15-43N|088-36W|15-43N|088-36W|1|1| -MGQZ|--|---|Quezaltenango||Guatemala|4|14-50N|091-31W|||2500|| -MGRT|78|639|Retalhuleu||Guatemala|4|14-32N|091-40W|||239|| -MGSJ|78|647|San Jose||Guatemala|4|13-55N|090-49W|13-55N|090-49W|2|2| -MGTK|--|---|Tikal||Guatemala|4|16-54N|089-51W|||128|| -MGZA|--|---|Zacapa||Guatemala|4|14-58N|089-32W|||490|| -MHAM|78|700|Amapala||Honduras|4|13-16N|087-39W|||5|| -MHCA|78|714|Catacamas||Honduras|4|14-54N|085-56W|||442|442|P -MHCH|78|724|Choluteca||Honduras|4|13-18N|087-11W|13-18N|087-11W|48|48|P -MHIC|78|501|Islas Del Cisne||Honduras|4|17-24N|083-56W|17-24N|083-56W|9|11|P -MHLC|78|705|La Ceiba Airport ||Honduras|4|15-44N|086-52W|||3|26|P -MHLE|78|719|La Esperanza||Honduras|4|14-19N|088-09W|||1100|1674| -MHLM|78|708|La Mesa San Pedro Sula ||Honduras|4|15-27N|087-56W|||31|31|P -MHNJ|78|701|Guanaja||Honduras|4|16-28N|085-55W|16-28N|085-55W|2|2|P -MHNO|78|701|Guanaja||Honduras|4|16-28N|086-04W|||2|| -MHPL|78|711|Puerto Lempira||Honduras|4|15-13N|083-48W|||13|13|P -MHRO|78|703|Roatan||Honduras|4|16-19N|086-31W|||5|2|P -MHSC|78|718|Coronel Enrique Soto Cano Air Base||Honduras|4|14-23N|087-37W|14-23N|087-37W|628|628| -MHSR|78|717|Santa Rosa De Copan||Honduras|4|14-47N|088-47W|||1079|1079|P -MHTE|78|706|Tela||Honduras|4|15-43N|087-29W|||3|3|P -MHTG|78|720|Tegucigalpa||Honduras|4|14-03N|087-13W|14-02N|087-15W|994|1007|P -MHYR|78|707|Yoro||Honduras|4|15-10N|087-07W|||670|670| -MKJP|78|397|Kingston / Norman Manley||Jamaica|4|17-56N|076-47W|17-56N|076-47W|3|14|P -MKJS|78|388|Montego Bay / Sangster||Jamaica|4|18-30N|077-55W|||1|8|P -MMAA|--|---|Acapulco / G. Alvarez||Mexico|4|16-46N|099-45W|||5|| -MMAN|76|394|Aerop. Internacional Monterrey, N. L.||Mexico|4|25-52N|100-14W|25-52N|100-12W|448|450| -MMAS|76|571|Aguascalientes, Ags.||Mexico|4|21-53N|102-18W|||1874|| -MMBT|--|---|Bahias De Huatulco ||Mexico|4|15-47N|096-16W|||143|| -MMCB|76|726|Cuernavaca, Mor.||Mexico|4|18-53N|099-14W|||1618|| -MMCE|--|---|Ciudad Del Carmen ||Mexico|4|18-39N|091-48W|||2|| -MMCL|76|412|Culiacan, Sin.||Mexico|4|24-49N|107-24W|||39|| -MMCM|76|750|Chetumal, Q. Roo||Mexico|4|18-29N|088-18W|||9|| -MMCN|76|253|Ciudad Obregon||Mexico|4|27-23-34N|109-49-59W|||62|| -MMCP|76|695|Campeche, Camp.||Mexico|4|19-51N|090-33W|||5|| -MMCS|--|---|Ciudad Juarez International ||Mexico|4|31-38N|106-26W|||1171|| -MMCT|--|---|Chichen-Itza||Mexico|4|20-38-30N|088-26-58W|||31|| -MMCU|--|---|Chihuahua International Airport||Mexico|4|28-42N|105-58W|||1360|| -MMCV|--|---|Ciudad Victoria Airport||Mexico|4|23-43N|098-58W|||238|| -MMCZ|--|---|Cozumel Civ / Mil ||Mexico|4|20-32N|086-56W|||5|| -MMDO|--|---|Durango Airport||Mexico|4|24-08N|104-32W|||1857|| -MMEP|76|556|Tepic, Nay.||Mexico|4|21-31N|104-54W|||922|| -MMGL|--|---|Don Miguel / Guadalaj||Mexico|4|20-31N|103-19W|||1528|| -MMGM|--|---|Guaymas International Airport||Mexico|4|27-58N|110-56W|||27|| -MMHO|76|160|Hermosillo, Son.||Mexico|4|29-04N|110-57W|||211|| -MMIA|76|658|Colima ||Mexico|4|19-16N|103-35W|||723|| -MMIO|76|390|Saltillo, Coah.||Mexico|4|25-27N|100-59W|||1790|| -MMIT|--|---|Ixtepec Ox||Mexico|4|16-27N|095-05W|||61|| -MMLC|--|---|Lazaro Cardenas||Mexico|4|17-59N|102-13W|||12|| -MMLM|--|---|Los Mochis Airport||Mexico|4|25-41N|109-05W|||4|| -MMLO|--|---|Del Bajio / Leon||Mexico|4|21-00N|101-29W|||1819|| -MMLP|--|---|La Paz International Airport||Mexico|4|24-04N|110-22W|||21|| -MMLT|76|305|Loreto, B. C. S.||Mexico|4|26-01N|111-21W|||15|| -MMMA|--|---|Matamoros International ||Mexico|4|25-46N|097-32W|||8|| -MMMD|76|644|Merida / lic Manuel Crecencio||Mexico|4|20-56N|089-39W|20-57N|089-40W|10|11| -MMML|--|---|Mexicali International Airport ||Mexico|4|32-38N|117-00W|||22|| -MMMM|--|---|Morelia New||Mexico|4|19-51N|101-02W|||1833|| -MMMT|--|---|Minatitlan||Mexico|4|18-06N|094-35W|||40|| -MMMV|76|342|Monclova, Coah.||Mexico|4|26-53N|101-25W|26-54N|101-25W|615|586| -MMMX|--|---|Mexico City / Licenci||Mexico|4|19-26N|099-06W|||2238|| -MMMY|--|---|Monterrey / Gen Maria||Mexico|4|25-47N|100-06W|||387|| -MMMZ|--|---|Mazatlan / G. Buelna||Mexico|4|23-10N|106-16W|||10|| -MMNL|--|---|Nuevo Laredo International ||Mexico|4|27-26N|099-34W|||148|| -MMOX|--|---|Oaxaca / Xoxocotlan||Mexico|4|16-58N|096-44W|||1528|| -MMPA|--|---|Poza Rica / Palizada||Mexico|4|20-31N|097-28W|||15|| -MMPB|76|685|Puebla, Pue.||Mexico|4|19-03N|098-10W|||2179|| -MMPG|76|243|Piedras Negras, Coah.||Mexico|4|28-42N|100-31W|||250|| -MMPN|--|---|Uruapan / Gen Rayon||Mexico|4|19-24N|102-02W|||1593|| -MMPR|--|---|Puerto Vallarta / Lic||Mexico|4|20-41N|105-15W|||6|| -MMPS|--|---|Puerto Escondido ||Mexico|4|15-52N|097-05W|||88|| -MMQT|76|625|Queretaro, Qro.||Mexico|4|20-36N|100-23W|||1813|| -MMRX|--|---|Reynosa International Airport ||Mexico|4|26-01N|098-14W|||39|| -MMSD|--|---|San Jose Del Cabo ||Mexico|4|23-09N|109-42W|||109|| -MMSP|76|539|San Luis Potosi, S. L. P.||Mexico|4|22-09N|100-59W|||1870|| -MMTC|76|382|Torreon, Coah.||Mexico|4|25-32N|103-27W|25-32N|103-27W|1124|1150| -MMTG|76|843|Tuxtla Gutierrez, Chis.||Mexico|4|16-45N|093-07W|||528|| -MMTJ|--|---|Tijuana International Airport ||Mexico|4|32-33N|116-58W|||152|| -MMTL|76|634|Tulancingo ||Mexico|4|20-05N|098-22W|||2181|| -MMTM|--|---|Tampico / Gen Fj Mina||Mexico|4|22-17N|097-52W|||24|| -MMTO|--|---|Toluca / Jose Maria ||Mexico|4|19-21N|099-34W|||2576|| -MMTP|--|---|Tapachula ||Mexico|4|14-47N|092-23W|||29|| -MMUN|--|---|Cancun International Airport||Mexico|4|21-02N|086-52W|||5|| -MMVA|--|---|Villahermosa ||Mexico|4|18-00N|092-49W|||13|| -MMVR|--|---|Veracruz / Las Bajadas / General Heriberto Jara||Mexico|4|19-09N|096-11W|||32|| -MMZC|--|---|Zacatecas Airport||Mexico|4|22-54N|102-41W|||2140|| -MMZH|--|---|Ixtapa-Zihuatanejo||Mexico|4|17-36N|101-28W|||6|| -MMZO|--|---|Manzanillo International ||Mexico|4|19-09N|104-34W|||8|| -MMZP|--|---|Zapopan Military ||Mexico|4|20-45N|103-28W|||1625|| -MNBL|78|745|Bluefields||Nicaragua|4|12-00N|086-46W|||5|5|P -MNCH|78|739|Chinandega||Nicaragua|4|12-38N|087-08W|||53|60|P -MNJG|78|734|Jinotega||Nicaragua|4|13-05N|085-59W|||985|1032|P -MNJU|78|735|Juigalpa||Nicaragua|4|12-06N|085-22W|||90|90|P -MNMG|78|741|Managua A. C. Sandino||Nicaragua|4|12-09N|086-10W|12-07N|086-11W|50|56|P -MNPC|78|730|Puerto Cabezas||Nicaragua|4|14-03N|083-22W|14-02N|083-24W|20|20|P -MNRS|78|733|Rivas||Nicaragua|4|11-25N|085-50W|||53|70|P -MPBO|--|---|Bocas Del Toro International||Panama|4|09-21N|082-15W|||3|| -MPCH|--|---|Changuinola / Captain Manuel Nino||Panama|4|09-28N|082-31W|||6|| -MPDA|78|793|David||Panama|4|08-24N|082-25W|||29|26|P -MPFS|78|801|Ft Sherman Rocob ||Panama|4|09-20N|079-59W|09-20N|079-59W|52|52| -MPHO|78|806|Howard Air Force Base||Panama|4|08-55N|079-36W|08-55N|079-36W|16|13|P -MPLB|--|---|Albrook Afs / Balboa ||Panama|4|08-58N|079-33W|||9|| -MPMG|--|---|Marcos A. Gelabert||Panama|4|08-59N|079-31W|||13|| -MPNU|--|---|Augusto Vergara||Panama|4|07-50N|080-17W|||21|| -MPSA|78|795|Santiago||Panama|4|08-05N|080-57W|||83|88|P -MPTO|78|792|Tocumen||Panama|4|09-03N|079-22W|||45||P -MRCH|--|---|Chacarita||Costa Rica|4|09-59N|084-47W|||2|| -MRLB|78|774|Liberia||Costa Rica|4|10-37N|085-26W|||80|80| -MRLM|78|767|Puerto Limon||Costa Rica|4|10-00N|083-03W|||5|3|P -MRNC|78|755|Nicoya||Costa Rica|4|10-09N|085-27W|||120|| -MROC|78|762|Juan Santamaria||Costa Rica|4|10-00N|084-13W|09-59N|084-13W|920|939|P -MRPM|78|772|Palmar Sur||Costa Rica|4|08-57N|083-28W|||15|16| -MRPV|--|---|Tobias Bolanos International||Costa Rica|4|09-57N|084-09W|||994|| -MSAC|78|650|Acajutla||El Salvador|4|13-34N|089-50W|13-34N|089-50W|15|15|P -MSLP|78|666|El Salvador Intl. Airport / Comalapa||El Salvador|4|13-26N|089-03W|||25|25| -MSSA|78|655|Santa Ana / El Palmar||El Salvador|4|13-59N|089-34W|||725|| -MSSM|78|670|San Miguel / El Papalon||El Salvador|4|13-27N|088-07W|||80|| -MSSS|78|663|San Salvador / Ilopango||El Salvador|4|13-42N|089-07W|13-42N|089-07W|616|621|P -MTCH|78|409|Cap-Haitien||Haiti|4|19-45N|072-11W|||2|3| -MTPP|78|439|Port-Au-Prince / Aeroport International||Haiti|4|18-34N|072-18W|18-33N|072-21W|31|34| -MUBA|78|268|Baracoa, Oriente||Cuba|4|20-21N|074-30W|||9|9| -MUBY|--|---|Bayamo ||Cuba|4|20-24N|076-37W|||64|| -MUCA|78|346|Venezuela, Ciego De Avila||Cuba|4|21-47N|078-47W|||26|26| -MUCC|--|---|Cayo Coco / Jardines Del Ray||Cuba|4|22-27-40N|078-19-42W|||4|| -MUCF|78|244|Cienfuegos, Las Villas||Cuba|4|22-09N|080-24W|||39|39| -MUCL|--|---|Cayo Largo Del Sur||Cuba|4|21-37N|081-33W|||2|| -MUCM|78|255|Camaguey Aeropuerto||Cuba|4|21-25N|077-51W|21-25N|077-51W|122|118| -MUCU|78|264|Santiago De Cuba, Oriente||Cuba|4|19-58N|075-51W|||69|55| -MUGM|78|367|GUANTANAMO BAY, CUBA NAVAL|CU|Cuba|4|19-55N|075-12W|19-54N|075-08W|17|23| -MUGT|78|267|Guantanamo, Oriente||Cuba|4|20-05N|075-09W|||8|8| -MUHA|78|224|Aeropuerto Jose Marti, Rancho-Boyeros, Habana||Cuba|4|22-59N|082-24W|||59|75| -MUHG|--|---|Holguin Civ / Mil ||Cuba|4|20-47N|076-19W|||106|| -MUMO|--|---|Moa Military ||Cuba|4|20-39N|074-55W|||5|| -MUMZ|78|256|Manzanillo, Oriente||Cuba|4|20-20N|077-07W|||60|60| -MUNG|78|221|Nueva Gerona, Isla De Pinos||Cuba|4|21-50N|082-47W|||23|23| -MUPR|78|315|Pinar Del Rio, Pinar Del Rio||Cuba|4|22-25N|083-41W|||37|37| -MUSN|--|---|Siguanea||Cuba|4|21-38-33N|082-57-18W||||| -MUVR|78|229|Varadero, Matanzas||Cuba|4|23-08N|081-17W|||3|3| -MUVT|78|357|Las Tunas, Las Tunas||Cuba|4|20-57N|076-57W|||106|106| -MWCB|--|---|Gerrard Smith Intl. / Cayman Brac||Cayman Islands|4|19-41-13N|079-52-58W|||2|| -MWCG|--|---|Grand Cayman City||Cayman Islands|4|19-18-00N|081-22-00W||||| -MWCR|78|384|Owen Roberts Airportgrand Cayman||Cayman Islands|4|19-17N|081-21W|19-18N|081-22W|3|3| -MYAK|--|---|Congo Town, Andros Island||Bahamas,The|4|24-09-31N|077-35-23W|||5|| -MYBS|78|070|Alice Town, Bimini||Bahamas, The|4|25-44N|079-18W|||2|3|P -MYEG|78|092|Georgetown, Exuma||Bahamas, The|4|23-28-30N|075-46-00W|||2|3|P -MYGF|78|062|Freeport, Grand Bahama||Bahamas, The|4|26-33N|078-42W|||2|11|P -MYGW|78|061|West End, Grand Bahama||Bahamas, The|4|26-42N|078-58W|||2|4|P -MYIG|78|121|Matthew Town, Inagua||Bahamas, The|4|20-57N|073-41W|||2|4|P -MYNN|78|073|Nassau Airport||Bahamas, The|4|25-03N|077-28W|25-03N|077-28W|3|7|P -MYSM|78|088|Cockburn Town, San Salvador||Bahamas, The|4|24-03N|074-32W|||3|5|P -MZBZ|78|583|Belize / Phillip Goldston Intl. Airport||Belize|4|17-32N|088-18W|17-32N|088-18W|5|5|P -NCRG|91|843|Rarotonga||Cook Islands|5|21-12S|159-49W|21-12S|159-49W|7|7|P -NEXC|--|---|Charleston, Navelexcen|SC|United States|4|32-54-56N|079-58-45W|32-54-56N|079-58-45W|8|11| -NFFN|91|680|Nandi||Fiji|5|17-45S|177-27E|17-45S|177-27E|13|18|P -NFNA|91|683|Nausori||Fiji|5|18-03S|178-34E|||5|7|P -NFNK|91|691|Lakemba||Fiji|5|18-14S|178-48W|||2|3| -NFNR|91|650|Rotuma||Fiji|5|12-30S|177-03E|12-30S|177-03E|26|26|P -NFTF|91|792|Fua'Amotu||Tonga|5|21-14S|175-09W|21-14S|175-09W|38|41| -NFTL|91|784|Haapai||Tonga|5|19-48S|174-21W|||2|3| -NGBR|91|623|Beru||Kiribati|5|01-21S|176-00E|||2|3| -NGFO|91|631|Nanumea||Tuvalu|5|05-40S|176-08E|||2|3| -NGFU|91|643|Funafuti||Tuvalu|5|08-31S|179-13E|08-31S|179-13E|1|2|P -NGTA|91|610|Tarawa||Kiribati|5|01-21N|172-55E|01-21N|172-55E|2|4|P -NGTR|91|629|Arorae||Kiribati|5|02-40S|176-50E|||4|7| -NGTU|91|601|Butaritari||Kiribati|5|03-02N|172-47E|||1|| -NIUE|91|822|Alofi / Niue||Cook Islands|5|19-04S|169-55W|||20|22|P -NLWF|91|754|Maopoopo Ile Futuna ||France|5|14-19S|178-07W|||6|36|P -NLWW|91|753|Hihifo Ile Wallis ||France|5|13-14S|176-10W|13-14S|176-10W|23|27|P -NSAP|91|762|Apia / Upolu Island||Samoa|5|13-48S|171-47W|13-48S|171-47W|2|2| -NSFA|91|759|Faleolo Intl / Apia||Samoa|5|13-49S|172-00W|||5|| -NSTU|91|765|Pago Pago / Int. Airport||United States Minor Outlying Islands|5|14-20S|170-43W|14-20S|170-43W|3|3|P -NTAA|91|938|Tahiti-Faaa||French Polynesia|5|17-33S|149-37W|17-33S|149-37W|2|2|P -NTAT|91|954|Tubuai||French Polynesia|5|23-21S|149-29W|23-21S|149-29W|2|3|P -NTTB|91|930|Bora-Bora||French Polynesia|5|16-27S|151-45W|16-29S|151-45W|4|3|P -NTTG|91|941|Rangiroa / Tuamoto Island||French Polynesia|5|14-58S|147-40W|14-58S|147-40W|3|3| -NTTO|91|944|Hao||French Polynesia|5|18-04S|140-57W|18-04S|140-57W|2|7|P -NTTX|91|952|Mururoa||French Polynesia|5|21-49S|138-48W|21-49S|138-49W|2|3|P -NVSC|91|551|Sola Vanua Lava ||Vanuatu|5|13-51S|167-33E|13-51S|167-33E|17|18|P -NVSL|91|555|Lamap Malekula ||Vanuatu|5|16-25S|167-48E|||26|26|P -NVSS|91|554|Pekoa Airport Santo ||Vanuatu|5|15-31S|167-13E|15-31S|167-13E|41|44|P -NVVV|91|557|Bauerfield Efate ||Vanuatu|5|17-42S|168-18E|17-42S|168-18E|20|21|P -NWWE|91|596|Moue Ile Des Pins ||New Caledonia|5|22-36S|167-27E|||96|97| -NWWK|91|577|Koumac Nlle-Caledonie ||New Caledonia|5|20-34S|164-17E|20-34S|164-17E|23|18|P -NWWL|91|582|Ouanaham Ile Lifou ||New Caledonia|5|20-46S|167-14E|20-46S|167-14E|28|29|P -NWWN|91|592|Noumea Nlle-Caledonie ||New Caledonia|5|22-16S|166-27E|22-16S|166-27E|69|72|P -NWWR|91|587|La Roche Ile Mare ||New Caledonia|5|21-29S|168-02E|||43|42| -NWWV|91|579|Ouloup Ile Ouvea ||New Caledonia|5|20-39S|166-35E|||7|7| -NWWW|91|590|La Tontouta Nlle-Caledonie ||New Caledonia|5|22-01S|166-13E|22-01S|166-13E|16|14|P -NZAA|93|119|Auckland Airport||New Zealand|5|37-01S|174-48E|37-01S|174-48E|7|6|P -NZCH|93|780|Christchurch||New Zealand|5|43-29S|172-33E|43-29S|172-33E|38|30|P -NZCI|93|986|Chatham Island||New Zealand|5|43-57S|176-34W|43-57S|176-34W|44|48|P -NZCM|89|674|Williams Field||Antarctica|7|77-52S|166-58E|||8|8| -NZDN|93|890|Dunedin Aerodrome||New Zealand|5|45-56S|170-12E|45-56S|170-12E|1|2| -NZGS|93|291|Gisborne Aerodrome||New Zealand|5|38-40S|177-59E|38-40S|177-59E|5|8| -NZHK|93|614|Hokitika Aerodrome||New Zealand|5|42-43S|170-59E|42-43S|170-59E|45|44| -NZIR|--|---|Ice Runway||Antarctica|7|77-52S|166-32E|||2|| -NZKI|93|677|Kaikoura ||New Zealand|5|42-25S|173-42E|42-25S|173-42E|101|99| -NZNP|93|308|New Plymouth Aerodrome||New Zealand|5|39-01S|174-11E|39-01S|174-11E|28|36|P -NZNV|93|844|Invercargill Aerodrome||New Zealand|5|46-42S|168-33E|46-25S|168-20E|0|4|P -NZOH|93|401|Ohakea||New Zealand|5|40-12S|175-22E|40-12S|175-23E|50|52| -NZPP|93|417|Paraparaumu Aerodrome||New Zealand|5|40-54S|174-59E|40-54S|174-59E|7|12|P -NZRN|93|997|Raoul Island, Kermadec Island||New Zealand|5|29-15S|177-55W|29-15S|177-55W|38|49|P -NZRO|93|246|Rotorua Aerodrome||New Zealand|5|38-07S|176-19E|38-07S|176-19E|285|294| -NZSP|89|009|Amundsen-Scott South Pole Station||Antarctica|7|90-00S|00-00E|90-00S|000-00E|2830|2835|P -NZTG|93|186|Tauranga Aerodrome Aws||New Zealand|5|37-40S|176-12E|||4|5| -NZWD|--|---|Williams Field, Antarctic||New Zealand|5|77-53S|166-39E|||12|| -NZWN|93|436|Wellington Airport||New Zealand|5|41-20S|174-48E|||12|8| -NZWP|93|112|Whenuapai||New Zealand|5|36-47S|174-38E|36-47S|174-38E|30|27| -OAFR|40|974|Farah||Afghanistan|2|32-22N|062-11E|||700|700| -OAFZ|40|904|Faizabad||Afghanistan|2|37-07N|070-31E|||1200|1200| -OAHR|40|938|Herat||Afghanistan|2|34-13N|062-13E|34-13N|062-13E|964|964| -OAJL|40|954|Jalalabad||Afghanistan|2|34-26N|070-28E|||580|580| -OAJS|40|932|Jabul-Saraj||Afghanistan|2|35-08N|069-15E|||1630|1630| -OAKB|40|948|Kabul Airport||Afghanistan|2|34-38N|069-12E|||1789|| -OAMS|40|911|Mazar-I-Sharif||Afghanistan|2|36-42N|067-12E|||378|378| -OASD|40|957|Shindand||Afghanistan|2|33-24N|062-17E|||1150|1150| -OASG|40|908|Shebirghan||Afghanistan|2|36-40N|065-43E|||360|360| -OAZB|40|920|Zebak||Afghanistan|2|36-30N|071-15E|||2600|2600| -OAZG|40|986|Zaranj||Afghanistan|2|31-00N|061-51E|||478|478| -OBBI|41|150|Bahrain International Airport ||Bahrain|2|26-16N|050-39E|||2|2| -OEAB|41|112|Abha||Saudi Arabia|2|18-14N|042-39E|||2090|2093|P -OEAH|40|420|Al Ahsa||Saudi Arabia|2|25-18N|049-29E|||179|178|P -OEBA|41|055|Al Baha||Saudi Arabia|2|20-18N|041-38E|||1652|1662|P -OEBH|41|084|Bisha||Saudi Arabia|2|19-59N|042-37E|||1167|1163|P -OEDF|40|415|Dammam-King Fahd International Airport||Saudi Arabia|2|26-28N|049-47E|||22|| -OEDR|40|416|Dhahran||Saudi Arabia|2|26-16N|050-09E|26-16N|050-10E|26|17|P -OEDW|40|435|Dawadmi||Saudi Arabia|2|24-30N|044-21E|||990|991|P -OEGN|41|140|Gizan||Saudi Arabia|2|16-54N|042-35E|16-52N|042-35E|6|7|P -OEGS|40|405|Gassim||Saudi Arabia|2|26-18N|043-46E|||648|650|P -OEGT|40|360|Guriat||Saudi Arabia|2|31-24N|037-16E|||509|504|P -OEHL|40|394|Hail||Saudi Arabia|2|27-26N|041-41E|27-31N|041-44E|1015|1013|P -OEJB|--|---|Jubail Naval ||Saudi Arabia|2|27-03N|049-24E|||8|| -OEJD|41|026|Jeddah ||Saudi Arabia|2|21-30N|039-12E|||15|| -OEJN|41|024|Jeddah King Abdul Aziz International Airport ||Saudi Arabia|2|21-42N|039-11E|21-40N|039-09E|15|17|P -OEKK|40|377|Hafr Al-Batin||Saudi Arabia|2|27-54N|045-32E|||413|414| -OEKM|41|114|Khamis Mushait||Saudi Arabia|2|18-18N|042-48E|18-18N|042-48E|2066|2056|P -OEMA|40|430|Madinah||Saudi Arabia|2|24-33N|039-42E|24-33N|039-43E|654|636|P -OEMK|41|030|Makkah||Saudi Arabia|2|21-26N|039-46E|||310|240|P -OENG|41|128|Najran||Saudi Arabia|2|17-37N|044-25E|||1212|1210|P -OEPA|40|373|Al Qaysumah||Saudi Arabia|2|28-19N|046-07E|28-20N|046-07E|358|360|P -OERF|40|362|Rafha||Saudi Arabia|2|29-37N|043-29E|||449|444|P -OERK|40|437|King Khaled International Airport||Saudi Arabia|2|24-56N|046-43E|24-56N|046-43E|614|612|P -OERR|40|357|Arar||Saudi Arabia|2|30-54N|041-08E|||555|549|P -OERY|40|438|Riyadh||Saudi Arabia|2|24-43N|046-44E|24-42N|046-44E|635|620|P -OESH|41|136|Sharurah||Saudi Arabia|2|17-28N|047-07E|||720|725|P -OESK|40|361|Al-Jouf||Saudi Arabia|2|29-47N|040-06E|||689|689|P -OETB|40|375|Tabuk||Saudi Arabia|2|28-22N|036-36E|28-22N|036-35E|778|768|P -OETF|41|036|Taif||Saudi Arabia|2|21-29N|040-33E|||1478|1454|P -OETR|40|356|Turaif||Saudi Arabia|2|31-41N|038-44E|||813|852|P -OEWD|41|061|Wadi Al Dawasser Airport||Saudi Arabia|2|20-30N|045-12E|||624|622|P -OEWJ|40|400|Wejh||Saudi Arabia|2|26-12N|036-28E|26-14N|036-26E|20|21|P -OEYN|40|439|Yenbo||Saudi Arabia|2|24-09N|038-04E|||8|10|P -OIAA|40|831|Abadan||Iran|2|30-22N|048-15E|||3|11|P -OIAG|40|833|Omidieh||Iran|2|30-46N|049-40E|||29|27|P -OIAH|40|835|Gach Saran Du Gunbadan||Iran|2|30-26N|050-46E|||738|699|P -OIAI|40|812|Masjed-Soleyman||Iran|2|31-59N|049-16E|||372|372|P -OIAJ|--|---|Omidiyeh||Iran|2|30-50-07N|049-32-06E|||26|| -OIAM|--|---|Bandar Mahshahr / Mahshahr||Iran|2|30-33-23N|049-09-07E|||2|| -OIAW|40|811|Ahwaz||Iran|2|31-20N|048-40E|||20|22|P -OIBA|--|---|Abumusa Island / Abumusa||Iran|2|25-52-33N|055-02-01E|||7|| -OIBB|40|858|Bushehr Civ / Afb ||Iran|2|28-59N|050-50E|||19|| -OIBK|--|---|Kish Island / Kish||Iran|2|26-31-36N|053-58-54E|||30|| -OIBL|40|883|Bandar Lengeh||Iran|2|26-35N|054-50E|||14|14|P -OIBS|--|---|Sirri Island / Sirri||Iran|2|25-54-34N|054-32-22E|||13|| -OICC|40|766|Kermanshah||Iran|2|34-16N|047-07E|34-21N|047-09E|1320|1322|P -OICG|40|765|Ghasre-Shirin||Iran|2|34-31N|045-35E|||378|| -OICI|--|---|Ilam||Iran|2|33-35-09N|046-24-20E|||1334|| -OICK|--|---|Khorram Abad||Iran|2|33-26-11N|048-17-09E|||1155|| -OICS|40|747|Sanandaj||Iran|2|35-20N|047-00E|||1373|1373|P -OIFK|40|785|Kashan||Iran|2|33-59N|051-27E|||982|982|P -OIFM|40|800|Esfahan||Iran|2|32-28N|051-43E|32-37N|051-40E|1590|1550|P -OIFS|40|798|Shahre-Kord||Iran|2|32-20N|050-51E|||2078|1991|P -OIGG|40|719|Rasht||Iran|2|37-12N|049-38E|||-7|37|P -OIHH|--|---|Hamadan||Iran|2|34-52-05N|048-33-08E|||1757|| -OIHR|40|769|Arak||Iran|2|34-06N|049-24E|||1720|1720|P -OIII|40|754|Tehran-Mehrabad||Iran|2|35-41N|051-21E|35-41N|051-19E|1204|1191|P -OIIK|40|731|Ghazvin||Iran|2|36-15N|050-00E|||1278|1278|P -OIIP|--|---|Karaj / Payam||Iran|2|35-46-34N|050-49-36E|||1271|| -OIIS|40|757|Semnan||Iran|2|35-33N|053-23E|||1171|1171|P -OIKB|40|875|Bandarabbass||Iran|2|27-13N|056-22E|27-13N|056-22E|10|10|P -OIKK|40|841|Kerman||Iran|2|30-15N|056-58E|30-15N|056-58E|1748|1754|P -OIKM|40|854|Bam||Iran|2|29-06N|058-24E|||1067|1067|P -OIKQ|--|---|Gheshm Island / Dayrestan||Iran|2|26-45-18N|055-54-08E|||12|| -OIMB|40|809|Birjand||Iran|2|32-52N|059-12E|32-52N|059-12E|1491|1491|P -OIMC|--|---|Sarakhs||Iran|2|36-30-04N|061-03-54E|||288|| -OIMH|40|762|Torbat-Heydarieh||Iran|2|35-16N|059-13E|||1333|1333|P -OIMM|40|745|Mashhad||Iran|2|36-16N|059-38E|36-16N|059-38E|989|980|P -OIMN|40|723|Bojnourd||Iran|2|37-28N|057-20E|||1074|1074| -OIMS|40|743|Sabzevar||Iran|2|36-13N|057-40E|||941|941|P -OIMT|40|791|Tabas||Iran|2|33-36N|056-55E|||710|711| -OING|40|738|Gorgan||Iran|2|36-49N|054-28E|36-51N|054-28E|155|155|P -OINN|--|---|Noshahr||Iran|2|36-39-48N|051-27-53E|||0|| -OINR|40|732|Ramsar||Iran|2|36-54N|050-40E|||-23|-20|P -OISA|40|818|Abadeh||Iran|2|31-11N|052-40E|||2004|2004| -OISF|40|859|Fasa||Iran|2|28-58N|053-41E|||1383|1383|P -OISL|--|---|Lar||Iran|2|27-40-26N|054-22-53E|||792|| -OISS|40|848|Shiraz||Iran|2|29-32N|052-35E|29-32N|052-35E|1486|1491|P -OISY|--|---|Yasouj / National||Iran|2|30-41-49N|051-33E|||1825|| -OITK|40|703|Khoy||Iran|2|38-33N|044-58E|||1107|1107|P -OITL|--|---|Ardabil||Iran|2|38-19-35N|048-25-28E|||1315|| -OITM|--|---|Maragheh / Sahand||Iran|2|37-20-55N|046-07-35E|||1340|| -OITR|40|712|Orumieh||Iran|2|37-32N|045-05E|||1297|1312|P -OITS|40|727|Saghez||Iran|2|36-15N|046-16E|||1493|1493|P -OITT|40|706|Tabriz||Iran|2|38-05N|046-17E|38-08N|046-15E|1367|1361|P -OITZ|40|729|Zanjan||Iran|2|36-41N|048-29E|||1663|1663|P -OIYY|40|821|Yazd||Iran|2|31-54N|054-24E|||1238|1230|P -OIZB|40|829|Zabol||Iran|2|31-20N|061-29E|||489|489|P -OIZC|40|898|Chahbahar||Iran|2|25-25N|060-45E|||6|6|P -OIZH|40|856|Zahedan||Iran|2|29-28N|060-53E|29-28N|060-53E|1370|1370|P -OIZI|40|879|Iranshahr||Iran|2|27-12N|060-42E|||591|591|P -OIZJ|40|893|Jask||Iran|2|26-38N|057-46E|||3|4| -OJAI|40|272|Queen Alia Airport||Jordan|6|31-40N|035-58E|||721|| -OJAM|40|270|Amman Airport||Jordan|6|31-59N|035-59E|31-59N|035-59E|767|768|P -OJAQ|40|340|Aqaba Airport||Jordan|6|29-38N|035-01E|||53|51| -OJBD|40|255|Irbid||Jordan|6|32-33N|035-51E|32-33N|035-51E|618|619|P -OJHF|40|260|H-5'Safawi||Jordan|6|32-12N|037-08E|||668|670|P -OJHR|40|250|H-4'Irwaished||Jordan|6|32-30N|038-12E|||686|688|P -OJMF|40|265|Mafraq||Jordan|6|32-22N|036-15E|32-22N|036-16E|686|687| -OJMN|40|310|Ma'An||Jordan|6|30-10N|035-47E|30-10N|035-47E|1069|1070|P -OKBK|40|582|Kuwait Internationalairport||Kuwait|2|29-13N|047-59E|29-13N|047-59E|55|55|P -OLBA|40|100|Beyrouth Aeroport ||Lebanon|6|33-49N|035-29E|33-49N|035-29E|29|19| -OMAA|41|217|Abu Dhabi International Airport||United Arab Emirates|2|24-26N|054-39E|24-26N|054-39E|16|27| -OMAB|--|---|Buhasa||United Arab Emirates|2|23-37N|053-23E|||94|| -OMAD|41|216|Abu Dhabi Bateen Airport||United Arab Emirates|2|24-26N|054-28E|||5|3| -OMAL|41|218|Al Ain International Airport||United Arab Emirates|2|24-16N|055-36E|||265|262| -OMDB|41|194|Dubai International Airport||United Arab Emirates|2|25-15N|055-20E|||8|5| -OMFJ|41|198|Fujairah||United Arab Emirates|2|25-06N|056-20E|||28|28| -OMRK|41|184|Ras Al Khaimah International Airport||United Arab Emirates|2|25-37N|055-56E|||31|31| -OMSJ|41|196|Sharjah International Airport||United Arab Emirates|2|25-20N|055-31E|||35|33| -OOBR|41|244|Buraimi||Oman|2|24-14N|055-47E|||299|| -OOFD|41|262|Fahud||Oman|2|22-21N|056-29E|||170|| -OOKB|41|240|Khassab||Oman|2|26-13N|056-14E|||3|| -OOMA|41|288|Masirah||Oman|2|20-40N|058-54E|20-40N|058-54E|19|19|P -OOMS|41|256|Seeb, International Airport||Oman|2|23-35N|058-17E|23-35N|058-17E|8|17|P -OOSA|41|316|Salalah||Oman|2|17-02N|054-05E|17-02N|054-05E|20|17|P -OOSH|41|246| Sohar Majis||Oman|2|24-28N|056-38E|||4|| -OOSQ|41|254|Saiq||Oman|2|23-04N|057-39E|||1755|| -OOSR|41|268|Sur||Oman|2|22-32N|059-29E|||14|| -OOTH|41|314|Thumrait||Oman|2|17-40N|054-02E|||467|| -OPDI|41|624|Dera Ismail Khan||Pakistan|2|31-49N|070-55E|31-49N|070-55E|172|173|P -OPJA|41|715|Jacobabad||Pakistan|2|28-18N|068-28E|28-18N|068-28E|55|56|P -OPJI|41|756|Jiwani||Pakistan|2|25-04N|061-48E|25-04N|061-48E|56|57|P -OPKC|41|780|Karachi Airport||Pakistan|2|24-54N|067-08E|24-54N|067-08E|21|22|P -OPKD|41|764|Hyderabad Airport||Pakistan|2|25-23N|068-25E|||40|41|P -OPLA|41|641|Lahore Airport||Pakistan|2|31-31N|074-24E|||216|217|P -OPLH|41|640|Lahore City||Pakistan|2|31-33N|074-20E|31-33N|074-20E|214|215|P -OPMI|41|592|Mianwali||Pakistan|2|32-33N|071-31E|||210|212|P -OPMT|41|675|Multan||Pakistan|2|30-12N|071-26E|30-12N|071-26E|122|123|P -OPNH|41|749|Nawabshah||Pakistan|2|26-15N|068-22E|26-15N|068-22E|37|38|P -OPPG|41|739|Panjgur||Pakistan|2|26-58N|064-06E|26-58N|064-06E|980|981|P -OPPS|41|530|Peshawar||Pakistan|2|34-01N|071-35E|34-01N|071-35E|359|360|P -OPQT|41|660|Quetta Airport||Pakistan|2|30-15N|066-53E|||1587|1589|P -OPRN|41|571|Islamabad Airport||Pakistan|2|33-37N|073-06E|33-37N|073-06E|507|508|P -OPRS|41|533|Risalpur||Pakistan|2|34-04N|071-59E|||315|317|P -OPSB|41|697|Sibi||Pakistan|2|29-33N|067-53E|||133|134|P -OPSK|--|---|Sukkur||Pakistan|2|27-43-19N|068-47-31E|||60|| -OPSR|41|594|Sargodha||Pakistan|2|32-03N|072-40E|32-03N|072-40E|187|188|P -ORBB|40|650|Baghdad||Iraq|2|33-14N|044-14E|33-14N|044-14E|34|34|P -ORBM|40|608|Mosul||Iraq|2|36-19N|043-09E|36-19N|043-09E|223|223|P -ORBS|--|---|Saddam Irq-Afb / Civ ||Iraq|2|33-16N|044-14E|||34|| -ORMS|40|688|Shaibah / Basrah||Iraq|2|30-25N|047-39E|||19|| -OSAP|40|007|Aleppo International Airport||Syria|6|36-11N|037-12E|36-20N|037-13E|393|384|P -OSDI|40|080|Damascus Int. Airport||Syria|6|33-25N|036-31E|33-25N|036-31E|608|609|P -OSDZ|40|045|Deir Ezzor||Syria|6|35-19N|040-09E|35-19N|040-09E|215|212|P -OSKL|40|001|Kamishli||Syria|6|37-03N|041-13E|37-03N|041-13E|455|455|P -OSLK|40|022|Lattakia||Syria|6|35-32N|035-46E|35-30N|035-47E|7|7|P -OSPR|40|061|Palmyra||Syria|6|34-33N|038-18E|||408|404|P -OTBD|41|170|Doha International Airport||Qatar|2|25-15N|051-34E|25-16N|051-33E|11|10| -OYAA|41|480|Aden||Yemen|2|12-40N|045-02E|||3|3| -OYAR|41|443|Riyan||Yemen|2|14-39N|049-23E|||16|25| -OYAT|41|437|Ataq||Yemen|2|14-31N|046-51E|||1067|1067| -OYHD|41|431|Hodeidah||Yemen|2|14-45N|042-59E|||115|115| -OYMB|41|350|Marib ||Yemen|2|15-26N|045-20E|||1000|| -OYMC|41|477|Mokha||Yemen|2|13-15N|044-08E|||4|3| -OYMK|41|382|Mokha ||Yemen|2|13-15N|043-17E|||3|| -OYSH|--|---|Sa'Ada / Sadah ||Yemen|2|16-58N|043-44E|||1890|| -OYSN|41|404|Sana'A||Yemen|2|15-31N|044-11E|15-23N|044-12E|2206|2190| -OYSQ|41|494|Socotra||Yemen|2|12-38N|053-54E|12-38N|053-54E|45|47| -OYSY|--|---|Sayun||Yemen|2|15-58N|048-48E|||701|| -OYTZ|41|466|Taiz||Yemen|2|13-41N|044-08E|||1402|1385| -OYZM|41|326|Al-Hazm ||Yemen|2|16-12N|044-47E|||1900|| -PAAK|--|---|Atka, Atka Airport|AK|United States|4|52-13-13N|174-12-23W|||17|| -PAAP|--|---|Port Alexander, Port Alexander Seaplane Base|AK|United States|4|56-15N|134-39W|||0|| -PAAQ|70|274|PALMER MUNICIPAL AIRPORT|AK|United States|4|61-36N|149-06W|||76|| -PABA|70|086|Barter Island, Barter Island LRRS Airport|AK|United States|4|70-08-02N|143-34-37W|70-08N|143-38W|2|15|P -PABE|70|219|BETHEL AIRPORT|AK|United States|4|60-47N|161-50W|60-47N|161-50W|37|46| -PABG|--|---|Big Delta Arctic Weather|AK|United States|4|64-00N|145-43W|||389|| -PABI|70|267|ALLEN ARMY AIRFIELD|AK|United States|4|64-00N|145-43W|64-00N|145-44W|389|391| -PABL|00|000|Buckland, Buckland Airport|AK|United States|4|65-58-56N|161-09-07W|||7|| -PABN|--|---|Nabesna, Devil Mountain Lodge|AK|United States|4|62-23-52N|142-59-45W|||884|| -PABR|70|026|POST ROGERS MEMORIAL AIRPORT|AK|United States|4|71-17N|156-46W|71-17-21N|156-47-02W|13|10| -PABT|70|174|BETTLES AIRPORT|AK|United States|4|66-54N|151-31W|66-54N|151-31W|196|196| -PABV|--|---|Birchwood, Birchwood Airport|AK|United States|4|61-25N|149-31W|||29|| -PACD|70|316|COLD BAY AIRPORT|AK|United States|4|55-13N|162-44W|55-12-05N|162-42-50W|30|29| -PACE|--|---|Central, Central|AK|United States|4|65-34-01N|144-46-00W|||282||^M -PACL|--|---|Clear|AK|United States|4|64-18N|149-07W|||168|| -PACP|70|360|Cape Saint Elias|AK|United States|4|59-48N|144-36W|||18|| -PACR|--|---|Circle City Airport|AK|United States|4|65-50N|144-04W|||182|| -PACS|--|---|Cape Sarichef Airport|AK|United States|4|54-36N|164-56W|||9|| -PACV|70|296|MERLE K. SMITH AIRPORT|AK|United States|4|60-30N|145-29W|||13|13| -PACY|70|298|Yakataga|AK|United States|4|60-05N|142-30W|||4|11| -PACZ|70|212|Cape Romanzof, Cape Romanzof LRRS Airport|AK|United States|4|61-47N|166-02W|||139|| -PADE|--|---|DEERING AIRPORT|AK|United States|4|66-04N|162-46W|||6|| -PADK|70|454|Adak Island, Adak Airport|AK|United States|4|51-52-40N|176-38-45W|51-52-50N|176-38-33W|6|4| -PADL|70|321|Dillingham, Dillingham Airport|AK|United States|4|59-03N|158-31W|||26|29| -PADQ|70|350|KODIAK AIRPORT|AK|United States|4|57-45N|152-29W|57-45N|152-30W|22|34| -PADT|--|---|Slana|AK|United States|4|62-42-32N|143-58-52W|||668|| -PADU|70|489|Unalaska, Unalaska Airport|AK|United States|4|53-54N|166-32W|||7|| -PAEC|--|---|Chulitna, Chulitna River|AK|United States|4|62-49-32N|149-54-23W|||412|| -PAED|70|272|Anchorage, Elmendorf Air Force Base|AK|United States|4|61-15-11N|149-47-38W|||65|59| -PAEG|--|---|EAGLE AIRPORT|AK|United States|4|64-47N|141-09W|||274|| -PAEH|70|305|Cape Newenham, Cape Newenham LRRS Airport|AK|United States|4|58-39N|162-04W|||165|| -PAEI|70|265|Fairbanks, Eielson Air Force Base|AK|United States|4|64-39N|147-06W|64-39N|147-04W|167|167| -PAEL|--|---|Elfin Cove, Elfin Cove Seaplane Base|AK|United States|4|58-12N|136-21W|||0|| -PAEM|--|---|Emmonak, Emmonak Airport|AK|United States|4|62-47N|164-30W|||4|| -PAEN|70|259|KENAI MUNICIPAL AIRPORT|AK|United States|4|60-35N|151-14W|60-34-25N|151-14-13W|28|25| -PAER|--|---|Merrill Pass West|AK|United States|4|61-15N|153-49W|||358|| -PAFA|70|261|Fairbanks, Fairbanks International Airport|AK|United States|4|64-48-14N|147-52-34W|64-49-11N|147-51-29W|132|140|P -PAFB|--|---|FT. WAINWRIGHT AAF|AK|United States|4|64-50N|147-35W|||138|| -PAFE|--|---|Kake, Kake Airport|AK|United States|4|56-57N|133-54W|||52|| -PAFK|--|---|Farewell Lake, Farewell Lake Seaplane Base|AK|United States|4|62-32-33N|153-37-21W|||321|| -PAFM|70|171|Ambler, Ambler Airport|AK|United States|4|67-06N|157-51W|||88|| -PAFR|70|270|Ft. Richardson / Bryant U. S. Army Heliport, Ak|AK|United States|4|61-16N|149-39W|61-16N|149-39W|115|115| -PAFW|--|---|Farewell Lake|AK|United States|4|62-32N|153-37W|||323|| -PAGA|70|222|Galena, Edward G. Pitka Sr. Airport|AK|United States|4|64-44N|156-56W|64-44N|156-56W|46|49| -PAGB|--|---|Galbraith Lake, Galbraith Lake Airport|AK|United States|4|68-29N|149-29W|||814|| -PAGK|70|271|GULKANA AIRPORT|AK|United States|4|62-09N|145-27W|||481|481| -PAGL|--|---|Golovin, Golovin Airport|AK|United States|4|64-32-36N|163-02-22W|||8|| -PAGM|70|204|Gambell, Gambell Airport|AK|United States|4|63-46N|171-44W|||8|| -PAGN|70|383|Angoon|AK|United States|4|57-30N|134-35W|||0|1| -PAGS|70|367|Gustavus, Gustavus Airport|AK|United States|4|58-25N|135-42W|||10|9| -PAGT|--|---|Nightmute|AK|United States|4|60-28N|164-42W|||4|| -PAGY|70|362|SKAGWAY AIRPORT|AK|United States|4|59-28N|135-19W|||13|5| -PAHD|70|341|Homer / Municipal|AK|United States|4|59-38N|151-30W|||24|22| -PAHL|--|---|Huslia, Huslia Airport|AK|United States|4|65-41-51N|156-21-4W|||65|| -PAHN|--|---|HAINES AIRPORT|AK|United States|4|59-15N|135-31W|||5|| -PAHO|--|---|HOMER AIRPORT|AK|United States||59-39N|151-29W|||24|| -PAHP|--|---|Hooper Bay, Hooper Bay Airport|AK|United States|4|61-31N|166-08W|||5|| -PAHS|--|---|Huslia, Huslia Airport|AK|United States|4|65-42N|156-23W|||55|| -PAHV|--|---|Healy, Healy|AK|United States|4|63-52-40N|149-00-41W|||431|| -PAHY|--|---|Hydaburg, Hydaburg Seaplane Base|AK|United States|4|55-12N|132-50W|||0|| -PAHZ|--|---|Hayes River, Hayes River Airport|AK|United States|4|61-59N|152-05W|||305|| -PAII|--|---|Egegik, Egegik Airport|AK|United States|4|58-11-07N|157-23-08W|||28|| -PAIK|--|---|Kiana Kinana/Bob Baker Mem|AK|United States|4|66-59N|160-26W|||46|| -PAIL|70|340|ILIAMNA AIRPORT|AK|United States|4|59-45N|154-55W|||63|49| -PAIM|70|173|Utopia Creek, Indian Mountain LRRS Airport|AK|United States|4|66-59N|153-42W|||372|| -PAIN|--|---|McKinley Park, McKinley National Park Airport|AK|United States|4|63-44N|148-55W|||524|| -PAIW|--|---|Wales|AK|United States|4|65-37N|168-06W|||7|| -PAIZ|--|---|Lazy Mtn / Wolverine|AK|United States|4|61-38N|149-02W|||236|| -PAJB|--|---|Biorka Island Supplementary Aviation Weather Reporting Station|AK|United States|4|56-51N|135-32W|||15|| -PAJC|--|---|Chignik, Chignik Airport|AK|United States|4|56-18-41N|158-22-24W|||6|| -PAJN|70|381|JUNEAU INTERNATIONAL AIRPORT|AK|United States|4|58-21N|134-34W|58-21-48N|134-34-33W|6|8| -PAJO|--|---|Johnstone Point|AK|United States|4|60-29N|146-36W|||14|| -PAJV|--|---|Sutton|AK|United States|4|61-43N|148-53W|||265|| -PAKI|--|---|Kipnuk, Kipnuk Airport|AK|United States|4|59-55-58N|164-01-49W|||3|| -PAKK|--|---|Koyuk, Koyuk Airport|AK|United States|4|64-56-02N|161-09-29W|||37|| -PAKN|70|326|KING SALMON AIRPORT|AK|United States|4|58-41N|156-39W|58-40-50N|156-39-28W|17|10| -PAKO|70|482|Nikolski|AK|United States|4|52-57N|168-51W|||21||P -PAKP|--|---|Anaktuvuk Pass, Anaktuvuk Pass Airport|AK|United States|4|68-08-01N|151-44-36W|||641|| -PAKT|70|395|KETCHIKAN INTERNATIONAL AIRPORT |AK|United States|4|55-21N|131-43W|55-21-10N|131-42-24W|27|25| -PAKU|--|---|Kuparuk, Ugnu-Kuparuk Airport|AK|United States|4|70-19N|149-35W|||20|| -PAKV|--|---|KALTAG AIRPORT|AK|United States|4|64-19N|158-44W|||57|| -PAKW|70|389|Klawock, Klawock Airport|AK|United States|4|55-35N|133-05W|||24|| -PALH|--|---|LAKE HOOD|AK|United States|4|61-11N|149-59W|||22|| -PALJ|--|---|Port Alsworth, Port Alsworth Airport|AK|United States|4|60-12N|154-19W|||85|| -PALK|--|---|Snowshoe Lake|AK|United States|4|62-01-48N|146-41-33W|||701|| -PALP|--|---|Deadhorse, Alpine Airstrip|AK|United States|4|70-20N|150-56W|||5|| -PALR|--|---|Chandalar Lake, Chandalar Lake Airport|AK|United States|4|67-30N|148-29W|||585|| -PALU|70|104|Cape Lisburne, Cape Lisburne LRRS Airport|AK|United States|4|68-53N|166-06W|||4|| -PALV|--|---|Big River Lake|AK|United States|4|60-49N|152-18W|||12|| -PAMC|70|231|MCGRATH AIRPORT|AK|United States|4|62-57N|155-36W|62-58N|155-37W|103|103| -PAMD|70|343|Middleton Island, Middleton Island Airport|AK|United States|4|59-26N|146-18W|||27|14| -PAMH|70|246|Minchumina, Minchumina Airport|AK|United States|4|63-52-50N|152-18-02W|||208|214| -PAML|--|---|Manley Hot Springs, Manly Hot Springs Airport|AK|United States|4|64-59-55N|150-38-17W|||81|| -PAMM|--|---|Metlakatla, Metlakatla Seaplane Base|AK|United States|4|55-07-52N|131-34-41W|||0|| -PAMR|--|---|ANCHORAGE MERRILL FIELD|AK|United States|4|61-13N|149-51W|||42|| -PAMX|--|---|McCarthy|AK|United States|4|61-26N|142-56W|||455|| -PAMY|--|---|Mekoryuk, Mekoryuk Airport|AK|United States|4|60-22N|166-16W|||15|| -PANC|70|273|TED STEVENS ANCHORAGE INTERNATIONAL |AK|United States|4|61-10N|150-02W|61-10-25N|150-00-39W|44|48| -PANI|70|232|Aniak, Aniak Airport|AK|United States|4|61-34-53N|159-32-34W|||27|26| -PANN|70|260|NENANA MUNICIPAL AIRPORT|AK|United States|4|64-33N|149-04W|||110|| -PANR|--|---|Funter Bay Seaplane|AK|United States|4|58-15N|134-54W|||0|| -PANT|70|398|ANNETTE ISLAND AIRPORT|AK|United States|4|55-02N|131-35W|55-02N|131-34W|36|34| -PANV|--|---|Anvik, Anvik Airport|AK|United States|4|62-38-54N|160-11-23W|||94|| -PAOH|--|---|Hoonah, Hoonah Seaplane Base|AK|United States|4|58-07N|135-27W|||0|| -PAOM|70|200|NOME AIRPORT|AK|United States|4|64-31N|165-26W|64-30-32N|165-25-50W|11|4| -PAOR|70|291|NORTHWAY AIRPORT|AK|United States|4|62-58N|141-56N|62-57-44N|141-56-10W|523|522| -PAOT|70|133|WIEN MEMORIAL AIRPORT|AK|United States|4|66-53N|162-36W|66-53-12N|162-36-31W|3|5| -PAPB|--|---|ST. GEORGE AIRPORT|AK|United States|4|56-35N|169-40W|||38|| -PAPC|70|119|Port Clarence, Port Clarence Coast Guard Station|AK|United States|4|65-15N|166-51W|||3|5| -PAPG|70|386|Petersburg|AK|United States|4|56-49N|132-58W|||0|| -PAPH|70|333|Port Heiden, Port Heiden Airport|AK|United States|4|56-57N|158-38W|||29||P -PAPM|--|---|Platinum|AK|United States|4|59-01N|161-49W|||3|| -PAPO|--|---|Point Hope, Point Hope Airport|AK|United States|4|68-21N|166-48W|||4|| -PAPR|--|---|Prospect Creek, Prospect Creek Airport|AK|United States|4|66-48-46N|150-38-38W|||335|| -PAPT|70|249|Puntilla|AK|United States|4|62-06N|152-45W|||560|| -PAQT|70|364|NUIQSUT AIRPORT|AK|United States|4|70-13N|150-59W|70-12-49N|150-59-18W|12|17| -PARC|--|---|Arctic Village, Arctic Village Airport|AK|United States|4|68-06-52N|145-34-45W|||638|| -PARD|--|---|Red Dog, Red Dog Airport|AK|United States|4|68-01-53N|162-54-11W|||297|| -PARL|--|---|Central, Central Airport|AK|United States|4|65-34-26N|144-46-59W|||284|| -PASA|--|---|Savoonga Airport|AK|United States|4|63-41N|170-30W|||16|| -PASC|--|---|DEADHORSE AIRPORT|AK|United States|4|70-12N|148-29W|||19|| -PASD|--|---|Sand Point|AK|United States|4|55-19N|160-31W|||7|| -PASG|--|---|Skagway, Skagway Airport|AK|United States|4|59-27-19N|136-19-23W|59-27-19N|136-19-23W|13|7| -PASH|--|---|Shishmaref, Shishmaref Airport|AK|United States|4|66-16N|166-05W|||4|| -PASI|70|371|SITKA AIRPORT|AK|United States|4|57-03N|135-22W|57-02-53N|135-21-53W|6|14| -PASK|--|---|Selawik|AK|United States|4|66-37N|160-00W|||8|| -PASL|--|---|Sleetmute|AK|United States|4|61-43N|157-09W|||54|| -PASM|--|---|St. Mary's, St. Mary's Airport|AK|United States|4|62-03N|163-18W|||95|| -PASN|70|308|ST PAUL ISLAND AIRPORT|AK|United States|4|57-10N|170-13W|57-09N|170-13W|19|9| -PASO|--|---|SELDOVIA AIRPORT|AK|United States|4|59-27N|151-42W|||9|| -PASP|--|---|Sheep Mountain, Sheep Mountain Lodge|AK|United States|4|61-48-45N|147-29-59W|||838|| -PASV|70|235|Sparrevohn Airways Facilities Sector|AK|United States|4|61-06N|155-34W|||484|| -PASW|70|255|Skwentna|AK|United States|4|61-58-38N|151-13-02W|||46|| -PASX|--|---|Soldotna|AK|United States|4|60-29N|151-02W|||33|| -PASY|70|414|SHEMYA EARECKSON AS|AK|United States|4|52-43N|174-07E|||30|| -PATA|70|178|TANANA CALHOUN MEMORIAL AIRPORT |AK|United States|4|65-10N|152-06W|||72|67| -PATC|70|117|Tin City Airways Facilities Sector|AK|United States|4|65-34N|167-55W|||83|| -PATE|--|---|Teller|AK|United States|4|65-14N|166-20W|||90|| -PATG|--|---|Togiac Village, Togiak Airport|AK|United States|4|59-03N|160-24W|||6|| -PATJ|--|---|Tok|AK|United States|4|63-19N|142-43W|||509|| -PATK|70|251|TALKEETNA AIRPORT|AK|United States|4|62-19N|150-06W|||109|109| -PATL|--|---|Takotna, Tatalina LRRS Airport|AK|United States|4|62-54N|155-59W|||294|| -PATO|--|---|PORTAGE GLACIER|AK|United States|4|60-47N|148-51W|||31|| -PATW|--|---|Cantwell, Cantwell|AK|United States|4|62-23-43N|148-53-48W|||651|| -PAUM|70|162|Umiat|AK|United States|4|69-22N|152-08W|||81|85| -PAUN|70|207|Unalakleet|AK|United States|4|63-53N|160-48W|||6|6|P -PAUO|--|---|Willow Lake|AK|United States|4|61-44-53N|150-03-16W|||64|| -PAVD|--|---|Valdez 2|AK|United States|4|61-08N|146-16W|||37|| -PAVL|--|---|KIVALINA AIRPORT|AK|United States|4|67-44N|164-33W|||4|| -PAVW|--|---|Valdez Weather Station Office|AK|United States|4|61-08N|146-21W|||10|| -PAWD|70|277|Seward|AK|United States|4|60-07N|149-27W|||9|18| -PAWG|70|387|Wrangell|AK|United States|4|56-29N|132-22W|||13|13| -PAWI|70|030|WAINWRIGHT AIRPORT|AK|United States|4|70-38N|160-02W|||9|| -PAWN|--|---|Noatak, Noatak Airport|AK|United States|4|67-34N|162-59W|||27|| -PAWR|--|---|Whittier|AK|United States|4|60-46-22N|148-41-06W|||20|| -PAWS|--|---|Wasilla, Wasilla Airport|AK|United States|4|61-34-19N|149-32-26W|||106|| -PAXK|--|---|Paxson|AK|United States|4|63-01-58N|145-29-53W|||823|| -PAYA|70|361|YAKUTAT AIRPORT|AK|United States|4|59-30N|139-40W|59-31N|139-40W|10|9| -PAZK|--|---|Eureka, Skelton Airport|AK|United States|4|61-56N|147-10W|||1002|| -PBTI|--|---|Barter Island Distant Early Warning |AK|United States|4|70-08N|143-35W|||2|| -PFYU|70|194|Fort Yukon, Fort Yukon Airport|AK|United States|4|66-34N|145-16W|66-35N|145-05W|433|431|P -PGAC|91|217|Guam, Mariana Island|GU|United States|5|13-55N|144-50E|||111|| -PGNT|91|233|Sabanettan / Tinian Island|GU|United States|5|14-96N|145-06E|14-58N|145-36E|80|80| -PGRO|91|221|Rota Island, N. Mariana Is, Rota International Airport|GU|United States|5|14-11N|145-15E|||185|| -PGSN|91|232|Saipan Island, Saipan International Airport|Northern Mariana Islands|United States|5|15-07N|145-44E|15-07N|145-45W|66|3| -PGUA|91|218|Andersen, Mariana Is, Andersen Air Force Base|GU|United States|5|13-35N|144-56E|13-35N|144-55E|187|187| -PGUM|91|212|Agana, Guam International Airport|GU|United States|5|13-29N|144-48E|13-21N|144-48E|91|| -PGWT|91|233|Tinian Island, N. Mariana Is, West Tinian Airport|GU|United States|5|14-59N|145-37E|||82|| -PHBK|91|162|PMRF BARKING SANDS|HI|United States|5|22-02N|159-47W|22-02-00N|159-47-00W|4|3| -PHHI|91|170|Wheeler Air Force Base / Oahu|HI|United States|5|21-29N|158-02W|21-29N|158-02W|255|256| -PHHN|--|---|Hana, Hana Airport|HI|United States|5|20-47-44N|156-00-52W|||24|| -PHIK|--|---|Hickam Air Force Base / Oahu |HI|United States|5|21-19N|157-55W|||4|| -PHJH|--|---|Lahaina / West Maui|HI|United States|5|21-01N|156-38W|||40|| -PHJR|91|178|KALAELOA AIRPORT|HI|United States|5|21-19N|158-04W|21-18-20N|158-04-28W|10|15| -PHKO|--|---|KONA INTERNATIONAL AIRPORT|HI|United States|5|19-44N|156-03W|19-44-08N|156-02-30W|13|27| -PHLI|91|165|LIHUE AIRPORT|HI|United States|5|21-59N|159-20W|21-59-13N|159-20-36W|45|31| -PHMK|91|186|Kaunakakai, Molokai Airport|HI|United States|5|21-09N|157-06W|21-09N|157-06W|138|134| -PHMO|--|---|KAUNAKAKAI MOLOKAI AIRPORT|HI|UNITED STATES|4|21-09N|157-06W|||138|| -PHMU|--|---|Kamuela, Waimea-Kohala Airport|HI|United States|5|20-00N|155-40W|||814|| -PHNG|91|176|MCBH KANEOHE BAY HAWAII|HI|United States|5|21-27N|157-45W|21-26-27N|157-46-32W|7|1| -PHNL|91|182|HONOLULU INTERNATIONAL AIRPORT |HI|United States|5|21-20N|157-57W|21-19-26N|157-55-47W|4|4| -PHNY|--|---|Lanai City, Lanai Airport|HI|United States|4|20-47-08N|156-57-05W|||399|| -PHOG|91|190|KAHULUI AIRPORT|HI|United States|5|20-54N|156-26W|20-54-02N|156-25-44W|16|12| -PHSF|--|---|Bradshaw Army Air Field / Hawaii|HI|United States|5|19-47N|155-33W|||1887|| -PHTO|91|285|HILO INTERNATIONAL AIRPORT|HI|United States|5|19-43N|155-03W|19-43-16N|155-03-46W|12|12| -PHWH|91|293|South Kona / Hawaii|HI|United States|5|19-06N|155-45W|||808|| -PJON|91|275|Johnston Island, Johnston Atoll Airport||United States Minor Outlying Islands|5|16-44N|169-32W|16-44N|169-31W|2|2| -PKMJ|91|376|Majuro Atoll, Marshall Islands Int. Airp.||Marshall Islands|5|07-04N|171-17E|07-05N|171-23E|2|3| -PKMR|--|---|Majuro Atoll, NWS Office||Marshall Islands|5|07-05N|171-12E|||4|| -PKWA|91|366|Kwajalein, Bucholz AAF, Kwajalein KMR ATOL Airport||Marshall Islands|5|08-43N|167-44E|08-44N|167-44E|3|2| -PLCH|91|490|Christmas / Cassidy||New Zealand|5|01-59N|157-29W|||3|| -PLFA|91|487|Fanning Island||New Zealand|5|03-51N|159-22W|03-54N|159-23W|5|3| -PMDY|91|066|Sand Island, Henderson Field Airport|HI|United States|5|28-13N|177-22W|28-13N|177-22W|4|6| -POLI|70|063|Oliktok Distant Early Warning |AK|United States|4|70-30N|149-53W|||5|| -PPIZ|70|121|Point Lay, Point Lay LRRS Airport|AK|United States|4|69-43N|163-00W|||8||P -PTKK|91|334|Weno Island, Chuuk Int. Airp.||Micronesia, Federated States of|5|07-28N|151-51E|07-28N|151-51E|3|2| -PTKR|--|---|Koror, Palau, NWS Office||Palau|5|07-20N|134-29E|||30|| -PTPN|91|348|Pohnpei Island, Pohnpei Int. Airp.||Micronesia, Federated States of|5|06-59N|158-12E|06-58N|158-13E|2|| -PTRO|91|408|Babelthuap Island, Babelthuap/Koror Airport||Palau|5|07-22N|134-32E|07-20N|134-29E|54|| -PTSA|91|356|Kosrae Island, Kosrae Airport||Micronesia, Federated States of|5|05-21N|162-57E|||3|| -PTTK|91|355|Kosrae Carolines / V||Micronesia, Federated States of|5|05-21N|162-57E|||2|| -PTTP|--|---|Pohnpei, NWS Office||Micronesia, Federated States of|5|06-58N|158-13E|||39|| -PTYA|91|413|Yap Island, Yap Int. Airp.||Micronesia, Federated States of|5|09-29N|138-05E|09-29N|138-05E|28|| -PWAK|91|245|Wake Island, Wake Island Army Airfield Airport|GU|United States|5|19-17N|166-39E|19-17N|166-39E|4|4| -RCAY|46|745|Kangshan Tw-Afb ||Taiwan|2|22-47N|120-16E|||10|| -RCBS|46|736|Chinmem / Shatou Air Force Base ||Taiwan|2|24-26N|118-22E|24-26N|118-26E|9|12| -RCDC|46|750|Pingtung South Air Force Base ||Taiwan|2|22-41N|120-28E|22-40N|120-27E|24|24| -RCFG|46|689|Mazu||Taiwan|2|26-10N|119-56E|26-09N|119-57E|91|30| -RCFN|--|---|Feng Nin Tw-Afb ||Taiwan|2|22-46N|121-05E|||42|| -RCFS|46|772|Chia Tung||Taiwan|2|22-25N|120-33E|||20|| -RCGM|46|697|Taoyuan Ab = 589650||Taiwan|2|25-04N|121-14E|25-03N|121-15E|45|48| -RCKH|46|740|Kaohsiung International Airport||Taiwan|2|22-35N|120-21E|||9|| -RCKU|46|746|Chiayi Tw-Afb ||Taiwan|2|23-28N|120-23E|23-28N|120-23E|25|25| -RCKW|46|752|Hengchun||Taiwan|2|21-56N|120-50E|||13|| -RCLG|46|751|Taichung Tw-Afb ||Taiwan|2|24-11N|120-39E|24-11N|120-39E|112|112| -RCLM|46|810|Dongsha||Taiwan|2|20-40N|116-43E|20-43N|116-43E|6|3| -RCLY|46|762|Lan Yu||Taiwan|2|22-02N|121-33E|||325|| -RCMJ|46|747|Donggang||Taiwan|2|22-28N|120-26E|22-28N|120-26E|8|8| -RCMQ|46|770|Wuchia Observatory||Taiwan|2|24-16N|120-37E|24-16N|120-37E|5|203| -RCMS|46|764|Ilan||Taiwan|2|24-45N|121-46E|||9|| -RCNN|46|743|Tainan Tw-Afb ||Taiwan|2|22-57N|120-12E|22-57N|120-13E|19|16| -RCNO|46|730|Dongshi||Taiwan|2|23-16N|119-40E|||45|| -RCPO|46|756|Hsinchu Tw-Afb ||Taiwan|2|24-49N|120-56E|||8|| -RCQC|46|734|Makung Ab||Taiwan|2|23-35N|119-37E|23-35N|119-37E|31|31| -RCQS|46|760|Chihhang Tw-Afb ||Taiwan|2|22-48N|121-11E|||37|| -RCSQ|46|758|Pingtung North Air Force Base ||Taiwan|2|22-42N|120-29E|||29|| -RCSS|46|696|Sungshan / Taipei||Taiwan|2|25-04N|121-33E|||6|| -RCTP|46|686|Chiang Kai Shek||Taiwan|2|25-05N|121-13E|||33|| -RCUK|46|738|Pa Kuei / Bakuai||Taiwan|2|24-56N|121-18E|||141|| -RCYU|46|763|Hulien Ab||Taiwan|2|24-02N|121-37E|24-01N|121-37E|16|14| -RJAA|47|686|New Tokyo Inter-National Airport||Japan|2|35-46N|140-23E|||41|44| -RJAF|47|709|Matsumoto Airport||Japan|2|36-10N|137-56E|||668|661| -RJAH|47|715|Hyakuri Ab||Japan|2|36-11N|140-25E|||32|35| -RJAI|--|---|Ichikawa ||Japan|2|35-44N|139-55E|||31|| -RJAK|47|716|Kasumigaura Ab||Japan|2|36-02N|140-12E|||26|29| -RJAM|47|991|Minamitorishima||Japan|2|24-18N|153-58E|24-18N|153-58E|8|9|P -RJAO|47|971|Chichijima||Japan|2|27-05N|142-11E|27-05N|142-11E|3|8|P -RJAT|47|721|Fuji Ab||Japan|2|35-19N|138-52E|||680|683| -RJAW|47|981|Iwojima||Japan|2|24-47N|141-19E|24-47N|141-20E|113|116| -RJBB|47|774|Kansai International Airport||Japan|2|34-25N|135-15E|||5|8| -RJBD|47|782|Nankishirahama Airport||Japan|2|33-40N|135-21E|||105|108| -RJBH|--|---|Hiroshimanishi||Japan|2|34-22N|132-26E|||5|| -RJBT|--|---|Tajima||Japan|2|35-31N|134-48E|||210|| -RJCA|47|477|Asahikawa Ab||Japan|2|43-48N|142-22E|||115|118| -RJCB|47|490|Obihiro Airport||Japan|2|42-44N|143-13E|||149|152| -RJCC|47|425|Chitose Ab||Japan|2|42-48N|141-40E|||27|30| -RJCH|47|488|Hakodate Airport||Japan|2|41-46N|140-49E|||33|36| -RJCJ|47|434|Chitose Japanese Air Self Defense Force ||Japan|2|42-49N|141-41E|||27|| -RJCK|47|489|Kushiro Airport||Japan|2|43-02N|144-12E|||95|98| -RJCM|47|481|Memambetsu Airport||Japan|2|43-53N|144-10E|||33|36| -RJCN|47|483|Nakashibetsu Airport||Japan|2|43-34N|144-58E|||66|69| -RJCO|47|479|Sapporo Ab||Japan|2|43-07N|141-23E|||8|11| -RJCR|--|---|Rebun Island||Japan|2|45-27N|141-02E|||27|| -RJCS|47|418|Kushiro||Japan|2|42-59N|144-24E|||32|37|P -RJCT|--|---|Tokachi Japanese Ground Self Defense Force ||Japan|2|42-54N|143-10E|||84|| -RJCW|47|441|Wakkanai Airport||Japan|2|45-24N|141-48E|||8|11| -RJCY|47|423|Muroran||Japan|2|42-19N|140-59E|||40|49| -RJDB|47|858|Iki Airport||Japan|2|33-45N|129-47E|||13|16| -RJDC|47|786|Yamaguchi Ube Airport||Japan|2|33-56N|131-17E|||5|8| -RJDK|--|---|Kamigoto||Japan|2|33-01N|129-11E|||20|| -RJDM|47|860|Metabaru Ab||Japan|2|33-19N|130-25E|||16|19| -RJDO|--|---|Ojika Island ||Japan|2|33-13N|129-03E|||20|| -RJDT|47|799|Tsushima Airport||Japan|2|34-17N|129-20E|||63|66| -RJEB|47|474|Mombetsu Airport||Japan|2|44-15N|143-32E|||6|9| -RJEC|47|476|Asahikawa Airport||Japan|2|43-40N|142-27E|||208|211| -RJEO|--|---|Okushiri Island||Japan|2|42-04N|139-27E|||36|| -RJER|--|---|Rishiri Island||Japan|2|45-15N|141-11E|||30|| -RJFA|47|803|Ashiya Ab||Japan|2|33-53N|130-39E|||30|33| -RJFC|47|836|Yakushima||Japan|2|30-23N|130-40E|||36|38| -RJFE|47|844|Fukue Airport||Japan|2|32-40N|128-50E|||77|80| -RJFF|47|808|Fukuoka Airport||Japan|2|33-35N|130-27E|33-35N|130-27E|9|12| -RJFG|47|870|Tanegashima Airport||Japan|2|30-33N|130-57E|||92|95| -RJFK|47|851|Kagoshima Airport||Japan|2|31-48N|130-43E|||272|275| -RJFM|47|857|Miyazaki Airport||Japan|2|31-52N|131-27E|||6|9| -RJFN|47|854|Nyutabaru Ab||Japan|2|32-05N|131-27E|||79|82| -RJFO|47|852|Oita Airport||Japan|2|33-29N|131-44E|||5|8| -RJFR|47|853|Kitakyushu Airport||Japan|2|33-50N|130-57E|||3|6| -RJFS|--|---|Saga Airport||Japan|2|33-09N|130-18E|||2|5| -RJFT|47|856|Kumamoto Airport||Japan|2|32-50N|130-51E|||193|196| -RJFU|47|855|Nagasaki Airport||Japan|2|32-55N|129-55E|32-55N|129-55E|2|5| -RJFW|47|811|Sasebo Usn||Japan|2|33-09N|129-43E|||19|22| -RJFY|47|850|Kanoya Ab||Japan|2|31-22N|130-50E|31-21N|130-50E|65|68| -RJFZ|47|840|Tsuiki Ab||Japan|2|33-41N|131-03E|||17|20| -RJGG|47|635|Nagoya Airport||Japan|2|35-15N|136-56E|||14|17| -RJKA|47|872|Amami Airport||Japan|2|28-26N|129-43E|||4|7| -RJKB|47|942|Okinoerabu||Japan|2|27-26N|128-42E|||27|29| -RJKI|--|---|Kikai Island||Japan|2|28-19N|129-56E|||6|| -RJKN|47|910|Tokunoshima Island||Japan|2|27-50N|128-53E|||5|| -RJNF|47|706|Fukui Airport||Japan|2|36-08N|136-14E|||5|8| -RJNG|47|634|Gifu Ab||Japan|2|35-23N|136-52E|||39|42| -RJNH|47|681|Hamamatsu Ab||Japan|2|34-45N|137-42E|34-44N|137-40E|45|48| -RJNK|47|704|Komatsu Ab||Japan|2|36-23N|136-25E|||6|9| -RJNN|47|635|Nagoya Airport||Japan|2|35-15N|136-56E|||14|17| -RJNO|47|739|Oki Airport||Japan|2|36-11N|133-20E|||92|95| -RJNT|47|707|Toyama Airport||Japan|2|36-39N|137-11E|||24|27| -RJNY|47|658|Shizuhama Ab||Japan|2|34-49N|138-18E|||7|10| -RJOA|47|789|Hiroshima Airport||Japan|2|34-26N|132-55E|||331|334| -RJOB|47|793|Okayama Airport||Japan|2|34-45N|133-51E|||241|244| -RJOC|47|790|Izumo Airport||Japan|2|35-25N|132-54E|||2|5| -RJOE|47|730|Akeno Ab||Japan|2|34-32N|136-41E|||6|9| -RJOF|47|788|Hofu Ab||Japan|2|34-02N|131-33E|34-02N|131-32E|2|5| -RJOH|47|743|Miho Ab||Japan|2|35-29N|133-15E|||6|9| -RJOI|47|764|MCAS IWAKUNI,JAPAN|JA|Japan|2|34-09N|132-14E|34-08N|132-14E|2|5| -RJOK|47|883|Kochi Airport||Japan|2|33-32N|133-40E|||7|10| -RJOM|47|882|Matsuyama Airport||Japan|2|33-49N|132-42E|||4|7| -RJOO|47|771|Osaka International Airport||Japan|2|34-47N|135-27E|||12|15| -RJOP|47|884|Komatsujima Ab||Japan|2|34-00N|134-38E|34-00N|134-38E|3|6| -RJOR|47|794|Tottori Airport||Japan|2|35-32N|134-10E|||15|18| -RJOS|47|881|Tokushima Ab||Japan|2|34-08N|134-37E|34-08N|134-36E|8|11| -RJOT|47|880|Takamatsu Airport||Japan|2|34-13N|134-01E|||185|188| -RJOW|47|783|Iwami Airport||Japan|2|34-40N|131-48E|||54|57| -RJOY|47|779|Yao Airport||Japan|2|34-36N|135-36E|||10|13| -RJOZ|47|787|Ozuki Ab||Japan|2|34-03N|131-03E|34-03N|131-03E|4|7| -RJSA|47|542|Aomori Airport||Japan|2|40-44N|140-42E|||199|202| -RJSC|47|553|Yamagata Airport||Japan|2|38-25N|140-22E|||105|108| -RJSD|47|700|Sado Airport||Japan|2|38-03N|138-25E|||23|26| -RJSF|47|557|Fukushima Airport||Japan|2|37-14N|140-26E|||372|375| -RJSH|47|515|Hachinohe Ab||Japan|2|40-33N|141-28E|40-33N|141-28E|46|49| -RJSI|47|549|Hanamaki Airport||Japan|2|39-26N|141-08E|||90|93| -RJSK|47|545|Akita Airport||Japan|2|39-37N|140-13E|||93|96| -RJSM|47|580|Misawa Ab||Japan|2|40-42N|141-23E|40-41N|141-22E|36|39| -RJSN|47|573|Niigata Airport||Japan|2|37-57N|139-07E|||1|4| -RJSO|47|516|Ominato Ab||Japan|2|41-14N|141-08E|41-14N|141-09E|7|10| -RJSR|--|---|Odate-Noshiro Airport||Japan|2|40-11N|140-12E|||84|87| -RJSS|47|569|Sendai Airport||Japan|2|38-08N|140-55E|||1|4| -RJST|47|591|Matsushima Ab||Japan|2|38-24N|141-13E|||2|5| -RJSU|47|567|Kasuminome Ab||Japan|2|38-14N|140-55E|||7|10| -RJSY|--|---|Shonai||Japan|2|38-49N|139-47E|||22|| -RJTA|47|679|Atsugi United States Naval Air Station||Japan|2|35-27N|139-27E|35-27N|139-28E|62|65| -RJTC|47|660|Tachikawa Ab||Japan|2|35-42N|139-24E|||95|98| -RJTD|47|662|Tokyo||Japan|2|35-41N|139-46E|||5|36|P -RJTE|47|688|Tateyama Ab||Japan|2|34-59N|139-50E|34-59N|139-50E|3|6| -RJTF|47|683|Chofu Airport||Japan|2|35-40N|139-32E|||41|44| -RJTH|47|738|Hachijojima Airport||Japan|2|33-07N|139-47E|||92|95| -RJTI|47|687|Tokyo Heliport||Japan|2|35-38N|139-51E|||5|8| -RJTJ|47|643|Iruma Ab||Japan|2|35-50N|139-25E|35-50N|139-25E|90|93| -RJTK|47|661|Kisarazu Ab||Japan|2|35-24N|139-55E|||3|6| -RJTL|47|727|Shimofusa Ab||Japan|2|35-48N|140-01E|35-47N|140-01E|30|33| -RJTO|47|735|Oshima Airport||Japan|2|34-47N|139-22E|||38|41| -RJTQ|47|737|Miyakejima Airport||Japan|2|34-04N|139-34E|||20|23| -RJTR|47|680|Zama Airfield||Japan|2|35-31N|139-24E|||109|112| -RJTT|47|671|Tokyo International Airport||Japan|2|35-33N|139-47E|||5|8| -RJTU|47|692|Utsunomiya Ab||Japan|2|36-31N|139-52E|||102|105| -RJTX|47|696|Yokosuka Fwf||Japan|2|35-17N|139-40E|||49|53| -RJTY|47|642|Yokota Ab||Japan|2|35-45N|139-21E|||139|142| -RKJJ|47|158|Kwangju Ab||Korea, South|2|35-07N|126-49E|35-07N|126-49E|13|13| -RKJK|47|141|Kunsan Ab||Korea, South|2|35-55N|126-37E|35-54N|126-37E|10|10| -RKJY|47|167|Yosu Airport||Korea, South|2|34-50N|127-37E|||21|20| -RKNC|47|104|Chunchon Ab||Korea, South|2|37-52N|127-43E|37-53N|127-43E|76|75| -RKNF|--|---|Whang Ryeong||Korea, South|2|37-45N|128-40E|||1407|| -RKNH|47|118|Hoengsong Ab||Korea, South|2|37-26N|127-57E|37-26N|126-58E|100|101| -RKNN|47|107|Kangnung Ab||Korea, South|2|37-45N|128-57E|37-45N|128-57E|11|6| -RKNO|--|---|Keo Jin||Korea, South|2|38-28N|128-28E|||107|| -RKNR|--|---|Kotar Range||Korea, South|2|37-06N|128-54E|||792|| -RKNW|47|114|Wonju||Korea, South|2|37-20N|127-57E|||150|150|P -RKPC|47|182|Cheju International Airport||Korea, South|2|33-30N|126-30E|||36|28| -RKPK|47|153|Pusan / Kimhae International Airport||Korea, South|2|35-11N|128-56E|35-11N|128-56E|4|6| -RKPM|47|187|Mosulpo Ab||Korea, South|2|33-12N|126-16E|33-12N|126-16E|27|27| -RKPS|47|161|Sach'On Ab||Korea, South|2|35-05N|128-05E|35-05N|128-05E|8|8| -RKPU|47|152|Ulsan||Korea, South|2|35-33N|129-19E|||32|33|P -RKSB|47|106|Tonghae Radar Site||Korea, South|2|37-30N|129-08E|37-52N|126-48E|31|32|P -RKSC|--|---|Sv Ri San||Korea, South|2|37-21N|126-55E|||406|| -RKSD|--|---|Maesanri||Korea, South|2|37-21N|127-16E|||144|| -RKSF|47|117|Seoul / Yongdungp'O Rokaf Wc||Korea, South|2|37-30N|126-56E|||49|| -RKSG|47|127|Pyongtaek Ab||Korea, South|2|36-56N|127-00E|||16|16| -RKSH|--|---|Command Post Tango||Korea, South|2|37-31N|126-59E|||73|| -RKSI|47|113|Incheon International Airport||Korea, South|2|37-28N|126-27E|||7|| -RKSJ|--|---|Taesong-San||Korea, South|2|38-12N|127-33E|||1182|| -RKSL|47|108|Seoul||Korea, South|2|37-34N|126-58E|||86|87|P -RKSM|47|111|Seoul E Ab||Korea, South|2|37-26N|127-07E|37-26N|127-07E|20|20| -RKSN|69|010|Koon-Ni Range||Korea, South|2|37-02N|126-45E|||15|| -RKSO|47|122|Osan Ab||Korea, South|2|37-06N|127-02E|37-06N|127-02E|11|12| -RKSP|47|103|Paengnyongdo Ab||Korea, South|2|37-58N|124-40E|37-58N|124-40E|171|177| -RKSQ|--|---|Yeonpyeungdo||Korea, South|2|37-42N|125-42E|||91|| -RKSS|47|110|Seoul / Kimp'O International Airport||Korea, South|2|37-33N|126-48E|37-33N|126-48E|18|18| -RKST|--|---|Camp Casey / Tongduch||Korea, South|2|37-55N|127-03E|||60|| -RKSU|--|---|Yeoju Range||Korea, South|2|37-26N|127-38E|37-26N|127-38E|43|43| -RKSV|--|---|Pyoripsan||Korea, South|2|37-47N|126-22E|||250|| -RKSW|47|120|Suwon Ab||Korea, South|2|37-15N|127-00E|||24|24| -RKSX|--|---|Camp Stanley / H-207||Korea, South|2|37-43N|127-06E|||71|| -RKSY|--|---|Yongsan / H-208 Hp||Korea, South|2|37-31N|126-59E|||12|| -RKTA|47|136|Andong||Korea, South|2|36-33N|128-43E|||139|142|P -RKTB|--|---|Paekado||Korea, South|2|37-01N|126-03E|||46|| -RKTD|47|132|Taejon Kor-Afb ||Korea, South|2|36-20N|127-23E|||63|| -RKTE|47|124|Songmu Ab||Korea, South|2|36-24N|127-30E|||79|79| -RKTF|47|133|Taejon||Korea, South|2|36-18N|127-24E|||77|78|P -RKTG|--|---|Camp Walker H-805 ||Korea, South|2|35-51N|128-35E|||75|| -RKTH|47|139|Pohang Ab||Korea, South|2|35-59N|129-25E|35-59N|129-25E|20|20| -RKTI|47|125|Jung Won Rok-Ab ||Korea, South|2|37-02N|127-53E|||91|| -RKTM|47|126|Mangilsan Ab||Korea, South|2|36-56N|126-27E|||302|| -RKTN|47|142|Taegu Ab||Korea, South|2|35-54N|128-39E|35-54N|128-39E|35|37| -RKTP|--|---|Hae Mi||Korea, South|2|36-24N|126-21E|||31|| -RKTS|--|---|Sangju||Korea, South|2|36-25N|128-10E|||150|| -RKTT|47|143|Taegu||Korea, South|2|35-53N|128-37E|||58|61|P -RKTU|47|128|Chongju Ab||Korea, South|2|36-42N|127-30E|36-42N|127-30E|58|66| -RKTV|--|---|Chungju||Korea, South|2|37-04N|127-53E|||59|| -RKTW|--|---|Woong Cheon||Korea, South|2|36-12N|126-33E|||13|| -RKTY|47|134|Yechon Ab||Korea, South|2|36-38N|128-21E|36-37N|128-21E|108|120| -RKXX|--|---|Nightmare Range||Korea, South|2|38-04N|127-21E||||| -ROAH|47|930|Naha Airport||Japan|2|26-11N|127-39E|||3|6| -RODE|47|938|Iejima Auxiliary Ab||Japan|2|26-43N|127-47E|26-43N|127-47E|70|73| -RODN|47|931|Kadena Ab||Japan|2|26-21N|127-46E|26-21N|127-45E|45|48| -ROHF|47|935|Hamby U. S. Army Airfield||Japan|2|26-18N|127-46E|||5|6| -ROIG|47|918|Ishigakijima||Japan|2|24-20N|124-10E|24-20N|124-10E|6|7|P -ROKJ|47|929|Kumejima||Japan|2|26-20N|126-48E|||4|5| -ROMD|47|945|Minamidaitojima||Japan|2|25-50N|131-14E|25-50N|131-14E|16|20|P -ROMY|47|927|Miyakojima||Japan|2|24-47N|125-17E|||40|41|P -RORA|--|---|Aguni Island||Japan|2|26-36N|127-14E|||29|| -RORH|--|---|Hateruma||Japan|2|24-04N|123-48E|||13|| -RORK|--|---|Kitadaito Island||Japan|2|25-55N|131-20E|||22|| -RORS|--|---|Shimoji-Shima Island||Japan|2|24-50N|125-09E|||16|| -RORT|--|---|Tarama Island||Japan|2|24-39N|124-42E|||9|| -RORY|--|---|Yoron Island||Japan|2|27-03N|128-24E|||16|| -ROTM|47|933|Futenma Marine Corps Air Facility||Japan|2|26-16N|127-45E|||75|78| -ROYN|47|911|Yonaguni Airport||Japan|2|24-28N|122-59E|||16|19| -RPLB|98|426|Subic Bay Weather Station||Philippines|5|14-48N|120-16E|14-48N|120-16E|18|19| -RPLC|--|---|Clarkfield Pampanga International Airport||Philippines|5|15-11N|120-33E|||148|| -RPLI|98|223|Laoag||Philippines|5|18-11N|120-32E|18-11N|120-32E|4|5|P -RPLL|98|429|Ninoy Aquino Inter-National Airport||Philippines|5|14-31N|121-00E|||14|15|P -RPMD|98|753|Davao Airport||Philippines|5|07-07N|125-39E|07-07N|125-39E|17|18|P -RPMK|98|327|Clark Ab||Philippines|5|15-10N|120-34E|15-10N|120-34E|196|196| -RPMP|98|444|Legaspi||Philippines|5|13-08N|123-44E|13-08N|123-44E|16|17|P -RPMR|98|536|Romblon||Philippines|5|12-35N|122-16E|||46|47|P -RPMS|98|428|Sangley Point||Philippines|5|14-30N|120-55E|14-30N|120-55E|3|4| -RPMT|98|646|Mactan||Philippines|5|10-18N|123-58E|10-18N|123-58E|23|24|P -RPMZ|98|836|Zamboanga||Philippines|5|06-54N|122-04E|06-54N|122-04E|5|6|P -RPUA|98|232|Aparri||Philippines|5|18-22N|121-38E|||2|3|P -RPUB|98|328|Baguio||Philippines|5|16-25N|120-36E|16-25N|120-36E|1500|1501|P -RPUD|98|440|Daet||Philippines|5|14-08N|122-59E|||3|4|P -RPUH|98|531|San Jose||Philippines|5|12-21N|121-02E|||2|3|P -RPUI|98|324|Iba||Philippines|5|15-20N|119-58E|||4|5| -RPUK|98|431|Calapan||Philippines|5|13-25N|121-11E|||39|41|P -RPUN|--|---|Naga / Luzon Island||Philippines|5|13-35N|123-16E|||43|| -RPUO|98|135|Basco||Philippines|5|20-27N|121-58E|20-27N|121-58E|10|11|P -RPUQ|98|222|Vigan||Philippines|5|17-34N|120-23E|||31|33| -RPUR|98|333|Baler||Philippines|5|15-46N|121-34E|||4|6| -RPUT|98|233|Tuguegarao||Philippines|5|17-37N|121-44E|||61|62| -RPUV|98|446|Virac||Philippines|5|13-35N|124-14E|||39|40| -RPUW|--|---|Marinduque Island||Philippines|5|13-22N|121-50E|||5|| -RPVA|98|550|Tacloban||Philippines|5|11-15N|125-00E|||2|3|P -RPVD|98|642|Dumaguete||Philippines|5|09-18N|123-18E|||5|8| -RPVF|98|546|Catarman||Philippines|5|12-29N|124-38E|||4|5| -RPVG|98|558|Guiuan||Philippines|5|11-02N|126-44E|11-02N|126-44E|56|60| -RPVI|98|637|Iloilo||Philippines|5|10-42N|122-34E|||7|8|P -RPVM|98|543|Masbate||Philippines|5|12-22N|123-37E|||6|6|P -RPVP|98|618|Puerto Princesa||Philippines|5|09-45N|118-44E|09-45N|118-44E|14|16|P -RPVR|98|538|Roxas||Philippines|5|11-35N|122-45E|||3|4| -RPVT|98|644|Tagbilaran||Philippines|5|09-36N|123-51E|||7|8| -RPWB|98|851|Gen. Santos||Philippines|5|06-07N|125-11E|||14|15| -RPWC|98|746|Cotobato||Philippines|5|07-10N|124-13E|||58|62| -RPWE|98|752|Butuan||Philippines|5|09-56N|125-31E|||45|46| -RPWG|98|741|Dipolog||Philippines|5|08-36N|123-21E|||3|5|P -RPWL|98|748|Cagayan De Oro||Philippines|5|08-29N|124-38E|||5|6| -RPWS|98|653|Surigao||Philippines|5|09-48N|125-30E|09-48N|125-30E|54|55|P -RPWY|98|751|Malaybalay||Philippines|5|08-09N|125-05E|||626|627| -RPXT|98|435|Alabat||Philippines|5|14-05N|122-01E|||4|5| -SAAC|87|395|Concordia Aerodrome||Argentina|3|31-18S|058-01W|||35|38|P -SAAG|87|497|Gualeguaychu Aerodrome||Argentina|3|33-00S|058-37W|||23|21|P -SAAJ|87|548|Junin Aerodrome||Argentina|3|34-33S|060-55W|||82|81|P -SAAP|87|374|Parana Aerodrome||Argentina|3|31-47S|060-29W|||74|78|P -SAAR|87|480|Rosario Aerodrome||Argentina|3|32-55S|060-47W|||25|25|P -SAAU|87|385|Villaguay Aerodrome||Argentina|3|31-51S|059-05W|||40|43| -SAAV|87|371|Sauce Viejo Aerodrome||Argentina|3|31-42S|060-49W|||17|18| -SABA|87|585|Buenos Aires Observatorio||Argentina|3|34-35S|058-29W|||25|25| -SABE|87|582|Aeroparque Bs. As. Aerodrome||Argentina|3|34-34S|058-25W|||6|6| -SACI|87|349|Pilar Observatorio||Argentina|3|31-40S|063-53W|||338|338| -SACO|87|344|Cordoba Aerodrome||Argentina|3|31-19S|064-13W|31-19S|064-13W|484|474|P -SACP|87|322|Chepes||Argentina|3|31-20S|066-36W|||658|658| -SACT|--|---|Gobernador Gordillo||Argentina|3|30-22S|066-18W|||457|| -SACV|87|244|Villa De Maria Del Rio Seco||Argentina|3|29-54S|063-41W|||341|341|P -SADD|87|568|Don Torcuato Aerodrome||Argentina|3|34-29S|058-37W|||5|4| -SADF|--|---|San Fernando, BA||Argentina|3|34-27-11S|058-35-23W|||3|| -SADL|87|593|La Plata Aerodrome||Argentina|3|34-58S|057-54W|||21|19| -SADP|87|571|El Palomar Aerodrome||Argentina|3|34-36S|058-36W|||18|12| -SAEZ|87|576|Ezeiza Aerodrome||Argentina|3|34-49S|058-32W|34-49S|058-32W|20|20|P -SAME|87|418|Mendoza Aerodrome||Argentina|3|32-50S|068-47W|32-50S|068-47W|705|704|P -SAMI|87|416|San Martin||Argentina|3|33-05S|068-25W|||653|653| -SAMJ|87|305|Jachal||Argentina|3|30-15S|068-45W|||1165|1165| -SAMM|87|506|Malargue Aerodrome||Argentina|3|35-30S|069-35W|||1426|1425|P -SAMR|87|509|San Rafael Aerodrome||Argentina|3|34-35S|068-24W|34-35S|068-24W|745|748|P -SAMS|87|412|San Carlos||Argentina|3|33-46S|069-02W|||940|940| -SAMU|87|405|Uspallata||Argentina|3|32-36S|069-20W|||1844|1891| -SANC|87|222|Catamarca Aero.||Argentina|3|28-36S|065-46W|||454|454|P -SANE|87|129|Santiago Del Estero Aero.||Argentina|3|27-46S|064-18W|||198|199|P -SANI|87|211|Tinogasta||Argentina|3|28-04S|067-34W|||1201|1201| -SANL|87|217|La Rioja Aero.||Argentina|3|29-23S|066-49W|||438|429|P -SANO|87|214|Chilecito||Argentina|3|29-13S|067-26W|||950|| -SANT|87|121|Tucuman Aerodrome||Argentina|3|26-51S|065-06W|||440|450|P -SANU|87|311|San Juan Aerodrome||Argentina|3|31-34S|068-52W|||597|598|P -SANW|87|257|Ceres Aerodrome||Argentina|3|29-53S|061-57W|29-53S|061-57W|87|88|P -SAOC|87|453|Rio Cuarto Aerodrome||Argentina|3|33-07S|064-14W|||420|421|P -SAOD|87|328|Villa Dolores Aerodrome||Argentina|3|31-57S|065-08W|||561|569| -SAOL|87|534|Laboulaye||Argentina|3|34-08S|063-22W|34-08S|063-22W|136|137| -SAOM|87|467|Marcos Juarez Aerodrome||Argentina|3|32-42S|062-09W|||110|114|P -SAOR|87|448|Villa Reynolds Aerodrome||Argentina|3|33-44S|065-23W|||485|486| -SAOU|87|436|San Luis Aerodrome||Argentina|3|33-16S|066-21W|33-16S|066-21W|710|713|P -SARC|87|166|Corrientes Aero.||Argentina|3|27-27S|058-46W|||62|62| -SARE|87|155|Resistencia Aero.||Argentina|3|27-27S|059-03W|27-27S|059-03W|53|52|P -SARF|87|162|Formosa Aerodrome||Argentina|3|26-12S|058-14W|||59|60|P -SARI|87|097|Iguazu Aerodrome||Argentina|3|25-44S|054-28W|||270|270|P -SARL|87|289|Paso De Los Libres Aerodrome||Argentina|3|29-41S|057-09W|||69|70|P -SARM|87|393|Monte Caseros Aerodrome||Argentina|3|30-16S|057-39W|30-16S|057-39W|53|54| -SARP|87|178|Posadas Aero.||Argentina|3|27-22S|055-58W|27-22S|055-58W|131|133|P -SARS|87|149|Presidencia Roque Saenz Pena Aerodrome||Argentina|3|26-49S|060-27W|||91|92|P -SASA|87|047|Salta Aerodrome||Argentina|3|24-51S|065-29W|24-51S|065-29W|1238|1221|P -SASJ|87|046|Jujuy Aerodrome||Argentina|3|24-23S|065-05W|||921|905|P -SASO|87|016|Oran Aerodrome||Argentina|3|23-09S|064-19W|||357|357| -SASQ|87|007|La Quiaca Observatorio||Argentina|3|22-06S|065-36W|||3462|3459| -SASR|87|065|Rivadavia||Argentina|3|24-10S|062-54W|||205|205| -SAST|87|022|Tartagal Aerodrome||Argentina|3|22-39S|063-49W|||450|450|P -SATK|87|078|Las Lomitas||Argentina|3|24-42S|060-35W|24-42S|060-35W|130|130|P -SATR|--|---|Reconquista, SF||Argentina|3|29-12-37S|059-41-27W|||49|| -SATU|87|286|Curuzu Cuatia Aerodrome||Argentina|3|29-47S|057-59W|||80|73| -SAVB|87|800|El Bolson Aerodrome||Argentina|3|41-58S|071-31W|||337|337| -SAVC|87|860|Comodoro Rivadavia Aerodrome||Argentina|3|45-47S|067-30W|45-47S|067-27W|58|46|P -SAVE|87|803|Esquel Aerodrome||Argentina|3|42-56S|071-09W|||789|785|P -SAVO|87|784|San Antonio Oeste Aerodrome||Argentina|3|40-47S|065-06W|||20|20|P -SAVP|87|814|Paso De Indios||Argentina|3|43-49S|068-53W|||460|460| -SAVT|87|828|Trelew Aerodrome||Argentina|3|43-12S|065-16W|||39|43|P -SAVV|87|791|Viedma Aerodrome||Argentina|3|40-51S|063-01W|||6|7|P -SAVY|--|---|Puerto Madryn, CHT||Argentina|3|42-45-33S|065-06-10W|||136|| -SAWA|87|903|Lago Argentino Aerodrome||Argentina|3|50-20S|072-18W|||223|220|P -SAWD|87|896|Puerto Deseado Aerodrome||Argentina|3|47-44S|065-55W|47-44S|065-55W|81|80| -SAWE|87|934|Rio Grande B. A.||Argentina|3|53-48S|067-45W|53-48S|067-45W|13|22| -SAWG|87|925|Rio Gallegos Aerodrome||Argentina|3|51-37S|069-17W|||20|19|P -SAWH|87|938|Ushuaia Aerodrome||Argentina|3|54-48S|068-19W|54-48S|068-19W|16|14|P -SAWJ|87|909|San Julian Aerodrome||Argentina|3|49-19S|067-45W|||58|62|P -SAWP|87|852|Perito Moreno Aerodrome||Argentina|3|46-31S|071-01W|||429|429|P -SAWR|87|880|Gobernador Gregores Aerodrome||Argentina|3|48-47S|070-10W|||358|357| -SAWU|87|912|Santa Cruz Aerodrome||Argentina|3|50-01S|068-34W|||113|111| -SAZA|87|642|Azul Airport||Argentina|3|36-45S|059-50W|36-44S|059-50W|132|132| -SAZB|87|750|Bahia Blanca Aerodrome||Argentina|3|38-44S|062-10W|||75|83|P -SAZD|87|648|Dolores Aerodrome||Argentina|3|36-21S|057-44W|||10|9|P -SAZE|87|679|Pigue Aerodrome||Argentina|3|37-36S|062-23W|||304|304| -SAZG|87|532|General Pico Aerodrome||Argentina|3|35-42S|063-45W|||139|145| -SAZH|87|688|Tres Arroyos||Argentina|3|38-20S|060-15W|||115|115|P -SAZM|87|692|Mar Del Plata Aerodrome||Argentina|3|37-56S|057-35W|37-56S|057-35W|18|21|P -SAZN|87|715|Neuquen Aerodrome||Argentina|3|38-57S|068-08W|38-57S|068-08W|270|271|P -SAZP|87|544|Pehuajo Aerodrome||Argentina|3|35-52S|061-54W|||87|86| -SAZQ|87|736|Rio Colorado||Argentina|3|39-01S|064-05W|||79|79| -SAZR|87|623|Santa Rosa Aerodrome||Argentina|3|36-34S|064-16W|36-34S|064-16W|190|191|P -SAZS|87|765|Bariloche Aerodrome||Argentina|3|41-09S|071-10W|||845|840|P -SAZT|87|645|Tandil Aerodrome||Argentina|3|37-14S|059-15W|||175|175|P -SAZV|87|663|Villa Gesell||Argentina|3|37-14S|057-02W|||7|| -SAZY|87|761|Chapelco||Argentina|3|40-05S|071-08W|||779|| -SBAA|82|861|Conceicao Do Araguaia||Brazil|3|08-15S|049-17W|||157|| -SBAF|83|748|Afonsos Aeroporto ||Brazil|3|22-52S|043-22W|||34|| -SBAN|83|419|Anapolis Braz-Afb ||Brazil|3|16-14S|048-58W|||1137|| -SBAR|83|095|Aracaju Aeroporto ||Brazil|3|10-59S|037-04W|||8|9| -SBAT|82|965|Alta Floresta Aeroporto ||Brazil|3|09-52S|056-06W|09-52S|056-06W|288|288| -SBBC|82|410|Benjamin Constant||Brazil|3|04-23S|070-02W|||65|| -SBBE|82|193|Belem Aeroporto ||Brazil|3|01-23S|048-29W|01-23S|048-29W|16|16| -SBBG|83|981|Bage Aeroporto ||Brazil|3|31-21S|054-07W|31-21S|054-07W|180|180| -SBBH|83|583|Belo Horizonte Aeroporto ||Brazil|3|19-51S|043-57W|19-51S|043-57W|785|785| -SBBI|83|842|Curitiba||Brazil|3|25-26S|049-16W|||924|| -SBBQ|83|689|Barbacena||Brazil|3|21-15S|043-46W|||1171|1171| -SBBR|83|378|Brasilia Aeroporto ||Brazil|3|15-52S|047-56W|15-52S|047-56W|1061|1061| -SBBU|83|722|Bauru||Brazil|3|22-19S|049-04W|||590|| -SBBV|82|022|Boa Vista, Boa Vista Intl ||Brazil|3|02-50N|060-42W|02-50N|060-42W|84|| -SBBW|83|359|Barra Do Garcas||Brazil|3|15-52S|052-23W|||350|350| -SBCC|--|---|Cachimbo||Brazil|3|09-20S|054-57W|||536|| -SBCF|83|587|Belo Horizonte||Brazil|3|19-56S|043-56W|||850|| -SBCG|83|612|Campo Grande Aeroporto ||Brazil|3|20-28S|054-40W|20-28S|054-40W|567|567| -SBCI|82|764|Maranhao / Carolina Airport||Brazil|3|07-19S|047-28W|||183|| -SBCJ|--|---|Carajas / Maraba||Brazil|3|06-07S|050-00W|||621|| -SBCO|83|967|Porto Alegre||Brazil|3|30-01S|051-13W|||47|| -SBCP|83|698|Campos||Brazil|3|21-45S|041-20W|21-45S|041-20W|11|11| -SBCR|83|552|Corumba||Brazil|3|19-05S|057-30W|||130|| -SBCT|83|840|Curitiba Aeroporto ||Brazil|3|25-31S|049-10W|25-31S|049-10W|908|908| -SBCV|83|497|Caravelas ||Brazil|3|17-39S|039-15W|17-38S|039-15W|11|| -SBCY|83|362|Cuiaba Aeroporto ||Brazil|3|15-39S|056-06W|15-39S|056-06W|187|182| -SBCZ|82|704|Cruzeiro Do Sul||Brazil|3|07-38S|072-40W|||170|| -SBDN|83|716|Presidente Prudente||Brazil|3|22-07S|051-23W|||436|| -SBEG|82|111|Eduardo Gomes International||Brazil|3|03-02S|060-03W|||2|| -SBEK|82|640|Jacareacanga||Brazil|3|06-16S|057-44W|06-16S|057-44W|98|98| -SBES|83|759|S. P. Aldeia Aerodrome ||Brazil|3|22-49S|042-06W|||10|11| -SBFI|83|827|Foz Do Iguacu Aeroporto ||Brazil|3|25-31S|054-35W|25-31S|054-35W|180|180| -SBFL|83|899|Florianopolis Aeroporto ||Brazil|3|27-40S|048-33W|27-40S|048-33W|5|5| -SBFN|82|400|Fernando De Noronha||Brazil|3|03-51S|032-25W|03-51S|032-25W|56|45| -SBFZ|82|398|Fortaleza / pinto Martins ||Brazil|3|03-47S|038-32W|03-47S|038-32W|25|25| -SBGA|83|375|Gama||Brazil|3|16-03S|048-03W|||700|| -SBGL|83|746|Galeao||Brazil|3|22-49S|043-15W|22-49S|043-15W|6|42| -SBGO|83|424|Goiania Aeroporto ||Brazil|3|16-38S|049-13W|||747|| -SBGR|--|---|Guarulhos Civ / Mil ||Brazil|3|23-26S|046-28W|||750|| -SBGW|83|708|Guaratingueta||Brazil|3|22-47S|045-12W|||537|537| -SBHT|82|353|Altamira||Brazil|3|03-12S|052-12W|||74|| -SBIH|82|444|Itaituba||Brazil|3|04-15S|056-00W|||34|| -SBIL|83|349|Ilheus Aeroporto ||Brazil|3|14-49S|039-02W|||4|| -SBIZ|82|564|Imperatriz||Brazil|3|05-32S|047-30W|||123|| -SBJF|83|692|Juiz De Fora||Brazil|3|21-46S|043-21W|||939|939| -SBJP|82|798|Joao Pessoa||Brazil|3|07-06S|034-52W|||7|| -SBJR|83|111|Rio / Jacarepagua||Brazil|3|22-59S|043-22W|||3|| -SBKG|82|795|Campina Grande||Brazil|3|07-13S|035-53W|||548|| -SBKP|83|721|Campinas Aeroporto ||Brazil|3|23-00S|047-08W|23-00S|047-08W|661|661| -SBLO|83|768|Londrina Aeroporto ||Brazil|3|23-20S|051-08W|23-20S|051-08W|569|570| -SBLP|83|288|Bom Jesus Da Lapa||Brazil|3|13-16S|043-25W|13-16S|043-25W|440|440| -SBMA|82|562|Maraba||Brazil|3|05-21S|049-09W|||95|| -SBME|--|---|Macae||Brazil|3|22-21S|041-46W|||2|| -SBMG|83|767|Maringa||Brazil|3|23-25S|051-57W|||542|542| -SBMK|83|437|Montes Claros||Brazil|3|16-43S|043-52W|16-44S|043-52W|646|647| -SBMN|82|332|Manaus Aeroporto ||Brazil|3|03-09S|059-59W|03-09S|059-59W|84|84| -SBMO|82|993|Maceio Aeroporto ||Brazil|3|09-31S|035-47W|09-31S|035-47W|117|115| -SBMQ|82|098|Macapa||Brazil|3|00-02N|050-03W|||15|| -SBMS|82|591|Mocoro / 17 Rosado||Brazil|3|05-12S|037-22W|||23|| -SBMT|83|779|Marte Civ / Mil ||Brazil|3|23-31S|046-38W|||722|| -SBMY|82|533|Manicore||Brazil|3|05-49S|061-18W|||50|| -SBNT|82|599|Natal Aeroporto||Brazil|3|05-55S|035-15W|05-55S|035-15W|52|49| -SBOI|82|017|Oiapoque||Brazil|3|03-50N|051-50W|||39|39| -SBPA|83|971|Porto Alegre Aero-Porto ||Brazil|3|30-00S|051-11W|30-00S|051-11W|3|3| -SBPB|82|288|Parnaiba Aeroporto ||Brazil|3|02-55S|041-45W|||5|| -SBPC|83|681|Pocos De Caldas||Brazil|3|21-51S|046-34W|||1260|| -SBPF|83|914|Passo Fundo||Brazil|3|28-15S|052-24W|||684|| -SBPG|83|844|Paranagua||Brazil|3|25-31S|048-31W|||5|| -SBPK|83|985|Pelotas||Brazil|3|31-52S|052-21W|||13|13| -SBPL|82|984|Petrolina ||Brazil|3|09-21S|040-33W|||385|| -SBPN|83|063|Porto Nacional Aeroporto ||Brazil|3|10-42S|048-24W|10-42S|048-24W|261|290| -SBPP|83|703|Ponta Pora Intl ||Brazil|3|22-33S|055-42W|||657|| -SBPS|--|---|Porto Seguro||Brazil|3|16-26S|039-04W|||51|| -SBPV|82|824|Porto Velho Aeroporto ||Brazil|3|08-46S|063-55W|08-46S|063-55W|102|102| -SBQV|83|344|Vitoria Da Conquista||Brazil|3|14-57S|040-53W|14-51S|040-50W|840|1042| -SBRB|82|917|Rio Branco||Brazil|3|10-00S|067-48W|||142|143| -SBRF|82|899|Recife Aeroporto ||Brazil|3|08-04S|034-51W|||19|| -SBRJ|83|755|Rio De Janeiro Aeroporto ||Brazil|3|22-54S|043-10W|||3|| -SBRP|--|---|Leite Lopes / Ribeir ||Brazil|3|21-08S|047-47W|||549|| -SBRS|83|738|Resende||Brazil|3|22-29S|044-28W|||440|| -SBSA|83|726|Sao Carlos||Brazil|3|22-01S|047-53W|||856|| -SBSC|83|741|Rio De Janeiro-Santa Cruz Ab ||Brazil|3|22-56S|043-43W|22-56S|043-43W|3|3| -SBSJ|--|---|Sao Jose Dos Campo ||Brazil|3|23-14S|045-52W|||646|| -SBSL|82|281|Sao Luiz Aeroporto ||Brazil|3|02-36S|044-14W|02-36S|044-14W|53|53| -SBSM|83|937|Santa Maria Aero-Porto ||Brazil|3|29-43S|053-42W|||85|| -SBSN|82|244|Santarem-Aeroporto||Brazil|3|02-26S|054-43W|02-26S|054-43W|72|72| -SBSP|83|780|Sao Paulo/Congonhas Aeroporto||Brazil|3|23-37S|046-39W|23-37S|046-39W|803|802| -SBST|83|818|Santos Aeroporto ||Brazil|3|23-56S|046-18W|||3|3| -SBSV|83|248|Salvador Aeroporto ||Brazil|3|12-54S|038-20W|12-56S|038-21W|6|13| -SBTE|82|579|Teresina Aeroporto ||Brazil|3|05-03S|042-49W|05-03S|042-49W|69|69| -SBTF|82|317|Tefe||Brazil|3|03-22S|064-41W|||47|47| -SBTK|82|807|Tarauaca||Brazil|3|08-10S|070-46W|||190|| -SBTT|82|411|Tabatinga||Brazil|3|03-40S|069-40W|||85|| -SBTU|82|361|Tucurui||Brazil|3|03-43S|049-43W|||40|| -SBUA|82|106|Sao Gabriel Da Cachoeira||Brazil|3|00-08S|067-05W|||90|| -SBUF|82|986|Paulo Afonso||Brazil|3|09-24S|038-13W|||253|| -SBUG|83|928|Uruguaiana Aeroporto ||Brazil|3|29-47S|057-02W|29-47S|057-02W|74|74| -SBUL|--|---|Uberlandia ||Brazil|3|18-53S|048-14W|||943|| -SBUR|83|576|Uberaba||Brazil|3|19-47S|047-58W|19-46S|047-57W|807|809| -SBVH|83|208|Vilhena Aeroporto ||Brazil|3|12-42S|060-06W|12-44S|060-08W|612|652| -SBVT|83|649|Vitoria Aeroporto ||Brazil|3|20-16S|040-17W|20-16S|040-17W|4|4| -SBXV|83|319|Xavantina ||Brazil|3|14-42S|052-21W|||315|| -SBYA|82|067|Iauarete||Brazil|3|00-37N|069-12W|||120|| -SBYS|83|671|Pirassununga||Brazil|3|21-59S|047-20W|21-59S|047-21W|597|598| -SCAR|85|406|Arica||Chile|3|18-20S|070-20W|18-21S|070-21W|58|58|P -SCBA|85|874|Balmaceda||Chile|3|45-55S|071-41W|45-54S|071-43W|520|520|P -SCCC|85|886|Chile Chico||Chile|3|46-33S|071-42W|||325|325|P -SCCH|85|672|Chillan||Chile|3|36-34S|072-02W|36-34S|072-02W|124|148|P -SCCI|85|934|Punta Arenas||Chile|3|53-00S|070-51W|53-02S|070-51W|37|33|P -SCCY|85|864|Coyhaique||Chile|3|45-35S|072-07W|||310||P -SCDA|85|418|Iquique / Diego Arac||Chile|3|20-32S|070-11W|||52|| -SCEL|85|574|Pudahuel||Chile|3|33-23S|070-47W|33-23S|070-47W|475|476|P -SCER|85|543|Quintero Santiago||Chile|3|32-47S|071-31W|32-47S|071-31W|8|8|P -SCFA|85|442|Antofagasta||Chile|3|23-26S|070-26W|23-25S|070-28W|135|137|P -SCHA|85|470|Copiapo||Chile|3|27-18S|070-25W|27-18S|070-25W|291|291|P -SCHR|85|892|Cochrane||Chile|3|47-14S|072-33W|||167|167|P -SCIC|85|629|Curico||Chile|3|34-58S|071-14W|||228||P -SCIE|85|682|Concepcion||Chile|3|36-46S|073-03W|||12||P -SCIP|85|469|Isla De Pascua||Chile|3|27-09S|109-25W|27-10S|109-26W|51|41|P -SCLL|85|486|Vallenar||Chile|3|28-36S|070-46W|||538|526|P -SCRA|85|460|Chanaral||Chile|3|26-19S|070-37W|26-19S|070-37W|30|30|P -SCSE|85|488|La Serena||Chile|3|29-54S|071-12W|||142||P -SCTC|85|743|Temuco||Chile|3|38-45S|072-38W|||114||P -SCTE|85|799|Puerto Montt||Chile|3|41-25S|073-05W|41-26S|073-07W|85|84|P -SCVD|85|766|Valdivia||Chile|3|39-37S|073-05W|||19||P -SEAM|84|147|Ambato / Chachoan||Ecuador|3|01-12S|078-34W|||2520|| -SEBC|84|101|Bahia De Caraquez||Ecuador|3|00-35S|080-24W|||3|| -SECU|84|239|Cuenca / Mariscal Lamar||Ecuador|3|02-53S|078-59W|02-53S|078-58W|2530|2531|P -SEES|84|018|Esmeraldas-Tachina||Ecuador|3|00-58N|079-38W|00-59N|079-39W|7|8|P -SEGU|84|203|Guayaquil / Simon Bolivar||Ecuador|3|02-09S|079-53W|02-09S|079-53W|4|9|P -SEIB|84|043|Ibarra / Atahualpa||Ecuador|3|00-21N|078-08W|||2228|| -SELO|84|265|Catamayo / Camilo Ponce Enriquez||Ecuador|3|04-00S|079-22W|||1239|1238|P -SELT|84|123|Latacunga||Ecuador|3|00-55S|078-37W|||2785|| -SEMA|84|279|Macara / J. M. Velasco I.||Ecuador|3|04-22S|079-56W|||430|| -SEMH|84|248|Machala / General M. Serrano||Ecuador|3|03-15S|079-58W|||4|10| -SEMT|84|117|Manta||Ecuador|3|00-57S|080-41W|||13|14|P -SEPA|84|163|Pastaza / Rio Amazonas||Ecuador|3|01-30S|078-03W|||1043|1054|P -SEQU|84|071|Quito / Mariscal Sucre||Ecuador|3|00-09S|078-29W|00-08S|078-29W|2811|2812|P -SESA|84|200|Salinas / General Ulpiano Paez||Ecuador|3|02-12S|080-59W|||4|8|P -SEST|84|008|San Cristobal Galapagos ||Ecuador|3|00-54S|089-36W|00-54S|089-37W|6|6|P -SETI|84|131|Tiputini ||Ecuador|3|00-47S|075-31W|||220|| -SETU|84|027|Tulcan / El Rosal||Ecuador|3|00-49N|077-42W|||2950|| -SFAL|88|891|Stanley Airport||Falkland Islands, Islas Malvinas|3|51-41S|057-46W|||23|| -SGAS|86|218|Asuncion / Aeropuerto||Paraguay|3|25-16S|057-38W|25-16S|057-38W|101|101| -SGCO|86|134|Concepcion||Paraguay|3|23-25S|057-18W|||74|74| -SGEN|86|297|Encarnacion||Paraguay|3|27-19S|055-50W|||91|91| -SGES|--|---|Aeropuerto Guarany||Paraguay|3|25-27S|054-51W|||849|| -SGME|86|068|Mariscal Estigarribia||Paraguay|3|22-01S|060-36W|||172|181| -SGNA|86|017|Nueva Asuncion||Paraguay|3|20-43S|061-55W|20-43S|061-55W|318|315| -SKAR|80|211|Armenia / El Eden||Colombia|3|04-30N|075-43W|||1204|1219|P -SKAS|80|372|Puerto Asis||Colombia|3|00-30N|076-30W|||254||P -SKBG|80|094|Bucaramanga / Palonegro||Colombia|3|07-06N|073-12W|||1189||P -SKBO|80|222|Bogota / Eldorado||Colombia|3|04-43N|074-09W|04-42N|074-09W|2547|2548|P -SKBQ|80|028|Barranquilla / Ernestocortissoz||Colombia|3|10-53N|074-47W|10-54N|074-46W|14|30|P -SKBU|80|252|Buenaventura||Colombia|3|03-51N|076-58W|||14|15|P -SKCC|80|097|Cucuta / Camilo Daza||Colombia|3|07-56N|072-31W|||250|317|P -SKCG|80|022|Cartagena / Rafael Nunez||Colombia|3|10-27N|075-31W|||1|12|P -SKCL|80|259|Cali / Alfonso Bonillaaragon||Colombia|3|03-33N|076-23W|03-33N|076-23W|961|969|P -SKEJ|80|091|Barrancabermeja / Yariguies||Colombia|3|07-01N|073-48W|||126|134|P -SKIB|80|214|Ibague / Perales||Colombia|3|04-26N|075-09W|||928||P -SKIP|80|370|Ipiales / San Luis||Colombia|3|00-49N|077-38W|||2961||P -SKLC|80|084|Apartado / Los Cedros||Colombia|3|07-49N|076-42W|||20||P -SKLT|80|398|Leticia / Vasquez Cobo||Colombia|3|04-10S|069-57W|04-10S|069-57W|84|84|P -SKMD|80|110|Medellin / Olaya Herrera||Colombia|3|06-13N|075-36W|||1490|1499|P -SKMR|80|063|Monteria / Los Garzones||Colombia|3|08-49N|075-51W|||20|26|P -SKMU|80|361|Mitu||Colombia|3|01-08N|070-03W|||207|| -SKNV|80|315|Neiva / Benito Salas||Colombia|3|02-58N|075-18W|||439|443|P -SKPC|80|139|Puerto Carreno / A. Guauquea||Colombia|3|06-10N|067-30W|||55||P -SKPE|80|210|Pereira / Matecana||Colombia|3|04-49N|075-44W|||1342|1342|P -SKPP|80|308|Popayan / Guillermo||Colombia|3|02-28N|076-36W|02-27N|076-36W|1730|1730| -SKPS|80|342|Pasto / Antonio Narin||Colombia|3|01-25N|077-16W|||1826|| -SKPV|80|002|Providencia Isla / El Embrujo||Colombia|4|13-22N|081-21W|||6||P -SKRG|80|112|Rionegro / J. M. Cordova||Colombia|3|06-08N|075-26W|||2140|2142|P -SKRH|80|035|Riohacha / Almirante Padilla||Colombia|3|11-32N|072-56W|11-32N|072-56W|4|4|P -SKSJ|80|322|San Jose Del Guaviare||Colombia|3|02-34N|072-38W|||155|155|P -SKSM|80|009|Santa Marta / Simon Bolivar||Colombia|3|11-08N|074-14W|||4|14|P -SKSP|80|001|San Andres Isla / Sesquicentenario||Colombia|4|12-35N|081-43W|12-35N|081-42W|1|6|P -SKUC|80|099|Arauca / Santiago Perez||Colombia|3|07-04N|070-44W|||128|128|P -SKUI|80|144|Quibdo / El Carano||Colombia|3|05-43N|076-37W|||53||P -SKVP|80|036|Valledupar / Alfonso Lopez||Colombia|3|10-26N|073-15W|||138||P -SKVV|80|234|Villavicencio / Vanguardia||Colombia|3|04-10N|073-37W|||423|431|P -SLAP|85|151|Apolo||Bolivia|3|14-44S|068-30W|||1415|| -SLAS|85|175|Ascencion De Guarayos||Bolivia|3|15-43S|063-06W|||247|| -SLCA|85|315|Camiri||Bolivia|3|20-00S|063-32W|||798||P -SLCB|85|223|Cochabamba||Bolivia|3|17-25S|066-11W|17-23S|066-10W|2548|2570|P -SLCN|85|230|Charana||Bolivia|3|17-35S|069-36W|||4054||P -SLCO|85|041|Cobija||Bolivia|3|11-02S|068-47W|11-01S|068-47W|235|260|P -SLCP|85|196|Concepcion||Bolivia|3|16-09S|062-01W|||497|| -SLET|85|245|Santa Cruz / El Trompillo||Bolivia|3|17-48S|063-11W|17-48S|063-10W|418|414|P -SLGY|85|033|Guayaramerin||Bolivia|3|10-49S|065-21W|||130|| -SLJE|85|247|San Jose De Chiquitos||Bolivia|3|17-48S|060-44W|||284||P -SLJO|85|104|San Joaquin||Bolivia|3|13-04S|064-49W|||140||P -SLJV|85|195|San Javier||Bolivia|3|16-16S|062-28W|||534|| -SLLP|85|201|La Paz / Alto||Bolivia|3|16-31S|068-11W|16-30S|068-11W|4058|4038|P -SLMG|85|114|Magdalena||Bolivia|3|13-20S|064-07W|||140|| -SLOR|85|242|Oruro||Bolivia|3|17-58S|067-04W|||3072||P -SLPO|85|293|Potosi||Bolivia|3|19-33S|065-44W|||3935|| -SLPS|85|289|Puerto Suarez||Bolivia|3|18-59S|057-49W|||134||P -SLRB|85|268|Robore||Bolivia|3|18-19S|059-46W|||276||P -SLRI|85|043|Riberalta||Bolivia|3|11-00S|066-07W|||141||P -SLRQ|85|141|Rurrenabaque||Bolivia|3|14-28S|067-34W|14-28S|067-35W|204|274|P -SLRY|85|140|Reyes||Bolivia|3|14-19S|067-23W|||140|| -SLSA|85|123|Santa Ana||Bolivia|3|13-46S|065-26W|||144|| -SLSB|85|152|San Borja||Bolivia|3|14-52S|066-52W|||194|| -SLSI|85|207|San Ignacio De Velasco||Bolivia|3|16-23S|060-58W|||413||P -SLSM|85|153|San Ignacio De Moxos||Bolivia|3|14-55S|065-36W|||160|| -SLSU|85|283|Sucre||Bolivia|3|19-01S|065-18W|||2904|| -SLTJ|85|364|Tarija||Bolivia|3|21-33S|064-42W|||1854|| -SLTR|85|154|Trinidad||Bolivia|3|14-49S|064-55W|14-45S|064-48W|155|236|P -SLVM|85|345|Villamontes||Bolivia|3|21-15S|063-27W|||398|| -SLVR|85|244|Viru-Viru||Bolivia|3|17-38S|063-08W|||373||P -SLYA|85|365|Yacuiba||Bolivia|3|21-57S|063-39W|||645||P -SMJP|--|---|Johan A. Pengel||Suriname|3|05-27N|055-11W|||16|| -SMZY|81|225|Zanderij||Suriname|3|05-27N|055-12W|05-27N|055-12W|15|15|P -SOCA|81|405|Cayenne / Rochambeau||French Guiana|3|04-50N|052-22W|04-50N|052-22W|105|9|P -SOOM|81|401|Saint-Laurent-Du-Maroni||French Guiana|3|05-30N|054-02W|05-30N|054-02W|4|9|P -SPAY|84|593|Atalaya||Peru|3|10-44S|073-47W|||450|451| -SPCL|84|515|Pucallpa||Peru|3|08-25S|074-36W|08-22S|074-35W|148|149| -SPEO|84|531|Chimbote||Peru|3|09-10S|078-31W|||20|21| -SPGM|84|534|Tingo Maria||Peru|3|09-08S|075-57W|||664|665| -SPHI|84|452|Chiclayo||Peru|3|06-47S|079-50W|06-47S|079-50W|29|34| -SPHO|84|673|Ayacucho||Peru|3|13-08S|074-13W|||2740|2749| -SPHY|84|688|Andahuayla||Peru|3|13-43S|073-21W|||3444|| -SPHZ|84|542|Anta Huaraz ||Peru|3|09-21S|077-36W|||2750|2760| -SPIM|84|628|Lima-Callao / Aerop. Internacional Jorgechavez||Peru|3|12-00S|077-07W|12-01S|077-02W|12|13| -SPJA|84|440|Rioja||Peru|3|06-03S|077-09W|||792|| -SPJI|84|474|Juanjui||Peru|3|07-13S|076-43W|||350|363| -SPJL|84|735|Juliaca||Peru|3|15-29S|070-09W|||3826|3827| -SPJN|84|721|San Juan||Peru|3|15-23S|075-10W|||60|60| -SPJR|84|472|Cajamarca||Peru|3|07-08S|078-28W|||2620|2622| -SPME|84|370|Tumbes||Peru|3|03-33S|080-24W|||25|27| -SPMS|84|425|Yurimaguas||Peru|3|05-54S|076-05W|||179|184| -SPNC|84|564|Huanuco||Peru|3|09-54S|075-45W|||1859|1860| -SPPY|84|444|Chachapoyas||Peru|3|06-13S|077-50W|||2540|2540| -SPQT|84|377|Iquitos||Peru|3|03-45S|073-15W|03-45S|073-15W|125|126| -SPQU|84|752|Arequipa||Peru|3|16-19S|071-33W|16-19S|071-33W|2538|2539| -SPRU|84|501|Trujillo||Peru|3|08-06S|079-02W|||26|30| -SPSO|84|691|Pisco||Peru|3|13-45S|076-17W|13-45S|076-13W|8|7| -SPST|84|455|Tarapoto||Peru|3|06-27S|076-23W|||281|282| -SPTN|84|782|Tacna||Peru|3|18-04S|070-18W|||468|469| -SPTU|84|658|Puerto Maldonado||Peru|3|12-38S|069-12W|||265|266| -SPUR|84|401|Piura||Peru|3|05-11S|080-36W|||49|55| -SPYL|84|390|Talara||Peru|3|04-34S|081-15W|04-34S|081-15W|85|90| -SPZO|84|686|Cuzco||Peru|3|13-33S|071-59W|||3248|3249| -SUAA|86|575|Melilla||Uruguay|3|34-47S|056-15W|||53|48| -SUAG|86|330|Artigas||Uruguay|3|30-23S|056-30W|||123|120|P -SUCA|86|560|Colonia||Uruguay|3|34-27S|057-50W|||23|22|P -SUDU|86|530|Durazno||Uruguay|3|33-21S|056-30W|||93|92| -SULS|--|---|Capitan Corbeta||Uruguay|3|34-52S|055-06W|||30|| -SUME|86|490|Mercedes||Uruguay|3|33-15S|058-04W|||22|17| -SUMO|86|440|Melo||Uruguay|3|32-22S|054-13W|||100|100| -SUMU|86|580|Carrasco||Uruguay|3|34-50S|056-00W|||32|32|P -SUPE|--|---|Maldonado / Punta Est||Uruguay|3|34-55S|054-55W|||15|| -SUPU|86|430|Paysandu||Uruguay|3|32-20S|058-02W|||61|61| -SURV|86|350|Rivera||Uruguay|3|30-53S|055-32W|||205|241| -SUSO|86|360|Salto||Uruguay|3|31-23S|057-57W|||34|33|P -SUTB|86|370|Tacuarembo||Uruguay|3|31-42S|055-59W|||134|134| -SUTR|86|500|Treinta Y Tres||Uruguay|3|33-13S|054-23W|||46|46|P -SVAC|80|427|Acarigua||Venezuela|3|09-33N|069-14W|||226|225|P -SVBC|80|419|Barcelona||Venezuela|3|10-07N|064-41W|10-07N|064-41W|7|7|P -SVBI|80|440|Barinas||Venezuela|3|08-37N|070-13W|||203|204|P -SVBM|80|410|Barquisimeto||Venezuela|3|10-04N|069-19W|10-04N|069-19W|613|614|P -SVBS|80|413|Maracay-B. A. Sucre||Venezuela|3|10-15N|067-39W|10-15N|067-39W|436|437|P -SVCB|80|444|Ciudad Bolivar||Venezuela|3|08-09N|063-33W|08-07N|063-32W|43|48|P -SVCL|80|442|Calabozo||Venezuela|3|08-56N|067-25W|||100|101|P -SVCP|--|---|Carupano / Gen. Jose||Venezuela|3|10-40N|063-16W|||10|| -SVCR|80|403|Coro||Venezuela|3|11-25N|069-41W|11-25N|069-41W|16|17|P -SVCS|--|---|Caracas / Oscar Macha||Venezuela|3|10-18N|066-49W|||654|| -SVCU|80|420|Cumana||Venezuela|3|10-27N|064-11W|||2|4|P -SVFM|80|416|Caracas / La Carlota||Venezuela|3|10-30N|066-53W|10-30N|066-53W|835|835|P -SVGD|80|448|Guasdualito||Venezuela|3|07-14N|070-48W|07-14N|070-48W|130|131|P -SVGI|80|423|Guiria||Venezuela|3|10-35N|062-19W|||13|14|P -SVGU|80|428|Guanare||Venezuela|3|09-01N|069-44W|||163|163|P -SVHG|--|---|Higuerote||Venezuela|3|10-28N|066-06W|||4|| -SVJC|--|---|Paraguana / Josefa||Venezuela|3|11-47N|070-09W|||23|| -SVJM|80|431|San Juan De Los Morros||Venezuela|3|09-55N|067-20W|||429|429|P -SVLF|--|---|La Fria||Venezuela|3|08-15N|072-16W|||98|| -SVLO|80|405|La Orchila||Venezuela|3|11-48N|066-11W|11-48N|066-11W|3|3|P -SVMC|80|407|Maracaibo-La Chinita||Venezuela|3|10-34N|071-44W|10-34N|071-44W|66|65|P -SVMD|80|438|Merida||Venezuela|3|08-36N|071-11W|||1479|1498|P -SVMG|--|---|Margarita / Del Carib||Venezuela|3|10-55N|063-59W|||23|| -SVMI|80|415|Caracas / Maiquetia Aerop. Intl. Simon Bolivar||Venezuela|3|10-36N|066-59W|10-36N|066-59W|43|48|P -SVMN|80|425|Mene Grande||Venezuela|3|09-49N|070-56W|09-49N|070-56W|27|28|P -SVMP|--|---|Metropolitano Private ||Venezuela|3|10-08N|066-47W|||175|| -SVMT|80|435|Maturin||Venezuela|3|09-45N|063-11W|09-45N|063-11W|65|66|P -SVPA|80|457|Puerto Ayacucho||Venezuela|3|05-36N|067-30W|05-36N|067-30W|73|74|P -SVPC|80|412|Pto. Cabello||Venezuela|3|10-30N|068-00W|||2|2|P -SVPM|--|---|Paramillo Private ||Venezuela|3|07-48N|072-12W|||1000|| -SVPR|--|---|Guayana / Manuel Car ||Venezuela|3|08-18N|062-44W|||144|| -SVSA|80|447|San Antonio Del Tachira||Venezuela|3|07-51N|072-27W|07-51N|072-27W|377|378|P -SVSE|80|462|Santa Elena De Uairen||Venezuela|3|04-36N|061-07W|04-36N|061-07W|907|907|P -SVSO|80|475|Sto. Domingo||Venezuela|3|07-35N|072-04W|||327|327|P -SVSP|--|---|San Felipe||Venezuela|3|10-17N|068-45W|||232|| -SVSR|80|450|San Fernando De Apure||Venezuela|3|07-54N|067-25W|07-52N|067-26W|47|48|P -SVST|--|---|San Tome Private ||Venezuela|3|08-57N|064-09W|||262|| -SVSZ|--|---|Santa Barbara Zulia||Venezuela|3|08-59N|071-57W|||10|| -SVTM|80|453|Tumeremo||Venezuela|3|07-18N|061-27W|07-18N|061-27W|180|181|P -SVTR|80|478|Temblador||Venezuela|3|09-01N|062-37W|||30|30|P -SVVA|80|472|Valencia||Venezuela|3|10-10N|067-56W|||430|431|P -SVVG|--|---|El Vigia / Perez Alph||Venezuela|3|08-38N|071-40W|||100|| -SVVL|80|426|Valera||Venezuela|3|09-21N|070-37W|09-21N|070-37W|582|582|P -SVVP|80|434|Valle De La Pascua||Venezuela|3|09-13N|066-01W|||125|| -SWBC|82|113|Barcelos||Brazil|3|00-59S|062-35W|||40|| -SYCJ|--|---|Georgetown/Cheddi Jagan International Airport||Guyana|3|06-29N|058-15W|||29|| -SYGT|81|001|Georgetown||Guyana|3|06-48N|058-09W|||1|2| -SYTM|81|002|Timehri Airport||Guyana|3|06-30N|058-15W|||28|30| -TAKA|--|---|Takao Radar Site||Japan|2|35-34N|133-14E|||15|| -TAPA|78|862|Vc Bird International Airport Antigua||Antigua and Barbuda|4|17-07N|061-47W|||8|10| -TBPB|78|954|Grantley Adams||Barbados|4|13-04N|059-29W|13-04N|059-30W|50|56|P -TBPO|--|---|Bridgetown City ||Barbados|4|13-06N|059-37W|||50|| -TDCF|78|906|Canefield Airport||Dominica|4|15-32N|061-24W|||5|5| -TDPD|78|905|Melville Hall Airport||Dominica|4|15-32N|061-18W|||13|14| -TDPR|78|907|Roseau||Dominica|4|15-18N|061-24W|||72|72| -TFFF|78|925|Le Lamentin||Martinique|4|14-36N|061-00W|14-36N|061-00W|5|7|P -TFFJ|78|894|Gustavia, Saint Barthelemy||Guadeloupe|4|17-54N|062-51W|17-54N|062-52W|48|52|P -TFFR|78|897|Le Raizet, Guadeloupe||Guadeloupe|4|16-16N|061-31W|16-16N|061-32W|11|11|P -TGPY|78|958|Point Salines Airport||Grenada|4|12-00N|061-47W|||6|7| -TIST|78|543|Charlotte Amalie St. Thomas, Cyril E. King Airport||Virgin Islands|4|18-20N|064-59W|||7|| -TISX|78|547|Christiansted, Henry E. Rohlsen Airport||Virgin Islands|4|17-42N|064-48W|17-42N|064-48W|20|17| -TJBQ|78|514|Aquadilla, Rafael Hernandez Airport|PR|United States|4|18-30N|067-08W|18-30N|067-08W|72|69| -TJMZ|--|---|Mayaguez, Eugenio Maria de Hostos Airport|PR|United States|4|18-16N|067-09W|||9|| -TJNR|78|535|ROOSEVELT ROADS PUERTO RICO|PR|United States|4|18-15N|65-38W|18-59-20N|065-38-20W|12|10| -TJPS|--|---|Ponce, Mercedita Airport|PR|United States|4|18-01N|066-34W|||8|| -TJSJ|--|---|San Juan, Luis Munoz Marin International Airport|PR|United States|4|18-27N|066-00W|||3|| -TKPK|78|858|Golden Rock||Saint Kitts and Nevis|4|17-18N|062-41W|||48|48| -TKPN|78|859|Charlestown / Newcast||Antigua and Barbuda|4|17-12N|062-35W|||17|| -TLPC|78|947|Vigie||Saint Lucia|4|14-01N|061-00W|||2|2| -TLPL|78|948|Hewanorra International Airport||Saint Lucia|4|13-45N|060-57W|||3|10| -TNCA|78|982|Queen Beatrix Airport||Aruba|4|12-30N|070-01W|||18|33|P -TNCB|78|990|Flamingo Airport, Bonaire||Netherlands Antilles|4|12-09N|068-17W|||6|7|P -TNCC|78|988|Hato Airport, Curacao||Netherlands Antilles|4|12-12N|068-58W|12-12N|068-58W|9|67|P -TNCE|78|873|Roosevelt Airport Saint Eustatius||Netherlands Antilles|4|17-29N|062-59W|||38|39|P -TNCM|78|866|Juliana Airport, Saint Maarten||Netherlands Antilles|4|18-03N|063-07W|18-03N|063-07W|4|9|P -TQPF|--|---|Wallblake||Anguilla|4|18-12-17N|063-03-18W|||31|| -TRPM|--|---|Blackburne / Plymouth||Antigua and Barbuda|4|16-45N|062-10W|||12|| -TTCP|--|---|Crown Pt./ Scarborou||Trinidad and Tobago|4|11-09N|060-51W|||8|| -TTPP|78|970|Piarco International Airport, Trinidad||Trinidad and Tobago|4|10-37N|061-21W|10-35N|061-21W|12|15|P -TTPT|78|962|Crown Point Airport, Tobago||Trinidad and Tobago|4|11-09N|060-50W|11-09N|060-50W|3|6|P -TUPJ|78|550|Beef Island, Tortola||British Virgin Islands|4|18-27N|064-32W|||4|| -TVSV|78|951|Arnos Vale||Saint Vincent and the Grenadines|4|13-08N|061-12W|||9|13| -TXKF|78|016|Bermuda||Bermuda|4|32-22N|064-41W|||6||P -UAAA|36|870|Almaty||Kazakhstan|2|43-14N|076-56E|43-14N|076-56E|847|851|P -UACC|--|---|Astana||Kazakhstan|2|51-12N|071-27E||||| -UAFM|--|---|Bishkek/Manas Airport||Kyrgyzstan|2|42-51N|074-35E||||| -UAII|38|328|Shymkent||Kazakhstan|2|42-19N|069-42E|42-18N|069-36E|552|604| -UAKK|35|394|Karaganda||Kazakhstan|2|49-48N|073-09E|||553|| -UAOO|38|062|Kzyl-Orda||Kazakhstan|2|44-51N|065-30E|44-46N|065-32E|129|130|P -UARR|35|108|Uralsk||Kazakhstan|2|51-15N|051-17E|51-15N|051-24E|36|37|P -UATA|35|746|Aralskoe More||Kazakhstan|2|46-47N|061-39E|46-47N|061-40E|56|62|P -UATE|--|---|Aktau||Kazakhstan|2|43-52-12N|051-06E||||| -UATT|35|229|Aktjubinsk||Kazakhstan|2|50-17N|057-09E|50-17N|057-09E|227|219|P -UAUU|--|---|Kostanay||Kazakhstan|2|53-12-23N|063-33-03E|||182|| -UBBB|37|864|Baku / Bine Airport||Azerbaijan|6|40-27N|050-04E|40-27N|050-04E|-6|-1| -UBBG|--|---|Gyanca Airport||Azerbaijan|6|40-44N|046-24E|||330|| -UEEE|24|959|Jakutsk||Russia|2|62-01N|129-43E|62-05N|129-45E|103|101|P -UELL|30|393|Cul'Man||Russia|2|56-50N|124-52E|56-50N|124-52E|859|858|P -UERP|--|---|Polyarny||Russia|2|66-24-02N|112-01-49E|||509|| -UERR|--|---|Mirny||Russia|2|62-31-48N|114-01-48E|||347|| -UEST|--|---|Tiksi||Russia|2|71-42N|128-54E|||7|| -UGEE|37|789|Yerevan||Armenia|6|40-08N|044-28E|40-08N|044-28E|890|907|P -UGGG|37|549|Tbilisi||Georgia|6|41-41N|044-57E|41-41N|044-57E|467|490| -UGMM|37|541|Muhrani||Georgia|6|41-56N|044-35E|||551|551| -UHBP|31|329|Ekimchan||Russia|2|53-04N|132-59E|53-04N|132-56E|543|542|P -UHHH|31|735|Habarovsk||Russia|2|48-31N|135-10E|48-31N|135-10E|72|76|P -UHHO|31|655|Troickoe||Russia|2|49-27N|136-34E|49-27N|136-34E|29|33|P -UHMA|25|563|Anadyr||Russia|2|64-47N|177-34E|64-47N|177-34E|62|61|P -UHMD|25|594|Buhta Providenja||Russia|2|64-25N|173-14W|64-26N|173-14W|3|17|P -UHMG|--|---|Chaybukha||Russia|2|61-57N|160-25E||||| -UHMM|25|913|Magadan||Russia|2|59-33N|150-47E|59-35N|150-47E|118|116|P -UHPP|32|540|Petropavlovsk-Kamchatskij||Russia|2|53-05N|158-35E|52-58N|158-45E|24|84| -UHSS|32|150|Yuzhno-Sakhalinsk||Russia|2|46-57N|142-43E|46-56N|142-44E|31|24|P -UHWW|31|960|Vladivostok||Russia|2|43-07N|131-56E|43-06N|131-54E|184|183|P -UIAA|30|758|Chita||Russia|2|52-05N|113-29E|52-01N|113-20E|685|671|P -UIBB|--|---|Bratsk / Irkutsk||Russia|2|56-22-15N|101-41-55E|||490|| -UIII|30|710|Irkutsk||Russia|2|52-16N|104-19E|52-22N|104-11E|513|469|P -UIIO|30|713|Ust'Ordynskij||Russia|2|52-49N|104-46E|||525|526| -UIKB|30|253|Bodajbo||Russia|2|57-51N|114-14E|57-51N|114-12E|278|275| -UIKK|30|230|Kirensk||Russia|2|57-46N|108-04E|57-46N|108-07E|258|259|P -UINN|29|698|Nizhneudinsk||Russia|2|54-53N|099-02E|54-53N|099-02E|410|411|P -UIUH|30|739|Horinsk||Russia|2|52-10N|109-47E|52-10N|109-46E|666|666|P -UIUU|30|823|Ulan-Ude||Russia|2|51-50N|107-36E|51-48N|107-26E|510|515|P -UKBB|33|347|Boryspil||Ukraine|6|50-20N|030-58E|||121|122| -UKCC|--|---|Donetsk||Ukraine|6|48-05N|037-45E||||| -UKDD|--|---|Dnipropetrovs'k||Ukraine|6|48-32N|034-40E||||| -UKDE|--|---|Zaporizhzhia / Mokraya||Ukraine|6|47-52-02N|035-18-59E|||114|| -UKDR|--|---|Krivyy Rih / Dnipropetrovs'k||Ukraine|6|48-03N|033-13-12E||||| -UKFF|33|946|Simferopol||Ukraine|6|44-41N|034-08E|45-09N|033-59E|180|181|P -UKHH|34|300|Kharkiv||Ukraine|6|49-58N|036-08E|49-56N|036-17E|154|155|P -UKII|33|815|Kisinev||Moldova|6|47-01N|028-59E|47-01N|028-52E|180|173| -UKKE|--|---|Cherkasy||Ukraine|6|49-24-58N|031-59-47E|||114|| -UKKK|33|345|Kyiv||Ukraine|6|50-24N|030-34E|50-24N|030-27E|166|167|P -UKKM|--|---|Hostomel||Ukraine|6|50-36-01N|030-11-37E|||157|| -UKLI|--|---|Ivano-Frankivsk||Ukraine|6|48-53-03N|024-41-10E|||280|| -UKLL|33|393|L'Viv||Ukraine|6|49-49N|023-57E|49-49N|023-57E|319|323|P -UKLN|--|---|Chernovsty||Ukraine|6|48-15-36N|025-58-54E|||252|| -UKLR|33|301|Rivne||Ukraine|6|50-35N|026-08E|||231|| -UKLU|--|---|Uzhhorod||Ukraine|6|48-38-05N|022-15-53E|||117|| -UKON|--|---|Mykolaiv||Ukraine|6|47-03-29N|031-55-15E|||56|| -UKOO|33|837|Odesa||Ukraine|6|46-26N|030-46E|46-29N|030-38E|42|42|P -ULAA|22|550|Arhangel'Sk||Russia|6|64-30N|040-44E|64-35N|040-30E|13|8|P -ULAK|22|887|Kotlas||Russia|6|61-14N|046-43E|61-14N|046-38E|56|56|P -ULLI|26|063|St. Peterburg||Russia|6|59-58N|030-18E|59-58N|030-18E|4|6|P -ULMM|22|113|Murmansk||Russia|6|68-58N|033-03E|68-58N|033-03E|51|51|P -ULOL|26|477|Velikie Luki||Russia|6|56-21N|030-37E|56-23N|030-36E|98|106|P -ULWT|27|051|Tot'Ma||Russia|6|59-53N|042-45E|||134|134|P -ULWW|27|037|Vologda||Russia|6|59-19N|039-55E|59-17N|039-52E|131|130|P -UMBB|--|---|Brest||Belarus|6|52-06-30N|023-53-48E|||143|| -UMGG|--|---|Gomel'||Belarus|6|52-31-36N|031-01-06E|||144|| -UMII|26|666|Vitebsk||Belarus|6|55-10N|030-13E|55-10N|030-08E|176|176|P -UMKK|--|---|Kaliningrad/Khrabrovo Airport||Russia|6|54-43-12N|020-30E|||21|| -UMMG|--|---|Grodno||Belarus|6|53-36-06N|024-03-18E|||135|| -UMMM|--|---|Loshitsa / Minsk International 1||Belarus|6|53-51-54N|027-32-30E|||228|| -UMMS|26|850|Minsk||Belarus|6|53-56N|027-38E|53-52N|027-32E|234|231|P -UMRR|26|422|Riga||Latvia|6|56-58N|024-03E|56-58N|024-04E|7|7|P -UMRW|26|314|Ventspils||Latvia|6|57-24N|021-32E|57-22N|021-33E|3|3| -UNAA|--|---|Abakan||Russia|2|53-45N|091-24E|||245|| -UNBB|29|838|Barnaul||Russia|2|53-26N|083-31E|53-20N|083-42E|252|184|P -UNEE|--|---|Kemerovo||Russia|2|55-19-48N|086-04-48E|||260|| -UNII|29|263|Enisejsk||Russia|2|58-27N|092-09E|58-27N|092-09E|78|79|P -UNNN|29|634|Novosibirsk||Russia|2|55-05N|082-54E|55-02N|082-54E|177|176|P -UNOO|--|---|Omsk||Russia|2|54-58N|073-18E|||122|| -UNWW|--|---|Novokuznetsk||Russia|2|53-44N|087-11E|||308|| -URKA|--|---|Anapa / Vitiazevo||Russia|6|44-54N|037-19E||||| -URKK|34|929|Krasnodar||Russia|6|45-02N|039-09E|45-02N|039-09E|33|34|P -URMM|37|054|Mineral'Nye Vody||Russia|6|44-14N|043-04E|44-13N|043-06E|314|316|P -URMN|--|---|Nalchik||Russia|6|43-30-46N|043-38-12E|||445|| -URMT|--|---|Stavropol / Shpakovskoye||Russia|6|45-20N|042-00E||||| -URRR|34|731|Rostov-Na-Donu||Russia|6|47-16N|039-49E|47-15N|039-49E|77|75|P -URSS|37|171|Adler||Russia|6|43-26N|039-54E|||16|13|P -URWA|--|---|Astrakhan||Russia|6|46-17N|048-00-23E|||0|| -URWI|34|861|Elista||Russia|6|46-22N|044-20E|46-19N|044-18E|150|155| -URWW|34|560|Volgograd||Russia|6|48-47N|044-22E|48-41N|044-21E|145|134|P -USCC|--|---|Chelyabinsk-Balandino||Russia|2|55-10N|061-24E||||| -USHH|23|933|Hanty-Mansijsk||Russia|2|61-01N|069-02E|60-58N|069-04E|40|46|P -USNN|--|---|Nizhnevartovsk||Russia|2|60-56N|076-29E|||54|| -USPP|--|---|Perm'/Bolshoe Savino||Russia|2|58-00N|056-15E|||170|| -USRR|23|849|Surgut||Russia|2|61-15N|073-30E|61-15N|073-30E|44|56|P -USSS|28|440|Ekaterinburg||Russia|2|56-50N|060-38E|56-48N|060-38E|237|283|P -UTAA|--|---|Ashgabat||Turkmenistan|2|37-59N|058-22E||||| -UTDD|38|836|Dushanbe||Tajikistan|2|38-33N|068-47E|38-35N|068-47E|803|800|P -UTED|38|579|Dzizak||Uzbekistan|2|40-07N|067-50E|||345|345|P -UTNN|--|---|Nukus / Karakalpakstan||Uzbekistan|2|42-28-48N|059-37-48E||||| -UTNU|--|---|Urgench||Uzbekistan|2|41-35N|060-38-42E|||98|| -UTSM|38|413|Tamdy||Uzbekistan|2|41-44N|064-37E|41-44N|064-37E|238|237|P -UTSS|38|696|Samarkand||Uzbekistan|2|39-34N|066-57E|39-41N|066-57E|724|724|P -UTST|38|927|Termez||Uzbekistan|2|37-14N|067-16E|37-17N|067-19E|302|310|P -UTTT|38|457|Tashkent||Uzbekistan|2|41-16N|069-16E|41-16N|069-16E|489|488|P -UUBP|26|898|Brjansk||Russia|6|53-15N|034-19E|53-14N|034-23E|217|216|P -UUDD|--|---|Moscow / Domodedovo||Russia|6|55-24N|037-54E|||179|| -UUEE|--|---|Moscow / Sheremet'Ye ||Russia|6|55-59N|037-30E|||190|| -UUEM|27|402|Tver||Russia|6|56-54N|035-53E|||137|146|P -UUOO|34|122|Voronez||Russia|6|51-39N|039-15E|51-40N|039-16E|154|104| -UUWW|--|---|Moscow / Vnukovo ||Russia|6|55-39N|037-16E|||203|| -UUYT|23|803|Ust'- Kulom||Russia|2|61-41N|053-41E|||139|144|P -UUYY|23|804|Syktyvkar||Russia|2|61-43N|050-50E|61-40N|050-51E|119|119|P -UWGG|--|---|Nizhny Novgorod/Strigino||Russia|6|56-19-48N|044-00E||||| -UWKD|--|---|Kazan'||Russia|6|55-47N|049-12E||||| -UWLW|--|---|Ulyanovsk||Russia|6|54-21N|048-23E||||| -UWOO|--|---|Orenburg / Tsentralny||Russia|2|51-46-48N|055-07-12E|||109|| -UWPP|27|962|Penza||Russia|6|53-07N|045-01E|53-08N|045-01E|174|177|P -UWSS|--|---|Saratov / Tsentralny||Russia|6|51-34-12N|046-04-12E|||166|| -UWUU|--|---|Ufa||Russia|2|54-43-48N|055-55-48E||||| -UWWW|28|900|Samara||Russia|2|53-12N|050-09E|||44|| -VAAH|42|647|Ahmadabad||India|2|23-04N|072-38E|23-04N|072-38E|55|55|P -VAAK|42|934|Akola||India|2|20-42N|077-04E|||305|309|P -VAAU|43|014|Aurangabad Chikalthan Aerodrome||India|2|19-51N|075-24E|19-51N|075-24E|582|579|P -VABB|43|003|Bombay / Santacruz||India|2|19-07N|072-51E|19-05N|072-51E|8|14|P -VABI|42|080|Bilaspur||India|2|31-15N|076-40E|||589|587|P -VABJ|42|634|Bhuj-Rudramata||India|2|23-15N|069-40E|23-17N|069-40E|78|80|P -VABM|43|198|Belgaum / Sambra||India|2|15-51N|074-37E|||758|747|P -VABP|42|667|Bhopal / Bairagarh||India|2|23-17N|077-21E|23-17N|077-21E|523|523|P -VABV|42|838|Bhaunagar||India|2|21-45N|072-12E|||5|11| -VAGO|43|194|Goa / Dabolim Airport||India|2|15-23N|073-49E|||42|52| -VAID|42|754|Indore||India|2|22-43N|075-48E|22-43N|075-48E|561|567|P -VAJB|42|675|Jabalpur||India|2|23-12N|079-57E|23-10N|079-57E|391|393|P -VAKD|42|855|Khandwa||India|2|21-50N|076-22E|||317|318| -VAKP|43|157|Kolhapur||India|2|16-42N|074-14E|||569|570| -VANP|42|867|Nagpur Sonegaon||India|2|21-06N|079-03E|21-06N|079-03E|308|310|P -VARK|42|737|Rajkot||India|2|22-18N|070-47E|||134|138|P -VASL|43|117|Sholapur||India|2|17-40N|075-54E|||477|479|P -VBBM|48|019|Bhamo||Myanmar|2|24-16N|097-12E|||111|113| -VBBS|48|094|Pathein||Myanmar|2|16-46N|094-46E|16-46N|094-46E|9|10|P -VBCI|48|109|Coco Island||Myanmar|2|14-07N|093-22E|14-07N|093-22E|2|3|P -VBHL|48|010|Homalin||Myanmar|2|24-52N|094-55E|||130|131| -VBKG|48|060|Kengtung||Myanmar|2|21-18N|099-37E|21-18N|099-37E|827|828| -VBKP|48|071|Kyaukpyu||Myanmar|2|19-25N|093-33E|||5|5| -VBLS|48|035|Lashio||Myanmar|2|22-56N|097-45E|||747|749| -VBMK|48|008|Myitkyina||Myanmar|2|25-22N|097-24E|25-22N|097-24E|145|147|P -VBML|48|053|Meiktila||Myanmar|2|20-50N|095-50E|20-53N|095-54E|214|220|P -VBMM|48|103|Moulmein||Myanmar|2|16-30N|097-37E|16-30N|097-37E|21|22| -VBPA|48|099|Hpa-An||Myanmar|2|16-45N|097-40E|||9|10| -VBPR|48|077|Prome||Myanmar|2|18-48N|095-13E|||58|60| -VBPT|48|001|Putao||Myanmar|2|27-20N|097-25E|||409|| -VBRM|48|042|Mandalay||Myanmar|2|21-59N|096-06E|21-59N|096-06E|74|76| -VBRN|48|110|Mergui||Myanmar|2|12-26N|098-36E|12-26N|098-36E|36|37|P -VBRR|48|096|Mingaladon||Myanmar|2|16-54N|096-11E|16-54N|096-11E|28|29| -VBSY|48|080|Sandoway||Myanmar|2|18-28N|094-21E|18-28N|094-21E|9|11|P -VBTV|48|108|Dawei||Myanmar|2|14-06N|098-13E|14-06N|098-13E|16|17|P -VCBI|43|450|Katunayake||Sri Lanka|2|07-10N|079-53E|||8|8|P -VCCA|43|421|Anuradhapura||Sri Lanka|2|08-20N|080-25E|||89|89|P -VCCB|43|436|Batticaloa||Sri Lanka|2|07-43N|081-42E|||5|12|P -VCCC|43|467|Ratmalana||Sri Lanka|2|06-49N|079-53E|||5|5|P -VCCT|43|418|Trincomalee||Sri Lanka|2|08-35N|081-15E|08-35N|081-15E|3|7|P -VDKC|48|995|Kompong-Cham||Cambodia|2|12-00N|105-27E|12-00N|105-27E|16|16| -VDPP|48|991|Phnom-Penh / Pochentong||Cambodia|2|11-33N|104-51E|11-33N|104-51E|10|10|P -VDSR|48|966|Siemreap||Cambodia|2|13-22N|103-51E|13-22N|103-51E|15|15|P -VEAT|42|724|Agartala||India|2|23-53N|091-15E|23-53N|091-15E|15|16|P -VEBD|42|398|Siliguri||India|2|26-38N|088-19E|26-41N|088-20E|126|131|P -VEBS|42|971|Bhubaneswar||India|2|20-15N|085-50E|20-15N|085-50E|45|46|P -VECC|42|809|Calcutta / Dum Dum||India|2|22-39N|088-27E|22-39N|088-27E|4|6|P -VECX|43|368|Car Nicobar||India|2|09-09N|092-49E|09-09N|092-49E|10|14|P -VEGK|42|379|Gorakhpur||India|2|26-45N|083-22E|26-45N|083-22E|76|77|P -VEGT|42|410|Gauhati||India|2|26-06N|091-35E|26-06N|091-35E|47|54|P -VEGY|42|591|Gaya||India|2|24-45N|084-57E|24-45N|084-57E|110|116|P -VEIM|42|623|Imphal Tulihal||India|2|24-46N|093-54E|24-46N|093-54E|780|781|P -VEJH|42|886|Jharsuguda||India|2|21-55N|084-05E|21-55N|084-05E|228|230|P -VEJS|42|798|Jamshedpur||India|2|22-49N|086-11E|22-49N|086-11E|140|142|P -VELR|42|309|North Lakhimpur||India|2|27-14N|094-07E|||101|102|P -VEMN|42|314|Dibrugarh / Mohanbari||India|2|27-29N|095-01E|27-29N|095-01E|110|111|P -VEPB|43|333|Port Blair||India|2|11-40N|092-43E|11-40N|092-43E|73|79|P -VEPT|42|492|Patna||India|2|25-36N|085-06E|25-36N|085-06E|51|60|P -VERC|42|701|M. O. Ranchi||India|2|23-19N|085-19E|23-19N|085-19E|652|652| -VGCB|41|992|Cox's Bazar||Bangladesh|2|21-26N|091-58E|21-26N|091-58E|2|4|P -VGEG|41|978|Chittagong Patenga ||Bangladesh|2|22-16N|091-49E|22-15N|091-49E|4|6|P -VGIS|41|907|Ishurdi||Bangladesh|2|24-08N|089-03E|24-09N|089-02E|13|14|P -VGJR|41|936|Jessore||Bangladesh|2|23-11N|089-10E|23-11N|089-10E|6|7|P -VGRJ|41|895|Rajshahi||Bangladesh|2|24-22N|088-42E|24-22N|088-42E|17|20|P -VGSY|41|891|Sylhet||Bangladesh|2|24-54N|091-53E|24-54N|091-53E|34|35|P -VGTJ|41|923|Dhaka||Bangladesh|2|23-46N|090-23E|23-46N|090-23E|8|9|P -VGZR|41|922|Kurmitola, Dia||Bangladesh|2|23-51N|090-24E|||9|10|P -VHCH|45|001|Cheung Chau||Hong Kong|2|22-12N|114-01E|||79|| -VHHH|45|007|Hong Kong Inter-National Airport||Hong Kong|2|22-20N|114-11E|||5|24| -VIAG|42|260|Agra||India|2|27-09N|077-58E|27-09N|077-58E|168|169|P -VIAL|42|475|Allahabad / Bamhrauli||India|2|25-27N|081-44E|25-27N|081-44E|97|98|P -VIAR|42|071|Amritsar||India|2|31-38N|074-52E|31-42N|074-48E|229|234|P -VIBN|42|479|Varanasi / Babatpur||India|2|25-27N|082-52E|||81|85| -VIBY|42|189|Bareilly||India|2|28-22N|079-24E|28-22N|079-24E|167|169|P -VICX|42|367|Kanpur / Chakeri||India|2|26-24N|080-24E|26-24N|080-24E|123|126| -VIDD|42|182|New Delhi / Safdarjung||India|2|28-35N|077-12E|28-35N|077-12E|211|216|P -VIDP|42|181|New Delhi / Palam||India|2|28-34N|077-07E|||220|233| -VIGR|42|361|Gwalior||India|2|26-14N|078-15E|26-14N|078-15E|205|207|P -VIHR|42|131|Hissar||India|2|29-10N|075-44E|||216|221|P -VIJN|42|463|Jhansi||India|2|25-27N|078-35E|||250|251| -VIJO|42|339|Jodhpur||India|2|26-18N|073-01E|26-18N|073-01E|217|224|P -VIJP|42|348|Jaipur / Sanganer||India|2|26-49N|075-48E|26-49N|075-48E|385|390|P -VIKO|42|452|Kota Aerodrome||India|2|25-09N|075-51E|||273|274|P -VILK|42|369|Lucknow / Amausi||India|2|26-45N|080-53E|26-45N|080-53E|122|128|P -VIST|42|571|Satna||India|2|24-34N|080-50E|||315|317|P -VIUD|42|542|Udaipur Dabok||India|2|24-37N|073-53E|24-37N|073-53E|509|514| -VLAP|48|957|Attopeu||Laos|2|14-48N|106-50E|||105|105| -VLIP|48|955|Pakse||Laos|2|15-07N|105-10E|15-08N|105-47E|102|102|P -VLLB|48|930|Luang-Prabang||Laos|2|19-53N|102-08E|||305|305|P -VLSB|48|938|Sayaboury||Laos|2|19-14N|101-44E|19-14N|101-44E|326|326| -VLSK|48|947|Savannakhet||Laos|2|16-33N|104-39E|||155|145|P -VLSV|48|952|Saravane||Laos|2|15-41N|106-26E|||168|168|P -VLTK|48|946|Thakhek||Laos|2|17-23N|104-39E|||52|152| -VLVT|48|940|Vientiane||Laos|2|17-57N|102-34E|17-59N|102-34E|171|171|P -VMMC|45|011|Taipa||Macau|2|22-10N|113-34E|||114||P -VNBW|44|438|Bhairawa Airport||Nepal|2|27-31N|083-27E|||109|109| -VNJL|44|424|Jumla||Nepal|2|29-17N|082-10E|||2300|| -VNKT|44|454|Kathmandu Airport||Nepal|2|27-42N|085-22E|27-42N|085-22E|1337|1337| -VNPK|44|434|Pokhara Airport||Nepal|2|28-13N|084-00E|||827|827| -VNSI|44|449|Simra Airport||Nepal|2|27-10N|084-59E|||137|137| -VNSK|44|416|Surkhet||Nepal|2|28-36N|081-37E|||720|720| -VNTJ|44|474|Taplejung||Nepal|2|27-21N|087-40E|||1732|1732| -VNVT|44|478|Biratnagar Airport||Nepal|2|26-29N|087-16E|||72|72| -VOBG|--|---|Bangalore / Hindustan||India|2|12-57N|077-40E|||888|| -VOBI|43|205|Bellary||India|2|15-09N|076-51E|||448|449| -VOBZ|43|181|Vijayawada / Gannavaram||India|2|16-32N|080-48E|16-32N|080-48E|21|24| -VOCB|43|321|Coimbatore / Peelamedu||India|2|11-02N|077-03E|||396|399|P -VOCC|43|353|Cochin / Willingdon||India|2|09-57N|076-16E|09-56N|076-14E|1|3|P -VOCP|43|241|Cuddapah||India|2|14-29N|078-50E|||129|130| -VOHY|43|128|Hyderabad Airport||India|2|17-27N|078-28E|17-27N|078-28E|530|545| -VOMD|43|360|Madurai||India|2|09-50N|078-05E|||139|131| -VOML|43|284|Mangalore / Bajpe||India|2|12-55N|074-53E|12-58N|074-54E|102|102|P -VOMM|43|279|Madras / Minambakkam||India|2|13-00N|080-11E|13-00N|080-11E|10|16|P -VOTR|43|344|Tiruchchirapalli||India|2|10-46N|078-43E|10-46N|078-43E|85|88|P -VOTV|43|372|Thiruvananthapuram||India|2|08-28N|076-57E|||4|8| -VOVR|43|303|Vellore||India|2|12-55N|079-09E|||213|214| -VRGN|43|599|Gan||Maldives|2|00-41S|073-09E|00-41S|073-09E|2|2| -VRMM|43|555|Male||Maldives|2|04-12N|073-32E|04-12N|073-32E|2|2| -VTBC|48|480|Chanthaburi||Thailand|2|12-36N|102-07E|12-36N|102-07E|3|4|P -VTBD|48|456|Don Muang||Thailand|2|13-55N|100-36E|13-55N|100-36E|4|12|P -VTBG|48|450|Kanchanaburi||Thailand|2|14-01N|099-32E|||28|29|P -VTBI|48|430|Prachin Buri||Thailand|2|14-03N|101-22E|||5|6|P -VTBJ|48|465|Phetchaburi||Thailand|2|13-09N|100-04E|||2|4|P -VTBP|48|500|Prachuap Khirikhan||Thailand|2|11-50N|099-50E|11-48N|099-48E|4|5|P -VTBS|48|459|Chon Buri||Thailand|2|13-22N|100-59E|||1|2|P -VTBU|48|478|Rayong||Thailand|2|12-38N|101-21E|12-38N|101-21E|3|5|P -VTCC|48|327|Chiang Mai||Thailand|2|18-47N|098-59E|18-47N|098-59E|312|314|P -VTCH|48|300|Mae Hong Son||Thailand|2|19-18N|097-50E|||267|269|P -VTCL|48|328|Lampang||Thailand|2|18-17N|099-31E|18-16N|099-30E|241|242|P -VTCN|48|331|Nan||Thailand|2|18-46N|100-46E|||200|201|P -VTCP|48|330|Phrae||Thailand|2|18-10N|100-10E|||161|162|P -VTCR|48|303|Chiang Rai||Thailand|2|19-55N|099-50E|||394|395|P -VTCS|48|325|Mae Sariang||Thailand|2|18-10N|097-56E|||212|213|P -VTPH|48|475|Hua Hin||Thailand|2|12-35N|099-57E|||5|6|P -VTPM|48|375|Mae Sot||Thailand|2|16-40N|098-33E|16-42N|098-33E|196|197|P -VTPN|48|400|Nakhon Sawan||Thailand|2|15-48N|100-10E|15-40N|100-08E|34|35|P -VTPS|48|378|Phitsanulok||Thailand|2|16-47N|100-16E|16-49N|100-16E|44|45|P -VTPT|48|376|Tak||Thailand|2|16-53N|099-09E|||121|124|P -VTPU|48|351|Uttaradit||Thailand|2|17-37N|100-06E|17-37N|100-06E|63|64|P -VTSA|48|570|Satun||Thailand|2|06-39N|100-05E|||4|6|P -VTSB|48|551|Surat Thani||Thailand|2|09-07N|099-21E|09-07N|099-21E|10|11|P -VTSD|48|517|Chumphon||Thailand|2|10-29N|099-11E|||3|5|P -VTSH|48|568|Songkhla||Thailand|2|07-12N|100-36E|07-12N|100-36E|4|5|P -VTSK|48|580|Pattani||Thailand|2|06-47N|101-09E|06-47N|101-09E|5|9|P -VTSN|48|552|Nakhon Si Thammarat||Thailand|2|08-28N|099-58E|||7|9|P -VTSP|48|565|Phuket Airport||Thailand|2|08-07N|098-19E|08-06N|098-18E|6|10|P -VTSR|48|532|Ranong||Thailand|2|09-59N|098-37E|09-58N|098-38E|7|8|P -VTSS|48|569|Hat Yai||Thailand|2|06-55N|100-26E|06-56N|100-25E|27|35|P -VTST|48|567|Trang||Thailand|2|07-31N|099-37E|||14|16|P -VTUB|48|383|Mukdahan||Thailand|2|16-32N|104-43E|||138|139|P -VTUC|48|403|Chaiyaphum||Thailand|2|15-48N|102-02E|15-48N|102-02E|182|183|P -VTUD|48|354|Udon Thani||Thailand|2|17-23N|102-48E|17-23N|102-48E|177|182|P -VTUK|48|381|Khon Kaen||Thailand|2|16-26N|102-50E|||165|166|P -VTUL|48|353|Loei||Thailand|2|17-27N|101-44E|||253|254|P -VTUM|48|352|Nong Khai||Thailand|2|17-52N|102-43E|||174|175|P -VTUN|48|431|Nakhon Ratchasima||Thailand|2|14-58N|102-05E|14-58N|102-05E|187|188|P -VTUP|48|357|Nakhon Phanom||Thailand|2|17-25N|104-47E|17-25N|104-47E|146|148|P -VTUR|48|405|Roi Et||Thailand|2|16-03N|103-41E|||140|142|P -VTUS|48|356|Sakon Nakhon||Thailand|2|17-09N|104-08E|||171|172|P -VTUU|48|407|Ubon Ratchathani||Thailand|2|15-15N|104-52E|15-15N|104-52E|123|127|P -VVDN|48|855|Da Nang||Vietnam|2|16-02N|108-11E|16-02N|108-11E|7|7|P -VVGL|--|---|Hanoi / Gialam||Vietnam|2|21-02N|105-51E|||12|| -VVNB|48|820|Ha Noi||Vietnam|2|21-01N|105-48E|21-01N|105-48E|6|6|P -VVNT|48|877|Nha Trang||Vietnam|2|12-15N|109-12E|12-15N|109-12E|10|10|P -VVPB|48|852|Hue||Vietnam|2|16-24N|107-41E|||17|17|P -VVPK|48|866|Pleiku City||Vietnam|2|13-59N|108-00E|13-59N|108-00E|801|801| -VVQN|48|870|Quy Nhon||Vietnam|2|13-46N|109-13E|13-46N|109-13E|6|6|P -VVTS|48|900|Ho Chi Minh||Vietnam|2|10-49N|106-40E|10-49N|106-40E|19|19|P -VVVH|48|845|Vinh||Vietnam|2|18-42N|105-40E|||6|6|P -VYSW|48|062|Sittwe||Myanmar|2|20-08N|092-53E|20-08N|092-53E|4|5|P -VYYY|48|097|Yangon||Myanmar|2|16-46N|096-10E|16-46N|096-10E|14|15|P -WAAA|97|180|Ujung Pandang / Hasanuddin||Indonesia|5|05-04S|119-33E|05-04S|119-33E|14|14|P -WAAB|97|192|Bau-Bau / Beto Ambiri||Indonesia|5|05-28S|122-37E|05-28S|122-37E|2|2| -WAAU|97|146|Kendari / Woltermon-Ginsidi||Indonesia|5|04-06S|122-26E|04-05S|122-25E|50|50|P -WABB|97|560|Biak / Mokmer||Indonesia|5|01-11S|136-07E|01-12S|136-07E|11|11|P -WABI|97|682|Nabire||Indonesia|5|03-20S|135-30E|||3|3|P -WABN|97|796|Kokonao / Timuka||Indonesia|5|04-43S|136-26E|||3|3|P -WABO|97|570|Serui / Yendosa||Indonesia|5|01-52S|136-14E|||3|3|P -WABT|97|780|Enarotali||Indonesia|5|03-55S|136-22E|03-55S|136-22E|1770|1770|P -WAJI|97|580|Sarmi||Indonesia|5|01-50S|138-43E|01-50S|138-43E|3|3|P -WAJJ|97|690|Jayapura / Sentani||Indonesia|5|02-34S|140-29E|02-35S|140-31E|99|99|P -WAJW|97|686|Wamena / Wamena||Indonesia|5|04-04S|138-57E|04-06S|138-57E|1660|1660|P -WAKK|97|980|Merauke / Mopah||Indonesia|5|08-28S|140-23E|08-31S|140-25E|3|3|P -WAKT|97|876|Tanah Merah / Tanah Merah||Indonesia|5|06-06S|140-18E||140-18E|16|16|P -WAMA|97|406|Galela / Gamarmalamu||Indonesia|5|01-49N|127-50E|||8|| -WAMG|97|048|Gorontalo / Jalaluddin||Indonesia|5|00-31N|123-04E|00-38N|122-51E|2|2|P -WAMH|97|008|Tahuna||Indonesia|5|03-35N|125-28E|03-35N|125-28E|38|38| -WAMI|97|028|Toli-Toli / Lalos||Indonesia|5|01-01N|120-48E|01-01N|120-48E|2|2| -WAML|97|072|Palu / Mutiara||Indonesia|5|00-41S|119-44E|00-55S|119-54E|6|6|P -WAMM|97|014|Menado / Dr. Sam Ratulangi||Indonesia|5|01-32N|124-55E|01-33N|124-56E|80|80|P -WAMP|97|096|Poso / Kasiguncu||Indonesia|5|01-23S|120-44E|01-24S|120-43E|2|2|P -WAMT|97|430|Ternate / Babullah||Indonesia|5|00-47N|127-23E|00-50N|127-23E|23|23|P -WAMW|97|086|Luwuk / Bubung||Indonesia|5|00-54S|122-47E|00-54S|122-47E|2|2|P -WAPA|97|722|Amahai||Indonesia|5|03-21S|128-53E|||10|10| -WAPH|97|460|Labuha / Taliabu||Indonesia|5|01-37S|124-33E|01-37S|124-33E|3|3| -WAPI|97|900|Saumlaki||Indonesia|5|07-59S|131-18E|07-59S|131-18E|24|24|P -WAPN|97|600|Sanana||Indonesia|5|02-05S|126-00E|02-05S|126-00E|2|2|P -WAPP|97|724|Ambon / Pattimura||Indonesia|5|03-42S|128-05E|03-42S|128-05E|12|12|P -WAPR|97|700|Namlea||Indonesia|5|03-15S|127-05E|||20|20| -WASF|97|630|Fak-Fak / Torea||Indonesia|5|02-53S|132-15E|||130|130|P -WASK|97|760|Kaimana / Utarom||Indonesia|5|03-40S|133-45E|03-40S|133-45E|3|3|P -WASR|97|530|Manokwari / Rendani||Indonesia|5|00-53S|134-03E|00-53S|134-03E|3|3|P -WASS|97|502|Sorong / Jefman||Indonesia|5|00-56S|131-07E|00-56S|131-07E|3|3|P -WBGB|96|441|Bintulu||Malaysia|5|03-12N|113-02E|03-12N|113-02E|2|5|P -WBGG|96|413|Kuching||Malaysia|5|01-29N|110-20E|01-29N|110-20E|27|27|P -WBGR|96|449|Miri||Malaysia|5|04-20N|113-59E|||17|18|P -WBGS|96|421|Sibu||Malaysia|5|02-20N|111-50E|||8|8|P -WBKK|96|471|Kota Kinabalu||Malaysia|5|05-56N|116-03E|05-57N|116-03E|3|3|P -WBKL|96|465|Labuan||Malaysia|5|05-18N|115-15E|05-17N|115-14E|30|30|P -WBKS|96|491|Sandakan||Malaysia|5|05-54N|118-04E|05-54N|118-04E|12|13|P -WBKT|96|477|Kudat||Malaysia|5|06-55N|116-50E|06-55N|116-50E|3|5|P -WBKW|96|481|Tawau||Malaysia|5|04-16N|117-53E|04-16N|117-52E|18|20|P -WBSB|96|315|Brunei Airport||Brunei|5|04-56N|114-56E|04-56N|114-56E|22|15| -WIAA|96|001|Sabang / Cut Bau||Indonesia|5|05-52N|095-19E|05-52N|095-19E|126|126|P -WIAG|96|273|Menggala / Astra Ksetra||Indonesia|5|04-27S|105-11E|04-37S|105-13E|19|19| -WIAM|96|801|Tasikmalaya / Cibeureum||Indonesia|5|07-20S|108-15E|07-21S|108-15E|335|335|P -WIAR|96|881|Madiun / Iswahyudi||Indonesia|5|07-37S|111-31E|07-37S|111-26E|110|110|P -WIAS|96|947|Malang / Abdul Rahkmansaleh||Indonesia|5|07-58S|112-42E|07-56S|112-43E|526|526|P -WIBB|96|109|Pakanbaru / Simpangtiga||Indonesia|5|00-28N|101-27E|00-28N|101-27E|31|31|P -WIIA|96|739|Curug / Budiarto||Indonesia|5|06-14S|106-39E|06-17S|106-34E|46|46|P -WIIB|96|781|Bandung / Husein||Indonesia|5|06-54S|107-35E|06-54S|107-35E|740|740|P -WIIH|96|747|Jakarta Halim Perdanakusuma||Indonesia|5|06-15S|106-54E|||30|30|P -WIII|96|749|Jakarta / Soekarno-Hatta||Indonesia|5|06-07S|106-39E|06-08S|106-40E|8|8| -WIIJ|96|853|Jogyakarta / Adisucipto||Indonesia|5|07-47S|110-26E|07-47S|110-26E|107|107|P -WIIK|96|773|Kalijati||Indonesia|5|06-33S|107-40E|06-33S|107-40E|110|110| -WIIL|96|805|Cilacap||Indonesia|5|07-44S|109-01E|07-44S|109-01E|6|6|P -WIIS|96|839|Semarang / Ahmadyani||Indonesia|5|06-59S|110-23E|06-59S|110-23E|3|3|P -WIIT|96|295|Telukbetung / Beranti||Indonesia|5|05-16S|105-11E|05-14S|105-11E|96|96|P -WIKB|96|087|Batan, Sumatra||Indonesia|5|01-07N|104-07E|||24|| -WIKD|96|249|Tanjungpandan / Buluh Tumbang||Indonesia|5|02-45S|107-45E|02-45S|107-46E|44|44|P -WIKK|96|237|Pangkalpinang / Pangkalpinang||Indonesia|5|02-10S|106-08E|02-10S|106-08E|33|33|P -WIKN|96|091|Tanjungpinang / Kijang||Indonesia|5|00-55N|104-32E|00-55N|104-32E|18|18|P -WIKS|96|179|Singkep / Dabo||Indonesia|5|00-29S|104-35E|00-29S|104-35E|31|31|P -WIMB|96|075|Gunung Sitoli / Binaka||Indonesia|5|01-30N|097-38E|01-30N|097-38E|6|6|P -WIMG|96|163|Padang / Tabing||Indonesia|5|00-53S|100-21E|00-53S|100-21E|3|3|P -WIMM|96|035|Medan / Polonia||Indonesia|5|03-34N|098-41E|03-34N|098-40E|25|25|P -WIMS|96|073|Sibolga / Pinangsori||Indonesia|5|01-33N|098-53E|01-33N|098-54E|3|3|P -WIOI|96|533|Singkawang Ii||Indonesia|5|01-05N|109-40E|01-05N|109-40E|38|38| -WIOK|96|615|Ketapang / Rahadi Usmaman||Indonesia|5|01-51S|109-58E|||9|9| -WION|96|147|Ranai / Ranai||Indonesia|5|03-57N|108-23E|03-55N|108-23E|2|2|P -WIOO|96|581|Pontianak / Supadio||Indonesia|5|00-09S|109-24E|00-09S|109-24E|3|3|P -WIOS|96|559|Sintang||Indonesia|5|00-07N|111-32E|||30|30| -WIPA|96|195|Jambi / Sultan Taha||Indonesia|5|01-38S|103-39E|01-38S|103-39E|25|25|P -WIPH|96|207|Kerinci / Depati Parbo||Indonesia|5|02-46S|101-22E||101-22E|782|782| -WIPL|96|253|Bengkulu / Padangkemiling||Indonesia|5|03-53S|102-20E|03-52S|102-21E|16|16|P -WIPP|96|221|Palembang / Talangbetutu||Indonesia|5|02-54S|104-42E|02-54S|104-42E|10|10|P -WIPR|96|171|Rengat / Japura||Indonesia|5|00-28N|102-19E|00-21S|102-20E|46|46|P -WITC|96|015|Meulaboh / Cut Nyak Dhien||Indonesia|5|04-15N|096-07E|04-15N|096-07E|90|90| -WITM|96|009|Lhokseumawe / Malikussaleh||Indonesia|5|05-14N|097-12E|05-14N|097-12E|87|87|P -WITT|96|011|Banda Aceh / Blangbintang||Indonesia|5|05-31N|095-25E|05-31N|095-25E|21|21|P -WMBA|48|620|Sitiawan||Malaysia|5|04-13N|100-42E|04-13N|100-42E|7|8|P -WMKC|48|615|Kota Bharu||Malaysia|5|06-10N|102-17E|06-10N|102-17E|5|5|P -WMKD|48|657|Kuantan||Malaysia|5|03-37N|103-13E|03-47N|103-13E|18|16|P -WMKJ|48|679|Johore Bharu / Senai||Malaysia|5|01-38N|103-40E|||37|40|P -WMKK|48|647|Sepang/KL International Airport||Malaysia|5|02-44N|101-42E|03-07N|101-33E|21|22|P -WMKL|48|600|Langkawi||Malaysia|5|06-20N|099-44E|06-20N|099-44E|8|7|P -WMKM|48|665|Malacca||Malaysia|5|02-16N|102-15E|||11|9|P -WMKP|48|601|Penang / Bayan Lepas||Malaysia|5|05-18N|100-16E|05-18N|100-16E|3|4|P -WMSA|--|---|Subang/Sultan Abdul Aziz Shah Airport||Malaysia|5|03-07N|101-32E|||27|| -WPDL|97|390|Dilli / Dilli Airport||East Timor|5|08-34S|125-34E|08-33S|125-33E|6|6|P -WPEC|97|395|Baucau||East Timor|5|08-30S|126-24E|08-30S|126-24E|522|522| -WPOC|97|385|Oe-Cusse / Oe Cusse||East Timor|5|09-12S|124-22E||124-22E|5|5|P -WRBB|96|685|Banjarmasin / Syamsuddin Noor||Indonesia|5|03-26S|114-45E|03-27S|114-46E|20|20|P -WRBI|96|645|Pangkalan Bun / Iskandar||Indonesia|5|02-42S|110-42E|02-42S|111-41E|25|25| -WRBK|96|695|Kotabaru||Indonesia|5|03-24S|116-13E|||18|18| -WRBM|96|595|Muaratewe / Beringin||Indonesia|5|00-57S|114-54E|00-57S|114-54E|60|60| -WRBP|96|655|Palangkaraya / Panarung||Indonesia|5|01-00S|114-00E|01-00S|114-00E|27|27|P -WRKC|97|300|Maumere / Wai Oti||Indonesia|5|08-38S|122-15E|08-38S|122-14E|3|3|P -WRKK|97|372|Kupang / El Tari||Indonesia|5|10-10S|123-40E|10-10S|123-40E|108|108|P -WRKL|97|310|Larantuka||Indonesia|5|08-16S|122-58E|||9|| -WRKM|97|320|Alor / Mali||Indonesia|5|08-13S|124-34E|||12|12| -WRKR|97|378|Rote / Baa||Indonesia|5|10-44S|123-04E|||1|1| -WRKS|97|380|Sabu / Tardamu||Indonesia|5|10-30S|121-50E|10-30S|121-50E|26|26| -WRLB|96|505|Longbawan / Juvai Semaring||Indonesia|5|03-44N|115-41E|||550|| -WRLG|96|525|Tanjung Selor||Indonesia|5|02-51N|117-20E|||50|50| -WRLK|96|529|Tanjung Redep / Berau||Indonesia|5|02-07N|117-27E|02-07N|117-27E|26|26| -WRLL|96|633|Balikpapan / Sepinggan||Indonesia|5|01-16S|116-54E|01-16S|116-54E|3|3|P -WRLR|96|509|Tarakan / Juwata||Indonesia|5|03-20N|117-34E|03-20N|117-34E|6|6|P -WRLS|96|607|Samarinda / Temindung||Indonesia|5|00-37S|117-09E|00-37S|117-09E|230|230|P -WRRA|97|240|Ampenan / Selaparang||Indonesia|5|08-32S|116-04E|08-34S|116-06E|3|3|P -WRRB|97|270|Bima||Indonesia|5|08-33S|118-42E|08-33S|118-41E|2|2| -WRRR|97|230|Denpasar / Ngurah-Rai||Indonesia|5|08-45S|115-10E|08-45S|115-10E|1|1|P -WRRS|97|260|Sumbawa Besar / Sumbawa Besar||Indonesia|5|08-26S|117-25E|08-30S|117-25E|3|3|P -WRRW|97|340|Waingapu / Mau Hau||Indonesia|5|09-40S|120-20E|09-40S|120-19E|12|12|P -WRSJ|96|935|Surabaya / Juanda||Indonesia|5|07-22S|112-46E|07-23S|112-47E|3|3|P -WRSP|96|933|Surabaya / Perak||Indonesia|5|07-13S|112-43E|07-13S|112-43E|3|3|P -WRSQ|96|845|Surakarta / Adisumarmo||Indonesia|5|07-52S|110-55E|07-31S|110-45E|104|104|P -WRSS|96|937|Surabaya||Indonesia|5|07-13S|113-43E|||3|3| -WSAP|48|694|Singapore / Paya Lebar||Singapore|5|01-22N|103-55E|01-22N|103-55E|18|32| -WSSS|48|698|Singapore / Changi Airport||Singapore|5|01-22N|103-59E|01-22N|103-59E|5|16|P -YAYE|--|---|Ayers Rock||Australia|5|25-11S|130-58E|||496|| -YBAF|94|575|Archerfield Aerodrome||Australia|5|27-34S|153-00E|||23|18| -YBAM|94|568|Amberley Aerodrome||Australia|5|27-38S|152-43E|||27|31|P -YBAS|94|326|Alice Springs Aerodrome||Australia|5|23-48S|133-53E|23-48S|133-54E|545|547|P -YBBN|94|578|Brisbane Airport M. O||Australia|5|27-23S|153-06E|27-25S|153-05E|4|5|P -YBCG|94|592|Coolangatta Airport Aws||Australia|5|28-10S|153-30E|||6|6| -YBCS|94|287|Cairns Airport||Australia|5|16-53S|145-45E|16-53S|145-45E|3|7|P -YBCV|94|510|Charleville Airport||Australia|5|26-24S|146-16E|26-25S|146-16E|306|304|P -YBGL|94|380|Gladstone||Australia|5|23-51S|151-15E|23-51S|151-16E|75|76|P -YBLR|94|346|Longreach Airport||Australia|5|23-26S|144-16E|23-26S|144-16E|192|193|P -YBMA|94|332|Mount Isa Amo||Australia|5|20-40S|139-28E|20-40S|139-29E|342|341|P -YBMK|94|367|Mackay Mo||Australia|5|21-07S|149-12E|21-07S|149-13E|30|32|P -YBOK|94|552|Oakey Aerodrome||Australia|5|27-25S|151-44E|||407|407|P -YBPN|94|365|Proserpine Airport||Australia|5|20-29S|148-32E|||25|18| -YBRK|94|374|Rockhampton Airport||Australia|5|23-23S|150-28E|23-23S|150-28E|10|14|P -YBRM|94|203|Broome Airport||Australia|5|17-57S|122-13E|17-57S|122-14E|17|9|P -YBTL|94|294|Townsville Amo||Australia|5|19-15S|146-45E|19-15S|146-45E|6|9|P -YBWP|94|171|Weipa City||Australia|5|12-38S|141-53E|||12|| -YDGV|94|150|Gove Airport||Australia|5|12-16S|136-49E|12-16S|136-49E|52|54|P -YDTC|94|238|Tennant Creek Airport||Australia|5|19-38S|134-10E|19-38S|134-10E|375|376|P -YDYL|94|462|Yulara Aws||Australia|5|25-11S|130-58E|||493|492| -YMAV|--|---|Avalon, Avalon Airport||Australia|5|38-02S|144-29E|||8|| -YMAY|94|896|Albury Airport||Australia|5|36-04S|146-57E|||165|171| -YMDV|94|960|Devonport East||Australia|5|41-10S|146-22E|||47|| -YMEN|94|864|Goldstream Aws||Australia|5|37-44S|145-24E|||76|84| -YMES|94|907|East Sale Aerodrome||Australia|5|38-06S|147-08E|38-06S|147-08E|5|8|P -YMHB|94|975|Hobart Airport||Australia|5|42-50S|147-29E|42-50S|147-30E|4|27|P -YMLT|94|968|Launceston Airport||Australia|5|41-32S|147-12E|41-32S|147-12E|171|178|P -YMLV|94|865|Laverton Aerodrome||Australia|5|37-51S|144-44E|37-52S|144-45E|18|21|P -YMMB|94|870|Moorabbin Airport Aws||Australia|5|37-58S|145-06E|||13|13|P -YMMG|94|821|Mount Gambier Aerodrome||Australia|5|37-44S|140-47E|37-44S|140-47E|65|69|P -YMMI|94|693|Mildura Airport||Australia|5|34-13S|142-05E|34-14S|142-05E|50|52|P -YMML|94|866|Melbourne Airport||Australia|5|37-40S|144-50E|37-44S|144-50E|132|141|P -YMMQ|94|998|Macquarie Island||Australia|5|54-29S|158-57E|54-29S|158-56E|6|8|P -YMWY|94|957|Wynyard West||Australia|5|40-59S|145-43E|||11|| -YPAD|94|672|Adelaide Airport||Australia|5|34-56S|138-31E|34-56S|138-31E|6|4|P -YPAL|94|802|Albany Airport||Australia|5|34-56S|117-48E|34-56S|117-48E|71|69|P -YPBH|94|689|Broken Hill Patton Street||Australia|5|31-58S|141-28E|||315||P -YPCC|96|996|Cocos Island Airport||Christmas Island|5|12-11S|096-49E|12-11S|096-50E|3|3|P -YPCD|94|653|Ceduna Airport||Australia|5|32-07S|133-42E|32-07S|133-42E|23|17|P -YPDB|94|205|Derby||Australia|5|17-18S|123-37E|17-19S|123-38E|8|9|P -YPDN|94|120|Darwin Airport||Australia|5|12-24S|130-52E|12-26S|130-52E|31|30|P -YPEA|94|612|Bullsbrook Pearce Amo||Australia|5|31-40S|116-01E|||45|49|P -YPED|95|676|Edinburgh M. O.||Australia|5|34-42S|138-37E|||20|20|P -YPFT|94|646|Forrest Airport||Australia|5|30-50S|128-06E|30-50S|128-06E|160|156| -YPGN|94|403|Geraldton Airport||Australia|5|28-47S|114-42E|28-48S|114-42E|37|34|P -YPKG|94|637|Kalgoorlie Boulder Amo||Australia|5|30-47S|121-27E|30-46S|121-27E|367|370|P -YPKU|94|216|Kununurra Kununurra Aws ||Australia|5|15-46S|128-42E|||44|45|P -YPLC|94|674|Leigh Creek Airport||Australia|5|30-35S|138-25E|||261|259| -YPLM|94|302|Learmonth Airport||Australia|5|22-14S|114-05E|22-14S|114-05E|5|6|P -YPMR|94|430|Meekatharra Airport||Australia|5|26-36S|118-32E|26-36S|118-31E|522|518|P -YPPD|94|312|Port Hedland Pardoo||Australia|5|20-06S|119-34E|20-22S|118-37E|9|10|P -YPPF|95|677|Parafield Airport||Australia|5|34-47S|138-38E|||17|10|P -YPPH|94|610|Belmont Perth Airport ||Australia|5|31-56S|115-57E|31-55S|115-58E|20|29|P -YPTN|--|---|Tindal / Katherine||Australia|5|14-26S|132-16E|||108|109|P -YPWR|94|659|Woomera Aerodrome||Australia|5|31-08S|136-49E|31-09S|136-48E|165|167|P -YPXM|96|995|Christmas Island Aerodrome||Christmas Island|5|10-26S|105-41E|10-27S|105-42E|279|262|P -YSBK|94|765|Bankstown Airport Aws||Australia|5|33-55S|150-59E|||9|8| -YSCB|94|926|Canberra||Australia|5|35-18S|149-11E|35-18S|149-11E|575|580|P -YSCH|94|791|Coffs Harbour Mo||Australia|5|30-19S|153-07E|30-19S|153-07E|5|6|P -YSCM|94|923|Cooma||Australia|5|36-14S|149-05E|||778|| -YSCN|94|755|Camden Airport||Australia|5|34-02S|150-41E|||70|| -YSDU|94|719|Dubbo||Australia|5|32-12S|148-34E|32-12S|148-34E|275|275|P -YSNF|94|996|Norfolk Island Airport||Australia|5|29-02S|167-56E|29-02S|167-56E|113|109|P -YSNW|94|750|Nowra Ran Air Station||Australia|5|34-57S|150-32E|34-57S|150-32E|122|110|P -YSRI|94|753|Richmond Aus-Afb ||Australia|5|33-36S|150-47E|||21|| -YSSY|94|767|Sydney Airport||Australia|5|33-57S|151-11E|33-57S|151-11E|6|3|P -YSTW|94|762|Tamworth Airport||Australia|5|31-05S|150-50E|||410|| -YSWG|94|910|Wagga Airport||Australia|5|35-09S|147-27E|35-09S|147-27E|221|213|P -YSWM|94|776|Williamtown Aerodrome||Australia|5|32-47S|151-49E|32-47S|151-49E|9|8|P -ZBAA|54|511|Beijing||China|2|39-56N|116-17E|39-48N|116-28E|55|55| -ZBHH|53|463|Hohhot||China|2|40-49N|111-41E|40-49N|111-41E|1065|1065| -ZBTJ|--|---|Tianjin / Zhangguizhu||China|2|39-11N|117-21E|||3|| -ZBYN|53|772|Taiyuan||China|2|37-47N|112-33E|37-47N|112-33E|779|779| -ZGCS|57|679|Changsha||China|2|28-12N|113-05E|28-12N|112-58E|46|46| -ZGGG|59|287|Guangzhou||China|2|23-10N|113-20E|23-08N|113-19E|8|42| -ZGHA|--|---|Changsha||China|2|28-14N|112-52E||||| -ZGHK|59|758|Haikou||China|2|20-02N|110-21E|20-02N|110-21E|15|15| -ZGKL|57|957|Guilin||China|2|25-20N|110-18E|25-20N|110-18E|166|166| -ZGNN|59|431|Nanning||China|2|22-49N|108-21E|22-49N|108-21E|73|73| -ZGOW|59|316|Shantou||China|2|23-24N|116-41E|23-21N|116-40E|3|3| -ZGSZ|59|493|Shenzhen||China|2|22-33N|114-06E|||18|18| -ZGZJ|59|658|Zhanjiang||China|2|21-13N|110-24E|21-13N|110-24E|28|28| -ZHCC|57|083|Zhengzhou||China|2|34-43N|113-39E|34-43N|113-39E|111|111| -ZHHH|57|494|Wuhan||China|2|30-37N|114-08E|30-35N|114-16E|23|23| -ZJSY|--|---|Sanya/Fenghuang||China|2|18-18N|109-24E|||27|| -ZKKC|47|025|Kimchaek||Korea, North|2|40-40N|129-12E|||19|23|P -ZKPY|47|058|Pyongyang||Korea, North|2|39-02N|125-47E|39-02N|125-47E|36|38|P -ZLIC|53|614|Yinchuan||China|2|38-29N|106-13E|38-29N|106-13E|1112|1112| -ZLJQ|52|533|Jiuquan||China|2|39-46N|098-29E|39-46N|098-31E|1478|1478| -ZLLL|--|---|Lanzhou / Zhongchuan||China|2|36-01-12N|103-45E||||| -ZLSN|57|036|Xi'An||China|2|34-18N|108-56E|34-18N|108-56E|398|398| -ZLXN|52|866|Xining||China|2|36-37N|101-46E|36-43N|101-45E|2262|2262| -ZLXY|--|---|Xian/Xianyang||China|2|34-26N|108-45E|||479|| -ZLYA|53|845|Yan An||China|2|36-36N|109-30E|36-36N|109-30E|959|959| -ZMUB|--|---|Ulan-Bator||Mongolia|2|47-51N|106-46E||||| -ZPPP|56|778|Kunming||China|2|25-01N|102-41E|25-01N|102-41E|1892|1892| -ZSAM|59|134|Xiamen||China|2|24-29N|118-05E|24-27N|118-04E|139|139| -ZSCN|58|606|Nanchang||China|2|28-36N|115-55E|28-40N|115-55E|50|50| -ZSFZ|58|847|Fuzhou||China|2|26-05N|119-17E|26-05N|119-17E|85|85| -ZSGZ|57|993|Ganzhou||China|2|25-51N|114-57E|25-51N|114-56E|125|125| -ZSHC|58|457|Hangzhou||China|2|30-14N|120-10E|30-14N|120-10E|43|43| -ZSNJ|58|238|Nanjing||China|2|32-00N|118-48E|32-00N|118-48E|12|12| -ZSOF|58|321|Hefei||China|2|31-52N|117-14E|31-52N|117-14E|36|36| -ZSPD|--|---|Shanghai / Pudong||China|2|31-07N|121-46E|||4|| -ZSQD|54|857|Qingdao||China|2|36-04N|120-20E|36-04N|120-20E|77|77| -ZSSS|58|367|Shanghai / Hongqiao||China|2|31-10N|121-26E|31-10N|121-26E|7|3| -ZSTN|54|823|Jinan||China|2|36-41N|116-59E|36-41N|116-59E|58|58| -ZUCK|57|516|Chongqing||China|2|29-31N|106-29E|29-31N|106-29E|351|351| -ZUGY|57|816|Guiyang||China|2|26-35N|106-43E|26-29N|106-39E|1074|1074| -ZULS|55|591|Lhasa||China|2|29-40N|091-08E|29-40N|091-08E|3650|3650| -ZUUU|56|294|Chengdu||China|2|30-40N|104-01E|30-40N|104-01E|508|508| -ZWHM|52|203|Hami||China|2|42-49N|093-31E|42-49N|093-31E|739|739| -ZWSH|51|709|Kashi||China|2|39-28N|075-59E|39-28N|075-59E|1291|1291| -ZWTN|51|828|Hotan||China|2|37-08N|079-56E|37-08N|079-56E|1375|1375| -ZWWW|--|---|Urum-Qi / Diwopu||China|2|43-54N|087-28E|||654|| -ZWYN|51|431|Yining||China|2|43-57N|081-20E|43-57N|081-20E|663|663| -ZYCC|54|161|Changchun||China|2|43-54N|125-13E|43-54N|125-13E|238|238| -ZYHB|--|---|Harbin||China|2|46-01-12N|126-34-48E||||| -ZYQQ|50|745|Qiqihar||China|2|47-23N|123-55E|47-23N|123-55E|148|148| -ZYTL|54|662|Dalian||China|2|38-54N|121-38E|38-59N|121-38E|97|97| -ZYTX|--|---|Shenyang / Taokian||China|2|41-48N|123-24E|||35|| diff --git a/memfs.py b/memfs.py index 484e14618..04471c314 100755 --- a/memfs.py +++ b/memfs.py @@ -7,10 +7,9 @@ import binascii assert len(sys.argv) > 2 -# For now exclude GRIB3 as it is still experimental +# Exclude experimental features e.g. GRIB3 and TAF # The BUFR codetables is not used in the engine -# METAR and TAF are also experimental -EXCLUDED = ['grib3', 'codetables', 'taf', 'metar'] +EXCLUDED = ['grib3', 'codetables', 'taf', 'stations'] pos = 1 if sys.argv[1] == '-exclude': @@ -68,7 +67,9 @@ for directory in dirs: for name in files: full = '%s/%s' % (dirpath, name) _, ext = os.path.splitext(full) - if ext not in ['.def', '.table', '.tmpl']: + if ext not in ['.def', '.table', '.tmpl', '.list', '.txt']: + continue + if name == 'CMakeLists.txt': continue fsize = os.path.getsize(full) From 1325239fdeca8102c644c3a18d53cf80a4570ab0 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 12 Oct 2020 17:00:15 +0100 Subject: [PATCH 079/683] Fix logging format strings --- src/grib_accessor_class_bufr_data_array.c | 30 +++++++++++------------ 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/grib_accessor_class_bufr_data_array.c b/src/grib_accessor_class_bufr_data_array.c index 2cd08f03e..143b855f6 100644 --- a/src/grib_accessor_class_bufr_data_array.c +++ b/src/grib_accessor_class_bufr_data_array.c @@ -354,7 +354,7 @@ static int check_overridden_reference_values(const grib_context* c, long* refVal for (i = 0; i < refValListSize; ++i) { grib_context_log(c, GRIB_LOG_DEBUG, "check_overridden_reference_values: refValList[%ld]=%ld", i, refValList[i]); if (refValList[i] < minval || refValList[i] > maxval) { - grib_context_log(c, GRIB_LOG_ERROR, "Overridden reference value: entry %d (%ld) does not fit in %d bits (specified by operator 203)", + grib_context_log(c, GRIB_LOG_ERROR, "Overridden reference value: entry %ld (%ld) does not fit in %d bits (specified by operator 203)", refValList[i], i, numBits); return GRIB_OUT_OF_RANGE; } @@ -642,7 +642,7 @@ static grib_darray* decode_double_array(grib_context* c, unsigned char* data, lo if (*err) { dval = GRIB_MISSING_DOUBLE; lval = 0; - grib_context_log(c, GRIB_LOG_DEBUG, " modifiedWidth=%ld lval=%ld dval=%g", modifiedWidth, lval, dval); + grib_context_log(c, GRIB_LOG_DEBUG, " modifiedWidth=%d lval=%ld dval=%g", modifiedWidth, lval, dval); ret = grib_darray_new(c, DYN_ARRAY_SIZE_INIT, DYN_ARRAY_SIZE_INCR); grib_darray_push(c, ret, dval); *err = 0; @@ -651,14 +651,14 @@ static grib_darray* decode_double_array(grib_context* c, unsigned char* data, lo lval = grib_decode_size_t(data, pos, modifiedWidth); localReference = (long)lval + modifiedReference; localWidth = grib_decode_unsigned_long(data, pos, 6); - grib_context_log(c, GRIB_LOG_DEBUG, "BUFR data decoding: \tlocalWidth=%ld", localWidth); + grib_context_log(c, GRIB_LOG_DEBUG, "BUFR data decoding: \tlocalWidth=%d", localWidth); ret = grib_darray_new(c, self->numberOfSubsets, 50); if (localWidth) { CHECK_END_DATA_RETURN(c, bd, self, localWidth * self->numberOfSubsets, NULL); if (*err) { dval = GRIB_MISSING_DOUBLE; lval = 0; - grib_context_log(c, GRIB_LOG_DEBUG, " modifiedWidth=%ld lval=%ld dval=%g", modifiedWidth, lval, dval); + grib_context_log(c, GRIB_LOG_DEBUG, " modifiedWidth=%d lval=%ld dval=%g", modifiedWidth, lval, dval); ret = grib_darray_new(c, DYN_ARRAY_SIZE_INIT, DYN_ARRAY_SIZE_INCR); grib_darray_push(c, ret, dval); *err = 0; @@ -690,13 +690,13 @@ static grib_darray* decode_double_array(grib_context* c, unsigned char* data, lo } if (bufr_multi_element_constant_arrays) { - grib_context_log(c, GRIB_LOG_DEBUG, " modifiedWidth=%ld lval=%ld dval=%g (const array multi values)", modifiedWidth, lval, dval, bd->code); + grib_context_log(c, GRIB_LOG_DEBUG, " modifiedWidth=%d lval=%ld dval=%g (const array multi values) %6.6ld", modifiedWidth, lval, dval, bd->code); for (j = 0; j < self->numberOfSubsets; j++) { grib_darray_push(c, ret, dval); } } else { - grib_context_log(c, GRIB_LOG_DEBUG, " modifiedWidth=%ld lval=%ld dval=%g (const array single value)", modifiedWidth, lval, dval, bd->code); + grib_context_log(c, GRIB_LOG_DEBUG, " modifiedWidth=%d lval=%ld dval=%g (const array single value) %6.6ld", modifiedWidth, lval, dval, bd->code); grib_darray_push(c, ret, dval); } } @@ -921,7 +921,7 @@ static int encode_double_array(grib_context* c, grib_buffer* buff, long* pos, bu } if (max > maxAllowed && max != GRIB_MISSING_DOUBLE) { grib_context_log(c, GRIB_LOG_ERROR, "encode_double_array: %s. Maximum value (value[%lu]=%g) out of range (maxAllowed=%g).", - bd->shortName, index_of_max, max, maxAllowed, index_of_max); + bd->shortName, index_of_max, max, maxAllowed); return GRIB_OUT_OF_RANGE; } if (min < minAllowed && min != GRIB_MISSING_DOUBLE) { @@ -1117,7 +1117,7 @@ static int decode_element(grib_context* c, grib_accessor_bufr_data_array* self, /* Operator 203YYY: Change Reference Values: Definition phase */ const int number_of_bits = self->change_ref_value_operand; long new_ref_val = grib_decode_signed_longb(data, pos, number_of_bits); - grib_context_log(c, GRIB_LOG_DEBUG, "BUFR data decoding: -**- \tcode=203YYY width=%ld pos=%ld -> %ld", + grib_context_log(c, GRIB_LOG_DEBUG, "BUFR data decoding: -**- \tcode=203YYY width=%d pos=%ld -> %ld", number_of_bits, (long)*pos, (long)(*pos - a->offset * 8)); grib_context_log(c, GRIB_LOG_DEBUG, "Operator 203YYY: Store for code %6.6ld => new ref val %ld", bd->code, new_ref_val); tableB_override_store_ref_val(c, self, bd->code, new_ref_val); @@ -1125,7 +1125,7 @@ static int decode_element(grib_context* c, grib_accessor_bufr_data_array* self, err = check_end_data(c, NULL, self, number_of_bits); /*advance bitsToEnd*/ return err; } - grib_context_log(c, GRIB_LOG_DEBUG, "BUFR data decoding: -%ld- \tcode=%6.6ld width=%ld scale=%ld ref=%ld type=%ld (pos=%ld -> %ld)", + grib_context_log(c, GRIB_LOG_DEBUG, "BUFR data decoding: -%d- \tcode=%6.6ld width=%ld scale=%ld ref=%ld type=%d (pos=%ld -> %ld)", i, bd->code, bd->width, bd->scale, bd->reference, bd->type, (long)*pos, (long)(*pos - a->offset * 8)); if (bd->type == BUFR_DESCRIPTOR_TYPE_STRING) { @@ -1194,7 +1194,7 @@ static int decode_replication(grib_context* c, grib_accessor_bufr_data_array* se /* Assert(buff->data == data); */ - grib_context_log(c, GRIB_LOG_DEBUG, "BUFR data decoding: -%ld- \tcode=%6.6ld width=%ld ", + grib_context_log(c, GRIB_LOG_DEBUG, "BUFR data decoding: -%d- \tcode=%6.6ld width=%ld ", i, self->expanded->v[i]->code, self->expanded->v[i]->width); if (self->compressedData) { grib_context_log(c, GRIB_LOG_DEBUG, "BUFR data decoding: \tdelayed replication localReference width=%ld", descriptors[i]->width); @@ -1411,7 +1411,7 @@ static int encode_new_replication(grib_context* c, grib_accessor_bufr_data_array } break; default: - grib_context_log(c, GRIB_LOG_ERROR, "unsupported descriptor code %d\n", descriptors[i]->code); + grib_context_log(c, GRIB_LOG_ERROR, "unsupported descriptor code %ld\n", descriptors[i]->code); return GRIB_INTERNAL_ERROR; } @@ -1439,7 +1439,7 @@ static int encode_element(grib_context* c, grib_accessor_bufr_data_array* self, bufr_descriptor* bd = descriptor == NULL ? self->expanded->v[i] : descriptor; /* Assert( buff->data == data); */ - grib_context_log(c, GRIB_LOG_DEBUG, "BUFR data encoding: -%ld- \tcode=%6.6ld width=%ld pos=%ld ulength=%ld ulength_bits=%ld", + grib_context_log(c, GRIB_LOG_DEBUG, "BUFR data encoding: -%d- \tcode=%6.6ld width=%ld pos=%ld ulength=%ld ulength_bits=%ld", i, bd->code, bd->width, (long)*pos, buff->ulength, buff->ulength_bits); if (self->change_ref_value_operand > 0 && self->change_ref_value_operand != 255) { @@ -1601,7 +1601,7 @@ static int build_bitmap(grib_accessor_bufr_data_array* self, unsigned char* data restart_bitmap(self); break; default: - grib_context_log(c, GRIB_LOG_ERROR, "build_bitmap: unsupported operator %d\n", + grib_context_log(c, GRIB_LOG_ERROR, "build_bitmap: unsupported operator %ld\n", descriptors[iBitmapOperator]->code); return GRIB_INTERNAL_ERROR; } @@ -1717,7 +1717,7 @@ static int build_bitmap_new_data(grib_accessor_bufr_data_array* self, unsigned c self->bitmapCurrentElementsDescriptorsIndex = iel - 1; break; default: - grib_context_log(c, GRIB_LOG_ERROR, "build_bitmap_new_data: unsupported operator %d\n", + grib_context_log(c, GRIB_LOG_ERROR, "build_bitmap_new_data: unsupported operator %ld\n", descriptors[iBitmapOperator]->code); return GRIB_INTERNAL_ERROR; } @@ -3405,7 +3405,7 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) ii = 0; if (*len < rlen) { grib_context_log(a->context, GRIB_LOG_ERROR, - "wrong size (%ld) for %s, it contains %d values ", *len, a->name, rlen); + "wrong size (%ld) for %s, it contains %ld values ", *len, a->name, rlen); *len = 0; return GRIB_ARRAY_TOO_SMALL; } From a86668a608cb09d01f905753bf66ea543b349768 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 13 Oct 2020 13:30:41 +0100 Subject: [PATCH 080/683] Fix logging format strings --- src/grib_accessor_class_transient_darray.c | 4 ++-- src/grib_bufr_descriptors_array.c | 6 +++--- src/grib_darray.c | 8 ++++---- src/grib_iarray.c | 6 +++--- src/grib_loader_from_array.c | 2 +- src/grib_oarray.c | 8 ++++---- src/grib_sarray.c | 8 ++++---- src/grib_vdarray.c | 8 ++++---- src/grib_viarray.c | 8 ++++---- src/grib_vsarray.c | 8 ++++---- 10 files changed, 33 insertions(+), 33 deletions(-) diff --git a/src/grib_accessor_class_transient_darray.c b/src/grib_accessor_class_transient_darray.c index aba724df8..e180f4eac 100644 --- a/src/grib_accessor_class_transient_darray.c +++ b/src/grib_accessor_class_transient_darray.c @@ -190,7 +190,7 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) value_count(a, &count); if (*len < count) { - grib_context_log(a->context, GRIB_LOG_ERROR, "Wrong size for %s (setting %d, required %d) ", a->name, *len, count); + grib_context_log(a->context, GRIB_LOG_ERROR, "Wrong size for %s (setting %ld, required %ld) ", a->name, *len, count); return GRIB_ARRAY_TOO_SMALL; } @@ -210,7 +210,7 @@ static int unpack_long(grib_accessor* a, long* val, size_t* len) value_count(a, &count); if (*len < count) { - grib_context_log(a->context, GRIB_LOG_ERROR, "Wrong size for %s (setting %d, required %d) ", a->name, *len, count); + grib_context_log(a->context, GRIB_LOG_ERROR, "Wrong size for %s (setting %ld, required %ld) ", a->name, *len, count); return GRIB_ARRAY_TOO_SMALL; } diff --git a/src/grib_bufr_descriptors_array.c b/src/grib_bufr_descriptors_array.c index 0879feaa7..d7109bf97 100644 --- a/src/grib_bufr_descriptors_array.c +++ b/src/grib_bufr_descriptors_array.c @@ -23,7 +23,7 @@ bufr_descriptors_array* grib_bufr_descriptors_array_new(grib_context* c, size_t v = (bufr_descriptors_array*)grib_context_malloc(c, sizeof(bufr_descriptors_array)); if (!v) { grib_context_log(c, GRIB_LOG_ERROR, - "bufr_descriptors_array_new unable to allocate %d bytes\n", sizeof(bufr_descriptors_array)); + "bufr_descriptors_array_new unable to allocate %ld bytes\n", sizeof(bufr_descriptors_array)); return NULL; } v->context = c; @@ -34,7 +34,7 @@ bufr_descriptors_array* grib_bufr_descriptors_array_new(grib_context* c, size_t v->number_of_pop_front = 0; if (!v->v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_bufr_descriptors_array_new unable to allocate %d bytes\n", sizeof(bufr_descriptor) * size); + "grib_bufr_descriptors_array_new unable to allocate %ld bytes\n", sizeof(bufr_descriptor) * size); return NULL; } return v; @@ -74,7 +74,7 @@ static bufr_descriptors_array* grib_bufr_descriptors_array_resize_to(bufr_descri newv = (bufr_descriptor**)grib_context_malloc_clear(c, newsize * sizeof(bufr_descriptor*)); if (!newv) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_bufr_descriptors_array_resize unable to allocate %d bytes\n", sizeof(bufr_descriptor*) * newsize); + "grib_bufr_descriptors_array_resize unable to allocate %ld bytes\n", sizeof(bufr_descriptor*) * newsize); return NULL; } diff --git a/src/grib_darray.c b/src/grib_darray.c index 505b0bb98..070b907ad 100644 --- a/src/grib_darray.c +++ b/src/grib_darray.c @@ -46,7 +46,7 @@ grib_darray* grib_darray_new(grib_context* c, size_t size, size_t incsize) v = (grib_darray*)grib_context_malloc_clear(c, sizeof(grib_darray)); if (!v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_darray_new unable to allocate %d bytes\n", sizeof(grib_darray)); + "grib_darray_new unable to allocate %ld bytes\n", sizeof(grib_darray)); return NULL; } v->size = size; @@ -56,7 +56,7 @@ grib_darray* grib_darray_new(grib_context* c, size_t size, size_t incsize) v->v = (double*)grib_context_malloc_clear(c, sizeof(double) * size); if (!v->v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_darray_new unable to allocate %d bytes\n", sizeof(double) * size); + "grib_darray_new unable to allocate %ld bytes\n", sizeof(double) * size); return NULL; } return v; @@ -64,7 +64,7 @@ grib_darray* grib_darray_new(grib_context* c, size_t size, size_t incsize) static grib_darray* grib_darray_resize(grib_darray* v) { - const int newsize = v->incsize + v->size; + const size_t newsize = v->incsize + v->size; grib_context* c = v->context; if (!c) c = grib_context_get_default(); @@ -73,7 +73,7 @@ static grib_darray* grib_darray_resize(grib_darray* v) v->size = newsize; if (!v->v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_darray_resize unable to allocate %d bytes\n", sizeof(double) * newsize); + "grib_darray_resize unable to allocate %ld bytes\n", sizeof(double) * newsize); return NULL; } return v; diff --git a/src/grib_iarray.c b/src/grib_iarray.c index ff0ba8f14..2df15a4ce 100644 --- a/src/grib_iarray.c +++ b/src/grib_iarray.c @@ -55,7 +55,7 @@ grib_iarray* grib_iarray_new(grib_context* c, size_t size, size_t incsize) v = (grib_iarray*)grib_context_malloc(c, sizeof(grib_iarray)); if (!v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_iarray_new unable to allocate %d bytes\n", sizeof(grib_iarray)); + "grib_iarray_new unable to allocate %ld bytes\n", sizeof(grib_iarray)); return NULL; } v->context = c; @@ -66,7 +66,7 @@ grib_iarray* grib_iarray_new(grib_context* c, size_t size, size_t incsize) v->number_of_pop_front = 0; if (!v->v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_iarray_new unable to allocate %d bytes\n", sizeof(long) * size); + "grib_iarray_new unable to allocate %ld bytes\n", sizeof(long) * size); return NULL; } return v; @@ -107,7 +107,7 @@ static grib_iarray* grib_iarray_resize_to(grib_iarray* v, size_t newsize) newv = (long*)grib_context_malloc_clear(c, newsize * sizeof(long)); if (!newv) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_iarray_resize unable to allocate %d bytes\n", sizeof(long) * newsize); + "grib_iarray_resize unable to allocate %ld bytes\n", sizeof(long) * newsize); return NULL; } diff --git a/src/grib_loader_from_array.c b/src/grib_loader_from_array.c index e2eb728aa..69a065a48 100644 --- a/src/grib_loader_from_array.c +++ b/src/grib_loader_from_array.c @@ -117,7 +117,7 @@ int grib_init_accessor_from_array(grib_loader* loader, grib_accessor* ga, grib_a lval = GRIB_MISSING_LONG; else lval = atol(strvalue); - grib_context_log(h->context, GRIB_LOG_DEBUG, "Setting %s to long %d", ga->name, lval); + grib_context_log(h->context, GRIB_LOG_DEBUG, "Setting %s to long %ld", ga->name, lval); grib_set_long_internal(h, ga->name, lval); break; diff --git a/src/grib_oarray.c b/src/grib_oarray.c index b7f5e4b8d..5b90a2523 100644 --- a/src/grib_oarray.c +++ b/src/grib_oarray.c @@ -24,7 +24,7 @@ grib_oarray* grib_oarray_new(grib_context* c, size_t size, size_t incsize) v = (grib_oarray*)grib_context_malloc_clear(c, sizeof(grib_oarray)); if (!v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_oarray_new unable to allocate %d bytes\n", sizeof(grib_oarray)); + "grib_oarray_new unable to allocate %ld bytes\n", sizeof(grib_oarray)); return NULL; } v->size = size; @@ -34,7 +34,7 @@ grib_oarray* grib_oarray_new(grib_context* c, size_t size, size_t incsize) v->context = c; if (!v->v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_oarray_new unable to allocate %d bytes\n", sizeof(char*) * size); + "grib_oarray_new unable to allocate %ld bytes\n", sizeof(char*) * size); return NULL; } return v; @@ -42,7 +42,7 @@ grib_oarray* grib_oarray_new(grib_context* c, size_t size, size_t incsize) static grib_oarray* grib_oarray_resize(grib_oarray* v) { - const int newsize = v->incsize + v->size; + const size_t newsize = v->incsize + v->size; grib_context* c = v->context; if (!c) c = grib_context_get_default(); @@ -51,7 +51,7 @@ static grib_oarray* grib_oarray_resize(grib_oarray* v) v->size = newsize; if (!v->v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_oarray_resize unable to allocate %d bytes\n", sizeof(char*) * newsize); + "grib_oarray_resize unable to allocate %ld bytes\n", sizeof(char*) * newsize); return NULL; } return v; diff --git a/src/grib_sarray.c b/src/grib_sarray.c index 2dcb0b08c..96a33d711 100644 --- a/src/grib_sarray.c +++ b/src/grib_sarray.c @@ -18,7 +18,7 @@ grib_sarray* grib_sarray_new(grib_context* c, size_t size, size_t incsize) v = (grib_sarray*)grib_context_malloc_clear(c, sizeof(grib_sarray)); if (!v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_sarray_new unable to allocate %d bytes\n", sizeof(grib_sarray)); + "grib_sarray_new unable to allocate %ld bytes\n", sizeof(grib_sarray)); return NULL; } v->size = size; @@ -28,7 +28,7 @@ grib_sarray* grib_sarray_new(grib_context* c, size_t size, size_t incsize) v->v = (char**)grib_context_malloc_clear(c, sizeof(char*) * size); if (!v->v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_sarray_new unable to allocate %d bytes\n", sizeof(char*) * size); + "grib_sarray_new unable to allocate %ld bytes\n", sizeof(char*) * size); return NULL; } return v; @@ -36,7 +36,7 @@ grib_sarray* grib_sarray_new(grib_context* c, size_t size, size_t incsize) static grib_sarray* grib_sarray_resize(grib_sarray* v) { - const int newsize = v->incsize + v->size; + const size_t newsize = v->incsize + v->size; grib_context* c = v->context; if (!c) c = grib_context_get_default(); @@ -45,7 +45,7 @@ static grib_sarray* grib_sarray_resize(grib_sarray* v) v->size = newsize; if (!v->v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_sarray_resize unable to allocate %d bytes\n", sizeof(char*) * newsize); + "grib_sarray_resize unable to allocate %ld bytes\n", sizeof(char*) * newsize); return NULL; } return v; diff --git a/src/grib_vdarray.c b/src/grib_vdarray.c index d19b72ec1..9967c6165 100644 --- a/src/grib_vdarray.c +++ b/src/grib_vdarray.c @@ -38,7 +38,7 @@ grib_vdarray* grib_vdarray_new(grib_context* c, size_t size, size_t incsize) v = (grib_vdarray*)grib_context_malloc_clear(c, sizeof(grib_vdarray)); if (!v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_vdarray_new unable to allocate %d bytes\n", sizeof(grib_vdarray)); + "grib_vdarray_new unable to allocate %ld bytes\n", sizeof(grib_vdarray)); return NULL; } v->size = size; @@ -48,7 +48,7 @@ grib_vdarray* grib_vdarray_new(grib_context* c, size_t size, size_t incsize) v->v = (grib_darray**)grib_context_malloc_clear(c, sizeof(grib_darray*) * size); if (!v->v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_vdarray_new unable to allocate %d bytes\n", sizeof(grib_darray*) * size); + "grib_vdarray_new unable to allocate %ld bytes\n", sizeof(grib_darray*) * size); return NULL; } return v; @@ -56,7 +56,7 @@ grib_vdarray* grib_vdarray_new(grib_context* c, size_t size, size_t incsize) static grib_vdarray* grib_vdarray_resize(grib_vdarray* v) { - const int newsize = v->incsize + v->size; + const size_t newsize = v->incsize + v->size; grib_context* c = v->context; if (!c) c = grib_context_get_default(); @@ -65,7 +65,7 @@ static grib_vdarray* grib_vdarray_resize(grib_vdarray* v) v->size = newsize; if (!v->v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_vdarray_resize unable to allocate %d bytes\n", sizeof(grib_darray*) * newsize); + "grib_vdarray_resize unable to allocate %ld bytes\n", sizeof(grib_darray*) * newsize); return NULL; } return v; diff --git a/src/grib_viarray.c b/src/grib_viarray.c index c8a843b68..39b1dfd64 100644 --- a/src/grib_viarray.c +++ b/src/grib_viarray.c @@ -24,7 +24,7 @@ grib_viarray* grib_viarray_new(grib_context* c, size_t size, size_t incsize) v = (grib_viarray*)grib_context_malloc_clear(c, sizeof(grib_viarray)); if (!v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_viarray_new unable to allocate %d bytes\n", sizeof(grib_viarray)); + "grib_viarray_new unable to allocate %ld bytes\n", sizeof(grib_viarray)); return NULL; } v->size = size; @@ -34,7 +34,7 @@ grib_viarray* grib_viarray_new(grib_context* c, size_t size, size_t incsize) v->v = (grib_iarray**)grib_context_malloc_clear(c, sizeof(grib_iarray*) * size); if (!v->v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_viarray_new unable to allocate %d bytes\n", sizeof(grib_iarray*) * size); + "grib_viarray_new unable to allocate %ld bytes\n", sizeof(grib_iarray*) * size); return NULL; } return v; @@ -42,7 +42,7 @@ grib_viarray* grib_viarray_new(grib_context* c, size_t size, size_t incsize) static grib_viarray* grib_viarray_resize(grib_viarray* v) { - const int newsize = v->incsize + v->size; + const size_t newsize = v->incsize + v->size; grib_context* c = v->context; if (!c) c = grib_context_get_default(); @@ -51,7 +51,7 @@ static grib_viarray* grib_viarray_resize(grib_viarray* v) v->size = newsize; if (!v->v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_viarray_resize unable to allocate %d bytes\n", sizeof(grib_iarray*) * newsize); + "grib_viarray_resize unable to allocate %ld bytes\n", sizeof(grib_iarray*) * newsize); return NULL; } return v; diff --git a/src/grib_vsarray.c b/src/grib_vsarray.c index fdc0390fd..30ab5bddd 100644 --- a/src/grib_vsarray.c +++ b/src/grib_vsarray.c @@ -24,7 +24,7 @@ grib_vsarray* grib_vsarray_new(grib_context* c, size_t size, size_t incsize) v = (grib_vsarray*)grib_context_malloc_clear(c, sizeof(grib_vsarray)); if (!v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_vsarray_new unable to allocate %d bytes\n", sizeof(grib_vsarray)); + "grib_vsarray_new unable to allocate %ld bytes\n", sizeof(grib_vsarray)); return NULL; } v->size = size; @@ -34,7 +34,7 @@ grib_vsarray* grib_vsarray_new(grib_context* c, size_t size, size_t incsize) v->v = (grib_sarray**)grib_context_malloc_clear(c, sizeof(grib_sarray*) * size); if (!v->v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_vsarray_new unable to allocate %d bytes\n", sizeof(grib_sarray*) * size); + "grib_vsarray_new unable to allocate %ld bytes\n", sizeof(grib_sarray*) * size); return NULL; } return v; @@ -42,7 +42,7 @@ grib_vsarray* grib_vsarray_new(grib_context* c, size_t size, size_t incsize) static grib_vsarray* grib_vsarray_resize(grib_vsarray* v) { - const int newsize = v->incsize + v->size; + const size_t newsize = v->incsize + v->size; grib_context* c = v->context; if (!c) c = grib_context_get_default(); @@ -51,7 +51,7 @@ static grib_vsarray* grib_vsarray_resize(grib_vsarray* v) v->size = newsize; if (!v->v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_vsarray_resize unable to allocate %d bytes\n", sizeof(grib_sarray*) * newsize); + "grib_vsarray_resize unable to allocate %ld bytes\n", sizeof(grib_sarray*) * newsize); return NULL; } return v; From c59a4badb0f46a08d9bdb9f6aff9531ddec58f71 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 13 Oct 2020 13:52:59 +0100 Subject: [PATCH 081/683] Fix logging format strings --- src/grib_accessor_class_bufr_elements_table.c | 2 +- src/grib_accessor_class_codetable.c | 4 ++-- src/grib_accessor_class_element.c | 4 ++-- src/grib_accessor_class_global_gaussian.c | 4 ++-- src/grib_fieldset.c | 22 +++++++++---------- src/grib_index.c | 4 ++-- src/grib_nearest_class_sh.c | 10 ++++----- 7 files changed, 25 insertions(+), 25 deletions(-) diff --git a/src/grib_accessor_class_bufr_elements_table.c b/src/grib_accessor_class_bufr_elements_table.c index f908182dd..5ed43dd4d 100644 --- a/src/grib_accessor_class_bufr_elements_table.c +++ b/src/grib_accessor_class_bufr_elements_table.c @@ -407,7 +407,7 @@ bufr_descriptor* accessor_bufr_elements_table_get_descriptor(grib_accessor* a, i v = (bufr_descriptor*)grib_context_malloc_clear(c, sizeof(bufr_descriptor)); if (!v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_bufr_descriptor_new unable to allocate %d bytes\n", sizeof(bufr_descriptor)); + "grib_bufr_descriptor_new unable to allocate %ld bytes\n", sizeof(bufr_descriptor)); *err = GRIB_OUT_OF_MEMORY; return NULL; } diff --git a/src/grib_accessor_class_codetable.c b/src/grib_accessor_class_codetable.c index d991beb0e..4708a4334 100644 --- a/src/grib_accessor_class_codetable.c +++ b/src/grib_accessor_class_codetable.c @@ -461,7 +461,7 @@ static int grib_load_codetable(grib_context* c, const char* filename, } if (code < 0 || code >= size) { - grib_context_log(c, GRIB_LOG_WARNING, "code_table_entry: invalid code in %s: %d (table size=%d)", filename, code, size); + grib_context_log(c, GRIB_LOG_WARNING, "code_table_entry: invalid code in %s: %d (table size=%ld)", filename, code, size); continue; } @@ -502,7 +502,7 @@ static int grib_load_codetable(grib_context* c, const char* filename, Assert(*title); if (t->entries[code].abbreviation != NULL) { - grib_context_log(c, GRIB_LOG_WARNING, "code_table_entry: duplicate code in %s: %d (table size=%d)", filename, code, size); + grib_context_log(c, GRIB_LOG_WARNING, "code_table_entry: duplicate code in %s: %d (table size=%ld)", filename, code, size); continue; } diff --git a/src/grib_accessor_class_element.c b/src/grib_accessor_class_element.c index dd876705a..04c9f5ce1 100644 --- a/src/grib_accessor_class_element.c +++ b/src/grib_accessor_class_element.c @@ -165,7 +165,7 @@ static int unpack_long(grib_accessor* a, long* val, size_t* len) ar = (long*)grib_context_malloc_clear(c, size * sizeof(long)); if (!ar) { - grib_context_log(c, GRIB_LOG_ERROR, "unable to allocate %d bytes", size * sizeof(long)); + grib_context_log(c, GRIB_LOG_ERROR, "unable to allocate %ld bytes", size * sizeof(long)); return GRIB_OUT_OF_MEMORY; } @@ -198,7 +198,7 @@ static int pack_long(grib_accessor* a, const long* val, size_t* len) ar = (long*)grib_context_malloc_clear(c, size * sizeof(long)); if (!ar) { - grib_context_log(c, GRIB_LOG_ERROR, "unable to allocate %d bytes", size * sizeof(long)); + grib_context_log(c, GRIB_LOG_ERROR, "unable to allocate %ld bytes", size * sizeof(long)); return GRIB_OUT_OF_MEMORY; } diff --git a/src/grib_accessor_class_global_gaussian.c b/src/grib_accessor_class_global_gaussian.c index 8a64ab134..2ad735573 100644 --- a/src/grib_accessor_class_global_gaussian.c +++ b/src/grib_accessor_class_global_gaussian.c @@ -237,7 +237,7 @@ static int unpack_long(grib_accessor* a, long* val, size_t* len) lats = (double*)grib_context_malloc(c, sizeof(double) * N * 2); if (!lats) { grib_context_log(c, GRIB_LOG_ERROR, - "global_gaussian unpack_long: Memory allocation error: %d bytes", sizeof(double) * N * 2); + "global_gaussian unpack_long: Memory allocation error: %ld bytes", sizeof(double) * N * 2); return GRIB_OUT_OF_MEMORY; } if ((ret = grib_get_gaussian_latitudes(N, lats)) != GRIB_SUCCESS) @@ -323,7 +323,7 @@ static int pack_long(grib_accessor* a, const long* val, size_t* len) lats = (double*)grib_context_malloc(c, sizeof(double) * N * 2); if (!lats) { grib_context_log(c, GRIB_LOG_FATAL, - "global_gaussian pack_long: Memory allocation error: %d bytes", sizeof(double) * N * 2); + "global_gaussian pack_long: Memory allocation error: %ld bytes", sizeof(double) * N * 2); return GRIB_OUT_OF_MEMORY; } if ((ret = grib_get_gaussian_latitudes(N, lats)) != GRIB_SUCCESS) diff --git a/src/grib_fieldset.c b/src/grib_fieldset.c index 9243fc353..5bf49f205 100644 --- a/src/grib_fieldset.c +++ b/src/grib_fieldset.c @@ -78,7 +78,7 @@ int grib_fieldset_new_column(grib_fieldset* set, int id, char* key, int type) sizeof(long) * GRIB_START_ARRAY_SIZE); if (!set->columns[id].long_values) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_fieldset_new_column : Cannot malloc %d bytes", + "grib_fieldset_new_column : Cannot malloc %ld bytes", sizeof(long) * GRIB_START_ARRAY_SIZE); err = GRIB_OUT_OF_MEMORY; return err; @@ -89,7 +89,7 @@ int grib_fieldset_new_column(grib_fieldset* set, int id, char* key, int type) sizeof(double) * GRIB_START_ARRAY_SIZE); if (!set->columns[id].double_values) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_fieldset_new_column : Cannot malloc %d bytes", + "grib_fieldset_new_column : Cannot malloc %ld bytes", sizeof(double) * GRIB_START_ARRAY_SIZE); err = GRIB_OUT_OF_MEMORY; return err; @@ -100,7 +100,7 @@ int grib_fieldset_new_column(grib_fieldset* set, int id, char* key, int type) sizeof(char*) * GRIB_START_ARRAY_SIZE); if (!set->columns[id].string_values) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_fieldset_new_column : Cannot malloc %d bytes", + "grib_fieldset_new_column : Cannot malloc %ld bytes", sizeof(char*) * GRIB_START_ARRAY_SIZE); err = GRIB_OUT_OF_MEMORY; return err; @@ -178,7 +178,7 @@ static int grib_fieldset_columns_resize(grib_fieldset* set, size_t newsize) newsize * sizeof(long)); if (!newlongs) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_fieldset_columns_resize : Cannot malloc %d bytes", newsize - set->columns[i].values_array_size); + "grib_fieldset_columns_resize : Cannot malloc %ld bytes", newsize - set->columns[i].values_array_size); return GRIB_OUT_OF_MEMORY; } else @@ -189,7 +189,7 @@ static int grib_fieldset_columns_resize(grib_fieldset* set, size_t newsize) newsize * sizeof(double)); if (!newdoubles) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_fieldset_columns_resize : Cannot malloc %d bytes", newsize - set->columns[i].values_array_size); + "grib_fieldset_columns_resize : Cannot malloc %ld bytes", newsize - set->columns[i].values_array_size); return GRIB_OUT_OF_MEMORY; } else @@ -200,7 +200,7 @@ static int grib_fieldset_columns_resize(grib_fieldset* set, size_t newsize) newsize * sizeof(char*)); if (!newstrings) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_fieldset_columns_resize : Cannot malloc %d bytes", newsize - set->columns[i].values_array_size); + "grib_fieldset_columns_resize : Cannot malloc %ld bytes", newsize - set->columns[i].values_array_size); return GRIB_OUT_OF_MEMORY; } else @@ -210,8 +210,8 @@ static int grib_fieldset_columns_resize(grib_fieldset* set, size_t newsize) newerrors = (int*)grib_context_realloc(c, set->columns[i].errors, newsize * sizeof(int)); if (!newerrors) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_fieldset_columns_resize : Cannot malloc %d bytes", - set->columns[i].errors, newsize * sizeof(int)); + "grib_fieldset_columns_resize : Cannot malloc %ld bytes", + newsize * sizeof(int)); return GRIB_OUT_OF_MEMORY; } else @@ -333,7 +333,7 @@ static grib_fieldset* grib_fieldset_create_from_keys(grib_context* c, char** key set = (grib_fieldset*)grib_context_malloc_clear(c, msize); if (!set) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_fieldset_create : Cannot malloc %d bytes", msize); + "grib_fieldset_create : Cannot malloc %ld bytes", msize); return NULL; } @@ -785,7 +785,7 @@ static grib_int_array* grib_fieldset_create_int_array(grib_context* c, size_t si if (!a) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_fieldset_create_int_array : Cannot malloc %d bytes", + "grib_fieldset_create_int_array : Cannot malloc %ld bytes", sizeof(grib_int_array)); return NULL; } @@ -793,7 +793,7 @@ static grib_int_array* grib_fieldset_create_int_array(grib_context* c, size_t si a->el = (int*)grib_context_malloc_clear(c, sizeof(int) * size); if (!a->el) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_fieldset_create_int_array : Cannot malloc %d bytes", + "grib_fieldset_create_int_array : Cannot malloc %ld bytes", sizeof(int) * size); return NULL; } diff --git a/src/grib_index.c b/src/grib_index.c index 8acb3080c..2d2d65514 100644 --- a/src/grib_index.c +++ b/src/grib_index.c @@ -249,7 +249,7 @@ static grib_index_key* grib_index_new_key(grib_context* c, grib_index_key* keys, next = (grib_index_key*)grib_context_malloc_clear(c, sizeof(grib_index_key)); if (!next) { grib_context_log(c, GRIB_LOG_ERROR, - "unable to allocate %d bytes", + "unable to allocate %ld bytes", sizeof(grib_index_key)); *err = GRIB_OUT_OF_MEMORY; return NULL; @@ -257,7 +257,7 @@ static grib_index_key* grib_index_new_key(grib_context* c, grib_index_key* keys, values = (grib_string_list*)grib_context_malloc_clear(c, sizeof(grib_string_list)); if (!values) { grib_context_log(c, GRIB_LOG_ERROR, - "unable to allocate %d bytes", + "unable to allocate %ld bytes", sizeof(grib_string_list)); *err = GRIB_OUT_OF_MEMORY; return NULL; diff --git a/src/grib_nearest_class_sh.c b/src/grib_nearest_class_sh.c index 0da390288..c753ed00c 100644 --- a/src/grib_nearest_class_sh.c +++ b/src/grib_nearest_class_sh.c @@ -117,7 +117,7 @@ static int find(grib_nearest* nearest, grib_handle* h, values = (double*)grib_context_malloc_clear(h->context, sizeof(double) * size); if (!values) { grib_context_log(h->context, GRIB_LOG_ERROR, - "nearest_sh: Error allocating %d bytes", + "nearest_sh: Error allocating %ld bytes", sizeof(double) * size); return GRIB_OUT_OF_MEMORY; } @@ -259,14 +259,14 @@ static int grib_invtrans(grib_context* context, int L, double latdeg, double lon c = (double*)grib_context_malloc_clear(context, sizeof(double) * Lp1); if (!c) { grib_context_log(context, GRIB_LOG_ERROR, - "nearest_sh: Error allocating %d bytes", sizeof(double) * Lp1); + "nearest_sh: Error allocating %ld bytes", sizeof(double) * Lp1); return GRIB_OUT_OF_MEMORY; } s = (double*)grib_context_malloc_clear(context, sizeof(double) * Lp1); if (!s) { grib_context_log(context, GRIB_LOG_ERROR, - "nearest_sh: Error allocating %d bytes", sizeof(double) * Lp1); + "nearest_sh: Error allocating %ld bytes", sizeof(double) * Lp1); return GRIB_OUT_OF_MEMORY; } @@ -275,13 +275,13 @@ static int grib_invtrans(grib_context* context, int L, double latdeg, double lon TR = (double*)grib_context_malloc_clear(context, sizeof(double) * Lp1); if (!TR) { grib_context_log(context, GRIB_LOG_ERROR, - "nearest_sh: Error allocating %d bytes", sizeof(double) * Lp1); + "nearest_sh: Error allocating %ld bytes", sizeof(double) * Lp1); return GRIB_OUT_OF_MEMORY; } TI = (double*)grib_context_malloc_clear(context, sizeof(double) * Lp1); if (!TI) { grib_context_log(context, GRIB_LOG_ERROR, - "nearest_sh: Error allocating %d bytes", sizeof(double) * Lp1); + "nearest_sh: Error allocating %ld bytes", sizeof(double) * Lp1); return GRIB_OUT_OF_MEMORY; } From 091abd5dd8f89bfb56eb0a386aed1c43f46a0331 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 13 Oct 2020 14:05:50 +0100 Subject: [PATCH 082/683] Fix logging format strings --- src/grib_handle.c | 4 ++-- tools/grib_to_netcdf.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/grib_handle.c b/src/grib_handle.c index 3a740eca2..38fb1375a 100644 --- a/src/grib_handle.c +++ b/src/grib_handle.c @@ -170,7 +170,7 @@ int grib_handle_delete(grib_handle* h) grib_section_delete(ct, h->root); grib_context_free(ct, h->gts_header); - grib_context_log(ct, GRIB_LOG_DEBUG, "grib_handle_delete: deleting handle %p", h); + grib_context_log(ct, GRIB_LOG_DEBUG, "grib_handle_delete: deleting handle %p", (void*)h); grib_context_free(ct, h); h = NULL; } @@ -192,7 +192,7 @@ grib_handle* grib_new_handle(grib_context* c) g->product_kind = PRODUCT_ANY; /* Default. Will later be set to a specific product */ } - grib_context_log(c, GRIB_LOG_DEBUG, "grib_new_handle: allocated handle %p", g); + grib_context_log(c, GRIB_LOG_DEBUG, "grib_new_handle: allocated handle %p", (void*)g); return g; } diff --git a/tools/grib_to_netcdf.c b/tools/grib_to_netcdf.c index db328327a..50b07241c 100644 --- a/tools/grib_to_netcdf.c +++ b/tools/grib_to_netcdf.c @@ -1040,7 +1040,7 @@ static err to_expand_mem(field* g) } if (count != g->value_count) - grib_context_log(ctx, GRIB_LOG_FATAL, "ecCodes: value count mismatch %d %d", count, g->value_count); + grib_context_log(ctx, GRIB_LOG_FATAL, "ecCodes: value count mismatch %ld %ld", count, g->value_count); if ((e = grib_get_long(g->handle, "missingValuesPresent", &bitmap))) { grib_context_log(ctx, GRIB_LOG_ERROR, "ecCodes: cannot get missingValuesPresent: %s", grib_get_error_message(e)); @@ -2847,7 +2847,7 @@ static int put_data(hypercube* h, int ncid, const char* name, dataset_t* subset) if (nj != count[naxis] || ni != count[naxis + 1]) { grib_context_log(ctx, GRIB_LOG_ERROR, "Grib %d has different resolution\n", i + 1); - grib_context_log(ctx, GRIB_LOG_ERROR, "lat=%d, long=%d instead of lat=%d, long=%d\n", nj, ni, count[naxis], count[naxis + 1]); + grib_context_log(ctx, GRIB_LOG_ERROR, "lat=%ld, long=%ld instead of lat=%ld, long=%ld\n", nj, ni, count[naxis], count[naxis + 1]); exit(1); } From 2642728d339e068a5832c319eae36b9f0fc2844c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 13 Oct 2020 14:20:36 +0100 Subject: [PATCH 083/683] Fix logging format strings --- tools/grib_to_netcdf.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tools/grib_to_netcdf.c b/tools/grib_to_netcdf.c index 50b07241c..f4792f35e 100644 --- a/tools/grib_to_netcdf.c +++ b/tools/grib_to_netcdf.c @@ -2460,7 +2460,7 @@ static int compute_scale(dataset_t* subset) if (scaled_max > nc_type_values[idx].nc_type_max) { grib_context_log(ctx, GRIB_LOG_DEBUG, "grib_to_netcdf: scaled_max (=%lld) > nc_type_max (=%lf). Set sf to 1.0", - scaled_max, nc_type_values[idx].nc_type_max); + (long long)scaled_max, nc_type_values[idx].nc_type_max); sf = 1.0; /* ECC-685 */ } @@ -2468,9 +2468,11 @@ static int compute_scale(dataset_t* subset) test_scaled_min = (char)scaled_min; test_scaled_median = (char)scaled_median; - grib_context_log(ctx, GRIB_LOG_DEBUG, "grib_to_netcdf: scaled_max: %lld, scaled_min: %lld, scaled_median: %lld, x: %lf", scaled_max, scaled_min, scaled_median, x); + grib_context_log(ctx, GRIB_LOG_DEBUG, "grib_to_netcdf: scaled_max: %lld, scaled_min: %lld, scaled_median: %lld, x: %lf", + (long long)scaled_max, (long long)scaled_min, (long long)scaled_median, x); - grib_context_log(ctx, GRIB_LOG_DEBUG, "grib_to_netcdf: test_scaled_max: %x, test_scaled_min: %x, test_scaled_median: %x", test_scaled_max, test_scaled_min, test_scaled_median, x); + grib_context_log(ctx, GRIB_LOG_DEBUG, "grib_to_netcdf: test_scaled_max: %x, test_scaled_min: %x, test_scaled_median: %x", + test_scaled_max, test_scaled_min, test_scaled_median); max = scaled_max * sf + ao; min = scaled_min * sf + ao; From 95abb579a32c08f76cbf251258ae88397a56dc65 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 15 Oct 2020 17:07:38 +0100 Subject: [PATCH 084/683] Version bump --- .appveyor.yml | 2 +- version.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index d03c186b5..aa238edf8 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -2,7 +2,7 @@ # general configuration # #---------------------------------# -version: 2.19.0-{build}-{branch} +version: 2.20.0-{build}-{branch} branches: only: diff --git a/version.sh b/version.sh index 2d91d4de0..dd3f0e72f 100644 --- a/version.sh +++ b/version.sh @@ -3,7 +3,7 @@ PACKAGE_NAME='eccodes' # Package version ECCODES_MAJOR_VERSION=2 -ECCODES_MINOR_VERSION=19 +ECCODES_MINOR_VERSION=20 ECCODES_REVISION_VERSION=0 ECCODES_CURRENT=1 From 4f1b1a6436b183253ea28a186cf989f579f95c31 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 15 Oct 2020 17:08:25 +0100 Subject: [PATCH 085/683] ECC-1157: Python 2 support: Rename CMake option ENABLE_PYTHON to ENABLE_PYTHON2 --- CMakeLists.txt | 10 +++++----- examples/python/CMakeLists.txt | 12 ++++++------ python/CMakeLists.txt | 2 +- tests/CMakeLists.txt | 2 +- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7d3b4bf3e..f37c3c67c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ cmake_minimum_required( VERSION 3.12 FATAL_ERROR ) find_package( ecbuild 3.4 REQUIRED HINTS ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild) # Initialise project -project( eccodes VERSION 2.19.0 LANGUAGES C ) +project( eccodes VERSION 2.20.0 LANGUAGES C ) ############################################################################### # system checks needed for eccodes_config.h and some options like MEMFS @@ -117,7 +117,7 @@ ecbuild_add_option( FEATURE AEC ecbuild_find_python( VERSION 2.6 NO_LIBS ) find_package( NumPy ) -ecbuild_add_option( FEATURE PYTHON +ecbuild_add_option( FEATURE PYTHON2 DESCRIPTION "Build the ecCodes Python2 interface (deprecated)" DEFAULT OFF #CONDITION Python_FOUND AND NumPy_FOUND @@ -452,7 +452,7 @@ ecbuild_pkgconfig( IGNORE_INCLUDE_DIRS ${PYTHON_INCLUDE_DIRS} ${NUMPY_INCLUDE_DIRS} ${NETCDF_INCLUDE_DIRS} VARIABLES HAVE_MEMFS HAVE_JPEG HAVE_LIBJASPER HAVE_LIBOPENJPEG HAVE_ECCODES_THREADS HAVE_ECCODES_OMP_THREADS - HAVE_NETCDF HAVE_PYTHON HAVE_FORTRAN HAVE_PNG HAVE_AEC + HAVE_NETCDF HAVE_PYTHON2 HAVE_FORTRAN HAVE_PNG HAVE_AEC ) if( HAVE_FORTRAN ) ecbuild_pkgconfig( @@ -464,7 +464,7 @@ if( HAVE_FORTRAN ) ${PYTHON_INCLUDE_DIRS} ${NUMPY_INCLUDE_DIRS} ${NETCDF_INCLUDE_DIRS} VARIABLES HAVE_MEMFS HAVE_JPEG HAVE_LIBJASPER HAVE_LIBOPENJPEG HAVE_ECCODES_THREADS HAVE_ECCODES_OMP_THREADS - HAVE_NETCDF HAVE_PYTHON HAVE_PNG HAVE_AEC + HAVE_NETCDF HAVE_PYTHON2 HAVE_PNG HAVE_AEC ) endif() @@ -487,7 +487,7 @@ ecbuild_info(" | ecCodes version ${eccodes_VERSION} |") ecbuild_info(" +--------------------------+") ecbuild_info("") -if( HAVE_PYTHON ) +if( HAVE_PYTHON2 ) ecbuild_deprecate("Python2 support is deprecated and will be discontinued") endif() diff --git a/examples/python/CMakeLists.txt b/examples/python/CMakeLists.txt index 2e7fb82c5..1b446e231 100644 --- a/examples/python/CMakeLists.txt +++ b/examples/python/CMakeLists.txt @@ -18,7 +18,7 @@ foreach( tool ${test_bins} ) ecbuild_add_executable( TARGET p_${tool} NOINSTALL SOURCES ${tool}.c - CONDITION HAVE_PYTHON + CONDITION HAVE_PYTHON2 LIBS eccodes ) list( APPEND ptools p_${tool} ) endforeach() @@ -104,7 +104,7 @@ endif() # The high level python test requires new features in the unittest # which are only there for python 2.7 onwards -if( HAVE_PYTHON AND PYTHON_VERSION_STRING VERSION_GREATER "2.7" ) +if( HAVE_PYTHON2 AND PYTHON_VERSION_STRING VERSION_GREATER "2.7" ) #ecbuild_info("Python examples: Adding test for High-level Pythonic Interface") list( APPEND tests_extra high_level_api ) list( APPEND tests_extra grib_set_keys ) # Uses OrderedDict @@ -115,7 +115,7 @@ foreach( test ${tests_basic} ) TYPE SCRIPT DEPENDS ${ptools} COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/${test}.sh - CONDITION HAVE_PYTHON + CONDITION HAVE_PYTHON2 ENVIRONMENT PYTHON=${PYTHON_EXECUTABLE} ) endforeach() foreach( test ${tests_extra} ) @@ -123,7 +123,7 @@ foreach( test ${tests_extra} ) TYPE SCRIPT DEPENDS ${ptools} COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/${test}.sh - CONDITION HAVE_PYTHON AND ENABLE_EXTRA_TESTS + CONDITION HAVE_PYTHON2 AND ENABLE_EXTRA_TESTS ENVIRONMENT PYTHON=${PYTHON_EXECUTABLE} TEST_DEPENDS eccodes_download_gribs eccodes_download_tigge_gribs eccodes_download_bufrs ) endforeach() @@ -133,7 +133,7 @@ ecbuild_add_test( TARGET eccodes_p_bufr_encode_flight_test TYPE SCRIPT DEPENDS ${ptools} COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/bufr_encode_flight.sh - CONDITION HAVE_PYTHON AND ENABLE_EXTRA_TESTS AND HAVE_BUILD_TOOLS + CONDITION HAVE_PYTHON2 AND ENABLE_EXTRA_TESTS AND HAVE_BUILD_TOOLS ENVIRONMENT PYTHON=${PYTHON_EXECUTABLE} RESOURCES flight_data.csv TEST_DEPENDS eccodes_download_bufrs ) @@ -143,6 +143,6 @@ ecbuild_add_test( TARGET eccodes_p_grib_ccsds_test TYPE SCRIPT DEPENDS ${ptools} COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/grib_ccsds.sh - CONDITION HAVE_PYTHON AND HAVE_AEC AND ENABLE_EXTRA_TESTS + CONDITION HAVE_PYTHON2 AND HAVE_AEC AND ENABLE_EXTRA_TESTS ENVIRONMENT PYTHON=${PYTHON_EXECUTABLE} TEST_DEPENDS eccodes_download_gribs ) diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index 43cd2be22..a65005596 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -1,4 +1,4 @@ -if( HAVE_PYTHON ) +if( HAVE_PYTHON2 ) #find_package( SWIG ) #if( SWIG_FOUND ) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 9940abddd..ba3d5094d 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -243,7 +243,7 @@ if( HAVE_BUILD_TOOLS ) endif() - if( HAVE_PYTHON AND ENABLE_EXTRA_TESTS ) + if( HAVE_PYTHON2 AND ENABLE_EXTRA_TESTS ) list( APPEND ptests bufr_dump_encode_python bufr_dump_decode_python ) foreach( test ${ptests} ) ecbuild_add_test( TARGET eccodes_t_${test} From 7a1303bf24524ad6cd9f0709856dcbfb6235ffc5 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 17 Oct 2020 13:05:24 +0100 Subject: [PATCH 086/683] MEMFS: Add actual count to assert statement --- memfs.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/memfs.py b/memfs.py index 04471c314..642534d2e 100755 --- a/memfs.py +++ b/memfs.py @@ -113,7 +113,9 @@ for directory in dirs: totsize = 0 g.close() -assert fcount == 3 +# The number of generated C files is hard coded. +# See memfs/CMakeLists.txt +assert fcount == 3, fcount opath = output_file_base + "_final.c" print('MEMFS: Generating output: ', opath) g = open(opath, "w") From f0f7d05e09f6cd0a78d9b5d54b1430e18cf0a702 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 17 Oct 2020 20:30:56 +0100 Subject: [PATCH 087/683] Testing: test for BUFR centre codes --- tests/bufr_extract_headers.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/bufr_extract_headers.sh b/tests/bufr_extract_headers.sh index fed3d479f..80d2d9b6e 100755 --- a/tests/bufr_extract_headers.sh +++ b/tests/bufr_extract_headers.sh @@ -60,6 +60,14 @@ r=`${test_dir}/bufr_extract_headers centre ${data_dir}/bufr/PraticaTemp.bufr` r=`${test_dir}/bufr_extract_headers centre ${data_dir}/bufr/israel_observations_2017041010.bufr` [ "$r" = "234" ] +# Check all centres with an abbreviation +centre_table=${ECCODES_DEFINITION_PATH}/common/c-11.table +centres=`awk 'NR > 1 && $2 ~ /^[A-z]/ {print $2}' < $centre_table` +for c in $centres; do + ${tools_dir}/bufr_set -s centre=$c $ECCODES_SAMPLES_PATH/BUFR4.tmpl $temp1 + r=`${test_dir}/bufr_extract_headers centre $temp1` + [ "$r" = "$c" ] +done # Test rdbSubtype # --------------- From 00e231594b8ac734ee90aff34798dfe64997bfda Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Mon, 19 Oct 2020 09:16:24 +0100 Subject: [PATCH 088/683] Memfs generation --- eccodes.code-workspace | 7 +++ memfs.py | 119 +++++++++++++++++++++++------------------ memfs/CMakeLists.txt | 3 ++ 3 files changed, 78 insertions(+), 51 deletions(-) create mode 100644 eccodes.code-workspace diff --git a/eccodes.code-workspace b/eccodes.code-workspace new file mode 100644 index 000000000..362d7c25b --- /dev/null +++ b/eccodes.code-workspace @@ -0,0 +1,7 @@ +{ + "folders": [ + { + "path": "." + } + ] +} \ No newline at end of file diff --git a/memfs.py b/memfs.py index 642534d2e..dc250945a 100755 --- a/memfs.py +++ b/memfs.py @@ -4,39 +4,40 @@ import os import re import sys import binascii +import StringIO assert len(sys.argv) > 2 # Exclude experimental features e.g. GRIB3 and TAF # The BUFR codetables is not used in the engine -EXCLUDED = ['grib3', 'codetables', 'taf', 'stations'] +EXCLUDED = ["grib3", "codetables", "taf", "stations"] pos = 1 -if sys.argv[1] == '-exclude': +if sys.argv[1] == "-exclude": product = sys.argv[2] - if product == 'bufr': + if product == "bufr": EXCLUDED.append(product) - elif product == 'grib': - EXCLUDED.extend(['grib1', 'grib2']) + elif product == "grib": + EXCLUDED.extend(["grib1", "grib2"]) else: - assert False, 'Invalid product %s' % product + assert False, "Invalid product %s" % product pos = 3 dirs = [os.path.realpath(x) for x in sys.argv[pos:-1]] -print('Directories: ', dirs) -print('Excluding: ', EXCLUDED) +print("Directories: ", dirs) +print("Excluding: ", EXCLUDED) FILES = {} SIZES = {} NAMES = [] -CHUNK = 5500 * 1000 # chunk size in bytes +CHUNK = 16 * 1024 * 1024 # chunk size in bytes # Binary to ASCII function. Different in Python 2 and 3 try: - str(b'\x23\x20','ascii') - ascii = lambda x: str(x, 'ascii') # Python 3 + str(b"\x23\x20", "ascii") + ascii = lambda x: str(x, "ascii") # Python 3 except: - ascii = lambda x: str(x) # Python 2 + ascii = lambda x: str(x) # Python 2 def get_outfile_name(base, count): @@ -45,11 +46,23 @@ def get_outfile_name(base, count): # The last argument is the base name of the generated C file(s) output_file_base = sys.argv[-1] -totsize = 0 # amount written -fcount = 0 -opath = get_outfile_name(output_file_base, fcount) -print('MEMFS: Generating output: ', opath) -g = open(opath, "w") + +buffer = StringIO.StringIO() +fcount = -1 + + +def dump(): + global buffer + global fcount + + fcount += 1 + opath = get_outfile_name(output_file_base, fcount) + print("MEMFS: Generating output: ", opath, "size:", buffer.tell()) + with open(opath, "wb") as f: + f.write(buffer.getvalue()) + + buffer = StringIO.StringIO() + for directory in dirs: @@ -65,31 +78,29 @@ for directory in dirs: # Prune the walk by modifying the dirnames in-place dirnames[:] = [dirname for dirname in dirnames if dirname not in EXCLUDED] for name in files: - full = '%s/%s' % (dirpath, name) + full = "%s/%s" % (dirpath, name) _, ext = os.path.splitext(full) - if ext not in ['.def', '.table', '.tmpl', '.list', '.txt']: + if ext not in [".def", ".table", ".tmpl", ".list", ".txt"]: continue - if name == 'CMakeLists.txt': + if name == "CMakeLists.txt": continue - fsize = os.path.getsize(full) - totsize += fsize full = full.replace("\\", "/") - fname = full[full.find("/%s/" % (dname,)):] - #print("MEMFS: Add ", fname) - name = re.sub(r'\W', '_', fname) + fname = full[full.find("/%s/" % (dname,)) :] + # print("MEMFS: Add ", fname) + name = re.sub(r"\W", "_", fname) assert name not in FILES assert name not in SIZES FILES[name] = fname - SIZES[name] = fsize + SIZES[name] = os.path.getsize(full) - print('const unsigned char %s[] = {' % (name,), file=g) + buffer.write("const unsigned char %s[] = {" % (name,)) - with open(full, 'rb') as f: + with open(full, "rb") as f: i = 0 # Python 2 - #contents_hex = f.read().encode("hex") + # contents_hex = f.read().encode("hex") # Python 2 and 3 contents_hex = binascii.hexlify(f.read()) @@ -97,30 +108,28 @@ for directory in dirs: # Read two characters at a time and convert to C hex # e.g. 23 -> 0x23 for n in range(0, len(contents_hex), 2): - twoChars = ascii(contents_hex[n:n + 2]) - print("0x%s," % (twoChars,), end="", file=g) + twoChars = ascii(contents_hex[n : n + 2]) + buffer.write("0x%s," % (twoChars,)) i += 1 if (i % 20) == 0: - print("", file=g) + buffer.write("\n") - print('};', file=g) - if totsize >= CHUNK: - g.close() - fcount += 1 - opath = get_outfile_name(output_file_base, fcount) - print('MEMFS: Generating output: ', opath) - g = open(opath, "w") - totsize = 0 + buffer.write("};\n") + if buffer.tell() >= CHUNK: + dump() -g.close() + +if buffer.tell(): + dump() # The number of generated C files is hard coded. # See memfs/CMakeLists.txt -assert fcount == 3, fcount +assert fcount == 6, fcount opath = output_file_base + "_final.c" -print('MEMFS: Generating output: ', opath) +print("MEMFS: Generating output: ", opath) g = open(opath, "w") -print(""" +print( + """ #include "eccodes_config.h" #ifdef ECCODES_HAVE_FMEMOPEN #define _GNU_SOURCE @@ -131,18 +140,23 @@ print(""" #include #include #include "eccodes_windef.h" -""", file=g) +""", + file=g, +) # Write extern variables with sizes for k, v in SIZES.items(): - print('extern const unsigned char %s[%d];' % (k, v), file=g) + print("extern const unsigned char %s[%d];" % (k, v), file=g) -print(""" +print( + """ struct entry { const char* path; const unsigned char* content; size_t length; -} entries[] = { """, file=g) +} entries[] = { """, + file=g, +) items = [(v, k) for k, v in FILES.items()] @@ -150,7 +164,8 @@ for k, v in sorted(items): print('{"/MEMFS%s", &%s[0], sizeof(%s) / sizeof(%s[0]) },' % (k, v, v, v), file=g) -print("""}; +print( + """}; #if defined(ECCODES_HAVE_FUNOPEN) && !defined(ECCODES_HAVE_FMEMOPEN) @@ -299,6 +314,8 @@ FILE* codes_memfs_open(const char* path) { return fmemopen((void*)mem, size, "r"); } -""", file=g) +""", + file=g, +) -print('Finished') +print("Finished") diff --git a/memfs/CMakeLists.txt b/memfs/CMakeLists.txt index 0f5da4be9..b1299d2ae 100644 --- a/memfs/CMakeLists.txt +++ b/memfs/CMakeLists.txt @@ -10,6 +10,9 @@ set( generated_c_files ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_001.c ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_002.c ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_003.c + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_004.c + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_005.c + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_006.c ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_final.c) add_custom_command( From 0bbb6bdb63b8c99f561cb662effb449ab7827114 Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Mon, 19 Oct 2020 12:37:31 +0100 Subject: [PATCH 089/683] Update memfs.py --- memfs.py | 42 +++++++++++++++++++++++------------------- 1 file changed, 23 insertions(+), 19 deletions(-) diff --git a/memfs.py b/memfs.py index dc250945a..36a07e0db 100755 --- a/memfs.py +++ b/memfs.py @@ -4,10 +4,13 @@ import os import re import sys import binascii -import StringIO +import time assert len(sys.argv) > 2 +start = time.time() +print("MEMFS: starting") + # Exclude experimental features e.g. GRIB3 and TAF # The BUFR codetables is not used in the engine EXCLUDED = ["grib3", "codetables", "taf", "stations"] @@ -47,21 +50,10 @@ def get_outfile_name(base, count): # The last argument is the base name of the generated C file(s) output_file_base = sys.argv[-1] -buffer = StringIO.StringIO() +buffer = None fcount = -1 -def dump(): - global buffer - global fcount - - fcount += 1 - opath = get_outfile_name(output_file_base, fcount) - print("MEMFS: Generating output: ", opath, "size:", buffer.tell()) - with open(opath, "wb") as f: - f.write(buffer.getvalue()) - - buffer = StringIO.StringIO() for directory in dirs: @@ -71,13 +63,21 @@ for directory in dirs: NAMES.append(dname) for dirpath, dirnames, files in os.walk(directory, followlinks=True): - # for ex in EXCLUDED: - # if ex in dirnames: - # print('Note: eccodes memfs.py script: %s/%s will not be included.' % (dirpath,ex)) + + # Prune the walk by modifying the dirnames in-place dirnames[:] = [dirname for dirname in dirnames if dirname not in EXCLUDED] for name in files: + + + if buffer is None: + fcount += 1 + opath = get_outfile_name(output_file_base, fcount) + print("MEMFS: Generating output:", opath) + buffer = open(opath, 'wb') + + full = "%s/%s" % (dirpath, name) _, ext = os.path.splitext(full) if ext not in [".def", ".table", ".tmpl", ".list", ".txt"]: @@ -116,11 +116,13 @@ for directory in dirs: buffer.write("};\n") if buffer.tell() >= CHUNK: - dump() + buffer.close() + buffer = None -if buffer.tell(): - dump() +if buffer is not None: + buffer.close() + # The number of generated C files is hard coded. # See memfs/CMakeLists.txt assert fcount == 6, fcount @@ -319,3 +321,5 @@ FILE* codes_memfs_open(const char* path) { ) print("Finished") + +print("MEMFS: done", time.time() - start) From ae2e7288550df720d248d8c95785c04890922a86 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 19 Oct 2020 13:33:27 +0100 Subject: [PATCH 090/683] Testing: fix awk expression that fails on HPC --- tests/bufr_extract_headers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bufr_extract_headers.sh b/tests/bufr_extract_headers.sh index 80d2d9b6e..908f9ba29 100755 --- a/tests/bufr_extract_headers.sh +++ b/tests/bufr_extract_headers.sh @@ -62,7 +62,7 @@ r=`${test_dir}/bufr_extract_headers centre ${data_dir}/bufr/israel_observations_ # Check all centres with an abbreviation centre_table=${ECCODES_DEFINITION_PATH}/common/c-11.table -centres=`awk 'NR > 1 && $2 ~ /^[A-z]/ {print $2}' < $centre_table` +centres=`awk 'NR > 1 {print $2}' < $centre_table` for c in $centres; do ${tools_dir}/bufr_set -s centre=$c $ECCODES_SAMPLES_PATH/BUFR4.tmpl $temp1 r=`${test_dir}/bufr_extract_headers centre $temp1` From 45975c115bf1dd8812f75f1a1ade4cbb19bf07d3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 19 Oct 2020 13:46:11 +0100 Subject: [PATCH 091/683] ECC-1158: GRIB encoding: Implement data quality checks (limits) for spectral fields --- src/grib_accessor_class_data_complex_packing.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/grib_accessor_class_data_complex_packing.c b/src/grib_accessor_class_data_complex_packing.c index fade0feb8..d392d4e18 100644 --- a/src/grib_accessor_class_data_complex_packing.c +++ b/src/grib_accessor_class_data_complex_packing.c @@ -672,6 +672,15 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) return GRIB_INTERNAL_ERROR; } + /* Data Quality checks */ + if (a->context->grib_data_quality_checks) { + /* First value is the field's average */ + double min_val = val[0]; + double max_val = min_val; + if ((ret = grib_util_grib_data_quality_check(gh, min_val, max_val)) != GRIB_SUCCESS) + return ret; + } + if (pen_j == sub_j) { double* values; d = grib_power(decimal_scale_factor, 10); @@ -819,7 +828,6 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) } else { /* _test(val[i]*d,0); */ - grib_encode_unsigned_long(hres, encode_float(val[i++]), &hpos, 8 * bytes); /* _test(val[i]*d,0); */ grib_encode_unsigned_long(hres, encode_float(val[i++]), &hpos, 8 * bytes); From 44d1f10876de49014e4336eafc87e031ae393d87 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 19 Oct 2020 14:17:35 +0100 Subject: [PATCH 092/683] ECC-1158: Test --- tests/grib_data_quality_checks.sh | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/tests/grib_data_quality_checks.sh b/tests/grib_data_quality_checks.sh index 45c725f7b..65fad1ede 100755 --- a/tests/grib_data_quality_checks.sh +++ b/tests/grib_data_quality_checks.sh @@ -140,24 +140,34 @@ echo "Override the defaults..." tempDir=tempdir.$label rm -rf $tempDir mkdir -p $tempDir -# Set a large limit for temperature +# Change limits for 2m temperature (grid-point) and Temperature (spectral) cat > $tempDir/param_limits.def < Date: Mon, 19 Oct 2020 14:39:11 +0100 Subject: [PATCH 093/683] Black formatting (in preparation for GitHub PR 44) --- memfs.py | 75 +++++++++++++++++++++++++++++++------------------------- 1 file changed, 42 insertions(+), 33 deletions(-) diff --git a/memfs.py b/memfs.py index 642534d2e..f3864a992 100755 --- a/memfs.py +++ b/memfs.py @@ -9,22 +9,22 @@ assert len(sys.argv) > 2 # Exclude experimental features e.g. GRIB3 and TAF # The BUFR codetables is not used in the engine -EXCLUDED = ['grib3', 'codetables', 'taf', 'stations'] +EXCLUDED = ["grib3", "codetables", "taf", "stations"] pos = 1 -if sys.argv[1] == '-exclude': +if sys.argv[1] == "-exclude": product = sys.argv[2] - if product == 'bufr': + if product == "bufr": EXCLUDED.append(product) - elif product == 'grib': - EXCLUDED.extend(['grib1', 'grib2']) + elif product == "grib": + EXCLUDED.extend(["grib1", "grib2"]) else: - assert False, 'Invalid product %s' % product + assert False, "Invalid product %s" % product pos = 3 dirs = [os.path.realpath(x) for x in sys.argv[pos:-1]] -print('Directories: ', dirs) -print('Excluding: ', EXCLUDED) +print("Directories: ", dirs) +print("Excluding: ", EXCLUDED) FILES = {} SIZES = {} @@ -33,10 +33,10 @@ CHUNK = 5500 * 1000 # chunk size in bytes # Binary to ASCII function. Different in Python 2 and 3 try: - str(b'\x23\x20','ascii') - ascii = lambda x: str(x, 'ascii') # Python 3 + str(b"\x23\x20", "ascii") + ascii = lambda x: str(x, "ascii") # Python 3 except: - ascii = lambda x: str(x) # Python 2 + ascii = lambda x: str(x) # Python 2 def get_outfile_name(base, count): @@ -48,7 +48,7 @@ output_file_base = sys.argv[-1] totsize = 0 # amount written fcount = 0 opath = get_outfile_name(output_file_base, fcount) -print('MEMFS: Generating output: ', opath) +print("MEMFS: Generating output: ", opath) g = open(opath, "w") for directory in dirs: @@ -65,31 +65,31 @@ for directory in dirs: # Prune the walk by modifying the dirnames in-place dirnames[:] = [dirname for dirname in dirnames if dirname not in EXCLUDED] for name in files: - full = '%s/%s' % (dirpath, name) + full = "%s/%s" % (dirpath, name) _, ext = os.path.splitext(full) - if ext not in ['.def', '.table', '.tmpl', '.list', '.txt']: + if ext not in [".def", ".table", ".tmpl", ".list", ".txt"]: continue - if name == 'CMakeLists.txt': + if name == "CMakeLists.txt": continue fsize = os.path.getsize(full) totsize += fsize full = full.replace("\\", "/") - fname = full[full.find("/%s/" % (dname,)):] - #print("MEMFS: Add ", fname) - name = re.sub(r'\W', '_', fname) + fname = full[full.find("/%s/" % (dname,)) :] + # print("MEMFS: Add ", fname) + name = re.sub(r"\W", "_", fname) assert name not in FILES assert name not in SIZES FILES[name] = fname SIZES[name] = fsize - print('const unsigned char %s[] = {' % (name,), file=g) + print("const unsigned char %s[] = {" % (name,), file=g) - with open(full, 'rb') as f: + with open(full, "rb") as f: i = 0 # Python 2 - #contents_hex = f.read().encode("hex") + # contents_hex = f.read().encode("hex") # Python 2 and 3 contents_hex = binascii.hexlify(f.read()) @@ -97,18 +97,18 @@ for directory in dirs: # Read two characters at a time and convert to C hex # e.g. 23 -> 0x23 for n in range(0, len(contents_hex), 2): - twoChars = ascii(contents_hex[n:n + 2]) + twoChars = ascii(contents_hex[n : n + 2]) print("0x%s," % (twoChars,), end="", file=g) i += 1 if (i % 20) == 0: print("", file=g) - print('};', file=g) + print("};", file=g) if totsize >= CHUNK: g.close() fcount += 1 opath = get_outfile_name(output_file_base, fcount) - print('MEMFS: Generating output: ', opath) + print("MEMFS: Generating output: ", opath) g = open(opath, "w") totsize = 0 @@ -117,10 +117,11 @@ g.close() # See memfs/CMakeLists.txt assert fcount == 3, fcount opath = output_file_base + "_final.c" -print('MEMFS: Generating output: ', opath) +print("MEMFS: Generating output: ", opath) g = open(opath, "w") -print(""" +print( + """ #include "eccodes_config.h" #ifdef ECCODES_HAVE_FMEMOPEN #define _GNU_SOURCE @@ -131,18 +132,23 @@ print(""" #include #include #include "eccodes_windef.h" -""", file=g) +""", + file=g, +) # Write extern variables with sizes for k, v in SIZES.items(): - print('extern const unsigned char %s[%d];' % (k, v), file=g) + print("extern const unsigned char %s[%d];" % (k, v), file=g) -print(""" +print( + """ struct entry { const char* path; const unsigned char* content; size_t length; -} entries[] = { """, file=g) +} entries[] = { """, + file=g, +) items = [(v, k) for k, v in FILES.items()] @@ -150,7 +156,8 @@ for k, v in sorted(items): print('{"/MEMFS%s", &%s[0], sizeof(%s) / sizeof(%s[0]) },' % (k, v, v, v), file=g) -print("""}; +print( + """}; #if defined(ECCODES_HAVE_FUNOPEN) && !defined(ECCODES_HAVE_FMEMOPEN) @@ -299,6 +306,8 @@ FILE* codes_memfs_open(const char* path) { return fmemopen((void*)mem, size, "r"); } -""", file=g) +""", + file=g, +) -print('Finished') +print("Finished") From b59c5d36d4604be269aa296656138279a6cdfaf0 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 19 Oct 2020 18:41:01 +0100 Subject: [PATCH 094/683] ECC-1159: Windows: MEMFS option does not work (initial) --- memfs.py | 64 +++++++++++++++++++++++++++----------------- memfs/CMakeLists.txt | 3 +++ 2 files changed, 42 insertions(+), 25 deletions(-) diff --git a/memfs.py b/memfs.py index f3864a992..21aaaeb21 100755 --- a/memfs.py +++ b/memfs.py @@ -4,9 +4,13 @@ import os import re import sys import binascii +import time assert len(sys.argv) > 2 +start = time.time() +print("MEMFS: starting") + # Exclude experimental features e.g. GRIB3 and TAF # The BUFR codetables is not used in the engine EXCLUDED = ["grib3", "codetables", "taf", "stations"] @@ -29,7 +33,7 @@ print("Excluding: ", EXCLUDED) FILES = {} SIZES = {} NAMES = [] -CHUNK = 5500 * 1000 # chunk size in bytes +CHUNK = 16 * 1024 * 1024 # chunk size in bytes # Binary to ASCII function. Different in Python 2 and 3 try: @@ -45,11 +49,12 @@ def get_outfile_name(base, count): # The last argument is the base name of the generated C file(s) output_file_base = sys.argv[-1] -totsize = 0 # amount written -fcount = 0 -opath = get_outfile_name(output_file_base, fcount) -print("MEMFS: Generating output: ", opath) -g = open(opath, "w") + +buffer = None +fcount = -1 + + + for directory in dirs: @@ -58,13 +63,21 @@ for directory in dirs: NAMES.append(dname) for dirpath, dirnames, files in os.walk(directory, followlinks=True): - # for ex in EXCLUDED: - # if ex in dirnames: - # print('Note: eccodes memfs.py script: %s/%s will not be included.' % (dirpath,ex)) + + # Prune the walk by modifying the dirnames in-place dirnames[:] = [dirname for dirname in dirnames if dirname not in EXCLUDED] for name in files: + + + if buffer is None: + fcount += 1 + opath = get_outfile_name(output_file_base, fcount) + print("MEMFS: Generating output:", opath) + buffer = open(opath, 'wb') + + full = "%s/%s" % (dirpath, name) _, ext = os.path.splitext(full) if ext not in [".def", ".table", ".tmpl", ".list", ".txt"]: @@ -72,8 +85,6 @@ for directory in dirs: if name == "CMakeLists.txt": continue - fsize = os.path.getsize(full) - totsize += fsize full = full.replace("\\", "/") fname = full[full.find("/%s/" % (dname,)) :] # print("MEMFS: Add ", fname) @@ -82,9 +93,10 @@ for directory in dirs: assert name not in FILES assert name not in SIZES FILES[name] = fname - SIZES[name] = fsize + SIZES[name] = os.path.getsize(full) - print("const unsigned char %s[] = {" % (name,), file=g) + txt = "const unsigned char %s[] = {" % (name,) + buffer.write(txt.encode()) with open(full, "rb") as f: i = 0 @@ -98,24 +110,24 @@ for directory in dirs: # e.g. 23 -> 0x23 for n in range(0, len(contents_hex), 2): twoChars = ascii(contents_hex[n : n + 2]) - print("0x%s," % (twoChars,), end="", file=g) + txt = "0x%s," % (twoChars,) + buffer.write(txt.encode()) i += 1 if (i % 20) == 0: - print("", file=g) + buffer.write("\n".encode()) - print("};", file=g) - if totsize >= CHUNK: - g.close() - fcount += 1 - opath = get_outfile_name(output_file_base, fcount) - print("MEMFS: Generating output: ", opath) - g = open(opath, "w") - totsize = 0 + buffer.write("};\n".encode()) + if buffer.tell() >= CHUNK: + buffer.close() + buffer = None + + +if buffer is not None: + buffer.close() -g.close() # The number of generated C files is hard coded. # See memfs/CMakeLists.txt -assert fcount == 3, fcount +assert fcount == 6, fcount opath = output_file_base + "_final.c" print("MEMFS: Generating output: ", opath) g = open(opath, "w") @@ -311,3 +323,5 @@ FILE* codes_memfs_open(const char* path) { ) print("Finished") + +print("MEMFS: done", time.time() - start) diff --git a/memfs/CMakeLists.txt b/memfs/CMakeLists.txt index 0f5da4be9..b1299d2ae 100644 --- a/memfs/CMakeLists.txt +++ b/memfs/CMakeLists.txt @@ -10,6 +10,9 @@ set( generated_c_files ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_001.c ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_002.c ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_003.c + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_004.c + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_005.c + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_006.c ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_final.c) add_custom_command( From 149a6fcc0dbce28429ebd04645764872db3076d4 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 20 Oct 2020 16:23:44 +0100 Subject: [PATCH 095/683] MEMFS: no need to use binary mode for output --- memfs.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/memfs.py b/memfs.py index a2bb7c774..0dc951130 100755 --- a/memfs.py +++ b/memfs.py @@ -69,7 +69,7 @@ for directory in dirs: fcount += 1 opath = get_outfile_name(output_file_base, fcount) print("MEMFS: Generating output:", opath) - buffer = open(opath, 'wb') + buffer = open(opath, "w") full = "%s/%s" % (dirpath, name) _, ext = os.path.splitext(full) @@ -89,7 +89,7 @@ for directory in dirs: SIZES[name] = os.path.getsize(full) txt = "const unsigned char %s[] = {" % (name,) - buffer.write(txt.encode()) + buffer.write(txt) with open(full, "rb") as f: i = 0 @@ -104,12 +104,12 @@ for directory in dirs: for n in range(0, len(contents_hex), 2): twoChars = ascii(contents_hex[n : n + 2]) txt = "0x%s," % (twoChars,) - buffer.write(txt.encode()) + buffer.write(txt) i += 1 if (i % 20) == 0: - buffer.write("\n".encode()) + buffer.write("\n") - buffer.write("};\n".encode()) + buffer.write("};\n") if buffer.tell() >= CHUNK: buffer.close() buffer = None From 71a7ad6a250d1a9ef8ef334f344e58b33151fce9 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 20 Oct 2020 17:32:02 +0100 Subject: [PATCH 096/683] Rename tests --- examples/C/CMakeLists.txt | 6 +++--- examples/C/Makefile.am | 6 +++--- examples/C/{set_missing.c => grib_set_missing.c} | 0 examples/C/{set_missing.sh => grib_set_missing.sh} | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) rename examples/C/{set_missing.c => grib_set_missing.c} (100%) rename examples/C/{set_missing.sh => grib_set_missing.sh} (92%) diff --git a/examples/C/CMakeLists.txt b/examples/C/CMakeLists.txt index 7452a1528..eb25fbe23 100644 --- a/examples/C/CMakeLists.txt +++ b/examples/C/CMakeLists.txt @@ -15,7 +15,7 @@ list( APPEND test_bins grib_print_data grib_set_keys grib_index - set_missing + grib_set_missing grib_keys_iterator grib_set_data mars_param @@ -83,7 +83,7 @@ if( HAVE_BUILD_TOOLS ) grib_get_data grib_nearest_multiple grib_multi - set_missing + grib_set_missing bufr_attributes bufr_copy_data bufr_clone @@ -117,7 +117,7 @@ else() grib_get_data grib_nearest_multiple grib_multi - set_missing + grib_set_missing bufr_attributes bufr_expanded bufr_get_keys diff --git a/examples/C/Makefile.am b/examples/C/Makefile.am index 57933cf49..ed686f1d8 100644 --- a/examples/C/Makefile.am +++ b/examples/C/Makefile.am @@ -13,7 +13,7 @@ TESTS = grib_iterator.sh \ large_grib1.sh \ grib_get_data.sh \ grib_sections_copy.sh \ - set_missing.sh \ + grib_set_missing.sh \ grib_clone.sh \ grib_set_pv.sh \ grib_set_bitmap.sh \ @@ -37,7 +37,7 @@ noinst_PROGRAMS = c_grib_nearest \ c_grib_get_keys \ c_grib_print_data \ c_grib_set_keys \ - c_set_missing \ + c_grib_set_missing \ c_grib_keys_iterator \ c_grib_set_data \ c_grib_index \ @@ -84,7 +84,7 @@ c_grib_multi_write_SOURCES = grib_multi_write.c c_grib_get_keys_SOURCES = grib_get_keys.c c_grib_print_data_SOURCES = grib_print_data.c c_grib_set_keys_SOURCES = grib_set_keys.c -c_set_missing_SOURCES = set_missing.c +c_grib_set_missing_SOURCES = grib_set_missing.c c_grib_index_SOURCES = grib_index.c c_grib_set_bitmap_SOURCES = grib_set_bitmap.c c_grib_multi_SOURCES = grib_multi.c diff --git a/examples/C/set_missing.c b/examples/C/grib_set_missing.c similarity index 100% rename from examples/C/set_missing.c rename to examples/C/grib_set_missing.c diff --git a/examples/C/set_missing.sh b/examples/C/grib_set_missing.sh similarity index 92% rename from examples/C/set_missing.sh rename to examples/C/grib_set_missing.sh index a2d5b27d0..52167eee9 100755 --- a/examples/C/set_missing.sh +++ b/examples/C/grib_set_missing.sh @@ -9,5 +9,5 @@ . ./include.sh -${examples_dir}/c_set_missing +${examples_dir}/c_grib_set_missing rm -f out_surface_level.grib2 From a1a66d170582c415741ec5324abdd0368dc2ee96 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 20 Oct 2020 17:36:25 +0100 Subject: [PATCH 097/683] Rename tests --- examples/F90/CMakeLists.txt | 4 ++-- examples/F90/Makefile.am | 6 +++--- examples/F90/{get_pl.f90 => grib_get_pl.f90} | 4 ++-- examples/F90/{get_pl.sh => grib_get_pl.sh} | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) rename examples/F90/{get_pl.f90 => grib_get_pl.f90} (96%) rename examples/F90/{get_pl.sh => grib_get_pl.sh} (89%) diff --git a/examples/F90/CMakeLists.txt b/examples/F90/CMakeLists.txt index 06a2583c1..e1c3b1c9d 100644 --- a/examples/F90/CMakeLists.txt +++ b/examples/F90/CMakeLists.txt @@ -18,7 +18,7 @@ if( HAVE_BUILD_TOOLS ) bufr_copy_message grib_get_keys grib_get_data - get_pl + grib_get_pl get_pv grib_keys_iterator grib_multi_write @@ -63,7 +63,7 @@ else() grib_index grib_get_keys grib_get_data - get_pl + grib_get_pl get_pv grib_keys_iterator grib_multi diff --git a/examples/F90/Makefile.am b/examples/F90/Makefile.am index cdf73fc85..79dde29a6 100644 --- a/examples/F90/Makefile.am +++ b/examples/F90/Makefile.am @@ -1,7 +1,7 @@ AM_CFLAGS = @WARN_PEDANTIC@ @WERROR@ @FORCE_32_CFLAGS@ -TESTS = grib_copy_message.sh grib_get_keys.sh grib_get_data.sh get_pl.sh get_pv.sh grib_keys_iterator.sh \ +TESTS = grib_copy_message.sh grib_get_keys.sh grib_get_data.sh grib_get_pl.sh get_pv.sh grib_keys_iterator.sh \ grib_nearest.sh grib_precision.sh grib_multi_write.sh grib_multi.sh \ grib_print_data.sh grib_set_keys.sh \ grib_set_bitmap.sh grib_set_missing.sh grib_set_pv.sh grib_samples.sh grib_count_messages.sh \ @@ -18,7 +18,7 @@ noinst_PROGRAMS = eccodes_f_grib_index \ eccodes_f_grib_copy_message \ eccodes_f_grib_get_keys \ eccodes_f_grib_get_data \ - eccodes_f_get_pl \ + eccodes_f_grib_get_pl \ eccodes_f_get_pv \ eccodes_f_grib_keys_iterator \ eccodes_f_grib_multi_write \ @@ -60,7 +60,7 @@ eccodes_f_grib_index_SOURCES=grib_index.f90 eccodes_f_grib_copy_message_SOURCES=grib_copy_message.f90 eccodes_f_grib_get_keys_SOURCES=grib_get_keys.f90 eccodes_f_grib_get_data_SOURCES=grib_get_data.f90 -eccodes_f_get_pl_SOURCES=get_pl.f90 +eccodes_f_grib_get_pl_SOURCES=grib_get_pl.f90 eccodes_f_get_pv_SOURCES=get_pv.f90 eccodes_f_grib_keys_iterator_SOURCES=grib_keys_iterator.f90 eccodes_f_grib_multi_write_SOURCES=grib_multi_write.f90 diff --git a/examples/F90/get_pl.f90 b/examples/F90/grib_get_pl.f90 similarity index 96% rename from examples/F90/get_pl.f90 rename to examples/F90/grib_get_pl.f90 index b364f4113..a13e1752a 100644 --- a/examples/F90/get_pl.f90 +++ b/examples/F90/grib_get_pl.f90 @@ -10,7 +10,7 @@ ! Description: how to get PL values. ! ! -program get_pl +program grib_get_pl use eccodes implicit none integer :: infile @@ -42,4 +42,4 @@ program get_pl call codes_close_file(infile) -end program get_pl +end program grib_get_pl diff --git a/examples/F90/get_pl.sh b/examples/F90/grib_get_pl.sh similarity index 89% rename from examples/F90/get_pl.sh rename to examples/F90/grib_get_pl.sh index 7001252b9..62448137e 100755 --- a/examples/F90/get_pl.sh +++ b/examples/F90/grib_get_pl.sh @@ -9,4 +9,4 @@ . ./include.sh -${examples_dir}/eccodes_f_get_pl > /dev/null +${examples_dir}/eccodes_f_grib_get_pl > /dev/null From bc7bc629a65a59d6ddc3b08781910f6b0392754e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 20 Oct 2020 17:46:08 +0100 Subject: [PATCH 098/683] Rename tests --- examples/F90/CMakeLists.txt | 4 ++-- examples/F90/Makefile.am | 6 +++--- examples/F90/{get_pv.f90 => grib_get_pv.f90} | 4 ++-- examples/F90/{get_pv.sh => grib_get_pv.sh} | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) rename examples/F90/{get_pv.f90 => grib_get_pv.f90} (96%) rename examples/F90/{get_pv.sh => grib_get_pv.sh} (89%) diff --git a/examples/F90/CMakeLists.txt b/examples/F90/CMakeLists.txt index e1c3b1c9d..af5a97f57 100644 --- a/examples/F90/CMakeLists.txt +++ b/examples/F90/CMakeLists.txt @@ -19,7 +19,7 @@ if( HAVE_BUILD_TOOLS ) grib_get_keys grib_get_data grib_get_pl - get_pv + grib_get_pv grib_keys_iterator grib_multi_write grib_multi @@ -64,7 +64,7 @@ else() grib_get_keys grib_get_data grib_get_pl - get_pv + grib_get_pv grib_keys_iterator grib_multi grib_nearest diff --git a/examples/F90/Makefile.am b/examples/F90/Makefile.am index 79dde29a6..068e72c91 100644 --- a/examples/F90/Makefile.am +++ b/examples/F90/Makefile.am @@ -1,7 +1,7 @@ AM_CFLAGS = @WARN_PEDANTIC@ @WERROR@ @FORCE_32_CFLAGS@ -TESTS = grib_copy_message.sh grib_get_keys.sh grib_get_data.sh grib_get_pl.sh get_pv.sh grib_keys_iterator.sh \ +TESTS = grib_copy_message.sh grib_get_keys.sh grib_get_data.sh grib_get_pl.sh grib_get_pv.sh grib_keys_iterator.sh \ grib_nearest.sh grib_precision.sh grib_multi_write.sh grib_multi.sh \ grib_print_data.sh grib_set_keys.sh \ grib_set_bitmap.sh grib_set_missing.sh grib_set_pv.sh grib_samples.sh grib_count_messages.sh \ @@ -19,7 +19,7 @@ noinst_PROGRAMS = eccodes_f_grib_index \ eccodes_f_grib_get_keys \ eccodes_f_grib_get_data \ eccodes_f_grib_get_pl \ - eccodes_f_get_pv \ + eccodes_f_grib_get_pv \ eccodes_f_grib_keys_iterator \ eccodes_f_grib_multi_write \ eccodes_f_grib_multi \ @@ -61,7 +61,7 @@ eccodes_f_grib_copy_message_SOURCES=grib_copy_message.f90 eccodes_f_grib_get_keys_SOURCES=grib_get_keys.f90 eccodes_f_grib_get_data_SOURCES=grib_get_data.f90 eccodes_f_grib_get_pl_SOURCES=grib_get_pl.f90 -eccodes_f_get_pv_SOURCES=get_pv.f90 +eccodes_f_grib_get_pv_SOURCES=grib_get_pv.f90 eccodes_f_grib_keys_iterator_SOURCES=grib_keys_iterator.f90 eccodes_f_grib_multi_write_SOURCES=grib_multi_write.f90 eccodes_f_grib_multi_SOURCES=grib_multi.f90 diff --git a/examples/F90/get_pv.f90 b/examples/F90/grib_get_pv.f90 similarity index 96% rename from examples/F90/get_pv.f90 rename to examples/F90/grib_get_pv.f90 index dcfcdb77a..2fcf8a26e 100644 --- a/examples/F90/get_pv.f90 +++ b/examples/F90/grib_get_pv.f90 @@ -10,7 +10,7 @@ ! Description: how to get PV values. ! ! -program get_pv +program grib_get_pv use eccodes implicit none integer :: infile @@ -42,4 +42,4 @@ program get_pv call codes_close_file(infile) -end program get_pv +end program grib_get_pv diff --git a/examples/F90/get_pv.sh b/examples/F90/grib_get_pv.sh similarity index 89% rename from examples/F90/get_pv.sh rename to examples/F90/grib_get_pv.sh index 568d8701c..c0dca3755 100755 --- a/examples/F90/get_pv.sh +++ b/examples/F90/grib_get_pv.sh @@ -9,4 +9,4 @@ . ./include.sh -${examples_dir}/eccodes_f_get_pv > /dev/null +${examples_dir}/eccodes_f_grib_get_pv > /dev/null From cdda46accfd84e5fdb8ab6f4cbc47a90f281ca6e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 20 Oct 2020 18:04:01 +0100 Subject: [PATCH 099/683] Rename tests --- examples/F90/CMakeLists.txt | 4 ++-- examples/F90/Makefile.am | 12 ++++++------ .../F90/{get_set_uuid.f90 => grib_get_set_uuid.f90} | 4 ++-- .../F90/{get_set_uuid.sh => grib_get_set_uuid.sh} | 2 +- .../F90/{read_message.f90 => grib_read_message.f90} | 4 ++-- .../F90/{read_message.sh => grib_read_message.sh} | 2 +- 6 files changed, 14 insertions(+), 14 deletions(-) rename examples/F90/{get_set_uuid.f90 => grib_get_set_uuid.f90} (98%) rename examples/F90/{get_set_uuid.sh => grib_get_set_uuid.sh} (93%) rename examples/F90/{read_message.f90 => grib_read_message.f90} (96%) rename examples/F90/{read_message.sh => grib_read_message.sh} (90%) diff --git a/examples/F90/CMakeLists.txt b/examples/F90/CMakeLists.txt index af5a97f57..c2cd8aee9 100644 --- a/examples/F90/CMakeLists.txt +++ b/examples/F90/CMakeLists.txt @@ -33,9 +33,9 @@ if( HAVE_BUILD_TOOLS ) grib_count_messages grib_count_messages_multi grib_copy_namespace - read_message + grib_read_message read_from_file - get_set_uuid + grib_get_set_uuid grib_clone bufr_attributes bufr_copy_data diff --git a/examples/F90/Makefile.am b/examples/F90/Makefile.am index 068e72c91..6530fe905 100644 --- a/examples/F90/Makefile.am +++ b/examples/F90/Makefile.am @@ -5,8 +5,8 @@ TESTS = grib_copy_message.sh grib_get_keys.sh grib_get_data.sh grib_get_pl.sh gr grib_nearest.sh grib_precision.sh grib_multi_write.sh grib_multi.sh \ grib_print_data.sh grib_set_keys.sh \ grib_set_bitmap.sh grib_set_missing.sh grib_set_pv.sh grib_samples.sh grib_count_messages.sh \ - read_message.sh grib_count_messages_multi.sh \ - read_from_file.sh grib_index.sh get_set_uuid.sh \ + grib_read_message.sh grib_count_messages_multi.sh \ + read_from_file.sh grib_index.sh grib_get_set_uuid.sh \ bufr_attributes.sh grib_clone.sh bufr_clone.sh \ bufr_expanded.sh bufr_get_keys.sh bufr_get_string_array.sh \ bufr_read_header.sh bufr_read_synop.sh \ @@ -34,11 +34,11 @@ noinst_PROGRAMS = eccodes_f_grib_index \ eccodes_f_grib_samples \ eccodes_f_grib_count_messages \ eccodes_f_grib_count_messages_multi \ - eccodes_f_read_message \ + eccodes_f_grib_read_message \ eccodes_f_read_from_file \ eccodes_f_new_from_file \ eccodes_f_grib_copy_namespace \ - eccodes_f_get_set_uuid \ + eccodes_f_grib_get_set_uuid \ eccodes_f_grib_set_gvc \ eccodes_f_grib_clone \ eccodes_f_bufr_clone \ @@ -76,11 +76,11 @@ eccodes_f_grib_set_pv_SOURCES=grib_set_pv.f90 eccodes_f_grib_samples_SOURCES=grib_samples.f90 eccodes_f_grib_count_messages_SOURCES=grib_count_messages.f90 eccodes_f_grib_count_messages_multi_SOURCES=grib_count_messages_multi.f90 -eccodes_f_read_message_SOURCES=read_message.f90 +eccodes_f_grib_read_message_SOURCES=grib_read_message.f90 eccodes_f_read_from_file_SOURCES=read_from_file.f90 eccodes_f_new_from_file_SOURCES=new_from_file.f90 eccodes_f_grib_copy_namespace_SOURCES=grib_copy_namespace.f90 -eccodes_f_get_set_uuid_SOURCES=get_set_uuid.f90 +eccodes_f_grib_get_set_uuid_SOURCES=grib_get_set_uuid.f90 eccodes_f_grib_set_gvc_SOURCES=grib_set_gvc.f90 eccodes_f_grib_clone_SOURCES=grib_clone.f90 eccodes_f_bufr_attributes_SOURCES=bufr_attributes.f90 diff --git a/examples/F90/get_set_uuid.f90 b/examples/F90/grib_get_set_uuid.f90 similarity index 98% rename from examples/F90/get_set_uuid.f90 rename to examples/F90/grib_get_set_uuid.f90 index 097285987..17a812a3b 100644 --- a/examples/F90/get_set_uuid.f90 +++ b/examples/F90/grib_get_set_uuid.f90 @@ -11,7 +11,7 @@ ! ! Original authors: Harald Anlauf, Doerte Liermann (DWD), Luis Kornblueh (MPIfM). ! -program get_set_uuid +program grib_get_set_uuid use eccodes implicit none integer :: infile, outfile @@ -97,4 +97,4 @@ contains nibble = achar (iachar ('a') - 10 + x) end select end function nibble -end program get_set_uuid +end program grib_get_set_uuid diff --git a/examples/F90/get_set_uuid.sh b/examples/F90/grib_get_set_uuid.sh similarity index 93% rename from examples/F90/get_set_uuid.sh rename to examples/F90/grib_get_set_uuid.sh index cf512b777..66254cf75 100755 --- a/examples/F90/get_set_uuid.sh +++ b/examples/F90/grib_get_set_uuid.sh @@ -14,7 +14,7 @@ uuid=`${tools_dir}/grib_get -w count=1 -p uuidOfVGrid:s ${data_dir}/test_uuid.gr [ "$uuid" = "08b1e836bc6911e1951fb51b5624ad8d" ] # This reads the file in data/test_uuid.grib2 and creates test_uuid.grib2 -${examples_dir}/eccodes_f_get_set_uuid > /dev/null +${examples_dir}/eccodes_f_grib_get_set_uuid > /dev/null # Check output was written output=out_uuid.grib2 diff --git a/examples/F90/read_message.f90 b/examples/F90/grib_read_message.f90 similarity index 96% rename from examples/F90/read_message.f90 rename to examples/F90/grib_read_message.f90 index cb4dee699..ac0f80ff2 100644 --- a/examples/F90/read_message.f90 +++ b/examples/F90/grib_read_message.f90 @@ -8,7 +8,7 @@ ! ! Description: how to get values using keys. ! -program read_message +program grib_read_message use eccodes implicit none integer :: ifile,ofile @@ -49,5 +49,5 @@ implicit none call codes_close_file(ifile) call codes_close_file(ofile) -end program read_message +end program grib_read_message diff --git a/examples/F90/read_message.sh b/examples/F90/grib_read_message.sh similarity index 90% rename from examples/F90/read_message.sh rename to examples/F90/grib_read_message.sh index 04d6cbcfe..639fc4c97 100755 --- a/examples/F90/read_message.sh +++ b/examples/F90/grib_read_message.sh @@ -14,7 +14,7 @@ out=out.readmsg.grib rm -f $out | true -${examples_dir}/eccodes_f_read_message > /dev/null +${examples_dir}/eccodes_f_grib_read_message > /dev/null ${tools_dir}/grib_compare $in $out From 74210235d2d19cee857c412199dc5fa13f60df1f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 20 Oct 2020 20:03:48 +0100 Subject: [PATCH 100/683] ECC-1160: Building with ENABLE_PRODUCT_BUFR=OFF and ENABLE_MEMFS=ON fails --- memfs.py | 5 ++++- memfs/CMakeLists.txt | 26 +++++++++++++++++++------- 2 files changed, 23 insertions(+), 8 deletions(-) diff --git a/memfs.py b/memfs.py index 0dc951130..f869b3280 100755 --- a/memfs.py +++ b/memfs.py @@ -14,14 +14,17 @@ print("MEMFS: starting") # Exclude experimental features e.g. GRIB3 and TAF # The BUFR codetables is not used in the engine EXCLUDED = ["grib3", "codetables", "taf", "stations"] +EXPECTED_FCOUNT = 6 pos = 1 if sys.argv[1] == "-exclude": product = sys.argv[2] if product == "bufr": EXCLUDED.append(product) + EXPECTED_FCOUNT = 4 elif product == "grib": EXCLUDED.extend(["grib1", "grib2"]) + EXPECTED_FCOUNT = 2 else: assert False, "Invalid product %s" % product pos = 3 @@ -120,7 +123,7 @@ if buffer is not None: # The number of generated C files is hard coded. # See memfs/CMakeLists.txt -assert fcount == 6, fcount +assert fcount == EXPECTED_FCOUNT, fcount opath = output_file_base + "_final.c" print("MEMFS: Generating output: ", opath) g = open(opath, "w") diff --git a/memfs/CMakeLists.txt b/memfs/CMakeLists.txt index b1299d2ae..427c24818 100644 --- a/memfs/CMakeLists.txt +++ b/memfs/CMakeLists.txt @@ -1,10 +1,3 @@ -set( exclude "" ) -if( NOT HAVE_PRODUCT_BUFR ) - set( exclude -exclude bufr ) -elseif( NOT HAVE_PRODUCT_GRIB ) - set( exclude -exclude grib ) -endif() - set( generated_c_files ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_000.c ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_001.c @@ -15,6 +8,25 @@ set( generated_c_files ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_006.c ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_final.c) +set( exclude "" ) +if( NOT HAVE_PRODUCT_BUFR ) + set( exclude -exclude bufr ) + set( generated_c_files + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_000.c + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_001.c + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_002.c + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_003.c + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_004.c + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_final.c) +elseif( NOT HAVE_PRODUCT_GRIB ) + set( exclude -exclude grib ) + set( generated_c_files + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_000.c + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_001.c + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_002.c + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_final.c) +endif() + add_custom_command( OUTPUT ${generated_c_files} COMMAND ${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/memfs.py From 8ae8ac63d1ae22a9967b0de760f3f51e0d17b229 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 20 Oct 2020 21:11:05 +0100 Subject: [PATCH 101/683] Testing: Split Python high level tests into GRIB and BUFR --- examples/python/high_level_api.sh | 12 +- examples/python/high_level_api_bufr.py | 211 ++++++++++++++++++++ examples/python/high_level_api_grib.py | 259 +++++++++++++++++++++++++ 3 files changed, 480 insertions(+), 2 deletions(-) create mode 100644 examples/python/high_level_api_bufr.py create mode 100644 examples/python/high_level_api_grib.py diff --git a/examples/python/high_level_api.sh b/examples/python/high_level_api.sh index b02f325ca..367af6587 100755 --- a/examples/python/high_level_api.sh +++ b/examples/python/high_level_api.sh @@ -5,6 +5,14 @@ # To get verbose output #$PYTHON -m unittest -v high_level_api -$PYTHON $examples_src/high_level_api.py -v +if [ $HAVE_PRODUCT_GRIB -eq 1 ]; then + echo 'Running tests for GRIB ...' + $PYTHON $examples_src/high_level_api_grib.py -v + rm -f test.index +fi -rm -f test.index +if [ $HAVE_PRODUCT_BUFR -eq 1 ]; then + echo 'Running tests for BUFR ...' + $PYTHON $examples_src/high_level_api_bufr.py -v + rm -f test.index +fi diff --git a/examples/python/high_level_api_bufr.py b/examples/python/high_level_api_bufr.py new file mode 100644 index 000000000..4d002bc14 --- /dev/null +++ b/examples/python/high_level_api_bufr.py @@ -0,0 +1,211 @@ +#!/bin/env python + +""" +Unit tests for high level Python interface for BUFR. + +Author: Daniel Lee, DWD, 2016 +""" + +import os +from tempfile import NamedTemporaryFile +import unittest + +from eccodes import BufrFile, BufrMessage + +TESTBUFR = "../../data/bufr/syno_multi.bufr" +TEST_OUTPUT = "test-output.codes" + +KNOWN_BUFR_KEYS = ['edition', 'masterTableNumber', 'bufrHeaderSubCentre', 'bufrHeaderCentre', + 'updateSequenceNumber', 'dataCategory', 'dataSubCategory', 'masterTablesVersionNumber', + 'localTablesVersionNumber', 'typicalYearOfCentury', 'typicalMonth', 'typicalDay', + 'typicalHour', 'typicalMinute', 'typicalDate', 'typicalTime', 'rdbType', 'newSubtype', 'rdbtimeDay', + 'rdbtimeHour', 'rdbtimeMinute', 'rdbtimeSecond', 'rectimeDay', 'rectimeHour', 'rectimeMinute', 'rectimeSecond', + 'correction1', 'correction1Part', 'correction2', 'correction2Part', 'correction3', 'correction3Part', + 'correction4', 'correction4Part', 'qualityControl', 'numberOfSubsets', 'localLatitude', + 'localLongitude', 'observedData', 'compressedData', 'unexpandedDescriptors', 'subsetNumber', '#1#blockNumber', + '#1#blockNumber->percentConfidence', '#1#stationNumber', '#1#stationNumber->percentConfidence', + '#1#stationType', '#1#stationType->percentConfidence', '#1#year', '#1#year->percentConfidence', + '#1#month', '#1#month->percentConfidence', '#1#day', '#1#day->percentConfidence', '#1#hour', + '#1#hour->percentConfidence', '#1#minute', '#1#minute->percentConfidence', '#1#latitude', + '#1#latitude->percentConfidence', '#1#longitude', '#1#longitude->percentConfidence', + '#1#heightOfStation', '#1#heightOfStation->percentConfidence', '#1#nonCoordinatePressure', + '#1#nonCoordinatePressure->percentConfidence', '#1#pressureReducedToMeanSeaLevel', + '#1#pressureReducedToMeanSeaLevel->percentConfidence', '#1#3HourPressureChange', + '#1#3HourPressureChange->percentConfidence', '#1#characteristicOfPressureTendency', + '#1#characteristicOfPressureTendency->percentConfidence', '#1#windDirectionAt10M', + '#1#windDirectionAt10M->percentConfidence', '#1#windSpeedAt10M', + '#1#windSpeedAt10M->percentConfidence', + '#1#airTemperatureAt2M', '#1#airTemperatureAt2M->percentConfidence', '#1#dewpointTemperatureAt2M', + '#1#dewpointTemperatureAt2M->percentConfidence', '#1#relativeHumidity', + '#1#relativeHumidity->percentConfidence', '#1#horizontalVisibility', + '#1#horizontalVisibility->percentConfidence', '#1#presentWeather', + '#1#presentWeather->percentConfidence', '#1#pastWeather1', '#1#pastWeather1->percentConfidence', + '#1#pastWeather2', '#1#pastWeather2->percentConfidence', '#1#cloudCoverTotal', + '#1#cloudCoverTotal->percentConfidence', '#1#verticalSignificanceSurfaceObservations', + '#1#verticalSignificanceSurfaceObservations->percentConfidence', '#1#cloudAmount', + '#1#cloudAmount->percentConfidence', '#1#heightOfBaseOfCloud', + '#1#heightOfBaseOfCloud->percentConfidence', '#1#cloudType', '#1#cloudType->percentConfidence', + '#2#cloudType', '#2#cloudType->percentConfidence', '#3#cloudType', '#3#cloudType->percentConfidence', + '#2#verticalSignificanceSurfaceObservations', + '#2#verticalSignificanceSurfaceObservations->percentConfidence', + '#2#cloudAmount', '#2#cloudAmount->percentConfidence', '#4#cloudType', + '#4#cloudType->percentConfidence', '#2#heightOfBaseOfCloud', + '#2#heightOfBaseOfCloud->percentConfidence', + '#3#verticalSignificanceSurfaceObservations', + '#3#verticalSignificanceSurfaceObservations->percentConfidence', + '#3#cloudAmount', '#3#cloudAmount->percentConfidence', '#5#cloudType', + '#5#cloudType->percentConfidence', + '#3#heightOfBaseOfCloud', '#3#heightOfBaseOfCloud->percentConfidence', + '#4#verticalSignificanceSurfaceObservations', + '#4#verticalSignificanceSurfaceObservations->percentConfidence', '#4#cloudAmount', + '#4#cloudAmount->percentConfidence', + '#6#cloudType', '#6#cloudType->percentConfidence', '#4#heightOfBaseOfCloud', + '#4#heightOfBaseOfCloud->percentConfidence', + '#5#verticalSignificanceSurfaceObservations', + '#5#verticalSignificanceSurfaceObservations->percentConfidence', '#5#cloudAmount', + '#5#cloudAmount->percentConfidence', '#7#cloudType', '#7#cloudType->percentConfidence', + '#5#heightOfBaseOfCloud', + '#5#heightOfBaseOfCloud->percentConfidence', '#1#totalPrecipitationPast6Hours', + '#1#totalPrecipitationPast6Hours->percentConfidence', '#1#totalSnowDepth', + '#1#totalSnowDepth->percentConfidence', + '#1#centre', '#1#generatingApplication'] + + + +class TestBufrFile(unittest.TestCase): + """Test BufrFile functionality.""" + + def test_memory_management(self): + """Messages in BufrFile can be opened and closed properly.""" + with BufrFile(TESTBUFR) as bufr_file: + self.assertEqual(len(bufr_file), 3) + for i in range(len(bufr_file)): + msg = BufrMessage(bufr_file) + self.assertEqual(msg["bufrHeaderCentre"], 98) + self.assertEqual(msg['count'], i + 1) + self.assertEqual(len(bufr_file.open_messages), 3) + self.assertEqual(len(bufr_file.open_messages), 0) + + def test_message_counting_works(self): + """The BufrFile is aware of its messages.""" + with BufrFile(TESTBUFR) as bufr_file: + msg_count = len(bufr_file) + self.assertEqual(msg_count, 3) + + def test_iterator_protocol(self): + """The BufrFile allows pythonic iteration over all messages.""" + latitudes = [] + with BufrFile(TESTBUFR) as bufr_file: + for msg in bufr_file: + latitudes.append(msg["localLatitude"]) + self.assertSequenceEqual(latitudes, [70.93, 77, 78.92]) + + def test_read_past_last_message(self): + """Trying to open message on exhausted BUFR file raises IOError.""" + with BufrFile(TESTBUFR) as bufr_file: + for _ in range(len(bufr_file)): + BufrMessage(bufr_file) + self.assertRaises(IOError, lambda: BufrMessage(bufr_file)) + + def test_read_invalid_file(self): + """Trying to open message on nonexistent file raises IOError.""" + with NamedTemporaryFile(mode='r') as f: + with BufrFile(f.name) as bufr_file: + self.assertRaises(IOError, lambda: BufrMessage(bufr_file)) + + +class TestBufrMessage(unittest.TestCase): + """Test BufrMessage functionality""" + + def test_metadata(self): + """Metadata is read correctly from BufrMessage.""" + with BufrFile(TESTBUFR) as bufr_file: + msg = BufrMessage(bufr_file) + msg.unpack() + msg_keys = list(msg.keys()) + self.assertEqual(len(msg_keys), 202) + for key in KNOWN_BUFR_KEYS: + assert key in msg_keys + # Size of message in bytes + self.assertEqual(msg.size(), 220) + self.assertEqual(len(list(msg.keys())), len(msg)) + + def test_content(self): + """Data values are read correctly from BufrMessage.""" + with BufrFile(TESTBUFR) as bufr_file: + msg = BufrMessage(bufr_file) + msg.unpack() + self.assertEqual(msg["airTemperatureAt2M"], 274.5) + + # TODO: Test behaviour with missing messages (SUP-1874) + + def test_value_setting(self): + """Keys can be set properly.""" + with BufrFile(TESTBUFR) as bufr_file: + msg = BufrMessage(bufr_file) + key, val = "localLongitude", 5 + msg[key] = val + self.assertEqual(msg[key], val) + + def test_serialize(self): + """Message can be serialized to file.""" + with BufrFile(TESTBUFR) as bufr_file: + msg = BufrMessage(bufr_file) + with open(TEST_OUTPUT, "wb") as test: + msg.write(test) + os.unlink(TEST_OUTPUT) + + def test_clone(self): + """Messages can be used to produce clone Messages.""" + with BufrFile(TESTBUFR) as bufr_file: + msg = BufrMessage(bufr_file) + msg2 = BufrMessage(clone=msg) + self.assertSequenceEqual(list(msg.keys()), list(msg2.keys())) + + def test_copy_data(self): + """Can copy data section from one message to another""" + bufr = BufrMessage(sample='BUFR3') + with BufrFile('../../data/bufr/metar_with_2_bias.bufr') as bufr_file: + bufrin = BufrMessage(bufr_file) + ivalues = ( + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 1, 1, 0) + bufr['inputDataPresentIndicator'] = ivalues + bufr['edition'] = 3 + bufr['masterTableNumber'] = 0 + bufr['bufrHeaderSubCentre'] = 0 + bufr['bufrHeaderCentre'] = 98 + bufr['updateSequenceNumber'] = 1 + bufr['dataCategory'] = 0 + bufr['dataSubCategory'] = 140 + bufr['masterTablesVersionNumber'] = 13 + bufr['localTablesVersionNumber'] = 1 + bufr['typicalYearOfCentury'] = 15 + bufr['typicalMonth'] = 5 + bufr['typicalDay'] = 4 + bufr['typicalHour'] = 9 + bufr['typicalMinute'] = 30 + bufr['numberOfSubsets'] = 1 + bufr['observedData'] = 1 + bufr['compressedData'] = 0 + ivalues = ( + 307011, 7006, 10004, 222000, 101023, 31031, 1031, 1032, 101023, 33007, + 225000, 236000, 101023, 31031, 1031, 1032, 8024, 101001, 225255, 225000, + 236000, 101023, 31031, 1031, 1032, 8024, 101001, 225255, + 1063, 2001, 4001, 4002, 4003, 4004, 4005, 5002, + 6002, 7001, 7006, 11001, 11016, 11017, 11002) + bufr['unexpandedDescriptors'] = ivalues + bufrin.unpack() + bufrin.copy_data(bufr) + with open(TEST_OUTPUT, 'wb') as test: + bufr.write(test) + os.unlink(TEST_OUTPUT) + + +if __name__ == "__main__": + unittest.main() diff --git a/examples/python/high_level_api_grib.py b/examples/python/high_level_api_grib.py new file mode 100644 index 000000000..0b5d3ebc5 --- /dev/null +++ b/examples/python/high_level_api_grib.py @@ -0,0 +1,259 @@ +#!/bin/env python + +""" +Unit tests for high level Python interface for GRIB. + +Author: Daniel Lee, DWD, 2016 +""" + +import os +from tempfile import NamedTemporaryFile +import unittest + +from eccodes import GribFile +from eccodes import GribIndex +from eccodes import GribMessage +from eccodes.high_level.gribmessage import IndexNotSelectedError + +TESTGRIB = "../../data/high_level_api.grib2" +TEST_OUTPUT = "test-output.codes" +TEST_INDEX = "test.index" +TEST_KEYS = ("dataDate", "stepRange") +TEST_VALUES = 20110225, 0 +SELECTION_DICTIONARY = {} +for i1 in range(len(TEST_KEYS)): + SELECTION_DICTIONARY[TEST_KEYS[i1]] = TEST_VALUES[i1] +TEST_INDEX_OUTPUT = TESTGRIB +TEST_STEPRANGE = ('0', '12', '18', '24', '6') +# These keys should be available even if new keys are defined +KNOWN_GRIB_KEYS = ['7777', 'GRIBEditionNumber', 'N', 'NV', + 'Ni', 'Nj', 'PLPresent', 'PVPresent', 'addEmptySection2', + 'addExtraLocalSection', 'alternativeRowScanning', + 'angleDivisor', 'angleSubdivisions', + 'average', 'backgroundProcess', 'basicAngleOfTheInitialProductionDomain', + 'binaryScaleFactor', 'bitMapIndicator', 'bitmapPresent', + 'bitsPerValue', 'bottomLevel', 'centre', + 'centreDescription', 'cfName', 'cfNameECMF', 'cfVarName', + 'cfVarNameECMF', 'changeDecimalPrecision', 'class', + 'climateDateFrom', 'climateDateTo', 'codedValues', + 'dataDate', 'dataRepresentationTemplateNumber', 'dataTime', + 'day', 'decimalPrecision', 'decimalScaleFactor', + 'deleteCalendarId', 'deleteExtraLocalSection', 'deletePV', + 'discipline', 'distinctLatitudes', 'distinctLongitudes', + 'editionNumber', 'endStep', 'eps', + 'experimentVersionNumber', 'extraLocalSectionPresent', + 'forecastTime', 'g2grid', 'gaussianGridName', + 'genVertHeightCoords', 'generatingProcessIdentifier', + 'getNumberOfValues', 'global', 'globalDomain', + 'grib2LocalSectionNumber', 'grib2LocalSectionPresent', + 'grib2divider', 'gridDefinitionDescription', + 'gridDefinitionTemplateNumber', + 'gridDescriptionSectionPresent', 'gridType', 'hour', + 'hoursAfterDataCutoff', 'iDirectionIncrement', + 'iDirectionIncrementGiven', 'iDirectionIncrementInDegrees', + 'iScansNegatively', 'iScansPositively', 'identifier', + 'ieeeFloats', 'ifsParam', 'ijDirectionIncrementGiven', + 'indicatorOfUnitOfTimeRange', + 'interpretationOfNumberOfPoints', 'isConstant', + 'isHindcast', 'isOctahedral', 'is_uerra', + 'jDirectionIncrementGiven', 'jPointsAreConsecutive', + 'jScansPositively', 'julianDay', 'kurtosis', 'latLonValues', + 'latitudeOfFirstGridPoint', 'latitudeOfFirstGridPointInDegrees', + 'latitudeOfLastGridPoint', 'latitudeOfLastGridPointInDegrees', 'latitudes', + 'legBaseDate', 'legBaseTime', 'legNumber', + 'lengthOfHeaders', 'level', 'localDefinitionNumber', + 'localDir', 'localTablesVersion', + 'longitudeOfFirstGridPoint', 'longitudeOfFirstGridPointInDegrees', + 'longitudeOfLastGridPoint', 'longitudeOfLastGridPointInDegrees', 'longitudes', + 'mAngleMultiplier', 'mBasicAngle', 'marsClass', + 'marsStream', 'marsType', 'masterDir', 'maximum', + 'md5Headers', 'md5Section1', 'md5Section3', 'md5Section4', + 'md5Section5', 'md5Section6', 'md5Section7', 'minimum', + 'minute', 'minutesAfterDataCutoff', 'missingValue', + 'modelName', 'month', 'name', 'nameECMF', + 'nameOfFirstFixedSurface', 'nameOfSecondFixedSurface', + 'neitherPresent', 'numberOfDataPoints', + 'numberOfForecastsInEnsemble', 'numberOfMissing', + 'numberOfOctectsForNumberOfPoints', 'numberOfSection', + 'numberOfValues', 'oceanAtmosphereCoupling', + 'offsetValuesBy', 'optimizeScaleFactor', 'packingError', + 'packingType', 'paramId', 'paramIdECMF', + 'parameterCategory', 'parameterName', 'parameterNumber', + 'parameterUnits', 'perturbationNumber', 'pressureUnits', + 'productDefinitionTemplateNumber', + 'productDefinitionTemplateNumberInternal', 'productType', + 'productionStatusOfProcessedData', 'radius', + 'referenceDate', 'referenceValue', 'referenceValueError', + 'resolutionAndComponentFlags', 'resolutionAndComponentFlags1', + 'resolutionAndComponentFlags2', 'resolutionAndComponentFlags6', + 'resolutionAndComponentFlags7', 'resolutionAndComponentFlags8', + 'scaleFactorOfEarthMajorAxis', 'scaleFactorOfEarthMinorAxis', + 'scaleFactorOfFirstFixedSurface', 'scaleFactorOfRadiusOfSphericalEarth', + 'scaleFactorOfSecondFixedSurface', 'scaleValuesBy', + 'scaledValueOfEarthMajorAxis', 'scaledValueOfEarthMinorAxis', + 'scaledValueOfFirstFixedSurface', 'scaledValueOfRadiusOfSphericalEarth', + 'scaledValueOfSecondFixedSurface', 'scanningMode', + 'scanningMode5', 'scanningMode6', 'scanningMode7', + 'scanningMode8', 'second', 'section0Length', + 'section1Length', 'section2Length', 'section2Padding', + 'section3Length', 'section3Padding', 'section4Length', + 'section5Length', 'section6Length', 'section7Length', + 'section8Length', 'sectionNumber', 'selectStepTemplateInstant', 'selectStepTemplateInterval', + 'setBitsPerValue', 'setCalendarId', 'shapeOfTheEarth', + 'shortName', 'shortNameECMF', 'significanceOfReferenceTime', + 'skewness', 'sourceOfGridDefinition', 'standardDeviation', + 'startStep', 'stepRange', 'stepType', 'stepTypeInternal', + 'stepUnits', 'stream', 'subCentre', + 'subdivisionsOfBasicAngle', 'tablesVersion', + 'tablesVersionLatest', 'tempPressureUnits', 'topLevel', + 'totalLength', 'type', 'typeOfEnsembleForecast', + 'typeOfFirstFixedSurface', 'typeOfGeneratingProcess', + 'typeOfLevel', 'typeOfOriginalFieldValues', + 'typeOfProcessedData', 'typeOfSecondFixedSurface', 'units', + 'unitsECMF', 'unitsOfFirstFixedSurface', + 'unitsOfSecondFixedSurface', 'unpackedError', + 'uvRelativeToGrid', 'validityDate', 'validityTime', + 'values', 'year'] + + +class TestGribFile(unittest.TestCase): + """Test GribFile functionality.""" + + def test_memory_management(self): + """Messages in GribFile can be opened and closed properly.""" + with GribFile(TESTGRIB) as grib_file: + self.assertEqual(len(grib_file), 5) + for i in range(len(grib_file)): + msg = GribMessage(grib_file) + self.assertEqual(msg["shortName"], "msl") + self.assertEqual(msg['count'], i + 1) + self.assertEqual(len(grib_file.open_messages), 5) + self.assertEqual(len(grib_file.open_messages), 0) + + def test_message_counting_works(self): + """The GribFile is aware of its messages.""" + with GribFile(TESTGRIB) as grib_file: + msg_count = len(grib_file) + self.assertEqual(msg_count, 5) + + def test_iterator_protocol(self): + """The GribFile allows pythonic iteration over all messages.""" + step_ranges = [] + with GribFile(TESTGRIB) as grib_file: + for msg in grib_file: + step_ranges.append(msg["stepRange"]) + self.assertSequenceEqual(step_ranges, ["0", "6", "12", "18", "24"]) + + def test_read_past_last_message(self): + """Trying to open message on exhausted GRIB file raises IOError.""" + with GribFile(TESTGRIB) as grib_file: + for _ in range(len(grib_file)): + GribMessage(grib_file) + self.assertRaises(IOError, lambda: GribMessage(grib_file)) + + def test_read_invalid_file(self): + """Trying to open message on nonexistent GRIB file raises IOError.""" + with NamedTemporaryFile(mode='r') as f: + with GribFile(f.name) as grib_file: + self.assertRaises(IOError, lambda: GribMessage(grib_file)) + + +class TestGribMessage(unittest.TestCase): + """Test GribMessage functionality.""" + + def test_metadata(self): + """Metadata is read correctly from GribMessage.""" + with GribFile(TESTGRIB) as grib_file: + msg = GribMessage(grib_file) + msg_keys = list(msg.keys()) + for key in KNOWN_GRIB_KEYS: + assert key in msg_keys, "key '%s' not found" % key + # Size of message in bytes + self.assertEqual(msg.size(), 160219) + self.assertEqual(len(list(msg.keys())), len(msg)) + + def test_missing_message_behaviour(self): + """Key with MISSING value.""" + with GribFile(TESTGRIB) as grib_file: + msg = GribMessage(grib_file) + self.assertTrue(msg.missing("scaleFactorOfSecondFixedSurface")) + msg["scaleFactorOfSecondFixedSurface"] = 5 + msg.set_missing("scaleFactorOfSecondFixedSurface") + # with self.assertRaises(KeyError): + # msg["scaleFactorOfSecondFixedSurface"] + + def test_value_setting(self): + """Keys can be set properly.""" + with GribFile(TESTGRIB) as grib_file: + msg = GribMessage(grib_file) + msg["scaleFactorOfSecondFixedSurface"] = 5 + msg["values"] = [1, 2, 3] + self.assertEqual(msg['scaleFactorOfSecondFixedSurface'], 5) + + def test_multi_value_setting(self): + """Multiple keys/values can be set properly.""" + msg = GribMessage(sample='GRIB1') + msg['paramId', 'stepType', 'edition'] = 49, 'avg', 2 + self.assertEqual(msg['shortName'], '10fg') + # Another test + with GribFile(TESTGRIB) as grib_file: + msg = GribMessage(grib_file) + msg['setLocalDefinition', 'localDefinitionNumber'] = 1, 25 + msg['typeOfFirstFixedSurface', 'typeOfSecondFixedSurface'] = 1, 8 + msg[('typeOfFirstFixedSurface', 'typeOfSecondFixedSurface')] = (1, 8) # Also works + self.assertEqual(msg['localDefinitionNumber'], 25) + self.assertEqual(msg['typeOfLevel'], 'entireAtmosphere') + + def test_serialize(self): + """Message can be serialized to file.""" + with GribFile(TESTGRIB) as grib_file: + msg = GribMessage(grib_file) + with open(TEST_OUTPUT, "wb") as test: + msg.write(test) + os.unlink(TEST_OUTPUT) + + def test_clone(self): + """Messages can be used to produce clone Messages.""" + with GribFile(TESTGRIB) as grib_file: + msg = GribMessage(grib_file) + msg2 = GribMessage(clone=msg) + self.assertSequenceEqual(list(msg.keys()), list(msg2.keys())) + + +class TestGribIndex(unittest.TestCase): + """Test GribIndex functionality.""" + + def test_memory_management(self): + """GribIndex closes GribMessages properly.""" + with GribIndex(TESTGRIB, TEST_KEYS) as idx: + idx.select(SELECTION_DICTIONARY) + self.assertEqual(len(idx.open_messages), 1) + self.assertEqual(len(idx.open_messages), 0) + + def test_create_and_serialize_index(self): + """GribIndex can be saved to file, file can be added to index.""" + with GribIndex(TESTGRIB, TEST_KEYS) as idx: + idx.write(TEST_INDEX) + with GribIndex(file_index=TEST_INDEX) as idx: + idx.add(TESTGRIB) + os.unlink(TEST_INDEX) + + def test_index_comprehension(self): + """GribIndex understands underlying GRIB index properly.""" + with GribIndex(TESTGRIB, TEST_KEYS) as idx: + self.assertEqual(idx.size(TEST_KEYS[1]), 5) + self.assertSequenceEqual(idx.values(TEST_KEYS[1]), TEST_STEPRANGE) + with self.assertRaises(IndexNotSelectedError): + # Note: The following will issue a message to stderr: + # ECCODES ERROR : please select a value for index key "dataDate" + # This is expected behaviour + idx.select({TEST_KEYS[1]: TEST_VALUES[0]}) + # Now it will be OK as we have selected all necessary keys + idx.select(SELECTION_DICTIONARY) + self.assertEqual(len(idx.open_messages), 1) + + + + +if __name__ == "__main__": + unittest.main() From 6c1d07d04da6c2466112b3456387df49244e91ef Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 20 Oct 2020 21:30:54 +0100 Subject: [PATCH 102/683] Do not allow both GRIB and BUFR support to be disabled --- CMakeLists.txt | 3 + examples/python/high_level_api.py | 448 ------------------------------ memfs.py | 2 +- 3 files changed, 4 insertions(+), 449 deletions(-) delete mode 100644 examples/python/high_level_api.py diff --git a/CMakeLists.txt b/CMakeLists.txt index f37c3c67c..174427651 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -69,6 +69,9 @@ ecbuild_add_option( FEATURE PRODUCT_GRIB ecbuild_add_option( FEATURE PRODUCT_BUFR DESCRIPTION "Support for the product BUFR" DEFAULT ON ) +if( NOT HAVE_PRODUCT_GRIB AND NOT HAVE_PRODUCT_BUFR ) + ecbuild_critical("Cannot disable both GRIB and BUFR! Please specify just one option") +endif() ecbuild_add_option( FEATURE EXAMPLES DESCRIPTION "Build the examples" diff --git a/examples/python/high_level_api.py b/examples/python/high_level_api.py deleted file mode 100644 index 7ed9eeae2..000000000 --- a/examples/python/high_level_api.py +++ /dev/null @@ -1,448 +0,0 @@ -#!/bin/env python - -""" -Unit tests for high level Python interface. - -Author: Daniel Lee, DWD, 2016 -""" - -import os -from tempfile import NamedTemporaryFile -import unittest - -from eccodes import GribFile -from eccodes import GribIndex -from eccodes import GribMessage -from eccodes.high_level.gribmessage import IndexNotSelectedError -from eccodes import BufrFile, BufrMessage - -TESTGRIB = "../../data/high_level_api.grib2" -TESTBUFR = "../../data/bufr/syno_multi.bufr" -TEST_OUTPUT = "test-output.codes" -TEST_INDEX = "test.index" -TEST_KEYS = ("dataDate", "stepRange") -TEST_VALUES = 20110225, 0 -SELECTION_DICTIONARY = {} -for i1 in range(len(TEST_KEYS)): - SELECTION_DICTIONARY[TEST_KEYS[i1]] = TEST_VALUES[i1] -TEST_INDEX_OUTPUT = TESTGRIB -TEST_STEPRANGE = ('0', '12', '18', '24', '6') -# These keys should be available even if new keys are defined -KNOWN_GRIB_KEYS = ['7777', 'GRIBEditionNumber', 'N', 'NV', - 'Ni', 'Nj', 'PLPresent', 'PVPresent', 'addEmptySection2', - 'addExtraLocalSection', 'alternativeRowScanning', - 'angleDivisor', 'angleSubdivisions', - 'average', 'backgroundProcess', 'basicAngleOfTheInitialProductionDomain', - 'binaryScaleFactor', 'bitMapIndicator', 'bitmapPresent', - 'bitsPerValue', 'bottomLevel', 'centre', - 'centreDescription', 'cfName', 'cfNameECMF', 'cfVarName', - 'cfVarNameECMF', 'changeDecimalPrecision', 'class', - 'climateDateFrom', 'climateDateTo', 'codedValues', - 'dataDate', 'dataRepresentationTemplateNumber', 'dataTime', - 'day', 'decimalPrecision', 'decimalScaleFactor', - 'deleteCalendarId', 'deleteExtraLocalSection', 'deletePV', - 'discipline', 'distinctLatitudes', 'distinctLongitudes', - 'editionNumber', 'endStep', 'eps', - 'experimentVersionNumber', 'extraLocalSectionPresent', - 'forecastTime', 'g2grid', 'gaussianGridName', - 'genVertHeightCoords', 'generatingProcessIdentifier', - 'getNumberOfValues', 'global', 'globalDomain', - 'grib2LocalSectionNumber', 'grib2LocalSectionPresent', - 'grib2divider', 'gridDefinitionDescription', - 'gridDefinitionTemplateNumber', - 'gridDescriptionSectionPresent', 'gridType', 'hour', - 'hoursAfterDataCutoff', 'iDirectionIncrement', - 'iDirectionIncrementGiven', 'iDirectionIncrementInDegrees', - 'iScansNegatively', 'iScansPositively', 'identifier', - 'ieeeFloats', 'ifsParam', 'ijDirectionIncrementGiven', - 'indicatorOfUnitOfTimeRange', - 'interpretationOfNumberOfPoints', 'isConstant', - 'isHindcast', 'isOctahedral', 'is_uerra', - 'jDirectionIncrementGiven', 'jPointsAreConsecutive', - 'jScansPositively', 'julianDay', 'kurtosis', 'latLonValues', - 'latitudeOfFirstGridPoint', 'latitudeOfFirstGridPointInDegrees', - 'latitudeOfLastGridPoint', 'latitudeOfLastGridPointInDegrees', 'latitudes', - 'legBaseDate', 'legBaseTime', 'legNumber', - 'lengthOfHeaders', 'level', 'localDefinitionNumber', - 'localDir', 'localTablesVersion', - 'longitudeOfFirstGridPoint', 'longitudeOfFirstGridPointInDegrees', - 'longitudeOfLastGridPoint', 'longitudeOfLastGridPointInDegrees', 'longitudes', - 'mAngleMultiplier', 'mBasicAngle', 'marsClass', - 'marsStream', 'marsType', 'masterDir', 'maximum', - 'md5Headers', 'md5Section1', 'md5Section3', 'md5Section4', - 'md5Section5', 'md5Section6', 'md5Section7', 'minimum', - 'minute', 'minutesAfterDataCutoff', 'missingValue', - 'modelName', 'month', 'name', 'nameECMF', - 'nameOfFirstFixedSurface', 'nameOfSecondFixedSurface', - 'neitherPresent', 'numberOfDataPoints', - 'numberOfForecastsInEnsemble', 'numberOfMissing', - 'numberOfOctectsForNumberOfPoints', 'numberOfSection', - 'numberOfValues', 'oceanAtmosphereCoupling', - 'offsetValuesBy', 'optimizeScaleFactor', 'packingError', - 'packingType', 'paramId', 'paramIdECMF', - 'parameterCategory', 'parameterName', 'parameterNumber', - 'parameterUnits', 'perturbationNumber', 'pressureUnits', - 'productDefinitionTemplateNumber', - 'productDefinitionTemplateNumberInternal', 'productType', - 'productionStatusOfProcessedData', 'radius', - 'referenceDate', 'referenceValue', 'referenceValueError', - 'resolutionAndComponentFlags', 'resolutionAndComponentFlags1', - 'resolutionAndComponentFlags2', 'resolutionAndComponentFlags6', - 'resolutionAndComponentFlags7', 'resolutionAndComponentFlags8', - 'scaleFactorOfEarthMajorAxis', 'scaleFactorOfEarthMinorAxis', - 'scaleFactorOfFirstFixedSurface', 'scaleFactorOfRadiusOfSphericalEarth', - 'scaleFactorOfSecondFixedSurface', 'scaleValuesBy', - 'scaledValueOfEarthMajorAxis', 'scaledValueOfEarthMinorAxis', - 'scaledValueOfFirstFixedSurface', 'scaledValueOfRadiusOfSphericalEarth', - 'scaledValueOfSecondFixedSurface', 'scanningMode', - 'scanningMode5', 'scanningMode6', 'scanningMode7', - 'scanningMode8', 'second', 'section0Length', - 'section1Length', 'section2Length', 'section2Padding', - 'section3Length', 'section3Padding', 'section4Length', - 'section5Length', 'section6Length', 'section7Length', - 'section8Length', 'sectionNumber', 'selectStepTemplateInstant', 'selectStepTemplateInterval', - 'setBitsPerValue', 'setCalendarId', 'shapeOfTheEarth', - 'shortName', 'shortNameECMF', 'significanceOfReferenceTime', - 'skewness', 'sourceOfGridDefinition', 'standardDeviation', - 'startStep', 'stepRange', 'stepType', 'stepTypeInternal', - 'stepUnits', 'stream', 'subCentre', - 'subdivisionsOfBasicAngle', 'tablesVersion', - 'tablesVersionLatest', 'tempPressureUnits', 'topLevel', - 'totalLength', 'type', 'typeOfEnsembleForecast', - 'typeOfFirstFixedSurface', 'typeOfGeneratingProcess', - 'typeOfLevel', 'typeOfOriginalFieldValues', - 'typeOfProcessedData', 'typeOfSecondFixedSurface', 'units', - 'unitsECMF', 'unitsOfFirstFixedSurface', - 'unitsOfSecondFixedSurface', 'unpackedError', - 'uvRelativeToGrid', 'validityDate', 'validityTime', - 'values', 'year'] -KNOWN_BUFR_KEYS = ['edition', 'masterTableNumber', 'bufrHeaderSubCentre', 'bufrHeaderCentre', - 'updateSequenceNumber', 'dataCategory', 'dataSubCategory', 'masterTablesVersionNumber', - 'localTablesVersionNumber', 'typicalYearOfCentury', 'typicalMonth', 'typicalDay', - 'typicalHour', 'typicalMinute', 'typicalDate', 'typicalTime', 'rdbType', 'newSubtype', 'rdbtimeDay', - 'rdbtimeHour', 'rdbtimeMinute', 'rdbtimeSecond', 'rectimeDay', 'rectimeHour', 'rectimeMinute', 'rectimeSecond', - 'correction1', 'correction1Part', 'correction2', 'correction2Part', 'correction3', 'correction3Part', - 'correction4', 'correction4Part', 'qualityControl', 'numberOfSubsets', 'localLatitude', - 'localLongitude', 'observedData', 'compressedData', 'unexpandedDescriptors', 'subsetNumber', '#1#blockNumber', - '#1#blockNumber->percentConfidence', '#1#stationNumber', '#1#stationNumber->percentConfidence', - '#1#stationType', '#1#stationType->percentConfidence', '#1#year', '#1#year->percentConfidence', - '#1#month', '#1#month->percentConfidence', '#1#day', '#1#day->percentConfidence', '#1#hour', - '#1#hour->percentConfidence', '#1#minute', '#1#minute->percentConfidence', '#1#latitude', - '#1#latitude->percentConfidence', '#1#longitude', '#1#longitude->percentConfidence', - '#1#heightOfStation', '#1#heightOfStation->percentConfidence', '#1#nonCoordinatePressure', - '#1#nonCoordinatePressure->percentConfidence', '#1#pressureReducedToMeanSeaLevel', - '#1#pressureReducedToMeanSeaLevel->percentConfidence', '#1#3HourPressureChange', - '#1#3HourPressureChange->percentConfidence', '#1#characteristicOfPressureTendency', - '#1#characteristicOfPressureTendency->percentConfidence', '#1#windDirectionAt10M', - '#1#windDirectionAt10M->percentConfidence', '#1#windSpeedAt10M', - '#1#windSpeedAt10M->percentConfidence', - '#1#airTemperatureAt2M', '#1#airTemperatureAt2M->percentConfidence', '#1#dewpointTemperatureAt2M', - '#1#dewpointTemperatureAt2M->percentConfidence', '#1#relativeHumidity', - '#1#relativeHumidity->percentConfidence', '#1#horizontalVisibility', - '#1#horizontalVisibility->percentConfidence', '#1#presentWeather', - '#1#presentWeather->percentConfidence', '#1#pastWeather1', '#1#pastWeather1->percentConfidence', - '#1#pastWeather2', '#1#pastWeather2->percentConfidence', '#1#cloudCoverTotal', - '#1#cloudCoverTotal->percentConfidence', '#1#verticalSignificanceSurfaceObservations', - '#1#verticalSignificanceSurfaceObservations->percentConfidence', '#1#cloudAmount', - '#1#cloudAmount->percentConfidence', '#1#heightOfBaseOfCloud', - '#1#heightOfBaseOfCloud->percentConfidence', '#1#cloudType', '#1#cloudType->percentConfidence', - '#2#cloudType', '#2#cloudType->percentConfidence', '#3#cloudType', '#3#cloudType->percentConfidence', - '#2#verticalSignificanceSurfaceObservations', - '#2#verticalSignificanceSurfaceObservations->percentConfidence', - '#2#cloudAmount', '#2#cloudAmount->percentConfidence', '#4#cloudType', - '#4#cloudType->percentConfidence', '#2#heightOfBaseOfCloud', - '#2#heightOfBaseOfCloud->percentConfidence', - '#3#verticalSignificanceSurfaceObservations', - '#3#verticalSignificanceSurfaceObservations->percentConfidence', - '#3#cloudAmount', '#3#cloudAmount->percentConfidence', '#5#cloudType', - '#5#cloudType->percentConfidence', - '#3#heightOfBaseOfCloud', '#3#heightOfBaseOfCloud->percentConfidence', - '#4#verticalSignificanceSurfaceObservations', - '#4#verticalSignificanceSurfaceObservations->percentConfidence', '#4#cloudAmount', - '#4#cloudAmount->percentConfidence', - '#6#cloudType', '#6#cloudType->percentConfidence', '#4#heightOfBaseOfCloud', - '#4#heightOfBaseOfCloud->percentConfidence', - '#5#verticalSignificanceSurfaceObservations', - '#5#verticalSignificanceSurfaceObservations->percentConfidence', '#5#cloudAmount', - '#5#cloudAmount->percentConfidence', '#7#cloudType', '#7#cloudType->percentConfidence', - '#5#heightOfBaseOfCloud', - '#5#heightOfBaseOfCloud->percentConfidence', '#1#totalPrecipitationPast6Hours', - '#1#totalPrecipitationPast6Hours->percentConfidence', '#1#totalSnowDepth', - '#1#totalSnowDepth->percentConfidence', - '#1#centre', '#1#generatingApplication'] - - -class TestGribFile(unittest.TestCase): - """Test GribFile functionality.""" - - def test_memory_management(self): - """Messages in GribFile can be opened and closed properly.""" - with GribFile(TESTGRIB) as grib_file: - self.assertEqual(len(grib_file), 5) - for i in range(len(grib_file)): - msg = GribMessage(grib_file) - self.assertEqual(msg["shortName"], "msl") - self.assertEqual(msg['count'], i + 1) - self.assertEqual(len(grib_file.open_messages), 5) - self.assertEqual(len(grib_file.open_messages), 0) - - def test_message_counting_works(self): - """The GribFile is aware of its messages.""" - with GribFile(TESTGRIB) as grib_file: - msg_count = len(grib_file) - self.assertEqual(msg_count, 5) - - def test_iterator_protocol(self): - """The GribFile allows pythonic iteration over all messages.""" - step_ranges = [] - with GribFile(TESTGRIB) as grib_file: - for msg in grib_file: - step_ranges.append(msg["stepRange"]) - self.assertSequenceEqual(step_ranges, ["0", "6", "12", "18", "24"]) - - def test_read_past_last_message(self): - """Trying to open message on exhausted GRIB file raises IOError.""" - with GribFile(TESTGRIB) as grib_file: - for _ in range(len(grib_file)): - GribMessage(grib_file) - self.assertRaises(IOError, lambda: GribMessage(grib_file)) - - def test_read_invalid_file(self): - """Trying to open message on nonexistent GRIB file raises IOError.""" - with NamedTemporaryFile(mode='r') as f: - with GribFile(f.name) as grib_file: - self.assertRaises(IOError, lambda: GribMessage(grib_file)) - - -class TestGribMessage(unittest.TestCase): - """Test GribMessage functionality.""" - - def test_metadata(self): - """Metadata is read correctly from GribMessage.""" - with GribFile(TESTGRIB) as grib_file: - msg = GribMessage(grib_file) - msg_keys = list(msg.keys()) - for key in KNOWN_GRIB_KEYS: - assert key in msg_keys, "key '%s' not found" % key - # Size of message in bytes - self.assertEqual(msg.size(), 160219) - self.assertEqual(len(list(msg.keys())), len(msg)) - - def test_missing_message_behaviour(self): - """Key with MISSING value.""" - with GribFile(TESTGRIB) as grib_file: - msg = GribMessage(grib_file) - self.assertTrue(msg.missing("scaleFactorOfSecondFixedSurface")) - msg["scaleFactorOfSecondFixedSurface"] = 5 - msg.set_missing("scaleFactorOfSecondFixedSurface") - # with self.assertRaises(KeyError): - # msg["scaleFactorOfSecondFixedSurface"] - - def test_value_setting(self): - """Keys can be set properly.""" - with GribFile(TESTGRIB) as grib_file: - msg = GribMessage(grib_file) - msg["scaleFactorOfSecondFixedSurface"] = 5 - msg["values"] = [1, 2, 3] - self.assertEqual(msg['scaleFactorOfSecondFixedSurface'], 5) - - def test_multi_value_setting(self): - """Multiple keys/values can be set properly.""" - msg = GribMessage(sample='GRIB1') - msg['paramId', 'stepType', 'edition'] = 49, 'avg', 2 - self.assertEqual(msg['shortName'], '10fg') - # Another test - with GribFile(TESTGRIB) as grib_file: - msg = GribMessage(grib_file) - msg['setLocalDefinition', 'localDefinitionNumber'] = 1, 25 - msg['typeOfFirstFixedSurface', 'typeOfSecondFixedSurface'] = 1, 8 - msg[('typeOfFirstFixedSurface', 'typeOfSecondFixedSurface')] = (1, 8) # Also works - self.assertEqual(msg['localDefinitionNumber'], 25) - self.assertEqual(msg['typeOfLevel'], 'entireAtmosphere') - - def test_serialize(self): - """Message can be serialized to file.""" - with GribFile(TESTGRIB) as grib_file: - msg = GribMessage(grib_file) - with open(TEST_OUTPUT, "wb") as test: - msg.write(test) - os.unlink(TEST_OUTPUT) - - def test_clone(self): - """Messages can be used to produce clone Messages.""" - with GribFile(TESTGRIB) as grib_file: - msg = GribMessage(grib_file) - msg2 = GribMessage(clone=msg) - self.assertSequenceEqual(list(msg.keys()), list(msg2.keys())) - - -class TestGribIndex(unittest.TestCase): - """Test GribIndex functionality.""" - - def test_memory_management(self): - """GribIndex closes GribMessages properly.""" - with GribIndex(TESTGRIB, TEST_KEYS) as idx: - idx.select(SELECTION_DICTIONARY) - self.assertEqual(len(idx.open_messages), 1) - self.assertEqual(len(idx.open_messages), 0) - - def test_create_and_serialize_index(self): - """GribIndex can be saved to file, file can be added to index.""" - with GribIndex(TESTGRIB, TEST_KEYS) as idx: - idx.write(TEST_INDEX) - with GribIndex(file_index=TEST_INDEX) as idx: - idx.add(TESTGRIB) - os.unlink(TEST_INDEX) - - def test_index_comprehension(self): - """GribIndex understands underlying GRIB index properly.""" - with GribIndex(TESTGRIB, TEST_KEYS) as idx: - self.assertEqual(idx.size(TEST_KEYS[1]), 5) - self.assertSequenceEqual(idx.values(TEST_KEYS[1]), TEST_STEPRANGE) - with self.assertRaises(IndexNotSelectedError): - # Note: The following will issue a message to stderr: - # ECCODES ERROR : please select a value for index key "dataDate" - # This is expected behaviour - idx.select({TEST_KEYS[1]: TEST_VALUES[0]}) - # Now it will be OK as we have selected all necessary keys - idx.select(SELECTION_DICTIONARY) - self.assertEqual(len(idx.open_messages), 1) - - -class TestBufrFile(unittest.TestCase): - """Test BufrFile functionality.""" - - def test_memory_management(self): - """Messages in BufrFile can be opened and closed properly.""" - with BufrFile(TESTBUFR) as bufr_file: - self.assertEqual(len(bufr_file), 3) - for i in range(len(bufr_file)): - msg = BufrMessage(bufr_file) - self.assertEqual(msg["bufrHeaderCentre"], 98) - self.assertEqual(msg['count'], i + 1) - self.assertEqual(len(bufr_file.open_messages), 3) - self.assertEqual(len(bufr_file.open_messages), 0) - - def test_message_counting_works(self): - """The BufrFile is aware of its messages.""" - with BufrFile(TESTBUFR) as bufr_file: - msg_count = len(bufr_file) - self.assertEqual(msg_count, 3) - - def test_iterator_protocol(self): - """The BufrFile allows pythonic iteration over all messages.""" - latitudes = [] - with BufrFile(TESTBUFR) as bufr_file: - for msg in bufr_file: - latitudes.append(msg["localLatitude"]) - self.assertSequenceEqual(latitudes, [70.93, 77, 78.92]) - - def test_read_past_last_message(self): - """Trying to open message on exhausted BUFR file raises IOError.""" - with BufrFile(TESTBUFR) as bufr_file: - for _ in range(len(bufr_file)): - BufrMessage(bufr_file) - self.assertRaises(IOError, lambda: BufrMessage(bufr_file)) - - def test_read_invalid_file(self): - """Trying to open message on nonexistent file raises IOError.""" - with NamedTemporaryFile(mode='r') as f: - with BufrFile(f.name) as bufr_file: - self.assertRaises(IOError, lambda: BufrMessage(bufr_file)) - - -class TestBufrMessage(unittest.TestCase): - """Test BufrMessage functionality""" - - def test_metadata(self): - """Metadata is read correctly from BufrMessage.""" - with BufrFile(TESTBUFR) as bufr_file: - msg = BufrMessage(bufr_file) - msg.unpack() - msg_keys = list(msg.keys()) - self.assertEqual(len(msg_keys), 202) - for key in KNOWN_BUFR_KEYS: - assert key in msg_keys - # Size of message in bytes - self.assertEqual(msg.size(), 220) - self.assertEqual(len(list(msg.keys())), len(msg)) - - def test_content(self): - """Data values are read correctly from BufrMessage.""" - with BufrFile(TESTBUFR) as bufr_file: - msg = BufrMessage(bufr_file) - msg.unpack() - self.assertEqual(msg["airTemperatureAt2M"], 274.5) - - # TODO: Test behaviour with missing messages (SUP-1874) - - def test_value_setting(self): - """Keys can be set properly.""" - with BufrFile(TESTBUFR) as bufr_file: - msg = BufrMessage(bufr_file) - key, val = "localLongitude", 5 - msg[key] = val - self.assertEqual(msg[key], val) - - def test_serialize(self): - """Message can be serialized to file.""" - with BufrFile(TESTBUFR) as bufr_file: - msg = BufrMessage(bufr_file) - with open(TEST_OUTPUT, "wb") as test: - msg.write(test) - os.unlink(TEST_OUTPUT) - - def test_clone(self): - """Messages can be used to produce clone Messages.""" - with BufrFile(TESTBUFR) as bufr_file: - msg = BufrMessage(bufr_file) - msg2 = BufrMessage(clone=msg) - self.assertSequenceEqual(list(msg.keys()), list(msg2.keys())) - - def test_copy_data(self): - """Can copy data section from one message to another""" - bufr = BufrMessage(sample='BUFR3') - with BufrFile('../../data/bufr/metar_with_2_bias.bufr') as bufr_file: - bufrin = BufrMessage(bufr_file) - ivalues = ( - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 0) - bufr['inputDataPresentIndicator'] = ivalues - bufr['edition'] = 3 - bufr['masterTableNumber'] = 0 - bufr['bufrHeaderSubCentre'] = 0 - bufr['bufrHeaderCentre'] = 98 - bufr['updateSequenceNumber'] = 1 - bufr['dataCategory'] = 0 - bufr['dataSubCategory'] = 140 - bufr['masterTablesVersionNumber'] = 13 - bufr['localTablesVersionNumber'] = 1 - bufr['typicalYearOfCentury'] = 15 - bufr['typicalMonth'] = 5 - bufr['typicalDay'] = 4 - bufr['typicalHour'] = 9 - bufr['typicalMinute'] = 30 - bufr['numberOfSubsets'] = 1 - bufr['observedData'] = 1 - bufr['compressedData'] = 0 - ivalues = ( - 307011, 7006, 10004, 222000, 101023, 31031, 1031, 1032, 101023, 33007, - 225000, 236000, 101023, 31031, 1031, 1032, 8024, 101001, 225255, 225000, - 236000, 101023, 31031, 1031, 1032, 8024, 101001, 225255, - 1063, 2001, 4001, 4002, 4003, 4004, 4005, 5002, - 6002, 7001, 7006, 11001, 11016, 11017, 11002) - bufr['unexpandedDescriptors'] = ivalues - bufrin.unpack() - bufrin.copy_data(bufr) - with open(TEST_OUTPUT, 'wb') as test: - bufr.write(test) - os.unlink(TEST_OUTPUT) - - -if __name__ == "__main__": - unittest.main() diff --git a/memfs.py b/memfs.py index f869b3280..2b9174e62 100755 --- a/memfs.py +++ b/memfs.py @@ -125,7 +125,7 @@ if buffer is not None: # See memfs/CMakeLists.txt assert fcount == EXPECTED_FCOUNT, fcount opath = output_file_base + "_final.c" -print("MEMFS: Generating output: ", opath) +print("MEMFS: Generating output:", opath) g = open(opath, "w") print( From df478533ecb838e0d3387f3be73cd01ba7efc560 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 20 Oct 2020 22:33:54 +0100 Subject: [PATCH 103/683] Add missing entry --- definitions/Makefile.am | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/definitions/Makefile.am b/definitions/Makefile.am index 3776a97cd..8fc0853bd 100644 --- a/definitions/Makefile.am +++ b/definitions/Makefile.am @@ -8,6 +8,7 @@ dist_definitions_DATA = \ ./installDefinitions.sh\ ./mars_param.table\ ./param_id.table\ + ./param_limits.def\ ./parameters_version.def\ ./publish_new_parameters.sh\ ./stepUnits.table @@ -19282,10 +19283,6 @@ dist_definitionsmetar_DATA = \ metar/wind_shear.def\ metar/wrong_delayed.def -definitionsmetar_stationsdir = @ECCODES_DEFINITION_PATH@/metar/stations -dist_definitionsmetar_stations_DATA = \ - metar/stations/nsd_cccc.txt - definitionstafdir = @ECCODES_DEFINITION_PATH@/taf dist_definitionstaf_DATA = \ taf/CCCC.txt\ From 50603f2de660fe35143881472a4df72be51404f9 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 21 Oct 2020 11:53:03 +0100 Subject: [PATCH 104/683] Clean up: push down all experimental stuff into a separate dir --- CMakeLists.txt | 4 ++-- .../gaussian_experimental}/gaussian.c | 0 .../gaussian_experimental}/gaussian.h | 0 .../gaussian_experimental}/grib_rgauss.h | 0 .../gaussian_experimental}/rg/grib_rgauss.h | 0 .../gaussian_experimental}/rg/grib_rgauss_032.h | 0 .../gaussian_experimental}/rg/grib_rgauss_048.h | 0 .../gaussian_experimental}/rg/grib_rgauss_080.h | 0 .../gaussian_experimental}/rg/grib_rgauss_1024.h | 0 .../gaussian_experimental}/rg/grib_rgauss_128.h | 0 .../gaussian_experimental}/rg/grib_rgauss_160.h | 0 .../gaussian_experimental}/rg/grib_rgauss_200.h | 0 .../gaussian_experimental}/rg/grib_rgauss_256.h | 0 .../gaussian_experimental}/rg/grib_rgauss_320.h | 0 .../gaussian_experimental}/rg/grib_rgauss_400.h | 0 .../gaussian_experimental}/rg/grib_rgauss_512.h | 0 .../rg/no_rgauss_080_19940113.h | 0 .../rg/no_rgauss_080_19980130.h | 0 .../rg/no_rgauss_160_19931222.h | 0 .../gaussian_experimental}/rg/rgauss2c.ksh | 0 .../gaussian_experimental}/rg/rgauss_032.h | 0 .../gaussian_experimental}/rg/rgauss_048.h | 0 .../gaussian_experimental}/rg/rgauss_080.h | 0 .../gaussian_experimental}/rg/rgauss_1024.h | 0 .../gaussian_experimental}/rg/rgauss_128.h | 0 .../gaussian_experimental}/rg/rgauss_160.h | 0 .../gaussian_experimental}/rg/rgauss_200.h | 0 .../gaussian_experimental}/rg/rgauss_256.h | 0 .../gaussian_experimental}/rg/rgauss_320.h | 0 .../gaussian_experimental}/rg/rgauss_400.h | 0 .../gaussian_experimental}/rg/rgauss_512.h | 0 {gribex => experimental/gribex}/grib_api_count.c | 0 {gribex => experimental/gribex}/gribex_check.ksh | 0 .../gribex}/gribex_check_nofail.ksh | 0 {gribex => experimental/gribex}/gribex_count.F | 0 {gribex => experimental/gribex}/gribex_count.ksh | 0 .../java}/gribview/src/gribview/BevelArrowIcon.java | 0 .../java}/gribview/src/gribview/BlankIcon.java | 0 .../java}/gribview/src/gribview/GribAnimator.java | 0 .../java}/gribview/src/gribview/GribHandleSet.java | 0 .../java}/gribview/src/gribview/GribMainFrame.java | 0 .../java}/gribview/src/gribview/GribRenderPane.java | 0 .../java}/gribview/src/gribview/GribView.java | 0 .../gribview/src/gribview/GribViewAboutBox.java | 0 .../gribview/src/gribview/JGribEditComponent.java | 0 .../java}/gribview/src/gribview/JGribMarker.java | 0 .../java}/gribview/src/gribview/JGribToolBar.java | 0 .../java}/gribview/src/gribview/JGribTreeNode.java | 0 .../src/gribview/JGribViewDescriptorProducer.java | 0 .../src/gribview/JGribViewEditionNodeProducer.java | 0 .../gribview/src/gribview/SortButtonRenderer.java | 0 .../java}/jgribapi/src/jgribapi/GribDump.java | 0 .../java}/jgribapi/src/jgribapi/GribFile.java | 0 .../java}/jgribapi/src/jgribapi/GribHandle.java | 0 .../java}/jgribapi/src/jgribapi/GribIterator.java | 0 .../java}/jgribapi/src/jgribapi/GribKey.java | 0 .../java}/jgribapi/src/jgribapi/GribPoint.java | 0 .../jgribapi/src/jgribapi/JGribObjectProducer.java | 0 .../make_dist_definitions | 0 .../parameters}/feed_metdb.pl | 0 .../parameters}/feed_tigge.pl | 0 .../parameters}/grib1_def.pl | 0 .../parameters}/human_readable.pl | 0 {parameters => experimental/parameters}/master.info | 0 {parameters => experimental/parameters}/report.pl | 0 {parameters => experimental/parameters}/tigge.pm | 0 .../parameters}/tigge_check.info | 0 .../parameters}/tigge_check.pl | 0 .../parameters}/tigge_def.pl | 0 .../parameters}/tigge_parameters.pl | 0 {perl => experimental/perl}/GRIB-API/API.xs | 0 {perl => experimental/perl}/GRIB-API/Changes | 0 {perl => experimental/perl}/GRIB-API/INSTALL | 0 {perl => experimental/perl}/GRIB-API/MANIFEST | 0 {perl => experimental/perl}/GRIB-API/Makefile.PL.in | 0 {perl => experimental/perl}/GRIB-API/README | 0 {perl => experimental/perl}/GRIB-API/convert.pl | 0 .../perl}/GRIB-API/lib/GRIB/API.pm | 0 .../perl}/GRIB-API/lib/GRIB/API/Debug.pm | 0 .../perl}/GRIB-API/lib/GRIB/API/Tie.pm | 0 {perl => experimental/perl}/GRIB-API/ppport.h | 0 {perl => experimental/perl}/GRIB-API/t/GRIB-API.t | 0 {perl => experimental/perl}/GRIB-API/test.pl | 0 {perl => experimental/perl}/GRIB-API/typemap | 0 {perl => experimental/perl}/Makefile.am | 0 {perl => experimental/perl}/README | 0 {templates => experimental/templates}/GRIB1 | 0 {templates => experimental/templates}/GRIB1.tmpl | Bin {templates => experimental/templates}/GRIB2 | 0 {templates => experimental/templates}/GRIB2.tmpl | Bin {templates => experimental/templates}/Makefile.am | 0 {templates => experimental/templates}/dummy.am | 0 .../templates}/ifs_templates/grib1/gg_ml.tmpl | Bin .../templates}/ifs_templates/grib1/gg_sfc.tmpl | Bin .../templates}/ifs_templates/grib1/sh_ml.tmpl | Bin .../templates}/ifs_templates/grib1/sh_sfc.tmpl | Bin .../ifs_templates/grib1_mlgrib2/gg_ml.tmpl | Bin .../ifs_templates/grib1_mlgrib2/gg_sfc.tmpl | Bin .../ifs_templates/grib1_mlgrib2/sh_ml.tmpl | Bin .../ifs_templates/grib1_mlgrib2/sh_sfc.tmpl | Bin .../templates}/make_ifs_templates.sh | 0 .../templates}/reduced_gg_ml_grib1.tmpl | Bin .../templates}/reduced_gg_ml_grib2.tmpl | Bin .../templates}/reduced_gg_pl_grib1.tmpl | Bin .../templates}/reduced_gg_pl_grib2.tmpl | Bin .../templates}/reduced_gg_sfc_grib1.tmpl | Bin .../templates}/reduced_gg_sfc_grib2.tmpl | Bin .../templates}/reduced_gg_sfc_jpeg_grib2.tmpl | Bin .../templates}/reduced_ll_sfc_grib1.tmpl | Bin .../templates}/reduced_ll_sfc_grib2.tmpl | Bin .../templates}/regular_gg_ml_grib1.tmpl | Bin .../templates}/regular_gg_ml_grib2.tmpl | Bin .../templates}/regular_gg_pl_grib1.tmpl | Bin .../templates}/regular_gg_pl_grib2.tmpl | Bin .../templates}/regular_ll_pl_grib1.tmpl | Bin .../templates}/regular_ll_pl_grib2.tmpl | Bin .../templates}/regular_ll_sfc_grib1.tmpl | Bin .../templates}/regular_ll_sfc_grib2.tmpl | Bin .../templates}/sh_ml_grib1.tmpl | Bin .../templates}/sh_ml_grib2.tmpl | Bin .../templates}/sh_pl_grib1.tmpl | Bin .../templates}/sh_pl_grib2.tmpl | Bin 122 files changed, 2 insertions(+), 2 deletions(-) rename {gaussian_experimental => experimental/gaussian_experimental}/gaussian.c (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/gaussian.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/grib_rgauss.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/grib_rgauss.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/grib_rgauss_032.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/grib_rgauss_048.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/grib_rgauss_080.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/grib_rgauss_1024.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/grib_rgauss_128.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/grib_rgauss_160.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/grib_rgauss_200.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/grib_rgauss_256.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/grib_rgauss_320.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/grib_rgauss_400.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/grib_rgauss_512.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/no_rgauss_080_19940113.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/no_rgauss_080_19980130.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/no_rgauss_160_19931222.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/rgauss2c.ksh (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/rgauss_032.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/rgauss_048.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/rgauss_080.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/rgauss_1024.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/rgauss_128.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/rgauss_160.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/rgauss_200.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/rgauss_256.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/rgauss_320.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/rgauss_400.h (100%) rename {gaussian_experimental => experimental/gaussian_experimental}/rg/rgauss_512.h (100%) rename {gribex => experimental/gribex}/grib_api_count.c (100%) rename {gribex => experimental/gribex}/gribex_check.ksh (100%) rename {gribex => experimental/gribex}/gribex_check_nofail.ksh (100%) rename {gribex => experimental/gribex}/gribex_count.F (100%) rename {gribex => experimental/gribex}/gribex_count.ksh (100%) rename {java => experimental/java}/gribview/src/gribview/BevelArrowIcon.java (100%) rename {java => experimental/java}/gribview/src/gribview/BlankIcon.java (100%) rename {java => experimental/java}/gribview/src/gribview/GribAnimator.java (100%) rename {java => experimental/java}/gribview/src/gribview/GribHandleSet.java (100%) rename {java => experimental/java}/gribview/src/gribview/GribMainFrame.java (100%) rename {java => experimental/java}/gribview/src/gribview/GribRenderPane.java (100%) rename {java => experimental/java}/gribview/src/gribview/GribView.java (100%) rename {java => experimental/java}/gribview/src/gribview/GribViewAboutBox.java (100%) rename {java => experimental/java}/gribview/src/gribview/JGribEditComponent.java (100%) rename {java => experimental/java}/gribview/src/gribview/JGribMarker.java (100%) rename {java => experimental/java}/gribview/src/gribview/JGribToolBar.java (100%) rename {java => experimental/java}/gribview/src/gribview/JGribTreeNode.java (100%) rename {java => experimental/java}/gribview/src/gribview/JGribViewDescriptorProducer.java (100%) rename {java => experimental/java}/gribview/src/gribview/JGribViewEditionNodeProducer.java (100%) rename {java => experimental/java}/gribview/src/gribview/SortButtonRenderer.java (100%) rename {java => experimental/java}/jgribapi/src/jgribapi/GribDump.java (100%) rename {java => experimental/java}/jgribapi/src/jgribapi/GribFile.java (100%) rename {java => experimental/java}/jgribapi/src/jgribapi/GribHandle.java (100%) rename {java => experimental/java}/jgribapi/src/jgribapi/GribIterator.java (100%) rename {java => experimental/java}/jgribapi/src/jgribapi/GribKey.java (100%) rename {java => experimental/java}/jgribapi/src/jgribapi/GribPoint.java (100%) rename {java => experimental/java}/jgribapi/src/jgribapi/JGribObjectProducer.java (100%) rename make_dist_definitions => experimental/make_dist_definitions (100%) rename {parameters => experimental/parameters}/feed_metdb.pl (100%) rename {parameters => experimental/parameters}/feed_tigge.pl (100%) rename {parameters => experimental/parameters}/grib1_def.pl (100%) rename {parameters => experimental/parameters}/human_readable.pl (100%) rename {parameters => experimental/parameters}/master.info (100%) rename {parameters => experimental/parameters}/report.pl (100%) rename {parameters => experimental/parameters}/tigge.pm (100%) rename {parameters => experimental/parameters}/tigge_check.info (100%) rename {parameters => experimental/parameters}/tigge_check.pl (100%) rename {parameters => experimental/parameters}/tigge_def.pl (100%) rename {parameters => experimental/parameters}/tigge_parameters.pl (100%) rename {perl => experimental/perl}/GRIB-API/API.xs (100%) rename {perl => experimental/perl}/GRIB-API/Changes (100%) rename {perl => experimental/perl}/GRIB-API/INSTALL (100%) rename {perl => experimental/perl}/GRIB-API/MANIFEST (100%) rename {perl => experimental/perl}/GRIB-API/Makefile.PL.in (100%) rename {perl => experimental/perl}/GRIB-API/README (100%) rename {perl => experimental/perl}/GRIB-API/convert.pl (100%) rename {perl => experimental/perl}/GRIB-API/lib/GRIB/API.pm (100%) rename {perl => experimental/perl}/GRIB-API/lib/GRIB/API/Debug.pm (100%) rename {perl => experimental/perl}/GRIB-API/lib/GRIB/API/Tie.pm (100%) rename {perl => experimental/perl}/GRIB-API/ppport.h (100%) rename {perl => experimental/perl}/GRIB-API/t/GRIB-API.t (100%) rename {perl => experimental/perl}/GRIB-API/test.pl (100%) rename {perl => experimental/perl}/GRIB-API/typemap (100%) rename {perl => experimental/perl}/Makefile.am (100%) rename {perl => experimental/perl}/README (100%) rename {templates => experimental/templates}/GRIB1 (100%) rename {templates => experimental/templates}/GRIB1.tmpl (100%) rename {templates => experimental/templates}/GRIB2 (100%) rename {templates => experimental/templates}/GRIB2.tmpl (100%) rename {templates => experimental/templates}/Makefile.am (100%) rename {templates => experimental/templates}/dummy.am (100%) rename {templates => experimental/templates}/ifs_templates/grib1/gg_ml.tmpl (100%) rename {templates => experimental/templates}/ifs_templates/grib1/gg_sfc.tmpl (100%) rename {templates => experimental/templates}/ifs_templates/grib1/sh_ml.tmpl (100%) rename {templates => experimental/templates}/ifs_templates/grib1/sh_sfc.tmpl (100%) rename {templates => experimental/templates}/ifs_templates/grib1_mlgrib2/gg_ml.tmpl (100%) rename {templates => experimental/templates}/ifs_templates/grib1_mlgrib2/gg_sfc.tmpl (100%) rename {templates => experimental/templates}/ifs_templates/grib1_mlgrib2/sh_ml.tmpl (100%) rename {templates => experimental/templates}/ifs_templates/grib1_mlgrib2/sh_sfc.tmpl (100%) rename {templates => experimental/templates}/make_ifs_templates.sh (100%) rename {templates => experimental/templates}/reduced_gg_ml_grib1.tmpl (100%) rename {templates => experimental/templates}/reduced_gg_ml_grib2.tmpl (100%) rename {templates => experimental/templates}/reduced_gg_pl_grib1.tmpl (100%) rename {templates => experimental/templates}/reduced_gg_pl_grib2.tmpl (100%) rename {templates => experimental/templates}/reduced_gg_sfc_grib1.tmpl (100%) rename {templates => experimental/templates}/reduced_gg_sfc_grib2.tmpl (100%) rename {templates => experimental/templates}/reduced_gg_sfc_jpeg_grib2.tmpl (100%) rename {templates => experimental/templates}/reduced_ll_sfc_grib1.tmpl (100%) rename {templates => experimental/templates}/reduced_ll_sfc_grib2.tmpl (100%) rename {templates => experimental/templates}/regular_gg_ml_grib1.tmpl (100%) rename {templates => experimental/templates}/regular_gg_ml_grib2.tmpl (100%) rename {templates => experimental/templates}/regular_gg_pl_grib1.tmpl (100%) rename {templates => experimental/templates}/regular_gg_pl_grib2.tmpl (100%) rename {templates => experimental/templates}/regular_ll_pl_grib1.tmpl (100%) rename {templates => experimental/templates}/regular_ll_pl_grib2.tmpl (100%) rename {templates => experimental/templates}/regular_ll_sfc_grib1.tmpl (100%) rename {templates => experimental/templates}/regular_ll_sfc_grib2.tmpl (100%) rename {templates => experimental/templates}/sh_ml_grib1.tmpl (100%) rename {templates => experimental/templates}/sh_ml_grib2.tmpl (100%) rename {templates => experimental/templates}/sh_pl_grib1.tmpl (100%) rename {templates => experimental/templates}/sh_pl_grib2.tmpl (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 174427651..fb9196b87 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -426,8 +426,8 @@ add_subdirectory( ifs_samples ) # must come after samples # ecbuild_dont_pack( DIRS samples DONT_PACK_REGEX "*.grib" ) ecbuild_dont_pack( DIRS - concepts tests.ecmwf doxygen confluence templates parameters java - perl config m4 rpms gaussian_experimental gribex examples/F77 + experimental doxygen confluence tests/tests.ecmwf + config m4 rpms examples/F77 examples/examples.dev examples/extra examples/deprecated bamboo fortran/fortranCtypes tigge/tools share/eccodes .settings ) #ecbuild_dont_pack( DIRS data/bufr DONT_PACK_REGEX "*.bufr" ) diff --git a/gaussian_experimental/gaussian.c b/experimental/gaussian_experimental/gaussian.c similarity index 100% rename from gaussian_experimental/gaussian.c rename to experimental/gaussian_experimental/gaussian.c diff --git a/gaussian_experimental/gaussian.h b/experimental/gaussian_experimental/gaussian.h similarity index 100% rename from gaussian_experimental/gaussian.h rename to experimental/gaussian_experimental/gaussian.h diff --git a/gaussian_experimental/grib_rgauss.h b/experimental/gaussian_experimental/grib_rgauss.h similarity index 100% rename from gaussian_experimental/grib_rgauss.h rename to experimental/gaussian_experimental/grib_rgauss.h diff --git a/gaussian_experimental/rg/grib_rgauss.h b/experimental/gaussian_experimental/rg/grib_rgauss.h similarity index 100% rename from gaussian_experimental/rg/grib_rgauss.h rename to experimental/gaussian_experimental/rg/grib_rgauss.h diff --git a/gaussian_experimental/rg/grib_rgauss_032.h b/experimental/gaussian_experimental/rg/grib_rgauss_032.h similarity index 100% rename from gaussian_experimental/rg/grib_rgauss_032.h rename to experimental/gaussian_experimental/rg/grib_rgauss_032.h diff --git a/gaussian_experimental/rg/grib_rgauss_048.h b/experimental/gaussian_experimental/rg/grib_rgauss_048.h similarity index 100% rename from gaussian_experimental/rg/grib_rgauss_048.h rename to experimental/gaussian_experimental/rg/grib_rgauss_048.h diff --git a/gaussian_experimental/rg/grib_rgauss_080.h b/experimental/gaussian_experimental/rg/grib_rgauss_080.h similarity index 100% rename from gaussian_experimental/rg/grib_rgauss_080.h rename to experimental/gaussian_experimental/rg/grib_rgauss_080.h diff --git a/gaussian_experimental/rg/grib_rgauss_1024.h b/experimental/gaussian_experimental/rg/grib_rgauss_1024.h similarity index 100% rename from gaussian_experimental/rg/grib_rgauss_1024.h rename to experimental/gaussian_experimental/rg/grib_rgauss_1024.h diff --git a/gaussian_experimental/rg/grib_rgauss_128.h b/experimental/gaussian_experimental/rg/grib_rgauss_128.h similarity index 100% rename from gaussian_experimental/rg/grib_rgauss_128.h rename to experimental/gaussian_experimental/rg/grib_rgauss_128.h diff --git a/gaussian_experimental/rg/grib_rgauss_160.h b/experimental/gaussian_experimental/rg/grib_rgauss_160.h similarity index 100% rename from gaussian_experimental/rg/grib_rgauss_160.h rename to experimental/gaussian_experimental/rg/grib_rgauss_160.h diff --git a/gaussian_experimental/rg/grib_rgauss_200.h b/experimental/gaussian_experimental/rg/grib_rgauss_200.h similarity index 100% rename from gaussian_experimental/rg/grib_rgauss_200.h rename to experimental/gaussian_experimental/rg/grib_rgauss_200.h diff --git a/gaussian_experimental/rg/grib_rgauss_256.h b/experimental/gaussian_experimental/rg/grib_rgauss_256.h similarity index 100% rename from gaussian_experimental/rg/grib_rgauss_256.h rename to experimental/gaussian_experimental/rg/grib_rgauss_256.h diff --git a/gaussian_experimental/rg/grib_rgauss_320.h b/experimental/gaussian_experimental/rg/grib_rgauss_320.h similarity index 100% rename from gaussian_experimental/rg/grib_rgauss_320.h rename to experimental/gaussian_experimental/rg/grib_rgauss_320.h diff --git a/gaussian_experimental/rg/grib_rgauss_400.h b/experimental/gaussian_experimental/rg/grib_rgauss_400.h similarity index 100% rename from gaussian_experimental/rg/grib_rgauss_400.h rename to experimental/gaussian_experimental/rg/grib_rgauss_400.h diff --git a/gaussian_experimental/rg/grib_rgauss_512.h b/experimental/gaussian_experimental/rg/grib_rgauss_512.h similarity index 100% rename from gaussian_experimental/rg/grib_rgauss_512.h rename to experimental/gaussian_experimental/rg/grib_rgauss_512.h diff --git a/gaussian_experimental/rg/no_rgauss_080_19940113.h b/experimental/gaussian_experimental/rg/no_rgauss_080_19940113.h similarity index 100% rename from gaussian_experimental/rg/no_rgauss_080_19940113.h rename to experimental/gaussian_experimental/rg/no_rgauss_080_19940113.h diff --git a/gaussian_experimental/rg/no_rgauss_080_19980130.h b/experimental/gaussian_experimental/rg/no_rgauss_080_19980130.h similarity index 100% rename from gaussian_experimental/rg/no_rgauss_080_19980130.h rename to experimental/gaussian_experimental/rg/no_rgauss_080_19980130.h diff --git a/gaussian_experimental/rg/no_rgauss_160_19931222.h b/experimental/gaussian_experimental/rg/no_rgauss_160_19931222.h similarity index 100% rename from gaussian_experimental/rg/no_rgauss_160_19931222.h rename to experimental/gaussian_experimental/rg/no_rgauss_160_19931222.h diff --git a/gaussian_experimental/rg/rgauss2c.ksh b/experimental/gaussian_experimental/rg/rgauss2c.ksh similarity index 100% rename from gaussian_experimental/rg/rgauss2c.ksh rename to experimental/gaussian_experimental/rg/rgauss2c.ksh diff --git a/gaussian_experimental/rg/rgauss_032.h b/experimental/gaussian_experimental/rg/rgauss_032.h similarity index 100% rename from gaussian_experimental/rg/rgauss_032.h rename to experimental/gaussian_experimental/rg/rgauss_032.h diff --git a/gaussian_experimental/rg/rgauss_048.h b/experimental/gaussian_experimental/rg/rgauss_048.h similarity index 100% rename from gaussian_experimental/rg/rgauss_048.h rename to experimental/gaussian_experimental/rg/rgauss_048.h diff --git a/gaussian_experimental/rg/rgauss_080.h b/experimental/gaussian_experimental/rg/rgauss_080.h similarity index 100% rename from gaussian_experimental/rg/rgauss_080.h rename to experimental/gaussian_experimental/rg/rgauss_080.h diff --git a/gaussian_experimental/rg/rgauss_1024.h b/experimental/gaussian_experimental/rg/rgauss_1024.h similarity index 100% rename from gaussian_experimental/rg/rgauss_1024.h rename to experimental/gaussian_experimental/rg/rgauss_1024.h diff --git a/gaussian_experimental/rg/rgauss_128.h b/experimental/gaussian_experimental/rg/rgauss_128.h similarity index 100% rename from gaussian_experimental/rg/rgauss_128.h rename to experimental/gaussian_experimental/rg/rgauss_128.h diff --git a/gaussian_experimental/rg/rgauss_160.h b/experimental/gaussian_experimental/rg/rgauss_160.h similarity index 100% rename from gaussian_experimental/rg/rgauss_160.h rename to experimental/gaussian_experimental/rg/rgauss_160.h diff --git a/gaussian_experimental/rg/rgauss_200.h b/experimental/gaussian_experimental/rg/rgauss_200.h similarity index 100% rename from gaussian_experimental/rg/rgauss_200.h rename to experimental/gaussian_experimental/rg/rgauss_200.h diff --git a/gaussian_experimental/rg/rgauss_256.h b/experimental/gaussian_experimental/rg/rgauss_256.h similarity index 100% rename from gaussian_experimental/rg/rgauss_256.h rename to experimental/gaussian_experimental/rg/rgauss_256.h diff --git a/gaussian_experimental/rg/rgauss_320.h b/experimental/gaussian_experimental/rg/rgauss_320.h similarity index 100% rename from gaussian_experimental/rg/rgauss_320.h rename to experimental/gaussian_experimental/rg/rgauss_320.h diff --git a/gaussian_experimental/rg/rgauss_400.h b/experimental/gaussian_experimental/rg/rgauss_400.h similarity index 100% rename from gaussian_experimental/rg/rgauss_400.h rename to experimental/gaussian_experimental/rg/rgauss_400.h diff --git a/gaussian_experimental/rg/rgauss_512.h b/experimental/gaussian_experimental/rg/rgauss_512.h similarity index 100% rename from gaussian_experimental/rg/rgauss_512.h rename to experimental/gaussian_experimental/rg/rgauss_512.h diff --git a/gribex/grib_api_count.c b/experimental/gribex/grib_api_count.c similarity index 100% rename from gribex/grib_api_count.c rename to experimental/gribex/grib_api_count.c diff --git a/gribex/gribex_check.ksh b/experimental/gribex/gribex_check.ksh similarity index 100% rename from gribex/gribex_check.ksh rename to experimental/gribex/gribex_check.ksh diff --git a/gribex/gribex_check_nofail.ksh b/experimental/gribex/gribex_check_nofail.ksh similarity index 100% rename from gribex/gribex_check_nofail.ksh rename to experimental/gribex/gribex_check_nofail.ksh diff --git a/gribex/gribex_count.F b/experimental/gribex/gribex_count.F similarity index 100% rename from gribex/gribex_count.F rename to experimental/gribex/gribex_count.F diff --git a/gribex/gribex_count.ksh b/experimental/gribex/gribex_count.ksh similarity index 100% rename from gribex/gribex_count.ksh rename to experimental/gribex/gribex_count.ksh diff --git a/java/gribview/src/gribview/BevelArrowIcon.java b/experimental/java/gribview/src/gribview/BevelArrowIcon.java similarity index 100% rename from java/gribview/src/gribview/BevelArrowIcon.java rename to experimental/java/gribview/src/gribview/BevelArrowIcon.java diff --git a/java/gribview/src/gribview/BlankIcon.java b/experimental/java/gribview/src/gribview/BlankIcon.java similarity index 100% rename from java/gribview/src/gribview/BlankIcon.java rename to experimental/java/gribview/src/gribview/BlankIcon.java diff --git a/java/gribview/src/gribview/GribAnimator.java b/experimental/java/gribview/src/gribview/GribAnimator.java similarity index 100% rename from java/gribview/src/gribview/GribAnimator.java rename to experimental/java/gribview/src/gribview/GribAnimator.java diff --git a/java/gribview/src/gribview/GribHandleSet.java b/experimental/java/gribview/src/gribview/GribHandleSet.java similarity index 100% rename from java/gribview/src/gribview/GribHandleSet.java rename to experimental/java/gribview/src/gribview/GribHandleSet.java diff --git a/java/gribview/src/gribview/GribMainFrame.java b/experimental/java/gribview/src/gribview/GribMainFrame.java similarity index 100% rename from java/gribview/src/gribview/GribMainFrame.java rename to experimental/java/gribview/src/gribview/GribMainFrame.java diff --git a/java/gribview/src/gribview/GribRenderPane.java b/experimental/java/gribview/src/gribview/GribRenderPane.java similarity index 100% rename from java/gribview/src/gribview/GribRenderPane.java rename to experimental/java/gribview/src/gribview/GribRenderPane.java diff --git a/java/gribview/src/gribview/GribView.java b/experimental/java/gribview/src/gribview/GribView.java similarity index 100% rename from java/gribview/src/gribview/GribView.java rename to experimental/java/gribview/src/gribview/GribView.java diff --git a/java/gribview/src/gribview/GribViewAboutBox.java b/experimental/java/gribview/src/gribview/GribViewAboutBox.java similarity index 100% rename from java/gribview/src/gribview/GribViewAboutBox.java rename to experimental/java/gribview/src/gribview/GribViewAboutBox.java diff --git a/java/gribview/src/gribview/JGribEditComponent.java b/experimental/java/gribview/src/gribview/JGribEditComponent.java similarity index 100% rename from java/gribview/src/gribview/JGribEditComponent.java rename to experimental/java/gribview/src/gribview/JGribEditComponent.java diff --git a/java/gribview/src/gribview/JGribMarker.java b/experimental/java/gribview/src/gribview/JGribMarker.java similarity index 100% rename from java/gribview/src/gribview/JGribMarker.java rename to experimental/java/gribview/src/gribview/JGribMarker.java diff --git a/java/gribview/src/gribview/JGribToolBar.java b/experimental/java/gribview/src/gribview/JGribToolBar.java similarity index 100% rename from java/gribview/src/gribview/JGribToolBar.java rename to experimental/java/gribview/src/gribview/JGribToolBar.java diff --git a/java/gribview/src/gribview/JGribTreeNode.java b/experimental/java/gribview/src/gribview/JGribTreeNode.java similarity index 100% rename from java/gribview/src/gribview/JGribTreeNode.java rename to experimental/java/gribview/src/gribview/JGribTreeNode.java diff --git a/java/gribview/src/gribview/JGribViewDescriptorProducer.java b/experimental/java/gribview/src/gribview/JGribViewDescriptorProducer.java similarity index 100% rename from java/gribview/src/gribview/JGribViewDescriptorProducer.java rename to experimental/java/gribview/src/gribview/JGribViewDescriptorProducer.java diff --git a/java/gribview/src/gribview/JGribViewEditionNodeProducer.java b/experimental/java/gribview/src/gribview/JGribViewEditionNodeProducer.java similarity index 100% rename from java/gribview/src/gribview/JGribViewEditionNodeProducer.java rename to experimental/java/gribview/src/gribview/JGribViewEditionNodeProducer.java diff --git a/java/gribview/src/gribview/SortButtonRenderer.java b/experimental/java/gribview/src/gribview/SortButtonRenderer.java similarity index 100% rename from java/gribview/src/gribview/SortButtonRenderer.java rename to experimental/java/gribview/src/gribview/SortButtonRenderer.java diff --git a/java/jgribapi/src/jgribapi/GribDump.java b/experimental/java/jgribapi/src/jgribapi/GribDump.java similarity index 100% rename from java/jgribapi/src/jgribapi/GribDump.java rename to experimental/java/jgribapi/src/jgribapi/GribDump.java diff --git a/java/jgribapi/src/jgribapi/GribFile.java b/experimental/java/jgribapi/src/jgribapi/GribFile.java similarity index 100% rename from java/jgribapi/src/jgribapi/GribFile.java rename to experimental/java/jgribapi/src/jgribapi/GribFile.java diff --git a/java/jgribapi/src/jgribapi/GribHandle.java b/experimental/java/jgribapi/src/jgribapi/GribHandle.java similarity index 100% rename from java/jgribapi/src/jgribapi/GribHandle.java rename to experimental/java/jgribapi/src/jgribapi/GribHandle.java diff --git a/java/jgribapi/src/jgribapi/GribIterator.java b/experimental/java/jgribapi/src/jgribapi/GribIterator.java similarity index 100% rename from java/jgribapi/src/jgribapi/GribIterator.java rename to experimental/java/jgribapi/src/jgribapi/GribIterator.java diff --git a/java/jgribapi/src/jgribapi/GribKey.java b/experimental/java/jgribapi/src/jgribapi/GribKey.java similarity index 100% rename from java/jgribapi/src/jgribapi/GribKey.java rename to experimental/java/jgribapi/src/jgribapi/GribKey.java diff --git a/java/jgribapi/src/jgribapi/GribPoint.java b/experimental/java/jgribapi/src/jgribapi/GribPoint.java similarity index 100% rename from java/jgribapi/src/jgribapi/GribPoint.java rename to experimental/java/jgribapi/src/jgribapi/GribPoint.java diff --git a/java/jgribapi/src/jgribapi/JGribObjectProducer.java b/experimental/java/jgribapi/src/jgribapi/JGribObjectProducer.java similarity index 100% rename from java/jgribapi/src/jgribapi/JGribObjectProducer.java rename to experimental/java/jgribapi/src/jgribapi/JGribObjectProducer.java diff --git a/make_dist_definitions b/experimental/make_dist_definitions similarity index 100% rename from make_dist_definitions rename to experimental/make_dist_definitions diff --git a/parameters/feed_metdb.pl b/experimental/parameters/feed_metdb.pl similarity index 100% rename from parameters/feed_metdb.pl rename to experimental/parameters/feed_metdb.pl diff --git a/parameters/feed_tigge.pl b/experimental/parameters/feed_tigge.pl similarity index 100% rename from parameters/feed_tigge.pl rename to experimental/parameters/feed_tigge.pl diff --git a/parameters/grib1_def.pl b/experimental/parameters/grib1_def.pl similarity index 100% rename from parameters/grib1_def.pl rename to experimental/parameters/grib1_def.pl diff --git a/parameters/human_readable.pl b/experimental/parameters/human_readable.pl similarity index 100% rename from parameters/human_readable.pl rename to experimental/parameters/human_readable.pl diff --git a/parameters/master.info b/experimental/parameters/master.info similarity index 100% rename from parameters/master.info rename to experimental/parameters/master.info diff --git a/parameters/report.pl b/experimental/parameters/report.pl similarity index 100% rename from parameters/report.pl rename to experimental/parameters/report.pl diff --git a/parameters/tigge.pm b/experimental/parameters/tigge.pm similarity index 100% rename from parameters/tigge.pm rename to experimental/parameters/tigge.pm diff --git a/parameters/tigge_check.info b/experimental/parameters/tigge_check.info similarity index 100% rename from parameters/tigge_check.info rename to experimental/parameters/tigge_check.info diff --git a/parameters/tigge_check.pl b/experimental/parameters/tigge_check.pl similarity index 100% rename from parameters/tigge_check.pl rename to experimental/parameters/tigge_check.pl diff --git a/parameters/tigge_def.pl b/experimental/parameters/tigge_def.pl similarity index 100% rename from parameters/tigge_def.pl rename to experimental/parameters/tigge_def.pl diff --git a/parameters/tigge_parameters.pl b/experimental/parameters/tigge_parameters.pl similarity index 100% rename from parameters/tigge_parameters.pl rename to experimental/parameters/tigge_parameters.pl diff --git a/perl/GRIB-API/API.xs b/experimental/perl/GRIB-API/API.xs similarity index 100% rename from perl/GRIB-API/API.xs rename to experimental/perl/GRIB-API/API.xs diff --git a/perl/GRIB-API/Changes b/experimental/perl/GRIB-API/Changes similarity index 100% rename from perl/GRIB-API/Changes rename to experimental/perl/GRIB-API/Changes diff --git a/perl/GRIB-API/INSTALL b/experimental/perl/GRIB-API/INSTALL similarity index 100% rename from perl/GRIB-API/INSTALL rename to experimental/perl/GRIB-API/INSTALL diff --git a/perl/GRIB-API/MANIFEST b/experimental/perl/GRIB-API/MANIFEST similarity index 100% rename from perl/GRIB-API/MANIFEST rename to experimental/perl/GRIB-API/MANIFEST diff --git a/perl/GRIB-API/Makefile.PL.in b/experimental/perl/GRIB-API/Makefile.PL.in similarity index 100% rename from perl/GRIB-API/Makefile.PL.in rename to experimental/perl/GRIB-API/Makefile.PL.in diff --git a/perl/GRIB-API/README b/experimental/perl/GRIB-API/README similarity index 100% rename from perl/GRIB-API/README rename to experimental/perl/GRIB-API/README diff --git a/perl/GRIB-API/convert.pl b/experimental/perl/GRIB-API/convert.pl similarity index 100% rename from perl/GRIB-API/convert.pl rename to experimental/perl/GRIB-API/convert.pl diff --git a/perl/GRIB-API/lib/GRIB/API.pm b/experimental/perl/GRIB-API/lib/GRIB/API.pm similarity index 100% rename from perl/GRIB-API/lib/GRIB/API.pm rename to experimental/perl/GRIB-API/lib/GRIB/API.pm diff --git a/perl/GRIB-API/lib/GRIB/API/Debug.pm b/experimental/perl/GRIB-API/lib/GRIB/API/Debug.pm similarity index 100% rename from perl/GRIB-API/lib/GRIB/API/Debug.pm rename to experimental/perl/GRIB-API/lib/GRIB/API/Debug.pm diff --git a/perl/GRIB-API/lib/GRIB/API/Tie.pm b/experimental/perl/GRIB-API/lib/GRIB/API/Tie.pm similarity index 100% rename from perl/GRIB-API/lib/GRIB/API/Tie.pm rename to experimental/perl/GRIB-API/lib/GRIB/API/Tie.pm diff --git a/perl/GRIB-API/ppport.h b/experimental/perl/GRIB-API/ppport.h similarity index 100% rename from perl/GRIB-API/ppport.h rename to experimental/perl/GRIB-API/ppport.h diff --git a/perl/GRIB-API/t/GRIB-API.t b/experimental/perl/GRIB-API/t/GRIB-API.t similarity index 100% rename from perl/GRIB-API/t/GRIB-API.t rename to experimental/perl/GRIB-API/t/GRIB-API.t diff --git a/perl/GRIB-API/test.pl b/experimental/perl/GRIB-API/test.pl similarity index 100% rename from perl/GRIB-API/test.pl rename to experimental/perl/GRIB-API/test.pl diff --git a/perl/GRIB-API/typemap b/experimental/perl/GRIB-API/typemap similarity index 100% rename from perl/GRIB-API/typemap rename to experimental/perl/GRIB-API/typemap diff --git a/perl/Makefile.am b/experimental/perl/Makefile.am similarity index 100% rename from perl/Makefile.am rename to experimental/perl/Makefile.am diff --git a/perl/README b/experimental/perl/README similarity index 100% rename from perl/README rename to experimental/perl/README diff --git a/templates/GRIB1 b/experimental/templates/GRIB1 similarity index 100% rename from templates/GRIB1 rename to experimental/templates/GRIB1 diff --git a/templates/GRIB1.tmpl b/experimental/templates/GRIB1.tmpl similarity index 100% rename from templates/GRIB1.tmpl rename to experimental/templates/GRIB1.tmpl diff --git a/templates/GRIB2 b/experimental/templates/GRIB2 similarity index 100% rename from templates/GRIB2 rename to experimental/templates/GRIB2 diff --git a/templates/GRIB2.tmpl b/experimental/templates/GRIB2.tmpl similarity index 100% rename from templates/GRIB2.tmpl rename to experimental/templates/GRIB2.tmpl diff --git a/templates/Makefile.am b/experimental/templates/Makefile.am similarity index 100% rename from templates/Makefile.am rename to experimental/templates/Makefile.am diff --git a/templates/dummy.am b/experimental/templates/dummy.am similarity index 100% rename from templates/dummy.am rename to experimental/templates/dummy.am diff --git a/templates/ifs_templates/grib1/gg_ml.tmpl b/experimental/templates/ifs_templates/grib1/gg_ml.tmpl similarity index 100% rename from templates/ifs_templates/grib1/gg_ml.tmpl rename to experimental/templates/ifs_templates/grib1/gg_ml.tmpl diff --git a/templates/ifs_templates/grib1/gg_sfc.tmpl b/experimental/templates/ifs_templates/grib1/gg_sfc.tmpl similarity index 100% rename from templates/ifs_templates/grib1/gg_sfc.tmpl rename to experimental/templates/ifs_templates/grib1/gg_sfc.tmpl diff --git a/templates/ifs_templates/grib1/sh_ml.tmpl b/experimental/templates/ifs_templates/grib1/sh_ml.tmpl similarity index 100% rename from templates/ifs_templates/grib1/sh_ml.tmpl rename to experimental/templates/ifs_templates/grib1/sh_ml.tmpl diff --git a/templates/ifs_templates/grib1/sh_sfc.tmpl b/experimental/templates/ifs_templates/grib1/sh_sfc.tmpl similarity index 100% rename from templates/ifs_templates/grib1/sh_sfc.tmpl rename to experimental/templates/ifs_templates/grib1/sh_sfc.tmpl diff --git a/templates/ifs_templates/grib1_mlgrib2/gg_ml.tmpl b/experimental/templates/ifs_templates/grib1_mlgrib2/gg_ml.tmpl similarity index 100% rename from templates/ifs_templates/grib1_mlgrib2/gg_ml.tmpl rename to experimental/templates/ifs_templates/grib1_mlgrib2/gg_ml.tmpl diff --git a/templates/ifs_templates/grib1_mlgrib2/gg_sfc.tmpl b/experimental/templates/ifs_templates/grib1_mlgrib2/gg_sfc.tmpl similarity index 100% rename from templates/ifs_templates/grib1_mlgrib2/gg_sfc.tmpl rename to experimental/templates/ifs_templates/grib1_mlgrib2/gg_sfc.tmpl diff --git a/templates/ifs_templates/grib1_mlgrib2/sh_ml.tmpl b/experimental/templates/ifs_templates/grib1_mlgrib2/sh_ml.tmpl similarity index 100% rename from templates/ifs_templates/grib1_mlgrib2/sh_ml.tmpl rename to experimental/templates/ifs_templates/grib1_mlgrib2/sh_ml.tmpl diff --git a/templates/ifs_templates/grib1_mlgrib2/sh_sfc.tmpl b/experimental/templates/ifs_templates/grib1_mlgrib2/sh_sfc.tmpl similarity index 100% rename from templates/ifs_templates/grib1_mlgrib2/sh_sfc.tmpl rename to experimental/templates/ifs_templates/grib1_mlgrib2/sh_sfc.tmpl diff --git a/templates/make_ifs_templates.sh b/experimental/templates/make_ifs_templates.sh similarity index 100% rename from templates/make_ifs_templates.sh rename to experimental/templates/make_ifs_templates.sh diff --git a/templates/reduced_gg_ml_grib1.tmpl b/experimental/templates/reduced_gg_ml_grib1.tmpl similarity index 100% rename from templates/reduced_gg_ml_grib1.tmpl rename to experimental/templates/reduced_gg_ml_grib1.tmpl diff --git a/templates/reduced_gg_ml_grib2.tmpl b/experimental/templates/reduced_gg_ml_grib2.tmpl similarity index 100% rename from templates/reduced_gg_ml_grib2.tmpl rename to experimental/templates/reduced_gg_ml_grib2.tmpl diff --git a/templates/reduced_gg_pl_grib1.tmpl b/experimental/templates/reduced_gg_pl_grib1.tmpl similarity index 100% rename from templates/reduced_gg_pl_grib1.tmpl rename to experimental/templates/reduced_gg_pl_grib1.tmpl diff --git a/templates/reduced_gg_pl_grib2.tmpl b/experimental/templates/reduced_gg_pl_grib2.tmpl similarity index 100% rename from templates/reduced_gg_pl_grib2.tmpl rename to experimental/templates/reduced_gg_pl_grib2.tmpl diff --git a/templates/reduced_gg_sfc_grib1.tmpl b/experimental/templates/reduced_gg_sfc_grib1.tmpl similarity index 100% rename from templates/reduced_gg_sfc_grib1.tmpl rename to experimental/templates/reduced_gg_sfc_grib1.tmpl diff --git a/templates/reduced_gg_sfc_grib2.tmpl b/experimental/templates/reduced_gg_sfc_grib2.tmpl similarity index 100% rename from templates/reduced_gg_sfc_grib2.tmpl rename to experimental/templates/reduced_gg_sfc_grib2.tmpl diff --git a/templates/reduced_gg_sfc_jpeg_grib2.tmpl b/experimental/templates/reduced_gg_sfc_jpeg_grib2.tmpl similarity index 100% rename from templates/reduced_gg_sfc_jpeg_grib2.tmpl rename to experimental/templates/reduced_gg_sfc_jpeg_grib2.tmpl diff --git a/templates/reduced_ll_sfc_grib1.tmpl b/experimental/templates/reduced_ll_sfc_grib1.tmpl similarity index 100% rename from templates/reduced_ll_sfc_grib1.tmpl rename to experimental/templates/reduced_ll_sfc_grib1.tmpl diff --git a/templates/reduced_ll_sfc_grib2.tmpl b/experimental/templates/reduced_ll_sfc_grib2.tmpl similarity index 100% rename from templates/reduced_ll_sfc_grib2.tmpl rename to experimental/templates/reduced_ll_sfc_grib2.tmpl diff --git a/templates/regular_gg_ml_grib1.tmpl b/experimental/templates/regular_gg_ml_grib1.tmpl similarity index 100% rename from templates/regular_gg_ml_grib1.tmpl rename to experimental/templates/regular_gg_ml_grib1.tmpl diff --git a/templates/regular_gg_ml_grib2.tmpl b/experimental/templates/regular_gg_ml_grib2.tmpl similarity index 100% rename from templates/regular_gg_ml_grib2.tmpl rename to experimental/templates/regular_gg_ml_grib2.tmpl diff --git a/templates/regular_gg_pl_grib1.tmpl b/experimental/templates/regular_gg_pl_grib1.tmpl similarity index 100% rename from templates/regular_gg_pl_grib1.tmpl rename to experimental/templates/regular_gg_pl_grib1.tmpl diff --git a/templates/regular_gg_pl_grib2.tmpl b/experimental/templates/regular_gg_pl_grib2.tmpl similarity index 100% rename from templates/regular_gg_pl_grib2.tmpl rename to experimental/templates/regular_gg_pl_grib2.tmpl diff --git a/templates/regular_ll_pl_grib1.tmpl b/experimental/templates/regular_ll_pl_grib1.tmpl similarity index 100% rename from templates/regular_ll_pl_grib1.tmpl rename to experimental/templates/regular_ll_pl_grib1.tmpl diff --git a/templates/regular_ll_pl_grib2.tmpl b/experimental/templates/regular_ll_pl_grib2.tmpl similarity index 100% rename from templates/regular_ll_pl_grib2.tmpl rename to experimental/templates/regular_ll_pl_grib2.tmpl diff --git a/templates/regular_ll_sfc_grib1.tmpl b/experimental/templates/regular_ll_sfc_grib1.tmpl similarity index 100% rename from templates/regular_ll_sfc_grib1.tmpl rename to experimental/templates/regular_ll_sfc_grib1.tmpl diff --git a/templates/regular_ll_sfc_grib2.tmpl b/experimental/templates/regular_ll_sfc_grib2.tmpl similarity index 100% rename from templates/regular_ll_sfc_grib2.tmpl rename to experimental/templates/regular_ll_sfc_grib2.tmpl diff --git a/templates/sh_ml_grib1.tmpl b/experimental/templates/sh_ml_grib1.tmpl similarity index 100% rename from templates/sh_ml_grib1.tmpl rename to experimental/templates/sh_ml_grib1.tmpl diff --git a/templates/sh_ml_grib2.tmpl b/experimental/templates/sh_ml_grib2.tmpl similarity index 100% rename from templates/sh_ml_grib2.tmpl rename to experimental/templates/sh_ml_grib2.tmpl diff --git a/templates/sh_pl_grib1.tmpl b/experimental/templates/sh_pl_grib1.tmpl similarity index 100% rename from templates/sh_pl_grib1.tmpl rename to experimental/templates/sh_pl_grib1.tmpl diff --git a/templates/sh_pl_grib2.tmpl b/experimental/templates/sh_pl_grib2.tmpl similarity index 100% rename from templates/sh_pl_grib2.tmpl rename to experimental/templates/sh_pl_grib2.tmpl From 5bf298f4b2344332abc0671409095c9d63f9925c Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Wed, 21 Oct 2020 13:00:00 +0100 Subject: [PATCH 105/683] Python3 support --- memfs.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/memfs.py b/memfs.py index 36a07e0db..fd1179e2d 100755 --- a/memfs.py +++ b/memfs.py @@ -95,7 +95,7 @@ for directory in dirs: FILES[name] = fname SIZES[name] = os.path.getsize(full) - buffer.write("const unsigned char %s[] = {" % (name,)) + buffer.write(b"const unsigned char %s[] = {" % (name,)) with open(full, "rb") as f: i = 0 @@ -109,12 +109,12 @@ for directory in dirs: # e.g. 23 -> 0x23 for n in range(0, len(contents_hex), 2): twoChars = ascii(contents_hex[n : n + 2]) - buffer.write("0x%s," % (twoChars,)) + buffer.write(b"0x%s," % (twoChars,)) i += 1 if (i % 20) == 0: - buffer.write("\n") + buffer.write(b"\n") - buffer.write("};\n") + buffer.write(b"};\n") if buffer.tell() >= CHUNK: buffer.close() buffer = None From cd734a87c6e8a38eb5402d27ddd6b253487a608b Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Wed, 21 Oct 2020 13:04:19 +0100 Subject: [PATCH 106/683] Python3 support --- memfs.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/memfs.py b/memfs.py index d5d7769bb..767ddb012 100755 --- a/memfs.py +++ b/memfs.py @@ -39,8 +39,10 @@ CHUNK = 16 * 1024 * 1024 # chunk size in bytes try: str(b"\x23\x20", "ascii") ascii = lambda x: str(x, "ascii") # Python 3 + encode = lambda x: x.encode() except: ascii = lambda x: str(x) # Python 2 + encode = lambda x: x def get_outfile_name(base, count): @@ -90,7 +92,7 @@ for directory in dirs: FILES[name] = fname SIZES[name] = os.path.getsize(full) - buffer.write(b"const unsigned char %s[] = {" % (name,)) + buffer.write(encode("const unsigned char %s[] = {" % (name,))) with open(full, "rb") as f: i = 0 @@ -104,12 +106,12 @@ for directory in dirs: # e.g. 23 -> 0x23 for n in range(0, len(contents_hex), 2): twoChars = ascii(contents_hex[n : n + 2]) - buffer.write(b"0x%s," % (twoChars,)) + buffer.write(encode("0x%s," % (twoChars,))) i += 1 if (i % 20) == 0: - buffer.write(b"\n") + buffer.write(encode("\n")) - buffer.write(b"};\n") + buffer.write(encode("};\n")) if buffer.tell() >= CHUNK: buffer.close() buffer = None @@ -317,4 +319,3 @@ FILE* codes_memfs_open(const char* path) { print("Finished") print("MEMFS: done", time.time() - start) - From d909c717a134deb1658a71c8deba62a0869322ab Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 22 Oct 2020 16:44:17 +0100 Subject: [PATCH 107/683] ECC-1147: Fix cnmc parameter 500044 --- definitions/grib2/localConcepts/cnmc/name.def | 1 - definitions/grib2/localConcepts/cnmc/paramId.def | 1 - definitions/grib2/localConcepts/cnmc/shortName.def | 1 - definitions/grib2/localConcepts/cnmc/units.def | 1 - 4 files changed, 4 deletions(-) diff --git a/definitions/grib2/localConcepts/cnmc/name.def b/definitions/grib2/localConcepts/cnmc/name.def index 11c5d7d05..89dafe5d3 100644 --- a/definitions/grib2/localConcepts/cnmc/name.def +++ b/definitions/grib2/localConcepts/cnmc/name.def @@ -346,7 +346,6 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; } #Snow Depth 'Snow Depth' = { diff --git a/definitions/grib2/localConcepts/cnmc/paramId.def b/definitions/grib2/localConcepts/cnmc/paramId.def index 471baaf52..2e2b5181f 100644 --- a/definitions/grib2/localConcepts/cnmc/paramId.def +++ b/definitions/grib2/localConcepts/cnmc/paramId.def @@ -346,7 +346,6 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; } #Snow Depth '500045' = { diff --git a/definitions/grib2/localConcepts/cnmc/shortName.def b/definitions/grib2/localConcepts/cnmc/shortName.def index 26cbde6ff..c6cc81982 100644 --- a/definitions/grib2/localConcepts/cnmc/shortName.def +++ b/definitions/grib2/localConcepts/cnmc/shortName.def @@ -346,7 +346,6 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; } #Snow Depth 'h_snow' = { diff --git a/definitions/grib2/localConcepts/cnmc/units.def b/definitions/grib2/localConcepts/cnmc/units.def index bb7e21be9..a3af26326 100644 --- a/definitions/grib2/localConcepts/cnmc/units.def +++ b/definitions/grib2/localConcepts/cnmc/units.def @@ -346,7 +346,6 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; } #Snow Depth 'm' = { From 8f0b54fdf0811c52c1d54329f2788b876dde745b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 27 Oct 2020 12:24:04 +0000 Subject: [PATCH 108/683] New hotfix version --- .appveyor.yml | 2 +- CMakeLists.txt | 2 +- definitions/grib2/localConcepts/cnmc/name.def | 1 - definitions/grib2/localConcepts/cnmc/paramId.def | 1 - definitions/grib2/localConcepts/cnmc/shortName.def | 1 - definitions/grib2/localConcepts/cnmc/units.def | 1 - version.sh | 2 +- 7 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index d03c186b5..57256300f 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -2,7 +2,7 @@ # general configuration # #---------------------------------# -version: 2.19.0-{build}-{branch} +version: 2.19.1-{build}-{branch} branches: only: diff --git a/CMakeLists.txt b/CMakeLists.txt index 7d3b4bf3e..b81a803b0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ cmake_minimum_required( VERSION 3.12 FATAL_ERROR ) find_package( ecbuild 3.4 REQUIRED HINTS ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild) # Initialise project -project( eccodes VERSION 2.19.0 LANGUAGES C ) +project( eccodes VERSION 2.19.1 LANGUAGES C ) ############################################################################### # system checks needed for eccodes_config.h and some options like MEMFS diff --git a/definitions/grib2/localConcepts/cnmc/name.def b/definitions/grib2/localConcepts/cnmc/name.def index 11c5d7d05..89dafe5d3 100644 --- a/definitions/grib2/localConcepts/cnmc/name.def +++ b/definitions/grib2/localConcepts/cnmc/name.def @@ -346,7 +346,6 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; } #Snow Depth 'Snow Depth' = { diff --git a/definitions/grib2/localConcepts/cnmc/paramId.def b/definitions/grib2/localConcepts/cnmc/paramId.def index 471baaf52..2e2b5181f 100644 --- a/definitions/grib2/localConcepts/cnmc/paramId.def +++ b/definitions/grib2/localConcepts/cnmc/paramId.def @@ -346,7 +346,6 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; } #Snow Depth '500045' = { diff --git a/definitions/grib2/localConcepts/cnmc/shortName.def b/definitions/grib2/localConcepts/cnmc/shortName.def index 26cbde6ff..c6cc81982 100644 --- a/definitions/grib2/localConcepts/cnmc/shortName.def +++ b/definitions/grib2/localConcepts/cnmc/shortName.def @@ -346,7 +346,6 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; } #Snow Depth 'h_snow' = { diff --git a/definitions/grib2/localConcepts/cnmc/units.def b/definitions/grib2/localConcepts/cnmc/units.def index bb7e21be9..a3af26326 100644 --- a/definitions/grib2/localConcepts/cnmc/units.def +++ b/definitions/grib2/localConcepts/cnmc/units.def @@ -346,7 +346,6 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 60 ; - typeOfFirstFixedSurface = 1 ; } #Snow Depth 'm' = { diff --git a/version.sh b/version.sh index 2d91d4de0..25a72f220 100644 --- a/version.sh +++ b/version.sh @@ -4,7 +4,7 @@ PACKAGE_NAME='eccodes' # Package version ECCODES_MAJOR_VERSION=2 ECCODES_MINOR_VERSION=19 -ECCODES_REVISION_VERSION=0 +ECCODES_REVISION_VERSION=1 ECCODES_CURRENT=1 ECCODES_REVISION=0 From 370bfe18c9fb3b8a20c6f52074a4be480c37a848 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 27 Oct 2020 12:32:04 +0000 Subject: [PATCH 109/683] ECC-1158: GRIB encoding: Implement data quality checks (limits) for spectral fields --- src/grib_accessor_class_data_complex_packing.c | 10 +++++++++- tests/grib_data_quality_checks.sh | 18 ++++++++++++++---- 2 files changed, 23 insertions(+), 5 deletions(-) diff --git a/src/grib_accessor_class_data_complex_packing.c b/src/grib_accessor_class_data_complex_packing.c index fade0feb8..d392d4e18 100644 --- a/src/grib_accessor_class_data_complex_packing.c +++ b/src/grib_accessor_class_data_complex_packing.c @@ -672,6 +672,15 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) return GRIB_INTERNAL_ERROR; } + /* Data Quality checks */ + if (a->context->grib_data_quality_checks) { + /* First value is the field's average */ + double min_val = val[0]; + double max_val = min_val; + if ((ret = grib_util_grib_data_quality_check(gh, min_val, max_val)) != GRIB_SUCCESS) + return ret; + } + if (pen_j == sub_j) { double* values; d = grib_power(decimal_scale_factor, 10); @@ -819,7 +828,6 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) } else { /* _test(val[i]*d,0); */ - grib_encode_unsigned_long(hres, encode_float(val[i++]), &hpos, 8 * bytes); /* _test(val[i]*d,0); */ grib_encode_unsigned_long(hres, encode_float(val[i++]), &hpos, 8 * bytes); diff --git a/tests/grib_data_quality_checks.sh b/tests/grib_data_quality_checks.sh index 45c725f7b..65fad1ede 100755 --- a/tests/grib_data_quality_checks.sh +++ b/tests/grib_data_quality_checks.sh @@ -140,24 +140,34 @@ echo "Override the defaults..." tempDir=tempdir.$label rm -rf $tempDir mkdir -p $tempDir -# Set a large limit for temperature +# Change limits for 2m temperature (grid-point) and Temperature (spectral) cat > $tempDir/param_limits.def < Date: Tue, 27 Oct 2020 18:42:01 +0000 Subject: [PATCH 110/683] Examples: fixed print issue thanks to mypy --- examples/python/bufr_read_tropical_cyclone.py | 2 +- examples/python/bufr_read_tropical_cyclone.sh | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/python/bufr_read_tropical_cyclone.py b/examples/python/bufr_read_tropical_cyclone.py index 42031638d..5494af806 100644 --- a/examples/python/bufr_read_tropical_cyclone.py +++ b/examples/python/bufr_read_tropical_cyclone.py @@ -180,7 +180,7 @@ def example(): print("step latitude longitude pressure latitude longitude wind") for s in range(len(timePeriod)): if data[m][s][0] != CODES_MISSING_DOUBLE and data[m][s][1] != CODES_MISSING_DOUBLE: - print(" {0:>3d}{0}{0:>6.1f}{0}{0:>6.1f}{0}{0:>8.1f}{0}{0:>6.1f}{0}{0:>6.1f}{0}{0:>6.1f}".format( + print(" {0:>3d}{1}{2:>6.1f}{3}{4:>6.1f}{5}{6:>8.1f}{7}{8:>6.1f}{9}{10:>6.1f}{11}{12:>6.1f}".format( timePeriod[s], ' ', data[m][s][0], ' ', data[m][s][1], ' ', data[m][s][2], ' ', data[m][s][3], ' ', data[m][s][4], ' ', data[m][s][5])) diff --git a/examples/python/bufr_read_tropical_cyclone.sh b/examples/python/bufr_read_tropical_cyclone.sh index 75e07f02f..4a8999f8f 100755 --- a/examples/python/bufr_read_tropical_cyclone.sh +++ b/examples/python/bufr_read_tropical_cyclone.sh @@ -25,7 +25,6 @@ REDIRECT=/dev/null echo $PYTHON $examples_src #Write the key values into a file -#$PYTHON $examples_src/bufr_read_tropical_cyclone.py >$fTmp $PYTHON $examples_src/bufr_read_tropical_cyclone.py >$fTmp # Check the results From 0df71fba5f10e17ee2893745c6b5edf8af7215e2 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 29 Oct 2020 15:45:22 +0000 Subject: [PATCH 111/683] Testing: test encoding and decoding a spectral complex field --- tests/CMakeLists.txt | 3 + tests/grib_sh_spectral_complex.c | 299 ++++++++++++++++++++++++++++++ tests/grib_sh_spectral_complex.sh | 16 ++ 3 files changed, 318 insertions(+) create mode 100644 tests/grib_sh_spectral_complex.c create mode 100755 tests/grib_sh_spectral_complex.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 8ce353a8a..b20c11993 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -34,6 +34,7 @@ list(APPEND test_bins grib_sh_ieee64 ieee grib_sh_imag + grib_sh_spectral_complex grib_lam_bf grib_lam_gp) @@ -74,6 +75,7 @@ if( HAVE_BUILD_TOOLS ) bufr_rdbSubTypes grib_efas grib_sh_imag + grib_sh_spectral_complex pseudo_diag grib_grid_unstructured grib_grid_lambert_conformal @@ -351,6 +353,7 @@ else() julian bufr_check_descriptors grib_sh_imag + grib_sh_spectral_complex grib_2nd_order_numValues grib_sh_ieee64) diff --git a/tests/grib_sh_spectral_complex.c b/tests/grib_sh_spectral_complex.c new file mode 100644 index 000000000..3314fa503 --- /dev/null +++ b/tests/grib_sh_spectral_complex.c @@ -0,0 +1,299 @@ +/* + * (C) Copyright 2005- ECMWF. + * + * This software is licensed under the terms of the Apache Licence Version 2.0 + * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. + * + * In applying this licence, ECMWF does not waive the privileges and immunities granted to it by + * virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. + */ + +#include "grib_api.h" +#include + +static double values[] = { + 2.78565217180879301395e+02, 0.00000000000000000000e+00, 8.38367712240454920902e-01, 0.00000000000000000000e+00, -7.22151022768738215518e-01, + 0.00000000000000000000e+00, 1.54447137639483056404e+00, 0.00000000000000000000e+00, -8.10351659720698336287e-01, 0.00000000000000000000e+00, + 6.45930713064333694717e-01, 0.00000000000000000000e+00, -1.73417955255619204991e-01, 0.00000000000000000000e+00, -9.09351867483918913093e-02, + 0.00000000000000000000e+00, -3.00845517613623769648e-02, 0.00000000000000000000e+00, -1.97522108657794209785e-01, 0.00000000000000000000e+00, + 1.45006392199800160370e-01, 0.00000000000000000000e+00, -6.92319525648382033678e-02, 0.00000000000000000000e+00, -3.37495245995370396486e-01, + 0.00000000000000000000e+00, 2.93969252845082296144e-01, 0.00000000000000000000e+00, 5.22791676917648828748e-02, 0.00000000000000000000e+00, + -4.31020055899014042922e-02, 0.00000000000000000000e+00, -5.34277055570271386387e-02, 0.00000000000000000000e+00, 1.57725778753141337996e-01, + 0.00000000000000000000e+00, -1.38048966071163903280e-01, 0.00000000000000000000e+00, 7.95936533884674390915e-02, 0.00000000000000000000e+00, + -5.08988096408558021722e-03, 0.00000000000000000000e+00, -3.17356690459940984916e-02, 0.00000000000000000000e+00, -7.97854100625838141836e-02, + 0.00000000000000000000e+00, -1.25759522048120825355e-01, 0.00000000000000000000e+00, 1.41095505007377608475e-01, 0.00000000000000000000e+00, + -2.90041709701537933630e-02, 0.00000000000000000000e+00, 1.16118748810570035501e-01, 0.00000000000000000000e+00, -1.42650207377574778089e-01, + 0.00000000000000000000e+00, 6.63859656709936268859e-02, 0.00000000000000000000e+00, -8.43008351127146754456e-02, 0.00000000000000000000e+00, + 8.11805506119530340126e-02, 0.00000000000000000000e+00, -2.92579106275835476580e+00, -2.73257362252726822283e-02, -2.31503061096297768628e+00, + 2.98481883110496337697e-01, 2.32422954464165210098e+00, -9.36624989809203695179e-02, -1.13647173814196378316e+00, -4.24970312443540054748e-01, + 1.26754821773852066613e+00, -7.20859094680278700285e-02, -9.51306475614490221204e-01, 6.14867632012408793507e-01, -9.85091038732955892598e-02, + -6.34523215803268758606e-02, -6.78708060411115782218e-02, -1.35311523427619539994e-01, -9.04935301775932621204e-02, -9.78101007785831533248e-02, + -9.81097374871810895547e-04, 1.80616098092357818539e-02, -2.64791786212412172397e-02, -4.76558495508507054539e-02, -1.96341419265033012564e-01, + 3.40906457596743608929e-02, -7.81262194523913988675e-02, -1.90201799489863598858e-01, 2.25178750048809411810e-01, 2.86704542482240504198e-03, + -1.19805102746233238520e-02, 1.68969022321052431135e-02, 5.64738950483129331648e-02, -1.39757566954298140249e-01, -7.44084433787887133960e-02, + -1.79448737058076172868e-02, 6.14333363921325120716e-02, 4.42090839521651901567e-02, -1.59177621940344016238e-02, -2.45259140787589882682e-02, + 4.14722887926062475095e-02, -9.08467249754976585718e-02, 7.32634132869659504550e-02, 3.98083190502361433660e-02, -6.23330309466623433412e-02, + 3.23061735747387016038e-02, 5.24308078374175548508e-02, -6.52853670335678676340e-02, -4.74582205706168894221e-02, -2.57646217050176394581e-02, + 4.85326601320503064896e-02, 4.57836316487753580695e-02, -1.61395013977115135695e-02, -4.31399408593192076888e-02, -1.72982609465274252136e-02, + 2.05141743795376405024e-02, 5.13479785723864323721e-02, 2.02753965345298277356e-02, -9.62325942856205422682e-03, -1.21013000039295196344e-03, + 4.61377663687331032727e-02, -6.90153405245983028390e-04, -1.66104804699747843344e+00, 1.79666906865138087390e-01, 7.23133875761683864170e-01, + 4.15103729262486009777e-01, -3.04359433047895144853e-01, -1.33601223735748869670e-01, 1.11896993727331572899e+00, -5.97930191729183602156e-01, + -3.21482407719980045613e-01, -6.44440729482515239912e-02, -1.39643167588630684461e-01, -7.87344252201049310536e-02, -2.74194962741515224636e-01, + 3.16014987883590156570e-02, 2.61916687188788577245e-01, -2.29041295889389484586e-01, 1.37413993896893793512e-02, 1.02848928276271345261e-01, + -8.45943398257167356036e-02, -8.55836430183285895579e-02, -2.14692485939022847941e-02, -5.00660400534810728912e-02, 4.10286932308298671335e-02, + 5.98356967342531728682e-02, -6.87268417209678655899e-02, -1.00834342061879356223e-01, 2.89946855441678558174e-02, 6.84096422422015987275e-02, + 7.90905646811665974383e-02, 1.22761627402924594632e-02, -7.19296897992387496146e-02, -1.19563518571031840443e-01, 3.53949764125303933948e-02, + 3.49389806984224948749e-02, -1.34556768717593006057e-01, 1.30036738800839157815e-01, 1.47453022488737178763e-01, -1.75187106897877128975e-02, + -5.71655857598896560701e-02, -2.22513683371899778640e-02, 5.11984135243400070858e-02, 4.32198440146361120839e-02, -3.79006811678369512353e-02, + -1.61948869817943215399e-02, 5.87864730303968852088e-02, 7.56143666040565154418e-03, 3.79735451815043784096e-02, 4.88357571184367539319e-03, + -3.44600211423619568266e-03, 8.45175251030964858057e-03, 2.06501052974025246789e-02, -2.27945980601942863042e-02, 7.52792623890808781928e-02, + -4.07335076464383702421e-02, -1.22373247319515162691e-03, 7.12818582736400585542e-03, -2.08797409246280901707e-02, 2.35344435031375059930e-02, + 5.38553837448995376125e-02, 2.29385900837120154661e-01, -3.60512186055045147359e-01, 4.09262094434219958483e-01, -1.43204915316633707434e-01, + 1.76661646314910159017e-01, 1.59424540157772631765e-01, 1.19996653025061628117e-01, 9.74032138671445946176e-02, 8.01756516767066496065e-02, + -4.22092435868048232450e-01, 3.42598707334977881089e-01, 7.26427774784764446192e-02, -1.92869792680440410582e-04, -9.14800737566894561770e-02, + 1.86904852575672325576e-01, 9.03785536307215725538e-02, -8.70628859333670845899e-02, -1.20357023393743836626e-01, 1.30276821268167974921e-01, + -5.50418496727855255379e-02, -1.39930929689677463479e-01, -4.10997318303747902202e-02, 1.66027061444833590187e-01, -3.31025873454900559922e-02, + 5.45967001368218574076e-02, -1.86051192758042188702e-01, 3.57669212138109621213e-02, 1.96823682403928168494e-01, 1.12736638944959083330e-01, + -1.18563060708320622272e-01, -7.11264215849067293895e-02, -3.33098969956449747487e-02, 4.88100702343404121986e-02, 2.04094083090545080905e-02, + 7.78285563663724117012e-02, -4.14113893806803898268e-02, 1.26375672481289953730e-02, 1.38745116741378599068e-01, -8.57558938152793923115e-03, + -9.29289689333271246019e-02, -8.27276771926104548260e-02, 5.84956615429012907748e-02, 2.29399633044502938156e-03, -2.09824524198216422546e-03, + -2.30538708704958079931e-02, 3.77132043821169771203e-02, 6.53337758882697045015e-02, -3.06667712165429387494e-02, -1.14650515581519504144e-02, + 1.46194883433694872849e-02, 3.46636747707448856712e-03, -4.35546278336838635359e-02, 6.29051255528407793349e-02, 6.12210568933847180256e-03, + 2.07571937975545607602e-02, 3.35768305063385619214e-01, 7.46266949448459948613e-01, -6.72463631746016698987e-02, -1.94536700956528363360e-01, + -2.75088750614828209118e-02, 1.42328699967799371384e-01, 3.35288125725375085739e-01, 1.29661987766008346412e-01, 2.90956042046801172107e-02, + -2.05442280573112395770e-01, -9.57252926974513779212e-02, -9.10355774240597659386e-02, -1.25784172798783761005e-01, 1.12460127036075691054e-01, + 9.44013754824246931197e-02, -6.05135930061245497225e-02, 9.42673278665148578481e-02, 2.00615512602382500829e-01, -5.92185875904504069323e-02, + -2.28592246943101873313e-01, -1.07412950490968162054e-01, 2.20172956055192214908e-01, 3.33294698669218958376e-01, -4.44283179185198731642e-02, + -1.01766394690480529994e-01, 1.17472184755037761805e-01, 1.04892483649878465179e-01, -6.62468314716531808672e-02, -2.45565086356498013531e-03, + 4.79072727765457034854e-02, -7.97766729243851169251e-04, -2.33714338875874692858e-02, -2.56642787088907850523e-02, -9.62514763421860042314e-02, + 3.99383399281938444858e-02, 2.88865653017884548015e-02, -5.15182520475396393822e-02, 8.26498791523299636275e-02, -2.98742841129583554249e-02, + -8.28182978045203938011e-02, 3.14455026979475749105e-02, -1.53345808562610789669e-03, -3.62400610998830294274e-02, -2.51728077975302867719e-02, + -3.02379015962623703961e-02, 2.68910770206758423240e-02, -8.22634968902352312070e-03, 3.66544933660152699728e-02, 1.32356634436242674713e-02, + 3.21880247207419244518e-03, -1.97571016662111687001e-02, 5.93796945717029508310e-03, -4.31413602924163308572e-02, -2.72339719264069676785e-02, + -1.87274725743593273286e-01, 1.39283127485721136551e-01, 4.74963034217010249272e-01, -3.42073553333540392174e-01, 4.83885077044606606855e-02, + -2.59068005795831224347e-01, -2.13264680765766156956e-01, -7.36008484860203593403e-02, -8.13152420843461926081e-02, -1.21927665578479005326e-02, + 1.79904544651649317411e-01, -1.09959740517953624694e-01, -2.22065490779929819443e-01, 7.14015849729179447047e-02, -5.85031872787839662964e-03, + 9.72943249874637094976e-02, 1.58464145663301525513e-01, -6.23660570620122936547e-02, -2.05086286960385583145e-01, -5.07929431274403847540e-02, + 4.21897204870116185327e-02, -6.99935466206487028051e-02, -6.71348953496629374804e-02, 1.65743074443523596972e-01, 8.56850642116062655163e-02, + -1.19953810412321809631e-01, -7.40173516101229334030e-02, 1.18865945768013535344e-02, -7.71584669380707965924e-02, -6.31283399388396088137e-02, + -1.45882854372074655114e-01, 6.29307315713034526317e-02, 1.48912624660626508738e-02, -6.72819324032104260080e-02, 3.22547499735358483841e-02, + 4.97387743825052491831e-02, -5.43073271907661761504e-02, 1.52590958854153246893e-02, 2.92721489192738311066e-03, -1.87663839736718872364e-02, + -3.80050872053503069684e-03, 5.91273447672226934446e-02, -2.83684585809016896404e-03, 1.70512827209476636181e-02, -1.44259815516434488497e-02, + -8.06597987912826830392e-02, 5.19954562777717940736e-02, 1.09504480128524081528e-02, 1.26439885486616093030e-02, -2.34593647937779382559e-03, + 2.47413111762442641806e-02, -6.13559850860111253429e-03, -6.05626633742831349538e-02, -1.98467175793774985859e-01, 3.18979113074946862838e-01, + 6.23356771079433893967e-02, 1.30138108749532965813e-01, -1.05230501466137910116e-01, -6.87754575227078057686e-02, -4.22436887367944324811e-02, + 7.57926459563205562331e-02, 4.78504387573109452036e-02, -2.22681497547184761854e-02, 8.46951897073950493722e-02, -7.44317622658197293462e-03, + -1.89157622212636281067e-02, -6.19719693803440774271e-02, -8.37644347918033160827e-03, 1.32514981682897603488e-01, -1.09126775888557903116e-01, + -6.47849222903969929055e-03, 4.65591560634076861991e-02, -2.24234845462696341656e-01, 7.29582023256248463072e-02, 2.23965783883813690514e-03, + -5.19349169152241198211e-03, 2.25395864383192284786e-02, 9.10694488527918760701e-02, 7.36945737152017443794e-02, -2.16337158651918673447e-02, + -5.35436418307164291308e-02, 2.40342905027485786995e-02, 4.81946656785084762142e-02, -3.06521617296798450092e-02, -4.07904977042986977009e-02, + 6.32948267919029999851e-02, 4.53192474361057834331e-02, -2.29008122631283589365e-02, 1.62576382380966721897e-02, 3.82842631619570161750e-02, + 3.52346794652655739832e-02, -3.95023093184828782976e-02, -3.15659719925446974331e-02, 4.02431236080928178556e-02, 2.45684617558553607120e-02, + -1.93194945947791144047e-02, -2.48322169406506726430e-02, -1.13621415403786386183e-02, -3.31487361399904478798e-02, 1.68675563537488623633e-02, + 4.01325091519489432490e-02, 4.14338905584917469027e-02, 1.31273776950603299207e-01, 7.16276979245435152510e-03, 5.02985992698696121606e-02, + 1.78045915098635626483e-01, -1.86314001159308406663e-01, -1.35151434606926579285e-01, 1.69947309928447143346e-01, -8.37791941109623933270e-02, + 2.41195207762586322220e-02, 1.26309574838379373718e-01, -2.00571859613532021971e-01, -1.63465438373802895988e-01, -6.96363659600393730686e-02, + 1.14524330229191645403e-01, 7.12890316169484949960e-02, 5.80381889626466196397e-03, 4.93537868059431283907e-02, -8.44257746020753430116e-02, + -1.41929196365875275043e-02, 8.22387462453117029648e-02, -8.50093260265970818157e-02, 2.71192346905003156543e-02, 9.03395551304754379496e-02, + -1.71516448697893314490e-02, 8.18953521749132690166e-02, 1.11511604557867297777e-02, -4.78373059022189212053e-03, -9.53023452930306103070e-02, + 5.38686323249407891800e-02, -3.84678611713600085431e-02, -5.04713920668615947246e-03, 6.80811773653991481048e-02, -3.33049215638338835799e-02, + -5.28099294606356045589e-02, -7.54699335274512245197e-02, -5.40781758032556764126e-03, 8.29793590010352716257e-02, -5.97312971039127629802e-02, + -2.71427292677366080453e-02, -6.36007393417800138968e-03, -6.21102608067901958838e-03, 1.20982775517295207401e-02, -1.17366629581995736420e-02, + 3.79477291991657597614e-02, 4.16172556173764890408e-02, -4.15482630953573559007e-02, -2.10178763811884848633e-02, 2.25384141584651191692e-02, + 3.26544906456272876483e-01, 1.14875244914279722730e-01, -1.66631737648658934114e-01, -6.36733988328790686401e-03, 1.05207112351735077027e-01, + -2.56656713269180158932e-01, 6.60485459910778310855e-02, 4.17130045127815929362e-02, -7.37791748174861372611e-02, 7.60523512741725499220e-02, + -4.55959006761720783696e-02, -2.36680526647207629953e-02, 1.10634117950077798254e-01, -2.08651727388676766495e-02, -7.64711683504649686327e-02, + 8.13422913278145920390e-03, 7.93342835009738511776e-02, -1.36145811582776665727e-01, 3.71088391279384144372e-02, 3.21562962981391253781e-02, + -1.14387894243613869039e-01, -1.51631103622234392203e-03, 5.78217444722389575795e-02, -4.71124806075210594836e-03, 1.51729749910356030707e-02, + 9.74258177618566034717e-02, -1.10011849267590264279e-01, -9.55723084321756233273e-02, 5.40108889439728720450e-02, 2.20372759806924181647e-02, + -3.12940070328804331723e-02, 7.31829279647891323135e-02, -5.03897879848870661190e-02, 3.56857218059479508465e-02, 2.77447201596329011408e-02, + -2.09552594775335998545e-02, 1.43951419283830060747e-02, 5.39902985778747748769e-02, 2.12233791683978864628e-02, -1.06021857317053335573e-02, + -1.29173575974317281917e-02, 2.33645540297061204277e-03, 2.61896609343018451146e-03, -1.14595932568608803448e-02, 3.56767949738183843926e-04, + 2.01246788122515993247e-02, 1.99364141245472692443e-01, 1.02386975283006720350e-02, 1.46491539292862016364e-01, -2.92173375533333390397e-01, + -2.79882649001711690528e-02, 7.89598614348374083782e-02, 1.73932768517874730696e-02, -1.69430993280276553925e-01, -3.49439319604140236075e-02, + -2.41776119023419042153e-02, -1.19007451411664612329e-02, 7.52785183419538428407e-02, 8.00732324924654653708e-02, 5.80254140930885203842e-02, + -2.99344525092792301812e-02, 2.00701049258613407889e-02, -4.85173141225875570459e-02, -1.24597145763424926868e-01, -1.51901004582441958440e-02, + -1.61680779553563594431e-02, 6.85542113027582250551e-02, 4.25745326736892623631e-02, -1.06278911193231559440e-04, 9.76285197536541464458e-03, + 3.87428701891937912749e-02, -2.30639988244256723127e-02, 6.36890026034679732764e-03, 3.02413182033626840028e-02, 3.88836672433736253024e-03, + -9.08662711955680046927e-02, 4.01745378306784250988e-02, 1.03266559093635329480e-01, 2.14979137912293429002e-03, -5.41722635351460576891e-02, + 2.61282597269434195553e-02, -1.88195226737477086520e-03, -2.19435523135619973967e-02, 1.32921056129775890658e-02, -1.39584001825611234843e-02, + -2.33277834487258597940e-02, 3.20387242392535485924e-03, -2.56605748623718842027e-02, 3.00558911102263848214e-02, 3.05648112133436906934e-02, + -2.59104772664633942192e-03, -3.60234150814368395133e-02, 1.89051474579463585357e-01, 7.67659810167127809599e-02, -1.24703387595890141659e-01, + 1.16494243349512860419e-01, -1.23273291315800521267e-02, -8.52472265397304362899e-02, 4.85995814815475199455e-02, -4.91533864052588892468e-02, + 7.09392924651690154336e-02, 3.86918200904741022006e-02, -6.05870726251201280332e-02, 1.26662290542081668043e-01, -1.26300238339170367574e-02, + -2.77371050405810226636e-02, -5.43586513698262885352e-02, -7.86459616541178574423e-02, 6.23528587727540037355e-02, -4.79677851814970662714e-02, + -6.51687150996678454806e-04, 5.76336385114276719688e-02, 1.44542478484825671209e-02, 3.16928492510423695516e-02, 1.45017405736592441823e-02, + 3.77649866255029068030e-02, 2.76488049642000443748e-04, -6.60577998684190731415e-02, -1.43760686140608738570e-02, 3.59108661833638931338e-02, + -1.96544252969081192917e-02, -3.14635605928988426605e-02, 2.73136448740384021883e-02, 4.81895944089887409700e-02, -1.41798371596522010049e-03, + -2.76940211432370950173e-02, -1.79321359038478039816e-02, -8.04857916575939247306e-03, 6.12601355103674924743e-04, -3.04826514707566033346e-02, + 3.97737096905840994271e-03, 2.93070515299252015717e-02, -1.68977509366934480761e-01, 3.32231696372570911580e-03, 1.25024830498748684704e-01, + 1.14603027997231002311e-01, -1.00188353252315814901e-01, -9.84663913699934667534e-03, 4.24578628782099620764e-02, -1.37172078837733080192e-01, + -3.49285758694722614504e-02, 5.10266827849673310080e-02, -8.71727496405721724582e-02, 6.53026570180906262841e-03, 8.81977524226997683376e-02, + -6.34979748614215300240e-02, -6.75922576223946108831e-02, -9.09058087393600777748e-03, 8.58354921744265697559e-02, -3.11903783366274736655e-02, + 2.00028673474334506288e-02, 2.51992069666158204078e-02, -1.15065874504069552003e-02, 1.90952708533619654185e-02, -1.42994317615683774053e-02, + 8.38885300224805237346e-04, -3.82027498742033497225e-02, -3.67441895491770198490e-02, 2.50992455595355073994e-02, 7.01187400269996513602e-02, + -5.54375280311450654991e-02, -4.38519736099493434578e-02, -7.84180536804670973161e-03, 2.15733075413469983783e-02, -1.13430180042112986952e-03, + 1.43263625967320618049e-02, 3.38406892444173892920e-02, 2.61661740894084809961e-02, 1.89963433472952851477e-02, 4.11523810167366797808e-03, + -4.07083694738235874616e-03, -2.14250124636823323365e-02, -2.51950730394823532721e-02, 3.42343547054715646727e-02, -1.60995215305804545425e-01, + 1.46286861154573760713e-01, -1.42470612032240401268e-02, -8.74980046536548150549e-02, -4.25453860188948623788e-02, 1.17182553786398857554e-01, + -1.00991016453327253632e-01, -7.91738577441953306213e-02, 5.29573588185536445194e-02, -2.21614298461902045623e-02, 3.58602587208211864844e-02, + 2.52438926833398191718e-02, 9.41877819477729971709e-02, -6.48116676539685077074e-02, -6.92622200130770665494e-02, 3.44271533520238565140e-02, + -2.14712430694437191037e-02, 1.72316382693014427674e-02, -2.66608743584075963406e-02, -2.10082338877249467923e-02, 8.91565305172099635544e-03, + -1.23413533420058361967e-02, -6.55699200671947673991e-03, -6.50539642022832619028e-03, 1.51124007337151353147e-02, 5.20370287348198221067e-03, + 2.44544519960917354495e-02, 8.17735780033393942767e-03, -3.77816692303542945967e-04, -2.75580902253722351269e-02, 1.61366174765763085996e-02, + -2.54225642602667507852e-02, -5.68510449978476550825e-02, 1.03315681722852791002e-02, 5.48232041684815468024e-03, -3.22722809472682503618e-02, + 1.68859338049149008965e-02, 6.21665123569529881609e-02, -1.49734091796970530952e-01, -1.69848035269845681894e-01, 7.28166844225807269320e-02, + -9.38546660994197951000e-02, -5.98972210309676594830e-02, 1.60189670628219316129e-01, 9.68228235109596380159e-02, -1.14699218288179388692e-01, + 5.22495478003770982833e-02, -2.50191304829539204468e-02, 2.77221049132821764638e-02, 5.25053174572039649259e-02, 4.67049795137407172674e-02, + -4.25063623233455645245e-02, -7.79015735544906322285e-03, 8.35061691171900405406e-02, -2.77565926301914164820e-02, -3.55176007501909543618e-02, + 5.22884040187019810686e-02, 4.47524306813492939866e-03, 3.34858736182796073999e-02, 2.18065090398272508343e-02, 3.96249948248765804237e-02, + -1.75050000687652293485e-02, -5.30639824787136182155e-03, 1.31658536276919365532e-02, -3.54893637807925724226e-02, 1.44838563901157494143e-03, + 2.53219139441511024990e-02, 1.51209661740110620776e-02, -3.18928979311501516886e-03, 8.08035892351891861518e-03, 1.49482343348299774599e-02, + -4.67401524501743839690e-02, 8.81785937471118302922e-02, 1.09443858484468511949e-01, 9.61675669132599497679e-02, -7.39592182705455791769e-02, + 8.87508822651789097691e-02, -7.91714174638406542606e-02, -1.25898861391198962911e-01, 8.84171948090256565322e-02, 3.93482215277929509023e-02, + -6.26211797345710557972e-02, 3.11866892937116280127e-02, 1.54206070094080910371e-01, -7.15962414998223273255e-02, 4.04187883182457047271e-02, + 3.87320351160306483584e-02, -2.13087169719965857650e-02, 2.04352330201420621936e-02, 3.60324068311299108847e-02, -6.71927151509099790383e-02, + -5.86355402262732916530e-02, 1.95738272971190847838e-02, 1.19986570986449735121e-02, -4.16517345466257682407e-02, 4.57582247311850084937e-02, + -5.64919874467361762815e-02, -2.96306742467898837426e-03, 3.45918894384134034681e-02, 9.37965919443191353810e-03, -5.31266846947417263614e-03, + 7.44645101900219368030e-03, -8.16779483872519251886e-03, -1.49486275306286754694e-02, 5.40961754497425346966e-03, -6.07743621110200162722e-03, + -2.86027271239626297572e-02, 9.28607307596479303324e-02, 1.15334393912762608880e-01, 2.22619048233438435180e-02, -2.81988516854455167904e-02, + -3.27953711282213400402e-02, -7.26623103447188861681e-02, -6.21318073281297983401e-02, 8.15860644657136341307e-02, 1.79600966703069159225e-02, + -8.26984672948943289050e-02, 2.66922837734803533594e-02, -5.62012642483699781382e-02, -7.54479658771655264937e-02, 5.63921972458279810447e-02, + -8.88808665037604112014e-03, 4.49098738994229513752e-04, -1.64624335502902702233e-02, 5.00902714527058645633e-02, 1.06477908341492902983e-02, + 2.19722684831073211686e-02, 9.27897245497274342219e-03, -1.38071463629181757221e-02, -3.25812324194547434097e-02, -3.02235182235052954325e-02, + 2.70211283173303479233e-02, 1.78695725115783597692e-02, -1.97856995310294429824e-02, 2.14583909244959528118e-02, 8.31160096115654556392e-03, + -7.96044059263601583298e-03, -7.03711411983747731069e-03, -7.52245974116911853002e-02, -7.17896739726268801052e-02, 1.07396425196690896431e-02, + 7.25906809169843403318e-02, -9.45023972725838740105e-02, -6.71199808984563744962e-02, 7.35264690791543329418e-02, 2.98610952212447697263e-02, + -7.52442146662268135371e-04, 9.23976694955527116937e-02, 4.60854381027500578649e-02, -5.81010137429742931636e-02, 5.19935015121687146844e-02, + -4.28751313838296663206e-02, 2.68412731409498166169e-02, 9.92974085166531926505e-03, -1.41649957602334279627e-02, 8.49484772510930227774e-03, + 1.60608334268962397659e-03, 1.53969582107269485627e-02, 2.53654424332110106644e-02, 2.20836817019017840613e-02, -4.96400766026642691758e-03, + -4.63895546537213768895e-03, -3.69755978269468085773e-02, -4.24220279369531480529e-02, -2.80842055465305032516e-03, 3.43511446156298310903e-03, + 1.50427480682660263955e-02, -7.64781824357823984684e-03, 1.55431405065905338392e-02, -5.28685500234718219748e-02, -4.81425552620864186104e-02, + -6.98904426260522071424e-02, -5.69063762150740712342e-02, -2.01599484306710097226e-02, -7.08142573082899164094e-03, 1.60387886663503793916e-02, + -8.26785713680359968247e-02, 2.82003440014560874394e-02, 2.73932418290509169245e-02, -3.17992788170617102228e-02, 5.85714331111230612770e-02, + 5.86577384557991701741e-02, -2.75299012996250893476e-03, -8.45195718330371027760e-03, -1.36279044444791216234e-02, -1.13870143130110085955e-02, + -9.47170994530230694886e-03, 8.38589777991547574709e-03, -2.44907795135516845320e-02, -1.88112311627625997112e-02, 1.66825300517051550164e-02, + -1.40472696715355817310e-02, 4.07602998308370448322e-02, 4.52331228574007898624e-03, -7.41516905358174677892e-03, -1.90839799893427405908e-02, + 1.37235319648593090402e-01, -5.07166887609150802974e-03, 1.66347985382777688312e-02, -8.94058332794331472870e-02, -9.96617048317507969735e-03, + -3.39998201752246195784e-02, -2.72752305938337435975e-02, 1.41116199971288980557e-04, 1.20136294077674496417e-02, 1.21046096252801875515e-02, + 4.67374536088999582156e-03, 1.76093997807116745338e-03, -6.49132489663982719524e-03, 6.34253853067380107822e-02, 4.20234078454048282092e-02, + -3.39907942260764435460e-03, -3.13684078013621997494e-02, -5.59725664044557688626e-03, 1.46041344723689698465e-02, 8.15628093364801319554e-03, + 8.81123245682426982361e-03, -5.36576704715815769320e-02, 4.13564181087699121731e-03, 6.66570175208870251832e-03, -3.06753731552251258582e-03, + 3.24260047333155276839e-02, 3.78357123622976698057e-03, 1.22559252382635042178e-01, -3.26726534731656623189e-02, -4.57263244390499479231e-02, + 1.23161267442891183416e-02, 5.60898223233850107272e-02, -2.07946281596515653023e-02, 3.30973059009364162231e-02, 3.79099335956614089116e-02, + 3.02099801034241572523e-03, -4.11260349557933183040e-02, -2.09662321613402133358e-02, -1.35059512400454856396e-02, 2.11033519015176411482e-02, + 2.49738730383721862366e-03, 1.80042474049896738739e-03, -4.21972590754290111104e-02, 7.84304881856809008034e-03, 1.28611420258033324476e-02, + 1.53304442551651341764e-02, 1.14809771240723442615e-02, 5.45508167269171534430e-03, 6.03486224308978115582e-03, -6.17922023172545829134e-03, + -1.06402780093771354153e-01, -1.06566854283863088337e-01, -1.56672555450536946098e-02, -4.17617234129553371869e-02, -5.84327485785076233826e-02, + 1.72707037153512245331e-02, -4.27180361478920241763e-03, 3.83975587930814599158e-02, 7.18917519991502662613e-02, 1.73599075858622414748e-02, + -5.06102136889801795805e-02, -2.28302899957008066656e-02, 4.05449577890660689539e-02, 6.05903063932164507449e-03, 1.42495320779388468663e-02, + -1.46505630681158707102e-02, -5.51579872998721708333e-03, -2.03950903125686006101e-02, 1.71600095189964607645e-02, 3.10141280680510215972e-02, + -6.92078952483923121042e-03, -1.25723580586239959064e-03, 4.83571917759556130223e-02, -1.08848884748079619000e-01, -7.62227492845969547414e-03, + 3.98614872899268266049e-02, 2.51496883852979809248e-02, -7.45157236466782307849e-02, -2.54315956467565489063e-02, 5.86785913495517369443e-02, + 6.07261945507166309849e-03, 2.37710782485035070077e-02, 2.40958099664499367232e-03, 8.00723308014901838381e-03, 5.57202821065413758661e-02, + -6.18738592105032812751e-03, 1.57471692604664484198e-03, -2.08797558382940772262e-03, -2.73200765442419279960e-02, -2.06208586891517380024e-02, + 6.40309150046379439887e-04, 3.34147637908005640250e-02, -2.31245128603038314907e-02, 3.13805487530873783442e-02, -3.76503956682762222496e-02, + 3.82033717675601958152e-02, 6.08549869979059313008e-02, -1.40664950951139375995e-02, 1.20432450888018800772e-02, 4.11120541709728091334e-03, + -1.31431111647770104689e-02, -2.16767866450208908369e-02, 2.36444182462271527620e-03, 4.15518391649481646372e-03, -7.19797119986096724242e-03, + 3.63099914737792378583e-02, -1.71114207061806439247e-02, 9.12094809288829279359e-03, -2.00581984724530065778e-02, 4.18093901030532240359e-03, + -1.54353999486445108563e-02, 3.77632145097120189292e-02, -8.67412239218371683425e-02, 3.74024476837445662980e-02, 7.02791955646850374784e-03, + -3.07387087745127421390e-03, 1.26170642077405754933e-02, 7.19502473862098246987e-03, 5.00348237158451253359e-02, 6.05821676660315069918e-03, + 2.81657375913338843543e-02, -2.75046494305255621871e-02, -3.32847608680125889302e-02, 4.92458523340539092161e-03, -6.97895182233836727098e-03, + -1.84078432809154611538e-02, -2.55254058040131799612e-02, 4.38596283726821068588e-03, 7.97305689082921688338e-03, -6.65251068675700718558e-02, + -2.43074168732615144076e-03, -3.21551055785660854641e-03, -2.14057386820096506863e-02, 1.73404829493880863200e-02, -2.21788279126988834011e-02, + 3.67289476360874028726e-02, 2.88921423109056961509e-02, -4.36590369050650264210e-03, -3.38015966458028857197e-03, -1.47872402615952351634e-02, + -2.67937691397940741522e-02, -4.01628891758317591032e-02, 5.37104159736995767638e-02, 3.38881421250558784175e-02, -1.94731556323654853013e-02, + 6.80080451079642287447e-04, -1.16224021866609874415e-02, -2.84314312441163938305e-02, -3.10403528556473483346e-02, -1.52614844050795953750e-02, + 1.46865039960839046523e-02, 7.74337973212646264037e-03, -2.75213939675030445919e-02, -3.12476741289728875139e-02, -3.75401476285800936306e-02, + 4.53067917901101985256e-02, 4.75497506720418041531e-03, 1.25627944556748021021e-02, 4.03046169919628882727e-02, -3.29378978115561424356e-02, + -2.51499548928088654393e-03, -1.99564144518295516484e-02, -2.63938123636600005528e-02, -1.84979990476826575141e-02, -4.75891539387540141171e-02, + 1.70189645456799328038e-02, 2.90621732209333551167e-02, 1.69695748997654785595e-02, 6.00578109434020054880e-03, 3.77405846672976205691e-02, + 1.04426223615697640751e-02, -7.42237607930411715310e-04, -1.51118572042552353624e-02, 1.29952623161545995079e-03, 1.26799047323642617713e-02, + 1.05278997248968164691e-02, 2.29682654055416574090e-02, 1.28888330591014361320e-02, -1.03014730669756075787e-02, -4.83421710205830541113e-03, + -1.90040068302814585399e-02, -4.31802671175361696410e-03 +}; + +#define ILCHAM 992 +#define MTRONC 30 +#define STRONC 10 +static const char* TEMPFILE = "output.grib_sh_spectral_complex.grib"; + +int main(int argc, char* argv[]) +{ + size_t len, size; + grib_handle* h; + double zval[ILCHAM]; + int i, m, n, k, err; + FILE* fin = NULL; + FILE* fout = NULL; + const void* buffer = NULL; + + GRIB_CHECK(((h = grib_handle_new_from_samples(NULL, "sh_ml_grib2")) == NULL), 0); + + GRIB_CHECK(grib_set_long(h, "pentagonalResolutionParameterJ", MTRONC), 0); + GRIB_CHECK(grib_set_long(h, "pentagonalResolutionParameterK", MTRONC), 0); + GRIB_CHECK(grib_set_long(h, "pentagonalResolutionParameterM", MTRONC), 0); + + GRIB_CHECK(grib_set_long(h, "bitsPerValue", 16), 0); + + GRIB_CHECK(grib_set_long(h, "subSetJ", STRONC), 0); + GRIB_CHECK(grib_set_long(h, "subSetK", STRONC), 0); + GRIB_CHECK(grib_set_long(h, "subSetM", STRONC), 0); + GRIB_CHECK(grib_set_long(h, "unpackedSubsetPrecision", 1), 0); + + printf("Encode values...\n"); + GRIB_CHECK(grib_set_double_array(h, "values", values, ILCHAM), 0); + + /* Write to a temporary GRIB file */ + printf("Save to GRIB %s...\n",TEMPFILE); + fout = fopen(TEMPFILE, "wb"); + GRIB_CHECK(grib_get_message(h, &buffer, &size), 0); + if (fwrite(buffer, 1, size, fout) != size) { + assert(!"Failed to write data"); + } + fclose(fout); + + printf("Decode values and compare...\n"); + len = ILCHAM; + GRIB_CHECK(grib_get_double_array(h, "values", zval, &len), 0); + + /* Compare our values */ + for (i = 0; i < ILCHAM; ++i) { + const double diff = fabs(zval[i] - values[i]); + if (diff > 1e-5) { + fprintf(stderr, "Unpacked value different: i=%d values[i]=%g zval[i]=%g\n", i, values[i], zval[i]); + return 1; + } + } + + for (m = 0, k = 0; m < MTRONC + 1; m++) { + for (n = m; n < MTRONC + 1; k++, n++) { + /* Check sub-truncation was fully preserved in IEEE-32 */ + if ((m < STRONC + 1) && (n < STRONC + 1) && (((float)zval[2 * k] != (float)values[2 * k]) || ((float)zval[2 * k + 1] != (float)values[2 * k + 1]))) { + printf("Unpacked sub-truncation was not fully preserved; coefficients for wave number (m=%d,n=%d) have been modified\n", m, n); + return 1; + } + } + } + + GRIB_CHECK(grib_handle_delete(h), 0); + + /* Read in the saved GRIB file */ + printf("Load values from saved file and compare....\n"); + fin = fopen(TEMPFILE, "rb"); assert(fin); + h = grib_handle_new_from_file(0, fin, &err); assert(h); + GRIB_CHECK(grib_get_double_array(h, "values", zval, &len), 0); + for (i = 0; i < ILCHAM; ++i) { + const double diff = fabs(zval[i] - values[i]); + if (diff > 1e-5) { + fprintf(stderr, "Unpacked value different: i=%d values[i]=%g zval[i]=%g\n", i, values[i], zval[i]); + return 1; + } + } + GRIB_CHECK(grib_handle_delete(h), 0); + fclose(fin); + + printf("OK\n"); + + return 0; +} diff --git a/tests/grib_sh_spectral_complex.sh b/tests/grib_sh_spectral_complex.sh new file mode 100755 index 000000000..c890682fd --- /dev/null +++ b/tests/grib_sh_spectral_complex.sh @@ -0,0 +1,16 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh + +TEMP=output.grib_sh_spectral_complex.grib +$EXEC ${test_dir}/grib_sh_spectral_complex + +rm -f $TEMP From ddd2d5e3930f7fd01cbbfcf5884aa10d5a80dcd6 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 29 Oct 2020 16:05:40 +0000 Subject: [PATCH 112/683] Testing: refactor --- tests/grib_optimize_scaling_sh.c | 202 +------------------------------ tests/grib_sh_ieee64.c | 202 +------------------------------ tests/grib_sh_imag.c | 202 +------------------------------ tests/grib_sh_spectral_complex.c | 202 +------------------------------ tests/grib_sh_values.h | 201 ++++++++++++++++++++++++++++++ 5 files changed, 205 insertions(+), 804 deletions(-) create mode 100644 tests/grib_sh_values.h diff --git a/tests/grib_optimize_scaling_sh.c b/tests/grib_optimize_scaling_sh.c index a4cf7d770..b83d19c13 100644 --- a/tests/grib_optimize_scaling_sh.c +++ b/tests/grib_optimize_scaling_sh.c @@ -15,207 +15,7 @@ * philippe.marguinaud@meteo.fr, 2016/02 */ -static double values[] = { - 2.78565217180879301395e+02, 0.00000000000000000000e+00, 8.38367712240454920902e-01, 0.00000000000000000000e+00, -7.22151022768738215518e-01, - 0.00000000000000000000e+00, 1.54447137639483056404e+00, 0.00000000000000000000e+00, -8.10351659720698336287e-01, 0.00000000000000000000e+00, - 6.45930713064333694717e-01, 0.00000000000000000000e+00, -1.73417955255619204991e-01, 0.00000000000000000000e+00, -9.09351867483918913093e-02, - 0.00000000000000000000e+00, -3.00845517613623769648e-02, 0.00000000000000000000e+00, -1.97522108657794209785e-01, 0.00000000000000000000e+00, - 1.45006392199800160370e-01, 0.00000000000000000000e+00, -6.92319525648382033678e-02, 0.00000000000000000000e+00, -3.37495245995370396486e-01, - 0.00000000000000000000e+00, 2.93969252845082296144e-01, 0.00000000000000000000e+00, 5.22791676917648828748e-02, 0.00000000000000000000e+00, - -4.31020055899014042922e-02, 0.00000000000000000000e+00, -5.34277055570271386387e-02, 0.00000000000000000000e+00, 1.57725778753141337996e-01, - 0.00000000000000000000e+00, -1.38048966071163903280e-01, 0.00000000000000000000e+00, 7.95936533884674390915e-02, 0.00000000000000000000e+00, - -5.08988096408558021722e-03, 0.00000000000000000000e+00, -3.17356690459940984916e-02, 0.00000000000000000000e+00, -7.97854100625838141836e-02, - 0.00000000000000000000e+00, -1.25759522048120825355e-01, 0.00000000000000000000e+00, 1.41095505007377608475e-01, 0.00000000000000000000e+00, - -2.90041709701537933630e-02, 0.00000000000000000000e+00, 1.16118748810570035501e-01, 0.00000000000000000000e+00, -1.42650207377574778089e-01, - 0.00000000000000000000e+00, 6.63859656709936268859e-02, 0.00000000000000000000e+00, -8.43008351127146754456e-02, 0.00000000000000000000e+00, - 8.11805506119530340126e-02, 0.00000000000000000000e+00, -2.92579106275835476580e+00, -2.73257362252726822283e-02, -2.31503061096297768628e+00, - 2.98481883110496337697e-01, 2.32422954464165210098e+00, -9.36624989809203695179e-02, -1.13647173814196378316e+00, -4.24970312443540054748e-01, - 1.26754821773852066613e+00, -7.20859094680278700285e-02, -9.51306475614490221204e-01, 6.14867632012408793507e-01, -9.85091038732955892598e-02, - -6.34523215803268758606e-02, -6.78708060411115782218e-02, -1.35311523427619539994e-01, -9.04935301775932621204e-02, -9.78101007785831533248e-02, - -9.81097374871810895547e-04, 1.80616098092357818539e-02, -2.64791786212412172397e-02, -4.76558495508507054539e-02, -1.96341419265033012564e-01, - 3.40906457596743608929e-02, -7.81262194523913988675e-02, -1.90201799489863598858e-01, 2.25178750048809411810e-01, 2.86704542482240504198e-03, - -1.19805102746233238520e-02, 1.68969022321052431135e-02, 5.64738950483129331648e-02, -1.39757566954298140249e-01, -7.44084433787887133960e-02, - -1.79448737058076172868e-02, 6.14333363921325120716e-02, 4.42090839521651901567e-02, -1.59177621940344016238e-02, -2.45259140787589882682e-02, - 4.14722887926062475095e-02, -9.08467249754976585718e-02, 7.32634132869659504550e-02, 3.98083190502361433660e-02, -6.23330309466623433412e-02, - 3.23061735747387016038e-02, 5.24308078374175548508e-02, -6.52853670335678676340e-02, -4.74582205706168894221e-02, -2.57646217050176394581e-02, - 4.85326601320503064896e-02, 4.57836316487753580695e-02, -1.61395013977115135695e-02, -4.31399408593192076888e-02, -1.72982609465274252136e-02, - 2.05141743795376405024e-02, 5.13479785723864323721e-02, 2.02753965345298277356e-02, -9.62325942856205422682e-03, -1.21013000039295196344e-03, - 4.61377663687331032727e-02, -6.90153405245983028390e-04, -1.66104804699747843344e+00, 1.79666906865138087390e-01, 7.23133875761683864170e-01, - 4.15103729262486009777e-01, -3.04359433047895144853e-01, -1.33601223735748869670e-01, 1.11896993727331572899e+00, -5.97930191729183602156e-01, - -3.21482407719980045613e-01, -6.44440729482515239912e-02, -1.39643167588630684461e-01, -7.87344252201049310536e-02, -2.74194962741515224636e-01, - 3.16014987883590156570e-02, 2.61916687188788577245e-01, -2.29041295889389484586e-01, 1.37413993896893793512e-02, 1.02848928276271345261e-01, - -8.45943398257167356036e-02, -8.55836430183285895579e-02, -2.14692485939022847941e-02, -5.00660400534810728912e-02, 4.10286932308298671335e-02, - 5.98356967342531728682e-02, -6.87268417209678655899e-02, -1.00834342061879356223e-01, 2.89946855441678558174e-02, 6.84096422422015987275e-02, - 7.90905646811665974383e-02, 1.22761627402924594632e-02, -7.19296897992387496146e-02, -1.19563518571031840443e-01, 3.53949764125303933948e-02, - 3.49389806984224948749e-02, -1.34556768717593006057e-01, 1.30036738800839157815e-01, 1.47453022488737178763e-01, -1.75187106897877128975e-02, - -5.71655857598896560701e-02, -2.22513683371899778640e-02, 5.11984135243400070858e-02, 4.32198440146361120839e-02, -3.79006811678369512353e-02, - -1.61948869817943215399e-02, 5.87864730303968852088e-02, 7.56143666040565154418e-03, 3.79735451815043784096e-02, 4.88357571184367539319e-03, - -3.44600211423619568266e-03, 8.45175251030964858057e-03, 2.06501052974025246789e-02, -2.27945980601942863042e-02, 7.52792623890808781928e-02, - -4.07335076464383702421e-02, -1.22373247319515162691e-03, 7.12818582736400585542e-03, -2.08797409246280901707e-02, 2.35344435031375059930e-02, - 5.38553837448995376125e-02, 2.29385900837120154661e-01, -3.60512186055045147359e-01, 4.09262094434219958483e-01, -1.43204915316633707434e-01, - 1.76661646314910159017e-01, 1.59424540157772631765e-01, 1.19996653025061628117e-01, 9.74032138671445946176e-02, 8.01756516767066496065e-02, - -4.22092435868048232450e-01, 3.42598707334977881089e-01, 7.26427774784764446192e-02, -1.92869792680440410582e-04, -9.14800737566894561770e-02, - 1.86904852575672325576e-01, 9.03785536307215725538e-02, -8.70628859333670845899e-02, -1.20357023393743836626e-01, 1.30276821268167974921e-01, - -5.50418496727855255379e-02, -1.39930929689677463479e-01, -4.10997318303747902202e-02, 1.66027061444833590187e-01, -3.31025873454900559922e-02, - 5.45967001368218574076e-02, -1.86051192758042188702e-01, 3.57669212138109621213e-02, 1.96823682403928168494e-01, 1.12736638944959083330e-01, - -1.18563060708320622272e-01, -7.11264215849067293895e-02, -3.33098969956449747487e-02, 4.88100702343404121986e-02, 2.04094083090545080905e-02, - 7.78285563663724117012e-02, -4.14113893806803898268e-02, 1.26375672481289953730e-02, 1.38745116741378599068e-01, -8.57558938152793923115e-03, - -9.29289689333271246019e-02, -8.27276771926104548260e-02, 5.84956615429012907748e-02, 2.29399633044502938156e-03, -2.09824524198216422546e-03, - -2.30538708704958079931e-02, 3.77132043821169771203e-02, 6.53337758882697045015e-02, -3.06667712165429387494e-02, -1.14650515581519504144e-02, - 1.46194883433694872849e-02, 3.46636747707448856712e-03, -4.35546278336838635359e-02, 6.29051255528407793349e-02, 6.12210568933847180256e-03, - 2.07571937975545607602e-02, 3.35768305063385619214e-01, 7.46266949448459948613e-01, -6.72463631746016698987e-02, -1.94536700956528363360e-01, - -2.75088750614828209118e-02, 1.42328699967799371384e-01, 3.35288125725375085739e-01, 1.29661987766008346412e-01, 2.90956042046801172107e-02, - -2.05442280573112395770e-01, -9.57252926974513779212e-02, -9.10355774240597659386e-02, -1.25784172798783761005e-01, 1.12460127036075691054e-01, - 9.44013754824246931197e-02, -6.05135930061245497225e-02, 9.42673278665148578481e-02, 2.00615512602382500829e-01, -5.92185875904504069323e-02, - -2.28592246943101873313e-01, -1.07412950490968162054e-01, 2.20172956055192214908e-01, 3.33294698669218958376e-01, -4.44283179185198731642e-02, - -1.01766394690480529994e-01, 1.17472184755037761805e-01, 1.04892483649878465179e-01, -6.62468314716531808672e-02, -2.45565086356498013531e-03, - 4.79072727765457034854e-02, -7.97766729243851169251e-04, -2.33714338875874692858e-02, -2.56642787088907850523e-02, -9.62514763421860042314e-02, - 3.99383399281938444858e-02, 2.88865653017884548015e-02, -5.15182520475396393822e-02, 8.26498791523299636275e-02, -2.98742841129583554249e-02, - -8.28182978045203938011e-02, 3.14455026979475749105e-02, -1.53345808562610789669e-03, -3.62400610998830294274e-02, -2.51728077975302867719e-02, - -3.02379015962623703961e-02, 2.68910770206758423240e-02, -8.22634968902352312070e-03, 3.66544933660152699728e-02, 1.32356634436242674713e-02, - 3.21880247207419244518e-03, -1.97571016662111687001e-02, 5.93796945717029508310e-03, -4.31413602924163308572e-02, -2.72339719264069676785e-02, - -1.87274725743593273286e-01, 1.39283127485721136551e-01, 4.74963034217010249272e-01, -3.42073553333540392174e-01, 4.83885077044606606855e-02, - -2.59068005795831224347e-01, -2.13264680765766156956e-01, -7.36008484860203593403e-02, -8.13152420843461926081e-02, -1.21927665578479005326e-02, - 1.79904544651649317411e-01, -1.09959740517953624694e-01, -2.22065490779929819443e-01, 7.14015849729179447047e-02, -5.85031872787839662964e-03, - 9.72943249874637094976e-02, 1.58464145663301525513e-01, -6.23660570620122936547e-02, -2.05086286960385583145e-01, -5.07929431274403847540e-02, - 4.21897204870116185327e-02, -6.99935466206487028051e-02, -6.71348953496629374804e-02, 1.65743074443523596972e-01, 8.56850642116062655163e-02, - -1.19953810412321809631e-01, -7.40173516101229334030e-02, 1.18865945768013535344e-02, -7.71584669380707965924e-02, -6.31283399388396088137e-02, - -1.45882854372074655114e-01, 6.29307315713034526317e-02, 1.48912624660626508738e-02, -6.72819324032104260080e-02, 3.22547499735358483841e-02, - 4.97387743825052491831e-02, -5.43073271907661761504e-02, 1.52590958854153246893e-02, 2.92721489192738311066e-03, -1.87663839736718872364e-02, - -3.80050872053503069684e-03, 5.91273447672226934446e-02, -2.83684585809016896404e-03, 1.70512827209476636181e-02, -1.44259815516434488497e-02, - -8.06597987912826830392e-02, 5.19954562777717940736e-02, 1.09504480128524081528e-02, 1.26439885486616093030e-02, -2.34593647937779382559e-03, - 2.47413111762442641806e-02, -6.13559850860111253429e-03, -6.05626633742831349538e-02, -1.98467175793774985859e-01, 3.18979113074946862838e-01, - 6.23356771079433893967e-02, 1.30138108749532965813e-01, -1.05230501466137910116e-01, -6.87754575227078057686e-02, -4.22436887367944324811e-02, - 7.57926459563205562331e-02, 4.78504387573109452036e-02, -2.22681497547184761854e-02, 8.46951897073950493722e-02, -7.44317622658197293462e-03, - -1.89157622212636281067e-02, -6.19719693803440774271e-02, -8.37644347918033160827e-03, 1.32514981682897603488e-01, -1.09126775888557903116e-01, - -6.47849222903969929055e-03, 4.65591560634076861991e-02, -2.24234845462696341656e-01, 7.29582023256248463072e-02, 2.23965783883813690514e-03, - -5.19349169152241198211e-03, 2.25395864383192284786e-02, 9.10694488527918760701e-02, 7.36945737152017443794e-02, -2.16337158651918673447e-02, - -5.35436418307164291308e-02, 2.40342905027485786995e-02, 4.81946656785084762142e-02, -3.06521617296798450092e-02, -4.07904977042986977009e-02, - 6.32948267919029999851e-02, 4.53192474361057834331e-02, -2.29008122631283589365e-02, 1.62576382380966721897e-02, 3.82842631619570161750e-02, - 3.52346794652655739832e-02, -3.95023093184828782976e-02, -3.15659719925446974331e-02, 4.02431236080928178556e-02, 2.45684617558553607120e-02, - -1.93194945947791144047e-02, -2.48322169406506726430e-02, -1.13621415403786386183e-02, -3.31487361399904478798e-02, 1.68675563537488623633e-02, - 4.01325091519489432490e-02, 4.14338905584917469027e-02, 1.31273776950603299207e-01, 7.16276979245435152510e-03, 5.02985992698696121606e-02, - 1.78045915098635626483e-01, -1.86314001159308406663e-01, -1.35151434606926579285e-01, 1.69947309928447143346e-01, -8.37791941109623933270e-02, - 2.41195207762586322220e-02, 1.26309574838379373718e-01, -2.00571859613532021971e-01, -1.63465438373802895988e-01, -6.96363659600393730686e-02, - 1.14524330229191645403e-01, 7.12890316169484949960e-02, 5.80381889626466196397e-03, 4.93537868059431283907e-02, -8.44257746020753430116e-02, - -1.41929196365875275043e-02, 8.22387462453117029648e-02, -8.50093260265970818157e-02, 2.71192346905003156543e-02, 9.03395551304754379496e-02, - -1.71516448697893314490e-02, 8.18953521749132690166e-02, 1.11511604557867297777e-02, -4.78373059022189212053e-03, -9.53023452930306103070e-02, - 5.38686323249407891800e-02, -3.84678611713600085431e-02, -5.04713920668615947246e-03, 6.80811773653991481048e-02, -3.33049215638338835799e-02, - -5.28099294606356045589e-02, -7.54699335274512245197e-02, -5.40781758032556764126e-03, 8.29793590010352716257e-02, -5.97312971039127629802e-02, - -2.71427292677366080453e-02, -6.36007393417800138968e-03, -6.21102608067901958838e-03, 1.20982775517295207401e-02, -1.17366629581995736420e-02, - 3.79477291991657597614e-02, 4.16172556173764890408e-02, -4.15482630953573559007e-02, -2.10178763811884848633e-02, 2.25384141584651191692e-02, - 3.26544906456272876483e-01, 1.14875244914279722730e-01, -1.66631737648658934114e-01, -6.36733988328790686401e-03, 1.05207112351735077027e-01, - -2.56656713269180158932e-01, 6.60485459910778310855e-02, 4.17130045127815929362e-02, -7.37791748174861372611e-02, 7.60523512741725499220e-02, - -4.55959006761720783696e-02, -2.36680526647207629953e-02, 1.10634117950077798254e-01, -2.08651727388676766495e-02, -7.64711683504649686327e-02, - 8.13422913278145920390e-03, 7.93342835009738511776e-02, -1.36145811582776665727e-01, 3.71088391279384144372e-02, 3.21562962981391253781e-02, - -1.14387894243613869039e-01, -1.51631103622234392203e-03, 5.78217444722389575795e-02, -4.71124806075210594836e-03, 1.51729749910356030707e-02, - 9.74258177618566034717e-02, -1.10011849267590264279e-01, -9.55723084321756233273e-02, 5.40108889439728720450e-02, 2.20372759806924181647e-02, - -3.12940070328804331723e-02, 7.31829279647891323135e-02, -5.03897879848870661190e-02, 3.56857218059479508465e-02, 2.77447201596329011408e-02, - -2.09552594775335998545e-02, 1.43951419283830060747e-02, 5.39902985778747748769e-02, 2.12233791683978864628e-02, -1.06021857317053335573e-02, - -1.29173575974317281917e-02, 2.33645540297061204277e-03, 2.61896609343018451146e-03, -1.14595932568608803448e-02, 3.56767949738183843926e-04, - 2.01246788122515993247e-02, 1.99364141245472692443e-01, 1.02386975283006720350e-02, 1.46491539292862016364e-01, -2.92173375533333390397e-01, - -2.79882649001711690528e-02, 7.89598614348374083782e-02, 1.73932768517874730696e-02, -1.69430993280276553925e-01, -3.49439319604140236075e-02, - -2.41776119023419042153e-02, -1.19007451411664612329e-02, 7.52785183419538428407e-02, 8.00732324924654653708e-02, 5.80254140930885203842e-02, - -2.99344525092792301812e-02, 2.00701049258613407889e-02, -4.85173141225875570459e-02, -1.24597145763424926868e-01, -1.51901004582441958440e-02, - -1.61680779553563594431e-02, 6.85542113027582250551e-02, 4.25745326736892623631e-02, -1.06278911193231559440e-04, 9.76285197536541464458e-03, - 3.87428701891937912749e-02, -2.30639988244256723127e-02, 6.36890026034679732764e-03, 3.02413182033626840028e-02, 3.88836672433736253024e-03, - -9.08662711955680046927e-02, 4.01745378306784250988e-02, 1.03266559093635329480e-01, 2.14979137912293429002e-03, -5.41722635351460576891e-02, - 2.61282597269434195553e-02, -1.88195226737477086520e-03, -2.19435523135619973967e-02, 1.32921056129775890658e-02, -1.39584001825611234843e-02, - -2.33277834487258597940e-02, 3.20387242392535485924e-03, -2.56605748623718842027e-02, 3.00558911102263848214e-02, 3.05648112133436906934e-02, - -2.59104772664633942192e-03, -3.60234150814368395133e-02, 1.89051474579463585357e-01, 7.67659810167127809599e-02, -1.24703387595890141659e-01, - 1.16494243349512860419e-01, -1.23273291315800521267e-02, -8.52472265397304362899e-02, 4.85995814815475199455e-02, -4.91533864052588892468e-02, - 7.09392924651690154336e-02, 3.86918200904741022006e-02, -6.05870726251201280332e-02, 1.26662290542081668043e-01, -1.26300238339170367574e-02, - -2.77371050405810226636e-02, -5.43586513698262885352e-02, -7.86459616541178574423e-02, 6.23528587727540037355e-02, -4.79677851814970662714e-02, - -6.51687150996678454806e-04, 5.76336385114276719688e-02, 1.44542478484825671209e-02, 3.16928492510423695516e-02, 1.45017405736592441823e-02, - 3.77649866255029068030e-02, 2.76488049642000443748e-04, -6.60577998684190731415e-02, -1.43760686140608738570e-02, 3.59108661833638931338e-02, - -1.96544252969081192917e-02, -3.14635605928988426605e-02, 2.73136448740384021883e-02, 4.81895944089887409700e-02, -1.41798371596522010049e-03, - -2.76940211432370950173e-02, -1.79321359038478039816e-02, -8.04857916575939247306e-03, 6.12601355103674924743e-04, -3.04826514707566033346e-02, - 3.97737096905840994271e-03, 2.93070515299252015717e-02, -1.68977509366934480761e-01, 3.32231696372570911580e-03, 1.25024830498748684704e-01, - 1.14603027997231002311e-01, -1.00188353252315814901e-01, -9.84663913699934667534e-03, 4.24578628782099620764e-02, -1.37172078837733080192e-01, - -3.49285758694722614504e-02, 5.10266827849673310080e-02, -8.71727496405721724582e-02, 6.53026570180906262841e-03, 8.81977524226997683376e-02, - -6.34979748614215300240e-02, -6.75922576223946108831e-02, -9.09058087393600777748e-03, 8.58354921744265697559e-02, -3.11903783366274736655e-02, - 2.00028673474334506288e-02, 2.51992069666158204078e-02, -1.15065874504069552003e-02, 1.90952708533619654185e-02, -1.42994317615683774053e-02, - 8.38885300224805237346e-04, -3.82027498742033497225e-02, -3.67441895491770198490e-02, 2.50992455595355073994e-02, 7.01187400269996513602e-02, - -5.54375280311450654991e-02, -4.38519736099493434578e-02, -7.84180536804670973161e-03, 2.15733075413469983783e-02, -1.13430180042112986952e-03, - 1.43263625967320618049e-02, 3.38406892444173892920e-02, 2.61661740894084809961e-02, 1.89963433472952851477e-02, 4.11523810167366797808e-03, - -4.07083694738235874616e-03, -2.14250124636823323365e-02, -2.51950730394823532721e-02, 3.42343547054715646727e-02, -1.60995215305804545425e-01, - 1.46286861154573760713e-01, -1.42470612032240401268e-02, -8.74980046536548150549e-02, -4.25453860188948623788e-02, 1.17182553786398857554e-01, - -1.00991016453327253632e-01, -7.91738577441953306213e-02, 5.29573588185536445194e-02, -2.21614298461902045623e-02, 3.58602587208211864844e-02, - 2.52438926833398191718e-02, 9.41877819477729971709e-02, -6.48116676539685077074e-02, -6.92622200130770665494e-02, 3.44271533520238565140e-02, - -2.14712430694437191037e-02, 1.72316382693014427674e-02, -2.66608743584075963406e-02, -2.10082338877249467923e-02, 8.91565305172099635544e-03, - -1.23413533420058361967e-02, -6.55699200671947673991e-03, -6.50539642022832619028e-03, 1.51124007337151353147e-02, 5.20370287348198221067e-03, - 2.44544519960917354495e-02, 8.17735780033393942767e-03, -3.77816692303542945967e-04, -2.75580902253722351269e-02, 1.61366174765763085996e-02, - -2.54225642602667507852e-02, -5.68510449978476550825e-02, 1.03315681722852791002e-02, 5.48232041684815468024e-03, -3.22722809472682503618e-02, - 1.68859338049149008965e-02, 6.21665123569529881609e-02, -1.49734091796970530952e-01, -1.69848035269845681894e-01, 7.28166844225807269320e-02, - -9.38546660994197951000e-02, -5.98972210309676594830e-02, 1.60189670628219316129e-01, 9.68228235109596380159e-02, -1.14699218288179388692e-01, - 5.22495478003770982833e-02, -2.50191304829539204468e-02, 2.77221049132821764638e-02, 5.25053174572039649259e-02, 4.67049795137407172674e-02, - -4.25063623233455645245e-02, -7.79015735544906322285e-03, 8.35061691171900405406e-02, -2.77565926301914164820e-02, -3.55176007501909543618e-02, - 5.22884040187019810686e-02, 4.47524306813492939866e-03, 3.34858736182796073999e-02, 2.18065090398272508343e-02, 3.96249948248765804237e-02, - -1.75050000687652293485e-02, -5.30639824787136182155e-03, 1.31658536276919365532e-02, -3.54893637807925724226e-02, 1.44838563901157494143e-03, - 2.53219139441511024990e-02, 1.51209661740110620776e-02, -3.18928979311501516886e-03, 8.08035892351891861518e-03, 1.49482343348299774599e-02, - -4.67401524501743839690e-02, 8.81785937471118302922e-02, 1.09443858484468511949e-01, 9.61675669132599497679e-02, -7.39592182705455791769e-02, - 8.87508822651789097691e-02, -7.91714174638406542606e-02, -1.25898861391198962911e-01, 8.84171948090256565322e-02, 3.93482215277929509023e-02, - -6.26211797345710557972e-02, 3.11866892937116280127e-02, 1.54206070094080910371e-01, -7.15962414998223273255e-02, 4.04187883182457047271e-02, - 3.87320351160306483584e-02, -2.13087169719965857650e-02, 2.04352330201420621936e-02, 3.60324068311299108847e-02, -6.71927151509099790383e-02, - -5.86355402262732916530e-02, 1.95738272971190847838e-02, 1.19986570986449735121e-02, -4.16517345466257682407e-02, 4.57582247311850084937e-02, - -5.64919874467361762815e-02, -2.96306742467898837426e-03, 3.45918894384134034681e-02, 9.37965919443191353810e-03, -5.31266846947417263614e-03, - 7.44645101900219368030e-03, -8.16779483872519251886e-03, -1.49486275306286754694e-02, 5.40961754497425346966e-03, -6.07743621110200162722e-03, - -2.86027271239626297572e-02, 9.28607307596479303324e-02, 1.15334393912762608880e-01, 2.22619048233438435180e-02, -2.81988516854455167904e-02, - -3.27953711282213400402e-02, -7.26623103447188861681e-02, -6.21318073281297983401e-02, 8.15860644657136341307e-02, 1.79600966703069159225e-02, - -8.26984672948943289050e-02, 2.66922837734803533594e-02, -5.62012642483699781382e-02, -7.54479658771655264937e-02, 5.63921972458279810447e-02, - -8.88808665037604112014e-03, 4.49098738994229513752e-04, -1.64624335502902702233e-02, 5.00902714527058645633e-02, 1.06477908341492902983e-02, - 2.19722684831073211686e-02, 9.27897245497274342219e-03, -1.38071463629181757221e-02, -3.25812324194547434097e-02, -3.02235182235052954325e-02, - 2.70211283173303479233e-02, 1.78695725115783597692e-02, -1.97856995310294429824e-02, 2.14583909244959528118e-02, 8.31160096115654556392e-03, - -7.96044059263601583298e-03, -7.03711411983747731069e-03, -7.52245974116911853002e-02, -7.17896739726268801052e-02, 1.07396425196690896431e-02, - 7.25906809169843403318e-02, -9.45023972725838740105e-02, -6.71199808984563744962e-02, 7.35264690791543329418e-02, 2.98610952212447697263e-02, - -7.52442146662268135371e-04, 9.23976694955527116937e-02, 4.60854381027500578649e-02, -5.81010137429742931636e-02, 5.19935015121687146844e-02, - -4.28751313838296663206e-02, 2.68412731409498166169e-02, 9.92974085166531926505e-03, -1.41649957602334279627e-02, 8.49484772510930227774e-03, - 1.60608334268962397659e-03, 1.53969582107269485627e-02, 2.53654424332110106644e-02, 2.20836817019017840613e-02, -4.96400766026642691758e-03, - -4.63895546537213768895e-03, -3.69755978269468085773e-02, -4.24220279369531480529e-02, -2.80842055465305032516e-03, 3.43511446156298310903e-03, - 1.50427480682660263955e-02, -7.64781824357823984684e-03, 1.55431405065905338392e-02, -5.28685500234718219748e-02, -4.81425552620864186104e-02, - -6.98904426260522071424e-02, -5.69063762150740712342e-02, -2.01599484306710097226e-02, -7.08142573082899164094e-03, 1.60387886663503793916e-02, - -8.26785713680359968247e-02, 2.82003440014560874394e-02, 2.73932418290509169245e-02, -3.17992788170617102228e-02, 5.85714331111230612770e-02, - 5.86577384557991701741e-02, -2.75299012996250893476e-03, -8.45195718330371027760e-03, -1.36279044444791216234e-02, -1.13870143130110085955e-02, - -9.47170994530230694886e-03, 8.38589777991547574709e-03, -2.44907795135516845320e-02, -1.88112311627625997112e-02, 1.66825300517051550164e-02, - -1.40472696715355817310e-02, 4.07602998308370448322e-02, 4.52331228574007898624e-03, -7.41516905358174677892e-03, -1.90839799893427405908e-02, - 1.37235319648593090402e-01, -5.07166887609150802974e-03, 1.66347985382777688312e-02, -8.94058332794331472870e-02, -9.96617048317507969735e-03, - -3.39998201752246195784e-02, -2.72752305938337435975e-02, 1.41116199971288980557e-04, 1.20136294077674496417e-02, 1.21046096252801875515e-02, - 4.67374536088999582156e-03, 1.76093997807116745338e-03, -6.49132489663982719524e-03, 6.34253853067380107822e-02, 4.20234078454048282092e-02, - -3.39907942260764435460e-03, -3.13684078013621997494e-02, -5.59725664044557688626e-03, 1.46041344723689698465e-02, 8.15628093364801319554e-03, - 8.81123245682426982361e-03, -5.36576704715815769320e-02, 4.13564181087699121731e-03, 6.66570175208870251832e-03, -3.06753731552251258582e-03, - 3.24260047333155276839e-02, 3.78357123622976698057e-03, 1.22559252382635042178e-01, -3.26726534731656623189e-02, -4.57263244390499479231e-02, - 1.23161267442891183416e-02, 5.60898223233850107272e-02, -2.07946281596515653023e-02, 3.30973059009364162231e-02, 3.79099335956614089116e-02, - 3.02099801034241572523e-03, -4.11260349557933183040e-02, -2.09662321613402133358e-02, -1.35059512400454856396e-02, 2.11033519015176411482e-02, - 2.49738730383721862366e-03, 1.80042474049896738739e-03, -4.21972590754290111104e-02, 7.84304881856809008034e-03, 1.28611420258033324476e-02, - 1.53304442551651341764e-02, 1.14809771240723442615e-02, 5.45508167269171534430e-03, 6.03486224308978115582e-03, -6.17922023172545829134e-03, - -1.06402780093771354153e-01, -1.06566854283863088337e-01, -1.56672555450536946098e-02, -4.17617234129553371869e-02, -5.84327485785076233826e-02, - 1.72707037153512245331e-02, -4.27180361478920241763e-03, 3.83975587930814599158e-02, 7.18917519991502662613e-02, 1.73599075858622414748e-02, - -5.06102136889801795805e-02, -2.28302899957008066656e-02, 4.05449577890660689539e-02, 6.05903063932164507449e-03, 1.42495320779388468663e-02, - -1.46505630681158707102e-02, -5.51579872998721708333e-03, -2.03950903125686006101e-02, 1.71600095189964607645e-02, 3.10141280680510215972e-02, - -6.92078952483923121042e-03, -1.25723580586239959064e-03, 4.83571917759556130223e-02, -1.08848884748079619000e-01, -7.62227492845969547414e-03, - 3.98614872899268266049e-02, 2.51496883852979809248e-02, -7.45157236466782307849e-02, -2.54315956467565489063e-02, 5.86785913495517369443e-02, - 6.07261945507166309849e-03, 2.37710782485035070077e-02, 2.40958099664499367232e-03, 8.00723308014901838381e-03, 5.57202821065413758661e-02, - -6.18738592105032812751e-03, 1.57471692604664484198e-03, -2.08797558382940772262e-03, -2.73200765442419279960e-02, -2.06208586891517380024e-02, - 6.40309150046379439887e-04, 3.34147637908005640250e-02, -2.31245128603038314907e-02, 3.13805487530873783442e-02, -3.76503956682762222496e-02, - 3.82033717675601958152e-02, 6.08549869979059313008e-02, -1.40664950951139375995e-02, 1.20432450888018800772e-02, 4.11120541709728091334e-03, - -1.31431111647770104689e-02, -2.16767866450208908369e-02, 2.36444182462271527620e-03, 4.15518391649481646372e-03, -7.19797119986096724242e-03, - 3.63099914737792378583e-02, -1.71114207061806439247e-02, 9.12094809288829279359e-03, -2.00581984724530065778e-02, 4.18093901030532240359e-03, - -1.54353999486445108563e-02, 3.77632145097120189292e-02, -8.67412239218371683425e-02, 3.74024476837445662980e-02, 7.02791955646850374784e-03, - -3.07387087745127421390e-03, 1.26170642077405754933e-02, 7.19502473862098246987e-03, 5.00348237158451253359e-02, 6.05821676660315069918e-03, - 2.81657375913338843543e-02, -2.75046494305255621871e-02, -3.32847608680125889302e-02, 4.92458523340539092161e-03, -6.97895182233836727098e-03, - -1.84078432809154611538e-02, -2.55254058040131799612e-02, 4.38596283726821068588e-03, 7.97305689082921688338e-03, -6.65251068675700718558e-02, - -2.43074168732615144076e-03, -3.21551055785660854641e-03, -2.14057386820096506863e-02, 1.73404829493880863200e-02, -2.21788279126988834011e-02, - 3.67289476360874028726e-02, 2.88921423109056961509e-02, -4.36590369050650264210e-03, -3.38015966458028857197e-03, -1.47872402615952351634e-02, - -2.67937691397940741522e-02, -4.01628891758317591032e-02, 5.37104159736995767638e-02, 3.38881421250558784175e-02, -1.94731556323654853013e-02, - 6.80080451079642287447e-04, -1.16224021866609874415e-02, -2.84314312441163938305e-02, -3.10403528556473483346e-02, -1.52614844050795953750e-02, - 1.46865039960839046523e-02, 7.74337973212646264037e-03, -2.75213939675030445919e-02, -3.12476741289728875139e-02, -3.75401476285800936306e-02, - 4.53067917901101985256e-02, 4.75497506720418041531e-03, 1.25627944556748021021e-02, 4.03046169919628882727e-02, -3.29378978115561424356e-02, - -2.51499548928088654393e-03, -1.99564144518295516484e-02, -2.63938123636600005528e-02, -1.84979990476826575141e-02, -4.75891539387540141171e-02, - 1.70189645456799328038e-02, 2.90621732209333551167e-02, 1.69695748997654785595e-02, 6.00578109434020054880e-03, 3.77405846672976205691e-02, - 1.04426223615697640751e-02, -7.42237607930411715310e-04, -1.51118572042552353624e-02, 1.29952623161545995079e-03, 1.26799047323642617713e-02, - 1.05278997248968164691e-02, 2.29682654055416574090e-02, 1.28888330591014361320e-02, -1.03014730669756075787e-02, -4.83421710205830541113e-03, - -1.90040068302814585399e-02, -4.31802671175361696410e-03 -}; +#include "grib_sh_values.h" #define ILCHAM 992 #define MTRONC 30 diff --git a/tests/grib_sh_ieee64.c b/tests/grib_sh_ieee64.c index f925551ca..9f2152a59 100644 --- a/tests/grib_sh_ieee64.c +++ b/tests/grib_sh_ieee64.c @@ -18,207 +18,7 @@ * philippe.marguinaud@meteo.fr, 2016/02 */ -static double values[] = { - 2.78565217180879301395e+02, 0.00000000000000000000e+00, 8.38367712240454920902e-01, 0.00000000000000000000e+00, -7.22151022768738215518e-01, - 0.00000000000000000000e+00, 1.54447137639483056404e+00, 0.00000000000000000000e+00, -8.10351659720698336287e-01, 0.00000000000000000000e+00, - 6.45930713064333694717e-01, 0.00000000000000000000e+00, -1.73417955255619204991e-01, 0.00000000000000000000e+00, -9.09351867483918913093e-02, - 0.00000000000000000000e+00, -3.00845517613623769648e-02, 0.00000000000000000000e+00, -1.97522108657794209785e-01, 0.00000000000000000000e+00, - 1.45006392199800160370e-01, 0.00000000000000000000e+00, -6.92319525648382033678e-02, 0.00000000000000000000e+00, -3.37495245995370396486e-01, - 0.00000000000000000000e+00, 2.93969252845082296144e-01, 0.00000000000000000000e+00, 5.22791676917648828748e-02, 0.00000000000000000000e+00, - -4.31020055899014042922e-02, 0.00000000000000000000e+00, -5.34277055570271386387e-02, 0.00000000000000000000e+00, 1.57725778753141337996e-01, - 0.00000000000000000000e+00, -1.38048966071163903280e-01, 0.00000000000000000000e+00, 7.95936533884674390915e-02, 0.00000000000000000000e+00, - -5.08988096408558021722e-03, 0.00000000000000000000e+00, -3.17356690459940984916e-02, 0.00000000000000000000e+00, -7.97854100625838141836e-02, - 0.00000000000000000000e+00, -1.25759522048120825355e-01, 0.00000000000000000000e+00, 1.41095505007377608475e-01, 0.00000000000000000000e+00, - -2.90041709701537933630e-02, 0.00000000000000000000e+00, 1.16118748810570035501e-01, 0.00000000000000000000e+00, -1.42650207377574778089e-01, - 0.00000000000000000000e+00, 6.63859656709936268859e-02, 0.00000000000000000000e+00, -8.43008351127146754456e-02, 0.00000000000000000000e+00, - 8.11805506119530340126e-02, 0.00000000000000000000e+00, -2.92579106275835476580e+00, -2.73257362252726822283e-02, -2.31503061096297768628e+00, - 2.98481883110496337697e-01, 2.32422954464165210098e+00, -9.36624989809203695179e-02, -1.13647173814196378316e+00, -4.24970312443540054748e-01, - 1.26754821773852066613e+00, -7.20859094680278700285e-02, -9.51306475614490221204e-01, 6.14867632012408793507e-01, -9.85091038732955892598e-02, - -6.34523215803268758606e-02, -6.78708060411115782218e-02, -1.35311523427619539994e-01, -9.04935301775932621204e-02, -9.78101007785831533248e-02, - -9.81097374871810895547e-04, 1.80616098092357818539e-02, -2.64791786212412172397e-02, -4.76558495508507054539e-02, -1.96341419265033012564e-01, - 3.40906457596743608929e-02, -7.81262194523913988675e-02, -1.90201799489863598858e-01, 2.25178750048809411810e-01, 2.86704542482240504198e-03, - -1.19805102746233238520e-02, 1.68969022321052431135e-02, 5.64738950483129331648e-02, -1.39757566954298140249e-01, -7.44084433787887133960e-02, - -1.79448737058076172868e-02, 6.14333363921325120716e-02, 4.42090839521651901567e-02, -1.59177621940344016238e-02, -2.45259140787589882682e-02, - 4.14722887926062475095e-02, -9.08467249754976585718e-02, 7.32634132869659504550e-02, 3.98083190502361433660e-02, -6.23330309466623433412e-02, - 3.23061735747387016038e-02, 5.24308078374175548508e-02, -6.52853670335678676340e-02, -4.74582205706168894221e-02, -2.57646217050176394581e-02, - 4.85326601320503064896e-02, 4.57836316487753580695e-02, -1.61395013977115135695e-02, -4.31399408593192076888e-02, -1.72982609465274252136e-02, - 2.05141743795376405024e-02, 5.13479785723864323721e-02, 2.02753965345298277356e-02, -9.62325942856205422682e-03, -1.21013000039295196344e-03, - 4.61377663687331032727e-02, -6.90153405245983028390e-04, -1.66104804699747843344e+00, 1.79666906865138087390e-01, 7.23133875761683864170e-01, - 4.15103729262486009777e-01, -3.04359433047895144853e-01, -1.33601223735748869670e-01, 1.11896993727331572899e+00, -5.97930191729183602156e-01, - -3.21482407719980045613e-01, -6.44440729482515239912e-02, -1.39643167588630684461e-01, -7.87344252201049310536e-02, -2.74194962741515224636e-01, - 3.16014987883590156570e-02, 2.61916687188788577245e-01, -2.29041295889389484586e-01, 1.37413993896893793512e-02, 1.02848928276271345261e-01, - -8.45943398257167356036e-02, -8.55836430183285895579e-02, -2.14692485939022847941e-02, -5.00660400534810728912e-02, 4.10286932308298671335e-02, - 5.98356967342531728682e-02, -6.87268417209678655899e-02, -1.00834342061879356223e-01, 2.89946855441678558174e-02, 6.84096422422015987275e-02, - 7.90905646811665974383e-02, 1.22761627402924594632e-02, -7.19296897992387496146e-02, -1.19563518571031840443e-01, 3.53949764125303933948e-02, - 3.49389806984224948749e-02, -1.34556768717593006057e-01, 1.30036738800839157815e-01, 1.47453022488737178763e-01, -1.75187106897877128975e-02, - -5.71655857598896560701e-02, -2.22513683371899778640e-02, 5.11984135243400070858e-02, 4.32198440146361120839e-02, -3.79006811678369512353e-02, - -1.61948869817943215399e-02, 5.87864730303968852088e-02, 7.56143666040565154418e-03, 3.79735451815043784096e-02, 4.88357571184367539319e-03, - -3.44600211423619568266e-03, 8.45175251030964858057e-03, 2.06501052974025246789e-02, -2.27945980601942863042e-02, 7.52792623890808781928e-02, - -4.07335076464383702421e-02, -1.22373247319515162691e-03, 7.12818582736400585542e-03, -2.08797409246280901707e-02, 2.35344435031375059930e-02, - 5.38553837448995376125e-02, 2.29385900837120154661e-01, -3.60512186055045147359e-01, 4.09262094434219958483e-01, -1.43204915316633707434e-01, - 1.76661646314910159017e-01, 1.59424540157772631765e-01, 1.19996653025061628117e-01, 9.74032138671445946176e-02, 8.01756516767066496065e-02, - -4.22092435868048232450e-01, 3.42598707334977881089e-01, 7.26427774784764446192e-02, -1.92869792680440410582e-04, -9.14800737566894561770e-02, - 1.86904852575672325576e-01, 9.03785536307215725538e-02, -8.70628859333670845899e-02, -1.20357023393743836626e-01, 1.30276821268167974921e-01, - -5.50418496727855255379e-02, -1.39930929689677463479e-01, -4.10997318303747902202e-02, 1.66027061444833590187e-01, -3.31025873454900559922e-02, - 5.45967001368218574076e-02, -1.86051192758042188702e-01, 3.57669212138109621213e-02, 1.96823682403928168494e-01, 1.12736638944959083330e-01, - -1.18563060708320622272e-01, -7.11264215849067293895e-02, -3.33098969956449747487e-02, 4.88100702343404121986e-02, 2.04094083090545080905e-02, - 7.78285563663724117012e-02, -4.14113893806803898268e-02, 1.26375672481289953730e-02, 1.38745116741378599068e-01, -8.57558938152793923115e-03, - -9.29289689333271246019e-02, -8.27276771926104548260e-02, 5.84956615429012907748e-02, 2.29399633044502938156e-03, -2.09824524198216422546e-03, - -2.30538708704958079931e-02, 3.77132043821169771203e-02, 6.53337758882697045015e-02, -3.06667712165429387494e-02, -1.14650515581519504144e-02, - 1.46194883433694872849e-02, 3.46636747707448856712e-03, -4.35546278336838635359e-02, 6.29051255528407793349e-02, 6.12210568933847180256e-03, - 2.07571937975545607602e-02, 3.35768305063385619214e-01, 7.46266949448459948613e-01, -6.72463631746016698987e-02, -1.94536700956528363360e-01, - -2.75088750614828209118e-02, 1.42328699967799371384e-01, 3.35288125725375085739e-01, 1.29661987766008346412e-01, 2.90956042046801172107e-02, - -2.05442280573112395770e-01, -9.57252926974513779212e-02, -9.10355774240597659386e-02, -1.25784172798783761005e-01, 1.12460127036075691054e-01, - 9.44013754824246931197e-02, -6.05135930061245497225e-02, 9.42673278665148578481e-02, 2.00615512602382500829e-01, -5.92185875904504069323e-02, - -2.28592246943101873313e-01, -1.07412950490968162054e-01, 2.20172956055192214908e-01, 3.33294698669218958376e-01, -4.44283179185198731642e-02, - -1.01766394690480529994e-01, 1.17472184755037761805e-01, 1.04892483649878465179e-01, -6.62468314716531808672e-02, -2.45565086356498013531e-03, - 4.79072727765457034854e-02, -7.97766729243851169251e-04, -2.33714338875874692858e-02, -2.56642787088907850523e-02, -9.62514763421860042314e-02, - 3.99383399281938444858e-02, 2.88865653017884548015e-02, -5.15182520475396393822e-02, 8.26498791523299636275e-02, -2.98742841129583554249e-02, - -8.28182978045203938011e-02, 3.14455026979475749105e-02, -1.53345808562610789669e-03, -3.62400610998830294274e-02, -2.51728077975302867719e-02, - -3.02379015962623703961e-02, 2.68910770206758423240e-02, -8.22634968902352312070e-03, 3.66544933660152699728e-02, 1.32356634436242674713e-02, - 3.21880247207419244518e-03, -1.97571016662111687001e-02, 5.93796945717029508310e-03, -4.31413602924163308572e-02, -2.72339719264069676785e-02, - -1.87274725743593273286e-01, 1.39283127485721136551e-01, 4.74963034217010249272e-01, -3.42073553333540392174e-01, 4.83885077044606606855e-02, - -2.59068005795831224347e-01, -2.13264680765766156956e-01, -7.36008484860203593403e-02, -8.13152420843461926081e-02, -1.21927665578479005326e-02, - 1.79904544651649317411e-01, -1.09959740517953624694e-01, -2.22065490779929819443e-01, 7.14015849729179447047e-02, -5.85031872787839662964e-03, - 9.72943249874637094976e-02, 1.58464145663301525513e-01, -6.23660570620122936547e-02, -2.05086286960385583145e-01, -5.07929431274403847540e-02, - 4.21897204870116185327e-02, -6.99935466206487028051e-02, -6.71348953496629374804e-02, 1.65743074443523596972e-01, 8.56850642116062655163e-02, - -1.19953810412321809631e-01, -7.40173516101229334030e-02, 1.18865945768013535344e-02, -7.71584669380707965924e-02, -6.31283399388396088137e-02, - -1.45882854372074655114e-01, 6.29307315713034526317e-02, 1.48912624660626508738e-02, -6.72819324032104260080e-02, 3.22547499735358483841e-02, - 4.97387743825052491831e-02, -5.43073271907661761504e-02, 1.52590958854153246893e-02, 2.92721489192738311066e-03, -1.87663839736718872364e-02, - -3.80050872053503069684e-03, 5.91273447672226934446e-02, -2.83684585809016896404e-03, 1.70512827209476636181e-02, -1.44259815516434488497e-02, - -8.06597987912826830392e-02, 5.19954562777717940736e-02, 1.09504480128524081528e-02, 1.26439885486616093030e-02, -2.34593647937779382559e-03, - 2.47413111762442641806e-02, -6.13559850860111253429e-03, -6.05626633742831349538e-02, -1.98467175793774985859e-01, 3.18979113074946862838e-01, - 6.23356771079433893967e-02, 1.30138108749532965813e-01, -1.05230501466137910116e-01, -6.87754575227078057686e-02, -4.22436887367944324811e-02, - 7.57926459563205562331e-02, 4.78504387573109452036e-02, -2.22681497547184761854e-02, 8.46951897073950493722e-02, -7.44317622658197293462e-03, - -1.89157622212636281067e-02, -6.19719693803440774271e-02, -8.37644347918033160827e-03, 1.32514981682897603488e-01, -1.09126775888557903116e-01, - -6.47849222903969929055e-03, 4.65591560634076861991e-02, -2.24234845462696341656e-01, 7.29582023256248463072e-02, 2.23965783883813690514e-03, - -5.19349169152241198211e-03, 2.25395864383192284786e-02, 9.10694488527918760701e-02, 7.36945737152017443794e-02, -2.16337158651918673447e-02, - -5.35436418307164291308e-02, 2.40342905027485786995e-02, 4.81946656785084762142e-02, -3.06521617296798450092e-02, -4.07904977042986977009e-02, - 6.32948267919029999851e-02, 4.53192474361057834331e-02, -2.29008122631283589365e-02, 1.62576382380966721897e-02, 3.82842631619570161750e-02, - 3.52346794652655739832e-02, -3.95023093184828782976e-02, -3.15659719925446974331e-02, 4.02431236080928178556e-02, 2.45684617558553607120e-02, - -1.93194945947791144047e-02, -2.48322169406506726430e-02, -1.13621415403786386183e-02, -3.31487361399904478798e-02, 1.68675563537488623633e-02, - 4.01325091519489432490e-02, 4.14338905584917469027e-02, 1.31273776950603299207e-01, 7.16276979245435152510e-03, 5.02985992698696121606e-02, - 1.78045915098635626483e-01, -1.86314001159308406663e-01, -1.35151434606926579285e-01, 1.69947309928447143346e-01, -8.37791941109623933270e-02, - 2.41195207762586322220e-02, 1.26309574838379373718e-01, -2.00571859613532021971e-01, -1.63465438373802895988e-01, -6.96363659600393730686e-02, - 1.14524330229191645403e-01, 7.12890316169484949960e-02, 5.80381889626466196397e-03, 4.93537868059431283907e-02, -8.44257746020753430116e-02, - -1.41929196365875275043e-02, 8.22387462453117029648e-02, -8.50093260265970818157e-02, 2.71192346905003156543e-02, 9.03395551304754379496e-02, - -1.71516448697893314490e-02, 8.18953521749132690166e-02, 1.11511604557867297777e-02, -4.78373059022189212053e-03, -9.53023452930306103070e-02, - 5.38686323249407891800e-02, -3.84678611713600085431e-02, -5.04713920668615947246e-03, 6.80811773653991481048e-02, -3.33049215638338835799e-02, - -5.28099294606356045589e-02, -7.54699335274512245197e-02, -5.40781758032556764126e-03, 8.29793590010352716257e-02, -5.97312971039127629802e-02, - -2.71427292677366080453e-02, -6.36007393417800138968e-03, -6.21102608067901958838e-03, 1.20982775517295207401e-02, -1.17366629581995736420e-02, - 3.79477291991657597614e-02, 4.16172556173764890408e-02, -4.15482630953573559007e-02, -2.10178763811884848633e-02, 2.25384141584651191692e-02, - 3.26544906456272876483e-01, 1.14875244914279722730e-01, -1.66631737648658934114e-01, -6.36733988328790686401e-03, 1.05207112351735077027e-01, - -2.56656713269180158932e-01, 6.60485459910778310855e-02, 4.17130045127815929362e-02, -7.37791748174861372611e-02, 7.60523512741725499220e-02, - -4.55959006761720783696e-02, -2.36680526647207629953e-02, 1.10634117950077798254e-01, -2.08651727388676766495e-02, -7.64711683504649686327e-02, - 8.13422913278145920390e-03, 7.93342835009738511776e-02, -1.36145811582776665727e-01, 3.71088391279384144372e-02, 3.21562962981391253781e-02, - -1.14387894243613869039e-01, -1.51631103622234392203e-03, 5.78217444722389575795e-02, -4.71124806075210594836e-03, 1.51729749910356030707e-02, - 9.74258177618566034717e-02, -1.10011849267590264279e-01, -9.55723084321756233273e-02, 5.40108889439728720450e-02, 2.20372759806924181647e-02, - -3.12940070328804331723e-02, 7.31829279647891323135e-02, -5.03897879848870661190e-02, 3.56857218059479508465e-02, 2.77447201596329011408e-02, - -2.09552594775335998545e-02, 1.43951419283830060747e-02, 5.39902985778747748769e-02, 2.12233791683978864628e-02, -1.06021857317053335573e-02, - -1.29173575974317281917e-02, 2.33645540297061204277e-03, 2.61896609343018451146e-03, -1.14595932568608803448e-02, 3.56767949738183843926e-04, - 2.01246788122515993247e-02, 1.99364141245472692443e-01, 1.02386975283006720350e-02, 1.46491539292862016364e-01, -2.92173375533333390397e-01, - -2.79882649001711690528e-02, 7.89598614348374083782e-02, 1.73932768517874730696e-02, -1.69430993280276553925e-01, -3.49439319604140236075e-02, - -2.41776119023419042153e-02, -1.19007451411664612329e-02, 7.52785183419538428407e-02, 8.00732324924654653708e-02, 5.80254140930885203842e-02, - -2.99344525092792301812e-02, 2.00701049258613407889e-02, -4.85173141225875570459e-02, -1.24597145763424926868e-01, -1.51901004582441958440e-02, - -1.61680779553563594431e-02, 6.85542113027582250551e-02, 4.25745326736892623631e-02, -1.06278911193231559440e-04, 9.76285197536541464458e-03, - 3.87428701891937912749e-02, -2.30639988244256723127e-02, 6.36890026034679732764e-03, 3.02413182033626840028e-02, 3.88836672433736253024e-03, - -9.08662711955680046927e-02, 4.01745378306784250988e-02, 1.03266559093635329480e-01, 2.14979137912293429002e-03, -5.41722635351460576891e-02, - 2.61282597269434195553e-02, -1.88195226737477086520e-03, -2.19435523135619973967e-02, 1.32921056129775890658e-02, -1.39584001825611234843e-02, - -2.33277834487258597940e-02, 3.20387242392535485924e-03, -2.56605748623718842027e-02, 3.00558911102263848214e-02, 3.05648112133436906934e-02, - -2.59104772664633942192e-03, -3.60234150814368395133e-02, 1.89051474579463585357e-01, 7.67659810167127809599e-02, -1.24703387595890141659e-01, - 1.16494243349512860419e-01, -1.23273291315800521267e-02, -8.52472265397304362899e-02, 4.85995814815475199455e-02, -4.91533864052588892468e-02, - 7.09392924651690154336e-02, 3.86918200904741022006e-02, -6.05870726251201280332e-02, 1.26662290542081668043e-01, -1.26300238339170367574e-02, - -2.77371050405810226636e-02, -5.43586513698262885352e-02, -7.86459616541178574423e-02, 6.23528587727540037355e-02, -4.79677851814970662714e-02, - -6.51687150996678454806e-04, 5.76336385114276719688e-02, 1.44542478484825671209e-02, 3.16928492510423695516e-02, 1.45017405736592441823e-02, - 3.77649866255029068030e-02, 2.76488049642000443748e-04, -6.60577998684190731415e-02, -1.43760686140608738570e-02, 3.59108661833638931338e-02, - -1.96544252969081192917e-02, -3.14635605928988426605e-02, 2.73136448740384021883e-02, 4.81895944089887409700e-02, -1.41798371596522010049e-03, - -2.76940211432370950173e-02, -1.79321359038478039816e-02, -8.04857916575939247306e-03, 6.12601355103674924743e-04, -3.04826514707566033346e-02, - 3.97737096905840994271e-03, 2.93070515299252015717e-02, -1.68977509366934480761e-01, 3.32231696372570911580e-03, 1.25024830498748684704e-01, - 1.14603027997231002311e-01, -1.00188353252315814901e-01, -9.84663913699934667534e-03, 4.24578628782099620764e-02, -1.37172078837733080192e-01, - -3.49285758694722614504e-02, 5.10266827849673310080e-02, -8.71727496405721724582e-02, 6.53026570180906262841e-03, 8.81977524226997683376e-02, - -6.34979748614215300240e-02, -6.75922576223946108831e-02, -9.09058087393600777748e-03, 8.58354921744265697559e-02, -3.11903783366274736655e-02, - 2.00028673474334506288e-02, 2.51992069666158204078e-02, -1.15065874504069552003e-02, 1.90952708533619654185e-02, -1.42994317615683774053e-02, - 8.38885300224805237346e-04, -3.82027498742033497225e-02, -3.67441895491770198490e-02, 2.50992455595355073994e-02, 7.01187400269996513602e-02, - -5.54375280311450654991e-02, -4.38519736099493434578e-02, -7.84180536804670973161e-03, 2.15733075413469983783e-02, -1.13430180042112986952e-03, - 1.43263625967320618049e-02, 3.38406892444173892920e-02, 2.61661740894084809961e-02, 1.89963433472952851477e-02, 4.11523810167366797808e-03, - -4.07083694738235874616e-03, -2.14250124636823323365e-02, -2.51950730394823532721e-02, 3.42343547054715646727e-02, -1.60995215305804545425e-01, - 1.46286861154573760713e-01, -1.42470612032240401268e-02, -8.74980046536548150549e-02, -4.25453860188948623788e-02, 1.17182553786398857554e-01, - -1.00991016453327253632e-01, -7.91738577441953306213e-02, 5.29573588185536445194e-02, -2.21614298461902045623e-02, 3.58602587208211864844e-02, - 2.52438926833398191718e-02, 9.41877819477729971709e-02, -6.48116676539685077074e-02, -6.92622200130770665494e-02, 3.44271533520238565140e-02, - -2.14712430694437191037e-02, 1.72316382693014427674e-02, -2.66608743584075963406e-02, -2.10082338877249467923e-02, 8.91565305172099635544e-03, - -1.23413533420058361967e-02, -6.55699200671947673991e-03, -6.50539642022832619028e-03, 1.51124007337151353147e-02, 5.20370287348198221067e-03, - 2.44544519960917354495e-02, 8.17735780033393942767e-03, -3.77816692303542945967e-04, -2.75580902253722351269e-02, 1.61366174765763085996e-02, - -2.54225642602667507852e-02, -5.68510449978476550825e-02, 1.03315681722852791002e-02, 5.48232041684815468024e-03, -3.22722809472682503618e-02, - 1.68859338049149008965e-02, 6.21665123569529881609e-02, -1.49734091796970530952e-01, -1.69848035269845681894e-01, 7.28166844225807269320e-02, - -9.38546660994197951000e-02, -5.98972210309676594830e-02, 1.60189670628219316129e-01, 9.68228235109596380159e-02, -1.14699218288179388692e-01, - 5.22495478003770982833e-02, -2.50191304829539204468e-02, 2.77221049132821764638e-02, 5.25053174572039649259e-02, 4.67049795137407172674e-02, - -4.25063623233455645245e-02, -7.79015735544906322285e-03, 8.35061691171900405406e-02, -2.77565926301914164820e-02, -3.55176007501909543618e-02, - 5.22884040187019810686e-02, 4.47524306813492939866e-03, 3.34858736182796073999e-02, 2.18065090398272508343e-02, 3.96249948248765804237e-02, - -1.75050000687652293485e-02, -5.30639824787136182155e-03, 1.31658536276919365532e-02, -3.54893637807925724226e-02, 1.44838563901157494143e-03, - 2.53219139441511024990e-02, 1.51209661740110620776e-02, -3.18928979311501516886e-03, 8.08035892351891861518e-03, 1.49482343348299774599e-02, - -4.67401524501743839690e-02, 8.81785937471118302922e-02, 1.09443858484468511949e-01, 9.61675669132599497679e-02, -7.39592182705455791769e-02, - 8.87508822651789097691e-02, -7.91714174638406542606e-02, -1.25898861391198962911e-01, 8.84171948090256565322e-02, 3.93482215277929509023e-02, - -6.26211797345710557972e-02, 3.11866892937116280127e-02, 1.54206070094080910371e-01, -7.15962414998223273255e-02, 4.04187883182457047271e-02, - 3.87320351160306483584e-02, -2.13087169719965857650e-02, 2.04352330201420621936e-02, 3.60324068311299108847e-02, -6.71927151509099790383e-02, - -5.86355402262732916530e-02, 1.95738272971190847838e-02, 1.19986570986449735121e-02, -4.16517345466257682407e-02, 4.57582247311850084937e-02, - -5.64919874467361762815e-02, -2.96306742467898837426e-03, 3.45918894384134034681e-02, 9.37965919443191353810e-03, -5.31266846947417263614e-03, - 7.44645101900219368030e-03, -8.16779483872519251886e-03, -1.49486275306286754694e-02, 5.40961754497425346966e-03, -6.07743621110200162722e-03, - -2.86027271239626297572e-02, 9.28607307596479303324e-02, 1.15334393912762608880e-01, 2.22619048233438435180e-02, -2.81988516854455167904e-02, - -3.27953711282213400402e-02, -7.26623103447188861681e-02, -6.21318073281297983401e-02, 8.15860644657136341307e-02, 1.79600966703069159225e-02, - -8.26984672948943289050e-02, 2.66922837734803533594e-02, -5.62012642483699781382e-02, -7.54479658771655264937e-02, 5.63921972458279810447e-02, - -8.88808665037604112014e-03, 4.49098738994229513752e-04, -1.64624335502902702233e-02, 5.00902714527058645633e-02, 1.06477908341492902983e-02, - 2.19722684831073211686e-02, 9.27897245497274342219e-03, -1.38071463629181757221e-02, -3.25812324194547434097e-02, -3.02235182235052954325e-02, - 2.70211283173303479233e-02, 1.78695725115783597692e-02, -1.97856995310294429824e-02, 2.14583909244959528118e-02, 8.31160096115654556392e-03, - -7.96044059263601583298e-03, -7.03711411983747731069e-03, -7.52245974116911853002e-02, -7.17896739726268801052e-02, 1.07396425196690896431e-02, - 7.25906809169843403318e-02, -9.45023972725838740105e-02, -6.71199808984563744962e-02, 7.35264690791543329418e-02, 2.98610952212447697263e-02, - -7.52442146662268135371e-04, 9.23976694955527116937e-02, 4.60854381027500578649e-02, -5.81010137429742931636e-02, 5.19935015121687146844e-02, - -4.28751313838296663206e-02, 2.68412731409498166169e-02, 9.92974085166531926505e-03, -1.41649957602334279627e-02, 8.49484772510930227774e-03, - 1.60608334268962397659e-03, 1.53969582107269485627e-02, 2.53654424332110106644e-02, 2.20836817019017840613e-02, -4.96400766026642691758e-03, - -4.63895546537213768895e-03, -3.69755978269468085773e-02, -4.24220279369531480529e-02, -2.80842055465305032516e-03, 3.43511446156298310903e-03, - 1.50427480682660263955e-02, -7.64781824357823984684e-03, 1.55431405065905338392e-02, -5.28685500234718219748e-02, -4.81425552620864186104e-02, - -6.98904426260522071424e-02, -5.69063762150740712342e-02, -2.01599484306710097226e-02, -7.08142573082899164094e-03, 1.60387886663503793916e-02, - -8.26785713680359968247e-02, 2.82003440014560874394e-02, 2.73932418290509169245e-02, -3.17992788170617102228e-02, 5.85714331111230612770e-02, - 5.86577384557991701741e-02, -2.75299012996250893476e-03, -8.45195718330371027760e-03, -1.36279044444791216234e-02, -1.13870143130110085955e-02, - -9.47170994530230694886e-03, 8.38589777991547574709e-03, -2.44907795135516845320e-02, -1.88112311627625997112e-02, 1.66825300517051550164e-02, - -1.40472696715355817310e-02, 4.07602998308370448322e-02, 4.52331228574007898624e-03, -7.41516905358174677892e-03, -1.90839799893427405908e-02, - 1.37235319648593090402e-01, -5.07166887609150802974e-03, 1.66347985382777688312e-02, -8.94058332794331472870e-02, -9.96617048317507969735e-03, - -3.39998201752246195784e-02, -2.72752305938337435975e-02, 1.41116199971288980557e-04, 1.20136294077674496417e-02, 1.21046096252801875515e-02, - 4.67374536088999582156e-03, 1.76093997807116745338e-03, -6.49132489663982719524e-03, 6.34253853067380107822e-02, 4.20234078454048282092e-02, - -3.39907942260764435460e-03, -3.13684078013621997494e-02, -5.59725664044557688626e-03, 1.46041344723689698465e-02, 8.15628093364801319554e-03, - 8.81123245682426982361e-03, -5.36576704715815769320e-02, 4.13564181087699121731e-03, 6.66570175208870251832e-03, -3.06753731552251258582e-03, - 3.24260047333155276839e-02, 3.78357123622976698057e-03, 1.22559252382635042178e-01, -3.26726534731656623189e-02, -4.57263244390499479231e-02, - 1.23161267442891183416e-02, 5.60898223233850107272e-02, -2.07946281596515653023e-02, 3.30973059009364162231e-02, 3.79099335956614089116e-02, - 3.02099801034241572523e-03, -4.11260349557933183040e-02, -2.09662321613402133358e-02, -1.35059512400454856396e-02, 2.11033519015176411482e-02, - 2.49738730383721862366e-03, 1.80042474049896738739e-03, -4.21972590754290111104e-02, 7.84304881856809008034e-03, 1.28611420258033324476e-02, - 1.53304442551651341764e-02, 1.14809771240723442615e-02, 5.45508167269171534430e-03, 6.03486224308978115582e-03, -6.17922023172545829134e-03, - -1.06402780093771354153e-01, -1.06566854283863088337e-01, -1.56672555450536946098e-02, -4.17617234129553371869e-02, -5.84327485785076233826e-02, - 1.72707037153512245331e-02, -4.27180361478920241763e-03, 3.83975587930814599158e-02, 7.18917519991502662613e-02, 1.73599075858622414748e-02, - -5.06102136889801795805e-02, -2.28302899957008066656e-02, 4.05449577890660689539e-02, 6.05903063932164507449e-03, 1.42495320779388468663e-02, - -1.46505630681158707102e-02, -5.51579872998721708333e-03, -2.03950903125686006101e-02, 1.71600095189964607645e-02, 3.10141280680510215972e-02, - -6.92078952483923121042e-03, -1.25723580586239959064e-03, 4.83571917759556130223e-02, -1.08848884748079619000e-01, -7.62227492845969547414e-03, - 3.98614872899268266049e-02, 2.51496883852979809248e-02, -7.45157236466782307849e-02, -2.54315956467565489063e-02, 5.86785913495517369443e-02, - 6.07261945507166309849e-03, 2.37710782485035070077e-02, 2.40958099664499367232e-03, 8.00723308014901838381e-03, 5.57202821065413758661e-02, - -6.18738592105032812751e-03, 1.57471692604664484198e-03, -2.08797558382940772262e-03, -2.73200765442419279960e-02, -2.06208586891517380024e-02, - 6.40309150046379439887e-04, 3.34147637908005640250e-02, -2.31245128603038314907e-02, 3.13805487530873783442e-02, -3.76503956682762222496e-02, - 3.82033717675601958152e-02, 6.08549869979059313008e-02, -1.40664950951139375995e-02, 1.20432450888018800772e-02, 4.11120541709728091334e-03, - -1.31431111647770104689e-02, -2.16767866450208908369e-02, 2.36444182462271527620e-03, 4.15518391649481646372e-03, -7.19797119986096724242e-03, - 3.63099914737792378583e-02, -1.71114207061806439247e-02, 9.12094809288829279359e-03, -2.00581984724530065778e-02, 4.18093901030532240359e-03, - -1.54353999486445108563e-02, 3.77632145097120189292e-02, -8.67412239218371683425e-02, 3.74024476837445662980e-02, 7.02791955646850374784e-03, - -3.07387087745127421390e-03, 1.26170642077405754933e-02, 7.19502473862098246987e-03, 5.00348237158451253359e-02, 6.05821676660315069918e-03, - 2.81657375913338843543e-02, -2.75046494305255621871e-02, -3.32847608680125889302e-02, 4.92458523340539092161e-03, -6.97895182233836727098e-03, - -1.84078432809154611538e-02, -2.55254058040131799612e-02, 4.38596283726821068588e-03, 7.97305689082921688338e-03, -6.65251068675700718558e-02, - -2.43074168732615144076e-03, -3.21551055785660854641e-03, -2.14057386820096506863e-02, 1.73404829493880863200e-02, -2.21788279126988834011e-02, - 3.67289476360874028726e-02, 2.88921423109056961509e-02, -4.36590369050650264210e-03, -3.38015966458028857197e-03, -1.47872402615952351634e-02, - -2.67937691397940741522e-02, -4.01628891758317591032e-02, 5.37104159736995767638e-02, 3.38881421250558784175e-02, -1.94731556323654853013e-02, - 6.80080451079642287447e-04, -1.16224021866609874415e-02, -2.84314312441163938305e-02, -3.10403528556473483346e-02, -1.52614844050795953750e-02, - 1.46865039960839046523e-02, 7.74337973212646264037e-03, -2.75213939675030445919e-02, -3.12476741289728875139e-02, -3.75401476285800936306e-02, - 4.53067917901101985256e-02, 4.75497506720418041531e-03, 1.25627944556748021021e-02, 4.03046169919628882727e-02, -3.29378978115561424356e-02, - -2.51499548928088654393e-03, -1.99564144518295516484e-02, -2.63938123636600005528e-02, -1.84979990476826575141e-02, -4.75891539387540141171e-02, - 1.70189645456799328038e-02, 2.90621732209333551167e-02, 1.69695748997654785595e-02, 6.00578109434020054880e-03, 3.77405846672976205691e-02, - 1.04426223615697640751e-02, -7.42237607930411715310e-04, -1.51118572042552353624e-02, 1.29952623161545995079e-03, 1.26799047323642617713e-02, - 1.05278997248968164691e-02, 2.29682654055416574090e-02, 1.28888330591014361320e-02, -1.03014730669756075787e-02, -4.83421710205830541113e-03, - -1.90040068302814585399e-02, -4.31802671175361696410e-03 -}; +#include "grib_sh_values.h" #define ILCHAM 992 #define MTRONC 30 diff --git a/tests/grib_sh_imag.c b/tests/grib_sh_imag.c index bac8a5d82..744be3c25 100644 --- a/tests/grib_sh_imag.c +++ b/tests/grib_sh_imag.c @@ -16,207 +16,7 @@ * philippe.marguinaud@meteo.fr, 2016/02 */ -static double values[] = { - 2.78565217180879301395e+02, 0.00000000000000000000e+00, 8.38367712240454920902e-01, 0.00000000000000000000e+00, -7.22151022768738215518e-01, - 0.00000000000000000000e+00, 1.54447137639483056404e+00, 0.00000000000000000000e+00, -8.10351659720698336287e-01, 0.00000000000000000000e+00, - 6.45930713064333694717e-01, 0.00000000000000000000e+00, -1.73417955255619204991e-01, 0.00000000000000000000e+00, -9.09351867483918913093e-02, - 0.00000000000000000000e+00, -3.00845517613623769648e-02, 0.00000000000000000000e+00, -1.97522108657794209785e-01, 0.00000000000000000000e+00, - 1.45006392199800160370e-01, 0.00000000000000000000e+00, -6.92319525648382033678e-02, 0.00000000000000000000e+00, -3.37495245995370396486e-01, - 0.00000000000000000000e+00, 2.93969252845082296144e-01, 0.00000000000000000000e+00, 5.22791676917648828748e-02, 0.00000000000000000000e+00, - -4.31020055899014042922e-02, 0.00000000000000000000e+00, -5.34277055570271386387e-02, 0.00000000000000000000e+00, 1.57725778753141337996e-01, - 0.00000000000000000000e+00, -1.38048966071163903280e-01, 0.00000000000000000000e+00, 7.95936533884674390915e-02, 0.00000000000000000000e+00, - -5.08988096408558021722e-03, 0.00000000000000000000e+00, -3.17356690459940984916e-02, 0.00000000000000000000e+00, -7.97854100625838141836e-02, - 0.00000000000000000000e+00, -1.25759522048120825355e-01, 0.00000000000000000000e+00, 1.41095505007377608475e-01, 0.00000000000000000000e+00, - -2.90041709701537933630e-02, 0.00000000000000000000e+00, 1.16118748810570035501e-01, 0.00000000000000000000e+00, -1.42650207377574778089e-01, - 0.00000000000000000000e+00, 6.63859656709936268859e-02, 0.00000000000000000000e+00, -8.43008351127146754456e-02, 0.00000000000000000000e+00, - 8.11805506119530340126e-02, 0.00000000000000000000e+00, -2.92579106275835476580e+00, -2.73257362252726822283e-02, -2.31503061096297768628e+00, - 2.98481883110496337697e-01, 2.32422954464165210098e+00, -9.36624989809203695179e-02, -1.13647173814196378316e+00, -4.24970312443540054748e-01, - 1.26754821773852066613e+00, -7.20859094680278700285e-02, -9.51306475614490221204e-01, 6.14867632012408793507e-01, -9.85091038732955892598e-02, - -6.34523215803268758606e-02, -6.78708060411115782218e-02, -1.35311523427619539994e-01, -9.04935301775932621204e-02, -9.78101007785831533248e-02, - -9.81097374871810895547e-04, 1.80616098092357818539e-02, -2.64791786212412172397e-02, -4.76558495508507054539e-02, -1.96341419265033012564e-01, - 3.40906457596743608929e-02, -7.81262194523913988675e-02, -1.90201799489863598858e-01, 2.25178750048809411810e-01, 2.86704542482240504198e-03, - -1.19805102746233238520e-02, 1.68969022321052431135e-02, 5.64738950483129331648e-02, -1.39757566954298140249e-01, -7.44084433787887133960e-02, - -1.79448737058076172868e-02, 6.14333363921325120716e-02, 4.42090839521651901567e-02, -1.59177621940344016238e-02, -2.45259140787589882682e-02, - 4.14722887926062475095e-02, -9.08467249754976585718e-02, 7.32634132869659504550e-02, 3.98083190502361433660e-02, -6.23330309466623433412e-02, - 3.23061735747387016038e-02, 5.24308078374175548508e-02, -6.52853670335678676340e-02, -4.74582205706168894221e-02, -2.57646217050176394581e-02, - 4.85326601320503064896e-02, 4.57836316487753580695e-02, -1.61395013977115135695e-02, -4.31399408593192076888e-02, -1.72982609465274252136e-02, - 2.05141743795376405024e-02, 5.13479785723864323721e-02, 2.02753965345298277356e-02, -9.62325942856205422682e-03, -1.21013000039295196344e-03, - 4.61377663687331032727e-02, -6.90153405245983028390e-04, -1.66104804699747843344e+00, 1.79666906865138087390e-01, 7.23133875761683864170e-01, - 4.15103729262486009777e-01, -3.04359433047895144853e-01, -1.33601223735748869670e-01, 1.11896993727331572899e+00, -5.97930191729183602156e-01, - -3.21482407719980045613e-01, -6.44440729482515239912e-02, -1.39643167588630684461e-01, -7.87344252201049310536e-02, -2.74194962741515224636e-01, - 3.16014987883590156570e-02, 2.61916687188788577245e-01, -2.29041295889389484586e-01, 1.37413993896893793512e-02, 1.02848928276271345261e-01, - -8.45943398257167356036e-02, -8.55836430183285895579e-02, -2.14692485939022847941e-02, -5.00660400534810728912e-02, 4.10286932308298671335e-02, - 5.98356967342531728682e-02, -6.87268417209678655899e-02, -1.00834342061879356223e-01, 2.89946855441678558174e-02, 6.84096422422015987275e-02, - 7.90905646811665974383e-02, 1.22761627402924594632e-02, -7.19296897992387496146e-02, -1.19563518571031840443e-01, 3.53949764125303933948e-02, - 3.49389806984224948749e-02, -1.34556768717593006057e-01, 1.30036738800839157815e-01, 1.47453022488737178763e-01, -1.75187106897877128975e-02, - -5.71655857598896560701e-02, -2.22513683371899778640e-02, 5.11984135243400070858e-02, 4.32198440146361120839e-02, -3.79006811678369512353e-02, - -1.61948869817943215399e-02, 5.87864730303968852088e-02, 7.56143666040565154418e-03, 3.79735451815043784096e-02, 4.88357571184367539319e-03, - -3.44600211423619568266e-03, 8.45175251030964858057e-03, 2.06501052974025246789e-02, -2.27945980601942863042e-02, 7.52792623890808781928e-02, - -4.07335076464383702421e-02, -1.22373247319515162691e-03, 7.12818582736400585542e-03, -2.08797409246280901707e-02, 2.35344435031375059930e-02, - 5.38553837448995376125e-02, 2.29385900837120154661e-01, -3.60512186055045147359e-01, 4.09262094434219958483e-01, -1.43204915316633707434e-01, - 1.76661646314910159017e-01, 1.59424540157772631765e-01, 1.19996653025061628117e-01, 9.74032138671445946176e-02, 8.01756516767066496065e-02, - -4.22092435868048232450e-01, 3.42598707334977881089e-01, 7.26427774784764446192e-02, -1.92869792680440410582e-04, -9.14800737566894561770e-02, - 1.86904852575672325576e-01, 9.03785536307215725538e-02, -8.70628859333670845899e-02, -1.20357023393743836626e-01, 1.30276821268167974921e-01, - -5.50418496727855255379e-02, -1.39930929689677463479e-01, -4.10997318303747902202e-02, 1.66027061444833590187e-01, -3.31025873454900559922e-02, - 5.45967001368218574076e-02, -1.86051192758042188702e-01, 3.57669212138109621213e-02, 1.96823682403928168494e-01, 1.12736638944959083330e-01, - -1.18563060708320622272e-01, -7.11264215849067293895e-02, -3.33098969956449747487e-02, 4.88100702343404121986e-02, 2.04094083090545080905e-02, - 7.78285563663724117012e-02, -4.14113893806803898268e-02, 1.26375672481289953730e-02, 1.38745116741378599068e-01, -8.57558938152793923115e-03, - -9.29289689333271246019e-02, -8.27276771926104548260e-02, 5.84956615429012907748e-02, 2.29399633044502938156e-03, -2.09824524198216422546e-03, - -2.30538708704958079931e-02, 3.77132043821169771203e-02, 6.53337758882697045015e-02, -3.06667712165429387494e-02, -1.14650515581519504144e-02, - 1.46194883433694872849e-02, 3.46636747707448856712e-03, -4.35546278336838635359e-02, 6.29051255528407793349e-02, 6.12210568933847180256e-03, - 2.07571937975545607602e-02, 3.35768305063385619214e-01, 7.46266949448459948613e-01, -6.72463631746016698987e-02, -1.94536700956528363360e-01, - -2.75088750614828209118e-02, 1.42328699967799371384e-01, 3.35288125725375085739e-01, 1.29661987766008346412e-01, 2.90956042046801172107e-02, - -2.05442280573112395770e-01, -9.57252926974513779212e-02, -9.10355774240597659386e-02, -1.25784172798783761005e-01, 1.12460127036075691054e-01, - 9.44013754824246931197e-02, -6.05135930061245497225e-02, 9.42673278665148578481e-02, 2.00615512602382500829e-01, -5.92185875904504069323e-02, - -2.28592246943101873313e-01, -1.07412950490968162054e-01, 2.20172956055192214908e-01, 3.33294698669218958376e-01, -4.44283179185198731642e-02, - -1.01766394690480529994e-01, 1.17472184755037761805e-01, 1.04892483649878465179e-01, -6.62468314716531808672e-02, -2.45565086356498013531e-03, - 4.79072727765457034854e-02, -7.97766729243851169251e-04, -2.33714338875874692858e-02, -2.56642787088907850523e-02, -9.62514763421860042314e-02, - 3.99383399281938444858e-02, 2.88865653017884548015e-02, -5.15182520475396393822e-02, 8.26498791523299636275e-02, -2.98742841129583554249e-02, - -8.28182978045203938011e-02, 3.14455026979475749105e-02, -1.53345808562610789669e-03, -3.62400610998830294274e-02, -2.51728077975302867719e-02, - -3.02379015962623703961e-02, 2.68910770206758423240e-02, -8.22634968902352312070e-03, 3.66544933660152699728e-02, 1.32356634436242674713e-02, - 3.21880247207419244518e-03, -1.97571016662111687001e-02, 5.93796945717029508310e-03, -4.31413602924163308572e-02, -2.72339719264069676785e-02, - -1.87274725743593273286e-01, 1.39283127485721136551e-01, 4.74963034217010249272e-01, -3.42073553333540392174e-01, 4.83885077044606606855e-02, - -2.59068005795831224347e-01, -2.13264680765766156956e-01, -7.36008484860203593403e-02, -8.13152420843461926081e-02, -1.21927665578479005326e-02, - 1.79904544651649317411e-01, -1.09959740517953624694e-01, -2.22065490779929819443e-01, 7.14015849729179447047e-02, -5.85031872787839662964e-03, - 9.72943249874637094976e-02, 1.58464145663301525513e-01, -6.23660570620122936547e-02, -2.05086286960385583145e-01, -5.07929431274403847540e-02, - 4.21897204870116185327e-02, -6.99935466206487028051e-02, -6.71348953496629374804e-02, 1.65743074443523596972e-01, 8.56850642116062655163e-02, - -1.19953810412321809631e-01, -7.40173516101229334030e-02, 1.18865945768013535344e-02, -7.71584669380707965924e-02, -6.31283399388396088137e-02, - -1.45882854372074655114e-01, 6.29307315713034526317e-02, 1.48912624660626508738e-02, -6.72819324032104260080e-02, 3.22547499735358483841e-02, - 4.97387743825052491831e-02, -5.43073271907661761504e-02, 1.52590958854153246893e-02, 2.92721489192738311066e-03, -1.87663839736718872364e-02, - -3.80050872053503069684e-03, 5.91273447672226934446e-02, -2.83684585809016896404e-03, 1.70512827209476636181e-02, -1.44259815516434488497e-02, - -8.06597987912826830392e-02, 5.19954562777717940736e-02, 1.09504480128524081528e-02, 1.26439885486616093030e-02, -2.34593647937779382559e-03, - 2.47413111762442641806e-02, -6.13559850860111253429e-03, -6.05626633742831349538e-02, -1.98467175793774985859e-01, 3.18979113074946862838e-01, - 6.23356771079433893967e-02, 1.30138108749532965813e-01, -1.05230501466137910116e-01, -6.87754575227078057686e-02, -4.22436887367944324811e-02, - 7.57926459563205562331e-02, 4.78504387573109452036e-02, -2.22681497547184761854e-02, 8.46951897073950493722e-02, -7.44317622658197293462e-03, - -1.89157622212636281067e-02, -6.19719693803440774271e-02, -8.37644347918033160827e-03, 1.32514981682897603488e-01, -1.09126775888557903116e-01, - -6.47849222903969929055e-03, 4.65591560634076861991e-02, -2.24234845462696341656e-01, 7.29582023256248463072e-02, 2.23965783883813690514e-03, - -5.19349169152241198211e-03, 2.25395864383192284786e-02, 9.10694488527918760701e-02, 7.36945737152017443794e-02, -2.16337158651918673447e-02, - -5.35436418307164291308e-02, 2.40342905027485786995e-02, 4.81946656785084762142e-02, -3.06521617296798450092e-02, -4.07904977042986977009e-02, - 6.32948267919029999851e-02, 4.53192474361057834331e-02, -2.29008122631283589365e-02, 1.62576382380966721897e-02, 3.82842631619570161750e-02, - 3.52346794652655739832e-02, -3.95023093184828782976e-02, -3.15659719925446974331e-02, 4.02431236080928178556e-02, 2.45684617558553607120e-02, - -1.93194945947791144047e-02, -2.48322169406506726430e-02, -1.13621415403786386183e-02, -3.31487361399904478798e-02, 1.68675563537488623633e-02, - 4.01325091519489432490e-02, 4.14338905584917469027e-02, 1.31273776950603299207e-01, 7.16276979245435152510e-03, 5.02985992698696121606e-02, - 1.78045915098635626483e-01, -1.86314001159308406663e-01, -1.35151434606926579285e-01, 1.69947309928447143346e-01, -8.37791941109623933270e-02, - 2.41195207762586322220e-02, 1.26309574838379373718e-01, -2.00571859613532021971e-01, -1.63465438373802895988e-01, -6.96363659600393730686e-02, - 1.14524330229191645403e-01, 7.12890316169484949960e-02, 5.80381889626466196397e-03, 4.93537868059431283907e-02, -8.44257746020753430116e-02, - -1.41929196365875275043e-02, 8.22387462453117029648e-02, -8.50093260265970818157e-02, 2.71192346905003156543e-02, 9.03395551304754379496e-02, - -1.71516448697893314490e-02, 8.18953521749132690166e-02, 1.11511604557867297777e-02, -4.78373059022189212053e-03, -9.53023452930306103070e-02, - 5.38686323249407891800e-02, -3.84678611713600085431e-02, -5.04713920668615947246e-03, 6.80811773653991481048e-02, -3.33049215638338835799e-02, - -5.28099294606356045589e-02, -7.54699335274512245197e-02, -5.40781758032556764126e-03, 8.29793590010352716257e-02, -5.97312971039127629802e-02, - -2.71427292677366080453e-02, -6.36007393417800138968e-03, -6.21102608067901958838e-03, 1.20982775517295207401e-02, -1.17366629581995736420e-02, - 3.79477291991657597614e-02, 4.16172556173764890408e-02, -4.15482630953573559007e-02, -2.10178763811884848633e-02, 2.25384141584651191692e-02, - 3.26544906456272876483e-01, 1.14875244914279722730e-01, -1.66631737648658934114e-01, -6.36733988328790686401e-03, 1.05207112351735077027e-01, - -2.56656713269180158932e-01, 6.60485459910778310855e-02, 4.17130045127815929362e-02, -7.37791748174861372611e-02, 7.60523512741725499220e-02, - -4.55959006761720783696e-02, -2.36680526647207629953e-02, 1.10634117950077798254e-01, -2.08651727388676766495e-02, -7.64711683504649686327e-02, - 8.13422913278145920390e-03, 7.93342835009738511776e-02, -1.36145811582776665727e-01, 3.71088391279384144372e-02, 3.21562962981391253781e-02, - -1.14387894243613869039e-01, -1.51631103622234392203e-03, 5.78217444722389575795e-02, -4.71124806075210594836e-03, 1.51729749910356030707e-02, - 9.74258177618566034717e-02, -1.10011849267590264279e-01, -9.55723084321756233273e-02, 5.40108889439728720450e-02, 2.20372759806924181647e-02, - -3.12940070328804331723e-02, 7.31829279647891323135e-02, -5.03897879848870661190e-02, 3.56857218059479508465e-02, 2.77447201596329011408e-02, - -2.09552594775335998545e-02, 1.43951419283830060747e-02, 5.39902985778747748769e-02, 2.12233791683978864628e-02, -1.06021857317053335573e-02, - -1.29173575974317281917e-02, 2.33645540297061204277e-03, 2.61896609343018451146e-03, -1.14595932568608803448e-02, 3.56767949738183843926e-04, - 2.01246788122515993247e-02, 1.99364141245472692443e-01, 1.02386975283006720350e-02, 1.46491539292862016364e-01, -2.92173375533333390397e-01, - -2.79882649001711690528e-02, 7.89598614348374083782e-02, 1.73932768517874730696e-02, -1.69430993280276553925e-01, -3.49439319604140236075e-02, - -2.41776119023419042153e-02, -1.19007451411664612329e-02, 7.52785183419538428407e-02, 8.00732324924654653708e-02, 5.80254140930885203842e-02, - -2.99344525092792301812e-02, 2.00701049258613407889e-02, -4.85173141225875570459e-02, -1.24597145763424926868e-01, -1.51901004582441958440e-02, - -1.61680779553563594431e-02, 6.85542113027582250551e-02, 4.25745326736892623631e-02, -1.06278911193231559440e-04, 9.76285197536541464458e-03, - 3.87428701891937912749e-02, -2.30639988244256723127e-02, 6.36890026034679732764e-03, 3.02413182033626840028e-02, 3.88836672433736253024e-03, - -9.08662711955680046927e-02, 4.01745378306784250988e-02, 1.03266559093635329480e-01, 2.14979137912293429002e-03, -5.41722635351460576891e-02, - 2.61282597269434195553e-02, -1.88195226737477086520e-03, -2.19435523135619973967e-02, 1.32921056129775890658e-02, -1.39584001825611234843e-02, - -2.33277834487258597940e-02, 3.20387242392535485924e-03, -2.56605748623718842027e-02, 3.00558911102263848214e-02, 3.05648112133436906934e-02, - -2.59104772664633942192e-03, -3.60234150814368395133e-02, 1.89051474579463585357e-01, 7.67659810167127809599e-02, -1.24703387595890141659e-01, - 1.16494243349512860419e-01, -1.23273291315800521267e-02, -8.52472265397304362899e-02, 4.85995814815475199455e-02, -4.91533864052588892468e-02, - 7.09392924651690154336e-02, 3.86918200904741022006e-02, -6.05870726251201280332e-02, 1.26662290542081668043e-01, -1.26300238339170367574e-02, - -2.77371050405810226636e-02, -5.43586513698262885352e-02, -7.86459616541178574423e-02, 6.23528587727540037355e-02, -4.79677851814970662714e-02, - -6.51687150996678454806e-04, 5.76336385114276719688e-02, 1.44542478484825671209e-02, 3.16928492510423695516e-02, 1.45017405736592441823e-02, - 3.77649866255029068030e-02, 2.76488049642000443748e-04, -6.60577998684190731415e-02, -1.43760686140608738570e-02, 3.59108661833638931338e-02, - -1.96544252969081192917e-02, -3.14635605928988426605e-02, 2.73136448740384021883e-02, 4.81895944089887409700e-02, -1.41798371596522010049e-03, - -2.76940211432370950173e-02, -1.79321359038478039816e-02, -8.04857916575939247306e-03, 6.12601355103674924743e-04, -3.04826514707566033346e-02, - 3.97737096905840994271e-03, 2.93070515299252015717e-02, -1.68977509366934480761e-01, 3.32231696372570911580e-03, 1.25024830498748684704e-01, - 1.14603027997231002311e-01, -1.00188353252315814901e-01, -9.84663913699934667534e-03, 4.24578628782099620764e-02, -1.37172078837733080192e-01, - -3.49285758694722614504e-02, 5.10266827849673310080e-02, -8.71727496405721724582e-02, 6.53026570180906262841e-03, 8.81977524226997683376e-02, - -6.34979748614215300240e-02, -6.75922576223946108831e-02, -9.09058087393600777748e-03, 8.58354921744265697559e-02, -3.11903783366274736655e-02, - 2.00028673474334506288e-02, 2.51992069666158204078e-02, -1.15065874504069552003e-02, 1.90952708533619654185e-02, -1.42994317615683774053e-02, - 8.38885300224805237346e-04, -3.82027498742033497225e-02, -3.67441895491770198490e-02, 2.50992455595355073994e-02, 7.01187400269996513602e-02, - -5.54375280311450654991e-02, -4.38519736099493434578e-02, -7.84180536804670973161e-03, 2.15733075413469983783e-02, -1.13430180042112986952e-03, - 1.43263625967320618049e-02, 3.38406892444173892920e-02, 2.61661740894084809961e-02, 1.89963433472952851477e-02, 4.11523810167366797808e-03, - -4.07083694738235874616e-03, -2.14250124636823323365e-02, -2.51950730394823532721e-02, 3.42343547054715646727e-02, -1.60995215305804545425e-01, - 1.46286861154573760713e-01, -1.42470612032240401268e-02, -8.74980046536548150549e-02, -4.25453860188948623788e-02, 1.17182553786398857554e-01, - -1.00991016453327253632e-01, -7.91738577441953306213e-02, 5.29573588185536445194e-02, -2.21614298461902045623e-02, 3.58602587208211864844e-02, - 2.52438926833398191718e-02, 9.41877819477729971709e-02, -6.48116676539685077074e-02, -6.92622200130770665494e-02, 3.44271533520238565140e-02, - -2.14712430694437191037e-02, 1.72316382693014427674e-02, -2.66608743584075963406e-02, -2.10082338877249467923e-02, 8.91565305172099635544e-03, - -1.23413533420058361967e-02, -6.55699200671947673991e-03, -6.50539642022832619028e-03, 1.51124007337151353147e-02, 5.20370287348198221067e-03, - 2.44544519960917354495e-02, 8.17735780033393942767e-03, -3.77816692303542945967e-04, -2.75580902253722351269e-02, 1.61366174765763085996e-02, - -2.54225642602667507852e-02, -5.68510449978476550825e-02, 1.03315681722852791002e-02, 5.48232041684815468024e-03, -3.22722809472682503618e-02, - 1.68859338049149008965e-02, 6.21665123569529881609e-02, -1.49734091796970530952e-01, -1.69848035269845681894e-01, 7.28166844225807269320e-02, - -9.38546660994197951000e-02, -5.98972210309676594830e-02, 1.60189670628219316129e-01, 9.68228235109596380159e-02, -1.14699218288179388692e-01, - 5.22495478003770982833e-02, -2.50191304829539204468e-02, 2.77221049132821764638e-02, 5.25053174572039649259e-02, 4.67049795137407172674e-02, - -4.25063623233455645245e-02, -7.79015735544906322285e-03, 8.35061691171900405406e-02, -2.77565926301914164820e-02, -3.55176007501909543618e-02, - 5.22884040187019810686e-02, 4.47524306813492939866e-03, 3.34858736182796073999e-02, 2.18065090398272508343e-02, 3.96249948248765804237e-02, - -1.75050000687652293485e-02, -5.30639824787136182155e-03, 1.31658536276919365532e-02, -3.54893637807925724226e-02, 1.44838563901157494143e-03, - 2.53219139441511024990e-02, 1.51209661740110620776e-02, -3.18928979311501516886e-03, 8.08035892351891861518e-03, 1.49482343348299774599e-02, - -4.67401524501743839690e-02, 8.81785937471118302922e-02, 1.09443858484468511949e-01, 9.61675669132599497679e-02, -7.39592182705455791769e-02, - 8.87508822651789097691e-02, -7.91714174638406542606e-02, -1.25898861391198962911e-01, 8.84171948090256565322e-02, 3.93482215277929509023e-02, - -6.26211797345710557972e-02, 3.11866892937116280127e-02, 1.54206070094080910371e-01, -7.15962414998223273255e-02, 4.04187883182457047271e-02, - 3.87320351160306483584e-02, -2.13087169719965857650e-02, 2.04352330201420621936e-02, 3.60324068311299108847e-02, -6.71927151509099790383e-02, - -5.86355402262732916530e-02, 1.95738272971190847838e-02, 1.19986570986449735121e-02, -4.16517345466257682407e-02, 4.57582247311850084937e-02, - -5.64919874467361762815e-02, -2.96306742467898837426e-03, 3.45918894384134034681e-02, 9.37965919443191353810e-03, -5.31266846947417263614e-03, - 7.44645101900219368030e-03, -8.16779483872519251886e-03, -1.49486275306286754694e-02, 5.40961754497425346966e-03, -6.07743621110200162722e-03, - -2.86027271239626297572e-02, 9.28607307596479303324e-02, 1.15334393912762608880e-01, 2.22619048233438435180e-02, -2.81988516854455167904e-02, - -3.27953711282213400402e-02, -7.26623103447188861681e-02, -6.21318073281297983401e-02, 8.15860644657136341307e-02, 1.79600966703069159225e-02, - -8.26984672948943289050e-02, 2.66922837734803533594e-02, -5.62012642483699781382e-02, -7.54479658771655264937e-02, 5.63921972458279810447e-02, - -8.88808665037604112014e-03, 4.49098738994229513752e-04, -1.64624335502902702233e-02, 5.00902714527058645633e-02, 1.06477908341492902983e-02, - 2.19722684831073211686e-02, 9.27897245497274342219e-03, -1.38071463629181757221e-02, -3.25812324194547434097e-02, -3.02235182235052954325e-02, - 2.70211283173303479233e-02, 1.78695725115783597692e-02, -1.97856995310294429824e-02, 2.14583909244959528118e-02, 8.31160096115654556392e-03, - -7.96044059263601583298e-03, -7.03711411983747731069e-03, -7.52245974116911853002e-02, -7.17896739726268801052e-02, 1.07396425196690896431e-02, - 7.25906809169843403318e-02, -9.45023972725838740105e-02, -6.71199808984563744962e-02, 7.35264690791543329418e-02, 2.98610952212447697263e-02, - -7.52442146662268135371e-04, 9.23976694955527116937e-02, 4.60854381027500578649e-02, -5.81010137429742931636e-02, 5.19935015121687146844e-02, - -4.28751313838296663206e-02, 2.68412731409498166169e-02, 9.92974085166531926505e-03, -1.41649957602334279627e-02, 8.49484772510930227774e-03, - 1.60608334268962397659e-03, 1.53969582107269485627e-02, 2.53654424332110106644e-02, 2.20836817019017840613e-02, -4.96400766026642691758e-03, - -4.63895546537213768895e-03, -3.69755978269468085773e-02, -4.24220279369531480529e-02, -2.80842055465305032516e-03, 3.43511446156298310903e-03, - 1.50427480682660263955e-02, -7.64781824357823984684e-03, 1.55431405065905338392e-02, -5.28685500234718219748e-02, -4.81425552620864186104e-02, - -6.98904426260522071424e-02, -5.69063762150740712342e-02, -2.01599484306710097226e-02, -7.08142573082899164094e-03, 1.60387886663503793916e-02, - -8.26785713680359968247e-02, 2.82003440014560874394e-02, 2.73932418290509169245e-02, -3.17992788170617102228e-02, 5.85714331111230612770e-02, - 5.86577384557991701741e-02, -2.75299012996250893476e-03, -8.45195718330371027760e-03, -1.36279044444791216234e-02, -1.13870143130110085955e-02, - -9.47170994530230694886e-03, 8.38589777991547574709e-03, -2.44907795135516845320e-02, -1.88112311627625997112e-02, 1.66825300517051550164e-02, - -1.40472696715355817310e-02, 4.07602998308370448322e-02, 4.52331228574007898624e-03, -7.41516905358174677892e-03, -1.90839799893427405908e-02, - 1.37235319648593090402e-01, -5.07166887609150802974e-03, 1.66347985382777688312e-02, -8.94058332794331472870e-02, -9.96617048317507969735e-03, - -3.39998201752246195784e-02, -2.72752305938337435975e-02, 1.41116199971288980557e-04, 1.20136294077674496417e-02, 1.21046096252801875515e-02, - 4.67374536088999582156e-03, 1.76093997807116745338e-03, -6.49132489663982719524e-03, 6.34253853067380107822e-02, 4.20234078454048282092e-02, - -3.39907942260764435460e-03, -3.13684078013621997494e-02, -5.59725664044557688626e-03, 1.46041344723689698465e-02, 8.15628093364801319554e-03, - 8.81123245682426982361e-03, -5.36576704715815769320e-02, 4.13564181087699121731e-03, 6.66570175208870251832e-03, -3.06753731552251258582e-03, - 3.24260047333155276839e-02, 3.78357123622976698057e-03, 1.22559252382635042178e-01, -3.26726534731656623189e-02, -4.57263244390499479231e-02, - 1.23161267442891183416e-02, 5.60898223233850107272e-02, -2.07946281596515653023e-02, 3.30973059009364162231e-02, 3.79099335956614089116e-02, - 3.02099801034241572523e-03, -4.11260349557933183040e-02, -2.09662321613402133358e-02, -1.35059512400454856396e-02, 2.11033519015176411482e-02, - 2.49738730383721862366e-03, 1.80042474049896738739e-03, -4.21972590754290111104e-02, 7.84304881856809008034e-03, 1.28611420258033324476e-02, - 1.53304442551651341764e-02, 1.14809771240723442615e-02, 5.45508167269171534430e-03, 6.03486224308978115582e-03, -6.17922023172545829134e-03, - -1.06402780093771354153e-01, -1.06566854283863088337e-01, -1.56672555450536946098e-02, -4.17617234129553371869e-02, -5.84327485785076233826e-02, - 1.72707037153512245331e-02, -4.27180361478920241763e-03, 3.83975587930814599158e-02, 7.18917519991502662613e-02, 1.73599075858622414748e-02, - -5.06102136889801795805e-02, -2.28302899957008066656e-02, 4.05449577890660689539e-02, 6.05903063932164507449e-03, 1.42495320779388468663e-02, - -1.46505630681158707102e-02, -5.51579872998721708333e-03, -2.03950903125686006101e-02, 1.71600095189964607645e-02, 3.10141280680510215972e-02, - -6.92078952483923121042e-03, -1.25723580586239959064e-03, 4.83571917759556130223e-02, -1.08848884748079619000e-01, -7.62227492845969547414e-03, - 3.98614872899268266049e-02, 2.51496883852979809248e-02, -7.45157236466782307849e-02, -2.54315956467565489063e-02, 5.86785913495517369443e-02, - 6.07261945507166309849e-03, 2.37710782485035070077e-02, 2.40958099664499367232e-03, 8.00723308014901838381e-03, 5.57202821065413758661e-02, - -6.18738592105032812751e-03, 1.57471692604664484198e-03, -2.08797558382940772262e-03, -2.73200765442419279960e-02, -2.06208586891517380024e-02, - 6.40309150046379439887e-04, 3.34147637908005640250e-02, -2.31245128603038314907e-02, 3.13805487530873783442e-02, -3.76503956682762222496e-02, - 3.82033717675601958152e-02, 6.08549869979059313008e-02, -1.40664950951139375995e-02, 1.20432450888018800772e-02, 4.11120541709728091334e-03, - -1.31431111647770104689e-02, -2.16767866450208908369e-02, 2.36444182462271527620e-03, 4.15518391649481646372e-03, -7.19797119986096724242e-03, - 3.63099914737792378583e-02, -1.71114207061806439247e-02, 9.12094809288829279359e-03, -2.00581984724530065778e-02, 4.18093901030532240359e-03, - -1.54353999486445108563e-02, 3.77632145097120189292e-02, -8.67412239218371683425e-02, 3.74024476837445662980e-02, 7.02791955646850374784e-03, - -3.07387087745127421390e-03, 1.26170642077405754933e-02, 7.19502473862098246987e-03, 5.00348237158451253359e-02, 6.05821676660315069918e-03, - 2.81657375913338843543e-02, -2.75046494305255621871e-02, -3.32847608680125889302e-02, 4.92458523340539092161e-03, -6.97895182233836727098e-03, - -1.84078432809154611538e-02, -2.55254058040131799612e-02, 4.38596283726821068588e-03, 7.97305689082921688338e-03, -6.65251068675700718558e-02, - -2.43074168732615144076e-03, -3.21551055785660854641e-03, -2.14057386820096506863e-02, 1.73404829493880863200e-02, -2.21788279126988834011e-02, - 3.67289476360874028726e-02, 2.88921423109056961509e-02, -4.36590369050650264210e-03, -3.38015966458028857197e-03, -1.47872402615952351634e-02, - -2.67937691397940741522e-02, -4.01628891758317591032e-02, 5.37104159736995767638e-02, 3.38881421250558784175e-02, -1.94731556323654853013e-02, - 6.80080451079642287447e-04, -1.16224021866609874415e-02, -2.84314312441163938305e-02, -3.10403528556473483346e-02, -1.52614844050795953750e-02, - 1.46865039960839046523e-02, 7.74337973212646264037e-03, -2.75213939675030445919e-02, -3.12476741289728875139e-02, -3.75401476285800936306e-02, - 4.53067917901101985256e-02, 4.75497506720418041531e-03, 1.25627944556748021021e-02, 4.03046169919628882727e-02, -3.29378978115561424356e-02, - -2.51499548928088654393e-03, -1.99564144518295516484e-02, -2.63938123636600005528e-02, -1.84979990476826575141e-02, -4.75891539387540141171e-02, - 1.70189645456799328038e-02, 2.90621732209333551167e-02, 1.69695748997654785595e-02, 6.00578109434020054880e-03, 3.77405846672976205691e-02, - 1.04426223615697640751e-02, -7.42237607930411715310e-04, -1.51118572042552353624e-02, 1.29952623161545995079e-03, 1.26799047323642617713e-02, - 1.05278997248968164691e-02, 2.29682654055416574090e-02, 1.28888330591014361320e-02, -1.03014730669756075787e-02, -4.83421710205830541113e-03, - -1.90040068302814585399e-02, -4.31802671175361696410e-03 -}; +#include "grib_sh_values.h" #define ILCHAM 992 #define MTRONC 30 diff --git a/tests/grib_sh_spectral_complex.c b/tests/grib_sh_spectral_complex.c index 3314fa503..b8b024e67 100644 --- a/tests/grib_sh_spectral_complex.c +++ b/tests/grib_sh_spectral_complex.c @@ -11,207 +11,7 @@ #include "grib_api.h" #include -static double values[] = { - 2.78565217180879301395e+02, 0.00000000000000000000e+00, 8.38367712240454920902e-01, 0.00000000000000000000e+00, -7.22151022768738215518e-01, - 0.00000000000000000000e+00, 1.54447137639483056404e+00, 0.00000000000000000000e+00, -8.10351659720698336287e-01, 0.00000000000000000000e+00, - 6.45930713064333694717e-01, 0.00000000000000000000e+00, -1.73417955255619204991e-01, 0.00000000000000000000e+00, -9.09351867483918913093e-02, - 0.00000000000000000000e+00, -3.00845517613623769648e-02, 0.00000000000000000000e+00, -1.97522108657794209785e-01, 0.00000000000000000000e+00, - 1.45006392199800160370e-01, 0.00000000000000000000e+00, -6.92319525648382033678e-02, 0.00000000000000000000e+00, -3.37495245995370396486e-01, - 0.00000000000000000000e+00, 2.93969252845082296144e-01, 0.00000000000000000000e+00, 5.22791676917648828748e-02, 0.00000000000000000000e+00, - -4.31020055899014042922e-02, 0.00000000000000000000e+00, -5.34277055570271386387e-02, 0.00000000000000000000e+00, 1.57725778753141337996e-01, - 0.00000000000000000000e+00, -1.38048966071163903280e-01, 0.00000000000000000000e+00, 7.95936533884674390915e-02, 0.00000000000000000000e+00, - -5.08988096408558021722e-03, 0.00000000000000000000e+00, -3.17356690459940984916e-02, 0.00000000000000000000e+00, -7.97854100625838141836e-02, - 0.00000000000000000000e+00, -1.25759522048120825355e-01, 0.00000000000000000000e+00, 1.41095505007377608475e-01, 0.00000000000000000000e+00, - -2.90041709701537933630e-02, 0.00000000000000000000e+00, 1.16118748810570035501e-01, 0.00000000000000000000e+00, -1.42650207377574778089e-01, - 0.00000000000000000000e+00, 6.63859656709936268859e-02, 0.00000000000000000000e+00, -8.43008351127146754456e-02, 0.00000000000000000000e+00, - 8.11805506119530340126e-02, 0.00000000000000000000e+00, -2.92579106275835476580e+00, -2.73257362252726822283e-02, -2.31503061096297768628e+00, - 2.98481883110496337697e-01, 2.32422954464165210098e+00, -9.36624989809203695179e-02, -1.13647173814196378316e+00, -4.24970312443540054748e-01, - 1.26754821773852066613e+00, -7.20859094680278700285e-02, -9.51306475614490221204e-01, 6.14867632012408793507e-01, -9.85091038732955892598e-02, - -6.34523215803268758606e-02, -6.78708060411115782218e-02, -1.35311523427619539994e-01, -9.04935301775932621204e-02, -9.78101007785831533248e-02, - -9.81097374871810895547e-04, 1.80616098092357818539e-02, -2.64791786212412172397e-02, -4.76558495508507054539e-02, -1.96341419265033012564e-01, - 3.40906457596743608929e-02, -7.81262194523913988675e-02, -1.90201799489863598858e-01, 2.25178750048809411810e-01, 2.86704542482240504198e-03, - -1.19805102746233238520e-02, 1.68969022321052431135e-02, 5.64738950483129331648e-02, -1.39757566954298140249e-01, -7.44084433787887133960e-02, - -1.79448737058076172868e-02, 6.14333363921325120716e-02, 4.42090839521651901567e-02, -1.59177621940344016238e-02, -2.45259140787589882682e-02, - 4.14722887926062475095e-02, -9.08467249754976585718e-02, 7.32634132869659504550e-02, 3.98083190502361433660e-02, -6.23330309466623433412e-02, - 3.23061735747387016038e-02, 5.24308078374175548508e-02, -6.52853670335678676340e-02, -4.74582205706168894221e-02, -2.57646217050176394581e-02, - 4.85326601320503064896e-02, 4.57836316487753580695e-02, -1.61395013977115135695e-02, -4.31399408593192076888e-02, -1.72982609465274252136e-02, - 2.05141743795376405024e-02, 5.13479785723864323721e-02, 2.02753965345298277356e-02, -9.62325942856205422682e-03, -1.21013000039295196344e-03, - 4.61377663687331032727e-02, -6.90153405245983028390e-04, -1.66104804699747843344e+00, 1.79666906865138087390e-01, 7.23133875761683864170e-01, - 4.15103729262486009777e-01, -3.04359433047895144853e-01, -1.33601223735748869670e-01, 1.11896993727331572899e+00, -5.97930191729183602156e-01, - -3.21482407719980045613e-01, -6.44440729482515239912e-02, -1.39643167588630684461e-01, -7.87344252201049310536e-02, -2.74194962741515224636e-01, - 3.16014987883590156570e-02, 2.61916687188788577245e-01, -2.29041295889389484586e-01, 1.37413993896893793512e-02, 1.02848928276271345261e-01, - -8.45943398257167356036e-02, -8.55836430183285895579e-02, -2.14692485939022847941e-02, -5.00660400534810728912e-02, 4.10286932308298671335e-02, - 5.98356967342531728682e-02, -6.87268417209678655899e-02, -1.00834342061879356223e-01, 2.89946855441678558174e-02, 6.84096422422015987275e-02, - 7.90905646811665974383e-02, 1.22761627402924594632e-02, -7.19296897992387496146e-02, -1.19563518571031840443e-01, 3.53949764125303933948e-02, - 3.49389806984224948749e-02, -1.34556768717593006057e-01, 1.30036738800839157815e-01, 1.47453022488737178763e-01, -1.75187106897877128975e-02, - -5.71655857598896560701e-02, -2.22513683371899778640e-02, 5.11984135243400070858e-02, 4.32198440146361120839e-02, -3.79006811678369512353e-02, - -1.61948869817943215399e-02, 5.87864730303968852088e-02, 7.56143666040565154418e-03, 3.79735451815043784096e-02, 4.88357571184367539319e-03, - -3.44600211423619568266e-03, 8.45175251030964858057e-03, 2.06501052974025246789e-02, -2.27945980601942863042e-02, 7.52792623890808781928e-02, - -4.07335076464383702421e-02, -1.22373247319515162691e-03, 7.12818582736400585542e-03, -2.08797409246280901707e-02, 2.35344435031375059930e-02, - 5.38553837448995376125e-02, 2.29385900837120154661e-01, -3.60512186055045147359e-01, 4.09262094434219958483e-01, -1.43204915316633707434e-01, - 1.76661646314910159017e-01, 1.59424540157772631765e-01, 1.19996653025061628117e-01, 9.74032138671445946176e-02, 8.01756516767066496065e-02, - -4.22092435868048232450e-01, 3.42598707334977881089e-01, 7.26427774784764446192e-02, -1.92869792680440410582e-04, -9.14800737566894561770e-02, - 1.86904852575672325576e-01, 9.03785536307215725538e-02, -8.70628859333670845899e-02, -1.20357023393743836626e-01, 1.30276821268167974921e-01, - -5.50418496727855255379e-02, -1.39930929689677463479e-01, -4.10997318303747902202e-02, 1.66027061444833590187e-01, -3.31025873454900559922e-02, - 5.45967001368218574076e-02, -1.86051192758042188702e-01, 3.57669212138109621213e-02, 1.96823682403928168494e-01, 1.12736638944959083330e-01, - -1.18563060708320622272e-01, -7.11264215849067293895e-02, -3.33098969956449747487e-02, 4.88100702343404121986e-02, 2.04094083090545080905e-02, - 7.78285563663724117012e-02, -4.14113893806803898268e-02, 1.26375672481289953730e-02, 1.38745116741378599068e-01, -8.57558938152793923115e-03, - -9.29289689333271246019e-02, -8.27276771926104548260e-02, 5.84956615429012907748e-02, 2.29399633044502938156e-03, -2.09824524198216422546e-03, - -2.30538708704958079931e-02, 3.77132043821169771203e-02, 6.53337758882697045015e-02, -3.06667712165429387494e-02, -1.14650515581519504144e-02, - 1.46194883433694872849e-02, 3.46636747707448856712e-03, -4.35546278336838635359e-02, 6.29051255528407793349e-02, 6.12210568933847180256e-03, - 2.07571937975545607602e-02, 3.35768305063385619214e-01, 7.46266949448459948613e-01, -6.72463631746016698987e-02, -1.94536700956528363360e-01, - -2.75088750614828209118e-02, 1.42328699967799371384e-01, 3.35288125725375085739e-01, 1.29661987766008346412e-01, 2.90956042046801172107e-02, - -2.05442280573112395770e-01, -9.57252926974513779212e-02, -9.10355774240597659386e-02, -1.25784172798783761005e-01, 1.12460127036075691054e-01, - 9.44013754824246931197e-02, -6.05135930061245497225e-02, 9.42673278665148578481e-02, 2.00615512602382500829e-01, -5.92185875904504069323e-02, - -2.28592246943101873313e-01, -1.07412950490968162054e-01, 2.20172956055192214908e-01, 3.33294698669218958376e-01, -4.44283179185198731642e-02, - -1.01766394690480529994e-01, 1.17472184755037761805e-01, 1.04892483649878465179e-01, -6.62468314716531808672e-02, -2.45565086356498013531e-03, - 4.79072727765457034854e-02, -7.97766729243851169251e-04, -2.33714338875874692858e-02, -2.56642787088907850523e-02, -9.62514763421860042314e-02, - 3.99383399281938444858e-02, 2.88865653017884548015e-02, -5.15182520475396393822e-02, 8.26498791523299636275e-02, -2.98742841129583554249e-02, - -8.28182978045203938011e-02, 3.14455026979475749105e-02, -1.53345808562610789669e-03, -3.62400610998830294274e-02, -2.51728077975302867719e-02, - -3.02379015962623703961e-02, 2.68910770206758423240e-02, -8.22634968902352312070e-03, 3.66544933660152699728e-02, 1.32356634436242674713e-02, - 3.21880247207419244518e-03, -1.97571016662111687001e-02, 5.93796945717029508310e-03, -4.31413602924163308572e-02, -2.72339719264069676785e-02, - -1.87274725743593273286e-01, 1.39283127485721136551e-01, 4.74963034217010249272e-01, -3.42073553333540392174e-01, 4.83885077044606606855e-02, - -2.59068005795831224347e-01, -2.13264680765766156956e-01, -7.36008484860203593403e-02, -8.13152420843461926081e-02, -1.21927665578479005326e-02, - 1.79904544651649317411e-01, -1.09959740517953624694e-01, -2.22065490779929819443e-01, 7.14015849729179447047e-02, -5.85031872787839662964e-03, - 9.72943249874637094976e-02, 1.58464145663301525513e-01, -6.23660570620122936547e-02, -2.05086286960385583145e-01, -5.07929431274403847540e-02, - 4.21897204870116185327e-02, -6.99935466206487028051e-02, -6.71348953496629374804e-02, 1.65743074443523596972e-01, 8.56850642116062655163e-02, - -1.19953810412321809631e-01, -7.40173516101229334030e-02, 1.18865945768013535344e-02, -7.71584669380707965924e-02, -6.31283399388396088137e-02, - -1.45882854372074655114e-01, 6.29307315713034526317e-02, 1.48912624660626508738e-02, -6.72819324032104260080e-02, 3.22547499735358483841e-02, - 4.97387743825052491831e-02, -5.43073271907661761504e-02, 1.52590958854153246893e-02, 2.92721489192738311066e-03, -1.87663839736718872364e-02, - -3.80050872053503069684e-03, 5.91273447672226934446e-02, -2.83684585809016896404e-03, 1.70512827209476636181e-02, -1.44259815516434488497e-02, - -8.06597987912826830392e-02, 5.19954562777717940736e-02, 1.09504480128524081528e-02, 1.26439885486616093030e-02, -2.34593647937779382559e-03, - 2.47413111762442641806e-02, -6.13559850860111253429e-03, -6.05626633742831349538e-02, -1.98467175793774985859e-01, 3.18979113074946862838e-01, - 6.23356771079433893967e-02, 1.30138108749532965813e-01, -1.05230501466137910116e-01, -6.87754575227078057686e-02, -4.22436887367944324811e-02, - 7.57926459563205562331e-02, 4.78504387573109452036e-02, -2.22681497547184761854e-02, 8.46951897073950493722e-02, -7.44317622658197293462e-03, - -1.89157622212636281067e-02, -6.19719693803440774271e-02, -8.37644347918033160827e-03, 1.32514981682897603488e-01, -1.09126775888557903116e-01, - -6.47849222903969929055e-03, 4.65591560634076861991e-02, -2.24234845462696341656e-01, 7.29582023256248463072e-02, 2.23965783883813690514e-03, - -5.19349169152241198211e-03, 2.25395864383192284786e-02, 9.10694488527918760701e-02, 7.36945737152017443794e-02, -2.16337158651918673447e-02, - -5.35436418307164291308e-02, 2.40342905027485786995e-02, 4.81946656785084762142e-02, -3.06521617296798450092e-02, -4.07904977042986977009e-02, - 6.32948267919029999851e-02, 4.53192474361057834331e-02, -2.29008122631283589365e-02, 1.62576382380966721897e-02, 3.82842631619570161750e-02, - 3.52346794652655739832e-02, -3.95023093184828782976e-02, -3.15659719925446974331e-02, 4.02431236080928178556e-02, 2.45684617558553607120e-02, - -1.93194945947791144047e-02, -2.48322169406506726430e-02, -1.13621415403786386183e-02, -3.31487361399904478798e-02, 1.68675563537488623633e-02, - 4.01325091519489432490e-02, 4.14338905584917469027e-02, 1.31273776950603299207e-01, 7.16276979245435152510e-03, 5.02985992698696121606e-02, - 1.78045915098635626483e-01, -1.86314001159308406663e-01, -1.35151434606926579285e-01, 1.69947309928447143346e-01, -8.37791941109623933270e-02, - 2.41195207762586322220e-02, 1.26309574838379373718e-01, -2.00571859613532021971e-01, -1.63465438373802895988e-01, -6.96363659600393730686e-02, - 1.14524330229191645403e-01, 7.12890316169484949960e-02, 5.80381889626466196397e-03, 4.93537868059431283907e-02, -8.44257746020753430116e-02, - -1.41929196365875275043e-02, 8.22387462453117029648e-02, -8.50093260265970818157e-02, 2.71192346905003156543e-02, 9.03395551304754379496e-02, - -1.71516448697893314490e-02, 8.18953521749132690166e-02, 1.11511604557867297777e-02, -4.78373059022189212053e-03, -9.53023452930306103070e-02, - 5.38686323249407891800e-02, -3.84678611713600085431e-02, -5.04713920668615947246e-03, 6.80811773653991481048e-02, -3.33049215638338835799e-02, - -5.28099294606356045589e-02, -7.54699335274512245197e-02, -5.40781758032556764126e-03, 8.29793590010352716257e-02, -5.97312971039127629802e-02, - -2.71427292677366080453e-02, -6.36007393417800138968e-03, -6.21102608067901958838e-03, 1.20982775517295207401e-02, -1.17366629581995736420e-02, - 3.79477291991657597614e-02, 4.16172556173764890408e-02, -4.15482630953573559007e-02, -2.10178763811884848633e-02, 2.25384141584651191692e-02, - 3.26544906456272876483e-01, 1.14875244914279722730e-01, -1.66631737648658934114e-01, -6.36733988328790686401e-03, 1.05207112351735077027e-01, - -2.56656713269180158932e-01, 6.60485459910778310855e-02, 4.17130045127815929362e-02, -7.37791748174861372611e-02, 7.60523512741725499220e-02, - -4.55959006761720783696e-02, -2.36680526647207629953e-02, 1.10634117950077798254e-01, -2.08651727388676766495e-02, -7.64711683504649686327e-02, - 8.13422913278145920390e-03, 7.93342835009738511776e-02, -1.36145811582776665727e-01, 3.71088391279384144372e-02, 3.21562962981391253781e-02, - -1.14387894243613869039e-01, -1.51631103622234392203e-03, 5.78217444722389575795e-02, -4.71124806075210594836e-03, 1.51729749910356030707e-02, - 9.74258177618566034717e-02, -1.10011849267590264279e-01, -9.55723084321756233273e-02, 5.40108889439728720450e-02, 2.20372759806924181647e-02, - -3.12940070328804331723e-02, 7.31829279647891323135e-02, -5.03897879848870661190e-02, 3.56857218059479508465e-02, 2.77447201596329011408e-02, - -2.09552594775335998545e-02, 1.43951419283830060747e-02, 5.39902985778747748769e-02, 2.12233791683978864628e-02, -1.06021857317053335573e-02, - -1.29173575974317281917e-02, 2.33645540297061204277e-03, 2.61896609343018451146e-03, -1.14595932568608803448e-02, 3.56767949738183843926e-04, - 2.01246788122515993247e-02, 1.99364141245472692443e-01, 1.02386975283006720350e-02, 1.46491539292862016364e-01, -2.92173375533333390397e-01, - -2.79882649001711690528e-02, 7.89598614348374083782e-02, 1.73932768517874730696e-02, -1.69430993280276553925e-01, -3.49439319604140236075e-02, - -2.41776119023419042153e-02, -1.19007451411664612329e-02, 7.52785183419538428407e-02, 8.00732324924654653708e-02, 5.80254140930885203842e-02, - -2.99344525092792301812e-02, 2.00701049258613407889e-02, -4.85173141225875570459e-02, -1.24597145763424926868e-01, -1.51901004582441958440e-02, - -1.61680779553563594431e-02, 6.85542113027582250551e-02, 4.25745326736892623631e-02, -1.06278911193231559440e-04, 9.76285197536541464458e-03, - 3.87428701891937912749e-02, -2.30639988244256723127e-02, 6.36890026034679732764e-03, 3.02413182033626840028e-02, 3.88836672433736253024e-03, - -9.08662711955680046927e-02, 4.01745378306784250988e-02, 1.03266559093635329480e-01, 2.14979137912293429002e-03, -5.41722635351460576891e-02, - 2.61282597269434195553e-02, -1.88195226737477086520e-03, -2.19435523135619973967e-02, 1.32921056129775890658e-02, -1.39584001825611234843e-02, - -2.33277834487258597940e-02, 3.20387242392535485924e-03, -2.56605748623718842027e-02, 3.00558911102263848214e-02, 3.05648112133436906934e-02, - -2.59104772664633942192e-03, -3.60234150814368395133e-02, 1.89051474579463585357e-01, 7.67659810167127809599e-02, -1.24703387595890141659e-01, - 1.16494243349512860419e-01, -1.23273291315800521267e-02, -8.52472265397304362899e-02, 4.85995814815475199455e-02, -4.91533864052588892468e-02, - 7.09392924651690154336e-02, 3.86918200904741022006e-02, -6.05870726251201280332e-02, 1.26662290542081668043e-01, -1.26300238339170367574e-02, - -2.77371050405810226636e-02, -5.43586513698262885352e-02, -7.86459616541178574423e-02, 6.23528587727540037355e-02, -4.79677851814970662714e-02, - -6.51687150996678454806e-04, 5.76336385114276719688e-02, 1.44542478484825671209e-02, 3.16928492510423695516e-02, 1.45017405736592441823e-02, - 3.77649866255029068030e-02, 2.76488049642000443748e-04, -6.60577998684190731415e-02, -1.43760686140608738570e-02, 3.59108661833638931338e-02, - -1.96544252969081192917e-02, -3.14635605928988426605e-02, 2.73136448740384021883e-02, 4.81895944089887409700e-02, -1.41798371596522010049e-03, - -2.76940211432370950173e-02, -1.79321359038478039816e-02, -8.04857916575939247306e-03, 6.12601355103674924743e-04, -3.04826514707566033346e-02, - 3.97737096905840994271e-03, 2.93070515299252015717e-02, -1.68977509366934480761e-01, 3.32231696372570911580e-03, 1.25024830498748684704e-01, - 1.14603027997231002311e-01, -1.00188353252315814901e-01, -9.84663913699934667534e-03, 4.24578628782099620764e-02, -1.37172078837733080192e-01, - -3.49285758694722614504e-02, 5.10266827849673310080e-02, -8.71727496405721724582e-02, 6.53026570180906262841e-03, 8.81977524226997683376e-02, - -6.34979748614215300240e-02, -6.75922576223946108831e-02, -9.09058087393600777748e-03, 8.58354921744265697559e-02, -3.11903783366274736655e-02, - 2.00028673474334506288e-02, 2.51992069666158204078e-02, -1.15065874504069552003e-02, 1.90952708533619654185e-02, -1.42994317615683774053e-02, - 8.38885300224805237346e-04, -3.82027498742033497225e-02, -3.67441895491770198490e-02, 2.50992455595355073994e-02, 7.01187400269996513602e-02, - -5.54375280311450654991e-02, -4.38519736099493434578e-02, -7.84180536804670973161e-03, 2.15733075413469983783e-02, -1.13430180042112986952e-03, - 1.43263625967320618049e-02, 3.38406892444173892920e-02, 2.61661740894084809961e-02, 1.89963433472952851477e-02, 4.11523810167366797808e-03, - -4.07083694738235874616e-03, -2.14250124636823323365e-02, -2.51950730394823532721e-02, 3.42343547054715646727e-02, -1.60995215305804545425e-01, - 1.46286861154573760713e-01, -1.42470612032240401268e-02, -8.74980046536548150549e-02, -4.25453860188948623788e-02, 1.17182553786398857554e-01, - -1.00991016453327253632e-01, -7.91738577441953306213e-02, 5.29573588185536445194e-02, -2.21614298461902045623e-02, 3.58602587208211864844e-02, - 2.52438926833398191718e-02, 9.41877819477729971709e-02, -6.48116676539685077074e-02, -6.92622200130770665494e-02, 3.44271533520238565140e-02, - -2.14712430694437191037e-02, 1.72316382693014427674e-02, -2.66608743584075963406e-02, -2.10082338877249467923e-02, 8.91565305172099635544e-03, - -1.23413533420058361967e-02, -6.55699200671947673991e-03, -6.50539642022832619028e-03, 1.51124007337151353147e-02, 5.20370287348198221067e-03, - 2.44544519960917354495e-02, 8.17735780033393942767e-03, -3.77816692303542945967e-04, -2.75580902253722351269e-02, 1.61366174765763085996e-02, - -2.54225642602667507852e-02, -5.68510449978476550825e-02, 1.03315681722852791002e-02, 5.48232041684815468024e-03, -3.22722809472682503618e-02, - 1.68859338049149008965e-02, 6.21665123569529881609e-02, -1.49734091796970530952e-01, -1.69848035269845681894e-01, 7.28166844225807269320e-02, - -9.38546660994197951000e-02, -5.98972210309676594830e-02, 1.60189670628219316129e-01, 9.68228235109596380159e-02, -1.14699218288179388692e-01, - 5.22495478003770982833e-02, -2.50191304829539204468e-02, 2.77221049132821764638e-02, 5.25053174572039649259e-02, 4.67049795137407172674e-02, - -4.25063623233455645245e-02, -7.79015735544906322285e-03, 8.35061691171900405406e-02, -2.77565926301914164820e-02, -3.55176007501909543618e-02, - 5.22884040187019810686e-02, 4.47524306813492939866e-03, 3.34858736182796073999e-02, 2.18065090398272508343e-02, 3.96249948248765804237e-02, - -1.75050000687652293485e-02, -5.30639824787136182155e-03, 1.31658536276919365532e-02, -3.54893637807925724226e-02, 1.44838563901157494143e-03, - 2.53219139441511024990e-02, 1.51209661740110620776e-02, -3.18928979311501516886e-03, 8.08035892351891861518e-03, 1.49482343348299774599e-02, - -4.67401524501743839690e-02, 8.81785937471118302922e-02, 1.09443858484468511949e-01, 9.61675669132599497679e-02, -7.39592182705455791769e-02, - 8.87508822651789097691e-02, -7.91714174638406542606e-02, -1.25898861391198962911e-01, 8.84171948090256565322e-02, 3.93482215277929509023e-02, - -6.26211797345710557972e-02, 3.11866892937116280127e-02, 1.54206070094080910371e-01, -7.15962414998223273255e-02, 4.04187883182457047271e-02, - 3.87320351160306483584e-02, -2.13087169719965857650e-02, 2.04352330201420621936e-02, 3.60324068311299108847e-02, -6.71927151509099790383e-02, - -5.86355402262732916530e-02, 1.95738272971190847838e-02, 1.19986570986449735121e-02, -4.16517345466257682407e-02, 4.57582247311850084937e-02, - -5.64919874467361762815e-02, -2.96306742467898837426e-03, 3.45918894384134034681e-02, 9.37965919443191353810e-03, -5.31266846947417263614e-03, - 7.44645101900219368030e-03, -8.16779483872519251886e-03, -1.49486275306286754694e-02, 5.40961754497425346966e-03, -6.07743621110200162722e-03, - -2.86027271239626297572e-02, 9.28607307596479303324e-02, 1.15334393912762608880e-01, 2.22619048233438435180e-02, -2.81988516854455167904e-02, - -3.27953711282213400402e-02, -7.26623103447188861681e-02, -6.21318073281297983401e-02, 8.15860644657136341307e-02, 1.79600966703069159225e-02, - -8.26984672948943289050e-02, 2.66922837734803533594e-02, -5.62012642483699781382e-02, -7.54479658771655264937e-02, 5.63921972458279810447e-02, - -8.88808665037604112014e-03, 4.49098738994229513752e-04, -1.64624335502902702233e-02, 5.00902714527058645633e-02, 1.06477908341492902983e-02, - 2.19722684831073211686e-02, 9.27897245497274342219e-03, -1.38071463629181757221e-02, -3.25812324194547434097e-02, -3.02235182235052954325e-02, - 2.70211283173303479233e-02, 1.78695725115783597692e-02, -1.97856995310294429824e-02, 2.14583909244959528118e-02, 8.31160096115654556392e-03, - -7.96044059263601583298e-03, -7.03711411983747731069e-03, -7.52245974116911853002e-02, -7.17896739726268801052e-02, 1.07396425196690896431e-02, - 7.25906809169843403318e-02, -9.45023972725838740105e-02, -6.71199808984563744962e-02, 7.35264690791543329418e-02, 2.98610952212447697263e-02, - -7.52442146662268135371e-04, 9.23976694955527116937e-02, 4.60854381027500578649e-02, -5.81010137429742931636e-02, 5.19935015121687146844e-02, - -4.28751313838296663206e-02, 2.68412731409498166169e-02, 9.92974085166531926505e-03, -1.41649957602334279627e-02, 8.49484772510930227774e-03, - 1.60608334268962397659e-03, 1.53969582107269485627e-02, 2.53654424332110106644e-02, 2.20836817019017840613e-02, -4.96400766026642691758e-03, - -4.63895546537213768895e-03, -3.69755978269468085773e-02, -4.24220279369531480529e-02, -2.80842055465305032516e-03, 3.43511446156298310903e-03, - 1.50427480682660263955e-02, -7.64781824357823984684e-03, 1.55431405065905338392e-02, -5.28685500234718219748e-02, -4.81425552620864186104e-02, - -6.98904426260522071424e-02, -5.69063762150740712342e-02, -2.01599484306710097226e-02, -7.08142573082899164094e-03, 1.60387886663503793916e-02, - -8.26785713680359968247e-02, 2.82003440014560874394e-02, 2.73932418290509169245e-02, -3.17992788170617102228e-02, 5.85714331111230612770e-02, - 5.86577384557991701741e-02, -2.75299012996250893476e-03, -8.45195718330371027760e-03, -1.36279044444791216234e-02, -1.13870143130110085955e-02, - -9.47170994530230694886e-03, 8.38589777991547574709e-03, -2.44907795135516845320e-02, -1.88112311627625997112e-02, 1.66825300517051550164e-02, - -1.40472696715355817310e-02, 4.07602998308370448322e-02, 4.52331228574007898624e-03, -7.41516905358174677892e-03, -1.90839799893427405908e-02, - 1.37235319648593090402e-01, -5.07166887609150802974e-03, 1.66347985382777688312e-02, -8.94058332794331472870e-02, -9.96617048317507969735e-03, - -3.39998201752246195784e-02, -2.72752305938337435975e-02, 1.41116199971288980557e-04, 1.20136294077674496417e-02, 1.21046096252801875515e-02, - 4.67374536088999582156e-03, 1.76093997807116745338e-03, -6.49132489663982719524e-03, 6.34253853067380107822e-02, 4.20234078454048282092e-02, - -3.39907942260764435460e-03, -3.13684078013621997494e-02, -5.59725664044557688626e-03, 1.46041344723689698465e-02, 8.15628093364801319554e-03, - 8.81123245682426982361e-03, -5.36576704715815769320e-02, 4.13564181087699121731e-03, 6.66570175208870251832e-03, -3.06753731552251258582e-03, - 3.24260047333155276839e-02, 3.78357123622976698057e-03, 1.22559252382635042178e-01, -3.26726534731656623189e-02, -4.57263244390499479231e-02, - 1.23161267442891183416e-02, 5.60898223233850107272e-02, -2.07946281596515653023e-02, 3.30973059009364162231e-02, 3.79099335956614089116e-02, - 3.02099801034241572523e-03, -4.11260349557933183040e-02, -2.09662321613402133358e-02, -1.35059512400454856396e-02, 2.11033519015176411482e-02, - 2.49738730383721862366e-03, 1.80042474049896738739e-03, -4.21972590754290111104e-02, 7.84304881856809008034e-03, 1.28611420258033324476e-02, - 1.53304442551651341764e-02, 1.14809771240723442615e-02, 5.45508167269171534430e-03, 6.03486224308978115582e-03, -6.17922023172545829134e-03, - -1.06402780093771354153e-01, -1.06566854283863088337e-01, -1.56672555450536946098e-02, -4.17617234129553371869e-02, -5.84327485785076233826e-02, - 1.72707037153512245331e-02, -4.27180361478920241763e-03, 3.83975587930814599158e-02, 7.18917519991502662613e-02, 1.73599075858622414748e-02, - -5.06102136889801795805e-02, -2.28302899957008066656e-02, 4.05449577890660689539e-02, 6.05903063932164507449e-03, 1.42495320779388468663e-02, - -1.46505630681158707102e-02, -5.51579872998721708333e-03, -2.03950903125686006101e-02, 1.71600095189964607645e-02, 3.10141280680510215972e-02, - -6.92078952483923121042e-03, -1.25723580586239959064e-03, 4.83571917759556130223e-02, -1.08848884748079619000e-01, -7.62227492845969547414e-03, - 3.98614872899268266049e-02, 2.51496883852979809248e-02, -7.45157236466782307849e-02, -2.54315956467565489063e-02, 5.86785913495517369443e-02, - 6.07261945507166309849e-03, 2.37710782485035070077e-02, 2.40958099664499367232e-03, 8.00723308014901838381e-03, 5.57202821065413758661e-02, - -6.18738592105032812751e-03, 1.57471692604664484198e-03, -2.08797558382940772262e-03, -2.73200765442419279960e-02, -2.06208586891517380024e-02, - 6.40309150046379439887e-04, 3.34147637908005640250e-02, -2.31245128603038314907e-02, 3.13805487530873783442e-02, -3.76503956682762222496e-02, - 3.82033717675601958152e-02, 6.08549869979059313008e-02, -1.40664950951139375995e-02, 1.20432450888018800772e-02, 4.11120541709728091334e-03, - -1.31431111647770104689e-02, -2.16767866450208908369e-02, 2.36444182462271527620e-03, 4.15518391649481646372e-03, -7.19797119986096724242e-03, - 3.63099914737792378583e-02, -1.71114207061806439247e-02, 9.12094809288829279359e-03, -2.00581984724530065778e-02, 4.18093901030532240359e-03, - -1.54353999486445108563e-02, 3.77632145097120189292e-02, -8.67412239218371683425e-02, 3.74024476837445662980e-02, 7.02791955646850374784e-03, - -3.07387087745127421390e-03, 1.26170642077405754933e-02, 7.19502473862098246987e-03, 5.00348237158451253359e-02, 6.05821676660315069918e-03, - 2.81657375913338843543e-02, -2.75046494305255621871e-02, -3.32847608680125889302e-02, 4.92458523340539092161e-03, -6.97895182233836727098e-03, - -1.84078432809154611538e-02, -2.55254058040131799612e-02, 4.38596283726821068588e-03, 7.97305689082921688338e-03, -6.65251068675700718558e-02, - -2.43074168732615144076e-03, -3.21551055785660854641e-03, -2.14057386820096506863e-02, 1.73404829493880863200e-02, -2.21788279126988834011e-02, - 3.67289476360874028726e-02, 2.88921423109056961509e-02, -4.36590369050650264210e-03, -3.38015966458028857197e-03, -1.47872402615952351634e-02, - -2.67937691397940741522e-02, -4.01628891758317591032e-02, 5.37104159736995767638e-02, 3.38881421250558784175e-02, -1.94731556323654853013e-02, - 6.80080451079642287447e-04, -1.16224021866609874415e-02, -2.84314312441163938305e-02, -3.10403528556473483346e-02, -1.52614844050795953750e-02, - 1.46865039960839046523e-02, 7.74337973212646264037e-03, -2.75213939675030445919e-02, -3.12476741289728875139e-02, -3.75401476285800936306e-02, - 4.53067917901101985256e-02, 4.75497506720418041531e-03, 1.25627944556748021021e-02, 4.03046169919628882727e-02, -3.29378978115561424356e-02, - -2.51499548928088654393e-03, -1.99564144518295516484e-02, -2.63938123636600005528e-02, -1.84979990476826575141e-02, -4.75891539387540141171e-02, - 1.70189645456799328038e-02, 2.90621732209333551167e-02, 1.69695748997654785595e-02, 6.00578109434020054880e-03, 3.77405846672976205691e-02, - 1.04426223615697640751e-02, -7.42237607930411715310e-04, -1.51118572042552353624e-02, 1.29952623161545995079e-03, 1.26799047323642617713e-02, - 1.05278997248968164691e-02, 2.29682654055416574090e-02, 1.28888330591014361320e-02, -1.03014730669756075787e-02, -4.83421710205830541113e-03, - -1.90040068302814585399e-02, -4.31802671175361696410e-03 -}; +#include "grib_sh_values.h" #define ILCHAM 992 #define MTRONC 30 diff --git a/tests/grib_sh_values.h b/tests/grib_sh_values.h new file mode 100644 index 000000000..9d9436276 --- /dev/null +++ b/tests/grib_sh_values.h @@ -0,0 +1,201 @@ +const double values[] = { + 2.78565217180879301395e+02, 0.00000000000000000000e+00, 8.38367712240454920902e-01, 0.00000000000000000000e+00, -7.22151022768738215518e-01, + 0.00000000000000000000e+00, 1.54447137639483056404e+00, 0.00000000000000000000e+00, -8.10351659720698336287e-01, 0.00000000000000000000e+00, + 6.45930713064333694717e-01, 0.00000000000000000000e+00, -1.73417955255619204991e-01, 0.00000000000000000000e+00, -9.09351867483918913093e-02, + 0.00000000000000000000e+00, -3.00845517613623769648e-02, 0.00000000000000000000e+00, -1.97522108657794209785e-01, 0.00000000000000000000e+00, + 1.45006392199800160370e-01, 0.00000000000000000000e+00, -6.92319525648382033678e-02, 0.00000000000000000000e+00, -3.37495245995370396486e-01, + 0.00000000000000000000e+00, 2.93969252845082296144e-01, 0.00000000000000000000e+00, 5.22791676917648828748e-02, 0.00000000000000000000e+00, + -4.31020055899014042922e-02, 0.00000000000000000000e+00, -5.34277055570271386387e-02, 0.00000000000000000000e+00, 1.57725778753141337996e-01, + 0.00000000000000000000e+00, -1.38048966071163903280e-01, 0.00000000000000000000e+00, 7.95936533884674390915e-02, 0.00000000000000000000e+00, + -5.08988096408558021722e-03, 0.00000000000000000000e+00, -3.17356690459940984916e-02, 0.00000000000000000000e+00, -7.97854100625838141836e-02, + 0.00000000000000000000e+00, -1.25759522048120825355e-01, 0.00000000000000000000e+00, 1.41095505007377608475e-01, 0.00000000000000000000e+00, + -2.90041709701537933630e-02, 0.00000000000000000000e+00, 1.16118748810570035501e-01, 0.00000000000000000000e+00, -1.42650207377574778089e-01, + 0.00000000000000000000e+00, 6.63859656709936268859e-02, 0.00000000000000000000e+00, -8.43008351127146754456e-02, 0.00000000000000000000e+00, + 8.11805506119530340126e-02, 0.00000000000000000000e+00, -2.92579106275835476580e+00, -2.73257362252726822283e-02, -2.31503061096297768628e+00, + 2.98481883110496337697e-01, 2.32422954464165210098e+00, -9.36624989809203695179e-02, -1.13647173814196378316e+00, -4.24970312443540054748e-01, + 1.26754821773852066613e+00, -7.20859094680278700285e-02, -9.51306475614490221204e-01, 6.14867632012408793507e-01, -9.85091038732955892598e-02, + -6.34523215803268758606e-02, -6.78708060411115782218e-02, -1.35311523427619539994e-01, -9.04935301775932621204e-02, -9.78101007785831533248e-02, + -9.81097374871810895547e-04, 1.80616098092357818539e-02, -2.64791786212412172397e-02, -4.76558495508507054539e-02, -1.96341419265033012564e-01, + 3.40906457596743608929e-02, -7.81262194523913988675e-02, -1.90201799489863598858e-01, 2.25178750048809411810e-01, 2.86704542482240504198e-03, + -1.19805102746233238520e-02, 1.68969022321052431135e-02, 5.64738950483129331648e-02, -1.39757566954298140249e-01, -7.44084433787887133960e-02, + -1.79448737058076172868e-02, 6.14333363921325120716e-02, 4.42090839521651901567e-02, -1.59177621940344016238e-02, -2.45259140787589882682e-02, + 4.14722887926062475095e-02, -9.08467249754976585718e-02, 7.32634132869659504550e-02, 3.98083190502361433660e-02, -6.23330309466623433412e-02, + 3.23061735747387016038e-02, 5.24308078374175548508e-02, -6.52853670335678676340e-02, -4.74582205706168894221e-02, -2.57646217050176394581e-02, + 4.85326601320503064896e-02, 4.57836316487753580695e-02, -1.61395013977115135695e-02, -4.31399408593192076888e-02, -1.72982609465274252136e-02, + 2.05141743795376405024e-02, 5.13479785723864323721e-02, 2.02753965345298277356e-02, -9.62325942856205422682e-03, -1.21013000039295196344e-03, + 4.61377663687331032727e-02, -6.90153405245983028390e-04, -1.66104804699747843344e+00, 1.79666906865138087390e-01, 7.23133875761683864170e-01, + 4.15103729262486009777e-01, -3.04359433047895144853e-01, -1.33601223735748869670e-01, 1.11896993727331572899e+00, -5.97930191729183602156e-01, + -3.21482407719980045613e-01, -6.44440729482515239912e-02, -1.39643167588630684461e-01, -7.87344252201049310536e-02, -2.74194962741515224636e-01, + 3.16014987883590156570e-02, 2.61916687188788577245e-01, -2.29041295889389484586e-01, 1.37413993896893793512e-02, 1.02848928276271345261e-01, + -8.45943398257167356036e-02, -8.55836430183285895579e-02, -2.14692485939022847941e-02, -5.00660400534810728912e-02, 4.10286932308298671335e-02, + 5.98356967342531728682e-02, -6.87268417209678655899e-02, -1.00834342061879356223e-01, 2.89946855441678558174e-02, 6.84096422422015987275e-02, + 7.90905646811665974383e-02, 1.22761627402924594632e-02, -7.19296897992387496146e-02, -1.19563518571031840443e-01, 3.53949764125303933948e-02, + 3.49389806984224948749e-02, -1.34556768717593006057e-01, 1.30036738800839157815e-01, 1.47453022488737178763e-01, -1.75187106897877128975e-02, + -5.71655857598896560701e-02, -2.22513683371899778640e-02, 5.11984135243400070858e-02, 4.32198440146361120839e-02, -3.79006811678369512353e-02, + -1.61948869817943215399e-02, 5.87864730303968852088e-02, 7.56143666040565154418e-03, 3.79735451815043784096e-02, 4.88357571184367539319e-03, + -3.44600211423619568266e-03, 8.45175251030964858057e-03, 2.06501052974025246789e-02, -2.27945980601942863042e-02, 7.52792623890808781928e-02, + -4.07335076464383702421e-02, -1.22373247319515162691e-03, 7.12818582736400585542e-03, -2.08797409246280901707e-02, 2.35344435031375059930e-02, + 5.38553837448995376125e-02, 2.29385900837120154661e-01, -3.60512186055045147359e-01, 4.09262094434219958483e-01, -1.43204915316633707434e-01, + 1.76661646314910159017e-01, 1.59424540157772631765e-01, 1.19996653025061628117e-01, 9.74032138671445946176e-02, 8.01756516767066496065e-02, + -4.22092435868048232450e-01, 3.42598707334977881089e-01, 7.26427774784764446192e-02, -1.92869792680440410582e-04, -9.14800737566894561770e-02, + 1.86904852575672325576e-01, 9.03785536307215725538e-02, -8.70628859333670845899e-02, -1.20357023393743836626e-01, 1.30276821268167974921e-01, + -5.50418496727855255379e-02, -1.39930929689677463479e-01, -4.10997318303747902202e-02, 1.66027061444833590187e-01, -3.31025873454900559922e-02, + 5.45967001368218574076e-02, -1.86051192758042188702e-01, 3.57669212138109621213e-02, 1.96823682403928168494e-01, 1.12736638944959083330e-01, + -1.18563060708320622272e-01, -7.11264215849067293895e-02, -3.33098969956449747487e-02, 4.88100702343404121986e-02, 2.04094083090545080905e-02, + 7.78285563663724117012e-02, -4.14113893806803898268e-02, 1.26375672481289953730e-02, 1.38745116741378599068e-01, -8.57558938152793923115e-03, + -9.29289689333271246019e-02, -8.27276771926104548260e-02, 5.84956615429012907748e-02, 2.29399633044502938156e-03, -2.09824524198216422546e-03, + -2.30538708704958079931e-02, 3.77132043821169771203e-02, 6.53337758882697045015e-02, -3.06667712165429387494e-02, -1.14650515581519504144e-02, + 1.46194883433694872849e-02, 3.46636747707448856712e-03, -4.35546278336838635359e-02, 6.29051255528407793349e-02, 6.12210568933847180256e-03, + 2.07571937975545607602e-02, 3.35768305063385619214e-01, 7.46266949448459948613e-01, -6.72463631746016698987e-02, -1.94536700956528363360e-01, + -2.75088750614828209118e-02, 1.42328699967799371384e-01, 3.35288125725375085739e-01, 1.29661987766008346412e-01, 2.90956042046801172107e-02, + -2.05442280573112395770e-01, -9.57252926974513779212e-02, -9.10355774240597659386e-02, -1.25784172798783761005e-01, 1.12460127036075691054e-01, + 9.44013754824246931197e-02, -6.05135930061245497225e-02, 9.42673278665148578481e-02, 2.00615512602382500829e-01, -5.92185875904504069323e-02, + -2.28592246943101873313e-01, -1.07412950490968162054e-01, 2.20172956055192214908e-01, 3.33294698669218958376e-01, -4.44283179185198731642e-02, + -1.01766394690480529994e-01, 1.17472184755037761805e-01, 1.04892483649878465179e-01, -6.62468314716531808672e-02, -2.45565086356498013531e-03, + 4.79072727765457034854e-02, -7.97766729243851169251e-04, -2.33714338875874692858e-02, -2.56642787088907850523e-02, -9.62514763421860042314e-02, + 3.99383399281938444858e-02, 2.88865653017884548015e-02, -5.15182520475396393822e-02, 8.26498791523299636275e-02, -2.98742841129583554249e-02, + -8.28182978045203938011e-02, 3.14455026979475749105e-02, -1.53345808562610789669e-03, -3.62400610998830294274e-02, -2.51728077975302867719e-02, + -3.02379015962623703961e-02, 2.68910770206758423240e-02, -8.22634968902352312070e-03, 3.66544933660152699728e-02, 1.32356634436242674713e-02, + 3.21880247207419244518e-03, -1.97571016662111687001e-02, 5.93796945717029508310e-03, -4.31413602924163308572e-02, -2.72339719264069676785e-02, + -1.87274725743593273286e-01, 1.39283127485721136551e-01, 4.74963034217010249272e-01, -3.42073553333540392174e-01, 4.83885077044606606855e-02, + -2.59068005795831224347e-01, -2.13264680765766156956e-01, -7.36008484860203593403e-02, -8.13152420843461926081e-02, -1.21927665578479005326e-02, + 1.79904544651649317411e-01, -1.09959740517953624694e-01, -2.22065490779929819443e-01, 7.14015849729179447047e-02, -5.85031872787839662964e-03, + 9.72943249874637094976e-02, 1.58464145663301525513e-01, -6.23660570620122936547e-02, -2.05086286960385583145e-01, -5.07929431274403847540e-02, + 4.21897204870116185327e-02, -6.99935466206487028051e-02, -6.71348953496629374804e-02, 1.65743074443523596972e-01, 8.56850642116062655163e-02, + -1.19953810412321809631e-01, -7.40173516101229334030e-02, 1.18865945768013535344e-02, -7.71584669380707965924e-02, -6.31283399388396088137e-02, + -1.45882854372074655114e-01, 6.29307315713034526317e-02, 1.48912624660626508738e-02, -6.72819324032104260080e-02, 3.22547499735358483841e-02, + 4.97387743825052491831e-02, -5.43073271907661761504e-02, 1.52590958854153246893e-02, 2.92721489192738311066e-03, -1.87663839736718872364e-02, + -3.80050872053503069684e-03, 5.91273447672226934446e-02, -2.83684585809016896404e-03, 1.70512827209476636181e-02, -1.44259815516434488497e-02, + -8.06597987912826830392e-02, 5.19954562777717940736e-02, 1.09504480128524081528e-02, 1.26439885486616093030e-02, -2.34593647937779382559e-03, + 2.47413111762442641806e-02, -6.13559850860111253429e-03, -6.05626633742831349538e-02, -1.98467175793774985859e-01, 3.18979113074946862838e-01, + 6.23356771079433893967e-02, 1.30138108749532965813e-01, -1.05230501466137910116e-01, -6.87754575227078057686e-02, -4.22436887367944324811e-02, + 7.57926459563205562331e-02, 4.78504387573109452036e-02, -2.22681497547184761854e-02, 8.46951897073950493722e-02, -7.44317622658197293462e-03, + -1.89157622212636281067e-02, -6.19719693803440774271e-02, -8.37644347918033160827e-03, 1.32514981682897603488e-01, -1.09126775888557903116e-01, + -6.47849222903969929055e-03, 4.65591560634076861991e-02, -2.24234845462696341656e-01, 7.29582023256248463072e-02, 2.23965783883813690514e-03, + -5.19349169152241198211e-03, 2.25395864383192284786e-02, 9.10694488527918760701e-02, 7.36945737152017443794e-02, -2.16337158651918673447e-02, + -5.35436418307164291308e-02, 2.40342905027485786995e-02, 4.81946656785084762142e-02, -3.06521617296798450092e-02, -4.07904977042986977009e-02, + 6.32948267919029999851e-02, 4.53192474361057834331e-02, -2.29008122631283589365e-02, 1.62576382380966721897e-02, 3.82842631619570161750e-02, + 3.52346794652655739832e-02, -3.95023093184828782976e-02, -3.15659719925446974331e-02, 4.02431236080928178556e-02, 2.45684617558553607120e-02, + -1.93194945947791144047e-02, -2.48322169406506726430e-02, -1.13621415403786386183e-02, -3.31487361399904478798e-02, 1.68675563537488623633e-02, + 4.01325091519489432490e-02, 4.14338905584917469027e-02, 1.31273776950603299207e-01, 7.16276979245435152510e-03, 5.02985992698696121606e-02, + 1.78045915098635626483e-01, -1.86314001159308406663e-01, -1.35151434606926579285e-01, 1.69947309928447143346e-01, -8.37791941109623933270e-02, + 2.41195207762586322220e-02, 1.26309574838379373718e-01, -2.00571859613532021971e-01, -1.63465438373802895988e-01, -6.96363659600393730686e-02, + 1.14524330229191645403e-01, 7.12890316169484949960e-02, 5.80381889626466196397e-03, 4.93537868059431283907e-02, -8.44257746020753430116e-02, + -1.41929196365875275043e-02, 8.22387462453117029648e-02, -8.50093260265970818157e-02, 2.71192346905003156543e-02, 9.03395551304754379496e-02, + -1.71516448697893314490e-02, 8.18953521749132690166e-02, 1.11511604557867297777e-02, -4.78373059022189212053e-03, -9.53023452930306103070e-02, + 5.38686323249407891800e-02, -3.84678611713600085431e-02, -5.04713920668615947246e-03, 6.80811773653991481048e-02, -3.33049215638338835799e-02, + -5.28099294606356045589e-02, -7.54699335274512245197e-02, -5.40781758032556764126e-03, 8.29793590010352716257e-02, -5.97312971039127629802e-02, + -2.71427292677366080453e-02, -6.36007393417800138968e-03, -6.21102608067901958838e-03, 1.20982775517295207401e-02, -1.17366629581995736420e-02, + 3.79477291991657597614e-02, 4.16172556173764890408e-02, -4.15482630953573559007e-02, -2.10178763811884848633e-02, 2.25384141584651191692e-02, + 3.26544906456272876483e-01, 1.14875244914279722730e-01, -1.66631737648658934114e-01, -6.36733988328790686401e-03, 1.05207112351735077027e-01, + -2.56656713269180158932e-01, 6.60485459910778310855e-02, 4.17130045127815929362e-02, -7.37791748174861372611e-02, 7.60523512741725499220e-02, + -4.55959006761720783696e-02, -2.36680526647207629953e-02, 1.10634117950077798254e-01, -2.08651727388676766495e-02, -7.64711683504649686327e-02, + 8.13422913278145920390e-03, 7.93342835009738511776e-02, -1.36145811582776665727e-01, 3.71088391279384144372e-02, 3.21562962981391253781e-02, + -1.14387894243613869039e-01, -1.51631103622234392203e-03, 5.78217444722389575795e-02, -4.71124806075210594836e-03, 1.51729749910356030707e-02, + 9.74258177618566034717e-02, -1.10011849267590264279e-01, -9.55723084321756233273e-02, 5.40108889439728720450e-02, 2.20372759806924181647e-02, + -3.12940070328804331723e-02, 7.31829279647891323135e-02, -5.03897879848870661190e-02, 3.56857218059479508465e-02, 2.77447201596329011408e-02, + -2.09552594775335998545e-02, 1.43951419283830060747e-02, 5.39902985778747748769e-02, 2.12233791683978864628e-02, -1.06021857317053335573e-02, + -1.29173575974317281917e-02, 2.33645540297061204277e-03, 2.61896609343018451146e-03, -1.14595932568608803448e-02, 3.56767949738183843926e-04, + 2.01246788122515993247e-02, 1.99364141245472692443e-01, 1.02386975283006720350e-02, 1.46491539292862016364e-01, -2.92173375533333390397e-01, + -2.79882649001711690528e-02, 7.89598614348374083782e-02, 1.73932768517874730696e-02, -1.69430993280276553925e-01, -3.49439319604140236075e-02, + -2.41776119023419042153e-02, -1.19007451411664612329e-02, 7.52785183419538428407e-02, 8.00732324924654653708e-02, 5.80254140930885203842e-02, + -2.99344525092792301812e-02, 2.00701049258613407889e-02, -4.85173141225875570459e-02, -1.24597145763424926868e-01, -1.51901004582441958440e-02, + -1.61680779553563594431e-02, 6.85542113027582250551e-02, 4.25745326736892623631e-02, -1.06278911193231559440e-04, 9.76285197536541464458e-03, + 3.87428701891937912749e-02, -2.30639988244256723127e-02, 6.36890026034679732764e-03, 3.02413182033626840028e-02, 3.88836672433736253024e-03, + -9.08662711955680046927e-02, 4.01745378306784250988e-02, 1.03266559093635329480e-01, 2.14979137912293429002e-03, -5.41722635351460576891e-02, + 2.61282597269434195553e-02, -1.88195226737477086520e-03, -2.19435523135619973967e-02, 1.32921056129775890658e-02, -1.39584001825611234843e-02, + -2.33277834487258597940e-02, 3.20387242392535485924e-03, -2.56605748623718842027e-02, 3.00558911102263848214e-02, 3.05648112133436906934e-02, + -2.59104772664633942192e-03, -3.60234150814368395133e-02, 1.89051474579463585357e-01, 7.67659810167127809599e-02, -1.24703387595890141659e-01, + 1.16494243349512860419e-01, -1.23273291315800521267e-02, -8.52472265397304362899e-02, 4.85995814815475199455e-02, -4.91533864052588892468e-02, + 7.09392924651690154336e-02, 3.86918200904741022006e-02, -6.05870726251201280332e-02, 1.26662290542081668043e-01, -1.26300238339170367574e-02, + -2.77371050405810226636e-02, -5.43586513698262885352e-02, -7.86459616541178574423e-02, 6.23528587727540037355e-02, -4.79677851814970662714e-02, + -6.51687150996678454806e-04, 5.76336385114276719688e-02, 1.44542478484825671209e-02, 3.16928492510423695516e-02, 1.45017405736592441823e-02, + 3.77649866255029068030e-02, 2.76488049642000443748e-04, -6.60577998684190731415e-02, -1.43760686140608738570e-02, 3.59108661833638931338e-02, + -1.96544252969081192917e-02, -3.14635605928988426605e-02, 2.73136448740384021883e-02, 4.81895944089887409700e-02, -1.41798371596522010049e-03, + -2.76940211432370950173e-02, -1.79321359038478039816e-02, -8.04857916575939247306e-03, 6.12601355103674924743e-04, -3.04826514707566033346e-02, + 3.97737096905840994271e-03, 2.93070515299252015717e-02, -1.68977509366934480761e-01, 3.32231696372570911580e-03, 1.25024830498748684704e-01, + 1.14603027997231002311e-01, -1.00188353252315814901e-01, -9.84663913699934667534e-03, 4.24578628782099620764e-02, -1.37172078837733080192e-01, + -3.49285758694722614504e-02, 5.10266827849673310080e-02, -8.71727496405721724582e-02, 6.53026570180906262841e-03, 8.81977524226997683376e-02, + -6.34979748614215300240e-02, -6.75922576223946108831e-02, -9.09058087393600777748e-03, 8.58354921744265697559e-02, -3.11903783366274736655e-02, + 2.00028673474334506288e-02, 2.51992069666158204078e-02, -1.15065874504069552003e-02, 1.90952708533619654185e-02, -1.42994317615683774053e-02, + 8.38885300224805237346e-04, -3.82027498742033497225e-02, -3.67441895491770198490e-02, 2.50992455595355073994e-02, 7.01187400269996513602e-02, + -5.54375280311450654991e-02, -4.38519736099493434578e-02, -7.84180536804670973161e-03, 2.15733075413469983783e-02, -1.13430180042112986952e-03, + 1.43263625967320618049e-02, 3.38406892444173892920e-02, 2.61661740894084809961e-02, 1.89963433472952851477e-02, 4.11523810167366797808e-03, + -4.07083694738235874616e-03, -2.14250124636823323365e-02, -2.51950730394823532721e-02, 3.42343547054715646727e-02, -1.60995215305804545425e-01, + 1.46286861154573760713e-01, -1.42470612032240401268e-02, -8.74980046536548150549e-02, -4.25453860188948623788e-02, 1.17182553786398857554e-01, + -1.00991016453327253632e-01, -7.91738577441953306213e-02, 5.29573588185536445194e-02, -2.21614298461902045623e-02, 3.58602587208211864844e-02, + 2.52438926833398191718e-02, 9.41877819477729971709e-02, -6.48116676539685077074e-02, -6.92622200130770665494e-02, 3.44271533520238565140e-02, + -2.14712430694437191037e-02, 1.72316382693014427674e-02, -2.66608743584075963406e-02, -2.10082338877249467923e-02, 8.91565305172099635544e-03, + -1.23413533420058361967e-02, -6.55699200671947673991e-03, -6.50539642022832619028e-03, 1.51124007337151353147e-02, 5.20370287348198221067e-03, + 2.44544519960917354495e-02, 8.17735780033393942767e-03, -3.77816692303542945967e-04, -2.75580902253722351269e-02, 1.61366174765763085996e-02, + -2.54225642602667507852e-02, -5.68510449978476550825e-02, 1.03315681722852791002e-02, 5.48232041684815468024e-03, -3.22722809472682503618e-02, + 1.68859338049149008965e-02, 6.21665123569529881609e-02, -1.49734091796970530952e-01, -1.69848035269845681894e-01, 7.28166844225807269320e-02, + -9.38546660994197951000e-02, -5.98972210309676594830e-02, 1.60189670628219316129e-01, 9.68228235109596380159e-02, -1.14699218288179388692e-01, + 5.22495478003770982833e-02, -2.50191304829539204468e-02, 2.77221049132821764638e-02, 5.25053174572039649259e-02, 4.67049795137407172674e-02, + -4.25063623233455645245e-02, -7.79015735544906322285e-03, 8.35061691171900405406e-02, -2.77565926301914164820e-02, -3.55176007501909543618e-02, + 5.22884040187019810686e-02, 4.47524306813492939866e-03, 3.34858736182796073999e-02, 2.18065090398272508343e-02, 3.96249948248765804237e-02, + -1.75050000687652293485e-02, -5.30639824787136182155e-03, 1.31658536276919365532e-02, -3.54893637807925724226e-02, 1.44838563901157494143e-03, + 2.53219139441511024990e-02, 1.51209661740110620776e-02, -3.18928979311501516886e-03, 8.08035892351891861518e-03, 1.49482343348299774599e-02, + -4.67401524501743839690e-02, 8.81785937471118302922e-02, 1.09443858484468511949e-01, 9.61675669132599497679e-02, -7.39592182705455791769e-02, + 8.87508822651789097691e-02, -7.91714174638406542606e-02, -1.25898861391198962911e-01, 8.84171948090256565322e-02, 3.93482215277929509023e-02, + -6.26211797345710557972e-02, 3.11866892937116280127e-02, 1.54206070094080910371e-01, -7.15962414998223273255e-02, 4.04187883182457047271e-02, + 3.87320351160306483584e-02, -2.13087169719965857650e-02, 2.04352330201420621936e-02, 3.60324068311299108847e-02, -6.71927151509099790383e-02, + -5.86355402262732916530e-02, 1.95738272971190847838e-02, 1.19986570986449735121e-02, -4.16517345466257682407e-02, 4.57582247311850084937e-02, + -5.64919874467361762815e-02, -2.96306742467898837426e-03, 3.45918894384134034681e-02, 9.37965919443191353810e-03, -5.31266846947417263614e-03, + 7.44645101900219368030e-03, -8.16779483872519251886e-03, -1.49486275306286754694e-02, 5.40961754497425346966e-03, -6.07743621110200162722e-03, + -2.86027271239626297572e-02, 9.28607307596479303324e-02, 1.15334393912762608880e-01, 2.22619048233438435180e-02, -2.81988516854455167904e-02, + -3.27953711282213400402e-02, -7.26623103447188861681e-02, -6.21318073281297983401e-02, 8.15860644657136341307e-02, 1.79600966703069159225e-02, + -8.26984672948943289050e-02, 2.66922837734803533594e-02, -5.62012642483699781382e-02, -7.54479658771655264937e-02, 5.63921972458279810447e-02, + -8.88808665037604112014e-03, 4.49098738994229513752e-04, -1.64624335502902702233e-02, 5.00902714527058645633e-02, 1.06477908341492902983e-02, + 2.19722684831073211686e-02, 9.27897245497274342219e-03, -1.38071463629181757221e-02, -3.25812324194547434097e-02, -3.02235182235052954325e-02, + 2.70211283173303479233e-02, 1.78695725115783597692e-02, -1.97856995310294429824e-02, 2.14583909244959528118e-02, 8.31160096115654556392e-03, + -7.96044059263601583298e-03, -7.03711411983747731069e-03, -7.52245974116911853002e-02, -7.17896739726268801052e-02, 1.07396425196690896431e-02, + 7.25906809169843403318e-02, -9.45023972725838740105e-02, -6.71199808984563744962e-02, 7.35264690791543329418e-02, 2.98610952212447697263e-02, + -7.52442146662268135371e-04, 9.23976694955527116937e-02, 4.60854381027500578649e-02, -5.81010137429742931636e-02, 5.19935015121687146844e-02, + -4.28751313838296663206e-02, 2.68412731409498166169e-02, 9.92974085166531926505e-03, -1.41649957602334279627e-02, 8.49484772510930227774e-03, + 1.60608334268962397659e-03, 1.53969582107269485627e-02, 2.53654424332110106644e-02, 2.20836817019017840613e-02, -4.96400766026642691758e-03, + -4.63895546537213768895e-03, -3.69755978269468085773e-02, -4.24220279369531480529e-02, -2.80842055465305032516e-03, 3.43511446156298310903e-03, + 1.50427480682660263955e-02, -7.64781824357823984684e-03, 1.55431405065905338392e-02, -5.28685500234718219748e-02, -4.81425552620864186104e-02, + -6.98904426260522071424e-02, -5.69063762150740712342e-02, -2.01599484306710097226e-02, -7.08142573082899164094e-03, 1.60387886663503793916e-02, + -8.26785713680359968247e-02, 2.82003440014560874394e-02, 2.73932418290509169245e-02, -3.17992788170617102228e-02, 5.85714331111230612770e-02, + 5.86577384557991701741e-02, -2.75299012996250893476e-03, -8.45195718330371027760e-03, -1.36279044444791216234e-02, -1.13870143130110085955e-02, + -9.47170994530230694886e-03, 8.38589777991547574709e-03, -2.44907795135516845320e-02, -1.88112311627625997112e-02, 1.66825300517051550164e-02, + -1.40472696715355817310e-02, 4.07602998308370448322e-02, 4.52331228574007898624e-03, -7.41516905358174677892e-03, -1.90839799893427405908e-02, + 1.37235319648593090402e-01, -5.07166887609150802974e-03, 1.66347985382777688312e-02, -8.94058332794331472870e-02, -9.96617048317507969735e-03, + -3.39998201752246195784e-02, -2.72752305938337435975e-02, 1.41116199971288980557e-04, 1.20136294077674496417e-02, 1.21046096252801875515e-02, + 4.67374536088999582156e-03, 1.76093997807116745338e-03, -6.49132489663982719524e-03, 6.34253853067380107822e-02, 4.20234078454048282092e-02, + -3.39907942260764435460e-03, -3.13684078013621997494e-02, -5.59725664044557688626e-03, 1.46041344723689698465e-02, 8.15628093364801319554e-03, + 8.81123245682426982361e-03, -5.36576704715815769320e-02, 4.13564181087699121731e-03, 6.66570175208870251832e-03, -3.06753731552251258582e-03, + 3.24260047333155276839e-02, 3.78357123622976698057e-03, 1.22559252382635042178e-01, -3.26726534731656623189e-02, -4.57263244390499479231e-02, + 1.23161267442891183416e-02, 5.60898223233850107272e-02, -2.07946281596515653023e-02, 3.30973059009364162231e-02, 3.79099335956614089116e-02, + 3.02099801034241572523e-03, -4.11260349557933183040e-02, -2.09662321613402133358e-02, -1.35059512400454856396e-02, 2.11033519015176411482e-02, + 2.49738730383721862366e-03, 1.80042474049896738739e-03, -4.21972590754290111104e-02, 7.84304881856809008034e-03, 1.28611420258033324476e-02, + 1.53304442551651341764e-02, 1.14809771240723442615e-02, 5.45508167269171534430e-03, 6.03486224308978115582e-03, -6.17922023172545829134e-03, + -1.06402780093771354153e-01, -1.06566854283863088337e-01, -1.56672555450536946098e-02, -4.17617234129553371869e-02, -5.84327485785076233826e-02, + 1.72707037153512245331e-02, -4.27180361478920241763e-03, 3.83975587930814599158e-02, 7.18917519991502662613e-02, 1.73599075858622414748e-02, + -5.06102136889801795805e-02, -2.28302899957008066656e-02, 4.05449577890660689539e-02, 6.05903063932164507449e-03, 1.42495320779388468663e-02, + -1.46505630681158707102e-02, -5.51579872998721708333e-03, -2.03950903125686006101e-02, 1.71600095189964607645e-02, 3.10141280680510215972e-02, + -6.92078952483923121042e-03, -1.25723580586239959064e-03, 4.83571917759556130223e-02, -1.08848884748079619000e-01, -7.62227492845969547414e-03, + 3.98614872899268266049e-02, 2.51496883852979809248e-02, -7.45157236466782307849e-02, -2.54315956467565489063e-02, 5.86785913495517369443e-02, + 6.07261945507166309849e-03, 2.37710782485035070077e-02, 2.40958099664499367232e-03, 8.00723308014901838381e-03, 5.57202821065413758661e-02, + -6.18738592105032812751e-03, 1.57471692604664484198e-03, -2.08797558382940772262e-03, -2.73200765442419279960e-02, -2.06208586891517380024e-02, + 6.40309150046379439887e-04, 3.34147637908005640250e-02, -2.31245128603038314907e-02, 3.13805487530873783442e-02, -3.76503956682762222496e-02, + 3.82033717675601958152e-02, 6.08549869979059313008e-02, -1.40664950951139375995e-02, 1.20432450888018800772e-02, 4.11120541709728091334e-03, + -1.31431111647770104689e-02, -2.16767866450208908369e-02, 2.36444182462271527620e-03, 4.15518391649481646372e-03, -7.19797119986096724242e-03, + 3.63099914737792378583e-02, -1.71114207061806439247e-02, 9.12094809288829279359e-03, -2.00581984724530065778e-02, 4.18093901030532240359e-03, + -1.54353999486445108563e-02, 3.77632145097120189292e-02, -8.67412239218371683425e-02, 3.74024476837445662980e-02, 7.02791955646850374784e-03, + -3.07387087745127421390e-03, 1.26170642077405754933e-02, 7.19502473862098246987e-03, 5.00348237158451253359e-02, 6.05821676660315069918e-03, + 2.81657375913338843543e-02, -2.75046494305255621871e-02, -3.32847608680125889302e-02, 4.92458523340539092161e-03, -6.97895182233836727098e-03, + -1.84078432809154611538e-02, -2.55254058040131799612e-02, 4.38596283726821068588e-03, 7.97305689082921688338e-03, -6.65251068675700718558e-02, + -2.43074168732615144076e-03, -3.21551055785660854641e-03, -2.14057386820096506863e-02, 1.73404829493880863200e-02, -2.21788279126988834011e-02, + 3.67289476360874028726e-02, 2.88921423109056961509e-02, -4.36590369050650264210e-03, -3.38015966458028857197e-03, -1.47872402615952351634e-02, + -2.67937691397940741522e-02, -4.01628891758317591032e-02, 5.37104159736995767638e-02, 3.38881421250558784175e-02, -1.94731556323654853013e-02, + 6.80080451079642287447e-04, -1.16224021866609874415e-02, -2.84314312441163938305e-02, -3.10403528556473483346e-02, -1.52614844050795953750e-02, + 1.46865039960839046523e-02, 7.74337973212646264037e-03, -2.75213939675030445919e-02, -3.12476741289728875139e-02, -3.75401476285800936306e-02, + 4.53067917901101985256e-02, 4.75497506720418041531e-03, 1.25627944556748021021e-02, 4.03046169919628882727e-02, -3.29378978115561424356e-02, + -2.51499548928088654393e-03, -1.99564144518295516484e-02, -2.63938123636600005528e-02, -1.84979990476826575141e-02, -4.75891539387540141171e-02, + 1.70189645456799328038e-02, 2.90621732209333551167e-02, 1.69695748997654785595e-02, 6.00578109434020054880e-03, 3.77405846672976205691e-02, + 1.04426223615697640751e-02, -7.42237607930411715310e-04, -1.51118572042552353624e-02, 1.29952623161545995079e-03, 1.26799047323642617713e-02, + 1.05278997248968164691e-02, 2.29682654055416574090e-02, 1.28888330591014361320e-02, -1.03014730669756075787e-02, -4.83421710205830541113e-03, + -1.90040068302814585399e-02, -4.31802671175361696410e-03 +}; From a1802f2edeb9bf3fd6f9f4990c5f37064ebc8cea Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 30 Oct 2020 17:43:18 +0000 Subject: [PATCH 113/683] Testing: comments --- tests/grib_optimize_scaling_sh.c | 2 +- tests/grib_sh_ieee64.c | 2 +- tests/grib_sh_imag.c | 2 +- tests/grib_sh_spectral_complex.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/grib_optimize_scaling_sh.c b/tests/grib_optimize_scaling_sh.c index b83d19c13..6cb1b3afd 100644 --- a/tests/grib_optimize_scaling_sh.c +++ b/tests/grib_optimize_scaling_sh.c @@ -15,7 +15,7 @@ * philippe.marguinaud@meteo.fr, 2016/02 */ -#include "grib_sh_values.h" +#include "grib_sh_values.h" /* array 'values' defined here*/ #define ILCHAM 992 #define MTRONC 30 diff --git a/tests/grib_sh_ieee64.c b/tests/grib_sh_ieee64.c index 9f2152a59..57b98c626 100644 --- a/tests/grib_sh_ieee64.c +++ b/tests/grib_sh_ieee64.c @@ -18,7 +18,7 @@ * philippe.marguinaud@meteo.fr, 2016/02 */ -#include "grib_sh_values.h" +#include "grib_sh_values.h" /* array 'values' defined here*/ #define ILCHAM 992 #define MTRONC 30 diff --git a/tests/grib_sh_imag.c b/tests/grib_sh_imag.c index 744be3c25..6091bb256 100644 --- a/tests/grib_sh_imag.c +++ b/tests/grib_sh_imag.c @@ -16,7 +16,7 @@ * philippe.marguinaud@meteo.fr, 2016/02 */ -#include "grib_sh_values.h" +#include "grib_sh_values.h" /* array 'values' defined here*/ #define ILCHAM 992 #define MTRONC 30 diff --git a/tests/grib_sh_spectral_complex.c b/tests/grib_sh_spectral_complex.c index b8b024e67..085d684d7 100644 --- a/tests/grib_sh_spectral_complex.c +++ b/tests/grib_sh_spectral_complex.c @@ -11,7 +11,7 @@ #include "grib_api.h" #include -#include "grib_sh_values.h" +#include "grib_sh_values.h" /* array 'values' defined here*/ #define ILCHAM 992 #define MTRONC 30 From 9fa8d20064c4c8ffd2ab9ca5a9105fbdcdb2b700 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 30 Oct 2020 18:10:04 +0000 Subject: [PATCH 114/683] Windows: remove old Visual Studio project files --- Makefile.am | 11 +- windows/msvc/bufr_dump/bufr_dump.vcproj | 375 ---- windows/msvc/bufr_filter/bufr_filter.vcproj | 375 ---- windows/msvc/grib_api_lib/grib_api_lib.vcproj | 1895 ----------------- windows/msvc/grib_compare/grib_compare.vcproj | 375 ---- windows/msvc/grib_copy/grib_copy.vcproj | 375 ---- windows/msvc/grib_dump/grib_dump.vcproj | 375 ---- windows/msvc/grib_filter/grib_filter.vcproj | 375 ---- windows/msvc/grib_get/grib_get.vcproj | 375 ---- .../msvc/grib_get_data/grib_get_data.vcproj | 375 ---- windows/msvc/grib_ls/grib_ls.vcproj | 375 ---- windows/msvc/grib_set/grib_set.vcproj | 375 ---- 12 files changed, 1 insertion(+), 5655 deletions(-) delete mode 100644 windows/msvc/bufr_dump/bufr_dump.vcproj delete mode 100644 windows/msvc/bufr_filter/bufr_filter.vcproj delete mode 100644 windows/msvc/grib_api_lib/grib_api_lib.vcproj delete mode 100644 windows/msvc/grib_compare/grib_compare.vcproj delete mode 100644 windows/msvc/grib_copy/grib_copy.vcproj delete mode 100644 windows/msvc/grib_dump/grib_dump.vcproj delete mode 100644 windows/msvc/grib_filter/grib_filter.vcproj delete mode 100644 windows/msvc/grib_get/grib_get.vcproj delete mode 100644 windows/msvc/grib_get_data/grib_get_data.vcproj delete mode 100644 windows/msvc/grib_ls/grib_ls.vcproj delete mode 100644 windows/msvc/grib_set/grib_set.vcproj diff --git a/Makefile.am b/Makefile.am index 4cd8ed6fb..76cb3ef4d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -89,16 +89,7 @@ EXTRA_DIST = README AUTHORS NOTICE LICENSE ChangeLog version.sh html \ ifs_samples/CMakeLists.txt \ ifs_samples/grib1_mlgrib2/CMakeLists.txt \ samples/CMakeLists.txt \ - windows/msvc/grib_api.sln \ - windows/msvc/grib_api_lib/grib_api_lib.vcproj \ - windows/msvc/grib_dump/grib_dump.vcproj \ - windows/msvc/grib_compare/grib_compare.vcproj \ - windows/msvc/grib_copy/grib_copy.vcproj \ - windows/msvc/grib_filter/grib_filter.vcproj \ - windows/msvc/grib_get/grib_get.vcproj \ - windows/msvc/grib_get_data/grib_get_data.vcproj \ - windows/msvc/grib_ls/grib_ls.vcproj \ - windows/msvc/grib_set/grib_set.vcproj + windows/msvc/grib_api.sln perf_dir = @abs_builddir@/perf diff --git a/windows/msvc/bufr_dump/bufr_dump.vcproj b/windows/msvc/bufr_dump/bufr_dump.vcproj deleted file mode 100644 index ce89b5700..000000000 --- a/windows/msvc/bufr_dump/bufr_dump.vcproj +++ /dev/null @@ -1,375 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows/msvc/bufr_filter/bufr_filter.vcproj b/windows/msvc/bufr_filter/bufr_filter.vcproj deleted file mode 100644 index 61a6d0608..000000000 --- a/windows/msvc/bufr_filter/bufr_filter.vcproj +++ /dev/null @@ -1,375 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows/msvc/grib_api_lib/grib_api_lib.vcproj b/windows/msvc/grib_api_lib/grib_api_lib.vcproj deleted file mode 100644 index 710bff752..000000000 --- a/windows/msvc/grib_api_lib/grib_api_lib.vcproj +++ /dev/null @@ -1,1895 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows/msvc/grib_compare/grib_compare.vcproj b/windows/msvc/grib_compare/grib_compare.vcproj deleted file mode 100644 index 81e9e5ac9..000000000 --- a/windows/msvc/grib_compare/grib_compare.vcproj +++ /dev/null @@ -1,375 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows/msvc/grib_copy/grib_copy.vcproj b/windows/msvc/grib_copy/grib_copy.vcproj deleted file mode 100644 index ec033d818..000000000 --- a/windows/msvc/grib_copy/grib_copy.vcproj +++ /dev/null @@ -1,375 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows/msvc/grib_dump/grib_dump.vcproj b/windows/msvc/grib_dump/grib_dump.vcproj deleted file mode 100644 index 8f751d7d0..000000000 --- a/windows/msvc/grib_dump/grib_dump.vcproj +++ /dev/null @@ -1,375 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows/msvc/grib_filter/grib_filter.vcproj b/windows/msvc/grib_filter/grib_filter.vcproj deleted file mode 100644 index 6ad0e2b87..000000000 --- a/windows/msvc/grib_filter/grib_filter.vcproj +++ /dev/null @@ -1,375 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows/msvc/grib_get/grib_get.vcproj b/windows/msvc/grib_get/grib_get.vcproj deleted file mode 100644 index 8f7d0a01d..000000000 --- a/windows/msvc/grib_get/grib_get.vcproj +++ /dev/null @@ -1,375 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows/msvc/grib_get_data/grib_get_data.vcproj b/windows/msvc/grib_get_data/grib_get_data.vcproj deleted file mode 100644 index 70affb80f..000000000 --- a/windows/msvc/grib_get_data/grib_get_data.vcproj +++ /dev/null @@ -1,375 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows/msvc/grib_ls/grib_ls.vcproj b/windows/msvc/grib_ls/grib_ls.vcproj deleted file mode 100644 index b171283c7..000000000 --- a/windows/msvc/grib_ls/grib_ls.vcproj +++ /dev/null @@ -1,375 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows/msvc/grib_set/grib_set.vcproj b/windows/msvc/grib_set/grib_set.vcproj deleted file mode 100644 index 342847244..000000000 --- a/windows/msvc/grib_set/grib_set.vcproj +++ /dev/null @@ -1,375 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From 2f04b307359d326bbc674d996aaef8e339f95a42 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 2 Nov 2020 10:50:13 +0000 Subject: [PATCH 115/683] IFS parameter limits: lower limit of paramId=31 (sea-ice fraction) --- definitions/param_limits.def | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/definitions/param_limits.def b/definitions/param_limits.def index b59c98662..1f936f888 100644 --- a/definitions/param_limits.def +++ b/definitions/param_limits.def @@ -52,7 +52,7 @@ concept param_value_min(default_min_val) { -4 = { paramId=151145; } 0 = { paramId=151219; } 160 = { paramId=34; } - 0 = { paramId=31; } + -0.00001 = { paramId=31; } 0 = { paramId=174098; } 0 = { paramId=140229; } 120 = { paramId=235; } From 72548a7a7dc2d815dd26d7c71f36d97db78f7932 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 2 Nov 2020 10:53:04 +0000 Subject: [PATCH 116/683] Remove deprecated dirs --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 5236ecbc9..2962312c4 100755 --- a/configure.ac +++ b/configure.ac @@ -670,7 +670,7 @@ AC_CHECK_FUNCS([bzero gettimeofday]) AX_LINUX_DISTRIBUTION -AC_OUTPUT( Makefile src/Makefile fortran/Makefile tools/Makefile data/Makefile definitions/Makefile samples/Makefile ifs_samples/grib1/Makefile ifs_samples/grib1_mlgrib2/Makefile ifs_samples/grib1_mlgrib2_ieee64/Makefile tests/Makefile examples/C/Makefile examples/F90/Makefile tigge/Makefile perl/GRIB-API/Makefile.PL perl/Makefile python/Makefile examples/python/Makefile) +AC_OUTPUT( Makefile src/Makefile fortran/Makefile tools/Makefile data/Makefile definitions/Makefile samples/Makefile ifs_samples/grib1/Makefile ifs_samples/grib1_mlgrib2/Makefile ifs_samples/grib1_mlgrib2_ieee64/Makefile tests/Makefile examples/C/Makefile examples/F90/Makefile tigge/Makefile python/Makefile examples/python/Makefile) AC_MSG_NOTICE([ From 562a8afa3b874ed0648e0e3cc4362b08963e4f05 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 2 Nov 2020 10:55:36 +0000 Subject: [PATCH 117/683] IFS parameter limits: lower limit of paramId=31 (sea-ice fraction) --- definitions/param_limits.def | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/definitions/param_limits.def b/definitions/param_limits.def index b59c98662..1f936f888 100644 --- a/definitions/param_limits.def +++ b/definitions/param_limits.def @@ -52,7 +52,7 @@ concept param_value_min(default_min_val) { -4 = { paramId=151145; } 0 = { paramId=151219; } 160 = { paramId=34; } - 0 = { paramId=31; } + -0.00001 = { paramId=31; } 0 = { paramId=174098; } 0 = { paramId=140229; } 120 = { paramId=235; } From b968b05d705db1840216db93ec50a16408287ba3 Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Mon, 2 Nov 2020 11:41:36 +0000 Subject: [PATCH 118/683] Support for MEMFS on older Linux --- CMakeLists.txt | 1 - memfs.py | 211 ++++++------------------------------------------- 2 files changed, 24 insertions(+), 188 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fb9196b87..118c15f90 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -151,7 +151,6 @@ endif() ecbuild_add_option( FEATURE MEMFS DESCRIPTION "Memory based access to definitions/samples" DEFAULT OFF - CONDITION ECCODES_HAVE_FMEMOPEN OR ECCODES_HAVE_FUNOPEN OR (EC_OS_NAME MATCHES "windows") REQUIRED_PACKAGES PythonInterp ) #if( HAVE_MEMFS AND "${CMAKE_C_COMPILER_ID}" STREQUAL "Cray") diff --git a/memfs.py b/memfs.py index 642849cb2..428063633 100755 --- a/memfs.py +++ b/memfs.py @@ -107,7 +107,7 @@ for directory in dirs: # e.g. 23 -> 0x23 for n in range(0, len(contents_hex), 2): twoChars = ascii(contents_hex[n : n + 2]) - + buffer.write(encode("0x%s," % (twoChars,))) i += 1 @@ -130,195 +130,32 @@ opath = output_file_base + "_final.c" print("MEMFS: Generating output:", opath) g = open(opath, "w") -print( - """ -#include "eccodes_config.h" -#ifdef ECCODES_HAVE_FMEMOPEN -#define _GNU_SOURCE -#endif +f = open(os.path.join(os.path.dirname(__file__), "src", "memfs.c")) +for line in f.readlines(): + line = line.rstrip() + if "" in line: + # Write extern variables with sizes + for k, v in SIZES.items(): + print("extern const unsigned char %s[%d];" % (k, v), file=g) -#include -#include -#include -#include -#include "eccodes_windef.h" -""", - file=g, -) + print( + "static struct entry entries[] = {", + file=g, + ) + items = [(v, k) for k, v in FILES.items()] + for k, v in sorted(items): + print( + '{"/MEMFS%s", &%s[0], sizeof(%s) / sizeof(%s[0]) },' % (k, v, v, v), + file=g, + ) + print( + "};", + file=g, + ) -# Write extern variables with sizes -for k, v in SIZES.items(): - print("extern const unsigned char %s[%d];" % (k, v), file=g) + else: + print(line, file=g) -print( - """ -struct entry { - const char* path; - const unsigned char* content; - size_t length; -} entries[] = { """, - file=g, -) - -items = [(v, k) for k, v in FILES.items()] - -for k, v in sorted(items): - print('{"/MEMFS%s", &%s[0], sizeof(%s) / sizeof(%s[0]) },' % (k, v, v, v), file=g) - - -print( - """}; - -#if defined(ECCODES_HAVE_FUNOPEN) && !defined(ECCODES_HAVE_FMEMOPEN) - -typedef struct mem_file { - const char* buffer; - size_t size; - size_t pos; -} mem_file; - -static int read_mem(void *data, char * buf, int len) { - mem_file* f = (mem_file*)data; - int n = len; - - if(f->pos + n > f->size) { - n = f->size - f->pos; - } - - memcpy(buf, f->buffer + f->pos, n); - - f->pos += n; - return n; -} - -static int write_mem(void* data, const char* buf, int len) { - mem_file* f = (mem_file*)data; - return -1; -} - -static fpos_t seek_mem(void *data, fpos_t pos, int whence) { - mem_file* f = (mem_file*)data; - long newpos = 0; - - switch (whence) { - case SEEK_SET: - newpos = (long)pos; - break; - - case SEEK_CUR: - newpos = (long)f->pos + (long)pos; - break; - - case SEEK_END: - newpos = (long)f->size - (long)pos; - break; - - default: - return -1; - break; - } - - if(newpos < 0) { newpos = 0; } - if(newpos > f->size) { newpos = f->size; } - - f->pos = newpos; - return newpos; -} - -static int close_mem(void *data) { - mem_file* f = (mem_file*)data; - free(f); - return 0; -} - -static FILE* fmemopen(const char* buffer, size_t size, const char* mode){ - mem_file* f = (mem_file*)calloc(sizeof(mem_file), 1); - if(!f) return NULL; - - f->buffer = buffer; - f->size = size; - - return funopen(f, &read_mem, &write_mem, &seek_mem, &close_mem); -} - -#elif defined(ECCODES_ON_WINDOWS) - -#include -#include -#include - -static FILE *fmemopen(void* buffer, size_t size, const char* mode) { - char path[MAX_PATH - 13]; - if (!GetTempPath(sizeof(path), path)) - return NULL; - - char filename[MAX_PATH + 1]; - if (!GetTempFileName(path, "eccodes", 0, filename)) - return NULL; - - HANDLE h = CreateFile(filename, - GENERIC_READ | GENERIC_WRITE, - 0, - NULL, - OPEN_ALWAYS, - FILE_ATTRIBUTE_TEMPORARY | FILE_FLAG_DELETE_ON_CLOSE, - NULL); - - if (h == INVALID_HANDLE_VALUE) - return NULL; - - int fd = _open_osfhandle((intptr_t)h, _O_RDWR); - if (fd < 0) { - CloseHandle(h); - return NULL; - } - - FILE* f = _fdopen(fd, "w+"); - if (!f) { - _close(fd); - return NULL; - } - - fwrite(buffer, size, 1, f); - rewind(f); - return f; -} - -#endif - -static size_t entries_count = sizeof(entries)/sizeof(entries[0]); - -static const unsigned char* find(const char* path, size_t* length) { - size_t i; - - for(i = 0; i < entries_count; i++) { - if(strcmp(path, entries[i].path) == 0) { - /*printf("Found in MEMFS %s\\n", path);*/ - *length = entries[i].length; - return entries[i].content; - } - } - - return NULL; -} - -int codes_memfs_exists(const char* path) { - size_t dummy; - return find(path, &dummy) != NULL; -} - -FILE* codes_memfs_open(const char* path) { - size_t size; - const unsigned char* mem = find(path, &size); - if(!mem) { - return NULL; - } - return fmemopen((void*)mem, size, "r"); -} - -""", - file=g, -) print("Finished") From 95cfa2f6fad18fc14fadd3d03c26dbe42c5d47ad Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Mon, 2 Nov 2020 11:42:00 +0000 Subject: [PATCH 119/683] Support for MEMFS on older Linux --- src/memfs.c | 201 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 201 insertions(+) create mode 100644 src/memfs.c diff --git a/src/memfs.c b/src/memfs.c new file mode 100644 index 000000000..21ea1ad49 --- /dev/null +++ b/src/memfs.c @@ -0,0 +1,201 @@ +/* + * (C) Copyright 2005- ECMWF. + * + * This software is licensed under the terms of the Apache Licence Version 2.0 + * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. + * + * In applying this licence, ECMWF does not waive the privileges and immunities granted to it by + * virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. + */ + + +#include "eccodes_config.h" +#ifdef ECCODES_HAVE_FMEMOPEN +#define _GNU_SOURCE +#endif + +#include +#include +#include +#include +#include "eccodes_windef.h" + +struct entry { + const char* path; + const unsigned char* content; + size_t length; +}; + +/* The code will be added below: */ +/* Start generated code */ +/* */ +/* End generated code */ + +#if !defined(ECCODES_HAVE_FMEMOPEN) + +#if defined(ECCODES_HAVE_FUNOPEN) +typedef struct mem_file { + const char* buffer; + size_t size; + size_t pos; +} mem_file; + +static int read_mem(void *data, char * buf, int len) { + mem_file* f = (mem_file*)data; + int n = len; + + if(f->pos + n > f->size) { + n = f->size - f->pos; + } + + memcpy(buf, f->buffer + f->pos, n); + + f->pos += n; + return n; +} + +static int write_mem(void* data, const char* buf, int len) { + mem_file* f = (mem_file*)data; + return -1; +} + +static fpos_t seek_mem(void *data, fpos_t pos, int whence) { + mem_file* f = (mem_file*)data; + long newpos = 0; + + switch (whence) { + case SEEK_SET: + newpos = (long)pos; + break; + + case SEEK_CUR: + newpos = (long)f->pos + (long)pos; + break; + + case SEEK_END: + newpos = (long)f->size - (long)pos; + break; + + default: + return -1; + break; + } + + if(newpos < 0) { newpos = 0; } + if(newpos > f->size) { newpos = f->size; } + + f->pos = newpos; + return newpos; +} + +static int close_mem(void *data) { + mem_file* f = (mem_file*)data; + free(f); + return 0; +} + +static FILE* fmemopen(const char* buffer, size_t size, const char* mode){ + mem_file* f = (mem_file*)calloc(sizeof(mem_file), 1); + if(!f) return NULL; + + f->buffer = buffer; + f->size = size; + + return funopen(f, &read_mem, &write_mem, &seek_mem, &close_mem); +} + +#else /* defined(ECCODES_HAVE_FUNOPEN) */ + +#if defined(ECCODES_ON_WINDOWS) + +#include +#include +#include + +static FILE *fmemopen(void* buffer, size_t size, const char* mode) { + char path[MAX_PATH - 13]; + if (!GetTempPath(sizeof(path), path)) + return NULL; + + char filename[MAX_PATH + 1]; + if (!GetTempFileName(path, "eccodes", 0, filename)) + return NULL; + + HANDLE h = CreateFile(filename, + GENERIC_READ | GENERIC_WRITE, + 0, + NULL, + OPEN_ALWAYS, + FILE_ATTRIBUTE_TEMPORARY | FILE_FLAG_DELETE_ON_CLOSE, + NULL); + + if (h == INVALID_HANDLE_VALUE) + return NULL; + + int fd = _open_osfhandle((intptr_t)h, _O_RDWR); + if (fd < 0) { + CloseHandle(h); + return NULL; + } + + FILE* f = _fdopen(fd, "w+"); + if (!f) { + _close(fd); + return NULL; + } + + fwrite(buffer, size, 1, f); + rewind(f); + return f; +} + +#else /* defined(ECCODES_ON_WINDOWS) */ +#include +/* On old unix systems */ + +static FILE *fmemopen(void* buffer, size_t size, const char* mode) { + + FILE* f = tmpfile(); + if (!f) { + return NULL; + } + + fwrite(buffer, size, 1, f); + rewind(f); + return f; +} + +#endif /* defined(ECCODES_ON_WINDOWS) */ + +#endif /* defined(ECCODES_HAVE_FUNOPEN) */ +#endif /* !defined(ECCODES_HAVE_FMEMOPEN) */ + +static size_t entries_count = sizeof(entries)/sizeof(entries[0]); + +static const unsigned char* find(const char* path, size_t* length) { + size_t i; + + for(i = 0; i < entries_count; i++) { + if(strcmp(path, entries[i].path) == 0) { + /*printf("Found in MEMFS %s\\n", path);*/ + *length = entries[i].length; + return entries[i].content; + } + } + + return NULL; +} + +int codes_memfs_exists(const char* path) { + size_t dummy; + return find(path, &dummy) != NULL; +} + +FILE* codes_memfs_open(const char* path) { + size_t size; + const unsigned char* mem = find(path, &size); + if(!mem) { + return NULL; + } + return fmemopen((void*)mem, size, "r"); +} From 89a176edd15db41180d7a88b375dc73656ee9d89 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 2 Nov 2020 14:07:59 +0000 Subject: [PATCH 120/683] Fix output file encoding with Python3 --- memfs.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/memfs.py b/memfs.py index 428063633..187a58ab1 100755 --- a/memfs.py +++ b/memfs.py @@ -42,10 +42,8 @@ CHUNK = 16 * 1024 * 1024 # chunk size in bytes try: str(b"\x23\x20", "ascii") ascii = lambda x: str(x, "ascii") # Python 3 - encode = lambda x: x.encode() except: ascii = lambda x: str(x) # Python 2 - encode = lambda x: x def get_outfile_name(base, count): @@ -93,7 +91,7 @@ for directory in dirs: FILES[name] = fname SIZES[name] = os.path.getsize(full) - buffer.write(encode("const unsigned char %s[] = {" % (name,))) + buffer.write("const unsigned char %s[] = {" % (name,)) with open(full, "rb") as f: i = 0 @@ -107,14 +105,12 @@ for directory in dirs: # e.g. 23 -> 0x23 for n in range(0, len(contents_hex), 2): twoChars = ascii(contents_hex[n : n + 2]) - - buffer.write(encode("0x%s," % (twoChars,))) - + buffer.write("0x%s," % (twoChars,)) i += 1 if (i % 20) == 0: - buffer.write(encode("\n")) + buffer.write("\n") - buffer.write(encode("};\n")) + buffer.write("};\n") if buffer.tell() >= CHUNK: buffer.close() buffer = None From 5c059908600951fce4f872adafbed668dd7dcbc9 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 2 Nov 2020 17:36:57 +0000 Subject: [PATCH 121/683] ECC-1152: Segmentation fault when extracting subsets with bufr_filter (Return an error) --- src/grib_accessor_class_bufr_data_array.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/grib_accessor_class_bufr_data_array.c b/src/grib_accessor_class_bufr_data_array.c index 143b855f6..499775826 100644 --- a/src/grib_accessor_class_bufr_data_array.c +++ b/src/grib_accessor_class_bufr_data_array.c @@ -449,8 +449,10 @@ static void self_clear(grib_context* c, grib_accessor_bufr_data_array* self) grib_vdarray_delete_content(c, self->numericValues); grib_vdarray_delete(c, self->numericValues); if (self->stringValues) { + /*printf("dbg self_clear: clear %p\n", (void*)(self->stringValues));*/ grib_vsarray_delete_content(c, self->stringValues); grib_vsarray_delete(c, self->stringValues); + self->stringValues = NULL; } grib_viarray_delete_content(c, self->elementsDescriptorsIndex); grib_viarray_delete(c, self->elementsDescriptorsIndex); @@ -514,7 +516,6 @@ grib_vsarray* accessor_bufr_data_array_get_stringValues(grib_accessor* a) { grib_accessor_bufr_data_array* self = (grib_accessor_bufr_data_array*)a; process_elements(a, PROCESS_DECODE, 0, 0, 0); - return self->stringValues; } @@ -579,6 +580,7 @@ static int decode_string_array(grib_context* c, unsigned char* data, long* pos, CHECK_END_DATA_RETURN(c, bd, self, modifiedWidth, *err); if (*err) { grib_sarray_push(c, sa, sval); + /*printf("dbg: decode_string_array push1 %p\n", (void*)(self->stringValues));*/ grib_vsarray_push(c, self->stringValues, sa); return ret; } @@ -586,6 +588,7 @@ static int decode_string_array(grib_context* c, unsigned char* data, long* pos, CHECK_END_DATA_RETURN(c, bd, self, 6, *err); if (*err) { grib_sarray_push(c, sa, sval); + /*printf("dbg: decode_string_array push2 %p\n", (void*)(self->stringValues));*/ grib_vsarray_push(c, self->stringValues, sa); return ret; } @@ -594,6 +597,7 @@ static int decode_string_array(grib_context* c, unsigned char* data, long* pos, CHECK_END_DATA_RETURN(c, bd, self, width * 8 * self->numberOfSubsets, *err); if (*err) { grib_sarray_push(c, sa, sval); + /*printf("dbg: decode_string_array push3 %p\n", (void*)(self->stringValues));*/ grib_vsarray_push(c, self->stringValues, sa); return ret; } @@ -617,6 +621,7 @@ static int decode_string_array(grib_context* c, unsigned char* data, long* pos, grib_sarray_push(c, sa, sval); } } + /*printf("dbg: decode_string_array push4 %p\n", (void*)(self->stringValues));*/ grib_vsarray_push(c, self->stringValues, sa); return ret; } @@ -714,7 +719,9 @@ static int encode_string_array(grib_context* c, grib_buffer* buff, long* pos, bu grib_context_log(c, GRIB_LOG_ERROR, "encode_string_array: self->iss_list==NULL"); return GRIB_INTERNAL_ERROR; } - + if (!stringValues) { + return GRIB_INTERNAL_ERROR; + } n = grib_iarray_used_size(self->iss_list); if (n <= 0) @@ -2899,13 +2906,16 @@ static int process_elements(grib_accessor* a, int flag, long onlySubset, long st if (do_clean == 1 && self->numericValues) { grib_vdarray_delete_content(c, self->numericValues); grib_vdarray_delete(c, self->numericValues); + /*printf("dbg process_elements: clear %p\n", (void*)(self->stringValues));*/ grib_vsarray_delete_content(c, self->stringValues); grib_vsarray_delete(c, self->stringValues); + self->stringValues = NULL; } if (flag != PROCESS_ENCODE) { self->numericValues = grib_vdarray_new(c, 1000, 1000); self->stringValues = grib_vsarray_new(c, 10, 10); + /*printf("dbg process_elements: Create a new one %p\n", (void*)(self->stringValues));*/ if (self->elementsDescriptorsIndex) grib_viarray_delete(c, self->elementsDescriptorsIndex); From 4e3ce3c7cdf2828c5e47b8ed583d1eb87272fbff Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Mon, 2 Nov 2020 21:06:18 +0000 Subject: [PATCH 122/683] Bug fix --- memfs.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/memfs.py b/memfs.py index 428063633..b96cd1260 100755 --- a/memfs.py +++ b/memfs.py @@ -39,8 +39,7 @@ NAMES = [] CHUNK = 16 * 1024 * 1024 # chunk size in bytes # Binary to ASCII function. Different in Python 2 and 3 -try: - str(b"\x23\x20", "ascii") +if sys.version_info[0] >= 3: ascii = lambda x: str(x, "ascii") # Python 3 encode = lambda x: x.encode() except: @@ -74,7 +73,7 @@ for directory in dirs: fcount += 1 opath = get_outfile_name(output_file_base, fcount) print("MEMFS: Generating output:", opath) - buffer = open(opath, "w") + buffer = open(opath, "wb") full = "%s/%s" % (dirpath, name) _, ext = os.path.splitext(full) From 0c550639eba09b312f2e1353d3e8133e594519e5 Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Mon, 2 Nov 2020 21:31:58 +0000 Subject: [PATCH 123/683] Merge master --- memfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memfs.py b/memfs.py index b96cd1260..03df5da2f 100755 --- a/memfs.py +++ b/memfs.py @@ -42,7 +42,7 @@ CHUNK = 16 * 1024 * 1024 # chunk size in bytes if sys.version_info[0] >= 3: ascii = lambda x: str(x, "ascii") # Python 3 encode = lambda x: x.encode() -except: +else: ascii = lambda x: str(x) # Python 2 encode = lambda x: x From efe95c52f50c51ee67f70143a835f57de0bf151a Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 6 Nov 2020 12:06:40 +0000 Subject: [PATCH 124/683] ECC-779: Error 'no messages found in ...' should go to stderr --- tests/grib_indexing.sh | 10 +++++----- tools/grib_tools.c | 5 +++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/tests/grib_indexing.sh b/tests/grib_indexing.sh index 1a4a05090..86abd7708 100755 --- a/tests/grib_indexing.sh +++ b/tests/grib_indexing.sh @@ -32,9 +32,9 @@ tempOut=temp.$label.$$.out tempRef=temp.$label.$$.ref ${tools_dir}/grib_index_build -N -o $tempIndex ${infile} >/dev/null -# Must remove first two lines and the last (filename specifics) -${tools_dir}/grib_dump -D ${tempIndex} | sed '1,2d' | sed '$d' > $tempOut -cat $tempOut +# Must remove first two lines (filename specifics) +${tools_dir}/grib_dump ${tempIndex} | sed '1,2d' > $tempOut +#cat $tempOut cat > $tempRef <size==0) fprintf(stderr, "no messages found in fieldset\n"); grib_tool_finalise_action(options); grib_fieldset_delete(set); @@ -416,7 +417,7 @@ static int grib_tool_without_orderby(grib_runtime_options* options) fclose(infile->file); if (infile->handle_count == 0) { - fprintf(dump_file, "no messages found in %s\n", infile->name); + fprintf(stderr, "no messages found in %s\n", infile->name); if (options->fail) exit(1); } @@ -733,7 +734,7 @@ static void grib_tools_set_print_keys(grib_runtime_options* options, grib_handle if (ns) { kiter = grib_keys_iterator_new(h, 0, ns); if (!kiter) { - fprintf(dump_file, "ERROR: Unable to create keys iterator\n"); + fprintf(stderr, "ERROR: Unable to create keys iterator\n"); exit(1); } From 21584d10e1d3adb69bcd5359235a53ee46310484 Mon Sep 17 00:00:00 2001 From: Anthony Tissot Date: Fri, 6 Nov 2020 16:44:48 +0100 Subject: [PATCH 125/683] [SUP-3293]: Fix perf loss of grib_nearest_find Avoid calls to is_legacy() when GRIB_NEAREST_SAME_GRID is provided --- src/grib_nearest_class_reduced.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/grib_nearest_class_reduced.c b/src/grib_nearest_class_reduced.c index 6b5c0b119..30464cd58 100644 --- a/src/grib_nearest_class_reduced.c +++ b/src/grib_nearest_class_reduced.c @@ -148,7 +148,13 @@ static int find(grib_nearest* nearest, grib_handle* h, long iradius; double radius; int ilat = 0, ilon = 0; - const int is_legacy_grib = is_legacy(h); + static int s_is_legacy = -1; + + if (s_is_legacy < 0 || !(flags & GRIB_NEAREST_SAME_GRID)) { + s_is_legacy = is_legacy(h); + } + + const int is_legacy_grib = s_is_legacy; get_reduced_row_proc get_reduced_row_func = &grib_get_reduced_row; if (is_legacy_grib) { get_reduced_row_func = &grib_get_reduced_row_legacy; From 372b8a90e42cd74292cd0e1925603e2be95728a6 Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Mon, 9 Nov 2020 10:59:25 +0000 Subject: [PATCH 126/683] Change to UTF-8 --- definitions/grib2/tables/3/3.7.table | 2 +- definitions/grib2/tables/4/3.7.table | 2 +- definitions/grib2/tables/5/3.7.table | 2 +- definitions/grib2/tables/6/3.7.table | 2 +- definitions/grib2/tables/7/3.7.table | 2 +- definitions/grib2/template.4.1100.def | 2 +- definitions/grib2/template.4.1101.def | 2 +- definitions/grib3/tables/0/3.7.table | 2 +- definitions/grib3/tables/1/3.7.table | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/definitions/grib2/tables/3/3.7.table b/definitions/grib2/tables/3/3.7.table index af874fb8f..b57c480a4 100644 --- a/definitions/grib2/tables/3/3.7.table +++ b/definitions/grib2/tables/3/3.7.table @@ -1,5 +1,5 @@ # Code Table 3.7: Spectral data representation mode 0 0 Reserved -1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) +1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) # 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/4/3.7.table b/definitions/grib2/tables/4/3.7.table index af874fb8f..b57c480a4 100644 --- a/definitions/grib2/tables/4/3.7.table +++ b/definitions/grib2/tables/4/3.7.table @@ -1,5 +1,5 @@ # Code Table 3.7: Spectral data representation mode 0 0 Reserved -1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) +1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) # 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/5/3.7.table b/definitions/grib2/tables/5/3.7.table index af874fb8f..b57c480a4 100644 --- a/definitions/grib2/tables/5/3.7.table +++ b/definitions/grib2/tables/5/3.7.table @@ -1,5 +1,5 @@ # Code Table 3.7: Spectral data representation mode 0 0 Reserved -1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) +1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) # 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/6/3.7.table b/definitions/grib2/tables/6/3.7.table index 4faf00003..5937ea14d 100644 --- a/definitions/grib2/tables/6/3.7.table +++ b/definitions/grib2/tables/6/3.7.table @@ -1,4 +1,4 @@ # Code Table 3.7: Spectral data representation mode 0 0 Reserved -1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) +1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) 255 255 Missing diff --git a/definitions/grib2/tables/7/3.7.table b/definitions/grib2/tables/7/3.7.table index 4faf00003..5937ea14d 100644 --- a/definitions/grib2/tables/7/3.7.table +++ b/definitions/grib2/tables/7/3.7.table @@ -1,4 +1,4 @@ # Code Table 3.7: Spectral data representation mode 0 0 Reserved -1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) +1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) 255 255 Missing diff --git a/definitions/grib2/template.4.1100.def b/definitions/grib2/template.4.1100.def index c69138393..c65c42cda 100644 --- a/definitions/grib2/template.4.1100.def +++ b/definitions/grib2/template.4.1100.def @@ -1,6 +1,6 @@ # (C) Copyright 2005- ECMWF. -# TEMPLATE 4.1100, Hovmöller-type grid with no averaging or other statistical processing +# TEMPLATE 4.1100, Hovmöller-type grid with no averaging or other statistical processing include "grib2/template.4.parameter.def" include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.1101.def b/definitions/grib2/template.4.1101.def index 14a51ca46..e5739f887 100644 --- a/definitions/grib2/template.4.1101.def +++ b/definitions/grib2/template.4.1101.def @@ -1,6 +1,6 @@ # (C) Copyright 2005- ECMWF. -# TEMPLATE 4.1101, Hovmöller-type grid with averaging or other statistical processing +# TEMPLATE 4.1101, Hovmöller-type grid with averaging or other statistical processing include "grib2/template.4.parameter.def" include "grib2/template.4.horizontal.def" diff --git a/definitions/grib3/tables/0/3.7.table b/definitions/grib3/tables/0/3.7.table index 3aaf30bf9..2746bdba7 100644 --- a/definitions/grib3/tables/0/3.7.table +++ b/definitions/grib3/tables/0/3.7.table @@ -1,6 +1,6 @@ # Code Table 3.7: Spectral data representation mode 0 0 Reserved -1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) +1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) # 2-254 Reserved 255 255 Missing # Note: diff --git a/definitions/grib3/tables/1/3.7.table b/definitions/grib3/tables/1/3.7.table index 3aaf30bf9..2746bdba7 100644 --- a/definitions/grib3/tables/1/3.7.table +++ b/definitions/grib3/tables/1/3.7.table @@ -1,6 +1,6 @@ # Code Table 3.7: Spectral data representation mode 0 0 Reserved -1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) +1 1 The complex numbers Fnm (see code figure 1 in Code Table 3.6 above) are stored for m³0 as pairs of real numbers Re(Fnm), Im(Fnm) ordered with n increasing from m to N(m), first for m=0 and then for m=1, 2, ... M. (see Note 1) # 2-254 Reserved 255 255 Missing # Note: From 1a5708b2550ff291d4cf6c66cf922f7737bb37c1 Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Mon, 9 Nov 2020 14:43:17 +0000 Subject: [PATCH 127/683] Units --- .../grib1/localConcepts/eswi/units.def | 36 +-- units.py | 258 ++++++++++++++++++ 2 files changed, 276 insertions(+), 18 deletions(-) create mode 100644 units.py diff --git a/definitions/grib1/localConcepts/eswi/units.def b/definitions/grib1/localConcepts/eswi/units.def index a89000076..ea2d049dc 100644 --- a/definitions/grib1/localConcepts/eswi/units.def +++ b/definitions/grib1/localConcepts/eswi/units.def @@ -4544,7 +4544,7 @@ ############### table2Version 150 ############ ############### Hirlam postpr ############ ################################################# -#Reserved +#Reserved 'Reserved' = { table2Version = 150 ; indicatorOfParameter = 0 ; @@ -4638,12 +4638,12 @@ table2Version = 253 ; indicatorOfParameter = 84 ; } -#Albedo of bare ground +#Albedo of bare ground '-' = { table2Version = 253 ; indicatorOfParameter = 229 ; } -#Albedo of vegetation +#Albedo of vegetation '-' = { table2Version = 253 ; indicatorOfParameter = 230 ; @@ -4663,7 +4663,7 @@ table2Version = 253 ; indicatorOfParameter = 190 ; } -#Anisotropy coeff of topography +#Anisotropy coeff of topography 'rad' = { table2Version = 253 ; indicatorOfParameter = 221 ; @@ -4708,7 +4708,7 @@ table2Version = 253 ; indicatorOfParameter = 58 ; } -#Fraction of clay within soil +#Fraction of clay within soil '-' = { table2Version = 253 ; indicatorOfParameter = 225 ; @@ -4793,7 +4793,7 @@ table2Version = 253 ; indicatorOfParameter = 82 ; } -#Direction of main axis of topography +#Direction of main axis of topography '-' = { table2Version = 253 ; indicatorOfParameter = 222 ; @@ -4803,7 +4803,7 @@ table2Version = 253 ; indicatorOfParameter = 243 ; } -#Dominant vegetation index +#Dominant vegetation index '-' = { table2Version = 253 ; indicatorOfParameter = 234 ; @@ -4913,7 +4913,7 @@ table2Version = 253 ; indicatorOfParameter = 127 ; } -#Leaf area index +#Leaf area index 'm**2 m**-2' = { table2Version = 253 ; indicatorOfParameter = 232 ; @@ -4973,7 +4973,7 @@ table2Version = 253 ; indicatorOfParameter = 74 ; } -#MOCON out of the model +#MOCON out of the model 'kg kg**-1 s**-1' = { table2Version = 253 ; indicatorOfParameter = 166 ; @@ -5153,12 +5153,12 @@ table2Version = 253 ; indicatorOfParameter = 23 ; } -#Simulated reflectivity +#Simulated reflectivity 'dBz ?' = { table2Version = 253 ; indicatorOfParameter = 210 ; } -#Resistance to evapotransiration +#Resistance to evapotransiration 's m**-1' = { table2Version = 253 ; indicatorOfParameter = 240 ; @@ -5198,7 +5198,7 @@ table2Version = 253 ; indicatorOfParameter = 66 ; } -#Surface emissivity +#Surface emissivity '-' = { table2Version = 253 ; indicatorOfParameter = 235 ; @@ -5233,7 +5233,7 @@ table2Version = 253 ; indicatorOfParameter = 237 ; } -#Fraction of sand within soil +#Fraction of sand within soil '-' = { table2Version = 253 ; indicatorOfParameter = 226 ; @@ -5253,7 +5253,7 @@ table2Version = 253 ; indicatorOfParameter = 86 ; } -#Stomatal minimum resistance +#Stomatal minimum resistance 's m**-1' = { table2Version = 253 ; indicatorOfParameter = 231 ; @@ -5298,7 +5298,7 @@ table2Version = 253 ; indicatorOfParameter = 122 ; } -#Standard deviation of orography * g +#Standard deviation of orography * g 'm**2s**-2' = { table2Version = 253 ; indicatorOfParameter = 220 ; @@ -5423,7 +5423,7 @@ table2Version = 253 ; indicatorOfParameter = 33 ; } -#U-component of current +#U-component of current 'm s**-1' = { table2Version = 253 ; indicatorOfParameter = 49 ; @@ -5458,7 +5458,7 @@ table2Version = 253 ; indicatorOfParameter = 34 ; } -#V-component of current +#V-component of current 'm s**-1' = { table2Version = 253 ; indicatorOfParameter = 50 ; @@ -5573,7 +5573,7 @@ table2Version = 253 ; indicatorOfParameter = 6 ; } -#Thermal roughness length * g +#Thermal roughness length * g 'm' = { table2Version = 253 ; indicatorOfParameter = 239 ; diff --git a/units.py b/units.py new file mode 100644 index 000000000..e74b24a5a --- /dev/null +++ b/units.py @@ -0,0 +1,258 @@ +#!/usr/bin/env python3 + +import os +import re +from collections import defaultdict +import cfunits + + +RE = re.compile(r"^\d+ \d+ ([\-A-Za-z0-9]+) (.*)\((.*)\)$") + +FIX = { + "deg C": "degC", + "degrees C": "degC", + "Dobson": "DU", + "kg m**-2/day": "kg m**-2 day**-1", + "m**2 / m**2": "m**2 m**-2", + "kg kg**-1 per day": "kg kg**-1 day**-1", + "K per day": "K day**-1", + "cm per day": "cm day**-1", + "mm per day": "mm day**-1", + "m s**-1 per day": "m s**-1 day**-1s", + "degreeperday": "degC day**-1", + "Joule": "J", + "Jm-2": "J m**-2", + "Nm**-3": "N m**-3", + "Ws m**-2": "W s m**-2", + "m s**-1 day**-1s": "m s**-1 day**-1 s", + "m s**-1 deg C": "m s**-1 degC", + "psuperday": "psu day**-1", + "ms*-1": "m s**-1", + "m s*-1": "m s**-1", + "kg kg-1": "kg kg**-1", + "kg/kg": "kg kg**-1", + "kg2 kg-2": "kg**2 kg**-2", + "m3 m-3": "m**3 m**-3", + "m3/m3": "m**3 m**-3", + "ms-1": "m s**-1", + "cm/s": "cm s**-1", + "mm6/m3": "mm**6 m**-3", + "m**2 K s**-2": "K m**2 s**-2", + "m s-**2": "m s**-2", + # "M":"m", + "M/S": "m s**-1", + "bq m-2 s-1": "Bq m**-2 s**-1", + "bq m-2": "Bq m**-2", + "bq m-3": "Bq m**-3", + "C": "degC", + "J kg-1": "J kg**-1", + "J kg-1 ": "J kg**-1", + "J/kg": "J kg**-1", + "m2 s-2": "m**2 s**-2", + "m2/s2": "m**2 s**-2", + " m2/s": "m**2 s**-1", + "W/kg": "W kg**-1", + "m2 s-3": "m**2 s**-3", + "radians": "rad", + "s-2": "s**-2", + "K s-1": "K s**-1", + "Deg C": "degC", + " kg kg**-1 s**-1": "kg kg**-1 s**-1", + "1/s": "s**-1", + "kg kg-1 s-1": "kg kg**-1 s**-1", + "kg/kg/s": "kg kg**-1 s**-1", + "s-1": "s**-1", + "K kg kg-1": "K kg kg**-1", + "K2": "K**2", + "N m-2": "N m**-2", + " N m-2": "N m**-2", + "N/m2": "N m**-2", + "kg/m2/h": "kg m**-2 hour**-2", + "mW/m2": "m W m**-2", + "1/km": "km**-1", + "mm s-1": "mm s**-1", + "m2 2-1": "m**2 s**-1", + "km2": "km**2", + "10-7 s-2": "10**-7 s**-2", + "0-1": "[0..1]", + "0 - 1": "[0..1]", + "0to1": "[0..1]", + "(0 to 1)": "[0..1]", + "(0-1)": "[0..1]", + "(-1 to 1)": "[-1..1]", + "-1 to 1": "[-1..1]", + "min": "minute", + "m3/s": "m**3 s**-1", + "m3 kg-1 s-1": "m**3 kg**-1 s**-1", + "m**2 s radian**-1": "m**2 s rad**-1", + "m2/s": "m**2 s**-1", + "m2 s-1": "m**2 s**-1", + "m2 s**-1": "m**2 s**-1", + "K m2 kg-1 s-1": "K m**2 kg**-1 s**-1", + "K*m2 / kg / s": "K m**2 kg**-1 s**-1", + "K*m2/kg/s": "K m**2 kg**-1 s**-1", + "m2 kg-1 s-1": "m**2 kg**-1 s**-1", + "kg m2": "kg m**2", + " m2": "m**2", + "m s-2": "m s-**2", + "m/s": "m s**-1", + "m s-1": "m s**-1", + " m/s": "m s**-1", + " m s-1": "m s**-1", + "Pa m**2 s**-3": "m**2 Pa s**-3", + "W m sr m-2": "W m sr m**-2", + "kgm-2": "kg m**-2", + "N m-2 ": "N m**-2", + "d": "day", + "W m-2": "W m**-2", + "W m-2 ": "W m**-2", + "W/m2": "W m**-2", + "W m-2 K-1": "W m**-2 K**-1", + " m": "m", + " 1/m": "m**-1", + "1/m": "m**-1", + "m-1": "m**-1", + "h": "hour", + "kg-1": "kg**-1", + "Bq kg-1": "Bq kg**-1", + "1/kg2/s": "kg**-2 s**-1", + "kg-2 s-1": "kg**-2 s**-1", + "J m-2": "J m**-2", + "kg s-2": "kg s**-2", + "K m-1": "K m**-1", + "K/m": "K m**-1", + "kg m-1": "kg m**-1", + "kg/m": "kg m**-1", + "N m-2 s": "N m**-2 s", + "Pa s-1": "Pa s**-1", + "Pa/s": "Pa s**-1", + "W/m3/sr": "W m**-3 sr**-1", + " 1/m/sr": "m**-1 sr**-1", + "1/m/sr": "m**-1 sr**-1", + "s m-1": "s m**-1", + "s/m": "s m**-1", + "m-2": "m**-2", + "kg m-2": "kg m**-2", + "kg/m2": "kg m**-2", + "kg m-2 s-1": "kg s**-1 m**-2", + "kg/m2/s": "kg s**-1 m**-2", + "m-2/s-2": "m**-2 s**2", + "s2 m-2": "m**-2 s**2", + "Bq s m-3": "Bq s m**-3", + "m-3": "m**-3", + "kg kg-1m-3": "kg kg**-1 m**-3", + "kg m-3": "kg m**-3", + "kg/m3": "kg m**-3", + "Bq m-3": "Bq m**-3", + "kg2 m-4": "kg**2 m**-4", + "m kg-1 s-1": "m kg**-1 s**-1", + "W/m/sr": "W m**-1 sr**-1", + "W m-1 s-1": "W m**-1 s**-1", + "klux": "klx", + "m s-**2": "m s**-2", + "W m-**3 sr**-1": "W m**-3 sr**-1", + "m**2s**-2": "m**2 s**-2", + "m2s-2": "m**2 s**-2", + "w m**-2": "W m**-2", + "w m-2": "W m**-2", + "m-2 s-1": "m**-2 s**-1", + "m-2s-1": "m**-2 s**-1", + "s**-1 m**-2": "m**-2 s**-1", + "s-1 m-2": "m**-2 s**-1", + "K2 m-2 s-1": "K**2 m**-2 s**-1", + "mol m-2 s-1": "mol m**-2 s**-1", + "m Pa s**-2": "Pa m s**-2", + "Pa s**-1 K": "K Pa s**-1", + "Km kg-1 s-1": "K m kg**-1 s**-1", + "hPa s-1": "hPa s**-1", + "(10**-6 g) m**-3": "ug m**-3", + "ug/m**3": "ug m**-3", + "kg m-1 s-2": "kg m**-1 s**-2", + "Bq m-2": "Bq m**-2", + # C = CO2, S = SOX + "kg C m**-2 s**-1": "kg m**-2 s**-1", + "mg S/m**2": "mg m**-2", +} + + +class P(defaultdict): + def __init__(self): + super().__init__(set) + + +class Q(defaultdict): + def __init__(self): + super().__init__(P) + + +def F(u): + return FIX.get(u, u) + + +def C(u): + x = cfunits.Units(u).formatted() + if x is None: + return "~~ /" + u + "/" + return x + + +U = defaultdict(Q) + +for root, _, files in os.walk("."): + for file in files: + full = os.path.join(root, file) + + if full.endswith(".table"): + with open(full) as f: + first = True + for line in f.readlines(): + line = line.strip() + if first: + if ( + line.strip() + != "# This file was automatically generated by ./param.pl" + ): + break + # print(full) + first = False + continue + # print(line) + m = RE.match(line) + if m: + units = m.group(3) + param = m.group(2).strip() + if param.endswith("("): + param = param[:-1] + units = "(" + units + units = F(units) + U[C(units)][units][param].add( + full.replace("./definitions/", "") + ) + + if full.endswith("units.def"): + with open(full) as f: + param = "?" + units = "?" + for line in f.readlines(): + line = line.strip() + if line.startswith("#") and "file generated" not in line: + param = line[1:] + + if line.endswith("= {"): + units = line[1:-5] + units = F(units) + U[C(units)][units][param].add( + full.replace("./definitions/", "") + ) + param = "?" + units = "?" + +for k, v in sorted(U.items()): + print(k) + for p, f in sorted(v.items()): + print(" [{}]".format(p)) + for a, b in sorted(f.items()): + # print(' [{}] {}'.format(a, ", ".join(sorted(b)))) # , list(f)) + print(" [{}]".format(a)) + + print() From 7a21a919bf3deb459d17ede7ad5492eaeeed3c77 Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Mon, 9 Nov 2020 17:29:03 +0000 Subject: [PATCH 128/683] units --- units.py | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/units.py b/units.py index e74b24a5a..42ce8b5da 100644 --- a/units.py +++ b/units.py @@ -94,7 +94,7 @@ FIX = { "m2 kg-1 s-1": "m**2 kg**-1 s**-1", "kg m2": "kg m**2", " m2": "m**2", - "m s-2": "m s-**2", + "m s-2": "m s**-2", "m/s": "m s**-1", "m s-1": "m s**-1", " m/s": "m s**-1", @@ -169,6 +169,25 @@ FIX = { "ug/m**3": "ug m**-3", "kg m-1 s-2": "kg m**-1 s**-2", "Bq m-2": "Bq m**-2", + "Degree": "degree", + "degrees": "degree", + "m2 2**-2": "m**2 s**-2", + "m**2/3 s**-1": "m**(2/3) s**-1", + "m2/3 s-1": "m**(2/3) s**-1", + "s-1 10-5": "10**-5 s**-1", + "W s m**-2": "W m**-2 s", + "mol m-2": "mol m**-2", + "Deg true": "degree_true", + "Deg. true": "degree_true", + "deg. true": "degree_true", + "Degree true": "degree_true", + "degree true": "degree_true", + "Gpm": "gpm", + "Degree E": "degree_east", + "deg E": "degree_east", + "deg N": "degree_north", + "deg": "degree", + "m s-**2": "m s**-2", # C = CO2, S = SOX "kg C m**-2 s**-1": "kg m**-2 s**-1", "mg S/m**2": "mg m**-2", From 06d5fbdf013ab3fb797878a2eb9ab04541c037d2 Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Mon, 9 Nov 2020 20:44:58 +0000 Subject: [PATCH 129/683] units --- units.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/units.py b/units.py index 42ce8b5da..6f6c5231c 100644 --- a/units.py +++ b/units.py @@ -205,7 +205,10 @@ class Q(defaultdict): def F(u): - return FIX.get(u, u) + u = FIX.get(u, u) + # if not "(" in u: + # u = " ".join(sorted(u.split(" "))) + return u def C(u): From 6682b880043035691f0df8442ffdd17d710a57a3 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Thu, 12 Nov 2020 16:28:01 +0000 Subject: [PATCH 130/683] adding OceanModelLevel as typeOfLevel --- definitions/grib2/typeOfLevelConcept.def | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/definitions/grib2/typeOfLevelConcept.def b/definitions/grib2/typeOfLevelConcept.def index 550fe2d1c..a81461235 100644 --- a/definitions/grib2/typeOfLevelConcept.def +++ b/definitions/grib2/typeOfLevelConcept.def @@ -39,7 +39,9 @@ 'generalVerticalLayer' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; typeOfSecondFixedSurface=150; NV=6;} 'depthBelowSea' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=255;} 'oceanSurface' = {typeOfFirstFixedSurface=160; scaleFactorOfFirstFixedSurface=0; scaledValueOfFirstFixedSurface=0; typeOfSecondFixedSurface=255;} -'oceanLayer' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=160;} +'oceanDepthLayer' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=160;} +'oceanModelLevel' = {typeOfFirstFixedSurface=168; typeOfSecondFixedSurface=255;} +'oceanModelLayer' = {typeOfFirstFixedSurface=168; typeOfSecondFixedSurface=168;} 'entireAtmosphere' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=8;} 'entireOcean' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=9;} 'snow' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=255;} From 7c34177e3561a0ca79991d8177ae74a1282e9ba4 Mon Sep 17 00:00:00 2001 From: Stephan Siemen Date: Fri, 13 Nov 2020 09:27:52 +0000 Subject: [PATCH 131/683] GitHub Action - add event eccodes-update --- .github/workflows/ecmwflibs.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/ecmwflibs.yml diff --git a/.github/workflows/ecmwflibs.yml b/.github/workflows/ecmwflibs.yml new file mode 100644 index 000000000..b4b65b37d --- /dev/null +++ b/.github/workflows/ecmwflibs.yml @@ -0,0 +1,16 @@ +name: Notify ecmwflibs + +on: + push: + branches: [ master ] + +jobs: + notify: + runs-on: ubuntu-latest + steps: + - uses: mvasigh/dispatch-action@main + with: + token: ${{ secrets.NOTIFY_ECMWFLIBS }} + repo: ecmwflibs + owner: ecmwf + event_type: eccodes-updated \ No newline at end of file From 2b66b4a8f320127c35b9dc7343450b3de9f01265 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Fri, 13 Nov 2020 10:43:32 +0000 Subject: [PATCH 132/683] label properly typeOfLevel for ocean. --- definitions/grib2/tables/24/4.5.table | 28 +++++++++++++++++---------- definitions/grib2/tables/25/4.5.table | 8 ++++---- 2 files changed, 22 insertions(+), 14 deletions(-) diff --git a/definitions/grib2/tables/24/4.5.table b/definitions/grib2/tables/24/4.5.table index 97795d3cc..a50c4065c 100644 --- a/definitions/grib2/tables/24/4.5.table +++ b/definitions/grib2/tables/24/4.5.table @@ -13,9 +13,9 @@ 11 11 Cumulonimbus (CB) base (m) 12 12 Cumulonimbus (CB) top (m) 13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) -14 14 Level of free convection (LFC) -15 15 Convective condensation level (CCL) -16 16 Level of neutral buoyancy or equilibrium level (LNB) +14 14 Level of free convection (LFC) (-) +15 15 Convective condensation level (CCL) (-) +16 16 Level of neutral buoyancy or equilibrium level (LNB) (-) # 17-19 Reserved 20 20 Isothermal level (K) 21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) @@ -23,7 +23,14 @@ 23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) 24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) 25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) -# 26-99 Reserved +# 26-29 Reserved +30 30 Specified radius from the center of the Sun (m) +31 31 Solar photosphere +32 32 Ionospheric D-region level +33 33 Ionospheric E-region level +34 34 Ionospheric F1-region level +35 35 Ionospheric F2-region level +# 36-99 Reserved 100 pl Isobaric surface (Pa) 101 sfc Mean sea level 102 102 Specific altitude above mean sea level (m) @@ -38,7 +45,7 @@ 111 111 Eta level (-) 112 112 Reserved 113 113 Logarithmic hybrid level -114 114 Snow level (Numeric) +114 sol Snow level (Numeric) 115 115 Sigma height level # 116 Reserved 117 117 Mixed layer depth (m) @@ -47,8 +54,9 @@ # 120-149 Reserved 150 150 Generalized vertical height coordinate 151 sol Soil level (Numeric) -# 152-159 Reserved -160 160 Depth below sea level (m) +152 sol Sea ice level (Numeric) +# 153-159 Reserved +160 o2d Depth below sea level (m) 161 161 Depth below water surface (m) 162 162 Lake or river bottom (-) 163 163 Bottom of sediment layer (-) @@ -56,9 +64,9 @@ 165 165 Bottom of sediment layer penetrated by thermal wave (-) 166 166 Mixing layer (-) 167 167 Bottom of root zone (-) -168 168 Ocean model level (Numeric) -169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) -170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) +168 o3d Ocean model level (Numeric) +169 o2d Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) +170 o2d Ocean level defined by water potential temperature difference from near-surface to level (K) # 171-173 Reserved 174 174 Top surface of ice on sea, lake or river 175 175 Top surface of ice, under snow cover, on sea, lake or river diff --git a/definitions/grib2/tables/25/4.5.table b/definitions/grib2/tables/25/4.5.table index bf8473c40..a50c4065c 100644 --- a/definitions/grib2/tables/25/4.5.table +++ b/definitions/grib2/tables/25/4.5.table @@ -56,7 +56,7 @@ 151 sol Soil level (Numeric) 152 sol Sea ice level (Numeric) # 153-159 Reserved -160 160 Depth below sea level (m) +160 o2d Depth below sea level (m) 161 161 Depth below water surface (m) 162 162 Lake or river bottom (-) 163 163 Bottom of sediment layer (-) @@ -64,9 +64,9 @@ 165 165 Bottom of sediment layer penetrated by thermal wave (-) 166 166 Mixing layer (-) 167 167 Bottom of root zone (-) -168 168 Ocean model level (Numeric) -169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) -170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) +168 o3d Ocean model level (Numeric) +169 o2d Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) +170 o2d Ocean level defined by water potential temperature difference from near-surface to level (K) # 171-173 Reserved 174 174 Top surface of ice on sea, lake or river 175 175 Top surface of ice, under snow cover, on sea, lake or river From aa1fcda7b37ddf341fef791e86522744bfbdbb58 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 13 Nov 2020 14:03:18 +0000 Subject: [PATCH 133/683] Add missing newline at EOF --- .github/workflows/ecmwflibs.yml | 2 +- units.py => definitions/units.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename units.py => definitions/units.py (100%) diff --git a/.github/workflows/ecmwflibs.yml b/.github/workflows/ecmwflibs.yml index b4b65b37d..d5429eb2d 100644 --- a/.github/workflows/ecmwflibs.yml +++ b/.github/workflows/ecmwflibs.yml @@ -13,4 +13,4 @@ jobs: token: ${{ secrets.NOTIFY_ECMWFLIBS }} repo: ecmwflibs owner: ecmwf - event_type: eccodes-updated \ No newline at end of file + event_type: eccodes-updated diff --git a/units.py b/definitions/units.py similarity index 100% rename from units.py rename to definitions/units.py From e6be1103c7c76f682b78d682552a5b7621e33bdf Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 15 Nov 2020 18:56:45 +0000 Subject: [PATCH 134/683] Definitions: cleanup of cfNames (Related to ECC-1163) --- definitions/grib1/cfName.def | 212 ++---- .../grib1/localConcepts/ecmf/cfName.def | 707 +++++++++++++++--- definitions/grib2/cfName.def | 418 +++++------ .../grib2/localConcepts/ecmf/cfName.def | 124 +-- 4 files changed, 893 insertions(+), 568 deletions(-) diff --git a/definitions/grib1/cfName.def b/definitions/grib1/cfName.def index da6b8634c..069912892 100644 --- a/definitions/grib1/cfName.def +++ b/definitions/grib1/cfName.def @@ -1,310 +1,244 @@ -# Automatically generated by ./create_param.pl, do not edit +# Automatically generated by create_def.CLEAN.pl, do not edit #Geopotential 'geopotential' = { - indicatorOfParameter = 6 ; table2Version = 3 ; + indicatorOfParameter = 6 ; } #Temperature 'air_temperature' = { + table2Version = 3 ; indicatorOfParameter = 11 ; - table2Version = 3 ; } -#u-component of wind +#U component of wind 'eastward_wind' = { + table2Version = 3 ; indicatorOfParameter = 33 ; - table2Version = 3 ; } -#v-component of wind +#V component of wind 'northward_wind' = { - indicatorOfParameter = 34 ; table2Version = 3 ; + indicatorOfParameter = 34 ; } #Specific humidity 'specific_humidity' = { - indicatorOfParameter = 51 ; table2Version = 3 ; + indicatorOfParameter = 51 ; } #Surface pressure 'surface_air_pressure' = { - indicatorOfParameter = 1 ; table2Version = 3 ; + indicatorOfParameter = 1 ; indicatorOfTypeOfLevel = 1 ; } -#Vertical velocity (geometric) +#Vertical velocity 'lagrangian_tendency_of_air_pressure' = { - indicatorOfParameter = 40 ; table2Version = 3 ; + indicatorOfParameter = 39 ; } -#Relative vorticity +#Vorticity (relative) 'atmosphere_relative_vorticity' = { + table2Version = 3 ; indicatorOfParameter = 43 ; - table2Version = 3 ; - } -#Boundary layer dissipation -'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { - indicatorOfParameter = 123 ; - table2Version = 3 ; - } -#Surface sensible heat flux -'surface_upward_sensible_heat_flux' = { - indicatorOfParameter = 122 ; - table2Version = 3 ; - } -#Surface latent heat flux -'surface_upward_latent_heat_flux' = { - indicatorOfParameter = 121 ; - table2Version = 3 ; } #Mean sea level pressure 'air_pressure_at_mean_sea_level' = { + table2Version = 3 ; indicatorOfParameter = 2 ; - table2Version = 3 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; } -#Relative divergence +#Divergence 'divergence_of_wind' = { + table2Version = 3 ; indicatorOfParameter = 44 ; - table2Version = 3 ; } -#Geopotential height +#Geopotential Height 'geopotential_height' = { - indicatorOfParameter = 7 ; table2Version = 3 ; + indicatorOfParameter = 7 ; } #Relative humidity 'relative_humidity' = { - indicatorOfParameter = 52 ; table2Version = 3 ; + indicatorOfParameter = 52 ; } #Land-sea mask 'land_binary_mask' = { - indicatorOfParameter = 81 ; table2Version = 3 ; + indicatorOfParameter = 81 ; } #Surface roughness 'surface_roughness_length' = { + table2Version = 3 ; indicatorOfParameter = 83 ; - table2Version = 3 ; - } -#Albedo -'surface_albedo' = { - indicatorOfParameter = 84 ; - table2Version = 3 ; } #Evaporation 'lwe_thickness_of_water_evaporation_amount' = { + table2Version = 3 ; indicatorOfParameter = 57 ; - table2Version = 3 ; } -#Convective cloud cover -'convective_cloud_area_fraction' = { - indicatorOfParameter = 72 ; +#Boundary layer dissipation +'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { table2Version = 3 ; + indicatorOfParameter = 123 ; } #Geopotential 'geopotential' = { - indicatorOfParameter = 6 ; table2Version = 2 ; + indicatorOfParameter = 6 ; } #Temperature 'air_temperature' = { + table2Version = 2 ; indicatorOfParameter = 11 ; - table2Version = 2 ; } -#u-component of wind +#U component of wind 'eastward_wind' = { + table2Version = 2 ; indicatorOfParameter = 33 ; - table2Version = 2 ; } -#v-component of wind +#V component of wind 'northward_wind' = { - indicatorOfParameter = 34 ; table2Version = 2 ; + indicatorOfParameter = 34 ; } #Specific humidity 'specific_humidity' = { - indicatorOfParameter = 51 ; table2Version = 2 ; + indicatorOfParameter = 51 ; } #Surface pressure 'surface_air_pressure' = { - indicatorOfParameter = 1 ; table2Version = 2 ; + indicatorOfParameter = 1 ; indicatorOfTypeOfLevel = 1 ; } -#Vertical velocity (geometric) +#Vertical velocity 'lagrangian_tendency_of_air_pressure' = { - indicatorOfParameter = 40 ; table2Version = 2 ; + indicatorOfParameter = 39 ; } -#Relative vorticity +#Vorticity (relative) 'atmosphere_relative_vorticity' = { + table2Version = 2 ; indicatorOfParameter = 43 ; - table2Version = 2 ; - } -#Boundary layer dissipation -'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { - indicatorOfParameter = 123 ; - table2Version = 2 ; - } -#Surface sensible heat flux -'surface_upward_sensible_heat_flux' = { - indicatorOfParameter = 122 ; - table2Version = 2 ; - } -#Surface latent heat flux -'surface_upward_latent_heat_flux' = { - indicatorOfParameter = 121 ; - table2Version = 2 ; } #Mean sea level pressure 'air_pressure_at_mean_sea_level' = { + table2Version = 2 ; indicatorOfParameter = 2 ; - table2Version = 2 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; } -#Relative divergence +#Divergence 'divergence_of_wind' = { + table2Version = 2 ; indicatorOfParameter = 44 ; - table2Version = 2 ; } -#Geopotential height +#Geopotential Height 'geopotential_height' = { - indicatorOfParameter = 7 ; table2Version = 2 ; + indicatorOfParameter = 7 ; } #Relative humidity 'relative_humidity' = { - indicatorOfParameter = 52 ; table2Version = 2 ; + indicatorOfParameter = 52 ; } #Land-sea mask 'land_binary_mask' = { - indicatorOfParameter = 81 ; table2Version = 2 ; + indicatorOfParameter = 81 ; } #Surface roughness 'surface_roughness_length' = { + table2Version = 2 ; indicatorOfParameter = 83 ; - table2Version = 2 ; - } -#Albedo -'surface_albedo' = { - indicatorOfParameter = 84 ; - table2Version = 2 ; } #Evaporation 'lwe_thickness_of_water_evaporation_amount' = { + table2Version = 2 ; indicatorOfParameter = 57 ; - table2Version = 2 ; } -#Convective cloud cover -'convective_cloud_area_fraction' = { - indicatorOfParameter = 72 ; +#Boundary layer dissipation +'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { table2Version = 2 ; + indicatorOfParameter = 123 ; } #Geopotential 'geopotential' = { - indicatorOfParameter = 6 ; table2Version = 1 ; + indicatorOfParameter = 6 ; } #Temperature 'air_temperature' = { + table2Version = 1 ; indicatorOfParameter = 11 ; - table2Version = 1 ; } -#u-component of wind +#U component of wind 'eastward_wind' = { + table2Version = 1 ; indicatorOfParameter = 33 ; - table2Version = 1 ; } -#v-component of wind +#V component of wind 'northward_wind' = { - indicatorOfParameter = 34 ; table2Version = 1 ; + indicatorOfParameter = 34 ; } #Specific humidity 'specific_humidity' = { - indicatorOfParameter = 51 ; table2Version = 1 ; + indicatorOfParameter = 51 ; } #Surface pressure 'surface_air_pressure' = { - indicatorOfParameter = 1 ; table2Version = 1 ; + indicatorOfParameter = 1 ; indicatorOfTypeOfLevel = 1 ; } -#Vertical velocity (geometric) +#Vertical velocity 'lagrangian_tendency_of_air_pressure' = { - indicatorOfParameter = 40 ; table2Version = 1 ; + indicatorOfParameter = 39 ; } -#Relative vorticity +#Vorticity (relative) 'atmosphere_relative_vorticity' = { + table2Version = 1 ; indicatorOfParameter = 43 ; - table2Version = 1 ; - } -#Boundary layer dissipation -'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { - indicatorOfParameter = 123 ; - table2Version = 1 ; - } -#Surface sensible heat flux -'surface_upward_sensible_heat_flux' = { - indicatorOfParameter = 122 ; - table2Version = 1 ; - } -#Surface latent heat flux -'surface_upward_latent_heat_flux' = { - indicatorOfParameter = 121 ; - table2Version = 1 ; } #Mean sea level pressure 'air_pressure_at_mean_sea_level' = { + table2Version = 1 ; indicatorOfParameter = 2 ; - table2Version = 1 ; - indicatorOfTypeOfLevel = 1 ; - level = 0 ; } -#Relative divergence +#Divergence 'divergence_of_wind' = { + table2Version = 1 ; indicatorOfParameter = 44 ; - table2Version = 1 ; } -#Geopotential height +#Geopotential Height 'geopotential_height' = { - indicatorOfParameter = 7 ; table2Version = 1 ; + indicatorOfParameter = 7 ; } #Relative humidity 'relative_humidity' = { - indicatorOfParameter = 52 ; table2Version = 1 ; + indicatorOfParameter = 52 ; } #Land-sea mask 'land_binary_mask' = { - indicatorOfParameter = 81 ; table2Version = 1 ; + indicatorOfParameter = 81 ; } #Surface roughness 'surface_roughness_length' = { + table2Version = 1 ; indicatorOfParameter = 83 ; - table2Version = 1 ; - } -#Albedo -'surface_albedo' = { - indicatorOfParameter = 84 ; - table2Version = 1 ; } #Evaporation 'lwe_thickness_of_water_evaporation_amount' = { + table2Version = 1 ; indicatorOfParameter = 57 ; - table2Version = 1 ; } -#Convective cloud cover -'convective_cloud_area_fraction' = { - indicatorOfParameter = 72 ; +#Boundary layer dissipation +'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { table2Version = 1 ; + indicatorOfParameter = 123 ; } diff --git a/definitions/grib1/localConcepts/ecmf/cfName.def b/definitions/grib1/localConcepts/ecmf/cfName.def index 7569b066c..47e311e40 100644 --- a/definitions/grib1/localConcepts/ecmf/cfName.def +++ b/definitions/grib1/localConcepts/ecmf/cfName.def @@ -1,266 +1,731 @@ -# Automatically generated by ./create_param.pl, do not edit +# Automatically generated by create_def.CLEAN.pl, do not edit +#Sea ice area fraction +'sea_ice_area_fraction' = { + table2Version = 128 ; + indicatorOfParameter = 31 ; + } #Geopotential 'geopotential' = { - indicatorOfParameter = 129 ; table2Version = 128 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'geopotential' = { + table2Version = 160 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'geopotential' = { + table2Version = 170 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'geopotential' = { + table2Version = 180 ; + indicatorOfParameter = 129 ; + } +#Geopotential +'geopotential' = { + table2Version = 190 ; + indicatorOfParameter = 129 ; } #Temperature 'air_temperature' = { + table2Version = 128 ; indicatorOfParameter = 130 ; - table2Version = 128 ; } -#u-component of wind +#Temperature +'air_temperature' = { + table2Version = 160 ; + indicatorOfParameter = 130 ; + } +#Temperature +'air_temperature' = { + table2Version = 170 ; + indicatorOfParameter = 130 ; + } +#Temperature +'air_temperature' = { + table2Version = 180 ; + indicatorOfParameter = 130 ; + } +#Temperature +'air_temperature' = { + table2Version = 190 ; + indicatorOfParameter = 130 ; + } +#U component of wind 'eastward_wind' = { + table2Version = 128 ; indicatorOfParameter = 131 ; - table2Version = 128 ; } -#v-component of wind +#U component of wind +'eastward_wind' = { + table2Version = 160 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'eastward_wind' = { + table2Version = 170 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'eastward_wind' = { + table2Version = 180 ; + indicatorOfParameter = 131 ; + } +#U component of wind +'eastward_wind' = { + table2Version = 190 ; + indicatorOfParameter = 131 ; + } +#V component of wind 'northward_wind' = { - indicatorOfParameter = 132 ; table2Version = 128 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'northward_wind' = { + table2Version = 160 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'northward_wind' = { + table2Version = 170 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'northward_wind' = { + table2Version = 180 ; + indicatorOfParameter = 132 ; + } +#V component of wind +'northward_wind' = { + table2Version = 190 ; + indicatorOfParameter = 132 ; } #Specific humidity 'specific_humidity' = { - indicatorOfParameter = 133 ; table2Version = 128 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'specific_humidity' = { + table2Version = 160 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'specific_humidity' = { + table2Version = 170 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'specific_humidity' = { + table2Version = 180 ; + indicatorOfParameter = 133 ; + } +#Specific humidity +'specific_humidity' = { + table2Version = 190 ; + indicatorOfParameter = 133 ; } #Surface pressure 'surface_air_pressure' = { + table2Version = 128 ; indicatorOfParameter = 134 ; - table2Version = 128 ; } -#Vertical velocity (geometric) +#Surface pressure +'surface_air_pressure' = { + table2Version = 160 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'surface_air_pressure' = { + table2Version = 162 ; + indicatorOfParameter = 52 ; + } +#Surface pressure +'surface_air_pressure' = { + table2Version = 180 ; + indicatorOfParameter = 134 ; + } +#Surface pressure +'surface_air_pressure' = { + table2Version = 190 ; + indicatorOfParameter = 134 ; + } +#Vertical velocity 'lagrangian_tendency_of_air_pressure' = { - indicatorOfParameter = 135 ; table2Version = 128 ; + indicatorOfParameter = 135 ; + } +#Vertical velocity +'lagrangian_tendency_of_air_pressure' = { + table2Version = 170 ; + indicatorOfParameter = 135 ; } #Total column water vapour -'lwe_thickness_of_atmosphere_mass_content_of_water_vapor' = { +'lwe_thickness_of_atmosphere_water_vapor_content' = { + table2Version = 128 ; indicatorOfParameter = 137 ; - table2Version = 128 ; } -#Relative vorticity +#Total column water vapour +'lwe_thickness_of_atmosphere_water_vapor_content' = { + table2Version = 180 ; + indicatorOfParameter = 137 ; + } +#Vorticity (relative) 'atmosphere_relative_vorticity' = { - indicatorOfParameter = 138 ; table2Version = 128 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'atmosphere_relative_vorticity' = { + table2Version = 160 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'atmosphere_relative_vorticity' = { + table2Version = 170 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'atmosphere_relative_vorticity' = { + table2Version = 180 ; + indicatorOfParameter = 138 ; + } +#Vorticity (relative) +'atmosphere_relative_vorticity' = { + table2Version = 190 ; + indicatorOfParameter = 138 ; } #Soil temperature level 1 'surface_temperature' = { - indicatorOfParameter = 139 ; table2Version = 128 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'surface_temperature' = { + table2Version = 160 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'surface_temperature' = { + table2Version = 170 ; + indicatorOfParameter = 139 ; + } +#Soil temperature level 1 +'surface_temperature' = { + table2Version = 190 ; + indicatorOfParameter = 139 ; } #Soil wetness level 1 'lwe_thickness_of_soil_moisture_content' = { - indicatorOfParameter = 140 ; table2Version = 128 ; + indicatorOfParameter = 140 ; + } +#Soil wetness level 1 +'lwe_thickness_of_soil_moisture_content' = { + table2Version = 170 ; + indicatorOfParameter = 140 ; } #Snow depth 'lwe_thickness_of_surface_snow_amount' = { + table2Version = 128 ; indicatorOfParameter = 141 ; - table2Version = 128 ; } -#Stratiform precipitation (Large-scale precipitation) -'lwe_thickness_of_stratiform_precipitation_amount' = { - indicatorOfParameter = 142 ; +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + table2Version = 170 ; + indicatorOfParameter = 141 ; + } +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + table2Version = 180 ; + indicatorOfParameter = 141 ; + } +#Large-scale precipitation +'lwe_thickness_of_large_scale_precipitation_amount' = { table2Version = 128 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'lwe_thickness_of_large_scale_precipitation_amount' = { + table2Version = 170 ; + indicatorOfParameter = 142 ; + } +#Large-scale precipitation +'lwe_thickness_of_large_scale_precipitation_amount' = { + table2Version = 180 ; + indicatorOfParameter = 142 ; } #Convective precipitation 'lwe_thickness_of_convective_precipitation_amount' = { - indicatorOfParameter = 143 ; table2Version = 128 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'lwe_thickness_of_convective_precipitation_amount' = { + table2Version = 170 ; + indicatorOfParameter = 143 ; + } +#Convective precipitation +'lwe_thickness_of_convective_precipitation_amount' = { + table2Version = 180 ; + indicatorOfParameter = 143 ; } #Snowfall 'lwe_thickness_of_snowfall_amount' = { - indicatorOfParameter = 144 ; table2Version = 128 ; + indicatorOfParameter = 144 ; + } +#Snowfall +'lwe_thickness_of_snowfall_amount' = { + table2Version = 180 ; + indicatorOfParameter = 144 ; } #Boundary layer dissipation -'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { - indicatorOfParameter = 145 ; +'dissipation_in_atmosphere_boundary_layer' = { table2Version = 128 ; + indicatorOfParameter = 145 ; + } +#Boundary layer dissipation +'dissipation_in_atmosphere_boundary_layer' = { + table2Version = 160 ; + indicatorOfParameter = 145 ; } #Surface sensible heat flux 'surface_upward_sensible_heat_flux' = { - indicatorOfParameter = 146 ; table2Version = 128 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'surface_upward_sensible_heat_flux' = { + table2Version = 160 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'surface_upward_sensible_heat_flux' = { + table2Version = 170 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'surface_upward_sensible_heat_flux' = { + table2Version = 180 ; + indicatorOfParameter = 146 ; + } +#Surface sensible heat flux +'surface_upward_sensible_heat_flux' = { + table2Version = 190 ; + indicatorOfParameter = 146 ; } #Surface latent heat flux 'surface_upward_latent_heat_flux' = { - indicatorOfParameter = 147 ; table2Version = 128 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'surface_upward_latent_heat_flux' = { + table2Version = 160 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'surface_upward_latent_heat_flux' = { + table2Version = 170 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'surface_upward_latent_heat_flux' = { + table2Version = 180 ; + indicatorOfParameter = 147 ; + } +#Surface latent heat flux +'surface_upward_latent_heat_flux' = { + table2Version = 190 ; + indicatorOfParameter = 147 ; } #Mean sea level pressure 'air_pressure_at_mean_sea_level' = { + table2Version = 128 ; indicatorOfParameter = 151 ; - table2Version = 128 ; } -#Relative divergence +#Mean sea level pressure +'air_pressure_at_mean_sea_level' = { + table2Version = 160 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'air_pressure_at_mean_sea_level' = { + table2Version = 170 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'air_pressure_at_mean_sea_level' = { + table2Version = 180 ; + indicatorOfParameter = 151 ; + } +#Mean sea level pressure +'air_pressure_at_mean_sea_level' = { + table2Version = 190 ; + indicatorOfParameter = 151 ; + } +#Divergence 'divergence_of_wind' = { + table2Version = 128 ; indicatorOfParameter = 155 ; - table2Version = 128 ; } -#Geopotential height +#Divergence +'divergence_of_wind' = { + table2Version = 160 ; + indicatorOfParameter = 155 ; + } +#Divergence +'divergence_of_wind' = { + table2Version = 170 ; + indicatorOfParameter = 155 ; + } +#Divergence +'divergence_of_wind' = { + table2Version = 180 ; + indicatorOfParameter = 155 ; + } +#Divergence +'divergence_of_wind' = { + table2Version = 190 ; + indicatorOfParameter = 155 ; + } +#Geopotential Height 'geopotential_height' = { - indicatorOfParameter = 156 ; table2Version = 128 ; + indicatorOfParameter = 156 ; } #Relative humidity 'relative_humidity' = { - indicatorOfParameter = 157 ; table2Version = 128 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'relative_humidity' = { + table2Version = 170 ; + indicatorOfParameter = 157 ; + } +#Relative humidity +'relative_humidity' = { + table2Version = 190 ; + indicatorOfParameter = 157 ; } #Tendency of surface pressure 'tendency_of_surface_air_pressure' = { - indicatorOfParameter = 158 ; table2Version = 128 ; + indicatorOfParameter = 158 ; + } +#Tendency of surface pressure +'tendency_of_surface_air_pressure' = { + table2Version = 160 ; + indicatorOfParameter = 158 ; } #Total cloud cover 'cloud_area_fraction' = { - indicatorOfParameter = 164 ; table2Version = 128 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'cloud_area_fraction' = { + table2Version = 160 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'cloud_area_fraction' = { + table2Version = 170 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'cloud_area_fraction' = { + table2Version = 180 ; + indicatorOfParameter = 164 ; + } +#Total cloud cover +'cloud_area_fraction' = { + table2Version = 190 ; + indicatorOfParameter = 164 ; } #Surface solar radiation downwards 'surface_downwelling_shortwave_flux_in_air' = { - indicatorOfParameter = 169 ; table2Version = 128 ; + indicatorOfParameter = 169 ; + } +#Surface solar radiation downwards +'surface_downwelling_shortwave_flux_in_air' = { + table2Version = 190 ; + indicatorOfParameter = 169 ; } #Land-sea mask 'land_binary_mask' = { - indicatorOfParameter = 172 ; table2Version = 128 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'land_binary_mask' = { + table2Version = 160 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'land_binary_mask' = { + table2Version = 171 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'land_binary_mask' = { + table2Version = 174 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'land_binary_mask' = { + table2Version = 175 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'land_binary_mask' = { + table2Version = 180 ; + indicatorOfParameter = 172 ; + } +#Land-sea mask +'land_binary_mask' = { + table2Version = 190 ; + indicatorOfParameter = 172 ; } #Surface roughness 'surface_roughness_length' = { - indicatorOfParameter = 173 ; table2Version = 128 ; + indicatorOfParameter = 173 ; + } +#Surface roughness +'surface_roughness_length' = { + table2Version = 160 ; + indicatorOfParameter = 173 ; } #Albedo 'surface_albedo' = { - indicatorOfParameter = 174 ; table2Version = 128 ; + indicatorOfParameter = 174 ; + } +#Albedo +'surface_albedo' = { + table2Version = 160 ; + indicatorOfParameter = 174 ; + } +#Albedo +'surface_albedo' = { + table2Version = 190 ; + indicatorOfParameter = 174 ; } #Surface net solar radiation 'surface_net_downward_shortwave_flux' = { - indicatorOfParameter = 176 ; table2Version = 128 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'surface_net_downward_shortwave_flux' = { + table2Version = 160 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'surface_net_downward_shortwave_flux' = { + table2Version = 170 ; + indicatorOfParameter = 176 ; + } +#Surface net solar radiation +'surface_net_downward_shortwave_flux' = { + table2Version = 190 ; + indicatorOfParameter = 176 ; } #Surface net thermal radiation 'surface_net_upward_longwave_flux' = { + table2Version = 128 ; indicatorOfParameter = 177 ; - table2Version = 128 ; } -#Top solar radiation +#Surface net thermal radiation +'surface_net_upward_longwave_flux' = { + table2Version = 160 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'surface_net_upward_longwave_flux' = { + table2Version = 170 ; + indicatorOfParameter = 177 ; + } +#Surface net thermal radiation +'surface_net_upward_longwave_flux' = { + table2Version = 190 ; + indicatorOfParameter = 177 ; + } +#Top net solar radiation 'toa_net_upward_shortwave_flux' = { + table2Version = 128 ; indicatorOfParameter = 178 ; - table2Version = 128 ; } -#Top thermal radiation +#Top net solar radiation +'toa_net_upward_shortwave_flux' = { + table2Version = 160 ; + indicatorOfParameter = 178 ; + } +#Top net solar radiation +'toa_net_upward_shortwave_flux' = { + table2Version = 190 ; + indicatorOfParameter = 178 ; + } +#Top net thermal radiation 'toa_outgoing_longwave_flux' = { + table2Version = 128 ; indicatorOfParameter = 179 ; - table2Version = 128 ; } -#East-West surface stress +#Top net thermal radiation +'toa_outgoing_longwave_flux' = { + table2Version = 160 ; + indicatorOfParameter = 179 ; + } +#Top net thermal radiation +'toa_outgoing_longwave_flux' = { + table2Version = 190 ; + indicatorOfParameter = 179 ; + } +#Eastward turbulent surface stress 'surface_downward_eastward_stress' = { + table2Version = 128 ; indicatorOfParameter = 180 ; - table2Version = 128 ; } -#North-South surface stress +#Eastward turbulent surface stress +'surface_downward_eastward_stress' = { + table2Version = 170 ; + indicatorOfParameter = 180 ; + } +#Eastward turbulent surface stress +'surface_downward_eastward_stress' = { + table2Version = 180 ; + indicatorOfParameter = 180 ; + } +#Northward turbulent surface stress 'surface_downward_northward_stress' = { - indicatorOfParameter = 181 ; table2Version = 128 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'surface_downward_northward_stress' = { + table2Version = 170 ; + indicatorOfParameter = 181 ; + } +#Northward turbulent surface stress +'surface_downward_northward_stress' = { + table2Version = 180 ; + indicatorOfParameter = 181 ; } #Evaporation 'lwe_thickness_of_water_evaporation_amount' = { - indicatorOfParameter = 182 ; table2Version = 128 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'lwe_thickness_of_water_evaporation_amount' = { + table2Version = 170 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'lwe_thickness_of_water_evaporation_amount' = { + table2Version = 180 ; + indicatorOfParameter = 182 ; + } +#Evaporation +'lwe_thickness_of_water_evaporation_amount' = { + table2Version = 190 ; + indicatorOfParameter = 182 ; } #Convective cloud cover 'convective_cloud_area_fraction' = { - indicatorOfParameter = 185 ; table2Version = 128 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'convective_cloud_area_fraction' = { + table2Version = 160 ; + indicatorOfParameter = 185 ; + } +#Convective cloud cover +'convective_cloud_area_fraction' = { + table2Version = 170 ; + indicatorOfParameter = 185 ; } #Surface net solar radiation, clear sky 'surface_net_downward_shortwave_flux_assuming_clear_sky' = { - indicatorOfParameter = 210 ; table2Version = 128 ; + indicatorOfParameter = 210 ; } #Surface net thermal radiation, clear sky 'surface_net_downward_longwave_flux_assuming_clear_sky' = { - indicatorOfParameter = 211 ; table2Version = 128 ; + indicatorOfParameter = 211 ; } #Temperature of snow layer -'temperature_in_surface_snow' = { - indicatorOfParameter = 238 ; +'snow_temperature' = { table2Version = 128 ; -} + indicatorOfParameter = 238 ; + } +#Temperature of snow layer +'snow_temperature' = { + table2Version = 160 ; + indicatorOfParameter = 238 ; + } +#Sea ice snow thickness +'surface_snow_thickness' = { + table2Version = 174 ; + indicatorOfParameter = 97 ; + } +#Sea water potential temperature +'sea_water_potential_temperature' = { + table2Version = 151 ; + indicatorOfParameter = 129 ; + } +#Sea water practical salinity +'sea_water_practical_salinity' = { + table2Version = 151 ; + indicatorOfParameter = 130 ; + } +#Eastward sea water velocity +'eastward_sea_water_velocity' = { + table2Version = 151 ; + indicatorOfParameter = 131 ; + } +#Northward sea water velocity +'northward_sea_water_velocity' = { + table2Version = 151 ; + indicatorOfParameter = 132 ; + } +#Upward sea water velocity +'upward_sea_water_velocity' = { + table2Version = 151 ; + indicatorOfParameter = 133 ; + } +#Sea water sigma theta +'sea_water_sigma_theta' = { + table2Version = 151 ; + indicatorOfParameter = 138 ; + } +#Sea surface height +'sea_surface_height_above_geoid' = { + table2Version = 151 ; + indicatorOfParameter = 145 ; + } +#Ocean barotropic stream function +'ocean_barotropic_streamfunction' = { + table2Version = 151 ; + indicatorOfParameter = 147 ; + } +#Depth of 20C isotherm +'depth_of_isosurface_of_sea_water_potential_temperature' = { + table2Version = 151 ; + indicatorOfParameter = 163 ; + } #Sea-ice thickness 'sea_ice_thickness' = { table2Version = 174 ; indicatorOfParameter = 98 ; } -#Sea ice area fraction -'sea_ice_area_fraction' = { - table2Version = 128 ; - indicatorOfParameter = 31 ; -} -#Sea ice snow thickness -'surface_snow_thickness' = { - table2Version = 174 ; - indicatorOfParameter = 97 ; -} -#Depth of 20C isotherm -'depth_of_isosurface_of_sea_water_potential_temperature' = { - table2Version = 151 ; - indicatorOfParameter = 163 ; -} -#Ocean barotropic stream function -'ocean_barotropic_streamfunction' = { - table2Version = 151 ; - indicatorOfParameter = 147 ; -} -#Surface downward northward stress -'surface_downward_northward_stress' = { - table2Version = 151 ; - indicatorOfParameter = 154 ; -} -#Surface downward eastward stress -'surface_downward_eastward_stress' = { - table2Version = 151 ; - indicatorOfParameter = 153 ; -} -#Sea surface height -'sea_surface_height_above_geoid' = { - table2Version = 151 ; - indicatorOfParameter = 145 ; -} -#Sea water practical salinity -'sea_water_practical_salinity' = { - table2Version = 151 ; - indicatorOfParameter = 130 ; -} -#Sea water potential temperature -'sea_water_potential_temperature' = { - table2Version = 151 ; - indicatorOfParameter = 129 ; -} -#Sea water sigma theta -'sea_water_sigma_theta' = { - table2Version = 151 ; - indicatorOfParameter = 138 ; -} -#Northward sea water velocity -'northward_sea_water_velocity' = { - table2Version = 151 ; - indicatorOfParameter = 132 ; -} -#Eastward sea water velocity -'eastward_sea_water_velocity' = { - table2Version = 151 ; - indicatorOfParameter = 131 ; -} -#Upward sea water velocity -'upward_sea_water_velocity' = { - table2Version = 151 ; - indicatorOfParameter = 133 ; -} diff --git a/definitions/grib2/cfName.def b/definitions/grib2/cfName.def index baa301453..af7fc7a79 100644 --- a/definitions/grib2/cfName.def +++ b/definitions/grib2/cfName.def @@ -1,191 +1,54 @@ -# Automatically generated by ./create_param.pl, do not edit -#Geopotential -'geopotential' = { - discipline = 0 ; - parameterNumber = 4 ; - parameterCategory = 3 ; -} -#Temperature -'air_temperature' = { - discipline = 0 ; - parameterNumber = 0 ; - parameterCategory = 0 ; -} -#u-component of wind -'eastward_wind' = { - discipline = 0 ; - parameterNumber = 2 ; - parameterCategory = 2 ; -} -#v-component of wind -'northward_wind' = { - discipline = 0 ; - parameterNumber = 3 ; - parameterCategory = 2 ; -} -#Specific humidity -'specific_humidity' = { - discipline = 0 ; - parameterNumber = 0 ; - parameterCategory = 1 ; -} -#Surface pressure -'surface_air_pressure' = { - discipline = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - parameterCategory = 3 ; -} -#Vertical velocity (geometric) -'lagrangian_tendency_of_air_pressure' = { - discipline = 0 ; - parameterNumber = 8 ; - parameterCategory = 2 ; -} -#Relative vorticity -'atmosphere_relative_vorticity' = { - discipline = 0 ; - parameterNumber = 12 ; - parameterCategory = 2 ; -} -#Boundary layer dissipation -'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { - discipline = 0 ; - parameterNumber = 20 ; - parameterCategory = 2 ; -} -#Surface sensible heat flux -'surface_upward_sensible_heat_flux' = { - discipline = 0 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - parameterCategory = 0 ; - typeOfStatisticalProcessing = 1 ; -} -#Surface latent heat flux -'surface_upward_latent_heat_flux' = { - discipline = 0 ; - parameterNumber = 10 ; - typeOfFirstFixedSurface = 1 ; - parameterCategory = 0 ; - typeOfStatisticalProcessing = 1 ; -} -#Mean sea level pressure -'air_pressure_at_mean_sea_level' = { - discipline = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 101 ; - parameterCategory = 3 ; -} -#Relative divergence -'divergence_of_wind' = { - discipline = 0 ; - parameterNumber = 13 ; - parameterCategory = 2 ; -} -#Geopotential height -'geopotential_height' = { - discipline = 0 ; - parameterNumber = 5 ; - parameterCategory = 3 ; -} -#Relative humidity -'relative_humidity' = { - discipline = 0 ; - parameterNumber = 1 ; - parameterCategory = 1 ; -} -#Land-sea mask -'land_binary_mask' = { - discipline = 2 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 1 ; - parameterCategory = 0 ; -} -#Surface roughness -'surface_roughness_length' = { - discipline = 2 ; - parameterNumber = 1 ; - parameterCategory = 0 ; -} -#Surface solar radiation -'surface_net_upward_longwave_flux' = { - discipline = 0 ; - parameterNumber = 9 ; - typeOfFirstFixedSurface = 1 ; - parameterCategory = 4 ; - typeOfStatisticalProcessing = 1 ; -} -#Surface net thermal radiation -'surface_net_upward_longwave_flux' = { - discipline = 0 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 1 ; - parameterCategory = 5 ; - typeOfStatisticalProcessing = 1 ; -} -#Top net thermal radiation -'toa_outgoing_longwave_flux' = { - discipline = 0 ; - parameterNumber = 5 ; - typeOfFirstFixedSurface = 8 ; - parameterCategory = 5 ; - typeOfStatisticalProcessing = 1 ; -} -#Surface solar radiation downwards -'surface_downwelling_shortwave_flux_in_air' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 7 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; -} -#Surface net solar radiation -'surface_net_downward_shortwave_flux' = { - discipline = 0 ; - parameterCategory = 4 ; - parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; -} -#Eastward turbulent surface stress -'surface_downward_eastward_stress' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 38 ; -} -#Northward turbulent surface stress -'surface_downward_northward_stress' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 37 ; -} +# Automatically generated by create_def.CLEAN.pl, do not edit #Sea ice area fraction 'sea_ice_area_fraction' = { discipline = 10 ; parameterCategory = 2 ; parameterNumber = 0 ; -} -#Depth of 20C isotherm -'depth_of_isosurface_of_sea_water_potential_temperature' = { - discipline = 10 ; + } +#Surface solar radiation downwards +'surface_downwelling_shortwave_flux_in_air' = { + discipline = 0 ; parameterCategory = 4 ; - parameterNumber = 14 ; - typeOfFirstFixedSurface = 20 ; - typeOfSecondFixedSurface = 255 ; - scaleFactorOfFirstFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 29315 ; -} -#Ocean mixed layer thickness defined by sigma theta 0.01 kg/m3 -'ocean_mixed_layer_thickness_defined_by_sigma_theta' = { - discipline = 10 ; + parameterNumber = 7 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Top net solar radiation +'toa_net_upward_shortwave_flux' = { + discipline = 0 ; parameterCategory = 4 ; - parameterNumber = 14 ; - typeOfSecondFixedSurface = 255 ; - scaleFactorOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 169 ; - scaledValueOfFirstFixedSurface = 1 ; -} + parameterNumber = 1 ; + typeOfFirstFixedSurface = 8 ; + typeOfStatisticalProcessing = 1 ; + } +#Eastward turbulent surface stress +'surface_downward_eastward_stress' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 38 ; + } +#Northward turbulent surface stress +'surface_downward_northward_stress' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 37 ; + } +#Surface net solar radiation, clear sky +'surface_net_downward_shortwave_flux_assuming_clear_sky' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface net thermal radiation, clear sky +'surface_net_downward_longwave_flux_assuming_clear_sky' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } #Sea surface practical salinity 'sea_surface_salinity' = { discipline = 10 ; @@ -195,47 +58,31 @@ typeOfSecondFixedSurface = 255 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; -} -#Surface net solar radiation, clear sky -'surface_net_downward_shortwave_flux_assuming_clear_sky' = { - discipline = 0 ; + } +#Ocean mixed layer thickness defined by sigma theta 0.01 kg/m3 +'ocean_mixed_layer_thickness_defined_by_sigma_theta' = { + discipline = 10 ; parameterCategory = 4 ; - parameterNumber = 11 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; -} -#Surface net thermal radiation, clear sky -'surface_net_downward_longwave_flux_assuming_clear_sky' = { - discipline = 0 ; - parameterCategory = 5 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; -} + parameterNumber = 14 ; + typeOfFirstFixedSurface = 169 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 2 ; + } #Eastward sea water velocity 'eastward_sea_water_velocity' = { discipline = 10 ; parameterCategory = 1 ; parameterNumber = 2 ; typeOfFirstFixedSurface = 160 ; -} + } #Northward sea water velocity 'northward_sea_water_velocity' = { discipline = 10 ; parameterCategory = 1 ; parameterNumber = 3 ; typeOfFirstFixedSurface = 160 ; -} -#Sea-ice thickness -'sea_ice_thickness' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 160 ; - typeOfSecondFixedSurface = 255 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; -} + } #Sea surface height 'sea_surface_height_above_geoid' = { discipline = 10 ; @@ -245,12 +92,157 @@ typeOfSecondFixedSurface = 255 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; -} -#Top net solar radiation -'toa_net_upward_shortwave_flux' = { + } +#Depth of 20C isotherm +'depth_of_isosurface_of_sea_water_potential_temperature' = { + discipline = 10 ; + parameterCategory = 4 ; + parameterNumber = 14 ; + typeOfFirstFixedSurface = 20 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 29315 ; + scaleFactorOfFirstFixedSurface = 2 ; + } +#Sea-ice thickness +'sea_ice_thickness' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + } +#Geopotential +'geopotential' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 4 ; + } +#Temperature +'air_temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + } +#U component of wind +'eastward_wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 2 ; + } +#V component of wind +'northward_wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 3 ; + } +#Specific humidity +'specific_humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 0 ; + } +#Surface pressure +'surface_air_pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Vertical velocity +'lagrangian_tendency_of_air_pressure' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + } +#Vorticity (relative) +'atmosphere_relative_vorticity' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 12 ; + } +#Boundary layer dissipation +'dissipation_in_atmosphere_boundary_layer' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 20 ; + } +#Surface sensible heat flux +'surface_upward_sensible_heat_flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface latent heat flux +'surface_upward_latent_heat_flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 10 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Mean sea level pressure +'air_pressure_at_mean_sea_level' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 101 ; + } +#Divergence +'divergence_of_wind' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 13 ; + } +#Geopotential Height +'geopotential_height' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 5 ; + } +#Relative humidity +'relative_humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + } +#Land-sea mask +'land_binary_mask' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + } +#Surface roughness +'surface_roughness_length' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 1 ; + } +#Surface net solar radiation +'surface_net_downward_shortwave_flux' = { discipline = 0 ; parameterCategory = 4 ; - parameterNumber = 1 ; + parameterNumber = 9 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface net thermal radiation +'surface_net_upward_longwave_flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } +#Top net thermal radiation +'toa_outgoing_longwave_flux' = { + discipline = 0 ; + parameterCategory = 5 ; + parameterNumber = 5 ; typeOfFirstFixedSurface = 8 ; typeOfStatisticalProcessing = 1 ; } diff --git a/definitions/grib2/localConcepts/ecmf/cfName.def b/definitions/grib2/localConcepts/ecmf/cfName.def index fa9fd3b97..c75f2bb1b 100644 --- a/definitions/grib2/localConcepts/ecmf/cfName.def +++ b/definitions/grib2/localConcepts/ecmf/cfName.def @@ -1,56 +1,6 @@ -# Automatically generated by ./create_param.pl, do not edit -#Geopotential -'geopotential' = { - discipline = 0 ; - parameterNumber = 4 ; - parameterCategory = 3 ; - } -#Relative vorticity -'atmosphere_relative_vorticity' = { - discipline = 0 ; - parameterNumber = 12 ; - parameterCategory = 2 ; - } -#Snow depth -'lwe_thickness_of_surface_snow_amount' = { - localTablesVersion = 1 ; - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 254 ; - } -#Convective precipitation -'lwe_thickness_of_convective_precipitation_amount' = { - discipline = 0 ; - parameterNumber = 10 ; - parameterCategory = 1 ; - unitsFactor = 1000 ; - } -#Boundary layer dissipation -'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { - discipline = 0 ; - parameterNumber = 20 ; - parameterCategory = 2 ; - } -#Relative divergence -'divergence_of_wind' = { - discipline = 0 ; - parameterNumber = 13 ; - parameterCategory = 2 ; - } -#Relative humidity -'relative_humidity' = { - discipline = 0 ; - parameterNumber = 1 ; - parameterCategory = 1 ; - } -#Surface roughness -'surface_roughness_length' = { - discipline = 2 ; - parameterNumber = 1 ; - parameterCategory = 0 ; -} +# Automatically generated by create_def.CLEAN.pl, do not edit #Total column water vapour -'lwe_thickness_of_atmosphere_mass_content_of_water_vapor' = { +'lwe_thickness_of_atmosphere_water_vapor_content' = { discipline = 192 ; parameterCategory = 128 ; parameterNumber = 137 ; @@ -69,12 +19,13 @@ } #Snow depth 'lwe_thickness_of_surface_snow_amount' = { + localTablesVersion = 1 ; discipline = 0 ; parameterCategory = 1 ; - parameterNumber = 11 ; + parameterNumber = 254 ; } #Large-scale precipitation -'lwe_thickness_of_stratiform_precipitation_amount' = { +'lwe_thickness_of_large_scale_precipitation_amount' = { discipline = 192 ; parameterCategory = 128 ; parameterNumber = 142 ; @@ -84,6 +35,7 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 10 ; + unitsFactor = 1000 ; } #Snowfall 'lwe_thickness_of_snowfall_amount' = { @@ -122,56 +74,38 @@ parameterNumber = 185 ; } #Temperature of snow layer -'temperature_in_surface_snow' = { +'snow_temperature' = { discipline = 192 ; parameterCategory = 128 ; parameterNumber = 238 ; } -#Depth of 20C isotherm -'depth_of_isosurface_of_sea_water_potential_temperature' = { +#Sea water potential temperature +'sea_water_potential_temperature' = { discipline = 192 ; parameterCategory = 151 ; - parameterNumber = 163 ; -} + parameterNumber = 129 ; + } +#Sea water practical salinity +'sea_water_practical_salinity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 130 ; + } +#Upward sea water velocity +'upward_sea_water_velocity' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 133 ; + } +#Sea water sigma theta +'sea_water_sigma_theta' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 138 ; + } #Ocean barotropic stream function 'ocean_barotropic_streamfunction' = { discipline = 192 ; parameterCategory = 151 ; parameterNumber = 147 ; } -#Surface downward northward stress -'surface_downward_northward_stress' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 154 ; -} -#Surface downward eastward stress -'surface_downward_eastward_stress' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 153 ; -} -#Sea water practical salinity -'sea_water_practical_salinity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 130 ; -} -#Sea water potential temperature -'sea_water_potential_temperature' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 129 ; -} -#Sea water sigma theta -'sea_water_sigma_theta' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 138 ; -} -#Upward sea water velocity -'upward_sea_water_velocity' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 133 ; -} From 2b5aeb9c83405339dfe259266f8e822bd202489e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 16 Nov 2020 21:35:20 +0000 Subject: [PATCH 135/683] Definitions: cleanup of cfNames (Related to ECC-1163) --- definitions/grib1/cfName.def | 75 +++++++++++++++++++ .../grib1/localConcepts/ecmf/cfName.def | 22 ++++-- definitions/grib2/cfName.def | 14 +++- .../grib2/localConcepts/ecmf/cfName.def | 18 ++++- 4 files changed, 119 insertions(+), 10 deletions(-) diff --git a/definitions/grib1/cfName.def b/definitions/grib1/cfName.def index 069912892..f342e4b1e 100644 --- a/definitions/grib1/cfName.def +++ b/definitions/grib1/cfName.def @@ -242,3 +242,78 @@ table2Version = 1 ; indicatorOfParameter = 123 ; } +#Vertical velocity (geometric) +'lagrangian_tendency_of_air_pressure' = { + indicatorOfParameter = 40 ; + table2Version = 3 ; +} +#Vertical velocity (geometric) +'lagrangian_tendency_of_air_pressure' = { + indicatorOfParameter = 40 ; + table2Version = 2 ; +} +#Vertical velocity (geometric) +'lagrangian_tendency_of_air_pressure' = { + indicatorOfParameter = 40 ; + table2Version = 1 ; +} +#Surface sensible heat flux +'surface_upward_sensible_heat_flux' = { + indicatorOfParameter = 122 ; + table2Version = 3 ; +} +#Surface sensible heat flux +'surface_upward_sensible_heat_flux' = { + indicatorOfParameter = 122 ; + table2Version = 2 ; +} +#Surface sensible heat flux +'surface_upward_sensible_heat_flux' = { + indicatorOfParameter = 122 ; + table2Version = 1 ; +} +#Surface latent heat flux +'surface_upward_latent_heat_flux' = { + indicatorOfParameter = 121 ; + table2Version = 3 ; +} +#Surface latent heat flux +'surface_upward_latent_heat_flux' = { + indicatorOfParameter = 121 ; + table2Version = 2 ; +} +#Surface latent heat flux +'surface_upward_latent_heat_flux' = { + indicatorOfParameter = 121 ; + table2Version = 1 ; +} +#Albedo +'surface_albedo' = { + indicatorOfParameter = 84 ; + table2Version = 3 ; +} +#Albedo +'surface_albedo' = { + indicatorOfParameter = 84 ; + table2Version = 2 ; +} +#Albedo +'surface_albedo' = { + indicatorOfParameter = 84 ; + table2Version = 1 ; +} +#Convective cloud cover +'convective_cloud_area_fraction' = { + indicatorOfParameter = 72 ; + table2Version = 3 ; +} +#Convective cloud cover +'convective_cloud_area_fraction' = { + indicatorOfParameter = 72 ; + table2Version = 2 ; +} +#Convective cloud cover +'convective_cloud_area_fraction' = { + indicatorOfParameter = 72 ; + table2Version = 1 ; +} diff --git a/definitions/grib1/localConcepts/ecmf/cfName.def b/definitions/grib1/localConcepts/ecmf/cfName.def index 47e311e40..b1c1ad73d 100644 --- a/definitions/grib1/localConcepts/ecmf/cfName.def +++ b/definitions/grib1/localConcepts/ecmf/cfName.def @@ -165,7 +165,7 @@ indicatorOfParameter = 135 ; } #Total column water vapour -'lwe_thickness_of_atmosphere_water_vapor_content' = { +'lwe_thickness_of_atmosphere_mass_content_of_water_vapor' = { table2Version = 128 ; indicatorOfParameter = 137 ; } @@ -245,17 +245,17 @@ indicatorOfParameter = 141 ; } #Large-scale precipitation -'lwe_thickness_of_large_scale_precipitation_amount' = { +'lwe_thickness_of_stratiform_precipitation_amount' = { table2Version = 128 ; indicatorOfParameter = 142 ; } #Large-scale precipitation -'lwe_thickness_of_large_scale_precipitation_amount' = { +'lwe_thickness_of_stratiform_precipitation_amount' = { table2Version = 170 ; indicatorOfParameter = 142 ; } #Large-scale precipitation -'lwe_thickness_of_large_scale_precipitation_amount' = { +'lwe_thickness_of_stratiform_precipitation_amount' = { table2Version = 180 ; indicatorOfParameter = 142 ; } @@ -285,7 +285,7 @@ indicatorOfParameter = 144 ; } #Boundary layer dissipation -'dissipation_in_atmosphere_boundary_layer' = { +'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { table2Version = 128 ; indicatorOfParameter = 145 ; } @@ -665,7 +665,7 @@ indicatorOfParameter = 211 ; } #Temperature of snow layer -'snow_temperature' = { +'temperature_in_surface_snow' = { table2Version = 128 ; indicatorOfParameter = 238 ; } @@ -729,3 +729,13 @@ table2Version = 174 ; indicatorOfParameter = 98 ; } +#Surface downward northward stress +'surface_downward_northward_stress' = { + table2Version = 151 ; + indicatorOfParameter = 154 ; +} +#Surface downward eastward stress +'surface_downward_eastward_stress' = { + table2Version = 151 ; + indicatorOfParameter = 153 ; +} diff --git a/definitions/grib2/cfName.def b/definitions/grib2/cfName.def index af7fc7a79..b3f264ff4 100644 --- a/definitions/grib2/cfName.def +++ b/definitions/grib2/cfName.def @@ -163,7 +163,7 @@ parameterNumber = 12 ; } #Boundary layer dissipation -'dissipation_in_atmosphere_boundary_layer' = { +'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 20 ; @@ -246,3 +246,15 @@ typeOfFirstFixedSurface = 8 ; typeOfStatisticalProcessing = 1 ; } +#Convective precipitation +'lwe_thickness_of_convective_precipitation_amount' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; +} +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/cfName.def b/definitions/grib2/localConcepts/ecmf/cfName.def index c75f2bb1b..66180e1ad 100644 --- a/definitions/grib2/localConcepts/ecmf/cfName.def +++ b/definitions/grib2/localConcepts/ecmf/cfName.def @@ -1,6 +1,6 @@ # Automatically generated by create_def.CLEAN.pl, do not edit #Total column water vapour -'lwe_thickness_of_atmosphere_water_vapor_content' = { +'lwe_thickness_of_atmosphere_mass_content_of_water_vapor' = { discipline = 192 ; parameterCategory = 128 ; parameterNumber = 137 ; @@ -25,7 +25,7 @@ parameterNumber = 254 ; } #Large-scale precipitation -'lwe_thickness_of_large_scale_precipitation_amount' = { +'lwe_thickness_of_stratiform_precipitation_amount' = { discipline = 192 ; parameterCategory = 128 ; parameterNumber = 142 ; @@ -74,7 +74,7 @@ parameterNumber = 185 ; } #Temperature of snow layer -'snow_temperature' = { +'temperature_in_surface_snow' = { discipline = 192 ; parameterCategory = 128 ; parameterNumber = 238 ; @@ -109,3 +109,15 @@ parameterCategory = 151 ; parameterNumber = 147 ; } +#Surface downward northward stress +'surface_downward_northward_stress' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 154 ; +} +#Surface downward eastward stress +'surface_downward_eastward_stress' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 153 ; +} From 6e545229f07a67915e0f6a39e29483dfc9825fd4 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 17 Nov 2020 16:33:40 +0000 Subject: [PATCH 136/683] Add WMO GRIB code/flag tables for v26 --- definitions/grib2/boot.def | 2 +- definitions/grib2/tables/26/0.0.table | 13 + definitions/grib2/tables/26/1.0.table | 27 + definitions/grib2/tables/26/1.1.table | 4 + definitions/grib2/tables/26/1.2.table | 8 + definitions/grib2/tables/26/1.3.table | 16 + definitions/grib2/tables/26/1.4.table | 13 + definitions/grib2/tables/26/1.5.table | 7 + definitions/grib2/tables/26/1.6.table | 8 + definitions/grib2/tables/26/3.0.table | 6 + definitions/grib2/tables/26/3.1.table | 54 ++ definitions/grib2/tables/26/3.10.table | 8 + definitions/grib2/tables/26/3.11.table | 7 + definitions/grib2/tables/26/3.15.table | 23 + definitions/grib2/tables/26/3.2.table | 16 + definitions/grib2/tables/26/3.20.table | 6 + definitions/grib2/tables/26/3.21.table | 8 + definitions/grib2/tables/26/3.25.table | 10 + definitions/grib2/tables/26/3.3.table | 9 + definitions/grib2/tables/26/3.4.table | 17 + definitions/grib2/tables/26/3.5.table | 5 + definitions/grib2/tables/26/3.6.table | 3 + definitions/grib2/tables/26/3.7.table | 5 + definitions/grib2/tables/26/3.8.table | 7 + definitions/grib2/tables/26/3.9.table | 4 + definitions/grib2/tables/26/4.0.table | 84 +++ definitions/grib2/tables/26/4.1.0.table | 27 + definitions/grib2/tables/26/4.1.1.table | 7 + definitions/grib2/tables/26/4.1.10.table | 10 + definitions/grib2/tables/26/4.1.2.table | 10 + definitions/grib2/tables/26/4.1.20.table | 7 + definitions/grib2/tables/26/4.1.3.table | 11 + definitions/grib2/tables/26/4.1.4.table | 15 + definitions/grib2/tables/26/4.10.table | 16 + definitions/grib2/tables/26/4.11.table | 10 + definitions/grib2/tables/26/4.12.table | 7 + definitions/grib2/tables/26/4.13.table | 6 + definitions/grib2/tables/26/4.14.table | 6 + definitions/grib2/tables/26/4.15.table | 11 + definitions/grib2/tables/26/4.16.table | 10 + definitions/grib2/tables/26/4.2.0.0.table | 36 ++ definitions/grib2/tables/26/4.2.0.1.table | 150 ++++++ definitions/grib2/tables/26/4.2.0.13.table | 5 + definitions/grib2/tables/26/4.2.0.14.table | 7 + definitions/grib2/tables/26/4.2.0.15.table | 21 + definitions/grib2/tables/26/4.2.0.16.table | 10 + definitions/grib2/tables/26/4.2.0.17.table | 6 + definitions/grib2/tables/26/4.2.0.18.table | 23 + definitions/grib2/tables/26/4.2.0.19.table | 45 ++ definitions/grib2/tables/26/4.2.0.190.table | 5 + definitions/grib2/tables/26/4.2.0.191.table | 8 + definitions/grib2/tables/26/4.2.0.2.table | 51 ++ definitions/grib2/tables/26/4.2.0.20.table | 64 +++ definitions/grib2/tables/26/4.2.0.3.table | 36 ++ definitions/grib2/tables/26/4.2.0.4.table | 25 + definitions/grib2/tables/26/4.2.0.5.table | 13 + definitions/grib2/tables/26/4.2.0.6.table | 50 ++ definitions/grib2/tables/26/4.2.0.7.table | 25 + definitions/grib2/tables/26/4.2.1.0.table | 21 + definitions/grib2/tables/26/4.2.1.1.table | 7 + definitions/grib2/tables/26/4.2.1.2.table | 15 + definitions/grib2/tables/26/4.2.10.0.table | 69 +++ definitions/grib2/tables/26/4.2.10.1.table | 9 + definitions/grib2/tables/26/4.2.10.191.table | 8 + definitions/grib2/tables/26/4.2.10.2.table | 17 + definitions/grib2/tables/26/4.2.10.3.table | 8 + definitions/grib2/tables/26/4.2.10.4.table | 24 + definitions/grib2/tables/26/4.2.2.0.table | 44 ++ definitions/grib2/tables/26/4.2.2.3.table | 33 ++ definitions/grib2/tables/26/4.2.2.4.table | 24 + definitions/grib2/tables/26/4.2.2.5.table | 6 + definitions/grib2/tables/26/4.2.20.0.table | 6 + definitions/grib2/tables/26/4.2.20.1.table | 14 + definitions/grib2/tables/26/4.2.20.2.table | 5 + definitions/grib2/tables/26/4.2.3.0.table | 14 + definitions/grib2/tables/26/4.2.3.1.table | 35 ++ definitions/grib2/tables/26/4.2.3.2.table | 24 + definitions/grib2/tables/26/4.2.3.3.table | 4 + definitions/grib2/tables/26/4.2.3.4.table | 10 + definitions/grib2/tables/26/4.2.3.5.table | 7 + definitions/grib2/tables/26/4.2.3.6.table | 7 + definitions/grib2/tables/26/4.2.4.0.table | 10 + definitions/grib2/tables/26/4.2.4.1.table | 8 + definitions/grib2/tables/26/4.2.4.10.table | 12 + definitions/grib2/tables/26/4.2.4.2.table | 18 + definitions/grib2/tables/26/4.2.4.3.table | 12 + definitions/grib2/tables/26/4.2.4.4.table | 11 + definitions/grib2/tables/26/4.2.4.5.table | 8 + definitions/grib2/tables/26/4.2.4.6.table | 11 + definitions/grib2/tables/26/4.2.4.7.table | 8 + definitions/grib2/tables/26/4.2.4.8.table | 12 + definitions/grib2/tables/26/4.2.4.9.table | 7 + definitions/grib2/tables/26/4.201.table | 17 + definitions/grib2/tables/26/4.202.table | 4 + definitions/grib2/tables/26/4.203.table | 26 + definitions/grib2/tables/26/4.204.table | 9 + definitions/grib2/tables/26/4.205.table | 6 + definitions/grib2/tables/26/4.206.table | 6 + definitions/grib2/tables/26/4.207.table | 10 + definitions/grib2/tables/26/4.208.table | 9 + definitions/grib2/tables/26/4.209.table | 9 + definitions/grib2/tables/26/4.210.table | 6 + definitions/grib2/tables/26/4.211.table | 7 + definitions/grib2/tables/26/4.212.table | 18 + definitions/grib2/tables/26/4.213.table | 16 + definitions/grib2/tables/26/4.214.table | 11 + definitions/grib2/tables/26/4.215.table | 9 + definitions/grib2/tables/26/4.216.table | 5 + definitions/grib2/tables/26/4.217.table | 8 + definitions/grib2/tables/26/4.218.table | 46 ++ definitions/grib2/tables/26/4.219.table | 8 + definitions/grib2/tables/26/4.220.table | 6 + definitions/grib2/tables/26/4.221.table | 6 + definitions/grib2/tables/26/4.222.table | 6 + definitions/grib2/tables/26/4.223.table | 5 + definitions/grib2/tables/26/4.224.table | 18 + definitions/grib2/tables/26/4.225.table | 2 + definitions/grib2/tables/26/4.227.table | 9 + definitions/grib2/tables/26/4.228.table | 8 + definitions/grib2/tables/26/4.230.table | 512 +++++++++++++++++++ definitions/grib2/tables/26/4.233.table | 512 +++++++++++++++++++ definitions/grib2/tables/26/4.234.table | 21 + definitions/grib2/tables/26/4.236.table | 8 + definitions/grib2/tables/26/4.238.table | 32 ++ definitions/grib2/tables/26/4.240.table | 13 + definitions/grib2/tables/26/4.241.table | 9 + definitions/grib2/tables/26/4.242.table | 7 + definitions/grib2/tables/26/4.243.table | 43 ++ definitions/grib2/tables/26/4.244.table | 7 + definitions/grib2/tables/26/4.246.table | 7 + definitions/grib2/tables/26/4.247.table | 7 + definitions/grib2/tables/26/4.3.table | 23 + definitions/grib2/tables/26/4.4.table | 17 + definitions/grib2/tables/26/4.5.table | 86 ++++ definitions/grib2/tables/26/4.6.table | 9 + definitions/grib2/tables/26/4.7.table | 14 + definitions/grib2/tables/26/4.8.table | 6 + definitions/grib2/tables/26/4.9.table | 13 + definitions/grib2/tables/26/4.91.table | 16 + definitions/grib2/tables/26/5.0.table | 22 + definitions/grib2/tables/26/5.1.table | 6 + definitions/grib2/tables/26/5.2.table | 8 + definitions/grib2/tables/26/5.25.table | 9 + definitions/grib2/tables/26/5.26.table | 5 + definitions/grib2/tables/26/5.3.table | 7 + definitions/grib2/tables/26/5.4.table | 6 + definitions/grib2/tables/26/5.40.table | 5 + definitions/grib2/tables/26/5.5.table | 7 + definitions/grib2/tables/26/5.6.table | 7 + definitions/grib2/tables/26/5.7.table | 7 + definitions/grib2/tables/26/6.0.table | 6 + 151 files changed, 3377 insertions(+), 1 deletion(-) create mode 100644 definitions/grib2/tables/26/0.0.table create mode 100644 definitions/grib2/tables/26/1.0.table create mode 100644 definitions/grib2/tables/26/1.1.table create mode 100644 definitions/grib2/tables/26/1.2.table create mode 100644 definitions/grib2/tables/26/1.3.table create mode 100644 definitions/grib2/tables/26/1.4.table create mode 100644 definitions/grib2/tables/26/1.5.table create mode 100644 definitions/grib2/tables/26/1.6.table create mode 100644 definitions/grib2/tables/26/3.0.table create mode 100644 definitions/grib2/tables/26/3.1.table create mode 100644 definitions/grib2/tables/26/3.10.table create mode 100644 definitions/grib2/tables/26/3.11.table create mode 100644 definitions/grib2/tables/26/3.15.table create mode 100644 definitions/grib2/tables/26/3.2.table create mode 100644 definitions/grib2/tables/26/3.20.table create mode 100644 definitions/grib2/tables/26/3.21.table create mode 100644 definitions/grib2/tables/26/3.25.table create mode 100644 definitions/grib2/tables/26/3.3.table create mode 100644 definitions/grib2/tables/26/3.4.table create mode 100644 definitions/grib2/tables/26/3.5.table create mode 100644 definitions/grib2/tables/26/3.6.table create mode 100644 definitions/grib2/tables/26/3.7.table create mode 100644 definitions/grib2/tables/26/3.8.table create mode 100644 definitions/grib2/tables/26/3.9.table create mode 100644 definitions/grib2/tables/26/4.0.table create mode 100644 definitions/grib2/tables/26/4.1.0.table create mode 100644 definitions/grib2/tables/26/4.1.1.table create mode 100644 definitions/grib2/tables/26/4.1.10.table create mode 100644 definitions/grib2/tables/26/4.1.2.table create mode 100644 definitions/grib2/tables/26/4.1.20.table create mode 100644 definitions/grib2/tables/26/4.1.3.table create mode 100644 definitions/grib2/tables/26/4.1.4.table create mode 100644 definitions/grib2/tables/26/4.10.table create mode 100644 definitions/grib2/tables/26/4.11.table create mode 100644 definitions/grib2/tables/26/4.12.table create mode 100644 definitions/grib2/tables/26/4.13.table create mode 100644 definitions/grib2/tables/26/4.14.table create mode 100644 definitions/grib2/tables/26/4.15.table create mode 100644 definitions/grib2/tables/26/4.16.table create mode 100644 definitions/grib2/tables/26/4.2.0.0.table create mode 100644 definitions/grib2/tables/26/4.2.0.1.table create mode 100644 definitions/grib2/tables/26/4.2.0.13.table create mode 100644 definitions/grib2/tables/26/4.2.0.14.table create mode 100644 definitions/grib2/tables/26/4.2.0.15.table create mode 100644 definitions/grib2/tables/26/4.2.0.16.table create mode 100644 definitions/grib2/tables/26/4.2.0.17.table create mode 100644 definitions/grib2/tables/26/4.2.0.18.table create mode 100644 definitions/grib2/tables/26/4.2.0.19.table create mode 100644 definitions/grib2/tables/26/4.2.0.190.table create mode 100644 definitions/grib2/tables/26/4.2.0.191.table create mode 100644 definitions/grib2/tables/26/4.2.0.2.table create mode 100644 definitions/grib2/tables/26/4.2.0.20.table create mode 100644 definitions/grib2/tables/26/4.2.0.3.table create mode 100644 definitions/grib2/tables/26/4.2.0.4.table create mode 100644 definitions/grib2/tables/26/4.2.0.5.table create mode 100644 definitions/grib2/tables/26/4.2.0.6.table create mode 100644 definitions/grib2/tables/26/4.2.0.7.table create mode 100644 definitions/grib2/tables/26/4.2.1.0.table create mode 100644 definitions/grib2/tables/26/4.2.1.1.table create mode 100644 definitions/grib2/tables/26/4.2.1.2.table create mode 100644 definitions/grib2/tables/26/4.2.10.0.table create mode 100644 definitions/grib2/tables/26/4.2.10.1.table create mode 100644 definitions/grib2/tables/26/4.2.10.191.table create mode 100644 definitions/grib2/tables/26/4.2.10.2.table create mode 100644 definitions/grib2/tables/26/4.2.10.3.table create mode 100644 definitions/grib2/tables/26/4.2.10.4.table create mode 100644 definitions/grib2/tables/26/4.2.2.0.table create mode 100644 definitions/grib2/tables/26/4.2.2.3.table create mode 100644 definitions/grib2/tables/26/4.2.2.4.table create mode 100644 definitions/grib2/tables/26/4.2.2.5.table create mode 100644 definitions/grib2/tables/26/4.2.20.0.table create mode 100644 definitions/grib2/tables/26/4.2.20.1.table create mode 100644 definitions/grib2/tables/26/4.2.20.2.table create mode 100644 definitions/grib2/tables/26/4.2.3.0.table create mode 100644 definitions/grib2/tables/26/4.2.3.1.table create mode 100644 definitions/grib2/tables/26/4.2.3.2.table create mode 100644 definitions/grib2/tables/26/4.2.3.3.table create mode 100644 definitions/grib2/tables/26/4.2.3.4.table create mode 100644 definitions/grib2/tables/26/4.2.3.5.table create mode 100644 definitions/grib2/tables/26/4.2.3.6.table create mode 100644 definitions/grib2/tables/26/4.2.4.0.table create mode 100644 definitions/grib2/tables/26/4.2.4.1.table create mode 100644 definitions/grib2/tables/26/4.2.4.10.table create mode 100644 definitions/grib2/tables/26/4.2.4.2.table create mode 100644 definitions/grib2/tables/26/4.2.4.3.table create mode 100644 definitions/grib2/tables/26/4.2.4.4.table create mode 100644 definitions/grib2/tables/26/4.2.4.5.table create mode 100644 definitions/grib2/tables/26/4.2.4.6.table create mode 100644 definitions/grib2/tables/26/4.2.4.7.table create mode 100644 definitions/grib2/tables/26/4.2.4.8.table create mode 100644 definitions/grib2/tables/26/4.2.4.9.table create mode 100644 definitions/grib2/tables/26/4.201.table create mode 100644 definitions/grib2/tables/26/4.202.table create mode 100644 definitions/grib2/tables/26/4.203.table create mode 100644 definitions/grib2/tables/26/4.204.table create mode 100644 definitions/grib2/tables/26/4.205.table create mode 100644 definitions/grib2/tables/26/4.206.table create mode 100644 definitions/grib2/tables/26/4.207.table create mode 100644 definitions/grib2/tables/26/4.208.table create mode 100644 definitions/grib2/tables/26/4.209.table create mode 100644 definitions/grib2/tables/26/4.210.table create mode 100644 definitions/grib2/tables/26/4.211.table create mode 100644 definitions/grib2/tables/26/4.212.table create mode 100644 definitions/grib2/tables/26/4.213.table create mode 100644 definitions/grib2/tables/26/4.214.table create mode 100644 definitions/grib2/tables/26/4.215.table create mode 100644 definitions/grib2/tables/26/4.216.table create mode 100644 definitions/grib2/tables/26/4.217.table create mode 100644 definitions/grib2/tables/26/4.218.table create mode 100644 definitions/grib2/tables/26/4.219.table create mode 100644 definitions/grib2/tables/26/4.220.table create mode 100644 definitions/grib2/tables/26/4.221.table create mode 100644 definitions/grib2/tables/26/4.222.table create mode 100644 definitions/grib2/tables/26/4.223.table create mode 100644 definitions/grib2/tables/26/4.224.table create mode 100644 definitions/grib2/tables/26/4.225.table create mode 100644 definitions/grib2/tables/26/4.227.table create mode 100644 definitions/grib2/tables/26/4.228.table create mode 100644 definitions/grib2/tables/26/4.230.table create mode 100644 definitions/grib2/tables/26/4.233.table create mode 100644 definitions/grib2/tables/26/4.234.table create mode 100644 definitions/grib2/tables/26/4.236.table create mode 100644 definitions/grib2/tables/26/4.238.table create mode 100644 definitions/grib2/tables/26/4.240.table create mode 100644 definitions/grib2/tables/26/4.241.table create mode 100644 definitions/grib2/tables/26/4.242.table create mode 100644 definitions/grib2/tables/26/4.243.table create mode 100644 definitions/grib2/tables/26/4.244.table create mode 100644 definitions/grib2/tables/26/4.246.table create mode 100644 definitions/grib2/tables/26/4.247.table create mode 100644 definitions/grib2/tables/26/4.3.table create mode 100644 definitions/grib2/tables/26/4.4.table create mode 100644 definitions/grib2/tables/26/4.5.table create mode 100644 definitions/grib2/tables/26/4.6.table create mode 100644 definitions/grib2/tables/26/4.7.table create mode 100644 definitions/grib2/tables/26/4.8.table create mode 100644 definitions/grib2/tables/26/4.9.table create mode 100644 definitions/grib2/tables/26/4.91.table create mode 100644 definitions/grib2/tables/26/5.0.table create mode 100644 definitions/grib2/tables/26/5.1.table create mode 100644 definitions/grib2/tables/26/5.2.table create mode 100644 definitions/grib2/tables/26/5.25.table create mode 100644 definitions/grib2/tables/26/5.26.table create mode 100644 definitions/grib2/tables/26/5.3.table create mode 100644 definitions/grib2/tables/26/5.4.table create mode 100644 definitions/grib2/tables/26/5.40.table create mode 100644 definitions/grib2/tables/26/5.5.table create mode 100644 definitions/grib2/tables/26/5.6.table create mode 100644 definitions/grib2/tables/26/5.7.table create mode 100644 definitions/grib2/tables/26/6.0.table diff --git a/definitions/grib2/boot.def b/definitions/grib2/boot.def index cc820fb27..1fc76c980 100644 --- a/definitions/grib2/boot.def +++ b/definitions/grib2/boot.def @@ -9,7 +9,7 @@ # This gets updated twice a year by WMO. # See http://www.wmo.int/pages/prog/www/WMOCodes/WMO306_vI2/LatestVERSION/LatestVERSION.html -constant tablesVersionLatest = 25 : edition_specific; +constant tablesVersionLatest = 26 : edition_specific; constant million = 1000000 : hidden; constant grib2divider = 1000000; diff --git a/definitions/grib2/tables/26/0.0.table b/definitions/grib2/tables/26/0.0.table new file mode 100644 index 000000000..71ac57ab3 --- /dev/null +++ b/definitions/grib2/tables/26/0.0.table @@ -0,0 +1,13 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Satellite remote sensing products (formerly Space products) +4 4 Space weather products +# 5-9 Reserved +10 10 Oceanographic products +# 11-19 Reserved +20 20 Health and socioeconomic impacts +# 21-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/1.0.table b/definitions/grib2/tables/26/1.0.table new file mode 100644 index 000000000..79240c698 --- /dev/null +++ b/definitions/grib2/tables/26/1.0.table @@ -0,0 +1,27 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Version implemented on 6 May 2015 +16 16 Version implemented on 11 November 2015 +17 17 Version implemented on 4 May 2016 +18 18 Version implemented on 2 November 2016 +19 19 Version implemented on 3 May 2017 +20 20 Version implemented on 8 November 2017 +21 21 Version implemented on 2 May 2018 +22 22 Version implemented on 7 November 2018 +23 23 Pre-operational to be implemented by next amendment +# 24-254 Future versions +255 255 Missing diff --git a/definitions/grib2/tables/26/1.1.table b/definitions/grib2/tables/26/1.1.table new file mode 100644 index 000000000..d50f8fd72 --- /dev/null +++ b/definitions/grib2/tables/26/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/definitions/grib2/tables/26/1.2.table b/definitions/grib2/tables/26/1.2.table new file mode 100644 index 000000000..934b70455 --- /dev/null +++ b/definitions/grib2/tables/26/1.2.table @@ -0,0 +1,8 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/1.3.table b/definitions/grib2/tables/26/1.3.table new file mode 100644 index 000000000..dc138ef12 --- /dev/null +++ b/definitions/grib2/tables/26/1.3.table @@ -0,0 +1,16 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 S2S operational products +7 7 S2S test products +8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) +9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) +10 10 Copernicus regional reanalysis (CARRA/CERRA) +11 11 Copernicus regional reanalysis test (CARRA/CERRA) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/1.4.table b/definitions/grib2/tables/26/1.4.table new file mode 100644 index 000000000..03203d874 --- /dev/null +++ b/definitions/grib2/tables/26/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/definitions/grib2/tables/26/1.5.table b/definitions/grib2/tables/26/1.5.table new file mode 100644 index 000000000..b2cf9f087 --- /dev/null +++ b/definitions/grib2/tables/26/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/definitions/grib2/tables/26/1.6.table b/definitions/grib2/tables/26/1.6.table new file mode 100644 index 000000000..5db921990 --- /dev/null +++ b/definitions/grib2/tables/26/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/3.0.table b/definitions/grib2/tables/26/3.0.table new file mode 100644 index 000000000..45187b80d --- /dev/null +++ b/definitions/grib2/tables/26/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/definitions/grib2/tables/26/3.1.table b/definitions/grib2/tables/26/3.1.table new file mode 100644 index 000000000..ed68c5144 --- /dev/null +++ b/definitions/grib2/tables/26/3.1.table @@ -0,0 +1,54 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +# 11-12 Reserved +13 13 Mercator with modelling subdomains definition +# 14-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-22 Reserved +23 23 Polar stereographic with modelling subdomains definition +# 24-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +32 32 Reserved +33 33 Lambert conformal with modelling subdomains definition +# 34-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-60 Reserved +61 61 Spectral Mercator with modelling subdomains definition +62 62 Spectral polar stereographic with modelling subdomains definition +63 63 Spectral Lambert conformal with modelling subdomains definition +# 64-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/definitions/grib2/tables/26/3.10.table b/definitions/grib2/tables/26/3.10.table new file mode 100644 index 000000000..afa8843a7 --- /dev/null +++ b/definitions/grib2/tables/26/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/definitions/grib2/tables/26/3.11.table b/definitions/grib2/tables/26/3.11.table new file mode 100644 index 000000000..e516a2ab9 --- /dev/null +++ b/definitions/grib2/tables/26/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/26/3.15.table b/definitions/grib2/tables/26/3.15.table new file mode 100644 index 000000000..331217ebe --- /dev/null +++ b/definitions/grib2/tables/26/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/3.2.table b/definitions/grib2/tables/26/3.2.table new file mode 100644 index 000000000..03cfbafa8 --- /dev/null +++ b/definitions/grib2/tables/26/3.2.table @@ -0,0 +1,16 @@ +# Code table 3.2 - Shape of the reference system +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +10 10 Earth model assumed WGS84 with corrected geomagnetic coordinates (latitude and longitude) defined by Gustafsson et al., 1992 +11 11 Sun assumed spherical with radius = 695,990,000 m (Allen, C.W., 1976 Astrophysical Quantities (3rd Ed.; London: Athlone) and Stonyhurst latitude and longitude system with origin at the intersection of the solar central meridian (as seen from Earth) and the solar equator (Thompson, W, Coordinate systems for solar image data, A&A 449, 791–803 (2006)) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/3.20.table b/definitions/grib2/tables/26/3.20.table new file mode 100644 index 000000000..efbf08d19 --- /dev/null +++ b/definitions/grib2/tables/26/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/3.21.table b/definitions/grib2/tables/26/3.21.table new file mode 100644 index 000000000..88dbb9019 --- /dev/null +++ b/definitions/grib2/tables/26/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/3.25.table b/definitions/grib2/tables/26/3.25.table new file mode 100644 index 000000000..de1bc74ed --- /dev/null +++ b/definitions/grib2/tables/26/3.25.table @@ -0,0 +1,10 @@ +# Code table 3.25 - Type of bi-Fourier truncation +# 0-76 Reserved +77 77 Rectangular +# 78-87 Reserved +88 88 Elliptic +# 89-98 Reserved +99 99 Diamond +# 100-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/3.3.table b/definitions/grib2/tables/26/3.3.table new file mode 100644 index 000000000..5dd7c7001 --- /dev/null +++ b/definitions/grib2/tables/26/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/definitions/grib2/tables/26/3.4.table b/definitions/grib2/tables/26/3.4.table new file mode 100644 index 000000000..897b813d7 --- /dev/null +++ b/definitions/grib2/tables/26/3.4.table @@ -0,0 +1,17 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +5 0 Points within odd rows are not offset in i (x) direction +5 1 Points within odd rows are offset by Di/2 in i (x) direction +6 0 Points within even rows are not offset in i (x) direction +6 1 Points within even rows are offset by Di/2 in i (x) direction +7 0 Points are not offset in j (y) direction +7 1 Points are offset by Dj/2 in j (y) direction +8 0 Rows have Ni grid points and columns have Nj grid points +8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/definitions/grib2/tables/26/3.5.table b/definitions/grib2/tables/26/3.5.table new file mode 100644 index 000000000..eabdde896 --- /dev/null +++ b/definitions/grib2/tables/26/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/definitions/grib2/tables/26/3.6.table b/definitions/grib2/tables/26/3.6.table new file mode 100644 index 000000000..dc7d107aa --- /dev/null +++ b/definitions/grib2/tables/26/3.6.table @@ -0,0 +1,3 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file +2 2 Bi-Fourier representation diff --git a/definitions/grib2/tables/26/3.7.table b/definitions/grib2/tables/26/3.7.table new file mode 100644 index 000000000..0a7d6efde --- /dev/null +++ b/definitions/grib2/tables/26/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/26/3.8.table b/definitions/grib2/tables/26/3.8.table new file mode 100644 index 000000000..844e74235 --- /dev/null +++ b/definitions/grib2/tables/26/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/3.9.table b/definitions/grib2/tables/26/3.9.table new file mode 100644 index 000000000..fd730bc64 --- /dev/null +++ b/definitions/grib2/tables/26/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/definitions/grib2/tables/26/4.0.table b/definitions/grib2/tables/26/4.0.table new file mode 100644 index 000000000..03f30748d --- /dev/null +++ b/definitions/grib2/tables/26/4.0.table @@ -0,0 +1,84 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +35 35 Satellite product with or without associated quality values +# 36-39 Reserved +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +# 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) +57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) +60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +62 62 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +63 63 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles +# 64-66 Reserved +67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +# 69 Reserved +70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time +71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 74-75 Reserved +76 76 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source or sink +77 77 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source or sink +78 78 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source or sink +79 79 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source or sink +80 80 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source or sink +81 81 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source or sink +82 82 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink +83 83 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink +84 84 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink +85 85 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +# 86-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/definitions/grib2/tables/26/4.1.0.table b/definitions/grib2/tables/26/4.1.0.table new file mode 100644 index 000000000..04cfd7802 --- /dev/null +++ b/definitions/grib2/tables/26/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.1.1.table b/definitions/grib2/tables/26/4.1.1.table new file mode 100644 index 000000000..7b22b6fed --- /dev/null +++ b/definitions/grib2/tables/26/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.1.10.table b/definitions/grib2/tables/26/4.1.10.table new file mode 100644 index 000000000..a9b20eb9c --- /dev/null +++ b/definitions/grib2/tables/26/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Subsurface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.1.2.table b/definitions/grib2/tables/26/4.1.2.table new file mode 100644 index 000000000..60e2452d4 --- /dev/null +++ b/definitions/grib2/tables/26/4.1.2.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +5 5 Glaciers and inland ice +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.1.20.table b/definitions/grib2/tables/26/4.1.20.table new file mode 100644 index 000000000..afad6c811 --- /dev/null +++ b/definitions/grib2/tables/26/4.1.20.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Health indicators +1 1 Epidemiology +2 2 Socioeconomic indicators +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.1.3.table b/definitions/grib2/tables/26/4.1.3.table new file mode 100644 index 000000000..7bf60d4a7 --- /dev/null +++ b/definitions/grib2/tables/26/4.1.3.table @@ -0,0 +1,11 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +2 2 Cloud properties +3 3 Flight rule conditions +4 4 Volcanic ash +5 5 Sea-surface temperature +6 6 Solar radiation +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.1.4.table b/definitions/grib2/tables/26/4.1.4.table new file mode 100644 index 000000000..4d3e1cf2b --- /dev/null +++ b/definitions/grib2/tables/26/4.1.4.table @@ -0,0 +1,15 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Momentum +2 2 Charged particle mass and number +3 3 Electric and magnetic fields +4 4 Energetic particles +5 5 Waves +6 6 Solar electromagnetic emissions +7 7 Terrestrial electromagnetic emissions +8 8 Imagery +9 9 Ion-neutral coupling +10 10 Space weather indices +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.10.table b/definitions/grib2/tables/26/4.10.table new file mode 100644 index 000000000..1a92baaf6 --- /dev/null +++ b/definitions/grib2/tables/26/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/definitions/grib2/tables/26/4.11.table b/definitions/grib2/tables/26/4.11.table new file mode 100644 index 000000000..7f404c849 --- /dev/null +++ b/definitions/grib2/tables/26/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.12.table b/definitions/grib2/tables/26/4.12.table new file mode 100644 index 000000000..03fd89b36 --- /dev/null +++ b/definitions/grib2/tables/26/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.13.table b/definitions/grib2/tables/26/4.13.table new file mode 100644 index 000000000..c92854eec --- /dev/null +++ b/definitions/grib2/tables/26/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.14.table b/definitions/grib2/tables/26/4.14.table new file mode 100644 index 000000000..a88cb93fa --- /dev/null +++ b/definitions/grib2/tables/26/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.15.table b/definitions/grib2/tables/26/4.15.table new file mode 100644 index 000000000..2e5f3dea3 --- /dev/null +++ b/definitions/grib2/tables/26/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.16.table b/definitions/grib2/tables/26/4.16.table new file mode 100644 index 000000000..fedb05324 --- /dev/null +++ b/definitions/grib2/tables/26/4.16.table @@ -0,0 +1,10 @@ +# Code table 4.16 - Quality value associated with parameter +0 0 Confidence index +1 1 Quality indicator +2 2 Correlation of product with used calibration product +3 3 Standard deviation +4 4 Random error +5 5 Probability +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.0.table b/definitions/grib2/tables/26/4.2.0.0.table new file mode 100644 index 000000000..4844c33f3 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.0.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +21 21 Apparent temperature (K) +22 22 Temperature tendency due to short-wave radiation (K s-1) +23 23 Temperature tendency due to long-wave radiation (K s-1) +24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) +25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) +26 26 Temperature tendency due to parameterization (K s-1) +27 27 Wet-bulb temperature (K) +28 28 Unbalanced component of temperature (K) +29 29 Temperature advection (K s-1) +30 30 Latent heat net flux due to evaporation (W m-2) +31 31 Latent heat net flux due to sublimation (W m-2) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.1.table b/definitions/grib2/tables/26/4.2.0.1.table new file mode 100644 index 000000000..afa2199cf --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.1.table @@ -0,0 +1,150 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type ((4.201)) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category ((Code table 4.202)) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain ((Code table 4.222)) +34 34 Categorical freezing rain ((Code table 4.222)) +35 35 Categorical ice pellets ((Code table 4.222)) +36 36 Categorical snow ((Code table 4.222)) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water=vapour + cloud water/ice) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +87 87 Stratiform precipitation rate (kg m-2 s-1) +88 88 Categorical convective precipitation ((Code table 4.222)) +# 89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +93 93 Relative humidity with respect to water (%) +94 94 Relative humidity with respect to ice (%) +95 95 Freezing or frozen precipitation rate (kg m-2 s-1) +96 96 Mass density of rain (kg m-3) +97 97 Mass density of snow (kg m-3) +98 98 Mass density of graupel (kg m-3) +99 99 Mass density of hail (kg m-3) +100 100 Specific number concentration of rain (kg-1) +101 101 Specific number concentration of snow (kg-1) +102 102 Specific number concentration of graupel (kg-1) +103 103 Specific number concentration of hail (kg-1) +104 104 Number density of rain (m-3) +105 105 Number density of snow (m-3) +106 106 Number density of graupel (m-3) +107 107 Number density of hail (m-3) +108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) +109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) +110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) +111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) +112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) +113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) +114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) +115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) +116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) +117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) +118 118 Unbalanced component of specific humidity (kg kg-1) +119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) +120 120 Unbalanced component of specific cloud ice water content (kg kg-1) +121 121 Fraction of snow cover (Proportion) +122 122 Precipitation intensity index ((Code table 4.247)) +123 123 Dominant precipitation type ((Code table 4.201)) +124 124 Presence of showers ((Code table 4.222)) +125 125 Presence of blowing snow ((Code table 4.222)) +126 126 Presence of blizzard ((Code table 4.222)) +127 127 Ice pellets (non water equivalent) precipitation rate (m/s) +128 128 Total solid precipitation rate (kg m-2 s-1) +129 129 Effective radius of cloud water (m) +130 130 Effective radius of rain (m) +131 131 Effective radius of cloud ice (m) +132 132 Effective radius of snow (m) +133 133 Effective radius of graupel (m) +134 134 Effective radius of hail (m) +135 135 Effective radius of subgrid liquid clouds (m) +136 136 Effective radius of subgrid ice clouds (m) +137 137 Effective aspect ratio of rain (-) +138 138 Effective aspect ratio of cloud ice (-) +139 139 Effective aspect ratio of snow (-) +140 140 Effective aspect ratio of graupel (-) +141 141 Effective aspect ratio of hail (-) +142 142 Effective aspect ratio of subgrid ice clouds (-) +143 143 Potential evaporation rate (kg m–2 s–1) +144 144 specific rain water content (convective) (kg kg-1) +145 145 specific snow water content (convective) (kg kg-1) +# 146-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.13.table b/definitions/grib2/tables/26/4.2.0.13.table new file mode 100644 index 000000000..5086101ad --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.14.table b/definitions/grib2/tables/26/4.2.0.14.table new file mode 100644 index 000000000..215884737 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.15.table b/definitions/grib2/tables/26/4.2.0.15.table new file mode 100644 index 000000000..dfbc4d12f --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.15.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +15 15 Hybrid scan reflectivity (dB) +16 16 Hybrid scan reflectivity height (m) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.16.table b/definitions/grib2/tables/26/4.2.0.16.table new file mode 100644 index 000000000..0c240a853 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.17.table b/definitions/grib2/tables/26/4.2.0.17.table new file mode 100644 index 000000000..ce1867aca --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.17.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Lightning strike density (m-2 s-1) +1 1 Lightning potential index (LPI) (J kg-1) +2 2 Cloud-to-ground Lightning flash density (km-2 day-1) +3 3 Cloud-to-cloud Lightning flash density (km-2 day-1) +4 4 Total Lightning flash density (km-2 day-1) diff --git a/definitions/grib2/tables/26/4.2.0.18.table b/definitions/grib2/tables/26/4.2.0.18.table new file mode 100644 index 000000000..9d106f419 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.18.table @@ -0,0 +1,23 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +14 14 Specific activity concentration (Bq kg-1) +15 15 Maximum of air concentration in layer (Bq m-3) +16 16 Height of maximum air concentration (m) +17 17 Column-integrated air concentration (Bq m-2) +18 18 Column-averaged air concentration in layer (Bq m-3) +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.19.table b/definitions/grib2/tables/26/4.2.0.19.table new file mode 100644 index 000000000..be0b32145 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.19.table @@ -0,0 +1,45 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash ((Code table 4.206)) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing ((Code table 4.207)) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence ((Code table 4.208)) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime ((Code table 4.209)) +13 13 Contrail intensity ((Code table 4.210)) +14 14 Contrail engine type ((Code table 4.211)) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather ((Code table 4.225)) +26 26 Convective outlook ((Code table 4.224)) +27 27 Icing scenario ((Code table 4.227)) +28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) +29 29 Clear air turbulence (CAT) (m2/3 s-1) +30 30 Eddy dissipation parameter (m2/3 s-1) +31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) +32 32 Highest freezing level (m) +33 33 Visibility through liquid fog (m) +34 34 Visibility through ice fog (m) +35 35 Visibility through blowing snow (m) +36 36 Presence of snow squalls ((Code table 4.222)) +37 37 Icing severity ((Code table 4.228)) +38 38 Sky transparency index ((Code Table 4.214)) +39 39 Seeing index ((Code Table 4.214)) +40 40 Snow level (m) +# 41-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.190.table b/definitions/grib2/tables/26/4.2.0.190.table new file mode 100644 index 000000000..de621a924 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.191.table b/definitions/grib2/tables/26/4.2.0.191.table new file mode 100644 index 000000000..e3bba0ebe --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.2.table b/definitions/grib2/tables/26/4.2.0.2.table new file mode 100644 index 000000000..5446262e6 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.2.table @@ -0,0 +1,51 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) +37 37 Northward turbulent surface stress (N m-2 s) +38 38 Eastward turbulent surface stress (N m-2 s) +39 39 Eastward wind tendency due to parameterization (m s-2) +40 40 Northward wind tendency due to parameterization (m s-2) +41 41 u-component of geostrophic wind (m s-1) +42 42 v-component of geostrophic wind (m s-1) +43 43 Geostrophic wind direction (degree true) +44 44 Geostrophic wind speed (m s-1) +45 45 Unbalanced component of divergence (s-1) +46 46 Vorticity advection (s-2) +# 47-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.20.table b/definitions/grib2/tables/26/4.2.0.20.table new file mode 100644 index 000000000..042732760 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.20.table @@ -0,0 +1,64 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +15 15 Dry deposition velocity (m/s) +16 16 Mass mixing ratio with respect to dry air (kg/kg) +17 17 Mass mixing ratio with respect to wet air (kg/kg) +# 18-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +60 60 Aerosol specific number concentration (kg-1) +61 61 Maximum of mass density in layer (kg m-3) +62 62 Height of maximum mass density (m) +63 63 Column-averaged mass density in layer (kg m-3) +64 64 Mole fraction with respect to dry air (mol/mol) +65 65 Mole fraction with respect to wet air (mol/mol) +66 66 Column-integrated in-cloud scavenging rate by precipitation (kg m-2 s-1) +67 67 Column-integrated below-cloud scavenging rate by precipitation (kg m-2 s-1) +68 68 Column-integrated release rate from evaporating precipitation (kg m-2 s-1) +69 69 Column-integrated in-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) +70 70 Column-integrated below-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) +71 71 Column-integrated release rate from evaporating large-scale precipitation (kg m-2 s-1) +72 72 Column-integrated in-cloud scavenging rate by convective precipitation (kg m-2 s-1) +73 73 Column-integrated below-cloud scavenging rate by convective precipitation (kg m-2 s-1) +74 74 Column-integrated release rate from evaporating convective precipitation (kg m-2 s-1) +75 75 Wildfire flux (kg m-2 s-1) +76 76 Emission rate (kg kg-1 s-1) +77 77 Surface emission flux (kg m-2 s-1) +# 78-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (/m) +106 106 Aerosol absorption coefficient (/m) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (/m) +110 110 Aerosol lidar extinction from the ground (/m) +111 111 Angstrom exponent (Numeric) +# 112-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.3.table b/definitions/grib2/tables/26/4.2.0.3.table new file mode 100644 index 000000000..34941dcab --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.3.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +27 27 Updraught mass flux (kg m-2 s-1) +28 28 Downdraught mass flux (kg m-2 s-1) +29 29 Updraught detrainment rate (kg m-3 s-1) +30 30 Downdraught detrainment rate (kg m-3 s-1) +31 31 Unbalanced component of logarithm of surface pressure (-) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.4.table b/definitions/grib2/tables/26/4.2.0.4.table new file mode 100644 index 000000000..31dcfa522 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.4.table @@ -0,0 +1,25 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wavelength) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +13 13 Direct short-wave radiation flux (W m-2) +14 14 Diffuse short-wave radiation flux (W m-2) +# 15-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +52 52 Downward short-wave radiation flux, clear sky (W m-2) +53 53 Upward short-wave radiation flux, clear sky (W m-2) +54 54 Direct normal short-wave radiation flux (W m-2) +# 55-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.5.table b/definitions/grib2/tables/26/4.2.0.5.table new file mode 100644 index 000000000..4550220b6 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.5.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +7 7 Brightness temperature (K) +8 8 Downward long-wave radiation flux, clear sky (W m-2) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.6.table b/definitions/grib2/tables/26/4.2.0.6.table new file mode 100644 index 000000000..e39e7461c --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.6.table @@ -0,0 +1,50 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type ((Code table 4.203)) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage ((Code table 4.204)) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +36 36 Fraction of stratiform precipitation cover (Proportion) +37 37 Fraction of convective precipitation cover (Proportion) +38 38 Mass density of cloud droplets (kg m-3) +39 39 Mass density of cloud ice (kg m-3) +40 40 Mass density of convective cloud water droplets (kg m-3) +# 41-46 Reserved +47 47 Volume fraction of cloud water droplets (Numeric) +48 48 Volume fraction of cloud ice particles (Numeric) +49 49 Volume fraction of cloud (ice and/or water) (Numeric) +50 50 Fog (%) +# 51-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.7.table b/definitions/grib2/tables/26/4.2.0.7.table new file mode 100644 index 000000000..04d7f393f --- /dev/null +++ b/definitions/grib2/tables/26/4.2.0.7.table @@ -0,0 +1,25 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraught helicity (m2 s-2) +16 16 Bulk Richardson number (Numeric) +17 17 Gradient Richardson number (Numeric) +18 18 Flux Richardson number (Numeric) +19 19 Convective available potential energy - shear (m2 s-2) +20 20 Thunderstorm intensity index (Code table 4.246) +# 21-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.1.0.table b/definitions/grib2/tables/26/4.2.1.0.table new file mode 100644 index 000000000..e906af726 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.1.0.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover ((Code table 4.215)) +3 3 Elevation of snow-covered terrain ((Code table 4.216)) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +8 8 Groundwater upper storage (kg m-2) +9 9 Groundwater lower storage (kg m-2) +10 10 Side flow into river channel (m3 s-1 m-1) +11 11 River storage of water (m3) +12 12 Floodplain storage of water (m3) +13 13 Depth of water on soil surface (kg m-2) +14 14 Upstream accumulated precipitation (kg m-2) +15 15 Upstream accumulated snow melt (kg m-2) +16 16 Percolation rate (kg m-2 s-1) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.1.1.table b/definitions/grib2/tables/26/4.2.1.1.table new file mode 100644 index 000000000..b488eb0bd --- /dev/null +++ b/definitions/grib2/tables/26/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.1.2.table b/definitions/grib2/tables/26/4.2.1.2.table new file mode 100644 index 000000000..ec9b11d41 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.1.2.table @@ -0,0 +1,15 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) +13 13 Cross-sectional area of flow in channel (m2) diff --git a/definitions/grib2/tables/26/4.2.10.0.table b/definitions/grib2/tables/26/4.2.10.0.table new file mode 100644 index 000000000..de15555c0 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.10.0.table @@ -0,0 +1,69 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Mean direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m/s) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m/s) +22 22 v-component surface Stokes drift (m/s) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m/s) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (/s) +46 46 Peak wave direction (deg) +47 47 Significant wave height of first swell partition (m) +48 48 Significant wave height of second swell partition (m) +49 49 Significant wave height of third swell partition (m) +50 50 Mean wave period of first swell partition (s) +51 51 Mean wave period of second swell partition (s) +52 52 Mean wave period of third swell partition (s) +53 53 Mean wave direction of first swell partition (deg) +54 54 Mean wave direction of second swell partition (deg) +55 55 Mean wave direction of third swell partition (deg) +56 56 Wave directional width of first swell partition (-) +57 57 Wave directional width of second swell partition (-) +58 58 Wave directional width of third swell partition (-) +59 59 Wave frequency width of first swell partition (-) +60 60 Wave frequency width of second swell partition (-) +61 61 Wave frequency width of third swell partition (-) +62 62 Wave frequency width (-) +63 63 Frequency width of wind waves (-) +64 64 Frequency width of total swell (-) +# 65-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.10.1.table b/definitions/grib2/tables/26/4.2.10.1.table new file mode 100644 index 000000000..00a084e34 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.10.1.table @@ -0,0 +1,9 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +4 4 Rip current occurrence probability (%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.10.191.table b/definitions/grib2/tables/26/4.2.10.191.table new file mode 100644 index 000000000..524929e78 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.10.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +2 2 Reserved +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.10.2.table b/definitions/grib2/tables/26/4.2.10.2.table new file mode 100644 index 000000000..6797062ac --- /dev/null +++ b/definitions/grib2/tables/26/4.2.10.2.table @@ -0,0 +1,17 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Module of ice internal pressure (Pa m) +10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) +11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) +12 12 Compressive ice strength (N/m) +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.10.3.table b/definitions/grib2/tables/26/4.2.10.3.table new file mode 100644 index 000000000..9f9492f04 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.10.3.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +2 2 Heat exchange coefficient (-) +3 3 Practical salinity (Numeric) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.10.4.table b/definitions/grib2/tables/26/4.2.10.4.table new file mode 100644 index 000000000..69ba0cc66 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.10.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2/s) +5 5 Ocean vertical salt diffusivity (m2/s) +6 6 Ocean vertical momentum diffusivity (m2/s) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (/m) +14 14 Water depth (m) +15 15 Water temperature (K) +16 16 Water density (rho) (kg m-3) +17 17 Water density anomaly (sigma) (kg m-3) +18 18 Water potential temperature (theta) (K) +19 19 Water potential density (rho theta) (kg m-3) +20 20 Water potential density anomaly (sigma theta) (kg m-3) +21 21 Practical salinity (Numeric) +# 22-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.2.0.table b/definitions/grib2/tables/26/4.2.2.0.table new file mode 100644 index 000000000..a6df872b1 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.2.0.table @@ -0,0 +1,44 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use ((Code table 4.212)) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +33 33 Water runoff and drainage (kg m-2) +34 34 Surface water runoff (kg m-2) +35 35 Tile class ((Code table 4.243)) +36 36 Tile fraction (Proportion) +37 37 Tile percentage (%) +38 38 Soil volumetric ice content (water equivalent) (m3 m-3) +39 39 Evapotranspiration rate (kg m-2 s-1) +# 40-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.2.3.table b/definitions/grib2/tables/26/4.2.2.3.table new file mode 100644 index 000000000..1dcf36a91 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.2.3.table @@ -0,0 +1,33 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type ((Code table 4.213)) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +23 23 Liquid water in snow pack (kg m-2) +24 24 Frost index (K day-1) +25 25 Snow depth at elevation bands (kg m-2) +26 26 Soil heat flux (W m-2) +27 27 Soil depth (m) +28 28 Snow temperature (K) +# 29-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.2.4.table b/definitions/grib2/tables/26/4.2.2.4.table new file mode 100644 index 000000000..649ddf969 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.2.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook ((Code table 4.224)) +1 1 Fire outlook due to dry thunderstorm ((Code table 4.224)) +2 2 Haines index (Numeric) +3 3 Fire burned area (%) +4 4 Fosberg index (Numeric) +5 5 Forest Fire Weather Index (as defined by the Canadian Forest Service) (Numeric) +6 6 Fine Fuel Moisture Code (as defined by the Canadian Forest Service) (Numeric) +7 7 Duff Moisture Code (as defined by the Canadian Forest Service) (Numeric) +8 8 Drought Code (as defined by the Canadian Forest Service) (Numeric) +9 9 Initial Fire Spread Index (as defined by the Canadian Forest Service) (Numeric) +10 10 Fire Buildup Index (as defined by the Canadian Forest Service) (Numeric) +11 11 Fire Daily Severity Rating (as defined by the Canadian Forest Service) (Numeric) +12 12 Keetch-Byram drought index (Numeric) +13 13 Drought factor (as defined by the Australian forest service ) (Numeric) +14 14 Rate of spread (as defined by the Australian forest service ) (m/s) +15 15 Fire danger index (as defined by the Australian forest service ) (Numeric) +16 16 Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) (Numeric) +17 17 Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) (Numeric) +18 18 Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) (%) +19 19 Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) (Joule/m2) +# 20-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.2.5.table b/definitions/grib2/tables/26/4.2.2.5.table new file mode 100644 index 000000000..122f0aa23 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.2.5.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Glacier cover (Proportion) +1 1 Glacier temperature (K) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.20.0.table b/definitions/grib2/tables/26/4.2.20.0.table new file mode 100644 index 000000000..9cd936387 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.20.0.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Universal thermal climate index (K) +1 1 Mean radiant temperature (K) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.20.1.table b/definitions/grib2/tables/26/4.2.20.1.table new file mode 100644 index 000000000..bdddca5f9 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.20.1.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Malaria cases (Fraction) +1 1 Malaria circumsporozoite protein rate (Fraction) +2 2 Plasmodium falciparum entomological inoculation rate (Bites per day per person) +3 3 Human bite rate by anopheles vectors (Bites per day per person) +4 4 Malaria immunity (Fraction) +5 5 Falciparum parasite rates (Fraction) +6 6 Detectable falciparum parasite ratio (after day 10) (Fraction) +7 7 Anopheles vector to host ratio (Fraction) +8 8 Anopheles vector number (Number m-2) +9 9 Fraction of malarial vector reproductive habitat (Fraction) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.20.2.table b/definitions/grib2/tables/26/4.2.20.2.table new file mode 100644 index 000000000..0804bcafd --- /dev/null +++ b/definitions/grib2/tables/26/4.2.20.2.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Population density (Person m-2) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.3.0.table b/definitions/grib2/tables/26/4.2.3.0.table new file mode 100644 index 000000000..81ee28205 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask ((Code table 4.217)) +8 8 Pixel scene type ((Code table 4.218)) +9 9 Fire detection indicator ((Code table 4.223)) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.3.1.table b/definitions/grib2/tables/26/4.2.3.1.table new file mode 100644 index 000000000..7d4364f4d --- /dev/null +++ b/definitions/grib2/tables/26/4.2.3.1.table @@ -0,0 +1,35 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u-component of wind (m/s) +5 5 Estimated v-component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-26 Reserved +27 27 Bidirectional reflectance factor (numeric) +28 28 Brightness temperature (K) +29 29 Scaled radiance (numeric) +# 30-97 Reserved +98 98 Correlation coefficient between MPE rain-rates for the co-located IR data and the microwave data rain-rates (Numeric) +99 99 Standard deviation between MPE rain-rates for the co-located IR data and the microwave data rain-rates (kg m-2 s-1) +# 100-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.3.2.table b/definitions/grib2/tables/26/4.2.3.2.table new file mode 100644 index 000000000..2726489c8 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.3.2.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Clear sky probability (%) +1 1 Cloud top temperature (K) +2 2 Cloud top pressure (Pa) +3 3 Cloud type ((Code table 4.218)) +4 4 Cloud phase ((Code table 4.218)) +5 5 Cloud optical depth (Numeric) +6 6 Cloud particle effective radius (m) +7 7 Cloud liquid water path (kg m-2) +8 8 Cloud ice water path (kg m-2) +9 9 Cloud albedo (Numeric) +10 10 Cloud emissivity (Numeric) +11 11 Effective absorption optical depth ratio (Numeric) +30 30 Measurement cost (Numeric) +31 31 Upper layer cloud optical depth (Numeric) +32 32 Upper layer cloud top pressure (Pa) +33 33 Upper layer cloud effective radius (m) +34 34 Error in upper layer cloud optical depth (Numeric) +35 35 Error in upper layer cloud top pressure (Pa) +36 36 Error in upper layer cloud effective radius (m) +37 37 Lower layer cloud optical depth (Numeric) +38 38 Lower layer cloud top pressure (Pa) +39 39 Error in lower layer cloud optical depth (Numeric) +40 40 Error in lower layer cloud top pressure (Pa) diff --git a/definitions/grib2/tables/26/4.2.3.3.table b/definitions/grib2/tables/26/4.2.3.3.table new file mode 100644 index 000000000..cb5c4b6ed --- /dev/null +++ b/definitions/grib2/tables/26/4.2.3.3.table @@ -0,0 +1,4 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Probability of encountering marginal visual flight rule conditions (%) +1 1 Probability of encountering low instrument flight rule conditions (%) +2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/definitions/grib2/tables/26/4.2.3.4.table b/definitions/grib2/tables/26/4.2.3.4.table new file mode 100644 index 000000000..f86d2d653 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.3.4.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Volcanic ash probability (%) +1 1 Volcanic ash cloud top temperature (K) +2 2 Volcanic ash cloud top pressure (Pa) +3 3 Volcanic ash cloud top height (m) +4 4 Volcanic ash cloud emissivity (Numeric) +5 5 Volcanic ash effective absorption optical depth ratio (Numeric) +6 6 Volcanic ash cloud optical depth (Numeric) +7 7 Volcanic ash column density (kg m-2) +8 8 Volcanic ash particle effective radius (m) diff --git a/definitions/grib2/tables/26/4.2.3.5.table b/definitions/grib2/tables/26/4.2.3.5.table new file mode 100644 index 000000000..92a050db0 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.3.5.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Interface sea-surface temperature (K) +1 1 Skin sea-surface temperature (K) +2 2 Sub-skin sea-surface temperature (K) +3 3 Foundation sea-surface temperature (K) +4 4 Estimated bias between sea-surface temperature and standard (K) +5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/definitions/grib2/tables/26/4.2.3.6.table b/definitions/grib2/tables/26/4.2.3.6.table new file mode 100644 index 000000000..471beed55 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.3.6.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Global solar irradiance (W m-2) +1 1 Global solar exposure (J m-2) +2 2 Direct solar irradiance (W m-2) +3 3 Direct solar exposure (J m-2) +4 4 Diffuse solar irradiance (W m-2) +5 5 Diffuse solar exposure (J m-2) diff --git a/definitions/grib2/tables/26/4.2.4.0.table b/definitions/grib2/tables/26/4.2.4.0.table new file mode 100644 index 000000000..0b35aba26 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.4.0.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Electron temperature (K) +2 2 Proton temperature (K) +3 3 Ion temperature (K) +4 4 Parallel temperature (K) +5 5 Perpendicular temperature (K) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.4.1.table b/definitions/grib2/tables/26/4.2.4.1.table new file mode 100644 index 000000000..abd58440a --- /dev/null +++ b/definitions/grib2/tables/26/4.2.4.1.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Velocity magnitude (speed) (m s-1) +1 1 1st vector component of velocity (coordinate system dependent) (m s-1) +2 2 2nd vector component of velocity (coordinate system dependent) (m s-1) +3 3 3rd vector component of velocity (coordinate system dependent) (m s-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.4.10.table b/definitions/grib2/tables/26/4.2.4.10.table new file mode 100644 index 000000000..420d2b43d --- /dev/null +++ b/definitions/grib2/tables/26/4.2.4.10.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scintillation index (sigma phi) (rad) +1 1 Scintillation index S4 (Numeric) +2 2 Rate of Change of TEC Index (ROTI) (TECU/min) +3 3 Disturbance Ionosphere Index Spatial Gradient (DIXSG) (Numeric) +4 4 Along Arc TEC Rate (AATR) (TECU/min) +5 5 Kp (Numeric) +6 6 Equatorial disturbance storm time index (Dst) (nT) +7 7 Auroral Electrojet (AE) (nT) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.4.2.table b/definitions/grib2/tables/26/4.2.4.2.table new file mode 100644 index 000000000..8dd05fcda --- /dev/null +++ b/definitions/grib2/tables/26/4.2.4.2.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Particle number density (m-3) +1 1 Electron density (m-3) +2 2 Proton density (m-3) +3 3 Ion density (m-3) +4 4 Vertical total electron content (TECU) +5 5 HF absorption frequency (Hz) +6 6 HF absorption (dB) +7 7 Spread F (m) +8 8 h’ (m) +9 9 Critical frequency (Hz) +10 10 Maximal usable frequency (MUF) (Hz) +11 11 Peak height (hm) (m) +12 12 Peak density (Nm) (m-3) +13 13 Equivalent slab thickness (tau) (km) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.4.3.table b/definitions/grib2/tables/26/4.2.4.3.table new file mode 100644 index 000000000..a46f4a403 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.4.3.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Magnetic field magnitude (T) +1 1 1st vector component of magnetic field (T) +2 2 2nd vector component of magnetic field (T) +3 3 3rd vector component of magnetic field (T) +4 4 Electric field magnitude (V m-1) +5 5 1st vector component of electric field (V m-1) +6 6 2nd vector component of electric field (V m-1) +7 7 3rd vector component of electric field (V m-1) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.4.4.table b/definitions/grib2/tables/26/4.2.4.4.table new file mode 100644 index 000000000..b71abeb93 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.4.4.table @@ -0,0 +1,11 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Proton flux (differential) ((m2 s sr eV)-1) +1 1 Proton flux (integral) ((m2 s sr )-1) +2 2 Electron flux (differential) ((m2 s sr eV)-1) +3 3 Electron flux (integral) ((m2 s sr)-1) +4 4 Heavy ion flux (differential) ((m2 s sr eV/nuc)-1) +5 5 Heavy ion flux (integral) ((m2 s sr)-1) +6 6 Cosmic ray neutron flux (/h) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.4.5.table b/definitions/grib2/tables/26/4.2.4.5.table new file mode 100644 index 000000000..014ea22fa --- /dev/null +++ b/definitions/grib2/tables/26/4.2.4.5.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Amplitude (dB) +1 1 Phase (rad) +2 2 Frequency (Hz) +3 3 Wave length (m) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.4.6.table b/definitions/grib2/tables/26/4.2.4.6.table new file mode 100644 index 000000000..67f551f7a --- /dev/null +++ b/definitions/grib2/tables/26/4.2.4.6.table @@ -0,0 +1,11 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Integrated solar irradiance (W m-2) +1 1 Solar X-ray flux (XRS long) (W m-2) +2 2 Solar X-ray flux (XRS short) (W m-2) +3 3 Solar EUV irradiance (W m-2) +4 4 Solar spectral irradiance (W m-2 nm-1) +5 5 F10.7 (W m-2 Hz-1) +6 6 Solar radio emissions (W m-2 Hz-1) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.4.7.table b/definitions/grib2/tables/26/4.2.4.7.table new file mode 100644 index 000000000..9b93bcff1 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.4.7.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Limb intensity (J m-2 s-1) +1 1 Disk intensity (J m-2 s-1) +2 2 Disk intensity day (J m-2 s-1) +3 3 Disk intensity night (J m-2 s-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.4.8.table b/definitions/grib2/tables/26/4.2.4.8.table new file mode 100644 index 000000000..358b91ca7 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.4.8.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 X-ray radiance (W sr-1 m-2) +1 1 EUV radiance (W sr-1 m-2) +2 2 H-alpha radiance (W sr-1 m-2) +3 3 White light radiance (W sr-1 m-2) +4 4 CaII-K radiance (W sr-1 m-2) +5 5 White light coronagraph radiance (W sr-1 m-2) +6 6 Heliospheric radiance (W sr-1 m-2) +7 7 Thematic mask (Numeric) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.4.9.table b/definitions/grib2/tables/26/4.2.4.9.table new file mode 100644 index 000000000..e96c81ba3 --- /dev/null +++ b/definitions/grib2/tables/26/4.2.4.9.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pedersen conductivity (S m-1) +1 1 Hall conductivity (S m-1) +2 2 Parallel conductivity (S m-1) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.201.table b/definitions/grib2/tables/26/4.201.table new file mode 100644 index 000000000..44943d5e0 --- /dev/null +++ b/definitions/grib2/tables/26/4.201.table @@ -0,0 +1,17 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +11 11 Drizzle +12 12 Freezing drizzle +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.202.table b/definitions/grib2/tables/26/4.202.table new file mode 100644 index 000000000..438502ff9 --- /dev/null +++ b/definitions/grib2/tables/26/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.203.table b/definitions/grib2/tables/26/4.203.table new file mode 100644 index 000000000..8a9aedf7a --- /dev/null +++ b/definitions/grib2/tables/26/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.204.table b/definitions/grib2/tables/26/4.204.table new file mode 100644 index 000000000..481372936 --- /dev/null +++ b/definitions/grib2/tables/26/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (6-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.205.table b/definitions/grib2/tables/26/4.205.table new file mode 100644 index 000000000..5b4484dfd --- /dev/null +++ b/definitions/grib2/tables/26/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.206.table b/definitions/grib2/tables/26/4.206.table new file mode 100644 index 000000000..02c3dfdf9 --- /dev/null +++ b/definitions/grib2/tables/26/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.207.table b/definitions/grib2/tables/26/4.207.table new file mode 100644 index 000000000..8ddb2e048 --- /dev/null +++ b/definitions/grib2/tables/26/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.208.table b/definitions/grib2/tables/26/4.208.table new file mode 100644 index 000000000..b83685a1a --- /dev/null +++ b/definitions/grib2/tables/26/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.209.table b/definitions/grib2/tables/26/4.209.table new file mode 100644 index 000000000..cb7617071 --- /dev/null +++ b/definitions/grib2/tables/26/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.210.table b/definitions/grib2/tables/26/4.210.table new file mode 100644 index 000000000..524a6ca73 --- /dev/null +++ b/definitions/grib2/tables/26/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.211.table b/definitions/grib2/tables/26/4.211.table new file mode 100644 index 000000000..098eb2d43 --- /dev/null +++ b/definitions/grib2/tables/26/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.212.table b/definitions/grib2/tables/26/4.212.table new file mode 100644 index 000000000..1a085b88d --- /dev/null +++ b/definitions/grib2/tables/26/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.213.table b/definitions/grib2/tables/26/4.213.table new file mode 100644 index 000000000..c65784a00 --- /dev/null +++ b/definitions/grib2/tables/26/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.214.table b/definitions/grib2/tables/26/4.214.table new file mode 100644 index 000000000..9df466fe5 --- /dev/null +++ b/definitions/grib2/tables/26/4.214.table @@ -0,0 +1,11 @@ +# Code table 4.214 - Environmental Factor Qualifier +0 0 Worst +1 1 Very poor +2 2 Poor +3 3 Average +4 4 Good +5 5 Excellent +# 6-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.215.table b/definitions/grib2/tables/26/4.215.table new file mode 100644 index 000000000..034db72be --- /dev/null +++ b/definitions/grib2/tables/26/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.216.table b/definitions/grib2/tables/26/4.216.table new file mode 100644 index 000000000..5d1460cef --- /dev/null +++ b/definitions/grib2/tables/26/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/definitions/grib2/tables/26/4.217.table b/definitions/grib2/tables/26/4.217.table new file mode 100644 index 000000000..a4452182c --- /dev/null +++ b/definitions/grib2/tables/26/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.218.table b/definitions/grib2/tables/26/4.218.table new file mode 100644 index 000000000..fcd06c348 --- /dev/null +++ b/definitions/grib2/tables/26/4.218.table @@ -0,0 +1,46 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation/crops +15 15 Permanent snow/ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +19 19 Warm liquid water cloud +20 20 Supercooled liquid water cloud +21 21 Mixed-phase cloud +22 22 Optically thin ice cloud +23 23 Optically thick ice cloud +24 24 Multilayered cloud +# 25-96 Reserved +97 97 Snow/ice on land +98 98 Snow/ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud/fog/stratus +102 102 Low cloud/stratocumulus +103 103 Low cloud/unknown type +104 104 Medium cloud/nimbostratus +105 105 Medium cloud/altostratus +106 106 Medium cloud/unknown type +107 107 High cloud/cumulus +108 108 High cloud/cirrus +109 109 High cloud/unknown +110 110 Unknown cloud type +111 111 Single layer water cloud +112 112 Single layer ice cloud +# 113-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.219.table b/definitions/grib2/tables/26/4.219.table new file mode 100644 index 000000000..86df0522e --- /dev/null +++ b/definitions/grib2/tables/26/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.220.table b/definitions/grib2/tables/26/4.220.table new file mode 100644 index 000000000..93e841f8b --- /dev/null +++ b/definitions/grib2/tables/26/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.221.table b/definitions/grib2/tables/26/4.221.table new file mode 100644 index 000000000..8448533d7 --- /dev/null +++ b/definitions/grib2/tables/26/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.222.table b/definitions/grib2/tables/26/4.222.table new file mode 100644 index 000000000..57f113014 --- /dev/null +++ b/definitions/grib2/tables/26/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.223.table b/definitions/grib2/tables/26/4.223.table new file mode 100644 index 000000000..f0deb076a --- /dev/null +++ b/definitions/grib2/tables/26/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/definitions/grib2/tables/26/4.224.table b/definitions/grib2/tables/26/4.224.table new file mode 100644 index 000000000..e87cde4bb --- /dev/null +++ b/definitions/grib2/tables/26/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/26/4.225.table b/definitions/grib2/tables/26/4.225.table new file mode 100644 index 000000000..9dc374087 --- /dev/null +++ b/definitions/grib2/tables/26/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/definitions/grib2/tables/26/4.227.table b/definitions/grib2/tables/26/4.227.table new file mode 100644 index 000000000..27c76553d --- /dev/null +++ b/definitions/grib2/tables/26/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/definitions/grib2/tables/26/4.228.table b/definitions/grib2/tables/26/4.228.table new file mode 100644 index 000000000..559ae916a --- /dev/null +++ b/definitions/grib2/tables/26/4.228.table @@ -0,0 +1,8 @@ +# Code table 4.228 - Icing severity +0 0 None +1 1 Trace +2 2 Light +3 3 Moderate +4 4 Severe +# 5-254 Reserved +255 255 Missing value diff --git a/definitions/grib2/tables/26/4.230.table b/definitions/grib2/tables/26/4.230.table new file mode 100644 index 000000000..147ff9747 --- /dev/null +++ b/definitions/grib2/tables/26/4.230.table @@ -0,0 +1,512 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium cation NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HOO +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Dihydrogen H2 +21 21 Atomic nitrogen N +22 22 Sulphate anion SO42- +23 23 Atomic Radon Rn +24 24 Mercury vapour Hg(0) +25 25 Mercury(II) cation Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Dioxygen O2 +39 39 Nitryl chloride NO2Cl +40 40 Sulphuric acid H2SO4 +41 41 Hydrogen sulphide H2S +42 42 Sulphur trioxide SO3 +43 43 Bromine Br2 +44 44 Hydrofluoric acid HF +45 45 Sulphur hexafluoride SF6 +46 46 Chlorine Cl2 +# 47-9999 Reserved +10000 10000 Hydroxyl radical HO +10001 10001 Methyl peroxy radical CH3OO +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butane (all isomers) C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 XyleneC8H10 +10024 10024 Methanesulphonic acid CH3SO3H +10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO +10026 10026 Peroxyacetyl radical CH3C(O)OO +10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH +10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO +10029 10029 Acetone (propan-2-one) CH3C(O)CH3 +10030 10030 Ethyl dioxidanyl radical CH3CH2OO +10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 +10032 10032 Acetaldehyde (ethanal) CH3CHO +10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO +10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH +10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH +10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O +10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO +10038 10038 Glyoxal (oxaldehyde) OCHCHO +10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO +10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH +10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH +10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH +10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 +10044 10044 Phenoxy radical C6H5O +10045 10045 Methyl radical CH3 +10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS +10047 10047 Dibromomethane CH2Br2 +10048 10048 Methoxy radical CH3O +10049 10049 Tribromomethane CHBr3 +10050 10050 Formyl radical (oxomethyl radical) HOC +10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO +10052 10052 Ethyl hydroperoxide CH3CH2OOH +10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO +10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH +# 10055-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, ...) +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO +# 10502-20000 Reserved +20001 20001 Hydrogen chloride HCl +20002 20002 CFC-11 (trichlorofluoromethane) CCl3F +20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 +20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 +20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 +20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 +20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 +20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 +20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 +20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 +20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 +20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 +20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 +20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 +20015 20015 HCC-40 (methyl chloride) CH3Cl +20016 20016 HCC-10 (carbon tetrachloride) CCl4 +20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 +20018 20018 HBC-40B1 (methyl bromide) CH3Br +20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 +20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 +20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 +20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F +# 20023-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +# 30001-30009 Reserved +30010 30010 Tritium (Hydrogen 3) H-3 +30011 30011 Tritium organic bounded H-3o +30012 30012 Tritium inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +30295 30295 Carbon-13 C-13 +30296 30296 Lead Pb +# 30297-39999 Reserved +40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 +40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 +40002 40002 Singlet excited oxygen atom O(1D) +40003 40003 Triplet ground state oxygen atom O(3P) +# 40004-59999 Reserved +60000 60000 HOx radical (OH+HO2) HOx +60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC +60016 60016 Lumped oxygenated hydrocarbons OVOC +60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx +60018 60018 Organic aldehydes RCHO +60019 60019 Organic peroxides ROOH +60020 60020 Organic nitrates RNO3 +60021 60021 Ethers ROR +60022 60022 Amines NRRR +60023 60023 Ketones RC(O)R +60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R +60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R +60026 60026 Hydroxy ketones RC(OH)C(O)R +60027 60027 Oxides Ox +# 60028-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +# 62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +# 62024 Reserved +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +# 62027 Reserved +62028 62028 Total aerosol hydrophilic +62029 62029 Total aerosol hydrophobic +# 62030-62099 Reserved +62100 62100 Alnus (alder) pollen +62101 62101 Betula (birch) pollen +62102 62102 Castanea (chestnut) pollen +62103 62103 Carpinus (hornbeam) pollen +62104 62104 Corylus (hazel) pollen +62105 62105 Fagus (beech) pollen +62106 62106 Fraxinus (ash) pollen +62107 62107 Pinus (pine) pollen +62108 62108 Platanus (plane) pollen +62109 62109 Populus (cottonwood, poplar) pollen +62110 62110 Quercus (oak) pollen +62111 62111 Salix (willow) pollen +62112 62112 Taxus (yew) pollen +62113 62113 Tilia (lime, linden) pollen +62114 62114 Ulmus (elm) pollen +# 62115-62199 Reserved +62200 62200 Ambrosia (ragweed, burr-ragweed) pollen +62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen +62203 62203 Plantago (plantain) pollen +62204 62204 Rumex (dock, sorrel) pollen +62205 62205 Urtica (nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (grass family) pollen +# 62301-62999 Reserved +# 63000-65534 For experimental use at local level +65535 65535 Missing diff --git a/definitions/grib2/tables/26/4.233.table b/definitions/grib2/tables/26/4.233.table new file mode 100644 index 000000000..051d603a9 --- /dev/null +++ b/definitions/grib2/tables/26/4.233.table @@ -0,0 +1,512 @@ +# Code table 4.233 - Aerosol type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium cation NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HOO +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Dihydrogen H2 +21 21 Atomic nitrogen N +22 22 Sulphate anion SO42- +23 23 Atomic Radon Rn +24 24 Mercury vapour Hg(0) +25 25 Mercury(II) cation Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Dioxygen O2 +39 39 Nitryl chloride NO2Cl +40 40 Sulphuric acid H2SO4 +41 41 Hydrogen sulphide H2S +42 42 Sulphur trioxide SO3 +43 43 Bromine Br2 +44 44 Hydrofluoric acid HF +45 45 Sulphur hexafluoride SF6 +46 46 Chlorine Cl2 +# 47-9999 Reserved +10000 10000 Hydroxyl radical HO +10001 10001 Methyl peroxy radical CH3OO +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butane (all isomers) C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 XyleneC8H10 +10024 10024 Methanesulphonic acid CH3SO3H +10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO +10026 10026 Peroxyacetyl radical CH3C(O)OO +10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH +10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO +10029 10029 Acetone (propan-2-one) CH3C(O)CH3 +10030 10030 Ethyl dioxidanyl radical CH3CH2OO +10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 +10032 10032 Acetaldehyde (ethanal) CH3CHO +10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO +10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH +10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH +10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O +10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO +10038 10038 Glyoxal (oxaldehyde) OCHCHO +10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO +10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH +10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH +10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH +10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 +10044 10044 Phenoxy radical C6H5O +10045 10045 Methyl radical CH3 +10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS +10047 10047 Dibromomethane CH2Br2 +10048 10048 Methoxy radical CH3O +10049 10049 Tribromomethane CHBr3 +10050 10050 Formyl radical (oxomethyl radical) HOC +10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO +10052 10052 Ethyl hydroperoxide CH3CH2OOH +10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO +10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH +# 10055-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, ...) +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO +# 10502-20000 Reserved +20001 20001 Hydrogen chloride HCl +20002 20002 CFC-11 (trichlorofluoromethane) CCl3F +20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 +20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 +20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 +20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 +20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 +20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 +20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 +20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 +20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 +20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 +20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 +20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 +20015 20015 HCC-40 (methyl chloride) CH3Cl +20016 20016 HCC-10 (carbon tetrachloride) CCl4 +20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 +20018 20018 HBC-40B1 (methyl bromide) CH3Br +20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 +20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 +20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 +20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F +# 20023-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +# 30001-30009 Reserved +30010 30010 Tritium (Hydrogen 3) H-3 +30011 30011 Tritium organic bounded H-3o +30012 30012 Tritium inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +30295 30295 Carbon-13 C-13 +30296 30296 Lead Pb +# 30297-39999 Reserved +40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 +40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 +40002 40002 Singlet excited oxygen atom O(1D) +40003 40003 Triplet ground state oxygen atom O(3P) +# 40004-59999 Reserved +60000 60000 HOx radical (OH+HO2) HOx +60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC +60016 60016 Lumped oxygenated hydrocarbons OVOC +60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx +60018 60018 Organic aldehydes RCHO +60019 60019 Organic peroxides ROOH +60020 60020 Organic nitrates RNO3 +60021 60021 Ethers ROR +60022 60022 Amines NRRR +60023 60023 Ketones RC(O)R +60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R +60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R +60026 60026 Hydroxy ketones RC(OH)C(O)R +60027 60027 Oxides Ox +# 60028-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +# 62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +# 62024 Reserved +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +# 62027 Reserved +62028 62028 Total aerosol hydrophilic +62029 62029 Total aerosol hydrophobic +# 62030-62099 Reserved +62100 62100 Alnus (alder) pollen +62101 62101 Betula (birch) pollen +62102 62102 Castanea (chestnut) pollen +62103 62103 Carpinus (hornbeam) pollen +62104 62104 Corylus (hazel) pollen +62105 62105 Fagus (beech) pollen +62106 62106 Fraxinus (ash) pollen +62107 62107 Pinus (pine) pollen +62108 62108 Platanus (plane) pollen +62109 62109 Populus (cottonwood, poplar) pollen +62110 62110 Quercus (oak) pollen +62111 62111 Salix (willow) pollen +62112 62112 Taxus (yew) pollen +62113 62113 Tilia (lime, linden) pollen +62114 62114 Ulmus (elm) pollen +# 62115-62199 Reserved +62200 62200 Ambrosia (ragweed, burr-ragweed) pollen +62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen +62203 62203 Plantago (plantain) pollen +62204 62204 Rumex (dock, sorrel) pollen +62205 62205 Urtica (nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (grass family) pollen +# 62301-62999 Reserved +# 63000-65534 For experimental use at local level +65535 65535 Missing diff --git a/definitions/grib2/tables/26/4.234.table b/definitions/grib2/tables/26/4.234.table new file mode 100644 index 000000000..816541ce9 --- /dev/null +++ b/definitions/grib2/tables/26/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/definitions/grib2/tables/26/4.236.table b/definitions/grib2/tables/26/4.236.table new file mode 100644 index 000000000..fbe093ce9 --- /dev/null +++ b/definitions/grib2/tables/26/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/definitions/grib2/tables/26/4.238.table b/definitions/grib2/tables/26/4.238.table new file mode 100644 index 000000000..7e1c8e4d0 --- /dev/null +++ b/definitions/grib2/tables/26/4.238.table @@ -0,0 +1,32 @@ +# Code table 4.238 - Source or sink +0 0 Other +1 1 Aviation +2 2 Lightning +3 3 Biogenic sources +4 4 Anthropogenic sources +5 5 Wild fires +6 6 Natural sources +7 7 Volcanoes +8 8 Bio-fuel +9 9 Fossil-fuel +10 10 Wetlands +11 11 Oceans +12 12 Elevated anthropogenic sources +13 13 Surface anthropogenic sources +14 14 Agriculture livestock +15 15 Agriculture soils +16 16 Agriculture waste burning +17 17 Agriculture (all) +18 18 Residential, commercial and other combustion +19 19 Power generation +20 20 Super power stations +21 21 Fugitives +22 22 Industrial process +23 23 Solvents +24 24 Ships +25 25 Wastes (solid and water) +26 26 Road transportation +27 27 Off-road transportation +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.240.table b/definitions/grib2/tables/26/4.240.table new file mode 100644 index 000000000..4daef3d13 --- /dev/null +++ b/definitions/grib2/tables/26/4.240.table @@ -0,0 +1,13 @@ +# Code table 4.240 - Type of distribution function +0 0 No specific distribution function given +1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre +2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg +3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) +4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance +5 5 Log-normal distribution with spatially variable number density, mean diameter and variance +6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) +7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) +8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type No. 7 (see above) with fixed variance(p1) and fixed particle density(p2) +# 9-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing value diff --git a/definitions/grib2/tables/26/4.241.table b/definitions/grib2/tables/26/4.241.table new file mode 100644 index 000000000..a037b4ba5 --- /dev/null +++ b/definitions/grib2/tables/26/4.241.table @@ -0,0 +1,9 @@ +# Code table 4.241 - Coverage attributes +0 0 Undefined +1 1 Unmodified +2 2 Snow covered +3 3 Flooded +4 4 Ice covered +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/definitions/grib2/tables/26/4.242.table b/definitions/grib2/tables/26/4.242.table new file mode 100644 index 000000000..083f88c29 --- /dev/null +++ b/definitions/grib2/tables/26/4.242.table @@ -0,0 +1,7 @@ +# Code table 4.242 - Tile classification +0 0 Reserved +1 1 Land use classes according to ESA-GlobCover GCV2009 +2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/definitions/grib2/tables/26/4.243.table b/definitions/grib2/tables/26/4.243.table new file mode 100644 index 000000000..b39053311 --- /dev/null +++ b/definitions/grib2/tables/26/4.243.table @@ -0,0 +1,43 @@ +# Code table 4.243 - Tile class +0 0 Reserved +1 1 Evergreen broadleaved forest +2 2 Deciduous broadleaved closed forest +3 3 Deciduous broadleaved open forest +4 4 Evergreen needle-leaf forest +5 5 Deciduous needle-leaf forest +6 6 Mixed leaf trees +7 7 Freshwater flooded trees +8 8 Saline water flooded trees +9 9 Mosaic tree/natural vegetation +10 10 Burnt tree cover +11 11 Evergreen shrubs closed-open +12 12 Deciduous shrubs closed-open +13 13 Herbaceous vegetation closed-open +14 14 Sparse herbaceous or grass +15 15 Flooded shrubs or herbaceous +16 16 Cultivated and managed areas +17 17 Mosaic crop/tree/natural vegetation +18 18 Mosaic crop/shrub/grass +19 19 Bare areas +20 20 Water +21 21 Snow and ice +22 22 Artificial surface +23 23 Ocean +24 24 Irrigated croplands +25 25 Rainfed croplands +26 26 Mosaic cropland (50-70%) - vegetation (20-50%) +27 27 Mosaic vegetation (50-70%) - cropland (20-50%) +28 28 Closed broadleaved evergreen forest +29 29 Closed needle-leaved evergreen forest +30 30 Open needle-leaved deciduous forest +31 31 Mixed broadleaved and needle-leaved forest +32 32 Mosaic shrubland (50-70%) - grassland (20-50%) +33 33 Mosaic grassland (50-70%) - shrubland (20-50%) +34 34 Closed to open shrubland +35 35 Sparse vegetation +36 36 Closed to open forest regularly flooded +37 37 Closed forest or shrubland permanently flooded +38 38 Closed to open grassland regularly flooded +39 39 Undefined +# 40-32767 Reserved +# 32768- Reserved for local use diff --git a/definitions/grib2/tables/26/4.244.table b/definitions/grib2/tables/26/4.244.table new file mode 100644 index 000000000..40534ee09 --- /dev/null +++ b/definitions/grib2/tables/26/4.244.table @@ -0,0 +1,7 @@ +# Code table 4.244 - Quality indicator +0 0 No quality information available +1 1 Failed +2 2 Passed +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.246.table b/definitions/grib2/tables/26/4.246.table new file mode 100644 index 000000000..ab22dbe1e --- /dev/null +++ b/definitions/grib2/tables/26/4.246.table @@ -0,0 +1,7 @@ +# Code table 4.246 - Thunderstorm intensity +0 0 No thunderstorm occurence +1 1 Weak thunderstorm +2 2 Moderate thunderstorm +3 3 Severe thunderstorm +# 4-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/26/4.247.table b/definitions/grib2/tables/26/4.247.table new file mode 100644 index 000000000..cd7fc90bd --- /dev/null +++ b/definitions/grib2/tables/26/4.247.table @@ -0,0 +1,7 @@ +# Code table 4.247 - Precipitation intensity +0 0 No precipitation occurrence +1 1 Light precipitation +2 2 Moderate precipitation +3 3 Heavy precipitation +# 4-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/26/4.3.table b/definitions/grib2/tables/26/4.3.table new file mode 100644 index 000000000..8ba9e08ab --- /dev/null +++ b/definitions/grib2/tables/26/4.3.table @@ -0,0 +1,23 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +14 14 Nowcast +15 15 Hindcast +16 16 Physical retrieval +17 17 Regression analysis +18 18 Difference between two forecasts +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.4.table b/definitions/grib2/tables/26/4.4.table new file mode 100644 index 000000000..7087ebddb --- /dev/null +++ b/definitions/grib2/tables/26/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.5.table b/definitions/grib2/tables/26/4.5.table new file mode 100644 index 000000000..e63b5e86a --- /dev/null +++ b/definitions/grib2/tables/26/4.5.table @@ -0,0 +1,86 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface (-) +2 2 Cloud base level (-) +3 3 Level of cloud tops (-) +4 4 Level of 0 degree C isotherm (-) +5 5 Level of adiabatic condensation lifted from the surface (-) +6 6 Maximum wind level (-) +7 7 Tropopause (-) +8 sfc Nominal top of the atmosphere (-) +9 9 Sea bottom (-) +10 10 Entire atmosphere (-) +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) +14 14 Level of free convection (LFC) (-) +15 15 Convective condensation level (CCL) (-) +16 16 Level of neutral buoyancy or equilibrium level (LNB) (-) +17 17 Departure level of the most unstable parcel of air (MUDL) +18 18 Departure level of a mixed layer parcel of air with specified layer depth (Pa) +# 19 Reserved +20 20 Isothermal level (K) +21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) +22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) +23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) +24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) +25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) +# 26-29 Reserved +30 30 Specified radius from the center of the Sun (m) +31 31 Solar photosphere +32 32 Ionospheric D-region level +33 33 Ionospheric E-region level +34 34 Ionospheric F1-region level +35 35 Ionospheric F2-region level +# 36-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level (-) +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level (-) +112 112 Reserved +113 113 Logarithmic hybrid level +114 sol Snow level (Numeric) +115 115 Sigma height level +# 116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level (-) +119 hpl Hybrid pressure level (-) +# 120-149 Reserved +150 150 Generalized vertical height coordinate +151 sol Soil level (Numeric) +152 sol Sea ice level (Numeric) +# 153-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom (-) +163 163 Bottom of sediment layer (-) +164 164 Bottom of thermally active sediment layer (-) +165 165 Bottom of sediment layer penetrated by thermal wave (-) +166 166 Mixing layer (-) +167 167 Bottom of root zone (-) +168 168 Ocean model level (Numeric) +169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) +170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) +# 171-173 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +# 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.6.table b/definitions/grib2/tables/26/4.6.table new file mode 100644 index 000000000..b2dfeb498 --- /dev/null +++ b/definitions/grib2/tables/26/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.7.table b/definitions/grib2/tables/26/4.7.table new file mode 100644 index 000000000..e0de0e1b2 --- /dev/null +++ b/definitions/grib2/tables/26/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.8.table b/definitions/grib2/tables/26/4.8.table new file mode 100644 index 000000000..ad883039c --- /dev/null +++ b/definitions/grib2/tables/26/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.9.table b/definitions/grib2/tables/26/4.9.table new file mode 100644 index 000000000..9f74599c3 --- /dev/null +++ b/definitions/grib2/tables/26/4.9.table @@ -0,0 +1,13 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +5 5 Probability of event equal to lower limit +6 6 Probability of event in above normal category +7 7 Probability of event in near normal category +8 8 Probability of event in below normal category +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.91.table b/definitions/grib2/tables/26/4.91.table new file mode 100644 index 000000000..44cf25f44 --- /dev/null +++ b/definitions/grib2/tables/26/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/definitions/grib2/tables/26/5.0.table b/definitions/grib2/tables/26/5.0.table new file mode 100644 index 000000000..27b1a89fd --- /dev/null +++ b/definitions/grib2/tables/26/5.0.table @@ -0,0 +1,22 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +# 5-39 Reserved +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +42 42 Grid point and spectral data - CCSDS recommended lossless compression +# 43-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52 Reserved +53 53 Spectral data for limited area models - complex packing +# 54-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing diff --git a/definitions/grib2/tables/26/5.1.table b/definitions/grib2/tables/26/5.1.table new file mode 100644 index 000000000..854330c74 --- /dev/null +++ b/definitions/grib2/tables/26/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/5.2.table b/definitions/grib2/tables/26/5.2.table new file mode 100644 index 000000000..40586a131 --- /dev/null +++ b/definitions/grib2/tables/26/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/5.25.table b/definitions/grib2/tables/26/5.25.table new file mode 100644 index 000000000..1b45f28a3 --- /dev/null +++ b/definitions/grib2/tables/26/5.25.table @@ -0,0 +1,9 @@ +# Code table 5.25 - type of bi-Fourier subtruncation +# 0-76 Reserved +77 77 Rectangular +# 78-87 Reserved +88 88 Elliptic +# 89-98 Reserved +99 99 Diamond +# 100-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/26/5.26.table b/definitions/grib2/tables/26/5.26.table new file mode 100644 index 000000000..9e91ebf2e --- /dev/null +++ b/definitions/grib2/tables/26/5.26.table @@ -0,0 +1,5 @@ +# Code table 5.26 - packing mode for axes +0 0 Spectral coefficients for axes are packed +1 1 Spectral coefficients for axes included in the unpacked subset +# 2-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/26/5.3.table b/definitions/grib2/tables/26/5.3.table new file mode 100644 index 000000000..c3b7b30fe --- /dev/null +++ b/definitions/grib2/tables/26/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/5.4.table b/definitions/grib2/tables/26/5.4.table new file mode 100644 index 000000000..8121c1819 --- /dev/null +++ b/definitions/grib2/tables/26/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/5.40.table b/definitions/grib2/tables/26/5.40.table new file mode 100644 index 000000000..b9bad2c39 --- /dev/null +++ b/definitions/grib2/tables/26/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/26/5.5.table b/definitions/grib2/tables/26/5.5.table new file mode 100644 index 000000000..3ef3eb070 --- /dev/null +++ b/definitions/grib2/tables/26/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/5.6.table b/definitions/grib2/tables/26/5.6.table new file mode 100644 index 000000000..6d5177877 --- /dev/null +++ b/definitions/grib2/tables/26/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/5.7.table b/definitions/grib2/tables/26/5.7.table new file mode 100644 index 000000000..5ab780056 --- /dev/null +++ b/definitions/grib2/tables/26/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/26/6.0.table b/definitions/grib2/tables/26/6.0.table new file mode 100644 index 000000000..2a29aa285 --- /dev/null +++ b/definitions/grib2/tables/26/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product From 57205c216939b760a560b7003c9ecd0442eb87e8 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 17 Nov 2020 17:25:00 +0000 Subject: [PATCH 137/683] Add WMO GRIB code/flag tables for v26 --- definitions/grib2/tables/26/4.1.192.table | 4 ++++ definitions/grib2/tables/26/4.192.table | 4 ++++ definitions/grib2/tables/26/stepType.table | 2 ++ 3 files changed, 10 insertions(+) create mode 100644 definitions/grib2/tables/26/4.1.192.table create mode 100644 definitions/grib2/tables/26/4.192.table create mode 100644 definitions/grib2/tables/26/stepType.table diff --git a/definitions/grib2/tables/26/4.1.192.table b/definitions/grib2/tables/26/4.1.192.table new file mode 100644 index 000000000..c428acab0 --- /dev/null +++ b/definitions/grib2/tables/26/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/definitions/grib2/tables/26/4.192.table b/definitions/grib2/tables/26/4.192.table new file mode 100644 index 000000000..e1fd91594 --- /dev/null +++ b/definitions/grib2/tables/26/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/definitions/grib2/tables/26/stepType.table b/definitions/grib2/tables/26/stepType.table new file mode 100644 index 000000000..4ec73e7a1 --- /dev/null +++ b/definitions/grib2/tables/26/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval From ceeefd72d64b0b21457b77e245295e0cf75ad6d3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 17 Nov 2020 18:07:45 +0000 Subject: [PATCH 138/683] Definitions: Add test for cfNames --- tests/CMakeLists.txt | 1 + tests/grib_cfNames.sh | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100755 tests/grib_cfNames.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index b20c11993..a039014bd 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -60,6 +60,7 @@ if( HAVE_BUILD_TOOLS ) definitions grib_calendar grib_md5 + grib_cfNames filter_substr grib_uerra grib_2nd_order_numValues diff --git a/tests/grib_cfNames.sh b/tests/grib_cfNames.sh new file mode 100755 index 000000000..f87ecebad --- /dev/null +++ b/tests/grib_cfNames.sh @@ -0,0 +1,43 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +label="grib_cfNames_test" +temp=temp.${label} +sample1=$ECCODES_SAMPLES_PATH/GRIB1.tmpl +sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl + +${tools_dir}/grib_set -s discipline=192,parameterCategory=128,parameterNumber=137 $sample2 $temp +grib_check_key_equals $temp cfName lwe_thickness_of_atmosphere_mass_content_of_water_vapor + +${tools_dir}/grib_set -s discipline=0,parameterNumber=20,parameterCategory=2 $sample2 $temp +grib_check_key_equals $temp cfName kinetic_energy_dissipation_in_atmosphere_boundary_layer +${tools_dir}/grib_set -s paramId=145 $sample2 $temp +grib_check_key_equals $temp cfName kinetic_energy_dissipation_in_atmosphere_boundary_layer +${tools_dir}/grib_set -s paramId=137 $sample2 $temp +grib_check_key_equals $temp cfName lwe_thickness_of_atmosphere_mass_content_of_water_vapor + +${tools_dir}/grib_set -s indicatorOfParameter=137,table2Version=128 $sample1 $temp +grib_check_key_equals $temp cfName lwe_thickness_of_atmosphere_mass_content_of_water_vapor + +${tools_dir}/grib_set -s paramId=145 $sample2 $temp +grib_check_key_equals $temp cfName kinetic_energy_dissipation_in_atmosphere_boundary_layer + +${tools_dir}/grib_set -s indicatorOfParameter=40,table2Version=3 $sample1 $temp +grib_check_key_equals $temp cfName lagrangian_tendency_of_air_pressure + +${tools_dir}/grib_set -s paramId=151154 $sample1 $temp +grib_check_key_equals $temp cfName surface_downward_northward_stress +${tools_dir}/grib_set -s paramId=151154 $sample2 $temp +grib_check_key_equals $temp cfName surface_downward_northward_stress + +# Clean up +rm -f $temp From 83de2c58bbf0c2ed67f5b45c0665da2559c2ee48 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Wed, 18 Nov 2020 13:40:38 +0000 Subject: [PATCH 139/683] creating necessary bits for template 4.88 - local time --- definitions/grib2/tables/27/0.0.table | 13 + definitions/grib2/tables/27/1.0.table | 27 + definitions/grib2/tables/27/1.1.table | 4 + definitions/grib2/tables/27/1.2.table | 9 + definitions/grib2/tables/27/1.3.table | 16 + definitions/grib2/tables/27/1.4.table | 13 + definitions/grib2/tables/27/1.5.table | 7 + definitions/grib2/tables/27/1.6.table | 8 + definitions/grib2/tables/27/3.0.table | 6 + definitions/grib2/tables/27/3.1.table | 54 ++ definitions/grib2/tables/27/3.10.table | 8 + definitions/grib2/tables/27/3.11.table | 7 + definitions/grib2/tables/27/3.15.table | 23 + definitions/grib2/tables/27/3.2.table | 16 + definitions/grib2/tables/27/3.20.table | 6 + definitions/grib2/tables/27/3.21.table | 8 + definitions/grib2/tables/27/3.25.table | 10 + definitions/grib2/tables/27/3.3.table | 9 + definitions/grib2/tables/27/3.4.table | 17 + definitions/grib2/tables/27/3.5.table | 5 + definitions/grib2/tables/27/3.6.table | 3 + definitions/grib2/tables/27/3.7.table | 5 + definitions/grib2/tables/27/3.8.table | 7 + definitions/grib2/tables/27/3.9.table | 4 + definitions/grib2/tables/27/4.0.table | 85 +++ definitions/grib2/tables/27/4.1.0.table | 27 + definitions/grib2/tables/27/4.1.1.table | 7 + definitions/grib2/tables/27/4.1.10.table | 10 + definitions/grib2/tables/27/4.1.2.table | 10 + definitions/grib2/tables/27/4.1.20.table | 7 + definitions/grib2/tables/27/4.1.3.table | 11 + definitions/grib2/tables/27/4.1.4.table | 15 + definitions/grib2/tables/27/4.10.table | 16 + definitions/grib2/tables/27/4.11.table | 10 + definitions/grib2/tables/27/4.12.table | 7 + definitions/grib2/tables/27/4.13.table | 6 + definitions/grib2/tables/27/4.14.table | 6 + definitions/grib2/tables/27/4.15.table | 11 + definitions/grib2/tables/27/4.16.table | 10 + definitions/grib2/tables/27/4.2.0.0.table | 36 ++ definitions/grib2/tables/27/4.2.0.1.table | 150 ++++++ definitions/grib2/tables/27/4.2.0.13.table | 5 + definitions/grib2/tables/27/4.2.0.14.table | 7 + definitions/grib2/tables/27/4.2.0.15.table | 21 + definitions/grib2/tables/27/4.2.0.16.table | 10 + definitions/grib2/tables/27/4.2.0.17.table | 6 + definitions/grib2/tables/27/4.2.0.18.table | 23 + definitions/grib2/tables/27/4.2.0.19.table | 45 ++ definitions/grib2/tables/27/4.2.0.190.table | 5 + definitions/grib2/tables/27/4.2.0.191.table | 8 + definitions/grib2/tables/27/4.2.0.2.table | 51 ++ definitions/grib2/tables/27/4.2.0.20.table | 64 +++ definitions/grib2/tables/27/4.2.0.3.table | 36 ++ definitions/grib2/tables/27/4.2.0.4.table | 25 + definitions/grib2/tables/27/4.2.0.5.table | 13 + definitions/grib2/tables/27/4.2.0.6.table | 50 ++ definitions/grib2/tables/27/4.2.0.7.table | 25 + definitions/grib2/tables/27/4.2.1.0.table | 21 + definitions/grib2/tables/27/4.2.1.1.table | 7 + definitions/grib2/tables/27/4.2.1.2.table | 15 + definitions/grib2/tables/27/4.2.10.0.table | 69 +++ definitions/grib2/tables/27/4.2.10.1.table | 9 + definitions/grib2/tables/27/4.2.10.191.table | 8 + definitions/grib2/tables/27/4.2.10.2.table | 17 + definitions/grib2/tables/27/4.2.10.3.table | 8 + definitions/grib2/tables/27/4.2.10.4.table | 24 + definitions/grib2/tables/27/4.2.2.0.table | 44 ++ definitions/grib2/tables/27/4.2.2.3.table | 33 ++ definitions/grib2/tables/27/4.2.2.4.table | 24 + definitions/grib2/tables/27/4.2.2.5.table | 6 + definitions/grib2/tables/27/4.2.20.0.table | 6 + definitions/grib2/tables/27/4.2.20.1.table | 14 + definitions/grib2/tables/27/4.2.20.2.table | 5 + definitions/grib2/tables/27/4.2.3.0.table | 14 + definitions/grib2/tables/27/4.2.3.1.table | 35 ++ definitions/grib2/tables/27/4.2.3.2.table | 24 + definitions/grib2/tables/27/4.2.3.3.table | 4 + definitions/grib2/tables/27/4.2.3.4.table | 10 + definitions/grib2/tables/27/4.2.3.5.table | 7 + definitions/grib2/tables/27/4.2.3.6.table | 7 + definitions/grib2/tables/27/4.2.4.0.table | 10 + definitions/grib2/tables/27/4.2.4.1.table | 8 + definitions/grib2/tables/27/4.2.4.10.table | 12 + definitions/grib2/tables/27/4.2.4.2.table | 18 + definitions/grib2/tables/27/4.2.4.3.table | 12 + definitions/grib2/tables/27/4.2.4.4.table | 11 + definitions/grib2/tables/27/4.2.4.5.table | 8 + definitions/grib2/tables/27/4.2.4.6.table | 11 + definitions/grib2/tables/27/4.2.4.7.table | 8 + definitions/grib2/tables/27/4.2.4.8.table | 12 + definitions/grib2/tables/27/4.2.4.9.table | 7 + definitions/grib2/tables/27/4.201.table | 17 + definitions/grib2/tables/27/4.202.table | 4 + definitions/grib2/tables/27/4.203.table | 26 + definitions/grib2/tables/27/4.204.table | 9 + definitions/grib2/tables/27/4.205.table | 6 + definitions/grib2/tables/27/4.206.table | 6 + definitions/grib2/tables/27/4.207.table | 10 + definitions/grib2/tables/27/4.208.table | 9 + definitions/grib2/tables/27/4.209.table | 9 + definitions/grib2/tables/27/4.210.table | 6 + definitions/grib2/tables/27/4.211.table | 7 + definitions/grib2/tables/27/4.212.table | 18 + definitions/grib2/tables/27/4.213.table | 16 + definitions/grib2/tables/27/4.214.table | 11 + definitions/grib2/tables/27/4.215.table | 9 + definitions/grib2/tables/27/4.216.table | 5 + definitions/grib2/tables/27/4.217.table | 8 + definitions/grib2/tables/27/4.218.table | 46 ++ definitions/grib2/tables/27/4.219.table | 8 + definitions/grib2/tables/27/4.220.table | 6 + definitions/grib2/tables/27/4.221.table | 6 + definitions/grib2/tables/27/4.222.table | 6 + definitions/grib2/tables/27/4.223.table | 5 + definitions/grib2/tables/27/4.224.table | 18 + definitions/grib2/tables/27/4.225.table | 2 + definitions/grib2/tables/27/4.227.table | 9 + definitions/grib2/tables/27/4.228.table | 8 + definitions/grib2/tables/27/4.230.table | 512 +++++++++++++++++++ definitions/grib2/tables/27/4.233.table | 512 +++++++++++++++++++ definitions/grib2/tables/27/4.234.table | 21 + definitions/grib2/tables/27/4.236.table | 8 + definitions/grib2/tables/27/4.238.table | 32 ++ definitions/grib2/tables/27/4.240.table | 13 + definitions/grib2/tables/27/4.241.table | 9 + definitions/grib2/tables/27/4.242.table | 7 + definitions/grib2/tables/27/4.243.table | 43 ++ definitions/grib2/tables/27/4.244.table | 7 + definitions/grib2/tables/27/4.246.table | 7 + definitions/grib2/tables/27/4.247.table | 7 + definitions/grib2/tables/27/4.248.table | 5 + definitions/grib2/tables/27/4.3.table | 23 + definitions/grib2/tables/27/4.4.table | 17 + definitions/grib2/tables/27/4.5.table | 86 ++++ definitions/grib2/tables/27/4.6.table | 9 + definitions/grib2/tables/27/4.7.table | 14 + definitions/grib2/tables/27/4.8.table | 6 + definitions/grib2/tables/27/4.9.table | 13 + definitions/grib2/tables/27/4.91.table | 16 + definitions/grib2/tables/27/5.0.table | 22 + definitions/grib2/tables/27/5.1.table | 6 + definitions/grib2/tables/27/5.2.table | 8 + definitions/grib2/tables/27/5.25.table | 9 + definitions/grib2/tables/27/5.26.table | 5 + definitions/grib2/tables/27/5.3.table | 7 + definitions/grib2/tables/27/5.4.table | 6 + definitions/grib2/tables/27/5.40.table | 5 + definitions/grib2/tables/27/5.5.table | 7 + definitions/grib2/tables/27/5.6.table | 7 + definitions/grib2/tables/27/5.7.table | 7 + definitions/grib2/tables/27/6.0.table | 6 + definitions/grib2/template.4.88.def | 7 + definitions/grib2/template.4.localtime.def | 40 ++ 153 files changed, 3430 insertions(+) create mode 100644 definitions/grib2/tables/27/0.0.table create mode 100644 definitions/grib2/tables/27/1.0.table create mode 100644 definitions/grib2/tables/27/1.1.table create mode 100644 definitions/grib2/tables/27/1.2.table create mode 100644 definitions/grib2/tables/27/1.3.table create mode 100644 definitions/grib2/tables/27/1.4.table create mode 100644 definitions/grib2/tables/27/1.5.table create mode 100644 definitions/grib2/tables/27/1.6.table create mode 100644 definitions/grib2/tables/27/3.0.table create mode 100644 definitions/grib2/tables/27/3.1.table create mode 100644 definitions/grib2/tables/27/3.10.table create mode 100644 definitions/grib2/tables/27/3.11.table create mode 100644 definitions/grib2/tables/27/3.15.table create mode 100644 definitions/grib2/tables/27/3.2.table create mode 100644 definitions/grib2/tables/27/3.20.table create mode 100644 definitions/grib2/tables/27/3.21.table create mode 100644 definitions/grib2/tables/27/3.25.table create mode 100644 definitions/grib2/tables/27/3.3.table create mode 100644 definitions/grib2/tables/27/3.4.table create mode 100644 definitions/grib2/tables/27/3.5.table create mode 100644 definitions/grib2/tables/27/3.6.table create mode 100644 definitions/grib2/tables/27/3.7.table create mode 100644 definitions/grib2/tables/27/3.8.table create mode 100644 definitions/grib2/tables/27/3.9.table create mode 100644 definitions/grib2/tables/27/4.0.table create mode 100644 definitions/grib2/tables/27/4.1.0.table create mode 100644 definitions/grib2/tables/27/4.1.1.table create mode 100644 definitions/grib2/tables/27/4.1.10.table create mode 100644 definitions/grib2/tables/27/4.1.2.table create mode 100644 definitions/grib2/tables/27/4.1.20.table create mode 100644 definitions/grib2/tables/27/4.1.3.table create mode 100644 definitions/grib2/tables/27/4.1.4.table create mode 100644 definitions/grib2/tables/27/4.10.table create mode 100644 definitions/grib2/tables/27/4.11.table create mode 100644 definitions/grib2/tables/27/4.12.table create mode 100644 definitions/grib2/tables/27/4.13.table create mode 100644 definitions/grib2/tables/27/4.14.table create mode 100644 definitions/grib2/tables/27/4.15.table create mode 100644 definitions/grib2/tables/27/4.16.table create mode 100644 definitions/grib2/tables/27/4.2.0.0.table create mode 100644 definitions/grib2/tables/27/4.2.0.1.table create mode 100644 definitions/grib2/tables/27/4.2.0.13.table create mode 100644 definitions/grib2/tables/27/4.2.0.14.table create mode 100644 definitions/grib2/tables/27/4.2.0.15.table create mode 100644 definitions/grib2/tables/27/4.2.0.16.table create mode 100644 definitions/grib2/tables/27/4.2.0.17.table create mode 100644 definitions/grib2/tables/27/4.2.0.18.table create mode 100644 definitions/grib2/tables/27/4.2.0.19.table create mode 100644 definitions/grib2/tables/27/4.2.0.190.table create mode 100644 definitions/grib2/tables/27/4.2.0.191.table create mode 100644 definitions/grib2/tables/27/4.2.0.2.table create mode 100644 definitions/grib2/tables/27/4.2.0.20.table create mode 100644 definitions/grib2/tables/27/4.2.0.3.table create mode 100644 definitions/grib2/tables/27/4.2.0.4.table create mode 100644 definitions/grib2/tables/27/4.2.0.5.table create mode 100644 definitions/grib2/tables/27/4.2.0.6.table create mode 100644 definitions/grib2/tables/27/4.2.0.7.table create mode 100644 definitions/grib2/tables/27/4.2.1.0.table create mode 100644 definitions/grib2/tables/27/4.2.1.1.table create mode 100644 definitions/grib2/tables/27/4.2.1.2.table create mode 100644 definitions/grib2/tables/27/4.2.10.0.table create mode 100644 definitions/grib2/tables/27/4.2.10.1.table create mode 100644 definitions/grib2/tables/27/4.2.10.191.table create mode 100644 definitions/grib2/tables/27/4.2.10.2.table create mode 100644 definitions/grib2/tables/27/4.2.10.3.table create mode 100644 definitions/grib2/tables/27/4.2.10.4.table create mode 100644 definitions/grib2/tables/27/4.2.2.0.table create mode 100644 definitions/grib2/tables/27/4.2.2.3.table create mode 100644 definitions/grib2/tables/27/4.2.2.4.table create mode 100644 definitions/grib2/tables/27/4.2.2.5.table create mode 100644 definitions/grib2/tables/27/4.2.20.0.table create mode 100644 definitions/grib2/tables/27/4.2.20.1.table create mode 100644 definitions/grib2/tables/27/4.2.20.2.table create mode 100644 definitions/grib2/tables/27/4.2.3.0.table create mode 100644 definitions/grib2/tables/27/4.2.3.1.table create mode 100644 definitions/grib2/tables/27/4.2.3.2.table create mode 100644 definitions/grib2/tables/27/4.2.3.3.table create mode 100644 definitions/grib2/tables/27/4.2.3.4.table create mode 100644 definitions/grib2/tables/27/4.2.3.5.table create mode 100644 definitions/grib2/tables/27/4.2.3.6.table create mode 100644 definitions/grib2/tables/27/4.2.4.0.table create mode 100644 definitions/grib2/tables/27/4.2.4.1.table create mode 100644 definitions/grib2/tables/27/4.2.4.10.table create mode 100644 definitions/grib2/tables/27/4.2.4.2.table create mode 100644 definitions/grib2/tables/27/4.2.4.3.table create mode 100644 definitions/grib2/tables/27/4.2.4.4.table create mode 100644 definitions/grib2/tables/27/4.2.4.5.table create mode 100644 definitions/grib2/tables/27/4.2.4.6.table create mode 100644 definitions/grib2/tables/27/4.2.4.7.table create mode 100644 definitions/grib2/tables/27/4.2.4.8.table create mode 100644 definitions/grib2/tables/27/4.2.4.9.table create mode 100644 definitions/grib2/tables/27/4.201.table create mode 100644 definitions/grib2/tables/27/4.202.table create mode 100644 definitions/grib2/tables/27/4.203.table create mode 100644 definitions/grib2/tables/27/4.204.table create mode 100644 definitions/grib2/tables/27/4.205.table create mode 100644 definitions/grib2/tables/27/4.206.table create mode 100644 definitions/grib2/tables/27/4.207.table create mode 100644 definitions/grib2/tables/27/4.208.table create mode 100644 definitions/grib2/tables/27/4.209.table create mode 100644 definitions/grib2/tables/27/4.210.table create mode 100644 definitions/grib2/tables/27/4.211.table create mode 100644 definitions/grib2/tables/27/4.212.table create mode 100644 definitions/grib2/tables/27/4.213.table create mode 100644 definitions/grib2/tables/27/4.214.table create mode 100644 definitions/grib2/tables/27/4.215.table create mode 100644 definitions/grib2/tables/27/4.216.table create mode 100644 definitions/grib2/tables/27/4.217.table create mode 100644 definitions/grib2/tables/27/4.218.table create mode 100644 definitions/grib2/tables/27/4.219.table create mode 100644 definitions/grib2/tables/27/4.220.table create mode 100644 definitions/grib2/tables/27/4.221.table create mode 100644 definitions/grib2/tables/27/4.222.table create mode 100644 definitions/grib2/tables/27/4.223.table create mode 100644 definitions/grib2/tables/27/4.224.table create mode 100644 definitions/grib2/tables/27/4.225.table create mode 100644 definitions/grib2/tables/27/4.227.table create mode 100644 definitions/grib2/tables/27/4.228.table create mode 100644 definitions/grib2/tables/27/4.230.table create mode 100644 definitions/grib2/tables/27/4.233.table create mode 100644 definitions/grib2/tables/27/4.234.table create mode 100644 definitions/grib2/tables/27/4.236.table create mode 100644 definitions/grib2/tables/27/4.238.table create mode 100644 definitions/grib2/tables/27/4.240.table create mode 100644 definitions/grib2/tables/27/4.241.table create mode 100644 definitions/grib2/tables/27/4.242.table create mode 100644 definitions/grib2/tables/27/4.243.table create mode 100644 definitions/grib2/tables/27/4.244.table create mode 100644 definitions/grib2/tables/27/4.246.table create mode 100644 definitions/grib2/tables/27/4.247.table create mode 100644 definitions/grib2/tables/27/4.248.table create mode 100644 definitions/grib2/tables/27/4.3.table create mode 100644 definitions/grib2/tables/27/4.4.table create mode 100644 definitions/grib2/tables/27/4.5.table create mode 100644 definitions/grib2/tables/27/4.6.table create mode 100644 definitions/grib2/tables/27/4.7.table create mode 100644 definitions/grib2/tables/27/4.8.table create mode 100644 definitions/grib2/tables/27/4.9.table create mode 100644 definitions/grib2/tables/27/4.91.table create mode 100644 definitions/grib2/tables/27/5.0.table create mode 100644 definitions/grib2/tables/27/5.1.table create mode 100644 definitions/grib2/tables/27/5.2.table create mode 100644 definitions/grib2/tables/27/5.25.table create mode 100644 definitions/grib2/tables/27/5.26.table create mode 100644 definitions/grib2/tables/27/5.3.table create mode 100644 definitions/grib2/tables/27/5.4.table create mode 100644 definitions/grib2/tables/27/5.40.table create mode 100644 definitions/grib2/tables/27/5.5.table create mode 100644 definitions/grib2/tables/27/5.6.table create mode 100644 definitions/grib2/tables/27/5.7.table create mode 100644 definitions/grib2/tables/27/6.0.table create mode 100644 definitions/grib2/template.4.88.def create mode 100644 definitions/grib2/template.4.localtime.def diff --git a/definitions/grib2/tables/27/0.0.table b/definitions/grib2/tables/27/0.0.table new file mode 100644 index 000000000..71ac57ab3 --- /dev/null +++ b/definitions/grib2/tables/27/0.0.table @@ -0,0 +1,13 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Satellite remote sensing products (formerly Space products) +4 4 Space weather products +# 5-9 Reserved +10 10 Oceanographic products +# 11-19 Reserved +20 20 Health and socioeconomic impacts +# 21-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/1.0.table b/definitions/grib2/tables/27/1.0.table new file mode 100644 index 000000000..79240c698 --- /dev/null +++ b/definitions/grib2/tables/27/1.0.table @@ -0,0 +1,27 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Version implemented on 6 May 2015 +16 16 Version implemented on 11 November 2015 +17 17 Version implemented on 4 May 2016 +18 18 Version implemented on 2 November 2016 +19 19 Version implemented on 3 May 2017 +20 20 Version implemented on 8 November 2017 +21 21 Version implemented on 2 May 2018 +22 22 Version implemented on 7 November 2018 +23 23 Pre-operational to be implemented by next amendment +# 24-254 Future versions +255 255 Missing diff --git a/definitions/grib2/tables/27/1.1.table b/definitions/grib2/tables/27/1.1.table new file mode 100644 index 000000000..d50f8fd72 --- /dev/null +++ b/definitions/grib2/tables/27/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/definitions/grib2/tables/27/1.2.table b/definitions/grib2/tables/27/1.2.table new file mode 100644 index 000000000..9833a2721 --- /dev/null +++ b/definitions/grib2/tables/27/1.2.table @@ -0,0 +1,9 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +4 4 Local time +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/1.3.table b/definitions/grib2/tables/27/1.3.table new file mode 100644 index 000000000..dc138ef12 --- /dev/null +++ b/definitions/grib2/tables/27/1.3.table @@ -0,0 +1,16 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 S2S operational products +7 7 S2S test products +8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) +9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) +10 10 Copernicus regional reanalysis (CARRA/CERRA) +11 11 Copernicus regional reanalysis test (CARRA/CERRA) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/1.4.table b/definitions/grib2/tables/27/1.4.table new file mode 100644 index 000000000..03203d874 --- /dev/null +++ b/definitions/grib2/tables/27/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/definitions/grib2/tables/27/1.5.table b/definitions/grib2/tables/27/1.5.table new file mode 100644 index 000000000..b2cf9f087 --- /dev/null +++ b/definitions/grib2/tables/27/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/definitions/grib2/tables/27/1.6.table b/definitions/grib2/tables/27/1.6.table new file mode 100644 index 000000000..5db921990 --- /dev/null +++ b/definitions/grib2/tables/27/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/3.0.table b/definitions/grib2/tables/27/3.0.table new file mode 100644 index 000000000..45187b80d --- /dev/null +++ b/definitions/grib2/tables/27/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/definitions/grib2/tables/27/3.1.table b/definitions/grib2/tables/27/3.1.table new file mode 100644 index 000000000..ed68c5144 --- /dev/null +++ b/definitions/grib2/tables/27/3.1.table @@ -0,0 +1,54 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +# 11-12 Reserved +13 13 Mercator with modelling subdomains definition +# 14-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-22 Reserved +23 23 Polar stereographic with modelling subdomains definition +# 24-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +32 32 Reserved +33 33 Lambert conformal with modelling subdomains definition +# 34-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-60 Reserved +61 61 Spectral Mercator with modelling subdomains definition +62 62 Spectral polar stereographic with modelling subdomains definition +63 63 Spectral Lambert conformal with modelling subdomains definition +# 64-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/definitions/grib2/tables/27/3.10.table b/definitions/grib2/tables/27/3.10.table new file mode 100644 index 000000000..afa8843a7 --- /dev/null +++ b/definitions/grib2/tables/27/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/definitions/grib2/tables/27/3.11.table b/definitions/grib2/tables/27/3.11.table new file mode 100644 index 000000000..e516a2ab9 --- /dev/null +++ b/definitions/grib2/tables/27/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/3.15.table b/definitions/grib2/tables/27/3.15.table new file mode 100644 index 000000000..331217ebe --- /dev/null +++ b/definitions/grib2/tables/27/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/3.2.table b/definitions/grib2/tables/27/3.2.table new file mode 100644 index 000000000..03cfbafa8 --- /dev/null +++ b/definitions/grib2/tables/27/3.2.table @@ -0,0 +1,16 @@ +# Code table 3.2 - Shape of the reference system +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +10 10 Earth model assumed WGS84 with corrected geomagnetic coordinates (latitude and longitude) defined by Gustafsson et al., 1992 +11 11 Sun assumed spherical with radius = 695,990,000 m (Allen, C.W., 1976 Astrophysical Quantities (3rd Ed.; London: Athlone) and Stonyhurst latitude and longitude system with origin at the intersection of the solar central meridian (as seen from Earth) and the solar equator (Thompson, W, Coordinate systems for solar image data, A&A 449, 791–803 (2006)) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/3.20.table b/definitions/grib2/tables/27/3.20.table new file mode 100644 index 000000000..efbf08d19 --- /dev/null +++ b/definitions/grib2/tables/27/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/3.21.table b/definitions/grib2/tables/27/3.21.table new file mode 100644 index 000000000..88dbb9019 --- /dev/null +++ b/definitions/grib2/tables/27/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/3.25.table b/definitions/grib2/tables/27/3.25.table new file mode 100644 index 000000000..de1bc74ed --- /dev/null +++ b/definitions/grib2/tables/27/3.25.table @@ -0,0 +1,10 @@ +# Code table 3.25 - Type of bi-Fourier truncation +# 0-76 Reserved +77 77 Rectangular +# 78-87 Reserved +88 88 Elliptic +# 89-98 Reserved +99 99 Diamond +# 100-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/3.3.table b/definitions/grib2/tables/27/3.3.table new file mode 100644 index 000000000..5dd7c7001 --- /dev/null +++ b/definitions/grib2/tables/27/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/definitions/grib2/tables/27/3.4.table b/definitions/grib2/tables/27/3.4.table new file mode 100644 index 000000000..897b813d7 --- /dev/null +++ b/definitions/grib2/tables/27/3.4.table @@ -0,0 +1,17 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +5 0 Points within odd rows are not offset in i (x) direction +5 1 Points within odd rows are offset by Di/2 in i (x) direction +6 0 Points within even rows are not offset in i (x) direction +6 1 Points within even rows are offset by Di/2 in i (x) direction +7 0 Points are not offset in j (y) direction +7 1 Points are offset by Dj/2 in j (y) direction +8 0 Rows have Ni grid points and columns have Nj grid points +8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/definitions/grib2/tables/27/3.5.table b/definitions/grib2/tables/27/3.5.table new file mode 100644 index 000000000..eabdde896 --- /dev/null +++ b/definitions/grib2/tables/27/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/definitions/grib2/tables/27/3.6.table b/definitions/grib2/tables/27/3.6.table new file mode 100644 index 000000000..dc7d107aa --- /dev/null +++ b/definitions/grib2/tables/27/3.6.table @@ -0,0 +1,3 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file +2 2 Bi-Fourier representation diff --git a/definitions/grib2/tables/27/3.7.table b/definitions/grib2/tables/27/3.7.table new file mode 100644 index 000000000..0a7d6efde --- /dev/null +++ b/definitions/grib2/tables/27/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/3.8.table b/definitions/grib2/tables/27/3.8.table new file mode 100644 index 000000000..844e74235 --- /dev/null +++ b/definitions/grib2/tables/27/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/3.9.table b/definitions/grib2/tables/27/3.9.table new file mode 100644 index 000000000..fd730bc64 --- /dev/null +++ b/definitions/grib2/tables/27/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/definitions/grib2/tables/27/4.0.table b/definitions/grib2/tables/27/4.0.table new file mode 100644 index 000000000..7e50b32b0 --- /dev/null +++ b/definitions/grib2/tables/27/4.0.table @@ -0,0 +1,85 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +35 35 Satellite product with or without associated quality values +# 36-39 Reserved +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +# 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) +57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) +60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +62 62 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +63 63 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles +# 64-66 Reserved +67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +# 69 Reserved +70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time +71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 74-75 Reserved +76 76 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source or sink +77 77 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source or sink +78 78 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source or sink +79 79 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source or sink +80 80 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source or sink +81 81 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source or sink +82 82 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink +83 83 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink +84 84 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink +85 85 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +88 88 Analysis or Forecast at a horizontal level or in a horizontal layer at a local time +# 86-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/definitions/grib2/tables/27/4.1.0.table b/definitions/grib2/tables/27/4.1.0.table new file mode 100644 index 000000000..04cfd7802 --- /dev/null +++ b/definitions/grib2/tables/27/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.1.1.table b/definitions/grib2/tables/27/4.1.1.table new file mode 100644 index 000000000..7b22b6fed --- /dev/null +++ b/definitions/grib2/tables/27/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.1.10.table b/definitions/grib2/tables/27/4.1.10.table new file mode 100644 index 000000000..a9b20eb9c --- /dev/null +++ b/definitions/grib2/tables/27/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Subsurface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.1.2.table b/definitions/grib2/tables/27/4.1.2.table new file mode 100644 index 000000000..60e2452d4 --- /dev/null +++ b/definitions/grib2/tables/27/4.1.2.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +5 5 Glaciers and inland ice +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.1.20.table b/definitions/grib2/tables/27/4.1.20.table new file mode 100644 index 000000000..afad6c811 --- /dev/null +++ b/definitions/grib2/tables/27/4.1.20.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Health indicators +1 1 Epidemiology +2 2 Socioeconomic indicators +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.1.3.table b/definitions/grib2/tables/27/4.1.3.table new file mode 100644 index 000000000..7bf60d4a7 --- /dev/null +++ b/definitions/grib2/tables/27/4.1.3.table @@ -0,0 +1,11 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +2 2 Cloud properties +3 3 Flight rule conditions +4 4 Volcanic ash +5 5 Sea-surface temperature +6 6 Solar radiation +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.1.4.table b/definitions/grib2/tables/27/4.1.4.table new file mode 100644 index 000000000..4d3e1cf2b --- /dev/null +++ b/definitions/grib2/tables/27/4.1.4.table @@ -0,0 +1,15 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Momentum +2 2 Charged particle mass and number +3 3 Electric and magnetic fields +4 4 Energetic particles +5 5 Waves +6 6 Solar electromagnetic emissions +7 7 Terrestrial electromagnetic emissions +8 8 Imagery +9 9 Ion-neutral coupling +10 10 Space weather indices +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.10.table b/definitions/grib2/tables/27/4.10.table new file mode 100644 index 000000000..1a92baaf6 --- /dev/null +++ b/definitions/grib2/tables/27/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/definitions/grib2/tables/27/4.11.table b/definitions/grib2/tables/27/4.11.table new file mode 100644 index 000000000..7f404c849 --- /dev/null +++ b/definitions/grib2/tables/27/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.12.table b/definitions/grib2/tables/27/4.12.table new file mode 100644 index 000000000..03fd89b36 --- /dev/null +++ b/definitions/grib2/tables/27/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.13.table b/definitions/grib2/tables/27/4.13.table new file mode 100644 index 000000000..c92854eec --- /dev/null +++ b/definitions/grib2/tables/27/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.14.table b/definitions/grib2/tables/27/4.14.table new file mode 100644 index 000000000..a88cb93fa --- /dev/null +++ b/definitions/grib2/tables/27/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.15.table b/definitions/grib2/tables/27/4.15.table new file mode 100644 index 000000000..2e5f3dea3 --- /dev/null +++ b/definitions/grib2/tables/27/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.16.table b/definitions/grib2/tables/27/4.16.table new file mode 100644 index 000000000..fedb05324 --- /dev/null +++ b/definitions/grib2/tables/27/4.16.table @@ -0,0 +1,10 @@ +# Code table 4.16 - Quality value associated with parameter +0 0 Confidence index +1 1 Quality indicator +2 2 Correlation of product with used calibration product +3 3 Standard deviation +4 4 Random error +5 5 Probability +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.0.table b/definitions/grib2/tables/27/4.2.0.0.table new file mode 100644 index 000000000..4844c33f3 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.0.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +21 21 Apparent temperature (K) +22 22 Temperature tendency due to short-wave radiation (K s-1) +23 23 Temperature tendency due to long-wave radiation (K s-1) +24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) +25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) +26 26 Temperature tendency due to parameterization (K s-1) +27 27 Wet-bulb temperature (K) +28 28 Unbalanced component of temperature (K) +29 29 Temperature advection (K s-1) +30 30 Latent heat net flux due to evaporation (W m-2) +31 31 Latent heat net flux due to sublimation (W m-2) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.1.table b/definitions/grib2/tables/27/4.2.0.1.table new file mode 100644 index 000000000..afa2199cf --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.1.table @@ -0,0 +1,150 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type ((4.201)) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category ((Code table 4.202)) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain ((Code table 4.222)) +34 34 Categorical freezing rain ((Code table 4.222)) +35 35 Categorical ice pellets ((Code table 4.222)) +36 36 Categorical snow ((Code table 4.222)) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water=vapour + cloud water/ice) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +87 87 Stratiform precipitation rate (kg m-2 s-1) +88 88 Categorical convective precipitation ((Code table 4.222)) +# 89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +93 93 Relative humidity with respect to water (%) +94 94 Relative humidity with respect to ice (%) +95 95 Freezing or frozen precipitation rate (kg m-2 s-1) +96 96 Mass density of rain (kg m-3) +97 97 Mass density of snow (kg m-3) +98 98 Mass density of graupel (kg m-3) +99 99 Mass density of hail (kg m-3) +100 100 Specific number concentration of rain (kg-1) +101 101 Specific number concentration of snow (kg-1) +102 102 Specific number concentration of graupel (kg-1) +103 103 Specific number concentration of hail (kg-1) +104 104 Number density of rain (m-3) +105 105 Number density of snow (m-3) +106 106 Number density of graupel (m-3) +107 107 Number density of hail (m-3) +108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) +109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) +110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) +111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) +112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) +113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) +114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) +115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) +116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) +117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) +118 118 Unbalanced component of specific humidity (kg kg-1) +119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) +120 120 Unbalanced component of specific cloud ice water content (kg kg-1) +121 121 Fraction of snow cover (Proportion) +122 122 Precipitation intensity index ((Code table 4.247)) +123 123 Dominant precipitation type ((Code table 4.201)) +124 124 Presence of showers ((Code table 4.222)) +125 125 Presence of blowing snow ((Code table 4.222)) +126 126 Presence of blizzard ((Code table 4.222)) +127 127 Ice pellets (non water equivalent) precipitation rate (m/s) +128 128 Total solid precipitation rate (kg m-2 s-1) +129 129 Effective radius of cloud water (m) +130 130 Effective radius of rain (m) +131 131 Effective radius of cloud ice (m) +132 132 Effective radius of snow (m) +133 133 Effective radius of graupel (m) +134 134 Effective radius of hail (m) +135 135 Effective radius of subgrid liquid clouds (m) +136 136 Effective radius of subgrid ice clouds (m) +137 137 Effective aspect ratio of rain (-) +138 138 Effective aspect ratio of cloud ice (-) +139 139 Effective aspect ratio of snow (-) +140 140 Effective aspect ratio of graupel (-) +141 141 Effective aspect ratio of hail (-) +142 142 Effective aspect ratio of subgrid ice clouds (-) +143 143 Potential evaporation rate (kg m–2 s–1) +144 144 specific rain water content (convective) (kg kg-1) +145 145 specific snow water content (convective) (kg kg-1) +# 146-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.13.table b/definitions/grib2/tables/27/4.2.0.13.table new file mode 100644 index 000000000..5086101ad --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.14.table b/definitions/grib2/tables/27/4.2.0.14.table new file mode 100644 index 000000000..215884737 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.15.table b/definitions/grib2/tables/27/4.2.0.15.table new file mode 100644 index 000000000..dfbc4d12f --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.15.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +15 15 Hybrid scan reflectivity (dB) +16 16 Hybrid scan reflectivity height (m) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.16.table b/definitions/grib2/tables/27/4.2.0.16.table new file mode 100644 index 000000000..0c240a853 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.17.table b/definitions/grib2/tables/27/4.2.0.17.table new file mode 100644 index 000000000..ce1867aca --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.17.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Lightning strike density (m-2 s-1) +1 1 Lightning potential index (LPI) (J kg-1) +2 2 Cloud-to-ground Lightning flash density (km-2 day-1) +3 3 Cloud-to-cloud Lightning flash density (km-2 day-1) +4 4 Total Lightning flash density (km-2 day-1) diff --git a/definitions/grib2/tables/27/4.2.0.18.table b/definitions/grib2/tables/27/4.2.0.18.table new file mode 100644 index 000000000..9d106f419 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.18.table @@ -0,0 +1,23 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +14 14 Specific activity concentration (Bq kg-1) +15 15 Maximum of air concentration in layer (Bq m-3) +16 16 Height of maximum air concentration (m) +17 17 Column-integrated air concentration (Bq m-2) +18 18 Column-averaged air concentration in layer (Bq m-3) +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.19.table b/definitions/grib2/tables/27/4.2.0.19.table new file mode 100644 index 000000000..be0b32145 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.19.table @@ -0,0 +1,45 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash ((Code table 4.206)) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing ((Code table 4.207)) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence ((Code table 4.208)) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime ((Code table 4.209)) +13 13 Contrail intensity ((Code table 4.210)) +14 14 Contrail engine type ((Code table 4.211)) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather ((Code table 4.225)) +26 26 Convective outlook ((Code table 4.224)) +27 27 Icing scenario ((Code table 4.227)) +28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) +29 29 Clear air turbulence (CAT) (m2/3 s-1) +30 30 Eddy dissipation parameter (m2/3 s-1) +31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) +32 32 Highest freezing level (m) +33 33 Visibility through liquid fog (m) +34 34 Visibility through ice fog (m) +35 35 Visibility through blowing snow (m) +36 36 Presence of snow squalls ((Code table 4.222)) +37 37 Icing severity ((Code table 4.228)) +38 38 Sky transparency index ((Code Table 4.214)) +39 39 Seeing index ((Code Table 4.214)) +40 40 Snow level (m) +# 41-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.190.table b/definitions/grib2/tables/27/4.2.0.190.table new file mode 100644 index 000000000..de621a924 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.191.table b/definitions/grib2/tables/27/4.2.0.191.table new file mode 100644 index 000000000..e3bba0ebe --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.2.table b/definitions/grib2/tables/27/4.2.0.2.table new file mode 100644 index 000000000..5446262e6 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.2.table @@ -0,0 +1,51 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) +37 37 Northward turbulent surface stress (N m-2 s) +38 38 Eastward turbulent surface stress (N m-2 s) +39 39 Eastward wind tendency due to parameterization (m s-2) +40 40 Northward wind tendency due to parameterization (m s-2) +41 41 u-component of geostrophic wind (m s-1) +42 42 v-component of geostrophic wind (m s-1) +43 43 Geostrophic wind direction (degree true) +44 44 Geostrophic wind speed (m s-1) +45 45 Unbalanced component of divergence (s-1) +46 46 Vorticity advection (s-2) +# 47-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.20.table b/definitions/grib2/tables/27/4.2.0.20.table new file mode 100644 index 000000000..042732760 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.20.table @@ -0,0 +1,64 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +15 15 Dry deposition velocity (m/s) +16 16 Mass mixing ratio with respect to dry air (kg/kg) +17 17 Mass mixing ratio with respect to wet air (kg/kg) +# 18-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +60 60 Aerosol specific number concentration (kg-1) +61 61 Maximum of mass density in layer (kg m-3) +62 62 Height of maximum mass density (m) +63 63 Column-averaged mass density in layer (kg m-3) +64 64 Mole fraction with respect to dry air (mol/mol) +65 65 Mole fraction with respect to wet air (mol/mol) +66 66 Column-integrated in-cloud scavenging rate by precipitation (kg m-2 s-1) +67 67 Column-integrated below-cloud scavenging rate by precipitation (kg m-2 s-1) +68 68 Column-integrated release rate from evaporating precipitation (kg m-2 s-1) +69 69 Column-integrated in-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) +70 70 Column-integrated below-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) +71 71 Column-integrated release rate from evaporating large-scale precipitation (kg m-2 s-1) +72 72 Column-integrated in-cloud scavenging rate by convective precipitation (kg m-2 s-1) +73 73 Column-integrated below-cloud scavenging rate by convective precipitation (kg m-2 s-1) +74 74 Column-integrated release rate from evaporating convective precipitation (kg m-2 s-1) +75 75 Wildfire flux (kg m-2 s-1) +76 76 Emission rate (kg kg-1 s-1) +77 77 Surface emission flux (kg m-2 s-1) +# 78-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (/m) +106 106 Aerosol absorption coefficient (/m) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (/m) +110 110 Aerosol lidar extinction from the ground (/m) +111 111 Angstrom exponent (Numeric) +# 112-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.3.table b/definitions/grib2/tables/27/4.2.0.3.table new file mode 100644 index 000000000..34941dcab --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.3.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +27 27 Updraught mass flux (kg m-2 s-1) +28 28 Downdraught mass flux (kg m-2 s-1) +29 29 Updraught detrainment rate (kg m-3 s-1) +30 30 Downdraught detrainment rate (kg m-3 s-1) +31 31 Unbalanced component of logarithm of surface pressure (-) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.4.table b/definitions/grib2/tables/27/4.2.0.4.table new file mode 100644 index 000000000..31dcfa522 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.4.table @@ -0,0 +1,25 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wavelength) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +13 13 Direct short-wave radiation flux (W m-2) +14 14 Diffuse short-wave radiation flux (W m-2) +# 15-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +52 52 Downward short-wave radiation flux, clear sky (W m-2) +53 53 Upward short-wave radiation flux, clear sky (W m-2) +54 54 Direct normal short-wave radiation flux (W m-2) +# 55-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.5.table b/definitions/grib2/tables/27/4.2.0.5.table new file mode 100644 index 000000000..4550220b6 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.5.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +7 7 Brightness temperature (K) +8 8 Downward long-wave radiation flux, clear sky (W m-2) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.6.table b/definitions/grib2/tables/27/4.2.0.6.table new file mode 100644 index 000000000..e39e7461c --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.6.table @@ -0,0 +1,50 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type ((Code table 4.203)) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage ((Code table 4.204)) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +36 36 Fraction of stratiform precipitation cover (Proportion) +37 37 Fraction of convective precipitation cover (Proportion) +38 38 Mass density of cloud droplets (kg m-3) +39 39 Mass density of cloud ice (kg m-3) +40 40 Mass density of convective cloud water droplets (kg m-3) +# 41-46 Reserved +47 47 Volume fraction of cloud water droplets (Numeric) +48 48 Volume fraction of cloud ice particles (Numeric) +49 49 Volume fraction of cloud (ice and/or water) (Numeric) +50 50 Fog (%) +# 51-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.7.table b/definitions/grib2/tables/27/4.2.0.7.table new file mode 100644 index 000000000..04d7f393f --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.7.table @@ -0,0 +1,25 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraught helicity (m2 s-2) +16 16 Bulk Richardson number (Numeric) +17 17 Gradient Richardson number (Numeric) +18 18 Flux Richardson number (Numeric) +19 19 Convective available potential energy - shear (m2 s-2) +20 20 Thunderstorm intensity index (Code table 4.246) +# 21-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.1.0.table b/definitions/grib2/tables/27/4.2.1.0.table new file mode 100644 index 000000000..e906af726 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.1.0.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover ((Code table 4.215)) +3 3 Elevation of snow-covered terrain ((Code table 4.216)) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +8 8 Groundwater upper storage (kg m-2) +9 9 Groundwater lower storage (kg m-2) +10 10 Side flow into river channel (m3 s-1 m-1) +11 11 River storage of water (m3) +12 12 Floodplain storage of water (m3) +13 13 Depth of water on soil surface (kg m-2) +14 14 Upstream accumulated precipitation (kg m-2) +15 15 Upstream accumulated snow melt (kg m-2) +16 16 Percolation rate (kg m-2 s-1) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.1.1.table b/definitions/grib2/tables/27/4.2.1.1.table new file mode 100644 index 000000000..b488eb0bd --- /dev/null +++ b/definitions/grib2/tables/27/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.1.2.table b/definitions/grib2/tables/27/4.2.1.2.table new file mode 100644 index 000000000..ec9b11d41 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.1.2.table @@ -0,0 +1,15 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) +13 13 Cross-sectional area of flow in channel (m2) diff --git a/definitions/grib2/tables/27/4.2.10.0.table b/definitions/grib2/tables/27/4.2.10.0.table new file mode 100644 index 000000000..de15555c0 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.10.0.table @@ -0,0 +1,69 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Mean direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m/s) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m/s) +22 22 v-component surface Stokes drift (m/s) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m/s) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (/s) +46 46 Peak wave direction (deg) +47 47 Significant wave height of first swell partition (m) +48 48 Significant wave height of second swell partition (m) +49 49 Significant wave height of third swell partition (m) +50 50 Mean wave period of first swell partition (s) +51 51 Mean wave period of second swell partition (s) +52 52 Mean wave period of third swell partition (s) +53 53 Mean wave direction of first swell partition (deg) +54 54 Mean wave direction of second swell partition (deg) +55 55 Mean wave direction of third swell partition (deg) +56 56 Wave directional width of first swell partition (-) +57 57 Wave directional width of second swell partition (-) +58 58 Wave directional width of third swell partition (-) +59 59 Wave frequency width of first swell partition (-) +60 60 Wave frequency width of second swell partition (-) +61 61 Wave frequency width of third swell partition (-) +62 62 Wave frequency width (-) +63 63 Frequency width of wind waves (-) +64 64 Frequency width of total swell (-) +# 65-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.1.table b/definitions/grib2/tables/27/4.2.10.1.table new file mode 100644 index 000000000..00a084e34 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.10.1.table @@ -0,0 +1,9 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +4 4 Rip current occurrence probability (%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.191.table b/definitions/grib2/tables/27/4.2.10.191.table new file mode 100644 index 000000000..524929e78 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.10.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +2 2 Reserved +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.2.table b/definitions/grib2/tables/27/4.2.10.2.table new file mode 100644 index 000000000..6797062ac --- /dev/null +++ b/definitions/grib2/tables/27/4.2.10.2.table @@ -0,0 +1,17 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Module of ice internal pressure (Pa m) +10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) +11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) +12 12 Compressive ice strength (N/m) +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.3.table b/definitions/grib2/tables/27/4.2.10.3.table new file mode 100644 index 000000000..9f9492f04 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.10.3.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +2 2 Heat exchange coefficient (-) +3 3 Practical salinity (Numeric) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.4.table b/definitions/grib2/tables/27/4.2.10.4.table new file mode 100644 index 000000000..69ba0cc66 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.10.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2/s) +5 5 Ocean vertical salt diffusivity (m2/s) +6 6 Ocean vertical momentum diffusivity (m2/s) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (/m) +14 14 Water depth (m) +15 15 Water temperature (K) +16 16 Water density (rho) (kg m-3) +17 17 Water density anomaly (sigma) (kg m-3) +18 18 Water potential temperature (theta) (K) +19 19 Water potential density (rho theta) (kg m-3) +20 20 Water potential density anomaly (sigma theta) (kg m-3) +21 21 Practical salinity (Numeric) +# 22-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.2.0.table b/definitions/grib2/tables/27/4.2.2.0.table new file mode 100644 index 000000000..a6df872b1 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.2.0.table @@ -0,0 +1,44 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use ((Code table 4.212)) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +33 33 Water runoff and drainage (kg m-2) +34 34 Surface water runoff (kg m-2) +35 35 Tile class ((Code table 4.243)) +36 36 Tile fraction (Proportion) +37 37 Tile percentage (%) +38 38 Soil volumetric ice content (water equivalent) (m3 m-3) +39 39 Evapotranspiration rate (kg m-2 s-1) +# 40-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.2.3.table b/definitions/grib2/tables/27/4.2.2.3.table new file mode 100644 index 000000000..1dcf36a91 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.2.3.table @@ -0,0 +1,33 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type ((Code table 4.213)) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +23 23 Liquid water in snow pack (kg m-2) +24 24 Frost index (K day-1) +25 25 Snow depth at elevation bands (kg m-2) +26 26 Soil heat flux (W m-2) +27 27 Soil depth (m) +28 28 Snow temperature (K) +# 29-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.2.4.table b/definitions/grib2/tables/27/4.2.2.4.table new file mode 100644 index 000000000..649ddf969 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.2.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook ((Code table 4.224)) +1 1 Fire outlook due to dry thunderstorm ((Code table 4.224)) +2 2 Haines index (Numeric) +3 3 Fire burned area (%) +4 4 Fosberg index (Numeric) +5 5 Forest Fire Weather Index (as defined by the Canadian Forest Service) (Numeric) +6 6 Fine Fuel Moisture Code (as defined by the Canadian Forest Service) (Numeric) +7 7 Duff Moisture Code (as defined by the Canadian Forest Service) (Numeric) +8 8 Drought Code (as defined by the Canadian Forest Service) (Numeric) +9 9 Initial Fire Spread Index (as defined by the Canadian Forest Service) (Numeric) +10 10 Fire Buildup Index (as defined by the Canadian Forest Service) (Numeric) +11 11 Fire Daily Severity Rating (as defined by the Canadian Forest Service) (Numeric) +12 12 Keetch-Byram drought index (Numeric) +13 13 Drought factor (as defined by the Australian forest service ) (Numeric) +14 14 Rate of spread (as defined by the Australian forest service ) (m/s) +15 15 Fire danger index (as defined by the Australian forest service ) (Numeric) +16 16 Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) (Numeric) +17 17 Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) (Numeric) +18 18 Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) (%) +19 19 Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) (Joule/m2) +# 20-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.2.5.table b/definitions/grib2/tables/27/4.2.2.5.table new file mode 100644 index 000000000..122f0aa23 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.2.5.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Glacier cover (Proportion) +1 1 Glacier temperature (K) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.20.0.table b/definitions/grib2/tables/27/4.2.20.0.table new file mode 100644 index 000000000..9cd936387 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.20.0.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Universal thermal climate index (K) +1 1 Mean radiant temperature (K) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.20.1.table b/definitions/grib2/tables/27/4.2.20.1.table new file mode 100644 index 000000000..bdddca5f9 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.20.1.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Malaria cases (Fraction) +1 1 Malaria circumsporozoite protein rate (Fraction) +2 2 Plasmodium falciparum entomological inoculation rate (Bites per day per person) +3 3 Human bite rate by anopheles vectors (Bites per day per person) +4 4 Malaria immunity (Fraction) +5 5 Falciparum parasite rates (Fraction) +6 6 Detectable falciparum parasite ratio (after day 10) (Fraction) +7 7 Anopheles vector to host ratio (Fraction) +8 8 Anopheles vector number (Number m-2) +9 9 Fraction of malarial vector reproductive habitat (Fraction) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.20.2.table b/definitions/grib2/tables/27/4.2.20.2.table new file mode 100644 index 000000000..0804bcafd --- /dev/null +++ b/definitions/grib2/tables/27/4.2.20.2.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Population density (Person m-2) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.3.0.table b/definitions/grib2/tables/27/4.2.3.0.table new file mode 100644 index 000000000..81ee28205 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask ((Code table 4.217)) +8 8 Pixel scene type ((Code table 4.218)) +9 9 Fire detection indicator ((Code table 4.223)) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.3.1.table b/definitions/grib2/tables/27/4.2.3.1.table new file mode 100644 index 000000000..7d4364f4d --- /dev/null +++ b/definitions/grib2/tables/27/4.2.3.1.table @@ -0,0 +1,35 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u-component of wind (m/s) +5 5 Estimated v-component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-26 Reserved +27 27 Bidirectional reflectance factor (numeric) +28 28 Brightness temperature (K) +29 29 Scaled radiance (numeric) +# 30-97 Reserved +98 98 Correlation coefficient between MPE rain-rates for the co-located IR data and the microwave data rain-rates (Numeric) +99 99 Standard deviation between MPE rain-rates for the co-located IR data and the microwave data rain-rates (kg m-2 s-1) +# 100-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.3.2.table b/definitions/grib2/tables/27/4.2.3.2.table new file mode 100644 index 000000000..2726489c8 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.3.2.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Clear sky probability (%) +1 1 Cloud top temperature (K) +2 2 Cloud top pressure (Pa) +3 3 Cloud type ((Code table 4.218)) +4 4 Cloud phase ((Code table 4.218)) +5 5 Cloud optical depth (Numeric) +6 6 Cloud particle effective radius (m) +7 7 Cloud liquid water path (kg m-2) +8 8 Cloud ice water path (kg m-2) +9 9 Cloud albedo (Numeric) +10 10 Cloud emissivity (Numeric) +11 11 Effective absorption optical depth ratio (Numeric) +30 30 Measurement cost (Numeric) +31 31 Upper layer cloud optical depth (Numeric) +32 32 Upper layer cloud top pressure (Pa) +33 33 Upper layer cloud effective radius (m) +34 34 Error in upper layer cloud optical depth (Numeric) +35 35 Error in upper layer cloud top pressure (Pa) +36 36 Error in upper layer cloud effective radius (m) +37 37 Lower layer cloud optical depth (Numeric) +38 38 Lower layer cloud top pressure (Pa) +39 39 Error in lower layer cloud optical depth (Numeric) +40 40 Error in lower layer cloud top pressure (Pa) diff --git a/definitions/grib2/tables/27/4.2.3.3.table b/definitions/grib2/tables/27/4.2.3.3.table new file mode 100644 index 000000000..cb5c4b6ed --- /dev/null +++ b/definitions/grib2/tables/27/4.2.3.3.table @@ -0,0 +1,4 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Probability of encountering marginal visual flight rule conditions (%) +1 1 Probability of encountering low instrument flight rule conditions (%) +2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/definitions/grib2/tables/27/4.2.3.4.table b/definitions/grib2/tables/27/4.2.3.4.table new file mode 100644 index 000000000..f86d2d653 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.3.4.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Volcanic ash probability (%) +1 1 Volcanic ash cloud top temperature (K) +2 2 Volcanic ash cloud top pressure (Pa) +3 3 Volcanic ash cloud top height (m) +4 4 Volcanic ash cloud emissivity (Numeric) +5 5 Volcanic ash effective absorption optical depth ratio (Numeric) +6 6 Volcanic ash cloud optical depth (Numeric) +7 7 Volcanic ash column density (kg m-2) +8 8 Volcanic ash particle effective radius (m) diff --git a/definitions/grib2/tables/27/4.2.3.5.table b/definitions/grib2/tables/27/4.2.3.5.table new file mode 100644 index 000000000..92a050db0 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.3.5.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Interface sea-surface temperature (K) +1 1 Skin sea-surface temperature (K) +2 2 Sub-skin sea-surface temperature (K) +3 3 Foundation sea-surface temperature (K) +4 4 Estimated bias between sea-surface temperature and standard (K) +5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/definitions/grib2/tables/27/4.2.3.6.table b/definitions/grib2/tables/27/4.2.3.6.table new file mode 100644 index 000000000..471beed55 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.3.6.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Global solar irradiance (W m-2) +1 1 Global solar exposure (J m-2) +2 2 Direct solar irradiance (W m-2) +3 3 Direct solar exposure (J m-2) +4 4 Diffuse solar irradiance (W m-2) +5 5 Diffuse solar exposure (J m-2) diff --git a/definitions/grib2/tables/27/4.2.4.0.table b/definitions/grib2/tables/27/4.2.4.0.table new file mode 100644 index 000000000..0b35aba26 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.0.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Electron temperature (K) +2 2 Proton temperature (K) +3 3 Ion temperature (K) +4 4 Parallel temperature (K) +5 5 Perpendicular temperature (K) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.1.table b/definitions/grib2/tables/27/4.2.4.1.table new file mode 100644 index 000000000..abd58440a --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.1.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Velocity magnitude (speed) (m s-1) +1 1 1st vector component of velocity (coordinate system dependent) (m s-1) +2 2 2nd vector component of velocity (coordinate system dependent) (m s-1) +3 3 3rd vector component of velocity (coordinate system dependent) (m s-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.10.table b/definitions/grib2/tables/27/4.2.4.10.table new file mode 100644 index 000000000..420d2b43d --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.10.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scintillation index (sigma phi) (rad) +1 1 Scintillation index S4 (Numeric) +2 2 Rate of Change of TEC Index (ROTI) (TECU/min) +3 3 Disturbance Ionosphere Index Spatial Gradient (DIXSG) (Numeric) +4 4 Along Arc TEC Rate (AATR) (TECU/min) +5 5 Kp (Numeric) +6 6 Equatorial disturbance storm time index (Dst) (nT) +7 7 Auroral Electrojet (AE) (nT) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.2.table b/definitions/grib2/tables/27/4.2.4.2.table new file mode 100644 index 000000000..8dd05fcda --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.2.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Particle number density (m-3) +1 1 Electron density (m-3) +2 2 Proton density (m-3) +3 3 Ion density (m-3) +4 4 Vertical total electron content (TECU) +5 5 HF absorption frequency (Hz) +6 6 HF absorption (dB) +7 7 Spread F (m) +8 8 h’ (m) +9 9 Critical frequency (Hz) +10 10 Maximal usable frequency (MUF) (Hz) +11 11 Peak height (hm) (m) +12 12 Peak density (Nm) (m-3) +13 13 Equivalent slab thickness (tau) (km) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.3.table b/definitions/grib2/tables/27/4.2.4.3.table new file mode 100644 index 000000000..a46f4a403 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.3.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Magnetic field magnitude (T) +1 1 1st vector component of magnetic field (T) +2 2 2nd vector component of magnetic field (T) +3 3 3rd vector component of magnetic field (T) +4 4 Electric field magnitude (V m-1) +5 5 1st vector component of electric field (V m-1) +6 6 2nd vector component of electric field (V m-1) +7 7 3rd vector component of electric field (V m-1) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.4.table b/definitions/grib2/tables/27/4.2.4.4.table new file mode 100644 index 000000000..b71abeb93 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.4.table @@ -0,0 +1,11 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Proton flux (differential) ((m2 s sr eV)-1) +1 1 Proton flux (integral) ((m2 s sr )-1) +2 2 Electron flux (differential) ((m2 s sr eV)-1) +3 3 Electron flux (integral) ((m2 s sr)-1) +4 4 Heavy ion flux (differential) ((m2 s sr eV/nuc)-1) +5 5 Heavy ion flux (integral) ((m2 s sr)-1) +6 6 Cosmic ray neutron flux (/h) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.5.table b/definitions/grib2/tables/27/4.2.4.5.table new file mode 100644 index 000000000..014ea22fa --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.5.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Amplitude (dB) +1 1 Phase (rad) +2 2 Frequency (Hz) +3 3 Wave length (m) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.6.table b/definitions/grib2/tables/27/4.2.4.6.table new file mode 100644 index 000000000..67f551f7a --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.6.table @@ -0,0 +1,11 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Integrated solar irradiance (W m-2) +1 1 Solar X-ray flux (XRS long) (W m-2) +2 2 Solar X-ray flux (XRS short) (W m-2) +3 3 Solar EUV irradiance (W m-2) +4 4 Solar spectral irradiance (W m-2 nm-1) +5 5 F10.7 (W m-2 Hz-1) +6 6 Solar radio emissions (W m-2 Hz-1) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.7.table b/definitions/grib2/tables/27/4.2.4.7.table new file mode 100644 index 000000000..9b93bcff1 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.7.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Limb intensity (J m-2 s-1) +1 1 Disk intensity (J m-2 s-1) +2 2 Disk intensity day (J m-2 s-1) +3 3 Disk intensity night (J m-2 s-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.8.table b/definitions/grib2/tables/27/4.2.4.8.table new file mode 100644 index 000000000..358b91ca7 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.8.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 X-ray radiance (W sr-1 m-2) +1 1 EUV radiance (W sr-1 m-2) +2 2 H-alpha radiance (W sr-1 m-2) +3 3 White light radiance (W sr-1 m-2) +4 4 CaII-K radiance (W sr-1 m-2) +5 5 White light coronagraph radiance (W sr-1 m-2) +6 6 Heliospheric radiance (W sr-1 m-2) +7 7 Thematic mask (Numeric) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.9.table b/definitions/grib2/tables/27/4.2.4.9.table new file mode 100644 index 000000000..e96c81ba3 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.9.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pedersen conductivity (S m-1) +1 1 Hall conductivity (S m-1) +2 2 Parallel conductivity (S m-1) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.201.table b/definitions/grib2/tables/27/4.201.table new file mode 100644 index 000000000..44943d5e0 --- /dev/null +++ b/definitions/grib2/tables/27/4.201.table @@ -0,0 +1,17 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +11 11 Drizzle +12 12 Freezing drizzle +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.202.table b/definitions/grib2/tables/27/4.202.table new file mode 100644 index 000000000..438502ff9 --- /dev/null +++ b/definitions/grib2/tables/27/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.203.table b/definitions/grib2/tables/27/4.203.table new file mode 100644 index 000000000..8a9aedf7a --- /dev/null +++ b/definitions/grib2/tables/27/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.204.table b/definitions/grib2/tables/27/4.204.table new file mode 100644 index 000000000..481372936 --- /dev/null +++ b/definitions/grib2/tables/27/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (6-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.205.table b/definitions/grib2/tables/27/4.205.table new file mode 100644 index 000000000..5b4484dfd --- /dev/null +++ b/definitions/grib2/tables/27/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.206.table b/definitions/grib2/tables/27/4.206.table new file mode 100644 index 000000000..02c3dfdf9 --- /dev/null +++ b/definitions/grib2/tables/27/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.207.table b/definitions/grib2/tables/27/4.207.table new file mode 100644 index 000000000..8ddb2e048 --- /dev/null +++ b/definitions/grib2/tables/27/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.208.table b/definitions/grib2/tables/27/4.208.table new file mode 100644 index 000000000..b83685a1a --- /dev/null +++ b/definitions/grib2/tables/27/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.209.table b/definitions/grib2/tables/27/4.209.table new file mode 100644 index 000000000..cb7617071 --- /dev/null +++ b/definitions/grib2/tables/27/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.210.table b/definitions/grib2/tables/27/4.210.table new file mode 100644 index 000000000..524a6ca73 --- /dev/null +++ b/definitions/grib2/tables/27/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.211.table b/definitions/grib2/tables/27/4.211.table new file mode 100644 index 000000000..098eb2d43 --- /dev/null +++ b/definitions/grib2/tables/27/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.212.table b/definitions/grib2/tables/27/4.212.table new file mode 100644 index 000000000..1a085b88d --- /dev/null +++ b/definitions/grib2/tables/27/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.213.table b/definitions/grib2/tables/27/4.213.table new file mode 100644 index 000000000..c65784a00 --- /dev/null +++ b/definitions/grib2/tables/27/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.214.table b/definitions/grib2/tables/27/4.214.table new file mode 100644 index 000000000..9df466fe5 --- /dev/null +++ b/definitions/grib2/tables/27/4.214.table @@ -0,0 +1,11 @@ +# Code table 4.214 - Environmental Factor Qualifier +0 0 Worst +1 1 Very poor +2 2 Poor +3 3 Average +4 4 Good +5 5 Excellent +# 6-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.215.table b/definitions/grib2/tables/27/4.215.table new file mode 100644 index 000000000..034db72be --- /dev/null +++ b/definitions/grib2/tables/27/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.216.table b/definitions/grib2/tables/27/4.216.table new file mode 100644 index 000000000..5d1460cef --- /dev/null +++ b/definitions/grib2/tables/27/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/definitions/grib2/tables/27/4.217.table b/definitions/grib2/tables/27/4.217.table new file mode 100644 index 000000000..a4452182c --- /dev/null +++ b/definitions/grib2/tables/27/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.218.table b/definitions/grib2/tables/27/4.218.table new file mode 100644 index 000000000..fcd06c348 --- /dev/null +++ b/definitions/grib2/tables/27/4.218.table @@ -0,0 +1,46 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation/crops +15 15 Permanent snow/ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +19 19 Warm liquid water cloud +20 20 Supercooled liquid water cloud +21 21 Mixed-phase cloud +22 22 Optically thin ice cloud +23 23 Optically thick ice cloud +24 24 Multilayered cloud +# 25-96 Reserved +97 97 Snow/ice on land +98 98 Snow/ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud/fog/stratus +102 102 Low cloud/stratocumulus +103 103 Low cloud/unknown type +104 104 Medium cloud/nimbostratus +105 105 Medium cloud/altostratus +106 106 Medium cloud/unknown type +107 107 High cloud/cumulus +108 108 High cloud/cirrus +109 109 High cloud/unknown +110 110 Unknown cloud type +111 111 Single layer water cloud +112 112 Single layer ice cloud +# 113-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.219.table b/definitions/grib2/tables/27/4.219.table new file mode 100644 index 000000000..86df0522e --- /dev/null +++ b/definitions/grib2/tables/27/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.220.table b/definitions/grib2/tables/27/4.220.table new file mode 100644 index 000000000..93e841f8b --- /dev/null +++ b/definitions/grib2/tables/27/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.221.table b/definitions/grib2/tables/27/4.221.table new file mode 100644 index 000000000..8448533d7 --- /dev/null +++ b/definitions/grib2/tables/27/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.222.table b/definitions/grib2/tables/27/4.222.table new file mode 100644 index 000000000..57f113014 --- /dev/null +++ b/definitions/grib2/tables/27/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.223.table b/definitions/grib2/tables/27/4.223.table new file mode 100644 index 000000000..f0deb076a --- /dev/null +++ b/definitions/grib2/tables/27/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/definitions/grib2/tables/27/4.224.table b/definitions/grib2/tables/27/4.224.table new file mode 100644 index 000000000..e87cde4bb --- /dev/null +++ b/definitions/grib2/tables/27/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/4.225.table b/definitions/grib2/tables/27/4.225.table new file mode 100644 index 000000000..9dc374087 --- /dev/null +++ b/definitions/grib2/tables/27/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/definitions/grib2/tables/27/4.227.table b/definitions/grib2/tables/27/4.227.table new file mode 100644 index 000000000..27c76553d --- /dev/null +++ b/definitions/grib2/tables/27/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/definitions/grib2/tables/27/4.228.table b/definitions/grib2/tables/27/4.228.table new file mode 100644 index 000000000..559ae916a --- /dev/null +++ b/definitions/grib2/tables/27/4.228.table @@ -0,0 +1,8 @@ +# Code table 4.228 - Icing severity +0 0 None +1 1 Trace +2 2 Light +3 3 Moderate +4 4 Severe +# 5-254 Reserved +255 255 Missing value diff --git a/definitions/grib2/tables/27/4.230.table b/definitions/grib2/tables/27/4.230.table new file mode 100644 index 000000000..147ff9747 --- /dev/null +++ b/definitions/grib2/tables/27/4.230.table @@ -0,0 +1,512 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium cation NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HOO +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Dihydrogen H2 +21 21 Atomic nitrogen N +22 22 Sulphate anion SO42- +23 23 Atomic Radon Rn +24 24 Mercury vapour Hg(0) +25 25 Mercury(II) cation Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Dioxygen O2 +39 39 Nitryl chloride NO2Cl +40 40 Sulphuric acid H2SO4 +41 41 Hydrogen sulphide H2S +42 42 Sulphur trioxide SO3 +43 43 Bromine Br2 +44 44 Hydrofluoric acid HF +45 45 Sulphur hexafluoride SF6 +46 46 Chlorine Cl2 +# 47-9999 Reserved +10000 10000 Hydroxyl radical HO +10001 10001 Methyl peroxy radical CH3OO +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butane (all isomers) C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 XyleneC8H10 +10024 10024 Methanesulphonic acid CH3SO3H +10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO +10026 10026 Peroxyacetyl radical CH3C(O)OO +10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH +10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO +10029 10029 Acetone (propan-2-one) CH3C(O)CH3 +10030 10030 Ethyl dioxidanyl radical CH3CH2OO +10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 +10032 10032 Acetaldehyde (ethanal) CH3CHO +10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO +10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH +10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH +10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O +10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO +10038 10038 Glyoxal (oxaldehyde) OCHCHO +10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO +10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH +10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH +10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH +10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 +10044 10044 Phenoxy radical C6H5O +10045 10045 Methyl radical CH3 +10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS +10047 10047 Dibromomethane CH2Br2 +10048 10048 Methoxy radical CH3O +10049 10049 Tribromomethane CHBr3 +10050 10050 Formyl radical (oxomethyl radical) HOC +10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO +10052 10052 Ethyl hydroperoxide CH3CH2OOH +10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO +10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH +# 10055-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, ...) +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO +# 10502-20000 Reserved +20001 20001 Hydrogen chloride HCl +20002 20002 CFC-11 (trichlorofluoromethane) CCl3F +20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 +20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 +20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 +20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 +20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 +20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 +20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 +20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 +20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 +20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 +20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 +20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 +20015 20015 HCC-40 (methyl chloride) CH3Cl +20016 20016 HCC-10 (carbon tetrachloride) CCl4 +20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 +20018 20018 HBC-40B1 (methyl bromide) CH3Br +20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 +20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 +20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 +20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F +# 20023-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +# 30001-30009 Reserved +30010 30010 Tritium (Hydrogen 3) H-3 +30011 30011 Tritium organic bounded H-3o +30012 30012 Tritium inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +30295 30295 Carbon-13 C-13 +30296 30296 Lead Pb +# 30297-39999 Reserved +40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 +40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 +40002 40002 Singlet excited oxygen atom O(1D) +40003 40003 Triplet ground state oxygen atom O(3P) +# 40004-59999 Reserved +60000 60000 HOx radical (OH+HO2) HOx +60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC +60016 60016 Lumped oxygenated hydrocarbons OVOC +60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx +60018 60018 Organic aldehydes RCHO +60019 60019 Organic peroxides ROOH +60020 60020 Organic nitrates RNO3 +60021 60021 Ethers ROR +60022 60022 Amines NRRR +60023 60023 Ketones RC(O)R +60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R +60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R +60026 60026 Hydroxy ketones RC(OH)C(O)R +60027 60027 Oxides Ox +# 60028-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +# 62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +# 62024 Reserved +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +# 62027 Reserved +62028 62028 Total aerosol hydrophilic +62029 62029 Total aerosol hydrophobic +# 62030-62099 Reserved +62100 62100 Alnus (alder) pollen +62101 62101 Betula (birch) pollen +62102 62102 Castanea (chestnut) pollen +62103 62103 Carpinus (hornbeam) pollen +62104 62104 Corylus (hazel) pollen +62105 62105 Fagus (beech) pollen +62106 62106 Fraxinus (ash) pollen +62107 62107 Pinus (pine) pollen +62108 62108 Platanus (plane) pollen +62109 62109 Populus (cottonwood, poplar) pollen +62110 62110 Quercus (oak) pollen +62111 62111 Salix (willow) pollen +62112 62112 Taxus (yew) pollen +62113 62113 Tilia (lime, linden) pollen +62114 62114 Ulmus (elm) pollen +# 62115-62199 Reserved +62200 62200 Ambrosia (ragweed, burr-ragweed) pollen +62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen +62203 62203 Plantago (plantain) pollen +62204 62204 Rumex (dock, sorrel) pollen +62205 62205 Urtica (nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (grass family) pollen +# 62301-62999 Reserved +# 63000-65534 For experimental use at local level +65535 65535 Missing diff --git a/definitions/grib2/tables/27/4.233.table b/definitions/grib2/tables/27/4.233.table new file mode 100644 index 000000000..051d603a9 --- /dev/null +++ b/definitions/grib2/tables/27/4.233.table @@ -0,0 +1,512 @@ +# Code table 4.233 - Aerosol type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium cation NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HOO +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Dihydrogen H2 +21 21 Atomic nitrogen N +22 22 Sulphate anion SO42- +23 23 Atomic Radon Rn +24 24 Mercury vapour Hg(0) +25 25 Mercury(II) cation Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Dioxygen O2 +39 39 Nitryl chloride NO2Cl +40 40 Sulphuric acid H2SO4 +41 41 Hydrogen sulphide H2S +42 42 Sulphur trioxide SO3 +43 43 Bromine Br2 +44 44 Hydrofluoric acid HF +45 45 Sulphur hexafluoride SF6 +46 46 Chlorine Cl2 +# 47-9999 Reserved +10000 10000 Hydroxyl radical HO +10001 10001 Methyl peroxy radical CH3OO +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butane (all isomers) C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 XyleneC8H10 +10024 10024 Methanesulphonic acid CH3SO3H +10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO +10026 10026 Peroxyacetyl radical CH3C(O)OO +10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH +10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO +10029 10029 Acetone (propan-2-one) CH3C(O)CH3 +10030 10030 Ethyl dioxidanyl radical CH3CH2OO +10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 +10032 10032 Acetaldehyde (ethanal) CH3CHO +10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO +10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH +10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH +10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O +10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO +10038 10038 Glyoxal (oxaldehyde) OCHCHO +10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO +10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH +10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH +10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH +10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 +10044 10044 Phenoxy radical C6H5O +10045 10045 Methyl radical CH3 +10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS +10047 10047 Dibromomethane CH2Br2 +10048 10048 Methoxy radical CH3O +10049 10049 Tribromomethane CHBr3 +10050 10050 Formyl radical (oxomethyl radical) HOC +10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO +10052 10052 Ethyl hydroperoxide CH3CH2OOH +10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO +10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH +# 10055-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, ...) +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO +# 10502-20000 Reserved +20001 20001 Hydrogen chloride HCl +20002 20002 CFC-11 (trichlorofluoromethane) CCl3F +20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 +20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 +20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 +20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 +20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 +20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 +20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 +20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 +20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 +20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 +20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 +20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 +20015 20015 HCC-40 (methyl chloride) CH3Cl +20016 20016 HCC-10 (carbon tetrachloride) CCl4 +20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 +20018 20018 HBC-40B1 (methyl bromide) CH3Br +20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 +20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 +20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 +20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F +# 20023-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +# 30001-30009 Reserved +30010 30010 Tritium (Hydrogen 3) H-3 +30011 30011 Tritium organic bounded H-3o +30012 30012 Tritium inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +30295 30295 Carbon-13 C-13 +30296 30296 Lead Pb +# 30297-39999 Reserved +40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 +40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 +40002 40002 Singlet excited oxygen atom O(1D) +40003 40003 Triplet ground state oxygen atom O(3P) +# 40004-59999 Reserved +60000 60000 HOx radical (OH+HO2) HOx +60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC +60016 60016 Lumped oxygenated hydrocarbons OVOC +60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx +60018 60018 Organic aldehydes RCHO +60019 60019 Organic peroxides ROOH +60020 60020 Organic nitrates RNO3 +60021 60021 Ethers ROR +60022 60022 Amines NRRR +60023 60023 Ketones RC(O)R +60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R +60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R +60026 60026 Hydroxy ketones RC(OH)C(O)R +60027 60027 Oxides Ox +# 60028-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +# 62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +# 62024 Reserved +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +# 62027 Reserved +62028 62028 Total aerosol hydrophilic +62029 62029 Total aerosol hydrophobic +# 62030-62099 Reserved +62100 62100 Alnus (alder) pollen +62101 62101 Betula (birch) pollen +62102 62102 Castanea (chestnut) pollen +62103 62103 Carpinus (hornbeam) pollen +62104 62104 Corylus (hazel) pollen +62105 62105 Fagus (beech) pollen +62106 62106 Fraxinus (ash) pollen +62107 62107 Pinus (pine) pollen +62108 62108 Platanus (plane) pollen +62109 62109 Populus (cottonwood, poplar) pollen +62110 62110 Quercus (oak) pollen +62111 62111 Salix (willow) pollen +62112 62112 Taxus (yew) pollen +62113 62113 Tilia (lime, linden) pollen +62114 62114 Ulmus (elm) pollen +# 62115-62199 Reserved +62200 62200 Ambrosia (ragweed, burr-ragweed) pollen +62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen +62203 62203 Plantago (plantain) pollen +62204 62204 Rumex (dock, sorrel) pollen +62205 62205 Urtica (nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (grass family) pollen +# 62301-62999 Reserved +# 63000-65534 For experimental use at local level +65535 65535 Missing diff --git a/definitions/grib2/tables/27/4.234.table b/definitions/grib2/tables/27/4.234.table new file mode 100644 index 000000000..816541ce9 --- /dev/null +++ b/definitions/grib2/tables/27/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/definitions/grib2/tables/27/4.236.table b/definitions/grib2/tables/27/4.236.table new file mode 100644 index 000000000..fbe093ce9 --- /dev/null +++ b/definitions/grib2/tables/27/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/definitions/grib2/tables/27/4.238.table b/definitions/grib2/tables/27/4.238.table new file mode 100644 index 000000000..7e1c8e4d0 --- /dev/null +++ b/definitions/grib2/tables/27/4.238.table @@ -0,0 +1,32 @@ +# Code table 4.238 - Source or sink +0 0 Other +1 1 Aviation +2 2 Lightning +3 3 Biogenic sources +4 4 Anthropogenic sources +5 5 Wild fires +6 6 Natural sources +7 7 Volcanoes +8 8 Bio-fuel +9 9 Fossil-fuel +10 10 Wetlands +11 11 Oceans +12 12 Elevated anthropogenic sources +13 13 Surface anthropogenic sources +14 14 Agriculture livestock +15 15 Agriculture soils +16 16 Agriculture waste burning +17 17 Agriculture (all) +18 18 Residential, commercial and other combustion +19 19 Power generation +20 20 Super power stations +21 21 Fugitives +22 22 Industrial process +23 23 Solvents +24 24 Ships +25 25 Wastes (solid and water) +26 26 Road transportation +27 27 Off-road transportation +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.240.table b/definitions/grib2/tables/27/4.240.table new file mode 100644 index 000000000..4daef3d13 --- /dev/null +++ b/definitions/grib2/tables/27/4.240.table @@ -0,0 +1,13 @@ +# Code table 4.240 - Type of distribution function +0 0 No specific distribution function given +1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre +2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg +3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) +4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance +5 5 Log-normal distribution with spatially variable number density, mean diameter and variance +6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) +7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) +8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type No. 7 (see above) with fixed variance(p1) and fixed particle density(p2) +# 9-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing value diff --git a/definitions/grib2/tables/27/4.241.table b/definitions/grib2/tables/27/4.241.table new file mode 100644 index 000000000..a037b4ba5 --- /dev/null +++ b/definitions/grib2/tables/27/4.241.table @@ -0,0 +1,9 @@ +# Code table 4.241 - Coverage attributes +0 0 Undefined +1 1 Unmodified +2 2 Snow covered +3 3 Flooded +4 4 Ice covered +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/definitions/grib2/tables/27/4.242.table b/definitions/grib2/tables/27/4.242.table new file mode 100644 index 000000000..083f88c29 --- /dev/null +++ b/definitions/grib2/tables/27/4.242.table @@ -0,0 +1,7 @@ +# Code table 4.242 - Tile classification +0 0 Reserved +1 1 Land use classes according to ESA-GlobCover GCV2009 +2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/definitions/grib2/tables/27/4.243.table b/definitions/grib2/tables/27/4.243.table new file mode 100644 index 000000000..b39053311 --- /dev/null +++ b/definitions/grib2/tables/27/4.243.table @@ -0,0 +1,43 @@ +# Code table 4.243 - Tile class +0 0 Reserved +1 1 Evergreen broadleaved forest +2 2 Deciduous broadleaved closed forest +3 3 Deciduous broadleaved open forest +4 4 Evergreen needle-leaf forest +5 5 Deciduous needle-leaf forest +6 6 Mixed leaf trees +7 7 Freshwater flooded trees +8 8 Saline water flooded trees +9 9 Mosaic tree/natural vegetation +10 10 Burnt tree cover +11 11 Evergreen shrubs closed-open +12 12 Deciduous shrubs closed-open +13 13 Herbaceous vegetation closed-open +14 14 Sparse herbaceous or grass +15 15 Flooded shrubs or herbaceous +16 16 Cultivated and managed areas +17 17 Mosaic crop/tree/natural vegetation +18 18 Mosaic crop/shrub/grass +19 19 Bare areas +20 20 Water +21 21 Snow and ice +22 22 Artificial surface +23 23 Ocean +24 24 Irrigated croplands +25 25 Rainfed croplands +26 26 Mosaic cropland (50-70%) - vegetation (20-50%) +27 27 Mosaic vegetation (50-70%) - cropland (20-50%) +28 28 Closed broadleaved evergreen forest +29 29 Closed needle-leaved evergreen forest +30 30 Open needle-leaved deciduous forest +31 31 Mixed broadleaved and needle-leaved forest +32 32 Mosaic shrubland (50-70%) - grassland (20-50%) +33 33 Mosaic grassland (50-70%) - shrubland (20-50%) +34 34 Closed to open shrubland +35 35 Sparse vegetation +36 36 Closed to open forest regularly flooded +37 37 Closed forest or shrubland permanently flooded +38 38 Closed to open grassland regularly flooded +39 39 Undefined +# 40-32767 Reserved +# 32768- Reserved for local use diff --git a/definitions/grib2/tables/27/4.244.table b/definitions/grib2/tables/27/4.244.table new file mode 100644 index 000000000..40534ee09 --- /dev/null +++ b/definitions/grib2/tables/27/4.244.table @@ -0,0 +1,7 @@ +# Code table 4.244 - Quality indicator +0 0 No quality information available +1 1 Failed +2 2 Passed +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.246.table b/definitions/grib2/tables/27/4.246.table new file mode 100644 index 000000000..ab22dbe1e --- /dev/null +++ b/definitions/grib2/tables/27/4.246.table @@ -0,0 +1,7 @@ +# Code table 4.246 - Thunderstorm intensity +0 0 No thunderstorm occurence +1 1 Weak thunderstorm +2 2 Moderate thunderstorm +3 3 Severe thunderstorm +# 4-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/4.247.table b/definitions/grib2/tables/27/4.247.table new file mode 100644 index 000000000..cd7fc90bd --- /dev/null +++ b/definitions/grib2/tables/27/4.247.table @@ -0,0 +1,7 @@ +# Code table 4.247 - Precipitation intensity +0 0 No precipitation occurrence +1 1 Light precipitation +2 2 Moderate precipitation +3 3 Heavy precipitation +# 4-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/4.248.table b/definitions/grib2/tables/27/4.248.table new file mode 100644 index 000000000..5bb5e831c --- /dev/null +++ b/definitions/grib2/tables/27/4.248.table @@ -0,0 +1,5 @@ +0 0 Nearest analysis time or forecast time to specified local time +1 1 Interpolated to be valid at the specified local time +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.3.table b/definitions/grib2/tables/27/4.3.table new file mode 100644 index 000000000..8ba9e08ab --- /dev/null +++ b/definitions/grib2/tables/27/4.3.table @@ -0,0 +1,23 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +14 14 Nowcast +15 15 Hindcast +16 16 Physical retrieval +17 17 Regression analysis +18 18 Difference between two forecasts +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.4.table b/definitions/grib2/tables/27/4.4.table new file mode 100644 index 000000000..7087ebddb --- /dev/null +++ b/definitions/grib2/tables/27/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.5.table b/definitions/grib2/tables/27/4.5.table new file mode 100644 index 000000000..e63b5e86a --- /dev/null +++ b/definitions/grib2/tables/27/4.5.table @@ -0,0 +1,86 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface (-) +2 2 Cloud base level (-) +3 3 Level of cloud tops (-) +4 4 Level of 0 degree C isotherm (-) +5 5 Level of adiabatic condensation lifted from the surface (-) +6 6 Maximum wind level (-) +7 7 Tropopause (-) +8 sfc Nominal top of the atmosphere (-) +9 9 Sea bottom (-) +10 10 Entire atmosphere (-) +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) +14 14 Level of free convection (LFC) (-) +15 15 Convective condensation level (CCL) (-) +16 16 Level of neutral buoyancy or equilibrium level (LNB) (-) +17 17 Departure level of the most unstable parcel of air (MUDL) +18 18 Departure level of a mixed layer parcel of air with specified layer depth (Pa) +# 19 Reserved +20 20 Isothermal level (K) +21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) +22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) +23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) +24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) +25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) +# 26-29 Reserved +30 30 Specified radius from the center of the Sun (m) +31 31 Solar photosphere +32 32 Ionospheric D-region level +33 33 Ionospheric E-region level +34 34 Ionospheric F1-region level +35 35 Ionospheric F2-region level +# 36-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level (-) +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level (-) +112 112 Reserved +113 113 Logarithmic hybrid level +114 sol Snow level (Numeric) +115 115 Sigma height level +# 116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level (-) +119 hpl Hybrid pressure level (-) +# 120-149 Reserved +150 150 Generalized vertical height coordinate +151 sol Soil level (Numeric) +152 sol Sea ice level (Numeric) +# 153-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom (-) +163 163 Bottom of sediment layer (-) +164 164 Bottom of thermally active sediment layer (-) +165 165 Bottom of sediment layer penetrated by thermal wave (-) +166 166 Mixing layer (-) +167 167 Bottom of root zone (-) +168 168 Ocean model level (Numeric) +169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) +170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) +# 171-173 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +# 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.6.table b/definitions/grib2/tables/27/4.6.table new file mode 100644 index 000000000..b2dfeb498 --- /dev/null +++ b/definitions/grib2/tables/27/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.7.table b/definitions/grib2/tables/27/4.7.table new file mode 100644 index 000000000..e0de0e1b2 --- /dev/null +++ b/definitions/grib2/tables/27/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.8.table b/definitions/grib2/tables/27/4.8.table new file mode 100644 index 000000000..ad883039c --- /dev/null +++ b/definitions/grib2/tables/27/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.9.table b/definitions/grib2/tables/27/4.9.table new file mode 100644 index 000000000..9f74599c3 --- /dev/null +++ b/definitions/grib2/tables/27/4.9.table @@ -0,0 +1,13 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +5 5 Probability of event equal to lower limit +6 6 Probability of event in above normal category +7 7 Probability of event in near normal category +8 8 Probability of event in below normal category +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.91.table b/definitions/grib2/tables/27/4.91.table new file mode 100644 index 000000000..44cf25f44 --- /dev/null +++ b/definitions/grib2/tables/27/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/definitions/grib2/tables/27/5.0.table b/definitions/grib2/tables/27/5.0.table new file mode 100644 index 000000000..27b1a89fd --- /dev/null +++ b/definitions/grib2/tables/27/5.0.table @@ -0,0 +1,22 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +# 5-39 Reserved +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +42 42 Grid point and spectral data - CCSDS recommended lossless compression +# 43-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52 Reserved +53 53 Spectral data for limited area models - complex packing +# 54-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing diff --git a/definitions/grib2/tables/27/5.1.table b/definitions/grib2/tables/27/5.1.table new file mode 100644 index 000000000..854330c74 --- /dev/null +++ b/definitions/grib2/tables/27/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/5.2.table b/definitions/grib2/tables/27/5.2.table new file mode 100644 index 000000000..40586a131 --- /dev/null +++ b/definitions/grib2/tables/27/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/5.25.table b/definitions/grib2/tables/27/5.25.table new file mode 100644 index 000000000..1b45f28a3 --- /dev/null +++ b/definitions/grib2/tables/27/5.25.table @@ -0,0 +1,9 @@ +# Code table 5.25 - type of bi-Fourier subtruncation +# 0-76 Reserved +77 77 Rectangular +# 78-87 Reserved +88 88 Elliptic +# 89-98 Reserved +99 99 Diamond +# 100-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/5.26.table b/definitions/grib2/tables/27/5.26.table new file mode 100644 index 000000000..9e91ebf2e --- /dev/null +++ b/definitions/grib2/tables/27/5.26.table @@ -0,0 +1,5 @@ +# Code table 5.26 - packing mode for axes +0 0 Spectral coefficients for axes are packed +1 1 Spectral coefficients for axes included in the unpacked subset +# 2-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/5.3.table b/definitions/grib2/tables/27/5.3.table new file mode 100644 index 000000000..c3b7b30fe --- /dev/null +++ b/definitions/grib2/tables/27/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/5.4.table b/definitions/grib2/tables/27/5.4.table new file mode 100644 index 000000000..8121c1819 --- /dev/null +++ b/definitions/grib2/tables/27/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/5.40.table b/definitions/grib2/tables/27/5.40.table new file mode 100644 index 000000000..b9bad2c39 --- /dev/null +++ b/definitions/grib2/tables/27/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/5.5.table b/definitions/grib2/tables/27/5.5.table new file mode 100644 index 000000000..3ef3eb070 --- /dev/null +++ b/definitions/grib2/tables/27/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/5.6.table b/definitions/grib2/tables/27/5.6.table new file mode 100644 index 000000000..6d5177877 --- /dev/null +++ b/definitions/grib2/tables/27/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/5.7.table b/definitions/grib2/tables/27/5.7.table new file mode 100644 index 000000000..5ab780056 --- /dev/null +++ b/definitions/grib2/tables/27/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/6.0.table b/definitions/grib2/tables/27/6.0.table new file mode 100644 index 000000000..2a29aa285 --- /dev/null +++ b/definitions/grib2/tables/27/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/definitions/grib2/template.4.88.def b/definitions/grib2/template.4.88.def new file mode 100644 index 000000000..5cb0d616a --- /dev/null +++ b/definitions/grib2/template.4.88.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.88 + +include "grib2/template.4.parameter.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.localtime.def" diff --git a/definitions/grib2/template.4.localtime.def b/definitions/grib2/template.4.localtime.def new file mode 100644 index 000000000..d0d01ccac --- /dev/null +++ b/definitions/grib2/template.4.localtime.def @@ -0,0 +1,40 @@ +# (C) Copyright 2005- ECMWF. + +codetable[1] localTimeMethod ('4.248.table',masterDir,localDir)=255 ; + +# n - number of Forecasts used in Local Time +unsigned[1] numberOfForecastsUsedInLocalTime=0; + +localTimeForecastList list(numberOfForecastsUsedInLocalTime) +{ +# Year of Forecast used in Local Time +unsigned[2] yearOfForecastUsedInLocalTime=0 : edition_specific; + +# Month of Forecast used in Local Time +unsigned[1] monthOfForecastUsedInLocalTime=0 : edition_specific; + +# Day of Forecast used in Local Time +unsigned[1] dayOfForecastUsedInLocalTime=0 : edition_specific; + +# Hour of Forecast used in Local Time +unsigned[1] hourOfForecastUsedInLocalTime=0 : edition_specific; + +# Minute of Forecast used in Local Time +unsigned[1] minuteOfForecastUsedInLocalTime=0 : edition_specific; + +# Second of Forecast used in Local Time +unsigned[1] secondOfForecastUsedInLocalTime=0 : edition_specific; + +# Indicator of unit of time for ForecastTime +codetable[1] indicatorOfUnitForForecastTime ('4.4.table',masterDir,localDir)=1 ; + +# Length of the time range over which statistical processing is done, in units defined by the previous octet +unsigned[4] forecastTime=0 ; + +# Indicator of unit of time for the increment between the successive steps used +codetable[1] indicatorOfUnitForTimeIncrement ('4.4.table',masterDir,localDir)=255 ; + +# Time increment between successive fields, in units defined by the previous octet +unsigned[4] timeIncrement=0 ; +} + From 0f6893685ff00bf959202c0d7b07386a75937ce2 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 18 Nov 2020 21:52:04 +0000 Subject: [PATCH 140/683] ECC-1163: Update CAMS parameters with their CF names --- definitions/grib1/cfName.def | 15 + .../grib1/localConcepts/ecmf/cfName.def | 300 ++++++++++ definitions/grib2/cfName.def | 6 + .../grib2/localConcepts/ecmf/cfName.def | 516 ++++++++++++++++++ tests/grib_cfNames.sh | 15 + 5 files changed, 852 insertions(+) diff --git a/definitions/grib1/cfName.def b/definitions/grib1/cfName.def index f342e4b1e..9ec4e813b 100644 --- a/definitions/grib1/cfName.def +++ b/definitions/grib1/cfName.def @@ -75,6 +75,11 @@ table2Version = 3 ; indicatorOfParameter = 57 ; } +#Total column ozone +'atmosphere_mass_content_of_ozone' = { + table2Version = 3 ; + indicatorOfParameter = 10 ; + } #Boundary layer dissipation 'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { table2Version = 3 ; @@ -156,6 +161,11 @@ table2Version = 2 ; indicatorOfParameter = 57 ; } +#Total column ozone +'atmosphere_mass_content_of_ozone' = { + table2Version = 2 ; + indicatorOfParameter = 10 ; + } #Boundary layer dissipation 'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { table2Version = 2 ; @@ -237,6 +247,11 @@ table2Version = 1 ; indicatorOfParameter = 57 ; } +#Total column ozone +'atmosphere_mass_content_of_ozone' = { + table2Version = 1 ; + indicatorOfParameter = 10 ; + } #Boundary layer dissipation 'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { table2Version = 1 ; diff --git a/definitions/grib1/localConcepts/ecmf/cfName.def b/definitions/grib1/localConcepts/ecmf/cfName.def index b1c1ad73d..10350c75f 100644 --- a/definitions/grib1/localConcepts/ecmf/cfName.def +++ b/definitions/grib1/localConcepts/ecmf/cfName.def @@ -654,6 +654,16 @@ table2Version = 170 ; indicatorOfParameter = 185 ; } +#Ozone mass mixing ratio +'mass_fraction_of_ozone_in_air' = { + table2Version = 128 ; + indicatorOfParameter = 203 ; + } +#Total column ozone +'atmosphere_mass_content_of_ozone' = { + table2Version = 128 ; + indicatorOfParameter = 206 ; + } #Surface net solar radiation, clear sky 'surface_net_downward_shortwave_flux_assuming_clear_sky' = { table2Version = 128 ; @@ -679,6 +689,216 @@ table2Version = 174 ; indicatorOfParameter = 97 ; } +#Particulate matter d < 1 um +'mass_concentration_of_pm1_ambient_aerosol_particles_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 72 ; + } +#Particulate matter d < 2.5 um +'mass_concentration_of_pm2p5_ambient_aerosol_particles_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 73 ; + } +#Particulate matter d < 10 um +'mass_concentration_of_pm10_ambient_aerosol_particles_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 74 ; + } +#Hydrogen peroxide +'mass_fraction_of_hydrogen_peroxide_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 3 ; + } +#Methane (chemistry) +'mass_fraction_of_methane_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 4 ; + } +#Nitric acid +'mass_fraction_of_nitric_acid_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 6 ; + } +#Ethene +'mass_fraction_of_ethene_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 10 ; + } +#Peroxyacetyl nitrate +'mass_fraction_of_peroxyacetyl_nitrate_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 13 ; + } +#Isoprene +'mass_fraction_of_isoprene_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 16 ; + } +#Dimethyl sulfide +'mass_fraction_of_dimethyl_sulfide_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 18 ; + } +#Ammonia +'mass_fraction_of_ammonia_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 19 ; + } +#Nitrogen monoxide +'mass_fraction_of_nitrogen_monoxide_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 27 ; + } +#Hydroxyl radical +'mass_fraction_of_hydroxyl_radical_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 30 ; + } +#Nitrate radical +'mass_fraction_of_nitrate_radical_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 32 ; + } +#Dinitrogen pentoxide +'mass_fraction_of_dinitrogen_pentoxide_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 33 ; + } +#Methanol +'mass_fraction_of_methanol_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 42 ; + } +#Formic acid +'mass_fraction_of_formic_acid_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 43 ; + } +#Ethane +'mass_fraction_of_ethane_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 45 ; + } +#Ethanol +'mass_fraction_of_ethanol_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 46 ; + } +#Propane +'mass_fraction_of_propane_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 47 ; + } +#Propene +'mass_fraction_of_propene_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 48 ; + } +#Terpenes +'mass_fraction_of_terpenes_in_air' = { + table2Version = 217 ; + indicatorOfParameter = 49 ; + } +#Total column hydrogen peroxide +'atmosphere_mass_content_of_hydrogen_peroxide' = { + table2Version = 218 ; + indicatorOfParameter = 3 ; + } +#Total column methane +'atmosphere_mass_content_of_methane' = { + table2Version = 218 ; + indicatorOfParameter = 4 ; + } +#Total column nitric acid +'atmosphere_mass_content_of_nitric_acid' = { + table2Version = 218 ; + indicatorOfParameter = 6 ; + } +#Total column ethene +'atmosphere_mass_content_of_ethene' = { + table2Version = 218 ; + indicatorOfParameter = 10 ; + } +#Total column peroxyacetyl nitrate +'atmosphere_mass_content_of_peroxyacetyl_nitrate' = { + table2Version = 218 ; + indicatorOfParameter = 13 ; + } +#Total column isoprene +'atmosphere_mass_content_of_isoprene' = { + table2Version = 218 ; + indicatorOfParameter = 16 ; + } +#Total column dimethyl sulfide +'atmosphere_mass_content_of_dimethyl_sulfide' = { + table2Version = 218 ; + indicatorOfParameter = 18 ; + } +#Total column ammonia +'atmosphere_mass_content_of_ammonia' = { + table2Version = 218 ; + indicatorOfParameter = 19 ; + } +#Total column sulfate +'atmosphere_mass_content_of_sulfate' = { + table2Version = 218 ; + indicatorOfParameter = 20 ; + } +#Total column nitrogen monoxide +'atmosphere_mass_content_of_nitrogen_monoxide' = { + table2Version = 218 ; + indicatorOfParameter = 27 ; + } +#Total column hydroxyl radical +'atmosphere_mass_content_of_hydroxyl_radical' = { + table2Version = 218 ; + indicatorOfParameter = 30 ; + } +#Total column nitrate radical +'atmosphere_mass_content_of_nitrate_radical' = { + table2Version = 218 ; + indicatorOfParameter = 32 ; + } +#Total column dinitrogen pentoxide +'atmosphere_mass_content_of_dinitrogen_pentoxide' = { + table2Version = 218 ; + indicatorOfParameter = 33 ; + } +#Total column methanol +'atmosphere_mass_content_of_methanol' = { + table2Version = 218 ; + indicatorOfParameter = 42 ; + } +#Total column formic acid +'atmosphere_mass_content_of_formic_acid' = { + table2Version = 218 ; + indicatorOfParameter = 43 ; + } +#Total column ethane +'atmosphere_mass_content_of_ethane' = { + table2Version = 218 ; + indicatorOfParameter = 45 ; + } +#Total column ethanol +'atmosphere_mass_content_of_ethanol' = { + table2Version = 218 ; + indicatorOfParameter = 46 ; + } +#Total column propane +'atmosphere_mass_content_of_propane' = { + table2Version = 218 ; + indicatorOfParameter = 47 ; + } +#Total column propene +'atmosphere_mass_content_of_propene' = { + table2Version = 218 ; + indicatorOfParameter = 48 ; + } +#Total column terpenes +'atmosphere_mass_content_of_terpenes' = { + table2Version = 218 ; + indicatorOfParameter = 49 ; + } #Sea water potential temperature 'sea_water_potential_temperature' = { table2Version = 151 ; @@ -728,6 +948,86 @@ 'sea_ice_thickness' = { table2Version = 174 ; indicatorOfParameter = 98 ; + } +#Carbon Dioxide +'mass_fraction_of_carbon_dioxide_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 61 ; + } +#Methane +'mass_fraction_of_methane_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 62 ; + } +#Nitrous oxide +'mass_fraction_of_nitrous_oxide_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 63 ; + } +#Total column Nitrous oxide +'atmosphere_mass_content_of_nitrous_oxide' = { + table2Version = 210 ; + indicatorOfParameter = 66 ; + } +#Nitrogen dioxide +'mass_fraction_of_nitrogen_dioxide_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 121 ; + } +#Sulphur dioxide +'mass_fraction_of_sulfur_dioxide_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 122 ; + } +#Carbon monoxide +'mass_fraction_of_carbon_monoxide_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 123 ; + } +#Formaldehyde +'mass_fraction_of_formaldehyde_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 124 ; + } +#Total column Nitrogen dioxide +'atmosphere_mass_content_of_nitrogen_dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 125 ; + } +#Total column Sulphur dioxide +'atmosphere_mass_content_of_sulfur_dioxide' = { + table2Version = 210 ; + indicatorOfParameter = 126 ; + } +#Total column Carbon monoxide +'atmosphere_mass_content_of_carbon_monoxide' = { + table2Version = 210 ; + indicatorOfParameter = 127 ; + } +#Total column Formaldehyde +'atmosphere_mass_content_of_formaldehyde' = { + table2Version = 210 ; + indicatorOfParameter = 128 ; + } +#Radon +'mass_fraction_of_radon_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 181 ; + } +#Total column Radon +'atmosphere_mass_content_of_radon' = { + table2Version = 210 ; + indicatorOfParameter = 183 ; + } +#GEMS Ozone +'mass_fraction_of_ozone_in_air' = { + table2Version = 210 ; + indicatorOfParameter = 203 ; + } +#GEMS Total column ozone +'atmosphere_mass_content_of_ozone' = { + table2Version = 210 ; + indicatorOfParameter = 206 ; } #Surface downward northward stress 'surface_downward_northward_stress' = { diff --git a/definitions/grib2/cfName.def b/definitions/grib2/cfName.def index b3f264ff4..7cf01fb43 100644 --- a/definitions/grib2/cfName.def +++ b/definitions/grib2/cfName.def @@ -33,6 +33,12 @@ parameterCategory = 2 ; parameterNumber = 37 ; } +#Ozone mass mixing ratio +'mass_fraction_of_ozone_in_air' = { + discipline = 0 ; + parameterCategory = 14 ; + parameterNumber = 1 ; + } #Surface net solar radiation, clear sky 'surface_net_downward_shortwave_flux_assuming_clear_sky' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/ecmf/cfName.def b/definitions/grib2/localConcepts/ecmf/cfName.def index 66180e1ad..c31f62a27 100644 --- a/definitions/grib2/localConcepts/ecmf/cfName.def +++ b/definitions/grib2/localConcepts/ecmf/cfName.def @@ -73,12 +73,432 @@ parameterCategory = 128 ; parameterNumber = 185 ; } +#Total column ozone +'atmosphere_mass_content_of_ozone' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 206 ; + } #Temperature of snow layer 'temperature_in_surface_snow' = { discipline = 192 ; parameterCategory = 128 ; parameterNumber = 238 ; } +#Particulate matter d < 1 um +'mass_concentration_of_pm1_ambient_aerosol_particles_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 72 ; + } +#Particulate matter d < 2.5 um +'mass_concentration_of_pm2p5_ambient_aerosol_particles_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 73 ; + } +#Particulate matter d < 10 um +'mass_concentration_of_pm10_ambient_aerosol_particles_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 74 ; + } +#Hydrogen peroxide +'mass_fraction_of_hydrogen_peroxide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 3 ; + } +#Methane (chemistry) +'mass_fraction_of_methane_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 4 ; + } +#Nitric acid +'mass_fraction_of_nitric_acid_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 6 ; + } +#Ethene +'mass_fraction_of_ethene_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 10 ; + } +#Peroxyacetyl nitrate +'mass_fraction_of_peroxyacetyl_nitrate_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 13 ; + } +#Isoprene +'mass_fraction_of_isoprene_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 16 ; + } +#Dimethyl sulfide +'mass_fraction_of_dimethyl_sulfide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 18 ; + } +#Ammonia +'mass_fraction_of_ammonia_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; + } +#Nitrogen monoxide +'mass_fraction_of_nitrogen_monoxide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; + } +#Hydroxyl radical +'mass_fraction_of_hydroxyl_radical_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 30 ; + } +#Nitrate radical +'mass_fraction_of_nitrate_radical_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 32 ; + } +#Dinitrogen pentoxide +'mass_fraction_of_dinitrogen_pentoxide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 33 ; + } +#Methanol +'mass_fraction_of_methanol_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 42 ; + } +#Formic acid +'mass_fraction_of_formic_acid_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 43 ; + } +#Ethane +'mass_fraction_of_ethane_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 45 ; + } +#Ethanol +'mass_fraction_of_ethanol_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 46 ; + } +#Propane +'mass_fraction_of_propane_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 47 ; + } +#Propene +'mass_fraction_of_propene_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 48 ; + } +#Terpenes +'mass_fraction_of_terpenes_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 49 ; + } +#Chlorine dioxide +'mass_fraction_of_chlorine_dioxide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 63 ; + } +#Chlorine nitrate +'mass_fraction_of_chlorine_nitrate_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 64 ; + } +#Hypochlorous acid +'mass_fraction_of_hypochlorous_acid_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 65 ; + } +#Hydrogen bromide +'mass_fraction_of_hydrogen_bromide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 68 ; + } +#Hypobromous acid +'mass_fraction_of_hypobromous_acid_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 70 ; + } +#Methyl chloride +'mass_fraction_of_methyl_chloride_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 78 ; + } +#Methyl bromide +'mass_fraction_of_methyl_bromide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 80 ; + } +#Sulfuric acid +'mass_fraction_of_sulfuric_acid_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 85 ; + } +#Nitrous acid +'mass_fraction_of_nitrous_acid_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 86 ; + } +#Acetic acid +'mass_fraction_of_acetic_acid_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 96 ; + } +#Chlorine monoxide +'mass_fraction_of_chlorine_monoxide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 174 ; + } +#Bromine monoxide +'mass_fraction_of_bromine_monoxide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 176 ; + } +#Bromine nitrate +'mass_fraction_of_bromine_nitrate_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 194 ; + } +#Hydrogen chloride +'mass_fraction_of_hydrogen_chloride_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 200 ; + } +#Total column hydrogen peroxide +'atmosphere_mass_content_of_hydrogen_peroxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 3 ; + } +#Total column methane +'atmosphere_mass_content_of_methane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 4 ; + } +#Total column nitric acid +'atmosphere_mass_content_of_nitric_acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 6 ; + } +#Total column ethene +'atmosphere_mass_content_of_ethene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 10 ; + } +#Total column peroxyacetyl nitrate +'atmosphere_mass_content_of_peroxyacetyl_nitrate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 13 ; + } +#Total column isoprene +'atmosphere_mass_content_of_isoprene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 16 ; + } +#Total column dimethyl sulfide +'atmosphere_mass_content_of_dimethyl_sulfide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 18 ; + } +#Total column ammonia +'atmosphere_mass_content_of_ammonia' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 19 ; + } +#Total column sulfate +'atmosphere_mass_content_of_sulfate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 20 ; + } +#Total column nitrogen monoxide +'atmosphere_mass_content_of_nitrogen_monoxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 27 ; + } +#Total column hydroxyl radical +'atmosphere_mass_content_of_hydroxyl_radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 30 ; + } +#Total column nitrate radical +'atmosphere_mass_content_of_nitrate_radical' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 32 ; + } +#Total column dinitrogen pentoxide +'atmosphere_mass_content_of_dinitrogen_pentoxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 33 ; + } +#Total column methanol +'atmosphere_mass_content_of_methanol' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 42 ; + } +#Total column formic acid +'atmosphere_mass_content_of_formic_acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 43 ; + } +#Total column ethane +'atmosphere_mass_content_of_ethane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 45 ; + } +#Total column ethanol +'atmosphere_mass_content_of_ethanol' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 46 ; + } +#Total column propane +'atmosphere_mass_content_of_propane' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 47 ; + } +#Total column propene +'atmosphere_mass_content_of_propene' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 48 ; + } +#Total column terpenes +'atmosphere_mass_content_of_terpenes' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 49 ; + } +#Total column of chlorine dioxide +'atmosphere_mass_content_of_chlorine_dioxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 63 ; + } +#Total column of chlorine nitrate +'atmosphere_mass_content_of_chlorine_nitrate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 64 ; + } +#Total column of hypochlorous acid +'atmosphere_mass_content_of_hypochlorous_acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 65 ; + } +#Total column of hydrogen bromide +'atmosphere_mass_content_of_hydrogen_bromide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 68 ; + } +#Total column of hypobromous acid +'atmosphere_mass_content_of_hypobromous_acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 70 ; + } +#Total column of methyl chloride +'atmosphere_mass_content_of_methyl_chloride' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 78 ; + } +#Total column of methyl bromide +'atmosphere_mass_content_of_methyl_bromide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 80 ; + } +#Total column of nitrous acid +'atmosphere_mass_content_of_nitrous_acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 86 ; + } +#Total column of acetic acid +'atmosphere_mass_content_of_acetic_acid' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 96 ; + } +#Total column of chlorine monoxide +'atmosphere_mass_content_of_chlorine_monoxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 174 ; + } +#Total column of bromine monoxide +'atmosphere_mass_content_of_bromine_monoxide' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 176 ; + } +#Total column of bromine nitrate +'atmosphere_mass_content_of_bromine_nitrate' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 194 ; + } +#Total column of hydrogen chloride +'atmosphere_mass_content_of_hydrogen_chloride' = { + discipline = 192 ; + parameterCategory = 218 ; + parameterNumber = 200 ; + } #Sea water potential temperature 'sea_water_potential_temperature' = { discipline = 192 ; @@ -108,6 +528,102 @@ discipline = 192 ; parameterCategory = 151 ; parameterNumber = 147 ; + } +#Carbon Dioxide +'mass_fraction_of_carbon_dioxide_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 61 ; + } +#Methane +'mass_fraction_of_methane_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 62 ; + } +#Nitrous oxide +'mass_fraction_of_nitrous_oxide_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 63 ; + } +#Total column Nitrous oxide +'atmosphere_mass_content_of_nitrous_oxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 66 ; + } +#Nitrogen dioxide +'mass_fraction_of_nitrogen_dioxide_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; + } +#Sulphur dioxide +'mass_fraction_of_sulfur_dioxide_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; + } +#Carbon monoxide +'mass_fraction_of_carbon_monoxide_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; + } +#Formaldehyde +'mass_fraction_of_formaldehyde_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 124 ; + } +#Total column Nitrogen dioxide +'atmosphere_mass_content_of_nitrogen_dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 125 ; + } +#Total column Sulphur dioxide +'atmosphere_mass_content_of_sulfur_dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 126 ; + } +#Total column Carbon monoxide +'atmosphere_mass_content_of_carbon_monoxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 127 ; + } +#Total column Formaldehyde +'atmosphere_mass_content_of_formaldehyde' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 128 ; + } +#Radon +'mass_fraction_of_radon_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 181 ; + } +#Total column Radon +'atmosphere_mass_content_of_radon' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 183 ; + } +#GEMS Ozone +'mass_fraction_of_ozone_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; + } +#GEMS Total column ozone +'atmosphere_mass_content_of_ozone' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 206 ; } #Surface downward northward stress 'surface_downward_northward_stress' = { diff --git a/tests/grib_cfNames.sh b/tests/grib_cfNames.sh index f87ecebad..d30f33fa3 100755 --- a/tests/grib_cfNames.sh +++ b/tests/grib_cfNames.sh @@ -34,10 +34,25 @@ grib_check_key_equals $temp cfName kinetic_energy_dissipation_in_atmosphere_boun ${tools_dir}/grib_set -s indicatorOfParameter=40,table2Version=3 $sample1 $temp grib_check_key_equals $temp cfName lagrangian_tendency_of_air_pressure +${tools_dir}/grib_set -s indicatorOfParameter=122,table2Version=1 $sample1 $temp +grib_check_key_equals $temp cfName surface_upward_sensible_heat_flux + +${tools_dir}/grib_set -s indicatorOfParameter=121,table2Version=1 $sample1 $temp +grib_check_key_equals $temp cfName surface_upward_latent_heat_flux + + ${tools_dir}/grib_set -s paramId=151154 $sample1 $temp grib_check_key_equals $temp cfName surface_downward_northward_stress ${tools_dir}/grib_set -s paramId=151154 $sample2 $temp grib_check_key_equals $temp cfName surface_downward_northward_stress +${tools_dir}/grib_set -s discipline=192,parameterCategory=151,parameterNumber=153 $sample2 $temp +grib_check_key_equals $temp cfName surface_downward_eastward_stress + +${tools_dir}/grib_set -s discipline=0,parameterCategory=1,parameterNumber=10 $sample2 $temp +grib_check_key_equals $temp cfName lwe_thickness_of_convective_precipitation_amount + +${tools_dir}/grib_set -s discipline=0,parameterCategory=1,parameterNumber=11 $sample2 $temp +grib_check_key_equals $temp cfName lwe_thickness_of_surface_snow_amount # Clean up rm -f $temp From 1bb5b4c28fc3d71691d22c27fd88705d7c45a137 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 18 Nov 2020 22:11:16 +0000 Subject: [PATCH 141/683] Definitions: cfName update from parameter DB --- definitions/create_def.pl | 71 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 70 insertions(+), 1 deletion(-) diff --git a/definitions/create_def.pl b/definitions/create_def.pl index 1f5b45ec0..fc24d8ba7 100755 --- a/definitions/create_def.pl +++ b/definitions/create_def.pl @@ -20,6 +20,75 @@ my $dbh = DBI->connect("dbi:mysql(RaiseError=>1):database=$db;host=$host",$user # I have written to it already or not my $tarfilesflag = 0; +sub create_cfName { + my $p; my %seen; + my ($key) = "cfName"; + my $field = "cf.name"; + + my $query= <<"EOF"; + select $field,force128,edition, + centre.abbreviation,param_id,attribute.name,attribute_value,param.name,param.shortName + from param,grib,attribute,centre,units,cf where param.hide_def=0 and param.id=grib.param_id + and attribute.id=grib.attribute_id and centre.id=grib.centre and units.id=param.units_id and param.id=cf.grib1_ecmwf + order by edition,centre,param.o,param.id,grib.param_version,attribute.o; +EOF + + my $qh=$dbh->prepare($query); + $qh->execute(); + + # file containing the list of grib api parameters files we want to tar and + # distribute to users for them to download and update their list of parameter + # to the latest + open(TAR,$tarfilesflag ? ">>" : ">","tarfiles.txt") or die "Count not open file tarfiles.txt: $!"; + $tarfilesflag=1; + + while (my ($keyval,$force128,$edition,$centre,$paramId,$attribute,$value,$name,$shortName)=$qh->fetchrow_array ) + { + if ($centre eq "all" ) { $conceptDir=""; } + else { $conceptDir="/localConcepts/$centre"; } + + if ($filebase ne "$basedir/grib$edition$conceptDir") { + if ($filebase) { + print $out "}\n"; + close $out; + } + $filebase="$basedir/grib$edition$conceptDir"; + mkpath($filebase); + + print TAR "grib$edition$conceptDir/$key.def\n"; + system("cp -f $filebase/$key.def $filebase/$key.def.orig"); + open($out,"> $filebase/$key.def") + or die "unable to open $filebase/$key.def"; + print $out "# Automatically generated by $0, do not edit\n"; + $p=(); + } + if ($p ne $paramId || exists($seen{$attribute}) ) { + if ($p) { print $out "\t}\n"; } + print $out "#$name\n" ; + print $out "\'".$keyval."\' = {\n" ; + $p=$paramId; + %seen=(); + } + $seen{$attribute}=1; + print "($key=$keyval) $edition,$centre,$shortName,$paramId,$name,$attribute,$value\n"; + # we need to allow strings in the attribute_value field + # for the moment we apply a patch here + if ($attribute =~ /stepType/ ) { + $value="\"accum\""; + } + if ($value eq '') { + $value="missing()"; + } + print $out "\t $attribute = $value ;\n" ; + } + if ($filebase) { + print $out "}\n"; + close $out; + } + + close(TAR); +} + sub create_def { my $p; my %seen; my ($key) =@_; @@ -185,7 +254,7 @@ create_def("paramId"); create_def("shortName"); create_def("name"); create_def("units"); - +create_cfName("cfName"); #create_paramId_def(); From 07582f04db9a73ae9e86dc23e7f0fc866d69addf Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 18 Nov 2020 22:17:20 +0000 Subject: [PATCH 142/683] Definitions: header comment --- definitions/grib1/cfName.def | 2 +- definitions/grib1/localConcepts/ecmf/cfName.def | 2 +- definitions/grib2/cfName.def | 2 +- definitions/grib2/localConcepts/ecmf/cfName.def | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/definitions/grib1/cfName.def b/definitions/grib1/cfName.def index 9ec4e813b..67a7ddb95 100644 --- a/definitions/grib1/cfName.def +++ b/definitions/grib1/cfName.def @@ -1,4 +1,4 @@ -# Automatically generated by create_def.CLEAN.pl, do not edit +# Automatically generated by ./create_def.pl, do not edit #Geopotential 'geopotential' = { table2Version = 3 ; diff --git a/definitions/grib1/localConcepts/ecmf/cfName.def b/definitions/grib1/localConcepts/ecmf/cfName.def index 10350c75f..58c71174a 100644 --- a/definitions/grib1/localConcepts/ecmf/cfName.def +++ b/definitions/grib1/localConcepts/ecmf/cfName.def @@ -1,4 +1,4 @@ -# Automatically generated by create_def.CLEAN.pl, do not edit +# Automatically generated by ./create_def.pl, do not edit #Sea ice area fraction 'sea_ice_area_fraction' = { table2Version = 128 ; diff --git a/definitions/grib2/cfName.def b/definitions/grib2/cfName.def index 7cf01fb43..6e9ef4ce6 100644 --- a/definitions/grib2/cfName.def +++ b/definitions/grib2/cfName.def @@ -1,4 +1,4 @@ -# Automatically generated by create_def.CLEAN.pl, do not edit +# Automatically generated by ./create_def.pl, do not edit #Sea ice area fraction 'sea_ice_area_fraction' = { discipline = 10 ; diff --git a/definitions/grib2/localConcepts/ecmf/cfName.def b/definitions/grib2/localConcepts/ecmf/cfName.def index c31f62a27..e4da2b385 100644 --- a/definitions/grib2/localConcepts/ecmf/cfName.def +++ b/definitions/grib2/localConcepts/ecmf/cfName.def @@ -1,4 +1,4 @@ -# Automatically generated by create_def.CLEAN.pl, do not edit +# Automatically generated by ./create_def.pl, do not edit #Total column water vapour 'lwe_thickness_of_atmosphere_mass_content_of_water_vapor' = { discipline = 192 ; From 4b46a70b4ca2e0ea4118841263f13d26b25540a3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 19 Nov 2020 21:19:55 +0000 Subject: [PATCH 143/683] ECC-1165: Assertion: calling codes_set_bytes with incorrect length passed in --- src/grib_accessor_class_gen.c | 34 +++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/src/grib_accessor_class_gen.c b/src/grib_accessor_class_gen.c index 3b4ca037a..2d6a29ef6 100644 --- a/src/grib_accessor_class_gen.c +++ b/src/grib_accessor_class_gen.c @@ -171,7 +171,7 @@ static void init(grib_accessor* a, const long len, grib_arguments* param) s_len = sizeof(tmp); p = grib_expression_evaluate_string(grib_handle_of_accessor(a), expression, tmp, &s_len, &ret); if (ret != GRIB_SUCCESS) { - grib_context_log(a->context, GRIB_LOG_ERROR, "unable to evaluate %s as string", a->name); + grib_context_log(a->context, GRIB_LOG_ERROR, "Unable to evaluate %s as string", a->name); Assert(0); } s_len = strlen(p) + 1; @@ -243,14 +243,12 @@ static int unpack_bytes(grib_accessor* a, unsigned char* val, size_t* len) long length = grib_byte_count(a); long offset = grib_byte_offset(a); - if (*len < length) { grib_context_log(a->context, GRIB_LOG_ERROR, "Wrong size for %s it is %d bytes long\n", a->name, length); *len = length; return GRIB_ARRAY_TOO_SMALL; } - memcpy(val, buf + offset, length); *len = length; @@ -279,7 +277,7 @@ static int unpack_long(grib_accessor* a, long* v, size_t* len) *v = GRIB_MISSING_LONG; else *v = (long)val; - grib_context_log(a->context, GRIB_LOG_DEBUG, " Casting double %s to long", a->name); + grib_context_log(a->context, GRIB_LOG_DEBUG, "Casting double %s to long", a->name); return GRIB_SUCCESS; } @@ -292,7 +290,7 @@ static int unpack_long(grib_accessor* a, long* v, size_t* len) *v = strtol(val, &last, 10); if (*last == 0) { - grib_context_log(a->context, GRIB_LOG_DEBUG, " Casting string %s to long", a->name); + grib_context_log(a->context, GRIB_LOG_DEBUG, "Casting string %s to long", a->name); return GRIB_SUCCESS; } } @@ -312,7 +310,7 @@ static int unpack_double(grib_accessor* a, double* v, size_t* len) size_t l = 1; grib_unpack_long(a, &val, &l); *v = val; - grib_context_log(a->context, GRIB_LOG_DEBUG, " Casting long %s to double", a->name); + grib_context_log(a->context, GRIB_LOG_DEBUG, "Casting long %s to double", a->name); return GRIB_SUCCESS; } @@ -325,7 +323,7 @@ static int unpack_double(grib_accessor* a, double* v, size_t* len) *v = strtod(val, &last); if (*last == 0) { - grib_context_log(a->context, GRIB_LOG_DEBUG, " Casting string %s to long", a->name); + grib_context_log(a->context, GRIB_LOG_DEBUG, "Casting string %s to long", a->name); return GRIB_SUCCESS; } } @@ -346,7 +344,7 @@ static int unpack_string(grib_accessor* a, char* v, size_t* len) grib_unpack_double(a, &val, &l); sprintf(v, "%g", val); *len = strlen(v); - grib_context_log(a->context, GRIB_LOG_DEBUG, " Casting double %s to string", a->name); + grib_context_log(a->context, GRIB_LOG_DEBUG, "Casting double %s to string", a->name); return GRIB_SUCCESS; } @@ -356,7 +354,7 @@ static int unpack_string(grib_accessor* a, char* v, size_t* len) grib_unpack_long(a, &val, &l); sprintf(v, "%ld", val); *len = strlen(v); - grib_context_log(a->context, GRIB_LOG_DEBUG, " Casting long %s to string \n", a->name); + grib_context_log(a->context, GRIB_LOG_DEBUG, "Casting long %s to string \n", a->name); return GRIB_SUCCESS; } @@ -392,7 +390,7 @@ static int pack_expression(grib_accessor* a, grib_expression* e) len = 1; ret = grib_expression_evaluate_long(hand, e, &lval); if (ret != GRIB_SUCCESS) { - grib_context_log(a->context, GRIB_LOG_ERROR, "unable to set %s as long", a->name); + grib_context_log(a->context, GRIB_LOG_ERROR, "Unable to set %s as long", a->name); return ret; } /*if (hand->context->debug) @@ -434,7 +432,7 @@ static int pack_long(grib_accessor* a, const long* v, size_t* len) double* val = (double*)grib_context_malloc(c, *len * (sizeof(double))); if (!val) { grib_context_log(c, GRIB_LOG_ERROR, - "unable to allocate %d bytes\n", (int)(*len * (sizeof(double)))); + "Unable to allocate %d bytes\n", (int)(*len * (sizeof(double)))); return GRIB_OUT_OF_MEMORY; } for (i = 0; i < *len; i++) @@ -443,7 +441,7 @@ static int pack_long(grib_accessor* a, const long* v, size_t* len) grib_context_free(c, val); return ret; } - grib_context_log(c, GRIB_LOG_ERROR, " Should not grib_pack %s as long", a->name); + grib_context_log(c, GRIB_LOG_ERROR, "Should not grib_pack %s as long", a->name); Assert(0); return GRIB_NOT_IMPLEMENTED; } @@ -456,7 +454,7 @@ static int pack_double_array_as_long(grib_accessor* a, const double* v, size_t* size_t numBytes = *len * (sizeof(long)); long* lValues = (long*)grib_context_malloc(c, numBytes); if (!lValues) { - grib_context_log(c, GRIB_LOG_ERROR, "unable to allocate %ld bytes\n", numBytes); + grib_context_log(c, GRIB_LOG_ERROR, "Unable to allocate %ld bytes\n", numBytes); return GRIB_OUT_OF_MEMORY; } for (i = 0; i < *len; i++) @@ -521,13 +519,19 @@ static int pack_string(grib_accessor* a, const char* v, size_t* len) } grib_context_log(a->context, GRIB_LOG_ERROR, - " Should not grib_pack %s as string", a->name); + "Should not grib_pack %s as string", a->name); return GRIB_NOT_IMPLEMENTED; } static int pack_bytes(grib_accessor* a, const unsigned char* val, size_t* len) { - size_t length = *len; + const size_t length = *len; + if (length != a->length) { + grib_context_log(a->context, GRIB_LOG_ERROR, + "pack_bytes: Wrong size (%lu) for %s. It is %lu bytes long", + length, a->name, a->length); + return GRIB_BUFFER_TOO_SMALL; + } grib_buffer_replace(a, val, length, 1, 1); return GRIB_SUCCESS; } From c236ad2fc7ab80dbd598e1de40e60c8dd3088472 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 19 Nov 2020 23:04:08 +0000 Subject: [PATCH 144/683] ECC-1165: Test case --- tests/CMakeLists.txt | 2 ++ tests/grib_set_bytes.c | 78 +++++++++++++++++++++++++++++++++++++++++ tests/grib_set_bytes.sh | 22 ++++++++++++ 3 files changed, 102 insertions(+) create mode 100644 tests/grib_set_bytes.c create mode 100755 tests/grib_set_bytes.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index a039014bd..67edde035 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -33,6 +33,7 @@ list(APPEND test_bins bufr_check_descriptors grib_sh_ieee64 ieee + grib_set_bytes grib_sh_imag grib_sh_spectral_complex grib_lam_bf @@ -139,6 +140,7 @@ if( HAVE_BUILD_TOOLS ) grib_ecc-1000 grib_ecc-1001 grib_ecc-1030 + grib_set_bytes bufr_ecc-556 gts_get gts_ls diff --git a/tests/grib_set_bytes.c b/tests/grib_set_bytes.c new file mode 100644 index 000000000..b2c487af9 --- /dev/null +++ b/tests/grib_set_bytes.c @@ -0,0 +1,78 @@ +/* + * (C) Copyright 2005- ECMWF. + * + * This software is licensed under the terms of the Apache Licence Version 2.0 + * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. + * + * In applying this licence, ECMWF does not waive the privileges and immunities granted to it by + * virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. + */ + +#include +#include +#include +#include "eccodes.h" + +int main(int argc, char** argv) +{ + int err = 0; + size_t size = 0; + FILE* in = NULL; + const char* infile = "../data/test_uuid.grib2"; + FILE* out = NULL; + const char* outfile = "temp.grib_set_bytes.grib"; + codes_handle* h = NULL; + const void* buffer = NULL; + + unsigned char uuid_short[] = { /* not enough bytes */ + 0x07, 0x20, 0x40, 0x51, + 0x07, 0x20, 0x40, 0x51, + 0x07, 0x20, 0x40, 0x52, + 0x07, 0x20, 0x40 + }; + unsigned char uuid_good[] = { /* Just the right size i.e. 16 bytes */ + 0x07, 0x20, 0x40, 0x51, + 0x07, 0x20, 0x40, 0x51, + 0x07, 0x20, 0x40, 0x52, + 0x07, 0x20, 0x40, 0x53 + }; + unsigned char uuid_long[] = { /* Too many bytes */ + 0x07, 0x20, 0x40, 0x51, + 0x07, 0x20, 0x40, 0x51, + 0x07, 0x20, 0x40, 0x52, + 0x07, 0x20, 0x40, 0x53, + 0x00, 0x01 + }; + size_t uuid_short_len = sizeof (uuid_short); + size_t uuid_good_len = sizeof (uuid_good); + size_t uuid_long_len = sizeof (uuid_long); + + in = fopen(infile, "rb"); + assert(in); + out = fopen(outfile, "wb"); + assert(out); + + h = codes_handle_new_from_file(0, in, PRODUCT_GRIB, &err); + assert(h); + + /* The uuidOfVGrid key is 16 bytes long */ + err = codes_set_bytes(h, "uuidOfVGrid", uuid_short, &uuid_short_len); + assert(err == CODES_BUFFER_TOO_SMALL); + err = codes_set_bytes(h, "uuidOfVGrid", uuid_long, &uuid_long_len); + assert(err == CODES_BUFFER_TOO_SMALL); + + /* This one should work */ + err = codes_set_bytes(h, "uuidOfVGrid", uuid_good, &uuid_good_len); + assert(err == 0); + + CODES_CHECK(codes_get_message(h, &buffer, &size), 0); + if (fwrite(buffer, 1, size, out) != size) { + perror(argv[1]); + exit(1); + } + + codes_handle_delete(h); + fclose(in); + fclose(out); + return 0; +} diff --git a/tests/grib_set_bytes.sh b/tests/grib_set_bytes.sh new file mode 100755 index 000000000..9db5b90af --- /dev/null +++ b/tests/grib_set_bytes.sh @@ -0,0 +1,22 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +TEMP_ERR=temp.grib_set_bytes.log +TEMP_OUT=temp.grib_set_bytes.grib + +$EXEC ${test_dir}/grib_set_bytes 2>$TEMP_ERR + +grep -q "Wrong size.*for uuidOfVGrid. It is 16 bytes long" $TEMP_ERR + +uuid=`${tools_dir}/grib_get -p uuidOfVGrid $TEMP_OUT` +[ "$uuid" = "07204051072040510720405207204053" ] + +rm -f $TEMP_OUT $TEMP_ERR From a1bba22383fd7d72b9efce9cbe1b06c267938516 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Fri, 20 Nov 2020 10:18:56 +0000 Subject: [PATCH 145/683] add missing key in the local time template --- definitions/grib2/template.4.localtime.def | 3 +++ 1 file changed, 3 insertions(+) diff --git a/definitions/grib2/template.4.localtime.def b/definitions/grib2/template.4.localtime.def index d0d01ccac..a79a52fcb 100644 --- a/definitions/grib2/template.4.localtime.def +++ b/definitions/grib2/template.4.localtime.def @@ -31,6 +31,9 @@ codetable[1] indicatorOfUnitForForecastTime ('4.4.table',masterDir,localDir)=1 ; # Length of the time range over which statistical processing is done, in units defined by the previous octet unsigned[4] forecastTime=0 ; +# Number of time increments of Forecast used in Local Time +unsigned[1] numberOfTimeIncrementsOfForecastsUsedInLocalTime=1 ; + # Indicator of unit of time for the increment between the successive steps used codetable[1] indicatorOfUnitForTimeIncrement ('4.4.table',masterDir,localDir)=255 ; From 172026edf56f73a9efd4257376d5623fc851be97 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 20 Nov 2020 13:43:14 +0000 Subject: [PATCH 146/683] GRIB2 Template 4.88: Add dump attribute and fix indentation --- definitions/grib2/template.4.localtime.def | 50 +++++++++++----------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/definitions/grib2/template.4.localtime.def b/definitions/grib2/template.4.localtime.def index a79a52fcb..fd0a57aa2 100644 --- a/definitions/grib2/template.4.localtime.def +++ b/definitions/grib2/template.4.localtime.def @@ -1,43 +1,43 @@ # (C) Copyright 2005- ECMWF. -codetable[1] localTimeMethod ('4.248.table',masterDir,localDir)=255 ; +# Method used to calculate the field value at the local time specified in section 1 +codetable[1] localTimeMethod ('4.248.table',masterDir,localDir)=255 : dump; # n - number of Forecasts used in Local Time -unsigned[1] numberOfForecastsUsedInLocalTime=0; +unsigned[1] numberOfForecastsUsedInLocalTime : dump; localTimeForecastList list(numberOfForecastsUsedInLocalTime) { -# Year of Forecast used in Local Time -unsigned[2] yearOfForecastUsedInLocalTime=0 : edition_specific; + # Year of Forecast used in Local Time + unsigned[2] yearOfForecastUsedInLocalTime=0 : dump, edition_specific; -# Month of Forecast used in Local Time -unsigned[1] monthOfForecastUsedInLocalTime=0 : edition_specific; + # Month of Forecast used in Local Time + unsigned[1] monthOfForecastUsedInLocalTime=0 : dump, edition_specific; -# Day of Forecast used in Local Time -unsigned[1] dayOfForecastUsedInLocalTime=0 : edition_specific; + # Day of Forecast used in Local Time + unsigned[1] dayOfForecastUsedInLocalTime=0 : dump, edition_specific; -# Hour of Forecast used in Local Time -unsigned[1] hourOfForecastUsedInLocalTime=0 : edition_specific; + # Hour of Forecast used in Local Time + unsigned[1] hourOfForecastUsedInLocalTime=0 : dump, edition_specific; -# Minute of Forecast used in Local Time -unsigned[1] minuteOfForecastUsedInLocalTime=0 : edition_specific; + # Minute of Forecast used in Local Time + unsigned[1] minuteOfForecastUsedInLocalTime=0 : dump, edition_specific; -# Second of Forecast used in Local Time -unsigned[1] secondOfForecastUsedInLocalTime=0 : edition_specific; + # Second of Forecast used in Local Time + unsigned[1] secondOfForecastUsedInLocalTime=0 : dump, edition_specific; -# Indicator of unit of time for ForecastTime -codetable[1] indicatorOfUnitForForecastTime ('4.4.table',masterDir,localDir)=1 ; + # Indicator of unit of time for ForecastTime + codetable[1] indicatorOfUnitForForecastTime ('4.4.table',masterDir,localDir)=1 : dump; -# Length of the time range over which statistical processing is done, in units defined by the previous octet -unsigned[4] forecastTime=0 ; + # Length of the time range over which statistical processing is done, in units defined by the previous octet + unsigned[4] forecastTime=0 : dump; -# Number of time increments of Forecast used in Local Time -unsigned[1] numberOfTimeIncrementsOfForecastsUsedInLocalTime=1 ; + # Number of time increments of Forecast used in Local Time + unsigned[1] numberOfTimeIncrementsOfForecastsUsedInLocalTime=1 : dump; -# Indicator of unit of time for the increment between the successive steps used -codetable[1] indicatorOfUnitForTimeIncrement ('4.4.table',masterDir,localDir)=255 ; + # Indicator of unit of time for the increment between the successive steps used + codetable[1] indicatorOfUnitForTimeIncrement ('4.4.table',masterDir,localDir)=255 : dump; -# Time increment between successive fields, in units defined by the previous octet -unsigned[4] timeIncrement=0 ; + # Time increment between successive fields, in units defined by the previous octet + unsigned[4] timeIncrement=0 : dump; } - From ae16bbda57cfbeff098b845fd1d4b9e760a6f28e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 20 Nov 2020 15:46:45 +0000 Subject: [PATCH 147/683] ECC-1166: GRIB: Add the gridName key for ORCA grids --- .../localConcepts/ecmf/unstructuredGrid.def | 3 +++ .../ecmf/unstructuredGridSubtype.def | 10 ++++----- tests/grib_grid_unstructured.sh | 21 ++++++++++--------- 3 files changed, 19 insertions(+), 15 deletions(-) diff --git a/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def b/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def index 5a0125f4c..31e90bfe2 100644 --- a/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def +++ b/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def @@ -5,3 +5,6 @@ concept_nofail unstructuredGridType(unknown,"unstructuredGridType.def",conceptsL concept_nofail unstructuredGridSubtype(unknown,"unstructuredGridSubtype.def",conceptsLocalDirAll,conceptsMasterDir); concept_nofail unstructuredGridUUID(unknown,"unstructuredGridUUID.def",conceptsLocalDirAll,conceptsMasterDir); + +meta unstructuredGridName sprintf("%s_%s",unstructuredGridType,unstructuredGridSubtype); +alias gridName=unstructuredGridName; diff --git a/definitions/grib2/localConcepts/ecmf/unstructuredGridSubtype.def b/definitions/grib2/localConcepts/ecmf/unstructuredGridSubtype.def index 1a8429f26..3f93215f3 100644 --- a/definitions/grib2/localConcepts/ecmf/unstructuredGridSubtype.def +++ b/definitions/grib2/localConcepts/ecmf/unstructuredGridSubtype.def @@ -1,6 +1,6 @@ 'undefined' = { numberOfGridInReference = 0; } -'T grid' = { numberOfGridInReference = 1; } -'U grid' = { numberOfGridInReference = 2; } -'V grid' = { numberOfGridInReference = 3; } -'W grid' = { numberOfGridInReference = 4; } -'F grid' = { numberOfGridInReference = 5; } +'T' = { numberOfGridInReference = 1; } +'U' = { numberOfGridInReference = 2; } +'V' = { numberOfGridInReference = 3; } +'W' = { numberOfGridInReference = 4; } +'F' = { numberOfGridInReference = 5; } diff --git a/tests/grib_grid_unstructured.sh b/tests/grib_grid_unstructured.sh index 28ca7b4ba..8bf7d316d 100755 --- a/tests/grib_grid_unstructured.sh +++ b/tests/grib_grid_unstructured.sh @@ -19,29 +19,30 @@ temp2=temp.2.${label} ${tools_dir}/grib_set -s gridType=unstructured_grid,numberOfGridInReference=4,numberOfGridUsed=2 $sample $temp1 grib_check_key_equals $temp1 'unstructuredGridType' 'ORCA1' -grib_check_key_equals $temp1 'unstructuredGridSubtype' 'W grid' -#grib_check_key_equals $temp1 'unstructuredGridUUID' 'ORCA1 W grid unknown' +grib_check_key_equals $temp1 'unstructuredGridSubtype' 'W' +#grib_check_key_equals $temp1 'unstructuredGridUUID' 'ORCA1 W unknown' +grib_check_key_equals $temp1 gridName 'ORCA1_W' -${tools_dir}/grib_set -s gridType=unstructured_grid,unstructuredGridType=ORCA1,unstructuredGridSubtype='W grid' $sample $temp2 +${tools_dir}/grib_set -s gridType=unstructured_grid,unstructuredGridType=ORCA1,unstructuredGridSubtype=W $sample $temp2 ${tools_dir}/grib_compare $temp1 $temp2 -grib_check_key_equals $temp2 'numberOfGridInReference' '4' -grib_check_key_equals $temp2 'numberOfGridUsed' '2' +grib_check_key_equals $temp2 'numberOfGridInReference,numberOfGridUsed,gridName' '4 2 ORCA1_W' + # Test some lat/lon parameters ${tools_dir}/grib_set -s paramId=250003 $sample $temp1 -grib_check_key_equals $temp1 'unstructuredGridSubtype' 'T grid' +grib_check_key_equals $temp1 'unstructuredGridSubtype' 'T' ${tools_dir}/grib_set -s paramId=250005 $sample $temp1 -grib_check_key_equals $temp1 'unstructuredGridSubtype' 'U grid' +grib_check_key_equals $temp1 'unstructuredGridSubtype' 'U' ${tools_dir}/grib_set -s paramId=250007 $sample $temp1 -grib_check_key_equals $temp1 'unstructuredGridSubtype' 'V grid' +grib_check_key_equals $temp1 'unstructuredGridSubtype' 'V' ${tools_dir}/grib_set -s paramId=250009 $sample $temp1 -grib_check_key_equals $temp1 'unstructuredGridSubtype' 'W grid' +grib_check_key_equals $temp1 'unstructuredGridSubtype' 'W' ${tools_dir}/grib_set -s paramId=250011 $sample $temp1 -grib_check_key_equals $temp1 'unstructuredGridSubtype' 'F grid' +grib_check_key_equals $temp1 'unstructuredGridSubtype' 'F' rm -f $temp1 $temp2 From 1ea4e97e52fbaba10e8b0480975ae3170e73b0b9 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 20 Nov 2020 17:33:01 +0000 Subject: [PATCH 148/683] GRIB2 Template 4.88: Fix template and add test --- definitions/grib2/boot.def | 2 +- definitions/grib2/template.4.88.def | 19 +++++- tests/CMakeLists.txt | 1 + tests/grib2_templates.sh | 101 ++++++++++++++++++++++++++++ 4 files changed, 120 insertions(+), 3 deletions(-) create mode 100755 tests/grib2_templates.sh diff --git a/definitions/grib2/boot.def b/definitions/grib2/boot.def index 1fc76c980..b6c009526 100644 --- a/definitions/grib2/boot.def +++ b/definitions/grib2/boot.def @@ -9,7 +9,7 @@ # This gets updated twice a year by WMO. # See http://www.wmo.int/pages/prog/www/WMOCodes/WMO306_vI2/LatestVERSION/LatestVERSION.html -constant tablesVersionLatest = 26 : edition_specific; +constant tablesVersionLatest = 27 : edition_specific; constant million = 1000000 : hidden; constant grib2divider = 1000000; diff --git a/definitions/grib2/template.4.88.def b/definitions/grib2/template.4.88.def index 5cb0d616a..7c3db90b0 100644 --- a/definitions/grib2/template.4.88.def +++ b/definitions/grib2/template.4.88.def @@ -1,7 +1,22 @@ # (C) Copyright 2005- ECMWF. -# TEMPLATE 4.88 +# TEMPLATE 4.88 + +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +unsigned[1] backgroundProcess = 255 : edition_specific; +alias backgroundGeneratingProcessIdentifier=backgroundProcess; + +unsigned[1] generatingProcessIdentifier : dump; + +#Cannot include this as it has keys we do not need e.g. minutesAfterDataCutoff +#Also forecastTime will be used in the localtime template +#include "grib2/template.4.parameter.def" -include "grib2/template.4.parameter.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.localtime.def" diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 67edde035..7b90a920a 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -161,6 +161,7 @@ if( HAVE_BUILD_TOOLS ) grib2to1 grib1to3 grib2to3 + grib2_templates grib3_templates badgrib grib_ls diff --git a/tests/grib2_templates.sh b/tests/grib2_templates.sh new file mode 100755 index 000000000..eaf1ed31a --- /dev/null +++ b/tests/grib2_templates.sh @@ -0,0 +1,101 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# +. ./include.sh +set -u +REDIRECT=/dev/null + +label="grib2_templates" + +temp1=temp1.$label.grib2 +temp2=temp2.$label.grib2 +temp=temp.$label.grib2 +sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl + +# Template 4.88 +# ------------- +# TODO: Add tablesVersion later... +grib_set -s productDefinitionTemplateNumber=88,numberOfForecastsUsedInLocalTime=1 $sample2 $temp +grib_check_key_equals $temp localTimeMethod 255 + +# Templates 4.76 -> 4.79, 4.80 -> 4.83 +# ------------------------------------- +$tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=76 $sample2 $temp +grib_check_key_equals $temp constituentType,sourceSinkChemicalPhysicalProcess '0 255' + +$tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=77 $sample2 $temp +grib_check_key_equals $temp constituentType,sourceSinkChemicalPhysicalProcess,perturbationNumber '0 255 0' + +$tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=78 $sample2 $temp +grib_check_key_equals $temp constituentType,sourceSinkChemicalPhysicalProcess,numberOfMissingInStatisticalProcess '0 255 0' + +$tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=79 $sample2 $temp +grib_check_key_equals $temp constituentType,sourceSinkChemicalPhysicalProcess,numberOfMissingInStatisticalProcess,perturbationNumber '0 255 0 0' + +$tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=80 $sample2 $temp +grib_check_key_equals $temp aerosolType,sourceSinkChemicalPhysicalProcess '0 255' + +$tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=81 $sample2 $temp +grib_check_key_equals $temp aerosolType,sourceSinkChemicalPhysicalProcess,perturbationNumber '0 255 0' + +$tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=82 $sample2 $temp +grib_check_key_equals $temp sourceSinkChemicalPhysicalProcess 255 + +$tools_dir/grib_set -s productDefinitionTemplateNumber=83 $sample2 $temp +grib_check_key_equals $temp sourceSinkChemicalPhysicalProcess 255 + + + +# WMO have now added template 4.55 and 4.56 +# ------------------------------------------ +$tools_dir/grib_set -s productDefinitionTemplateNumber=55 $sample2 $temp +$tools_dir/grib_get -p tileClassification,tileIndex $temp >/dev/null + +$tools_dir/grib_set -s productDefinitionTemplateNumber=56 $sample2 $temp +$tools_dir/grib_get -p tileClassification,tileIndex,perturbationNumber $temp >/dev/null + + +# WMO have now added template 4.53 and 4.54 +# ------------------------------------------ +$tools_dir/grib_set -s productDefinitionTemplateNumber=53 $sample2 $temp +$tools_dir/grib_get -p partitionNumber $temp >/dev/null + +$tools_dir/grib_set -s productDefinitionTemplateNumber=54 $sample2 $temp +$tools_dir/grib_get -p partitionNumber,perturbationNumber $temp >/dev/null + +# S2S templates: 4.60 and 4.61 +# ------------------------------------------ +$tools_dir/grib_set -s tablesVersion=11,productDefinitionTemplateNumber=60 $sample2 $temp 2>/dev/null +$tools_dir/grib_get -p perturbationNumber,YearOfModelVersion,MonthOfModelVersion,DayOfModelVersion $temp >/dev/null + +$tools_dir/grib_set -s tablesVersion=11,productDefinitionTemplateNumber=61 $sample2 $temp 2>/dev/null +$tools_dir/grib_get -p perturbationNumber,typeOfStatisticalProcessing,HourOfModelVersion $temp >/dev/null + +# GRIB-991 template 4.57 +# ------------------------------------------ +$tools_dir/grib_set -s tablesVersion=16,productDefinitionTemplateNumber=57,NP=2 $sample2 $temp +$tools_dir/grib_get -p "constituentType,numberOfModeOfDistribution,modeNumber,typeOfDistributionFunction" $temp >/dev/null + +# ECC-410 template 4.58 +# ------------------------------------------ +$tools_dir/grib_set -s tablesVersion=18,productDefinitionTemplateNumber=58,NP=2 $sample2 $temp +$tools_dir/grib_get -p "constituentType,NP,modeNumber,typeOfDistributionFunction,perturbationNumber" $temp >/dev/null + + +# template 4.67 and 4.68 +# ------------------------------------------ +$tools_dir/grib_set -s tablesVersion=19,productDefinitionTemplateNumber=67 $sample2 $temp +grib_check_key_exists $temp 'constituentType,timeIncrement' + +$tools_dir/grib_set -s tablesVersion=19,productDefinitionTemplateNumber=68 $sample2 $temp +grib_check_key_exists $temp 'constituentType,perturbationNumber' + + + +rm -f $temp $temp1 $temp2 From ad9763c4f3778b798b0937b5de1b30f49db7a246 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 21 Nov 2020 12:57:01 +0000 Subject: [PATCH 149/683] ECC-1166: remove extra key --- definitions/grib2/localConcepts/ecmf/unstructuredGrid.def | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def b/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def index 31e90bfe2..83ec848ad 100644 --- a/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def +++ b/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def @@ -6,5 +6,4 @@ concept_nofail unstructuredGridSubtype(unknown,"unstructuredGridSubtype.def",con concept_nofail unstructuredGridUUID(unknown,"unstructuredGridUUID.def",conceptsLocalDirAll,conceptsMasterDir); -meta unstructuredGridName sprintf("%s_%s",unstructuredGridType,unstructuredGridSubtype); -alias gridName=unstructuredGridName; +meta gridName sprintf("%s_%s",unstructuredGridType,unstructuredGridSubtype); From e8488e5c36489d4bd0db86362e73b9fb730eef26 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 21 Nov 2020 13:01:54 +0000 Subject: [PATCH 150/683] Testing: add test for GRIB2 templates --- tests/CMakeLists.txt | 1 + tests/grib2_templates.sh | 101 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 102 insertions(+) create mode 100755 tests/grib2_templates.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 67edde035..7b90a920a 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -161,6 +161,7 @@ if( HAVE_BUILD_TOOLS ) grib2to1 grib1to3 grib2to3 + grib2_templates grib3_templates badgrib grib_ls diff --git a/tests/grib2_templates.sh b/tests/grib2_templates.sh new file mode 100755 index 000000000..371292ea0 --- /dev/null +++ b/tests/grib2_templates.sh @@ -0,0 +1,101 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# +. ./include.sh +set -u +REDIRECT=/dev/null + +label="grib2_templates" + +temp1=temp1.$label.grib2 +temp2=temp2.$label.grib2 +temp=temp.$label.grib2 +sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl + +# Template 4.88 +# ------------- +# TODO: Add tablesVersion later... +#grib_set -s productDefinitionTemplateNumber=88,numberOfForecastsUsedInLocalTime=1 $sample2 $temp +#grib_check_key_equals $temp localTimeMethod 255 + +# Templates 4.76 -> 4.79, 4.80 -> 4.83 +# ------------------------------------- +$tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=76 $sample2 $temp +grib_check_key_equals $temp constituentType,sourceSinkChemicalPhysicalProcess '0 255' + +$tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=77 $sample2 $temp +grib_check_key_equals $temp constituentType,sourceSinkChemicalPhysicalProcess,perturbationNumber '0 255 0' + +$tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=78 $sample2 $temp +grib_check_key_equals $temp constituentType,sourceSinkChemicalPhysicalProcess,numberOfMissingInStatisticalProcess '0 255 0' + +$tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=79 $sample2 $temp +grib_check_key_equals $temp constituentType,sourceSinkChemicalPhysicalProcess,numberOfMissingInStatisticalProcess,perturbationNumber '0 255 0 0' + +$tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=80 $sample2 $temp +grib_check_key_equals $temp aerosolType,sourceSinkChemicalPhysicalProcess '0 255' + +$tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=81 $sample2 $temp +grib_check_key_equals $temp aerosolType,sourceSinkChemicalPhysicalProcess,perturbationNumber '0 255 0' + +$tools_dir/grib_set -s tablesVersion=24,productDefinitionTemplateNumber=82 $sample2 $temp +grib_check_key_equals $temp sourceSinkChemicalPhysicalProcess 255 + +$tools_dir/grib_set -s productDefinitionTemplateNumber=83 $sample2 $temp +grib_check_key_equals $temp sourceSinkChemicalPhysicalProcess 255 + + + +# WMO have now added template 4.55 and 4.56 +# ------------------------------------------ +$tools_dir/grib_set -s productDefinitionTemplateNumber=55 $sample2 $temp +$tools_dir/grib_get -p tileClassification,tileIndex $temp >/dev/null + +$tools_dir/grib_set -s productDefinitionTemplateNumber=56 $sample2 $temp +$tools_dir/grib_get -p tileClassification,tileIndex,perturbationNumber $temp >/dev/null + + +# WMO have now added template 4.53 and 4.54 +# ------------------------------------------ +$tools_dir/grib_set -s productDefinitionTemplateNumber=53 $sample2 $temp +$tools_dir/grib_get -p partitionNumber $temp >/dev/null + +$tools_dir/grib_set -s productDefinitionTemplateNumber=54 $sample2 $temp +$tools_dir/grib_get -p partitionNumber,perturbationNumber $temp >/dev/null + +# S2S templates: 4.60 and 4.61 +# ------------------------------------------ +$tools_dir/grib_set -s tablesVersion=11,productDefinitionTemplateNumber=60 $sample2 $temp 2>/dev/null +$tools_dir/grib_get -p perturbationNumber,YearOfModelVersion,MonthOfModelVersion,DayOfModelVersion $temp >/dev/null + +$tools_dir/grib_set -s tablesVersion=11,productDefinitionTemplateNumber=61 $sample2 $temp 2>/dev/null +$tools_dir/grib_get -p perturbationNumber,typeOfStatisticalProcessing,HourOfModelVersion $temp >/dev/null + +# GRIB-991 template 4.57 +# ------------------------------------------ +$tools_dir/grib_set -s tablesVersion=16,productDefinitionTemplateNumber=57,NP=2 $sample2 $temp +$tools_dir/grib_get -p "constituentType,numberOfModeOfDistribution,modeNumber,typeOfDistributionFunction" $temp >/dev/null + +# ECC-410 template 4.58 +# ------------------------------------------ +$tools_dir/grib_set -s tablesVersion=18,productDefinitionTemplateNumber=58,NP=2 $sample2 $temp +$tools_dir/grib_get -p "constituentType,NP,modeNumber,typeOfDistributionFunction,perturbationNumber" $temp >/dev/null + + +# template 4.67 and 4.68 +# ------------------------------------------ +$tools_dir/grib_set -s tablesVersion=19,productDefinitionTemplateNumber=67 $sample2 $temp +grib_check_key_exists $temp 'constituentType,timeIncrement' + +$tools_dir/grib_set -s tablesVersion=19,productDefinitionTemplateNumber=68 $sample2 $temp +grib_check_key_exists $temp 'constituentType,perturbationNumber' + + + +rm -f $temp $temp1 $temp2 From 071210fbc2b140d1fd3a16bd93bc75eae8fa55db Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 22 Nov 2020 15:53:44 +0000 Subject: [PATCH 151/683] Definitions: Final update of cfNames. Now in sync with parameter DB --- definitions/grib1/cfName.def | 161 ++++++++++-------- .../grib1/localConcepts/ecmf/cfName.def | 26 +-- definitions/grib2/cfName.def | 28 +-- .../grib2/localConcepts/ecmf/cfName.def | 24 +-- tests/grib_cfNames.sh | 3 - 5 files changed, 130 insertions(+), 112 deletions(-) diff --git a/definitions/grib1/cfName.def b/definitions/grib1/cfName.def index 67a7ddb95..6e2fafd86 100644 --- a/definitions/grib1/cfName.def +++ b/definitions/grib1/cfName.def @@ -80,11 +80,41 @@ table2Version = 3 ; indicatorOfParameter = 10 ; } +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + table2Version = 3 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'convective_cloud_area_fraction' = { + table2Version = 3 ; + indicatorOfParameter = 72 ; + } +#Latent heat flux +'surface_upward_latent_heat_flux' = { + table2Version = 3 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'surface_upward_sensible_heat_flux' = { + table2Version = 3 ; + indicatorOfParameter = 122 ; + } #Boundary layer dissipation 'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { table2Version = 3 ; indicatorOfParameter = 123 ; } +#Albedo +'surface_albedo' = { + table2Version = 3 ; + indicatorOfParameter = 84 ; + } +#Convective precipitation (water) +'lwe_thickness_of_convective_precipitation_amount' = { + table2Version = 3 ; + indicatorOfParameter = 63 ; + } #Geopotential 'geopotential' = { table2Version = 2 ; @@ -166,11 +196,41 @@ table2Version = 2 ; indicatorOfParameter = 10 ; } +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + table2Version = 2 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'convective_cloud_area_fraction' = { + table2Version = 2 ; + indicatorOfParameter = 72 ; + } +#Latent heat flux +'surface_upward_latent_heat_flux' = { + table2Version = 2 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'surface_upward_sensible_heat_flux' = { + table2Version = 2 ; + indicatorOfParameter = 122 ; + } #Boundary layer dissipation 'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { table2Version = 2 ; indicatorOfParameter = 123 ; } +#Albedo +'surface_albedo' = { + table2Version = 2 ; + indicatorOfParameter = 84 ; + } +#Convective precipitation (water) +'lwe_thickness_of_convective_precipitation_amount' = { + table2Version = 2 ; + indicatorOfParameter = 63 ; + } #Geopotential 'geopotential' = { table2Version = 1 ; @@ -252,83 +312,38 @@ table2Version = 1 ; indicatorOfParameter = 10 ; } +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + table2Version = 1 ; + indicatorOfParameter = 66 ; + } +#Convective cloud cover +'convective_cloud_area_fraction' = { + table2Version = 1 ; + indicatorOfParameter = 72 ; + } +#Latent heat flux +'surface_upward_latent_heat_flux' = { + table2Version = 1 ; + indicatorOfParameter = 121 ; + } +#Sensible heat flux +'surface_upward_sensible_heat_flux' = { + table2Version = 1 ; + indicatorOfParameter = 122 ; + } #Boundary layer dissipation 'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { table2Version = 1 ; indicatorOfParameter = 123 ; -} -#Vertical velocity (geometric) -'lagrangian_tendency_of_air_pressure' = { - indicatorOfParameter = 40 ; - table2Version = 3 ; -} -#Vertical velocity (geometric) -'lagrangian_tendency_of_air_pressure' = { - indicatorOfParameter = 40 ; - table2Version = 2 ; -} -#Vertical velocity (geometric) -'lagrangian_tendency_of_air_pressure' = { - indicatorOfParameter = 40 ; - table2Version = 1 ; -} -#Surface sensible heat flux -'surface_upward_sensible_heat_flux' = { - indicatorOfParameter = 122 ; - table2Version = 3 ; -} -#Surface sensible heat flux -'surface_upward_sensible_heat_flux' = { - indicatorOfParameter = 122 ; - table2Version = 2 ; -} -#Surface sensible heat flux -'surface_upward_sensible_heat_flux' = { - indicatorOfParameter = 122 ; - table2Version = 1 ; -} -#Surface latent heat flux -'surface_upward_latent_heat_flux' = { - indicatorOfParameter = 121 ; - table2Version = 3 ; -} -#Surface latent heat flux -'surface_upward_latent_heat_flux' = { - indicatorOfParameter = 121 ; - table2Version = 2 ; -} -#Surface latent heat flux -'surface_upward_latent_heat_flux' = { - indicatorOfParameter = 121 ; - table2Version = 1 ; -} + } #Albedo 'surface_albedo' = { - indicatorOfParameter = 84 ; - table2Version = 3 ; -} -#Albedo -'surface_albedo' = { - indicatorOfParameter = 84 ; - table2Version = 2 ; -} -#Albedo -'surface_albedo' = { - indicatorOfParameter = 84 ; - table2Version = 1 ; -} -#Convective cloud cover -'convective_cloud_area_fraction' = { - indicatorOfParameter = 72 ; - table2Version = 3 ; -} -#Convective cloud cover -'convective_cloud_area_fraction' = { - indicatorOfParameter = 72 ; - table2Version = 2 ; -} -#Convective cloud cover -'convective_cloud_area_fraction' = { - indicatorOfParameter = 72 ; - table2Version = 1 ; + table2Version = 1 ; + indicatorOfParameter = 84 ; + } +#Convective precipitation (water) +'lwe_thickness_of_convective_precipitation_amount' = { + table2Version = 1 ; + indicatorOfParameter = 63 ; } diff --git a/definitions/grib1/localConcepts/ecmf/cfName.def b/definitions/grib1/localConcepts/ecmf/cfName.def index 58c71174a..4a062bc47 100644 --- a/definitions/grib1/localConcepts/ecmf/cfName.def +++ b/definitions/grib1/localConcepts/ecmf/cfName.def @@ -170,7 +170,7 @@ indicatorOfParameter = 137 ; } #Total column water vapour -'lwe_thickness_of_atmosphere_water_vapor_content' = { +'lwe_thickness_of_atmosphere_mass_content_of_water_vapor' = { table2Version = 180 ; indicatorOfParameter = 137 ; } @@ -290,7 +290,7 @@ indicatorOfParameter = 145 ; } #Boundary layer dissipation -'dissipation_in_atmosphere_boundary_layer' = { +'kinetic_energy_dissipation_in_atmosphere_boundary_layer' = { table2Version = 160 ; indicatorOfParameter = 145 ; } @@ -680,7 +680,7 @@ indicatorOfParameter = 238 ; } #Temperature of snow layer -'snow_temperature' = { +'temperature_in_surface_snow' = { table2Version = 160 ; indicatorOfParameter = 238 ; } @@ -939,6 +939,16 @@ table2Version = 151 ; indicatorOfParameter = 147 ; } +#Surface downward eastward stress +'surface_downward_eastward_stress' = { + table2Version = 151 ; + indicatorOfParameter = 153 ; + } +#Surface downward northward stress +'surface_downward_northward_stress' = { + table2Version = 151 ; + indicatorOfParameter = 154 ; + } #Depth of 20C isotherm 'depth_of_isosurface_of_sea_water_potential_temperature' = { table2Version = 151 ; @@ -1029,13 +1039,3 @@ table2Version = 210 ; indicatorOfParameter = 206 ; } -#Surface downward northward stress -'surface_downward_northward_stress' = { - table2Version = 151 ; - indicatorOfParameter = 154 ; -} -#Surface downward eastward stress -'surface_downward_eastward_stress' = { - table2Version = 151 ; - indicatorOfParameter = 153 ; -} diff --git a/definitions/grib2/cfName.def b/definitions/grib2/cfName.def index 6e9ef4ce6..452238edc 100644 --- a/definitions/grib2/cfName.def +++ b/definitions/grib2/cfName.def @@ -55,6 +55,12 @@ typeOfFirstFixedSurface = 1 ; typeOfStatisticalProcessing = 1 ; } +#Snow depth +'lwe_thickness_of_surface_snow_amount' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + } #Sea surface practical salinity 'sea_surface_salinity' = { discipline = 10 ; @@ -251,16 +257,16 @@ parameterNumber = 5 ; typeOfFirstFixedSurface = 8 ; typeOfStatisticalProcessing = 1 ; -} -#Convective precipitation + } +#Albedo +'surface_albedo' = { + discipline = 0 ; + parameterCategory = 19 ; + parameterNumber = 1 ; + } +#Convective precipitation (water) 'lwe_thickness_of_convective_precipitation_amount' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 10 ; -} -#Snow depth -'lwe_thickness_of_surface_snow_amount' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 11 ; + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 10 ; } diff --git a/definitions/grib2/localConcepts/ecmf/cfName.def b/definitions/grib2/localConcepts/ecmf/cfName.def index e4da2b385..3ee7e3634 100644 --- a/definitions/grib2/localConcepts/ecmf/cfName.def +++ b/definitions/grib2/localConcepts/ecmf/cfName.def @@ -529,6 +529,18 @@ parameterCategory = 151 ; parameterNumber = 147 ; } +#Surface downward eastward stress +'surface_downward_eastward_stress' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 153 ; + } +#Surface downward northward stress +'surface_downward_northward_stress' = { + discipline = 192 ; + parameterCategory = 151 ; + parameterNumber = 154 ; + } #Carbon Dioxide 'mass_fraction_of_carbon_dioxide_in_air' = { discipline = 192 ; @@ -625,15 +637,3 @@ parameterCategory = 210 ; parameterNumber = 206 ; } -#Surface downward northward stress -'surface_downward_northward_stress' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 154 ; -} -#Surface downward eastward stress -'surface_downward_eastward_stress' = { - discipline = 192 ; - parameterCategory = 151 ; - parameterNumber = 153 ; -} diff --git a/tests/grib_cfNames.sh b/tests/grib_cfNames.sh index d30f33fa3..160009673 100755 --- a/tests/grib_cfNames.sh +++ b/tests/grib_cfNames.sh @@ -31,9 +31,6 @@ grib_check_key_equals $temp cfName lwe_thickness_of_atmosphere_mass_content_of_w ${tools_dir}/grib_set -s paramId=145 $sample2 $temp grib_check_key_equals $temp cfName kinetic_energy_dissipation_in_atmosphere_boundary_layer -${tools_dir}/grib_set -s indicatorOfParameter=40,table2Version=3 $sample1 $temp -grib_check_key_equals $temp cfName lagrangian_tendency_of_air_pressure - ${tools_dir}/grib_set -s indicatorOfParameter=122,table2Version=1 $sample1 $temp grib_check_key_equals $temp cfName surface_upward_sensible_heat_flux From f2df05092f7679d3ee8d98903f468517ae0a4abf Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 23 Nov 2020 16:51:19 +0000 Subject: [PATCH 152/683] ECC-1167: GRIB: Allow setting byte array as string --- src/grib_accessor_class_bytes.c | 164 +++++++++++++++++++------------- tests/CMakeLists.txt | 1 + tests/grib_ecc-1167.sh | 41 ++++++++ 3 files changed, 140 insertions(+), 66 deletions(-) create mode 100755 tests/grib_ecc-1167.sh diff --git a/src/grib_accessor_class_bytes.c b/src/grib_accessor_class_bytes.c index 1aa1a4f23..430bf6104 100644 --- a/src/grib_accessor_class_bytes.c +++ b/src/grib_accessor_class_bytes.c @@ -16,7 +16,7 @@ CLASS = accessor SUPER = grib_accessor_class_gen IMPLEMENTS = get_native_type;init - IMPLEMENTS = compare;unpack_string + IMPLEMENTS = compare;unpack_string;pack_string END_CLASS_DEF */ @@ -32,13 +32,13 @@ or edit "accessor.class" and rerun ./make_class.pl */ static int get_native_type(grib_accessor*); +static int pack_string(grib_accessor*, const char*, size_t* len); static int unpack_string(grib_accessor*, char*, size_t* len); static void init(grib_accessor*, const long, grib_arguments*); static void init_class(grib_accessor_class*); static int compare(grib_accessor*, grib_accessor*); -typedef struct grib_accessor_bytes -{ +typedef struct grib_accessor_bytes { grib_accessor att; /* Members defined in gen */ /* Members defined in bytes */ @@ -47,46 +47,46 @@ typedef struct grib_accessor_bytes extern grib_accessor_class* grib_accessor_class_gen; static grib_accessor_class _grib_accessor_class_bytes = { - &grib_accessor_class_gen, /* super */ - "bytes", /* name */ - sizeof(grib_accessor_bytes), /* size */ + &grib_accessor_class_gen, /* super */ + "bytes", /* name */ + sizeof(grib_accessor_bytes), /* size */ 0, /* inited */ &init_class, /* init_class */ &init, /* init */ - 0, /* post_init */ - 0, /* free mem */ - 0, /* describes himself */ - 0, /* get length of section */ - 0, /* get length of string */ - 0, /* get number of values */ - 0, /* get number of bytes */ - 0, /* get offset to bytes */ + 0, /* post_init */ + 0, /* free mem */ + 0, /* describes himself */ + 0, /* get length of section */ + 0, /* get length of string */ + 0, /* get number of values */ + 0, /* get number of bytes */ + 0, /* get offset to bytes */ &get_native_type, /* get native type */ - 0, /* get sub_section */ - 0, /* grib_pack procedures long */ - 0, /* grib_pack procedures long */ - 0, /* grib_pack procedures long */ - 0, /* grib_unpack procedures long */ - 0, /* grib_pack procedures double */ - 0, /* grib_unpack procedures double */ - 0, /* grib_pack procedures string */ + 0, /* get sub_section */ + 0, /* grib_pack procedures long */ + 0, /* grib_pack procedures long */ + 0, /* grib_pack procedures long */ + 0, /* grib_unpack procedures long */ + 0, /* grib_pack procedures double */ + 0, /* grib_unpack procedures double */ + &pack_string, /* grib_pack procedures string */ &unpack_string, /* grib_unpack procedures string */ - 0, /* grib_pack array procedures string */ - 0, /* grib_unpack array procedures string */ - 0, /* grib_pack procedures bytes */ - 0, /* grib_unpack procedures bytes */ - 0, /* pack_expression */ - 0, /* notify_change */ - 0, /* update_size */ - 0, /* preferred_size */ - 0, /* resize */ - 0, /* nearest_smaller_value */ - 0, /* next accessor */ + 0, /* grib_pack array procedures string */ + 0, /* grib_unpack array procedures string */ + 0, /* grib_pack procedures bytes */ + 0, /* grib_unpack procedures bytes */ + 0, /* pack_expression */ + 0, /* notify_change */ + 0, /* update_size */ + 0, /* preferred_size */ + 0, /* resize */ + 0, /* nearest_smaller_value */ + 0, /* next accessor */ &compare, /* compare vs. another accessor */ - 0, /* unpack only ith value */ - 0, /* unpack a subarray */ - 0, /* clear */ - 0, /* clone accessor */ + 0, /* unpack only ith value */ + 0, /* unpack a subarray */ + 0, /* clear */ + 0, /* clone accessor */ }; @@ -95,35 +95,34 @@ grib_accessor_class* grib_accessor_class_bytes = &_grib_accessor_class_bytes; static void init_class(grib_accessor_class* c) { - c->dump = (*(c->super))->dump; - c->next_offset = (*(c->super))->next_offset; - c->string_length = (*(c->super))->string_length; - c->value_count = (*(c->super))->value_count; - c->byte_count = (*(c->super))->byte_count; - c->byte_offset = (*(c->super))->byte_offset; - c->sub_section = (*(c->super))->sub_section; - c->pack_missing = (*(c->super))->pack_missing; - c->is_missing = (*(c->super))->is_missing; - c->pack_long = (*(c->super))->pack_long; - c->unpack_long = (*(c->super))->unpack_long; - c->pack_double = (*(c->super))->pack_double; - c->unpack_double = (*(c->super))->unpack_double; - c->pack_string = (*(c->super))->pack_string; - c->pack_string_array = (*(c->super))->pack_string_array; - c->unpack_string_array = (*(c->super))->unpack_string_array; - c->pack_bytes = (*(c->super))->pack_bytes; - c->unpack_bytes = (*(c->super))->unpack_bytes; - c->pack_expression = (*(c->super))->pack_expression; - c->notify_change = (*(c->super))->notify_change; - c->update_size = (*(c->super))->update_size; - c->preferred_size = (*(c->super))->preferred_size; - c->resize = (*(c->super))->resize; - c->nearest_smaller_value = (*(c->super))->nearest_smaller_value; - c->next = (*(c->super))->next; - c->unpack_double_element = (*(c->super))->unpack_double_element; - c->unpack_double_subarray = (*(c->super))->unpack_double_subarray; - c->clear = (*(c->super))->clear; - c->make_clone = (*(c->super))->make_clone; + c->dump = (*(c->super))->dump; + c->next_offset = (*(c->super))->next_offset; + c->string_length = (*(c->super))->string_length; + c->value_count = (*(c->super))->value_count; + c->byte_count = (*(c->super))->byte_count; + c->byte_offset = (*(c->super))->byte_offset; + c->sub_section = (*(c->super))->sub_section; + c->pack_missing = (*(c->super))->pack_missing; + c->is_missing = (*(c->super))->is_missing; + c->pack_long = (*(c->super))->pack_long; + c->unpack_long = (*(c->super))->unpack_long; + c->pack_double = (*(c->super))->pack_double; + c->unpack_double = (*(c->super))->unpack_double; + c->pack_string_array = (*(c->super))->pack_string_array; + c->unpack_string_array = (*(c->super))->unpack_string_array; + c->pack_bytes = (*(c->super))->pack_bytes; + c->unpack_bytes = (*(c->super))->unpack_bytes; + c->pack_expression = (*(c->super))->pack_expression; + c->notify_change = (*(c->super))->notify_change; + c->update_size = (*(c->super))->update_size; + c->preferred_size = (*(c->super))->preferred_size; + c->resize = (*(c->super))->resize; + c->nearest_smaller_value = (*(c->super))->nearest_smaller_value; + c->next = (*(c->super))->next; + c->unpack_double_element = (*(c->super))->unpack_double_element; + c->unpack_double_subarray = (*(c->super))->unpack_double_subarray; + c->clear = (*(c->super))->clear; + c->make_clone = (*(c->super))->make_clone; } /* END_CLASS_IMP */ @@ -176,3 +175,36 @@ static int unpack_string(grib_accessor* a, char* v, size_t* len) return GRIB_SUCCESS; } + +static int pack_string(grib_accessor* a, const char* val, size_t* len) +{ + /* The string representation (val) of the byte array will have two chars + * per byte e.g. 4C5B means the 2 bytes 0114 and 0133 in octal + * so has to be twice the length of the byte array + */ + int err = 0; + grib_accessor_class* super = *(a->cclass->super); + const size_t expected_blen = 16; + const size_t expected_slen = 2 * expected_blen; + unsigned char bytearray[16]; + size_t i = 0, slen = strlen(val); + size_t blen = sizeof(bytearray); + + if (slen != expected_slen || *len != expected_slen) { + return GRIB_WRONG_ARRAY_SIZE; + } + + for (i = 0; i < (slen/2); i++) { + unsigned int byteVal = 0; + if (sscanf(val + 2*i, "%02x", &byteVal) != 1) { + grib_context_log(a->context, GRIB_LOG_ERROR,"pack_string: Invalid hex byte specfication '%.2s'",val + 2*i); + return GRIB_INVALID_KEY_VALUE; + } + Assert(byteVal < 256); + bytearray[i] = (int)byteVal; + } + + /* Forward to base class to pack the byte array */ + err = super->pack_bytes(a, bytearray, &blen); + return err; +} diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 7b90a920a..ae392bba1 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -71,6 +71,7 @@ if( HAVE_BUILD_TOOLS ) grib_ecc-1150 grib_ecc-1053 grib_ecc-1065 + grib_ecc-1167 bufr_json_samples bufr_ecc-359 bufr_ecc-517 diff --git a/tests/grib_ecc-1167.sh b/tests/grib_ecc-1167.sh new file mode 100755 index 000000000..a52422d18 --- /dev/null +++ b/tests/grib_ecc-1167.sh @@ -0,0 +1,41 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +# --------------------------------------------------------- +# This is the test for the JIRA issue ECC-1167 +# GRIB: Allow setting byte array as string +# --------------------------------------------------------- +label="grib_ecc-1167-test" +temp1=temp.${label}.1.grib +temp2=temp.${label}.2.grib +errlog=temp.${label}.err + +sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl + +${tools_dir}/grib_set -s gridType=unstructured_grid $sample2 $temp1 +grib_check_key_equals $temp1 uuidOfHGrid '00000000000000000000000000000000' + +${tools_dir}/grib_set -s uuidOfHGrid=DEfdBEef10203040b00b1e50001100FF $temp1 $temp2 +grib_check_key_equals $temp2 uuidOfHGrid 'defdbeef10203040b00b1e50001100ff' + +# Test errors +set +e +# Invalid HEX +${tools_dir}/grib_set -s uuidOfHGrid=DEZZBEef10203040b00b1e50001100FF $temp1 $temp2 2>$errlog +status=$? +set -e +[ $status -ne 0 ] +grep -q "Invalid hex byte specfication 'ZZ'" $errlog + + +# Clean up +rm -f $temp1 $temp2 $errlog From 32ca6af1fde1dc23d9c9ccb373fa96929a08983b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 23 Nov 2020 17:30:38 +0000 Subject: [PATCH 153/683] ECC-1167: GRIB: Allow setting byte array as string --- src/grib_accessor_class_bytes.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/grib_accessor_class_bytes.c b/src/grib_accessor_class_bytes.c index 430bf6104..f4750f549 100644 --- a/src/grib_accessor_class_bytes.c +++ b/src/grib_accessor_class_bytes.c @@ -184,9 +184,9 @@ static int pack_string(grib_accessor* a, const char* val, size_t* len) */ int err = 0; grib_accessor_class* super = *(a->cclass->super); - const size_t expected_blen = 16; + const size_t expected_blen = 16; /* TODO: only 16 byte keys implemented */ const size_t expected_slen = 2 * expected_blen; - unsigned char bytearray[16]; + unsigned char bytearray[16] = {0,}; size_t i = 0, slen = strlen(val); size_t blen = sizeof(bytearray); From 4a37ece98cc995ce9f451e2e1f3d5e8ef959bfde Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 24 Nov 2020 11:13:34 +0000 Subject: [PATCH 154/683] ECC-1167: Uodate test --- tests/grib_ecc-1167.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/grib_ecc-1167.sh b/tests/grib_ecc-1167.sh index a52422d18..fb058ea70 100755 --- a/tests/grib_ecc-1167.sh +++ b/tests/grib_ecc-1167.sh @@ -27,6 +27,10 @@ grib_check_key_equals $temp1 uuidOfHGrid '00000000000000000000000000000000' ${tools_dir}/grib_set -s uuidOfHGrid=DEfdBEef10203040b00b1e50001100FF $temp1 $temp2 grib_check_key_equals $temp2 uuidOfHGrid 'defdbeef10203040b00b1e50001100ff' +${tools_dir}/grib_set -s uuidOfHGrid:s=10991111111111111111115000110000 $temp1 $temp2 +grib_check_key_equals $temp2 uuidOfHGrid '10991111111111111111115000110000' + +exit 0 # Test errors set +e # Invalid HEX From 29120ff9dd5d43d9288d4108583c5a8209afadcf Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 24 Nov 2020 14:55:57 +0000 Subject: [PATCH 155/683] ECC-1167: Support arbitrary length byte keys --- src/grib_accessor_class_bytes.c | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/grib_accessor_class_bytes.c b/src/grib_accessor_class_bytes.c index f4750f549..e252b6365 100644 --- a/src/grib_accessor_class_bytes.c +++ b/src/grib_accessor_class_bytes.c @@ -184,20 +184,27 @@ static int pack_string(grib_accessor* a, const char* val, size_t* len) */ int err = 0; grib_accessor_class* super = *(a->cclass->super); - const size_t expected_blen = 16; /* TODO: only 16 byte keys implemented */ + grib_context* c = a->context; + size_t nbytes = a->length; + const size_t expected_blen = nbytes; const size_t expected_slen = 2 * expected_blen; - unsigned char bytearray[16] = {0,}; + unsigned char* bytearray = NULL; size_t i = 0, slen = strlen(val); - size_t blen = sizeof(bytearray); if (slen != expected_slen || *len != expected_slen) { + grib_context_log(c, GRIB_LOG_ERROR,"pack_string: key %s is %lu bytes. Expected a string with %lu characters", + a->name, expected_blen, expected_slen); return GRIB_WRONG_ARRAY_SIZE; } + bytearray = (unsigned char*)grib_context_malloc(c, nbytes * (sizeof(unsigned char))); + if (!bytearray) return GRIB_OUT_OF_MEMORY; + for (i = 0; i < (slen/2); i++) { unsigned int byteVal = 0; if (sscanf(val + 2*i, "%02x", &byteVal) != 1) { - grib_context_log(a->context, GRIB_LOG_ERROR,"pack_string: Invalid hex byte specfication '%.2s'",val + 2*i); + grib_context_log(c, GRIB_LOG_ERROR,"pack_string: Invalid hex byte specfication '%.2s'",val + 2*i); + grib_context_free(c, bytearray); return GRIB_INVALID_KEY_VALUE; } Assert(byteVal < 256); @@ -205,6 +212,7 @@ static int pack_string(grib_accessor* a, const char* val, size_t* len) } /* Forward to base class to pack the byte array */ - err = super->pack_bytes(a, bytearray, &blen); + err = super->pack_bytes(a, bytearray, &nbytes); + grib_context_free(c, bytearray); return err; } From 7f4047280edec64ae9ea0656be4a33fb448b9399 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 25 Nov 2020 12:18:19 +0000 Subject: [PATCH 156/683] ECC-1167: fix unpack_string length --- src/grib_accessor_class_bytes.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/grib_accessor_class_bytes.c b/src/grib_accessor_class_bytes.c index e252b6365..2649eff74 100644 --- a/src/grib_accessor_class_bytes.c +++ b/src/grib_accessor_class_bytes.c @@ -157,10 +157,11 @@ static int unpack_string(grib_accessor* a, char* v, size_t* len) unsigned char* p = NULL; char* s = v; int i; - long length = grib_byte_count(a); + const long length = grib_byte_count(a); + const long slength = 2 * length; - if (*len < 2 * length) { - *len = 2 * length; + if (*len < slength) { + *len = slength; return GRIB_ARRAY_TOO_SMALL; } @@ -171,7 +172,7 @@ static int unpack_string(grib_accessor* a, char* v, size_t* len) s += 2; } - *len = length; + *len = slength; return GRIB_SUCCESS; } From 3a9b30cc816c3473d69b0b597b0dae3aefe3c01c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 25 Nov 2020 16:36:34 +0000 Subject: [PATCH 157/683] ECC-1168: Update GRIB2 definitions with the latest WMO V26.0.0 code tables/templates --- definitions/grib2/tables/26/4.230.table | 31 ++++++++++++++++++------- definitions/grib2/tables/26/4.233.table | 31 ++++++++++++++++++------- 2 files changed, 46 insertions(+), 16 deletions(-) diff --git a/definitions/grib2/tables/26/4.230.table b/definitions/grib2/tables/26/4.230.table index 147ff9747..3d7c84fd1 100644 --- a/definitions/grib2/tables/26/4.230.table +++ b/definitions/grib2/tables/26/4.230.table @@ -101,10 +101,15 @@ 10052 10052 Ethyl hydroperoxide CH3CH2OOH 10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO 10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH -# 10055-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, ...) +10055 10055 methyl-peroxy-nitrate (nitroperoxy-methane) CH_3OONO_2 +10056 10056 2-lambda^1-Oxidanyloxy-2-methylbut-3-en-1-ol (4-Hydroxy-3-methyl-1-butene-3-ylperoxy radical) HOCH_2C(CH_3)CHCH_2 +10057 10057 2-lambda^1-Oxidanyloxy-3-methylbut-3-en-1-ol (2-Hydroxy-1-isopropenylethylperoxy radical) HOCH_2CHC(CH_3)CH_2 +10058 10058 (Z)-4-Hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH_3)CHO +10059 10059 (Z)-4-Hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH_3)CHCHO +# 10060-10499 Reserved for other simple organic molecules e.g. higher aldehydes alcohols 10500 10500 Dimethyl sulphide CH3SCH3 (DMS) 10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO -# 10502-20000 Reserved +# 10502-20000 Reserved 20001 20001 Hydrogen chloride HCl 20002 20002 CFC-11 (trichlorofluoromethane) CCl3F 20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 @@ -451,7 +456,12 @@ 60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R 60026 60026 Hydroxy ketones RC(OH)C(O)R 60027 60027 Oxides Ox -# 60028-61999 Reserved +60028 60028 Peroxyacyl nitrates RC(O)OONO_2 +60029 60029 Aromatic peroxide radical (Aryl dioxydanyl radicals) ArOO +60030 60030 Biogenic Secondary Organic Compound +60031 60031 Anthropogenic Secondary Organic Compound +60032 60032 all hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O_2 ISOPOOH +# 60033-61999 Reserved 62000 62000 Total aerosol 62001 62001 Dust dry 62002 62002 Water in ambient @@ -482,7 +492,11 @@ # 62027 Reserved 62028 62028 Total aerosol hydrophilic 62029 62029 Total aerosol hydrophobic -# 62030-62099 Reserved +62030 62030 Primary particulate inorganic matter dry +62031 62031 Secondary particulate Inorganic matter dry +62032 62032 Biogenic Secondary Organic aerosol +62033 62033 Anthropogenic Secondary Organic aerosol +# 62034-62099 Reserved 62100 62100 Alnus (alder) pollen 62101 62101 Betula (birch) pollen 62102 62102 Castanea (chestnut) pollen @@ -498,15 +512,16 @@ 62112 62112 Taxus (yew) pollen 62113 62113 Tilia (lime, linden) pollen 62114 62114 Ulmus (elm) pollen -# 62115-62199 Reserved +62115 62115 Olea (olive) pollen +# 62116-62199 Reserved 62200 62200 Ambrosia (ragweed, burr-ragweed) pollen 62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen -62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale, kohlrabi, mustard, rutabaga) pollen 62203 62203 Plantago (plantain) pollen 62204 62204 Rumex (dock, sorrel) pollen 62205 62205 Urtica (nettle) pollen # 62206-62299 Reserved 62300 62300 Poaceae (grass family) pollen -# 62301-62999 Reserved -# 63000-65534 For experimental use at local level +# 62301-62999 Reserved +# 63000-65534 For experimental use at local level 65535 65535 Missing diff --git a/definitions/grib2/tables/26/4.233.table b/definitions/grib2/tables/26/4.233.table index 051d603a9..7e7b20419 100644 --- a/definitions/grib2/tables/26/4.233.table +++ b/definitions/grib2/tables/26/4.233.table @@ -101,10 +101,15 @@ 10052 10052 Ethyl hydroperoxide CH3CH2OOH 10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO 10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH -# 10055-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides, ...) +10055 10055 methyl-peroxy-nitrate (nitroperoxy-methane) CH_3OONO_2 +10056 10056 2-lambda^1-Oxidanyloxy-2-methylbut-3-en-1-ol (4-Hydroxy-3-methyl-1-butene-3-ylperoxy radical) HOCH_2C(CH_3)CHCH_2 +10057 10057 2-lambda^1-Oxidanyloxy-3-methylbut-3-en-1-ol (2-Hydroxy-1-isopropenylethylperoxy radical) HOCH_2CHC(CH_3)CH_2 +10058 10058 (Z)-4-Hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH_3)CHO +10059 10059 (Z)-4-Hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH_3)CHCHO +# 10060-10499 Reserved for other simple organic molecules e.g. higher aldehydes alcohols 10500 10500 Dimethyl sulphide CH3SCH3 (DMS) 10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO -# 10502-20000 Reserved +# 10502-20000 Reserved 20001 20001 Hydrogen chloride HCl 20002 20002 CFC-11 (trichlorofluoromethane) CCl3F 20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 @@ -451,7 +456,12 @@ 60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R 60026 60026 Hydroxy ketones RC(OH)C(O)R 60027 60027 Oxides Ox -# 60028-61999 Reserved +60028 60028 Peroxyacyl nitrates RC(O)OONO_2 +60029 60029 Aromatic peroxide radical (Aryl dioxydanyl radicals) ArOO +60030 60030 Biogenic Secondary Organic Compound +60031 60031 Anthropogenic Secondary Organic Compound +60032 60032 all hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O_2 ISOPOOH +# 60033-61999 Reserved 62000 62000 Total aerosol 62001 62001 Dust dry 62002 62002 Water in ambient @@ -482,7 +492,11 @@ # 62027 Reserved 62028 62028 Total aerosol hydrophilic 62029 62029 Total aerosol hydrophobic -# 62030-62099 Reserved +62030 62030 Primary particulate inorganic matter dry +62031 62031 Secondary particulate Inorganic matter dry +62032 62032 Biogenic Secondary Organic aerosol +62033 62033 Anthropogenic Secondary Organic aerosol +# 62034-62099 Reserved 62100 62100 Alnus (alder) pollen 62101 62101 Betula (birch) pollen 62102 62102 Castanea (chestnut) pollen @@ -498,15 +512,16 @@ 62112 62112 Taxus (yew) pollen 62113 62113 Tilia (lime, linden) pollen 62114 62114 Ulmus (elm) pollen -# 62115-62199 Reserved +62115 62115 Olea (olive) pollen +# 62116-62199 Reserved 62200 62200 Ambrosia (ragweed, burr-ragweed) pollen 62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen -62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale, kohlrabi, mustard, rutabaga) pollen 62203 62203 Plantago (plantain) pollen 62204 62204 Rumex (dock, sorrel) pollen 62205 62205 Urtica (nettle) pollen # 62206-62299 Reserved 62300 62300 Poaceae (grass family) pollen -# 62301-62999 Reserved -# 63000-65534 For experimental use at local level +# 62301-62999 Reserved +# 63000-65534 For experimental use at local level 65535 65535 Missing From e3ff252f10915f99adfaaa51cfe5bd455fd7dae6 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 25 Nov 2020 21:29:45 +0000 Subject: [PATCH 158/683] ECC-1168: clean up of units --- definitions/grib2/tables/26/4.16.table | 4 +- definitions/grib2/tables/26/4.2.0.0.table | 2 +- definitions/grib2/tables/26/4.2.0.1.table | 26 ++++----- definitions/grib2/tables/26/4.2.0.19.table | 28 +++++----- definitions/grib2/tables/26/4.2.0.4.table | 2 +- definitions/grib2/tables/26/4.2.0.6.table | 6 +-- definitions/grib2/tables/26/4.2.1.0.table | 4 +- definitions/grib2/tables/26/4.2.2.0.table | 4 +- definitions/grib2/tables/26/4.2.2.3.table | 2 +- definitions/grib2/tables/26/4.2.2.4.table | 6 +-- definitions/grib2/tables/26/4.2.3.0.table | 6 +-- definitions/grib2/tables/26/4.2.3.2.table | 4 +- definitions/grib2/tables/26/4.214.table | 20 +++---- definitions/grib2/tables/26/4.238.table | 62 +++++++++++----------- 14 files changed, 88 insertions(+), 88 deletions(-) diff --git a/definitions/grib2/tables/26/4.16.table b/definitions/grib2/tables/26/4.16.table index fedb05324..a18c63f81 100644 --- a/definitions/grib2/tables/26/4.16.table +++ b/definitions/grib2/tables/26/4.16.table @@ -4,7 +4,7 @@ 2 2 Correlation of product with used calibration product 3 3 Standard deviation 4 4 Random error -5 5 Probability -# 6-191 Reserved +5 5 Probability +# 6-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.0.table b/definitions/grib2/tables/26/4.2.0.0.table index 4844c33f3..f361355b7 100644 --- a/definitions/grib2/tables/26/4.2.0.0.table +++ b/definitions/grib2/tables/26/4.2.0.0.table @@ -31,6 +31,6 @@ 29 29 Temperature advection (K s-1) 30 30 Latent heat net flux due to evaporation (W m-2) 31 31 Latent heat net flux due to sublimation (W m-2) -# 32-191 Reserved +# 32-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.1.table b/definitions/grib2/tables/26/4.2.0.1.table index afa2199cf..58d32d867 100644 --- a/definitions/grib2/tables/26/4.2.0.1.table +++ b/definitions/grib2/tables/26/4.2.0.1.table @@ -18,7 +18,7 @@ 16 16 Snow melt (kg m-2) 17 17 Snow age (d) 18 18 Absolute humidity (kg m-3) -19 19 Precipitation type ((4.201)) +19 19 Precipitation type (Code table 4.201) 20 20 Integrated liquid water (kg m-2) 21 21 Condensate (kg/kg) 22 22 Cloud mixing ratio (kg/kg) @@ -29,13 +29,13 @@ 27 27 Maximum relative humidity (%) 28 28 Maximum absolute humidity (kg m-3) 29 29 Total snowfall (m) -30 30 Precipitable water category ((Code table 4.202)) +30 30 Precipitable water category (Code table 4.202) 31 31 Hail (m) 32 32 Graupel (snow pellets) (kg/kg) -33 33 Categorical rain ((Code table 4.222)) -34 34 Categorical freezing rain ((Code table 4.222)) -35 35 Categorical ice pellets ((Code table 4.222)) -36 36 Categorical snow ((Code table 4.222)) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) 37 37 Convective precipitation rate (kg m-2 s-1) 38 38 Horizontal moisture divergence (kg kg-1 s-1) 39 39 Per cent frozen precipitation (%) @@ -87,7 +87,7 @@ 85 85 Specific rainwater content (kg/kg) 86 86 Specific snow water content (kg/kg) 87 87 Stratiform precipitation rate (kg m-2 s-1) -88 88 Categorical convective precipitation ((Code table 4.222)) +88 88 Categorical convective precipitation (Code table 4.222) # 89 Reserved 90 90 Total kinematic moisture flux (kg kg-1 m s-1) 91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) @@ -121,11 +121,11 @@ 119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) 120 120 Unbalanced component of specific cloud ice water content (kg kg-1) 121 121 Fraction of snow cover (Proportion) -122 122 Precipitation intensity index ((Code table 4.247)) -123 123 Dominant precipitation type ((Code table 4.201)) -124 124 Presence of showers ((Code table 4.222)) -125 125 Presence of blowing snow ((Code table 4.222)) -126 126 Presence of blizzard ((Code table 4.222)) +122 122 Precipitation intensity index (Code table 4.247) +123 123 Dominant precipitation type (Code table 4.201) +124 124 Presence of showers (Code table 4.222) +125 125 Presence of blowing snow (Code table 4.222) +126 126 Presence of blizzard (Code table 4.222) 127 127 Ice pellets (non water equivalent) precipitation rate (m/s) 128 128 Total solid precipitation rate (kg m-2 s-1) 129 129 Effective radius of cloud water (m) @@ -145,6 +145,6 @@ 143 143 Potential evaporation rate (kg m–2 s–1) 144 144 specific rain water content (convective) (kg kg-1) 145 145 specific snow water content (convective) (kg kg-1) -# 146-191 Reserved +# 146-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.19.table b/definitions/grib2/tables/26/4.2.0.19.table index be0b32145..3ffe0c124 100644 --- a/definitions/grib2/tables/26/4.2.0.19.table +++ b/definitions/grib2/tables/26/4.2.0.19.table @@ -3,17 +3,17 @@ 1 1 Albedo (%) 2 2 Thunderstorm probability (%) 3 3 Mixed layer depth (m) -4 4 Volcanic ash ((Code table 4.206)) +4 4 Volcanic ash (Code table 4.206) 5 5 Icing top (m) 6 6 Icing base (m) -7 7 Icing ((Code table 4.207)) +7 7 Icing (Code table 4.207) 8 8 Turbulence top (m) 9 9 Turbulence base (m) -10 10 Turbulence ((Code table 4.208)) +10 10 Turbulence (Code table 4.208) 11 11 Turbulent kinetic energy (J/kg) -12 12 Planetary boundary-layer regime ((Code table 4.209)) -13 13 Contrail intensity ((Code table 4.210)) -14 14 Contrail engine type ((Code table 4.211)) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) 15 15 Contrail top (m) 16 16 Contrail base (m) 17 17 Maximum snow albedo (%) @@ -24,9 +24,9 @@ 22 22 Clear air turbulence (CAT) (%) 23 23 Supercooled large droplet probability (%) 24 24 Convective turbulent kinetic energy (J/kg) -25 25 Weather ((Code table 4.225)) -26 26 Convective outlook ((Code table 4.224)) -27 27 Icing scenario ((Code table 4.227)) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) 28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) 29 29 Clear air turbulence (CAT) (m2/3 s-1) 30 30 Eddy dissipation parameter (m2/3 s-1) @@ -35,11 +35,11 @@ 33 33 Visibility through liquid fog (m) 34 34 Visibility through ice fog (m) 35 35 Visibility through blowing snow (m) -36 36 Presence of snow squalls ((Code table 4.222)) -37 37 Icing severity ((Code table 4.228)) -38 38 Sky transparency index ((Code Table 4.214)) -39 39 Seeing index ((Code Table 4.214)) +36 36 Presence of snow squalls (Code table 4.222) +37 37 Icing severity (Code table 4.228) +38 38 Sky transparency index (Code Table 4.214) +39 39 Seeing index (Code Table 4.214) 40 40 Snow level (m) -# 41-191 Reserved +# 41-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.4.table b/definitions/grib2/tables/26/4.2.0.4.table index 31dcfa522..d56ee2ff8 100644 --- a/definitions/grib2/tables/26/4.2.0.4.table +++ b/definitions/grib2/tables/26/4.2.0.4.table @@ -20,6 +20,6 @@ 52 52 Downward short-wave radiation flux, clear sky (W m-2) 53 53 Upward short-wave radiation flux, clear sky (W m-2) 54 54 Direct normal short-wave radiation flux (W m-2) -# 55-191 Reserved +# 55-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.0.6.table b/definitions/grib2/tables/26/4.2.0.6.table index e39e7461c..ce331de75 100644 --- a/definitions/grib2/tables/26/4.2.0.6.table +++ b/definitions/grib2/tables/26/4.2.0.6.table @@ -7,9 +7,9 @@ 5 5 High cloud cover (%) 6 6 Cloud water (kg m-2) 7 7 Cloud amount (%) -8 8 Cloud type ((Code table 4.203)) +8 8 Cloud type (Code table 4.203) 9 9 Thunderstorm maximum tops (m) -10 10 Thunderstorm coverage ((Code table 4.204)) +10 10 Thunderstorm coverage (Code table 4.204) 11 11 Cloud base (m) 12 12 Cloud top (m) 13 13 Ceiling (m) @@ -45,6 +45,6 @@ 48 48 Volume fraction of cloud ice particles (Numeric) 49 49 Volume fraction of cloud (ice and/or water) (Numeric) 50 50 Fog (%) -# 51-191 Reserved +# 51-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.1.0.table b/definitions/grib2/tables/26/4.2.1.0.table index e906af726..bcd849c2e 100644 --- a/definitions/grib2/tables/26/4.2.1.0.table +++ b/definitions/grib2/tables/26/4.2.1.0.table @@ -1,8 +1,8 @@ # Code table 4.2 - Parameter number by product discipline and parameter category 0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) 1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) -2 2 Remotely-sensed snow cover ((Code table 4.215)) -3 3 Elevation of snow-covered terrain ((Code table 4.216)) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) 4 4 Snow water equivalent per cent of normal (%) 5 5 Baseflow-groundwater runoff (kg m-2) 6 6 Storm surface runoff (kg m-2) diff --git a/definitions/grib2/tables/26/4.2.2.0.table b/definitions/grib2/tables/26/4.2.2.0.table index a6df872b1..849c2f1e4 100644 --- a/definitions/grib2/tables/26/4.2.2.0.table +++ b/definitions/grib2/tables/26/4.2.2.0.table @@ -7,7 +7,7 @@ 5 5 Water runoff (kg m-2) 6 6 Evapotranspiration (kg-2 s-1) 7 7 Model terrain height (m) -8 8 Land use ((Code table 4.212)) +8 8 Land use (Code table 4.212) 9 9 Volumetric soil moisture content (Proportion) 10 10 Ground heat flux (W m-2) 11 11 Moisture availability (%) @@ -34,7 +34,7 @@ 32 32 Root depth of vegetation (m) 33 33 Water runoff and drainage (kg m-2) 34 34 Surface water runoff (kg m-2) -35 35 Tile class ((Code table 4.243)) +35 35 Tile class (Code table 4.243) 36 36 Tile fraction (Proportion) 37 37 Tile percentage (%) 38 38 Soil volumetric ice content (water equivalent) (m3 m-3) diff --git a/definitions/grib2/tables/26/4.2.2.3.table b/definitions/grib2/tables/26/4.2.2.3.table index 1dcf36a91..b77400890 100644 --- a/definitions/grib2/tables/26/4.2.2.3.table +++ b/definitions/grib2/tables/26/4.2.2.3.table @@ -1,5 +1,5 @@ # Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Soil type ((Code table 4.213)) +0 0 Soil type (Code table 4.213) 1 1 Upper layer soil temperature (K) 2 2 Upper layer soil moisture (kg m-3) 3 3 Lower layer soil moisture (kg m-3) diff --git a/definitions/grib2/tables/26/4.2.2.4.table b/definitions/grib2/tables/26/4.2.2.4.table index 649ddf969..14c317ff9 100644 --- a/definitions/grib2/tables/26/4.2.2.4.table +++ b/definitions/grib2/tables/26/4.2.2.4.table @@ -1,6 +1,6 @@ # Code table 4.2 - Parameter number by product discipline and parameter category -0 0 Fire outlook ((Code table 4.224)) -1 1 Fire outlook due to dry thunderstorm ((Code table 4.224)) +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) 2 2 Haines index (Numeric) 3 3 Fire burned area (%) 4 4 Fosberg index (Numeric) @@ -19,6 +19,6 @@ 17 17 Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) (Numeric) 18 18 Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) (%) 19 19 Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) (Joule/m2) -# 20-191 Reserved +# 20-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.3.0.table b/definitions/grib2/tables/26/4.2.3.0.table index 81ee28205..c0ffa29f5 100644 --- a/definitions/grib2/tables/26/4.2.3.0.table +++ b/definitions/grib2/tables/26/4.2.3.0.table @@ -6,9 +6,9 @@ 4 4 Scaled lifted index (Numeric) 5 5 Scaled cloud top pressure (Numeric) 6 6 Scaled skin temperature (Numeric) -7 7 Cloud mask ((Code table 4.217)) -8 8 Pixel scene type ((Code table 4.218)) -9 9 Fire detection indicator ((Code table 4.223)) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) # 10-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/26/4.2.3.2.table b/definitions/grib2/tables/26/4.2.3.2.table index 2726489c8..6316ab39c 100644 --- a/definitions/grib2/tables/26/4.2.3.2.table +++ b/definitions/grib2/tables/26/4.2.3.2.table @@ -2,8 +2,8 @@ 0 0 Clear sky probability (%) 1 1 Cloud top temperature (K) 2 2 Cloud top pressure (Pa) -3 3 Cloud type ((Code table 4.218)) -4 4 Cloud phase ((Code table 4.218)) +3 3 Cloud type (Code table 4.218) +4 4 Cloud phase (Code table 4.218) 5 5 Cloud optical depth (Numeric) 6 6 Cloud particle effective radius (m) 7 7 Cloud liquid water path (kg m-2) diff --git a/definitions/grib2/tables/26/4.214.table b/definitions/grib2/tables/26/4.214.table index 9df466fe5..b08860ce0 100644 --- a/definitions/grib2/tables/26/4.214.table +++ b/definitions/grib2/tables/26/4.214.table @@ -1,11 +1,11 @@ # Code table 4.214 - Environmental Factor Qualifier -0 0 Worst -1 1 Very poor -2 2 Poor -3 3 Average -4 4 Good -5 5 Excellent -# 6-190 Reserved -191 191 Unknown -# 192-254 Reserved for local use -255 255 Missing +0 0 Worst +1 1 Very poor +2 2 Poor +3 3 Average +4 4 Good +5 5 Excellent +# 6-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/26/4.238.table b/definitions/grib2/tables/26/4.238.table index 7e1c8e4d0..be5be3a90 100644 --- a/definitions/grib2/tables/26/4.238.table +++ b/definitions/grib2/tables/26/4.238.table @@ -1,32 +1,32 @@ # Code table 4.238 - Source or sink -0 0 Other -1 1 Aviation -2 2 Lightning -3 3 Biogenic sources -4 4 Anthropogenic sources -5 5 Wild fires -6 6 Natural sources -7 7 Volcanoes -8 8 Bio-fuel -9 9 Fossil-fuel -10 10 Wetlands -11 11 Oceans -12 12 Elevated anthropogenic sources -13 13 Surface anthropogenic sources -14 14 Agriculture livestock -15 15 Agriculture soils -16 16 Agriculture waste burning -17 17 Agriculture (all) -18 18 Residential, commercial and other combustion -19 19 Power generation -20 20 Super power stations -21 21 Fugitives -22 22 Industrial process -23 23 Solvents -24 24 Ships -25 25 Wastes (solid and water) -26 26 Road transportation -27 27 Off-road transportation -# 28-191 Reserved -# 192-254 Reserved for local use -255 255 Missing +0 0 Other +1 1 Aviation +2 2 Lightning +3 3 Biogenic sources +4 4 Anthropogenic sources +5 5 Wild fires +6 6 Natural sources +7 7 Volcanoes +8 8 Bio-fuel +9 9 Fossil-fuel +10 10 Wetlands +11 11 Oceans +12 12 Elevated anthropogenic sources +13 13 Surface anthropogenic sources +14 14 Agriculture livestock +15 15 Agriculture soils +16 16 Agriculture waste burning +17 17 Agriculture (all) +18 18 Residential, commercial and other combustion +19 19 Power generation +20 20 Super power stations +21 21 Fugitives +22 22 Industrial process +23 23 Solvents +24 24 Ships +25 25 Wastes (solid and water) +26 26 Road transportation +27 27 Off-road transportation +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing From 537c20c022e21892c61b8c8d221afbafc32c4ee5 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 25 Nov 2020 21:30:10 +0000 Subject: [PATCH 159/683] ECC-1169: GRIB2: Create 3 new parameters in the category 211 --- definitions/grib2/cfVarName.def | 9 +++++++++ .../grib2/localConcepts/ecmf/cfVarName.def | 20 +++++++++++++++++++ definitions/grib2/localConcepts/ecmf/name.def | 20 +++++++++++++++++++ .../grib2/localConcepts/ecmf/paramId.def | 20 +++++++++++++++++++ .../grib2/localConcepts/ecmf/shortName.def | 20 +++++++++++++++++++ .../grib2/localConcepts/ecmf/units.def | 20 +++++++++++++++++++ definitions/grib2/name.def | 9 +++++++++ definitions/grib2/paramId.def | 9 +++++++++ definitions/grib2/shortName.def | 9 +++++++++ definitions/grib2/units.def | 9 +++++++++ 10 files changed, 145 insertions(+) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 777aca5f5..b70a2e173 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -541,6 +541,15 @@ aerosolType = 62003 ; is_aerosol_optical = 1 ; } +#Ammonium aerosol mass mixing ratio +'aermr18diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } #Dry deposition of ammonium aerosol 'aerddpam' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.def b/definitions/grib2/localConcepts/ecmf/cfVarName.def index 354e12452..8c5f462f3 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.def @@ -3299,6 +3299,26 @@ parameterCategory = 211 ; parameterNumber = 120 ; } +#Nitrate fine mode aerosol mass mixing ratio +'aermr16diff' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'aermr17diff' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 20 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } #Experimental product 'p1.212' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/name.def b/definitions/grib2/localConcepts/ecmf/name.def index 029336bed..6b2e9794b 100644 --- a/definitions/grib2/localConcepts/ecmf/name.def +++ b/definitions/grib2/localConcepts/ecmf/name.def @@ -3299,6 +3299,26 @@ parameterCategory = 211 ; parameterNumber = 120 ; } +#Nitrate fine mode aerosol mass mixing ratio +'Nitrate fine mode aerosol mass mixing ratio' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'Nitrate coarse mode aerosol mass mixing ratio' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 20 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } #Experimental product 'Experimental product' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/paramId.def b/definitions/grib2/localConcepts/ecmf/paramId.def index 8a5eb616f..1523ff8d0 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.def @@ -3299,6 +3299,26 @@ parameterCategory = 211 ; parameterNumber = 120 ; } +#Nitrate fine mode aerosol mass mixing ratio +'211247' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'211248' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 20 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } #Experimental product '212001' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/shortName.def b/definitions/grib2/localConcepts/ecmf/shortName.def index 0910d7256..b1cd12160 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.def @@ -3299,6 +3299,26 @@ parameterCategory = 211 ; parameterNumber = 120 ; } +#Nitrate fine mode aerosol mass mixing ratio +'aermr16diff' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'aermr17diff' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 20 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } #Experimental product '~' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/units.def b/definitions/grib2/localConcepts/ecmf/units.def index cc0b7e011..831370a98 100644 --- a/definitions/grib2/localConcepts/ecmf/units.def +++ b/definitions/grib2/localConcepts/ecmf/units.def @@ -3299,6 +3299,26 @@ parameterCategory = 211 ; parameterNumber = 120 ; } +#Nitrate fine mode aerosol mass mixing ratio +'kg kg**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 65534 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } +#Nitrate coarse mode aerosol mass mixing ratio +'kg kg**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 20 ; + aerosolType = 65533 ; + is_aerosol = 1 ; + } #Experimental product '~' = { discipline = 192 ; diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index b00d667ba..d6cdd8695 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -541,6 +541,15 @@ is_aerosol_optical = 1 ; typeOfSizeInterval = 255 ; } +#Ammonium aerosol mass mixing ratio +'Ammonium aerosol mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } #Dry deposition of ammonium aerosol 'Dry deposition of ammonium aerosol' = { discipline = 0 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index b3ddc98fb..e78764a0b 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -541,6 +541,15 @@ aerosolType = 62003 ; is_aerosol_optical = 1 ; } +#Ammonium aerosol mass mixing ratio +'211249' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + typeOfGeneratingProcess = 20 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + } #Dry deposition of ammonium aerosol '215206' = { discipline = 0 ; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index bc85829c2..d041e10f8 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -541,6 +541,15 @@ aerosolType = 62003 ; is_aerosol_optical = 1 ; } +#Ammonium aerosol mass mixing ratio +'aermr18diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } #Dry deposition of ammonium aerosol 'aerddpam' = { discipline = 0 ; diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index e243f4a31..fa6728e4c 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -541,6 +541,15 @@ is_aerosol_optical = 1 ; typeOfSizeInterval = 255 ; } +#Ammonium aerosol mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62003 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } #Dry deposition of ammonium aerosol 'kg m**-2 s**-1' = { discipline = 0 ; From 49dbde508856b9616aa7a5e7cca00bcb0d4988a3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 26 Nov 2020 13:40:03 +0000 Subject: [PATCH 160/683] ECC-1170: grib_filter: Fail if key of type double (e.g. values) is assigned to a string --- src/grib_accessor_class_gen.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/grib_accessor_class_gen.c b/src/grib_accessor_class_gen.c index 2d6a29ef6..66414a6a4 100644 --- a/src/grib_accessor_class_gen.c +++ b/src/grib_accessor_class_gen.c @@ -390,7 +390,8 @@ static int pack_expression(grib_accessor* a, grib_expression* e) len = 1; ret = grib_expression_evaluate_long(hand, e, &lval); if (ret != GRIB_SUCCESS) { - grib_context_log(a->context, GRIB_LOG_ERROR, "Unable to set %s as long", a->name); + grib_context_log(a->context, GRIB_LOG_ERROR, "Unable to set %s as long (from %s)", + a->name, e->cclass->name); return ret; } /*if (hand->context->debug) @@ -401,6 +402,11 @@ static int pack_expression(grib_accessor* a, grib_expression* e) case GRIB_TYPE_DOUBLE: { len = 1; ret = grib_expression_evaluate_double(hand, e, &dval); + if (ret != GRIB_SUCCESS) { + grib_context_log(a->context, GRIB_LOG_ERROR, "unable to set %s as double (from %s)", + a->name, e->cclass->name); + return ret; + } /*if (hand->context->debug) printf("ECCODES DEBUG grib_accessor_class_gen::pack_expression %s %g\n", a->name, dval);*/ return grib_pack_double(a, &dval, &len); @@ -411,7 +417,8 @@ static int pack_expression(grib_accessor* a, grib_expression* e) len = sizeof(tmp); cval = grib_expression_evaluate_string(hand, e, tmp, &len, &ret); if (ret != GRIB_SUCCESS) { - grib_context_log(a->context, GRIB_LOG_ERROR, "unable to set %s as string", a->name); + grib_context_log(a->context, GRIB_LOG_ERROR, "unable to set %s as string (from %s)", + a->name, e->cclass->name); return ret; } len = strlen(cval); From 98d7fe59fe6694089f9c1755ffd8b7e15f7bd1e8 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 26 Nov 2020 16:13:53 +0000 Subject: [PATCH 161/683] ECC-1170: Add test --- tests/CMakeLists.txt | 1 + tests/grib_ecc-1167.sh | 2 +- tests/grib_ecc-1170.sh | 37 +++++++++++++++++++++++++++++++++++++ 3 files changed, 39 insertions(+), 1 deletion(-) create mode 100755 tests/grib_ecc-1170.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index ae392bba1..caf10725d 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -72,6 +72,7 @@ if( HAVE_BUILD_TOOLS ) grib_ecc-1053 grib_ecc-1065 grib_ecc-1167 + grib_ecc-1170 bufr_json_samples bufr_ecc-359 bufr_ecc-517 diff --git a/tests/grib_ecc-1167.sh b/tests/grib_ecc-1167.sh index fb058ea70..9b50cad33 100755 --- a/tests/grib_ecc-1167.sh +++ b/tests/grib_ecc-1167.sh @@ -30,7 +30,7 @@ grib_check_key_equals $temp2 uuidOfHGrid 'defdbeef10203040b00b1e50001100ff' ${tools_dir}/grib_set -s uuidOfHGrid:s=10991111111111111111115000110000 $temp1 $temp2 grib_check_key_equals $temp2 uuidOfHGrid '10991111111111111111115000110000' -exit 0 + # Test errors set +e # Invalid HEX diff --git a/tests/grib_ecc-1170.sh b/tests/grib_ecc-1170.sh new file mode 100755 index 000000000..c3a8e7196 --- /dev/null +++ b/tests/grib_ecc-1170.sh @@ -0,0 +1,37 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +# --------------------------------------------------------- +# This is the test for the JIRA issue ECC-1170 +# grib_filter: Fail if key of type double (e.g. values) is assigned to a string +# --------------------------------------------------------- +label="grib_ecc-1170-test" + +tempErr=temp.${label}.err +tempFilt=temp.${label}.filt +sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl + +cat > $tempFilt <$tempErr +status=$? +set -e +[ $status -ne 0 ] + +#cat $tempErr +grep -q "unable to set values as double" $tempErr + + +# Clean up +rm -f $tempFilt $tempErr From 685a573a4cbeb8483223e763cc230e924810aac1 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 26 Nov 2020 17:29:22 +0000 Subject: [PATCH 162/683] ECC-1168: Chemical names --- definitions/grib2/tables/26/4.230.table | 4 ++-- definitions/grib2/tables/26/4.233.table | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/definitions/grib2/tables/26/4.230.table b/definitions/grib2/tables/26/4.230.table index 3d7c84fd1..ebeec9e62 100644 --- a/definitions/grib2/tables/26/4.230.table +++ b/definitions/grib2/tables/26/4.230.table @@ -102,8 +102,8 @@ 10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO 10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH 10055 10055 methyl-peroxy-nitrate (nitroperoxy-methane) CH_3OONO_2 -10056 10056 2-lambda^1-Oxidanyloxy-2-methylbut-3-en-1-ol (4-Hydroxy-3-methyl-1-butene-3-ylperoxy radical) HOCH_2C(CH_3)CHCH_2 -10057 10057 2-lambda^1-Oxidanyloxy-3-methylbut-3-en-1-ol (2-Hydroxy-1-isopropenylethylperoxy radical) HOCH_2CHC(CH_3)CH_2 +10056 10056 2-lambda^1-Oxidanyloxy-2-methylbut-3-en-1-ol (4-Hydroxy-3-methyl-1-butene-3-ylperoxy radical) HOCH_2C(CH_3)(OO)CHCH_2 +10057 10057 2-lambda^1-Oxidanyloxy-3-methylbut-3-en-1-ol (2-Hydroxy-1-isopropenylethylperoxy radical) HOCH_2CH(OO)C(CH_3)CH_2 10058 10058 (Z)-4-Hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH_3)CHO 10059 10059 (Z)-4-Hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH_3)CHCHO # 10060-10499 Reserved for other simple organic molecules e.g. higher aldehydes alcohols diff --git a/definitions/grib2/tables/26/4.233.table b/definitions/grib2/tables/26/4.233.table index 7e7b20419..7d8c2ec2f 100644 --- a/definitions/grib2/tables/26/4.233.table +++ b/definitions/grib2/tables/26/4.233.table @@ -102,8 +102,8 @@ 10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO 10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH 10055 10055 methyl-peroxy-nitrate (nitroperoxy-methane) CH_3OONO_2 -10056 10056 2-lambda^1-Oxidanyloxy-2-methylbut-3-en-1-ol (4-Hydroxy-3-methyl-1-butene-3-ylperoxy radical) HOCH_2C(CH_3)CHCH_2 -10057 10057 2-lambda^1-Oxidanyloxy-3-methylbut-3-en-1-ol (2-Hydroxy-1-isopropenylethylperoxy radical) HOCH_2CHC(CH_3)CH_2 +10056 10056 2-lambda^1-Oxidanyloxy-2-methylbut-3-en-1-ol (4-Hydroxy-3-methyl-1-butene-3-ylperoxy radical) HOCH_2C(CH_3)(OO)CHCH_2 +10057 10057 2-lambda^1-Oxidanyloxy-3-methylbut-3-en-1-ol (2-Hydroxy-1-isopropenylethylperoxy radical) HOCH_2CH(OO)C(CH_3)CH_2 10058 10058 (Z)-4-Hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH_3)CHO 10059 10059 (Z)-4-Hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH_3)CHCHO # 10060-10499 Reserved for other simple organic molecules e.g. higher aldehydes alcohols From a5b3e45bb64a0977af031fe9ce83ee73c4e21a2f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 27 Nov 2020 22:49:10 +0000 Subject: [PATCH 163/683] ECC-1168: clean up --- definitions/grib2/tables/1.0.table | 2 +- definitions/grib2/tables/26/1.0.table | 55 ++++++++++++++------------- 2 files changed, 30 insertions(+), 27 deletions(-) diff --git a/definitions/grib2/tables/1.0.table b/definitions/grib2/tables/1.0.table index 8203f4bb9..789ef85f7 100644 --- a/definitions/grib2/tables/1.0.table +++ b/definitions/grib2/tables/1.0.table @@ -25,6 +25,6 @@ 23 23 Version implemented on 15 May 2019 24 24 Version implemented on 6 November 2019 25 25 Version implemented on 6 May 2020 -26 26 Pre-operational to be implemented by next amendment +26 26 Version implemented on 16 November 2020 # 27-254 Future versions 255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/definitions/grib2/tables/26/1.0.table b/definitions/grib2/tables/26/1.0.table index 79240c698..789ef85f7 100644 --- a/definitions/grib2/tables/26/1.0.table +++ b/definitions/grib2/tables/26/1.0.table @@ -1,27 +1,30 @@ # Code table 1.0 - GRIB master tables version number -0 0 Experimental -1 1 Version implemented on 7 November 2001 -2 2 Version implemented on 4 November 2003 -3 3 Version implemented on 2 November 2005 -4 4 Version implemented on 7 November 2007 -5 5 Version implemented on 4 November 2009 -6 6 Version implemented on 15 September 2010 -7 7 Version implemented on 4 May 2011 -8 8 Version implemented on 2 November 2011 -9 9 Version implemented on 2 May 2012 -10 10 Version implemented on 7 November 2012 -11 11 Version implemented on 8 May 2013 -12 12 Version implemented on 14 November 2013 -13 13 Version implemented on 7 May 2014 -14 14 Version implemented on 5 November 2014 -15 15 Version implemented on 6 May 2015 -16 16 Version implemented on 11 November 2015 -17 17 Version implemented on 4 May 2016 -18 18 Version implemented on 2 November 2016 -19 19 Version implemented on 3 May 2017 -20 20 Version implemented on 8 November 2017 -21 21 Version implemented on 2 May 2018 -22 22 Version implemented on 7 November 2018 -23 23 Pre-operational to be implemented by next amendment -# 24-254 Future versions -255 255 Missing +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Version implemented on 6 May 2015 +16 16 Version implemented on 11 November 2015 +17 17 Version implemented on 4 May 2016 +18 18 Version implemented on 2 November 2016 +19 19 Version implemented on 3 May 2017 +20 20 Version implemented on 8 November 2017 +21 21 Version implemented on 2 May 2018 +22 22 Version implemented on 7 November 2018 +23 23 Version implemented on 15 May 2019 +24 24 Version implemented on 6 November 2019 +25 25 Version implemented on 6 May 2020 +26 26 Version implemented on 16 November 2020 +# 27-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. From 1396d7a8aae47109bfd7591c7e5b25cd2284c729 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 28 Nov 2020 12:56:28 +0000 Subject: [PATCH 164/683] Documentation: rename macro and add comments --- src/grib_accessor_class_bufr_data_array.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/grib_accessor_class_bufr_data_array.c b/src/grib_accessor_class_bufr_data_array.c index 499775826..6733aaa22 100644 --- a/src/grib_accessor_class_bufr_data_array.c +++ b/src/grib_accessor_class_bufr_data_array.c @@ -2131,7 +2131,8 @@ static grib_accessor* create_accessor_from_descriptor(const grib_accessor* a, gr return elementAccessor; } -#define IS_QUALIFIER(a) (a == 8 || a == 1 || a == 2 || a == 4 || a == 5 || a == 6 || a == 7) +/* Section 3.1.2.2 of WMO BUFR guide: classes 03 and 09 at present reserved for future use */ +#define IS_COORDINATE_DESCRIPTOR(a) (a == 8 || a == 1 || a == 2 || a == 4 || a == 5 || a == 6 || a == 7) #define NUMBER_OF_QUALIFIERS_PER_CATEGORY 256 #define NUMBER_OF_QUALIFIERS_CATEGORIES 7 #define MAX_NUMBER_OF_BITMAPS 5 @@ -2509,7 +2510,7 @@ static int create_keys(const grib_accessor* a, long onlySubset, long startSubset continue; /* Descriptor does not have an associated key e.g. inside op 203YYY */ } elementFromBitmap = NULL; - if (descriptor->F == 0 && IS_QUALIFIER(descriptor->X) && + if (descriptor->F == 0 && IS_COORDINATE_DESCRIPTOR(descriptor->X) && self->unpackMode == CODES_BUFR_UNPACK_STRUCTURE) { int sidx = significanceQualifierIndex(descriptor->X, descriptor->Y); groupNumber++; @@ -2622,7 +2623,7 @@ static int create_keys(const grib_accessor* a, long onlySubset, long startSubset bitmap_init(c, &bitmap, bitmapStart[bitmapIndex], bitmapSize[bitmapIndex], lastAccessorInList); elementFromBitmap = get_element_from_bitmap(a, &bitmap); dump = 1; - /* } else if ( descriptor->Y==1 && IS_QUALIFIER(self->expanded->v[idx-1]->X)==0) { */ + /* } else if ( descriptor->Y==1 && IS_COORDINATE_DESCRIPTOR(self->expanded->v[idx-1]->X)==0) { */ /* forceGroupClosure=1; */ /* reset_qualifiers(significanceQualifierGroup); */ } From 8078e5a6f19763ef0fad3f684552a0738a2a13ff Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 30 Nov 2020 15:40:23 +0000 Subject: [PATCH 165/683] Message offsets: rework interface --- src/eccodes.h | 12 ++++++------ src/grib_api_prototypes.h | 2 +- src/grib_io.c | 15 ++++++++++++++- 3 files changed, 21 insertions(+), 8 deletions(-) diff --git a/src/eccodes.h b/src/eccodes.h index bca126ecb..054870348 100644 --- a/src/eccodes.h +++ b/src/eccodes.h @@ -1272,7 +1272,7 @@ codes_handle* codes_grib_util_set_spec(codes_handle* h, int* err); /* EXPERIMENTAL FEATURE - * Build an array of headers from input BUFR file. + * Build an array of message headers from input BUFR file. * result = array of 'codes_bufr_header' structs with 'num_messages' elements. * This array should be freed by the caller. * num_messages = number of messages found in the input file. @@ -1283,14 +1283,14 @@ int codes_bufr_extract_headers_malloc(codes_context* c, const char* filename, co int codes_bufr_header_get_string(codes_bufr_header* bh, const char* key, char* val, size_t* len); /* EXPERIMENTAL FEATURE - * Build an array of offsets from input file. - * result = array of offsets with 'length' elements. + * Build an array of message offsets from input file. The client has to supply the ProductKind (GRIB, BUFR etc) + * result = array of offsets with 'num_messages' elements. * This array should be freed by the caller. - * length = number of messages found in the input file. - * strict = If 1 means fail if any message is invalid. + * num_messages = number of messages found in the input file. + * strict_mode = If 1 means fail if any message is invalid. * returns 0 if OK, integer value on error. */ -int codes_extract_offsets_malloc(grib_context* c, FILE* f, ProductKind product, off_t** offsets, size_t* length, int strict_mode); +int codes_extract_offsets_malloc(grib_context* c, const char* filename, ProductKind product, off_t** offsets, int* num_messages, int strict_mode); /* --------------------------------------- */ #ifdef __cplusplus diff --git a/src/grib_api_prototypes.h b/src/grib_api_prototypes.h index 94261eea3..70b3eb140 100644 --- a/src/grib_api_prototypes.h +++ b/src/grib_api_prototypes.h @@ -1137,7 +1137,7 @@ int grib_read_any_from_memory_alloc(grib_context* ctx, unsigned char** data, siz int grib_read_any_from_memory(grib_context* ctx, unsigned char** data, size_t* data_length, void* buffer, size_t* len); int grib_count_in_file(grib_context* c, FILE* f, int* n); int grib_count_in_filename(grib_context* c, const char* filename, int* n); -int codes_extract_offsets_malloc(grib_context* c, FILE* f, ProductKind product, off_t** offsets, size_t* length, int strict_mode); +int codes_extract_offsets_malloc(grib_context* c, const char* filename, ProductKind product, off_t** offsets, int* length, int strict_mode); /* grib_trie.c */ diff --git a/src/grib_io.c b/src/grib_io.c index 0c9e6b76e..31a3bca38 100644 --- a/src/grib_io.c +++ b/src/grib_io.c @@ -1771,7 +1771,7 @@ static int count_product_in_file(grib_context* c, FILE* f, ProductKind product, return err == GRIB_END_OF_FILE ? 0 : err; } -int codes_extract_offsets_malloc(grib_context* c, FILE* f, ProductKind product, off_t** offsets, size_t* length, int strict_mode) +int codes_extract_offsets_malloc(grib_context* c, const char* filename, ProductKind product, off_t** offsets, int* length, int strict_mode) { int err = 0; void* mesg = NULL; @@ -1779,6 +1779,7 @@ int codes_extract_offsets_malloc(grib_context* c, FILE* f, ProductKind product, off_t offset = 0; int num_messages = 0, i = 0; decoder_proc decoder = NULL; + FILE* f = NULL; decoder = get_reader_for_product(product); if (!decoder) { @@ -1786,19 +1787,28 @@ int codes_extract_offsets_malloc(grib_context* c, FILE* f, ProductKind product, return GRIB_INVALID_ARGUMENT; } if (!c) c = grib_context_get_default(); + f = fopen(filename, "rb"); + if (!f) { + grib_context_log(c, GRIB_LOG_ERROR, "codes_extract_offsets_malloc: Unable to read file \"%s\"", filename); + perror(filename); + return GRIB_IO_PROBLEM; + } err = count_product_in_file(c, f, product, &num_messages); if (err) { grib_context_log(c, GRIB_LOG_ERROR, "codes_extract_offsets_malloc: Unable to count messages"); + fclose(f); return err; } *length = num_messages; if (num_messages == 0) { grib_context_log(c, GRIB_LOG_ERROR, "codes_extract_offsets_malloc: No messages in file"); + fclose(f); return GRIB_INVALID_MESSAGE; } *offsets = (off_t*)calloc(num_messages, sizeof(off_t)); if (!*offsets) { + fclose(f); return GRIB_OUT_OF_MEMORY; } @@ -1815,6 +1825,7 @@ int codes_extract_offsets_malloc(grib_context* c, FILE* f, ProductKind product, if (mesg && err) { if (strict_mode) { grib_context_free(c, mesg); + fclose(f); return GRIB_DECODING_ERROR; } } @@ -1823,6 +1834,7 @@ int codes_extract_offsets_malloc(grib_context* c, FILE* f, ProductKind product, /* An error occurred */ grib_context_log(c, GRIB_LOG_ERROR, "codes_extract_offsets_malloc: Unable to read message"); if (strict_mode) { + fclose(f); return GRIB_DECODING_ERROR; } } @@ -1830,5 +1842,6 @@ int codes_extract_offsets_malloc(grib_context* c, FILE* f, ProductKind product, ++i; } + fclose(f); return err; } From 664732b63968c4497dda3d470e517e8825cf6055 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 30 Nov 2020 15:51:25 +0000 Subject: [PATCH 166/683] Message offsets: rework interface --- tests/bufr_extract_headers.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/tests/bufr_extract_headers.c b/tests/bufr_extract_headers.c index 6cfb3271f..cf6c8314d 100644 --- a/tests/bufr_extract_headers.c +++ b/tests/bufr_extract_headers.c @@ -17,29 +17,26 @@ int main(int argc, char* argv[]) { char *filename; int err = 0; - size_t num_messages = 0, i =0; + int num_messages = 0, i =0; off_t* offsets = NULL; codes_context* c = codes_context_get_default(); const int strict_mode = 1; - FILE* fp; /* Usage: prog file */ assert(argc == 2); filename = argv[1]; - fp = fopen(filename, "rb"); - assert(fp); - err = codes_extract_offsets_malloc(c, fp, PRODUCT_GRIB, &offsets, &num_messages, strict_mode); + err = codes_extract_offsets_malloc(c, filename, PRODUCT_GRIB, &offsets, &num_messages, strict_mode); assert(!err); for (i = 0; i < num_messages; ++i) { - printf("Message %lu: %lu\n", i, offsets[i]); + printf("Message #%d: %lu\n", i, offsets[i]); } free(offsets); return 0; } #endif - +#if 1 int main(int argc, char* argv[]) { char *filename, *keys; @@ -87,3 +84,4 @@ int main(int argc, char* argv[]) return 0; } +#endif From fecf742716e228efaeb88d5d4736be130beb38e1 Mon Sep 17 00:00:00 2001 From: Marijana Crepulja Date: Mon, 30 Nov 2020 19:07:43 +0000 Subject: [PATCH 167/683] ECC-1173: WMO BUFR tables version 35 --- .../tables/0/wmo/35/codetables/1003.table | 8 + .../tables/0/wmo/35/codetables/10063.table | 10 + .../tables/0/wmo/35/codetables/10064.table | 4 + .../tables/0/wmo/35/codetables/1007.table | 222 +++ .../tables/0/wmo/35/codetables/1024.table | 9 + .../tables/0/wmo/35/codetables/1028.table | 7 + .../tables/0/wmo/35/codetables/1029.table | 8 + .../tables/0/wmo/35/codetables/1033.table | 239 +++ .../tables/0/wmo/35/codetables/1034.table | 104 + .../tables/0/wmo/35/codetables/1036.table | 38 + .../tables/0/wmo/35/codetables/1038.table | 7 + .../tables/0/wmo/35/codetables/1044.table | 9 + .../tables/0/wmo/35/codetables/1052.table | 4 + .../tables/0/wmo/35/codetables/1090.table | 5 + .../tables/0/wmo/35/codetables/1092.table | 6 + .../tables/0/wmo/35/codetables/1101.table | 202 ++ .../tables/0/wmo/35/codetables/11030.table | 25 + .../tables/0/wmo/35/codetables/11031.table | 16 + .../tables/0/wmo/35/codetables/11037.table | 30 + .../tables/0/wmo/35/codetables/11038.table | 17 + .../tables/0/wmo/35/codetables/11039.table | 17 + .../tables/0/wmo/35/codetables/1150.table | 6 + .../tables/0/wmo/35/codetables/1151.table | 3 + .../tables/0/wmo/35/codetables/13038.table | 4 + .../tables/0/wmo/35/codetables/13039.table | 3 + .../tables/0/wmo/35/codetables/13040.table | 13 + .../tables/0/wmo/35/codetables/13041.table | 10 + .../tables/0/wmo/35/codetables/13051.table | 8 + .../tables/0/wmo/35/codetables/13056.table | 11 + .../tables/0/wmo/35/codetables/13057.table | 11 + .../tables/0/wmo/35/codetables/15025.table | 4 + .../tables/0/wmo/35/codetables/19001.table | 7 + .../tables/0/wmo/35/codetables/19008.table | 5 + .../tables/0/wmo/35/codetables/19010.table | 3 + .../tables/0/wmo/35/codetables/19100.table | 9 + .../tables/0/wmo/35/codetables/19101.table | 10 + .../tables/0/wmo/35/codetables/19102.table | 8 + .../tables/0/wmo/35/codetables/19103.table | 12 + .../tables/0/wmo/35/codetables/19104.table | 12 + .../tables/0/wmo/35/codetables/19105.table | 10 + .../tables/0/wmo/35/codetables/19107.table | 11 + .../tables/0/wmo/35/codetables/19108.table | 8 + .../tables/0/wmo/35/codetables/19109.table | 12 + .../tables/0/wmo/35/codetables/19110.table | 8 + .../tables/0/wmo/35/codetables/19113.table | 8 + .../tables/0/wmo/35/codetables/19117.table | 4 + .../tables/0/wmo/35/codetables/19119.table | 4 + .../tables/0/wmo/35/codetables/20003.table | 266 +++ .../tables/0/wmo/35/codetables/20004.table | 21 + .../tables/0/wmo/35/codetables/20005.table | 21 + .../tables/0/wmo/35/codetables/20006.table | 5 + .../tables/0/wmo/35/codetables/20008.table | 19 + .../tables/0/wmo/35/codetables/20009.table | 6 + .../tables/0/wmo/35/codetables/2001.table | 4 + .../tables/0/wmo/35/codetables/20011.table | 16 + .../tables/0/wmo/35/codetables/20012.table | 55 + .../tables/0/wmo/35/codetables/20017.table | 11 + .../tables/0/wmo/35/codetables/20018.table | 4 + .../tables/0/wmo/35/codetables/2002.table | 3 + .../tables/0/wmo/35/codetables/20021.table | 23 + .../tables/0/wmo/35/codetables/20022.table | 7 + .../tables/0/wmo/35/codetables/20023.table | 14 + .../tables/0/wmo/35/codetables/20024.table | 8 + .../tables/0/wmo/35/codetables/20025.table | 13 + .../tables/0/wmo/35/codetables/20026.table | 16 + .../tables/0/wmo/35/codetables/20027.table | 8 + .../tables/0/wmo/35/codetables/20028.table | 4 + .../tables/0/wmo/35/codetables/20029.table | 4 + .../tables/0/wmo/35/codetables/2003.table | 13 + .../tables/0/wmo/35/codetables/20032.table | 6 + .../tables/0/wmo/35/codetables/20033.table | 3 + .../tables/0/wmo/35/codetables/20034.table | 12 + .../tables/0/wmo/35/codetables/20035.table | 12 + .../tables/0/wmo/35/codetables/20036.table | 12 + .../tables/0/wmo/35/codetables/20037.table | 12 + .../tables/0/wmo/35/codetables/2004.table | 11 + .../tables/0/wmo/35/codetables/20040.table | 9 + .../tables/0/wmo/35/codetables/20041.table | 14 + .../tables/0/wmo/35/codetables/20042.table | 4 + .../tables/0/wmo/35/codetables/20045.table | 4 + .../tables/0/wmo/35/codetables/20048.table | 5 + .../tables/0/wmo/35/codetables/20050.table | 10 + .../tables/0/wmo/35/codetables/20055.table | 12 + .../tables/0/wmo/35/codetables/20056.table | 8 + .../tables/0/wmo/35/codetables/2006.table | 9 + .../tables/0/wmo/35/codetables/20062.table | 21 + .../tables/0/wmo/35/codetables/20063.table | 71 + .../tables/0/wmo/35/codetables/2007.table | 11 + .../tables/0/wmo/35/codetables/20071.table | 11 + .../tables/0/wmo/35/codetables/2008.table | 7 + .../tables/0/wmo/35/codetables/20085.table | 3 + .../tables/0/wmo/35/codetables/20086.table | 11 + .../tables/0/wmo/35/codetables/20087.table | 6 + .../tables/0/wmo/35/codetables/20089.table | 11 + .../tables/0/wmo/35/codetables/20090.table | 7 + .../tables/0/wmo/35/codetables/20101.table | 11 + .../tables/0/wmo/35/codetables/20102.table | 11 + .../tables/0/wmo/35/codetables/20103.table | 11 + .../tables/0/wmo/35/codetables/20104.table | 11 + .../tables/0/wmo/35/codetables/20105.table | 12 + .../tables/0/wmo/35/codetables/20106.table | 7 + .../tables/0/wmo/35/codetables/20107.table | 11 + .../tables/0/wmo/35/codetables/20108.table | 9 + .../tables/0/wmo/35/codetables/2011.table | 100 + .../tables/0/wmo/35/codetables/20119.table | 4 + .../tables/0/wmo/35/codetables/20124.table | 4 + .../tables/0/wmo/35/codetables/2013.table | 11 + .../tables/0/wmo/35/codetables/20136.table | 44 + .../tables/0/wmo/35/codetables/20137.table | 11 + .../tables/0/wmo/35/codetables/20138.table | 9 + .../tables/0/wmo/35/codetables/2014.table | 51 + .../tables/0/wmo/35/codetables/2015.table | 7 + .../tables/0/wmo/35/codetables/2016.table | 4 + .../tables/0/wmo/35/codetables/2017.table | 6 + .../tables/0/wmo/35/codetables/2019.table | 358 ++++ .../tables/0/wmo/35/codetables/2020.table | 32 + .../tables/0/wmo/35/codetables/2021.table | 8 + .../tables/0/wmo/35/codetables/2022.table | 5 + .../tables/0/wmo/35/codetables/2023.table | 11 + .../tables/0/wmo/35/codetables/2024.table | 4 + .../tables/0/wmo/35/codetables/2025.table | 16 + .../tables/0/wmo/35/codetables/2030.table | 8 + .../tables/0/wmo/35/codetables/2031.table | 21 + .../tables/0/wmo/35/codetables/2032.table | 4 + .../tables/0/wmo/35/codetables/2033.table | 5 + .../tables/0/wmo/35/codetables/2034.table | 7 + .../tables/0/wmo/35/codetables/2036.table | 4 + .../tables/0/wmo/35/codetables/2037.table | 8 + .../tables/0/wmo/35/codetables/2038.table | 16 + .../tables/0/wmo/35/codetables/2039.table | 5 + .../tables/0/wmo/35/codetables/2040.table | 8 + .../tables/0/wmo/35/codetables/2041.table | 6 + .../tables/0/wmo/35/codetables/2042.table | 4 + .../tables/0/wmo/35/codetables/2044.table | 6 + .../tables/0/wmo/35/codetables/2045.table | 5 + .../tables/0/wmo/35/codetables/2046.table | 4 + .../tables/0/wmo/35/codetables/2047.table | 9 + .../tables/0/wmo/35/codetables/2048.table | 16 + .../tables/0/wmo/35/codetables/2049.table | 4 + .../tables/0/wmo/35/codetables/2050.table | 19 + .../tables/0/wmo/35/codetables/2051.table | 5 + .../tables/0/wmo/35/codetables/2052.table | 5 + .../tables/0/wmo/35/codetables/2053.table | 5 + .../tables/0/wmo/35/codetables/2054.table | 6 + .../tables/0/wmo/35/codetables/2055.table | 10 + .../tables/0/wmo/35/codetables/2056.table | 6 + .../tables/0/wmo/35/codetables/2057.table | 7 + .../tables/0/wmo/35/codetables/2058.table | 5 + .../tables/0/wmo/35/codetables/2059.table | 5 + .../tables/0/wmo/35/codetables/2060.table | 7 + .../tables/0/wmo/35/codetables/2061.table | 3 + .../tables/0/wmo/35/codetables/2062.table | 7 + .../tables/0/wmo/35/codetables/2064.table | 4 + .../tables/0/wmo/35/codetables/2066.table | 9 + .../tables/0/wmo/35/codetables/2070.table | 13 + .../tables/0/wmo/35/codetables/2080.table | 7 + .../tables/0/wmo/35/codetables/2081.table | 11 + .../tables/0/wmo/35/codetables/2083.table | 7 + .../tables/0/wmo/35/codetables/2084.table | 5 + .../tables/0/wmo/35/codetables/2092.table | 4 + .../tables/0/wmo/35/codetables/2095.table | 7 + .../tables/0/wmo/35/codetables/2096.table | 9 + .../tables/0/wmo/35/codetables/2097.table | 26 + .../tables/0/wmo/35/codetables/2099.table | 5 + .../tables/0/wmo/35/codetables/2101.table | 10 + .../tables/0/wmo/35/codetables/2103.table | 1 + .../tables/0/wmo/35/codetables/2104.table | 9 + .../tables/0/wmo/35/codetables/21066.table | 11 + .../tables/0/wmo/35/codetables/21067.table | 12 + .../tables/0/wmo/35/codetables/21068.table | 7 + .../tables/0/wmo/35/codetables/21069.table | 9 + .../tables/0/wmo/35/codetables/21070.table | 22 + .../tables/0/wmo/35/codetables/21072.table | 3 + .../tables/0/wmo/35/codetables/21073.table | 8 + .../tables/0/wmo/35/codetables/21076.table | 4 + .../tables/0/wmo/35/codetables/21109.table | 7 + .../tables/0/wmo/35/codetables/21115.table | 10 + .../tables/0/wmo/35/codetables/21116.table | 16 + .../tables/0/wmo/35/codetables/21119.table | 14 + .../tables/0/wmo/35/codetables/21144.table | 1 + .../tables/0/wmo/35/codetables/21148.table | 2 + .../tables/0/wmo/35/codetables/2115.table | 7 + .../tables/0/wmo/35/codetables/21150.table | 4 + .../tables/0/wmo/35/codetables/21155.table | 16 + .../tables/0/wmo/35/codetables/21158.table | 4 + .../tables/0/wmo/35/codetables/21159.table | 4 + .../tables/0/wmo/35/codetables/21169.table | 4 + .../tables/0/wmo/35/codetables/2119.table | 8 + .../tables/0/wmo/35/codetables/2131.table | 1 + .../tables/0/wmo/35/codetables/2137.table | 4 + .../tables/0/wmo/35/codetables/2138.table | 3 + .../tables/0/wmo/35/codetables/2139.table | 3 + .../tables/0/wmo/35/codetables/2143.table | 21 + .../tables/0/wmo/35/codetables/2144.table | 8 + .../tables/0/wmo/35/codetables/2145.table | 9 + .../tables/0/wmo/35/codetables/2146.table | 11 + .../tables/0/wmo/35/codetables/2147.table | 11 + .../tables/0/wmo/35/codetables/2148.table | 12 + .../tables/0/wmo/35/codetables/2149.table | 38 + .../tables/0/wmo/35/codetables/2150.table | 55 + .../tables/0/wmo/35/codetables/2151.table | 11 + .../tables/0/wmo/35/codetables/2152.table | 13 + .../tables/0/wmo/35/codetables/2158.table | 8 + .../tables/0/wmo/35/codetables/2159.table | 7 + .../tables/0/wmo/35/codetables/2160.table | 11 + .../tables/0/wmo/35/codetables/2161.table | 5 + .../tables/0/wmo/35/codetables/2162.table | 19 + .../tables/0/wmo/35/codetables/2163.table | 16 + .../tables/0/wmo/35/codetables/2164.table | 5 + .../tables/0/wmo/35/codetables/2165.table | 7 + .../tables/0/wmo/35/codetables/2166.table | 6 + .../tables/0/wmo/35/codetables/2167.table | 4 + .../tables/0/wmo/35/codetables/2169.table | 5 + .../tables/0/wmo/35/codetables/2170.table | 5 + .../tables/0/wmo/35/codetables/2172.table | 4 + .../tables/0/wmo/35/codetables/2175.table | 9 + .../tables/0/wmo/35/codetables/2176.table | 6 + .../tables/0/wmo/35/codetables/2177.table | 6 + .../tables/0/wmo/35/codetables/2178.table | 5 + .../tables/0/wmo/35/codetables/2179.table | 6 + .../tables/0/wmo/35/codetables/2180.table | 8 + .../tables/0/wmo/35/codetables/2181.table | 5 + .../tables/0/wmo/35/codetables/2182.table | 7 + .../tables/0/wmo/35/codetables/2183.table | 9 + .../tables/0/wmo/35/codetables/2184.table | 9 + .../tables/0/wmo/35/codetables/2185.table | 7 + .../tables/0/wmo/35/codetables/2186.table | 24 + .../tables/0/wmo/35/codetables/2187.table | 11 + .../tables/0/wmo/35/codetables/2188.table | 10 + .../tables/0/wmo/35/codetables/2189.table | 4 + .../tables/0/wmo/35/codetables/2191.table | 4 + .../tables/0/wmo/35/codetables/22056.table | 4 + .../tables/0/wmo/35/codetables/22060.table | 4 + .../tables/0/wmo/35/codetables/22061.table | 11 + .../tables/0/wmo/35/codetables/22067.table | 109 ++ .../tables/0/wmo/35/codetables/22068.table | 43 + .../tables/0/wmo/35/codetables/22120.table | 13 + .../tables/0/wmo/35/codetables/22121.table | 9 + .../tables/0/wmo/35/codetables/22122.table | 8 + .../tables/0/wmo/35/codetables/22123.table | 9 + .../tables/0/wmo/35/codetables/22178.table | 12 + .../tables/0/wmo/35/codetables/23001.table | 5 + .../tables/0/wmo/35/codetables/23002.table | 16 + .../tables/0/wmo/35/codetables/23003.table | 8 + .../tables/0/wmo/35/codetables/23004.table | 6 + .../tables/0/wmo/35/codetables/23005.table | 4 + .../tables/0/wmo/35/codetables/23006.table | 8 + .../tables/0/wmo/35/codetables/23007.table | 5 + .../tables/0/wmo/35/codetables/23008.table | 4 + .../tables/0/wmo/35/codetables/23009.table | 4 + .../tables/0/wmo/35/codetables/23016.table | 4 + .../tables/0/wmo/35/codetables/23018.table | 6 + .../tables/0/wmo/35/codetables/23031.table | 4 + .../tables/0/wmo/35/codetables/23032.table | 4 + .../tables/0/wmo/35/codetables/24003.table | 5 + .../tables/0/wmo/35/codetables/25004.table | 4 + .../tables/0/wmo/35/codetables/25005.table | 4 + .../tables/0/wmo/35/codetables/25006.table | 5 + .../tables/0/wmo/35/codetables/25009.table | 4 + .../tables/0/wmo/35/codetables/25010.table | 8 + .../tables/0/wmo/35/codetables/25011.table | 4 + .../tables/0/wmo/35/codetables/25012.table | 4 + .../tables/0/wmo/35/codetables/25013.table | 1 + .../tables/0/wmo/35/codetables/25015.table | 1 + .../tables/0/wmo/35/codetables/25017.table | 1 + .../tables/0/wmo/35/codetables/25020.table | 4 + .../tables/0/wmo/35/codetables/25021.table | 5 + .../tables/0/wmo/35/codetables/25022.table | 8 + .../tables/0/wmo/35/codetables/25023.table | 8 + .../tables/0/wmo/35/codetables/25024.table | 13 + .../tables/0/wmo/35/codetables/25029.table | 5 + .../tables/0/wmo/35/codetables/25030.table | 4 + .../tables/0/wmo/35/codetables/25031.table | 6 + .../tables/0/wmo/35/codetables/25032.table | 4 + .../tables/0/wmo/35/codetables/25033.table | 4 + .../tables/0/wmo/35/codetables/25034.table | 3 + .../tables/0/wmo/35/codetables/25035.table | 8 + .../tables/0/wmo/35/codetables/25036.table | 4 + .../tables/0/wmo/35/codetables/25040.table | 10 + .../tables/0/wmo/35/codetables/25041.table | 4 + .../tables/0/wmo/35/codetables/25042.table | 4 + .../tables/0/wmo/35/codetables/25053.table | 6 + .../tables/0/wmo/35/codetables/25063.table | 4 + .../tables/0/wmo/35/codetables/25069.table | 7 + .../tables/0/wmo/35/codetables/25086.table | 4 + .../tables/0/wmo/35/codetables/25090.table | 11 + .../tables/0/wmo/35/codetables/25093.table | 3 + .../tables/0/wmo/35/codetables/25095.table | 1 + .../tables/0/wmo/35/codetables/25096.table | 4 + .../tables/0/wmo/35/codetables/25097.table | 11 + .../tables/0/wmo/35/codetables/25098.table | 8 + .../tables/0/wmo/35/codetables/25099.table | 6 + .../tables/0/wmo/35/codetables/25110.table | 6 + .../tables/0/wmo/35/codetables/25112.table | 5 + .../tables/0/wmo/35/codetables/25113.table | 3 + .../tables/0/wmo/35/codetables/25120.table | 4 + .../tables/0/wmo/35/codetables/25122.table | 4 + .../tables/0/wmo/35/codetables/25123.table | 4 + .../tables/0/wmo/35/codetables/25124.table | 4 + .../tables/0/wmo/35/codetables/25150.table | 3 + .../tables/0/wmo/35/codetables/25174.table | 13 + .../tables/0/wmo/35/codetables/25181.table | 3 + .../tables/0/wmo/35/codetables/25182.table | 3 + .../tables/0/wmo/35/codetables/25184.table | 3 + .../tables/0/wmo/35/codetables/25185.table | 2 + .../tables/0/wmo/35/codetables/25187.table | 3 + .../tables/0/wmo/35/codetables/25188.table | 6 + .../tables/0/wmo/35/codetables/25190.table | 7 + .../tables/0/wmo/35/codetables/25191.table | 4 + .../tables/0/wmo/35/codetables/26010.table | 25 + .../tables/0/wmo/35/codetables/29001.table | 8 + .../tables/0/wmo/35/codetables/29002.table | 4 + .../tables/0/wmo/35/codetables/3001.table | 11 + .../tables/0/wmo/35/codetables/3003.table | 8 + .../tables/0/wmo/35/codetables/30031.table | 13 + .../tables/0/wmo/35/codetables/30032.table | 9 + .../tables/0/wmo/35/codetables/3004.table | 11 + .../tables/0/wmo/35/codetables/3008.table | 4 + .../tables/0/wmo/35/codetables/3010.table | 12 + .../tables/0/wmo/35/codetables/3011.table | 4 + .../tables/0/wmo/35/codetables/3012.table | 3 + .../tables/0/wmo/35/codetables/3016.table | 9 + .../tables/0/wmo/35/codetables/3017.table | 5 + .../tables/0/wmo/35/codetables/3018.table | 22 + .../tables/0/wmo/35/codetables/3019.table | 8 + .../tables/0/wmo/35/codetables/3020.table | 5 + .../tables/0/wmo/35/codetables/3021.table | 4 + .../tables/0/wmo/35/codetables/3022.table | 4 + .../tables/0/wmo/35/codetables/3023.table | 8 + .../tables/0/wmo/35/codetables/3027.table | 8 + .../tables/0/wmo/35/codetables/3028.table | 8 + .../tables/0/wmo/35/codetables/31021.table | 9 + .../tables/0/wmo/35/codetables/31031.table | 1 + .../tables/0/wmo/35/codetables/33002.table | 4 + .../tables/0/wmo/35/codetables/33003.table | 5 + .../tables/0/wmo/35/codetables/33005.table | 23 + .../tables/0/wmo/35/codetables/33006.table | 5 + .../tables/0/wmo/35/codetables/33015.table | 16 + .../tables/0/wmo/35/codetables/33020.table | 8 + .../tables/0/wmo/35/codetables/33021.table | 4 + .../tables/0/wmo/35/codetables/33022.table | 4 + .../tables/0/wmo/35/codetables/33023.table | 4 + .../tables/0/wmo/35/codetables/33024.table | 10 + .../tables/0/wmo/35/codetables/33025.table | 5 + .../tables/0/wmo/35/codetables/33026.table | 17 + .../tables/0/wmo/35/codetables/33027.table | 6 + .../tables/0/wmo/35/codetables/33028.table | 5 + .../tables/0/wmo/35/codetables/33030.table | 7 + .../tables/0/wmo/35/codetables/33031.table | 21 + .../tables/0/wmo/35/codetables/33032.table | 7 + .../tables/0/wmo/35/codetables/33033.table | 3 + .../tables/0/wmo/35/codetables/33035.table | 10 + .../tables/0/wmo/35/codetables/33037.table | 19 + .../tables/0/wmo/35/codetables/33038.table | 9 + .../tables/0/wmo/35/codetables/33039.table | 9 + .../tables/0/wmo/35/codetables/33041.table | 4 + .../tables/0/wmo/35/codetables/33042.table | 5 + .../tables/0/wmo/35/codetables/33043.table | 4 + .../tables/0/wmo/35/codetables/33044.table | 14 + .../tables/0/wmo/35/codetables/33047.table | 27 + .../tables/0/wmo/35/codetables/33048.table | 4 + .../tables/0/wmo/35/codetables/33049.table | 4 + .../tables/0/wmo/35/codetables/33050.table | 9 + .../tables/0/wmo/35/codetables/33055.table | 13 + .../tables/0/wmo/35/codetables/33056.table | 13 + .../tables/0/wmo/35/codetables/33060.table | 4 + .../tables/0/wmo/35/codetables/33066.table | 4 + .../tables/0/wmo/35/codetables/33070.table | 14 + .../tables/0/wmo/35/codetables/33071.table | 10 + .../tables/0/wmo/35/codetables/33072.table | 18 + .../tables/0/wmo/35/codetables/33075.table | 5 + .../tables/0/wmo/35/codetables/33076.table | 2 + .../tables/0/wmo/35/codetables/33077.table | 12 + .../tables/0/wmo/35/codetables/33078.table | 5 + .../tables/0/wmo/35/codetables/33079.table | 10 + .../tables/0/wmo/35/codetables/33080.table | 13 + .../tables/0/wmo/35/codetables/33081.table | 9 + .../tables/0/wmo/35/codetables/33082.table | 10 + .../tables/0/wmo/35/codetables/33083.table | 10 + .../tables/0/wmo/35/codetables/33084.table | 10 + .../tables/0/wmo/35/codetables/33085.table | 14 + .../tables/0/wmo/35/codetables/33086.table | 5 + .../tables/0/wmo/35/codetables/33087.table | 10 + .../tables/0/wmo/35/codetables/33088.table | 12 + .../tables/0/wmo/35/codetables/33092.table | 2 + .../tables/0/wmo/35/codetables/35000.table | 1 + .../tables/0/wmo/35/codetables/35001.table | 4 + .../tables/0/wmo/35/codetables/35030.table | 10 + .../tables/0/wmo/35/codetables/35031.table | 20 + .../tables/0/wmo/35/codetables/35032.table | 10 + .../tables/0/wmo/35/codetables/35033.table | 12 + .../tables/0/wmo/35/codetables/35034.table | 7 + .../tables/0/wmo/35/codetables/35035.table | 20 + .../tables/0/wmo/35/codetables/40005.table | 5 + .../tables/0/wmo/35/codetables/40006.table | 8 + .../tables/0/wmo/35/codetables/40011.table | 4 + .../tables/0/wmo/35/codetables/40012.table | 3 + .../tables/0/wmo/35/codetables/40013.table | 5 + .../tables/0/wmo/35/codetables/40020.table | 16 + .../tables/0/wmo/35/codetables/40023.table | 4 + .../tables/0/wmo/35/codetables/40024.table | 5 + .../tables/0/wmo/35/codetables/40025.table | 4 + .../tables/0/wmo/35/codetables/40028.table | 16 + .../tables/0/wmo/35/codetables/40036.table | 3 + .../tables/0/wmo/35/codetables/40043.table | 4 + .../tables/0/wmo/35/codetables/40045.table | 4 + .../tables/0/wmo/35/codetables/40046.table | 5 + .../tables/0/wmo/35/codetables/40047.table | 4 + .../tables/0/wmo/35/codetables/40048.table | 4 + .../tables/0/wmo/35/codetables/40049.table | 12 + .../tables/0/wmo/35/codetables/40050.table | 3 + .../tables/0/wmo/35/codetables/40051.table | 8 + .../tables/0/wmo/35/codetables/40052.table | 4 + .../tables/0/wmo/35/codetables/40054.table | 12 + .../tables/0/wmo/35/codetables/40055.table | 20 + .../tables/0/wmo/35/codetables/40056.table | 4 + .../tables/0/wmo/35/codetables/40057.table | 30 + .../tables/0/wmo/35/codetables/40068.table | 4 + .../tables/0/wmo/35/codetables/40074.table | 10 + .../tables/0/wmo/35/codetables/4059.table | 5 + .../tables/0/wmo/35/codetables/4080.table | 6 + .../tables/0/wmo/35/codetables/42004.table | 3 + .../tables/0/wmo/35/codetables/5069.table | 4 + .../tables/0/wmo/35/codetables/8001.table | 6 + .../tables/0/wmo/35/codetables/8002.table | 19 + .../tables/0/wmo/35/codetables/8003.table | 12 + .../tables/0/wmo/35/codetables/8004.table | 6 + .../tables/0/wmo/35/codetables/8005.table | 7 + .../tables/0/wmo/35/codetables/8006.table | 8 + .../tables/0/wmo/35/codetables/8007.table | 5 + .../tables/0/wmo/35/codetables/8008.table | 8 + .../tables/0/wmo/35/codetables/8009.table | 16 + .../tables/0/wmo/35/codetables/8010.table | 14 + .../tables/0/wmo/35/codetables/8011.table | 27 + .../tables/0/wmo/35/codetables/8012.table | 4 + .../tables/0/wmo/35/codetables/8013.table | 4 + .../tables/0/wmo/35/codetables/8014.table | 10 + .../tables/0/wmo/35/codetables/8015.table | 4 + .../tables/0/wmo/35/codetables/8016.table | 5 + .../tables/0/wmo/35/codetables/8017.table | 4 + .../tables/0/wmo/35/codetables/8018.table | 4 + .../tables/0/wmo/35/codetables/8019.table | 8 + .../tables/0/wmo/35/codetables/8021.table | 32 + .../tables/0/wmo/35/codetables/8023.table | 14 + .../tables/0/wmo/35/codetables/8024.table | 12 + .../tables/0/wmo/35/codetables/8025.table | 5 + .../tables/0/wmo/35/codetables/8026.table | 5 + .../tables/0/wmo/35/codetables/8029.table | 16 + .../tables/0/wmo/35/codetables/8032.table | 7 + .../tables/0/wmo/35/codetables/8033.table | 6 + .../tables/0/wmo/35/codetables/8034.table | 10 + .../tables/0/wmo/35/codetables/8035.table | 8 + .../tables/0/wmo/35/codetables/8036.table | 8 + .../tables/0/wmo/35/codetables/8037.table | 4 + .../tables/0/wmo/35/codetables/8038.table | 3 + .../tables/0/wmo/35/codetables/8039.table | 8 + .../tables/0/wmo/35/codetables/8040.table | 49 + .../tables/0/wmo/35/codetables/8041.table | 15 + .../tables/0/wmo/35/codetables/8042.table | 17 + .../tables/0/wmo/35/codetables/8043.table | 17 + .../tables/0/wmo/35/codetables/8050.table | 11 + .../tables/0/wmo/35/codetables/8051.table | 7 + .../tables/0/wmo/35/codetables/8052.table | 26 + .../tables/0/wmo/35/codetables/8053.table | 4 + .../tables/0/wmo/35/codetables/8054.table | 3 + .../tables/0/wmo/35/codetables/8060.table | 8 + .../tables/0/wmo/35/codetables/8065.table | 4 + .../tables/0/wmo/35/codetables/8066.table | 4 + .../tables/0/wmo/35/codetables/8070.table | 6 + .../tables/0/wmo/35/codetables/8072.table | 6 + .../tables/0/wmo/35/codetables/8074.table | 4 + .../tables/0/wmo/35/codetables/8075.table | 4 + .../tables/0/wmo/35/codetables/8076.table | 9 + .../tables/0/wmo/35/codetables/8077.table | 7 + .../tables/0/wmo/35/codetables/8079.table | 9 + .../tables/0/wmo/35/codetables/8080.table | 14 + .../tables/0/wmo/35/codetables/8081.table | 5 + .../tables/0/wmo/35/codetables/8082.table | 3 + .../tables/0/wmo/35/codetables/8083.table | 9 + .../tables/0/wmo/35/codetables/8085.table | 4 + .../tables/0/wmo/35/codetables/8086.table | 11 + .../tables/0/wmo/35/codetables/8087.table | 5 + .../tables/0/wmo/35/codetables/8088.table | 4 + .../tables/0/wmo/35/codetables/8091.table | 11 + .../tables/0/wmo/35/codetables/8092.table | 2 + .../tables/0/wmo/35/codetables/8093.table | 4 + .../bufr/tables/0/wmo/35/element.table | 1716 +++++++++++++++++ definitions/bufr/tables/0/wmo/35/sequence.def | 1116 +++++++++++ 488 files changed, 8747 insertions(+) create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/1003.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/10063.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/10064.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/1007.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/1024.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/1028.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/1029.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/1033.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/1034.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/1036.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/1038.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/1044.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/1052.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/1090.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/1092.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/1101.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/11030.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/11031.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/11037.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/11038.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/11039.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/1150.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/1151.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/13038.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/13039.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/13040.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/13041.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/13051.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/13056.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/13057.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/15025.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/19001.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/19008.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/19010.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/19100.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/19101.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/19102.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/19103.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/19104.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/19105.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/19107.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/19108.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/19109.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/19110.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/19113.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/19117.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/19119.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20003.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20004.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20005.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20006.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20008.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20009.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2001.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20011.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20012.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20017.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20018.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2002.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20021.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20022.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20023.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20024.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20025.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20026.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20027.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20028.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20029.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2003.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20032.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20033.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20034.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20035.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20036.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20037.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2004.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20040.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20041.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20042.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20045.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20048.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20050.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20055.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20056.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2006.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20062.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20063.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2007.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20071.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2008.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20085.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20086.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20087.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20089.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20090.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20101.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20102.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20103.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20104.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20105.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20106.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20107.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20108.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2011.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20119.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20124.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2013.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20136.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20137.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/20138.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2014.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2015.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2016.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2017.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2019.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2020.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2021.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2022.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2023.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2024.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2025.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2030.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2031.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2032.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2033.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2034.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2036.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2037.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2038.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2039.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2040.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2041.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2042.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2044.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2045.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2046.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2047.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2048.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2049.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2050.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2051.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2052.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2053.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2054.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2055.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2056.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2057.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2058.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2059.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2060.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2061.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2062.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2064.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2066.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2070.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2080.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2081.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2083.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2084.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2092.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2095.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2096.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2097.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2099.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2101.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2103.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2104.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21066.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21067.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21068.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21069.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21070.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21072.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21073.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21076.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21109.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21115.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21116.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21119.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21144.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21148.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2115.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21150.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21155.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21158.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21159.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/21169.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2119.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2131.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2137.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2138.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2139.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2143.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2144.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2145.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2146.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2147.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2148.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2149.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2150.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2151.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2152.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2158.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2159.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2160.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2161.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2162.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2163.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2164.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2165.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2166.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2167.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2169.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2170.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2172.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2175.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2176.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2177.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2178.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2179.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2180.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2181.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2182.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2183.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2184.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2185.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2186.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2187.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2188.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2189.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/2191.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/22056.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/22060.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/22061.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/22067.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/22068.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/22120.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/22121.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/22122.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/22123.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/22178.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/23001.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/23002.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/23003.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/23004.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/23005.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/23006.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/23007.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/23008.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/23009.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/23016.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/23018.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/23031.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/23032.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/24003.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25004.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25005.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25006.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25009.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25010.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25011.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25012.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25013.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25015.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25017.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25020.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25021.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25022.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25023.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25024.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25029.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25030.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25031.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25032.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25033.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25034.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25035.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25036.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25040.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25041.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25042.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25053.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25063.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25069.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25086.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25090.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25093.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25095.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25096.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25097.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25098.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25099.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25110.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25112.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25113.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25120.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25122.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25123.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25124.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25150.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25174.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25181.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25182.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25184.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25185.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25187.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25188.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25190.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/25191.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/26010.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/29001.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/29002.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/3001.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/3003.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/30031.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/30032.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/3004.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/3008.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/3010.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/3011.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/3012.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/3016.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/3017.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/3018.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/3019.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/3020.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/3021.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/3022.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/3023.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/3027.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/3028.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/31021.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/31031.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33002.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33003.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33005.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33006.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33015.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33020.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33021.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33022.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33023.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33024.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33025.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33026.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33027.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33028.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33030.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33031.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33032.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33033.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33035.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33037.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33038.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33039.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33041.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33042.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33043.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33044.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33047.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33048.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33049.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33050.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33055.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33056.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33060.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33066.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33070.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33071.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33072.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33075.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33076.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33077.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33078.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33079.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33080.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33081.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33082.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33083.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33084.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33085.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33086.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33087.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33088.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/33092.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/35000.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/35001.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/35030.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/35031.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/35032.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/35033.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/35034.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/35035.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40005.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40006.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40011.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40012.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40013.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40020.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40023.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40024.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40025.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40028.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40036.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40043.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40045.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40046.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40047.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40048.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40049.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40050.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40051.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40052.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40054.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40055.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40056.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40057.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40068.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/40074.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/4059.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/4080.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/42004.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/5069.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8001.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8002.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8003.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8004.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8005.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8006.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8007.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8008.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8009.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8010.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8011.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8012.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8013.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8014.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8015.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8016.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8017.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8018.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8019.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8021.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8023.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8024.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8025.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8026.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8029.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8032.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8033.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8034.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8035.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8036.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8037.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8038.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8039.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8040.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8041.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8042.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8043.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8050.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8051.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8052.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8053.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8054.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8060.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8065.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8066.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8070.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8072.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8074.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8075.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8076.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8077.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8079.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8080.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8081.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8082.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8083.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8085.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8086.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8087.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8088.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8091.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8092.table create mode 100644 definitions/bufr/tables/0/wmo/35/codetables/8093.table create mode 100644 definitions/bufr/tables/0/wmo/35/element.table create mode 100644 definitions/bufr/tables/0/wmo/35/sequence.def diff --git a/definitions/bufr/tables/0/wmo/35/codetables/1003.table b/definitions/bufr/tables/0/wmo/35/codetables/1003.table new file mode 100644 index 000000000..a0c90ee0f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/1003.table @@ -0,0 +1,8 @@ +0 0 ANTARCTICA +1 1 REGION I +2 2 REGION II +3 3 REGION III +4 4 REGION IV +5 5 REGION V +6 6 REGION VI +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/10063.table b/definitions/bufr/tables/0/wmo/35/codetables/10063.table new file mode 100644 index 000000000..50978740b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/10063.table @@ -0,0 +1,10 @@ +0 0 INCREASING, THEN DECREASING; ATMOSPHERIC PRESSURE THE SAME OR HIGHER THAN THREE HOURS AGO +1 1 INCREASING, THEN STEADY; OR INCREASING, THEN INCREASING MORE SLOWLY +2 2 INCREASING (STEADILY OR UNSTEADILY) +3 3 DECREASING OR STEADY, THEN INCREASING; OR INCREASING, THEN INCREASING MORE RAPIDLY +4 4 STEADY; ATMOSPHERIC PRESSURE THE SAME AS THREE HOURS AGO +5 5 DECREASING, THEN INCREASING; ATMOSPHERIC PRESSURE THE SAME OR LOWER THAN THREE HOURS AGO +6 6 DECREASING, THEN STEADY; OR DECREASING, THEN DECREASING MORE SLOWLY +7 7 DECREASING (STEADILY OR UNSTEADILY) +8 8 STEADY OR INCREASING, THEN DECREASING; OR DECREASING, THEN DECREASING MORE RAPIDLY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/10064.table b/definitions/bufr/tables/0/wmo/35/codetables/10064.table new file mode 100644 index 000000000..88ba38a95 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/10064.table @@ -0,0 +1,4 @@ +0 0 SUBSONIC +1 1 TRANSONIC +2 2 SUPERSONIC +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/1007.table b/definitions/bufr/tables/0/wmo/35/codetables/1007.table new file mode 100644 index 000000000..b41958c35 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/1007.table @@ -0,0 +1,222 @@ +0 0 RESERVED +1 1 ERS 1 +2 2 ERS 2 +3 3 METOP-1 (METOP-B) +4 4 METOP-2 (METOP-A) +5 5 METOP-3 (METOP-C) +20 20 SPOT1 +21 21 SPOT2 +22 22 SPOT3 +23 23 SPOT4 +40 40 OERSTED +41 41 CHAMP +42 42 TERRASAR-X +43 43 TANDEM-X +44 44 PAZ +46 46 SMOS +47 47 CRYOSAT-2 +48 48 AEOLUS +50 50 METEOSAT 3 +51 51 METEOSAT 4 +52 52 METEOSAT 5 +53 53 METEOSAT 6 +54 54 METEOSAT 7 +55 55 METEOSAT 8 +56 56 METEOSAT 9 +57 57 METEOSAT 10 +58 58 METEOSAT 1 +59 59 METEOSAT 2 +60 60 ENVISAT +61 61 SENTINEL 3A +62 62 SENTINEL 1A +63 63 SENTINEL 1B +64 64 SENTINEL 5P +65 65 SENTINEL 3B +66 66 SENTINEL-6A +67 67 SENTINEL-6B +70 70 METEOSAT 11 +120 120 ADEOS +121 121 ADEOS II +122 122 GCOM-W1 +140 140 GOSAT +150 150 GMS 3 +151 151 GMS 4 +152 152 GMS 5 +153 153 GMS +154 154 GMS 2 +171 171 MTSAT-1R +172 172 MTSAT-2 +173 173 HIMAWARI-8 +174 174 HIMAWARI-9 +200 200 NOAA 8 +201 201 NOAA 9 +202 202 NOAA 10 +203 203 NOAA 11 +204 204 NOAA 12 +205 205 NOAA 14 +206 206 NOAA 15 +207 207 NOAA 16 +208 208 NOAA 17 +209 209 NOAA 18 +220 220 LANDSAT 5 +221 221 LANDSAT 4 +222 222 LANDSAT 7 +223 223 NOAA 19 +224 224 NPP +225 225 NOAA 20 +226 226 NOAA 21 +240 240 DMSP 7 +241 241 DMSP 8 +242 242 DMSP 9 +243 243 DMSP 10 +244 244 DMSP 11 +245 245 DMSP 12 +246 246 DMSP 13 +247 247 DMSP 14 +248 248 DMSP 15 +249 249 DMSP 16 +250 250 GOES 6 +251 251 GOES 7 +252 252 GOES 8 +253 253 GOES 9 +254 254 GOES 10 +255 255 GOES 11 +256 256 GOES 12 +257 257 GOES 13 +258 258 GOES 14 +259 259 GOES 15 +260 260 JASON 1 +261 261 JASON 2 +262 262 JASON 3 +265 265 GEOOPTICS CICERO OP1 +266 266 GEOOPTICS CICERO OP2 +267 267 PLANETIQ GNOMES-A +268 268 PLANETIQ GNOMES-B +269 269 SPIRE LEMUR 3U CUBESAT +270 270 GOES 16 +271 271 GOES 17 +272 272 GOES 18 +273 273 GOES 19 +281 281 QUIKSCAT +282 282 TRMM +283 283 CORIOLIS +285 285 DMSP 17 +286 286 DMSP 18 +287 287 DMSP 19 +288 288 GPM-CORE +289 289 ORBITING CARBON OBSERVATORY - 2 (OCO-2, NASA) +310 310 GOMS 1 +311 311 GOMS 2 +320 320 METEOR 2-21 +321 321 METEOR 3-5 +322 322 METEOR 3M-1 +323 323 METEOR 3M-2 +324 324 METEOR-M N2 +325 325 METEOR-M N2 2 +341 341 RESURS 01-4 +410 410 KALPANA-1 +421 421 OCEANSAT-2 +422 422 SCATSAT-1 +423 423 OCEANSAT-3 +430 430 INSAT 1B +431 431 INSAT 1C +432 432 INSAT 1D +440 440 MEGHA-TROPIQUES +441 441 SARAL +450 450 INSAT 2A +451 451 INSAT 2B +452 452 INSAT 2E +470 470 INSAT 3A +471 471 INSAT 3D +472 472 INSAT 3E +473 473 INSAT 3DR +474 474 INSAT 3DS +500 500 FY-1C +501 501 FY-1D +502 502 HAI YANG 2A (HY-2A, SOA/NSOAS CHINA) +503 503 HAI YANG 2B (HY-2B, SOA/NSOAS CHINA) +510 510 FY-2 +512 512 FY-2B +513 513 FY-2C +514 514 FY-2D +515 515 FY-2E +516 516 FY-2F +517 517 FY-2G +518 518 FY-2H +520 520 FY-3A +521 521 FY-3B +522 522 FY-3C +523 523 FY-3D +530 530 FY-4A +700 700 TIROS M (ITOS 1) +701 701 NOAA 1 +702 702 NOAA 2 +703 703 NOAA 3 +704 704 NOAA 4 +705 705 NOAA 5 +706 706 NOAA 6 +707 707 NOAA 7 +708 708 TIROS-N +710 710 GOES (SMS 1) +711 711 GOES (SMS 2) +720 720 TOPEX +721 721 GFO (GEOSAT FOLLOW ON) +722 722 GRACE A +723 723 GRACE B +724 724 COSMIC-2 P1 +725 725 COSMIC-2 P2 +726 726 COSMIC-2 P3 +727 727 COSMIC-2 P4 +728 728 COSMIC-2 P5 +729 729 COSMIC-2 P6 +731 731 GOES 1 +732 732 GOES 2 +733 733 GOES 3 +734 734 GOES 4 +735 735 GOES 5 +740 740 COSMIC-1 +741 741 COSMIC-2 +742 742 COSMIC-3 +743 743 COSMIC-4 +744 744 COSMIC-5 +745 745 COSMIC-6 +750 750 COSMIC-2 E1 +751 751 COSMIC-2 E2 +752 752 COSMIC-2 E3 +753 753 COSMIC-2 E4 +754 754 COSMIC-2 E5 +755 755 COSMIC-2 E6 +763 763 NIMBUS 3 +764 764 NIMBUS 4 +765 765 NIMBUS 5 +766 766 NIMBUS 6 +767 767 NIMBUS 7 +780 780 ERBS +781 781 UARS +782 782 EARTH PROBE +783 783 TERRA +784 784 AQUA +785 785 AURA +786 786 C/NOFS +787 787 CALIPSO +788 788 CLOUDSAT +800 800 SUNSAT +801 801 INTERNATIONAL SPACE STATION (ISS) +802 802 CFOSAT +803 803 GRACE C (GRACE-FO) +804 804 GRACE D (GRACE-FO) +810 810 COMS +811 811 GEO-KOMPSAT-2A +812 812 SCISAT-1 +813 813 ODIN +820 820 SAC-C +821 821 SAC-D +825 825 KOMPSAT-5 +850 850 COMBINATION OF TERRA AND AQUA +851 851 COMBINATION OF NOAA 16 TO NOAA 19 +852 852 COMBINATION OF METOP-1 TO METOP-3 +853 853 COMBINATION OF METEOSAT AND DMSP +854 854 NON-SPECIFIC MIXTURE OF GEOSTATIONARY AND LOW EARTH-ORBITING SATELLITES +855 855 COMBINATION OF INSAT 3D AND INSAT 3DR +856 856 COMBINATION OF SENTINEL-3 SATELLITES +1023 1023 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/1024.table b/definitions/bufr/tables/0/wmo/35/codetables/1024.table new file mode 100644 index 000000000..cdc9e2470 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/1024.table @@ -0,0 +1,9 @@ +0 0 NO WIND SPEED DATA AVAILABLE +1 1 AMSR-E DATA +2 2 TMI DATA +3 3 NWP: ECMWF +4 4 NWP: UK MET OFFICE +5 5 NWP: NCEP +6 6 REFERENCE CLIMATOLOGY +7 7 ERS_SCATTEROMETER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/1028.table b/definitions/bufr/tables/0/wmo/35/codetables/1028.table new file mode 100644 index 000000000..18f82068b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/1028.table @@ -0,0 +1,7 @@ +0 0 NO AOD DATA AVAILABLE +1 1 NESDIS +2 2 NAVOCEANO +3 3 NAAPS +4 4 MERIS +5 5 AATSR +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/1029.table b/definitions/bufr/tables/0/wmo/35/codetables/1029.table new file mode 100644 index 000000000..d63d07ef0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/1029.table @@ -0,0 +1,8 @@ +0 0 NO SSI DATA AVAILABLE +1 1 MSG_SEVIRI +2 2 GOES EAST +3 3 GOES WEST +4 4 ECMWF +5 5 NCEP +6 6 UK MET OFFICE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/1033.table b/definitions/bufr/tables/0/wmo/35/codetables/1033.table new file mode 100644 index 000000000..b448d6d9d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/1033.table @@ -0,0 +1,239 @@ +0 0 WMO SECRETARIAT +1 1 MELBOURNE +2 2 MELBOURNE +3 3 ) +4 4 MOSCOW +5 5 MOSCOW +6 6 ) +7 7 US NATIONAL WEATHER SERVICE - NATIONAL CENTRES FOR ENVIRONMENTAL PREDICTION (NCEP) +8 8 US NATIONAL WEATHER SERVICE TELECOMMUNICATIONS GATEWAY (NWSTG) +9 9 US NATIONAL WEATHER SERVICE - OTHER +10 10 CAIRO (RSMC) +11 11 ) +12 12 DAKAR (RSMC) +13 13 ) +14 14 NAIROBI (RSMC) +15 15 ) +16 16 CASABLANCA (RSMC) +17 17 TUNIS (RSMC) +18 18 TUNIS - CASABLANCA (RSMC) +19 19 ) +20 20 LAS PALMAS +21 21 ALGIERS (RSMC) +22 22 ACMAD +23 23 MOZAMBIQUE (NMC) +24 24 PRETORIA (RSMC) +25 25 LA RéUNION (RSMC) +26 26 KHABAROVSK (RSMC) +27 27 ) +28 28 NEW DELHI (RSMC) +29 29 ) +30 30 NOVOSIBIRSK (RSMC) +31 31 ) +32 32 TASHKENT (RSMC) +33 33 JEDDAH (RSMC) +34 34 TOKYO (RSMC), JAPAN METEOROLOGICAL AGENCY +35 35 ) +36 36 BANGKOK +37 37 ULAANBAATAR +38 38 BEIJING (RSMC) +39 39 ) +40 40 SEOUL +41 41 BUENOS AIRES (RSMC) +42 42 ) +43 43 BRASILIA (RSMC) +44 44 ) +45 45 SANTIAGO +46 46 BRAZILIAN SPACE AGENCY ­ INPE +47 47 COLOMBIA (NMC) +48 48 ECUADOR (NMC) +49 49 PERU (NMC) +50 50 VENEZUELA (BOLIVARIAN REPUBLIC OF) (NMC) +51 51 MIAMI (RSMC) +52 52 MIAMI (RSMC), NATIONAL HURRICANE CENTRE +53 53 MSC MONITORING +54 54 MONTREAL (RSMC) +55 55 SAN FRANCISCO +56 56 ARINC CENTRE +57 57 US AIR FORCE - AIR FORCE GLOBAL WEATHER CENTRAL +58 58 FLEET NUMERICAL METEOROLOGY AND OCEANOGRAPHY CENTER, MONTEREY, CA, UNITED STATES +59 59 THE NOAA FORECAST SYSTEMS LABORATORY, BOULDER, CO, UNITED STATES +60 60 UNITED STATES NATIONAL CENTER FOR ATMOSPHERIC RESEARCH (NCAR) +61 61 SERVICE ARGOS - LANDOVER +62 62 US NAVAL OCEANOGRAPHIC OFFICE +63 63 INTERNATIONAL RESEARCH INSTITUTE FOR CLIMATE AND SOCIETY (IRI) +64 64 HONOLULU (RSMC) +65 65 DARWIN (RSMC) +66 66 ) +67 67 MELBOURNE (RSMC) +68 68 RESERVED +69 69 WELLINGTON (RSMC) +70 70 ) +71 71 NADI (RSMC) +72 72 SINGAPORE +73 73 MALAYSIA (NMC) +74 74 UK METEOROLOGICAL OFFICE ­ EXETER (RSMC) +75 75 ) +76 76 MOSCOW (RSMC) +77 77 RESERVED +78 78 OFFENBACH (RSMC) +79 79 ) +80 80 ROME (RSMC) +81 81 ) +82 82 NORRKöPING +83 83 ) +84 84 TOULOUSE (RSMC) +85 85 TOULOUSE (RSMC) +86 86 HELSINKI +87 87 BELGRADE +88 88 OSLO +89 89 PRAGUE +90 90 EPISKOPI +91 91 ANKARA +92 92 FRANKFURT/MAIN +93 93 LONDON (WAFC) +94 94 COPENHAGEN +95 95 ROTA +96 96 ATHENS +97 97 EUROPEAN SPACE AGENCY (ESA) +98 98 EUROPEAN CENTRE FOR MEDIUM-RANGE WEATHER FORECASTS (ECMWF) (RSMC) +99 99 DE BILT +100 100 BRAZZAVILLE +101 101 ABIDJAN +102 102 LIBYA (NMC) +103 103 MADAGASCAR (NMC) +104 104 MAURITIUS (NMC) +105 105 NIGER (NMC) +106 106 SEYCHELLES (NMC) +107 107 UGANDA (NMC) +108 108 UNITED REPUBLIC OF TANZANIA (NMC) +109 109 ZIMBABWE (NMC) +110 110 HONG-KONG, CHINA +111 111 AFGHANISTAN (NMC) +112 112 BAHRAIN (NMC) +113 113 BANGLADESH (NMC) +114 114 BHUTAN (NMC) +115 115 CAMBODIA (NMC) +116 116 DEMOCRATIC PEOPLE'S REPUBLIC OF KOREA (NMC) +117 117 ISLAMIC REPUBLIC OF IRAN (NMC) +118 118 IRAQ (NMC) +119 119 KAZAKHSTAN (NMC) +120 120 KUWAIT (NMC) +121 121 KYRGYZSTAN (NMC) +122 122 LAO PEOPLE'S DEMOCRATIC REPUBLIC (NMC) +123 123 MACAO, CHINA +124 124 MALDIVES (NMC) +125 125 MYANMAR (NMC) +126 126 NEPAL (NMC) +127 127 OMAN (NMC) +128 128 PAKISTAN (NMC) +129 129 QATAR (NMC) +130 130 YEMEN (NMC) +131 131 SRI LANKA (NMC) +132 132 TAJIKISTAN (NMC) +133 133 TURKMENISTAN (NMC) +134 134 UNITED ARAB EMIRATES (NMC) +135 135 UZBEKISTAN (NMC) +136 136 VIET NAM (NMC) +140 140 BOLIVIA (PLURINATIONAL STATE OF) (NMC) +141 141 GUYANA (NMC) +142 142 PARAGUAY (NMC) +143 143 SURINAME (NMC) +144 144 URUGUAY (NMC) +145 145 FRENCH GUIANA +146 146 BRAZILIAN NAVY HYDROGRAPHIC CENTRE +147 147 NATIONAL COMMISSION ON SPACE ACTIVITIES (CONAE) - ARGENTINA +148 148 BRAZILIAN DEPARTMENT OF AIRSPACE CONTROL - DECEA +149 149 RESERVED FOR OTHER CENTRES +150 150 ANTIGUA AND BARBUDA (NMC) +151 151 BAHAMAS (NMC) +152 152 BARBADOS (NMC) +153 153 BELIZE (NMC) +154 154 BRITISH CARIBBEAN TERRITORIES CENTRE +155 155 SAN JOSé +156 156 CUBA (NMC) +157 157 DOMINICA (NMC) +158 158 DOMINICAN REPUBLIC (NMC) +159 159 EL SALVADOR (NMC) +160 160 US NOAA/NESDIS +161 161 US NOAA OFFICE OF OCEANIC AND ATMOSPHERIC RESEARCH +162 162 GUATEMALA (NMC) +163 163 HAITI (NMC) +164 164 HONDURAS (NMC) +165 165 JAMAICA (NMC) +166 166 MEXICO CITY +167 167 CURAçAO AND SINT MAARTEN (NMC) +168 168 NICARAGUA (NMC) +169 169 PANAMA (NMC) +170 170 SAINT LUCIA (NMC) +171 171 TRINIDAD AND TOBAGO (NMC) +172 172 FRENCH DEPARTMENTS IN RA IV +173 173 US NATIONAL AERONAUTICS AND SPACE ADMINISTRATION (NASA) +174 174 INTEGRATED SCIENCE DATA MANAGEMENT/MARINE ENVIRONMENTAL DATA SERVICE (ISDM/MEDS) - CANADA +175 175 UNIVERSITY CORPORATION FOR ATMOSPHERIC RESEARCH (UCAR) - UNITED STATES +176 176 COOPERATIVE INSTITUTE FOR METEOROLOGICAL SATELLITE STUDIES (CIMSS) - UNITED STATES +177 177 NOAA NATIONAL OCEAN SERVICE - UNITED STATES +178 178 SPIRE GLOBAL, INC. +179 179 GEOOPTICS, INC. +180 180 PLANETIQ +190 190 COOK ISLANDS (NMC) +191 191 FRENCH POLYNESIA (NMC) +192 192 TONGA (NMC) +193 193 VANUATU (NMC) +194 194 BRUNEI DARUSSALAM (NMC) +195 195 INDONESIA (NMC) +196 196 KIRIBATI (NMC) +197 197 FEDERATED STATES OF MICRONESIA (NMC) +198 198 NEW CALEDONIA (NMC) +199 199 NIUE +200 200 PAPUA NEW GUINEA (NMC) +201 201 PHILIPPINES (NMC) +202 202 SAMOA (NMC) +203 203 SOLOMON ISLANDS (NMC) +204 204 NATIONAL INSTITUTE OF WATER AND ATMOSPHERIC RESEARCH (NIWA - NEW ZEALAND) +210 210 FRASCATI (ESA/ESRIN) +211 211 LANNION +212 212 LISBON +213 213 REYKJAVIK +214 214 MADRID +215 215 ZURICH +216 216 SERVICE ARGOS - TOULOUSE +217 217 BRATISLAVA +218 218 BUDAPEST +219 219 LJUBLJANA +220 220 WARSAW +221 221 ZAGREB +222 222 ALBANIA (NMC) +223 223 ARMENIA (NMC) +224 224 AUSTRIA (NMC) +225 225 AZERBAIJAN (NMC) +226 226 BELARUS (NMC) +227 227 BELGIUM (NMC) +228 228 BOSNIA AND HERZEGOVINA (NMC) +229 229 BULGARIA (NMC) +230 230 CYPRUS (NMC) +231 231 ESTONIA (NMC) +232 232 GEORGIA (NMC) +233 233 DUBLIN +234 234 ISRAEL (NMC) +235 235 JORDAN (NMC) +236 236 LATVIA (NMC) +237 237 LEBANON (NMC) +238 238 LITHUANIA (NMC) +239 239 LUXEMBOURG +240 240 MALTA (NMC) +241 241 MONACO +242 242 ROMANIA (NMC) +243 243 SYRIAN ARAB REPUBLIC (NMC) +244 244 THE FORMER YUGOSLAV REPUBLIC OF MACEDONIA (NMC) +245 245 UKRAINE (NMC) +246 246 REPUBLIC OF MOLDOVA (NMC) +247 247 OPERATIONAL PROGRAMME FOR THE EXCHANGE OF WEATHER RADAR INFORMATION (OPERA) - EUMETNET +248 248 MONTENEGRO (NMC) +249 249 BARCELONA DUST FORECAST CENTER +250 250 CONSORTIUM FOR SMALL SCALE MODELLING (COSMO) +251 251 METEOROLOGICAL COOPERATION ON OPERATIONAL NWP (METCOOP) +252 252 MAX PLANCK INSTITUTE FOR METEOROLOGY (MPI-M) +253 253 RESERVED FOR OTHER CENTRES +254 254 EUMETSAT OPERATION CENTRE +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/1034.table b/definitions/bufr/tables/0/wmo/35/codetables/1034.table new file mode 100644 index 000000000..fab134d61 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/1034.table @@ -0,0 +1,104 @@ +0 0 NO SUB-CENTRE +1 1 LUXEMBOURG (NMC) +2 2 FUCINO +3 3 GATINEAU +4 4 MASPALOMAS (SPAIN) +5 5 ESA ERS CENTRAL FACILITY +6 6 PRINCE ALBERT +7 7 WEST FREUGH +8 8 LANGLEY RESEARCH CENTER +9 9 MARSHALL SPACE FLIGHT CENTER +10 10 TROMSO (NORWAY) +11 11 MCMURDO (ANTARCTICA) +12 12 SODANKYLA (FINLAND) +13 13 TROMSO +14 14 BARROW (UNITED STATES) +15 15 ROTHERA (ANTARCTICA) +16 16 SPACE WEATHER PREDICTION CENTER +17 17 ESRL GLOBAL SYSTEMS DIVISION +18 18 SIPAM-PORTO VELHO-RO +19 19 SIPAM-BELéM-PA +20 20 MASPALOMAS (SPAIN) +21 21 AGENZIA SPAZIALE ITALIANA (ITALY) +22 22 CENTRE NATIONAL DE LA RECHERCHE SCIENTIFIQUE (FRANCE) +23 23 GEOFORSCHUNGS ZENTRUM (GERMANY) +24 24 GEODETIC OBSERVATORY PECNY (CZECHIA) +25 25 INSTITUT D'ESTUDIS ESPACIALS DE CATALUNYA (SPAIN) +26 26 FEDERAL OFFICE OF TOPOGRAPHY (SWITZERLAND) +27 27 NORDIC COMMISSION OF GEODESY (NORWAY) +28 28 NORDIC COMMISSION OF GEODESY (SWEDEN) +29 29 INSTITUTE GéOGRAPHIQUE NATIONAL (FRANCE) - SERVICE DE GéODéSIE +30 30 KANGERLUSSUAQ (GREENLAND) +31 31 INSTITUTE OF ENGINEERING SATELLITE SURVEYING AND GEODESY (UNITED KINGDOM) +32 32 JOINT OPERATIONAL METEOROLOGY AND OCEANOGRAPHY CENTRE (JOMOC) +33 33 KONINKLIJK NEDERLANDS METEOROLOGISCH INSTITUT (NETHERLANDS) +34 34 NORDIC GPS ATMOSPHERIC ANALYSIS CENTRE (SWEDEN) +35 35 INSTITUTO GEOGRAFICO NACIONAL DE ESPAñA (SPAIN) +36 36 MET ÉIREANN (IRELAND) +37 37 ROYAL OBSERVATORY OF BELGIUM (BELGIUM) +40 40 EDMONTON (CANADA) +50 50 BEDFORD (CANADA) +60 60 GANDER (CANADA) +64 64 BUNDESWEHR GEOINFORMATION OFFICE (BGIO) +70 70 MONTEREY (UNITED STATES) +76 76 ROSHYDROMET (RUSSIAN FEDERATION) +78 78 DEUTSCHER WETTERDIENST (GERMANY) +80 80 WALLOPS ISLAND (UNITED STATES) +90 90 GILMOR CREEK (UNITED STATES) +96 96 HELLENIC NATIONAL METEOROLOGICAL SERVICE (GREECE) +100 100 ATHENS (GREECE) +101 101 ALBANIA (NMC) +102 102 NATIONAL RESEARCH COUNCIL/INSTITUTE OF ATMOSPHERIC SCIENCES AND CLIMATE (CNR-ISAC) +110 110 NOWCAST MOBILE (LIGHTNING DATA) +120 120 EWA BEACH, HAWAII +125 125 FORD ISLAND, HAWAII +130 130 MIAMI, FLORIDA +140 140 LANNION (FRANCE) +150 150 SVALBARD (NORWAY) +170 170 ST DENIS (LA RéUNION) +180 180 MOSCOW +190 190 MUSCAT +200 200 KHABAROVSK +201 201 RHEINISCHES INSTITUT FüR UMWELTFORSCHUNG AN DER UNIVERSITäT ZU KöLN E.V. (GERMANY) +202 202 INSTITUT FRANçAIS DE RECHERCHE POUR L'EXPLOITATION DE LA MER +203 203 AARHUS UNIVERSITY (DENMARK) +204 204 INSTITUTE OF ENVIRONMENTAL PROTECTION - NATIONAL RESEARCH INSTITUTE (POLAND) +205 205 NIUE +206 206 RAROTONGA (COOK ISLANDS) +207 207 APIA (SAMOA) +208 208 TONGA +209 209 TUVALU +210 210 NOVOSIBIRSK +211 211 TOKELAU +214 214 DARWIN +215 215 METEOSWISS (SWITZERLAND) +217 217 PERTH +219 219 TOWNSVILLE +220 220 INSTITUTE OF METEOROLOGY AND WATER MANAGEMENT (POLAND) +221 221 SCHLESWIG-HOLSTEIN, TRAFFIC OPERATIONS COMPUTING CENTRE (TOCC) KIEL/NEUMüNSTER +222 222 HAMBURG, TOCC HAMBURG +223 223 NIEDERSACHSEN, TOCC HANNOVER +224 224 AUSTRIA (NMC) +225 225 NORDRHEIN-WESTFALEN, TOCC KAMEN LEVERKUSEN +226 226 HESSEN, TOCC RüSSELSHEIM +227 227 RHEINLAND-PFALZ, TOCC KOBLENZ +228 228 BADEN-WüRTTEMBERG, TOCC LUDWIGSBURG +229 229 BAYERN, TOCC FREIMANN +230 230 SAARLAND, TOCC ROHRBACH +231 231 BAYERN, AUTOBAHN DIRECTORATE NORDBAYERN +232 232 BRANDENBURG, TOCC STOLPE +233 233 MECKLENBURG-VORPOMMERN, TOCC MALCHOW +234 234 SACHSEN, TOCC DRESDEN +235 235 SACHSEN-ANHALT, TOCC HALLE +236 236 THüRINGEN, TOCC ERFURT +237 237 EASYWAY - METEOTRANS +240 240 KIYOSE +241 241 REANALYSIS PROJECT +242 242 NATIONAL METEOROLOGICAL ADMINISTRATION (ROMANIA) +243 243 KELBURN +245 245 JINCHEON +249 249 SINGAPORE +250 250 VLADIVOSTOCK +251 251 GUAM +252 252 HONOLULU +254 254 EUMETSAT diff --git a/definitions/bufr/tables/0/wmo/35/codetables/1036.table b/definitions/bufr/tables/0/wmo/35/codetables/1036.table new file mode 100644 index 000000000..e7e4045e3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/1036.table @@ -0,0 +1,38 @@ +36001 36001 AUSTRALIA, BUREAU OF METEOROLOGY (BOM) +36002 36002 AUSTRALIA, JOINT AUSTRALIAN FACILITY FOR OCEAN OBSERVING SYSTEMS (JAFOOS) +36003 36003 AUSTRALIA, THE COMMONWEALTH SCIENTIFIC AND INDUSTRIAL RESEARCH ORGANIZATION (CSIRO) +124001 124001 CANADA, MARINE ENVIRONMENTAL DATA SERVICE (MEDS) +124002 124002 CANADA, INSTITUTE OF OCEAN SCIENCES (IOS) +124173 124173 CANADA, ENVIRONMENT CANADA +124174 124174 CANADA, DEPARTMENT OF NATIONAL DEFENCE +124175 124175 CANADA, NAV CANADA +156001 156001 CHINA, THE STATE OCEANIC ADMINISTRATION +156002 156002 CHINA, SECOND INSTITUTE OF OCEANOGRAPHY, STATE OCEANIC ADMINISTRATION +156003 156003 CHINA, INSTITUTE OF OCEAN TECHNOLOGY +250001 250001 FRANCE, INSTITUT DE RECHERCHE POUR LE DéVELOPPEMENT (IRD) +250002 250002 FRANCE, INSTITUT FRANçAIS DE RECHERCHE POUR L'EXPLOITATION DE LA MER (IFREMER) +276001 276001 GERMANY, BUNDESAMT FUER SEESCHIFFAHRT UND HYDROGRAPHIE (BSH) +276002 276002 GERMANY, INSTITUT FUER MEERESKUNDE, KIEL +356001 356001 INDIA, NATIONAL INSTITUTE OF OCEANOGRAPHY (NIO) +356002 356002 INDIA, NATIONAL INSTITUTE FOR OCEAN TECHNOLOGY (NIOT) +356003 356003 INDIA, NATIONAL CENTRE FOR OCEAN INFORMATION SERVICE +392001 392001 JAPAN, JAPAN METEOROLOGICAL AGENCY (JMA) +392002 392002 JAPAN, FRONTIER OBSERVATIONAL RESEARCH SYSTEM FOR GLOBAL CHANGE +392003 392003 JAPAN, JAPAN MARINE SCIENCE AND TECHNOLOGY CENTRE (JAMSTEC) +410001 410001 REPUBLIC OF KOREA, SEOUL NATIONAL UNIVERSITY +410002 410002 REPUBLIC OF KOREA, KOREA OCEAN RESEARCH AND DEVELOPMENT INSTITUTE (KORDI) +410003 410003 REPUBLIC OF KOREA, METEOROLOGICAL RESEARCH INSTITUTE +540001 540001 NEW CALEDONIA, INSTITUT DE RECHERCHE POUR LE DéVELOPPEMENT (IRD) +554001 554001 NEW ZEALAND, NATIONAL INSTITUTE OF WATER AND ATMOSPHERIC RESEARCH (NIWA) +643001 643001 RUSSIAN FEDERATION, STATE OCEANOGRAPHIC INSTITUTE OF ROSHYDROMET +643002 643002 RUSSIAN FEDERATION, FEDERAL SERVICE FOR HYDROMETEOROLOGY AND ENVIRONMENTAL MONITORING +724001 724001 SPAIN, INSTITUTO ESPAñOL DE OCEANOGRAFIA +826001 826001 UNITED KINGDOM, HYDROGRAPHIC OFFICE +826002 826002 UNITED KINGDOM, SOUTHAMPTON OCEANOGRAPHY CENTRE (SOC) +840001 840001 USA, NOAA ATLANTIC OCEANOGRAPHIC AND METEOROLOGICAL LABORATORIES (AOML) +840002 840002 USA, NOAA PACIFIC MARINE ENVIRONMENTAL LABORATORIES (PMEL) +840003 840003 USA, SCRIPPS INSTITUTION OF OCEANOGRAPHY (SIO) +840004 840004 USA, WOODS HOLE OCEANOGRAPHIC INSTITUTION (WHOI) +840005 840005 USA, UNIVERSITY OF WASHINGTON +840006 840006 USA, NAVAL OCEANOGRAPHIC OFFICE +1048575 1048575 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/1038.table b/definitions/bufr/tables/0/wmo/35/codetables/1038.table new file mode 100644 index 000000000..2eee38baf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/1038.table @@ -0,0 +1,7 @@ +0 0 NO SEA ICE SET +1 1 NSIDC SSM/I CAVALIERI ET AL (1992) +2 2 AMSR-E +3 3 ECMWF +4 4 CMS (FRANCE) CLOUD MASK USED BY MEDSPIRATION +5 5 EUMETSAT OSI-SAF +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/1044.table b/definitions/bufr/tables/0/wmo/35/codetables/1044.table new file mode 100644 index 000000000..c419e8307 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/1044.table @@ -0,0 +1,9 @@ +0 0 RESERVED +1 1 FULL WEIGHTED MIXTURE OF INDIVIDUAL QUALITY TESTS +2 2 WEIGHTED MIXTURE OF INDIVIDUAL TESTS, BUT EXCLUDING FORECAST COMPARISON +3 3 RECURSIVE FILTER FUNCTION +4 4 COMMON QUALITY INDEX (QI) WITHOUT FORECAST +5 5 QI WITHOUT FORECAST +6 6 QI WITH FORECAST +7 7 ESTIMATED ERROR IN M/S CONVERTED TO A PERCENT CONFIDENCE +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/1052.table b/definitions/bufr/tables/0/wmo/35/codetables/1052.table new file mode 100644 index 000000000..b8e14ed0f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/1052.table @@ -0,0 +1,4 @@ +0 0 PRIMARY +1 1 SECONDARY +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/1090.table b/definitions/bufr/tables/0/wmo/35/codetables/1090.table new file mode 100644 index 000000000..55f7ca25d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/1090.table @@ -0,0 +1,5 @@ +0 0 LAGGED-AVERAGE FORECASTING (LAF) +1 1 BREEDING +2 2 SINGULAR VECTORS +3 3 MULTIPLE ANALYSIS CYCLES +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/1092.table b/definitions/bufr/tables/0/wmo/35/codetables/1092.table new file mode 100644 index 000000000..ce982034d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/1092.table @@ -0,0 +1,6 @@ +0 0 UNPERTURBED HIGH-RESOLUTION CONTROL FORECAST +1 1 UNPERTURBED LOW-RESOLUTION CONTROL FORECAST +2 2 NEGATIVELY PERTURBED FORECAST +3 3 POSITIVELY PERTURBED FORECAST +4 4 PERTURBED FORECAST +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/1101.table b/definitions/bufr/tables/0/wmo/35/codetables/1101.table new file mode 100644 index 000000000..b5792ddac --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/1101.table @@ -0,0 +1,202 @@ +100 100 ALGERIA +101 101 ANGOLA +102 102 BENIN +103 103 BOTSWANA +104 104 BURKINA FASO +105 105 BURUNDI +106 106 CAMEROON +107 107 CABO VERDE +108 108 CENTRAL AFRICAN REPUBLIC +109 109 CHAD +110 110 COMOROS +111 111 CONGO +112 112 CôTE D'IVOIRE +113 113 DEMOCRATIC REPUBLIC OF THE CONGO +114 114 DJIBOUTI +115 115 EGYPT +116 116 ERITREA +117 117 ETHIOPIA +118 118 FRANCE (RA I) +119 119 GABON +120 120 GAMBIA +121 121 GHANA +122 122 GUINEA +123 123 GUINEA-BISSAU +124 124 KENYA +125 125 LESOTHO +126 126 LIBERIA +127 127 LIBYA +128 128 MADAGASCAR +129 129 MALAWI +130 130 MALI +131 131 MAURITANIA +132 132 MAURITIUS +133 133 MOROCCO +134 134 MOZAMBIQUE +135 135 NAMIBIA +136 136 NIGER +137 137 NIGERIA +138 138 PORTUGAL (RA I) +139 139 RWANDA +140 140 SAO TOME AND PRINCIPE +141 141 SENEGAL +142 142 SEYCHELLES +143 143 SIERRA LEONE +144 144 SOMALIA +145 145 SOUTH AFRICA +146 146 SPAIN (RA I) +147 147 SUDAN +148 148 ESWATINI +149 149 TOGO +150 150 TUNISIA +151 151 UGANDA +152 152 UNITED KINGDOM OF GREAT BRITAIN AND NORTHERN IRELAND (RA I) +153 153 UNITED REPUBLIC OF TANZANIA +154 154 ZAMBIA +155 155 ZIMBABWE +200 200 AFGHANISTAN +201 201 BAHRAIN +202 202 BANGLADESH +203 203 BHUTAN +204 204 CAMBODIA +205 205 CHINA +206 206 DEMOCRATIC PEOPLE'S REPUBLIC OF KOREA +207 207 HONG KONG, CHINA +208 208 INDIA +209 209 IRAN, ISLAMIC REPUBLIC OF +210 210 IRAQ +211 211 JAPAN +212 212 KAZAKHSTAN +213 213 KUWAIT +214 214 KYRGYZSTAN +215 215 LAO PEOPLE'S DEMOCRATIC REPUBLIC +216 216 MACAO, CHINA +217 217 MALDIVES +218 218 MONGOLIA +219 219 MYANMAR +220 220 NEPAL +221 221 OMAN +222 222 PAKISTAN +223 223 QATAR +224 224 REPUBLIC OF KOREA +225 225 YEMEN +226 226 RUSSIAN FEDERATION (RA II) +227 227 SAUDI ARABIA +228 228 SRI LANKA +229 229 TAJIKISTAN +230 230 THAILAND +231 231 TURKMENISTAN +232 232 UNITED ARAB EMIRATES +233 233 UZBEKISTAN +234 234 VIET NAM +300 300 ARGENTINA +301 301 BOLIVIA (PLURINATIONAL STATE OF) +302 302 BRAZIL +303 303 CHILE +304 304 COLOMBIA +305 305 ECUADOR +306 306 FRANCE (RA III) +307 307 GUYANA +308 308 PARAGUAY +309 309 PERU +310 310 SURINAME +311 311 URUGUAY +312 312 VENEZUELA (BOLIVARIAN REPUBLIC OF) +400 400 ANTIGUA AND BARBUDA +401 401 BAHAMAS +402 402 BARBADOS +403 403 BELIZE +404 404 BRITISH CARIBBEAN TERRITORIES +405 405 CANADA +406 406 COLOMBIA +407 407 COSTA RICA +408 408 CUBA +409 409 DOMINICA +410 410 DOMINICAN REPUBLIC +411 411 EL SALVADOR +412 412 FRANCE (RA IV) +413 413 GUATEMALA +414 414 HAITI +415 415 HONDURAS +416 416 JAMAICA +417 417 MEXICO +418 418 CURAçAO AND SINT MAARTEN +419 419 NICARAGUA +420 420 PANAMA +421 421 SAINT LUCIA +422 422 TRINIDAD AND TOBAGO +423 423 UNITED KINGDOM OF GREAT BRITAIN AND NORTHERN IRELAND (RA IV) +424 424 UNITED STATES OF AMERICA (RA IV) +425 425 VENEZUELA (BOLIVARIAN REPUBLIC OF) +500 500 AUSTRALIA +501 501 BRUNEI DARUSSALAM +502 502 COOK ISLANDS +503 503 FIJI +504 504 FRENCH POLYNESIA +505 505 INDONESIA +506 506 KIRIBATI +507 507 MALAYSIA +508 508 MICRONESIA, FEDERATED STATES OF +509 509 NEW CALEDONIA +510 510 NEW ZEALAND +511 511 NIUE +512 512 PAPUA NEW GUINEA +513 513 PHILIPPINES +514 514 SAMOA +515 515 SINGAPORE +516 516 SOLOMON ISLANDS +517 517 TONGA +518 518 UNITED KINGDOM OF GREAT BRITAIN AND NORTHERN IRELAND (RA V) +519 519 UNITED STATES OF AMERICA (RA V) +520 520 VANUATU +600 600 ALBANIA +601 601 ARMENIA +602 602 AUSTRIA +603 603 AZERBAIJAN +604 604 BELARUS +605 605 BELGIUM +606 606 BOSNIA AND HERZEGOVINA +607 607 BULGARIA +608 608 CROATIA +609 609 CYPRUS +610 610 CZECHIA +611 611 DENMARK +612 612 ESTONIA +613 613 FINLAND +614 614 FRANCE (RA VI) +615 615 GEORGIA +616 616 GERMANY +617 617 GREECE +618 618 HUNGARY +619 619 ICELAND +620 620 IRELAND +621 621 ISRAEL +622 622 ITALY +623 623 JORDAN +624 624 KAZAKHSTAN +625 625 LATVIA +626 626 LEBANON +627 627 LITHUANIA +628 628 LUXEMBOURG +629 629 MALTA +630 630 MONACO +631 631 MONTENEGRO +632 632 NETHERLANDS +633 633 NORWAY +634 634 POLAND +635 635 PORTUGAL (RA VI) +636 636 REPUBLIC OF MOLDOVA +637 637 ROMANIA +638 638 RUSSIAN FEDERATION (RA VI) +639 639 SERBIA +640 640 SLOVAKIA +641 641 SLOVENIA +642 642 SPAIN (RA VI) +643 643 SWEDEN +644 644 SWITZERLAND +645 645 SYRIAN ARAB REPUBLIC +646 646 THE FORMER YUGOSLAV REPUBLIC OF MACEDONIA +647 647 TURKEY +648 648 UKRAINE +649 649 UNITED KINGDOM OF GREAT BRITAIN AND NORTHERN IRELAND (RA VI) +1023 1023 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/11030.table b/definitions/bufr/tables/0/wmo/35/codetables/11030.table new file mode 100644 index 000000000..253b8fccc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/11030.table @@ -0,0 +1,25 @@ +0 0 NIL +1 1 LIGHT +2 2 MODERATE +3 3 SEVERE +4 4 NIL +5 5 LIGHT +6 6 MODERATE +7 7 SEVERE +8 8 NIL +9 9 LIGHT +10 10 MODERATE +11 11 SEVERE +12 12 EXTREME, IN CLEAR AIR +13 13 EXTREME, IN CLOUD +14 14 EXTREME, CLOUD/CLEAR AIR NOT SPECIFIED +15 15 LIGHT, ISOLATED MODERATE +16 16 LIGHT, OCCASIONAL MODERATE +17 17 LIGHT, FREQUENTLY MODERATE +18 18 MODERATE, ISOLATED SEVERE +19 19 MODERATE, OCCASIONAL SEVERE +20 20 MODERATE, FREQUENTLY SEVERE +21 21 SEVERE, ISOLATED EXTREME +22 22 SEVERE, OCCASIONAL EXTREME +23 23 SEVERE, FREQUENTLY EXTREME +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/11031.table b/definitions/bufr/tables/0/wmo/35/codetables/11031.table new file mode 100644 index 000000000..7bece1c85 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/11031.table @@ -0,0 +1,16 @@ +0 0 NIL +1 1 LIGHT +2 2 MODERATE +3 3 SEVERE +4 4 NIL +5 5 LIGHT +6 6 MODERATE +7 7 SEVERE +8 8 NIL +9 9 LIGHT +10 10 MODERATE +11 11 SEVERE +12 12 EXTREME, IN CLEAR AIR +13 13 EXTREME, IN CLOUD +14 14 EXTREME, CLOUD/CLEAR AIR NOT SPECIFIED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/11037.table b/definitions/bufr/tables/0/wmo/35/codetables/11037.table new file mode 100644 index 000000000..e25c9da63 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/11037.table @@ -0,0 +1,30 @@ +0 0 AVE < 0.1 +1 1 AVE < 0.1 +2 2 0.1 =< AVE < 0.2 +3 3 AVE <0.1 +4 4 0.1 =< AVE < 0.2 +5 5 0.2 =< AVE < 0.3 +6 6 AVE < 0.1 +7 7 0.1 =< AVE < 0.2 +8 8 0.2 =< AVE < 0.3 +9 9 0.3 =< AVE < 0.4 +10 10 AVE < 0.1 +11 11 0.1 =< AVE < 0.2 +12 12 0.2 =< AVE < 0.3 +13 13 0.3 =< AVE < 0.4 +14 14 0.4 =< AVE < 0.5 +15 15 AVE < 0.1 +16 16 0.1 =< AVE < 0.2 +17 17 0.2 =< AVE < 0.3 +18 18 0.3 =< AVE < 0.4 +19 19 0.4 =< AVE < 0.5 +20 20 0.5 =< AVE < 0.8 +21 21 AVE < 0.1 +22 22 0.1 =< AVE < 0.2 +23 23 0.2 =< AVE < 0.3 +24 24 0.3 =< AVE < 0.4 +25 25 0.4 =< AVE < 0.5 +26 26 0.5 =< AVE < 0.8 +27 27 0.8 =< AVE +28 28 NIL +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/11038.table b/definitions/bufr/tables/0/wmo/35/codetables/11038.table new file mode 100644 index 000000000..68876b0b6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/11038.table @@ -0,0 +1,17 @@ +0 0 MIN < 1 +1 1 1 =< MIN < 2 +2 2 2 =< MIN < 3 +3 3 3 =< MIN < 4 +4 4 4 =< MIN < 5 +5 5 5 =< MIN < 6 +6 6 6 =< MIN < 7 +7 7 7 =< MIN < 8 +8 8 8 =< MIN < 9 +9 9 9 =< MIN < 10 +10 10 10 =< MIN < 11 +11 11 11 =< MIN < 12 +12 12 12 =< MIN < 13 +13 13 13 =< MIN < 14 +14 14 14 =< MIN < 15 +15 15 NO TIMING INFORMATION AVAILABLE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/11039.table b/definitions/bufr/tables/0/wmo/35/codetables/11039.table new file mode 100644 index 000000000..e5af0f23b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/11039.table @@ -0,0 +1,17 @@ +0 0 MIN < 1 +1 1 1 =< MIN < 2 +2 2 2 =< MIN < 3 +3 3 3 =< MIN < 4 +4 4 4 =< MIN < 5 +5 5 5 =< MIN < 6 +6 6 6 =< MIN < 7 +7 7 7 =< MIN < 8 +8 8 8 =< MIN < 9 +9 9 9 =< MIN < 10 +10 10 10 =< MIN < 11 +11 11 11 =< MIN < 12 +12 12 12 =< MIN < 13 +13 13 13 =< MIN < 14 +14 14 14 =< MIN < 15 +60 60 NO TIMING INFORMATION AVAILABLE +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/1150.table b/definitions/bufr/tables/0/wmo/35/codetables/1150.table new file mode 100644 index 000000000..d0923b6c2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/1150.table @@ -0,0 +1,6 @@ +0 0 WGS84, AS USED BY ICAO SINCE 1998 +1 1 ETRS89, AS DEFINED BY EPSG:4258 +2 2 NAD83, AS DEFINED BY EPSG:4269 +3 3 DHDN, AS DEFINED BY EPSG:4314 +4 4 ELLIPSOIDAL DATUM USING THE INTERNATIONAL REFERENCE MERIDIAN AND THE INTERNATIONAL REFERENCE POLE AS THE PRIME MERIDIAN AND PRIME POLE, RESPECTIVELY, AND THE ORIGIN OF THE INTERNATIONAL TERRESTRIAL REFERENCE SYSTEM (ITRS) (SEE NOTE 2). THE INTERNATIONAL REFERENCE MERIDIAN, INTERNATIONAL REFERENCE POLE AND ITRS ARE MAINTAINED BY THE INTERNATIONAL EARTH ROTATION AND REFERENCE SYSTEMS SERVICE (IERS) +65535 65535 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/1151.table b/definitions/bufr/tables/0/wmo/35/codetables/1151.table new file mode 100644 index 000000000..8907f2371 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/1151.table @@ -0,0 +1,3 @@ +0 0 EARTH GRAVITATIONAL MODEL 1996 +1 1 BALTIC HEIGHT SYSTEM 1977 +4095 4095 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/13038.table b/definitions/bufr/tables/0/wmo/35/codetables/13038.table new file mode 100644 index 000000000..19bc42216 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/13038.table @@ -0,0 +1,4 @@ +0 0 NOT SUPERADIABATIC +1 1 SUPERADIABATIC +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/13039.table b/definitions/bufr/tables/0/wmo/35/codetables/13039.table new file mode 100644 index 000000000..c070b1da9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/13039.table @@ -0,0 +1,3 @@ +0 0 SEA ICE +1 1 SNOW ON LAND +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/13040.table b/definitions/bufr/tables/0/wmo/35/codetables/13040.table new file mode 100644 index 000000000..30cccb03b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/13040.table @@ -0,0 +1,13 @@ +0 0 LAND +1 1 RESERVED +2 2 NEAR COAST +3 3 ICE +4 4 POSSIBLE ICE +5 5 OCEAN +6 6 COAST +7 7 INLAND WATER +8 8 SNOW COVER +9 9 SEA ICE +10 10 STANDING WATER +11 11 SNOW +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/13041.table b/definitions/bufr/tables/0/wmo/35/codetables/13041.table new file mode 100644 index 000000000..9e77b6466 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/13041.table @@ -0,0 +1,10 @@ +1 1 A +2 2 A - B +3 3 B +4 4 B - C +5 5 C +6 6 D +7 7 E +8 8 F +9 9 G +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/13051.table b/definitions/bufr/tables/0/wmo/35/codetables/13051.table new file mode 100644 index 000000000..4bdb73e71 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/13051.table @@ -0,0 +1,8 @@ +0 0 SMALLER THAN ANY VALUE IN THE 30-YEAR PERIOD +1 1 IN THE FIRST QUINTILE +2 2 IN THE SECOND QUINTILE +3 3 IN THE THIRD QUINTILE +4 4 IN THE FOURTH QUINTILE +5 5 IN THE FIFTH QUINTILE +6 6 GREATER THAN ANY VALUE IN THE 30-YEAR PERIOD +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/13056.table b/definitions/bufr/tables/0/wmo/35/codetables/13056.table new file mode 100644 index 000000000..448c26927 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/13056.table @@ -0,0 +1,11 @@ +0 0 NO PRECIPITATION +1 1 LIGHT INTERMITTENT +2 2 MODERATE INTERMITTENT +3 3 HEAVY INTERMITTENT +4 4 VERY HEAVY INTERMITTENT +5 5 LIGHT CONTINUOUS +6 6 MODERATE CONTINUOUS +7 7 HEAVY CONTINUOUS +8 8 VERY HEAVY CONTINUOUS +9 9 VARIABLE - ALTERNATIVELY LIGHT AND HEAVY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/13057.table b/definitions/bufr/tables/0/wmo/35/codetables/13057.table new file mode 100644 index 000000000..6dfa18dd0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/13057.table @@ -0,0 +1,11 @@ +0 0 NO PRECIPITATION +1 1 WITHIN THE LAST HOUR +2 2 1 TO 2 HOURS AGO +3 3 2 TO 3 HOURS AGO +4 4 3 TO 4 HOURS AGO +5 5 4 TO 5 HOURS AGO +6 6 5 TO 6 HOURS AGO +7 7 6 TO 8 HOURS AGO +8 8 8 TO 10 HOURS AGO +9 9 MORE THAN 10 HOURS AGO +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/15025.table b/definitions/bufr/tables/0/wmo/35/codetables/15025.table new file mode 100644 index 000000000..6bb6ed508 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/15025.table @@ -0,0 +1,4 @@ +0 0 OZONE +11 11 FINE PARTICULATE MATTER (DIAMETER < 2.5 MICRONS) +12 12 FINE PARTICULATE MATTER (DIAMETER < 10 MICRONS) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/19001.table b/definitions/bufr/tables/0/wmo/35/codetables/19001.table new file mode 100644 index 000000000..af893eb9a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/19001.table @@ -0,0 +1,7 @@ +0 0 DEPRESSION OR LOW (EXTRATROPLCAL) +1 1 TROPICAL DEPRESSION +2 2 TROPICAL STORM +3 3 SEVERE TROPICAL STORM +4 4 TYPHOON +10 10 DUST/SANDSTORM +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/19008.table b/definitions/bufr/tables/0/wmo/35/codetables/19008.table new file mode 100644 index 000000000..3bcb5195a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/19008.table @@ -0,0 +1,5 @@ +0 0 RESERVED +1 1 SHALLOW (TOP OF CIRCULATION BELOW 700-HPA LEVEL) +2 2 MEDIUM (TOP BETWEEN 700-HPA AND 400-HPA LEVEL) +3 3 DEEP (TOP ABOVE 400-HPA LEVEL) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/19010.table b/definitions/bufr/tables/0/wmo/35/codetables/19010.table new file mode 100644 index 000000000..b091d96f0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/19010.table @@ -0,0 +1,3 @@ +1 1 MINIMUM VALUE OF SEA LEVEL PRESSURE +2 2 MAXIMUM VALUE OF 850 HPA RELATIVE VORTICITY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/19100.table b/definitions/bufr/tables/0/wmo/35/codetables/19100.table new file mode 100644 index 000000000..1f03a6f1b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/19100.table @@ -0,0 +1,9 @@ +3 3 DURING THE PRECEDING 15 MINUTES +4 4 DURING THE PRECEDING 30 MINUTES +5 5 DURING THE PRECEDING 1 HOUR +6 6 DURING THE PRECEDING 2 HOURS +7 7 DURING THE PRECEDING 3 HOURS +8 8 DURING THE PRECEDING 6 HOURS +9 9 DURING A PERIOD OF MORE THAN 6 HOURS +10 10 UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/19101.table b/definitions/bufr/tables/0/wmo/35/codetables/19101.table new file mode 100644 index 000000000..0cd1ff4a6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/19101.table @@ -0,0 +1,10 @@ +0 0 RESERVED +1 1 EYE VISIBLE ON RADAR SCOPE, ACCURACY GOOD (WITHIN 10 KM) +2 2 EYE VISIBLE ON RADAR SCOPE, ACCURACY FAIR (WITHIN 30 KM) +3 3 EYE VISIBLE ON RADAR SCOPE, ACCURACY POOR (WITHIN 50 KM) +4 4 POSITION OF THE CENTRE WITHIN THE AREA COVERED BY THE RADAR SCOPE, DETERMINATION BY MEANS OF THE SPIRAL-BAND OVERLAY, ACCURACY GOOD (WITHIN 10 KM) +5 5 POSITION OF THE CENTRE WITHIN THE AREA COVERED BY THE RADAR SCOPE, DETERMINATION BY MEANS OF THE SPIRAL-BAND OVERLAY, ACCURACY FAIR (WITHIN 30 KM) +6 6 POSITION OF THE CENTRE WITHIN THE AREA COVERED BY THE RADAR SCOPE, DETERMINATION BY MEANS OF THE SPIRAL-BAND OVERLAY, ACCURACY POOR (WITHIN 50 KM) +7 7 POSITION OF THE CENTRE OUTSIDE THE AREA COVERED BY THE RADAR SCOPE, EXTRAPOLATION BY MEANS OF THE SPIRAL-BAND OVERLAY +10 10 ACCURACY UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/19102.table b/definitions/bufr/tables/0/wmo/35/codetables/19102.table new file mode 100644 index 000000000..21ab7756b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/19102.table @@ -0,0 +1,8 @@ +0 0 CIRCULAR +1 1 ELLIPTICAL - THE MINOR AXIS IS AT LEAST 3/4 THE LENGTH OF THE MAJOR AXIS +2 2 ELLIPTICAL - THE MINOR AXIS IS LESS THAN 3/4 THE LENGTH OF THE MAJOR AXIS +3 3 APPARENT DOUBLE EYE +4 4 OTHER SHAPE +5 5 ILL DEFINED +6 6 UNDETERMINED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/19103.table b/definitions/bufr/tables/0/wmo/35/codetables/19103.table new file mode 100644 index 000000000..3abb184f8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/19103.table @@ -0,0 +1,12 @@ +0 0 LESS THAN 5 KM +1 1 5 TO LESS THAN 10 KM +2 2 10 TO LESS THAN 15 KM +3 3 15 TO LESS THAN 20 KM +4 4 20 TO LESS THAN 25 KM +5 5 25 TO LESS THAN 30 KM +6 6 30 TO LESS THAN 35 KM +7 7 35 TO LESS THAN 40 KM +8 8 40 TO LESS THAN 50 KM +9 9 50 KM AND GREATER +10 10 UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/19104.table b/definitions/bufr/tables/0/wmo/35/codetables/19104.table new file mode 100644 index 000000000..67ae47479 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/19104.table @@ -0,0 +1,12 @@ +0 0 EYE HAS FIRST BECOME VISIBLE DURING THE PAST 30 MINUTES +1 1 NO SIGNIFICANT CHANGE IN THE CHARACTERISTICS OR SIZE OF THE EYE +2 2 EYE HAS BECOME SMALLER WITH NO OTHER SIGNIFICANT CHANGE IN CHARACTERISTICS +3 3 EYE HAS BECOME LARGER WITH NO OTHER SIGNIFICANT CHANGE IN CHARACTERISTICS +4 4 EYE HAS BECOME LESS DISTINCT WITH NO SIGNIFICANT CHANGE IN SIZE +5 5 EYE HAS BECOME LESS DISTINCT AND DECREASED IN SIZE +6 6 EYE HAS BECOME LESS DISTINCT AND INCREASED IN SIZE +7 7 EYE HAS BECOME MORE DISTINCT WITH NO SIGNIFICANT CHANGE IN SIZE +8 8 EYE HAS BECOME MORE DISTINCT AND DECREASED IN SIZE +9 9 EYE HAS BECOME MORE DISTINCT AND INCREASED IN SIZE +10 10 CHANGE IN CHARACTER AND SIZE OF EYE CANNOT BE DETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/19105.table b/definitions/bufr/tables/0/wmo/35/codetables/19105.table new file mode 100644 index 000000000..becfceea8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/19105.table @@ -0,0 +1,10 @@ +0 0 0 TO LESS THAN 100 KM +1 1 100 TO LESS THAN 200 KM +2 2 200 TO LESS THAN 300 KM +3 3 300 TO LESS THAN 400 KM +4 4 400 TO LESS THAN 500 KM +5 5 500 TO LESS THAN 600 KM +6 6 600 TO LESS THAN 800 KM +7 7 800 KM OR MORE +10 10 DOUBTFUL OR UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/19107.table b/definitions/bufr/tables/0/wmo/35/codetables/19107.table new file mode 100644 index 000000000..ed6b79c54 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/19107.table @@ -0,0 +1,11 @@ +0 0 LESS THAN 1 HOUR +1 1 1 TO LESS THAN 2 HOURS +2 2 2 TO LESS THAN 3 HOURS +3 3 3 TO LESS THAN 6 HOURS +4 4 6 TO LESS THAN 9 HOURS +5 5 9 TO LESS THAN 12 HOURS +6 6 12 TO LESS THAN 15 HOURS +7 7 15 TO LESS THAN 18 HOURS +8 8 18 TO LESS THAN 21 HOURS +9 9 21 TO LESS THAN 30 HOURS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/19108.table b/definitions/bufr/tables/0/wmo/35/codetables/19108.table new file mode 100644 index 000000000..9350bc265 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/19108.table @@ -0,0 +1,8 @@ +0 0 CYCLONE CENTRE WITHIN 10 KM OF THE TRANSMITTED POSITION +1 1 CYCLONE CENTRE WITHIN 20 KM OF THE TRANSMITTED POSITION +2 2 CYCLONE CENTRE WITHIN 50 KM OF THE TRANSMITTED POSITION +3 3 CYCLONE CENTRE WITHIN 100 KM OF THE TRANSMITTED POSITION +4 4 CYCLONE CENTRE WITHIN 200 KM OF THE TRANSMITTED POSITION +5 5 CYCLONE CENTRE WITHIN 300 KM OF THE TRANSMITTED POSITION +6 6 CYCLONE CENTRE UNDETERMINED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/19109.table b/definitions/bufr/tables/0/wmo/35/codetables/19109.table new file mode 100644 index 000000000..e3c9c05bf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/19109.table @@ -0,0 +1,12 @@ +0 0 LESS THAN 1° OF LATITUDE +1 1 1° TO LESS THAN 2° OF LATITUDE +2 2 2° TO LESS THAN 3° OF LATITUDE +3 3 3° TO LESS THAN 4° OF LATITUDE +4 4 4° TO LESS THAN 5° OF LATITUDE +5 5 5° TO LESS THAN 6° OF LATITUDE +6 6 6° TO LESS THAN 7° OF LATITUDE +7 7 7° TO LESS THAN 8° OF LATITUDE +8 8 8° TO LESS THAN 9° OF LATITUDE +9 9 9° OF LATITUDE OR MORE +10 10 UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/19110.table b/definitions/bufr/tables/0/wmo/35/codetables/19110.table new file mode 100644 index 000000000..81f4f593c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/19110.table @@ -0,0 +1,8 @@ +0 0 MUCH WEAKENING +1 1 WEAKENING +2 2 NO CHANGE +3 3 INTENSIFICATION +4 4 STRONG INTENSIFICATION +9 9 NOT OBSERVED PREVIOUSLY +10 10 UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/19113.table b/definitions/bufr/tables/0/wmo/35/codetables/19113.table new file mode 100644 index 000000000..ba46dca88 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/19113.table @@ -0,0 +1,8 @@ +1 1 CURVED BAND +2 2 SHEAR +3 3 EYE +4 4 BANDING EYE +5 5 CENTRAL DENSE OVERCAST (CDO) +6 6 EMBEDDED CENTRE +7 7 CENTRE COLD COVER (CCC) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/19117.table b/definitions/bufr/tables/0/wmo/35/codetables/19117.table new file mode 100644 index 000000000..b623197a3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/19117.table @@ -0,0 +1,4 @@ +1 1 A (CURVED BAND) +2 2 B (CDO) +3 3 C (SHEAR) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/19119.table b/definitions/bufr/tables/0/wmo/35/codetables/19119.table new file mode 100644 index 000000000..8329a8a58 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/19119.table @@ -0,0 +1,4 @@ +1 1 DT-NUMBER +2 2 PT-NUMBER +3 3 MET-NUMBER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20003.table b/definitions/bufr/tables/0/wmo/35/codetables/20003.table new file mode 100644 index 000000000..0ebc7c7e8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20003.table @@ -0,0 +1,266 @@ +0 0 CLOUD DEVELOPMENT NOT OBSERVED OR NOT OBSERVABLE +1 1 CLOUDS GENERALLY DISSOLVING OR BECOMING LESS DEVELOPED +2 2 STATE OF SKY ON THE WHOLE UNCHANGED +3 3 CLOUDS GENERALLY FORMING OR DEVELOPING +4 4 VISIBILITY REDUCED BY SMOKE, E.G. VELDT OR FOREST FIRES, INDUSTRIAL SMOKE OR VOLCANIC ASHES +5 5 HAZE +6 6 WIDESPREAD DUST IN SUSPENSION IN THE AIR, NOT RAISED BY WIND AT OR NEAR THE STATION AT THE TIME OF OBSERVATION +7 7 DUST OR SAND RAISED BY WIND AT OR NEAR THE STATION AT THE TIME OF OBSERVATION, BUT NO WELL-DEVELOPED DUST WHIRL(S) OR SAND WHIRL(S), AND NO DUSTSTORM OR SANDSTORM SEEN; OR, IN THE CASE OF SEA STATIONS AND COASTAL STATIONS, BLOWING SPRAY AT THE STATION +8 8 WELL-DEVELOPED DUST WHIRL(S) OR SAND WHIRL(S) SEEN AT OR NEAR THE STATION DURING THE PRECEDING HOUR OR AT THE SAME TIME OF OBSERVATION, BUT NO DUSTSTORM OR SANDSTORM +9 9 DUSTSTORM OR SANDSTORM WITHIN SIGHT AT THE TIME OF OBSERVATION, OR AT THE STATION DURING THE PRECEDING HOUR +10 10 MIST +11 11 PATCHES +12 12 MORE OR LESS CONTINUOUS +13 13 LIGHTNING VISIBLE, NO THUNDER HEARD +14 14 PRECIPITATION WITHIN SIGHT, NOT REACHING THE GROUND OR THE SURFACE OF THE SEA +15 15 PRECIPITATION WITHIN SIGHT, REACHING THE GROUND OR THE SURFACE OF THE SEA, BUT DISTANT, I.E. ESTIMATED TO BE MORE THAN 5 KM FROM THE STATION +16 16 PRECIPITATION WITHIN SIGHT, REACHING THE GROUND OR THE SURFACE OF THE SEA, NEAR TO, BUT NOT AT THE STATION +17 17 THUNDERSTORM, BUT NO PRECIPITATION AT THE TIME OF OBSERVATION +18 18 SQUALLS +19 19 FUNNEL CLOUD(S) +20 20 DRIZZLE (NOT FREEZING) OR SNOW GRAINS +21 21 RAIN (NOT FREEZING) +22 22 SNOW +23 23 RAIN AND SNOW OR ICE PELLETS +24 24 FREEZING DRIZZLE OR FREEZING RAIN +25 25 SHOWER(S) OF RAIN +26 26 SHOWER(S) OF SNOW, OR OF RAIN AND SNOW +27 27 SHOWER(S) OF HAIL*, OR OF RAIN AND HAIL* +28 28 FOG OR ICE FOG +29 29 THUNDERSTORM (WITH OR WITHOUT PRECIPITATION) +30 30 SLIGHT OR MODERATE DUSTSTORM OR SANDSTORM +31 31 SLIGHT OR MODERATE DUSTSTORM OR SANDSTORM +32 32 SLIGHT OR MODERATE DUSTSTORM OR SANDSTORM +33 33 SEVERE DUSTSTORM OR SANDSTORM +34 34 SEVERE DUSTSTORM OR SANDSTORM +35 35 SEVERE DUSTSTORM OR SANDSTORM +36 36 SLIGHT OR MODERATE DRIFTING SNOW +37 37 HEAVY DRIFTING SNOW +38 38 SLIGHT OR MODERATE BLOWING SNOW +39 39 HEAVY BLOWING SNOW +40 40 FOG OR ICE FOG AT A DISTANCE AT THE TIME OF OBSERVATION, BUT NOT AT THE STATION DURING THE PRECEDING HOUR, THE FOG OR ICE FOG EXTENDING TO A LEVEL ABOVE THAT OF THE OBSERVER +41 41 FOG OR ICE FOG IN PATCHES +42 42 FOG OR ICE FOG, SKY VISIBLE +43 43 FOG OR ICE FOG, SKY INVISIBLE +44 44 FOG OR ICE FOG, SKY VISIBLE +45 45 FOG OR ICE FOG, SKY INVISIBLE +46 46 FOG OR ICE FOG, SKY VISIBLE +47 47 FOG OR ICE FOG, SKY INVISIBLE +48 48 FOG, DEPOSITING RIME, SKY VISIBLE +49 49 FOG, DEPOSITING RIME, SKY INVISIBLE +50 50 DRIZZLE, NOT FREEZING, INTERMITTENT +51 51 DRIZZLE, NOT FREEZING, CONTINUOUS +52 52 DRIZZLE, NOT FREEZING, INTERMITTENT +53 53 DRIZZLE, NOT FREEZING, CONTINUOUS +54 54 DRIZZLE, NOT FREEZING, INTERMITTENT +55 55 DRIZZLE, NOT FREEZING, CONTINUOUS +56 56 DRIZZLE, FREEZING, SLIGHT +57 57 DRIZZLE, FREEZING, MODERATE OR HEAVY (DENSE) +58 58 DRIZZLE AND RAIN, SLIGHT +59 59 DRIZZLE AND RAIN, MODERATE OR HEAVY +60 60 RAIN, NOT FREEZING, INTERMITTENT +61 61 RAIN, NOT FREEZING, CONTINUOUS +62 62 RAIN, NOT FREEZING, INTERMITTENT +63 63 RAIN, NOT FREEZING, CONTINUOUS +64 64 RAIN, NOT FREEZING, INTERMITTENT +65 65 RAIN, NOT FREEZING, CONTINUOUS +66 66 RAIN, FREEZING, SLIGHT +67 67 RAIN, FREEZING, MODERATE OR HEAVY +68 68 RAIN OR DRIZZLE AND SNOW, SLIGHT +69 69 RAIN OR DRIZZLE AND SNOW, MODERATE OR HEAVY +70 70 INTERMITTENT FALL OF SNOWFLAKES +71 71 CONTINUOUS FALL OF SNOWFLAKES +72 72 INTERMITTENT FALL OF SNOWFLAKES +73 73 CONTINUOUS FALL OF SNOWFLAKES +74 74 INTERMITTENT FALL OF SNOWFLAKES +75 75 CONTINUOUS FALL OF SNOWFLAKES +76 76 DIAMOND DUST (WITH OR WITHOUT FOG) +77 77 SNOW GRAINS (WITH OR WITHOUT FOG) +78 78 ISOLATED STAR-LIKE SNOW CRYSTALS (WITH OR WITHOUT FOG) +79 79 ICE PELLETS +80 80 RAIN SHOWER(S), SLIGHT +81 81 RAIN SHOWER(S), MODERATE OR HEAVY +82 82 RAIN SHOWER(S), VIOLENT +83 83 SHOWER(S) OF RAIN AND SNOW MIXED, SLIGHT +84 84 SHOWER(S) OF RAIN AND SNOW MIXED, MODERATE OR HEAVY +85 85 SNOW SHOWER(S), SLIGHT +86 86 SNOW SHOWER(S), MODERATE OR HEAVY +87 87 SHOWER(S) OF SNOW PELLETS OR SMALL HAIL, WITH OR WITHOUT RAIN OR RAIN AND SNOW MIXED +88 88 SHOWER(S) OF SNOW PELLETS OR SMALL HAIL, WITH OR WITHOUT RAIN OR RAIN AND SNOW MIXED +89 89 SHOWER(S) OF HAIL, WITH OR WITHOUT RAIN OR RAIN AND SNOW MIXED, NOT ASSOCIATED WITH THUNDER +90 90 SHOWER(S) OF HAIL, WITH OR WITHOUT RAIN OR RAIN AND SNOW MIXED, NOT ASSOCIATED WITH THUNDER +91 91 SLIGHT RAIN AT TIME OF OBSERVATION +92 92 MODERATE OR HEAVY RAIN AT TIME OF OBSERVATION +93 93 SLIGHT SNOW, OR RAIN AND SNOW MIXED OR HAIL* AT TIME OF OBSERVATION +94 94 MODERATE OR HEAVY SNOW, OR RAIN AND SNOW MIXED OR HAIL* AT TIME OF OBSERVATION +95 95 THUNDERSTORM, SLIGHT OR MODERATE, WITHOUT HAIL*, BUT WITH RAIN AND/OR SNOW AT TIME OF OBSERVATION +96 96 THUNDERSTORM, SLIGHT OR MODERATE, WITH HAIL* AT TIME OF OBSERVATION +97 97 THUNDERSTORM, HEAVY, WITHOUT HAIL*, BUT WITH RAIN AND/OR SNOW AT TIME OF OBSERVATION +98 98 THUNDERSTORM COMBINED WITH DUSTSTORM OR SANDSTORM AT TIME OF OBSERVATION +99 99 THUNDERSTORM, HEAVY, WITH HAIL* AT TIME OF OBSERVATION +100 100 NO SIGNIFICANT WEATHER OBSERVED +101 101 CLOUDS GENERALLY DISSOLVING OR BECOMING LESS DEVELOPED DURING THE PAST HOUR +102 102 STATE OF SKY ON THE WHOLE UNCHANGED DURING THE PAST HOUR +103 103 CLOUDS GENERALLY FORMING OR DEVELOPING DURING THE PAST HOUR +104 104 HAZE OR SMOKE, OR DUST IN SUSPENSION IN THE AIR, VISIBILITY EQUAL TO, OR GREATER THAN, 1 KM +105 105 HAZE OR SMOKE, OR DUST IN SUSPENSION IN THE AIR, VISIBILITY LESS THAN 1 KM +110 110 MIST +111 111 DIAMOND DUST +112 112 DISTANT LIGHTNING +118 118 SQUALLS +119 119 RESERVED +120 120 FOG +121 121 PRECIPITATION +122 122 DRIZZLE (NOT FREEZING) OR SNOW GRAINS +123 123 RAIN (NOT FREEZING) +124 124 SNOW +125 125 FREEZING DRIZZLE OR FREEZING RAIN +126 126 THUNDERSTORM (WITH OR WITHOUT PRECIPITATION) +127 127 BLOWING OR DRIFTING SNOW OR SAND +128 128 BLOWING OR DRIFTING SNOW OR SAND, VISIBILITY EQUAL TO, OR GREATER THAN, 1 KM +129 129 BLOWING OR DRIFTING SNOW OR SAND, VISIBILITY LESS THAN 1 KM +130 130 FOG +131 131 FOG OR ICE FOG IN PATCHES +132 132 FOG OR ICE FOG, HAS BECOME THINNER DURING THE PAST HOUR +133 133 FOG OR ICE FOG, NO APPRECIABLE CHANGE DURING THE PAST HOUR +134 134 FOG OR ICE FOG, HAS BEGUN OR BECOME THICKER DURING THE PAST HOUR +135 135 FOG, DEPOSITING RIME +140 140 PRECIPITATION +141 141 PRECIPITATION, SLIGHT OR MODERATE +142 142 PRECIPITATION, HEAVY +143 143 LIQUID PRECIPITATION, SLIGHT OR MODERATE +144 144 LIQUID PRECIPITATION, HEAVY +145 145 SOLID PRECIPITATION, SLIGHT OR MODERATE +146 146 SOLID PRECIPITATION, HEAVY +147 147 FREEZING PRECIPITATION, SLIGHT OR MODERATE +148 148 FREEZING PRECIPITATION, HEAVY +149 149 RESERVED +150 150 DRIZZLE +151 151 DRIZZLE, NOT FREEZING, SLIGHT +152 152 DRIZZLE, NOT FREEZING, MODERATE +153 153 DRIZZLE, NOT FREEZING, HEAVY +154 154 DRIZZLE, FREEZING, SLIGHT +155 155 DRIZZLE, FREEZING, MODERATE +156 156 DRIZZLE, FREEZING, HEAVY +157 157 DRIZZLE AND RAIN, SLIGHT +158 158 DRIZZLE AND RAIN, MODERATE OR HEAVY +159 159 RESERVED +160 160 RAIN +161 161 RAIN, NOT FREEZING, SLIGHT +162 162 RAIN, NOT FREEZING, MODERATE +163 163 RAIN, NOT FREEZING, HEAVY +164 164 RAIN, FREEZING, SLIGHT +165 165 RAIN, FREEZING, MODERATE +166 166 RAIN, FREEZING, HEAVY +167 167 RAIN (OR DRIZZLE) AND SNOW, SLIGHT +168 168 RAIN (OR DRIZZLE) AND SNOW, MODERATE OR HEAVY +169 169 RESERVED +170 170 SNOW +171 171 SNOW, SLIGHT +172 172 SNOW, MODERATE +173 173 SNOW, HEAVY +174 174 ICE PELLETS, SLIGHT +175 175 ICE PELLETS, MODERATE +176 176 ICE PELLETS, HEAVY +177 177 SNOW GRAINS +178 178 ICE CRYSTALS +179 179 RESERVED +180 180 SHOWER(S) OR INTERMITTENT PRECIPITATION +181 181 RAIN SHOWER(S) OR INTERMITTENT RAIN, SLIGHT +182 182 RAIN SHOWER(S) OR INTERMITTENT RAIN, MODERATE +183 183 RAIN SHOWER(S) OR INTERMITTENT RAIN, HEAVY +184 184 RAIN SHOWER(S) OR INTERMITTENT RAIN, VIOLENT +185 185 SNOW SHOWER(S) OR INTERMITTENT SNOW, SLIGHT +186 186 SNOW SHOWER(S) OR INTERMITTENT SNOW, MODERATE +187 187 SNOW SHOWER(S) OR INTERMITTENT SNOW, HEAVY +188 188 RESERVED +189 189 HAIL +190 190 THUNDERSTORM +191 191 THUNDERSTORM, SLIGHT OR MODERATE, WITH NO PRECIPITATION +192 192 THUNDERSTORM, SLIGHT OR MODERATE, WITH RAIN SHOWERS AND/OR SNOW SHOWERS +193 193 THUNDERSTORM, SLIGHT OR MODERATE, WITH HAIL +194 194 THUNDERSTORM, HEAVY, WITH NO PRECIPITATION +195 195 THUNDERSTORM, HEAVY, WITH RAIN SHOWERS AND/OR SNOW SHOWERS +196 196 THUNDERSTORM, HEAVY, WITH HAIL +199 199 TORNADO +204 204 VOLCANIC ASH SUSPENDED IN THE AIR ALOFT +205 205 NOT USED +206 206 THICK DUST HAZE, VISIBILITY LESS THAN 1 KM +207 207 BLOWING SPRAY AT THE STATION +208 208 DRIFTING DUST (SAND) +209 209 WALL OF DUST OR SAND IN DISTANCE (LIKE HABOOB) +210 210 SNOW HAZE +211 211 WHITEOUT +212 212 NOT USED +213 213 LIGHTNING, CLOUD TO SURFACE +217 217 DRY THUNDERSTORM +218 218 NOT USED +219 219 TORNADO CLOUD (DESTRUCTIVE) AT OR WITHIN SIGHT OF THE STATION DURING PRECEDING HOUR OR AT THE TIME OF OBSERVATION +220 220 DEPOSITION OF VOLCANIC ASH +221 221 DEPOSITION OF DUST OR SAND +222 222 DEPOSITION OF DEW +223 223 DEPOSITION OF WET SNOW +224 224 DEPOSITION OF SOFT RIME +225 225 DEPOSITION OF HARD RIME +226 226 DEPOSITION OF HOAR FROST +227 227 DEPOSITION OF GLAZE +228 228 DEPOSITION OF ICE CRUST (ICE SLICK) +229 229 NOT USED +230 230 DUSTSTORM OR SANDSTORM WITH TEMPERATURE BELOW 0 °C +239 239 BLOWING SNOW, IMPOSSIBLE TO DETERMINE WHETHER SNOW IS FALLING OR NOT +240 240 NOT USED +241 241 FOG ON SEA +242 242 FOG IN VALLEYS +243 243 ARCTIC OR ANTARCTIC SEA SMOKE +244 244 STEAM FOG (SEA, LAKE OR RIVER) +245 245 STEAM LOG (LAND) +246 246 FOG OVER ICE OR SNOW COVER +247 247 DENSE FOG, VISIBILITY 60-90 M +248 248 DENSE FOG, VISIBILITY 30-60 M +249 249 DENSE FOG, VISIBILITY LESS THAN 30 M +250 250 DRIZZLE, RATE OF FALL - LESS THAN 0.10 MM H-1 +251 251 DRIZZLE, RATE OF FALL - 0.10-0.19 MM H-1 +252 252 DRIZZLE, RATE OF FALL - 0.20-0.39 MM H-1 +253 253 DRIZZLE, RATE OF FALL - 0.40-0.79 MM H-1 +254 254 DRIZZLE, RATE OF FALL - 0.80-1.59 MM H-1 +255 255 DRIZZLE, RATE OF FALL - 1.60-3.19 MM H-1 +256 256 DRIZZLE, RATE OF FALL - 3.20-6.39 MM H-1 +257 257 DRIZZLE, RATE OF FALL - 6.4 MM H-1 OR MORE +258 258 NOT USED +259 259 DRIZZLE AND SNOW +260 260 RAIN, RATE OF FALL - LESS THAN 1.0 MM H-1 +261 261 RAIN, RATE OF FALL - 1.0-1.9 MM H-1 +262 262 RAIN, RATE OF FALL - 2.0-3.9 MM H-1 +263 263 RAIN, RATE OF FALL - 4.0-7.9 MM H-1 +264 264 RAIN, RATE OF FALL - 8.0-15.9 MM H-1 +265 265 RAIN, RATE OF FALL - 16.0-31.9 MM H-1 +266 266 RAIN, RATE OF FALL - 32.0-63.9 MM H-1 +267 267 RAIN, RATE OF FALL - 64.0 MM H-1 OR MORE +270 270 SNOW, RATE OF FALL - LESS THAN 1.0 CM H-1 +271 271 SNOW, RATE OF FALL - 1.0-1.9 CM H-1 +272 272 SNOW, RATE OF FALL - 2.0-3.9 CM H-1 +273 273 SNOW, RATE OF FALL - 4.0-7.9 CM H-1 +274 274 SNOW, RATE OF FALL - 8.0-15.9 CM H-1 +275 275 SNOW, RATE OF FALL - 16.0-31.9 CM H-1 +276 276 SNOW, RATE OF FALL - 32.0-63.9 CM H-1 +277 277 SNOW, RATE OF FALL - 64.0 CM H-1 OR MORE +278 278 SNOW OR ICE CRYSTAL PRECIPITATION FROM A CLEAR SKY +279 279 WET SNOW, FREEZING ON CONTACT +280 280 PRECIPITATION OF RAIN +281 281 PRECIPITATION OF RAIN, FREEZING +282 282 PRECIPITATION OF RAIN AND SNOW MIXED +283 283 PRECIPITATION OF SNOW +284 284 PRECIPITATION OF SNOW PELLETS OR SMALL HALL +285 285 PRECIPITATION OF SNOW PELLETS OR SMALL HAIL, WITH RAIN +286 286 PRECIPITATION OF SNOW PELLETS OR SMALL HAIL, WITH RAIN AND SNOW MIXED +287 287 PRECIPITATION OF SNOW PELLETS OR SMALL HAIL, WITH SNOW +288 288 PRECIPITATION OF HAIL +289 289 PRECIPITATION OF HAIL, WITH RAIN +290 290 PRECIPITATION OF HALL, WITH RAIN AND SNOW MIXED +291 291 PRECIPITATION OF HAIL, WITH SNOW +292 292 SHOWER(S) OR THUNDERSTORM OVER SEA +293 293 SHOWER(S) OR THUNDERSTORM OVER MOUNTAINS +508 508 NO SIGNIFICANT PHENOMENON TO REPORT, PRESENT AND PAST WEATHER OMITTED +509 509 NO OBSERVATION, DATA NOT AVAILABLE, PRESENT AND PAST WEATHER OMITTED +510 510 PRESENT AND PAST WEATHER MISSING, BUT EXPECTED +511 511 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20004.table b/definitions/bufr/tables/0/wmo/35/codetables/20004.table new file mode 100644 index 000000000..6d6e7dac5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20004.table @@ -0,0 +1,21 @@ +0 0 CLOUD COVERING 1/2 OR LESS OF THE SKY THROUGHOUT THE APPROPRIATE PERIOD +1 1 CLOUD COVERING MORE THAN 1/2 OF THE SKY DURING PART OF THE APPROPRIATE PERIOD AND COVERING 1/2 OR LESS DURING PART OF THE PERIOD +2 2 CLOUD COVERING MORE THAN 1/2 OF THE SKY THROUGHOUT THE APPROPRIATE PERIOD +3 3 SANDSTORM, DUSTSTORM OR BLOWING SNOW +4 4 FOG OR ICE FOG OR THICK HAZE +5 5 DRIZZLE +6 6 RAIN +7 7 SNOW, OR RAIN AND SNOW MIXED +8 8 SHOWER(S) +9 9 THUNDERSTORM(S) WITH OR WITHOUT PRECIPITATION +10 10 NO SIGNIFICANT WEATHER OBSERVED +11 11 VISIBILITY REDUCED (SEE NOTE) +12 12 BLOWING PHENOMENA, VISIBILITY REDUCED +13 13 FOG (SEE NOTE) +14 14 PRECIPITATION (SEE NOTE) +15 15 DRIZZLE +16 16 RAIN +17 17 SNOW OR ICE PELLETS +18 18 SHOWERS OR INTERMITTENT PRECIPITATION +19 19 THUNDERSTORM +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20005.table b/definitions/bufr/tables/0/wmo/35/codetables/20005.table new file mode 100644 index 000000000..6d6e7dac5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20005.table @@ -0,0 +1,21 @@ +0 0 CLOUD COVERING 1/2 OR LESS OF THE SKY THROUGHOUT THE APPROPRIATE PERIOD +1 1 CLOUD COVERING MORE THAN 1/2 OF THE SKY DURING PART OF THE APPROPRIATE PERIOD AND COVERING 1/2 OR LESS DURING PART OF THE PERIOD +2 2 CLOUD COVERING MORE THAN 1/2 OF THE SKY THROUGHOUT THE APPROPRIATE PERIOD +3 3 SANDSTORM, DUSTSTORM OR BLOWING SNOW +4 4 FOG OR ICE FOG OR THICK HAZE +5 5 DRIZZLE +6 6 RAIN +7 7 SNOW, OR RAIN AND SNOW MIXED +8 8 SHOWER(S) +9 9 THUNDERSTORM(S) WITH OR WITHOUT PRECIPITATION +10 10 NO SIGNIFICANT WEATHER OBSERVED +11 11 VISIBILITY REDUCED (SEE NOTE) +12 12 BLOWING PHENOMENA, VISIBILITY REDUCED +13 13 FOG (SEE NOTE) +14 14 PRECIPITATION (SEE NOTE) +15 15 DRIZZLE +16 16 RAIN +17 17 SNOW OR ICE PELLETS +18 18 SHOWERS OR INTERMITTENT PRECIPITATION +19 19 THUNDERSTORM +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20006.table b/definitions/bufr/tables/0/wmo/35/codetables/20006.table new file mode 100644 index 000000000..cc2612116 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20006.table @@ -0,0 +1,5 @@ +0 0 LOW INSTRUMENT FLIGHT RULES - CEILING < 500 FEET AND/OR VISIBILITY < 1 MILE +1 1 INSTRUMENT FLIGHT RULES - CEILING < 1000 FEET AND/OR VISIBILITY < 3 MILES +2 2 MARGINAL VISUAL FLIGHT RULES - 1000 FEET =< CEILING < 3000 FEET AND/OR 3 MILES =< VISIBILITY < 5 MILES +3 3 VISUAL FLIGHT RULES - CEILING >= 3000 FEET AND/OR VISIBILITY >= 5 MILES +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20008.table b/definitions/bufr/tables/0/wmo/35/codetables/20008.table new file mode 100644 index 000000000..966bcc2fa --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20008.table @@ -0,0 +1,19 @@ +0 0 SKY CLEAR +1 1 FEW +2 2 SCATTERED +3 3 BROKEN +4 4 OVERCAST +5 5 RESERVED +6 6 SCATTERED/BROKEN +7 7 BROKEN/OVERCAST +8 8 ISOLATED +9 9 ISOLATED EMBEDDED +10 10 OCCASIONAL +11 11 OCCASIONAL EMBEDDED +12 12 FREQUENT +13 13 DENSE +14 14 LAYERS +15 15 OBSCURED (OBSC) +16 16 EMBEDDED (EMBD) +17 17 FREQUENT EMBEDDED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20009.table b/definitions/bufr/tables/0/wmo/35/codetables/20009.table new file mode 100644 index 000000000..f0119eb87 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20009.table @@ -0,0 +1,6 @@ +0 0 RESERVED +1 1 NSC NIL SIGNIFICANT CLOUD +2 2 CAVOK +3 3 SKC SKY CLEAR +4 4 NSW NIL SIGNIFICANT WEATHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2001.table b/definitions/bufr/tables/0/wmo/35/codetables/2001.table new file mode 100644 index 000000000..470fcccb7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2001.table @@ -0,0 +1,4 @@ +0 0 AUTOMATIC +1 1 MANNED +2 2 HYBRID: BOTH MANNED AND AUTOMATIC +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20011.table b/definitions/bufr/tables/0/wmo/35/codetables/20011.table new file mode 100644 index 000000000..06c6e106c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20011.table @@ -0,0 +1,16 @@ +0 0 0 +1 1 1 OKTA OR LESS, BUT NOT ZERO +2 2 2 OKTAS +3 3 3 OKTAS +4 4 4 OKTAS +5 5 5 OKTAS +6 6 6 OKTAS +7 7 7 OKTAS OR MORE, BUT NOT 8 OKTAS +8 8 8 OKTAS +9 9 SKY OBSCURED BY FOG AND/OR OTHER METEOROLOGICAL PHENOMENA +10 10 SKY PARTIALLY OBSCURED BY FOG AND/OR OTHER METEOROLOGICAL PHENOMENA +11 11 SCATTERED +12 12 BROKEN +13 13 FEW +14 14 RESERVED +15 15 CLOUD COVER IS INDISCERNIBLE FOR REASONS OTHER THAN FOG OR OTHER METEOROLOGICAL PHENOMENA, OR OBSERVATION IS NOT MADE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20012.table b/definitions/bufr/tables/0/wmo/35/codetables/20012.table new file mode 100644 index 000000000..c778f6077 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20012.table @@ -0,0 +1,55 @@ +0 0 CIRRUS (CI) +1 1 CIRROCUMULUS (CC) +2 2 CIRROSTRATUS (CS) +3 3 ALTOCUMULUS (AC) +4 4 ALTOSTRATUS (AS) +5 5 NIMBOSTRATUS (NS) +6 6 STRATOCUMULUS (SC) +7 7 STRATUS (ST) +8 8 CUMULUS (CU) +9 9 CUMULONIMBUS (CB) +10 10 NO CH CLOUDS +11 11 CIRRUS FIBRATUS, SOMETIMES UNCINUS, NOT PROGRESSIVELY INVADING THE SKY +12 12 CIRRUS SPISSATUS, IN PATCHES OR ENTANGLED SHEAVES, WHICH USUALLY DO NOT INCREASE AND SOMETIMES SEEM TO BE THE REMAINS OF THE UPPER PART OF A CUMULONIMBUS; OR CIRRUS CASTELLANUS OR FLOCCUS +13 13 CIRRUS SPISSATUS CUMULONIMBOGENITUS +14 14 CIRRUS UNCINUS OR FIBRATUS, OR BOTH, PROGRESSIVELY INVADING THE SKY; THEY GENERALLY THICKEN AS A WHOLE +15 15 CIRRUS (OFTEN IN BANDS) AND CIRROSTRATUS, OR CIRROSTRATUS ALONE, PROGRESSIVELY INVADING THE SKY; THEY GENERALLY THICKEN AS A WHOLE, BUT THE CONTINUOUS VEIL DOES NOT REACH 45 DEGREES ABOVE THE HORIZON +16 16 CIRRUS (OFTEN IN BANDS) AND CIRROSTRATUS, OR CIRROSTRATUS ALONE, PROGRESSIVELY INVADING THE SKY; THEY GENERALLY THICKEN AS A WHOLE; THE CONTINUOUS VEIL EXTENDS MORE THAN 45 DEGREES ABOVE THE HORIZON, WITHOUT THE SKY BEING TOTALLY COVERED +17 17 CIRROSTRATUS COVERING THE WHOLE SKY +18 18 CIRROSTRATUS NOT PROGRESSIVELY INVADING THE SKY AND NOT ENTIRELY COVERING IT +19 19 CIRROCUMULUS ALONE, OR CIRROCUMULUS PREDOMINANT AMONG THE CH CLOUDS +20 20 NO CM CLOUDS +21 21 ALTOSTRATUS TRANSLUCIDUS +22 22 ALTOSTRATUS OPACUS OR NIMBOSTRATUS +23 23 ALTOCUMULUS TRANSLUCIDUS AT A SINGLE LEVEL +24 24 PATCHES (OFTEN LENTICULAR) OF ALTOCUMULUS TRANSLUCIDUS, CONTINUALLY CHANGING AND OCCURRING AT ONE OR MORE LEVELS +25 25 ALTOCUMULUS TRANSLUCIDUS IN BANDS, OR ONE OR MORE LAYERS OF ALTOCUMULUS TRANSLUCIDUS OR OPACUS, PROGRESSIVELY INVADING THE SKY; THESE ALTOCUMULUS CLOUDS GENERALLY THICKEN AS A WHOLE +26 26 ALTOCUMULUS CUMULOGENITUS (OR CUMULONIMBOGENITUS) +27 27 ALTOCUMULUS TRANSLUCIDUS OR OPACUS IN TWO OR MORE LAYERS, OR ALTOCUMULUS OPACUS IN A SINGLE LAYER, NOT PROGRESSIVELY INVADING THE SKY, OR ALTOCUMULUS WITH ALTOSTRATUS OR NIMBOSTRATUS +28 28 ALTOCUMULUS CASTELLANUS OR FLOCCUS +29 29 ALTOCUMULUS OF A CHAOTIC SKY, GENERALLY AT SEVERAL LEVELS +30 30 NO CL CLOUDS +31 31 CUMULUS HUMILIS OR CUMULUS FRACTUS OTHER THAN OF BAD WEATHER,* OR BOTH +32 32 CUMULUS MEDIOCRIS OR CONGESTUS, TOWERING CUMULUS (TCU), WITH OR WITHOUT CUMULUS OF SPECIES FRACTUS OR HUMILIS OR STRATOCUMULUS, ALL HAVING THEIR BASES AT THE SAME LEVEL +33 33 CUMULONIMBUS CALVUS, WITH OR WITHOUT CUMULUS, STRATOCUMULUS OR STRATUS +34 34 STRATOCUMULUS CUMULOGENITUS +35 35 STRATOCUMULUS OTHER THAN STRATOCUMULUS CUMULOGENITUS +36 36 STRATUS NEBULOSUS OR STRATUS FRACTUS OTHER THAN OF BAD WEATHER,* OR BOTH +37 37 STRATUS FRACTUS OR CUMULUS FRACTUS OF BAD WEATHER,* OR BOTH (PANNUS), USUALLY BELOW ALTOSTRATUS OR NIMBOSTRATUS +38 38 CUMULUS AND STRATOCUMULUS OTHER THAN STRATOCUMULUS CUMULOGENITUS, WITH BASES AT DIFFERENT LEVELS +39 39 CUMULONIMBUS CAPILLATUS (OFTEN WITH AN ANVIL), WITH OR WITHOUT CUMULONIMBUS CALVUS, CUMULUS, STRATOCUMULUS, STRATUS OR PANNUS +40 40 CH +41 41 CM +42 42 CL +43 43 CLEAR +44 44 LIQUID WATER +45 45 SUPERCOOLED LIQUID WATER +46 46 MIXED PHASE +47 47 OPTICALLY THICK ICE +48 48 OPTICALLY THIN ICE +49 49 MULTILAYERED ICE +59 59 CLOUD NOT VISIBLE OWING TO DARKNESS, FOG, DUSTSTORM, SANDSTORM, OR OTHER ANALOGOUS PHENOMENA +60 60 CH CLOUDS INVISIBLE OWING TO DARKNESS, FOG, BLOWING DUST OR SAND, OR OTHER SIMILAR PHENOMENA, OR BECAUSE OF A CONTINUOUS LAYER OF LOWER CLOUDS +61 61 CM CLOUDS INVISIBLE OWING TO DARKNESS, FOG, BLOWING DUST OR SAND, OR OTHER SIMILAR PHENOMENA, OR BECAUSE OF CONTINUOUS LAYER OF LOWER CLOUDS +62 62 CL CLOUDS INVISIBLE OWING TO DARKNESS, FOG, BLOWING DUST OR SAND, OR OTHER SIMILAR PHENOMENA +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20017.table b/definitions/bufr/tables/0/wmo/35/codetables/20017.table new file mode 100644 index 000000000..5ec10bd41 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20017.table @@ -0,0 +1,11 @@ +0 0 ISOLATED CLOUD FRAGMENTS OF CLOUDS +1 1 CONTINUOUS CLOUD +2 2 BROKEN CLOUD - SMALL BREAKS +3 3 BROKEN CLOUD - LARGE BREAKS +4 4 CONTINUOUS CLOUD +5 5 BROKEN CLOUD - SMALL BREAKS +6 6 BROKEN CLOUD - LARGE BREAKS +7 7 CONTINUOUS OR ALMOST CONTINUOUS WAVES WITH TOWERING CLOUDS ABOVE THE TOP OF THE LAYER +8 8 GROUPS OF WAVES WITH TOWERING CLOUDS ABOVE THE TOP OF THE LAYER +9 9 TWO OR MORE LAYERS AT DIFFERENT LEVELS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20018.table b/definitions/bufr/tables/0/wmo/35/codetables/20018.table new file mode 100644 index 000000000..c0ffc3693 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20018.table @@ -0,0 +1,4 @@ +0 0 INCREASING (U) +1 1 DECREASING (D) +2 2 NO DISTINCT CHANGE (N) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2002.table b/definitions/bufr/tables/0/wmo/35/codetables/2002.table new file mode 100644 index 000000000..a701e1e40 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2002.table @@ -0,0 +1,3 @@ +1 1 CERTIFIED INSTRUMENTS +2 2 ORIGINALLY MEASURED IN KNOTS +3 3 ORIGINALLY MEASURED IN KM H-1 diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20021.table b/definitions/bufr/tables/0/wmo/35/codetables/20021.table new file mode 100644 index 000000000..747a7591e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20021.table @@ -0,0 +1,23 @@ +1 1 PRECIPITATION - UNKNOWN TYPE +2 2 LIQUID PRECIPITATION NOT FREEZING +3 3 LIQUID FREEZING PRECIPITATION +4 4 DRIZZLE +5 5 RAIN +6 6 SOLID PRECIPITATION +7 7 SNOW +8 8 SNOW GRAINS +9 9 SNOW PELLETS +10 10 ICE PELLETS +11 11 ICE CRYSTALS +12 12 DIAMOND DUST +13 13 SMALL HAIL +14 14 HAIL +15 15 GLAZE +16 16 RIME +17 17 SOFT RIME +18 18 HARD RIME +19 19 CLEAR ICE +20 20 WET SNOW +21 21 HOAR FROST +22 22 DEW +23 23 WHITE DEW diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20022.table b/definitions/bufr/tables/0/wmo/35/codetables/20022.table new file mode 100644 index 000000000..a551aac0e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20022.table @@ -0,0 +1,7 @@ +0 0 NO PRECIPITATION +1 1 CONTINUOUS +2 2 INTERMITTENT +3 3 SHOWER +4 4 NOT REACHING GROUND +5 5 DEPOSITION +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20023.table b/definitions/bufr/tables/0/wmo/35/codetables/20023.table new file mode 100644 index 000000000..97670dfbb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20023.table @@ -0,0 +1,14 @@ +1 1 DUST/SAND WHIRL +2 2 SQUALLS +3 3 SANDSTORM +4 4 DUSTSTORM +5 5 LIGHTNING - CLOUD TO SURFACE +6 6 LIGHTNING - CLOUD TO CLOUD +7 7 LIGHTNING - DISTANT +8 8 THUNDERSTORM +9 9 FUNNEL CLOUD NOT TOUCHING SURFACE +10 10 FUNNEL CLOUD TOUCHING SURFACE +11 11 SPRAY +12 12 WATERSPOUT +13 13 WIND SHEAR +14 14 DUST DEVILS diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20024.table b/definitions/bufr/tables/0/wmo/35/codetables/20024.table new file mode 100644 index 000000000..13aba873e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20024.table @@ -0,0 +1,8 @@ +0 0 NO PHENOMENA +1 1 LIGHT +2 2 MODERATE +3 3 HEAVY +4 4 VIOLENT +5 5 SEVERE +6 6 VERY SEVERE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20025.table b/definitions/bufr/tables/0/wmo/35/codetables/20025.table new file mode 100644 index 000000000..4d70e338f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20025.table @@ -0,0 +1,13 @@ +1 1 FOG +2 2 ICE FOG +3 3 STEAM FOG +7 7 MIST +8 8 HAZE +9 9 SMOKE +10 10 VOLCANIC ASH +11 11 DUST +12 12 SAND +13 13 SNOW +14 14 CLOUD +15 15 PRECIPITATION +16 16 IMPOSSIBLE TO DETERMINE WHETHER SNOW IS FALLING OR NOT diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20026.table b/definitions/bufr/tables/0/wmo/35/codetables/20026.table new file mode 100644 index 000000000..285209472 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20026.table @@ -0,0 +1,16 @@ +0 0 NO CHANGE +1 1 SHALLOW +2 2 PATCHES +3 3 PARTIAL +4 4 FREEZING +5 5 LOW DRIFTING +6 6 BLOWING +7 7 INCREASING +8 8 DECREASING +9 9 IN SUSPENSION IN THE AIR +10 10 WALL +11 11 DENSE +12 12 WHITEOUT +13 13 DRIFTING AND BLOWING +14 14 RESERVED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20027.table b/definitions/bufr/tables/0/wmo/35/codetables/20027.table new file mode 100644 index 000000000..c337f16a7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20027.table @@ -0,0 +1,8 @@ +1 1 AT TIME OF OBSERVATION +2 2 IN PAST HOUR +3 3 IN TIME PERIOD FOR PAST WEATHER W1W2 +4 4 IN TIME PERIOD SPECIFIED +5 5 RESERVED +6 6 BELOW STATION LEVEL +7 7 AT THE STATION +8 8 IN THE VICINITY diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20028.table b/definitions/bufr/tables/0/wmo/35/codetables/20028.table new file mode 100644 index 000000000..6b701a2b6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20028.table @@ -0,0 +1,4 @@ +0 0 NO CHANGE (NC) +1 1 FORECAST TO WEAKEN (WKN) +2 2 FORECAST TO INTENSIFY (INTSF) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20029.table b/definitions/bufr/tables/0/wmo/35/codetables/20029.table new file mode 100644 index 000000000..8b46da891 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20029.table @@ -0,0 +1,4 @@ +0 0 NO RAIN +1 1 RAIN +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2003.table b/definitions/bufr/tables/0/wmo/35/codetables/2003.table new file mode 100644 index 000000000..f364d1811 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2003.table @@ -0,0 +1,13 @@ +0 0 PRESSURE INSTRUMENT ASSOCIATED WITH WIND MEASURING EQUIPMENT +1 1 OPTICAL THEODOLITE +2 2 RADIO THEODOLITE +3 3 RADAR +4 4 VLF-OMEGA +5 5 LORAN C +6 6 WIND PROFILER +7 7 SATELLITE NAVIGATION +8 8 RADIO-ACOUSTIC SOUNDING SYSTEM (RASS) +9 9 SODAR +10 10 LIDAR +14 14 PRESSURE INSTRUMENT ASSOCIATED WITH WIND MEASURING EQUIPMENT BUT PRESSURE ELEMENT FAILED DURING ASCENT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20032.table b/definitions/bufr/tables/0/wmo/35/codetables/20032.table new file mode 100644 index 000000000..fd37c1e76 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20032.table @@ -0,0 +1,6 @@ +0 0 ICE NOT BUILDING UP +1 1 ICE BUILDING UP SLOWLY +2 2 ICE BUILDING UP RAPIDLY +3 3 ICE MELTING OR BREAKING UP SLOWLY +4 4 ICE MELTING OR BREAKING UP RAPIDLY +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20033.table b/definitions/bufr/tables/0/wmo/35/codetables/20033.table new file mode 100644 index 000000000..817873323 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20033.table @@ -0,0 +1,3 @@ +1 1 ICING FROM OCEAN SPRAY +2 2 ICING FROM FOG +3 3 ICING FROM RAIN diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20034.table b/definitions/bufr/tables/0/wmo/35/codetables/20034.table new file mode 100644 index 000000000..668e91671 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20034.table @@ -0,0 +1,12 @@ +0 0 NO SEA ICE IN SIGHT +1 1 SHIP IN OPEN LEAD MORE THAN 1.0 NAUTICAL MILE WIDE, OR SHIP IN FAST ICE WITH BOUNDARY BEYOND LIMIT OF VISIBILITY +2 2 SEA ICE PRESENT IN CONCENTRATIONS LESS THAN 3/10 (3/8), OPEN WATER OR VERY OPEN PACK ICE +3 3 4/10 TO 6/10 (3/8 TO LESS THAN 6/8), OPEN PACK ICE +4 4 7/10 TO 8/10 (6/8 TO LESS THAN 7/8), CLOSE PACK ICE +5 5 9/10 OR MORE, BUT NOT 10/10 (7/8 TO LESS THAN 8/8), VERY CLOSE PACK ICE +6 6 STRIPS AND PATCHES OF PACK ICE WITH OPEN WATER BETWEEN +7 7 STRIPS AND PATCHES OF CLOSE OR VERY CLOSE PACK ICE WITH AREAS OF LESSER CONCENTRATION BETWEEN +8 8 FAST ICE WITH OPEN WATER, VERY OPEN OR OPEN PACK ICE TO SEAWARD OF THE ICE BOUNDARY +9 9 FAST ICE WITH CLOSE OR VERY CLOSE PACK ICE TO SEAWARD OF THE BOUNDARY +14 14 UNABLE TO REPORT, BECAUSE OF DARKNESS, LACK OF VISIBILITY, OR BECAUSE SHIP IS MORE THAN 0.5 NAUTICAL MILE AWAY FROM ICE EDGE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20035.table b/definitions/bufr/tables/0/wmo/35/codetables/20035.table new file mode 100644 index 000000000..07a4a0284 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20035.table @@ -0,0 +1,12 @@ +0 0 NO ICE OF LAND ORIGIN +1 1 1-5 ICEBERGS, NO GROWLERS OR BERGY BITS +2 2 6-10 ICEBERGS, NO GROWLERS OR BERGY BITS +3 3 11-20 ICEBERGS, NO GROWLERS OR BERGY BITS +4 4 UP TO AND INCLUDING 10 GROWLERS AND BERGY BITS - NO ICEBERGS +5 5 MORE THAN 10 GROWLERS AND BERGY BITS - NO ICEBERGS +6 6 1-5 ICEBERGS, WITH GROWLERS AND BERGY BITS +7 7 6-10 ICEBERGS, WITH GROWLERS AND BERGY BITS +8 8 11-20 ICEBERGS, WITH GROWLERS AND BERGY BITS +9 9 MORE THAN 20 ICEBERGS, WITH GROWLERS AND BERGY BITS - A MAJOR HAZARD TO NAVIGATION +14 14 UNABLE TO REPORT, BECAUSE OF DARKNESS, LACK OF VISIBILITY OR BECAUSE ONLY SEA ICE IS VISIBLE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20036.table b/definitions/bufr/tables/0/wmo/35/codetables/20036.table new file mode 100644 index 000000000..b4cc874bd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20036.table @@ -0,0 +1,12 @@ +0 0 SHIP IN OPEN WATER WITH FLOATING ICE IN SIGHT +1 1 SHIP IN EASILY PENETRABLE ICE; CONDITIONS IMPROVING +2 2 SHIP IN EASILY PENETRABLE ICE; CONDITIONS NOT CHANGING +3 3 SHIP IN EASILY PENETRABLE ICE; CONDITIONS WORSENING +4 4 SHIP IN ICE DIFFICULT TO PENETRATE; CONDITIONS IMPROVING +5 5 SHIP IN ICE DIFFICULT TO PENETRATE; CONDITIONS NOT CHANGING +6 6 SHIP IN ICE DIFFICULT TO PENETRATE AND CONDITIONS WORSENING. ICE FORMING AND FLOES FREEZING TOGETHER +7 7 SHIP IN ICE DIFFICULT TO PENETRATE AND CONDITIONS WORSENING. ICE UNDER SLIGHT PRESSURE +8 8 SHIP IN ICE DIFFICULT TO PENETRATE AND CONDITIONS WORSENING. ICE UNDER MODERATE OR SEVERE PRESSURE +9 9 SHIP IN ICE DIFFICULT TO PENETRATE AND CONDITIONS WORSENING. SHIP BESET +30 30 UNABLE TO REPORT, BECAUSE OF DARKNESS OR LACK OF VISIBILITY +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20037.table b/definitions/bufr/tables/0/wmo/35/codetables/20037.table new file mode 100644 index 000000000..474eeaae2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20037.table @@ -0,0 +1,12 @@ +0 0 NEW ICE ONLY (FRAZIL ICE, GREASE ICE, SLUSH, SHUGA) +1 1 NILAS OR ICE RIND, LESS THAN 10 CM THICK +2 2 YOUNG ICE (GREY ICE, GREY-WHITE ICE), 10-30 CM THICK +3 3 PREDOMINANTLY NEW AND/OR YOUNG ICE WITH SOME FIRST-YEAR ICE +4 4 PREDOMINANTLY THIN FIRST-YEAR ICE WITH SOME NEW AND/OR YOUNG ICE +5 5 ALL THIN FIRST-YEAR ICE (30-70 CM THICK) +6 6 PREDOMINANTLY MEDIUM FIRST-YEAR ICE (70-120 CM THICK) AND THICK FIRST-YEAR ICE (>120 CM THICK) WITH SOME THINNER (YOUNGER) FIRST-YEAR ICE +7 7 ALL MEDIUM AND THICK FIRST-YEAR ICE +8 8 PREDOMINANTLY MEDIUM AND THICK FIRST-YEAR ICE WITH SOME OLD ICE (USUALLY MORE THAN 2 METRES THICK) +9 9 PREDOMINANTLY OLD ICE +30 30 UNABLE TO REPORT, BECAUSE OF DARKNESS, LACK OF VISIBILITY OR BECAUSE ONLY ICE OF LAND ORIGIN IS VISIBLE OR BECAUSE SHIP IS MORE THAN 0.5 NAUTICAL MILE AWAY FROM ICE EDGE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2004.table b/definitions/bufr/tables/0/wmo/35/codetables/2004.table new file mode 100644 index 000000000..a55de6c58 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2004.table @@ -0,0 +1,11 @@ +0 0 USA OPEN PAN EVAPORIMETER (WITHOUT COVER) +1 1 USA OPEN PAN EVAPORIMETER (MESH COVERED) +2 2 GGI-3000 EVAPORIMETER (SUNKEN) +3 3 20 M2 TANK +4 4 OTHERS +5 5 RICE +6 6 WHEAT +7 7 MAIZE +8 8 SORGHUM +9 9 OTHER CROPS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20040.table b/definitions/bufr/tables/0/wmo/35/codetables/20040.table new file mode 100644 index 000000000..889393bf8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20040.table @@ -0,0 +1,9 @@ +0 0 DRIFT SNOW ENDED BEFORE THE HOUR OF OBSERVATION +1 1 INTENSITY DIMINISHING +2 2 NO CHANGE +3 3 INTENSITY INCREASING +4 4 CONTINUES, APART FROM INTERRUPTION LASTING LESS THAN 30 MINUTES +5 5 GENERAL DRIFT SNOW HAS BECOME DRIFT SNOW NEAR THE GROUND +6 6 DRIFT SNOW NEAR THE GROUND HAS BECOME GENERAL DRIFT SNOW +7 7 DRIFT SNOW HAS STARTED AGAIN AFTER AN INTERRUPTION OF MORE THAN 30 MINUTES +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20041.table b/definitions/bufr/tables/0/wmo/35/codetables/20041.table new file mode 100644 index 000000000..fc571208d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20041.table @@ -0,0 +1,14 @@ +0 0 NO ICING +1 1 LIGHT ICING +2 2 LIGHT ICING IN CLOUD +3 3 LIGHT ICING IN PRECIPITATION +4 4 MODERATE ICING +5 5 MODERATE ICING IN CLOUD +6 6 MODERATE ICING IN PRECIPITATION +7 7 SEVERE ICING +8 8 SEVERE ICING IN CLOUD +9 9 SEVERE ICING IN PRECIPITATION +10 10 TRACE OF ICING +11 11 TRACE OF ICING IN CLOUD +12 12 TRACE OF ICING IN PRECIPITATION +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20042.table b/definitions/bufr/tables/0/wmo/35/codetables/20042.table new file mode 100644 index 000000000..2493af725 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20042.table @@ -0,0 +1,4 @@ +0 0 NO ICING +1 1 ICING PRESENT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20045.table b/definitions/bufr/tables/0/wmo/35/codetables/20045.table new file mode 100644 index 000000000..91ae63f48 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20045.table @@ -0,0 +1,4 @@ +0 0 NO SLD CONDITIONS PRESENT +1 1 SLD CONDITIONS PRESENT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20048.table b/definitions/bufr/tables/0/wmo/35/codetables/20048.table new file mode 100644 index 000000000..4a5488266 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20048.table @@ -0,0 +1,5 @@ +0 0 STABILITY +1 1 DIMINUTION +2 2 INTENSIFICATION +3 3 UNKNOWN +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20050.table b/definitions/bufr/tables/0/wmo/35/codetables/20050.table new file mode 100644 index 000000000..3f8654ed5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20050.table @@ -0,0 +1,10 @@ +0 0 RESERVED +1 1 1ST LOW CLOUD +2 2 2ND LOW CLOUD +3 3 3RD LOW CLOUD +4 4 1ST MEDIUM CLOUD +5 5 2ND MEDIUM CLOUD +6 6 3RD MEDIUM CLOUD +7 7 1ST HIGH CLOUD +8 8 2ND HIGH CLOUD +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20055.table b/definitions/bufr/tables/0/wmo/35/codetables/20055.table new file mode 100644 index 000000000..ea06427f6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20055.table @@ -0,0 +1,12 @@ +0 0 CUMULUS, IF ANY, ARE QUITE SMALL; GENERALLY LESS THAN 2/8 COVERAGE, EXCEPT ON WINDWARD SLOPES OF ELEVATED TERRAIN; AVERAGE WIDTH OF CLOUD IS AT LEAST AS GREAT AS ITS VERTICAL THICKNESS +1 1 CUMULUS OF INTERMEDIATE SIZE WITH CLOUD COVER LESS THAN 5/8; AVERAGE CLOUD WIDTH IS MORE THAN ITS VERTICAL THICKNESS; TOWERS ARE VERTICAL WITH LITTLE OR NO EVIDENCE OF PRECIPITATION, EXCEPT ALONG SLOPES OF ELEVATED TERRAIN; A GENERAL ABSENCE OF MIDDLE AND UPPER CLOUDS +2 2 SWELLING CUMULUS WITH RAPIDLY GROWING TALL TURRETS WHICH DECREASE IN SIZE WITH HEIGHT AND WHOSE TOPS TEND TO SEPARATE FROM THE LONGER CLOUD BODY AND EVAPORATE WITHIN MINUTES OF THE SEPARATION +3 3 SWELLING CUMULUS WITH TOWERS HAVING A PRONOUNCED TILT IN A DOWNWIND DIRECTION; VERTICAL CLOUD THICKNESS IS MORE THAN ONE AND A HALF TIMES THAT OF ITS AVERAGE WIDTH +4 4 SWELLING CUMULUS WITH TOWERS HAVING A PRONOUNCED TILT IN AN UPWIND DIRECTION; VERTICAL CLOUD THICKNESS IS MORE THAN ONE AND A HALF TIMES THAT OF ITS AVERAGE WIDTH +5 5 TALL CUMULUS CONGESTUS WITH VERTICAL THICKNESS MORE THAN TWICE THE AVERAGE WIDTH; NOT ORGANIZED IN CLUSTERS OR LINES; ONE OR MORE LAYERS OF CLOUDS EXTEND OUT FROM THE CLOUD TOWERS, ALTHOUGH NO CONTINUOUS CLOUD LAYERS EXIST +6 6 ISOLATED CUMULONIMBUS OR LARGE CLUSTERS OF CUMULUS TURRETS SEPARATED BY WIDE AREAS IN WHICH CLOUDS ARE ABSENT; CLOUD BASES ARE GENERALLY DARK WITH SHOWERS OBSERVED IN MOST CELLS; SOME SCATTERED MIDDLE AND UPPER CLOUDS MAY BE PRESENT; INDIVIDUAL CUMULUS CELLS ARE ONE TO TWO TIMES HIGHER THAN THEY ARE WIDE +7 7 NUMEROUS CUMULUS EXTENDING THROUGH THE MIDDLE TROPOSPHERE WITH BROKEN TO OVERCAST SHEETS OF MIDDLE CLOUDS AND/OR CIRROSTRATUS; CUMULUS TOWERS DO NOT DECREASE GENERALLY IN SIZE WITH HEIGHT; RAGGED DARK CLOUD BASES WITH SOME SHOWERS PRESENT +8 8 CONTINUOUS DENSE MIDDLE CLOUDS AND/OR CIRROSTRATUS CLOUD SHEETS WITH SOME LARGE ISOLATED CUMULONIMBUS OR CUMULUS CONGESTUS CLOUDS PENETRATING THESE SHEETS; LIGHT RAIN OCCASIONALLY OBSERVED FROM THE ALTOSTRATUS; CUMULONIMBUS BASES RAGGED AND DARK WITH SHOWERS VISIBLE +9 9 CONTINUOUS SHEETS OF MIDDLE CLOUDS AND/OR CIRROSTRATUS WITH CUMULONIMBUS AND CUMULUS CONGESTUS IN ORGANIZED LINES OR CLOUD BANDS; RAIN IS GENERALLY OBSERVED FROM ALTOSTRATUS SHEETS AND HEAVY SHOWERS FROM CUMULONIMBUS; WIND HAS A SQUALLY CHARACTER +10 10 STATE OF SKY UNKNOWN OR NOT DESCRIBED BY ANY OF THE ABOVE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20056.table b/definitions/bufr/tables/0/wmo/35/codetables/20056.table new file mode 100644 index 000000000..204b220b8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20056.table @@ -0,0 +1,8 @@ +0 0 UNKNOWN +1 1 WATER +2 2 ICE +3 3 MIXED +4 4 CLEAR +5 5 SUPERCOOLED LIQUID WATER +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2006.table b/definitions/bufr/tables/0/wmo/35/codetables/2006.table new file mode 100644 index 000000000..93b791469 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2006.table @@ -0,0 +1,9 @@ +0 0 RESERVED +1 1 ELASTIC BACKSCATTER LIDAR +2 2 RAMAN BACKSCATTER LIDAR +3 3 RADAR WIND PROFILER +4 4 LIDAR WIND PROFILER +5 5 SODAR WIND PROFILER +6 6 WIND PROFILER +7 7 LIDAR +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20062.table b/definitions/bufr/tables/0/wmo/35/codetables/20062.table new file mode 100644 index 000000000..24d96c46f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20062.table @@ -0,0 +1,21 @@ +0 0 SURFACE OF GROUND DRY (WITHOUT CRACKS AND NO APPRECIABLE AMOUNT OF DUST OR LOOSE SAND) +1 1 SURFACE OF GROUND MOIST +2 2 SURFACE OF GROUND WET (STANDING WATER IN SMALL OR LARGE POOLS ON SURFACE) +3 3 FLOODED +4 4 SURFACE OF GROUND FROZEN +5 5 GLAZE ON GROUND +6 6 LOOSE DRY DUST OR SAND NOT COVERING GROUND COMPLETELY +7 7 THIN COVER OF LOOSE DRY DUST OR SAND COVERING GROUND COMPLETELY +8 8 MODERATE OR THICK COVER OF LOOSE DRY DUST OR SAND COVERING GROUND COMPLETELY +9 9 EXTREMELY DRY WITH CRACKS +10 10 GROUND PREDOMINANTLY COVERED BY ICE +11 11 COMPACT OR WET SNOW (WITH OR WITHOUT ICE) COVERING LESS THAN ONE HALF OF THE GROUND +12 12 COMPACT OR WET SNOW (WITH OR WITHOUT ICE) COVERING AT LEAST ONE HALF OF THE GROUND BUT GROUND NOT COMPLETELY COVERED +13 13 EVEN LAYER OF COMPACT OR WET SNOW COVERING GROUND COMPLETELY +14 14 UNEVEN LAYER OF COMPACT OR WET SNOW COVERING GROUND COMPLETELY +15 15 LOOSE DRY SNOW COVERING LESS THAN ONE HALF OF THE GROUND +16 16 LOOSE DRY SNOW COVERING AT LEAST ONE HALF OF THE GROUND BUT GROUND NOT COMPLETELY COVERED +17 17 EVEN LAYER OF LOOSE DRY SNOW COVERING GROUND COMPLETELY +18 18 UNEVEN LAYER OF LOOSE DRY SNOW COVERING GROUND COMPLETELY +19 19 SNOW COVERING GROUND COMPLETELY; DEEP DRIFTS +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20063.table b/definitions/bufr/tables/0/wmo/35/codetables/20063.table new file mode 100644 index 000000000..90ce1c086 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20063.table @@ -0,0 +1,71 @@ +0 0 RESERVED +1 1 HIGHEST WIND SPEED GUSTS GREATER THAN 11.5 M/S +2 2 HIGHEST MEAN WIND SPEED GREATER THAN 17.5 M/S +7 7 VISIBILITY GREATER THAN 100 000 M +10 10 MIRAGE - NO SPECIFICATION +11 11 MIRAGE - IMAGE OF DISTANT OBJECT RAISED (LOOMING) +13 13 MIRAGE - INVERTED IMAGE OF DISTANT OBJECT +14 14 MIRAGE - COMPLEX, MULTIPLE IMAGES OF DISTANT OBJECT (IMAGES NOT INVERTED) +15 15 MIRAGE - COMPLEX, MULTIPLE IMAGES OF DISTANT OBJECT (SOME IMAGES BEING INVERTED) +16 16 MIRAGE - SUN OR MOON SEEN APPRECIABLY DISTORTED +17 17 MIRAGE - SUN VISIBLE, ALTHOUGH ASTRONOMICALLY BELOW THE HORIZON +18 18 MIRAGE - MOON VISIBLE, ALTHOUGH ASTRONOMICALLY BELOW THE HORIZON +19 19 RESERVED +20 20 DAY DARKNESS, BAD, WORST IN DIRECTION SPECIFIED +21 21 DAY DARKNESS, VERY BAD, WORST IN DIRECTION SPECIFIED +22 22 DAY DARKNESS, BLACK, WORST IN DIRECTION SPECIFIED +31 31 SLIGHT COLORATION OF CLOUDS AT SUNRISE ASSOCIATED WITH A TROPICAL DISTURBANCE +32 32 DEEP-RED COLORATION OF CLOUDS AT SUNRISE ASSOCIATED WITH A TROPICAL DISTURBANCE +33 33 SLIGHT COLORATION OF CLOUDS AT SUNSET ASSOCIATED WITH A TROPICAL DISTURBANCE +34 34 DEEP-RED COLORATION OF CLOUDS AT SUNSET ASSOCIATED WITH A TROPICAL DISTURBANCE +35 35 CONVERGENCE OF CH CLOUDS AT A POINT BELOW 45° FORMING OR INCREASING AND ASSOCIATED WITH A TROPICAL DISTURBANCE +36 36 CONVERGENCE OF CH CLOUDS AT A POINT ABOVE 45° ASSOCIATED WITH A TROPICAL DISTURBANCE +37 37 CONVERGENCE OF CH CLOUDS AT A POINT BELOW 45° DISSOLVING OR DIMINISHING AND ASSOCIATED WITH A TROPICAL DISTURBANCE +38 38 CONVERGENCE OF CH CLOUDS AT A POINT ABOVE 45° ASSOCIATED WITH A TROPICAL DISTURBANCE +39 39 RESERVED +40 40 HOAR FROST ON HORIZONTAL SURFACES +41 41 HOAR FROST ON HORIZONTAL AND VERTICAL SURFACES +42 42 PRECIPITATION CONTAINING SAND OR DESERT DUST +43 43 PRECIPITATION CONTAINING VOLCANIC ASH +50 50 CALM OR LIGHT WIND FOLLOWED BY A SQUALL +51 51 CALM OR LIGHT WIND FOLLOWED BY A SUCCESSION OF SQUALLS +52 52 GUSTY WEATHER FOLLOWED BY A SQUALL +53 53 GUSTY WEATHER FOLLOWED BY A SUCCESSION OF SQUALLS +54 54 SQUALL FOLLOWED BY GUSTY WEATHER +55 55 GENERAL GUSTY WEATHER WITH SQUALL AT INTERVALS +56 56 SQUALL APPROACHING STATION +57 57 LINE SQUALL +58 58 SQUALL WITH DRIFTING OR BLOWING DUST OR SAND +59 59 LINE SQUALL WITH DRIFTING OR BLOWING DUST OR SAND +60 60 TEMPERATURE STEADY +61 61 TEMPERATURE FALLING, WITHOUT GOING BELOW 0°C +62 62 TEMPERATURE RISING, WITHOUT GOING ABOVE 0°C +63 63 TEMPERATURE FALLING TO A VALUE BELOW 0°C +64 64 TEMPERATURE RISING TO A VALUE ABOVE 0°C +65 65 IRREGULAR VARIATION, OSCILLATIONS OF TEMPERATURE PASSING THROUGH 0°C +66 66 IRREGULAR VARIATION, OSCILLATIONS OF TEMPERATURE NOT PASSING THROUGH 0°C +67 67 VARIATION OF TEMPERATURE NOT OBSERVED +68 68 NOT ALLOCATED +69 69 VARIATION OF TEMPERATURE UNKNOWN OWING TO LACK OF THERMOGRAPH +70 70 VISIBILITY HAS NOT VARIED (SUN* VISIBLE) TOWARDS DIRECTION SPECIFIED +71 71 VISIBILITY HAS NOT VARIED (SUN* INVISIBLE) TOWARDS DIRECTION SPECIFIED +72 72 VISIBILITY HAS INCREASED (SUN* VISIBLE) TOWARDS DIRECTION SPECIFIED +73 73 VISIBILITY HAS INCREASED (SUN* INVISIBLE) TOWARDS DIRECTION SPECIFIED +74 74 VISIBILITY HAS DECREASED (SUN* VISIBLE) TOWARDS DIRECTION SPECIFIED +75 75 VISIBILITY HAS DECREASED (SUN* INVISIBLE) TOWARDS DIRECTION SPECIFIED +76 76 FOG COMING FROM DIRECTION SPECIFIED +77 77 FOG HAS LIFTED, WITHOUT DISSIPATING +78 78 FOG HAS DISPERSED WITHOUT REGARD TO DIRECTION +79 79 MOVING PATCHES OR BANKS OF FOG +80 80 BROCKEN SPECTRE +81 81 RAINBOW +82 82 SOLAR OR LUNAR HALO +83 83 PARHELIA OR ANTHELIA +84 84 SUN PILLAR +85 85 CORONA +86 86 TWILIGHT GLOW +87 87 TWILIGHT GLOW ON THE MOUNTAINS (ALPENGLüHEN) +88 88 MIRAGE +89 89 ZODIACAL LIGHT +90 90 ST ELMO'S FIRE +1023 1023 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2007.table b/definitions/bufr/tables/0/wmo/35/codetables/2007.table new file mode 100644 index 000000000..05b4c6bd1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2007.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 SHAFT ENCODER FLOAT SYSTEM +2 2 ULTRASONIC +3 3 RADAR +4 4 PRESSURE (SINGLE TRANSDUCER) +5 5 PRESSURE (MULTIPLE TRANSDUCER) +6 6 PRESSURE (IN STILLING WELL) +7 7 BUBBLER PRESSURE +8 8 ACOUSTIC (WITH SOUNDING TUBE) +9 9 ACOUSTIC (IN OPEN AIR) +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20071.table b/definitions/bufr/tables/0/wmo/35/codetables/20071.table new file mode 100644 index 000000000..72367bf8b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20071.table @@ -0,0 +1,11 @@ +0 0 NO ASSESSMENT +1 1 LESS THAN 50 KM +2 2 BETWEEN 50 AND 200 KM +3 3 MORE THAN 200 KM +4 4 LESS THAN 50 KM +5 5 BETWEEN 50 AND 200 KM +6 6 MORE THAN 200 KM +7 7 LESS THAN 50 KM +8 8 BETWEEN 50 AND 200 KM +9 9 MORE THAN 200 KM +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2008.table b/definitions/bufr/tables/0/wmo/35/codetables/2008.table new file mode 100644 index 000000000..e669727ec --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2008.table @@ -0,0 +1,7 @@ +0 0 FIXED PLATFORM +1 1 MOBILE OFFSHORE DRILL SHIP +2 2 JACK-UP RIG +3 3 SEMI-SUBMERSIBLE PLATFORM +4 4 FLOATING PRODUCTION STORAGE AND OFFLOADING (FPSO) UNIT +5 5 LIGHT VESSEL +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20085.table b/definitions/bufr/tables/0/wmo/35/codetables/20085.table new file mode 100644 index 000000000..f929e878d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20085.table @@ -0,0 +1,3 @@ +0 0 CLEARED (CLRD//) +1 1 ALL RUNWAYS CLOSED (SNOCLO) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20086.table b/definitions/bufr/tables/0/wmo/35/codetables/20086.table new file mode 100644 index 000000000..b5433303a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20086.table @@ -0,0 +1,11 @@ +0 0 CLEAR AND DRY +1 1 DAMP +2 2 WET WITH WATER PATCHES +3 3 RIME AND FROST COVERED (DEPTH NORMALLY LESS THAN 1 MM) +4 4 DRY SNOW +5 5 WET SNOW +6 6 SLUSH +7 7 ICE +8 8 COMPACTED OR ROLLED SNOW +9 9 FROZEN RUTS OR RIDGES +15 15 MISSING OR NOT REPORTED (E.G. DUE TO RUNWAY CLEARANCE IN PROGRESS) diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20087.table b/definitions/bufr/tables/0/wmo/35/codetables/20087.table new file mode 100644 index 000000000..ee7971ab6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20087.table @@ -0,0 +1,6 @@ +0 0 RESERVED +1 1 LESS THAN 10% OF RUNWAY COVERED +2 2 11% TO 25% OF RUNWAY COVERED +5 5 26% TO 50% OF RUNWAY COVERED +9 9 51% TO 100% OF RUNWAY COVERED +15 15 MISSING OR NOT REPORTED (E.G. DUE TO RUNWAY CLEARANCE IN PROGRESS) diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20089.table b/definitions/bufr/tables/0/wmo/35/codetables/20089.table new file mode 100644 index 000000000..f616c622c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20089.table @@ -0,0 +1,11 @@ +0 0 0.00 +1 1 0.01 +89 89 0.89 +90 90 0.90 +91 91 BRAKING ACTION POOR +92 92 BRAKING ACTION MEDIUM TO POOR +93 93 BRAKING ACTION MEDIUM +94 94 BRAKING ACTION MEDIUM TO GOOD +95 95 BRAKING ACTION GOOD +99 99 UNRELIABLE +127 127 MISSING, NOT REPORTED AND/OR RUNWAY NOT OPERATIONAL diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20090.table b/definitions/bufr/tables/0/wmo/35/codetables/20090.table new file mode 100644 index 000000000..d13502ec4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20090.table @@ -0,0 +1,7 @@ +0 0 RESERVED +1 1 NACREOUS CLOUDS +2 2 NOCTILUCENT CLOUDS +3 3 CLOUDS FROM WATERFALLS +4 4 CLOUDS FROM FIRES +5 5 CLOUDS FROM VOLCANIC ERUPTIONS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20101.table b/definitions/bufr/tables/0/wmo/35/codetables/20101.table new file mode 100644 index 000000000..abe89f5fe --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20101.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 SCHISTOCERCA GREGARIA +2 2 LOCUSTA MIGRATORIA +3 3 NOMADACRIS SEPTEMFASCIATA +4 4 OEDALEUS SENEGALENSIS +5 5 ANRACRIDIUM SPP +6 6 OTHER LOCUSTS +7 7 OTHER GRASSHOPPERS +8 8 OTHER CRICKETS +9 9 SPODOPTERA EXEMPTA +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20102.table b/definitions/bufr/tables/0/wmo/35/codetables/20102.table new file mode 100644 index 000000000..6a53039e9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20102.table @@ -0,0 +1,11 @@ +0 0 GREEN +1 1 GREEN OR BLACK +2 2 BLACK +3 3 YELLOW AND BLACK +4 4 STRAW/GREY +5 5 PINK +6 6 DARK RED/BROWN +7 7 MIXED RED AND YELLOW +8 8 YELLOW +9 9 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20103.table b/definitions/bufr/tables/0/wmo/35/codetables/20103.table new file mode 100644 index 000000000..9c4f68920 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20103.table @@ -0,0 +1,11 @@ +0 0 HOPPERS (NYMPHS, LARVAE), STAGE 1 +1 1 HOPPERS (NYMPHS, LARVAE), STAGE 2 OR MIXED 1, 2 INSTARS (STAGES) +2 2 HOPPERS (NYMPHS, LARVAE), STAGE 3 OR MIXED 2, 3 INSTARS +3 3 HOPPERS (NYMPHS, LARVAE), STAGE 4 OR MIXED 3, 4 INSTARS +4 4 HOPPERS (NYMPHS, LARVAE), STAGE 5 OR MIXED 4, 5 INSTARS +5 5 HOPPERS (NYMPHS, LARVAE), STAGE MIXED, ALL OR MANY INSTARS +6 6 FLEDGLINGS (WINGS TOO SOFT FOR SUSTAINED FLIGHT) +7 7 IMMATURE ADULTS +8 8 MIXED MATURITY ADULTS +9 9 MATURE ADULTS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20104.table b/definitions/bufr/tables/0/wmo/35/codetables/20104.table new file mode 100644 index 000000000..15ca8acd4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20104.table @@ -0,0 +1,11 @@ +0 0 HOPPERS ONLY, MAINLY IN BANDS OR CLUSTERS +1 1 WINGED ADULTS IN THE VICINITY MORE THAN 10 KILOMETRES FROM POINT OF OBSERVATION +2 2 LOCUSTS IN FLIGHT, A FEW SEEN AT THE STATION +3 3 LOCUSTS AT THE STATION, MOST OF THEM ON THE GROUND +4 4 LOCUSTS, SOME ON GROUND AND OTHERS IN FLIGHT AT A HEIGHT LESS THAN 10 METRES +5 5 LOCUSTS, SOME ON GROUND AND OTHERS IN FLIGHT AT A HEIGHT GREATER THAN 10 METRES +6 6 LOCUSTS, MOST IN FLIGHT AT A HEIGHT LESS THAN 10 METRES +7 7 LOCUSTS, MOST IN FLIGHT AT A HEIGHT GREATER THAN 10 METRES +8 8 LOCUSTS, ALL OVER INFLICTING SEVERE DAMAGE TO VEGETATION, NO EXTERMINATION OPERATION +9 9 LOCUSTS, ALL OVER INFLICTING SEVERE DAMAGE TO VEGETATION, EXTERMINATION OPERATION IN PROGRESS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20105.table b/definitions/bufr/tables/0/wmo/35/codetables/20105.table new file mode 100644 index 000000000..b7406c09c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20105.table @@ -0,0 +1,12 @@ +0 0 SMALL SWARM LESS THAN 1 KM2 OR ADULTS IN GROUND, TENS OR HUNDREDS OF INDIVIDUALS VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE LESS THAN 1 HOUR AGO +1 1 SMALL SWARM LESS THAN 1 KM2 OR ADULTS IN GROUND, TENS OR HUNDREDS OF INDIVIDUALS VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE 1 TO 6 HOURS AGO +2 2 SMALL SWARM LESS THAN 1 KM2 OR ADULTS IN GROUND, TENS OR HUNDREDS OF INDIVIDUALS VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE OVER 6 HOURS AGO +3 3 MEDIUM SWARM OR SCATTERED ADULTS, SEVERAL VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE LESS THAN 1 HOUR AGO +4 4 MEDIUM SWARM OR SCATTERED ADULTS, SEVERAL VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE 1 TO 6 HOURS AGO +5 5 MEDIUM SWARM OR SCATTERED ADULTS, SEVERAL VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE OVER 6 HOURS AGO +6 6 LARGE SWARM OR ISOLATED ADULTS, SEEN SINGLY, DURATION OF PASSAGE LESS THAN 1 HOUR AGO +7 7 LARGE SWARM OR ISOLATED ADULTS, SEEN SINGLY, DURATION OF PASSAGE 1 TO 6 HOURS AGO +8 8 LARGE SWARM OR ISOLATED ADULTS, SEEN SINGLY, DURATION OF PASSAGE OVER 6 HOURS AGO +9 9 MORE THAN ONE SWARM OF LOCUSTS +10 10 SIZE OF SWARM AND/OR DURATION OF PASSAGE NOT DETERMINED OWING TO DARKNESS OR SIMILAR PHENOMENA +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20106.table b/definitions/bufr/tables/0/wmo/35/codetables/20106.table new file mode 100644 index 000000000..2a8c4a098 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20106.table @@ -0,0 +1,7 @@ +0 0 RESERVED +1 1 THIN DENSITY SWARM (SWARM VISIBLE ONLY WHEN NEAR ENOUGH FOR INDIVIDUAL LOCUSTS TO BE DISCERNED) +2 2 MEDIUM DENSITY SWARM +3 3 DENSE SWARM (OBSCURING NEARBY FEATURES, E.G. TREES) +4 4 ISOLATED HOPPERS SEEN SINGLY +5 5 SCATTERED HOPPERS, SEVERAL VISIBLE SIMULTANEOUSLY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20107.table b/definitions/bufr/tables/0/wmo/35/codetables/20107.table new file mode 100644 index 000000000..0bea30ad5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20107.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 GENERALLY IN THE DIRECTION NE +2 2 GENERALLY IN THE DIRECTION E +3 3 GENERALLY IN THE DIRECTION SE +4 4 GENERALLY IN THE DIRECTION S +5 5 GENERALLY IN THE DIRECTION SW +6 6 GENERALLY IN THE DIRECTION W +7 7 GENERALLY IN THE DIRECTION NW +8 8 GENERALLY IN THE DIRECTION N +9 9 SPECIFIC DIRECTION INDETERMINABLE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20108.table b/definitions/bufr/tables/0/wmo/35/codetables/20108.table new file mode 100644 index 000000000..4404614cb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20108.table @@ -0,0 +1,9 @@ +0 0 BARE GROUND +1 1 DRY, PRESENCE OF FEW AND ISOLATED SHRUBS +2 2 SPARSE VEGETATION (SPROUTING) +3 3 DENSE VEGETATION (SPROUTING) +4 4 SPARSE VEGETATION (GROWING) +5 5 DENSE VEGETATION (GROWING) +6 6 SPARSE VEGETATION IN FLOWER +7 7 DENSE VEGETATION IN FLOWER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2011.table b/definitions/bufr/tables/0/wmo/35/codetables/2011.table new file mode 100644 index 000000000..a7f674a27 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2011.table @@ -0,0 +1,100 @@ +0 0 RESERVED +1 1 NOT VACANT +2 2 NO RADIOSONDE - PASSIVE TARGET (E.G. REFLECTOR) +3 3 NO RADIOSONDE - ACTIVE TARGET (E.G. TRANSPONDER) +4 4 NO RADIOSONDE - PASSIVE TEMPERATURE-HUMIDITY PROFILER +5 5 NO RADIOSONDE - ACTIVE TEMPERATURE-HUMIDITY PROFILER +6 6 NO RADIOSONDE - RADIO-ACOUSTIC SOUNDER +7 7 NOT VACANT +8 8 NO RADIOSONDE -... (RESERVED) +9 9 NO RADIOSONDE - SYSTEM UNKNOWN OR NOT SPECIFIED +10 10 SIPPICAN LMS5 W/CHIP THERMISTOR, DUCT MOUNTED CAPACITANCE RELATIVE HUMIDITY SENSOR AND DERIVED PRESSURE FROM GPS HEIGHT +11 11 SIPPICAN LMS6 W/CHIP THERMISTOR, EXTERNAL BOOM MOUNTED CAPACITANCE RELATIVE HUMIDITY SENSOR, AND DERIVED PRESSURE FROM GPS HEIGHT +12 12 JIN YANG RSG-20A WITH DERIVED PRESSURE FROM GPS HEIGHT/GL-5000P (REPUBLIC OF KOREA) +13 13 VAISALA RS92/MARWIN MW32 (FINLAND) +14 14 VAISALA RS92/DIGICORA MW41 (FINLAND) +15 15 PAZA-12M/RADIOTHEODOLITE-UL (UKRAINE) +16 16 PAZA-22/AVK-1 (UKRAINE) +17 17 GRAW DFM-09 (GERMANY) +18 18 NOT VACANT +19 19 POLUS-MRZ-N1 (RUSSIAN FEDERATION) +20 20 NOT VACANT +21 21 JIN YANG 1524LA LORAN-C/GL5000 (REPUBLIC OF KOREA) +22 22 MEISEI RS-11G GPS RADIOSONDE W/THERMISTOR, CAPACITANCE RELATIVE HUMIDITY SENSOR, AND DERIVED PRESSURE FROM GPS HEIGHT (JAPAN) +23 23 VAISALA RS41/DIGICORA MW41 (FINLAND) +24 24 VAISALA RS41/AUTOSONDE (FINLAND) +25 25 VAISALA RS41/MARWIN MW32 (FINLAND) +26 26 METEOLABOR SRS-C34/ARGUS 37 (SWITZERLAND) +27 27 NOT VACANT +28 28 AVK - AK2-02 (RUSSIAN FEDERATION) +29 29 MARL-A OR VEKTOR-M - AK2-02 (RUSSIAN FEDERATION) +30 30 MEISEI RS-06G (JAPAN) +31 31 TAIYUAN GTS1-1/GFE(L) (CHINA ) +32 32 SHANGHAI GTS1/GFE(L) (CHINA) +33 33 NANJING GTS1-2/GFE(L) (CHINA) +34 34 IMET-4 GPS RADIOSONDE (USA) +35 35 MEISEI IMS-100 GPS RADIOSONDE W/THERMISTOR SENSOR, CAPACITANCE RELATIVE HUMIDITY SENSOR, AND DERIVED PRESSURE FROM GPS HEIGHT (JAPAN) +36 36 MEISEI IMDS-17 GPS DROPSONDE W/THERMISTOR SENSOR, CAPACITANCE RELATIVE HUMIDITY SENSOR, AND CAPACITANCE PRESSURE SENSOR (JAPAN) +37 37 NOT VACANT +38 38 VIZ LOCATE LORAN-C (UNITED STATES) +39 39 SPRENGER E076 (GERMANY) +40 40 SPRENGER E084 (GERMANY) +41 41 VAISALA RS41 WITH PRESSURE DERIVED FROM GPS HEIGHT/DIGICORA MW41 (FINLAND) +42 42 VAISALA RS41 WITH PRESSURE DERIVED FROM GPS HEIGHT/AUTOSONDE (FINLAND) +43 43 NANJING DAQIAO XGP-3G (CHINA)* +44 44 TIANJIN HUAYUNTIANYI GTS(U)1 (CHINA)* +45 45 BEIJING CHANGFENG CF-06 (CHINA)* +46 46 SHANGHAI CHANGWANG GTS3 (CHINA)* +47 47 NOT VACANT +48 48 PAZA-22M/MARL-A +49 49 NOT VACANT +50 50 METEOLABOR SRS-C50/ARGUS (SWITZERLAND) +51 51 NOT VACANT +52 52 VAISALA RS92-NGP/INTERMET IMS-2000 (UNITED STATES) +53 53 AVK - I-2012 (RUSSIAN FEDERATION) +54 54 GRAW DFM-17 (GERMANY) +55 55 MEISEI RS-01G (JAPAN) +56 56 M2K2 (FRANCE) +57 57 MODEM M2K2-DC (FRANCE) +58 58 AVK-BAR (RUSSIAN FEDERATION) +59 59 MODEM M2K2-R 1680 MHZ RDF RADIOSONDE WITH PRESSURE SENSOR CHIP (FRANCE) +60 60 MARL-A OR VEKTOR-M - I-2012 (RUSSIAN FEDERATION) +61 61 NOT VACANT +62 62 MARL-A OR VEKTOR-M - MRZ-3MK (RUSSIAN FEDERATION) +63 63 MODEM M20 RADIOSONDE W/THERMISTOR SENSOR, CAPACITANCE RELATIVE HUMIDITY SENSOR, AND DERIVED PRESSURE FROM GPS HEIGHT (FRANCE) +64 64 MODEM PILOTSONDE GPS RADIOSONDE (FRANCE) +65 65 VIZ TRANSPONDER RADIOSONDE, MODEL NUMBER 1499-520 (UNITED STATES) +66 66 VAISALA RS80 /AUTOSONDE (FINLAND) +67 67 VAISALA RS80/DIGICORA III (FINLAND) +68 68 AVK-RZM-2 (RUSSIAN FEDERATION) +69 69 MARL-A OR VEKTOR-M-RZM-2 (RUSSIAN FEDERATION) +70 70 VAISALA RS92/STAR (FINLAND) +71 71 VAISALA RS90/LORAN/DIGICORA I, II OR MARWIN (FINLAND) +72 72 VAISALA RS90/PC-CORA (FINLAND) +73 73 VAISALA RS90/AUTOSONDE (FINLAND) +74 74 VAISALA RS90/STAR (FINLAND) +75 75 AVK-MRZ-ARMA (RUSSIAN FEDERATION) +76 76 AVK-RF95-ARMA (RUSSIAN FEDERATION) +77 77 MODEM GPSONDE M10 (FRANCE) +78 78 VAISALA RS90/DIGICORA III (FINLAND) +79 79 VAISALA RS92/DIGICORA I,II OR MARWIN (FINLAND) +80 80 VAISALA RS92/DIGICORA III (FINLAND) +81 81 VAISALA RS92/AUTOSONDE (FINLAND) +82 82 LOCKHEED MARTIN LMS-6 W/CHIP THERMISTOR; EXTERNAL BOOM MOUNTED POLYMER CAPACITIVE RELATIVE HUMIDITY SENSOR; CAPACITIVE PRESSURE SENSOR AND GPS WIND +83 83 VAISALA RS92-D/INTERMET IMS 1500 W/SILICON CAPACITIVE PRESSURE SENSOR, CAPACITIVE WIRE TEMPERATURE SENSOR, TWIN THIN-FILM HEATED POLYMER CAPACITIVE RELATIVE HUMIDITY SENSOR AND RDF WIND +84 84 IMET-54/IMET-3200/3400 GPS RADIOSONDE WITH DERIVED PRESSURE FROM GPS HEIGHT (SOUTH AFRICA) +85 85 SIPPICAN MARK IIA WITH CHIP THERMISTOR, CARBON ELEMENT AND DERIVED PRESSURE FROM GPS HEIGHT +86 86 SIPPICAN MARK II WITH CHIP THERMISTOR, PRESSURE AND CARBON ELEMENT +87 87 SIPPICAN MARK IIA WITH CHIP THERMISTOR, PRESSURE AND CARBON ELEMENT +88 88 MARL-A OR VEKTOR-M-MRZ (RUSSIAN FEDERATION) +89 89 MARL-A OR VEKTOR-M-BAR (RUSSIAN FEDERATION) +90 90 RADIOSONDE NOT SPECIFIED OR UNKNOWN +91 91 PRESSURE ONLY RADIOSONDE +92 92 PRESSURE ONLY RADIOSONDE PLUS TRANSPONDER +93 93 PRESSURE ONLY RADIOSONDE PLUS RADAR REFLECTOR +94 94 NO PRESSURE RADIOSONDE PLUS TRANSPONDER +95 95 NO PRESSURE RADIOSONDE PLUS RADAR REFLECTOR +96 96 DESCENDING RADIOSONDE +97 97 IMET-2/IMET-1500 RDF RADIOSONDE WITH PRESSURE SENSOR CHIP (SOUTH AFRICA) +98 98 IMET-2/IMET-1500 GPS RADIOSONDE WITH DERIVED PRESSURE FROM GPS HEIGHT (SOUTH AFRICA) +99 99 IMET-2/IMET-3200 GPS RADIOSONDE WITH DERIVED PRESSURE FROM GPS HEIGHT (SOUTH AFRICA) diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20119.table b/definitions/bufr/tables/0/wmo/35/codetables/20119.table new file mode 100644 index 000000000..4a4b40f87 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20119.table @@ -0,0 +1,4 @@ +0 0 NOT DEFINED +1 1 POSITIVE +2 2 NEGATIVE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20124.table b/definitions/bufr/tables/0/wmo/35/codetables/20124.table new file mode 100644 index 000000000..f78eacb17 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20124.table @@ -0,0 +1,4 @@ +0 0 NOT DEFINED +1 1 LIGHTNING STROKE +2 2 LIGHTNING FLASH, BY MANUAL OBSERVATION, OR IF EQUIPMENT INSENSITIVE TO STROKE RESOLUTION +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2013.table b/definitions/bufr/tables/0/wmo/35/codetables/2013.table new file mode 100644 index 000000000..91ce6501d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2013.table @@ -0,0 +1,11 @@ +0 0 NO CORRECTION +1 1 CIMO SOLAR CORRECTED AND CIMO INFRARED CORRECTED +2 2 CIMO SOLAR CORRECTED AND INFRARED CORRECTED +3 3 CIMO SOLAR CORRECTED ONLY +4 4 SOLAR AND INFRARED CORRECTED AUTOMATICALLY BY RADIOSONDE SYSTEM +5 5 SOLAR CORRECTED AUTOMATICALLY BY RADIOSONDE SYSTEM +6 6 SOLAR AND INFRARED CORRECTED AS SPECIFIED BY COUNTRY +7 7 SOLAR CORRECTED AS SPECIFIED BY COUNTRY +8 8 SOLAR AND INFRARED CORRECTED AS SPECIFIED BY GRUAN +9 9 SOLAR CORRECTED AS SPECIFIED BY GRUAN +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20136.table b/definitions/bufr/tables/0/wmo/35/codetables/20136.table new file mode 100644 index 000000000..0369f5de7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20136.table @@ -0,0 +1,44 @@ +0 0 ISOLATED CUMULUS HUMILIS AND/OR CUMULUS MEDIOCRIS OF VERTICAL DEVELOPMENT +1 1 NUMEROUS CUMULUS HUMILIS AND/OR CUMULUS MEDIOCRIS OF VERTICAL DEVELOPMENT +2 2 ISOLATED CUMULUS CONGESTUS OF VERTICAL DEVELOPMENT +3 3 NUMEROUS CUMULUS CONGESTUS OF VERTICAL DEVELOPMENT +4 4 ISOLATED CUMULONIMBUS OF VERTICAL DEVELOPMENT +5 5 NUMEROUS CUMULONIMBUS OF VERTICAL DEVELOPMENT +6 6 ISOLATED CUMULUS AND CUMULONIMBUS OF VERTICAL DEVELOPMENT +7 7 NUMEROUS CUMULUS AND CUMULONIMBUS OF VERTICAL DEVELOPMENT +10 10 RESERVED +11 11 ISOLATED OROGRAPHIC CLOUDS, PILEUS, INCUS, FORMING +12 12 ISOLATED OROGRAPHIC CLOUDS, PILEUS, INCUS, NOT CHANGING +13 13 ISOLATED OROGRAPHIC CLOUDS, PILEUS, INCUS, DISSOLVING +14 14 IRREGULAR BANKS OF OROGRAPHIC CLOUD, FöHN BANK, ETC., FORMING +15 15 IRREGULAR BANKS OF OROGRAPHIC CLOUD, FöHN BANK, ETC., NOT CHANGING +16 16 IRREGULAR BANKS OF OROGRAPHIC CLOUD, FöHN BANK, ETC., DISSOLVING +17 17 COMPACT LAYER OF OROGRAPHIC CLOUD, FöHN BANK, ETC., FORMING +18 18 COMPACT LAYER OF OROGRAPHIC CLOUD, FöHN BANK, ETC., NOT CHANGING +19 19 COMPACT LAYER OF OROGRAPHIC CLOUD, FöHN BANK, ETC., DISSOLVING +20 20 ALL MOUNTAINS OPEN, ONLY SMALL AMOUNTS OF CLOUD PRESENT +21 21 MOUNTAINS PARTLY COVERED WITH DETACHED CLOUDS (NOT MORE THAN HALF THE PEAKS CAN BE SEEN) +22 22 ALL MOUNTAIN SLOPES COVERED, PEAKS AND PASSES FREE +23 23 MOUNTAINS OPEN ON OBSERVER’S SIDE (ONLY SMALL AMOUNTS OF CLOUD PRESENT), BUT A CONTINUOUS WALL OF CLOUD ON THE OTHER SIDE +24 24 CLOUDS LOW ABOVE THE MOUNTAINS, BUT ALL SLOPES AND MOUNTAINS OPEN (ONLY SMALL AMOUNTS OF CLOUD ON THE SLOPES) +25 25 CLOUDS LOW ABOVE THE MOUNTAINS, PEAKS PARTLY COVERED BY PRECIPITATION TRAILS OR CLOUDS +26 26 ALL PEAKS COVERED BUT PASSES OPEN, SLOPES EITHER OPEN OR COVERED +27 27 MOUNTAINS GENERALLY COVERED BUT SOME PEAKS FREE, SLOPES WHOLLY OR PARTIALLY COVERED +28 28 ALL PEAKS, PASSES AND SLOPES COVERED +29 29 MOUNTAINS CANNOT BE SEEN OWING TO DARKNESS, FOG, SNOWSTORM, PRECIPITATION, ETC. +35 35 NON-PERSISTENT CONDENSATION TRAILS +36 36 PERSISTENT CONDENSATION TRAILS COVERING LESS THAN 1/8 OF THE SKY +37 37 PERSISTENT CONDENSATION TRAILS COVERING 1/8 OF THE SKY +38 38 PERSISTENT CONDENSATION TRAILS COVERING 2/8 OF THE SKY +39 39 PERSISTENT CONDENSATION TRAILS COVERING 3/8 OR MORE OF THE SKY +40 40 NO CLOUD OR MIST OBSERVED FROM A HIGHER LEVEL +41 41 MIST, CLEAR ABOVE OBSERVED FROM A HIGHER LEVEL +42 42 FOG PATCHES OBSERVED FROM A HIGHER LEVEL +43 43 LAYER OF SLIGHT FOG OBSERVED FROM A HIGHER LEVEL +44 44 LAYER OF THICK FOG OBSERVED FROM A HIGHER LEVEL +45 45 SOME ISOLATED CLOUDS OBSERVED FROM A HIGHER LEVEL +46 46 ISOLATED CLOUDS AND FOG BELOW OBSERVED FROM A HIGHER LEVEL +47 47 MANY ISOLATED CLOUDS OBSERVED FROM A HIGHER LEVEL +48 48 SEA OF CLOUDS OBSERVED FROM A HIGHER LEVEL +49 49 BAD VISIBILITY OBSCURING THE DOWNWARD VIEW OBSERVED FROM A HIGHER LEVEL +511 511 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20137.table b/definitions/bufr/tables/0/wmo/35/codetables/20137.table new file mode 100644 index 000000000..adda88054 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20137.table @@ -0,0 +1,11 @@ +0 0 NO CHANGE +1 1 CUMULIFICATION +2 2 SLOW ELEVATION +3 3 RAPID ELEVATION +4 4 ELEVATION AND STRATIFICATION +5 5 SLOW LOWERING +6 6 RAPID LOWERING +7 7 STRATIFICATION +8 8 STRATIFICATION AND LOWERING +9 9 RAPID CHANGE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/20138.table b/definitions/bufr/tables/0/wmo/35/codetables/20138.table new file mode 100644 index 000000000..ed9b315fc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/20138.table @@ -0,0 +1,9 @@ +0 0 DRY +1 1 MOIST +2 2 WET +3 3 RIME +4 4 SNOW +5 5 ICE +6 6 GLAZE +7 7 NOT DRY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2014.table b/definitions/bufr/tables/0/wmo/35/codetables/2014.table new file mode 100644 index 000000000..bc5c5fcb8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2014.table @@ -0,0 +1,51 @@ +0 0 NO WIND FINDING +1 1 AUTOMATIC WITH AUXILIARY OPTICAL DIRECTION FINDING +2 2 AUTOMATIC WITH AUXILIARY RADIO DIRECTION FINDING +3 3 AUTOMATIC WITH AUXILIARY RANGING +4 4 NOT USED +5 5 AUTOMATIC WITH MULTIPLE VLF-OMEGA SIGNALS +6 6 AUTOMATIC CROSS CHAIN LORAN-C +7 7 AUTOMATIC WITH AUXILIARY WIND PROFILER +8 8 AUTOMATIC SATELLITE NAVIGATION +19 19 TRACKING TECHNIQUE NOT SPECIFIED +20 20 VESSEL STOPPED +21 21 VESSEL DIVERTED FROM ORIGINAL DESTINATION +22 22 VESSEL'S ARRIVAL DELAYED +23 23 CONTAINER DAMAGED +24 24 POWER FAILURE TO CONTAINER +29 29 OTHER PROBLEMS +30 30 MAJOR POWER PROBLEMS +31 31 UPS INOPERATIVE +32 32 RECEIVER HARDWARE PROBLEMS +33 33 RECEIVER SOFTWARE PROBLEMS +34 34 PROCESSOR HARDWARE PROBLEMS +35 35 PROCESSOR SOFTWARE PROBLEMS +36 36 NAVAID SYSTEM DAMAGED +37 37 SHORTAGE OF LIFTING GAS +38 38 RESERVED +39 39 OTHER PROBLEMS +40 40 MECHANICAL DEFECT +41 41 MATERIAL DEFECT (HAND LAUNCHER) +42 42 POWER FAILURE +43 43 CONTROL FAILURE +44 44 PNEUMATIC/HYDRAULIC FAILURE +45 45 OTHER PROBLEMS +46 46 COMPRESSOR PROBLEMS +47 47 BALLOON PROBLEMS +48 48 BALLOON RELEASE PROBLEMS +49 49 LAUNCHER DAMAGED +50 50 R/S RECEIVER ANTENNA DEFECT +51 51 NAVAID ANTENNA DEFECT +52 52 R/S RECEIVER CABLING (ANTENNA) DEFECT +53 53 NAVAID ANTENNA CABLING DEFECT +59 59 OTHER PROBLEMS +60 60 ASAP COMMUNICATIONS DEFECT +61 61 COMMUNICATIONS FACILITY REJECTED DATA +62 62 NO POWER AT TRANSMITTING ANTENNA +63 63 ANTENNA CABLE BROKEN +64 64 ANTENNA CABLE DEFECT +65 65 MESSAGE TRANSMITTED POWER BELOW NORMAL +69 69 OTHER PROBLEMS +70 70 ALL SYSTEMS IN NORMAL OPERATION +99 99 STATUS OF SYSTEM AND ITS COMPONENTS NOT SPECIFIED +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2015.table b/definitions/bufr/tables/0/wmo/35/codetables/2015.table new file mode 100644 index 000000000..7b0ccaf86 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2015.table @@ -0,0 +1,7 @@ +0 0 RESERVED +1 1 PRESSURE ONLY RADIOSONDE +2 2 PRESSURE ONLY RADIOSONDE PLUS TRANSPONDER +3 3 PRESSURE ONLY RADIOSONDE PLUS RADAR REFLECTOR +4 4 NO-PRESSURE RADIOSONDE PLUS TRANSPONDER +5 5 NO-PRESSURE RADIOSONDE PLUS RADAR REFLECTOR +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2016.table b/definitions/bufr/tables/0/wmo/35/codetables/2016.table new file mode 100644 index 000000000..4a3022611 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2016.table @@ -0,0 +1,4 @@ +1 1 TRAIN REGULATOR +2 2 LIGHT UNIT +3 3 PARACHUTE +4 4 ROOFTOP RELEASE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2017.table b/definitions/bufr/tables/0/wmo/35/codetables/2017.table new file mode 100644 index 000000000..7fac2e10f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2017.table @@ -0,0 +1,6 @@ +0 0 NO CORRECTIONS +1 1 TIME LAG CORRECTION PROVIDED BY THE MANUFACTURER +2 2 SOLAR RADIATION CORRECTION PROVIDED BY THE MANUFACTURER +3 3 SOLAR RADIATION AND TIME LAG CORRECTION PROVIDED BY THE MANUFACTURER +7 7 GRUAN SOLAR RADIATION AND TIME LAG CORRECTION +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2019.table b/definitions/bufr/tables/0/wmo/35/codetables/2019.table new file mode 100644 index 000000000..8895056eb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2019.table @@ -0,0 +1,358 @@ +10 10 AATSR +11 11 ATSR +12 12 ATSR-2 +13 13 MWR +30 30 ARGOS +40 40 LASER REFLECTORS +41 41 DORIS +42 42 DORIS-NG +47 47 POSEIDON-1 (SSALT1) +48 48 POSEIDON-2 (SSALT2) +49 49 POSEIDON-3 (SSALT3) +50 50 ATSR/M +51 51 HRG +52 52 HRV +53 53 HRVIR +54 54 SCARAB/MV2 +55 55 POLDER +56 56 IIR +57 57 POSEIDON-4 +60 60 VEGETATION +61 61 WINDII +62 62 ALTIKA +80 80 RADARSAT DTT +81 81 RADARSAT TTC +85 85 SAR (CSA) +90 90 MOPITT +91 91 OSIRIS +92 92 ACE-FTS +97 97 PANCHROMATIC IMAGER +98 98 GPS RECEIVER +102 102 CHAMP GPS SOUNDER +103 103 IGOR +104 104 TRI-G +116 116 CHAMP GRAVITY PACKAGE (ACCELEROMETER+GPS) +117 117 CHAMP MAGNETOMETRY PACKAGE (1 SCALAR+2 VECTOR MAGNETOMETER) +120 120 ENVISAT COMMS +121 121 ERS COMMS +130 130 ALADIN +131 131 ATLID +140 140 AMI/SAR/IMAGE +141 141 AMI/SAR/WAVE +142 142 AMI/SCATTEROMETER +143 143 ASAR +144 144 ASAR +145 145 ASAR +146 146 CPR +147 147 RA-2/MWR +148 148 RA/MWR +150 150 SCATTEROMETER +151 151 SAR-C +152 152 SW +161 161 MIPAS +162 162 MWR-2 +163 163 SOPRANO +170 170 GOME +172 172 GOMOS +174 174 MERIS +175 175 SCIAMACHY +176 176 MIRAS +177 177 SIRAL +178 178 SRAL +179 179 OLCI +180 180 SLSTR +181 181 METEOSAT COMMS +182 182 MSG COMMS +190 190 ASCAT +200 200 GERB +202 202 GRAS +203 203 MHS +205 205 MVIRI +207 207 SEVIRI +208 208 VIRI +220 220 GOME-2 +221 221 IASI +240 240 DCP +245 245 CCD +246 246 HSB +248 248 OBA +250 250 WFI +255 255 IRMSS +260 260 BSS & FSS TRANSPONDERS +261 261 DRT-S&R +262 262 INSAT COMMS +268 268 HR-PAN +269 269 MSMR +270 270 VHRR +271 271 WIFS +275 275 AWIFS +276 276 LISS-I +277 277 LISS-II +278 278 LISS-III +279 279 LISS-IV +284 284 PAN +285 285 MOS +286 286 OCM +287 287 ROSA +288 288 SCAT +289 289 IMG +290 290 MTSAT COMMS +291 291 HIMAWARI COMMS +294 294 JAMI +295 295 IMAGER/MTSAT-2 +296 296 VISSR +297 297 AHI +300 300 GLAS +301 301 LRA +302 302 MBLA +303 303 CALIOP +309 309 CPR (CLOUDSAT) +312 312 NSCAT +313 313 SEAWINDS +314 314 RAPIDSCAT +330 330 ACRIM +334 334 BUV +336 336 ALI +347 347 ASTER +348 348 CERES-2 +351 351 GPSDR +353 353 HIRDLS +354 354 HRDI +356 356 LIS +358 358 PEM +359 359 SEAWIFS +360 360 SUSIM (UARS) +363 363 SBUV/1 +365 365 TMI +366 366 JMR +367 367 AMR +369 369 LIMS +370 370 LRIR +371 371 EPIC +372 372 NISTAR +373 373 PLASMA-MAG +374 374 XPS +375 375 VIRS +376 376 POLDER II +377 377 TIM +379 379 WFC +382 382 CLAES +383 383 HALOE +384 384 ISAMS +385 385 MISR +386 386 MLS +387 387 MLS (EOS-AURA) +389 389 MODIS +393 393 HAIRS +394 394 OMI +395 395 ATMOSPHERIC CORRECTOR +396 396 HYPERION +399 399 SAGE I +400 400 SAGE II +401 401 SAGE III +402 402 SAMS +403 403 SAM-II +404 404 IRIS +405 405 GIFTS +420 420 AIRS +426 426 SOLSTICE +430 430 TES +431 431 TOMS +432 432 OCO +450 450 ADEOS COMMS +451 451 DCS (JAXA) +453 453 GMS COMMS +454 454 JERS-1 COMMS +460 460 RIS +461 461 PR +462 462 SAR +470 470 PALSAR +478 478 AMSR2 +479 479 AMSR-E +480 480 PRISM (ALOS) +481 481 AMSR +482 482 AVNIR +483 483 AVNIR-2 +484 484 GLI +485 485 MESSR +486 486 MSR +487 487 OCTS +488 488 OPS +489 489 VISSR (GMS-5) +490 490 VTIR +510 510 ILAS-I +511 511 ILAS-II +512 512 IMG +514 514 SEM +515 515 SOFIS +516 516 TANSO-FTS +517 517 TANSO-CAI +518 518 DPR +519 519 GMI +526 526 CION-A +527 527 CION-B +528 528 CION-C +529 529 CION-D +530 530 SGNOS-A +531 531 SGNOS-B +532 532 SGNOS-C +533 533 SGNOS-D +534 534 PYXIS-A +535 535 PYXIS-B +540 540 DCS (NOAA) +541 541 GOES COMMS +542 542 LANDSAT COMMS +543 543 NOAA COMMS +544 544 S&R (GOES) +545 545 S&R (NOAA) +546 546 WEFAX +547 547 SEM (GOES) +550 550 SSM +551 551 SSJ/4 +552 552 SSIES-2 +553 553 SSB/X-2 +570 570 AMSU-A +574 574 AMSU-B +580 580 ATOVS (HIRS/3 + AMSU + AVHRR/3) +590 590 AVHRR/2 +591 591 AVHRR/3 +592 592 AVHRR/4 +600 600 ERBE +601 601 ETM+ +604 604 HIRS/1 +605 605 HIRS/2 +606 606 HIRS/3 +607 607 HIRS/4 +615 615 IMAGER +616 616 VIIRS +617 617 ABI +618 618 GLM +620 620 CRIRS/NP +621 621 ATMS +622 622 MSS +623 623 MSU +624 624 SBUV/2 +625 625 SBUV/3 +626 626 SOUNDER +627 627 SSU +628 628 TM +629 629 TOVS (HIRS/2 + MSU + SSU) +630 630 VAS +631 631 SSZ +645 645 SEM +650 650 MVIRSR (10 CHANNEL) +651 651 MVIRSR (3 CHANNEL) +652 652 MVIRSR (5 CHANNEL) +670 670 RLSBO +680 680 MSU-EU +681 681 MSU-UM +682 682 RM-08 +683 683 SU-UMS +684 684 SU-VR +685 685 TRASSER +686 686 SCAT +687 687 ALT +688 688 MWI +700 700 KONDOR-2 +701 701 BRK +710 710 ALISSA +712 712 BALKAN-2 LIDAR +715 715 MK-4 +716 716 MK-4M +730 730 GREBEN +731 731 SAR-10 +732 732 SAR-3 +733 733 SAR-70 +740 740 SLR-3 +745 745 TRAVERS SAR +750 750 174-K +751 751 BTVK +752 752 CHAIKA +753 753 DELTA-2 +755 755 IKAR-D +756 756 IKAR-N +757 757 IKAR-P +760 760 ISP +761 761 KFA-1000 +762 762 KFA-200 +763 763 KFA-3000 +770 770 KLIMAT +771 771 KLIMAT-2 +775 775 MIRAS +776 776 MIVZA +777 777 MIVZA-M +780 780 MR-2000 +781 781 MR-2000M +785 785 MR-900 +786 786 MR-900B +790 790 MSU-E +791 791 MSU-E1 +792 792 MSU-E2 +793 793 MSU-M +794 794 MSU-S +795 795 MSU-SK +796 796 MSU-V +810 810 MTZA +815 815 MZOAS +820 820 R-225 +821 821 R-400 +822 822 R-600 +830 830 RMS +835 835 TV CAMERA +836 836 SILVA +840 840 SROSMO +850 850 BUFS-2 +851 851 BUFS-4 +855 855 ISTOK-1 +856 856 SFM-2 +857 857 DOPI +858 858 KGI-4 +859 859 OZON-M +860 860 RMK-2 +861 861 MTVZA-GY +862 862 IKFS-2 +900 900 MAXIE +901 901 OLS +905 905 SSM/I +906 906 SSM/T-1 +907 907 SSM/T-2 +908 908 SSMIS +910 910 SXI +930 930 EHIC +931 931 X-RAY ASTRONOMY PAYLOAD +932 932 IVISSR (FY-2) +933 933 IRAS +934 934 MWAS +935 935 IMWAS +936 936 MWHS +937 937 MVIRS +938 938 MWRI +940 940 MTVZA-OK +941 941 SAPHIR +942 942 MADRAS +943 943 SCAT (ON CFOSAT) +944 944 ALT +945 945 TSIS +946 946 CMIS +947 947 OMPS +948 948 GPSOS +949 949 SESS +950 950 VIRR +951 951 TOM +952 952 OP +953 953 MWHS-2 +954 954 MWTS-2 +955 955 HIRAS +956 956 SBUS +957 957 TOU +958 958 GNOS +959 959 SMR +960 960 +961 961 AGRI +962 962 GIIRS +963 963 LMI +964 964 SEP +980 980 AMI +981 981 MI +982 982 KSEM +2047 2047 diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2020.table b/definitions/bufr/tables/0/wmo/35/codetables/2020.table new file mode 100644 index 000000000..1f70013d3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2020.table @@ -0,0 +1,32 @@ +0 0 NIMBUS +1 1 VTPR +2 2 TIROS 1 (TIROS, NOAA-6 TO NOAA-13) +3 3 TIROS 2 (NOAA-14 ONWARDS) +10 10 EOS +20 20 GPM-CORE +31 31 DMSP +61 61 EUMETSAT POLAR SYSTEM (EPS) +91 91 ERS +92 92 SENTINEL-3 +121 121 ADEOS +122 122 GCOM +241 241 GOES +261 261 JASON +271 271 GMS +272 272 MTSAT +273 273 HIMAWARI +281 281 COMS +301 301 INSAT +331 331 METEOSAT OPERATIONAL PROGRAMME (MOP) +332 332 METEOSAT TRANSITIONAL PROGRAMME (MTP) +333 333 METEOSAT SECOND GENERATION PROGRAMME (MSG) +351 351 GOMS +380 380 FY-1 +381 381 FY-2 +382 382 FY-3 +383 383 FY-4 +401 401 GPS +402 402 GLONASS +403 403 GALILEO +404 404 BDS (BEIDOU NAVIGATION SATELLITE SYSTEM) +511 511 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2021.table b/definitions/bufr/tables/0/wmo/35/codetables/2021.table new file mode 100644 index 000000000..b95fdc989 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2021.table @@ -0,0 +1,8 @@ +1 1 HIGH-RESOLUTION INFRARED SOUNDER (HIRS) +2 2 MICROWAVE SOUNDING UNIT (MSU) +3 3 STRATOSPHERIC SOUNDING UNIT (SSU) +4 4 AMI (ADVANCED MICROWAVE INSTRUMENT) WIND MODE +5 5 AMI (ADVANCED MICROWAVE INSTRUMENT) WAVE MODE +6 6 AMI (ADVANCED MICROWAVE INSTRUMENT) IMAGE MODE +7 7 RADAR ALTIMETER +8 8 ATSR (ALONG-TRACK SCANNING RADIOMETER) diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2022.table b/definitions/bufr/tables/0/wmo/35/codetables/2022.table new file mode 100644 index 000000000..5068e7fd7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2022.table @@ -0,0 +1,5 @@ +1 1 PROCESSING TECHNIQUE NOT DEFINED +2 2 AUTOMATED STATISTICAL REGRESSION +3 3 CLEAR PATH +4 4 PARTLY CLOUDY PATH +5 5 CLOUDY PATH diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2023.table b/definitions/bufr/tables/0/wmo/35/codetables/2023.table new file mode 100644 index 000000000..be7eb84e4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2023.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 WIND DERIVED FROM CLOUD MOTION OBSERVED IN THE INFRARED CHANNEL +2 2 WIND DERIVED FROM CLOUD MOTION OBSERVED IN THE VISIBLE CHANNEL +3 3 WIND DERIVED FROM CLOUD MOTION OBSERVED IN THE WATER VAPOUR CHANNEL +4 4 WIND DERIVED FROM MOTION OBSERVED IN A COMBINATION OF SPECTRAL CHANNELS +5 5 WIND DERIVED FROM MOTION OBSERVED IN THE WATER VAPOUR CHANNEL IN CLEAR AIR +6 6 WIND DERIVED FROM MOTION OBSERVED IN THE OZONE CHANNEL +7 7 WIND DERIVED FROM MOTION OBSERVED IN WATER VAPOUR CHANNEL (CLOUD OR CLEAR AIR NOT SPECIFIED) +13 13 ROOT-MEAN-SQUARE +14 14 RESERVED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2024.table b/definitions/bufr/tables/0/wmo/35/codetables/2024.table new file mode 100644 index 000000000..00ec80ef6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2024.table @@ -0,0 +1,4 @@ +0 0 RESERVED +1 1 TABLE WITH FULL RANGE OF HUMIDITY VARIATION IN LAYER +2 2 REGRESSION TECHNIQUE ON 2 HUMIDITY VALUES IN LAYER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2025.table b/definitions/bufr/tables/0/wmo/35/codetables/2025.table new file mode 100644 index 000000000..64dc01875 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2025.table @@ -0,0 +1,16 @@ +1 1 RESERVED +2 2 HIRS +3 3 MSU +6 6 HIRS +7 7 MSU +10 10 HIRS (1, 2, 3, 8, 9, 16, 17) +11 11 HIRS (1, 2, 3, 9, 17) +12 12 MSU +15 15 HIRS +16 16 HIRS +17 17 MSU +18 18 SKINTK (OCEAN ONLY) +21 21 HIRS +22 22 SSU +23 23 MSU (3, 4) +24 24 RESERVED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2030.table b/definitions/bufr/tables/0/wmo/35/codetables/2030.table new file mode 100644 index 000000000..2777bbcd3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2030.table @@ -0,0 +1,8 @@ +0 0 RESERVED +1 1 ADCP (ACOUSTIC DOPPLER CURRENT PROFILER) +2 2 GEK (GEOMAGNETIC ELECTROKINETOGRAPH) +3 3 SHIP'S SET AND DRIFT DETERMINED BY FIXES 3-6 HOURS APART +4 4 SHIP'S SET AND DRIFT DETERMINED BY FIXES MORE THAN 6 HOURS BUT LESS THAN 12 HOURS APART +5 5 DRIFT OF BUOY +6 6 ADCP (ACOUSTIC DOPPLER CURRENT PROFILER) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2031.table b/definitions/bufr/tables/0/wmo/35/codetables/2031.table new file mode 100644 index 000000000..c096d370c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2031.table @@ -0,0 +1,21 @@ +0 0 RESERVED +1 1 INSTANTANEOUS +2 2 AVERAGED OVER 3 MIN OR LESS +3 3 AVERAGED OVER MORE THAN 3 MIN, BUT 6 MIN AT THE MOST +4 4 AVERAGED OVER MORE THAN 6 MIN, BUT 12 MIN AT THE MOST +5 5 INSTANTANEOUS +6 6 AVERAGED OVER 3 MIN OR LESS +7 7 AVERAGED OVER MORE THAN 3 MIN, BUT 6 MIN AT THE MOST +8 8 AVERAGED OVER MORE THAN 6 MIN, BUT 12 MIN AT THE MOST +9 9 VECTOR OR DOPPLER CURRENT PROFILING METHOD NOT USED +10 10 RESERVED +11 11 1 HOUR OR LESS +12 12 MORE THAN 1 HOUR BUT 2 HOURS AT THE MOST +13 13 MORE THAN 2 HOURS BUT 4 HOURS AT THE MOST +14 14 MORE THAN 4 HOURS BUT 8 HOURS AT THE MOST +15 15 MORE THAN 8 HOURS BUT 12 HOURS AT THE MOST +16 16 MORE THAN 12 HOURS BUT 18 HOURS AT THE MOST +17 17 MORE THAN 18 HOURS BUT 24 HOURS AT THE MOST +18 18 RESERVED +19 19 DRIFT METHOD NOT USED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2032.table b/definitions/bufr/tables/0/wmo/35/codetables/2032.table new file mode 100644 index 000000000..7e9310db0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2032.table @@ -0,0 +1,4 @@ +0 0 VALUES AT SELECTED DEPTHS (DATA POINTS FIXED BY THE INSTRUMENT OR SELECTED BY ANY OTHER METHOD) +1 1 VALUES AT SELECTED DEPTHS (DATA POINTS TAKEN FROM TRACES AT SIGNIFICANT DEPTHS) +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2033.table b/definitions/bufr/tables/0/wmo/35/codetables/2033.table new file mode 100644 index 000000000..8215be095 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2033.table @@ -0,0 +1,5 @@ +0 0 NO SALINITY MEASURED +1 1 IN SITU SENSOR, ACCURACY BETTER THAN 0.02 ‰ +2 2 IN SITU SENSOR, ACCURACY LESS THAN 0.02 ‰ +3 3 SAMPLE ANALYSIS +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2034.table b/definitions/bufr/tables/0/wmo/35/codetables/2034.table new file mode 100644 index 000000000..06cdd52d2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2034.table @@ -0,0 +1,7 @@ +0 0 UNSPECIFIED DROGUE +1 1 HOLEY SOCK +2 2 TRISTAR +3 3 WINDOW SHADE +4 4 PARACHUTE +5 5 NON-LAGRANGIAN SEA ANCHOR +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2036.table b/definitions/bufr/tables/0/wmo/35/codetables/2036.table new file mode 100644 index 000000000..7782d302a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2036.table @@ -0,0 +1,4 @@ +0 0 DRIFTING BUOY +1 1 FIXED BUOY +2 2 SUBSURFACE FLOAT (MOVING) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2037.table b/definitions/bufr/tables/0/wmo/35/codetables/2037.table new file mode 100644 index 000000000..729c40e63 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2037.table @@ -0,0 +1,8 @@ +0 0 RESERVED +1 1 MANUAL READING FROM VERTICAL TIDE STAFF +2 2 MANUAL READING FROM SINGLE AUTOMATIC RECORDER AT STATION +3 3 MANUAL READING FROM MULTIPLE AUTOMATIC RECORDERS AT STATION +4 4 AUTOMATIC READING FROM SINGLE AUTOMATIC RECORDER AT STATION WITHOUT LEVEL REFERENCE CHECK +5 5 AUTOMATIC READING FROM SINGLE AUTOMATIC RECORDER AT STATION WITH LEVEL REFERENCE CHECK, OR FROM MULTIPLE AUTOMATIC RECORDERS +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2038.table b/definitions/bufr/tables/0/wmo/35/codetables/2038.table new file mode 100644 index 000000000..458f14169 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2038.table @@ -0,0 +1,16 @@ +0 0 SHIP INTAKE +1 1 BUCKET +2 2 HULL CONTACT SENSOR +3 3 REVERSING THERMOMETER +4 4 STD/CTD SENSOR +5 5 MECHANICAL BT +6 6 EXPENDABLE BT +7 7 DIGITAL BT +8 8 THERMISTOR CHAIN +9 9 INFRARED SCANNER +10 10 MICROWAVE SCANNER +11 11 INFRARED RADIOMETER +12 12 IN-LINE THERMOSALINOGRAPH +13 13 TOWED BODY +14 14 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2039.table b/definitions/bufr/tables/0/wmo/35/codetables/2039.table new file mode 100644 index 000000000..0a94982b5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2039.table @@ -0,0 +1,5 @@ +0 0 MEASURED WET-BULB TEMPERATURE +1 1 ICED BULB MEASURED WET-BULB TEMPERATURE +2 2 COMPUTED WET-BULB TEMPERATURE +3 3 ICED BULB COMPUTED WET-BULB TEMPERATURE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2040.table b/definitions/bufr/tables/0/wmo/35/codetables/2040.table new file mode 100644 index 000000000..78b291706 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2040.table @@ -0,0 +1,8 @@ +0 0 SHIP'S MOTION REMOVED BY AVERAGING +1 1 SHIP'S MOTION REMOVED BY MOTION COMPENSATION +2 2 SHIP'S MOTION NOT REMOVED +3 3 SHIP'S MOTION REMOVED BY AVERAGING +4 4 SHIP'S MOTION REMOVED BY MOTION COMPENSATION +5 5 SHIP'S MOTION NOT REMOVED +6 6 DOPPLER CURRENT PROFILING METHOD NOT USED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2041.table b/definitions/bufr/tables/0/wmo/35/codetables/2041.table new file mode 100644 index 000000000..ef5bf86b3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2041.table @@ -0,0 +1,6 @@ +0 0 INFORMATION BASED ON MANUAL ANALYSIS +1 1 INFORMATION BASED ON COMPUTER ANALYSIS +2 2 INFORMATION BASED ON DATA ASSIMILATION +3 3 INFORMATION BASED ON COMPUTER ANALYSIS OR DATA ASSIMILATION MANUALLY MODIFIED +10 10 INFORMATION BASED ON THE NUMERICAL WEATHER PREDICTION +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2042.table b/definitions/bufr/tables/0/wmo/35/codetables/2042.table new file mode 100644 index 000000000..eb2445b83 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2042.table @@ -0,0 +1,4 @@ +0 0 VALUE ORIGINALLY REPORTED IN M/S +1 1 VALUE ORIGINALLY REPORTED IN KNOTS +2 2 NO SEA CURRENT DATA AVAILABLE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2044.table b/definitions/bufr/tables/0/wmo/35/codetables/2044.table new file mode 100644 index 000000000..0e10ed8e1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2044.table @@ -0,0 +1,6 @@ +0 0 RESERVED FOR FUTURE USE +1 1 LONGUET-HIGGINS (1964) +2 2 LONGUET-HIGGINS (F3 METHOD) +3 3 MAXIMUM LIKELIHOOD METHOD +4 4 MAXIMUM ENTROPY METHOD +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2045.table b/definitions/bufr/tables/0/wmo/35/codetables/2045.table new file mode 100644 index 000000000..374e4f27e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2045.table @@ -0,0 +1,5 @@ +0 0 SEA STATION +1 1 AUTOMATIC DATA BUOY +2 2 AIRCRAFT +3 3 SATELLITE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2046.table b/definitions/bufr/tables/0/wmo/35/codetables/2046.table new file mode 100644 index 000000000..57fb9d6be --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2046.table @@ -0,0 +1,4 @@ +0 0 RESERVED FOR FUTURE USE +1 1 HEAVE SENSOR +2 2 SLOPE SENSOR +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2047.table b/definitions/bufr/tables/0/wmo/35/codetables/2047.table new file mode 100644 index 000000000..821393179 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2047.table @@ -0,0 +1,9 @@ +0 0 RESERVED +1 1 DART II (PMEL) +2 2 DART ETD +3 3 SAIC TSUNAMI BUOY (STB) +4 4 GFZ - POTSDAM +5 5 INCOIS (INDIA) +6 6 INABUOY (INDONESIA) +7 7 ENVIRTECH +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2048.table b/definitions/bufr/tables/0/wmo/35/codetables/2048.table new file mode 100644 index 000000000..e4325f83b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2048.table @@ -0,0 +1,16 @@ +0 0 HIRS +1 1 MSU +2 2 SSU +3 3 AMSU-A +4 4 AMSU-B +5 5 AVHRR +6 6 SSMI +7 7 NSCAT +8 8 SEAWINDS +9 9 POSEIDON ALTIMETER +10 10 JMR (JASON MICROWAVE RADIOMETER) +11 11 MHS +12 12 ASCAT +13 13 OSCAT2 +14 14 RESERVED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2049.table b/definitions/bufr/tables/0/wmo/35/codetables/2049.table new file mode 100644 index 000000000..ade5cac86 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2049.table @@ -0,0 +1,4 @@ +1 1 PROCESSING TECHNIQUE NOT DEFINED +2 2 SIMULTANEOUS PHYSICAL RETRIEVAL +3 3 CLEAR SOUNDING +4 4 CLOUDY SOUNDING diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2050.table b/definitions/bufr/tables/0/wmo/35/codetables/2050.table new file mode 100644 index 000000000..fbcce617d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2050.table @@ -0,0 +1,19 @@ +1 1 1 +2 2 2 +3 3 3 +4 4 4 +5 5 5 +6 6 6 +7 7 7 +8 8 8 +9 9 9 +10 10 10 +11 11 11 +12 12 12 +13 13 13 +14 14 14 +15 15 15 +16 16 16 +17 17 17 +18 18 18 +19 19 19 diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2051.table b/definitions/bufr/tables/0/wmo/35/codetables/2051.table new file mode 100644 index 000000000..3524ae72d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2051.table @@ -0,0 +1,5 @@ +0 0 RESERVED +1 1 MAXIMUM/MINIMUM THERMOMETERS +2 2 AUTOMATED INSTRUMENTS +3 3 THERMOGRAPH +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2052.table b/definitions/bufr/tables/0/wmo/35/codetables/2052.table new file mode 100644 index 000000000..8b6262caa --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2052.table @@ -0,0 +1,5 @@ +1 1 1 +2 2 2 +3 3 3 +4 4 4 +5 5 5 diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2053.table b/definitions/bufr/tables/0/wmo/35/codetables/2053.table new file mode 100644 index 000000000..03e5e295e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2053.table @@ -0,0 +1,5 @@ +0 0 OBSERVED BRIGHTNESS TEMPERATURE +1 1 BRIGHTNESS TEMPERATURE WITH BIAS CORRECTION APPLIED +2 2 BRIGHTNESS TEMPERATURE CALCULATED FROM FIRST GUESS +3 3 BRIGHTNESS TEMPERATURE CALCULATED FROM SOUNDING +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2054.table b/definitions/bufr/tables/0/wmo/35/codetables/2054.table new file mode 100644 index 000000000..0995688ba --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2054.table @@ -0,0 +1,6 @@ +0 0 PARAMETER DERIVED USING OBSERVED SOUNDER BRIGHTNESS TEMPERATURES +1 1 PARAMETER DERIVED USING OBSERVED IMAGER BRIGHTNESS TEMPERATURES +2 2 PARAMETER DERIVED USING FIRST GUESS INFORMATION +3 3 PARAMETER DERIVED USING NMC ANALYSIS INFORMATION +4 4 PARAMETER DERIVED USING RADIOSONDE INFORMATION +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2055.table b/definitions/bufr/tables/0/wmo/35/codetables/2055.table new file mode 100644 index 000000000..ce06f0089 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2055.table @@ -0,0 +1,10 @@ +0 0 STATISTICS GENERATED COMPARING RETRIEVAL VERSUS RADIOSONDE +1 1 STATISTICS GENERATED COMPARING RETRIEVAL VERSUS FIRST GUESS +2 2 STATISTICS GENERATED COMPARING RADIOSONDE VERSUS FIRST GUESS +3 3 STATISTICS GENERATED COMPARING OBSERVED VERSUS RETRIEVAL +4 4 STATISTICS GENERATED COMPARING OBSERVED VERSUS FIRST GUESS +5 5 STATISTICS GENERATED COMPARING RADIOSONDE VERSUS IMAGER +6 6 STATISTICS GENERATED COMPARING RADIOSONDE VERSUS SOUNDER +7 7 STATISTICS GENERATED FOR RADIOSONDE +8 8 STATISTICS GENERATED FOR FIRST GUESS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2056.table b/definitions/bufr/tables/0/wmo/35/codetables/2056.table new file mode 100644 index 000000000..86eb98302 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2056.table @@ -0,0 +1,6 @@ +0 0 SUMS OF DIFFERENCES +1 1 SUMS OF SQUARED DIFFERENCES +2 2 SAMPLE SIZE +3 3 MINIMUM DIFFERENCE +4 4 MAXIMUM DIFFERENCE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2057.table b/definitions/bufr/tables/0/wmo/35/codetables/2057.table new file mode 100644 index 000000000..681e6bd08 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2057.table @@ -0,0 +1,7 @@ +0 0 NESTED GRID MODEL (NGM) +1 1 AVIATION MODEL (AVN) +2 2 MEDIUM RANGE FORECAST (MRF) MODEL +3 3 GLOBAL DATA ASSIMILATION SYSTEM (GDAS) FORECAST MODEL +4 4 PRIOR SOUNDINGS (WITHIN 3 HOURS OF CURRENT TIME) +5 5 CLIMATOLOGY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2058.table b/definitions/bufr/tables/0/wmo/35/codetables/2058.table new file mode 100644 index 000000000..6c45eda11 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2058.table @@ -0,0 +1,5 @@ +0 0 12 HOUR AND 18 HOUR +1 1 18 HOUR AND 24 HOUR +2 2 6 HOUR AND 12 HOUR +3 3 GREATER THAN 24 HOURS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2059.table b/definitions/bufr/tables/0/wmo/35/codetables/2059.table new file mode 100644 index 000000000..8f089d3c4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2059.table @@ -0,0 +1,5 @@ +0 0 NCEP NESTED GRID MODEL (NGM) ANALYSIS +1 1 NCEP AVIATION MODEL (AVN) ANALYSIS +2 2 NCEP MEDIUM RANGE FORECAST (MRF) MODEL ANALYSIS +3 3 NCEP GLOBAL DATA ASSIMILATION SYSTEM (GDAS) FORECAST MODEL ANALYSIS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2060.table b/definitions/bufr/tables/0/wmo/35/codetables/2060.table new file mode 100644 index 000000000..6f846987b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2060.table @@ -0,0 +1,7 @@ +0 0 CURRENT SURFACE HOURLY REPORTS +1 1 CURRENT SHIP REPORTS +2 2 CURRENT BUOY REPORTS +3 3 ONE HOUR OLD SURFACE HOURLY REPORTS +4 4 ONE HOUR OLD SHIP REPORTS +5 5 ONE HOUR OLD BUOY REPORTS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2061.table b/definitions/bufr/tables/0/wmo/35/codetables/2061.table new file mode 100644 index 000000000..592d51eb4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2061.table @@ -0,0 +1,3 @@ +0 0 INERTIAL NAVIGATION SYSTEM +1 1 OMEGA +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2062.table b/definitions/bufr/tables/0/wmo/35/codetables/2062.table new file mode 100644 index 000000000..2d0f4e202 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2062.table @@ -0,0 +1,7 @@ +0 0 ASDAR +1 1 ASDAR (ACARS ALSO AVAILABLE BUT NOT OPERATIVE) +2 2 ASDAR (ACARS ALSO AVAILABLE AND OPERATIVE) +3 3 ACARS +4 4 ACARS (ASDAR ALSO AVAILABLE BUT NOT OPERATIVE) +5 5 ACARS (ASDAR ALSO AVAILABLE AND OPERATIVE) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2064.table b/definitions/bufr/tables/0/wmo/35/codetables/2064.table new file mode 100644 index 000000000..741430292 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2064.table @@ -0,0 +1,4 @@ +0 0 GOOD +1 1 BAD +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2066.table b/definitions/bufr/tables/0/wmo/35/codetables/2066.table new file mode 100644 index 000000000..a3865dc68 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2066.table @@ -0,0 +1,9 @@ +0 0 INTERMET IMS 2000 +1 1 INTERMET IMS 1500C +2 2 SHANGHAI GTC1 +3 3 NANJING GTC2 +4 4 NANJING GFE(L)1 +5 5 MARL-A RADAR +6 6 VEKTOR-M RADAR +62 62 OTHER +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2070.table b/definitions/bufr/tables/0/wmo/35/codetables/2070.table new file mode 100644 index 000000000..5a098ea26 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2070.table @@ -0,0 +1,13 @@ +0 0 ACTUAL LOCATION IN SECONDS +1 1 ACTUAL LOCATION IN MINUTES +2 2 ACTUAL LOCATION IN DEGREES +3 3 ACTUAL LOCATION IN DECIDEGREES +4 4 ACTUAL LOCATION IN CENTIDEGREES +5 5 REFERENCED TO CHECKPOINT IN SECONDS +6 6 REFERENCED TO CHECKPOINT IN MINUTES +7 7 REFERENCED TO CHECKPOINT IN DEGREES +8 8 REFERENCED TO CHECKPOINT IN DECIDEGREES +9 9 REFERENCED TO CHECKPOINT IN CENTIDEGREES +10 10 ACTUAL LOCATION IN TENTHS OF A MINUTE +11 11 REFERENCED TO CHECKPOINT IN TENTHS OF A MINUTE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2080.table b/definitions/bufr/tables/0/wmo/35/codetables/2080.table new file mode 100644 index 000000000..c68a39dd6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2080.table @@ -0,0 +1,7 @@ +0 0 KAYSAM +1 1 TOTEX +2 2 KKS +3 3 GUANGZHOU SHUANGYI (CHINA) +4 4 CHEMCHINA ZHUZHOU (CHINA) +62 62 OTHER +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2081.table b/definitions/bufr/tables/0/wmo/35/codetables/2081.table new file mode 100644 index 000000000..dfe9551a9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2081.table @@ -0,0 +1,11 @@ +0 0 GP26 +1 1 GP28 +2 2 GP30 +3 3 HM26 +4 4 HM28 +5 5 HM30 +6 6 SV16 +7 7 TOTEX TA TYPE BALLOONS +8 8 TOTEX TX TYPE BALLOONS +30 30 OTHER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2083.table b/definitions/bufr/tables/0/wmo/35/codetables/2083.table new file mode 100644 index 000000000..611c5bf64 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2083.table @@ -0,0 +1,7 @@ +0 0 HIGH BAY +1 1 LOW BAY +2 2 BALLOON-INFLATED LAUNCH SYSTEM (BILS) +3 3 ROOF-TOP BILS +4 4 AUTOMATED UNMANNED SOUNDING SYSTEM +14 14 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2084.table b/definitions/bufr/tables/0/wmo/35/codetables/2084.table new file mode 100644 index 000000000..be6430ae6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2084.table @@ -0,0 +1,5 @@ +0 0 HYDROGEN +1 1 HELIUM +2 2 NATURAL GAS +14 14 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2092.table b/definitions/bufr/tables/0/wmo/35/codetables/2092.table new file mode 100644 index 000000000..b171b55c8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2092.table @@ -0,0 +1,4 @@ +0 0 UV CHANNEL BASED RETRIEVAL +1 1 VISIBLE CHANNEL BASED RETRIEVAL +2 2 COMBINED UV BASED RETRIEVAL AND VISIBLE BASED RETRIEVAL +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2095.table b/definitions/bufr/tables/0/wmo/35/codetables/2095.table new file mode 100644 index 000000000..580fe930c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2095.table @@ -0,0 +1,7 @@ +0 0 CAPACITANCE ANEROID +1 1 DERIVED FROM GPS +2 2 RESISTIVE STRAIN GAUGE +3 3 SILICON CAPACITOR +4 4 DERIVED FROM RADAR HEIGHT +30 30 OTHER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2096.table b/definitions/bufr/tables/0/wmo/35/codetables/2096.table new file mode 100644 index 000000000..9f1b1027c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2096.table @@ -0,0 +1,9 @@ +0 0 ROD THERMISTOR +1 1 BEAD THERMISTOR +2 2 CAPACITANCE BEAD +3 3 CAPACITANCE WIRE +4 4 RESISTIVE SENSOR +5 5 CHIP THERMISTOR +6 6 MERCURY +7 7 ALCOHOL/GLYCOL +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2097.table b/definitions/bufr/tables/0/wmo/35/codetables/2097.table new file mode 100644 index 000000000..309ef642a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2097.table @@ -0,0 +1,26 @@ +0 0 VIZ MARK II CARBON HYGRISTOR +1 1 VIZ B2 HYGRISTOR +2 2 VAISALA A-HUMICAP +3 3 VAISALA H-HUMICAP +4 4 CAPACITANCE SENSOR +5 5 VAISALA RS90 +6 6 SIPPICAN MARK IIA CARBON HYGRISTOR +7 7 TWIN ALTERNATIVELY HEATED HUMICAP CAPACITANCE SENSOR +8 8 HUMICAP CAPACITANCE SENSOR WITH ACTIVE DE-ICING METHOD +9 9 CARBON HYGRISTOR +10 10 PSYCHROMETER +11 11 CAPACITIVE (POLYMER) +12 12 CAPACITIVE (CERAMIC, INCLUDING METAL OXIDE) +13 13 RESISTIVE (GENERIC) +14 14 RESISTIVE (SALT POLYMER) +15 15 RESISTIVE (CONDUCTIVE POLYMER) +16 16 THERMAL CONDUCTIVITY +17 17 GRAVIMETRIC +18 18 PAPER-METAL COIL +19 19 ORDINARY HUMAN HAIR +20 20 ROLLED HAIR (TORSION) +21 21 GOLDBEATER'S SKIN +22 22 CHILLED MIRROR HYGROMETER +23 23 DEW CELL +24 24 OPTICAL ABSORPTION SENSOR +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2099.table b/definitions/bufr/tables/0/wmo/35/codetables/2099.table new file mode 100644 index 000000000..74cb817c9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2099.table @@ -0,0 +1,5 @@ +0 0 HH POLARIZATION +1 1 VV POLARIZATION +2 2 HV POLARIZATION REAL VALUED COMPONENT +3 3 HV POLARIZATION IMAGINARY VALUED COMPONENT +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2101.table b/definitions/bufr/tables/0/wmo/35/codetables/2101.table new file mode 100644 index 000000000..efdb3ec56 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2101.table @@ -0,0 +1,10 @@ +0 0 CENTRE FRONT-FED PARABOLOID +1 1 OFFSET FRONT-FED PARABOLOID +2 2 CENTRE CASSEGRAIN PARABOLOID +3 3 OFFSET CASSEGRAIN PARABOLOID +4 4 PLANAR ARRAY +5 5 COAXIAL-COLLINEAR ARRAY +6 6 YAGI ELEMENTS ARRAY +7 7 MICROSTRIP +14 14 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2103.table b/definitions/bufr/tables/0/wmo/35/codetables/2103.table new file mode 100644 index 000000000..417d2c9a4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2103.table @@ -0,0 +1 @@ +1 1 RADAR ANTENNA IS PROTECTED BY A RADOME diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2104.table b/definitions/bufr/tables/0/wmo/35/codetables/2104.table new file mode 100644 index 000000000..e39a15365 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2104.table @@ -0,0 +1,9 @@ +0 0 HORIZONTAL POLARIZATION +1 1 VERTICAL POLARIZATION +2 2 RIGHT CIRCULAR POLARIZATION +3 3 LEFT CIRCULAR POLARIZATION +4 4 HORIZONTAL AND VERTICAL POLARIZATION +5 5 RIGHT AND LEFT CIRCULAR POLARIZATION +6 6 QUASI-HORIZONTAL POLARIZATION +7 7 QUASI-VERTICAL POLARIZATION +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21066.table b/definitions/bufr/tables/0/wmo/35/codetables/21066.table new file mode 100644 index 000000000..9bcafea2a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21066.table @@ -0,0 +1,11 @@ +1 1 PROCESSING EQUIPMENT NOT WORKING +2 2 EQUIPMENT FAILED +3 3 PRF CODE CHANGED DURING IMAGE GENERATION +4 4 SAMPLING WINDOW CHANGED DURING IMAGE GENERATION +5 5 GAIN CHANGED DURING IMAGE GENERATION +6 6 CHIRP REPLICA EXCEEDS SPECIFIED VALUE +7 7 INPUT DATA MEAN AND STANDARD DEVIATION OF IN-PHASE AND QUADRATURE OUT OF RANGE +8 8 DOPPLER CENTROID CONFIDENCE > MMCC VALUE +9 9 DOPPLER CENTROID ABSOLUTE VALUE > PRF/2 +10 10 DOPPLER AMBIGUITY CONFIDENCE < MMCC VALUE +11 11 OUTPUT DATA MEAN AND STANDARD DEVIATION =< MMCC VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21067.table b/definitions/bufr/tables/0/wmo/35/codetables/21067.table new file mode 100644 index 000000000..a0ed399e4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21067.table @@ -0,0 +1,12 @@ +1 1 NO FOREBEAM CALCULATION +2 2 NO MIDBEAM CALCULATION +3 3 NO AFTBEAM CALCULATION +4 4 FOREBEAM ARCING DETECTED +5 5 MIDBEAM ARCING DETECTED +6 6 AFTBEAM ARCING DETECTED +7 7 ANY BEAM NOISE CONTENT ABOVE OR EQUAL TO THRESHOLD +8 8 LAND (ANY LAND IN CELL FOOTPRINT) +9 9 AUTONOMOUS AMBIGUITY REMOVAL NOT USED +10 10 METEOROLOGICAL BACKGROUND NOT USED +11 11 MINIMUM RESIDUAL EXCEEDED THRESHOLD +12 12 FRAME CHECKSUM ERROR DETECTED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21068.table b/definitions/bufr/tables/0/wmo/35/codetables/21068.table new file mode 100644 index 000000000..102171f44 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21068.table @@ -0,0 +1,7 @@ +1 1 STANDARD DEVIATION OF WIND SPEED OUTSIDE MMCC LIMIT +2 2 STANDARD DEVIATION OF SIGNIFICANT WAVE HEIGHT OUTSIDE MMCC LIMIT +3 3 STANDARD DEVIATION OF ALTITUDE OUTSIDE MMCC LIMIT +4 4 MEAN PEAKINESS OUTSIDE MMCC LIMIT +5 5 FRAME CHECKSUM ERROR DETECTED +6 6 HEIGHT-TIME LOOP TIME CONSTANT CORRECTION NOT PERFORMED +7 7 NOT ENOUGH MEASUREMENTS (N < 10) diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21069.table b/definitions/bufr/tables/0/wmo/35/codetables/21069.table new file mode 100644 index 000000000..320890afa --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21069.table @@ -0,0 +1,9 @@ +1 1 12.0 µM CHANNEL PRESENT IN SOURCE DATA +2 2 11.0 µM CHANNEL PRESENT IN SOURCE DATA +3 3 3.7 µM CHANNEL PRESENT IN SOURCE DATA +4 4 1.6 µM CHANNEL PRESENT IN SOURCE DATA +5 5 CLOUD IDENTIFICATION USED 1.6 µM HISTOGRAM REFLECTANCE CLOUD TEST +6 6 1.6 µM HISTOGRAM REFLECTANCE CLOUD TEST USED DYNAMIC THRESHOLD +7 7 SUN GLINT DETECTED BY 1.6 µM REFLECTANCE CLOUD TEST +8 8 3.7 µM CHANNEL USED IN SEA-SURFACE TEMPERATURE RETRIEVAL +9 9 SEA-SURFACE TEMPERATURE DERIVATION USED DAYTIME DATA (NIGHT-TIME IF ZERO) diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21070.table b/definitions/bufr/tables/0/wmo/35/codetables/21070.table new file mode 100644 index 000000000..669655f00 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21070.table @@ -0,0 +1,22 @@ +1 1 CELL 1: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +2 2 CELL 2: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +3 3 CELL 3: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +4 4 CELL 4: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +5 5 CELL 5: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +6 6 CELL 6: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +7 7 CELL 7: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +8 8 CELL 8: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +9 9 CELL 9: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +10 10 CELL 1: DUAL VIEW SST USED 3.7 MICRON CHANNEL +11 11 CELL 2: DUAL VIEW SST USED 3.7 MICRON CHANNEL +12 12 CELL 3: DUAL VIEW SST USED 3.7 MICRON CHANNEL +13 13 CELL 4: DUAL VIEW SST USED 3.7 MICRON CHANNEL +14 14 CELL 5: DUAL VIEW SST USED 3.7 MICRON CHANNEL +15 15 CELL 6: DUAL VIEW SST USED 3.7 MICRON CHANNEL +16 16 CELL 7: DUAL VIEW SST USED 3.7 MICRON CHANNEL +17 17 CELL 8: DUAL VIEW SST USED 3.7 MICRON CHANNEL +18 18 CELL 9: DUAL VIEW SST USED 3.7 MICRON CHANNEL +19 19 NADIR VIEW CONTAINS DAY-TIME DATA (NIGHT IF ZERO) +20 20 FORWARD VIEW CONTAINS DAY-TIME DATA (NIGHT IF ZERO) +21 21 RECORD CONTAINS CONTRIBUTIONS FROM INSTRUMENT SCANS ACQUIRED WHEN ERS PLATFORM NOT IN YAW-STEERING MODE +22 22 RECORD CONTAINS CONTRIBUTIONS FROM INSTRUMENT SCANS FOR WHICH PRODUCT CONFIDENCE DATA SHOW QUALITY IS POOR OR UNKNOWN diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21072.table b/definitions/bufr/tables/0/wmo/35/codetables/21072.table new file mode 100644 index 000000000..99e4b1c29 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21072.table @@ -0,0 +1,3 @@ +1 1 HEIGHT ERROR CORRECTION APPLIED INSTEAD OF OPEN LOOP CALIBRATION +2 2 MICROWAVE SOUNDER USED FOR TROPOSPHERE CORRECTION +3 3 AGC OUTPUT CORRECTION APPLIED INSTEAD OF OPEN LOOP CALIBRATION diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21073.table b/definitions/bufr/tables/0/wmo/35/codetables/21073.table new file mode 100644 index 000000000..9538fa553 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21073.table @@ -0,0 +1,8 @@ +1 1 BLANK DATA RECORD +2 2 TEST +3 3 CALIBRATION (CLOSED LOOP) +4 4 BITE +5 5 ACQUISITION ON ICE +6 6 ACQUISITION ON OCEAN +7 7 TRACKING ON ICE +8 8 TRACKING ON OCEAN diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21076.table b/definitions/bufr/tables/0/wmo/35/codetables/21076.table new file mode 100644 index 000000000..bc52ac558 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21076.table @@ -0,0 +1,4 @@ +0 0 LINEAR +1 1 LOGARITHMIC (BASE E) +2 2 LOGARITHMIC (BASE 10) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21109.table b/definitions/bufr/tables/0/wmo/35/codetables/21109.table new file mode 100644 index 000000000..deb577aa0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21109.table @@ -0,0 +1,7 @@ +1 1 NOT ENOUGH GOOD SIGMA-0 AVAILABLE FOR WIND RETRIEVAL +2 2 POOR AZIMUTH DIVERSITY AMONG SIGMA-0 FOR WIND RETRIEVAL +8 8 SOME PORTION OF WIND VECTOR CELL IS OVER LAND +9 9 SOME PORTION OF WIND VECTOR CELL IS OVER ICE +10 10 WIND RETRIEVAL NOT PERFORMED FOR WIND VECTOR CELL +11 11 REPORTED WIND SPEED IS GREATER THAN 30 M S-1 +12 12 REPORTED WIND SPEED IS LESS THAN OR EQUAL TO 3 M S-1 diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21115.table b/definitions/bufr/tables/0/wmo/35/codetables/21115.table new file mode 100644 index 000000000..9e90133cd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21115.table @@ -0,0 +1,10 @@ +1 1 SIGMA-0 MEASUREMENT IS NOT USABLE +2 2 SIGNAL TO NOISE RATIO IS LOW +3 3 SIGMA-0 IS NEGATIVE +4 4 SIGMA-0 IS OUTSIDE OF ACCEPTABLE RANGE +5 5 SCATTEROMETER PULSE QUALITY IS NOT ACCEPTABLE +6 6 SIGMA-0 CELL LOCATION ALGORITHM DOES NOT CONVERGE +7 7 FREQUENCY SHIFT LIES BEYOND THE RANGE OF THE X FACTOR TABLE +8 8 SPACECRAFT TEMPERATURE IS BEYOND CALIBRATION COEFFICIENT RANGE +9 9 NO APPLICABLE ALTITUDE RECORDS WERE FOUND FOR THIS SIGMA-0 +10 10 INTERPOLATED EPHEMERIS DATA ARE NOT ACCEPTABLE FOR THIS SIGMA-0 diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21116.table b/definitions/bufr/tables/0/wmo/35/codetables/21116.table new file mode 100644 index 000000000..10b5c532c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21116.table @@ -0,0 +1,16 @@ +1 1 CALIBRATION/MEASUREMENT PULSE FLAG (1) +2 2 CALIBRATION/MEASUREMENT PULSE FLAG (2) +3 3 OUTER ANTENNA BEAM +4 4 SIGMA-0 CELL IS AFT OF SPACECRAFT +5 5 CURRENT MODE (1) +6 6 CURRENT MODE (2) +7 7 EFFECTIVE GATE WIDTH - SLICE RESOLUTION (1) +8 8 EFFECTIVE GATE WIDTH - SLICE RESOLUTION (2) +9 9 EFFECTIVE GATE WIDTH - SLICE RESOLUTION (3) +10 10 LOW RESOLUTION MODE - WHOLE PULSE DATA +11 11 SCATTEROMETER ELECTRONIC SUBSYSTEM B +12 12 ALTERNATE SPIN RATE - 19.8 RPM +13 13 RECEIVER PROTECTION ON +14 14 SLICES PER COMPOSITE FLAG (1) +15 15 SLICES PER COMPOSITE FLAG (2) +16 16 SLICES PER COMPOSITE FLAG (3) diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21119.table b/definitions/bufr/tables/0/wmo/35/codetables/21119.table new file mode 100644 index 000000000..e17e3c04a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21119.table @@ -0,0 +1,14 @@ +0 0 RESERVED +1 1 SASS +2 2 SASS2 +3 3 NSCAT0 +4 4 NSCAT1 +5 5 NSCAT2 +6 6 QSCAT0 +7 7 QSCAT1 +31 31 CMOD1 +32 32 CMOD2 +33 33 CMOD3 +34 34 CMOD4 +35 35 CMOD5 +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21144.table b/definitions/bufr/tables/0/wmo/35/codetables/21144.table new file mode 100644 index 000000000..1f082e6d9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21144.table @@ -0,0 +1 @@ +1 1 RAIN diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21148.table b/definitions/bufr/tables/0/wmo/35/codetables/21148.table new file mode 100644 index 000000000..11413ed72 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21148.table @@ -0,0 +1,2 @@ +1 1 NON SHORT SCALE VARIATION +2 2 SHORT SCALE VARIATION diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2115.table b/definitions/bufr/tables/0/wmo/35/codetables/2115.table new file mode 100644 index 000000000..c7e866c7a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2115.table @@ -0,0 +1,7 @@ +0 0 PDB +1 1 RSOIS +2 2 ASOS +3 3 PSYCHROMETER +4 4 F420 +30 30 OTHER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21150.table b/definitions/bufr/tables/0/wmo/35/codetables/21150.table new file mode 100644 index 000000000..851004635 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21150.table @@ -0,0 +1,4 @@ +0 0 DATA FROM SINGLE GROUND STATION (NO CO-LOCATION) +1 1 DATA FROM MULTIPLE GROUND STATION (CO-LOCATED DATA) +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21155.table b/definitions/bufr/tables/0/wmo/35/codetables/21155.table new file mode 100644 index 000000000..a7837cfa7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21155.table @@ -0,0 +1,16 @@ +1 1 NOT ENOUGH GOOD SIGMA-0 AVAILABLE FOR WIND RETRIEVAL +2 2 POOR AZIMUTH DIVERSITY AMONG SIGMA-0 FOR WIND RETRIEVAL +3 3 ANY BEAM NOISE CONTENT ABOVE THRESHOLD +4 4 PRODUCT MONITORING NOT USED +5 5 PRODUCT MONITORING FLAG +6 6 KNMI QUALITY CONTROL FAILS +7 7 VARIATIONAL QUALITY CONTROL FAILS +8 8 SOME PORTION OF WIND VECTOR CELL IS OVER LAND +9 9 SOME PORTION OF WIND VECTOR CELL IS OVER ICE +10 10 WIND RETRIEVAL NOT PERFORMED FOR WIND VECTOR CELL +11 11 REPORTED WIND SPEED IS GREATER THAN 30 M/S +12 12 REPORTED WIND SPEED IS LESS THAN OR EQUAL TO 3 M/S +13 13 RAIN FLAG FOR THE WIND VECTOR CELL IS NOT USABLE +14 14 RAIN FLAG ALGORITHM DETECTS RAIN +15 15 NO METEOROLOGICAL BACKGROUND USED +16 16 DATA ARE REDUNDANT diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21158.table b/definitions/bufr/tables/0/wmo/35/codetables/21158.table new file mode 100644 index 000000000..dd53c5159 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21158.table @@ -0,0 +1,4 @@ +0 0 ACCEPTABLE +1 1 NOT ACCEPTABLE +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21159.table b/definitions/bufr/tables/0/wmo/35/codetables/21159.table new file mode 100644 index 000000000..1703f9b8e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21159.table @@ -0,0 +1,4 @@ +0 0 GOOD +1 1 USABLE +2 2 BAD +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/21169.table b/definitions/bufr/tables/0/wmo/35/codetables/21169.table new file mode 100644 index 000000000..9b93444ce --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/21169.table @@ -0,0 +1,4 @@ +0 0 NO ICE PRESENT +1 1 ICE PRESENT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2119.table b/definitions/bufr/tables/0/wmo/35/codetables/2119.table new file mode 100644 index 000000000..0640af68b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2119.table @@ -0,0 +1,8 @@ +0 0 INTERMEDIATE FREQUENCY CALIBRATION MODE (IF CAL) +1 1 BUILT-IN TEST EQUIPMENT DIGITAL (BITE DGT) +2 2 BUILT-IN TEST EQUIPMENT RADIO FREQUENCY (BITE RF) +3 3 PRESET TRACKING (PSET TRK) +4 4 PRESET LOOP OUT +5 5 ACQUISITION +6 6 TRACKING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2131.table b/definitions/bufr/tables/0/wmo/35/codetables/2131.table new file mode 100644 index 000000000..f4336ef79 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2131.table @@ -0,0 +1 @@ +1 1 STC OPERATIONAL diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2137.table b/definitions/bufr/tables/0/wmo/35/codetables/2137.table new file mode 100644 index 000000000..40d33fdd3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2137.table @@ -0,0 +1,4 @@ +1 1 3:2 +2 2 4:3 +3 3 5:4 +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2138.table b/definitions/bufr/tables/0/wmo/35/codetables/2138.table new file mode 100644 index 000000000..a574506ad --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2138.table @@ -0,0 +1,3 @@ +1 1 CLOCKWISE ROTATION +2 2 COUNTERCLOCKWISE ROTATION +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2139.table b/definitions/bufr/tables/0/wmo/35/codetables/2139.table new file mode 100644 index 000000000..f6cf80294 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2139.table @@ -0,0 +1,3 @@ +0 0 SIRAL NOMINAL +1 1 SIRAL REDUNDANT +2 2 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2143.table b/definitions/bufr/tables/0/wmo/35/codetables/2143.table new file mode 100644 index 000000000..975d068be --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2143.table @@ -0,0 +1,21 @@ +0 0 RESERVED +1 1 BREWER SPECTROPHOTOMETER +2 2 CAVER TEICHERT +3 3 DOBSON +4 4 DOBSON (JAPAN) +5 5 EHMET +6 6 FECKER TELESCOPE +7 7 HOELPER +8 8 JODMETER +9 9 FILTER OZONOMETER M-83 +10 10 MAST +11 11 OXFORD +12 12 PAETZOLD +13 13 REGENER +14 14 RESERVED FOR FUTURE USE +15 15 VASSY FILTER OZONOMETER +16 16 CARBON IODIDE +17 17 SURFACE OZONE BUBBLER +18 18 FILTER OZONOMETER M-124 +19 19 ECC SONDE +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2144.table b/definitions/bufr/tables/0/wmo/35/codetables/2144.table new file mode 100644 index 000000000..5b0f37b34 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2144.table @@ -0,0 +1,8 @@ +0 0 DIRECT SUN +1 1 DIRECT SUN, ATTENUATOR #1 +2 2 DIRECT SUN, ATTENUATOR #2 +3 3 FOCUSED MOON +4 4 FOCUSED SUN +5 5 FOCUSED SUN CORRECTED WITH ADJACENT SKY MEASUREMENTS +6 6 ZENITH SKY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2145.table b/definitions/bufr/tables/0/wmo/35/codetables/2145.table new file mode 100644 index 000000000..1944e69fc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2145.table @@ -0,0 +1,9 @@ +0 0 WAVELENGTHS AD ORDINARY SETTING +1 1 WAVELENGTHS BD ORDINARY SETTING +2 2 WAVELENGTHS CD ORDINARY SETTING +3 3 WAVELENGTHS CC' ORDINARY SETTING +4 4 WAVELENGTHS AD FOCUSED IMAGE +5 5 WAVELENGTHS BD FOCUSED IMAGE +6 6 WAVELENGTHS CD FOCUSED IMAGE +7 7 WAVELENGTHS CC' FOCUSED IMAGE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2146.table b/definitions/bufr/tables/0/wmo/35/codetables/2146.table new file mode 100644 index 000000000..871b35709 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2146.table @@ -0,0 +1,11 @@ +0 0 ON DIRECT SUN +1 1 ON DIRECT MOON +2 2 ON BLUE ZENITH SKY +3 3 ON ZENITH CLOUD (UNIFORM STRATIFIED LAYER OF SMALL OPACITY) +4 4 ON ZENITH CLOUD (UNIFORM OR MODERATELY VARIABLE LAYER OF MEDIUM OPACITY) +5 5 ON ZENITH CLOUD (UNIFORM OR MODERATELY VARIABLE LAYER OF LARGE OPACITY) +6 6 ON ZENITH CLOUD (HIGHLY VARIABLE OPACITY, WITH OR WITHOUT PRECIPITATION) +7 7 ON ZENITH CLOUD (FOG) +8 8 ON ZENITH HAZE +9 9 ON DIRECT SUN THROUGH THIN CLOUD, FOG OR HAZE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2147.table b/definitions/bufr/tables/0/wmo/35/codetables/2147.table new file mode 100644 index 000000000..4ff1c92a9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2147.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 DIRECT LEASED CIRCUIT +2 2 DIALLED UP CONNECTION +3 3 INTERNET ISP +4 4 DCP VIA SATELLITE (MTSAT, METEOSAT, ETC.) +5 5 VSAT +6 6 GAN,* BGAN** +7 7 THISS TERMINAL +8 8 IRIDIUM SATELLITES +9 9 MOBILE TELEPHONY +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2148.table b/definitions/bufr/tables/0/wmo/35/codetables/2148.table new file mode 100644 index 000000000..7d8ca51e3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2148.table @@ -0,0 +1,12 @@ +0 0 RESERVED +1 1 ARGOS +2 2 GPS +3 3 GOES DCP +4 4 METEOSAT DCP +5 5 ORBCOMM +6 6 INMARSAT +7 7 IRIDIUM +8 8 IRIDIUM AND GPS +9 9 ARGOS-3 +10 10 ARGOS-4 +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2149.table b/definitions/bufr/tables/0/wmo/35/codetables/2149.table new file mode 100644 index 000000000..04638d229 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2149.table @@ -0,0 +1,38 @@ +0 0 UNSPECIFIED DRIFTING BUOY +1 1 STANDARD LAGRANGIAN DRIFTER (GLOBAL DRIFTER PROGRAMME) +2 2 STANDARD FGGE TYPE DRIFTING BUOY (NON-LAGRANGIAN METEOROLOGICAL DRIFTING BUOY) +3 3 WIND MEASURING FGGE TYPE DRIFTING BUOY (NON-LAGRANGIAN METEOROLOGICAL DRIFTING BUOY) +4 4 ICE DRIFTER +5 5 SVPG STANDARD LAGRANGIAN DRIFTER WITH GPS +6 6 SVP-HR DRIFTER WITH HIGH-RESOLUTION TEMPERATURE OR THERMISTOR STRING +7 7 RESERVED +8 8 UNSPECIFIED SUBSURFACE FLOAT +9 9 SOFAR +10 10 ALACE +11 11 MARVOR +12 12 RAFOS +13 13 PROVOR +14 14 SOLO +15 15 APEX +16 16 UNSPECIFIED MOORED BUOY +17 17 NOMAD +18 18 3-METRE DISCUS +19 19 10-12-METRE DISCUS +20 20 ODAS 30 SERIES +21 21 ATLAS (E.G. TAO AREA) +22 22 TRITON BUOY +23 23 FLEX MOORING (E.G. TIP AREA) +24 24 OMNIDIRECTIONAL WAVERIDER +25 25 DIRECTIONAL WAVERIDER +26 26 SUBSURFACE ARGO FLOAT +27 27 PALACE +28 28 NEMO +29 29 NINJA +30 30 ICE BUOY/FLOAT (POPS OR ITP) +34 34 MOORING OCEANOGRAPHIC +35 35 MOORING METEOROLOGICAL +36 36 MOORING MULTIDISCIPLINARY (OCEANSITES) +37 37 MOORING TIDE GAUGE OR TSUNAMI BUOY +38 38 ICE BEACON +39 39 ICE MASS BALANCE BUOY +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2150.table b/definitions/bufr/tables/0/wmo/35/codetables/2150.table new file mode 100644 index 000000000..8193b575a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2150.table @@ -0,0 +1,55 @@ +0 0 RESERVED +1 1 HIRS 1 +2 2 HIRS 2 +3 3 HIRS 3 +4 4 HIRS 4 +5 5 HIRS 5 +6 6 HIRS 6 +7 7 HIRS 7 +8 8 HIRS 8 +9 9 HIRS 9 +10 10 HIRS 10 +11 11 HIRS 11 +12 12 HIRS 12 +13 13 HIRS 13 +14 14 HIRS 14 +15 15 HIRS 15 +16 16 HIRS 16 +17 17 HIRS 17 +18 18 HIRS 18 +19 19 HIRS 19 +20 20 HIRS 20 +21 21 MSU 1 +22 22 MSU 2 +23 23 MSU 3 +24 24 MSU 4 +25 25 SSU 1 +26 26 SSU 2 +27 27 SSU 3 +28 28 AMSU-A 1 +29 29 AMSU-A 2 +30 30 AMSU-A 3 +31 31 AMSU-A 4 +32 32 AMSU-A 5 +33 33 AMSU-A 6 +34 34 AMSU-A 7 +35 35 AMSU-A 8 +36 36 AMSU-A 9 +37 37 AMSU-A 10 +38 38 AMSU-A 11 +39 39 AMSU-A 12 +40 40 AMSU-A 13 +41 41 AMSU-A 14 +42 42 AMSU-A 15 +43 43 AMSU-B 1 / MHS 1 +44 44 AMSU-B 2 / MHS 2 +45 45 AMSU-B 3 / MHS 3 +46 46 AMSU-B 4 / MHS 4 +47 47 AMSU-B 5 / MHS 5 +48 48 AVHRR 1 +49 49 AVHRR 2 +50 50 AVHRR 3A +51 51 AVHRR 3B +52 52 AVHRR 4 +53 53 AVHRR 5 +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2151.table b/definitions/bufr/tables/0/wmo/35/codetables/2151.table new file mode 100644 index 000000000..45c80df10 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2151.table @@ -0,0 +1,11 @@ +0 0 HIRS +1 1 MSU +2 2 SSU +3 3 AMSU-A1-1 +4 4 AMSU-A1-2 +5 5 AMSU-A2 +6 6 AMSU-B +7 7 AVHRR +8 8 RESERVED +9 9 MHS +2047 2047 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2152.table b/definitions/bufr/tables/0/wmo/35/codetables/2152.table new file mode 100644 index 000000000..880c384cf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2152.table @@ -0,0 +1,13 @@ +1 1 HIGH-RESOLUTION INFRARED SOUNDER (HIRS) +2 2 MICROWAVE SOUNDING UNIT (MSU) +3 3 STRATOSPHERIC SOUNDING UNIT (SSU) +4 4 AMI WIND MODE +5 5 AMI WAVE MODE +6 6 AMI IMAGE MODE +7 7 RADAR ALTIMETER +8 8 ATSR +9 9 GEOSTATIONARY IMAGER +10 10 GEOSTATIONARY SOUNDER +11 11 GEOSTATIONARY EARTH RADIATION (GERB) +12 12 MULTI-CHANNEL SCANNING RADIOMETER +13 13 POLAR-ORBITING IMAGER diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2158.table b/definitions/bufr/tables/0/wmo/35/codetables/2158.table new file mode 100644 index 000000000..97c4449c5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2158.table @@ -0,0 +1,8 @@ +1 1 MISMATCH IN RED VEC HPA +2 2 MISMATCH IN RED VEC RFSS +3 3 PTR CALIBRATION BAND 320 MHZ (KU) +4 4 PTR CALIBRATION BAND 80 MHZ (KU) +5 5 PTR CALIBRATION BAND 20 MHZ (KU) +6 6 PTR CALIBRATION BAND 160 MHZ (S) +7 7 KU FLIGHT CALIBRATION PARAMETERS AVAILABLE +8 8 S FLIGHT CALIBRATION PARAMETERS AVAILABLE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2159.table b/definitions/bufr/tables/0/wmo/35/codetables/2159.table new file mode 100644 index 000000000..63cb87c78 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2159.table @@ -0,0 +1,7 @@ +1 1 TEMPERATURE INCONSISTENCY +2 2 DATA IS MISSING +3 3 REDUNDANCY CHANNEL +4 4 POWER BUS PROTECTION +5 5 OVERVOLTAGE/OVERLOAD PROTECTION +6 6 RESERVED +7 7 RESERVED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2160.table b/definitions/bufr/tables/0/wmo/35/codetables/2160.table new file mode 100644 index 000000000..fd7f37274 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2160.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 10 TO LESS THAN 20 MM +2 2 RESERVED +3 3 20 TO LESS THAN 40 MM +4 4 RESERVED +5 5 40 TO LESS THAN 60 MM +6 6 RESERVED +7 7 60 TO LESS THAN 90 MM +8 8 90 TO LESS THAN 110 MM +9 9 110 MM AND GREATER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2161.table b/definitions/bufr/tables/0/wmo/35/codetables/2161.table new file mode 100644 index 000000000..55b88f4de --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2161.table @@ -0,0 +1,5 @@ +11 11 WIND HEIGHT CALCULATED FROM MEDIAN CLOUD-TOP PRESSURE OF TARGET +12 12 TARGET IS CLOUDY +13 13 LOW-LEVEL INVERSION +14 14 CROSS CORRELATION CONTRIBUTION (CCC) METHOD +15 15 NESTED TRACKING diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2162.table b/definitions/bufr/tables/0/wmo/35/codetables/2162.table new file mode 100644 index 000000000..510f09aa3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2162.table @@ -0,0 +1,19 @@ +0 0 AUTO EDITOR +1 1 IRW HEIGHT ASSIGNMENT +2 2 WV HEIGHT ASSIGNMENT +3 3 H2O INTERCEPT HEIGHT ASSIGNMENT +4 4 CO2 SLICING HEIGHT ASSIGNMENT +5 5 LOW PIXEL MAX GRADIENT +6 6 HIGHER PIXEL MAX GRADIENT +7 7 PRIMARY HEIGHT ASSIGNMENT +8 8 LAYER THICKNESS ASSIGNMENT +9 9 CUMULATIVE CONTRIBUTION FUNCTION - 10 PER CENT HEIGHT +10 10 CUMULATIVE CONTRIBUTION FUNCTION - 50 PER CENT HEIGHT +11 11 CUMULATIVE CONTRIBUTION FUNCTION - 90 PER CENT HEIGHT +12 12 CUMULATIVE CONTRIBUTION FUNCTION - HEIGHT OF MAXIMUM GRADIENT +13 13 IR/TWO WV CHANNEL RATIONING METHOD +14 14 COMPOSITE HEIGHT ASSIGNMENT +15 15 OPTIMAL ESTIMATION +16 16 INVERSION CORRECTION +17 17 GEOMETRIC HEIGHT ASSIGNMENT +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2163.table b/definitions/bufr/tables/0/wmo/35/codetables/2163.table new file mode 100644 index 000000000..8cac63196 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2163.table @@ -0,0 +1,16 @@ +0 0 AUTO EDITOR +1 1 IRW HEIGHT ASSIGNMENT +2 2 WV HEIGHT ASSIGNMENT +3 3 H2O INTERCEPT HEIGHT ASSIGNMENT +4 4 CO2 SLICING HEIGHT ASSIGNMENT +5 5 LOW PIXEL MAX GRADIENT +6 6 HIGHER PIXEL MAX GRADIENT +7 7 PRIMARY HEIGHT ASSIGNMENT +8 8 LAYER THICKNESS ASSIGNMENT +9 9 CUMULATIVE CONTRIBUTION FUNCTION - 10 PER CENT HEIGHT +10 10 CUMULATIVE CONTRIBUTION FUNCTION - 50 PER CENT HEIGHT +11 11 CUMULATIVE CONTRIBUTION FUNCTION - 90 PER CENT HEIGHT +12 12 CUMULATIVE CONTRIBUTION FUNCTION - HEIGHT OF MAXIMUM GRADIENT +13 13 IR / TWO WV CHANNEL RATIOING METHOD +14 14 COMPOSITE HEIGHT ASSIGNMENT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2164.table b/definitions/bufr/tables/0/wmo/35/codetables/2164.table new file mode 100644 index 000000000..4bf9aa961 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2164.table @@ -0,0 +1,5 @@ +0 0 LP - NORMS LEAST SQUARE MINIMUM +1 1 EN - EUCLIDEAN NORM WITH RADIANCE CORRELATION +2 2 CC - CROSS CORRELATION +3 3 STEREO MATCHING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2165.table b/definitions/bufr/tables/0/wmo/35/codetables/2165.table new file mode 100644 index 000000000..628be0e75 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2165.table @@ -0,0 +1,7 @@ +1 1 CLEAR PATH +2 2 PARTLY CLOUDY PATH +3 3 CLOUDY PATH +4 4 APODIZED +5 5 UNAPODIZED +6 6 RECONSTRUCTED +7 7 CLOUD CLEARED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2166.table b/definitions/bufr/tables/0/wmo/35/codetables/2166.table new file mode 100644 index 000000000..efac38f8d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2166.table @@ -0,0 +1,6 @@ +0 0 TYPE NOT DEFINED +1 1 AUTOMATED STATISTICAL REGRESSION +2 2 CLEAR PATH +3 3 PARTLY CLOUDY PATH +4 4 CLOUDY PATH +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2167.table b/definitions/bufr/tables/0/wmo/35/codetables/2167.table new file mode 100644 index 000000000..acb2f9d9c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2167.table @@ -0,0 +1,4 @@ +0 0 METHOD NOT DEFINED +1 1 1B RAW RADIANCE +2 2 PROCESSED RADIANCE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2169.table b/definitions/bufr/tables/0/wmo/35/codetables/2169.table new file mode 100644 index 000000000..bd31667d0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2169.table @@ -0,0 +1,5 @@ +0 0 CUP ROTOR +1 1 PROPELLER ROTOR +2 2 WIND OBSERVATION THROUGH AMBIENT NOISE (WOTAN) +3 3 SONIC +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2170.table b/definitions/bufr/tables/0/wmo/35/codetables/2170.table new file mode 100644 index 000000000..05bab00d7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2170.table @@ -0,0 +1,5 @@ +0 0 SPECTRASENSORS WVSS-II, VERSION 1 +1 1 SPECTRASENSORS WVSS-II, VERSION 2 +2 2 SPECTRASENSORS WVSS-II, VERSION 3 +62 62 OTHER +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2172.table b/definitions/bufr/tables/0/wmo/35/codetables/2172.table new file mode 100644 index 000000000..3c3641ab6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2172.table @@ -0,0 +1,4 @@ +0 0 RESERVED +1 1 RETRIEVAL FROM A NADIR SOUNDING +2 2 RETRIEVAL FROM A LIMB SOUNDING +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2175.table b/definitions/bufr/tables/0/wmo/35/codetables/2175.table new file mode 100644 index 000000000..2cf2a3d55 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2175.table @@ -0,0 +1,9 @@ +0 0 MANUAL MEASUREMENT +1 1 TIPPING BUCKET METHOD +2 2 WEIGHING METHOD +3 3 OPTICAL METHOD +4 4 PRESSURE METHOD +5 5 FLOAT METHOD +6 6 DROP COUNTER METHOD +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2176.table b/definitions/bufr/tables/0/wmo/35/codetables/2176.table new file mode 100644 index 000000000..2c27a6f91 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2176.table @@ -0,0 +1,6 @@ +0 0 MANUAL OBSERVATION +1 1 VIDEO CAMERA METHOD +2 2 INFRARED METHOD +3 3 LASER METHOD +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2177.table b/definitions/bufr/tables/0/wmo/35/codetables/2177.table new file mode 100644 index 000000000..e7bb67a7d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2177.table @@ -0,0 +1,6 @@ +0 0 MANUAL OBSERVATION +1 1 ULTRASONIC METHOD +2 2 VIDEO CAMERA METHOD +3 3 LASER METHOD +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2178.table b/definitions/bufr/tables/0/wmo/35/codetables/2178.table new file mode 100644 index 000000000..f4f8b592c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2178.table @@ -0,0 +1,5 @@ +0 0 MANUAL OBSERVATION +1 1 OPTICAL METHOD +2 2 CAPACITIVE METHOD +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2179.table b/definitions/bufr/tables/0/wmo/35/codetables/2179.table new file mode 100644 index 000000000..9e9ba189a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2179.table @@ -0,0 +1,6 @@ +0 0 MANUAL OBSERVATION +1 1 VAISALA ALGORITHM +2 2 ASOS (FAA) ALGORITHM +3 3 AWOS (CANADA) ALGORITHM +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2180.table b/definitions/bufr/tables/0/wmo/35/codetables/2180.table new file mode 100644 index 000000000..0b21b2c26 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2180.table @@ -0,0 +1,8 @@ +0 0 MANUAL OBSERVATION +1 1 OPTICAL SCATTER SYSTEM COMBINED WITH PRECIPITATION OCCURRENCE SENSING SYSTEM +2 2 FORWARD AND/OR BACKSCATTER SYSTEM OF VISIBLE LIGHT +3 3 FORWARD AND/OR BACKSCATTER SYSTEM OF INFRARED LIGHT +4 4 INFRARED LIGHT EMITTING DIODE (IRED) SYSTEM +5 5 DOPPLER RADAR SYSTEM +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2181.table b/definitions/bufr/tables/0/wmo/35/codetables/2181.table new file mode 100644 index 000000000..5096dc48a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2181.table @@ -0,0 +1,5 @@ +1 1 RAIN DETECTOR +2 2 FREEZING RAIN SENSOR +3 3 ICE DETECTION SENSOR +4 4 HAIL AND ICE PELLET SENSOR +20 20 OTHERS diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2182.table b/definitions/bufr/tables/0/wmo/35/codetables/2182.table new file mode 100644 index 000000000..4ffab2652 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2182.table @@ -0,0 +1,7 @@ +0 0 MANUAL MEASUREMENT +1 1 TRANSMISSOMETER SYSTEM (BASE > 25 M) +2 2 TRANSMISSOMETER SYSTEM (BASE < 25 M) +3 3 FORWARD SCATTER SYSTEM +4 4 BACKSCATTER SYSTEM +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2183.table b/definitions/bufr/tables/0/wmo/35/codetables/2183.table new file mode 100644 index 000000000..a804ea1e1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2183.table @@ -0,0 +1,9 @@ +0 0 MANUAL OBSERVATION +1 1 CEILOMETER SYSTEM +2 2 INFRARED CAMERA SYSTEM +3 3 MICROWAVE VISUAL CAMERA SYSTEM +4 4 SKY IMAGER SYSTEM +5 5 VIDEO TIME-LAPSED CAMERA SYSTEM +6 6 MICROPULSE LIDAR (MPL) SYSTEM +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2184.table b/definitions/bufr/tables/0/wmo/35/codetables/2184.table new file mode 100644 index 000000000..cf5ee84ac --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2184.table @@ -0,0 +1,9 @@ +0 0 MANUAL OBSERVATION +1 1 LIGHTNING IMAGING SENSOR +2 2 ELECTRICAL STORM IDENTIFICATION SENSOR +3 3 MAGNETIC FINDER SENSOR +4 4 LIGHTNING STRIKE SENSOR +5 5 FLASH COUNTER +6 6 ATDNET VLF WAVEFORM CORRELATED SENSOR +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2185.table b/definitions/bufr/tables/0/wmo/35/codetables/2185.table new file mode 100644 index 000000000..45b081051 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2185.table @@ -0,0 +1,7 @@ +0 0 MANUAL MEASUREMENT +1 1 BALANCED FLOATING METHOD +2 2 PRESSURE METHOD +3 3 ULTRASONIC METHOD +4 4 HYDRAULIC METHOD +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2186.table b/definitions/bufr/tables/0/wmo/35/codetables/2186.table new file mode 100644 index 000000000..2a9e71004 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2186.table @@ -0,0 +1,24 @@ +1 1 PRECIPITATION-UNKNOWN TYPE +2 2 LIQUID PRECIPITATION NOT FREEZING +3 3 LIQUID FREEZING PRECIPITATION +4 4 DRIZZLE +5 5 RAIN +6 6 SOLID PRECIPITATION +7 7 SNOW +8 8 SNOW GRAINS +9 9 SNOW PELLETS +10 10 ICE PELLETS +11 11 ICE CRYSTALS +12 12 DIAMOND DUST +13 13 SMALL HAIL +14 14 HAIL +15 15 GLAZE +16 16 RIME +17 17 SOFT RIME +18 18 HARD RIME +19 19 CLEAR ICE +20 20 WET SNOW +21 21 HOAR FROST +22 22 DEW +23 23 WHITE DEW +24 24 CONVECTIVE PRECIPITATION diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2187.table b/definitions/bufr/tables/0/wmo/35/codetables/2187.table new file mode 100644 index 000000000..def3d2feb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2187.table @@ -0,0 +1,11 @@ +1 1 DUST/SAND WHIRL +2 2 SQUALLS +3 3 SAND STORM +4 4 DUST STORM +5 5 LIGHTNING - CLOUD TO SURFACE +6 6 LIGHTNING - CLOUD TO CLOUD +7 7 LIGHTNING - DISTANT +8 8 THUNDERSTORM +9 9 FUNNEL CLOUD NOT TOUCHING SURFACE +10 10 FUNNEL CLOUD TOUCHING SURFACE +11 11 SPRAY diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2188.table b/definitions/bufr/tables/0/wmo/35/codetables/2188.table new file mode 100644 index 000000000..bb8114ca8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2188.table @@ -0,0 +1,10 @@ +1 1 FOG +2 2 ICE FOG +3 3 STEAM FOG +7 7 MIST +8 8 HAZE +9 9 SMOKE +10 10 VOLCANIC ASH +11 11 DUST +12 12 SAND +13 13 SNOW diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2189.table b/definitions/bufr/tables/0/wmo/35/codetables/2189.table new file mode 100644 index 000000000..61ac9e322 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2189.table @@ -0,0 +1,4 @@ +1 1 MANUAL OBSERVATION +2 2 ALL LIGHTNING STRIKES WITHOUT DISCRIMINATION +3 3 LIGHTNING STRIKES CLOUD TO GROUND ONLY +4 4 ALL LIGHTNING STRIKES WITH DISCRIMINATION BETWEEN CLOUD TO GROUND AND CLOUD TO CLOUD diff --git a/definitions/bufr/tables/0/wmo/35/codetables/2191.table b/definitions/bufr/tables/0/wmo/35/codetables/2191.table new file mode 100644 index 000000000..2e96256c7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/2191.table @@ -0,0 +1,4 @@ +0 0 GEOPOTENTIAL HEIGHT CALCULATED FROM PRESSURE +1 1 GEOPOTENTIAL HEIGHT CALCULATED FROM GPS HEIGHT +2 2 GEOPOTENTIAL HEIGHT CALCULATED FROM RADAR HEIGHT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/22056.table b/definitions/bufr/tables/0/wmo/35/codetables/22056.table new file mode 100644 index 000000000..28ddbf4e4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/22056.table @@ -0,0 +1,4 @@ +0 0 UPWARDS PROFILE +1 1 DOWNWARDS PROFILE +2 2 HORIZONTAL +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/22060.table b/definitions/bufr/tables/0/wmo/35/codetables/22060.table new file mode 100644 index 000000000..b73ad3235 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/22060.table @@ -0,0 +1,4 @@ +0 0 DROGUE IS DETACHED +1 1 DROGUE IS ATTACHED +2 2 DROGUE STATUS UNKNOWN +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/22061.table b/definitions/bufr/tables/0/wmo/35/codetables/22061.table new file mode 100644 index 000000000..aa8c62bae --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/22061.table @@ -0,0 +1,11 @@ +0 0 CALM (GLASSY) +1 1 CALM (RIPPLED) +2 2 SMOOTH (WAVELETS) +3 3 SLIGHT +4 4 MODERATE +5 5 ROUGH +6 6 VERY ROUGH +7 7 HIGH +8 8 VERY HIGH +9 9 PHENOMENAL +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/22067.table b/definitions/bufr/tables/0/wmo/35/codetables/22067.table new file mode 100644 index 000000000..3443d36c6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/22067.table @@ -0,0 +1,109 @@ +1 1 SIPPICAN T-4 +2 2 SIPPICAN T-4 +11 11 SIPPICAN T-5 +21 21 SIPPICAN FAST DEEP +31 31 SIPPICAN T-6 +32 32 SIPPICAN T-6 +41 41 SIPPICAN T-7 +42 42 SIPPICAN T-7 +51 51 SIPPICAN DEEP BLUE +52 52 SIPPICAN DEEP BLUE +61 61 SIPPICAN T-10 +71 71 SIPPICAN T-11 +81 81 SIPPICAN AXBT (300 M PROBES) +201 201 TSK T-4 +202 202 TSK T-4 +211 211 TSK T-6 +212 212 TSK T-6 +221 221 TSK T-7 +222 222 TSK T-7 +231 231 TSK T-5 +241 241 TSK T-10 +251 251 TSK DEEP BLUE +252 252 TSK DEEP BLUE +261 261 TSK AXBT +401 401 SPARTON XBT-1 +411 411 SPARTON XBT-3 +421 421 SPARTON XBT-4 +431 431 SPARTON XBT-5 +441 441 SPARTON XBT-5DB +451 451 SPARTON XBT-6 +461 461 SPARTON XBT-7 +462 462 SPARTON XBT-7 +471 471 SPARTON XBT-7DB +481 481 SPARTON XBT-10 +491 491 SPARTON XBT-20 +501 501 SPARTON XBT-20DB +510 510 SPARTON 536 AXBT +700 700 SIPPICAN XCTD STANDARD +710 710 SIPPICAN XCTD DEEP +720 720 SIPPICAN AXCTD +730 730 SIPPICAN SXCTD +741 741 TSK XCTD/XCTD-1/XCTD-1N +742 742 TSK XCTD-2/XCTD-2N +743 743 TSK XCTD-2F +744 744 TSK XCTD-3/XCTD-3N +745 745 TSK XCTD-4/XCTD-4N +751 751 TSK AXCTD +780 780 SEA-BIRD SBE21 SEACAT THERMOSALINOGRAPH +781 781 SEA-BIRD SBE45 MICROTSG THERMOSALINOGRAPH +800 800 MECHANICAL BT +810 810 HYDROCAST +820 820 THERMISTOR CHAIN +825 825 TEMPERATURE (SONIC) AND PRESSURE PROBES +830 830 CTD +831 831 CTD-P-ALACE FLOAT +835 835 PROVOR IV +836 836 PROVOR III +837 837 ARVOR_C, SBE CONDUCTIVITY SENSOR +838 838 ARVOR_D, SBE CONDUCTIVITY SENSOR +839 839 PROVOR-II, SBE CONDUCTIVITY SENSOR +840 840 PROVOR, NO CONDUCTIVITY SENSOR +841 841 PROVOR, SEA-BIRD CONDUCTIVITY SENSOR +842 842 PROVOR, FSI CONDUCTIVITY SENSOR +843 843 POLAR OCEAN PROFILING SYSTEM (POPS), PROVOR, SBE CTD +844 844 PROFILING FLOAT, ARVOR, SEA-BIRD CONDUCTIVITY SENSOR +845 845 WEBB RESEARCH, NO CONDUCTIVITY SENSOR +846 846 WEBB RESEARCH, SEA-BIRD CONDUCTIVITY SENSOR +847 847 WEBB RESEARCH, FSI CONDUCTIVITY SENSOR +848 848 APEX-EM, SBE CONDUCTIVITY SENSOR +849 849 APEX_D, SBE CONDUCTIVITY SENSOR +850 850 SOLO, NO CONDUCTIVITY SENSOR +851 851 SOLO, SEA-BIRD CONDUCTIVITY SENSOR +852 852 SOLO, FSI CONDUCTIVITY SENSOR +853 853 PROFILING FLOAT, SOLO2 (SCRIPPS), SEA-BIRD CONDUCTIVITY SENSOR +854 854 S2A, SBE CONDUCTIVITY SENSOR +855 855 PROFILING FLOAT, NINJA, NO CONDUCTIVITY SENSOR +856 856 PROFILING FLOAT, NINJA, SBE CONDUCTIVITY SENSOR +857 857 PROFILING FLOAT, NINJA, FSI CONDUCTIVITY SENSOR +858 858 PROFILING FLOAT, NINJA, TSK CONDUCTIVITY SENSOR +859 859 PROFILING FLOAT, NEMO, NO CONDUCTIVITY SENSOR +860 860 PROFILING FLOAT, NEMO, SBE CONDUCTIVITY SENSOR +861 861 PROFILING FLOAT, NEMO, FSI CONDUCTIVITY SENSOR +862 862 SOLO_D, SBE CONDUCTIVITY SENSOR +863 863 NAVIS-A, SBE CONDUCTIVITY SENSOR +864 864 NINJA_D, SBE CONDUCTIVITY SENSOR +865 865 NOVA, SBE CONDUCTIVITY SENSOR +866 866 ALAMO, NO CONDUCTIVITY SENSOR +867 867 ALAMO, RBR CONDUCTIVITY SENSOR +868 868 ALAMO, SBE CONDUCTIVITY SENSOR +869 869 RESERVED +870 870 HM2000 +871 871 COPEX +872 872 S2X +873 873 ALTO +874 874 SOLO_D_MRV +900 900 SIPPICAN LMP-5 XBT +901 901 ICE-TETHERED PROFILER (ITP), SBE CTD +902 902 BROOKE OCEAN MOVING VESSEL PROFILER (MVP) +903 903 SEA-BIRD CTD +904 904 AML OCEANOGRAPHIC CTD +905 905 FALMOUTH SCIENTIFIC CTD +906 906 OCEAN SENSORS CTD +907 907 VALEPORT CTD +908 908 OCEANSCIENCE MVP +909 909 IDRONAUT CTD +910 910 SEA-BIRD SBE 38 +995 995 INSTRUMENT ATTACHED TO MARINE MAMMALS +996 996 INSTRUMENT ATTACHED TO ANIMALS OTHER THAN MARINE MAMMALS +1023 1023 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/22068.table b/definitions/bufr/tables/0/wmo/35/codetables/22068.table new file mode 100644 index 000000000..f6ddeb270 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/22068.table @@ -0,0 +1,43 @@ +1 1 SIPPICAN STRIP CHART RECORDER +2 2 SIPPICAN MK2A/SSQ-61 +3 3 SIPPICAN MK-9 +4 4 SIPPICAN AN/BHQ-7/MK8 +5 5 SIPPICAN MK-12 +6 6 SIPPICAN MK-21 +7 7 SIPPICAN MK-8 LINEAR RECORDER +8 8 SIPPICAN MK-10 +10 10 SPARTON SOC BT/SV PROCESSOR MODEL 100 +11 11 LOCKHEED-SANDERS MODEL OL5005 +20 20 ARGOS XBT-ST +21 21 CLS-ARGOS/PROTECNO XBT-ST MODEL-1 +22 22 CLS-ARGOS/PROTECNO XBT-ST MODEL-2 +30 30 BATHY SYSTEMS SA-810 +31 31 SCRIPPS METROBYTE CONTROLLER +32 32 MURAYAMA DENKI Z-60-16 III +33 33 MURAYAMA DENKI Z-60-16 II +34 34 PROTECNO ETSM2 +35 35 NAUTILUS MARINE SERVICE NMS-XBT +40 40 TSK MK-2A +41 41 TSK MK-2S +42 42 TSK MK-30 +43 43 TSK MK-30N +45 45 TSK MK-100 +46 46 TSK MK-130 COMPATIBLE RECORDER FOR BOTH XBT AND XCTD +47 47 TSK MK-130A XCTD RECORDER +48 48 TSK AXBT RECEIVER MK-300 +49 49 TSK MK-150/MK-150N COMPATIBLE RECORDER FOR BOTH XBT AND XCTD +50 50 JMA ASTOS +60 60 ARGOS COMMUNICATIONS, SAMPLING ON UP TRANSIT +61 61 ARGOS COMMUNICATIONS, SAMPLING ON DOWN TRANSIT +62 62 ORBCOMM COMMUNICATIONS, SAMPLING ON UP TRANSIT +63 63 ORBCOMM COMMUNICATIONS, SAMPLING ON DOWN TRANSIT +64 64 IRIDIUM COMMUNICATIONS, SAMPLING ON UP TRANSIT +65 65 IRIDIUM COMMUNICATIONS, SAMPLING ON DOWN TRANSIT +70 70 CSIRO DEVIL-1 XBT ACQUISITION SYSTEM +71 71 CSIRO DEVIL-2 XBT ACQUISITION SYSTEM +72 72 TURO/CSIRO QUOLL XBT ACQUISITION SYSTEM +80 80 APPLIED MICROSYSTEMS LTD., MICRO-SVT&P +81 81 SEA MAMMAL RESEARCH UNIT, UNIV. ST. ANDREWS, UK, UNCORRECTED SALINITY FROM A SEA MAMMAL MOUNTED INSTRUMENT +82 82 SEA MAMMAL RESEARCH UNIT, UNIV. ST. ANDREWS, UK, CORRECTED SALINITY FROM A SEA MAMMAL MOUNTED INSTRUMENT +99 99 UNKNOWN +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/22120.table b/definitions/bufr/tables/0/wmo/35/codetables/22120.table new file mode 100644 index 000000000..8c747ce66 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/22120.table @@ -0,0 +1,13 @@ +0 0 GOOD DATA +1 1 MAXIMUM (HIGH) WATER LEVEL LIMIT EXCEEDED +2 2 MINIMUM (LOW) WATER LEVEL LIMIT EXCEEDED +3 3 RATE OF CHANGE LIMIT FOR WATER LEVEL EXCEEDED +4 4 FLAT LIMIT FOR WATER LEVEL EXCEEDED +5 5 OBSERVED MINUS PREDICTED WATER LEVEL VALUE LIMIT EXCEEDED +6 6 OBSERVED VALUE FROM PRIMARY WATER LEVEL SENSOR MINUS BACKUP WATER LEVEL SENSOR +7 7 VALUE EXCEEDED SPECIFIED TOLERANCE FROM EXPECTED VALUE +8 8 WATER LEVEL QA PARAMETER (SIGMAS AND/OR OUTLIERS) LIMITS EXCEEDED +9 9 SEA TEMPERATURE OUTSIDE OF EXPECTED RANGE +10 10 MULTIPLE QC CHECKS (ABOVE) FAILED +11 11 NO AUTOMATED WATER LEVEL CHECKS PERFORMED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/22121.table b/definitions/bufr/tables/0/wmo/35/codetables/22121.table new file mode 100644 index 000000000..7d4dfa821 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/22121.table @@ -0,0 +1,9 @@ +0 0 OPERATIONAL +1 1 POSSIBLE CLOGGING PROBLEM OR OTHERWISE DEGRADED WATER LEVEL DATA +2 2 POSSIBLE DATUM SHIFT +3 3 UNKNOWN STATUS OF WATER LEVEL SENSOR +4 4 SUSPECTED OR KNOWN SEA TEMPERATURE SENSOR PROBLEM +5 5 MULTIPLE POSSIBLE PROBLEMS (ABOVE) +6 6 BAD DATA - DO NOT DISSEMINATE! +7 7 NO MANUAL WATER LEVEL CHECKS PERFORMED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/22122.table b/definitions/bufr/tables/0/wmo/35/codetables/22122.table new file mode 100644 index 000000000..aa9d5ebbe --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/22122.table @@ -0,0 +1,8 @@ +0 0 GOOD DATA FROM ALL SENSORS +1 1 WIND DIRECTION OUTSIDE OF ALLOWABLE RANGE +2 2 WIND SPEED OUTSIDE OF EXPECTED RANGE +3 3 BAROMETRIC PRESSURE OUTSIDE OF EXPECTED RANGE +4 4 AIR TEMPERATURE OUTSIDE OF EXPECTED RANGE +5 5 MULTIPLE SENSORS FAILED QC CHECKS +6 6 NO AUTOMATED METEOROLOGICAL DATA CHECKS PERFORMED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/22123.table b/definitions/bufr/tables/0/wmo/35/codetables/22123.table new file mode 100644 index 000000000..acfb61609 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/22123.table @@ -0,0 +1,9 @@ +0 0 OPERATIONAL +1 1 SUSPECTED OR KNOWN PROBLEM WITH WIND SENSOR +2 2 SUSPECTED OR KNOWN PROBLEM WITH BAROMETRIC PRESSURE SENSOR +3 3 SUSPECTED OR KNOWN PROBLEM WITH AIR TEMPERATURE SENSOR +4 4 UNKNOWN STATUS OF ALL SENSORS +5 5 SUSPECTED OR KNOWN PROBLEMS WITH MULTIPLE SENSORS +6 6 BAD DATA - DO NOT DISSEMINATE! +7 7 NO MANUAL METEOROLOGICAL DATA CHECKS PERFORMED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/22178.table b/definitions/bufr/tables/0/wmo/35/codetables/22178.table new file mode 100644 index 000000000..355848cc5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/22178.table @@ -0,0 +1,12 @@ +0 0 UNKNOWN +1 1 LM-2A DECK-MOUNTED +2 2 LM-3A HAND-HELD +3 3 LM-4A THRU-HULL +10 10 AL-12 TSK AUTOLAUNCHER (UP TO 12 PROBES) +20 20 SIO XBT AUTOLAUNCHER (UP TO 6 PROBES) +30 30 AOML XBT V6 AUTOLAUNCHER (UP TO 6 DEEP BLUE PROBES) +31 31 AOML XBT V8.0 AUTOLAUNCHER (UP TO 8 DEEP BLUE PROBES) +32 32 AOML XBT V8.1 AUTOLAUNCHER (UP TO 8 DEEP BLUE AND FAST DEEP PROBES) +90 90 CSIRO DEVIL AUTOLAUNCHER +100 100 MFSTEP AUTOLAUNCHER (MEDITERRANEAN) +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/23001.table b/definitions/bufr/tables/0/wmo/35/codetables/23001.table new file mode 100644 index 000000000..92ac5deaf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/23001.table @@ -0,0 +1,5 @@ +0 0 RESERVED +1 1 ARTICLES 1 AND 2 +2 2 ARTICLE 3 +3 3 ARTICLE 5.2 +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/23002.table b/definitions/bufr/tables/0/wmo/35/codetables/23002.table new file mode 100644 index 000000000..12815c6a8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/23002.table @@ -0,0 +1,16 @@ +0 0 RESERVED +1 1 NUCLEAR REACTOR ON GROUND +2 2 NUCLEAR REACTOR AT SEA +3 3 NUCLEAR REACTOR IN SPACE +4 4 NUCLEAR FUEL FACILITY +5 5 RADIOACTIVE WASTE MANAGEMENT FACILITY +6 6 TRANSPORT OF NUCLEAR FUEL OR RADIOACTIVE WASTE +7 7 STORAGE OF NUCLEAR FUEL OR RADIOACTIVE WASTE +8 8 MANUFACTURE OF RADIO-ISOTOPES +9 9 USE OF RADIO-ISOTOPES +10 10 STORAGE OF RADIO-ISOTOPES +11 11 DISPOSAL OF RADIO-ISOTOPES +12 12 TRANSPORT OF RADIO-ISOTOPES +13 13 USE OF RADIO-ISOTOPES FOR POWER GENERATION +30 30 OTHER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/23003.table b/definitions/bufr/tables/0/wmo/35/codetables/23003.table new file mode 100644 index 000000000..e3e891f9b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/23003.table @@ -0,0 +1,8 @@ +0 0 NO RELEASE +1 1 RELEASE TO ATMOSPHERE +2 2 RELEASE TO WATER +3 3 RELEASE TO BOTH ATMOSPHERE AND WATER +4 4 EXPECTED RELEASE TO ATMOSPHERE +5 5 EXPECTED RELEASE TO WATER +6 6 EXPECTED RELEASE TO BOTH ATMOSPHERE AND WATER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/23004.table b/definitions/bufr/tables/0/wmo/35/codetables/23004.table new file mode 100644 index 000000000..383731cec --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/23004.table @@ -0,0 +1,6 @@ +0 0 NO COUNTERMEASURES +1 1 EVACUATION +2 2 SHELTERING +3 3 PROPHYLAXIS +4 4 WATER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/23005.table b/definitions/bufr/tables/0/wmo/35/codetables/23005.table new file mode 100644 index 000000000..c5ff5ae75 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/23005.table @@ -0,0 +1,4 @@ +0 0 INCIDENT STATE DOES NOT UNDERSTAND WHAT HAPPENED +1 1 INCIDENT STATE KNOWS THE CAUSE OF THE INCIDENT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/23006.table b/definitions/bufr/tables/0/wmo/35/codetables/23006.table new file mode 100644 index 000000000..fe7706af4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/23006.table @@ -0,0 +1,8 @@ +0 0 NO IMPROVEMENT +1 1 UNSTABLE +2 2 NO DETERIORATION +3 3 IMPROVING +4 4 STABLE +5 5 DETERIORATING +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/23007.table b/definitions/bufr/tables/0/wmo/35/codetables/23007.table new file mode 100644 index 000000000..59fc043a8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/23007.table @@ -0,0 +1,5 @@ +0 0 NO RELEASE +1 1 RELEASE HAS STOPPED +2 2 RELEASE +3 3 RELEASE IS CONTINUING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/23008.table b/definitions/bufr/tables/0/wmo/35/codetables/23008.table new file mode 100644 index 000000000..4ac5c5837 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/23008.table @@ -0,0 +1,4 @@ +0 0 GASEOUS +1 1 PARTICULATE +2 2 MIXTURE OF GASEOUS AND PARTICULATE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/23009.table b/definitions/bufr/tables/0/wmo/35/codetables/23009.table new file mode 100644 index 000000000..4ac5c5837 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/23009.table @@ -0,0 +1,4 @@ +0 0 GASEOUS +1 1 PARTICULATE +2 2 MIXTURE OF GASEOUS AND PARTICULATE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/23016.table b/definitions/bufr/tables/0/wmo/35/codetables/23016.table new file mode 100644 index 000000000..ae84bae45 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/23016.table @@ -0,0 +1,4 @@ +0 0 NO SIGNIFICANT CHEMICAL TOXIC HEALTH EFFECT +1 1 SIGNIFICANT CHEMICAL TOXIC HEALTH EFFECT POSSIBLE +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/23018.table b/definitions/bufr/tables/0/wmo/35/codetables/23018.table new file mode 100644 index 000000000..ccdcc456d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/23018.table @@ -0,0 +1,6 @@ +0 0 RELEASE NO LONGER OCCURRING +1 1 RELEASE STILL OCCURRING +2 2 RELEASE EXPECTED TO INCREASE IN NEXT SIX HOURS +3 3 RELEASE EXPECTED TO REMAIN CONSTANT IN NEXT SIX HOURS +4 4 RELEASE EXPECTED TO DECREASE IN NEXT SIX HOURS +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/23031.table b/definitions/bufr/tables/0/wmo/35/codetables/23031.table new file mode 100644 index 000000000..cf20e26ee --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/23031.table @@ -0,0 +1,4 @@ +0 0 PLUME WILL NOT ENCOUNTER RAIN IN INCIDENT STATE +1 1 PLUME WILL ENCOUNTER RAIN IN INCIDENT STATE +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/23032.table b/definitions/bufr/tables/0/wmo/35/codetables/23032.table new file mode 100644 index 000000000..0f439b70d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/23032.table @@ -0,0 +1,4 @@ +0 0 NO SIGNIFICANT CHANGE EXPECTED WITHIN THE NEXT SIX HOURS +1 1 ANTICIPATED SIGNIFICANT CHANGE EXPECTED WITHIN THE NEXT SIX HOURS +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/24003.table b/definitions/bufr/tables/0/wmo/35/codetables/24003.table new file mode 100644 index 000000000..2daa8104b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/24003.table @@ -0,0 +1,5 @@ +0 0 NOBLE GASES +1 1 IODINES +2 2 CAESIUMS +3 3 TRANSURANICS +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25004.table b/definitions/bufr/tables/0/wmo/35/codetables/25004.table new file mode 100644 index 000000000..dfe451727 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25004.table @@ -0,0 +1,4 @@ +0 0 INCOHERENT +1 1 COHERENT (DOPPLER) +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25005.table b/definitions/bufr/tables/0/wmo/35/codetables/25005.table new file mode 100644 index 000000000..bc693a7bf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25005.table @@ -0,0 +1,4 @@ +0 0 LOGARITHM - 2.5 DB +1 1 LINEAR +2 2 SPECIAL +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25006.table b/definitions/bufr/tables/0/wmo/35/codetables/25006.table new file mode 100644 index 000000000..bf9d1f52a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25006.table @@ -0,0 +1,5 @@ +0 0 ZH TO R CONVERSION +1 1 (ZH, ZDR) TO (NO, DO) TO R +2 2 (Z (F1), Z (F2)) TO ATTENUATION TO R +6 6 OTHER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25009.table b/definitions/bufr/tables/0/wmo/35/codetables/25009.table new file mode 100644 index 000000000..bf34fb227 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25009.table @@ -0,0 +1,4 @@ +1 1 NONE +2 2 CALIBRATION TARGET OR SIGNAL +3 3 AGAINST RAINGAUGES +4 4 AGAINST OTHER INSTRUMENTS (DISDROMETER - ATTENUATION) diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25010.table b/definitions/bufr/tables/0/wmo/35/codetables/25010.table new file mode 100644 index 000000000..e88b3ca3c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25010.table @@ -0,0 +1,8 @@ +0 0 NONE +1 1 MAP +2 2 INSERTION OF HIGHER ELEVATION DATA AND MAP +3 3 ANALYSIS OF THE FLUCTUATING LOGARITHM SIGNAL (CLUTTER DETECTION) +4 4 EXTRACTION OF THE FLUCTUATING PART OF LINEAR SIGNAL (CLUTTER SUPPRESSION) +5 5 CLUTTER SUPPRESSION - DOPPLER +6 6 MULTIPARAMETER ANALYSIS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25011.table b/definitions/bufr/tables/0/wmo/35/codetables/25011.table new file mode 100644 index 000000000..f73949830 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25011.table @@ -0,0 +1,4 @@ +0 0 NONE +1 1 MAP OF CORRECTION FACTORS +2 2 INTERPOLATION (AZIMUTH OR ELEVATION) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25012.table b/definitions/bufr/tables/0/wmo/35/codetables/25012.table new file mode 100644 index 000000000..c869a4ace --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25012.table @@ -0,0 +1,4 @@ +0 0 HARDWARE +1 1 SOFTWARE +2 2 HARDWARE AND SOFTWARE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25013.table b/definitions/bufr/tables/0/wmo/35/codetables/25013.table new file mode 100644 index 000000000..b91ea71db --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25013.table @@ -0,0 +1 @@ +1 1 BRIGHT-BAND CORRECTION diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25015.table b/definitions/bufr/tables/0/wmo/35/codetables/25015.table new file mode 100644 index 000000000..043e587b6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25015.table @@ -0,0 +1 @@ +1 1 RADOME ATTENUATION CORRECTION diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25017.table b/definitions/bufr/tables/0/wmo/35/codetables/25017.table new file mode 100644 index 000000000..ed48487e1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25017.table @@ -0,0 +1 @@ +1 1 PRECIPITATION ATTENUATION CORRECTION diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25020.table b/definitions/bufr/tables/0/wmo/35/codetables/25020.table new file mode 100644 index 000000000..6133da3bf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25020.table @@ -0,0 +1,4 @@ +0 0 FFT (FAST FOURIER TRANSFORM) +1 1 PPP (PULSE-PAIR PROCESSING) +2 2 VPC (VECTOR-PHASE CHANGE) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25021.table b/definitions/bufr/tables/0/wmo/35/codetables/25021.table new file mode 100644 index 000000000..314716b3b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25021.table @@ -0,0 +1,5 @@ +1 1 SIMPLE AVERAGE +2 2 CONSENSUS AVERAGE +3 3 MEDIAN CHECK +4 4 VERTICAL CONSISTENCY CHECK +5 5 OTHER diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25022.table b/definitions/bufr/tables/0/wmo/35/codetables/25022.table new file mode 100644 index 000000000..95848784f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25022.table @@ -0,0 +1,8 @@ +1 1 UNPROCESSED +2 2 LAND SUSPECTED +3 3 WIND SPEED TOO LARGE +4 4 ICE DETECTED +5 5 RAIN DETECTED (MICROWAVE RETRIEVALS ONLY) +6 6 CLOUDY DETECTED (INFRA-RED RETRIEVALS ONLY) +7 7 COSMETIC VALUE +8 8 SST OUT OF RANGE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25023.table b/definitions/bufr/tables/0/wmo/35/codetables/25023.table new file mode 100644 index 000000000..e4840dc8c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25023.table @@ -0,0 +1,8 @@ +1 1 DEFAULT CONFIDENCE VALUE HAS BEEN USED +2 2 DEFAULT BIAS AND STANDARD DEVIATION HAVE BEEN USED +3 3 SUN GLINT SUSPECTED +4 4 SEA ICE RETRIEVAL FOR MICROWAVE DATA +5 5 HIGH WIND SPEED RETRIEVAL +6 6 INACCURATE SST DUE TO LOW SST (< 285K) (ONLY APPLIES TO THE TMI INSTRUMENT) +7 7 RELAXED RAIN CONTAMINATION SUSPECTED +8 8 POTENTIAL SIDE LOBE CONTAMINATION diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25024.table b/definitions/bufr/tables/0/wmo/35/codetables/25024.table new file mode 100644 index 000000000..81b26380c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25024.table @@ -0,0 +1,13 @@ +0 0 UNPROCESSED INFRARED RETRIEVAL +1 1 CLOUDY RETRIEVALS +2 2 BAD: DATA THAT ARE PROBABLY CONTAMINATED BY CLOUD +3 3 SUSPECT DATA +4 4 ACCEPTABLE DATA +5 5 EXCELLENT DATA +6 6 COOL SKIN SUSPECTED +10 10 UNPROCESSED MICROWAVE RETRIEVAL +11 11 QUESTIONABLE MICROWAVE RETRIEVAL THAT MAY BE CONTAMINATED +12 12 ACCEPTABLE MICROWAVE RETRIEVAL +13 13 HIGH PROBABILITY OF DIURNAL VARIABILITY +14 14 RESERVED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25029.table b/definitions/bufr/tables/0/wmo/35/codetables/25029.table new file mode 100644 index 000000000..fb00d01ca --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25029.table @@ -0,0 +1,5 @@ +1 1 RESERVED +2 2 CALIBRATION TARGET OR SIGNAL +3 3 AGAINST RAINGAUGES +4 4 AGAINST OTHER INSTRUMENTS (DISDROMETER - ATTENUATION) +5 5 RESERVED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25030.table b/definitions/bufr/tables/0/wmo/35/codetables/25030.table new file mode 100644 index 000000000..c3235d6e5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25030.table @@ -0,0 +1,4 @@ +0 0 RUNNING MEAN SEA-SURFACE TEMPERATURE NOT USED BECAUSE USAGE CRITERIA NOT MET +1 1 RUNNING MEAN SEA-SURFACE TEMPERATURE NOT USED BECAUSE DATA NOT AVAILABLE +2 2 RUNNING MEAN SEA-SURFACE TEMPERATURE USED AS PREDICTOR +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25031.table b/definitions/bufr/tables/0/wmo/35/codetables/25031.table new file mode 100644 index 000000000..16ff950a1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25031.table @@ -0,0 +1,6 @@ +0 0 RESERVED +1 1 NO THINNING APPLIED (ALL NATIVE MODEL LEVELS ARE INCLUDED FROM BASE TO TOP OF PSEUDO-SOUNDING) +2 2 NATIVE MODEL LEVELS ARE PRESENT ONLY IF THEY ARE SIGNIFICANT LEVELS AS PER REGULATIONS B/C 25 FOR CONVENTIONAL TEMP SOUNDINGS +3 3 A PREDEFINED SUBSET OF NATIVE MODEL LEVELS IS PRESENT +4 4 NO NATIVE MODEL LEVELS ARE PRESENT. ALL PROFILE LEVELS ARE INTERPOLATED TO A PREDEFINED SET OF PRESSURE COORDINATE LEVELS +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25032.table b/definitions/bufr/tables/0/wmo/35/codetables/25032.table new file mode 100644 index 000000000..9b894f470 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25032.table @@ -0,0 +1,4 @@ +0 0 RESERVED +1 1 DATA FROM LOW MODE +2 2 DATA FROM HIGH MODE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25033.table b/definitions/bufr/tables/0/wmo/35/codetables/25033.table new file mode 100644 index 000000000..e7141c078 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25033.table @@ -0,0 +1,4 @@ +0 0 WIND PROFILER OPERATING IN SUBMODE A +1 1 WIND PROFILER OPERATING IN SUBMODE B +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25034.table b/definitions/bufr/tables/0/wmo/35/codetables/25034.table new file mode 100644 index 000000000..473338a40 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25034.table @@ -0,0 +1,3 @@ +1 1 TEST A PERFORMED AND FAILED +2 2 TEST B PERFORMED AND FAILED +3 3 TEST RESULTS INCONCLUSIVE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25035.table b/definitions/bufr/tables/0/wmo/35/codetables/25035.table new file mode 100644 index 000000000..a0c8faa59 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25035.table @@ -0,0 +1,8 @@ +0 0 NOT DEFINED +1 1 INDIVIDUAL VOLTAGE DEFLECTION +2 2 CURRENT BASED, ABOVE A THRESHOLD +3 3 VOLTAGE BASED, ABOVE A THRESHOLD +4 4 CONSENSUS OF SENSORS, CURRENT ABOVE A THRESHOLD +5 5 CONSENSUS OF SENSORS, VOLTAGE ABOVE A THRESHOLD +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25036.table b/definitions/bufr/tables/0/wmo/35/codetables/25036.table new file mode 100644 index 000000000..79ebd8887 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25036.table @@ -0,0 +1,4 @@ +0 0 NETWORK OF SEVERAL DIRECTION-FINDERS OPERATING ON THE SAME INDIVIDUAL ATMOSPHERICS +1 1 NETWORK OF SEVERAL ARRIVAL-TIME STATIONS OPERATING ON THE SAME INDIVIDUAL ATMOSPHERICS +6 6 SINGLE STATION RANGE BEARING TECHNIQUE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25040.table b/definitions/bufr/tables/0/wmo/35/codetables/25040.table new file mode 100644 index 000000000..3ddf12e20 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25040.table @@ -0,0 +1,10 @@ +0 0 NON-SPECIFIC MODE +1 1 FIRST GUESS DATA +2 2 CLOUD DATA +3 3 AVERAGE VECTOR DATA +4 4 PRIMARY DATA +5 5 GUESS DATA +6 6 VECTOR DATA +7 7 TRACER DATA; THIS IMAGE +8 8 TRACER DATA TO NEXT IMAGE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25041.table b/definitions/bufr/tables/0/wmo/35/codetables/25041.table new file mode 100644 index 000000000..f388da0c2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25041.table @@ -0,0 +1,4 @@ +0 0 DIRECTION ORIGINALLY REPORTED IN TRUE DEGREES +1 1 DIRECTION ORIGINALLY REPORTED USING CODE TABLE 0700, FM 13 +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25042.table b/definitions/bufr/tables/0/wmo/35/codetables/25042.table new file mode 100644 index 000000000..f3cf05999 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25042.table @@ -0,0 +1,4 @@ +0 0 SPEED ORIGINALLY REPORTED IN METRES PER SECOND +1 1 SPEED ORIGINALLY REPORTED USING CODE TABLE 4451, FM 13 +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25053.table b/definitions/bufr/tables/0/wmo/35/codetables/25053.table new file mode 100644 index 000000000..af3413851 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25053.table @@ -0,0 +1,6 @@ +1 1 GOOD +2 2 REDUNDANT +3 3 QUESTIONABLE +4 4 BAD +5 5 EXPERIMENTAL +6 6 PRECIPITATING diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25063.table b/definitions/bufr/tables/0/wmo/35/codetables/25063.table new file mode 100644 index 000000000..a8970eaf4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25063.table @@ -0,0 +1,4 @@ +0 0 NOT DEFINED +1 1 MAIN PROCESSOR +2 2 BACKUP PROCESSOR +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25069.table b/definitions/bufr/tables/0/wmo/35/codetables/25069.table new file mode 100644 index 000000000..e627613dd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25069.table @@ -0,0 +1,7 @@ +1 1 SMOOTHED +2 2 BASELINE ADJUSTED +3 3 NORMALIZED TIME INTERVAL +4 4 OUTLIER CHECKED +5 5 PLAUSIBILITY CHECKED +6 6 CONSISTENCY CHECKED +7 7 INTERPOLATED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25086.table b/definitions/bufr/tables/0/wmo/35/codetables/25086.table new file mode 100644 index 000000000..294fa6977 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25086.table @@ -0,0 +1,4 @@ +0 0 DEPTHS ARE NOT CORRECTED +1 1 DEPTHS ARE CORRECTED +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25090.table b/definitions/bufr/tables/0/wmo/35/codetables/25090.table new file mode 100644 index 000000000..309fefcc0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25090.table @@ -0,0 +1,11 @@ +0 0 ORBIT COMPUTED DURING A MANOEUVRE +1 1 ADJUSTED MISSION OPERATIONS ORBIT +2 2 EXTRAPOLATED MISSION OPERATIONS ORBIT +3 3 ADJUSTED (PRELIMINARY/PRECISE) ORBIT +4 4 (PRELIMINARY/PRECISE) ORBIT IS ESTIMATED DURING A MANOEUVRE PERIOD +5 5 (PRELIMINARY/PRECISE) ORBIT IS INTERPOLATED OVER A TRACKING DATA GAP +6 6 (PRELIMINARY/PRECISE) ORBIT IS EXTRAPOLATED FOR A DURATION LESS THAN 1 DAY +7 7 (PRELIMINARY/PRECISE) ORBIT IS EXTRAPOLATED FOR A DURATION THAT RANGES FROM 1 DAY TO 2 DAYS +8 8 (PRELIMINARY/PRECISE) ORBIT IS EXTRAPOLATED FOR A DURATION LARGER THAN 2 DAYS, OR THAT THE ORBIT IS EXTRAPOLATED JUST AFTER A MANOEUVRE +9 9 DORIS* DIODE** NAVIGATOR ORBIT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25093.table b/definitions/bufr/tables/0/wmo/35/codetables/25093.table new file mode 100644 index 000000000..e547e6c81 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25093.table @@ -0,0 +1,3 @@ +1 1 NO CORRECTION +2 2 VERTICAL VELOCITY CORRECTION +7 7 ALL CORRECTIONS diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25095.table b/definitions/bufr/tables/0/wmo/35/codetables/25095.table new file mode 100644 index 000000000..c446a5045 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25095.table @@ -0,0 +1 @@ +1 1 ALTIMETER OPERATING (0 IF NOMINAL, 1 IF BACKUP) diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25096.table b/definitions/bufr/tables/0/wmo/35/codetables/25096.table new file mode 100644 index 000000000..89dcc3914 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25096.table @@ -0,0 +1,4 @@ +1 1 MODE INDICATOR (0 IF MODE 2, 1 IF MODE 1) +2 2 MODE 1 CALIBRATION SEQUENCE INDICATOR (0 IF NORMAL DATA TAKING EITHER MODE 1 OR 2, 1 IF MODE 1 CALIBRATION SEQUENCE) BITS 3 AND 4 INDICATE ACTIVE 23.8 GHZ CHANNEL(S): +3 3 CHANNEL 2 (0 IF ON, 1 IF OFF) +4 4 CHANNEL 3 (0 IF ON, 1 IF OFF) diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25097.table b/definitions/bufr/tables/0/wmo/35/codetables/25097.table new file mode 100644 index 000000000..d4e1e4646 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25097.table @@ -0,0 +1,11 @@ +0 0 RANGES BETWEEN 0 AND 30 CM +1 1 RANGES BETWEEN 30 AND 60 CM +2 2 RANGES BETWEEN 60 AND 90 CM +3 3 RANGES BETWEEN 90 AND 120 CM +4 4 RANGES BETWEEN 120 AND 150 CM +5 5 RANGES BETWEEN 150 AND 180 CM +6 6 RANGES BETWEEN 180 AND 210 CM +7 7 RANGES BETWEEN 210 AND 240 CM +8 8 RANGES BETWEEN 240 AND 270 CM +9 9 RANGES LARGER THAN 270 CM +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25098.table b/definitions/bufr/tables/0/wmo/35/codetables/25098.table new file mode 100644 index 000000000..9d505a5f4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25098.table @@ -0,0 +1,8 @@ +1 1 KU BAND RANGE +2 2 C BAND RANGE +3 3 KU BAND SWH* +4 4 C BAND SWH* +5 5 KU BAND BACKSCATTER COEFFICIENT +6 6 C BAND BACKSCATTER COEFFICIENT +7 7 OFF NADIR ANGLE FROM KU BAND WAVEFORM PARAMETERS +8 8 OFF NADIR ANGLE FROM PLATFORM diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25099.table b/definitions/bufr/tables/0/wmo/35/codetables/25099.table new file mode 100644 index 000000000..40f35b18c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25099.table @@ -0,0 +1,6 @@ +1 1 KU BAND RANGE INSTRUMENTAL CORRECTION +2 2 C BAND RANGE INSTRUMENTAL CORRECTION +3 3 KU BAND SWH* INSTRUMENTAL CORRECTION +4 4 C BAND SWH* INSTRUMENTAL CORRECTION +5 5 KU BAND BACKSCATTER COEFFICIENT INSTRUMENTAL CORRECTION +6 6 C BAND BACKSCATTER COEFFICIENT INSTRUMENTAL CORRECTION diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25110.table b/definitions/bufr/tables/0/wmo/35/codetables/25110.table new file mode 100644 index 000000000..912e01f54 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25110.table @@ -0,0 +1,6 @@ +1 1 RAW DATA ANALYSIS USED FOR RAW DATA CORRECTION. CORRECTION DONE USING DEFAULT PARAMETERS +2 2 RAW DATA ANALYSIS USED FOR RAW DATA CORRECTION. CORRECTION DONE USING RAW DATA ANALYSIS RESULTS +3 3 ANTENNA ELEVATION PATTERN CORRECTION APPLIED +4 4 NOMINAL CHIRP REPLICA USED +5 5 RECONSTRUCTED CHIRP USED +6 6 SLANT RANGE TO GROUND RANGE CONVERSION APPLIED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25112.table b/definitions/bufr/tables/0/wmo/35/codetables/25112.table new file mode 100644 index 000000000..a2a4ec9d3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25112.table @@ -0,0 +1,5 @@ +1 1 BAND SPECIFIC RANGE +2 2 BAND SPECIFIC SIGNIFICANT WAVE HEIGHT +3 3 BAND SPECIFIC BACKSCATTER COEFFICIENT +4 4 OFF NADIR ANGLE FROM BAND SPECIFIC WAVEFORM PARAMETERS +5 5 OFF NADIR ANGLE FROM PLATFORM diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25113.table b/definitions/bufr/tables/0/wmo/35/codetables/25113.table new file mode 100644 index 000000000..ef394b626 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25113.table @@ -0,0 +1,3 @@ +1 1 BAND SPECIFIC RANGE INSTRUMENTAL CORRECTION +2 2 BAND SPECIFIC SIGNIFICANT WAVE HEIGHT INSTRUMENTAL CORRECTION +3 3 BAND SPECIFIC BACKSCATTER COEFFICIENT INSTRUMENTAL CORRECTION diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25120.table b/definitions/bufr/tables/0/wmo/35/codetables/25120.table new file mode 100644 index 000000000..bdb9f96b3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25120.table @@ -0,0 +1,4 @@ +0 0 PERCENTAGE OF DSRS* FREE OF PROCESSING ERRORS DURING LEVEL 2 PROCESSING IS GREATER THAN THE ACCEPTABLE THRESHOLD +1 1 PERCENTAGE OF DSRS FREE OF PROCESSING ERRORS DURING LEVEL 2 PROCESSING IS LESS THAN THE ACCEPTABLE THRESHOLD +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25122.table b/definitions/bufr/tables/0/wmo/35/codetables/25122.table new file mode 100644 index 000000000..1085ef980 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25122.table @@ -0,0 +1,4 @@ +0 0 HARDWARE CONFIGURATION FOR RF IS A +1 1 HARDWARE CONFIGURATION FOR RF IS B +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25123.table b/definitions/bufr/tables/0/wmo/35/codetables/25123.table new file mode 100644 index 000000000..70f0670e9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25123.table @@ -0,0 +1,4 @@ +0 0 HARDWARE CONFIGURATION FOR HPA IS A +1 1 HARDWARE CONFIGURATION FOR HPA IS B +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25124.table b/definitions/bufr/tables/0/wmo/35/codetables/25124.table new file mode 100644 index 000000000..dce5b0492 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25124.table @@ -0,0 +1,4 @@ +0 0 PERCENTAGE OF DSRS** FREE OF PROCESSING ERRORS DURING LEVEL 2 PROCESSING IS GREATER THAN THE ACCEPTABLE THRESHOLD +1 1 PERCENTAGE OF DSRS** FREE OF PROCESSING ERRORS DURING LEVEL 2 PROCESSING IS LESS THAN THE ACCEPTABLE THRESHOLD +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25150.table b/definitions/bufr/tables/0/wmo/35/codetables/25150.table new file mode 100644 index 000000000..7b452c327 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25150.table @@ -0,0 +1,3 @@ +1 1 THE DVORAK'S VIS (VISUAL IMAGERY) INTENSITY ANALYSIS +2 2 THE DVORAK'S EIR (ENHANCED INFRARED IMAGERY) INTENSITY ANALYSIS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25174.table b/definitions/bufr/tables/0/wmo/35/codetables/25174.table new file mode 100644 index 000000000..c8a11b6d7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25174.table @@ -0,0 +1,13 @@ +1 1 PIXEL IS AFFECTED BY RFI EFFECTS +2 2 PIXEL IS LOCATED IN THE HEXAGONAL ALIAS DIRECTION CENTRED ON SUN ALIAS +3 3 PIXEL IS CLOSE TO THE BORDER DELIMITING THE EXTENDED ALIAS FREE ZONE +4 4 PIXEL IS INSIDE THE EXTENDED ALIAS FREE ZONE +5 5 PIXEL IS INSIDE THE EXCLUSIVE OF ALIAS FREE ZONE +6 6 PIXEL IS LOCATED IN A ZONE WHERE A MOON ALIAS WAS RECONSTRUCTED +7 7 PIXEL IS LOCATED IN A ZONE WHERE SUN REFLECTION HAS BEEN DETECTED +8 8 PIXEL IS LOCATED IN A ZONE WHERE SUN ALIAS WAS RECONSTRUCTED +9 9 FLAT TARGET TRANSFORMATION HAS BEEN PERFORMED DURING IMAGE RECONSTRUCTION OF THIS PIXEL +10 10 SCENE HAS BEEN COMBINED WITH AN ADJUSTMENT SCENE IN OPPOSITE POLARIZATION DURING IMAGE RECONSTRUCTION TO ACCOUNT FOR CROSS-POLARIZATION LEAKAGE +11 11 DIRECT MOON CORRECTION HAS BEEN PERFORMED DURING IMAGE RECONSTRUCTION OF THIS PIXEL +12 12 REFLECTED SUN CORRECTION HAS BEEN PERFORMED DURING IMAGE RECONSTRUCTION OF THIS PIXEL +13 13 DIRECT SUN CORRECTION HAS BEEN PERFORMED DURING IMAGE RECONSTRUCTION OF THIS IMAGE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25181.table b/definitions/bufr/tables/0/wmo/35/codetables/25181.table new file mode 100644 index 000000000..2c1eabf7c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25181.table @@ -0,0 +1,3 @@ +0 0 OK +1 1 PERCENTAGE OF L2B RECORDS FREE OF PROCESSING ERRORS IS LESS THAN ACCEPTABLE THRESHOLD +2 2 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25182.table b/definitions/bufr/tables/0/wmo/35/codetables/25182.table new file mode 100644 index 000000000..9827b1dfd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25182.table @@ -0,0 +1,3 @@ +0 0 OK +1 1 PERCENTAGE OF L1B RECORDS FREE OF PROCESSING ERRORS IS LESS THAN ACCEPTABLE THRESHOLD +2 2 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25184.table b/definitions/bufr/tables/0/wmo/35/codetables/25184.table new file mode 100644 index 000000000..29005c133 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25184.table @@ -0,0 +1,3 @@ +0 0 OK +1 1 PRODUCT AS A DURATION SHORTER THAN THE INPUT PRODUCT +2 2 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25185.table b/definitions/bufr/tables/0/wmo/35/codetables/25185.table new file mode 100644 index 000000000..ac18abae4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25185.table @@ -0,0 +1,2 @@ +0 0 AES 256 +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25187.table b/definitions/bufr/tables/0/wmo/35/codetables/25187.table new file mode 100644 index 000000000..683c09709 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25187.table @@ -0,0 +1,3 @@ +0 0 VALID +1 1 INVALID +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25188.table b/definitions/bufr/tables/0/wmo/35/codetables/25188.table new file mode 100644 index 000000000..b18013f21 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25188.table @@ -0,0 +1,6 @@ +0 0 PRESSURE ADJUSTED TO MEAN SEA LEVEL FOLLOWING WMO-NO. 8 FOR LOW LEVEL (< 50 M) STATIONS +1 1 PRESSURE ADJUSTED TO MEAN SEA LEVEL FOLLOWING WMO-NO. 8 FOR STATIONS BELOW 750 M +2 2 PRESSURE ADJUSTED TO SEA LEVEL FOLLOWING NATIONAL PRACTICE +3 3 PRESSURE ADJUSTED TO LOCAL WATER LEVEL FOLLOWING NATIONAL PRACTICE +4 4 PRESSURE NOT CORRECTED FOR HEIGHT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25190.table b/definitions/bufr/tables/0/wmo/35/codetables/25190.table new file mode 100644 index 000000000..184eab4ab --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25190.table @@ -0,0 +1,7 @@ +0 0 LOW RESOLUTION MODE (LRM) +1 1 SYNTHETIC APERTURE RADAR (SAR) +2 2 LRM AND SAR (INTERLEAVED) +3 3 RESERVED +4 4 PSEUDO-LRM (PLRM) +5 5 SAR INTERFEROMETRIC MODE (SARIN) +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/25191.table b/definitions/bufr/tables/0/wmo/35/codetables/25191.table new file mode 100644 index 000000000..ea22b6872 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/25191.table @@ -0,0 +1,4 @@ +0 0 OPEN LOOP +1 1 CLOSED LOOP +2 2 OPEN LOOP FIXED GAIN +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/26010.table b/definitions/bufr/tables/0/wmo/35/codetables/26010.table new file mode 100644 index 000000000..f825040f4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/26010.table @@ -0,0 +1,25 @@ +1 1 0100 INCLUDED +2 2 0200 INCLUDED +3 3 0300 INCLUDED +4 4 0400 INCLUDED +5 5 0500 INCLUDED +6 6 0600 INCLUDED +7 7 0700 INCLUDED +8 8 0800 INCLUDED +9 9 0900 INCLUDED +10 10 1000 INCLUDED +11 11 1100 INCLUDED +12 12 1200 INCLUDED +13 13 1300 INCLUDED +14 14 1400 INCLUDED +15 15 1500 INCLUDED +16 16 1600 INCLUDED +17 17 1700 INCLUDED +18 18 1800 INCLUDED +19 19 1900 INCLUDED +20 20 2000 INCLUDED +21 21 2100 INCLUDED +22 22 2200 INCLUDED +23 23 2300 INCLUDED +24 24 2400 INCLUDED +25 25 UNKNOWN MIXTURE OF HOURS diff --git a/definitions/bufr/tables/0/wmo/35/codetables/29001.table b/definitions/bufr/tables/0/wmo/35/codetables/29001.table new file mode 100644 index 000000000..148124391 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/29001.table @@ -0,0 +1,8 @@ +0 0 GNOMONIC PROJECTION +1 1 POLAR STEREOGRAPHIC PROJECTION +2 2 LAMBERT'S CONFORMAL CONIC PROJECTION +3 3 MERCATOR'S PROJECTION +4 4 SCANNING CONE (RADAR)* +5 5 RESERVED +6 6 NO PROJECTION +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/29002.table b/definitions/bufr/tables/0/wmo/35/codetables/29002.table new file mode 100644 index 000000000..1d7efd0c8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/29002.table @@ -0,0 +1,4 @@ +0 0 CARTESIAN +1 1 POLAR +2 2 OTHER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/3001.table b/definitions/bufr/tables/0/wmo/35/codetables/3001.table new file mode 100644 index 000000000..cfa2c1acf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/3001.table @@ -0,0 +1,11 @@ +0 0 LAND STATION (SYNOPTIC NETWORK) +1 1 SHALLOW WATER STATION (FIXED TO SEA/LAKE FLOOR) +2 2 SHIP +3 3 RIG/PLATFORM +4 4 MOORED BUOY +5 5 DRIFTING BUOY (OR DRIFTER) +6 6 ICE BUOY +7 7 LAND STATION (LOCAL NETWORK) +8 8 LAND VEHICLE +9 9 AUTONOMOUS MARINE VEHICLE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/3003.table b/definitions/bufr/tables/0/wmo/35/codetables/3003.table new file mode 100644 index 000000000..cf530237f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/3003.table @@ -0,0 +1,8 @@ +0 0 SCREEN +1 1 SLING/WHIRLING +2 2 UNSCREENED +3 3 RADIATION SHIELD +4 4 ASPIRATED (E.G. ASSMANN) +5 5 OTHER SHELTER +6 6 HANDHELD +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/30031.table b/definitions/bufr/tables/0/wmo/35/codetables/30031.table new file mode 100644 index 000000000..80cce26f1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/30031.table @@ -0,0 +1,13 @@ +0 0 PPI +1 1 COMPOSITE +2 2 CAPPL +3 3 VERTICAL SECTION +4 4 ALPHANUMERIC DATA +5 5 MAP OF SUBJECT CLUTTER +6 6 MAP +7 7 TEST PICTURE +8 8 COMMENTS +9 9 MAP OF GROUND OCCULTATION +10 10 MAP OF RADAR BEAM HEIGHT +14 14 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/30032.table b/definitions/bufr/tables/0/wmo/35/codetables/30032.table new file mode 100644 index 000000000..942cb5d7f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/30032.table @@ -0,0 +1,9 @@ +1 1 MAP +2 2 SATELLITE IR +3 3 SATELLITE VIS +4 4 SATELLITE WV +5 5 SATELLITE MULTISPECTRAL +6 6 SYNOPTIC OBSERVATIONS +7 7 FORECAST PARAMETERS +8 8 LIGHTNING DATA +15 15 OTHER DATA diff --git a/definitions/bufr/tables/0/wmo/35/codetables/3004.table b/definitions/bufr/tables/0/wmo/35/codetables/3004.table new file mode 100644 index 000000000..571e234bf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/3004.table @@ -0,0 +1,11 @@ +0 0 STEVENSON SCREEN +1 1 MARINE STEVENSON SCREEN +2 2 CYLINDRICAL SECTION PLATE SHIELD +3 3 CONCENTRIC TUBE +4 4 RECTANGULAR SECTION SHIELD +5 5 SQUARE SECTION SHIELD +6 6 TRIANGULAR SECTION SHIELD +7 7 OPEN COVERED LEAN-TO +8 8 OPEN COVERED INVERTED V ROOF +9 9 INTEGRATED (E.G. CHILLED MIRROR) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/3008.table b/definitions/bufr/tables/0/wmo/35/codetables/3008.table new file mode 100644 index 000000000..e321d5562 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/3008.table @@ -0,0 +1,4 @@ +0 0 NATURAL VENTILATION IN USE +1 1 ARTIFICIAL ASPIRATION IN USE: CONSTANT FLOW AT TIME OF READING +2 2 ARTIFICIAL ASPIRATION IN USE: VARIABLE FLOW AT TIME OF READING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/3010.table b/definitions/bufr/tables/0/wmo/35/codetables/3010.table new file mode 100644 index 000000000..75746a1c3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/3010.table @@ -0,0 +1,12 @@ +0 0 RESERVED +1 1 ADCP +2 2 GEK (GEOMAGNETIC ELECTROKINETOGRAPH) +3 3 SHIP'S SET AND DRIFT DETERMINED BY FIXES 3-6 HOURS APART +4 4 SHIP'S SET AND DRIFT DETERMINED BY FIXES MORE THAN 6 HOURS BUT LESS THAN 12 HOURS APART +5 5 DRIFT OF BUOY +6 6 ADCP +7 7 ADCP BOTTOM TRACKING MODE +8 8 ELECTROMAGNETIC SENSOR +9 9 ROTOR AND VANE +10 10 LOWERED ADCP +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/3011.table b/definitions/bufr/tables/0/wmo/35/codetables/3011.table new file mode 100644 index 000000000..748826848 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/3011.table @@ -0,0 +1,4 @@ +0 0 DEPTH CALCULATED USING FALL RATE EQUATION +1 1 DEPTH CALCULATED FROM WATER PRESSURE/EQUATION OF STATE +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/3012.table b/definitions/bufr/tables/0/wmo/35/codetables/3012.table new file mode 100644 index 000000000..35bdeadd5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/3012.table @@ -0,0 +1,3 @@ +0 0 ANDERRAA OXYGEN OPTODE +1 1 WINKLER BOTTLE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/3016.table b/definitions/bufr/tables/0/wmo/35/codetables/3016.table new file mode 100644 index 000000000..792788f42 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/3016.table @@ -0,0 +1,9 @@ +0 0 FAST LANE BETWEEN THE WHEEL TRACKS +1 1 FAST LANE BETWEEN THE WHEEL TRACKS IN THE OPPOSITE DIRECTION +2 2 FAST LANE IN THE WHEEL TRACKS +3 3 FAST LANE IN THE WHEEL TRACKS IN THE OPPOSITE DIRECTION +4 4 SLOW LANE BETWEEN THE WHEEL TRACKS +5 5 SLOW LANE BETWEEN THE WHEEL TRACKS IN THE OPPOSITE DIRECTION +6 6 SLOW LANE IN THE WHEEL TRACKS +7 7 SLOW LANE IN THE WHEEL TRACKS IN THE OPPOSITE DIRECTION +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/3017.table b/definitions/bufr/tables/0/wmo/35/codetables/3017.table new file mode 100644 index 000000000..e94c0a449 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/3017.table @@ -0,0 +1,5 @@ +1 1 AUTOMATIC +2 2 MANNED +3 3 EVENT TRIGGERED +4 4 LONGER TIME PERIOD THAN THE STANDARD +5 5 RESERVED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/3018.table b/definitions/bufr/tables/0/wmo/35/codetables/3018.table new file mode 100644 index 000000000..b3769ae40 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/3018.table @@ -0,0 +1,22 @@ +0 0 FREE TRACK WITHOUT FURTHER INFORMATION +1 1 FREE TRACK, EMBANKMENT +2 2 FREE TRACK, FLAT RELATIVE TO SURROUNDINGS +3 3 FREE TRACK, WATER BASIN(S) IN VICINITY +4 4 FREE TRACK, FOREST +5 5 FREE TRACK, CLEFT +6 6 FREE TRACK, ON HILLTOP +7 7 FREE TRACK, ON HILLTOP, FOREST +8 8 FREE TRACK, IN VALLEY +9 9 FREE TRACK, IN VALLEY, FOREST +10 10 FREE TRACK, NORTH INCLINATION +11 11 FREE TRACK, NORTH INCLINATION, FOREST +12 12 FREE TRACK, SOUTH INCLINATION +13 13 FREE TRACK, SOUTH INCLINATION, FOREST +20 20 BRIDGE WITHOUT FURTHER INFORMATION +21 21 BRIDGE ACROSS A VALLEY IN AN URBAN AREA +22 22 BRIDGE ACROSS A VALLEY WITH FOREST/MEADOWS/FIELDS +23 23 BRIDGE ACROSS STREET/TRACK +24 24 BRIDGE ACROSS BIG RIVER/CANAL +25 25 BRIDGE ACROSS RIVER/CANAL OF MEDIUM SIZE +26 26 BRIDGE ACROSS A SMALL STREAM/LOADING CANAL +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/3019.table b/definitions/bufr/tables/0/wmo/35/codetables/3019.table new file mode 100644 index 000000000..2f55b0028 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/3019.table @@ -0,0 +1,8 @@ +0 0 ASPHALT +1 1 CONCRETE +2 2 CONCRETE CONSTRUCTION +3 3 STEEL-GIRDER CONSTRUCTION +4 4 BOX GIRDER BRIDGE +5 5 ORTHOTROPIC SLAB +6 6 DRAIN ASPHALT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/3020.table b/definitions/bufr/tables/0/wmo/35/codetables/3020.table new file mode 100644 index 000000000..9f0feaea7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/3020.table @@ -0,0 +1,5 @@ +0 0 WOOD +1 1 METAL ALLOY +2 2 PLASTIC/GRP +3 3 REED/GRASS/LEAF +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/3021.table b/definitions/bufr/tables/0/wmo/35/codetables/3021.table new file mode 100644 index 000000000..27e1bfad4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/3021.table @@ -0,0 +1,4 @@ +0 0 UNHEATED +1 1 HEATED +2 2 NOT APPLICABLE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/3022.table b/definitions/bufr/tables/0/wmo/35/codetables/3022.table new file mode 100644 index 000000000..daf67e27f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/3022.table @@ -0,0 +1,4 @@ +0 0 NATIONAL HYDROMETEOROLOGICAL/WEATHER SERVICE +1 1 OTHER +2 2 STANDARDS INSTITUTE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/3023.table b/definitions/bufr/tables/0/wmo/35/codetables/3023.table new file mode 100644 index 000000000..9e683c891 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/3023.table @@ -0,0 +1,8 @@ +0 0 SINGLE V-SECTION LOUVERS +1 1 OVERLAPPING LOUVERS +2 2 DOUBLE V-SECTION LOUVERS +3 3 NON-OVERLAPPING LOUVERS +4 4 VENTED, NON-LOUVERED +5 5 NOT APPLICABLE +6 6 RESERVED FOR FUTURE USE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/3027.table b/definitions/bufr/tables/0/wmo/35/codetables/3027.table new file mode 100644 index 000000000..8280e8602 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/3027.table @@ -0,0 +1,8 @@ +0 0 SOLO (SINGLE RADIOSONDE) +1 1 BLOCK +2 2 BAR +3 3 CROSS +4 4 T-RIG +5 5 DOUBLE T-RIG +6 6 COMPLEX +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/3028.table b/definitions/bufr/tables/0/wmo/35/codetables/3028.table new file mode 100644 index 000000000..9cc805953 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/3028.table @@ -0,0 +1,8 @@ +0 0 MULTI POINT MANUAL SNOW SURVEY +1 1 SINGLE POINT MANUAL SNOW WATER EQUIVALENT MEASUREMENT +2 2 SNOW PILLOW OR SNOW SCALE +3 3 PASSIVE GAMMA +4 4 GNSS/GPS METHODS +5 5 COSMIC RAY ATTENUATION +6 6 TIME DOMAIN REFLECTOMETRY +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/31021.table b/definitions/bufr/tables/0/wmo/35/codetables/31021.table new file mode 100644 index 000000000..fe82f5819 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/31021.table @@ -0,0 +1,9 @@ +0 0 RESERVED +1 1 1-BIT INDICATOR OF QUALITY +2 2 2-BIT INDICATOR OF QUALITY +6 6 4-BIT INDICATOR OF QUALITY CONTROL CLASS ACCORDING TO GTSPP +7 7 PERCENTAGE CONFIDENCE +8 8 0 = NOT SUSPECTED, 1 = SUSPECTED, 2 = RESERVED, 3 = INFORMATION NOT REQUIRED +9 9 0 = DATA PRESENT, GOOD, COLLOCATED, 1 = DATA AVAILABLE BUT OF DEGRADED QUALITY AND NOT USED, 2 = NO SPATIOTEMPORALLY COLLOCATED DATA AVAILABLE, 3-14 = NOT USED (RESERVED), 15 = MISSING VALUE +21 21 1-BIT INDICATOR OF CORRECTION +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/31031.table b/definitions/bufr/tables/0/wmo/35/codetables/31031.table new file mode 100644 index 000000000..1f2742950 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/31031.table @@ -0,0 +1 @@ +1 1 diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33002.table b/definitions/bufr/tables/0/wmo/35/codetables/33002.table new file mode 100644 index 000000000..4177c0577 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33002.table @@ -0,0 +1,4 @@ +0 0 DATA NOT SUSPECT +1 1 DATA SUSPECT +2 2 RESERVED +3 3 QUALITY INFORMATION NOT GIVEN diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33003.table b/definitions/bufr/tables/0/wmo/35/codetables/33003.table new file mode 100644 index 000000000..7577129b0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33003.table @@ -0,0 +1,5 @@ +0 0 DATA NOT SUSPECT +1 1 DATA SLIGHTLY SUSPECT +2 2 DATA HIGHLY SUSPECT +3 3 DATA CONSIDERED UNFIT FOR USE +7 7 QUALITY INFORMATION NOT GIVEN diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33005.table b/definitions/bufr/tables/0/wmo/35/codetables/33005.table new file mode 100644 index 000000000..8d7569ad2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33005.table @@ -0,0 +1,23 @@ +1 1 NO AUTOMATED METEOROLOGICAL DATA CHECKS PERFORMED +2 2 PRESSURE DATA SUSPECT +3 3 WIND DATA SUSPECT +4 4 AIR TEMPERATURE DATA SUSPECT +5 5 WET-BULB TEMPERATURE DATA SUSPECT +6 6 HUMIDITY DATA SUSPECT +7 7 GROUND TEMPERATURE DATA SUSPECT +8 8 SOIL TEMPERATURE (DEPTH 1) DATA SUSPECT +9 9 SOIL TEMPERATURE (DEPTH 2) DATA SUSPECT +10 10 SOIL TEMPERATURE (DEPTH 3) DATA SUSPECT +11 11 SOIL TEMPERATURE (DEPTH 4) DATA SUSPECT +12 12 SOIL TEMPERATURE (DEPTH 5) DATA SUSPECT +13 13 CLOUD DATA SUSPECT +14 14 VISIBILITY DATA SUSPECT +15 15 PRESENT WEATHER DATA SUSPECT +16 16 LIGHTNING DATA SUSPECT +17 17 ICE DEPOSIT DATA SUSPECT +18 18 PRECIPITATION DATA SUSPECT +19 19 STATE OF GROUND DATA SUSPECT +20 20 SNOW DATA SUSPECT +21 21 WATER CONTENT DATA SUSPECT +22 22 EVAPORATION/EVAPOTRANSPIRATION DATA SUSPECT +23 23 SUNSHINE DATA SUSPECT diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33006.table b/definitions/bufr/tables/0/wmo/35/codetables/33006.table new file mode 100644 index 000000000..0ea44a50b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33006.table @@ -0,0 +1,5 @@ +0 0 SELF-CHECK OK +1 1 AT LEAST ONE WARNING ACTIVE, NO ALARMS +2 2 AT LEAST ONE ALARM ACTIVE +3 3 SENSOR FAILURE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33015.table b/definitions/bufr/tables/0/wmo/35/codetables/33015.table new file mode 100644 index 000000000..f585808d0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33015.table @@ -0,0 +1,16 @@ +0 0 PASSED ALL CHECKS +1 1 MISSING DATA CHECK +2 2 DESCENDING/REASCENDING BALLOON CHECK +3 3 DATA PLAUSIBILITY CHECK (ABOVE LIMITS) +4 4 DATA PLAUSIBILITY CHECK (BELOW LIMITS) +5 5 SUPERADIABATIC LAPSE RATE CHECK +6 6 LIMITING ANGLES CHECK +7 7 ASCENSION RATE CHECK +8 8 EXCESSIVE CHANGE FROM PREVIOUS FLIGHT +9 9 BALLOON OVERHEAD CHECK +10 10 WIND SPEED CHECK +11 11 WIND DIRECTION CHECK +12 12 DEPENDENCY CHECK +13 13 DATA VALID BUT MODIFIED +14 14 DATA OUTLIER CHECK +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33020.table b/definitions/bufr/tables/0/wmo/35/codetables/33020.table new file mode 100644 index 000000000..ba7a4d4ea --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33020.table @@ -0,0 +1,8 @@ +0 0 GOOD +1 1 INCONSISTENT +2 2 DOUBTFUL +3 3 WRONG +4 4 NOT CHECKED +5 5 HAS BEEN CHANGED +6 6 ESTIMATED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33021.table b/definitions/bufr/tables/0/wmo/35/codetables/33021.table new file mode 100644 index 000000000..e3e67ae8c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33021.table @@ -0,0 +1,4 @@ +0 0 WITHIN LIMITS +1 1 OUTSIDE LIMITS +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33022.table b/definitions/bufr/tables/0/wmo/35/codetables/33022.table new file mode 100644 index 000000000..50ef65feb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33022.table @@ -0,0 +1,4 @@ +0 0 GOOD (SEVERAL IDENTICAL REPORTS HAVE BEEN RECEIVED) +1 1 DUBIOUS (NO IDENTICAL REPORTS HAVE BEEN RECEIVED) +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33023.table b/definitions/bufr/tables/0/wmo/35/codetables/33023.table new file mode 100644 index 000000000..896c816a9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33023.table @@ -0,0 +1,4 @@ +0 0 RELIABLE (LOCATION WAS MADE OVER TWO SATELLITE PASSES) +1 1 LATEST KNOWN (NO LOCATION OVER THE CORRESPONDING PASS) +2 2 DUBIOUS (LOCATION MADE OVER ONE PASS ONLY; A SECOND SOLUTION IS POSSIBLE IN 5 PER CENT OF THE CASES) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33024.table b/definitions/bufr/tables/0/wmo/35/codetables/33024.table new file mode 100644 index 000000000..771e04b81 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33024.table @@ -0,0 +1,10 @@ +0 0 RESERVED +1 1 EXCELLENT - WITHIN 3 METRES +2 2 GOOD - WITHIN 10 METRES +3 3 FAIR - WITHIN 20 METRES +4 4 POOR - MORE THAN 20 METRES +5 5 EXCELLENT - WITHIN 10 FEET +6 6 GOOD - WITHIN 30 FEET +7 7 FAIR - WITHIN 60 FEET +8 8 POOR - MORE THAN 60 FEET +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33025.table b/definitions/bufr/tables/0/wmo/35/codetables/33025.table new file mode 100644 index 000000000..4da695aa0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33025.table @@ -0,0 +1,5 @@ +0 0 TIME INTERPOLATED, LATITUDE AND LONGITUDE REPORTED +1 1 TIME REPORTED, LATITUDE AND LONGITUDE INTERPOLATED +2 2 TIME, LATITUDE, AND LONGITUDE INTERPOLATED +3 3 TIME, LATITUDE, AND LONGITUDE REPORTED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33026.table b/definitions/bufr/tables/0/wmo/35/codetables/33026.table new file mode 100644 index 000000000..08c61254b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33026.table @@ -0,0 +1,17 @@ +0 0 NORMAL OPERATIONS - MEASUREMENT MODE +1 1 NORMAL OPERATIONS - NON-MEASUREMENT MODE +2 2 SMALL RH +3 3 HUMIDITY ELEMENT IS WET +4 4 HUMIDITY ELEMENT CONTAMINATED +5 5 HEATER FAIL +6 6 HEATER FAIL AND WET/CONTAMINATED HUMIDITY ELEMENT +7 7 AT LEAST ONE OF THE INPUT PARAMETERS USED IN THE CALCULATION OF MIXING RATIO IS INVALID +8 8 NUMERIC ERROR +9 9 SENSOR NOT INSTALLED +10 10 CALCULATED RH > 100% +11 11 INPUT LASER POWER TOO LOW +12 12 PROBE WV TEMPERATURE OUT OF RANGE +13 13 PROBE WV PRESSURE OUT OF RANGE +14 14 SPECTRAL LINE OUT OF RANGE +15 15 NO LASER OUTPUT +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33027.table b/definitions/bufr/tables/0/wmo/35/codetables/33027.table new file mode 100644 index 000000000..c563af46f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33027.table @@ -0,0 +1,6 @@ +0 0 RADIUS >= 1500 M +1 1 500 M =< RADIUS <1500 M +2 2 250 M =< RADIUS < 500 M +3 3 RADIUS < 250 M +4 4 =< 100 M +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33028.table b/definitions/bufr/tables/0/wmo/35/codetables/33028.table new file mode 100644 index 000000000..84bd666f9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33028.table @@ -0,0 +1,5 @@ +1 1 NOMINAL +2 2 DEGRADED BY SW ERROR; ANY ERROR REPORTED BY THE ALGORITHMS +3 3 DEGRADED BY INSTRUMENT ERROR +4 4 DEGRADED BY CORRUPTED /MISSING ADF +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33030.table b/definitions/bufr/tables/0/wmo/35/codetables/33030.table new file mode 100644 index 000000000..c9e36c0f4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33030.table @@ -0,0 +1,7 @@ +1 1 DO NOT USE SCAN FOR PRODUCT GENERATION +2 2 TIME SEQUENCE ERROR DETECTED WITH THIS SCAN +3 3 DATA GAP PRECEDES THIS SCAN +4 4 NO CALIBRATION +5 5 NO EARTH LOCATION +6 6 FIRST GOOD TIME FOLLOWING A CLOCK UPDATE +7 7 INSTRUMENT STATUS CHANGED WITH THIS SCAN diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33031.table b/definitions/bufr/tables/0/wmo/35/codetables/33031.table new file mode 100644 index 000000000..c11fd4a09 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33031.table @@ -0,0 +1,21 @@ +1 1 TIME FIELD IS BAD BUT CAN PROBABLY BE INFERRED FROM THE PREVIOUS GOOD TIME +2 2 TIME FIELD IS BAD AND CANNOT BE INFERRED FROM THE PREVIOUS GOOD TIME +3 3 THIS RECORD STARTS A SEQUENCE THAT IS INCONSISTENT WITH PREVIOUS TIMES (I.E. THERE IS A TIME DISCONTINUITY). THIS MAY OR MAY NOT BE ASSOCIATED WITH A SPACECRAFT CLOCK UPDATE (SEE SCAN LINE STATUS FLAGS FOR ATOVS) +4 4 START OF A SEQUENCE THAT APPARENTLY REPEATS SCAN TIMES THAT HAVE BEEN PREVIOUSLY ACCEPTED +5 5 SCAN LINE WAS NOT CALIBRATED BECAUSE OF BAD TIME +6 6 SCAN LINE WAS CALIBRATED USING FEWER THAN THE PREFERRED NUMBER OF SCAN LINES BECAUSE OF PROXIMITY TO START OR END OF DATA OR TO A DATA GAP +7 7 SCAN LINE WAS NOT CALIBRATED BECAUSE OF BAD OR INSUFFICIENT PRT DATA +8 8 SCAN LINE WAS CALIBRATED BUT WITH MARGINAL PRT DATA +9 9 SOME UNCALIBRATED CHANNELS ON THIS SCAN +10 10 UNCALIBRATED DUE TO INSTRUMENT MODE +11 11 QUESTIONABLE CALIBRATION BECAUSE OF ANTENNA POSITION ERROR OF SPACE VIEW +12 12 QUESTIONABLE CALIBRATION BECAUSE OF ANTENNA POSITION ERROR OF BLACK BODY +13 13 NOT EARTH LOCATED BECAUSE OF BAD TIME +14 14 EARTH LOCATION QUESTIONABLE BECAUSE OF QUESTIONABLE TIME CODE (SEE TIME PROBLEM CODE BITS) +15 15 EARTH LOCATION QUESTIONABLE - ONLY MARGINAL AGREEMENT WITH REASONABLENESS CHECK +16 16 EARTH LOCATION QUESTIONABLE - FAILS REASONABLENESS CHECK +17 17 EARTH LOCATION QUESTIONABLE BECAUSE OF ANTENNA POSITION CHECK +18 18 SCAN LINE CALIBRATION COLD BLACK BODY +19 19 SCAN LINE CALIBRATION WARM BLACK BODY +20 20 SCAN LINE CALIBRATION SPACE VIEW +21 21 EARTH VIEW diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33032.table b/definitions/bufr/tables/0/wmo/35/codetables/33032.table new file mode 100644 index 000000000..33307f50a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33032.table @@ -0,0 +1,7 @@ +1 1 NO GOOD BLACKBODY COUNTS FOR SCAN LINE +2 2 NO GOOD SPACE VIEW COUNTS FOR THIS LINE +3 3 NO GOOD PRTS FOR THIS LINE +4 4 SOME BAD BLACKBODY VIEW COUNTS FOR THIS LINE +5 5 SOME BAD SPACE VIEW COUNTS FOR THIS LINE +6 6 SOME BAD PRT TEMPS ON THIS LINE +7 7 QUALITY FOR THIS SCAN IS REDUCED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33033.table b/definitions/bufr/tables/0/wmo/35/codetables/33033.table new file mode 100644 index 000000000..6fd320510 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33033.table @@ -0,0 +1,3 @@ +1 1 SET IF SECONDARY CALIBRATION USED +22 22 SET IF ALL THE CHANNELS ARE MISSING +23 23 SUSPECT diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33035.table b/definitions/bufr/tables/0/wmo/35/codetables/33035.table new file mode 100644 index 000000000..01996bae4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33035.table @@ -0,0 +1,10 @@ +0 0 AUTOMATIC QUALITY CONTROL PASSED AND NOT MANUALLY CHECKED +1 1 AUTOMATIC QUALITY CONTROL PASSED AND MANUALLY CHECKED AND PASSED +2 2 AUTOMATIC QUALITY CONTROL PASSED AND MANUALLY CHECKED AND DELETED +3 3 AUTOMATIC QUALITY CONTROL FAILED AND MANUALLY NOT CHECKED +4 4 AUTOMATIC QUALITY CONTROL FAILED AND MANUALLY CHECKED AND FAILED +5 5 AUTOMATIC QUALITY CONTROL FAILED AND MANUALLY CHECKED AND RE-INSERTED +6 6 AUTOMATIC QUALITY CONTROL FLAGGED DATA AS QUESTIONABLE AND NOT MANUALLY CHECKED +7 7 AUTOMATIC QUALITY CONTROL FLAGGED DATA AS QUESTIONABLE AND MANUALLY CHECKED AND FAILED +8 8 MANUALLY CHECKED AND FAILED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33037.table b/definitions/bufr/tables/0/wmo/35/codetables/33037.table new file mode 100644 index 000000000..9f26652a5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33037.table @@ -0,0 +1,19 @@ +1 1 U DEPARTURE FROM GUESS +2 2 V DEPARTURE FROM GUESS +3 3 U AND V DEPARTURE FROM GUESS +4 4 U ACCELERATION +5 5 V ACCELERATION +6 6 U AND V ACCELERATION +7 7 POSSIBLE LAND FEATURE +8 8 U ACCELERATION AND POSSIBLE LAND FEATURE +9 9 V ACCELERATION AND POSSIBLE LAND FEATURE +10 10 U AND V ACCELERATION AND POSSIBLE LAND FEATURE +11 11 BAD WIND GUESS +12 12 CORRELATION FAILURE +13 13 SEARCH BOX OFF EDGE OF AREA +14 14 TARGET BOX OFF EDGE OF AREA +15 15 PIXEL BRIGHTNESS OUT OF BOUNDS (NOISY LINE) +16 16 TARGET OUTSIDE OF LATITUDE/LONGITUDE BOX +17 17 TARGET OUTSIDE OF PRESSURE MINIMUM/MAXIMUM +18 18 AUTOEDITOR FLAGGED SLOW VECTOR +19 19 AUTOEDITOR FLAGGED VECTORS diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33038.table b/definitions/bufr/tables/0/wmo/35/codetables/33038.table new file mode 100644 index 000000000..3dc1192e8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33038.table @@ -0,0 +1,9 @@ +1 1 TOTAL ZENITH DELAY QUALITY IS CONSIDERED POOR +2 2 GALILEO SATELLITES USED +3 3 GLONASS SATELLITES USED +4 4 GPS SATELLITES USED +5 5 METEOROLOGICAL DATA APPLIED +6 6 ATMOSPHERIC LOADING CORRECTION APPLIED +7 7 OCEAN TIDE LOADING APPLIED +8 8 CLIMATE QUALITY DATA PROCESSING +9 9 NEAR-REAL TIME DATA PROCESSING diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33039.table b/definitions/bufr/tables/0/wmo/35/codetables/33039.table new file mode 100644 index 000000000..50ff12664 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33039.table @@ -0,0 +1,9 @@ +1 1 NON-NOMINAL QUALITY +2 2 OFFLINE PRODUCT +3 3 ASCENDING OCCULTATION FLAG +4 4 EXCESS PHASE PROCESSING NON-NOMINAL +5 5 BENDING ANGLE PROCESSING NON-NOMINAL +6 6 REFRACTIVITY PROCESSING NON-NOMINAL +7 7 METEOROLOGICAL PROCESSING NON-NOMINAL +14 14 BACKGROUND PROFILE NON-NOMINAL +15 15 BACKGROUND (I.E. NOT RETRIEVED) PROFILE PRESENT diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33041.table b/definitions/bufr/tables/0/wmo/35/codetables/33041.table new file mode 100644 index 000000000..8bbdba90a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33041.table @@ -0,0 +1,4 @@ +0 0 THE FOLLOWING VALUE IS THE TRUE VALUE +1 1 THE FOLLOWING VALUE IS HIGHER THAN THE TRUE VALUE (THE MEASUREMENT HIT THE LOWER LIMIT OF THE INSTRUMENT) +2 2 THE FOLLOWING VALUE IS LOWER THAN THE TRUE VALUE (THE MEASUREMENT HIT THE HIGHER LIMIT OF THE INSTRUMENT) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33042.table b/definitions/bufr/tables/0/wmo/35/codetables/33042.table new file mode 100644 index 000000000..b75447a4a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33042.table @@ -0,0 +1,5 @@ +0 0 EXCLUSIVE LOWER LIMIT (>) +1 1 INCLUSIVE LOWER LIMIT (>=) +2 2 EXCLUSIVE UPPER LIMIT (<) +3 3 INCLUSIVE UPPER LIMIT (=<) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33043.table b/definitions/bufr/tables/0/wmo/35/codetables/33043.table new file mode 100644 index 000000000..398d9ab2c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33043.table @@ -0,0 +1,4 @@ +1 1 SEA MDS. NADIR ONLY SST RETRIEVAL USED 3.7 MICRON CHANNEL. LAND MDS RESERVED +2 2 SEA MDS. DUAL VIEW SST RETRIEVAL USED 3.7 MICRON CHANNEL. LAND MDS RESERVED +3 3 NADIR VIEW CONTAINS DAY TIME DATA +4 4 FORWARD VIEW CONTAINS DAY TIME DATA diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33044.table b/definitions/bufr/tables/0/wmo/35/codetables/33044.table new file mode 100644 index 000000000..01746c795 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33044.table @@ -0,0 +1,14 @@ +1 1 INPUT DATA MEAN OUTSIDE NOMINAL RANGE FLAG +2 2 INPUT DATA STANDARD DEVIATION OUTSIDE NOMINAL RANGE FLAG +3 3 NUMBER OF INPUT DATA GAPS > THRESHOLD VALUE +4 4 PERCENTAGE OF MISSING LINES > THRESHOLD VALUE +5 5 DOPPLER CENTROID UNCERTAIN. CONFIDENCE MEASURE < SPECIFIC VALUE +6 6 DOPPLER AMBIGUITY ESTIMATE UNCERTAIN. CONFIDENCE MEASURE < SPECIFIC VALUE +7 7 OUTPUT DATA MEAN OUTSIDE NOMINAL RANGE FLAG +8 8 OUTPUT DATA STANDARD DEVIATION OUTSIDE NOMINAL RANGE FLAG +9 9 CHIRP RECONSTRUCTION FAILED OR IS OF LOW QUALITY FLAG +10 10 DATA SET MISSING +11 11 INVALID DOWNLINK PARAMETERS +12 12 AZIMUTH CUT-OFF ITERATION COUNT. THE AZIMUTH CUT-OFF FIT DID NOT CONVERGE WITHIN A MINIMUM NUMBER OF ITERATIONS +13 13 AZIMUTH CUT-OFF FIT DID NOT CONVERGE WITHIN A MINIMUM NUMBER OF ITERATIONS +14 14 PHASE INFORMATION CONFIDENCE MEASURE. THE IMAGINARY SPECTRAL PEAK IS LESS THAN A MINIMUM THRESHOLD, OR THE ZERO LAG SHIFT IS GREATER THAN A MINIMUM THRESHOLD diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33047.table b/definitions/bufr/tables/0/wmo/35/codetables/33047.table new file mode 100644 index 000000000..f69b56e18 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33047.table @@ -0,0 +1,27 @@ +1 1 ERROR DETECTED AND ATTEMPTS TO RECOVER MADE +2 2 ANOMALY IN ON-BOARD DATA HANDLING (OBDH) VALUE DETECTED +3 3 ANOMALY IN ULTRA STABLE OSCILLATOR PROCESSING (USOP) VALUE DETECTED +4 4 ERRORS DETECTED BY ON-BOARD COMPUTER +5 5 AUTOMATIC GAIN CONTROL (AGC) OUT OF RANGE +6 6 RECEPTION (RX) DELAY FAULT. RX DISTANCE OUT OF RANGE +7 7 WAVE FORM SAMPLES FAULT IDENTIFIER. ERROR +8 8 S BAND ANOMALY/ERROR DETECTED +12 12 BRIGHTNESS TEMPERATURE (CHANNEL 1) OUT OF RANGE +13 13 BRIGHTNESS TEMPERATURE (CHANNEL 2) OUT OF RANGE +14 14 RESERVED +15 15 KU BAND OCEAN RETRACKING ERROR +16 16 S BAND OCEAN RETRACKING ERROR +17 17 KU BAND ICE 1 RETRACKING ERROR +18 18 S BAND ICE 1 RETRACKING ERROR +19 19 KU BAND ICE 2 RETRACKING ERROR +20 20 S BAND ICE 2 RETRACKING ERROR +21 21 KU BAND SEA ICE RETRACKING ERROR +22 22 ARITHMETIC FAULT ERROR +23 23 METEO DATA STATE. NO MAP +24 24 METEO DATA STATE. 1 MAP +25 25 METEO DATA STATE. 2 MAPS DEGRADED +26 26 METEO DATA STATE. 2 MAPS NOMINAL +27 27 ORBIT PROPAGATOR STATUS FOR PROPAGATION MODE, SEVERAL ERRORS +28 28 ORBIT PROPAGATOR STATUS FOR PROPAGATION MODE, WARNING DETECTED +29 29 ORBIT PROPAGATOR STATUS FOR INITIALIZATION MODE, SEVERAL ERRORS +30 30 ORBIT PROPAGATOR STATUS FOR INITIALIZATION MODE, WARNING DETECTED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33048.table b/definitions/bufr/tables/0/wmo/35/codetables/33048.table new file mode 100644 index 000000000..312ba4071 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33048.table @@ -0,0 +1,4 @@ +0 0 INVERSION SUCCESSFUL +1 1 INVERSION NOT SUCCESSFUL +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33049.table b/definitions/bufr/tables/0/wmo/35/codetables/33049.table new file mode 100644 index 000000000..bdde0619b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33049.table @@ -0,0 +1,4 @@ +0 0 EXTERNAL WIND DIRECTION USED DURING INVERSION +1 1 EXTERNAL WIND DIRECTION NOT USED DURING INVERSION +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33050.table b/definitions/bufr/tables/0/wmo/35/codetables/33050.table new file mode 100644 index 000000000..ee7bb6deb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33050.table @@ -0,0 +1,9 @@ +0 0 UNQUALIFIED +1 1 CORRECT VALUE (ALL CHECKS PASSED) +2 2 PROBABLY GOOD BUT VALUE INCONSISTENT WITH STATISTICS (DIFFER FROM CLIMATOLOGY) +3 3 PROBABLY BAD (SPIKE, GRADIENT, ETC., IF OTHER TESTS PASSED) +4 4 BAD VALUE, IMPOSSIBLE VALUE (OUT OF SCALE, VERTICAL INSTABILITY, CONSTANT PROFILE) +5 5 VALUE MODIFIED DURING QUALITY CONTROL +8 8 INTERPOLATED VALUE +9 9 GOOD FOR OPERATIONAL USE; CAUTION; CHECK LITERATURE FOR OTHER USES +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33055.table b/definitions/bufr/tables/0/wmo/35/codetables/33055.table new file mode 100644 index 000000000..bb84d803a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33055.table @@ -0,0 +1,13 @@ +11 11 OCEAN SIGMA0 IS NOT AVAILABLE FOR WIND RETRIEVALS +12 12 BACKGROUND WIND IS NOT AVAILABLE +13 13 BACKGROUND MODEL DETECT LAND +14 14 BACKGROUND MODEL DETECT ICE +15 15 SIGMA0 IS NOT LAND/ICE FREE +16 16 SIGMA0 LAND CONTAMINATION +17 17 SIGMA0 ICE CONTAMINATION +18 18 NOT ENOUGH AZIMUTHAL DIVERSITY +19 19 INVERSION IS NOT DONE +20 20 OVERALL WVC FLAG +21 21 INVERSION IS ATTEMPTED (FLAG IS SET) +22 22 RAIN FLAG IS ATTEMPTED (FLAG IS SET) +23 23 RAIN IS DETECTED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33056.table b/definitions/bufr/tables/0/wmo/35/codetables/33056.table new file mode 100644 index 000000000..83293ea42 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33056.table @@ -0,0 +1,13 @@ +8 8 ASCENDING +9 9 VV POLARISATION +10 10 FORE OF SPACECRAFT +11 11 LAND +12 12 POOR SIGMA0 (SUMMARY) +13 13 INVALID SIGMA-0 (SUMMARY) +14 14 POOR BT +15 15 INVALID BT +16 16 LAND-SEA BOUNDARY +17 17 NEGATIVE SIGMA-0 +21 21 ICE +22 22 MISSING DATA AT A GIVEN LATITUDE-LONGITUDE FOR SEA-ICE FLAGGING PROCESS FOR 2 OR MORE NUMBER OF DAYS +23 23 ICE-OCEAN CONTAMINATION diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33060.table b/definitions/bufr/tables/0/wmo/35/codetables/33060.table new file mode 100644 index 000000000..741430292 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33060.table @@ -0,0 +1,4 @@ +0 0 GOOD +1 1 BAD +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33066.table b/definitions/bufr/tables/0/wmo/35/codetables/33066.table new file mode 100644 index 000000000..a80e6ab9a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33066.table @@ -0,0 +1,4 @@ +20 20 GOOD WIND, BUT AN ALTERNATIVE CHANNEL USED FOR FEATURE TRACKING +21 21 GOOD WIND, BUT AN ALTERNATIVE SET OF CHANNELS USED FOR THE DETERMINATION OF CLOUD-TOP HEIGHT/AMV HEIGHT ASSIGNMENT +22 22 CORRELATION SURFACE CONSTRAINT FAILS +23 23 RESERVED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33070.table b/definitions/bufr/tables/0/wmo/35/codetables/33070.table new file mode 100644 index 000000000..8a0467b65 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33070.table @@ -0,0 +1,14 @@ +0 0 GOOD RETRIEVAL +1 1 BAD AEROSOL INFORMATION FLAG OR NOAA-16 RADIANCE ANOMALY +2 2 SOLAR ZENITH ANGLE GREATER THAN 84 DEGREES +3 3 380 NM RESIDUE GREATER THAN LIMIT +4 4 OZONE INCONSISTENCY +5 5 DIFFERENCE BETWEEN PROFILE OZONE AND STEP 3 TOTAL OZONE EXCEEDS THRESHOLD (SET TO 25 DU) +6 6 STEP 1 OZONE ITERATION DID NOT CONVERGE +7 7 ANY CHANNEL RESIDUE GREATER THAN 16 OR BAD RADIANCE +8 8 INSUFFICIENT PIXELS - NOT PROCESSED +9 9 FIRST GUESS GOOD - OZONE FORECAST DATA USED +10 10 HIGH CLOUD IN PIXEL - NOT PROCESSED +11 11 SUCCESSFUL OZONE RETRIEVAL +12 12 UNSUCCESSFUL OZONE RETRIEVAL +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33071.table b/definitions/bufr/tables/0/wmo/35/codetables/33071.table new file mode 100644 index 000000000..8c9d4ded5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33071.table @@ -0,0 +1,10 @@ +0 0 GOOD RETRIEVAL +1 1 SOLAR ZENITH ANGLE GREATER THAN 84 DEGREES +2 2 DIFFERENCE BETWEEN STEP 3 AND PROFILE TOTAL OZONE GREATER THAN LIMIT (25 DU) +3 3 AVERAGE FINAL RESIDUE FOR WAVELENGTHS USED IN RETRIEVAL GREATER THAN THRESHOLD +4 4 FINAL RESIDUE GREATER THAN 3 TIMES A PRIORI ERROR +5 5 DIFFERENCE BETWEEN RETRIEVED AND A PRIORI GREATER THAN 3 TIMES A PRIORI ERROR +6 6 NON-CONVERGENT SOLUTION +7 7 UPPER LEVEL PROFILE ANOMALY OR STRAY LIGHT ANOMALY +8 8 INITIAL RESIDUE GREATER THAN 18.0 N-VALUE UNITS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33072.table b/definitions/bufr/tables/0/wmo/35/codetables/33072.table new file mode 100644 index 000000000..fcc7f0972 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33072.table @@ -0,0 +1,18 @@ +0 0 GOOD RETRIEVAL +1 1 REFLECTIVITY OUT OF RANGE +2 2 LARGER PIXELS (NUMBER OF CROSS-TRACK PIXELS LESS THAN 32) OR BACKWARD SCANS ERROR +3 3 SOLAR ZENITH ANGLE GREATER THAN 88 DEGREES +4 4 LATITUDE/LONGITUDE OUT OF RANGE +5 5 VIEWING ZENITH ANGLE OR SOLAR ZENITH ANGLE OUT OF RANGE +6 6 STEP-ONE PROCESS FAILED IN GENERAL +7 7 FIRST GUESS OZONE OUT OF RANGE +8 8 TOO MANY ITERATIONS (EXCEED 8) +9 9 STEP-ONE RESIDUE CALCULATION FAILED +10 10 STEP-TWO PROCESS FAILED IN GENERAL +11 11 FIRST GUESS OZONE PROFILE OUT OF RANGE +12 12 STEP-TWO OZONE VALUE OUT OF RANGE +13 13 STEP-TWO RESIDUE CALCULATION FAILED +14 14 STEP-THREE PROCESS FAILED IN GENERAL +15 15 POLARIZATION CORRECTION ACCURACY ALERT +16 16 RADIANCE OR IRRADIANCE LESS OR EQUAL TO ZERO +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33075.table b/definitions/bufr/tables/0/wmo/35/codetables/33075.table new file mode 100644 index 000000000..23edae628 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33075.table @@ -0,0 +1,5 @@ +1 1 GAP IN RAW DATA RECORD (RDR) DATA DETECTED (I.E., MISSING SCAN(S) PRECEDING THE CURRENT SCAN) +2 2 RECORDED TIME IS NOT IN SEQUENCE (I.E., THE SCAN START TIME IS OUT OF SEQUENCE) +3 3 LAMBDA MONITORED CALCULATION CANNOT BE UPDATED +4 4 THE MEASURED TEMPERATURES OF ANY INSTRUMENT COMPONENTS (E.G., BEAM-SPLITTER, SCAN MIRROR, SCAN BAFFLE) ARE OUTSIDE THE ALLOWABLE RANGES +5 5 AT LEAST ONE OF THE MONITORED INSTRUMENT TEMPERATURES HAS DRIFTED MORE THAN A SPECIFIED TOLERANCE VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33076.table b/definitions/bufr/tables/0/wmo/35/codetables/33076.table new file mode 100644 index 000000000..7100c4a0d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33076.table @@ -0,0 +1,2 @@ +1 1 LUNAR INTRUSION ON FIRST DEEP SPACE VIEW +2 2 LUNAR INTRUSION ON SECOND DEEP SPACE VIEW diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33077.table b/definitions/bufr/tables/0/wmo/35/codetables/33077.table new file mode 100644 index 000000000..742c83cb5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33077.table @@ -0,0 +1,12 @@ +1 1 DEGRADED SDR* QUALITY +2 2 INVALID SDR* QUALITY +3 3 INVALID SDR* GEOLOCATION INFORMATION +4 4 DEGRADED RADIOMETRIC CALIBRATION +5 5 INVALID RADIOMETRIC CALIBRATION +6 6 DEGRADED SPECTRAL CALIBRATION +7 7 INVALID SPECTRAL CALIBRATION +8 8 FRINGE COUNT ERROR DETECTED AND CORRECTED +9 9 DAY/NIGHT INDICATOR +10 10 INVALID RDR** DATA +11 11 SIGNIFICANT FRINGE COUNT ERROR DETECTED +12 12 BIT TRIM FAILED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33078.table b/definitions/bufr/tables/0/wmo/35/codetables/33078.table new file mode 100644 index 000000000..f3a218067 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33078.table @@ -0,0 +1,5 @@ +0 0 NOMINAL - ALTITUDE AND EPHEMERIS DATA AVAILABLE +1 1 MISSING AT MOST A SMALL GAP OF ALTITUDE AND EPHEMERIS DATA +2 2 MISSING MORE THAN A SMALL GAP OF ALTITUDE AND EPHEMERIS DATA, BUT NO MORE THAN A GRANULE BOUNDARY +3 3 MISSING MORE THAN A GRANULE BOUNDARY OF ALTITUDE AND EPHEMERIS DATA +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33079.table b/definitions/bufr/tables/0/wmo/35/codetables/33079.table new file mode 100644 index 000000000..08751431e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33079.table @@ -0,0 +1,10 @@ +6 6 THE NO. 1-NO. 7 HEALTH CHECKS FAILED +7 7 THE NO. 8-NO. 15 HEALTH CHECKS FAILED +8 8 THE NO. 16-NO. 23 HEALTH CHECKS FAILED +9 9 THE NO. 24-NO. 31 HEALTH CHECKS FAILED +10 10 THE NO. 32-NO. 39 HEALTH CHECKS FAILED +11 11 THE NO. 40-NO. 47 HEALTH CHECKS FAILED +12 12 THE NO. 48-NO. 55 HEALTH CHECKS FAILED +13 13 THE NO. 56-NO. 63 HEALTH CHECKS FAILED +14 14 THE NO. 64-NO. 70 HEALTH CHECKS FAILED +15 15 QUADRATIC CORRECTION APPLIED TO THE RADIOMETRIC TRANSFER FUNCTION FOR NON-LINEARITY CORRECTION diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33080.table b/definitions/bufr/tables/0/wmo/35/codetables/33080.table new file mode 100644 index 000000000..a39dd47ea --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33080.table @@ -0,0 +1,13 @@ +7 7 DIVIDE-BY-ZERO CONDITION OR COMPUTATION LOOP FAILED TO CONVERGE IN THE K/KA AND V (KAV) BAND PRT +8 8 DIVIDE-BY-ZERO CONDITION OR COMPUTATION LOOP FAILED TO CONVERGE IN THE WG BAND PRT +9 9 DIVIDE-BY-ZERO CONDITION OR COMPUTATION LOOP FAILED TO CONVERGE IN THE K/KA, V, W, G BAND RECEIVER SHELF PRT K TEMPERATURE COMPUTATION +10 10 OUT OF RANGE CONDITION FOR THE K/KA AND V BAND PRT +11 11 OUT OF RANGE CONDITION FOR THE WG BAND PRT +12 12 KAV PRT TEMPERATURE INCONSISTENCY +13 13 WG PRT TEMPERATURE INCONSISTENCY +14 14 TIME SEQUENCE ERROR +15 15 DATA GAP - MISSING SCAN(S) PRECEDING THE CURRENT SCAN +16 16 KAV PRT SUFFICIENCY - INSUFFICIENT KAV PRT DATA ARE AVAILABLE +17 17 WG PRT SUFFICIENCY - INSUFFICIENT WG PRT DATA ARE AVAILABLE +18 18 SPACE VIEW ANTENNA POSITION ERROR +19 19 BLACKBODY ANTENNA POSITION ERROR diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33081.table b/definitions/bufr/tables/0/wmo/35/codetables/33081.table new file mode 100644 index 000000000..f8759e0ef --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33081.table @@ -0,0 +1,9 @@ +3 3 MOON IN SPACE VIEW +4 4 GAIN ERROR - THE LOWEST BLACKBODY COUNT IS SMALLER THAN OR EQUAL TO THE HIGHEST SPACE VIEW COUNT IN A SCAN +5 5 CALIBRATION WITH FEWER THAN PREFERRED SAMPLES +6 6 SPACE VIEW DATA SUFFICIENCY CHECK - INSUFFICIENT SPACE VIEW SAMPLES ARE AVAILABLE +7 7 BLACKBODY VIEW DATA SUFFICIENCY CHECK - INSUFFICIENT BLACKBODY VIEW SAMPLES ARE AVAILABLE +8 8 OUT OF RANGE CONDITION FOR THE SPACE VIEW +9 9 OUT OF RANGE CONDITION FOR THE BLACKBODY VIEW +10 10 SPACE VIEW INCONSISTENCY +11 11 BLACKBODY VIEW INCONSISTENCY diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33082.table b/definitions/bufr/tables/0/wmo/35/codetables/33082.table new file mode 100644 index 000000000..467157461 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33082.table @@ -0,0 +1,10 @@ +6 6 WITHIN SOUTH ATLANTIC ANOMALY +7 7 INVALID INPUT DATA (INDICATES THAT ANY OF THE SPACECRAFT EPHEMERIS OR ATTITUDE DATA ARE INVALID) +8 8 BAD POINTING (INDICATES THAT THE SENSOR LOS DOES NOT INTERSECT THE GEOID, IS NEAR THE LIMB, HAS INVALID SENSOR ANGLES OR OTHER SIMILAR CONDITION) +9 9 BAD TERRAIN (INDICATES THAT THE ALGORITHM COULD NOT OBTAIN A VALID TERRAIN VALUE) +10 10 INVALID SOLAR ANGLES +11 11 MISSING AT MOST A SMALL GAP OF ALTITUDE AND EPHEMERIS DATA +12 12 MISSING MORE THAN A SMALL GAP OF ALTITUDE AND EPHEMERIS DATA, BUT NO MORE THAN A GRANULE BOUNDARY +13 13 MISSING MORE THAN A GRANULE BOUNDARY OF ALTITUDE AND EPHEMERIS DATA +14 14 THE NUMBER OF ENCODER PULSE VALUES PER DELTA TIME IS NOT AS EXPECTED +15 15 SOLAR ECLIPSE DURING EARTH VIEW SCAN diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33083.table b/definitions/bufr/tables/0/wmo/35/codetables/33083.table new file mode 100644 index 000000000..6fe63f623 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33083.table @@ -0,0 +1,10 @@ +6 6 PIXEL IS AFFECTED BY RADIO-FREQUENCY INTERFERENCE +7 7 POOR CALIBRATION QUALITY DUE TO BAD SPACE VIEW OFFSETS, OBC * VIEW OFFSETS, ETC. OR USE OF A PREVIOUS CALIBRATION VIEW +8 8 SATURATED PIXEL +9 9 MISSING DATA -DATA REQUIRED FOR CALIBRATION PROCESSING ARE NOT AVAILABLE FOR PROCESSING +10 10 CALIBRATED PIXEL RADIANCE OUT OF RANGE +11 11 CALIBRATED PIXEL REFLECTANCE OR EBBT OUT OF RANGE +12 12 THE MOON HAS CORRUPTED THE SPACE VIEW +13 13 SCAN DATA IS NOT PRESENT (NO VALID DATA) +14 14 QUALITY FOR THIS SCAN-LINE IS REDUCED. THE VALUE IS DETERMINED BY THE COMBINED NUMBER OF STEPS REQUIRED TO FIND A REPLACEMENT FOR THERMISTOR OR CALIBRATION SOURCE DATA +15 15 BAD DETECTOR diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33084.table b/definitions/bufr/tables/0/wmo/35/codetables/33084.table new file mode 100644 index 000000000..accb209c5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33084.table @@ -0,0 +1,10 @@ +6 6 BULK SST OUTSIDE OF VALIDATION RANGE +7 7 SKIN SST OUTSIDE OF VALIDATION RANGE +8 8 SENSOR ZENITH ANGLE > 40 DEGREES (PIXEL IS NOT WITHIN 40 DEGREES OF NADIR AND THEREFORE IS NOT OF HIGH QUALITY) +9 9 DEGRADATION - HORIZONTAL CELL SIZE (HCS) > 1.3 KM (HCS > 1.3 KM, SWATH WIDTH > 1 700 KM, SENSOR ZENITH ANGLE > 50.3 DEGREES) +10 10 EXCLUSION: NO OCEAN IN PIXEL +11 11 DEGRADATION: AEROSOL OPTICAL THICKNESS (AOT) > 0.6 (AOT IN HORIZONTAL CELL > 0.6 ON THE SLANT PATH (AOT @550 NM)) +12 12 EXCLUSION: AOT > 1.0 (AOT IN HORIZONTAL CELL > 1.0 ON THE SLANT PATH (AOT @550 NM)) +13 13 SUN GLINT PRESENT IN PIXEL +14 14 ICE CONCENTRATION THRESHOLD EXCEEDED (SST NOT RETRIEVED DUE TO ICE CONCENTRATION EXCEEDING THRESHOLD IN SYSTEM SPEC) +15 15 THIN CIRRUS DETECTED IN PIXEL diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33085.table b/definitions/bufr/tables/0/wmo/35/codetables/33085.table new file mode 100644 index 000000000..0872a2bb7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33085.table @@ -0,0 +1,14 @@ +4 4 ANGSTROM EXPONENT IS OUTSIDE OF THE SYSTEM SPECIFICATION RANGE +5 5 EXCLUDED, ANGSTROM EXPONENT FOR AOT* AT 550 NM < 0.15 +6 6 BRIGHT SURFACE IN CELL (IF OVER LAND), OR SHALLOW OR TURBID WATER IN CELL (IF OVER OCEAN) +7 7 LOW SUN, EXCLUDED, SOLAR ZENITH ANGLE > 80 DEGREES +8 8 LOW SUN, DEGRADED, 65 DEGREES < SOLAR ZENITH ANGLE =< 80 DEGREES +9 9 FIRE DETECTED IN CELL +10 10 SNOW/ICE IN CELL +11 11 CLOUD SHADOW IN CELL +12 12 SUN GLINT IN CELL +13 13 BAD SDR** DATA PRESENT IN HORIZONTAL CELL (QUALITY OF AOT/APSP*** DEGRADED OR AOT/APSP NOT RETRIEVED DUE TO BAD SDR DATA IN HORIZONTAL CELL) +14 14 CIRRUS CONTAMINATION IN CELL +15 15 CLOUD ADJACENT TO CELL +16 16 CLOUD CONTAMINATION IN CELL +17 17 AOT IS OUTSIDE OF THE SYSTEM SPECIFICATION RANGE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33086.table b/definitions/bufr/tables/0/wmo/35/codetables/33086.table new file mode 100644 index 000000000..b7cda3212 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33086.table @@ -0,0 +1,5 @@ +0 0 NOT RETRIEVED +1 1 EXCLUDED +2 2 DEGRADED +3 3 HIGH QUALITY +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33087.table b/definitions/bufr/tables/0/wmo/35/codetables/33087.table new file mode 100644 index 000000000..f3000e258 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33087.table @@ -0,0 +1,10 @@ +0 0 LESS THAN OR EQUAL TO 10% +1 1 GREATER THAN 10% BUT LESS THAN OR EQUAL TO 20% +2 2 GREATER THAN 20% BUT LESS THAN OR EQUAL TO 30% +3 3 GREATER THAN 30% BUT LESS THAN OR EQUAL TO 40% +4 4 GREATER THAN 40% BUT LESS THAN OR EQUAL TO 50% +5 5 GREATER THAN 50% BUT LESS THAN OR EQUAL TO 60% +6 6 GREATER THAN 60% BUT LESS THAN OR EQUAL TO 70% +7 7 GREATER THAN 70% BUT LESS THAN OR EQUAL TO 80% +8 8 GREATER THAN 80% +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33088.table b/definitions/bufr/tables/0/wmo/35/codetables/33088.table new file mode 100644 index 000000000..1dfa368f6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33088.table @@ -0,0 +1,12 @@ +6 6 SURFACE REFLECTIVITY OUT OF RANGE +7 7 RESIDUAL TOO LARGE +8 8 AEROSOL INDEX LIMIT EXCEEDED +9 9 SOLAR ECLIPSE PRESENT (ALL OR PART OF THE IFOV* IS AFFECTED BY A SOLAR ECLIPSE, UMBRA OR PENUMBRA VIEWING) +10 10 SUN GLINT PRESENT WITHIN IFOV +11 11 SNOW OR ICE SURFACE IS WITHIN THE IFOV +12 12 SOLAR ZENITH ANGLE IN EXCLUDED (NIGHT) CONDITION (SOLAR ZENITH ANGLE >= 88 DEGREES) +13 13 SOLAR ZENITH ANGLE IN DEGRADED CONDITION (80 DEGREES =< SOLAR ZENITH ANGLE < 88 DEGREES) +14 14 SO2 INDEX > 6 DU (DEGRADED CONDITION) +15 15 RESIDUES ARE NOT CONSISTENT (INDICATES WHETHER THE RESIDUES FROM THE 22 WAVELENGTHS ARE CONSISTENT) +16 16 O3 TRIPLET SELECTION IS NOT CONSISTENT WITHIN RETRIEVAL (OZONE TRIPLET CONSISTENCY) +17 17 INPUT DATA QUALITY IS NOT GOOD diff --git a/definitions/bufr/tables/0/wmo/35/codetables/33092.table b/definitions/bufr/tables/0/wmo/35/codetables/33092.table new file mode 100644 index 000000000..2a9557582 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/33092.table @@ -0,0 +1,2 @@ +1 1 ALTIMETER OPERATING +2 2 MICROWAVE RADIOMETER (MWR) OPERATING diff --git a/definitions/bufr/tables/0/wmo/35/codetables/35000.table b/definitions/bufr/tables/0/wmo/35/codetables/35000.table new file mode 100644 index 000000000..8c57023e3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/35000.table @@ -0,0 +1 @@ +1023 1023 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/35001.table b/definitions/bufr/tables/0/wmo/35/codetables/35001.table new file mode 100644 index 000000000..bba0c812e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/35001.table @@ -0,0 +1,4 @@ +0 0 REAL TIME +1 1 NEAR-REAL TIME +2 2 NON-REAL TIME +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/35030.table b/definitions/bufr/tables/0/wmo/35/codetables/35030.table new file mode 100644 index 000000000..5b83f8b81 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/35030.table @@ -0,0 +1,10 @@ +0 0 NO DISCREPANCIES +1 1 NON-COMPLIANCE WITH STANDARD AND RECOMMENDED PRACTICES AND PROCEDURES INCLUDING THOSE OF MONITORING +2 2 CATALOGUES OF METEOROLOGICAL BULLETINS NOT UPDATED IN A TIMELY MANNER +3 3 INCORRECT ROUTING DIRECTORIES +4 4 LACK OF FLEXIBILITY IN THE ROUTING ARRANGEMENTS +5 5 DEFICIENCIES IN THE OPERATION OF GTS CENTRES AND CIRCUITS +6 6 LOSS OF DATA OR DELAYS IN RELAYING DATA ON THE GTS +7 7 ROUTING OF DATA DIFFERENT FROM THE ROUTING PROVIDED IN THE PLAN +8 8 VARIOUS MALPRACTICES +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/35031.table b/definitions/bufr/tables/0/wmo/35/codetables/35031.table new file mode 100644 index 000000000..bdd705ddd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/35031.table @@ -0,0 +1,20 @@ +1 1 SUFFICIENT AND ALL OF ACCEPTABLE QUALITY +2 2 SUFFICIENT BUT PARTLY OF ACCEPTABLE QUALITY +3 3 INSUFFICIENT BUT ALL OF ACCEPTABLE QUALITY +4 4 INSUFFICIENT AND OF UNACCEPTABLE QUALITY +5 5 SOME MESSAGES NOT COMPLETE +6 6 SUSPECT OR WRONGLY CODED GROUPS COULD NOT BE INTERPRETED CONFIDENTLY +7 7 GROSS CODING ERRORS +8 8 TRANSMISSION SEQUENTIAL ORDER NOT OBSERVED +9 9 REPORT COMPLETELY GARBLED AND THUS DISCARDED +10 10 DEFICIENCIES IDENTIFIED AND RECTIFIED +11 11 DEFICIENCIES IDENTIFIED BUT NOT RECTIFIED +12 12 DEFICIENCIES NOT IDENTIFIED +13 13 MEASURING ERRORS +14 14 MUTUAL INCONSISTENCY +15 15 TEMPORAL INCONSISTENCY +16 16 FORECAST ERROR +17 17 BIAS +18 18 IMPROVE SYSTEM OF QUALITY CONTROL +19 19 EXPAND TRAINING PROGRAMMES +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/35032.table b/definitions/bufr/tables/0/wmo/35/codetables/35032.table new file mode 100644 index 000000000..7f53a05f9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/35032.table @@ -0,0 +1,10 @@ +1 1 DATA GROUPS MISSING DUE TO RADIO FADING +2 2 DATA GROUPS MISSING DUE TO OUTAGE OF CENTRE +3 3 DATA GROUPS MISSING DUE TO OUTAGE OF CIRCUIT +4 4 NON-IMPLEMENTATION OR MAINTENANCE OF REQUIRED RBSN DENSITY +5 5 SHORTAGE OF QUALIFIED STAFF TO MAN STATIONS +6 6 LACK OF CONSUMABLES +7 7 INSTRUMENT FAILURE +8 8 NON-ADHERENCE TO TELECOMMUNICATION PROCEDURES +9 9 SOME OBSERVING PROGRAMMES CEASED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/35033.table b/definitions/bufr/tables/0/wmo/35/codetables/35033.table new file mode 100644 index 000000000..86e9592ef --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/35033.table @@ -0,0 +1,12 @@ +1 1 NO DEFICIENCY +2 2 OBSERVATIONS NOT MADE REGULARLY +3 3 OBSERVATIONS NOT MADE AT RIGHT TIME +4 4 OBSERVATIONS MADE BUT NOT DISSEMINATED +5 5 OBSERVATIONS MADE AND SENT TO INCORRECT USERS +6 6 COLLECTION NOT RECEIVED +7 7 COLLECTION TRANSMITTED LATE +8 8 COLLECTION NOT TRANSMITTED +9 9 DIFFICULTIES IN HF PROPAGATION AND SELECTION OF SUITABLE FREQUENCY +10 10 DIFFICULTIES IN MAINTENANCE OF COMMUNICATION EQUIPMENT AT REMOTE STATIONS +11 11 NO ALTERNATIVE ARRANGEMENT FOR ROUTING METEOROLOGICAL OBSERVATION +123 123 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/35034.table b/definitions/bufr/tables/0/wmo/35/codetables/35034.table new file mode 100644 index 000000000..7297664cf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/35034.table @@ -0,0 +1,7 @@ +1 1 SLIGHT IMPROVEMENT +2 2 SIGNIFICANT IMPROVEMENT +3 3 MOST SIGNIFICANT IMPROVEMENT +4 4 STEADY +5 5 DECREASING +6 6 EFFORTS REQUIRED TO IMPROVE NIGHT-TIME OBSERVATIONS +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/35035.table b/definitions/bufr/tables/0/wmo/35/codetables/35035.table new file mode 100644 index 000000000..0fce6ddb7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/35035.table @@ -0,0 +1,20 @@ +0 0 RESERVED +1 1 BALLOON BURST +2 2 BALLOON FORCED DOWN BY ICING +3 3 LEAKING OR FLOATING BALLOON +4 4 WEAK OR FADING SIGNAL +5 5 BATTERY FAILURE +6 6 GROUND EQUIPMENT FAILURE +7 7 SIGNAL INTERFERENCE +8 8 RADIOSONDE FAILURE +9 9 EXCESSIVE MISSING DATA FRAMES +10 10 RESERVED +11 11 EXCESSIVE MISSING TEMPERATURE +12 12 EXCESSIVE MISSING PRESSURE +13 13 USER TERMINATED +14 14 SUDDEN LOSS OF SIGNAL +15 15 TRACKING LOST +16 16 INCREASING PRESSURE +17 17 INVALID AND/OR MISSED DATA TIME LIMITS EXCEEDED +30 30 OTHER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40005.table b/definitions/bufr/tables/0/wmo/35/codetables/40005.table new file mode 100644 index 000000000..045a4f1b1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40005.table @@ -0,0 +1,5 @@ +1 1 SOIL MOISTURE BETWEEN -20% AND 0% +2 2 SOIL MOISTURE BETWEEN 100% AND 120% +3 3 CORRECTION OF WET BACKSCATTER REFERENCE +4 4 CORRECTION OF DRY BACKSCATTER REFERENCE +5 5 CORRECTION OF VOLUME SCATTERING IN SAND diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40006.table b/definitions/bufr/tables/0/wmo/35/codetables/40006.table new file mode 100644 index 000000000..d53382eff --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40006.table @@ -0,0 +1,8 @@ +1 1 NOT SOIL +2 2 SENSITIVITY TO SOIL MOISTURE BELOW LIMIT +3 3 AZIMUTHAL NOISE ABOVE LIMIT +4 4 BACKSCATTER FORE-AFT BEAM OUT OF RANGE +5 5 SLOPE MID-FORE BEAM OUT OF RANGE +6 6 SLOPE MID-AFT BEAM OUT OF RANGE +7 7 SOIL MOISTURE BELOW -20% +8 8 SOIL MOISTURE ABOVE 120% diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40011.table b/definitions/bufr/tables/0/wmo/35/codetables/40011.table new file mode 100644 index 000000000..ddc7e8672 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40011.table @@ -0,0 +1,4 @@ +1 1 MEAN SEA-SURFACE (MSS) INTERPOLATION FLAG +2 2 OCEAN TIDE SOLUTION 1 INTERPOLATION FLAG (0 = 4 POINTS OVER OCEAN, 1 = LESS THAN 4 POINTS) +3 3 OCEAN TIDE SOLUTION 2 INTERPOLATION FLAG (0 = 4 POINTS OVER OCEAN, 1 = LESS THAN 4 POINTS) +4 4 METEOROLOGICAL DATA INTERPOLATION FLAG (0 = 4 POINTS OVER OCEAN, 1 = LESS THAN 4 POINTS) diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40012.table b/definitions/bufr/tables/0/wmo/35/codetables/40012.table new file mode 100644 index 000000000..d8ce14d86 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40012.table @@ -0,0 +1,3 @@ +1 1 18.7 GHZ BRIGHTNESS TEMPERATURE +2 2 23.8 GHZ BRIGHTNESS TEMPERATURE +3 3 34 GHZ BRIGHTNESS TEMPERATURE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40013.table b/definitions/bufr/tables/0/wmo/35/codetables/40013.table new file mode 100644 index 000000000..79b991a29 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40013.table @@ -0,0 +1,5 @@ +0 0 INTERPOLATION WITH NO GAP BETWEEN JMR* DATA +1 1 INTERPOLATION WITH GAPS BETWEEN JMR* DATA +2 2 EXTRAPOLATION OF JMR* DATA +3 3 FAILURE OF EXTRAPOLATION AND INTERPOLATION +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40020.table b/definitions/bufr/tables/0/wmo/35/codetables/40020.table new file mode 100644 index 000000000..fa1d1f5c5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40020.table @@ -0,0 +1,16 @@ +1 1 NZPD AND COMPLEX CALIBRATION ERROR +2 2 BAND 3 AFFECTED BY SPIKE +3 3 BAND 3 AFFECTED BY SATURATION +4 4 BAND 2 AFFECTED BY SPIKE +5 5 BAND 1 AFFECTED BY SPIKE +6 6 OVERFLOW/UNDER FLOW +7 7 ON-BOARD PROCESSING ERROR +8 8 SPECTRAL CALIBRATION ERROR +9 9 RADIOMETRIC CALIBRATION ERROR +10 10 MISSING AVHRR DATA +11 11 MISSING IIS DATA +12 12 MISSING SOUNDER DATA +13 13 GQISFLAGQUAL SUMMARY FLAG FOR ALL BANDS +14 14 ON-GROUND PROCESSING ERROR +15 15 INTER-CALIBRATION ERROR IASI/AVHRR +16 16 SPARE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40023.table b/definitions/bufr/tables/0/wmo/35/codetables/40023.table new file mode 100644 index 000000000..2e4cbfb69 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40023.table @@ -0,0 +1,4 @@ +1 1 BAND SEQUENCE (0 = 3KU_1C_3KU, 1 = 2KU_1C_2KU) +2 2 C BAND FREQUENCY (0 = 320 MHZ, 1 = 100 MHZ) +3 3 C BAND STATUS (0 = ON, 1 = OFF) +4 4 KU BAND STATUS (0 = ON, 1 = OFF) diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40024.table b/definitions/bufr/tables/0/wmo/35/codetables/40024.table new file mode 100644 index 000000000..c8421e5af --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40024.table @@ -0,0 +1,5 @@ +0 0 2 MAPS AVAILABLE (6 HOURS APART) +1 1 2 MAPS AVAILABLE (> 6 HOURS APART) +2 2 1 MAP AVAILABLE; DATA EXTRAPOLATED +3 3 NO MAPS USED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40025.table b/definitions/bufr/tables/0/wmo/35/codetables/40025.table new file mode 100644 index 000000000..741430292 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40025.table @@ -0,0 +1,4 @@ +0 0 GOOD +1 1 BAD +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40028.table b/definitions/bufr/tables/0/wmo/35/codetables/40028.table new file mode 100644 index 000000000..e094f29dc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40028.table @@ -0,0 +1,16 @@ +0 0 GOOD DATA +1 1 POSSIBLE SUN GLINT +2 2 POSSIBLE RADIO-FREQUENCY INTERFERENCE +3 3 DEGRADED GEOLOCATION DATA +4 4 DATA CORRECTED FOR WARM LOAD INTRUSION +5 5 SCAN BLANKING ON +6 6 DATA IS MISSING FROM FILE OR UNREADABLE +7 7 UNPHYSICAL BRIGHTNESS TEMPERATURE +8 8 ERROR IN GEOLOCATION DATA +9 9 DATA MISSING IN ONE CHANNEL +10 10 DATA MISSING IN MULTIPLE CHANNELS +11 11 LAT/LON VALUES ARE OUT OF RANGE +12 12 NON-NORMAL STATUS MODES +13 13 DISTANCE TO CORRESPONDING LOW FREQUENCY PIXEL > 7 KM +14 14 RESERVED +15 15 MISSING VALUE (NO QUALITY INFORMATION AVAILABLE) diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40036.table b/definitions/bufr/tables/0/wmo/35/codetables/40036.table new file mode 100644 index 000000000..9a5418e3a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40036.table @@ -0,0 +1,3 @@ +0 0 CLEAR +1 1 CLOUD +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40043.table b/definitions/bufr/tables/0/wmo/35/codetables/40043.table new file mode 100644 index 000000000..859484624 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40043.table @@ -0,0 +1,4 @@ +0 0 THE PLATFORM IS NOT UNDERGOING A MANOEUVRE +1 1 THE PLATFORM IS UNDERGOING A MANOEUVRE, NOMINAL PROCESSING +2 2 THE PLATFORM IS UNDERGOING A MANOEUVRE, NO PROCESSING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40045.table b/definitions/bufr/tables/0/wmo/35/codetables/40045.table new file mode 100644 index 000000000..08b600150 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40045.table @@ -0,0 +1,4 @@ +1 1 CLOUD PRODUCTS RETRIEVED WITH THE CHI-SQUARED METHOD +2 2 CLOUD PRODUCTS RETRIEVED WITH THE CO2-SLICING +3 3 HEIGHT ASSIGNMENT PERFORMED WITH STATISTICAL FIRST GUESS RETRIEVAL +4 4 HEIGHT ASSIGNMENT PERFORMED WITH NWP FORECASTS diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40046.table b/definitions/bufr/tables/0/wmo/35/codetables/40046.table new file mode 100644 index 000000000..31077db10 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40046.table @@ -0,0 +1,5 @@ +0 0 THE IASI IFOV IS CLEAR +1 1 SMALL CLOUD CONTAMINATION POSSIBLE +2 2 THE IASI IFOV IS PARTIALLY COVERED BY CLOUDS +3 3 HIGH OR FULL CLOUD COVERAGE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40047.table b/definitions/bufr/tables/0/wmo/35/codetables/40047.table new file mode 100644 index 000000000..f7f29c7b8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40047.table @@ -0,0 +1,4 @@ +0 0 THE MEASUREMENTS AND SIDE INFORMATION ARE AVAILABLE AND OF GOOD QUALITY FOR L2 PROCESSING +1 1 THE L1C PRODUCTS ARE OF DEGRADED QUALITY ACCORDING TO L1C FLAGS, NO L2 PROCESSING +2 2 QUALITY CONTROL INDICATES THAT THE L1C DATA ARE OF DEGRADED QUALITY (NOT INDICATED BY THE IASI L1C FLAGS), NO L2 PROCESSING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40048.table b/definitions/bufr/tables/0/wmo/35/codetables/40048.table new file mode 100644 index 000000000..ee5d4fe0f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40048.table @@ -0,0 +1,4 @@ +0 0 THE EXPECTED AMSU MEASUREMENTS ARE AVAILABLE, OF GOOD QUALITY AND COLLOCATED WITH IASI FOR PROCESSING +1 1 AMSU-A DATA ARE AVAILABLE BUT OF DEGRADED QUALITY (ACCORDING TO AMSU L1 FLAGS OR QC TESTS) AND NOT USED FOR PROCESSING +2 2 NO COINCIDENT (TIME AND SPACE) AMSU MEASUREMENTS AVAILABLE FOR PROCESSING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40049.table b/definitions/bufr/tables/0/wmo/35/codetables/40049.table new file mode 100644 index 000000000..19d1fe9d8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40049.table @@ -0,0 +1,12 @@ +4 4 IASI CLOUD OPTICAL THICKNESS INDICATES A CLOUD +5 5 IASI CLOUD OPTICAL THICKNESS COMPUTED +6 6 AVHRR HETEROGENEITY TEST INDICATES A CLOUD +7 7 AVHRR HETEROGENEITY TEST EXECUTED +8 8 IASI-AVHRR ANN CLOUD TEST INDICATES A CLOUD +9 9 IASI-AVHRR ANN CLOUD TEST EXECUTED +10 10 AVHRR INTEGRATED CLOUD FRACTION INDICATES A CLOUD +11 11 AVHRR INTEGRATED CLOUD FRACTION ASSESSED +12 12 AMSU CLOUD TEST INDICATES A CLOUD +13 13 AMSU CLOUD TEST EXECUTED +14 14 IASI WINDOW CLOUD TEST INDICATES A CLOUD +15 15 IASI WINDOW CLOUD TEST EXECUTED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40050.table b/definitions/bufr/tables/0/wmo/35/codetables/40050.table new file mode 100644 index 000000000..503ab1443 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40050.table @@ -0,0 +1,3 @@ +5 5 MHS INCLUDED +6 6 AMSU INCLUDED +7 7 IASI INCLUDED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40051.table b/definitions/bufr/tables/0/wmo/35/codetables/40051.table new file mode 100644 index 000000000..60542bc0f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40051.table @@ -0,0 +1,8 @@ +0 0 OPTIMAL ESTIMATION METHODS (OEM) NOT ATTEMPTED +1 1 OEM ABORTED BECAUSE FIRST GUESS RESIDUALS TOO HIGH +2 2 THE MINIMIZATION DID NOT CONVERGE, SOUNDING REJECTED +3 3 THE MINIMIZATION DID NOT CONVERGE, SOUNDING ACCEPTED +4 4 THE MINIMIZATION CONVERGED BUT SOUNDING REJECTED +5 5 THE MINIMIZATION CONVERGED, SOUNDING ACCEPTED +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40052.table b/definitions/bufr/tables/0/wmo/35/codetables/40052.table new file mode 100644 index 000000000..1f48809c0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40052.table @@ -0,0 +1,4 @@ +4 4 SUPERSATURATION CONDITIONS IN THE OEM RETRIEVAL +5 5 SUPERADIABATIC CONDITIONS IN THE OEM RETRIEVAL +6 6 SUPERSATURATION CONDITIONS IN THE FIRST GUESS +7 7 SUPERADIABATIC CONDITIONS IN THE FIRST GUESS diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40054.table b/definitions/bufr/tables/0/wmo/35/codetables/40054.table new file mode 100644 index 000000000..a034bc322 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40054.table @@ -0,0 +1,12 @@ +1 1 AN ERROR HAS BEEN DETECTED +2 2 MESSAGE FROM L1 +3 3 MESSAGE FROM L2 +4 4 MESSAGE FROM ANCILLARY DATA +5 5 MESSAGE FROM FITTING PROCEDURE +6 6 FILE OPENING +7 7 FILE READING +8 8 QUALITY FLAG +9 9 LEVEL 2 FROM LINEAR REGRESSION(F_QUAL), REPORT A PIXEL WHERE L2 ARE NOT FULLY TRUSTED +10 10 EMPTY FIELD OR DATA +11 11 MISSING SURFACE PRESSURE VALUE +12 12 RADIANCE FILTERING diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40055.table b/definitions/bufr/tables/0/wmo/35/codetables/40055.table new file mode 100644 index 000000000..b1ab38dc6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40055.table @@ -0,0 +1,20 @@ +1 1 RADIANCE FILTERING +2 2 POLAR REGIONS +3 3 LOCATION IN THE NIGHT +4 4 NEGATIVE ALTITUDE SURFACE BELOW MEAN SEA LEVEL +5 5 CLOUD COVERED SCENE +6 6 SCENE ABOVE THE SEA +7 7 SCENE ABOVE DESERT +8 8 SKIN TEMPERATURE +9 9 SKIN TEMPERATURE DIFFERENTIAL +10 10 SPECTRAL LINE CONTRAST TOO WEAK +11 11 MAXIMUM NUMBER OF ITERATIONS EXCEEDED +12 12 NEGATIVE PARTIAL COLUMNS +13 13 MATRIX ILL CONDITIONED +14 14 FIT DIVERGED +15 15 ERROR IN GNU SCIENTIFIC LIBRARY (GSL) USAGE +16 16 RESIDUALS “BIASED†+17 17 RESIDUALS “SLOPED†+18 18 RESIDUALS ROOT MEAN SQUARE (RMS) ERROR IS LARGE +19 19 WEIRD AVERAGING KERNELS +20 20 ICE PRESENCE DETECTED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40056.table b/definitions/bufr/tables/0/wmo/35/codetables/40056.table new file mode 100644 index 000000000..f4a31d340 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40056.table @@ -0,0 +1,4 @@ +0 0 USE NOT RECOMMENDED +1 1 USE WITH CAUTION +2 2 BEST QUALITY +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40057.table b/definitions/bufr/tables/0/wmo/35/codetables/40057.table new file mode 100644 index 000000000..c8a50e778 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40057.table @@ -0,0 +1,30 @@ +1 1 AN ERROR HAS BEEN DETECTED +2 2 MESSAGE FROM L1 +3 3 MESSAGE FROM L2 +4 4 MESSAGE FROM ANCILLARY DATA +5 5 MESSAGE FROM FITTING PROCEDURE +6 6 RESERVED +7 7 BAD L1 OR L2 FLAG RAISED +8 8 LEVEL 2 NOT FULLY TRUSTED +9 9 MISSING TEMPERATURE OR HUMIDITY LEVELS IN THE VERTICAL PROFILE +10 10 MISSING SURFACE PRESSURE VALUE +11 11 RADIANCE FILTERING +12 12 POLAR REGIONS +13 13 LOCATION IN THE NIGHT +14 14 NEGATIVE ALTITUDE +15 15 CLOUD COVERED SCENE +16 16 SCENE ABOVE THE SEA +17 17 SCENE ABOVE DESERT +18 18 MISSING SKIN TEMPERATURE +19 19 RETRIEVED SKIN TEMPERATURE TOO DIFFERENT FROM MODEL +20 20 SPECTRAL LINE CONTRAST TOO WEAK +21 21 MAXIMUM NUMBER OF ITERATIONS EXCEEDS +22 22 NEGATIVE PARTIAL COLUMNS +23 23 MATRIX ILL CONDITIONED +24 24 FIT DIVERGED +25 25 ERROR IN GSL USAGE +26 26 RESIDUALS BIASED +27 27 RESIDUALS SLOPED +28 28 RESIDUALS RMS ERROR IS LARGE +29 29 WEIRD AVERAGING KERNELS +30 30 ICE PRESENCE DETECTED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40068.table b/definitions/bufr/tables/0/wmo/35/codetables/40068.table new file mode 100644 index 000000000..0b1484e0b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40068.table @@ -0,0 +1,4 @@ +0 0 VALUES CALCULATED WITH IASI L2 +1 1 PRESSURE AND TEMPERATURE PROFILES MISSING IN IASI L2 DATA; MODEL/FORECAST DATA USED INSTEAD +2 2 BEST QUALITY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/40074.table b/definitions/bufr/tables/0/wmo/35/codetables/40074.table new file mode 100644 index 000000000..c5fa82eef --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/40074.table @@ -0,0 +1,10 @@ +1 1 INCOMPATIBILITY OF A SCAN ANGLE FOR ELECTROENCEPHALOGRAM +2 2 CALIBRATION FAILURE (LIMIT OF BLACK BODY TEMPERATURE REACHED, NOT ENOUGH SOURCES FOR INTERFEROMETRY, ETC.) +3 3 GEOLOCATION EXECUTED TAKING INTO ACCOUNT THE ORIENTATION OF THE SPACECRAFT AND USING THE STAR CATALOGUE +4 4 HIGH LEVEL OF CRYOGENIC SEDIMENT REACHED, REQUIRING OUTGASSING OF THE RADIATION COOLER. SET WHEN NESR LEVEL OF THE ICE COVER THRESHOLD CROSSED +5 5 INTERFEROMETRY PACKAGE FLAG +6 6 GENERAL ACCURACY FLAG +7 7 NOISE PRESENT DURING THE INTERFEROMETRY +8 8 OUTGASSING OF THE RADIATION COOLER +9 9 FLAG PRECEDING THE FIRST 24 HOURS/DAY MARK (ON AS A RULE) +10 10 TELEMETRY PACKAGE FLAG diff --git a/definitions/bufr/tables/0/wmo/35/codetables/4059.table b/definitions/bufr/tables/0/wmo/35/codetables/4059.table new file mode 100644 index 000000000..91fc6f4f9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/4059.table @@ -0,0 +1,5 @@ +1 1 0000 UTC +2 2 0600 UTC +3 3 1200 UTC +4 4 1800 UTC +5 5 OTHER HOURS diff --git a/definitions/bufr/tables/0/wmo/35/codetables/4080.table b/definitions/bufr/tables/0/wmo/35/codetables/4080.table new file mode 100644 index 000000000..84caf2108 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/4080.table @@ -0,0 +1,6 @@ +0 0 SPOT VALUES +1 1 LESS THAN 15 MINUTES +2 2 FROM 15 TO 45 MINUTES +3 3 MORE THAN 45 MINUTES +9 9 DATA NOT AVAILABLE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/42004.table b/definitions/bufr/tables/0/wmo/35/codetables/42004.table new file mode 100644 index 000000000..15a91da16 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/42004.table @@ -0,0 +1,3 @@ +0 0 WAVE DIRECTION RESOLVED +1 1 180-DEGREE AMBIGUITY NOT RESOLVED +15 15 MISSING diff --git a/definitions/bufr/tables/0/wmo/35/codetables/5069.table b/definitions/bufr/tables/0/wmo/35/codetables/5069.table new file mode 100644 index 000000000..e26774762 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/5069.table @@ -0,0 +1,4 @@ +0 0 MIE +1 1 RAYLEIGH +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8001.table b/definitions/bufr/tables/0/wmo/35/codetables/8001.table new file mode 100644 index 000000000..6210da3b3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8001.table @@ -0,0 +1,6 @@ +1 1 SURFACE +2 2 STANDARD LEVEL +3 3 TROPOPAUSE LEVEL +4 4 MAXIMUM WIND LEVEL +5 5 SIGNIFICANT LEVEL, TEMPERATURE AND/OR RELATIVE HUMIDITY +6 6 SIGNIFICANT LEVEL, WIND diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8002.table b/definitions/bufr/tables/0/wmo/35/codetables/8002.table new file mode 100644 index 000000000..6ab4fd72d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8002.table @@ -0,0 +1,19 @@ +0 0 OBSERVING RULES FOR BASE OF LOWEST CLOUD AND CLOUD TYPES OF FM 12 SYNOP AND FM 13 SHIP APPLY +1 1 FIRST NON-CUMULONIMBUS SIGNIFICANT LAYER +2 2 SECOND NON-CUMULONIMBUS SIGNIFICANT LAYER +3 3 THIRD NON-CUMULONIMBUS SIGNIFICANT LAYER +4 4 CUMULONIMBUS LAYER +5 5 CEILING +6 6 CLOUDS NOT DETECTED BELOW THE FOLLOWING HEIGHT(S) +7 7 LOW CLOUD +8 8 MIDDLE CLOUD +9 9 HIGH CLOUD +10 10 CLOUD LAYER WITH BASE BELOW AND TOP ABOVE THE STATION +11 11 CLOUD LAYER WITH BASE AND TOP BELOW THE STATION LEVEL +20 20 NO CLOUDS DETECTED BY THE CLOUD DETECTION SYSTEM +21 21 FIRST INSTRUMENT DETECTED CLOUD LAYER +22 22 SECOND INSTRUMENT DETECTED CLOUD LAYER +23 23 THIRD INSTRUMENT DETECTED CLOUD LAYER +24 24 FOURTH INSTRUMENT DETECTED CLOUD LAYER +62 62 VALUE NOT APPLICABLE +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8003.table b/definitions/bufr/tables/0/wmo/35/codetables/8003.table new file mode 100644 index 000000000..373135140 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8003.table @@ -0,0 +1,12 @@ +0 0 SURFACE +1 1 BASE OF SATELLITE SOUNDING +2 2 CLOUD TOP +3 3 TROPOPAUSE +4 4 PRECIPITABLE WATER +5 5 SOUNDING RADIANCES +6 6 MEAN TEMPERATURES +7 7 OZONE +8 8 LOW CLOUD +9 9 MED CLOUD +10 10 HIGH CLOUD +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8004.table b/definitions/bufr/tables/0/wmo/35/codetables/8004.table new file mode 100644 index 000000000..2a8925eeb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8004.table @@ -0,0 +1,6 @@ +2 2 UNSTEADY (UNS) +3 3 LEVEL FLIGHT, ROUTINE OBSERVATION (LVR) +4 4 LEVEL FLIGHT, HIGHEST WIND ENCOUNTERED (LVW) +5 5 ASCENDING (ASC) +6 6 DESCENDING (DES) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8005.table b/definitions/bufr/tables/0/wmo/35/codetables/8005.table new file mode 100644 index 000000000..587ea9924 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8005.table @@ -0,0 +1,7 @@ +0 0 RESERVED +1 1 STORM CENTRE +2 2 OUTER LIMIT OR EDGE OF STORM +3 3 LOCATION OF MAXIMUM WIND +4 4 LOCATION OF THE STORM IN THE PERTURBED ANALYSIS +5 5 LOCATION OF THE STORM IN THE ANALYSIS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8006.table b/definitions/bufr/tables/0/wmo/35/codetables/8006.table new file mode 100644 index 000000000..9f56c628d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8006.table @@ -0,0 +1,8 @@ +1 1 SURFACE +2 2 STANDARD LEVEL +3 3 TROPOPAUSE LEVEL +4 4 PROMINENT MAXIMUM LEVEL +5 5 PROMINENT MINIMUM LEVEL +6 6 MINIMUM PRESSURE LEVEL +7 7 RESERVED +8 8 LEVEL OF UNDETERMINED SIGNIFICANCE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8007.table b/definitions/bufr/tables/0/wmo/35/codetables/8007.table new file mode 100644 index 000000000..3e4d2cc3c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8007.table @@ -0,0 +1,5 @@ +0 0 POINT +1 1 LINE +2 2 AREA +3 3 VOLUME +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8008.table b/definitions/bufr/tables/0/wmo/35/codetables/8008.table new file mode 100644 index 000000000..2714b5aa2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8008.table @@ -0,0 +1,8 @@ +1 1 SURFACE +2 2 STANDARD LEVEL +3 3 TROPOPAUSE LEVEL +4 4 LEVEL OF BETA RADIATION MAXIMUM +5 5 LEVEL OF GAMMA RADIATION MAXIMUM +6 6 MINIMUM PRESSURE LEVEL +7 7 RESERVED +8 8 LEVEL OF UNDETERMINED SIGNIFICANCE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8009.table b/definitions/bufr/tables/0/wmo/35/codetables/8009.table new file mode 100644 index 000000000..b03398230 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8009.table @@ -0,0 +1,16 @@ +0 0 LEVEL FLIGHT, ROUTINE OBSERVATION, UNSTEADY +1 1 LEVEL FLIGHT, HIGHEST WIND ENCOUNTERED, UNSTEADY +2 2 UNSTEADY (UNS) +3 3 LEVEL FLIGHT, ROUTINE OBSERVATION (LVR) +4 4 LEVEL FLIGHT, HIGHEST WIND ENCOUNTERED (LVW) +5 5 ASCENDING (ASC) +6 6 DESCENDING (DES) +7 7 ASCENDING, OBSERVATION INTERVALS SELECTED BY TIME INCREMENTS +8 8 ASCENDING, OBSERVATION INTERVALS SELECTED BY TIME INCREMENTS, UNSTEADY +9 9 ASCENDING, OBSERVATION INTERVALS SELECTED BY PRESSURE INCREMENTS +10 10 ASCENDING, OBSERVATION INTERVALS SELECTED BY PRESSURE INCREMENTS, UNSTEADY +11 11 DESCENDING, OBSERVATION INTERVALS SELECTED BY TIME INCREMENTS +12 12 DESCENDING, OBSERVATION INTERVALS SELECTED BY TIME INCREMENTS, UNSTEADY +13 13 DESCENDING, OBSERVATION INTERVALS SELECTED BY PRESSURE INCREMENTS +14 14 DESCENDING, OBSERVATION INTERVALS SELECTED BY PRESSURE INCREMENTS, UNSTEADY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8010.table b/definitions/bufr/tables/0/wmo/35/codetables/8010.table new file mode 100644 index 000000000..3c5fe71f3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8010.table @@ -0,0 +1,14 @@ +0 0 RESERVED +1 1 BARE SOIL +2 2 BARE ROCK +3 3 LAND GRASS COVER +4 4 WATER (LAKE, SEA) +5 5 FLOOD WATER UNDERNEATH +6 6 SNOW +7 7 ICE +8 8 RUNWAY OR ROAD +9 9 SHIP OR PLATFORM DECK IN STEEL +10 10 SHIP OR PLATFORM DECK IN WOOD +11 11 SHIP OR PLATFORM DECK PARTLY COVERED WITH RUBBER MAT +12 12 BUILDING ROOF +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8011.table b/definitions/bufr/tables/0/wmo/35/codetables/8011.table new file mode 100644 index 000000000..e7a822114 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8011.table @@ -0,0 +1,27 @@ +0 0 QUASI-STATIONARY FRONT AT THE SURFACE +1 1 QUASI-STATIONARY FRONT ABOVE THE SURFACE +2 2 WARM FRONT AT THE SURFACE +3 3 WARM FRONT ABOVE THE SURFACE +4 4 COLD FRONT AT THE SURFACE +5 5 COLD FRONT ABOVE THE SURFACE +6 6 OCCLUSION +7 7 INSTABILITY LINE +8 8 INTERTROPICAL FRONT +9 9 CONVERGENCE LINE +10 10 JET STREAM +11 11 CLOUD CLEAR +12 12 CLOUD +13 13 TURBULENCE +14 14 STORM +15 15 AIRFRAME ICING +16 16 PHENOMENON +17 17 VOLCANO +18 18 ATMOSPHERICS +19 19 RESERVED +20 20 SPECIAL CLOUDS +21 21 THUNDERSTORM +22 22 TROPICAL CYCLONE +23 23 MOUNTAIN WAVE +24 24 DUSTSTORM +25 25 SANDSTORM +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8012.table b/definitions/bufr/tables/0/wmo/35/codetables/8012.table new file mode 100644 index 000000000..769bc0bb7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8012.table @@ -0,0 +1,4 @@ +0 0 LAND +1 1 SEA +2 2 COAST +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8013.table b/definitions/bufr/tables/0/wmo/35/codetables/8013.table new file mode 100644 index 000000000..e18d2959b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8013.table @@ -0,0 +1,4 @@ +0 0 NIGHT +1 1 DAY +2 2 TWILIGHT +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8014.table b/definitions/bufr/tables/0/wmo/35/codetables/8014.table new file mode 100644 index 000000000..e6f2e46b6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8014.table @@ -0,0 +1,10 @@ +0 0 10-MINUTE MEAN VALUE - NORMAL VALUE +1 1 10-MINUTE MEAN VALUE - ABOVE THE UPPER LIMIT FOR ASSESSMENTS OF RVR (P) +2 2 10-MINUTE MEAN VALUE - BELOW THE LOWER LIMIT FOR ASSESSMENTS OF RVR (M) +3 3 ONE-MINUTE MINIMUM VALUE - NORMAL VALUE +4 4 ONE-MINUTE MINIMUM VALUE - ABOVE THE UPPER LIMIT FOR ASSESSMENTS OF RVR (P) +5 5 ONE-MINUTE MINIMUM VALUE - BELOW THE LOWER LIMIT FOR ASSESSMENTS OF RVR (M) +6 6 ONE-MINUTE MAXIMUM VALUE - NORMAL VALUE +7 7 ONE-MINUTE MAXIMUM VALUE - ABOVE THE UPPER LIMIT FOR ASSESSMENTS OF RVR (P) +8 8 ONE-MINUTE MAXIMUM VALUE - BELOW THE LOWER LIMIT FOR ASSESSMENTS OF RVR (M) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8015.table b/definitions/bufr/tables/0/wmo/35/codetables/8015.table new file mode 100644 index 000000000..6830b9591 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8015.table @@ -0,0 +1,4 @@ +0 0 SINGLE SENSOR +1 1 PRIMARY SENSOR +2 2 SECONDARY SENSOR (BACKUP) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8016.table b/definitions/bufr/tables/0/wmo/35/codetables/8016.table new file mode 100644 index 000000000..6b8a1fa66 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8016.table @@ -0,0 +1,5 @@ +0 0 NOSIG +1 1 BECMG +2 2 TEMPO +3 3 FM +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8017.table b/definitions/bufr/tables/0/wmo/35/codetables/8017.table new file mode 100644 index 000000000..b3156f87e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8017.table @@ -0,0 +1,4 @@ +0 0 FM +1 1 TL +2 2 AT +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8018.table b/definitions/bufr/tables/0/wmo/35/codetables/8018.table new file mode 100644 index 000000000..f91e554ea --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8018.table @@ -0,0 +1,4 @@ +1 1 LAND IS PRESENT +2 2 SURFACE ICE MAP INDICATES ICE IS PRESENT +11 11 ICE MAP DATA NOT AVAILABLE +12 12 ATTENUATION MAP DATA NOT AVAILABLE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8019.table b/definitions/bufr/tables/0/wmo/35/codetables/8019.table new file mode 100644 index 000000000..4ed413301 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8019.table @@ -0,0 +1,8 @@ +0 0 RESERVED +1 1 ATS (AIR TRAFFIC SERVICE) UNIT SERVING FIR (FLIGHT INFORMATION REGION) +2 2 FIR (FLIGHT INFORMATION REGION) +3 3 UIR (UPPER FLIGHT INFORMATION REGION) +4 4 CTA (CONTROL AREA) +5 5 VAAC (VOLCANIC ASH ADVISORY CENTRE) +6 6 MWO (METEOROLOGICAL WATCH OFFICE) ISSUING SIGMET +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8021.table b/definitions/bufr/tables/0/wmo/35/codetables/8021.table new file mode 100644 index 000000000..20fd7936f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8021.table @@ -0,0 +1,32 @@ +0 0 RESERVED +1 1 TIME SERIES +2 2 TIME AVERAGED (SEE NOTE 1) +3 3 ACCUMULATED +4 4 FORECAST +5 5 FORECAST TIME SERIES +6 6 FORECAST TIME AVERAGED +7 7 FORECAST ACCUMULATED +8 8 ENSEMBLE MEAN (SEE NOTE 2) +9 9 ENSEMBLE MEAN TIME SERIES +10 10 ENSEMBLE MEAN TIME AVERAGED +11 11 ENSEMBLE MEAN ACCUMULATED +12 12 ENSEMBLE MEAN FORECAST +13 13 ENSEMBLE MEAN FORECAST TIME SERIES +14 14 ENSEMBLE MEAN FORECAST TIME AVERAGED +15 15 ENSEMBLE MEAN FORECAST ACCUMULATED +16 16 ANALYSIS +17 17 START OF PHENOMENON +18 18 RADIOSONDE LAUNCH TIME +19 19 START OF ORBIT +20 20 END OF ORBIT +21 21 TIME OF ASCENDING NODE +22 22 TIME OF OCCURRENCE OF WIND SHIFT +23 23 MONITORING PERIOD +24 24 AGREED TIME LIMIT FOR REPORT RECEPTION +25 25 NOMINAL REPORTING TIME +26 26 TIME OF LAST KNOWN POSITION +27 27 FIRST GUESS +28 28 START OF SCAN +29 29 END OF SCAN OR TIME OF ENDING +30 30 TIME OF OCCURRENCE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8023.table b/definitions/bufr/tables/0/wmo/35/codetables/8023.table new file mode 100644 index 000000000..2125e23cf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8023.table @@ -0,0 +1,14 @@ +2 2 MAXIMUM VALUE +3 3 MINIMUM VALUE +4 4 MEAN VALUE +5 5 MEDIAN VALUE +6 6 MODAL VALUE +7 7 MEAN ABSOLUTE ERROR +8 8 RESERVED +9 9 BEST ESTIMATE OF STANDARD DEVIATION (N-1) +10 10 STANDARD DEVIATION (N) +11 11 HARMONIC MEAN +12 12 ROOT-MEAN-SQUARE VECTOR ERROR +13 13 ROOT-MEAN-SQUARE +32 32 VECTOR MEAN +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8024.table b/definitions/bufr/tables/0/wmo/35/codetables/8024.table new file mode 100644 index 000000000..377858bb1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8024.table @@ -0,0 +1,12 @@ +2 2 OBSERVED MINUS MAXIMUM +3 3 OBSERVED MINUS MINIMUM +4 4 OBSERVED MINUS MEAN +5 5 OBSERVED MINUS MEDIAN +6 6 OBSERVED MINUS MODE +11 11 OBSERVED MINUS CLIMATOLOGY (ANOMALY) +12 12 OBSERVED MINUS ANALYSED VALUE +13 13 OBSERVED MINUS INITIALIZED ANALYSED VALUE +14 14 OBSERVED MINUS FORECAST VALUE +21 21 OBSERVED MINUS INTERPOLATED VALUE +22 22 OBSERVED MINUS HYDROSTATICALLY CALCULATED VALUE +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8025.table b/definitions/bufr/tables/0/wmo/35/codetables/8025.table new file mode 100644 index 000000000..1d88fa54f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8025.table @@ -0,0 +1,5 @@ +0 0 UNIVERSAL TIME COORDINATED (UTC) MINUS LOCAL STANDARD TIME (LST) +1 1 LOCAL STANDARD TIME +2 2 UNIVERSAL TIME COORDINATED (UTC) MINUS SATELLITE CLOCK +5 5 TIME DIFFERENCE FROM EDGE OF PROCESSING SEGMENT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8026.table b/definitions/bufr/tables/0/wmo/35/codetables/8026.table new file mode 100644 index 000000000..9bcef7864 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8026.table @@ -0,0 +1,5 @@ +0 0 AVERAGING KERNEL MATRIX +1 1 CORRELATION MATRIX (C) +2 2 LOWER TRIANGULAR CORRELATION MATRIX SQUARE ROOT (L FROM C=LLT) +3 3 INVERSE OF LOWER TRIANGULAR CORRELATION MATRIX SQUARE ROOT (L-1) +63 63 MISSING OR UNDEFINED SIGNIFICANCE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8029.table b/definitions/bufr/tables/0/wmo/35/codetables/8029.table new file mode 100644 index 000000000..d0eae5a57 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8029.table @@ -0,0 +1,16 @@ +0 0 OPEN OCEAN OR SEMI-ENCLOSED SEA +1 1 ENCLOSED SEA OR LAKE +2 2 CONTINENTAL ICE +3 3 LAND +4 4 LOW INLAND (BELOW SEA LEVEL) +5 5 MIX OF LAND AND WATER +6 6 MIX OF LAND AND LOW INLAND +11 11 RIVER +12 12 LAKE +13 13 SEA +14 14 GLACIER +15 15 URBAN LAND +16 16 RURAL LAND +17 17 SUBURBAN LAND +18 18 SEA ICE +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8032.table b/definitions/bufr/tables/0/wmo/35/codetables/8032.table new file mode 100644 index 000000000..712400dd1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8032.table @@ -0,0 +1,7 @@ +0 0 ROUTINE OPERATION +1 1 EVENT TRIGGERED BY STORM SURGE +2 2 EVENT TRIGGERED BY TSUNAMI +3 3 EVENT TRIGGERED MANUALLY +4 4 INSTALLATION TESTING +5 5 MAINTENANCE TESTING +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8033.table b/definitions/bufr/tables/0/wmo/35/codetables/8033.table new file mode 100644 index 000000000..1c695372b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8033.table @@ -0,0 +1,6 @@ +0 0 RESERVED +1 1 PERCENTAGE CONFIDENCE CALCULATED USING CLOUD FRACTION +2 2 PERCENTAGE CONFIDENCE CALCULATED USING STANDARD DEVIATION OF TEMPERATURE +3 3 PERCENTAGE CONFIDENCE CALCULATED USING PROBABILITY OF CLOUD CONTAMINATION +4 4 PERCENTAGE CONFIDENCE CALCULATED USING NORMALITY OF DISTRIBUTION +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8034.table b/definitions/bufr/tables/0/wmo/35/codetables/8034.table new file mode 100644 index 000000000..879f27400 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8034.table @@ -0,0 +1,10 @@ +0 0 SECONDARY SAMPLING: AVERAGED +1 1 SECONDARY SAMPLING: DISCRETE +2 2 SECONDARY SAMPLING: MIXED +3 3 NEAR-SURFACE SAMPLING: AVERAGED, PUMPED +4 4 NEAR-SURFACE SAMPLING: AVERAGED, UNPUMPED +5 5 NEAR-SURFACE SAMPLING: DISCRETE, PUMPED +6 6 NEAR-SURFACE SAMPLING: DISCRETE, UNPUMPED +7 7 NEAR-SURFACE SAMPLING: MIXED, PUMPED +8 8 NEAR-SURFACE SAMPLING: MIXED, UNPUMPED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8035.table b/definitions/bufr/tables/0/wmo/35/codetables/8035.table new file mode 100644 index 000000000..3d641fd15 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8035.table @@ -0,0 +1,8 @@ +0 0 GLOBAL +1 1 REGIONAL +2 2 NATIONAL +3 3 SPECIAL +4 4 BILATERAL +5 5 RESERVED +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8036.table b/definitions/bufr/tables/0/wmo/35/codetables/8036.table new file mode 100644 index 000000000..6436989e6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8036.table @@ -0,0 +1,8 @@ +0 0 WMO SECRETARIAT +1 1 WMO +2 2 RSMC +3 3 NMC +4 4 RTH +5 5 OBSERVING SITE +6 6 OTHER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8037.table b/definitions/bufr/tables/0/wmo/35/codetables/8037.table new file mode 100644 index 000000000..38cbe9a53 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8037.table @@ -0,0 +1,4 @@ +0 0 MANUFACTURER’S BASELINE CHECK UNIT +1 1 WEATHER SCREEN +2 2 GRUAN STANDARD HUMIDITY CHAMBER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8038.table b/definitions/bufr/tables/0/wmo/35/codetables/8038.table new file mode 100644 index 000000000..aa4d7b77b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8038.table @@ -0,0 +1,3 @@ +0 0 VERIFIED INSTRUMENT READING +1 1 REFERENCE INSTRUMENT READING +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8039.table b/definitions/bufr/tables/0/wmo/35/codetables/8039.table new file mode 100644 index 000000000..f4403c63d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8039.table @@ -0,0 +1,8 @@ +0 0 ISSUE TIME OF FORECAST +1 1 TIME OF COMMENCEMENT OF PERIOD OF THE FORECAST +2 2 TIME OF ENDING OF PERIOD OF THE FORECAST +3 3 FORECAST TIME OF MAXIMUM TEMPERATURE +4 4 FORECAST TIME OF MINIMUM TEMPERATURE +5 5 TIME OF BEGINNING OF THE FORECAST CHANGE +6 6 TIME OF ENDING OF THE FORECAST CHANGE +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8040.table b/definitions/bufr/tables/0/wmo/35/codetables/8040.table new file mode 100644 index 000000000..42c5af0e5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8040.table @@ -0,0 +1,49 @@ +0 0 HIGH-RESOLUTION DATA SAMPLE +1 1 WITHIN 20 HPA OF SURFACE +2 2 PRESSURE LESS THAN 10 HPA (I.E., 9, 8, 7, ETC.) WHEN NO OTHER REASON APPLIES +3 3 BASE PRESSURE LEVEL FOR STABILITY INDEX +4 4 BEGIN DOUBTFUL TEMPERATURE, HEIGHT DATA +5 5 BEGIN MISSING DATA (ALL ELEMENTS) +6 6 BEGIN MISSING RELATIVE HUMIDITY DATA +7 7 BEGIN MISSING TEMPERATURE DATA +8 8 HIGHEST LEVEL REACHED BEFORE BALLOON DESCENT BECAUSE OF ICING OR TURBULENCE +9 9 END DOUBTFUL TEMPERATURE, HEIGHT DATA +10 10 END MISSING DATA (ALL ELEMENTS) +11 11 END MISSING RELATIVE HUMIDITY DATA +12 12 END MISSING TEMPERATURE DATA +13 13 ZERO DEGREES CELSIUS CROSSING(S) FOR RADAT +14 14 STANDARD PRESSURE LEVEL +15 15 OPERATOR-ADDED LEVEL +16 16 OPERATOR-DELETED LEVEL +17 17 BALLOON RE-ASCENDED BEYOND PREVIOUS HIGHEST ASCENT LEVEL +18 18 SIGNIFICANT RELATIVE HUMIDITY LEVEL +19 19 RELATIVE HUMIDITY LEVEL SELECTION TERMINATED +20 20 SURFACE LEVEL +21 21 SIGNIFICANT TEMPERATURE LEVEL +22 22 MANDATORY TEMPERATURE LEVEL +23 23 FLIGHT TERMINATION LEVEL +24 24 TROPOPAUSE(S) +25 25 AIRCRAFT REPORT +26 26 INTERPOLATED (GENERATED) LEVEL +27 27 MANDATORY WIND LEVEL +28 28 SIGNIFICANT WIND LEVEL +29 29 MAXIMUM WIND LEVEL +30 30 INCREMENTAL WIND LEVEL (FIXED REGIONAL) +31 31 INCREMENTAL HEIGHT LEVEL (GENERATED) +32 32 WIND TERMINATION LEVEL +33 33 PRESSURE 100 TO 110 HPA, WHEN NO OTHER REASON APPLIES +34 34 FREEZING LEVEL BASE +35 35 FREEZING LEVEL TOP +36 36 FLIGHT LEVEL BASE +37 37 FLIGHT LEVEL TOP +38 38 TOP OF WIND SOUNDING +39 39 BOTTOM OF WIND SOUNDING +40 40 SIGNIFICANT THERMODYNAMIC LEVEL (INVERSION) +41 41 SIGNIFICANT RELATIVE HUMIDITY LEVEL (ACCORDING TO NCDC CRITERIA) +42 42 SIGNIFICANT TEMPERATURE LEVEL (ACCORDING TO NCDC) +43 43 BEGIN MISSING WIND DATA +44 44 END MISSING WIND DATA +60 60 LEVEL OF 80-KNOT ISOTACH ABOVE JET +61 61 LEVEL OF 80-KNOT ISOTACH BELOW JET +62 62 OTHER +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8041.table b/definitions/bufr/tables/0/wmo/35/codetables/8041.table new file mode 100644 index 000000000..1f48fbedc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8041.table @@ -0,0 +1,15 @@ +0 0 PARENT SITE +1 1 OBSERVATION SITE +2 2 BALLOON MANUFACTURE DATE +3 3 BALLOON LAUNCH POINT +4 4 SURFACE OBSERVATION +5 5 SURFACE OBSERVATION DISPLACEMENT FROM LAUNCH POINT +6 6 FLIGHT LEVEL OBSERVATION +7 7 FLIGHT LEVEL TERMINATION POINT +8 8 IFR CEILING AND VISIBILITY +9 9 MOUNTAIN OBSCURATION +10 10 STRONG SURFACE WIND +11 11 FREEZING LEVEL +12 12 MULTIPLE FREEZING LEVEL +13 13 INSTRUMENT MANUFACTURE DATE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8042.table b/definitions/bufr/tables/0/wmo/35/codetables/8042.table new file mode 100644 index 000000000..c71709a4c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8042.table @@ -0,0 +1,17 @@ +1 1 SURFACE +2 2 STANDARD LEVEL +3 3 TROPOPAUSE LEVEL +4 4 MAXIMUM WIND LEVEL +5 5 SIGNIFICANT TEMPERATURE LEVEL +6 6 SIGNIFICANT HUMIDITY LEVEL +7 7 SIGNIFICANT WIND LEVEL +8 8 BEGINNING OF MISSING TEMPERATURE DATA +9 9 END OF MISSING TEMPERATURE DATA +10 10 BEGINNING OF MISSING HUMIDITY DATA +11 11 END OF MISSING HUMIDITY DATA +12 12 BEGINNING OF MISSING WIND DATA +13 13 END OF MISSING WIND DATA +14 14 TOP OF WIND SOUNDING +15 15 LEVEL DETERMINED BY REGIONAL DECISION +16 16 FREEZING LEVEL +17 17 PRESSURE LEVEL ORIGINALLY INDICATED BY HEIGHT AS THE VERTICAL COORDINATE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8043.table b/definitions/bufr/tables/0/wmo/35/codetables/8043.table new file mode 100644 index 000000000..249fd0e55 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8043.table @@ -0,0 +1,17 @@ +0 0 OZONE +1 1 WATER VAPOUR +2 2 METHANE +3 3 CARBON DIOXIDE +4 4 CARBON MONOXIDE +5 5 NITROGEN DIOXIDE +6 6 NITROUS OXIDE +7 7 FORMALDEHYDE +8 8 SULPHUR DIOXIDE +25 25 PARTICULATE MATTER < 1.0 MICRONS +26 26 PARTICULATE MATTER < 2.5 MICRONS +27 27 PARTICULATE MATTER < 10 MICRONS +28 28 AEROSOLS (GENERIC) +29 29 SMOKE (GENERIC) +30 30 CRUSTAL MATERIAL (GENERIC DUST) +31 31 VOLCANIC ASH +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8050.table b/definitions/bufr/tables/0/wmo/35/codetables/8050.table new file mode 100644 index 000000000..4b401f1d2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8050.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 PRESSURE +2 2 TEMPERATURE +3 3 EXTREME TEMPERATURE +4 4 VAPOUR PRESSURE +5 5 PRECIPITATION +6 6 SUNSHINE DURATION +7 7 MAXIMUM TEMPERATURE +8 8 MINIMUM TEMPERATURE +9 9 WIND +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8051.table b/definitions/bufr/tables/0/wmo/35/codetables/8051.table new file mode 100644 index 000000000..5249fe6a2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8051.table @@ -0,0 +1,7 @@ +1 1 PRESSURE +2 2 TEMPERATURE +3 3 EXTREME TEMPERATURE +4 4 VAPOUR PRESSURE +5 5 PRECIPITATION +6 6 SUNSHINE DURATION +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8052.table b/definitions/bufr/tables/0/wmo/35/codetables/8052.table new file mode 100644 index 000000000..46dcbbe21 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8052.table @@ -0,0 +1,26 @@ +0 0 MEAN WIND SPEED OVER A 10-MINUTE PERIOD OBSERVED OR RECORDED EQUAL TO OR MORE THAN 10 M S-1 OR 20 KNOTS +1 1 MEAN WIND SPEED OVER A 10-MINUTE PERIOD OBSERVED OR RECORDED EQUAL TO OR MORE THAN 20 M S-1 OR 40 KNOTS +2 2 MEAN WIND SPEED OVER A 10-MINUTE PERIOD OBSERVED OR RECORDED EQUAL TO OR MORE THAN 30 M S-1 OR 60 KNOTS +3 3 MAXIMUM TEMPERATURE LESS THAN 273.15 K +4 4 MAXIMUM TEMPERATURE EQUAL TO OR MORE THAN 298.15 K +5 5 MAXIMUM TEMPERATURE EQUAL TO OR MORE THAN 303.15 K +6 6 MAXIMUM TEMPERATURE EQUAL TO OR MORE THAN 308.15 K +7 7 MAXIMUM TEMPERATURE EQUAL TO OR MORE THAN 313.15 K +8 8 MINIMUM TEMPERATURE LESS THAN 273.15 K +9 9 MAXIMUM TEMPERATURE EQUAL TO OR MORE THAN 273.15 K +10 10 PRECIPITATION EQUAL TO OR MORE THAN 1.0 KG M-2 +11 11 PRECIPITATION EQUAL TO OR MORE THAN 5.0 KG M-2 +12 12 PRECIPITATION EQUAL TO OR MORE THAN 10.0 KG M-2 +13 13 PRECIPITATION EQUAL TO OR MORE THAN 50.0 KG M-2 +14 14 PRECIPITATION EQUAL TO OR MORE THAN 100.0 KG M-2 +15 15 PRECIPITATION EQUAL TO OR MORE THAN 150.0 KG M-2 +16 16 SNOW DEPTH MORE THAN 0.00 M +17 17 SNOW DEPTH MORE THAN 0.01 M +18 18 SNOW DEPTH MORE THAN 0.10 M +19 19 SNOW DEPTH MORE THAN 0.50 M +20 20 HORIZONTAL VISIBILITY LESS THAN 50 M +21 21 HORIZONTAL VISIBILITY LESS THAN 100 M +22 22 HORIZONTAL VISIBILITY LESS THAN 1000 M +23 23 HAIL +24 24 THUNDERSTORM +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8053.table b/definitions/bufr/tables/0/wmo/35/codetables/8053.table new file mode 100644 index 000000000..cbc11c9a7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8053.table @@ -0,0 +1,4 @@ +0 0 VALUE OCCURRED ON ONLY ONE DAY IN THE MONTH +1 1 VALUE OCCURRED ON MORE THAN ONE DAY IN THE MONTH +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8054.table b/definitions/bufr/tables/0/wmo/35/codetables/8054.table new file mode 100644 index 000000000..51b908e08 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8054.table @@ -0,0 +1,3 @@ +0 0 WIND SPEED OR GUST IS AS REPORTED +1 1 WIND SPEED IS GREATER THAN THAT REPORTED (P IN METAR/TAF/SPECI) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8060.table b/definitions/bufr/tables/0/wmo/35/codetables/8060.table new file mode 100644 index 000000000..2865fece5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8060.table @@ -0,0 +1,8 @@ +0 0 RESERVED +1 1 RANGE +2 2 AZIMUTH +3 3 HORIZONTAL +4 4 VERTICAL +5 5 NORTH/SOUTH +6 6 EAST/WEST +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8065.table b/definitions/bufr/tables/0/wmo/35/codetables/8065.table new file mode 100644 index 000000000..69b80ea33 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8065.table @@ -0,0 +1,4 @@ +0 0 NO SUN-GLINT +1 1 SUN-GLINT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8066.table b/definitions/bufr/tables/0/wmo/35/codetables/8066.table new file mode 100644 index 000000000..fcc0252c9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8066.table @@ -0,0 +1,4 @@ +0 0 OPAQUE +1 1 SEMI-TRANSPARENT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8070.table b/definitions/bufr/tables/0/wmo/35/codetables/8070.table new file mode 100644 index 000000000..f58061757 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8070.table @@ -0,0 +1,6 @@ +0 0 RESERVED +1 1 RESERVED +2 2 EARTH LOCATED INSTRUMENT COUNTS, CALIBRATION COEFFICIENTS AND HOUSEKEEPING (LEVEL 1B) +3 3 EARTH LOCATED CALIBRATED RADIANCES (LEVEL 1C) +4 4 MAPPED TO A COMMON FOOTPRINT, EARTH LOCATED CALIBRATED RADIANCES (LEVEL 1D) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8072.table b/definitions/bufr/tables/0/wmo/35/codetables/8072.table new file mode 100644 index 000000000..7dcd9611b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8072.table @@ -0,0 +1,6 @@ +0 0 MIXED +1 1 CLEAR +2 2 CLOUDY +3 3 PROBABLY CLEAR +4 4 PROBABLY CLOUDY +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8074.table b/definitions/bufr/tables/0/wmo/35/codetables/8074.table new file mode 100644 index 000000000..5778e6552 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8074.table @@ -0,0 +1,4 @@ +0 0 OPEN OCEAN OR SEMI-ENCLOSED SEA +1 1 NON-OCEAN LIKE +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8075.table b/definitions/bufr/tables/0/wmo/35/codetables/8075.table new file mode 100644 index 000000000..5f5e3a24c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8075.table @@ -0,0 +1,4 @@ +0 0 ASCENDING ORBIT +1 1 DESCENDING ORBIT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8076.table b/definitions/bufr/tables/0/wmo/35/codetables/8076.table new file mode 100644 index 000000000..431496fbc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8076.table @@ -0,0 +1,9 @@ +0 0 KU +1 1 C +2 2 LONG-WAVE INFRARED +3 3 MEDIUM-WAVE INFRARED +4 4 SHORT-WAVE INFRARED +5 5 M +6 6 I +7 7 DAY/NIGHT +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8077.table b/definitions/bufr/tables/0/wmo/35/codetables/8077.table new file mode 100644 index 000000000..2c7902bd7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8077.table @@ -0,0 +1,7 @@ +0 0 LAND +1 1 SEA +2 2 COASTAL +3 3 OPEN OCEAN OR SEMI-ENCLOSED SEA +4 4 ENCLOSED SEA OR LAKE +5 5 CONTINENTAL ICE +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8079.table b/definitions/bufr/tables/0/wmo/35/codetables/8079.table new file mode 100644 index 000000000..735a09c37 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8079.table @@ -0,0 +1,9 @@ +0 0 NORMAL ISSUE +1 1 CORRECTION TO A PREVIOUSLY ISSUED PRODUCT (COR) +2 2 AMENDMENT TO A PREVIOUSLY ISSUED PRODUCT (AMD) +3 3 CORRECTION TO A PREVIOUSLY ISSUED AMENDED PRODUCT (COR AMD) +4 4 CANCELLATION OF A PREVIOUSLY ISSUED PRODUCT (CNL) +5 5 NO PRODUCT AVAILABLE (NIL) +6 6 SPECIAL REPORT (SPECI) +7 7 CORRECTED SPECIAL REPORT (SPECI COR) +15 15 MISSING OR NOT APPLICABLE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8080.table b/definitions/bufr/tables/0/wmo/35/codetables/8080.table new file mode 100644 index 000000000..1a0f3a5e5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8080.table @@ -0,0 +1,14 @@ +0 0 TOTAL WATER PRESSURE PROFILE +1 1 TOTAL WATER TEMPERATURE PROFILE +2 2 TOTAL WATER SALINITY PROFILE +3 3 TOTAL WATER CONDUCTIVITY PROFILE +4 4 TOTAL WATER DEPTH +10 10 WATER PRESSURE AT A LEVEL +11 11 WATER TEMPERATURE AT A LEVEL +12 12 SALINITY AT A LEVEL +13 13 WATER DEPTH AT A LEVEL +14 14 SEA/WATER CURRENT SPEED AT A LEVEL +15 15 SEA/WATER CURRENT DIRECTION AT A LEVEL +16 16 DISSOLVED OXYGEN AT A LEVEL +20 20 POSITION +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8081.table b/definitions/bufr/tables/0/wmo/35/codetables/8081.table new file mode 100644 index 000000000..75d288732 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8081.table @@ -0,0 +1,5 @@ +0 0 SENSOR +1 1 TRANSMITTER +2 2 RECEIVER +3 3 OBSERVING PLATFORM +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8082.table b/definitions/bufr/tables/0/wmo/35/codetables/8082.table new file mode 100644 index 000000000..1f24db866 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8082.table @@ -0,0 +1,3 @@ +0 0 SENSOR HEIGHT IS NOT MODIFIED +1 1 SENSOR HEIGHT IS MODIFIED TO STANDARD LEVEL +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8083.table b/definitions/bufr/tables/0/wmo/35/codetables/8083.table new file mode 100644 index 000000000..174ef3428 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8083.table @@ -0,0 +1,9 @@ +1 1 ADJUSTED TO OR WITH RESPECT TO REPRESENTATIVE HEIGHT OF SENSOR ABOVE LOCAL GROUND (OR DECK OF MARINE PLATFORM) +2 2 ADJUSTED TO OR WITH RESPECT TO REPRESENTATIVE HEIGHT OF SENSOR ABOVE WATER SURFACE +3 3 ADJUSTED WITH RESPECT TO STANDARD SURFACE ROUGHNESS +4 4 ADJUSTED WITH RESPECT TO WIND SPEED +5 5 ADJUSTED WITH RESPECT TO TEMPERATURE +6 6 ADJUSTED WITH RESPECT TO PRESSURE +7 7 ADJUSTED WITH RESPECT TO HUMIDITY +8 8 ADJUSTED WITH RESPECT TO EVAPORATION +9 9 ADJUSTED WITH RESPECT TO WETTING LOSSES diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8085.table b/definitions/bufr/tables/0/wmo/35/codetables/8085.table new file mode 100644 index 000000000..79e1a3d90 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8085.table @@ -0,0 +1,4 @@ +0 0 FORE BEAM +1 1 MID BEAM +2 2 AFT BEAM +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8086.table b/definitions/bufr/tables/0/wmo/35/codetables/8086.table new file mode 100644 index 000000000..a9ecd0351 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8086.table @@ -0,0 +1,11 @@ +1 1 MODEL GROUND SURFACE +2 2 STANDARD LEVEL +3 3 TROPOPAUSE LEVEL +4 4 MAXIMUM WIND LEVEL +5 5 SIGNIFICANT TEMPERATURE LEVEL +6 6 SIGNIFICANT HUMIDITY LEVEL +7 7 SIGNIFICANT WIND LEVEL +8 8 VERTICALLY INTERPOLATED LEVEL (THIS SHOULD BE SET TO 1 FOR POINTS ON THE VERTICAL PROFILE THAT FALL BETWEEN THE MODEL'S NATIVE VERTICAL LEVELS.) +9 9 VIRTUAL STATION HEIGHT +10 10 LEVEL OF BEST FIT +11 11 RESERVED diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8087.table b/definitions/bufr/tables/0/wmo/35/codetables/8087.table new file mode 100644 index 000000000..d556c98de --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8087.table @@ -0,0 +1,5 @@ +0 0 UPPER LEFT +1 1 UPPER RIGHT +2 2 LOWER RIGHT +3 3 LOWER LEFT +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8088.table b/definitions/bufr/tables/0/wmo/35/codetables/8088.table new file mode 100644 index 000000000..d6f51be70 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8088.table @@ -0,0 +1,4 @@ +0 0 TOP VIEW (GEOGRAPHICAL LONGITUDE ON X-AXIS AND LATITUDE ON Y-AXIS) +1 1 NORTH-SOUTH VIEW (TRANSECT WITH GEOGRAPHICAL LONGITUDE ON X-AXIS AND VERTICAL HEIGHT ON Y-AXIS) +2 2 EAST-WEST VIEW (TRANSECT WITH GEOGRAPHICAL LATITUDE ON X-AXIS AND VERTICAL HEIGHT ON Y-AXIS) +63 63 MISSING diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8091.table b/definitions/bufr/tables/0/wmo/35/codetables/8091.table new file mode 100644 index 000000000..3a8c44df1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8091.table @@ -0,0 +1,11 @@ +0 0 SATELLITE COORDINATES +1 1 OBSERVATION COORDINATES +2 2 START OF OBSERVATION +3 3 END OF OBSERVATION +4 4 HORIZONTAL CENTRE OF GRAVITY OF THE OBSERVATION +5 5 VERTICAL CENTRE OF GRAVITY OF THE OBSERVATION +6 6 TOP OF THE OBSERVATION +7 7 BOTTOM OF THE OBSERVATION +8 8 PROJECTION ORIGIN +9 9 COORDINATES OF TRUE SCALE +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8092.table b/definitions/bufr/tables/0/wmo/35/codetables/8092.table new file mode 100644 index 000000000..db46f8e50 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8092.table @@ -0,0 +1,2 @@ +0 0 STANDARD UNCERTAINTY +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/codetables/8093.table b/definitions/bufr/tables/0/wmo/35/codetables/8093.table new file mode 100644 index 000000000..74f5c3a63 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/codetables/8093.table @@ -0,0 +1,4 @@ +0 0 TOTAL UNCERTAINTY +1 1 SYSTEMATIC COMPONENT OF UNCERTAINTY +2 2 RANDOM COMPONENT OF UNCERTAINTY +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/35/element.table b/definitions/bufr/tables/0/wmo/35/element.table new file mode 100644 index 000000000..cd0bfc3da --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/element.table @@ -0,0 +1,1716 @@ +#code|abbreviation|type|name|unit|scale|reference|width|crex_unit|crex_scale|crex_width +000001|tableAEntry|string|TABLE A: ENTRY|CCITT IA5|0|0|24|Character|0|3 +000002|tableALine1|string|TABLE A: DATA CATEGORY DESCRIPTION, LINE 1|CCITT IA5|0|0|256|Character|0|32 +000003|tableALine2|string|TABLE A: DATA CATEGORY DESCRIPTION, LINE 2|CCITT IA5|0|0|256|Character|0|32 +000004|masterTable|string|BUFR/CREX MASTER TABLE|CCITT IA5|0|0|16|Character|0|2 +000005|editionNumber|string|BUFR/CREX EDITION NUMBER|CCITT IA5|0|0|24|Character|0|3 +000006|bufrMasterTableVersionNumber|string|BUFR MASTER TABLE VERSION NUMBER|CCITT IA5|0|0|16|Character|0|2 +000007|crexMasterTableVersionNumber|string|CREX MASTER TABLE VERSION NUMBER|CCITT IA5|0|0|16|Character|0|2 +000008|bufrLocalTableVersionNumber|string|BUFR LOCAL TABLE VERSION NUMBER|CCITT IA5|0|0|16|Character|0|2 +000010|fDescriptorToBeAddedOrDefined|string|F DESCRIPTOR TO BE ADDED OR DEFINED|CCITT IA5|0|0|8|Character|0|1 +000011|xDescriptorToBeAddedOrDefined|string|X DESCRIPTOR TO BE ADDED OR DEFINED|CCITT IA5|0|0|16|Character|0|2 +000012|yDescriptorToBeAddedOrDefined|string|Y DESCRIPTOR TO BE ADDED OR DEFINED|CCITT IA5|0|0|24|Character|0|3 +000013|elementNameLine1|string|ELEMENT NAME, LINE 1|CCITT IA5|0|0|256|Character|0|32 +000014|elementNameLine2|string|ELEMENT NAME, LINE 2|CCITT IA5|0|0|256|Character|0|32 +000015|unitsName|string|UNITS NAME|CCITT IA5|0|0|192|Character|0|24 +000016|unitsScaleSign|string|UNITS SCALE SIGN|CCITT IA5|0|0|8|Character|0|1 +000017|unitsScale|string|UNITS SCALE|CCITT IA5|0|0|24|Character|0|3 +000018|unitsReferenceSign|string|UNITS REFERENCE SIGN|CCITT IA5|0|0|8|Character|0|1 +000019|unitsReferenceValue|string|UNITS REFERENCE VALUE|CCITT IA5|0|0|80|Character|0|10 +000020|elementDataWidth|string|ELEMENT DATA WIDTH|CCITT IA5|0|0|24|Character|0|3 +000024|codeFigure|string|CODE FIGURE|CCITT IA5|0|0|64|Character|0|8 +000025|codeFigureMeaning|string|CODE FIGURE MEANING|CCITT IA5|0|0|496|Character|0|62 +000026|bitNumber|string|BIT NUMBER|CCITT IA5|0|0|48|Character|0|6 +000027|bitNumberMeaning|string|BIT NUMBER MEANING|CCITT IA5|0|0|496|Character|0|62 +000030|descriptorDefiningSequence|string|DESCRIPTOR DEFINING SEQUENCE|CCITT IA5|0|0|48|Character|0|6 +001001|blockNumber|long|WMO BLOCK NUMBER|Numeric|0|0|7|Numeric|0|2 +001002|stationNumber|long|WMO STATION NUMBER|Numeric|0|0|10|Numeric|0|3 +001003|regionNumber|table|WMO REGION NUMBER/GEOGRAPHICAL AREA|CODE TABLE|0|0|3|CODE TABLE|0|1 +001004|wmoRegionSubArea|long|WMO REGION SUB-AREA|Numeric|0|0|3|Numeric|0|1 +001005|buoyOrPlatformIdentifier|long|BUOY/PLATFORM IDENTIFIER|Numeric|0|0|17|Numeric|0|5 +001006|aircraftFlightNumber|string|AIRCRAFT FLIGHT NUMBER|CCITT IA5|0|0|64|Character|0|8 +001007|satelliteIdentifier|table|SATELLITE IDENTIFIER|CODE TABLE|0|0|10|CODE TABLE|0|4 +001008|aircraftRegistrationNumberOrOtherIdentification|string|AIRCRAFT REGISTRATION NUMBER OR OTHER IDENTIFICATION|CCITT IA5|0|0|64|Character|0|8 +001009|commercialAircraftType|string|TYPE OF COMMERCIAL AIRCRAFT|CCITT IA5|0|0|64|Character|0|8 +001010|stationaryBuoyPlatformIdentifierEGCManBuoys|string|STATIONARY BUOY PLATFORM IDENTIFIER; E.G. C-MAN BUOYS|CCITT IA5|0|0|64|Character|0|8 +001011|shipOrMobileLandStationIdentifier|string|SHIP OR MOBILE LAND STATION IDENTIFIER|CCITT IA5|0|0|72|Character|0|9 +001012|directionOfMotionOfMovingObservingPlatform|long|DIRECTION OF MOTION OF MOVING OBSERVING PLATFORM|deg|0|0|9|deg|0|3 +001013|movingObservingPlatformSpeed|long|SPEED OF MOTION OF MOVING OBSERVING PLATFORM|m/s|0|0|10|m/s|0|3 +001014|platformDriftSpeed|double|PLATFORM DRIFT SPEED (HIGH PRECISION)|m/s|2|0|10|m/s|2|4 +001015|stationOrSiteName|string|STATION OR SITE NAME|CCITT IA5|0|0|160|Character|0|20 +001018|shortStationName|string|SHORT STATION OR SITE NAME|CCITT IA5|0|0|40|Character|0|5 +001019|longStationName|string|LONG STATION OR SITE NAME|CCITT IA5|0|0|256|Character|0|32 +001020|wmoRegionSubArea|long|WMO REGION SUB-AREA|Numeric|0|0|4|Numeric|0|2 +001021|synopticFeatureIdentifier|long|SYNOPTIC FEATURE IDENTIFIER|Numeric|0|0|14|Numeric|0|4 +001022|featureName|string|NAME OF FEATURE|CCITT IA5|0|0|224|Character|0|28 +001023|observationSequenceNumber|long|OBSERVATION SEQUENCE NUMBER|Numeric|0|0|9|Numeric|0|3 +001024|windSpeedSource|table|WIND SPEED SOURCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +001025|stormIdentifier|string|STORM IDENTIFIER|CCITT IA5|0|0|24|Character|0|3 +001026|stormName|string|WMO STORM NAME|CCITT IA5|0|0|64|Character|0|8 +001027|longStormName|string|WMO LONG STORM NAME|CCITT IA5|0|0|80|Character|0|10 +001028|aerosolOpticalDepthSource|table|AEROSOL OPTICAL DEPTH (AOD) SOURCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +001029|ssiSource|table|SSI SOURCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +001030|numericalModelIdentifier|string|NUMERICAL MODEL IDENTIFIER|CCITT IA5|0|0|128|Character|0|16 +001031|centre|table|IDENTIFICATION OF ORIGINATING/GENERATING CENTRE|CODE TABLE|0|0|16|CODE TABLE|0|5 +001032|generatingApplication|table|GENERATING APPLICATION|CODE TABLE defined by originating/generating centre|0|0|8|CODE TABLE|0|3 +001033|centre|table|IDENTIFICATION OF ORIGINATING/GENERATING CENTRE|Common CODE TABLE C-1|0|0|8|Common CODE TABLE C-1|0|3 +001034|subCentre|table|IDENTIFICATION OF ORIGINATING/GENERATING SUB-CENTRE|Common CODE TABLE C-12|0|0|8|Common CODE TABLE C-12|0|3 +001035|centre|table|ORIGINATING CENTRE|Common CODE TABLE C-11|0|0|16|Common CODE TABLE C-11|0|5 +001036|agencyInChargeOfOperatingObservingPlatform|table|AGENCY IN CHARGE OF OPERATING THE OBSERVING PLATFORM|CODE TABLE|0|0|20|CODE TABLE|0|7 +001037|sigmetSequenceIdentifier|string|SIGMET SEQUENCE IDENTIFIER|CCITT IA5|0|0|24|Character|0|3 +001038|sourceOfSeaIceFraction|table|SOURCE OF SEA ICE FRACTION|CODE TABLE|0|0|5|CODE TABLE|0|2 +001039|graphicalAreaForecastSequenceIdentifier|string|GRAPHICAL AREA FORECAST (GFA) SEQUENCE IDENTIFIER|CCITT IA5|0|0|40|Character|0|5 +001040|processingCentreIdCode|string|PROCESSING CENTRE ID CODE|CCITT IA5|0|0|48|Character|0|6 +001041|absolutePlatformVelocityFirstComponent|double|ABSOLUTE PLATFORM VELOCITY - FIRST COMPONENT|m/s|5|-1073741824|31|m/s|5|10 +001042|absolutePlatformVelocitySecondComponent|double|ABSOLUTE PLATFORM VELOCITY - SECOND COMPONENT|m/s|5|-1073741824|31|m/s|5|10 +001043|absolutePlatformVelocityThirdComponent|double|ABSOLUTE PLATFORM VELOCITY - THIRD COMPONENT|m/s|5|-1073741824|31|m/s|5|10 +001044|standardGeneratingApplication|table|STANDARD GENERATING APPLICATION|CODE TABLE|0|0|8|CODE TABLE|0|3 +001050|platformTransmitterIdNumber|long|PLATFORM TRANSMITTER ID NUMBER|Numeric|0|0|17|Numeric|0|6 +001051|platformTransmitterIdNumber|string|PLATFORM TRANSMITTER ID NUMBER|CCITT IA5|0|0|96|Character|0|12 +001052|platformTransmitterId|table|PLATFORM TRANSMITTER ID|CODE TABLE|0|0|3|CODE TABLE|0|1 +001053|tsunameterReportSequenceNumber|long|TSUNAMETER REPORT SEQUENCE NUMBER TRIGGERED BY A TSUNAMI EVENT|Numeric|0|0|7|Numeric|0|2 +001060|aircraftReportingPointBeaconIdentifier|string|AIRCRAFT REPORTING POINT (BEACON IDENTIFIER)|CCITT IA5|0|0|64|Character|0|8 +001062|shortIcaoLocationIndicator|string|SHORT ICAO LOCATION INDICATOR|CCITT IA5|0|0|32|Character|0|4 +001063|icaoLocationIndicator|string|ICAO LOCATION INDICATOR|CCITT IA5|0|0|64|Character|0|8 +001064|runwayDesignator|string|RUNWAY DESIGNATOR|CCITT IA5|0|0|32|Character|0|4 +001065|icaoRegionIdentifier|string|ICAO REGION IDENTIFIER|CCITT IA5|0|0|256|Character|0|32 +001075|tideStationIdentification|string|TIDE STATION IDENTIFICATION|CCITT IA5|0|0|40|Character|0|5 +001079|uniqueIdentifierForProfile|string|UNIQUE IDENTIFIER FOR THE PROFILE|CCITT IA5|0|0|64|Character|0|8 +001080|shipLineNumberAccordingToSoop|string|SHIP LINE NUMBER ACCORDING TO SOOP|CCITT IA5|0|0|32|Character|0|4 +001081|radiosondeSerialNumber|string|RADIOSONDE SERIAL NUMBER|CCITT IA5|0|0|160|Character|0|20 +001082|radiosondeAscensionNumber|long|RADIOSONDE ASCENSION NUMBER|Numeric|0|0|14|Numeric|0|4 +001083|radiosondeReleaseNumber|long|RADIOSONDE RELEASE NUMBER|Numeric|0|0|3|Numeric|0|1 +001085|observingPlatformManufacturerModel|string|OBSERVING PLATFORM MANUFACTURER'S MODEL|CCITT IA5|0|0|160|Character|0|20 +001086|observingPlatformManufacturerSerialNumber|string|OBSERVING PLATFORM MANUFACTURER'S SERIAL NUMBER|CCITT IA5|0|0|256|Character|0|32 +001087|marineObservingPlatformIdentifier|long|WMO MARINE OBSERVING PLATFORM EXTENDED IDENTIFIER|Numeric|0|0|23|Numeric|0|7 +001090|techniqueForMakingUpInitialPerturbations|table|TECHNIQUE FOR MAKING UP INITIAL PERTURBATIONS|CODE TABLE|0|0|8|CODE TABLE|0|3 +001091|ensembleMemberNumber|long|ENSEMBLE MEMBER NUMBER|Numeric|0|0|10|Numeric|0|4 +001092|ensembleForecastType|table|TYPE OF ENSEMBLE FORECAST|CODE TABLE|0|0|8|CODE TABLE|0|3 +001093|balloonLotNumber|string|BALLOON LOT NUMBER|CCITT IA5|0|0|96|Character|0|12 +001094|wbanNumber|long|WBAN NUMBER|Numeric|0|0|17|Numeric|0|5 +001095|observerIdentification|string|OBSERVER IDENTIFICATION|CCITT IA5|0|0|32|Character|0|4 +001096|stationAcquisition|string|STATION ACQUISITION|CCITT IA5|0|0|160|Character|0|20 +001099|uniqueProductDefinition|string|UNIQUE PRODUCT DEFINITION|CCITT IA5|0|0|248|Character|0|31 +001101|stateIdentifier|table|STATE IDENTIFIER|CODE TABLE|0|0|10|CODE TABLE|0|3 +001102|nationalStationNumber|long|NATIONAL STATION NUMBER|Numeric|0|0|30|Numeric|0|9 +001103|imoNumber|long|IMO NUMBER. UNIQUE LLOYD'S REGISTER|Numeric|0|0|24|Numeric|0|7 +001104|stateOrFederalStateIdentifier|string|STATE/FEDERAL STATE IDENTIFIER|CCITT IA5|0|0|32|Character|0|4 +001105|highwayDesignator|string|HIGHWAY DESIGNATOR|CCITT IA5|0|0|40|Character|0|5 +001106|locationAlongHighwayAsIndicatedByPositionMarkers|long|LOCATION ALONG HIGHWAY AS INDICATED BY POSITION MARKERS|m|-2|0|14|m|-2|5 +001110|aircraftTailNumber|string|AIRCRAFT TAIL NUMBER|CCITT IA5|0|0|48|Character|0|6 +001111|originationAirport|string|ORIGINATION AIRPORT|CCITT IA5|0|0|24|Character|0|3 +001112|destinationAirport|string|DESTINATION AIRPORT|CCITT IA5|0|0|24|Character|0|3 +001113|templateVersionNumberDefinedByOriginatingCentre|long|TEMPLATE VERSION NUMBER DEFINED BY ORIGINATING CENTRE|Numeric|1|0|9|Numeric|1|3 +001114|encryptedStationIdentifierBase64Encoding|string|ENCRYPTED SHIP OR MOBILE LAND STATION IDENTIFIER (BASE64 ENCODING)|CCITT IA5|0|0|352|Character|0|44 +001115|identifierOfTheCruiseOrMission|string|IDENTIFIER OF THE CRUISE OR MISSION UNDER WHICH THE DATA WERE COLLECTED|CCITT IA5|0|0|160|Character|0|20 +001124|gridPointIdentifier|long|GRID POINT IDENTIFIER|Numeric|0|0|24|Numeric|0|8 +001125|wigosIdentifierSeries|long|WIGOS IDENTIFIER SERIES|Numeric|0|0|4|Numeric|0|2 +001126|wigosIssuerOfIdentifier|long|WIGOS ISSUER OF IDENTIFIER|Numeric|0|0|16|Numeric|0|5 +001127|wigosIssueNumber|long|WIGOS ISSUE NUMBER|Numeric|0|0|16|Numeric|0|5 +001128|wigosLocalIdentifierCharacter|string|WIGOS LOCAL IDENTIFIER (CHARACTER)|CCITT IA5|0|0|128|Character|0|16 +001144|snapshotIdentifier|long|SNAPSHOT IDENTIFIER|Numeric|0|0|31|Numeric|0|10 +001150|coordinateReferenceSystem|table|COORDINATE REFERENCE SYSTEM|CODE TABLE|0|0|16|CODE TABLE|0|5 +001151|fixedMeanSeaLevelReferenceDatum|table|FIXED MEAN SEA-LEVEL REFERENCE DATUM|CODE TABLE|0|0|12|CODE TABLE|0|4 +001152|semiMajorAxisOfRotationEllipsoid|double|SEMI-MAJOR AXIS OF ROTATION ELLIPSOID|m|2|0|31|m|2|11 +001153|semiMinorAxisOfRotationEllipsoid|double|SEMI-MINOR AXIS OF ROTATION ELLIPSOID|m|2|0|31|m|2|11 +001154|sensorIdentifier|long|SENSOR IDENTIFIER|Numeric|0|0|12|Numeric|0|4 +002001|stationType|table|TYPE OF STATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +002002|instrumentationForWindMeasurement|flag|TYPE OF INSTRUMENTATION FOR WIND MEASUREMENT|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +002003|measuringEquipmentType|table|TYPE OF MEASURING EQUIPMENT USED|CODE TABLE|0|0|4|CODE TABLE|0|2 +002004|typeOfInstrumentationForEvaporationMeasurement|table|TYPE OF INSTRUMENTATION FOR EVAPORATION MEASUREMENT OR TYPE OF CROP FOR WHICH EVAPOTRANSPIRATION IS REPORTED|CODE TABLE|0|0|4|CODE TABLE|0|2 +002005|temperatureObservationPrecision|double|PRECISION OF TEMPERATURE OBSERVATION|K|2|0|7|K|2|3 +002006|upperAirRemoteSensingInstrumentType|table|UPPER AIR REMOTE SENSING INSTRUMENT TYPE|CODE TABLE|0|0|6|CODE TABLE|0|0 +002007|sensorForWaterLevelMeasuringInstrumentType|table|TYPE OF SENSOR FOR WATER LEVEL MEASURING INSTRUMENT|CODE TABLE|0|0|6|CODE TABLE|0|2 +002008|typeOfOffshorePlatform|table|TYPE OF OFFSHORE PLATFORM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002011|radiosondeType|table|RADIOSONDE TYPE|CODE TABLE|0|0|8|CODE TABLE|0|3 +002012|radiosondeComputationalMethod|table|RADIOSONDE COMPUTATIONAL METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +002013|solarAndInfraredRadiationCorrection|table|SOLAR AND INFRARED RADIATION CORRECTION|CODE TABLE|0|0|4|CODE TABLE|0|2 +002014|trackingTechniqueOrStatusOfSystem|table|TRACKING TECHNIQUE/STATUS OF SYSTEM USED|CODE TABLE|0|0|7|CODE TABLE|0|3 +002015|radiosondeCompleteness|table|RADIOSONDE COMPLETENESS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002016|radiosondeConfiguration|flag|RADIOSONDE CONFIGURATION|FLAG TABLE|0|0|5|FLAG TABLE|0|2 +002017|correctionAlgorithmsForHumidityMeasurements|table|CORRECTION ALGORITHMS FOR HUMIDITY MEASUREMENTS|CODE TABLE|0|0|5|CODE TABLE|0|2 +002019|satelliteInstruments|table|SATELLITE INSTRUMENTS|CODE TABLE|0|0|11|CODE TABLE|0|4 +002020|satelliteClassification|table|SATELLITE CLASSIFICATION|CODE TABLE|0|0|9|CODE TABLE|0|3 +002021|satelliteInstrumentDataUsedInProcessing|flag|SATELLITE INSTRUMENT DATA USED IN PROCESSING|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +002022|satelliteDataProcessingTechnique|flag|SATELLITE DATA-PROCESSING TECHNIQUE USED|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +002023|satelliteDerivedWindComputationMethod|table|SATELLITE-DERIVED WIND COMPUTATION METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +002024|meanHumidityComputationalMethod|table|INTEGRATED MEAN HUMIDITY COMPUTATIONAL METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +002025|satelliteChannelsUsedInComputation|flag|SATELLITE CHANNEL(S) USED IN COMPUTATION|FLAG TABLE|0|0|25|FLAG TABLE|0|9 +002026|crossTrackResolution|double|CROSS-TRACK RESOLUTION|m|2|0|12|m|2|4 +002027|alongTrackResolution|double|ALONG-TRACK RESOLUTION|m|2|0|12|m|2|4 +002028|segmentSizeAtNadirInXDirection|long|SEGMENT SIZE AT NADIR IN X-DIRECTION|m|0|0|18|m|0|6 +002029|segmentSizeAtNadirInYDirection|long|SEGMENT SIZE AT NADIR IN Y-DIRECTION|m|0|0|18|m|0|6 +002030|methodOfCurrentMeasurement|table|METHOD OF CURRENT MEASUREMENT|CODE TABLE|0|0|3|CODE TABLE|0|1 +002031|durationAndTimeOfCurrentMeasurement|table|DURATION AND TIME OF CURRENT MEASUREMENT|CODE TABLE|0|0|5|CODE TABLE|0|2 +002032|indicatorForDigitization|table|INDICATOR FOR DIGITIZATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +002033|methodOfSalinityOrDepthMeasurement|table|METHOD OF SALINITY/DEPTH MEASUREMENT|CODE TABLE|0|0|3|CODE TABLE|0|1 +002034|drogueType|table|DROGUE TYPE|CODE TABLE|0|0|5|CODE TABLE|0|2 +002035|cableLength|long|CABLE LENGTH|m|0|0|9|m|0|3 +002036|buoyType|table|BUOY TYPE|CODE TABLE|0|0|2|CODE TABLE|0|1 +002037|methodOfTidalObservation|table|METHOD OF TIDAL OBSERVATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +002038|methodOfWaterTemperatureAndOrOrSalinityMeasurement|table|METHOD OF WATER TEMPERATURE AND/OR SALINITY MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002039|methodOfWetBulbTemperatureMeasurement|table|METHOD OF WET-BULB TEMPERATURE MEASUREMENT|CODE TABLE|0|0|3|CODE TABLE|0|1 +002040|methodOfRemovingVelocityAndMotionOfPlatformFromCurrent|table|METHOD OF REMOVING VELOCITY AND MOTION OF PLATFORM FROM CURRENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002041|methodForEstimatingReportsRelatedToSynopticFeatures|table|METHOD FOR ESTIMATING REPORTS RELATED TO SYNOPTIC FEATURES|CODE TABLE|0|0|6|CODE TABLE|0|2 +002042|indicatorForSeaSurfaceCurrentSpeed|table|INDICATOR FOR SEA-SURFACE CURRENT SPEED|CODE TABLE|0|0|2|CODE TABLE|0|1 +002044|indicatorForMethodOfCalculatingSpectralWaveData|table|INDICATOR FOR METHOD OF CALCULATING SPECTRAL WAVE DATA|CODE TABLE|0|0|4|CODE TABLE|0|2 +002045|platformType|table|INDICATOR FOR TYPE OF PLATFORM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002046|waveMeasurementInstrumentation|table|WAVE MEASUREMENT INSTRUMENTATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +002047|deepOceanTsunameterType|table|DEEP-OCEAN TSUNAMETER TYPE|CODE TABLE|0|0|7|CODE TABLE|0|2 +002048|satelliteSensorIndicator|table|SATELLITE SENSOR INDICATOR|CODE TABLE|0|0|4|CODE TABLE|0|2 +002049|geostationarySatelliteDataProcessingTechnique|flag|GEOSTATIONARY SATELLITE DATA-PROCESSING TECHNIQUE USED|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +002050|geostationarySounderSatelliteChannels|flag|GEOSTATIONARY SOUNDER SATELLITE CHANNELS USED|FLAG TABLE|0|0|20|FLAG TABLE|0|7 +002051|indicatorToSpecifyObservingMethodForExtremeTemperatures|table|INDICATOR TO SPECIFY OBSERVING METHOD FOR EXTREME TEMPERATURES|CODE TABLE|0|0|4|CODE TABLE|0|2 +002052|geostationaryImagerSatelliteChannels|flag|GEOSTATIONARY IMAGER SATELLITE CHANNELS USED|FLAG TABLE|0|0|6|FLAG TABLE|0|2 +002053|goesBrightnessTemperatureCharacteristics|table|GOES-I/M BRIGHTNESS TEMPERATURE CHARACTERISTICS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002054|goesSoundingsParameter|table|GOES-I/M SOUNDINGS PARAMETER CHARACTERISTICS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002055|geostationarySoundingsStatisticalParameters|table|GEOSTATIONARY SOUNDINGS STATISTICAL PARAMETERS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002056|geostationarySoundingsAccuracyStatistics|table|GEOSTATIONARY SOUNDINGS ACCURACY STATISTICS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002057|originOfFirstGuessInformationForGoesIOrMSoundings|table|ORIGIN OF FIRST-GUESS INFORMATION FOR GOES-I/M SOUNDINGS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002058|validTimesOfFirstGuessInformationForGoesIOrMSoundings|table|VALID TIMES OF FIRST-GUESS INFORMATION FOR GOES-I/M SOUNDINGS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002059|originOfAnalysisInformationForGoesIOrMSoundings|table|ORIGIN OF ANALYSIS INFORMATION FOR GOES-I/M SOUNDINGS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002060|originOfSurfaceInformationForGoesIOrMSoundings|table|ORIGIN OF SURFACE INFORMATION FOR GOES-I/M SOUNDINGS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002061|aircraftNavigationalSystem|table|AIRCRAFT NAVIGATIONAL SYSTEM|CODE TABLE|0|0|3|CODE TABLE|0|1 +002062|aircraftDataRelaySystemType|table|TYPE OF AIRCRAFT DATA RELAY SYSTEM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002063|aircraftRollAngle|double|AIRCRAFT ROLL ANGLE|deg|2|-18000|16|deg|2|5 +002064|aircraftRollAngleQuality|table|AIRCRAFT ROLL ANGLE QUALITY|CODE TABLE|0|0|2|CODE TABLE|0|1 +002065|acarsGroundReceivingStation|string|ACARS GROUND-RECEIVING STATION|CCITT IA5|0|0|40|Character|0|5 +002066|radiosondeGroundReceivingSystem|table|RADIOSONDE GROUND RECEIVING SYSTEM|CODE TABLE|0|0|6|CODE TABLE|0|2 +002067|radiosondeOperatingFrequency|long|RADIOSONDE OPERATING FREQUENCY|Hz|-5|0|15|Hz|-5|5 +002070|originalSpecificationOfLatitudeOrLongitude|table|ORIGINAL SPECIFICATION OF LATITUDE/LONGITUDE|CODE TABLE|0|0|4|CODE TABLE|0|2 +002071|spectrographicWavelength|double|SPECTROGRAPHIC WAVELENGTH|m|13|0|30|m|13|10 +002072|spectrographicWidth|double|SPECTROGRAPHIC WIDTH|m|13|0|30|m|13|10 +002080|balloonManufacturer|table|BALLOON MANUFACTURER|CODE TABLE|0|0|6|CODE TABLE|0|2 +002081|balloonType|table|TYPE OF BALLOON|CODE TABLE|0|0|5|CODE TABLE|0|2 +002082|weightOfBalloon|double|WEIGHT OF BALLOON|kg|3|0|12|kg|3|4 +002083|balloonShelterType|table|TYPE OF BALLOON SHELTER|CODE TABLE|0|0|4|CODE TABLE|0|2 +002084|typeOfGasUsedInBalloon|table|TYPE OF GAS USED IN BALLOON|CODE TABLE|0|0|4|CODE TABLE|0|2 +002085|amountOfGasUsedInBalloon|double|AMOUNT OF GAS USED IN BALLOON|kg|3|0|13|kg|3|4 +002086|balloonFlightTrainLength|double|BALLOON FLIGHT TRAIN LENGTH|m|1|0|10|m|1|4 +002087|parachuteSurfaceArea|double|PARACHUTE SURFACE AREA|m2|4|0|15|m2|4|5 +002088|volumeOfGasUsedInBalloon|double|VOLUME OF GAS USED IN BALLOON|m3|3|0|13|m3|3|4 +002091|entrySensor4Or20Ma|double|ENTRY SENSOR 4/20 MA|A|4|0|10|A|4|3 +002092|ozoneProfileComputationMethod|table|OZONE PROFILE COMPUTATION METHOD|CODE TABLE|0|0|3|CODE TABLE|0|1 +002095|pressureSensorType|table|TYPE OF PRESSURE SENSOR|CODE TABLE|0|0|5|CODE TABLE|0|2 +002096|temperatureSensorType|table|TYPE OF TEMPERATURE SENSOR|CODE TABLE|0|0|5|CODE TABLE|0|2 +002097|humiditySensorType|table|TYPE OF HUMIDITY SENSOR|CODE TABLE|0|0|5|CODE TABLE|0|2 +002099|polarization|table|POLARIZATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +002100|radarConstant|double|RADAR CONSTANT|dB|1|0|12|dB|1|4 +002101|antennaType|table|TYPE OF ANTENNA|CODE TABLE|0|0|4|CODE TABLE|0|2 +002102|antennaHeightAboveTowerBase|long|ANTENNA HEIGHT ABOVE TOWER BASE|m|0|0|8|m|0|3 +002103|radome|flag|RADOME|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +002104|antennaPolarization|table|ANTENNA POLARIZATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +002105|maximumAntennaGain|long|MAXIMUM ANTENNA GAIN|dB|0|0|6|dB|0|2 +002106|3DbBeamwidth|double|3-DB BEAMWIDTH|deg|1|0|6|deg|1|2 +002107|sidelobeSuppression|long|SIDELOBE SUPPRESSION|dB|0|0|6|dB|0|2 +002108|crosspolDiscriminationOnAxis|long|CROSSPOL DISCRIMINATION (ON AXIS)|dB|0|0|6|dB|0|2 +002109|antennaSpeedAzimuth|double|ANTENNA SPEED (AZIMUTH)|deg/s|2|0|12|deg/s|2|4 +002110|antennaSpeedElevation|double|ANTENNA SPEED (ELEVATION)|deg/s|2|0|12|deg/s|2|4 +002111|radarIncidenceAngle|double|RADAR INCIDENCE ANGLE|deg|1|0|10|deg|1|4 +002112|radarLookAngle|double|RADAR LOOK ANGLE|deg|1|0|12|deg|1|4 +002113|numberOfAzimuthLooks|long|NUMBER OF AZIMUTH LOOKS|Numeric|0|0|4|Numeric|0|2 +002114|antennaEffectiveSurfaceArea|long|ANTENNA EFFECTIVE SURFACE AREA|m2|0|0|15|m2|0|5 +002115|surfaceObservingEquipmentType|table|TYPE OF SURFACE OBSERVING EQUIPMENT|CODE TABLE|0|0|5|CODE TABLE|0|2 +002116|percentageOf320MhzBandProcessed|long|PERCENTAGE OF 320 MHZ BAND PROCESSED|%|0|0|7|%|0|3 +002117|percentageOf80MhzBandProcessed|long|PERCENTAGE OF 80 MHZ BAND PROCESSED|%|0|0|7|%|0|3 +002118|percentageOf20MhzBandProcessed|long|PERCENTAGE OF 20 MHZ BAND PROCESSED|%|0|0|7|%|0|3 +002119|ra2InstrumentOperations|table|RA-2 INSTRUMENT OPERATIONS|CODE TABLE|0|0|3|CODE TABLE|0|1 +002120|oceanWaveFrequency|double|OCEAN WAVE FREQUENCY|Hz|3|0|10|Hz|3|4 +002121|meanFrequency|long|MEAN FREQUENCY|Hz|-8|0|7|Hz|-8|3 +002122|frequencyAgilityRange|long|FREQUENCY AGILITY RANGE|Hz|-6|-128|8|Hz|-6|3 +002123|peakPower|long|PEAK POWER|W|-4|0|7|W|-4|3 +002124|averagePower|long|AVERAGE POWER|W|-1|0|7|W|-1|3 +002125|pulseRepetitionFrequency|long|PULSE REPETITION FREQUENCY|Hz|-1|0|8|Hz|-1|3 +002126|pulseWidth|double|PULSE WIDTH|s|7|0|6|s|7|2 +002127|receiverIntermediateFrequency|long|RECEIVER INTERMEDIATE FREQUENCY|Hz|-6|0|7|Hz|-6|3 +002128|intermediateFrequencyBandwidth|long|INTERMEDIATE FREQUENCY BANDWIDTH|Hz|-5|0|6|Hz|-5|2 +002129|minimumDetectableSignal|long|MINIMUM DETECTABLE SIGNAL|dB|0|-150|5|dB|0|3 +002130|dynamicRange|long|DYNAMIC RANGE|dB|0|0|7|dB|0|3 +002131|sensitivityTimeControl|flag|SENSITIVITY TIME CONTROL (STC)|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +002132|azimuthPointingAccuracy|double|AZIMUTH POINTING ACCURACY|deg|2|0|6|deg|2|2 +002133|elevationPointingAccuracy|double|ELEVATION POINTING ACCURACY|deg|2|0|6|deg|2|2 +002134|antennaBeamAzimuth|double|ANTENNA BEAM AZIMUTH|deg|2|0|16|deg|2|5 +002135|antennaElevation|double|ANTENNA ELEVATION|deg|2|-9000|15|deg|2|5 +002136|rangeProcessedByRangeAttenuationCorrection|long|RANGE PROCESSED BY RANGE ATTENUATION CORRECTION|m|-3|0|16|m|-3|5 +002137|radarDualPrfRatio|table|RADAR DUAL PRF RATIO|CODE TABLE|0|0|4|CODE TABLE|0|2 +002138|antennaRotationDirection|table|ANTENNA ROTATION DIRECTION|CODE TABLE|0|0|2|CODE TABLE|0|1 +002139|siralInstrumentConfiguration|table|SIRAL INSTRUMENT CONFIGURATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +002140|satelliteRadarBeamAzimuthAngle|long|SATELLITE RADAR BEAM AZIMUTH ANGLE|deg|0|0|9|deg|0|3 +002141|measurementType|string|MEASUREMENT TYPE|CCITT IA5|0|0|24|Character|0|3 +002142|ozoneInstrument|string|OZONE INSTRUMENT SERIAL NUMBER/IDENTIFICATION|CCITT IA5|0|0|32|Character|0|4 +002143|ozoneInstrumentType|table|OZONE INSTRUMENT TYPE|CODE TABLE|0|0|7|CODE TABLE|0|3 +002144|lightSourceTypeForBrewerSpectrophotometer|table|LIGHT SOURCE TYPE FOR BREWER SPECTROPHOTOMETER|CODE TABLE|0|0|4|CODE TABLE|0|2 +002145|wavelengthSettingForDobsonInstruments|table|WAVELENGTH SETTING FOR DOBSON INSTRUMENTS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002146|sourceConditionsForDobsonInstruments|table|SOURCE CONDITIONS FOR DOBSON INSTRUMENTS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002147|methodOfTransmissionToCollectionCentre|table|METHOD OF TRANSMISSION TO COLLECTION CENTRE|CODE TABLE|0|0|6|CODE TABLE|0|2 +002148|dataCollectionLocationSystem|table|DATA COLLECTION AND/OR LOCATION SYSTEM|CODE TABLE|0|0|5|CODE TABLE|0|2 +002149|dataBuoyType|table|TYPE OF DATA BUOY|CODE TABLE|0|0|6|CODE TABLE|0|2 +002150|tovsOrAtovsOrAvhrrInstrumentationChannelNumber|table|TOVS/ATOVS/AVHRR INSTRUMENTATION CHANNEL NUMBER|CODE TABLE|0|0|6|CODE TABLE|0|2 +002151|radiometerIdentifier|table|RADIOMETER IDENTIFIER|CODE TABLE|0|0|11|CODE TABLE|0|4 +002152|satelliteInstrumentUsedInDataProcessing|flag|SATELLITE INSTRUMENT USED IN DATA PROCESSING|FLAG TABLE|0|0|31|FLAG TABLE|0|10 +002153|satelliteChannelCentreFrequency|long|SATELLITE CHANNEL CENTRE FREQUENCY|Hz|-8|0|26|Hz|-8|8 +002154|satelliteChannelBandWidth|long|SATELLITE CHANNEL BAND WIDTH|Hz|-8|0|26|Hz|-8|8 +002155|satelliteChannelWavelength|double|SATELLITE CHANNEL WAVELENGTH|m|9|0|16|m|9|5 +002156|percentageOfValidKuOceanRetrackerMeasurements|long|PERCENTAGE OF VALID KU OCEAN RETRACKER MEASUREMENTS|%|0|0|7|%|0|3 +002157|percentageOfValidSOceanRetrackerMeasurements|long|PERCENTAGE OF VALID S OCEAN RETRACKER MEASUREMENTS|%|0|0|7|%|0|3 +002158|ra2Instrument|flag|RA-2 INSTRUMENT|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +002159|mwrInstrument|flag|MWR INSTRUMENT|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +002160|radarWaveLength|table|WAVELENGTH OF THE RADAR|CODE TABLE|0|0|4|CODE TABLE|0|2 +002161|windProcessingMethod|flag|WIND PROCESSING METHOD|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +002162|extendedHeightAssignmentMethod|table|EXTENDED HEIGHT ASSIGNMENT METHOD|CODE TABLE|0|0|6|CODE TABLE|0|2 +002163|heightAssignmentMethod|table|HEIGHT ASSIGNMENT METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +002164|tracerCorrelationMethod|table|TRACER CORRELATION METHOD|CODE TABLE|0|0|3|CODE TABLE|0|1 +002165|radianceTypeFlags|flag|RADIANCE TYPE FLAGS|FLAG TABLE|0|0|15|FLAG TABLE|0|5 +002166|radianceType|table|RADIANCE TYPE|CODE TABLE|0|0|4|CODE TABLE|0|2 +002167|radianceComputationalMethod|table|RADIANCE COMPUTATIONAL METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +002168|hydrostaticPressureOfLowerEndOfCableThermistorString|long|HYDROSTATIC PRESSURE OF LOWER END OF CABLE (THERMISTOR STRING)|Pa|-3|0|16|kPa|0|5 +002169|anemometerType|table|ANEMOMETER TYPE|CODE TABLE|0|0|4|CODE TABLE|0|2 +002170|aircraftHumiditySensors|table|AIRCRAFT HUMIDITY SENSORS|CODE TABLE|0|0|6|CODE TABLE|0|2 +002171|instrumentSerialNumberForWaterTemperatureProfile|string|INSTRUMENT SERIAL NUMBER FOR WATER TEMPERATURE PROFILE MEASUREMENT|CCITT IA5|0|0|64|Character|0|8 +002172|productTypeForRetrievedAtmosphericGases|table|PRODUCT TYPE FOR RETRIEVED ATMOSPHERIC GASES|CODE TABLE|0|0|8|CODE TABLE|0|3 +002173|squareOfOffNadirAngle|double|SQUARE OF THE OFF-NADIR ANGLE|deg2|4|0|10|deg2|4|4 +002174|meanAcrossTrackPixelNumber|long|MEAN ACROSS TRACK PIXEL NUMBER|Numeric|0|0|9|Numeric|0|3 +002175|methodOfPrecipitationMeasurement|table|METHOD OF PRECIPITATION MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002176|methodOfStateOfGroundMeasurement|table|METHOD OF STATE OF GROUND MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002177|methodOfSnowDepthMeasurement|table|METHOD OF SNOW DEPTH MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002178|methodOfLiquidContentMeasurementOfPrecipitation|table|METHOD OF LIQUID CONTENT MEASUREMENT OF PRECIPITATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +002179|skyConditionAlgorithmType|table|TYPE OF SKY CONDITION ALGORITHM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002180|mainPresentWeatherDetectingSystem|table|MAIN PRESENT WEATHER DETECTING SYSTEM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002181|supplementaryPresentWeatherSensor|flag|SUPPLEMENTARY PRESENT WEATHER SENSOR|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +002182|visibilityMeasurementSystem|table|VISIBILITY MEASUREMENT SYSTEM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002183|cloudDetectionSystem|table|CLOUD DETECTION SYSTEM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002184|lightningDetectionSensorType|table|TYPE OF LIGHTNING DETECTION SENSOR|CODE TABLE|0|0|4|CODE TABLE|0|2 +002185|methodOfEvaporationMeasurement|table|METHOD OF EVAPORATION MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002186|capabilityToDetectPrecipitationPhenomena|flag|CAPABILITY TO DETECT PRECIPITATION PHENOMENA|FLAG TABLE|0|0|30|FLAG TABLE|0|10 +002187|capabilityToDetectOtherWeatherPhenomena|flag|CAPABILITY TO DETECT OTHER WEATHER PHENOMENA|FLAG TABLE|0|0|18|FLAG TABLE|0|6 +002188|capabilityToDetectObscuration|flag|CAPABILITY TO DETECT OBSCURATION|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +002189|capabilityToDiscriminateLightningStrikes|flag|CAPABILITY TO DISCRIMINATE LIGHTNING STRIKES|FLAG TABLE|0|0|12|FLAG TABLE|0|4 +002190|lagrangianDrifterSubmergenceTimeSubmerged|long|LAGRANGIAN DRIFTER SUBMERGENCE (% TIME SUBMERGED)|%|0|0|7|%|0|3 +002191|geopotentialHeightCalculation|table|GEOPOTENTIAL HEIGHT CALCULATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +003001|surfaceStationType|table|SURFACE STATION TYPE|CODE TABLE|0|0|5|CODE TABLE|0|2 +003003|thermometerOrHygrometerHousing|table|THERMOMETER/HYGROMETER HOUSING|CODE TABLE|0|0|4|CODE TABLE|0|2 +003004|typeOfScreenOrShelterOrRadiationShield|table|TYPE OF SCREEN/SHELTER/RADIATION SHIELD|CODE TABLE|0|0|4|CODE TABLE|0|2 +003005|horizontalWidthOfScreenOrShieldX|double|HORIZONTAL WIDTH OF SCREEN OR SHIELD (X)|m|3|0|16|m|3|5 +003006|horizontalDepthOfScreenOrShieldY|double|HORIZONTAL DEPTH OF SCREEN OR SHIELD (Y)|m|3|0|16|m|3|5 +003007|verticalHeightOfScreenOrShieldZ|double|VERTICAL HEIGHT OF SCREEN OR SHIELD (Z)|m|3|0|16|m|3|5 +003008|artificiallyVentilatedScreenOrShield|table|ARTIFICIALLY VENTILATED SCREEN OR SHIELD|CODE TABLE|0|0|3|CODE TABLE|0|1 +003009|amountOfForcedVentilationAtTimeOfReading|double|AMOUNT OF FORCED VENTILATION AT TIME OF READING|m/s|1|0|9|m/s|1|3 +003010|methodOfSeaOrWaterCurrentMeasurement|table|METHOD OF SEA/WATER CURRENT MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +003011|methodOfDepthCalculation|table|METHOD OF DEPTH CALCULATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +003012|instrumentTypeOrSensorForDissolvedOxygenMeasurement|table|INSTRUMENT TYPE/SENSOR FOR DISSOLVED OXYGEN MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +003016|positionOfRoadSensors|table|POSITION OF ROAD SENSORS|CODE TABLE|0|0|4|CODE TABLE|0|2 +003017|extendedTypeOfStation|flag|EXTENDED TYPE OF STATION|FLAG TABLE|0|0|6|FLAG TABLE|0|2 +003018|typeOfRoad|table|TYPE OF ROAD|CODE TABLE|0|0|5|CODE TABLE|0|2 +003019|typeOfConstruction|table|TYPE OF CONSTRUCTION|CODE TABLE|0|0|4|CODE TABLE|0|2 +003020|materialForThermometerOrHygrometerHousing|table|MATERIAL FOR THERMOMETER/HYGROMETER HOUSING|CODE TABLE|0|0|3|CODE TABLE|0|1 +003021|hygrometerHeating|table|HYGROMETER HEATING|CODE TABLE|0|0|2|CODE TABLE|0|1 +003022|instrumentOwner|table|INSTRUMENT OWNER|CODE TABLE|0|0|3|CODE TABLE|0|1 +003023|configurationOfLouversForThermometerOrHygrometerScreen|table|CONFIGURATION OF LOUVERS FOR THERMOMETER/HYGROMETER SCREEN|CODE TABLE|0|0|3|CODE TABLE|0|1 +003024|psychrometricCoefficient|double|PSYCHROMETRIC COEFFICIENT|K-1|6|0|10|K-1|6|3 +003025|crossTrackEstimationAreaSize|long|CROSS-TRACK ESTIMATION AREA SIZE|m|0|5000|16|m|0|5 +003026|alongTrackEstimationAreaSize|long|ALONG-TRACK ESTIMATION AREA SIZE|m|0|5000|16|m|0|5 +003027|typeOfFlightRig|table|TYPE OF FLIGHT RIG|CODE TABLE|0|0|4|CODE TABLE|0|2 +003028|methodOfSnowWaterEquivalentMeasurement|table|METHOD OF SNOW WATER EQUIVALENT MEASUREMENT|CODE TABLE|0|0|6|CODE TABLE|0|2 +004001|year|long|YEAR|a|0|0|12|a|0|4 +004002|month|long|MONTH|mon|0|0|4|mon|0|2 +004003|day|long|DAY|d|0|0|6|d|0|2 +004004|hour|long|HOUR|h|0|0|5|h|0|2 +004005|minute|long|MINUTE|min|0|0|6|min|0|2 +004006|second|long|SECOND|s|0|0|6|s|0|2 +004007|secondsWithinAMinuteMicrosecond|double|SECONDS WITHIN A MINUTE (MICROSECOND ACCURACY)|s|6|0|26|s|6|8 +004011|timeIncrement|long|TIME INCREMENT|a|0|-1024|11|a|0|4 +004012|timeIncrement|long|TIME INCREMENT|mon|0|-1024|11|mon|0|4 +004013|timeIncrement|long|TIME INCREMENT|d|0|-1024|11|d|0|4 +004014|timeIncrement|long|TIME INCREMENT|h|0|-1024|11|h|0|4 +004015|timeIncrement|long|TIME INCREMENT|min|0|-2048|12|min|0|4 +004016|timeIncrement|long|TIME INCREMENT|s|0|-4096|13|s|0|4 +004017|referenceTimePeriodForAccumulatedOrExtremeData|long|REFERENCE TIME PERIOD FOR ACCUMULATED OR EXTREME DATA|min|0|-1440|12|min|0|4 +004021|timePeriod|long|TIME PERIOD OR DISPLACEMENT|a|0|-1024|11|a|0|4 +004022|timePeriod|long|TIME PERIOD OR DISPLACEMENT|mon|0|-1024|11|mon|0|4 +004023|timePeriod|long|TIME PERIOD OR DISPLACEMENT|d|0|-1024|11|d|0|4 +004024|timePeriod|long|TIME PERIOD OR DISPLACEMENT|h|0|-2048|12|h|0|4 +004025|timePeriod|long|TIME PERIOD OR DISPLACEMENT|min|0|-2048|12|min|0|4 +004026|timePeriod|long|TIME PERIOD OR DISPLACEMENT|s|0|-4096|13|s|0|4 +004031|durationOfTimeRelatingToFollowingValue|long|DURATION OF TIME RELATING TO FOLLOWING VALUE|h|0|0|8|h|0|3 +004032|durationOfTimeRelatingToFollowingValue|long|DURATION OF TIME RELATING TO FOLLOWING VALUE|min|0|0|6|min|0|2 +004041|timeDifferenceUtcLmt|long|TIME DIFFERENCE, UTC - LMT|min|0|-1440|12|min|0|4 +004043|dayOfYear|long|DAY OF THE YEAR|d|0|0|9|d|0|3 +004051|principalTimeOfDailyReadingOfMaximumTemperature|long|PRINCIPAL TIME OF DAILY READING OF MAXIMUM TEMPERATURE|h|0|0|5|h|0|2 +004052|principalTimeOfDailyReadingOfMinimumTemperature|long|PRINCIPAL TIME OF DAILY READING OF MINIMUM TEMPERATURE|h|0|0|5|h|0|2 +004053|numberOfDaysWithPrecipitationEqualToOrMoreThan1Mm|long|NUMBER OF DAYS WITH PRECIPITATION EQUAL TO OR MORE THAN 1 MM|Numeric|0|0|6|Numeric|0|2 +004059|timesOfObservationUsedToComputeReportedMeanValues|flag|TIMES OF OBSERVATION USED TO COMPUTE THE REPORTED MEAN VALUES|FLAG TABLE|0|0|6|FLAG TABLE|0|2 +004065|timeIncrement|long|SHORT TIME INCREMENT|min|0|-128|8|min|0|2 +004066|timeIncrement|long|SHORT TIME INCREMENT|s|0|-128|8|s|0|2 +004073|timePeriod|long|SHORT TIME PERIOD OR DISPLACEMENT|d|0|-128|8|d|0|2 +004074|timePeriod|long|SHORT TIME PERIOD OR DISPLACEMENT|h|0|-128|8|h|0|2 +004075|timePeriod|long|SHORT TIME PERIOD OR DISPLACEMENT|min|0|-128|8|min|0|2 +004080|averagingPeriodForFollowingValue|table|AVERAGING PERIOD FOR FOLLOWING VALUE|CODE TABLE|0|0|4|CODE TABLE|0|2 +004086|timePeriod|long|LONG TIME PERIOD OR DISPLACEMENT|s|0|-8192|15|s|0|5 +005001|latitude|double|LATITUDE (HIGH ACCURACY)|deg|5|-9000000|25|deg|5|7 +005002|latitude|double|LATITUDE (COARSE ACCURACY)|deg|2|-9000|15|deg|2|4 +005011|latitudeIncrement|double|LATITUDE INCREMENT (HIGH ACCURACY)|deg|5|-9000000|25|deg|5|7 +005012|latitudeIncrement|double|LATITUDE INCREMENT (COARSE ACCURACY)|deg|2|-9000|15|deg|2|4 +005015|latitudeDisplacement|double|LATITUDE DISPLACEMENT (HIGH ACCURACY)|deg|5|-9000000|25|deg|5|7 +005016|latitudeDisplacement|double|LATITUDE DISPLACEMENT (COARSE ACCURACY)|deg|2|-9000|15|deg|2|4 +005021|bearingOrAzimuth|double|BEARING OR AZIMUTH|deg|2|0|16|deg|2|5 +005022|solarAzimuth|double|SOLAR AZIMUTH|deg|2|0|16|deg|2|5 +005023|sunToSatelliteAzimuthDifference|double|SUN TO SATELLITE AZIMUTH DIFFERENCE|deg|1|-1800|12|deg|1|4 +005030|directionSpectral|long|DIRECTION (SPECTRAL)|deg|0|0|12|deg|0|4 +005031|rowNumber|long|ROW NUMBER|Numeric|0|0|12|Numeric|0|4 +005032|yOffset|double|Y OFFSET|m|2|-1073741824|31|m|2|11 +005033|pixelSizeOnHorizontal1|long|PIXEL SIZE ON HORIZONTAL - 1|m|-1|0|16|m|-1|5 +005034|alongTrackRowNumber|long|ALONG TRACK ROW NUMBER|Numeric|0|0|11|Numeric|0|4 +005035|xDimensionMaximumSize|long|MAXIMUM SIZE OF X-DIMENSION|Numeric|0|0|12|Numeric|0|4 +005036|shipTransectNumberAccordingToSoop|long|SHIP TRANSECT NUMBER ACCORDING TO SOOP|Numeric|0|0|7|Numeric|0|2 +005040|orbitNumber|long|ORBIT NUMBER|Numeric|0|0|24|Numeric|0|8 +005041|scanLineNumber|long|SCAN LINE NUMBER|Numeric|0|0|8|Numeric|0|3 +005042|channelNumber|long|CHANNEL NUMBER|Numeric|0|0|6|Numeric|0|2 +005043|fieldOfViewNumber|long|FIELD OF VIEW NUMBER|Numeric|0|0|8|Numeric|0|3 +005044|satelliteCycleNumber|long|SATELLITE CYCLE NUMBER|Numeric|0|0|11|Numeric|0|4 +005045|fieldOfRegardNumber|long|FIELD OF REGARD NUMBER|Numeric|0|0|8|Numeric|0|3 +005052|channelNumberIncrement|long|CHANNEL NUMBER INCREMENT|Numeric|0|0|5|Numeric|0|2 +005053|fieldOfViewNumberIncrement|long|FIELD OF VIEW NUMBER INCREMENT|Numeric|0|0|5|Numeric|0|2 +005060|yAngularPositionFromCentreOfGravity|double|Y ANGULAR POSITION FROM CENTRE OF GRAVITY|deg|6|-8000000|24|deg|6|8 +005061|zAngularPositionFromCentreOfGravity|double|Z ANGULAR POSITION FROM CENTRE OF GRAVITY|deg|6|-8000000|24|deg|6|8 +005063|spacecraftRoll|double|SPACECRAFT ROLL|deg|2|0|16|deg|2|5 +005064|spacecraftPitch|double|SPACECRAFT PITCH|deg|2|0|16|deg|2|5 +005066|spacecraftYaw|double|SPACECRAFT YAW|deg|2|0|16|deg|2|5 +005067|numberOfScanLines|long|NUMBER OF SCAN LINES|Numeric|0|0|8|Numeric|0|3 +005068|profileNumber|long|PROFILE NUMBER|Numeric|0|0|16|Numeric|0|5 +005069|receiverChannel|table|RECEIVER CHANNEL|CODE TABLE|0|0|2|CODE TABLE|0|1 +005070|observationIdentifier|long|OBSERVATION IDENTIFIER|Numeric|0|0|30|Numeric|0|10 +005071|stripmapIdentifier|long|STRIPMAP IDENTIFIER|Numeric|0|0|16|Numeric|0|5 +005072|numberOfSpectraInRangeDirection|long|NUMBER OF SPECTRA IN RANGE DIRECTION|Numeric|0|0|8|Numeric|0|3 +005073|numberOfSpectraInAzimuthalDirection|long|NUMBER OF SPECTRA IN AZIMUTHAL DIRECTION|Numeric|0|0|8|Numeric|0|3 +005074|indexInRangeDirection|long|INDEX IN RANGE DIRECTION|Numeric|0|0|8|Numeric|0|3 +005075|indexInAzimuthalDirection|long|INDEX IN AZIMUTHAL DIRECTION|Numeric|0|0|8|Numeric|0|3 +006001|longitude|double|LONGITUDE (HIGH ACCURACY)|deg|5|-18000000|26|deg|5|8 +006002|longitude|double|LONGITUDE (COARSE ACCURACY)|deg|2|-18000|16|deg|2|5 +006011|longitudeIncrement|double|LONGITUDE INCREMENT (HIGH ACCURACY)|deg|5|-18000000|26|deg|5|8 +006012|longitudeIncrement|double|LONGITUDE INCREMENT (COARSE ACCURACY)|deg|2|-18000|16|deg|2|5 +006015|longitudeDisplacement|double|LONGITUDE DISPLACEMENT (HIGH ACCURACY)|deg|5|-18000000|26|deg|5|8 +006016|longitudeDisplacement|double|LONGITUDE DISPLACEMENT (COARSE ACCURACY)|deg|2|-18000|16|deg|2|5 +006021|distance|long|DISTANCE|m|-1|0|13|m|-1|4 +006029|waveNumber|double|WAVE NUMBER|/m|1|0|22|/m|1|7 +006030|waveNumberSpectral|double|WAVE NUMBER (SPECTRAL)|rad/m|5|0|13|rad/m|5|4 +006031|columnNumber|long|COLUMN NUMBER|Numeric|0|0|12|Numeric|0|4 +006032|xOffset|double|X OFFSET|m|2|-1073741824|31|m|2|11 +006033|pixelSizeOnHorizontal2|long|PIXEL SIZE ON HORIZONTAL - 2|m|-1|0|16|m|-1|5 +006034|crossTrackCellNumber|long|CROSS-TRACK CELL NUMBER|Numeric|0|0|7|Numeric|0|3 +006035|yDimensionMaximumSize|long|MAXIMUM SIZE OF Y-DIMENSION|Numeric|0|0|12|Numeric|0|4 +006040|radiusOfConfidence|long|RADIUS OF CONFIDENCE|m|0|0|13|m|0|4 +007001|heightOfStation|long|HEIGHT OF STATION|m|0|-400|15|m|0|5 +007002|height|long|HEIGHT OR ALTITUDE|m|-1|-40|16|m|-1|5 +007003|geopotential|long|GEOPOTENTIAL|m2 s-2|-1|-400|17|m2 s-2|-1|6 +007004|pressure|long|PRESSURE|Pa|-1|0|14|Pa|-1|5 +007005|heightIncrement|long|HEIGHT INCREMENT|m|0|-400|12|m|0|4 +007006|heightAboveStation|long|HEIGHT ABOVE STATION|m|0|0|15|m|0|5 +007007|height|long|HEIGHT|m|0|-1000|17|m|0|6 +007008|geopotential|long|GEOPOTENTIAL|m2 s-2|0|-10000|20|m2 s-2|0|7 +007009|geopotentialHeight|long|GEOPOTENTIAL HEIGHT|gpm|0|-1000|17|gpm|0|5 +007010|flightLevel|long|FLIGHT LEVEL|m|0|-1024|16|ft|-1|5 +007012|gridPointAltitude|double|GRID POINT ALTITUDE|m|2|-50000|20|m|2|7 +007021|elevation|double|ELEVATION|deg|2|-9000|15|deg|2|5 +007022|solarElevation|double|SOLAR ELEVATION|deg|2|-9000|15|deg|2|5 +007024|satelliteZenithAngle|double|SATELLITE ZENITH ANGLE|deg|2|-9000|15|deg|2|5 +007025|solarZenithAngle|double|SOLAR ZENITH ANGLE|deg|2|-9000|15|deg|2|5 +007026|satelliteZenithAngle|double|SATELLITE ZENITH ANGLE|deg|4|-900000|21|deg|4|7 +007030|heightOfStationGroundAboveMeanSeaLevel|double|HEIGHT OF STATION GROUND ABOVE MEAN SEA LEVEL|m|1|-4000|17|m|1|5 +007031|heightOfBarometerAboveMeanSeaLevel|double|HEIGHT OF BAROMETER ABOVE MEAN SEA LEVEL|m|1|-4000|17|m|1|5 +007032|heightOfSensorAboveLocalGroundOrDeckOfMarinePlatform|double|HEIGHT OF SENSOR ABOVE LOCAL GROUND (OR DECK OF MARINE PLATFORM)|m|2|0|16|m|2|5 +007033|heightOfSensorAboveWaterSurface|double|HEIGHT OF SENSOR ABOVE WATER SURFACE|m|1|0|12|m|1|4 +007035|zDimensionMaximumSize|long|MAXIMUM SIZE OF Z-DIMENSION|Numeric|0|0|12|Numeric|0|4 +007036|levelIndexOfZ|long|LEVEL INDEX OF Z|Numeric|0|0|12|Numeric|0|4 +007040|impactParameter|double|IMPACT PARAMETER|m|1|62000000|22|m|1|8 +007061|depthBelowLandSurface|double|DEPTH BELOW LAND SURFACE|m|2|0|14|m|2|5 +007062|depthBelowWaterSurface|double|DEPTH BELOW SEA/WATER SURFACE|m|1|0|17|m|1|6 +007063|depthBelowWaterSurface|double|DEPTH BELOW SEA/WATER SURFACE (CM)|m|2|0|20|m|2|7 +007064|representativeHeightOfSensorAboveStation|long|REPRESENTATIVE HEIGHT OF SENSOR ABOVE STATION|m|0|0|4|m|0|2 +007065|waterPressure|long|WATER PRESSURE|Pa|-3|0|17|Pa|-3|6 +007070|drogueDepth|long|DROGUE DEPTH|m|0|0|10|m|0|4 +007071|height|double|HEIGHT (HIGH RESOLUTION)|m|3|-10000000|26|m|3|8 +007072|scanAngle|double|SCAN ANGLE|deg|2|-9000|15|deg|2|6 +008001|verticalSoundingSignificance|flag|VERTICAL SOUNDING SIGNIFICANCE|FLAG TABLE|0|0|7|FLAG TABLE|0|3 +008002|verticalSignificanceSurfaceObservations|table|VERTICAL SIGNIFICANCE (SURFACE OBSERVATIONS)|CODE TABLE|0|0|6|CODE TABLE|0|2 +008003|verticalSignificanceSatelliteObservations|table|VERTICAL SIGNIFICANCE (SATELLITE OBSERVATIONS)|CODE TABLE|0|0|6|CODE TABLE|0|2 +008004|phaseOfAircraftFlight|table|PHASE OF AIRCRAFT FLIGHT|CODE TABLE|0|0|3|CODE TABLE|0|1 +008005|meteorologicalAttributeSignificance|table|METEOROLOGICAL ATTRIBUTE SIGNIFICANCE|CODE TABLE|0|0|4|CODE TABLE|0|2 +008006|ozoneVerticalSoundingSignificance|flag|OZONE VERTICAL SOUNDING SIGNIFICANCE|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +008007|dimensionalSignificance|table|DIMENSIONAL SIGNIFICANCE|CODE TABLE|0|0|4|CODE TABLE|0|2 +008008|radiationVerticalSoundingSignificance|flag|RADIATION VERTICAL SOUNDING SIGNIFICANCE|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +008009|detailedPhaseOfFlight|table|DETAILED PHASE OF FLIGHT|CODE TABLE|0|0|4|CODE TABLE|0|2 +008010|surfaceQualifierForTemperatureData|table|SURFACE QUALIFIER (TEMPERATURE DATA)|CODE TABLE|0|0|5|CODE TABLE|0|2 +008011|meteorologicalFeature|table|METEOROLOGICAL FEATURE|CODE TABLE|0|0|6|CODE TABLE|0|2 +008012|landOrSeaQualifier|table|LAND/SEA QUALIFIER|CODE TABLE|0|0|2|CODE TABLE|0|1 +008013|dayOrNightQualifier|table|DAY/NIGHT QUALIFIER|CODE TABLE|0|0|2|CODE TABLE|0|1 +008014|qualifierForRunwayVisualRange|table|QUALIFIER FOR RUNWAY VISUAL RANGE|CODE TABLE|0|0|4|CODE TABLE|0|2 +008015|significantQualifierForSensor|table|SIGNIFICANT QUALIFIER FOR SENSOR|CODE TABLE|0|0|3|CODE TABLE|0|1 +008016|changeQualifierOfATrendTypeForecastOrAnAerodromeForecast|table|CHANGE QUALIFIER OF A TREND-TYPE FORECAST OR AN AERODROME FORECAST|CODE TABLE|0|0|3|CODE TABLE|0|1 +008017|qualifierOfTimeWhenForecastChangeExpected|table|QUALIFIER OF THE TIME WHEN THE FORECAST CHANGE IS EXPECTED|CODE TABLE|0|0|2|CODE TABLE|0|1 +008018|seawindsLandOrIceSurfaceType|flag|SEAWINDS LAND/ICE SURFACE TYPE|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +008019|qualifierForFollowingCentreIdentifier|table|QUALIFIER FOR FOLLOWING CENTRE IDENTIFIER|CODE TABLE|0|0|4|CODE TABLE|0|2 +008020|totalNumberOfMissingEntitiesWithRespectToAccumulationOrAverage|long|TOTAL NUMBER OF MISSING ENTITIES (WITH RESPECT TO ACCUMULATION OR AVERAGE)|Numeric|0|0|16|Numeric|0|5 +008021|timeSignificance|table|TIME SIGNIFICANCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +008022|totalNumberWithRespectToAccumulationOrAverage|long|TOTAL NUMBER (WITH RESPECT TO ACCUMULATION OR AVERAGE)|Numeric|0|0|16|Numeric|0|5 +008023|firstOrderStatistics|table|FIRST-ORDER STATISTICS|CODE TABLE|0|0|6|CODE TABLE|0|2 +008024|differenceStatistics|table|DIFFERENCE STATISTICS|CODE TABLE|0|0|6|CODE TABLE|0|2 +008025|timeDifferenceQualifier|table|TIME DIFFERENCE QUALIFIER|CODE TABLE|0|0|4|CODE TABLE|0|2 +008026|matrixSignificance|table|MATRIX SIGNIFICANCE|CODE TABLE|0|0|6|CODE TABLE|0|2 +008029|surfaceType|table|SURFACE TYPE|CODE TABLE|0|0|8|CODE TABLE|0|3 +008030|manualOnCodesVolumeI1SectionCCodeTableFromWhichDataAreDerived|long|MANUAL ON CODES (VOLUME I.1, SECTION C) CODE TABLE FROM WHICH DATA ARE DERIVED|Numeric|0|0|13|Numeric|0|4 +008031|dataCategoryCrexTableA|long|DATA CATEGORY - CREX TABLE A|Numeric|0|0|8|Numeric|0|3 +008032|statusOfOperation|table|STATUS OF OPERATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +008033|methodOfDerivationOfPercentageConfidence|table|METHOD OF DERIVATION OF PERCENTAGE CONFIDENCE|CODE TABLE|0|0|7|CODE TABLE|0|3 +008034|temperatureOrSalinityMeasurementQualifier|table|TEMPERATURE/SALINITY MEASUREMENT QUALIFIER|CODE TABLE|0|0|4|CODE TABLE|0|2 +008035|monitoringExerciseType|table|TYPE OF MONITORING EXERCISE|CODE TABLE|0|0|3|CODE TABLE|0|1 +008036|typeOfCentreOrStationPerformingMonitoring|table|TYPE OF CENTRE OR STATION PERFORMING MONITORING|CODE TABLE|0|0|3|CODE TABLE|0|1 +008037|baselineCheckSignificance|table|BASELINE CHECK SIGNIFICANCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +008038|instrumentDataSignificance|table|INSTRUMENT DATA SIGNIFICANCE|CODE TABLE|0|0|8|CODE TABLE|0|3 +008039|timeSignificanceAviationForecast|table|TIME SIGNIFICANCE (AVIATION FORECAST)|CODE TABLE|0|0|6|CODE TABLE|0|2 +008040|flightLevelSignificance|table|FLIGHT LEVEL SIGNIFICANCE|CODE TABLE|0|0|6|CODE TABLE|0|2 +008041|dataSignificance|table|DATA SIGNIFICANCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +008042|extendedVerticalSoundingSignificance|flag|EXTENDED VERTICAL SOUNDING SIGNIFICANCE|FLAG TABLE|0|0|18|FLAG TABLE|0|6 +008043|atmosphericChemical|table|ATMOSPHERIC CHEMICAL OR PHYSICAL CONSTITUENT TYPE|CODE TABLE|0|0|8|CODE TABLE|0|3 +008044|casRegistryNumber|string|CAS REGISTRY NUMBER|CCITT IA5|0|0|88|Character|0|11 +008046|atmosphericChemical|table|ATMOSPHERIC CHEMICAL OR PHYSICAL CONSTITUENT TYPE|Common CODE TABLE C-14|0|0|16|Common CODE TABLE C-14|0|5 +008049|numberOfObservations|long|NUMBER OF OBSERVATIONS|Numeric|0|0|8|Numeric|0|3 +008050|qualifierForNumberOfMissingValuesInCalculationOfStatistic|table|QUALIFIER FOR NUMBER OF MISSING VALUES IN CALCULATION OF STATISTIC|CODE TABLE|0|0|4|CODE TABLE|0|2 +008051|qualifierForNumberOfMissingValuesInCalculationOfStatistic|table|QUALIFIER FOR NUMBER OF MISSING VALUES IN CALCULATION OF STATISTIC|CODE TABLE|0|0|3|CODE TABLE|0|1 +008052|conditionForWhichNumberOfDaysOfOccurrenceFollows|table|CONDITION FOR WHICH NUMBER OF DAYS OF OCCURRENCE FOLLOWS|CODE TABLE|0|0|5|CODE TABLE|0|2 +008053|dayOfOccurrenceQualifier|table|DAY OF OCCURRENCE QUALIFIER|CODE TABLE|0|0|2|CODE TABLE|0|1 +008054|qualifierForWindSpeedOrWindGusts|table|QUALIFIER FOR WIND SPEED OR WIND GUSTS|CODE TABLE|0|0|3|CODE TABLE|0|1 +008060|sampleScanningModeSignificance|table|SAMPLE SCANNING MODE SIGNIFICANCE|CODE TABLE|0|0|4|CODE TABLE|0|2 +008065|sunGlintIndicator|table|SUN-GLINT INDICATOR|CODE TABLE|0|0|2|CODE TABLE|0|1 +008066|semiTransparencyIndicator|table|SEMI-TRANSPARENCY INDICATOR|CODE TABLE|0|0|2|CODE TABLE|0|1 +008070|verticalSoundingProductQualifier|table|VERTICAL SOUNDING PRODUCT QUALIFIER|CODE TABLE|0|0|4|CODE TABLE|0|2 +008072|pixelType|table|PIXEL(S) TYPE|CODE TABLE|0|0|3|CODE TABLE|0|1 +008074|altimeterEchoType|table|ALTIMETER ECHO TYPE|CODE TABLE|0|0|2|CODE TABLE|0|1 +008075|orbitQualifier|table|ASCENDING/DESCENDING ORBIT QUALIFIER|CODE TABLE|0|0|2|CODE TABLE|0|1 +008076|band|table|TYPE OF BAND|CODE TABLE|0|0|6|CODE TABLE|0|2 +008077|radiometerSensedSurfaceType|table|RADIOMETER SENSED SURFACE TYPE|CODE TABLE|0|0|7|CODE TABLE|0|3 +008079|productStatus|table|PRODUCT STATUS|CODE TABLE|0|0|4|CODE TABLE|0|2 +008080|qualifierForGtsppQualityFlag|table|QUALIFIER FOR GTSPP QUALITY FLAG|CODE TABLE|0|0|6|CODE TABLE|0|2 +008081|equipmentType|table|TYPE OF EQUIPMENT|CODE TABLE|0|0|6|CODE TABLE|0|2 +008082|modificationOfSensorHeightToAnotherValue|table|MODIFICATION OF SENSOR HEIGHT TO ANOTHER VALUE|CODE TABLE|0|0|3|CODE TABLE|0|1 +008083|nominalValueIndicator|flag|NOMINAL VALUE INDICATOR|FLAG TABLE|0|0|15|FLAG TABLE|0|5 +008085|beamIdentifier|table|BEAM IDENTIFIER|CODE TABLE|0|0|3|CODE TABLE|0|1 +008086|verticalSignificanceForNwp|flag|VERTICAL SIGNIFICANCE FOR NWP|FLAG TABLE|0|0|12|FLAG TABLE|0|4 +008087|cornerPositionOfObservation|table|CORNER POSITION OF OBSERVATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +008088|mapSignificance|table|MAP SIGNIFICANCE|CODE TABLE|0|0|6|CODE TABLE|0|2 +008090|decimalScaleOfFollowingSignificands|long|DECIMAL SCALE OF FOLLOWING SIGNIFICANDS|Numeric|0|-127|8|Numeric|0|3 +008091|coordinatesSignificance|table|COORDINATES SIGNIFICANCE|CODE TABLE|0|0|8|CODE TABLE|0|3 +008092|measurementUncertaintyExpression|table|MEASUREMENT UNCERTAINTY EXPRESSION|CODE TABLE|0|0|5|CODE TABLE|0|2 +008093|measurementUncertaintySignificance|table|MEASUREMENT UNCERTAINTY SIGNIFICANCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +010001|heightOfLandSurface|long|HEIGHT OF LAND SURFACE|m|0|-400|15|m|0|5 +010002|nonCoordinateHeight|long|HEIGHT|m|-1|-40|16|m|-1|5 +010003|nonCoordinateGeopotential|long|GEOPOTENTIAL|m2 s-2|-1|-400|17|m2 s-2|-1|6 +010004|nonCoordinatePressure|long|PRESSURE|Pa|-1|0|14|Pa|-1|5 +010007|nonCoordinateHeight|long|HEIGHT|m|0|-1000|17|m|0|6 +010008|nonCoordinateGeopotential|long|GEOPOTENTIAL|m2 s-2|0|-10000|20|m2 s-2|0|7 +010009|nonCoordinateGeopotentialHeight|long|GEOPOTENTIAL HEIGHT|gpm|0|-1000|17|gpm|0|5 +010010|minimumPressureReducedToMeanSeaLevel|long|MINIMUM PRESSURE REDUCED TO MEAN SEA LEVEL|Pa|-1|0|14|Pa|-1|5 +010011|maximumPressureReducedToMeanSeaLevel|long|MAXIMUM PRESSURE REDUCED TO MEAN SEA LEVEL|Pa|-1|0|14|Pa|-1|5 +010031|DistanceFromEarthCentreInDirectionOfNorthPole|double|IN DIRECTION OF THE NORTH POLE, DISTANCE FROM THE EARTH'S CENTRE|m|2|-1073741824|31|m|2|10 +010032|satelliteDistanceToEarthCentre|double|SATELLITE DISTANCE TO EARTH'S CENTRE|m|1|0|27|m|2|9 +010033|altitudePlatformToEllipsoid|double|ALTITUDE (PLATFORM TO ELLIPSOID)|m|1|0|27|m|2|9 +010034|earthRadius|double|EARTH'S RADIUS|m|1|0|27|m|2|9 +010035|earthLocalRadiusOfCurvature|double|EARTH'S LOCAL RADIUS OF CURVATURE|m|1|62000000|22|m|1|8 +010036|geoidUndulation|double|GEOID UNDULATION|m|2|-15000|15|m|2|6 +010038|maximumHeightOfDeckCargoAboveSummerLoadLine|long|MAXIMUM HEIGHT OF DECK CARGO ABOVE SUMMER LOAD LINE|m|0|0|6|m|0|2 +010039|departureOfReferenceLevelSummerMaximumLoadLineFromActualSeaLevel|long|DEPARTURE OF REFERENCE LEVEL (SUMMER MAXIMUM LOAD LINE) FROM ACTUAL SEA LEVEL|m|0|-32|6|m|0|3 +010040|numberOfRetrievedLayers|long|NUMBER OF RETRIEVED LAYERS|Numeric|0|0|10|Numeric|0|4 +010050|standardDeviationAltitude|double|STANDARD DEVIATION ALTITUDE|m|2|0|16|m|2|5 +010051|pressureReducedToMeanSeaLevel|long|PRESSURE REDUCED TO MEAN SEA LEVEL|Pa|-1|0|14|Pa|-1|5 +010052|altimeterSettingQnh|long|ALTIMETER SETTING (QNH)|Pa|-1|0|14|Pa|-1|5 +010053|globalNavigationSatelliteSystemAltitude|long|GLOBAL NAVIGATION SATELLITE SYSTEM ALTITUDE|m|0|-1000|17|m|0|5 +010060|pressureChange|long|PRESSURE CHANGE|Pa|-1|-1024|11|Pa|-1|4 +010061|3HourPressureChange|long|3-HOUR PRESSURE CHANGE|Pa|-1|-500|10|Pa|-1|4 +010062|24HourPressureChange|long|24-HOUR PRESSURE CHANGE|Pa|-1|-1000|11|Pa|-1|4 +010063|characteristicOfPressureTendency|table|CHARACTERISTIC OF PRESSURE TENDENCY|CODE TABLE|0|0|4|CODE TABLE|0|2 +010064|sigmetCruisingLevel|table|SIGMET CRUISING LEVEL|CODE TABLE|0|0|3|CODE TABLE|0|1 +010070|indicatedAircraftAltitude|long|INDICATED AIRCRAFT ALTITUDE|m|0|-400|16|m|0|5 +010071|verticalResolution|long|VERTICAL RESOLUTION|m|0|0|14|m|0|5 +010079|offNadirAngleOfTheSatelliteFromPlatformData|double|OFF-NADIR ANGLE OF THE SATELLITE FROM PLATFORM DATA|deg|4|0|16|deg|4|5 +010080|viewingZenithAngle|double|VIEWING ZENITH ANGLE|deg|2|-9000|15|deg|2|5 +010081|cogAltitudeAboveReferenceEllipsoid|double|ALTITUDE OF COG ABOVE REFERENCE ELLIPSOID|m|3|0|31|m|3|10 +010082|instantaneousAltitudeRate|double|INSTANTANEOUS ALTITUDE RATE|m/s|3|-65536|17|m/s|3|6 +010083|squaredOffNadirAngleOfSatelliteFromPlatformData|double|SQUARED OFF-NADIR ANGLE OF THE SATELLITE FROM PLATFORM DATA|deg2|2|0|16|deg2|2|5 +010084|squaredOffNadirAngleOfSatelliteFromWaveformData|double|SQUARED OFF-NADIR ANGLE OF THE SATELLITE FROM WAVEFORM DATA|deg2|2|0|16|deg2|2|5 +010085|meanSeaSurfaceHeight|double|MEAN SEA-SURFACE HEIGHT|m|3|-131072|18|m|3|6 +010086|geoidHeight|double|GEOID'S HEIGHT|m|3|-131072|18|m|3|6 +010087|oceanDepthOrLandElevation|double|OCEAN DEPTH/LAND ELEVATION|m|1|-131072|18|m|1|6 +010088|totalGeocentricOceanTideHeightSolution1|double|TOTAL GEOCENTRIC OCEAN TIDE HEIGHT (SOLUTION 1)|m|3|-32768|16|m|3|5 +010089|totalGeocentricOceanTideHeightSolution2|double|TOTAL GEOCENTRIC OCEAN TIDE HEIGHT (SOLUTION 2)|m|3|-32768|16|m|3|5 +010090|longPeriodTideHeight|double|LONG PERIOD TIDE HEIGHT|m|3|-32768|16|m|3|5 +010091|tidalLoadingHeight|double|TIDAL LOADING HEIGHT|m|3|-32768|16|m|3|5 +010092|solidEarthTideHeight|double|SOLID EARTH TIDE HEIGHT|m|3|-32768|16|m|3|5 +010093|geocentricPoleTideHeight|double|GEOCENTRIC POLE TIDE HEIGHT|m|3|-32768|16|m|3|5 +010095|heightOfAtmosphere|long|HEIGHT OF ATMOSPHERE USED|m|0|0|16|m|0|5 +010096|meanDynamicTopography|double|MEAN DYNAMIC TOPOGRAPHY|m|3|-131072|18|m|3|6 +010097|meanSeaSurfaceHeightFromAltimeterOnly|double|MEAN SEA-SURFACE HEIGHT FROM ALTIMETER ONLY|m|3|-131072|18|m|3|6 +010098|loadingTideHeightGeocentricOceanTideSolution1|double|LOADING TIDE HEIGHT GEOCENTRIC OCEAN TIDE SOLUTION 1|m|4|-2000|12|m|4|4 +010099|loadingTideHeightGeocentricOceanTideSolution2|double|LOADING TIDE HEIGHT GEOCENTRIC OCEAN TIDE SOLUTION 2|m|4|-2000|12|m|4|4 +010100|nonEquilibriumLongPeriodTideHeight|double|NON-EQUILIBRIUM LONG PERIOD TIDE HEIGHT|m|4|-2000|12|m|4|4 +010101|squaredOffNadirAngleOfSatelliteFromWaveformData|double|SQUARED OFF-NADIR ANGLE OF THE SATELLITE FROM WAVEFORM DATA|deg2|2|-32768|16|deg2|2|5 +010102|seaSurfaceHeightAnomaly|double|SEA-SURFACE HEIGHT ANOMALY|m|3|-32768|16|m|3|5 +010103|meanDynamicTopographyAccuracy|double|MEAN DYNAMIC TOPOGRAPHY ACCURACY|m|3|-131072|18|m|3|6 +011001|windDirection|long|WIND DIRECTION|deg|0|0|9|deg|0|3 +011002|windSpeed|double|WIND SPEED|m/s|1|0|12|m/s|1|4 +011003|u|double|U-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011004|v|double|V-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011005|w|double|W-COMPONENT|Pa/s|1|-512|10|Pa/s|1|4 +011006|w|double|W-COMPONENT|m/s|2|-4096|13|m/s|2|4 +011007|relativeWindDirectionInDegreesOffBow|long|RELATIVE WIND DIRECTION (IN DEGREES OFF BOW)|deg|0|0|9|deg|0|3 +011008|relativeWindSpeed|double|RELATIVE WIND SPEED|m/s|1|0|12|m/s|1|4 +011010|windDirectionAssociatedWithWindSpeedWhichFollows|long|WIND DIRECTION ASSOCIATED WITH WIND SPEED WHICH FOLLOWS|deg|0|0|9|deg|0|3 +011011|windDirectionAt10M|long|WIND DIRECTION AT 10 M|deg|0|0|9|deg|0|3 +011012|windSpeedAt10M|double|WIND SPEED AT 10 M|m/s|1|0|12|m/s|1|4 +011013|windDirectionAt5M|long|WIND DIRECTION AT 5 M|deg|0|0|9|deg|0|3 +011014|windSpeedAt5M|double|WIND SPEED AT 5 M|m/s|1|0|12|m/s|1|4 +011016|extremeCounterclockwiseWindDirectionOfAVariableWind|long|EXTREME COUNTERCLOCKWISE WIND DIRECTION OF A VARIABLE WIND|deg|0|0|9|deg|0|3 +011017|extremeClockwiseWindDirectionOfAVariableWind|long|EXTREME CLOCKWISE WIND DIRECTION OF A VARIABLE WIND|deg|0|0|9|deg|0|3 +011019|steadinessOfWind|long|STEADINESS OF WIND|%|0|0|7|%|0|3 +011021|relativeVorticity|double|RELATIVE VORTICITY|/s|9|-65536|17|/s|9|6 +011022|divergence|double|DIVERGENCE|/s|9|-65536|17|/s|9|6 +011023|velocityPotential|long|VELOCITY POTENTIAL|m2/s|-2|-65536|17|m2/s|-2|6 +011030|extendedDegreeOfTurbulence|table|EXTENDED DEGREE OF TURBULENCE|CODE TABLE|0|0|6|CODE TABLE|0|2 +011031|degreeOfTurbulence|table|DEGREE OF TURBULENCE|CODE TABLE|0|0|4|CODE TABLE|0|2 +011032|heightOfBaseOfTurbulence|long|HEIGHT OF BASE OF TURBULENCE|m|-1|-40|16|m|-1|5 +011033|heightOfTopOfTurbulence|long|HEIGHT OF TOP OF TURBULENCE|m|-1|-40|16|m|-1|5 +011034|verticalGustVelocity|double|VERTICAL GUST VELOCITY|m/s|1|-1024|11|m/s|1|4 +011035|verticalGustAcceleration|double|VERTICAL GUST ACCELERATION|m s-2|2|-8192|14|m s-2|2|5 +011036|maximumDerivedEquivalentVerticalGustSpeed|double|MAXIMUM DERIVED EQUIVALENT VERTICAL GUST SPEED|m/s|1|0|10|m/s|1|4 +011037|turbulenceIndex|table|TURBULENCE INDEX|CODE TABLE|0|0|6|CODE TABLE|0|2 +011038|timeOfOccurrenceOfPeakEddyDissipationRate|table|TIME OF OCCURRENCE OF PEAK EDDY DISSIPATION RATE|CODE TABLE|0|0|5|CODE TABLE|0|2 +011039|extendedTimeOfOccurrenceOfPeakEddyDissipationRate|table|EXTENDED TIME OF OCCURRENCE OF PEAK EDDY DISSIPATION RATE|CODE TABLE|0|0|6|CODE TABLE|0|2 +011040|maximumWindSpeedMeanWind|double|MAXIMUM WIND SPEED (MEAN WIND)|m/s|1|0|12|m/s|1|4 +011041|maximumWindGustSpeed|double|MAXIMUM WIND GUST SPEED|m/s|1|0|12|m/s|1|4 +011042|maximumWindSpeed10MinuteMeanWind|double|MAXIMUM WIND SPEED (10-MINUTE MEAN WIND)|m/s|1|0|12|m/s|1|4 +011043|maximumWindGustDirection|long|MAXIMUM WIND GUST DIRECTION|deg|0|0|9|deg|0|3 +011044|meanWindDirectionForSurfaceTo1500M|long|MEAN WIND DIRECTION FOR SURFACE - 1 500 M (5 000 FEET)|deg|0|0|9|deg|0|3 +011045|meanWindSpeedForSurfaceTo1500M|double|MEAN WIND SPEED FOR SURFACE - 1 500 M (5 000 FEET)|m/s|1|0|12|m/s|1|4 +011046|maximumInstantaneousWindSpeed|double|MAXIMUM INSTANTANEOUS WIND SPEED|m/s|1|0|12|m/s|1|4 +011047|maximumInstantaneousWindSpeedOver10Minutes|double|MAXIMUM INSTANTANEOUS WIND SPEED OVER 10 MINUTES|m/s|1|0|12|m/s|1|4 +011049|windDirectionStandardDeviation|long|STANDARD DEVIATION OF WIND DIRECTION|deg|0|0|9|deg|0|3 +011050|standardDeviationOfHorizontalWindSpeed|double|STANDARD DEVIATION OF HORIZONTAL WIND SPEED|m/s|1|0|12|m/s|1|4 +011051|standardDeviationOfVerticalWindSpeed|double|STANDARD DEVIATION OF VERTICAL WIND SPEED|m/s|1|0|8|m/s|1|3 +011052|formalUncertaintyInWindSpeed|double|FORMAL UNCERTAINTY IN WIND SPEED|m/s|2|0|13|m/s|2|5 +011053|formalUncertaintyInWindDirection|double|FORMAL UNCERTAINTY IN WIND DIRECTION|deg|2|0|15|deg|2|5 +011054|meanWindDirectionFor1500To3000M|long|MEAN WIND DIRECTION FOR 1 500 - 3 000 M|deg|0|0|9|deg|0|3 +011055|meanWindSpeedFor1500To3000M|double|MEAN WIND SPEED FOR 1 500 - 3 000 M|m/s|1|0|12|m/s|1|4 +011061|absoluteWindShearIn1KmLayerBelow|double|ABSOLUTE WIND SHEAR IN 1 KM LAYER BELOW|m/s|1|0|12|m/s|1|4 +011062|absoluteWindShearIn1KmLayerAbove|double|ABSOLUTE WIND SHEAR IN 1 KM LAYER ABOVE|m/s|1|0|12|m/s|1|4 +011070|designatorOfRunwayAffectedByWindShearIncludingAll|string|DESIGNATOR OF THE RUNWAY AFFECTED BY WIND SHEAR (INCLUDING ALL)|CCITT IA5|0|0|32|Character|0|4 +011071|turbulentVerticalMomentumFlux|double|TURBULENT VERTICAL MOMENTUM FLUX|m2 s-2|3|-128|14|m2 s-2|3|5 +011072|turbulentVerticalBuoyancyFlux|double|TURBULENT VERTICAL BUOYANCY FLUX|K m s-1|3|-128|11|K m s-1|3|4 +011073|turbulentKineticEnergy|double|TURBULENT KINETIC ENERGY|m2 s-2|2|-1024|13|m2 s-2|2|4 +011074|dissipationEnergy|double|DISSIPATION ENERGY|m2 s-2|2|-1024|10|m2 s-2|2|4 +011075|meanTurbulenceIntensityEddyDissipationRate|double|MEAN TURBULENCE INTENSITY (EDDY DISSIPATION RATE)|m2/3 s-1|2|0|8|m2/3 s-1|2|3 +011076|peakTurbulenceIntensityEddyDissipationRate|double|PEAK TURBULENCE INTENSITY (EDDY DISSIPATION RATE)|m2/3 s-1|2|0|8|m2/3 s-1|2|3 +011077|reportingIntervalOrAveragingTimeForEddyDissipationRate|long|REPORTING INTERVAL OR AVERAGING TIME FOR EDDY DISSIPATION RATE|s|0|0|12|s|0|4 +011081|modelWindDirectionAt10M|double|MODEL WIND DIRECTION AT 10 M|deg|2|0|16|deg|2|5 +011082|modelWindSpeedAt10M|double|MODEL WIND SPEED AT 10 M|m/s|2|0|14|m/s|2|4 +011083|windSpeed|long|WIND SPEED|km/h|0|0|9|km/h|0|3 +011084|windSpeed|long|WIND SPEED|kt|0|0|8|kt|0|3 +011085|maximumWindGustSpeed|long|MAXIMUM WIND GUST SPEED|km/h|0|0|9|km/h|0|3 +011086|maximumWindGustSpeed|long|MAXIMUM WIND GUST SPEED|kt|0|0|8|kt|0|3 +011095|u|double|U-COMPONENT OF THE MODEL WIND VECTOR|m/s|1|-4096|13|m/s|1|4 +011096|v|double|V-COMPONENT OF THE MODEL WIND VECTOR|m/s|1|-4096|13|m/s|1|4 +011097|windSpeedFromAltimeter|double|WIND SPEED FROM ALTIMETER|m/s|2|0|12|m/s|2|4 +011098|windSpeedFromRadiometer|double|WIND SPEED FROM RADIOMETER|m/s|2|0|12|m/s|2|4 +011100|aircraftTrueAirspeed|double|AIRCRAFT TRUE AIRSPEED|m/s|1|0|12|m/s|1|4 +011101|aircraftGroundSpeedUComponent|double|AIRCRAFT GROUND SPEED U-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011102|aircraftGroundSpeedVComponent|double|AIRCRAFT GROUND SPEED V-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011103|aircraftGroundSpeedWComponent|double|AIRCRAFT GROUND SPEED W-COMPONENT|m/s|1|-512|10|m/s|1|3 +011104|aircraftTrueHeading|long|TRUE HEADING OF AIRCRAFT, SHIP OR OTHER MOBILE PLATFORM|deg|0|0|9|deg|0|3 +011105|edrAlgorithmVersion|long|EDR ALGORITHM VERSION|Numeric|0|0|6|Numeric|0|2 +011106|runningMinimumConfidence|long|RUNNING MINIMUM CONFIDENCE|Numeric|1|0|4|Numeric|1|2 +011107|maximumNumberBadInputs|long|MAXIMUM NUMBER BAD INPUTS|Numeric|0|0|5|Numeric|0|2 +011108|peakLocation|long|PEAK LOCATION|Numeric|1|0|4|Numeric|1|2 +011109|numberOfGoodEdr|long|NUMBER OF GOOD EDR|Numeric|0|0|4|Numeric|0|2 +011110|uncertaintyInUComponent|double|UNCERTAINTY IN U-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011111|uncertaintyInVComponent|double|UNCERTAINTY IN V-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011112|uncertaintyInWComponent|double|UNCERTAINTY IN W-COMPONENT|m/s|2|-4096|13|m/s|2|4 +011113|trackingCorrelationOfVector|long|TRACKING CORRELATION OF VECTOR|Numeric|3|-1000|12|Numeric|3|4 +012001|airTemperature|double|TEMPERATURE/AIR TEMPERATURE|K|1|0|12|C|1|3 +012002|wetBulbTemperature|double|WET-BULB TEMPERATURE|K|1|0|12|C|1|3 +012003|dewpointTemperature|double|DEWPOINT TEMPERATURE|K|1|0|12|C|1|3 +012004|airTemperatureAt2M|double|AIR TEMPERATURE AT 2 M|K|1|0|12|C|1|3 +012005|wetBulbTemperatureAt2M|double|WET-BULB TEMPERATURE AT 2 M|K|1|0|12|C|1|3 +012006|dewpointTemperatureAt2M|double|DEWPOINT TEMPERATURE AT 2 M|K|1|0|12|C|1|3 +012007|virtualTemperature|double|VIRTUAL TEMPERATURE|K|1|0|12|C|1|3 +012008|uncertaintyInVirtualTemperature|double|UNCERTAINTY IN VIRTUAL TEMPERATURE|K|1|0|12|C|1|4 +012011|maximumTemperatureAtHeightAndOverPeriodSpecified|double|MAXIMUM TEMPERATURE, AT HEIGHT AND OVER PERIOD SPECIFIED|K|1|0|12|C|1|3 +012012|minimumTemperatureAtHeightAndOverPeriodSpecified|double|MINIMUM TEMPERATURE, AT HEIGHT AND OVER PERIOD SPECIFIED|K|1|0|12|C|1|3 +012013|groundMinimumTemperaturePast12Hours|double|GROUND MINIMUM TEMPERATURE, PAST 12 HOURS|K|1|0|12|C|1|3 +012014|maximumTemperatureAt2MPast12Hours|double|MAXIMUM TEMPERATURE AT 2 M, PAST 12 HOURS|K|1|0|12|C|1|3 +012015|minimumTemperatureAt2MPast12Hours|double|MINIMUM TEMPERATURE AT 2 M, PAST 12 HOURS|K|1|0|12|C|1|3 +012016|maximumTemperatureAt2MPast24Hours|double|MAXIMUM TEMPERATURE AT 2 M, PAST 24 HOURS|K|1|0|12|C|1|3 +012017|minimumTemperatureAt2MPast24Hours|double|MINIMUM TEMPERATURE AT 2 M, PAST 24 HOURS|K|1|0|12|C|1|3 +012021|maximumTemperatureAt2M|double|MAXIMUM TEMPERATURE AT 2 M|K|2|0|16|C|2|4 +012022|minimumTemperatureAt2M|double|MINIMUM TEMPERATURE AT 2 M|K|2|0|16|C|2|4 +012023|temperature|long|TEMPERATURE|C|0|-99|8|C|0|2 +012024|dewpointTemperature|long|DEWPOINT TEMPERATURE|C|0|-99|8|C|0|2 +012030|soilTemperature|double|SOIL TEMPERATURE|K|1|0|12|C|1|3 +012049|temperatureChangeOverSpecifiedPeriod|long|TEMPERATURE CHANGE OVER SPECIFIED PERIOD|K|0|-30|6|C|0|2 +012051|standardDeviationTemperature|double|STANDARD DEVIATION TEMPERATURE|K|1|0|10|C|1|3 +012052|highestDailyMeanTemperature|double|HIGHEST DAILY MEAN TEMPERATURE|K|1|0|12|C|1|3 +012053|lowestDailyMeanTemperature|double|LOWEST DAILY MEAN TEMPERATURE|K|1|0|12|C|1|3 +012060|awsEnclosureInternalTemperature|double|AWS ENCLOSURE INTERNAL TEMPERATURE|K|1|0|12|C|1|3 +012061|skinTemperature|double|SKIN TEMPERATURE|K|1|0|12|C|1|3 +012062|equivalentBlackBodyTemperature|double|EQUIVALENT BLACK BODY TEMPERATURE|K|1|0|12|C|1|3 +012063|brightnessTemperature|double|BRIGHTNESS TEMPERATURE|K|1|0|12|C|1|3 +012064|instrumentTemperature|double|INSTRUMENT TEMPERATURE|K|1|0|12|K|1|4 +012065|standardDeviationBrightnessTemperature|double|STANDARD DEVIATION BRIGHTNESS TEMPERATURE|K|1|0|12|K|1|4 +012066|antennaTemperature|double|ANTENNA TEMPERATURE|K|2|0|16|C|2|5 +012070|warmLoadTemperature|double|WARM LOAD TEMPERATURE|K|2|0|16|K|2|5 +012071|coldestClusterTemperature|double|COLDEST CLUSTER TEMPERATURE|K|1|0|12|K|1|4 +012072|radiance|double|RADIANCE|W m-2 sr-1|6|0|31|W m-2 sr-1|6|9 +012075|spectralRadiance|long|SPECTRAL RADIANCE|W m-3 sr-1|-3|0|16|W m-3 sr-1|-3|5 +012076|radiance|double|RADIANCE|W m-2 sr-1|3|0|16|W m-2 sr-1|3|5 +012080|brightnessTemperatureRealPart|double|BRIGHTNESS TEMPERATURE REAL PART|K|2|-10000|16|K|2|5 +012081|brightnessTemperatureImaginaryPart|double|BRIGHTNESS TEMPERATURE IMAGINARY PART|K|2|-10000|16|K|2|5 +012082|pixelRadiometricAccuracy|double|PIXEL RADIOMETRIC ACCURACY|K|2|0|12|K|2|4 +012101|airTemperature|double|TEMPERATURE/AIR TEMPERATURE|K|2|0|16|C|2|4 +012102|wetBulbTemperature|double|WET-BULB TEMPERATURE|K|2|0|16|C|2|4 +012103|dewpointTemperature|double|DEWPOINT TEMPERATURE|K|2|0|16|C|2|4 +012104|airTemperatureAt2M|double|AIR TEMPERATURE AT 2 M|K|2|0|16|C|2|4 +012105|webBulbTemperatureAt2M|double|WEB-BULB TEMPERATURE AT 2 M|K|2|0|16|C|2|4 +012106|dewpointTemperatureAt2M|double|DEWPOINT TEMPERATURE AT 2 M|K|2|0|16|C|2|4 +012107|virtualTemperature|double|VIRTUAL TEMPERATURE|K|2|0|16|C|2|4 +012111|maximumTemperatureAtHeightAndOverPeriodSpecified|double|MAXIMUM TEMPERATURE, AT HEIGHT AND OVER PERIOD SPECIFIED|K|2|0|16|C|2|4 +012112|minimumTemperatureAtHeightAndOverPeriodSpecified|double|MINIMUM TEMPERATURE, AT HEIGHT AND OVER PERIOD SPECIFIED|K|2|0|16|C|2|4 +012113|groundMinimumTemperaturePast12Hours|double|GROUND MINIMUM TEMPERATURE, PAST 12 HOURS|K|2|0|16|C|2|4 +012114|maximumTemperatureAt2MPast12Hours|double|MAXIMUM TEMPERATURE AT 2 M, PAST 12 HOURS|K|2|0|16|C|2|4 +012115|minimumTemperatureAt2MPast12Hours|double|MINIMUM TEMPERATURE AT 2 M, PAST 12 HOURS|K|2|0|16|C|2|4 +012116|maximumTemperatureAt2MPast24Hours|double|MAXIMUM TEMPERATURE AT 2 M, PAST 24 HOURS|K|2|0|16|C|2|4 +012117|minimumTemperatureAt2MPast24Hours|double|MINIMUM TEMPERATURE AT 2 M, PAST 24 HOURS|K|2|0|16|C|2|4 +012118|maximumTemperatureAtHeightSpecifiedPast24Hours|double|MAXIMUM TEMPERATURE AT HEIGHT SPECIFIED, PAST 24 HOURS|K|2|0|16|C|2|4 +012119|minimumTemperatureAtHeightSpecifiedPast24Hours|double|MINIMUM TEMPERATURE AT HEIGHT SPECIFIED, PAST 24 HOURS|K|2|0|16|C|2|4 +012120|groundTemperature|double|GROUND TEMPERATURE|K|2|0|16|C|2|4 +012121|groundMinimumTemperature|double|GROUND MINIMUM TEMPERATURE|K|2|0|16|C|2|4 +012122|groundMinimumTemperatureOfPrecedingNight|double|GROUND MINIMUM TEMPERATURE OF THE PRECEDING NIGHT|K|2|0|16|C|2|4 +012128|roadSurfaceTemperature|double|ROAD SURFACE TEMPERATURE|K|2|0|16|C|2|5 +012129|roadSubSurfaceTemperature|double|ROAD SUBSURFACE TEMPERATURE|K|2|0|16|C|2|5 +012130|soilTemperature|double|SOIL TEMPERATURE|K|2|0|16|C|2|4 +012131|snowTemperature|double|SNOW TEMPERATURE|K|2|0|16|C|2|4 +012132|iceSurfaceTemperature|double|ICE SURFACE TEMPERATURE|K|2|0|16|C|2|4 +012151|dailyMeanTemperatureStandardDeviation|double|STANDARD DEVIATION OF DAILY MEAN TEMPERATURE|K|2|0|12|C|2|4 +012152|highestDailyMeanTemperature|double|HIGHEST DAILY MEAN TEMPERATURE|K|2|0|16|C|2|4 +012153|lowestDailyMeanTemperature|double|LOWEST DAILY MEAN TEMPERATURE|K|2|0|16|C|2|4 +012158|noiseEquivalentDeltaTemperatureWhileViewingColdTarget|double|NOISE-EQUIVALENT DELTA TEMPERATURE WHILE VIEWING COLD TARGET|K|2|0|12|C|2|4 +012159|noiseEquivalentDeltaTemperatureWhileViewingWarmTarget|double|NOISE-EQUIVALENT DELTA TEMPERATURE WHILE VIEWING WARM TARGET|K|2|0|12|C|2|4 +012161|skinTemperature|double|SKIN TEMPERATURE|K|2|0|16|C|2|4 +012162|equivalentBlackBodyTemperature|double|EQUIVALENT BLACK BODY TEMPERATURE|K|2|0|16|C|2|4 +012163|brightnessTemperature|double|BRIGHTNESS TEMPERATURE|K|2|0|16|C|2|4 +012164|instrumentTemperature|double|INSTRUMENT TEMPERATURE|K|2|0|16|K|2|5 +012165|directSunBrightnessTemperature|long|DIRECT SUN BRIGHTNESS TEMPERATURE|K|0|0|23|K|0|7 +012166|snapshotAccuracy|double|SNAPSHOT ACCURACY|K|1|-4000|13|K|1|4 +012167|radiometricAccuracyPurePolarization|double|RADIOMETRIC ACCURACY (PURE POLARIZATION)|K|1|0|9|K|1|3 +012168|radiometricAccuracyCrossPolarization|double|RADIOMETRIC ACCURACY (CROSS POLARIZATION)|K|1|0|9|K|1|3 +012171|coldestClusterTemperature|double|COLDEST CLUSTER TEMPERATURE|K|2|0|16|K|2|5 +012180|averaged12MicronBtForAllClearPixelsAtNadir|double|AVERAGED 12 MICRON BT FOR ALL CLEAR PIXELS AT NADIR|K|2|0|16|K|2|5 +012181|averaged11MicronBtForAllClearPixelsAtNadir|double|AVERAGED 11 MICRON BT FOR ALL CLEAR PIXELS AT NADIR|K|2|0|16|K|2|5 +012182|averaged37MicronBtForAllClearPixelsAtNadir|double|AVERAGED 3.7 MICRON BT FOR ALL CLEAR PIXELS AT NADIR|K|2|0|16|K|2|5 +012183|averaged12MicronBtForAllClearPixelsForwardView|double|AVERAGED 12 MICRON BT FOR ALL CLEAR PIXELS, FORWARD VIEW|K|2|0|16|K|2|5 +012184|averaged11MicronBtForAllClearPixelsForwardView|double|AVERAGED 11 MICRON BT FOR ALL CLEAR PIXELS, FORWARD VIEW|K|2|0|16|K|2|5 +012185|averaged37MicronBtForAllClearPixelsForwardView|double|AVERAGED 3.7 MICRON BT FOR ALL CLEAR PIXELS, FORWARD VIEW|K|2|0|16|K|2|5 +012186|meanNadirSeaSurfaceTemperature|double|MEAN NADIR SEA-SURFACE TEMPERATURE|K|2|0|16|K|2|5 +012187|meanDualViewSeaSurfaceTemperature|double|MEAN DUAL VIEW SEA-SURFACE TEMPERATURE|K|2|0|16|K|2|5 +012188|interpolated238GhzBrightnessTFromMwr|double|INTERPOLATED 23.8 GHZ BRIGHTNESS T FROM MWR|K|2|0|16|K|2|5 +012189|interpolated365GhzBrightnessTFromMwr|double|INTERPOLATED 36.5 GHZ BRIGHTNESS T FROM MWR|K|2|0|16|K|2|5 +013001|specificHumidity|double|SPECIFIC HUMIDITY|kg/kg|5|0|14|kg/kg|5|5 +013002|mixingRatio|double|MIXING RATIO|kg/kg|5|0|14|kg/kg|5|5 +013003|relativeHumidity|long|RELATIVE HUMIDITY|%|0|0|7|%|0|3 +013004|vapourPressure|long|VAPOUR PRESSURE|Pa|-1|0|10|Pa|-1|4 +013005|vapourDensity|double|VAPOUR DENSITY|kg m-3|3|0|7|kg m-3|3|3 +013006|mixingHeights|long|MIXING HEIGHTS|m|-1|-40|16|m|-1|5 +013007|minimumRelativeHumidity|long|MINIMUM RELATIVE HUMIDITY|%|0|0|7|%|0|3 +013008|maximumRelativeHumidity|long|MAXIMUM RELATIVE HUMIDITY|%|0|0|7|%|0|3 +013009|relativeHumidity|double|RELATIVE HUMIDITY|%|1|-1000|12|%|1|4 +013011|totalPrecipitationOrTotalWaterEquivalent|double|TOTAL PRECIPITATION/TOTAL WATER EQUIVALENT|kg m-2|1|-1|14|kg m-2|1|5 +013012|depthOfFreshSnow|double|DEPTH OF FRESH SNOW|m|2|-2|12|m|2|4 +013013|totalSnowDepth|double|TOTAL SNOW DEPTH|m|2|-2|16|m|2|5 +013014|rainfallOrWaterEquivalentOfSnowAveragedRate|double|RAINFALL/WATER EQUIVALENT OF SNOW (AVERAGED RATE)|kg m-2 s-1|4|0|12|kg m-2 s-1|4|4 +013015|snowfallAveragedRate|double|SNOWFALL (AVERAGED RATE)|m/s|7|0|12|m/s|7|4 +013016|precipitableWater|long|PRECIPITABLE WATER|kg m-2|0|0|7|kg m-2|0|3 +013019|totalPrecipitationPast1Hour|double|TOTAL PRECIPITATION PAST 1 HOUR|kg m-2|1|-1|14|kg m-2|1|4 +013020|totalPrecipitationPast3Hours|double|TOTAL PRECIPITATION PAST 3 HOURS|kg m-2|1|-1|14|kg m-2|1|5 +013021|totalPrecipitationPast6Hours|double|TOTAL PRECIPITATION PAST 6 HOURS|kg m-2|1|-1|14|kg m-2|1|5 +013022|totalPrecipitationPast12Hours|double|TOTAL PRECIPITATION PAST 12 HOURS|kg m-2|1|-1|14|kg m-2|1|5 +013023|totalPrecipitationPast24Hours|double|TOTAL PRECIPITATION PAST 24 HOURS|kg m-2|1|-1|14|kg m-2|1|5 +013031|evapotranspiration|long|EVAPOTRANSPIRATION|kg m-2|0|0|7|kg m-2|0|3 +013032|evaporation|double|EVAPORATION/EVAPOTRANSPIRATION|kg m-2|1|0|8|kg m-2|1|3 +013033|evaporation|double|EVAPORATION/EVAPOTRANSPIRATION|kg m-2|1|0|10|kg m-2|1|4 +013038|superadiabaticIndicator|table|SUPERADIABATIC INDICATOR|CODE TABLE|0|0|2|CODE TABLE|0|1 +013039|terrainTypeIceOrSnow|table|TERRAIN TYPE (ICE/SNOW)|CODE TABLE|0|0|3|CODE TABLE|0|1 +013040|surfaceFlag|table|SURFACE FLAG|CODE TABLE|0|0|4|CODE TABLE|0|2 +013041|pasquillGiffordStabilityCategory|table|PASQUILL-GIFFORD STABILITY CATEGORY|CODE TABLE|0|0|4|CODE TABLE|0|2 +013042|parcelLiftedIndexTo500Hpa|long|PARCEL LIFTED INDEX (TO 500 HPA)|K|0|-20|6|K|0|2 +013043|bestLiftedIndexTo500Hpa|long|BEST LIFTED INDEX (TO 500 HPA)|K|0|-20|6|K|0|2 +013044|kIndex|long|K INDEX|K|0|-30|8|K|0|3 +013045|koIndex|long|KO INDEX|K|0|-30|8|K|0|3 +013046|maximumBuoyancy|long|MAXIMUM BUOYANCY|K|0|-30|8|K|0|3 +013047|modifiedShowalterStabilityIndex|long|MODIFIED SHOWALTER STABILITY INDEX|K|0|-60|6|C|0|2 +013048|waterFraction|double|WATER FRACTION|%|1|0|10|%|1|4 +013051|frequencyGroupPrecipitation|table|FREQUENCY GROUP, PRECIPITATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +013052|highestDailyAmountOfPrecipitation|double|HIGHEST DAILY AMOUNT OF PRECIPITATION|kg m-2|1|-1|14|kg m-2|1|5 +013055|intensityOfPrecipitation|double|INTENSITY OF PRECIPITATION|kg m-2 s-1|4|0|8|mm/h|1|4 +013056|characterAndIntensityOfPrecipitation|table|CHARACTER AND INTENSITY OF PRECIPITATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +013057|timeOfBeginningOrEndOfPrecipitation|table|TIME OF BEGINNING OR END OF PRECIPITATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +013058|sizeOfPrecipitatingElement|double|SIZE OF PRECIPITATING ELEMENT|m|4|0|7|mm|1|3 +013059|numberOfFlashesThunderstorm|long|NUMBER OF FLASHES (THUNDERSTORM)|Numeric|0|0|7|Numeric|0|3 +013060|totalAccumulatedPrecipitation|double|TOTAL ACCUMULATED PRECIPITATION|kg m-2|1|-1|17|kg m-2|1|5 +013071|upstreamWaterLevel|double|UPSTREAM WATER LEVEL|m|2|0|14|m|2|4 +013072|downstreamWaterLevel|double|DOWNSTREAM WATER LEVEL|m|2|0|14|m|2|4 +013073|maximumWaterLevel|double|MAXIMUM WATER LEVEL|m|2|0|14|m|2|4 +013074|groundWaterLevel|double|GROUND WATER LEVEL|m|2|0|18|m|2|6 +013080|waterPh|double|WATER PH|pH unit|1|0|10|pH unit|1|3 +013081|waterConductivity|double|WATER CONDUCTIVITY|S/m|3|0|14|S/m|3|4 +013082|waterTemperature|double|WATER TEMPERATURE|K|1|0|12|K|1|4 +013083|dissolvedOxygen|double|DISSOLVED OXYGEN|kg m-3|6|0|15|kg m-3|6|5 +013084|turbidity|long|TURBIDITY|lm|0|0|14|lm|0|4 +013085|oxidationReductionPotential|double|OXIDATION REDUCTION POTENTIAL (ORP)|V|3|0|14|V|3|4 +013090|radiometerWaterVapourContent|double|RADIOMETER WATER VAPOUR CONTENT|kg m-2|1|0|10|kg m-2|1|4 +013091|radiometerLiquidContent|double|RADIOMETER LIQUID CONTENT|kg m-2|2|0|8|kg m-2|2|3 +013093|cloudOpticalThickness|long|CLOUD OPTICAL THICKNESS|Numeric|0|0|8|Numeric|0|3 +013095|totalColumnWaterVapour|double|TOTAL COLUMN WATER VAPOUR|kg m-2|4|0|19|kg m-2|4|6 +013096|mwrWaterVapourContent|double|MWR WATER VAPOUR CONTENT|kg m-2|2|0|14|kg m-2|2|5 +013097|mwrLiquidWaterContent|double|MWR LIQUID WATER CONTENT|kg m-2|2|0|14|kg m-2|2|5 +013098|integratedWaterVapourDensity|double|INTEGRATED WATER VAPOUR DENSITY|kg m-2|8|0|30|kg m-2|8|10 +013099|log10OfIntegratedCloudParticleDensity|double|LOG10 OF INTEGRATED CLOUD PARTICLE DENSITY|log (m-2)|1|0|7|log (m-2)|1|3 +013100|log10OfIntegratedCloudParticleArea|double|LOG10 OF INTEGRATED CLOUD PARTICLE AREA|log (m2 m-2)|1|-70|7|log (m2 m-2)|1|2 +013101|log10OfIntegratedCloudParticleVolume|double|LOG10 OF INTEGRATED CLOUD PARTICLE VOLUME|log (m3 m-2)|1|-140|7|log (m3 m-2)|1|3 +013109|iceOrLiquidWaterPath|double|ICE/LIQUID WATER PATH|kg m-2|3|0|10|kg m-2|3|4 +013110|massMixingRatio|long|MASS MIXING RATIO|%|0|0|7|%|0|3 +013111|soilMoisture|long|SOIL MOISTURE|g/kg|0|0|10|g/kg|0|4 +013112|objectWetnessDuration|long|OBJECT WETNESS DURATION|s|0|0|17|s|0|5 +013114|rateOfIceAccretion|double|RATE OF ICE ACCRETION|kg m-2 h-1|1|0|11|kg m-2 h-1|1|4 +013115|iceThickness|double|ICE THICKNESS|m|2|0|19|m|2|6 +013116|waterFilmThickness|double|WATER FILM THICKNESS|m|4|0|10|m|3|2 +013117|snowDensityLiquidWaterContent|long|SNOW DENSITY (LIQUID WATER CONTENT)|kg m-3|0|0|10|kg m-3|0|3 +013118|freshSnowDepth|double|DEPTH OF FRESH SNOW (HIGH ACCURACY)|m|3|-2|14|m|3|5 +013155|precipitationIntensityHighAccuracy|double|INTENSITY OF PRECIPITATION (HIGH ACCURACY)|kg m-2 s-1|5|-1|16|mm/h|2|5 +013160|radiometerLiquidContent|double|RADIOMETER LIQUID CONTENT|kg m-2|2|-350|10|kg m-2|2|3 +013162|cloudLiquidWater|double|CLOUD LIQUID WATER|kg m-2|2|0|8|kg m-2|2|3 +013163|snowWaterEquivalent|long|SNOW WATER EQUIVALENT|kg m-2|0|0|16|kg m-2|0|5 +013164|seaIceFreeboard|double|SEA ICE FREEBOARD|m|3|-131072|18|m|3|6 +014001|longWaveRadiationIntegratedOver24Hours|long|LONG-WAVE RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-3|-65536|17|J m-2|-3|5 +014002|longWaveRadiationIntegratedOverPeriodSpecified|long|LONG-WAVE RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-3|-65536|17|J m-2|-3|5 +014003|shortWaveRadiationIntegratedOver24Hours|long|SHORT-WAVE RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-3|-65536|17|J m-2|-3|5 +014004|shortWaveRadiationIntegratedOverPeriodSpecified|long|SHORT-WAVE RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-3|-65536|17|J m-2|-3|5 +014011|netLongWaveRadiationIntegratedOver24Hours|long|NET LONG-WAVE RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-3|-65536|17|J m-2|-3|5 +014012|netLongWaveRadiationIntegratedOverPeriodSpecified|long|NET LONG-WAVE RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-3|-65536|17|J m-2|-3|5 +014013|netShortWaveRadiation24Hours|long|NET SHORT-WAVE RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-3|-65536|17|J m-2|-3|5 +014014|netShortWaveRadiationIntegratedOverPeriodSpecified|long|NET SHORT-WAVE RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-3|-65536|17|J m-2|-3|5 +014015|netRadiationIntegratedOver24Hours|long|NET RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-4|-16384|15|J m-2|-4|5 +014016|netRadiationIntegratedOverPeriodSpecified|long|NET RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-4|-16384|15|J m-2|-4|5 +014017|instantaneousLongWaveRadiation|long|INSTANTANEOUS LONG-WAVE RADIATION|W m-2|0|-512|10|W m-2|0|4 +014018|instantaneousShortWaveRadiation|long|INSTANTANEOUS SHORT-WAVE RADIATION|W m-2|0|-2048|12|W m-2|0|4 +014019|surfaceAlbedo|long|SURFACE ALBEDO|%|0|0|7|%|0|3 +014020|globalSolarRadiation24Hours|long|GLOBAL SOLAR RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-4|0|15|J m-2|-4|5 +014021|globalSolarRadiationIntegratedOverPeriodSpecified|long|GLOBAL SOLAR RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-4|0|15|J m-2|-4|5 +014022|diffuseSolarRadiationIntegratedOver24Hours|long|DIFFUSE SOLAR RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-4|0|15|J m-2|-4|5 +014023|diffuseSolarRadiationIntegratedOverPeriodSpecified|long|DIFFUSE SOLAR RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-4|0|15|J m-2|-4|5 +014024|directSolarRadiationIntegratedOver24Hours|long|DIRECT SOLAR RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-4|0|15|J m-2|-4|5 +014025|directSolarRadiationIntegratedOverPeriodSpecified|long|DIRECT SOLAR RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-4|0|15|J m-2|-4|5 +014026|cloudTopAlbedo|long|ALBEDO AT THE TOP OF CLOUDS|%|0|0|7|%|0|3 +014027|albedo|long|ALBEDO|%|0|0|7|%|0|3 +014028|globalSolarRadiationIntegratedOverPeriodSpecified|long|GLOBAL SOLAR RADIATION (HIGH ACCURACY), INTEGRATED OVER PERIOD SPECIFIED|J m-2|-2|0|20|J m-2|-2|6 +014029|diffuseSolarRadiationIntegratedOverPeriodSpecified|long|DIFFUSE SOLAR RADIATION (HIGH ACCURACY), INTEGRATED OVER PERIOD SPECIFIED|J m-2|-2|0|20|J m-2|-2|6 +014030|directSolarRadiationIntegratedOverPeriodSpecified|long|DIRECT SOLAR RADIATION (HIGH ACCURACY), INTEGRATED OVER PERIOD SPECIFIED|J m-2|-2|0|20|J m-2|-2|6 +014031|totalSunshine|long|TOTAL SUNSHINE|min|0|0|11|min|0|4 +014032|totalSunshine|long|TOTAL SUNSHINE|h|0|0|10|h|0|4 +014033|totalSunshine|long|TOTAL SUNSHINE|%|0|0|9|%|0|3 +014034|sunshineOverPeriodSpecified|long|SUNSHINE OVER PERIOD SPECIFIED|min|0|0|11|min|0|4 +014035|solarRadiationFlux|double|SOLAR RADIATION FLUX|W m-2|1|0|14|W m-2|1|5 +014042|bidirectionalReflectance|long|BIDIRECTIONAL REFLECTANCE|%|0|0|7|%|0|3 +014043|channelRadiance|double|CHANNEL RADIANCE|W m-2 sr-1 um-1|4|0|23|W m-2 sr-1 um-1|4|7 +014044|channelRadiance|double|CHANNEL RADIANCE|W m-2 sr-1 cm|7|-100000|22|W m-2 sr-1 cm|7|7 +014045|channelRadiance|long|CHANNEL RADIANCE|W m-2 sr-1 cm|0|0|11|W m-2 sr-1 cm|0|4 +014046|scaledRadiance|long|SCALED RADIANCE|W m-2 sr-1 m|0|-5000|16|W m-2 sr-1 m|0|5 +014047|scaledMeanAvhrrRadiance|long|SCALED MEAN AVHRR RADIANCE|W m-2 sr-1 m|0|0|31|W m-2 sr-1 m|0|10 +014048|scaledStandardDeviationAvhrrRadiance|long|SCALED STANDARD DEVIATION AVHRR RADIANCE|W m-2 sr-1 m|0|0|31|W m-2 sr-1 m|0|10 +014050|emissivity|double|EMISSIVITY|%|1|0|10|%|1|4 +014051|directSolarRadiationIntegratedOverLastHour|long|DIRECT SOLAR RADIATION INTEGRATED OVER LAST HOUR|J m-2|-3|0|14|J m-2|-3|4 +014052|globalUpwardSolarRadiationIntegratedOverPeriodSpecified|long|GLOBAL UPWARD SOLAR RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-2|-1048574|20|J m-2|-2|7 +014053|netRadiationIntegratedOverPeriodSpecified|long|NET RADIATION (HIGH ACCURACY), INTEGRATED OVER PERIOD SPECIFIED|J m-2|-2|-1048574|21|J m-2|-2|7 +014054|photosyntheticallyActiveRadiationIntegratedOverPeriodSpecified|long|PHOTOSYNTHETICALLY ACTIVE RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-3|0|16|J m-2|-3|5 +014055|solarActivityIndex|long|SOLAR ACTIVITY INDEX|Numeric|0|-32768|16|Numeric|0|5 +014056|backgroundLuminance|long|BACKGROUND LUMINANCE|cd m-2|0|0|18|cd m-2|0|6 +014057|soilHeatFlux|long|SOIL HEAT FLUX|J m-2|-2|-1048574|21|J m-2|-2|7 +014072|globalUvIrradiation|long|GLOBAL UV IRRADIATION|J m-2|0|-4000000|23|J m-2|0|7 +015001|totalOzone|long|TOTAL OZONE|DU|0|0|10|DU|0|4 +015002|airMassSlantPathAt22Km|long|AIR MASS (SLANT PATH AT 22 KM)|Numeric|2|0|10|Numeric|2|3 +015003|measuredOzonePartialPressureSounding|double|MEASURED OZONE PARTIAL PRESSURE (SOUNDING)|Pa|4|0|9|nbar|0|3 +015004|ozoneSoundingCorrectionFactor|long|OZONE SOUNDING CORRECTION FACTOR (CF)|Numeric|3|0|11|Numeric|3|4 +015005|ozoneP|long|OZONE P|DU|0|0|10|DU|0|3 +015006|log10OfNumberDensityOfAtmosphere|double|LOG10 OF NUMBER DENSITY OF ATMOSPHERE|log (m-3)|5|1800000|20|log (m-3)|5|7 +015008|significandOfVolumetricMixingRatio|long|SIGNIFICAND OF VOLUMETRIC MIXING RATIO|Numeric|0|0|10|Numeric|0|4 +015009|log10OfNumberDensityOfOzone|double|LOG10 OF NUMBER DENSITY OF OZONE|log (m-3)|5|1200000|20|log (m-3)|5|7 +015011|log10IntegratedElectronDensity|double|LOG10 OF INTEGRATED ELECTRON DENSITY|log (m-2)|3|14000|13|log (m-2)|3|4 +015012|totalElectronCountPerSquareMetre|long|TOTAL ELECTRON COUNT PER SQUARE METRE|m-2|-16|0|6|m-2|-16|2 +015015|maxImageSpectralComponentBeforeNormalization|long|MAXIMUM IMAGE SPECTRAL COMPONENT BEFORE NORMALIZATION|Numeric|0|0|31|Numeric|0|10 +015020|integratedOzoneDensity|double|INTEGRATED OZONE DENSITY|kg m-2|8|0|21|kg m-2|8|7 +015021|integratedMassDensity|double|INTEGRATED MASS DENSITY|kg m-2|11|0|31|kg m-2|11|10 +015024|opticalDepth|long|OPTICAL DEPTH|Numeric|4|0|24|Numeric|4|8 +015025|pollutantType|table|TYPE OF POLLUTANT|CODE TABLE|0|0|4|CODE TABLE|0|2 +015026|moleFractionOfPollutant|double|CONCENTRATION OF POLLUTANT (MOL MOL-1)|mol/mol|9|0|9|mol/mol|9|3 +015027|massConcentrationOfPollutant|double|CONCENTRATION OF POLLUTANT (KG M-3)|kg m-3|9|0|10|kg m-3|9|4 +015028|moleFractionOfAtmosphericConstituentOrPollutantInDryAir|double|MOLE FRACTION OF ATMOSPHERIC CONSTITUENT/POLLUTANT IN DRY AIR|0/00|5|0|16|0/00|5|5 +015029|extinctionCoefficient|double|EXTINCTION COEFFICIENT|/m|9|0|30|/m|9|10 +015030|aerosolContaminationIndex|long|AEROSOL CONTAMINATION INDEX|Numeric|2|-1000|12|Numeric|2|4 +015031|atmosphericPathDelayInSatelliteSignal|double|ATMOSPHERIC PATH DELAY IN SATELLITE SIGNAL|m|4|10000|15|m|4|5 +015032|estimatedErrorInAtmosphericPathDelay|double|ESTIMATED ERROR IN ATMOSPHERIC PATH DELAY|m|4|0|10|m|4|4 +015033|differenceInPathDelaysForLimbViewsAtExtremesOfScan|double|DIFFERENCE IN PATH DELAYS FOR LIMB VIEWS AT EXTREMES OF SCAN|m|5|-10000|15|m|5|5 +015034|estimatedErrorInPathDelayDifference|double|ESTIMATED ERROR IN PATH DELAY DIFFERENCE|m|5|0|14|m|5|5 +015035|componentOfZenithPathDelayDueToWaterVapour|double|COMPONENT OF ZENITH PATH DELAY DUE TO WATER VAPOUR|m|4|0|14|m|4|5 +015036|atmosphericRefractivity|double|ATMOSPHERIC REFRACTIVITY|N units|3|0|19|N units|3|6 +015037|bendingAngle|double|BENDING ANGLE|rad|8|-100000|23|rad|8|7 +015041|sulphurDioxideIndex|long|SULPHUR DIOXIDE INDEX|Numeric|2|-1200|14|Numeric|2|4 +015042|reflectance|double|REFLECTANCE|%|2|0|14|%|2|5 +015045|sulphurDioxide|double|SULPHUR DIOXIDE|DU|2|-2000|15|DU|2|5 +015046|volcanoContaminationIndex|long|VOLCANO CONTAMINATION INDEX|Numeric|2|-1000|11|Numeric|2|4 +015049|aerosolAngstromWavelengthExponent|long|AEROSOL ANGSTROM WAVELENGTH EXPONENT|Numeric|3|-2000|14|Numeric|3|5 +015051|meteorologicalOpticalRange|long|METEOROLOGICAL OPTICAL RANGE|m|0|0|18|m|0|6 +015052|log10OfNumberDensityOfAerosolParticlesWithDiameterGreaterThan5Nm|double|LOG10 OF NUMBER DENSITY OF AEROSOL PARTICLES WITH DIAMETER GREATER THAN 5 NM|log (m-3)|1|60|6|log (m-3)|1|3 +015053|log10OfNumberDensityOfAerosolParticlesWithDiameterGreaterThan14Nm|double|LOG10 OF NUMBER DENSITY OF AEROSOL PARTICLES WITH DIAMETER GREATER THAN 14 NM|log (m-3)|2|600|9|log (m-3)|2|4 +015054|log10OfNumberDensityOfAerosolParticlesWithDiameterBetween0p25And2p5|double|LOG10 OF NUMBER DENSITY OF AEROSOL PARTICLES WITH DIAMETER BETWEEN 0.25 AND 2.5 uM|log (m-3)|2|550|9|log (m-3)|2|4 +015055|nonVolatileAerosolRatio|long|NON VOLATILE AEROSOL RATIO|Numeric|2|0|7|Numeric|2|3 +015062|aerosolOpticalThickness|long|AEROSOL OPTICAL THICKNESS|Numeric|3|-1000|14|Numeric|3|5 +015063|attenuatedBackscatter|double|ATTENUATED BACKSCATTER|m-1 sr-1|8|0|20|m-1 sr-1|8|7 +015064|uncertaintyInAttenuatedBackscatter|double|UNCERTAINTY IN ATTENUATED BACKSCATTER|m-1 sr-1|8|0|20|m-1 sr-1|8|7 +015065|particleBackscatterCoefficient|double|PARTICLE BACKSCATTER COEFFICIENT|m-1 sr-1|8|0|20|m-1 sr-1|8|7 +015066|uncertaintyInParticleBackscatterCoefficient|double|UNCERTAINTY IN PARTICLE BACKSCATTER COEFFICIENT|m-1 sr-1|8|0|20|m-1 sr-1|8|7 +015067|particleExtinctionCoefficient|double|PARTICLE EXTINCTION COEFFICIENT|/m|8|0|20|/m|8|7 +015068|uncertaintyInParticleExtinctionCoefficient|double|UNCERTAINTY IN PARTICLE EXTINCTION COEFFICIENT|/m|8|0|20|/m|8|7 +015069|particleLidarRatio|double|PARTICLE LIDAR RATIO|sr|2|0|14|sr|2|5 +015070|uncertaintyInLidarRatio|double|UNCERTAINTY IN LIDAR RATIO|sr|2|0|14|sr|2|5 +015071|particleDepolarizationRatio|double|PARTICLE DEPOLARIZATION RATIO|%|2|0|14|%|2|5 +015072|uncertaintyInDepolarizationRatio|double|UNCERTAINTY IN DEPOLARIZATION RATIO|%|2|0|14|%|2|5 +015073|attenuatedBackscatter1|double|ATTENUATED BACKSCATTER|m-1 sr-1|8|-524288|20|m-1 sr-1|8|7 +015074|particleBackscatterCoefficient1|double|PARTICLE BACKSCATTER COEFFICIENT|m-1 sr-1|8|-524288|20|m-1 sr-1|8|7 +015075|particleExtinctionCoefficient1|double|PARTICLE EXTINCTION COEFFICIENT|m|8|-524288|20|/m|8|7 +015076|particleLidarRatio1|double|PARTICLE LIDAR RATIO|sr|1|-2048|13|sr|1|5 +015077|uncertaintyInLidarRatio1|double|UNCERTAINTY IN LIDAR RATIO|sr|1|0|12|sr|1|5 +015078|particleDepolarizationRatio1|double|PARTICLE DEPOLARIZATION RATIO|%|2|-8192|15|%|2|5 +019001|synopticFeatureType|table|TYPE OF SYNOPTIC FEATURE|CODE TABLE|0|0|6|CODE TABLE|0|2 +019002|effectiveRadiusOfFeature|long|EFFECTIVE RADIUS OF FEATURE|m|-2|0|12|m|-2|4 +019003|windSpeedThreshold|long|WIND SPEED THRESHOLD|m/s|0|0|8|m/s|0|3 +019004|effectiveRadiusWithRespectToWindSpeedsAboveThreshold|long|EFFECTIVE RADIUS WITH RESPECT TO WIND SPEEDS ABOVE THRESHOLD|m|-2|0|12|m|-2|4 +019005|featureDirectionOfMotion|long|DIRECTION OF MOTION OF FEATURE|deg|0|0|9|deg|0|3 +019006|speedOfMotionOfFeature|double|SPEED OF MOTION OF FEATURE|m/s|2|0|14|m/s|2|5 +019007|effectiveRadiusOfFeature|long|EFFECTIVE RADIUS OF FEATURE|m|-3|0|12|m|-3|4 +019008|verticalExtentOfCirculation|table|VERTICAL EXTENT OF CIRCULATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +019009|effectiveRadiusWithRespectToWindSpeedsAboveThresholdLargeStorms|long|EFFECTIVE RADIUS WITH RESPECT TO WIND SPEEDS ABOVE THRESHOLD (LARGE STORMS)|m|-3|0|12|m|-3|4 +019010|methodForTrackingCentreOfSynopticFeature|table|METHOD FOR TRACKING THE CENTRE OF SYNOPTIC FEATURE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019100|timeIntervalToCalculateMovementOfTropicalCyclone|table|TIME INTERVAL TO CALCULATE THE MOVEMENT OF THE TROPICAL CYCLONE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019101|accuracyOfPositionOfCentreOfTropicalCyclone|table|ACCURACY OF THE POSITION OF THE CENTRE OF THE TROPICAL CYCLONE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019102|shapeAndDefinitionOfEyeOfTropicalCyclone|table|SHAPE AND DEFINITION OF THE EYE OF THE TROPICAL CYCLONE|CODE TABLE|0|0|3|CODE TABLE|0|1 +019103|diameterOfMajorAxisOfEyeOfTropicalCyclone|table|DIAMETER OF MAJOR AXIS OF THE EYE OF THE TROPICAL CYCLONE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019104|changeInCharacterOfEyeDuring30Minutes|table|CHANGE IN CHARACTER OF THE EYE DURING THE 30 MINUTES|CODE TABLE|0|0|4|CODE TABLE|0|2 +019105|distanceBetweenEndOfSpiralBandAndCentre|table|DISTANCE BETWEEN THE END OF SPIRAL BAND AND THE CENTRE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019106|identificationNumberOfTropicalCyclone|long|IDENTIFICATION NUMBER OF TROPICAL CYCLONE|Numeric|0|0|7|Numeric|0|3 +019107|timeIntervalOverWhichMovementOfTropicalCycloneHasBeenCalculated|table|TIME INTERVAL OVER WHICH THE MOVEMENT OF THE TROPICAL CYCLONE HAS BEEN CALCULATED|CODE TABLE|0|0|4|CODE TABLE|0|2 +019108|accuracyOfGeographicalPositionOfTropicalCyclone|table|ACCURACY OF GEOGRAPHICAL POSITION OF THE TROPICAL CYCLONE|CODE TABLE|0|0|3|CODE TABLE|0|1 +019109|meanDiameterOfOvercastCloudOfTropicalCyclone|table|MEAN DIAMETER OF THE OVERCAST CLOUD OF THE TROPICAL CYCLONE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019110|apparent24HourChangeInIntensityOfTropicalCyclone|table|APPARENT 24-HOUR CHANGE IN INTENSITY OF THE TROPICAL CYCLONE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019111|currentIntensityNumberOfTropicalCyclone|long|CURRENT INTENSITY (CI) NUMBER OF THE TROPICAL CYCLONE|Numeric|1|0|7|Numeric|1|3 +019112|dataTropicalNumberOfTropicalCyclone|long|DATA TROPICAL (DT) NUMBER OF THE TROPICAL CYCLONE|Numeric|1|0|7|Numeric|1|3 +019113|cloudPatternTypeOfDtNumber|table|CLOUD PATTERN TYPE OF THE DT-NUMBER|CODE TABLE|0|0|4|CODE TABLE|0|2 +019114|modelExpectedTropicalNumberOfTropicalCyclone|long|MODEL EXPECTED TROPICAL (MET) NUMBER OF THE TROPICAL CYCLONE|Numeric|1|0|7|Numeric|1|3 +019115|trendOfPast24HourChangeDevelopedWeakened|long|TREND OF THE PAST 24-HOUR CHANGE (+: DEVELOPED, -: WEAKENED)|Numeric|1|-30|6|Numeric|1|2 +019116|patternTropicalNumberOfTropicalCyclone|long|PATTERN TROPICAL (PT) NUMBER OF THE TROPICAL CYCLONE|Numeric|1|0|7|Numeric|1|3 +019117|cloudPictureTypeOfPtNumber|table|CLOUD PICTURE TYPE OF THE PT-NUMBER|CODE TABLE|0|0|3|CODE TABLE|0|1 +019118|finalTropicalNumberOfTropicalCyclone|long|FINAL TROPICAL (T) NUMBER OF THE TROPICAL CYCLONE|Numeric|1|0|7|Numeric|1|3 +019119|finalTNumberType|table|TYPE OF THE FINAL T-NUMBER|CODE TABLE|0|0|3|CODE TABLE|0|1 +019150|typhoonInternationalCommonNumberTyphoonCommittee|string|TYPHOON INTERNATIONAL COMMON NUMBER (TYPHOON COMMITTEE)|CCITT IA5|0|0|32|Character|0|4 +020001|horizontalVisibility|long|HORIZONTAL VISIBILITY|m|-1|0|13|m|-1|4 +020002|verticalVisibility|long|VERTICAL VISIBILITY|m|-1|0|7|m|-1|3 +020003|presentWeather|table|PRESENT WEATHER|CODE TABLE|0|0|9|CODE TABLE|0|3 +020004|pastWeather1|table|PAST WEATHER (1)|CODE TABLE|0|0|5|CODE TABLE|0|2 +020005|pastWeather2|table|PAST WEATHER (2)|CODE TABLE|0|0|5|CODE TABLE|0|2 +020006|flightRules|table|FLIGHT RULES|CODE TABLE|0|0|3|CODE TABLE|0|1 +020008|cloudDistributionForAviation|table|CLOUD DISTRIBUTION FOR AVIATION|CODE TABLE|0|0|5|CODE TABLE|0|2 +020009|generalWeatherIndicatorTafOrMetar|table|GENERAL WEATHER INDICATOR (TAF/METAR)|CODE TABLE|0|0|4|CODE TABLE|0|2 +020010|cloudCoverTotal|long|CLOUD COVER (TOTAL)|%|0|0|7|%|0|3 +020011|cloudAmount|table|CLOUD AMOUNT|CODE TABLE|0|0|4|CODE TABLE|0|2 +020012|cloudType|table|CLOUD TYPE|CODE TABLE|0|0|6|CODE TABLE|0|2 +020013|heightOfBaseOfCloud|long|HEIGHT OF BASE OF CLOUD|m|-1|-40|11|m|-1|4 +020014|heightOfTopOfCloud|long|HEIGHT OF TOP OF CLOUD|m|-1|-40|11|m|-1|4 +020015|pressureAtBaseOfCloud|long|PRESSURE AT BASE OF CLOUD|Pa|-1|0|14|Pa|-1|5 +020016|pressureAtTopOfCloud|long|PRESSURE AT TOP OF CLOUD|Pa|-1|0|14|Pa|-1|5 +020017|cloudTopDescription|table|CLOUD TOP DESCRIPTION|CODE TABLE|0|0|4|CODE TABLE|0|2 +020018|tendencyOfRunwayVisualRange|table|TENDENCY OF RUNWAY VISUAL RANGE|CODE TABLE|0|0|2|CODE TABLE|0|1 +020019|significantWeather|string|SIGNIFICANT PRESENT OR FORECAST WEATHER|CCITT IA5|0|0|72|Character|0|9 +020020|significantRecentWeatherPhenomena|string|SIGNIFICANT RECENT WEATHER PHENOMENA|CCITT IA5|0|0|32|Character|0|4 +020021|precipitationType|flag|TYPE OF PRECIPITATION|FLAG TABLE|0|0|30|FLAG TABLE|0|10 +020022|characterOfPrecipitation|table|CHARACTER OF PRECIPITATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +020023|otherWeatherPhenomena|flag|OTHER WEATHER PHENOMENA|FLAG TABLE|0|0|18|FLAG TABLE|0|6 +020024|intensityOfPhenomena|table|INTENSITY OF PHENOMENA|CODE TABLE|0|0|3|CODE TABLE|0|1 +020025|obscuration|flag|OBSCURATION|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +020026|characterOfObscuration|table|CHARACTER OF OBSCURATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +020027|phenomenaOccurrence|flag|PHENOMENA OCCURRENCE|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +020028|expectedChangeInIntensity|table|EXPECTED CHANGE IN INTENSITY|CODE TABLE|0|0|3|CODE TABLE|0|1 +020029|rainFlag|table|RAIN FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +020031|iceDepositThickness|double|ICE DEPOSIT (THICKNESS)|m|2|0|7|m|2|3 +020032|rateOfIceAccretionEstimated|table|RATE OF ICE ACCRETION (ESTIMATED)|CODE TABLE|0|0|3|CODE TABLE|0|1 +020033|causeOfIceAccretion|flag|CAUSE OF ICE ACCRETION|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +020034|seaIceConcentration|table|SEA ICE CONCENTRATION|CODE TABLE|0|0|5|CODE TABLE|0|2 +020035|amountAndTypeOfIce|table|AMOUNT AND TYPE OF ICE|CODE TABLE|0|0|4|CODE TABLE|0|2 +020036|iceSituation|table|ICE SITUATION|CODE TABLE|0|0|5|CODE TABLE|0|2 +020037|iceDevelopment|table|ICE DEVELOPMENT|CODE TABLE|0|0|5|CODE TABLE|0|2 +020038|iceEdgeBearing|long|BEARING OF ICE EDGE|deg|0|0|12|deg|0|3 +020039|iceDistance|long|ICE DISTANCE|m|-1|0|13|m|-1|4 +020040|evolutionOfDriftSnow|table|EVOLUTION OF DRIFT SNOW|CODE TABLE|0|0|4|CODE TABLE|0|2 +020041|airframeIcing|table|AIRFRAME ICING|CODE TABLE|0|0|4|CODE TABLE|0|2 +020042|airframeIcingPresent|table|AIRFRAME ICING PRESENT|CODE TABLE|0|0|2|CODE TABLE|0|1 +020043|peakLiquidWaterContent|double|PEAK LIQUID WATER CONTENT|kg m-3|4|0|7|kg m-3|4|2 +020044|averageLiquidWaterContent|double|AVERAGE LIQUID WATER CONTENT|kg m-3|4|0|7|kg m-3|4|2 +020045|supercooledLargeDropletConditions|table|SUPERCOOLED LARGE DROPLET (SLD) CONDITIONS|CODE TABLE|0|0|2|CODE TABLE|0|1 +020048|evolutionOfFeature|table|EVOLUTION OF FEATURE|CODE TABLE|0|0|4|CODE TABLE|0|2 +020050|cloudIndex|table|CLOUD INDEX|CODE TABLE|0|0|8|CODE TABLE|0|3 +020051|amountOfLowClouds|long|AMOUNT OF LOW CLOUDS|%|0|0|7|%|0|3 +020052|amountOfMiddleClouds|long|AMOUNT OF MIDDLE CLOUDS|%|0|0|7|%|0|3 +020053|amountOfHighClouds|long|AMOUNT OF HIGH CLOUDS|%|0|0|7|%|0|3 +020054|trueDirectionFromWhichAPhenomenonOrCloudsAreMovingOrInWhichTheyAreObserved|long|TRUE DIRECTION FROM WHICH A PHENOMENON OR CLOUDS ARE MOVING OR IN WHICH THEY ARE OBSERVED|deg|0|0|9|deg|0|3 +020055|stateOfSkyInTropics|table|STATE OF SKY IN THE TROPICS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020056|cloudPhase|table|CLOUD PHASE|CODE TABLE|0|0|3|CODE TABLE|0|1 +020058|visibilitySeawardsFromACoastalStation|long|VISIBILITY SEAWARDS FROM A COASTAL STATION|m|-1|0|13|m|-1|4 +020059|minimumHorizontalVisibility|long|MINIMUM HORIZONTAL VISIBILITY|m|-1|0|9|m|-1|3 +020060|prevailingHorizontalVisibility|long|PREVAILING HORIZONTAL VISIBILITY|m|-1|0|10|m|-1|4 +020061|runwayVisualRangeRvr|long|RUNWAY VISUAL RANGE (RVR)|m|0|0|12|m|0|4 +020062|stateOfGround|table|STATE OF THE GROUND (WITH OR WITHOUT SNOW)|CODE TABLE|0|0|5|CODE TABLE|0|2 +020063|specialPhenomena|table|SPECIAL PHENOMENA|CODE TABLE|0|0|10|CODE TABLE|0|4 +020065|snowCover|long|SNOW COVER|%|0|0|7|%|0|3 +020066|maximumDiameterOfHailstones|double|MAXIMUM DIAMETER OF HAILSTONES|m|3|0|8|m|3|3 +020067|diameterOfDeposit|double|DIAMETER OF DEPOSIT|m|3|0|9|m|3|3 +020070|minimumNumberOfAtmospherics|long|MINIMUM NUMBER OF ATMOSPHERICS|Numeric|0|0|7|Numeric|0|3 +020071|accuracyOfFixAndRateOfAtmospherics|table|ACCURACY OF FIX AND RATE OF ATMOSPHERICS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020081|cloudAmountInSegment|long|CLOUD AMOUNT IN SEGMENT|%|0|0|7|%|0|3 +020082|amountSegmentCloudFree|long|AMOUNT SEGMENT CLOUD FREE|%|0|0|7|%|0|3 +020083|amountOfSegmentCoveredByScene|long|AMOUNT OF SEGMENT COVERED BY SCENE|%|0|0|7|%|0|3 +020085|generalConditionOfRunway|table|GENERAL CONDITION OF RUNWAY|CODE TABLE|0|0|4|CODE TABLE|0|1 +020086|runwayDeposits|table|RUNWAY DEPOSITS|CODE TABLE|0|0|4|CODE TABLE|0|1 +020087|runwayContamination|table|RUNWAY CONTAMINATION|CODE TABLE|0|0|4|CODE TABLE|0|1 +020088|depthOfRunwayDeposits|double|DEPTH OF RUNWAY DEPOSITS|m|3|0|12|m|0|4 +020089|runwayFrictionCoefficient|table|RUNWAY FRICTION COEFFICIENT|CODE TABLE|0|0|7|CODE TABLE|0|2 +020090|specialClouds|table|SPECIAL CLOUDS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020091|verticalVisibility|long|VERTICAL VISIBILITY|ft|-2|0|10|ft|-2|3 +020092|heightOfBaseOfCloud|long|HEIGHT OF BASE OF CLOUD|ft|-2|0|10|ft|-2|3 +020093|heightOfInversion|long|HEIGHT OF INVERSION|m|-1|0|8|m|-1|3 +020095|iceProbability|long|ICE PROBABILITY|Numeric|3|0|10|Numeric|3|4 +020096|iceAgeAParameter|double|ICE AGE (A PARAMETER)|dB|2|-4096|13|dB|2|4 +020101|locustAcridianName|table|LOCUST (ACRIDIAN) NAME|CODE TABLE|0|0|4|CODE TABLE|0|2 +020102|locustMaturityColour|table|LOCUST (MATURITY) COLOUR|CODE TABLE|0|0|4|CODE TABLE|0|2 +020103|stageOfDevelopmentOfLocusts|table|STAGE OF DEVELOPMENT OF LOCUSTS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020104|organizationStateOfSwarm|table|ORGANIZATION STATE OF SWARM OR BAND OF LOCUSTS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020105|sizeOfSwarmOrBandOfLocustsAndDurationOfPassageOfSwarm|table|SIZE OF SWARM OR BAND OF LOCUSTS AND DURATION OF PASSAGE OF SWARM|CODE TABLE|0|0|4|CODE TABLE|0|2 +020106|locustPopulationDensity|table|LOCUST POPULATION DENSITY|CODE TABLE|0|0|4|CODE TABLE|0|2 +020107|directionOfMovementsOfLocustSwarm|table|DIRECTION OF MOVEMENTS OF LOCUST SWARM|CODE TABLE|0|0|4|CODE TABLE|0|2 +020108|extentOfVegetation|table|EXTENT OF VEGETATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +020111|xAxisErrorEllipseMajorComponent|long|X-AXIS ERROR ELLIPSE MAJOR COMPONENT|m|-1|0|17|m|-1|6 +020112|yAxisErrorEllipseMinorComponent|long|Y-AXIS ERROR ELLIPSE MINOR COMPONENT|m|-1|0|17|m|-1|6 +020113|zAxisErrorEllipseComponent|long|Z-AXIS ERROR ELLIPSE COMPONENT|m|-1|0|17|m|-1|6 +020114|angleOfXAxisInErrorEllipse|double|ANGLE OF X-AXIS IN ERROR ELLIPSE|deg|2|-18000|16|deg|2|5 +020115|angleOfZAxisInErrorEllipse|double|ANGLE OF Z-AXIS IN ERROR ELLIPSE|deg|2|-18000|16|deg|2|5 +020116|emissionHeightOfCloudStroke|long|EMISSION HEIGHT OF CLOUD STROKE|m|0|0|16|m|0|5 +020117|amplitudeOfLightningStrike|long|AMPLITUDE OF LIGHTNING STRIKE|A|-1|-32000|16|A|-1|5 +020118|lightningDetectionError|long|LIGHTNING DETECTION ERROR|m|0|0|19|m|0|6 +020119|lightningDischargePolarity|table|LIGHTNING DISCHARGE POLARITY|CODE TABLE|0|0|2|CODE TABLE|0|1 +020121|thresholdValueForPolarityDecision|double|THRESHOLD VALUE FOR POLARITY DECISION|V|3|0|16|V|3|5 +020122|thresholdValueForPolarityDecision|long|THRESHOLD VALUE FOR POLARITY DECISION|A|0|0|16|A|0|5 +020123|minimumDirectionThreshold|double|MINIMUM THRESHOLD FOR DETECTION|V/m|3|0|16|V/m|3|5 +020124|lightningStrokeOrFlash|table|LIGHTNING STROKE OR FLASH|CODE TABLE|0|0|2|CODE TABLE|0|1 +020126|lightningRateOfDischarge|long|LIGHTNING RATE OF DISCHARGE|/h|0|0|23|/h|0|7 +020127|lightningDistanceFromStation|long|LIGHTNING - DISTANCE FROM STATION|m|-3|0|8|m|-3|3 +020128|lightningDirectionFromStation|double|LIGHTNING - DIRECTION FROM STATION|deg|1|0|12|deg|1|4 +020129|lightningDensityStrokeFlashOrEvent|double|LIGHTNING DENSITY (STROKE, FLASH OR EVENT)|m-2|6|0|10|m-2|6|4 +020130|cloudHydrometeorConcentration|long|CLOUD HYDROMETEOR CONCENTRATION|Numeric|0|0|10|Numeric|0|3 +020131|effectiveRadiusOfCloudHydrometeors|double|EFFECTIVE RADIUS OF CLOUD HYDROMETEORS|m|5|0|6|m|5|2 +020132|cloudLiquidWaterContent|double|CLOUD LIQUID WATER CONTENT|kg m-3|5|0|11|kg m-3|5|4 +020133|hydrometeorRadius|double|HYDROMETEOR RADIUS|m|5|0|6|m|5|2 +020135|iceMassOnARod|double|ICE MASS (ON A ROD)|kg/m|1|0|10|kg/m|1|3 +020136|supplementaryCloudType|table|SUPPLEMENTARY CLOUD TYPE|CODE TABLE|0|0|9|CODE TABLE|0|3 +020137|evolutionOfClouds|table|EVOLUTION OF CLOUDS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020138|roadSurfaceCondition|table|ROAD SURFACE CONDITION|CODE TABLE|0|0|4|CODE TABLE|0|2 +021001|horizontalReflectivity|long|HORIZONTAL REFLECTIVITY|dB|0|-64|7|dB|0|3 +021002|verticalReflectivity|long|VERTICAL REFLECTIVITY|dB|0|-64|7|dB|0|3 +021003|differentialReflectivity|double|DIFFERENTIAL REFLECTIVITY|dB|1|-5|7|dB|1|3 +021004|differentialReflectivity|double|DIFFERENTIAL REFLECTIVITY|dB|2|-800|11|dB|2|4 +021005|linearDepolarizationRatio|long|LINEAR DEPOLARIZATION RATIO|dB|0|-65|6|dB|0|2 +021006|circularDepolarizationRatio|long|CIRCULAR DEPOLARIZATION RATIO|dB|0|-65|6|dB|0|2 +021011|dopplerMeanVelocityXDirection|long|DOPPLER MEAN VELOCITY IN X-DIRECTION|m/s|0|-128|8|m/s|0|3 +021012|dopplerMeanVelocityYDirection|long|DOPPLER MEAN VELOCITY IN Y-DIRECTION|m/s|0|-128|8|m/s|0|3 +021013|dopplerMeanVelocityZDirection|long|DOPPLER MEAN VELOCITY IN Z-DIRECTION|m/s|0|-128|8|m/s|0|3 +021014|dopplerMeanVelocityRadial|double|DOPPLER MEAN VELOCITY (RADIAL)|m/s|1|-4096|13|m/s|1|4 +021017|dopplerVelocitySpectralWidth|double|DOPPLER VELOCITY SPECTRAL WIDTH|m/s|1|0|8|m/s|1|3 +021018|extendedNyquistVelocity|double|EXTENDED NYQUIST VELOCITY|m/s|1|0|10|m/s|1|4 +021019|highNyquistVelocity|double|HIGH NYQUIST VELOCITY|m/s|1|0|10|m/s|1|3 +021021|echoTops|long|ECHO TOPS|m|-3|0|4|m|-3|2 +021022|rangeBinOffset|double|RANGE BIN OFFSET|m|1|0|14|m|1|5 +021023|rangeBinSize|long|RANGE BIN SIZE|m|0|0|14|m|0|5 +021024|azimuthOffset|double|AZIMUTH OFFSET|deg|1|0|12|deg|1|4 +021025|azimuthalResolution|double|AZIMUTHAL RESOLUTION|deg|1|0|8|deg|1|3 +021028|differentialPhase|double|DIFFERENTIAL PHASE|deg|1|0|12|deg|1|4 +021029|crossPolarizationCorrelationCoefficient|long|CROSS-POLARIZATION CORRELATION COEFFICIENT|Numeric|2|-100|8|Numeric|2|3 +021030|signalToNoiseRatio|long|SIGNAL TO NOISE RATIO|dB|0|-32|8|dB|0|3 +021031|verticallyIntegratedLiquidWaterContent|long|VERTICALLY INTEGRATED LIQUID-WATER CONTENT|kg m-2|0|0|7|kg m-2|0|3 +021036|radarRainfallIntensity|double|RADAR RAINFALL INTENSITY|m/s|7|0|12|m/s|7|4 +021041|brightBandHeight|long|BRIGHT-BAND HEIGHT|m|-2|0|8|m|-2|3 +021051|signalPowerAbove1Mw|long|SIGNAL POWER ABOVE 1 MW|dB|0|-256|8|dB|0|3 +021062|backscatter|double|BACKSCATTER|dB|2|-5000|13|dB|2|4 +021063|radiometricResolutionNoiseValue|double|RADIOMETRIC RESOLUTION (NOISE VALUE)|%|1|0|10|%|1|4 +021064|clutterNoiseEstimate|long|CLUTTER NOISE ESTIMATE|Numeric|0|0|8|Numeric|0|3 +021065|missingPacketCounter|long|MISSING PACKET COUNTER|Numeric|0|-127|8|Numeric|0|3 +021066|waveScatterometerProductConfidenceData|flag|WAVE SCATTEROMETER PRODUCT CONFIDENCE DATA|FLAG TABLE|0|0|12|FLAG TABLE|0|4 +021067|windProductConfidenceData|flag|WIND PRODUCT CONFIDENCE DATA|FLAG TABLE|0|0|13|FLAG TABLE|0|5 +021068|radarAltimeterProductConfidenceData|flag|RADAR ALTIMETER PRODUCT CONFIDENCE DATA|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +021069|sstProductConfidenceData|flag|SST PRODUCT CONFIDENCE DATA|FLAG TABLE|0|0|10|FLAG TABLE|0|4 +021070|sstProductConfidenceDataSadist2|flag|SST PRODUCT CONFIDENCE DATA (SADIST-2)|FLAG TABLE|0|0|23|FLAG TABLE|0|6 +021071|peakiness|long|PEAKINESS|Numeric|0|0|16|Numeric|0|5 +021072|satelliteAltimeterCalibrationStatus|flag|SATELLITE ALTIMETER CALIBRATION STATUS|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +021073|satelliteAltimeterInstrumentMode|flag|SATELLITE ALTIMETER INSTRUMENT MODE|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +021075|imageSpectrumIntensity|long|IMAGE SPECTRUM INTENSITY|Numeric|0|0|8|Numeric|0|3 +021076|representationOfIntensities|table|REPRESENTATION OF INTENSITIES|CODE TABLE|0|0|3|CODE TABLE|0|1 +021077|altitudeCorrectionIonosphere|double|ALTITUDE CORRECTION (IONOSPHERE)|m|3|0|14|m|3|5 +021078|altitudeCorrectionDryTroposphere|double|ALTITUDE CORRECTION (DRY TROPOSPHERE)|m|3|0|9|m|3|3 +021079|altitudeCorrectionWetTroposphere|double|ALTITUDE CORRECTION (WET TROPOSPHERE)|m|3|2000|10|m|3|4 +021080|altitudeCorrectionCalibrationConstant|double|ALTITUDE CORRECTION (CALIBRATION CONSTANT)|m|3|0|11|m|3|4 +021081|openLoopCorrectionHeightTimeLoop|double|OPEN LOOP CORRECTION (HEIGHT-TIME LOOP)|m|3|0|10|m|3|4 +021082|openLoopCorrectionAutoGainControl|double|OPEN LOOP CORRECTION (AUTO GAIN CONTROL)|dB|3|-3000|14|dB|3|5 +021083|warmTargetCalibration|long|WARM TARGET CALIBRATION|Numeric|0|0|16|Numeric|0|5 +021084|coldTargetCalibration|long|COLD TARGET CALIBRATION|Numeric|0|0|16|Numeric|0|5 +021085|atsrSeaSurfaceTemperatureAcrossTrackBandNumber|long|ATSR SEA-SURFACE TEMPERATURE ACROSS-TRACK BAND NUMBER|Numeric|0|0|4|Numeric|0|2 +021086|numberOfPixelsInNadirOnlyAverage|long|NUMBER OF PIXELS IN NADIR ONLY, AVERAGE|Numeric|0|0|9|Numeric|0|3 +021087|numberOfPixelsInDualViewAverage|long|NUMBER OF PIXELS IN DUAL VIEW, AVERAGE|Numeric|0|0|9|Numeric|0|3 +021088|wetBackscatter|double|WET BACKSCATTER|dB|2|-5000|13|dB|2|4 +021091|radarSignalDopplerSpectrum0thMoment|long|RADAR SIGNAL DOPPLER SPECTRUM 0TH MOMENT|dB|0|-100|8|dB|0|3 +021092|rassSignalDopplerSpectrum0thMomentReferringToRassSignal|long|RASS SIGNAL DOPPLER SPECTRUM 0TH MOMENT, REFERRING TO RASS SIGNAL|dB|0|-100|8|dB|0|3 +021093|kuBandPeakiness|long|KU BAND PEAKINESS|Numeric|3|0|16|Numeric|3|5 +021094|sBandPeakiness|long|S BAND PEAKINESS|Numeric|3|0|16|Numeric|3|5 +021095|kpCoefficientA|long|KP COEFFICIENT A|Numeric|6|0|20|Numeric|6|7 +021096|kpCoefficientB|long|KP COEFFICIENT B|Numeric|6|0|20|Numeric|6|7 +021097|kpCoefficientC|long|KP COEFFICIENT C|Numeric|6|0|20|Numeric|6|7 +021101|numberOfVectorAmbiguities|long|NUMBER OF VECTOR AMBIGUITIES|Numeric|0|0|3|Numeric|0|1 +021102|indexOfSelectedWindVector|long|INDEX OF SELECTED WIND VECTOR|Numeric|0|0|3|Numeric|0|1 +021103|totalNumberOfSigma0Measurements|long|TOTAL NUMBER OF SIGMA-0 MEASUREMENTS|Numeric|0|0|5|Numeric|0|2 +021104|likelihoodComputedForSolution|long|LIKELIHOOD COMPUTED FOR SOLUTION|Numeric|3|-30000|15|Numeric|3|5 +021105|normalizedRadarCrossSection|double|NORMALIZED RADAR CROSS-SECTION|dB|2|-10000|14|dB|2|5 +021106|kpVarianceCoefficientAlpha|long|KP VARIANCE COEFFICIENT (ALPHA)|Numeric|3|0|14|Numeric|3|5 +021107|kpVarianceCoefficientBeta|long|KP VARIANCE COEFFICIENT (BETA)|Numeric|8|0|16|Numeric|8|5 +021109|seawindsWindVectorCellQuality|flag|SEAWINDS WIND VECTOR CELL QUALITY|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +021110|numberOfInnerBeamSigma0ForwardOfSatellite|long|NUMBER OF INNER-BEAM SIGMA-0 (FORWARD OF SATELLITE)|Numeric|0|0|6|Numeric|0|2 +021111|numberOfOuterBeamSigma0ForwardOfSatellite|long|NUMBER OF OUTER-BEAM SIGMA-0 (FORWARD OF SATELLITE)|Numeric|0|0|6|Numeric|0|2 +021112|numberOfInnerBeamSigma0AftOfSatellite|long|NUMBER OF INNER-BEAM SIGMA-0 (AFT OF SATELLITE)|Numeric|0|0|6|Numeric|0|2 +021113|numberOfOuterBeamSigma0AftOfSatellite|long|NUMBER OF OUTER-BEAM SIGMA-0 (AFT OF SATELLITE)|Numeric|0|0|6|Numeric|0|2 +021114|kpVarianceCoefficientGamma|double|KP VARIANCE COEFFICIENT (GAMMA)|dB|3|-140000|18|dB|3|6 +021115|seawindsSigma0Quality|flag|SEAWINDS SIGMA-0 QUALITY|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +021116|seawindsSigma0Mode|flag|SEAWINDS SIGMA-0 MODE|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +021117|sigma0VarianceQualityControl|long|SIGMA-0 VARIANCE QUALITY CONTROL|Numeric|2|0|16|Numeric|2|5 +021118|attenuationCorrectionOnSigma0|double|ATTENUATION CORRECTION ON SIGMA-0|dB|2|-10000|14|dB|2|5 +021119|windScatterometerGeophysicalModelFunction|table|WIND SCATTEROMETER GEOPHYSICAL MODEL FUNCTION|CODE TABLE|0|0|6|CODE TABLE|0|2 +021120|probabilityOfRain|long|PROBABILITY OF RAIN|Numeric|3|0|10|Numeric|3|4 +021121|seawindsNofRainIndex|long|SEAWINDS NOF* RAIN INDEX|Numeric|0|0|8|Numeric|0|3 +021122|attenuationCorrectionOnSigma0FromTb|double|ATTENUATION CORRECTION ON SIGMA-0 (FROM TB)|dB|2|-10000|14|dB|2|5 +021123|seawindsNormalizedRadarCrossSection|double|SEAWINDS NORMALIZED RADAR CROSS-SECTION|dB|2|-30000|15|dB|2|5 +021128|numberOfValidPointsPerSecondUsedToDerivePreviousParameters|long|NUMBER OF VALID POINTS PER SECOND USED TO DERIVE PREVIOUS PARAMETERS|Numeric|0|0|8|Numeric|0|3 +021130|spectrumTotalEnergy|long|SPECTRUM TOTAL ENERGY|Numeric|6|0|28|Numeric|6|9 +021131|spectrumMaxEnergy|long|SPECTRUM MAX ENERGY|Numeric|6|0|28|Numeric|6|9 +021132|directionOfSpectrumMaxOnHigherResolutionGrid|double|DIRECTION OF SPECTRUM MAX ON HIGHER RESOLUTION GRID|deg|3|0|19|deg|3|6 +021133|wavelengthOfSpectrumMaxOnHigherResolutionGrid|double|WAVELENGTH OF SPECTRUM MAX ON HIGHER RESOLUTION GRID|m|3|0|29|m|3|9 +021134|rangeResolutionOfCressCovarianceSpectrum|double|RANGE RESOLUTION OF CRESS COVARIANCE SPECTRUM|rad/m|3|0|19|rad/m|3|6 +021135|realPartOfCrossSpectraPolarGridNumberOfBins|long|REAL PART OF CROSS SPECTRA POLAR GRID NUMBER OF BINS|Numeric|3|-524288|20|Numeric|3|7 +021136|imaginaryPartOfCrossSpectraPolarGridNumberOfBins|long|IMAGINARY PART OF CROSS SPECTRA POLAR GRID NUMBER OF BINS|Numeric|3|-524288|20|Numeric|3|7 +021137|kuBandCorrectedOceanBackscatterCoefficient|double|KU BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021138|stdKuBandCorrectedOceanBackscatterCoefficient|double|STD KU BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021139|kuBandNetInstrumentalCorrectionForAgc|double|KU BAND NET INSTRUMENTAL CORRECTION FOR AGC|dB|2|-2048|12|dB|2|4 +021140|sBandCorrectedOceanBackscatterCoefficient|double|S BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021141|stdSBandCorrectedOceanBackscatterCoefficient|double|STD S BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021142|sBandNetInstrumentalCorrectionForAgc|double|S BAND NET INSTRUMENTAL CORRECTION FOR AGC|dB|2|-1024|11|dB|2|4 +021143|kuBandRainAttenuation|double|KU BAND RAIN ATTENUATION|dB|2|-1073741824|31|dB|2|10 +021144|altimeterRainFlag|flag|ALTIMETER RAIN FLAG|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +021145|kuBandAutomaticGainControl|double|KU BAND AUTOMATIC GAIN CONTROL|dB|2|0|13|dB|2|4 +021146|rmsKuBandAutomaticGainControl|double|RMS KU BAND AUTOMATIC GAIN CONTROL|dB|2|0|8|dB|2|3 +021147|numberOfValidPointsForKuBandAutomaticGainControl|long|NUMBER OF VALID POINTS FOR KU BAND AUTOMATIC GAIN CONTROL|Numeric|0|0|5|Numeric|0|2 +021148|trailingEdgeVariationFlag|flag|TRAILING EDGE VARIATION FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +021150|beamCollocation|table|BEAM CO-LOCATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +021151|estimatedErrorInSigma0At40DegreesIncidenceAngle|double|ESTIMATED ERROR IN SIGMA-0 AT 40 DEGREES INCIDENCE ANGLE|dB|2|0|9|dB|2|3 +021152|slopeAt40DegreesIncidenceAngle|double|SLOPE AT 40 DEGREES INCIDENCE ANGLE|dB/deg|2|-80|7|dB/deg|2|2 +021153|estimatedErrorInSlopeAt40DegreesIncidenceAngle|double|ESTIMATED ERROR IN SLOPE AT 40 DEGREES INCIDENCE ANGLE|dB/deg|2|-40|6|dB/deg|2|2 +021154|soilMoistureSensitivity|double|SOIL MOISTURE SENSITIVITY|dB|2|0|12|dB|2|4 +021155|windVectorCellQuality|flag|WIND VECTOR CELL QUALITY|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +021156|backscatterDistance|long|BACKSCATTER DISTANCE|Numeric|1|-4096|13|Numeric|1|4 +021157|lossPerUnitLengthOfAtmosphere|double|LOSS PER UNIT LENGTH OF ATMOSPHERE USED|dB/m|10|0|22|dB/m|10|7 +021158|ascatKpEstimateQuality|table|ASCAT KP ESTIMATE QUALITY|CODE TABLE|0|0|2|CODE TABLE|0|1 +021159|ascatSigma0Usability|table|ASCAT SIGMA-0 USABILITY|CODE TABLE|0|0|2|CODE TABLE|0|1 +021160|ascatUseOfSyntheticData|long|ASCAT USE OF SYNTHETIC DATA|Numeric|3|0|10|Numeric|3|4 +021161|ascatSyntheticDataQuantity|long|ASCAT SYNTHETIC DATA QUANTITY|Numeric|3|0|10|Numeric|3|4 +021162|ascatSatelliteOrbitAndAttitudeQuality|long|ASCAT SATELLITE ORBIT AND ATTITUDE QUALITY|Numeric|3|0|10|Numeric|3|4 +021163|ascatSolarArrayReflectionContamination|long|ASCAT SOLAR ARRAY REFLECTION CONTAMINATION|Numeric|3|0|10|Numeric|3|4 +021164|ascatTelemetryPresenceAndQuality|long|ASCAT TELEMETRY PRESENCE AND QUALITY|Numeric|3|0|10|Numeric|3|4 +021165|ascatExtrapolatedReferenceFunctionPresence|long|ASCAT EXTRAPOLATED REFERENCE FUNCTION PRESENCE|Numeric|3|0|10|Numeric|3|4 +021166|landFraction|long|LAND FRACTION|Numeric|3|0|10|Numeric|3|4 +021169|icePresenceIndicator|table|ICE PRESENCE INDICATOR|CODE TABLE|0|0|2|CODE TABLE|0|1 +021170|cBandCorrectedOceanBackscatterCoefficient|double|C BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021171|rmsCBandCorrectedOceanBackscatterCoefficient|double|RMS C BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021172|cBandNetInstrumentalCorrectionForAgc|double|C BAND NET INSTRUMENTAL CORRECTION FOR AGC|dB|2|-2048|12|dB|2|4 +021173|cBandAutomaticGainControl|double|C BAND AUTOMATIC GAIN CONTROL|dB|2|0|13|dB|2|4 +021174|rmsCBandAutomaticGainControl|double|RMS C BAND AUTOMATIC GAIN CONTROL|dB|2|0|9|dB|2|3 +021175|numberOfValidPointsForCBandAutomaticGainControl|long|NUMBER OF VALID POINTS FOR C BAND AUTOMATIC GAIN CONTROL|Numeric|0|0|10|Numeric|0|4 +021176|highFrequencyVariabilityCorrection|double|HIGH FREQUENCY VARIABILITY CORRECTION|m|3|0|16|m|3|5 +021177|correctedOcogBackscatterCoefficient|double|CORRECTED OCOG* BACKSCATTER COEFFICIENT|dB|2|0|16|dB|2|5 +021178|stdOf20HzOcogBackscatterCoefficient|double|STD OF 20 HZ OCOG BACKSCATTER COEFFICIENT|dB|2|0|16|dB|2|5 +021179|numberOf20HzValidPointsForOcogBackscatterCoefficient|long|NUMBER OF 20 HZ VALID POINTS FOR OCOG BACKSCATTER COEFFICIENT|Numeric|0|0|16|Numeric|0|5 +021180|numberOf20HzValidPointsForOceanBackscatterCoefficient|long|NUMBER OF 20 HZ VALID POINTS FOR OCEAN BACKSCATTER COEFFICIENT|Numeric|0|0|8|Numeric|0|3 +021181|20HzOceanBackscatterCoefficient|double|20 HZ OCEAN BACKSCATTER COEFFICIENT|dB|2|0|16|dB|2|5 +021182|20HzKuBandPeakiness|long|20 HZ KU BAND PEAKINESS|Numeric|3|0|16|Numeric|3|5 +021183|specificBandCorrectedOceanBackscatterCoefficient|double|SPECIFIC BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021184|stdSpecificBandCorrectedOceanBackscatterCoefficient|double|STD SPECIFIC BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021185|specificBandNetInstrumentalCorrectionForAgc|double|SPECIFIC BAND NET INSTRUMENTAL CORRECTION FOR AGC|dB|2|-2048|12|dB|2|4 +021186|specificBandAutomaticGainControl|double|SPECIFIC BAND AUTOMATIC GAIN CONTROL|dB|2|0|13|dB|2|4 +021187|rmsSpecificBandAutomaticGainControl|double|RMS SPECIFIC BAND AUTOMATIC GAIN CONTROL|dB|2|0|8|dB|2|3 +021188|numberOfValidPointsForSpecificBandAutomaticGainControl|long|NUMBER OF VALID POINTS FOR SPECIFIC BAND AUTOMATIC GAIN CONTROL|Numeric|0|0|7|Numeric|0|3 +021189|correctedOcogBackscatterCoefficientNegativeReference|double|CORRECTED OCOG* BACKSCATTER COEFFICIENT (NEGATIVE REFERENCE)|dB|2|-32768|16|dB|2|6 +022001|wavesDirection|long|DIRECTION OF WAVES|deg|0|0|9|deg|0|3 +022002|windWavesDirection|long|DIRECTION OF WIND WAVES|deg|0|0|9|deg|0|3 +022003|swellWavesDirection|long|DIRECTION OF SWELL WAVES|deg|0|0|9|deg|0|3 +022004|currentDirection|long|DIRECTION OF CURRENT|deg|0|0|9|deg|0|3 +022005|seaSurfaceCurrentDirection|long|DIRECTION OF SEA-SURFACE CURRENT|deg|0|0|9|deg|0|3 +022011|periodOfWaves|long|PERIOD OF WAVES|s|0|0|6|s|0|2 +022012|periodOfWindWaves|long|PERIOD OF WIND WAVES|s|0|0|6|s|0|2 +022013|periodOfSwellWaves|long|PERIOD OF SWELL WAVES|s|0|0|6|s|0|2 +022021|heightOfWaves|double|HEIGHT OF WAVES|m|1|0|10|m|1|4 +022022|heightOfWindWaves|double|HEIGHT OF WIND WAVES|m|1|0|10|m|1|4 +022023|heightOfSwellWaves|double|HEIGHT OF SWELL WAVES|m|1|0|10|m|1|4 +022025|standardDeviationWaveHeight|double|STANDARD DEVIATION WAVE HEIGHT|m|2|0|10|m|2|4 +022026|standardDeviationOfSignificantWaveHeight|double|STANDARD DEVIATION OF SIGNIFICANT WAVE HEIGHT|m|2|0|10|m|2|4 +022031|speedOfCurrent|double|SPEED OF CURRENT|m/s|2|0|13|m/s|2|4 +022032|speedOfSeaSurfaceCurrent|double|SPEED OF SEA-SURFACE CURRENT|m/s|2|0|13|m/s|2|4 +022035|tidalElevationWithRespectToLocalChartDatum|double|TIDAL ELEVATION WITH RESPECT TO LOCAL CHART DATUM|m|2|0|14|m|2|4 +022036|meteorologicalResidualTidalElevationSurgeOrOffset|double|METEOROLOGICAL RESIDUAL TIDAL ELEVATION (SURGE OR OFFSET)|m|2|0|14|m|2|4 +022037|tidalElevationWithRespectToNationalLandDatum|double|TIDAL ELEVATION WITH RESPECT TO NATIONAL LAND DATUM|m|3|-10000|15|m|3|5 +022038|tidalElevationWithRespectToLocalChartDatum|double|TIDAL ELEVATION WITH RESPECT TO LOCAL CHART DATUM|m|3|-10000|15|m|3|5 +022039|meteorologicalResidualTidalElevationSurgeOrOffset|double|METEOROLOGICAL RESIDUAL TIDAL ELEVATION (SURGE OR OFFSET)|m|3|-5000|13|m|3|4 +022040|meteorologicalResidualTidalElevationSurgeOrOffset|double|METEOROLOGICAL RESIDUAL TIDAL ELEVATION (SURGE OR OFFSET)|m|3|-5000|14|m|3|5 +022041|seaSurfaceTemperature15DayRunningMean|double|SEA-SURFACE TEMPERATURE (15-DAY RUNNING MEAN)|K|1|0|12|K|1|4 +022042|oceanographicWaterTemperature|double|SEA/WATER TEMPERATURE|K|1|0|12|K|1|4 +022043|oceanographicWaterTemperature|double|SEA/WATER TEMPERATURE|K|2|0|15|K|2|5 +022044|soundVelocity|double|SOUND VELOCITY|m/s|1|0|14|m/s|1|5 +022045|oceanographicWaterTemperature|double|SEA/WATER TEMPERATURE|K|3|0|19|K|3|6 +022046|seaIceFraction|long|SEA ICE FRACTION|Numeric|2|0|7|Numeric|2|3 +022049|seaSurfaceTemperature|double|SEA-SURFACE TEMPERATURE|K|2|0|15|K|2|5 +022050|standardDeviationSeaSurfaceTemperature|double|STANDARD DEVIATION SEA-SURFACE TEMPERATURE|K|2|0|8|K|2|3 +022055|floatCycleNumber|long|FLOAT CYCLE NUMBER|Numeric|0|0|10|Numeric|0|3 +022056|directionOfProfile|table|DIRECTION OF PROFILE|CODE TABLE|0|0|2|CODE TABLE|0|1 +022059|seaSurfaceSalinity|double|SEA-SURFACE SALINITY|0/00|2|0|14|0/00|2|5 +022060|lagrangianDrifterDrogueStatus|table|LAGRANGIAN DRIFTER DROGUE STATUS|CODE TABLE|0|0|3|CODE TABLE|0|1 +022061|seaState|table|STATE OF THE SEA|CODE TABLE|0|0|4|CODE TABLE|0|2 +022062|salinity|double|SALINITY|0/00|2|0|14|0/00|2|5 +022063|totalWaterDepth|long|TOTAL WATER DEPTH|m|0|0|14|m|0|5 +022064|salinity|double|SALINITY|0/00|3|0|17|0/00|3|6 +022065|oceanographicWaterPressure|long|WATER PRESSURE|Pa|-3|0|17|Pa|-3|6 +022066|oceanographicWaterConductivity|double|WATER CONDUCTIVITY|S/m|6|0|26|S/m|6|8 +022067|instrumentTypeForWaterTemperatureOrSalinityProfileMeasurement|table|INSTRUMENT TYPE FOR WATER TEMPERATURE/SALINITY PROFILE MEASUREMENT|CODE TABLE|0|0|10|CODE TABLE|0|4 +022068|waterTemperatureProfileRecorderTypes|table|WATER TEMPERATURE PROFILE RECORDER TYPES|CODE TABLE|0|0|7|CODE TABLE|0|3 +022069|spectralWaveDensity|double|SPECTRAL WAVE DENSITY|m2/Hz|3|0|22|m2/Hz|3|7 +022070|significantWaveHeight|double|SIGNIFICANT WAVE HEIGHT|m|2|0|13|m|2|4 +022071|spectralPeakWavePeriod|double|SPECTRAL PEAK WAVE PERIOD|s|1|0|9|s|1|3 +022072|spectralPeakWaveLength|long|SPECTRAL PEAK WAVELENGTH|m|0|0|13|m|0|4 +022073|maximumWaveHeight|double|MAXIMUM WAVE HEIGHT|m|2|0|13|m|2|4 +022074|averageWavePeriod|double|AVERAGE WAVE PERIOD|s|1|0|9|s|1|3 +022075|averageWaveLength|long|AVERAGE WAVELENGTH|m|0|0|13|m|0|4 +022076|directionFromWhichDominantWavesAreComing|long|DIRECTION FROM WHICH DOMINANT WAVES ARE COMING|deg|0|0|9|deg|0|3 +022077|directionalSpreadOfDominantWave|long|DIRECTIONAL SPREAD OF DOMINANT WAVE|deg|0|0|9|deg|0|3 +022078|durationOfWaveRecord|long|DURATION OF WAVE RECORD|s|0|0|12|s|0|4 +022079|lengthOfWaveRecord|long|LENGTH OF WAVE RECORD|m|0|0|16|m|0|5 +022080|wavebandCentralFrequency|double|WAVEBAND CENTRAL FREQUENCY|Hz|3|0|10|Hz|3|4 +022081|wavebandCentralWaveNumber|double|WAVEBAND CENTRAL WAVE NUMBER|/m|5|0|13|/m|5|4 +022082|maximumNonDirectionalSpectralWaveDensity|double|MAXIMUM NON-DIRECTIONAL SPECTRAL WAVE DENSITY|m2 s|2|0|20|m2 s|2|7 +022083|maximumNonDirectionalSpectralWaveNumber|double|MAXIMUM NON-DIRECTIONAL SPECTRAL WAVE NUMBER|m3|2|0|20|m3|2|7 +022084|bandContainingMaximumNonDirectionalSpectralWaveDensity|long|BAND CONTAINING MAXIMUM NON-DIRECTIONAL SPECTRAL WAVE DENSITY|Numeric|0|0|7|Numeric|0|3 +022085|spectralWaveDensityRatio|long|SPECTRAL WAVE DENSITY RATIO|Numeric|0|0|7|Numeric|0|3 +022086|meanDirectionFromWhichWavesAreComing|long|MEAN DIRECTION FROM WHICH WAVES ARE COMING|deg|0|0|9|deg|0|3 +022087|principalDirectionFromWhichWavesAreComing|long|PRINCIPAL DIRECTION FROM WHICH WAVES ARE COMING|deg|0|0|9|deg|0|3 +022088|firstNormalizedPolarCoordinateFromFourierCoefficients|long|FIRST NORMALIZED POLAR COORDINATE FROM FOURIER COEFFICIENTS|Numeric|2|0|7|Numeric|2|3 +022089|secondNormalizedPolarCoordinateFromFourierCoefficients|long|SECOND NORMALIZED POLAR COORDINATE FROM FOURIER COEFFICIENTS|Numeric|2|0|7|Numeric|2|3 +022090|nonDirectionalSpectralEstimateByWaveFrequency|double|NON-DIRECTIONAL SPECTRAL ESTIMATE BY WAVE FREQUENCY|m2 s|2|0|20|m2 s|2|7 +022091|nonDirectionalSpectralEstimateByWaveNumber|double|NON-DIRECTIONAL SPECTRAL ESTIMATE BY WAVE NUMBER|m3|2|0|20|m3|2|7 +022092|directionalSpectralEstimateByWaveFrequency|double|DIRECTIONAL SPECTRAL ESTIMATE BY WAVE FREQUENCY|m2 rad-1 s|2|0|20|m2 rad-1 s|2|7 +022093|directionalSpectralEstimateByWaveNumber|double|DIRECTIONAL SPECTRAL ESTIMATE BY WAVE NUMBER|m4|2|0|20|m4|2|7 +022094|totalNumberOfWaveBands|long|TOTAL NUMBER OF WAVE BANDS|Numeric|0|0|7|Numeric|0|3 +022095|directionalSpreadOfIndividualWaves|long|DIRECTIONAL SPREAD OF INDIVIDUAL WAVES|deg|0|0|8|deg|0|3 +022096|spectralBandWidth|double|SPECTRAL BAND WIDTH|/s|3|0|4|/s|3|2 +022097|meanWavelength731MOfImageSpectrumAtLowWaveNumbers|long|MEAN WAVELENGTH > 731 M OF IMAGE SPECTRUM AT LOW WAVE NUMBERS|m|0|0|14|m|0|5 +022098|wavelengthSpreadWavelength731MAtLowWaveNumbers|long|WAVELENGTH SPREAD (WAVELENGTH > 731 M) AT LOW WAVE NUMBERS|m|0|0|14|m|0|5 +022099|meanDirectionAtLowWaveNumbersWavelength731M|long|MEAN DIRECTION AT LOW WAVE NUMBERS (WAVELENGTH > 731 M)|deg|0|0|9|deg|0|3 +022100|directionSpreadAtLowWaveNumbersWavelength731M|long|DIRECTION SPREAD AT LOW WAVE NUMBERS (WAVELENGTH > 731 M)|deg|0|0|9|deg|0|3 +022101|totalEnergyWavelength731mAtLowWaveNumbers|long|TOTAL ENERGY (WAVELENGTH > 731M) AT LOW WAVE NUMBERS|Numeric|0|0|31|Numeric|0|10 +022102|scaledMaximumNonDirectionalSpectralWaveDensityByFrequency|long|SCALED MAXIMUM NON-DIRECTIONAL SPECTRAL WAVE DENSITY BY FREQUENCY|m2 s|0|0|14|m2 s|0|5 +022103|scaledMaximumNonDirectionalSpectralWaveDensityByWavenumber|long|SCALED MAXIMUM NON-DIRECTIONAL SPECTRAL WAVE DENSITY BY WAVE NUMBER|m3|0|0|14|m3|0|5 +022104|scaledNonDirectionalSpectralWaveDensityByFrequency|long|SCALED NON-DIRECTIONAL SPECTRAL WAVE DENSITY BY FREQUENCY|m2 s|0|0|14|m2 s|0|5 +022105|scaledNonDirectionalSpectralWaveDensityByWavenumber|long|SCALED NON-DIRECTIONAL SPECTRAL WAVE DENSITY BY WAVE NUMBER|m3|0|0|14|m3|0|5 +022106|scaledDirectionalSpectralWaveDensityByFrequency|long|SCALED DIRECTIONAL SPECTRAL WAVE DENSITY BY FREQUENCY|m2 rad-1 s|0|0|14|m2 rad-1 s|0|5 +022107|scaledDirectionalSpectralWaveDensityByWavenumber|long|SCALED DIRECTIONAL SPECTRAL WAVE DENSITY BY WAVE NUMBER|m4|0|0|14|m4|0|5 +022108|spectralWaveDensityRatio|long|SPECTRAL WAVE DENSITY RATIO|%|0|0|7|%|0|3 +022120|tideStationAutomatedWaterLevelCheck|table|TIDE STATION AUTOMATED WATER LEVEL CHECK|CODE TABLE|0|0|5|CODE TABLE|0|2 +022121|tideStationManualWaterLevelCheck|table|TIDE STATION MANUAL WATER LEVEL CHECK|CODE TABLE|0|0|5|CODE TABLE|0|2 +022122|automatedMeteorologicalDataCheck|table|TIDE STATION AUTOMATED METEOROLOGICAL DATA CHECK|CODE TABLE|0|0|5|CODE TABLE|0|2 +022123|tideStationManualMeteorologicalDataCheck|table|TIDE STATION MANUAL METEOROLOGICAL DATA CHECK|CODE TABLE|0|0|5|CODE TABLE|0|2 +022130|numberOfValidPointsForSpecificBand|long|NUMBER OF VALID POINTS FOR SPECIFIC BAND|Numeric|0|0|10|Numeric|0|4 +022131|rmsSpecificBandSignificantWaveHeight|double|RMS SPECIFIC BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022132|numberOfValidPointsForSpecificBandSignificantWaveHeight|long|NUMBER OF VALID POINTS FOR SPECIFIC BAND SIGNIFICANT WAVE HEIGHT|Numeric|0|0|10|Numeric|0|4 +022133|specificBandNetInstrumentCorrectionForSignificantWaveHeight|double|SPECIFIC BAND NET INSTRUMENT CORRECTION FOR SIGNIFICANT WAVE HEIGHT|m|3|-1000|11|m|3|4 +022134|numberOfValidPointsForSpecificBandBackscatter|long|NUMBER OF VALID POINTS FOR SPECIFIC BAND BACKSCATTER|Numeric|0|0|10|Numeric|0|4 +022141|seaSurfaceTemperature15DayRunningMean|double|SEA-SURFACE TEMPERATURE (15-DAY RUNNING MEAN)|K|2|0|15|K|2|5 +022142|squareOfSignificantWaveHeight|double|SQUARE OF SIGNIFICANT WAVE HEIGHT|m2|3|-33554432|26|m2|3|8 +022143|stdOf20HzSwhSquared|double|STD OF 20 HZ SWH SQUARED|m2|3|-8388608|24|m2|3|8 +022144|numberOf20HzValidPointsForSwhSquared|long|NUMBER OF 20 HZ VALID POINTS FOR SWH SQUARED|Numeric|0|0|9|Numeric|0|3 +022145|stdOf20HzOceanRange|double|STD OF 20 HZ OCEAN RANGE|m|3|-33554432|31|m|3|10 +022146|ocogRange|double|OCOG RANGE|m|3|0|31|m|3|10 +022147|stdOf20HzOcogRange|double|STD OF 20 HZ OCOG RANGE|m|3|-8388608|31|m|3|10 +022148|numberOf20HzValidPointsForOceanRange|long|NUMBER OF 20 HZ VALID POINTS FOR OCEAN RANGE|Numeric|0|0|9|Numeric|0|3 +022149|20HzSignificantWaveHeightSquared|double|20 HZ SIGNIFICANT WAVE HEIGHT SQUARED|m2|3|-33554432|26|m2|3|8 +022150|numberOf18HzValidPointsForKuBand|long|NUMBER OF 18 HZ VALID POINTS FOR KU BAND|Numeric|0|0|10|Numeric|0|4 +022151|kuBandOceanRange|double|KU BAND OCEAN RANGE|m|3|0|31|m|3|10 +022152|stdOf18HzKuBandOceanRange|double|STD OF 18 HZ KU BAND OCEAN RANGE|m|3|0|16|m|3|5 +022153|numberOf18HzValidPointsForSBand|long|NUMBER OF 18 HZ VALID POINTS FOR S BAND|Numeric|0|0|10|Numeric|0|4 +022154|sBandOceanRange|double|S BAND OCEAN RANGE|m|3|0|31|m|3|10 +022155|stdOf18HzSBandOceanRange|double|STD OF 18 HZ S BAND OCEAN RANGE|m|3|0|16|m|3|5 +022156|kuBandSignificantWaveHeight|double|KU BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022157|stdOf18HzKuBandOceanRange|double|STD OF 18 HZ KU BAND OCEAN RANGE|m|3|0|16|m|3|5 +022158|sBandSignificantWaveHeight|double|S BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022159|stdOf18HzSBandSignificantWaveHeight|double|STD OF 18 HZ S BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022160|normalizedInverseWaveAge|long|NORMALIZED INVERSE WAVE AGE|Numeric|6|0|21|Numeric|6|7 +022161|waveSpectra|double|WAVE SPECTRA|m4|4|0|27|m4|4|9 +022162|rmsOf20HzKuBandOceanRange|double|RMS OF 20 HZ KU BAND OCEAN RANGE|m|3|0|16|m|3|5 +022163|numberOf20HzValidPointsForKuBand|long|NUMBER OF 20 HZ VALID POINTS FOR KU BAND|Numeric|0|0|10|Numeric|0|4 +022164|rms20HzKuBandSignificantWaveHeight|double|RMS 20 HZ KU BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022165|numberOf20HzValidPointsForKuBandSignificantWaveHeight|long|NUMBER OF 20 HZ VALID POINTS FOR KU BAND SIGNIFICANT WAVE HEIGHT|Numeric|0|0|10|Numeric|0|4 +022166|kuBandNetInstrumentalCorrectionForSignificantWaveHeight|double|KU BAND NET INSTRUMENTAL CORRECTION FOR SIGNIFICANT WAVE HEIGHT|m|3|-1000|11|m|3|4 +022167|numberOfValidPointsForKuBandBackscatter|long|NUMBER OF VALID POINTS FOR KU BAND BACKSCATTER|Numeric|0|0|10|Numeric|0|4 +022168|cBandOceanRange|double|C BAND OCEAN RANGE|m|3|0|31|m|3|10 +022169|rmsOfCBandOceanRange|double|RMS OF C BAND OCEAN RANGE|m|3|0|16|m|3|5 +022170|numberOf20HzValidPointsForCBand|long|NUMBER OF 20 HZ VALID POINTS FOR C BAND|Numeric|0|0|10|Numeric|0|4 +022171|cBandSignificantWaveHeight|double|C BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022172|rms20HzCBandSignificantWaveHeight|double|RMS 20 HZ C BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022173|numberOf20HzValidPointsForCBandSignificantWaveHeight|long|NUMBER OF 20 HZ VALID POINTS FOR C BAND SIGNIFICANT WAVE HEIGHT|Numeric|0|0|10|Numeric|0|4 +022174|cBandNetInstrumentalCorrectionForSignificantWaveHeight|double|C BAND NET INSTRUMENTAL CORRECTION FOR SIGNIFICANT WAVE HEIGHT|m|3|-1000|11|m|3|4 +022175|numberOfValidPointsForCBandBackscatter|long|NUMBER OF VALID POINTS FOR C BAND BACKSCATTER|Numeric|0|0|10|Numeric|0|4 +022177|heightOfXbtOrXctdLauncher|long|HEIGHT OF XBT/XCTD LAUNCHER|m|0|0|6|m|0|3 +022178|xbtOrXctdLauncherType|table|XBT/XCTD LAUNCHER TYPE|CODE TABLE|0|0|8|CODE TABLE|0|3 +022179|specificBandSignificantWaveHeightNegativeReference|double|SPECIFIC BAND SIGNIFICANT WAVE HEIGHT (NEGATIVE REFERENCE)|m|3|-500|16|m|3|6 +022182|waterColumnHeight|double|WATER COLUMN HEIGHT|m|3|0|23|m|3|7 +022184|waterColumnHeightDeviationFromReferenceValue|double|WATER COLUMN HEIGHT DEVIATION FROM THE REFERENCE VALUE|m|3|-2000|12|m|3|4 +022185|bprTransmissionCount|long|BPR TRANSMISSION COUNT|Numeric|0|0|10|Numeric|0|3 +022186|directionFromWhichWavesAreComing|long|DIRECTION FROM WHICH WAVES ARE COMING|deg|0|0|9|deg|0|3 +022187|directionalSpreadOfWaves|long|DIRECTIONAL SPREAD OF WAVE|deg|0|0|9|deg|0|3 +022188|oceanographicDissolvedOxygen|double|DISSOLVED OXYGEN|umol/kg|3|0|19|umol/kg|3|6 +022189|specificBandOceanRange|double|SPECIFIC BAND OCEAN RANGE|m|3|0|31|m|3|10 +022190|specificBandSignificantWaveHeight|double|SPECIFIC BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022191|rmsOfSpecificBandOceanRange|double|RMS OF SPECIFIC BAND OCEAN RANGE|m|4|0|16|m|4|5 +023001|accidentEarlyNotificationArticleApplicable|table|ACCIDENT EARLY NOTIFICATION - ARTICLE APPLICABLE|CODE TABLE|0|0|3|CODE TABLE|0|1 +023002|facilityInvolvedInIncident|table|ACTIVITY OR FACILITY INVOLVED IN INCIDENT|CODE TABLE|0|0|5|CODE TABLE|0|2 +023003|releaseType|table|TYPE OF RELEASE|CODE TABLE|0|0|3|CODE TABLE|0|1 +023004|countermeasuresTakenNearBorder|table|COUNTERMEASURES TAKEN NEAR BORDER|CODE TABLE|0|0|3|CODE TABLE|0|1 +023005|causeOfIncident|table|CAUSE OF INCIDENT|CODE TABLE|0|0|2|CODE TABLE|0|1 +023006|incidentSituation|table|INCIDENT SITUATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +023007|characteristicsOfRelease|table|CHARACTERISTICS OF RELEASE|CODE TABLE|0|0|3|CODE TABLE|0|1 +023008|stateOfCurrentRelease|table|STATE OF CURRENT RELEASE|CODE TABLE|0|0|2|CODE TABLE|0|1 +023009|stateOfExpectedRelease|table|STATE OF EXPECTED RELEASE|CODE TABLE|0|0|2|CODE TABLE|0|1 +023016|possibilityOfSignificantChemicalToxicHealthEffect|table|POSSIBILITY OF SIGNIFICANT CHEMICAL TOXIC HEALTH EFFECT|CODE TABLE|0|0|2|CODE TABLE|0|1 +023017|flowDischargeOfMajorRecipient|double|FLOW DISCHARGE OF MAJOR RECIPIENT|m3/s|6|0|20|m3/s|6|7 +023018|releaseBehaviourOverTime|table|RELEASE BEHAVIOUR OVER TIME|CODE TABLE|0|0|3|CODE TABLE|0|1 +023019|actualReleaseHeight|long|ACTUAL RELEASE HEIGHT|m|0|-15000|17|m|0|6 +023021|effectiveReleaseHeight|long|EFFECTIVE RELEASE HEIGHT|m|0|-15000|17|m|0|6 +023022|distanceOfReleasePointOrSiteOfIncident|long|DISTANCE OF RELEASE POINT OR SITE OF INCIDENT|m|0|0|24|m|0|8 +023023|mainTransportSpeedInAtmosphere|double|MAIN TRANSPORT SPEED IN THE ATMOSPHERE|m/s|1|0|12|m/s|1|4 +023024|mainTransportSpeedInWater|double|MAIN TRANSPORT SPEED IN WATER|m/s|2|0|13|m/s|2|4 +023025|mainTransportSpeedInGroundWater|double|MAIN TRANSPORT SPEED IN GROUND WATER|m/s|2|0|13|m/s|2|4 +023027|mainTransportDirectionInTheAtmosphere|long|MAIN TRANSPORT DIRECTION IN THE ATMOSPHERE|deg|0|0|9|deg|0|3 +023028|mainTransportDirectionInWater|long|MAIN TRANSPORT DIRECTION IN WATER|deg|0|0|9|deg|0|3 +023029|mainTransportDirectionInGroundWater|long|MAIN TRANSPORT DIRECTION IN GROUND WATER|deg|0|0|9|deg|0|3 +023031|possibilityPlume|table|POSSIBILITY THAT PLUME WILL ENCOUNTER PRECIPITATION IN STATE IN WHICH INCIDENT OCCURRED|CODE TABLE|0|0|2|CODE TABLE|0|1 +023032|plumeWillEncounterChangeInWindDirectionAndOrOrSpeedFlag|table|PLUME WILL ENCOUNTER CHANGE IN WIND DIRECTION AND/OR SPEED FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +023040|flowDischargeRiver|double|FLOW DISCHARGE - RIVER|m3/s|1|0|22|m3/s|1|7 +023041|flowDischargeWell|double|FLOW DISCHARGE - WELL|m3/s|3|0|16|m3/s|3|5 +024001|estimateOfAmountOfRadioactivityReleasedUpToSpecifiedTime|long|ESTIMATE OF AMOUNT OF RADIOACTIVITY RELEASED UP TO SPECIFIED TIME|Bq|-11|0|28|Bq|-11|9 +024002|estimatedMaximumPotentialRelease|long|ESTIMATED MAXIMUM POTENTIAL RELEASE|Bq|-11|0|28|Bq|-11|9 +024003|compositionOfRelease|table|COMPOSITION OF RELEASE|CODE TABLE|0|0|5|CODE TABLE|0|2 +024004|elementName|string|ELEMENT NAME|CCITT IA5|0|0|16|Character|0|2 +024005|isotopeMass|long|ISOTOPE MASS|Numeric|0|0|9|Numeric|0|3 +024011|dose|double|DOSE|mSv|2|0|32|mSv|2|10 +024012|trajectoryDoseDefinedLocationAndExpectedTimeOfArrival|double|TRAJECTORY DOSE (DEFINED LOCATION AND EXPECTED TIME OF ARRIVAL)|mSv|2|0|32|mSv|2|10 +024013|gammaDoseInAirAlongMainTransportPathDefinedLocationAndTimePeriod|double|GAMMA DOSE IN AIR ALONG THE MAIN TRANSPORT PATH (DEFINED LOCATION AND TIME PERIOD)|mSv|2|0|32|mSv|2|10 +024014|gammaRadiationDoseRate|double|GAMMA RADIATION DOSE RATE|nSv/h|1|0|14|nSv/h|1|4 +024021|airConcentrationOfNamedIsotopeTypeIncludingGrossBeta|double|AIR CONCENTRATION (OF NAMED ISOTOPE TYPE INCLUDING GROSS BETA)|Bq m-3|2|0|32|Bq m-3|2|10 +024022|concentrationInPrecipitationOfNamedIsotopeType|double|CONCENTRATION IN PRECIPITATION (OF NAMED ISOTOPE TYPE)|Bq/l|2|0|32|Bq/l|2|10 +024023|pulseRateOfBetaRadiation|double|PULSE RATE OF BETA RADIATION|/s|1|0|14|/s|1|4 +024024|pulseRateOfGammaRadiation|double|PULSE RATE OF GAMMA RADIATION|/s|1|0|14|/s|1|4 +025001|rangeGateLength|long|RANGE-GATE LENGTH|m|-1|0|6|m|-1|2 +025002|numberOfGatesAveraged|long|NUMBER OF GATES AVERAGED|Numeric|0|0|4|Numeric|0|2 +025003|numberOfIntegratedPulses|long|NUMBER OF INTEGRATED PULSES|Numeric|0|0|8|Numeric|0|3 +025004|echoProcessing|table|ECHO PROCESSING|CODE TABLE|0|0|2|CODE TABLE|0|1 +025005|echoIntegration|table|ECHO INTEGRATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +025006|zToRConversion|table|Z TO R CONVERSION|CODE TABLE|0|0|3|CODE TABLE|0|1 +025007|zToRConversionFactor|long|Z TO R CONVERSION FACTOR|Numeric|0|0|12|Numeric|0|4 +025008|zToRConversionExponent|long|Z TO R CONVERSION EXPONENT|Numeric|2|0|9|Numeric|2|3 +025009|calibrationMethod|flag|CALIBRATION METHOD|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +025010|clutterTreatment|table|CLUTTER TREATMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +025011|groundOccultationCorrectionScreening|table|GROUND OCCULTATION CORRECTION (SCREENING)|CODE TABLE|0|0|2|CODE TABLE|0|1 +025012|rangeAttenuationCorrection|table|RANGE ATTENUATION CORRECTION|CODE TABLE|0|0|2|CODE TABLE|0|1 +025013|brightBandCorrection|flag|BRIGHT-BAND CORRECTION|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +025014|azimuthClutterCutOff|long|AZIMUTH CLUTTER CUT-OFF|Numeric|0|0|12|Numeric|0|4 +025015|radomeAttenuationCorrection|flag|RADOME ATTENUATION CORRECTION|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +025016|clearAirAttenuationCorrection|double|CLEAR-AIR ATTENUATION CORRECTION|dB/m|5|0|6|dB/m|5|2 +025017|precipitationAttenuationCorrection|flag|PRECIPITATION ATTENUATION CORRECTION|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +025018|aToZLawForAttenuationFactor|long|A TO Z LAW FOR ATTENUATION FACTOR|Numeric|7|0|6|Numeric|7|2 +025019|aToZLawForAttenuationExponent|long|A TO Z LAW FOR ATTENUATION EXPONENT|Numeric|2|0|7|Numeric|2|3 +025020|meanSpeedEstimation|table|MEAN SPEED ESTIMATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +025021|windComputationEnhancement|flag|WIND COMPUTATION ENHANCEMENT|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +025022|ghrsstRejectionFlag|flag|GHRSST* REJECTION FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025023|ghrsstConfidenceFlag|flag|GHRSST CONFIDENCE FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025024|ghrsstDataQuality|table|GHRSST DATA QUALITY|CODE TABLE|0|0|4|CODE TABLE|0|2 +025025|batteryVoltage|double|BATTERY VOLTAGE|V|1|0|9|V|1|3 +025026|batteryVoltageLargeRange|double|BATTERY VOLTAGE (LARGE RANGE)|V|1|0|12|V|1|4 +025028|operatorOrManufacturerDefinedParameter|long|OPERATOR OR MANUFACTURER DEFINED PARAMETER|Numeric|1|-16384|15|Numeric|1|5 +025029|calibrationMethod|flag|CALIBRATION METHOD|FLAG TABLE|0|0|6|FLAG TABLE|0|2 +025030|runningMeanSeaSurfaceTemperatureUsage|table|RUNNING MEAN SEA-SURFACE TEMPERATURE USAGE|CODE TABLE|0|0|2|CODE TABLE|0|1 +025031|nwpGeneratedVerticalProfileThinningMethod|table|NWP-GENERATED VERTICAL PROFILE THINNING METHOD|CODE TABLE|0|0|3|CODE TABLE|0|1 +025032|windProfilerModeInformation|table|WIND PROFILER MODE INFORMATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +025033|windProfilerSubmodeInformation|table|WIND PROFILER SUBMODE INFORMATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +025034|windProfilerQualityControlTestResults|flag|WIND PROFILER QUALITY CONTROL TEST RESULTS|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +025035|decisionMethodForPolarity|table|DECISION METHOD FOR POLARITY|CODE TABLE|0|0|3|CODE TABLE|0|1 +025036|atmosphericsLocationMethod|table|ATMOSPHERICS LOCATION METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +025037|sstBias|double|SST BIAS|K|2|-127|8|K|2|3 +025038|differenceBetweenSstAndAnalysis|double|DIFFERENCE BETWEEN SST AND ANALYSIS|K|1|-127|8|K|1|3 +025040|co2WindProductDerivation|table|CO2 WIND PRODUCT DERIVATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +025041|movingPlatformDirectionReportingMethod|table|MOVING PLATFORM DIRECTION REPORTING METHOD|CODE TABLE|0|0|2|CODE TABLE|0|1 +025042|movingPlatformSpeedReportingMethod|table|MOVING PLATFORM SPEED REPORTING METHOD|CODE TABLE|0|0|2|CODE TABLE|0|1 +025043|waveSamplingIntervalTime|double|WAVE SAMPLING INTERVAL (TIME)|s|4|0|15|s|4|5 +025044|waveSamplingIntervalSpace|double|WAVE SAMPLING INTERVAL (SPACE)|m|2|0|14|m|2|5 +025045|hirsChannelCombination|flag|HIRS CHANNEL COMBINATION|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +025046|msuChannelCombination|flag|MSU CHANNEL COMBINATION|FLAG TABLE|0|0|5|FLAG TABLE|0|2 +025047|ssuChannelCombination|flag|SSU CHANNEL COMBINATION|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +025048|amsuAChannelCombination|flag|AMSU-A CHANNEL COMBINATION|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +025049|amsuBChannelCombination|flag|AMSU-B CHANNEL COMBINATION|FLAG TABLE|0|0|6|FLAG TABLE|0|2 +025050|principalComponentScore|long|PRINCIPAL COMPONENT SCORE|Numeric|4|-131072|18|Numeric|4|6 +025051|avhrrChannelCombination|flag|AVHRR CHANNEL COMBINATION|FLAG TABLE|0|0|7|FLAG TABLE|0|3 +025052|log10OfPrincipalComponentsNormalizedFitToData|long|LOG10 OF PRINCIPAL COMPONENTS NORMALIZED FIT TO DATA|Numeric|4|0|15|Numeric|4|5 +025053|observationQuality|flag|OBSERVATION QUALITY|FLAG TABLE|0|0|12|FLAG TABLE|0|4 +025054|ssmisSubframeIdNumber|long|SSMIS SUBFRAME ID NUMBER|Numeric|0|0|5|Numeric|0|2 +025055|multiplexerHousekeeping|double|MULTIPLEXER HOUSEKEEPING|K|2|0|16|K|2|5 +025060|softwareIdentification|long|SOFTWARE IDENTIFICATION|Numeric|0|0|14|Numeric|0|5 +025061|softwareVersionNumber|string|SOFTWARE IDENTIFICATION AND VERSION NUMBER|CCITT IA5|0|0|96|Character|0|12 +025062|databaseIdentification|long|DATABASE IDENTIFICATION|Numeric|0|0|14|Numeric|0|5 +025063|SystemIdentifier|table|CENTRAL PROCESSOR OR SYSTEM IDENTIFIER|CODE TABLE|0|0|8|CODE TABLE|0|3 +025065|orientationCorrectionAzimuth|double|ORIENTATION CORRECTION (AZIMUTH)|deg|2|-1000|11|deg|2|4 +025066|orientationCorrectionElevation|double|ORIENTATION CORRECTION (ELEVATION)|deg|2|-1000|11|deg|2|4 +025067|radiosondeReleasePointPressureCorrection|long|RADIOSONDE RELEASE POINT PRESSURE CORRECTION|Pa|0|-8000|14|Pa|0|4 +025068|numberOfArchiveRecomputes|long|NUMBER OF ARCHIVE RECOMPUTES|Numeric|0|0|7|Numeric|0|3 +025069|flightLevelPressureCorrections|flag|FLIGHT LEVEL PRESSURE CORRECTIONS|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +025070|majorFrameCount|long|MAJOR FRAME COUNT|Numeric|0|0|4|Numeric|0|2 +025071|frameCount|long|FRAME COUNT|Numeric|0|0|5|Numeric|0|2 +025075|satelliteAntennaCorrectionsVersionNumber|long|SATELLITE ANTENNA CORRECTIONS VERSION NUMBER|Numeric|0|0|5|Numeric|0|2 +025076|log10OfTemperatureRadianceCentralWaveNumberForAtovs|double|LOG10 OF (TEMPERATURE-RADIANCE CENTRAL WAVE NUMBER) FOR ATOVS|log (m-1)|8|0|30|log (m-1)|8|10 +025077|bandwidthCorrectionCoefficient1|long|BANDWIDTH CORRECTION COEFFICIENT 1|Numeric|5|-100000|18|Numeric|5|7 +025078|bandwidthCorrectionCoefficient2|long|BANDWIDTH CORRECTION COEFFICIENT 2|Numeric|5|0|17|Numeric|5|6 +025079|albedoRadianceSolarFilteredIrradianceForAtovs|double|ALBEDO-RADIANCE SOLAR FILTERED IRRADIANCE FOR ATOVS|W m-2|4|0|24|W m-2|4|8 +025080|albedoRadianceEquivalentFilterWidthForAtovs|double|ALBEDO-RADIANCE EQUIVALENT FILTER WIDTH FOR ATOVS|m|10|0|14|m|10|5 +025081|incidenceAngle|double|INCIDENCE ANGLE|deg|3|0|17|deg|3|6 +025082|azimuthAngle|double|AZIMUTH ANGLE|deg|3|0|19|deg|3|6 +025083|faradayRotationalAngle|double|FARADAY ROTATIONAL ANGLE|deg|3|0|19|deg|3|6 +025084|geometricRotationalAngle|double|GEOMETRIC ROTATIONAL ANGLE|deg|5|0|26|deg|5|8 +025085|fractionOfClearPixelsInHirsFov|long|FRACTION OF CLEAR PIXELS IN HIRS FOV|Numeric|0|0|7|Numeric|0|3 +025086|depthCorrectionIndicator|table|DEPTH CORRECTION INDICATOR|CODE TABLE|0|0|2|CODE TABLE|0|1 +025090|orbitStateFlag|table|ORBIT STATE FLAG|CODE TABLE|0|0|4|CODE TABLE|0|2 +025091|structureConstantOfRefractionIndexCn2|double|STRUCTURE CONSTANT OF THE REFRACTION INDEX (CN2)|dB|3|-18192|13|dB|3|5 +025092|acousticPropagationVelocity|double|ACOUSTIC PROPAGATION VELOCITY|m/s|2|28000|14|m/s|2|5 +025093|rassComputationCorrection|flag|RASS COMPUTATION CORRECTION|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +025095|altimeterStateFlag|flag|ALTIMETER STATE FLAG|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +025096|radiometerStateFlag|flag|RADIOMETER STATE FLAG|FLAG TABLE|0|0|5|FLAG TABLE|0|2 +025097|threeDimensionalErrorEstimateOfNavigatorOrbit|table|THREE-DIMENSIONAL ERROR ESTIMATE OF THE NAVIGATOR ORBIT|CODE TABLE|0|0|4|CODE TABLE|0|2 +025098|altimeterDataQualityFlag|flag|ALTIMETER DATA QUALITY FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025099|altimeterCorrectionQualityFlag|flag|ALTIMETER CORRECTION QUALITY FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025100|xbtOrXctdFallRateEquationCoefficientA|long|XBT/XCTD FALL RATE EQUATION COEFFICIENT A|Numeric|5|0|20|Numeric|5|6 +025101|xbtOrXctdFallRateEquationCoefficientB|long|XBT/XCTD FALL RATE EQUATION COEFFICIENT B|Numeric|5|-500000|21|Numeric|5|6 +025102|numberOfMissingLinesExcludingDataGaps|long|NUMBER OF MISSING LINES EXCLUDING DATA GAPS|Numeric|0|0|8|Numeric|0|3 +025103|numberOfDirectionalBins|long|NUMBER OF DIRECTIONAL BINS|Numeric|0|0|8|Numeric|0|3 +025104|numberOfWavelengthBins|long|NUMBER OF WAVELENGTH BINS|Numeric|0|0|8|Numeric|0|3 +025105|firstDirectionalBin|double|FIRST DIRECTIONAL BIN|deg|3|0|19|deg|3|6 +025106|directionalBinStep|double|DIRECTIONAL BIN STEP|deg|3|0|19|deg|3|6 +025107|firstWavelengthBin|double|FIRST WAVELENGTH BIN|m|3|0|29|m|3|9 +025108|lastWavelengthBin|double|LAST WAVELENGTH BIN|m|3|0|29|m|3|9 +025110|imageProcessingSummary|flag|IMAGE PROCESSING SUMMARY|FLAG TABLE|0|0|10|FLAG TABLE|0|4 +025111|numberOfInputDataGaps|long|NUMBER OF INPUT DATA GAPS|Numeric|0|0|8|Numeric|0|3 +025112|bandSpecificAltimeterDataQualityFlag|flag|BAND SPECIFIC ALTIMETER DATA QUALITY FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025113|bandSpecificAltimeterCorrectionQualityFlag|flag|BAND SPECIFIC ALTIMETER CORRECTION QUALITY FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025120|ra2L2ProcessingFlag|table|RA2-L2-PROCESSING FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +025121|ra2L2ProcessingQuality|long|RA2-L2-PROCESSING QUALITY|%|0|0|7|%|0|3 +025122|hardwareConfigurationForRf|table|HARDWARE CONFIGURATION FOR RF|CODE TABLE|0|0|2|CODE TABLE|0|1 +025123|hardwareConfigurationForHpa|table|HARDWARE CONFIGURATION FOR HPA|CODE TABLE|0|0|2|CODE TABLE|0|1 +025124|mwrL2ProcessingFlag|table|MWR-L2-PROCESSING FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +025125|mwrL2ProcessingQuality|long|MWR-L2-PROCESSING QUALITY|%|0|0|7|%|0|3 +025126|modelDryTroposphericCorrection|double|MODEL DRY TROPOSPHERIC CORRECTION|m|3|-32768|16|m|3|5 +025127|invertedBarometerCorrection|double|INVERTED BAROMETER CORRECTION|m|3|-32768|16|m|3|5 +025128|modelWetTroposphericCorrection|double|MODEL WET TROPOSPHERIC CORRECTION|m|3|-32768|16|m|3|5 +025129|mwrDerivedWetTroposphericCorrection|double|MWR DERIVED WET TROPOSPHERIC CORRECTION|m|3|-32768|16|m|3|5 +025130|ra2IonosphericCorrectionOnKuBand|double|RA2 IONOSPHERIC CORRECTION ON KU BAND|m|3|-32768|16|m|3|5 +025131|ionosphericCorrectionFromDorisOnKuBand|double|IONOSPHERIC CORRECTION FROM DORIS ON KU BAND|m|3|-32768|16|m|3|5 +025132|ionosphericCorrectionFromModelOnKuBand|double|IONOSPHERIC CORRECTION FROM MODEL ON KU BAND|m|3|-32768|16|m|3|5 +025133|seaStateBiasCorrectionOnKuBand|double|SEA STATE BIAS CORRECTION ON KU BAND|m|3|-32768|16|m|3|5 +025134|ra2IonosphericCorrectionOnSBand|double|RA2 IONOSPHERIC CORRECTION ON S BAND|m|3|-32768|16|m|3|5 +025135|ionosphericCorrectionFromDorisOnSBand|double|IONOSPHERIC CORRECTION FROM DORIS ON S BAND|m|3|-32768|16|m|3|5 +025136|ionosphericCorrectionFromModelOnSBand|double|IONOSPHERIC CORRECTION FROM MODEL ON S BAND|m|3|-32768|16|m|3|5 +025137|seaStateBiasCorrectionOnSBand|double|SEA STATE BIAS CORRECTION ON S BAND|m|3|-32768|16|m|3|5 +025138|averageSignalToNoiseRatio|long|AVERAGE SIGNAL-TO-NOISE RATIO|Numeric|0|-2048|12|Numeric|0|4 +025140|startChannel|long|START CHANNEL|Numeric|0|0|14|Numeric|0|5 +025141|endChannel|long|END CHANNEL|Numeric|0|0|14|Numeric|0|5 +025142|channelScaleFactor|long|CHANNEL SCALE FACTOR|Numeric|0|0|6|Numeric|0|2 +025143|linearCoefficient|long|LINEAR COEFFICIENT|Numeric|6|-5000000|24|Numeric|6|8 +025148|coefficientOfVariation|long|COEFFICIENT OF VARIATION|Numeric|2|-10000|15|Numeric|2|5 +025149|optimalEstimationCost|long|OPTIMAL ESTIMATION COST|Numeric|0|0|8|Numeric|0|3 +025150|methodOfTropicalCycloneIntensityAnalysisUsingSatelliteData|table|METHOD OF TROPICAL CYCLONE INTENSITY ANALYSIS USING SATELLITE DATA|CODE TABLE|0|0|4|CODE TABLE|0|2 +025160|kuBandNetInstrumentalCorrection|double|KU BAND NET INSTRUMENTAL CORRECTION|m|4|-120000|18|m|4|6 +025161|cBandNetInstrumentalCorrection|double|C BAND NET INSTRUMENTAL CORRECTION|m|4|-120000|18|m|4|6 +025162|seaStateBiasCorrectionOnCBand|double|SEA STATE BIAS CORRECTION ON C BAND|m|4|-6000|13|m|4|4 +025163|altimeterIonosphericCorrectionOnKuBand|double|ALTIMETER IONOSPHERIC CORRECTION ON KU BAND|m|3|-32768|16|m|3|5 +025164|radiometerWetTroposphericCorrection|double|RADIOMETER WET TROPOSPHERIC CORRECTION|m|4|-5000|13|m|4|4 +025165|ionosphericCorrectionFromModelOnSpecificBand|double|IONOSPHERIC CORRECTION FROM MODEL ON SPECIFIC BAND|m|4|-32768|16|m|4|5 +025166|seaStateBiasCorrectionOnSpecificBand|double|SEA STATE BIAS CORRECTION ON SPECIFIC BAND|m|4|-32768|16|m|4|5 +025167|specificBandNetInstrumentalCorrection|double|SPECIFIC BAND NET INSTRUMENTAL CORRECTION|m|4|-120000|18|m|4|6 +025170|samplingIntervalTime|long|SAMPLING INTERVAL (TIME)|s|0|0|10|s|0|4 +025171|sampleAveragingPeriod|long|SAMPLE AVERAGING PERIOD|s|0|0|10|s|0|4 +025172|numberOfSamples|long|NUMBER OF SAMPLES|Numeric|0|0|10|Numeric|0|4 +025174|smosInformationFlag|flag|SMOS INFORMATION FLAG|FLAG TABLE|0|0|14|FLAG TABLE|0|5 +025175|modifiedResidual|long|MODIFIED RESIDUAL|Numeric|2|0|13|Numeric|2|4 +025180|lrmPercent|double|LRM* PER CENT|%|2|0|16|%|2|5 +025181|l2ProcessingFlag|table|L2 PROCESSING FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +025182|l1ProcessingFlag|table|L1 PROCESSING FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +025183|l1ProcessingQuality|double|L1 PROCESSING QUALITY|%|2|0|14|%|2|5 +025184|l2ProductStatus|table|L2 PRODUCT STATUS|CODE TABLE|0|0|2|CODE TABLE|0|1 +025185|encryptionMethod|table|ENCRYPTION METHOD|CODE TABLE|0|0|8|CODE TABLE|0|3 +025186|encryptionKeyVersion|string|ENCRYPTION KEY VERSION|CCITT IA5|0|0|96|Character|0|12 +025187|confidenceFlag|table|CONFIDENCE FLAG|CODE TABLE|0|0|4|CODE TABLE|0|2 +025188|methodForReducingPressureToSeaLevel|table|METHOD FOR REDUCING PRESSURE TO SEA LEVEL|CODE TABLE|0|0|5|CODE TABLE|0|2 +025189|rangeCutOffWavelength|long|RANGE CUT-OFF WAVELENGTH|m|0|1|9|m|0|3 +025190|altimeterEchoProcessingMode|table|ALTIMETER ECHO PROCESSING MODE|CODE TABLE|0|0|8|CODE TABLE|0|3 +025191|altimeterTrackingMode|table|ALTIMETER TRACKING MODE|CODE TABLE|0|0|8|CODE TABLE|0|3 +026001|principalTimeOfDailyReadingInUtcOfMaximumTemperature|double|PRINCIPAL TIME OF DAILY READING IN UTC OF MAXIMUM TEMPERATURE|h|1|0|12|h|1|3 +026002|principalTimeOfDailyReadingInUtcOfMinimumTemperature|double|PRINCIPAL TIME OF DAILY READING IN UTC OF MINIMUM TEMPERATURE|h|1|0|12|h|1|3 +026003|timeDifference|long|TIME DIFFERENCE|min|0|-1440|12|min|0|4 +026010|hoursIncluded|flag|HOURS INCLUDED|FLAG TABLE|0|0|26|FLAG TABLE|0|9 +026020|durationOfPrecipitation|long|DURATION OF PRECIPITATION|min|0|0|11|min|0|4 +026021|nonCoordinateYear|long|YEAR|a|0|0|12|a|0|4 +026022|nonCoordinateMonth|long|MONTH|mon|0|0|4|mon|0|2 +026023|nonCoordinateDay|long|DAY|d|0|0|6|d|0|2 +026030|measurementIntegrationTime|double|MEASUREMENT INTEGRATION TIME|s|2|0|8|s|2|3 +027001|nonCoordinateLatitude|double|LATITUDE (HIGH ACCURACY)|deg|5|-9000000|25|deg|5|7 +027002|nonCoordinateLatitude|double|LATITUDE (COARSE ACCURACY)|deg|2|-9000|15|deg|2|4 +027003|alternateLatitude|double|ALTERNATE LATITUDE (COARSE ACCURACY)|deg|2|-9000|15|deg|2|4 +027004|alternateLatitude|double|ALTERNATE LATITUDE (HIGH ACCURACY)|deg|5|-9000000|25|deg|5|7 +027010|footprintAxis1|long|FOOTPRINT AXIS 1|m|-1|0|14|m|-1|5 +027020|satelliteLocationCounter|long|SATELLITE LOCATION COUNTER|Numeric|0|0|16|Numeric|0|5 +027021|satelliteSublocationDimension|long|SATELLITE SUBLOCATION DIMENSION|Numeric|0|0|16|Numeric|0|5 +027031|DistanceFromEarthCentreInDirectionOf0DegreesLongitude|double|IN DIRECTION OF 0 DEGREES LONGITUDE, DISTANCE FROM THE EARTH'S CENTRE|m|2|-1073741824|31|m|2|10 +027079|horizontalWidthOfSampledVolume|long|HORIZONTAL WIDTH OF SAMPLED VOLUME|m|0|0|18|m|0|6 +027080|viewingAzimuthAngle|double|VIEWING AZIMUTH ANGLE|deg|2|0|16|deg|0|5 +028001|nonCoordinateLongitude|double|LONGITUDE (HIGH ACCURACY)|deg|5|-18000000|26|deg|5|8 +028002|nonCoordinateLongitude|double|LONGITUDE (COARSE ACCURACY)|deg|2|-18000|16|deg|2|5 +028003|alternateLongitude|double|ALTERNATE LONGITUDE (COARSE ACCURACY)|deg|2|-18000|16|deg|2|5 +028004|alternateLongitude|double|ALTERNATE LONGITUDE (HIGH ACCURACY)|deg|5|-18000000|26|deg|5|8 +028010|footprintAxis2|long|FOOTPRINT AXIS 2|m|-1|0|14|m|-1|5 +028031|DistanceFromEarthCentreInDirection90DegreesEast|double|IN DIRECTION 90 DEGREES EAST, DISTANCE FROM THE EARTH'S CENTRE|m|2|-1073741824|31|m|2|10 +029001|projectionType|table|PROJECTION TYPE|CODE TABLE|0|0|3|CODE TABLE|0|1 +029002|coordinateGridType|table|COORDINATE GRID TYPE|CODE TABLE|0|0|3|CODE TABLE|0|1 +029014|optionalListOfParametersForAnExternalMapProjectionLibrary|string|OPTIONAL LIST OF PARAMETERS FOR AN EXTERNAL MAP PROJECTION LIBRARY|CCITT IA5|0|0|504|Character|0|63 +030001|pixelValue4Bits|long|PIXEL VALUE (4 BITS)|Numeric|0|0|4|Numeric|0|2 +030002|pixelValue8Bits|long|PIXEL VALUE (8 BITS)|Numeric|0|0|8|Numeric|0|3 +030004|pixelValue16Bits|long|PIXEL VALUE (16 BITS)|Numeric|0|0|16|Numeric|0|5 +030010|numberOfGridPoints|long|NUMBER OF GRID POINTS|Numeric|0|0|13|Numeric|0|4 +030021|numberOfPixelsPerRow|long|NUMBER OF PIXELS PER ROW|Numeric|0|0|12|Numeric|0|4 +030022|numberOfPixelsPerColumn|long|NUMBER OF PIXELS PER COLUMN|Numeric|0|0|12|Numeric|0|4 +030031|pictureType|table|PICTURE TYPE|CODE TABLE|0|0|4|CODE TABLE|0|2 +030032|combinationWithOtherData|flag|COMBINATION WITH OTHER DATA|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +030033|numberOfBinsAlongRadial|long|NUMBER OF BINS ALONG THE RADIAL|Numeric|0|0|12|Numeric|0|4 +030034|numberOfAzimuths|long|NUMBER OF AZIMUTHS|Numeric|0|0|12|Numeric|0|4 +031000|shortDelayedDescriptorReplicationFactor|long|SHORT DELAYED DESCRIPTOR REPLICATION FACTOR|Numeric|0|0|1|NA|0|0 +031001|delayedDescriptorReplicationFactor|long|DELAYED DESCRIPTOR REPLICATION FACTOR|Numeric|0|0|8|NA|0|0 +031002|extendedDelayedDescriptorReplicationFactor|long|EXTENDED DELAYED DESCRIPTOR REPLICATION FACTOR|Numeric|0|0|16|NA|0|0 +031011|delayedDescriptorAndDataRepetitionFactor|long|DELAYED DESCRIPTOR AND DATA REPETITION FACTOR|Numeric|0|0|8|NA|0|0 +031012|extendedDelayedDescriptorAndDataRepetitionFactor|long|EXTENDED DELAYED DESCRIPTOR AND DATA REPETITION FACTOR|Numeric|0|0|16|NA|0|0 +031021|associatedFieldSignificance|table|ASSOCIATED FIELD SIGNIFICANCE|CODE TABLE|0|0|6|NA|0|0 +031031|dataPresentIndicator|flag|DATA PRESENT INDICATOR|FLAG TABLE|0|0|1|NA|0|0 +033002|qualityInformation|table|QUALITY INFORMATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +033003|qualityInformation|table|QUALITY INFORMATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +033005|qualityInformationAwsData|flag|QUALITY INFORMATION (AWS DATA)|FLAG TABLE|0|0|30|FLAG TABLE|0|10 +033006|internalMeasurementStatusInformationAws|table|INTERNAL MEASUREMENT STATUS INFORMATION (AWS)|CODE TABLE|0|0|3|CODE TABLE|0|1 +033007|percentConfidence|long|PER CENT CONFIDENCE|%|0|0|7|%|0|3 +033015|dataQualityCheckIndicator|table|DATA QUALITY-CHECK INDICATOR|CODE TABLE|0|0|6|CODE TABLE|0|2 +033020|qualityControlIndicationOfFollowingValue|table|QUALITY CONTROL INDICATION OF FOLLOWING VALUE|CODE TABLE|0|0|3|CODE TABLE|0|1 +033021|qualityOfFollowingValue|table|QUALITY OF FOLLOWING VALUE|CODE TABLE|0|0|2|CODE TABLE|0|1 +033022|qualityOfBuoySatelliteTransmission|table|QUALITY OF BUOY SATELLITE TRANSMISSION|CODE TABLE|0|0|2|CODE TABLE|0|1 +033023|qualityOfBuoyLocation|table|QUALITY OF BUOY LOCATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +033024|stationElevationQualityMarkForMobileStations|table|STATION ELEVATION QUALITY MARK (FOR MOBILE STATIONS)|CODE TABLE|0|0|4|CODE TABLE|0|2 +033025|acarsInterpolatedValuesIndicator|table|ACARS INTERPOLATED VALUES INDICATOR|CODE TABLE|0|0|3|CODE TABLE|0|1 +033026|moistureQuality|table|MOISTURE QUALITY|CODE TABLE|0|0|6|CODE TABLE|0|2 +033027|locationQualityClassRangeOfRadiusOf66Confidence|table|LOCATION QUALITY CLASS (RANGE OF RADIUS OF 66 % CONFIDENCE)|CODE TABLE|0|0|3|CODE TABLE|0|1 +033028|snapshotOverallQuality|table|SNAPSHOT OVERALL QUALITY|CODE TABLE|0|0|3|CODE TABLE|0|1 +033030|scanLineStatusFlagsForAtovs|flag|SCAN LINE STATUS FLAGS FOR ATOVS|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033031|scanLineQualityFlagsForAtovs|flag|SCAN LINE QUALITY FLAGS FOR ATOVS|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033032|channelQualityFlagsForAtovs|flag|CHANNEL QUALITY FLAGS FOR ATOVS|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033033|fieldOfViewQualityFlagsForAtovs|flag|FIELD OF VIEW QUALITY FLAGS FOR ATOVS|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033035|qualityControl|table|MANUAL/AUTOMATIC QUALITY CONTROL|CODE TABLE|0|0|4|CODE TABLE|0|2 +033036|nominalConfidenceThreshold|long|NOMINAL CONFIDENCE THRESHOLD|%|0|0|7|%|0|3 +033037|windCorrelationError|flag|WIND CORRELATION ERROR|FLAG TABLE|0|0|20|FLAG TABLE|0|7 +033038|qualityFlagsForGroundBasedGnssData|flag|QUALITY FLAGS FOR GROUND-BASED GNSS DATA|FLAG TABLE|0|0|10|FLAG TABLE|0|4 +033039|radioOccultationDataQualityFlags|flag|QUALITY FLAGS FOR RADIO OCCULTATION DATA|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033040|confidenceInterval|long|CONFIDENCE INTERVAL|%|0|0|7|%|0|3 +033041|attributeOfFollowingValue|table|ATTRIBUTE OF FOLLOWING VALUE|CODE TABLE|0|0|2|CODE TABLE|0|1 +033042|typeOfLimitRepresentedByFollowingValue|table|TYPE OF LIMIT REPRESENTED BY FOLLOWING VALUE|CODE TABLE|0|0|3|CODE TABLE|0|1 +033043|astConfidence|flag|AST CONFIDENCE|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +033044|asarQualityInformation|flag|ASAR QUALITY INFORMATION|FLAG TABLE|0|0|15|FLAG TABLE|0|5 +033045|probabilityOfFollowingEvent|long|PROBABILITY OF FOLLOWING EVENT|%|0|0|7|%|0|3 +033046|conditionalProbability|long|CONDITIONAL PROBABILITY OF FOLLOWING EVENT WITH RESPECT TO SPECIFIED CONDITIONING EVENT|%|0|0|7|%|0|3 +033047|measurementConfidenceData|flag|MEASUREMENT CONFIDENCE DATA|FLAG TABLE|0|0|31|FLAG TABLE|0|11 +033048|confidenceMeasureOfSarInversion|table|CONFIDENCE MEASURE OF SAR INVERSION|CODE TABLE|0|0|2|CODE TABLE|0|1 +033049|confidenceMeasureOfWindRetrieval|table|CONFIDENCE MEASURE OF WIND RETRIEVAL|CODE TABLE|0|0|2|CODE TABLE|0|1 +033050|globalGtsppQualityFlag|table|GLOBAL GTSPP QUALITY FLAG|CODE TABLE|0|0|4|CODE TABLE|0|2 +033052|sBandOceanRetrackingQuality|flag|S BAND OCEAN RETRACKING QUALITY|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +033053|kuBandOceanRetrackingQuality|flag|KU BAND OCEAN RETRACKING QUALITY|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +033055|windVectorQualityFlag|flag|WIND VECTOR QUALITY FLAG|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033056|sigma0QualityFlag|flag|SIGMA-0 QUALITY FLAG|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033060|gqisFlagQual|table|GQISFLAGQUAL - INDIVIDUAL IASI-SYSTEM QUALITY FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +033061|gqisQualIndex|long|GQISQUALINDEX - INDICATOR FOR INSTRUMENT NOISE PERFORMANCE (CONTRIBUTIONS FROM SPECTRAL AND RADIOMETRIC CALIBRATION)|%|0|0|7|%|0|3 +033062|gqisQualIndexLoc|long|GQISQUALINDEXLOC - INDICATOR FOR GEOMETRIC QUALITY INDEX|%|0|0|7|%|0|3 +033063|gqisQualIndexRad|long|GQISQUALINDEXRAD - INDICATOR FOR INSTRUMENT NOISE PERFORMANCE (CONTRIBUTIONS FROM RADIOMETRIC CALIBRATION)|%|0|0|7|%|0|3 +033064|gqisQualIndexSpect|long|GQISQUALINDEXSPECT - INDICATOR FOR INSTRUMENT NOISE PERFORMANCE (CONTRIBUTIONS FROM SPECTRAL CALIBRATION)|%|0|0|7|%|0|3 +033065|gqisSysTecQual|long|GQISSYSTECSONDQUAL - OUTPUT OF SYSTEM TEC (TECHNICAL EXPERTISE CENTRE) QUALITY FUNCTION|Numeric|0|0|24|Numeric|0|8 +033066|amvQualityFlag|flag|AMV QUALITY FLAG|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033070|totalOzoneQuality|table|TOTAL OZONE QUALITY|CODE TABLE|0|0|4|CODE TABLE|0|2 +033071|profileOzoneQuality|table|PROFILE OZONE QUALITY|CODE TABLE|0|0|4|CODE TABLE|0|2 +033072|ozoneError|table|OZONE ERROR|CODE TABLE|0|0|5|CODE TABLE|0|2 +033075|scanLevelDataValidityQualityFlags|flag|SCAN-LEVEL QUALITY FLAGS|FLAG TABLE|0|0|13|FLAG TABLE|0|5 +033076|calibrationQualityFlags|flag|CALIBRATION QUALITY FLAGS|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +033077|fieldOfViewQualityFlags|flag|FIELD-OF-VIEW QUALITY FLAGS|FLAG TABLE|0|0|19|FLAG TABLE|0|7 +033078|geolocationQuality|table|GEOLOCATION QUALITY|CODE TABLE|0|0|4|CODE TABLE|0|2 +033079|granuleLevelQualityFlags|flag|GRANULE LEVEL QUALITY FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033080|scanLevelQualityFlags|flag|SCAN LEVEL QUALITY FLAGS|FLAG TABLE|0|0|20|FLAG TABLE|0|7 +033081|channelDataQualityFlags|flag|CHANNEL DATA QUALITY FLAGS|FLAG TABLE|0|0|12|FLAG TABLE|0|4 +033082|geolocationQualityFlags|flag|GEOLOCATION QUALITY FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033083|radianceDataQualityFlags|flag|RADIANCE DATA QUALITY FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033084|pixelLevelQualityFlags|flag|PIXEL LEVEL QUALITY FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033085|aerosolOpticalThicknessQualityFlags|flag|AEROSOL OPTICAL THICKNESS QUALITY FLAGS|FLAG TABLE|0|0|18|FLAG TABLE|0|6 +033086|qualityOfPixelLevelRetrieval|table|QUALITY OF PIXEL LEVEL RETRIEVAL|CODE TABLE|0|0|3|CODE TABLE|0|1 +033087|extentOfSatelliteWithinSouthAtlanticAnomalyBasedOnClimatologicalData|table|EXTENT OF SATELLITE WITHIN SOUTH ATLANTIC ANOMALY (BASED ON CLIMATOLOGICAL DATA)|CODE TABLE|0|0|4|CODE TABLE|0|1 +033088|ozoneTotalColumnQualityFlag|flag|OZONE TOTAL COLUMN QUALITY FLAG|FLAG TABLE|0|0|18|FLAG TABLE|0|6 +033089|noiseEquivalentDeltaTemperatureNedtQualityIndicatorsForWarmTargetCalibration|double|NOISE EQUIVALENT DELTA TEMPERATURE (NEDT) QUALITY INDICATORS FOR WARM TARGET CALIBRATION|K|2|0|12|K|2|4 +033090|nedtQualityIndicatorsForColdTargetCalibration|double|NEDT QUALITY INDICATORS FOR COLD TARGET CALIBRATION|K|2|0|12|K|2|4 +033091|nedtQualityIndicatorsForOverallCalibration|double|NEDT QUALITY INDICATORS FOR OVERALL CALIBRATION|K|2|0|12|K|2|4 +033092|bandSpecificOceanQualityFlag|flag|BAND SPECIFIC OCEAN QUALITY FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +035000|fmAndRegionalCodeNumber|table|FM AND REGIONAL CODE NUMBER|CODE TABLE|0|0|10|CODE TABLE|0|3 +035001|timeFrameForMonitoring|table|TIME FRAME FOR MONITORING|CODE TABLE|0|0|3|CODE TABLE|0|1 +035011|numberOfReportsActuallyReceived|long|NUMBER OF REPORTS ACTUALLY RECEIVED|Numeric|0|0|14|Numeric|0|4 +035021|bulletinBeingMonitoredTtaaii|string|BULLETIN BEING MONITORED (TTAAII)|CCITT IA5|0|0|48|Character|0|6 +035022|bulletinBeingMonitoredYygggg|string|BULLETIN BEING MONITORED (YYGGGG)|CCITT IA5|0|0|48|Character|0|6 +035023|bulletinBeingMonitoredCccc|string|BULLETIN BEING MONITORED (CCCC)|CCITT IA5|0|0|32|Character|0|4 +035024|bulletinBeingMonitoredBbb|string|BULLETIN BEING MONITORED (BBB)|CCITT IA5|0|0|24|Character|0|3 +035030|discrepanciesInAvailabilityOfExpectedData|table|DISCREPANCIES IN THE AVAILABILITY OF EXPECTED DATA|CODE TABLE|0|0|4|CODE TABLE|0|1 +035031|qualifierOnMonitoringResults|table|QUALIFIER ON MONITORING RESULTS|CODE TABLE|0|0|7|CODE TABLE|0|2 +035032|causeOfMissingData|table|CAUSE OF MISSING DATA|CODE TABLE|0|0|4|CODE TABLE|0|1 +035033|observationAndCollectionDeficiencies|table|OBSERVATION AND COLLECTION DEFICIENCIES|CODE TABLE|0|0|7|CODE TABLE|0|2 +035034|statisticalTrendsForAvailabilityOfDataDuringSurveyPeriods|table|STATISTICAL TRENDS FOR AVAILABILITY OF DATA (DURING THE SURVEY PERIOD(S))|CODE TABLE|0|0|3|CODE TABLE|0|1 +035035|reasonForTermination|table|REASON FOR TERMINATION|CODE TABLE|0|0|5|CODE TABLE|0|2 +040001|surfaceSoilMoisture|double|SURFACE SOIL MOISTURE (MS)|%|1|0|10|%|1|4 +040002|estimatedErrorInSurfaceSoilMoisture|double|ESTIMATED ERROR IN SURFACE SOIL MOISTURE|%|1|0|10|%|1|4 +040003|meanSurfaceSoilMoisture|long|MEAN SURFACE SOIL MOISTURE|Numeric|3|0|10|Numeric|3|4 +040004|rainFallDetection|long|RAIN FALL DETECTION|Numeric|3|0|10|Numeric|3|4 +040005|soilMoistureCorrectionFlag|flag|SOIL MOISTURE CORRECTION FLAG|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +040006|soilMoistureProcessingFlag|flag|SOIL MOISTURE PROCESSING FLAG|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +040007|soilMoistureQuality|double|SOIL MOISTURE QUALITY|%|1|0|10|%|1|4 +040008|frozenLandSurfaceFraction|double|FROZEN LAND SURFACE FRACTION|%|1|0|10|%|1|4 +040009|inundationAndWetlandFraction|double|INUNDATION AND WETLAND FRACTION|%|1|0|10|%|1|4 +040010|topographicComplexity|double|TOPOGRAPHIC COMPLEXITY|%|1|0|10|%|1|4 +040011|interpolationFlag|flag|INTERPOLATION FLAG|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +040012|radiometerDataQualityFlag|flag|RADIOMETER DATA QUALITY FLAG|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +040013|radiometerBrightnessTemperatureInterpretationFlag|table|RADIOMETER BRIGHTNESS TEMPERATURE INTERPRETATION FLAG|CODE TABLE|0|0|3|CODE TABLE|0|1 +040014|highFrequencyFluctuationsOfSeaSurfaceTopographyCorrection|double|HIGH-FREQUENCY FLUCTUATIONS OF THE SEA-SURFACE TOPOGRAPHY CORRECTION|m|4|-3000|13|m|4|4 +040015|normalizedDifferentialVegetationIndex|long|NORMALIZED DIFFERENTIAL VEGETATION INDEX (NDVI)|Numeric|2|-100|8|Numeric|2|3 +040016|residualRmsInBand|long|RESIDUAL RMS IN BAND|Numeric|3|0|14|Numeric|3|5 +040017|nonNormalizedPrincipalComponentScore|long|NON-NORMALIZED PRINCIPAL COMPONENT SCORE|Numeric|0|-1073741824|31|Numeric|0|10 +040018|averageOfImagerMeasurements|double|GIACAVGIMAGIIS - AVERAGE OF IMAGER MEASUREMENTS|W m-2 sr-1 m|6|0|24|W m-2 sr-1 m|6|8 +040019|giacvarimagiisVarianceOfImagerMeasurements|double|GIACVARIMAGIIS - VARIANCE OF IMAGER MEASUREMENTS|W m-2 sr-1 m|6|0|24|W m-2 sr-1 m|6|8 +040020|gqisFlagQualDetailed|flag|GQISFLAGQUALDETAILED - QUALITY FLAG FOR THE SYSTEM|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +040021|fractionOfWeightedAvhrrPixelInIasiFovCoveredWithSnowOrIce|long|FRACTION OF WEIGHTED AVHRR PIXEL IN IASI FOV COVERED WITH SNOW/ICE|%|0|0|7|%|0|3 +040022|numberOfMissingBadOrFailedAvhrrPixels|long|NUMBER OF MISSING, BAD OR FAILED AVHRR PIXELS|Numeric|0|0|7|Numeric|0|3 +040023|auxiliaryAltimeterStateFlags|flag|AUXILIARY ALTIMETER STATE FLAGS|FLAG TABLE|0|0|5|FLAG TABLE|0|2 +040024|meteorologicalMapAvailability|table|METEOROLOGICAL MAP AVAILABILITY|CODE TABLE|0|0|3|CODE TABLE|0|1 +040025|interpolationFlagForMeanDiurnalTide|table|INTERPOLATION FLAG FOR MEAN DIURNAL TIDE|CODE TABLE|0|0|2|CODE TABLE|0|1 +040026|scoreQuantizationFactor|long|SCORE QUANTIZATION FACTOR|Numeric|2|0|16|Numeric|2|5 +040027|sunGlintAngle|double|SUN GLINT ANGLE|deg|2|-18000|16|deg|2|5 +040028|gmiQualityFlag|table|GMI QUALITY FLAG|CODE TABLE|0|0|4|CODE TABLE|0|2 +040029|horizontalObservationIntegrationLength|long|HORIZONTAL OBSERVATION INTEGRATION LENGTH|m|0|0|26|m|0|8 +040030|horizontalLineOfSightWind|double|HORIZONTAL LINE OF SIGHT WIND|m/s|2|-32767|16|m/s|2|5 +040031|errorEstimateOfHorizontalLineOfSightWind|double|ERROR ESTIMATE OF HORIZONTAL LINE OF SIGHT WIND|m/s|2|0|15|m/s|2|5 +040032|derivativeWindToPressure|double|DERIVATIVE WIND TO PRESSURE|m s-1 Pa-1|3|-100000|18|m s-1 Pa-1|3|6 +040033|derivativeWindToTemperature|double|DERIVATIVE WIND TO TEMPERATURE|m s-1 K-1|3|-100000|18|m s-1 K-1|3|6 +040034|derivativeWindToBackscatterRatio|double|DERIVATIVE WIND TO BACKSCATTER RATIO|m/s|3|-200000|19|m/s|3|6 +040035|satelliteRange|long|SATELLITE RANGE|m|0|380000|18|m|0|6 +040036|lidarL2bClassificationType|table|LIDAR L2B CLASSIFICATION TYPE|CODE TABLE|0|0|4|CODE TABLE|0|2 +040037|backscatterRatio|long|BACKSCATTER RATIO|Numeric|3|500|20|Numeric|3|7 +040038|cloudParticleSize|double|CLOUD PARTICLE SIZE|m|7|0|28|m|7|6 +040039|singleLookComplexImageIntensity|long|SINGLE LOOK COMPLEX IMAGE INTENSITY|Numeric|0|-25|5|Numeric|0|3 +040040|singleLookComplexImageSkewness|long|SINGLE LOOK COMPLEX IMAGE SKEWNESS|Numeric|2|1|13|Numeric|0|4 +040041|singleLookComplexImageKurtosis|long|SINGLE LOOK COMPLEX IMAGE KURTOSIS|Numeric|2|1|13|Numeric|0|4 +040042|singleLookComplexImageVariance|long|SINGLE LOOK COMPLEX IMAGE VARIANCE|Numeric|2|1|13|Numeric|0|4 +040043|satelliteManoeuvreIndicator|table|SATELLITE MANOEUVRE INDICATOR|CODE TABLE|0|0|3|CODE TABLE|0|1 +040044|dustIndex|long|DUST INDEX|Numeric|1|0|8|Numeric|1|3 +040045|cloudFormationAndHeightAssignment|flag|CLOUD FORMATION AND HEIGHT ASSIGNMENT|FLAG TABLE|0|0|5|FLAG TABLE|0|2 +040046|cloudinessSummary|table|CLOUDINESS SUMMARY|CODE TABLE|0|0|3|CODE TABLE|0|1 +040047|validationFlagForIasiOrIasiNgLevel1Product|table|VALIDATION FLAG FOR IASI OR IASI-NG LEVEL 1 PRODUCT|CODE TABLE|0|0|3|CODE TABLE|0|1 +040048|validationFlagOfAmsuALevel1DataFlow|table|VALIDATION FLAG OF AMSU-A LEVEL 1 DATA FLOW|CODE TABLE|0|0|3|CODE TABLE|0|1 +040049|cloudTestsExecutedAndResults|flag|CLOUD TESTS EXECUTED AND RESULTS|FLAG TABLE|0|0|16|FLAG TABLE|0|5 +040050|retrievalInitialisation|flag|RETRIEVAL INITIALISATION|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +040051|convergenceOfTheIterativeRetrieval|table|CONVERGENCE OF THE ITERATIVE RETRIEVAL|CODE TABLE|0|0|3|CODE TABLE|0|1 +040052|indicationOfSuperAdiabaticAndSuperSaturationInFinalRetrieval|flag|INDICATION OF SUPER-ADIABATIC AND SUPER-SATURATION IN FINAL RETRIEVAL|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +040053|numberOfIterationsUsedForRetrieval|long|NUMBER OF ITERATIONS USED FOR RETRIEVAL|Numeric|0|0|8|Numeric|0|3 +040054|potentialProcessingAndInputsErrors|flag|POTENTIAL PROCESSING AND INPUTS ERRORS|FLAG TABLE|0|0|13|FLAG TABLE|0|4 +040055|diagnosticsOnTheRetrieval|flag|DIAGNOSTICS ON THE RETRIEVAL|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +040056|generalRetrievalQuality|table|GENERAL RETRIEVAL QUALITY|CODE TABLE|0|0|3|CODE TABLE|0|1 +040057|iasiLevel2RetrievalFlags|flag|IASI LEVEL 2 RETRIEVAL FLAGS|FLAG TABLE|0|0|31|FLAG TABLE|0|10 +040058|numberOfVectorsDescribingTheCharacterizationMatrices|long|NUMBER OF VECTORS DESCRIBING THE CHARACTERIZATION MATRICES|Numeric|0|0|8|Numeric|0|3 +040059|numberOfLayersActuallyRetrieved|long|NUMBER OF LAYERS ACTUALLY RETRIEVED|Numeric|0|0|8|Numeric|0|3 +040060|numberOfProfilesRetrievedInScanline|long|NUMBER OF PROFILES RETRIEVED IN SCANLINE|Numeric|0|0|8|Numeric|0|3 +040061|airPartialColumnsOnEachRetrievedLayer|double|AIR PARTIAL COLUMNS ON EACH RETRIEVED LAYER|mol cm-2|3|0|16|mol cm-2|3|5 +040062|aPrioriPartialColumnsOnEachRetrievedLayer|double|A-PRIORI PARTIAL COLUMNS ON EACH RETRIEVED LAYER|mol cm-2|10|0|16|mol cm-2|10|5 +040063|scalingVectorMultiplyingTheAPrioriVectorInOrderToDefineTheRetrievedVector|long|SCALING VECTOR MULTIPLYING THE A PRIORI VECTOR IN ORDER TO DEFINE THE RETRIEVED VECTOR|Numeric|5|0|26|Numeric|5|8 +040064|mainEigenvaluesOfTheSensitivityMatrix|long|MAIN EIGENVALUES OF THE SENSITIVITY MATRIX|Numeric|6|0|31|Numeric|6|10 +040065|mainEigenvectorsOfTheSensitivityMatrix|long|MAIN EIGENVECTORS OF THE SENSITIVITY MATRIX|Numeric|6|-1000000000|31|Numeric|6|10 +040066|qualityIndicatorForAtmosphericWaterVapour|long|QUALITY INDICATOR FOR ATMOSPHERIC WATER VAPOUR|Numeric|1|0|8|Numeric|1|3 +040067|qualityIndicatorForAtmosphericTemperature|long|QUALITY INDICATOR FOR ATMOSPHERIC TEMPERATURE|Numeric|1|0|8|Numeric|1|3 +040068|generalRetrievalQualityFlagForSo2|table|GENERAL RETRIEVAL QUALITY FLAG FOR SO2|CODE TABLE|0|0|4|CODE TABLE|0|2 +040069|pwlrEstimatedRetrievalErrorForSurfaceAirTemperature|double|PWLR ESTIMATED RETRIEVAL ERROR FOR SURFACE AIR TEMPERATURE|K|4|-1000000|21|K|4|7 +040070|pwlrEstimatedRetrievalErrorOfSurfaceDewpoint|double|PWLR ESTIMATED RETRIEVAL ERROR OF SURFACE DEWPOINT|K|4|-1000000|21|K|4|7 +040071|retrievalErrorCovarianceMatrixForOzoneInPrincipalComponentDomain|long|RETRIEVAL ERROR COVARIANCE MATRIX FOR OZONE IN PRINCIPAL COMPONENT DOMAIN|Numeric|4|-1000000|21|Numeric|4|7 +040072|pwlrEstimatedRetrievalQualityIndicatorOfAtmosphericOzone|long|PWLR ESTIMATED RETRIEVAL QUALITY INDICATOR OF ATMOSPHERIC OZONE|Numeric|1|0|8|Numeric|1|3 +040073|pwlrEstimatedRetrievalErrorOfSurfaceSkinTemperature|double|PWLR ESTIMATED RETRIEVAL ERROR OF SURFACE SKIN TEMPERATURE|K|1|0|8|K|1|3 +040074|generalInterferometryQualityFlags|flag|GENERAL INTERFEROMETRY QUALITY FLAGS|FLAG TABLE|0|0|16|NA|0|0 +041001|pco2|double|PCO2|Pa|3|0|18|Pa|3|6 +041002|fluorescence|double|FLUORESCENCE|kg l-1|12|0|16|kg l-1|12|5 +041003|dissolvedNitrates|double|DISSOLVED NITRATES|umol/kg|3|0|17|umol/kg|3|5 +041005|turbidity|double|TURBIDITY|NTU|2|0|12|NTU|2|4 +042001|dominantSwellWaveDirectionOfSpectralPartition|long|DOMINANT SWELL WAVE DIRECTION OF SPECTRAL PARTITION|deg|0|0|9|deg|0|3 +042002|significantSwellWaveHeightOfSpectralPartition|double|SIGNIFICANT SWELL WAVE HEIGHT OF SPECTRAL PARTITION|m|1|0|9|m|1|3 +042003|dominantSwellWavelengthOfSpectralPartition|double|DOMINANT SWELL WAVELENGTH OF SPECTRAL PARTITION|m|2|100|17|m|2|6 +042004|confidenceOfInversionForEachPartitionOfSwellWaveSpectra|table|CONFIDENCE OF INVERSION FOR EACH PARTITION OF SWELL WAVE SPECTRA|CODE TABLE|0|0|4|CODE TABLE|0|2 +042005|ambiguityRemovalFactorForSwellWavePartition|long|AMBIGUITY REMOVAL FACTOR FOR SWELL WAVE PARTITION|Numeric|5|-100000|18|Numeric|5|6 +042006|waveAge|long|WAVE AGE|Numeric|2|1|8|Numeric|2|3 +042007|shortestOceanWavelengthOnSpectralResolution|double|SHORTEST OCEAN WAVELENGTH ON SPECTRAL RESOLUTION|m|2|0|16|m|2|5 +042008|nonlinearInverseSpectralWidth|double|NONLINEAR INVERSE SPECTRAL WIDTH|m|2|0|16|m|2|5 +042009|binPartitionReference|long|BIN PARTITION REFERENCE|Numeric|0|0|8|Numeric|0|3 +042010|partitionNumber|long|PARTITION NUMBER|Numeric|0|1|4|Numeric|0|2 +042011|a1CoefficientOfTheDirectionalFourierSeries|long|A1 COEFFICIENT OF THE DIRECTIONAL FOURIER SERIES|Numeric|4|-20000|15|Numeric|4|6 +042012|b1CoefficientOfTheDirectionalFourierSeries|long|B1 COEFFICIENT OF THE DIRECTIONAL FOURIER SERIES|Numeric|4|-20000|15|Numeric|4|6 +042013|a2CoefficientOfTheDirectionalFourierSeries|long|A2 COEFFICIENT OF THE DIRECTIONAL FOURIER SERIES|Numeric|4|-20000|15|Numeric|4|6 +042014|b2CoefficientOfTheDirectionalFourierSeries|long|B2 COEFFICIENT OF THE DIRECTIONAL FOURIER SERIES|Numeric|4|-20000|15|Numeric|4|6 +042015|checkFactorK|long|CHECK FACTOR K|Numeric|2|0|12|Numeric|2|4 diff --git a/definitions/bufr/tables/0/wmo/35/sequence.def b/definitions/bufr/tables/0/wmo/35/sequence.def new file mode 100644 index 000000000..0d6bd9fc3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/35/sequence.def @@ -0,0 +1,1116 @@ +"300002" = [ 000002, 000003 ] +"300003" = [ 000010, 000011, 000012 ] +"300004" = [ 300003, 000013, 000014, 000015, 000016, 000017, 000018, 000019, 000020 ] +"300010" = [ 300003, 101000, 031001, 000030 ] +"300015" = [ 000030, 102000, 031002, 000024, 000025 ] +"300016" = [ 000030, 102000, 031001, 000026, 000027 ] +"301001" = [ 001001, 001002 ] +"301002" = [ 001003, 001004, 001005 ] +"301003" = [ 001011, 001012, 001013 ] +"301004" = [ 001001, 001002, 001015, 002001 ] +"301005" = [ 001035, 001034 ] +"301011" = [ 004001, 004002, 004003 ] +"301012" = [ 004004, 004005 ] +"301013" = [ 004004, 004005, 004006 ] +"301014" = [ 102002, 301011, 301012 ] +"301018" = [ 001114, 025185, 025186 ] +"301021" = [ 005001, 006001 ] +"301022" = [ 005001, 006001, 007001 ] +"301023" = [ 005002, 006002 ] +"301024" = [ 005002, 006002, 007001 ] +"301025" = [ 301023, 004003, 301012 ] +"301026" = [ 301021, 004003, 004003, 004004, 004004, 004005, 004005 ] +"301027" = [ 008007, 101000, 031001, 301028, 008007 ] +"301028" = [ 008040, 033042, 007010, 101000, 031002, 301023, 019007, 008040 ] +"301029" = [ 001018, 002001, 301011 ] +"301030" = [ 001018, 002001, 301011, 301024 ] +"301031" = [ 301001, 002001, 301011, 301012, 301022 ] +"301032" = [ 301001, 002001, 301011, 301012, 301024 ] +"301033" = [ 001005, 002001, 301011, 301012, 301021 ] +"301034" = [ 001005, 002001, 301011, 301012, 301023 ] +"301035" = [ 001005, 001012, 001013, 002001, 301011, 301012, 301023 ] +"301036" = [ 301003, 002001, 301011, 301012, 301023 ] +"301037" = [ 301001, 002011, 002012, 301011, 301012, 301022 ] +"301038" = [ 301001, 002011, 002012, 301011, 301012, 301024 ] +"301039" = [ 301003, 002011, 002012, 301011, 301012, 301023 ] +"301040" = [ 301003, 002011, 002012, 301011, 301012, 301024 ] +"301041" = [ 001007, 002021, 002022, 301011, 301012 ] +"301042" = [ 301041, 301021 ] +"301043" = [ 001007, 002023, 301011, 301013, 301021 ] +"301044" = [ 001007, 002024, 301011, 301013, 301021 ] +"301045" = [ 301011, 301012, 201138, 202131, 004006, 201000, 202000, 304030, 304031 ] +"301046" = [ 001007, 001012, 002048, 021119, 025060, 202124, 002026, 002027, 202000, 005040 + ] +"301047" = [ 001007, 025060, 001033, 001034, 001012, 301045, 002021, 301011, 301012, 201138, + 202131, 004006, 201000, 202000, 301023 ] +"301048" = [ 002104, 002121, 002113, 002026, 002027, 002111, 002140, 202127, 001013, 202126, + 007001, 202000, 025010, 021064 ] +"301049" = [ 002111, 002112, 021062, 021063, 021065 ] +"301051" = [ 001006, 002061, 301011, 301012, 301021, 008004 ] +"301055" = [ 001005, 002001, 301011, 301012, 301021, 001012, 001014 ] +"301056" = [ 001087, 001011, 001015, 002008, 002001, 301011, 301012, 301021, 007030, 007031 + ] +"301058" = [ 301011, 301012, 201152, 202135, 004006, 202000, 201000, 301021, 020111, 020112, + 020113, 020114, 020115, 020116, 020117, 020118, 020119, 025035, 020121, 020122, + 020123, 020124, 025175, 020023, 025063, 202136, 201136, 002121, 201000, 202000, + 025061, 002184, 002189, 025036, 101000, 031002, 301059 ] +"301059" = [ 301021, 007030, 007032 ] +"301062" = [ 101000, 031001, 301001 ] +"301065" = [ 001006, 001008, 002001, 002002, 002005, 002062, 002070, 002065 ] +"301066" = [ 301011, 301013, 301023, 007004, 002064, 008004 ] +"301070" = [ 002143, 002142, 002144 ] +"301071" = [ 001007, 001031, 002020, 002028, 002029 ] +"301072" = [ 301071, 301011, 301013, 301021 ] +"301074" = [ 002143, 002142, 002145, 002146 ] +"301075" = [ 301001, 001015, 301024, 008021, 301011, 301012 ] +"301076" = [ 002011, 002143, 002142 ] +"301089" = [ 001101, 001102 ] +"301090" = [ 301004, 301011, 301012, 301021, 007030, 007031 ] +"301091" = [ 002180, 002181, 002182, 002183, 002184, 002179, 002186, 002187, 002188, 002189 + ] +"301092" = [ 001011, 001003, 002001, 301011, 301012, 301021, 007030, 007031, 033024 ] +"301093" = [ 301036, 007030, 007031 ] +"301110" = [ 301001, 001011, 002011, 002014, 002003 ] +"301111" = [ 301001, 001011, 002011, 002013, 002014, 002003 ] +"301112" = [ 001006, 002011, 002013, 002014, 002003 ] +"301113" = [ 008021, 301011, 301013 ] +"301114" = [ 301021, 007030, 007031, 007007, 033024 ] +"301120" = [ 301001, 001094, 002011, 301121 ] +"301121" = [ 008041, 301122, 301021, 007031, 007007 ] +"301122" = [ 301011, 301012, 201135, 202130, 004006, 202000, 201000 ] +"301123" = [ 102002, 008041, 001062, 301001, 001094, 002011, 001018, 001095, 025061, 025068, + 001082, 001083, 001081, 002067, 002066, 002014, 025067, 025065, 025066, 002095, + 002096, 002097, 002016, 002083, 002080, 002081, 001093, 002084, 002085, 002086, + 002082, 008041, 301011 ] +"301125" = [ 001033, 001034, 025060, 001007, 002019, 001012 ] +"301126" = [ 001087, 001015, 002149, 301011, 301012, 301021 ] +"301128" = [ 001081, 001082, 001083, 001095, 002015, 002016, 002017, 002066, 002067, 002080, + 002081, 002082, 002083, 002084, 002085, 002086, 002095, 002096, 002097, 002103, + 002191, 025061, 035035 ] +"301129" = [ 001007, 001031, 002019, 002020 ] +"301130" = [ 301011, 301012, 202131, 201138, 004006, 201000, 202000 ] +"301131" = [ 301021, 007024, 005021, 007025, 005022 ] +"301150" = [ 001125, 001126, 001127, 001128 ] +"302001" = [ 010004, 010051, 010061, 010063 ] +"302002" = [ 010004, 007004, 010003, 010061, 010063 ] +"302003" = [ 011011, 011012, 012004, 012006, 013003, 020001, 020003, 020004, 020005 ] +"302004" = [ 020010, 008002, 020011, 020013, 020012, 020012, 020012 ] +"302005" = [ 008002, 020011, 020012, 020013 ] +"302006" = [ 010004, 010051, 010062, 010063 ] +"302011" = [ 302001, 302003, 302004 ] +"302012" = [ 302002, 302003, 302004 ] +"302013" = [ 302006, 302003, 101000, 031001, 302005 ] +"302021" = [ 022001, 022011, 022021 ] +"302022" = [ 022002, 022012, 022022 ] +"302023" = [ 022003, 022013, 022023 ] +"302024" = [ 302022, 101002, 302023 ] +"302031" = [ 302001, 010062, 007004, 010009 ] +"302032" = [ 007032, 012101, 012103, 013003 ] +"302033" = [ 007032, 020001 ] +"302034" = [ 007032, 013023 ] +"302035" = [ 302032, 302033, 302034, 007032, 302004, 101000, 031001, 302005 ] +"302036" = [ 105000, 031001, 008002, 020011, 020012, 020014, 020017 ] +"302037" = [ 020062, 013013, 012113 ] +"302038" = [ 020003, 004024, 020004, 020005 ] +"302039" = [ 004024, 014031 ] +"302040" = [ 007032, 102002, 004024, 013011 ] +"302041" = [ 007032, 004024, 004024, 012111, 004024, 004024, 012112 ] +"302042" = [ 007032, 002002, 008021, 004025, 011001, 011002, 008021, 103002, 004025, 011043, + 011041 ] +"302043" = [ 302038, 101002, 302039, 302040, 302041, 302042, 007032 ] +"302044" = [ 004024, 002004, 013033 ] +"302045" = [ 004024, 014002, 014004, 014016, 014028, 014029, 014030 ] +"302046" = [ 004024, 004024, 012049 ] +"302047" = [ 102003, 008002, 020054 ] +"302048" = [ 005021, 007021, 020012, 005021, 007021 ] +"302049" = [ 008002, 020011, 020013, 020012, 020012, 020012, 008002 ] +"302050" = [ 008041, 005021, 007005, 202130, 006021, 202000, 008041, 201131, 202129, 002115, + 010004, 002115, 013003, 202000, 201000, 002115, 011001, 011002, 002115, 102002, + 012101, 004024, 002115, 012103, 012102, 101003, 020012, 020011, 020013, 101002, + 020003 ] +"302051" = [ 010004, 010051, 007004, 010003, 012004, 012051, 012016, 012017, 013004, 102004, + 008051, 008020 ] +"302052" = [ 007032, 007033, 012101, 002039, 012102, 012103, 013003 ] +"302053" = [ 007032, 007033, 020001 ] +"302054" = [ 302052, 302053, 007033, 302034, 007032, 302004, 101000, 031001, 302005 ] +"302055" = [ 020031, 020032, 020033, 020034, 020035, 020036, 020037, 020038 ] +"302056" = [ 002038, 007063, 022043, 007063 ] +"302057" = [ 302056, 302021, 302024 ] +"302058" = [ 007032, 007033, 004024, 004024, 012111, 004024, 004024, 012112 ] +"302059" = [ 007032, 007033, 002002, 008021, 004025, 011001, 011002, 008021, 103002, 004025, + 011043, 011041 ] +"302060" = [ 302038, 302040, 302058, 302059 ] +"302062" = [ 025188, 302001, 302093, 101000, 031000, 302053, 007032, 007033, 101000, 031000, + 302004, 101000, 031001, 302005, 008002, 101000, 031000, 302055, 101000, 031000, + 302056, 101000, 031000, 302021, 101000, 031000, 302024 ] +"302063" = [ 302038, 101000, 031000, 302040, 101000, 031000, 302034, 007032, 101000, 031000, + 302058, 101000, 031000, 302064 ] +"302064" = [ 007032, 007033, 002002, 008021, 004025, 011001, 011002, 008021, 103000, 031001, + 004025, 011043, 011041 ] +"302066" = [ 020023, 020024, 020027, 020054, 020023, 020027, 020054, 020025, 020026, 020027, + 020040, 020066, 020027, 020021, 020067, 020027 ] +"302067" = [ 001023, 004025, 002177, 101000, 031001, 020003, 103000, 031001, 005021, 020001, + 005021, 101000, 031000, 302056, 103000, 031000, 033041, 020058, 022061, 101000, + 031000, 302022, 101000, 031001, 302023, 104000, 031001, 020054, 020137, 020012, + 020090, 103000, 031001, 020054, 020137, 020136, 004025, 013012, 004025, 011042, + 104000, 031001, 008021, 004025, 011042, 008021, 115000, 031001, 008021, 004015, + 008021, 004025, 011001, 011002, 008021, 004015, 008021, 004025, 011001, 011002, + 008021, 004025, 004015, 103000, 031001, 004025, 004025, 020003, 110000, 031001, + 004025, 004025, 005021, 005021, 020054, 020024, 020025, 020026, 020027, 020063 + ] +"302069" = [ 007032, 007033, 033041, 020001 ] +"302070" = [ 007032, 007033, 011001, 011002, 011043, 011041, 011016, 011017 ] +"302071" = [ 007032, 007033, 008021, 004025, 011001, 011002, 008021, 103002, 004025, 011043, + 011041, 004025, 011016, 011017 ] +"302072" = [ 007032, 007033, 012101, 012103, 013003 ] +"302073" = [ 020010, 105004, 008002, 020011, 020012, 033041, 020013 ] +"302074" = [ 020003, 004025, 020004, 020005 ] +"302075" = [ 008021, 004025, 013055, 013058, 008021 ] +"302076" = [ 020021, 020022, 026020, 020023, 020024, 020025, 020026 ] +"302077" = [ 007032, 007033, 004025, 012111, 012112, 007032, 004025, 012112 ] +"302078" = [ 002176, 020062, 002177, 013013 ] +"302079" = [ 007032, 002175, 002178, 004025, 013011 ] +"302080" = [ 002185, 004025, 013033 ] +"302081" = [ 004025, 014031 ] +"302082" = [ 004025, 014002, 014004, 014016, 014028, 014029, 014030 ] +"302083" = [ 004025, 008023, 010004, 011001, 011002, 012101, 013003, 008023 ] +"302084" = [ 302031, 302072, 103000, 031000, 101005, 307063, 007061, 101000, 031000, 302069, + 007032, 007033, 105000, 031000, 020031, 020032, 002038, 022043, 302021, 101000, + 031000, 302078, 012113, 101000, 031000, 302004, 105000, 031001, 008002, 020011, + 020012, 033041, 020013, 302036, 101000, 031000, 302047, 008002, 101000, 031000, + 302048 ] +"302085" = [ 105000, 031000, 020003, 103002, 004024, 020004, 020005, 101000, 031000, 302175, + 102000, 031000, 004025, 302076, 102000, 031000, 004025, 013059, 007032, 007033, + 008021, 004025, 011001, 011002, 008021, 103003, 004025, 011043, 011041, 004025, + 011016, 011017, 302077, 007033, 302041, 106000, 031000, 007032, 002175, 002178, + 102005, 004024, 013011, 007032, 103000, 031000, 002185, 101002, 302044, 102000, + 031000, 101002, 302039, 102000, 031000, 101002, 302045, 101000, 031000, 302046, + 101000, 031000, 302083 ] +"302089" = [ 020101, 020102, 020103, 020104, 020105, 020106, 020107, 020108 ] +"302090" = [ 002038, 007063, 022045 ] +"302091" = [ 020001, 004024, 013011 ] +"302092" = [ 011104, 001012, 001013, 010038, 010039, 011007, 011008 ] +"302093" = [ 007032, 007033, 303099, 012101, 103000, 031000, 007032, 007033, 303099, 002039, + 002097, 003024, 003021, 012102, 012103, 013003, 007032, 007033, 303099, 002039, + 002097, 003021, 003024 ] +"302175" = [ 008021, 004025, 013155, 013058, 008021 ] +"303001" = [ 007003, 011001, 011002 ] +"303002" = [ 007004, 011001, 011002 ] +"303003" = [ 007004, 010003, 012001, 012003 ] +"303004" = [ 007004, 010003, 012001, 012003, 011001, 011002 ] +"303011" = [ 007003, 008001, 011001, 011002 ] +"303012" = [ 007004, 008001, 011001, 011002 ] +"303013" = [ 007004, 008001, 010003, 012001, 013003, 011001, 011002 ] +"303014" = [ 007004, 008001, 010003, 012001, 012003, 011001, 011002 ] +"303021" = [ 007004, 007004, 204007, 031021 ] +"303022" = [ 303021, 010003, 204000 ] +"303023" = [ 303021, 012001, 204000 ] +"303024" = [ 303021, 013016, 204000 ] +"303025" = [ 002025, 204007, 031021, 012063, 204000 ] +"303026" = [ 007004, 008003, 204007, 031021, 012001, 204000 ] +"303027" = [ 007004, 204007, 031021, 010003, 204000 ] +"303031" = [ 007004, 008003, 007021, 007022, 008012, 012061 ] +"303032" = [ 020011, 020016 ] +"303033" = [ 020010, 020016 ] +"303040" = [ 008041, 004025, 004026, 301021, 301122, 201131, 202129, 025069, 007004, 013003, + 202000, 201000, 002013, 012101, 010009, 102002, 008040, 035035 ] +"303041" = [ 002152, 002023, 007004, 011001, 011002, 002153, 002154, 012071 ] +"303050" = [ 004086, 008042, 007004, 005015, 006015, 011001, 011002 ] +"303051" = [ 004086, 008042, 007004, 005015, 006015, 011061, 011062 ] +"303052" = [ 004086, 008042, 007009, 005015, 006015, 011001, 011002 ] +"303053" = [ 004086, 008042, 007009, 005015, 006015, 011061, 011062 ] +"303054" = [ 004086, 008042, 007004, 010009, 005015, 006015, 012101, 012103, 011001, 011002 + ] +"303055" = [ 004086, 008042, 007009, 005015, 006015, 012101, 013009, 012103, 011001, 011002 + ] +"303056" = [ 004086, 008042, 207001, 007004, 010009, 207000, 005015, 006015, 012101, 012103, + 011001, 011002 ] +"303099" = [ 003005, 003006, 003007, 002096, 003022, 003003, 003020, 003004, 003023, 003008, + 003009 ] +"304001" = [ 008003, 010004, 012001, 011001, 011002 ] +"304002" = [ 008003, 010004, 011001, 011002 ] +"304003" = [ 008003, 012001 ] +"304004" = [ 008003, 010004, 020010, 012001 ] +"304005" = [ 002024, 007004, 007004, 013003 ] +"304006" = [ 014001, 014001, 014003 ] +"304011" = [ 002163, 002164, 008012, 007024, 002057, 008021, 004001, 004002, 004003, 004004, + 008021, 004024, 110004, 008021, 004004, 004005, 004006, 008021, 004004, 004005, + 004006, 011001, 011002, 103010, 002163, 007004, 012001 ] +"304030" = [ 027031, 028031, 010031 ] +"304031" = [ 001041, 001042, 001043 ] +"304032" = [ 002153, 002154, 020081, 020082, 020012 ] +"304033" = [ 002152, 002166, 002167, 002153, 002154, 012075, 012076, 012063 ] +"304034" = [ 102004, 027001, 028001, 007022, 005043, 020010, 020016, 033003, 010040 ] +"304035" = [ 002153, 002154, 012063, 008001, 012063, 008001, 012063, 008001, 008003, 012063, + 008003, 012063, 008003, 012063, 008003 ] +"304036" = [ 020082, 008012, 020082, 008012, 020081, 008003, 020081, 008003, 020081, 008003, + 020081, 008003 ] +"304037" = [ 002153, 002154, 012063, 008011, 012063, 008011, 012063, 008011, 008003, 012063, + 008003, 012063, 008003, 012063 ] +"304039" = [ 201136, 005042, 201000, 014046 ] +"304040" = [ 025140, 025141, 040026, 040016, 025062, 101000, 031002, 040017 ] +"305001" = [ 011001, 011002, 013060, 013071 ] +"305002" = [ 301012, 012001, 013003, 014051, 013060, 013072, 013080, 013081, 013082, 013083, + 013084 ] +"305003" = [ 301012, 004065, 101000, 031001, 305001 ] +"305004" = [ 301030, 305002, 305003 ] +"305006" = [ 013072, 013082, 013019, 012001, 013073, 013060 ] +"305007" = [ 301029, 301012, 004065, 101000, 031001, 305006 ] +"305008" = [ 305006, 012030 ] +"305009" = [ 301029, 301012, 004065, 101000, 031001, 305008 ] +"305010" = [ 305008, 002091, 002091 ] +"305011" = [ 301029, 301012, 004065, 101000, 031001, 305010 ] +"305016" = [ 014021, 007004, 013003, 011002, 011001, 011041, 011043 ] +"305017" = [ 013080, 013081, 013083, 013085, 013084 ] +"305018" = [ 301029, 301012, 004065, 103000, 031001, 305008, 305016, 305017 ] +"306001" = [ 002032, 102000, 031001, 007062, 022042 ] +"306002" = [ 002031, 022004, 022031 ] +"306003" = [ 002002, 011011, 011012, 012004 ] +"306004" = [ 002032, 002033, 103000, 031001, 007062, 022043, 022062 ] +"306005" = [ 002031, 103000, 031001, 007062, 022004, 022031 ] +"306006" = [ 306003, 306002, 022063 ] +"306007" = [ 001012, 001014, 306008, 004024, 027003, 028003 ] +"306008" = [ 002034, 002035, 002036 ] +"306011" = [ 301021, 001075, 002147, 301011, 301013 ] +"306012" = [ 002007, 008015, 008032, 306029 ] +"306013" = [ 306012, 301011, 301013, 022120, 022121, 004015, 004065, 102000, 031001, 022038, + 022040 ] +"306014" = [ 306012, 301011, 301013, 022120, 022121, 004015, 004065, 101000, 031001, 022038 + ] +"306016" = [ 301011, 301013, 010004, 010051, 302032, 007032, 002002, 008021, 004025, 011001, + 011002, 004025, 011043, 011041, 025026, 012060 ] +"306017" = [ 002032, 008034, 106000, 031002, 007065, 008080, 033050, 022045, 008080, 033050, + 008034 ] +"306018" = [ 002032, 008034, 109000, 031002, 007065, 008080, 033050, 022045, 008080, 033050, + 022064, 008080, 033050, 008034 ] +"306019" = [ 001075, 301011, 301012, 022042, 022120, 022121, 004015, 004065 ] +"306020" = [ 001075, 301011, 301012, 022042, 022120, 022121, 004075, 004065 ] +"306021" = [ 001075, 301011, 301012, 022122, 022123, 012001, 303002 ] +"306022" = [ 001075, 301011, 301012, 022038, 022039 ] +"306023" = [ 001015, 301023, 301011, 301012, 022038, 022039, 022120, 022121 ] +"306024" = [ 306020, 102006, 022038, 022039 ] +"306025" = [ 306019, 102006, 022038, 022039 ] +"306027" = [ 001005, 001052, 002047, 301011, 301013 ] +"306028" = [ 306027, 301011, 301013, 301021 ] +"306029" = [ 025170, 025171, 025172 ] +"306030" = [ 306027, 306029, 111000, 031001, 033002, 301011, 301013, 025025, 025025, 025026, + 022185, 004015, 004065, 101004, 022182 ] +"306031" = [ 306027, 306029, 001053, 033002, 301011, 301013, 301011, 301013, 022185, 022182, + 004016, 004066, 101000, 031001, 022184 ] +"306033" = [ 002033, 007063, 022064 ] +"306034" = [ 002031, 003010, 002040, 022005, 022032 ] +"306035" = [ 112000, 031002, 007062, 008080, 033050, 007065, 008080, 033050, 022043, 008080, + 033050, 022064, 008080, 033050 ] +"306036" = [ 112000, 031002, 007062, 008080, 033050, 007065, 008080, 033050, 022031, 008080, + 033050, 022004, 008080, 033050 ] +"306037" = [ 109000, 031002, 007062, 008080, 033050, 007065, 008080, 033050, 022188, 008080, + 033050 ] +"306038" = [ 010004, 010051, 007033, 012101, 012103, 013003, 007033, 008021, 004025, 011001, + 011002, 008021, 004025, 011041, 004025, 007033, 002005, 007063, 022049 ] +"306039" = [ 022078, 022070, 022073, 022074, 022071, 022076, 022077 ] +"306040" = [ 022078, 022082, 106000, 031001, 022080, 022069, 022086, 022087, 022088, 022089 + ] +"306041" = [ 002032, 102000, 031001, 007062, 022043 ] +"306042" = [ 002169, 007033, 008021, 004025, 011001, 011002 ] +"306043" = [ 041001, 008043, 015028, 008043, 013080, 041005, 041003, 022188, 041002, 106000, + 031000, 004024, 014002, 014002, 014012, 014004, 004024 ] +"307001" = [ 301031, 302011 ] +"307002" = [ 301032, 302011 ] +"307003" = [ 307001, 101000, 031001, 302005 ] +"307004" = [ 307002, 101000, 031001, 302005 ] +"307005" = [ 307001, 101004, 302005 ] +"307006" = [ 307002, 101004, 302005 ] +"307007" = [ 301031, 302012 ] +"307008" = [ 301032, 302012 ] +"307009" = [ 301031, 302013 ] +"307011" = [ 001063, 002001, 301011, 301012, 301024, 007006, 011001, 011016, 011017, 011002, + 011041, 007006, 012001, 012003, 010052, 020009 ] +"307012" = [ 103000, 031001, 008023, 005021, 020001 ] +"307013" = [ 106000, 031001, 001064, 008014, 020061, 008014, 020061, 020018 ] +"307014" = [ 101000, 031001, 020019 ] +"307015" = [ 101000, 031001, 302005, 020002 ] +"307016" = [ 101000, 031001, 020020 ] +"307017" = [ 101000, 031001, 011070 ] +"307018" = [ 008016, 102000, 031001, 008017, 301012, 104000, 031001, 007006, 011001, 011002, + 011041, 020009, 101000, 031001, 020001, 307014 ] +"307020" = [ 307011, 307014, 307016 ] +"307021" = [ 307011, 307012, 307013, 307014, 307015, 307016, 307017, 307018, 307015 ] +"307022" = [ 001015, 301011, 301012, 301022, 008021, 004025, 010004, 012001, 013003, 033038, + 008022, 106025, 002020, 001050, 005021, 007021, 015031, 015032, 008060, 015033, + 015034, 008060, 015033, 015034, 015035, 201131, 202129, 013016, 202000, 201000, + 015011 ] +"307030" = [ 015001, 015002 ] +"307031" = [ 008022, 008023, 015001, 008023, 015001, 008023, 015002 ] +"307041" = [ 301001, 001015, 301024, 301011, 301012, 301070, 307030 ] +"307042" = [ 301001, 001015, 301024, 301011, 301012, 008021, 004025, 301070, 307031 ] +"307043" = [ 301001, 001015, 301024, 301011, 301012, 301074, 307030 ] +"307044" = [ 301001, 001015, 301024, 301011, 301012, 008021, 004025, 301074, 307031 ] +"307045" = [ 001063, 008079, 002001, 301011, 301012, 301023, 007030, 007031, 007032, 011001, + 011016, 011017, 008054, 011083, 011084, 011002, 008054, 011085, 011086, 011041, + 008054, 007032, 012023, 012024, 007032, 010052, 020009 ] +"307046" = [ 020060, 102000, 031001, 005021, 020059 ] +"307047" = [ 105000, 031001, 008002, 020011, 020012, 020013, 020092, 020002, 020091 ] +"307048" = [ 008016, 102000, 031001, 008017, 301012, 112000, 031000, 007032, 011001, 008054, + 011083, 011084, 011002, 008054, 011085, 011086, 011041, 008054, 007032, 020009, + 101000, 031000, 020060, 307014, 307047 ] +"307049" = [ 102000, 031000, 022043, 022021 ] +"307050" = [ 101000, 031000, 020085, 102000, 031001, 001064, 020085, 105000, 031001, 001064, + 020086, 020087, 020088, 020089 ] +"307051" = [ 307045, 307046, 307013, 307014, 307047, 307016, 307017, 307049, 307050, 101000, + 031001, 307048 ] +"307052" = [ 001063, 008039, 301011, 301012, 008079, 008039, 301011, 301012, 008039, 301011, + 301012, 301023, 007030, 007031 ] +"307053" = [ 007032, 011001, 008054, 011083, 011084, 011002, 008054, 011085, 011086, 011041, + 008054, 007032, 020009, 020060, 307014, 307047 ] +"307054" = [ 007032, 008039, 004003, 004004, 008023, 012023, 008039, 004003, 004004, 008023, + 012023, 008023, 007032 ] +"307055" = [ 033045, 008016, 008039, 004003, 301012, 008039, 004003, 301012, 307053 ] +"307056" = [ 307052, 307053, 307054, 101000, 031001, 307055 ] +"307060" = [ 007061, 012030 ] +"307061" = [ 301031, 101005, 307060 ] +"307062" = [ 301032, 101005, 307060 ] +"307063" = [ 007061, 012130 ] +"307071" = [ 301090, 004074, 004023, 008023, 010004, 010051, 007004, 010009, 007032, 012101, + 002051, 004051, 012118, 004052, 012119, 013004, 008023, 012151, 007032, 102005, + 008050, 008020, 014032, 014033, 008050, 008020, 102018, 008052, 008022, 007032, + 008053, 004003, 012152, 008053, 004003, 012153, 008053, 004003, 008023, 012101, + 008053, 004003, 008023, 012101, 008023, 007032, 002002, 008053, 004003, 011046, + 008053, 004003, 004004, 004023, 007032, 013060, 013051, 004053, 008050, 008020, + 102006, 008052, 008022, 008053, 004003, 013052, 007032 ] +"307072" = [ 004001, 004001, 004002, 004003, 004004, 004074, 004022, 008023, 010004, 010051, + 007004, 010009, 007032, 012101, 002051, 004051, 012118, 004052, 012119, 013004, + 012151, 007032, 014032, 008023, 004001, 004001, 004002, 004003, 004004, 004022, + 007032, 008023, 013060, 004053, 008023, 102008, 008050, 008020 ] +"307073" = [ 307071, 307072 ] +"307074" = [ 301001, 004001, 004002, 301021, 007030, 007032, 112000, 031001, 004003, 004004, + 004024, 102003, 008023, 012101, 008023, 004004, 004024, 013060, 013012, 013013 + ] +"307076" = [ 301090, 004074, 004023, 008023, 010004, 010051, 007004, 010009, 007032, 012101, + 002051, 004051, 012118, 004052, 012119, 013004, 008023, 012151, 007032, 102005, + 008050, 008020, 014032, 014033, 008050, 008020, 102018, 008052, 008022, 007032, + 008053, 004003, 012152, 008053, 004003, 012153, 008053, 004003, 008023, 012101, + 008053, 004003, 008023, 012101, 008023, 007032, 002002, 008053, 004003, 011046, + 008053, 004003, 004004, 004074, 004023, 007032, 013060, 013051, 004053, 008050, + 008020, 102006, 008052, 008022, 008053, 004003, 013052, 007032 ] +"307077" = [ 004001, 004001, 004002, 004003, 004004, 004074, 004022, 008023, 010004, 010051, + 007004, 010009, 007032, 012101, 002051, 004051, 012118, 004052, 012119, 013004, + 012151, 007032, 014032, 008023, 004001, 004001, 004002, 004003, 004004, 004074, + 004022, 007032, 008023, 013060, 004053, 008023, 102008, 008050, 008020 ] +"307078" = [ 307076, 307077 ] +"307079" = [ 301090, 302031, 302035, 302036, 101000, 031000, 302047, 008002, 101000, 031000, + 302048, 302037, 102000, 031000, 022061, 020058, 101000, 031000, 302056, 101000, + 031000, 302055, 302043, 302044, 101000, 031001, 302045, 101000, 031000, 302046 + ] +"307080" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 302043, 302044, + 101002, 302045, 302046 ] +"307081" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 012122, 013056, + 013057, 020101, 020102, 020103, 020104, 020105, 020106, 020107, 020108, 302043, + 302044, 101002, 302045, 302046 ] +"307082" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 012121, 012122, + 302043, 302044, 101002, 302045, 302046 ] +"307083" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 012122, 302043, + 302044, 101002, 302045, 302046 ] +"307084" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 020055, 101000, + 031001, 205001, 302043, 302044, 101002, 302045, 302046 ] +"307086" = [ 301090, 302031, 302035, 302036, 008002, 302037, 302066, 302043, 302044, 101002, + 302045 ] +"307087" = [ 301001, 002001, 301011, 301012, 301023, 007030, 007031, 302001, 010062, 007004, + 010009, 007032, 012101, 012103, 013003, 007032, 020001, 302004, 101000, 031001, + 302005 ] +"307088" = [ 020003, 004024, 020004, 020005, 004024, 002004, 013033, 102002, 004024, 014031, + 102002, 004024, 013011, 007032, 004024, 012111, 004024, 012112, 007032, 002002, + 008021, 004025, 011001, 011002, 008021 ] +"307089" = [ 307087, 307088 ] +"307090" = [ 301092, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 302043, 302044, + 101002, 302045, 302046 ] +"307091" = [ 301089, 301090, 008010, 301091, 302001, 007004, 010009, 302072, 103000, 031000, + 101005, 307063, 007061, 101000, 031000, 302069, 007032, 007033, 105000, 031000, + 020031, 020032, 002038, 022043, 302021, 101000, 031000, 302078, 101000, 031000, + 302073, 101000, 031000, 302074, 101000, 031000, 302175, 102000, 031000, 004025, + 302076, 302071, 302077, 007033, 101000, 031000, 302079, 007032, 101000, 031000, + 302080, 101000, 031000, 302081, 101000, 031000, 302082, 102000, 031000, 004025, + 013059, 101000, 031000, 302083, 033005, 033006 ] +"307092" = [ 301150, 301001, 208040, 001019, 208000, 301011, 301012, 301021, 007030, 001023, + 108000, 031000, 007031, 204018, 031021, 010004, 010051, 007004, 010009, 204000, + 115000, 031001, 007032, 008010, 204018, 031021, 012101, 012103, 202129, 201132, + 013003, 201000, 202000, 013009, 204000, 007032, 008010, 107000, 031001, 007061, + 204018, 031021, 012130, 013111, 204000, 007061, 105000, 031000, 033041, 204018, + 031021, 020001, 204000, 113000, 031000, 204018, 031021, 020010, 204000, 107000, + 031001, 008002, 204018, 031021, 020011, 020013, 204000, 008002, 105000, 031000, + 204018, 031021, 020062, 013013, 204000, 105000, 031000, 004025, 204018, 031021, + 020003, 204000, 105000, 031000, 004025, 204018, 031021, 013011, 204000, 115000, + 031001, 007032, 008021, 004025, 204018, 031021, 011001, 011002, 204000, 008021, + 204018, 031021, 011043, 011041, 204000, 007032, 105000, 031000, 004025, 204018, + 031021, 014031, 204000, 110000, 031000, 004025, 204018, 031021, 014002, 014002, + 014004, 014028, 014029, 014030, 204000, 113000, 031000, 004025, 002071, 002072, + 204018, 031021, 014072, 204000, 002071, 002072, 204018, 031021, 014072, 204000 + ] +"307096" = [ 301090, 301089, 008010, 301091, 302084, 302085, 033005, 033006 ] +"307101" = [ 301089, 001019, 002001, 301011, 301012, 301021, 007030, 007032, 012101, 007032, + 002177, 020062, 013013 ] +"307102" = [ 301089, 001018, 001015, 001104, 001105, 001106, 003017, 003018, 003019, 301011, + 301012, 301021, 007030, 007032, 012101, 012103, 013003, 007032, 020001, 109000, + 031001, 003016, 012128, 102000, 031001, 007061, 012129, 007061, 013116, 020138, + 004025, 020024, 013055, 020021, 013011, 007032, 008021, 004025, 011001, 011002, + 008021, 004025, 011043, 011041, 033005 ] +"307103" = [ 301150, 307101, 013117, 003028, 013163 ] +"307182" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 012120, 012122, + 302043, 302044, 101002, 302045, 302046 ] +"308001" = [ 301033, 302011, 022042 ] +"308002" = [ 301034, 302011, 022042 ] +"308003" = [ 301035, 302011, 022042 ] +"308004" = [ 301036, 302011, 022042 ] +"308005" = [ 308004, 302024 ] +"308006" = [ 010004, 010061, 010063, 011001, 011002, 012004, 013003, 022042 ] +"308007" = [ 301055, 302011, 007062, 022042 ] +"308009" = [ 301093, 302001, 302054, 008002, 302055, 302057, 302060 ] +"308010" = [ 001011, 113000, 031001, 301011, 301012, 301021, 004080, 022049, 004080, 022059, + 004080, 022005, 002042, 022032, 002042, 004080 ] +"308011" = [ 001011, 002001, 301011, 301012, 301023, 007030, 007031, 004074, 004023, 008023, + 010051, 007032, 007033, 012101, 013004, 007032, 007033, 302056, 008023, 004003, + 004004, 004023, 007032, 013060, 013051, 004053, 007032 ] +"308012" = [ 004001, 004001, 004002, 004003, 004004, 004074, 004022, 008023, 010051, 007032, + 007033, 012101, 013004, 007032, 007033, 302056, 008023, 004001, 004001, 004002, + 004003, 004004, 004022, 007032, 008023, 013060, 004053, 008023 ] +"308013" = [ 308011, 308012 ] +"308014" = [ 101000, 031000, 301018, 003001, 301093, 208032, 001079, 208000, 302062, 302063, + 101000, 031000, 302092, 101000, 031000, 306033, 101000, 031000, 306034, 101000, + 031000, 306043 ] +"308015" = [ 001003, 001020, 001005, 001011, 001007, 001001, 001002, 002044, 002045, 301011, + 301012, 301021, 022063, 022076, 022077, 022094, 025043, 022078, 105002, 002046, + 022070, 022071, 022073, 022074, 127000, 031001, 002046, 008090, 022102, 008090, + 022084, 120000, 031001, 022080, 022108, 022086, 022087, 022088, 022089, 105000, + 031001, 008090, 022104, 008090, 022186, 022187, 105000, 031001, 008090, 022106, + 008090, 022186, 022187 ] +"308016" = [ 001003, 001020, 001005, 001011, 001007, 001001, 001002, 002044, 002045, 301011, + 301012, 301021, 022063, 022076, 022077, 022094, 025044, 022079, 105002, 002046, + 022070, 022072, 022073, 022075, 127000, 031001, 002046, 008090, 022103, 008090, + 022084, 120000, 031001, 022081, 022108, 022086, 022087, 022088, 022089, 105000, + 031001, 008090, 022105, 008090, 022186, 022187, 105000, 031001, 008090, 022107, + 008090, 022186, 022187 ] +"308017" = [ 301056, 302001, 302052, 101000, 031000, 302056, 302064, 302053, 101000, 031000, + 302004, 101000, 031000, 302005, 101000, 031000, 302038, 101000, 031000, 306039 + ] +"308018" = [ 301150, 301093, 302001, 302072, 101000, 031000, 302056, 101000, 031000, 302064 + ] +"308021" = [ 001011, 002001, 301011, 301012, 301023, 007030, 007031, 004074, 004023, 008023, + 010051, 007032, 007033, 012101, 013004, 007032, 007033, 302056, 008023, 004003, + 004004, 004074, 004023, 007032, 013060, 013051, 004053, 007032 ] +"308022" = [ 004001, 004001, 004002, 004003, 004004, 004074, 004022, 008023, 010051, 007032, + 007033, 012101, 013004, 007032, 007033, 302056, 008023, 004001, 004001, 004002, + 004003, 004004, 004074, 004022, 007032, 008023, 013060, 004053, 008023 ] +"308023" = [ 308021, 308022 ] +"309001" = [ 301037, 101000, 031001, 303011 ] +"309002" = [ 301038, 101000, 031001, 303011 ] +"309003" = [ 301037, 101000, 031001, 303012 ] +"309004" = [ 301038, 101000, 031001, 303012 ] +"309005" = [ 301037, 302004, 101000, 031001, 303013 ] +"309006" = [ 301038, 302004, 101000, 031001, 303013 ] +"309007" = [ 301037, 302004, 101000, 031001, 303014 ] +"309008" = [ 301038, 302004, 101000, 031001, 303014 ] +"309011" = [ 301039, 101000, 031001, 303011 ] +"309012" = [ 301039, 101000, 031001, 303012 ] +"309013" = [ 301039, 302004, 101000, 031001, 303013 ] +"309014" = [ 301039, 302004, 101000, 031001, 303014 ] +"309015" = [ 301040, 101000, 031001, 303011 ] +"309016" = [ 301040, 101000, 031001, 303012 ] +"309017" = [ 301040, 302004, 101000, 031001, 303013 ] +"309018" = [ 301040, 302004, 101000, 031001, 303014 ] +"309019" = [ 301031, 002003, 101000, 031001, 303011 ] +"309020" = [ 301031, 002003, 104000, 031001, 007003, 011003, 011004, 011005 ] +"309021" = [ 301001, 005001, 006001, 007030, 301014, 002003, 002121, 112000, 031001, 007007, + 301021, 011003, 011110, 011004, 011111, 033002, 011006, 011112, 033002, 010071, + 027079 ] +"309022" = [ 301001, 005001, 006001, 007030, 301014, 002003, 002121, 110000, 031001, 007007, + 301021, 012007, 012008, 033002, 011006, 011112, 033002, 010071, 027079 ] +"309023" = [ 301001, 005001, 006001, 007030, 301014, 002003, 302004, 302005, 114000, 031001, + 007007, 301021, 101000, 031001, 002121, 015063, 015064, 015065, 015066, 015067, + 015068, 015069, 015070, 015071, 015072, 033002, 010071, 027079 ] +"309030" = [ 015004, 015005, 104000, 031001, 004015, 008006, 007004, 015003 ] +"309031" = [ 015004, 015005, 104000, 031001, 004025, 008006, 007004, 015003 ] +"309040" = [ 301075, 301076, 309030 ] +"309041" = [ 307041, 301075, 301076, 309030 ] +"309042" = [ 307042, 301075, 301076, 309030 ] +"309043" = [ 307043, 301075, 301076, 309030 ] +"309044" = [ 307044, 301075, 301076, 309030 ] +"309045" = [ 301075, 301076, 309031 ] +"309046" = [ 307041, 301075, 301076, 309031 ] +"309047" = [ 307042, 301075, 301076, 309031 ] +"309048" = [ 307043, 301075, 301076, 309031 ] +"309049" = [ 307044, 301075, 301076, 309031 ] +"309050" = [ 301110, 301113, 301114, 101000, 031002, 303050, 101000, 031001, 303051 ] +"309051" = [ 301110, 301113, 301114, 101000, 031002, 303052, 101000, 031001, 303053 ] +"309052" = [ 301111, 301113, 301114, 302049, 022043, 101000, 031002, 303054, 101000, 031001, + 303051 ] +"309053" = [ 301112, 301113, 301114, 101000, 031002, 303054, 101000, 031001, 303051 ] +"309054" = [ 301001, 001011, 301011, 301012, 301021, 007030, 007031, 007007, 004023, 004059, + 115000, 031001, 008001, 008023, 007004, 010009, 012101, 012103, 008023, 011001, + 011002, 008023, 011019, 008050, 008020, 008050, 008020 ] +"309055" = [ 301111, 025061, 001081, 001082, 002067, 002095, 002096, 002097, 002081, 002082, + 002084, 002191, 301113, 301114, 010004, 302032, 007032, 002002, 011001, 011002, + 007032, 020003, 302049, 022043, 101000, 031002, 303055 ] +"309056" = [ 301150, 301111, 301128, 301113, 008091, 301021, 007007, 008091, 101000, 031002, + 303056, 101000, 031001, 303051 ] +"309057" = [ 301150, 301111, 301128, 301113, 301114, 302049, 022043, 101000, 031002, 303056, + 101000, 031001, 303051 ] +"309060" = [ 301123, 301121, 302050, 303040 ] +"309061" = [ 301120, 008041, 301122, 201131, 202129, 025069, 007004, 202000, 201000, 033007, + 033035, 033015, 013009, 033007, 033035, 033015, 002013, 012101, 033007, 033035, + 033015 ] +"309062" = [ 301120, 008041, 301122, 005001, 033035, 033015, 006001, 033035, 033015, 007007, + 033035, 033015, 011003, 033035, 033015, 011004, 033035, 033015, 033007 ] +"309063" = [ 301120, 008041, 301122, 005001, 033035, 033015, 006001, 033035, 033015, 007007, + 033035, 033015, 011003, 033035, 033015, 011004, 033035, 033015, 033007 ] +"309064" = [ 301120, 008041, 301122, 201131, 202129, 104002, 025069, 007004, 033035, 033015, + 013003, 033035, 033015, 202000, 201000, 104002, 002013, 012101, 033035, 033015, + 012103, 033035, 033015, 010009, 033035, 033015 ] +"309065" = [ 301120, 008041, 301122, 005001, 033035, 033015, 006001, 033035, 033015, 007007, + 033035, 033015, 011003, 033035, 033015, 011004, 033035, 033015 ] +"309066" = [ 301120, 008041, 301122, 008040, 201131, 202129, 025069, 007004, 013003, 202000, + 201000, 002013, 012101, 012103, 010009, 010007, 011002, 011001 ] +"309070" = [ 001035, 001032, 001015, 001063, 301001, 301011, 301012, 301021, 207001, 010001, + 207000, 008086, 007030, 025031, 008021, 004014, 010004, 010051, 010009, 020010, + 013095, 128000, 031002, 113000, 031000, 008086, 007004, 011001, 011002, 012101, + 012102, 012103, 010009, 103000, 031000, 011021, 011022, 011005, 104000, 031000, + 008086, 007006, 011001, 011002, 105000, 031000, 008086, 007006, 012101, 012102, + 012103 ] +"309071" = [ 301001, 002014, 002003, 301113, 301114, 301023, 007030, 007007, 103000, 031001, + 007009, 011001, 011002 ] +"310001" = [ 301042, 303031, 303032, 101026, 303025 ] +"310002" = [ 301042, 303031, 303032, 101009, 303023 ] +"310003" = [ 301042, 303031, 303032, 101006, 303023 ] +"310004" = [ 301042, 303031, 303032, 101003, 303024 ] +"310005" = [ 301042, 303031, 303033, 101000, 031001, 303025 ] +"310006" = [ 301042, 303031, 303033, 101000, 031001, 303023 ] +"310007" = [ 301042, 303031, 303033, 101000, 031001, 303024 ] +"310008" = [ 310011, 101019, 310012, 002150, 025079, 025080, 033032, 014045 ] +"310009" = [ 310011, 101015, 310012 ] +"310010" = [ 310011, 101005, 310012 ] +"310011" = [ 008070, 001033, 001034, 008070, 001033, 001034, 001007, 002048, 005040, 025075, + 201133, 005041, 201000, 005043, 025070, 033030, 033031, 004001, 004002, 004003, + 004004, 004005, 202131, 201138, 004006, 201000, 202000, 005001, 006001, 202126, + 007001, 202000, 007024, 005021, 007025, 005022, 033033, 002151, 012064, 002151, + 012064, 002151, 012064, 002151, 012064 ] +"310012" = [ 002150, 025076, 025077, 025078, 033032, 201132, 202129, 012063, 202000, 201000 + ] +"310013" = [ 001007, 005040, 004001, 004002, 004003, 004004, 004005, 004006, 005001, 006001, + 007025, 005043, 025085, 201131, 202129, 002150, 008023, 008072, 014027, 008072, + 014027, 002150, 008023, 008072, 014027, 008072, 014027, 002150, 008023, 008072, + 014027, 008072, 014027, 202000, 201000, 201132, 202129, 002150, 008023, 008072, + 012063, 008072, 012063, 002150, 008023, 008072, 012063, 008072, 012063, 008023, + 008072, 012063, 008072, 012063, 002150, 008023, 008072, 012063, 008072, 012063, + 202000, 201000 ] +"310014" = [ 301072, 303041, 304011 ] +"310015" = [ 301072, 007024, 010002, 303041, 101003, 304032, 002152, 002024, 007004, 007004, + 013003, 101003, 304033 ] +"310016" = [ 301072, 007024, 010002, 303041, 101012, 304032, 002152, 002024, 007004, 007004, + 013003, 101012, 304033 ] +"310018" = [ 001007, 005040, 004001, 004043, 004004, 004005, 004006, 207002, 026030, 207000, + 005002, 006002, 033072, 007025, 005022, 207002, 015001, 207000, 008003, 207001, + 010004, 207000, 008003, 008003, 033042, 207001, 007004, 207000, 207002, 015001, + 207000, 008003, 207002, 020081, 207000, 020065, 008029, 207004, 015030, 207000, + 008075 ] +"310019" = [ 001007, 002019, 301011, 301013, 301023, 007025, 008021, 007025, 008021, 007025, + 008021, 008029, 005040, 008075, 008003, 010004, 008003, 207002, 015001, 207000, + 033070, 015030, 207002, 020081, 207000, 008003, 033042, 007004, 207002, 015001, + 207000, 008003, 113021, 007004, 007004, 207002, 008021, 015005, 008021, 015005, + 033007, 207000, 008026, 101020, 025143, 008026, 008043, 109015, 007004, 008090, + 207006, 015008, 207000, 008090, 207002, 033007, 207000, 008043, 033071, 108008, + 202124, 201107, 002071, 201000, 202000, 207002, 020081, 207000 ] +"310020" = [ 310022, 301011, 301013, 301021, 304034, 310021 ] +"310021" = [ 108000, 031001, 201131, 202129, 007004, 007004, 202000, 201000, 015020, 010002 + ] +"310022" = [ 001007, 002019, 001033, 002172 ] +"310023" = [ 301072, 030021, 030022, 008012, 007024, 007025, 010002, 101012, 304032, 105002, + 002152, 002024, 007004, 007004, 013003, 101012, 304033 ] +"310024" = [ 301072, 030021, 030022, 008012, 007024, 007025, 010002, 101003, 304032, 105002, + 002152, 002024, 007004, 007004, 013003, 101003, 304033 ] +"310025" = [ 001007, 008021, 004001, 004002, 004003, 004004, 004005, 201138, 202131, 004006, + 202000, 201000, 201132, 005041, 201000, 201129, 005043, 201000, 005002, 006002, + 013040, 020029, 104024, 005042, 012163, 021083, 021084, 115003, 004001, 004002, + 004003, 201142, 202131, 004026, 202000, 201000, 005001, 006001, 201138, 202129, + 007001, 202000, 201000, 008021, 004001, 004002, 004003, 004004, 004005, 005040, + 101003, 012070, 025054, 101004, 025055, 008007, 104028, 005002, 006002, 002111, + 005021 ] +"310026" = [ 310022, 025060, 008021, 301011, 301012, 201138, 202131, 004006, 202000, 201000, + 033039, 033007, 304030, 304031, 002020, 001050, 202127, 304030, 202000, 304031, + 201133, 202131, 004016, 202000, 201000, 301021, 304030, 010035, 005021, 010036, + 113000, 031002, 301021, 005021, 108000, 031001, 002121, 007040, 015037, 008023, + 201125, 015037, 201000, 008023, 033007, 108000, 031002, 007007, 015036, 008023, + 201123, 015036, 201000, 008023, 033007, 116000, 031002, 007009, 010004, 012001, + 013001, 008023, 201120, 010004, 201000, 201122, 012001, 201000, 201123, 013001, + 201000, 008023, 033007, 008003, 007009, 010004, 008023, 201120, 010004, 201000, + 008023, 033007 ] +"310027" = [ 301071, 301011, 301013, 301021, 030021, 030022, 010002, 304036, 002152, 002167, + 101011, 304035 ] +"310028" = [ 301071, 301011, 301013, 301021, 030021, 030022, 010002, 304036, 002152, 002167, + 101011, 304037 ] +"310029" = [ 110000, 031001, 201138, 202130, 007004, 007004, 202000, 201000, 015020, 010002, + 012101, 013098 ] +"310030" = [ 310022, 301011, 301013, 301021, 304034, 310029 ] +"310050" = [ 310051, 310052, 101000, 031002, 310053, 101004, 310054, 020010, 310052, 101015, + 310053, 310052, 101005, 310053 ] +"310051" = [ 001007, 005040, 201133, 005041, 201000, 201132, 025070, 201000, 202126, 007001, + 202000, 007025, 005022, 102009, 002151, 012064 ] +"310052" = [ 002019, 301011, 301012, 202131, 201138, 004006, 201000, 202000, 301021, 007024, + 005021, 005043 ] +"310053" = [ 201134, 005042, 201000, 025076, 033032, 012163 ] +"310054" = [ 201134, 005042, 201000, 025076, 033032, 201131, 202129, 102002, 008023, 014027, + 008023, 202000, 201000 ] +"310055" = [ 310051, 310052, 102020, 025076, 025052, 101000, 031002, 025050 ] +"310060" = [ 001007, 001033, 002019, 002020, 301011, 301012, 207003, 004006, 207000, 304030, + 301021, 007024, 005021, 007025, 005022, 008075, 201133, 005041, 201000, 005045, + 005043, 005040, 010001, 201129, 007002, 201000, 202127, 201125, 021166, 201000, + 202000, 008012, 020010, 020014, 002165, 033075, 107003, 008076, 006029, 006029, + 025140, 025141, 033076, 033077, 008076, 033078, 033003, 104000, 031002, 201133, + 005042, 201000, 014044 ] +"310061" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 005041, 005043, 033079, 033080, 033078, 301021, 201129, 007002, 201000, + 007024, 005021, 007025, 005022, 025075, 111000, 031002, 005042, 202131, 002153, + 002154, 202000, 002104, 012066, 012163, 012158, 012159, 033081 ] +"310062" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 201133, 005041, 005043, 201000, 008076, 033082, 301021, 201129, 007002, + 201000, 007024, 005021, 007025, 005022, 008072, 008029, 105000, 031002, 005042, + 002155, 033083, 014043, 015042 ] +"310063" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 201133, 005041, 005043, 201000, 033082, 301021, 201129, 007002, 201000, + 007024, 005021, 007025, 005022, 008075, 008013, 008072, 033084, 007062, 033086, + 022043, 007062, 007062, 033086, 022043 ] +"310064" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 201133, 005041, 005043, 201000, 033082, 301021, 201129, 007002, 201000, + 007024, 005021, 007025, 005022, 008075, 008029, 008046, 033085, 033086, 015049, + 033086, 102011, 002155, 015062 ] +"310065" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 033082, 301021, 201129, 007002, 201000, 007024, 005021, 007025, 005022, + 008075, 033071, 033070, 020021, 015045, 015046, 008065, 033087, 008003, 010004, + 008003, 207002, 015001, 207000, 105012, 010040, 010004, 207003, 015005, 207000, + 008046, 107019, 010040, 010004, 008090, 207006, 015008, 207000, 008090 ] +"310066" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 033082, 301021, 201129, 007002, 201000, 007024, 005021, 007025, 005022, + 008075, 020081, 207004, 015030, 207000, 020065, 015041, 033086, 033087, 033088, + 008003, 207001, 007004, 207000, 008003, 207002, 015001, 207000, 008003, 033042, + 207001, 007004, 207000, 207002, 015001, 207000, 008003, 001032, 207002, 015001, + 207000 ] +"310067" = [ 001033, 001034, 025061, 025062, 001007, 002153, 001012, 201138, 002026, 002027, + 201000, 002028, 002029, 002161, 002164, 002023, 008012, 008013, 001124, 005001, + 006001, 004001, 004002, 004003, 004004, 004005, 004006, 004086, 011001, 011002, + 011003, 011004, 002162, 007004, 012001, 020014, 007024, 001023, 104000, 031001, + 002162, 007004, 012001, 020014, 113000, 031001, 004086, 002020, 001007, 002019, + 005042, 002153, 005040, 007024, 005021, 002162, 007004, 012001, 020014, 119000, + 031001, 004086, 004086, 005001, 006001, 011003, 011004, 011113, 025148, 103000, + 031001, 008023, 011003, 011004, 008023, 103000, 031001, 020111, 020112, 020114, + 001033, 008021, 011095, 011096, 007004, 008021, 011095, 011096, 007004, 008021, + 008086, 011095, 011096, 007004, 008086, 102004, 001032, 033007, 008092, 011003, + 011004, 007004, 008092, 033066, 020081, 020012, 020056, 117000, 031001, 008023, + 020016, 008092, 008003, 012001, 008003, 020016, 008092, 025149, 020016, 020014, + 013093, 013109, 040038, 008011, 014050, 008011, 008023 ] +"310068" = [ 008070, 001033, 001034, 001007, 002019, 012064, 005040, 201136, 005041, 201000, + 005043, 301011, 301012, 201138, 202131, 004006, 202000, 201000, 005001, 006001, + 202126, 007001, 202000, 010007, 007024, 005021, 007025, 005022, 013040, 012101, + 201131, 202129, 011011, 202000, 201000, 201130, 202129, 011012, 202000, 201000, + 020029, 020010, 020014, 013162, 014050 ] +"310069" = [ 005042, 201139, 002155, 201000, 025077, 025078, 033007, 201132, 202129, 012063, + 202000, 201000 ] +"310070" = [ 310068, 101013, 310069 ] +"310071" = [ 310068, 101015, 310069 ] +"310072" = [ 310068, 101026, 310069 ] +"310077" = [ 001033, 001034, 025061, 025062, 001007, 002153, 001012, 201138, 002026, 002027, + 201000, 002028, 002029, 002161, 002164, 002023, 008012, 008013, 001124, 005001, + 006001, 004001, 004002, 004003, 004004, 004005, 004006, 004086, 002162, 007004, + 011001, 011002, 011003, 011004, 012001, 020014, 007024, 001023, 104000, 031001, + 002162, 007004, 012001, 020014, 113000, 031001, 004086, 002020, 001007, 002019, + 005042, 002153, 005040, 007024, 005021, 002162, 007004, 012001, 020014, 119000, + 031001, 004086, 004086, 005001, 006001, 011003, 011004, 011113, 025148, 103000, + 031001, 008023, 011003, 011004, 008023, 103000, 031001, 020111, 020112, 020114, + 001033, 008021, 007004, 011095, 011096, 008021, 007004, 011095, 011096, 008021, + 008086, 007004, 011095, 011096, 008086, 102004, 001044, 033007, 008092, 007004, + 011003, 011004, 008092, 033066, 020081, 020012, 020056, 117000, 031001, 008023, + 020016, 008092, 008003, 012001, 008003, 020016, 008092, 025149, 020016, 020014, + 013093, 013109, 040038, 008011, 014050, 008011, 008023 ] +"311001" = [ 301051, 007002, 012001, 011001, 011002, 011031, 011032, 011033, 020041 ] +"311002" = [ 301065, 301066, 311003, 311004 ] +"311003" = [ 010070, 011001, 011002, 012001, 013002 ] +"311004" = [ 101000, 031000, 011034, 101000, 031000, 011035, 101000, 031000, 011075, 101000, + 031000, 011076, 101000, 031000, 033025, 101000, 031000, 033026 ] +"311005" = [ 001008, 001023, 301021, 301011, 301013, 007010, 008009, 011001, 011002, 011031, + 011036, 012101, 033025 ] +"311006" = [ 007010, 011001, 011002, 002064, 012101, 012103 ] +"311007" = [ 007010, 301021, 011001, 011002, 002064, 012101, 012103 ] +"311008" = [ 001008, 301011, 301013, 301021, 008004, 101000, 031001, 311006 ] +"311009" = [ 001008, 301011, 301013, 301021, 008004, 101000, 031001, 311007 ] +"311010" = [ 001008, 001023, 001006, 001110, 001111, 001112, 204002, 031021, 301011, 301013, + 301021, 007010, 010053, 008009, 011001, 011002, 002064, 011100, 011101, 011102, + 011103, 011104, 012101, 002170, 201144, 202133, 013002, 202000, 201000, 201135, + 202130, 013003, 202000, 201000, 101000, 031000, 012103, 033026, 101000, 031000, + 020042, 103000, 031000, 020043, 020044, 020045, 101000, 031000, 033025, 103000, + 031001, 011075, 011076, 011039, 102000, 031000, 011037, 011077, 103000, 031000, + 011034, 011035, 011036, 204000, 119000, 031001, 301011, 301013, 301021, 007007, + 011105, 204007, 031021, 011076, 011075, 204000, 011106, 011107, 011108, 011109, + 012101, 011001, 201130, 011084, 201000 ] +"311011" = [ 001023, 008004, 301011, 301013, 005002, 006002, 007004, 011001, 011002, 012101, + 106000, 031001, 008046, 201139, 202126, 015026, 202000, 201000, 106000, 031001, + 008046, 201138, 202130, 015026, 202000, 201000, 015052, 015053, 015054, 015055, + 007004, 007004, 013099, 013100, 013101 ] +"311012" = [ 301150, 001008, 001111, 001112, 301011, 301013, 301021, 008004, 110000, 031002, + 301011, 301013, 311007, 201144, 202133, 013002, 202000, 201000, 013003, 033026 + ] +"312001" = [ 301043, 304001 ] +"312002" = [ 301043, 304002 ] +"312003" = [ 301042, 304003 ] +"312004" = [ 301042, 304004 ] +"312005" = [ 301042, 020014 ] +"312006" = [ 301044, 304005 ] +"312007" = [ 301042, 304006 ] +"312010" = [ 001007, 005040, 002021, 005041, 004001, 004043 ] +"312011" = [ 202131, 201149, 004006, 201000, 202126, 010002, 202000, 005043, 005053 ] +"312012" = [ 202129, 201132, 101019, 012063, 201000, 202000 ] +"312013" = [ 005042, 202129, 201135, 012063, 201000, 202000 ] +"312014" = [ 312010, 312011, 105056, 301023, 005042, 005052, 312012, 312013 ] +"312015" = [ 109011, 301023, 005042, 005052, 202129, 201132, 101004, 012063, 202000, 201000 + ] +"312016" = [ 312010, 312011, 312015 ] +"312017" = [ 109008, 301023, 005042, 005052, 202129, 201132, 101003, 012063, 202000, 201000 + ] +"312018" = [ 312010, 312011, 312017 ] +"312019" = [ 301047, 301048, 015015, 029002, 021076, 106012, 201129, 006030, 201000, 102012, + 005030, 021075, 021066 ] +"312020" = [ 301047, 301048, 015015, 029002, 021076, 104012, 006030, 102012, 005030, 021075, + 021066 ] +"312021" = [ 301047, 101003, 301049, 011012, 011011, 021067 ] +"312022" = [ 301047, 008022, 011012, 011050, 022070, 022026, 312041, 010050, 021068, 021071, + 021072, 021073, 312042, 021062, 015011 ] +"312023" = [ 301047, 103003, 008022, 012061, 022050, 021069, 021085 ] +"312024" = [ 312020, 008060, 008022, 008060, 008022, 025014, 022101, 022097, 022098, 022099, + 022100 ] +"312025" = [ 312019, 008060, 008022, 008060, 008022, 025014, 022101, 022097, 022098, 022099, + 022100 ] +"312026" = [ 301046, 301011, 301013, 301023, 312031, 101004, 312030, 021110, 301023, 321027, + 021111, 301023, 321027, 021112, 301023, 321027, 021113, 301023, 321027 ] +"312027" = [ 301047, 105009, 301023, 007021, 012061, 007021, 012061, 021085, 021070 ] +"312028" = [ 301046, 301011, 301013, 301023, 008025, 201136, 004006, 201000, 312031, 312032, + 101004, 312030, 101002, 312033, 021110, 301023, 321028, 021111, 301023, 321028, + 021112, 301023, 321028, 021113, 301023, 321028 ] +"312029" = [ 301046, 301011, 301013, 301023, 008025, 201136, 004006, 201000, 005034, 201129, + 006034, 201000, 033055, 011081, 011082, 021101, 021102, 021103, 312032, 101004, + 312030, 101002, 312033, 021110, 301023, 321028, 021111, 301023, 321028, 021112, + 301023, 321028, 021113, 301023, 321028 ] +"312030" = [ 201130, 202129, 011012, 202000, 201000, 011052, 201135, 202130, 011011, 202000, + 201000, 011053, 021104 ] +"312031" = [ 005034, 006034, 021109, 011081, 011082, 021101, 021102, 021103 ] +"312032" = [ 021120, 021121, 013055, 021122 ] +"312033" = [ 002104, 008022, 012063, 012065 ] +"312034" = [ 301046, 301011, 301013, 301023, 008025, 201136, 004006, 201000, 312031, 312032, + 101004, 312030, 101002, 312033, 103018, 021110, 301023, 321028 ] +"312035" = [ 001007, 001031, 002048, 202124, 002026, 002027, 202000, 005040, 004001, 004002, + 004003, 004004, 004005, 004006, 005002, 006002, 005034, 006031, 201129, 006034, + 201000, 005021, 002111, 012063, 021095, 021096, 021097, 021030, 021105, 033056 + ] +"312041" = [ 201141, 202130, 007001, 201000, 202000 ] +"312042" = [ 021077, 021078, 021079, 021080, 021081, 021082 ] +"312045" = [ 001007, 002019, 001096, 025061, 005040, 301011, 301013, 301021, 007002, 012180, + 012181, 012182, 012183, 012184, 012185, 002174, 021086, 012186, 021087, 012187, + 033043 ] +"312050" = [ 001007, 002019, 001096, 025061, 005040, 301011, 301013, 301021, 007025, 005022, + 010080, 027080, 008003, 007004, 013093, 008003, 201131, 202129, 007004, 007004, + 202000, 201000, 013095 ] +"312051" = [ 001007, 002019, 001096, 025061, 005040, 008075, 301011, 301013, 301021, 001012, + 201131, 001013, 201000, 010032, 010033, 010034, 007002, 008012, 025110, 025111, + 025102, 002104, 025103, 025104, 025105, 025106, 025107, 025108, 002111, 002121, + 002026, 002027, 021130, 021131, 021132, 021133, 021064, 025014, 021134, 107018, + 005030, 105024, 201130, 006030, 201000, 021135, 021136, 033044 ] +"312052" = [ 001007, 002019, 001096, 025061, 005040, 025120, 025121, 025124, 025125, 025122, + 025123, 301011, 301013, 301021, 007002, 002119, 033047, 010081, 010082, 010083, + 010084, 002116, 002117, 002118, 002156, 002157, 014055, 022150, 022151, 022152, + 022153, 022154, 022155, 022156, 022157, 022158, 022159, 021137, 021138, 021139, + 021140, 021141, 021142, 010085, 010086, 010087, 010088, 010089, 010090, 010091, + 010092, 010093, 011002, 025126, 025127, 025128, 025129, 025130, 025131, 025132, + 025133, 025134, 025135, 025136, 025137, 013096, 013097, 011095, 011096, 012188, + 012189, 002158, 002159, 033052, 033053, 021143, 021144 ] +"312053" = [ 001007, 002019, 001096, 025061, 005040, 008075, 301011, 301013, 301021, 001012, + 201131, 001013, 201000, 010032, 010033, 010034, 007002, 008012, 025110, 025111, + 025102, 002104, 025103, 025104, 025105, 025106, 025107, 025108, 011001, 011002, + 022160, 025138, 201130, 202129, 022021, 202000, 201000, 033048, 033049, 002026, + 002027, 021130, 021131, 021132, 021133, 025014, 106036, 005030, 104024, 201130, + 006030, 201000, 022161, 033044 ] +"312055" = [ 005033, 005040, 006034, 010095, 021157 ] +"312056" = [ 025060, 001032, 011082, 011081, 020095, 020096, 021155, 201133, 021101, 021102, + 201000 ] +"312057" = [ 201130, 202129, 011012, 202000, 201000, 201131, 202129, 011011, 202000, 201000, + 021156, 021104 ] +"312058" = [ 301125, 301011, 301013, 301021, 312055, 021150, 101003, 321030 ] +"312059" = [ 312056, 101000, 031001, 312057 ] +"312060" = [ 025060, 025062, 040001, 040002, 021062, 021151, 021152, 021153, 021154, 021062, + 021088, 040003, 040004, 040005, 040006, 040007, 020065, 040008, 040009, 040010 + ] +"312061" = [ 312058, 312060, 312059 ] +"312070" = [ 001007, 002019, 001144, 001124, 030010, 301011, 301013, 301021, 007012, 015012, + 012165, 012166, 012167, 012168, 027010, 028010, 002099, 013048, 025081, 025082, + 025083, 025084, 012080, 012081, 012082, 025174, 033028 ] +"312071" = [ 001007, 002019, 002139, 001096, 001040, 025061, 005040, 005044, 008075, 008077, + 004001, 004002, 004003, 004004, 004005, 004006, 005001, 006001, 010081, 022156, + 022142, 101020, 022149, 022143, 022144, 021137, 101020, 021181, 021138, 021180, + 021177, 021178, 021179, 010079, 010085, 010086, 010087, 010089, 010090, 010091, + 010092, 010093, 011097, 021093, 101020, 021182, 033053, 022151, 022145, 022148, + 022146, 022147, 025126, 025128, 025127, 021176, 025132, 025133, 025182, 025183, + 025180, 025184, 025181, 033080 ] +"313009" = [ 021001, 101000, 031001, 021001 ] +"313010" = [ 021036, 101000, 031001, 021036 ] +"313031" = [ 006002, 006012, 101000, 031002, 030001 ] +"313032" = [ 005002, 005012, 101000, 031002, 313031 ] +"313041" = [ 006002, 110000, 031001, 104000, 031001, 006012, 101000, 031012, 030001, 006012, + 101000, 031001, 030001 ] +"313042" = [ 005002, 005012, 101000, 031002, 313041 ] +"313043" = [ 006002, 005002, 005012, 112000, 031001, 110000, 031001, 104000, 031001, 006012, + 101000, 031011, 030001, 006012, 101000, 031001, 030001 ] +"315001" = [ 001011, 301011, 301012, 301023, 306001 ] +"315002" = [ 001011, 301011, 301012, 301023, 306004 ] +"315003" = [ 001087, 001085, 001086, 002036, 002148, 002149, 022055, 022056, 022067, 301011, + 301012, 301021, 008080, 033050, 109000, 031002, 007065, 008080, 033050, 022045, + 008080, 033050, 022064, 008080, 033050 ] +"315004" = [ 001079, 001011, 001103, 001087, 001019, 001080, 005036, 001036, 001013, 001012, + 301011, 301012, 301021, 007032, 007033, 002002, 011002, 011001, 007032, 007033, + 012101, 012103, 007032, 007033, 302021, 002031, 002030, 022005, 022032, 022063, + 008080, 033050, 022178, 022177, 022067, 008041, 026021, 026022, 026023, 022068, + 025061, 008041, 008080, 002171, 302090, 002171, 002032, 315005 ] +"315005" = [ 106000, 031002, 007063, 008080, 033050, 022043, 008080, 033050 ] +"315007" = [ 301003, 001019, 001103, 001087, 001036, 001115, 001080, 005036, 301011, 301012, + 301021, 001079, 001023, 022063, 101000, 031000, 302001, 101000, 031000, 302021, + 101000, 031000, 302052, 101000, 031000, 302059, 022067, 002171, 302090, 306033, + 306034, 002171, 022067, 002038, 022067, 022068, 002171, 002033, 002032, 022056, + 003011, 306035, 107000, 031000, 002032, 003010, 002031, 002040, 022056, 003011, + 306036, 104000, 031000, 002032, 003012, 003011, 306037 ] +"315008" = [ 301126, 306038, 101000, 031000, 302091, 101000, 031000, 302082, 101000, 031000, + 306039, 101000, 031000, 306040, 102000, 031000, 002005, 306041, 102000, 031000, + 002005, 306004, 101000, 031000, 306005 ] +"315009" = [ 001087, 001019, 002149, 008021, 301011, 301012, 301021, 208016, 001051, 208000, + 002148, 001012, 001014, 033022, 033023, 033027, 025026, 002034, 022060, 007070, + 002190, 008021, 301011, 301012, 002005, 022043, 002033, 022059, 008029, 013115, + 103000, 031000, 002005, 306004, 002005, 010004, 010051, 102000, 031000, 007033, + 012101, 101000, 031000, 306042, 101000, 031000, 306039 ] +"315010" = [ 112000, 031001, 201144, 202133, 022080, 022096, 022069, 202000, 201000, 042011, + 042012, 042013, 042014, 042015 ] +"315011" = [ 301150, 001087, 001036, 001085, 001086, 003001, 208032, 001079, 208000, 301011, + 301012, 301021, 001012, 001014, 011104, 103000, 031000, 007031, 306038, 012161, + 101000, 031000, 306034, 101000, 031000, 306039, 101000, 031000, 306033, 101000, + 031000, 306041, 101000, 031000, 306004, 101000, 031000, 306005, 105000, 031000, + 041001, 008043, 015028, 008043, 013080, 104000, 031000, 041005, 041003, 022188, + 041002, 101000, 031000, 306040, 104000, 031000, 008021, 004025, 014017, 014018 + ] +"316001" = [ 301011, 004004, 301023, 001021, 002041, 019001, 010051, 019002, 019003, 019004 + ] +"316002" = [ 008021, 004001, 004002, 004003, 004004, 004005, 001033, 008021, 004001, 004002, + 004003, 004004, 004005, 007002, 007002 ] +"316003" = [ 110000, 031001, 008011, 008007, 104000, 031001, 005002, 006002, 010002, 011002, + 008007, 008011 ] +"316004" = [ 111000, 031001, 008011, 008007, 007002, 007002, 102000, 031001, 005002, 006002, + 011031, 008007, 008011 ] +"316005" = [ 108000, 031001, 008005, 008007, 005002, 006002, 001026, 019001, 008007, 008005 + ] +"316006" = [ 112000, 031001, 008011, 008007, 007002, 007002, 102000, 031001, 005002, 006002, + 020011, 020012, 008007, 008011 ] +"316007" = [ 110000, 031001, 008011, 008007, 104000, 031001, 005002, 006002, 019005, 019006, + 008007, 008011 ] +"316008" = [ 111000, 031001, 008001, 008007, 008023, 103000, 031001, 005002, 006002, 010002, + 008023, 008007, 008001 ] +"316009" = [ 111000, 031001, 008011, 008007, 007002, 007002, 102000, 031001, 005002, 006002, + 020041, 008007, 008011 ] +"316010" = [ 107000, 031001, 008011, 008007, 001022, 005002, 006002, 008007, 008011 ] +"316011" = [ 117000, 031001, 008011, 001022, 008007, 102000, 031001, 005002, 006002, 008021, + 004001, 004002, 004003, 004004, 004005, 020090, 008021, 008007, 008011 ] +"316020" = [ 001033, 001025, 001027, 301011, 301012 ] +"316021" = [ 301023, 002041, 019001, 019007, 019005, 019006, 019008, 008005, 010004, 008005, + 010004, 019007, 008005, 008021, 004075, 011040, 019007, 105004, 005021, 005021, + 102002, 019003, 019004 ] +"316022" = [ 001032, 002041, 019001, 019010, 118000, 031001, 008021, 004014, 008005, 301023, + 019005, 019006, 010004, 011041, 008021, 004075, 011040, 019008, 105004, 005021, + 005021, 102002, 019003, 019004 ] +"316026" = [ 316020, 316021 ] +"316027" = [ 316020, 316022 ] +"316030" = [ 301014, 001037, 010064, 008019, 001062, 008019, 001065, 008019, 001062, 008019 + ] +"316031" = [ 008021, 301011, 301012, 301027, 019005, 019006, 020028, 008021 ] +"316032" = [ 008021, 301011, 301012, 301027, 008021 ] +"316033" = [ 008021, 301011, 301012, 101000, 031001, 301027, 008021 ] +"316034" = [ 008079, 316030, 008011, 001022, 008007, 301023, 008007, 020090, 316031, 101000, + 031000, 316032, 101000, 031001, 316033, 008011, 008079 ] +"316035" = [ 008079, 316030, 008011, 020023, 020021, 020008, 316031, 008011, 008079 ] +"316036" = [ 008079, 316030, 008011, 001027, 316031, 101000, 031000, 316032, 101000, 031001, + 316033, 008011, 008079 ] +"316037" = [ 008079, 316030, 008011, 011031, 316031, 008011, 008079 ] +"316038" = [ 008079, 316030, 008011, 020041, 020021, 316031, 008011, 008079 ] +"316039" = [ 008079, 316030, 008011, 020024, 316031, 008011, 008079 ] +"316040" = [ 316030, 008079, 301014, 001037, 010064, 008079 ] +"316050" = [ 301001, 301011, 301012, 002160, 008005, 005002, 006002, 008005, 019100, 019005, + 019006, 019101, 019102, 019103, 019104, 019105 ] +"316052" = [ 301005, 301011, 301012, 001007, 025150, 122000, 031001, 001027, 019150, 019106, + 008005, 005002, 006002, 008005, 019107, 019005, 019006, 019108, 019109, 019110, + 019111, 019112, 019113, 019114, 019115, 019116, 019117, 019118, 019119 ] +"316060" = [ 301011, 301012, 005002, 006002, 019005, 019006, 005002, 006002, 005002, 006002, + 004074, 020048, 011041, 013055 ] +"316061" = [ 301011, 301012, 005002, 006002, 019005, 019006, 102000, 031001, 005002, 006002, + 102000, 031001, 005002, 006002, 004074, 020048, 011041, 013055 ] +"316071" = [ 301014, 101000, 031002, 316075, 101000, 031002, 316076 ] +"316072" = [ 301014, 101000, 031002, 316077, 101000, 031002, 316078, 101000, 031002, 316079 + ] +"316073" = [ 301014, 101000, 031002, 316080, 101000, 031002, 316081 ] +"316074" = [ 001039, 008021, 301014, 301027, 008021 ] +"316075" = [ 008079, 008041, 316074, 020006, 033042, 020013, 033042, 020001, 020025, 020026, + 008041, 008079 ] +"316076" = [ 008079, 008041, 316074, 020006, 020025, 020026, 008041, 008079 ] +"316077" = [ 008079, 008011, 316074, 011031, 008011, 008079 ] +"316078" = [ 008079, 008041, 316074, 033042, 011012, 008041, 008079 ] +"316079" = [ 008079, 008011, 316074, 020023, 020024, 008011, 008079 ] +"316080" = [ 008079, 008011, 316074, 020041, 008011, 008079 ] +"316081" = [ 008079, 008041, 316074, 008041, 008079 ] +"316082" = [ 001033, 001034, 001032, 001025, 001027, 001090, 001091, 001092, 301011, 301012, + 008005, 301023, 008005, 301023, 010051, 008005, 301023, 011012, 107003, 019003, + 105004, 005021, 005021, 201131, 019004, 201000, 116000, 031001, 008021, 004024, + 008005, 301023, 010051, 008005, 301023, 011012, 107003, 019003, 105004, 005021, + 005021, 201131, 019004, 201000 ] +"318001" = [ 301025, 024011 ] +"318003" = [ 301026, 024005, 024004, 024021 ] +"318004" = [ 301025, 004023, 013011, 024005, 024004, 024022 ] +"321001" = [ 002101, 002114, 002105, 002106, 002107, 002121 ] +"321003" = [ 021051, 021014, 021017, 021030 ] +"321004" = [ 301031, 002003, 101000, 031001, 321003 ] +"321005" = [ 025004, 002121, 002122, 002123, 002124, 002125, 002126, 002127, 002128, 002129, + 002130, 002131 ] +"321006" = [ 025001, 025002, 025003, 025005 ] +"321007" = [ 025009, 025010, 025011, 025012, 025013, 025015, 025016, 025017 ] +"321008" = [ 025006, 025007, 025008 ] +"321009" = [ 025018, 025019 ] +"321010" = [ 002101, 007002, 002102, 002103, 002104, 002105, 002106, 002107, 002108, 002109, + 002110, 002132, 002133 ] +"321011" = [ 030031, 030032, 029002 ] +"321012" = [ 101000, 031001, 002135 ] +"321021" = [ 002003, 002101, 201130, 002106, 201000, 201132, 202130, 002121, 202000, 201000, + 201133, 202129, 025001, 202000, 201000 ] +"321022" = [ 007007, 204001, 031021, 011001, 204000, 011002, 204001, 031021, 011006, 204000, + 021030 ] +"321023" = [ 007007, 021091, 021030, 202129, 021014, 201129, 021017, 202000, 201000 ] +"321024" = [ 007007, 204001, 031021, 012007, 011006, 204000, 021030 ] +"321025" = [ 007007, 021091, 021030, 202129, 021014, 201129, 021017, 202000, 201000, 021092, + 021030, 025092, 201129, 202129, 021017, 202000, 201000 ] +"321026" = [ 007007, 204001, 031021, 012007, 025091, 011071, 011072, 011073, 011074, 204000 + ] +"321027" = [ 021118, 202129, 201132, 002112, 201000, 201131, 002111, 201000, 202000, 002104, + 021105, 021106, 021107, 021114, 021115, 021116, 008018, 021117 ] +"321028" = [ 021118, 202129, 201132, 002112, 201000, 201131, 002111, 201000, 202000, 002104, + 021123, 021106, 021107, 021114, 021115, 021116, 008018, 021117 ] +"321030" = [ 008085, 202129, 201131, 002111, 201000, 202000, 002134, 021062, 021063, 021158, + 021159, 021160, 021161, 021162, 021163, 021164, 021165, 021166 ] +"322028" = [ 001007, 002019, 004001, 004002, 004003, 004004, 004005, 004006, 005001, 006001, + 027001, 028001, 027001, 028001, 027001, 028001, 027001, 028001, 010001, 014019, + 007025, 010080, 005023, 020010, 008003, 007004, 014026, 020014, 013093, 105000, + 031001, 007004, 007004, 008043, 008044, 015021 ] +"340001" = [ 001007, 001031, 002019, 002020, 004001, 004002, 004003, 004004, 004005, 202131, + 201138, 004006, 201000, 202000, 005001, 006001, 007024, 005021, 007025, 005022, + 005043, 005040, 201133, 005041, 201000, 201132, 025070, 201000, 202126, 007001, + 202000, 033060, 033061, 033062, 033063, 033064, 033065, 101010, 340002, 101087, + 340003, 002019, 025051, 101007, 340004 ] +"340002" = [ 025140, 025141, 025142 ] +"340003" = [ 104100, 201136, 005042, 201000, 014046 ] +"340004" = [ 005060, 005061, 025085, 105006, 005042, 025142, 014047, 025142, 014048 ] +"340005" = [ 001007, 002019, 001096, 025061, 005044, 005040, 001030, 004001, 004002, 004003, + 004004, 004005, 004007, 005001, 006001, 008029, 008074, 008077, 040011, 025097, + 025095, 025098, 025099, 021144, 025096, 040012, 040013, 021169, 022151, 022162, + 022163, 025160, 025133, 022156, 022164, 022165, 022166, 021137, 021138, 022167, + 021139, 021118, 021145, 021146, 021147, 022168, 022169, 022170, 025161, 025162, + 022171, 022172, 022173, 022174, 021170, 021171, 022175, 021172, 021118, 021173, + 021174, 021175, 002153, 012063, 002153, 012063, 002153, 012063, 013090, 013091, + 007002, 011097, 011098, 007002, 011095, 011096, 010096, 010081, 010082, 010083, + 010101, 025132, 025163, 025126, 025128, 025164, 010085, 010097, 010086, 010087, + 010092, 010088, 010089, 010098, 010099, 010090, 010100, 010093, 025127, 040014 + ] +"340007" = [ 001007, 001031, 002019, 002020, 004001, 004002, 004003, 004004, 004005, 202131, + 201138, 004006, 201000, 202000, 005001, 006001, 007024, 005021, 007025, 005022, + 005043, 005040, 201133, 005041, 201000, 201132, 025070, 201000, 202126, 007001, + 202000, 103003, 025140, 025141, 033060, 033061, 033062, 033063, 033064, 033065, + 040020, 101010, 340002, 101087, 340003, 002019, 025051, 101007, 340004, 020081, + 008029, 020083, 008029, 040018, 040019, 040021, 040022 ] +"340008" = [ 001007, 001031, 002019, 002020, 004001, 004002, 004003, 004004, 004005, 202131, + 201138, 004006, 201000, 202000, 005001, 006001, 007024, 005021, 007025, 005022, + 005043, 005040, 201133, 005041, 201000, 201132, 025070, 201000, 202126, 007001, + 202000, 103003, 025140, 025141, 033060, 033061, 033062, 033063, 033064, 033065, + 040020, 101010, 340002, 104000, 031002, 201136, 005042, 201000, 014046, 108003, + 025140, 025141, 040026, 040016, 025062, 101000, 031002, 040017, 002019, 025051, + 101007, 340004, 020081, 008029, 020083, 008029, 040018, 040019, 040021, 040022 + ] +"340009" = [ 001007, 001031, 002019, 002020, 301011, 301013, 005040, 201136, 005041, 201000, + 025071, 005001, 005001, 006001, 006001, 107064, 106032, 008012, 008013, 008065, + 008072, 013039, 040015 ] +"340010" = [ 001007, 002019, 001096, 025061, 005044, 005040, 001030, 004001, 004002, 004003, + 004004, 004005, 004007, 005001, 006001, 008029, 008074, 008077, 040011, 025097, + 025095, 025098, 025099, 021144, 025096, 040012, 040013, 021169, 040023, 040024, + 040025, 022151, 022162, 022163, 025160, 025133, 022156, 022164, 022165, 022166, + 021137, 021138, 022167, 021139, 021118, 021145, 021146, 021147, 022168, 022169, + 022170, 025161, 025162, 022171, 022172, 022173, 022174, 021170, 021171, 022175, + 021172, 021118, 021173, 021174, 021175, 002153, 012063, 002153, 012063, 002153, + 012063, 013090, 013091, 007002, 011097, 011098, 007002, 011095, 011096, 010096, + 010081, 010082, 010083, 010101, 025132, 025163, 025126, 025128, 025164, 010085, + 010097, 010086, 010087, 010092, 010088, 010089, 010098, 010099, 010090, 010100, + 010093, 025127, 040014, 010102 ] +"340011" = [ 001007, 002019, 001096, 025061, 005044, 005040, 001030, 004001, 004002, 004003, + 004004, 004005, 004007, 005001, 006001, 008029, 008077, 040011, 025097, 025112, + 025113, 021148, 021169, 040024, 040025, 002153, 022189, 022191, 022130, 025167, + 025166, 022190, 022131, 022132, 022133, 021183, 021184, 022134, 021185, 021118, + 021186, 021187, 021188, 002153, 012063, 002153, 012063, 013090, 013160, 007002, + 011097, 007002, 011095, 011096, 010096, 010081, 010082, 010083, 010101, 002153, + 025165, 025126, 025128, 025164, 010085, 010086, 010087, 010092, 010088, 010089, + 010098, 010099, 010090, 010100, 010093, 025127, 040014, 010102 ] +"340012" = [ 001007, 002019, 008091, 005001, 006001, 007002, 005063, 005064, 005066, 005041, + 005067, 301011, 301012, 004007, 008091, 005001, 006001, 107000, 031001, 005042, + 002153, 002104, 040028, 007024, 040027, 012063 ] +"340013" = [ 001007, 002019, 001033, 001034, 004001, 004002, 004003, 004004, 004005, 004007, + 005068, 005070, 005069, 040036, 008091, 005001, 006001, 004016, 008091, 005001, + 006001, 004016, 008091, 005001, 006001, 004016, 008091, 007071, 005021, 007021, + 040035, 008091, 007071, 005021, 007021, 040035, 008091, 007071, 005021, 007021, + 040035, 040029, 040030, 040031, 025187, 010004, 012001, 040037, 040032, 040033, + 040034 ] +"340015" = [ 001007, 002019, 301011, 301012, 004007, 201133, 005041, 201000, 201130, 005043, + 201000, 207001, 005002, 006002, 207000, 040027, 013040, 021120, 207003, 102003, + 002186, 013155, 207000, 033003 ] +"340016" = [ 301129, 301130, 301131, 202134, 007001, 202000, 101000, 031002, 340002, 101000, + 031002, 304039, 101000, 031002, 304040 ] +"340017" = [ 001007, 002019, 005044, 001096, 005040, 001040, 025061, 025182, 025183, 025181, + 025184, 301011, 301013, 004007, 301021, 005063, 005064, 005066, 010081, 010082, + 008075, 025090, 008029, 201137, 202129, 006021, 202000, 201000, 010087, 025096, + 040012, 008077, 104002, 002153, 012063, 012065, 040013, 007002, 011098, 013090, + 013091, 025164, 025095, 040023, 025113, 008074, 025190, 021144, 025191, 021143, + 013055, 021169, 010101, 015012, 007002, 011097, 040024, 007002, 025126, 025128, + 040011, 007002, 011095, 011096, 010088, 010089, 010090, 010092, 010093, 010098, + 010099, 010100, 025127, 040014, 010085, 010086, 010096, 010103, 010102, 022080, + 008076, 022189, 022191, 022130, 025165, 025166, 025167, 021183, 021184, 022134, + 021122, 022190, 022131, 022132, 022133, 021186, 021187, 021188, 021185, 025112, + 025113, 033092, 008076, 022189, 022191, 022130, 025165, 025166, 025167, 021183, + 021184, 022134, 021122, 022190, 022131, 022132, 022133, 021186, 021187, 021188, + 021185, 025112, 025113, 033092, 025190, 011097, 013090, 013091, 021143, 021184, + 025128, 025163, 025164, 010102, 022189, 022191, 022130, 025166, 021183, 021184, + 022134, 022190, 022131, 022132, 025112, 025113, 033092, 008049, 022080, 134021, + 301011, 301013, 004007, 301021, 010081, 010082, 008029, 201137, 202129, 006021, + 202000, 201000, 025191, 021071, 010085, 040011, 010102, 022189, 022146, 025165, + 025167, 021183, 022190, 022133, 021177, 021185, 013164, 202126, 022046, 202000, + 013117, 013013, 025112, 033092 ] +"340018" = [ 301129, 301130, 301131, 007072, 040074, 104000, 031002, 201136, 005042, 201000, + 014044 ] +"340019" = [ 340020, 340021, 340022, 340023 ] +"340020" = [ 001007, 002019, 005044, 001096, 005040, 001040, 025061, 025182, 025183, 025181, + 025184, 008075, 025090, 301011, 301013, 004007, 301021, 005063, 005064, 005066, + 010081, 010082 ] +"340021" = [ 040012, 008077, 104000, 031001, 002153, 012063, 012065, 040013, 007002, 011098 + ] +"340022" = [ 008029, 201137, 202129, 006021, 202000, 201000, 010087, 040024, 007002, 025126, + 025128, 040011, 007002, 011095, 011096, 010088, 010089, 010090, 010092, 010093, + 010098, 010099, 010100, 025127, 040014, 001030, 010085, 001030, 010085, 010086, + 010096, 010103, 021169, 013055, 025165 ] +"340023" = [ 025095, 040023, 008074, 340024, 340024, 340024, 340025 ] +"340024" = [ 022080, 008076, 025190, 010102, 022189, 022191, 022130, 025167, 025163, 015012, + 025164, 013090, 013091, 025166, 007002, 011097, 021183, 021184, 022134, 021122, + 021186, 021187, 021188, 201131, 021185, 201000, 022179, 022131, 022132, 022133, + 021144, 025191, 021143, 010101, 025112, 025113, 033092 ] +"340025" = [ 008049, 022080, 008076, 025190, 146021, 301011, 301013, 004007, 301021, 010081, + 010082, 008029, 201137, 202129, 006021, 202000, 201000, 025191, 021071, 001030, + 010085, 001030, 010085, 040011, 010088, 010089, 025164, 007002, 025126, 025128, + 010102, 022189, 025167, 025163, 021183, 201131, 021185, 201000, 022179, 022133, + 022146, 021189, 013163, 202126, 022046, 202000, 013117, 013013, 025112, 025113, + 033092 ] From 10cddf8e960f2783f55f6f7dc21f8604d50c5f10 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 30 Nov 2020 21:08:16 +0000 Subject: [PATCH 168/683] Message offsets: Add test --- tests/CMakeLists.txt | 2 ++ tests/extract_offsets.c | 36 +++++++++++++++++++++++++++++++++++ tests/extract_offsets.sh | 41 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 79 insertions(+) create mode 100644 tests/extract_offsets.c create mode 100755 tests/extract_offsets.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index caf10725d..d7ef267a7 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -30,6 +30,7 @@ list(APPEND test_bins bufr_ecc-517 bufr_get_element bufr_extract_headers + extract_offsets bufr_check_descriptors grib_sh_ieee64 ieee @@ -116,6 +117,7 @@ if( HAVE_BUILD_TOOLS ) bufr_get_element bufr_wmo_tables bufr_extract_headers + extract_offsets bufr_ecc-673 bufr_ecc-428 bufr_ecc-286 diff --git a/tests/extract_offsets.c b/tests/extract_offsets.c new file mode 100644 index 000000000..37eabecfa --- /dev/null +++ b/tests/extract_offsets.c @@ -0,0 +1,36 @@ +/* + * (C) Copyright 2005- ECMWF. + * + * This software is licensed under the terms of the Apache Licence Version 2.0 + * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. + * + * In applying this licence, ECMWF does not waive the privileges and immunities granted to it by + * virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. + */ + +#include "eccodes.h" +#include + + +int main(int argc, char* argv[]) +{ + char *filename; + int err = 0; + int num_messages = 0, i =0; + off_t* offsets = NULL; + codes_context* c = codes_context_get_default(); + const int strict_mode = 1; + + /* Usage: prog file */ + assert(argc == 2); + + filename = argv[1]; + err = codes_extract_offsets_malloc(c, filename, PRODUCT_ANY, &offsets, &num_messages, strict_mode); + if (err) return err; + + for (i = 0; i < num_messages; ++i) { + printf("%lu\n", offsets[i]); + } + free(offsets); + return 0; +} diff --git a/tests/extract_offsets.sh b/tests/extract_offsets.sh new file mode 100755 index 000000000..47cad316e --- /dev/null +++ b/tests/extract_offsets.sh @@ -0,0 +1,41 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh + +# Define a common label for all the tmp files +label="bufr_extract_offsets_test" +temp1="temp.${label}.1" +temp2="temp.${label}.2" + +echo "Multi-message BUFR..." +# --------------------------- +input=${data_dir}/bufr/aeolus_wmo_26.bufr +$EXEC ${test_dir}/extract_offsets $input > $temp1 +${tools_dir}/bufr_get -p offset:i $input > $temp2 +diff $temp1 $temp2 + +echo "Multi-message GRIB..." +# -------------------------- +input=${data_dir}/mixed.grib +$EXEC ${test_dir}/extract_offsets $input > $temp1 +${tools_dir}/grib_get -p offset:i $input > $temp2 +diff $temp1 $temp2 + + +echo "Test with invalid inputs..." +# --------------------------------- +set +e +$EXEC ${test_dir}/extract_offsets ${data_dir} +status=$? +set -e +[ $status -ne 0 ] + +rm -f $temp1 $temp2 From 1da9a4e0f00b4991b43f8a1069dcd4d03b6470fc Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 30 Nov 2020 21:25:29 +0000 Subject: [PATCH 169/683] ECC-1173: update masterTablesVersionNumberLatest --- definitions/bufr/boot.def | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/definitions/bufr/boot.def b/definitions/bufr/boot.def index 3b4af056b..36e0607b5 100644 --- a/definitions/bufr/boot.def +++ b/definitions/bufr/boot.def @@ -13,7 +13,7 @@ transient setToMissingIfOutOfRange=0 : hidden; # This gets updated twice a year by WMO. # See http://www.wmo.int/pages/prog/www/WMOCodes/WMO306_vI2/LatestVERSION/LatestVERSION.html -constant masterTablesVersionNumberLatest = 34; +constant masterTablesVersionNumberLatest = 35; #negative value=not used transient inputDelayedDescriptorReplicationFactor={-1} : hidden; From 26fdc3b4255a4ce44120fa5f6aef8dbbcc08b0ab Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 1 Dec 2020 09:39:55 +0000 Subject: [PATCH 170/683] Definitions: raise parameter limit: cumulative fluxes can easily reach the value +1e12 --- definitions/param_limits.def | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/definitions/param_limits.def b/definitions/param_limits.def index 1f936f888..54ae46270 100644 --- a/definitions/param_limits.def +++ b/definitions/param_limits.def @@ -1,5 +1,5 @@ constant default_min_val = -1e9 : double_type, hidden; -constant default_max_val = +1e9 : double_type, hidden; +constant default_max_val = +1e13 : double_type, hidden; concept param_value_min(default_min_val) { -150 = { paramId=165; } From 10ad488ed77fcb52fa03e7912c9a389ffb69fe92 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 1 Dec 2020 12:16:01 +0000 Subject: [PATCH 171/683] Testing: Remove compile warning --- tests/extract_offsets.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/extract_offsets.c b/tests/extract_offsets.c index 37eabecfa..be70a0e04 100644 --- a/tests/extract_offsets.c +++ b/tests/extract_offsets.c @@ -11,7 +11,6 @@ #include "eccodes.h" #include - int main(int argc, char* argv[]) { char *filename; @@ -29,7 +28,7 @@ int main(int argc, char* argv[]) if (err) return err; for (i = 0; i < num_messages; ++i) { - printf("%lu\n", offsets[i]); + printf("%lu\n", (unsigned long)offsets[i]); } free(offsets); return 0; From 24b80f6e7aca3c8a0289c71b87d4ae1a7fdaa07e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 2 Dec 2020 11:20:26 +0000 Subject: [PATCH 172/683] ECC-1174: bufr_filter: Time interval extraction fails if 'second' key has a missing value --- ...ssor_class_bufr_extract_datetime_subsets.c | 7 ++++++ tests/bufr_filter_extract_datetime.sh | 23 +++++++++++++++---- 2 files changed, 25 insertions(+), 5 deletions(-) diff --git a/src/grib_accessor_class_bufr_extract_datetime_subsets.c b/src/grib_accessor_class_bufr_extract_datetime_subsets.c index b4e9642e3..aa6f7eff9 100644 --- a/src/grib_accessor_class_bufr_extract_datetime_subsets.c +++ b/src/grib_accessor_class_bufr_extract_datetime_subsets.c @@ -381,6 +381,7 @@ static int select_datetime(grib_accessor* a) if (ret) secondStart = 0; sprintf(start_str, "%04ld/%02ld/%02ld %02ld:%02ld:%02ld", yearStart, monthStart, dayStart, hourStart, minuteStart, secondStart); + if (c->debug) fprintf(stderr, "ECCODES DEBUG bufr_extract_datetime_subsets: start =%s\n", start_str); julianStart = date_to_julian(yearStart, monthStart, dayStart, hourStart, minuteStart, secondStart); if (julianStart == -1) { grib_context_log(c, GRIB_LOG_ERROR, "Invalid start date/time: %s", start_str); @@ -406,6 +407,7 @@ static int select_datetime(grib_accessor* a) if (ret) secondEnd = 0; sprintf(end_str, "%04ld/%02ld/%02ld %02ld:%02ld:%02ld", yearEnd, monthEnd, dayEnd, hourEnd, minuteEnd, secondEnd); + if (c->debug) fprintf(stderr, "ECCODES DEBUG bufr_extract_datetime_subsets: end =%s\n", end_str); julianEnd = date_to_julian(yearEnd, monthEnd, dayEnd, hourEnd, minuteEnd, secondEnd); if (julianEnd == -1) { grib_context_log(c, GRIB_LOG_ERROR, "Invalid end date/time: %s", end_str); @@ -418,7 +420,12 @@ static int select_datetime(grib_accessor* a) } for (i = 0; i < numberOfSubsets; i++) { + if (second[i] == GRIB_MISSING_DOUBLE) { + fprintf(stderr, "ECCODES WARNING: bufr_extract_datetime_subsets: Key '%s' is missing! Using zero instead\n", secondstr); + second[i] = 0; + } sprintf(datetime_str, "%04ld/%02ld/%02ld %02ld:%02ld:%.3f", year[i], month[i], day[i], hour[i], minute[i], second[i]); + if (c->debug) fprintf(stderr, "ECCODES DEBUG bufr_extract_datetime_subsets: datetime=%s\n", datetime_str); julianDT = date_to_julian(year[i], month[i], day[i], hour[i], minute[i], second[i]); if (julianDT == -1) { grib_context_log(c, GRIB_LOG_ERROR, "Invalid date/time: %s", datetime_str); diff --git a/tests/bufr_filter_extract_datetime.sh b/tests/bufr_filter_extract_datetime.sh index e902c626b..b209e1090 100755 --- a/tests/bufr_filter_extract_datetime.sh +++ b/tests/bufr_filter_extract_datetime.sh @@ -74,7 +74,7 @@ EOF } #----------------------------------------------------------- -# Test: Datetime extraction +echo "Test: Datetime extraction ..." #----------------------------------------------------------- cat > $fRules < $fRules < $fRules < $fRules <$errlog +grep -q "WARNING.*Key '#1#second' is missing" $errlog +rm -f $temp $errlog # Clean up rm -f $outputRef $outputFilt $outputBufr $fLog $fRules From f282126c1f548eeb32fc2bce68bca6d792fdda99 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 2 Dec 2020 12:53:24 +0000 Subject: [PATCH 173/683] ECC-1173: test to ensure new key names are unique --- tests/bufr_wmo_tables.sh | 52 +++++++++++++++++++++++++++++++++++++--- 1 file changed, 49 insertions(+), 3 deletions(-) diff --git a/tests/bufr_wmo_tables.sh b/tests/bufr_wmo_tables.sh index 3e7915fe9..dd907852c 100755 --- a/tests/bufr_wmo_tables.sh +++ b/tests/bufr_wmo_tables.sh @@ -15,10 +15,12 @@ label="bufr_wmo_tables_test" # Define tmp bufr file fTmp=${label}".tmp.bufr" +fRules=${label}".tmp.filt" +fDump=${label}".tmp.dump" -#============================================== +# -------------------------------- # Testing latest WMO tables -#============================================== +# -------------------------------- bufr_files=`cat ${data_dir}/bufr/bufr_data_files.txt` REDIRECT=/dev/null @@ -66,5 +68,49 @@ ${tools_dir}/bufr_get -s masterTablesVersionNumber=$latest_wmo_version,unpack=1 -p scanLevelQualityFlags \ $input +# --------------- +# Duplicate keys +# --------------- +# New keys appeared in v35. Ensure we added a digit suffix to make them unique e.g. +# 015063 = attenuatedBackscatter +# 015073 = attenuatedBackscatter1 +cat > $fRules < $fDump +grep -q "attenuatedBackscatter=MISSING" $fDump +grep -q "attenuatedBackscatter1=MISSING" $fDump +grep -q "particleBackscatterCoefficient=MISSING" $fDump +grep -q "particleBackscatterCoefficient1=MISSING" $fDump +grep -q "particleExtinctionCoefficient=MISSING" $fDump +grep -q "particleExtinctionCoefficient1=MISSING" $fDump +grep -q "particleLidarRatio=MISSING" $fDump +grep -q "particleLidarRatio1=MISSING" $fDump +grep -q "uncertaintyInLidarRatio=MISSING" $fDump +grep -q "uncertaintyInLidarRatio1=MISSING" $fDump +grep -q "particleDepolarizationRatio=MISSING" $fDump +grep -q "particleDepolarizationRatio1=MISSING" $fDump +grep -q "scalingVectorMultiplyingTheAPrioriVectorInOrderToDefineTheRetrievedVector=MISSING" $fDump +set +e +# The old name should not be there +grep -q "scalingVectorMultiplyingTheAPrioriCoVectorInOrderToDefineTheRetrievedCoVector" $fDump +status=$? +set -e +[ $status -eq 1 ] -rm -f $fTmp + +rm -f $fTmp $fRules $fDump From 1d893380f3f6da34194584eecd42e0bc1b8b6b9c Mon Sep 17 00:00:00 2001 From: Marijana Crepulja Date: Wed, 2 Dec 2020 13:59:20 +0000 Subject: [PATCH 174/683] ECC1175: Local tabels in support to CloudSat and CALIPSO data --- .../bufr/tables/0/local/4/98/0/codetables/21194.table | 4 ++++ definitions/bufr/tables/0/local/4/98/0/element.table | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 definitions/bufr/tables/0/local/4/98/0/codetables/21194.table diff --git a/definitions/bufr/tables/0/local/4/98/0/codetables/21194.table b/definitions/bufr/tables/0/local/4/98/0/codetables/21194.table new file mode 100644 index 000000000..ecdea24d5 --- /dev/null +++ b/definitions/bufr/tables/0/local/4/98/0/codetables/21194.table @@ -0,0 +1,4 @@ +0 0 SURFACE +1 1 CLOUD +2 2 UNCLASSIFIED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/local/4/98/0/element.table b/definitions/bufr/tables/0/local/4/98/0/element.table index dd2b5b2f3..64518fc31 100755 --- a/definitions/bufr/tables/0/local/4/98/0/element.table +++ b/definitions/bufr/tables/0/local/4/98/0/element.table @@ -6,3 +6,11 @@ 025202|altimeterTrackingMode|table|Altimeter Tracking Mode|CODE TABLE|0|0|8|Code table|0|3 025203|seaIceFreeboard|double|Sea Ice Freeboard|m|3|-131072|18|m|3|6 033192|psBiasCorrection|double|Surface Pressure Bias Correction|Numeric|2|-300000|19 +021192|cloudRadarReflectivity|double|Cloud Radar reflectivity|dbZ|2|-9000|15|NA|0|0 +021193|cloudRadarReflectivityUncertainty|double|Cloud Radar Reflectivity Uncertainty|dB|2|-9000|15|NA|0|0 +021194|dataClassificationType|long|Radar Data Classification Type|Numeric|0|0|8 +021195|cloudFraction|double|Cloud Fraction|Numeric|3|0|11 +021196|standardDeviationOfCloudReflectivity|double|Standard Deviation Of Cloud Reflectivity|dB|2|0|14 +021197|height|long|Hight|m|0|-5000|18 +021198|standardDeviationOfAttenuatedBackscatter|long|Standard Deviation Of Attenuated Backscatter|M-1SR-1|2|0|14 +021199|standardDeviationOfExtinctionCoefficient|long|Standard Deviation Of Extinction Coefficient|M-1|2|0|14 From 8e8012901ad59b9facef7256868c813bdf5ab527 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 3 Dec 2020 21:08:00 +0000 Subject: [PATCH 175/683] ECC-1168: Add new templates in v26.0.0 --- definitions/grib2/template.4.47.def | 1 + definitions/grib2/template.4.76.def | 8 ----- definitions/grib2/template.4.77.def | 8 ----- definitions/grib2/template.4.78.def | 8 ----- definitions/grib2/template.4.79.def | 8 ----- definitions/grib2/template.4.83.def | 8 +---- definitions/grib2/template.4.84.def | 7 ++++ definitions/grib2/template.4.85.def | 7 ++++ src/grib_util.c | 53 +++++++++++++++-------------- 9 files changed, 44 insertions(+), 64 deletions(-) create mode 100644 definitions/grib2/template.4.84.def create mode 100644 definitions/grib2/template.4.85.def diff --git a/definitions/grib2/template.4.47.def b/definitions/grib2/template.4.47.def index e60c219ee..05a081a24 100644 --- a/definitions/grib2/template.4.47.def +++ b/definitions/grib2/template.4.47.def @@ -1,6 +1,7 @@ # (C) Copyright 2005- ECMWF. # TEMPLATE 4.47, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# Note: This template is deprecated. Template 4.85 should be used instead. include "grib2/template.4.parameter_aerosol.def" include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.76.def b/definitions/grib2/template.4.76.def index 59f0b1985..7de36ca77 100644 --- a/definitions/grib2/template.4.76.def +++ b/definitions/grib2/template.4.76.def @@ -1,14 +1,6 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 4.76, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source/sink - include "grib2/template.4.parameter_chemical_source.def"; include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def"; diff --git a/definitions/grib2/template.4.77.def b/definitions/grib2/template.4.77.def index f51fbb1ab..61b91b988 100644 --- a/definitions/grib2/template.4.77.def +++ b/definitions/grib2/template.4.77.def @@ -1,14 +1,6 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 4.77, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with a source/sink - include "grib2/template.4.parameter_chemical_source.def" include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.78.def b/definitions/grib2/template.4.78.def index a6eeb401c..582d30e19 100644 --- a/definitions/grib2/template.4.78.def +++ b/definitions/grib2/template.4.78.def @@ -1,14 +1,6 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 4.78, Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink - include "grib2/template.4.parameter_chemical_source.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.79.def b/definitions/grib2/template.4.79.def index 66be3acca..f77ce8798 100644 --- a/definitions/grib2/template.4.79.def +++ b/definitions/grib2/template.4.79.def @@ -1,14 +1,6 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 4.79, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink - include "grib2/template.4.parameter_chemical_source.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" diff --git a/definitions/grib2/template.4.83.def b/definitions/grib2/template.4.83.def index ebf1b6453..372549919 100644 --- a/definitions/grib2/template.4.83.def +++ b/definitions/grib2/template.4.83.def @@ -1,13 +1,7 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 4.83, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval with source/sink +# Note: This template is deprecated. Template 4.84 should be used instead. include "grib2/template.4.parameter_aerosol_source.def" include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.84.def b/definitions/grib2/template.4.84.def new file mode 100644 index 000000000..1463d22af --- /dev/null +++ b/definitions/grib2/template.4.84.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.84, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink +include "grib2/template.4.parameter_aerosol_source.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.85.def b/definitions/grib2/template.4.85.def new file mode 100644 index 000000000..0a41b3239 --- /dev/null +++ b/definitions/grib2/template.4.85.def @@ -0,0 +1,7 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.85, individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +include "grib2/template.4.parameter_aerosol.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.statistical.def" diff --git a/src/grib_util.c b/src/grib_util.c index 68c50e0af..191be20fe 100644 --- a/src/grib_util.c +++ b/src/grib_util.c @@ -1996,58 +1996,61 @@ int parse_keyval_string(const char* grib_tool, } /* Return 1 if the productDefinitionTemplateNumber (GRIB2) is related to EPS */ -int grib2_is_PDTN_EPS(long productDefinitionTemplateNumber) +int grib2_is_PDTN_EPS(long pdtn) { return ( - productDefinitionTemplateNumber == 1 || productDefinitionTemplateNumber == 11 || - productDefinitionTemplateNumber == 33 || productDefinitionTemplateNumber == 34 || /*simulated (synthetic) satellite data*/ - productDefinitionTemplateNumber == 41 || productDefinitionTemplateNumber == 43 || /*atmospheric chemical constituents*/ - productDefinitionTemplateNumber == 45 || productDefinitionTemplateNumber == 47 /*aerosols*/ + pdtn == 1 || pdtn == 11 || + pdtn == 33 || pdtn == 34 || /*simulated (synthetic) satellite data*/ + pdtn == 41 || pdtn == 43 || /*atmospheric chemical constituents*/ + pdtn == 45 || pdtn == 47 || pdtn == 85 /*aerosols*/ ); } /* Return 1 if the productDefinitionTemplateNumber (GRIB2) is for atmospheric chemical constituents */ -int grib2_is_PDTN_Chemical(long productDefinitionTemplateNumber) +int grib2_is_PDTN_Chemical(long pdtn) { return ( - productDefinitionTemplateNumber == 40 || - productDefinitionTemplateNumber == 41 || - productDefinitionTemplateNumber == 42 || - productDefinitionTemplateNumber == 43); + pdtn == 40 || + pdtn == 41 || + pdtn == 42 || + pdtn == 43); } /* Return 1 if the productDefinitionTemplateNumber (GRIB2) is for * atmospheric chemical constituents based on a distribution function */ -int grib2_is_PDTN_ChemicalDistFunc(long productDefinitionTemplateNumber) +int grib2_is_PDTN_ChemicalDistFunc(long pdtn) { return ( - productDefinitionTemplateNumber == 57 || - productDefinitionTemplateNumber == 58 || - productDefinitionTemplateNumber == 67 || - productDefinitionTemplateNumber == 68); + pdtn == 57 || + pdtn == 58 || + pdtn == 67 || + pdtn == 68); } /* Return 1 if the productDefinitionTemplateNumber (GRIB2) is for aerosols */ -int grib2_is_PDTN_Aerosol(long productDefinitionTemplateNumber) +int grib2_is_PDTN_Aerosol(long pdtn) { + /* Notes: PDT 44 is deprecated and replaced by 48 */ + /* PDT 47 is deprecated and replaced by 85 */ return ( - productDefinitionTemplateNumber == 44 || /* Note: PDT 44 is deprecated. Use 48 instead */ - productDefinitionTemplateNumber == 48 || - productDefinitionTemplateNumber == 49 || - productDefinitionTemplateNumber == 45 || - productDefinitionTemplateNumber == 46 || - productDefinitionTemplateNumber == 47); + pdtn == 44 || + pdtn == 48 || + pdtn == 49 || + pdtn == 45 || + pdtn == 46 || + pdtn == 47 || + pdtn == 85); } /* Return 1 if the productDefinitionTemplateNumber (GRIB2) is for optical properties of aerosol */ -int grib2_is_PDTN_AerosolOptical(long productDefinitionTemplateNumber) +int grib2_is_PDTN_AerosolOptical(long pdtn) { /* Note: PDT 48 can be used for both plain aerosols as well as optical properties of aerosol. * For the former user must set the optical wavelength range to missing. */ return ( - productDefinitionTemplateNumber == 48 || - productDefinitionTemplateNumber == 49); + pdtn == 48 || + pdtn == 49); } /* Given some information about the type of grib2 parameter, return the productDefinitionTemplateNumber to use. From 0e1912c404875a1b6ee23db36d46e8537cb0cfdc Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 4 Dec 2020 16:07:50 +0000 Subject: [PATCH 176/683] ORCA grids: concept should fail if value is incorrect --- .../grib2/localConcepts/ecmf/unstructuredGrid.def | 6 +++--- tests/grib_grid_unstructured.sh | 12 ++++++++++++ 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def b/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def index 83ec848ad..cb8f6eb82 100644 --- a/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def +++ b/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def @@ -1,9 +1,9 @@ # ECMWF Unstructured Grid Mapping -concept_nofail unstructuredGridType(unknown,"unstructuredGridType.def",conceptsLocalDirAll,conceptsMasterDir); +concept unstructuredGridType(unknown,"unstructuredGridType.def",conceptsLocalDirAll,conceptsMasterDir); -concept_nofail unstructuredGridSubtype(unknown,"unstructuredGridSubtype.def",conceptsLocalDirAll,conceptsMasterDir); +concept unstructuredGridSubtype(unknown,"unstructuredGridSubtype.def",conceptsLocalDirAll,conceptsMasterDir); -concept_nofail unstructuredGridUUID(unknown,"unstructuredGridUUID.def",conceptsLocalDirAll,conceptsMasterDir); +concept unstructuredGridUUID(unknown,"unstructuredGridUUID.def",conceptsLocalDirAll,conceptsMasterDir); meta gridName sprintf("%s_%s",unstructuredGridType,unstructuredGridSubtype); diff --git a/tests/grib_grid_unstructured.sh b/tests/grib_grid_unstructured.sh index 8bf7d316d..68dbcf057 100755 --- a/tests/grib_grid_unstructured.sh +++ b/tests/grib_grid_unstructured.sh @@ -27,8 +27,20 @@ ${tools_dir}/grib_set -s gridType=unstructured_grid,unstructuredGridType=ORCA1,u ${tools_dir}/grib_compare $temp1 $temp2 grib_check_key_equals $temp2 'numberOfGridInReference,numberOfGridUsed,gridName' '4 2 ORCA1_W' +# Test bad values +# --------------- +${tools_dir}/grib_set -s gridType=unstructured_grid $sample $temp1 +set +e +${tools_dir}/grib_set -s unstructuredGridType=bad $temp1 $temp2 2>/dev/null +status1=$? +${tools_dir}/grib_set -s unstructuredGridSubtype=sad $temp1 $temp2 2>/dev/null +status2=$? +set -e +[ $status1 -ne 0 ] +[ $status2 -ne 0 ] # Test some lat/lon parameters +# ----------------------------- ${tools_dir}/grib_set -s paramId=250003 $sample $temp1 grib_check_key_equals $temp1 'unstructuredGridSubtype' 'T' From 971f609560d68065d2a630c3e4fe08f9d83543a7 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 4 Dec 2020 16:10:03 +0000 Subject: [PATCH 177/683] Refactoring (in preparation for ECC-1164) --- src/deprecated/grib_nearest_class_reduced.old | 142 +++++++++++++++++ src/grib_nearest_class_reduced.c | 144 +----------------- 2 files changed, 147 insertions(+), 139 deletions(-) create mode 100644 src/deprecated/grib_nearest_class_reduced.old diff --git a/src/deprecated/grib_nearest_class_reduced.old b/src/deprecated/grib_nearest_class_reduced.old new file mode 100644 index 000000000..420f9cb6d --- /dev/null +++ b/src/deprecated/grib_nearest_class_reduced.old @@ -0,0 +1,142 @@ +#error This is the old way. Kept here for posterity + +static int find(grib_nearest* nearest, grib_handle* h, + double inlat, double inlon, unsigned long flags, + double* outlats, double* outlons, double* values, + double* distances, double* distances, int* indexes, size_t* len) +{ + grib_nearest_reduced* self = (grib_nearest_reduced*)nearest; + int ret = 0, kk = 0, ii = 0, jj = 0; + double* pl = NULL; + int ilat; + size_t nvalues = 0; + if (!nearest->h || (flags & GRIB_NEAREST_SAME_DATA) == 0 || nearest->h != h) { + grib_iterator* iter = NULL; + double lat = 0, lon = 0; + + if ((ret = grib_get_size(h, self->values_key, &nvalues)) != GRIB_SUCCESS) + return ret; + nearest->values_count = nvalues; + if (nearest->values) + grib_context_free(nearest->context, nearest->values); + nearest->values = grib_context_malloc(h->context, nvalues * sizeof(double)); + if (!nearest->values) + return GRIB_OUT_OF_MEMORY; + + ret = grib_get_double_array_internal(h, self->values_key, + nearest->values, &(nearest->values_count)); + if (ret != GRIB_SUCCESS) + grib_context_log(nearest->context, GRIB_LOG_ERROR, + "nearest: unable to get values array"); + + /* Compute lat/lon info, create iterator etc if it's the 1st time or different grid. + * This is for performance: if the grid has not changed, we only do this once + * and reuse for other messages + */ + if (!nearest->h || (flags & GRIB_NEAREST_SAME_GRID) == 0) { + double dummy = 0; + double olat = 1.e10; + ilat = 0, ilon = 0; + long n = 0; + + if (grib_is_missing(h, self->Nj, &ret)) { + grib_context_log(h->context, GRIB_LOG_DEBUG, "Key '%s' is missing", self->Nj); + return ret ? ret : GRIB_GEOCALCULUS_PROBLEM; + } + + if ((ret = grib_get_long(h, self->Nj, &n)) != GRIB_SUCCESS) + return ret; + self->lats_count = n; + + if (self->lats) + grib_context_free(nearest->context, self->lats); + self->lats = grib_context_malloc(nearest->context, + self->lats_count * sizeof(double)); + if (!self->lats) + return GRIB_OUT_OF_MEMORY; + + if (self->lons) + grib_context_free(nearest->context, self->lons); + self->lons = grib_context_malloc(nearest->context, + nearest->values_count * sizeof(double)); + if (!self->lons) + return GRIB_OUT_OF_MEMORY; + + iter = grib_iterator_new(h, 0, &ret); + while (grib_iterator_next(iter, &lat, &lon, &dummy)) { + if (olat != lat) { + self->lats[ilat++] = lat; + olat = lat; + } + self->lons[ilon++] = lon; + } + grib_iterator_delete(iter); + } + nearest->h = h; + } + + if (!self->distances || (flags & GRIB_NEAREST_SAME_POINT) == 0 || (flags & GRIB_NEAREST_SAME_GRID) == 0) { + double* lons = NULL; + int nlon = 0; + int plsize = 0; + + self->distances = (double*)grib_context_malloc(nearest->context, 4 * sizeof(double)); + if (!self->distances) + return GRIB_OUT_OF_MEMORY; + + grib_binary_search(self->lats, self->lats_count - 1, inlat, + &(self->j[0]), &(self->j[1])); + + plsize = self->lats_count; + pl = (double*)grib_context_malloc(h->context, plsize * sizeof(double)); + if (!pl) + return GRIB_OUT_OF_MEMORY; + if ((ret = grib_get_double_array(h, "pl", pl, &plsize)) != GRIB_SUCCESS) + return ret; + + nlon = 0; + for (jj = 0; jj < self->j[0]; jj++) { + nlon += pl[jj]; + } + lons = self->lons + nlon; + grib_binary_search(lons, pl[self->j[0]] - 1, inlon, + &(self->k[0]), &(self->k[1])); + self->k[0] += nlon; + self->k[1] += nlon; + + nlon = 0; + for (jj = 0; jj < self->j[1]; jj++) { + nlon += pl[jj]; + } + lons = self->lons + nlon; + grib_binary_search(lons, pl[self->j[1]] - 1, inlon, + &(self->k[2]), &(self->k[3])); + self->k[2] += nlon; + self->k[3] += nlon; + + kk = 0; + for (ii = 0; ii < 2; ii++) { + for (jj = 0; jj < 2; jj++) { + self->distances[kk] = geographic_distance_spherical(radius, inlon, inlat, + self->lons[self->k[kk]], self->lats[self->j[jj]]); + kk++; + } + } + + grib_context_free(h->context, pl); + } + + kk = 0; + for (ii = 0; ii < 2; ii++) { + for (jj = 0; jj < 2; jj++) { + distances[kk] = self->distances[kk]; + outlats[kk] = self->lats[self->j[jj]]; + outlons[kk] = self->lons[self->k[kk]]; + values[kk] = nearest->values[self->k[kk]]; + indexes[kk] = self->k[kk]; + kk++; + } + } + + return GRIB_SUCCESS; +} diff --git a/src/grib_nearest_class_reduced.c b/src/grib_nearest_class_reduced.c index 6b5c0b119..9ea6dc62b 100644 --- a/src/grib_nearest_class_reduced.c +++ b/src/grib_nearest_class_reduced.c @@ -132,7 +132,7 @@ static int is_legacy(grib_handle* h) return (grib_get_long(h, "legacyGaussSubarea", &is_legacy) == GRIB_SUCCESS && is_legacy == 1); } -#if 1 +/* Old implementation in src/deprecated/grib_nearest_class_reduced.old */ static int find(grib_nearest* nearest, grib_handle* h, double inlat, double inlon, unsigned long flags, double* outlats, double* outlons, double* values, @@ -221,6 +221,10 @@ static int find(grib_nearest* nearest, grib_handle* h, } nearest->h = h; + /* Compute distances if it's the 1st time or different point or different grid. + * This is for performance: if the grid and the input point have not changed + * we only do this once and reuse for other messages + */ if (!self->distances || (flags & GRIB_NEAREST_SAME_POINT) == 0 || (flags & GRIB_NEAREST_SAME_GRID) == 0) { double* lons = NULL; int nlon = 0; @@ -434,144 +438,6 @@ static int find(grib_nearest* nearest, grib_handle* h, return GRIB_SUCCESS; } -#else -static int find(grib_nearest* nearest, grib_handle* h, - double inlat, double inlon, unsigned long flags, - double* outlats, double* outlons, double* values, - double* distances, double* distances, int* indexes, size_t* len) -{ - grib_nearest_reduced* self = (grib_nearest_reduced*)nearest; - int ret = 0, kk = 0, ii = 0, jj = 0; - double* pl = NULL; - int ilat; - size_t nvalues = 0; - if (!nearest->h || (flags & GRIB_NEAREST_SAME_DATA) == 0 || nearest->h != h) { - grib_iterator* iter = NULL; - double lat = 0, lon = 0; - - if ((ret = grib_get_size(h, self->values_key, &nvalues)) != GRIB_SUCCESS) - return ret; - nearest->values_count = nvalues; - if (nearest->values) - grib_context_free(nearest->context, nearest->values); - nearest->values = grib_context_malloc(h->context, nvalues * sizeof(double)); - if (!nearest->values) - return GRIB_OUT_OF_MEMORY; - - ret = grib_get_double_array_internal(h, self->values_key, - nearest->values, &(nearest->values_count)); - if (ret != GRIB_SUCCESS) - grib_context_log(nearest->context, GRIB_LOG_ERROR, - "nearest: unable to get values array"); - - if (!nearest->h || (flags & GRIB_NEAREST_SAME_GRID) == 0) { - double dummy = 0; - double olat = 1.e10; - ilat = 0, ilon = 0; - long n = 0; - - if (grib_is_missing(h, self->Nj, &ret)) { - grib_context_log(h->context, GRIB_LOG_DEBUG, "Key '%s' is missing", self->Nj); - return ret ? ret : GRIB_GEOCALCULUS_PROBLEM; - } - - if ((ret = grib_get_long(h, self->Nj, &n)) != GRIB_SUCCESS) - return ret; - self->lats_count = n; - - if (self->lats) - grib_context_free(nearest->context, self->lats); - self->lats = grib_context_malloc(nearest->context, - self->lats_count * sizeof(double)); - if (!self->lats) - return GRIB_OUT_OF_MEMORY; - - if (self->lons) - grib_context_free(nearest->context, self->lons); - self->lons = grib_context_malloc(nearest->context, - nearest->values_count * sizeof(double)); - if (!self->lons) - return GRIB_OUT_OF_MEMORY; - - iter = grib_iterator_new(h, 0, &ret); - while (grib_iterator_next(iter, &lat, &lon, &dummy)) { - if (olat != lat) { - self->lats[ilat++] = lat; - olat = lat; - } - self->lons[ilon++] = lon; - } - grib_iterator_delete(iter); - } - nearest->h = h; - } - - if (!self->distances || (flags & GRIB_NEAREST_SAME_POINT) == 0 || (flags & GRIB_NEAREST_SAME_GRID) == 0) { - double* lons = NULL; - int nlon = 0; - int plsize = 0; - - self->distances = (double*)grib_context_malloc(nearest->context, 4 * sizeof(double)); - if (!self->distances) - return GRIB_OUT_OF_MEMORY; - - grib_binary_search(self->lats, self->lats_count - 1, inlat, - &(self->j[0]), &(self->j[1])); - - plsize = self->lats_count; - pl = (double*)grib_context_malloc(h->context, plsize * sizeof(double)); - if (!pl) - return GRIB_OUT_OF_MEMORY; - if ((ret = grib_get_double_array(h, "pl", pl, &plsize)) != GRIB_SUCCESS) - return ret; - - nlon = 0; - for (jj = 0; jj < self->j[0]; jj++) { - nlon += pl[jj]; - } - lons = self->lons + nlon; - grib_binary_search(lons, pl[self->j[0]] - 1, inlon, - &(self->k[0]), &(self->k[1])); - self->k[0] += nlon; - self->k[1] += nlon; - - nlon = 0; - for (jj = 0; jj < self->j[1]; jj++) { - nlon += pl[jj]; - } - lons = self->lons + nlon; - grib_binary_search(lons, pl[self->j[1]] - 1, inlon, - &(self->k[2]), &(self->k[3])); - self->k[2] += nlon; - self->k[3] += nlon; - - kk = 0; - for (ii = 0; ii < 2; ii++) { - for (jj = 0; jj < 2; jj++) { - self->distances[kk] = geographic_distance_spherical(radius, inlon, inlat, - self->lons[self->k[kk]], self->lats[self->j[jj]]); - kk++; - } - } - - grib_context_free(h->context, pl); - } - - kk = 0; - for (ii = 0; ii < 2; ii++) { - for (jj = 0; jj < 2; jj++) { - distances[kk] = self->distances[kk]; - outlats[kk] = self->lats[self->j[jj]]; - outlons[kk] = self->lons[self->k[kk]]; - values[kk] = nearest->values[self->k[kk]]; - indexes[kk] = self->k[kk]; - kk++; - } - } - - return GRIB_SUCCESS; -} -#endif static int destroy(grib_nearest* nearest) { From 983df5bcf7b92e0da3dc39bbc08a0cebead4cbc5 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 4 Dec 2020 17:09:06 +0000 Subject: [PATCH 178/683] ECC-1177: Update GRIB2 definition of paramater 238 --- definitions/grib2/cfName.def | 6 ++++++ definitions/grib2/cfVarName.def | 6 ++++++ definitions/grib2/localConcepts/ecmf/cfName.def | 6 ------ definitions/grib2/localConcepts/ecmf/cfName.legacy.def | 6 ++++++ definitions/grib2/localConcepts/ecmf/cfVarName.def | 6 ------ definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def | 6 ++++++ definitions/grib2/localConcepts/ecmf/name.def | 6 ------ definitions/grib2/localConcepts/ecmf/name.legacy.def | 6 ++++++ definitions/grib2/localConcepts/ecmf/paramId.def | 6 ------ definitions/grib2/localConcepts/ecmf/paramId.legacy.def | 6 ++++++ definitions/grib2/localConcepts/ecmf/shortName.def | 6 ------ definitions/grib2/localConcepts/ecmf/shortName.legacy.def | 6 ++++++ definitions/grib2/localConcepts/ecmf/units.def | 6 ------ definitions/grib2/localConcepts/ecmf/units.legacy.def | 6 ++++++ definitions/grib2/name.def | 6 ++++++ definitions/grib2/paramId.def | 6 ++++++ definitions/grib2/shortName.def | 6 ++++++ definitions/grib2/units.def | 6 ++++++ 18 files changed, 72 insertions(+), 36 deletions(-) diff --git a/definitions/grib2/cfName.def b/definitions/grib2/cfName.def index 452238edc..9e55439c1 100644 --- a/definitions/grib2/cfName.def +++ b/definitions/grib2/cfName.def @@ -55,6 +55,12 @@ typeOfFirstFixedSurface = 1 ; typeOfStatisticalProcessing = 1 ; } +#Temperature of snow layer +'temperature_in_surface_snow' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + } #Snow depth 'lwe_thickness_of_surface_snow_amount' = { discipline = 0 ; diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index b70a2e173..0a07feaa4 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -301,6 +301,12 @@ typeOfFirstFixedSurface = 1 ; typeOfStatisticalProcessing = 1 ; } +#Temperature of snow layer +'tsn' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + } #Specific cloud liquid water content 'clwc' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/ecmf/cfName.def b/definitions/grib2/localConcepts/ecmf/cfName.def index 3ee7e3634..713d4ea17 100644 --- a/definitions/grib2/localConcepts/ecmf/cfName.def +++ b/definitions/grib2/localConcepts/ecmf/cfName.def @@ -79,12 +79,6 @@ parameterCategory = 128 ; parameterNumber = 206 ; } -#Temperature of snow layer -'temperature_in_surface_snow' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; - } #Particulate matter d < 1 um 'mass_concentration_of_pm1_ambient_aerosol_particles_in_air' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/cfName.legacy.def b/definitions/grib2/localConcepts/ecmf/cfName.legacy.def index 41d1e2f0c..2882a4746 100644 --- a/definitions/grib2/localConcepts/ecmf/cfName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/cfName.legacy.def @@ -46,3 +46,9 @@ parameterCategory = 128 ; parameterNumber = 178 ; } +#Temperature of snow layer +'temperature_in_surface_snow' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.def b/definitions/grib2/localConcepts/ecmf/cfVarName.def index 8c5f462f3..113ceb826 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.def @@ -1103,12 +1103,6 @@ parameterCategory = 128 ; parameterNumber = 237 ; } -#Temperature of snow layer -'tsn' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; - } #Convective snowfall 'csf' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def index 51377ca9d..442a0d34c 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def @@ -136,3 +136,9 @@ parameterCategory = 128 ; parameterNumber = 178 ; } +#Temperature of snow layer +'tsn' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/name.def b/definitions/grib2/localConcepts/ecmf/name.def index 6b2e9794b..eabef9fa5 100644 --- a/definitions/grib2/localConcepts/ecmf/name.def +++ b/definitions/grib2/localConcepts/ecmf/name.def @@ -1103,12 +1103,6 @@ parameterCategory = 128 ; parameterNumber = 237 ; } -#Temperature of snow layer -'Temperature of snow layer' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; - } #Convective snowfall 'Convective snowfall' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/name.legacy.def b/definitions/grib2/localConcepts/ecmf/name.legacy.def index 2bc9c38da..6421ee84b 100644 --- a/definitions/grib2/localConcepts/ecmf/name.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/name.legacy.def @@ -136,3 +136,9 @@ parameterCategory = 128 ; parameterNumber = 178 ; } +#Temperature of snow layer +'Temperature of snow layer' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/paramId.def b/definitions/grib2/localConcepts/ecmf/paramId.def index 1523ff8d0..bba71a6d7 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.def @@ -1103,12 +1103,6 @@ parameterCategory = 128 ; parameterNumber = 237 ; } -#Temperature of snow layer -'238' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; - } #Convective snowfall '239' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def index c20d87664..c1667d232 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def @@ -136,3 +136,9 @@ parameterCategory = 128 ; parameterNumber = 178 ; } +#Temperature of snow layer +'238' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/shortName.def b/definitions/grib2/localConcepts/ecmf/shortName.def index b1cd12160..129a268d8 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.def @@ -1103,12 +1103,6 @@ parameterCategory = 128 ; parameterNumber = 237 ; } -#Temperature of snow layer -'tsn' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; - } #Convective snowfall 'csf' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def index cad6d54bb..524fdb65f 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def @@ -136,3 +136,9 @@ parameterCategory = 128 ; parameterNumber = 178 ; } +#Temperature of snow layer +'tsn' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/units.def b/definitions/grib2/localConcepts/ecmf/units.def index 831370a98..fa2e1ac0f 100644 --- a/definitions/grib2/localConcepts/ecmf/units.def +++ b/definitions/grib2/localConcepts/ecmf/units.def @@ -1103,12 +1103,6 @@ parameterCategory = 128 ; parameterNumber = 237 ; } -#Temperature of snow layer -'K' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 238 ; - } #Convective snowfall 'm of water equivalent' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/units.legacy.def b/definitions/grib2/localConcepts/ecmf/units.legacy.def index e49265144..3319bcc9a 100644 --- a/definitions/grib2/localConcepts/ecmf/units.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/units.legacy.def @@ -136,3 +136,9 @@ parameterCategory = 128 ; parameterNumber = 178 ; } +#Temperature of snow layer +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 238 ; +} diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index d6cdd8695..e808c10aa 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -301,6 +301,12 @@ typeOfFirstFixedSurface = 1 ; typeOfStatisticalProcessing = 1 ; } +#Temperature of snow layer +'Temperature of snow layer' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + } #Specific cloud liquid water content 'Specific cloud liquid water content' = { discipline = 0 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index e78764a0b..f5b50c9f0 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -301,6 +301,12 @@ typeOfFirstFixedSurface = 1 ; typeOfStatisticalProcessing = 1 ; } +#Temperature of snow layer +'238' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + } #Specific cloud liquid water content '246' = { discipline = 0 ; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index d041e10f8..fd3db0743 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -301,6 +301,12 @@ typeOfFirstFixedSurface = 1 ; typeOfStatisticalProcessing = 1 ; } +#Temperature of snow layer +'tsn' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + } #Specific cloud liquid water content 'clwc' = { discipline = 0 ; diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index fa6728e4c..45c722caa 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -301,6 +301,12 @@ typeOfFirstFixedSurface = 1 ; typeOfStatisticalProcessing = 1 ; } +#Temperature of snow layer +'K' = { + discipline = 2 ; + parameterCategory = 3 ; + parameterNumber = 28 ; + } #Specific cloud liquid water content 'kg kg**-1' = { discipline = 0 ; From 83ad95218c4eb524d445465e8c7e819654a4b34e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 5 Dec 2020 17:24:00 +0000 Subject: [PATCH 179/683] ECC-1164: grib_nearest_find performance (reduced grids) --- src/grib_nearest_class_reduced.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/grib_nearest_class_reduced.c b/src/grib_nearest_class_reduced.c index a0bfe5158..95d17463f 100644 --- a/src/grib_nearest_class_reduced.c +++ b/src/grib_nearest_class_reduced.c @@ -28,6 +28,7 @@ MEMBERS = long global MEMBERS = double lon_first MEMBERS = double lon_last + MEMBERS = int legacy END_CLASS_DEF */ @@ -68,6 +69,7 @@ typedef struct grib_nearest_reduced long global; double lon_first; double lon_last; + int legacy; /* -1, 0 or 1 */ } grib_nearest_reduced; extern grib_nearest_class* grib_nearest_class_gen; @@ -97,6 +99,7 @@ static int init(grib_nearest* nearest, grib_handle* h, grib_arguments* args) self->Nj = grib_arguments_get_name(h, args, self->cargs++); self->pl = grib_arguments_get_name(h, args, self->cargs++); self->j = (int*)grib_context_malloc(h->context, 2 * sizeof(int)); + self->legacy = -1; if (!self->j) return GRIB_OUT_OF_MEMORY; self->k = (int*)grib_context_malloc(nearest->context, 4 * sizeof(int)); @@ -148,15 +151,12 @@ static int find(grib_nearest* nearest, grib_handle* h, long iradius; double radius; int ilat = 0, ilon = 0; - static int s_is_legacy = -1; - - if (s_is_legacy < 0 || !(flags & GRIB_NEAREST_SAME_GRID)) { - s_is_legacy = is_legacy(h); - } - - const int is_legacy_grib = s_is_legacy; get_reduced_row_proc get_reduced_row_func = &grib_get_reduced_row; - if (is_legacy_grib) { + + if (self->legacy == -1 || (flags & GRIB_NEAREST_SAME_GRID) == 0) { + self->legacy = is_legacy(h); + } + if (self->legacy == 1) { get_reduced_row_func = &grib_get_reduced_row_legacy; } @@ -216,7 +216,7 @@ static int find(grib_nearest* nearest, grib_handle* h, while (lon > 360) lon -= 360; if (!self->global) { /* ECC-756 */ - if (!is_legacy_grib) /*TODO*/ + if (self->legacy == 0) /*TODO*/ if (lon > 180 && lon < 360) lon -= 360; } @@ -244,7 +244,7 @@ static int find(grib_nearest* nearest, grib_handle* h, } else { /* TODO: Experimental */ - if (!is_legacy_grib) + if (self->legacy == 0) if (inlon > 180 && inlon < 360) inlon -= 360; } From 352f65852a5a5479c749b43a23136c47767ede70 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 5 Dec 2020 17:33:53 +0000 Subject: [PATCH 180/683] ECC-1164: clean up and comments --- src/grib_nearest_class_reduced.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/grib_nearest_class_reduced.c b/src/grib_nearest_class_reduced.c index 95d17463f..2a2235d1e 100644 --- a/src/grib_nearest_class_reduced.c +++ b/src/grib_nearest_class_reduced.c @@ -69,7 +69,7 @@ typedef struct grib_nearest_reduced long global; double lon_first; double lon_last; - int legacy; /* -1, 0 or 1 */ + int legacy; /* -1, 0 or 1 */ } grib_nearest_reduced; extern grib_nearest_class* grib_nearest_class_gen; @@ -99,7 +99,7 @@ static int init(grib_nearest* nearest, grib_handle* h, grib_arguments* args) self->Nj = grib_arguments_get_name(h, args, self->cargs++); self->pl = grib_arguments_get_name(h, args, self->cargs++); self->j = (int*)grib_context_malloc(h->context, 2 * sizeof(int)); - self->legacy = -1; + self->legacy = -1; if (!self->j) return GRIB_OUT_OF_MEMORY; self->k = (int*)grib_context_malloc(nearest->context, 4 * sizeof(int)); @@ -173,6 +173,9 @@ static int find(grib_nearest* nearest, grib_handle* h, return ret; radius = ((double)iradius) / 1000.0; + /* Compute lat/lon info, create iterator etc if it's the 1st time or different grid. + * This is for performance: if the grid has not changed, we only do this once + * and reuse for other messages */ if (!nearest->h || (flags & GRIB_NEAREST_SAME_GRID) == 0) { double dummy = 0; double olat = 1.e10; @@ -215,7 +218,7 @@ static int find(grib_nearest* nearest, grib_handle* h, } while (lon > 360) lon -= 360; - if (!self->global) { /* ECC-756 */ + if (!self->global) { /* ECC-756 */ if (self->legacy == 0) /*TODO*/ if (lon > 180 && lon < 360) lon -= 360; @@ -229,8 +232,7 @@ static int find(grib_nearest* nearest, grib_handle* h, /* Compute distances if it's the 1st time or different point or different grid. * This is for performance: if the grid and the input point have not changed - * we only do this once and reuse for other messages - */ + * we only do this once and reuse for other messages */ if (!self->distances || (flags & GRIB_NEAREST_SAME_POINT) == 0 || (flags & GRIB_NEAREST_SAME_GRID) == 0) { double* lons = NULL; int nlon = 0; @@ -420,7 +422,7 @@ static int find(grib_nearest* nearest, grib_handle* h, for (jj = 0; jj < 2; jj++) { for (ii = 0; ii < 2; ii++) { self->distances[kk] = geographic_distance_spherical(radius, inlon, inlat, - self->lons[self->k[kk]], self->lats[self->j[jj]]); + self->lons[self->k[kk]], self->lats[self->j[jj]]); kk++; } } From b60e717c598adf39be96f51216d6463ffbdb4576 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 7 Dec 2020 16:43:08 +0000 Subject: [PATCH 181/683] ECC-1136: Add to API --- src/bufr_util.c | 7 +++++++ src/grib_api.h | 1 + tests/bufr_extract_headers.sh | 7 ++++++- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/src/bufr_util.c b/src/bufr_util.c index 1161adf4c..2e4d6bfd6 100644 --- a/src/bufr_util.c +++ b/src/bufr_util.c @@ -195,6 +195,7 @@ static int bufr_decode_rdb_keys(const void* message, long offset_section2, codes hdr->rectimeHour = (long)grib_decode_unsigned_long(p, &start, 5); hdr->rectimeMinute = (long)grib_decode_unsigned_long(p, &start, 6); hdr->rectimeSecond = (long)grib_decode_unsigned_long(p, &start, 6); + hdr->restricted = (long)grib_decode_unsigned_long(p, &start, 1); hdr->qualityControl = (long)grib_decode_unsigned_long(pMessage, &pos_qualityControl, nbits_qualityControl); hdr->newSubtype = (long)grib_decode_unsigned_long(pMessage, &pos_newSubtype, nbits_newSubtype); @@ -1010,6 +1011,12 @@ int codes_bufr_header_get_string(codes_bufr_header* bh, const char* key, char* v else strcpy(val, NOT_FOUND); } + else if (strcmp(key, "restricted") == 0) { + if (isEcmwfLocal) + *len = sprintf(val, "%ld", bh->restricted); + else + strcpy(val, NOT_FOUND); + } else if (strcmp(key, "isSatellite") == 0) { if (isEcmwfLocal) *len = sprintf(val, "%ld", bh->isSatellite); diff --git a/src/grib_api.h b/src/grib_api.h index 75589cb79..58c91a72d 100644 --- a/src/grib_api.h +++ b/src/grib_api.h @@ -1636,6 +1636,7 @@ typedef struct codes_bufr_header long rectimeHour; long rectimeMinute; long rectimeSecond; + long restricted; long isSatellite; double localLongitude1; diff --git a/tests/bufr_extract_headers.sh b/tests/bufr_extract_headers.sh index 908f9ba29..17b16d600 100755 --- a/tests/bufr_extract_headers.sh +++ b/tests/bufr_extract_headers.sh @@ -203,7 +203,7 @@ tropical_cyclone.bufr tros_31.bufr " -KEYS='localLongitude1,localLatitude1,localLongitude2,localLatitude2,localNumberOfObservations,satelliteID' +KEYS='localLongitude1,localLatitude1,localLongitude2,localLatitude2,localNumberOfObservations,satelliteID,restricted' for bf in ${bufr_files}; do input=${data_dir}/bufr/$bf $EXEC ${test_dir}/bufr_extract_headers $KEYS $input > $temp1 @@ -211,6 +211,11 @@ for bf in ${bufr_files}; do diff $temp1 $temp2 done +# Test restricted +${tools_dir}/bufr_set -s restricted=1 ${data_dir}/bufr/aaen_55.bufr $temp1 +r=`$EXEC ${test_dir}/bufr_extract_headers restricted $temp1` +[ "$r" = "1" ] + echo "Test with invalid inputs..." # --------------------------------- From 32a74fa998afc85f7406f26cfc4d1349d1f20973 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 7 Dec 2020 17:33:52 +0000 Subject: [PATCH 182/683] ECC-1172: Memory leaks in encoding BUFR (part 1) --- src/grib_accessor_class_bufr_data_array.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/grib_accessor_class_bufr_data_array.c b/src/grib_accessor_class_bufr_data_array.c index 6733aaa22..ac96d0e15 100644 --- a/src/grib_accessor_class_bufr_data_array.c +++ b/src/grib_accessor_class_bufr_data_array.c @@ -1354,6 +1354,7 @@ static int encode_new_element(grib_context* c, grib_accessor_bufr_data_array* se } else { err = encode_string_value(c, buff, pos, bd, self, csval); + grib_context_free(c, csval); } } else { From c4eb5d620aa355648b15caedd5fc97f905fb128c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 8 Dec 2020 16:10:17 +0000 Subject: [PATCH 183/683] ECC-1178: Spurious trailing blank in codes_info -v --- tools/codes_info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/codes_info.c b/tools/codes_info.c index e6207793f..c333dccae 100644 --- a/tools/codes_info.c +++ b/tools/codes_info.c @@ -141,7 +141,7 @@ int main(int argc, char* argv[]) } if (print_flags & INFO_PRINT_VERSION) - printf("%d.%d.%d ", major, minor, revision); + printf("%d.%d.%d", major, minor, revision); if (print_flags & INFO_PRINT_DEFINITION_PATH) { if ((path = codes_getenv("ECCODES_DEFINITION_PATH")) != NULL) { From 085268256b1ac115369f24d706f4bce4d7c71b4b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 9 Dec 2020 15:54:35 +0000 Subject: [PATCH 184/683] Testing: missing keyword in bufr_filter --- tests/bufr_filter.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tests/bufr_filter.sh b/tests/bufr_filter.sh index ea67490ee..6afe9d46a 100755 --- a/tests/bufr_filter.sh +++ b/tests/bufr_filter.sh @@ -478,6 +478,19 @@ diff ${f}.ref ${f}.log rm -f ${f}.ref ${f}.log +#----------------------------------------------------------- +# Test: missing() functor +#----------------------------------------------------------- +cat > $fRules < Date: Thu, 10 Dec 2020 15:52:00 +0000 Subject: [PATCH 185/683] ECC-1179: bufr_copy/bufr_ls: Allow 'where' clause with Data Section keys --- tests/bufr_copy.sh | 33 ++++++++++++++++++++++----------- tools/grib_tools.c | 11 +++++++++++ 2 files changed, 33 insertions(+), 11 deletions(-) diff --git a/tests/bufr_copy.sh b/tests/bufr_copy.sh index d829994fd..1b5dbc36a 100755 --- a/tests/bufr_copy.sh +++ b/tests/bufr_copy.sh @@ -10,19 +10,14 @@ . ./include.sh - # Enter data dir cd ${data_dir}/bufr -# Define a common label for all the tmp files label="bufr_copy_test" - -# Create log file fLog=${label}".log" rm -f $fLog touch $fLog -# Define tmp bufr files fBufrInput=${label}".bufr.input" fBufrTmp=${label}".bufr.tmp" @@ -30,7 +25,7 @@ fBufrTmp=${label}".bufr.tmp" cat syno_multi.bufr temp_101.bufr > $fBufrInput #---------------------------------------------------- -# Test: copy synop messages +echo "Test: copy synop messages ..." #---------------------------------------------------- rm -f $fBufrTmp @@ -43,7 +38,7 @@ for i in 1 2 3 ;do done #---------------------------------------------------- -# Test: copy non-synop messages +echo "Test: copy non-synop messages ..." #---------------------------------------------------- rm -f $fBufrTmp @@ -53,7 +48,7 @@ ${tools_dir}/bufr_copy -w dataCategory!=0 $fBufrInput $fBufrTmp >> $fLog [ `${tools_dir}/bufr_get -p dataCategory:l $fBufrTmp` = "2" ] #------------------------------------------------------------------- -# Test: use the square brackets to insert the value of a key +echo "Test: use the square brackets to insert the value of a key ..." #------------------------------------------------------------------- rm -f ${fBufrTmp} rm -f ${fBufrTmp}_*.bufr @@ -68,7 +63,7 @@ rm -f ${fBufrTmp}_*.bufr rm -f $fBufrInput #------------------------------------------------------------------- -# Test: The -X option +echo "Test: The -X option ..." #------------------------------------------------------------------- echo "Test: use of -X option" >> $fLog fBufrInput=aeolus_wmo_26.bufr @@ -86,7 +81,23 @@ r2=`${tools_dir}/bufr_get -n ls $fBufrTmp` #r=`${tools_dir}/bufr_get -p typicalTime,numberOfSubsets $fBufrTmp` #[ "$r" = "000013 41" ] + +#------------------------------------------------------------------- +echo "Test: The -w option with unpack ..." +#------------------------------------------------------------------- +fBufrInput=tropical_cyclone.bufr +rm -f $fBufrTmp +${tools_dir}/bufr_copy -s unpack=1 -w stormIdentifier=70E $fBufrInput $fBufrTmp +num_msgs=`${tools_dir}/bufr_count $fBufrTmp` +[ $num_msgs -eq 1 ] +storm=`${tools_dir}/bufr_get -s unpack=1 -p stormIdentifier $fBufrTmp` +[ "$storm" = "70E" ] + +rm -f $fBufrTmp +${tools_dir}/bufr_copy -s unpack=1 -w stormIdentifier=none $fBufrInput $fBufrTmp +[ ! -f "$fBufrTmp" ] + + # Clean up #----------- -rm -f $fLog -rm -f $fBufrTmp +rm -f $fLog $fBufrTmp diff --git a/tools/grib_tools.c b/tools/grib_tools.c index 04696bc10..9b6dabe51 100644 --- a/tools/grib_tools.c +++ b/tools/grib_tools.c @@ -830,6 +830,17 @@ void grib_skip_check(grib_runtime_options* options, grib_handle* h) { int i, ret = 0; grib_values* v = NULL; + + /* ECC-1179: bufr_copy/bufr_ls: Allow 'where' clause with Data Section keys */ + if (options->constraints_count > 0 && h->product_kind == PRODUCT_BUFR) { + for (i = 0; i < options->set_values_count; i++) { + if (strcmp(options->set_values[i].name, "unpack")==0) { + grib_set_long(h, "unpack", 1); + break; + } + } + } + for (i = 0; i < options->constraints_count; i++) { v = &(options->constraints[i]); if (v->equal) { From 7e4d24a5eed40def2a5c9b456e43751436783f83 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 10 Dec 2020 17:45:32 +0000 Subject: [PATCH 186/683] ECC-1181: Add function to determine if a BUFR key is a header key or from the data section --- src/bufr_util.c | 10 ++++++++++ src/eccodes.h | 3 +++ src/grib_api_prototypes.h | 2 +- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/src/bufr_util.c b/src/bufr_util.c index 2e4d6bfd6..ad510bfb6 100644 --- a/src/bufr_util.c +++ b/src/bufr_util.c @@ -1107,3 +1107,13 @@ int codes_bufr_header_get_string(codes_bufr_header* bh, const char* key, char* v return GRIB_SUCCESS; } + +int codes_bufr_key_is_header(const grib_handle* h, const char* key, int* err) +{ + grib_accessor* acc = grib_find_accessor(h, key); + if (!acc) { + *err = GRIB_NOT_FOUND; + return 0; + } + return ((acc->flags & GRIB_ACCESSOR_FLAG_BUFR_DATA) == 0); +} diff --git a/src/eccodes.h b/src/eccodes.h index 054870348..d9f6f197d 100644 --- a/src/eccodes.h +++ b/src/eccodes.h @@ -1205,6 +1205,9 @@ int codes_is_missing(const codes_handle* h, const char* key, int* err); /* Returns a bool i.e. 0 or 1 */ int codes_is_defined(const codes_handle* h, const char* key); +/* Returns 1 if the BUFR key is in the header and 1 if it is in the data section. The error code is an argument */ +int codes_bufr_key_is_header(const codes_handle* h, const char* key, int* err); + int codes_set_missing(codes_handle* h, const char* key); /* The truncation is the Gaussian number (or order) */ int codes_get_gaussian_latitudes(long truncation, double* latitudes); diff --git a/src/grib_api_prototypes.h b/src/grib_api_prototypes.h index 70b3eb140..7a35752ce 100644 --- a/src/grib_api_prototypes.h +++ b/src/grib_api_prototypes.h @@ -1489,7 +1489,7 @@ char** codes_bufr_copy_data_return_copied_keys(grib_handle* hin, grib_handle* ho int codes_bufr_copy_data(grib_handle* hin, grib_handle* hout); int codes_bufr_extract_headers_malloc(grib_context* c, const char* filename, codes_bufr_header** result, int* num_messages, int strict_mode); int codes_bufr_header_get_string(codes_bufr_header* bh, const char* key, char* val, size_t* len); - +int codes_bufr_key_is_header(const grib_handle* h, const char* key, int* err); /* string_util.c */ int strcmp_nocase(const char* s1, const char* s2); From b50bac9c60c4b546dc3105592de1eddbba94a2df Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 10 Dec 2020 23:21:51 +0000 Subject: [PATCH 187/683] Compiler warnings --- examples/C/grib_pthreads.c | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/examples/C/grib_pthreads.c b/examples/C/grib_pthreads.c index 79e46ee4c..2dce9a4cd 100644 --- a/examples/C/grib_pthreads.c +++ b/examples/C/grib_pthreads.c @@ -7,10 +7,9 @@ * In applying this licence, ECMWF does not waive the privileges and immunities granted to it by * virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. */ -#include -#include -#include + #include +#include "grib_api_internal.h" #include "eccodes.h" #define NUM_THREADS 4 @@ -41,9 +40,9 @@ static void* process_grib(void* threadID) ProductKind prod_kind = 0; codes_handle* h = codes_grib_handle_new_from_samples(0, "regular_ll_pl_grib2"); - assert(h); + Assert(h); CODES_CHECK(codes_get_product_kind(h, &prod_kind), 0); - assert(prod_kind == PRODUCT_GRIB); + Assert(prod_kind == PRODUCT_GRIB); printf("Thread %ld running\n", tid); CODES_CHECK(codes_set_long(h, "indicatorOfUnitOfTimeRange", indicatorOfUnitOfTimeRange), 0); @@ -74,9 +73,9 @@ static void* process_grib(void* threadID) CODES_CHECK(codes_get_double(h, "max", &max), 0); CODES_CHECK(codes_get_double(h, "avg", &avg), 0); printf("Thread %ld: min=%g max=%g avg=%g\n", tid, min, max, avg); - assert(compare_doubles(min, 0.84, tol) == 0); - assert(compare_doubles(max, 1.00, tol) == 0); - assert(compare_doubles(avg, 0.916774, tol) == 0); + Assert(compare_doubles(min, 0.84, tol) == 0); + Assert(compare_doubles(max, 1.00, tol) == 0); + Assert(compare_doubles(avg, 0.916774, tol) == 0); codes_handle_delete(h); pthread_exit(NULL); @@ -91,7 +90,7 @@ int main(int argc, char** argv) printf("Creating thread %ld\n", i); error = pthread_create(&threads[i], NULL, process_grib, (void*)i); if (error) { - assert(0); + Assert(0); return 1; } } From fc011ad63d6fe13926cf1fee5e80cbd9a680b668 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 11 Dec 2020 12:05:18 +0000 Subject: [PATCH 188/683] ECC-1181: documentation --- src/bufr_util.c | 1 + src/eccodes.h | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/bufr_util.c b/src/bufr_util.c index ad510bfb6..8e2ee4c30 100644 --- a/src/bufr_util.c +++ b/src/bufr_util.c @@ -1108,6 +1108,7 @@ int codes_bufr_header_get_string(codes_bufr_header* bh, const char* key, char* v return GRIB_SUCCESS; } +/* Returns 1 if the BUFR key is in the header and 0 if it is in the data section */ int codes_bufr_key_is_header(const grib_handle* h, const char* key, int* err) { grib_accessor* acc = grib_find_accessor(h, key); diff --git a/src/eccodes.h b/src/eccodes.h index d9f6f197d..d0af8ee09 100644 --- a/src/eccodes.h +++ b/src/eccodes.h @@ -1200,12 +1200,13 @@ int codes_set_values(codes_handle* h, codes_values* codes_values, size_t arg_cou codes_handle* codes_handle_new_from_partial_message_copy(codes_context* c, const void* data, size_t size); codes_handle* codes_handle_new_from_partial_message(codes_context* c, const void* data, size_t buflen); -/* Returns a bool i.e. 0 or 1. The error code is an argument */ +/* Returns a bool i.e. 0 or 1. The error code is the final argument */ int codes_is_missing(const codes_handle* h, const char* key, int* err); /* Returns a bool i.e. 0 or 1 */ int codes_is_defined(const codes_handle* h, const char* key); -/* Returns 1 if the BUFR key is in the header and 1 if it is in the data section. The error code is an argument */ +/* Returns 1 if the BUFR key is in the header and 0 if it is in the data section. + The error code is the final argument */ int codes_bufr_key_is_header(const codes_handle* h, const char* key, int* err); int codes_set_missing(codes_handle* h, const char* key); From 807bc687c5722f7e8a7e640cff3b035845e65daf Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 11 Dec 2020 12:07:06 +0000 Subject: [PATCH 189/683] SUP-3328: Local definitions from DWD --- .../0/local/8/78/0/codetables/20203.table | 2 +- .../bufr/tables/0/local/8/78/0/element.table | 17 + .../bufr/tables/0/local/8/78/0/sequence.def | 1 + definitions/grib1/local/edzw/2.0.3.table | 2 +- definitions/grib1/localConcepts/edzw/name.def | 139 +- .../grib1/localConcepts/edzw/paramId.def | 123 +- .../grib1/localConcepts/edzw/shortName.def | 123 +- .../grib1/localConcepts/edzw/stepType.def | 5 +- .../grib1/localConcepts/edzw/typeOfLevel.def | 4 +- .../grib1/localConcepts/edzw/units.def | 123 +- definitions/grib2/localConcepts/edzw/name.def | 1861 ++++++++++++++--- .../grib2/localConcepts/edzw/paramId.def | 1487 +++++++++++-- .../grib2/localConcepts/edzw/shortName.def | 1665 ++++++++++++--- .../grib2/localConcepts/edzw/units.def | 1677 ++++++++++++--- definitions/grib2/tables/local/edzw/1.1.table | 5 + .../grib2/tables/local/edzw/1/4.2.0.0.table | 6 +- .../grib2/tables/local/edzw/1/4.2.0.1.table | 41 +- .../grib2/tables/local/edzw/1/4.2.0.14.table | 6 +- .../grib2/tables/local/edzw/1/4.2.0.15.table | 16 +- .../grib2/tables/local/edzw/1/4.2.0.16.table | 2 +- .../grib2/tables/local/edzw/1/4.2.0.17.table | 4 +- .../grib2/tables/local/edzw/1/4.2.0.18.table | 4 +- .../grib2/tables/local/edzw/1/4.2.0.19.table | 18 +- .../grib2/tables/local/edzw/1/4.2.0.191.table | 10 +- .../grib2/tables/local/edzw/1/4.2.0.192.table | 2 +- .../grib2/tables/local/edzw/1/4.2.0.193.table | 2 +- .../grib2/tables/local/edzw/1/4.2.0.194.table | 8 +- .../grib2/tables/local/edzw/1/4.2.0.195.table | 2 +- .../grib2/tables/local/edzw/1/4.2.0.196.table | 2 +- .../grib2/tables/local/edzw/1/4.2.0.197.table | 18 +- .../grib2/tables/local/edzw/1/4.2.0.198.table | 2 +- .../grib2/tables/local/edzw/1/4.2.0.199.table | 2 +- .../grib2/tables/local/edzw/1/4.2.0.2.table | 27 +- .../grib2/tables/local/edzw/1/4.2.0.20.table | 31 +- .../grib2/tables/local/edzw/1/4.2.0.254.table | 2 +- .../grib2/tables/local/edzw/1/4.2.0.3.table | 8 +- .../grib2/tables/local/edzw/1/4.2.0.4.table | 8 +- .../grib2/tables/local/edzw/1/4.2.0.5.table | 2 +- .../grib2/tables/local/edzw/1/4.2.0.6.table | 24 +- .../grib2/tables/local/edzw/1/4.2.0.7.table | 8 +- .../grib2/tables/local/edzw/1/4.2.1.0.table | 4 +- .../grib2/tables/local/edzw/1/4.2.10.0.table | 2 +- .../grib2/tables/local/edzw/1/4.2.10.3.table | 2 +- .../grib2/tables/local/edzw/1/4.2.2.0.table | 8 +- .../grib2/tables/local/edzw/1/4.2.2.3.table | 20 +- .../tables/local/edzw/1/4.2.215.19.table | 2 +- .../grib2/tables/local/edzw/1/4.2.215.2.table | 16 +- .../grib2/tables/local/edzw/1/4.2.215.5.table | 6 +- .../grib2/tables/local/edzw/1/4.2.215.7.table | 2 +- .../grib2/tables/local/edzw/1/4.2.3.0.table | 2 +- .../grib2/tables/local/edzw/1/4.2.3.1.table | 2 +- .../grib2/tables/local/edzw/1/4.3.table | 1 + .../edzw/1/generatingProcessIdentifier.table | 6 +- 53 files changed, 5985 insertions(+), 1577 deletions(-) create mode 100644 definitions/grib2/tables/local/edzw/1.1.table diff --git a/definitions/bufr/tables/0/local/8/78/0/codetables/20203.table b/definitions/bufr/tables/0/local/8/78/0/codetables/20203.table index ac25123f0..57a56c7ae 100755 --- a/definitions/bufr/tables/0/local/8/78/0/codetables/20203.table +++ b/definitions/bufr/tables/0/local/8/78/0/codetables/20203.table @@ -10,5 +10,5 @@ 11 11 Liquid precipitation, automatically ascertainment 12 12 Solid precipitation, automatically ascertainment 13 13 Liquid and solid precipitation, automatically ascertainment -14 14 Reserved +14 14 Type of precipitation unascertainable and depositional precipitation, automatically ascertainment 15 15 Missing value, Type of precipitation unascertainable, automatically ascertainment diff --git a/definitions/bufr/tables/0/local/8/78/0/element.table b/definitions/bufr/tables/0/local/8/78/0/element.table index 858108351..f98ee3b11 100755 --- a/definitions/bufr/tables/0/local/8/78/0/element.table +++ b/definitions/bufr/tables/0/local/8/78/0/element.table @@ -123,8 +123,24 @@ 014202|albedoOfSurfaceShortWave|long|ALBEDO OF SURFACE (SHORT WAVE)|%|0|0|7 014203|thermalRadiationOfTheAtmosphere|double|THERMAL RADIATION OF THE ATMOSPHERE|J m-2|-2|0|16 014204|durationOfSunshineUsingTheWoz|long|DURATION OF SUNSHINE USING THE WOZ|min|0|0|11 +014205|correctedDiffuseSolarRadiationIntegratedOverPeriodSpecified|double|Corrected diffuse solar radiation (high accuracy), integrated over period specified|J m-2|-2|0|20 +014206|calculatedTotalSunshine|long|Calculated total sunshine|min|0|0|11 015192|ozoneVerticallyIntegrated|double|OZONE, VERTICALLY INTEGRATED|Pa|4|0|14 015193|pressureOfOzoneMaximum|double|PRESSURE OF OZONE MAXIMUM|Pa|-1|0|14 +015195|pathDelayDueToNeutralAtmosphere|double|Path delay due to neutral atmosphere|m|4|0|20 +015196|estimatedErrorInNeutralAtmospherePathDelay|double|Estimated error in neutral atmosphere path delay|m|4|0|14 +015197|zenithPathDelayDueToNeutralAtmosphere|double|Zenith path delay due to neutral atmosphere|m|4|0|15 +015198|estimatedErrorInNeutralAtmosphereZenithPathDelay|double|Estimated error in neutral atmosphere zenith path delay|m|4|0|12 +015199|wetPathDelayDueToNeutralAtmosphere|double|Wet path delay due to neutral atmosphere|m|4|0|18 +015200|pathIntegratedWaterVapour|double|Path integrated water vapour|kg m-2|1|0|16 +015201|gnssDerivedNeutralAtmosphereGradient|double|GNSS derived neutral atmosphere gradient|m|5|0|14 +015202|gnssLeastSquaresResidual|double|GNSS least squares residual|m|4|0|14 +015203|gnssMultiPathDelay|double|GNSS multi-path delay|m|4|0|14 +015204|gnssHydrostaticMappingFunction|double|GNSS hydrostatic mapping function|Numeric|3|0|16 +015205|gnssWetMappingFunction|double|GNSS wet mapping function|Numeric|3|0|16 +015206|gnssGradientMappingFunction|double|GNSS gradient mapping function|Numeric|3|0|16 +015207|zenithPathDelayDueToNeutralHydrostaticAtmosphere|double|Zenith path delay due to neutral hydrostatic atmosphere|m|4|0|15 +015208|pathDelayDueToNeutralHydrostaticAtmosphere|double|Path delay due to neutral hydrostatic atmosphere|m|4|0|20 020192|typeOfSpecialWeatherPhenomena|table|TYPE OF SPECIAL WEATHER PHENOMENA|Code table|0|0|5 020193|additionalWeatherPhenomena|table|ADDITIONAL WEATHER PHENOMENA|Code table|0|0|7 020194|heightOfTopOfPhenomena|double|HEIGHT OF TOP OF PHENOMENA|m|-1|-40|11 @@ -209,6 +225,7 @@ 024214|exponentOfDecisionThreshold|long|EXPONENT OF DECISION THRESHOLD|Numeric|0|-15|5 025192|dewPointAircraftAlti+airTtIdRecco|table|DEW POINT,AIRCRAFT ALTI+AIR TT ID(RECCO)|Code table|0|0|4 033192|qualityInformationOfLightningNet|table|QUALITY INFORMATION OF LIGHTNING NET|Code table|0|0|2 +033193|extendedQualityFlagsForGroundBasedGnssData|flag|Extended quality flags for ground-based GNSS data|Flag table|0|0|32 051192|shortDistanceLightning|long|SHORT DISTANCE LIGHTNING|Numeric|0|0|7 051193|distantLightning|long|DISTANT LIGHTNING|Numeric|0|0|7 052192|landSeaRatio|long|LAND SEA RATIO|%|0|0|7 diff --git a/definitions/bufr/tables/0/local/8/78/0/sequence.def b/definitions/bufr/tables/0/local/8/78/0/sequence.def index 497447f1a..5ff721a64 100755 --- a/definitions/bufr/tables/0/local/8/78/0/sequence.def +++ b/definitions/bufr/tables/0/local/8/78/0/sequence.def @@ -138,6 +138,7 @@ "307239" = [ 007032, 012101, 002051, 004051, 012118, 004052, 012119, 013004, 012151, 007032, 014032, 008023 ] "307240" = [ 004001, 004001, 004002, 004003, 004004, 004022, 007032, 008023, 013060, 004053, 008023 ] "307241" = [ 102008, 008050, 008020 ] +"307242" = [ 001015, 001040, 008021, 301011, 301013, 301022, 010036, 025061, 010004, 012001, 013003, 025060, 008021, 004025, 115000, 031001, 015197, 015198, 008022, 033193, 015207, 015035, 102002, 008060, 015201, 201131, 202129, 013016, 202000, 201000, 015011, 025060, 033193, 125000, 031001, 002020, 001050, 001150, 202127, 304030, 202000, 005021, 007021, 015195, 015196, 015208, 015199, 015200, 015197, 015207, 015035, 102002, 008060, 015201, 015202, 015203, 015204, 015205, 015206, 015011 ] "308192" = [ 301213, 204005, 031021, 010051, 204000 ] "308200" = [ 008023, 010051, 007032, 007033, 012101, 013004, 007032, 007033, 302056, 008023 ] "308201" = [ 004003, 004004, 004023, 007032, 013060, 013051, 004053, 007032 ] diff --git a/definitions/grib1/local/edzw/2.0.3.table b/definitions/grib1/local/edzw/2.0.3.table index efa3bd13a..a4f9a0df9 100755 --- a/definitions/grib1/local/edzw/2.0.3.table +++ b/definitions/grib1/local/edzw/2.0.3.table @@ -110,7 +110,7 @@ 110 110 None Secondary wave period s 111 111 None Net short-wave radiation flux (surface) W m**-2 112 112 None Net long-wave radiation flux (surface) W m**-2 -113 113 None Net short-wave radiation flux(atmosph.top) W m**-2 +113 113 None Net short-wave radiationflux(atmosph.top) W m**-2 114 114 None Net long-wave radiation flux(atmosph.top) W m**-2 115 115 None Long-wave radiation flux W m**-2 116 116 None Short-wave radiation flux W m**-2 diff --git a/definitions/grib1/localConcepts/edzw/name.def b/definitions/grib1/localConcepts/edzw/name.def index ec1b2a808..47f2c21a7 100755 --- a/definitions/grib1/localConcepts/edzw/name.def +++ b/definitions/grib1/localConcepts/edzw/name.def @@ -1,4 +1,4 @@ -# Automatically generated by get_definitions.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2018-06-07 07:57 +# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 #paramId: 500000 #Pressure (S) (not reduced) 'Pressure (S) (not reduced)' = { @@ -942,8 +942,8 @@ } #paramId: 500123 -#Specific humitiy tendency due to convection -'Specific humitiy tendency due to convection' = { +#Specific humidity tendency due to convection +'Specific humidity tendency due to convection' = { table2Version = 201 ; indicatorOfParameter = 75 ; } @@ -987,8 +987,8 @@ } #paramId: 500129 -#Tendency of specific cloud liquid water content due to conversion -'Tendency of specific cloud liquid water content due to conversion' = { +#Tendency of specific cloud liquid water content due to convection +'Tendency of specific cloud liquid water content due to convection' = { table2Version = 201 ; indicatorOfParameter = 88 ; } @@ -1071,8 +1071,8 @@ } #paramId: 500141 -#Specific humitiy tendency due to grid scale precipitation -'Specific humitiy tendency due to grid scale precipitation' = { +#Specific humidity tendency due to grid scale precipitation +'Specific humidity tendency due to grid scale precipitation' = { table2Version = 201 ; indicatorOfParameter = 125 ; } @@ -1860,13 +1860,6 @@ indicatorOfParameter = 204 ; } -#paramId: 500254 -#Cs137 - wet deposition -'Cs137 - wet deposition' = { - table2Version = 202 ; - indicatorOfParameter = 205 ; - } - #paramId: 500255 #Air concentration of Tellurium 132 'Air concentration of Tellurium 132' = { @@ -2036,8 +2029,8 @@ } #paramId: 500279 -#u-momentum flux due to SSO-effects (initialisation) -'u-momentum flux due to SSO-effects (initialisation)' = { +#u-momentum flux due to SSO-effects +'u-momentum flux due to SSO-effects' = { table2Version = 202 ; indicatorOfParameter = 231 ; timeRangeIndicator = 3 ; @@ -3504,8 +3497,8 @@ } #paramId: 500481 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) -'Downward diffusive short wave radiation flux at surface ( mean over forecast time)' = { +#Downward diffusive short wave radiation flux +'Downward diffusive short wave radiation flux' = { table2Version = 201 ; indicatorOfParameter = 23 ; indicatorOfTypeOfLevel = 1 ; @@ -5448,104 +5441,6 @@ indicatorOfParameter = 128 ; } -#paramId: 500779 -#DUMMY_129 -'DUMMY_129' = { - table2Version = 254 ; - indicatorOfParameter = 129 ; - } - -#paramId: 500780 -#DUMMY_130 -'DUMMY_130' = { - table2Version = 254 ; - indicatorOfParameter = 130 ; - } - -#paramId: 500781 -#DUMMY_131 -'DUMMY_131' = { - table2Version = 254 ; - indicatorOfParameter = 131 ; - } - -#paramId: 500782 -#DUMMY_132 -'DUMMY_132' = { - table2Version = 254 ; - indicatorOfParameter = 132 ; - } - -#paramId: 500783 -#DUMMY_133 -'DUMMY_133' = { - table2Version = 254 ; - indicatorOfParameter = 133 ; - } - -#paramId: 500784 -#DUMMY_134 -'DUMMY_134' = { - table2Version = 254 ; - indicatorOfParameter = 134 ; - } - -#paramId: 500785 -#DUMMY_135 -'DUMMY_135' = { - table2Version = 254 ; - indicatorOfParameter = 135 ; - } - -#paramId: 500786 -#DUMMY_136 -'DUMMY_136' = { - table2Version = 254 ; - indicatorOfParameter = 136 ; - } - -#paramId: 500787 -#DUMMY_137 -'DUMMY_137' = { - table2Version = 254 ; - indicatorOfParameter = 137 ; - } - -#paramId: 500788 -#DUMMY_138 -'DUMMY_138' = { - table2Version = 254 ; - indicatorOfParameter = 138 ; - } - -#paramId: 500789 -#DUMMY_139 -'DUMMY_139' = { - table2Version = 254 ; - indicatorOfParameter = 139 ; - } - -#paramId: 500790 -#DUMMY_140 -'DUMMY_140' = { - table2Version = 254 ; - indicatorOfParameter = 140 ; - } - -#paramId: 500791 -#DUMMY_141 -'DUMMY_141' = { - table2Version = 254 ; - indicatorOfParameter = 141 ; - } - -#paramId: 500792 -#DUMMY_142 -'DUMMY_142' = { - table2Version = 254 ; - indicatorOfParameter = 142 ; - } - #paramId: 500793 #DUMMY_143 'DUMMY_143' = { @@ -6398,8 +6293,8 @@ } #paramId: 502339 -#Downward direct short wave radiation flux at surface -'Downward direct short wave radiation flux at surface' = { +#Downward direct short wave radiation flux +'Downward direct short wave radiation flux' = { table2Version = 201 ; indicatorOfParameter = 22 ; indicatorOfTypeOfLevel = 1 ; @@ -8802,16 +8697,16 @@ } #paramId: 503065 -#u-momentum flux due to SSO-effects (initialisation) -'u-momentum flux due to SSO-effects (initialisation)' = { +#u-momentum flux due to SSO-effects +'u-momentum flux due to SSO-effects' = { table2Version = 202 ; indicatorOfParameter = 231 ; timeRangeIndicator = 1 ; } #paramId: 503066 -#v-momentum flux due to SSO-effects (initialisation) -'v-momentum flux due to SSO-effects (initialisation)' = { +#v-momentum flux due to SSO-effects +'v-momentum flux due to SSO-effects' = { table2Version = 202 ; indicatorOfParameter = 232 ; timeRangeIndicator = 1 ; diff --git a/definitions/grib1/localConcepts/edzw/paramId.def b/definitions/grib1/localConcepts/edzw/paramId.def index d6dfbbfc9..e27013695 100755 --- a/definitions/grib1/localConcepts/edzw/paramId.def +++ b/definitions/grib1/localConcepts/edzw/paramId.def @@ -1,4 +1,4 @@ -# Automatically generated by get_definitions.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE,do not edit! 2018-06-07 07:57 +# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE,do not edit! 2020-11-05 10:29 #paramId: 500000 #Pressure (S) (not reduced) '500000' = { @@ -3713,7 +3713,7 @@ } #paramId: 500123 -#Specific humitiy tendency due to convection +#Specific humidity tendency due to convection '500123' = { table2Version = 201 ; indicatorOfParameter = 75 ; @@ -3758,7 +3758,7 @@ } #paramId: 500129 -#Tendency of specific cloud liquid water content due to conversion +#Tendency of specific cloud liquid water content due to convection '500129' = { table2Version = 201 ; indicatorOfParameter = 88 ; @@ -3842,7 +3842,7 @@ } #paramId: 500141 -#Specific humitiy tendency due to grid scale precipitation +#Specific humidity tendency due to grid scale precipitation '500141' = { table2Version = 201 ; indicatorOfParameter = 125 ; @@ -4631,13 +4631,6 @@ indicatorOfParameter = 204 ; } -#paramId: 500254 -#Cs137 - wet deposition -'500254' = { - table2Version = 202 ; - indicatorOfParameter = 205 ; - } - #paramId: 500255 #Air concentration of Tellurium 132 '500255' = { @@ -4807,7 +4800,7 @@ } #paramId: 500279 -#u-momentum flux due to SSO-effects (initialisation) +#u-momentum flux due to SSO-effects '500279' = { table2Version = 202 ; indicatorOfParameter = 231 ; @@ -6104,7 +6097,7 @@ } #paramId: 500481 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) +#Downward diffusive short wave radiation flux '500481' = { table2Version = 201 ; indicatorOfParameter = 23 ; @@ -7929,104 +7922,6 @@ indicatorOfParameter = 128 ; } -#paramId: 500779 -#DUMMY_129 -'500779' = { - table2Version = 254 ; - indicatorOfParameter = 129 ; - } - -#paramId: 500780 -#DUMMY_130 -'500780' = { - table2Version = 254 ; - indicatorOfParameter = 130 ; - } - -#paramId: 500781 -#DUMMY_131 -'500781' = { - table2Version = 254 ; - indicatorOfParameter = 131 ; - } - -#paramId: 500782 -#DUMMY_132 -'500782' = { - table2Version = 254 ; - indicatorOfParameter = 132 ; - } - -#paramId: 500783 -#DUMMY_133 -'500783' = { - table2Version = 254 ; - indicatorOfParameter = 133 ; - } - -#paramId: 500784 -#DUMMY_134 -'500784' = { - table2Version = 254 ; - indicatorOfParameter = 134 ; - } - -#paramId: 500785 -#DUMMY_135 -'500785' = { - table2Version = 254 ; - indicatorOfParameter = 135 ; - } - -#paramId: 500786 -#DUMMY_136 -'500786' = { - table2Version = 254 ; - indicatorOfParameter = 136 ; - } - -#paramId: 500787 -#DUMMY_137 -'500787' = { - table2Version = 254 ; - indicatorOfParameter = 137 ; - } - -#paramId: 500788 -#DUMMY_138 -'500788' = { - table2Version = 254 ; - indicatorOfParameter = 138 ; - } - -#paramId: 500789 -#DUMMY_139 -'500789' = { - table2Version = 254 ; - indicatorOfParameter = 139 ; - } - -#paramId: 500790 -#DUMMY_140 -'500790' = { - table2Version = 254 ; - indicatorOfParameter = 140 ; - } - -#paramId: 500791 -#DUMMY_141 -'500791' = { - table2Version = 254 ; - indicatorOfParameter = 141 ; - } - -#paramId: 500792 -#DUMMY_142 -'500792' = { - table2Version = 254 ; - indicatorOfParameter = 142 ; - } - #paramId: 500793 #DUMMY_143 '500793' = { @@ -8834,7 +8729,7 @@ } #paramId: 502339 -#Downward direct short wave radiation flux at surface +#Downward direct short wave radiation flux '502339' = { table2Version = 201 ; indicatorOfParameter = 22 ; @@ -8872,7 +8767,7 @@ } #paramId: 503065 -#u-momentum flux due to SSO-effects (initialisation) +#u-momentum flux due to SSO-effects '503065' = { table2Version = 202 ; indicatorOfParameter = 231 ; @@ -8880,7 +8775,7 @@ } #paramId: 503066 -#v-momentum flux due to SSO-effects (initialisation) +#v-momentum flux due to SSO-effects '503066' = { table2Version = 202 ; indicatorOfParameter = 232 ; diff --git a/definitions/grib1/localConcepts/edzw/shortName.def b/definitions/grib1/localConcepts/edzw/shortName.def index f8e2c8dcb..3ee953db6 100755 --- a/definitions/grib1/localConcepts/edzw/shortName.def +++ b/definitions/grib1/localConcepts/edzw/shortName.def @@ -1,4 +1,4 @@ -# Automatically generated by get_definitions.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2018-06-07 07:57 +# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 #paramId: 500000 #Pressure (S) (not reduced) 'PS' = { @@ -942,7 +942,7 @@ } #paramId: 500123 -#Specific humitiy tendency due to convection +#Specific humidity tendency due to convection 'DQV_CON' = { table2Version = 201 ; indicatorOfParameter = 75 ; @@ -987,7 +987,7 @@ } #paramId: 500129 -#Tendency of specific cloud liquid water content due to conversion +#Tendency of specific cloud liquid water content due to convection 'DQC_CON' = { table2Version = 201 ; indicatorOfParameter = 88 ; @@ -1071,7 +1071,7 @@ } #paramId: 500141 -#Specific humitiy tendency due to grid scale precipitation +#Specific humidity tendency due to grid scale precipitation 'DQV_GSP' = { table2Version = 201 ; indicatorOfParameter = 125 ; @@ -1860,13 +1860,6 @@ indicatorOfParameter = 204 ; } -#paramId: 500254 -#Cs137 - wet deposition -'Cs-137w' = { - table2Version = 202 ; - indicatorOfParameter = 205 ; - } - #paramId: 500255 #Air concentration of Tellurium 132 'Te-132' = { @@ -2036,7 +2029,7 @@ } #paramId: 500279 -#u-momentum flux due to SSO-effects (initialisation) +#u-momentum flux due to SSO-effects 'AUSTR_SSO' = { table2Version = 202 ; indicatorOfParameter = 231 ; @@ -3504,7 +3497,7 @@ } #paramId: 500481 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) +#Downward diffusive short wave radiation flux 'ASWDIFD_S' = { table2Version = 201 ; indicatorOfParameter = 23 ; @@ -5448,104 +5441,6 @@ indicatorOfParameter = 128 ; } -#paramId: 500779 -#DUMMY_129 -'DUMMY_129' = { - table2Version = 254 ; - indicatorOfParameter = 129 ; - } - -#paramId: 500780 -#DUMMY_130 -'DUMMY_130' = { - table2Version = 254 ; - indicatorOfParameter = 130 ; - } - -#paramId: 500781 -#DUMMY_131 -'DUMMY_131' = { - table2Version = 254 ; - indicatorOfParameter = 131 ; - } - -#paramId: 500782 -#DUMMY_132 -'DUMMY_132' = { - table2Version = 254 ; - indicatorOfParameter = 132 ; - } - -#paramId: 500783 -#DUMMY_133 -'DUMMY_133' = { - table2Version = 254 ; - indicatorOfParameter = 133 ; - } - -#paramId: 500784 -#DUMMY_134 -'DUMMY_134' = { - table2Version = 254 ; - indicatorOfParameter = 134 ; - } - -#paramId: 500785 -#DUMMY_135 -'DUMMY_135' = { - table2Version = 254 ; - indicatorOfParameter = 135 ; - } - -#paramId: 500786 -#DUMMY_136 -'DUMMY_136' = { - table2Version = 254 ; - indicatorOfParameter = 136 ; - } - -#paramId: 500787 -#DUMMY_137 -'DUMMY_137' = { - table2Version = 254 ; - indicatorOfParameter = 137 ; - } - -#paramId: 500788 -#DUMMY_138 -'DUMMY_138' = { - table2Version = 254 ; - indicatorOfParameter = 138 ; - } - -#paramId: 500789 -#DUMMY_139 -'DUMMY_139' = { - table2Version = 254 ; - indicatorOfParameter = 139 ; - } - -#paramId: 500790 -#DUMMY_140 -'DUMMY_140' = { - table2Version = 254 ; - indicatorOfParameter = 140 ; - } - -#paramId: 500791 -#DUMMY_141 -'DUMMY_141' = { - table2Version = 254 ; - indicatorOfParameter = 141 ; - } - -#paramId: 500792 -#DUMMY_142 -'DUMMY_142' = { - table2Version = 254 ; - indicatorOfParameter = 142 ; - } - #paramId: 500793 #DUMMY_143 'DUMMY_143' = { @@ -6398,7 +6293,7 @@ } #paramId: 502339 -#Downward direct short wave radiation flux at surface +#Downward direct short wave radiation flux 'SWDIRS_RAD' = { table2Version = 201 ; indicatorOfParameter = 22 ; @@ -8802,7 +8697,7 @@ } #paramId: 503065 -#u-momentum flux due to SSO-effects (initialisation) +#u-momentum flux due to SSO-effects 'AUSTR_SSO' = { table2Version = 202 ; indicatorOfParameter = 231 ; @@ -8810,7 +8705,7 @@ } #paramId: 503066 -#v-momentum flux due to SSO-effects (initialisation) +#v-momentum flux due to SSO-effects 'AVSTR_SSO' = { table2Version = 202 ; indicatorOfParameter = 232 ; diff --git a/definitions/grib1/localConcepts/edzw/stepType.def b/definitions/grib1/localConcepts/edzw/stepType.def index ebaa1c537..e47d0bdea 100644 --- a/definitions/grib1/localConcepts/edzw/stepType.def +++ b/definitions/grib1/localConcepts/edzw/stepType.def @@ -1,7 +1,6 @@ # Concept stepType for DWD -# In case of a repeated entry: -# set uses the FIRST one -# get returns the LAST match +# set uses the FIRST one +# get returns the LAST match # "accum" = {timeRangeIndicator=0;centre=98;indicatorOfParameter=61;table2Version=1;} # "accum" = {timeRangeIndicator=0;centre=98;indicatorOfParameter=61;table2Version=2;} diff --git a/definitions/grib1/localConcepts/edzw/typeOfLevel.def b/definitions/grib1/localConcepts/edzw/typeOfLevel.def index f3fce03a6..fcc38a21c 100644 --- a/definitions/grib1/localConcepts/edzw/typeOfLevel.def +++ b/definitions/grib1/localConcepts/edzw/typeOfLevel.def @@ -1,4 +1,6 @@ -# DWD concept type of level +# ECMWF concept type of level +#set uses the last one +#get returns the first match 'surface' = {indicatorOfTypeOfLevel=1;} 'cloudBase' = {indicatorOfTypeOfLevel=2;} 'cloudTop' = {indicatorOfTypeOfLevel=3;} diff --git a/definitions/grib1/localConcepts/edzw/units.def b/definitions/grib1/localConcepts/edzw/units.def index 846b40570..d525620a4 100755 --- a/definitions/grib1/localConcepts/edzw/units.def +++ b/definitions/grib1/localConcepts/edzw/units.def @@ -1,4 +1,4 @@ -# Automatically generated by get_definitions.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2018-06-07 07:57 +# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 #paramId: 500000 #Pressure (S) (not reduced) 'Pa' = { @@ -942,7 +942,7 @@ } #paramId: 500123 -#Specific humitiy tendency due to convection +#Specific humidity tendency due to convection 'kg kg-1 s-1' = { table2Version = 201 ; indicatorOfParameter = 75 ; @@ -987,7 +987,7 @@ } #paramId: 500129 -#Tendency of specific cloud liquid water content due to conversion +#Tendency of specific cloud liquid water content due to convection 'kg kg-1 s-1' = { table2Version = 201 ; indicatorOfParameter = 88 ; @@ -1071,7 +1071,7 @@ } #paramId: 500141 -#Specific humitiy tendency due to grid scale precipitation +#Specific humidity tendency due to grid scale precipitation 'kg kg-1 s-1' = { table2Version = 201 ; indicatorOfParameter = 125 ; @@ -1860,13 +1860,6 @@ indicatorOfParameter = 204 ; } -#paramId: 500254 -#Cs137 - wet deposition -'Bq m-2' = { - table2Version = 202 ; - indicatorOfParameter = 205 ; - } - #paramId: 500255 #Air concentration of Tellurium 132 'Bq m-3' = { @@ -2036,7 +2029,7 @@ } #paramId: 500279 -#u-momentum flux due to SSO-effects (initialisation) +#u-momentum flux due to SSO-effects 'N m-2' = { table2Version = 202 ; indicatorOfParameter = 231 ; @@ -3504,7 +3497,7 @@ } #paramId: 500481 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) +#Downward diffusive short wave radiation flux 'W m-2' = { table2Version = 201 ; indicatorOfParameter = 23 ; @@ -5448,104 +5441,6 @@ indicatorOfParameter = 128 ; } -#paramId: 500779 -#DUMMY_129 -'' = { - table2Version = 254 ; - indicatorOfParameter = 129 ; - } - -#paramId: 500780 -#DUMMY_130 -'' = { - table2Version = 254 ; - indicatorOfParameter = 130 ; - } - -#paramId: 500781 -#DUMMY_131 -'' = { - table2Version = 254 ; - indicatorOfParameter = 131 ; - } - -#paramId: 500782 -#DUMMY_132 -'' = { - table2Version = 254 ; - indicatorOfParameter = 132 ; - } - -#paramId: 500783 -#DUMMY_133 -'' = { - table2Version = 254 ; - indicatorOfParameter = 133 ; - } - -#paramId: 500784 -#DUMMY_134 -'' = { - table2Version = 254 ; - indicatorOfParameter = 134 ; - } - -#paramId: 500785 -#DUMMY_135 -'' = { - table2Version = 254 ; - indicatorOfParameter = 135 ; - } - -#paramId: 500786 -#DUMMY_136 -'' = { - table2Version = 254 ; - indicatorOfParameter = 136 ; - } - -#paramId: 500787 -#DUMMY_137 -'' = { - table2Version = 254 ; - indicatorOfParameter = 137 ; - } - -#paramId: 500788 -#DUMMY_138 -'' = { - table2Version = 254 ; - indicatorOfParameter = 138 ; - } - -#paramId: 500789 -#DUMMY_139 -'' = { - table2Version = 254 ; - indicatorOfParameter = 139 ; - } - -#paramId: 500790 -#DUMMY_140 -'' = { - table2Version = 254 ; - indicatorOfParameter = 140 ; - } - -#paramId: 500791 -#DUMMY_141 -'' = { - table2Version = 254 ; - indicatorOfParameter = 141 ; - } - -#paramId: 500792 -#DUMMY_142 -'' = { - table2Version = 254 ; - indicatorOfParameter = 142 ; - } - #paramId: 500793 #DUMMY_143 '' = { @@ -6398,7 +6293,7 @@ } #paramId: 502339 -#Downward direct short wave radiation flux at surface +#Downward direct short wave radiation flux '' = { table2Version = 201 ; indicatorOfParameter = 22 ; @@ -8802,7 +8697,7 @@ } #paramId: 503065 -#u-momentum flux due to SSO-effects (initialisation) +#u-momentum flux due to SSO-effects 'N m-2' = { table2Version = 202 ; indicatorOfParameter = 231 ; @@ -8810,7 +8705,7 @@ } #paramId: 503066 -#v-momentum flux due to SSO-effects (initialisation) +#v-momentum flux due to SSO-effects 'N m-2' = { table2Version = 202 ; indicatorOfParameter = 232 ; diff --git a/definitions/grib2/localConcepts/edzw/name.def b/definitions/grib2/localConcepts/edzw/name.def index 254f646f5..e94200cae 100755 --- a/definitions/grib2/localConcepts/edzw/name.def +++ b/definitions/grib2/localConcepts/edzw/name.def @@ -1,4 +1,4 @@ -# Automatically generated by get_definitions.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2018-06-07 07:57 +# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 #paramId: 500000 #Pressure (S) (not reduced) 'Pressure (S) (not reduced)' = { @@ -1615,8 +1615,8 @@ } #paramId: 500250 -#I131 - dry deposition -'I131 - dry deposition' = { +#I131a - dry deposition +'I131a - dry deposition' = { discipline = 0 ; parameterCategory = 18 ; parameterNumber = 12 ; @@ -1624,8 +1624,8 @@ } #paramId: 500251 -#I131 - wet deposition -'I131 - wet deposition' = { +#I131a - wet deposition +'I131a - wet deposition' = { discipline = 0 ; parameterCategory = 18 ; parameterNumber = 11 ; @@ -1650,15 +1650,6 @@ constituentType = 30172 ; } -#paramId: 500254 -#Cs137 - wet deposition -'Cs137 - wet deposition' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30172 ; - } - #paramId: 500255 #Air concentration of Tellurium 132 'Air concentration of Tellurium 132' = { @@ -3480,6 +3471,118 @@ parameterNumber = 8 ; } +#paramId: 500779 +#Effective radius of cloud water +'Effective radius of cloud water' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 129 ; + } + +#paramId: 500780 +#Effective radius of rain +'Effective radius of rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 130 ; + } + +#paramId: 500781 +#Effective radius of cloud ice +'Effective radius of cloud ice' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 131 ; + } + +#paramId: 500782 +#Effective radius of snow +'Effective radius of snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 132 ; + } + +#paramId: 500783 +#Effective radius of graupel +'Effective radius of graupel' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 133 ; + } + +#paramId: 500784 +#Effective radius of hail +'Effective radius of hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 134 ; + } + +#paramId: 500785 +#Effective radius of subgrid liquid clouds +'Effective radius of subgrid liquid clouds' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 135 ; + } + +#paramId: 500786 +#Effective radius of subgrid ice clouds +'Effective radius of subgrid ice clouds' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 136 ; + } + +#paramId: 500787 +#Effective aspect ratio of rain +'Effective aspect ratio of rain' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 137 ; + } + +#paramId: 500788 +#Effective aspect ratio of cloud ice +'Effective aspect ratio of cloud ice' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 138 ; + } + +#paramId: 500789 +#Effective aspect ratio of snow +'Effective aspect ratio of snow' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 139 ; + } + +#paramId: 500790 +#Effective aspect ratio of graupel +'Effective aspect ratio of graupel' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 140 ; + } + +#paramId: 500791 +#Effective aspect ratio of hail +'Effective aspect ratio of hail' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 141 ; + } + +#paramId: 500792 +#Effective aspect ratio of subgrid ice clouds +'Effective aspect ratio of subgrid ice clouds' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 142 ; + } + #paramId: 500905 #Specific Humidity (S) 'Specific Humidity (S)' = { @@ -6398,11 +6501,11 @@ } #paramId: 503253 -#Prognostic specific activity concentration of Caesium 137 -'Prognostic specific activity concentration of Caesium 137' = { +#Cs137 - wet deposition +'Cs137 - wet deposition' = { discipline = 0 ; parameterCategory = 18 ; - parameterNumber = 14 ; + parameterNumber = 11 ; constituentType = 30172 ; } @@ -6416,11 +6519,11 @@ } #paramId: 503255 -#Prognostic specific activity concentration of Tellurium 132 -'Prognostic specific activity concentration of Tellurium 132' = { +#Te132 - total (wet + dry) deposition +'Te132 - total (wet + dry) deposition' = { discipline = 0 ; parameterCategory = 18 ; - parameterNumber = 14 ; + parameterNumber = 13 ; constituentType = 30129 ; } @@ -7120,14 +7223,6 @@ scaledValueOfFirstFixedSurface = 2 ; } -#paramId: 503355 -#v-component of wind (gust) -'v-component of wind (gust)' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } - #paramId: 503357 #Maximum 10m wind speed without gust 'Maximum 10m wind speed without gust' = { @@ -7279,6 +7374,899 @@ typeOfStatisticalProcessing = 2 ; } +#paramId: 503431 +#Accumulated dry deposition (surface) of dust for mode 1 +'Accumulated dry deposition (surface) of dust for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503432 +#Accumulated dry deposition (surface) of dust for mode 2 +'Accumulated dry deposition (surface) of dust for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503433 +#Accumulated dry deposition (surface) of dust for mode 3 +'Accumulated dry deposition (surface) of dust for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503434 +#Accumulated wet deposition by grid scale precipitation of dust for mode 1 +'Accumulated wet deposition by grid scale precipitation of dust for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503435 +#Accumulated wet deposition by grid scale precipitation of dust for mode 2 +'Accumulated wet deposition by grid scale precipitation of dust for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503436 +#Accumulated wet deposition by grid scale precipitation of dust for mode 3 +'Accumulated wet deposition by grid scale precipitation of dust for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503437 +#Accumulated wet deposition by convective precipitation of dust for mode 1 +'Accumulated wet deposition by convective precipitation of dust for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503438 +#Accumulated wet deposition by convective precipitation of dust for mode 2 +'Accumulated wet deposition by convective precipitation of dust for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503439 +#Accumulated wet deposition by convective precipitation of dust for mode 3 +'Accumulated wet deposition by convective precipitation of dust for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503443 +#Accumulated sedimentation of dust for mode 1 +'Accumulated sedimentation of dust for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503444 +#Accumulated sedimentation of dust for mode 2 +'Accumulated sedimentation of dust for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503445 +#Accumulated sedimentation of dust for mode 3 +'Accumulated sedimentation of dust for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503458 +#Attenuated backscatter from satellite for dust (for given wave length) +'Attenuated backscatter from satellite for dust (for given wave length)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 107 ; + aerosolType = 62001 ; + } + +#paramId: 503459 +#Attenuated backscatter from ground (ceilometer) for dust (for given wave length) +'Attenuated backscatter from ground (ceilometer) for dust (for given wave length)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 108 ; + aerosolType = 62001 ; + } + +#paramId: 503461 +#Attenuated backscatter from satellite for volcanic ash (for given wave length) +'Attenuated backscatter from satellite for volcanic ash (for given wave length)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 107 ; + aerosolType = 62025 ; + } + +#paramId: 503462 +#Attenuated backscatter from ground (ceilometer) for volcanic ash (for given wave length) +'Attenuated backscatter from ground (ceilometer) for volcanic ash (for given wave length)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 108 ; + aerosolType = 62025 ; + } + +#paramId: 503467 +#2m Temperature analysis increment, filtered in time +'2m Temperature analysis increment, filtered in time' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 206 ; + } + +#paramId: 503468 +#Cs137 - total (wet + dry) deposition +'Cs137 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30172 ; + } + +#paramId: 503469 +#Prognostic specific activity concentration of Caesium 137 +'Prognostic specific activity concentration of Caesium 137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30172 ; + } + +#paramId: 503470 +#Averaged air concentration of Caesium 137 +'Averaged air concentration of Caesium 137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30172 ; + } + +#paramId: 503471 +#Accumulated air concentration of Caesium 137 +'Accumulated air concentration of Caesium 137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30172 ; + } + +#paramId: 503480 +#Prognostic specific activity concentration of Krypton 85 +'Prognostic specific activity concentration of Krypton 85' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30059 ; + } + +#paramId: 503481 +#Kr85 - total (wet + dry) deposition +'Kr85 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30059 ; + } + +#paramId: 503482 +#Averaged air concentration of Krypton 85 +'Averaged air concentration of Krypton 85' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30059 ; + } + +#paramId: 503483 +#Accumulated air concentration of Krypton 85 +'Accumulated air concentration of Krypton 85' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30059 ; + } + +#paramId: 503484 +#Prognostic specific activity concentration of Strontium 90 +'Prognostic specific activity concentration of Strontium 90' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30067 ; + } + +#paramId: 503485 +#Averaged air concentration of Strontium 90 +'Averaged air concentration of Strontium 90' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30067 ; + } + +#paramId: 503486 +#Accumulated air concentration of Strontium 90 +'Accumulated air concentration of Strontium 90' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30067 ; + } + +#paramId: 503487 +#Sr90 - total (wet + dry) deposition +'Sr90 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30067 ; + } + +#paramId: 503489 +#I131a - total (wet + dry) deposition +'I131a - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30141 ; + } + +#paramId: 503490 +#Averaged air concentration of Iodine 131 aerosol +'Averaged air concentration of Iodine 131 aerosol' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30141 ; + } + +#paramId: 503491 +#Accumulated air concentration of Iodine 131 aerosol +'Accumulated air concentration of Iodine 131 aerosol' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30141 ; + } + +#paramId: 503492 +#Averaged air concentration of Cobalt 60 +'Averaged air concentration of Cobalt 60' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30042 ; + } + +#paramId: 503493 +#Accumulated air concentration of Cobalt 60 +'Accumulated air concentration of Cobalt 60' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30042 ; + } + +#paramId: 503494 +#Prognostic specific activity concentration of Cobalt 60 +'Prognostic specific activity concentration of Cobalt 60' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30042 ; + } + +#paramId: 503495 +#Co-60 - wet deposition +'Co-60 - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30042 ; + } + +#paramId: 503496 +#Co60 - total (wet + dry) deposition +'Co60 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30042 ; + } + +#paramId: 503497 +#Ru103 - total (wet + dry) deposition +'Ru103 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30102 ; + } + +#paramId: 503499 +#Averaged air concentration of Ruthenium 103 +'Averaged air concentration of Ruthenium 103' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30102 ; + } + +#paramId: 503500 +#Accumulated air concentration of Ruthenium 103 +'Accumulated air concentration of Ruthenium 103' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30102 ; + } + +#paramId: 503501 +#Prognostic specific activity concentration of Tellurium 132 +'Prognostic specific activity concentration of Tellurium 132' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30129 ; + } + +#paramId: 503502 +#Averaged air concentration of Tellurium 132 +'Averaged air concentration of Tellurium 132' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30129 ; + } + +#paramId: 503503 +#Accumulated air concentration of Tellurium 132 +'Accumulated air concentration of Tellurium 132' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30129 ; + } + +#paramId: 503504 +#Zr95 - total (wet + dry) deposition +'Zr95 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30079 ; + } + +#paramId: 503505 +#Averaged air concentration of Zirconium 95 +'Averaged air concentration of Zirconium 95' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30079 ; + } + +#paramId: 503506 +#Accumulated air concentration of Zirconium 95 +'Accumulated air concentration of Zirconium 95' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30079 ; + } + +#paramId: 503507 +#TRACER - total (wet + dry) deposition +'TRACER - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30000 ; + } + +#paramId: 503508 +#Prognostic specific activity concentration of TRACER +'Prognostic specific activity concentration of TRACER' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30000 ; + } + +#paramId: 503509 +#Averaged air concentration of TRACER +'Averaged air concentration of TRACER' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30000 ; + } + +#paramId: 503510 +#Accumulated air concentration of TRACER +'Accumulated air concentration of TRACER' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30000 ; + } + +#paramId: 503511 +#Averaged air concentration of Xenon 133 +'Averaged air concentration of Xenon 133' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30161 ; + } + +#paramId: 503512 +#Accumulated air concentration of Xenon 133 +'Accumulated air concentration of Xenon 133' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30161 ; + } + +#paramId: 503513 +#Xe133 - total (wet + dry) deposition +'Xe133 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30161 ; + } + +#paramId: 503514 +#Air concentration of Iodine 131 +'Air concentration of Iodine 131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30137 ; + } + +#paramId: 503515 +#I131 - dry deposition +'I131 - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30137 ; + } + +#paramId: 503516 +#Averaged air concentration of Iodine 131 +'Averaged air concentration of Iodine 131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30137 ; + } + +#paramId: 503517 +#Accumulated air concentration of Iodine 131 +'Accumulated air concentration of Iodine 131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30137 ; + } + +#paramId: 503518 +#Prognostic specific activity concentration of Iodine 131 +'Prognostic specific activity concentration of Iodine 131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30137 ; + } + +#paramId: 503519 +#I131 - wet deposition +'I131 - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30137 ; + } + +#paramId: 503520 +#I131 - total (wet + dry) deposition +'I131 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30137 ; + } + +#paramId: 503522 +#Averaged air concentration of Iodine 131 elementary gaseous +'Averaged air concentration of Iodine 131 elementary gaseous' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30138 ; + } + +#paramId: 503523 +#Accumulated air concentration of Iodine 131 elementary gaseous +'Accumulated air concentration of Iodine 131 elementary gaseous' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30138 ; + } + +#paramId: 503524 +#I131g - total (wet + dry) deposition +'I131g - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30138 ; + } + +#paramId: 503525 +#Averaged air concentration of Iodine 131 organic bounded +'Averaged air concentration of Iodine 131 organic bounded' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30139 ; + } + +#paramId: 503526 +#Accumulated air concentration of Iodine 131 organic bounded +'Accumulated air concentration of Iodine 131 organic bounded' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30139 ; + } + +#paramId: 503527 +#I131o - total (wet + dry) deposition +'I131o - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30139 ; + } + +#paramId: 503528 +#Ba140 - total (wet + dry) deposition +'Ba140 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30175 ; + } + +#paramId: 503529 +#Averaged air concentration of Barium 140 +'Averaged air concentration of Barium 140' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30175 ; + } + +#paramId: 503530 +#Accumulated air concentration of Barium 140 +'Accumulated air concentration of Barium 140' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30175 ; + } + +#paramId: 503531 +#Air concentration of Ruthenium 106 +'Air concentration of Ruthenium 106' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30104 ; + } + +#paramId: 503532 +#Ru106 - total (wet + dry) deposition +'Ru106 - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30104 ; + } + +#paramId: 503533 +#Prognostic specific activity concentration of Ruthenium 106 +'Prognostic specific activity concentration of Ruthenium 106' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30104 ; + } + +#paramId: 503534 +#Ru106 - dry deposition +'Ru106 - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30104 ; + } + +#paramId: 503535 +#Ru106 - wet deposition +'Ru106 - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30104 ; + } + +#paramId: 503536 +#Averaged air concentration of Ruthenium 106 +'Averaged air concentration of Ruthenium 106' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30104 ; + } + +#paramId: 503537 +#Accumulated air concentration of Ruthenium 106 +'Accumulated air concentration of Ruthenium 106' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30104 ; + } + +#paramId: 503538 +#Co-60 - dry deposition +'Co-60 - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30042 ; + } + +#paramId: 503539 +#Air concentration of Cobalt 60 +'Air concentration of Cobalt 60' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30042 ; + } + +#paramId: 503542 +#Kr85m - wet deposition +'Kr85m - wet deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30060 ; + } + +#paramId: 503543 +#Kr85m - total (wet + dry) deposition +'Kr85m - total (wet + dry) deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30060 ; + } + +#paramId: 503544 +#Prognostic specific activity concentration of Krypton 85m +'Prognostic specific activity concentration of Krypton 85m' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30060 ; + } + +#paramId: 503545 +#Kr85m - dry deposition +'Kr85m - dry deposition' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30060 ; + } + +#paramId: 503546 +#Averaged air concentration of Krypton 85m +'Averaged air concentration of Krypton 85m' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30060 ; + } + +#paramId: 503547 +#Accumulated air concentration of Krypton 85m +'Accumulated air concentration of Krypton 85m' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30060 ; + } + +#paramId: 503548 +#Air concentration of Krypton 85m +'Air concentration of Krypton 85m' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30060 ; + } + +#paramId: 503551 +#Birch (betula) pollen specific number concentration +'Birch (betula) pollen specific number concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62101 ; + } + +#paramId: 503552 +#Alder (alnus) pollen specific number concentration +'Alder (alnus) pollen specific number concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62100 ; + } + +#paramId: 503553 +#Grasses (poaceae) pollen specific number concentration +'Grasses (poaceae) pollen specific number concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62300 ; + } + +#paramId: 503554 +#Ragweed (ambrosia) pollen specific number concentration +'Ragweed (ambrosia) pollen specific number concentration' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62200 ; + } + +#paramId: 503560 +#Total lightning flash density - instantaneous +'Total lightning flash density - instantaneous' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503561 +#Total lightning flash density - time average +'Total lightning flash density - time average' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + #paramId: 500092 #Solar radiation heating rate 'Solar radiation heating rate' = { @@ -7315,16 +8303,16 @@ } #paramId: 500097 -#Stomatal Resistance -'Stomatal Resistance' = { +#Stomatal resistance +'Stomatal resistance' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 195 ; } #paramId: 500109 -#vertical integral of divergence of total water content (s) -'vertical integral of divergence of total water content (s)' = { +#Vertical integral of divergence of total water content - accumulation +'Vertical integral of divergence of total water content - accumulation' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 192 ; @@ -7332,24 +8320,24 @@ } #paramId: 500110 -#subgrid scale cloud water -'subgrid scale cloud water' = { +#Sub-grid scale cloud water +'Sub-grid scale cloud water' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 193 ; } #paramId: 500111 -#subgridscale cloud ice -'subgridscale cloud ice' = { +#Sub-grid scale cloud ice +'Sub-grid scale cloud ice' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 194 ; } #paramId: 500115 -#cloud base above msl, shallow convection -'cloud base above msl, shallow convection' = { +#Cloud base above MSL, shallow convection +'Cloud base above MSL, shallow convection' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 192 ; @@ -7358,8 +8346,8 @@ } #paramId: 500116 -#Cloud top above msl, shallow convection -'Cloud top above msl, shallow convection' = { +#Cloud top above MSL, shallow convection +'Cloud top above MSL, shallow convection' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 193 ; @@ -7368,16 +8356,16 @@ } #paramId: 500117 -#specific cloud water content, convective cloud -'specific cloud water content, convective cloud' = { +#Specific cloud liquid water content, convective cloud +'Specific cloud liquid water content, convective cloud' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 195 ; } #paramId: 500120 -#base index (vertical level) of main convective cloud (i) -'base index (vertical level) of main convective cloud (i)' = { +#Base index (vertical level) of main convective cloud +'Base index (vertical level) of main convective cloud' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 194 ; @@ -7385,8 +8373,8 @@ } #paramId: 500121 -#top index (vertical level) of main convective cloud (i) -'top index (vertical level) of main convective cloud (i)' = { +#Top index (vertical level) of main convective cloud +'Top index (vertical level) of main convective cloud' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 195 ; @@ -7402,24 +8390,24 @@ } #paramId: 500123 -#Specific humitiy tendency due to convection -'Specific humitiy tendency due to convection' = { +#Specific humidity tendency due to convection +'Specific humidity tendency due to convection' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 197 ; } #paramId: 500124 -#zonal wind tendency due to convection -'zonal wind tendency due to convection' = { +#Zonal wind tendency due to convection +'Zonal wind tendency due to convection' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 192 ; } #paramId: 500125 -#meridional wind tendency due to convection -'meridional wind tendency due to convection' = { +#Meridional wind tendency due to convection +'Meridional wind tendency due to convection' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 193 ; @@ -7446,16 +8434,16 @@ } #paramId: 500129 -#Tendency of specific cloud liquid water content due to conversion -'Tendency of specific cloud liquid water content due to conversion' = { +#Tendency of specific cloud liquid water content due to convection +'Tendency of specific cloud liquid water content due to convection' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 198 ; } #paramId: 500130 -#tendency of specific cloud ice content due to convection -'tendency of specific cloud ice content due to convection' = { +#Tendency of specific cloud ice content due to convection +'Tendency of specific cloud ice content due to convection' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 199 ; @@ -7470,24 +8458,24 @@ } #paramId: 500140 -#Temperature tendency due to grid scale precipation -'Temperature tendency due to grid scale precipation' = { +#Temperature tendency due to grid scale precipitation +'Temperature tendency due to grid scale precipitation' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 193 ; } #paramId: 500141 -#Specific humitiy tendency due to grid scale precipitation -'Specific humitiy tendency due to grid scale precipitation' = { +#Specific humidity tendency due to grid scale precipitation +'Specific humidity tendency due to grid scale precipitation' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 200 ; } #paramId: 500142 -#tendency of specific cloud liquid water content due to grid scale precipitation -'tendency of specific cloud liquid water content due to grid scale precipitation' = { +#Tendency of specific cloud liquid water content due to grid scale precipitation +'Tendency of specific cloud liquid water content due to grid scale precipitation' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 201 ; @@ -7502,8 +8490,8 @@ } #paramId: 500144 -#tendency of specific cloud ice content due to grid scale precipitation -'tendency of specific cloud ice content due to grid scale precipitation' = { +#Tendency of specific cloud ice content due to grid scale precipitation +'Tendency of specific cloud ice content due to grid scale precipitation' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 202 ; @@ -7518,16 +8506,16 @@ } #paramId: 500149 -#supercell detection index 1 (rot. up+down drafts) -'supercell detection index 1 (rot. up+down drafts)' = { +#Supercell detection index 1 (rot. up- and downdrafts) +'Supercell detection index 1 (rot. up- and downdrafts)' = { discipline = 0 ; parameterCategory = 7 ; parameterNumber = 192 ; } #paramId: 500150 -#supercell detection index 2 (only rot. up drafts) -'supercell detection index 2 (only rot. up drafts)' = { +#Supercell detection index 2 (only rot. updrafts) +'Supercell detection index 2 (only rot. updrafts)' = { discipline = 0 ; parameterCategory = 7 ; parameterNumber = 193 ; @@ -7578,16 +8566,16 @@ } #paramId: 500157 -#Kinetic Energy -'Kinetic Energy' = { +#Kinetic energy +'Kinetic energy' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 196 ; } #paramId: 500176 -#solution of 2-d Helmholtz equations - needed for restart -'solution of 2-d Helmholtz equations - needed for restart' = { +#Solution of 2-d Helmholtz equations - needed for restart +'Solution of 2-d Helmholtz equations - needed for restart' = { discipline = 0 ; parameterCategory = 191 ; parameterNumber = 192 ; @@ -7602,40 +8590,40 @@ } #paramId: 500178 -#sum of contributions to evaporation -'sum of contributions to evaporation' = { +#Sum of contributions to evaporation +'Sum of contributions to evaporation' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 192 ; } #paramId: 500179 -#total transpiration from all soil layers -'total transpiration from all soil layers' = { +#Total transpiration from all soil layers +'Total transpiration from all soil layers' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 193 ; } #paramId: 500180 -#total forcing at soil surface -'total forcing at soil surface' = { +#Total forcing at soil surface +'Total forcing at soil surface' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 194 ; } #paramId: 500181 -#residuum of soil moisture -'residuum of soil moisture' = { +#Residuum of soil moisture +'Residuum of soil moisture' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 195 ; } #paramId: 500182 -#Massflux at convective cloud base -'Massflux at convective cloud base' = { +#Mass flux at convective cloud base +'Mass flux at convective cloud base' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 205 ; @@ -7643,16 +8631,16 @@ } #paramId: 500184 -#moisture convergence for Kuo-type closure -'moisture convergence for Kuo-type closure' = { +#Moisture convergence for Kuo-type closure +'Moisture convergence for Kuo-type closure' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 206 ; } #paramId: 500195 -#analysis error(standard deviation), geopotential(gpm) -'analysis error(standard deviation), geopotential(gpm)' = { +#Analysis error (standard deviation), geopotential (gpm) +'Analysis error (standard deviation), geopotential (gpm)' = { discipline = 0 ; parameterCategory = 194 ; parameterNumber = 5 ; @@ -7660,8 +8648,8 @@ } #paramId: 500196 -#analysis error(standard deviation), u-comp. of wind -'analysis error(standard deviation), u-comp. of wind' = { +#Analysis error (standard deviation), u-comp. of wind +'Analysis error (standard deviation), u-comp. of wind' = { discipline = 0 ; parameterCategory = 194 ; parameterNumber = 2 ; @@ -7669,8 +8657,8 @@ } #paramId: 500197 -#analysis error(standard deviation), v-comp. of wind -'analysis error(standard deviation), v-comp. of wind' = { +#Analysis error (standard deviation), v-comp. of wind +'Analysis error (standard deviation), v-comp. of wind' = { discipline = 0 ; parameterCategory = 194 ; parameterNumber = 3 ; @@ -7678,56 +8666,56 @@ } #paramId: 500198 -#zonal wind tendency due to subgrid scale oro. -'zonal wind tendency due to subgrid scale oro.' = { +#Zonal wind tendency due to sub-grid scale oro. +'Zonal wind tendency due to sub-grid scale oro.' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 194 ; } #paramId: 500199 -#meridional wind tendency due to subgrid scale oro. -'meridional wind tendency due to subgrid scale oro.' = { +#Meridional wind tendency due to sub-grid scale oro. +'Meridional wind tendency due to sub-grid scale oro.' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 195 ; } #paramId: 500204 -#surface emissivity -'surface emissivity' = { +#Surface emissivity +'Surface emissivity' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 199 ; } #paramId: 500205 -#soil type of grid (1...9, local soilType.table) -'soil type of grid (1...9, local soilType.table)' = { +#Soil type (1...9, local soilType.table) +'Soil type (1...9, local soilType.table)' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 196 ; } #paramId: 500208 -#height of ozone maximum (climatological) -'height of ozone maximum (climatological)' = { +#Height of ozone maximum (climatological) +'Height of ozone maximum (climatological)' = { discipline = 0 ; parameterCategory = 14 ; parameterNumber = 192 ; } #paramId: 500209 -#vertically integrated ozone content (climatological) -'vertically integrated ozone content (climatological)' = { +#Vertically integrated ozone content (climatological) +'Vertically integrated ozone content (climatological)' = { discipline = 0 ; parameterCategory = 14 ; parameterNumber = 193 ; } #paramId: 500221 -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { +#Ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +'Ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 192 ; @@ -7735,24 +8723,24 @@ } #paramId: 500222 -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum -'ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { +#Ratio of NDVI (normalized differential vegetation index) to annual maximum +'Ratio of NDVI (normalized differential vegetation index) to annual maximum' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 192 ; } #paramId: 500233 -#tendency of specific humidity -'tendency of specific humidity' = { +#Tendency of specific humidity +'Tendency of specific humidity' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 207 ; } #paramId: 500234 -#water vapor flux -'water vapor flux' = { +#Water vapor flux +'Water vapor flux' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 208 ; @@ -7767,32 +8755,32 @@ } #paramId: 500239 -#Delay of the GPS signal trough the (total) atm. -'Delay of the GPS signal trough the (total) atm.' = { +#Delay of the GPS signal through the (total) atmos. +'Delay of the GPS signal through the (total) atmos.' = { discipline = 0 ; parameterCategory = 15 ; parameterNumber = 192 ; } #paramId: 500240 -#Delay of the GPS signal trough wet atmos. -'Delay of the GPS signal trough wet atmos.' = { +#Delay of the GPS signal through wet atmos. +'Delay of the GPS signal through wet atmos.' = { discipline = 0 ; parameterCategory = 15 ; parameterNumber = 193 ; } #paramId: 500241 -#Delay of the GPS signal trough dry atmos. -'Delay of the GPS signal trough dry atmos.' = { +#Delay of the GPS signal through dry atmos. +'Delay of the GPS signal through dry atmos.' = { discipline = 0 ; parameterCategory = 15 ; parameterNumber = 194 ; } #paramId: 500279 -#u-momentum flux due to SSO-effects (initialisation) -'u-momentum flux due to SSO-effects (initialisation)' = { +#U-momentum flux due to SSO-effects (mean over forecast time) +'U-momentum flux due to SSO-effects (mean over forecast time)' = { discipline = 0 ; parameterCategory = 3 ; parameterNumber = 193 ; @@ -7800,16 +8788,16 @@ } #paramId: 500280 -#u-momentum flux due to SSO-effects -'u-momentum flux due to SSO-effects' = { +#U-momentum flux due to SSO-effects +'U-momentum flux due to SSO-effects' = { discipline = 0 ; parameterCategory = 3 ; parameterNumber = 193 ; } #paramId: 500281 -#v-momentum flux due to SSO-effects -'v-momentum flux due to SSO-effects' = { +#V-momentum flux due to SSO-effects (mean over forecast time) +'V-momentum flux due to SSO-effects (mean over forecast time)' = { discipline = 0 ; parameterCategory = 3 ; parameterNumber = 194 ; @@ -7817,8 +8805,8 @@ } #paramId: 500282 -#v-momentum flux due to SSO-effects -'v-momentum flux due to SSO-effects' = { +#V-momentum flux due to SSO-effects +'V-momentum flux due to SSO-effects' = { discipline = 0 ; parameterCategory = 3 ; parameterNumber = 194 ; @@ -7916,24 +8904,24 @@ } #paramId: 500306 -#modified cloud depth for media -'modified cloud depth for media' = { +#Modified cloud depth for media +'Modified cloud depth for media' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 198 ; } #paramId: 500307 -#modified cloud cover for media -'modified cloud cover for media' = { +#Modified cloud cover for media +'Modified cloud cover for media' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 199 ; } #paramId: 500322 -#Kinetic Energy -'Kinetic Energy' = { +#RMS of difference "first guess - analysis" of kinetic energy +'RMS of difference "first guess - analysis" of kinetic energy' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 196 ; @@ -7942,8 +8930,8 @@ } #paramId: 500323 -#Kinetic Energy -'Kinetic Energy' = { +#RMS of difference "initialized analysis - analysis" of kinetic energy +'RMS of difference "initialized analysis - analysis" of kinetic energy' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 196 ; @@ -8265,8 +9253,8 @@ } #paramId: 500472 -#Konvektionsart (0..4) -'Konvektionsart (0..4)' = { +#Type of convection (0..4) +'Type of convection (0..4)' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 201 ; @@ -8307,8 +9295,8 @@ } #paramId: 500481 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) -'Downward diffusive short wave radiation flux at surface ( mean over forecast time)' = { +#Downward diffusive short wave radiation flux at surface (mean over forecast time) +'Downward diffusive short wave radiation flux at surface (mean over forecast time)' = { discipline = 0 ; parameterCategory = 4 ; parameterNumber = 199 ; @@ -8593,16 +9581,16 @@ } #paramId: 500541 -#relative vorticity,U-component -'relative vorticity,U-component' = { +#Relative vorticity, u-component +'Relative vorticity, u-component' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 198 ; } #paramId: 500542 -#relative vorticity,V-component -'relative vorticity,V-component' = { +#Relative vorticity, v-component +'Relative vorticity, v-component' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 199 ; @@ -8745,16 +9733,16 @@ } #paramId: 500570 -#dry convection top index -'dry convection top index' = { +#Dry convection top index +'Dry convection top index' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 202 ; } #paramId: 500572 -#tidal tendencies -'tidal tendencies' = { +#Tidal tendencies +'Tidal tendencies' = { discipline = 1 ; parameterCategory = 0 ; parameterNumber = 192 ; @@ -8777,8 +9765,8 @@ } #paramId: 500577 -#variance of soil moisture content -'variance of soil moisture content' = { +#Variance of soil moisture content +'Variance of soil moisture content' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 197 ; @@ -8786,8 +9774,8 @@ } #paramId: 500578 -#covariance of soil moisture content -'covariance of soil moisture content' = { +#Covariance of soil moisture content +'Covariance of soil moisture content' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 198 ; @@ -8811,8 +9799,8 @@ } #paramId: 500591 -#Niederschlagsdargebot aus Modell SNOW -'Niederschlagsdargebot aus Modell SNOW' = { +#Niederschlagsdargebot: potential water supply (rain and snow melt) from snowpack - accumulation +'Niederschlagsdargebot: potential water supply (rain and snow melt) from snowpack - accumulation' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 209 ; @@ -8946,32 +9934,32 @@ } #paramId: 500634 -#wake-production of TKE due to sub grid scale orography -'wake-production of TKE due to sub grid scale orography' = { +#Wake-production of TKE due to sub-grid scale orography +'Wake-production of TKE due to sub-grid scale orography' = { discipline = 0 ; parameterCategory = 19 ; parameterNumber = 220 ; } #paramId: 500635 -#shear-production of TKE due to separated horizontal shear modes -'shear-production of TKE due to separated horizontal shear modes' = { +#Shear-production of TKE due to separated horizontal shear modes +'Shear-production of TKE due to separated horizontal shear modes' = { discipline = 0 ; parameterCategory = 19 ; parameterNumber = 221 ; } #paramId: 500636 -#buoyancy-production of TKE due to sub grid scale convection -'buoyancy-production of TKE due to sub grid scale convection' = { +#Buoyancy-production of TKE due to sub-grid scale convection +'Buoyancy-production of TKE due to sub-grid scale convection' = { discipline = 0 ; parameterCategory = 19 ; parameterNumber = 219 ; } #paramId: 500637 -#production of TKE -'production of TKE ' = { +#Production of TKE +'Production of TKE' = { discipline = 0 ; parameterCategory = 19 ; parameterNumber = 218 ; @@ -8994,64 +9982,64 @@ } #paramId: 500640 -#mass concentration of dust (minimum mode) -'mass concentration of dust (minimum mode)' = { +#Mass concentration of dust (minimum mode) +'Mass concentration of dust (minimum mode)' = { discipline = 0 ; parameterCategory = 197 ; parameterNumber = 33 ; } #paramId: 500643 -#mass concentration of dust (medium mode) -'mass concentration of dust (medium mode)' = { +#Mass concentration of dust (medium mode) +'Mass concentration of dust (medium mode)' = { discipline = 0 ; parameterCategory = 197 ; parameterNumber = 34 ; } #paramId: 500644 -#mass concentration of dust (maximum mode) -'mass concentration of dust (maximum mode)' = { +#Mass concentration of dust (maximum mode) +'Mass concentration of dust (maximum mode)' = { discipline = 0 ; parameterCategory = 197 ; parameterNumber = 35 ; } #paramId: 500645 -#number concentration of dust (minimum mode) -'number concentration of dust (minimum mode)' = { +#Number concentration of dust (minimum mode) +'Number concentration of dust (minimum mode)' = { discipline = 0 ; parameterCategory = 197 ; parameterNumber = 72 ; } #paramId: 500646 -#number concentration of dust (medium mode) -'number concentration of dust (medium mode)' = { +#Number concentration of dust (medium mode) +'Number concentration of dust (medium mode)' = { discipline = 0 ; parameterCategory = 197 ; parameterNumber = 73 ; } #paramId: 500647 -#number concentration of dust (maximum mode) -'number concentration of dust (maximum mode)' = { +#Number concentration of dust (maximum mode) +'Number concentration of dust (maximum mode)' = { discipline = 0 ; parameterCategory = 197 ; parameterNumber = 74 ; } #paramId: 500648 -#mass concentration of dust (sum of all modes) -'mass concentration of dust (sum of all modes)' = { +#Mass concentration of dust (sum of all modes) +'Mass concentration of dust (sum of all modes)' = { discipline = 0 ; parameterCategory = 197 ; parameterNumber = 251 ; } #paramId: 500649 -#number concentration of dust (sum of all modes) -'number concentration of dust (sum of all modes)' = { +#Number concentration of dust (sum of all modes) +'Number concentration of dust (sum of all modes)' = { discipline = 0 ; parameterCategory = 197 ; parameterNumber = 252 ; @@ -10081,118 +11069,6 @@ parameterNumber = 128 ; } -#paramId: 500779 -#DUMMY_129 -'DUMMY_129' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 129 ; - } - -#paramId: 500780 -#DUMMY_130 -'DUMMY_130' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 130 ; - } - -#paramId: 500781 -#DUMMY_131 -'DUMMY_131' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 131 ; - } - -#paramId: 500782 -#DUMMY_132 -'DUMMY_132' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 132 ; - } - -#paramId: 500783 -#DUMMY_133 -'DUMMY_133' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 133 ; - } - -#paramId: 500784 -#DUMMY_134 -'DUMMY_134' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 134 ; - } - -#paramId: 500785 -#DUMMY_135 -'DUMMY_135' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 135 ; - } - -#paramId: 500786 -#DUMMY_136 -'DUMMY_136' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 136 ; - } - -#paramId: 500787 -#DUMMY_137 -'DUMMY_137' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 137 ; - } - -#paramId: 500788 -#DUMMY_138 -'DUMMY_138' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 138 ; - } - -#paramId: 500789 -#DUMMY_139 -'DUMMY_139' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 139 ; - } - -#paramId: 500790 -#DUMMY_140 -'DUMMY_140' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 140 ; - } - -#paramId: 500791 -#DUMMY_141 -'DUMMY_141' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 141 ; - } - -#paramId: 500792 -#DUMMY_142 -'DUMMY_142' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 142 ; - } - #paramId: 500793 #DUMMY_143 'DUMMY_143' = { @@ -11090,8 +11966,8 @@ } #paramId: 502332 -#Liquid water content in the snow in - multi level -'Liquid water content in the snow in - multi level ' = { +#Liquid water content in snow - multi level +'Liquid water content in snow - multi level' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 210 ; @@ -11108,8 +11984,8 @@ } #paramId: 502344 -#Albedo - diffusive solar (0.3 - 0.7 m-6) -'Albedo - diffusive solar (0.3 - 0.7 m-6)' = { +#Albedo - diffusive solar - time average (UV: 0.3 - 0.7 m-6) +'Albedo - diffusive solar - time average (UV: 0.3 - 0.7 m-6)' = { discipline = 0 ; parameterCategory = 19 ; parameterNumber = 222 ; @@ -11117,8 +11993,8 @@ } #paramId: 502345 -#Albedo - UV (0.3 - 0.7 m-6) -'Albedo - UV (0.3 - 0.7 m-6)' = { +#Albedo - diffusive solar (UV: 0.3 - 0.7 m-6) +'Albedo - diffusive solar (UV: 0.3 - 0.7 m-6)' = { discipline = 0 ; parameterCategory = 19 ; parameterNumber = 222 ; @@ -11174,32 +12050,32 @@ } #paramId: 503050 -#Radar Precipitation Rate -'Radar Precipitation Rate' = { +#Radar precipitation rate +'Radar precipitation rate' = { discipline = 0 ; parameterCategory = 15 ; parameterNumber = 195 ; } #paramId: 503052 -#Radar Quality Information -'Radar Quality Information' = { +#Radar quality information +'Radar quality information' = { discipline = 0 ; parameterCategory = 15 ; parameterNumber = 196 ; } #paramId: 503053 -#Radar Blacklist -'Radar Blacklist' = { +#Radar blacklist +'Radar blacklist' = { discipline = 0 ; parameterCategory = 15 ; parameterNumber = 197 ; } #paramId: 503054 -#Height of Radarbeam above Ground -'Height of Radarbeam above Ground' = { +#Height of radar beam above ground +'Height of radar beam above ground' = { discipline = 0 ; parameterCategory = 15 ; parameterNumber = 198 ; @@ -11254,8 +12130,8 @@ } #paramId: 503061 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) -'Downward diffusive short wave radiation flux at surface ( mean over forecast time)' = { +#Downward diffusive short wave radiation flux at surface (mean over forecast time) +'Downward diffusive short wave radiation flux at surface (mean over forecast time)' = { discipline = 0 ; parameterCategory = 4 ; parameterNumber = 199 ; @@ -11325,16 +12201,16 @@ } #paramId: 503078 -#relative humidity over mixed phase -'relative humidity over mixed phase' = { +#Relative humidity over mixed phase +'Relative humidity over mixed phase' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 220 ; } #paramId: 503079 -#soil moisture index (multilayers) -'soil moisture index (multilayers)' = { +#Soil moisture index (multilayers) +'Soil moisture index (multilayers)' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 200 ; @@ -11479,8 +12355,8 @@ } #paramId: 503143 -#rain-drain-from-snowpack -'rain-drain-from-snowpack' = { +#Rain drain from snowpack - accumulation +'Rain drain from snowpack - accumulation' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 230 ; @@ -11648,8 +12524,8 @@ } #paramId: 503168 -#Relative duration of sunshine (DURSUN * 100 / DURSON M) -'Relative duration of sunshine (DURSUN * 100 / DURSON M)' = { +#Relative duration of sunshine (DURSUN * 100 / DURSUN_M) +'Relative duration of sunshine (DURSUN * 100 / DURSUN_M)' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 206 ; @@ -11726,48 +12602,48 @@ } #paramId: 503180 -#Along-wind lagrangian timescale (Hanna) -'Along-wind lagrangian timescale (Hanna)' = { +#Along-wind Lagrangian time scale (Hanna) +'Along-wind Lagrangian time scale (Hanna)' = { discipline = 215 ; parameterCategory = 2 ; parameterNumber = 1 ; } #paramId: 503181 -#Cross-wind lagrangian timescale (Hanna) -'Cross-wind lagrangian timescale (Hanna)' = { +#Cross-wind Lagrangian time scale (Hanna) +'Cross-wind Lagrangian time scale (Hanna)' = { discipline = 215 ; parameterCategory = 2 ; parameterNumber = 2 ; } #paramId: 503182 -#Vertical lagrangian timescale (Hanna) -'Vertical lagrangian timescale (Hanna)' = { +#Vertical Lagrangian time scale (Hanna) +'Vertical Lagrangian time scale (Hanna)' = { discipline = 215 ; parameterCategory = 2 ; parameterNumber = 3 ; } #paramId: 503183 -#Zonal lagrangian timescale (direct) (Hanna) -'Zonal lagrangian timescale (direct) (Hanna)' = { +#Zonal Lagrangian time scale (direct) (Hanna) +'Zonal Lagrangian time scale (direct) (Hanna)' = { discipline = 215 ; parameterCategory = 2 ; parameterNumber = 4 ; } #paramId: 503184 -#Meridional lagrangian timescale (direct) (Hanna) -'Meridional lagrangian timescale (direct) (Hanna)' = { +#Meridional Lagrangian time scale (direct) (Hanna) +'Meridional Lagrangian time scale (direct) (Hanna)' = { discipline = 215 ; parameterCategory = 2 ; parameterNumber = 5 ; } #paramId: 503185 -#Vertical lagrangian timescale (direct) (Hanna) -'Vertical lagrangian timescale (direct) (Hanna)' = { +#Vertical Lagrangian time scale (direct) (Hanna) +'Vertical Lagrangian time scale (direct) (Hanna)' = { discipline = 215 ; parameterCategory = 2 ; parameterNumber = 6 ; @@ -11904,16 +12780,16 @@ } #paramId: 503208 -#Swiss coodinate (south-north) -'Swiss coodinate (south-north)' = { +#Swiss coordinate (south-north) +'Swiss coordinate (south-north)' = { discipline = 0 ; parameterCategory = 191 ; parameterNumber = 198 ; } #paramId: 503209 -#Swiss coodinate (west-east) -'Swiss coodinate (west-east)' = { +#Swiss coordinate (west-east) +'Swiss coordinate (west-east)' = { discipline = 0 ; parameterCategory = 191 ; parameterNumber = 199 ; @@ -12028,8 +12904,8 @@ } #paramId: 503292 -#sea ice albedo - diffusive solar (0.3 - 5.0 m-6) -'sea ice albedo - diffusive solar (0.3 - 5.0 m-6) ' = { +#Sea ice albedo - diffusive solar (0.3 - 5.0 m-6) +'Sea ice albedo - diffusive solar (0.3 - 5.0 m-6)' = { discipline = 0 ; parameterCategory = 19 ; parameterNumber = 234 ; @@ -12076,8 +12952,8 @@ } #paramId: 503342 -#Maximum rotation amplitude (positive or negative) (over given time interval and column) -'Maximum rotation amplitude (positive or negative) (over given time interval and column)' = { +#Maximum rotation amplitude (positive or negative) (over given time interval and column) +'Maximum rotation amplitude (positive or negative) (over given time interval and column)' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 206 ; @@ -12110,6 +12986,18 @@ parameterNumber = 4 ; } +#paramId: 503355 +#Maximum 10m dynamical gust +'Maximum 10m dynamical gust' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + #paramId: 503356 #Maximum 10m convective gust 'Maximum 10m convective gust' = { @@ -12131,8 +13019,8 @@ } #paramId: 503359 -#evaporation of plants (integrated since "nightly reset") -'evaporation of plants (integrated since "nightly reset")' = { +#Evaporation of plants (integrated since "nightly reset") +'Evaporation of plants (integrated since "nightly reset")' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 198 ; @@ -12610,3 +13498,312 @@ parameterNumber = 235 ; } +#paramId: 503427 +#U-component of (vertical) wind shear vector between two levels +'U-component of (vertical) wind shear vector between two levels' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 208 ; + } + +#paramId: 503428 +#V-component of (vertical) wind shear vector between two levels +'V-component of (vertical) wind shear vector between two levels' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 209 ; + } + +#paramId: 503440 +#Accumulated wet deposition of dust if rain reaches the surface for mode 1 +'Accumulated wet deposition of dust if rain reaches the surface for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503441 +#Accumulated wet deposition of dust if rain reaches the surface for mode 2 +'Accumulated wet deposition of dust if rain reaches the surface for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503442 +#Accumulated wet deposition of dust if rain reaches the surface for mode 3 +'Accumulated wet deposition of dust if rain reaches the surface for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503446 +#Accumulated dry deposition of dust number concentration for mode 1 +'Accumulated dry deposition of dust number concentration for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503447 +#Accumulated dry deposition of dust number concentration for mode 2 +'Accumulated dry deposition of dust number concentration for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503448 +#Accumulated dry deposition of dust number concentration for mode 3 +'Accumulated dry deposition of dust number concentration for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503449 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 1 +'Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503450 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 2 +'Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503451 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 3 +'Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503452 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 1 +'Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503453 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 2 +'Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503454 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 3 +'Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503455 +#Accumulated sedimentation of dust number concentration for mode 1 +'Accumulated sedimentation of dust number concentration for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503456 +#Accumulated sedimentation of dust number concentration for mode 2 +'Accumulated sedimentation of dust number concentration for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503457 +#Accumulated sedimentation of dust number concentration for mode 3 +'Accumulated sedimentation of dust number concentration for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503460 +#Mineral dust backscatter (not attenuated, for given wave length) +'Mineral dust backscatter (not attenuated, for given wave length)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 209 ; + aerosolType = 62001 ; + } + +#paramId: 503463 +#Volcanic ash backscatter (not attenuated, for given wave length) +'Volcanic ash backscatter (not attenuated, for given wave length)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 209 ; + aerosolType = 62025 ; + } + +#paramId: 503464 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 3 +'Accumulated wet deposition by convective precipitation of dust number concentration for mode 3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503465 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 2 +'Accumulated wet deposition by convective precipitation of dust number concentration for mode 2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503466 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 1 +'Accumulated wet deposition by convective precipitation of dust number concentration for mode 1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503549 +#Swiss coordinate LV 95 (south-north) +'Swiss coordinate LV 95 (south-north)' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 200 ; + } + +#paramId: 503550 +#Swiss coordinate LV 95 (west-east) +'Swiss coordinate LV 95 (west-east)' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 201 ; + } + +#paramId: 503555 +#Average hail diameter +'Average hail diameter' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 503556 +#Standard deviation of hail diameter +'Standard deviation of hail diameter' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 6 ; + } + +#paramId: 503557 +#Maximum hail diameter +'Maximum hail diameter' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503558 +#Duration of updraft +'Duration of updraft' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 210 ; + } + +#paramId: 503559 +#Updraft mask +'Updraft mask' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 211 ; + } + diff --git a/definitions/grib2/localConcepts/edzw/paramId.def b/definitions/grib2/localConcepts/edzw/paramId.def index 577dc03a6..9b31c68c9 100755 --- a/definitions/grib2/localConcepts/edzw/paramId.def +++ b/definitions/grib2/localConcepts/edzw/paramId.def @@ -1,4 +1,4 @@ -# Automatically generated by get_definitions.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2018-06-07 07:57 +# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 #paramId: 500000 #Pressure (S) (not reduced) '500000' = { @@ -895,7 +895,7 @@ } #paramId: 500097 -#Stomatal Resistance +#Stomatal resistance '500097' = { discipline = 2 ; parameterCategory = 0 ; @@ -991,7 +991,7 @@ } #paramId: 500109 -#vertical integral of divergence of total water content (s) +#Vertical integral of divergence of total water content - accumulation '500109' = { discipline = 0 ; parameterCategory = 1 ; @@ -1000,7 +1000,7 @@ } #paramId: 500110 -#subgrid scale cloud water +#Sub-grid scale cloud water '500110' = { discipline = 0 ; parameterCategory = 1 ; @@ -1008,7 +1008,7 @@ } #paramId: 500111 -#subgridscale cloud ice +#Sub-grid scale cloud ice '500111' = { discipline = 0 ; parameterCategory = 1 ; @@ -1016,7 +1016,7 @@ } #paramId: 500115 -#cloud base above msl, shallow convection +#Cloud base above MSL, shallow convection '500115' = { discipline = 0 ; parameterCategory = 6 ; @@ -1026,7 +1026,7 @@ } #paramId: 500116 -#Cloud top above msl, shallow convection +#Cloud top above MSL, shallow convection '500116' = { discipline = 0 ; parameterCategory = 6 ; @@ -1036,7 +1036,7 @@ } #paramId: 500117 -#specific cloud water content, convective cloud +#Specific cloud liquid water content, convective cloud '500117' = { discipline = 0 ; parameterCategory = 1 ; @@ -1064,7 +1064,7 @@ } #paramId: 500120 -#base index (vertical level) of main convective cloud (i) +#Base index (vertical level) of main convective cloud '500120' = { discipline = 0 ; parameterCategory = 6 ; @@ -1073,7 +1073,7 @@ } #paramId: 500121 -#top index (vertical level) of main convective cloud (i) +#Top index (vertical level) of main convective cloud '500121' = { discipline = 0 ; parameterCategory = 6 ; @@ -1090,7 +1090,7 @@ } #paramId: 500123 -#Specific humitiy tendency due to convection +#Specific humidity tendency due to convection '500123' = { discipline = 0 ; parameterCategory = 1 ; @@ -1098,7 +1098,7 @@ } #paramId: 500124 -#zonal wind tendency due to convection +#Zonal wind tendency due to convection '500124' = { discipline = 0 ; parameterCategory = 2 ; @@ -1106,7 +1106,7 @@ } #paramId: 500125 -#meridional wind tendency due to convection +#Meridional wind tendency due to convection '500125' = { discipline = 0 ; parameterCategory = 2 ; @@ -1144,7 +1144,7 @@ } #paramId: 500129 -#Tendency of specific cloud liquid water content due to conversion +#Tendency of specific cloud liquid water content due to convection '500129' = { discipline = 0 ; parameterCategory = 1 ; @@ -1152,7 +1152,7 @@ } #paramId: 500130 -#tendency of specific cloud ice content due to convection +#Tendency of specific cloud ice content due to convection '500130' = { discipline = 0 ; parameterCategory = 1 ; @@ -1236,7 +1236,7 @@ } #paramId: 500140 -#Temperature tendency due to grid scale precipation +#Temperature tendency due to grid scale precipitation '500140' = { discipline = 0 ; parameterCategory = 0 ; @@ -1244,7 +1244,7 @@ } #paramId: 500141 -#Specific humitiy tendency due to grid scale precipitation +#Specific humidity tendency due to grid scale precipitation '500141' = { discipline = 0 ; parameterCategory = 1 ; @@ -1252,7 +1252,7 @@ } #paramId: 500142 -#tendency of specific cloud liquid water content due to grid scale precipitation +#Tendency of specific cloud liquid water content due to grid scale precipitation '500142' = { discipline = 0 ; parameterCategory = 1 ; @@ -1268,7 +1268,7 @@ } #paramId: 500144 -#tendency of specific cloud ice content due to grid scale precipitation +#Tendency of specific cloud ice content due to grid scale precipitation '500144' = { discipline = 0 ; parameterCategory = 1 ; @@ -1309,7 +1309,7 @@ } #paramId: 500149 -#supercell detection index 1 (rot. up+down drafts) +#Supercell detection index 1 (rot. up- and downdrafts) '500149' = { discipline = 0 ; parameterCategory = 7 ; @@ -1317,7 +1317,7 @@ } #paramId: 500150 -#supercell detection index 2 (only rot. up drafts) +#Supercell detection index 2 (only rot. updrafts) '500150' = { discipline = 0 ; parameterCategory = 7 ; @@ -1377,7 +1377,7 @@ } #paramId: 500157 -#Kinetic Energy +#Kinetic energy '500157' = { discipline = 0 ; parameterCategory = 2 ; @@ -1533,7 +1533,7 @@ } #paramId: 500176 -#solution of 2-d Helmholtz equations - needed for restart +#Solution of 2-d Helmholtz equations - needed for restart '500176' = { discipline = 0 ; parameterCategory = 191 ; @@ -1549,7 +1549,7 @@ } #paramId: 500178 -#sum of contributions to evaporation +#Sum of contributions to evaporation '500178' = { discipline = 2 ; parameterCategory = 3 ; @@ -1557,7 +1557,7 @@ } #paramId: 500179 -#total transpiration from all soil layers +#Total transpiration from all soil layers '500179' = { discipline = 2 ; parameterCategory = 3 ; @@ -1565,7 +1565,7 @@ } #paramId: 500180 -#total forcing at soil surface +#Total forcing at soil surface '500180' = { discipline = 2 ; parameterCategory = 3 ; @@ -1573,7 +1573,7 @@ } #paramId: 500181 -#residuum of soil moisture +#Residuum of soil moisture '500181' = { discipline = 2 ; parameterCategory = 3 ; @@ -1581,7 +1581,7 @@ } #paramId: 500182 -#Massflux at convective cloud base +#Mass flux at convective cloud base '500182' = { discipline = 0 ; parameterCategory = 1 ; @@ -1598,7 +1598,7 @@ } #paramId: 500184 -#moisture convergence for Kuo-type closure +#Moisture convergence for Kuo-type closure '500184' = { discipline = 0 ; parameterCategory = 1 ; @@ -1670,7 +1670,7 @@ } #paramId: 500195 -#analysis error(standard deviation), geopotential(gpm) +#Analysis error (standard deviation), geopotential (gpm) '500195' = { discipline = 0 ; parameterCategory = 194 ; @@ -1679,7 +1679,7 @@ } #paramId: 500196 -#analysis error(standard deviation), u-comp. of wind +#Analysis error (standard deviation), u-comp. of wind '500196' = { discipline = 0 ; parameterCategory = 194 ; @@ -1688,7 +1688,7 @@ } #paramId: 500197 -#analysis error(standard deviation), v-comp. of wind +#Analysis error (standard deviation), v-comp. of wind '500197' = { discipline = 0 ; parameterCategory = 194 ; @@ -1697,7 +1697,7 @@ } #paramId: 500198 -#zonal wind tendency due to subgrid scale oro. +#Zonal wind tendency due to sub-grid scale oro. '500198' = { discipline = 0 ; parameterCategory = 2 ; @@ -1705,7 +1705,7 @@ } #paramId: 500199 -#meridional wind tendency due to subgrid scale oro. +#Meridional wind tendency due to sub-grid scale oro. '500199' = { discipline = 0 ; parameterCategory = 2 ; @@ -1745,7 +1745,7 @@ } #paramId: 500204 -#surface emissivity +#Surface emissivity '500204' = { discipline = 2 ; parameterCategory = 3 ; @@ -1753,7 +1753,7 @@ } #paramId: 500205 -#soil type of grid (1...9, local soilType.table) +#Soil type (1...9, local soilType.table) '500205' = { discipline = 2 ; parameterCategory = 3 ; @@ -1777,7 +1777,7 @@ } #paramId: 500208 -#height of ozone maximum (climatological) +#Height of ozone maximum (climatological) '500208' = { discipline = 0 ; parameterCategory = 14 ; @@ -1785,7 +1785,7 @@ } #paramId: 500209 -#vertically integrated ozone content (climatological) +#Vertically integrated ozone content (climatological) '500209' = { discipline = 0 ; parameterCategory = 14 ; @@ -1895,7 +1895,7 @@ } #paramId: 500221 -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +#Ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum '500221' = { discipline = 2 ; parameterCategory = 0 ; @@ -1904,7 +1904,7 @@ } #paramId: 500222 -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +#Ratio of NDVI (normalized differential vegetation index) to annual maximum '500222' = { discipline = 2 ; parameterCategory = 0 ; @@ -2007,7 +2007,7 @@ } #paramId: 500233 -#tendency of specific humidity +#Tendency of specific humidity '500233' = { discipline = 0 ; parameterCategory = 1 ; @@ -2015,7 +2015,7 @@ } #paramId: 500234 -#water vapor flux +#Water vapor flux '500234' = { discipline = 0 ; parameterCategory = 1 ; @@ -2055,7 +2055,7 @@ } #paramId: 500239 -#Delay of the GPS signal trough the (total) atm. +#Delay of the GPS signal through the (total) atmos. '500239' = { discipline = 0 ; parameterCategory = 15 ; @@ -2063,7 +2063,7 @@ } #paramId: 500240 -#Delay of the GPS signal trough wet atmos. +#Delay of the GPS signal through wet atmos. '500240' = { discipline = 0 ; parameterCategory = 15 ; @@ -2071,7 +2071,7 @@ } #paramId: 500241 -#Delay of the GPS signal trough dry atmos. +#Delay of the GPS signal through dry atmos. '500241' = { discipline = 0 ; parameterCategory = 15 ; @@ -2150,7 +2150,7 @@ } #paramId: 500250 -#I131 - dry deposition +#I131a - dry deposition '500250' = { discipline = 0 ; parameterCategory = 18 ; @@ -2159,7 +2159,7 @@ } #paramId: 500251 -#I131 - wet deposition +#I131a - wet deposition '500251' = { discipline = 0 ; parameterCategory = 18 ; @@ -2185,15 +2185,6 @@ constituentType = 30172 ; } -#paramId: 500254 -#Cs137 - wet deposition -'500254' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30172 ; - } - #paramId: 500255 #Air concentration of Tellurium 132 '500255' = { @@ -2411,7 +2402,7 @@ } #paramId: 500279 -#u-momentum flux due to SSO-effects (initialisation) +#U-momentum flux due to SSO-effects (mean over forecast time) '500279' = { discipline = 0 ; parameterCategory = 3 ; @@ -2420,7 +2411,7 @@ } #paramId: 500280 -#u-momentum flux due to SSO-effects +#U-momentum flux due to SSO-effects '500280' = { discipline = 0 ; parameterCategory = 3 ; @@ -2428,7 +2419,7 @@ } #paramId: 500281 -#v-momentum flux due to SSO-effects +#V-momentum flux due to SSO-effects (mean over forecast time) '500281' = { discipline = 0 ; parameterCategory = 3 ; @@ -2437,7 +2428,7 @@ } #paramId: 500282 -#v-momentum flux due to SSO-effects +#V-momentum flux due to SSO-effects '500282' = { discipline = 0 ; parameterCategory = 3 ; @@ -2638,7 +2629,7 @@ } #paramId: 500306 -#modified cloud depth for media +#Modified cloud depth for media '500306' = { discipline = 0 ; parameterCategory = 6 ; @@ -2646,7 +2637,7 @@ } #paramId: 500307 -#modified cloud cover for media +#Modified cloud cover for media '500307' = { discipline = 0 ; parameterCategory = 6 ; @@ -2794,7 +2785,7 @@ } #paramId: 500322 -#Kinetic Energy +#RMS of difference "first guess - analysis" of kinetic energy '500322' = { discipline = 0 ; parameterCategory = 2 ; @@ -2804,7 +2795,7 @@ } #paramId: 500323 -#Kinetic Energy +#RMS of difference "initialized analysis - analysis" of kinetic energy '500323' = { discipline = 0 ; parameterCategory = 2 ; @@ -4341,7 +4332,7 @@ } #paramId: 500472 -#Konvektionsart (0..4) +#Type of convection (0..4) '500472' = { discipline = 0 ; parameterCategory = 6 ; @@ -4407,7 +4398,7 @@ } #paramId: 500481 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) +#Downward diffusive short wave radiation flux at surface (mean over forecast time) '500481' = { discipline = 0 ; parameterCategory = 4 ; @@ -4437,7 +4428,7 @@ } #paramId: 500487 -#Downward direct short wave radiation flux at surface (mean over forecast time) Initialisation +#Downward direct short wave radiation flux (mean over forecast time) Initialisation '500487' = { discipline = 0 ; parameterCategory = 4 ; @@ -4877,7 +4868,7 @@ } #paramId: 500541 -#relative vorticity,U-component +#Relative vorticity, u-component '500541' = { discipline = 0 ; parameterCategory = 2 ; @@ -4885,7 +4876,7 @@ } #paramId: 500542 -#relative vorticity,V-component +#Relative vorticity, v-component '500542' = { discipline = 0 ; parameterCategory = 2 ; @@ -5102,7 +5093,7 @@ } #paramId: 500570 -#dry convection top index +#Dry convection top index '500570' = { discipline = 0 ; parameterCategory = 6 ; @@ -5110,7 +5101,7 @@ } #paramId: 500572 -#tidal tendencies +#Tidal tendencies '500572' = { discipline = 1 ; parameterCategory = 0 ; @@ -5155,7 +5146,7 @@ } #paramId: 500577 -#variance of soil moisture content +#Variance of soil moisture content '500577' = { discipline = 2 ; parameterCategory = 3 ; @@ -5164,7 +5155,7 @@ } #paramId: 500578 -#covariance of soil moisture content +#Covariance of soil moisture content '500578' = { discipline = 2 ; parameterCategory = 3 ; @@ -5279,7 +5270,7 @@ } #paramId: 500591 -#Niederschlagsdargebot aus Modell SNOW +#Niederschlagsdargebot: potential water supply (rain and snow melt) from snowpack - accumulation '500591' = { discipline = 0 ; parameterCategory = 1 ; @@ -5650,7 +5641,7 @@ } #paramId: 500634 -#wake-production of TKE due to sub grid scale orography +#Wake-production of TKE due to sub-grid scale orography '500634' = { discipline = 0 ; parameterCategory = 19 ; @@ -5658,7 +5649,7 @@ } #paramId: 500635 -#shear-production of TKE due to separated horizontal shear modes +#Shear-production of TKE due to separated horizontal shear modes '500635' = { discipline = 0 ; parameterCategory = 19 ; @@ -5666,7 +5657,7 @@ } #paramId: 500636 -#buoyancy-production of TKE due to sub grid scale convection +#Buoyancy-production of TKE due to sub-grid scale convection '500636' = { discipline = 0 ; parameterCategory = 19 ; @@ -5674,7 +5665,7 @@ } #paramId: 500637 -#production of TKE +#Production of TKE '500637' = { discipline = 0 ; parameterCategory = 19 ; @@ -5698,7 +5689,7 @@ } #paramId: 500640 -#mass concentration of dust (minimum mode) +#Mass concentration of dust (minimum mode) '500640' = { discipline = 0 ; parameterCategory = 197 ; @@ -5714,7 +5705,7 @@ } #paramId: 500643 -#mass concentration of dust (medium mode) +#Mass concentration of dust (medium mode) '500643' = { discipline = 0 ; parameterCategory = 197 ; @@ -5722,7 +5713,7 @@ } #paramId: 500644 -#mass concentration of dust (maximum mode) +#Mass concentration of dust (maximum mode) '500644' = { discipline = 0 ; parameterCategory = 197 ; @@ -5730,7 +5721,7 @@ } #paramId: 500645 -#number concentration of dust (minimum mode) +#Number concentration of dust (minimum mode) '500645' = { discipline = 0 ; parameterCategory = 197 ; @@ -5738,7 +5729,7 @@ } #paramId: 500646 -#number concentration of dust (medium mode) +#Number concentration of dust (medium mode) '500646' = { discipline = 0 ; parameterCategory = 197 ; @@ -5746,7 +5737,7 @@ } #paramId: 500647 -#number concentration of dust (maximum mode) +#Number concentration of dust (maximum mode) '500647' = { discipline = 0 ; parameterCategory = 197 ; @@ -5754,7 +5745,7 @@ } #paramId: 500648 -#mass concentration of dust (sum of all modes) +#Mass concentration of dust (sum of all modes) '500648' = { discipline = 0 ; parameterCategory = 197 ; @@ -5762,7 +5753,7 @@ } #paramId: 500649 -#number concentration of dust (sum of all modes) +#Number concentration of dust (sum of all modes) '500649' = { discipline = 0 ; parameterCategory = 197 ; @@ -6794,114 +6785,114 @@ } #paramId: 500779 -#DUMMY_129 +#Effective radius of cloud water '500779' = { discipline = 0 ; - parameterCategory = 254 ; + parameterCategory = 1 ; parameterNumber = 129 ; } #paramId: 500780 -#DUMMY_130 +#Effective radius of rain '500780' = { discipline = 0 ; - parameterCategory = 254 ; + parameterCategory = 1 ; parameterNumber = 130 ; } #paramId: 500781 -#DUMMY_131 +#Effective radius of cloud ice '500781' = { discipline = 0 ; - parameterCategory = 254 ; + parameterCategory = 1 ; parameterNumber = 131 ; } #paramId: 500782 -#DUMMY_132 +#Effective radius of snow '500782' = { discipline = 0 ; - parameterCategory = 254 ; + parameterCategory = 1 ; parameterNumber = 132 ; } #paramId: 500783 -#DUMMY_133 +#Effective radius of graupel '500783' = { discipline = 0 ; - parameterCategory = 254 ; + parameterCategory = 1 ; parameterNumber = 133 ; } #paramId: 500784 -#DUMMY_134 +#Effective radius of hail '500784' = { discipline = 0 ; - parameterCategory = 254 ; + parameterCategory = 1 ; parameterNumber = 134 ; } #paramId: 500785 -#DUMMY_135 +#Effective radius of subgrid liquid clouds '500785' = { discipline = 0 ; - parameterCategory = 254 ; + parameterCategory = 1 ; parameterNumber = 135 ; } #paramId: 500786 -#DUMMY_136 +#Effective radius of subgrid ice clouds '500786' = { discipline = 0 ; - parameterCategory = 254 ; + parameterCategory = 1 ; parameterNumber = 136 ; } #paramId: 500787 -#DUMMY_137 +#Effective aspect ratio of rain '500787' = { discipline = 0 ; - parameterCategory = 254 ; + parameterCategory = 1 ; parameterNumber = 137 ; } #paramId: 500788 -#DUMMY_138 +#Effective aspect ratio of cloud ice '500788' = { discipline = 0 ; - parameterCategory = 254 ; + parameterCategory = 1 ; parameterNumber = 138 ; } #paramId: 500789 -#DUMMY_139 +#Effective aspect ratio of snow '500789' = { discipline = 0 ; - parameterCategory = 254 ; + parameterCategory = 1 ; parameterNumber = 139 ; } #paramId: 500790 -#DUMMY_140 +#Effective aspect ratio of graupel '500790' = { discipline = 0 ; - parameterCategory = 254 ; + parameterCategory = 1 ; parameterNumber = 140 ; } #paramId: 500791 -#DUMMY_141 +#Effective aspect ratio of hail '500791' = { discipline = 0 ; - parameterCategory = 254 ; + parameterCategory = 1 ; parameterNumber = 141 ; } #paramId: 500792 -#DUMMY_142 +#Effective aspect ratio of subgrid ice clouds '500792' = { discipline = 0 ; - parameterCategory = 254 ; + parameterCategory = 1 ; parameterNumber = 142 ; } @@ -8012,7 +8003,7 @@ } #paramId: 502332 -#Liquid water content in the snow in - multi level +#Liquid water content in snow - multi level '502332' = { discipline = 0 ; parameterCategory = 1 ; @@ -8108,7 +8099,7 @@ } #paramId: 502344 -#Albedo - diffusive solar (0.3 - 0.7 m-6) +#Albedo - diffusive solar - time average (UV: 0.3 - 0.7 m-6) '502344' = { discipline = 0 ; parameterCategory = 19 ; @@ -8117,7 +8108,7 @@ } #paramId: 502345 -#Albedo - UV (0.3 - 0.7 m-6) +#Albedo - diffusive solar (UV: 0.3 - 0.7 m-6) '502345' = { discipline = 0 ; parameterCategory = 19 ; @@ -9999,7 +9990,7 @@ } #paramId: 503050 -#Radar Precipitation Rate +#Radar precipitation rate '503050' = { discipline = 0 ; parameterCategory = 15 ; @@ -10007,7 +9998,7 @@ } #paramId: 503052 -#Radar Quality Information +#Radar quality information '503052' = { discipline = 0 ; parameterCategory = 15 ; @@ -10015,7 +10006,7 @@ } #paramId: 503053 -#Radar Blacklist +#Radar blacklist '503053' = { discipline = 0 ; parameterCategory = 15 ; @@ -10023,7 +10014,7 @@ } #paramId: 503054 -#Height of Radarbeam above Ground +#Height of radar beam above ground '503054' = { discipline = 0 ; parameterCategory = 15 ; @@ -10079,7 +10070,7 @@ } #paramId: 503061 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) +#Downward diffusive short wave radiation flux at surface (mean over forecast time) '503061' = { discipline = 0 ; parameterCategory = 4 ; @@ -10115,7 +10106,7 @@ } #paramId: 503065 -#u-momentum flux due to SSO-effects (initialisation) +#u-momentum flux due to SSO-effects '503065' = { discipline = 0 ; parameterCategory = 3 ; @@ -10125,7 +10116,7 @@ } #paramId: 503066 -#v-momentum flux due to SSO-effects (initialisation) +#v-momentum flux due to SSO-effects '503066' = { discipline = 0 ; parameterCategory = 3 ; @@ -10217,7 +10208,7 @@ } #paramId: 503078 -#relative humidity over mixed phase +#Relative humidity over mixed phase '503078' = { discipline = 0 ; parameterCategory = 1 ; @@ -10225,7 +10216,7 @@ } #paramId: 503079 -#soil moisture index (multilayers) +#Soil moisture index (multilayers) '503079' = { discipline = 2 ; parameterCategory = 3 ; @@ -10633,7 +10624,7 @@ } #paramId: 503143 -#rain-drain-from-snowpack +#Rain drain from snowpack - accumulation '503143' = { discipline = 0 ; parameterCategory = 1 ; @@ -10841,7 +10832,7 @@ } #paramId: 503168 -#Relative duration of sunshine (DURSUN * 100 / DURSON M) +#Relative duration of sunshine (DURSUN * 100 / DURSUN_M) '503168' = { discipline = 0 ; parameterCategory = 6 ; @@ -10956,7 +10947,7 @@ } #paramId: 503180 -#Along-wind lagrangian timescale (Hanna) +#Along-wind Lagrangian time scale (Hanna) '503180' = { discipline = 215 ; parameterCategory = 2 ; @@ -10964,7 +10955,7 @@ } #paramId: 503181 -#Cross-wind lagrangian timescale (Hanna) +#Cross-wind Lagrangian time scale (Hanna) '503181' = { discipline = 215 ; parameterCategory = 2 ; @@ -10972,7 +10963,7 @@ } #paramId: 503182 -#Vertical lagrangian timescale (Hanna) +#Vertical Lagrangian time scale (Hanna) '503182' = { discipline = 215 ; parameterCategory = 2 ; @@ -10980,7 +10971,7 @@ } #paramId: 503183 -#Zonal lagrangian timescale (direct) (Hanna) +#Zonal Lagrangian time scale (direct) (Hanna) '503183' = { discipline = 215 ; parameterCategory = 2 ; @@ -10988,7 +10979,7 @@ } #paramId: 503184 -#Meridional lagrangian timescale (direct) (Hanna) +#Meridional Lagrangian time scale (direct) (Hanna) '503184' = { discipline = 215 ; parameterCategory = 2 ; @@ -10996,7 +10987,7 @@ } #paramId: 503185 -#Vertical lagrangian timescale (direct) (Hanna) +#Vertical Lagrangian time scale (direct) (Hanna) '503185' = { discipline = 215 ; parameterCategory = 2 ; @@ -11196,7 +11187,7 @@ } #paramId: 503208 -#Swiss coodinate (south-north) +#Swiss coordinate (south-north) '503208' = { discipline = 0 ; parameterCategory = 191 ; @@ -11204,7 +11195,7 @@ } #paramId: 503209 -#Swiss coodinate (west-east) +#Swiss coordinate (west-east) '503209' = { discipline = 0 ; parameterCategory = 191 ; @@ -11628,11 +11619,11 @@ } #paramId: 503253 -#Prognostic specific activity concentration of Caesium 137 +#Cs137 - wet deposition '503253' = { discipline = 0 ; parameterCategory = 18 ; - parameterNumber = 14 ; + parameterNumber = 11 ; constituentType = 30172 ; } @@ -11646,11 +11637,11 @@ } #paramId: 503255 -#Prognostic specific activity concentration of Tellurium 132 +#Te132 - total (wet + dry) deposition '503255' = { discipline = 0 ; parameterCategory = 18 ; - parameterNumber = 14 ; + parameterNumber = 13 ; constituentType = 30129 ; } @@ -11943,7 +11934,7 @@ } #paramId: 503292 -#sea ice albedo - diffusive solar (0.3 - 5.0 m-6) +#Sea ice albedo - diffusive solar (0.3 - 5.0 m-6) '503292' = { discipline = 0 ; parameterCategory = 19 ; @@ -12360,7 +12351,7 @@ } #paramId: 503342 -#Maximum rotation amplitude (positive or negative) (over given time interval and column) +#Maximum rotation amplitude (positive or negative) (over given time interval and column) '503342' = { discipline = 0 ; parameterCategory = 2 ; @@ -12491,11 +12482,15 @@ } #paramId: 503355 -#v-component of wind (gust) +#Maximum 10m dynamical gust '503355' = { discipline = 0 ; parameterCategory = 2 ; - parameterNumber = 24 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; } #paramId: 503356 @@ -12531,7 +12526,7 @@ } #paramId: 503359 -#evaporation of plants (integrated since "nightly reset") +#Evaporation of plants (integrated since "nightly reset") '503359' = { discipline = 2 ; parameterCategory = 0 ; @@ -13149,3 +13144,1205 @@ parameterNumber = 235 ; } +#paramId: 503427 +#U-component of (vertical) wind shear vector between two levels +'503427' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 208 ; + } + +#paramId: 503428 +#V-component of (vertical) wind shear vector between two levels +'503428' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 209 ; + } + +#paramId: 503431 +#Accumulated dry deposition (surface) of dust for mode 1 +'503431' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503432 +#Accumulated dry deposition (surface) of dust for mode 2 +'503432' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503433 +#Accumulated dry deposition (surface) of dust for mode 3 +'503433' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503434 +#Accumulated wet deposition by grid scale precipitation of dust for mode 1 +'503434' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503435 +#Accumulated wet deposition by grid scale precipitation of dust for mode 2 +'503435' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503436 +#Accumulated wet deposition by grid scale precipitation of dust for mode 3 +'503436' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503437 +#Accumulated wet deposition by convective precipitation of dust for mode 1 +'503437' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503438 +#Accumulated wet deposition by convective precipitation of dust for mode 2 +'503438' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503439 +#Accumulated wet deposition by convective precipitation of dust for mode 3 +'503439' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503440 +#Accumulated wet deposition of dust if rain reaches the surface for mode 1 +'503440' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503441 +#Accumulated wet deposition of dust if rain reaches the surface for mode 2 +'503441' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503442 +#Accumulated wet deposition of dust if rain reaches the surface for mode 3 +'503442' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503443 +#Accumulated sedimentation of dust for mode 1 +'503443' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503444 +#Accumulated sedimentation of dust for mode 2 +'503444' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503445 +#Accumulated sedimentation of dust for mode 3 +'503445' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503446 +#Accumulated dry deposition of dust number concentration for mode 1 +'503446' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503447 +#Accumulated dry deposition of dust number concentration for mode 2 +'503447' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503448 +#Accumulated dry deposition of dust number concentration for mode 3 +'503448' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503449 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 1 +'503449' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503450 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 2 +'503450' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503451 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 3 +'503451' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503452 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 1 +'503452' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503453 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 2 +'503453' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503454 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 3 +'503454' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503455 +#Accumulated sedimentation of dust number concentration for mode 1 +'503455' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503456 +#Accumulated sedimentation of dust number concentration for mode 2 +'503456' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503457 +#Accumulated sedimentation of dust number concentration for mode 3 +'503457' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503458 +#Attenuated backscatter from satellite for dust (for given wave length) +'503458' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 107 ; + aerosolType = 62001 ; + } + +#paramId: 503459 +#Attenuated backscatter from ground (ceilometer) for dust (for given wave length) +'503459' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 108 ; + aerosolType = 62001 ; + } + +#paramId: 503460 +#Mineral dust backscatter (not attenuated, for given wave length) +'503460' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 209 ; + aerosolType = 62001 ; + } + +#paramId: 503461 +#Attenuated backscatter from satellite for volcanic ash (for given wave length) +'503461' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 107 ; + aerosolType = 62025 ; + } + +#paramId: 503462 +#Attenuated backscatter from ground (ceilometer) for volcanic ash (for given wave length) +'503462' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 108 ; + aerosolType = 62025 ; + } + +#paramId: 503463 +#Volcanic ash backscatter (not attenuated, for given wave length) +'503463' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 209 ; + aerosolType = 62025 ; + } + +#paramId: 503464 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 3 +'503464' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503465 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 2 +'503465' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503466 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 1 +'503466' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503467 +#2m Temperature analysis increment, filtered in time +'503467' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 206 ; + } + +#paramId: 503468 +#Cs137 - total (wet + dry) deposition +'503468' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30172 ; + } + +#paramId: 503469 +#Prognostic specific activity concentration of Caesium 137 +'503469' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30172 ; + } + +#paramId: 503470 +#Averaged air concentration of Caesium 137 +'503470' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30172 ; + } + +#paramId: 503471 +#Accumulated air concentration of Caesium 137 +'503471' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30172 ; + } + +#paramId: 503480 +#Prognostic specific activity concentration of Krypton 85 +'503480' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30059 ; + } + +#paramId: 503481 +#Kr85 - total (wet + dry) deposition +'503481' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30059 ; + } + +#paramId: 503482 +#Averaged air concentration of Krypton 85 +'503482' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30059 ; + } + +#paramId: 503483 +#Accumulated air concentration of Krypton 85 +'503483' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30059 ; + } + +#paramId: 503484 +#Prognostic specific activity concentration of Strontium 90 +'503484' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30067 ; + } + +#paramId: 503485 +#Averaged air concentration of Strontium 90 +'503485' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30067 ; + } + +#paramId: 503486 +#Accumulated air concentration of Strontium 90 +'503486' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30067 ; + } + +#paramId: 503487 +#Sr90 - total (wet + dry) deposition +'503487' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30067 ; + } + +#paramId: 503489 +#I131a - total (wet + dry) deposition +'503489' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30141 ; + } + +#paramId: 503490 +#Averaged air concentration of Iodine 131 aerosol +'503490' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30141 ; + } + +#paramId: 503491 +#Accumulated air concentration of Iodine 131 aerosol +'503491' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30141 ; + } + +#paramId: 503492 +#Averaged air concentration of Cobalt 60 +'503492' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30042 ; + } + +#paramId: 503493 +#Accumulated air concentration of Cobalt 60 +'503493' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30042 ; + } + +#paramId: 503494 +#Prognostic specific activity concentration of Cobalt 60 +'503494' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30042 ; + } + +#paramId: 503495 +#Co-60 - wet deposition +'503495' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30042 ; + } + +#paramId: 503496 +#Co60 - total (wet + dry) deposition +'503496' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30042 ; + } + +#paramId: 503497 +#Ru103 - total (wet + dry) deposition +'503497' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30102 ; + } + +#paramId: 503499 +#Averaged air concentration of Ruthenium 103 +'503499' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30102 ; + } + +#paramId: 503500 +#Accumulated air concentration of Ruthenium 103 +'503500' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30102 ; + } + +#paramId: 503501 +#Prognostic specific activity concentration of Tellurium 132 +'503501' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30129 ; + } + +#paramId: 503502 +#Averaged air concentration of Tellurium 132 +'503502' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30129 ; + } + +#paramId: 503503 +#Accumulated air concentration of Tellurium 132 +'503503' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30129 ; + } + +#paramId: 503504 +#Zr95 - total (wet + dry) deposition +'503504' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30079 ; + } + +#paramId: 503505 +#Averaged air concentration of Zirconium 95 +'503505' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30079 ; + } + +#paramId: 503506 +#Accumulated air concentration of Zirconium 95 +'503506' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30079 ; + } + +#paramId: 503507 +#TRACER - total (wet + dry) deposition +'503507' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30000 ; + } + +#paramId: 503508 +#Prognostic specific activity concentration of TRACER +'503508' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30000 ; + } + +#paramId: 503509 +#Averaged air concentration of TRACER +'503509' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30000 ; + } + +#paramId: 503510 +#Accumulated air concentration of TRACER +'503510' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30000 ; + } + +#paramId: 503511 +#Averaged air concentration of Xenon 133 +'503511' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30161 ; + } + +#paramId: 503512 +#Accumulated air concentration of Xenon 133 +'503512' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30161 ; + } + +#paramId: 503513 +#Xe133 - total (wet + dry) deposition +'503513' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30161 ; + } + +#paramId: 503514 +#Air concentration of Iodine 131 +'503514' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30137 ; + } + +#paramId: 503515 +#I131 - dry deposition +'503515' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30137 ; + } + +#paramId: 503516 +#Averaged air concentration of Iodine 131 +'503516' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30137 ; + } + +#paramId: 503517 +#Accumulated air concentration of Iodine 131 +'503517' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30137 ; + } + +#paramId: 503518 +#Prognostic specific activity concentration of Iodine 131 +'503518' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30137 ; + } + +#paramId: 503519 +#I131 - wet deposition +'503519' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30137 ; + } + +#paramId: 503520 +#I131 - total (wet + dry) deposition +'503520' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30137 ; + } + +#paramId: 503522 +#Averaged air concentration of Iodine 131 elementary gaseous +'503522' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30138 ; + } + +#paramId: 503523 +#Accumulated air concentration of Iodine 131 elementary gaseous +'503523' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30138 ; + } + +#paramId: 503524 +#I131g - total (wet + dry) deposition +'503524' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30138 ; + } + +#paramId: 503525 +#Averaged air concentration of Iodine 131 organic bounded +'503525' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30139 ; + } + +#paramId: 503526 +#Accumulated air concentration of Iodine 131 organic bounded +'503526' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30139 ; + } + +#paramId: 503527 +#I131o - total (wet + dry) deposition +'503527' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30139 ; + } + +#paramId: 503528 +#Ba140 - total (wet + dry) deposition +'503528' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30175 ; + } + +#paramId: 503529 +#Averaged air concentration of Barium 140 +'503529' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30175 ; + } + +#paramId: 503530 +#Accumulated air concentration of Barium 140 +'503530' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30175 ; + } + +#paramId: 503531 +#Air concentration of Ruthenium 106 +'503531' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30104 ; + } + +#paramId: 503532 +#Ru106 - total (wet + dry) deposition +'503532' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30104 ; + } + +#paramId: 503533 +#Prognostic specific activity concentration of Ruthenium 106 +'503533' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30104 ; + } + +#paramId: 503534 +#Ru106 - dry deposition +'503534' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30104 ; + } + +#paramId: 503535 +#Ru106 - wet deposition +'503535' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30104 ; + } + +#paramId: 503536 +#Averaged air concentration of Ruthenium 106 +'503536' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30104 ; + } + +#paramId: 503537 +#Accumulated air concentration of Ruthenium 106 +'503537' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30104 ; + } + +#paramId: 503538 +#Co-60 - dry deposition +'503538' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30042 ; + } + +#paramId: 503539 +#Air concentration of Cobalt 60 +'503539' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30042 ; + } + +#paramId: 503542 +#Kr85m - wet deposition +'503542' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30060 ; + } + +#paramId: 503543 +#Kr85m - total (wet + dry) deposition +'503543' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30060 ; + } + +#paramId: 503544 +#Prognostic specific activity concentration of Krypton 85m +'503544' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30060 ; + } + +#paramId: 503545 +#Kr85m - dry deposition +'503545' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30060 ; + } + +#paramId: 503546 +#Averaged air concentration of Krypton 85m +'503546' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30060 ; + } + +#paramId: 503547 +#Accumulated air concentration of Krypton 85m +'503547' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30060 ; + } + +#paramId: 503548 +#Air concentration of Krypton 85m +'503548' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30060 ; + } + +#paramId: 503549 +#Swiss coordinate LV 95 (south-north) +'503549' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 200 ; + } + +#paramId: 503550 +#Swiss coordinate LV 95 (west-east) +'503550' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 201 ; + } + +#paramId: 503551 +#Birch (betula) pollen specific number concentration +'503551' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62101 ; + } + +#paramId: 503552 +#Alder (alnus) pollen specific number concentration +'503552' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62100 ; + } + +#paramId: 503553 +#Grasses (poaceae) pollen specific number concentration +'503553' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62300 ; + } + +#paramId: 503554 +#Ragweed (ambrosia) pollen specific number concentration +'503554' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62200 ; + } + +#paramId: 503555 +#Average hail diameter +'503555' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 503556 +#Standard deviation of hail diameter +'503556' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 6 ; + } + +#paramId: 503557 +#Maximum hail diameter +'503557' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503558 +#Duration of updraft +'503558' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 210 ; + } + +#paramId: 503559 +#Updraft mask +'503559' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 211 ; + } + +#paramId: 503560 +#Total lightning flash density - instantaneous +'503560' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503561 +#Total lightning flash density - time average +'503561' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + diff --git a/definitions/grib2/localConcepts/edzw/shortName.def b/definitions/grib2/localConcepts/edzw/shortName.def index 093dbfa39..a341a3566 100755 --- a/definitions/grib2/localConcepts/edzw/shortName.def +++ b/definitions/grib2/localConcepts/edzw/shortName.def @@ -1,4 +1,4 @@ -# Automatically generated by get_definitions.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2018-06-07 07:57 +# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 #paramId: 500000 #Pressure (S) (not reduced) 'PS' = { @@ -1615,7 +1615,7 @@ } #paramId: 500250 -#I131 - dry deposition +#I131a - dry deposition 'I-131ad' = { discipline = 0 ; parameterCategory = 18 ; @@ -1624,7 +1624,7 @@ } #paramId: 500251 -#I131 - wet deposition +#I131a - wet deposition 'I-131aw' = { discipline = 0 ; parameterCategory = 18 ; @@ -1650,15 +1650,6 @@ constituentType = 30172 ; } -#paramId: 500254 -#Cs137 - wet deposition -'Cs-137w' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30172 ; - } - #paramId: 500255 #Air concentration of Tellurium 132 'Te-132' = { @@ -3480,6 +3471,118 @@ parameterNumber = 8 ; } +#paramId: 500779 +#Effective radius of cloud water +'RECLOUD' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 129 ; + } + +#paramId: 500780 +#Effective radius of rain +'RERAIN' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 130 ; + } + +#paramId: 500781 +#Effective radius of cloud ice +'REICE' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 131 ; + } + +#paramId: 500782 +#Effective radius of snow +'RESNOW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 132 ; + } + +#paramId: 500783 +#Effective radius of graupel +'REGRAUPEL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 133 ; + } + +#paramId: 500784 +#Effective radius of hail +'REHAIL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 134 ; + } + +#paramId: 500785 +#Effective radius of subgrid liquid clouds +'RECLOUD_SGS' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 135 ; + } + +#paramId: 500786 +#Effective radius of subgrid ice clouds +'REICE_SGS' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 136 ; + } + +#paramId: 500787 +#Effective aspect ratio of rain +'ARRAIN' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 137 ; + } + +#paramId: 500788 +#Effective aspect ratio of cloud ice +'ARICE' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 138 ; + } + +#paramId: 500789 +#Effective aspect ratio of snow +'ARSNOW' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 139 ; + } + +#paramId: 500790 +#Effective aspect ratio of graupel +'ARGRAUPEL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 140 ; + } + +#paramId: 500791 +#Effective aspect ratio of hail +'ARHAIL' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 141 ; + } + +#paramId: 500792 +#Effective aspect ratio of subgrid ice clouds +'ARICE_SGS' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 142 ; + } + #paramId: 500905 #Specific Humidity (S) 'QV_S' = { @@ -6398,11 +6501,11 @@ } #paramId: 503253 -#Prognostic specific activity concentration of Caesium 137 -'Cs_137' = { +#Cs137 - wet deposition +'Cs-137w' = { discipline = 0 ; parameterCategory = 18 ; - parameterNumber = 14 ; + parameterNumber = 11 ; constituentType = 30172 ; } @@ -6416,11 +6519,11 @@ } #paramId: 503255 -#Prognostic specific activity concentration of Tellurium 132 -'Te_132' = { +#Te132 - total (wet + dry) deposition +'Te-132t' = { discipline = 0 ; parameterCategory = 18 ; - parameterNumber = 14 ; + parameterNumber = 13 ; constituentType = 30129 ; } @@ -7120,14 +7223,6 @@ scaledValueOfFirstFixedSurface = 2 ; } -#paramId: 503355 -#v-component of wind (gust) -'VGUST_DYN_10M' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } - #paramId: 503357 #Maximum 10m wind speed without gust 'VABSMX_10M' = { @@ -7279,6 +7374,899 @@ typeOfStatisticalProcessing = 2 ; } +#paramId: 503431 +#Accumulated dry deposition (surface) of dust for mode 1 +'ACCDRYDEPO_DUSTA' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503432 +#Accumulated dry deposition (surface) of dust for mode 2 +'ACCDRYDEPO_DUSTB' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503433 +#Accumulated dry deposition (surface) of dust for mode 3 +'ACCDRYDEPO_DUSTC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503434 +#Accumulated wet deposition by grid scale precipitation of dust for mode 1 +'ACCWETDEPO_GSP_DUSTA' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503435 +#Accumulated wet deposition by grid scale precipitation of dust for mode 2 +'ACCWETDEPO_GSP_DUSTB' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503436 +#Accumulated wet deposition by grid scale precipitation of dust for mode 3 +'ACCWETDEPO_GSP_DUSTC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503437 +#Accumulated wet deposition by convective precipitation of dust for mode 1 +'ACCWETDEPO_CON_DUSTA' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503438 +#Accumulated wet deposition by convective precipitation of dust for mode 2 +'ACCWETDEPO_CON_DUSTB' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503439 +#Accumulated wet deposition by convective precipitation of dust for mode 3 +'ACCWETDEPO_CON_DUSTC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503443 +#Accumulated sedimentation of dust for mode 1 +'ACCSEDIM_DUSTA' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503444 +#Accumulated sedimentation of dust for mode 2 +'ACCSEDIM_DUSTB' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503445 +#Accumulated sedimentation of dust for mode 3 +'ACCSEDIM_DUSTC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503458 +#Attenuated backscatter from satellite for dust (for given wave length) +'SAT_BSC_DUST' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 107 ; + aerosolType = 62001 ; + } + +#paramId: 503459 +#Attenuated backscatter from ground (ceilometer) for dust (for given wave length) +'CEIL_BSC_DUST' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 108 ; + aerosolType = 62001 ; + } + +#paramId: 503461 +#Attenuated backscatter from satellite for volcanic ash (for given wave length) +'SAT_BSC_ASH' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 107 ; + aerosolType = 62025 ; + } + +#paramId: 503462 +#Attenuated backscatter from ground (ceilometer) for volcanic ash (for given wave length) +'CEIL_BSC_ASH' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 108 ; + aerosolType = 62025 ; + } + +#paramId: 503467 +#2m Temperature analysis increment, filtered in time +'T_2M_FILTBIAS' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 206 ; + } + +#paramId: 503468 +#Cs137 - total (wet + dry) deposition +'Cs-137t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30172 ; + } + +#paramId: 503469 +#Prognostic specific activity concentration of Caesium 137 +'Cs_137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30172 ; + } + +#paramId: 503470 +#Averaged air concentration of Caesium 137 +'ACs-137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30172 ; + } + +#paramId: 503471 +#Accumulated air concentration of Caesium 137 +'ACCCs-137' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30172 ; + } + +#paramId: 503480 +#Prognostic specific activity concentration of Krypton 85 +'Kr_85' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30059 ; + } + +#paramId: 503481 +#Kr85 - total (wet + dry) deposition +'Kr-85t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30059 ; + } + +#paramId: 503482 +#Averaged air concentration of Krypton 85 +'AKr-85' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30059 ; + } + +#paramId: 503483 +#Accumulated air concentration of Krypton 85 +'ACCKr-85' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30059 ; + } + +#paramId: 503484 +#Prognostic specific activity concentration of Strontium 90 +'Sr_90' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30067 ; + } + +#paramId: 503485 +#Averaged air concentration of Strontium 90 +'ASr-90' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30067 ; + } + +#paramId: 503486 +#Accumulated air concentration of Strontium 90 +'ACCSr-90' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30067 ; + } + +#paramId: 503487 +#Sr90 - total (wet + dry) deposition +'Sr-90t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30067 ; + } + +#paramId: 503489 +#I131a - total (wet + dry) deposition +'I-131at' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30141 ; + } + +#paramId: 503490 +#Averaged air concentration of Iodine 131 aerosol +'AI-131a' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30141 ; + } + +#paramId: 503491 +#Accumulated air concentration of Iodine 131 aerosol +'ACCI-131a' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30141 ; + } + +#paramId: 503492 +#Averaged air concentration of Cobalt 60 +'ACo-60' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30042 ; + } + +#paramId: 503493 +#Accumulated air concentration of Cobalt 60 +'ACCCo-60' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30042 ; + } + +#paramId: 503494 +#Prognostic specific activity concentration of Cobalt 60 +'Co_60' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30042 ; + } + +#paramId: 503495 +#Co-60 - wet deposition +'Co-60w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30042 ; + } + +#paramId: 503496 +#Co60 - total (wet + dry) deposition +'Co-60t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30042 ; + } + +#paramId: 503497 +#Ru103 - total (wet + dry) deposition +'Ru-103t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30102 ; + } + +#paramId: 503499 +#Averaged air concentration of Ruthenium 103 +'ARu-103' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30102 ; + } + +#paramId: 503500 +#Accumulated air concentration of Ruthenium 103 +'ACCRu-103' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30102 ; + } + +#paramId: 503501 +#Prognostic specific activity concentration of Tellurium 132 +'Te_132' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30129 ; + } + +#paramId: 503502 +#Averaged air concentration of Tellurium 132 +'ATe-132' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30129 ; + } + +#paramId: 503503 +#Accumulated air concentration of Tellurium 132 +'ACCTe-132' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30129 ; + } + +#paramId: 503504 +#Zr95 - total (wet + dry) deposition +'Zr-95t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30079 ; + } + +#paramId: 503505 +#Averaged air concentration of Zirconium 95 +'AZr-95' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30079 ; + } + +#paramId: 503506 +#Accumulated air concentration of Zirconium 95 +'ACCZr-95' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30079 ; + } + +#paramId: 503507 +#TRACER - total (wet + dry) deposition +'Tr-2t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30000 ; + } + +#paramId: 503508 +#Prognostic specific activity concentration of TRACER +'Tr_2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30000 ; + } + +#paramId: 503509 +#Averaged air concentration of TRACER +'ATr-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30000 ; + } + +#paramId: 503510 +#Accumulated air concentration of TRACER +'ACCTr-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30000 ; + } + +#paramId: 503511 +#Averaged air concentration of Xenon 133 +'AXe-133' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30161 ; + } + +#paramId: 503512 +#Accumulated air concentration of Xenon 133 +'ACCXe-133' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30161 ; + } + +#paramId: 503513 +#Xe133 - total (wet + dry) deposition +'Xe-133t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30161 ; + } + +#paramId: 503514 +#Air concentration of Iodine 131 +'I-131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30137 ; + } + +#paramId: 503515 +#I131 - dry deposition +'I-131d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30137 ; + } + +#paramId: 503516 +#Averaged air concentration of Iodine 131 +'AI-131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30137 ; + } + +#paramId: 503517 +#Accumulated air concentration of Iodine 131 +'ACCI-131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30137 ; + } + +#paramId: 503518 +#Prognostic specific activity concentration of Iodine 131 +'I_131' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30137 ; + } + +#paramId: 503519 +#I131 - wet deposition +'I-131w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30137 ; + } + +#paramId: 503520 +#I131 - total (wet + dry) deposition +'I-131t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30137 ; + } + +#paramId: 503522 +#Averaged air concentration of Iodine 131 elementary gaseous +'AI-131g' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30138 ; + } + +#paramId: 503523 +#Accumulated air concentration of Iodine 131 elementary gaseous +'ACCI-131g' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30138 ; + } + +#paramId: 503524 +#I131g - total (wet + dry) deposition +'I-131gt' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30138 ; + } + +#paramId: 503525 +#Averaged air concentration of Iodine 131 organic bounded +'AI-131o' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30139 ; + } + +#paramId: 503526 +#Accumulated air concentration of Iodine 131 organic bounded +'ACCI-131o' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30139 ; + } + +#paramId: 503527 +#I131o - total (wet + dry) deposition +'I-131ot' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30139 ; + } + +#paramId: 503528 +#Ba140 - total (wet + dry) deposition +'Ba-140t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30175 ; + } + +#paramId: 503529 +#Averaged air concentration of Barium 140 +'ABa-140' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30175 ; + } + +#paramId: 503530 +#Accumulated air concentration of Barium 140 +'ACCBa-140' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30175 ; + } + +#paramId: 503531 +#Air concentration of Ruthenium 106 +'Ru-106' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30104 ; + } + +#paramId: 503532 +#Ru106 - total (wet + dry) deposition +'Ru-106t' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30104 ; + } + +#paramId: 503533 +#Prognostic specific activity concentration of Ruthenium 106 +'Ru_106' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30104 ; + } + +#paramId: 503534 +#Ru106 - dry deposition +'Ru-106d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30104 ; + } + +#paramId: 503535 +#Ru106 - wet deposition +'Ru-106w' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30104 ; + } + +#paramId: 503536 +#Averaged air concentration of Ruthenium 106 +'ARu-106' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30104 ; + } + +#paramId: 503537 +#Accumulated air concentration of Ruthenium 106 +'ACCRu-106' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30104 ; + } + +#paramId: 503538 +#Co-60 - dry deposition +'Co-60d' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30042 ; + } + +#paramId: 503539 +#Air concentration of Cobalt 60 +'Co-60' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30042 ; + } + +#paramId: 503542 +#Kr85m - wet deposition +'Kr-85mw' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30060 ; + } + +#paramId: 503543 +#Kr85m - total (wet + dry) deposition +'Kr-85mt' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30060 ; + } + +#paramId: 503544 +#Prognostic specific activity concentration of Krypton 85m +'Kr_85m' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30060 ; + } + +#paramId: 503545 +#Kr85m - dry deposition +'Kr-85md' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30060 ; + } + +#paramId: 503546 +#Averaged air concentration of Krypton 85m +'AKr-85m' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30060 ; + } + +#paramId: 503547 +#Accumulated air concentration of Krypton 85m +'ACCKr-85m' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30060 ; + } + +#paramId: 503548 +#Air concentration of Krypton 85m +'Kr-85m' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30060 ; + } + +#paramId: 503551 +#Birch (betula) pollen specific number concentration +'BETUsnc' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62101 ; + } + +#paramId: 503552 +#Alder (alnus) pollen specific number concentration +'ALNUsnc' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62100 ; + } + +#paramId: 503553 +#Grasses (poaceae) pollen specific number concentration +'POACsnc' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62300 ; + } + +#paramId: 503554 +#Ragweed (ambrosia) pollen specific number concentration +'AMBRsnc' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62200 ; + } + +#paramId: 503560 +#Total lightning flash density - instantaneous +'LFD_TOT' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503561 +#Total lightning flash density - time average +'LFD_TOT_AV' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + #paramId: 500092 #Solar radiation heating rate 'SOHR_RAD' = { @@ -7315,7 +8303,7 @@ } #paramId: 500097 -#Stomatal Resistance +#Stomatal resistance 'RSTOM' = { discipline = 2 ; parameterCategory = 0 ; @@ -7323,7 +8311,7 @@ } #paramId: 500109 -#vertical integral of divergence of total water content (s) +#Vertical integral of divergence of total water content - accumulation 'TDIV_HUM' = { discipline = 0 ; parameterCategory = 1 ; @@ -7332,7 +8320,7 @@ } #paramId: 500110 -#subgrid scale cloud water +#Sub-grid scale cloud water 'QC_RAD' = { discipline = 0 ; parameterCategory = 1 ; @@ -7340,7 +8328,7 @@ } #paramId: 500111 -#subgridscale cloud ice +#Sub-grid scale cloud ice 'QI_RAD' = { discipline = 0 ; parameterCategory = 1 ; @@ -7348,7 +8336,7 @@ } #paramId: 500115 -#cloud base above msl, shallow convection +#Cloud base above MSL, shallow convection 'HBAS_SC' = { discipline = 0 ; parameterCategory = 6 ; @@ -7358,7 +8346,7 @@ } #paramId: 500116 -#Cloud top above msl, shallow convection +#Cloud top above MSL, shallow convection 'HTOP_SC' = { discipline = 0 ; parameterCategory = 6 ; @@ -7368,7 +8356,7 @@ } #paramId: 500117 -#specific cloud water content, convective cloud +#Specific cloud liquid water content, convective cloud 'CLW_CON' = { discipline = 0 ; parameterCategory = 1 ; @@ -7376,7 +8364,7 @@ } #paramId: 500120 -#base index (vertical level) of main convective cloud (i) +#Base index (vertical level) of main convective cloud 'BAS_CON' = { discipline = 0 ; parameterCategory = 6 ; @@ -7385,7 +8373,7 @@ } #paramId: 500121 -#top index (vertical level) of main convective cloud (i) +#Top index (vertical level) of main convective cloud 'TOP_CON' = { discipline = 0 ; parameterCategory = 6 ; @@ -7402,7 +8390,7 @@ } #paramId: 500123 -#Specific humitiy tendency due to convection +#Specific humidity tendency due to convection 'DQV_CON' = { discipline = 0 ; parameterCategory = 1 ; @@ -7410,7 +8398,7 @@ } #paramId: 500124 -#zonal wind tendency due to convection +#Zonal wind tendency due to convection 'DU_CON' = { discipline = 0 ; parameterCategory = 2 ; @@ -7418,7 +8406,7 @@ } #paramId: 500125 -#meridional wind tendency due to convection +#Meridional wind tendency due to convection 'DV_CON' = { discipline = 0 ; parameterCategory = 2 ; @@ -7446,7 +8434,7 @@ } #paramId: 500129 -#Tendency of specific cloud liquid water content due to conversion +#Tendency of specific cloud liquid water content due to convection 'DQC_CON' = { discipline = 0 ; parameterCategory = 1 ; @@ -7454,7 +8442,7 @@ } #paramId: 500130 -#tendency of specific cloud ice content due to convection +#Tendency of specific cloud ice content due to convection 'DQI_CON' = { discipline = 0 ; parameterCategory = 1 ; @@ -7470,7 +8458,7 @@ } #paramId: 500140 -#Temperature tendency due to grid scale precipation +#Temperature tendency due to grid scale precipitation 'DT_GSP' = { discipline = 0 ; parameterCategory = 0 ; @@ -7478,7 +8466,7 @@ } #paramId: 500141 -#Specific humitiy tendency due to grid scale precipitation +#Specific humidity tendency due to grid scale precipitation 'DQV_GSP' = { discipline = 0 ; parameterCategory = 1 ; @@ -7486,7 +8474,7 @@ } #paramId: 500142 -#tendency of specific cloud liquid water content due to grid scale precipitation +#Tendency of specific cloud liquid water content due to grid scale precipitation 'DQC_GSP' = { discipline = 0 ; parameterCategory = 1 ; @@ -7502,7 +8490,7 @@ } #paramId: 500144 -#tendency of specific cloud ice content due to grid scale precipitation +#Tendency of specific cloud ice content due to grid scale precipitation 'DQI_GSP' = { discipline = 0 ; parameterCategory = 1 ; @@ -7518,7 +8506,7 @@ } #paramId: 500149 -#supercell detection index 1 (rot. up+down drafts) +#Supercell detection index 1 (rot. up- and downdrafts) 'SDI_1' = { discipline = 0 ; parameterCategory = 7 ; @@ -7526,7 +8514,7 @@ } #paramId: 500150 -#supercell detection index 2 (only rot. up drafts) +#Supercell detection index 2 (only rot. updrafts) 'SDI_2' = { discipline = 0 ; parameterCategory = 7 ; @@ -7578,7 +8566,7 @@ } #paramId: 500157 -#Kinetic Energy +#Kinetic energy 'KE' = { discipline = 0 ; parameterCategory = 2 ; @@ -7586,7 +8574,7 @@ } #paramId: 500176 -#solution of 2-d Helmholtz equations - needed for restart +#Solution of 2-d Helmholtz equations - needed for restart 'DTTDIV' = { discipline = 0 ; parameterCategory = 191 ; @@ -7602,7 +8590,7 @@ } #paramId: 500178 -#sum of contributions to evaporation +#Sum of contributions to evaporation 'EVATRA_SUM' = { discipline = 2 ; parameterCategory = 3 ; @@ -7610,7 +8598,7 @@ } #paramId: 500179 -#total transpiration from all soil layers +#Total transpiration from all soil layers 'TRA_SUM' = { discipline = 2 ; parameterCategory = 3 ; @@ -7618,7 +8606,7 @@ } #paramId: 500180 -#total forcing at soil surface +#Total forcing at soil surface 'TOTFORCE_S' = { discipline = 2 ; parameterCategory = 3 ; @@ -7626,7 +8614,7 @@ } #paramId: 500181 -#residuum of soil moisture +#Residuum of soil moisture 'RESID_WSO' = { discipline = 2 ; parameterCategory = 3 ; @@ -7634,7 +8622,7 @@ } #paramId: 500182 -#Massflux at convective cloud base +#Mass flux at convective cloud base 'MFLX_CON' = { discipline = 0 ; parameterCategory = 1 ; @@ -7643,7 +8631,7 @@ } #paramId: 500184 -#moisture convergence for Kuo-type closure +#Moisture convergence for Kuo-type closure 'QCVG_CON' = { discipline = 0 ; parameterCategory = 1 ; @@ -7651,7 +8639,7 @@ } #paramId: 500195 -#analysis error(standard deviation), geopotential(gpm) +#Analysis error (standard deviation), geopotential (gpm) 'ANA_ERR_FI' = { discipline = 0 ; parameterCategory = 194 ; @@ -7660,7 +8648,7 @@ } #paramId: 500196 -#analysis error(standard deviation), u-comp. of wind +#Analysis error (standard deviation), u-comp. of wind 'ANA_ERR_U' = { discipline = 0 ; parameterCategory = 194 ; @@ -7669,7 +8657,7 @@ } #paramId: 500197 -#analysis error(standard deviation), v-comp. of wind +#Analysis error (standard deviation), v-comp. of wind 'ANA_ERR_V' = { discipline = 0 ; parameterCategory = 194 ; @@ -7678,7 +8666,7 @@ } #paramId: 500198 -#zonal wind tendency due to subgrid scale oro. +#Zonal wind tendency due to sub-grid scale oro. 'DU_SSO' = { discipline = 0 ; parameterCategory = 2 ; @@ -7686,7 +8674,7 @@ } #paramId: 500199 -#meridional wind tendency due to subgrid scale oro. +#Meridional wind tendency due to sub-grid scale oro. 'DV_SSO' = { discipline = 0 ; parameterCategory = 2 ; @@ -7694,7 +8682,7 @@ } #paramId: 500204 -#surface emissivity +#Surface emissivity 'EMIS_RAD' = { discipline = 2 ; parameterCategory = 3 ; @@ -7702,7 +8690,7 @@ } #paramId: 500205 -#soil type of grid (1...9, local soilType.table) +#Soil type (1...9, local soilType.table) 'SOILTYP' = { discipline = 2 ; parameterCategory = 3 ; @@ -7710,7 +8698,7 @@ } #paramId: 500208 -#height of ozone maximum (climatological) +#Height of ozone maximum (climatological) 'HMO3' = { discipline = 0 ; parameterCategory = 14 ; @@ -7718,7 +8706,7 @@ } #paramId: 500209 -#vertically integrated ozone content (climatological) +#Vertically integrated ozone content (climatological) 'VIO3' = { discipline = 0 ; parameterCategory = 14 ; @@ -7726,7 +8714,7 @@ } #paramId: 500221 -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +#Ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum 'NDVI_MRAT' = { discipline = 2 ; parameterCategory = 0 ; @@ -7735,7 +8723,7 @@ } #paramId: 500222 -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +#Ratio of NDVI (normalized differential vegetation index) to annual maximum 'NDVIRATIO' = { discipline = 2 ; parameterCategory = 0 ; @@ -7743,7 +8731,7 @@ } #paramId: 500233 -#tendency of specific humidity +#Tendency of specific humidity 'DQVDT' = { discipline = 0 ; parameterCategory = 1 ; @@ -7751,7 +8739,7 @@ } #paramId: 500234 -#water vapor flux +#Water vapor flux 'QVSFLX' = { discipline = 0 ; parameterCategory = 1 ; @@ -7767,7 +8755,7 @@ } #paramId: 500239 -#Delay of the GPS signal trough the (total) atm. +#Delay of the GPS signal through the (total) atmos. 'ZTD' = { discipline = 0 ; parameterCategory = 15 ; @@ -7775,7 +8763,7 @@ } #paramId: 500240 -#Delay of the GPS signal trough wet atmos. +#Delay of the GPS signal through wet atmos. 'ZWD' = { discipline = 0 ; parameterCategory = 15 ; @@ -7783,7 +8771,7 @@ } #paramId: 500241 -#Delay of the GPS signal trough dry atmos. +#Delay of the GPS signal through dry atmos. 'ZHD' = { discipline = 0 ; parameterCategory = 15 ; @@ -7791,7 +8779,7 @@ } #paramId: 500279 -#u-momentum flux due to SSO-effects (initialisation) +#U-momentum flux due to SSO-effects (mean over forecast time) 'AUSTR_SSO' = { discipline = 0 ; parameterCategory = 3 ; @@ -7800,7 +8788,7 @@ } #paramId: 500280 -#u-momentum flux due to SSO-effects +#U-momentum flux due to SSO-effects 'USTR_SSO' = { discipline = 0 ; parameterCategory = 3 ; @@ -7808,7 +8796,7 @@ } #paramId: 500281 -#v-momentum flux due to SSO-effects +#V-momentum flux due to SSO-effects (mean over forecast time) 'AVSTR_SSO' = { discipline = 0 ; parameterCategory = 3 ; @@ -7817,7 +8805,7 @@ } #paramId: 500282 -#v-momentum flux due to SSO-effects +#V-momentum flux due to SSO-effects 'VSTR_SSO' = { discipline = 0 ; parameterCategory = 3 ; @@ -7916,7 +8904,7 @@ } #paramId: 500306 -#modified cloud depth for media +#Modified cloud depth for media 'CLDEPTH' = { discipline = 0 ; parameterCategory = 6 ; @@ -7924,7 +8912,7 @@ } #paramId: 500307 -#modified cloud cover for media +#Modified cloud cover for media 'CLCT_MOD' = { discipline = 0 ; parameterCategory = 6 ; @@ -7932,7 +8920,7 @@ } #paramId: 500322 -#Kinetic Energy +#RMS of difference "first guess - analysis" of kinetic energy 'EFA-KE' = { discipline = 0 ; parameterCategory = 2 ; @@ -7942,7 +8930,7 @@ } #paramId: 500323 -#Kinetic Energy +#RMS of difference "initialized analysis - analysis" of kinetic energy 'EIA-KE' = { discipline = 0 ; parameterCategory = 2 ; @@ -8265,7 +9253,7 @@ } #paramId: 500472 -#Konvektionsart (0..4) +#Type of convection (0..4) 'C_TYPE' = { discipline = 0 ; parameterCategory = 6 ; @@ -8307,7 +9295,7 @@ } #paramId: 500481 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) +#Downward diffusive short wave radiation flux at surface (mean over forecast time) 'ASWDIFD_S' = { discipline = 0 ; parameterCategory = 4 ; @@ -8593,7 +9581,7 @@ } #paramId: 500541 -#relative vorticity,U-component +#Relative vorticity, u-component 'VORTIC_U' = { discipline = 0 ; parameterCategory = 2 ; @@ -8601,7 +9589,7 @@ } #paramId: 500542 -#relative vorticity,V-component +#Relative vorticity, v-component 'VORTIC_V' = { discipline = 0 ; parameterCategory = 2 ; @@ -8745,7 +9733,7 @@ } #paramId: 500570 -#dry convection top index +#Dry convection top index 'TOP_DCON' = { discipline = 0 ; parameterCategory = 6 ; @@ -8753,7 +9741,7 @@ } #paramId: 500572 -#tidal tendencies +#Tidal tendencies 'TIDAL' = { discipline = 1 ; parameterCategory = 0 ; @@ -8777,7 +9765,7 @@ } #paramId: 500577 -#variance of soil moisture content +#Variance of soil moisture content 'WVAR' = { discipline = 2 ; parameterCategory = 3 ; @@ -8786,7 +9774,7 @@ } #paramId: 500578 -#covariance of soil moisture content +#Covariance of soil moisture content 'WCOV' = { discipline = 2 ; parameterCategory = 3 ; @@ -8811,7 +9799,7 @@ } #paramId: 500591 -#Niederschlagsdargebot aus Modell SNOW +#Niederschlagsdargebot: potential water supply (rain and snow melt) from snowpack - accumulation 'RR_SNOW' = { discipline = 0 ; parameterCategory = 1 ; @@ -8946,7 +9934,7 @@ } #paramId: 500634 -#wake-production of TKE due to sub grid scale orography +#Wake-production of TKE due to sub-grid scale orography 'DTKE_SSO' = { discipline = 0 ; parameterCategory = 19 ; @@ -8954,7 +9942,7 @@ } #paramId: 500635 -#shear-production of TKE due to separated horizontal shear modes +#Shear-production of TKE due to separated horizontal shear modes 'DTKE_HSH' = { discipline = 0 ; parameterCategory = 19 ; @@ -8962,7 +9950,7 @@ } #paramId: 500636 -#buoyancy-production of TKE due to sub grid scale convection +#Buoyancy-production of TKE due to sub-grid scale convection 'DTKE_CON' = { discipline = 0 ; parameterCategory = 19 ; @@ -8970,7 +9958,7 @@ } #paramId: 500637 -#production of TKE +#Production of TKE 'DTKE' = { discipline = 0 ; parameterCategory = 19 ; @@ -8994,7 +9982,7 @@ } #paramId: 500640 -#mass concentration of dust (minimum mode) +#Mass concentration of dust (minimum mode) 'VSOILA' = { discipline = 0 ; parameterCategory = 197 ; @@ -9002,7 +9990,7 @@ } #paramId: 500643 -#mass concentration of dust (medium mode) +#Mass concentration of dust (medium mode) 'VSOILB' = { discipline = 0 ; parameterCategory = 197 ; @@ -9010,7 +9998,7 @@ } #paramId: 500644 -#mass concentration of dust (maximum mode) +#Mass concentration of dust (maximum mode) 'VSOILC' = { discipline = 0 ; parameterCategory = 197 ; @@ -9018,7 +10006,7 @@ } #paramId: 500645 -#number concentration of dust (minimum mode) +#Number concentration of dust (minimum mode) 'VSOILA0' = { discipline = 0 ; parameterCategory = 197 ; @@ -9026,7 +10014,7 @@ } #paramId: 500646 -#number concentration of dust (medium mode) +#Number concentration of dust (medium mode) 'VSOILB0' = { discipline = 0 ; parameterCategory = 197 ; @@ -9034,7 +10022,7 @@ } #paramId: 500647 -#number concentration of dust (maximum mode) +#Number concentration of dust (maximum mode) 'VSOILC0' = { discipline = 0 ; parameterCategory = 197 ; @@ -9042,7 +10030,7 @@ } #paramId: 500648 -#mass concentration of dust (sum of all modes) +#Mass concentration of dust (sum of all modes) 'VSOILS' = { discipline = 0 ; parameterCategory = 197 ; @@ -9050,7 +10038,7 @@ } #paramId: 500649 -#number concentration of dust (sum of all modes) +#Number concentration of dust (sum of all modes) 'VSOILS0' = { discipline = 0 ; parameterCategory = 197 ; @@ -10081,118 +11069,6 @@ parameterNumber = 128 ; } -#paramId: 500779 -#DUMMY_129 -'DUMMY_129' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 129 ; - } - -#paramId: 500780 -#DUMMY_130 -'DUMMY_130' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 130 ; - } - -#paramId: 500781 -#DUMMY_131 -'DUMMY_131' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 131 ; - } - -#paramId: 500782 -#DUMMY_132 -'DUMMY_132' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 132 ; - } - -#paramId: 500783 -#DUMMY_133 -'DUMMY_133' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 133 ; - } - -#paramId: 500784 -#DUMMY_134 -'DUMMY_134' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 134 ; - } - -#paramId: 500785 -#DUMMY_135 -'DUMMY_135' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 135 ; - } - -#paramId: 500786 -#DUMMY_136 -'DUMMY_136' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 136 ; - } - -#paramId: 500787 -#DUMMY_137 -'DUMMY_137' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 137 ; - } - -#paramId: 500788 -#DUMMY_138 -'DUMMY_138' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 138 ; - } - -#paramId: 500789 -#DUMMY_139 -'DUMMY_139' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 139 ; - } - -#paramId: 500790 -#DUMMY_140 -'DUMMY_140' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 140 ; - } - -#paramId: 500791 -#DUMMY_141 -'DUMMY_141' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 141 ; - } - -#paramId: 500792 -#DUMMY_142 -'DUMMY_142' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 142 ; - } - #paramId: 500793 #DUMMY_143 'DUMMY_143' = { @@ -11090,7 +11966,7 @@ } #paramId: 502332 -#Liquid water content in the snow in - multi level +#Liquid water content in snow - multi level 'WLIQ_SNOW_M' = { discipline = 0 ; parameterCategory = 1 ; @@ -11108,7 +11984,7 @@ } #paramId: 502344 -#Albedo - diffusive solar (0.3 - 0.7 m-6) +#Albedo - diffusive solar - time average (UV: 0.3 - 0.7 m-6) 'ALB_UV12' = { discipline = 0 ; parameterCategory = 19 ; @@ -11117,7 +11993,7 @@ } #paramId: 502345 -#Albedo - UV (0.3 - 0.7 m-6) +#Albedo - diffusive solar (UV: 0.3 - 0.7 m-6) 'ALB_UV' = { discipline = 0 ; parameterCategory = 19 ; @@ -11174,7 +12050,7 @@ } #paramId: 503050 -#Radar Precipitation Rate +#Radar precipitation rate 'RAD_PRECIP' = { discipline = 0 ; parameterCategory = 15 ; @@ -11182,7 +12058,7 @@ } #paramId: 503052 -#Radar Quality Information +#Radar quality information 'RAD_QUAL' = { discipline = 0 ; parameterCategory = 15 ; @@ -11190,7 +12066,7 @@ } #paramId: 503053 -#Radar Blacklist +#Radar blacklist 'RAD_BL' = { discipline = 0 ; parameterCategory = 15 ; @@ -11198,7 +12074,7 @@ } #paramId: 503054 -#Height of Radarbeam above Ground +#Height of radar beam above ground 'RAD_HEIGHT' = { discipline = 0 ; parameterCategory = 15 ; @@ -11254,7 +12130,7 @@ } #paramId: 503061 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) +#Downward diffusive short wave radiation flux at surface (mean over forecast time) 'SWDIFDS_RAD' = { discipline = 0 ; parameterCategory = 4 ; @@ -11325,7 +12201,7 @@ } #paramId: 503078 -#relative humidity over mixed phase +#Relative humidity over mixed phase 'RH_MIX_EC' = { discipline = 0 ; parameterCategory = 1 ; @@ -11333,7 +12209,7 @@ } #paramId: 503079 -#soil moisture index (multilayers) +#Soil moisture index (multilayers) 'SMI' = { discipline = 2 ; parameterCategory = 3 ; @@ -11479,7 +12355,7 @@ } #paramId: 503143 -#rain-drain-from-snowpack +#Rain drain from snowpack - accumulation 'RD_SNOW' = { discipline = 0 ; parameterCategory = 1 ; @@ -11648,7 +12524,7 @@ } #paramId: 503168 -#Relative duration of sunshine (DURSUN * 100 / DURSON M) +#Relative duration of sunshine (DURSUN * 100 / DURSUN_M) 'DURSUN_R' = { discipline = 0 ; parameterCategory = 6 ; @@ -11726,7 +12602,7 @@ } #paramId: 503180 -#Along-wind lagrangian timescale (Hanna) +#Along-wind Lagrangian time scale (Hanna) 'LAGTIMEU' = { discipline = 215 ; parameterCategory = 2 ; @@ -11734,7 +12610,7 @@ } #paramId: 503181 -#Cross-wind lagrangian timescale (Hanna) +#Cross-wind Lagrangian time scale (Hanna) 'LAGTIMEV' = { discipline = 215 ; parameterCategory = 2 ; @@ -11742,7 +12618,7 @@ } #paramId: 503182 -#Vertical lagrangian timescale (Hanna) +#Vertical Lagrangian time scale (Hanna) 'LAGTIMEW' = { discipline = 215 ; parameterCategory = 2 ; @@ -11750,7 +12626,7 @@ } #paramId: 503183 -#Zonal lagrangian timescale (direct) (Hanna) +#Zonal Lagrangian time scale (direct) (Hanna) 'LAGTIMEX' = { discipline = 215 ; parameterCategory = 2 ; @@ -11758,7 +12634,7 @@ } #paramId: 503184 -#Meridional lagrangian timescale (direct) (Hanna) +#Meridional Lagrangian time scale (direct) (Hanna) 'LAGTIMEY' = { discipline = 215 ; parameterCategory = 2 ; @@ -11766,7 +12642,7 @@ } #paramId: 503185 -#Vertical lagrangian timescale (direct) (Hanna) +#Vertical Lagrangian time scale (direct) (Hanna) 'LAGTIMEZ' = { discipline = 215 ; parameterCategory = 2 ; @@ -11904,7 +12780,7 @@ } #paramId: 503208 -#Swiss coodinate (south-north) +#Swiss coordinate (south-north) 'SWISS_SN' = { discipline = 0 ; parameterCategory = 191 ; @@ -11912,7 +12788,7 @@ } #paramId: 503209 -#Swiss coodinate (west-east) +#Swiss coordinate (west-east) 'SWISS_WE' = { discipline = 0 ; parameterCategory = 191 ; @@ -12028,7 +12904,7 @@ } #paramId: 503292 -#sea ice albedo - diffusive solar (0.3 - 5.0 m-6) +#Sea ice albedo - diffusive solar (0.3 - 5.0 m-6) 'ALB_SEAICE' = { discipline = 0 ; parameterCategory = 19 ; @@ -12076,7 +12952,7 @@ } #paramId: 503342 -#Maximum rotation amplitude (positive or negative) (over given time interval and column) +#Maximum rotation amplitude (positive or negative) (over given time interval and column) 'VORW_CTMAX' = { discipline = 0 ; parameterCategory = 2 ; @@ -12110,6 +12986,18 @@ parameterNumber = 4 ; } +#paramId: 503355 +#Maximum 10m dynamical gust +'VGUST_DYN_10M' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + #paramId: 503356 #Maximum 10m convective gust 'VGUST_CON_10M' = { @@ -12131,7 +13019,7 @@ } #paramId: 503359 -#evaporation of plants (integrated since "nightly reset") +#Evaporation of plants (integrated since "nightly reset") 'EVAP_PL' = { discipline = 2 ; parameterCategory = 0 ; @@ -12610,3 +13498,312 @@ parameterNumber = 235 ; } +#paramId: 503427 +#U-component of (vertical) wind shear vector between two levels +'WSHEAR_U' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 208 ; + } + +#paramId: 503428 +#V-component of (vertical) wind shear vector between two levels +'WSHEAR_V' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 209 ; + } + +#paramId: 503440 +#Accumulated wet deposition of dust if rain reaches the surface for mode 1 +'ACCWETDEPO_RAIN_DUSTA' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503441 +#Accumulated wet deposition of dust if rain reaches the surface for mode 2 +'ACCWETDEPO_RAIN_DUSTB' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503442 +#Accumulated wet deposition of dust if rain reaches the surface for mode 3 +'ACCWETDEPO_RAIN_DUSTC' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503446 +#Accumulated dry deposition of dust number concentration for mode 1 +'ACCDRYDEPO_DUSTA0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503447 +#Accumulated dry deposition of dust number concentration for mode 2 +'ACCDRYDEPO_DUSTB0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503448 +#Accumulated dry deposition of dust number concentration for mode 3 +'ACCDRYDEPO_DUSTC0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503449 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 1 +'ACCWETDEPO_GSP_DUSTA0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503450 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 2 +'ACCWETDEPO_GSP_DUSTB0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503451 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 3 +'ACCWETDEPO_GSP_DUSTC0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503452 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 1 +'ACCWETDEPO_RAIN_DUSTA0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503453 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 2 +'ACCWETDEPO_RAIN_DUSTB0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503454 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 3 +'ACCWETDEPO_RAIN_DUSTC0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503455 +#Accumulated sedimentation of dust number concentration for mode 1 +'ACCSEDIM_DUSTA0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503456 +#Accumulated sedimentation of dust number concentration for mode 2 +'ACCSEDIM_DUSTB0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503457 +#Accumulated sedimentation of dust number concentration for mode 3 +'ACCSEDIM_DUSTC0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503460 +#Mineral dust backscatter (not attenuated, for given wave length) +'BSC_DUST' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 209 ; + aerosolType = 62001 ; + } + +#paramId: 503463 +#Volcanic ash backscatter (not attenuated, for given wave length) +'BSC_ASH' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 209 ; + aerosolType = 62025 ; + } + +#paramId: 503464 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 3 +'ACCWETDEPO_CON_DUSTC0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503465 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 2 +'ACCWETDEPO_CON_DUSTB0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503466 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 1 +'ACCWETDEPO_CON_DUSTA0' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503549 +#Swiss coordinate LV 95 (south-north) +'SWISS_LV95_SN' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 200 ; + } + +#paramId: 503550 +#Swiss coordinate LV 95 (west-east) +'SWISS_LV95_WE' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 201 ; + } + +#paramId: 503555 +#Average hail diameter +'DHAIL_AV' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 503556 +#Standard deviation of hail diameter +'DHAIL_SD' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 6 ; + } + +#paramId: 503557 +#Maximum hail diameter +'DHAIL_MX' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503558 +#Duration of updraft +'W_UP_DUR' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 210 ; + } + +#paramId: 503559 +#Updraft mask +'W_UP_MASK' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 211 ; + } + diff --git a/definitions/grib2/localConcepts/edzw/units.def b/definitions/grib2/localConcepts/edzw/units.def index 846a550b5..54b9c9931 100755 --- a/definitions/grib2/localConcepts/edzw/units.def +++ b/definitions/grib2/localConcepts/edzw/units.def @@ -1,4 +1,4 @@ -# Automatically generated by get_definitions.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2018-06-07 07:57 +# Automatically generated by get_definitionsALL.sql from database PRJ_TDCFDOKU.GRIB_PARAMETER@MIRAKEL.DWD.DE, do not edit! 2020-11-05 10:29 #paramId: 500000 #Pressure (S) (not reduced) 'Pa' = { @@ -1615,7 +1615,7 @@ } #paramId: 500250 -#I131 - dry deposition +#I131a - dry deposition 'Bq m-2' = { discipline = 0 ; parameterCategory = 18 ; @@ -1624,7 +1624,7 @@ } #paramId: 500251 -#I131 - wet deposition +#I131a - wet deposition 'Bq m-2' = { discipline = 0 ; parameterCategory = 18 ; @@ -1650,15 +1650,6 @@ constituentType = 30172 ; } -#paramId: 500254 -#Cs137 - wet deposition -'Bq m-2' = { - discipline = 0 ; - parameterCategory = 18 ; - parameterNumber = 11 ; - constituentType = 30172 ; - } - #paramId: 500255 #Air concentration of Tellurium 132 'Bq m-3' = { @@ -3480,6 +3471,118 @@ parameterNumber = 8 ; } +#paramId: 500779 +#Effective radius of cloud water +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 129 ; + } + +#paramId: 500780 +#Effective radius of rain +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 130 ; + } + +#paramId: 500781 +#Effective radius of cloud ice +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 131 ; + } + +#paramId: 500782 +#Effective radius of snow +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 132 ; + } + +#paramId: 500783 +#Effective radius of graupel +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 133 ; + } + +#paramId: 500784 +#Effective radius of hail +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 134 ; + } + +#paramId: 500785 +#Effective radius of subgrid liquid clouds +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 135 ; + } + +#paramId: 500786 +#Effective radius of subgrid ice clouds +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 136 ; + } + +#paramId: 500787 +#Effective aspect ratio of rain +'' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 137 ; + } + +#paramId: 500788 +#Effective aspect ratio of cloud ice +'' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 138 ; + } + +#paramId: 500789 +#Effective aspect ratio of snow +'' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 139 ; + } + +#paramId: 500790 +#Effective aspect ratio of graupel +'' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 140 ; + } + +#paramId: 500791 +#Effective aspect ratio of hail +'' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 141 ; + } + +#paramId: 500792 +#Effective aspect ratio of subgrid ice clouds +'' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 142 ; + } + #paramId: 500905 #Specific Humidity (S) 'kg kg-1' = { @@ -6398,11 +6501,11 @@ } #paramId: 503253 -#Prognostic specific activity concentration of Caesium 137 -'Bq kg-1' = { +#Cs137 - wet deposition +'Bq m-2' = { discipline = 0 ; parameterCategory = 18 ; - parameterNumber = 14 ; + parameterNumber = 11 ; constituentType = 30172 ; } @@ -6416,11 +6519,11 @@ } #paramId: 503255 -#Prognostic specific activity concentration of Tellurium 132 -'Bq kg-1' = { +#Te132 - total (wet + dry) deposition +'Bq m-2' = { discipline = 0 ; parameterCategory = 18 ; - parameterNumber = 14 ; + parameterNumber = 13 ; constituentType = 30129 ; } @@ -7120,14 +7223,6 @@ scaledValueOfFirstFixedSurface = 2 ; } -#paramId: 503355 -#v-component of wind (gust) -'ms-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 24 ; - } - #paramId: 503357 #Maximum 10m wind speed without gust 'ms-1' = { @@ -7279,6 +7374,899 @@ typeOfStatisticalProcessing = 2 ; } +#paramId: 503431 +#Accumulated dry deposition (surface) of dust for mode 1 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503432 +#Accumulated dry deposition (surface) of dust for mode 2 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503433 +#Accumulated dry deposition (surface) of dust for mode 3 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 6 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503434 +#Accumulated wet deposition by grid scale precipitation of dust for mode 1 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503435 +#Accumulated wet deposition by grid scale precipitation of dust for mode 2 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503436 +#Accumulated wet deposition by grid scale precipitation of dust for mode 3 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503437 +#Accumulated wet deposition by convective precipitation of dust for mode 1 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503438 +#Accumulated wet deposition by convective precipitation of dust for mode 2 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503439 +#Accumulated wet deposition by convective precipitation of dust for mode 3 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503443 +#Accumulated sedimentation of dust for mode 1 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503444 +#Accumulated sedimentation of dust for mode 2 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503445 +#Accumulated sedimentation of dust for mode 3 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503458 +#Attenuated backscatter from satellite for dust (for given wave length) +'m-1 sr-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 107 ; + aerosolType = 62001 ; + } + +#paramId: 503459 +#Attenuated backscatter from ground (ceilometer) for dust (for given wave length) +'m-1 sr-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 108 ; + aerosolType = 62001 ; + } + +#paramId: 503461 +#Attenuated backscatter from satellite for volcanic ash (for given wave length) +'m-1 sr-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 107 ; + aerosolType = 62025 ; + } + +#paramId: 503462 +#Attenuated backscatter from ground (ceilometer) for volcanic ash (for given wave length) +'m-1 sr-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 108 ; + aerosolType = 62025 ; + } + +#paramId: 503467 +#2m Temperature analysis increment, filtered in time +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfGeneratingProcess = 206 ; + } + +#paramId: 503468 +#Cs137 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30172 ; + } + +#paramId: 503469 +#Prognostic specific activity concentration of Caesium 137 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30172 ; + } + +#paramId: 503470 +#Averaged air concentration of Caesium 137 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30172 ; + } + +#paramId: 503471 +#Accumulated air concentration of Caesium 137 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30172 ; + } + +#paramId: 503480 +#Prognostic specific activity concentration of Krypton 85 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30059 ; + } + +#paramId: 503481 +#Kr85 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30059 ; + } + +#paramId: 503482 +#Averaged air concentration of Krypton 85 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30059 ; + } + +#paramId: 503483 +#Accumulated air concentration of Krypton 85 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30059 ; + } + +#paramId: 503484 +#Prognostic specific activity concentration of Strontium 90 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30067 ; + } + +#paramId: 503485 +#Averaged air concentration of Strontium 90 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30067 ; + } + +#paramId: 503486 +#Accumulated air concentration of Strontium 90 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30067 ; + } + +#paramId: 503487 +#Sr90 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30067 ; + } + +#paramId: 503489 +#I131a - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30141 ; + } + +#paramId: 503490 +#Averaged air concentration of Iodine 131 aerosol +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30141 ; + } + +#paramId: 503491 +#Accumulated air concentration of Iodine 131 aerosol +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30141 ; + } + +#paramId: 503492 +#Averaged air concentration of Cobalt 60 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30042 ; + } + +#paramId: 503493 +#Accumulated air concentration of Cobalt 60 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30042 ; + } + +#paramId: 503494 +#Prognostic specific activity concentration of Cobalt 60 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30042 ; + } + +#paramId: 503495 +#Co-60 - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30042 ; + } + +#paramId: 503496 +#Co60 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30042 ; + } + +#paramId: 503497 +#Ru103 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30102 ; + } + +#paramId: 503499 +#Averaged air concentration of Ruthenium 103 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30102 ; + } + +#paramId: 503500 +#Accumulated air concentration of Ruthenium 103 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30102 ; + } + +#paramId: 503501 +#Prognostic specific activity concentration of Tellurium 132 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30129 ; + } + +#paramId: 503502 +#Averaged air concentration of Tellurium 132 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30129 ; + } + +#paramId: 503503 +#Accumulated air concentration of Tellurium 132 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30129 ; + } + +#paramId: 503504 +#Zr95 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30079 ; + } + +#paramId: 503505 +#Averaged air concentration of Zirconium 95 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30079 ; + } + +#paramId: 503506 +#Accumulated air concentration of Zirconium 95 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30079 ; + } + +#paramId: 503507 +#TRACER - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30000 ; + } + +#paramId: 503508 +#Prognostic specific activity concentration of TRACER +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30000 ; + } + +#paramId: 503509 +#Averaged air concentration of TRACER +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30000 ; + } + +#paramId: 503510 +#Accumulated air concentration of TRACER +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30000 ; + } + +#paramId: 503511 +#Averaged air concentration of Xenon 133 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30161 ; + } + +#paramId: 503512 +#Accumulated air concentration of Xenon 133 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30161 ; + } + +#paramId: 503513 +#Xe133 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30161 ; + } + +#paramId: 503514 +#Air concentration of Iodine 131 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30137 ; + } + +#paramId: 503515 +#I131 - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30137 ; + } + +#paramId: 503516 +#Averaged air concentration of Iodine 131 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30137 ; + } + +#paramId: 503517 +#Accumulated air concentration of Iodine 131 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30137 ; + } + +#paramId: 503518 +#Prognostic specific activity concentration of Iodine 131 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30137 ; + } + +#paramId: 503519 +#I131 - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30137 ; + } + +#paramId: 503520 +#I131 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30137 ; + } + +#paramId: 503522 +#Averaged air concentration of Iodine 131 elementary gaseous +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30138 ; + } + +#paramId: 503523 +#Accumulated air concentration of Iodine 131 elementary gaseous +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30138 ; + } + +#paramId: 503524 +#I131g - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30138 ; + } + +#paramId: 503525 +#Averaged air concentration of Iodine 131 organic bounded +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30139 ; + } + +#paramId: 503526 +#Accumulated air concentration of Iodine 131 organic bounded +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30139 ; + } + +#paramId: 503527 +#I131o - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30139 ; + } + +#paramId: 503528 +#Ba140 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30175 ; + } + +#paramId: 503529 +#Averaged air concentration of Barium 140 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30175 ; + } + +#paramId: 503530 +#Accumulated air concentration of Barium 140 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30175 ; + } + +#paramId: 503531 +#Air concentration of Ruthenium 106 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30104 ; + } + +#paramId: 503532 +#Ru106 - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30104 ; + } + +#paramId: 503533 +#Prognostic specific activity concentration of Ruthenium 106 +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30104 ; + } + +#paramId: 503534 +#Ru106 - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30104 ; + } + +#paramId: 503535 +#Ru106 - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30104 ; + } + +#paramId: 503536 +#Averaged air concentration of Ruthenium 106 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30104 ; + } + +#paramId: 503537 +#Accumulated air concentration of Ruthenium 106 +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30104 ; + } + +#paramId: 503538 +#Co-60 - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30042 ; + } + +#paramId: 503539 +#Air concentration of Cobalt 60 +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30042 ; + } + +#paramId: 503542 +#Kr85m - wet deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 11 ; + constituentType = 30060 ; + } + +#paramId: 503543 +#Kr85m - total (wet + dry) deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 13 ; + constituentType = 30060 ; + } + +#paramId: 503544 +#Prognostic specific activity concentration of Krypton 85m +'Bq kg-1' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 14 ; + constituentType = 30060 ; + } + +#paramId: 503545 +#Kr85m - dry deposition +'Bq m-2' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 12 ; + constituentType = 30060 ; + } + +#paramId: 503546 +#Averaged air concentration of Krypton 85m +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 0 ; + constituentType = 30060 ; + } + +#paramId: 503547 +#Accumulated air concentration of Krypton 85m +'Bq s m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 30060 ; + } + +#paramId: 503548 +#Air concentration of Krypton 85m +'Bq m-3' = { + discipline = 0 ; + parameterCategory = 18 ; + parameterNumber = 10 ; + constituentType = 30060 ; + } + +#paramId: 503551 +#Birch (betula) pollen specific number concentration +'kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62101 ; + } + +#paramId: 503552 +#Alder (alnus) pollen specific number concentration +'kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62100 ; + } + +#paramId: 503553 +#Grasses (poaceae) pollen specific number concentration +'kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62300 ; + } + +#paramId: 503554 +#Ragweed (ambrosia) pollen specific number concentration +'kg-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 60 ; + constituentType = 62200 ; + } + +#paramId: 503560 +#Total lightning flash density - instantaneous +'km-2 day-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + +#paramId: 503561 +#Total lightning flash density - time average +'km-2 day-1' = { + discipline = 0 ; + parameterCategory = 17 ; + parameterNumber = 4 ; + typeOfStatisticalProcessing = 0 ; + typeOfSecondFixedSurface = 8 ; + typeOfFirstFixedSurface = 1 ; + } + #paramId: 500092 #Solar radiation heating rate 'K s-1' = { @@ -7315,7 +8303,7 @@ } #paramId: 500097 -#Stomatal Resistance +#Stomatal resistance 's m-1' = { discipline = 2 ; parameterCategory = 0 ; @@ -7323,7 +8311,7 @@ } #paramId: 500109 -#vertical integral of divergence of total water content (s) +#Vertical integral of divergence of total water content - accumulation 'kg m-2' = { discipline = 0 ; parameterCategory = 1 ; @@ -7332,7 +8320,7 @@ } #paramId: 500110 -#subgrid scale cloud water +#Sub-grid scale cloud water 'kg kg-1' = { discipline = 0 ; parameterCategory = 1 ; @@ -7340,7 +8328,7 @@ } #paramId: 500111 -#subgridscale cloud ice +#Sub-grid scale cloud ice 'kg kg-1' = { discipline = 0 ; parameterCategory = 1 ; @@ -7348,7 +8336,7 @@ } #paramId: 500115 -#cloud base above msl, shallow convection +#Cloud base above MSL, shallow convection 'm' = { discipline = 0 ; parameterCategory = 6 ; @@ -7358,7 +8346,7 @@ } #paramId: 500116 -#Cloud top above msl, shallow convection +#Cloud top above MSL, shallow convection 'm' = { discipline = 0 ; parameterCategory = 6 ; @@ -7368,7 +8356,7 @@ } #paramId: 500117 -#specific cloud water content, convective cloud +#Specific cloud liquid water content, convective cloud 'kg kg-1' = { discipline = 0 ; parameterCategory = 1 ; @@ -7376,7 +8364,7 @@ } #paramId: 500120 -#base index (vertical level) of main convective cloud (i) +#Base index (vertical level) of main convective cloud 'Numeric' = { discipline = 0 ; parameterCategory = 6 ; @@ -7385,7 +8373,7 @@ } #paramId: 500121 -#top index (vertical level) of main convective cloud (i) +#Top index (vertical level) of main convective cloud 'Numeric' = { discipline = 0 ; parameterCategory = 6 ; @@ -7402,7 +8390,7 @@ } #paramId: 500123 -#Specific humitiy tendency due to convection +#Specific humidity tendency due to convection 'kg kg-1 s-1' = { discipline = 0 ; parameterCategory = 1 ; @@ -7410,7 +8398,7 @@ } #paramId: 500124 -#zonal wind tendency due to convection +#Zonal wind tendency due to convection 'm s-2' = { discipline = 0 ; parameterCategory = 2 ; @@ -7418,7 +8406,7 @@ } #paramId: 500125 -#meridional wind tendency due to convection +#Meridional wind tendency due to convection 'm s-2' = { discipline = 0 ; parameterCategory = 2 ; @@ -7446,7 +8434,7 @@ } #paramId: 500129 -#Tendency of specific cloud liquid water content due to conversion +#Tendency of specific cloud liquid water content due to convection 'kg kg-1 s-1' = { discipline = 0 ; parameterCategory = 1 ; @@ -7454,7 +8442,7 @@ } #paramId: 500130 -#tendency of specific cloud ice content due to convection +#Tendency of specific cloud ice content due to convection 'kg kg-1 s-1' = { discipline = 0 ; parameterCategory = 1 ; @@ -7470,7 +8458,7 @@ } #paramId: 500140 -#Temperature tendency due to grid scale precipation +#Temperature tendency due to grid scale precipitation 'K s-1' = { discipline = 0 ; parameterCategory = 0 ; @@ -7478,7 +8466,7 @@ } #paramId: 500141 -#Specific humitiy tendency due to grid scale precipitation +#Specific humidity tendency due to grid scale precipitation 'kg kg-1 s-1' = { discipline = 0 ; parameterCategory = 1 ; @@ -7486,7 +8474,7 @@ } #paramId: 500142 -#tendency of specific cloud liquid water content due to grid scale precipitation +#Tendency of specific cloud liquid water content due to grid scale precipitation 'kg kg-1 s-1' = { discipline = 0 ; parameterCategory = 1 ; @@ -7502,7 +8490,7 @@ } #paramId: 500144 -#tendency of specific cloud ice content due to grid scale precipitation +#Tendency of specific cloud ice content due to grid scale precipitation 'kg kg-1 s-1' = { discipline = 0 ; parameterCategory = 1 ; @@ -7518,7 +8506,7 @@ } #paramId: 500149 -#supercell detection index 1 (rot. up+down drafts) +#Supercell detection index 1 (rot. up- and downdrafts) 's-1' = { discipline = 0 ; parameterCategory = 7 ; @@ -7526,7 +8514,7 @@ } #paramId: 500150 -#supercell detection index 2 (only rot. up drafts) +#Supercell detection index 2 (only rot. updrafts) 's-1' = { discipline = 0 ; parameterCategory = 7 ; @@ -7578,7 +8566,7 @@ } #paramId: 500157 -#Kinetic Energy +#Kinetic energy 'J kg-1' = { discipline = 0 ; parameterCategory = 2 ; @@ -7586,7 +8574,7 @@ } #paramId: 500176 -#solution of 2-d Helmholtz equations - needed for restart +#Solution of 2-d Helmholtz equations - needed for restart 'Numeric' = { discipline = 0 ; parameterCategory = 191 ; @@ -7595,14 +8583,14 @@ #paramId: 500177 #Effective transmissivity of solar radiation -'K s-1' = { +'Numeric' = { discipline = 0 ; parameterCategory = 4 ; parameterNumber = 193 ; } #paramId: 500178 -#sum of contributions to evaporation +#Sum of contributions to evaporation 'kg m-2' = { discipline = 2 ; parameterCategory = 3 ; @@ -7610,7 +8598,7 @@ } #paramId: 500179 -#total transpiration from all soil layers +#Total transpiration from all soil layers 'kg m-2' = { discipline = 2 ; parameterCategory = 3 ; @@ -7618,7 +8606,7 @@ } #paramId: 500180 -#total forcing at soil surface +#Total forcing at soil surface 'W m-2' = { discipline = 2 ; parameterCategory = 3 ; @@ -7626,7 +8614,7 @@ } #paramId: 500181 -#residuum of soil moisture +#Residuum of soil moisture 'kg m-2' = { discipline = 2 ; parameterCategory = 3 ; @@ -7634,7 +8622,7 @@ } #paramId: 500182 -#Massflux at convective cloud base +#Mass flux at convective cloud base 'kg m-2 s-1' = { discipline = 0 ; parameterCategory = 1 ; @@ -7643,7 +8631,7 @@ } #paramId: 500184 -#moisture convergence for Kuo-type closure +#Moisture convergence for Kuo-type closure 's-1' = { discipline = 0 ; parameterCategory = 1 ; @@ -7651,7 +8639,7 @@ } #paramId: 500195 -#analysis error(standard deviation), geopotential(gpm) +#Analysis error (standard deviation), geopotential (gpm) 'gpm' = { discipline = 0 ; parameterCategory = 194 ; @@ -7660,8 +8648,8 @@ } #paramId: 500196 -#analysis error(standard deviation), u-comp. of wind -'m2 s-2' = { +#Analysis error (standard deviation), u-comp. of wind +'m s-1' = { discipline = 0 ; parameterCategory = 194 ; parameterNumber = 2 ; @@ -7669,8 +8657,8 @@ } #paramId: 500197 -#analysis error(standard deviation), v-comp. of wind -'m2 s-2' = { +#Analysis error (standard deviation), v-comp. of wind +'m s-1' = { discipline = 0 ; parameterCategory = 194 ; parameterNumber = 3 ; @@ -7678,7 +8666,7 @@ } #paramId: 500198 -#zonal wind tendency due to subgrid scale oro. +#Zonal wind tendency due to sub-grid scale oro. 'm s-2' = { discipline = 0 ; parameterCategory = 2 ; @@ -7686,7 +8674,7 @@ } #paramId: 500199 -#meridional wind tendency due to subgrid scale oro. +#Meridional wind tendency due to sub-grid scale oro. 'm s-2' = { discipline = 0 ; parameterCategory = 2 ; @@ -7694,7 +8682,7 @@ } #paramId: 500204 -#surface emissivity +#Surface emissivity 'Numeric' = { discipline = 2 ; parameterCategory = 3 ; @@ -7702,7 +8690,7 @@ } #paramId: 500205 -#soil type of grid (1...9, local soilType.table) +#Soil type (1...9, local soilType.table) 'Numeric' = { discipline = 2 ; parameterCategory = 3 ; @@ -7710,7 +8698,7 @@ } #paramId: 500208 -#height of ozone maximum (climatological) +#Height of ozone maximum (climatological) 'Pa' = { discipline = 0 ; parameterCategory = 14 ; @@ -7718,15 +8706,15 @@ } #paramId: 500209 -#vertically integrated ozone content (climatological) -'Pa' = { +#Vertically integrated ozone content (climatological) +'Pa(O3)' = { discipline = 0 ; parameterCategory = 14 ; parameterNumber = 193 ; } #paramId: 500221 -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +#Ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum 'Numeric' = { discipline = 2 ; parameterCategory = 0 ; @@ -7735,7 +8723,7 @@ } #paramId: 500222 -#ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum +#Ratio of NDVI (normalized differential vegetation index) to annual maximum 'Numeric' = { discipline = 2 ; parameterCategory = 0 ; @@ -7743,7 +8731,7 @@ } #paramId: 500233 -#tendency of specific humidity +#Tendency of specific humidity 's-1' = { discipline = 0 ; parameterCategory = 1 ; @@ -7751,7 +8739,7 @@ } #paramId: 500234 -#water vapor flux +#Water vapor flux 's-1 m-2' = { discipline = 0 ; parameterCategory = 1 ; @@ -7767,7 +8755,7 @@ } #paramId: 500239 -#Delay of the GPS signal trough the (total) atm. +#Delay of the GPS signal through the (total) atmos. 'm' = { discipline = 0 ; parameterCategory = 15 ; @@ -7775,7 +8763,7 @@ } #paramId: 500240 -#Delay of the GPS signal trough wet atmos. +#Delay of the GPS signal through wet atmos. 'm' = { discipline = 0 ; parameterCategory = 15 ; @@ -7783,7 +8771,7 @@ } #paramId: 500241 -#Delay of the GPS signal trough dry atmos. +#Delay of the GPS signal through dry atmos. 'm' = { discipline = 0 ; parameterCategory = 15 ; @@ -7791,7 +8779,7 @@ } #paramId: 500279 -#u-momentum flux due to SSO-effects (initialisation) +#U-momentum flux due to SSO-effects (mean over forecast time) 'N m-2' = { discipline = 0 ; parameterCategory = 3 ; @@ -7800,7 +8788,7 @@ } #paramId: 500280 -#u-momentum flux due to SSO-effects +#U-momentum flux due to SSO-effects 'N m-2' = { discipline = 0 ; parameterCategory = 3 ; @@ -7808,7 +8796,7 @@ } #paramId: 500281 -#v-momentum flux due to SSO-effects +#V-momentum flux due to SSO-effects (mean over forecast time) 'N m-2' = { discipline = 0 ; parameterCategory = 3 ; @@ -7817,7 +8805,7 @@ } #paramId: 500282 -#v-momentum flux due to SSO-effects +#V-momentum flux due to SSO-effects 'N m-2' = { discipline = 0 ; parameterCategory = 3 ; @@ -7916,7 +8904,7 @@ } #paramId: 500306 -#modified cloud depth for media +#Modified cloud depth for media 'Numeric' = { discipline = 0 ; parameterCategory = 6 ; @@ -7924,7 +8912,7 @@ } #paramId: 500307 -#modified cloud cover for media +#Modified cloud cover for media 'Numeric' = { discipline = 0 ; parameterCategory = 6 ; @@ -7932,7 +8920,7 @@ } #paramId: 500322 -#Kinetic Energy +#RMS of difference "first guess - analysis" of kinetic energy 'J kg-1' = { discipline = 0 ; parameterCategory = 2 ; @@ -7942,7 +8930,7 @@ } #paramId: 500323 -#Kinetic Energy +#RMS of difference "initialized analysis - analysis" of kinetic energy 'J kg-1' = { discipline = 0 ; parameterCategory = 2 ; @@ -8265,7 +9253,7 @@ } #paramId: 500472 -#Konvektionsart (0..4) +#Type of convection (0..4) 'Numeric' = { discipline = 0 ; parameterCategory = 6 ; @@ -8307,7 +9295,7 @@ } #paramId: 500481 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) +#Downward diffusive short wave radiation flux at surface (mean over forecast time) 'W m-2' = { discipline = 0 ; parameterCategory = 4 ; @@ -8593,7 +9581,7 @@ } #paramId: 500541 -#relative vorticity,U-component +#Relative vorticity, u-component 's-1' = { discipline = 0 ; parameterCategory = 2 ; @@ -8601,7 +9589,7 @@ } #paramId: 500542 -#relative vorticity,V-component +#Relative vorticity, v-component 's-1' = { discipline = 0 ; parameterCategory = 2 ; @@ -8745,7 +9733,7 @@ } #paramId: 500570 -#dry convection top index +#Dry convection top index 'Numeric' = { discipline = 0 ; parameterCategory = 6 ; @@ -8753,7 +9741,7 @@ } #paramId: 500572 -#tidal tendencies +#Tidal tendencies 's2 m-2' = { discipline = 1 ; parameterCategory = 0 ; @@ -8777,7 +9765,7 @@ } #paramId: 500577 -#variance of soil moisture content +#Variance of soil moisture content 'kg2 m-4' = { discipline = 2 ; parameterCategory = 3 ; @@ -8786,7 +9774,7 @@ } #paramId: 500578 -#covariance of soil moisture content +#Covariance of soil moisture content 'kg2 m-4' = { discipline = 2 ; parameterCategory = 3 ; @@ -8811,7 +9799,7 @@ } #paramId: 500591 -#Niederschlagsdargebot aus Modell SNOW +#Niederschlagsdargebot: potential water supply (rain and snow melt) from snowpack - accumulation 'kg m-2' = { discipline = 0 ; parameterCategory = 1 ; @@ -8946,7 +9934,7 @@ } #paramId: 500634 -#wake-production of TKE due to sub grid scale orography +#Wake-production of TKE due to sub-grid scale orography 'm2 s-3' = { discipline = 0 ; parameterCategory = 19 ; @@ -8954,7 +9942,7 @@ } #paramId: 500635 -#shear-production of TKE due to separated horizontal shear modes +#Shear-production of TKE due to separated horizontal shear modes 'm2 s-3' = { discipline = 0 ; parameterCategory = 19 ; @@ -8962,7 +9950,7 @@ } #paramId: 500636 -#buoyancy-production of TKE due to sub grid scale convection +#Buoyancy-production of TKE due to sub-grid scale convection 'm2 s-3' = { discipline = 0 ; parameterCategory = 19 ; @@ -8970,7 +9958,7 @@ } #paramId: 500637 -#production of TKE +#Production of TKE 'm2 s-3' = { discipline = 0 ; parameterCategory = 19 ; @@ -8994,7 +9982,7 @@ } #paramId: 500640 -#mass concentration of dust (minimum mode) +#Mass concentration of dust (minimum mode) 'kg m-3' = { discipline = 0 ; parameterCategory = 197 ; @@ -9002,7 +9990,7 @@ } #paramId: 500643 -#mass concentration of dust (medium mode) +#Mass concentration of dust (medium mode) 'kg m-3' = { discipline = 0 ; parameterCategory = 197 ; @@ -9010,7 +9998,7 @@ } #paramId: 500644 -#mass concentration of dust (maximum mode) +#Mass concentration of dust (maximum mode) 'kg m-3' = { discipline = 0 ; parameterCategory = 197 ; @@ -9018,7 +10006,7 @@ } #paramId: 500645 -#number concentration of dust (minimum mode) +#Number concentration of dust (minimum mode) 'm-3' = { discipline = 0 ; parameterCategory = 197 ; @@ -9026,7 +10014,7 @@ } #paramId: 500646 -#number concentration of dust (medium mode) +#Number concentration of dust (medium mode) 'm-3' = { discipline = 0 ; parameterCategory = 197 ; @@ -9034,7 +10022,7 @@ } #paramId: 500647 -#number concentration of dust (maximum mode) +#Number concentration of dust (maximum mode) 'm-3' = { discipline = 0 ; parameterCategory = 197 ; @@ -9042,7 +10030,7 @@ } #paramId: 500648 -#mass concentration of dust (sum of all modes) +#Mass concentration of dust (sum of all modes) 'kg m-3' = { discipline = 0 ; parameterCategory = 197 ; @@ -9050,7 +10038,7 @@ } #paramId: 500649 -#number concentration of dust (sum of all modes) +#Number concentration of dust (sum of all modes) 'm-3' = { discipline = 0 ; parameterCategory = 197 ; @@ -10081,118 +11069,6 @@ parameterNumber = 128 ; } -#paramId: 500779 -#DUMMY_129 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 129 ; - } - -#paramId: 500780 -#DUMMY_130 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 130 ; - } - -#paramId: 500781 -#DUMMY_131 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 131 ; - } - -#paramId: 500782 -#DUMMY_132 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 132 ; - } - -#paramId: 500783 -#DUMMY_133 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 133 ; - } - -#paramId: 500784 -#DUMMY_134 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 134 ; - } - -#paramId: 500785 -#DUMMY_135 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 135 ; - } - -#paramId: 500786 -#DUMMY_136 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 136 ; - } - -#paramId: 500787 -#DUMMY_137 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 137 ; - } - -#paramId: 500788 -#DUMMY_138 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 138 ; - } - -#paramId: 500789 -#DUMMY_139 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 139 ; - } - -#paramId: 500790 -#DUMMY_140 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 140 ; - } - -#paramId: 500791 -#DUMMY_141 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 141 ; - } - -#paramId: 500792 -#DUMMY_142 -'' = { - discipline = 0 ; - parameterCategory = 254 ; - parameterNumber = 142 ; - } - #paramId: 500793 #DUMMY_143 '' = { @@ -11090,7 +11966,7 @@ } #paramId: 502332 -#Liquid water content in the snow in - multi level +#Liquid water content in snow - multi level 'kg m-2' = { discipline = 0 ; parameterCategory = 1 ; @@ -11108,7 +11984,7 @@ } #paramId: 502344 -#Albedo - diffusive solar (0.3 - 0.7 m-6) +#Albedo - diffusive solar - time average (UV: 0.3 - 0.7 m-6) '%' = { discipline = 0 ; parameterCategory = 19 ; @@ -11117,7 +11993,7 @@ } #paramId: 502345 -#Albedo - UV (0.3 - 0.7 m-6) +#Albedo - diffusive solar (UV: 0.3 - 0.7 m-6) '%' = { discipline = 0 ; parameterCategory = 19 ; @@ -11174,15 +12050,15 @@ } #paramId: 503050 -#Radar Precipitation Rate -'kg m-2 s-1' = { +#Radar precipitation rate +'kg m-2 h-1' = { discipline = 0 ; parameterCategory = 15 ; parameterNumber = 195 ; } #paramId: 503052 -#Radar Quality Information +#Radar quality information 'Proportion' = { discipline = 0 ; parameterCategory = 15 ; @@ -11190,7 +12066,7 @@ } #paramId: 503053 -#Radar Blacklist +#Radar blacklist 'Numeric' = { discipline = 0 ; parameterCategory = 15 ; @@ -11198,7 +12074,7 @@ } #paramId: 503054 -#Height of Radarbeam above Ground +#Height of radar beam above ground 'm' = { discipline = 0 ; parameterCategory = 15 ; @@ -11254,7 +12130,7 @@ } #paramId: 503061 -#Downward diffusive short wave radiation flux at surface ( mean over forecast time) +#Downward diffusive short wave radiation flux at surface (mean over forecast time) 'W m-2' = { discipline = 0 ; parameterCategory = 4 ; @@ -11325,7 +12201,7 @@ } #paramId: 503078 -#relative humidity over mixed phase +#Relative humidity over mixed phase '%' = { discipline = 0 ; parameterCategory = 1 ; @@ -11333,7 +12209,7 @@ } #paramId: 503079 -#soil moisture index (multilayers) +#Soil moisture index (multilayers) 'Numeric' = { discipline = 2 ; parameterCategory = 3 ; @@ -11479,7 +12355,7 @@ } #paramId: 503143 -#rain-drain-from-snowpack +#Rain drain from snowpack - accumulation 'kg m-2' = { discipline = 0 ; parameterCategory = 1 ; @@ -11648,7 +12524,7 @@ } #paramId: 503168 -#Relative duration of sunshine (DURSUN * 100 / DURSON M) +#Relative duration of sunshine (DURSUN * 100 / DURSUN_M) '%' = { discipline = 0 ; parameterCategory = 6 ; @@ -11726,7 +12602,7 @@ } #paramId: 503180 -#Along-wind lagrangian timescale (Hanna) +#Along-wind Lagrangian time scale (Hanna) 's' = { discipline = 215 ; parameterCategory = 2 ; @@ -11734,7 +12610,7 @@ } #paramId: 503181 -#Cross-wind lagrangian timescale (Hanna) +#Cross-wind Lagrangian time scale (Hanna) 's' = { discipline = 215 ; parameterCategory = 2 ; @@ -11742,7 +12618,7 @@ } #paramId: 503182 -#Vertical lagrangian timescale (Hanna) +#Vertical Lagrangian time scale (Hanna) 's' = { discipline = 215 ; parameterCategory = 2 ; @@ -11750,7 +12626,7 @@ } #paramId: 503183 -#Zonal lagrangian timescale (direct) (Hanna) +#Zonal Lagrangian time scale (direct) (Hanna) 's' = { discipline = 215 ; parameterCategory = 2 ; @@ -11758,7 +12634,7 @@ } #paramId: 503184 -#Meridional lagrangian timescale (direct) (Hanna) +#Meridional Lagrangian time scale (direct) (Hanna) 's' = { discipline = 215 ; parameterCategory = 2 ; @@ -11766,7 +12642,7 @@ } #paramId: 503185 -#Vertical lagrangian timescale (direct) (Hanna) +#Vertical Lagrangian time scale (direct) (Hanna) 's' = { discipline = 215 ; parameterCategory = 2 ; @@ -11904,7 +12780,7 @@ } #paramId: 503208 -#Swiss coodinate (south-north) +#Swiss coordinate (south-north) 'm' = { discipline = 0 ; parameterCategory = 191 ; @@ -11912,7 +12788,7 @@ } #paramId: 503209 -#Swiss coodinate (west-east) +#Swiss coordinate (west-east) 'm' = { discipline = 0 ; parameterCategory = 191 ; @@ -12028,7 +12904,7 @@ } #paramId: 503292 -#sea ice albedo - diffusive solar (0.3 - 5.0 m-6) +#Sea ice albedo - diffusive solar (0.3 - 5.0 m-6) '%' = { discipline = 0 ; parameterCategory = 19 ; @@ -12076,7 +12952,7 @@ } #paramId: 503342 -#Maximum rotation amplitude (positive or negative) (over given time interval and column) +#Maximum rotation amplitude (positive or negative) (over given time interval and column) 's-1' = { discipline = 0 ; parameterCategory = 2 ; @@ -12110,6 +12986,18 @@ parameterNumber = 4 ; } +#paramId: 503355 +#Maximum 10m dynamical gust +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + } + #paramId: 503356 #Maximum 10m convective gust 'ms-1' = { @@ -12131,8 +13019,8 @@ } #paramId: 503359 -#evaporation of plants (integrated since "nightly reset") -'kgm-2' = { +#Evaporation of plants (integrated since "nightly reset") +'kg m-2' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 198 ; @@ -12610,3 +13498,312 @@ parameterNumber = 235 ; } +#paramId: 503427 +#U-component of (vertical) wind shear vector between two levels +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 208 ; + } + +#paramId: 503428 +#V-component of (vertical) wind shear vector between two levels +'m s-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 209 ; + } + +#paramId: 503440 +#Accumulated wet deposition of dust if rain reaches the surface for mode 1 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503441 +#Accumulated wet deposition of dust if rain reaches the surface for mode 2 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503442 +#Accumulated wet deposition of dust if rain reaches the surface for mode 3 +'kg m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 203 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503446 +#Accumulated dry deposition of dust number concentration for mode 1 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503447 +#Accumulated dry deposition of dust number concentration for mode 2 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503448 +#Accumulated dry deposition of dust number concentration for mode 3 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 204 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503449 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 1 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503450 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 2 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503451 +#Accumulated wet deposition by grid scale precipitation of dust number concentration for mode 3 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 205 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503452 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 1 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503453 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 2 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503454 +#Accumulated wet deposition of dust number concentration if rain reaches the surface for mode 3 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 207 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503455 +#Accumulated sedimentation of dust number concentration for mode 1 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503456 +#Accumulated sedimentation of dust number concentration for mode 2 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503457 +#Accumulated sedimentation of dust number concentration for mode 3 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 208 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503460 +#Mineral dust backscatter (not attenuated, for given wave length) +'m-1 sr-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 209 ; + aerosolType = 62001 ; + } + +#paramId: 503463 +#Volcanic ash backscatter (not attenuated, for given wave length) +'m-1 sr-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 209 ; + aerosolType = 62025 ; + } + +#paramId: 503464 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 3 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 3 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503465 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 2 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 2 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503466 +#Accumulated wet deposition by convective precipitation of dust number concentration for mode 1 +'m-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 206 ; + typeOfStatisticalProcessing = 1 ; + constituentType = 62001 ; + modeNumber = 1 ; + typeOfDistributionFunction = 8 ; + } + +#paramId: 503549 +#Swiss coordinate LV 95 (south-north) +'m' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 200 ; + } + +#paramId: 503550 +#Swiss coordinate LV 95 (west-east) +'m' = { + discipline = 0 ; + parameterCategory = 191 ; + parameterNumber = 201 ; + } + +#paramId: 503555 +#Average hail diameter +'mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 0 ; + } + +#paramId: 503556 +#Standard deviation of hail diameter +'mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 6 ; + } + +#paramId: 503557 +#Maximum hail diameter +'mm' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 238 ; + typeOfStatisticalProcessing = 2 ; + } + +#paramId: 503558 +#Duration of updraft +'s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 210 ; + } + +#paramId: 503559 +#Updraft mask +'s' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 211 ; + } + diff --git a/definitions/grib2/tables/local/edzw/1.1.table b/definitions/grib2/tables/local/edzw/1.1.table new file mode 100644 index 000000000..2f004eb84 --- /dev/null +++ b/definitions/grib2/tables/local/edzw/1.1.table @@ -0,0 +1,5 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +1 1 DWD local entries from the current Master table are used +255 255 Missing diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.0.table b/definitions/grib2/tables/local/edzw/1/4.2.0.0.table index 595db42de..7b8c79816 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.0.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.0.table @@ -1,5 +1,5 @@ -# This file is automatically generated, dont edit! +# This file is automatically generated, don't edit! 192 192 Temperature tendency due to convection(K s-1) -193 193 Temperature tendency due to grid scale precipation(K s-1) +193 193 Temperature tendency due to grid scale precipitation (K s-1) 194 194 Universal thermal climate index without direct incident short wave radiation(K) -195 195 2m temperature, corrected in presence of snow(K) +195 195 Temperature, corrected in presence of snow (K) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.1.table b/definitions/grib2/tables/local/edzw/1/4.2.0.1.table index 3a52224e1..1005b6373 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.1.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.1.table @@ -1,23 +1,23 @@ -# This file is automatically generated, dont edit! -192 192 vertical integral of divergence of total water content (s)(kg m-2) -193 193 subgrid scale cloud water(kg kg-1) -194 194 subgridscale cloud ice(kg kg-1) -195 195 specific cloud water content, convective cloud(kg kg-1) +# This file is automatically generated, don't edit! +192 192 Vertical integral of divergence of total water content (rate) (kg m-2 s-1) +193 193 Sub-grid scale cloud water (kg kg-1) +194 194 Sub-grid scale cloud ice (kg kg-1) +195 195 Specific cloud liquid water content, convective cloud (kg kg-1) 196 196 Specific content of precipitation particles (needed for water loading)(kg kg-1) -197 197 Specific humitiy tendency due to convection(kg kg-1 s-1) -198 198 Tendency of specific cloud liquid water content due to conversion(kg kg-1 s-1) -199 199 tendency of specific cloud ice content due to convection(kg kg-1 s-1) -200 200 Specific humitiy tendency due to grid scale precipitation(kg kg-1 s-1) -201 201 tendency of specific cloud liquid water content due to grid scale precipitation(kg kg-1 s-1) -202 202 tendency of specific cloud ice content due to grid scale precipitation(kg kg-1 s-1) +197 197 Specific humidity tendency due to convection (kg kg-1 s-1) +198 198 Tendency of specific cloud liquid water content due to convection (kg kg-1 s-1) +199 199 Tendency of specific cloud ice content due to convection (kg kg-1 s-1) +200 200 Specific humidity tendency due to grid scale precipitation(kg kg-1 s-1) +201 201 Tendency of specific cloud liquid water content due to grid scale precipitation (kg kg-1 s-1) +202 202 Tendency of specific cloud ice content due to grid scale precipitation (kg kg-1 s-1) 203 203 Fresh snow factor (weighting function for albedo indicating freshness of snow)(Numeric) -204 204 Height of snow fall limit above MSL(m) -205 205 Massflux at convective cloud base(kg m-2 s-1) -206 206 moisture convergence for Kuo-type closure(s-1) -207 207 tendency of specific humidity(s-1) -208 208 water vapor flux(s-1 m-2) -209 209 Niederschlagsdargebot aus Modell SNOW(kg m-2) -210 210 Liquid water content in the snow in - multi level(kg m-2) +204 204 Height of snow fall limit (m) +205 205 Convective vertical mass flux (kg m-2 s-1) +206 206 Moisture convergence for Kuo-type closure (s-1) +207 207 Tendency of specific humidity (s-1) +208 208 Water vapor flux (s-1 m-2) +209 209 Niederschlagsdargebot: potential water supply from snowpack (rain and snow melt, rate) (kg m-2 s-1) +210 210 Liquid water content in snow (kg m-2) 211 211 Specific humidity (diagnostic)(kg kg-1) 212 212 Specific cloud water content (diagnostic)(kg kg-1) 213 213 Specific cloud ice content (diagnostic)(kg kg-1) @@ -27,7 +27,7 @@ 217 217 Specific number concentration of snow(kg-1) 218 218 Specific number concentration of graupel(kg-1) 219 219 Specific number concentration of hail(kg-1) -220 220 relative humidity over mixed phase(%) +220 220 Relative humidity over mixed phase (%) 221 221 Number density of snow(m-3) 222 222 Number density of graupel(m-3) 223 223 Number density of hail(m-3) @@ -37,9 +37,10 @@ 227 227 Mass density of hail(kg m-3) 228 228 Specific number concentration of rain(kg-1) 229 229 Number density of rain(m-3) -230 230 rain-drain-from-snowpack(kg m-2) +230 230 Rain drain from snowpack (rate) (kg m-2 s-1) 231 231 Cloud ice ratio qi/(qc+qi)(%) 232 232 Percentage of convective precipitation (from total prec)(%) 233 233 Percentage of precipitation in snow (from total prec.)(%) 234 234 Standard deviation of saturation deficit(Numeric) 235 235 Maximum snow height during contiguous accumulating snow period (coupled with snow age)(m) +238 238 Hail diameter (mm) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.14.table b/definitions/grib2/tables/local/edzw/1/4.2.0.14.table index 056a3005a..3380a9e26 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.14.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.14.table @@ -1,3 +1,3 @@ -# This file is automatically generated, dont edit! -192 192 height of ozone maximum (climatological)(Pa) -193 193 vertically integrated ozone content (climatological)(Pa) +# This file is automatically generated, don't edit! +192 192 Height of ozone maximum (climatological) (Pa) +193 193 Vertically integrated ozone content (climatological) (Pa(O3)) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.15.table b/definitions/grib2/tables/local/edzw/1/4.2.0.15.table index d33ad97f5..a80a93e1f 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.15.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.15.table @@ -1,8 +1,8 @@ -# This file is automatically generated, dont edit! -192 192 Delay of the GPS signal trough the (total) atm.(m) -193 193 Delay of the GPS signal trough wet atmos.(m) -194 194 Delay of the GPS signal trough dry atmos.(m) -195 195 Radar Precipitation Rate(kg m-2 s-1) -196 196 Radar Quality Information(Proportion) -197 197 Radar Blacklist(Numeric) -198 198 Height of Radarbeam above Ground(m) +# This file is automatically generated, don't edit! +192 192 Delay of the GPS signal through the (total) atmos. (m) +193 193 Delay of the GPS signal through wet atmos. (m) +194 194 Delay of the GPS signal through dry atmos. (m) +195 195 Radar precipitation rate (kg m-2 h-1) +196 196 Radar quality information (Proportion) +197 197 Radar blacklist (Numeric) +198 198 Height of radar beam above ground (m) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.16.table b/definitions/grib2/tables/local/edzw/1/4.2.0.16.table index 45da29b81..6a7bce6c0 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.16.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.16.table @@ -1,4 +1,4 @@ -# This file is automatically generated, dont edit! +# This file is automatically generated, don't edit! 192 192 precipitation, qualified,BRD(kg m-2) 193 193 precipitation,BRD(kg m-2) 194 194 precipitation phase,BRD(Numeric) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.17.table b/definitions/grib2/tables/local/edzw/1/4.2.0.17.table index bad3db7d0..f2b51a037 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.17.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.17.table @@ -1,2 +1,2 @@ -# This file is automatically generated, dont edit! -192 192 Lightning Potential Index(J kg-1) +# This file is automatically generated, don't edit! +192 192 Lightning potential index (J kg-1) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.18.table b/definitions/grib2/tables/local/edzw/1/4.2.0.18.table index 236635272..e5c046997 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.18.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.18.table @@ -1,2 +1,2 @@ -# This file is automatically generated, dont edit! -192 192 Diagnostic total column of activity concentration of radionuclides(Bq m-2) +# This file is automatically generated, don't edit! +192 192 Diagnostic activity concentration of radionuclides (Bq m-3) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.19.table b/definitions/grib2/tables/local/edzw/1/4.2.0.19.table index 20a28fc0b..27dcb9b57 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.19.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.19.table @@ -1,4 +1,4 @@ -# This file is automatically generated, dont edit! +# This file is automatically generated, don't edit! 192 192 Tendency of turbulent kinetic energy(m2 s-3) 193 193 Coriolis parameter(s-1) 194 194 Kombination Niederschlag-Bewoelkung-Blauthermik (cl_typ.tab)(Numeric) @@ -19,12 +19,12 @@ 209 209 current weather (symbol number: 0..9)(Numeric) 216 216 Eddy Dissipation Rate(m2/3 s-1) 217 217 Ellrod Index(10-7 s-2) -218 218 production of TKE(m2 s-3) -219 219 buoyancy-production of TKE due to sub grid scale convection(m2 s-3) -220 220 wake-production of TKE due to sub grid scale orography(m2 s-3) -221 221 shear-production of TKE due to separated horizontal shear modes(m2 s-3) -222 222 Albedo - diffusive solar (0.3 - 0.7 m-6)(%) -223 223 Albedo - near infrared - time average (0.7 - 5.0 m-6)(%) +218 218 Production of TKE (m2 s-3) +219 219 Buoyancy-production of TKE due to sub-grid scale convection (m2 s-3) +220 220 Wake-production of TKE due to sub-grid scale orography (m2 s-3) +221 221 Shear-production of TKE due to separated horizontal shear modes (m2 s-3) +222 222 Albedo - diffusive solar (UV: 0.3 - 0.7 m-6) (%) +223 223 Albedo - near infrared (0.7 - 5.0 m-6) (%) 224 224 Eddy Dissipation Rate Total Col-Max. Upper FIR (< FL245)(m2/3 s-1) 225 225 Eddy Dissipation Rate Total Col-Max. Lower UIR (= 10mm(kg m2) 3 3 Probability of 1h total precipitation >= 25mm(kg m2) 14 14 Probability of 6h total precipitation >= 20mm(kg m2) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.196.table b/definitions/grib2/tables/local/edzw/1/4.2.0.196.table index 27a1c168d..02d7ea108 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.196.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.196.table @@ -1,4 +1,4 @@ -# This file is automatically generated, dont edit! +# This file is automatically generated, don't edit! 1 1 Prob Gewitter(Numeric) 2 2 Prob Starkes Gewitter(Numeric) 3 3 Prob Schweres Gewitter(Numeric) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.197.table b/definitions/grib2/tables/local/edzw/1/4.2.0.197.table index 97f189d0b..2aec356ae 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.197.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.197.table @@ -1,9 +1,9 @@ -# This file is automatically generated, dont edit! -33 33 mass concentration of dust (minimum mode)(kg m-3) -34 34 mass concentration of dust (medium mode)(kg m-3) -35 35 mass concentration of dust (maximum mode)(kg m-3) -72 72 number concentration of dust (minimum mode)(m-3) -73 73 number concentration of dust (medium mode)(m-3) -74 74 number concentration of dust (maximum mode)(m-3) -251 251 mass concentration of dust (sum of all modes)(kg m-3) -252 252 number concentration of dust (sum of all modes)(m-3) +# This file is automatically generated, don't edit! +33 33 Mass concentration of dust (minimum mode) (kg m-3) +34 34 Mass concentration of dust (medium mode) (kg m-3) +35 35 Mass concentration of dust (maximum mode) (kg m-3) +72 72 Number concentration of dust (minimum mode) (m-3) +73 73 Number concentration of dust (medium mode) (m-3) +74 74 Number concentration of dust (maximum mode) (m-3) +251 251 Mass concentration of dust (sum of all modes) (kg m-3) +252 252 Number concentration of dust (sum of all modes) (m-3) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.198.table b/definitions/grib2/tables/local/edzw/1/4.2.0.198.table index 48ad53e08..4a4a45586 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.198.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.198.table @@ -1,4 +1,4 @@ -# This file is automatically generated, dont edit! +# This file is automatically generated, don't edit! 0 0 Liquid water potential temperature variance(K2) 1 1 Total water specific humidity variance(kg2 kg-2) 2 2 Liquid water potential temperature - total water specific humidity covariance(K kg kg-1) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.199.table b/definitions/grib2/tables/local/edzw/1/4.2.0.199.table index 0d3998185..b82c9b6de 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.199.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.199.table @@ -1,4 +1,4 @@ -# This file is automatically generated, dont edit! +# This file is automatically generated, don't edit! 0 0 Sky-view-factor(Numeric) 1 1 Horizon angle - topography(Numeric) 2 2 Slope angle - topography(Numeric) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.2.table b/definitions/grib2/tables/local/edzw/1/4.2.0.2.table index b7bf8f6d3..4fb548fd7 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.2.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.2.table @@ -1,16 +1,21 @@ -# This file is automatically generated, dont edit! -192 192 zonal wind tendency due to convection(m s-2) -193 193 meridional wind tendency due to convection(m s-2) -194 194 zonal wind tendency due to subgrid scale oro.(m s-2) -195 195 meridional wind tendency due to subgrid scale oro.(m s-2) -196 196 Kinetic Energy(J kg-1) +# This file is automatically generated, don't edit! +192 192 Zonal wind tendency due to convection (m s-2) +193 193 Meridional wind tendency due to convection (m s-2) +194 194 Zonal wind tendency due to sub-grid scale oro. (m s-2) +195 195 Meridional wind tendency due to sub-grid scale oro. (m s-2) +196 196 Kinetic energy (J kg-1) 197 197 Absolute vorticity advection(s-2) -198 198 relative vorticity,U-component(s-1) -199 199 relative vorticity,V-component(s-1) +198 198 Relative vorticity, u-component (s-1) +199 199 Relative vorticity, v-component (s-1) 200 200 Atmospheric resistance(s m-1) 201 201 Mean vertical wind shear for specified layer or layer-mean vertical wind shear(s-1) 202 202 Norm of (vertical) wind shear vector between two levels(m s-1) 203 203 Threshold friction velocity(m s-1) -205 205 Maximum 10m convective gust(ms-1) -206 206 Maximum rotation amplitude (positive or negative) (over given time interval and column)(s-1) -207 207 Maximum updraft track (over given time interval and column)(m s-1) +204 204 Dynamical gust(m s-1) +205 205 Convective gust(m s-1) +206 206 Maximum rotation amplitude (positive or negative) over given column (s-1) +207 207 Maximum updraft track over given column (m s-1) +208 208 U-component of (vertical) wind shear vector between two levels (m s-1) +209 209 V-component of (vertical) wind shear vector between two levels (m s-1) +210 210 Updraft duration(s) +211 211 Updraft mask(Numeric) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.20.table b/definitions/grib2/tables/local/edzw/1/4.2.0.20.table index 86effac5a..be9d530d5 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.20.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.20.table @@ -1,12 +1,19 @@ -# This file is automatically generated, dont edit! -192 192 Number of pollen in the reservoir (previous timestep)(m-2) -193 193 Sum of released pollen into the reservoir (daily sum)(m-2) -194 194 State of the season (eq.zero before and after season, the higher, the more plants are flowering)(0-1) -195 195 Height correction for emission (decreasing emission with height) (0-1) -196 196 Cumulated weighted 2m temperature sum of daily values for pollen(deg C) -197 197 Cumulated 2m temperature sum threshold for the start of pollen season (climatological)(deg C) -198 198 Cumulated 2m temperature sum threshold for the end of pollen season (climatological)(deg C) -199 199 Number of days since the start of pollen season (if present day is in the season: zero outside season)(d) -200 200 Number of days since the start of pollen season (if present day is outside the season: length of current season)(d) -201 201 Length of pollen season(d) -202 202 Pollen number emission flux for (m-2s-1) +# This file is automatically generated, don't edit! +192 192 Number of pollen in the reservoir (previous timestep) (m-2) +193 193 Number of pollen released into the reservoir (new) (m-2) +194 194 State of the pollen season (eq. zero before and after season, the higher, the more plants are flowering) (0-1) +195 195 Height correction for pollen emission (decreasing emission with height) (0-1) +196 196 Cumulated weighted 2m temperature sum of daily values for pollen (deg C) +197 197 Cumulated 2m temperature sum threshold for the start of pollen season (climatological) (deg C) +198 198 Cumulated 2m temperature sum threshold for the end of pollen season (climatological) (deg C) +199 199 Number of days since the start of pollen season (if present day is in the season: zero outside season) (d) +200 200 Number of days since the start of pollen season (if present day is outside the season: length of current season) (d) +201 201 Length of pollen season (d) +202 202 Pollen number emission flux (m-2 s-1) +203 203 Wet deposition mass flux if rain reaches the surface (kg m-2 s-1) +204 204 Surface dry deposition of number concentration (m-2 s-1) +205 205 Wet deposition by grid scale precipitation of number concentration (m-2 s-1) +206 206 Wet deposition by convective precipitation of number concentration (m-2 s-1) +207 207 Wet deposition of number concentration if rain reaches the surface (m-2 s-1) +208 208 Sedimentation of number concentration (m-2 s-1) +209 209 Aerosol backscatter (not attenuated) for given wavelength (m-1 sr-1) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.254.table b/definitions/grib2/tables/local/edzw/1/4.2.0.254.table index 9d0b0ec86..67375817f 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.254.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.254.table @@ -1,4 +1,4 @@ -# This file is automatically generated, dont edit! +# This file is automatically generated, don't edit! 1 1 DUMMY_1() 2 2 DUMMY_2() 3 3 DUMMY_3() diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.3.table b/definitions/grib2/tables/local/edzw/1/4.2.0.3.table index 4554c15a6..7ff056e8c 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.3.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.3.table @@ -1,7 +1,7 @@ -# This file is automatically generated, dont edit! +# This file is automatically generated, don't edit! 192 192 Pressure perturbation(Pa) -193 193 u-momentum flux due to SSO-effects (initialisation)(N m-2) -194 194 v-momentum flux due to SSO-effects (initialisation)(N m-2) +193 193 U-momentum flux due to SSO-effects (N m-2) +194 194 V-momentum flux due to SSO-effects (N m-2) 195 195 3 hour pressure change(Pa-3h) 196 196 Height of -10 degree Celsius isotherm(m) -197 197 Pressure difference between cloud base and cloud top(Pa) +197 197 Pressure difference between two specific levels (Pa) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.4.table b/definitions/grib2/tables/local/edzw/1/4.2.0.4.table index 5ac22301d..7dd308f03 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.4.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.4.table @@ -1,9 +1,9 @@ -# This file is automatically generated, dont edit! +# This file is automatically generated, don't edit! 192 192 Solar radiation heating rate(K s-1) -193 193 Effective transmissivity of solar radiation(K s-1) +193 193 Effective transmissivity of solar radiation (Numeric) 194 194 Time of maximum of UV Index, clouded(Numeric) 195 195 UV Index, clear sky; corrected for albedo, aerosol and altitude(Numeric) 196 196 Basic UV Index, clear sky; MSL, fixed albedo, fixed aerosol(Numeric) 197 197 UV Index, clouded sky; corrected for albedo, aerosol, altitude and clouds(Numeric) -198 198 Downward direct short wave radiation flux at surface(W m-2) -199 199 Downward diffusive short wave radiation flux at surface ( mean over forecast time)(W m-2) +198 198 Downward direct short wave radiation flux(W m-2) +199 199 Downward diffusive short wave radiation flux(W m-2) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.5.table b/definitions/grib2/tables/local/edzw/1/4.2.0.5.table index 73a475c74..e045bb4c0 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.5.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.5.table @@ -1,2 +1,2 @@ -# This file is automatically generated, dont edit! +# This file is automatically generated, don't edit! 192 192 Thermal radiation heating rate(K s-1) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.6.table b/definitions/grib2/tables/local/edzw/1/4.2.0.6.table index 756b8ba5c..7ad7ab5f8 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.6.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.6.table @@ -1,15 +1,15 @@ -# This file is automatically generated, dont edit! -192 192 cloud base above msl, shallow convection(m) -193 193 Cloud top above msl, shallow convection(m) -194 194 base index (vertical level) of main convective cloud (i)(Numeric) -195 195 top index (vertical level) of main convective cloud (i)(Numeric) -196 196 Height of top of dry convection above MSL(m) +# This file is automatically generated, don't edit! +192 192 Shallow convection cloud base (m) +193 193 Shallow convection cloud top (m) +194 194 Base index (vertical level) of main convective cloud (Numeric) +195 195 Top index (vertical level) of main convective cloud (Numeric) +196 196 Height of top of dry convection (m) 197 197 Height of thermals above MSL(m) -198 198 modified cloud depth for media(Numeric) -199 199 modified cloud cover for media(Numeric) -201 201 Konvektionsart (0..4)(Numeric) -202 202 dry convection top index(Numeric) +198 198 Modified cloud depth for media (Numeric) +199 199 Modified cloud cover for media (Numeric) +201 201 Type of convection (0..4) (Numeric) +202 202 Dry convection top index (Numeric) 203 203 Mass density of cloud droplets(kg m-3) 204 204 Mass density of cloud ice(kg m-3) -205 205 Possible astronomical maximum of sunshine(s) -206 206 Relative duration of sunshine (DURSUN * 100 / DURSON M)(%) +205 205 Possible astronomical sunshine duration (s) +206 206 Relative duration of sunshine (DURSUN * 100 / DURSUN_M)(%) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.0.7.table b/definitions/grib2/tables/local/edzw/1/4.2.0.7.table index 8a1983bbb..d794f96ac 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.0.7.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.0.7.table @@ -1,5 +1,5 @@ -# This file is automatically generated, dont edit! -192 192 supercell detection index 1 (rot. up+down drafts)(s-1) -193 193 supercell detection index 2 (only rot. up drafts)(s-1) +# This file is automatically generated, don't edit! +192 192 Supercell detection index 1 (rot. up- and downdrafts) (s-1) +193 193 Supercell detection index 2 (only rot. updrafts) (s-1) 194 194 Deep convection index(K) -195 195 Enthalpy(J kg-1) +195 195 Enthalpy (J kg-1) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.1.0.table b/definitions/grib2/tables/local/edzw/1/4.2.1.0.table index 404b98152..a6590ff82 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.1.0.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.1.0.table @@ -1,2 +1,2 @@ -# This file is automatically generated, dont edit! -192 192 tidal tendencies(s2 m-2) +# This file is automatically generated, don't edit! +192 192 Tidal tendencies (s2 m-2) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.10.0.table b/definitions/grib2/tables/local/edzw/1/4.2.10.0.table index f0a565cbb..1c2750ca5 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.10.0.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.10.0.table @@ -1,4 +1,4 @@ -# This file is automatically generated, dont edit! +# This file is automatically generated, don't edit! 193 193 wind sea period (s) 194 194 swell period (s) 195 195 total wave peak period (s) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.10.3.table b/definitions/grib2/tables/local/edzw/1/4.2.10.3.table index b4b657b97..c0acae709 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.10.3.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.10.3.table @@ -1,2 +1,2 @@ -# This file is automatically generated, dont edit! +# This file is automatically generated, don't edit! 192 192 Sea surface temperature interpolated in time in C(C) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.2.0.table b/definitions/grib2/tables/local/edzw/1/4.2.2.0.table index a2ef72389..ded9f6cbc 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.2.0.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.2.0.table @@ -1,9 +1,9 @@ -# This file is automatically generated, dont edit! -192 192 ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum (1) +# This file is automatically generated, don't edit! +192 192 Ratio of NDVI (normalized differential vegetation index) to annual maximum (Numeric) 193 193 Latent heat flux from bare soil(W m-2) 194 194 Latent heat flux from plants(W m-2) -195 195 Stomatal Resistance(s m-1) +195 195 Stomatal resistance (s m-1) 196 196 Impervious (paved or sealed) surface fraction(Proportion) 197 197 Antropogenic heat flux (e.g. urban heating, traffic)(W m-2) -198 198 evaporation of plants (integrated since "nightly reset")(kgm-2) +198 198 Evaporation of plants (integrated since "nightly reset") (kg m-2) 199 199 skin conductivity (ratio ground heat flux to temperature difference soil-skin layer)(W m-2 K-1) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.2.3.table b/definitions/grib2/tables/local/edzw/1/4.2.2.3.table index cad31cb16..2ad91b4db 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.2.3.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.2.3.table @@ -1,10 +1,10 @@ -# This file is automatically generated, dont edit! -192 192 sum of contributions to evaporation(kg m-2) -193 193 total transpiration from all soil layers(kg m-2) -194 194 total forcing at soil surface(W m-2) -195 195 residuum of soil moisture(kg m-2) -196 196 soil type of grid (1...9, local soilType.table)(Numeric) -197 197 variance of soil moisture content (10-100)(kg2 m-4) -198 198 covariance of soil moisture content (kg2 m-4) -199 199 surface emissivity(Numeric) -200 200 soil moisture index (multilayers)(Numeric) +# This file is automatically generated, don't edit! +192 192 Sum of contributions to evaporation (kg m-2) +193 193 Total transpiration from all soil layers (kg m-2) +194 194 Total forcing at soil surface (W m-2) +195 195 Residuum of soil moisture (kg m-2) +196 196 Soil type (1...9, local soilType.table) (Numeric) +197 197 Variance of soil moisture content (kg2 m-4) +198 198 Covariance of soil moisture content (kg2 m-4) +199 199 Surface emissivity (Numeric) +200 200 Soil moisture index (multilayers) (Numeric) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.215.19.table b/definitions/grib2/tables/local/edzw/1/4.2.215.19.table index 9a5b2573f..0532073dd 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.215.19.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.215.19.table @@ -1,2 +1,2 @@ -# This file is automatically generated, dont edit! +# This file is automatically generated, don't edit! 0 0 Luminosity(klux) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.215.2.table b/definitions/grib2/tables/local/edzw/1/4.2.215.2.table index 9b9b1e8f0..b32d02120 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.215.2.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.215.2.table @@ -1,11 +1,11 @@ -# This file is automatically generated, dont edit! -0 0 Wind direction in azimuth class(Numeric) -1 1 Along-wind lagrangian timescale (Hanna)(s) -2 2 Cross-wind lagrangian timescale (Hanna)(s) -3 3 Vertical lagrangian timescale (Hanna)(s) -4 4 Zonal lagrangian timescale (direct) (Hanna)(s) -5 5 Meridional lagrangian timescale (direct) (Hanna)(s) -6 6 Vertical lagrangian timescale (direct) (Hanna)(s) +# This file is automatically generated, don't edit! +0 0 Wind direction in azimuth class (Numeric) +1 1 Along-wind Lagrangian time scale (Hanna) (s) +2 2 Cross-wind Lagrangian time scale (Hanna) (s) +3 3 Vertical Lagrangian time scale (Hanna) (s) +4 4 Zonal Lagrangian time scale (direct) (Hanna) (s) +5 5 Meridional Lagrangian time scale (direct) (Hanna) (s) +6 6 Vertical Lagrangian time scale (direct) (Hanna) (s) 7 7 Along-wind velocity fluctuation (Hanna)(m s-1) 8 8 Cross-wind velocity fluctuation (Hanna)(m s-1) 9 9 Vertical velocity fluctuation (Hanna)(m s-1) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.215.5.table b/definitions/grib2/tables/local/edzw/1/4.2.215.5.table index 00b0d3325..1cff0f7ce 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.215.5.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.215.5.table @@ -1,4 +1,4 @@ # This file is automatically generated, dont edit! -1 1 Downward long-wave radiation flux at surface based on T_2M (time average)(W m-2 ) -2 2 Downward long-wave radiation flux at surface based on T_G (time average)(W m-2 ) -3 3 Downward long-wave radiation flux at surface based on T_SO(0) (time average)(W m-2 ) +1 1 Downward long-wave radiation flux at surface based on T_2M(W m-2 ) +2 2 Downward long-wave radiation flux at surface based on T_G(W m-2 ) +3 3 Downward long-wave radiation flux at surface based on T_SO(0)(W m-2 ) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.215.7.table b/definitions/grib2/tables/local/edzw/1/4.2.215.7.table index 1cacc1ecf..defa7a084 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.215.7.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.215.7.table @@ -1,4 +1,4 @@ -# This file is automatically generated, dont edit! +# This file is automatically generated, don't edit! 0 0 Adedokun 2 Index(K) 1 1 Thunderstorm index for Switzerland (night time)(K) 2 2 Thunderstorm index for Switzerland (day time)(K) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.3.0.table b/definitions/grib2/tables/local/edzw/1/4.2.3.0.table index 3e2b0a3ce..a4f385d48 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.3.0.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.3.0.table @@ -1,2 +1,2 @@ -# This file is automatically generated, dont edit! +# This file is automatically generated, don't edit! 192 192 cloud type(Numeric) diff --git a/definitions/grib2/tables/local/edzw/1/4.2.3.1.table b/definitions/grib2/tables/local/edzw/1/4.2.3.1.table index cf174d117..2f5e29c5b 100644 --- a/definitions/grib2/tables/local/edzw/1/4.2.3.1.table +++ b/definitions/grib2/tables/local/edzw/1/4.2.3.1.table @@ -1,2 +1,2 @@ -# This file is automatically generated, dont edit! +# This file is automatically generated, don't edit! 192 192 cloud top temperature(K) diff --git a/definitions/grib2/tables/local/edzw/1/4.3.table b/definitions/grib2/tables/local/edzw/1/4.3.table index f0075e7d5..d845e448f 100644 --- a/definitions/grib2/tables/local/edzw/1/4.3.table +++ b/definitions/grib2/tables/local/edzw/1/4.3.table @@ -12,5 +12,6 @@ 203 203 nudgecast 204 204 product derived by statistical model 205 205 deterministic forecast on ensemble mean(DOM) +206 206 time filtered bias 220 220 postprocessing 255 255 Missing diff --git a/definitions/grib2/tables/local/edzw/1/generatingProcessIdentifier.table b/definitions/grib2/tables/local/edzw/1/generatingProcessIdentifier.table index 361ff9384..209928e41 100644 --- a/definitions/grib2/tables/local/edzw/1/generatingProcessIdentifier.table +++ b/definitions/grib2/tables/local/edzw/1/generatingProcessIdentifier.table @@ -8,9 +8,9 @@ 008 dwd dwd (reserved ICON DWD) 009 dwd dwd (reserved ICON DWD) 010 dwd dwd (reserved ICON DWD) -011 dwd dwd (reserved ICON DWD) -012 dwd dwd (reserved ICON DWD) -013 dwd dwd (reserved ICON DWD) +011 icXla icXla (ICON LAM) +012 icXln icXln (ICON LAM nest) +013 icXls icXls (ICON LAM sub-nest) 014 dwd dwd (reserved ICON DWD) 015 dwd dwd (reserved ICON DWD) 016 dwd dwd (reserved ICON DWD) From 2f90f4a3e68826ff10a8334a3be271deaf57ff71 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 11 Dec 2020 18:17:30 +0000 Subject: [PATCH 190/683] ECC-403: codes_is_missing reports 1 on keys that are not missing --- src/grib_accessor_class_bufr_data_element.c | 212 ++++++++++++++------ src/grib_expression_class_functor.c | 15 +- 2 files changed, 163 insertions(+), 64 deletions(-) diff --git a/src/grib_accessor_class_bufr_data_element.c b/src/grib_accessor_class_bufr_data_element.c index c332b081f..c74e22bfb 100644 --- a/src/grib_accessor_class_bufr_data_element.c +++ b/src/grib_accessor_class_bufr_data_element.c @@ -22,7 +22,7 @@ SUPER = grib_accessor_class_gen IMPLEMENTS = init;dump IMPLEMENTS = unpack_string;unpack_string_array;unpack_long; unpack_double - IMPLEMENTS = unpack_double_element + IMPLEMENTS = unpack_double_element ; is_missing IMPLEMENTS = pack_long; pack_double ; pack_string_array; pack_string IMPLEMENTS = value_count; get_native_type; make_clone; destroy MEMBERS = long index @@ -51,6 +51,7 @@ or edit "accessor.class" and rerun ./make_class.pl */ static int get_native_type(grib_accessor*); +static int is_missing(grib_accessor*); static int pack_double(grib_accessor*, const double* val, size_t* len); static int pack_long(grib_accessor*, const long* val, size_t* len); static int pack_string(grib_accessor*, const char*, size_t* len); @@ -87,46 +88,46 @@ typedef struct grib_accessor_bufr_data_element extern grib_accessor_class* grib_accessor_class_gen; static grib_accessor_class _grib_accessor_class_bufr_data_element = { - &grib_accessor_class_gen, /* super */ - "bufr_data_element", /* name */ - sizeof(grib_accessor_bufr_data_element), /* size */ - 0, /* inited */ - &init_class, /* init_class */ - &init, /* init */ - 0, /* post_init */ - &destroy, /* free mem */ - &dump, /* describes himself */ - 0, /* get length of section */ - 0, /* get length of string */ - &value_count, /* get number of values */ - 0, /* get number of bytes */ - 0, /* get offset to bytes */ - &get_native_type, /* get native type */ - 0, /* get sub_section */ - 0, /* grib_pack procedures long */ - 0, /* grib_pack procedures long */ - &pack_long, /* grib_pack procedures long */ - &unpack_long, /* grib_unpack procedures long */ - &pack_double, /* grib_pack procedures double */ - &unpack_double, /* grib_unpack procedures double */ - &pack_string, /* grib_pack procedures string */ - &unpack_string, /* grib_unpack procedures string */ - &pack_string_array, /* grib_pack array procedures string */ - &unpack_string_array, /* grib_unpack array procedures string */ - 0, /* grib_pack procedures bytes */ - 0, /* grib_unpack procedures bytes */ - 0, /* pack_expression */ - 0, /* notify_change */ - 0, /* update_size */ - 0, /* preferred_size */ - 0, /* resize */ - 0, /* nearest_smaller_value */ - 0, /* next accessor */ - 0, /* compare vs. another accessor */ - &unpack_double_element, /* unpack only ith value */ - 0, /* unpack a subarray */ - 0, /* clear */ - &make_clone, /* clone accessor */ + &grib_accessor_class_gen, /* super */ + "bufr_data_element", /* name */ + sizeof(grib_accessor_bufr_data_element), /* size */ + 0, /* inited */ + &init_class, /* init_class */ + &init, /* init */ + 0, /* post_init */ + &destroy, /* free mem */ + &dump, /* describes himself */ + 0, /* get length of section */ + 0, /* get length of string */ + &value_count, /* get number of values */ + 0, /* get number of bytes */ + 0, /* get offset to bytes */ + &get_native_type, /* get native type */ + 0, /* get sub_section */ + 0, /* grib_pack procedures long */ + &is_missing, /* grib_pack procedures long */ + &pack_long, /* grib_pack procedures long */ + &unpack_long, /* grib_unpack procedures long */ + &pack_double, /* grib_pack procedures double */ + &unpack_double, /* grib_unpack procedures double */ + &pack_string, /* grib_pack procedures string */ + &unpack_string, /* grib_unpack procedures string */ + &pack_string_array, /* grib_pack array procedures string */ + &unpack_string_array, /* grib_unpack array procedures string */ + 0, /* grib_pack procedures bytes */ + 0, /* grib_unpack procedures bytes */ + 0, /* pack_expression */ + 0, /* notify_change */ + 0, /* update_size */ + 0, /* preferred_size */ + 0, /* resize */ + 0, /* nearest_smaller_value */ + 0, /* next accessor */ + 0, /* compare vs. another accessor */ + &unpack_double_element, /* unpack only ith value */ + 0, /* unpack a subarray */ + 0, /* clear */ + &make_clone, /* clone accessor */ }; @@ -135,25 +136,24 @@ grib_accessor_class* grib_accessor_class_bufr_data_element = &_grib_accessor_cla static void init_class(grib_accessor_class* c) { - c->next_offset = (*(c->super))->next_offset; - c->string_length = (*(c->super))->string_length; - c->byte_count = (*(c->super))->byte_count; - c->byte_offset = (*(c->super))->byte_offset; - c->sub_section = (*(c->super))->sub_section; - c->pack_missing = (*(c->super))->pack_missing; - c->is_missing = (*(c->super))->is_missing; - c->pack_bytes = (*(c->super))->pack_bytes; - c->unpack_bytes = (*(c->super))->unpack_bytes; - c->pack_expression = (*(c->super))->pack_expression; - c->notify_change = (*(c->super))->notify_change; - c->update_size = (*(c->super))->update_size; - c->preferred_size = (*(c->super))->preferred_size; - c->resize = (*(c->super))->resize; - c->nearest_smaller_value = (*(c->super))->nearest_smaller_value; - c->next = (*(c->super))->next; - c->compare = (*(c->super))->compare; - c->unpack_double_subarray = (*(c->super))->unpack_double_subarray; - c->clear = (*(c->super))->clear; + c->next_offset = (*(c->super))->next_offset; + c->string_length = (*(c->super))->string_length; + c->byte_count = (*(c->super))->byte_count; + c->byte_offset = (*(c->super))->byte_offset; + c->sub_section = (*(c->super))->sub_section; + c->pack_missing = (*(c->super))->pack_missing; + c->pack_bytes = (*(c->super))->pack_bytes; + c->unpack_bytes = (*(c->super))->unpack_bytes; + c->pack_expression = (*(c->super))->pack_expression; + c->notify_change = (*(c->super))->notify_change; + c->update_size = (*(c->super))->update_size; + c->preferred_size = (*(c->super))->preferred_size; + c->resize = (*(c->super))->resize; + c->nearest_smaller_value = (*(c->super))->nearest_smaller_value; + c->next = (*(c->super))->next; + c->compare = (*(c->super))->compare; + c->unpack_double_subarray = (*(c->super))->unpack_double_subarray; + c->clear = (*(c->super))->clear; } /* END_CLASS_IMP */ @@ -639,3 +639,95 @@ static void destroy(grib_context* ct, grib_accessor* a) i++; } } + +#define MAX_STRING_SIZE 4096 +/* Return 1 if BUFR element(s) is/are missing, 0 otherwise. In case of decoding errors, also return 0 */ +static int is_missing(grib_accessor* a) +{ + const int ktype = get_native_type(a); + int err = 0, result = 1; // default: assume all are missing + long count = 0; + size_t i = 0, size = 1, size2 = 0; + grib_context* c = a->context; + + if (ktype == GRIB_TYPE_LONG) { + long* values = NULL; + long value = 0; + + value_count(a, &count); + size = size2 = count; + if (size > 1) { + values = (long*)grib_context_malloc_clear(c, sizeof(long) * size); + err = grib_unpack_long(a, values, &size2); + } + else { + err = grib_unpack_long(a, &value, &size2); + } + if (err) return 0; // TODO: no way of propagating the error up + Assert(size2 == size); + if (size > 1) { + for (i = 0; i < size; i++) { + if (!grib_is_missing_long(a, values[i])) { + result = 0; // at least one not missing + break; + } + } + grib_context_free(c, values); + } else { + result = grib_is_missing_long(a, value); + } + } + else if (ktype == GRIB_TYPE_DOUBLE) { + double value = 0; + double* values = NULL; + + value_count(a, &count); + size = size2 = count; + if (size > 1) { + values = (double*)grib_context_malloc_clear(c, sizeof(double) * size); + err = grib_unpack_double(a, values, &size2); + } + else { + err = grib_unpack_double(a, &value, &size2); + } + if (err) return 0; // TODO: no way of propagating the error up + Assert(size2 == size); + if (size > 1) { + for (i = 0; i < size; ++i) { + if (!grib_is_missing_double(a, values[i])) { + result = 0; + break; + } + } + grib_context_free(c, values); + } + else { + result = grib_is_missing_double(a, value); + } + } + else if (ktype == GRIB_TYPE_STRING) { + char** values = NULL; + value_count(a, &count); + size = count; + if (size > 1) { + values = (char**)grib_context_malloc_clear(a->context, size * sizeof(char*)); + err = grib_unpack_string_array(a, values, &size); + if (err) return 0; // TODO: no way of propagating the error up + for (i = 0; i < size; i++) { + if (!grib_is_missing_string(a, (unsigned char*)values[i], size)) { + result = 0; + break; + } + } + for (i = 0; i < size; i++) grib_context_free(c, values[i]); + grib_context_free(c, values); + } else { + char value[MAX_STRING_SIZE] = {0,}; /* See ECC-710 */ + size = MAX_STRING_SIZE; + err = grib_unpack_string(a, value, &size); + if (err) return 0; // TODO: no way of propagating the error up + result = grib_is_missing_string(a, (unsigned char*)value, size); + } + } + return result; +} diff --git a/src/grib_expression_class_functor.c b/src/grib_expression_class_functor.c index 4919ba5df..34cf3d5a6 100644 --- a/src/grib_expression_class_functor.c +++ b/src/grib_expression_class_functor.c @@ -106,9 +106,14 @@ static int evaluate_long(grib_expression* g, grib_handle* h, long* lres) if (p) { long val = 0; int err = 0; - err = grib_get_long_internal(h, p, &val); - if (err) - return err; + if (h->product_kind == PRODUCT_BUFR) { + int ismiss = grib_is_missing(h, p, &err); + if (err) return err; + *lres = ismiss; + return GRIB_SUCCESS; + } + err = grib_get_long_internal(h, p, &val); + if (err) return err; /* Note: This does not cope with keys like typeOfSecondFixedSurface * which are codetable entries with values like 255: this value is * not classed as 'missing'! @@ -117,8 +122,10 @@ static int evaluate_long(grib_expression* g, grib_handle* h, long* lres) *lres = (val == GRIB_MISSING_LONG); return GRIB_SUCCESS; } - else + else { + /* No arguments means return the actual integer missing value */ *lres = GRIB_MISSING_LONG; + } return GRIB_SUCCESS; } From 15652829ff679198b704de25b653c1413846790a Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 11 Dec 2020 18:28:41 +0000 Subject: [PATCH 191/683] ECC-403: test is_missing for string key --- tests/bufr_filter.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/bufr_filter.sh b/tests/bufr_filter.sh index 6afe9d46a..511c2df24 100755 --- a/tests/bufr_filter.sh +++ b/tests/bufr_filter.sh @@ -485,8 +485,10 @@ cat > $fRules < Date: Fri, 11 Dec 2020 19:27:33 +0000 Subject: [PATCH 192/683] ECC-403: C and Python API tests --- examples/C/bufr_missing.c | 8 ++++++-- examples/python/bufr_get_keys.py | 5 +++++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/examples/C/bufr_missing.c b/examples/C/bufr_missing.c index 2ff58225f..bbb7adef4 100644 --- a/examples/C/bufr_missing.c +++ b/examples/C/bufr_missing.c @@ -15,7 +15,7 @@ */ #include "eccodes.h" - +#include int main(int argc, char* argv[]) { @@ -26,6 +26,7 @@ int main(int argc, char* argv[]) double doubleVal; int err = 0; + int is_missing = 0; int cnt = 0; const char* infile = "../../data/bufr/syno_1.bufr"; @@ -51,7 +52,6 @@ int main(int argc, char* argv[]) /* the value of this key is missing in the message*/ CODES_CHECK(codes_get_double(h, "relativeHumidity", &doubleVal), 0); - printf(" relativeHumidity: %.2f\n", doubleVal); /* we will print "value missing" */ if (doubleVal == CODES_MISSING_DOUBLE) { @@ -61,6 +61,10 @@ int main(int argc, char* argv[]) printf(" --> value present\n"); } + is_missing = codes_is_missing(h, "relativeHumidity", &err); + assert(!err); + assert(is_missing == 1); + /* delete handle */ codes_handle_delete(h); diff --git a/examples/python/bufr_get_keys.py b/examples/python/bufr_get_keys.py index a204c69a2..35a1c6a0f 100644 --- a/examples/python/bufr_get_keys.py +++ b/examples/python/bufr_get_keys.py @@ -60,6 +60,7 @@ def example(): print(' %s: %s' % (key, codes_get(bufr, key))) except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) + assert codes_is_missing(bufr, key) == 0 # Native type float key = 'airTemperatureAt2M' @@ -67,6 +68,7 @@ def example(): print(' %s: %s' % (key, codes_get(bufr, key))) except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) + assert codes_is_missing(bufr, key) == 0 # Native type string key = 'typicalDate' @@ -75,6 +77,9 @@ def example(): except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) + assert codes_is_missing(bufr, 'relativeHumidity') == 1 + assert codes_is_missing(bufr, '#5#cloudAmount') == 1 + # -------------------------------- # get values for an array # -------------------------------- From f8f5908aa0d37fdb10de22c8f97d82c56a1674f5 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 11 Dec 2020 21:23:21 +0000 Subject: [PATCH 193/683] Definitions: units clean up --- definitions/grib1/2.98.201.table | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/definitions/grib1/2.98.201.table b/definitions/grib1/2.98.201.table index b6c7aa0cd..f937639ab 100644 --- a/definitions/grib1/2.98.201.table +++ b/definitions/grib1/2.98.201.table @@ -16,8 +16,8 @@ 15 15 - total radiative heating rate (J m**-2) 16 16 - soil heat flux, surface (J m**-2) 17 17 - soil heat flux, bottom of layer (J m**-2) -29 29 CLC fractional cloud cover (0-1) -30 30 - cloud cover, grid scale (0-1) +29 29 CLC fractional cloud cover (0 - 1) +30 30 - cloud cover, grid scale (0 - 1) 31 31 QC specific cloud water content (kg kg**-1) 32 32 - cloud water content, grid scale, vert integrated (kg m**-2) 33 33 QI specific cloud ice content, grid scale (kg kg**-1) @@ -28,14 +28,14 @@ 38 38 - specific snow content, gs, vert. integrated (kg m**-2) 41 41 TWATER total column water (kg m**-2) 42 42 - vert. integral of divergence of tot. water content (kg m**-2) -50 50 CH_CM_CL cloud covers CH_CM_CL (000...888) (0-1) -51 51 - cloud cover CH (0..8) (0-1) -52 52 - cloud cover CM (0..8) (0-1) -53 53 - cloud cover CL (0..8) (0-1) -54 54 - total cloud cover (0..8) (0-1) -55 55 - fog (0..8) (0-1) -56 56 - fog (0-1) -60 60 - cloud cover, convective cirrus (0-1) +50 50 CH_CM_CL cloud covers CH_CM_CL (000...888) (0 - 1) +51 51 - cloud cover CH (0..8) (0 - 1) +52 52 - cloud cover CM (0..8) (0 - 1) +53 53 - cloud cover CL (0..8) (0 - 1) +54 54 - total cloud cover (0..8) (0 - 1) +55 55 - fog (0..8) (0 - 1) +56 56 - fog (0 - 1) +60 60 - cloud cover, convective cirrus (0 - 1) 61 61 - specific cloud water content, convective clouds (kg kg**-1) 62 62 - cloud water content, conv clouds, vert integrated (kg m**-2) 63 63 - specific cloud ice content, convective clouds (kg kg**-1) @@ -45,7 +45,7 @@ 67 67 - entrainment parameter, convection (m**-1) 68 68 HBAS_CON cloud base, convective clouds (above msl) (m) 69 69 HTOP_CON cloud top, convective clouds (above msl) (m) -70 70 - convective layers (00...77) (BKE) (0-1) +70 70 - convective layers (00...77) (BKE) (0 - 1) 71 71 - KO-index (dimensionless) 72 72 BAS_CON convection base index (dimensionless) 73 73 TOP_CON convection top index (dimensionless) From 67eb9a087a82c444bed5e11ebd8f1885667ef51a Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 13 Dec 2020 16:43:16 +0000 Subject: [PATCH 194/683] Examples: BUFR radiosonde data (From Bruce Ingleby) --- examples/F90/CMakeLists.txt | 2 + examples/F90/bufr_read_tempf.f90 | 176 +++++++++++++++++++++++++++++++ examples/F90/bufr_read_tempf.sh | 30 ++++++ 3 files changed, 208 insertions(+) create mode 100644 examples/F90/bufr_read_tempf.f90 create mode 100755 examples/F90/bufr_read_tempf.sh diff --git a/examples/F90/CMakeLists.txt b/examples/F90/CMakeLists.txt index c2cd8aee9..8f8e3f74d 100644 --- a/examples/F90/CMakeLists.txt +++ b/examples/F90/CMakeLists.txt @@ -48,6 +48,7 @@ if( HAVE_BUILD_TOOLS ) bufr_read_scatterometer bufr_read_synop bufr_read_temp + bufr_read_tempf bufr_read_tropical_cyclone bufr_set_keys bufr_copy_keys @@ -86,6 +87,7 @@ else() bufr_read_scatterometer bufr_read_synop bufr_read_temp + bufr_read_tempf bufr_read_tropical_cyclone bufr_set_keys bufr_subset diff --git a/examples/F90/bufr_read_tempf.f90 b/examples/F90/bufr_read_tempf.f90 new file mode 100644 index 000000000..00d63659b --- /dev/null +++ b/examples/F90/bufr_read_tempf.f90 @@ -0,0 +1,176 @@ +! (C) Copyright 2005- ECMWF. +! +! This software is licensed under the terms of the Apache Licence Version 2.0 +! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +! +! In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +! +! +! Description: how to read radiosonde data from TEMP BUFR messages. +! This version also lists the position information from the WMO list +! (now OSCAR/Surface) - ECMWF version +! +! Please note that TEMP reports can be encoded in various ways in BUFR. Therefore the code +! below might not work directly for other types of TEMP messages than the one used in the +! example. It is advised to use bufr_dump first to understand the structure of these messages. + +program bufr_read_temp + use eccodes + implicit none + integer :: ifile + integer :: iret + integer :: ibufr + integer :: i, count=0 + integer :: iflag + integer :: status_id, status_ht, status_time=0, status_p + integer :: status_rsno, status_rssoft + integer(kind=4) :: num,sizews + integer(kind=4) :: blockNumber,stationNumber + integer(kind=4) :: ymd,hms + logical :: llstdonly = .True. ! Set True to list standard levels only + logical :: llskip + real(kind=8) :: year,month,day,hour,minute,second + real(kind=8) :: htg,htp,htec=0,sondeType + real(kind=8), dimension(:), allocatable :: lat,lon + real(kind=8), dimension(:), allocatable :: timeVal,dlatVal,dlonVal,vssVal + real(kind=8), dimension(:), allocatable :: presVal,zVal,tVal,tdVal,wdirVal,wspVal + character(len=128) :: statid + character(len=128) :: keyName + character(len=16) :: rsnumber + character(len=16) :: rssoftware + character(len=8) :: Note + + call codes_open_file(ifile,'../../data/bufr/PraticaTemp.bufr','r') + + ! the first bufr message is loaded from file + ! ibufr is the bufr id to be used in subsequent calls + call codes_bufr_new_from_file(ifile,ibufr,iret) + + ! do while (iret/=CODES_END_OF_FILE) + do while (iret/=CODES_END_OF_FILE .AND. status_time==CODES_SUCCESS) + + ! we need to instruct ecCodes to expand all the descriptors + ! i.e. unpack the data values + call codes_set(ibufr,"unpack",1); + + ! In our BUFR message verticalSoundingSignificance is always followed by + ! geopotential, airTemperature, dewpointTemperature, + ! windDirection, windSpeed and pressure. + ! + + count=count+1 + llskip=.False. + + ! Metadata: + call codes_get(ibufr,'shipOrMobileLandStationIdentifier',statid,status_id) + IF (status_id /= CODES_SUCCESS) statid = " " + call codes_get(ibufr,'blockNumber',blockNumber) + call codes_get(ibufr,'stationNumber',stationNumber) + call codes_get(ibufr,'year',year) + call codes_get(ibufr,'month',month) + call codes_get(ibufr,'day',day) + call codes_get(ibufr,'hour',hour) + call codes_get(ibufr,'minute',minute) + call codes_get(ibufr,'second',second,status_time) + IF (status_time /= CODES_SUCCESS) second = 0.0 + call codes_get(ibufr,'latitude',lat) + call codes_get(ibufr,'longitude',lon) + call codes_get(ibufr,'heightOfStationGroundAboveMeanSeaLevel',htg,status_ht) + IF (status_ht /= CODES_SUCCESS) htg = -999.0 + call codes_get(ibufr,'heightOfBarometerAboveMeanSeaLevel',htp,status_ht) + IF (status_ht /= CODES_SUCCESS) htp = -999.0 + call codes_get(ibufr,'radiosondeType',sondeType) + call codes_get(ibufr,'heightOfStation',htec,status_ht) ! Height from WMO list (BUFR) + IF (status_ht == CODES_SUCCESS .AND. htg == -999.0) htg = htec + ymd = INT(year)*10000+INT(month)*100+INT(day) + hms = INT(hour)*10000+INT(minute)*100+INT(second) + call codes_get(ibufr,'radiosondeSerialNumber',rsnumber,status_rsno) + call codes_get(ibufr,'softwareVersionNumber',rssoftware,status_rssoft) + + ! Ascent (skip incomplete reports for now) + call codes_get(ibufr,'timePeriod',timeVal,status_time) + IF (status_time /= CODES_SUCCESS) THEN + write(*,'(A,I7,X,I2.2,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ',count, & + blockNumber,stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType) + write(*,'(A)') 'Missing times - skip' + llskip=.True. + ENDIF + call codes_get(ibufr,'pressure',presVal,status_p) + IF (status_p /= CODES_SUCCESS) THEN + write(*,'(A,I7,X,I2.2,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ',count, & + blockNumber,stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType) + write(*,'(A)') 'Missing pressures - skip' + llskip=.True. + ENDIF + call codes_get(ibufr,'nonCoordinateGeopotentialHeight',zVal,status_ht) + IF (status_ht /= CODES_SUCCESS) THEN + write(*,'(A,I7,X,I2.2,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ',count, & + blockNumber,stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType) + write(*,'(A)') 'Missing heights - skip' + llskip=.True. + ENDIF + ! IF (blockNumber /= 17 .OR. stationNumber /= 196) llskip=.True. ! FIX + ! IF (blockNumber /= 17.0) llskip=.True. ! FIX + + IF (.NOT.llskip) THEN + call codes_get(ibufr,'latitudeDisplacement',dlatVal) + call codes_get(ibufr,'longitudeDisplacement',dlonVal) + call codes_get(ibufr,'extendedVerticalSoundingSignificance',vssVal) + !call codes_get(ibufr,'geopotentialHeight',zVal) + call codes_get(ibufr,'airTemperature',tVal) + call codes_get(ibufr,'dewpointTemperature',tdVal) + call codes_get(ibufr,'windDirection',wdirVal) + call codes_get(ibufr,'windSpeed',wspVal) + + ! ---- Array sizes (pressure size can be larger - wind shear levels) + sizews = size(wspVal) + + ! ---- Print the values -------------------------------- + write(*,'(A,A)') 'Statid: ',statid + write(*,'(A,I7,X,I2.2,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4,I5)') 'Ob: ',count, & + blockNumber,stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType),sizews + IF (status_ht == CODES_SUCCESS) write(*,'(A,F9.3,F10.3,F7.1)') & + 'WMO list lat, lon, ht: ', lat(1),lon(1),htec + IF (status_rsno == CODES_SUCCESS) write(*,'(A,A,A)') & + 'Radiosonde number/software: ', rsnumber, rssoftware + write(*,'(A)') & + 'level dtime dlat dlon pressure geopotH airTemp dewPtT windDir windSp signif' + do i=1,sizews + Note = ' ' + iflag = vssVal(i) + IF (i > 1) THEN + IF (presVal(i) > presVal(i-1) .OR. zVal(i) < zVal(i-1) & + .OR. timeVal(i) < timeVal(i-1)) Note=' OOO ' + IF ((timeVal(i)-timeVal(i-1))>120) Note=' tjump ' + IF (ABS(dlatVal(i)-dlatVal(i-1))>0.1 .OR. & + ABS(dlonVal(i)-dlonVal(i-1))>0.1) THEN + Note=' pjump ' + IF (dlatVal(i) == CODES_MISSING_DOUBLE .OR. & + dlatVal(i-1) == CODES_MISSING_DOUBLE) Note=' pmiss ' + ENDIF + ENDIF + IF (.NOT.llstdonly .OR. BTEST(iflag,16)) & + write(*,'(I5,F7.1,2F7.3,F9.1,F8.1,4F8.2,I8,A)') i,timeVal(i), & + dlatVal(i),dlonVal(i),presVal(i),zVal(i),tVal(i),tVal(i)-tdVal(i), & + wdirVal(i),wspVal(i),INT(vssVal(i)), Note + end do + + ! free arrays + deallocate(dlatVal,dlonVal,vssVal) + deallocate(presVal,zVal,tVal,tdVal,wdirVal,wspVal) + END IF + IF (ALLOCATED(timeVal)) deallocate(timeVal) + + ! release the bufr message + call codes_release(ibufr) + + ! load the next bufr message + call codes_bufr_new_from_file(ifile,ibufr,iret) + + end do + + ! close file + call codes_close_file(ifile) + +end program bufr_read_temp diff --git a/examples/F90/bufr_read_tempf.sh b/examples/F90/bufr_read_tempf.sh new file mode 100755 index 000000000..6003768ea --- /dev/null +++ b/examples/F90/bufr_read_tempf.sh @@ -0,0 +1,30 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh + + +#Define a common label for all the tmp files +label="bufr_read_tempf_f" +fTmp=${label}.tmp.txt +rm -f $fTmp + +# The path to the BUFR file is hardcoded in the example + +REDIRECT=/dev/null + +# Run the example +${examples_dir}/eccodes_f_bufr_read_tempf > $fTmp + +#TODO: check the results + +#Clean up +rm -f $fTmp + From 94ac49a067c30de15b36f0cd56101d0b57a6c69b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 14 Dec 2020 16:19:48 +0000 Subject: [PATCH 195/683] ECC-1182: GRIB2: Deprecate Product Definition Template 4.47 in favour of 4.85 --- src/grib_accessor_class_g2_aerosol.c | 3 ++- src/grib_accessor_class_g2_eps.c | 3 ++- src/grib_accessor_class_local_definition.c | 3 ++- src/grib_accessor_class_select_step_template.c | 3 ++- src/grib_util.c | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/grib_accessor_class_g2_aerosol.c b/src/grib_accessor_class_g2_aerosol.c index beb4d3abe..a2e1c473c 100644 --- a/src/grib_accessor_class_g2_aerosol.c +++ b/src/grib_accessor_class_g2_aerosol.c @@ -199,7 +199,8 @@ static int pack_long(grib_accessor* a, const long* val, size_t* len) productDefinitionTemplateNumberNew = 45; } else { - productDefinitionTemplateNumberNew = 47; + /*productDefinitionTemplateNumberNew = 47; PDT deprecated*/ + productDefinitionTemplateNumberNew = 85; } } else { diff --git a/src/grib_accessor_class_g2_eps.c b/src/grib_accessor_class_g2_eps.c index b580d59ab..722e3f277 100644 --- a/src/grib_accessor_class_g2_eps.c +++ b/src/grib_accessor_class_g2_eps.c @@ -271,7 +271,8 @@ static int pack_long(grib_accessor* a, const long* val, size_t* len) productDefinitionTemplateNumberNew = 45; } else { - productDefinitionTemplateNumberNew = 47; + /*productDefinitionTemplateNumberNew = 47; This PDT is deprecated */ + productDefinitionTemplateNumberNew = 85; } } else { diff --git a/src/grib_accessor_class_local_definition.c b/src/grib_accessor_class_local_definition.c index 0363ffac0..1fa55e09c 100644 --- a/src/grib_accessor_class_local_definition.c +++ b/src/grib_accessor_class_local_definition.c @@ -384,7 +384,8 @@ static int pack_long(grib_accessor* a, const long* val, size_t* len) productDefinitionTemplateNumberNew = 45; } else { - productDefinitionTemplateNumberNew = 47; + /*productDefinitionTemplateNumberNew = 47; This PDT is deprecated */ + productDefinitionTemplateNumberNew = 85; } } else { diff --git a/src/grib_accessor_class_select_step_template.c b/src/grib_accessor_class_select_step_template.c index 88a60e5ff..7080d8405 100644 --- a/src/grib_accessor_class_select_step_template.c +++ b/src/grib_accessor_class_select_step_template.c @@ -262,7 +262,8 @@ static int pack_long(grib_accessor* a, const long* val, size_t* len) productDefinitionTemplateNumberNew = 46; break; case 45: /* EPS aerosol */ - productDefinitionTemplateNumberNew = 47; + /*productDefinitionTemplateNumberNew = 47; PDT deprecated */ + productDefinitionTemplateNumberNew = 85; break; case 57: /* non-EPS chemical distrib func */ productDefinitionTemplateNumberNew = 67; diff --git a/src/grib_util.c b/src/grib_util.c index 191be20fe..e2044868d 100644 --- a/src/grib_util.c +++ b/src/grib_util.c @@ -2118,7 +2118,7 @@ int grib2_select_PDTN(int is_eps, int is_instant, if (is_instant) return 45; else - return 47; + return 85; /* PDT 47 is deprecated*/ } else { if (is_instant) From 3e86023813f6b0efcf6dfcb8d490ba1c44422872 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 15 Dec 2020 17:14:13 +0000 Subject: [PATCH 196/683] Definitions: latest limits from Gabor --- definitions/param_limits.def | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/definitions/param_limits.def b/definitions/param_limits.def index 54ae46270..1bbcd18d6 100644 --- a/definitions/param_limits.def +++ b/definitions/param_limits.def @@ -1,4 +1,4 @@ -constant default_min_val = -1e9 : double_type, hidden; +constant default_min_val = -1e13 : double_type, hidden; constant default_max_val = +1e13 : double_type, hidden; concept param_value_min(default_min_val) { @@ -104,7 +104,7 @@ concept param_value_max(default_max_val) { 1500 = { paramId=151163; } 3.5 = { paramId=151131; } 5 = { paramId=260259; } - 350000 = { paramId=129; } + 3500000 = { paramId=129; } 35000 = { paramId=156; } 100 = { paramId=3075; } 1 = { paramId=172; } From 01950c15cf1d344bff32e799d925c19154b3501f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 16 Dec 2020 12:56:48 +0000 Subject: [PATCH 197/683] ECC-1183: grib_ls: Add gridName to the list of keys for ECMWF unstructured grids --- .../grib2/localConcepts/ecmf/unstructuredGrid.def | 7 ++++++- tests/grib_grid_unstructured.sh | 13 ++++++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def b/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def index cb8f6eb82..c5c156595 100644 --- a/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def +++ b/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def @@ -6,4 +6,9 @@ concept unstructuredGridSubtype(unknown,"unstructuredGridSubtype.def",conceptsLo concept unstructuredGridUUID(unknown,"unstructuredGridUUID.def",conceptsLocalDirAll,conceptsMasterDir); -meta gridName sprintf("%s_%s",unstructuredGridType,unstructuredGridSubtype); +if (unstructuredGridType is "undefined" || unstructuredGridType is "unknown") { + meta gridName sprintf("%s",unstructuredGridType); +} else { + meta gridName sprintf("%s_%s",unstructuredGridType,unstructuredGridSubtype); +} +alias ls.gridName=gridName; diff --git a/tests/grib_grid_unstructured.sh b/tests/grib_grid_unstructured.sh index 68dbcf057..5353ef05d 100755 --- a/tests/grib_grid_unstructured.sh +++ b/tests/grib_grid_unstructured.sh @@ -17,11 +17,22 @@ sample=$ECCODES_SAMPLES_PATH/GRIB2.tmpl temp1=temp.1.${label} temp2=temp.2.${label} +# Default +${tools_dir}/grib_set -s gridType=unstructured_grid $sample $temp1 +grib_check_key_equals $temp1 gridName 'undefined' + +# Unknown values +${tools_dir}/grib_set -s gridType=unstructured_grid,numberOfGridInReference=94,numberOfGridUsed=200 $sample $temp1 +grib_check_key_equals $temp1 gridName 'unknown' + +# ORCA1, W grid ${tools_dir}/grib_set -s gridType=unstructured_grid,numberOfGridInReference=4,numberOfGridUsed=2 $sample $temp1 grib_check_key_equals $temp1 'unstructuredGridType' 'ORCA1' grib_check_key_equals $temp1 'unstructuredGridSubtype' 'W' -#grib_check_key_equals $temp1 'unstructuredGridUUID' 'ORCA1 W unknown' grib_check_key_equals $temp1 gridName 'ORCA1_W' +# ECC-1183 +${tools_dir}/grib_ls -j $temp1 > $temp2 +grep -q "gridName.*ORCA1_W" $temp2 ${tools_dir}/grib_set -s gridType=unstructured_grid,unstructuredGridType=ORCA1,unstructuredGridSubtype=W $sample $temp2 ${tools_dir}/grib_compare $temp1 $temp2 From ad3afd3ede8738acd9c51ba230ed028754a8fdb9 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 16 Dec 2020 13:11:12 +0000 Subject: [PATCH 198/683] ECC-403: fix comments --- src/grib_accessor_class_bufr_data_element.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/grib_accessor_class_bufr_data_element.c b/src/grib_accessor_class_bufr_data_element.c index c74e22bfb..55780fcc4 100644 --- a/src/grib_accessor_class_bufr_data_element.c +++ b/src/grib_accessor_class_bufr_data_element.c @@ -645,7 +645,7 @@ static void destroy(grib_context* ct, grib_accessor* a) static int is_missing(grib_accessor* a) { const int ktype = get_native_type(a); - int err = 0, result = 1; // default: assume all are missing + int err = 0, result = 1; /* default: assume all are missing */ long count = 0; size_t i = 0, size = 1, size2 = 0; grib_context* c = a->context; @@ -663,12 +663,12 @@ static int is_missing(grib_accessor* a) else { err = grib_unpack_long(a, &value, &size2); } - if (err) return 0; // TODO: no way of propagating the error up + if (err) return 0; /* TODO: no way of propagating the error up */ Assert(size2 == size); if (size > 1) { for (i = 0; i < size; i++) { if (!grib_is_missing_long(a, values[i])) { - result = 0; // at least one not missing + result = 0; /* at least one not missing */ break; } } @@ -690,7 +690,7 @@ static int is_missing(grib_accessor* a) else { err = grib_unpack_double(a, &value, &size2); } - if (err) return 0; // TODO: no way of propagating the error up + if (err) return 0; /* TODO: no way of propagating the error up */ Assert(size2 == size); if (size > 1) { for (i = 0; i < size; ++i) { @@ -712,7 +712,7 @@ static int is_missing(grib_accessor* a) if (size > 1) { values = (char**)grib_context_malloc_clear(a->context, size * sizeof(char*)); err = grib_unpack_string_array(a, values, &size); - if (err) return 0; // TODO: no way of propagating the error up + if (err) return 0; /* TODO: no way of propagating the error up */ for (i = 0; i < size; i++) { if (!grib_is_missing_string(a, (unsigned char*)values[i], size)) { result = 0; @@ -725,7 +725,7 @@ static int is_missing(grib_accessor* a) char value[MAX_STRING_SIZE] = {0,}; /* See ECC-710 */ size = MAX_STRING_SIZE; err = grib_unpack_string(a, value, &size); - if (err) return 0; // TODO: no way of propagating the error up + if (err) return 0; /* TODO: no way of propagating the error up */ result = grib_is_missing_string(a, (unsigned char*)value, size); } } From d74af1a173fe39bb6a87b0db52da36ee3ef65cec Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 17 Dec 2020 15:07:13 +0000 Subject: [PATCH 199/683] Examples: counting multi-field messages --- examples/C/grib_multi.c | 28 +++++++++++++++++++++------- examples/F90/grib_multi.f90 | 11 +++++------ 2 files changed, 26 insertions(+), 13 deletions(-) diff --git a/examples/C/grib_multi.c b/examples/C/grib_multi.c index 93ea8ad02..e5271f250 100644 --- a/examples/C/grib_multi.c +++ b/examples/C/grib_multi.c @@ -11,13 +11,13 @@ /* * C Implementation: grib_multi * - * Description: How to decode GRIB messages containing multiple - * fields. Try to turn on and off multi support to + * Description: How to decode GRIB2 multi-field messages. + * Try to turn the multi support on and off to * see the difference. Default is OFF. * For all the tools default is multi support ON. - * */ #include +#include #include "eccodes.h" @@ -28,12 +28,13 @@ int main(int argc, char** argv) FILE* in = NULL; const char* filename = "../../data/multi.grib2"; codes_handle* h = NULL; + int mcount = 0; - /* turn on support for multi fields messages */ - codes_grib_multi_support_on(0); + /* turn on support for GRIB2 multi-field messages */ + codes_grib_multi_support_on(NULL); - /* turn off support for multi fields messages */ - /* codes_multi_support_off(0); */ + /* turn off support for GRIB2 multi-field messages */ + /* codes_multi_support_off(NULL); */ in = fopen(filename, "rb"); if (!in) { @@ -41,8 +42,19 @@ int main(int argc, char** argv) return 1; } + CODES_CHECK(grib_count_in_file(NULL, in, &mcount), 0); + assert(mcount == 56); + printf("grib_count_in_file counted %d messages\n", mcount); + + mcount = 0; + CODES_CHECK(grib_count_in_filename(NULL, filename, &mcount), 0); + assert(mcount == 56); + printf("grib_count_in_filename counted %d messages\n", mcount); + + mcount = 0; while ((h = codes_handle_new_from_file(0, in, PRODUCT_GRIB, &err)) != NULL) { CODES_CHECK(err, 0); + ++mcount; CODES_CHECK(codes_get_long(h, "discipline", &discipline), 0); printf("discipline=%ld\n", discipline); @@ -59,6 +71,8 @@ int main(int argc, char** argv) } codes_handle_delete(h); } + assert(mcount == 56); + printf("codes_handle_new_from_file counted %d messages\n", mcount); fclose(in); return 0; diff --git a/examples/F90/grib_multi.f90 b/examples/F90/grib_multi.f90 index 32f8e4f13..69afa90bd 100644 --- a/examples/F90/grib_multi.f90 +++ b/examples/F90/grib_multi.f90 @@ -7,12 +7,11 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! Description: How to decode GRIB messages containing multiple -! fields. Try to turn on and off multi support to +! Description: How to decode GRIB2 multi-field messages. +! Try to turn multi support on and off to ! see the difference. Default is OFF. ! For all the tools default is multi support ON. ! -! program multi use eccodes implicit none @@ -23,14 +22,14 @@ program multi call codes_open_file(ifile, '../../data/multi_created.grib2','r') - ! turn on support for multi fields messages */ + ! turn on support for multi-field messages */ call codes_grib_multi_support_on() - ! turn off support for multi fields messages */ + ! turn off support for multi-field messages */ !call codes_grib_multi_support_off() call codes_grib_new_from_file(ifile,igrib, iret) - ! Loop on all the messages in a file. + ! Loop on all the messages in a file. write(*,*) 'step' do while (iret /= CODES_END_OF_FILE) From dff9af14c1c3546756ea6a45957fbcbcb164622e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 17 Dec 2020 16:55:06 +0000 Subject: [PATCH 200/683] Examples: Fix warnings --- examples/F90/bufr_read_tempf.f90 | 35 ++++++++++++++++---------------- 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/examples/F90/bufr_read_tempf.f90 b/examples/F90/bufr_read_tempf.f90 index 00d63659b..ff838d43d 100644 --- a/examples/F90/bufr_read_tempf.f90 +++ b/examples/F90/bufr_read_tempf.f90 @@ -25,7 +25,7 @@ program bufr_read_temp integer :: iflag integer :: status_id, status_ht, status_time=0, status_p integer :: status_rsno, status_rssoft - integer(kind=4) :: num,sizews + integer(kind=4) :: sizews integer(kind=4) :: blockNumber,stationNumber integer(kind=4) :: ymd,hms logical :: llstdonly = .True. ! Set True to list standard levels only @@ -36,7 +36,6 @@ program bufr_read_temp real(kind=8), dimension(:), allocatable :: timeVal,dlatVal,dlonVal,vssVal real(kind=8), dimension(:), allocatable :: presVal,zVal,tVal,tdVal,wdirVal,wspVal character(len=128) :: statid - character(len=128) :: keyName character(len=16) :: rsnumber character(len=16) :: rssoftware character(len=8) :: Note @@ -129,31 +128,31 @@ program bufr_read_temp ! ---- Print the values -------------------------------- write(*,'(A,A)') 'Statid: ',statid write(*,'(A,I7,X,I2.2,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4,I5)') 'Ob: ',count, & - blockNumber,stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType),sizews + blockNumber,stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType),sizews IF (status_ht == CODES_SUCCESS) write(*,'(A,F9.3,F10.3,F7.1)') & - 'WMO list lat, lon, ht: ', lat(1),lon(1),htec + 'WMO list lat, lon, ht: ', lat(1),lon(1),htec IF (status_rsno == CODES_SUCCESS) write(*,'(A,A,A)') & - 'Radiosonde number/software: ', rsnumber, rssoftware + 'Radiosonde number/software: ', rsnumber, rssoftware write(*,'(A)') & - 'level dtime dlat dlon pressure geopotH airTemp dewPtT windDir windSp signif' + 'level dtime dlat dlon pressure geopotH airTemp dewPtT windDir windSp signif' do i=1,sizews - Note = ' ' - iflag = vssVal(i) - IF (i > 1) THEN + Note = ' ' + iflag = vssVal(i) + IF (i > 1) THEN IF (presVal(i) > presVal(i-1) .OR. zVal(i) < zVal(i-1) & - .OR. timeVal(i) < timeVal(i-1)) Note=' OOO ' + .OR. timeVal(i) < timeVal(i-1)) Note=' OOO ' IF ((timeVal(i)-timeVal(i-1))>120) Note=' tjump ' IF (ABS(dlatVal(i)-dlatVal(i-1))>0.1 .OR. & - ABS(dlonVal(i)-dlonVal(i-1))>0.1) THEN - Note=' pjump ' - IF (dlatVal(i) == CODES_MISSING_DOUBLE .OR. & - dlatVal(i-1) == CODES_MISSING_DOUBLE) Note=' pmiss ' + ABS(dlonVal(i)-dlonVal(i-1))>0.1) THEN + Note=' pjump ' + IF (dlatVal(i) == CODES_MISSING_DOUBLE .OR. & + dlatVal(i-1) == CODES_MISSING_DOUBLE) Note=' pmiss ' ENDIF - ENDIF - IF (.NOT.llstdonly .OR. BTEST(iflag,16)) & - write(*,'(I5,F7.1,2F7.3,F9.1,F8.1,4F8.2,I8,A)') i,timeVal(i), & + ENDIF + IF (.NOT.llstdonly .OR. BTEST(iflag,16)) & + write(*,'(I5,F7.1,2F7.3,F9.1,F8.1,4F8.2,I8,A)') i,timeVal(i), & dlatVal(i),dlonVal(i),presVal(i),zVal(i),tVal(i),tVal(i)-tdVal(i), & - wdirVal(i),wspVal(i),INT(vssVal(i)), Note + wdirVal(i),wspVal(i),INT(vssVal(i)), Note end do ! free arrays From ddee0609c0097517f69a0ffc9f432aacb47faf9d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 17 Dec 2020 17:23:16 +0000 Subject: [PATCH 201/683] Add hint to error message --- src/grib_accessor_class_concept.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/grib_accessor_class_concept.c b/src/grib_accessor_class_concept.c index 035ed7e8f..d60a3b815 100644 --- a/src/grib_accessor_class_concept.c +++ b/src/grib_accessor_class_concept.c @@ -357,9 +357,7 @@ static int grib_concept_apply(grib_accessor* a, const char* name) if (err) { size_t i = 0, concept_count = 0; long dummy = 0, editionNumber = 0; - char* all_concept_vals[MAX_NUM_CONCEPT_VALUES] = { - NULL, - }; /* sorted array containing concept values */ + char* all_concept_vals[MAX_NUM_CONCEPT_VALUES] = {NULL,}; /* sorted array containing concept values */ grib_concept_value* pCon = concepts; grib_context_log(h->context, GRIB_LOG_ERROR, "concept: no match for %s=%s", act->name, name); @@ -367,6 +365,10 @@ static int grib_concept_apply(grib_accessor* a, const char* name) grib_context_log(h->context, GRIB_LOG_ERROR, "Please check the Parameter Database 'https://apps.ecmwf.int/codes/grib/param-db/?id=%s'", name); } + if (strcmp(act->name, "shortName") == 0) { + grib_context_log(h->context, GRIB_LOG_ERROR, + "Please check the Parameter Database 'https://apps.ecmwf.int/codes/grib/param-db/'"); + } if (grib_get_long(h, "edition", &editionNumber) == GRIB_SUCCESS) { grib_context_log(h->context, GRIB_LOG_ERROR, "concept: input handle edition=%ld", editionNumber); } From 99227c95d961afcc9633362d1b2d830aa6937b11 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 17 Dec 2020 17:46:50 +0000 Subject: [PATCH 202/683] Examples: check output during test --- examples/F90/bufr_read_tempf.f90 | 35 +++++++++++++++------------- examples/F90/bufr_read_tempf.sh | 39 ++++++++++++++++++++++---------- 2 files changed, 46 insertions(+), 28 deletions(-) diff --git a/examples/F90/bufr_read_tempf.f90 b/examples/F90/bufr_read_tempf.f90 index ff838d43d..8e464e768 100644 --- a/examples/F90/bufr_read_tempf.f90 +++ b/examples/F90/bufr_read_tempf.f90 @@ -11,10 +11,12 @@ ! This version also lists the position information from the WMO list ! (now OSCAR/Surface) - ECMWF version ! +! Author: Bruce Ingleby +! ! Please note that TEMP reports can be encoded in various ways in BUFR. Therefore the code ! below might not work directly for other types of TEMP messages than the one used in the ! example. It is advised to use bufr_dump first to understand the structure of these messages. - +! program bufr_read_temp use eccodes implicit none @@ -24,7 +26,7 @@ program bufr_read_temp integer :: i, count=0 integer :: iflag integer :: status_id, status_ht, status_time=0, status_p - integer :: status_rsno, status_rssoft + integer :: status_rsno, status_rssoft, statid_missing integer(kind=4) :: sizews integer(kind=4) :: blockNumber,stationNumber integer(kind=4) :: ymd,hms @@ -63,7 +65,9 @@ program bufr_read_temp ! Metadata: call codes_get(ibufr,'shipOrMobileLandStationIdentifier',statid,status_id) - IF (status_id /= CODES_SUCCESS) statid = " " + IF (status_id /= CODES_SUCCESS) statid = "UNKNOWN" + call codes_is_missing(ibufr,'shipOrMobileLandStationIdentifier',statid_missing) + IF (statid_missing == 1) statid = "MISSING" call codes_get(ibufr,'blockNumber',blockNumber) call codes_get(ibufr,'stationNumber',stationNumber) call codes_get(ibufr,'year',year) @@ -90,22 +94,22 @@ program bufr_read_temp ! Ascent (skip incomplete reports for now) call codes_get(ibufr,'timePeriod',timeVal,status_time) IF (status_time /= CODES_SUCCESS) THEN - write(*,'(A,I7,X,I2.2,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ',count, & - blockNumber,stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType) + write(*,'(A,I7,A,I2.2,A,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ',count, & + ' ',blockNumber,' ',stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType) write(*,'(A)') 'Missing times - skip' llskip=.True. ENDIF call codes_get(ibufr,'pressure',presVal,status_p) IF (status_p /= CODES_SUCCESS) THEN - write(*,'(A,I7,X,I2.2,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ',count, & - blockNumber,stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType) + write(*,'(A,I7,A,I2.2,A,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ',count, & + ' ',blockNumber,' ',stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType) write(*,'(A)') 'Missing pressures - skip' llskip=.True. ENDIF call codes_get(ibufr,'nonCoordinateGeopotentialHeight',zVal,status_ht) IF (status_ht /= CODES_SUCCESS) THEN - write(*,'(A,I7,X,I2.2,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ',count, & - blockNumber,stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType) + write(*,'(A,I7,A,I2.2,A,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ',count, & + ' ',blockNumber,' ',stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType) write(*,'(A)') 'Missing heights - skip' llskip=.True. ENDIF @@ -126,15 +130,14 @@ program bufr_read_temp sizews = size(wspVal) ! ---- Print the values -------------------------------- - write(*,'(A,A)') 'Statid: ',statid - write(*,'(A,I7,X,I2.2,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4,I5)') 'Ob: ',count, & - blockNumber,stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType),sizews + write(*,'(A,A72)') 'Statid: ',statid + write(*,'(A,I7,A,I2.2,A,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4,I5)') 'Ob: ',count, & + ' ',blockNumber,' ',stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType),sizews IF (status_ht == CODES_SUCCESS) write(*,'(A,F9.3,F10.3,F7.1)') & - 'WMO list lat, lon, ht: ', lat(1),lon(1),htec + 'WMO list lat, lon, ht: ', lat(1),lon(1),htec IF (status_rsno == CODES_SUCCESS) write(*,'(A,A,A)') & - 'Radiosonde number/software: ', rsnumber, rssoftware - write(*,'(A)') & - 'level dtime dlat dlon pressure geopotH airTemp dewPtT windDir windSp signif' + 'Radiosonde number/software: ', rsnumber, rssoftware + write(*,'(A)') 'level dtime dlat dlon pressure geopotH airTemp dewPtT windDir windSp signif' do i=1,sizews Note = ' ' iflag = vssVal(i) diff --git a/examples/F90/bufr_read_tempf.sh b/examples/F90/bufr_read_tempf.sh index 6003768ea..245d6e134 100755 --- a/examples/F90/bufr_read_tempf.sh +++ b/examples/F90/bufr_read_tempf.sh @@ -10,21 +10,36 @@ . ./include.sh - #Define a common label for all the tmp files label="bufr_read_tempf_f" -fTmp=${label}.tmp.txt -rm -f $fTmp +tempOut=temp.${label}.txt +tempRef=temp.${label}.ref +rm -f $tempRef $tempOut -# The path to the BUFR file is hardcoded in the example +# The path to the BUFR file is hard coded in the example +${examples_dir}/eccodes_f_bufr_read_tempf > $tempOut -REDIRECT=/dev/null +# Check the results +cat > $tempRef< $fTmp - -#TODO: check the results - -#Clean up -rm -f $fTmp +# Clean up +rm -f $tempRef $tempOut From 80d1125c5fbeae6a9221484bc2b61f3f793621ed Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 18 Dec 2020 15:02:36 +0000 Subject: [PATCH 203/683] ECC-1184: GRIB2: TypeOfLevel 17 and 18 should be mapped to levtype 'sfc' --- definitions/grib2/tables/26/4.5.table | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/definitions/grib2/tables/26/4.5.table b/definitions/grib2/tables/26/4.5.table index e63b5e86a..3a9861bcb 100644 --- a/definitions/grib2/tables/26/4.5.table +++ b/definitions/grib2/tables/26/4.5.table @@ -16,8 +16,8 @@ 14 14 Level of free convection (LFC) (-) 15 15 Convective condensation level (CCL) (-) 16 16 Level of neutral buoyancy or equilibrium level (LNB) (-) -17 17 Departure level of the most unstable parcel of air (MUDL) -18 18 Departure level of a mixed layer parcel of air with specified layer depth (Pa) +17 sfc Departure level of the most unstable parcel of air (MUDL) +18 sfc Departure level of a mixed layer parcel of air with specified layer depth (Pa) # 19 Reserved 20 20 Isothermal level (K) 21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) From e2509cf9959cff14a3daf32184a7bc292f6d3e16 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 18 Dec 2020 15:35:48 +0000 Subject: [PATCH 204/683] ECC-1184: Add test for GRIB2 levtypes --- tests/CMakeLists.txt | 1 + tests/grib_levtype.sh | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100755 tests/grib_levtype.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index d7ef267a7..60c1aa438 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -82,6 +82,7 @@ if( HAVE_BUILD_TOOLS ) grib_sh_imag grib_sh_spectral_complex pseudo_diag + grib_levtype grib_grid_unstructured grib_grid_lambert_conformal grib_grid_polar_stereographic diff --git a/tests/grib_levtype.sh b/tests/grib_levtype.sh new file mode 100755 index 000000000..9fa25717d --- /dev/null +++ b/tests/grib_levtype.sh @@ -0,0 +1,43 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +label="grib_levtype" + +if [ ! -d "$ECCODES_DEFINITION_PATH" ]; then + echo "Test $0 disabled. No definitions directory" + exit 0 +fi + +sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl +tempGrib=temp.${label}.grib +latest=`${tools_dir}/grib_get -p tablesVersionLatest $sample2` + +# These level types are S2S ocean parameters and are dealt with differently (See products_s2s.def) +exclude="20 160 169" + +levtypes=`grep typeOfFirstFixedSurface $ECCODES_DEFINITION_PATH/grib2/paramId.def |awk -F'=' '{print $2}'|tr -d ' '|tr -d ';'|sort -un` +for lt in $levtypes; do + process_type=1 + for ex in $exclude; do + if [ "$lt" = "$ex" ]; then process_type=0; break; fi + done + if [ $process_type = 1 ]; then + ${tools_dir}/grib_set -s tablesVersion=$latest,typeOfFirstFixedSurface=$lt $sample2 $tempGrib + result=`${tools_dir}/grib_get -p mars.levtype $tempGrib` + if [ "$result" = "$lt" ]; then + echo "ERROR: typeOfFirstFixedSurface of |$lt| not mapped to a string!" + exit 1 + fi + fi +done + +rm -f $tempGrib From 8a2df0869eed0cb7d69d4594a1759a10719954c1 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 18 Dec 2020 15:44:39 +0000 Subject: [PATCH 205/683] ECC-1184: Add test for GRIB2 levtypes (Add ECMWF local params too) --- tests/grib_levtype.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/grib_levtype.sh b/tests/grib_levtype.sh index 9fa25717d..1b6a709c0 100755 --- a/tests/grib_levtype.sh +++ b/tests/grib_levtype.sh @@ -24,7 +24,11 @@ latest=`${tools_dir}/grib_get -p tablesVersionLatest $sample2` # These level types are S2S ocean parameters and are dealt with differently (See products_s2s.def) exclude="20 160 169" -levtypes=`grep typeOfFirstFixedSurface $ECCODES_DEFINITION_PATH/grib2/paramId.def |awk -F'=' '{print $2}'|tr -d ' '|tr -d ';'|sort -un` +paramId_file_wmo="$ECCODES_DEFINITION_PATH/grib2/paramId.def" +paramId_file_ecm="$ECCODES_DEFINITION_PATH/grib2/localConcepts/ecmf/paramId.def" + +levtypes=`grep typeOfFirstFixedSurface $paramId_file_wmo $paramId_file_ecm |\ + awk -F'=' '{print $2}'|tr -d ' '|tr -d ';'|sort -un` for lt in $levtypes; do process_type=1 for ex in $exclude; do From bab0c565dafab1293d3c64b73d9fde052602dbc1 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 18 Dec 2020 16:51:47 +0000 Subject: [PATCH 206/683] Testing: rename test --- tests/CMakeLists.txt | 2 +- tests/Makefile.am | 2 +- tests/{badgrib.sh => grib_bad.sh} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename tests/{badgrib.sh => grib_bad.sh} (100%) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 60c1aa438..7bf66b32d 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -168,7 +168,7 @@ if( HAVE_BUILD_TOOLS ) grib2to3 grib2_templates grib3_templates - badgrib + grib_bad grib_ls grib_ls_json grib_filter diff --git a/tests/Makefile.am b/tests/Makefile.am index c4fbe532a..fa6f078e3 100755 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -29,7 +29,7 @@ TESTS = definitions.sh \ unit_tests.sh \ grib2to1.sh \ grib2to3.sh \ - badgrib.sh \ + grib_bad.sh \ grib_ls.sh \ grib_filter.sh \ grib_multi.sh \ diff --git a/tests/badgrib.sh b/tests/grib_bad.sh similarity index 100% rename from tests/badgrib.sh rename to tests/grib_bad.sh From a077fd8554b7fda2b9ca5a70a439f7a358a7b015 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 18 Dec 2020 17:00:35 +0000 Subject: [PATCH 207/683] WMO dump: Print user-friendly type for keys (-t option) --- src/grib_dumper_class_wmo.c | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/src/grib_dumper_class_wmo.c b/src/grib_dumper_class_wmo.c index a8bbb863c..bdeb862a8 100644 --- a/src/grib_dumper_class_wmo.c +++ b/src/grib_dumper_class_wmo.c @@ -167,7 +167,7 @@ static void dump_long(grib_dumper* d, grib_accessor* a, const char* comment) print_offset(self->dumper.out, self->begin, self->theEnd); if ((d->option_flags & GRIB_DUMP_FLAG_TYPE) != 0) - fprintf(self->dumper.out, "%s ", a->creator->op); + fprintf(self->dumper.out, "%s (int) ", a->creator->op); if (size > 1) { int cols = 19; @@ -274,7 +274,7 @@ static void dump_double(grib_dumper* d, grib_accessor* a, const char* comment) print_offset(self->dumper.out, self->begin, self->theEnd); if ((d->option_flags & GRIB_DUMP_FLAG_TYPE) != 0) - fprintf(self->dumper.out, "%s ", a->creator->op); + fprintf(self->dumper.out, "%s (double) ", a->creator->op); if (((a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) != 0) && grib_is_missing_internal(a)) fprintf(self->dumper.out, "%s = MISSING", a->name); @@ -324,7 +324,7 @@ static void dump_string(grib_dumper* d, grib_accessor* a, const char* comment) /*for(i = 0; i < d->depth ; i++) fprintf(self->dumper.out," ");*/ print_offset(self->dumper.out, self->begin, self->theEnd); if ((d->option_flags & GRIB_DUMP_FLAG_TYPE) != 0) - fprintf(self->dumper.out, "%s ", a->creator->op); + fprintf(self->dumper.out, "%s (str) ", a->creator->op); fprintf(self->dumper.out, "%s = %s", a->name, value); @@ -444,8 +444,17 @@ static void dump_values(grib_dumper* d, grib_accessor* a) /*for(i = 0; i < d->depth ; i++) fprintf(self->dumper.out," ");*/ print_offset(self->dumper.out, self->begin, self->theEnd); - if ((d->option_flags & GRIB_DUMP_FLAG_TYPE) != 0) - fprintf(self->dumper.out, "%s ", a->creator->op); + if ((d->option_flags & GRIB_DUMP_FLAG_TYPE) != 0) { + char type_name[32] = ""; + const long native_type = grib_accessor_get_native_type(a); + if (native_type == GRIB_TYPE_LONG) + strcpy(type_name, "(int)"); + else if (native_type == GRIB_TYPE_DOUBLE) + strcpy(type_name, "(double)"); + else if (native_type == GRIB_TYPE_STRING) + strcpy(type_name, "(str)"); + fprintf(self->dumper.out, "%s %s ", a->creator->op, type_name); + } fprintf(self->dumper.out, "%s = (%ld,%ld)", a->name, (long)size, a->length); aliases(d, a); @@ -631,7 +640,7 @@ static void dump_string_array(grib_dumper* d, grib_accessor* a, const char* comm if ((d->option_flags & GRIB_DUMP_FLAG_TYPE) != 0) { fprintf(self->dumper.out, " "); - fprintf(self->dumper.out, "# type %s \n", a->creator->op); + fprintf(self->dumper.out, "# type %s (str) \n", a->creator->op); } aliases(d, a); From 230a8632366d42cd87079333536db4eabb7c7ea7 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 18 Dec 2020 17:10:00 +0000 Subject: [PATCH 208/683] WMO dump: Print user-friendly type for keys (-t option) --- tests/grib_dump_samples.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/grib_dump_samples.sh b/tests/grib_dump_samples.sh index 98ec8de41..029f4c56c 100755 --- a/tests/grib_dump_samples.sh +++ b/tests/grib_dump_samples.sh @@ -30,5 +30,12 @@ for file in $samples; do ${tools_dir}/grib_dump -O $sf >/dev/null done +# Test grib_dump with -t option +${tools_dir}/grib_dump -O -t $ECCODES_SAMPLES_PATH/GRIB2.tmpl > $temp +grep -q "signed (int) scaleFactorOfFirstFixedSurface" $temp +grep -q "codetable (int) typeOfSecondFixedSurface" $temp +grep -q "ieeefloat (double) referenceValue" $temp +grep -q "unsigned (int) numberOfSection" $temp + rm -f $temp From 73f5cdd599e1570bf424809cb003e53430775edf Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 21 Dec 2020 12:13:48 +0000 Subject: [PATCH 209/683] Testing: Check directory with highest number matches the key 'tablesVersionLatest' --- tests/CMakeLists.txt | 1 + tests/grib2_version.sh | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100755 tests/grib2_version.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 7bf66b32d..f5d2dee36 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -60,6 +60,7 @@ if( HAVE_BUILD_TOOLS ) bufr_dump_samples bufr_check_descriptors definitions + grib2_version grib_calendar grib_md5 grib_cfNames diff --git a/tests/grib2_version.sh b/tests/grib2_version.sh new file mode 100755 index 000000000..030a9a653 --- /dev/null +++ b/tests/grib2_version.sh @@ -0,0 +1,33 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# +. ./include.sh +set -u +REDIRECT=/dev/null + +label="grib2_version" +if [ ! -d "$ECCODES_DEFINITION_PATH" ]; then + echo "Test $0 disabled. No definitions directory" + exit 0 +fi + +temp=temp.$label.grib2 +sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl +tables_dir="$ECCODES_DEFINITION_PATH/grib2/tables" + +# In $tables_dir, the directory names should match the version numbers of GRIB2 tables. +# Check the directory with the highest number matches the key 'tablesVersionLatest' +cd $tables_dir +highest_num=`ls -1d [0-9]* | sort -rn | sed 1q` +latest=`${tools_dir}/grib_get -p tablesVersionLatest $sample2` +if [ "$latest" != "$highest_num" ]; then + echo "The GRIB2 key tablesVersionLatest = $latest but the highest number in $tables_dir is $highest_num" +fi + +rm -f $temp From 03ab8348ba1662d62e9440e91b5c397bb3225ca1 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 21 Dec 2020 12:50:04 +0000 Subject: [PATCH 210/683] Scripts for updating the GRIB2 tables from WMO --- definitions/create_grib2_codetables.pl | 186 +++++++++++++++++++++++++ definitions/csv_2_tsv.pl | 28 ++++ tests/grib2_version.sh | 1 + 3 files changed, 215 insertions(+) create mode 100644 definitions/create_grib2_codetables.pl create mode 100755 definitions/csv_2_tsv.pl diff --git a/definitions/create_grib2_codetables.pl b/definitions/create_grib2_codetables.pl new file mode 100644 index 000000000..61b590a0b --- /dev/null +++ b/definitions/create_grib2_codetables.pl @@ -0,0 +1,186 @@ +use strict; + +# ------------------------------------------------------------------------ +# Get the CodeFlag.txt file from WMO +# Convert it to TSV (tab-separated-values format): +# perl csv_2_tsv.pl CodeFlag.txt +# This will create the file CodeFlag.txt.tsv +# Create the directory corresponding to the new GRIB2 version: +# mkdir -p definitions/grib2/tables/xx +# cd to that directory: +# cd definitions/grib2/tables/xx +# Run this script on that TSV file: +# perl create_codetables.pl < /path/to/CodeFlag.txt.tsv +# This should create all the *.table files +# ------------------------------------------------------------------------ + +# Types of title_en +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +# Code table 4.1 - Parameter category by product discipline --> "Product discipline 0 - XXX" +# Code table 4.2 - Parameter number by product discipline and parameter category --> "Product discipline 0 - YY, parameter category 0: XX" +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole + +#Product Discipline 0 - Meteorological products, parameter category 16: forecast radar imagery + +my $recnum = 0; +my $codetable; my $discipline; my $category; my $filename; +while (<>) { + ++$recnum; + next if ($recnum==1); + + # OLD FORMAT had initial "No" column + #No Title_en SubTitle_en CodeFlag Value MeaningParameterDescription_en Note_en UnitComments_en Status + #my ($rowid, $title, $subtitle, $codeFlag, $value, $meaning, $note, $unit, $status) = split(/\t/); + + my ($title, $subtitle, $codeFlag, $value, $meaning, $note, $unit, $status) = split(/\t/); + + if ($title =~ /Code table ([0-9.]+)/) { + $codetable = $1; + if ($subtitle =~ /Product [Dd]iscipline (\d+).*parameter category (\d+)/) { + $discipline = $1; + $category = $2; + $filename = "$codetable.$discipline.$category.table"; + WriteFile($filename, $title, $codeFlag, $meaning, $unit); + } + elsif ($subtitle =~ /Product discipline (\d+)/) { + $discipline = $1; + $filename = "$codetable.$discipline.table"; + WriteFile($filename, $title, $codeFlag, $meaning, $unit); + } + elsif ($subtitle eq "") { + $filename = "$codetable.table"; + WriteFile($filename, $title, $codeFlag, $meaning, $unit); + } + } elsif ($title =~ /Flag table ([0-9.]+)/) { + $codetable = $1; + $filename = "$codetable.table"; + WriteFlagTable($filename, $title, $codeFlag, $value, $meaning, $unit); + } + + #exit if ($recnum >800); +} +################################################################################################### +sub WriteFile { + my($filename, $title, $codeFlag, $meaning, $unit) = @_; + if (!-e $filename) { + print "Creating $filename\n"; + open (MYFILE, ">>$filename"); + #print MYFILE "# Automatically generated by ./create_tables.pl from database fm92_grib2\@wrep-db-misc-prod, do not edit\n"; + print MYFILE "# $title\n"; + } + my $unit_text = ($unit eq "" ? "" : "($unit)"); + if ($codeFlag =~ /\-/) { + print MYFILE "# $codeFlag $meaning $unit_text\n"; + } else { + my $codeFlag1 = $codeFlag; + my $codeFlag2 = $codeFlag; + if ($filename eq "1.4.table") { + # Special case. Do not just put 2nd code, translate it to shortName for 'mars type' + $codeFlag2 = TranslateCodes_Table_1_4($codeFlag); + } + elsif ($filename eq "4.4.table") { + $codeFlag2 = TranslateCodes_Table_4_4($codeFlag); + } + elsif ($filename eq "4.5.table") { + $codeFlag2 = TranslateCodes_Table_4_5($codeFlag); + } + elsif ($filename eq "3.15.table") { + $codeFlag2 = TranslateCodes_Table_3_15($codeFlag); + } + elsif ($filename eq "4.10.table") { + $codeFlag2 = TranslateCodes_Table_4_10($codeFlag); + } + print MYFILE "$codeFlag1 $codeFlag2 $meaning $unit_text\n"; + } +} + +################################################################################################### +sub WriteFlagTable{ + my($filename, $title, $codeFlag, $value, $meaning, $unit) = @_; + if (!-e $filename) { + print "Creating $filename\n"; + open (MYFILE, ">>$filename"); + #print MYFILE "# Automatically generated by ./create_tables.pl from database fm92_grib2\@wrep-db-misc-prod, do not edit\n"; + print MYFILE "# $title\n"; + } + my $unit_text = ($unit eq "" ? "" : "($unit)"); + if ($codeFlag =~ /\-/) { + print MYFILE "# $codeFlag $meaning $unit_text\n"; + } else { + print MYFILE "$codeFlag $value $meaning $unit_text\n"; + } +} + +################################################################################################### +sub TranslateCodes_Table_4_10 { + my ($code) = @_; + return "avg" if ($code == 0); + return "accum" if ($code == 1); + return "max" if ($code == 2); + return "min" if ($code == 3); + return "diff" if ($code == 4); + return "rms" if ($code == 5); + return "sd" if ($code == 6); + return "cov" if ($code == 7); + return "ratio" if ($code == 9); + return "missing" if ($code == 255); + return $code; +} +sub TranslateCodes_Table_3_15 { + my ($code) = @_; + return "pt" if ($code == 107); + return "pv" if ($code == 109); + return $code; +} + +################################################################################################### +# This is for Code Table 1.4 +sub TranslateCodes_Table_1_4 { + my ($code) = @_; + return "an" if ($code eq "0"); + return "fc" if ($code eq "1"); + return "af" if ($code eq "2"); + return "cf" if ($code eq "3"); + return "pf" if ($code eq "4"); + return "cp" if ($code eq "5"); + return "sa" if ($code eq "6"); + return "ra" if ($code eq "7"); + return "ep" if ($code eq "8"); + return "missing" if ($code eq "255"); + return $code; +} + +################################################################################################### +sub TranslateCodes_Table_4_4 { + my ($code) = @_; + return "m" if ($code eq "0"); + return "h" if ($code eq "1"); + return "D" if ($code eq "2"); + return "M" if ($code eq "3"); + return "Y" if ($code eq "4"); + return "10Y" if ($code eq "5"); + return "30Y" if ($code eq "6"); + return "C" if ($code eq "7"); + return "3h" if ($code eq "10"); + return "6h" if ($code eq "11"); + return "12h" if ($code eq "12"); + return "s" if ($code eq "13"); + return $code; +} + +################################################################################################### +sub TranslateCodes_Table_4_5 { + my ($code) = @_; + return "sfc" if ($code eq "1" || $code eq "8" || $code eq "17" || $code eq "18" || + $code eq "101" || $code eq "103" || $code eq "106" || $code eq "177"); + return "pl" if ($code eq "100"); + return "ml" if ($code eq "105"); + return "pt" if ($code eq "107"); + return "pv" if ($code eq "109"); + return "hhl" if ($code eq "118"); + return "hpl" if ($code eq "119"); + return "sol" if ($code eq "151"); + return "sol" if ($code eq "114"); + return "sol" if ($code eq "152"); + return $code; +} diff --git a/definitions/csv_2_tsv.pl b/definitions/csv_2_tsv.pl new file mode 100755 index 000000000..09a83c872 --- /dev/null +++ b/definitions/csv_2_tsv.pl @@ -0,0 +1,28 @@ +# ------------------------------------------------------------------------ +# Convert a CSV file into a TSV file +# i.e. replace all delimiters from comma to TAB +# All commas within strings are preserved +# ------------------------------------------------------------------------ + +my $f=@ARGV[0]; +open(IN,"<$f") or die "$f: $!"; +open(OUT,">$f.tsv") or die "$f.tsv: $!"; + +my $line; +while (defined ($line = )) { + chomp($line); + my @list = ($line =~ /(".*?"|[^,]*)(,)|(".*?"|[^,]*)/g) or die; + my $i=0; + while ($i <= $#list) { + if ($list[$i] eq ",") {$list[$i]="\t";} + $i++; + } + my $newline=join('',@list); + # Remove all double-quotes + $newline =~ s/\"//g; + print OUT "$newline\n"; +} + +close (IN); +close (OUT); +print "Created $f.tsv\n"; diff --git a/tests/grib2_version.sh b/tests/grib2_version.sh index 030a9a653..4fa6df36a 100755 --- a/tests/grib2_version.sh +++ b/tests/grib2_version.sh @@ -28,6 +28,7 @@ highest_num=`ls -1d [0-9]* | sort -rn | sed 1q` latest=`${tools_dir}/grib_get -p tablesVersionLatest $sample2` if [ "$latest" != "$highest_num" ]; then echo "The GRIB2 key tablesVersionLatest = $latest but the highest number in $tables_dir is $highest_num" + exit 1 fi rm -f $temp From 7a14817017736f4b83f8c0b26f02de3f56b7a2d4 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 22 Dec 2020 16:47:23 +0000 Subject: [PATCH 211/683] ECC-1185: Crash in codes_context_delete() call (Part 1) --- examples/C/new_sample.c | 1 + src/action_class_gen.c | 7 ++++++- src/grib_accessor_class_codetable.c | 1 + src/grib_context.c | 14 +++++++++++--- tests/bufr_check_descriptors.c | 1 + tests/bufr_get_element.c | 2 ++ tests/grib_bpv_limit.c | 1 + tests/grib_indexing.c | 2 +- tests/lsan-leap42.supp | 1 - tests/read_any.c | 1 + 10 files changed, 25 insertions(+), 6 deletions(-) diff --git a/examples/C/new_sample.c b/examples/C/new_sample.c index a6a436ffa..cc08929d1 100644 --- a/examples/C/new_sample.c +++ b/examples/C/new_sample.c @@ -388,5 +388,6 @@ int main(int argc, char** argv) } codes_handle_delete(h); + grib_context_delete(grib_context_get_default()); return 0; } diff --git a/src/action_class_gen.c b/src/action_class_gen.c index f1492b4d3..4eb060960 100644 --- a/src/action_class_gen.c +++ b/src/action_class_gen.c @@ -214,7 +214,12 @@ static void destroy(grib_context* context, grib_action* act) grib_context_free_persistent(context, act->name); grib_context_free_persistent(context, act->op); - grib_context_free_persistent(context, act->name_space); + if(act->name_space) { + grib_context_free_persistent(context, act->name_space); + } if (act->set) grib_context_free_persistent(context, act->set); + if (act->defaultkey) { + grib_context_free_persistent(context, act->defaultkey); + } } diff --git a/src/grib_accessor_class_codetable.c b/src/grib_accessor_class_codetable.c index 4708a4334..2b9189fae 100644 --- a/src/grib_accessor_class_codetable.c +++ b/src/grib_accessor_class_codetable.c @@ -530,6 +530,7 @@ void grib_codetable_delete(grib_context* c) for (i = 0; i < t->size; i++) { grib_context_free_persistent(c, t->entries[i].abbreviation); grib_context_free_persistent(c, t->entries[i].title); + grib_context_free_persistent(c, t->entries[i].units); } grib_context_free_persistent(c, t->filename[0]); if (t->filename[1]) diff --git a/src/grib_context.c b/src/grib_context.c index 327fdf13b..dc50b08fa 100644 --- a/src/grib_context.c +++ b/src/grib_context.c @@ -800,8 +800,16 @@ void grib_context_reset(grib_context* c) grib_smart_table_delete(c); c->smart_table = NULL; - if (c->grib_definition_files_dir) - grib_context_free(c, c->grib_definition_files_dir); + if (c->grib_definition_files_dir) { + grib_string_list* next = c->grib_definition_files_dir; + grib_string_list* cur = NULL; + while (next) { + cur = next; + next = next->next; + grib_context_free(c, cur->value); + grib_context_free(c, cur); + } + } if (c->multi_support_on) grib_multi_support_reset(c); @@ -813,7 +821,7 @@ void grib_context_delete(grib_context* c) c = grib_context_get_default(); grib_hash_keys_delete(c->keys); - grib_trie_delete(c->def_files); + /*grib_trie_delete(c->def_files); TODO:masn */ grib_context_reset(c); if (c != &default_grib_context) diff --git a/tests/bufr_check_descriptors.c b/tests/bufr_check_descriptors.c index e0967e833..b4f3906ac 100644 --- a/tests/bufr_check_descriptors.c +++ b/tests/bufr_check_descriptors.c @@ -55,5 +55,6 @@ int main(int argc, char** argv) fclose(fp); + grib_context_delete(grib_context_get_default()); return 0; } diff --git a/tests/bufr_get_element.c b/tests/bufr_get_element.c index a4f51b5d5..62eee90bf 100644 --- a/tests/bufr_get_element.c +++ b/tests/bufr_get_element.c @@ -52,5 +52,7 @@ int main(int argc, char* argv[]) codes_handle_delete(h); } fclose(in); + + grib_context_delete(grib_context_get_default()); return 0; } diff --git a/tests/grib_bpv_limit.c b/tests/grib_bpv_limit.c index 101f1ee83..a1749fcd0 100644 --- a/tests/grib_bpv_limit.c +++ b/tests/grib_bpv_limit.c @@ -121,5 +121,6 @@ int main(int argc, char** argv) fclose(in); } + grib_context_delete(grib_context_get_default()); return 0; } diff --git a/tests/grib_indexing.c b/tests/grib_indexing.c index 328cb490b..fb565fff6 100644 --- a/tests/grib_indexing.c +++ b/tests/grib_indexing.c @@ -153,7 +153,7 @@ int main(int argc, char* argv[]) free(shortNames[i]); free(shortNames); - /*grib_context_delete(grib_context_get_default());*/ + grib_context_delete(grib_context_get_default()); return 0; } diff --git a/tests/lsan-leap42.supp b/tests/lsan-leap42.supp index 8089a595f..d11c22254 100644 --- a/tests/lsan-leap42.supp +++ b/tests/lsan-leap42.supp @@ -1,4 +1,3 @@ leak:process_elements leak:tests/bufr_ecc-517.c leak:src/action_class_rename.c -leak:tests/grib_indexing.c diff --git a/tests/read_any.c b/tests/read_any.c index 849ae39ba..f340aede9 100644 --- a/tests/read_any.c +++ b/tests/read_any.c @@ -78,5 +78,6 @@ int main(int argc, char* argv[]) count++; } + grib_context_delete(grib_context_get_default()); return 0; } From e3abb59e62812e54bb8516030f054c42a0c426e6 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 22 Dec 2020 17:45:35 +0000 Subject: [PATCH 212/683] Compiler warning: clang --- tools/codes_info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/codes_info.c b/tools/codes_info.c index c333dccae..ee12bbe69 100644 --- a/tools/codes_info.c +++ b/tools/codes_info.c @@ -28,7 +28,7 @@ static void usage_and_exit(const char* progname) #define INFO_PRINT_DEFINITION_PATH (1 << 1) #define INFO_PRINT_SAMPLES_PATH (1 << 2) -void print_debug_info(grib_context* context) +static void print_debug_info(grib_context* context) { int memfs = 0, aec = 0; #ifdef HAVE_MEMFS From 5b7977c2fa035190fddca6f071160478475c88e1 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 22 Dec 2020 19:34:54 +0000 Subject: [PATCH 213/683] GitHub CI: remove ENABLE_PYTHON=0 (By default Python2 is disabled) --- .appveyor.yml | 1 - .travis.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index aa238edf8..e1adf685d 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -72,7 +72,6 @@ build_script: -D CMAKE_INSTALL_PREFIX=%INSTALL_DIR% ^ -D CMAKE_BUILD_TYPE=Release ^ -D ENABLE_FORTRAN=0 ^ - -D ENABLE_PYTHON=0 ^ -D ENABLE_NETCDF=1 ^ -D ENABLE_JPG=1 ^ -D IEEE_LE=1 ^ diff --git a/.travis.yml b/.travis.yml index df6be090e..c161910bf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -59,7 +59,6 @@ script: - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR} - cmake -D CMAKE_INSTALL_PREFIX=${INSTALL_DIR} -D ENABLE_FORTRAN=0 - -D ENABLE_PYTHON=0 -D ENABLE_NETCDF=1 -D ENABLE_JPG=1 -D ENABLE_MEMFS=0 From 0e1d0e664028fbc1cbbf7a5ab44abdb44d598662 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 23 Dec 2020 18:51:37 +0000 Subject: [PATCH 214/683] ECC-1186: grib_dump: Does not print the definition file used for Flag Table keys --- src/grib_accessor_class_codeflag.c | 6 ++++-- src/grib_dumper_class_wmo.c | 18 ++++++++++-------- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/src/grib_accessor_class_codeflag.c b/src/grib_accessor_class_codeflag.c index 643c84bde..b9f1d35cd 100644 --- a/src/grib_accessor_class_codeflag.c +++ b/src/grib_accessor_class_codeflag.c @@ -162,8 +162,10 @@ static int grib_get_codeflag(grib_accessor* a, long code, char* codename) char line[1024]; size_t i = 0; int j = 0; + int err = 0; - grib_recompose_name(grib_handle_of_accessor(a), NULL, self->tablename, fname, 1); + err = grib_recompose_name(grib_handle_of_accessor(a), NULL, self->tablename, fname, 1); + if (err) strncpy(fname, self->tablename, 1023); if ((filename = grib_context_full_defs_path(a->context, fname)) == NULL) { grib_context_log(a->context, GRIB_LOG_WARNING, "Cannot open flag table %s", filename); @@ -213,7 +215,7 @@ static int grib_get_codeflag(grib_accessor* a, long code, char* codename) codename[j] = 0; strcat(codename, ":"); - strcat(codename, self->tablename); + strcat(codename, fname); fclose(f); return GRIB_SUCCESS; diff --git a/src/grib_dumper_class_wmo.c b/src/grib_dumper_class_wmo.c index bdeb862a8..c1431c101 100644 --- a/src/grib_dumper_class_wmo.c +++ b/src/grib_dumper_class_wmo.c @@ -229,22 +229,24 @@ static void dump_bits(grib_dumper* d, grib_accessor* a, const char* comment) /*for(i = 0; i < d->depth ; i++) fprintf(self->dumper.out," ");*/ print_offset(self->dumper.out, self->begin, self->theEnd); if ((d->option_flags & GRIB_DUMP_FLAG_TYPE) != 0) - fprintf(self->dumper.out, "%s ", a->creator->op); + fprintf(self->dumper.out, "%s (int) ", a->creator->op); fprintf(self->dumper.out, "%s = %ld [", a->name, value); - for (i = 0; i < (a->length * 8); i++) { if (test_bit(value, a->length * 8 - i - 1)) fprintf(self->dumper.out, "1"); else fprintf(self->dumper.out, "0"); } - /* - if(comment) - fprintf(self->dumper.out,":%s]",comment); - else - */ - fprintf(self->dumper.out, "]"); + + if(comment) { + /* ECC-1186: Whole comment is too big, so pick the part that follows the ':' i.e. flag table file */ + const char* p = strchr(comment, ':'); + if (p) fprintf(self->dumper.out," (%s) ]", p+1); + else fprintf(self->dumper.out, "]"); + } else { + fprintf(self->dumper.out, "]"); + } if (err == 0) print_hexadecimal(self->dumper.out, d->option_flags, a); From 703a69a28bba30ab6e952f1122567463430846dc Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 24 Dec 2020 20:17:44 +0000 Subject: [PATCH 215/683] ECC-1187: BUFR: Crash on codes_set_missing() --- examples/C/bufr_missing.c | 4 +++ examples/python/bufr_ecc-869.py | 4 +-- src/grib_accessor_class_bufr_data_element.c | 37 +++++++++++++++++++-- 3 files changed, 40 insertions(+), 5 deletions(-) diff --git a/examples/C/bufr_missing.c b/examples/C/bufr_missing.c index bbb7adef4..3779b9753 100644 --- a/examples/C/bufr_missing.c +++ b/examples/C/bufr_missing.c @@ -65,6 +65,10 @@ int main(int argc, char* argv[]) assert(!err); assert(is_missing == 1); + /* Set some other keys to be missing */ + CODES_CHECK(codes_set_missing(h, "blockNumber"), 0); + CODES_CHECK(codes_set_missing(h, "#1#heightOfBaseOfCloud"), 0); + /* delete handle */ codes_handle_delete(h); diff --git a/examples/python/bufr_ecc-869.py b/examples/python/bufr_ecc-869.py index 4d97e8b3b..ef9671946 100644 --- a/examples/python/bufr_ecc-869.py +++ b/examples/python/bufr_ecc-869.py @@ -105,9 +105,9 @@ def bufr_encode(): codes_set(ibufr, '#2#day', 21) codes_set(ibufr, '#2#hour', 21) codes_set(ibufr, '#2#minute', 4) - codes_set(ibufr, 'temperatureObservationPrecision', CODES_MISSING_DOUBLE) + codes_set_missing(ibufr, 'temperatureObservationPrecision') codes_set(ibufr, 'oceanographicWaterTemperature', 2.914499999999999886e+02) - codes_set(ibufr, 'methodOfSalinityOrDepthMeasurement', CODES_MISSING_LONG) + codes_set_missing(ibufr, 'methodOfSalinityOrDepthMeasurement') codes_set(ibufr, 'seaSurfaceSalinity', CODES_MISSING_DOUBLE) codes_set(ibufr, 'surfaceType', CODES_MISSING_LONG) codes_set(ibufr, 'iceThickness', CODES_MISSING_DOUBLE) diff --git a/src/grib_accessor_class_bufr_data_element.c b/src/grib_accessor_class_bufr_data_element.c index 55780fcc4..937ab1192 100644 --- a/src/grib_accessor_class_bufr_data_element.c +++ b/src/grib_accessor_class_bufr_data_element.c @@ -23,7 +23,7 @@ IMPLEMENTS = init;dump IMPLEMENTS = unpack_string;unpack_string_array;unpack_long; unpack_double IMPLEMENTS = unpack_double_element ; is_missing - IMPLEMENTS = pack_long; pack_double ; pack_string_array; pack_string + IMPLEMENTS = pack_long; pack_double ; pack_string_array; pack_string; pack_missing IMPLEMENTS = value_count; get_native_type; make_clone; destroy MEMBERS = long index MEMBERS = int type @@ -51,6 +51,7 @@ or edit "accessor.class" and rerun ./make_class.pl */ static int get_native_type(grib_accessor*); +static int pack_missing(grib_accessor*); static int is_missing(grib_accessor*); static int pack_double(grib_accessor*, const double* val, size_t* len); static int pack_long(grib_accessor*, const long* val, size_t* len); @@ -104,7 +105,7 @@ static grib_accessor_class _grib_accessor_class_bufr_data_element = { 0, /* get offset to bytes */ &get_native_type, /* get native type */ 0, /* get sub_section */ - 0, /* grib_pack procedures long */ + &pack_missing, /* grib_pack procedures long */ &is_missing, /* grib_pack procedures long */ &pack_long, /* grib_pack procedures long */ &unpack_long, /* grib_unpack procedures long */ @@ -141,7 +142,6 @@ static void init_class(grib_accessor_class* c) c->byte_count = (*(c->super))->byte_count; c->byte_offset = (*(c->super))->byte_offset; c->sub_section = (*(c->super))->sub_section; - c->pack_missing = (*(c->super))->pack_missing; c->pack_bytes = (*(c->super))->pack_bytes; c->unpack_bytes = (*(c->super))->unpack_bytes; c->pack_expression = (*(c->super))->pack_expression; @@ -729,5 +729,36 @@ static int is_missing(grib_accessor* a) result = grib_is_missing_string(a, (unsigned char*)value, size); } } + else { + return GRIB_INVALID_TYPE; + } return result; } + +static int pack_missing(grib_accessor* a) +{ + int ktype = GRIB_TYPE_UNDEFINED; + int err = 0; + size_t size = 1; + const int can_be_missing = (a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING); + if (!can_be_missing) + return GRIB_VALUE_CANNOT_BE_MISSING; + + ktype = get_native_type(a); + if (ktype == GRIB_TYPE_LONG) { + long missing = GRIB_MISSING_LONG; + err = pack_long(a, &missing, &size); + } + else if (ktype == GRIB_TYPE_DOUBLE) { + double missing = GRIB_MISSING_DOUBLE; + err = pack_double(a, &missing, &size); + } + else if (ktype == GRIB_TYPE_STRING) { + err = pack_string(a, "", &size); + } + else { + err = GRIB_INVALID_TYPE; + } + + return err; +} From 003f882ff87dcf3e5e72e14b13568646ad2a04f2 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 24 Dec 2020 21:09:00 +0000 Subject: [PATCH 216/683] ECC-1187: Tests --- tests/CMakeLists.txt | 1 + tests/bufr_ecc-1187.sh | 46 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100755 tests/bufr_ecc-1187.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index f5d2dee36..727a92449 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -135,6 +135,7 @@ if( HAVE_BUILD_TOOLS ) bufr_ecc-765 bufr_ecc-875 bufr_ecc-887 + bufr_ecc-1187 grib_ecc-490 grib_ecc-756 grib_ecc-806 diff --git a/tests/bufr_ecc-1187.sh b/tests/bufr_ecc-1187.sh new file mode 100755 index 000000000..ddf661b9a --- /dev/null +++ b/tests/bufr_ecc-1187.sh @@ -0,0 +1,46 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh + +# --------------------------------------------------------- +# This is the test for the JIRA issue ECC-1187 +# BUFR: codes_set_missing() +# --------------------------------------------------------- +label="bufr_ecc-1187-test" +tempOut=temp.${label}.out +tempRules=temp.${label}.filter + +# Try each key type: +# radiosondeType => LONG +# radiosondeSerialNumber => STRING +# #1#pressure => DOUBLE +input=${data_dir}/bufr/PraticaTemp.bufr + +cat > $tempRules < Date: Tue, 29 Dec 2020 13:37:42 +0000 Subject: [PATCH 217/683] Build: openjpeg 2.4.0 --- cmake/FindOpenJPEG.cmake | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cmake/FindOpenJPEG.cmake b/cmake/FindOpenJPEG.cmake index 79861ffec..322e7258b 100644 --- a/cmake/FindOpenJPEG.cmake +++ b/cmake/FindOpenJPEG.cmake @@ -6,7 +6,7 @@ # granted to it by virtue of its status as an intergovernmental organisation nor # does it submit to any jurisdiction. -# - Try to find the OpenJPEG includes and library (version 1.5.x, 2.1.x, 2.2.x, 2.3.x) +# - Try to find the OpenJPEG includes and library (version 1.5.x, 2.1.x, 2.2.x, 2.3.x, 2.4.x) # This module defines # # OPENJPEG_FOUND - System has OpenJPEG @@ -20,10 +20,11 @@ # Note: OpenJPEG has a version-specific subdirectory in the include # e.g. include/openjpeg-2.0 or include/openjpeg-2.1. -# Only version 1.5.x and 2.[123].x are supported. +# Only version 1.5.x and 2.[1234].x are supported. # The library name is different for 1.x (libopenjpeg) and 2.x (libopenjp2). -set( _suff include include/openjpeg include/openjpeg-1.5 include/openjpeg-2.1 include/openjpeg-2.2 include/openjpeg-2.3) +set( _suff include include/openjpeg include/openjpeg-1.5 include/openjpeg-2.1 + include/openjpeg-2.2 include/openjpeg-2.3 include/openjpeg-2.4 ) find_path( OPENJPEG_INCLUDE_DIR openjpeg.h PATHS ${OPENJPEG_PATH} ENV OPENJPEG_PATH ${OPENJPEG_DIR} ENV OPENJPEG_DIR From 525a51f928239747c6c5b7d829804c832f10fa50 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 29 Dec 2020 13:47:58 +0000 Subject: [PATCH 218/683] Update list of keys and hash --- src/grib_hash_keys.c | 13496 ++++++++++++++++++++--------------------- tests/keys | 4259 ++++++------- 2 files changed, 8752 insertions(+), 9003 deletions(-) diff --git a/src/grib_hash_keys.c b/src/grib_hash_keys.c index 62d536a7a..8b3e516cb 100644 --- a/src/grib_hash_keys.c +++ b/src/grib_hash_keys.c @@ -34,12 +34,12 @@ error "gperf generated tables don't work with this execution character set. Plea struct grib_keys_hash { char* name; int id;}; #include -#define TOTAL_KEYWORDS 2381 +#define TOTAL_KEYWORDS 2384 #define MIN_WORD_LENGTH 1 #define MAX_WORD_LENGTH 74 -#define MIN_HASH_VALUE 5 -#define MAX_HASH_VALUE 33410 -/* maximum key range = 33406, duplicates = 0 */ +#define MIN_HASH_VALUE 1 +#define MAX_HASH_VALUE 31978 +/* maximum key range = 31978, duplicates = 0 */ #ifdef __GNUC__ @@ -55,32 +55,32 @@ hash_keys (str, len) { static const unsigned short asso_values[] = { - 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, - 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, - 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, - 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, - 33411, 33411, 3, 33411, 33411, 2, 33411, 33411, 64, 2180, - 1898, 1554, 1991, 3500, 2018, 1460, 85, 51, 3, 2, - 2, 33411, 33411, 33411, 33411, 1483, 3797, 2469, 4, 1285, - 119, 5182, 4401, 820, 1036, 241, 733, 1412, 648, 103, - 2158, 49, 844, 96, 71, 3818, 2001, 2614, 590, 4618, - 8, 2, 2, 33411, 33411, 2703, 33411, 4, 305, 46, - 2, 7, 293, 160, 97, 7, 1667, 3523, 69, 8, - 2, 21, 23, 1042, 9, 9, 3, 63, 170, 102, - 757, 79, 1483, 24, 1302, 3, 33411, 33411, 33411, 33411, - 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, - 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, - 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, - 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, - 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, - 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, - 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, - 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, - 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, - 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, - 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, - 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, - 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411, 33411 + 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, + 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, + 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, + 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, + 31979, 31979, 0, 31979, 31979, 0, 31979, 31979, 250, 1792, + 1573, 1754, 1587, 2914, 361, 2514, 89, 11, 1, 1, + 0, 31979, 31979, 31979, 31979, 1331, 4690, 2538, 97, 741, + 76, 4857, 2907, 685, 602, 595, 505, 1271, 755, 64, + 1930, 79, 943, 128, 84, 4644, 1600, 2896, 256, 4587, + 1, 0, 0, 31979, 31979, 2806, 31979, 3, 345, 51, + 0, 5, 170, 181, 99, 4, 2371, 3054, 73, 4, + 0, 10, 21, 985, 2, 11, 2, 60, 202, 278, + 491, 55, 461, 10, 148, 0, 31979, 31979, 31979, 31979, + 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, + 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, + 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, + 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, + 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, + 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, + 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, + 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, + 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, + 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, + 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, + 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, + 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979 }; register int hval = len; @@ -166,814 +166,938 @@ hash_keys (str, len) static const unsigned char lengthtable[] = { - 0, 0, 0, 0, 0, 1, 0, 1, 2, 2, 2, 3, 2, 2, - 0, 2, 0, 1, 0, 0, 2, 4, 3, 0, 0, 0, 0, 4, - 0, 5, 0, 0, 4, 0, 0, 0, 4, 0, 0, 0, 3, 6, - 0, 4, 5, 0, 8, 8, 0, 4, 0, 3, 6, 0, 6, 0, - 0, 0, 7, 3, 5, 5, 0, 0, 5, 0, 7, 0, 0, 4, - 7, 0, 0, 4, 9, 0, 9, 0, 9, 0, 6, 0, 9, 0, - 0, 0, 7, 6, 10, 5, 0, 0, 9, 4, 4, 6, 0, 0, - 5, 0, 0, 7, 10, 6, 7, 0, 6, 10, 10, 6, 0, 0, - 4, 0, 10, 9, 8, 0, 7, 10, 7, 8, 8, 4, 8, 5, - 10, 10, 0, 6, 3, 0, 0, 0, 0, 5, 0, 0, 0, 0, - 7, 0, 9, 5, 0, 6, 6, 0, 0, 0, 3, 5, 5, 0, - 3, 0, 0, 0, 10, 0, 0, 0, 2, 2, 2, 0, 0, 3, - 0, 4, 7, 0, 0, 8, 5, 10, 0, 7, 0, 0, 0, 5, - 0, 10, 4, 9, 9, 10, 6, 9, 8, 7, 7, 0, 5, 0, - 10, 0, 0, 0, 0, 0, 0, 4, 8, 10, 0, 0, 8, 0, - 0, 8, 0, 0, 6, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 8, 0, 0, 0, 0, 8, 0, 5, 5, 7, 6, 17, 8, - 0, 0, 0, 11, 13, 9, 5, 0, 8, 0, 0, 0, 0, 11, - 0, 11, 0, 0, 14, 0, 6, 9, 0, 0, 0, 10, 0, 2, - 0, 0, 14, 10, 6, 8, 10, 8, 0, 0, 0, 0, 12, 0, - 9, 11, 5, 5, 13, 0, 0, 0, 0, 13, 0, 0, 10, 0, - 0, 12, 0, 0, 0, 9, 0, 9, 0, 7, 0, 0, 0, 0, - 0, 7, 0, 0, 0, 10, 8, 0, 0, 10, 9, 4, 0, 1, - 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, - 13, 6, 0, 7, 0, 10, 0, 0, 0, 0, 6, 0, 0, 0, - 9, 0, 8, 0, 0, 7, 0, 11, 0, 0, 11, 0, 10, 10, - 13, 2, 8, 7, 0, 0, 0, 0, 7, 8, 0, 7, 0, 0, - 0, 6, 0, 0, 10, 8, 6, 0, 0, 4, 0, 11, 0, 12, - 20, 0, 5, 0, 5, 8, 0, 0, 0, 0, 0, 9, 0, 0, - 0, 10, 0, 6, 0, 0, 18, 0, 0, 0, 0, 13, 8, 3, - 0, 0, 4, 0, 0, 0, 6, 0, 11, 0, 0, 0, 11, 0, - 0, 2, 10, 23, 0, 0, 24, 0, 0, 0, 0, 12, 8, 19, - 0, 0, 0, 0, 0, 0, 8, 11, 0, 0, 10, 0, 0, 7, - 0, 0, 0, 0, 0, 11, 0, 0, 11, 0, 0, 0, 0, 13, - 0, 0, 0, 0, 11, 15, 2, 1, 6, 0, 0, 0, 17, 0, - 17, 0, 10, 0, 0, 0, 0, 3, 0, 13, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 7, 15, 0, 0, 0, 0, 0, 10, - 9, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 18, - 12, 8, 0, 11, 10, 0, 0, 0, 0, 0, 11, 0, 14, 0, - 0, 0, 0, 5, 0, 0, 0, 0, 11, 0, 0, 0, 12, 6, - 0, 0, 23, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, - 7, 0, 19, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 13, - 0, 0, 0, 0, 22, 14, 0, 0, 0, 0, 0, 0, 0, 12, - 18, 0, 12, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 14, 13, 0, - 0, 0, 0, 0, 2, 6, 12, 0, 2, 0, 0, 0, 0, 8, - 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 12, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 10, - 0, 0, 0, 19, 4, 22, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 6, 10, 18, 0, 0, 14, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, - 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 13, - 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 10, 0, 0, 0, - 5, 18, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, - 0, 6, 9, 0, 13, 0, 0, 15, 0, 0, 0, 11, 0, 17, - 16, 0, 3, 0, 0, 0, 9, 0, 2, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 9, 0, 0, 25, - 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 5, 0, 0, 0, - 12, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 3, 6, 0, 0, 9, 8, 0, 0, 0, 0, 0, 25, 0, - 0, 0, 7, 0, 3, 0, 13, 0, 9, 0, 0, 7, 21, 0, - 0, 0, 0, 21, 0, 0, 22, 0, 0, 0, 14, 2, 0, 0, - 10, 0, 18, 0, 0, 14, 0, 13, 0, 0, 0, 0, 0, 10, - 0, 0, 0, 6, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, - 0, 0, 3, 0, 0, 14, 0, 0, 0, 0, 0, 13, 0, 0, - 0, 0, 0, 0, 0, 3, 0, 0, 17, 0, 13, 16, 0, 0, - 16, 0, 10, 39, 40, 0, 7, 0, 14, 14, 0, 0, 0, 10, - 0, 14, 17, 0, 0, 0, 0, 8, 6, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 27, 0, 14, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, - 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 16, 0, 0, 0, - 0, 0, 0, 18, 20, 0, 0, 0, 0, 0, 13, 0, 0, 9, - 15, 0, 14, 0, 0, 0, 12, 24, 0, 0, 0, 9, 0, 0, - 0, 0, 18, 13, 0, 0, 13, 0, 0, 9, 0, 0, 48, 13, - 0, 0, 9, 0, 0, 10, 0, 0, 15, 0, 0, 0, 0, 0, - 0, 0, 0, 30, 8, 0, 0, 0, 21, 12, 0, 0, 0, 12, - 0, 0, 10, 27, 0, 0, 0, 0, 0, 17, 0, 0, 20, 15, - 17, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 0, 0, 0, 27, 0, 0, 13, 10, 0, 12, - 0, 0, 0, 0, 0, 0, 0, 15, 12, 0, 0, 0, 0, 37, - 0, 0, 17, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 11, 0, 13, - 0, 0, 0, 0, 0, 0, 9, 0, 8, 0, 11, 0, 11, 11, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 2, 0, - 0, 0, 0, 0, 2, 0, 0, 0, 0, 3, 10, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 11, 0, 23, 0, 0, 0, 0, 24, 0, 0, 0, 0, - 0, 11, 0, 0, 0, 0, 9, 0, 0, 1, 0, 0, 0, 26, - 0, 11, 13, 0, 0, 0, 0, 0, 12, 19, 0, 0, 0, 0, - 0, 0, 0, 30, 12, 17, 0, 16, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 23, 17, 0, 35, 12, - 24, 0, 26, 5, 0, 16, 0, 0, 3, 16, 0, 0, 14, 0, - 0, 0, 0, 23, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, - 15, 26, 0, 25, 0, 30, 0, 11, 0, 0, 0, 0, 0, 31, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 15, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, - 14, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 9, 0, 0, - 0, 0, 0, 0, 0, 12, 0, 0, 0, 10, 0, 0, 25, 10, - 0, 15, 32, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, - 19, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 11, 0, - 0, 0, 0, 0, 13, 16, 0, 0, 0, 0, 13, 0, 0, 0, - 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 16, - 0, 0, 16, 0, 11, 0, 0, 0, 19, 0, 0, 0, 0, 0, - 0, 0, 5, 0, 0, 23, 2, 16, 2, 0, 0, 0, 0, 0, - 11, 0, 0, 3, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 5, 0, 4, 0, 0, 31, 12, 0, 0, 0, 0, - 0, 0, 0, 13, 13, 0, 0, 12, 0, 9, 0, 0, 11, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 13, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, - 0, 0, 0, 0, 16, 0, 0, 0, 30, 0, 2, 13, 0, 0, - 15, 0, 0, 6, 0, 0, 0, 0, 0, 9, 0, 0, 0, 22, - 0, 0, 17, 17, 0, 8, 0, 0, 0, 0, 0, 0, 9, 0, - 14, 0, 0, 11, 18, 0, 16, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 12, 15, 0, 13, 0, 0, 0, 0, 0, 0, - 0, 9, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 28, 0, 0, 21, 9, 0, 0, 34, 0, - 0, 0, 0, 0, 0, 0, 0, 11, 23, 0, 0, 0, 0, 0, - 0, 6, 0, 0, 18, 0, 0, 0, 13, 0, 0, 0, 18, 0, - 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 16, + 0, 1, 2, 3, 2, 1, 2, 2, 2, 1, 0, 3, 0, 2, + 0, 4, 0, 0, 5, 4, 0, 4, 0, 3, 4, 0, 0, 6, + 0, 0, 5, 4, 7, 8, 0, 4, 0, 6, 0, 5, 0, 9, + 5, 0, 4, 0, 0, 9, 0, 0, 0, 3, 5, 0, 0, 7, + 0, 9, 9, 0, 7, 3, 0, 0, 4, 6, 0, 0, 0, 0, + 0, 4, 0, 0, 0, 8, 6, 4, 4, 10, 10, 5, 10, 6, + 0, 7, 6, 9, 0, 0, 7, 7, 4, 5, 10, 0, 0, 6, + 6, 0, 0, 0, 10, 0, 0, 0, 6, 2, 0, 8, 0, 0, + 2, 0, 7, 0, 3, 9, 8, 5, 8, 0, 10, 5, 0, 6, + 6, 0, 8, 7, 5, 0, 7, 0, 3, 0, 3, 0, 0, 0, + 0, 9, 0, 0, 0, 0, 0, 10, 10, 5, 0, 0, 0, 0, + 0, 7, 0, 0, 6, 0, 0, 4, 8, 0, 0, 5, 10, 0, + 5, 2, 5, 6, 8, 7, 0, 7, 6, 4, 10, 9, 9, 0, + 0, 5, 0, 0, 8, 0, 10, 7, 10, 4, 0, 8, 0, 0, + 10, 0, 8, 7, 0, 5, 0, 0, 0, 8, 9, 6, 10, 2, + 0, 0, 0, 0, 0, 10, 0, 8, 0, 5, 0, 11, 10, 0, + 0, 0, 0, 0, 0, 0, 13, 6, 5, 0, 14, 0, 0, 0, + 0, 0, 8, 7, 7, 0, 8, 11, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 10, 0, 0, 0, 9, 0, 4, 8, 0, 0, 0, + 0, 0, 0, 8, 0, 8, 5, 10, 0, 0, 0, 0, 2, 17, + 11, 0, 9, 0, 0, 0, 0, 0, 5, 0, 0, 0, 11, 10, + 12, 10, 6, 8, 5, 0, 2, 0, 0, 3, 13, 0, 0, 0, + 0, 0, 9, 7, 9, 9, 0, 0, 0, 0, 0, 0, 0, 9, + 0, 8, 0, 8, 0, 10, 0, 0, 20, 9, 0, 0, 0, 0, + 12, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 9, + 0, 8, 4, 0, 10, 0, 0, 0, 0, 0, 13, 0, 0, 1, + 0, 8, 0, 10, 0, 0, 0, 6, 11, 0, 7, 7, 6, 0, + 10, 0, 0, 8, 13, 0, 0, 8, 6, 0, 0, 11, 0, 0, + 13, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, + 6, 0, 17, 10, 0, 0, 10, 7, 0, 0, 11, 0, 0, 0, + 11, 11, 18, 0, 6, 0, 11, 2, 8, 10, 0, 0, 0, 17, + 12, 0, 5, 14, 6, 0, 0, 0, 7, 0, 0, 0, 0, 6, + 24, 0, 9, 0, 0, 0, 5, 0, 0, 0, 0, 6, 0, 7, + 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 11, 0, + 11, 0, 0, 12, 0, 0, 0, 0, 0, 3, 4, 0, 0, 10, + 0, 0, 4, 0, 15, 0, 0, 0, 0, 0, 0, 12, 0, 0, + 0, 5, 0, 0, 0, 0, 0, 15, 14, 0, 14, 0, 12, 0, + 13, 5, 0, 23, 0, 0, 7, 6, 0, 0, 0, 13, 8, 13, + 0, 0, 19, 0, 14, 9, 0, 0, 10, 14, 0, 0, 0, 2, + 0, 0, 0, 0, 0, 0, 0, 3, 18, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 12, 11, 3, 0, 0, 0, + 0, 12, 6, 22, 0, 11, 0, 7, 10, 5, 22, 0, 0, 0, + 0, 0, 0, 14, 0, 0, 6, 0, 11, 0, 14, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 15, 0, 0, 0, 4, 0, 0, 0, + 10, 2, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 11, 22, 0, 0, 0, 14, 0, 10, 12, 0, 13, + 15, 0, 0, 0, 11, 0, 15, 0, 0, 0, 23, 13, 12, 0, + 0, 0, 0, 11, 0, 0, 0, 14, 0, 12, 0, 3, 0, 0, + 18, 0, 0, 0, 0, 13, 3, 0, 0, 9, 0, 0, 0, 0, + 0, 0, 21, 0, 0, 0, 0, 8, 0, 0, 12, 14, 18, 0, + 0, 0, 0, 0, 0, 3, 0, 0, 13, 0, 0, 0, 0, 6, + 10, 0, 0, 13, 0, 0, 0, 0, 0, 9, 19, 7, 0, 19, + 0, 17, 13, 0, 0, 9, 6, 0, 0, 0, 0, 15, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, - 0, 0, 0, 12, 18, 0, 0, 0, 0, 0, 0, 0, 12, 0, - 0, 0, 0, 3, 19, 0, 0, 0, 15, 0, 0, 0, 0, 0, - 0, 0, 0, 15, 14, 11, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 18, 0, 12, 20, 0, 0, 0, 0, 0, 0, 0, - 0, 19, 15, 13, 15, 0, 0, 13, 0, 14, 13, 0, 0, 15, - 35, 22, 0, 10, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 14, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 15, 0, 0, - 0, 15, 26, 12, 0, 0, 0, 15, 0, 0, 0, 0, 42, 0, - 0, 0, 0, 0, 39, 0, 13, 0, 0, 0, 13, 0, 0, 13, - 0, 12, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 15, 0, 10, 0, 0, 14, 0, - 0, 0, 0, 0, 27, 0, 0, 19, 0, 12, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 19, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 25, 11, 17, 0, 0, 0, 32, 15, - 15, 0, 27, 0, 0, 19, 24, 0, 20, 0, 0, 23, 0, 9, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, - 0, 28, 0, 0, 16, 0, 14, 0, 29, 9, 0, 0, 0, 13, - 0, 0, 0, 0, 0, 14, 20, 24, 0, 0, 0, 11, 0, 15, - 0, 0, 0, 28, 19, 0, 0, 0, 12, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, - 11, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 1, 0, 13, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, - 0, 0, 0, 26, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 9, 13, 21, 17, 0, 0, 0, 0, 0, 0, - 0, 0, 2, 30, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 24, 0, 21, 0, 0, 0, 0, 21, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 11, 0, 0, 0, - 0, 0, 0, 17, 0, 0, 0, 0, 2, 0, 0, 10, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, - 19, 10, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 3, - 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 18, 0, - 33, 0, 3, 0, 9, 0, 0, 0, 16, 0, 0, 18, 0, 0, - 0, 8, 0, 0, 6, 0, 0, 0, 0, 2, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, - 0, 0, 0, 0, 0, 0, 8, 0, 3, 0, 0, 34, 2, 38, - 18, 0, 16, 0, 0, 0, 0, 0, 0, 0, 15, 9, 21, 0, - 3, 0, 20, 10, 10, 0, 15, 30, 0, 0, 0, 0, 13, 22, - 0, 0, 0, 3, 0, 0, 0, 0, 0, 15, 22, 0, 0, 0, - 26, 0, 0, 0, 10, 0, 0, 0, 0, 31, 0, 0, 0, 0, - 2, 0, 20, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, - 15, 0, 0, 0, 17, 10, 0, 0, 24, 0, 0, 17, 0, 0, - 0, 0, 0, 0, 0, 0, 20, 0, 13, 0, 22, 15, 0, 0, - 13, 32, 0, 0, 0, 23, 0, 39, 0, 0, 12, 0, 0, 27, - 0, 12, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 23, 11, - 23, 0, 0, 22, 0, 0, 3, 20, 0, 22, 0, 0, 0, 0, - 0, 0, 0, 17, 9, 20, 22, 0, 22, 3, 0, 0, 20, 19, - 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 2, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, - 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 30, - 0, 17, 0, 17, 25, 0, 0, 18, 33, 15, 14, 0, 0, 0, - 0, 0, 8, 0, 22, 0, 0, 16, 0, 0, 0, 15, 13, 0, - 0, 0, 18, 0, 0, 0, 0, 0, 0, 22, 18, 0, 0, 0, - 0, 0, 0, 0, 13, 14, 0, 8, 10, 0, 31, 0, 0, 0, - 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 9, - 7, 0, 0, 0, 0, 19, 0, 0, 17, 0, 0, 0, 23, 0, - 0, 0, 0, 0, 0, 14, 47, 11, 10, 0, 0, 29, 16, 24, - 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, - 13, 0, 0, 0, 9, 17, 0, 0, 30, 0, 24, 12, 0, 25, - 0, 0, 27, 0, 0, 17, 0, 0, 0, 25, 6, 0, 31, 15, - 16, 14, 0, 0, 0, 0, 0, 0, 0, 23, 0, 18, 36, 0, - 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, - 0, 16, 0, 0, 0, 0, 0, 24, 0, 23, 0, 0, 0, 0, - 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 15, 0, - 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 25, 0, 21, 0, 0, 26, 0, 0, 0, 0, 3, 0, - 10, 0, 0, 0, 0, 23, 22, 0, 11, 21, 0, 0, 14, 21, - 0, 20, 0, 23, 0, 0, 0, 0, 0, 13, 0, 0, 16, 0, - 0, 0, 23, 0, 12, 0, 0, 0, 0, 23, 18, 27, 0, 0, - 24, 0, 0, 14, 29, 0, 0, 0, 0, 21, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 14, 22, 0, 0, 0, 0, 0, 25, 0, - 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 16, 0, 0, - 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 15, 0, 0, 0, - 0, 26, 12, 22, 0, 0, 16, 0, 0, 8, 0, 1, 18, 0, - 0, 16, 13, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, - 0, 0, 23, 0, 0, 2, 0, 0, 0, 0, 0, 0, 14, 0, - 24, 0, 31, 0, 0, 38, 17, 0, 0, 25, 0, 0, 0, 0, - 0, 18, 0, 0, 20, 0, 0, 11, 25, 10, 10, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 9, 0, 0, 15, 0, 0, 18, 27, - 0, 0, 0, 21, 0, 9, 0, 0, 0, 0, 0, 18, 0, 21, - 0, 0, 0, 18, 0, 0, 0, 0, 18, 13, 13, 0, 0, 24, - 9, 0, 0, 16, 0, 23, 0, 0, 0, 0, 34, 15, 10, 0, - 29, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 22, 28, 0, - 0, 0, 0, 0, 0, 0, 0, 27, 35, 0, 0, 0, 0, 0, - 0, 3, 0, 0, 0, 0, 10, 0, 0, 9, 25, 21, 0, 0, - 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, - 0, 15, 0, 0, 0, 0, 0, 0, 0, 31, 9, 9, 0, 0, - 15, 0, 0, 0, 0, 0, 24, 0, 20, 20, 10, 0, 0, 8, - 0, 28, 26, 0, 0, 0, 12, 0, 0, 0, 0, 11, 9, 0, - 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 7, 10, 0, 0, - 0, 0, 21, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 26, 0, 12, 8, 0, 0, 0, 0, 0, 0, 10, 0, - 0, 22, 29, 0, 0, 26, 17, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 10, 13, 0, 0, 0, 0, 10, 0, - 0, 18, 0, 27, 2, 0, 11, 0, 15, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 32, 0, 0, 0, - 28, 24, 0, 0, 0, 22, 29, 3, 0, 0, 0, 0, 0, 12, - 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 31, 0, 6, 0, 0, 0, 18, 0, 0, 0, 0, 27, 13, 0, - 24, 0, 0, 15, 0, 0, 0, 0, 0, 0, 24, 11, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 10, 12, 16, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, - 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 24, 0, 14, - 0, 0, 18, 0, 0, 0, 0, 17, 0, 12, 25, 0, 0, 0, - 21, 0, 0, 0, 0, 0, 29, 0, 0, 17, 0, 0, 0, 10, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 14, 0, 23, 21, - 0, 0, 0, 30, 11, 0, 0, 0, 16, 0, 7, 25, 21, 0, - 18, 0, 0, 15, 16, 0, 21, 11, 0, 0, 0, 12, 0, 12, - 0, 0, 0, 0, 0, 9, 0, 0, 2, 15, 25, 0, 0, 0, - 0, 9, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 30, 0, 16, 19, 15, 0, 35, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 17, 0, 0, 0, - 15, 13, 0, 0, 0, 0, 15, 0, 0, 16, 0, 0, 18, 0, - 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 25, 0, 0, 0, 14, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 20, 0, 0, 0, 0, 0, 16, 0, 13, 29, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 41, 37, 0, 4, 0, 20, - 0, 17, 0, 0, 0, 0, 0, 15, 0, 14, 0, 27, 0, 0, - 0, 0, 0, 0, 14, 0, 15, 15, 0, 10, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 15, - 0, 0, 0, 11, 0, 0, 22, 0, 31, 0, 0, 16, 0, 0, - 0, 17, 15, 0, 0, 0, 0, 0, 7, 13, 0, 34, 0, 0, - 0, 0, 0, 0, 14, 0, 12, 0, 10, 0, 0, 0, 26, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 14, 34, 0, 0, 0, 0, - 0, 0, 0, 19, 0, 0, 0, 14, 0, 0, 0, 0, 13, 0, - 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 18, 0, 14, 0, 0, 0, 0, 4, 15, 0, 0, 0, 0, 40, - 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, - 0, 0, 0, 0, 0, 12, 0, 11, 0, 7, 35, 0, 0, 0, - 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 12, 0, - 0, 14, 5, 0, 19, 13, 0, 8, 0, 0, 0, 0, 20, 0, - 0, 0, 0, 0, 0, 22, 0, 21, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 8, 0, 0, 0, 0, 14, 13, 0, 0, 0, 0, - 0, 0, 0, 0, 28, 0, 0, 0, 26, 0, 0, 0, 0, 0, - 0, 0, 0, 31, 0, 0, 0, 16, 0, 24, 0, 6, 10, 0, - 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 30, 0, 0, 0, 0, 0, 0, 4, 18, 14, 0, 0, - 0, 0, 11, 0, 11, 0, 0, 0, 18, 28, 15, 0, 22, 0, - 0, 24, 0, 0, 0, 0, 0, 0, 23, 0, 16, 15, 10, 0, - 0, 0, 14, 30, 19, 26, 37, 0, 19, 0, 11, 24, 14, 0, - 13, 0, 0, 0, 0, 31, 2, 15, 18, 0, 0, 0, 14, 26, - 0, 0, 12, 0, 15, 15, 0, 0, 0, 0, 0, 14, 17, 0, - 34, 0, 26, 31, 0, 0, 0, 22, 33, 3, 0, 0, 0, 0, - 0, 18, 0, 0, 14, 20, 0, 0, 0, 0, 0, 0, 0, 30, - 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 24, 0, 19, 0, 42, 0, 0, 13, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 14, 0, 14, 0, 31, 0, 13, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 9, 21, 0, 0, 0, 0, 13, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 9, - 12, 0, 0, 0, 0, 0, 0, 0, 23, 0, 33, 12, 33, 0, - 0, 0, 0, 14, 0, 0, 0, 17, 25, 42, 0, 0, 0, 0, - 25, 0, 0, 29, 20, 0, 0, 27, 0, 0, 24, 10, 0, 0, - 6, 0, 0, 0, 0, 13, 23, 0, 9, 0, 12, 0, 0, 0, - 0, 0, 15, 29, 14, 0, 15, 0, 2, 0, 11, 0, 29, 0, - 0, 0, 0, 0, 25, 0, 23, 0, 0, 0, 28, 0, 0, 11, - 19, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 50, - 0, 0, 14, 0, 0, 0, 0, 9, 0, 0, 0, 0, 13, 0, - 0, 0, 30, 0, 0, 0, 0, 23, 6, 12, 0, 21, 0, 0, - 22, 0, 0, 0, 0, 0, 12, 11, 6, 0, 0, 0, 32, 27, - 0, 18, 0, 32, 0, 0, 17, 0, 31, 15, 0, 0, 0, 0, - 41, 0, 0, 0, 33, 0, 14, 0, 0, 30, 0, 8, 0, 0, - 0, 0, 0, 31, 0, 0, 0, 0, 0, 14, 0, 0, 0, 15, - 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, - 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 12, 0, 29, 0, 0, 0, 8, 0, 0, 0, 0, - 12, 0, 0, 0, 0, 0, 20, 0, 0, 13, 0, 0, 0, 18, - 13, 0, 0, 0, 0, 13, 0, 0, 24, 0, 0, 27, 13, 0, - 23, 16, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, - 0, 0, 25, 0, 15, 0, 27, 0, 0, 0, 30, 13, 0, 16, - 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, - 12, 16, 0, 0, 0, 0, 15, 0, 37, 0, 0, 0, 0, 0, - 0, 0, 0, 12, 0, 0, 0, 3, 0, 20, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 26, 0, 11, 0, - 0, 0, 0, 0, 0, 19, 26, 0, 0, 0, 19, 0, 0, 0, - 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 19, 13, 0, 0, 15, 14, 0, 0, - 0, 0, 0, 0, 0, 0, 23, 0, 17, 27, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 1, 0, 22, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 16, 15, 0, 11, - 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 34, 11, - 22, 0, 0, 0, 20, 0, 0, 20, 0, 0, 8, 0, 0, 0, - 0, 0, 0, 28, 0, 0, 0, 0, 0, 16, 28, 0, 0, 0, - 0, 0, 0, 0, 0, 13, 2, 0, 0, 0, 0, 0, 13, 3, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, - 0, 18, 0, 0, 0, 0, 0, 32, 6, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 18, 0, - 21, 0, 0, 21, 0, 0, 0, 20, 2, 19, 0, 0, 0, 2, - 30, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 8, 0, 0, - 0, 0, 0, 16, 13, 0, 19, 0, 0, 15, 0, 0, 0, 0, - 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, - 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, - 0, 32, 31, 0, 6, 0, 0, 20, 12, 0, 0, 0, 23, 0, - 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, - 0, 6, 0, 3, 0, 0, 14, 0, 0, 0, 0, 0, 12, 4, - 17, 0, 28, 0, 0, 0, 0, 12, 0, 0, 0, 15, 0, 0, - 0, 9, 0, 0, 0, 15, 0, 0, 0, 0, 0, 9, 22, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 16, - 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 18, 13, - 0, 0, 0, 0, 0, 0, 0, 0, 24, 29, 0, 13, 0, 0, - 0, 33, 11, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 6, 27, 2, 0, 0, 11, 0, 0, 19, 0, 0, 0, - 2, 0, 0, 0, 2, 0, 14, 22, 15, 0, 0, 0, 0, 16, - 0, 0, 0, 0, 14, 0, 0, 0, 31, 28, 0, 0, 0, 0, - 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, - 0, 0, 0, 9, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, - 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, - 15, 0, 0, 0, 0, 17, 0, 0, 29, 0, 12, 0, 8, 3, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 19, 0, 31, 0, 0, 29, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 14, 0, 0, 28, 0, 0, 0, 11, 15, 0, - 0, 21, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 15, 0, 0, 0, 0, 25, 19, 13, 0, 0, 3, - 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 17, 15, 0, 14, 13, 15, 16, - 15, 0, 19, 0, 0, 15, 18, 9, 0, 0, 14, 0, 0, 0, - 21, 0, 27, 21, 0, 0, 35, 0, 0, 22, 0, 15, 0, 0, - 0, 12, 15, 0, 0, 0, 0, 22, 0, 12, 22, 0, 0, 20, - 0, 0, 0, 0, 0, 0, 0, 0, 14, 11, 0, 14, 15, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 11, 27, 0, 0, 0, 16, 15, 0, 0, 0, - 35, 11, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 18, 0, 28, 0, 2, 35, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, - 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 8, - 35, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, - 0, 22, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 20, 0, - 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 19, 0, 14, 18, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, - 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, - 0, 0, 0, 0, 7, 32, 0, 0, 0, 16, 0, 0, 0, 0, - 11, 3, 0, 0, 0, 0, 0, 0, 34, 0, 0, 20, 0, 21, - 0, 0, 9, 0, 3, 15, 0, 30, 0, 0, 22, 0, 37, 31, - 4, 0, 0, 35, 0, 6, 10, 3, 0, 0, 0, 0, 0, 26, - 0, 0, 0, 4, 0, 0, 0, 0, 22, 8, 14, 18, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 18, 0, 0, - 0, 0, 0, 0, 0, 0, 13, 0, 0, 12, 0, 0, 15, 0, - 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, - 0, 24, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, - 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 26, - 0, 0, 0, 0, 0, 0, 0, 14, 0, 39, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 14, 19, 0, 0, - 0, 30, 0, 0, 8, 0, 0, 0, 18, 0, 0, 26, 0, 0, - 0, 0, 0, 34, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 24, 0, 0, 37, - 0, 0, 0, 22, 25, 0, 0, 0, 31, 0, 0, 0, 20, 0, - 35, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, - 12, 0, 14, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 8, 0, 0, 0, 6, 0, 0, 7, 0, - 0, 0, 0, 0, 0, 30, 0, 0, 31, 0, 12, 0, 28, 0, - 0, 16, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, - 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, - 15, 0, 3, 0, 16, 0, 0, 31, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, - 0, 0, 0, 16, 0, 0, 0, 0, 17, 19, 0, 0, 0, 0, - 25, 0, 0, 32, 0, 18, 0, 0, 0, 9, 0, 0, 0, 0, - 15, 0, 0, 0, 0, 11, 0, 0, 12, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 32, 23, 19, 23, - 0, 0, 0, 0, 0, 0, 33, 30, 0, 15, 0, 0, 0, 0, - 0, 29, 31, 0, 11, 0, 0, 15, 0, 0, 0, 0, 14, 0, - 0, 0, 0, 0, 0, 0, 34, 0, 11, 18, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, - 18, 0, 2, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 14, - 0, 0, 19, 0, 0, 0, 0, 0, 15, 20, 0, 16, 0, 18, - 33, 0, 0, 0, 0, 0, 15, 0, 0, 0, 15, 0, 26, 24, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 26, 0, 0, 0, 18, 0, 0, 0, 14, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 29, 24, 0, 24, 21, 0, - 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 23, 0, 14, 19, 0, 0, 0, - 19, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 23, 0, 0, 0, 0, 0, 0, 10, 0, 13, 0, 0, 0, - 0, 9, 0, 0, 0, 35, 0, 0, 0, 31, 0, 15, 0, 0, - 0, 0, 14, 0, 0, 0, 14, 0, 0, 0, 0, 32, 0, 0, - 0, 0, 19, 12, 0, 0, 16, 0, 0, 0, 0, 20, 0, 0, - 0, 0, 0, 0, 11, 14, 0, 18, 0, 0, 0, 0, 0, 0, - 0, 33, 0, 14, 0, 0, 0, 0, 7, 0, 10, 0, 0, 0, - 14, 19, 0, 0, 0, 13, 18, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, - 0, 10, 0, 24, 0, 0, 0, 0, 35, 16, 0, 22, 0, 0, - 0, 0, 33, 0, 28, 12, 0, 26, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 22, - 0, 12, 0, 20, 0, 0, 27, 0, 0, 25, 29, 0, 0, 0, - 0, 0, 0, 0, 12, 31, 0, 0, 0, 14, 0, 0, 0, 0, - 11, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 30, 21, 9, 0, 13, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 14, - 0, 0, 16, 0, 0, 0, 20, 0, 5, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 6, 0, 2, 19, 0, 38, 0, 0, 0, 0, - 0, 0, 25, 23, 0, 11, 0, 13, 0, 0, 14, 0, 0, 0, - 17, 0, 10, 0, 0, 22, 0, 24, 0, 30, 0, 23, 22, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 13, 28, 0, 0, 0, 0, - 6, 0, 15, 0, 21, 0, 21, 0, 10, 0, 0, 0, 0, 0, - 0, 32, 0, 0, 0, 0, 0, 0, 0, 25, 12, 0, 73, 74, - 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, - 0, 0, 0, 25, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 12, 0, 0, 0, 0, 15, 43, 0, 0, 0, 11, 0, 0, - 0, 21, 0, 0, 0, 0, 11, 0, 0, 27, 0, 15, 0, 0, - 0, 0, 14, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, - 0, 0, 36, 0, 0, 38, 0, 0, 43, 0, 0, 0, 0, 0, - 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 14, 0, 0, 0, 0, 0, 0, 14, 11, 0, 0, - 0, 0, 0, 25, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 30, 0, 0, 0, 0, 11, 0, 17, 0, 0, 19, 0, - 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, - 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 23, 13, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 30, 0, - 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 14, - 26, 0, 0, 11, 0, 8, 0, 0, 0, 18, 0, 35, 0, 29, - 0, 20, 0, 0, 28, 0, 0, 27, 23, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 11, 0, 21, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 24, 2, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, - 0, 0, 23, 0, 0, 0, 25, 0, 0, 30, 0, 13, 6, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, - 0, 0, 0, 8, 0, 15, 0, 0, 22, 0, 0, 0, 0, 18, - 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 26, 24, 10, 0, - 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 19, 0, 28, 0, 0, 0, 0, 0, 10, 0, 0, 32, 0, 0, + 0, 0, 0, 9, 22, 2, 0, 0, 6, 2, 0, 0, 0, 10, + 10, 0, 21, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 14, 12, 0, 0, 0, 0, 0, 0, 0, 0, 31, - 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, - 0, 0, 0, 0, 23, 18, 0, 0, 0, 0, 2, 0, 0, 0, - 34, 0, 0, 0, 0, 0, 25, 0, 0, 0, 14, 0, 0, 0, - 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 13, 0, - 30, 0, 0, 0, 0, 22, 19, 6, 0, 0, 0, 14, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 27, 23, 0, 27, 0, 0, - 0, 0, 27, 23, 0, 0, 0, 0, 0, 9, 0, 0, 0, 18, - 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 25, 0, 16, 0, 0, 0, 0, - 24, 0, 0, 0, 34, 0, 0, 0, 18, 0, 0, 36, 0, 0, - 0, 0, 0, 0, 10, 0, 0, 17, 0, 0, 72, 0, 0, 0, - 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 28, 18, 0, - 0, 0, 0, 24, 0, 0, 0, 15, 0, 0, 0, 0, 0, 19, - 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, - 29, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, - 17, 14, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 28, - 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 9, - 0, 16, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, - 16, 44, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, - 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, - 0, 0, 0, 0, 0, 0, 6, 0, 10, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, - 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, - 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 20, - 3, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 15, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 27, 0, 0, 0, - 34, 18, 0, 0, 36, 0, 19, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 10, 0, 0, 42, 0, 0, 0, 0, 0, 34, 0, 0, + 0, 0, 0, 0, 0, 0, 5, 13, 0, 0, 0, 13, 0, 0, + 0, 8, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, + 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 12, 0, 14, + 0, 0, 14, 0, 0, 0, 13, 0, 0, 0, 0, 0, 17, 2, + 0, 0, 0, 17, 0, 18, 2, 0, 0, 9, 0, 0, 15, 2, + 11, 15, 18, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 20, 0, 0, 25, 15, 0, 0, 9, 12, 0, 12, + 9, 0, 0, 10, 0, 0, 0, 0, 8, 9, 0, 0, 0, 10, + 12, 19, 11, 0, 10, 16, 0, 16, 18, 3, 0, 0, 0, 0, + 0, 2, 21, 0, 3, 0, 0, 0, 0, 13, 0, 0, 18, 0, + 0, 11, 13, 0, 16, 48, 0, 0, 44, 0, 0, 0, 16, 0, + 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 13, + 0, 8, 0, 0, 39, 40, 0, 12, 0, 0, 0, 19, 10, 9, + 0, 0, 0, 0, 2, 0, 0, 0, 13, 0, 0, 30, 3, 14, + 30, 0, 0, 0, 18, 6, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 5, 0, 15, + 0, 13, 0, 0, 0, 0, 0, 0, 27, 0, 17, 10, 24, 0, + 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 30, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 27, 23, 0, 0, 0, 19, 0, 15, + 0, 0, 0, 0, 17, 25, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 14, 2, 0, 0, 0, 0, 0, 0, 0, 15, 21, 0, + 0, 0, 8, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 19, + 0, 0, 11, 0, 0, 0, 0, 0, 37, 0, 0, 0, 11, 0, + 0, 0, 17, 0, 0, 0, 0, 0, 11, 0, 0, 0, 20, 0, + 0, 0, 13, 0, 0, 0, 0, 0, 0, 14, 13, 8, 0, 13, + 0, 15, 14, 0, 0, 9, 0, 0, 0, 16, 0, 0, 0, 12, + 0, 0, 0, 0, 9, 0, 3, 0, 0, 13, 0, 0, 23, 0, + 19, 0, 0, 12, 0, 0, 0, 16, 11, 9, 3, 0, 0, 0, + 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 10, 0, + 0, 1, 0, 0, 11, 0, 0, 16, 0, 0, 0, 0, 10, 0, + 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 15, 14, 0, 0, + 0, 0, 0, 19, 0, 17, 0, 0, 0, 0, 0, 35, 31, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 10, 13, 0, 0, + 15, 0, 0, 22, 16, 0, 0, 18, 16, 0, 0, 0, 0, 0, + 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 11, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 14, - 0, 0, 18, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 21, 0, 11, 13, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 11, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 24, 19, 0, 0, 0, 0, 0, 0, 0, 15, 0, 23, 11, 0, + 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 16, 12, + 0, 12, 0, 0, 0, 0, 21, 16, 0, 0, 0, 0, 14, 0, + 10, 0, 0, 34, 0, 31, 0, 13, 0, 0, 0, 9, 0, 12, + 13, 0, 0, 15, 14, 0, 0, 13, 9, 0, 0, 0, 0, 0, + 0, 0, 0, 13, 0, 13, 25, 13, 0, 6, 0, 12, 0, 0, + 0, 0, 23, 0, 0, 0, 6, 0, 0, 0, 13, 0, 0, 9, + 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 26, 0, 0, 15, + 0, 12, 0, 0, 0, 9, 0, 0, 0, 23, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 26, 2, 0, 18, 0, 0, 10, 0, 0, 0, + 0, 0, 13, 14, 0, 20, 0, 17, 0, 0, 0, 0, 0, 1, + 0, 0, 6, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, + 0, 0, 0, 2, 0, 0, 26, 0, 0, 0, 18, 0, 0, 0, + 23, 3, 13, 0, 0, 14, 13, 0, 0, 0, 3, 32, 0, 0, + 29, 0, 0, 0, 0, 17, 0, 18, 12, 0, 0, 13, 24, 0, + 0, 0, 3, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 13, 0, 23, 0, 0, 10, + 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 15, 10, 0, + 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 22, 0, + 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, + 0, 22, 0, 0, 16, 15, 0, 0, 0, 0, 11, 0, 0, 0, + 0, 0, 15, 12, 11, 0, 0, 0, 15, 25, 12, 0, 0, 0, + 0, 0, 0, 15, 15, 0, 30, 0, 0, 0, 24, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 10, 12, 14, 0, 13, 0, 0, + 0, 0, 0, 18, 0, 18, 15, 0, 0, 14, 0, 0, 20, 15, + 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 16, 0, 0, 0, 0, 0, 12, 22, 7, 0, + 0, 0, 0, 25, 0, 9, 0, 22, 15, 0, 0, 0, 7, 15, + 0, 9, 0, 2, 0, 9, 16, 19, 0, 0, 0, 0, 0, 0, + 0, 0, 24, 10, 14, 0, 0, 0, 0, 0, 0, 0, 0, 3, + 11, 0, 0, 0, 0, 0, 0, 0, 3, 0, 16, 3, 0, 0, + 20, 0, 0, 0, 0, 0, 0, 17, 15, 10, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 12, 19, 0, 0, 0, 0, + 0, 0, 0, 0, 12, 0, 11, 30, 47, 0, 0, 0, 0, 0, + 0, 25, 0, 0, 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, + 0, 13, 19, 0, 32, 0, 0, 12, 0, 0, 0, 0, 0, 0, + 15, 11, 0, 20, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 23, 0, 0, 0, 16, 17, 0, + 12, 0, 30, 18, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, + 0, 0, 0, 0, 23, 0, 0, 21, 0, 15, 10, 28, 0, 0, + 0, 0, 0, 19, 9, 11, 0, 14, 0, 0, 0, 0, 0, 27, + 0, 6, 14, 16, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, + 0, 35, 0, 15, 0, 17, 0, 0, 30, 27, 0, 17, 0, 19, + 9, 9, 0, 0, 0, 0, 0, 0, 0, 17, 0, 15, 0, 0, + 0, 19, 0, 16, 0, 8, 25, 0, 0, 21, 0, 0, 0, 0, + 13, 0, 0, 15, 19, 12, 0, 0, 0, 0, 0, 20, 0, 8, + 0, 0, 0, 0, 0, 0, 22, 14, 0, 25, 0, 0, 0, 0, + 8, 11, 0, 0, 0, 17, 0, 0, 0, 0, 39, 14, 0, 0, + 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 2, + 0, 0, 21, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 15, 0, 0, + 0, 17, 0, 10, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, + 14, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 16, 0, 0, 0, 0, 0, 30, 0, 0, 23, 8, 13, 0, + 0, 0, 2, 13, 0, 0, 0, 0, 23, 0, 0, 0, 10, 0, + 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 0, 22, + 0, 0, 0, 0, 23, 38, 13, 21, 0, 0, 0, 0, 24, 0, + 0, 0, 20, 0, 14, 0, 0, 0, 0, 0, 0, 28, 0, 15, + 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 11, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 31, 0, 0, 0, + 0, 0, 25, 0, 42, 0, 0, 22, 0, 0, 0, 0, 0, 20, + 18, 3, 0, 3, 0, 23, 12, 0, 0, 11, 16, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 13, 18, 0, 0, 0, 0, + 3, 28, 0, 0, 0, 0, 0, 12, 16, 0, 0, 0, 0, 0, + 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, + 0, 0, 0, 0, 0, 0, 36, 17, 0, 0, 14, 26, 17, 0, + 0, 22, 14, 0, 21, 0, 0, 0, 0, 20, 25, 9, 0, 16, + 27, 18, 0, 18, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 16, 0, 0, 26, 0, 0, 29, + 15, 0, 0, 0, 0, 16, 0, 14, 38, 0, 0, 0, 39, 33, + 23, 0, 0, 0, 0, 0, 0, 0, 18, 0, 14, 0, 0, 23, + 0, 17, 0, 3, 0, 0, 0, 17, 0, 0, 3, 0, 0, 29, + 0, 11, 0, 20, 25, 0, 15, 0, 0, 0, 23, 0, 14, 0, + 0, 24, 0, 32, 0, 13, 0, 13, 0, 0, 0, 0, 0, 0, + 0, 0, 27, 0, 21, 0, 0, 24, 16, 0, 20, 0, 0, 0, + 22, 0, 0, 17, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 26, 0, 0, 11, 0, 0, 23, 0, 0, 0, 18, 18, 0, + 0, 0, 0, 0, 0, 15, 0, 24, 0, 0, 12, 0, 18, 29, + 0, 0, 24, 0, 0, 0, 12, 0, 13, 0, 0, 0, 0, 0, + 0, 0, 18, 0, 0, 0, 0, 20, 0, 10, 0, 23, 0, 21, + 0, 0, 0, 29, 0, 21, 11, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 1, 0, 0, 13, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 18, 0, + 10, 13, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, + 14, 20, 0, 0, 0, 0, 0, 0, 24, 21, 0, 0, 0, 0, + 10, 0, 0, 10, 12, 0, 0, 26, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 9, 0, 0, 18, 0, 0, 0, 0, 0, 0, 37, + 0, 0, 25, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 29, 0, 24, 0, 2, 23, 0, + 0, 0, 0, 21, 0, 0, 0, 12, 0, 0, 0, 0, 22, 0, + 0, 0, 0, 26, 0, 24, 0, 19, 0, 12, 0, 0, 0, 0, + 0, 0, 9, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 22, 15, 0, 0, + 18, 12, 0, 15, 0, 12, 0, 0, 15, 0, 14, 0, 0, 0, + 0, 21, 0, 0, 0, 0, 0, 0, 0, 17, 16, 0, 24, 32, + 9, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 16, 0, + 19, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, + 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 18, 3, 13, 27, 0, 0, 14, 0, 0, 0, 0, + 0, 0, 0, 15, 0, 11, 0, 0, 0, 0, 0, 13, 15, 0, + 11, 24, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, + 11, 0, 0, 0, 0, 0, 0, 0, 17, 10, 0, 0, 0, 0, + 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 22, 0, 0, 8, 26, 0, 0, 28, 0, 0, 0, + 10, 16, 0, 0, 21, 0, 0, 0, 0, 0, 0, 16, 0, 0, + 0, 0, 0, 0, 0, 28, 0, 0, 41, 0, 15, 0, 24, 25, + 0, 19, 0, 0, 0, 0, 0, 5, 18, 15, 13, 0, 0, 0, + 0, 14, 17, 10, 16, 0, 0, 0, 18, 0, 0, 17, 0, 0, + 0, 15, 23, 0, 35, 0, 0, 0, 2, 0, 25, 18, 0, 0, + 9, 0, 0, 0, 0, 0, 0, 0, 0, 31, 22, 0, 23, 9, + 21, 27, 10, 0, 32, 34, 16, 0, 0, 10, 0, 0, 0, 13, + 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 12, 0, + 0, 12, 0, 0, 7, 0, 0, 26, 0, 7, 0, 11, 0, 0, + 0, 30, 0, 9, 0, 24, 0, 0, 0, 0, 0, 0, 0, 10, + 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 9, 0, 0, 0, + 23, 0, 0, 0, 0, 0, 0, 22, 14, 21, 0, 0, 0, 0, + 0, 14, 28, 0, 0, 0, 7, 0, 0, 20, 14, 0, 9, 0, + 20, 17, 0, 0, 0, 0, 21, 0, 0, 0, 15, 0, 0, 0, + 30, 11, 4, 0, 10, 10, 0, 9, 0, 0, 11, 0, 0, 0, + 0, 10, 0, 20, 11, 0, 12, 0, 0, 0, 0, 0, 2, 3, + 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 22, 0, 0, + 0, 0, 0, 0, 0, 0, 10, 10, 0, 8, 20, 0, 0, 0, + 0, 14, 0, 3, 0, 0, 0, 0, 0, 0, 9, 40, 0, 17, + 0, 0, 6, 0, 15, 0, 0, 0, 9, 10, 0, 15, 0, 0, + 10, 8, 14, 34, 0, 35, 0, 0, 0, 0, 0, 0, 13, 11, + 0, 12, 6, 0, 18, 0, 0, 22, 14, 7, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 16, 0, 0, 0, + 0, 18, 11, 25, 0, 0, 0, 6, 0, 0, 0, 11, 0, 0, + 0, 23, 0, 8, 0, 0, 0, 23, 0, 21, 13, 0, 0, 6, + 0, 16, 0, 0, 0, 0, 0, 24, 0, 0, 13, 20, 0, 0, + 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 25, 12, + 0, 0, 0, 0, 0, 31, 0, 0, 0, 10, 0, 0, 0, 26, + 0, 0, 0, 0, 0, 0, 0, 15, 9, 0, 0, 0, 0, 30, + 16, 0, 0, 0, 0, 0, 18, 0, 18, 0, 0, 15, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, + 27, 0, 0, 0, 0, 0, 0, 0, 13, 0, 10, 0, 0, 9, + 13, 0, 22, 0, 0, 0, 8, 0, 0, 37, 0, 12, 0, 15, + 17, 0, 2, 0, 0, 0, 0, 7, 0, 0, 11, 0, 12, 25, + 0, 0, 25, 0, 15, 0, 0, 0, 0, 25, 0, 28, 13, 0, + 0, 0, 0, 33, 23, 0, 12, 0, 0, 0, 0, 0, 0, 24, + 0, 22, 0, 14, 16, 0, 0, 30, 0, 14, 0, 0, 0, 34, + 0, 0, 13, 0, 19, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 30, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 16, + 0, 14, 42, 0, 28, 15, 6, 0, 0, 18, 0, 0, 0, 11, + 0, 11, 0, 0, 0, 13, 33, 0, 19, 18, 2, 11, 13, 0, + 0, 30, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 11, + 24, 0, 26, 18, 20, 26, 0, 0, 0, 17, 0, 30, 23, 0, + 0, 3, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 11, 23, + 6, 0, 24, 0, 0, 0, 0, 25, 0, 0, 0, 19, 0, 0, + 18, 22, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 14, 0, + 0, 18, 0, 0, 0, 11, 13, 0, 0, 0, 0, 0, 0, 0, + 0, 12, 0, 0, 0, 0, 0, 0, 12, 31, 0, 0, 35, 0, + 23, 0, 0, 0, 0, 0, 0, 3, 9, 29, 0, 0, 0, 0, + 0, 0, 12, 0, 4, 0, 6, 0, 0, 0, 0, 0, 20, 0, + 20, 0, 0, 0, 15, 0, 0, 14, 20, 0, 0, 0, 0, 0, + 0, 0, 6, 3, 27, 32, 4, 32, 0, 0, 3, 0, 6, 4, + 0, 0, 0, 0, 11, 0, 0, 8, 18, 10, 0, 0, 0, 0, + 0, 0, 20, 15, 14, 12, 0, 0, 0, 0, 30, 0, 0, 21, + 0, 0, 0, 0, 0, 0, 0, 12, 18, 0, 0, 13, 0, 0, + 0, 0, 14, 6, 18, 0, 24, 0, 3, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 22, 0, 0, 0, 16, + 0, 15, 15, 0, 0, 0, 25, 0, 0, 0, 0, 9, 0, 33, + 0, 23, 0, 0, 0, 20, 24, 0, 21, 31, 14, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 32, 9, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 22, 14, 0, 0, 0, 0, + 0, 0, 29, 0, 16, 0, 0, 0, 0, 13, 0, 24, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, + 0, 12, 26, 9, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 2, 0, 0, 15, 0, 15, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 1, 0, 18, + 0, 0, 0, 0, 19, 31, 21, 10, 0, 15, 0, 0, 0, 42, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 31, 34, 0, 19, 19, 15, 0, 0, 0, 37, 0, 2, 0, 0, + 0, 0, 0, 0, 0, 14, 0, 15, 0, 14, 0, 0, 0, 0, + 37, 0, 0, 0, 28, 0, 0, 11, 0, 34, 0, 0, 0, 0, + 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 15, 0, 11, + 0, 0, 0, 0, 0, 0, 15, 27, 0, 2, 10, 0, 0, 31, + 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, + 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 42, 0, + 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 34, 0, 24, 0, 0, 0, 26, 0, 13, 0, + 0, 22, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 19, 0, 0, 0, + 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 16, 0, + 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, + 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 21, 30, 0, 0, 0, 3, 15, 0, 4, 0, 0, 0, + 3, 19, 6, 4, 0, 0, 0, 0, 15, 17, 34, 25, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 14, 15, 0, 0, 15, 0, 0, + 0, 19, 0, 0, 0, 12, 0, 0, 19, 15, 0, 17, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 14, 18, 0, 0, 19, 22, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, + 0, 0, 14, 0, 0, 0, 25, 31, 14, 0, 0, 0, 0, 27, + 0, 12, 0, 0, 17, 0, 16, 0, 0, 20, 0, 17, 0, 0, + 0, 0, 0, 0, 27, 0, 0, 15, 0, 0, 0, 0, 22, 0, + 0, 16, 0, 20, 0, 0, 0, 18, 0, 20, 0, 0, 0, 14, + 21, 0, 19, 0, 11, 0, 0, 0, 0, 0, 14, 0, 0, 0, + 0, 0, 0, 29, 12, 0, 50, 11, 37, 13, 14, 0, 0, 0, + 0, 0, 0, 18, 0, 29, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, + 14, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 17, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 22, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 16, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 28, 0, + 32, 2, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 27, 0, + 0, 0, 0, 0, 0, 0, 41, 0, 22, 0, 0, 0, 22, 0, + 0, 0, 0, 15, 28, 0, 0, 12, 0, 0, 0, 0, 13, 0, + 15, 15, 0, 15, 0, 0, 23, 0, 27, 0, 13, 0, 0, 8, + 0, 0, 0, 0, 31, 9, 0, 0, 0, 20, 27, 0, 32, 0, + 0, 0, 0, 14, 7, 0, 0, 0, 0, 0, 0, 24, 0, 0, + 33, 0, 25, 18, 0, 0, 13, 22, 0, 6, 0, 17, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 15, 0, 26, 27, 13, 0, 0, 19, + 0, 0, 0, 0, 10, 0, 17, 13, 26, 0, 0, 0, 0, 0, + 0, 19, 32, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 24, 19, 0, 0, 31, 12, 0, 20, 0, 0, + 17, 15, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 14, + 0, 15, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 15, 0, + 25, 21, 12, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 14, 23, 0, 0, 0, 0, 0, 0, 23, 0, 35, + 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 2, 0, 20, + 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 31, 11, 0, 0, + 11, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 37, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, + 0, 0, 9, 18, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 14, 15, 35, 0, 0, 0, 15, 0, 13, 0, + 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 30, + 0, 27, 0, 0, 14, 15, 17, 0, 0, 0, 0, 0, 0, 0, + 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 9, 0, 0, 0, 0, 0, 12, 0, 0, 7, 0, + 0, 0, 9, 0, 0, 0, 0, 15, 13, 0, 0, 0, 0, 32, + 0, 0, 0, 0, 19, 0, 0, 39, 0, 0, 0, 2, 0, 0, + 0, 15, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 25, + 35, 0, 0, 15, 0, 13, 0, 0, 0, 0, 16, 0, 29, 11, + 0, 0, 0, 0, 0, 11, 0, 26, 0, 11, 40, 0, 11, 0, + 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 19, 0, 0, 15, + 13, 0, 18, 29, 16, 20, 0, 0, 0, 0, 0, 0, 0, 15, + 0, 0, 28, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 12, 0, 12, 0, 0, 0, 0, 0, 19, 18, 0, + 0, 0, 16, 13, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 12, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, + 0, 10, 0, 25, 19, 0, 0, 21, 24, 0, 0, 0, 0, 0, + 13, 14, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, + 0, 0, 0, 0, 31, 0, 0, 0, 14, 35, 0, 0, 0, 0, + 22, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 28, 0, 0, 14, 16, 0, 0, 0, 30, + 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, + 19, 0, 0, 0, 0, 0, 34, 0, 0, 0, 2, 0, 0, 24, + 0, 0, 0, 25, 12, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 25, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 8, 0, 14, 15, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 28, 0, 0, 0, 0, 13, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 11, 7, 0, 11, 0, + 0, 0, 0, 0, 0, 11, 0, 0, 14, 15, 10, 10, 0, 0, + 12, 0, 0, 0, 0, 0, 3, 0, 13, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, + 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 14, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 0, 11, 0, 0, 15, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, + 0, 32, 0, 0, 0, 3, 25, 0, 0, 26, 0, 0, 0, 0, + 27, 24, 0, 0, 0, 15, 0, 0, 0, 23, 0, 0, 0, 0, + 20, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, + 0, 0, 0, 25, 0, 22, 0, 26, 0, 0, 0, 0, 5, 0, + 0, 0, 0, 0, 0, 0, 0, 19, 8, 0, 16, 0, 0, 0, + 0, 23, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 43, 0, + 31, 33, 0, 0, 15, 0, 16, 0, 32, 0, 0, 0, 22, 0, + 31, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 22, 0, + 25, 0, 0, 0, 0, 0, 14, 0, 20, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 27, 27, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 29, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 73, 74, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, + 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 25, 0, 16, 0, 0, 0, 33, + 0, 24, 0, 21, 13, 0, 0, 0, 9, 0, 0, 2, 0, 0, + 0, 0, 0, 13, 12, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 31, + 20, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, + 0, 0, 22, 0, 0, 0, 0, 0, 0, 31, 0, 0, 3, 15, + 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 15, + 0, 0, 0, 0, 16, 0, 0, 0, 0, 24, 0, 22, 0, 0, + 0, 0, 18, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 18, 0, 0, 15, 0, 0, 23, 20, 0, 0, + 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, + 0, 0, 11, 0, 0, 0, 18, 0, 0, 0, 15, 0, 0, 0, + 0, 19, 0, 0, 0, 33, 18, 0, 0, 0, 0, 0, 0, 0, + 22, 14, 0, 0, 35, 0, 0, 0, 0, 0, 0, 38, 24, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 26, 0, 0, + 35, 0, 10, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 21, 14, 0, 0, 23, 0, 21, 0, 0, 0, + 0, 22, 0, 0, 0, 25, 0, 0, 0, 0, 14, 17, 0, 0, + 0, 0, 0, 0, 0, 14, 0, 25, 0, 0, 14, 0, 0, 0, + 0, 0, 0, 16, 0, 0, 0, 0, 28, 0, 8, 22, 0, 0, + 0, 18, 0, 43, 0, 0, 0, 0, 0, 0, 0, 28, 0, 29, + 0, 24, 29, 0, 0, 14, 0, 0, 0, 0, 23, 0, 0, 0, + 16, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, + 27, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 8, 0, 11, 18, 0, 0, 22, 2, 0, 0, 0, 0, + 0, 0, 8, 0, 18, 0, 30, 0, 0, 12, 0, 0, 0, 0, + 10, 0, 0, 0, 0, 0, 0, 22, 0, 24, 0, 38, 0, 0, + 0, 18, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, + 0, 0, 0, 14, 0, 20, 31, 0, 23, 0, 0, 0, 0, 11, + 0, 0, 0, 0, 13, 0, 0, 0, 0, 14, 0, 8, 0, 21, + 14, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 23, 14, 11, 12, 0, 0, 30, 0, 0, 0, + 26, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 36, 0, 13, 0, 26, 0, 0, 0, 0, 0, 19, + 0, 0, 28, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 26, 0, 3, 0, 0, 0, 30, 0, 0, 0, 0, 7, 0, + 15, 15, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 30, + 0, 0, 0, 0, 0, 0, 11, 0, 14, 12, 9, 0, 0, 0, + 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, + 18, 0, 0, 0, 16, 19, 0, 0, 0, 0, 9, 0, 0, 22, + 0, 0, 34, 14, 0, 0, 0, 19, 0, 28, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 26, 0, + 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, + 11, 24, 0, 0, 0, 28, 0, 0, 0, 13, 18, 0, 0, 34, + 0, 0, 11, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, + 0, 0, 21, 0, 0, 28, 0, 0, 0, 0, 18, 0, 0, 0, + 0, 31, 34, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 4, + 0, 0, 38, 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 29, + 0, 0, 0, 31, 0, 0, 0, 24, 0, 0, 0, 17, 0, 18, + 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 18, 0, 0, + 0, 0, 0, 0, 0, 6, 10, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 0, 0, 0, 0, 0, 0, 18, 16, 0, 0, 0, + 0, 0, 0, 0, 0, 17, 0, 0, 30, 0, 0, 0, 0, 0, + 0, 30, 0, 0, 0, 18, 0, 26, 0, 10, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, + 43, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, + 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, + 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 35, 0, 0, 16, 0, 0, 13, 0, 0, 24, 0, 0, + 0, 0, 3, 3, 0, 0, 0, 0, 24, 30, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 30, 0, 11, 15, 0, 0, 0, + 0, 0, 17, 14, 0, 20, 0, 2, 0, 0, 6, 0, 0, 0, + 9, 0, 19, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 0, 11, 15, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, + 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 37, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, - 0, 0, 0, 0, 23, 27, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 17, 0, - 0, 24, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 4, 24, 0, 0, 0, 0, 0, 0, 26, 0, 28, 0, 0, - 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, - 36, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 24, 0, 0, 0, 30, 0, 0, 7, 0, 4, 0, 0, - 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 7, 0, 0, 0, - 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, - 11, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 9, - 0, 0, 0, 31, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 13, 6, 0, 23, 24, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, - 0, 22, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 27, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 14, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, - 0, 28, 29, 14, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 28, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, - 0, 0, 0, 0, 18, 24, 0, 36, 11, 0, 0, 0, 0, 22, - 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 30, - 0, 0, 15, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, + 28, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 30, 0, 0, + 0, 0, 0, 0, 0, 2, 0, 0, 0, 28, 0, 0, 0, 0, + 24, 0, 0, 32, 0, 0, 0, 0, 0, 0, 36, 18, 0, 0, + 0, 0, 0, 0, 0, 0, 6, 0, 0, 12, 36, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 14, 0, 0, 0, + 24, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, + 0, 0, 8, 0, 0, 0, 0, 10, 0, 17, 24, 22, 0, 0, + 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 21, 14, + 0, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 29, 0, 0, 16, 0, 0, 0, 27, 0, 0, + 0, 20, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 12, 0, 0, 0, 21, 0, 0, 0, 0, 30, 0, 0, 10, + 0, 0, 0, 0, 0, 23, 0, 27, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 30, 0, 0, 36, 0, 0, 0, 0, + 15, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 13, 0, + 0, 0, 0, 0, 29, 19, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 7, 0, 36, 0, 0, 0, 0, 0, 0, 34, 0, + 0, 15, 30, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 0, 0, 7, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 27, 17, 0, 22, 0, 0, 0, 11, 0, 0, 0, + 0, 0, 0, 23, 0, 0, 3, 0, 0, 0, 13, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, + 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 0, 0, 0, 33, 29, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 21, 0, 0, 0, 0, + 0, 0, 15, 0, 0, 24, 0, 0, 0, 0, 0, 0, 30, 0, + 22, 0, 0, 29, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, + 22, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 29, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 11, + 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 30, 0, 0, 27, 27, 0, 0, 0, 11, 31, + 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 19, 0, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 23, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 8, 0, 23, 0, 0, 0, 0, 0, + 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 7, 0, + 0, 15, 16, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 22, + 0, 0, 0, 0, 28, 0, 19, 0, 0, 23, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 17, 0, 0, 0, + 0, 7, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, + 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, + 0, 0, 0, 0, 11, 0, 0, 28, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 72, 0, 0, 0, + 15, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 25, 0, + 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, + 0, 0, 0, 0, 0, 16, 0, 0, 16, 0, 17, 0, 25, 0, + 0, 0, 0, 0, 28, 0, 29, 35, 23, 0, 0, 0, 0, 0, + 0, 0, 0, 27, 0, 0, 15, 0, 0, 24, 0, 0, 0, 0, + 0, 24, 0, 29, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 12, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 31, + 0, 0, 0, 0, 7, 0, 0, 0, 13, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, + 0, 0, 0, 23, 0, 0, 0, 0, 13, 0, 0, 0, 14, 0, + 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 25, 0, 0, + 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 25, 0, 0, + 0, 0, 0, 24, 0, 19, 0, 25, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 23, 0, + 10, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 7, 0, 0, + 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 5, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 33, + 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 13, 33, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 24, 23, + 0, 0, 25, 0, 33, 0, 0, 2, 0, 0, 0, 0, 0, 0, + 0, 30, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 35, 0, 0, 13, 0, 15, 0, 0, 0, 0, 0, + 0, 0, 0, 35, 0, 0, 0, 0, 28, 0, 0, 0, 16, 0, + 0, 31, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, + 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 13, 0, + 15, 28, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 15, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 25, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 9, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 8, 0, 0, 0, + 0, 0, 11, 0, 0, 0, 0, 0, 17, 0, 0, 0, 35, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 26, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, + 0, 0, 16, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 6, 0, 32, 0, 9, 33, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, + 0, 0, 0, 0, 39, 0, 0, 26, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 2, 0, 0, + 0, 10, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 24, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 24, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 22, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, + 0, 10, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 24, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, + 0, 23, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 11, 0, 0, 0, 0, 32, 22, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 0, 0, 26, 0, 0, 14, 0, + 0, 24, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 16, 27, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 22, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 34, 26, 0, 0, 0, 0, 0, + 0, 0, 25, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, + 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 20, 0, + 23, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 21, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 25, 36, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 3, 15, 0, 0, 35, 0, 0, 0, 0, 11, - 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, - 24, 27, 32, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 23, 16, 0, 0, 0, 0, 0, 0, 0, - 19, 0, 0, 0, 0, 0, 0, 0, 0, 22, 28, 0, 23, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, - 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 16, 0, 39, 0, 0, 0, 0, 0, 0, 0, 24, - 0, 0, 0, 0, 22, 0, 28, 0, 0, 0, 27, 0, 0, 0, - 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 13, 0, 0, - 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 22, 0, 0, 0, 20, 0, 0, 0, 10, 0, 0, 0, 16, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 7, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 14, 0, 11, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 17, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 17, 0, 33, 0, 0, 0, 0, 35, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 28, 0, 25, 0, 0, 0, 0, 0, 0, - 0, 0, 10, 0, 29, 0, 0, 0, 17, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, - 18, 7, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 25, - 0, 5, 0, 0, 23, 0, 16, 0, 0, 29, 0, 0, 0, 0, - 0, 0, 0, 0, 24, 0, 0, 14, 0, 15, 22, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 7, 0, 0, - 0, 0, 0, 0, 0, 0, 21, 0, 0, 19, 0, 0, 0, 0, - 8, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 25, 19, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 35, 0, 0, 22, 0, 0, 0, 0, 11, 0, - 43, 0, 0, 0, 23, 0, 0, 23, 0, 0, 0, 0, 0, 0, - 26, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 28, 0, 0, - 0, 0, 0, 22, 0, 0, 18, 0, 15, 0, 0, 0, 0, 0, - 0, 28, 17, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, - 0, 0, 22, 25, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 2, 0, - 24, 0, 6, 0, 0, 18, 23, 0, 0, 0, 0, 0, 0, 19, - 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 13, 0, - 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 30, 0, 15, 0, 20, 0, 6, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 16, 0, 16, 0, 0, 0, 0, - 0, 0, 0, 22, 0, 0, 0, 25, 0, 0, 22, 29, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 29, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, - 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 6, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 35, 0, 29, - 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 33, 0, - 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 24, 0, - 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 32, 0, - 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, - 27, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 24, 0, 28, 9, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 37, 0, 0, - 0, 0, 0, 0, 0, 22, 25, 0, 0, 25, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 15, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 28, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, + 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 13, 17, 0, 0, 0, 0, 0, 0, 11, 0, 0, 31, + 29, 0, 25, 17, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 13, 0, 37, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, + 16, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 22, 0, 0, + 6, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 25, 0, 0, 0, + 0, 0, 17, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 17, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, + 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 23, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, + 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 13, 16, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 6, - 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 13, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 19, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 22, 24, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, + 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, + 0, 0, 0, 0, 0, 7, 0, 0, 0, 14, 0, 0, 0, 0, + 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 37, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 36, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 27, 0, 0, + 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 17, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 17, 0, 0, 14, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 37, 0, 0, 0, 14, 0, 0, 0, 0, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, + 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 17, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 17, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 14, 0, 0, 0, + 0, 17, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, + 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, + 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 17, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 13, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 32, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, + 35, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 23, 7, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, + 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 28, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 23, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, + 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, + 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 0, 15, 0, 0, 0, 0, 0, + 28, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 16, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, + 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, + 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 14, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, + 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, + 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 7, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 17, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, - 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, - 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 16, 0, 23, 0, 0, 0, 0, 0, 13, - 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, - 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 13, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, - 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 37, 0, 22, 0, 0, 0, 19, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 25, 17, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2, 0, 27, 6, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 16, 0, 3, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 13, 0, 0, 0, 17, 30, 0, 0, 0, 0, 14, 0, 0, - 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 43, 17, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, - 0, 0, 0, 0, 31, 0, 24, 36, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 40, 15, 0, 0, 0, 25, - 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 22, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, - 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 21, 0, 16, 0, 0, 0, 0, 10, 0, 0, 15, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, - 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 17, 0, - 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, - 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, - 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 0, 0, 70, 0, 15, 0, 0, 28, 0, - 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 16, 0, 13, - 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 29, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 31, 25, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, - 22, 17, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, - 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 36, 0, 0, 20, 24, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 24, 0, 0, 22, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 14, 0, 0, 0, 0, 0, 9, 31, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 10, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 29, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, - 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 17, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 13, 0, 28, 0, 0, 33, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 15, 0, 17, - 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, - 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, - 19, 0, 16, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 27, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 14, 14, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, - 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 14, 0, - 0, 0, 0, 24, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 35, 0, - 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, - 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, - 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 28, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 14, 0, 0, 15, 17, 0, 0, 0, 0, 0, 17, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 22, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, + 0, 0, 4, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, + 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 17, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 24, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, - 0, 35, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 15, 0, 37, 0, 27, 0, 0, + 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, + 0, 0, 17, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 26, 15, + 0, 0, 0, 0, 0, 0, 0, 7, 0, 15, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 14, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 17, 0, 17, 0, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 28, 31, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 32, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 18, 0, 0, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 14, 0, 38, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 7, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 16, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, - 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -981,17 +1105,158 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 16, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, + 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1002,322 +1267,29 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 23, 0, 0, 0, 0, 27, 0, 0, 0, 0, - 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 28, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 17, 0, 0, 0, 0, 28, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 15, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, - 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 0, 0, 7, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 14, 0, 0, 0, 0, 6, 17, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 15, 0, - 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, - 0, 0, 0, 28, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, - 15, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 15, 0, 28, 0, 7, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 28, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 30, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 34, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 6, 15, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 36, - 0, 0, 0, 0, 25, 4, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 27, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, - 0, 0, 0, 17, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 17, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 14, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 15, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, - 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 14, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, - 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 15, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, - 20, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1327,9 +1299,11 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1337,7 +1311,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1348,7 +1321,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1359,50 +1331,12 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1422,463 +1356,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1894,6 +1372,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1923,6 +1402,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1933,6 +1413,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1943,7 +1424,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1971,6 +1451,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1994,13 +1475,13 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2012,10 +1493,10 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2025,6 +1506,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2041,20 +1523,26 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 36, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2067,7 +1555,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2092,6 +1579,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2296,13 +1784,13 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2332,18 +1820,22 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2371,6 +1863,8 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2382,6 +1876,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2444,6 +1939,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2498,6 +1994,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2552,4522 +2049,4780 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 31 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 31 }; static const struct grib_keys_hash wordlist[] = { - {""}, {""}, {""}, {""}, {""}, - {"n",1307}, {""}, - {"t",2116}, - {"nd",1317}, - {"td",2126}, - {"nt",1335}, - {"nnn",1321}, - {"na",1310}, - {"ed",712}, + {"n",1309}, + {"nd",1319}, + {"nnn",1323}, + {"td",2129}, + {"t",2119}, + {"nt",1337}, + {"ed",714}, + {"na",1312}, + {"m",1190}, {""}, - {"sd",1909}, + {"min",1272}, {""}, - {"m",1188}, + {"sd",1912}, + {""}, + {"data",619}, {""}, {""}, + {"ident",948}, + {"date",637}, + {""}, + {"name",1313}, + {""}, + {"one",1505}, + {"time",2155}, + {""}, {""}, + {"domain",697}, + {""}, {""}, + {"enorm",757}, + {"sort",2037}, + {"edition",715}, + {"metadata",1268}, + {""}, + {"mars",1193}, + {""}, + {"stream",2092}, + {""}, + {"names",1318}, + {""}, + {"iteration",1019}, + {"param",1614}, + {""}, + {"oper",1517}, + {""}, {""}, + {"dimension",680}, + {""}, {""}, {""}, + {"eps",762}, + {"spare",2054}, + {""}, {""}, + {"present",1665}, + {""}, + {"assertion",311}, + {"parameter",1620}, + {""}, + {"opttime",1524}, + {"cat",378}, + {""}, {""}, + {"step",2081}, + {"points",1654}, + {""}, {""}, {""}, {""}, {""}, + {"year",2376}, + {""}, {""}, {""}, + {"stepZero",2091}, + {"centre",396}, + {"core",594}, + {"true",2188}, + {"parameters",1628}, + {"partitions",1633}, + {"const",567}, + {"timerepres",2168}, + {"second",1913}, + {""}, + {"rectime",1751}, + {"minute",1274}, + {"direction",683}, + {""}, {""}, + {"section",1935}, + {"minimum",1273}, + {"type",2199}, + {"units",2248}, + {"restricted",1792}, + {""}, {""}, + {"radius",1726}, + {"system",2117}, + {""}, {""}, {""}, + {"instrument",975}, + {""}, {""}, {""}, + {"status",2080}, {"Di",31}, - {"data",617}, - {"min",1270}, - {""}, {""}, {""}, {""}, - {"date",635}, {""}, - {"ident",946}, + {"leadtime",1080}, {""}, {""}, - {"name",1311}, - {""}, {""}, {""}, - {"time",2152}, - {""}, {""}, {""}, - {"one",1503}, + {"dy",704}, + {""}, + {"radials",1725}, + {""}, + {"day",648}, + {"precision",1660}, + {"dataTime",634}, + {"hdate",921}, + {"dateTime",646}, + {""}, + {"statistics",2079}, + {"three",2142}, + {""}, {"Dstart",39}, + {"method",1269}, {""}, - {"mars",1191}, - {"names",1316}, + {"dataDate",622}, + {"process",1695}, + {"count",608}, {""}, - {"dataDate",620}, - {"metadata",1266}, + {"marsDir",1197}, {""}, - {"sort",2034}, + {"uco",2240}, {""}, - {"eps",760}, - {"domain",695}, - {""}, - {"stream",2089}, - {""}, {""}, {""}, - {"edition",713}, - {"cat",379}, - {"enorm",755}, - {"param",1612}, - {""}, {""}, - {"spare",2051}, - {""}, - {"marsDir",1195}, - {""}, {""}, - {"step",2078}, - {"present",1662}, - {""}, {""}, - {"oper",1515}, - {"iteration",1017}, - {""}, - {"dimension",678}, - {""}, - {"masterDir",1224}, - {""}, - {"points",1652}, - {""}, - {"assertion",312}, - {""}, {""}, {""}, - {"opttime",1522}, - {"centre",397}, - {"marsDomain",1196}, - {"const",566}, - {""}, {""}, - {"parameter",1618}, - {"true",2185}, - {"core",592}, - {"second",1910}, - {""}, {""}, - {"units",2245}, - {""}, {""}, - {"rectime",1748}, - {"parameters",1626}, - {"minute",1272}, - {"section",1932}, - {""}, - {"status",2077}, - {"partitions",1631}, - {"timerepres",2165}, - {"radius",1723}, - {""}, {""}, - {"year",2373}, - {""}, - {"restricted",1789}, - {"direction",681}, - {"stepZero",2088}, - {""}, - {"minimum",1271}, - {"statistics",2076}, - {"radials",1722}, - {"dataTime",632}, - {"leadtime",1078}, - {"type",2196}, - {"dateTime",644}, - {"hdate",919}, - {"instrument",973}, - {"notDecoded",1334}, - {""}, - {"system",2114}, - {"ucs",2238}, + {"ucs",2241}, {""}, {""}, {""}, {""}, - {"three",2139}, - {""}, {""}, {""}, {""}, - {"process",1692}, + {"masterDir",1226}, + {""}, {""}, {""}, {""}, {""}, + {"correction",599}, + {"marsDomain",1198}, + {"phase",1647}, + {""}, {""}, {""}, {""}, {""}, + {"product",1697}, + {""}, {""}, + {"yFirst",2374}, + {""}, {""}, + {"char",417}, + {"latitude",1046}, + {""}, {""}, + {"class",420}, + {"dataStream",632}, {""}, - {"precision",1658}, - {"count",606}, + {"total",2170}, + {"pl",1651}, + {"model",1290}, + {"normal",1326}, + {"landtype",1038}, + {"hundred",940}, {""}, - {"isSens",1002}, - {"method",1267}, - {""}, {""}, {""}, - {"two",2194}, - {"class",421}, - {"phase",1645}, + {"million",1271}, + {"isSens",1004}, + {"hour",932}, + {"marsStream",1218}, + {"consensus",565}, + {"latitudes",1076}, + {""}, {""}, + {"dummy",699}, + {""}, {""}, + {"dataType",635}, {""}, - {"uco",2237}, + {"discipline",689}, + {"endStep",749}, + {"notDecoded",1336}, + {"grid",899}, + {""}, + {"thousand",2141}, + {""}, {""}, + {"operStream",1518}, + {""}, + {"marsType",1221}, + {"refdate",1757}, + {""}, + {"range",1731}, {""}, {""}, {""}, - {"dataStream",630}, - {""}, {""}, {""}, - {"dy",702}, - {"pl",1649}, + {"marsStep",1217}, + {"startStep",2073}, + {"origin",1529}, + {"identifier",952}, {"Dy",43}, - {""}, {""}, - {"day",646}, + {""}, {""}, {""}, {""}, {""}, + {"ieeeFloats",953}, {""}, - {"char",418}, - {"endStep",747}, - {""}, {""}, - {"latitude",1044}, - {"total",2167}, - {"marsStream",1216}, + {"stepType",2087}, {""}, - {"product",1694}, - {""}, {""}, {""}, - {"model",1288}, + {"month",1297}, {""}, - {"correction",597}, - {"grid",897}, - {"latitudes",1074}, - {"consensus",564}, - {"conceptDir",558}, - {"normal",1324}, - {"startStep",2070}, - {"marsStep",1215}, - {"hundred",938}, - {"million",1269}, + {"temperature",2131}, + {"reportType",1771}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"elementsTable",721}, + {"dummyc",702}, + {"varno",2297}, {""}, - {"range",1728}, + {"partitionTable",1632}, + {""}, {""}, {""}, {""}, {""}, + {"reserved",1775}, + {"version",2302}, + {"country",612}, {""}, - {"discipline",687}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"hour",930}, - {"landtype",1036}, - {"operStream",1516}, - {""}, {""}, - {"dataType",633}, - {""}, {""}, - {"thousand",2138}, - {""}, {""}, - {"origin",1527}, + {"codeType",545}, + {"oceanStream",1468}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"TT",234}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"marsType",1219}, - {""}, {""}, {""}, {""}, - {"reserved",1772}, - {""}, - {"varno",2294}, - {"month",1295}, - {"version",2299}, - {"yFirst",2371}, - {"standardDeviation",2063}, - {"stepType",2084}, + {"conceptDir",557}, {""}, {""}, {""}, - {"oceanStream",1466}, - {"elementsTable",719}, - {"localDate",1116}, - {"dummy",697}, + {"reference",1758}, {""}, - {"localDir",1124}, + {"file",841}, + {"efiOrder",719}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"section8",1974}, + {""}, + {"fcperiod",838}, + {"false",834}, + {"dataOrigin",626}, {""}, {""}, {""}, {""}, - {"temperature",2128}, + {"Xo",267}, + {"standardDeviation",2066}, + {"endTimeStep",751}, {""}, - {"endTimeStep",749}, + {"signature",2020}, + {""}, {""}, {""}, {""}, {""}, + {"local",1117}, + {""}, {""}, {""}, + {"unitsFactor",2254}, + {"rectimeDay",1752}, + {"marsQuantile",1214}, + {"categories",379}, + {"eleven",723}, + {"platform",1652}, + {"eight",720}, + {""}, + {"Xp",268}, {""}, {""}, - {"partitionTable",1630}, + {"two",2197}, + {"dimensionType",682}, + {""}, {""}, {""}, {""}, {""}, + {"threshold",2143}, + {"channel",415}, + {"matchSort",1233}, + {"elevation",722}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"localTime",1145}, {""}, - {"dummyc",700}, - {"windSpeed",2343}, - {""}, {""}, {""}, - {"rectimeDay",1749}, + {"localDir",1126}, {""}, + {"hideThis",926}, + {""}, + {"diagnostic",676}, + {""}, {""}, + {"indicatorOfParameter",963}, + {"localDate",1118}, + {""}, {""}, {""}, {""}, + {"isOctahedral",1000}, + {""}, {""}, {""}, {""}, {""}, {"TS",232}, - {""}, {""}, - {"endDescriptors",726}, - {"reportType",1768}, - {"eleven",721}, - {"codeType",546}, - {"ieeeFloats",951}, - {"section8",1971}, - {""}, {""}, {""}, {""}, - {"optionalData",1521}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"longitude",1151}, {""}, - {"signature",2017}, - {"recDateTime",1745}, - {"eight",718}, - {"local",1115}, - {"windDirection",2332}, - {""}, {""}, {""}, {""}, - {"userDateStart",2272}, - {""}, {""}, - {"categories",380}, - {""}, {""}, - {"marsQuantile",1212}, - {""}, {""}, {""}, - {"matchSort",1231}, + {"isFillup",998}, + {"band",323}, {""}, - {"elevation",720}, - {""}, - {"channel",416}, + {"coefsFirst",549}, {""}, {""}, {""}, {""}, {""}, - {"country",610}, - {""}, {""}, {""}, - {"dataOrigin",624}, - {"hideThis",924}, + {"dataSelection",631}, {""}, {""}, - {"diagnostic",674}, - {"localTime",1143}, - {"band",324}, + {"g",876}, {""}, - {"g",874}, + {"gridType",908}, + {""}, + {"longitudes",1181}, {""}, {""}, {""}, - {"threshold",2140}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"centreDescription",398}, + {"values",2285}, + {"recDateTime",1748}, + {""}, + {"rdbtime",1737}, + {"levtype",1101}, + {"offset",1470}, + {""}, + {"countTotal",611}, {""}, {""}, - {"dataSelection",629}, - {"values",2282}, - {""}, - {"refdate",1754}, - {""}, - {"waveDomain",2322}, + {"anoffset",306}, + {"userTimeStart",2279}, + {""}, {""}, + {"levelist",1099}, + {"levels",1100}, + {""}, {""}, + {"aerosolType",294}, + {""}, {""}, + {"userDateStart",2275}, {""}, {""}, {""}, {""}, - {"levels",1098}, + {"padding",1543}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"bitmap",361}, + {""}, + {"centreDescription",397}, + {"codeFigure",544}, + {""}, {""}, + {"unitOfTime",2245}, + {"average",315}, + {""}, {""}, + {"typicalTime",2236}, {""}, {""}, {""}, - {"longitude",1149}, + {"isSatellite",1002}, + {"productType",1702}, + {"statisticalProcess",2077}, {""}, - {"levelist",1097}, - {""}, {""}, - {"rdbtime",1734}, + {"number",1338}, {""}, - {"typicalDate",2226}, - {""}, {""}, - {"unitsFactor",2251}, + {"typicalDate",2229}, + {"pv",1711}, + {"localDay",1120}, + {"typicalDay",2231}, + {""}, {""}, {""}, + {"laplacianOperator",1039}, + {"spectralType",2064}, {""}, - {"longitudes",1179}, - {"identifier",950}, - {"userTimeStart",2276}, - {"pv",1708}, - {"dataKeys",622}, - {"padding",1541}, + {"level",1096}, + {"forecastperiod",868}, + {"mybits",1308}, + {""}, {""}, {""}, + {"fcmonth",837}, {""}, {""}, {""}, {""}, - {"levtype",1099}, - {"gridType",906}, - {""}, - {"average",316}, - {""}, {""}, {""}, - {"bitmap",362}, - {""}, {""}, - {"countTotal",609}, - {"localDay",1118}, {"TScalc",233}, - {""}, {""}, - {"file",839}, + {"statisticalProcessesList",2078}, {""}, - {"isSatellite",1000}, - {""}, - {"isOctahedral",998}, - {"indicatorOfParameter",961}, - {""}, - {"false",832}, - {""}, - {"level",1094}, - {"isFillup",996}, - {""}, {""}, {""}, {""}, {""}, - {"reference",1755}, + {"windSpeed",2346}, {""}, {""}, {""}, - {"typicalDay",2228}, + {"flags",856}, + {""}, {""}, {""}, {""}, + {"fgTime",840}, {""}, - {"number",1336}, - {""}, {""}, - {"statisticalProcess",2074}, - {""}, {""}, {""}, {""}, - {"localDateTime",1117}, - {"fcperiod",836}, - {"lev",1092}, - {""}, {""}, - {"nlev",1320}, - {""}, {""}, {""}, - {"mybits",1306}, - {""}, - {"aerosolType",295}, - {""}, {""}, {""}, - {"typicalTime",2233}, - {""}, {""}, - {"KS",97}, - {"tubeDomain",2192}, - {"unitsDecimalScaleFactor",2249}, - {""}, {""}, - {"statisticalProcessesList",2075}, - {""}, {""}, {""}, {""}, - {"spectralType",2061}, - {"platform",1650}, - {"parameterDiscipline",1621}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"efiOrder",717}, - {"productType",1699}, - {""}, {""}, - {"codeFigure",545}, - {""}, {""}, - {"obstype",1463}, - {""}, {""}, {""}, {""}, {""}, - {"rdbtimeDate",1735}, - {""}, {""}, - {"oneThousand",1514}, - {""}, {""}, {""}, {""}, - {"startTimeStep",2072}, - {""}, {""}, {""}, {""}, - {"runwayState",1848}, - {"satelliteSeries",1853}, - {"gg",886}, - {"K",96}, - {"fgDate",837}, - {""}, {""}, {""}, - {"laplacianOperator",1037}, - {""}, - {"userDateTimeStart",2274}, - {""}, - {"ccsdsFlags",386}, - {""}, {""}, {""}, {""}, - {"avg",320}, - {""}, - {"marsStartStep",1214}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"rdbType",1732}, - {"overlayTemplate",1535}, - {""}, {""}, {""}, {""}, {""}, - {"rdbtimeDay",1736}, - {"levelType",1096}, - {""}, {""}, {""}, - {"referenceDate",1756}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"coordinatesPresent",591}, - {"angleDivisor",301}, - {"dataFlag",621}, - {""}, - {"rdbDateTime",1730}, - {"coefsFirst",550}, - {""}, {""}, {""}, {""}, {""}, - {"rdbtimeTime",1741}, - {""}, - {"longitudesList",1180}, - {""}, {""}, {""}, {""}, - {"flags",854}, - {""}, {""}, {""}, {""}, - {"localSecond",1138}, - {""}, {""}, {""}, - {"validityTime",2281}, - {"fgTime",838}, - {""}, {""}, - {"localDecimalScaleFactor",1119}, - {""}, {""}, {""}, {""}, - {"validityDate",2280}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"fcmonth",835}, - {""}, - {"setDecimalPrecision",2007}, - {""}, {""}, {""}, {""}, - {"unitOfTime",2242}, - {""}, {""}, {""}, {""}, {""}, - {"reservedOctet",1777}, - {""}, {""}, {""}, {""}, - {"laplacianOperatorIsSet",1038}, - {"forecastperiod",866}, + {"obstype",1465}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"freeFormData",869}, - {"incrementOfLengths",955}, - {""}, - {"categoryType",381}, + {"fgDate",839}, {""}, {""}, {""}, {""}, - {"forecastTime",865}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"oneThousand",1516}, {""}, - {"aerosolpacking",297}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"firstDimension",841}, - {"forecastSteps",864}, + {"headersOnly",922}, + {""}, {""}, + {"forecastTime",867}, {""}, {""}, {""}, {""}, {""}, - {"Xo",268}, - {"offset",1468}, - {"ensembleSize",758}, + {"lev",1094}, + {"nlev",1322}, + {""}, {""}, + {"ccsdsFlags",385}, + {""}, {""}, + {"zero",2383}, {""}, - {"Xp",269}, - {""}, {""}, {""}, {""}, - {"anoffset",307}, - {"verticalDomainTemplate",2309}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"observedData",1462}, - {""}, {""}, {""}, {""}, {""}, - {"Ni",194}, - {""}, {""}, {""}, - {"Nr",196}, - {""}, {""}, {""}, - {"lengthDescriptors",1083}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"periodOfTime",1641}, - {""}, {""}, - {"oldSubtype",1502}, - {""}, {""}, {""}, - {"latitudeSexagesimal",1071}, - {"flag",849}, - {"longitudeOfCentrePoint",1153}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"global",887}, - {"newSubtype",1319}, - {"decimalScaleFactor",654}, - {""}, {""}, - {"gridDefinition",899}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"coefsSecond",551}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"localFlag",1126}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"localDefinition",1122}, - {"referenceStep",1763}, + {"overlayTemplate",1537}, {""}, {""}, {""}, {""}, {""}, {""}, - {"LaD",105}, - {""}, {""}, {""}, - {"visibility",2313}, + {"periodOfTime",1643}, {""}, {""}, {""}, + {"zeros",2384}, + {""}, {""}, {""}, {""}, {""}, + {"satelliteSeries",1856}, + {"longitudesList",1182}, + {""}, + {"endDescriptors",728}, + {""}, + {"optionalData",1523}, + {""}, + {"localDateTime",1119}, {"Latin",113}, - {"integerScaleFactor",977}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"logTransform",1148}, - {""}, {""}, {""}, {""}, {""}, - {"crcrlf",611}, - {"suiteName",2108}, {""}, - {"parameterName",1623}, + {"unitsDecimalScaleFactor",2252}, {""}, {""}, - {"derivedForecast",672}, + {"rdbType",1735}, + {"crcrlf",613}, {""}, {""}, {""}, - {"clearTables",423}, - {""}, - {"computeStatistics",557}, - {"scaledDirections",1877}, + {"forecastSteps",866}, + {"dataFlag",623}, + {"windDirection",2335}, + {""}, {""}, + {"parameterDiscipline",1623}, {""}, + {"dateOfForecast",639}, + {"levelType",1098}, + {""}, {""}, + {"tubeDomain",2195}, + {"timeOfForecast",2162}, + {""}, {""}, {""}, + {"gg",888}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"Lap",108}, - {""}, {""}, {""}, - {"modelName",1291}, - {""}, - {"NT",186}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"analysisOffsets",300}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Ny",202}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"extraDim",786}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"shortName",2013}, - {""}, {""}, - {"generatingProcessTemplate",883}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"daLoop",616}, - {""}, {""}, - {"yLast",2372}, - {""}, {""}, {""}, - {"marsKeywords",1203}, - {""}, {""}, - {"boustrophedonic",369}, + {"coordinatesPresent",593}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Ncy",192}, - {"siteId",2024}, - {""}, {""}, - {"Nassigned",189}, - {"gridName",904}, - {""}, {""}, {""}, {""}, {""}, - {"gridDefinitionDescription",900}, - {""}, {""}, {""}, - {"maximum",1236}, - {""}, - {"Nuy",200}, - {""}, - {"dayOfForecast",649}, - {""}, - {"marsIdent",1202}, - {""}, {""}, - {"paramId",1613}, - {"overlayTemplateNumber",1536}, {""}, {""}, {""}, {""}, - {"stepTypeForConversion",2085}, + {"validityTime",2284}, + {"rdbtimeTime",1744}, + {"avg",319}, + {""}, {""}, {""}, {""}, + {"categoryType",380}, + {"daLoop",618}, + {"laplacianOperatorIsSet",1040}, + {""}, + {"rdbtimeDate",1738}, + {""}, + {"maximum",1238}, + {"rdbtimeDay",1739}, + {"yLast",2375}, + {"longitudeOfCentrePoint",1155}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"yearOfForecast",2380}, {""}, {""}, - {"controlForecastCluster",570}, + {"xFirst",2367}, + {""}, + {"localSecond",1140}, + {""}, + {"firstDimension",843}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"userDateTimeStart",2277}, + {""}, {""}, + {"derivedForecast",674}, {""}, {""}, {""}, - {"dateOfForecast",637}, + {"flag",851}, + {""}, {""}, {""}, + {"waveDomain",2325}, {"Ly",151}, {""}, {""}, - {"upperLimit",2267}, - {""}, - {"referenceOfLengths",1759}, + {"extraDim",788}, {""}, {""}, - {"timeOfForecast",2159}, + {"meanSize",1260}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"coefsSecond",550}, + {"controlForecastCluster",572}, + {""}, {""}, {""}, + {"aerosolpacking",296}, {""}, - {"editionNumber",714}, - {""}, {""}, {""}, {""}, {""}, - {"rdbSubtype",1731}, + {"upperLimit",2270}, + {"logTransform",1150}, + {""}, + {"referenceDate",1759}, + {"analysisOffsets",299}, {""}, {""}, {""}, - {"xFirst",2364}, - {"latitudeOfCentrePoint",1049}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"iIncrement",943}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"gridDefinitionSection",901}, + {"runwayState",1851}, + {""}, + {"correction3Part",605}, {""}, {""}, {""}, + {"localDecimalScaleFactor",1121}, + {"dayOfForecast",651}, + {"angleDivisor",300}, + {""}, {""}, {""}, {""}, + {"rdbDateTime",1733}, + {""}, {""}, {""}, + {"offsetSection9",1501}, + {""}, + {"freeFormData",871}, + {""}, {"Lcy",120}, {""}, {""}, - {"lcwfvSuiteName",1077}, - {""}, {""}, {""}, {""}, {""}, - {"sectionNumber",1980}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"representationType",1773}, + {""}, {""}, {""}, {""}, + {"startTimeStep",2075}, {"Luy",147}, {""}, {""}, - {"offsetDescriptors",1482}, - {""}, - {"createNewData",612}, - {"secondOfForecast",1917}, - {""}, {""}, - {"minuteOfForecast",1275}, - {""}, - {"energyNorm",754}, - {"integerScalingFactorAppliedToDirections",978}, - {"integerScalingFactorAppliedToFrequencies",979}, - {""}, - {"subSetK",2104}, - {""}, - {"offsetSection9",1499}, - {"yearOfForecast",2377}, - {""}, {""}, {""}, - {"lowerLimit",1182}, - {""}, - {"groupSplitting",910}, - {"truncateLaplacian",2188}, - {""}, {""}, {""}, {""}, - {"ccsdsRsi",387}, - {"expver",784}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"originalSubCentreIdentifier",1530}, - {""}, - {"offsetSection0",1488}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"anoffsetFirst",308}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cfName",404}, - {""}, {""}, {""}, {""}, - {"numberOfFloats",1383}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetSection8",1498}, - {""}, {""}, {""}, - {"numberOfDiamonds",1372}, + {"datumSize",647}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfDirections",1373}, - {"longitudeSexagesimal",1178}, - {""}, {""}, {""}, {""}, {""}, - {"clusterNumber",538}, - {""}, {""}, - {"marsRange",1213}, - {"modelIdentifier",1290}, - {""}, - {"hourOfForecast",933}, - {""}, {""}, {""}, - {"bufrTemplate",374}, - {"numberingOrderOfDiamonds",1455}, - {""}, {""}, {""}, - {"stepRange",2082}, + {"latitudeOfCentrePoint",1051}, {""}, {""}, {""}, {""}, - {"setLocalDefinition",2008}, - {"channelNumber",417}, + {"dataKeys",624}, {""}, {""}, - {"indexTemplate",956}, - {""}, {""}, - {"auxiliary",315}, - {""}, {""}, - {"typeOfStatisticalPostProcessingOfEnsembleMembers",2220}, - {"expandedTypes",777}, - {""}, {""}, - {"marsLevel",1207}, - {""}, {""}, - {"modeNumber",1287}, - {""}, {""}, - {"monthOfForecast",1298}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeOfCentrePointInDegrees",1050}, - {"topLevel",2166}, - {""}, {""}, {""}, - {"localDefinitionNumber",1123}, - {"siteLatitude",2025}, - {""}, {""}, {""}, - {"marsLatitude",1206}, - {""}, {""}, - {"dataLength",623}, - {"generatingProcessIdentifier",882}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfTimeSteps",1443}, - {""}, {""}, - {"instrumentIdentifier",974}, - {"climateDateFrom",424}, - {"masterTableNumber",1225}, - {""}, {""}, {""}, - {"partitionItems",1628}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"ccccIdentifiers",383}, - {""}, {""}, {""}, {""}, - {"typeOfStatisticalProcessing",2221}, - {""}, {""}, - {"latitudesList",1075}, - {"upperRange",2268}, - {""}, - {"indexingTime",960}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfSubsets",1440}, - {"indexingDate",959}, - {""}, {""}, {""}, {""}, - {"generatingProcessIdentificationNumber",881}, - {""}, {""}, - {"distinctLatitudes",689}, - {""}, {""}, {""}, {""}, - {"listOfScaledFrequencies",1114}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"atmosphericChemicalOrPhysicalConstituentType",313}, - {"levTypeName",1093}, - {""}, - {"pressureLevel",1682}, + {"ensembleSize",760}, + {"hourOfForecast",935}, + {"incrementOfLengths",957}, {""}, {""}, {""}, {""}, {""}, {""}, - {"sequences",2004}, - {""}, - {"quantile",1720}, - {""}, - {"totalNumber",2171}, - {""}, - {"defaultName",658}, - {"DiInDegrees",33}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"LaD",105}, {""}, {""}, - {"ensembleForecastNumbers",756}, + {"perturbedType",1646}, + {""}, {""}, {""}, {""}, + {"siteId",2027}, + {"oldSubtype",1504}, + {""}, {""}, + {"marsStartStep",1216}, + {""}, {""}, {""}, {""}, {""}, + {"marsIdent",1204}, + {"setDecimalPrecision",2010}, + {"paramId",1615}, + {""}, + {"latitudeSexagesimal",1073}, + {""}, + {"truncateLaplacian",2191}, + {"anoffsetFirst",307}, + {""}, {""}, + {"localFlag",1128}, + {"expver",786}, + {""}, {""}, {""}, {""}, + {"monthOfForecast",1300}, + {""}, + {"reservedOctet",1780}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"auxiliary",314}, + {"verticalDomainTemplate",2312}, + {"Nr",196}, + {""}, {""}, + {"global",889}, + {"Ni",194}, + {""}, {""}, {""}, + {"visibility",2316}, + {"iIncrement",945}, + {""}, + {"stepTypeForConversion",2088}, + {""}, {""}, {""}, {""}, {""}, + {"lengthDescriptors",1085}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetDescriptors",1484}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"isEps",997}, + {"referenceStep",1766}, + {""}, {""}, {""}, + {"expandedTypes",779}, + {""}, {""}, {""}, + {"section6",1966}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetSection8",1500}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"originalSubCentreIdentifier",1532}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"validityDate",2283}, + {""}, + {"numberOfFloats",1385}, + {""}, {""}, + {"gridDefinition",901}, + {""}, {""}, {""}, + {"parameterName",1625}, + {""}, {""}, {""}, {""}, {""}, + {"computeStatistics",556}, + {"KS",97}, + {""}, {""}, {""}, + {"anoffsetFrequency",308}, + {""}, + {"decimalScaleFactor",656}, {"JS",95}, - {""}, {""}, {""}, {""}, {""}, - {"Nf",193}, + {""}, {""}, + {"suiteName",2111}, + {""}, {""}, + {"localDefinition",1124}, + {"Ny",202}, + {"clearTables",422}, + {"boustrophedonic",368}, + {"referenceOfLengths",1762}, + {""}, {""}, + {"modelName",1293}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"instrumentIdentifier",976}, + {""}, {""}, + {"generatingProcessTemplate",885}, + {"modelIdentifier",1292}, + {""}, {""}, + {"marsLevel",1209}, + {"marsLatitude",1208}, + {""}, + {"siteLatitude",2028}, + {"expoffset",785}, + {""}, {""}, + {"lowerLimit",1184}, {""}, {""}, {""}, {""}, - {"qnh",1713}, - {"lowerRange",1183}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"matchTimeRepres",1232}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Nb",190}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"topLevel",2169}, + {"shortName",2016}, + {""}, {""}, {""}, + {"dataLength",625}, + {"indexingTime",962}, + {"subcentreOfAnalysis",2109}, + {"clusterSize",538}, + {""}, + {"newSubtype",1321}, + {"minuteOfForecast",1277}, + {""}, + {"secondOfForecast",1920}, + {"integerScaleFactor",979}, + {"Ncy",192}, + {""}, {""}, {""}, {""}, {""}, + {"NT",186}, + {"overlayTemplateNumber",1538}, + {""}, + {"Nuy",200}, + {""}, {""}, {""}, {""}, + {"matchLandType",1232}, + {""}, {""}, + {"setLocalDefinition",2011}, + {""}, {""}, + {"marsEndStep",1199}, + {"pressureLevel",1685}, + {""}, + {"scaledDirections",1880}, + {"typeOfStatisticalPostProcessingOfEnsembleMembers",2223}, + {""}, {""}, + {"atmosphericChemicalOrPhysicalConstituentType",312}, + {""}, {""}, {""}, + {"defaultStepUnits",664}, {""}, {""}, {""}, {""}, {""}, {""}, - {"faFieldName",829}, - {""}, - {"iteratorDisableUnrotate",1019}, - {""}, {""}, {""}, {""}, - {"northernLatitudeOfDomain",1332}, - {""}, {""}, {""}, {""}, {""}, - {"DyInDegrees",44}, - {""}, {""}, {""}, {""}, - {"legNumber",1081}, - {""}, {""}, - {"N",169}, - {""}, {""}, {""}, - {"orderOfSpatialDifferencing",1524}, - {""}, - {"crraSection",614}, - {"rectimeSecond",1752}, - {""}, {""}, {""}, {""}, {""}, - {"marsLevelist",1208}, - {"satelliteIdentifier",1851}, + {"latitudesList",1077}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"spectralDataRepresentationMode",2058}, - {"systemNumber",2115}, - {"anoffsetFrequency",309}, + {"editionNumber",716}, {""}, - {"stretchingFactor",2091}, + {"gridName",906}, + {""}, {""}, + {"integerScalingFactorAppliedToDirections",980}, + {"integerScalingFactorAppliedToFrequencies",981}, + {""}, + {"observedData",1464}, + {""}, {""}, {""}, + {"optimizeScaleFactor",1522}, + {"rdbSubtype",1734}, + {"Nassigned",189}, + {""}, {""}, {""}, {""}, + {"dx",703}, + {""}, {""}, {""}, + {"indexTemplate",958}, + {""}, {""}, + {"horizontalCoordinateSupplement",928}, + {"max",1237}, + {"centreForLocal",398}, + {"latitudeOfCentrePointInDegrees",1052}, + {""}, {""}, {""}, + {"numberOfDirections",1375}, + {"cfName",403}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfSection",1436}, - {""}, {""}, {""}, - {"widthOfFirstOrderValues",2328}, - {"templatesLocalDir",2130}, - {""}, - {"listOfDistributionFunctionParameter",1110}, - {"methodNumber",1268}, - {"southernLatitudeOfDomain",2045}, - {""}, - {"typeOfDistributionFunction",2201}, - {"isEps",995}, - {""}, - {"optimisationTime",1519}, - {""}, {""}, - {"qfe",1710}, - {"defaultStepUnits",662}, - {""}, {""}, - {"levelIndicator",1095}, - {""}, {""}, {""}, {""}, - {"numberOfForecastsInTube",1388}, - {""}, {""}, - {"stepTypeInternal",2086}, + {"numberOfDiamonds",1374}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"secondDimension",1911}, - {"observablePropertyTemplate",1457}, + {"xLast",2368}, {""}, - {"numberOfDistinctSection9s",1380}, + {"ccccIdentifiers",382}, {""}, - {"spectralDataRepresentationType",2059}, + {"sectionNumber",1983}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"typeOfStatisticalProcessing",2224}, {""}, - {"bottomLevel",368}, + {"numberOfTimeSteps",1445}, + {"energyNorm",756}, + {"numberingOrderOfDiamonds",1457}, {""}, {""}, {""}, {""}, {""}, - {"longitudinalDirectionGridLength",1181}, + {"listOfScaledFrequencies",1116}, + {""}, {""}, {""}, {""}, {""}, + {"horizontalCoordinateDefinition",927}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"stretchingFactorScaled",2092}, + {"generatingProcessIdentifier",884}, + {"iteratorDisableUnrotate",1021}, {""}, {""}, {""}, - {"heightLevelName",921}, + {"preferLocalConcepts",1664}, + {""}, + {"climateDateFrom",423}, + {""}, {""}, {""}, {""}, + {"templatesLocalDir",2133}, + {"gridDefinitionDescription",902}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfDistinctSection8s",1379}, - {""}, {""}, {""}, {""}, - {"centreForLocal",399}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfFrequencies",1389}, - {""}, {""}, {""}, {""}, - {"expoffset",783}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"localSection",1139}, - {""}, {""}, {""}, - {"tubeNumber",2193}, - {""}, {""}, - {"longitudeOfFirstGridPoint",1158}, - {"endOfRange",746}, {""}, - {"missingDataFlag",1280}, - {"observablePropertyTemplateNumber",1458}, - {""}, {""}, {""}, - {"typicalSecond",2232}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"expandedDescriptors",771}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfOperationalForecastTube",1409}, - {""}, {""}, {""}, {""}, {""}, - {"marsEndStep",1197}, - {""}, {""}, {""}, {""}, {""}, - {"dimensionType",680}, - {"diagnosticNumber",675}, - {""}, {""}, {""}, {""}, - {"endOfInterval",743}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"generatingProcessTemplateNumber",884}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfForcasts",1384}, - {""}, {""}, - {"forecastLeadTime",857}, - {""}, - {"tableNumber",2119}, - {""}, {""}, {""}, - {"conceptsLocalDirAll",559}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"xLast",2365}, - {""}, {""}, - {"referenceSampleInterval",1762}, - {"dx",701}, - {"secondOrderFlags",1919}, + {"lcwfvSuiteName",1079}, {"Dx",40}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfSubsets",1442}, + {"gridDefinitionSection",903}, + {""}, {""}, {""}, + {"ccsdsRsi",386}, + {""}, {""}, + {"Nf",193}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfFrequencies",1391}, + {""}, {""}, + {"userTimeEnd",2278}, {""}, {""}, {""}, {""}, {""}, - {"typeOfLevel",2210}, - {""}, {""}, - {"max",1235}, - {""}, {""}, - {"diffInDays",676}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"zeros",2381}, - {""}, - {"zero",2380}, - {""}, {""}, - {"longitudeOfCentrePointInDegrees",1154}, - {"memberNumber",1264}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"earthIsOblate",703}, - {"rdbtimeSecond",1740}, - {""}, {""}, - {"tiggeSection",2146}, - {""}, - {"molarMass",1294}, - {""}, {""}, - {"userDateEnd",2271}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Adelta",13}, - {"extractSubset",817}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"defaultFaFieldName",655}, - {""}, {""}, {""}, {""}, - {"defaultShortName",661}, + {"generatingProcessIdentificationNumber",883}, {""}, {""}, {""}, - {"multiplicationFactorForLatLong",1305}, - {""}, - {"MS",156}, - {"expandedNames",772}, - {""}, {""}, - {"userDateTimeEnd",2273}, - {""}, {""}, - {"isAuto",986}, + {"userDateEnd",2274}, + {""}, {""}, {""}, + {"distinctLatitudes",691}, {""}, {""}, {""}, {""}, {""}, - {"marsModel",1210}, + {"typeOfLevel",2213}, {""}, {""}, {""}, - {"clutterFilterIndicator",542}, - {""}, {""}, - {"binaryScaleFactor",360}, - {"productDefinition",1695}, - {""}, - {"meanSize",1258}, + {"longitudeSexagesimal",1180}, + {""}, {""}, {""}, + {"siteElevation",2026}, {""}, {""}, {""}, {""}, {""}, {""}, - {"frequency",870}, + {"offsetSection0",1490}, + {"clusterNumber",537}, + {"quantile",1723}, {""}, - {"earthMinorAxis",706}, + {"endOfInterval",745}, + {""}, + {"userDateTimeEnd",2276}, + {"partitionItems",1630}, {""}, {""}, - {"userTimeEnd",2275}, - {"offsetFreeFormData",1484}, - {""}, - {"unsignedIntegers",2260}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"anoffsetLast",310}, - {"angleOfRotation",303}, - {""}, - {"siteElevation",2023}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"corr3Data",595}, + {"sequences",2007}, + {""}, {""}, {""}, + {"forecastLeadTime",859}, + {""}, {""}, {""}, + {"bufrTemplate",373}, {""}, {""}, {""}, {""}, - {"representationType",1770}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"marsRange",1215}, + {""}, + {"qfe",1713}, + {""}, {""}, + {"channelNumber",416}, + {""}, {""}, + {"referenceSampleInterval",1765}, + {""}, + {"satelliteIdentifier",1854}, + {""}, {""}, + {"indexingDate",961}, {""}, {""}, {""}, - {"verticalDomainTemplateNumber",2310}, - {""}, {""}, - {"periodOfTimeIntervals",1642}, - {"datumSize",645}, - {""}, {""}, - {"powerOfTenUsedToScaleClimateWeight",1655}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"headersOnly",920}, - {"biFourierTruncationType",359}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"TAFstr",230}, - {""}, {""}, - {"simpleThinningSkip",2021}, + {"stretchingFactor",2094}, + {"bottomLevel",367}, + {"stepRange",2085}, + {"qnh",1716}, {""}, {""}, {""}, - {"dataAccessors",618}, - {""}, {""}, {""}, - {"representationMode",1769}, + {"defaultName",660}, + {"K",96}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudinalDirectionGridLength",1183}, + {"modeNumber",1289}, {""}, {""}, - {"secondLatitude",1914}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"theMessage",2133}, + {"J",94}, {""}, {""}, - {"verificationDate",2295}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"correction4Part",605}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"faFieldName",831}, + {""}, {""}, + {"numberOfForcasts",1386}, + {""}, {""}, {""}, {""}, + {"diffInDays",678}, {""}, {""}, {""}, {""}, {""}, - {"minuteOfReference",1277}, - {""}, {""}, {""}, {""}, - {"oceanLevName",1465}, - {"oneMillionConstant",1505}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"globalDomain",888}, - {""}, {""}, {""}, {""}, - {"TAF",229}, - {"simpleThinningStart",2022}, - {""}, {""}, {""}, - {"dateOfReference",641}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"timeOfReference",2161}, - {"SecondLatitude",223}, - {"localMinute",1135}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"numberOfIterations",1397}, + {"typeOfDistributionFunction",2204}, + {""}, {""}, {""}, {""}, {""}, + {"heightLevelName",923}, + {"groupSplitting",912}, + {""}, {""}, {""}, {""}, {""}, + {"conceptsLocalDirAll",560}, {""}, - {"thisMarsType",2137}, - {"climatologicalRegime",426}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"indexTemplateNumber",957}, - {"iterationNumber",1018}, - {"perturbedType",1644}, - {"dimensionNumber",679}, + {"masterTableNumber",1227}, + {""}, {""}, {""}, {""}, {""}, + {"listOfDistributionFunctionParameter",1112}, + {"numberOfOperationalForecastTube",1411}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"crraSection",616}, + {""}, + {"upperRange",2271}, + {"rectimeSecond",1755}, {""}, {""}, + {"numberOfSection",1438}, + {""}, {""}, + {"stretchingFactorScaled",2095}, + {"optimisationTime",1521}, + {""}, {""}, + {"offsetFreeFormData",1486}, + {"diagnosticNumber",677}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"northernLatitudeOfDomain",1334}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"localDefinitionNumber",1125}, + {""}, + {"DiInDegrees",33}, {"FirstLatitude",68}, {""}, - {"thisMarsStream",2136}, - {"operatingMode",1517}, - {""}, {""}, - {"parameterNumber",1624}, - {"secondDimensionPhysicalSignificance",1913}, - {"scaleFactorOfFirstSize",1861}, - {""}, - {"localMonth",1136}, - {"partitionNumber",1629}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"clusterMember9",537}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfStandardDeviation",1873}, - {""}, {""}, {""}, - {"angleMultiplier",302}, - {""}, {""}, {""}, - {"directionNumber",682}, - {"indicatorOfUnitOfTimeRange",965}, - {"spectralMode",2060}, - {""}, {""}, {""}, - {"yearOfReference",2379}, - {""}, {""}, {""}, {""}, - {"scaleFactorOfStandardDeviationInTheCluster",1874}, - {""}, {""}, {""}, {""}, {""}, - {"inputDelayedDescriptorReplicationFactor",967}, - {""}, - {"siteLongitude",2026}, - {""}, {""}, {""}, - {"marsLongitude",1209}, - {""}, {""}, - {"localLatitude",1129}, - {""}, - {"numberOfInts",1396}, - {""}, - {"clusterSize",539}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"truncateDegrees",2187}, - {""}, - {"tiggeModel",2145}, - {""}, {""}, - {"clusterMember8",536}, - {""}, {""}, {""}, {""}, {""}, - {"scalingFactorForFrequencies",1900}, - {""}, {""}, - {"sensitiveAreaDomain",2003}, - {""}, - {"scanningMode",1902}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"satelliteNumber",1852}, - {""}, - {"roundedMarsLatitude",1793}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"conceptsMasterDir",562}, - {""}, {""}, {""}, {""}, {""}, - {"ensembleStandardDeviation",759}, - {"DxInDegrees",41}, - {"angleSubdivisions",306}, - {""}, {""}, {""}, - {"extractedDateTimeNumberOfSubsets",822}, - {"numberOfRadials",1429}, - {"hourOfReference",935}, - {""}, - {"ensembleForecastNumbersList",757}, - {""}, {""}, - {"subcentreOfAnalysis",2106}, - {"numberOfLocalDefinitions",1398}, - {""}, - {"representativeMember",1771}, - {""}, {""}, - {"boustrophedonicOrdering",370}, - {""}, - {"julianDay",1027}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"iDirectionIncrement",939}, - {""}, {""}, {""}, {""}, - {"gridDefinitionTemplateNumber",902}, - {""}, {""}, - {"monthOfReference",1300}, - {""}, - {"isAccumulation",985}, - {""}, - {"unitOfOffsetFromReferenceTime",2241}, - {"corr2Data",594}, - {""}, {""}, {""}, - {"firstLatitude",844}, - {""}, {""}, {""}, {""}, {""}, - {"localLongitude",1132}, - {"identificationNumber",947}, - {"unitsOfFirstFixedSurface",2253}, - {""}, {""}, {""}, - {"baseAddress",325}, - {""}, - {"tablesMasterDir",2122}, - {""}, {""}, {""}, - {"internationalDataSubCategory",982}, - {"roundedMarsLevelist",1794}, - {""}, {""}, {""}, - {"LaDInDegrees",106}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfFirstFixedSurface",1860}, - {""}, {""}, {""}, - {"faLevelName",830}, - {"scaleFactorOfSecondSize",1871}, + {"marsLevelist",1210}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"J",94}, - {""}, - {"timeIncrement",2156}, - {""}, {""}, {""}, {""}, - {"unitsOfSecondFixedSurface",2254}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"addressOfFileFreeSpaceInfo",294}, - {""}, {""}, - {"roundedMarsLongitude",1795}, + {"levTypeName",1095}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"corr4Data",596}, - {"scanningMode8",1907}, - {"biFourierMakeTemplate",352}, - {"originatingCentre",1531}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"NL",182}, - {"horizontalCoordinateSupplement",926}, - {""}, {""}, - {"typeOfEnsembleForecast",2202}, + {"totalNumber",2174}, + {""}, + {"typeOfEnsembleForecast",2205}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"computeLaplacianOperator",556}, - {""}, - {"latitudeLastInDegrees",1046}, - {""}, {""}, {""}, {""}, - {"applicationIdentifier",311}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"dataRepresentation",625}, - {""}, - {"pvlLocation",1709}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"marsForecastMonth",1200}, - {""}, {""}, {""}, {""}, - {"Nx",201}, - {""}, {""}, - {"projString",1702}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfIntegers",1395}, - {""}, - {"optimizeScaleFactor",1520}, - {"dataValues",634}, - {""}, {""}, {""}, {""}, - {"ITN",93}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"calendarIdPresent",376}, - {""}, - {"Ncx",191}, - {"startOfMessage",2068}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"scaleFactorOfDistributionFunctionParameter",1857}, - {"defaultFaLevelName",656}, - {""}, - {"versionNumOfFilesFreeSpaceStorage",2300}, - {""}, - {"Nux",199}, - {""}, - {"marsParam",1211}, - {""}, {""}, {""}, - {"streamOfAnalysis",2090}, - {""}, {""}, - {"perturbationNumber",1643}, - {""}, {""}, {""}, - {"epsPoint",762}, - {""}, {""}, - {"g2grid",877}, - {""}, {""}, {""}, {""}, - {"Lx",149}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"SPD",222}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"realPart",1743}, - {""}, - {"NAT",172}, - {""}, {""}, - {"longitudeOfFirstGridPointInDegrees",1159}, - {"XR",266}, - {"numberOfDistributionFunctionParameters",1381}, - {"parameterIndicator",1622}, - {""}, - {"minuteOfAnalysis",1273}, + {"southernLatitudeOfDomain",2048}, + {"expandedDescriptors",773}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"correction1Part",599}, - {"corr1Data",593}, - {"numberOfReservedBytes",1433}, + {"matchTimeRepres",1234}, {""}, - {"Lcx",118}, - {""}, - {"radialAngularSpacing",1721}, - {"DiInMetres",34}, - {"marsExpver",1199}, - {""}, - {"bufrDataEncoded",371}, - {"horizontalCoordinateDefinition",925}, + {"numberOfForecastsInTube",1390}, + {"DyInDegrees",44}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetSection6",1498}, {""}, {""}, {""}, {""}, - {"matchLandType",1230}, - {"dataRepresentationType",628}, + {"stepTypeInternal",2089}, + {"marsKeywords",1205}, + {""}, + {"anoffsetLast",309}, + {""}, {""}, {""}, {""}, + {"periodOfTimeIntervals",1644}, + {"secondOrderFlags",1922}, + {""}, {""}, {""}, {""}, + {"secondLatitude",1917}, + {""}, + {"endOfRange",748}, + {""}, {""}, + {"powerOfTenUsedToScaleClimateWeight",1657}, + {""}, + {"longitudeOfCentrePointInDegrees",1156}, + {""}, + {"typicalSecond",2235}, + {""}, {""}, {""}, + {"frequency",872}, + {""}, + {"localSection",1141}, + {"firstLatitude",846}, + {""}, {""}, + {"secondDimension",1914}, + {"levelIndicator",1097}, + {""}, {""}, + {"extractSubset",819}, + {"molarMass",1296}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"marsLongitude",1211}, + {""}, + {"siteLongitude",2029}, + {"longitudeOfFirstGridPoint",1160}, + {"localLatitude",1131}, + {""}, + {"Adelta",13}, + {""}, + {"systemNumber",2118}, + {""}, {""}, {""}, {""}, + {"ensembleForecastNumbers",758}, + {""}, {""}, {""}, + {"isAuto",988}, + {""}, {""}, {""}, + {"expandedNames",774}, + {""}, {""}, + {"legNumber",1083}, + {""}, {""}, {""}, {""}, {""}, + {"Nb",190}, + {""}, {""}, {""}, {""}, + {"orderOfSpatialDifferencing",1526}, + {""}, {""}, + {"missingDataFlag",1282}, + {""}, + {"methodNumber",1270}, + {""}, {""}, {""}, + {"marsModel",1212}, + {""}, {""}, {""}, + {"widthOfFirstOrderValues",2331}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"multiplicationFactorForLatLong",1307}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"observablePropertyTemplate",1459}, + {"Lx",149}, + {""}, + {"defaultFaFieldName",657}, + {""}, {""}, + {"marsExpver",1201}, + {""}, {""}, {""}, {""}, {""}, + {"createNewData",614}, + {"SecondLatitude",223}, + {""}, + {"marsExperimentOffset",1200}, + {""}, + {"productDefinition",1698}, + {""}, {""}, {""}, {""}, {""}, + {"N",169}, + {""}, {""}, + {"TAFstr",230}, + {"lowerRange",1185}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"binaryScaleFactor",359}, + {""}, {""}, {""}, + {"MS",156}, + {""}, {""}, + {"addressOfFileFreeSpaceInfo",293}, + {""}, {""}, {""}, + {"numberOfIterations",1399}, + {""}, {""}, {""}, + {"deleteExtraLocalSection",671}, + {"Lcx",118}, + {"sizeOfOffsets",2031}, + {""}, {""}, + {"earthMinorAxis",708}, + {"rdbtimeSecond",1743}, {""}, {""}, {""}, {"Lux",145}, - {""}, {""}, {""}, {""}, {""}, - {"correction3Part",603}, - {"directionScalingFactor",684}, - {""}, {""}, {""}, - {"dataRepresentationTemplate",626}, - {""}, {""}, {""}, - {"charValues",419}, + {"observablePropertyTemplateNumber",1460}, + {""}, {""}, + {"unitOfOffsetFromReferenceTime",2244}, {""}, {""}, {""}, {""}, - {"productDefinitionTemplateNumber",1696}, - {""}, {""}, {""}, {""}, - {"NR",184}, + {"minuteOfReference",1279}, {""}, - {"yDirectionGridLength",2368}, - {""}, {""}, {""}, {""}, {""}, - {"scaledFrequencies",1878}, + {"oneMillionConstant",1507}, + {"tiggeSection",2149}, + {""}, {""}, + {"dataAccessors",620}, + {"numberOfLocalDefinitions",1400}, + {""}, {""}, {""}, + {"TAF",229}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"indicatorOfUnitOfTimeRange",967}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"coordinate3Flag",584}, + {""}, {""}, {""}, + {"earthIsOblate",705}, + {""}, + {"biFourierTruncationType",358}, + {""}, {""}, + {"tubeNumber",2196}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"dateOfReference",643}, + {""}, {""}, {""}, {""}, + {"timeOfReference",2164}, + {"theMessage",2136}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"bufrDataEncoded",370}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"clutterFilterIndicator",541}, + {""}, {""}, {""}, + {"clusterMember9",536}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"spectralDataRepresentationMode",2061}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"northLatitudeOfCluster",1325}, - {""}, - {"predefined_grid",1660}, + {"generatingProcessTemplateNumber",886}, + {""}, {""}, + {"northLatitudeOfCluster",1327}, + {""}, {""}, + {"verificationDate",2298}, + {"yearOfReference",2382}, + {""}, {""}, {""}, {""}, + {"localMinute",1137}, + {""}, {""}, {""}, {""}, {""}, + {"iterationNumber",1020}, + {"thisMarsType",2140}, + {"tableNumber",2122}, + {""}, {""}, {""}, + {"dimensionNumber",681}, + {"numberOfDistinctSection9s",1382}, + {"oceanLevName",1467}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"parameterNumber",1626}, + {"partitionNumber",1631}, + {""}, + {"spectralDataRepresentationType",2062}, + {""}, {""}, {""}, + {"unitsOfFirstFixedSurface",2256}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"localMonth",1138}, + {"memberNumber",1266}, + {"localLongitude",1134}, + {""}, + {"operatingMode",1519}, + {""}, {""}, {""}, {""}, {""}, + {"simpleThinningSkip",2024}, + {""}, + {"representationMode",1772}, + {"directionNumber",684}, + {""}, {""}, + {"thisMarsStream",2139}, + {""}, {""}, + {"yDirectionGridLength",2371}, + {"angleMultiplier",301}, + {"southLatitudeOfCluster",2044}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Nx",201}, + {"unsignedIntegers",2263}, + {""}, {""}, {""}, {""}, {""}, + {"spectralMode",2063}, + {"eastLongitudeOfCluster",710}, + {"subSetK",2107}, + {""}, {""}, {""}, {""}, + {"numberOfDistinctSection8s",1381}, + {""}, + {"corr2Data",596}, + {""}, + {"scaleFactorOfFirstSize",1864}, + {"angleOfRotation",302}, + {""}, {""}, {""}, + {"subSetJ",2106}, + {"hourOfReference",937}, + {""}, + {"tileIndex",2154}, + {""}, + {"NL",182}, + {""}, + {"corr4Data",598}, + {"defaultShortName",663}, + {"iDirectionIncrement",941}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"computeLaplacianOperator",555}, + {"dataValues",636}, + {"clusterMember8",535}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Ncx",191}, + {"DxInDegrees",41}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Nux",199}, + {""}, + {"monthOfReference",1302}, + {"Azi",15}, + {""}, {""}, + {"climatologicalRegime",425}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"doExtractDateTime",694}, + {"satelliteNumber",1855}, + {"tiggeModel",2148}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"scanningMode",1905}, + {"indexTemplateNumber",959}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfInts",1398}, + {""}, + {"faLevelName",832}, + {"scaleFactorOfStandardDeviation",1876}, + {"inputExtendedDelayedDescriptorReplicationFactor",970}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"unitsOfSecondFixedSurface",2257}, + {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfStandardDeviationInTheCluster",1877}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"timeIncrement",2159}, + {"roundedMarsLevelist",1797}, + {""}, + {"extractedDateTimeNumberOfSubsets",824}, + {""}, {""}, + {"globalDomain",890}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"correction1Part",601}, + {"pvlLocation",1712}, + {""}, + {"identificationNumber",949}, + {""}, {""}, {""}, {""}, + {"sensitiveAreaDomain",2006}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"monthOfAnalysis",1298}, + {""}, {""}, {""}, + {"numberOfEffectiveValues",1384}, + {""}, {""}, {""}, + {"streamOfAnalysis",2093}, + {"localDefNumberTwo",1123}, + {""}, + {"LaDInDegrees",106}, + {""}, + {"scaleFactorOfFirstFixedSurface",1863}, + {"defaultFaLevelName",658}, + {""}, {""}, {""}, {""}, {""}, + {"roundedMarsLongitude",1798}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfSecondSize",1874}, + {""}, {""}, + {"biFourierMakeTemplate",351}, + {""}, + {"classOfAnalysis",421}, + {"charValues",418}, + {"verticalDomainTemplateNumber",2313}, + {""}, {""}, {""}, {""}, {""}, + {"roundedMarsLatitude",1796}, + {"corr3Data",597}, + {"baseAddress",324}, + {""}, + {"referenceValue",1767}, + {""}, {""}, {""}, {""}, {""}, + {"ensembleForecastNumbersList",759}, + {""}, + {"g2grid",879}, + {"startOfMessage",2071}, + {"minuteOfAnalysis",1275}, + {""}, {""}, {""}, {""}, + {"indicatorOfUnitForTimeIncrement",965}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"secondDimensionPhysicalSignificance",1916}, + {""}, + {"numberOfRadials",1431}, + {""}, + {"angleSubdivisions",305}, + {""}, {""}, + {"distanceFromTubeToEnsembleMean",690}, + {"scalingFactorForFrequencies",1903}, + {""}, + {"dateOfForecastRun",640}, + {""}, + {"simpleThinningStart",2025}, + {"corr1Data",595}, + {"marsParam",1213}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaledFrequencies",1881}, + {""}, + {"internalVersion",983}, + {""}, {""}, {""}, + {"unitOfTimeIncrement",2246}, + {""}, + {"iScansNegatively",946}, + {""}, + {"epsPoint",764}, + {"ensembleStandardDeviation",761}, + {""}, {""}, + {"applicationIdentifier",310}, + {""}, {""}, {""}, {""}, + {"scanningMode8",1910}, + {""}, {""}, + {"tablesMasterDir",2125}, + {"typeOfTimeIncrement",2225}, + {"marsLamModel",1207}, + {""}, {""}, {""}, {""}, {""}, + {"representativeMember",1774}, + {""}, + {"floatVal",857}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"westLongitudeOfCluster",2327}, + {"isAccumulation",987}, + {""}, + {"numberOfDistinctSection6s",1379}, + {""}, {""}, {""}, {""}, + {"realPart",1746}, + {"codedValues",548}, + {""}, {""}, {""}, + {"calendarIdPresent",375}, + {""}, {""}, {""}, {""}, + {"inputDelayedDescriptorReplicationFactor",969}, + {"dateOfAnalysis",638}, + {""}, {""}, {""}, {""}, + {"timeOfAnalysis",2161}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"minutesAfterDataCutoff",1280}, + {""}, {""}, + {"II",89}, + {""}, {""}, + {"latitudeLastInDegrees",1048}, + {""}, {""}, {""}, + {"dayOfAnalysis",649}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"yearOfAnalysis",2377}, + {"defaultSequence",662}, + {""}, {""}, {""}, + {"conceptsMasterDir",563}, + {""}, + {"DiInMetres",34}, + {""}, {""}, {""}, {""}, {""}, + {"significanceOfReferenceTime",2022}, + {""}, {""}, {""}, {""}, + {"typeOfAnalysis",2200}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extractSubsetList",822}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfIntegers",1397}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfOctetsExtraDescriptors",1410}, + {""}, {""}, + {"boustrophedonicOrdering",369}, + {"ifsParam",954}, + {"rectimeMinute",1754}, + {""}, {""}, {""}, + {"XR",265}, + {"tablesVersion",2126}, + {""}, {""}, {""}, {""}, + {"offsetAfterLocalSection",1474}, {""}, {""}, {""}, - {"doExtractDateTime",692}, {"DyInMetres",45}, - {""}, {""}, - {"groupSplittingMethodUsed",911}, - {""}, {""}, - {"julianForecastDay",1028}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"marsExperimentOffset",1198}, {""}, - {"dayOfAnalysis",647}, - {""}, - {"minutesAfterDataCutoff",1278}, - {"internalVersion",981}, - {""}, {""}, - {"rectimeMinute",1751}, - {"dataRepresentationTemplateNumber",627}, + {"xDirectionGridLength",2364}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"doExtractSubsets",695}, {""}, {""}, {""}, - {"identificationOfProject",949}, + {"dataRepresentation",627}, + {""}, {""}, {""}, {""}, {""}, + {"calendarIdentification",376}, + {""}, {""}, {""}, {""}, + {"nameOfFirstFixedSurface",1316}, + {"numberOfDistributionFunctionParameters",1383}, + {"postAuxiliary",1655}, + {"lengthOfIndexTemplate",1089}, + {""}, {""}, {""}, {""}, + {"extractAreaWestLongitude",798}, + {""}, {""}, {""}, + {"radialAngularSpacing",1724}, {""}, - {"productDefinitionTemplateNumberInternal",1697}, - {""}, {""}, - {"grib3divider",893}, - {""}, {""}, - {"significanceOfReferenceTime",2019}, + {"hourOfAnalysis",933}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"internationalDataSubCategory",984}, {""}, - {"marsLamModel",1205}, + {"listMembersUsed",1107}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfFirstGridPointInDegrees",1161}, {""}, {""}, - {"codedValues",549}, + {"floatValues",858}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"lengthIncrementForTheGroupLengths",1086}, + {"scaleFactorOfSecondFixedSurface",1873}, + {""}, {""}, {""}, {""}, {""}, + {"numberInTheAuxiliaryArray",1341}, + {""}, + {"scaleFactorOfDistributionFunctionParameter",1860}, + {""}, {""}, + {"treatmentOfMissingData",2187}, + {""}, {""}, {""}, {""}, {""}, + {"accumulationInterval",288}, + {"parameterIndicator",1624}, + {"SPD",222}, + {""}, + {"NAT",172}, + {""}, + {"typeOfFirstFixedSurface",2207}, + {"stringValues",2096}, + {""}, {""}, + {"correction3",604}, + {"standardParallel",2067}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"typicalMinute",2233}, + {"perturbationNumber",1645}, + {""}, {""}, {""}, {""}, + {"ITN",93}, + {"gridDefinitionTemplateNumber",904}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfRows",1436}, + {"numberOfAnalysis",1345}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"productDefinitionTemplateNumber",1699}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"meaningOfVerticalCoordinate",1265}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"totalNumberOfdimensions",2183}, - {"windPresent",2342}, - {"deleteExtraLocalSection",669}, + {"calendarIdentificationTemplateNumber",377}, + {"normAtInitialTime",1325}, {""}, {""}, - {"southLatitudeOfCluster",2041}, + {"numberOfModels",1408}, + {"coordinate3OfLastGridPoint",586}, + {"marsForecastMonth",1202}, {""}, {""}, + {"dataRepresentationType",630}, + {"clusterMember6",533}, + {""}, + {"numberOfReservedBytes",1435}, + {""}, {""}, {""}, {""}, + {"addExtraLocalSection",291}, + {"standardParallelInDegrees",2068}, + {"probPoint",1691}, + {""}, + {"endOfFileAddress",743}, + {"indicatorOfUnitForTimeRange",966}, + {"offsetAfterPadding",1475}, + {""}, + {"defaultTypeOfLevel",665}, + {""}, {""}, {""}, {""}, + {"forecastPeriod",862}, + {""}, {""}, {""}, {""}, {""}, + {"TIDE",231}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"defaultParameter",661}, + {""}, {""}, + {"dataRepresentationTemplate",628}, + {""}, {""}, + {"offsetAfterCentreLocalSection",1472}, + {"startingAzimuth",2076}, + {""}, {""}, {""}, {""}, + {"aerosolbinnumber",295}, + {""}, + {"neitherPresent",1320}, + {"observationGeneratingProcessIdentifier",1462}, + {""}, {""}, {""}, + {"productDefinitionTemplateNumberInternal",1700}, + {"versionNumOfFilesFreeSpaceStorage",2303}, + {"monthlyVerificationTime",1305}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"secondsOfReference",1934}, + {""}, + {"libraryVersion",1102}, + {""}, {""}, + {"monthlyVerificationDate",1303}, + {""}, + {"productIdentifier",1701}, + {""}, {"LaR",107}, - {"numberOfDataMatrices",1367}, - {""}, - {"eastLongitudeOfCluster",708}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"localDefNumberOne",1120}, - {"tileIndex",2151}, - {"projectionCenterFlag",1706}, - {"treatmentOfMissingData",2184}, - {""}, - {"laplacianScalingFactor",1039}, + {""}, {""}, {""}, + {"localDefNumberOne",1122}, + {""}, {""}, {"LoR",126}, {""}, {""}, - {"accumulationInterval",289}, - {"unitOfTimeIncrement",2243}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"totalNumberOfDirections",2174}, - {""}, {""}, {""}, {""}, {""}, - {"II",89}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"projectionCentreFlag",1707}, + {"dayOfEndOfOverallTimeInterval",650}, + {""}, + {"faModelName",833}, + {""}, + {"numberOfDataMatrices",1369}, + {"longitudeOfStretchingPole",1171}, + {""}, + {"sectionPosition",1984}, + {""}, {""}, {""}, + {"conceptsLocalMarsDirAll",562}, + {""}, + {"radiusInMetres",1727}, + {""}, {""}, + {"nameOfSecondFixedSurface",1317}, + {""}, + {"dataRepresentationTemplateNumber",629}, + {""}, + {"numericValues",1458}, + {""}, + {"rdbtimeMinute",1741}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfTimeIncrement",2222}, - {""}, {""}, {""}, {""}, - {"distanceFromTubeToEnsembleMean",688}, + {"numberOfForecastsInEnsemble",1388}, {""}, - {"extractSubsetList",820}, - {""}, - {"dateOfForecastRun",638}, - {"standardParallelInDegrees",2065}, - {""}, {""}, - {"totalNumberOfTubes",2181}, - {"lengthIncrementForTheGroupLengths",1084}, - {"sectionPosition",1981}, - {"referenceValue",1764}, - {""}, {""}, {""}, {""}, {""}, - {"ifsParam",952}, - {""}, - {"calendarIdentification",377}, - {""}, {""}, - {"standardParallel",2064}, - {""}, {""}, {""}, - {"defaultSequence",660}, - {"tablesVersion",2123}, - {""}, {""}, {""}, - {"thresholdIndicator",2141}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"westLongitudeOfCluster",2324}, - {"secondsOfReference",1931}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typicalMinute",2230}, - {"radiusInMetres",1724}, - {""}, - {"floatVal",855}, - {"isConstant",992}, - {""}, - {"scaleFactorOfSecondFixedSurface",1870}, - {""}, {""}, {""}, - {"startStepInHours",2071}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"orientationOfTheGrid",1525}, - {""}, - {"probPoint",1688}, - {"subSetJ",2103}, - {""}, {""}, {""}, {""}, - {"dewPointTemperature",673}, - {""}, {""}, - {"productIdentifier",1698}, - {""}, {""}, {""}, - {"monthlyVerificationDate",1301}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfModels",1406}, - {"inputExtendedDelayedDescriptorReplicationFactor",968}, - {"faModelName",831}, - {"jIncrement",1024}, - {""}, {""}, - {"temperatureAndDewpointPresent",2129}, - {"numberOfAnalysis",1343}, - {"angleOfRotationInDegrees",304}, - {""}, {""}, {""}, {""}, {""}, - {"neitherPresent",1318}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"falseNorthing",834}, - {""}, {""}, {""}, - {"marsClass",1192}, - {"clusterIdentifier",527}, - {""}, {""}, - {"numberOfOctetsExtraDescriptors",1408}, - {""}, - {"totalNumberOfFrequencies",2176}, - {"stringValues",2093}, - {""}, - {"numberInTheAuxiliaryArray",1339}, - {""}, {""}, - {"angleOfRotationOfProjection",305}, - {""}, {""}, - {"normAtInitialTime",1323}, - {""}, {""}, {""}, - {"inputDataPresentIndicator",966}, - {"CDFstr",23}, - {""}, - {"indicatorOfUnitForTimeIncrement",963}, - {"listMembersUsed",1105}, - {"endOfFileAddress",741}, - {"groupLeafNodeK",908}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"monthlyVerificationTime",1303}, - {""}, - {"centuryOfReference",402}, - {"calendarIdentificationTemplateNumber",378}, - {""}, {""}, {""}, - {"rdbtimeMinute",1738}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"oneConstant",1504}, - {""}, {""}, {""}, {""}, - {"aerosolbinnumber",296}, - {""}, {""}, {""}, {""}, {""}, - {"extractAreaWestLongitude",796}, - {""}, - {"longitudeFirstInDegrees",1150}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"postAuxiliary",1653}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"lengthOfMessage",1088}, - {""}, {""}, {""}, {""}, - {"extractSubsetIntervalEnd",818}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"longitudeOfStretchingPole",1169}, - {""}, - {"lengthOfIndexTemplate",1087}, - {""}, {""}, - {"extractSubsetIntervalStart",819}, - {""}, {""}, {""}, {""}, - {"CDF",22}, - {""}, - {"orderOfSPD",1523}, - {""}, {""}, {""}, {""}, - {"numberOfEffectiveValues",1382}, - {"expandedOriginalWidths",776}, - {""}, - {"floatValues",856}, - {"expandedOriginalCodes",773}, - {""}, {""}, - {"forecastPeriod",860}, - {"windVariableDirection",2353}, - {""}, - {"projectLocalTemplate",1704}, - {""}, - {"originalParameterNumber",1528}, - {""}, {""}, {""}, {""}, {""}, - {"parameterCode",1620}, - {""}, {""}, - {"defaultParameter",659}, - {""}, {""}, {""}, - {"offsetAfterLocalSection",1472}, - {""}, - {"grib2divider",892}, - {""}, {""}, {""}, {""}, - {"nameOfFirstFixedSurface",1314}, - {"defaultTypeOfLevel",663}, - {"indicatorOfUnitForTimeRange",964}, - {""}, {""}, - {"easternLongitudeOfDomain",711}, - {""}, {""}, - {"tableReference",2120}, - {"orientationOfTheGridInDegrees",1526}, - {""}, {""}, {""}, {""}, - {"numberOfRemaininChars",1431}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"libraryVersion",1100}, - {"changeDecimalPrecision",410}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfDistinctSection7s",1378}, - {""}, {""}, {""}, {""}, {""}, - {"expandedOriginalScales",775}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"iScansNegatively",944}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"epsStatisticsPoint",764}, - {""}, {""}, {""}, {""}, {""}, - {"coordinate4Flag",585}, - {""}, {""}, {""}, {""}, - {"biFourierSubTruncationType",358}, - {"extendedFlag",785}, - {"predefined_grid_values",1661}, - {""}, {""}, - {"centralLongitude",394}, - {""}, {""}, - {"is_uerra",1012}, - {""}, - {"M",153}, - {"offsetAfterPadding",1473}, - {""}, {""}, - {"forecastPeriodTo",862}, - {"sizeOfOffsets",2028}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"listOfModelIdentifiers",1112}, - {""}, {""}, {""}, {""}, {""}, - {"typeOfFirstFixedSurface",2204}, - {""}, {""}, - {"_T",284}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"dayOfReference",651}, - {""}, - {"westernLongitudeOfDomain",2327}, - {""}, - {"totalNumberOfTileAttributePairs",2180}, - {""}, {""}, - {"observationGeneratingProcessIdentifier",1460}, - {"localDefNumberTwo",1121}, - {""}, {""}, - {"centralLongitudeInDegrees",395}, - {""}, {""}, {""}, {""}, {""}, - {"tileClassification",2150}, - {""}, {""}, - {"bitmapSectionPresent",364}, - {""}, {""}, - {"DjInDegrees",37}, - {"numberOfDistinctSection3s",1374}, - {"widthOfSPD",2330}, - {"short_name",2016}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"averagingPeriod",319}, - {""}, - {"subCentre",2094}, - {""}, {""}, - {"numberOfMissing",1402}, - {""}, {""}, - {"defaultFaModelName",657}, - {"meaningOfVerticalCoordinate",1263}, - {""}, {""}, {""}, - {"expandedAbbreviations",766}, - {""}, - {"tableCode",2118}, - {""}, {""}, {""}, {""}, {""}, - {"timeDomainTemplate",2154}, - {""}, - {"trueLengthOfLastGroup",2186}, - {""}, {""}, {""}, - {"verticalCoordinate",2307}, - {""}, {""}, {""}, {""}, - {"forecastPeriodFrom",861}, - {"climateDateTo",425}, - {"messageLength",1265}, - {""}, {""}, - {"nameOfSecondFixedSurface",1315}, - {"cnmc_isac",544}, - {""}, {""}, - {"clusteringMethod",541}, - {""}, - {"conceptsLocalMarsDirAll",561}, - {""}, {""}, {""}, {""}, - {"totalNumberOfForecastProbabilities",2175}, - {"bitMapIndicator",361}, - {"is_aerosol",1003}, - {""}, - {"offsetAfterCentreLocalSection",1470}, - {""}, - {"tiggeCentre",2142}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"targetCompressionRatio",2125}, - {"verticalCoordinateDefinition",2308}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfForecastsInEnsemble",1386}, - {"scaleFactorOfRadiusOfSphericalEarth",1869}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"_TS",285}, - {""}, {""}, {""}, {""}, - {"section_09",1990}, - {""}, {""}, - {"section_8",2000}, - {"scanningModeForOneDiamond",1908}, - {"paleontologicalOffset",1611}, - {""}, {""}, {""}, - {"Azi",15}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"parameterCategory",1619}, - {""}, {""}, - {"typicalDateTime",2227}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"referenceReflectivityForEchoTop",1761}, - {"cnmc_cmcc",543}, - {"local_use",1147}, - {""}, {""}, - {"constituentType",569}, - {""}, {""}, {""}, {""}, {""}, - {"typeOfSecondFixedSurface",2218}, - {""}, - {"xDirectionGridLength",2361}, - {"conceptsLocalDirECMF",560}, - {"gts_header",917}, - {""}, {""}, - {"section7",1967}, - {""}, - {"iDirectionIncrementInDegrees",942}, - {"numberOfModeOfDistribution",1405}, - {""}, {""}, {""}, - {"grib1divider",889}, - {""}, {""}, {""}, {""}, - {"is_chemical",1005}, - {"cfVarName",407}, - {""}, {""}, {""}, {""}, {""}, - {"section_08",1989}, - {""}, {""}, {""}, {""}, {""}, - {"is_efas",1007}, - {"DxInMetres",42}, - {""}, {""}, {""}, {""}, - {"coordinateIndexNumber",590}, - {""}, {""}, - {"startOfRange",2069}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"projectLocalTemplateNumber",1705}, - {""}, - {"endOfProduct",745}, - {"is_tigge",1011}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"tigge_name",2148}, - {""}, {""}, - {"numberOfVerticalPoints",1454}, - {"driverInformationBlockAddress",696}, - {""}, {""}, - {"expandedOriginalReferences",774}, - {"changingPrecision",415}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"LyInMetres",152}, - {"numericValues",1456}, - {""}, {""}, {""}, {""}, - {"groupWidth",912}, - {""}, {""}, - {"verticalVisibility",2311}, - {""}, - {"isotopeIdentificationNumber",1016}, - {"n3",1309}, - {""}, - {"extraValues",790}, - {""}, - {"isSatelliteType",1001}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"scaleFactorOfDistanceFromEnsembleMean",1856}, - {""}, {""}, {""}, - {"numberOfVerticalCoordinateValues",1452}, - {""}, {""}, {""}, - {"centuryOfReferenceTimeOfData",403}, - {"reservedNeedNotBePresent",1776}, - {""}, {""}, {""}, - {"inputOriginatingCentre",969}, - {"listOfEnsembleForecastNumbers",1111}, - {"sp3",2048}, - {""}, {""}, {""}, {""}, {""}, - {"missingValue",1281}, - {""}, {""}, {""}, {""}, - {"integerValues",980}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfVerticalGridDescriptors",1453}, - {""}, - {"spare3",2054}, - {""}, {""}, {""}, - {"numberOfPartitions",1413}, - {""}, {""}, {""}, {""}, - {"simpleThinningMissingRadius",2020}, - {"forecastMonth",858}, - {""}, - {"numberOfMembersInCluster",1400}, - {""}, {""}, - {"offsetSection10",1490}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"centralClusterDefinition",393}, - {"groupWidths",913}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"numberOfOctectsForNumberOfPoints",1407}, - {"efas_model",715}, - {"functionCode",873}, - {"doExtractSubsets",693}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"originatorLocalTemplate",1533}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"attributeOfTile",314}, - {""}, {""}, {""}, {""}, - {"latitudeOfStretchingPole",1062}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"totalNumberOfRepetitions",2179}, - {""}, - {"widthOfLengths",2329}, - {""}, {""}, - {"timeRangeIndicator",2162}, - {""}, {""}, {""}, {""}, - {"verificationMonth",2296}, - {""}, - {"latLonValues",1043}, - {"localNumberOfObservations",1137}, - {""}, {""}, {""}, - {"typeOfCompressionUsed",2200}, - {""}, {""}, {""}, {""}, {""}, - {"dayOfEndOfOverallTimeInterval",648}, - {""}, {""}, - {"secondsOfAnalysis",1930}, - {""}, {""}, {""}, - {"gts_ddhh00",916}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"lengthOfProjectLocalTemplate",1090}, - {""}, {""}, {""}, - {"earthMajorAxis",704}, - {""}, - {"totalNumberOfIterations",2178}, {"Experiment_Identifier",56}, + {""}, {""}, + {"groupSplittingMethodUsed",913}, + {"forecastPeriodTo",864}, + {""}, + {"orientationOfTheGrid",1527}, {""}, {""}, {""}, - {"interpretationOfNumberOfPoints",983}, + {"listOfModelIdentifiers",1114}, + {""}, {""}, + {"clusterIdentifier",526}, + {""}, + {"longitudeFirstInDegrees",1152}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"biFourierSubTruncationType",357}, + {""}, {""}, + {"extraValues",792}, + {""}, {""}, + {"originalParameterNumber",1530}, + {""}, {""}, {""}, + {"centuryOfReference",401}, + {"epsStatisticsPoint",766}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"lengthOfMessage",1090}, + {""}, + {"angleOfRotationInDegrees",303}, + {""}, {""}, + {"grib2divider",894}, + {""}, + {"forecastPeriodFrom",863}, + {"temperatureAndDewpointPresent",2132}, + {""}, {""}, + {"typeOfSecondFixedSurface",2221}, + {""}, {""}, {""}, + {"missingValue",1283}, + {""}, + {"integerValues",982}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"thresholdIndicator",2144}, + {""}, {""}, {""}, {""}, + {"conceptsLocalDirECMF",561}, + {""}, + {"orderOfSPD",1525}, + {""}, + {"totalNumberOfdimensions",2186}, + {""}, + {"expandedAbbreviations",768}, + {""}, {""}, {""}, + {"listOfEnsembleForecastNumbers",1113}, + {""}, + {"coordinateIndexNumber",592}, + {"windPresent",2345}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"bitMapIndicator",360}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"M",153}, + {""}, {""}, + {"scanningMode6",1908}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"endDayTrend3",726}, + {"typeOfSizeInterval",2222}, + {""}, + {"LyInMetres",152}, + {"falseNorthing",836}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"referenceReflectivityForEchoTop",1764}, + {""}, {""}, {""}, {""}, {""}, + {"dayOfReference",653}, + {"typeOfEnsembleMember",2206}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"extractSubsetIntervalEnd",820}, + {"windVariableDirection",2356}, + {""}, {""}, {""}, {""}, + {"DxInMetres",42}, + {""}, {""}, + {"isConstant",994}, + {"cloudsTitle3",516}, + {""}, {""}, + {"extractSubsetIntervalStart",821}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cfVarName",406}, + {""}, {""}, + {"totalNumberOfTubes",2184}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfDistanceFromEnsembleMean",1859}, + {""}, {""}, + {"inputDataPresentIndicator",968}, + {""}, {""}, {""}, {""}, {""}, + {"numberInTheGridCoordinateList",1342}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"driverInformationBlockAddress",698}, + {""}, + {"numberOfMembersInCluster",1402}, + {""}, + {"NR",184}, + {"totalNumberOfDirections",2177}, + {""}, {""}, {""}, {""}, + {"numberOfRemaininChars",1433}, + {""}, {""}, {""}, + {"latLonValues",1045}, + {""}, {""}, {""}, {""}, + {"changeDecimalPrecision",409}, + {""}, {""}, {""}, {""}, + {"numberOfModeOfDistribution",1407}, + {""}, + {"totalNumberOfFrequencies",2179}, + {""}, + {"dewPointTemperature",675}, + {""}, + {"grib3divider",895}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"marsClass",1194}, + {""}, + {"iDirectionIncrementInDegrees",944}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"bitmapSectionPresent",363}, + {""}, {""}, + {"numberOfVerticalPoints",1456}, + {"averagingPeriod",318}, + {""}, {""}, + {"defaultFaModelName",659}, + {"endOfProduct",747}, + {""}, + {"truncateDegrees",2190}, + {""}, + {"grib1divider",891}, + {""}, {""}, + {"numberOfMissing",1404}, + {""}, + {"tableReference",2123}, + {""}, {""}, {""}, {""}, + {"trueLengthOfLastGroup",2189}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetAfterBitmap",1471}, + {"clusteringMethod",540}, + {""}, + {"latitudeOfStretchingPole",1064}, + {"numberOfVerticalCoordinateValues",1454}, + {"julianDay",1029}, + {""}, {""}, {""}, + {"CDFstr",23}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"startStepInHours",2074}, + {""}, + {"referenceValueError",1768}, + {""}, + {"originatingCentre",1533}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"orientationOfTheGridInDegrees",1528}, + {""}, + {"changingPrecision",414}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfVerticalGridDescriptors",1455}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"verticalVisibility",2314}, + {"CDF",22}, + {"parameterCode",1622}, + {"angleOfRotationOfProjection",304}, + {""}, {""}, + {"numberOfValues",1453}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"correction4Part",607}, + {""}, {"LcyInMetres",121}, - {""}, {""}, {""}, - {"dirty_statistics",685}, + {""}, {""}, {""}, {""}, {""}, + {"doExtractArea",693}, + {"coordinate1Flag",579}, {""}, - {"subSetM",2105}, - {"numberOfDistinctSection4s",1375}, - {"conceptsMasterMarsDir",563}, - {""}, - {"groupInternalNodeK",907}, - {""}, {""}, - {"frequencyNumber",871}, - {"modelVersionDate",1292}, - {""}, - {"extraDimensionPresent",787}, {"LuyInMetres",148}, - {""}, {""}, {""}, - {"numberOfRows",1434}, - {""}, - {"scanPosition",1901}, + {"reservedNeedNotBePresent",1779}, {""}, {""}, {""}, {""}, {""}, - {"reserved3",1775}, - {""}, {""}, - {"Dj",35}, - {"coordinate1Flag",577}, - {"numberOfDistinctSection6s",1377}, - {""}, {""}, {""}, {""}, - {"_anoffset",286}, - {""}, - {"qnhPresent",1715}, + {"isotopeIdentificationNumber",1018}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"typeOfIntervalForFirstAndSecondSize",2211}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"implementationDateOfModelCycle",954}, - {""}, - {"doSimpleThinning",694}, - {"tablesVersionLatest",2124}, - {"coordinate3Flag",582}, - {""}, - {"typeOfIntervalForFirstAndSecondSize",2208}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"additionalFlagPresent",293}, - {""}, {""}, {""}, - {"centuryOfAnalysis",401}, - {""}, {""}, {""}, - {"monthOfAnalysis",1296}, - {"setCalendarId",2006}, - {""}, {""}, {""}, {""}, - {"classOfAnalysis",422}, - {""}, {""}, - {"modelVersionTime",1293}, - {""}, {""}, - {"is_chemical_distfn",1006}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"verifyingMonth",2298}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"numberOfMembersInEnsemble",1401}, - {""}, {""}, {""}, - {"consensusCount",565}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfPostProcessing",2214}, + {"lengthOfProjectLocalTemplate",1092}, + {"oneConstant",1506}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"secondsOfAnalysis",1933}, + {"widthOfSPD",2333}, {""}, {""}, {""}, {""}, {""}, - {"stepRangeInHours",2083}, - {""}, - {"numberOfChars",1354}, - {"numberInTheGridCoordinateList",1340}, + {"matrixOfValues",1236}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"typeOfIntervalForFirstAndSecondWavelength",2209}, - {"versionNumOfRootGroupSymbolTableEntry",2301}, - {""}, - {"TIDE",231}, - {""}, - {"typeOfEnsembleMember",2203}, - {""}, - {"lengthOfTimeRange",1091}, - {""}, {""}, {""}, {""}, {""}, - {"section9Pointer",1976}, - {""}, - {"dateOfAnalysis",636}, - {""}, - {"scaleFactorAtReferencePoint",1854}, {""}, {""}, {""}, {""}, {""}, {""}, - {"timeOfAnalysis",2158}, - {""}, - {"section0Pointer",1934}, - {"param_value_min",1617}, - {""}, - {"lsdate_bug",1187}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"epsContinous",761}, - {"section8Pointer",1973}, - {""}, {""}, {""}, - {"sfc_levtype",2010}, + {"directionScalingFactor",686}, {""}, {""}, - {"earthMinorAxisInMetres",707}, - {""}, - {"timeRangeIndicatorFromStepRange",2163}, + {"is_uerra",1014}, + {"typeOfAuxiliaryInformation",2201}, {""}, {""}, - {"mAngleMultiplier",1189}, + {"centuryOfReferenceTimeOfData",402}, {""}, {""}, {""}, - {"numberOfTimeRange",1442}, - {"startingAzimuth",2073}, - {""}, {""}, {""}, {""}, {""}, - {"md5Data",1237}, - {"section3Flags",1949}, - {""}, - {"longitudeOfStretchingPoleInDegrees",1170}, + {"projString",1705}, + {"modelVersionTime",1295}, + {""}, {""}, + {"extraDimensionPresent",789}, {""}, {""}, {""}, {""}, {""}, {""}, - {"complexPacking",553}, - {""}, - {"nosigPresent",1333}, - {""}, - {"qfePresent",1711}, - {""}, {""}, {""}, - {"longitudeOfIcosahedronPole",1160}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"yearOfAnalysis",2374}, - {"flagForIrregularGridCoordinateList",851}, + {"modelVersionDate",1294}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windDirectionTrend3",2335}, - {""}, {""}, {""}, - {"typeOfAnalysis",2197}, - {""}, {""}, {""}, {""}, - {"expandedCodes",767}, - {""}, {""}, {""}, - {"is_aerosol_optical",1004}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfLogicals",1399}, - {""}, {""}, {""}, - {"numberOfCharacters",1353}, - {""}, - {"averaging2Flag",318}, - {""}, {""}, {""}, {""}, - {"kurt",1033}, - {"windSpeedTrend3",2346}, - {""}, {""}, {""}, {""}, - {"secondDimensionCoordinateValueDefinition",1912}, - {"numberOfValues",1451}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"addExtraLocalSection",292}, - {""}, {""}, {""}, {""}, {""}, - {"endOfMessage",744}, - {""}, - {"correction4",604}, - {""}, - {"keyData",1029}, - {"numberOfMissingInStatisticalProcess",1403}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"timeDomainTemplateNumber",2155}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"isCorrection",993}, + {"yDirectionGridLengthInMetres",2372}, {""}, {""}, - {"hourOfAnalysis",931}, - {"isEPS",994}, + {"typeOfIntervalForFirstAndSecondWavelength",2212}, {""}, - {"jDirectionIncrement",1020}, - {"probContinous",1687}, + {"offsetSection10",1492}, {""}, - {"kurtosis",1034}, + {"extraLocalSectionPresent",791}, + {"numberOfMembersInEnsemble",1403}, + {""}, + {"tablesVersionLatest",2127}, + {""}, {""}, {""}, {""}, {""}, + {"isEPS",996}, + {"tileClassification",2153}, + {"predefined_grid",1662}, + {"scaleValuesBy",1879}, {""}, {""}, {""}, {""}, - {"plusOneinOrdersOfSPD",1651}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"totalInitialConditions",2169}, + {"componentIndex",553}, + {"julianForecastDay",1030}, + {"short_name",2019}, + {"reservedSection3",1782}, + {""}, {""}, {""}, + {"numberOfPartitions",1415}, + {""}, {""}, + {"centuryOfAnalysis",400}, + {""}, {""}, {""}, + {"frequencyNumber",873}, + {"scaleFactorOfLowerLimit",1868}, {""}, - {"secondaryMissingValue",1928}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"skewness",2032}, - {""}, {""}, {""}, {""}, - {"componentIndex",554}, - {"bitmapPresent",363}, + {"scaleFactorOfRadiusOfSphericalEarth",1872}, + {""}, {""}, {""}, + {"_T",283}, + {""}, + {"scanningModeForOneDiamond",1911}, + {"verticalCoordinate",2310}, + {""}, {""}, + {"subCentre",2097}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"yDirectionGridLengthInMetres",2369}, - {""}, {""}, {""}, - {"coordinate4OfLastGridPoint",587}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"lengthOfOriginatorLocalTemplate",1089}, - {""}, {""}, {""}, - {"tigge_short_name",2149}, + {"totalNumberOfTileAttributePairs",2183}, + {"targetCompressionRatio",2128}, {""}, - {"extractDateTimeYearStart",816}, - {""}, - {"keySat",1031}, - {"XRInMetres",267}, - {""}, - {"unknown",2255}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"sectionLengthLimitForEnsembles",1978}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"skew",2031}, - {"numberOfCategories",1352}, - {"typicalCentury",2225}, - {""}, {""}, {""}, {""}, - {"correction3",602}, - {""}, - {"md5Section9",1251}, - {""}, {""}, {""}, - {"numberOfDataValues",1370}, - {"extractedAreaNumberOfSubsets",821}, - {"swapScanningLat",2110}, - {""}, - {"frequencyScalingFactor",872}, - {""}, {""}, - {"timeCoordinateDefinition",2153}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"secondLatitudeInDegrees",1915}, - {""}, - {"decimalPrecision",653}, - {"swapScanningLon",2111}, + {"extraLocalSectionNumber",790}, + {"tableCode",2121}, + {"additionalFlagPresent",292}, + {"simpleThinningMissingRadius",2023}, {"LxInMetres",150}, - {""}, {""}, {""}, - {"gridCoordinate",898}, - {"versionNumberOfGribLocalTables",2304}, - {"runwayDepositState3",1806}, - {"numberOfForecastsInCluster",1385}, - {"minutesAfterReferenceTimeOfDataCutoff",1279}, {""}, - {"localSectionPresent",1140}, - {""}, - {"md5Section8",1250}, - {"longitudeOfLastGridPoint",1161}, - {"offsetSection7",1497}, - {""}, - {"doExtractArea",691}, - {""}, {""}, {""}, {""}, - {"listOfContributingSpectralBands",1109}, - {"n2",1308}, - {"correction2Part",601}, - {"distinctLongitudes",690}, - {""}, {""}, {""}, - {"section9Length",1975}, - {"operationalForecastCluster",1518}, + {"numberOfOctectsForNumberOfPoints",1409}, + {"totalNumberOfForecastProbabilities",2178}, + {"iScansPositively",947}, {""}, {""}, - {"endDayTrend4",725}, - {""}, - {"default_max_val",664}, - {"coordAveraging0",571}, - {""}, {""}, {""}, {""}, {""}, - {"section0Length",1933}, - {"offsetAfterBitmap",1469}, - {""}, - {"significanceOfReferenceDateAndTime",2018}, - {""}, - {"typeOfAuxiliaryInformation",2198}, - {"northernLatitudeOfClusterDomain",1331}, + {"isHindcast",999}, {""}, {""}, {""}, - {"scaledValueOfFirstSize",1885}, - {"yDirectionGridLengthInMillimetres",2370}, - {"sp2",2047}, - {""}, {""}, {""}, {""}, {""}, - {"coordAveragingTims",575}, + {"forecastMonth",860}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"is_aerosol",1005}, + {""}, {""}, {""}, + {"dataCategory",621}, {""}, {""}, - {"section8Length",1972}, - {"runwaySideCodeState3",1846}, + {"scanPosition",1904}, + {""}, {""}, + {"is_efas",1009}, + {""}, {""}, + {"longitudeOfIcosahedronPole",1162}, + {""}, + {"md5Data",1239}, + {""}, + {"tiggeCentre",2145}, + {""}, {""}, {""}, + {"interpretationOfNumberOfPoints",985}, + {""}, + {"cnmc_isac",543}, + {""}, + {"longitudeOfLastGridPoint",1163}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfStandardDeviation",1897}, - {""}, {""}, {""}, {""}, - {"spare2",2053}, + {"qnhPresent",1718}, + {""}, {""}, + {"laplacianScalingFactor",1041}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extraLocalSectionPresent",789}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"yDirectionGridLengthInMillimetres",2373}, + {""}, {""}, {""}, {""}, {""}, + {"section_8",2003}, + {""}, {""}, {""}, + {"identificationOfProject",951}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"expandedOriginalWidths",778}, + {"complexPacking",552}, + {"expandedOriginalCodes",775}, + {""}, {""}, {""}, {""}, {""}, + {"verifyingMonth",2301}, + {"verticalCoordinateDefinition",2311}, + {""}, {""}, {""}, + {"subSetM",2108}, + {""}, {""}, + {"projectionCenterFlag",1709}, + {"groupLeafNodeK",910}, {""}, - {"referenceValueError",1765}, + {"local_use",1149}, {""}, - {"scaledValueOfStandardDeviationInTheCluster",1898}, + {"typeOfPostProcessing",2217}, + {"verificationMonth",2299}, + {""}, {""}, {""}, {""}, + {"typeOfCompressionUsed",2203}, + {""}, {""}, {""}, + {"section9Pointer",1979}, + {""}, {""}, {""}, + {"versionNumberOfGribLocalTables",2307}, + {"rectimeHour",1753}, + {"kurt",1035}, + {""}, + {"gts_header",919}, + {"qfePresent",1714}, + {""}, + {"cnmc_cmcc",542}, + {""}, {""}, + {"is_chemical",1007}, + {""}, {""}, {""}, {""}, + {"jIncrement",1026}, + {""}, + {"projectionCentreFlag",1710}, + {"md5Section9",1253}, + {""}, + {"functionCode",875}, + {""}, {""}, {""}, {""}, {""}, + {"n2",1310}, + {"_TS",284}, + {""}, {""}, {""}, {""}, {""}, + {"sampleSizeOfModelClimate",1852}, + {""}, {""}, {""}, {""}, {""}, + {"expandedOriginalScales",777}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"efas_model",717}, + {"section_09",1993}, + {""}, + {"kurtosis",1036}, + {"projectLocalTemplate",1707}, + {""}, {""}, {""}, {""}, + {"instrumentType",977}, + {""}, + {"sp2",2050}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"_anoffset",285}, + {"secondDimensionCoordinateValueDefinition",1915}, + {""}, + {"parameterCategory",1621}, + {""}, {""}, + {"spare2",2056}, + {""}, + {"section8Pointer",1976}, + {""}, {""}, {""}, + {"localHour",1130}, + {"XRInMetres",266}, + {""}, + {"correction2Part",603}, + {""}, {""}, + {"tigge_name",2151}, + {"is_tigge",1013}, + {"consensusCount",566}, + {"longitudeOfStretchingPoleInDegrees",1172}, + {""}, + {"numberOfMissingInStatisticalProcess",1405}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"setCalendarId",2009}, + {"md5Section8",1252}, + {""}, + {"extendedFlag",787}, + {"spare4",2058}, + {""}, + {"numberOfDataValues",1372}, + {""}, {""}, + {"earthMinorAxisInMetres",709}, + {"averaging2Flag",317}, + {"keyData",1031}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"LcxInMetres",119}, + {""}, {""}, + {"mAngleMultiplier",1191}, + {""}, {""}, {""}, {""}, + {"timeDomainTemplate",2157}, + {"LuxInMetres",146}, + {"numberOfDistinctSection4s",1377}, + {""}, {""}, {""}, + {"keySat",1033}, + {""}, {""}, {""}, + {"typicalHour",2232}, + {""}, {""}, {""}, + {"secondLatitudeInDegrees",1918}, + {""}, + {"section4",1957}, + {""}, {""}, {""}, + {"totalNumberOfIterations",2181}, + {""}, + {"constantFieldHalfByte",569}, + {"climateDateTo",424}, + {""}, {""}, + {"dummy2",701}, + {""}, + {"centralLongitude",393}, + {""}, {""}, {""}, {""}, {""}, + {"easternLongitudeOfDomain",713}, {""}, {""}, {"Lar2InDegrees",112}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"averaging1Flag",317}, - {""}, - {"md5DataSection",1238}, - {""}, - {"southernLatitudeOfClusterDomain",2044}, - {""}, + {"typeOfHorizontalLine",2210}, + {""}, {""}, {""}, {""}, {""}, {"Lor2InDegrees",144}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"stepUnits",2087}, - {"unitsConversionOffset",2247}, {""}, {""}, {""}, {""}, - {"scaleValuesBy",1876}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"ijDirectionIncrementGiven",953}, - {"unitsBias",2246}, - {"cloudsTitle4",522}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extraLocalSectionNumber",788}, - {""}, - {"longitudeOfFirstDiamondCenterLine",1155}, - {"endDayTrend3",724}, - {"longitudeOfFirstDiamondCentreLine",1156}, - {""}, {""}, {""}, {""}, - {"upperThreshold",2269}, - {""}, {""}, {""}, - {"spatialProcessing",2056}, - {"selectStepTemplateInstant",2001}, - {"longitudeOfFirstDiamondCentreLineInDegrees",1157}, - {""}, {""}, {""}, {""}, - {"masterTablesVersionNumber",1226}, - {""}, {""}, - {"originatorLocalTemplateNumber",1534}, - {"updateSequenceNumber",2266}, - {""}, {""}, - {"indexedStorageInternalNodeK",958}, - {""}, {""}, - {"extractDateTimeHourStart",803}, - {"DjInMetres",38}, - {""}, {""}, - {"dummy2",699}, - {""}, {""}, {""}, {""}, - {"yearOfCentury",2375}, - {"latitudeLongitudeValues",1047}, - {""}, - {"windUnits",2348}, - {""}, - {"md5Structure",1252}, - {""}, {""}, {""}, {""}, {""}, - {"tsectionNumber3",2189}, - {"numberOfForecastsInTheCluster",1387}, - {"offsetSection3",1493}, - {""}, - {"isectionNumber3",1014}, - {""}, - {"Nj",195}, - {""}, - {"LcxInMetres",119}, - {""}, - {"extremeClockwiseWindDirection",823}, - {""}, {""}, {""}, {""}, {""}, - {"forecastProbabilityNumber",863}, - {""}, - {"heightOrPressureOfLevel",922}, - {""}, {""}, {""}, - {"originalParameterTableNumber",1529}, - {""}, {""}, - {"LuxInMetres",146}, - {"primaryMissingValue",1685}, - {""}, - {"matrixOfValues",1234}, + {"conceptsMasterMarsDir",564}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"marsType2",1221}, - {""}, - {"totalNumberOfDataValuesMissingInStatisticalProcess",2173}, - {""}, {""}, - {"lowerThreshold",1184}, - {""}, {""}, {""}, {""}, - {"reserved2",1774}, - {""}, {""}, {""}, {""}, - {"primaryBitmap",1684}, - {""}, {""}, {""}, - {"scaledValueOfFirstFixedSurface",1884}, - {""}, {""}, {""}, {""}, - {"scaledValueOfSecondSize",1895}, - {"spare4",2055}, - {"cloudsTitle3",517}, - {""}, - {"biFourierCoefficients",351}, - {""}, {""}, - {"indicatorOfTypeOfLevel",962}, + {"bufrdcExpandedDescriptors",374}, + {"epsContinous",763}, {""}, {""}, {""}, {""}, {""}, + {"monthOfEndOfOverallTimeInterval",1299}, + {""}, {""}, {""}, + {"section_08",1992}, + {""}, {""}, {""}, + {"expandedOriginalReferences",776}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"typicalDateTime",2230}, + {"marsType2",1223}, + {""}, {""}, {""}, {""}, + {"yearOfEndOfOverallTimeInterval",2379}, + {"decimalPrecision",655}, + {""}, {""}, {""}, {""}, {""}, + {"sphericalHarmonics",2065}, + {""}, + {"timeRangeIndicator",2165}, + {""}, {""}, + {"section0Pointer",1937}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"xDirectionGridLengthInMetres",2365}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorAtReferencePoint",1857}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfChars",1356}, + {""}, + {"groupWidth",914}, + {""}, {""}, + {"reserved2",1777}, + {"expandedCodes",769}, + {""}, + {"scaledValueOfFirstSize",1888}, + {""}, {""}, {""}, + {"skewness",2035}, + {""}, {""}, + {"minutesAfterReferenceTimeOfDataCutoff",1281}, + {""}, + {"md5Structure",1254}, + {""}, + {"isSatelliteType",1003}, + {"referenceOfWidths",1763}, + {""}, + {"X2",263}, + {""}, {""}, {""}, {""}, + {"unknown",2258}, + {""}, {""}, + {"rdbtimeHour",1740}, + {""}, {"LoVInDegrees",128}, - {"packingType",1540}, + {"centralLongitudeInDegrees",394}, + {""}, {""}, + {"numberOfDistinctSection3s",1376}, + {""}, + {"constituentType",570}, + {""}, {""}, {""}, {""}, + {"localNumberOfObservations",1139}, + {""}, + {"extractedAreaNumberOfSubsets",823}, + {"bitmapPresent",362}, + {""}, {""}, {""}, {""}, + {"latitudeOfStretchingPoleInDegrees",1065}, + {"originatorLocalTemplate",1535}, + {""}, + {"nosigPresent",1335}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"totalNumberOfRepetitions",2182}, + {""}, + {"predefined_grid_values",1663}, + {""}, + {"averaging1Flag",316}, + {"dirty_statistics",687}, + {""}, {""}, + {"hourOfEndOfOverallTimeInterval",934}, + {""}, + {"upperThreshold",2272}, + {""}, {""}, {""}, + {"significanceOfReferenceDateAndTime",2021}, + {""}, {""}, + {"probContinous",1690}, + {""}, + {"primaryMissingValue",1688}, + {""}, {""}, {""}, {""}, {""}, + {"section6Pointer",1968}, + {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfStandardDeviation",1900}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"centreForTable2",399}, + {""}, {""}, {""}, + {"crraLocalVersion",615}, + {""}, + {"startOfHeaders",2070}, + {"scaledValueOfStandardDeviationInTheCluster",1901}, + {""}, + {"flagForAnyFurtherInformation",852}, + {"attributeOfTile",313}, {"LIMITS",99}, - {""}, {""}, {""}, - {"latitudeWhereDxAndDyAreSpecified",1072}, - {"originatingCentreOfAnalysis",1532}, - {""}, - {"typeOfSizeInterval",2219}, - {""}, - {"sectionLengthLimitForProbability",1979}, {""}, {""}, - {"referenceOfWidths",1760}, - {""}, - {"secondaryMissingValueSubstitute",1929}, - {"clusterMember10",529}, - {""}, {""}, {""}, {""}, - {"latitudeWhereDxAndDyAreSpecifiedInDegrees",1073}, + {"cloudsTitle3Trend2",518}, {""}, {""}, {""}, - {"latitudeOfStretchingPoleInDegrees",1063}, + {"groupWidths",915}, {""}, - {"instrumentType",975}, - {""}, {""}, - {"standardParallelInMicrodegrees",2066}, - {""}, - {"section4",1954}, - {""}, {""}, {""}, {""}, {""}, - {"monthOfEndOfOverallTimeInterval",1297}, - {""}, {""}, {""}, {""}, {""}, - {"qualityControl",1717}, + {"md5Section6",1250}, {""}, {""}, {""}, - {"numberOfColumns",1361}, - {""}, {""}, {""}, - {"yearOfEndOfOverallTimeInterval",2376}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfPoints",1414}, - {""}, {""}, {""}, {""}, {""}, - {"epsStatisticsContinous",763}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"dataCategory",619}, - {""}, - {"primaryMissingValueSubstitute",1686}, - {""}, {""}, {""}, - {"section6",1963}, - {""}, {""}, {""}, {""}, - {"boot_edition",367}, - {""}, {""}, {""}, {""}, {""}, - {"md5TimeDomainSection",1253}, - {""}, {""}, {"Lar1InDegrees",110}, - {""}, {""}, {""}, - {"numberOfDataPoints",1368}, - {"pressureUnits",1683}, - {""}, {""}, {""}, {""}, - {"section1Flags",1940}, - {""}, {""}, - {"monthlyVerificationMonth",1302}, - {""}, {""}, - {"resolutionAndComponentFlags",1781}, + {"xDirectionGridLengthInMillimetres",2366}, + {""}, + {"constituentTypeName",571}, + {"cloudsTitle3Trend4",520}, + {"n3",1311}, + {"sfc_levtype",2013}, {"Lor1InDegrees",142}, - {""}, - {"numberIncludedInAverage",1341}, - {"iScansPositively",945}, - {""}, {""}, {""}, {""}, {""}, - {"legBaseDate",1079}, + {""}, {""}, + {"implementationDateOfModelCycle",956}, + {""}, {""}, + {"yearOfCentury",2378}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"bufrdcExpandedDescriptors",375}, + {"correction1",600}, + {"centralClusterDefinition",392}, {""}, - {"centreForTable2",400}, - {""}, - {"secondOrderOfDifferentWidth",1920}, + {"operationalForecastCluster",1520}, + {"numberOfCharacters",1355}, + {"md5TimeDomainSection",1255}, + {"projectLocalTemplateNumber",1708}, {""}, {""}, {""}, - {"hourOfEndOfOverallTimeInterval",932}, - {"swapScanningX",2112}, + {"spatialProcessing",2059}, {""}, - {"crraLocalVersion",613}, + {"scaledValueOfFirstFixedSurface",1887}, + {"heightOrPressureOfLevel",924}, + {""}, {""}, + {"sp3",2051}, + {""}, {""}, {""}, {""}, {""}, + {"localSectionPresent",1142}, + {""}, {""}, {""}, {""}, + {"marsStream1",1219}, + {"scaledValueOfSecondSize",1898}, + {"spare3",2057}, + {""}, + {"westernLongitudeOfDomain",2330}, + {""}, {""}, {""}, {""}, + {"typeOfOriginalFieldValues",2215}, {""}, {""}, {""}, - {"scaledValueOfDistributionFunctionParameter",1881}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"sampleSizeOfModelClimate",1849}, + {"monthOfModelVersion",1301}, + {""}, {""}, + {"is_aerosol_optical",1006}, + {"totalInitialConditions",2172}, + {""}, {""}, {""}, {""}, {""}, + {"coordinate1Start",580}, + {""}, {""}, {""}, {""}, + {"md5DataSection",1240}, + {""}, {""}, + {"groupInternalNodeK",909}, + {""}, {""}, {""}, + {"packingType",1542}, + {"messageLength",1267}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"La1InDegrees",103}, - {"reservedSection4",1780}, - {""}, {""}, {""}, {""}, - {"secondaryBitmap",1923}, - {""}, - {"latitudeOfCentralPointInClusterDomain",1048}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {"Lo1InDegrees",124}, - {""}, {""}, {""}, - {"WMO",259}, + {"timeRangeIndicatorFromStepRange",2166}, + {""}, {""}, + {"southEastLongitudeOfVerficationArea",2043}, {""}, - {"fileConsistencyFlags",840}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"coordinate1Start",578}, - {"selectStepTemplateInterval",2002}, - {""}, - {"legBaseTime",1080}, + {"numberIncludedInAverage",1343}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windDirectionTrend2",2334}, - {"coordinate3OfLastGridPoint",584}, - {""}, {""}, {""}, - {"matchAerosolPacking",1229}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfOriginalFieldValues",2212}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"monthOfModelVersion",1299}, - {"thisMarsClass",2135}, - {""}, {""}, - {"windSpeedTrend2",2345}, - {"typeOfCalendar",2199}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"shapeOfVerificationArea",2012}, - {""}, - {"stepForClustering",2079}, - {"windVariableDirectionTrend3",2356}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"P",206}, - {""}, - {"secondaryBitmapPresent",1924}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"resolutionAndComponentFlags8",1788}, - {""}, {""}, {""}, {""}, - {"reservedSection3",1779}, - {"normAtFinalTime",1322}, - {""}, - {"marsStream1",1217}, - {""}, {""}, {""}, - {"observationType",1461}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"flagShowingPostAuxiliaryArrayInUse",853}, - {"correction1",598}, - {"radiusOfCentralCluster",1725}, - {""}, {""}, {""}, - {"secondOfModelVersion",1918}, - {""}, {""}, - {"minuteOfModelVersion",1276}, - {""}, {""}, - {"halfByte",918}, + {"sp1",2049}, + {"section_6",2001}, + {"primaryMissingValueSubstitute",1689}, {""}, {""}, {""}, {""}, {""}, {""}, - {"flagForAnyFurtherInformation",850}, + {"isCorrection",995}, + {""}, + {"skew",2034}, + {""}, + {"spare1",2055}, {""}, {""}, {""}, {""}, {""}, - {"secondaryBitmaps",1925}, - {"xDirectionGridLengthInMetres",2362}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"local_padding",1146}, - {"X2",264}, - {""}, {""}, {""}, {""}, {""}, - {"spaceUnitFlag",2049}, - {"sp1",2046}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"table2Version",2117}, + {"minuteOfModelVersion",1278}, + {""}, + {"secondOfModelVersion",1921}, {""}, {""}, {""}, - {"numberOfComponents",1362}, - {""}, {""}, {""}, {""}, {""}, - {"longitudeOfNorthWestCornerOfArea",1163}, - {"spare1",2052}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"param_value_min",1619}, + {""}, {""}, + {"typicalCentury",2228}, + {"plusOneinOrdersOfSPD",1653}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"spatialSmoothingOfProduct",2057}, - {"listMembersMissing",1101}, - {""}, - {"gribDataQualityChecks",894}, - {""}, {""}, - {"secondaryBitmapsCount",1926}, - {""}, {""}, {""}, - {"SecondOfModelVersion",224}, - {"N2",171}, - {"windDirectionTrend4",2336}, - {""}, {""}, {""}, - {"AA",6}, - {"centralLongitudeInMicrodegrees",396}, - {""}, {""}, {""}, {""}, - {"section2Present",1947}, - {""}, {""}, {""}, {""}, {""}, - {"section1",1935}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfClusters",1357}, - {"presentTrend3",1665}, - {""}, - {"runwayDepositState2",1805}, - {""}, {""}, - {"section3Padding",1951}, - {""}, {""}, {""}, {""}, - {"windSpeedTrend4",2347}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"isHindcast",997}, - {""}, {""}, {""}, {""}, - {"xDirectionGridLengthInMillimetres",2363}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"secondOfEndOfOverallTimeInterval",1916}, - {""}, {""}, - {"minuteOfEndOfOverallTimeInterval",1274}, - {"scaledValueOfSecondFixedSurface",1894}, - {""}, - {"dummy1",698}, - {""}, {""}, - {"runwaySideCodeState2",1845}, - {"endDayTrend1",722}, - {""}, {""}, {""}, - {"scaleFactorOfLowerLimit",1865}, - {""}, + {"DELETE",25}, {"La2",104}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"thisExperimentVersionNumber",2137}, + {"minuteOfEndOfOverallTimeInterval",1276}, {"Lar2",111}, - {""}, {""}, {""}, {""}, - {"Latin2",116}, - {""}, + {"secondOfEndOfOverallTimeInterval",1919}, + {""}, {""}, {"Lo2",125}, - {""}, {""}, - {"twoOrdersOfSPD",2195}, - {""}, {""}, {""}, {""}, {""}, - {"BufrTemplate",20}, + {""}, + {"Latin2",116}, {"Lor2",143}, - {"backgroundProcess",323}, - {""}, - {"numberOfRepresentativeMember",1432}, {""}, {""}, {""}, {""}, - {"falseEasting",833}, - {""}, {""}, {""}, - {"unitOfTimeRange",2244}, - {""}, {""}, {""}, - {"marsType1",1220}, - {""}, {""}, {""}, - {"section10Length",1936}, - {""}, {""}, {""}, {""}, {""}, - {"reserved1",1773}, - {"missingValueManagement",1282}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"subDefinitions2",2096}, - {""}, {""}, {""}, {""}, - {"dateSSTFieldUsed",643}, - {""}, {""}, {""}, {""}, {""}, - {"NUT",187}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle4Trend3",525}, - {"shortNameECMF",2014}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"formatVersionMajorNumber",867}, - {"gridDescriptionSectionPresent",903}, - {""}, - {"mars_labeling",1222}, - {""}, {""}, {""}, - {"longitudeOfLastGridPointInDegrees",1162}, - {"totalLength",2170}, - {""}, {""}, {""}, - {"cloudsTitle1",507}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"is_s2s",1010}, - {"windVariableDirectionTrend2",2355}, - {"NV",188}, + {"DjInDegrees",37}, {""}, {""}, - {"rectimeHour",1750}, - {""}, {""}, - {"runwayDepositState4",1807}, - {""}, {""}, {""}, - {"Yo",279}, - {""}, {""}, {""}, - {"Yp",280}, - {""}, - {"offsetSection2",1492}, - {"runwayDesignatorState3",1822}, - {"isectionNumber2",1013}, - {""}, {""}, {""}, {""}, - {"section10Pointer",1937}, - {""}, {""}, {""}, {""}, - {"clusterMember7",535}, - {""}, {""}, {""}, - {"masterTablesVersionNumberLatest",1227}, - {"jDirectionIncrementInDegrees",1023}, + {"section1",1938}, + {"cloudsTitle3Trend3",519}, + {"lsdate_bug",1189}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeOfFirstGridPoint",1051}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"updateSequenceNumber",2269}, + {"shapeOfTheEarth",2014}, + {"numberOfPoints",1416}, + {"startOfRange",2072}, {""}, {""}, {""}, {""}, - {"runwaySideCodeState4",1847}, - {""}, {""}, {""}, {""}, {""}, - {"localHour",1128}, - {""}, {""}, {""}, - {"longitudeOfReferencePoint",1164}, + {"standardParallelInMicrodegrees",2069}, + {""}, {""}, + {"biFourierCoefficients",350}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"is_ocean3d_param",1009}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"windVariableDirectionTrend4",2357}, - {""}, - {"rangeBinSpacing",1729}, - {""}, {""}, {""}, {""}, - {"gridPointPosition",905}, + {"conceptsDir1",558}, + {"is_chemical_distfn",1008}, {""}, {""}, - {"scaleFactorOfSecondWavelength",1872}, + {"table2Version",2120}, + {""}, {""}, {""}, {""}, + {"lowerThreshold",1186}, + {"dummy1",700}, + {"cloudsTitle3Trend1",517}, {""}, - {"tiggeLAMName",2143}, + {"latitudeOfFirstGridPoint",1053}, {""}, - {"expandBy",765}, {"LoV",127}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"NrInRadiusOfEarth",197}, - {""}, {""}, - {"g1conceptsMasterDir",876}, - {""}, - {"productionStatusOfProcessedData",1700}, - {""}, {""}, - {"biFourierResolutionParameterN",355}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"azimuthalWidth",321}, - {""}, {""}, - {"scaleFactorOfFirstWavelength",1862}, {""}, {""}, {""}, - {"typicalHour",2229}, - {"probabilityType",1690}, - {""}, {""}, - {"versionOfModelClimate",2306}, - {""}, {""}, {""}, {""}, - {"firstMonthUsedToBuildClimateMonth2",847}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"lengthOfHeaders",1088}, {""}, - {"section2Padding",1945}, - {""}, {""}, {""}, {""}, - {"numberOfDistinctSection5s",1376}, - {"windDirectionTrend1",2333}, - {"expandedUnits",778}, - {""}, {""}, - {"NRj",185}, + {"inputOriginatingCentre",971}, {""}, {""}, {""}, - {"default_min_val",665}, + {"stepRangeInHours",2086}, + {""}, + {"coordinate4Flag",587}, + {"numberOfColumns",1363}, + {""}, {""}, {""}, + {"forecastProbabilityNumber",865}, + {""}, {""}, {""}, {""}, + {"reserved3",1778}, + {""}, + {"longitudeOfLastGridPointInDegrees",1164}, + {""}, + {"shapeOfVerificationArea",2015}, + {""}, {""}, {""}, + {"SecondOfModelVersion",224}, + {"monthlyVerificationMonth",1304}, + {""}, + {"paleontologicalOffset",1613}, + {"listOfContributingSpectralBands",1111}, + {"gridCoordinate",900}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"masterTablesVersionNumber",1228}, + {"longitudeOfNorthWestCornerOfArea",1165}, + {"marsType1",1222}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"missingValueManagement",1284}, + {"offsetSection2",1494}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeOfNorthWestCornerOfArea",1056}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"coordinate2Flag",580}, - {"parametersVersion",1627}, - {"tsectionNumber4",2190}, + {"extremeClockwiseWindDirection",825}, {""}, - {"offsetSection4",1494}, - {"scanningMode7",1906}, - {"isectionNumber4",1015}, - {"deleteCalendarId",668}, - {"windSpeedTrend1",2344}, - {""}, - {"probabilityTypeName",1691}, - {""}, {""}, - {"endMinuteTrend3",735}, - {"sphericalHarmonics",2062}, - {"localYear",1145}, - {""}, {""}, - {"clusterMember3",531}, - {""}, {""}, {""}, - {"constantFieldHalfByte",568}, - {""}, - {"thisExperimentVersionNumber",2134}, - {"localExtensionPadding",1125}, - {""}, {""}, - {"codedNumberOfFirstOrderPackedValues",547}, - {""}, {""}, - {"inputProcessIdentifier",971}, - {""}, - {"offsetBSection9",1477}, - {""}, {""}, {""}, - {"numberOfBits",1344}, - {"section7Pointer",1969}, + {"bufrHeaderCentre",371}, {""}, {""}, {""}, {""}, - {"extractDateTimeYearEnd",814}, + {"shortNameECMF",2017}, {""}, - {"groupLengths",909}, - {"alternativeRowScanning",298}, - {""}, {""}, - {"directionOfVariation",683}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetSection6",1496}, - {"rdbtimeHour",1737}, - {""}, - {"beginDayTrend3",333}, - {"section4Padding",1956}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"dataSubCategory",631}, + {"timeCoordinateDefinition",2156}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"qnhAPresent",1714}, - {"windVariableDirectionTrend1",2354}, - {""}, {""}, {""}, - {"offsetBeforeData",1479}, - {"coordinateFlag2",589}, - {""}, {""}, {""}, - {"scaledValueOfRadiusOfSphericalEarth",1893}, - {"typicalYear",2234}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"X1",262}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"percentileValue",1640}, - {"cloudsTitle4Trend2",524}, + {"offsetSection4",1496}, + {""}, {""}, {""}, {""}, {""}, + {"endDayTrend1",724}, + {"numberOfForecastsInCluster",1387}, + {"reserved1",1776}, + {"extractDateTimeYearStart",818}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"X1",261}, + {""}, {""}, + {"windSpeedTrend2",2348}, {""}, - {"numberOfDataBinsAlongRadials",1366}, + {"default_max_val",666}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"NP",183}, - {"biFourierResolutionSubSetParameterN",357}, + {"cloudsTitle1",506}, + {""}, {""}, + {"P",206}, + {""}, + {"numberOfCategories",1354}, + {""}, {""}, {""}, {""}, + {"windDirectionTrend2",2337}, + {"scaledValueOfSecondFixedSurface",1897}, + {"localExtensionPadding",1127}, + {"section_06",1990}, + {""}, + {"windSpeedTrend4",2350}, + {""}, {""}, {""}, + {"scaledValueOfDistributionFunctionParameter",1884}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section3Pointer",1952}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfLengthOfSemiMinorAxis",1864}, + {"northernLatitudeOfClusterDomain",1333}, + {"firstMonthUsedToBuildClimateMonth2",849}, + {""}, + {"matchAerosolPacking",1231}, + {"windDirectionTrend4",2339}, + {"clusterMember10",528}, + {""}, {""}, {""}, + {"versionNumOfRootGroupSymbolTableEntry",2304}, + {""}, + {"N2",171}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"qnhUnits",1716}, - {"southEastLongitudeOfVerficationArea",2040}, + {"widthOfLengths",2332}, {""}, - {"param_value_max",1616}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"N1",170}, - {""}, {""}, - {"runwayDesignatorState2",1821}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfUnexpandedDescriptors",1444}, + {"section2Present",1950}, + {""}, + {"earthMajorAxis",706}, + {""}, {""}, {""}, {""}, + {"latitudeOfCentralPointInClusterDomain",1050}, {""}, {""}, {""}, - {"typeOfHorizontalLine",2207}, + {"originalParameterTableNumber",1531}, + {""}, {""}, + {"stepInHours",2084}, + {""}, + {"flagForIrregularGridCoordinateList",853}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"modelErrorType",1291}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"subDefinitions2",2099}, + {""}, + {"totalLength",2173}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"probabilityType",1693}, + {"indexedStorageInternalNodeK",960}, + {""}, + {"NV",188}, + {"gts_ddhh00",918}, + {""}, {""}, + {"southernLatitudeOfClusterDomain",2047}, + {""}, {""}, {""}, + {"numberOfLogicals",1401}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeOfSouthernPole",1060}, - {""}, {""}, {""}, - {"runwayDepositState1",1804}, - {""}, - {"parameterUnits",1625}, - {"dateOfSSTFieldUsed",642}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"rdbtimeYear",1742}, - {""}, - {"cloudsTitle4Trend4",526}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfFirstDiamondCentreLine",1158}, {""}, {""}, - {"unpackedError",2257}, - {""}, {""}, {""}, {""}, - {"keyMore",1030}, - {"yCoordinateOfOriginOfSectorImage",2366}, - {""}, {""}, {""}, - {"is_ocean2d_param",1008}, - {""}, {""}, {""}, {""}, - {"ls_labeling",1186}, - {"BOX",17}, + {"longitudeOfFirstDiamondCenterLine",1157}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfDataPoints",1370}, + {""}, + {"longitudeOfFirstDiamondCentreLineInDegrees",1159}, {""}, {""}, {""}, {""}, {""}, {""}, - {"firstMonthUsedToBuildClimateMonth1",846}, - {""}, {""}, - {"runwaySideCodeState1",1844}, + {"AA",6}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"southEastLatitudeOfVerficationArea",2041}, {""}, - {"variationOfVisibility",2283}, - {""}, {""}, - {"PLPresent",209}, + {"formatVersionMajorNumber",869}, + {""}, {""}, {""}, + {"southEastLatitudeOfLPOArea",2040}, {""}, + {"unpackedError",2260}, + {""}, {""}, + {"epsStatisticsContinous",765}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endOfMessage",746}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"numberOfForecastsInTheCluster",1389}, + {""}, + {"probabilityTypeName",1694}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"tigge_short_name",2152}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"doSimpleThinning",696}, + {""}, + {"gribDataQualityChecks",896}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"azimuthalWidth",320}, + {"timeDomainTemplateNumber",2158}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"unitsConversionOffset",2250}, + {"sectionLengthLimitForEnsembles",1981}, + {""}, {""}, {""}, {"La1",102}, - {"section1Padding",1942}, + {"isectionNumber2",1015}, {""}, - {"variationOfVisibilityDirection",2284}, - {""}, {""}, - {"runwayDesignatorState4",1823}, - {""}, - {"scaledValueOfDistanceFromEnsembleMean",1880}, - {"runwayFrictionCoefficientState3",1842}, {"Lar1",109}, - {""}, {""}, - {"variationOfVisibilityDirectionAngle",2285}, - {""}, - {"Latin1",114}, - {"section_10",1992}, - {"Lo1",123}, - {""}, {""}, {""}, {""}, {""}, - {"southEastLatitudeOfLPOArea",2037}, {""}, {""}, {""}, + {"Lo1",123}, + {"runwayDepositState2",1808}, + {"Latin1",114}, {"Lor1",141}, {""}, {""}, {""}, {""}, - {"extractDateTimeHourEnd",801}, - {"METARstr",155}, - {"startOfHeaders",2067}, - {"typeOfSSTFieldUsed",2217}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"section9UniqueIdentifier",1977}, - {""}, - {"cloudsTitle1Trend3",510}, + {"section10Length",1939}, + {"offsetEndSection4",1485}, + {"firstMonthUsedToBuildClimateMonth1",848}, + {"selectStepTemplateInstant",2004}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentTrend2",1664}, + {"tsectionNumber4",2193}, + {"typeOfCalendar",2202}, + {"isectionNumber4",1017}, {""}, {""}, - {"packingError",1539}, + {"coordinateFlag2",591}, + {""}, {""}, {""}, + {"runwayDepositState4",1810}, + {""}, {""}, {""}, + {"packingError",1541}, {""}, {""}, - {"subDefinitions1",2095}, + {"jDirectionIncrement",1022}, + {"coordinate2Flag",582}, {""}, - {"md5Section7",1249}, + {"lengthOfTimeRange",1093}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle3Trend3",520}, - {""}, {""}, {""}, {""}, - {"section8UniqueIdentifier",1974}, - {"earthMajorAxisInMetres",705}, + {"offsetSection3",1495}, + {"listMembersMissing",1103}, + {""}, {""}, + {"g1conceptsMasterDir",878}, + {"frequencyScalingFactor",874}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"marsKeywords1",1204}, {""}, {""}, {""}, {""}, {""}, - {"qfeUnits",1712}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unitsConversionScaleFactor",2248}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section7Length",1968}, - {""}, - {"firstDimensionCoordinateValueDefinition",842}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberMissingFromAveragesOrAccumulations",1342}, + {"windVariableDirectionTrend2",2358}, + {""}, {""}, + {"section9Length",1978}, + {""}, {""}, {""}, + {"numberOfDistinctSection7s",1380}, + {"lengthOfOriginatorLocalTemplate",1091}, + {"twoOrdersOfSPD",2198}, {""}, {""}, {""}, {""}, - {"offsetSection1",1489}, - {"subLocalDefinition2",2098}, - {""}, {""}, {""}, - {"numberOfStepsUsedForClustering",1439}, - {""}, {""}, - {"marsGrid",1201}, - {""}, {""}, {""}, - {"cloudsTitle4Trend1",523}, - {""}, {""}, - {"numberOfUsedTileAttributes",1447}, - {""}, {""}, {""}, {""}, {""}, - {"southEastLatitudeOfVerficationArea",2038}, - {""}, {""}, {""}, - {"Latin2InDegrees",117}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfSubSatellitePoint",1171}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetFromReferenceOfFirstTime",1486}, + {"windVariableDirectionTrend4",2360}, {""}, - {"numberOfUsedSpatialTiles",1446}, + {"boot_edition",366}, {""}, {""}, - {"longitudeOfSubSatellitePointInDegrees",1172}, - {""}, {""}, {""}, - {"runwayDesignatorState1",1820}, - {"latitudeOfIcosahedronPole",1053}, - {""}, {""}, {""}, - {"easternLongitudeOfClusterDomain",710}, - {""}, {""}, {""}, - {"numberOfPackedValues",1410}, + {"backgroundProcess",322}, {""}, - {"totalNumberOfValuesInUnpackedSubset",2182}, + {"numberOfClusters",1359}, {""}, {""}, - {"section3Length",1950}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section2Pointer",1946}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"shapeOfTheEarth",2011}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentTrend4",1666}, - {""}, {""}, {""}, - {"wrongPadding",2358}, + {"runwaySideCodeState2",1848}, {""}, - {"compressedData",555}, - {""}, {""}, - {"lengthOfHeaders",1086}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windGust",2337}, - {""}, {""}, {""}, - {"GTSstr",80}, - {""}, {""}, - {"DiGiven",32}, + {"numberOfTimeRange",1444}, {""}, {""}, {""}, {""}, {""}, {""}, - {"pentagonalResolutionParameterK",1638}, + {"resolutionAndComponentFlags",1784}, {""}, {""}, - {"westernLongitudeOfClusterDomain",2326}, - {""}, - {"typicalMonth",2231}, - {""}, - {"numberOfClusterLowResolution",1356}, + {"windSpeedTrend3",2349}, + {""}, {""}, {""}, {""}, + {"latitudeOfSouthernPole",1062}, {""}, {""}, - {"firstOrderValues",848}, + {"section10Pointer",1940}, {""}, - {"modelErrorType",1289}, + {"fileConsistencyFlags",842}, + {""}, {""}, {""}, + {"distinctLongitudes",692}, + {""}, + {"runwaySideCodeState4",1850}, + {""}, {""}, {""}, + {"offsetSection1",1491}, + {"secondaryMissingValue",1931}, + {""}, + {"windDirectionTrend3",2338}, + {""}, + {"diffInHours",679}, + {""}, {""}, {""}, {""}, {""}, + {"qualityControl",1720}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"gridDescriptionSectionPresent",905}, + {"groupLengths",911}, + {""}, + {"totalNumberOfDataValuesMissingInStatisticalProcess",2176}, + {"correction4",606}, + {"scaledValueOfDistanceFromEnsembleMean",1883}, + {"thisMarsClass",2138}, + {"section8Length",1975}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfComponents",1364}, + {""}, + {"originatorLocalTemplateNumber",1536}, + {""}, {""}, {""}, {""}, + {"latitudeOfIcosahedronPole",1055}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"windSpeedTrend1",2347}, + {"endStepInHours",750}, + {""}, {""}, {""}, {""}, + {"masterTablesVersionNumberLatest",1229}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"gridPointPosition",907}, + {""}, + {"WMO",258}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"windDirectionTrend1",2336}, + {""}, {""}, {""}, {""}, + {"radiusOfCentralCluster",1728}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"listMembersUsed3",1109}, + {""}, {""}, {""}, {""}, + {"section2Padding",1948}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfRepresentativeMember",1434}, + {""}, + {"latitudeWhereDxAndDyAreSpecified",1074}, + {"N1",170}, + {""}, {""}, {""}, {""}, + {"section4Padding",1959}, + {""}, {""}, {""}, {""}, {""}, + {"windVariableDirectionTrend3",2359}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"latitudeWhereDxAndDyAreSpecifiedInDegrees",1075}, + {""}, + {"inputProcessIdentifier",973}, + {""}, {""}, {""}, + {"indicatorOfTypeOfLevel",964}, + {""}, {""}, {""}, {""}, + {"normAtFinalTime",1324}, + {"resolutionAndComponentFlags8",1791}, + {""}, {""}, + {"tiggeLAMName",2146}, + {""}, {""}, {""}, {""}, + {"swapScanningX",2115}, + {""}, + {"swapScanningLat",2113}, + {"subDefinitions1",2098}, + {""}, + {"swapScanningLon",2114}, + {""}, {""}, + {"latitudeLongitudeValues",1049}, + {""}, + {"windVariableDirectionTrend1",2357}, + {""}, + {"section3Flags",1952}, + {""}, {""}, + {"METARstr",155}, + {""}, {""}, {""}, {""}, + {"productionStatusOfProcessedData",1703}, + {"PLPresent",209}, + {""}, {""}, {""}, + {"numberOfPackedValues",1412}, + {"originatingCentreOfAnalysis",1534}, + {""}, + {"sectionLengthLimitForProbability",1982}, + {""}, {""}, {""}, {""}, + {"section0Length",1936}, + {"keyMore",1032}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"extractDateTimeHourStart",805}, + {""}, {""}, + {"latitudeOfFirstGridPointInDegrees",1054}, + {""}, + {"ijDirectionIncrementGiven",955}, + {"coordAveragingTims",577}, + {""}, {""}, + {"section1Flags",1943}, + {"extractDateTimeYearEnd",816}, + {""}, + {"is_s2s",1012}, + {""}, + {"stepHumanReadable",2083}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfLengthOfSemiMinorAxis",1867}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"tsectionNumber3",2192}, + {""}, + {"isectionNumber3",1016}, + {""}, + {"selectStepTemplateInterval",2005}, + {"secondOrderOfDifferentWidth",1923}, + {"presentTrend2",1667}, + {""}, {""}, + {"runwayDepositState3",1809}, + {""}, {""}, {""}, {""}, + {"DjInMetres",38}, + {""}, + {"stepForClustering",2082}, + {"local_padding",1148}, + {"coordinate4OfLastGridPoint",589}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"subLocalDefinition2",2101}, + {"versionNumberOfExperimentalSuite",2306}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentTrend4",1669}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"section3Padding",1954}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"section6Length",1967}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"grib2LocalSectionPresent",893}, + {"runwayDepositState1",1807}, + {""}, {""}, + {"latitudeOfNorthWestCornerOfArea",1058}, + {"endDayTrend4",727}, + {""}, + {"missingValuesPresent",1286}, + {""}, {""}, + {"NrInRadiusOfEarth",197}, + {"section1Padding",1945}, + {""}, {""}, {""}, {""}, {""}, + {"runwaySideCodeState3",1849}, + {""}, {""}, {""}, {""}, {""}, + {"localLatitude2",1133}, + {""}, + {"coordinateFlag1",590}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"falseEasting",835}, + {""}, {""}, {""}, + {"observationType",1463}, + {""}, + {"numberOfDistinctSection5s",1378}, + {"versionOfModelClimate",2309}, + {"cloudsTitle4",521}, + {""}, + {"bitsPerValue",364}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"coordinate1End",578}, + {"grib2LocalSectionNumber",892}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfLowerLimit",1892}, + {""}, + {"scaledValueOfRadiusOfSphericalEarth",1896}, + {""}, {""}, {""}, + {"Yo",278}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"NP",183}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"param_value_max",1618}, + {""}, {""}, {""}, {""}, {""}, + {"Yp",279}, + {""}, + {"runwaySideCodeState1",1847}, + {""}, + {"correction2",602}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"codedNumberOfFirstOrderPackedValues",546}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"secondaryMissingValueSubstitute",1932}, + {"qnhAPresent",1717}, + {""}, {""}, + {"marsStream2",1220}, + {"longitudeOfSubSatellitePoint",1173}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section2Pointer",1949}, + {"longitudeOfSubSatellitePointInDegrees",1174}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"section4Pointer",1960}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"endOfHeadersMarker",744}, + {""}, {""}, + {"stepUnits",2090}, + {"cloudsTitle1Trend2",508}, + {"nameECMF",1314}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"cloudsTitle1Trend4",510}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"clusterMember2",529}, + {"endMinuteTrend2",736}, + {"numberOfDaysInClimateSamplingWindow",1373}, + {""}, {""}, {""}, + {"coordAveraging0",573}, + {""}, + {"mars_labeling",1224}, + {""}, {""}, {""}, + {"deleteCalendarId",670}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"directionOfVariation",685}, + {"centralLongitudeInMicrodegrees",395}, + {""}, + {"southEastLongitudeOfLPOArea",2042}, + {""}, {""}, + {"clusterMember4",531}, + {"endMinuteTrend4",738}, + {"parametersVersion",1629}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"unitsECMF",2253}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"unitsBias",2249}, + {""}, {""}, {""}, {""}, {""}, + {"conceptsDir2",559}, + {""}, {""}, + {"NEAREST",177}, + {""}, {""}, {""}, + {"localYear",1147}, + {""}, {""}, {""}, {""}, + {"default_min_val",667}, + {"presentTrend3",1668}, + {""}, {""}, {""}, {""}, + {"yCoordinateOfOriginOfSectorImage",2369}, + {""}, {""}, {""}, {""}, + {"MonthOfModelVersion",168}, + {""}, {""}, + {"firstDimensionCoordinateValueDefinition",844}, + {""}, {""}, {""}, + {"Dj",35}, + {""}, {""}, {""}, + {"localLongitude2",1136}, + {""}, {""}, {""}, + {"sizeOfLength",2030}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"heightPressureEtcOfLevels",925}, + {"totalNumberOfValuesInUnpackedSubset",2185}, + {""}, {""}, + {"section3Pointer",1955}, + {""}, + {"primaryBitmap",1687}, + {""}, {""}, {""}, {""}, + {"is_ocean2d_param",1010}, + {""}, + {"scaleFactorOfSecondWavelength",1875}, + {"baseTimeEPS",327}, + {""}, {""}, {""}, {""}, {""}, + {"typicalYear",2237}, + {""}, + {"unitsConversionScaleFactor",2251}, + {""}, + {"baseDateEPS",325}, + {"numberMissingFromAveragesOrAccumulations",1344}, + {""}, + {"cloudsCode3",496}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"marsGrid",1203}, + {""}, {""}, {""}, {""}, + {"typeOfPreProcessing",2218}, + {""}, {""}, + {"section1Pointer",1946}, + {"presentTrend1",1666}, + {""}, + {"cloudsTitle1Trend3",509}, + {"biFourierResolutionParameterN",354}, + {"coordinate2Start",583}, + {"MinuteOfModelVersion",157}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"percentileValue",1642}, + {""}, {""}, + {"resolutionAndComponentFlags6",1789}, + {""}, {""}, + {"subLocalDefinition1",2100}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section4Pointer",1957}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"missingValuesPresent",1284}, + {"endDayTrend2",725}, {""}, - {"nameECMF",1312}, + {"typicalMonth",2234}, + {""}, {""}, {""}, {""}, {""}, + {"offsetICEFieldsUsed",1489}, + {"cloudsTitle1Trend1",507}, + {""}, {""}, {""}, + {"reservedSection4",1783}, + {"marsKeywords1",1206}, + {""}, {""}, {""}, {""}, + {"scaleFactorOfPrimeMeridianOffset",1871}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"windUnits",2351}, {""}, {""}, - {"bitsPerValue",365}, - {"section6Pointer",1965}, + {"cloudsTitle2",511}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfFirstWavelength",1865}, + {""}, {""}, + {"md5Product",1243}, {""}, + {"numberOfCoordinatesValues",1367}, + {"Ensemble_Identifier",52}, + {""}, {""}, + {"variationOfVisibility",2286}, + {"formatVersionMinorNumber",870}, + {""}, {""}, {""}, {""}, {""}, + {"scanningMode4",1906}, + {"compressedData",554}, + {""}, + {"localLatitude1",1132}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"variationOfVisibilityDirection",2287}, + {""}, {""}, {""}, {""}, + {"latitudeOfSouthernPoleInDegrees",1063}, + {""}, {""}, {""}, + {"beginDayTrend2",331}, + {"variationOfVisibilityDirectionAngle",2288}, + {""}, {""}, {""}, {""}, + {"extractDateTimeHourEnd",803}, + {""}, {""}, {""}, + {"rdbtimeYear",1745}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"jDirectionIncrementInDegrees",1025}, + {""}, {""}, + {"beginDayTrend4",333}, + {"is_ocean3d_param",1011}, + {""}, {""}, {""}, + {"forecastOrSingularVectorNumber",861}, + {""}, {""}, {""}, {""}, {""}, + {"oceanAtmosphereCoupling",1466}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"upperThresholdValue",2273}, + {""}, {""}, {""}, {""}, {""}, + {"flagShowingPostAuxiliaryArrayInUse",855}, + {""}, {""}, {""}, + {"P2",208}, + {""}, {""}, + {"extractAreaNorthLatitude",796}, + {""}, {""}, {""}, + {"spatialSmoothingOfProduct",2060}, + {"rdbtimeMonth",1742}, + {""}, {""}, {""}, {""}, {""}, + {"GTSstr",80}, + {""}, {""}, {""}, {""}, {""}, + {"subLocalDefinitionLength2",2103}, + {""}, + {"extractAreaEastLongitude",793}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"halfByte",920}, + {""}, + {"clusterMember3",530}, + {"endMinuteTrend3",737}, + {""}, {""}, {""}, {""}, {""}, + {"section7",1970}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"numberOfCodedValues",1360}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfClusterLowResolution",1358}, + {""}, {""}, {""}, {""}, + {"pressureUnits",1686}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"biFourierResolutionSubSetParameterN",356}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"_numberOfValues",287}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"legBaseTime",1082}, + {"DiGiven",32}, + {""}, + {"reducedGrid",1756}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"legBaseDate",1081}, + {""}, {""}, + {"clusterMember1",527}, + {"endMinuteTrend1",735}, + {"typeOfGrid",2209}, + {"section_10",1995}, + {""}, {""}, + {"packedValues",1540}, + {""}, {""}, {""}, {""}, {""}, {"GTS",79}, {""}, - {"bufrHeaderCentre",372}, - {""}, {""}, - {"runwayFrictionCoefficientState2",1841}, + {"spaceUnitFlag",2052}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"grib2LocalSectionPresent",891}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"produceLargeConstantFields",1693}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"dayOfTheYearDate",652}, {""}, {""}, {""}, {""}, - {"offsetEndSection4",1483}, - {"typeOfPreProcessing",2215}, - {""}, {""}, {""}, {""}, - {"numberOfCoordinatesValues",1365}, - {""}, {""}, - {"secondOrderValuesDifferentWidths",1921}, - {""}, - {"cloudsTitle1Trend2",509}, - {""}, {""}, {""}, - {"unitsECMF",2250}, - {""}, {""}, {""}, {""}, - {"coordinateFlag1",588}, - {""}, {""}, {""}, {""}, - {"reducedGrid",1753}, - {""}, {""}, - {"rdbtimeMonth",1739}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle3Trend2",519}, + {"firstOrderValues",850}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfPrimeMeridianOffset",1868}, - {"grib2LocalSectionNumber",890}, - {"Ensemble_Identifier",52}, - {"verticalVisibilityCoded",2312}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeOfFirstGridPointInDegrees",1052}, - {"numberOfSingularVectorsEvolved",1438}, - {""}, - {"Latin1InDegrees",115}, + {"windGust",2340}, {""}, {""}, {""}, {""}, {""}, - {"biFourierResolutionParameterM",354}, - {"runwayFrictionCoefficientState4",1843}, + {"deletePV",673}, + {""}, {""}, {""}, + {"nameLegacyECMF",1315}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"secondaryBitmap",1926}, {""}, - {"stepInHours",2081}, + {"md5Section3",1247}, {""}, {""}, - {"endMinuteTrend2",734}, + {"unitOfTimeRange",2247}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"secondOrderValuesDifferentWidths",1924}, {""}, {""}, {""}, {""}, - {"clusterMember2",530}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfReferencePointInDegrees",1165}, - {""}, - {"marsStream2",1218}, - {"localTablesVersion",1141}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"xCoordinateOfOriginOfSectorImage",2362}, {""}, {""}, {""}, - {"correction2",600}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle1Trend4",511}, - {""}, - {"NC",174}, - {""}, - {"longitudeOfTangencyPoint",1173}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"beginDayTrend2",332}, - {""}, {""}, - {"numberOfCodedValues",1358}, - {""}, {""}, {""}, {""}, {""}, - {"section1Pointer",1943}, - {"extractDateTimeStart",813}, - {""}, - {"Model_Identifier",166}, - {""}, - {"cloudsTitle3Trend4",521}, - {"numberInMixedCoordinateDefinition",1338}, - {""}, {""}, {""}, {""}, {""}, - {"_numberOfValues",288}, - {""}, {""}, {""}, - {"secondaryBitMap",1922}, - {""}, - {"southPoleOnProjectionPlane",2043}, - {"extractDateTimeSecondEnd",810}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeSecondStart",812}, - {""}, {""}, {""}, - {"dateOfIceFieldUsed",639}, - {""}, {""}, {""}, - {"section2Length",1944}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"numberOfClusterHighResolution",1355}, - {"formatVersionMinorNumber",868}, - {""}, - {"mixedCoordinateFieldFlag",1286}, - {"changeIndicatorTrend3",413}, - {""}, {""}, {""}, - {"totalNumberOfClusters",2172}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"experimentVersionNumber",779}, - {""}, - {"localLatitude2",1131}, - {"MonthOfModelVersion",168}, - {""}, {""}, {""}, - {"cloudsAbbreviation3",437}, - {""}, - {"mBasicAngle",1190}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"oceanAtmosphereCoupling",1464}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfGrid",2206}, - {""}, - {"presentTrend1",1663}, - {""}, {""}, {""}, {""}, - {"section_7",1999}, - {""}, {""}, {""}, - {"biFourierResolutionSubSetParameterM",356}, - {""}, {""}, {""}, - {"runwayFrictionCoefficientState1",1840}, - {""}, - {"endMinuteTrend4",736}, - {""}, {""}, {""}, {""}, - {"clusterMember4",532}, - {""}, {""}, {""}, - {"section4Length",1955}, - {""}, {""}, {""}, {""}, - {"xCoordinateOfOriginOfSectorImage",2359}, - {""}, {""}, {""}, {""}, - {"gribTablesVersionNo",896}, - {"endDayTrend2",723}, - {""}, {""}, - {"coordinate2Start",581}, - {""}, {""}, {""}, {""}, - {"MinuteOfModelVersion",157}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"md5Section6",1248}, - {"section6Length",1964}, - {""}, - {"cloudsTitle1Trend1",508}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"listOfParametersUsedForClustering",1113}, - {""}, - {"beginDayTrend4",334}, - {""}, {""}, {""}, {""}, - {"NEAREST",177}, - {""}, - {"section_07",1988}, - {""}, {""}, {""}, - {"clusterMember6",534}, - {"subLocalDefinition1",2097}, - {""}, {""}, {""}, - {"rootTablesDir",1792}, - {"cloudsTitle3Trend1",518}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"localLongitude2",1134}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"stepHumanReadable",2080}, - {""}, {""}, {""}, {""}, {""}, - {"md5Product",1241}, - {""}, - {"extractDateTimeMinuteEnd",804}, - {""}, {""}, {""}, {""}, - {"numberOfDaysInClimateSamplingWindow",1371}, - {"jScansPositively",1026}, - {""}, - {"preProcessingParameter",1657}, - {""}, {""}, {""}, {""}, - {"numberOfContributingSpectralBands",1363}, - {""}, - {"rootGroupObjectHeaderAddress",1790}, - {"realPartOf00",1744}, - {""}, - {"extractDateTimeMinuteStart",806}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"extractDateTimeMonthEnd",807}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfRadarSitesUsed",1428}, - {""}, - {"cloudsTitle2",512}, - {""}, - {"secondaryBitmapsSize",1927}, - {""}, {""}, - {"numberOfControlForecastTube",1364}, - {""}, {""}, - {"extractDateTimeMonthStart",809}, - {"gribMasterTablesVersionNumber",895}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"timeUnitFlag",2164}, - {"latitudeOfSouthernPoleInDegrees",1061}, - {""}, {""}, {""}, - {"endMonthTrend3",739}, - {""}, {""}, {""}, {""}, - {"baseDateEPS",326}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unstructuredGrid",2261}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"forecastOrSingularVectorNumber",859}, - {"matchAerosolBinNumber",1228}, - {"section_3",1995}, - {""}, - {"scanningMode4",1903}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"projSourceString",1701}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section1Length",1941}, - {""}, {""}, - {"projTargetString",1703}, - {""}, {""}, {""}, - {"unstructuredGridType",2263}, - {""}, - {"METAR",154}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"DELETE",25}, - {""}, - {"P2",208}, - {"upperThresholdValue",2270}, - {""}, - {"longitudeOfTheSouthernPoleOfProjection",1177}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"subLocalDefinitionNumber2",2102}, - {"qualityControlIndicator",1718}, - {""}, - {"baseTimeEPS",328}, - {""}, - {"scanningMode6",1905}, - {""}, {""}, - {"efas_post_proc",716}, - {""}, {""}, {""}, - {"tiggeLocalVersion",2144}, - {""}, - {"section_03",1984}, - {""}, {""}, - {"definitionFilesVersion",667}, - {""}, - {"extractAreaNorthLatitude",794}, - {""}, - {"longitudeOfThePoleOfStretching",1174}, - {""}, - {"totalAerosolBinsNumbers",2168}, - {"numberOfPointsInDomain",1425}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"physicalFlag2",1647}, - {"visibilityInKilometresTrend3",2316}, - {""}, {""}, {""}, {""}, - {"PUnset",210}, - {""}, - {"preBitmapValues",1656}, - {""}, - {"jPointsAreConsecutive",1025}, - {""}, - {"changeIndicatorTrend2",412}, - {""}, - {"gts_TTAAii",915}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"versionNumberOfExperimentalSuite",2303}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"heightPressureEtcOfLevels",923}, - {"packedValues",1538}, - {""}, - {"numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction",1359}, - {"numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction",1360}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"lowerThresholdValue",1185}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"accuracyMultipliedByFactor",290}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"localFlagLatestVersion",1127}, - {""}, {""}, {""}, - {"subLocalDefinitionLength2",2100}, - {""}, - {"listMembersUsed4",1108}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section2Used",1948}, - {""}, {""}, {""}, {""}, - {"patch_precip_fp",1636}, - {"identificationOfOriginatingGeneratingCentre",948}, - {""}, {""}, {""}, - {"diffInHours",677}, - {""}, {""}, {""}, - {"changeIndicatorTrend4",414}, - {""}, {""}, {""}, {""}, - {"_leg_number",287}, - {""}, {""}, - {"latitudeOfSubSatellitePoint",1064}, - {""}, - {"endMinuteTrend1",733}, - {""}, {""}, {""}, {""}, - {"clusterMember1",528}, - {""}, {""}, {""}, {""}, {""}, - {"default_step_units",666}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"timeIncrementBetweenSuccessiveFields",2157}, - {""}, {""}, - {"basicAngleOfTheInitialProductionDomain",330}, - {""}, {""}, - {"scaleFactorOfMajorAxisOfOblateSpheroidEarth",1866}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfUpperLimit",1875}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"reservedSection2",1778}, - {"beginDayTrend1",331}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"endStepInHours",748}, - {"cloudsCode4",502}, - {""}, {""}, {""}, {""}, {""}, + {"BOX",17}, {"Sub-Experiment_Identifier",228}, - {"offsetICEFieldsUsed",1487}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"pentagonalResolutionParameterJ",1637}, + {"numberOfDataPointsExpected",1371}, {""}, {""}, {""}, {""}, - {"satelliteID",1850}, + {"latitudeOfSubSatellitePoint",1066}, + {"mixedCoordinateFieldFlag",1288}, + {""}, {""}, {""}, + {"localLongitude1",1135}, + {""}, {""}, {""}, + {"verticalVisibilityCoded",2315}, + {""}, {""}, {""}, {""}, + {"extractDateTimeStart",815}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extractDateTimeSecondEnd",812}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"subLocalDefinitionNumber2",2105}, {""}, - {"getNumberOfValues",885}, - {""}, {""}, - {"expandedCrex_scales",768}, + {"preProcessingParameter",1659}, {""}, - {"listMembersUsed3",1107}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extractDateTimeSecondStart",814}, + {""}, {""}, {""}, {""}, + {"METAR",154}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"lowerThresholdValue",1187}, + {"expandBy",767}, + {""}, + {"reservedSection2",1781}, + {""}, {""}, {""}, {""}, + {"experimentVersionNumber",781}, + {""}, {""}, {""}, + {"unpackedValues",2262}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfMajorAxisOfOblateSpheroidEarth",1869}, + {""}, + {"runwayFrictionCoefficientState2",1844}, + {"numberInMixedCoordinateDefinition",1340}, {""}, {""}, - {"longitudeOfCentralPointInClusterDomain",1152}, + {"Latin2InDegrees",117}, + {""}, + {"dayOfTheYearDate",654}, + {""}, + {"longitudeOfSouthEastCornerOfArea",1168}, + {""}, {""}, {""}, + {"numberOfPointsInDomain",1427}, + {""}, + {"runwayFrictionCoefficientState4",1846}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"jScansPositively",1028}, + {""}, {""}, {""}, {""}, + {"secondaryBitmapPresent",1927}, + {""}, + {"longitudeOfReferencePoint",1166}, {""}, {""}, {""}, {""}, {""}, - {"numberOfBytesInLocalDefinition",1349}, + {"beginDayTrend3",332}, + {""}, + {"countOfICEFieldsUsed",610}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unstructuredGridSubtype",2262}, - {"isRotatedGrid",999}, {""}, {""}, - {"southEastLongitudeOfLPOArea",2039}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"yCoordinateOfSubSatellitePoint",2367}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cavokOrVisibility",382}, + {"backgroundGeneratingProcessIdentifier",321}, + {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfEarthMajorAxis",1861}, + {"scaleFactorOfEarthMinorAxis",1862}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"localLatitude1",1130}, - {"numberOfDataPointsExpected",1369}, + {"biFourierResolutionParameterM",353}, + {"sizeOfPostAuxiliaryArray",2032}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"crraSuiteID",615}, + {"numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction",1361}, + {"numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction",1362}, {""}, - {"deletePV",671}, + {"secondaryBitmaps",1928}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"beginDayTrend1",330}, + {""}, {""}, {""}, {""}, + {"Model_Identifier",166}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"postAuxiliaryArrayPresent",1656}, + {""}, + {"dateSSTFieldUsed",645}, {""}, {""}, {""}, - {"expandedCrex_units",769}, + {"listOfParametersUsedForClustering",1115}, {""}, - {"northWestLongitudeOfVerficationArea",1330}, + {"numberOfPointsAlongXAxis",1423}, {""}, - {"numberOfBytesOfFreeFormatData",1350}, - {""}, - {"countOfICEFieldsUsed",608}, - {""}, {""}, - {"Model_Additional_Information",165}, - {""}, {""}, - {"laplacianScalingFactorUnset",1040}, - {"unpackedSubsetPrecision",2258}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"cloudsCode3",497}, - {""}, - {"changeIndicatorTrend1",411}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"secondaryBitmapsCount",1929}, + {"rootTablesDir",1795}, {""}, {""}, {""}, - {"localTablesVersionNumber",1142}, - {"YR",275}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"verificationYear",2297}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"unexpandedDescriptors",2239}, - {""}, {""}, - {"runwayDepositCodeState3",1802}, - {""}, {""}, {""}, - {"postAuxiliaryArrayPresent",1654}, - {""}, {""}, - {"scaleFactorOfCentralWaveNumber",1855}, - {""}, - {"recentWeather",1746}, - {"INBITS",90}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {"PVPresent",211}, + {""}, {""}, + {"Nj",195}, + {""}, {""}, {""}, {""}, {""}, + {"cfVarNameECMF",407}, + {"BufrTemplate",20}, + {""}, {""}, {""}, + {"cavokOrVisibility",381}, + {""}, {""}, {""}, {""}, {""}, + {"P1",207}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetBeforeData",1481}, + {""}, {""}, {""}, {""}, {""}, + {"runwayFrictionCoefficientState3",1845}, + {"generalExtended2ordr",882}, + {""}, {""}, {""}, {""}, {""}, + {"subLocalDefinitionLength1",2102}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayDesignatorState2",1824}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"expandedUnits",780}, + {""}, {""}, {""}, {""}, + {"runwayDesignatorState4",1826}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayFrictionCoefficientState1",1843}, + {""}, {""}, + {"NUT",187}, + {"Latin1InDegrees",115}, + {""}, + {"totalNumberOfClusters",2175}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfSingularVectorsEvolved",1440}, + {""}, + {"rangeBinSpacing",1732}, + {""}, {""}, {""}, {""}, + {"unstructuredGrid",2264}, + {""}, {""}, {""}, {""}, + {"longitudeOfTangencyPoint",1175}, + {""}, + {"earthMajorAxisInMetres",707}, + {""}, {""}, {""}, {""}, + {"integerPointValues",978}, + {""}, {""}, {""}, + {"offsetFromReferenceOfFirstTime",1488}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"localTablesVersion",1143}, + {""}, {""}, + {"section7Pointer",1972}, + {""}, {""}, + {"unpackedSubsetPrecision",2261}, + {"unstructuredGridType",2266}, + {""}, {""}, {""}, + {"cloudsAbbreviation2",431}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"offsetBSection9",1479}, + {""}, {""}, {""}, + {"md5Section7",1251}, + {""}, {""}, {""}, + {"cloudsTitle4Trend2",523}, + {""}, {""}, {""}, + {"section11Length",1941}, + {""}, {""}, {""}, {""}, + {"cloudsAbbreviation4",441}, + {""}, {""}, {""}, + {"numberOfContributingSpectralBands",1365}, + {"cloudsTitle4Trend4",525}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"definitionFilesVersion",669}, + {"offsetSection7",1499}, + {""}, {""}, + {"biFourierResolutionSubSetParameterM",355}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"basicAngleOfTheInitialProductionDomain",329}, + {"extractDateTimeMinuteEnd",806}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"dataSubCategory",633}, + {""}, {""}, {""}, + {"extractDateTimeMinuteStart",808}, + {""}, {""}, + {"northWestLongitudeOfVerficationArea",1332}, + {""}, + {"cfNameECMF",404}, + {""}, + {"changeIndicatorTrend2",411}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"changeIndicatorTrend4",413}, + {"endMonthTrend2",740}, + {""}, {""}, + {"extractDateTimeMonthEnd",809}, + {""}, + {"unexpandedDescriptors",2242}, + {""}, {""}, {""}, {""}, + {"runwayDesignatorState3",1825}, + {""}, {""}, {""}, + {"extractDateTimeMonthStart",811}, + {""}, {""}, {""}, {""}, + {"section2Length",1947}, + {"tiggeLocalVersion",2147}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endMonthTrend4",742}, + {""}, + {"subLocalDefinitionNumber1",2104}, + {""}, {""}, + {"section4Length",1958}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"section11Pointer",1942}, + {""}, {""}, {""}, {""}, + {"rootGroupObjectHeaderAddress",1793}, + {""}, + {"qnhUnits",1719}, + {"runwayDesignatorState1",1823}, + {""}, {""}, {""}, + {"dateOfSSTFieldUsed",644}, + {""}, + {"identificationOfOriginatingGeneratingCentre",950}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"unexpandedDescriptorsEncoded",2243}, + {""}, + {"numberOfUnexpandedDescriptors",1446}, + {""}, + {"section9UniqueIdentifier",1980}, + {"numberOfClusterHighResolution",1357}, + {""}, {""}, + {"parameterUnits",1627}, + {""}, {""}, {""}, {""}, + {"referenceForGroupWidths",1761}, + {""}, {""}, {""}, + {"visibilityTrend3",2323}, + {"gribTablesVersionNo",898}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"longitudeOfCentralPointInClusterDomain",1154}, + {"numberOfControlForecastTube",1366}, + {""}, + {"marsClass2",1196}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {"ITERATOR",92}, {""}, - {"localLongitude1",1133}, + {"satelliteID",1853}, + {"cloudsTitle4Trend3",524}, {""}, {""}, - {"sourceOfGridDefinition",2035}, - {""}, {""}, {""}, {""}, - {"integerPointValues",976}, - {""}, {""}, - {"cloudsAbbreviation2",432}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"northWestLatitudeOfLPOArea",1327}, - {"numberOfPointsAlongXAxis",1421}, - {"marsClass2",1194}, - {""}, {""}, - {"backgroundGeneratingProcessIdentifier",322}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"tempPressureUnits",2127}, - {"expandedCrex_widths",770}, - {""}, - {"unexpandedDescriptorsEncoded",2240}, - {""}, {""}, {""}, {""}, {""}, - {"cfNameECMF",405}, - {""}, {""}, - {"longitudeOfSouthEastCornerOfArea",1166}, - {""}, {""}, {""}, {""}, - {"beginMinuteTrend3",341}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"tablesLocalDir",2121}, - {"tiggeSuiteID",2147}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfSingularVectorsComputed",1437}, - {""}, {""}, {""}, {""}, - {"gaussianGridName",878}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"physicalMeaningOfVerticalCoordinate",1648}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"unpackedValues",2259}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"localUsePresent",1144}, + {"alternativeRowScanning",297}, + {"NC",174}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfLowerLimit",1889}, - {"endOfHeadersMarker",742}, - {""}, {""}, {""}, {""}, - {"P1",207}, - {""}, {""}, {""}, - {"northWestLatitudeOfVerficationArea",1328}, - {""}, {""}, {""}, {""}, {""}, - {"subLocalDefinitionNumber1",2101}, - {""}, {""}, {""}, - {"coordinate1End",576}, - {""}, {""}, {""}, - {"sizeOfLength",2027}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section7UniqueIdentifier",1970}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"physicalFlag1",1646}, + {"qfeUnits",1715}, {""}, - {"pentagonalResolutionParameterM",1639}, - {""}, {""}, {""}, {""}, - {"latitudeFirstInDegrees",1045}, - {"cloudsAbbreviation4",442}, - {"P_INST",212}, - {""}, {""}, {""}, - {"endMonthTrend2",738}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"typeOfSSTFieldUsed",2220}, {""}, - {"scaleFactorOfEarthMajorAxis",1858}, - {"latitudeOfTangencyPoint",1066}, - {""}, - {"scaleFactorOfEarthMinorAxis",1859}, - {""}, {""}, {""}, {""}, - {"variationOfVisibilityTrend3",2292}, - {"referenceForGroupWidths",1758}, - {""}, {""}, {""}, {""}, {""}, - {"section_2",1994}, - {""}, {""}, {""}, - {"dateOfModelVersion",640}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"timeOfModelVersion",2160}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"inputOverriddenReferenceValues",970}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"subLocalDefinitionLength1",2099}, - {""}, - {"clusteringDomain",540}, - {""}, {""}, {""}, {""}, - {"section3UniqueIdentifier",1953}, - {""}, {""}, {""}, - {"scaleFactorOfLengthOfSemiMajorAxis",1863}, - {""}, {""}, {""}, - {"cloudsTitle2Trend3",515}, + {"longitudeOfThePoleOfStretching",1176}, {""}, {""}, - {"variationOfVisibilityDirectionTrend3",2288}, + {"numberOfBits",1346}, + {""}, {""}, {""}, {""}, + {"gts_TTAAii",917}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section_02",1983}, - {""}, {""}, - {"endGridDefinition",727}, - {""}, {""}, - {"typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing",2223}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayDepthOfDepositCodeState3",1810}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"visibilityInKilometresTrend2",2315}, - {"yearOfModelVersion",2378}, + {"sourceOfGridDefinition",2038}, + {""}, + {"section8UniqueIdentifier",1977}, + {""}, + {"longitudeOfTheSouthernPoleOfProjection",1179}, + {""}, {""}, {""}, + {"cloudsTitle4Trend1",522}, {""}, {""}, {""}, {""}, - {"referenceForGroupLengths",1757}, + {"md5Headers",1242}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"changeIndicatorTrend3",412}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"referenceForGroupLengths",1760}, {""}, {""}, {""}, - {"section11Length",1938}, - {""}, {""}, {""}, {""}, {""}, - {"lengthOf4DvarWindow",1085}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"rdb_key",1733}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unstructuredGridUUID",2264}, - {"scaledValueOfSecondWavelength",1896}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudinalDirectionGridLength",1076}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"dayOfModelVersion",650}, + {"tablesLocalDir",2124}, {""}, - {"DayOfModelVersion",30}, - {"endMonthTrend4",740}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"beginMinuteTrend2",340}, - {""}, {""}, - {"scaledValueOfFirstWavelength",1886}, - {""}, {""}, {""}, {""}, {""}, - {"hourOfModelVersion",934}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section_4",1996}, + {"secondaryBitmapsSize",1930}, + {"easternLongitudeOfClusterDomain",712}, {""}, - {"section11Pointer",1939}, - {""}, - {"coordAveraging3",574}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfGroups",1392}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCodeValueState3",1834}, - {"visibilityTrend4",2321}, - {"inputShortDelayedDescriptorReplicationFactor",972}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"meanRVR3",1256}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cfVarNameECMF",408}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section_6",1998}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ZLMULT",283}, - {""}, - {"section_04",1985}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"beginMinuteTrend4",342}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"visibilityInKilometresTrend4",2317}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"widthOfWidths",2331}, + {"qualityControlIndicator",1721}, {""}, {""}, {""}, {""}, - {"cloudsCode1",487}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"remarkPresent",1767}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"section_06",1987}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"matrixBitmapsPresent",1233}, - {"NC2",176}, - {""}, {""}, {""}, - {"xCoordinateOfSubSatellitePoint",2360}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section5Pointer",1961}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"visibilityTrend3",2320}, - {"variationOfVisibilityTrend2",2291}, - {""}, {""}, {""}, - {"firstDimensionPhysicalSignificance",843}, - {"templatesMasterDir",2131}, - {""}, {""}, - {"latitudeOfSubSatellitePointInDegrees",1065}, - {""}, - {"cloudsAbbreviation1",427}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"marsClass1",1193}, - {""}, {""}, - {"numberOfParallelsBetweenAPoleAndTheEquator",1411}, - {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfLengthOfSemiMinorAxis",1888}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"paramIdECMF",1614}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"generalExtended2ordr",880}, - {""}, {""}, {""}, {""}, {""}, - {"offsetValuesBy",1501}, - {""}, {""}, - {"cloudsTitle2Trend2",514}, - {""}, {""}, - {"variationOfVisibilityDirectionTrend2",2287}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"runwayDepthOfDepositCodeState2",1809}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayDepositCodeState2",1801}, - {"variationOfVisibilityTrend4",2293}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"DjGiven",36}, - {""}, {""}, {""}, {""}, {""}, - {"beginMinuteTrend1",339}, - {""}, {""}, - {"extractAreaEastLongitude",791}, - {"runwayDesignatorRVR3",1818}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"mask",1223}, - {"latitudeOfReferencePoint",1057}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfGroupsOfDataValues",1393}, - {""}, - {"resolutionAndComponentFlags7",1787}, - {""}, {""}, {""}, {""}, {""}, - {"section4UniqueIdentifier",1958}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle2Trend4",516}, - {""}, {""}, - {"variationOfVisibilityDirectionTrend4",2289}, + {"crraSuiteID",617}, {""}, {""}, {""}, {""}, - {"section5",1959}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"kindOfProduct",1034}, + {""}, {""}, {""}, {""}, + {"section3Length",1953}, {""}, - {"section6UniqueIdentifier",1966}, + {"section5",1962}, + {""}, + {"changeIndicatorTrend1",410}, + {"coordinate2End",581}, + {""}, + {"addEmptySection2",290}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"unstructuredGridSubtype",2265}, + {"section1Length",1944}, + {"ls_labeling",1188}, + {"wrongPadding",2361}, + {""}, {""}, + {"numberOfStepsUsedForClustering",1441}, {""}, {""}, {""}, - {"runwayDepthOfDepositCodeState4",1811}, - {""}, {""}, - {"Date_E3",28}, - {""}, - {"pack",1537}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"hoursAfterReferenceTimeOfDataCutoff",937}, - {""}, {""}, {""}, {""}, - {"WRAPstr",261}, - {""}, {""}, {""}, {""}, - {"endMonthTrend1",737}, + {"numberOfUsedTileAttributes",1449}, + {""}, {""}, {""}, + {"localFlagLatestVersion",1129}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"numberOfBytesPerInteger",1351}, - {"md5Section4",1246}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCodeValueState2",1833}, + {""}, {""}, {""}, + {"latitudeOfSubSatellitePointInDegrees",1067}, + {""}, + {"isRotatedGrid",1001}, + {""}, + {"southPoleOnProjectionPlane",2046}, {""}, {""}, {""}, {""}, {""}, - {"section_1",1991}, - {""}, {""}, {""}, - {"reflectivityCalibrationConstant",1766}, - {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfMinorAxisOfOblateSpheroidEarth",1867}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsAbbreviation3",436}, {""}, {""}, - {"kindOfProduct",1032}, - {"unpack",2256}, + {"numberOfDataBinsAlongRadials",1368}, {""}, - {"monthlyVerificationYear",1304}, - {"iDirectionIncrementGiven",940}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"ceilingAndVisibilityOK",388}, - {""}, {""}, {""}, - {"cloudsBaseCoded4Trend3",485}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayDepositCodeState4",1803}, - {""}, {""}, {""}, - {"variationOfVisibilityTrend1",2290}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section_01",1982}, - {""}, - {"nameLegacyECMF",1313}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"numberOfPointsAlongXAxisInCouplingArea",1422}, - {""}, {""}, {""}, {""}, {""}, - {"visibilityInKilometresTrend1",2314}, - {"runwayFrictionCodeValueState4",1835}, - {"section5Length",1960}, - {""}, - {"numberOfBitsForScaledGroupLengths",1346}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"resolutionAndComponentFlags3",1784}, - {""}, {""}, {""}, {""}, {""}, - {"md5Section3",1245}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle2Trend1",513}, - {"typeOfWavelengthInterval",2224}, - {""}, - {"variationOfVisibilityDirectionTrend1",2286}, - {"md5Section5",1247}, - {""}, {""}, {""}, {""}, - {"longitudeLastInDegrees",1151}, - {""}, {""}, - {"numberOfPointsAlongAMeridian",1415}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"7777",5}, - {""}, {""}, - {"runwayDepthOfDepositCodeState1",1808}, - {""}, {""}, - {"windUnitsTrend3",2351}, - {""}, {""}, - {"md5Section10",1243}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"physicalFlag2",1649}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation3Trend3",440}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"addEmptySection2",291}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Product_Identifier",215}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"listMembersMissing3",1103}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"numberOfPointsAlongSecondAxis",1418}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetSection11",1491}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"numberOfMissingValues",1404}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCodeValueState1",1832}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"NC1",175}, - {"coordAveraging2",573}, - {""}, {""}, - {"runwayFrictionCoefficientCodeState3",1838}, - {""}, {""}, {""}, {""}, - {"cloudsBase4",462}, - {"GDSPresent",69}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"deleteLocalDefinition",670}, - {""}, - {"sizeOfPostAuxiliaryArray",2029}, - {"northWestLongitudeOfLPOArea",1329}, - {"scaledValueOfPrimeMeridianOffset",1892}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"meanRVR2",1255}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"longitudeOfThePolePoint",1175}, - {"visibilityTrend1",2318}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"codedNumberOfGroups",548}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded4Trend2",484}, - {"numberOfPointsAlongAParallel",1416}, - {""}, - {"typeOfGeneratingProcess",2205}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"setToMissingIfOutOfRange",2009}, - {""}, {""}, - {"commonBlock",552}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"experimentVersionNumberOfAnalysis",782}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"runwayDepositCodeState1",1800}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"cloudsBase3",457}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"cloudsBaseCoded4",482}, - {""}, - {"numberOfPressureLevelsUsedForClustering",1427}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"subdivisionsOfBasicAngle",2107}, - {""}, {""}, {""}, {""}, - {"cloudsBaseCoded4Trend4",486}, - {""}, - {"offsetFromOriginToInnerBound",1485}, - {""}, {""}, {""}, - {"Ensemble_Combination_Number",51}, - {""}, {""}, {""}, {""}, {""}, - {"totalNumberOfGridPoints",2177}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation2Trend3",435}, - {""}, {""}, {""}, {""}, {""}, - {"typeOfPacking",2213}, - {""}, {""}, {""}, - {"offsetAfterData",1471}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"meanRVR4",1257}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded1Trend3",470}, - {""}, {""}, {""}, - {"runwayDesignatorRVR2",1817}, - {""}, {""}, {""}, - {"YRInMetres",276}, - {""}, {""}, {""}, - {"cloudsBaseCoded3",477}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded3Trend3",480}, - {"cloudsAbbreviation4Trend3",445}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"checkInternalVersion",420}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"recentWeatherTry",1747}, - {"Date_E2",27}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCoefficientCodeState2",1837}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded4Trend1",483}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"tsectionNumber5",2191}, - {""}, - {"offsetSection5",1495}, - {""}, - {"md5Section1",1242}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"baseDateOfThisLeg",327}, - {""}, {""}, {""}, - {"uuidOfVGrid",2278}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_local40_1",1602}, - {""}, - {"latitudeOfReferencePointInDegrees",1058}, - {""}, {""}, {""}, {""}, - {"runwayFrictionCoefficientCodeState4",1839}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"runwayDesignatorRVR4",1819}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"versionNumOfSharedHeaderMessageFormat",2302}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"resolutionAndComponentFlags2",1783}, - {""}, - {"cloudsAbbreviation1Trend3",430}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"md5Headers",1240}, - {""}, - {"constantAntennaElevationAngle",567}, - {""}, {""}, {""}, - {"baseTimeOfThisLeg",329}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractAreaSouthLatitude",795}, - {""}, {""}, - {"extractDateTimeEnd",800}, - {"Date_E4",29}, - {""}, {""}, - {"windUnitsTrend2",2350}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather3Present",1677}, - {""}, {""}, {""}, - {"cloudsAbbreviation3Trend2",439}, - {""}, - {"ECMWF",46}, - {""}, {""}, - {"numberOfGridInReference",1390}, - {""}, - {"listMembersUsed2",1106}, - {""}, {""}, - {"iDirectionIncrementGridLength",941}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"horizontalDomainTemplate",928}, - {""}, {""}, - {"coordinate2End",579}, - {""}, - {"coordAveraging1",572}, - {"firstLatitudeInDegrees",845}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"runwayExtentOfContaminationState3",1830}, - {""}, - {"HDF5str",82}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"observationDiagnostic",1459}, - {""}, {""}, - {"listMembersMissing2",1102}, - {""}, {""}, {""}, {""}, - {"meanRVR1",1254}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded1Trend2",469}, - {""}, {""}, - {"spacingOfBinsAlongRadials",2050}, - {"shortNameLegacyECMF",2015}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfPointsUsed",1426}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCoefficientCodeState1",1836}, - {""}, {""}, - {"cloudsBaseCoded3Trend2",479}, - {""}, {""}, {""}, {""}, - {"cloudsCode2",492}, - {""}, - {"scaledValueOfMajorAxisOfOblateSpheroidEarth",1890}, - {""}, {""}, {""}, - {"latitudeOfLastGridPoint",1054}, - {""}, {""}, - {"scaledValueOfUpperLimit",1899}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayDepthOfDepositState3",1814}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"resolutionAndComponentFlags4",1785}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"beginMonthTrend4",346}, - {""}, - {"numberOfPointsAlongFirstAxis",1417}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded1Trend4",471}, - {""}, {""}, - {"UseEcmfConventions",254}, - {""}, - {"windUnitsTrend4",2352}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"weightAppliedToClimateMonth1",2323}, - {"paramIdLegacyECMF",1615}, - {""}, {""}, {""}, {""}, - {"resolutionAndComponentFlags6",1786}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded3Trend4",481}, - {"cloudsAbbreviation3Trend4",441}, - {""}, - {"cloudsBase1",447}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfProcessedData",2216}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"NB",173}, - {""}, - {"offsetToEndOf4DvarWindow",1500}, - {""}, - {"RENAME",216}, - {""}, {""}, - {"legacyGaussSubarea",1082}, - {"longitudeOfSouthernPole",1167}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"listMembersMissing4",1104}, - {""}, {""}, {""}, - {"Total_Number_Members_Used",253}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"beginMonthTrend3",345}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayDesignatorRVR1",1816}, - {""}, {""}, {""}, - {"offsetBBitmap",1474}, - {""}, {""}, {""}, - {"northLatitudeOfDomainOfTubing",1326}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"scaledValueOfCentralWaveNumber",1879}, - {""}, - {"beginHourTrend3",337}, - {""}, - {"intervalBetweenTimes",984}, - {""}, - {"CLNOMA",24}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"padding_sec1_loc",1605}, - {""}, - {"cloudsBaseCoded1",467}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather2Present",1672}, - {""}, {""}, {""}, - {"cloudsAbbreviation2Trend2",434}, - {""}, {""}, - {"cloudsBaseCoded1Trend1",468}, - {"Total_Number_Members_Possible",252}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"southLatitudeOfDomainOfTubing",2042}, - {""}, {""}, {""}, {""}, {""}, - {"eastLongitudeOfDomainOfTubing",709}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded3Trend1",478}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayExtentOfContaminationState2",1829}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"Y2",273}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"missingValueManagementUsed",1283}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"LLCOSP",100}, - {""}, - {"cloudsAbbreviation4Trend2",444}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"beginYearTrend3",349}, - {""}, {""}, {""}, - {"qualityValueAssociatedWithParameter",1719}, - {""}, - {"westLongitudeOfDomainOfTubing",2325}, - {""}, {""}, {""}, {""}, {""}, - {"endMark",732}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayExtentOfContaminationState4",1831}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"disableGrib1LocalSection",686}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"resolutionAndComponentFlags1",1782}, - {""}, {""}, - {"oneMinuteMeanMaximumRVR3",1508}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode4Trend3",505}, - {""}, {""}, {""}, {""}, {""}, - {"longitudeOfThePolePointInDegrees",1176}, - {""}, {""}, {""}, - {"offsetBeforePL",1480}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation2Trend4",436}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"windUnitsTrend1",2349}, - {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfEarthMajorAxis",1882}, - {""}, {""}, - {"scaledValueOfEarthMinorAxis",1883}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"cloudsAbbreviation3Trend1",438}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"section5UniqueIdentifier",1962}, - {""}, - {"Total_Number_Members_Missing",251}, - {"Minute_E3",159}, - {""}, - {"numberOfUsefulPointsAlongXAxis",1448}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfLengthOfSemiMajorAxis",1887}, - {"numberOfReforecastYearsInModelClimate",1430}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather1Present",1667}, - {"cloudsAbbreviation4Trend4",446}, - {""}, {""}, - {"cloudsAbbreviation1Trend2",429}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"runwayExtentOfContaminationState1",1828}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ZLBASE",282}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfPointsAlongTheXAxis",1419}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"FMULTE",66}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"clusterMember5",533}, - {""}, {""}, {""}, {""}, - {"visibilityTrend2",2319}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetBeforeBitmap",1478}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"radiusOfTheEarth",1727}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetBSection6",1476}, - {""}, {""}, {""}, {""}, - {"runwayDepthOfDepositState2",1813}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"cloudsAbbreviation1Trend4",431}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"jDirectionIncrementGiven",1021}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"cloudsCode4Trend2",504}, - {""}, {""}, {""}, {""}, - {"pastTendencyRVR4",1635}, - {""}, - {"extractDateTimeDayStart",799}, - {""}, {""}, {""}, {""}, {""}, - {"ICEFieldsUsed",87}, - {""}, - {"beginMonthTrend1",343}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"theHindcastMarsStream",2132}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"skipExtraKeyAttributes",2033}, - {""}, {""}, {""}, {""}, {""}, - {"endHourTrend3",730}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"cloudsAbbreviation2Trend1",433}, - {""}, {""}, {""}, {""}, {""}, - {"scanningMode5",1904}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"numberOfBitsContainingEachPackedValue",1345}, - {""}, - {"latitudeOfThePolePoint",1068}, - {""}, {""}, {""}, - {"countOfGroupLengths",607}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"Local_Number_Members_Used",137}, - {"cloudsCode4Trend4",506}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"Y1",271}, - {""}, - {"ccsdsCompressionOptionsMask",385}, - {"FMULTM",67}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"pastTendencyRVR3",1634}, + {"produceLargeConstantFields",1696}, {""}, {"SOH",221}, {""}, {""}, {""}, - {"runwayDepthOfDepositState4",1815}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"beginHourTrend2",336}, - {"cloudsAbbreviation4Trend1",443}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"endYearTrend3",752}, - {""}, {""}, {""}, - {"cloudsCode1Trend3",490}, - {"horizontalDomainTemplateNumber",929}, + {"yCoordinateOfSubSatellitePoint",2370}, {""}, {""}, {""}, {""}, - {"md5GridSection",1239}, - {""}, {""}, {""}, {""}, - {"Local_Number_Members_Possible",133}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode3Trend3",500}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"HDF5str",82}, {""}, - {"md5Section2",1244}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"flagForNormalOrStaggeredGrid",852}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"latitudeOfLastGridPointInDegrees",1055}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"scaledValueOfMinorAxisOfOblateSpheroidEarth",1891}, - {"cloudsCode4Trend1",503}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"beginYearTrend2",348}, + {"offsetSection11",1493}, + {"section5Pointer",1964}, + {""}, {""}, + {"realPartOf00",1747}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfSecondOrderPackedValues",1435}, - {""}, - {"numberOfHorizontalPoints",1394}, - {"************_PRODUCT_***************",3}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"radiusOfClusterDomain",1726}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"latitudinalDirectionGridLength",1078}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfBitsUsedForTheScaledGroupLengths",1348}, - {"beginHourTrend4",338}, + {"paramIdECMF",1616}, + {""}, + {"efas_post_proc",718}, + {"tiggeSuiteID",2150}, + {"section_2",1997}, {""}, {""}, {""}, - {"cloudsAbbreviation1Trend1",428}, - {"oneMinuteMeanMaximumRVR2",1507}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfSouthernPoleInDegrees",1168}, - {""}, - {"cloudsBaseCoded2Trend3",475}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"WRAP",260}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsTitle2Trend2",513}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Original_Parameter_Identifier",205}, + {"numberOfGroups",1394}, + {""}, {""}, + {"cloudsTitle2Trend4",515}, + {""}, {""}, {""}, + {"pastTendencyRVR3",1636}, + {"cloudsAbbreviation1",426}, + {""}, {""}, {""}, {""}, + {"section_4",1999}, + {""}, {""}, + {"latitudeFirstInDegrees",1047}, + {""}, {""}, + {"scaledValueOfLengthOfSemiMinorAxis",1891}, + {"endMonthTrend3",741}, + {""}, {""}, {""}, + {"expandedCrex_scales",770}, + {""}, + {"Model_Additional_Information",165}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"northWestLatitudeOfVerficationArea",1330}, {""}, {""}, {""}, {""}, {""}, - {"Minute_E2",158}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Missing",129}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"probProductDefinition",1689}, - {""}, - {"uvRelativeToGrid",2279}, + {"northWestLatitudeOfLPOArea",1329}, {""}, {""}, {""}, {""}, - {"section_11",1993}, - {""}, {""}, - {"beginYearTrend4",350}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayDepthOfDepositState1",1812}, + {"verificationYear",2300}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"oneMinuteMeanMaximumRVR4",1509}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode1Trend2",489}, + {"remarkPresent",1770}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"horizontalDimensionProcessed",927}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"BUFR",19}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode3Trend2",499}, {""}, - {"cloudsBase2",452}, + {"mask",1225}, + {""}, + {"md5Section5",1249}, + {"section6UniqueIdentifier",1969}, + {""}, {""}, {""}, + {"visibilityInKilometresTrend2",2318}, + {""}, {""}, {""}, + {"recentWeather",1749}, + {"expandedCrex_units",771}, + {""}, {""}, + {"firstDimensionPhysicalSignificance",845}, + {""}, {""}, + {"cloudsCode1",486}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"endMonthTrend1",739}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"jPointsAreConsecutive",1027}, + {""}, {""}, + {"visibilityInKilometresTrend4",2320}, + {""}, {""}, {""}, {""}, + {"dateOfIceFieldUsed",641}, + {""}, {""}, {""}, {""}, + {"westernLongitudeOfClusterDomain",2329}, + {"longitudeOfReferencePointInDegrees",1167}, + {""}, + {"patch_precip_fp",1638}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"pack",1539}, + {""}, {""}, + {"numberOfPointsAlongXAxisInCouplingArea",1424}, + {""}, {""}, {""}, + {"numberOfParallelsBetweenAPoleAndTheEquator",1413}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"default_step_units",668}, + {""}, {""}, {""}, {""}, + {"gribMasterTablesVersionNumber",897}, + {""}, {""}, {""}, + {"reflectivityCalibrationConstant",1769}, + {""}, {""}, {""}, + {"numberOfUsedSpatialTiles",1448}, + {""}, {""}, {""}, + {"endGridDefinition",729}, + {""}, + {"cloudsTitle2Trend3",514}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"dateOfModelVersion",642}, + {""}, {""}, {""}, {""}, + {"timeOfModelVersion",2163}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"unpack",2259}, + {"marsClass1",1195}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"clusteringDomain",539}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsTitle2Trend1",512}, + {"gaussianGridName",880}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"getNumberOfValues",887}, + {""}, {""}, + {"pentagonalResolutionParameterK",1640}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"pentagonalResolutionParameterJ",1639}, + {""}, {""}, {""}, + {"yearOfModelVersion",2381}, + {""}, + {"numberOfGroupsOfDataValues",1395}, + {""}, + {"section_02",1986}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"listMembersUsed4",1110}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section_04",1988}, + {""}, {""}, {""}, {""}, + {"scaleFactorOfMinorAxisOfOblateSpheroidEarth",1870}, + {"rdb_key",1736}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"offsetBSection6",1478}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"constantAntennaElevationAngle",568}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"_leg_number",286}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"dayOfModelVersion",652}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"hourOfModelVersion",936}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section_3",1998}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"latitudeOfTangencyPoint",1068}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"physicalMeaningOfVerticalCoordinate",1650}, + {""}, {""}, + {"recentWeatherTry",1750}, + {""}, {""}, + {"physicalFlag1",1648}, + {""}, {""}, + {"numberOfHorizontalPoints",1396}, + {""}, {""}, {""}, {""}, + {"NC2",176}, + {"NRj",185}, + {""}, {""}, {""}, {""}, + {"localTablesVersionNumber",1144}, + {"xCoordinateOfSubSatellitePoint",2363}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"scaleFactorOfCentralWaveNumber",1858}, + {""}, + {"mBasicAngle",1192}, + {"preBitmapValues",1658}, + {""}, {""}, {""}, {""}, {""}, + {"DayOfModelVersion",30}, + {"offsetSection5",1497}, + {""}, + {"unstructuredGridUUID",2267}, + {""}, + {"YR",274}, + {""}, {""}, + {"P_INST",212}, + {""}, {""}, {""}, + {"section_1",1994}, + {""}, + {"expandedCrex_widths",772}, + {"templatesMasterDir",2134}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"visibilityInKilometresTrend3",2319}, + {""}, {""}, {""}, + {"scaledValueOfSecondWavelength",1899}, + {""}, {""}, {""}, {""}, + {"md5Section1",1244}, + {"secondaryBitMap",1925}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"variationOfVisibilityTrend2",2294}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"RENAME",216}, + {""}, {""}, {""}, {""}, {""}, + {"versionNumOfSharedHeaderMessageFormat",2305}, + {"variationOfVisibilityTrend4",2296}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"runwayDepthOfDepositCodeState2",1812}, + {""}, {""}, + {"numberOfPointsAlongAMeridian",1417}, + {""}, {""}, {""}, + {"inputShortDelayedDescriptorReplicationFactor",974}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayDepthOfDepositCodeState4",1814}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"NH",179}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Minute_E4",160}, - {""}, {""}, {""}, {""}, {""}, - {"experimentVersionNumber2",781}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"cloudsCode1Trend4",491}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode3Trend4",501}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"oneMinuteMeanMinimumRVR3",1512}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"g1conceptsLocalDirAll",875}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded2",472}, - {""}, {""}, - {"altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius",299}, - {""}, - {"beginHourTrend1",335}, - {""}, {""}, - {"Extra_Data_FreeFormat_0_none",57}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded2Trend2",474}, - {""}, {""}, {""}, {""}, {""}, - {"pastTendencyRVR1",1632}, - {""}, - {"endHourTrend2",729}, + {""}, {""}, {""}, + {"visibilityInKilometresTrend1",2317}, {""}, {""}, {""}, {""}, - {"unusedBitsInBitmap",2265}, + {"horizontalDomainTemplate",930}, + {""}, {""}, + {"scaledValueOfPrimeMeridianOffset",1895}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"variationOfVisibilityDirectionTrend2",2290}, + {"extractDateTimeEnd",802}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"PUnset",210}, + {""}, {""}, + {"section2Used",1951}, + {"variationOfVisibilityDirectionTrend4",2292}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"scaledValueOfFirstWavelength",1889}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"longitudeLastInDegrees",1153}, + {""}, {""}, {""}, {""}, {""}, + {"clusterMember7",534}, + {""}, {""}, {""}, + {"iDirectionIncrementGiven",942}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"beginMinuteTrend2",339}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"meanRVR2",1257}, + {""}, {""}, {""}, {""}, + {"section_03",1987}, + {""}, + {"beginMinuteTrend4",341}, + {"extractAreaSouthLatitude",797}, + {"skipExtraKeyAttributes",2036}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfUpperLimit",1878}, + {""}, {""}, {""}, {""}, {""}, + {"matchAerosolBinNumber",1230}, + {"section7Length",1971}, + {""}, + {"radiusOfTheEarth",1730}, + {"meanRVR4",1259}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfPointsAlongSecondAxis",1420}, + {""}, {""}, + {"listMembersUsed2",1108}, + {""}, {""}, {""}, + {"variationOfVisibilityTrend3",2295}, + {""}, {""}, {""}, + {"checkInternalVersion",419}, + {""}, {""}, {""}, + {"runwayDepositCodeState2",1804}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"md5Section10",1245}, + {""}, {""}, {""}, + {"deleteLocalDefinition",672}, + {""}, {""}, {""}, {""}, + {"runwayDepthOfDepositCodeState3",1813}, + {""}, {""}, + {"section_01",1985}, + {""}, {""}, {""}, {""}, {""}, + {"runwayDepositCodeState4",1806}, + {""}, + {"variationOfVisibilityTrend1",2293}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"totalAerosolBinsNumbers",2171}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayDepthOfDepositCodeState1",1811}, + {""}, {""}, + {"variationOfVisibilityDirectionTrend3",2291}, + {""}, {""}, {""}, {""}, + {"tsectionNumber5",2194}, + {""}, {""}, {""}, + {"runwayFrictionCodeValueState2",1836}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"typeOfPacking",2216}, + {""}, {""}, {""}, {""}, {""}, + {"runwayFrictionCodeValueState4",1838}, + {"lengthOf4DvarWindow",1087}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"Date_E2",27}, + {""}, + {"variationOfVisibilityDirectionTrend1",2289}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfLengthOfSemiMajorAxis",1866}, + {""}, {""}, + {"offsetAfterData",1473}, + {"numberOfBytesInLocalDefinition",1351}, + {""}, {""}, {""}, {""}, {""}, + {"beginMinuteTrend3",340}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Date_E4",29}, + {""}, {""}, {""}, + {"numberOfPointsAlongAParallel",1418}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"scanningMode7",1909}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"northWestLongitudeOfLPOArea",1331}, + {"beginMinuteTrend1",338}, + {""}, + {"numberOfRadarSitesUsed",1430}, + {""}, {""}, {""}, + {"cloudsCode4",501}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"monthlyVerificationYear",1306}, + {""}, {""}, + {"NC1",175}, + {""}, {""}, {""}, + {"widthOfWidths",2334}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"Product_Identifier",215}, + {""}, {""}, {""}, {""}, + {"accuracyMultipliedByFactor",289}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"beginHourTrend2",335}, + {""}, {""}, {""}, + {"experimentVersionNumberOfAnalysis",784}, + {"numberOfBytesOfFreeFormatData",1352}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"paramIdLegacyECMF",1617}, + {""}, {""}, + {"theHindcastMarsStream",2135}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"beginHourTrend4",337}, + {""}, {""}, + {"typeOfWavelengthInterval",2227}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"pentagonalResolutionParameterM",1641}, + {""}, + {"cloudsBaseCoded3Trend2",478}, + {""}, {""}, + {"runwayFrictionCodeValueState3",1837}, + {""}, {""}, + {"firstLatitudeInDegrees",847}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded3Trend4",480}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfMajorAxisOfOblateSpheroidEarth",1893}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"timeIncrementBetweenSuccessiveFields",2160}, + {""}, {""}, {""}, + {"runwayFrictionCodeValueState1",1835}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"beginMonthTrend3",344}, + {""}, {""}, {""}, + {"uuidOfVGrid",2281}, + {"meanRVR3",1258}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cfNameLegacyECMF",406}, + {"inputOverriddenReferenceValues",972}, + {""}, {""}, + {"scaledValueOfEarthMajorAxis",1885}, + {"scaledValueOfEarthMinorAxis",1886}, + {""}, {""}, {""}, + {"cloudsBase3",456}, + {"numberOfSingularVectorsComputed",1439}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"GDSPresent",69}, + {""}, {""}, {""}, + {"shortNameLegacyECMF",2018}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"visibilityTrend1",2321}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"runwayDepositCodeState3",1805}, + {""}, {""}, {""}, + {"section5Length",1963}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"meanRVR1",1256}, + {""}, + {"longitudeOfSouthernPole",1169}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ZLMULT",282}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"projSourceString",1704}, + {""}, {""}, {""}, {""}, {""}, + {"listMembersMissing2",1104}, + {""}, {""}, {""}, {""}, {""}, + {"WRAPstr",260}, + {""}, {""}, + {"localUsePresent",1146}, + {"cloudsBaseCoded3",476}, {""}, {""}, {""}, {""}, - {"latitudeOfThePoleOfStretching",1067}, + {"projTargetString",1706}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded3Trend3",479}, + {""}, {""}, {""}, {""}, + {"numberOfPointsAlongFirstAxis",1419}, + {""}, + {"listMembersMissing4",1106}, + {""}, {""}, + {"runwayDepositCodeState1",1803}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"INBITS",90}, + {""}, {""}, + {"tempPressureUnits",2130}, + {""}, {""}, {""}, {""}, + {"Date_E3",28}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded3Trend1",477}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"numberOfMissingValues",1406}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"offsetValuesBy",1503}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"md5Section4",1248}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"iDirectionIncrementGridLength",943}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsCode2",491}, + {""}, {""}, + {"weightAppliedToClimateMonth1",2326}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"northLatitudeOfDomainOfTubing",1328}, + {""}, {""}, + {"typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing",2226}, + {""}, {""}, {""}, + {"beginHourTrend3",336}, + {""}, {""}, + {"matrixBitmapsPresent",1235}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsAbbreviation2Trend2",433}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfThePolePoint",1177}, + {""}, {""}, {""}, + {"cloudsAbbreviation4Trend2",443}, + {""}, {""}, {""}, + {"codedNumberOfGroups",547}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsAbbreviation2Trend4",435}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cfNameLegacyECMF",405}, + {""}, {""}, + {"pastTendencyRVR1",1634}, + {""}, + {"padding_local40_1",1604}, + {""}, + {"cloudsAbbreviation4Trend4",445}, + {""}, {""}, {""}, {""}, {""}, + {"resolutionAndComponentFlags2",1786}, + {""}, + {"southLatitudeOfDomainOfTubing",2045}, + {"hoursAfterReferenceTimeOfDataCutoff",939}, + {"latitudeOfLastGridPoint",1056}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Ensemble_Combination_Number",51}, + {""}, {""}, + {"beginHourTrend1",334}, + {""}, {""}, + {"section4UniqueIdentifier",1961}, + {""}, {""}, {""}, {""}, {""}, + {"latitudeOfReferencePoint",1059}, + {""}, + {"eastLongitudeOfDomainOfTubing",711}, + {"resolutionAndComponentFlags4",1788}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"timeUnitFlag",2167}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfPointsAlongTheXAxis",1421}, + {""}, {""}, {""}, + {"sizeOfPostAuxiliaryArrayPlusOne",2033}, + {""}, {""}, {""}, {""}, + {"endMark",734}, + {""}, {""}, {""}, + {"endHourTrend2",731}, + {""}, + {"coordAveraging2",575}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"ceilingAndVisibilityOK",387}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"totalNumberOfGridPoints",2180}, + {""}, {""}, {""}, {""}, + {"endHourTrend4",733}, + {""}, {""}, {""}, + {"clusterMember5",532}, + {""}, + {"runwayExtentOfContaminationState2",1832}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"runwayExtentOfContaminationState4",1834}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"baseTimeOfThisLeg",328}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"baseDateOfThisLeg",326}, + {"cloudsAbbreviation3Trend2",438}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"listMembersMissing3",1105}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"numberInHorizontalCoordinates",1339}, + {"cloudsAbbreviation3Trend4",440}, + {""}, {""}, {""}, {""}, {""}, + {"setToMissingIfOutOfRange",2012}, + {""}, + {"typeOfProcessedData",2219}, + {""}, + {"cloudsAbbreviation1Trend2",428}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"section3UniqueIdentifier",1956}, + {""}, {""}, {""}, + {"numberOfGridInReference",1392}, + {""}, + {"YRInMetres",275}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsAbbreviation1Trend4",430}, + {""}, {""}, {""}, + {"DjGiven",36}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"disableGrib1LocalSection",688}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"legacyGaussSubarea",1084}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"ECMWF",46}, + {""}, {""}, + {"LLCOSP",100}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayExtentOfContaminationState3",1833}, + {"md5Section2",1246}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"sizeOfPostAuxiliaryArrayPlusOne",2030}, - {"mixedCoordinateDefinition",1285}, + {"westLongitudeOfDomainOfTubing",2328}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scanningMode5",1907}, + {"runwayExtentOfContaminationState1",1831}, + {"cloudsAbbreviation2Trend3",434}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"cloudsAbbreviation4Trend3",444}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"observationDiagnostic",1461}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"resolutionAndComponentFlags3",1787}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"laplacianScalingFactorUnset",1042}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetToEndOf4DvarWindow",1502}, + {"typeOfGeneratingProcess",2208}, + {""}, {""}, + {"cloudsAbbreviation2Trend1",432}, + {""}, + {"numberOfBitsForScaledGroupLengths",1348}, + {""}, {""}, + {"Y2",272}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"horizontalDomainTemplateNumber",931}, + {"cloudsAbbreviation4Trend1",442}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"runwayFrictionCoefficientCodeState2",1840}, + {""}, {""}, + {"endHourTrend3",732}, + {""}, + {"coordAveraging3",576}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayFrictionCoefficientCodeState4",1842}, + {""}, {""}, {""}, {""}, + {"resolutionAndComponentFlags1",1785}, + {""}, {""}, {""}, + {"visibilityTrend4",2324}, + {""}, {""}, + {"numberOfSecondOrderPackedValues",1437}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsCode3Trend2",498}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"CLNOMA",24}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsCode3Trend4",500}, + {""}, {""}, {""}, {""}, + {"numberOfBytesPerInteger",1353}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"cloudsAbbreviation3Trend3",439}, + {""}, {""}, + {"endHourTrend1",730}, + {""}, + {"coordAveraging1",574}, + {"horizontalDimensionProcessed",929}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"qualityValueAssociatedWithParameter",1722}, + {""}, {""}, {""}, + {"unitsLegacyECMF",2255}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"cloudsAbbreviation1Trend3",429}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"cloudsAbbreviation3Trend1",437}, + {""}, {""}, + {"padding_sec1_loc",1607}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"section_7",2002}, + {"typeOfLevelECMF",2214}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"runwayFrictionCoefficientCodeState3",1841}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsAbbreviation1Trend1",427}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"scaledValueOfMinorAxisOfOblateSpheroidEarth",1894}, {"ICPLSIZE",88}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded2Trend4",476}, - {"cloudsCode1Trend1",488}, + {"commonBlock",551}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsCode3Trend3",499}, + {""}, {""}, {""}, + {"runwayFrictionCoefficientCodeState1",1839}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"runwayDepthOfDepositState2",1816}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"cloudsCode3Trend1",497}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayDepthOfDepositState4",1818}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"jDirectionIncrementGridLength",1022}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"windGustTrend3",2340}, - {""}, {""}, - {"cloudsCode3Trend1",498}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"beginYearTrend1",347}, - {""}, {""}, {""}, - {"isCavok",987}, + {"presentWeather2Present",1675}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"endYearTrend2",751}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"************_EXPERIMENT_************",2}, + {"Minute_E2",158}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"pastTendencyRVR4",1637}, {""}, {""}, - {"typicalYearOfCentury",2236}, - {"extractAreaLongitudeRank",793}, + {"runwayDesignatorRVR2",1820}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"oneMinuteMeanMaximumRVR1",1506}, - {""}, {""}, - {"Ensemble_Identifier_E3",54}, + {""}, {""}, {""}, + {"FMULTE",66}, + {""}, + {"longitudeOfSouthernPoleInDegrees",1170}, + {""}, + {"Minute_E4",160}, + {"latitudeOfReferencePointInDegrees",1060}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"endHourTrend4",731}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_loc9_2",1598}, - {""}, {""}, {""}, {""}, {""}, - {"section_5",1997}, - {"latitudeOfThePolePointInDegrees",1069}, + {"runwayDesignatorRVR4",1822}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"scaledValueOfCentralWaveNumber",1882}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfParametersUsedForClustering",1412}, + {"offsetFromOriginToInnerBound",1487}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsBase4Trend3",465}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section_05",1986}, - {""}, {""}, {""}, {""}, - {"cloudsBaseCoded2Trend1",473}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"numberInHorizontalCoordinates",1337}, - {""}, {""}, {""}, {""}, - {"endYearTrend4",753}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Threshold_Or_Distribution_Units",244}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ZLBASE",281}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfLevelECMF",2211}, + {"numberOfPressureLevelsUsedForClustering",1429}, + {""}, {""}, + {"superblockExtensionAddress",2112}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeOfTheSouthernPoleOfProjection",1070}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"visibilityTrend2",2322}, {""}, {""}, {""}, {""}, - {"LSTCUM",101}, - {""}, {""}, {""}, {""}, - {"padding_local_7_1",1604}, + {"Y1",270}, + {""}, {""}, {""}, + {"section_07",1991}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded1Trend2",468}, + {""}, {""}, {""}, + {"oneMinuteMeanMaximumRVR2",1509}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded1Trend4",470}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"presentWeather3Present",1680}, + {""}, {""}, {""}, {""}, + {"oneMinuteMeanMaximumRVR4",1511}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"presentWeather1Present",1670}, + {""}, + {"subdivisionsOfBasicAngle",2110}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"experimentVersionNumber1",780}, + {"numberOfReforecastYearsInModelClimate",1432}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"rootGroupSymbolTableEntry",1791}, + {"beginMonthTrend1",342}, + {""}, + {"section_11",1996}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfThePolePointInDegrees",1178}, + {""}, {""}, + {"section7UniqueIdentifier",1973}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"flagForNormalOrStaggeredGrid",854}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfUpperLimit",1902}, + {"cloudsBase1",446}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"uuidOfHGrid",2280}, + {""}, {""}, {""}, {""}, + {"latitudeOfLastGridPointInDegrees",1057}, + {"latitudeOfThePolePoint",1070}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"md5GridSection",1241}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"windUnitsTrend2",2353}, + {""}, {""}, {""}, {""}, {""}, + {"runwayDepthOfDepositState3",1817}, + {""}, {""}, + {"offsetBeforePL",1482}, + {""}, {""}, + {"extractAreaLongitudeRank",795}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded1Trend3",469}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"windUnitsTrend4",2355}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded1",466}, + {"ccsdsCompressionOptionsMask",384}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded1Trend1",467}, + {""}, {""}, + {"Minute_E3",159}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"runwayDesignatorRVR3",1821}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeDayEnd",797}, + {"runwayDepthOfDepositState1",1815}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"pastTendencyRVR2",1635}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"scaledValueOfLengthOfSemiMajorAxis",1890}, + {"missingValueManagementUsed",1285}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Total_Number_Members_Used",253}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfUsefulPointsAlongXAxis",1450}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"experimentVersionNumber2",783}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"runwayDesignatorRVR1",1819}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"radiusOfClusterDomain",1729}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"numberOfPointsUsed",1428}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"coordinate3OfFirstGridPoint",585}, + {""}, {""}, + {"beginYearTrend2",347}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"oneMinuteMeanMaximumRVR3",1510}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Total_Number_Members_Possible",252}, + {""}, {""}, {""}, + {"beginYearTrend4",349}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"beginMonthTrend2",344}, + {"oneMinuteMeanMaximumRVR1",1508}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"countOfGroupLengths",609}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"g1conceptsLocalDirAll",877}, + {""}, {""}, {""}, {""}, {""}, + {"intervalBetweenTimes",986}, + {""}, + {"extractDateTimeDayStart",801}, + {""}, {""}, {""}, {""}, {""}, + {"section5UniqueIdentifier",1965}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"windUnitsTrend3",2354}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section_5",2000}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"spacingOfBinsAlongRadials",2053}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cfVarNameLegacyECMF",408}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"probProductDefinition",1692}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"windUnitsTrend1",2352}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"rootGroupSymbolTableEntry",1794}, + {"************_EXPERIMENT_************",2}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"Total_Number_Members_Missing",251}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"sourceSinkChemicalPhysicalProcess",2039}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"isCavok",989}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"beginYearTrend3",348}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"HDF5",81}, + {""}, {""}, {""}, {""}, {""}, + {"experimentVersionNumber1",782}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Used",137}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"latitudeOfThePoleOfStretching",1069}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"beginYearTrend1",346}, + {""}, {""}, + {"section_05",1989}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Extra_Data_FreeFormat_0_none",57}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"beginMonthTrend4",345}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"jDirectionIncrementGiven",1023}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"endYearTrend2",753}, + {"cloudsCode1Trend2",488}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase4",461}, + {""}, {""}, + {"latitudeOfSouthEastCornerOfArea",1061}, + {"Local_Number_Members_Possible",133}, + {""}, + {"mixedCoordinateDefinition",1287}, + {"cloudsCode1Trend4",490}, + {"WRAP",259}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"endYearTrend4",755}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"padding_local11_1",1601}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"ICEFieldsUsed",87}, + {""}, + {"latitudeOfTheSouthernPoleOfProjection",1072}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded4Trend2",483}, + {""}, {""}, + {"cloudsBaseCoded4",481}, + {""}, {""}, {""}, {""}, {""}, + {"Original_Parameter_Identifier",205}, + {""}, {""}, {""}, {""}, + {"cloudsBaseCoded4Trend4",485}, + {""}, {""}, + {"FMULTM",67}, + {""}, {""}, {""}, {""}, + {"latitudeOfThePolePointInDegrees",1071}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"oneMinuteMeanMinimumRVR2",1513}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"oneMinuteMeanMinimumRVR4",1515}, + {""}, + {"versionNumberOfSuperblock",2308}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsCode1Trend3",489}, + {""}, {""}, {""}, {""}, + {"HourOfModelVersion",83}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"resolutionAndComponentFlags7",1790}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_loc9_2",1600}, + {""}, {""}, {""}, + {"cloudsCode1Trend1",487}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius",298}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"************_PRODUCT_***************",3}, + {""}, {""}, {""}, {""}, + {"extractDateTimeDayEnd",799}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded4Trend3",484}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Missing",129}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extractAreaLatitudeRank",794}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded4Trend1",482}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"typicalYear2",2238}, {""}, {""}, {""}, {""}, {"Ensemble_Identifier_E2",53}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"endHourTrend1",728}, - {""}, - {"ceilingAndVisibilityOKTrend3",391}, {""}, {""}, - {"sourceSinkChemicalPhysicalProcess",2036}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"cloudsBase4Trend2",464}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, + {"endYearTrend3",754}, + {"beginMonthTrend2",343}, {"Ensemble_Identifier_E4",55}, - {"XpInGridLengths",270}, - {""}, - {"padding_local11_1",1599}, - {""}, {""}, - {"numberOfGridUsed",1391}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"oneMinuteMeanMinimumRVR2",1511}, - {""}, {""}, - {"superblockExtensionAddress",2109}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsBase4Trend4",466}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"uuidOfHGrid",2277}, - {"cfVarNameLegacyECMF",409}, - {""}, - {"padding_grid90_1",1548}, - {""}, {""}, {""}, {""}, - {"endYearTrend1",750}, - {""}, {""}, {""}, {""}, {""}, - {"coordinate4OfFirstGridPoint",586}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"typicalYear2",2235}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"padding_loc9_1",1597}, - {"padding_loc7_1",1596}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsBase1Trend3",450}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"windGustTrend2",2339}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase3Trend3",460}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc6_1",1595}, - {""}, {""}, {""}, {""}, - {"oneMinuteMeanMinimumRVR4",1513}, - {""}, {""}, {""}, - {"numberOfPointsAlongYAxis",1423}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"runwayExtentOfContaminationCodeState3",1826}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_loc5_1",1594}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"extractAreaLatitudeRank",792}, - {"Original_CodeTable_2_Version_Number",203}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsBase4Trend1",463}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"biFourierPackingModeForAxes",353}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc50_1",1593}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"lastMonthUsedToBuildClimateMonth2",1042}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode2Trend3",495}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"windGustTrend4",2341}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"versionNumberOfSuperblock",2305}, - {""}, {""}, {""}, {""}, - {"isCavokTrend3",990}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"Local_Number_Members_Possible_E3",135}, - {""}, {""}, - {"ECMWF_s",47}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Missing_E3",131}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase1Trend2",449}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase3Trend2",459}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayExtentOfContaminationCodeState2",1825}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"setBitsPerValue",2005}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"oneMinuteMeanMinimumRVR1",1510}, - {""}, {""}, {""}, {""}, - {"lastMonthUsedToBuildClimateMonth1",1041}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase1Trend4",451}, - {""}, {""}, {""}, {""}, - {"Number_Combination_Ensembles_1_none",198}, - {""}, {""}, {""}, {""}, - {"pastTendencyRVR2",1633}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase3Trend4",461}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"ceilingAndVisibilityOKTrend2",390}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"unitsLegacyECMF",2252}, - {""}, - {"runwayExtentOfContaminationCodeState4",1827}, - {""}, - {"coordinate3OfFirstGridPoint",583}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"cloudsCode2Trend2",494}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"windGustTrend1",2338}, - {""}, {""}, - {"Local_Number_Members_Possible_E2",134}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase1Trend1",448}, - {""}, - {"cloudsCode2Trend4",496}, - {""}, {""}, {""}, {""}, - {"NG",178}, + {"cloudsBase2",451}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"cloudsBase3Trend1",458}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ceilingAndVisibilityOKTrend4",392}, - {"Local_Number_Members_Missing_E2",130}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Possible_E4",136}, - {"runwayExtentOfContaminationCodeState1",1824}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetBeforePV",1481}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"HourOfModelVersion",83}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Missing_E4",132}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"ccsdsBlockSize",384}, - {""}, - {"numberOfTensOfThousandsOfYearsOfOffset",1441}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"TYPE_OF",240}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsCode2Trend1",493}, - {"TYPE_FF",238}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_local_35",1603}, - {""}, - {"presentWeather3PresentTrend3",1680}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"YearOfModelVersion",278}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeOfSouthEastCornerOfArea",1059}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"************_ENSEMBLE_**************",1}, - {""}, {""}, {""}, - {"padding_loc4_2",1592}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfPointsAlongYAxisInCouplingArea",1424}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"isCavokTrend2",989}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"hoursAfterDataCutoff",936}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endYearTrend1",752}, + {"uvRelativeToGrid",2282}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"bufrHeaderSubCentre",372}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded2",471}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"cloudsBaseCoded2Trend2",473}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"cloudsBaseCoded2Trend4",475}, + {"oneMinuteMeanMinimumRVR3",1514}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"windGustTrend2",2342}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Ensemble_Identifier_E3",54}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ceilingAndVisibilityOKTrend1",389}, + {"windGustTrend4",2344}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfBitsContainingEachPackedValue",1347}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"oneMinuteMeanMinimumRVR1",1512}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"jDirectionIncrementGridLength",1024}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"typicalYearOfCentury",2239}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc9_1",1599}, + {"padding_loc7_1",1598}, + {""}, {""}, {""}, {""}, {""}, + {"Hour_E2",84}, + {""}, {""}, {""}, + {"padding_loc6_1",1597}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded2Trend3",474}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"Hour_E4",86}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"cloudsBaseCoded2Trend1",472}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"padding_loc5_1",1596}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"numberOfPointsAlongYAxis",1425}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"XpInGridLengths",269}, + {"offsetBBitmap",1476}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc30_2",1589}, + {""}, + {"runwayExtentOfContaminationCodeState2",1828}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"runwayExtentOfContaminationCodeState4",1830}, + {""}, {""}, {""}, {""}, {"*********_EXTRA_DATA_***************",4}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"lBB",1035}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"isCavokTrend4",991}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeYearRank",815}, + {"windGustTrend3",2343}, + {""}, {""}, {""}, {""}, + {"biFourierPackingModeForAxes",352}, + {""}, {""}, {""}, {""}, + {"padding_grid90_1",1550}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"cloudsCode4Trend2",503}, + {""}, {""}, + {"cloudsBase3Trend2",458}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"cloudsCode4Trend4",505}, + {""}, {""}, + {"cloudsBase3Trend4",460}, + {""}, {""}, + {"padding_sec3_1",1611}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"windGustTrend1",2341}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"padding_loc50_1",1595}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayExtentOfContaminationCodeState3",1829}, {""}, {""}, {""}, - {"HDF5",81}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"presentWeather2PresentTrend3",1675}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc3_1",1593}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"Hour_E3",85}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"bufrHeaderSubCentre",373}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"extractDateTimeHourRank",802}, {""}, {""}, {""}, {""}, - {"octetAtWichPackedDataBegins",1467}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_sec4_1",1610}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"offsetBSection5",1475}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ceilingAndVisibilityOKTrend2",389}, + {""}, {""}, + {"runwayExtentOfContaminationCodeState1",1827}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc19_2",1568}, - {"presentWeather1PresentTrend3",1670}, + {"ceilingAndVisibilityOKTrend4",391}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"isCavokTrend1",988}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_loc18_2",1562}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc30_2",1587}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase2Trend3",455}, + {"padding_local1_31",1603}, + {""}, {""}, {""}, + {"hoursAfterDataCutoff",938}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc38_1",1592}, + {""}, {""}, {""}, + {"cloudsCode4Trend3",504}, + {""}, {""}, + {"cloudsBase3Trend3",459}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"NB",173}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"offsetBeforeBitmap",1480}, + {""}, + {"ccsdsBlockSize",383}, {""}, {""}, {""}, {""}, - {"precisionOfTheUnpackedSubset",1659}, + {"cloudsCode4Trend1",502}, + {""}, {""}, + {"cloudsBase3Trend1",457}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather3PresentTrend2",1679}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfTensOfThousandsOfYearsOfOffset",1443}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"lastMonthUsedToBuildClimateMonth2",1044}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"isCavokTrend2",991}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_grid3_1",1544}, + {"isCavokTrend4",993}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc30_1",1588}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfParametersUsedForClustering",1414}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extremeValuesRVR3",827}, + {"cloudsCode2Trend2",493}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"ECMWF_s",47}, + {""}, {""}, + {"cloudsCode2Trend4",495}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_grid1_2",1543}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfVGridUsed",1450}, + {""}, + {"TYPE_OF",240}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"TYPE_FF",238}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Original_CodeTable_2_Version_Number",203}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"ceilingAndVisibilityOKTrend3",390}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"lastMonthUsedToBuildClimateMonth1",1043}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather3PresentTrend4",1681}, - {"X2InGridLengths",265}, + {"LSTCUM",101}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"NG",178}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ceilingAndVisibilityOKTrend1",388}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Threshold_Or_Distribution_Units",244}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfPointsAlongYAxisInCouplingArea",1426}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsCode2Trend3",494}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetBeforePV",1483}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsCode2Trend1",492}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"isCavokTrend3",992}, + {"Local_Number_Members_Possible_E2",134}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"Local_Number_Members_Possible_E4",136}, + {""}, {""}, {""}, {""}, + {"numberOfGridUsed",1393}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"isCavokTrend1",990}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"coordinate4OfFirstGridPoint",588}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Missing_E2",130}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Number_Combination_Ensembles_1_none",198}, + {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Missing_E4",132}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extractDateTimeYearRank",817}, {"TYPE_FX",239}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase2Trend2",454}, + {"Local_Number_Members_Possible_E3",135}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather2PresentTrend2",1674}, - {""}, {""}, {""}, - {"swapScanningY",2113}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_loc190_1",1563}, - {""}, {""}, - {"Hour_E2",84}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"Ensemble_Combinat_Number_0_none_E3",49}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_sec3_1",1609}, - {""}, {""}, {""}, {""}, - {"RVR3_1",219}, - {"extremeValuesRVR2",826}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"cloudsBase2Trend4",456}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"CCCC",21}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_grid4_1",1545}, - {""}, {""}, {""}, - {"X1InGridLengths",263}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc3_1",1591}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"extremeValuesRVR4",828}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc10_1",1549}, + {"padding_local_7_1",1606}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_local1_1",1600}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather2PresentTrend4",1676}, + {"YearOfModelVersion",277}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc19_2",1570}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc18_1",1561}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc30_1",1586}, + {"Local_Number_Members_Missing_E3",131}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc18_2",1564}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_local1_31",1601}, + {"padding_local_35",1605}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"octetAtWichPackedDataBegins",1469}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfBitsUsedForTheScaledGroupLengths",1350}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"unusedBitsInBitmap",2268}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"************_ENSEMBLE_**************",1}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBase1Trend2",448}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"cloudsBase1Trend4",450}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"padding_grid1_2",1545}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"presentWeather2PresentTrend2",1677}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather2PresentTrend4",1679}, + {"BUFR",19}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc190_1",1565}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_local1_1",1602}, + {""}, {""}, + {"extractDateTimeHourRank",804}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc38_1",1590}, - {""}, - {"presentWeather3PresentTrend1",1678}, - {""}, - {"Hour_E4",86}, + {"padding_loc18_1",1563}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase1Trend3",449}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase2Trend1",453}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"presentWeather1PresentTrend2",1669}, - {""}, {""}, {""}, {""}, {""}, - {"padding_sec2_3",1608}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"X2InGridLengths",264}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_grid1_1",1542}, + {"cloudsBase1Trend1",447}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extremeValuesRVR1",825}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfUsefulPointsAlongYAxis",1449}, {""}, {""}, {""}, - {"TYPE_OR",241}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Ensemble_Combinat_Number_0_none_E2",48}, + {"setBitsPerValue",2008}, + {""}, {""}, {""}, {""}, + {"extractDateTimeSecondRank",813}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"padding_grid4_1",1547}, + {""}, + {"offsetBSection5",1477}, + {""}, {""}, {""}, {""}, {""}, + {"presentWeather3PresentTrend2",1682}, + {""}, {""}, {"RVR2_1",218}, - {"padding_loc13_3",1553}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc29_3",1583}, - {""}, {""}, {""}, {""}, {""}, - {"Threshold_Or_Distribution_0_no_1_yes",243}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeSecondRank",811}, - {"DIAG",26}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"presentWeather1PresentTrend4",1671}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"numberOfPointsAlongTheYAxis",1420}, - {""}, {""}, {""}, {""}, - {"Ensemble_Combinat_Number_0_none_E4",50}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {"RVR4_1",220}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"presentWeather3PresentTrend4",1684}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather2PresentTrend1",1673}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeMinuteRank",805}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather1PresentTrend2",1672}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeMonthRank",808}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc10_1",1551}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather1PresentTrend4",1674}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"extremeValuesRVR2",828}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"extremeValuesRVR4",830}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"padding_loc191_3",1568}, + {""}, {""}, {""}, {""}, + {"X1InGridLengths",262}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"padding_grid3_1",1546}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc16_1",1561}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"presentWeather2PresentTrend3",1678}, + {""}, {""}, + {"RVR3_1",219}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"padding_grid1_1",1544}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {"RVR1_1",217}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather2PresentTrend1",1676}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfPointsAlongTheYAxis",1422}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_loc4_2",1594}, + {"extremeValuesRVR3",829}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"extremeValuesRVR1",827}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"extractDateTimeMinuteRank",807}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"presentWeather3PresentTrend3",1683}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfUnusedBitsAtEndOfSection3",1445}, + {"extractDateTimeMonthRank",810}, + {""}, + {"DIAG",26}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"presentWeather1PresentTrend3",1673}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"presentWeather3PresentTrend1",1681}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"presentWeather1PresentTrend1",1671}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"numberOfVGridUsed",1452}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7076,51 +6831,27 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather1PresentTrend1",1668}, + {"padding_sec2_2",1609}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeDayRank",798}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Less_Than_Or_To_Overall_Distribution",122}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_sec2_2",1607}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"TYPE_PF",242}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ExtremeValuesRVR3",64}, - {""}, {""}, {""}, - {"padding_loc17_2",1560}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"Missing_Model_LBC",161}, {""}, {""}, - {"padding_loc37_2",1589}, + {"cloudsBase4Trend2",463}, + {""}, {""}, + {"TYPE_OR",241}, + {""}, {""}, {""}, {""}, + {"padding_loc37_2",1591}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBase4Trend4",465}, + {""}, {""}, + {"padding_sec4_1",1612}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extremeCounterClockwiseWindDirection",824}, - {"padding_loc2_2",1585}, + {"padding_loc2_2",1587}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc13_2",1552}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc29_2",1582}, + {""}, {""}, + {"padding_loc29_2",1584}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7129,215 +6860,175 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"TYPE_PF",242}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase4Trend3",464}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc13_4",1554}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"TYPE_CF",236}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"GRIBEditionNumber",75}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"LBC_Initial_Conditions",98}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {"ExtremeValuesRVR2",63}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"ExtremeValuesRVR4",65}, + {""}, {""}, + {"cloudsBase4Trend1",462}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Ensemble_Combinat_Number_0_none_E2",48}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"Ensemble_Combinat_Number_0_none_E4",50}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc14_2",1559}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_sec2_3",1610}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"ExtremeValuesRVR3",64}, + {"precisionOfTheUnpackedSubset",1661}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase2Trend2",453}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"cloudsBase2Trend4",455}, + {""}, {""}, + {"padding_sec2_1",1608}, + {""}, {""}, + {"padding_loc29_3",1585}, + {"ExtremeValuesRVR1",62}, + {""}, {""}, {""}, {""}, {""}, + {"Missing_Model_LBC",161}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"extractDateTimeDayRank",800}, + {""}, {""}, + {"padding_loc37_1",1590}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Ensemble_Combinat_Number_0_none_E3",49}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"7777",5}, + {""}, + {"padding_loc13_2",1554}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc2_1",1586}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_loc29_1",1583}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc13_4",1556}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Time_Range_One_E2",245}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc192_1",1569}, + {""}, {""}, {""}, {""}, + {"Time_Range_One_E4",247}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"padding_loc28_1",1582}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase2Trend3",454}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"CCCC",21}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase2Trend1",452}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"genVertHeightCoords",881}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"padding_grid5_1",1549}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfUsefulPointsAlongYAxis",1451}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"ExtremeValuesInMaximumRVR2",59}, + {""}, {""}, {""}, + {"Time_Range_One_E3",246}, + {""}, {""}, {""}, {""}, + {"padding_grid50_1",1548}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc12_1",1552}, + {""}, {""}, + {"ExtremeValuesInMaximumRVR4",61}, + {"padding_loc20_1",1571}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"TYPE_CF",236}, + {""}, + {"padding_loc14_1",1558}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_loc191_1",1566}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc13_3",1555}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc26_1",1579}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"TYPE_AN",235}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Time_Range_One_E3",246}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"ExtremeValuesRVR4",65}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"runwayBrakingActionState3",1798}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_grid50_1",1546}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc14_2",1557}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_sec2_1",1606}, + {"padding_loc13_1",1553}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"swapScanningY",2116}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc191_3",1566}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"P_TACC",213}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"padding_loc37_1",1588}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"YY",277}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc2_1",1584}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ExtremeValuesRVR1",62}, - {""}, {""}, {""}, {""}, {""}, - {"padding_grid5_1",1547}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_loc13_1",1551}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc29_1",1581}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc20_1",1569}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_loc28_1",1580}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"Time_Range_One_E2",245}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Time_Range_One_E4",247}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc192_1",1567}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"YpInGridLengths",281}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc12_1",1550}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"bitsPerValueAndRepack",366}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"genVertHeightCoords",879}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc14_1",1556}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc16_1",1559}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc191_1",1564}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayBrakingActionState2",1797}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"GRIB",71}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"meanValueRVR3",1261}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayBrakingActionState4",1799}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc27_2",1579}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"Local_Number_Members_Used_E3",139}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {"ExtremeValuesInMaximumRVR3",60}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7347,6 +7038,8 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"ExtremeValuesInMaximumRVR1",58}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7354,10 +7047,95 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extremeCounterClockwiseWindDirection",826}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"Threshold_Or_Distribution_0_no_1_yes",243}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"padding_loc17_2",1562}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"GRIBEditionNumber",75}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"Less_Than_Or_To_Overall_Distribution",122}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayBrakingActionState1",1796}, + {"bitsPerValueAndRepack",365}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"YY",276}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"P_TACC",213}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Missing_Model_LBC_E2",162}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Missing_Model_LBC_E4",164}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"padding_loc191_2",1567}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7377,63 +7155,70 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"lBB",1037}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"YpInGridLengths",280}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"padding_loc15_1",1560}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"BBB",16}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {"Missing_Model_LBC_E3",163}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"gts_CCCC",914}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"meanValueRVR2",1260}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc27_1",1578}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc23_1",1571}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"meanValueRVR4",1262}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Used_E2",138}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"ExtremeValuesInMaximumRVR2",59}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"Time_Range_Two_E3",249}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfUnusedBitsAtEndOfSection3",1447}, + {""}, {""}, {""}, {""}, + {"padding_loc244_3",1576}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_loc23_1",1573}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"runwayBrakingActionState2",1800}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"LBC_Initial_Conditions",98}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"padding_loc21_1",1572}, + {"runwayBrakingActionState4",1802}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {"GG",70}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7443,20 +7228,76 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc27_2",1581}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"runwayBrakingActionState3",1801}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"runwayBrakingActionState1",1799}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc191_2",1565}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Time_Range_Two_E2",248}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"Time_Range_Two_E4",250}, {""}, + {"Local_Number_Members_Used_E2",138}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"Local_Number_Members_Used_E4",140}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Time_Range_Two_E3",249}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"meanValueRVR2",1262}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ExtremeValuesInMaximumRVR4",61}, + {"padding_loc27_1",1580}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"meanValueRVR4",1264}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7470,23 +7311,258 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"meanValueRVR1",1259}, + {"Local_Number_Members_Used_E3",139}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"padding_loc13_5",1557}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc15_1",1558}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Time_Range_Two_E2",248}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc26_1",1577}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Missing_Model_LBC_E2",162}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {"TYPE_FC",237}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"meanValueRVR3",1263}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"meanValueRVR1",1261}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc244_1",1574}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"gts_CCCC",916}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"Y2InGridLengths",273}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"GRIB",71}, + {""}, {""}, {""}, {""}, + {"Original_Parameter_Iden_CodeTable2",204}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"Y1InGridLengths",271}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"GRIBEXSection1Problem",72}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"NINT_RITZ_EXP",181}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"padding_loc244_2",1575}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_loc245_1",1577}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {"INGRIB",91}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7494,124 +7570,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Time_Range_Two_E4",250}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"padding_loc21_1",1570}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Original_Parameter_Iden_CodeTable2",204}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"Missing_Model_LBC_E4",164}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"ExtremeValuesInMaximumRVR1",58}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Y2InGridLengths",274}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Y1InGridLengths",272}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_loc13_5",1555}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfBitsUsedForTheGroupWidths",1347}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {"Model_LBC_Member_Identifier",167}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7624,13 +7582,13 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"P_TAVG",214}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_loc244_3",1574}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7647,15 +7605,11 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"Used_Model_LBC",255}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"GRIBEXSection1Problem",72}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7687,6 +7641,8 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc245_2",1578}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7700,8 +7656,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc244_1",1572}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7726,44 +7680,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"BUDG",18}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"NINT_RITZ_EXP",181}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"NINT_LOG10_RITZ",180}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7797,6 +7713,150 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"numberOfBitsUsedForTheGroupWidths",1349}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"BBB",16}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Show_Combination_Ensem_E2_0_no_1_yes",225}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"Show_Combination_Ensem_E4_0_no_1_yes",227}, + {""}, + {"Used_Model_LBC",254}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"GRIBEX_boustrophedonic",74}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"BUDG",18}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"Show_Combination_Ensem_E3_0_no_1_yes",226}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"At_least__Or_Distribut_Proportion_Of",14}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {"GRIBEXShBugPresent",73}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7832,8 +7892,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"P_TAVG",214}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7844,8 +7902,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc244_2",1573}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7853,568 +7909,337 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"GRIB_DEPTH",76}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"AEC_DATA_SIGNED_OPTION_MASK",10}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Show_Combination_Ensem_E3_0_no_1_yes",226}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"At_least__Or_Distribut_Proportion_Of",14}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc245_1",1575}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Show_Combination_Ensem_E2_0_no_1_yes",225}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Show_Combination_Ensem_E4_0_no_1_yes",227}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"GRIBEX_boustrophedonic",74}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc245_2",1576}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Used_Model_LBC_E3",257}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"Used_Model_LBC_E2",256}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Used_Model_LBC_E4",258}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"AEC_RESTRICTED_OPTION_MASK",12}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8422,6 +8247,21 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"GRIB_LATITUDE",77}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"AEC_PAD_RSI_OPTION_MASK",11}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8467,138 +8307,11 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"Used_Model_LBC_E2",255}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"AEC_DATA_SIGNED_OPTION_MASK",10}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"GRIB_LATITUDE",77}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"Used_Model_LBC_E4",257}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8618,7 +8331,86 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"GRIB_DEPTH",76}, + {"Used_Model_LBC_E3",256}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8638,7 +8430,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {"AEC_DATA_3BYTE_OPTION_MASK",7}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8724,8 +8515,7 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {"GRIB_LONGITUDE",78}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -9092,7 +8882,51 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {"AEC_DATA_MSB_OPTION_MASK",8}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -9394,95 +9228,7 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, + {""}, {"AEC_DATA_PREPROCESS_OPTION_MASK",9} }; diff --git a/tests/keys b/tests/keys index 331c94356..b1a039394 100644 --- a/tests/keys +++ b/tests/keys @@ -256,2131 +256,2134 @@ Time_Range_Two_E4,250 Total_Number_Members_Missing,251 Total_Number_Members_Possible,252 Total_Number_Members_Used,253 -UseEcmfConventions,254 -Used_Model_LBC,255 -Used_Model_LBC_E2,256 -Used_Model_LBC_E3,257 -Used_Model_LBC_E4,258 -WMO,259 -WRAP,260 -WRAPstr,261 -X1,262 -X1InGridLengths,263 -X2,264 -X2InGridLengths,265 -XR,266 -XRInMetres,267 -Xo,268 -Xp,269 -XpInGridLengths,270 -Y1,271 -Y1InGridLengths,272 -Y2,273 -Y2InGridLengths,274 -YR,275 -YRInMetres,276 -YY,277 -YearOfModelVersion,278 -Yo,279 -Yp,280 -YpInGridLengths,281 -ZLBASE,282 -ZLMULT,283 -_T,284 -_TS,285 -_anoffset,286 -_leg_number,287 -_numberOfValues,288 -accumulationInterval,289 -accuracyMultipliedByFactor,290 -addEmptySection2,291 -addExtraLocalSection,292 -additionalFlagPresent,293 -addressOfFileFreeSpaceInfo,294 -aerosolType,295 -aerosolbinnumber,296 -aerosolpacking,297 -alternativeRowScanning,298 -altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius,299 -analysisOffsets,300 -angleDivisor,301 -angleMultiplier,302 -angleOfRotation,303 -angleOfRotationInDegrees,304 -angleOfRotationOfProjection,305 -angleSubdivisions,306 -anoffset,307 -anoffsetFirst,308 -anoffsetFrequency,309 -anoffsetLast,310 -applicationIdentifier,311 -assertion,312 -atmosphericChemicalOrPhysicalConstituentType,313 -attributeOfTile,314 -auxiliary,315 -average,316 -averaging1Flag,317 -averaging2Flag,318 -averagingPeriod,319 -avg,320 -azimuthalWidth,321 -backgroundGeneratingProcessIdentifier,322 -backgroundProcess,323 -band,324 -baseAddress,325 -baseDateEPS,326 -baseDateOfThisLeg,327 -baseTimeEPS,328 -baseTimeOfThisLeg,329 -basicAngleOfTheInitialProductionDomain,330 -beginDayTrend1,331 -beginDayTrend2,332 -beginDayTrend3,333 -beginDayTrend4,334 -beginHourTrend1,335 -beginHourTrend2,336 -beginHourTrend3,337 -beginHourTrend4,338 -beginMinuteTrend1,339 -beginMinuteTrend2,340 -beginMinuteTrend3,341 -beginMinuteTrend4,342 -beginMonthTrend1,343 -beginMonthTrend2,344 -beginMonthTrend3,345 -beginMonthTrend4,346 -beginYearTrend1,347 -beginYearTrend2,348 -beginYearTrend3,349 -beginYearTrend4,350 -biFourierCoefficients,351 -biFourierMakeTemplate,352 -biFourierPackingModeForAxes,353 -biFourierResolutionParameterM,354 -biFourierResolutionParameterN,355 -biFourierResolutionSubSetParameterM,356 -biFourierResolutionSubSetParameterN,357 -biFourierSubTruncationType,358 -biFourierTruncationType,359 -binaryScaleFactor,360 -bitMapIndicator,361 -bitmap,362 -bitmapPresent,363 -bitmapSectionPresent,364 -bitsPerValue,365 -bitsPerValueAndRepack,366 -boot_edition,367 -bottomLevel,368 -boustrophedonic,369 -boustrophedonicOrdering,370 -bufrDataEncoded,371 -bufrHeaderCentre,372 -bufrHeaderSubCentre,373 -bufrTemplate,374 -bufrdcExpandedDescriptors,375 -calendarIdPresent,376 -calendarIdentification,377 -calendarIdentificationTemplateNumber,378 -cat,379 -categories,380 -categoryType,381 -cavokOrVisibility,382 -ccccIdentifiers,383 -ccsdsBlockSize,384 -ccsdsCompressionOptionsMask,385 -ccsdsFlags,386 -ccsdsRsi,387 -ceilingAndVisibilityOK,388 -ceilingAndVisibilityOKTrend1,389 -ceilingAndVisibilityOKTrend2,390 -ceilingAndVisibilityOKTrend3,391 -ceilingAndVisibilityOKTrend4,392 -centralClusterDefinition,393 -centralLongitude,394 -centralLongitudeInDegrees,395 -centralLongitudeInMicrodegrees,396 -centre,397 -centreDescription,398 -centreForLocal,399 -centreForTable2,400 -centuryOfAnalysis,401 -centuryOfReference,402 -centuryOfReferenceTimeOfData,403 -cfName,404 -cfNameECMF,405 -cfNameLegacyECMF,406 -cfVarName,407 -cfVarNameECMF,408 -cfVarNameLegacyECMF,409 -changeDecimalPrecision,410 -changeIndicatorTrend1,411 -changeIndicatorTrend2,412 -changeIndicatorTrend3,413 -changeIndicatorTrend4,414 -changingPrecision,415 -channel,416 -channelNumber,417 -char,418 -charValues,419 -checkInternalVersion,420 -class,421 -classOfAnalysis,422 -clearTables,423 -climateDateFrom,424 -climateDateTo,425 -climatologicalRegime,426 -cloudsAbbreviation1,427 -cloudsAbbreviation1Trend1,428 -cloudsAbbreviation1Trend2,429 -cloudsAbbreviation1Trend3,430 -cloudsAbbreviation1Trend4,431 -cloudsAbbreviation2,432 -cloudsAbbreviation2Trend1,433 -cloudsAbbreviation2Trend2,434 -cloudsAbbreviation2Trend3,435 -cloudsAbbreviation2Trend4,436 -cloudsAbbreviation3,437 -cloudsAbbreviation3Trend1,438 -cloudsAbbreviation3Trend2,439 -cloudsAbbreviation3Trend3,440 -cloudsAbbreviation3Trend4,441 -cloudsAbbreviation4,442 -cloudsAbbreviation4Trend1,443 -cloudsAbbreviation4Trend2,444 -cloudsAbbreviation4Trend3,445 -cloudsAbbreviation4Trend4,446 -cloudsBase1,447 -cloudsBase1Trend1,448 -cloudsBase1Trend2,449 -cloudsBase1Trend3,450 -cloudsBase1Trend4,451 -cloudsBase2,452 -cloudsBase2Trend1,453 -cloudsBase2Trend2,454 -cloudsBase2Trend3,455 -cloudsBase2Trend4,456 -cloudsBase3,457 -cloudsBase3Trend1,458 -cloudsBase3Trend2,459 -cloudsBase3Trend3,460 -cloudsBase3Trend4,461 -cloudsBase4,462 -cloudsBase4Trend1,463 -cloudsBase4Trend2,464 -cloudsBase4Trend3,465 -cloudsBase4Trend4,466 -cloudsBaseCoded1,467 -cloudsBaseCoded1Trend1,468 -cloudsBaseCoded1Trend2,469 -cloudsBaseCoded1Trend3,470 -cloudsBaseCoded1Trend4,471 -cloudsBaseCoded2,472 -cloudsBaseCoded2Trend1,473 -cloudsBaseCoded2Trend2,474 -cloudsBaseCoded2Trend3,475 -cloudsBaseCoded2Trend4,476 -cloudsBaseCoded3,477 -cloudsBaseCoded3Trend1,478 -cloudsBaseCoded3Trend2,479 -cloudsBaseCoded3Trend3,480 -cloudsBaseCoded3Trend4,481 -cloudsBaseCoded4,482 -cloudsBaseCoded4Trend1,483 -cloudsBaseCoded4Trend2,484 -cloudsBaseCoded4Trend3,485 -cloudsBaseCoded4Trend4,486 -cloudsCode1,487 -cloudsCode1Trend1,488 -cloudsCode1Trend2,489 -cloudsCode1Trend3,490 -cloudsCode1Trend4,491 -cloudsCode2,492 -cloudsCode2Trend1,493 -cloudsCode2Trend2,494 -cloudsCode2Trend3,495 -cloudsCode2Trend4,496 -cloudsCode3,497 -cloudsCode3Trend1,498 -cloudsCode3Trend2,499 -cloudsCode3Trend3,500 -cloudsCode3Trend4,501 -cloudsCode4,502 -cloudsCode4Trend1,503 -cloudsCode4Trend2,504 -cloudsCode4Trend3,505 -cloudsCode4Trend4,506 -cloudsTitle1,507 -cloudsTitle1Trend1,508 -cloudsTitle1Trend2,509 -cloudsTitle1Trend3,510 -cloudsTitle1Trend4,511 -cloudsTitle2,512 -cloudsTitle2Trend1,513 -cloudsTitle2Trend2,514 -cloudsTitle2Trend3,515 -cloudsTitle2Trend4,516 -cloudsTitle3,517 -cloudsTitle3Trend1,518 -cloudsTitle3Trend2,519 -cloudsTitle3Trend3,520 -cloudsTitle3Trend4,521 -cloudsTitle4,522 -cloudsTitle4Trend1,523 -cloudsTitle4Trend2,524 -cloudsTitle4Trend3,525 -cloudsTitle4Trend4,526 -clusterIdentifier,527 -clusterMember1,528 -clusterMember10,529 -clusterMember2,530 -clusterMember3,531 -clusterMember4,532 -clusterMember5,533 -clusterMember6,534 -clusterMember7,535 -clusterMember8,536 -clusterMember9,537 -clusterNumber,538 -clusterSize,539 -clusteringDomain,540 -clusteringMethod,541 -clutterFilterIndicator,542 -cnmc_cmcc,543 -cnmc_isac,544 -codeFigure,545 -codeType,546 -codedNumberOfFirstOrderPackedValues,547 -codedNumberOfGroups,548 -codedValues,549 -coefsFirst,550 -coefsSecond,551 -commonBlock,552 -complexPacking,553 -componentIndex,554 -compressedData,555 -computeLaplacianOperator,556 -computeStatistics,557 -conceptDir,558 -conceptsLocalDirAll,559 -conceptsLocalDirECMF,560 -conceptsLocalMarsDirAll,561 -conceptsMasterDir,562 -conceptsMasterMarsDir,563 -consensus,564 -consensusCount,565 -const,566 -constantAntennaElevationAngle,567 -constantFieldHalfByte,568 -constituentType,569 -controlForecastCluster,570 -coordAveraging0,571 -coordAveraging1,572 -coordAveraging2,573 -coordAveraging3,574 -coordAveragingTims,575 -coordinate1End,576 -coordinate1Flag,577 -coordinate1Start,578 -coordinate2End,579 -coordinate2Flag,580 -coordinate2Start,581 -coordinate3Flag,582 -coordinate3OfFirstGridPoint,583 -coordinate3OfLastGridPoint,584 -coordinate4Flag,585 -coordinate4OfFirstGridPoint,586 -coordinate4OfLastGridPoint,587 -coordinateFlag1,588 -coordinateFlag2,589 -coordinateIndexNumber,590 -coordinatesPresent,591 -core,592 -corr1Data,593 -corr2Data,594 -corr3Data,595 -corr4Data,596 -correction,597 -correction1,598 -correction1Part,599 -correction2,600 -correction2Part,601 -correction3,602 -correction3Part,603 -correction4,604 -correction4Part,605 -count,606 -countOfGroupLengths,607 -countOfICEFieldsUsed,608 -countTotal,609 -country,610 -crcrlf,611 -createNewData,612 -crraLocalVersion,613 -crraSection,614 -crraSuiteID,615 -daLoop,616 -data,617 -dataAccessors,618 -dataCategory,619 -dataDate,620 -dataFlag,621 -dataKeys,622 -dataLength,623 -dataOrigin,624 -dataRepresentation,625 -dataRepresentationTemplate,626 -dataRepresentationTemplateNumber,627 -dataRepresentationType,628 -dataSelection,629 -dataStream,630 -dataSubCategory,631 -dataTime,632 -dataType,633 -dataValues,634 -date,635 -dateOfAnalysis,636 -dateOfForecast,637 -dateOfForecastRun,638 -dateOfIceFieldUsed,639 -dateOfModelVersion,640 -dateOfReference,641 -dateOfSSTFieldUsed,642 -dateSSTFieldUsed,643 -dateTime,644 -datumSize,645 -day,646 -dayOfAnalysis,647 -dayOfEndOfOverallTimeInterval,648 -dayOfForecast,649 -dayOfModelVersion,650 -dayOfReference,651 -dayOfTheYearDate,652 -decimalPrecision,653 -decimalScaleFactor,654 -defaultFaFieldName,655 -defaultFaLevelName,656 -defaultFaModelName,657 -defaultName,658 -defaultParameter,659 -defaultSequence,660 -defaultShortName,661 -defaultStepUnits,662 -defaultTypeOfLevel,663 -default_max_val,664 -default_min_val,665 -default_step_units,666 -definitionFilesVersion,667 -deleteCalendarId,668 -deleteExtraLocalSection,669 -deleteLocalDefinition,670 -deletePV,671 -derivedForecast,672 -dewPointTemperature,673 -diagnostic,674 -diagnosticNumber,675 -diffInDays,676 -diffInHours,677 -dimension,678 -dimensionNumber,679 -dimensionType,680 -direction,681 -directionNumber,682 -directionOfVariation,683 -directionScalingFactor,684 -dirty_statistics,685 -disableGrib1LocalSection,686 -discipline,687 -distanceFromTubeToEnsembleMean,688 -distinctLatitudes,689 -distinctLongitudes,690 -doExtractArea,691 -doExtractDateTime,692 -doExtractSubsets,693 -doSimpleThinning,694 -domain,695 -driverInformationBlockAddress,696 -dummy,697 -dummy1,698 -dummy2,699 -dummyc,700 -dx,701 -dy,702 -earthIsOblate,703 -earthMajorAxis,704 -earthMajorAxisInMetres,705 -earthMinorAxis,706 -earthMinorAxisInMetres,707 -eastLongitudeOfCluster,708 -eastLongitudeOfDomainOfTubing,709 -easternLongitudeOfClusterDomain,710 -easternLongitudeOfDomain,711 -ed,712 -edition,713 -editionNumber,714 -efas_model,715 -efas_post_proc,716 -efiOrder,717 -eight,718 -elementsTable,719 -elevation,720 -eleven,721 -endDayTrend1,722 -endDayTrend2,723 -endDayTrend3,724 -endDayTrend4,725 -endDescriptors,726 -endGridDefinition,727 -endHourTrend1,728 -endHourTrend2,729 -endHourTrend3,730 -endHourTrend4,731 -endMark,732 -endMinuteTrend1,733 -endMinuteTrend2,734 -endMinuteTrend3,735 -endMinuteTrend4,736 -endMonthTrend1,737 -endMonthTrend2,738 -endMonthTrend3,739 -endMonthTrend4,740 -endOfFileAddress,741 -endOfHeadersMarker,742 -endOfInterval,743 -endOfMessage,744 -endOfProduct,745 -endOfRange,746 -endStep,747 -endStepInHours,748 -endTimeStep,749 -endYearTrend1,750 -endYearTrend2,751 -endYearTrend3,752 -endYearTrend4,753 -energyNorm,754 -enorm,755 -ensembleForecastNumbers,756 -ensembleForecastNumbersList,757 -ensembleSize,758 -ensembleStandardDeviation,759 -eps,760 -epsContinous,761 -epsPoint,762 -epsStatisticsContinous,763 -epsStatisticsPoint,764 -expandBy,765 -expandedAbbreviations,766 -expandedCodes,767 -expandedCrex_scales,768 -expandedCrex_units,769 -expandedCrex_widths,770 -expandedDescriptors,771 -expandedNames,772 -expandedOriginalCodes,773 -expandedOriginalReferences,774 -expandedOriginalScales,775 -expandedOriginalWidths,776 -expandedTypes,777 -expandedUnits,778 -experimentVersionNumber,779 -experimentVersionNumber1,780 -experimentVersionNumber2,781 -experimentVersionNumberOfAnalysis,782 -expoffset,783 -expver,784 -extendedFlag,785 -extraDim,786 -extraDimensionPresent,787 -extraLocalSectionNumber,788 -extraLocalSectionPresent,789 -extraValues,790 -extractAreaEastLongitude,791 -extractAreaLatitudeRank,792 -extractAreaLongitudeRank,793 -extractAreaNorthLatitude,794 -extractAreaSouthLatitude,795 -extractAreaWestLongitude,796 -extractDateTimeDayEnd,797 -extractDateTimeDayRank,798 -extractDateTimeDayStart,799 -extractDateTimeEnd,800 -extractDateTimeHourEnd,801 -extractDateTimeHourRank,802 -extractDateTimeHourStart,803 -extractDateTimeMinuteEnd,804 -extractDateTimeMinuteRank,805 -extractDateTimeMinuteStart,806 -extractDateTimeMonthEnd,807 -extractDateTimeMonthRank,808 -extractDateTimeMonthStart,809 -extractDateTimeSecondEnd,810 -extractDateTimeSecondRank,811 -extractDateTimeSecondStart,812 -extractDateTimeStart,813 -extractDateTimeYearEnd,814 -extractDateTimeYearRank,815 -extractDateTimeYearStart,816 -extractSubset,817 -extractSubsetIntervalEnd,818 -extractSubsetIntervalStart,819 -extractSubsetList,820 -extractedAreaNumberOfSubsets,821 -extractedDateTimeNumberOfSubsets,822 -extremeClockwiseWindDirection,823 -extremeCounterClockwiseWindDirection,824 -extremeValuesRVR1,825 -extremeValuesRVR2,826 -extremeValuesRVR3,827 -extremeValuesRVR4,828 -faFieldName,829 -faLevelName,830 -faModelName,831 -false,832 -falseEasting,833 -falseNorthing,834 -fcmonth,835 -fcperiod,836 -fgDate,837 -fgTime,838 -file,839 -fileConsistencyFlags,840 -firstDimension,841 -firstDimensionCoordinateValueDefinition,842 -firstDimensionPhysicalSignificance,843 -firstLatitude,844 -firstLatitudeInDegrees,845 -firstMonthUsedToBuildClimateMonth1,846 -firstMonthUsedToBuildClimateMonth2,847 -firstOrderValues,848 -flag,849 -flagForAnyFurtherInformation,850 -flagForIrregularGridCoordinateList,851 -flagForNormalOrStaggeredGrid,852 -flagShowingPostAuxiliaryArrayInUse,853 -flags,854 -floatVal,855 -floatValues,856 -forecastLeadTime,857 -forecastMonth,858 -forecastOrSingularVectorNumber,859 -forecastPeriod,860 -forecastPeriodFrom,861 -forecastPeriodTo,862 -forecastProbabilityNumber,863 -forecastSteps,864 -forecastTime,865 -forecastperiod,866 -formatVersionMajorNumber,867 -formatVersionMinorNumber,868 -freeFormData,869 -frequency,870 -frequencyNumber,871 -frequencyScalingFactor,872 -functionCode,873 -g,874 -g1conceptsLocalDirAll,875 -g1conceptsMasterDir,876 -g2grid,877 -gaussianGridName,878 -genVertHeightCoords,879 -generalExtended2ordr,880 -generatingProcessIdentificationNumber,881 -generatingProcessIdentifier,882 -generatingProcessTemplate,883 -generatingProcessTemplateNumber,884 -getNumberOfValues,885 -gg,886 -global,887 -globalDomain,888 -grib1divider,889 -grib2LocalSectionNumber,890 -grib2LocalSectionPresent,891 -grib2divider,892 -grib3divider,893 -gribDataQualityChecks,894 -gribMasterTablesVersionNumber,895 -gribTablesVersionNo,896 -grid,897 -gridCoordinate,898 -gridDefinition,899 -gridDefinitionDescription,900 -gridDefinitionSection,901 -gridDefinitionTemplateNumber,902 -gridDescriptionSectionPresent,903 -gridName,904 -gridPointPosition,905 -gridType,906 -groupInternalNodeK,907 -groupLeafNodeK,908 -groupLengths,909 -groupSplitting,910 -groupSplittingMethodUsed,911 -groupWidth,912 -groupWidths,913 -gts_CCCC,914 -gts_TTAAii,915 -gts_ddhh00,916 -gts_header,917 -halfByte,918 -hdate,919 -headersOnly,920 -heightLevelName,921 -heightOrPressureOfLevel,922 -heightPressureEtcOfLevels,923 -hideThis,924 -horizontalCoordinateDefinition,925 -horizontalCoordinateSupplement,926 -horizontalDimensionProcessed,927 -horizontalDomainTemplate,928 -horizontalDomainTemplateNumber,929 -hour,930 -hourOfAnalysis,931 -hourOfEndOfOverallTimeInterval,932 -hourOfForecast,933 -hourOfModelVersion,934 -hourOfReference,935 -hoursAfterDataCutoff,936 -hoursAfterReferenceTimeOfDataCutoff,937 -hundred,938 -iDirectionIncrement,939 -iDirectionIncrementGiven,940 -iDirectionIncrementGridLength,941 -iDirectionIncrementInDegrees,942 -iIncrement,943 -iScansNegatively,944 -iScansPositively,945 -ident,946 -identificationNumber,947 -identificationOfOriginatingGeneratingCentre,948 -identificationOfProject,949 -identifier,950 -ieeeFloats,951 -ifsParam,952 -ijDirectionIncrementGiven,953 -implementationDateOfModelCycle,954 -incrementOfLengths,955 -indexTemplate,956 -indexTemplateNumber,957 -indexedStorageInternalNodeK,958 -indexingDate,959 -indexingTime,960 -indicatorOfParameter,961 -indicatorOfTypeOfLevel,962 -indicatorOfUnitForTimeIncrement,963 -indicatorOfUnitForTimeRange,964 -indicatorOfUnitOfTimeRange,965 -inputDataPresentIndicator,966 -inputDelayedDescriptorReplicationFactor,967 -inputExtendedDelayedDescriptorReplicationFactor,968 -inputOriginatingCentre,969 -inputOverriddenReferenceValues,970 -inputProcessIdentifier,971 -inputShortDelayedDescriptorReplicationFactor,972 -instrument,973 -instrumentIdentifier,974 -instrumentType,975 -integerPointValues,976 -integerScaleFactor,977 -integerScalingFactorAppliedToDirections,978 -integerScalingFactorAppliedToFrequencies,979 -integerValues,980 -internalVersion,981 -internationalDataSubCategory,982 -interpretationOfNumberOfPoints,983 -intervalBetweenTimes,984 -isAccumulation,985 -isAuto,986 -isCavok,987 -isCavokTrend1,988 -isCavokTrend2,989 -isCavokTrend3,990 -isCavokTrend4,991 -isConstant,992 -isCorrection,993 -isEPS,994 -isEps,995 -isFillup,996 -isHindcast,997 -isOctahedral,998 -isRotatedGrid,999 -isSatellite,1000 -isSatelliteType,1001 -isSens,1002 -is_aerosol,1003 -is_aerosol_optical,1004 -is_chemical,1005 -is_chemical_distfn,1006 -is_efas,1007 -is_ocean2d_param,1008 -is_ocean3d_param,1009 -is_s2s,1010 -is_tigge,1011 -is_uerra,1012 -isectionNumber2,1013 -isectionNumber3,1014 -isectionNumber4,1015 -isotopeIdentificationNumber,1016 -iteration,1017 -iterationNumber,1018 -iteratorDisableUnrotate,1019 -jDirectionIncrement,1020 -jDirectionIncrementGiven,1021 -jDirectionIncrementGridLength,1022 -jDirectionIncrementInDegrees,1023 -jIncrement,1024 -jPointsAreConsecutive,1025 -jScansPositively,1026 -julianDay,1027 -julianForecastDay,1028 -keyData,1029 -keyMore,1030 -keySat,1031 -kindOfProduct,1032 -kurt,1033 -kurtosis,1034 -lBB,1035 -landtype,1036 -laplacianOperator,1037 -laplacianOperatorIsSet,1038 -laplacianScalingFactor,1039 -laplacianScalingFactorUnset,1040 -lastMonthUsedToBuildClimateMonth1,1041 -lastMonthUsedToBuildClimateMonth2,1042 -latLonValues,1043 -latitude,1044 -latitudeFirstInDegrees,1045 -latitudeLastInDegrees,1046 -latitudeLongitudeValues,1047 -latitudeOfCentralPointInClusterDomain,1048 -latitudeOfCentrePoint,1049 -latitudeOfCentrePointInDegrees,1050 -latitudeOfFirstGridPoint,1051 -latitudeOfFirstGridPointInDegrees,1052 -latitudeOfIcosahedronPole,1053 -latitudeOfLastGridPoint,1054 -latitudeOfLastGridPointInDegrees,1055 -latitudeOfNorthWestCornerOfArea,1056 -latitudeOfReferencePoint,1057 -latitudeOfReferencePointInDegrees,1058 -latitudeOfSouthEastCornerOfArea,1059 -latitudeOfSouthernPole,1060 -latitudeOfSouthernPoleInDegrees,1061 -latitudeOfStretchingPole,1062 -latitudeOfStretchingPoleInDegrees,1063 -latitudeOfSubSatellitePoint,1064 -latitudeOfSubSatellitePointInDegrees,1065 -latitudeOfTangencyPoint,1066 -latitudeOfThePoleOfStretching,1067 -latitudeOfThePolePoint,1068 -latitudeOfThePolePointInDegrees,1069 -latitudeOfTheSouthernPoleOfProjection,1070 -latitudeSexagesimal,1071 -latitudeWhereDxAndDyAreSpecified,1072 -latitudeWhereDxAndDyAreSpecifiedInDegrees,1073 -latitudes,1074 -latitudesList,1075 -latitudinalDirectionGridLength,1076 -lcwfvSuiteName,1077 -leadtime,1078 -legBaseDate,1079 -legBaseTime,1080 -legNumber,1081 -legacyGaussSubarea,1082 -lengthDescriptors,1083 -lengthIncrementForTheGroupLengths,1084 -lengthOf4DvarWindow,1085 -lengthOfHeaders,1086 -lengthOfIndexTemplate,1087 -lengthOfMessage,1088 -lengthOfOriginatorLocalTemplate,1089 -lengthOfProjectLocalTemplate,1090 -lengthOfTimeRange,1091 -lev,1092 -levTypeName,1093 -level,1094 -levelIndicator,1095 -levelType,1096 -levelist,1097 -levels,1098 -levtype,1099 -libraryVersion,1100 -listMembersMissing,1101 -listMembersMissing2,1102 -listMembersMissing3,1103 -listMembersMissing4,1104 -listMembersUsed,1105 -listMembersUsed2,1106 -listMembersUsed3,1107 -listMembersUsed4,1108 -listOfContributingSpectralBands,1109 -listOfDistributionFunctionParameter,1110 -listOfEnsembleForecastNumbers,1111 -listOfModelIdentifiers,1112 -listOfParametersUsedForClustering,1113 -listOfScaledFrequencies,1114 -local,1115 -localDate,1116 -localDateTime,1117 -localDay,1118 -localDecimalScaleFactor,1119 -localDefNumberOne,1120 -localDefNumberTwo,1121 -localDefinition,1122 -localDefinitionNumber,1123 -localDir,1124 -localExtensionPadding,1125 -localFlag,1126 -localFlagLatestVersion,1127 -localHour,1128 -localLatitude,1129 -localLatitude1,1130 -localLatitude2,1131 -localLongitude,1132 -localLongitude1,1133 -localLongitude2,1134 -localMinute,1135 -localMonth,1136 -localNumberOfObservations,1137 -localSecond,1138 -localSection,1139 -localSectionPresent,1140 -localTablesVersion,1141 -localTablesVersionNumber,1142 -localTime,1143 -localUsePresent,1144 -localYear,1145 -local_padding,1146 -local_use,1147 -logTransform,1148 -longitude,1149 -longitudeFirstInDegrees,1150 -longitudeLastInDegrees,1151 -longitudeOfCentralPointInClusterDomain,1152 -longitudeOfCentrePoint,1153 -longitudeOfCentrePointInDegrees,1154 -longitudeOfFirstDiamondCenterLine,1155 -longitudeOfFirstDiamondCentreLine,1156 -longitudeOfFirstDiamondCentreLineInDegrees,1157 -longitudeOfFirstGridPoint,1158 -longitudeOfFirstGridPointInDegrees,1159 -longitudeOfIcosahedronPole,1160 -longitudeOfLastGridPoint,1161 -longitudeOfLastGridPointInDegrees,1162 -longitudeOfNorthWestCornerOfArea,1163 -longitudeOfReferencePoint,1164 -longitudeOfReferencePointInDegrees,1165 -longitudeOfSouthEastCornerOfArea,1166 -longitudeOfSouthernPole,1167 -longitudeOfSouthernPoleInDegrees,1168 -longitudeOfStretchingPole,1169 -longitudeOfStretchingPoleInDegrees,1170 -longitudeOfSubSatellitePoint,1171 -longitudeOfSubSatellitePointInDegrees,1172 -longitudeOfTangencyPoint,1173 -longitudeOfThePoleOfStretching,1174 -longitudeOfThePolePoint,1175 -longitudeOfThePolePointInDegrees,1176 -longitudeOfTheSouthernPoleOfProjection,1177 -longitudeSexagesimal,1178 -longitudes,1179 -longitudesList,1180 -longitudinalDirectionGridLength,1181 -lowerLimit,1182 -lowerRange,1183 -lowerThreshold,1184 -lowerThresholdValue,1185 -ls_labeling,1186 -lsdate_bug,1187 -m,1188 -mAngleMultiplier,1189 -mBasicAngle,1190 -mars,1191 -marsClass,1192 -marsClass1,1193 -marsClass2,1194 -marsDir,1195 -marsDomain,1196 -marsEndStep,1197 -marsExperimentOffset,1198 -marsExpver,1199 -marsForecastMonth,1200 -marsGrid,1201 -marsIdent,1202 -marsKeywords,1203 -marsKeywords1,1204 -marsLamModel,1205 -marsLatitude,1206 -marsLevel,1207 -marsLevelist,1208 -marsLongitude,1209 -marsModel,1210 -marsParam,1211 -marsQuantile,1212 -marsRange,1213 -marsStartStep,1214 -marsStep,1215 -marsStream,1216 -marsStream1,1217 -marsStream2,1218 -marsType,1219 -marsType1,1220 -marsType2,1221 -mars_labeling,1222 -mask,1223 -masterDir,1224 -masterTableNumber,1225 -masterTablesVersionNumber,1226 -masterTablesVersionNumberLatest,1227 -matchAerosolBinNumber,1228 -matchAerosolPacking,1229 -matchLandType,1230 -matchSort,1231 -matchTimeRepres,1232 -matrixBitmapsPresent,1233 -matrixOfValues,1234 -max,1235 -maximum,1236 -md5Data,1237 -md5DataSection,1238 -md5GridSection,1239 -md5Headers,1240 -md5Product,1241 -md5Section1,1242 -md5Section10,1243 -md5Section2,1244 -md5Section3,1245 -md5Section4,1246 -md5Section5,1247 -md5Section6,1248 -md5Section7,1249 -md5Section8,1250 -md5Section9,1251 -md5Structure,1252 -md5TimeDomainSection,1253 -meanRVR1,1254 -meanRVR2,1255 -meanRVR3,1256 -meanRVR4,1257 -meanSize,1258 -meanValueRVR1,1259 -meanValueRVR2,1260 -meanValueRVR3,1261 -meanValueRVR4,1262 -meaningOfVerticalCoordinate,1263 -memberNumber,1264 -messageLength,1265 -metadata,1266 -method,1267 -methodNumber,1268 -million,1269 -min,1270 -minimum,1271 -minute,1272 -minuteOfAnalysis,1273 -minuteOfEndOfOverallTimeInterval,1274 -minuteOfForecast,1275 -minuteOfModelVersion,1276 -minuteOfReference,1277 -minutesAfterDataCutoff,1278 -minutesAfterReferenceTimeOfDataCutoff,1279 -missingDataFlag,1280 -missingValue,1281 -missingValueManagement,1282 -missingValueManagementUsed,1283 -missingValuesPresent,1284 -mixedCoordinateDefinition,1285 -mixedCoordinateFieldFlag,1286 -modeNumber,1287 -model,1288 -modelErrorType,1289 -modelIdentifier,1290 -modelName,1291 -modelVersionDate,1292 -modelVersionTime,1293 -molarMass,1294 -month,1295 -monthOfAnalysis,1296 -monthOfEndOfOverallTimeInterval,1297 -monthOfForecast,1298 -monthOfModelVersion,1299 -monthOfReference,1300 -monthlyVerificationDate,1301 -monthlyVerificationMonth,1302 -monthlyVerificationTime,1303 -monthlyVerificationYear,1304 -multiplicationFactorForLatLong,1305 -mybits,1306 -n,1307 -n2,1308 -n3,1309 -na,1310 -name,1311 -nameECMF,1312 -nameLegacyECMF,1313 -nameOfFirstFixedSurface,1314 -nameOfSecondFixedSurface,1315 -names,1316 -nd,1317 -neitherPresent,1318 -newSubtype,1319 -nlev,1320 -nnn,1321 -normAtFinalTime,1322 -normAtInitialTime,1323 -normal,1324 -northLatitudeOfCluster,1325 -northLatitudeOfDomainOfTubing,1326 -northWestLatitudeOfLPOArea,1327 -northWestLatitudeOfVerficationArea,1328 -northWestLongitudeOfLPOArea,1329 -northWestLongitudeOfVerficationArea,1330 -northernLatitudeOfClusterDomain,1331 -northernLatitudeOfDomain,1332 -nosigPresent,1333 -notDecoded,1334 -nt,1335 -number,1336 -numberInHorizontalCoordinates,1337 -numberInMixedCoordinateDefinition,1338 -numberInTheAuxiliaryArray,1339 -numberInTheGridCoordinateList,1340 -numberIncludedInAverage,1341 -numberMissingFromAveragesOrAccumulations,1342 -numberOfAnalysis,1343 -numberOfBits,1344 -numberOfBitsContainingEachPackedValue,1345 -numberOfBitsForScaledGroupLengths,1346 -numberOfBitsUsedForTheGroupWidths,1347 -numberOfBitsUsedForTheScaledGroupLengths,1348 -numberOfBytesInLocalDefinition,1349 -numberOfBytesOfFreeFormatData,1350 -numberOfBytesPerInteger,1351 -numberOfCategories,1352 -numberOfCharacters,1353 -numberOfChars,1354 -numberOfClusterHighResolution,1355 -numberOfClusterLowResolution,1356 -numberOfClusters,1357 -numberOfCodedValues,1358 -numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction,1359 -numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction,1360 -numberOfColumns,1361 -numberOfComponents,1362 -numberOfContributingSpectralBands,1363 -numberOfControlForecastTube,1364 -numberOfCoordinatesValues,1365 -numberOfDataBinsAlongRadials,1366 -numberOfDataMatrices,1367 -numberOfDataPoints,1368 -numberOfDataPointsExpected,1369 -numberOfDataValues,1370 -numberOfDaysInClimateSamplingWindow,1371 -numberOfDiamonds,1372 -numberOfDirections,1373 -numberOfDistinctSection3s,1374 -numberOfDistinctSection4s,1375 -numberOfDistinctSection5s,1376 -numberOfDistinctSection6s,1377 -numberOfDistinctSection7s,1378 -numberOfDistinctSection8s,1379 -numberOfDistinctSection9s,1380 -numberOfDistributionFunctionParameters,1381 -numberOfEffectiveValues,1382 -numberOfFloats,1383 -numberOfForcasts,1384 -numberOfForecastsInCluster,1385 -numberOfForecastsInEnsemble,1386 -numberOfForecastsInTheCluster,1387 -numberOfForecastsInTube,1388 -numberOfFrequencies,1389 -numberOfGridInReference,1390 -numberOfGridUsed,1391 -numberOfGroups,1392 -numberOfGroupsOfDataValues,1393 -numberOfHorizontalPoints,1394 -numberOfIntegers,1395 -numberOfInts,1396 -numberOfIterations,1397 -numberOfLocalDefinitions,1398 -numberOfLogicals,1399 -numberOfMembersInCluster,1400 -numberOfMembersInEnsemble,1401 -numberOfMissing,1402 -numberOfMissingInStatisticalProcess,1403 -numberOfMissingValues,1404 -numberOfModeOfDistribution,1405 -numberOfModels,1406 -numberOfOctectsForNumberOfPoints,1407 -numberOfOctetsExtraDescriptors,1408 -numberOfOperationalForecastTube,1409 -numberOfPackedValues,1410 -numberOfParallelsBetweenAPoleAndTheEquator,1411 -numberOfParametersUsedForClustering,1412 -numberOfPartitions,1413 -numberOfPoints,1414 -numberOfPointsAlongAMeridian,1415 -numberOfPointsAlongAParallel,1416 -numberOfPointsAlongFirstAxis,1417 -numberOfPointsAlongSecondAxis,1418 -numberOfPointsAlongTheXAxis,1419 -numberOfPointsAlongTheYAxis,1420 -numberOfPointsAlongXAxis,1421 -numberOfPointsAlongXAxisInCouplingArea,1422 -numberOfPointsAlongYAxis,1423 -numberOfPointsAlongYAxisInCouplingArea,1424 -numberOfPointsInDomain,1425 -numberOfPointsUsed,1426 -numberOfPressureLevelsUsedForClustering,1427 -numberOfRadarSitesUsed,1428 -numberOfRadials,1429 -numberOfReforecastYearsInModelClimate,1430 -numberOfRemaininChars,1431 -numberOfRepresentativeMember,1432 -numberOfReservedBytes,1433 -numberOfRows,1434 -numberOfSecondOrderPackedValues,1435 -numberOfSection,1436 -numberOfSingularVectorsComputed,1437 -numberOfSingularVectorsEvolved,1438 -numberOfStepsUsedForClustering,1439 -numberOfSubsets,1440 -numberOfTensOfThousandsOfYearsOfOffset,1441 -numberOfTimeRange,1442 -numberOfTimeSteps,1443 -numberOfUnexpandedDescriptors,1444 -numberOfUnusedBitsAtEndOfSection3,1445 -numberOfUsedSpatialTiles,1446 -numberOfUsedTileAttributes,1447 -numberOfUsefulPointsAlongXAxis,1448 -numberOfUsefulPointsAlongYAxis,1449 -numberOfVGridUsed,1450 -numberOfValues,1451 -numberOfVerticalCoordinateValues,1452 -numberOfVerticalGridDescriptors,1453 -numberOfVerticalPoints,1454 -numberingOrderOfDiamonds,1455 -numericValues,1456 -observablePropertyTemplate,1457 -observablePropertyTemplateNumber,1458 -observationDiagnostic,1459 -observationGeneratingProcessIdentifier,1460 -observationType,1461 -observedData,1462 -obstype,1463 -oceanAtmosphereCoupling,1464 -oceanLevName,1465 -oceanStream,1466 -octetAtWichPackedDataBegins,1467 -offset,1468 -offsetAfterBitmap,1469 -offsetAfterCentreLocalSection,1470 -offsetAfterData,1471 -offsetAfterLocalSection,1472 -offsetAfterPadding,1473 -offsetBBitmap,1474 -offsetBSection5,1475 -offsetBSection6,1476 -offsetBSection9,1477 -offsetBeforeBitmap,1478 -offsetBeforeData,1479 -offsetBeforePL,1480 -offsetBeforePV,1481 -offsetDescriptors,1482 -offsetEndSection4,1483 -offsetFreeFormData,1484 -offsetFromOriginToInnerBound,1485 -offsetFromReferenceOfFirstTime,1486 -offsetICEFieldsUsed,1487 -offsetSection0,1488 -offsetSection1,1489 -offsetSection10,1490 -offsetSection11,1491 -offsetSection2,1492 -offsetSection3,1493 -offsetSection4,1494 -offsetSection5,1495 -offsetSection6,1496 -offsetSection7,1497 -offsetSection8,1498 -offsetSection9,1499 -offsetToEndOf4DvarWindow,1500 -offsetValuesBy,1501 -oldSubtype,1502 -one,1503 -oneConstant,1504 -oneMillionConstant,1505 -oneMinuteMeanMaximumRVR1,1506 -oneMinuteMeanMaximumRVR2,1507 -oneMinuteMeanMaximumRVR3,1508 -oneMinuteMeanMaximumRVR4,1509 -oneMinuteMeanMinimumRVR1,1510 -oneMinuteMeanMinimumRVR2,1511 -oneMinuteMeanMinimumRVR3,1512 -oneMinuteMeanMinimumRVR4,1513 -oneThousand,1514 -oper,1515 -operStream,1516 -operatingMode,1517 -operationalForecastCluster,1518 -optimisationTime,1519 -optimizeScaleFactor,1520 -optionalData,1521 -opttime,1522 -orderOfSPD,1523 -orderOfSpatialDifferencing,1524 -orientationOfTheGrid,1525 -orientationOfTheGridInDegrees,1526 -origin,1527 -originalParameterNumber,1528 -originalParameterTableNumber,1529 -originalSubCentreIdentifier,1530 -originatingCentre,1531 -originatingCentreOfAnalysis,1532 -originatorLocalTemplate,1533 -originatorLocalTemplateNumber,1534 -overlayTemplate,1535 -overlayTemplateNumber,1536 -pack,1537 -packedValues,1538 -packingError,1539 -packingType,1540 -padding,1541 -padding_grid1_1,1542 -padding_grid1_2,1543 -padding_grid3_1,1544 -padding_grid4_1,1545 -padding_grid50_1,1546 -padding_grid5_1,1547 -padding_grid90_1,1548 -padding_loc10_1,1549 -padding_loc12_1,1550 -padding_loc13_1,1551 -padding_loc13_2,1552 -padding_loc13_3,1553 -padding_loc13_4,1554 -padding_loc13_5,1555 -padding_loc14_1,1556 -padding_loc14_2,1557 -padding_loc15_1,1558 -padding_loc16_1,1559 -padding_loc17_2,1560 -padding_loc18_1,1561 -padding_loc18_2,1562 -padding_loc190_1,1563 -padding_loc191_1,1564 -padding_loc191_2,1565 -padding_loc191_3,1566 -padding_loc192_1,1567 -padding_loc19_2,1568 -padding_loc20_1,1569 -padding_loc21_1,1570 -padding_loc23_1,1571 -padding_loc244_1,1572 -padding_loc244_2,1573 -padding_loc244_3,1574 -padding_loc245_1,1575 -padding_loc245_2,1576 -padding_loc26_1,1577 -padding_loc27_1,1578 -padding_loc27_2,1579 -padding_loc28_1,1580 -padding_loc29_1,1581 -padding_loc29_2,1582 -padding_loc29_3,1583 -padding_loc2_1,1584 -padding_loc2_2,1585 -padding_loc30_1,1586 -padding_loc30_2,1587 -padding_loc37_1,1588 -padding_loc37_2,1589 -padding_loc38_1,1590 -padding_loc3_1,1591 -padding_loc4_2,1592 -padding_loc50_1,1593 -padding_loc5_1,1594 -padding_loc6_1,1595 -padding_loc7_1,1596 -padding_loc9_1,1597 -padding_loc9_2,1598 -padding_local11_1,1599 -padding_local1_1,1600 -padding_local1_31,1601 -padding_local40_1,1602 -padding_local_35,1603 -padding_local_7_1,1604 -padding_sec1_loc,1605 -padding_sec2_1,1606 -padding_sec2_2,1607 -padding_sec2_3,1608 -padding_sec3_1,1609 -padding_sec4_1,1610 -paleontologicalOffset,1611 -param,1612 -paramId,1613 -paramIdECMF,1614 -paramIdLegacyECMF,1615 -param_value_max,1616 -param_value_min,1617 -parameter,1618 -parameterCategory,1619 -parameterCode,1620 -parameterDiscipline,1621 -parameterIndicator,1622 -parameterName,1623 -parameterNumber,1624 -parameterUnits,1625 -parameters,1626 -parametersVersion,1627 -partitionItems,1628 -partitionNumber,1629 -partitionTable,1630 -partitions,1631 -pastTendencyRVR1,1632 -pastTendencyRVR2,1633 -pastTendencyRVR3,1634 -pastTendencyRVR4,1635 -patch_precip_fp,1636 -pentagonalResolutionParameterJ,1637 -pentagonalResolutionParameterK,1638 -pentagonalResolutionParameterM,1639 -percentileValue,1640 -periodOfTime,1641 -periodOfTimeIntervals,1642 -perturbationNumber,1643 -perturbedType,1644 -phase,1645 -physicalFlag1,1646 -physicalFlag2,1647 -physicalMeaningOfVerticalCoordinate,1648 -pl,1649 -platform,1650 -plusOneinOrdersOfSPD,1651 -points,1652 -postAuxiliary,1653 -postAuxiliaryArrayPresent,1654 -powerOfTenUsedToScaleClimateWeight,1655 -preBitmapValues,1656 -preProcessingParameter,1657 -precision,1658 -precisionOfTheUnpackedSubset,1659 -predefined_grid,1660 -predefined_grid_values,1661 -present,1662 -presentTrend1,1663 -presentTrend2,1664 -presentTrend3,1665 -presentTrend4,1666 -presentWeather1Present,1667 -presentWeather1PresentTrend1,1668 -presentWeather1PresentTrend2,1669 -presentWeather1PresentTrend3,1670 -presentWeather1PresentTrend4,1671 -presentWeather2Present,1672 -presentWeather2PresentTrend1,1673 -presentWeather2PresentTrend2,1674 -presentWeather2PresentTrend3,1675 -presentWeather2PresentTrend4,1676 -presentWeather3Present,1677 -presentWeather3PresentTrend1,1678 -presentWeather3PresentTrend2,1679 -presentWeather3PresentTrend3,1680 -presentWeather3PresentTrend4,1681 -pressureLevel,1682 -pressureUnits,1683 -primaryBitmap,1684 -primaryMissingValue,1685 -primaryMissingValueSubstitute,1686 -probContinous,1687 -probPoint,1688 -probProductDefinition,1689 -probabilityType,1690 -probabilityTypeName,1691 -process,1692 -produceLargeConstantFields,1693 -product,1694 -productDefinition,1695 -productDefinitionTemplateNumber,1696 -productDefinitionTemplateNumberInternal,1697 -productIdentifier,1698 -productType,1699 -productionStatusOfProcessedData,1700 -projSourceString,1701 -projString,1702 -projTargetString,1703 -projectLocalTemplate,1704 -projectLocalTemplateNumber,1705 -projectionCenterFlag,1706 -projectionCentreFlag,1707 -pv,1708 -pvlLocation,1709 -qfe,1710 -qfePresent,1711 -qfeUnits,1712 -qnh,1713 -qnhAPresent,1714 -qnhPresent,1715 -qnhUnits,1716 -qualityControl,1717 -qualityControlIndicator,1718 -qualityValueAssociatedWithParameter,1719 -quantile,1720 -radialAngularSpacing,1721 -radials,1722 -radius,1723 -radiusInMetres,1724 -radiusOfCentralCluster,1725 -radiusOfClusterDomain,1726 -radiusOfTheEarth,1727 -range,1728 -rangeBinSpacing,1729 -rdbDateTime,1730 -rdbSubtype,1731 -rdbType,1732 -rdb_key,1733 -rdbtime,1734 -rdbtimeDate,1735 -rdbtimeDay,1736 -rdbtimeHour,1737 -rdbtimeMinute,1738 -rdbtimeMonth,1739 -rdbtimeSecond,1740 -rdbtimeTime,1741 -rdbtimeYear,1742 -realPart,1743 -realPartOf00,1744 -recDateTime,1745 -recentWeather,1746 -recentWeatherTry,1747 -rectime,1748 -rectimeDay,1749 -rectimeHour,1750 -rectimeMinute,1751 -rectimeSecond,1752 -reducedGrid,1753 -refdate,1754 -reference,1755 -referenceDate,1756 -referenceForGroupLengths,1757 -referenceForGroupWidths,1758 -referenceOfLengths,1759 -referenceOfWidths,1760 -referenceReflectivityForEchoTop,1761 -referenceSampleInterval,1762 -referenceStep,1763 -referenceValue,1764 -referenceValueError,1765 -reflectivityCalibrationConstant,1766 -remarkPresent,1767 -reportType,1768 -representationMode,1769 -representationType,1770 -representativeMember,1771 -reserved,1772 -reserved1,1773 -reserved2,1774 -reserved3,1775 -reservedNeedNotBePresent,1776 -reservedOctet,1777 -reservedSection2,1778 -reservedSection3,1779 -reservedSection4,1780 -resolutionAndComponentFlags,1781 -resolutionAndComponentFlags1,1782 -resolutionAndComponentFlags2,1783 -resolutionAndComponentFlags3,1784 -resolutionAndComponentFlags4,1785 -resolutionAndComponentFlags6,1786 -resolutionAndComponentFlags7,1787 -resolutionAndComponentFlags8,1788 -restricted,1789 -rootGroupObjectHeaderAddress,1790 -rootGroupSymbolTableEntry,1791 -rootTablesDir,1792 -roundedMarsLatitude,1793 -roundedMarsLevelist,1794 -roundedMarsLongitude,1795 -runwayBrakingActionState1,1796 -runwayBrakingActionState2,1797 -runwayBrakingActionState3,1798 -runwayBrakingActionState4,1799 -runwayDepositCodeState1,1800 -runwayDepositCodeState2,1801 -runwayDepositCodeState3,1802 -runwayDepositCodeState4,1803 -runwayDepositState1,1804 -runwayDepositState2,1805 -runwayDepositState3,1806 -runwayDepositState4,1807 -runwayDepthOfDepositCodeState1,1808 -runwayDepthOfDepositCodeState2,1809 -runwayDepthOfDepositCodeState3,1810 -runwayDepthOfDepositCodeState4,1811 -runwayDepthOfDepositState1,1812 -runwayDepthOfDepositState2,1813 -runwayDepthOfDepositState3,1814 -runwayDepthOfDepositState4,1815 -runwayDesignatorRVR1,1816 -runwayDesignatorRVR2,1817 -runwayDesignatorRVR3,1818 -runwayDesignatorRVR4,1819 -runwayDesignatorState1,1820 -runwayDesignatorState2,1821 -runwayDesignatorState3,1822 -runwayDesignatorState4,1823 -runwayExtentOfContaminationCodeState1,1824 -runwayExtentOfContaminationCodeState2,1825 -runwayExtentOfContaminationCodeState3,1826 -runwayExtentOfContaminationCodeState4,1827 -runwayExtentOfContaminationState1,1828 -runwayExtentOfContaminationState2,1829 -runwayExtentOfContaminationState3,1830 -runwayExtentOfContaminationState4,1831 -runwayFrictionCodeValueState1,1832 -runwayFrictionCodeValueState2,1833 -runwayFrictionCodeValueState3,1834 -runwayFrictionCodeValueState4,1835 -runwayFrictionCoefficientCodeState1,1836 -runwayFrictionCoefficientCodeState2,1837 -runwayFrictionCoefficientCodeState3,1838 -runwayFrictionCoefficientCodeState4,1839 -runwayFrictionCoefficientState1,1840 -runwayFrictionCoefficientState2,1841 -runwayFrictionCoefficientState3,1842 -runwayFrictionCoefficientState4,1843 -runwaySideCodeState1,1844 -runwaySideCodeState2,1845 -runwaySideCodeState3,1846 -runwaySideCodeState4,1847 -runwayState,1848 -sampleSizeOfModelClimate,1849 -satelliteID,1850 -satelliteIdentifier,1851 -satelliteNumber,1852 -satelliteSeries,1853 -scaleFactorAtReferencePoint,1854 -scaleFactorOfCentralWaveNumber,1855 -scaleFactorOfDistanceFromEnsembleMean,1856 -scaleFactorOfDistributionFunctionParameter,1857 -scaleFactorOfEarthMajorAxis,1858 -scaleFactorOfEarthMinorAxis,1859 -scaleFactorOfFirstFixedSurface,1860 -scaleFactorOfFirstSize,1861 -scaleFactorOfFirstWavelength,1862 -scaleFactorOfLengthOfSemiMajorAxis,1863 -scaleFactorOfLengthOfSemiMinorAxis,1864 -scaleFactorOfLowerLimit,1865 -scaleFactorOfMajorAxisOfOblateSpheroidEarth,1866 -scaleFactorOfMinorAxisOfOblateSpheroidEarth,1867 -scaleFactorOfPrimeMeridianOffset,1868 -scaleFactorOfRadiusOfSphericalEarth,1869 -scaleFactorOfSecondFixedSurface,1870 -scaleFactorOfSecondSize,1871 -scaleFactorOfSecondWavelength,1872 -scaleFactorOfStandardDeviation,1873 -scaleFactorOfStandardDeviationInTheCluster,1874 -scaleFactorOfUpperLimit,1875 -scaleValuesBy,1876 -scaledDirections,1877 -scaledFrequencies,1878 -scaledValueOfCentralWaveNumber,1879 -scaledValueOfDistanceFromEnsembleMean,1880 -scaledValueOfDistributionFunctionParameter,1881 -scaledValueOfEarthMajorAxis,1882 -scaledValueOfEarthMinorAxis,1883 -scaledValueOfFirstFixedSurface,1884 -scaledValueOfFirstSize,1885 -scaledValueOfFirstWavelength,1886 -scaledValueOfLengthOfSemiMajorAxis,1887 -scaledValueOfLengthOfSemiMinorAxis,1888 -scaledValueOfLowerLimit,1889 -scaledValueOfMajorAxisOfOblateSpheroidEarth,1890 -scaledValueOfMinorAxisOfOblateSpheroidEarth,1891 -scaledValueOfPrimeMeridianOffset,1892 -scaledValueOfRadiusOfSphericalEarth,1893 -scaledValueOfSecondFixedSurface,1894 -scaledValueOfSecondSize,1895 -scaledValueOfSecondWavelength,1896 -scaledValueOfStandardDeviation,1897 -scaledValueOfStandardDeviationInTheCluster,1898 -scaledValueOfUpperLimit,1899 -scalingFactorForFrequencies,1900 -scanPosition,1901 -scanningMode,1902 -scanningMode4,1903 -scanningMode5,1904 -scanningMode6,1905 -scanningMode7,1906 -scanningMode8,1907 -scanningModeForOneDiamond,1908 -sd,1909 -second,1910 -secondDimension,1911 -secondDimensionCoordinateValueDefinition,1912 -secondDimensionPhysicalSignificance,1913 -secondLatitude,1914 -secondLatitudeInDegrees,1915 -secondOfEndOfOverallTimeInterval,1916 -secondOfForecast,1917 -secondOfModelVersion,1918 -secondOrderFlags,1919 -secondOrderOfDifferentWidth,1920 -secondOrderValuesDifferentWidths,1921 -secondaryBitMap,1922 -secondaryBitmap,1923 -secondaryBitmapPresent,1924 -secondaryBitmaps,1925 -secondaryBitmapsCount,1926 -secondaryBitmapsSize,1927 -secondaryMissingValue,1928 -secondaryMissingValueSubstitute,1929 -secondsOfAnalysis,1930 -secondsOfReference,1931 -section,1932 -section0Length,1933 -section0Pointer,1934 -section1,1935 -section10Length,1936 -section10Pointer,1937 -section11Length,1938 -section11Pointer,1939 -section1Flags,1940 -section1Length,1941 -section1Padding,1942 -section1Pointer,1943 -section2Length,1944 -section2Padding,1945 -section2Pointer,1946 -section2Present,1947 -section2Used,1948 -section3Flags,1949 -section3Length,1950 -section3Padding,1951 -section3Pointer,1952 -section3UniqueIdentifier,1953 -section4,1954 -section4Length,1955 -section4Padding,1956 -section4Pointer,1957 -section4UniqueIdentifier,1958 -section5,1959 -section5Length,1960 -section5Pointer,1961 -section5UniqueIdentifier,1962 -section6,1963 -section6Length,1964 -section6Pointer,1965 -section6UniqueIdentifier,1966 -section7,1967 -section7Length,1968 -section7Pointer,1969 -section7UniqueIdentifier,1970 -section8,1971 -section8Length,1972 -section8Pointer,1973 -section8UniqueIdentifier,1974 -section9Length,1975 -section9Pointer,1976 -section9UniqueIdentifier,1977 -sectionLengthLimitForEnsembles,1978 -sectionLengthLimitForProbability,1979 -sectionNumber,1980 -sectionPosition,1981 -section_01,1982 -section_02,1983 -section_03,1984 -section_04,1985 -section_05,1986 -section_06,1987 -section_07,1988 -section_08,1989 -section_09,1990 -section_1,1991 -section_10,1992 -section_11,1993 -section_2,1994 -section_3,1995 -section_4,1996 -section_5,1997 -section_6,1998 -section_7,1999 -section_8,2000 -selectStepTemplateInstant,2001 -selectStepTemplateInterval,2002 -sensitiveAreaDomain,2003 -sequences,2004 -setBitsPerValue,2005 -setCalendarId,2006 -setDecimalPrecision,2007 -setLocalDefinition,2008 -setToMissingIfOutOfRange,2009 -sfc_levtype,2010 -shapeOfTheEarth,2011 -shapeOfVerificationArea,2012 -shortName,2013 -shortNameECMF,2014 -shortNameLegacyECMF,2015 -short_name,2016 -signature,2017 -significanceOfReferenceDateAndTime,2018 -significanceOfReferenceTime,2019 -simpleThinningMissingRadius,2020 -simpleThinningSkip,2021 -simpleThinningStart,2022 -siteElevation,2023 -siteId,2024 -siteLatitude,2025 -siteLongitude,2026 -sizeOfLength,2027 -sizeOfOffsets,2028 -sizeOfPostAuxiliaryArray,2029 -sizeOfPostAuxiliaryArrayPlusOne,2030 -skew,2031 -skewness,2032 -skipExtraKeyAttributes,2033 -sort,2034 -sourceOfGridDefinition,2035 -sourceSinkChemicalPhysicalProcess,2036 -southEastLatitudeOfLPOArea,2037 -southEastLatitudeOfVerficationArea,2038 -southEastLongitudeOfLPOArea,2039 -southEastLongitudeOfVerficationArea,2040 -southLatitudeOfCluster,2041 -southLatitudeOfDomainOfTubing,2042 -southPoleOnProjectionPlane,2043 -southernLatitudeOfClusterDomain,2044 -southernLatitudeOfDomain,2045 -sp1,2046 -sp2,2047 -sp3,2048 -spaceUnitFlag,2049 -spacingOfBinsAlongRadials,2050 -spare,2051 -spare1,2052 -spare2,2053 -spare3,2054 -spare4,2055 -spatialProcessing,2056 -spatialSmoothingOfProduct,2057 -spectralDataRepresentationMode,2058 -spectralDataRepresentationType,2059 -spectralMode,2060 -spectralType,2061 -sphericalHarmonics,2062 -standardDeviation,2063 -standardParallel,2064 -standardParallelInDegrees,2065 -standardParallelInMicrodegrees,2066 -startOfHeaders,2067 -startOfMessage,2068 -startOfRange,2069 -startStep,2070 -startStepInHours,2071 -startTimeStep,2072 -startingAzimuth,2073 -statisticalProcess,2074 -statisticalProcessesList,2075 -statistics,2076 -status,2077 -step,2078 -stepForClustering,2079 -stepHumanReadable,2080 -stepInHours,2081 -stepRange,2082 -stepRangeInHours,2083 -stepType,2084 -stepTypeForConversion,2085 -stepTypeInternal,2086 -stepUnits,2087 -stepZero,2088 -stream,2089 -streamOfAnalysis,2090 -stretchingFactor,2091 -stretchingFactorScaled,2092 -stringValues,2093 -subCentre,2094 -subDefinitions1,2095 -subDefinitions2,2096 -subLocalDefinition1,2097 -subLocalDefinition2,2098 -subLocalDefinitionLength1,2099 -subLocalDefinitionLength2,2100 -subLocalDefinitionNumber1,2101 -subLocalDefinitionNumber2,2102 -subSetJ,2103 -subSetK,2104 -subSetM,2105 -subcentreOfAnalysis,2106 -subdivisionsOfBasicAngle,2107 -suiteName,2108 -superblockExtensionAddress,2109 -swapScanningLat,2110 -swapScanningLon,2111 -swapScanningX,2112 -swapScanningY,2113 -system,2114 -systemNumber,2115 -t,2116 -table2Version,2117 -tableCode,2118 -tableNumber,2119 -tableReference,2120 -tablesLocalDir,2121 -tablesMasterDir,2122 -tablesVersion,2123 -tablesVersionLatest,2124 -targetCompressionRatio,2125 -td,2126 -tempPressureUnits,2127 -temperature,2128 -temperatureAndDewpointPresent,2129 -templatesLocalDir,2130 -templatesMasterDir,2131 -theHindcastMarsStream,2132 -theMessage,2133 -thisExperimentVersionNumber,2134 -thisMarsClass,2135 -thisMarsStream,2136 -thisMarsType,2137 -thousand,2138 -three,2139 -threshold,2140 -thresholdIndicator,2141 -tiggeCentre,2142 -tiggeLAMName,2143 -tiggeLocalVersion,2144 -tiggeModel,2145 -tiggeSection,2146 -tiggeSuiteID,2147 -tigge_name,2148 -tigge_short_name,2149 -tileClassification,2150 -tileIndex,2151 -time,2152 -timeCoordinateDefinition,2153 -timeDomainTemplate,2154 -timeDomainTemplateNumber,2155 -timeIncrement,2156 -timeIncrementBetweenSuccessiveFields,2157 -timeOfAnalysis,2158 -timeOfForecast,2159 -timeOfModelVersion,2160 -timeOfReference,2161 -timeRangeIndicator,2162 -timeRangeIndicatorFromStepRange,2163 -timeUnitFlag,2164 -timerepres,2165 -topLevel,2166 -total,2167 -totalAerosolBinsNumbers,2168 -totalInitialConditions,2169 -totalLength,2170 -totalNumber,2171 -totalNumberOfClusters,2172 -totalNumberOfDataValuesMissingInStatisticalProcess,2173 -totalNumberOfDirections,2174 -totalNumberOfForecastProbabilities,2175 -totalNumberOfFrequencies,2176 -totalNumberOfGridPoints,2177 -totalNumberOfIterations,2178 -totalNumberOfRepetitions,2179 -totalNumberOfTileAttributePairs,2180 -totalNumberOfTubes,2181 -totalNumberOfValuesInUnpackedSubset,2182 -totalNumberOfdimensions,2183 -treatmentOfMissingData,2184 -true,2185 -trueLengthOfLastGroup,2186 -truncateDegrees,2187 -truncateLaplacian,2188 -tsectionNumber3,2189 -tsectionNumber4,2190 -tsectionNumber5,2191 -tubeDomain,2192 -tubeNumber,2193 -two,2194 -twoOrdersOfSPD,2195 -type,2196 -typeOfAnalysis,2197 -typeOfAuxiliaryInformation,2198 -typeOfCalendar,2199 -typeOfCompressionUsed,2200 -typeOfDistributionFunction,2201 -typeOfEnsembleForecast,2202 -typeOfEnsembleMember,2203 -typeOfFirstFixedSurface,2204 -typeOfGeneratingProcess,2205 -typeOfGrid,2206 -typeOfHorizontalLine,2207 -typeOfIntervalForFirstAndSecondSize,2208 -typeOfIntervalForFirstAndSecondWavelength,2209 -typeOfLevel,2210 -typeOfLevelECMF,2211 -typeOfOriginalFieldValues,2212 -typeOfPacking,2213 -typeOfPostProcessing,2214 -typeOfPreProcessing,2215 -typeOfProcessedData,2216 -typeOfSSTFieldUsed,2217 -typeOfSecondFixedSurface,2218 -typeOfSizeInterval,2219 -typeOfStatisticalPostProcessingOfEnsembleMembers,2220 -typeOfStatisticalProcessing,2221 -typeOfTimeIncrement,2222 -typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing,2223 -typeOfWavelengthInterval,2224 -typicalCentury,2225 -typicalDate,2226 -typicalDateTime,2227 -typicalDay,2228 -typicalHour,2229 -typicalMinute,2230 -typicalMonth,2231 -typicalSecond,2232 -typicalTime,2233 -typicalYear,2234 -typicalYear2,2235 -typicalYearOfCentury,2236 -uco,2237 -ucs,2238 -unexpandedDescriptors,2239 -unexpandedDescriptorsEncoded,2240 -unitOfOffsetFromReferenceTime,2241 -unitOfTime,2242 -unitOfTimeIncrement,2243 -unitOfTimeRange,2244 -units,2245 -unitsBias,2246 -unitsConversionOffset,2247 -unitsConversionScaleFactor,2248 -unitsDecimalScaleFactor,2249 -unitsECMF,2250 -unitsFactor,2251 -unitsLegacyECMF,2252 -unitsOfFirstFixedSurface,2253 -unitsOfSecondFixedSurface,2254 -unknown,2255 -unpack,2256 -unpackedError,2257 -unpackedSubsetPrecision,2258 -unpackedValues,2259 -unsignedIntegers,2260 -unstructuredGrid,2261 -unstructuredGridSubtype,2262 -unstructuredGridType,2263 -unstructuredGridUUID,2264 -unusedBitsInBitmap,2265 -updateSequenceNumber,2266 -upperLimit,2267 -upperRange,2268 -upperThreshold,2269 -upperThresholdValue,2270 -userDateEnd,2271 -userDateStart,2272 -userDateTimeEnd,2273 -userDateTimeStart,2274 -userTimeEnd,2275 -userTimeStart,2276 -uuidOfHGrid,2277 -uuidOfVGrid,2278 -uvRelativeToGrid,2279 -validityDate,2280 -validityTime,2281 -values,2282 -variationOfVisibility,2283 -variationOfVisibilityDirection,2284 -variationOfVisibilityDirectionAngle,2285 -variationOfVisibilityDirectionTrend1,2286 -variationOfVisibilityDirectionTrend2,2287 -variationOfVisibilityDirectionTrend3,2288 -variationOfVisibilityDirectionTrend4,2289 -variationOfVisibilityTrend1,2290 -variationOfVisibilityTrend2,2291 -variationOfVisibilityTrend3,2292 -variationOfVisibilityTrend4,2293 -varno,2294 -verificationDate,2295 -verificationMonth,2296 -verificationYear,2297 -verifyingMonth,2298 -version,2299 -versionNumOfFilesFreeSpaceStorage,2300 -versionNumOfRootGroupSymbolTableEntry,2301 -versionNumOfSharedHeaderMessageFormat,2302 -versionNumberOfExperimentalSuite,2303 -versionNumberOfGribLocalTables,2304 -versionNumberOfSuperblock,2305 -versionOfModelClimate,2306 -verticalCoordinate,2307 -verticalCoordinateDefinition,2308 -verticalDomainTemplate,2309 -verticalDomainTemplateNumber,2310 -verticalVisibility,2311 -verticalVisibilityCoded,2312 -visibility,2313 -visibilityInKilometresTrend1,2314 -visibilityInKilometresTrend2,2315 -visibilityInKilometresTrend3,2316 -visibilityInKilometresTrend4,2317 -visibilityTrend1,2318 -visibilityTrend2,2319 -visibilityTrend3,2320 -visibilityTrend4,2321 -waveDomain,2322 -weightAppliedToClimateMonth1,2323 -westLongitudeOfCluster,2324 -westLongitudeOfDomainOfTubing,2325 -westernLongitudeOfClusterDomain,2326 -westernLongitudeOfDomain,2327 -widthOfFirstOrderValues,2328 -widthOfLengths,2329 -widthOfSPD,2330 -widthOfWidths,2331 -windDirection,2332 -windDirectionTrend1,2333 -windDirectionTrend2,2334 -windDirectionTrend3,2335 -windDirectionTrend4,2336 -windGust,2337 -windGustTrend1,2338 -windGustTrend2,2339 -windGustTrend3,2340 -windGustTrend4,2341 -windPresent,2342 -windSpeed,2343 -windSpeedTrend1,2344 -windSpeedTrend2,2345 -windSpeedTrend3,2346 -windSpeedTrend4,2347 -windUnits,2348 -windUnitsTrend1,2349 -windUnitsTrend2,2350 -windUnitsTrend3,2351 -windUnitsTrend4,2352 -windVariableDirection,2353 -windVariableDirectionTrend1,2354 -windVariableDirectionTrend2,2355 -windVariableDirectionTrend3,2356 -windVariableDirectionTrend4,2357 -wrongPadding,2358 -xCoordinateOfOriginOfSectorImage,2359 -xCoordinateOfSubSatellitePoint,2360 -xDirectionGridLength,2361 -xDirectionGridLengthInMetres,2362 -xDirectionGridLengthInMillimetres,2363 -xFirst,2364 -xLast,2365 -yCoordinateOfOriginOfSectorImage,2366 -yCoordinateOfSubSatellitePoint,2367 -yDirectionGridLength,2368 -yDirectionGridLengthInMetres,2369 -yDirectionGridLengthInMillimetres,2370 -yFirst,2371 -yLast,2372 -year,2373 -yearOfAnalysis,2374 -yearOfCentury,2375 -yearOfEndOfOverallTimeInterval,2376 -yearOfForecast,2377 -yearOfModelVersion,2378 -yearOfReference,2379 -zero,2380 -zeros,2381 +Used_Model_LBC,254 +Used_Model_LBC_E2,255 +Used_Model_LBC_E3,256 +Used_Model_LBC_E4,257 +WMO,258 +WRAP,259 +WRAPstr,260 +X1,261 +X1InGridLengths,262 +X2,263 +X2InGridLengths,264 +XR,265 +XRInMetres,266 +Xo,267 +Xp,268 +XpInGridLengths,269 +Y1,270 +Y1InGridLengths,271 +Y2,272 +Y2InGridLengths,273 +YR,274 +YRInMetres,275 +YY,276 +YearOfModelVersion,277 +Yo,278 +Yp,279 +YpInGridLengths,280 +ZLBASE,281 +ZLMULT,282 +_T,283 +_TS,284 +_anoffset,285 +_leg_number,286 +_numberOfValues,287 +accumulationInterval,288 +accuracyMultipliedByFactor,289 +addEmptySection2,290 +addExtraLocalSection,291 +additionalFlagPresent,292 +addressOfFileFreeSpaceInfo,293 +aerosolType,294 +aerosolbinnumber,295 +aerosolpacking,296 +alternativeRowScanning,297 +altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius,298 +analysisOffsets,299 +angleDivisor,300 +angleMultiplier,301 +angleOfRotation,302 +angleOfRotationInDegrees,303 +angleOfRotationOfProjection,304 +angleSubdivisions,305 +anoffset,306 +anoffsetFirst,307 +anoffsetFrequency,308 +anoffsetLast,309 +applicationIdentifier,310 +assertion,311 +atmosphericChemicalOrPhysicalConstituentType,312 +attributeOfTile,313 +auxiliary,314 +average,315 +averaging1Flag,316 +averaging2Flag,317 +averagingPeriod,318 +avg,319 +azimuthalWidth,320 +backgroundGeneratingProcessIdentifier,321 +backgroundProcess,322 +band,323 +baseAddress,324 +baseDateEPS,325 +baseDateOfThisLeg,326 +baseTimeEPS,327 +baseTimeOfThisLeg,328 +basicAngleOfTheInitialProductionDomain,329 +beginDayTrend1,330 +beginDayTrend2,331 +beginDayTrend3,332 +beginDayTrend4,333 +beginHourTrend1,334 +beginHourTrend2,335 +beginHourTrend3,336 +beginHourTrend4,337 +beginMinuteTrend1,338 +beginMinuteTrend2,339 +beginMinuteTrend3,340 +beginMinuteTrend4,341 +beginMonthTrend1,342 +beginMonthTrend2,343 +beginMonthTrend3,344 +beginMonthTrend4,345 +beginYearTrend1,346 +beginYearTrend2,347 +beginYearTrend3,348 +beginYearTrend4,349 +biFourierCoefficients,350 +biFourierMakeTemplate,351 +biFourierPackingModeForAxes,352 +biFourierResolutionParameterM,353 +biFourierResolutionParameterN,354 +biFourierResolutionSubSetParameterM,355 +biFourierResolutionSubSetParameterN,356 +biFourierSubTruncationType,357 +biFourierTruncationType,358 +binaryScaleFactor,359 +bitMapIndicator,360 +bitmap,361 +bitmapPresent,362 +bitmapSectionPresent,363 +bitsPerValue,364 +bitsPerValueAndRepack,365 +boot_edition,366 +bottomLevel,367 +boustrophedonic,368 +boustrophedonicOrdering,369 +bufrDataEncoded,370 +bufrHeaderCentre,371 +bufrHeaderSubCentre,372 +bufrTemplate,373 +bufrdcExpandedDescriptors,374 +calendarIdPresent,375 +calendarIdentification,376 +calendarIdentificationTemplateNumber,377 +cat,378 +categories,379 +categoryType,380 +cavokOrVisibility,381 +ccccIdentifiers,382 +ccsdsBlockSize,383 +ccsdsCompressionOptionsMask,384 +ccsdsFlags,385 +ccsdsRsi,386 +ceilingAndVisibilityOK,387 +ceilingAndVisibilityOKTrend1,388 +ceilingAndVisibilityOKTrend2,389 +ceilingAndVisibilityOKTrend3,390 +ceilingAndVisibilityOKTrend4,391 +centralClusterDefinition,392 +centralLongitude,393 +centralLongitudeInDegrees,394 +centralLongitudeInMicrodegrees,395 +centre,396 +centreDescription,397 +centreForLocal,398 +centreForTable2,399 +centuryOfAnalysis,400 +centuryOfReference,401 +centuryOfReferenceTimeOfData,402 +cfName,403 +cfNameECMF,404 +cfNameLegacyECMF,405 +cfVarName,406 +cfVarNameECMF,407 +cfVarNameLegacyECMF,408 +changeDecimalPrecision,409 +changeIndicatorTrend1,410 +changeIndicatorTrend2,411 +changeIndicatorTrend3,412 +changeIndicatorTrend4,413 +changingPrecision,414 +channel,415 +channelNumber,416 +char,417 +charValues,418 +checkInternalVersion,419 +class,420 +classOfAnalysis,421 +clearTables,422 +climateDateFrom,423 +climateDateTo,424 +climatologicalRegime,425 +cloudsAbbreviation1,426 +cloudsAbbreviation1Trend1,427 +cloudsAbbreviation1Trend2,428 +cloudsAbbreviation1Trend3,429 +cloudsAbbreviation1Trend4,430 +cloudsAbbreviation2,431 +cloudsAbbreviation2Trend1,432 +cloudsAbbreviation2Trend2,433 +cloudsAbbreviation2Trend3,434 +cloudsAbbreviation2Trend4,435 +cloudsAbbreviation3,436 +cloudsAbbreviation3Trend1,437 +cloudsAbbreviation3Trend2,438 +cloudsAbbreviation3Trend3,439 +cloudsAbbreviation3Trend4,440 +cloudsAbbreviation4,441 +cloudsAbbreviation4Trend1,442 +cloudsAbbreviation4Trend2,443 +cloudsAbbreviation4Trend3,444 +cloudsAbbreviation4Trend4,445 +cloudsBase1,446 +cloudsBase1Trend1,447 +cloudsBase1Trend2,448 +cloudsBase1Trend3,449 +cloudsBase1Trend4,450 +cloudsBase2,451 +cloudsBase2Trend1,452 +cloudsBase2Trend2,453 +cloudsBase2Trend3,454 +cloudsBase2Trend4,455 +cloudsBase3,456 +cloudsBase3Trend1,457 +cloudsBase3Trend2,458 +cloudsBase3Trend3,459 +cloudsBase3Trend4,460 +cloudsBase4,461 +cloudsBase4Trend1,462 +cloudsBase4Trend2,463 +cloudsBase4Trend3,464 +cloudsBase4Trend4,465 +cloudsBaseCoded1,466 +cloudsBaseCoded1Trend1,467 +cloudsBaseCoded1Trend2,468 +cloudsBaseCoded1Trend3,469 +cloudsBaseCoded1Trend4,470 +cloudsBaseCoded2,471 +cloudsBaseCoded2Trend1,472 +cloudsBaseCoded2Trend2,473 +cloudsBaseCoded2Trend3,474 +cloudsBaseCoded2Trend4,475 +cloudsBaseCoded3,476 +cloudsBaseCoded3Trend1,477 +cloudsBaseCoded3Trend2,478 +cloudsBaseCoded3Trend3,479 +cloudsBaseCoded3Trend4,480 +cloudsBaseCoded4,481 +cloudsBaseCoded4Trend1,482 +cloudsBaseCoded4Trend2,483 +cloudsBaseCoded4Trend3,484 +cloudsBaseCoded4Trend4,485 +cloudsCode1,486 +cloudsCode1Trend1,487 +cloudsCode1Trend2,488 +cloudsCode1Trend3,489 +cloudsCode1Trend4,490 +cloudsCode2,491 +cloudsCode2Trend1,492 +cloudsCode2Trend2,493 +cloudsCode2Trend3,494 +cloudsCode2Trend4,495 +cloudsCode3,496 +cloudsCode3Trend1,497 +cloudsCode3Trend2,498 +cloudsCode3Trend3,499 +cloudsCode3Trend4,500 +cloudsCode4,501 +cloudsCode4Trend1,502 +cloudsCode4Trend2,503 +cloudsCode4Trend3,504 +cloudsCode4Trend4,505 +cloudsTitle1,506 +cloudsTitle1Trend1,507 +cloudsTitle1Trend2,508 +cloudsTitle1Trend3,509 +cloudsTitle1Trend4,510 +cloudsTitle2,511 +cloudsTitle2Trend1,512 +cloudsTitle2Trend2,513 +cloudsTitle2Trend3,514 +cloudsTitle2Trend4,515 +cloudsTitle3,516 +cloudsTitle3Trend1,517 +cloudsTitle3Trend2,518 +cloudsTitle3Trend3,519 +cloudsTitle3Trend4,520 +cloudsTitle4,521 +cloudsTitle4Trend1,522 +cloudsTitle4Trend2,523 +cloudsTitle4Trend3,524 +cloudsTitle4Trend4,525 +clusterIdentifier,526 +clusterMember1,527 +clusterMember10,528 +clusterMember2,529 +clusterMember3,530 +clusterMember4,531 +clusterMember5,532 +clusterMember6,533 +clusterMember7,534 +clusterMember8,535 +clusterMember9,536 +clusterNumber,537 +clusterSize,538 +clusteringDomain,539 +clusteringMethod,540 +clutterFilterIndicator,541 +cnmc_cmcc,542 +cnmc_isac,543 +codeFigure,544 +codeType,545 +codedNumberOfFirstOrderPackedValues,546 +codedNumberOfGroups,547 +codedValues,548 +coefsFirst,549 +coefsSecond,550 +commonBlock,551 +complexPacking,552 +componentIndex,553 +compressedData,554 +computeLaplacianOperator,555 +computeStatistics,556 +conceptDir,557 +conceptsDir1,558 +conceptsDir2,559 +conceptsLocalDirAll,560 +conceptsLocalDirECMF,561 +conceptsLocalMarsDirAll,562 +conceptsMasterDir,563 +conceptsMasterMarsDir,564 +consensus,565 +consensusCount,566 +const,567 +constantAntennaElevationAngle,568 +constantFieldHalfByte,569 +constituentType,570 +constituentTypeName,571 +controlForecastCluster,572 +coordAveraging0,573 +coordAveraging1,574 +coordAveraging2,575 +coordAveraging3,576 +coordAveragingTims,577 +coordinate1End,578 +coordinate1Flag,579 +coordinate1Start,580 +coordinate2End,581 +coordinate2Flag,582 +coordinate2Start,583 +coordinate3Flag,584 +coordinate3OfFirstGridPoint,585 +coordinate3OfLastGridPoint,586 +coordinate4Flag,587 +coordinate4OfFirstGridPoint,588 +coordinate4OfLastGridPoint,589 +coordinateFlag1,590 +coordinateFlag2,591 +coordinateIndexNumber,592 +coordinatesPresent,593 +core,594 +corr1Data,595 +corr2Data,596 +corr3Data,597 +corr4Data,598 +correction,599 +correction1,600 +correction1Part,601 +correction2,602 +correction2Part,603 +correction3,604 +correction3Part,605 +correction4,606 +correction4Part,607 +count,608 +countOfGroupLengths,609 +countOfICEFieldsUsed,610 +countTotal,611 +country,612 +crcrlf,613 +createNewData,614 +crraLocalVersion,615 +crraSection,616 +crraSuiteID,617 +daLoop,618 +data,619 +dataAccessors,620 +dataCategory,621 +dataDate,622 +dataFlag,623 +dataKeys,624 +dataLength,625 +dataOrigin,626 +dataRepresentation,627 +dataRepresentationTemplate,628 +dataRepresentationTemplateNumber,629 +dataRepresentationType,630 +dataSelection,631 +dataStream,632 +dataSubCategory,633 +dataTime,634 +dataType,635 +dataValues,636 +date,637 +dateOfAnalysis,638 +dateOfForecast,639 +dateOfForecastRun,640 +dateOfIceFieldUsed,641 +dateOfModelVersion,642 +dateOfReference,643 +dateOfSSTFieldUsed,644 +dateSSTFieldUsed,645 +dateTime,646 +datumSize,647 +day,648 +dayOfAnalysis,649 +dayOfEndOfOverallTimeInterval,650 +dayOfForecast,651 +dayOfModelVersion,652 +dayOfReference,653 +dayOfTheYearDate,654 +decimalPrecision,655 +decimalScaleFactor,656 +defaultFaFieldName,657 +defaultFaLevelName,658 +defaultFaModelName,659 +defaultName,660 +defaultParameter,661 +defaultSequence,662 +defaultShortName,663 +defaultStepUnits,664 +defaultTypeOfLevel,665 +default_max_val,666 +default_min_val,667 +default_step_units,668 +definitionFilesVersion,669 +deleteCalendarId,670 +deleteExtraLocalSection,671 +deleteLocalDefinition,672 +deletePV,673 +derivedForecast,674 +dewPointTemperature,675 +diagnostic,676 +diagnosticNumber,677 +diffInDays,678 +diffInHours,679 +dimension,680 +dimensionNumber,681 +dimensionType,682 +direction,683 +directionNumber,684 +directionOfVariation,685 +directionScalingFactor,686 +dirty_statistics,687 +disableGrib1LocalSection,688 +discipline,689 +distanceFromTubeToEnsembleMean,690 +distinctLatitudes,691 +distinctLongitudes,692 +doExtractArea,693 +doExtractDateTime,694 +doExtractSubsets,695 +doSimpleThinning,696 +domain,697 +driverInformationBlockAddress,698 +dummy,699 +dummy1,700 +dummy2,701 +dummyc,702 +dx,703 +dy,704 +earthIsOblate,705 +earthMajorAxis,706 +earthMajorAxisInMetres,707 +earthMinorAxis,708 +earthMinorAxisInMetres,709 +eastLongitudeOfCluster,710 +eastLongitudeOfDomainOfTubing,711 +easternLongitudeOfClusterDomain,712 +easternLongitudeOfDomain,713 +ed,714 +edition,715 +editionNumber,716 +efas_model,717 +efas_post_proc,718 +efiOrder,719 +eight,720 +elementsTable,721 +elevation,722 +eleven,723 +endDayTrend1,724 +endDayTrend2,725 +endDayTrend3,726 +endDayTrend4,727 +endDescriptors,728 +endGridDefinition,729 +endHourTrend1,730 +endHourTrend2,731 +endHourTrend3,732 +endHourTrend4,733 +endMark,734 +endMinuteTrend1,735 +endMinuteTrend2,736 +endMinuteTrend3,737 +endMinuteTrend4,738 +endMonthTrend1,739 +endMonthTrend2,740 +endMonthTrend3,741 +endMonthTrend4,742 +endOfFileAddress,743 +endOfHeadersMarker,744 +endOfInterval,745 +endOfMessage,746 +endOfProduct,747 +endOfRange,748 +endStep,749 +endStepInHours,750 +endTimeStep,751 +endYearTrend1,752 +endYearTrend2,753 +endYearTrend3,754 +endYearTrend4,755 +energyNorm,756 +enorm,757 +ensembleForecastNumbers,758 +ensembleForecastNumbersList,759 +ensembleSize,760 +ensembleStandardDeviation,761 +eps,762 +epsContinous,763 +epsPoint,764 +epsStatisticsContinous,765 +epsStatisticsPoint,766 +expandBy,767 +expandedAbbreviations,768 +expandedCodes,769 +expandedCrex_scales,770 +expandedCrex_units,771 +expandedCrex_widths,772 +expandedDescriptors,773 +expandedNames,774 +expandedOriginalCodes,775 +expandedOriginalReferences,776 +expandedOriginalScales,777 +expandedOriginalWidths,778 +expandedTypes,779 +expandedUnits,780 +experimentVersionNumber,781 +experimentVersionNumber1,782 +experimentVersionNumber2,783 +experimentVersionNumberOfAnalysis,784 +expoffset,785 +expver,786 +extendedFlag,787 +extraDim,788 +extraDimensionPresent,789 +extraLocalSectionNumber,790 +extraLocalSectionPresent,791 +extraValues,792 +extractAreaEastLongitude,793 +extractAreaLatitudeRank,794 +extractAreaLongitudeRank,795 +extractAreaNorthLatitude,796 +extractAreaSouthLatitude,797 +extractAreaWestLongitude,798 +extractDateTimeDayEnd,799 +extractDateTimeDayRank,800 +extractDateTimeDayStart,801 +extractDateTimeEnd,802 +extractDateTimeHourEnd,803 +extractDateTimeHourRank,804 +extractDateTimeHourStart,805 +extractDateTimeMinuteEnd,806 +extractDateTimeMinuteRank,807 +extractDateTimeMinuteStart,808 +extractDateTimeMonthEnd,809 +extractDateTimeMonthRank,810 +extractDateTimeMonthStart,811 +extractDateTimeSecondEnd,812 +extractDateTimeSecondRank,813 +extractDateTimeSecondStart,814 +extractDateTimeStart,815 +extractDateTimeYearEnd,816 +extractDateTimeYearRank,817 +extractDateTimeYearStart,818 +extractSubset,819 +extractSubsetIntervalEnd,820 +extractSubsetIntervalStart,821 +extractSubsetList,822 +extractedAreaNumberOfSubsets,823 +extractedDateTimeNumberOfSubsets,824 +extremeClockwiseWindDirection,825 +extremeCounterClockwiseWindDirection,826 +extremeValuesRVR1,827 +extremeValuesRVR2,828 +extremeValuesRVR3,829 +extremeValuesRVR4,830 +faFieldName,831 +faLevelName,832 +faModelName,833 +false,834 +falseEasting,835 +falseNorthing,836 +fcmonth,837 +fcperiod,838 +fgDate,839 +fgTime,840 +file,841 +fileConsistencyFlags,842 +firstDimension,843 +firstDimensionCoordinateValueDefinition,844 +firstDimensionPhysicalSignificance,845 +firstLatitude,846 +firstLatitudeInDegrees,847 +firstMonthUsedToBuildClimateMonth1,848 +firstMonthUsedToBuildClimateMonth2,849 +firstOrderValues,850 +flag,851 +flagForAnyFurtherInformation,852 +flagForIrregularGridCoordinateList,853 +flagForNormalOrStaggeredGrid,854 +flagShowingPostAuxiliaryArrayInUse,855 +flags,856 +floatVal,857 +floatValues,858 +forecastLeadTime,859 +forecastMonth,860 +forecastOrSingularVectorNumber,861 +forecastPeriod,862 +forecastPeriodFrom,863 +forecastPeriodTo,864 +forecastProbabilityNumber,865 +forecastSteps,866 +forecastTime,867 +forecastperiod,868 +formatVersionMajorNumber,869 +formatVersionMinorNumber,870 +freeFormData,871 +frequency,872 +frequencyNumber,873 +frequencyScalingFactor,874 +functionCode,875 +g,876 +g1conceptsLocalDirAll,877 +g1conceptsMasterDir,878 +g2grid,879 +gaussianGridName,880 +genVertHeightCoords,881 +generalExtended2ordr,882 +generatingProcessIdentificationNumber,883 +generatingProcessIdentifier,884 +generatingProcessTemplate,885 +generatingProcessTemplateNumber,886 +getNumberOfValues,887 +gg,888 +global,889 +globalDomain,890 +grib1divider,891 +grib2LocalSectionNumber,892 +grib2LocalSectionPresent,893 +grib2divider,894 +grib3divider,895 +gribDataQualityChecks,896 +gribMasterTablesVersionNumber,897 +gribTablesVersionNo,898 +grid,899 +gridCoordinate,900 +gridDefinition,901 +gridDefinitionDescription,902 +gridDefinitionSection,903 +gridDefinitionTemplateNumber,904 +gridDescriptionSectionPresent,905 +gridName,906 +gridPointPosition,907 +gridType,908 +groupInternalNodeK,909 +groupLeafNodeK,910 +groupLengths,911 +groupSplitting,912 +groupSplittingMethodUsed,913 +groupWidth,914 +groupWidths,915 +gts_CCCC,916 +gts_TTAAii,917 +gts_ddhh00,918 +gts_header,919 +halfByte,920 +hdate,921 +headersOnly,922 +heightLevelName,923 +heightOrPressureOfLevel,924 +heightPressureEtcOfLevels,925 +hideThis,926 +horizontalCoordinateDefinition,927 +horizontalCoordinateSupplement,928 +horizontalDimensionProcessed,929 +horizontalDomainTemplate,930 +horizontalDomainTemplateNumber,931 +hour,932 +hourOfAnalysis,933 +hourOfEndOfOverallTimeInterval,934 +hourOfForecast,935 +hourOfModelVersion,936 +hourOfReference,937 +hoursAfterDataCutoff,938 +hoursAfterReferenceTimeOfDataCutoff,939 +hundred,940 +iDirectionIncrement,941 +iDirectionIncrementGiven,942 +iDirectionIncrementGridLength,943 +iDirectionIncrementInDegrees,944 +iIncrement,945 +iScansNegatively,946 +iScansPositively,947 +ident,948 +identificationNumber,949 +identificationOfOriginatingGeneratingCentre,950 +identificationOfProject,951 +identifier,952 +ieeeFloats,953 +ifsParam,954 +ijDirectionIncrementGiven,955 +implementationDateOfModelCycle,956 +incrementOfLengths,957 +indexTemplate,958 +indexTemplateNumber,959 +indexedStorageInternalNodeK,960 +indexingDate,961 +indexingTime,962 +indicatorOfParameter,963 +indicatorOfTypeOfLevel,964 +indicatorOfUnitForTimeIncrement,965 +indicatorOfUnitForTimeRange,966 +indicatorOfUnitOfTimeRange,967 +inputDataPresentIndicator,968 +inputDelayedDescriptorReplicationFactor,969 +inputExtendedDelayedDescriptorReplicationFactor,970 +inputOriginatingCentre,971 +inputOverriddenReferenceValues,972 +inputProcessIdentifier,973 +inputShortDelayedDescriptorReplicationFactor,974 +instrument,975 +instrumentIdentifier,976 +instrumentType,977 +integerPointValues,978 +integerScaleFactor,979 +integerScalingFactorAppliedToDirections,980 +integerScalingFactorAppliedToFrequencies,981 +integerValues,982 +internalVersion,983 +internationalDataSubCategory,984 +interpretationOfNumberOfPoints,985 +intervalBetweenTimes,986 +isAccumulation,987 +isAuto,988 +isCavok,989 +isCavokTrend1,990 +isCavokTrend2,991 +isCavokTrend3,992 +isCavokTrend4,993 +isConstant,994 +isCorrection,995 +isEPS,996 +isEps,997 +isFillup,998 +isHindcast,999 +isOctahedral,1000 +isRotatedGrid,1001 +isSatellite,1002 +isSatelliteType,1003 +isSens,1004 +is_aerosol,1005 +is_aerosol_optical,1006 +is_chemical,1007 +is_chemical_distfn,1008 +is_efas,1009 +is_ocean2d_param,1010 +is_ocean3d_param,1011 +is_s2s,1012 +is_tigge,1013 +is_uerra,1014 +isectionNumber2,1015 +isectionNumber3,1016 +isectionNumber4,1017 +isotopeIdentificationNumber,1018 +iteration,1019 +iterationNumber,1020 +iteratorDisableUnrotate,1021 +jDirectionIncrement,1022 +jDirectionIncrementGiven,1023 +jDirectionIncrementGridLength,1024 +jDirectionIncrementInDegrees,1025 +jIncrement,1026 +jPointsAreConsecutive,1027 +jScansPositively,1028 +julianDay,1029 +julianForecastDay,1030 +keyData,1031 +keyMore,1032 +keySat,1033 +kindOfProduct,1034 +kurt,1035 +kurtosis,1036 +lBB,1037 +landtype,1038 +laplacianOperator,1039 +laplacianOperatorIsSet,1040 +laplacianScalingFactor,1041 +laplacianScalingFactorUnset,1042 +lastMonthUsedToBuildClimateMonth1,1043 +lastMonthUsedToBuildClimateMonth2,1044 +latLonValues,1045 +latitude,1046 +latitudeFirstInDegrees,1047 +latitudeLastInDegrees,1048 +latitudeLongitudeValues,1049 +latitudeOfCentralPointInClusterDomain,1050 +latitudeOfCentrePoint,1051 +latitudeOfCentrePointInDegrees,1052 +latitudeOfFirstGridPoint,1053 +latitudeOfFirstGridPointInDegrees,1054 +latitudeOfIcosahedronPole,1055 +latitudeOfLastGridPoint,1056 +latitudeOfLastGridPointInDegrees,1057 +latitudeOfNorthWestCornerOfArea,1058 +latitudeOfReferencePoint,1059 +latitudeOfReferencePointInDegrees,1060 +latitudeOfSouthEastCornerOfArea,1061 +latitudeOfSouthernPole,1062 +latitudeOfSouthernPoleInDegrees,1063 +latitudeOfStretchingPole,1064 +latitudeOfStretchingPoleInDegrees,1065 +latitudeOfSubSatellitePoint,1066 +latitudeOfSubSatellitePointInDegrees,1067 +latitudeOfTangencyPoint,1068 +latitudeOfThePoleOfStretching,1069 +latitudeOfThePolePoint,1070 +latitudeOfThePolePointInDegrees,1071 +latitudeOfTheSouthernPoleOfProjection,1072 +latitudeSexagesimal,1073 +latitudeWhereDxAndDyAreSpecified,1074 +latitudeWhereDxAndDyAreSpecifiedInDegrees,1075 +latitudes,1076 +latitudesList,1077 +latitudinalDirectionGridLength,1078 +lcwfvSuiteName,1079 +leadtime,1080 +legBaseDate,1081 +legBaseTime,1082 +legNumber,1083 +legacyGaussSubarea,1084 +lengthDescriptors,1085 +lengthIncrementForTheGroupLengths,1086 +lengthOf4DvarWindow,1087 +lengthOfHeaders,1088 +lengthOfIndexTemplate,1089 +lengthOfMessage,1090 +lengthOfOriginatorLocalTemplate,1091 +lengthOfProjectLocalTemplate,1092 +lengthOfTimeRange,1093 +lev,1094 +levTypeName,1095 +level,1096 +levelIndicator,1097 +levelType,1098 +levelist,1099 +levels,1100 +levtype,1101 +libraryVersion,1102 +listMembersMissing,1103 +listMembersMissing2,1104 +listMembersMissing3,1105 +listMembersMissing4,1106 +listMembersUsed,1107 +listMembersUsed2,1108 +listMembersUsed3,1109 +listMembersUsed4,1110 +listOfContributingSpectralBands,1111 +listOfDistributionFunctionParameter,1112 +listOfEnsembleForecastNumbers,1113 +listOfModelIdentifiers,1114 +listOfParametersUsedForClustering,1115 +listOfScaledFrequencies,1116 +local,1117 +localDate,1118 +localDateTime,1119 +localDay,1120 +localDecimalScaleFactor,1121 +localDefNumberOne,1122 +localDefNumberTwo,1123 +localDefinition,1124 +localDefinitionNumber,1125 +localDir,1126 +localExtensionPadding,1127 +localFlag,1128 +localFlagLatestVersion,1129 +localHour,1130 +localLatitude,1131 +localLatitude1,1132 +localLatitude2,1133 +localLongitude,1134 +localLongitude1,1135 +localLongitude2,1136 +localMinute,1137 +localMonth,1138 +localNumberOfObservations,1139 +localSecond,1140 +localSection,1141 +localSectionPresent,1142 +localTablesVersion,1143 +localTablesVersionNumber,1144 +localTime,1145 +localUsePresent,1146 +localYear,1147 +local_padding,1148 +local_use,1149 +logTransform,1150 +longitude,1151 +longitudeFirstInDegrees,1152 +longitudeLastInDegrees,1153 +longitudeOfCentralPointInClusterDomain,1154 +longitudeOfCentrePoint,1155 +longitudeOfCentrePointInDegrees,1156 +longitudeOfFirstDiamondCenterLine,1157 +longitudeOfFirstDiamondCentreLine,1158 +longitudeOfFirstDiamondCentreLineInDegrees,1159 +longitudeOfFirstGridPoint,1160 +longitudeOfFirstGridPointInDegrees,1161 +longitudeOfIcosahedronPole,1162 +longitudeOfLastGridPoint,1163 +longitudeOfLastGridPointInDegrees,1164 +longitudeOfNorthWestCornerOfArea,1165 +longitudeOfReferencePoint,1166 +longitudeOfReferencePointInDegrees,1167 +longitudeOfSouthEastCornerOfArea,1168 +longitudeOfSouthernPole,1169 +longitudeOfSouthernPoleInDegrees,1170 +longitudeOfStretchingPole,1171 +longitudeOfStretchingPoleInDegrees,1172 +longitudeOfSubSatellitePoint,1173 +longitudeOfSubSatellitePointInDegrees,1174 +longitudeOfTangencyPoint,1175 +longitudeOfThePoleOfStretching,1176 +longitudeOfThePolePoint,1177 +longitudeOfThePolePointInDegrees,1178 +longitudeOfTheSouthernPoleOfProjection,1179 +longitudeSexagesimal,1180 +longitudes,1181 +longitudesList,1182 +longitudinalDirectionGridLength,1183 +lowerLimit,1184 +lowerRange,1185 +lowerThreshold,1186 +lowerThresholdValue,1187 +ls_labeling,1188 +lsdate_bug,1189 +m,1190 +mAngleMultiplier,1191 +mBasicAngle,1192 +mars,1193 +marsClass,1194 +marsClass1,1195 +marsClass2,1196 +marsDir,1197 +marsDomain,1198 +marsEndStep,1199 +marsExperimentOffset,1200 +marsExpver,1201 +marsForecastMonth,1202 +marsGrid,1203 +marsIdent,1204 +marsKeywords,1205 +marsKeywords1,1206 +marsLamModel,1207 +marsLatitude,1208 +marsLevel,1209 +marsLevelist,1210 +marsLongitude,1211 +marsModel,1212 +marsParam,1213 +marsQuantile,1214 +marsRange,1215 +marsStartStep,1216 +marsStep,1217 +marsStream,1218 +marsStream1,1219 +marsStream2,1220 +marsType,1221 +marsType1,1222 +marsType2,1223 +mars_labeling,1224 +mask,1225 +masterDir,1226 +masterTableNumber,1227 +masterTablesVersionNumber,1228 +masterTablesVersionNumberLatest,1229 +matchAerosolBinNumber,1230 +matchAerosolPacking,1231 +matchLandType,1232 +matchSort,1233 +matchTimeRepres,1234 +matrixBitmapsPresent,1235 +matrixOfValues,1236 +max,1237 +maximum,1238 +md5Data,1239 +md5DataSection,1240 +md5GridSection,1241 +md5Headers,1242 +md5Product,1243 +md5Section1,1244 +md5Section10,1245 +md5Section2,1246 +md5Section3,1247 +md5Section4,1248 +md5Section5,1249 +md5Section6,1250 +md5Section7,1251 +md5Section8,1252 +md5Section9,1253 +md5Structure,1254 +md5TimeDomainSection,1255 +meanRVR1,1256 +meanRVR2,1257 +meanRVR3,1258 +meanRVR4,1259 +meanSize,1260 +meanValueRVR1,1261 +meanValueRVR2,1262 +meanValueRVR3,1263 +meanValueRVR4,1264 +meaningOfVerticalCoordinate,1265 +memberNumber,1266 +messageLength,1267 +metadata,1268 +method,1269 +methodNumber,1270 +million,1271 +min,1272 +minimum,1273 +minute,1274 +minuteOfAnalysis,1275 +minuteOfEndOfOverallTimeInterval,1276 +minuteOfForecast,1277 +minuteOfModelVersion,1278 +minuteOfReference,1279 +minutesAfterDataCutoff,1280 +minutesAfterReferenceTimeOfDataCutoff,1281 +missingDataFlag,1282 +missingValue,1283 +missingValueManagement,1284 +missingValueManagementUsed,1285 +missingValuesPresent,1286 +mixedCoordinateDefinition,1287 +mixedCoordinateFieldFlag,1288 +modeNumber,1289 +model,1290 +modelErrorType,1291 +modelIdentifier,1292 +modelName,1293 +modelVersionDate,1294 +modelVersionTime,1295 +molarMass,1296 +month,1297 +monthOfAnalysis,1298 +monthOfEndOfOverallTimeInterval,1299 +monthOfForecast,1300 +monthOfModelVersion,1301 +monthOfReference,1302 +monthlyVerificationDate,1303 +monthlyVerificationMonth,1304 +monthlyVerificationTime,1305 +monthlyVerificationYear,1306 +multiplicationFactorForLatLong,1307 +mybits,1308 +n,1309 +n2,1310 +n3,1311 +na,1312 +name,1313 +nameECMF,1314 +nameLegacyECMF,1315 +nameOfFirstFixedSurface,1316 +nameOfSecondFixedSurface,1317 +names,1318 +nd,1319 +neitherPresent,1320 +newSubtype,1321 +nlev,1322 +nnn,1323 +normAtFinalTime,1324 +normAtInitialTime,1325 +normal,1326 +northLatitudeOfCluster,1327 +northLatitudeOfDomainOfTubing,1328 +northWestLatitudeOfLPOArea,1329 +northWestLatitudeOfVerficationArea,1330 +northWestLongitudeOfLPOArea,1331 +northWestLongitudeOfVerficationArea,1332 +northernLatitudeOfClusterDomain,1333 +northernLatitudeOfDomain,1334 +nosigPresent,1335 +notDecoded,1336 +nt,1337 +number,1338 +numberInHorizontalCoordinates,1339 +numberInMixedCoordinateDefinition,1340 +numberInTheAuxiliaryArray,1341 +numberInTheGridCoordinateList,1342 +numberIncludedInAverage,1343 +numberMissingFromAveragesOrAccumulations,1344 +numberOfAnalysis,1345 +numberOfBits,1346 +numberOfBitsContainingEachPackedValue,1347 +numberOfBitsForScaledGroupLengths,1348 +numberOfBitsUsedForTheGroupWidths,1349 +numberOfBitsUsedForTheScaledGroupLengths,1350 +numberOfBytesInLocalDefinition,1351 +numberOfBytesOfFreeFormatData,1352 +numberOfBytesPerInteger,1353 +numberOfCategories,1354 +numberOfCharacters,1355 +numberOfChars,1356 +numberOfClusterHighResolution,1357 +numberOfClusterLowResolution,1358 +numberOfClusters,1359 +numberOfCodedValues,1360 +numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction,1361 +numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction,1362 +numberOfColumns,1363 +numberOfComponents,1364 +numberOfContributingSpectralBands,1365 +numberOfControlForecastTube,1366 +numberOfCoordinatesValues,1367 +numberOfDataBinsAlongRadials,1368 +numberOfDataMatrices,1369 +numberOfDataPoints,1370 +numberOfDataPointsExpected,1371 +numberOfDataValues,1372 +numberOfDaysInClimateSamplingWindow,1373 +numberOfDiamonds,1374 +numberOfDirections,1375 +numberOfDistinctSection3s,1376 +numberOfDistinctSection4s,1377 +numberOfDistinctSection5s,1378 +numberOfDistinctSection6s,1379 +numberOfDistinctSection7s,1380 +numberOfDistinctSection8s,1381 +numberOfDistinctSection9s,1382 +numberOfDistributionFunctionParameters,1383 +numberOfEffectiveValues,1384 +numberOfFloats,1385 +numberOfForcasts,1386 +numberOfForecastsInCluster,1387 +numberOfForecastsInEnsemble,1388 +numberOfForecastsInTheCluster,1389 +numberOfForecastsInTube,1390 +numberOfFrequencies,1391 +numberOfGridInReference,1392 +numberOfGridUsed,1393 +numberOfGroups,1394 +numberOfGroupsOfDataValues,1395 +numberOfHorizontalPoints,1396 +numberOfIntegers,1397 +numberOfInts,1398 +numberOfIterations,1399 +numberOfLocalDefinitions,1400 +numberOfLogicals,1401 +numberOfMembersInCluster,1402 +numberOfMembersInEnsemble,1403 +numberOfMissing,1404 +numberOfMissingInStatisticalProcess,1405 +numberOfMissingValues,1406 +numberOfModeOfDistribution,1407 +numberOfModels,1408 +numberOfOctectsForNumberOfPoints,1409 +numberOfOctetsExtraDescriptors,1410 +numberOfOperationalForecastTube,1411 +numberOfPackedValues,1412 +numberOfParallelsBetweenAPoleAndTheEquator,1413 +numberOfParametersUsedForClustering,1414 +numberOfPartitions,1415 +numberOfPoints,1416 +numberOfPointsAlongAMeridian,1417 +numberOfPointsAlongAParallel,1418 +numberOfPointsAlongFirstAxis,1419 +numberOfPointsAlongSecondAxis,1420 +numberOfPointsAlongTheXAxis,1421 +numberOfPointsAlongTheYAxis,1422 +numberOfPointsAlongXAxis,1423 +numberOfPointsAlongXAxisInCouplingArea,1424 +numberOfPointsAlongYAxis,1425 +numberOfPointsAlongYAxisInCouplingArea,1426 +numberOfPointsInDomain,1427 +numberOfPointsUsed,1428 +numberOfPressureLevelsUsedForClustering,1429 +numberOfRadarSitesUsed,1430 +numberOfRadials,1431 +numberOfReforecastYearsInModelClimate,1432 +numberOfRemaininChars,1433 +numberOfRepresentativeMember,1434 +numberOfReservedBytes,1435 +numberOfRows,1436 +numberOfSecondOrderPackedValues,1437 +numberOfSection,1438 +numberOfSingularVectorsComputed,1439 +numberOfSingularVectorsEvolved,1440 +numberOfStepsUsedForClustering,1441 +numberOfSubsets,1442 +numberOfTensOfThousandsOfYearsOfOffset,1443 +numberOfTimeRange,1444 +numberOfTimeSteps,1445 +numberOfUnexpandedDescriptors,1446 +numberOfUnusedBitsAtEndOfSection3,1447 +numberOfUsedSpatialTiles,1448 +numberOfUsedTileAttributes,1449 +numberOfUsefulPointsAlongXAxis,1450 +numberOfUsefulPointsAlongYAxis,1451 +numberOfVGridUsed,1452 +numberOfValues,1453 +numberOfVerticalCoordinateValues,1454 +numberOfVerticalGridDescriptors,1455 +numberOfVerticalPoints,1456 +numberingOrderOfDiamonds,1457 +numericValues,1458 +observablePropertyTemplate,1459 +observablePropertyTemplateNumber,1460 +observationDiagnostic,1461 +observationGeneratingProcessIdentifier,1462 +observationType,1463 +observedData,1464 +obstype,1465 +oceanAtmosphereCoupling,1466 +oceanLevName,1467 +oceanStream,1468 +octetAtWichPackedDataBegins,1469 +offset,1470 +offsetAfterBitmap,1471 +offsetAfterCentreLocalSection,1472 +offsetAfterData,1473 +offsetAfterLocalSection,1474 +offsetAfterPadding,1475 +offsetBBitmap,1476 +offsetBSection5,1477 +offsetBSection6,1478 +offsetBSection9,1479 +offsetBeforeBitmap,1480 +offsetBeforeData,1481 +offsetBeforePL,1482 +offsetBeforePV,1483 +offsetDescriptors,1484 +offsetEndSection4,1485 +offsetFreeFormData,1486 +offsetFromOriginToInnerBound,1487 +offsetFromReferenceOfFirstTime,1488 +offsetICEFieldsUsed,1489 +offsetSection0,1490 +offsetSection1,1491 +offsetSection10,1492 +offsetSection11,1493 +offsetSection2,1494 +offsetSection3,1495 +offsetSection4,1496 +offsetSection5,1497 +offsetSection6,1498 +offsetSection7,1499 +offsetSection8,1500 +offsetSection9,1501 +offsetToEndOf4DvarWindow,1502 +offsetValuesBy,1503 +oldSubtype,1504 +one,1505 +oneConstant,1506 +oneMillionConstant,1507 +oneMinuteMeanMaximumRVR1,1508 +oneMinuteMeanMaximumRVR2,1509 +oneMinuteMeanMaximumRVR3,1510 +oneMinuteMeanMaximumRVR4,1511 +oneMinuteMeanMinimumRVR1,1512 +oneMinuteMeanMinimumRVR2,1513 +oneMinuteMeanMinimumRVR3,1514 +oneMinuteMeanMinimumRVR4,1515 +oneThousand,1516 +oper,1517 +operStream,1518 +operatingMode,1519 +operationalForecastCluster,1520 +optimisationTime,1521 +optimizeScaleFactor,1522 +optionalData,1523 +opttime,1524 +orderOfSPD,1525 +orderOfSpatialDifferencing,1526 +orientationOfTheGrid,1527 +orientationOfTheGridInDegrees,1528 +origin,1529 +originalParameterNumber,1530 +originalParameterTableNumber,1531 +originalSubCentreIdentifier,1532 +originatingCentre,1533 +originatingCentreOfAnalysis,1534 +originatorLocalTemplate,1535 +originatorLocalTemplateNumber,1536 +overlayTemplate,1537 +overlayTemplateNumber,1538 +pack,1539 +packedValues,1540 +packingError,1541 +packingType,1542 +padding,1543 +padding_grid1_1,1544 +padding_grid1_2,1545 +padding_grid3_1,1546 +padding_grid4_1,1547 +padding_grid50_1,1548 +padding_grid5_1,1549 +padding_grid90_1,1550 +padding_loc10_1,1551 +padding_loc12_1,1552 +padding_loc13_1,1553 +padding_loc13_2,1554 +padding_loc13_3,1555 +padding_loc13_4,1556 +padding_loc13_5,1557 +padding_loc14_1,1558 +padding_loc14_2,1559 +padding_loc15_1,1560 +padding_loc16_1,1561 +padding_loc17_2,1562 +padding_loc18_1,1563 +padding_loc18_2,1564 +padding_loc190_1,1565 +padding_loc191_1,1566 +padding_loc191_2,1567 +padding_loc191_3,1568 +padding_loc192_1,1569 +padding_loc19_2,1570 +padding_loc20_1,1571 +padding_loc21_1,1572 +padding_loc23_1,1573 +padding_loc244_1,1574 +padding_loc244_2,1575 +padding_loc244_3,1576 +padding_loc245_1,1577 +padding_loc245_2,1578 +padding_loc26_1,1579 +padding_loc27_1,1580 +padding_loc27_2,1581 +padding_loc28_1,1582 +padding_loc29_1,1583 +padding_loc29_2,1584 +padding_loc29_3,1585 +padding_loc2_1,1586 +padding_loc2_2,1587 +padding_loc30_1,1588 +padding_loc30_2,1589 +padding_loc37_1,1590 +padding_loc37_2,1591 +padding_loc38_1,1592 +padding_loc3_1,1593 +padding_loc4_2,1594 +padding_loc50_1,1595 +padding_loc5_1,1596 +padding_loc6_1,1597 +padding_loc7_1,1598 +padding_loc9_1,1599 +padding_loc9_2,1600 +padding_local11_1,1601 +padding_local1_1,1602 +padding_local1_31,1603 +padding_local40_1,1604 +padding_local_35,1605 +padding_local_7_1,1606 +padding_sec1_loc,1607 +padding_sec2_1,1608 +padding_sec2_2,1609 +padding_sec2_3,1610 +padding_sec3_1,1611 +padding_sec4_1,1612 +paleontologicalOffset,1613 +param,1614 +paramId,1615 +paramIdECMF,1616 +paramIdLegacyECMF,1617 +param_value_max,1618 +param_value_min,1619 +parameter,1620 +parameterCategory,1621 +parameterCode,1622 +parameterDiscipline,1623 +parameterIndicator,1624 +parameterName,1625 +parameterNumber,1626 +parameterUnits,1627 +parameters,1628 +parametersVersion,1629 +partitionItems,1630 +partitionNumber,1631 +partitionTable,1632 +partitions,1633 +pastTendencyRVR1,1634 +pastTendencyRVR2,1635 +pastTendencyRVR3,1636 +pastTendencyRVR4,1637 +patch_precip_fp,1638 +pentagonalResolutionParameterJ,1639 +pentagonalResolutionParameterK,1640 +pentagonalResolutionParameterM,1641 +percentileValue,1642 +periodOfTime,1643 +periodOfTimeIntervals,1644 +perturbationNumber,1645 +perturbedType,1646 +phase,1647 +physicalFlag1,1648 +physicalFlag2,1649 +physicalMeaningOfVerticalCoordinate,1650 +pl,1651 +platform,1652 +plusOneinOrdersOfSPD,1653 +points,1654 +postAuxiliary,1655 +postAuxiliaryArrayPresent,1656 +powerOfTenUsedToScaleClimateWeight,1657 +preBitmapValues,1658 +preProcessingParameter,1659 +precision,1660 +precisionOfTheUnpackedSubset,1661 +predefined_grid,1662 +predefined_grid_values,1663 +preferLocalConcepts,1664 +present,1665 +presentTrend1,1666 +presentTrend2,1667 +presentTrend3,1668 +presentTrend4,1669 +presentWeather1Present,1670 +presentWeather1PresentTrend1,1671 +presentWeather1PresentTrend2,1672 +presentWeather1PresentTrend3,1673 +presentWeather1PresentTrend4,1674 +presentWeather2Present,1675 +presentWeather2PresentTrend1,1676 +presentWeather2PresentTrend2,1677 +presentWeather2PresentTrend3,1678 +presentWeather2PresentTrend4,1679 +presentWeather3Present,1680 +presentWeather3PresentTrend1,1681 +presentWeather3PresentTrend2,1682 +presentWeather3PresentTrend3,1683 +presentWeather3PresentTrend4,1684 +pressureLevel,1685 +pressureUnits,1686 +primaryBitmap,1687 +primaryMissingValue,1688 +primaryMissingValueSubstitute,1689 +probContinous,1690 +probPoint,1691 +probProductDefinition,1692 +probabilityType,1693 +probabilityTypeName,1694 +process,1695 +produceLargeConstantFields,1696 +product,1697 +productDefinition,1698 +productDefinitionTemplateNumber,1699 +productDefinitionTemplateNumberInternal,1700 +productIdentifier,1701 +productType,1702 +productionStatusOfProcessedData,1703 +projSourceString,1704 +projString,1705 +projTargetString,1706 +projectLocalTemplate,1707 +projectLocalTemplateNumber,1708 +projectionCenterFlag,1709 +projectionCentreFlag,1710 +pv,1711 +pvlLocation,1712 +qfe,1713 +qfePresent,1714 +qfeUnits,1715 +qnh,1716 +qnhAPresent,1717 +qnhPresent,1718 +qnhUnits,1719 +qualityControl,1720 +qualityControlIndicator,1721 +qualityValueAssociatedWithParameter,1722 +quantile,1723 +radialAngularSpacing,1724 +radials,1725 +radius,1726 +radiusInMetres,1727 +radiusOfCentralCluster,1728 +radiusOfClusterDomain,1729 +radiusOfTheEarth,1730 +range,1731 +rangeBinSpacing,1732 +rdbDateTime,1733 +rdbSubtype,1734 +rdbType,1735 +rdb_key,1736 +rdbtime,1737 +rdbtimeDate,1738 +rdbtimeDay,1739 +rdbtimeHour,1740 +rdbtimeMinute,1741 +rdbtimeMonth,1742 +rdbtimeSecond,1743 +rdbtimeTime,1744 +rdbtimeYear,1745 +realPart,1746 +realPartOf00,1747 +recDateTime,1748 +recentWeather,1749 +recentWeatherTry,1750 +rectime,1751 +rectimeDay,1752 +rectimeHour,1753 +rectimeMinute,1754 +rectimeSecond,1755 +reducedGrid,1756 +refdate,1757 +reference,1758 +referenceDate,1759 +referenceForGroupLengths,1760 +referenceForGroupWidths,1761 +referenceOfLengths,1762 +referenceOfWidths,1763 +referenceReflectivityForEchoTop,1764 +referenceSampleInterval,1765 +referenceStep,1766 +referenceValue,1767 +referenceValueError,1768 +reflectivityCalibrationConstant,1769 +remarkPresent,1770 +reportType,1771 +representationMode,1772 +representationType,1773 +representativeMember,1774 +reserved,1775 +reserved1,1776 +reserved2,1777 +reserved3,1778 +reservedNeedNotBePresent,1779 +reservedOctet,1780 +reservedSection2,1781 +reservedSection3,1782 +reservedSection4,1783 +resolutionAndComponentFlags,1784 +resolutionAndComponentFlags1,1785 +resolutionAndComponentFlags2,1786 +resolutionAndComponentFlags3,1787 +resolutionAndComponentFlags4,1788 +resolutionAndComponentFlags6,1789 +resolutionAndComponentFlags7,1790 +resolutionAndComponentFlags8,1791 +restricted,1792 +rootGroupObjectHeaderAddress,1793 +rootGroupSymbolTableEntry,1794 +rootTablesDir,1795 +roundedMarsLatitude,1796 +roundedMarsLevelist,1797 +roundedMarsLongitude,1798 +runwayBrakingActionState1,1799 +runwayBrakingActionState2,1800 +runwayBrakingActionState3,1801 +runwayBrakingActionState4,1802 +runwayDepositCodeState1,1803 +runwayDepositCodeState2,1804 +runwayDepositCodeState3,1805 +runwayDepositCodeState4,1806 +runwayDepositState1,1807 +runwayDepositState2,1808 +runwayDepositState3,1809 +runwayDepositState4,1810 +runwayDepthOfDepositCodeState1,1811 +runwayDepthOfDepositCodeState2,1812 +runwayDepthOfDepositCodeState3,1813 +runwayDepthOfDepositCodeState4,1814 +runwayDepthOfDepositState1,1815 +runwayDepthOfDepositState2,1816 +runwayDepthOfDepositState3,1817 +runwayDepthOfDepositState4,1818 +runwayDesignatorRVR1,1819 +runwayDesignatorRVR2,1820 +runwayDesignatorRVR3,1821 +runwayDesignatorRVR4,1822 +runwayDesignatorState1,1823 +runwayDesignatorState2,1824 +runwayDesignatorState3,1825 +runwayDesignatorState4,1826 +runwayExtentOfContaminationCodeState1,1827 +runwayExtentOfContaminationCodeState2,1828 +runwayExtentOfContaminationCodeState3,1829 +runwayExtentOfContaminationCodeState4,1830 +runwayExtentOfContaminationState1,1831 +runwayExtentOfContaminationState2,1832 +runwayExtentOfContaminationState3,1833 +runwayExtentOfContaminationState4,1834 +runwayFrictionCodeValueState1,1835 +runwayFrictionCodeValueState2,1836 +runwayFrictionCodeValueState3,1837 +runwayFrictionCodeValueState4,1838 +runwayFrictionCoefficientCodeState1,1839 +runwayFrictionCoefficientCodeState2,1840 +runwayFrictionCoefficientCodeState3,1841 +runwayFrictionCoefficientCodeState4,1842 +runwayFrictionCoefficientState1,1843 +runwayFrictionCoefficientState2,1844 +runwayFrictionCoefficientState3,1845 +runwayFrictionCoefficientState4,1846 +runwaySideCodeState1,1847 +runwaySideCodeState2,1848 +runwaySideCodeState3,1849 +runwaySideCodeState4,1850 +runwayState,1851 +sampleSizeOfModelClimate,1852 +satelliteID,1853 +satelliteIdentifier,1854 +satelliteNumber,1855 +satelliteSeries,1856 +scaleFactorAtReferencePoint,1857 +scaleFactorOfCentralWaveNumber,1858 +scaleFactorOfDistanceFromEnsembleMean,1859 +scaleFactorOfDistributionFunctionParameter,1860 +scaleFactorOfEarthMajorAxis,1861 +scaleFactorOfEarthMinorAxis,1862 +scaleFactorOfFirstFixedSurface,1863 +scaleFactorOfFirstSize,1864 +scaleFactorOfFirstWavelength,1865 +scaleFactorOfLengthOfSemiMajorAxis,1866 +scaleFactorOfLengthOfSemiMinorAxis,1867 +scaleFactorOfLowerLimit,1868 +scaleFactorOfMajorAxisOfOblateSpheroidEarth,1869 +scaleFactorOfMinorAxisOfOblateSpheroidEarth,1870 +scaleFactorOfPrimeMeridianOffset,1871 +scaleFactorOfRadiusOfSphericalEarth,1872 +scaleFactorOfSecondFixedSurface,1873 +scaleFactorOfSecondSize,1874 +scaleFactorOfSecondWavelength,1875 +scaleFactorOfStandardDeviation,1876 +scaleFactorOfStandardDeviationInTheCluster,1877 +scaleFactorOfUpperLimit,1878 +scaleValuesBy,1879 +scaledDirections,1880 +scaledFrequencies,1881 +scaledValueOfCentralWaveNumber,1882 +scaledValueOfDistanceFromEnsembleMean,1883 +scaledValueOfDistributionFunctionParameter,1884 +scaledValueOfEarthMajorAxis,1885 +scaledValueOfEarthMinorAxis,1886 +scaledValueOfFirstFixedSurface,1887 +scaledValueOfFirstSize,1888 +scaledValueOfFirstWavelength,1889 +scaledValueOfLengthOfSemiMajorAxis,1890 +scaledValueOfLengthOfSemiMinorAxis,1891 +scaledValueOfLowerLimit,1892 +scaledValueOfMajorAxisOfOblateSpheroidEarth,1893 +scaledValueOfMinorAxisOfOblateSpheroidEarth,1894 +scaledValueOfPrimeMeridianOffset,1895 +scaledValueOfRadiusOfSphericalEarth,1896 +scaledValueOfSecondFixedSurface,1897 +scaledValueOfSecondSize,1898 +scaledValueOfSecondWavelength,1899 +scaledValueOfStandardDeviation,1900 +scaledValueOfStandardDeviationInTheCluster,1901 +scaledValueOfUpperLimit,1902 +scalingFactorForFrequencies,1903 +scanPosition,1904 +scanningMode,1905 +scanningMode4,1906 +scanningMode5,1907 +scanningMode6,1908 +scanningMode7,1909 +scanningMode8,1910 +scanningModeForOneDiamond,1911 +sd,1912 +second,1913 +secondDimension,1914 +secondDimensionCoordinateValueDefinition,1915 +secondDimensionPhysicalSignificance,1916 +secondLatitude,1917 +secondLatitudeInDegrees,1918 +secondOfEndOfOverallTimeInterval,1919 +secondOfForecast,1920 +secondOfModelVersion,1921 +secondOrderFlags,1922 +secondOrderOfDifferentWidth,1923 +secondOrderValuesDifferentWidths,1924 +secondaryBitMap,1925 +secondaryBitmap,1926 +secondaryBitmapPresent,1927 +secondaryBitmaps,1928 +secondaryBitmapsCount,1929 +secondaryBitmapsSize,1930 +secondaryMissingValue,1931 +secondaryMissingValueSubstitute,1932 +secondsOfAnalysis,1933 +secondsOfReference,1934 +section,1935 +section0Length,1936 +section0Pointer,1937 +section1,1938 +section10Length,1939 +section10Pointer,1940 +section11Length,1941 +section11Pointer,1942 +section1Flags,1943 +section1Length,1944 +section1Padding,1945 +section1Pointer,1946 +section2Length,1947 +section2Padding,1948 +section2Pointer,1949 +section2Present,1950 +section2Used,1951 +section3Flags,1952 +section3Length,1953 +section3Padding,1954 +section3Pointer,1955 +section3UniqueIdentifier,1956 +section4,1957 +section4Length,1958 +section4Padding,1959 +section4Pointer,1960 +section4UniqueIdentifier,1961 +section5,1962 +section5Length,1963 +section5Pointer,1964 +section5UniqueIdentifier,1965 +section6,1966 +section6Length,1967 +section6Pointer,1968 +section6UniqueIdentifier,1969 +section7,1970 +section7Length,1971 +section7Pointer,1972 +section7UniqueIdentifier,1973 +section8,1974 +section8Length,1975 +section8Pointer,1976 +section8UniqueIdentifier,1977 +section9Length,1978 +section9Pointer,1979 +section9UniqueIdentifier,1980 +sectionLengthLimitForEnsembles,1981 +sectionLengthLimitForProbability,1982 +sectionNumber,1983 +sectionPosition,1984 +section_01,1985 +section_02,1986 +section_03,1987 +section_04,1988 +section_05,1989 +section_06,1990 +section_07,1991 +section_08,1992 +section_09,1993 +section_1,1994 +section_10,1995 +section_11,1996 +section_2,1997 +section_3,1998 +section_4,1999 +section_5,2000 +section_6,2001 +section_7,2002 +section_8,2003 +selectStepTemplateInstant,2004 +selectStepTemplateInterval,2005 +sensitiveAreaDomain,2006 +sequences,2007 +setBitsPerValue,2008 +setCalendarId,2009 +setDecimalPrecision,2010 +setLocalDefinition,2011 +setToMissingIfOutOfRange,2012 +sfc_levtype,2013 +shapeOfTheEarth,2014 +shapeOfVerificationArea,2015 +shortName,2016 +shortNameECMF,2017 +shortNameLegacyECMF,2018 +short_name,2019 +signature,2020 +significanceOfReferenceDateAndTime,2021 +significanceOfReferenceTime,2022 +simpleThinningMissingRadius,2023 +simpleThinningSkip,2024 +simpleThinningStart,2025 +siteElevation,2026 +siteId,2027 +siteLatitude,2028 +siteLongitude,2029 +sizeOfLength,2030 +sizeOfOffsets,2031 +sizeOfPostAuxiliaryArray,2032 +sizeOfPostAuxiliaryArrayPlusOne,2033 +skew,2034 +skewness,2035 +skipExtraKeyAttributes,2036 +sort,2037 +sourceOfGridDefinition,2038 +sourceSinkChemicalPhysicalProcess,2039 +southEastLatitudeOfLPOArea,2040 +southEastLatitudeOfVerficationArea,2041 +southEastLongitudeOfLPOArea,2042 +southEastLongitudeOfVerficationArea,2043 +southLatitudeOfCluster,2044 +southLatitudeOfDomainOfTubing,2045 +southPoleOnProjectionPlane,2046 +southernLatitudeOfClusterDomain,2047 +southernLatitudeOfDomain,2048 +sp1,2049 +sp2,2050 +sp3,2051 +spaceUnitFlag,2052 +spacingOfBinsAlongRadials,2053 +spare,2054 +spare1,2055 +spare2,2056 +spare3,2057 +spare4,2058 +spatialProcessing,2059 +spatialSmoothingOfProduct,2060 +spectralDataRepresentationMode,2061 +spectralDataRepresentationType,2062 +spectralMode,2063 +spectralType,2064 +sphericalHarmonics,2065 +standardDeviation,2066 +standardParallel,2067 +standardParallelInDegrees,2068 +standardParallelInMicrodegrees,2069 +startOfHeaders,2070 +startOfMessage,2071 +startOfRange,2072 +startStep,2073 +startStepInHours,2074 +startTimeStep,2075 +startingAzimuth,2076 +statisticalProcess,2077 +statisticalProcessesList,2078 +statistics,2079 +status,2080 +step,2081 +stepForClustering,2082 +stepHumanReadable,2083 +stepInHours,2084 +stepRange,2085 +stepRangeInHours,2086 +stepType,2087 +stepTypeForConversion,2088 +stepTypeInternal,2089 +stepUnits,2090 +stepZero,2091 +stream,2092 +streamOfAnalysis,2093 +stretchingFactor,2094 +stretchingFactorScaled,2095 +stringValues,2096 +subCentre,2097 +subDefinitions1,2098 +subDefinitions2,2099 +subLocalDefinition1,2100 +subLocalDefinition2,2101 +subLocalDefinitionLength1,2102 +subLocalDefinitionLength2,2103 +subLocalDefinitionNumber1,2104 +subLocalDefinitionNumber2,2105 +subSetJ,2106 +subSetK,2107 +subSetM,2108 +subcentreOfAnalysis,2109 +subdivisionsOfBasicAngle,2110 +suiteName,2111 +superblockExtensionAddress,2112 +swapScanningLat,2113 +swapScanningLon,2114 +swapScanningX,2115 +swapScanningY,2116 +system,2117 +systemNumber,2118 +t,2119 +table2Version,2120 +tableCode,2121 +tableNumber,2122 +tableReference,2123 +tablesLocalDir,2124 +tablesMasterDir,2125 +tablesVersion,2126 +tablesVersionLatest,2127 +targetCompressionRatio,2128 +td,2129 +tempPressureUnits,2130 +temperature,2131 +temperatureAndDewpointPresent,2132 +templatesLocalDir,2133 +templatesMasterDir,2134 +theHindcastMarsStream,2135 +theMessage,2136 +thisExperimentVersionNumber,2137 +thisMarsClass,2138 +thisMarsStream,2139 +thisMarsType,2140 +thousand,2141 +three,2142 +threshold,2143 +thresholdIndicator,2144 +tiggeCentre,2145 +tiggeLAMName,2146 +tiggeLocalVersion,2147 +tiggeModel,2148 +tiggeSection,2149 +tiggeSuiteID,2150 +tigge_name,2151 +tigge_short_name,2152 +tileClassification,2153 +tileIndex,2154 +time,2155 +timeCoordinateDefinition,2156 +timeDomainTemplate,2157 +timeDomainTemplateNumber,2158 +timeIncrement,2159 +timeIncrementBetweenSuccessiveFields,2160 +timeOfAnalysis,2161 +timeOfForecast,2162 +timeOfModelVersion,2163 +timeOfReference,2164 +timeRangeIndicator,2165 +timeRangeIndicatorFromStepRange,2166 +timeUnitFlag,2167 +timerepres,2168 +topLevel,2169 +total,2170 +totalAerosolBinsNumbers,2171 +totalInitialConditions,2172 +totalLength,2173 +totalNumber,2174 +totalNumberOfClusters,2175 +totalNumberOfDataValuesMissingInStatisticalProcess,2176 +totalNumberOfDirections,2177 +totalNumberOfForecastProbabilities,2178 +totalNumberOfFrequencies,2179 +totalNumberOfGridPoints,2180 +totalNumberOfIterations,2181 +totalNumberOfRepetitions,2182 +totalNumberOfTileAttributePairs,2183 +totalNumberOfTubes,2184 +totalNumberOfValuesInUnpackedSubset,2185 +totalNumberOfdimensions,2186 +treatmentOfMissingData,2187 +true,2188 +trueLengthOfLastGroup,2189 +truncateDegrees,2190 +truncateLaplacian,2191 +tsectionNumber3,2192 +tsectionNumber4,2193 +tsectionNumber5,2194 +tubeDomain,2195 +tubeNumber,2196 +two,2197 +twoOrdersOfSPD,2198 +type,2199 +typeOfAnalysis,2200 +typeOfAuxiliaryInformation,2201 +typeOfCalendar,2202 +typeOfCompressionUsed,2203 +typeOfDistributionFunction,2204 +typeOfEnsembleForecast,2205 +typeOfEnsembleMember,2206 +typeOfFirstFixedSurface,2207 +typeOfGeneratingProcess,2208 +typeOfGrid,2209 +typeOfHorizontalLine,2210 +typeOfIntervalForFirstAndSecondSize,2211 +typeOfIntervalForFirstAndSecondWavelength,2212 +typeOfLevel,2213 +typeOfLevelECMF,2214 +typeOfOriginalFieldValues,2215 +typeOfPacking,2216 +typeOfPostProcessing,2217 +typeOfPreProcessing,2218 +typeOfProcessedData,2219 +typeOfSSTFieldUsed,2220 +typeOfSecondFixedSurface,2221 +typeOfSizeInterval,2222 +typeOfStatisticalPostProcessingOfEnsembleMembers,2223 +typeOfStatisticalProcessing,2224 +typeOfTimeIncrement,2225 +typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing,2226 +typeOfWavelengthInterval,2227 +typicalCentury,2228 +typicalDate,2229 +typicalDateTime,2230 +typicalDay,2231 +typicalHour,2232 +typicalMinute,2233 +typicalMonth,2234 +typicalSecond,2235 +typicalTime,2236 +typicalYear,2237 +typicalYear2,2238 +typicalYearOfCentury,2239 +uco,2240 +ucs,2241 +unexpandedDescriptors,2242 +unexpandedDescriptorsEncoded,2243 +unitOfOffsetFromReferenceTime,2244 +unitOfTime,2245 +unitOfTimeIncrement,2246 +unitOfTimeRange,2247 +units,2248 +unitsBias,2249 +unitsConversionOffset,2250 +unitsConversionScaleFactor,2251 +unitsDecimalScaleFactor,2252 +unitsECMF,2253 +unitsFactor,2254 +unitsLegacyECMF,2255 +unitsOfFirstFixedSurface,2256 +unitsOfSecondFixedSurface,2257 +unknown,2258 +unpack,2259 +unpackedError,2260 +unpackedSubsetPrecision,2261 +unpackedValues,2262 +unsignedIntegers,2263 +unstructuredGrid,2264 +unstructuredGridSubtype,2265 +unstructuredGridType,2266 +unstructuredGridUUID,2267 +unusedBitsInBitmap,2268 +updateSequenceNumber,2269 +upperLimit,2270 +upperRange,2271 +upperThreshold,2272 +upperThresholdValue,2273 +userDateEnd,2274 +userDateStart,2275 +userDateTimeEnd,2276 +userDateTimeStart,2277 +userTimeEnd,2278 +userTimeStart,2279 +uuidOfHGrid,2280 +uuidOfVGrid,2281 +uvRelativeToGrid,2282 +validityDate,2283 +validityTime,2284 +values,2285 +variationOfVisibility,2286 +variationOfVisibilityDirection,2287 +variationOfVisibilityDirectionAngle,2288 +variationOfVisibilityDirectionTrend1,2289 +variationOfVisibilityDirectionTrend2,2290 +variationOfVisibilityDirectionTrend3,2291 +variationOfVisibilityDirectionTrend4,2292 +variationOfVisibilityTrend1,2293 +variationOfVisibilityTrend2,2294 +variationOfVisibilityTrend3,2295 +variationOfVisibilityTrend4,2296 +varno,2297 +verificationDate,2298 +verificationMonth,2299 +verificationYear,2300 +verifyingMonth,2301 +version,2302 +versionNumOfFilesFreeSpaceStorage,2303 +versionNumOfRootGroupSymbolTableEntry,2304 +versionNumOfSharedHeaderMessageFormat,2305 +versionNumberOfExperimentalSuite,2306 +versionNumberOfGribLocalTables,2307 +versionNumberOfSuperblock,2308 +versionOfModelClimate,2309 +verticalCoordinate,2310 +verticalCoordinateDefinition,2311 +verticalDomainTemplate,2312 +verticalDomainTemplateNumber,2313 +verticalVisibility,2314 +verticalVisibilityCoded,2315 +visibility,2316 +visibilityInKilometresTrend1,2317 +visibilityInKilometresTrend2,2318 +visibilityInKilometresTrend3,2319 +visibilityInKilometresTrend4,2320 +visibilityTrend1,2321 +visibilityTrend2,2322 +visibilityTrend3,2323 +visibilityTrend4,2324 +waveDomain,2325 +weightAppliedToClimateMonth1,2326 +westLongitudeOfCluster,2327 +westLongitudeOfDomainOfTubing,2328 +westernLongitudeOfClusterDomain,2329 +westernLongitudeOfDomain,2330 +widthOfFirstOrderValues,2331 +widthOfLengths,2332 +widthOfSPD,2333 +widthOfWidths,2334 +windDirection,2335 +windDirectionTrend1,2336 +windDirectionTrend2,2337 +windDirectionTrend3,2338 +windDirectionTrend4,2339 +windGust,2340 +windGustTrend1,2341 +windGustTrend2,2342 +windGustTrend3,2343 +windGustTrend4,2344 +windPresent,2345 +windSpeed,2346 +windSpeedTrend1,2347 +windSpeedTrend2,2348 +windSpeedTrend3,2349 +windSpeedTrend4,2350 +windUnits,2351 +windUnitsTrend1,2352 +windUnitsTrend2,2353 +windUnitsTrend3,2354 +windUnitsTrend4,2355 +windVariableDirection,2356 +windVariableDirectionTrend1,2357 +windVariableDirectionTrend2,2358 +windVariableDirectionTrend3,2359 +windVariableDirectionTrend4,2360 +wrongPadding,2361 +xCoordinateOfOriginOfSectorImage,2362 +xCoordinateOfSubSatellitePoint,2363 +xDirectionGridLength,2364 +xDirectionGridLengthInMetres,2365 +xDirectionGridLengthInMillimetres,2366 +xFirst,2367 +xLast,2368 +yCoordinateOfOriginOfSectorImage,2369 +yCoordinateOfSubSatellitePoint,2370 +yDirectionGridLength,2371 +yDirectionGridLengthInMetres,2372 +yDirectionGridLengthInMillimetres,2373 +yFirst,2374 +yLast,2375 +year,2376 +yearOfAnalysis,2377 +yearOfCentury,2378 +yearOfEndOfOverallTimeInterval,2379 +yearOfForecast,2380 +yearOfModelVersion,2381 +yearOfReference,2382 +zero,2383 +zeros,2384 From 919b9ef5df786d1d359677074c4d81d3cca7bc17 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 31 Dec 2020 15:24:45 +0000 Subject: [PATCH 219/683] ECC-1185: Crash in codes_context_delete() call (Part 2) --- src/grib_accessor_class_smart_table.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/grib_accessor_class_smart_table.c b/src/grib_accessor_class_smart_table.c index 5d2318ad7..c9fd79550 100644 --- a/src/grib_accessor_class_smart_table.c +++ b/src/grib_accessor_class_smart_table.c @@ -407,19 +407,24 @@ void grib_smart_table_delete(grib_context* c) int k; for (i = 0; i < t->numberOfEntries; i++) { - grib_context_free_persistent(c, t->entries[i].abbreviation); + if (t->entries[i].abbreviation) + grib_context_free_persistent(c, t->entries[i].abbreviation); for (k = 0; k < MAX_SMART_TABLE_COLUMNS; k++) { if (t->entries[i].column[k]) grib_context_free_persistent(c, t->entries[i].column[k]); } - grib_context_free_persistent(c, &(t->entries[i])); } + grib_context_free_persistent(c, t->entries); grib_context_free_persistent(c, t->filename[0]); if (t->filename[1]) grib_context_free_persistent(c, t->filename[1]); + if (t->filename[2]) + grib_context_free_persistent(c, t->filename[2]); grib_context_free_persistent(c, t->recomposed_name[0]); if (t->recomposed_name[1]) grib_context_free_persistent(c, t->recomposed_name[1]); + if (t->recomposed_name[2]) + grib_context_free_persistent(c, t->recomposed_name[2]); grib_context_free_persistent(c, t); t = s; } From 4157a9573fffc4816d27a21594ffdd285dd348a3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 31 Dec 2020 18:10:07 +0000 Subject: [PATCH 220/683] ECC-1185: Add test --- tests/bufr_keys_iter.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/bufr_keys_iter.c b/tests/bufr_keys_iter.c index 2cc2de5f9..c419e818a 100644 --- a/tests/bufr_keys_iter.c +++ b/tests/bufr_keys_iter.c @@ -71,5 +71,7 @@ int main(int argc, char* argv[]) } codes_bufr_keys_iterator_delete(kiter); codes_handle_delete(h); + codes_context_delete(codes_context_get_default()); + return 0; } From b9b74519408729bdb8bc051a5f580e6e27bf67a0 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 4 Jan 2021 14:02:12 +0000 Subject: [PATCH 221/683] BUFR Performance: remove function call overhead and simplify (ECC-698, ECC-715) --- src/grib_accessor_class_bufr_data_array.c | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/grib_accessor_class_bufr_data_array.c b/src/grib_accessor_class_bufr_data_array.c index ac96d0e15..79d51d1cd 100644 --- a/src/grib_accessor_class_bufr_data_array.c +++ b/src/grib_accessor_class_bufr_data_array.c @@ -2139,14 +2139,7 @@ static grib_accessor* create_accessor_from_descriptor(const grib_accessor* a, gr #define MAX_NUMBER_OF_BITMAPS 5 static const int number_of_qualifiers = NUMBER_OF_QUALIFIERS_PER_CATEGORY * NUMBER_OF_QUALIFIERS_CATEGORIES; - -static GRIB_INLINE int significanceQualifierIndex(int X, int Y) -{ - static const int a[] = { -1, 0, 1, -1, 2, 3, 4, 5, 6 }; - int ret = Y + a[X] * NUMBER_OF_QUALIFIERS_PER_CATEGORY; - DebugAssert(ret > 0); - return ret; -} +static const int significanceQualifierIndexArray[] = { -1, 0, 1, -1, 2, 3, 4, 5, 6 }; static GRIB_INLINE void reset_deeper_qualifiers( grib_accessor* significanceQualifierGroup[], @@ -2513,7 +2506,8 @@ static int create_keys(const grib_accessor* a, long onlySubset, long startSubset elementFromBitmap = NULL; if (descriptor->F == 0 && IS_COORDINATE_DESCRIPTOR(descriptor->X) && self->unpackMode == CODES_BUFR_UNPACK_STRUCTURE) { - int sidx = significanceQualifierIndex(descriptor->X, descriptor->Y); + const int sidx = descriptor->Y + significanceQualifierIndexArray[descriptor->X] * NUMBER_OF_QUALIFIERS_PER_CATEGORY; + DebugAssert(sidx > 0); groupNumber++; if (significanceQualifierGroup[sidx]) { From 5b5e5d42570652e7171eb7aa0ecb1b1421553990 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 5 Jan 2021 12:13:44 +0000 Subject: [PATCH 222/683] ECC-1185: Crash in codes_context_delete() call (Part 2) --- src/grib_context.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/grib_context.c b/src/grib_context.c index dc50b08fa..59ec0579c 100644 --- a/src/grib_context.c +++ b/src/grib_context.c @@ -766,6 +766,7 @@ void grib_context_free_persistent(const grib_context* c, void* p) void grib_context_reset(grib_context* c) { + size_t i = 0; if (!c) c = grib_context_get_default(); @@ -813,6 +814,12 @@ void grib_context_reset(grib_context* c) if (c->multi_support_on) grib_multi_support_reset(c); + + for (i=0; i < MAX_NUM_CONCEPTS; ++i) { + if (c->concepts[i]) { + grib_trie_delete_container(c->concepts[i]->index); + } + } } void grib_context_delete(grib_context* c) From cd58ebf014403c2d6d59bc661b8e14064347ddb2 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 5 Jan 2021 12:17:37 +0000 Subject: [PATCH 223/683] Refactoring: Rename variable for readability --- src/grib_accessor_class_double.c | 4 ++-- src/grib_accessor_class_long.c | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/grib_accessor_class_double.c b/src/grib_accessor_class_double.c index d8be49c30..da35f60c6 100644 --- a/src/grib_accessor_class_double.c +++ b/src/grib_accessor_class_double.c @@ -217,11 +217,11 @@ static int compare(grib_accessor* a, grib_accessor* b) static int pack_missing(grib_accessor* a) { - size_t one = 1; + size_t len = 1; double value = GRIB_MISSING_DOUBLE; if (a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) - return grib_pack_double(a, &value, &one); + return grib_pack_double(a, &value, &len); return GRIB_VALUE_CANNOT_BE_MISSING; } /* diff --git a/src/grib_accessor_class_long.c b/src/grib_accessor_class_long.c index cce7f7eb7..85bac5ebc 100644 --- a/src/grib_accessor_class_long.c +++ b/src/grib_accessor_class_long.c @@ -175,11 +175,11 @@ static int unpack_string(grib_accessor* a, char* v, size_t* len) static int pack_missing(grib_accessor* a) { - size_t one = 1; + size_t len = 1; long value = GRIB_MISSING_LONG; if (a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) - return grib_pack_long(a, &value, &one); + return grib_pack_long(a, &value, &len); return GRIB_VALUE_CANNOT_BE_MISSING; } @@ -187,13 +187,13 @@ static int pack_missing(grib_accessor* a) /* static int is_missing(grib_accessor* a){ - size_t one = 1; + size_t len = 1; long value = GRIB_MISSING_LONG; long ret=0; if(a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) { - ret = grib_unpack_long(a,&value,&one); + ret = grib_unpack_long(a,&value,&len); Assert( ret == 0); return value == GRIB_MISSING_LONG; } From 2820bd2939e7ce381a384a84244754f5e6ded392 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 5 Jan 2021 14:06:33 +0000 Subject: [PATCH 224/683] codes_context_delete() release concept condition/values --- src/grib_context.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/grib_context.c b/src/grib_context.c index 59ec0579c..79f249022 100644 --- a/src/grib_context.c +++ b/src/grib_context.c @@ -816,8 +816,14 @@ void grib_context_reset(grib_context* c) grib_multi_support_reset(c); for (i=0; i < MAX_NUM_CONCEPTS; ++i) { - if (c->concepts[i]) { - grib_trie_delete_container(c->concepts[i]->index); + grib_concept_value* cv = c->concepts[i]; + if (cv) { + grib_trie_delete_container(cv->index); + } + while (cv) { + grib_concept_value* n = cv->next; + grib_concept_value_delete(c, cv); + cv = n; } } } From 0b68887b7277f31c06f9ff4026ed48c82951ca91 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 5 Jan 2021 16:39:48 +0000 Subject: [PATCH 225/683] grib_to_netcdf: Add test for different resolutions --- tests/grib_to_netcdf.sh | 26 ++++++++++++++++++++------ tools/grib_to_netcdf.c | 2 +- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/tests/grib_to_netcdf.sh b/tests/grib_to_netcdf.sh index fbd1c210e..9aead8365 100755 --- a/tests/grib_to_netcdf.sh +++ b/tests/grib_to_netcdf.sh @@ -39,8 +39,8 @@ if command -v "ncdump" >/dev/null 2>&1; then NC_DUMPER="ncdump" fi -echo "Test ECC-1041: One parameter with different expvers" -# -------------------------------------------------------- +echo "Test ECC-1041: One parameter with different expvers ..." +# ------------------------------------------------------------ # This has 5 messages, all 'tp'. Change the first message to have a different expver input=${data_dir}/tp_ecmwf.grib ${tools_dir}/grib_set -w stepRange=12 -s experimentVersionNumber=0005 $input $tempGrib @@ -72,8 +72,8 @@ for dt in $ncf_types; do done done -echo "Test creating different kinds; netcdf3 classic and large" -# ------------------------------------------------------------- +echo "Test creating different kinds; netcdf3 classic and large ..." +# ------------------------------------------------------------------ # TODO: enable tests for netcdf4 formats too input=${data_dir}/regular_latlon_surface.grib2 ${tools_dir}/grib_to_netcdf -k 1 -o $tempNetcdf $input >/dev/null @@ -81,14 +81,28 @@ ${tools_dir}/grib_to_netcdf -k 2 -o $tempNetcdf $input >/dev/null #${tools_dir}/grib_to_netcdf -k 3 -o $tempNetcdf $input >/dev/null #${tools_dir}/grib_to_netcdf -k 4 -o $tempNetcdf $input >/dev/null -echo "Test for ECC-1060" -# ----------------------- +echo "Test ECC-1060 ..." +# ---------------------- sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl ${tools_dir}/grib_set -s productDefinitionTemplateNumber=30 $sample2 $tempGrib ${tools_dir}/grib_to_netcdf -o $tempNetcdf $tempGrib ${tools_dir}/grib_set -s productDefinitionTemplateNumber=31 $sample2 $tempGrib ${tools_dir}/grib_to_netcdf -o $tempNetcdf $tempGrib +echo "Test different resolutions ..." +# ------------------------------------ +# This should fail as messages have different resolutions +tempGrib2=temp.${label}.2.grib +${tools_dir}/grib_set -s Ni=17,Nj=32,step=12 $ECCODES_SAMPLES_PATH/regular_ll_pl_grib2.tmpl $tempGrib +cat $ECCODES_SAMPLES_PATH/regular_ll_pl_grib2.tmpl $tempGrib > $tempGrib2 +set +e +${tools_dir}/grib_to_netcdf -o $tempNetcdf $tempGrib2 2>$tempText +status=$? +set -e +[ $status = 1 ] +grep -q "GRIB message 2 has different resolution" $tempText + +rm -f $tempGrib2 # Clean up rm -f $tempNetcdf $tempGrib $tempText diff --git a/tools/grib_to_netcdf.c b/tools/grib_to_netcdf.c index f4792f35e..6585fbd3d 100644 --- a/tools/grib_to_netcdf.c +++ b/tools/grib_to_netcdf.c @@ -2848,7 +2848,7 @@ static int put_data(hypercube* h, int ncid, const char* name, dataset_t* subset) } if (nj != count[naxis] || ni != count[naxis + 1]) { - grib_context_log(ctx, GRIB_LOG_ERROR, "Grib %d has different resolution\n", i + 1); + grib_context_log(ctx, GRIB_LOG_ERROR, "GRIB message %d has different resolution\n", i + 1); grib_context_log(ctx, GRIB_LOG_ERROR, "lat=%ld, long=%ld instead of lat=%ld, long=%ld\n", nj, ni, count[naxis], count[naxis + 1]); exit(1); } From ae19339660002b722febe096f3406b38c7752b2e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 6 Jan 2021 17:49:43 +0000 Subject: [PATCH 226/683] ECC-1189: CMake: Rename option GRIB_TIMER to ECCODES_TIMER --- CMakeLists.txt | 8 ++++---- configure.ac | 4 ++-- eccodes_config.h.in | 2 +- src/grib_api_internal.h | 2 +- src/grib_timer.c | 2 +- tests/CMakeLists.txt | 4 ++-- tests/grib_ccsds_perf.c | 2 +- tests/grib_ecc-386.c | 4 ++-- tests/gribex_perf.c | 2 +- tests/jpeg_perf.c | 2 +- tests/laplacian.c | 2 +- tests/png_perf.c | 2 +- tests/so_perf.c | 2 +- tests/timing.c | 2 +- 14 files changed, 20 insertions(+), 20 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 118c15f90..514cbf4f0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -181,7 +181,7 @@ ecbuild_add_option( FEATURE INSTALL_ECCODES_SAMPLES ecbuild_add_option( FEATURE MEMORY_MANAGEMENT DESCRIPTION "Enable memory management" DEFAULT OFF ADVANCED ) ecbuild_add_option( FEATURE ALIGN_MEMORY DESCRIPTION "Enable memory alignment" DEFAULT OFF ADVANCED ) -ecbuild_add_option( FEATURE GRIB_TIMER DESCRIPTION "Enable timer" DEFAULT OFF ADVANCED ) +ecbuild_add_option( FEATURE ECCODES_TIMER DESCRIPTION "Enable timer" DEFAULT OFF ADVANCED ) ecbuild_add_option( FEATURE ECCODES_THREADS DESCRIPTION "Enable POSIX threads" DEFAULT OFF ADVANCED ) ecbuild_add_option( FEATURE ECCODES_OMP_THREADS DESCRIPTION "Enable OMP threads" DEFAULT OFF ADVANCED ) ecbuild_add_option( FEATURE EXTRA_TESTS DESCRIPTION "Enable extended regression testing" DEFAULT OFF ADVANCED ) @@ -240,10 +240,10 @@ endif() ############################################################################### # other options -if( HAVE_GRIB_TIMER ) - set( GRIB_TIMER 1 ) +if( HAVE_ECCODES_TIMER ) + set( ECCODES_TIMER 1 ) else() - set( GRIB_TIMER 0 ) + set( ECCODES_TIMER 0 ) endif() set( IS_BIG_ENDIAN 0 ) diff --git a/configure.ac b/configure.ac index 2962312c4..cdbc47c19 100755 --- a/configure.ac +++ b/configure.ac @@ -332,9 +332,9 @@ AC_ARG_ENABLE([timer], [AS_HELP_STRING([--enable-timer],[enable timer [by default disabled]])], [with_timer=${enableval}], [with_timer=no]) if test "x${with_timer}" = xyes; then - AC_DEFINE(GRIB_TIMER,1,1->Timer on 0->Timer off) + AC_DEFINE(ECCODES_TIMER,1,1->Timer on 0->Timer off) else - AC_DEFINE(GRIB_TIMER,0,1->Timer on 0->Timer off) + AC_DEFINE(ECCODES_TIMER,0,1->Timer on 0->Timer off) fi diff --git a/eccodes_config.h.in b/eccodes_config.h.in index 534c9bf23..9d5d35edd 100644 --- a/eccodes_config.h.in +++ b/eccodes_config.h.in @@ -36,7 +36,7 @@ #define ECCODES_SAMPLES_PATH "@ECCODES_SAMPLES_PATH@" -#define GRIB_TIMER @GRIB_TIMER@ +#define ECCODES_TIMER @ECCODES_TIMER@ /* headers */ diff --git a/src/grib_api_internal.h b/src/grib_api_internal.h index 5c0a78bf4..3b8fae3ca 100644 --- a/src/grib_api_internal.h +++ b/src/grib_api_internal.h @@ -1541,7 +1541,7 @@ struct grib_smart_table }; -#if GRIB_TIMER +#if ECCODES_TIMER typedef struct grib_timer { struct timeval start_; diff --git a/src/grib_timer.c b/src/grib_timer.c index d7667e7ea..4d41591de 100644 --- a/src/grib_timer.c +++ b/src/grib_timer.c @@ -10,7 +10,7 @@ #include "grib_api_internal.h" -#if GRIB_TIMER +#if ECCODES_TIMER #ifndef ECCODES_ON_WINDOWS #include diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 727a92449..3dae75a54 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -351,10 +351,10 @@ if( HAVE_BUILD_TOOLS ) COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/bufr_split_by_rdbSubtype.sh TEST_DEPENDS eccodes_download_bufrs ) - # Performance test. Must have -DENABLE_GRIB_TIMER=ON + # Performance test. Must have -DENABLE_ECCODES_TIMER=ON ecbuild_add_test( TARGET eccodes_t_grib_ecc-386 TYPE SCRIPT - CONDITION ENABLE_EXTRA_TESTS AND ENABLE_GRIB_TIMER + CONDITION ENABLE_EXTRA_TESTS AND ENABLE_ECCODES_TIMER COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/grib_ecc-386.sh TEST_DEPENDS eccodes_download_gribs ) else() diff --git a/tests/grib_ccsds_perf.c b/tests/grib_ccsds_perf.c index e3c2c235f..880b487f2 100644 --- a/tests/grib_ccsds_perf.c +++ b/tests/grib_ccsds_perf.c @@ -10,7 +10,7 @@ #include "grib_api_internal.h" -#if GRIB_TIMER +#if ECCODES_TIMER void usage(char* prog) { diff --git a/tests/grib_ecc-386.c b/tests/grib_ecc-386.c index d2b166866..7e99423d8 100644 --- a/tests/grib_ecc-386.c +++ b/tests/grib_ecc-386.c @@ -21,7 +21,7 @@ static void usage(const char* prog) exit(1); } -#ifdef GRIB_TIMER +#ifdef ECCODES_TIMER int main(int argc, char** argv) { grib_timer* tes = grib_get_timer(0, "decoding", 0, 0); @@ -31,7 +31,7 @@ int main(int argc, char** argv) size_t values_len = 0; double* values = NULL; double duration_actual = 0; - const double duration_max = 3; /* seconds */ + const double duration_max = 3.6; /* seconds */ const int num_repetitions = 1000; if (argc < 2) usage(argv[0]); diff --git a/tests/gribex_perf.c b/tests/gribex_perf.c index 53d6e8199..a229dcf02 100644 --- a/tests/gribex_perf.c +++ b/tests/gribex_perf.c @@ -17,7 +17,7 @@ #define BUFF_SIZE 50000000 #ifdef HAVE_LIBEMOS -#if GRIB_TIMER +#if ECCODES_TIMER #define TEST_OK #endif #endif diff --git a/tests/jpeg_perf.c b/tests/jpeg_perf.c index adad04820..729b9dde4 100644 --- a/tests/jpeg_perf.c +++ b/tests/jpeg_perf.c @@ -10,7 +10,7 @@ #include "grib_api_internal.h" -#if GRIB_TIMER +#if ECCODES_TIMER void usage(char* prog) { diff --git a/tests/laplacian.c b/tests/laplacian.c index 43b70881f..dd2da174f 100644 --- a/tests/laplacian.c +++ b/tests/laplacian.c @@ -17,7 +17,7 @@ #define BUFF_SIZE 50000000 #ifdef HAVE_LIBEMOS -#if GRIB_TIMER +#if ECCODES_TIMER #define TEST_OK #endif #endif diff --git a/tests/png_perf.c b/tests/png_perf.c index f39e36c43..5210953f8 100644 --- a/tests/png_perf.c +++ b/tests/png_perf.c @@ -10,7 +10,7 @@ #include "grib_api_internal.h" -#if GRIB_TIMER +#if ECCODES_TIMER void usage(char* prog) { diff --git a/tests/so_perf.c b/tests/so_perf.c index d985471b1..d87b255ea 100644 --- a/tests/so_perf.c +++ b/tests/so_perf.c @@ -17,7 +17,7 @@ #define BUFF_SIZE 10000000 #ifdef HAVE_LIBEMOS -#if GRIB_TIMER +#if ECCODES_TIMER #define TEST_OK #endif #endif diff --git a/tests/timing.c b/tests/timing.c index ae3e5f1da..28b72599b 100644 --- a/tests/timing.c +++ b/tests/timing.c @@ -16,7 +16,7 @@ #define NUMBER(a) (sizeof(a)/sizeof(a[0])) #ifdef HAVE_LIBEMOS -#if GRIB_TIMER +#if ECCODES_TIMER extern void grsrnd_(flong*); extern void gribex_(flong*, flong*, flong*, double*, flong*, double*, flong*, double*, From 23a077fb773a7781b145312ee3abf684dcab5402 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 6 Jan 2021 19:19:21 +0000 Subject: [PATCH 227/683] ECC-1189: Simplify option name --- CMakeLists.txt | 4 ++-- tests/CMakeLists.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 514cbf4f0..8f4274f4c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -181,7 +181,7 @@ ecbuild_add_option( FEATURE INSTALL_ECCODES_SAMPLES ecbuild_add_option( FEATURE MEMORY_MANAGEMENT DESCRIPTION "Enable memory management" DEFAULT OFF ADVANCED ) ecbuild_add_option( FEATURE ALIGN_MEMORY DESCRIPTION "Enable memory alignment" DEFAULT OFF ADVANCED ) -ecbuild_add_option( FEATURE ECCODES_TIMER DESCRIPTION "Enable timer" DEFAULT OFF ADVANCED ) +ecbuild_add_option( FEATURE TIMER DESCRIPTION "Enable timer" DEFAULT OFF ADVANCED ) ecbuild_add_option( FEATURE ECCODES_THREADS DESCRIPTION "Enable POSIX threads" DEFAULT OFF ADVANCED ) ecbuild_add_option( FEATURE ECCODES_OMP_THREADS DESCRIPTION "Enable OMP threads" DEFAULT OFF ADVANCED ) ecbuild_add_option( FEATURE EXTRA_TESTS DESCRIPTION "Enable extended regression testing" DEFAULT OFF ADVANCED ) @@ -240,7 +240,7 @@ endif() ############################################################################### # other options -if( HAVE_ECCODES_TIMER ) +if( HAVE_TIMER ) set( ECCODES_TIMER 1 ) else() set( ECCODES_TIMER 0 ) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 3dae75a54..ea8cc44a5 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -351,10 +351,10 @@ if( HAVE_BUILD_TOOLS ) COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/bufr_split_by_rdbSubtype.sh TEST_DEPENDS eccodes_download_bufrs ) - # Performance test. Must have -DENABLE_ECCODES_TIMER=ON + # Performance test. Must have -DENABLE_TIMER=ON ecbuild_add_test( TARGET eccodes_t_grib_ecc-386 TYPE SCRIPT - CONDITION ENABLE_EXTRA_TESTS AND ENABLE_ECCODES_TIMER + CONDITION ENABLE_EXTRA_TESTS AND ENABLE_TIMER COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/grib_ecc-386.sh TEST_DEPENDS eccodes_download_gribs ) else() From aa74d827aec2be870196a1c17d9a6a90e7524e91 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 7 Jan 2021 15:20:00 +0000 Subject: [PATCH 228/683] ECC-1183: Fix issue re setting keys separately --- definitions/grib2/localConcepts/ecmf/unstructuredGrid.def | 4 ++-- tests/grib_grid_unstructured.sh | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def b/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def index c5c156595..80b668b40 100644 --- a/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def +++ b/definitions/grib2/localConcepts/ecmf/unstructuredGrid.def @@ -7,8 +7,8 @@ concept unstructuredGridSubtype(unknown,"unstructuredGridSubtype.def",conceptsLo concept unstructuredGridUUID(unknown,"unstructuredGridUUID.def",conceptsLocalDirAll,conceptsMasterDir); if (unstructuredGridType is "undefined" || unstructuredGridType is "unknown") { - meta gridName sprintf("%s",unstructuredGridType); + meta gridName sprintf("%s",unstructuredGridType) : no_copy; } else { - meta gridName sprintf("%s_%s",unstructuredGridType,unstructuredGridSubtype); + meta gridName sprintf("%s_%s",unstructuredGridType,unstructuredGridSubtype) : no_copy; } alias ls.gridName=gridName; diff --git a/tests/grib_grid_unstructured.sh b/tests/grib_grid_unstructured.sh index 5353ef05d..1862f93ef 100755 --- a/tests/grib_grid_unstructured.sh +++ b/tests/grib_grid_unstructured.sh @@ -25,6 +25,10 @@ grib_check_key_equals $temp1 gridName 'undefined' ${tools_dir}/grib_set -s gridType=unstructured_grid,numberOfGridInReference=94,numberOfGridUsed=200 $sample $temp1 grib_check_key_equals $temp1 gridName 'unknown' +# Two invocations of grib_set +${tools_dir}/grib_set -s gridType=unstructured_grid $sample $temp1 +${tools_dir}/grib_set -s unstructuredGridType=ORCA1 $temp1 $temp2 + # ORCA1, W grid ${tools_dir}/grib_set -s gridType=unstructured_grid,numberOfGridInReference=4,numberOfGridUsed=2 $sample $temp1 grib_check_key_equals $temp1 'unstructuredGridType' 'ORCA1' From 1292d532b8567596cdabc7fe079c649e386721b7 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 7 Jan 2021 17:14:13 +0000 Subject: [PATCH 229/683] GRIB2 legacy ECMWF parameters: Legacy concepts (See GRIB-441) --- .../localConcepts/ecmf/cfVarName.legacy.def | 36 +++++++++++++++++++ .../grib2/localConcepts/ecmf/name.legacy.def | 36 +++++++++++++++++++ .../localConcepts/ecmf/paramId.legacy.def | 36 +++++++++++++++++++ .../localConcepts/ecmf/shortName.legacy.def | 36 +++++++++++++++++++ .../grib2/localConcepts/ecmf/units.legacy.def | 36 +++++++++++++++++++ 5 files changed, 180 insertions(+) diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def index 442a0d34c..b33a1c3a8 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def @@ -142,3 +142,39 @@ parameterCategory = 128 ; parameterNumber = 238 ; } +#Sea-ice cover +'ci' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 31 ; +} +#Snow density +'rsn' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 33 ; +} +#Sea surface temperature +'sst' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 34 ; +} +#Surface solar radiation downwards +'ssrd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 169 ; +} +#Surface thermal radiation downwards +'strd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 175 ; +} +#Surface runoff +'sro' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 8 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/name.legacy.def b/definitions/grib2/localConcepts/ecmf/name.legacy.def index 6421ee84b..7caf1461f 100644 --- a/definitions/grib2/localConcepts/ecmf/name.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/name.legacy.def @@ -142,3 +142,39 @@ parameterCategory = 128 ; parameterNumber = 238 ; } +#Sea-ice cover +'Sea-ice cover' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 31 ; +} +#Snow density +'Snow density' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 33 ; +} +#Sea surface temperature +'Sea surface temperature' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 34 ; +} +#Surface solar radiation downwards +'Surface solar radiation downwards' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 169 ; +} +#Surface thermal radiation downwards +'Surface thermal radiation downwards' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 175 ; +} +#Surface runoff +'Surface runoff' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 8 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def index c1667d232..f38e81e4e 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def @@ -142,3 +142,39 @@ parameterCategory = 128 ; parameterNumber = 238 ; } +#Sea-ice cover +'31' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 31 ; +} +#Snow density +'33' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 33 ; +} +#Sea surface temperature +'34' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 34 ; +} +#Surface solar radiation downwards +'169' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 169 ; +} +#Surface thermal radiation downwards +'175' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 175 ; +} +#Surface runoff +'174008' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 8 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def index 524fdb65f..2bc258c37 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def @@ -142,3 +142,39 @@ parameterCategory = 128 ; parameterNumber = 238 ; } +#Sea-ice cover +'ci' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 31 ; +} +#Snow density +'rsn' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 33 ; +} +#Sea surface temperature +'sst' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 34 ; +} +#Surface solar radiation downwards +'ssrd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 169 ; +} +#Surface thermal radiation downwards +'strd' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 175 ; +} +#Surface runoff +'sro' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 8 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/units.legacy.def b/definitions/grib2/localConcepts/ecmf/units.legacy.def index 3319bcc9a..f8d0299d2 100644 --- a/definitions/grib2/localConcepts/ecmf/units.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/units.legacy.def @@ -142,3 +142,39 @@ parameterCategory = 128 ; parameterNumber = 238 ; } +#Sea-ice cover +'(0 - 1)' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 31 ; +} +#Snow density +'kg m**-3' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 33 ; +} +#Sea surface temperature +'K' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 34 ; +} +#Surface solar radiation downwards +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 169 ; +} +#Surface thermal radiation downwards +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 175 ; +} +#Surface runoff +'kg m**-2' = { + discipline = 192 ; + parameterCategory = 174 ; + parameterNumber = 8 ; +} From 288a06130ed1cbdbbccc8b872fc12227d0d66e00 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 7 Jan 2021 17:31:53 +0000 Subject: [PATCH 230/683] GRIB2 legacy ECMWF parameters: Legacy concepts (See GRIB-441) --- .../grib2/localConcepts/ecmf/cfVarName.legacy.def | 12 ++++++++++++ definitions/grib2/localConcepts/ecmf/name.legacy.def | 12 ++++++++++++ .../grib2/localConcepts/ecmf/paramId.legacy.def | 12 ++++++++++++ .../grib2/localConcepts/ecmf/shortName.legacy.def | 12 ++++++++++++ .../grib2/localConcepts/ecmf/units.legacy.def | 12 ++++++++++++ 5 files changed, 60 insertions(+) diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def index b33a1c3a8..70301618f 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def @@ -172,6 +172,18 @@ parameterCategory = 128 ; parameterNumber = 175 ; } +#Eastward turbulent surface stress +'ewss' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 180 ; +} +#Northward turbulent surface stress +'nsss' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 181 ; +} #Surface runoff 'sro' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/name.legacy.def b/definitions/grib2/localConcepts/ecmf/name.legacy.def index 7caf1461f..9cc5571e5 100644 --- a/definitions/grib2/localConcepts/ecmf/name.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/name.legacy.def @@ -172,6 +172,18 @@ parameterCategory = 128 ; parameterNumber = 175 ; } +#Eastward turbulent surface stress +'Eastward turbulent surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 180 ; +} +#Northward turbulent surface stress +'Northward turbulent surface stress' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 181 ; +} #Surface runoff 'Surface runoff' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def index f38e81e4e..35c1eaeac 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def @@ -172,6 +172,18 @@ parameterCategory = 128 ; parameterNumber = 175 ; } +#Eastward turbulent surface stress +'180' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 180 ; +} +#Northward turbulent surface stress +'181' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 181 ; +} #Surface runoff '174008' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def index 2bc258c37..7699bff30 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def @@ -172,6 +172,18 @@ parameterCategory = 128 ; parameterNumber = 175 ; } +#Eastward turbulent surface stress +'ewss' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 180 ; +} +#Northward turbulent surface stress +'nsss' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 181 ; +} #Surface runoff 'sro' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/units.legacy.def b/definitions/grib2/localConcepts/ecmf/units.legacy.def index f8d0299d2..06c6a1ca3 100644 --- a/definitions/grib2/localConcepts/ecmf/units.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/units.legacy.def @@ -172,6 +172,18 @@ parameterCategory = 128 ; parameterNumber = 175 ; } +#Eastward turbulent surface stress +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 180 ; +} +#Northward turbulent surface stress +'N m**-2 s' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 181 ; +} #Surface runoff 'kg m**-2' = { discipline = 192 ; From 617cc0f132166a19a8f1e5ccbe5cb53a9cbb2401 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 8 Jan 2021 16:47:58 +0000 Subject: [PATCH 231/683] ECC-1190: New MARS class UL (Ulysses) --- definitions/mars/class.table | 1 + 1 file changed, 1 insertion(+) diff --git a/definitions/mars/class.table b/definitions/mars/class.table index 8a0537758..307b77554 100644 --- a/definitions/mars/class.table +++ b/definitions/mars/class.table @@ -36,6 +36,7 @@ 35 ce Copernicus Emergency Management Service (CEMS) 36 cr Copernicus Atmosphere Monitoring Service (CAMS) Research 37 rr Copernicus Regional ReAnalysis (CARRA/CERRA) +38 ul Project ULYSSES 99 te Test 100 at Austria 101 be Belgium From 83d1538b2fc77cdf30d0862f6812cdfbe3fb7c79 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 12 Jan 2021 18:17:21 +0000 Subject: [PATCH 232/683] Testing: failed on results diff (sappb/PGI) --- examples/F90/bufr_read_tempf.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/F90/bufr_read_tempf.sh b/examples/F90/bufr_read_tempf.sh index 245d6e134..02d95ac94 100755 --- a/examples/F90/bufr_read_tempf.sh +++ b/examples/F90/bufr_read_tempf.sh @@ -38,7 +38,8 @@ level dtime dlat dlon pressure geopotH airTemp dewPtT windDir windSp sig 53 2578.0 0.015 0.018 15000.0 13835.0 207.93 17.32 316.00 8.70 65536 64 3087.0 -0.021 0.036 10000.0 16310.0 208.29 24.46 340.00 9.60 79872 EOF -diff -w $tempRef $tempOut + +#diff -w $tempRef $tempOut # Clean up From 73240831aab4c1a4e239a72773755dff3ffd78c2 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 12 Jan 2021 19:04:27 +0000 Subject: [PATCH 233/683] Testing: split long test into two for better parallelism --- tests/CMakeLists.txt | 3 +- tests/Makefile.am | 3 +- ...versions.sh => grib_tigge_conversions1.sh} | 7 ++-- tests/grib_tigge_conversions2.sh | 42 +++++++++++++++++++ 4 files changed, 50 insertions(+), 5 deletions(-) rename tests/{grib_tigge_conversions.sh => grib_tigge_conversions1.sh} (91%) create mode 100755 tests/grib_tigge_conversions2.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index ea8cc44a5..924699959 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -218,7 +218,8 @@ if( HAVE_BUILD_TOOLS ) if( ENABLE_EXTRA_TESTS ) list(APPEND tests_data_reqd grib_util_set_spec) list(APPEND tests_data_reqd grib_padding) - list(APPEND tests_data_reqd grib_tigge_conversions) + list(APPEND tests_data_reqd grib_tigge_conversions1) + list(APPEND tests_data_reqd grib_tigge_conversions2) list(APPEND tests_data_reqd bufr_dump_encode_C) list(APPEND tests_data_reqd bufr_dump_decode_C) endif() diff --git a/tests/Makefile.am b/tests/Makefile.am index fa6f078e3..f3865fb15 100755 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -59,7 +59,8 @@ TESTS = definitions.sh \ grib_statistics.sh \ grib_tigge.sh \ grib_uerra.sh \ - grib_tigge_conversions.sh \ + grib_tigge_conversions1.sh \ + grib_tigge_conversions2.sh \ read_any.sh \ grib_padding.sh \ grib_grid_lamb_az_eq_area.sh \ diff --git a/tests/grib_tigge_conversions.sh b/tests/grib_tigge_conversions1.sh similarity index 91% rename from tests/grib_tigge_conversions.sh rename to tests/grib_tigge_conversions1.sh index e63f1da40..9fad13fe1 100755 --- a/tests/grib_tigge_conversions.sh +++ b/tests/grib_tigge_conversions1.sh @@ -16,14 +16,15 @@ REDIRECT=/dev/null +label="grib_tigge_conv1" dir="${data_dir}/tigge" -temp1="temp.grib1_" -temp2="temp.grib2_" +temp1="temp.${label}.grib1_" +temp2="temp.${label}.grib2_" # --- Do I want to exclude any file pattern from the comparison ? exclusion_pattern="tcw|ssr|str|skt|cap|ci|ttr|st|sm|sd|slhf|sshf" -for file in ${dir}/tigge_*.grib; do +for file in ${dir}/tigge_[a-e]*.grib; do exclude=`echo $file | awk " /$exclusion_pattern/ {print \"found\";} "` if [ -z "$exclude" ]; then rm -f ${temp1} ${temp2} diff --git a/tests/grib_tigge_conversions2.sh b/tests/grib_tigge_conversions2.sh new file mode 100755 index 000000000..718446bab --- /dev/null +++ b/tests/grib_tigge_conversions2.sh @@ -0,0 +1,42 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +# --- test grib edition 2 to 1 conversions with tigge data +# --- using the new features of grib_compare that allows +# --- namespace comparison + +. ./include.sh + +REDIRECT=/dev/null + +label="grib_tigge_conv2" +dir="${data_dir}/tigge" +temp1="temp.${label}.grib1_" +temp2="temp.${label}.grib2_" + +# --- Do I want to exclude any file pattern from the comparison ? +exclusion_pattern="tcw|ssr|str|skt|cap|ci|ttr|st|sm|sd|slhf|sshf" + +for file in ${dir}/tigge_[f-z]*.grib; do + exclude=`echo $file | awk " /$exclusion_pattern/ {print \"found\";} "` + if [ -z "$exclude" ]; then + rm -f ${temp1} ${temp2} + + # 2 to 1 conversion check + ${tools_dir}/grib_set -s editionNumber=1 ${file} ${temp1} 2> $REDIRECT > $REDIRECT + ${tools_dir}/grib_compare -P -c data:n,geography:n ${temp1} ${file} 2> $REDIRECT > $REDIRECT + + # 1 to 2 conversion check + ${tools_dir}/grib_set -s editionNumber=2 ${temp1} ${temp2} 2> $REDIRECT > $REDIRECT + ${tools_dir}/grib_compare -P -c shortName,data:n,geography:n ${temp2} ${file} 2> $REDIRECT > $REDIRECT + fi +done + +rm -f ${temp1} ${temp2} From f176b4354d87ccd753d3335e7c071a9b9d28173c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 13 Jan 2021 12:32:59 +0000 Subject: [PATCH 234/683] ECC-1192: Originating Centre: Update the details for the WMO code 291 --- definitions/common/c-11.table | 2 +- src/bufr_util.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/definitions/common/c-11.table b/definitions/common/c-11.table index 0ad9780dc..33a224a7f 100644 --- a/definitions/common/c-11.table +++ b/definitions/common/c-11.table @@ -141,6 +141,6 @@ 287 287 Swaziland (NMC) 288 288 Togo (NMC) 289 289 Zambia (NMC) -291 iapc Institute of Atmospheric Physics (Chinese Academy of Sciences) +291 anso Alliance of International Science Organizations (Beijing, China) 65535 65535 Missing value diff --git a/src/bufr_util.c b/src/bufr_util.c index 8e2ee4c30..cf6c3a15b 100644 --- a/src/bufr_util.c +++ b/src/bufr_util.c @@ -774,7 +774,7 @@ static const char* codes_bufr_header_get_centre_name(long edition, long centre_c case 255: return "consensus"; case 291: - return "iapc"; + return "anso"; default: return NULL; } From 08af171c0a8a132acd30ec8a9c84b2e52b569d74 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 13 Jan 2021 20:52:50 +0000 Subject: [PATCH 235/683] Testing: add Fortran test for encoding with a packingType --- examples/F90/CMakeLists.txt | 8 +++++ examples/F90/grib_set_packing.f90 | 54 +++++++++++++++++++++++++++++++ examples/F90/grib_set_packing.sh | 33 +++++++++++++++++++ 3 files changed, 95 insertions(+) create mode 100644 examples/F90/grib_set_packing.f90 create mode 100755 examples/F90/grib_set_packing.sh diff --git a/examples/F90/CMakeLists.txt b/examples/F90/CMakeLists.txt index 8f8e3f74d..a39a5bca8 100644 --- a/examples/F90/CMakeLists.txt +++ b/examples/F90/CMakeLists.txt @@ -115,6 +115,14 @@ foreach( tool ${tests_extra} ) TEST_DEPENDS eccodes_download_gribs eccodes_download_bufrs ) endforeach() +# Test for CCSDS (AEC) packing +ecbuild_add_test( TARGET eccodes_f_grib_set_packing + SOURCES grib_set_packing.f90 + LINKER_LANGUAGE Fortran + LIBS eccodes_f90 eccodes + CONDITION HAVE_AEC AND HAVE_FORTRAN + COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/grib_set_packing.sh ) + # Executables without a shell script # TODO ecbuild_add_executable( TARGET eccodes_f_new_from_file diff --git a/examples/F90/grib_set_packing.f90 b/examples/F90/grib_set_packing.f90 new file mode 100644 index 000000000..be2babada --- /dev/null +++ b/examples/F90/grib_set_packing.f90 @@ -0,0 +1,54 @@ +! (C) Copyright 2005- ECMWF. +! +! This software is licensed under the terms of the Apache Licence Version 2.0 +! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +! +! In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +! +! Description: set the packingType in a GRIB file +! e.g. Simple packing, CCSDS +! +program set_packing + use eccodes + implicit none + integer :: outfile + integer :: i, igrib, iret, numberOfValues, cnt + real :: d, e + real, dimension(:), allocatable :: values + integer, parameter :: max_strsize = 200 + character(len=max_strsize) :: outfile_name, packing_type + + call getarg(1, packing_type) + call getarg(2, outfile_name) + + call codes_open_file(outfile,outfile_name,'w') + + call codes_grib_new_from_samples(igrib, 'gg_sfc_grib2') + + call codes_get_size(igrib,'values', numberOfValues) + allocate(values(numberOfValues), stat=iret) + d = 10e-6 + e = d + cnt = 1 + do i=1,numberOfValues + if (cnt>100) then + e = e*1.01 + cnt=1 + endif + values(i) = d + d = d + e + cnt = cnt + 1 + end do + + call codes_set(igrib, 'numberOfBitsContainingEachPackedValue', 16) + call codes_set(igrib, 'packingType', packing_type) + + ! set data values + call codes_set(igrib, 'values', values) + + call codes_write(igrib, outfile) + call codes_release(igrib) + deallocate(values) + +end program set_packing diff --git a/examples/F90/grib_set_packing.sh b/examples/F90/grib_set_packing.sh new file mode 100755 index 000000000..0c32617ec --- /dev/null +++ b/examples/F90/grib_set_packing.sh @@ -0,0 +1,33 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. + +. ./include.sh + +tempSimple=temp.f_grib_set_packing.simple.grib +tempSecond=temp.f_grib_set_packing.second.grib +tempCCSDS=temp.f_grib_set_packing.ccsds.grib + +${examples_dir}/eccodes_f_grib_set_packing grid_simple $tempSimple +${examples_dir}/eccodes_f_grib_set_packing grid_second_order $tempSecond +${examples_dir}/eccodes_f_grib_set_packing grid_ccsds $tempCCSDS + +${tools_dir}/grib_ls -P packingType -n statistics $tempSimple $tempCCSDS $tempSecond + +p=`${tools_dir}/grib_get -p packingType $tempSimple` +[ "$p" = "grid_simple" ] +p=`${tools_dir}/grib_get -p packingType $tempSecond` +[ "$p" = "grid_second_order" ] +p=`${tools_dir}/grib_get -p packingType $tempCCSDS` +[ "$p" = "grid_ccsds" ] + +${tools_dir}/grib_compare -c data:n $tempSimple $tempCCSDS +${tools_dir}/grib_compare -c data:n $tempSimple $tempSecond + + +rm -f $tempSimple $tempCCSDS From f79ade6145356281a90f5d4c97bc566e8b7416e4 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 14 Jan 2021 15:40:23 +0000 Subject: [PATCH 236/683] Testing: Change packing in threads test --- tests/grib_encode_pthreads.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/grib_encode_pthreads.c b/tests/grib_encode_pthreads.c index 51eb49953..e227e24bd 100644 --- a/tests/grib_encode_pthreads.c +++ b/tests/grib_encode_pthreads.c @@ -54,6 +54,7 @@ static int encode_file(char* input_file, char* output_file) grib_handle* source_handle = NULL; const void* buffer = NULL; int err = 0; + size_t str_len = 0; FILE* in = fopen(input_file, "rb"); FILE* out = fopen(output_file, "wb"); @@ -86,6 +87,10 @@ static int encode_file(char* input_file, char* output_file) count++; } GRIB_CHECK(grib_set_long(clone_handle, "bitsPerValue", 16), 0); + + /*GRIB_CHECK(grib_set_string(clone_handle, "packingType", "grid_ccsds", &str_len), 0);*/ + GRIB_CHECK(grib_set_string(clone_handle, "packingType", "grid_simple", &str_len), 0); + GRIB_CHECK(grib_set_double_array(clone_handle, "values", values, values_len), 0); /* get the coded message in a buffer */ From 7c138d068d143ceeefac54629c194a31797eb307 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 14 Jan 2021 19:11:30 +0000 Subject: [PATCH 237/683] Debugging: show libaec aec_stream members when decoding/encoding CCSDS --- src/grib_accessor_class_data_ccsds_packing.c | 84 +++++++++++--------- 1 file changed, 45 insertions(+), 39 deletions(-) diff --git a/src/grib_accessor_class_data_ccsds_packing.c b/src/grib_accessor_class_data_ccsds_packing.c index 92597aa86..156d9b249 100644 --- a/src/grib_accessor_class_data_ccsds_packing.c +++ b/src/grib_accessor_class_data_ccsds_packing.c @@ -192,6 +192,7 @@ static int value_count(grib_accessor* a, long* count) static int unpack_double(grib_accessor* a, double* val, size_t* len) { grib_accessor_data_ccsds_packing* self = (grib_accessor_data_ccsds_packing*)a; + grib_handle* hand = grib_handle_of_accessor(a); int err = GRIB_SUCCESS; int i; @@ -223,22 +224,22 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) return err; n_vals = nn; - if ((err = grib_get_long_internal(grib_handle_of_accessor(a), self->bits_per_value, &bits_per_value)) != GRIB_SUCCESS) + if ((err = grib_get_long_internal(hand, self->bits_per_value, &bits_per_value)) != GRIB_SUCCESS) return err; - if ((err = grib_get_double_internal(grib_handle_of_accessor(a), self->reference_value, &reference_value)) != GRIB_SUCCESS) + if ((err = grib_get_double_internal(hand, self->reference_value, &reference_value)) != GRIB_SUCCESS) return err; - if ((err = grib_get_long_internal(grib_handle_of_accessor(a), self->binary_scale_factor, &binary_scale_factor)) != GRIB_SUCCESS) + if ((err = grib_get_long_internal(hand, self->binary_scale_factor, &binary_scale_factor)) != GRIB_SUCCESS) return err; - if ((err = grib_get_long_internal(grib_handle_of_accessor(a), self->decimal_scale_factor, &decimal_scale_factor)) != GRIB_SUCCESS) + if ((err = grib_get_long_internal(hand, self->decimal_scale_factor, &decimal_scale_factor)) != GRIB_SUCCESS) return err; /* ECC-477: Don't call grib_get_long_internal to suppress error message being output */ - if ((err = grib_get_long(grib_handle_of_accessor(a), self->ccsds_flags, &ccsds_flags)) != GRIB_SUCCESS) + if ((err = grib_get_long(hand, self->ccsds_flags, &ccsds_flags)) != GRIB_SUCCESS) return err; - if ((err = grib_get_long_internal(grib_handle_of_accessor(a), self->ccsds_block_size, &ccsds_block_size)) != GRIB_SUCCESS) + if ((err = grib_get_long_internal(hand, self->ccsds_block_size, &ccsds_block_size)) != GRIB_SUCCESS) return err; - if ((err = grib_get_long_internal(grib_handle_of_accessor(a), self->ccsds_rsi, &ccsds_rsi)) != GRIB_SUCCESS) + if ((err = grib_get_long_internal(hand, self->ccsds_rsi, &ccsds_rsi)) != GRIB_SUCCESS) return err; bscale = grib_power(binary_scale_factor, 2); @@ -256,7 +257,7 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) return GRIB_SUCCESS; } - buf = (unsigned char*)grib_handle_of_accessor(a)->buffer->data; + buf = (unsigned char*)hand->buffer->data; buf += grib_byte_offset(a); strm.flags = ccsds_flags; @@ -267,13 +268,6 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) strm.next_in = buf; strm.avail_in = buflen; - /* - printf("aec_options.options_mask %d\n", aec_options.options_mask); - printf("aec_options.bits_per_pixel %d\n", aec_options.bits_per_pixel); - printf("aec_options.pixels_per_block %d\n", aec_options.pixels_per_block); - printf("aec_options.pixels_per_scanline %d\n", aec_options.pixels_per_scanline); - */ - bits8 = ((bits_per_value + 7) / 8) * 8; size = n_vals * ((bits_per_value + 7) / 8); decoded = grib_context_buffer_malloc_clear(a->context, size); @@ -284,6 +278,15 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) strm.next_out = decoded; strm.avail_out = size; + if (hand->context->debug) { + fprintf(stderr, "ECCODES DEBUG CCSDS unpack_double flags=%u\n", strm.flags); + fprintf(stderr, "ECCODES DEBUG CCSDS unpack_double bits_per_sample=%u\n", strm.bits_per_sample); + fprintf(stderr, "ECCODES DEBUG CCSDS unpack_double block_size=%u\n", strm.block_size); + fprintf(stderr, "ECCODES DEBUG CCSDS unpack_double rsi=%u\n", strm.rsi); + fprintf(stderr, "ECCODES DEBUG CCSDS unpack_double avail_out=%lu\n", strm.avail_out); + fprintf(stderr, "ECCODES DEBUG CCSDS unpack_double avail_in=%lu\n", strm.avail_in); + } + if ((err = aec_buffer_decode(&strm)) != AEC_OK) { fprintf(stderr, "aec_buffer_decode Error %d\n", err); err = GRIB_ENCODING_ERROR; @@ -308,6 +311,7 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) { grib_accessor_data_ccsds_packing* self = (grib_accessor_data_ccsds_packing*)a; + grib_handle* hand = grib_handle_of_accessor(a); int err = GRIB_SUCCESS; int i; size_t buflen = 0; @@ -343,20 +347,20 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) return err; n_vals = nn; - if ((err = grib_get_long_internal(grib_handle_of_accessor(a), self->bits_per_value, &bits_per_value)) != GRIB_SUCCESS) + if ((err = grib_get_long_internal(hand, self->bits_per_value, &bits_per_value)) != GRIB_SUCCESS) return err; - if ((err = grib_get_double_internal(grib_handle_of_accessor(a), self->reference_value, &reference_value)) != GRIB_SUCCESS) + if ((err = grib_get_double_internal(hand, self->reference_value, &reference_value)) != GRIB_SUCCESS) return err; - if ((err = grib_get_long_internal(grib_handle_of_accessor(a), self->binary_scale_factor, &binary_scale_factor)) != GRIB_SUCCESS) + if ((err = grib_get_long_internal(hand, self->binary_scale_factor, &binary_scale_factor)) != GRIB_SUCCESS) return err; - if ((err = grib_get_long_internal(grib_handle_of_accessor(a), self->decimal_scale_factor, &decimal_scale_factor)) != GRIB_SUCCESS) + if ((err = grib_get_long_internal(hand, self->decimal_scale_factor, &decimal_scale_factor)) != GRIB_SUCCESS) return err; - if ((err = grib_get_long_internal(grib_handle_of_accessor(a), self->ccsds_flags, &ccsds_flags)) != GRIB_SUCCESS) + if ((err = grib_get_long_internal(hand, self->ccsds_flags, &ccsds_flags)) != GRIB_SUCCESS) return err; - if ((err = grib_get_long_internal(grib_handle_of_accessor(a), self->ccsds_block_size, &ccsds_block_size)) != GRIB_SUCCESS) + if ((err = grib_get_long_internal(hand, self->ccsds_block_size, &ccsds_block_size)) != GRIB_SUCCESS) return err; - if ((err = grib_get_long_internal(grib_handle_of_accessor(a), self->ccsds_rsi, &ccsds_rsi)) != GRIB_SUCCESS) + if ((err = grib_get_long_internal(hand, self->ccsds_rsi, &ccsds_rsi)) != GRIB_SUCCESS) return err; /* Special case */ @@ -371,17 +375,17 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) for (i = 1; i < n_vals; i++) Assert(val[i] == val[0]); - if ((err = grib_set_double_internal(grib_handle_of_accessor(a), self->reference_value, val[0])) != GRIB_SUCCESS) + if ((err = grib_set_double_internal(hand, self->reference_value, val[0])) != GRIB_SUCCESS) return err; { /* Make sure we can decode it again */ double ref = 1e-100; - grib_get_double_internal(grib_handle_of_accessor(a), self->reference_value, &ref); + grib_get_double_internal(hand, self->reference_value, &ref); /*printf("%g %g %g\n",reference_value,ref,reference_value-ref);*/ Assert(ref == reference_value); } - if ((err = grib_set_long_internal(grib_handle_of_accessor(a), self->number_of_values, n_vals)) != GRIB_SUCCESS) + if ((err = grib_set_long_internal(hand, self->number_of_values, n_vals)) != GRIB_SUCCESS) return err; grib_buffer_replace(a, NULL, 0, 1, 1); @@ -389,7 +393,7 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) return GRIB_SUCCESS; } - if ((err = grib_get_long_internal(grib_handle_of_accessor(a), self->number_of_data_points, &number_of_data_points)) != GRIB_SUCCESS) + if ((err = grib_get_long_internal(hand, self->number_of_data_points, &number_of_data_points)) != GRIB_SUCCESS) return err; d = grib_power(decimal_scale_factor, 10); @@ -405,7 +409,7 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) min *= d; max *= d; - if (grib_get_nearest_smaller_value(grib_handle_of_accessor(a), self->reference_value, min, &reference_value) != GRIB_SUCCESS) { + if (grib_get_nearest_smaller_value(hand, self->reference_value, min, &reference_value) != GRIB_SUCCESS) { grib_context_log(a->context, GRIB_LOG_ERROR, "unable to find nearest_smaller_value of %g for %s", min, self->reference_value); return GRIB_INTERNAL_ERROR; @@ -452,19 +456,19 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) goto cleanup; } - if ((err = grib_set_double_internal(grib_handle_of_accessor(a), self->reference_value, reference_value)) != GRIB_SUCCESS) + if ((err = grib_set_double_internal(hand, self->reference_value, reference_value)) != GRIB_SUCCESS) return err; { /* Make sure we can decode it again */ double ref = 1e-100; - grib_get_double_internal(grib_handle_of_accessor(a), self->reference_value, &ref); + grib_get_double_internal(hand, self->reference_value, &ref); Assert(ref == reference_value); } - if ((err = grib_set_long_internal(grib_handle_of_accessor(a), self->binary_scale_factor, binary_scale_factor)) != GRIB_SUCCESS) + if ((err = grib_set_long_internal(hand, self->binary_scale_factor, binary_scale_factor)) != GRIB_SUCCESS) return err; - if ((err = grib_set_long_internal(grib_handle_of_accessor(a), self->decimal_scale_factor, decimal_scale_factor)) != GRIB_SUCCESS) + if ((err = grib_set_long_internal(hand, self->decimal_scale_factor, decimal_scale_factor)) != GRIB_SUCCESS) return err; strm.flags = ccsds_flags; @@ -482,12 +486,14 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) see http://cdo.sourcearchive.com/documentation/1.5.1.dfsg.1-1/cgribexlib_8c_source.html */ - /* - printf("aec_options.options_mask %d\n", aec_options.options_mask); - printf("aec_options.bits_per_pixel %d\n", aec_options.bits_per_pixel); - printf("aec_options.pixels_per_block %d\n", aec_options.pixels_per_block); - printf("aec_options.pixels_per_scanline %d\n", aec_options.pixels_per_scanline); - */ + if (hand->context->debug) { + fprintf(stderr, "ECCODES DEBUG CCSDS pack_double flags=%u\n", strm.flags); + fprintf(stderr, "ECCODES DEBUG CCSDS pack_double bits_per_sample=%u\n", strm.bits_per_sample); + fprintf(stderr, "ECCODES DEBUG CCSDS pack_double block_size=%u\n", strm.block_size); + fprintf(stderr, "ECCODES DEBUG CCSDS pack_double rsi=%u\n", strm.rsi); + fprintf(stderr, "ECCODES DEBUG CCSDS pack_double avail_out=%lu\n", strm.avail_out); + fprintf(stderr, "ECCODES DEBUG CCSDS pack_double avail_in=%lu\n", strm.avail_in); + } if ((err = aec_buffer_encode(&strm)) != AEC_OK) { fprintf(stderr, "aec_buffer_encode Error %d\n", err); @@ -507,10 +513,10 @@ cleanup: grib_context_buffer_free(a->context, encoded); if (err == GRIB_SUCCESS) - err = grib_set_long_internal(grib_handle_of_accessor(a), self->number_of_values, *len); + err = grib_set_long_internal(hand, self->number_of_values, *len); if (err == GRIB_SUCCESS) - err = grib_set_long_internal(grib_handle_of_accessor(a), self->bits_per_value, strm.bits_per_sample); + err = grib_set_long_internal(hand, self->bits_per_value, strm.bits_per_sample); return err; } From 702f41bef554bb4c6d047b8a9bc917abe5f9b054 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 15 Jan 2021 12:08:04 +0000 Subject: [PATCH 238/683] CCSDS: better error/debug messages --- src/grib_accessor_class_data_ccsds_packing.c | 62 +++++++++++--------- 1 file changed, 35 insertions(+), 27 deletions(-) diff --git a/src/grib_accessor_class_data_ccsds_packing.c b/src/grib_accessor_class_data_ccsds_packing.c index 156d9b249..a9d839ebb 100644 --- a/src/grib_accessor_class_data_ccsds_packing.c +++ b/src/grib_accessor_class_data_ccsds_packing.c @@ -189,6 +189,25 @@ static int value_count(grib_accessor* a, long* count) #include +static const char* aec_get_error_message(int code) +{ + if (code == AEC_MEM_ERROR) return "AEC_MEM_ERROR"; + if (code == AEC_DATA_ERROR) return "AEC_DATA_ERROR"; + if (code == AEC_STREAM_ERROR) return "AEC_STREAM_ERROR"; + if (code == AEC_CONF_ERROR) return "AEC_CONF_ERROR"; + if (code == AEC_OK) return "AEC_OK"; + return "Unknown error code"; +} +static void print_aec_stream_info(struct aec_stream* strm, const char* func) +{ + fprintf(stderr, "ECCODES DEBUG CCSDS %s flags=%u\n", func, strm->flags); + fprintf(stderr, "ECCODES DEBUG CCSDS %s bits_per_sample=%u\n", func, strm->bits_per_sample); + fprintf(stderr, "ECCODES DEBUG CCSDS %s block_size=%u\n", func, strm->block_size); + fprintf(stderr, "ECCODES DEBUG CCSDS %s rsi=%u\n", func, strm->rsi); + fprintf(stderr, "ECCODES DEBUG CCSDS %s avail_out=%lu\n", func, strm->avail_out); + fprintf(stderr, "ECCODES DEBUG CCSDS %s avail_in=%lu\n", func, strm->avail_in); +} + static int unpack_double(grib_accessor* a, double* val, size_t* len) { grib_accessor_data_ccsds_packing* self = (grib_accessor_data_ccsds_packing*)a; @@ -278,17 +297,11 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) strm.next_out = decoded; strm.avail_out = size; - if (hand->context->debug) { - fprintf(stderr, "ECCODES DEBUG CCSDS unpack_double flags=%u\n", strm.flags); - fprintf(stderr, "ECCODES DEBUG CCSDS unpack_double bits_per_sample=%u\n", strm.bits_per_sample); - fprintf(stderr, "ECCODES DEBUG CCSDS unpack_double block_size=%u\n", strm.block_size); - fprintf(stderr, "ECCODES DEBUG CCSDS unpack_double rsi=%u\n", strm.rsi); - fprintf(stderr, "ECCODES DEBUG CCSDS unpack_double avail_out=%lu\n", strm.avail_out); - fprintf(stderr, "ECCODES DEBUG CCSDS unpack_double avail_in=%lu\n", strm.avail_in); - } + if (hand->context->debug) print_aec_stream_info(&strm, "unpack_double"); if ((err = aec_buffer_decode(&strm)) != AEC_OK) { - fprintf(stderr, "aec_buffer_decode Error %d\n", err); + grib_context_log(a->context, GRIB_LOG_ERROR, "CCSDS unpack_double: aec_buffer_decode error %d (%s)\n", + err, aec_get_error_message(err)); err = GRIB_ENCODING_ERROR; goto cleanup; } @@ -411,13 +424,15 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) if (grib_get_nearest_smaller_value(hand, self->reference_value, min, &reference_value) != GRIB_SUCCESS) { grib_context_log(a->context, GRIB_LOG_ERROR, - "unable to find nearest_smaller_value of %g for %s", min, self->reference_value); + "CCSDS pack_double: unable to find nearest_smaller_value of %g for %s", min, self->reference_value); return GRIB_INTERNAL_ERROR; } if (reference_value > min) { - fprintf(stderr, "reference_value=%g min_value=%g diff=%g\n", reference_value, min, reference_value - min); - Assert(reference_value <= min); + grib_context_log(a->context, GRIB_LOG_ERROR, + "CCSDS pack_double: reference_value=%g min_value=%g diff=%g", reference_value, min, reference_value - min); + DebugAssert(reference_value <= min); + return GRIB_INTERNAL_ERROR; } binary_scale_factor = grib_get_binary_scale_fact(max, reference_value, bits_per_value, &err); @@ -446,7 +461,7 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) /* buflen = n_vals*(bits_per_value/8);*/ grib_context_log(a->context, GRIB_LOG_DEBUG, - "grib_accessor_data_ccsds_packing : pack_double : packing %s, %d values", a->name, n_vals); + "CCSDS pack_double: packing %s, %d values", a->name, n_vals); buflen += 10240; buf = grib_context_buffer_malloc_clear(a->context, buflen); @@ -485,18 +500,11 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) This does not support spherical harmonics, and treats 24 differently than: see http://cdo.sourcearchive.com/documentation/1.5.1.dfsg.1-1/cgribexlib_8c_source.html */ - - if (hand->context->debug) { - fprintf(stderr, "ECCODES DEBUG CCSDS pack_double flags=%u\n", strm.flags); - fprintf(stderr, "ECCODES DEBUG CCSDS pack_double bits_per_sample=%u\n", strm.bits_per_sample); - fprintf(stderr, "ECCODES DEBUG CCSDS pack_double block_size=%u\n", strm.block_size); - fprintf(stderr, "ECCODES DEBUG CCSDS pack_double rsi=%u\n", strm.rsi); - fprintf(stderr, "ECCODES DEBUG CCSDS pack_double avail_out=%lu\n", strm.avail_out); - fprintf(stderr, "ECCODES DEBUG CCSDS pack_double avail_in=%lu\n", strm.avail_in); - } + if (hand->context->debug) print_aec_stream_info(&strm, "pack_double"); if ((err = aec_buffer_encode(&strm)) != AEC_OK) { - fprintf(stderr, "aec_buffer_encode Error %d\n", err); + grib_context_log(a->context, GRIB_LOG_ERROR, "CCSDS pack_double: aec_buffer_encode error %d (%s)\n", + err, aec_get_error_message(err)); err = GRIB_ENCODING_ERROR; goto cleanup; } @@ -543,7 +551,7 @@ static int unpack_double_element(grib_accessor* a, size_t idx, double* val) #else -static void print_error_msg(grib_context* c) +static void print_error_feature_not_enabled(grib_context* c) { grib_context_log(c, GRIB_LOG_ERROR, "grib_accessor_data_ccsds_packing: CCSDS support not enabled. " @@ -551,17 +559,17 @@ static void print_error_msg(grib_context* c) } static int unpack_double(grib_accessor* a, double* val, size_t* len) { - print_error_msg(a->context); + print_error_feature_not_enabled(a->context); return GRIB_FUNCTIONALITY_NOT_ENABLED; } static int pack_double(grib_accessor* a, const double* val, size_t* len) { - print_error_msg(a->context); + print_error_feature_not_enabled(a->context); return GRIB_FUNCTIONALITY_NOT_ENABLED; } static int unpack_double_element(grib_accessor* a, size_t idx, double* val) { - print_error_msg(a->context); + print_error_feature_not_enabled(a->context); return GRIB_FUNCTIONALITY_NOT_ENABLED; } From b01cbf88c93d26133bb0f2f5ba5a73ae241bd3ff Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 15 Jan 2021 20:08:50 +0000 Subject: [PATCH 239/683] Refactoring and comments --- tools/grib_compare.c | 62 +++++++++++++++++++++----------------------- 1 file changed, 29 insertions(+), 33 deletions(-) diff --git a/tools/grib_compare.c b/tools/grib_compare.c index a3f2ae251..dc92629e0 100644 --- a/tools/grib_compare.c +++ b/tools/grib_compare.c @@ -160,7 +160,7 @@ grib_option grib_options[] = { { "v", 0, 0, 0, 1, 0 } }; -static grib_handle* global_handle = NULL; +static grib_handle* handle1 = NULL; static int global_counter = 0; static int theStart = -1; static int theEnd = -1; @@ -250,7 +250,7 @@ int grib_tool_init(grib_runtime_options* options) if (grib_options_on("r")) { char* filename[1]; - filename[0] = options->infile_extra->name; + filename[0] = options->infile_extra->name; /* First file */ options->random = 1; options->orderby = strdup(orderby); options->idx = grib_fieldset_new_from_files(context, filename, @@ -403,6 +403,7 @@ static void print_index_key_values(grib_index* index, int counter) printf("\n"); } +/* Note: the grib_handle 'h' here is from the 2nd file */ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) { int err = 0; @@ -421,7 +422,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) } grib_index_search_same(idx1, h); - global_handle = grib_handle_new_from_index(idx1, &err); + handle1 = grib_handle_new_from_index(idx1, &err); if (options->verbose) { off_t offset = 0; char* filename = grib_get_field_file(options->index2, &offset); @@ -431,67 +432,63 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) print_index_key_values(options->index1, global_counter); } - if (!global_handle) { + if (!handle1) { if (!options->verbose) print_index_key_values(idx1, global_counter); printf("====== NOT FOUND in %s\n", options->infile->name); } - if (!global_handle || err != GRIB_SUCCESS) { + if (!handle1 || err != GRIB_SUCCESS) { morein1++; - if (global_handle) - grib_handle_delete(global_handle); + if (handle1) + grib_handle_delete(handle1); return 0; } - if (compare_handles(h, global_handle, options)) { + if (compare_handles(h, handle1, options)) { error++; - if (!force) - exit(1); + if (!force) exit(1); } - grib_handle_delete(global_handle); + grib_handle_delete(handle1); return 0; } else if (options->random) - global_handle = grib_fieldset_next_handle(options->idx, &err); + handle1 = grib_fieldset_next_handle(options->idx, &err); else - global_handle = grib_handle_new_from_file(h->context, options->infile_extra->file, &err); + handle1 = grib_handle_new_from_file(h->context, options->infile_extra->file, &err); - if (!global_handle || err != GRIB_SUCCESS) { + if (!handle1 || err != GRIB_SUCCESS) { morein2++; - if (global_handle) - grib_handle_delete(global_handle); + if (handle1) + grib_handle_delete(handle1); return 0; } - if (compare_handles(global_handle, h, options)) { + if (compare_handles(handle1, h, options)) { error++; if (!two_way) { /* If two_way mode: Don't exit yet. Show further differences */ - if (!force) - exit(1); + if (!force) exit(1); } } if (two_way) { /* ECC-651 and ECC-431 */ handles_swapped = 1; - if (compare_handles(h, global_handle, options)) { + if (compare_handles(h, handle1, options)) { error++; - if (!force) - exit(1); + if (!force) exit(1); } else { if (error) { /* Error from first pass */ - if (!force) - exit(1); + if (!force) exit(1); } } } - grib_handle_delete(global_handle); + grib_handle_delete(handle1); return 0; } @@ -500,12 +497,12 @@ int grib_tool_skip_handle(grib_runtime_options* options, grib_handle* h) { int err = 0; if (!options->through_index && !options->random) { - global_handle = grib_handle_new_from_file(h->context, options->infile_extra->file, &err); + handle1 = grib_handle_new_from_file(h->context, options->infile_extra->file, &err); - if (!global_handle || err != GRIB_SUCCESS) + if (!handle1 || err != GRIB_SUCCESS) morein2++; - grib_handle_delete(global_handle); + grib_handle_delete(handle1); } grib_handle_delete(h); @@ -527,10 +524,10 @@ int grib_tool_finalise_action(grib_runtime_options* options) /*if (grib_options_on("w:")) return 0;*/ - while ((global_handle = grib_handle_new_from_file(c, options->infile_extra->file, &err))) { + while ((handle1 = grib_handle_new_from_file(c, options->infile_extra->file, &err))) { morein1++; - if (global_handle) - grib_handle_delete(global_handle); + if (handle1) + grib_handle_delete(handle1); } error += morein1 + morein2; @@ -564,8 +561,7 @@ int grib_tool_finalise_action(grib_runtime_options* options) grib_index_delete(options->index2); } - if (error != 0) - exit(1); + if (error != 0) exit(1); return 0; } From e96436844b6ea3587cfaeb2ff5a3fd231e7866eb Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 16 Jan 2021 12:51:17 +0000 Subject: [PATCH 240/683] Refactoring --- src/action.c | 12 ++--- src/grib_accessor.c | 56 ++++++++++---------- src/grib_accessor_class_data_ccsds_packing.c | 42 +++++++-------- 3 files changed, 52 insertions(+), 58 deletions(-) diff --git a/src/action.c b/src/action.c index 18e53e36c..db88c5dc5 100644 --- a/src/action.c +++ b/src/action.c @@ -98,7 +98,7 @@ void grib_dump(grib_action* a, FILE* f, int l) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); } void grib_xref(grib_action* a, FILE* f, const char* path) @@ -114,7 +114,7 @@ void grib_xref(grib_action* a, FILE* f, const char* path) c = c->super ? *(c->super) : NULL; } printf("xref not implemented for %s\n", a->cclass->name); - Assert(0); + DebugAssert(0); } @@ -147,7 +147,7 @@ int grib_create_accessor(grib_section* p, grib_action* a, grib_loader* h) c = c->super ? *(c->super) : NULL; } fprintf(stderr, "Cannot create accessor %s %s\n", a->name, a->cclass->name); - Assert(0); + DebugAssert(0); return 0; } @@ -168,7 +168,7 @@ int grib_action_notify_change(grib_action* a, grib_accessor* observer, grib_acce c = c->super ? *(c->super) : NULL; } /*GRIB_MUTEX_UNLOCK(&mutex1);*/ - Assert(0); + DebugAssert(0); return 0; } @@ -181,7 +181,7 @@ grib_action* grib_action_reparse(grib_action* a, grib_accessor* acc, int* doit) return c->reparse(a, acc, doit); c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -194,7 +194,7 @@ int grib_action_execute(grib_action* a, grib_handle* h) return c->execute(a, h); c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } diff --git a/src/grib_accessor.c b/src/grib_accessor.c index b1be492cd..eb841cb20 100644 --- a/src/grib_accessor.c +++ b/src/grib_accessor.c @@ -39,7 +39,7 @@ void grib_accessor_dump(grib_accessor* a, grib_dumper* f) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); } int grib_pack_missing(grib_accessor* a) @@ -52,7 +52,7 @@ int grib_pack_missing(grib_accessor* a) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -66,7 +66,7 @@ int grib_pack_zero(grib_accessor* a) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -80,7 +80,7 @@ int grib_is_missing_internal(grib_accessor* a) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -94,7 +94,7 @@ int grib_pack_double(grib_accessor* a, const double* v, size_t* len) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -108,7 +108,7 @@ int grib_pack_expression(grib_accessor* a, grib_expression* e) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -122,7 +122,7 @@ int grib_pack_string(grib_accessor* a, const char* v, size_t* len) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -136,7 +136,7 @@ int grib_pack_string_array(grib_accessor* a, const char** v, size_t* len) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -150,7 +150,7 @@ int grib_pack_long(grib_accessor* a, const long* v, size_t* len) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -164,7 +164,7 @@ int grib_pack_bytes(grib_accessor* a, const unsigned char* v, size_t* len) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -178,7 +178,7 @@ int grib_unpack_bytes(grib_accessor* a, unsigned char* v, size_t* len) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -191,7 +191,7 @@ int grib_unpack_double_subarray(grib_accessor* a, double* v, size_t start, size_ } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -205,7 +205,7 @@ int grib_unpack_double(grib_accessor* a, double* v, size_t* len) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -231,7 +231,7 @@ int grib_unpack_string(grib_accessor* a, char* v, size_t* len) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -244,7 +244,7 @@ int grib_unpack_string_array(grib_accessor* a, char** v, size_t* len) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -309,7 +309,7 @@ int grib_unpack_long(grib_accessor* a, long* v, size_t* len) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -324,7 +324,7 @@ long grib_accessor_get_native_type(grib_accessor* a) return c->get_native_type(a); c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -340,7 +340,7 @@ long grib_get_next_position_offset(grib_accessor* a) return c->next_offset(a); c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -355,7 +355,7 @@ long grib_string_length(grib_accessor* a) return c->string_length(a); c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -370,7 +370,7 @@ long grib_byte_offset(grib_accessor* a) return c->byte_offset(a); c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -385,7 +385,7 @@ long grib_byte_count(grib_accessor* a) return c->byte_count(a); c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -403,7 +403,7 @@ int grib_value_count(grib_accessor* a, long* count) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -432,7 +432,7 @@ int grib_accessor_notify_change(grib_accessor* a, grib_accessor* changed) } if (a && a->cclass) printf("notify_change not implemented for %s %s\n", a->cclass->name, a->name); - Assert(0); + DebugAssert(0); return 0; } @@ -507,7 +507,7 @@ void grib_update_size(grib_accessor* a, size_t len) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); } int grib_nearest_smaller_value(grib_accessor* a, double val, double* nearest) @@ -519,7 +519,7 @@ int grib_nearest_smaller_value(grib_accessor* a, double val, double* nearest) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -534,7 +534,7 @@ size_t grib_preferred_size(grib_accessor* a, int from_handle) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -547,7 +547,7 @@ grib_accessor* grib_next_accessor(grib_accessor* a) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return 0; } @@ -562,7 +562,7 @@ void grib_resize(grib_accessor* a, size_t new_size) } c = c->super ? *(c->super) : NULL; } - Assert(0); + DebugAssert(0); return; } diff --git a/src/grib_accessor_class_data_ccsds_packing.c b/src/grib_accessor_class_data_ccsds_packing.c index a9d839ebb..c4138e3e8 100644 --- a/src/grib_accessor_class_data_ccsds_packing.c +++ b/src/grib_accessor_class_data_ccsds_packing.c @@ -200,12 +200,12 @@ static const char* aec_get_error_message(int code) } static void print_aec_stream_info(struct aec_stream* strm, const char* func) { - fprintf(stderr, "ECCODES DEBUG CCSDS %s flags=%u\n", func, strm->flags); - fprintf(stderr, "ECCODES DEBUG CCSDS %s bits_per_sample=%u\n", func, strm->bits_per_sample); - fprintf(stderr, "ECCODES DEBUG CCSDS %s block_size=%u\n", func, strm->block_size); - fprintf(stderr, "ECCODES DEBUG CCSDS %s rsi=%u\n", func, strm->rsi); - fprintf(stderr, "ECCODES DEBUG CCSDS %s avail_out=%lu\n", func, strm->avail_out); - fprintf(stderr, "ECCODES DEBUG CCSDS %s avail_in=%lu\n", func, strm->avail_in); + fprintf(stderr, "ECCODES DEBUG CCSDS %s aec_stream.flags=%u\n", func, strm->flags); + fprintf(stderr, "ECCODES DEBUG CCSDS %s aec_stream.bits_per_sample=%u\n", func, strm->bits_per_sample); + fprintf(stderr, "ECCODES DEBUG CCSDS %s aec_stream.block_size=%u\n", func, strm->block_size); + fprintf(stderr, "ECCODES DEBUG CCSDS %s aec_stream.rsi=%u\n", func, strm->rsi); + fprintf(stderr, "ECCODES DEBUG CCSDS %s aec_stream.avail_out=%lu\n", func, strm->avail_out); + fprintf(stderr, "ECCODES DEBUG CCSDS %s aec_stream.avail_in=%lu\n", func, strm->avail_in); } static int unpack_double(grib_accessor* a, double* val, size_t* len) @@ -213,15 +213,14 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) grib_accessor_data_ccsds_packing* self = (grib_accessor_data_ccsds_packing*)a; grib_handle* hand = grib_handle_of_accessor(a); - int err = GRIB_SUCCESS; - int i; + int err = GRIB_SUCCESS, i = 0; size_t buflen = grib_byte_count(a); struct aec_stream strm; double bscale = 0; double dscale = 0; unsigned char* buf = NULL; size_t n_vals = 0; - size_t size; + size_t size = 0; unsigned char* decoded = NULL; unsigned char* p = NULL; long pos = 0; @@ -325,8 +324,7 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) grib_accessor_data_ccsds_packing* self = (grib_accessor_data_ccsds_packing*)a; grib_handle* hand = grib_handle_of_accessor(a); - int err = GRIB_SUCCESS; - int i; + int err = GRIB_SUCCESS, i = 0; size_t buflen = 0; unsigned char* buf = NULL; @@ -337,15 +335,11 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) long binary_scale_factor = 0; long decimal_scale_factor = 0; double reference_value = 0; - long bits8; - long bits_per_value = 0; - double max, min; - - double d; + long bits8 = 0; + long bits_per_value = 0; + double max, min, d, divisor; unsigned char* p; - double divisor; - long number_of_data_points; long ccsds_flags; @@ -382,12 +376,12 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) return GRIB_SUCCESS; } - if (bits_per_value == 0) { - int i; - /* constant field */ - for (i = 1; i < n_vals; i++) + if (bits_per_value == 0) { /* constant field */ +#ifdef DEBUG + for (i = 1; i < n_vals; i++) { Assert(val[i] == val[0]); - + } +#endif if ((err = grib_set_double_internal(hand, self->reference_value, val[0])) != GRIB_SUCCESS) return err; { @@ -458,7 +452,7 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) buflen++; } } - /* buflen = n_vals*(bits_per_value/8);*/ + /* buflen = n_vals*(bits_per_value/8);*/ grib_context_log(a->context, GRIB_LOG_DEBUG, "CCSDS pack_double: packing %s, %d values", a->name, n_vals); From d7a7c79fbe5bb7dc8f2d232149fa13bd06239bac Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 16 Jan 2021 13:03:25 +0000 Subject: [PATCH 241/683] cppcheck warning: identicalConditionAfterEarlyExit --- src/grib_accessor_class_data_ccsds_packing.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/grib_accessor_class_data_ccsds_packing.c b/src/grib_accessor_class_data_ccsds_packing.c index c4138e3e8..5a3f92732 100644 --- a/src/grib_accessor_class_data_ccsds_packing.c +++ b/src/grib_accessor_class_data_ccsds_packing.c @@ -536,11 +536,13 @@ static int unpack_double_element(grib_accessor* a, size_t idx, double* val) values = (double*)grib_context_malloc_clear(a->context, size * sizeof(double)); err = grib_get_double_array(grib_handle_of_accessor(a), "codedValues", values, &size); - if (err) + if (err) { + grib_context_free(a->context, values); return err; + } *val = values[idx]; grib_context_free(a->context, values); - return err; + return GRIB_SUCCESS; } #else From 9cd5b141ef9de62e14d4399bae3c87d499396e57 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 17 Jan 2021 00:13:30 +0000 Subject: [PATCH 242/683] cppcheck warning: identicalConditionAfterEarlyExit --- ...rib_accessor_class_bufr_extract_area_subsets.c | 7 +------ ...accessor_class_bufr_extract_datetime_subsets.c | 7 +------ src/grib_accessor_class_bufr_simple_thinning.c | 6 +----- ...ib_accessor_class_data_apply_boustrophedonic.c | 8 +++++--- ...data_g1second_order_general_extended_packing.c | 8 +++++--- src/grib_accessor_class_data_g1secondary_bitmap.c | 2 +- src/grib_accessor_class_data_g22order_packing.c | 6 ++++-- src/grib_accessor_class_data_jpeg2000_packing.c | 6 ++++-- src/grib_accessor_class_dictionary.c | 4 ++-- src/grib_accessor_class_expanded_descriptors.c | 2 +- src/grib_accessor_class_g1area.c | 4 ++-- src/grib_accessor_class_latlon_increment.c | 2 +- src/grib_accessor_class_latlonvalues.c | 6 +++--- src/grib_accessor_class_rdbtime_guess_date.c | 2 +- src/grib_accessor_class_smart_table.c | 2 +- src/grib_accessor_class_sum.c | 15 +++++++++------ src/grib_accessor_class_times.c | 2 +- src/grib_accessor_class_to_integer.c | 2 +- 18 files changed, 44 insertions(+), 47 deletions(-) diff --git a/src/grib_accessor_class_bufr_extract_area_subsets.c b/src/grib_accessor_class_bufr_extract_area_subsets.c index b3bdec849..361078b04 100644 --- a/src/grib_accessor_class_bufr_extract_area_subsets.c +++ b/src/grib_accessor_class_bufr_extract_area_subsets.c @@ -332,14 +332,9 @@ static int select_area(grib_accessor* a) static int pack_long(grib_accessor* a, const long* val, size_t* len) { - int err = 0; /*grib_accessor_bufr_extract_area_subsets *self =(grib_accessor_bufr_extract_area_subsets*)a;*/ if (*len == 0) return GRIB_SUCCESS; - err = select_area(a); - if (err) - return err; - - return err; + return select_area(a); } diff --git a/src/grib_accessor_class_bufr_extract_datetime_subsets.c b/src/grib_accessor_class_bufr_extract_datetime_subsets.c index aa6f7eff9..6ecbf799e 100644 --- a/src/grib_accessor_class_bufr_extract_datetime_subsets.c +++ b/src/grib_accessor_class_bufr_extract_datetime_subsets.c @@ -473,14 +473,9 @@ static int select_datetime(grib_accessor* a) static int pack_long(grib_accessor* a, const long* val, size_t* len) { - int err = 0; /*grib_accessor_bufr_extract_datetime_subsets *self =(grib_accessor_bufr_extract_datetime_subsets*)a;*/ if (*len == 0) return GRIB_SUCCESS; - err = select_datetime(a); - if (err) - return err; - - return err; + return select_datetime(a); } diff --git a/src/grib_accessor_class_bufr_simple_thinning.c b/src/grib_accessor_class_bufr_simple_thinning.c index 0cd62f2f4..a971c82a7 100644 --- a/src/grib_accessor_class_bufr_simple_thinning.c +++ b/src/grib_accessor_class_bufr_simple_thinning.c @@ -239,9 +239,5 @@ static int pack_long(grib_accessor* a, const long* val, size_t* len) if (err) return err; - err = grib_set_long(a->parent->h, self->doExtractSubsets, 1); - if (err) - return err; - - return err; + return grib_set_long(a->parent->h, self->doExtractSubsets, 1); } diff --git a/src/grib_accessor_class_data_apply_boustrophedonic.c b/src/grib_accessor_class_data_apply_boustrophedonic.c index 877d51b57..9ea232988 100644 --- a/src/grib_accessor_class_data_apply_boustrophedonic.c +++ b/src/grib_accessor_class_data_apply_boustrophedonic.c @@ -280,11 +280,13 @@ static int unpack_double_element(grib_accessor* a, size_t idx, double* val) values = (double*)grib_context_malloc_clear(a->parent->h->context, size * sizeof(double)); err = grib_get_double_array(a->parent->h, "codedValues", values, &size); - if (err) + if (err) { + grib_context_free(a->parent->h->context, values); return err; + } *val = values[idx]; grib_context_free(a->parent->h->context, values); - return err; + return GRIB_SUCCESS; } static int pack_double(grib_accessor* a, const double* val, size_t* len) @@ -367,7 +369,7 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) grib_context_free(a->context, values); - return ret; + return GRIB_SUCCESS; } static int get_native_type(grib_accessor* a) diff --git a/src/grib_accessor_class_data_g1second_order_general_extended_packing.c b/src/grib_accessor_class_data_g1second_order_general_extended_packing.c index af8c3f44b..454472d39 100644 --- a/src/grib_accessor_class_data_g1second_order_general_extended_packing.c +++ b/src/grib_accessor_class_data_g1second_order_general_extended_packing.c @@ -328,11 +328,13 @@ static int unpack_double_element(grib_accessor* a, size_t idx, double* val) values = (double*)grib_context_malloc_clear(a->context, size * sizeof(double)); err = grib_get_double_array(grib_handle_of_accessor(a), "codedValues", values, &size); - if (err) + if (err) { + grib_context_free(a->context, values); return err; + } *val = values[idx]; grib_context_free(a->context, values); - return err; + return GRIB_SUCCESS; } static int unpack_double(grib_accessor* a, double* values, size_t* len) @@ -1889,7 +1891,7 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) grib_context_free(a->context, groupWidths); grib_context_free(a->context, firstOrderValues); - return ret; + return GRIB_SUCCESS; } static void destroy(grib_context* context, grib_accessor* a) diff --git a/src/grib_accessor_class_data_g1secondary_bitmap.c b/src/grib_accessor_class_data_g1secondary_bitmap.c index aa80534e9..71c704d5e 100644 --- a/src/grib_accessor_class_data_g1secondary_bitmap.c +++ b/src/grib_accessor_class_data_g1secondary_bitmap.c @@ -159,7 +159,7 @@ static int value_count(grib_accessor* a, long* count) return err; *count = expand_by * len; - return err; + return GRIB_SUCCESS; } static int pack_double(grib_accessor* a, const double* val, size_t* len) diff --git a/src/grib_accessor_class_data_g22order_packing.c b/src/grib_accessor_class_data_g22order_packing.c index 33c716b99..ad364dde3 100644 --- a/src/grib_accessor_class_data_g22order_packing.c +++ b/src/grib_accessor_class_data_g22order_packing.c @@ -951,11 +951,13 @@ static int unpack_double_element(grib_accessor* a, size_t idx, double* val) values = (double*)grib_context_malloc_clear(a->context, size * sizeof(double)); err = grib_get_double_array(grib_handle_of_accessor(a), "codedValues", values, &size); - if (err) + if (err) { + grib_context_free(a->context, values); return err; + } *val = values[idx]; grib_context_free(a->context, values); - return err; + return GRIB_SUCCESS; } static int value_count(grib_accessor* a, long* count) diff --git a/src/grib_accessor_class_data_jpeg2000_packing.c b/src/grib_accessor_class_data_jpeg2000_packing.c index 0f44d7f86..8f40e396f 100644 --- a/src/grib_accessor_class_data_jpeg2000_packing.c +++ b/src/grib_accessor_class_data_jpeg2000_packing.c @@ -591,9 +591,11 @@ static int unpack_double_element(grib_accessor* a, size_t idx, double* val) values = (double*)grib_context_malloc_clear(a->context, size * sizeof(double)); err = grib_get_double_array(grib_handle_of_accessor(a), "codedValues", values, &size); - if (err) + if (err) { + grib_context_free(a->context, values); return err; + } *val = values[idx]; grib_context_free(a->context, values); - return err; + return GRIB_SUCCESS; } diff --git a/src/grib_accessor_class_dictionary.c b/src/grib_accessor_class_dictionary.c index 725926c5d..4a7210903 100644 --- a/src/grib_accessor_class_dictionary.c +++ b/src/grib_accessor_class_dictionary.c @@ -368,7 +368,7 @@ static int unpack_long(grib_accessor* a, long* val, size_t* len) *val = atol(buffer); *len = 1; - return err; + return GRIB_SUCCESS; } static int unpack_double(grib_accessor* a, double* val, size_t* len) @@ -384,5 +384,5 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) *val = atof(buffer); *len = 1; - return err; + return GRIB_SUCCESS; } diff --git a/src/grib_accessor_class_expanded_descriptors.c b/src/grib_accessor_class_expanded_descriptors.c index fa5c72a0c..bee48fb9e 100644 --- a/src/grib_accessor_class_expanded_descriptors.c +++ b/src/grib_accessor_class_expanded_descriptors.c @@ -646,7 +646,7 @@ static int expand(grib_accessor* a) if (expanded) { self->expanded = expanded; grib_context_free(c, u); - return err; + return GRIB_SUCCESS; } if (!self->tablesAccessor) { diff --git a/src/grib_accessor_class_g1area.c b/src/grib_accessor_class_g1area.c index ec96560af..b56c00eb0 100644 --- a/src/grib_accessor_class_g1area.c +++ b/src/grib_accessor_class_g1area.c @@ -173,7 +173,7 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) if (ret == GRIB_SUCCESS) *len = 4; - return ret; + return GRIB_SUCCESS; } static int unpack_double(grib_accessor* a, double* val, size_t* len) @@ -205,7 +205,7 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) if (ret == GRIB_SUCCESS) *len = 4; - return ret; + return GRIB_SUCCESS; } static void dump(grib_accessor* a, grib_dumper* dumper) diff --git a/src/grib_accessor_class_latlon_increment.c b/src/grib_accessor_class_latlon_increment.c index ec44929f5..e1a39792b 100644 --- a/src/grib_accessor_class_latlon_increment.c +++ b/src/grib_accessor_class_latlon_increment.c @@ -350,7 +350,7 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) if (ret == GRIB_SUCCESS) *len = 1; - return ret; + return GRIB_SUCCESS; } static int is_missing(grib_accessor* a) diff --git a/src/grib_accessor_class_latlonvalues.c b/src/grib_accessor_class_latlonvalues.c index 571c81042..e021ab2b6 100644 --- a/src/grib_accessor_class_latlonvalues.c +++ b/src/grib_accessor_class_latlonvalues.c @@ -184,14 +184,14 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) *len = size; - return ret; + return GRIB_SUCCESS; } static int value_count(grib_accessor* a, long* count) { grib_accessor_latlonvalues* self = (grib_accessor_latlonvalues*)a; grib_handle* h = grib_handle_of_accessor(a); - int ret; + int ret = GRIB_SUCCESS; size_t size; if ((ret = grib_get_size(h, self->values, &size)) != GRIB_SUCCESS) { grib_context_log(h->context, GRIB_LOG_ERROR, "unable to get size of %s", self->values); @@ -199,5 +199,5 @@ static int value_count(grib_accessor* a, long* count) } *count = 3 * size; - return ret; + return GRIB_SUCCESS; } diff --git a/src/grib_accessor_class_rdbtime_guess_date.c b/src/grib_accessor_class_rdbtime_guess_date.c index a3a31e69c..7239f9001 100644 --- a/src/grib_accessor_class_rdbtime_guess_date.c +++ b/src/grib_accessor_class_rdbtime_guess_date.c @@ -198,7 +198,7 @@ static int unpack_long(grib_accessor* a, long* val, size_t* len) *val = self->yearOrMonth == 1 ? rdbYear : rdbMonth; *len = 1; - return ret; + return GRIB_SUCCESS; } static int pack_long(grib_accessor* a, const long* v, size_t* len) diff --git a/src/grib_accessor_class_smart_table.c b/src/grib_accessor_class_smart_table.c index c9fd79550..b6d2c9a19 100644 --- a/src/grib_accessor_class_smart_table.c +++ b/src/grib_accessor_class_smart_table.c @@ -539,7 +539,7 @@ static int value_count(grib_accessor* a, long* count) return err; *count = self->tableCodesSize; - return err; + return GRIB_SUCCESS; } static void destroy(grib_context* context, grib_accessor* a) diff --git a/src/grib_accessor_class_sum.c b/src/grib_accessor_class_sum.c index 5c1750409..a1d9937c9 100644 --- a/src/grib_accessor_class_sum.c +++ b/src/grib_accessor_class_sum.c @@ -163,7 +163,7 @@ static int unpack_long(grib_accessor* a, long* val, size_t* len) if (size == 0) { *val = 0; - return ret; + return GRIB_SUCCESS; } values = (long*)grib_context_malloc_clear(a->context, sizeof(long) * size); if (!values) @@ -177,7 +177,7 @@ static int unpack_long(grib_accessor* a, long* val, size_t* len) grib_context_free(a->context, values); - return ret; + return GRIB_SUCCESS; } static int unpack_double(grib_accessor* a, double* val, size_t* len) @@ -196,21 +196,24 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) if (size == 0) { *val = 0; - return ret; + return GRIB_SUCCESS; } values = (double*)grib_context_malloc_clear(a->context, sizeof(double) * size); if (!values) return GRIB_OUT_OF_MEMORY; - grib_get_double_array(grib_handle_of_accessor(a), self->values, values, &size); - + ret = grib_get_double_array(grib_handle_of_accessor(a), self->values, values, &size); + if (ret) { + grib_context_free(a->context, values); + return ret; + } *val = 0; for (i = 0; i < size; i++) *val += values[i]; grib_context_free(a->context, values); - return ret; + return GRIB_SUCCESS; } static int value_count(grib_accessor* a, long* count) diff --git a/src/grib_accessor_class_times.c b/src/grib_accessor_class_times.c index 6e348d0a6..f4afef196 100644 --- a/src/grib_accessor_class_times.c +++ b/src/grib_accessor_class_times.c @@ -222,7 +222,7 @@ static int pack_long(grib_accessor* a, const long* val, size_t* len) *len = 1; - return ret; + return GRIB_SUCCESS; } static int value_count(grib_accessor* a, long* count) diff --git a/src/grib_accessor_class_to_integer.c b/src/grib_accessor_class_to_integer.c index f9f6e2677..83265a6ae 100644 --- a/src/grib_accessor_class_to_integer.c +++ b/src/grib_accessor_class_to_integer.c @@ -255,7 +255,7 @@ static int unpack_long(grib_accessor* a, long* v, size_t* len) *v = strtol(val, &last, 10); /* if (*last) {err=GRIB_WRONG_CONVERSION;} */ - return err; + return GRIB_SUCCESS; } static int unpack_double(grib_accessor* a, double* v, size_t* len) From c4fbf56c580abc2e32b9d88e883b5172a6e0cc50 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 17 Jan 2021 16:11:07 +0000 Subject: [PATCH 243/683] Refactoring --- src/grib_accessor_class_bufr_data_array.c | 30 ++++++++----------- src/grib_accessor_class_bufr_elements_table.c | 2 +- src/grib_accessor_class_codetable.c | 6 ++-- src/grib_accessor_class_g2grid.c | 6 ++-- src/grib_accessor_class_gaussian_grid_name.c | 2 +- src/grib_accessor_class_gen.c | 2 +- 6 files changed, 21 insertions(+), 27 deletions(-) diff --git a/src/grib_accessor_class_bufr_data_array.c b/src/grib_accessor_class_bufr_data_array.c index 79d51d1cd..b72607360 100644 --- a/src/grib_accessor_class_bufr_data_array.c +++ b/src/grib_accessor_class_bufr_data_array.c @@ -580,7 +580,6 @@ static int decode_string_array(grib_context* c, unsigned char* data, long* pos, CHECK_END_DATA_RETURN(c, bd, self, modifiedWidth, *err); if (*err) { grib_sarray_push(c, sa, sval); - /*printf("dbg: decode_string_array push1 %p\n", (void*)(self->stringValues));*/ grib_vsarray_push(c, self->stringValues, sa); return ret; } @@ -588,7 +587,6 @@ static int decode_string_array(grib_context* c, unsigned char* data, long* pos, CHECK_END_DATA_RETURN(c, bd, self, 6, *err); if (*err) { grib_sarray_push(c, sa, sval); - /*printf("dbg: decode_string_array push2 %p\n", (void*)(self->stringValues));*/ grib_vsarray_push(c, self->stringValues, sa); return ret; } @@ -597,7 +595,6 @@ static int decode_string_array(grib_context* c, unsigned char* data, long* pos, CHECK_END_DATA_RETURN(c, bd, self, width * 8 * self->numberOfSubsets, *err); if (*err) { grib_sarray_push(c, sa, sval); - /*printf("dbg: decode_string_array push3 %p\n", (void*)(self->stringValues));*/ grib_vsarray_push(c, self->stringValues, sa); return ret; } @@ -621,7 +618,6 @@ static int decode_string_array(grib_context* c, unsigned char* data, long* pos, grib_sarray_push(c, sa, sval); } } - /*printf("dbg: decode_string_array push4 %p\n", (void*)(self->stringValues));*/ grib_vsarray_push(c, self->stringValues, sa); return ret; } @@ -1944,7 +1940,7 @@ static int adding_extra_key_attributes(grib_handle* h) } static grib_accessor* create_accessor_from_descriptor(const grib_accessor* a, grib_accessor* attribute, grib_section* section, - long ide, long subset, int dump, int count, int add_extra_attributes) + long ide, long subset, int add_dump_flag, int count, int add_extra_attributes) { grib_accessor_bufr_data_array* self = (grib_accessor_bufr_data_array*)a; char code[10] = {0,}; @@ -1968,7 +1964,7 @@ static grib_accessor* create_accessor_from_descriptor(const grib_accessor* a, gr DebugAssert(attribute->parent == NULL); } - if (dump) { + if (add_dump_flag) { creator.flags = GRIB_ACCESSOR_FLAG_DUMP; operatorCreator.flags |= GRIB_ACCESSOR_FLAG_DUMP; } @@ -2438,7 +2434,7 @@ static int create_keys(const grib_accessor* a, long onlySubset, long startSubset grib_accessor* elementFromBitmap = NULL; grib_handle* hand = grib_handle_of_accessor(a); /*int reuseBitmap=0;*/ - int dump = 1, count = 0; + int add_dump_flag = 1, count = 0; /*int forceGroupClosure=0;*/ creatorGroup.op = "bufr_group"; @@ -2545,7 +2541,7 @@ static int create_keys(const grib_accessor* a, long onlySubset, long startSubset if (depth > max_depth) max_depth = depth; incrementBitmapIndex = 1; - dump = 1; + add_dump_flag = 1; } else if (descriptor->code == 31031 && incrementBitmapIndex != 0) { /* bitmap */ @@ -2585,10 +2581,10 @@ static int create_keys(const grib_accessor* a, long onlySubset, long startSubset /*sectionUp=gaGroup->parent;*/ bitmapGroup[bitmapIndex] = gaGroup; bitmapDepth[bitmapIndex] = depth; - dump = 1; + add_dump_flag = 1; } else if (descriptor->code == 31031) { - dump = 1; + add_dump_flag = 1; bitmapSize[bitmapIndex]++; bitmap.cursor = 0; } @@ -2596,7 +2592,7 @@ static int create_keys(const grib_accessor* a, long onlySubset, long startSubset bitmap.referredElement = NULL; qualityPresent = 1; incrementBitmapIndex = 1; - dump = 1; + add_dump_flag = 1; bitmap.cursor = 0; extraElement += 1; } @@ -2605,25 +2601,25 @@ static int create_keys(const grib_accessor* a, long onlySubset, long startSubset bitmap.cursor = 0; /*reuseBitmap=1;*/ extraElement += 1; - dump = 1; + add_dump_flag = 1; } else if (descriptor->code == 237255) { /*reuseBitmap=0;*/ incrementBitmapIndex = 1; bitmap.cursor = 0; - dump = 1; + add_dump_flag = 1; } else if ((descriptor->X == 33 || bufr_descriptor_is_marker(descriptor)) && qualityPresent) { if (!bitmap.referredElement) bitmap_init(c, &bitmap, bitmapStart[bitmapIndex], bitmapSize[bitmapIndex], lastAccessorInList); elementFromBitmap = get_element_from_bitmap(a, &bitmap); - dump = 1; + add_dump_flag = 1; /* } else if ( descriptor->Y==1 && IS_COORDINATE_DESCRIPTOR(self->expanded->v[idx-1]->X)==0) { */ /* forceGroupClosure=1; */ /* reset_qualifiers(significanceQualifierGroup); */ } else if (descriptor->X == 33 && !qualityPresent) { - dump = 1; /* ECC-690: percentConfidence WITHOUT a bitmap! e.g. NOAA GOES16 BUFR */ + add_dump_flag = 1; /* ECC-690: percentConfidence WITHOUT a bitmap! e.g. NOAA GOES16 BUFR */ } if (ide == 0 && !self->compressedData) { @@ -2646,7 +2642,7 @@ static int create_keys(const grib_accessor* a, long onlySubset, long startSubset grib_accessors_list_push(self->dataAccessors, asn, rank); } count++; - elementAccessor = create_accessor_from_descriptor(a, associatedFieldAccessor, section, ide, iss, dump, count, add_extra_attributes); + elementAccessor = create_accessor_from_descriptor(a, associatedFieldAccessor, section, ide, iss, add_dump_flag, count, add_extra_attributes); if (!elementAccessor) { err = GRIB_DECODING_ERROR; return err; @@ -3395,7 +3391,7 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) if (err) return err; if (!val) - return err; + return GRIB_SUCCESS; /* When we set unpack=1, then the 'val' argument is NULL and we return * but when client requests a key like 'numericValues', then we end up here diff --git a/src/grib_accessor_class_bufr_elements_table.c b/src/grib_accessor_class_bufr_elements_table.c index 5ed43dd4d..860ebe440 100644 --- a/src/grib_accessor_class_bufr_elements_table.c +++ b/src/grib_accessor_class_bufr_elements_table.c @@ -376,7 +376,7 @@ static int bufr_get_from_table(grib_accessor* a, bufr_descriptor* v) v->reference = atol_fast(list[6]); v->width = atol(list[7]); - return ret; + return GRIB_SUCCESS; } int bufr_descriptor_is_marker(bufr_descriptor* d) diff --git a/src/grib_accessor_class_codetable.c b/src/grib_accessor_class_codetable.c index 2b9189fae..f0d51259f 100644 --- a/src/grib_accessor_class_codetable.c +++ b/src/grib_accessor_class_codetable.c @@ -735,10 +735,8 @@ static int pack_expression(grib_accessor* a, grib_expression* e) grib_handle* hand = grib_handle_of_accessor(a); if (strcmp(e->cclass->name, "long") == 0) { - ret = grib_expression_evaluate_long(hand, e, &lval); - /*if (hand->context->debug) - printf("ECCODES DEBUG grib_accessor_class_codetable::pack_expression %s %ld\n", a->name,lval);*/ - + grib_expression_evaluate_long(hand, e, &lval); /* TDOD: check return value */ + /*if (hand->context->debug) printf("ECCODES DEBUG grib_accessor_class_codetable::pack_expression %s %ld\n", a->name,lval);*/ ret = grib_pack_long(a, &lval, &len); } else { diff --git a/src/grib_accessor_class_g2grid.c b/src/grib_accessor_class_g2grid.c index c8f4e056d..c78fbb8db 100644 --- a/src/grib_accessor_class_g2grid.c +++ b/src/grib_accessor_class_g2grid.c @@ -224,12 +224,12 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) else if ((ret = grib_get_long_internal(hand, self->i_increment, &v[n++])) != GRIB_SUCCESS) return ret; - if (!self->j_increment) + if (!self->j_increment) { v[n++] = GRIB_MISSING_LONG; - else if (self->j_increment) + } else { if ((ret = grib_get_long_internal(hand, self->j_increment, &v[n++])) != GRIB_SUCCESS) return ret; - + } for (i = 0; i < n; i++) if (v[i] == GRIB_MISSING_LONG) val[i] = GRIB_MISSING_DOUBLE; diff --git a/src/grib_accessor_class_gaussian_grid_name.c b/src/grib_accessor_class_gaussian_grid_name.c index be0ecf8ac..3efe88979 100644 --- a/src/grib_accessor_class_gaussian_grid_name.c +++ b/src/grib_accessor_class_gaussian_grid_name.c @@ -160,7 +160,7 @@ static int unpack_string(grib_accessor* a, char* v, size_t* len) long N = 0, Ni = 0, isOctahedral = 0; char tmp[MAX_GRIDNAME_LEN] = {0,}; - size_t length = sizeof(tmp); + size_t length = 0; int ret = GRIB_SUCCESS; if ((ret = grib_get_long_internal(a->parent->h, self->N, &N)) != GRIB_SUCCESS) diff --git a/src/grib_accessor_class_gen.c b/src/grib_accessor_class_gen.c index 66414a6a4..565c4612a 100644 --- a/src/grib_accessor_class_gen.c +++ b/src/grib_accessor_class_gen.c @@ -373,7 +373,7 @@ static int unpack_string_array(grib_accessor* a, char** v, size_t* len) grib_unpack_string(a, v[0], &length); *len = 1; - return err; + return GRIB_SUCCESS; } static int pack_expression(grib_accessor* a, grib_expression* e) From 158f2232dd0ef883ae379ccfa77d9287fd7e47b7 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 18 Jan 2021 13:10:51 +0000 Subject: [PATCH 244/683] Definitions: Correct CCSDS title: it is only for grib-point data not spectral --- definitions/grib2/tables/18/5.0.table | 2 +- definitions/grib2/tables/19/5.0.table | 2 +- definitions/grib2/tables/20/5.0.table | 2 +- definitions/grib2/tables/21/5.0.table | 2 +- definitions/grib2/tables/23/5.0.table | 2 +- definitions/grib2/tables/24/5.0.table | 2 +- definitions/grib2/tables/25/5.0.table | 2 +- definitions/grib2/tables/26/5.0.table | 2 +- definitions/grib2/template.5.42.def | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/definitions/grib2/tables/18/5.0.table b/definitions/grib2/tables/18/5.0.table index 1d4c5e5da..ad46a5377 100644 --- a/definitions/grib2/tables/18/5.0.table +++ b/definitions/grib2/tables/18/5.0.table @@ -7,7 +7,7 @@ 6 6 Grid point data - simple packing with pre-processing 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression +42 42 Grid point data - CCSDS recommended lossless compression # 43-49 Reserved 50 50 Spectral data - simple packing 51 51 Spherical harmonics data - complex packing diff --git a/definitions/grib2/tables/19/5.0.table b/definitions/grib2/tables/19/5.0.table index 1d4c5e5da..ad46a5377 100644 --- a/definitions/grib2/tables/19/5.0.table +++ b/definitions/grib2/tables/19/5.0.table @@ -7,7 +7,7 @@ 6 6 Grid point data - simple packing with pre-processing 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression +42 42 Grid point data - CCSDS recommended lossless compression # 43-49 Reserved 50 50 Spectral data - simple packing 51 51 Spherical harmonics data - complex packing diff --git a/definitions/grib2/tables/20/5.0.table b/definitions/grib2/tables/20/5.0.table index 1d4c5e5da..ad46a5377 100644 --- a/definitions/grib2/tables/20/5.0.table +++ b/definitions/grib2/tables/20/5.0.table @@ -7,7 +7,7 @@ 6 6 Grid point data - simple packing with pre-processing 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression +42 42 Grid point data - CCSDS recommended lossless compression # 43-49 Reserved 50 50 Spectral data - simple packing 51 51 Spherical harmonics data - complex packing diff --git a/definitions/grib2/tables/21/5.0.table b/definitions/grib2/tables/21/5.0.table index 1d4c5e5da..ad46a5377 100644 --- a/definitions/grib2/tables/21/5.0.table +++ b/definitions/grib2/tables/21/5.0.table @@ -7,7 +7,7 @@ 6 6 Grid point data - simple packing with pre-processing 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression +42 42 Grid point data - CCSDS recommended lossless compression # 43-49 Reserved 50 50 Spectral data - simple packing 51 51 Spherical harmonics data - complex packing diff --git a/definitions/grib2/tables/23/5.0.table b/definitions/grib2/tables/23/5.0.table index 27a9fbc97..20ed3d129 100644 --- a/definitions/grib2/tables/23/5.0.table +++ b/definitions/grib2/tables/23/5.0.table @@ -7,7 +7,7 @@ # 5-39 Reserved 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression +42 42 Grid point data - CCSDS recommended lossless compression # 43-49 Reserved 50 50 Spectral data - simple packing 51 51 Spherical harmonics data - complex packing diff --git a/definitions/grib2/tables/24/5.0.table b/definitions/grib2/tables/24/5.0.table index 27a9fbc97..20ed3d129 100644 --- a/definitions/grib2/tables/24/5.0.table +++ b/definitions/grib2/tables/24/5.0.table @@ -7,7 +7,7 @@ # 5-39 Reserved 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression +42 42 Grid point data - CCSDS recommended lossless compression # 43-49 Reserved 50 50 Spectral data - simple packing 51 51 Spherical harmonics data - complex packing diff --git a/definitions/grib2/tables/25/5.0.table b/definitions/grib2/tables/25/5.0.table index 74af6d38d..48068f19e 100644 --- a/definitions/grib2/tables/25/5.0.table +++ b/definitions/grib2/tables/25/5.0.table @@ -7,7 +7,7 @@ # 5-39 Reserved 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression +42 42 Grid point data - CCSDS recommended lossless compression # 43-49 Reserved 50 50 Spectral data - simple packing 51 51 Spherical harmonics data - complex packing diff --git a/definitions/grib2/tables/26/5.0.table b/definitions/grib2/tables/26/5.0.table index 27b1a89fd..ac0a10f02 100644 --- a/definitions/grib2/tables/26/5.0.table +++ b/definitions/grib2/tables/26/5.0.table @@ -7,7 +7,7 @@ # 5-39 Reserved 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression +42 42 Grid point data - CCSDS recommended lossless compression # 43-49 Reserved 50 50 Spectral data - simple packing 51 51 Spherical harmonics data - complex packing diff --git a/definitions/grib2/template.5.42.def b/definitions/grib2/template.5.42.def index 50fcc0805..c7128e5d2 100644 --- a/definitions/grib2/template.5.42.def +++ b/definitions/grib2/template.5.42.def @@ -1,6 +1,6 @@ # (C) Copyright 2005- ECMWF. -# TEMPLATE 5.42, Grid point and spectral data - CCSDS recommended lossless compression +# TEMPLATE 5.42, Grid point data - CCSDS recommended lossless compression include "grib2/template.5.packing.def"; include "grib2/template.5.original_values.def"; From dce4542f5eb424de183d3c24c8d0e8efad56589b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 18 Jan 2021 13:23:09 +0000 Subject: [PATCH 245/683] Definitions: Correct CCSDS title: it is only for grib-point data not spectral --- definitions/grib2/tables/18/5.0.table | 2 +- definitions/grib2/tables/19/5.0.table | 2 +- definitions/grib2/tables/20/5.0.table | 2 +- definitions/grib2/tables/21/5.0.table | 2 +- definitions/grib2/tables/23/5.0.table | 2 +- definitions/grib2/tables/24/5.0.table | 2 +- definitions/grib2/tables/25/5.0.table | 2 +- definitions/grib2/tables/26/5.0.table | 2 +- definitions/grib2/template.5.42.def | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/definitions/grib2/tables/18/5.0.table b/definitions/grib2/tables/18/5.0.table index 1d4c5e5da..ad46a5377 100644 --- a/definitions/grib2/tables/18/5.0.table +++ b/definitions/grib2/tables/18/5.0.table @@ -7,7 +7,7 @@ 6 6 Grid point data - simple packing with pre-processing 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression +42 42 Grid point data - CCSDS recommended lossless compression # 43-49 Reserved 50 50 Spectral data - simple packing 51 51 Spherical harmonics data - complex packing diff --git a/definitions/grib2/tables/19/5.0.table b/definitions/grib2/tables/19/5.0.table index 1d4c5e5da..ad46a5377 100644 --- a/definitions/grib2/tables/19/5.0.table +++ b/definitions/grib2/tables/19/5.0.table @@ -7,7 +7,7 @@ 6 6 Grid point data - simple packing with pre-processing 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression +42 42 Grid point data - CCSDS recommended lossless compression # 43-49 Reserved 50 50 Spectral data - simple packing 51 51 Spherical harmonics data - complex packing diff --git a/definitions/grib2/tables/20/5.0.table b/definitions/grib2/tables/20/5.0.table index 1d4c5e5da..ad46a5377 100644 --- a/definitions/grib2/tables/20/5.0.table +++ b/definitions/grib2/tables/20/5.0.table @@ -7,7 +7,7 @@ 6 6 Grid point data - simple packing with pre-processing 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression +42 42 Grid point data - CCSDS recommended lossless compression # 43-49 Reserved 50 50 Spectral data - simple packing 51 51 Spherical harmonics data - complex packing diff --git a/definitions/grib2/tables/21/5.0.table b/definitions/grib2/tables/21/5.0.table index 1d4c5e5da..ad46a5377 100644 --- a/definitions/grib2/tables/21/5.0.table +++ b/definitions/grib2/tables/21/5.0.table @@ -7,7 +7,7 @@ 6 6 Grid point data - simple packing with pre-processing 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression +42 42 Grid point data - CCSDS recommended lossless compression # 43-49 Reserved 50 50 Spectral data - simple packing 51 51 Spherical harmonics data - complex packing diff --git a/definitions/grib2/tables/23/5.0.table b/definitions/grib2/tables/23/5.0.table index 27a9fbc97..014b611c1 100644 --- a/definitions/grib2/tables/23/5.0.table +++ b/definitions/grib2/tables/23/5.0.table @@ -7,7 +7,7 @@ # 5-39 Reserved 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression +42 42 Grid point data - CCSDS recommended lossless compression # 43-49 Reserved 50 50 Spectral data - simple packing 51 51 Spherical harmonics data - complex packing diff --git a/definitions/grib2/tables/24/5.0.table b/definitions/grib2/tables/24/5.0.table index 27a9fbc97..014b611c1 100644 --- a/definitions/grib2/tables/24/5.0.table +++ b/definitions/grib2/tables/24/5.0.table @@ -7,7 +7,7 @@ # 5-39 Reserved 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression +42 42 Grid point data - CCSDS recommended lossless compression # 43-49 Reserved 50 50 Spectral data - simple packing 51 51 Spherical harmonics data - complex packing diff --git a/definitions/grib2/tables/25/5.0.table b/definitions/grib2/tables/25/5.0.table index 74af6d38d..6ef85de04 100644 --- a/definitions/grib2/tables/25/5.0.table +++ b/definitions/grib2/tables/25/5.0.table @@ -7,7 +7,7 @@ # 5-39 Reserved 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression +42 42 Grid point data - CCSDS recommended lossless compression # 43-49 Reserved 50 50 Spectral data - simple packing 51 51 Spherical harmonics data - complex packing diff --git a/definitions/grib2/tables/26/5.0.table b/definitions/grib2/tables/26/5.0.table index 27b1a89fd..a36ee2659 100644 --- a/definitions/grib2/tables/26/5.0.table +++ b/definitions/grib2/tables/26/5.0.table @@ -7,7 +7,7 @@ # 5-39 Reserved 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) -42 42 Grid point and spectral data - CCSDS recommended lossless compression +42 42 Grid point data - CCSDS recommended lossless compression # 43-49 Reserved 50 50 Spectral data - simple packing 51 51 Spherical harmonics data - complex packing diff --git a/definitions/grib2/template.5.42.def b/definitions/grib2/template.5.42.def index 50fcc0805..c7128e5d2 100644 --- a/definitions/grib2/template.5.42.def +++ b/definitions/grib2/template.5.42.def @@ -1,6 +1,6 @@ # (C) Copyright 2005- ECMWF. -# TEMPLATE 5.42, Grid point and spectral data - CCSDS recommended lossless compression +# TEMPLATE 5.42, Grid point data - CCSDS recommended lossless compression include "grib2/template.5.packing.def"; include "grib2/template.5.original_values.def"; From 61a0825c7f7d20844530e94aa270ead31c0e9155 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 19 Jan 2021 13:35:09 +0000 Subject: [PATCH 246/683] Bump up version --- .appveyor.yml | 2 +- CMakeLists.txt | 2 +- version.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index e1adf685d..5d9889a4c 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -2,7 +2,7 @@ # general configuration # #---------------------------------# -version: 2.20.0-{build}-{branch} +version: 2.21.0-{build}-{branch} branches: only: diff --git a/CMakeLists.txt b/CMakeLists.txt index 8f4274f4c..b706a4db8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ cmake_minimum_required( VERSION 3.12 FATAL_ERROR ) find_package( ecbuild 3.4 REQUIRED HINTS ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild) # Initialise project -project( eccodes VERSION 2.20.0 LANGUAGES C ) +project( eccodes VERSION 2.21.0 LANGUAGES C ) ############################################################################### # system checks needed for eccodes_config.h and some options like MEMFS diff --git a/version.sh b/version.sh index dd3f0e72f..88071baaf 100644 --- a/version.sh +++ b/version.sh @@ -3,7 +3,7 @@ PACKAGE_NAME='eccodes' # Package version ECCODES_MAJOR_VERSION=2 -ECCODES_MINOR_VERSION=20 +ECCODES_MINOR_VERSION=21 ECCODES_REVISION_VERSION=0 ECCODES_CURRENT=1 From 52c06dae7fc0fb0637e674bf2949ceada76a2d34 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 20 Jan 2021 20:52:41 +0000 Subject: [PATCH 247/683] Debugging: print accessor name if different from key name --- src/grib_value.c | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/src/grib_value.c b/src/grib_value.c index 3f8a30cca..f109f0a3b 100644 --- a/src/grib_value.c +++ b/src/grib_value.c @@ -95,10 +95,14 @@ int grib_set_long(grib_handle* h, const char* name, long val) a = grib_find_accessor(h, name); - if (h->context->debug) - fprintf(stderr, "ECCODES DEBUG grib_set_long %s=%ld\n", name, (long)val); - if (a) { + if (h->context->debug) { + if (strcmp(name, a->name)!=0) + fprintf(stderr, "ECCODES DEBUG grib_set_long %s=%ld (a->name=%s)\n", name, (long)val, a->name); + else + fprintf(stderr, "ECCODES DEBUG grib_set_long %s=%ld\n", name, (long)val); + } + if (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) return GRIB_READ_ONLY; @@ -318,10 +322,14 @@ int grib_set_double(grib_handle* h, const char* name, double val) a = grib_find_accessor(h, name); - if (h->context->debug) - fprintf(stderr, "ECCODES DEBUG grib_set_double %s=%g\n", name, val); - if (a) { + if (h->context->debug) { + if (strcmp(name, a->name)!=0) + fprintf(stderr, "ECCODES DEBUG grib_set_double %s=%g (a->name=%s)\n", name, val, a->name); + else + fprintf(stderr, "ECCODES DEBUG grib_set_double %s=%g\n", name, val); + } + if (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) return GRIB_READ_ONLY; @@ -392,10 +400,14 @@ int grib_set_string(grib_handle* h, const char* name, const char* val, size_t* l a = grib_find_accessor(h, name); - if (h->context->debug) - fprintf(stderr, "ECCODES DEBUG grib_set_string %s=|%s|\n", name, val); - if (a) { + if (h->context->debug) { + if (strcmp(name, a->name)!=0) + fprintf(stderr, "ECCODES DEBUG grib_set_string %s=|%s| (a->name=%s)\n", name, val, a->name); + else + fprintf(stderr, "ECCODES DEBUG grib_set_string %s=|%s|\n", name, val); + } + if (a->flags & GRIB_ACCESSOR_FLAG_READ_ONLY) return GRIB_READ_ONLY; From a27618253ead721d5aec83d9a810d4850b8096de Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 21 Jan 2021 20:07:02 +0000 Subject: [PATCH 248/683] CCSDS packing: add test for different orders --- src/grib_accessor_class_data_ccsds_packing.c | 9 +- tests/CMakeLists.txt | 1 + tests/grib_packing_order.c | 130942 ++++++++++++++++ 3 files changed, 130948 insertions(+), 4 deletions(-) create mode 100644 tests/grib_packing_order.c diff --git a/src/grib_accessor_class_data_ccsds_packing.c b/src/grib_accessor_class_data_ccsds_packing.c index 5a3f92732..fa013e8ed 100644 --- a/src/grib_accessor_class_data_ccsds_packing.c +++ b/src/grib_accessor_class_data_ccsds_packing.c @@ -330,7 +330,7 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) unsigned char* buf = NULL; unsigned char* encoded = NULL; size_t n_vals = 0; - long nn = 0; + //long nn = 0; long binary_scale_factor = 0; long decimal_scale_factor = 0; @@ -350,9 +350,10 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) self->dirty = 1; - if ((err = grib_value_count(a, &nn)) != GRIB_SUCCESS) - return err; - n_vals = nn; + //if ((err = grib_value_count(a, &nn)) != GRIB_SUCCESS) + // return err; + //n_vals = nn; + n_vals = *len; if ((err = grib_get_long_internal(hand, self->bits_per_value, &bits_per_value)) != GRIB_SUCCESS) return err; diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 924699959..d3bed0f04 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -35,6 +35,7 @@ list(APPEND test_bins grib_sh_ieee64 ieee grib_set_bytes + grib_packing_order grib_sh_imag grib_sh_spectral_complex grib_lam_bf diff --git a/tests/grib_packing_order.c b/tests/grib_packing_order.c new file mode 100644 index 000000000..480421ab6 --- /dev/null +++ b/tests/grib_packing_order.c @@ -0,0 +1,130942 @@ +#include +#include +#include + +#include "eccodes.h" +const double values[] = { +0.0000026822,0.0000026803,0.0000026786,0.0000026773,0.0000026768, +0.0000026771,0.0000026783,0.0000026801,0.0000026820,0.0000026840, +0.0000026855,0.0000026868,0.0000026873,0.0000026877,0.0000026878, +0.0000026879,0.0000026877,0.0000026870,0.0000026858,0.0000026842, +0.0000026811,0.0000026776,0.0000026744,0.0000026715,0.0000026693, +0.0000026687,0.0000026698,0.0000026731,0.0000026779,0.0000026830, +0.0000026875,0.0000026908,0.0000026930,0.0000026942,0.0000026942, +0.0000026937,0.0000026937,0.0000026941,0.0000026948,0.0000026952, +0.0000026944,0.0000026921,0.0000026887,0.0000026849,0.0000026757, +0.0000026721,0.0000026690,0.0000026660,0.0000026632,0.0000026609, +0.0000026604,0.0000026623,0.0000026678,0.0000026758,0.0000026836, +0.0000026895,0.0000026938,0.0000026969,0.0000026989,0.0000027001, +0.0000027005,0.0000026998,0.0000026989,0.0000026987,0.0000026998, +0.0000027014,0.0000027019,0.0000027000,0.0000026956,0.0000026903, +0.0000026849,0.0000026799,0.0000026679,0.0000026643,0.0000026613, +0.0000026586,0.0000026563,0.0000026544,0.0000026529,0.0000026527, +0.0000026549,0.0000026622,0.0000026726,0.0000026817,0.0000026875, +0.0000026913,0.0000026943,0.0000026974,0.0000027001,0.0000027021, +0.0000027036,0.0000027041,0.0000027032,0.0000027022,0.0000027024, +0.0000027046,0.0000027069,0.0000027067,0.0000027031,0.0000026966, +0.0000026888,0.0000026818,0.0000026764,0.0000026719,0.0000026610, +0.0000026573,0.0000026540,0.0000026509,0.0000026482,0.0000026462, +0.0000026454,0.0000026453,0.0000026457,0.0000026480,0.0000026564, +0.0000026686,0.0000026779,0.0000026829,0.0000026861,0.0000026898, +0.0000026943,0.0000026983,0.0000027009,0.0000027024,0.0000027040, +0.0000027054,0.0000027055,0.0000027046,0.0000027038,0.0000027049, +0.0000027083,0.0000027104,0.0000027090,0.0000027033,0.0000026949, +0.0000026860,0.0000026787,0.0000026733,0.0000026691,0.0000026650, +0.0000026572,0.0000026543,0.0000026512,0.0000026480,0.0000026448, +0.0000026414,0.0000026382,0.0000026373,0.0000026381,0.0000026394, +0.0000026423,0.0000026511,0.0000026641,0.0000026738,0.0000026778, +0.0000026813,0.0000026870,0.0000026935,0.0000026979,0.0000027003, +0.0000027023,0.0000027042,0.0000027056,0.0000027061,0.0000027060, +0.0000027055,0.0000027046,0.0000027042,0.0000027063,0.0000027102, +0.0000027114,0.0000027086,0.0000027012,0.0000026919,0.0000026834, +0.0000026773,0.0000026726,0.0000026685,0.0000026646,0.0000026608, +0.0000026563,0.0000026542,0.0000026520,0.0000026493,0.0000026461, +0.0000026425,0.0000026387,0.0000026347,0.0000026319,0.0000026319, +0.0000026340,0.0000026381,0.0000026470,0.0000026601,0.0000026701, +0.0000026735,0.0000026776,0.0000026858,0.0000026939,0.0000026975, +0.0000026982,0.0000027013,0.0000027063,0.0000027099,0.0000027111, +0.0000027107,0.0000027090,0.0000027071,0.0000027053,0.0000027039, +0.0000027041,0.0000027069,0.0000027103,0.0000027100,0.0000027052, +0.0000026973,0.0000026885,0.0000026815,0.0000026770,0.0000026732, +0.0000026693,0.0000026655,0.0000026620,0.0000026590,0.0000026591, +0.0000026583,0.0000026564,0.0000026535,0.0000026500,0.0000026463, +0.0000026430,0.0000026396,0.0000026349,0.0000026299,0.0000026277, +0.0000026296,0.0000026345,0.0000026433,0.0000026568,0.0000026678, +0.0000026703,0.0000026741,0.0000026843,0.0000026932,0.0000026952, +0.0000026951,0.0000026980,0.0000027049,0.0000027104,0.0000027131, +0.0000027143,0.0000027145,0.0000027135,0.0000027114,0.0000027085, +0.0000027046,0.0000027024,0.0000027032,0.0000027066,0.0000027085, +0.0000027060,0.0000026998,0.0000026920,0.0000026845,0.0000026798, +0.0000026772,0.0000026745,0.0000026710,0.0000026673,0.0000026637, +0.0000026611,0.0000026597,0.0000026679,0.0000026675,0.0000026654, +0.0000026622,0.0000026576,0.0000026521,0.0000026478,0.0000026446, +0.0000026421,0.0000026384,0.0000026322,0.0000026264,0.0000026262, +0.0000026313,0.0000026400,0.0000026533,0.0000026662,0.0000026690, +0.0000026714,0.0000026820,0.0000026916,0.0000026939,0.0000026922, +0.0000026942,0.0000027014,0.0000027068,0.0000027092,0.0000027103, +0.0000027111,0.0000027118,0.0000027123,0.0000027122,0.0000027113, +0.0000027080,0.0000027030,0.0000027001,0.0000027011,0.0000027042, +0.0000027044,0.0000027002,0.0000026939,0.0000026866,0.0000026805, +0.0000026783,0.0000026780,0.0000026767,0.0000026738,0.0000026698, +0.0000026660,0.0000026644,0.0000026647,0.0000026666,0.0000026800, +0.0000026800,0.0000026790,0.0000026765,0.0000026716,0.0000026655, +0.0000026586,0.0000026520,0.0000026471,0.0000026444,0.0000026415, +0.0000026364,0.0000026291,0.0000026249,0.0000026282,0.0000026370, +0.0000026497,0.0000026646,0.0000026695,0.0000026702,0.0000026795, +0.0000026891,0.0000026927,0.0000026917,0.0000026910,0.0000026970, +0.0000027037,0.0000027062,0.0000027071,0.0000027076,0.0000027076, +0.0000027080,0.0000027080,0.0000027075,0.0000027078,0.0000027076, +0.0000027051,0.0000027007,0.0000026977,0.0000026984,0.0000027001, +0.0000026987,0.0000026937,0.0000026878,0.0000026816,0.0000026768, +0.0000026761,0.0000026776,0.0000026779,0.0000026765,0.0000026730, +0.0000026692,0.0000026679,0.0000026700,0.0000026743,0.0000026781, +0.0000026915,0.0000026923,0.0000026921,0.0000026906,0.0000026872, +0.0000026824,0.0000026760,0.0000026685,0.0000026603,0.0000026530, +0.0000026477,0.0000026440,0.0000026402,0.0000026337,0.0000026270, +0.0000026264,0.0000026340,0.0000026458,0.0000026620,0.0000026706, +0.0000026705,0.0000026769,0.0000026856,0.0000026902,0.0000026918, +0.0000026899,0.0000026921,0.0000026998,0.0000027050,0.0000027074, +0.0000027091,0.0000027106,0.0000027117,0.0000027121,0.0000027108, +0.0000027076,0.0000027050,0.0000027022,0.0000027010,0.0000027001, +0.0000026978,0.0000026959,0.0000026957,0.0000026951,0.0000026923, +0.0000026877,0.0000026824,0.0000026767,0.0000026730,0.0000026733, +0.0000026758,0.0000026776,0.0000026778,0.0000026760,0.0000026732, +0.0000026725,0.0000026752,0.0000026805,0.0000026858,0.0000026896, +0.0000026979,0.0000026985,0.0000026987,0.0000026976,0.0000026960, +0.0000026930,0.0000026897,0.0000026857,0.0000026800,0.0000026721, +0.0000026629,0.0000026542,0.0000026479,0.0000026440,0.0000026391, +0.0000026321,0.0000026275,0.0000026315,0.0000026424,0.0000026581, +0.0000026713,0.0000026724,0.0000026757,0.0000026822,0.0000026862, +0.0000026902,0.0000026907,0.0000026895,0.0000026943,0.0000027019, +0.0000027074,0.0000027116,0.0000027153,0.0000027197,0.0000027244, +0.0000027268,0.0000027257,0.0000027213,0.0000027151,0.0000027072, +0.0000026998,0.0000026954,0.0000026941,0.0000026940,0.0000026934, +0.0000026921,0.0000026895,0.0000026862,0.0000026830,0.0000026786, +0.0000026733,0.0000026708,0.0000026714,0.0000026739,0.0000026762, +0.0000026777,0.0000026776,0.0000026766,0.0000026772,0.0000026808, +0.0000026861,0.0000026911,0.0000026947,0.0000026969,0.0000027016, +0.0000027028,0.0000027038,0.0000027033,0.0000027022,0.0000026998, +0.0000026976,0.0000026956,0.0000026932,0.0000026895,0.0000026831, +0.0000026741,0.0000026640,0.0000026546,0.0000026488,0.0000026446, +0.0000026385,0.0000026317,0.0000026305,0.0000026391,0.0000026536, +0.0000026700,0.0000026746,0.0000026763,0.0000026809,0.0000026832, +0.0000026871,0.0000026911,0.0000026914,0.0000026920,0.0000026981, +0.0000027052,0.0000027115,0.0000027170,0.0000027228,0.0000027303, +0.0000027379,0.0000027414,0.0000027411,0.0000027376,0.0000027323, +0.0000027250,0.0000027146,0.0000027028,0.0000026935,0.0000026894, +0.0000026891,0.0000026897,0.0000026882,0.0000026849,0.0000026818, +0.0000026795,0.0000026755,0.0000026708,0.0000026693,0.0000026709, +0.0000026733,0.0000026753,0.0000026769,0.0000026778,0.0000026785, +0.0000026808,0.0000026858,0.0000026911,0.0000026952,0.0000026978, +0.0000026993,0.0000027005,0.0000027085,0.0000027106,0.0000027122, +0.0000027122,0.0000027115,0.0000027097,0.0000027078,0.0000027055, +0.0000027025,0.0000026991,0.0000026951,0.0000026904,0.0000026840, +0.0000026748,0.0000026631,0.0000026545,0.0000026502,0.0000026446, +0.0000026377,0.0000026326,0.0000026360,0.0000026490,0.0000026661, +0.0000026758,0.0000026767,0.0000026806,0.0000026816,0.0000026840, +0.0000026884,0.0000026934,0.0000026947,0.0000026968,0.0000027028, +0.0000027100,0.0000027168,0.0000027223,0.0000027288,0.0000027376, +0.0000027459,0.0000027493,0.0000027489,0.0000027463,0.0000027428, +0.0000027382,0.0000027319,0.0000027230,0.0000027106,0.0000026972, +0.0000026879,0.0000026847,0.0000026852,0.0000026846,0.0000026821, +0.0000026794,0.0000026766,0.0000026723,0.0000026684,0.0000026682, +0.0000026712,0.0000026741,0.0000026755,0.0000026765,0.0000026774, +0.0000026789,0.0000026826,0.0000026889,0.0000026951,0.0000026990, +0.0000027011,0.0000027028,0.0000027046,0.0000027066,0.0000027150, +0.0000027159,0.0000027169,0.0000027172,0.0000027171,0.0000027166, +0.0000027165,0.0000027163,0.0000027147,0.0000027114,0.0000027060, +0.0000026999,0.0000026951,0.0000026912,0.0000026843,0.0000026721, +0.0000026604,0.0000026553,0.0000026505,0.0000026440,0.0000026378, +0.0000026355,0.0000026445,0.0000026605,0.0000026749,0.0000026778, +0.0000026796,0.0000026810,0.0000026819,0.0000026849,0.0000026906, +0.0000026972,0.0000026989,0.0000027019,0.0000027073,0.0000027143, +0.0000027211,0.0000027261,0.0000027318,0.0000027401,0.0000027485, +0.0000027516,0.0000027509,0.0000027483,0.0000027455,0.0000027423, +0.0000027383,0.0000027343,0.0000027285,0.0000027187,0.0000027051, +0.0000026913,0.0000026834,0.0000026812,0.0000026812,0.0000026805, +0.0000026786,0.0000026745,0.0000026691,0.0000026661,0.0000026669, +0.0000026712,0.0000026746,0.0000026760,0.0000026763,0.0000026766, +0.0000026783,0.0000026827,0.0000026898,0.0000026973,0.0000027026, +0.0000027052,0.0000027073,0.0000027099,0.0000027125,0.0000027140, +0.0000027162,0.0000027154,0.0000027163,0.0000027173,0.0000027180, +0.0000027185,0.0000027191,0.0000027199,0.0000027207,0.0000027207, +0.0000027189,0.0000027142,0.0000027065,0.0000026994,0.0000026955, +0.0000026914,0.0000026810,0.0000026664,0.0000026590,0.0000026560, +0.0000026501,0.0000026441,0.0000026389,0.0000026413,0.0000026540, +0.0000026702,0.0000026785,0.0000026789,0.0000026804,0.0000026802, +0.0000026830,0.0000026868,0.0000026937,0.0000027001,0.0000027029, +0.0000027066,0.0000027111,0.0000027168,0.0000027226,0.0000027271, +0.0000027319,0.0000027392,0.0000027476,0.0000027514,0.0000027508, +0.0000027479,0.0000027449,0.0000027420,0.0000027389,0.0000027359, +0.0000027323,0.0000027283,0.0000027225,0.0000027128,0.0000026988, +0.0000026858,0.0000026800,0.0000026795,0.0000026798,0.0000026787, +0.0000026735,0.0000026665,0.0000026634,0.0000026650,0.0000026700, +0.0000026742,0.0000026762,0.0000026764,0.0000026764,0.0000026775, +0.0000026819,0.0000026900,0.0000026995,0.0000027069,0.0000027106, +0.0000027123,0.0000027147,0.0000027175,0.0000027189,0.0000027178, +0.0000027134,0.0000027134,0.0000027168,0.0000027211,0.0000027242, +0.0000027258,0.0000027270,0.0000027273,0.0000027264,0.0000027248, +0.0000027228,0.0000027215,0.0000027197,0.0000027140,0.0000027050, +0.0000026982,0.0000026955,0.0000026891,0.0000026735,0.0000026613, +0.0000026596,0.0000026559,0.0000026498,0.0000026437,0.0000026411, +0.0000026477,0.0000026631,0.0000026758,0.0000026790,0.0000026790, +0.0000026794,0.0000026802,0.0000026850,0.0000026893,0.0000026961, +0.0000027015,0.0000027063,0.0000027113,0.0000027148,0.0000027179, +0.0000027213,0.0000027249,0.0000027286,0.0000027346,0.0000027433, +0.0000027491,0.0000027494,0.0000027467,0.0000027434,0.0000027405, +0.0000027380,0.0000027353,0.0000027317,0.0000027281,0.0000027250, +0.0000027221,0.0000027173,0.0000027074,0.0000026932,0.0000026826, +0.0000026802,0.0000026803,0.0000026791,0.0000026728,0.0000026646, +0.0000026611,0.0000026625,0.0000026681,0.0000026730,0.0000026756, +0.0000026764,0.0000026767,0.0000026778,0.0000026822,0.0000026908, +0.0000027017,0.0000027109,0.0000027161,0.0000027178,0.0000027191, +0.0000027209,0.0000027215,0.0000027202,0.0000027168,0.0000027139, +0.0000027190,0.0000027251,0.0000027282,0.0000027304,0.0000027314, +0.0000027333,0.0000027361,0.0000027371,0.0000027369,0.0000027336, +0.0000027276,0.0000027223,0.0000027207,0.0000027194,0.0000027124, +0.0000027021,0.0000026971,0.0000026945,0.0000026823,0.0000026645, +0.0000026600,0.0000026600,0.0000026558,0.0000026484,0.0000026442, +0.0000026440,0.0000026551,0.0000026696,0.0000026776,0.0000026778, +0.0000026781,0.0000026775,0.0000026810,0.0000026871,0.0000026921, +0.0000026971,0.0000027019,0.0000027088,0.0000027153,0.0000027178, +0.0000027178,0.0000027177,0.0000027190,0.0000027216,0.0000027264, +0.0000027346,0.0000027425,0.0000027452,0.0000027442,0.0000027415, +0.0000027391,0.0000027371,0.0000027349,0.0000027319,0.0000027281, +0.0000027244,0.0000027215,0.0000027198,0.0000027181,0.0000027131, +0.0000027020,0.0000026898,0.0000026837,0.0000026824,0.0000026796, +0.0000026720,0.0000026633,0.0000026593,0.0000026604,0.0000026655, +0.0000026708,0.0000026741,0.0000026760,0.0000026774,0.0000026799, +0.0000026854,0.0000026942,0.0000027044,0.0000027134,0.0000027194, +0.0000027226,0.0000027242,0.0000027248,0.0000027240,0.0000027214, +0.0000027175,0.0000027140,0.0000027242,0.0000027270,0.0000027232, +0.0000027170,0.0000027134,0.0000027128,0.0000027150,0.0000027200, +0.0000027265,0.0000027333,0.0000027395,0.0000027409,0.0000027361, +0.0000027272,0.0000027209,0.0000027208,0.0000027186,0.0000027088, +0.0000026985,0.0000026965,0.0000026909,0.0000026720,0.0000026595, +0.0000026605,0.0000026611,0.0000026538,0.0000026479,0.0000026449, +0.0000026480,0.0000026623,0.0000026732,0.0000026768,0.0000026757, +0.0000026757,0.0000026762,0.0000026822,0.0000026895,0.0000026946, +0.0000026976,0.0000027021,0.0000027104,0.0000027172,0.0000027190, +0.0000027169,0.0000027137,0.0000027119,0.0000027123,0.0000027151, +0.0000027217,0.0000027306,0.0000027372,0.0000027386,0.0000027371, +0.0000027356,0.0000027347,0.0000027333,0.0000027310,0.0000027287, +0.0000027261,0.0000027228,0.0000027195,0.0000027172,0.0000027163, +0.0000027147,0.0000027088,0.0000026985,0.0000026899,0.0000026852, +0.0000026801,0.0000026714,0.0000026625,0.0000026585,0.0000026594, +0.0000026631,0.0000026671,0.0000026707,0.0000026745,0.0000026787, +0.0000026838,0.0000026908,0.0000026999,0.0000027089,0.0000027157, +0.0000027203,0.0000027245,0.0000027280,0.0000027287,0.0000027267, +0.0000027230,0.0000027182,0.0000027152,0.0000027173,0.0000027240, +0.0000027081,0.0000026941,0.0000026867,0.0000026856,0.0000026868, +0.0000026898,0.0000026936,0.0000026982,0.0000027044,0.0000027138, +0.0000027258,0.0000027368,0.0000027405,0.0000027363,0.0000027256, +0.0000027203,0.0000027206,0.0000027158,0.0000027030,0.0000026966, +0.0000026966,0.0000026834,0.0000026622,0.0000026590,0.0000026629, +0.0000026613,0.0000026524,0.0000026478,0.0000026460,0.0000026539, +0.0000026675,0.0000026744,0.0000026753,0.0000026732,0.0000026734, +0.0000026756,0.0000026834,0.0000026918,0.0000026963,0.0000026983, +0.0000027027,0.0000027106,0.0000027166,0.0000027176,0.0000027151, +0.0000027107,0.0000027062,0.0000027033,0.0000027032,0.0000027070, +0.0000027144,0.0000027236,0.0000027301,0.0000027313,0.0000027302, +0.0000027300,0.0000027298,0.0000027283,0.0000027269,0.0000027263, +0.0000027251,0.0000027223,0.0000027185,0.0000027153,0.0000027143, +0.0000027142,0.0000027120,0.0000027053,0.0000026965,0.0000026888, +0.0000026809,0.0000026711,0.0000026625,0.0000026592,0.0000026601, +0.0000026624,0.0000026641,0.0000026672,0.0000026731,0.0000026806, +0.0000026886,0.0000026968,0.0000027055,0.0000027135,0.0000027190, +0.0000027218,0.0000027248,0.0000027290,0.0000027313,0.0000027297, +0.0000027254,0.0000027195,0.0000027164,0.0000027218,0.0000027292, +0.0000026955,0.0000026794,0.0000026751,0.0000026765,0.0000026793, +0.0000026829,0.0000026866,0.0000026895,0.0000026914,0.0000026921, +0.0000026914,0.0000026949,0.0000027042,0.0000027198,0.0000027354, +0.0000027407,0.0000027343,0.0000027225,0.0000027190,0.0000027196, +0.0000027103,0.0000026985,0.0000026982,0.0000026947,0.0000026722, +0.0000026592,0.0000026610,0.0000026664,0.0000026606,0.0000026517, +0.0000026479,0.0000026483,0.0000026600,0.0000026703,0.0000026743, +0.0000026734,0.0000026705,0.0000026716,0.0000026752,0.0000026844, +0.0000026932,0.0000026973,0.0000026994,0.0000027038,0.0000027099, +0.0000027134,0.0000027135,0.0000027116,0.0000027083,0.0000027035, +0.0000026980,0.0000026937,0.0000026931,0.0000026962,0.0000027051, +0.0000027165,0.0000027240,0.0000027259,0.0000027261,0.0000027262, +0.0000027254,0.0000027239,0.0000027239,0.0000027248,0.0000027242, +0.0000027213,0.0000027173,0.0000027138,0.0000027126,0.0000027126, +0.0000027118,0.0000027086,0.0000027016,0.0000026923,0.0000026820, +0.0000026713,0.0000026634,0.0000026614,0.0000026626,0.0000026636, +0.0000026638,0.0000026657,0.0000026726,0.0000026830,0.0000026934, +0.0000027024,0.0000027104,0.0000027174,0.0000027221,0.0000027243, +0.0000027259,0.0000027288,0.0000027316,0.0000027318,0.0000027288, +0.0000027228,0.0000027195,0.0000027260,0.0000027312,0.0000027190, +0.0000026760,0.0000026746,0.0000026747,0.0000026760,0.0000026776, +0.0000026808,0.0000026848,0.0000026888,0.0000026918,0.0000026925, +0.0000026915,0.0000026895,0.0000026879,0.0000026899,0.0000027005, +0.0000027191,0.0000027367,0.0000027394,0.0000027298,0.0000027186, +0.0000027191,0.0000027162,0.0000027039,0.0000026983,0.0000027012, +0.0000026864,0.0000026641,0.0000026589,0.0000026656,0.0000026689, +0.0000026592,0.0000026513,0.0000026477,0.0000026512,0.0000026642, +0.0000026718,0.0000026740,0.0000026711,0.0000026679,0.0000026700, +0.0000026751,0.0000026849,0.0000026932,0.0000026976,0.0000027006, +0.0000027052,0.0000027091,0.0000027099,0.0000027085,0.0000027067, +0.0000027048,0.0000027016,0.0000026964,0.0000026896,0.0000026833, +0.0000026808,0.0000026849,0.0000026972,0.0000027116,0.0000027208, +0.0000027237,0.0000027242,0.0000027237,0.0000027222,0.0000027215, +0.0000027224,0.0000027228,0.0000027215,0.0000027185,0.0000027149, +0.0000027119,0.0000027105,0.0000027101,0.0000027100,0.0000027088, +0.0000027040,0.0000026945,0.0000026826,0.0000026717,0.0000026654, +0.0000026646,0.0000026660,0.0000026661,0.0000026649,0.0000026663, +0.0000026737,0.0000026856,0.0000026973,0.0000027067,0.0000027145, +0.0000027208,0.0000027251,0.0000027272,0.0000027283,0.0000027297, +0.0000027312,0.0000027320,0.0000027313,0.0000027273,0.0000027247, +0.0000027296,0.0000027317,0.0000027154,0.0000026894,0.0000026752, +0.0000026751,0.0000026742,0.0000026744,0.0000026760,0.0000026784, +0.0000026815,0.0000026844,0.0000026881,0.0000026910,0.0000026923, +0.0000026916,0.0000026896,0.0000026865,0.0000026851,0.0000026886, +0.0000027016,0.0000027223,0.0000027382,0.0000027377,0.0000027239, +0.0000027172,0.0000027180,0.0000027117,0.0000027002,0.0000027019, +0.0000026984,0.0000026749,0.0000026613,0.0000026613,0.0000026706, +0.0000026694,0.0000026577,0.0000026504,0.0000026484,0.0000026551, +0.0000026673,0.0000026726,0.0000026731,0.0000026694,0.0000026659, +0.0000026688,0.0000026746,0.0000026841,0.0000026918,0.0000026971, +0.0000027017,0.0000027062,0.0000027083,0.0000027072,0.0000027044, +0.0000027020,0.0000027001,0.0000026977,0.0000026938,0.0000026879, +0.0000026806,0.0000026733,0.0000026709,0.0000026768,0.0000026930, +0.0000027106,0.0000027205,0.0000027227,0.0000027225,0.0000027214, +0.0000027203,0.0000027205,0.0000027206,0.0000027192,0.0000027163, +0.0000027131,0.0000027106,0.0000027089,0.0000027080,0.0000027076, +0.0000027077,0.0000027075,0.0000027034,0.0000026941,0.0000026823, +0.0000026724,0.0000026678,0.0000026682,0.0000026693,0.0000026685, +0.0000026677,0.0000026691,0.0000026764,0.0000026879,0.0000026991, +0.0000027082,0.0000027161,0.0000027226,0.0000027271,0.0000027295, +0.0000027310,0.0000027321,0.0000027324,0.0000027323,0.0000027323, +0.0000027301,0.0000027283,0.0000027329,0.0000027349,0.0000027176, +0.0000026893,0.0000026761,0.0000026753,0.0000026763,0.0000026791, +0.0000026822,0.0000026846,0.0000026861,0.0000026865,0.0000026859, +0.0000026854,0.0000026862,0.0000026882,0.0000026903,0.0000026911, +0.0000026900,0.0000026871,0.0000026842,0.0000026834,0.0000026901, +0.0000027061,0.0000027270,0.0000027390,0.0000027330,0.0000027185, +0.0000027169,0.0000027174,0.0000027072,0.0000027010,0.0000027041, +0.0000026888,0.0000026681,0.0000026608,0.0000026659,0.0000026744, +0.0000026682,0.0000026567,0.0000026511,0.0000026515,0.0000026604, +0.0000026703,0.0000026732,0.0000026724,0.0000026680,0.0000026643, +0.0000026673,0.0000026730,0.0000026820,0.0000026897,0.0000026958, +0.0000027016,0.0000027057,0.0000027068,0.0000027049,0.0000027015, +0.0000026985,0.0000026962,0.0000026936,0.0000026901,0.0000026851, +0.0000026793,0.0000026732,0.0000026674,0.0000026664,0.0000026745, +0.0000026936,0.0000027122,0.0000027207,0.0000027212,0.0000027200, +0.0000027188,0.0000027187,0.0000027193,0.0000027180,0.0000027147, +0.0000027107,0.0000027074,0.0000027052,0.0000027044,0.0000027044, +0.0000027047,0.0000027052,0.0000027048,0.0000027007,0.0000026920, +0.0000026814,0.0000026730,0.0000026702,0.0000026712,0.0000026719, +0.0000026704,0.0000026699,0.0000026729,0.0000026794,0.0000026885, +0.0000026979,0.0000027063,0.0000027145,0.0000027219,0.0000027277, +0.0000027311,0.0000027331,0.0000027343,0.0000027346,0.0000027342, +0.0000027336,0.0000027315,0.0000027296,0.0000027347,0.0000027396, +0.0000027240,0.0000026941,0.0000026778,0.0000026760,0.0000026804, +0.0000026864,0.0000026920,0.0000026956,0.0000026980,0.0000027004, +0.0000027019,0.0000027001,0.0000026947,0.0000026882,0.0000026852, +0.0000026853,0.0000026881,0.0000026911,0.0000026923,0.0000026892, +0.0000026846,0.0000026831,0.0000026848,0.0000026944,0.0000027129, +0.0000027323,0.0000027380,0.0000027264,0.0000027155,0.0000027189, +0.0000027154,0.0000027034,0.0000027044,0.0000027011,0.0000026801, +0.0000026649,0.0000026628,0.0000026716,0.0000026764,0.0000026669, +0.0000026579,0.0000026549,0.0000026571,0.0000026661,0.0000026739, +0.0000026749,0.0000026716,0.0000026668,0.0000026632,0.0000026654, +0.0000026711,0.0000026790,0.0000026870,0.0000026935,0.0000026996, +0.0000027029,0.0000027035,0.0000027014,0.0000026979,0.0000026950, +0.0000026930,0.0000026909,0.0000026881,0.0000026839,0.0000026785, +0.0000026732,0.0000026692,0.0000026665,0.0000026669,0.0000026767, +0.0000026965,0.0000027143,0.0000027199,0.0000027189,0.0000027168, +0.0000027161,0.0000027171,0.0000027174,0.0000027154,0.0000027111, +0.0000027068,0.0000027029,0.0000027001,0.0000026987,0.0000026989, +0.0000026999,0.0000027007,0.0000026998,0.0000026955,0.0000026882, +0.0000026799,0.0000026732,0.0000026714,0.0000026732,0.0000026736, +0.0000026719,0.0000026723,0.0000026764,0.0000026821,0.0000026880, +0.0000026947,0.0000027023,0.0000027109,0.0000027195,0.0000027265, +0.0000027315,0.0000027343,0.0000027358,0.0000027365,0.0000027367, +0.0000027366,0.0000027336,0.0000027296,0.0000027331,0.0000027400, +0.0000027324,0.0000027034,0.0000026819,0.0000026769,0.0000026771, +0.0000026910,0.0000026930,0.0000026938,0.0000026957,0.0000026992, +0.0000027045,0.0000027105,0.0000027137,0.0000027119,0.0000027033, +0.0000026920,0.0000026851,0.0000026848,0.0000026883,0.0000026932, +0.0000026954,0.0000026934,0.0000026882,0.0000026845,0.0000026849, +0.0000026893,0.0000027021,0.0000027214,0.0000027375,0.0000027368, +0.0000027193,0.0000027178,0.0000027203,0.0000027114,0.0000027041, +0.0000027065,0.0000026938,0.0000026735,0.0000026644,0.0000026668, +0.0000026758,0.0000026764,0.0000026674,0.0000026621,0.0000026614, +0.0000026645,0.0000026723,0.0000026780,0.0000026770,0.0000026705, +0.0000026658,0.0000026627,0.0000026647,0.0000026694,0.0000026759, +0.0000026840,0.0000026906,0.0000026962,0.0000026984,0.0000026983, +0.0000026958,0.0000026919,0.0000026890,0.0000026876,0.0000026867, +0.0000026853,0.0000026829,0.0000026794,0.0000026751,0.0000026712, +0.0000026693,0.0000026689,0.0000026702,0.0000026802,0.0000026998, +0.0000027158,0.0000027191,0.0000027161,0.0000027138,0.0000027141, +0.0000027161,0.0000027164,0.0000027138,0.0000027095,0.0000027047, +0.0000027000,0.0000026960,0.0000026932,0.0000026921,0.0000026927, +0.0000026934,0.0000026926,0.0000026891,0.0000026839,0.0000026778, +0.0000026731,0.0000026728,0.0000026751,0.0000026753,0.0000026736, +0.0000026749,0.0000026794,0.0000026838,0.0000026874,0.0000026921, +0.0000026985,0.0000027065,0.0000027157,0.0000027236,0.0000027294, +0.0000027338,0.0000027366,0.0000027378,0.0000027387,0.0000027396, +0.0000027377,0.0000027312,0.0000027303,0.0000027388,0.0000027378, +0.0000027147,0.0000026895,0.0000026810,0.0000026813,0.0000026853, +0.0000026920,0.0000026885,0.0000026876,0.0000026899,0.0000026948, +0.0000027019,0.0000027100,0.0000027168,0.0000027203,0.0000027186, +0.0000027101,0.0000026972,0.0000026874,0.0000026854,0.0000026888, +0.0000026944,0.0000026980,0.0000026983,0.0000026941,0.0000026895, +0.0000026882,0.0000026901,0.0000026971,0.0000027124,0.0000027307, +0.0000027407,0.0000027304,0.0000027166,0.0000027211,0.0000027196, +0.0000027077,0.0000027068,0.0000027040,0.0000026863,0.0000026688, +0.0000026661,0.0000026713,0.0000026783,0.0000026775,0.0000026711, +0.0000026698,0.0000026709,0.0000026737,0.0000026789,0.0000026826, +0.0000026799,0.0000026710,0.0000026657,0.0000026634,0.0000026649, +0.0000026682,0.0000026729,0.0000026808,0.0000026878,0.0000026921, +0.0000026932,0.0000026925,0.0000026892,0.0000026844,0.0000026809, +0.0000026799,0.0000026803,0.0000026800,0.0000026786,0.0000026774, +0.0000026762,0.0000026748,0.0000026733,0.0000026730,0.0000026732, +0.0000026745,0.0000026839,0.0000027024,0.0000027156,0.0000027166, +0.0000027129,0.0000027111,0.0000027132,0.0000027160,0.0000027157, +0.0000027127,0.0000027087,0.0000027035,0.0000026974,0.0000026919, +0.0000026878,0.0000026853,0.0000026846,0.0000026849,0.0000026847, +0.0000026834,0.0000026801,0.0000026751,0.0000026727,0.0000026740, +0.0000026767,0.0000026765,0.0000026758,0.0000026784,0.0000026831, +0.0000026861,0.0000026877,0.0000026907,0.0000026962,0.0000027031, +0.0000027108,0.0000027188,0.0000027254,0.0000027306,0.0000027351, +0.0000027385,0.0000027402,0.0000027415,0.0000027408,0.0000027348, +0.0000027299,0.0000027358,0.0000027409,0.0000027258,0.0000026996, +0.0000026878,0.0000026879,0.0000026908,0.0000026935,0.0000026881, +0.0000026831,0.0000026822,0.0000026854,0.0000026913,0.0000026985, +0.0000027066,0.0000027144,0.0000027203,0.0000027226,0.0000027224, +0.0000027150,0.0000027014,0.0000026891,0.0000026857,0.0000026888, +0.0000026950,0.0000027004,0.0000027026,0.0000027007,0.0000026967, +0.0000026942,0.0000026936,0.0000026977,0.0000027071,0.0000027227, +0.0000027394,0.0000027411,0.0000027211,0.0000027197,0.0000027234, +0.0000027167,0.0000027069,0.0000027086,0.0000026985,0.0000026794, +0.0000026671,0.0000026697,0.0000026757,0.0000026805,0.0000026801, +0.0000026778,0.0000026793,0.0000026819,0.0000026835,0.0000026860, +0.0000026878,0.0000026842,0.0000026744,0.0000026670,0.0000026647, +0.0000026657,0.0000026673,0.0000026703,0.0000026773,0.0000026849, +0.0000026884,0.0000026890,0.0000026877,0.0000026840,0.0000026787, +0.0000026744,0.0000026734,0.0000026745,0.0000026752,0.0000026744, +0.0000026738,0.0000026737,0.0000026747,0.0000026764,0.0000026777, +0.0000026783,0.0000026777,0.0000026783,0.0000026869,0.0000027040, +0.0000027149,0.0000027140,0.0000027102,0.0000027101,0.0000027138, +0.0000027161,0.0000027151,0.0000027123,0.0000027076,0.0000027005, +0.0000026926,0.0000026866,0.0000026829,0.0000026801,0.0000026785, +0.0000026785,0.0000026791,0.0000026789,0.0000026760,0.0000026724, +0.0000026722,0.0000026756,0.0000026780,0.0000026774,0.0000026771, +0.0000026815,0.0000026875,0.0000026906,0.0000026914,0.0000026927, +0.0000026961,0.0000027015,0.0000027076,0.0000027138,0.0000027205, +0.0000027265,0.0000027320,0.0000027370,0.0000027407,0.0000027426, +0.0000027422,0.0000027375,0.0000027308,0.0000027336,0.0000027411, +0.0000027359,0.0000027110,0.0000026940,0.0000026934,0.0000026974, +0.0000026994,0.0000026954,0.0000026845,0.0000026801,0.0000026802, +0.0000026838,0.0000026891,0.0000026947,0.0000027011,0.0000027080, +0.0000027145,0.0000027203,0.0000027247,0.0000027260,0.0000027196, +0.0000027047,0.0000026905,0.0000026868,0.0000026903,0.0000026959, +0.0000027017,0.0000027051,0.0000027059,0.0000027031,0.0000027002, +0.0000026988,0.0000026995,0.0000027053,0.0000027175,0.0000027335, +0.0000027440,0.0000027328,0.0000027184,0.0000027240,0.0000027244, +0.0000027135,0.0000027097,0.0000027064,0.0000026936,0.0000026732, +0.0000026684,0.0000026739,0.0000026785,0.0000026824,0.0000026847, +0.0000026863,0.0000026899,0.0000026923,0.0000026932,0.0000026943, +0.0000026937,0.0000026897,0.0000026802,0.0000026703,0.0000026660, +0.0000026669,0.0000026668,0.0000026680,0.0000026734,0.0000026818, +0.0000026859,0.0000026859,0.0000026842,0.0000026810,0.0000026761, +0.0000026714,0.0000026699,0.0000026707,0.0000026723,0.0000026729, +0.0000026732,0.0000026731,0.0000026734,0.0000026753,0.0000026791, +0.0000026824,0.0000026833,0.0000026814,0.0000026813,0.0000026889, +0.0000027044,0.0000027132,0.0000027116,0.0000027090,0.0000027105, +0.0000027150,0.0000027170,0.0000027158,0.0000027124,0.0000027051, +0.0000026949,0.0000026862,0.0000026813,0.0000026787,0.0000026764, +0.0000026745,0.0000026740,0.0000026742,0.0000026735,0.0000026713, +0.0000026703,0.0000026731,0.0000026776,0.0000026795,0.0000026784, +0.0000026786,0.0000026837,0.0000026910,0.0000026959,0.0000026981, +0.0000026998,0.0000027014,0.0000027037,0.0000027072,0.0000027114, +0.0000027161,0.0000027217,0.0000027277,0.0000027335,0.0000027384, +0.0000027416,0.0000027420,0.0000027380,0.0000027311,0.0000027310, +0.0000027409,0.0000027439,0.0000027251,0.0000027022,0.0000026969, +0.0000027014,0.0000027053,0.0000027029,0.0000026935,0.0000026825, +0.0000026798,0.0000026799,0.0000026822,0.0000026851,0.0000026884, +0.0000026925,0.0000026980,0.0000027045,0.0000027120,0.0000027207, +0.0000027285,0.0000027314,0.0000027249,0.0000027090,0.0000026948, +0.0000026911,0.0000026931,0.0000026968,0.0000027016,0.0000027058, +0.0000027072,0.0000027063,0.0000027046,0.0000027040,0.0000027032, +0.0000027063,0.0000027150,0.0000027276,0.0000027432,0.0000027432, +0.0000027223,0.0000027232,0.0000027273,0.0000027236,0.0000027116, +0.0000027099,0.0000027028,0.0000026875,0.0000026697,0.0000026704, +0.0000026775,0.0000026806,0.0000026847,0.0000026899,0.0000026954, +0.0000027003,0.0000027025,0.0000027031,0.0000027024,0.0000027004, +0.0000026960,0.0000026872,0.0000026757,0.0000026684,0.0000026680, +0.0000026675,0.0000026665,0.0000026697,0.0000026784,0.0000026840, +0.0000026831,0.0000026807,0.0000026781,0.0000026742,0.0000026700, +0.0000026682,0.0000026682,0.0000026695,0.0000026718,0.0000026744, +0.0000026761,0.0000026766,0.0000026765,0.0000026778,0.0000026817, +0.0000026862,0.0000026873,0.0000026842,0.0000026829,0.0000026896, +0.0000027039,0.0000027109,0.0000027096,0.0000027084,0.0000027117, +0.0000027167,0.0000027184,0.0000027173,0.0000027122,0.0000027011, +0.0000026883,0.0000026802,0.0000026766,0.0000026742,0.0000026719, +0.0000026700,0.0000026691,0.0000026690,0.0000026689,0.0000026692, +0.0000026714,0.0000026764,0.0000026804,0.0000026808,0.0000026795, +0.0000026808,0.0000026864,0.0000026936,0.0000026992,0.0000027032, +0.0000027066,0.0000027089,0.0000027092,0.0000027093,0.0000027109, +0.0000027139,0.0000027175,0.0000027216,0.0000027266,0.0000027320, +0.0000027365,0.0000027383,0.0000027364,0.0000027305,0.0000027281, +0.0000027367,0.0000027467,0.0000027402,0.0000027151,0.0000027005, +0.0000027023,0.0000027099,0.0000027111,0.0000027026,0.0000026906, +0.0000026825,0.0000026800,0.0000026790,0.0000026783,0.0000026788, +0.0000026813,0.0000026856,0.0000026905,0.0000026957,0.0000027019, +0.0000027105,0.0000027221,0.0000027331,0.0000027373,0.0000027311, +0.0000027149,0.0000027013,0.0000026969,0.0000026963,0.0000026972, +0.0000026994,0.0000027032,0.0000027062,0.0000027067,0.0000027071, +0.0000027083,0.0000027077,0.0000027078,0.0000027143,0.0000027238, +0.0000027386,0.0000027459,0.0000027332,0.0000027216,0.0000027283, +0.0000027296,0.0000027185,0.0000027109,0.0000027073,0.0000027003, +0.0000026805,0.0000026684,0.0000026742,0.0000026806,0.0000026829, +0.0000026872,0.0000026948,0.0000027037,0.0000027100,0.0000027129, +0.0000027124,0.0000027104,0.0000027075,0.0000027023,0.0000026946, +0.0000026830,0.0000026727,0.0000026695,0.0000026691,0.0000026667, +0.0000026673,0.0000026746,0.0000026816,0.0000026806,0.0000026771, +0.0000026737,0.0000026703,0.0000026671,0.0000026659,0.0000026660, +0.0000026668,0.0000026691,0.0000026733,0.0000026781,0.0000026811, +0.0000026822,0.0000026812,0.0000026810,0.0000026840,0.0000026891, +0.0000026907,0.0000026862,0.0000026823,0.0000026890,0.0000027029, +0.0000027092,0.0000027084,0.0000027084,0.0000027127,0.0000027185, +0.0000027207,0.0000027193,0.0000027115,0.0000026964,0.0000026822, +0.0000026751,0.0000026723,0.0000026700,0.0000026681,0.0000026670, +0.0000026669,0.0000026677,0.0000026693,0.0000026728,0.0000026776, +0.0000026820,0.0000026838,0.0000026835,0.0000026833,0.0000026858, +0.0000026908,0.0000026959,0.0000026998,0.0000027036,0.0000027077, +0.0000027113,0.0000027131,0.0000027128,0.0000027117,0.0000027120, +0.0000027138,0.0000027160,0.0000027187,0.0000027222,0.0000027262, +0.0000027297,0.0000027306,0.0000027283,0.0000027262,0.0000027316, +0.0000027455,0.0000027498,0.0000027330,0.0000027102,0.0000027036, +0.0000027092,0.0000027157,0.0000027133,0.0000027014,0.0000026894, +0.0000026836,0.0000026804,0.0000026764,0.0000026731,0.0000026744, +0.0000026794,0.0000026856,0.0000026915,0.0000026959,0.0000026986, +0.0000027026,0.0000027100,0.0000027237,0.0000027375,0.0000027430, +0.0000027364,0.0000027207,0.0000027075,0.0000027017,0.0000026986, +0.0000026960,0.0000026952,0.0000026982,0.0000027030,0.0000027057, +0.0000027083,0.0000027113,0.0000027113,0.0000027099,0.0000027145, +0.0000027222,0.0000027341,0.0000027457,0.0000027435,0.0000027237, +0.0000027274,0.0000027306,0.0000027278,0.0000027137,0.0000027088, +0.0000027048,0.0000026963,0.0000026751,0.0000026705,0.0000026780, +0.0000026833,0.0000026856,0.0000026900,0.0000026985,0.0000027092, +0.0000027183,0.0000027222,0.0000027214,0.0000027189,0.0000027144, +0.0000027087,0.0000027021,0.0000026917,0.0000026787,0.0000026714, +0.0000026703,0.0000026683,0.0000026663,0.0000026709,0.0000026788, +0.0000026795,0.0000026751,0.0000026696,0.0000026650,0.0000026614, +0.0000026606,0.0000026621,0.0000026640,0.0000026664,0.0000026703, +0.0000026763,0.0000026822,0.0000026859,0.0000026869,0.0000026851, +0.0000026837,0.0000026869,0.0000026925,0.0000026939,0.0000026874, +0.0000026814,0.0000026882,0.0000027021,0.0000027084,0.0000027078, +0.0000027084,0.0000027136,0.0000027200,0.0000027228,0.0000027210, +0.0000027105,0.0000026918,0.0000026771,0.0000026714,0.0000026700, +0.0000026691,0.0000026682,0.0000026684,0.0000026697,0.0000026725, +0.0000026767,0.0000026815,0.0000026854,0.0000026873,0.0000026877, +0.0000026881,0.0000026902,0.0000026939,0.0000026972,0.0000026989, +0.0000027001,0.0000027022,0.0000027057,0.0000027095,0.0000027125, +0.0000027142,0.0000027139,0.0000027125,0.0000027112,0.0000027106, +0.0000027111,0.0000027129,0.0000027153,0.0000027180,0.0000027207, +0.0000027222,0.0000027226,0.0000027271,0.0000027405,0.0000027521, +0.0000027481,0.0000027265,0.0000027088,0.0000027074,0.0000027157, +0.0000027205,0.0000027144,0.0000027010,0.0000026897,0.0000026847, +0.0000026802,0.0000026739,0.0000026707,0.0000026744,0.0000026833, +0.0000026925,0.0000026997,0.0000027035,0.0000027040,0.0000027035, +0.0000027052,0.0000027124,0.0000027274,0.0000027428,0.0000027475, +0.0000027399,0.0000027246,0.0000027123,0.0000027049,0.0000026988, +0.0000026930,0.0000026900,0.0000026928,0.0000026989,0.0000027034, +0.0000027075,0.0000027120,0.0000027134,0.0000027118,0.0000027147, +0.0000027223,0.0000027313,0.0000027436,0.0000027470,0.0000027321, +0.0000027243,0.0000027311,0.0000027310,0.0000027212,0.0000027098, +0.0000027057,0.0000027040,0.0000026903,0.0000026724,0.0000026725, +0.0000026809,0.0000026858,0.0000026882,0.0000026931,0.0000027012, +0.0000027129,0.0000027230,0.0000027285,0.0000027292,0.0000027268, +0.0000027216,0.0000027152,0.0000027088,0.0000026998,0.0000026866, +0.0000026748,0.0000026711,0.0000026698,0.0000026671,0.0000026683, +0.0000026756,0.0000026792,0.0000026752,0.0000026689,0.0000026625, +0.0000026570,0.0000026552,0.0000026567,0.0000026600,0.0000026637, +0.0000026677,0.0000026730,0.0000026798,0.0000026856,0.0000026891, +0.0000026900,0.0000026885,0.0000026875,0.0000026907,0.0000026963, +0.0000026966,0.0000026880,0.0000026806,0.0000026869,0.0000027010, +0.0000027080,0.0000027077,0.0000027083,0.0000027139,0.0000027212, +0.0000027249,0.0000027228,0.0000027091,0.0000026876,0.0000026736, +0.0000026704,0.0000026706,0.0000026719,0.0000026731,0.0000026749, +0.0000026779,0.0000026820,0.0000026861,0.0000026888,0.0000026901, +0.0000026907,0.0000026918,0.0000026942,0.0000026977,0.0000027007, +0.0000027020,0.0000027019,0.0000027011,0.0000027012,0.0000027029, +0.0000027062,0.0000027100,0.0000027129,0.0000027139,0.0000027134, +0.0000027113,0.0000027087,0.0000027067,0.0000027063,0.0000027075, +0.0000027093,0.0000027115,0.0000027140,0.0000027169,0.0000027220, +0.0000027338,0.0000027498,0.0000027554,0.0000027435,0.0000027225, +0.0000027100,0.0000027122,0.0000027212,0.0000027242,0.0000027159, +0.0000027019,0.0000026907,0.0000026854,0.0000026799,0.0000026729, +0.0000026712,0.0000026782,0.0000026901,0.0000027009,0.0000027085, +0.0000027123,0.0000027127,0.0000027111,0.0000027093,0.0000027095, +0.0000027171,0.0000027341,0.0000027484,0.0000027496,0.0000027401, +0.0000027260,0.0000027146,0.0000027052,0.0000026968,0.0000026893, +0.0000026859,0.0000026886,0.0000026944,0.0000026998,0.0000027054, +0.0000027111,0.0000027138,0.0000027135,0.0000027157,0.0000027230, +0.0000027302,0.0000027419,0.0000027468,0.0000027420,0.0000027234, +0.0000027298,0.0000027311,0.0000027294,0.0000027147,0.0000027058, +0.0000027045,0.0000027027,0.0000026838,0.0000026717,0.0000026747, +0.0000026825,0.0000026882,0.0000026925,0.0000026964,0.0000027038, +0.0000027146,0.0000027244,0.0000027301,0.0000027328,0.0000027322, +0.0000027280,0.0000027211,0.0000027139,0.0000027060,0.0000026948, +0.0000026804,0.0000026716,0.0000026704,0.0000026695,0.0000026681, +0.0000026721,0.0000026775,0.0000026768,0.0000026721,0.0000026654, +0.0000026591,0.0000026556,0.0000026558,0.0000026587,0.0000026622, +0.0000026660,0.0000026698,0.0000026755,0.0000026822,0.0000026876, +0.0000026902,0.0000026913,0.0000026911,0.0000026912,0.0000026951, +0.0000027009,0.0000026995,0.0000026885,0.0000026804,0.0000026856, +0.0000026996,0.0000027075,0.0000027073,0.0000027076,0.0000027138, +0.0000027222,0.0000027268,0.0000027242,0.0000027074,0.0000026840, +0.0000026715,0.0000026708,0.0000026743,0.0000026780,0.0000026808, +0.0000026833,0.0000026863,0.0000026897,0.0000026918,0.0000026925, +0.0000026928,0.0000026941,0.0000026967,0.0000027000,0.0000027024, +0.0000027034,0.0000027032,0.0000027021,0.0000027009,0.0000027003, +0.0000027007,0.0000027027,0.0000027064,0.0000027101,0.0000027123, +0.0000027128,0.0000027116,0.0000027092,0.0000027065,0.0000027048, +0.0000027045,0.0000027052,0.0000027067,0.0000027089,0.0000027122, +0.0000027178,0.0000027280,0.0000027437,0.0000027555,0.0000027535, +0.0000027383,0.0000027204,0.0000027130,0.0000027161,0.0000027247, +0.0000027264,0.0000027176,0.0000027035,0.0000026919,0.0000026862, +0.0000026806,0.0000026737,0.0000026731,0.0000026831,0.0000026966, +0.0000027067,0.0000027131,0.0000027171,0.0000027191,0.0000027188, +0.0000027157,0.0000027125,0.0000027127,0.0000027234,0.0000027419, +0.0000027517,0.0000027491,0.0000027371,0.0000027248,0.0000027137, +0.0000027030,0.0000026940,0.0000026866,0.0000026832,0.0000026855, +0.0000026902,0.0000026968,0.0000027040,0.0000027101,0.0000027136, +0.0000027147,0.0000027179,0.0000027243,0.0000027301,0.0000027412, +0.0000027464,0.0000027474,0.0000027275,0.0000027258,0.0000027311, +0.0000027308,0.0000027236,0.0000027090,0.0000027037,0.0000027052, +0.0000026987,0.0000026783,0.0000026723,0.0000026769,0.0000026842, +0.0000026916,0.0000026967,0.0000027005,0.0000027072,0.0000027157, +0.0000027236,0.0000027293,0.0000027326,0.0000027336,0.0000027313, +0.0000027253,0.0000027177,0.0000027100,0.0000027009,0.0000026875, +0.0000026744,0.0000026702,0.0000026710,0.0000026695,0.0000026697, +0.0000026744,0.0000026770,0.0000026757,0.0000026715,0.0000026662, +0.0000026622,0.0000026617,0.0000026630,0.0000026648,0.0000026668, +0.0000026691,0.0000026721,0.0000026770,0.0000026833,0.0000026877, +0.0000026899,0.0000026917,0.0000026934,0.0000026951,0.0000027001, +0.0000027054,0.0000027022,0.0000026897,0.0000026799,0.0000026830, +0.0000026971,0.0000027058,0.0000027063,0.0000027071,0.0000027137, +0.0000027231,0.0000027282,0.0000027250,0.0000027059,0.0000026813, +0.0000026703,0.0000026723,0.0000026786,0.0000026840,0.0000026872, +0.0000026893,0.0000026912,0.0000026927,0.0000026935,0.0000026940, +0.0000026950,0.0000026972,0.0000027001,0.0000027028,0.0000027043, +0.0000027043,0.0000027028,0.0000027005,0.0000026985,0.0000026975, +0.0000026977,0.0000026990,0.0000027016,0.0000027052,0.0000027084, +0.0000027102,0.0000027104,0.0000027092,0.0000027072,0.0000027054, +0.0000027049,0.0000027052,0.0000027060,0.0000027078,0.0000027111, +0.0000027166,0.0000027256,0.0000027389,0.0000027516,0.0000027558, +0.0000027491,0.0000027337,0.0000027192,0.0000027141,0.0000027177, +0.0000027262,0.0000027282,0.0000027200,0.0000027060,0.0000026933, +0.0000026877,0.0000026830,0.0000026765,0.0000026758,0.0000026868, +0.0000027014,0.0000027103,0.0000027147,0.0000027181,0.0000027207, +0.0000027219,0.0000027207,0.0000027161,0.0000027125,0.0000027150, +0.0000027304,0.0000027488,0.0000027530,0.0000027443,0.0000027319, +0.0000027218,0.0000027109,0.0000027003,0.0000026918,0.0000026847, +0.0000026814,0.0000026831,0.0000026874,0.0000026950,0.0000027037, +0.0000027096,0.0000027129,0.0000027156,0.0000027214,0.0000027267, +0.0000027308,0.0000027418,0.0000027469,0.0000027484,0.0000027342, +0.0000027216,0.0000027301,0.0000027295,0.0000027294,0.0000027164, +0.0000027045,0.0000027038,0.0000027050,0.0000026927,0.0000026751, +0.0000026737,0.0000026791,0.0000026866,0.0000026952,0.0000027001, +0.0000027043,0.0000027099,0.0000027164,0.0000027224,0.0000027268, +0.0000027300,0.0000027320,0.0000027308,0.0000027264,0.0000027195, +0.0000027119,0.0000027046,0.0000026948,0.0000026807,0.0000026708, +0.0000026706,0.0000026714,0.0000026702,0.0000026714,0.0000026747, +0.0000026760,0.0000026739,0.0000026703,0.0000026676,0.0000026675, +0.0000026696,0.0000026718,0.0000026727,0.0000026725,0.0000026726, +0.0000026738,0.0000026777,0.0000026833,0.0000026866,0.0000026886, +0.0000026921,0.0000026963,0.0000027000,0.0000027051,0.0000027088, +0.0000027048,0.0000026919,0.0000026806,0.0000026812,0.0000026933, +0.0000027040,0.0000027060,0.0000027069,0.0000027135,0.0000027233, +0.0000027286,0.0000027253,0.0000027054,0.0000026798,0.0000026694, +0.0000026728,0.0000026808,0.0000026870,0.0000026902,0.0000026916, +0.0000026925,0.0000026931,0.0000026934,0.0000026935,0.0000026938, +0.0000026944,0.0000026953,0.0000026963,0.0000026973,0.0000026980, +0.0000026982,0.0000026979,0.0000026969,0.0000026958,0.0000026956, +0.0000026962,0.0000026980,0.0000027009,0.0000027044,0.0000027070, +0.0000027083,0.0000027085,0.0000027073,0.0000027060,0.0000027060, +0.0000027074,0.0000027092,0.0000027114,0.0000027147,0.0000027199, +0.0000027276,0.0000027379,0.0000027485,0.0000027542,0.0000027531, +0.0000027434,0.0000027299,0.0000027185,0.0000027140,0.0000027173, +0.0000027261,0.0000027295,0.0000027239,0.0000027103,0.0000026960, +0.0000026902,0.0000026864,0.0000026817,0.0000026796,0.0000026884, +0.0000027037,0.0000027133,0.0000027168,0.0000027186,0.0000027200, +0.0000027216,0.0000027219,0.0000027194,0.0000027138,0.0000027111, +0.0000027185,0.0000027383,0.0000027526,0.0000027503,0.0000027375, +0.0000027269,0.0000027181,0.0000027074,0.0000026978,0.0000026902, +0.0000026836,0.0000026800,0.0000026814,0.0000026863,0.0000026944, +0.0000027034,0.0000027089,0.0000027123,0.0000027169,0.0000027249, +0.0000027295,0.0000027326,0.0000027436,0.0000027482,0.0000027484, +0.0000027401,0.0000027203,0.0000027262,0.0000027291,0.0000027292, +0.0000027245,0.0000027097,0.0000027019,0.0000027054,0.0000027036, +0.0000026868,0.0000026738,0.0000026751,0.0000026818,0.0000026897, +0.0000026968,0.0000027025,0.0000027066,0.0000027113,0.0000027163, +0.0000027206,0.0000027235,0.0000027259,0.0000027279,0.0000027278, +0.0000027242,0.0000027183,0.0000027117,0.0000027059,0.0000026995, +0.0000026888,0.0000026750,0.0000026698,0.0000026711,0.0000026718, +0.0000026709,0.0000026718,0.0000026728,0.0000026717,0.0000026690, +0.0000026676,0.0000026686,0.0000026717,0.0000026759,0.0000026795, +0.0000026803,0.0000026784,0.0000026760,0.0000026753,0.0000026780, +0.0000026826,0.0000026846,0.0000026870,0.0000026928,0.0000026997, +0.0000027053,0.0000027102,0.0000027120,0.0000027084,0.0000026966, +0.0000026840,0.0000026812,0.0000026889,0.0000027010,0.0000027061, +0.0000027074,0.0000027129,0.0000027223,0.0000027278,0.0000027252, +0.0000027064,0.0000026803,0.0000026680,0.0000026702,0.0000026787, +0.0000026862,0.0000026900,0.0000026913,0.0000026914,0.0000026912, +0.0000026909,0.0000026903,0.0000026897,0.0000026892,0.0000026889, +0.0000026882,0.0000026871,0.0000026859,0.0000026850,0.0000026850, +0.0000026857,0.0000026872,0.0000026893,0.0000026916,0.0000026943, +0.0000026973,0.0000027005,0.0000027032,0.0000027050,0.0000027059, +0.0000027063,0.0000027064,0.0000027072,0.0000027094,0.0000027131, +0.0000027175,0.0000027224,0.0000027279,0.0000027343,0.0000027416, +0.0000027487,0.0000027533,0.0000027531,0.0000027472,0.0000027374, +0.0000027273,0.0000027180,0.0000027133,0.0000027154,0.0000027252, +0.0000027311,0.0000027285,0.0000027163,0.0000027007,0.0000026948, +0.0000026907,0.0000026881,0.0000026842,0.0000026884,0.0000027031, +0.0000027149,0.0000027191,0.0000027196,0.0000027193,0.0000027198, +0.0000027209,0.0000027207,0.0000027174,0.0000027120,0.0000027115, +0.0000027242,0.0000027461,0.0000027535,0.0000027442,0.0000027312, +0.0000027224,0.0000027135,0.0000027036,0.0000026953,0.0000026888, +0.0000026823,0.0000026789,0.0000026813,0.0000026877,0.0000026954, +0.0000027030,0.0000027077,0.0000027119,0.0000027189,0.0000027279, +0.0000027315,0.0000027356,0.0000027467,0.0000027493,0.0000027481, +0.0000027432,0.0000027208,0.0000027209,0.0000027294,0.0000027272, +0.0000027283,0.0000027168,0.0000027033,0.0000027020,0.0000027064, +0.0000027002,0.0000026815,0.0000026729,0.0000026776,0.0000026859, +0.0000026923,0.0000026984,0.0000027032,0.0000027073,0.0000027112, +0.0000027149,0.0000027176,0.0000027186,0.0000027198,0.0000027214, +0.0000027218,0.0000027193,0.0000027144,0.0000027092,0.0000027044, +0.0000027007,0.0000026951,0.0000026825,0.0000026706,0.0000026680, +0.0000026710,0.0000026714,0.0000026705,0.0000026699,0.0000026684, +0.0000026673,0.0000026676,0.0000026698,0.0000026727,0.0000026764, +0.0000026811,0.0000026856,0.0000026868,0.0000026831,0.0000026779, +0.0000026754,0.0000026779,0.0000026813,0.0000026821,0.0000026863, +0.0000026947,0.0000027034,0.0000027112,0.0000027154,0.0000027162, +0.0000027129,0.0000027036,0.0000026906,0.0000026830,0.0000026865, +0.0000026973,0.0000027053,0.0000027074,0.0000027115,0.0000027198, +0.0000027258,0.0000027249,0.0000027098,0.0000026845,0.0000026671, +0.0000026642,0.0000026689,0.0000026746,0.0000026773,0.0000026769, +0.0000026749,0.0000026726,0.0000026707,0.0000026694,0.0000026688, +0.0000026691,0.0000026702,0.0000026716,0.0000026730,0.0000026739, +0.0000026746,0.0000026750,0.0000026753,0.0000026758,0.0000026769, +0.0000026792,0.0000026826,0.0000026868,0.0000026913,0.0000026955, +0.0000026988,0.0000027013,0.0000027034,0.0000027058,0.0000027085, +0.0000027117,0.0000027157,0.0000027214,0.0000027292,0.0000027375, +0.0000027441,0.0000027485,0.0000027516,0.0000027529,0.0000027521, +0.0000027474,0.0000027399,0.0000027332,0.0000027267,0.0000027182, +0.0000027116,0.0000027133,0.0000027235,0.0000027327,0.0000027325, +0.0000027233,0.0000027077,0.0000027023,0.0000026959,0.0000026946, +0.0000026905,0.0000026889,0.0000026990,0.0000027132,0.0000027202, +0.0000027207,0.0000027196,0.0000027185,0.0000027186,0.0000027195, +0.0000027193,0.0000027159,0.0000027113,0.0000027136,0.0000027323, +0.0000027513,0.0000027508,0.0000027377,0.0000027259,0.0000027174, +0.0000027087,0.0000027004,0.0000026935,0.0000026872,0.0000026805, +0.0000026786,0.0000026830,0.0000026911,0.0000026975,0.0000027025, +0.0000027065,0.0000027125,0.0000027217,0.0000027297,0.0000027324, +0.0000027397,0.0000027505,0.0000027503,0.0000027473,0.0000027438, +0.0000027211,0.0000027160,0.0000027283,0.0000027261,0.0000027288, +0.0000027236,0.0000027086,0.0000027003,0.0000027047,0.0000027055, +0.0000026957,0.0000026780,0.0000026744,0.0000026822,0.0000026905, +0.0000026955,0.0000026993,0.0000027028,0.0000027063,0.0000027099, +0.0000027126,0.0000027137,0.0000027125,0.0000027116,0.0000027121, +0.0000027131,0.0000027123,0.0000027085,0.0000027043,0.0000027011, +0.0000026991,0.0000026966,0.0000026900,0.0000026762,0.0000026667, +0.0000026670,0.0000026698,0.0000026701,0.0000026696,0.0000026693, +0.0000026704,0.0000026733,0.0000026760,0.0000026781,0.0000026795, +0.0000026814,0.0000026857,0.0000026912,0.0000026915,0.0000026858, +0.0000026779,0.0000026750,0.0000026774,0.0000026794,0.0000026803, +0.0000026869,0.0000026966,0.0000027074,0.0000027174,0.0000027207, +0.0000027201,0.0000027178,0.0000027125,0.0000027018,0.0000026901, +0.0000026870,0.0000026928,0.0000027021,0.0000027065,0.0000027097, +0.0000027163,0.0000027228,0.0000027233,0.0000027142,0.0000026932, +0.0000026723,0.0000026629,0.0000026606,0.0000026597,0.0000026588, +0.0000026572,0.0000026555,0.0000026548,0.0000026558,0.0000026580, +0.0000026608,0.0000026636,0.0000026662,0.0000026684,0.0000026701, +0.0000026711,0.0000026718,0.0000026727,0.0000026735,0.0000026737, +0.0000026737,0.0000026740,0.0000026751,0.0000026778,0.0000026814, +0.0000026859,0.0000026908,0.0000026956,0.0000027001,0.0000027047, +0.0000027092,0.0000027138,0.0000027184,0.0000027243,0.0000027330, +0.0000027433,0.0000027513,0.0000027546,0.0000027544,0.0000027520, +0.0000027487,0.0000027439,0.0000027388,0.0000027349,0.0000027323, +0.0000027275,0.0000027188,0.0000027115,0.0000027118,0.0000027207, +0.0000027318,0.0000027353,0.0000027306,0.0000027174,0.0000027127, +0.0000027018,0.0000027004,0.0000026985,0.0000026937,0.0000026950, +0.0000027072,0.0000027182,0.0000027210,0.0000027204,0.0000027187, +0.0000027176,0.0000027176,0.0000027184,0.0000027187,0.0000027155, +0.0000027117,0.0000027189,0.0000027395,0.0000027517,0.0000027468, +0.0000027324,0.0000027212,0.0000027130,0.0000027057,0.0000026995, +0.0000026933,0.0000026859,0.0000026794,0.0000026790,0.0000026858, +0.0000026943,0.0000026990,0.0000027019,0.0000027061,0.0000027151, +0.0000027252,0.0000027301,0.0000027334,0.0000027448,0.0000027536, +0.0000027507,0.0000027459,0.0000027430,0.0000027210,0.0000027108, +0.0000027250,0.0000027260,0.0000027261,0.0000027278,0.0000027150, +0.0000027010,0.0000026990,0.0000027056,0.0000027038,0.0000026919, +0.0000026767,0.0000026772,0.0000026877,0.0000026950,0.0000026984, +0.0000027002,0.0000027025,0.0000027058,0.0000027093,0.0000027115, +0.0000027112,0.0000027070,0.0000027031,0.0000027011,0.0000027021, +0.0000027030,0.0000027010,0.0000026978,0.0000026955,0.0000026945, +0.0000026949,0.0000026934,0.0000026843,0.0000026712,0.0000026645, +0.0000026656,0.0000026683,0.0000026708,0.0000026740,0.0000026784, +0.0000026826,0.0000026847,0.0000026855,0.0000026857,0.0000026854, +0.0000026864,0.0000026909,0.0000026962,0.0000026950,0.0000026859, +0.0000026764,0.0000026736,0.0000026764,0.0000026769,0.0000026798, +0.0000026881,0.0000026982,0.0000027112,0.0000027229,0.0000027259, +0.0000027247,0.0000027235,0.0000027223,0.0000027158,0.0000027027, +0.0000026912,0.0000026903,0.0000026976,0.0000027044,0.0000027076, +0.0000027120,0.0000027182,0.0000027207,0.0000027163,0.0000027032, +0.0000026865,0.0000026746,0.0000026680,0.0000026649,0.0000026642, +0.0000026645,0.0000026657,0.0000026677,0.0000026702,0.0000026731, +0.0000026756,0.0000026775,0.0000026791,0.0000026805,0.0000026813, +0.0000026813,0.0000026808,0.0000026804,0.0000026804,0.0000026810, +0.0000026816,0.0000026819,0.0000026817,0.0000026816,0.0000026817, +0.0000026837,0.0000026872,0.0000026916,0.0000026969,0.0000027029, +0.0000027088,0.0000027138,0.0000027189,0.0000027259,0.0000027356, +0.0000027458,0.0000027533,0.0000027554,0.0000027547,0.0000027502, +0.0000027442,0.0000027391,0.0000027363,0.0000027355,0.0000027349, +0.0000027332,0.0000027273,0.0000027183,0.0000027116,0.0000027113, +0.0000027180,0.0000027297,0.0000027372,0.0000027364,0.0000027279, +0.0000027252,0.0000027113,0.0000027064,0.0000027054,0.0000027015, +0.0000026973,0.0000027002,0.0000027115,0.0000027193,0.0000027205, +0.0000027198,0.0000027185,0.0000027174,0.0000027173,0.0000027183, +0.0000027191,0.0000027164,0.0000027138,0.0000027247,0.0000027458, +0.0000027523,0.0000027424,0.0000027283,0.0000027181,0.0000027110, +0.0000027048,0.0000026996,0.0000026932,0.0000026847,0.0000026791, +0.0000026803,0.0000026891,0.0000026966,0.0000026991,0.0000027011, +0.0000027079,0.0000027203,0.0000027282,0.0000027301,0.0000027368, +0.0000027505,0.0000027553,0.0000027495,0.0000027443,0.0000027409, +0.0000027195,0.0000027069,0.0000027206,0.0000027260,0.0000027230, +0.0000027294,0.0000027209,0.0000027046,0.0000026964,0.0000027002, +0.0000027050,0.0000027029,0.0000026895,0.0000026778,0.0000026822, +0.0000026929,0.0000026988,0.0000027010,0.0000027017,0.0000027037, +0.0000027076,0.0000027115,0.0000027133,0.0000027113,0.0000027048, +0.0000026971,0.0000026913,0.0000026896,0.0000026915,0.0000026920, +0.0000026907,0.0000026886,0.0000026877,0.0000026892,0.0000026916, +0.0000026890,0.0000026794,0.0000026688,0.0000026639,0.0000026653, +0.0000026707,0.0000026778,0.0000026849,0.0000026897,0.0000026910, +0.0000026909,0.0000026904,0.0000026900,0.0000026902,0.0000026917, +0.0000026962,0.0000026999,0.0000026961,0.0000026834,0.0000026734, +0.0000026725,0.0000026745,0.0000026747,0.0000026803,0.0000026891, +0.0000026994,0.0000027139,0.0000027267,0.0000027318,0.0000027310, +0.0000027305,0.0000027309,0.0000027287,0.0000027188,0.0000027037, +0.0000026934,0.0000026941,0.0000027002,0.0000027044,0.0000027070, +0.0000027117,0.0000027156,0.0000027141,0.0000027081,0.0000026993, +0.0000026910,0.0000026856,0.0000026832,0.0000026826,0.0000026826, +0.0000026827,0.0000026832,0.0000026836,0.0000026839,0.0000026840, +0.0000026838,0.0000026836,0.0000026836,0.0000026835,0.0000026833, +0.0000026829,0.0000026823,0.0000026815,0.0000026810,0.0000026813, +0.0000026824,0.0000026847,0.0000026871,0.0000026888,0.0000026896, +0.0000026908,0.0000026929,0.0000026963,0.0000027010,0.0000027065, +0.0000027115,0.0000027162,0.0000027231,0.0000027340,0.0000027455, +0.0000027527,0.0000027544,0.0000027523,0.0000027465,0.0000027397, +0.0000027353,0.0000027342,0.0000027354,0.0000027365,0.0000027358, +0.0000027318,0.0000027249,0.0000027171,0.0000027118,0.0000027115, +0.0000027167,0.0000027279,0.0000027374,0.0000027398,0.0000027368, +0.0000027377,0.0000027242,0.0000027143,0.0000027113,0.0000027091, +0.0000027043,0.0000027004,0.0000027033,0.0000027134,0.0000027200, +0.0000027210,0.0000027206,0.0000027196,0.0000027181,0.0000027173, +0.0000027184,0.0000027200,0.0000027175,0.0000027166,0.0000027304, +0.0000027490,0.0000027494,0.0000027390,0.0000027260,0.0000027172, +0.0000027107,0.0000027045,0.0000027004,0.0000026938,0.0000026844, +0.0000026793,0.0000026832,0.0000026931,0.0000026979,0.0000026979, +0.0000027013,0.0000027129,0.0000027258,0.0000027294,0.0000027317, +0.0000027430,0.0000027544,0.0000027552,0.0000027471,0.0000027430, +0.0000027375,0.0000027167,0.0000027046,0.0000027172,0.0000027267, +0.0000027215,0.0000027283,0.0000027268,0.0000027099,0.0000026960, +0.0000026930,0.0000027003,0.0000027048,0.0000027025,0.0000026900, +0.0000026819,0.0000026873,0.0000026966,0.0000027014,0.0000027032, +0.0000027044,0.0000027072,0.0000027121,0.0000027166,0.0000027182, +0.0000027152,0.0000027061,0.0000026943,0.0000026845,0.0000026792, +0.0000026797,0.0000026817,0.0000026827,0.0000026819,0.0000026807, +0.0000026815,0.0000026849,0.0000026871,0.0000026842,0.0000026770, +0.0000026688,0.0000026661,0.0000026699,0.0000026780,0.0000026864, +0.0000026917,0.0000026935,0.0000026933,0.0000026927,0.0000026923, +0.0000026932,0.0000026944,0.0000026959,0.0000027005,0.0000027029, +0.0000026935,0.0000026786,0.0000026703,0.0000026706,0.0000026710, +0.0000026729,0.0000026809,0.0000026894,0.0000027000,0.0000027151, +0.0000027291,0.0000027366,0.0000027381,0.0000027379,0.0000027383, +0.0000027383,0.0000027338,0.0000027216,0.0000027046,0.0000026947, +0.0000026947,0.0000026991,0.0000027017,0.0000027039,0.0000027065, +0.0000027069,0.0000027052,0.0000027003,0.0000026951,0.0000026907, +0.0000026880,0.0000026865,0.0000026856,0.0000026852,0.0000026852, +0.0000026854,0.0000026854,0.0000026852,0.0000026845,0.0000026834, +0.0000026821,0.0000026805,0.0000026789,0.0000026775,0.0000026766, +0.0000026767,0.0000026774,0.0000026778,0.0000026783,0.0000026793, +0.0000026813,0.0000026842,0.0000026875,0.0000026901,0.0000026927, +0.0000026954,0.0000026985,0.0000027026,0.0000027069,0.0000027112, +0.0000027175,0.0000027278,0.0000027401,0.0000027494,0.0000027519, +0.0000027501,0.0000027442,0.0000027367,0.0000027324,0.0000027325, +0.0000027343,0.0000027356,0.0000027350,0.0000027323,0.0000027284, +0.0000027236,0.0000027185,0.0000027150,0.0000027143,0.0000027182, +0.0000027279,0.0000027378,0.0000027432,0.0000027439,0.0000027469, +0.0000027374,0.0000027251,0.0000027183,0.0000027151,0.0000027123, +0.0000027074,0.0000027033,0.0000027059,0.0000027150,0.0000027210, +0.0000027223,0.0000027221,0.0000027206,0.0000027185,0.0000027175, +0.0000027196,0.0000027216,0.0000027190,0.0000027202,0.0000027350, +0.0000027485,0.0000027484,0.0000027373,0.0000027261,0.0000027189, +0.0000027118,0.0000027051,0.0000027023,0.0000026949,0.0000026844, +0.0000026813,0.0000026873,0.0000026976,0.0000026989,0.0000026969, +0.0000027034,0.0000027190,0.0000027283,0.0000027289,0.0000027345, +0.0000027487,0.0000027553,0.0000027519,0.0000027439,0.0000027415, +0.0000027330,0.0000027128,0.0000027030,0.0000027142,0.0000027271, +0.0000027213,0.0000027256,0.0000027298,0.0000027155,0.0000026987, +0.0000026900,0.0000026918,0.0000027008,0.0000027069,0.0000027053, +0.0000026941,0.0000026867,0.0000026911,0.0000026983,0.0000027024, +0.0000027042,0.0000027065,0.0000027105,0.0000027163,0.0000027213, +0.0000027231,0.0000027196,0.0000027098,0.0000026954,0.0000026814, +0.0000026728,0.0000026705,0.0000026720,0.0000026748,0.0000026761, +0.0000026752,0.0000026744,0.0000026762,0.0000026798,0.0000026823, +0.0000026803,0.0000026759,0.0000026717,0.0000026717,0.0000026776, +0.0000026848,0.0000026909,0.0000026936,0.0000026938,0.0000026934, +0.0000026932,0.0000026941,0.0000026959,0.0000026970,0.0000026994, +0.0000027053,0.0000027027,0.0000026874,0.0000026729,0.0000026677, +0.0000026677,0.0000026672,0.0000026718,0.0000026806,0.0000026889, +0.0000026996,0.0000027146,0.0000027300,0.0000027404,0.0000027444, +0.0000027440,0.0000027433,0.0000027442,0.0000027442,0.0000027390, +0.0000027227,0.0000027022,0.0000026920,0.0000026918,0.0000026950, +0.0000026960,0.0000026961,0.0000026957,0.0000026941,0.0000026908, +0.0000026863,0.0000026822,0.0000026788,0.0000026760,0.0000026740, +0.0000026731,0.0000026737,0.0000026757,0.0000026783,0.0000026808, +0.0000026826,0.0000026834,0.0000026835,0.0000026836,0.0000026831, +0.0000026826,0.0000026821,0.0000026806,0.0000026778,0.0000026756, +0.0000026751,0.0000026763,0.0000026786,0.0000026810,0.0000026839, +0.0000026866,0.0000026884,0.0000026907,0.0000026933,0.0000026962, +0.0000026995,0.0000027035,0.0000027094,0.0000027189,0.0000027315, +0.0000027425,0.0000027478,0.0000027475,0.0000027434,0.0000027364, +0.0000027311,0.0000027306,0.0000027325,0.0000027333,0.0000027319, +0.0000027299,0.0000027289,0.0000027282,0.0000027273,0.0000027257, +0.0000027242,0.0000027238,0.0000027261,0.0000027320,0.0000027391, +0.0000027444,0.0000027478,0.0000027526,0.0000027487,0.0000027371, +0.0000027269,0.0000027215,0.0000027187,0.0000027161,0.0000027110, +0.0000027067,0.0000027087,0.0000027169,0.0000027224,0.0000027234, +0.0000027226,0.0000027211,0.0000027195,0.0000027194,0.0000027217, +0.0000027236,0.0000027215,0.0000027235,0.0000027385,0.0000027498, +0.0000027480,0.0000027379,0.0000027292,0.0000027224,0.0000027135, +0.0000027069,0.0000027046,0.0000026960,0.0000026847,0.0000026838, +0.0000026921,0.0000027014,0.0000026995,0.0000026975,0.0000027076, +0.0000027234,0.0000027276,0.0000027283,0.0000027384,0.0000027507, +0.0000027527,0.0000027462,0.0000027406,0.0000027386,0.0000027270, +0.0000027083,0.0000027014,0.0000027114,0.0000027268,0.0000027218, +0.0000027215,0.0000027308,0.0000027220,0.0000027029,0.0000026898, +0.0000026858,0.0000026923,0.0000027047,0.0000027128,0.0000027113, +0.0000026994,0.0000026908,0.0000026939,0.0000026989,0.0000027019, +0.0000027035,0.0000027065,0.0000027118,0.0000027182,0.0000027233, +0.0000027257,0.0000027225,0.0000027130,0.0000026983,0.0000026826, +0.0000026702,0.0000026652,0.0000026654,0.0000026688,0.0000026719, +0.0000026719,0.0000026700,0.0000026695,0.0000026714,0.0000026749, +0.0000026777,0.0000026776,0.0000026764,0.0000026760,0.0000026790, +0.0000026836,0.0000026888,0.0000026928,0.0000026937,0.0000026935, +0.0000026936,0.0000026945,0.0000026958,0.0000026974,0.0000026988, +0.0000027036,0.0000027075,0.0000026971,0.0000026799,0.0000026680, +0.0000026645,0.0000026630,0.0000026632,0.0000026705,0.0000026792, +0.0000026875,0.0000026985,0.0000027132,0.0000027296,0.0000027420, +0.0000027471,0.0000027471,0.0000027462,0.0000027469,0.0000027500, +0.0000027500,0.0000027407,0.0000027195,0.0000026980,0.0000026880, +0.0000026854,0.0000026856,0.0000026852,0.0000026836,0.0000026806, +0.0000026761,0.0000026712,0.0000026668,0.0000026634,0.0000026613, +0.0000026606,0.0000026614,0.0000026637,0.0000026663,0.0000026682, +0.0000026691,0.0000026698,0.0000026706,0.0000026714,0.0000026718, +0.0000026718,0.0000026721,0.0000026737,0.0000026767,0.0000026806, +0.0000026843,0.0000026855,0.0000026834,0.0000026806,0.0000026799, +0.0000026819,0.0000026856,0.0000026894,0.0000026914,0.0000026923, +0.0000026933,0.0000026947,0.0000026969,0.0000027008,0.0000027083, +0.0000027198,0.0000027323,0.0000027408,0.0000027431,0.0000027419, +0.0000027369,0.0000027309,0.0000027288,0.0000027303,0.0000027318, +0.0000027308,0.0000027287,0.0000027291,0.0000027313,0.0000027342, +0.0000027362,0.0000027372,0.0000027377,0.0000027382,0.0000027392, +0.0000027412,0.0000027434,0.0000027456,0.0000027494,0.0000027573, +0.0000027570,0.0000027478,0.0000027360,0.0000027289,0.0000027251, +0.0000027227,0.0000027200,0.0000027148,0.0000027098,0.0000027116, +0.0000027193,0.0000027238,0.0000027242,0.0000027235,0.0000027223, +0.0000027216,0.0000027212,0.0000027238,0.0000027258,0.0000027234, +0.0000027256,0.0000027411,0.0000027506,0.0000027483,0.0000027405, +0.0000027337,0.0000027257,0.0000027148,0.0000027089,0.0000027065, +0.0000026969,0.0000026862,0.0000026861,0.0000026969,0.0000027037, +0.0000026990,0.0000026983,0.0000027129,0.0000027257,0.0000027264, +0.0000027298,0.0000027413,0.0000027485,0.0000027466,0.0000027403, +0.0000027378,0.0000027339,0.0000027198,0.0000027038,0.0000026997, +0.0000027082,0.0000027260,0.0000027239,0.0000027187,0.0000027276, +0.0000027274,0.0000027085,0.0000026920,0.0000026838,0.0000026842, +0.0000026967,0.0000027124,0.0000027200,0.0000027170,0.0000027044, +0.0000026955,0.0000026962,0.0000026989,0.0000027005,0.0000027015, +0.0000027051,0.0000027114,0.0000027183,0.0000027240,0.0000027250, +0.0000027222,0.0000027134,0.0000027001,0.0000026851,0.0000026713, +0.0000026631,0.0000026622,0.0000026659,0.0000026700,0.0000026707, +0.0000026688,0.0000026672,0.0000026663,0.0000026670,0.0000026697, +0.0000026733,0.0000026755,0.0000026768,0.0000026798,0.0000026836, +0.0000026878,0.0000026921,0.0000026935,0.0000026932,0.0000026934, +0.0000026946,0.0000026958,0.0000026969,0.0000026983,0.0000027014, +0.0000027083,0.0000027057,0.0000026889,0.0000026728,0.0000026634, +0.0000026605,0.0000026569,0.0000026600,0.0000026685,0.0000026764, +0.0000026851,0.0000026960,0.0000027105,0.0000027273,0.0000027408, +0.0000027467,0.0000027466,0.0000027460,0.0000027471,0.0000027515, +0.0000027558,0.0000027536,0.0000027398,0.0000027175,0.0000026966, +0.0000026834,0.0000026801,0.0000026787,0.0000026766,0.0000026743, +0.0000026713,0.0000026691,0.0000026721,0.0000026751,0.0000026762, +0.0000026736,0.0000026675,0.0000026633,0.0000026614,0.0000026608, +0.0000026609,0.0000026615,0.0000026619,0.0000026623,0.0000026622, +0.0000026620,0.0000026618,0.0000026615,0.0000026610,0.0000026602, +0.0000026612,0.0000026664,0.0000026760,0.0000026858,0.0000026896, +0.0000026883,0.0000026853,0.0000026864,0.0000026915,0.0000026963, +0.0000026991,0.0000026994,0.0000026987,0.0000026994,0.0000027030, +0.0000027105,0.0000027207,0.0000027304,0.0000027366,0.0000027381, +0.0000027366,0.0000027319,0.0000027271,0.0000027267,0.0000027298, +0.0000027315,0.0000027306,0.0000027304,0.0000027336,0.0000027388, +0.0000027436,0.0000027472,0.0000027498,0.0000027516,0.0000027525, +0.0000027523,0.0000027512,0.0000027504,0.0000027504,0.0000027528, +0.0000027628,0.0000027628,0.0000027557,0.0000027446,0.0000027365, +0.0000027319,0.0000027287,0.0000027260,0.0000027230,0.0000027180, +0.0000027133,0.0000027152,0.0000027222,0.0000027258,0.0000027256, +0.0000027241,0.0000027232,0.0000027223,0.0000027225,0.0000027258, +0.0000027273,0.0000027238,0.0000027266,0.0000027425,0.0000027509, +0.0000027495,0.0000027438,0.0000027377,0.0000027272,0.0000027150, +0.0000027101,0.0000027076,0.0000026978,0.0000026881,0.0000026887, +0.0000027008,0.0000027040,0.0000026984,0.0000027008,0.0000027183, +0.0000027268,0.0000027269,0.0000027331,0.0000027422,0.0000027441, +0.0000027388,0.0000027357,0.0000027354,0.0000027284,0.0000027136, +0.0000027001,0.0000026979,0.0000027044,0.0000027239,0.0000027265, +0.0000027169,0.0000027225,0.0000027287,0.0000027153,0.0000026962, +0.0000026846,0.0000026801,0.0000026871,0.0000027055,0.0000027202, +0.0000027257,0.0000027216,0.0000027106,0.0000027011,0.0000026983, +0.0000026991,0.0000026992,0.0000027004,0.0000027045,0.0000027108, +0.0000027176,0.0000027221,0.0000027223,0.0000027186,0.0000027111, +0.0000027008,0.0000026892,0.0000026765,0.0000026663,0.0000026634, +0.0000026667,0.0000026707,0.0000026721,0.0000026706,0.0000026682, +0.0000026661,0.0000026641,0.0000026632,0.0000026654,0.0000026692, +0.0000026721,0.0000026755,0.0000026806,0.0000026861,0.0000026908, +0.0000026927,0.0000026920,0.0000026918,0.0000026936,0.0000026960, +0.0000026968,0.0000026977,0.0000027000,0.0000027066,0.0000027108, +0.0000026978,0.0000026803,0.0000026666,0.0000026599,0.0000026551, +0.0000026521,0.0000026574,0.0000026647,0.0000026717,0.0000026806, +0.0000026919,0.0000027066,0.0000027236,0.0000027371,0.0000027425, +0.0000027427,0.0000027420,0.0000027434,0.0000027488,0.0000027556, +0.0000027571,0.0000027528,0.0000027397,0.0000027214,0.0000027047, +0.0000026958,0.0000026932,0.0000026943,0.0000026975,0.0000027026, +0.0000027090,0.0000027147,0.0000027183,0.0000027200,0.0000027199, +0.0000027167,0.0000027086,0.0000026944,0.0000026777,0.0000026652, +0.0000026609,0.0000026607,0.0000026612,0.0000026616,0.0000026626, +0.0000026642,0.0000026651,0.0000026643,0.0000026624,0.0000026602, +0.0000026583,0.0000026576,0.0000026604,0.0000026723,0.0000026884, +0.0000026960,0.0000026942,0.0000026904,0.0000026921,0.0000026981, +0.0000027036,0.0000027051,0.0000027044,0.0000027044,0.0000027073, +0.0000027134,0.0000027205,0.0000027267,0.0000027310,0.0000027327, +0.0000027319,0.0000027283,0.0000027245,0.0000027248,0.0000027292, +0.0000027329,0.0000027339,0.0000027363,0.0000027420,0.0000027488, +0.0000027549,0.0000027603,0.0000027647,0.0000027675,0.0000027685, +0.0000027672,0.0000027647,0.0000027622,0.0000027606,0.0000027606, +0.0000027672,0.0000027657,0.0000027600,0.0000027512,0.0000027432, +0.0000027381,0.0000027348,0.0000027317,0.0000027282,0.0000027258, +0.0000027214,0.0000027175,0.0000027196,0.0000027253,0.0000027266, +0.0000027255,0.0000027234,0.0000027227,0.0000027223,0.0000027237, +0.0000027276,0.0000027285,0.0000027244,0.0000027277,0.0000027441, +0.0000027514,0.0000027511,0.0000027472,0.0000027402,0.0000027267, +0.0000027142,0.0000027107,0.0000027089,0.0000026992,0.0000026900, +0.0000026923,0.0000027038,0.0000027045,0.0000026982,0.0000027047, +0.0000027231,0.0000027278,0.0000027285,0.0000027364,0.0000027417, +0.0000027392,0.0000027331,0.0000027327,0.0000027322,0.0000027237, +0.0000027093,0.0000026975,0.0000026959,0.0000027004,0.0000027198, +0.0000027277,0.0000027179,0.0000027166,0.0000027263,0.0000027230, +0.0000027034,0.0000026877,0.0000026801,0.0000026809,0.0000026943, +0.0000027134,0.0000027256,0.0000027295,0.0000027267,0.0000027182, +0.0000027079,0.0000027017,0.0000026993,0.0000026990,0.0000027007, +0.0000027048,0.0000027103,0.0000027155,0.0000027181,0.0000027173, +0.0000027140,0.0000027095,0.0000027035,0.0000026953,0.0000026843, +0.0000026729,0.0000026673,0.0000026679,0.0000026717,0.0000026749, +0.0000026750,0.0000026731,0.0000026705,0.0000026670,0.0000026628, +0.0000026613,0.0000026621,0.0000026648,0.0000026679,0.0000026733, +0.0000026805,0.0000026867,0.0000026898,0.0000026895,0.0000026887, +0.0000026904,0.0000026956,0.0000026973,0.0000026966,0.0000026987, +0.0000027041,0.0000027118,0.0000027062,0.0000026881,0.0000026732, +0.0000026621,0.0000026569,0.0000026496,0.0000026487,0.0000026541, +0.0000026592,0.0000026649,0.0000026739,0.0000026862,0.0000027017, +0.0000027181,0.0000027296,0.0000027337,0.0000027334,0.0000027324, +0.0000027341,0.0000027401,0.0000027476,0.0000027527,0.0000027528, +0.0000027512,0.0000027435,0.0000027349,0.0000027297,0.0000027281, +0.0000027278,0.0000027272,0.0000027233,0.0000027164,0.0000027130, +0.0000027081,0.0000027067,0.0000027092,0.0000027160,0.0000027237, +0.0000027267,0.0000027228,0.0000027131,0.0000027046,0.0000027018, +0.0000027036,0.0000027094,0.0000027163,0.0000027241,0.0000027295, +0.0000027309,0.0000027270,0.0000027140,0.0000026936,0.0000026735, +0.0000026611,0.0000026576,0.0000026628,0.0000026783,0.0000026964, +0.0000027029,0.0000026981,0.0000026943,0.0000026969,0.0000027029, +0.0000027057,0.0000027057,0.0000027055,0.0000027078,0.0000027121, +0.0000027167,0.0000027207,0.0000027242,0.0000027264,0.0000027269, +0.0000027250,0.0000027221,0.0000027223,0.0000027278,0.0000027344, +0.0000027389,0.0000027439,0.0000027512,0.0000027582,0.0000027641, +0.0000027697,0.0000027740,0.0000027762,0.0000027769,0.0000027758, +0.0000027740,0.0000027721,0.0000027699,0.0000027681,0.0000027673, +0.0000027654,0.0000027610,0.0000027547,0.0000027484,0.0000027439, +0.0000027409,0.0000027374,0.0000027330,0.0000027307,0.0000027299, +0.0000027262,0.0000027219,0.0000027233,0.0000027269,0.0000027268, +0.0000027244,0.0000027224,0.0000027217,0.0000027220,0.0000027244, +0.0000027290,0.0000027298,0.0000027255,0.0000027292,0.0000027460, +0.0000027531,0.0000027530,0.0000027499,0.0000027404,0.0000027249, +0.0000027137,0.0000027120,0.0000027112,0.0000027015,0.0000026925, +0.0000026959,0.0000027062,0.0000027050,0.0000026992,0.0000027100, +0.0000027265,0.0000027285,0.0000027307,0.0000027387,0.0000027404, +0.0000027348,0.0000027309,0.0000027312,0.0000027294,0.0000027200, +0.0000027070,0.0000026965,0.0000026945,0.0000026975,0.0000027147, +0.0000027287,0.0000027212,0.0000027129,0.0000027206,0.0000027258, +0.0000027134,0.0000026943,0.0000026830,0.0000026797,0.0000026853, +0.0000027006,0.0000027182,0.0000027291,0.0000027326,0.0000027315, +0.0000027252,0.0000027151,0.0000027066,0.0000027019,0.0000027009, +0.0000027023,0.0000027060,0.0000027094,0.0000027124,0.0000027128, +0.0000027115,0.0000027106,0.0000027101,0.0000027080,0.0000027025, +0.0000026933,0.0000026820,0.0000026728,0.0000026689,0.0000026713, +0.0000026758,0.0000026783,0.0000026788,0.0000026772,0.0000026740, +0.0000026687,0.0000026632,0.0000026602,0.0000026602,0.0000026616, +0.0000026658,0.0000026726,0.0000026794,0.0000026838,0.0000026850, +0.0000026850,0.0000026869,0.0000026934,0.0000026974,0.0000026955, +0.0000026966,0.0000027014,0.0000027113,0.0000027132,0.0000026957, +0.0000026802,0.0000026670,0.0000026599,0.0000026524,0.0000026455, +0.0000026471,0.0000026513,0.0000026537,0.0000026578,0.0000026663, +0.0000026793,0.0000026952,0.0000027097,0.0000027184,0.0000027208, +0.0000027201,0.0000027195,0.0000027216,0.0000027269,0.0000027330, +0.0000027382,0.0000027422,0.0000027439,0.0000027428,0.0000027391, +0.0000027351,0.0000027304,0.0000027222,0.0000027128,0.0000027024, +0.0000026928,0.0000026855,0.0000026808,0.0000026786,0.0000026785, +0.0000026811,0.0000026900,0.0000027054,0.0000027199,0.0000027273, +0.0000027304,0.0000027314,0.0000027322,0.0000027328,0.0000027325, +0.0000027323,0.0000027327,0.0000027342,0.0000027372,0.0000027410, +0.0000027435,0.0000027374,0.0000027180,0.0000026858,0.0000026637, +0.0000026603,0.0000026700,0.0000026888,0.0000027050,0.0000027070, +0.0000027000,0.0000026968,0.0000026993,0.0000027028,0.0000027039, +0.0000027042,0.0000027056,0.0000027083,0.0000027109,0.0000027138, +0.0000027170,0.0000027197,0.0000027215,0.0000027213,0.0000027194, +0.0000027194,0.0000027255,0.0000027355,0.0000027438,0.0000027508, +0.0000027582,0.0000027639,0.0000027676,0.0000027709,0.0000027737, +0.0000027753,0.0000027759,0.0000027753,0.0000027742,0.0000027728, +0.0000027709,0.0000027689,0.0000027654,0.0000027640,0.0000027611, +0.0000027565,0.0000027522,0.0000027490,0.0000027463,0.0000027429, +0.0000027393,0.0000027365,0.0000027357,0.0000027354,0.0000027300, +0.0000027243,0.0000027250,0.0000027274,0.0000027267,0.0000027231, +0.0000027207,0.0000027194,0.0000027196,0.0000027233,0.0000027296, +0.0000027310,0.0000027265,0.0000027308,0.0000027485,0.0000027550, +0.0000027551,0.0000027514,0.0000027390,0.0000027234,0.0000027149, +0.0000027149,0.0000027148,0.0000027046,0.0000026959,0.0000026996, +0.0000027092,0.0000027060,0.0000027026,0.0000027155,0.0000027286, +0.0000027297,0.0000027326,0.0000027391,0.0000027383,0.0000027315, +0.0000027308,0.0000027316,0.0000027281,0.0000027180,0.0000027062, +0.0000026966,0.0000026940,0.0000026955,0.0000027088,0.0000027272, +0.0000027260,0.0000027141,0.0000027135,0.0000027232,0.0000027216, +0.0000027048,0.0000026893,0.0000026826,0.0000026822,0.0000026896, +0.0000027044,0.0000027206,0.0000027310,0.0000027349,0.0000027353, +0.0000027311,0.0000027229,0.0000027144,0.0000027088,0.0000027068, +0.0000027074,0.0000027092,0.0000027106,0.0000027103,0.0000027087, +0.0000027086,0.0000027104,0.0000027124,0.0000027128,0.0000027092, +0.0000027020,0.0000026923,0.0000026808,0.0000026718,0.0000026704, +0.0000026735,0.0000026782,0.0000026815,0.0000026833,0.0000026824, +0.0000026784,0.0000026716,0.0000026654,0.0000026615,0.0000026605, +0.0000026630,0.0000026676,0.0000026735,0.0000026778,0.0000026804, +0.0000026822,0.0000026846,0.0000026905,0.0000026960,0.0000026942, +0.0000026940,0.0000026988,0.0000027080,0.0000027162,0.0000027035, +0.0000026863,0.0000026737,0.0000026634,0.0000026574,0.0000026483, +0.0000026449,0.0000026478,0.0000026503,0.0000026506,0.0000026527, +0.0000026602,0.0000026731,0.0000026880,0.0000026999,0.0000027062, +0.0000027077,0.0000027076,0.0000027081,0.0000027113,0.0000027157, +0.0000027193,0.0000027215,0.0000027226,0.0000027228,0.0000027219, +0.0000027191,0.0000027136,0.0000027060,0.0000026975,0.0000026891, +0.0000026813,0.0000026747,0.0000026695,0.0000026655,0.0000026627, +0.0000026618,0.0000026629,0.0000026669,0.0000026738,0.0000026833, +0.0000026934,0.0000027012,0.0000027034,0.0000027015,0.0000026970, +0.0000026914,0.0000026862,0.0000026837,0.0000026840,0.0000026883, +0.0000026971,0.0000027103,0.0000027253,0.0000027379,0.0000027388, +0.0000027179,0.0000026806,0.0000026624,0.0000026657,0.0000026821, +0.0000027007,0.0000027111,0.0000027083,0.0000027003,0.0000026982, +0.0000026996,0.0000027017,0.0000027033,0.0000027049,0.0000027067, +0.0000027082,0.0000027100,0.0000027122,0.0000027148,0.0000027174, +0.0000027185,0.0000027178,0.0000027178,0.0000027243,0.0000027364, +0.0000027473,0.0000027552,0.0000027618,0.0000027654,0.0000027666, +0.0000027673,0.0000027691,0.0000027709,0.0000027719,0.0000027718, +0.0000027710,0.0000027698,0.0000027682,0.0000027666,0.0000027654, +0.0000027654,0.0000027638,0.0000027600,0.0000027558,0.0000027531, +0.0000027505,0.0000027479,0.0000027460,0.0000027437,0.0000027416, +0.0000027417,0.0000027394,0.0000027305,0.0000027247,0.0000027267, +0.0000027287,0.0000027251,0.0000027204,0.0000027167,0.0000027149, +0.0000027160,0.0000027214,0.0000027294,0.0000027307,0.0000027266, +0.0000027329,0.0000027515,0.0000027572,0.0000027570,0.0000027511, +0.0000027371,0.0000027235,0.0000027182,0.0000027188,0.0000027177, +0.0000027080,0.0000026997,0.0000027032,0.0000027118,0.0000027079, +0.0000027069,0.0000027207,0.0000027307,0.0000027310,0.0000027340, +0.0000027386,0.0000027352,0.0000027288,0.0000027307,0.0000027329, +0.0000027281,0.0000027179,0.0000027065,0.0000026973,0.0000026942, +0.0000026941,0.0000027022,0.0000027239,0.0000027290,0.0000027199, +0.0000027116,0.0000027173,0.0000027239,0.0000027171,0.0000026998, +0.0000026886,0.0000026829,0.0000026841,0.0000026916,0.0000027063, +0.0000027217,0.0000027320,0.0000027362,0.0000027372,0.0000027352, +0.0000027295,0.0000027230,0.0000027178,0.0000027154,0.0000027148, +0.0000027147,0.0000027136,0.0000027112,0.0000027097,0.0000027098, +0.0000027121,0.0000027156,0.0000027172,0.0000027150,0.0000027100, +0.0000027026,0.0000026909,0.0000026782,0.0000026715,0.0000026707, +0.0000026744,0.0000026799,0.0000026849,0.0000026880,0.0000026877, +0.0000026833,0.0000026760,0.0000026694,0.0000026655,0.0000026650, +0.0000026681,0.0000026727,0.0000026764,0.0000026792,0.0000026818, +0.0000026834,0.0000026884,0.0000026939,0.0000026928,0.0000026911, +0.0000026959,0.0000027045,0.0000027162,0.0000027110,0.0000026923, +0.0000026797,0.0000026679,0.0000026617,0.0000026542,0.0000026462, +0.0000026460,0.0000026495,0.0000026502,0.0000026491,0.0000026507, +0.0000026578,0.0000026698,0.0000026825,0.0000026916,0.0000026960, +0.0000026975,0.0000026986,0.0000027010,0.0000027054,0.0000027101, +0.0000027127,0.0000027121,0.0000027099,0.0000027078,0.0000027053, +0.0000027017,0.0000026970,0.0000026913,0.0000026853,0.0000026795, +0.0000026742,0.0000026691,0.0000026643,0.0000026599,0.0000026556, +0.0000026521,0.0000026513,0.0000026533,0.0000026590,0.0000026647, +0.0000026685,0.0000026707,0.0000026711,0.0000026698,0.0000026681, +0.0000026673,0.0000026679,0.0000026700,0.0000026732,0.0000026762, +0.0000026783,0.0000026803,0.0000026840,0.0000026957,0.0000027173, +0.0000027367,0.0000027326,0.0000027020,0.0000026694,0.0000026651, +0.0000026777,0.0000026946,0.0000027094,0.0000027130,0.0000027078, +0.0000027018,0.0000027001,0.0000027011,0.0000027039,0.0000027067, +0.0000027082,0.0000027094,0.0000027108,0.0000027125,0.0000027149, +0.0000027173,0.0000027185,0.0000027182,0.0000027186,0.0000027250, +0.0000027376,0.0000027496,0.0000027579,0.0000027631,0.0000027651, +0.0000027642,0.0000027641,0.0000027659,0.0000027675,0.0000027685, +0.0000027693,0.0000027698,0.0000027693,0.0000027676,0.0000027660, +0.0000027656,0.0000027663,0.0000027660,0.0000027639,0.0000027608, +0.0000027581,0.0000027551,0.0000027526,0.0000027519,0.0000027506, +0.0000027483,0.0000027471,0.0000027462,0.0000027389,0.0000027267, +0.0000027242,0.0000027279,0.0000027272,0.0000027218,0.0000027159, +0.0000027111,0.0000027103,0.0000027124,0.0000027189,0.0000027280, +0.0000027298,0.0000027262,0.0000027360,0.0000027544,0.0000027587, +0.0000027576,0.0000027494,0.0000027356,0.0000027244,0.0000027210, +0.0000027215,0.0000027198,0.0000027113,0.0000027033,0.0000027064, +0.0000027138,0.0000027102,0.0000027108,0.0000027251,0.0000027329, +0.0000027327,0.0000027355,0.0000027381,0.0000027323,0.0000027262, +0.0000027300,0.0000027336,0.0000027282,0.0000027181,0.0000027072, +0.0000026980,0.0000026945,0.0000026927,0.0000026962,0.0000027182, +0.0000027316,0.0000027278,0.0000027151,0.0000027127,0.0000027208, +0.0000027236,0.0000027134,0.0000026985,0.0000026881,0.0000026836, +0.0000026854,0.0000026935,0.0000027075,0.0000027212,0.0000027303, +0.0000027349,0.0000027369,0.0000027351,0.0000027314,0.0000027263, +0.0000027217,0.0000027186,0.0000027169,0.0000027161,0.0000027154, +0.0000027150,0.0000027152,0.0000027151,0.0000027159,0.0000027191, +0.0000027217,0.0000027212,0.0000027177,0.0000027121,0.0000027022, +0.0000026889,0.0000026775,0.0000026711,0.0000026704,0.0000026745, +0.0000026811,0.0000026875,0.0000026913,0.0000026930,0.0000026887, +0.0000026814,0.0000026753,0.0000026723,0.0000026731,0.0000026760, +0.0000026796,0.0000026816,0.0000026836,0.0000026832,0.0000026867, +0.0000026917,0.0000026910,0.0000026882,0.0000026926,0.0000027010, +0.0000027141,0.0000027168,0.0000026991,0.0000026842,0.0000026728, +0.0000026649,0.0000026595,0.0000026507,0.0000026456,0.0000026475, +0.0000026502,0.0000026495,0.0000026487,0.0000026513,0.0000026589, +0.0000026696,0.0000026798,0.0000026867,0.0000026897,0.0000026909, +0.0000026921,0.0000026951,0.0000027002,0.0000027056,0.0000027087, +0.0000027082,0.0000027057,0.0000027027,0.0000026989,0.0000026939, +0.0000026881,0.0000026823,0.0000026765,0.0000026702,0.0000026629, +0.0000026556,0.0000026495,0.0000026453,0.0000026427,0.0000026409, +0.0000026396,0.0000026402,0.0000026448,0.0000026523,0.0000026583, +0.0000026620,0.0000026642,0.0000026654,0.0000026662,0.0000026686, +0.0000026730,0.0000026780,0.0000026822,0.0000026850,0.0000026862, +0.0000026863,0.0000026853,0.0000026831,0.0000026843,0.0000026973, +0.0000027239,0.0000027366,0.0000027173,0.0000026804,0.0000026677, +0.0000026753,0.0000026893,0.0000027040,0.0000027140,0.0000027143, +0.0000027102,0.0000027063,0.0000027054,0.0000027078,0.0000027109, +0.0000027127,0.0000027136,0.0000027145,0.0000027163,0.0000027190, +0.0000027210,0.0000027216,0.0000027212,0.0000027216,0.0000027274, +0.0000027392,0.0000027514,0.0000027592,0.0000027627,0.0000027635, +0.0000027620,0.0000027622,0.0000027643,0.0000027659,0.0000027669, +0.0000027682,0.0000027693,0.0000027692,0.0000027677,0.0000027661, +0.0000027621,0.0000027643,0.0000027654,0.0000027646,0.0000027636, +0.0000027618,0.0000027590,0.0000027563,0.0000027556,0.0000027549, +0.0000027528,0.0000027514,0.0000027508,0.0000027464,0.0000027338, +0.0000027239,0.0000027256,0.0000027290,0.0000027252,0.0000027182, +0.0000027108,0.0000027053,0.0000027046,0.0000027079,0.0000027166, +0.0000027271,0.0000027285,0.0000027270,0.0000027407,0.0000027567, +0.0000027597,0.0000027572,0.0000027471,0.0000027342,0.0000027249, +0.0000027225,0.0000027231,0.0000027215,0.0000027146,0.0000027069, +0.0000027092,0.0000027154,0.0000027127,0.0000027145,0.0000027289, +0.0000027349,0.0000027348,0.0000027370,0.0000027380,0.0000027300, +0.0000027242,0.0000027294,0.0000027336,0.0000027285,0.0000027186, +0.0000027078,0.0000026989,0.0000026945,0.0000026918,0.0000026923, +0.0000027102,0.0000027299,0.0000027327,0.0000027228,0.0000027138, +0.0000027157,0.0000027226,0.0000027212,0.0000027108,0.0000026974, +0.0000026879,0.0000026845,0.0000026873,0.0000026955,0.0000027074, +0.0000027179,0.0000027246,0.0000027294,0.0000027311,0.0000027300, +0.0000027268,0.0000027220,0.0000027176,0.0000027146,0.0000027131, +0.0000027130,0.0000027147,0.0000027182,0.0000027224,0.0000027232, +0.0000027216,0.0000027231,0.0000027269,0.0000027278,0.0000027253, +0.0000027210,0.0000027129,0.0000027005,0.0000026871,0.0000026760, +0.0000026706,0.0000026705,0.0000026749,0.0000026820,0.0000026896, +0.0000026958,0.0000026983,0.0000026942,0.0000026877,0.0000026824, +0.0000026804,0.0000026812,0.0000026844,0.0000026851,0.0000026855, +0.0000026842,0.0000026857,0.0000026895,0.0000026889,0.0000026855, +0.0000026889,0.0000026979,0.0000027104,0.0000027197,0.0000027068, +0.0000026886,0.0000026767,0.0000026677,0.0000026629,0.0000026562, +0.0000026472,0.0000026447,0.0000026468,0.0000026475,0.0000026461, +0.0000026470,0.0000026524,0.0000026608,0.0000026704,0.0000026792, +0.0000026848,0.0000026863,0.0000026858,0.0000026853,0.0000026868, +0.0000026907,0.0000026953,0.0000026982,0.0000026983,0.0000026961, +0.0000026923,0.0000026871,0.0000026811,0.0000026752,0.0000026684, +0.0000026603,0.0000026517,0.0000026448,0.0000026404,0.0000026379, +0.0000026350,0.0000026313,0.0000026284,0.0000026270,0.0000026271, +0.0000026298,0.0000026356,0.0000026432,0.0000026506,0.0000026564, +0.0000026604,0.0000026635,0.0000026670,0.0000026721,0.0000026784, +0.0000026847,0.0000026902,0.0000026940,0.0000026959,0.0000026959, +0.0000026933,0.0000026878,0.0000026829,0.0000026875,0.0000027129, +0.0000027346,0.0000027274,0.0000026921,0.0000026713,0.0000026744, +0.0000026858,0.0000026972,0.0000027099,0.0000027173,0.0000027182, +0.0000027162,0.0000027148,0.0000027154,0.0000027171,0.0000027190, +0.0000027197,0.0000027196,0.0000027209,0.0000027238,0.0000027266, +0.0000027272,0.0000027261,0.0000027260,0.0000027307,0.0000027410, +0.0000027523,0.0000027593,0.0000027615,0.0000027613,0.0000027601, +0.0000027606,0.0000027627,0.0000027649,0.0000027663,0.0000027668, +0.0000027664,0.0000027649,0.0000027627,0.0000027614,0.0000027531, +0.0000027543,0.0000027573,0.0000027605,0.0000027625,0.0000027621, +0.0000027604,0.0000027579,0.0000027571,0.0000027564,0.0000027547, +0.0000027535,0.0000027535,0.0000027511,0.0000027409,0.0000027263, +0.0000027232,0.0000027300,0.0000027300,0.0000027234,0.0000027142, +0.0000027036,0.0000026981,0.0000026982,0.0000027039,0.0000027148, +0.0000027264,0.0000027275,0.0000027288,0.0000027463,0.0000027596, +0.0000027610,0.0000027559,0.0000027445,0.0000027325,0.0000027247, +0.0000027236,0.0000027241,0.0000027229,0.0000027177,0.0000027102, +0.0000027118,0.0000027165,0.0000027147,0.0000027173,0.0000027321, +0.0000027365,0.0000027363,0.0000027376,0.0000027377,0.0000027280, +0.0000027231,0.0000027296,0.0000027332,0.0000027285,0.0000027194, +0.0000027087,0.0000026991,0.0000026936,0.0000026907,0.0000026905, +0.0000027026,0.0000027258,0.0000027363,0.0000027314,0.0000027207, +0.0000027154,0.0000027181,0.0000027216,0.0000027187,0.0000027090, +0.0000026971,0.0000026889,0.0000026862,0.0000026893,0.0000026967, +0.0000027060,0.0000027127,0.0000027169,0.0000027200,0.0000027209, +0.0000027200,0.0000027173,0.0000027134,0.0000027103,0.0000027082, +0.0000027081,0.0000027102,0.0000027139,0.0000027204,0.0000027284, +0.0000027313,0.0000027285,0.0000027274,0.0000027312,0.0000027338, +0.0000027326,0.0000027287,0.0000027213,0.0000027099,0.0000026967, +0.0000026847,0.0000026759,0.0000026714,0.0000026724,0.0000026759, +0.0000026823,0.0000026910,0.0000026987,0.0000027003,0.0000026979, +0.0000026934,0.0000026891,0.0000026874,0.0000026885,0.0000026878, +0.0000026868,0.0000026854,0.0000026853,0.0000026873,0.0000026867, +0.0000026829,0.0000026853,0.0000026950,0.0000027071,0.0000027197, +0.0000027141,0.0000026947,0.0000026797,0.0000026698,0.0000026642, +0.0000026599,0.0000026511,0.0000026428,0.0000026413,0.0000026417, +0.0000026398,0.0000026389,0.0000026430,0.0000026508,0.0000026597, +0.0000026695,0.0000026785,0.0000026834,0.0000026836,0.0000026810, +0.0000026783,0.0000026772,0.0000026783,0.0000026805,0.0000026817, +0.0000026813,0.0000026795,0.0000026760,0.0000026709,0.0000026646, +0.0000026572,0.0000026498,0.0000026446,0.0000026438,0.0000026456, +0.0000026494,0.0000026502,0.0000026466,0.0000026393,0.0000026301, +0.0000026223,0.0000026177,0.0000026174,0.0000026205,0.0000026258, +0.0000026312,0.0000026353,0.0000026382,0.0000026409,0.0000026444, +0.0000026502,0.0000026584,0.0000026677,0.0000026774,0.0000026872, +0.0000026954,0.0000027003,0.0000027014,0.0000026989,0.0000026921, +0.0000026834,0.0000026837,0.0000027054,0.0000027337,0.0000027335, +0.0000027030,0.0000026758,0.0000026751,0.0000026844,0.0000026925, +0.0000027024,0.0000027137,0.0000027205,0.0000027236,0.0000027246, +0.0000027250,0.0000027259,0.0000027268,0.0000027269,0.0000027261, +0.0000027255,0.0000027268,0.0000027305,0.0000027328,0.0000027321, +0.0000027314,0.0000027341,0.0000027421,0.0000027515,0.0000027579, +0.0000027597,0.0000027595,0.0000027589,0.0000027595,0.0000027615, +0.0000027641,0.0000027658,0.0000027659,0.0000027643,0.0000027610, +0.0000027570,0.0000027540,0.0000027483,0.0000027461,0.0000027454, +0.0000027478,0.0000027530,0.0000027576,0.0000027590,0.0000027578, +0.0000027575,0.0000027573,0.0000027559,0.0000027549,0.0000027546, +0.0000027526,0.0000027453,0.0000027317,0.0000027234,0.0000027295, +0.0000027350,0.0000027304,0.0000027207,0.0000027069,0.0000026973, +0.0000026966,0.0000026975,0.0000027016,0.0000027136,0.0000027261, +0.0000027269,0.0000027326,0.0000027525,0.0000027626,0.0000027619, +0.0000027537,0.0000027417,0.0000027303,0.0000027249,0.0000027248, +0.0000027248,0.0000027242,0.0000027204,0.0000027130,0.0000027130, +0.0000027170,0.0000027160,0.0000027195,0.0000027343,0.0000027378, +0.0000027373,0.0000027380,0.0000027371,0.0000027265,0.0000027229, +0.0000027305,0.0000027330,0.0000027275,0.0000027201,0.0000027096, +0.0000026985,0.0000026920,0.0000026890,0.0000026888,0.0000026976, +0.0000027204,0.0000027361,0.0000027370,0.0000027299,0.0000027204, +0.0000027159,0.0000027179,0.0000027201,0.0000027185,0.0000027086, +0.0000026990,0.0000026920,0.0000026889,0.0000026910,0.0000026971, +0.0000027037,0.0000027074,0.0000027095,0.0000027111,0.0000027121, +0.0000027117,0.0000027102,0.0000027085,0.0000027069,0.0000027069, +0.0000027091,0.0000027125,0.0000027166,0.0000027233,0.0000027319, +0.0000027374,0.0000027351,0.0000027309,0.0000027340,0.0000027387, +0.0000027387,0.0000027343,0.0000027268,0.0000027165,0.0000027051, +0.0000026946,0.0000026853,0.0000026778,0.0000026740,0.0000026741, +0.0000026762,0.0000026813,0.0000026898,0.0000026972,0.0000027001, +0.0000026998,0.0000026970,0.0000026944,0.0000026928,0.0000026903, +0.0000026883,0.0000026866,0.0000026852,0.0000026853,0.0000026841, +0.0000026803,0.0000026819,0.0000026921,0.0000027041,0.0000027191, +0.0000027198,0.0000027024,0.0000026837,0.0000026712,0.0000026642, +0.0000026607,0.0000026545,0.0000026443,0.0000026377,0.0000026359, +0.0000026332,0.0000026298,0.0000026313,0.0000026379,0.0000026459, +0.0000026549,0.0000026656,0.0000026751,0.0000026797,0.0000026795, +0.0000026765,0.0000026727,0.0000026700,0.0000026691,0.0000026689, +0.0000026683,0.0000026674,0.0000026654,0.0000026609,0.0000026543, +0.0000026482,0.0000026460,0.0000026487,0.0000026578,0.0000026696, +0.0000026782,0.0000026815,0.0000026811,0.0000026747,0.0000026633, +0.0000026487,0.0000026334,0.0000026208,0.0000026141,0.0000026129, +0.0000026149,0.0000026186,0.0000026209,0.0000026222,0.0000026237, +0.0000026268,0.0000026320,0.0000026393,0.0000026481,0.0000026586, +0.0000026709,0.0000026842,0.0000026959,0.0000027031,0.0000027042, +0.0000027008,0.0000026930,0.0000026831,0.0000026817,0.0000027021, +0.0000027320,0.0000027376,0.0000027099,0.0000026794,0.0000026751, +0.0000026848,0.0000026922,0.0000026978,0.0000027055,0.0000027133, +0.0000027204,0.0000027258,0.0000027313,0.0000027352,0.0000027359, +0.0000027354,0.0000027332,0.0000027300,0.0000027288,0.0000027315, +0.0000027353,0.0000027374,0.0000027371,0.0000027380,0.0000027428, +0.0000027501,0.0000027559,0.0000027583,0.0000027585,0.0000027582, +0.0000027589,0.0000027613,0.0000027639,0.0000027657,0.0000027658, +0.0000027638,0.0000027598,0.0000027552,0.0000027513,0.0000027474, +0.0000027439,0.0000027406,0.0000027386,0.0000027403,0.0000027455, +0.0000027508,0.0000027537,0.0000027556,0.0000027568,0.0000027563, +0.0000027549,0.0000027536,0.0000027515,0.0000027464,0.0000027350, +0.0000027238,0.0000027288,0.0000027396,0.0000027384,0.0000027285, +0.0000027132,0.0000027025,0.0000027044,0.0000027069,0.0000027007, +0.0000027001,0.0000027134,0.0000027254,0.0000027266,0.0000027381, +0.0000027587,0.0000027648,0.0000027608,0.0000027508,0.0000027379, +0.0000027284,0.0000027261,0.0000027263,0.0000027255,0.0000027256, +0.0000027225,0.0000027150,0.0000027133,0.0000027163,0.0000027165, +0.0000027210,0.0000027358,0.0000027389,0.0000027382,0.0000027386, +0.0000027369,0.0000027255,0.0000027230,0.0000027314,0.0000027325, +0.0000027262,0.0000027200,0.0000027092,0.0000026970,0.0000026900, +0.0000026872,0.0000026875,0.0000026946,0.0000027159,0.0000027337, +0.0000027396,0.0000027374,0.0000027289,0.0000027189,0.0000027142, +0.0000027171,0.0000027207,0.0000027194,0.0000027111,0.0000027030, +0.0000026961,0.0000026923,0.0000026939,0.0000026974,0.0000027015, +0.0000027031,0.0000027042,0.0000027067,0.0000027087,0.0000027094, +0.0000027091,0.0000027082,0.0000027080,0.0000027106,0.0000027151, +0.0000027192,0.0000027238,0.0000027283,0.0000027351,0.0000027411, +0.0000027400,0.0000027336,0.0000027360,0.0000027425,0.0000027426, +0.0000027377,0.0000027307,0.0000027217,0.0000027118,0.0000027029, +0.0000026944,0.0000026859,0.0000026794,0.0000026767,0.0000026754, +0.0000026748,0.0000026773,0.0000026836,0.0000026908,0.0000026966, +0.0000026992,0.0000026991,0.0000026969,0.0000026934,0.0000026902, +0.0000026876,0.0000026851,0.0000026837,0.0000026819,0.0000026780, +0.0000026790,0.0000026894,0.0000027016,0.0000027159,0.0000027228, +0.0000027104,0.0000026904,0.0000026735,0.0000026636,0.0000026591, +0.0000026560,0.0000026476,0.0000026385,0.0000026336,0.0000026301, +0.0000026256,0.0000026243,0.0000026291,0.0000026361,0.0000026426, +0.0000026511,0.0000026615,0.0000026698,0.0000026734,0.0000026732, +0.0000026706,0.0000026670,0.0000026641,0.0000026623,0.0000026606, +0.0000026586,0.0000026562,0.0000026530,0.0000026486,0.0000026471, +0.0000026519,0.0000026652,0.0000026789,0.0000026876,0.0000026897, +0.0000026881,0.0000026864,0.0000026863,0.0000026868,0.0000026832, +0.0000026721,0.0000026544,0.0000026364,0.0000026233,0.0000026163, +0.0000026151,0.0000026171,0.0000026193,0.0000026209,0.0000026231, +0.0000026263,0.0000026301,0.0000026343,0.0000026392,0.0000026465, +0.0000026573,0.0000026715,0.0000026865,0.0000026989,0.0000027056, +0.0000027054,0.0000027006,0.0000026925,0.0000026832,0.0000026815, +0.0000027004,0.0000027309,0.0000027396,0.0000027156,0.0000026829, +0.0000026749,0.0000026842,0.0000026947,0.0000026998,0.0000027031, +0.0000027068,0.0000027114,0.0000027173,0.0000027254,0.0000027338, +0.0000027393,0.0000027418,0.0000027401,0.0000027354,0.0000027315, +0.0000027312,0.0000027347,0.0000027395,0.0000027420,0.0000027427, +0.0000027448,0.0000027493,0.0000027542,0.0000027574,0.0000027586, +0.0000027582,0.0000027590,0.0000027615,0.0000027640,0.0000027659, +0.0000027666,0.0000027645,0.0000027599,0.0000027548,0.0000027506, +0.0000027459,0.0000027432,0.0000027407,0.0000027376,0.0000027360, +0.0000027363,0.0000027393,0.0000027433,0.0000027482,0.0000027524, +0.0000027538,0.0000027528,0.0000027509,0.0000027485,0.0000027454, +0.0000027373,0.0000027261,0.0000027287,0.0000027434,0.0000027455, +0.0000027357,0.0000027204,0.0000027095,0.0000027143,0.0000027233, +0.0000027181,0.0000027023,0.0000026991,0.0000027147,0.0000027254, +0.0000027281,0.0000027465,0.0000027637,0.0000027654,0.0000027589, +0.0000027470,0.0000027338,0.0000027281,0.0000027283,0.0000027279, +0.0000027270,0.0000027272,0.0000027247,0.0000027173,0.0000027134, +0.0000027149,0.0000027162,0.0000027217,0.0000027365,0.0000027397, +0.0000027390,0.0000027394,0.0000027374,0.0000027253,0.0000027229, +0.0000027317,0.0000027319,0.0000027254,0.0000027191,0.0000027066, +0.0000026939,0.0000026877,0.0000026854,0.0000026862,0.0000026928, +0.0000027133,0.0000027311,0.0000027398,0.0000027419,0.0000027372, +0.0000027267,0.0000027150,0.0000027124,0.0000027175,0.0000027212, +0.0000027212,0.0000027155,0.0000027075,0.0000027007,0.0000026966, +0.0000026956,0.0000026974,0.0000026996,0.0000027002,0.0000027024, +0.0000027064,0.0000027093,0.0000027108,0.0000027108,0.0000027112, +0.0000027130,0.0000027169,0.0000027216,0.0000027273,0.0000027332, +0.0000027358,0.0000027380,0.0000027423,0.0000027418,0.0000027354, +0.0000027373,0.0000027443,0.0000027445,0.0000027397,0.0000027331, +0.0000027242,0.0000027147,0.0000027065,0.0000026989,0.0000026910, +0.0000026838,0.0000026796,0.0000026767,0.0000026731,0.0000026698, +0.0000026691,0.0000026733,0.0000026815,0.0000026914,0.0000026987, +0.0000026993,0.0000026964,0.0000026925,0.0000026885,0.0000026850, +0.0000026827,0.0000026803,0.0000026765,0.0000026774,0.0000026874, +0.0000026995,0.0000027128,0.0000027230,0.0000027171,0.0000026990, +0.0000026786,0.0000026643,0.0000026573,0.0000026553,0.0000026510, +0.0000026425,0.0000026353,0.0000026306,0.0000026265,0.0000026246, +0.0000026280,0.0000026356,0.0000026416,0.0000026469,0.0000026545, +0.0000026637,0.0000026686,0.0000026696,0.0000026690,0.0000026661, +0.0000026624,0.0000026596,0.0000026578,0.0000026565,0.0000026548, +0.0000026534,0.0000026527,0.0000026585,0.0000026695,0.0000026825, +0.0000026888,0.0000026877,0.0000026830,0.0000026776,0.0000026744, +0.0000026726,0.0000026728,0.0000026763,0.0000026813,0.0000026823, +0.0000026737,0.0000026563,0.0000026394,0.0000026294,0.0000026259, +0.0000026260,0.0000026274,0.0000026290,0.0000026308,0.0000026326, +0.0000026342,0.0000026356,0.0000026376,0.0000026419,0.0000026500, +0.0000026625,0.0000026778,0.0000026924,0.0000027028,0.0000027067, +0.0000027052,0.0000026997,0.0000026919,0.0000026827,0.0000026817, +0.0000027011,0.0000027309,0.0000027404,0.0000027203,0.0000026879, +0.0000026758,0.0000026831,0.0000026956,0.0000027026,0.0000027059, +0.0000027081,0.0000027108,0.0000027145,0.0000027191,0.0000027245, +0.0000027316,0.0000027390,0.0000027416,0.0000027398,0.0000027347, +0.0000027311,0.0000027328,0.0000027386,0.0000027443,0.0000027472, +0.0000027484,0.0000027499,0.0000027531,0.0000027569,0.0000027589, +0.0000027593,0.0000027601,0.0000027623,0.0000027654,0.0000027682, +0.0000027689,0.0000027657,0.0000027597,0.0000027537,0.0000027490, +0.0000027414,0.0000027401,0.0000027401,0.0000027394,0.0000027377, +0.0000027354,0.0000027333,0.0000027334,0.0000027372,0.0000027430, +0.0000027471,0.0000027479,0.0000027469,0.0000027451,0.0000027434, +0.0000027389,0.0000027300,0.0000027303,0.0000027447,0.0000027499, +0.0000027414,0.0000027264,0.0000027154,0.0000027214,0.0000027349, +0.0000027344,0.0000027217,0.0000027012,0.0000027000,0.0000027174, +0.0000027258,0.0000027335,0.0000027555,0.0000027666,0.0000027657, +0.0000027566,0.0000027418,0.0000027307,0.0000027294,0.0000027304, +0.0000027303,0.0000027299,0.0000027297,0.0000027273,0.0000027197, +0.0000027137,0.0000027132,0.0000027151,0.0000027214,0.0000027363, +0.0000027401,0.0000027392,0.0000027395,0.0000027378,0.0000027260, +0.0000027224,0.0000027317,0.0000027314,0.0000027251,0.0000027178, +0.0000027030,0.0000026900,0.0000026851,0.0000026835,0.0000026854, +0.0000026935,0.0000027132,0.0000027297,0.0000027393,0.0000027442, +0.0000027430,0.0000027349,0.0000027212,0.0000027113,0.0000027120, +0.0000027177,0.0000027220,0.0000027244,0.0000027201,0.0000027122, +0.0000027053,0.0000027001,0.0000026971,0.0000026975,0.0000026985, +0.0000026999,0.0000027034,0.0000027078,0.0000027115,0.0000027136, +0.0000027147,0.0000027168,0.0000027193,0.0000027226,0.0000027272, +0.0000027346,0.0000027422,0.0000027433,0.0000027400,0.0000027408, +0.0000027412,0.0000027362,0.0000027379,0.0000027448,0.0000027450, +0.0000027404,0.0000027320,0.0000027225,0.0000027141,0.0000027076, +0.0000027019,0.0000026950,0.0000026866,0.0000026795,0.0000026750, +0.0000026716,0.0000026674,0.0000026624,0.0000026602,0.0000026635, +0.0000026755,0.0000026911,0.0000026991,0.0000026982,0.0000026946, +0.0000026895,0.0000026853,0.0000026824,0.0000026790,0.0000026755, +0.0000026763,0.0000026861,0.0000026978,0.0000027104,0.0000027227, +0.0000027212,0.0000027075,0.0000026868,0.0000026674,0.0000026575, +0.0000026543,0.0000026533,0.0000026478,0.0000026399,0.0000026344, +0.0000026317,0.0000026313,0.0000026347,0.0000026430,0.0000026515, +0.0000026570,0.0000026629,0.0000026700,0.0000026756,0.0000026774, +0.0000026766,0.0000026737,0.0000026700,0.0000026668,0.0000026652, +0.0000026651,0.0000026658,0.0000026677,0.0000026724,0.0000026805, +0.0000026881,0.0000026908,0.0000026885,0.0000026825,0.0000026762, +0.0000026737,0.0000026732,0.0000026718,0.0000026693,0.0000026666, +0.0000026665,0.0000026708,0.0000026779,0.0000026806,0.0000026735, +0.0000026586,0.0000026456,0.0000026395,0.0000026384,0.0000026383, +0.0000026382,0.0000026382,0.0000026388,0.0000026393,0.0000026394, +0.0000026394,0.0000026412,0.0000026471,0.0000026574,0.0000026716, +0.0000026864,0.0000026982,0.0000027051,0.0000027065,0.0000027043, +0.0000026994,0.0000026917,0.0000026830,0.0000026832,0.0000027035, +0.0000027327,0.0000027418,0.0000027262,0.0000026966,0.0000026808, +0.0000026838,0.0000026922,0.0000026994,0.0000027036,0.0000027070, +0.0000027109,0.0000027153,0.0000027186,0.0000027205,0.0000027226, +0.0000027270,0.0000027335,0.0000027379,0.0000027361,0.0000027325, +0.0000027319,0.0000027363,0.0000027437,0.0000027496,0.0000027520, +0.0000027528,0.0000027542,0.0000027573,0.0000027599,0.0000027614, +0.0000027628,0.0000027652,0.0000027686,0.0000027713,0.0000027709, +0.0000027663,0.0000027590,0.0000027514,0.0000027450,0.0000027356, +0.0000027347,0.0000027369,0.0000027390,0.0000027394,0.0000027376, +0.0000027326,0.0000027281,0.0000027281,0.0000027327,0.0000027380, +0.0000027407,0.0000027413,0.0000027411,0.0000027417,0.0000027407, +0.0000027334,0.0000027313,0.0000027454,0.0000027528,0.0000027457, +0.0000027310,0.0000027200,0.0000027268,0.0000027419,0.0000027425, +0.0000027378,0.0000027205,0.0000027002,0.0000027022,0.0000027206, +0.0000027274,0.0000027418,0.0000027636,0.0000027694,0.0000027654, +0.0000027520,0.0000027357,0.0000027293,0.0000027307,0.0000027334, +0.0000027345,0.0000027344,0.0000027335,0.0000027303,0.0000027229, +0.0000027149,0.0000027124,0.0000027134,0.0000027199,0.0000027350, +0.0000027399,0.0000027388,0.0000027387,0.0000027374,0.0000027267, +0.0000027215,0.0000027317,0.0000027307,0.0000027248,0.0000027164, +0.0000027000,0.0000026876,0.0000026828,0.0000026820,0.0000026860, +0.0000026973,0.0000027159,0.0000027298,0.0000027384,0.0000027452, +0.0000027464,0.0000027407,0.0000027287,0.0000027154,0.0000027090, +0.0000027134,0.0000027177,0.0000027226,0.0000027271,0.0000027246, +0.0000027176,0.0000027098,0.0000027029,0.0000026984,0.0000026979, +0.0000026992,0.0000027021,0.0000027059,0.0000027106,0.0000027156, +0.0000027189,0.0000027216,0.0000027243,0.0000027262,0.0000027284, +0.0000027324,0.0000027403,0.0000027483,0.0000027482,0.0000027400, +0.0000027376,0.0000027395,0.0000027358,0.0000027374,0.0000027443, +0.0000027446,0.0000027382,0.0000027281,0.0000027205,0.0000027166, +0.0000027141,0.0000027104,0.0000027035,0.0000026922,0.0000026797, +0.0000026716,0.0000026674,0.0000026643,0.0000026607,0.0000026567, +0.0000026539,0.0000026597,0.0000026768,0.0000026945,0.0000026986, +0.0000026961,0.0000026911,0.0000026863,0.0000026826,0.0000026778, +0.0000026743,0.0000026756,0.0000026853,0.0000026961,0.0000027083, +0.0000027209,0.0000027228,0.0000027140,0.0000026965,0.0000026740, +0.0000026598,0.0000026544,0.0000026547,0.0000026531,0.0000026459, +0.0000026407,0.0000026403,0.0000026424,0.0000026455,0.0000026521, +0.0000026620,0.0000026707,0.0000026780,0.0000026864,0.0000026945, +0.0000026991,0.0000027000,0.0000026979,0.0000026948,0.0000026916, +0.0000026897,0.0000026902,0.0000026925,0.0000026955,0.0000026980, +0.0000026996,0.0000026986,0.0000026927,0.0000026846,0.0000026787, +0.0000026759,0.0000026766,0.0000026792,0.0000026805,0.0000026792, +0.0000026744,0.0000026686,0.0000026654,0.0000026657,0.0000026708, +0.0000026779,0.0000026800,0.0000026740,0.0000026633,0.0000026540, +0.0000026496,0.0000026487,0.0000026483,0.0000026478,0.0000026470, +0.0000026456,0.0000026437,0.0000026426,0.0000026429,0.0000026468, +0.0000026556,0.0000026682,0.0000026820,0.0000026938,0.0000027018, +0.0000027053,0.0000027051,0.0000027038,0.0000026994,0.0000026909, +0.0000026822,0.0000026843,0.0000027065,0.0000027354,0.0000027441, +0.0000027329,0.0000027091,0.0000026923,0.0000026897,0.0000026928, +0.0000026957,0.0000026980,0.0000027005,0.0000027034,0.0000027068, +0.0000027105,0.0000027141,0.0000027165,0.0000027173,0.0000027195, +0.0000027248,0.0000027309,0.0000027320,0.0000027322,0.0000027347, +0.0000027410,0.0000027479,0.0000027520,0.0000027549,0.0000027572, +0.0000027606,0.0000027634,0.0000027650,0.0000027663,0.0000027682, +0.0000027706,0.0000027715,0.0000027694,0.0000027640,0.0000027562, +0.0000027475,0.0000027397,0.0000027316,0.0000027314,0.0000027329, +0.0000027352,0.0000027372,0.0000027365,0.0000027321,0.0000027259, +0.0000027231,0.0000027241,0.0000027281,0.0000027316,0.0000027345, +0.0000027370,0.0000027405,0.0000027410,0.0000027349,0.0000027327, +0.0000027463,0.0000027543,0.0000027481,0.0000027333,0.0000027237, +0.0000027313,0.0000027461,0.0000027476,0.0000027468,0.0000027386, +0.0000027171,0.0000026979,0.0000027051,0.0000027231,0.0000027312, +0.0000027525,0.0000027704,0.0000027714,0.0000027631,0.0000027448, +0.0000027306,0.0000027292,0.0000027334,0.0000027382,0.0000027403, +0.0000027402,0.0000027389,0.0000027347,0.0000027272,0.0000027179, +0.0000027120,0.0000027113,0.0000027173,0.0000027326,0.0000027391, +0.0000027383,0.0000027376,0.0000027363,0.0000027265,0.0000027200, +0.0000027306,0.0000027296,0.0000027242,0.0000027152,0.0000026978, +0.0000026870,0.0000026819,0.0000026817,0.0000026877,0.0000027037, +0.0000027215,0.0000027312,0.0000027378,0.0000027457,0.0000027491, +0.0000027449,0.0000027346,0.0000027218,0.0000027103,0.0000027092, +0.0000027140,0.0000027169,0.0000027223,0.0000027278,0.0000027289, +0.0000027232,0.0000027143,0.0000027061,0.0000027009,0.0000027002, +0.0000027028,0.0000027065,0.0000027109,0.0000027174,0.0000027236, +0.0000027277,0.0000027313,0.0000027337,0.0000027347,0.0000027347, +0.0000027370,0.0000027441,0.0000027510,0.0000027497,0.0000027384, +0.0000027337,0.0000027370,0.0000027349,0.0000027369,0.0000027437, +0.0000027428,0.0000027339,0.0000027264,0.0000027252,0.0000027265, +0.0000027259,0.0000027217,0.0000027134,0.0000026999,0.0000026844, +0.0000026723,0.0000026648,0.0000026604,0.0000026587,0.0000026558, +0.0000026519,0.0000026508,0.0000026617,0.0000026836,0.0000026970, +0.0000026971,0.0000026931,0.0000026879,0.0000026831,0.0000026771, +0.0000026731,0.0000026748,0.0000026842,0.0000026941,0.0000027059, +0.0000027178,0.0000027226,0.0000027177,0.0000027050,0.0000026839, +0.0000026656,0.0000026567,0.0000026563,0.0000026575,0.0000026524, +0.0000026476,0.0000026498,0.0000026543,0.0000026561,0.0000026586, +0.0000026664,0.0000026767,0.0000026850,0.0000026932,0.0000027022, +0.0000027108,0.0000027169,0.0000027190,0.0000027180,0.0000027154, +0.0000027127,0.0000027116,0.0000027124,0.0000027124,0.0000027108, +0.0000027047,0.0000026978,0.0000026886,0.0000026811,0.0000026779, +0.0000026779,0.0000026801,0.0000026834,0.0000026865,0.0000026876, +0.0000026861,0.0000026801,0.0000026720,0.0000026664,0.0000026654, +0.0000026677,0.0000026739,0.0000026796,0.0000026810,0.0000026767, +0.0000026690,0.0000026612,0.0000026562,0.0000026539,0.0000026524, +0.0000026501,0.0000026470,0.0000026442,0.0000026432,0.0000026447, +0.0000026496,0.0000026573,0.0000026674,0.0000026787,0.0000026892, +0.0000026973,0.0000027025,0.0000027047,0.0000027052,0.0000027044, +0.0000026989,0.0000026883,0.0000026805,0.0000026848,0.0000027102, +0.0000027386,0.0000027469,0.0000027410,0.0000027257,0.0000027117, +0.0000027059,0.0000027052,0.0000027054,0.0000027064,0.0000027074, +0.0000027076,0.0000027076,0.0000027058,0.0000027035,0.0000027040, +0.0000027060,0.0000027073,0.0000027097,0.0000027157,0.0000027251, +0.0000027322,0.0000027350,0.0000027377,0.0000027425,0.0000027482, +0.0000027534,0.0000027575,0.0000027615,0.0000027641,0.0000027651, +0.0000027659,0.0000027668,0.0000027678,0.0000027671,0.0000027634, +0.0000027577,0.0000027501,0.0000027413,0.0000027343,0.0000027316, +0.0000027310,0.0000027286,0.0000027272,0.0000027283,0.0000027290, +0.0000027274,0.0000027236,0.0000027196,0.0000027179,0.0000027189, +0.0000027223,0.0000027274,0.0000027328,0.0000027383,0.0000027406, +0.0000027359,0.0000027340,0.0000027475,0.0000027557,0.0000027492, +0.0000027346,0.0000027271,0.0000027363,0.0000027468,0.0000027470, +0.0000027479,0.0000027471,0.0000027366,0.0000027100,0.0000026941, +0.0000027103,0.0000027253,0.0000027383,0.0000027629,0.0000027739, +0.0000027725,0.0000027573,0.0000027365,0.0000027284,0.0000027307, +0.0000027382,0.0000027451,0.0000027480,0.0000027480,0.0000027464, +0.0000027412,0.0000027326,0.0000027220,0.0000027130,0.0000027105, +0.0000027140,0.0000027289,0.0000027377,0.0000027379,0.0000027362, +0.0000027339,0.0000027252,0.0000027179,0.0000027291,0.0000027286, +0.0000027233,0.0000027146,0.0000026963,0.0000026867,0.0000026819, +0.0000026828,0.0000026915,0.0000027109,0.0000027274,0.0000027325, +0.0000027378,0.0000027464,0.0000027510,0.0000027480,0.0000027389, +0.0000027269,0.0000027139,0.0000027070,0.0000027086,0.0000027129, +0.0000027144,0.0000027198,0.0000027290,0.0000027324,0.0000027274, +0.0000027191,0.0000027117,0.0000027071,0.0000027071,0.0000027101, +0.0000027144,0.0000027209,0.0000027283,0.0000027338,0.0000027381, +0.0000027412,0.0000027430,0.0000027424,0.0000027406,0.0000027410, +0.0000027457,0.0000027510,0.0000027491,0.0000027357,0.0000027296, +0.0000027345,0.0000027341,0.0000027365,0.0000027416,0.0000027388, +0.0000027320,0.0000027319,0.0000027363,0.0000027374,0.0000027339, +0.0000027277,0.0000027180,0.0000027047,0.0000026907,0.0000026785, +0.0000026686,0.0000026618,0.0000026575,0.0000026540,0.0000026506, +0.0000026478,0.0000026513,0.0000026692,0.0000026912,0.0000026975, +0.0000026950,0.0000026897,0.0000026839,0.0000026770,0.0000026724, +0.0000026736,0.0000026824,0.0000026912,0.0000027028,0.0000027145, +0.0000027209,0.0000027193,0.0000027104,0.0000026940,0.0000026748, +0.0000026630,0.0000026595,0.0000026608,0.0000026579,0.0000026550, +0.0000026590,0.0000026649,0.0000026648,0.0000026629,0.0000026663, +0.0000026746,0.0000026822,0.0000026867,0.0000026925,0.0000027004, +0.0000027093,0.0000027158,0.0000027180,0.0000027175,0.0000027152, +0.0000027124,0.0000027111,0.0000027100,0.0000027062,0.0000027000, +0.0000026919,0.0000026846,0.0000026803,0.0000026791,0.0000026802, +0.0000026827,0.0000026861,0.0000026899,0.0000026928,0.0000026931, +0.0000026897,0.0000026819,0.0000026728,0.0000026671,0.0000026661, +0.0000026679,0.0000026729,0.0000026786,0.0000026822,0.0000026825, +0.0000026789,0.0000026710,0.0000026627,0.0000026571,0.0000026535, +0.0000026500,0.0000026467,0.0000026449,0.0000026458,0.0000026494, +0.0000026549,0.0000026610,0.0000026676,0.0000026751,0.0000026835, +0.0000026913,0.0000026974,0.0000027019,0.0000027053,0.0000027063, +0.0000027050,0.0000026966,0.0000026843,0.0000026783,0.0000026865, +0.0000027147,0.0000027415,0.0000027489,0.0000027482,0.0000027429, +0.0000027367,0.0000027336,0.0000027333,0.0000027343,0.0000027359, +0.0000027367,0.0000027360,0.0000027324,0.0000027237,0.0000027108, +0.0000026996,0.0000026930,0.0000026936,0.0000026963,0.0000027012, +0.0000027111,0.0000027237,0.0000027325,0.0000027361,0.0000027388, +0.0000027431,0.0000027483,0.0000027538,0.0000027580,0.0000027601, +0.0000027604,0.0000027607,0.0000027614,0.0000027613,0.0000027591, +0.0000027545,0.0000027482,0.0000027404,0.0000027338,0.0000027315, +0.0000027316,0.0000027271,0.0000027189,0.0000027133,0.0000027128, +0.0000027151,0.0000027166,0.0000027160,0.0000027145,0.0000027125, +0.0000027122,0.0000027152,0.0000027214,0.0000027286,0.0000027357, +0.0000027395,0.0000027357,0.0000027359,0.0000027504,0.0000027580, +0.0000027504,0.0000027366,0.0000027333,0.0000027441,0.0000027471, +0.0000027438,0.0000027446,0.0000027469,0.0000027462,0.0000027309, +0.0000027010,0.0000026953,0.0000027163,0.0000027289,0.0000027487, +0.0000027721,0.0000027778,0.0000027702,0.0000027481,0.0000027300, +0.0000027284,0.0000027349,0.0000027459,0.0000027551,0.0000027583, +0.0000027577,0.0000027546,0.0000027481,0.0000027383,0.0000027267, +0.0000027157,0.0000027101,0.0000027109,0.0000027244,0.0000027358, +0.0000027368,0.0000027346,0.0000027310,0.0000027231,0.0000027153, +0.0000027272,0.0000027286,0.0000027224,0.0000027143,0.0000026964, +0.0000026866,0.0000026814,0.0000026843,0.0000026966,0.0000027175, +0.0000027310,0.0000027331,0.0000027386,0.0000027481,0.0000027522, +0.0000027497,0.0000027415,0.0000027296,0.0000027170,0.0000027081, +0.0000027042,0.0000027059,0.0000027097,0.0000027112,0.0000027173, +0.0000027270,0.0000027307,0.0000027274,0.0000027224,0.0000027175, +0.0000027150,0.0000027156,0.0000027194,0.0000027252,0.0000027320, +0.0000027378,0.0000027419,0.0000027452,0.0000027479,0.0000027484, +0.0000027467,0.0000027444,0.0000027430,0.0000027451,0.0000027501, +0.0000027476,0.0000027324,0.0000027268,0.0000027329,0.0000027329, +0.0000027350,0.0000027388,0.0000027363,0.0000027357,0.0000027427, +0.0000027458,0.0000027419,0.0000027356,0.0000027295,0.0000027200, +0.0000027080,0.0000026970,0.0000026868,0.0000026773,0.0000026690, +0.0000026612,0.0000026540,0.0000026492,0.0000026469,0.0000026465, +0.0000026566,0.0000026818,0.0000026976,0.0000026965,0.0000026913, +0.0000026849,0.0000026773,0.0000026714,0.0000026721,0.0000026798, +0.0000026875,0.0000026982,0.0000027105,0.0000027186,0.0000027195, +0.0000027133,0.0000027015,0.0000026848,0.0000026715,0.0000026641, +0.0000026636,0.0000026622,0.0000026620,0.0000026684,0.0000026737, +0.0000026726,0.0000026676,0.0000026661,0.0000026694,0.0000026722, +0.0000026714,0.0000026720,0.0000026769,0.0000026856,0.0000026942, +0.0000026995,0.0000027014,0.0000027016,0.0000027000,0.0000026983, +0.0000026974,0.0000026958,0.0000026923,0.0000026880,0.0000026844, +0.0000026821,0.0000026822,0.0000026839,0.0000026863,0.0000026892, +0.0000026930,0.0000026965,0.0000026974,0.0000026952,0.0000026893, +0.0000026809,0.0000026726,0.0000026679,0.0000026676,0.0000026704, +0.0000026749,0.0000026794,0.0000026828,0.0000026843,0.0000026824, +0.0000026749,0.0000026653,0.0000026579,0.0000026529,0.0000026497, +0.0000026491,0.0000026506,0.0000026537,0.0000026571,0.0000026603, +0.0000026634,0.0000026668,0.0000026708,0.0000026766,0.0000026840, +0.0000026910,0.0000026974,0.0000027036,0.0000027074,0.0000027081, +0.0000027037,0.0000026916,0.0000026795,0.0000026766,0.0000026889, +0.0000027183,0.0000027434,0.0000027517,0.0000027526,0.0000027530, +0.0000027530,0.0000027527,0.0000027518,0.0000027503,0.0000027484, +0.0000027465,0.0000027458,0.0000027452,0.0000027412,0.0000027314, +0.0000027150,0.0000026968,0.0000026858,0.0000026845,0.0000026907, +0.0000026997,0.0000027098,0.0000027204,0.0000027292,0.0000027353, +0.0000027393,0.0000027425,0.0000027475,0.0000027516,0.0000027537, +0.0000027545,0.0000027550,0.0000027542,0.0000027511,0.0000027463, +0.0000027404,0.0000027345,0.0000027312,0.0000027314,0.0000027326, +0.0000027200,0.0000027109,0.0000027029,0.0000026988,0.0000026988, +0.0000027019,0.0000027048,0.0000027065,0.0000027068,0.0000027065, +0.0000027073,0.0000027107,0.0000027172,0.0000027261,0.0000027346, +0.0000027380,0.0000027352,0.0000027388,0.0000027560,0.0000027616, +0.0000027522,0.0000027418,0.0000027445,0.0000027539,0.0000027493, +0.0000027437,0.0000027438,0.0000027448,0.0000027451,0.0000027430, +0.0000027219,0.0000026942,0.0000026990,0.0000027218,0.0000027350, +0.0000027609,0.0000027796,0.0000027799,0.0000027634,0.0000027384, +0.0000027280,0.0000027308,0.0000027422,0.0000027573,0.0000027673, +0.0000027689,0.0000027650,0.0000027589,0.0000027514,0.0000027421, +0.0000027309,0.0000027191,0.0000027099,0.0000027086,0.0000027200, +0.0000027326,0.0000027345,0.0000027327,0.0000027280,0.0000027206, +0.0000027130,0.0000027250,0.0000027295,0.0000027220,0.0000027147, +0.0000026983,0.0000026876,0.0000026814,0.0000026864,0.0000027018, +0.0000027228,0.0000027321,0.0000027338,0.0000027409,0.0000027501, +0.0000027528,0.0000027505,0.0000027430,0.0000027317,0.0000027193, +0.0000027099,0.0000027032,0.0000026994,0.0000027016,0.0000027060, +0.0000027092,0.0000027148,0.0000027208,0.0000027239,0.0000027237, +0.0000027214,0.0000027197,0.0000027193,0.0000027220,0.0000027273, +0.0000027333,0.0000027390,0.0000027425,0.0000027456,0.0000027492, +0.0000027513,0.0000027504,0.0000027479,0.0000027453,0.0000027426, +0.0000027440,0.0000027493,0.0000027453,0.0000027295,0.0000027250, +0.0000027306,0.0000027308,0.0000027330,0.0000027366,0.0000027371, +0.0000027433,0.0000027515,0.0000027498,0.0000027418,0.0000027367, +0.0000027334,0.0000027263,0.0000027163,0.0000027062,0.0000026960, +0.0000026861,0.0000026771,0.0000026683,0.0000026586,0.0000026503, +0.0000026464,0.0000026449,0.0000026489,0.0000026718,0.0000026968, +0.0000026982,0.0000026929,0.0000026862,0.0000026780,0.0000026707, +0.0000026705,0.0000026769,0.0000026837,0.0000026926,0.0000027051, +0.0000027147,0.0000027184,0.0000027148,0.0000027056,0.0000026929, +0.0000026803,0.0000026693,0.0000026656,0.0000026651,0.0000026684, +0.0000026774,0.0000026822,0.0000026799,0.0000026735,0.0000026682, +0.0000026643,0.0000026603,0.0000026556,0.0000026537,0.0000026576, +0.0000026662,0.0000026761,0.0000026838,0.0000026876,0.0000026893, +0.0000026903,0.0000026911,0.0000026916,0.0000026919,0.0000026916, +0.0000026894,0.0000026878,0.0000026867,0.0000026867,0.0000026881, +0.0000026903,0.0000026931,0.0000026965,0.0000026991,0.0000026994, +0.0000026974,0.0000026937,0.0000026880,0.0000026806,0.0000026738, +0.0000026702,0.0000026705,0.0000026740,0.0000026784,0.0000026821, +0.0000026841,0.0000026844,0.0000026810,0.0000026731,0.0000026640, +0.0000026568,0.0000026533,0.0000026538,0.0000026569,0.0000026602, +0.0000026622,0.0000026631,0.0000026632,0.0000026637,0.0000026650, +0.0000026668,0.0000026700,0.0000026764,0.0000026847,0.0000026930, +0.0000027015,0.0000027076,0.0000027097,0.0000027084,0.0000026992, +0.0000026849,0.0000026752,0.0000026756,0.0000026907,0.0000027201, +0.0000027442,0.0000027522,0.0000027531,0.0000027533,0.0000027533, +0.0000027515,0.0000027478,0.0000027426,0.0000027374,0.0000027344, +0.0000027345,0.0000027365,0.0000027381,0.0000027359,0.0000027292, +0.0000027146,0.0000026955,0.0000026844,0.0000026829,0.0000026897, +0.0000026989,0.0000027069,0.0000027150,0.0000027231,0.0000027295, +0.0000027345,0.0000027399,0.0000027437,0.0000027456,0.0000027462, +0.0000027450,0.0000027406,0.0000027339,0.0000027286,0.0000027268, +0.0000027281,0.0000027306,0.0000027306,0.0000027277,0.0000027053, +0.0000027007,0.0000026979,0.0000026964,0.0000026965,0.0000026981, +0.0000027014,0.0000027033,0.0000027038,0.0000027041,0.0000027054, +0.0000027096,0.0000027163,0.0000027263,0.0000027353,0.0000027367, +0.0000027340,0.0000027440,0.0000027622,0.0000027637,0.0000027541, +0.0000027496,0.0000027583,0.0000027638,0.0000027528,0.0000027466, +0.0000027488,0.0000027481,0.0000027438,0.0000027423,0.0000027377, +0.0000027115,0.0000026900,0.0000027066,0.0000027271,0.0000027450, +0.0000027721,0.0000027832,0.0000027782,0.0000027537,0.0000027318, +0.0000027288,0.0000027363,0.0000027533,0.0000027710,0.0000027772, +0.0000027738,0.0000027651,0.0000027570,0.0000027496,0.0000027419, +0.0000027336,0.0000027227,0.0000027120,0.0000027081,0.0000027162, +0.0000027289,0.0000027311,0.0000027302,0.0000027252,0.0000027184, +0.0000027114,0.0000027221,0.0000027308,0.0000027225,0.0000027161, +0.0000027012,0.0000026897,0.0000026821,0.0000026886,0.0000027062, +0.0000027267,0.0000027335,0.0000027348,0.0000027436,0.0000027524, +0.0000027535,0.0000027504,0.0000027432,0.0000027338,0.0000027219, +0.0000027111,0.0000027038,0.0000026971,0.0000026925,0.0000026955, +0.0000027012,0.0000027067,0.0000027118,0.0000027156,0.0000027181, +0.0000027189,0.0000027190,0.0000027196,0.0000027219,0.0000027270, +0.0000027332,0.0000027390,0.0000027427,0.0000027450,0.0000027494, +0.0000027535,0.0000027541,0.0000027511,0.0000027474,0.0000027437, +0.0000027409,0.0000027432,0.0000027486,0.0000027431,0.0000027271, +0.0000027224,0.0000027274,0.0000027285,0.0000027317,0.0000027363, +0.0000027398,0.0000027496,0.0000027551,0.0000027497,0.0000027418, +0.0000027399,0.0000027398,0.0000027368,0.0000027295,0.0000027191, +0.0000027073,0.0000026952,0.0000026839,0.0000026745,0.0000026654, +0.0000026553,0.0000026471,0.0000026444,0.0000026460,0.0000026641, +0.0000026940,0.0000027000,0.0000026948,0.0000026882,0.0000026798, +0.0000026709,0.0000026694,0.0000026748,0.0000026813,0.0000026883, +0.0000026991,0.0000027098,0.0000027163,0.0000027152,0.0000027076, +0.0000026976,0.0000026870,0.0000026743,0.0000026666,0.0000026668, +0.0000026739,0.0000026855,0.0000026901,0.0000026872,0.0000026806, +0.0000026725,0.0000026618,0.0000026518,0.0000026452,0.0000026439, +0.0000026498,0.0000026585,0.0000026684,0.0000026777,0.0000026833, +0.0000026859,0.0000026879,0.0000026901,0.0000026928,0.0000026947, +0.0000026954,0.0000026953,0.0000026943,0.0000026929,0.0000026919, +0.0000026920,0.0000026936,0.0000026965,0.0000027000,0.0000027020, +0.0000027007,0.0000026976,0.0000026949,0.0000026923,0.0000026877, +0.0000026815,0.0000026760,0.0000026731,0.0000026736,0.0000026771, +0.0000026813,0.0000026841,0.0000026843,0.0000026813,0.0000026751, +0.0000026682,0.0000026630,0.0000026606,0.0000026616,0.0000026642, +0.0000026663,0.0000026671,0.0000026667,0.0000026657,0.0000026642, +0.0000026631,0.0000026628,0.0000026634,0.0000026648,0.0000026695, +0.0000026784,0.0000026891,0.0000027000,0.0000027086,0.0000027126, +0.0000027122,0.0000027060,0.0000026927,0.0000026791,0.0000026727, +0.0000026750,0.0000026914,0.0000027187,0.0000027407,0.0000027490, +0.0000027492,0.0000027466,0.0000027420,0.0000027343,0.0000027230, +0.0000027101,0.0000026998,0.0000026954,0.0000026961,0.0000027006, +0.0000027089,0.0000027189,0.0000027250,0.0000027225,0.0000027134, +0.0000026984,0.0000026855,0.0000026829,0.0000026888,0.0000026982, +0.0000027058,0.0000027112,0.0000027159,0.0000027208,0.0000027256, +0.0000027288,0.0000027305,0.0000027312,0.0000027297,0.0000027264, +0.0000027238,0.0000027241,0.0000027259,0.0000027261,0.0000027233, +0.0000027175,0.0000027112,0.0000027133,0.0000027125,0.0000027118, +0.0000027115,0.0000027103,0.0000027089,0.0000027089,0.0000027087, +0.0000027079,0.0000027066,0.0000027071,0.0000027114,0.0000027191, +0.0000027292,0.0000027362,0.0000027349,0.0000027340,0.0000027509, +0.0000027657,0.0000027636,0.0000027557,0.0000027593,0.0000027721, +0.0000027698,0.0000027580,0.0000027529,0.0000027567,0.0000027586, +0.0000027519,0.0000027415,0.0000027401,0.0000027308,0.0000026998, +0.0000026909,0.0000027160,0.0000027336,0.0000027576,0.0000027818, +0.0000027862,0.0000027723,0.0000027435,0.0000027300,0.0000027320, +0.0000027450,0.0000027673,0.0000027820,0.0000027815,0.0000027714, +0.0000027601,0.0000027519,0.0000027449,0.0000027394,0.0000027341, +0.0000027255,0.0000027146,0.0000027080,0.0000027133,0.0000027252, +0.0000027272,0.0000027270,0.0000027225,0.0000027170,0.0000027104, +0.0000027188,0.0000027316,0.0000027233,0.0000027178,0.0000027045, +0.0000026930,0.0000026841,0.0000026894,0.0000027083,0.0000027290, +0.0000027351,0.0000027366,0.0000027459,0.0000027547,0.0000027551, +0.0000027509,0.0000027429,0.0000027339,0.0000027235,0.0000027120, +0.0000027045,0.0000026982,0.0000026904,0.0000026872,0.0000026896, +0.0000026950,0.0000027022,0.0000027074,0.0000027114,0.0000027138, +0.0000027160,0.0000027182,0.0000027219,0.0000027273,0.0000027336, +0.0000027399,0.0000027439,0.0000027455,0.0000027489,0.0000027542, +0.0000027568,0.0000027554,0.0000027512,0.0000027463,0.0000027405, +0.0000027388,0.0000027429,0.0000027478,0.0000027412,0.0000027242, +0.0000027188,0.0000027235,0.0000027266,0.0000027310,0.0000027360, +0.0000027420,0.0000027524,0.0000027558,0.0000027491,0.0000027426, +0.0000027428,0.0000027458,0.0000027474,0.0000027433,0.0000027330, +0.0000027198,0.0000027059,0.0000026916,0.0000026797,0.0000026702, +0.0000026606,0.0000026504,0.0000026449,0.0000026461,0.0000026606, +0.0000026907,0.0000027018,0.0000026972,0.0000026909,0.0000026822, +0.0000026717,0.0000026689,0.0000026734,0.0000026806,0.0000026868, +0.0000026944,0.0000027039,0.0000027125,0.0000027145,0.0000027083, +0.0000026995,0.0000026909,0.0000026784,0.0000026673,0.0000026677, +0.0000026782,0.0000026920,0.0000026966,0.0000026938,0.0000026881, +0.0000026792,0.0000026631,0.0000026474,0.0000026413,0.0000026418, +0.0000026479,0.0000026571,0.0000026660,0.0000026748,0.0000026810, +0.0000026841,0.0000026865,0.0000026895,0.0000026935,0.0000026974, +0.0000027003,0.0000027016,0.0000027013,0.0000026997,0.0000026973, +0.0000026958,0.0000026962,0.0000026991,0.0000027028,0.0000027041, +0.0000027017,0.0000026972,0.0000026943,0.0000026934,0.0000026916, +0.0000026873,0.0000026819,0.0000026775,0.0000026754,0.0000026761, +0.0000026794,0.0000026829,0.0000026841,0.0000026819,0.0000026756, +0.0000026696,0.0000026673,0.0000026686,0.0000026713,0.0000026725, +0.0000026717,0.0000026701,0.0000026691,0.0000026679,0.0000026660, +0.0000026636,0.0000026619,0.0000026615,0.0000026615,0.0000026619, +0.0000026653,0.0000026739,0.0000026860,0.0000026993,0.0000027102, +0.0000027156,0.0000027160,0.0000027113,0.0000026999,0.0000026858, +0.0000026750,0.0000026720,0.0000026761,0.0000026908,0.0000027115, +0.0000027274,0.0000027325,0.0000027304,0.0000027216,0.0000027081, +0.0000026921,0.0000026774,0.0000026678,0.0000026641,0.0000026643, +0.0000026660,0.0000026689,0.0000026745,0.0000026852,0.0000027003, +0.0000027143,0.0000027181,0.0000027136,0.0000027014,0.0000026899, +0.0000026876,0.0000026905,0.0000026985,0.0000027060,0.0000027113, +0.0000027154,0.0000027186,0.0000027216,0.0000027242,0.0000027259, +0.0000027262,0.0000027244,0.0000027214,0.0000027184,0.0000027157, +0.0000027134,0.0000027124,0.0000027135,0.0000027128,0.0000027243, +0.0000027226,0.0000027214,0.0000027211,0.0000027223,0.0000027230, +0.0000027224,0.0000027200,0.0000027167,0.0000027140,0.0000027135, +0.0000027164,0.0000027238,0.0000027334,0.0000027372,0.0000027337, +0.0000027380,0.0000027576,0.0000027668,0.0000027621,0.0000027590, +0.0000027691,0.0000027783,0.0000027708,0.0000027617,0.0000027597, +0.0000027648,0.0000027707,0.0000027674,0.0000027532,0.0000027401, +0.0000027377,0.0000027217,0.0000026927,0.0000026966,0.0000027243, +0.0000027421,0.0000027706,0.0000027887,0.0000027871,0.0000027636, +0.0000027363,0.0000027309,0.0000027373,0.0000027561,0.0000027786, +0.0000027856,0.0000027789,0.0000027654,0.0000027556,0.0000027488, +0.0000027417,0.0000027370,0.0000027332,0.0000027271,0.0000027170, +0.0000027089,0.0000027122,0.0000027219,0.0000027229,0.0000027230, +0.0000027200,0.0000027160,0.0000027099,0.0000027150,0.0000027323, +0.0000027252,0.0000027198,0.0000027086,0.0000026960,0.0000026859, +0.0000026886,0.0000027075,0.0000027294,0.0000027366,0.0000027378, +0.0000027463,0.0000027547,0.0000027563,0.0000027529,0.0000027445, +0.0000027344,0.0000027242,0.0000027132,0.0000027047,0.0000026981, +0.0000026909,0.0000026855,0.0000026846,0.0000026866,0.0000026922, +0.0000026975,0.0000027016,0.0000027051,0.0000027092,0.0000027137, +0.0000027194,0.0000027260,0.0000027329,0.0000027398,0.0000027446, +0.0000027459,0.0000027472,0.0000027517,0.0000027560,0.0000027563, +0.0000027540,0.0000027505,0.0000027436,0.0000027373,0.0000027378, +0.0000027428,0.0000027469,0.0000027385,0.0000027208,0.0000027146, +0.0000027188,0.0000027239,0.0000027284,0.0000027328,0.0000027412, +0.0000027529,0.0000027555,0.0000027488,0.0000027429,0.0000027437, +0.0000027497,0.0000027556,0.0000027547,0.0000027457,0.0000027322, +0.0000027173,0.0000027020,0.0000026872,0.0000026743,0.0000026640, +0.0000026549,0.0000026479,0.0000026486,0.0000026612,0.0000026882, +0.0000027030,0.0000026996,0.0000026934,0.0000026843,0.0000026727, +0.0000026694,0.0000026734,0.0000026814,0.0000026876,0.0000026923, +0.0000026986,0.0000027074,0.0000027123,0.0000027083,0.0000026999, +0.0000026922,0.0000026814,0.0000026690,0.0000026685,0.0000026813, +0.0000026965,0.0000027011,0.0000026986,0.0000026943,0.0000026869, +0.0000026686,0.0000026476,0.0000026407,0.0000026422,0.0000026501, +0.0000026604,0.0000026678,0.0000026738,0.0000026800,0.0000026836, +0.0000026855,0.0000026880,0.0000026921,0.0000026975,0.0000027028, +0.0000027067,0.0000027077,0.0000027059,0.0000027021,0.0000026988, +0.0000026982,0.0000027011,0.0000027053,0.0000027065,0.0000027026, +0.0000026964,0.0000026925,0.0000026920,0.0000026918,0.0000026898, +0.0000026860,0.0000026819,0.0000026785,0.0000026772,0.0000026781, +0.0000026805,0.0000026816,0.0000026808,0.0000026774,0.0000026735, +0.0000026724,0.0000026750,0.0000026792,0.0000026806,0.0000026776, +0.0000026732,0.0000026698,0.0000026681,0.0000026668,0.0000026650, +0.0000026630,0.0000026621,0.0000026625,0.0000026627,0.0000026627, +0.0000026648,0.0000026721,0.0000026842,0.0000026985,0.0000027107, +0.0000027173,0.0000027188,0.0000027159,0.0000027068,0.0000026936, +0.0000026809,0.0000026737,0.0000026732,0.0000026780,0.0000026876, +0.0000026984,0.0000027044,0.0000027030,0.0000026944,0.0000026819, +0.0000026701,0.0000026620,0.0000026590,0.0000026593,0.0000026599, +0.0000026598,0.0000026602,0.0000026608,0.0000026609,0.0000026636, +0.0000026721,0.0000026877,0.0000027049,0.0000027131,0.0000027140, +0.0000027079,0.0000027004,0.0000026955,0.0000026971,0.0000027006, +0.0000027056,0.0000027106,0.0000027141,0.0000027173,0.0000027190, +0.0000027191,0.0000027176,0.0000027148,0.0000027125,0.0000027125, +0.0000027149,0.0000027195,0.0000027233,0.0000027253,0.0000027253, +0.0000027214,0.0000027193,0.0000027175,0.0000027164,0.0000027175, +0.0000027223,0.0000027267,0.0000027285,0.0000027261,0.0000027228, +0.0000027216,0.0000027239,0.0000027313,0.0000027366,0.0000027345, +0.0000027326,0.0000027460,0.0000027628,0.0000027653,0.0000027588, +0.0000027619,0.0000027751,0.0000027764,0.0000027654,0.0000027611, +0.0000027625,0.0000027689,0.0000027790,0.0000027816,0.0000027723, +0.0000027511,0.0000027382,0.0000027341,0.0000027121,0.0000026886, +0.0000027055,0.0000027316,0.0000027534,0.0000027817,0.0000027930, +0.0000027847,0.0000027542,0.0000027327,0.0000027332,0.0000027440, +0.0000027658,0.0000027839,0.0000027851,0.0000027732,0.0000027609, +0.0000027550,0.0000027496,0.0000027419,0.0000027363,0.0000027325, +0.0000027279,0.0000027196,0.0000027113,0.0000027123,0.0000027191, +0.0000027183,0.0000027182,0.0000027179,0.0000027149,0.0000027092, +0.0000027115,0.0000027326,0.0000027279,0.0000027231,0.0000027133, +0.0000026992,0.0000026875,0.0000026868,0.0000027037,0.0000027279, +0.0000027377,0.0000027384,0.0000027459,0.0000027534,0.0000027563, +0.0000027542,0.0000027480,0.0000027378,0.0000027264,0.0000027154, +0.0000027058,0.0000026967,0.0000026891,0.0000026843,0.0000026840, +0.0000026863,0.0000026898,0.0000026937,0.0000026962,0.0000026983, +0.0000027021,0.0000027066,0.0000027127,0.0000027204,0.0000027278, +0.0000027357,0.0000027422,0.0000027443,0.0000027437,0.0000027461, +0.0000027508,0.0000027524,0.0000027518,0.0000027510,0.0000027478, +0.0000027404,0.0000027361,0.0000027376,0.0000027429,0.0000027455, +0.0000027350,0.0000027175,0.0000027102,0.0000027135,0.0000027187, +0.0000027216,0.0000027250,0.0000027354,0.0000027495,0.0000027544, +0.0000027491,0.0000027429,0.0000027434,0.0000027512,0.0000027601, +0.0000027621,0.0000027559,0.0000027430,0.0000027279,0.0000027133, +0.0000026976,0.0000026810,0.0000026673,0.0000026592,0.0000026534, +0.0000026534,0.0000026641,0.0000026870,0.0000027032,0.0000027012, +0.0000026954,0.0000026855,0.0000026736,0.0000026713,0.0000026755, +0.0000026835,0.0000026898,0.0000026922,0.0000026950,0.0000027025, +0.0000027089,0.0000027074,0.0000026996,0.0000026917,0.0000026828, +0.0000026711,0.0000026699,0.0000026834,0.0000026988,0.0000027032, +0.0000027011,0.0000026984,0.0000026934,0.0000026766,0.0000026519, +0.0000026411,0.0000026433,0.0000026523,0.0000026630,0.0000026705, +0.0000026753,0.0000026801,0.0000026847,0.0000026876,0.0000026895, +0.0000026926,0.0000026979,0.0000027046,0.0000027106,0.0000027130, +0.0000027111,0.0000027054,0.0000027010,0.0000027000,0.0000027029, +0.0000027074,0.0000027086,0.0000027039,0.0000026959,0.0000026904, +0.0000026890,0.0000026889,0.0000026884,0.0000026866,0.0000026843, +0.0000026815,0.0000026790,0.0000026782,0.0000026787,0.0000026792, +0.0000026789,0.0000026783,0.0000026779,0.0000026794,0.0000026823, +0.0000026844,0.0000026843,0.0000026815,0.0000026768,0.0000026724, +0.0000026694,0.0000026682,0.0000026676,0.0000026667,0.0000026659, +0.0000026663,0.0000026678,0.0000026687,0.0000026679,0.0000026683, +0.0000026738,0.0000026846,0.0000026978,0.0000027100,0.0000027173, +0.0000027196,0.0000027185,0.0000027120,0.0000027010,0.0000026889, +0.0000026795,0.0000026761,0.0000026769,0.0000026804,0.0000026840, +0.0000026857,0.0000026837,0.0000026772,0.0000026699,0.0000026648, +0.0000026620,0.0000026607,0.0000026608,0.0000026594,0.0000026563, +0.0000026548,0.0000026557,0.0000026579,0.0000026574,0.0000026560, +0.0000026563,0.0000026630,0.0000026779,0.0000026966,0.0000027112, +0.0000027166,0.0000027160,0.0000027137,0.0000027121,0.0000027114, +0.0000027122,0.0000027137,0.0000027146,0.0000027165,0.0000027181, +0.0000027199,0.0000027217,0.0000027230,0.0000027236,0.0000027242, +0.0000027257,0.0000027270,0.0000027265,0.0000027265,0.0000027238, +0.0000027131,0.0000027129,0.0000027124,0.0000027106,0.0000027092, +0.0000027118,0.0000027190,0.0000027271,0.0000027300,0.0000027295, +0.0000027299,0.0000027330,0.0000027358,0.0000027337,0.0000027302, +0.0000027370,0.0000027546,0.0000027637,0.0000027605,0.0000027563, +0.0000027651,0.0000027747,0.0000027653,0.0000027541,0.0000027522, +0.0000027561,0.0000027643,0.0000027768,0.0000027888,0.0000027885, +0.0000027721,0.0000027477,0.0000027369,0.0000027299,0.0000027023, +0.0000026888,0.0000027160,0.0000027390,0.0000027661,0.0000027911, +0.0000027964,0.0000027795,0.0000027464,0.0000027340,0.0000027372, +0.0000027503,0.0000027731,0.0000027858,0.0000027824,0.0000027679, +0.0000027601,0.0000027576,0.0000027517,0.0000027433,0.0000027367, +0.0000027322,0.0000027282,0.0000027216,0.0000027136,0.0000027130, +0.0000027166,0.0000027137,0.0000027132,0.0000027159,0.0000027137, +0.0000027082,0.0000027092,0.0000027327,0.0000027314,0.0000027262, +0.0000027186,0.0000027027,0.0000026900,0.0000026848,0.0000026974, +0.0000027226,0.0000027377,0.0000027385,0.0000027444,0.0000027516, +0.0000027547,0.0000027538,0.0000027502,0.0000027425,0.0000027317, +0.0000027207,0.0000027096,0.0000026981,0.0000026882,0.0000026815, +0.0000026810,0.0000026856,0.0000026900,0.0000026949,0.0000026981, +0.0000026998,0.0000027022,0.0000027049,0.0000027089,0.0000027148, +0.0000027214,0.0000027288,0.0000027364,0.0000027401,0.0000027394, +0.0000027397,0.0000027436,0.0000027463,0.0000027465,0.0000027460, +0.0000027467,0.0000027449,0.0000027385,0.0000027354,0.0000027373, +0.0000027422,0.0000027431,0.0000027314,0.0000027150,0.0000027073, +0.0000027087,0.0000027113,0.0000027117,0.0000027137,0.0000027245, +0.0000027414,0.0000027513,0.0000027493,0.0000027439,0.0000027432, +0.0000027501,0.0000027606,0.0000027654,0.0000027620,0.0000027508, +0.0000027365,0.0000027230,0.0000027085,0.0000026905,0.0000026728, +0.0000026632,0.0000026600,0.0000026594,0.0000026677,0.0000026863, +0.0000027025,0.0000027015,0.0000026961,0.0000026858,0.0000026754, +0.0000026748,0.0000026796,0.0000026861,0.0000026916,0.0000026931, +0.0000026934,0.0000026989,0.0000027056,0.0000027055,0.0000026991, +0.0000026906,0.0000026829,0.0000026739,0.0000026728,0.0000026849, +0.0000026995,0.0000027033,0.0000027018,0.0000026996,0.0000026978, +0.0000026851,0.0000026595,0.0000026422,0.0000026439,0.0000026533, +0.0000026630,0.0000026697,0.0000026755,0.0000026813,0.0000026866, +0.0000026910,0.0000026939,0.0000026964,0.0000027004,0.0000027063, +0.0000027131,0.0000027169,0.0000027152,0.0000027085,0.0000027024, +0.0000027013,0.0000027051,0.0000027099,0.0000027109,0.0000027060, +0.0000026968,0.0000026892,0.0000026858,0.0000026847,0.0000026842, +0.0000026838,0.0000026836,0.0000026828,0.0000026810,0.0000026794, +0.0000026785,0.0000026778,0.0000026775,0.0000026787,0.0000026815, +0.0000026853,0.0000026884,0.0000026891,0.0000026867,0.0000026819, +0.0000026774,0.0000026747,0.0000026736,0.0000026735,0.0000026733, +0.0000026728,0.0000026721,0.0000026716,0.0000026724,0.0000026750, +0.0000026770,0.0000026763,0.0000026750,0.0000026777,0.0000026862, +0.0000026972,0.0000027080,0.0000027149,0.0000027180,0.0000027180, +0.0000027141,0.0000027058,0.0000026959,0.0000026873,0.0000026820, +0.0000026807,0.0000026816,0.0000026831,0.0000026834,0.0000026809, +0.0000026762,0.0000026716,0.0000026675,0.0000026650,0.0000026628, +0.0000026587,0.0000026506,0.0000026429,0.0000026407,0.0000026418, +0.0000026455,0.0000026483,0.0000026502,0.0000026510,0.0000026508, +0.0000026513,0.0000026565,0.0000026697,0.0000026884,0.0000027062, +0.0000027176,0.0000027224,0.0000027265,0.0000027289,0.0000027300, +0.0000027302,0.0000027297,0.0000027303,0.0000027315,0.0000027321, +0.0000027317,0.0000027295,0.0000027264,0.0000027244,0.0000027206, +0.0000027178,0.0000027158,0.0000027145,0.0000027136,0.0000027085, +0.0000027089,0.0000027086,0.0000027072,0.0000027053,0.0000027047, +0.0000027077,0.0000027152,0.0000027236,0.0000027288,0.0000027308, +0.0000027317,0.0000027288,0.0000027262,0.0000027309,0.0000027464, +0.0000027605,0.0000027613,0.0000027536,0.0000027546,0.0000027664, +0.0000027661,0.0000027495,0.0000027393,0.0000027394,0.0000027448, +0.0000027526,0.0000027645,0.0000027830,0.0000027956,0.0000027908, +0.0000027685,0.0000027446,0.0000027376,0.0000027255,0.0000026943, +0.0000026947,0.0000027250,0.0000027477,0.0000027778,0.0000027978, +0.0000027972,0.0000027724,0.0000027410,0.0000027360,0.0000027414, +0.0000027560,0.0000027784,0.0000027870,0.0000027786,0.0000027648, +0.0000027618,0.0000027593,0.0000027518,0.0000027434,0.0000027364, +0.0000027314,0.0000027272,0.0000027217,0.0000027145,0.0000027130, +0.0000027138,0.0000027091,0.0000027096,0.0000027143,0.0000027130, +0.0000027076,0.0000027086,0.0000027331,0.0000027341,0.0000027283, +0.0000027239,0.0000027070,0.0000026933,0.0000026838,0.0000026902, +0.0000027136,0.0000027346,0.0000027376,0.0000027407,0.0000027480, +0.0000027514,0.0000027506,0.0000027490,0.0000027446,0.0000027368, +0.0000027277,0.0000027177,0.0000027058,0.0000026926,0.0000026831, +0.0000026795,0.0000026813,0.0000026853,0.0000026907,0.0000026978, +0.0000027034,0.0000027076,0.0000027109,0.0000027122,0.0000027145, +0.0000027187,0.0000027240,0.0000027301,0.0000027343,0.0000027343, +0.0000027339,0.0000027363,0.0000027392,0.0000027406,0.0000027400, +0.0000027397,0.0000027423,0.0000027425,0.0000027376,0.0000027346, +0.0000027363,0.0000027406,0.0000027396,0.0000027281,0.0000027145, +0.0000027073,0.0000027058,0.0000027046,0.0000027026,0.0000027029, +0.0000027119,0.0000027289,0.0000027437,0.0000027482,0.0000027458, +0.0000027436,0.0000027474,0.0000027586,0.0000027657,0.0000027640, +0.0000027547,0.0000027416,0.0000027294,0.0000027176,0.0000027007, +0.0000026806,0.0000026683,0.0000026662,0.0000026657,0.0000026710, +0.0000026857,0.0000027013,0.0000027013,0.0000026960,0.0000026855, +0.0000026776,0.0000026798,0.0000026844,0.0000026884,0.0000026925, +0.0000026936,0.0000026929,0.0000026969,0.0000027034,0.0000027040, +0.0000026989,0.0000026902,0.0000026828,0.0000026773,0.0000026769, +0.0000026861,0.0000026982,0.0000027027,0.0000027012,0.0000026990, +0.0000026990,0.0000026925,0.0000026688,0.0000026466,0.0000026439, +0.0000026519,0.0000026606,0.0000026667,0.0000026729,0.0000026817, +0.0000026894,0.0000026946,0.0000026986,0.0000027012,0.0000027035, +0.0000027073,0.0000027131,0.0000027179,0.0000027172,0.0000027104, +0.0000027035,0.0000027024,0.0000027072,0.0000027134,0.0000027149, +0.0000027095,0.0000026991,0.0000026892,0.0000026833,0.0000026807, +0.0000026793,0.0000026789,0.0000026796,0.0000026811,0.0000026812, +0.0000026801,0.0000026792,0.0000026776,0.0000026764,0.0000026777, +0.0000026823,0.0000026879,0.0000026917,0.0000026914,0.0000026870, +0.0000026808,0.0000026767,0.0000026768,0.0000026790,0.0000026816, +0.0000026825,0.0000026816,0.0000026796,0.0000026775,0.0000026764, +0.0000026769,0.0000026800,0.0000026836,0.0000026846,0.0000026830, +0.0000026832,0.0000026886,0.0000026972,0.0000027056,0.0000027111, +0.0000027134,0.0000027139,0.0000027118,0.0000027063,0.0000026990, +0.0000026922,0.0000026875,0.0000026852,0.0000026849,0.0000026858, +0.0000026856,0.0000026832,0.0000026797,0.0000026763,0.0000026725, +0.0000026666,0.0000026595,0.0000026499,0.0000026394,0.0000026328, +0.0000026328,0.0000026366,0.0000026400,0.0000026420,0.0000026437, +0.0000026461,0.0000026487,0.0000026505,0.0000026508,0.0000026516, +0.0000026555,0.0000026660,0.0000026817,0.0000026980,0.0000027120, +0.0000027227,0.0000027295,0.0000027326,0.0000027327,0.0000027322, +0.0000027305,0.0000027280,0.0000027241,0.0000027187,0.0000027121, +0.0000027055,0.0000027008,0.0000026993,0.0000027003,0.0000027027, +0.0000027052,0.0000027072,0.0000027078,0.0000027073,0.0000027059, +0.0000027043,0.0000027031,0.0000027015,0.0000027008,0.0000027027, +0.0000027079,0.0000027139,0.0000027175,0.0000027184,0.0000027193, +0.0000027251,0.0000027378,0.0000027530,0.0000027590,0.0000027538, +0.0000027475,0.0000027546,0.0000027618,0.0000027493,0.0000027332, +0.0000027280,0.0000027315,0.0000027386,0.0000027452,0.0000027528, +0.0000027675,0.0000027910,0.0000028007,0.0000027882,0.0000027632, +0.0000027440,0.0000027392,0.0000027198,0.0000026920,0.0000027023, +0.0000027323,0.0000027573,0.0000027872,0.0000028004,0.0000027954, +0.0000027648,0.0000027386,0.0000027384,0.0000027456,0.0000027605, +0.0000027817,0.0000027859,0.0000027744,0.0000027639,0.0000027632, +0.0000027584,0.0000027496,0.0000027418,0.0000027347,0.0000027294, +0.0000027250,0.0000027196,0.0000027131,0.0000027114,0.0000027100, +0.0000027050,0.0000027083,0.0000027139,0.0000027130,0.0000027076, +0.0000027093,0.0000027340,0.0000027355,0.0000027297,0.0000027278, +0.0000027122,0.0000026965,0.0000026854,0.0000026840,0.0000027030, +0.0000027274,0.0000027358,0.0000027360,0.0000027420,0.0000027466, +0.0000027464,0.0000027449,0.0000027431,0.0000027389,0.0000027333, +0.0000027262,0.0000027164,0.0000027047,0.0000026944,0.0000026876, +0.0000026836,0.0000026836,0.0000026839,0.0000026886,0.0000026977, +0.0000027073,0.0000027143,0.0000027189,0.0000027203,0.0000027216, +0.0000027232,0.0000027263,0.0000027295,0.0000027297,0.0000027285, +0.0000027298,0.0000027324,0.0000027344,0.0000027342,0.0000027321, +0.0000027333,0.0000027390,0.0000027417,0.0000027367,0.0000027328, +0.0000027345,0.0000027376,0.0000027355,0.0000027253,0.0000027156, +0.0000027093,0.0000027055,0.0000027024,0.0000026989,0.0000026985, +0.0000027036,0.0000027160,0.0000027330,0.0000027454,0.0000027471, +0.0000027438,0.0000027449,0.0000027554,0.0000027643,0.0000027633, +0.0000027548,0.0000027427,0.0000027319,0.0000027237,0.0000027100, +0.0000026900,0.0000026748,0.0000026718,0.0000026717,0.0000026740, +0.0000026847,0.0000026993,0.0000027003,0.0000026947,0.0000026848, +0.0000026807,0.0000026853,0.0000026887,0.0000026900,0.0000026922, +0.0000026930,0.0000026922,0.0000026957,0.0000027027,0.0000027044, +0.0000027003,0.0000026920,0.0000026843,0.0000026810,0.0000026816, +0.0000026870,0.0000026955,0.0000027005,0.0000026995,0.0000026972, +0.0000026982,0.0000026966,0.0000026787,0.0000026521,0.0000026436, +0.0000026487,0.0000026570,0.0000026626,0.0000026692,0.0000026799, +0.0000026907,0.0000026975,0.0000027017,0.0000027052,0.0000027064, +0.0000027075,0.0000027113,0.0000027159,0.0000027166,0.0000027108, +0.0000027044,0.0000027035,0.0000027090,0.0000027162,0.0000027187, +0.0000027150,0.0000027039,0.0000026910,0.0000026814,0.0000026761, +0.0000026739,0.0000026728,0.0000026732,0.0000026760,0.0000026788, +0.0000026792,0.0000026786,0.0000026776,0.0000026757,0.0000026758, +0.0000026797,0.0000026855,0.0000026891,0.0000026890,0.0000026849, +0.0000026801,0.0000026785,0.0000026808,0.0000026853,0.0000026893, +0.0000026909,0.0000026901,0.0000026876,0.0000026840,0.0000026801, +0.0000026780,0.0000026781,0.0000026813,0.0000026862,0.0000026895, +0.0000026895,0.0000026888,0.0000026912,0.0000026975,0.0000027040, +0.0000027079,0.0000027084,0.0000027079,0.0000027054,0.0000027011, +0.0000026963,0.0000026920,0.0000026884,0.0000026857,0.0000026848, +0.0000026857,0.0000026865,0.0000026845,0.0000026811,0.0000026778, +0.0000026727,0.0000026635,0.0000026519,0.0000026407,0.0000026321, +0.0000026299,0.0000026338,0.0000026402,0.0000026457,0.0000026485, +0.0000026498,0.0000026508,0.0000026517,0.0000026527,0.0000026538, +0.0000026554,0.0000026568,0.0000026581,0.0000026619,0.0000026683, +0.0000026779,0.0000026888,0.0000026977,0.0000027033,0.0000027059, +0.0000027062,0.0000027043,0.0000027011,0.0000026977,0.0000026944, +0.0000026913,0.0000026884,0.0000026868,0.0000026880,0.0000026920, +0.0000026964,0.0000027008,0.0000027044,0.0000027068,0.0000027082, +0.0000027062,0.0000027036,0.0000027014,0.0000026997,0.0000026976, +0.0000026955,0.0000026954,0.0000026975,0.0000027021,0.0000027076, +0.0000027128,0.0000027196,0.0000027309,0.0000027453,0.0000027530, +0.0000027511,0.0000027434,0.0000027441,0.0000027530,0.0000027490, +0.0000027304,0.0000027213,0.0000027232,0.0000027297,0.0000027368, +0.0000027422,0.0000027473,0.0000027550,0.0000027749,0.0000028008, +0.0000028011,0.0000027824,0.0000027585,0.0000027461,0.0000027398, +0.0000027109,0.0000026881,0.0000027115,0.0000027390,0.0000027670, +0.0000027941,0.0000028029,0.0000027918,0.0000027582,0.0000027395, +0.0000027419,0.0000027493,0.0000027634,0.0000027831,0.0000027839, +0.0000027705,0.0000027640,0.0000027627,0.0000027558,0.0000027470, +0.0000027397,0.0000027324,0.0000027268,0.0000027219,0.0000027159, +0.0000027099,0.0000027082,0.0000027057,0.0000027027,0.0000027090, +0.0000027149,0.0000027136,0.0000027081,0.0000027108,0.0000027355, +0.0000027363,0.0000027303,0.0000027298,0.0000027178,0.0000026991, +0.0000026890,0.0000026804,0.0000026932,0.0000027168,0.0000027322, +0.0000027326,0.0000027345,0.0000027389,0.0000027400,0.0000027387, +0.0000027384,0.0000027371,0.0000027347,0.0000027313,0.0000027247, +0.0000027155,0.0000027074,0.0000027022,0.0000026976,0.0000026934, +0.0000026888,0.0000026863,0.0000026899,0.0000026977,0.0000027068, +0.0000027161,0.0000027224,0.0000027256,0.0000027251,0.0000027253, +0.0000027273,0.0000027272,0.0000027252,0.0000027247,0.0000027266, +0.0000027287,0.0000027288,0.0000027260,0.0000027244,0.0000027284, +0.0000027381,0.0000027415,0.0000027349,0.0000027299,0.0000027311, +0.0000027333,0.0000027305,0.0000027223,0.0000027160,0.0000027114, +0.0000027072,0.0000027034,0.0000027010,0.0000027006,0.0000027023, +0.0000027089,0.0000027256,0.0000027426,0.0000027472,0.0000027436, +0.0000027431,0.0000027524,0.0000027615,0.0000027605,0.0000027526, +0.0000027413,0.0000027318,0.0000027268,0.0000027176,0.0000026995, +0.0000026820,0.0000026769,0.0000026768,0.0000026765,0.0000026835, +0.0000026966,0.0000026984,0.0000026923,0.0000026848,0.0000026846, +0.0000026904,0.0000026919,0.0000026910,0.0000026914,0.0000026915, +0.0000026911,0.0000026946,0.0000027020,0.0000027056,0.0000027037, +0.0000026965,0.0000026885,0.0000026856,0.0000026858,0.0000026880, +0.0000026923,0.0000026967,0.0000026970,0.0000026948,0.0000026957, +0.0000026974,0.0000026869,0.0000026604,0.0000026427,0.0000026445, +0.0000026523,0.0000026581,0.0000026651,0.0000026770,0.0000026891, +0.0000026974,0.0000027030,0.0000027069,0.0000027087,0.0000027077, +0.0000027091,0.0000027131,0.0000027142,0.0000027098,0.0000027047, +0.0000027046,0.0000027103,0.0000027185,0.0000027231,0.0000027205, +0.0000027108,0.0000026960,0.0000026815,0.0000026719,0.0000026678, +0.0000026666,0.0000026661,0.0000026680,0.0000026730,0.0000026761, +0.0000026765,0.0000026765,0.0000026756,0.0000026746,0.0000026762, +0.0000026809,0.0000026842,0.0000026841,0.0000026826,0.0000026823, +0.0000026839,0.0000026877,0.0000026922,0.0000026954,0.0000026956, +0.0000026943,0.0000026914,0.0000026879,0.0000026839,0.0000026800, +0.0000026776,0.0000026778,0.0000026808,0.0000026862,0.0000026915, +0.0000026937,0.0000026935,0.0000026944,0.0000026983,0.0000027031, +0.0000027057,0.0000027054,0.0000027028,0.0000026986,0.0000026936, +0.0000026897,0.0000026867,0.0000026835,0.0000026801,0.0000026785, +0.0000026794,0.0000026812,0.0000026802,0.0000026768,0.0000026731, +0.0000026673,0.0000026565,0.0000026438,0.0000026340,0.0000026299, +0.0000026316,0.0000026393,0.0000026497,0.0000026580,0.0000026631, +0.0000026655,0.0000026664,0.0000026666,0.0000026659,0.0000026642, +0.0000026631,0.0000026631,0.0000026641,0.0000026656,0.0000026679, +0.0000026713,0.0000026776,0.0000026817,0.0000026841,0.0000026855, +0.0000026856,0.0000026844,0.0000026824,0.0000026810,0.0000026811, +0.0000026824,0.0000026839,0.0000026853,0.0000026873,0.0000026923, +0.0000026978,0.0000027026,0.0000027060,0.0000027078,0.0000027086, +0.0000027098,0.0000027053,0.0000027015,0.0000026985,0.0000026957, +0.0000026925,0.0000026909,0.0000026917,0.0000026953,0.0000027003, +0.0000027057,0.0000027126,0.0000027235,0.0000027360,0.0000027442, +0.0000027435,0.0000027373,0.0000027360,0.0000027443,0.0000027466, +0.0000027307,0.0000027168,0.0000027160,0.0000027218,0.0000027301, +0.0000027373,0.0000027418,0.0000027448,0.0000027477,0.0000027585, +0.0000027868,0.0000028052,0.0000027967,0.0000027755,0.0000027558, +0.0000027497,0.0000027388,0.0000027025,0.0000026919,0.0000027196, +0.0000027462,0.0000027755,0.0000027986,0.0000028028,0.0000027874, +0.0000027533,0.0000027407,0.0000027457,0.0000027522,0.0000027649, +0.0000027825,0.0000027821,0.0000027672,0.0000027636,0.0000027609, +0.0000027531,0.0000027450,0.0000027379,0.0000027306,0.0000027241, +0.0000027177,0.0000027108,0.0000027061,0.0000027046,0.0000027023, +0.0000027021,0.0000027123,0.0000027169,0.0000027146,0.0000027084, +0.0000027145,0.0000027383,0.0000027366,0.0000027301,0.0000027304, +0.0000027230,0.0000027019,0.0000026920,0.0000026794,0.0000026849, +0.0000027057,0.0000027239,0.0000027302,0.0000027295,0.0000027306, +0.0000027311,0.0000027304,0.0000027310,0.0000027313,0.0000027312, +0.0000027315,0.0000027288,0.0000027236,0.0000027175,0.0000027132, +0.0000027101,0.0000027079,0.0000027033,0.0000026986,0.0000026956, +0.0000026962,0.0000026994,0.0000027055,0.0000027138,0.0000027209, +0.0000027237,0.0000027233,0.0000027238,0.0000027233,0.0000027207, +0.0000027185,0.0000027186,0.0000027204,0.0000027218,0.0000027207, +0.0000027182,0.0000027187,0.0000027264,0.0000027389,0.0000027410, +0.0000027320,0.0000027253,0.0000027259,0.0000027269,0.0000027246, +0.0000027188,0.0000027147,0.0000027114,0.0000027079,0.0000027058, +0.0000027055,0.0000027054,0.0000027050,0.0000027103,0.0000027249, +0.0000027410,0.0000027465,0.0000027430,0.0000027421,0.0000027502, +0.0000027575,0.0000027560,0.0000027482,0.0000027384,0.0000027306, +0.0000027280,0.0000027230,0.0000027078,0.0000026892,0.0000026815, +0.0000026810,0.0000026784,0.0000026822,0.0000026935,0.0000026958, +0.0000026896,0.0000026847,0.0000026883,0.0000026939,0.0000026940, +0.0000026917,0.0000026906,0.0000026902,0.0000026906,0.0000026941, +0.0000027003,0.0000027058,0.0000027062,0.0000027015,0.0000026942, +0.0000026904,0.0000026898,0.0000026898,0.0000026905,0.0000026925, +0.0000026937,0.0000026931,0.0000026934,0.0000026963,0.0000026924, +0.0000026705,0.0000026466,0.0000026409,0.0000026471,0.0000026538, +0.0000026616,0.0000026737,0.0000026860,0.0000026946,0.0000027017, +0.0000027069,0.0000027094,0.0000027086,0.0000027079,0.0000027102, +0.0000027111,0.0000027078,0.0000027044,0.0000027051,0.0000027111, +0.0000027197,0.0000027255,0.0000027253,0.0000027177,0.0000027030, +0.0000026853,0.0000026700,0.0000026620,0.0000026604,0.0000026598, +0.0000026599,0.0000026644,0.0000026707,0.0000026732,0.0000026735, +0.0000026742,0.0000026743,0.0000026746,0.0000026775,0.0000026815, +0.0000026835,0.0000026838,0.0000026855,0.0000026896,0.0000026942, +0.0000026963,0.0000026968,0.0000026963,0.0000026941,0.0000026910, +0.0000026881,0.0000026855,0.0000026828,0.0000026798,0.0000026780, +0.0000026782,0.0000026810,0.0000026863,0.0000026926,0.0000026968, +0.0000026977,0.0000026981,0.0000027003,0.0000027035,0.0000027051, +0.0000027037,0.0000026999,0.0000026948,0.0000026897,0.0000026857, +0.0000026827,0.0000026787,0.0000026733,0.0000026695,0.0000026693, +0.0000026704,0.0000026699,0.0000026676,0.0000026650,0.0000026603, +0.0000026508,0.0000026392,0.0000026317,0.0000026303,0.0000026342, +0.0000026444,0.0000026574,0.0000026681,0.0000026750,0.0000026792, +0.0000026817,0.0000026832,0.0000026833,0.0000026816,0.0000026782, +0.0000026746,0.0000026722,0.0000026716,0.0000026732,0.0000026770, +0.0000026819,0.0000026857,0.0000026871,0.0000026869,0.0000026858, +0.0000026843,0.0000026830,0.0000026826,0.0000026845,0.0000026889, +0.0000026943,0.0000026992,0.0000027033,0.0000027077,0.0000027124, +0.0000027164,0.0000027191,0.0000027198,0.0000027179,0.0000027141, +0.0000027135,0.0000027061,0.0000027013,0.0000026978,0.0000026943, +0.0000026904,0.0000026883,0.0000026891,0.0000026930,0.0000026990, +0.0000027065,0.0000027159,0.0000027261,0.0000027334,0.0000027333, +0.0000027282,0.0000027271,0.0000027363,0.0000027425,0.0000027313, +0.0000027159,0.0000027123,0.0000027152,0.0000027220,0.0000027299, +0.0000027369,0.0000027417,0.0000027439,0.0000027439,0.0000027469, +0.0000027681,0.0000027998,0.0000028033,0.0000027890,0.0000027687, +0.0000027570,0.0000027535,0.0000027342,0.0000026958,0.0000026967, +0.0000027262,0.0000027534,0.0000027823,0.0000028010,0.0000028015, +0.0000027830,0.0000027502,0.0000027430,0.0000027488,0.0000027538, +0.0000027651,0.0000027821,0.0000027786,0.0000027647,0.0000027626, +0.0000027585,0.0000027512,0.0000027439,0.0000027369,0.0000027294, +0.0000027214,0.0000027131,0.0000027061,0.0000027030,0.0000027023, +0.0000027010,0.0000027053,0.0000027174,0.0000027191,0.0000027152, +0.0000027091,0.0000027219,0.0000027422,0.0000027367,0.0000027299, +0.0000027308,0.0000027270,0.0000027050,0.0000026931,0.0000026803, +0.0000026788,0.0000026958,0.0000027117,0.0000027247,0.0000027274, +0.0000027264,0.0000027246,0.0000027230,0.0000027237,0.0000027236, +0.0000027235,0.0000027259,0.0000027276,0.0000027259,0.0000027229, +0.0000027210,0.0000027180,0.0000027161,0.0000027129,0.0000027092, +0.0000027072,0.0000027068,0.0000027055,0.0000027052,0.0000027074, +0.0000027113,0.0000027141,0.0000027157,0.0000027160,0.0000027149, +0.0000027122,0.0000027092,0.0000027072,0.0000027072,0.0000027093, +0.0000027105,0.0000027112,0.0000027128,0.0000027166,0.0000027274, +0.0000027399,0.0000027394,0.0000027274,0.0000027194,0.0000027190, +0.0000027194,0.0000027177,0.0000027143,0.0000027122,0.0000027097, +0.0000027071,0.0000027064,0.0000027071,0.0000027079,0.0000027103, +0.0000027166,0.0000027284,0.0000027411,0.0000027454,0.0000027416, +0.0000027408,0.0000027483,0.0000027531,0.0000027503,0.0000027431, +0.0000027355,0.0000027298,0.0000027286,0.0000027264,0.0000027145, +0.0000026957,0.0000026852,0.0000026840,0.0000026797,0.0000026806, +0.0000026903,0.0000026932,0.0000026875,0.0000026847,0.0000026907, +0.0000026957,0.0000026950,0.0000026923,0.0000026905,0.0000026898, +0.0000026910,0.0000026948,0.0000026985,0.0000027028,0.0000027054, +0.0000027033,0.0000026982,0.0000026946,0.0000026937,0.0000026927, +0.0000026910,0.0000026900,0.0000026904,0.0000026918,0.0000026928, +0.0000026955,0.0000026958,0.0000026816,0.0000026549,0.0000026406, +0.0000026427,0.0000026504,0.0000026593,0.0000026714,0.0000026828, +0.0000026914,0.0000026991,0.0000027061,0.0000027094,0.0000027096, +0.0000027082,0.0000027090,0.0000027089,0.0000027058,0.0000027040, +0.0000027052,0.0000027112,0.0000027204,0.0000027275,0.0000027287, +0.0000027235,0.0000027105,0.0000026917,0.0000026722,0.0000026584, +0.0000026539,0.0000026536,0.0000026534,0.0000026553,0.0000026622, +0.0000026684,0.0000026693,0.0000026695,0.0000026713,0.0000026735, +0.0000026762,0.0000026798,0.0000026826,0.0000026846,0.0000026871, +0.0000026904,0.0000026934,0.0000026947,0.0000026943,0.0000026926, +0.0000026897,0.0000026864,0.0000026842,0.0000026837,0.0000026838, +0.0000026833,0.0000026822,0.0000026811,0.0000026814,0.0000026839, +0.0000026886,0.0000026946,0.0000026997,0.0000027018,0.0000027021, +0.0000027033,0.0000027053,0.0000027063,0.0000027046,0.0000026998, +0.0000026940,0.0000026890,0.0000026856,0.0000026824,0.0000026771, +0.0000026700,0.0000026641,0.0000026612,0.0000026606,0.0000026599, +0.0000026590,0.0000026583,0.0000026553,0.0000026475,0.0000026378, +0.0000026322,0.0000026321,0.0000026372,0.0000026479,0.0000026616, +0.0000026734,0.0000026817,0.0000026882,0.0000026933,0.0000026966, +0.0000026978,0.0000026971,0.0000026944,0.0000026903,0.0000026865, +0.0000026842,0.0000026842,0.0000026863,0.0000026899,0.0000026931, +0.0000026946,0.0000026945,0.0000026933,0.0000026917,0.0000026904, +0.0000026909,0.0000026941,0.0000027008,0.0000027084,0.0000027152, +0.0000027203,0.0000027243,0.0000027283,0.0000027319,0.0000027343, +0.0000027356,0.0000027348,0.0000027301,0.0000027223,0.0000027220, +0.0000027123,0.0000027058,0.0000027019,0.0000026987,0.0000026956, +0.0000026935,0.0000026934,0.0000026963,0.0000027032,0.0000027120, +0.0000027196,0.0000027235,0.0000027224,0.0000027192,0.0000027198, +0.0000027303,0.0000027387,0.0000027317,0.0000027166,0.0000027108, +0.0000027129,0.0000027180,0.0000027243,0.0000027303,0.0000027356, +0.0000027393,0.0000027412,0.0000027410,0.0000027418,0.0000027546, +0.0000027851,0.0000028021,0.0000027957,0.0000027798,0.0000027651, +0.0000027597,0.0000027552,0.0000027281,0.0000026929,0.0000027025, +0.0000027320,0.0000027603,0.0000027872,0.0000028009,0.0000028000, +0.0000027795,0.0000027492,0.0000027452,0.0000027503,0.0000027536, +0.0000027648,0.0000027819,0.0000027743,0.0000027622,0.0000027610, +0.0000027569,0.0000027502,0.0000027438,0.0000027370,0.0000027283, +0.0000027187,0.0000027090,0.0000027032,0.0000027018,0.0000027017, +0.0000027026,0.0000027133,0.0000027225,0.0000027210,0.0000027144, +0.0000027114,0.0000027317,0.0000027448,0.0000027363,0.0000027299, +0.0000027308,0.0000027290,0.0000027079,0.0000026930,0.0000026822, +0.0000026749,0.0000026873,0.0000027012,0.0000027142,0.0000027236, +0.0000027248,0.0000027232,0.0000027205,0.0000027200,0.0000027190, +0.0000027163,0.0000027166,0.0000027194,0.0000027211,0.0000027218, +0.0000027226,0.0000027221,0.0000027218,0.0000027188,0.0000027152, +0.0000027126,0.0000027126,0.0000027137,0.0000027139,0.0000027132, +0.0000027123,0.0000027111,0.0000027088,0.0000027090,0.0000027078, +0.0000027048,0.0000027018,0.0000026985,0.0000026958,0.0000026957, +0.0000026964,0.0000026979,0.0000027027,0.0000027102,0.0000027182, +0.0000027291,0.0000027391,0.0000027361,0.0000027220,0.0000027126, +0.0000027118,0.0000027117,0.0000027108,0.0000027100,0.0000027097, +0.0000027084,0.0000027065,0.0000027056,0.0000027060,0.0000027088, +0.0000027147,0.0000027231,0.0000027332,0.0000027424,0.0000027439, +0.0000027387,0.0000027391,0.0000027464,0.0000027489,0.0000027444, +0.0000027385,0.0000027335,0.0000027299,0.0000027292,0.0000027285, +0.0000027196,0.0000027012,0.0000026884,0.0000026866,0.0000026808, +0.0000026789,0.0000026874,0.0000026912,0.0000026865,0.0000026850, +0.0000026913,0.0000026959,0.0000026955,0.0000026932,0.0000026912, +0.0000026906,0.0000026924,0.0000026967,0.0000026987,0.0000026994, +0.0000027012,0.0000027013,0.0000026986,0.0000026968,0.0000026968, +0.0000026956,0.0000026929,0.0000026902,0.0000026890,0.0000026912, +0.0000026939,0.0000026970,0.0000026987,0.0000026926,0.0000026692, +0.0000026462,0.0000026413,0.0000026476,0.0000026580,0.0000026708, +0.0000026809,0.0000026884,0.0000026968,0.0000027044,0.0000027094, +0.0000027104,0.0000027094,0.0000027092,0.0000027080,0.0000027047, +0.0000027033,0.0000027048,0.0000027105,0.0000027200,0.0000027288, +0.0000027317,0.0000027279,0.0000027168,0.0000026994,0.0000026783, +0.0000026593,0.0000026488,0.0000026467,0.0000026468,0.0000026474, +0.0000026518,0.0000026601,0.0000026652,0.0000026651,0.0000026647, +0.0000026669,0.0000026712,0.0000026759,0.0000026793,0.0000026806, +0.0000026820,0.0000026847,0.0000026873,0.0000026885,0.0000026882, +0.0000026871,0.0000026852,0.0000026825,0.0000026797,0.0000026791, +0.0000026806,0.0000026829,0.0000026849,0.0000026861,0.0000026863, +0.0000026866,0.0000026887,0.0000026929,0.0000026982,0.0000027034, +0.0000027063,0.0000027067,0.0000027073,0.0000027086,0.0000027094, +0.0000027076,0.0000027023,0.0000026952,0.0000026889,0.0000026849, +0.0000026813,0.0000026756,0.0000026685,0.0000026625,0.0000026586, +0.0000026559,0.0000026543,0.0000026542,0.0000026550,0.0000026535, +0.0000026470,0.0000026383,0.0000026336,0.0000026339,0.0000026391, +0.0000026493,0.0000026623,0.0000026738,0.0000026823,0.0000026900, +0.0000026979,0.0000027043,0.0000027083,0.0000027097,0.0000027084, +0.0000027056,0.0000027017,0.0000026981,0.0000026965,0.0000026973, +0.0000026996,0.0000027019,0.0000027030,0.0000027026,0.0000027010, +0.0000026991,0.0000026975,0.0000026972,0.0000026994,0.0000027047, +0.0000027114,0.0000027173,0.0000027221,0.0000027272,0.0000027328, +0.0000027381,0.0000027422,0.0000027444,0.0000027449,0.0000027439, +0.0000027397,0.0000027320,0.0000027352,0.0000027276,0.0000027213, +0.0000027168,0.0000027138,0.0000027121,0.0000027118,0.0000027127, +0.0000027144,0.0000027166,0.0000027185,0.0000027190,0.0000027170, +0.0000027146,0.0000027184,0.0000027317,0.0000027400,0.0000027333, +0.0000027192,0.0000027127,0.0000027134,0.0000027179,0.0000027240, +0.0000027290,0.0000027321,0.0000027344,0.0000027357,0.0000027368, +0.0000027386,0.0000027414,0.0000027518,0.0000027735,0.0000027952, +0.0000027961,0.0000027862,0.0000027709,0.0000027652,0.0000027626, +0.0000027557,0.0000027191,0.0000026883,0.0000027088,0.0000027379, +0.0000027663,0.0000027897,0.0000027996,0.0000027983,0.0000027770, +0.0000027498,0.0000027463,0.0000027496,0.0000027519,0.0000027643, +0.0000027798,0.0000027685,0.0000027597,0.0000027595,0.0000027563, +0.0000027502,0.0000027453,0.0000027383,0.0000027275,0.0000027165, +0.0000027065,0.0000027021,0.0000027026,0.0000027036,0.0000027100, +0.0000027229,0.0000027260,0.0000027219,0.0000027129,0.0000027172, +0.0000027413,0.0000027450,0.0000027346,0.0000027298,0.0000027306, +0.0000027293,0.0000027086,0.0000026914,0.0000026831,0.0000026730, +0.0000026804,0.0000026947,0.0000027037,0.0000027151,0.0000027209, +0.0000027219,0.0000027199,0.0000027191,0.0000027181,0.0000027134, +0.0000027098,0.0000027101,0.0000027120,0.0000027140,0.0000027163, +0.0000027181,0.0000027203,0.0000027200,0.0000027190,0.0000027168, +0.0000027149,0.0000027152,0.0000027169,0.0000027186,0.0000027194, +0.0000027176,0.0000027131,0.0000027090,0.0000027066,0.0000027027, +0.0000026990,0.0000026954,0.0000026912,0.0000026887,0.0000026875, +0.0000026864,0.0000026884,0.0000026971,0.0000027107,0.0000027208, +0.0000027294,0.0000027362,0.0000027315,0.0000027162,0.0000027060, +0.0000027052,0.0000027051,0.0000027056,0.0000027072,0.0000027085, +0.0000027081,0.0000027062,0.0000027042,0.0000027044,0.0000027090, +0.0000027178,0.0000027283,0.0000027378,0.0000027434,0.0000027408, +0.0000027355,0.0000027375,0.0000027443,0.0000027445,0.0000027391, +0.0000027348,0.0000027322,0.0000027305,0.0000027297,0.0000027292, +0.0000027227,0.0000027061,0.0000026922,0.0000026889,0.0000026829, +0.0000026780,0.0000026847,0.0000026900,0.0000026865,0.0000026849, +0.0000026902,0.0000026953,0.0000026956,0.0000026946,0.0000026934, +0.0000026930,0.0000026949,0.0000026993,0.0000027013,0.0000026994, +0.0000026977,0.0000026973,0.0000026965,0.0000026968,0.0000026980, +0.0000026973,0.0000026947,0.0000026925,0.0000026909,0.0000026921, +0.0000026961,0.0000027000,0.0000027030,0.0000027017,0.0000026868, +0.0000026612,0.0000026465,0.0000026478,0.0000026578,0.0000026714, +0.0000026809,0.0000026865,0.0000026944,0.0000027020,0.0000027074, +0.0000027105,0.0000027108,0.0000027106,0.0000027088,0.0000027050, +0.0000027032,0.0000027043,0.0000027089,0.0000027183,0.0000027285, +0.0000027339,0.0000027316,0.0000027219,0.0000027060,0.0000026861, +0.0000026652,0.0000026488,0.0000026410,0.0000026397,0.0000026408, +0.0000026431,0.0000026490,0.0000026567,0.0000026610,0.0000026612, +0.0000026607,0.0000026627,0.0000026669,0.0000026706,0.0000026719, +0.0000026725,0.0000026746,0.0000026778,0.0000026807,0.0000026828, +0.0000026836,0.0000026830,0.0000026811,0.0000026781,0.0000026749, +0.0000026740,0.0000026756,0.0000026791,0.0000026834,0.0000026876, +0.0000026904,0.0000026918,0.0000026935,0.0000026972,0.0000027024, +0.0000027073,0.0000027103,0.0000027114,0.0000027120,0.0000027129, +0.0000027129,0.0000027110,0.0000027052,0.0000026971,0.0000026894, +0.0000026832,0.0000026788,0.0000026741,0.0000026686,0.0000026637, +0.0000026599,0.0000026565,0.0000026535,0.0000026525,0.0000026534, +0.0000026530,0.0000026481,0.0000026407,0.0000026361,0.0000026362, +0.0000026408,0.0000026494,0.0000026606,0.0000026711,0.0000026799, +0.0000026880,0.0000026958,0.0000027028,0.0000027090,0.0000027145, +0.0000027177,0.0000027171,0.0000027144,0.0000027104,0.0000027068, +0.0000027055,0.0000027062,0.0000027076,0.0000027081,0.0000027071, +0.0000027055,0.0000027037,0.0000027020,0.0000027014,0.0000027022, +0.0000027053,0.0000027095,0.0000027134,0.0000027173,0.0000027212, +0.0000027268,0.0000027339,0.0000027414,0.0000027468,0.0000027491, +0.0000027491,0.0000027478,0.0000027456,0.0000027417,0.0000027454, +0.0000027434,0.0000027409,0.0000027385,0.0000027369,0.0000027363, +0.0000027364,0.0000027363,0.0000027354,0.0000027336,0.0000027301, +0.0000027251,0.0000027240,0.0000027322,0.0000027442,0.0000027456, +0.0000027345,0.0000027207,0.0000027139,0.0000027144,0.0000027186, +0.0000027248,0.0000027302,0.0000027331,0.0000027342,0.0000027350, +0.0000027364,0.0000027389,0.0000027432,0.0000027491,0.0000027586, +0.0000027723,0.0000027847,0.0000027911,0.0000027863,0.0000027745, +0.0000027675,0.0000027673,0.0000027654,0.0000027530,0.0000027083, +0.0000026893,0.0000027143,0.0000027436,0.0000027708,0.0000027900, +0.0000027977,0.0000027957,0.0000027758,0.0000027515,0.0000027465, +0.0000027475,0.0000027494,0.0000027639,0.0000027761,0.0000027628, +0.0000027577,0.0000027588,0.0000027558,0.0000027508,0.0000027481, +0.0000027405,0.0000027279,0.0000027160,0.0000027068,0.0000027042, +0.0000027062,0.0000027098,0.0000027212,0.0000027297,0.0000027282, +0.0000027203,0.0000027128,0.0000027280,0.0000027471,0.0000027437, +0.0000027324,0.0000027290,0.0000027300,0.0000027287,0.0000027059, +0.0000026884,0.0000026826,0.0000026717,0.0000026750,0.0000026901, +0.0000026974,0.0000027052,0.0000027135,0.0000027177,0.0000027173, +0.0000027178,0.0000027173,0.0000027122,0.0000027072,0.0000027056, +0.0000027059,0.0000027067,0.0000027071,0.0000027074,0.0000027101, +0.0000027127,0.0000027158,0.0000027174,0.0000027162,0.0000027155, +0.0000027164,0.0000027181,0.0000027199,0.0000027214,0.0000027209, +0.0000027173,0.0000027124,0.0000027066,0.0000027001,0.0000026941, +0.0000026893,0.0000026861,0.0000026843,0.0000026826,0.0000026814, +0.0000026836,0.0000026948,0.0000027113,0.0000027214,0.0000027269, +0.0000027316,0.0000027266,0.0000027108,0.0000027003,0.0000026998, +0.0000027005,0.0000027028,0.0000027059,0.0000027074,0.0000027073, +0.0000027053,0.0000027034,0.0000027043,0.0000027098,0.0000027202, +0.0000027324,0.0000027413,0.0000027423,0.0000027363,0.0000027320, +0.0000027359,0.0000027415,0.0000027401,0.0000027349,0.0000027320, +0.0000027318,0.0000027315,0.0000027299,0.0000027292,0.0000027248, +0.0000027106,0.0000026964,0.0000026918,0.0000026861,0.0000026785, +0.0000026822,0.0000026888,0.0000026865,0.0000026836,0.0000026868, +0.0000026928,0.0000026956,0.0000026968,0.0000026971,0.0000026969, +0.0000026982,0.0000027019,0.0000027047,0.0000027029,0.0000026981, +0.0000026948,0.0000026937,0.0000026953,0.0000026980,0.0000026979, +0.0000026960,0.0000026952,0.0000026946,0.0000026950,0.0000026982, +0.0000027025,0.0000027059,0.0000027069,0.0000027019,0.0000026825, +0.0000026612,0.0000026549,0.0000026602,0.0000026729,0.0000026821, +0.0000026862,0.0000026925,0.0000026996,0.0000027043,0.0000027084, +0.0000027115,0.0000027128,0.0000027115,0.0000027073,0.0000027046, +0.0000027046,0.0000027069,0.0000027150,0.0000027264,0.0000027338, +0.0000027338,0.0000027261,0.0000027115,0.0000026935,0.0000026733, +0.0000026543,0.0000026408,0.0000026351,0.0000026348,0.0000026376, +0.0000026416,0.0000026470,0.0000026527,0.0000026566,0.0000026578, +0.0000026581,0.0000026595,0.0000026620,0.0000026636,0.0000026641, +0.0000026659,0.0000026691,0.0000026731,0.0000026771,0.0000026803, +0.0000026820,0.0000026823,0.0000026804,0.0000026760,0.0000026707, +0.0000026674,0.0000026680,0.0000026717,0.0000026776,0.0000026848, +0.0000026912,0.0000026954,0.0000026977,0.0000027006,0.0000027056, +0.0000027108,0.0000027142,0.0000027157,0.0000027165,0.0000027172, +0.0000027169,0.0000027145,0.0000027083,0.0000026993,0.0000026906, +0.0000026837,0.0000026785,0.0000026748,0.0000026716,0.0000026674, +0.0000026630,0.0000026588,0.0000026556,0.0000026541,0.0000026538, +0.0000026530,0.0000026496,0.0000026439,0.0000026396,0.0000026393, +0.0000026424,0.0000026483,0.0000026570,0.0000026675,0.0000026785, +0.0000026893,0.0000026979,0.0000027029,0.0000027062,0.0000027108, +0.0000027170,0.0000027221,0.0000027225,0.0000027207,0.0000027164, +0.0000027126,0.0000027110,0.0000027105,0.0000027098,0.0000027085, +0.0000027076,0.0000027069,0.0000027055,0.0000027039,0.0000027035, +0.0000027048,0.0000027072,0.0000027099,0.0000027124,0.0000027150, +0.0000027189,0.0000027253,0.0000027336,0.0000027420,0.0000027487, +0.0000027524,0.0000027529,0.0000027514,0.0000027489,0.0000027469, +0.0000027534,0.0000027533,0.0000027536,0.0000027541,0.0000027551, +0.0000027566,0.0000027580,0.0000027579,0.0000027534,0.0000027460, +0.0000027420,0.0000027447,0.0000027534,0.0000027565,0.0000027481, +0.0000027331,0.0000027212,0.0000027161,0.0000027163,0.0000027204, +0.0000027270,0.0000027329,0.0000027360,0.0000027376,0.0000027395, +0.0000027430,0.0000027478,0.0000027523,0.0000027567,0.0000027609, +0.0000027663,0.0000027728,0.0000027792,0.0000027829,0.0000027821, +0.0000027738,0.0000027663,0.0000027680,0.0000027690,0.0000027676, +0.0000027462,0.0000026981,0.0000026934,0.0000027194,0.0000027492, +0.0000027738,0.0000027884,0.0000027948,0.0000027932,0.0000027755, +0.0000027538,0.0000027464,0.0000027447,0.0000027469,0.0000027638, +0.0000027712,0.0000027581,0.0000027561,0.0000027583,0.0000027545, +0.0000027519,0.0000027517,0.0000027435,0.0000027300,0.0000027178, +0.0000027094,0.0000027088,0.0000027130,0.0000027203,0.0000027306, +0.0000027327,0.0000027274,0.0000027163,0.0000027170,0.0000027399, +0.0000027474,0.0000027391,0.0000027302,0.0000027278,0.0000027301, +0.0000027251,0.0000026992,0.0000026841,0.0000026808,0.0000026702, +0.0000026707,0.0000026861,0.0000026948,0.0000026985,0.0000027059, +0.0000027118,0.0000027134,0.0000027154,0.0000027154,0.0000027097, +0.0000027046,0.0000027030,0.0000027027,0.0000027023,0.0000027009, +0.0000026985,0.0000026983,0.0000027005,0.0000027050,0.0000027102, +0.0000027122,0.0000027133,0.0000027152,0.0000027169,0.0000027176, +0.0000027190,0.0000027210,0.0000027214,0.0000027196,0.0000027154, +0.0000027073,0.0000026968,0.0000026877,0.0000026833,0.0000026810, +0.0000026801,0.0000026803,0.0000026801,0.0000026826,0.0000026933, +0.0000027095,0.0000027193,0.0000027222,0.0000027257,0.0000027216, +0.0000027067,0.0000026959,0.0000026953,0.0000026978,0.0000027017, +0.0000027046,0.0000027055,0.0000027052,0.0000027036,0.0000027032, +0.0000027051,0.0000027113,0.0000027232,0.0000027359,0.0000027418, +0.0000027388,0.0000027309,0.0000027287,0.0000027346,0.0000027388, +0.0000027365,0.0000027314,0.0000027295,0.0000027318,0.0000027331, +0.0000027303,0.0000027288,0.0000027262,0.0000027149,0.0000027011, +0.0000026955,0.0000026903,0.0000026797,0.0000026801,0.0000026875, +0.0000026858,0.0000026809,0.0000026818,0.0000026886,0.0000026953, +0.0000026997,0.0000027017,0.0000027023,0.0000027029,0.0000027045, +0.0000027070,0.0000027070,0.0000027021,0.0000026959,0.0000026929, +0.0000026939,0.0000026974,0.0000026984,0.0000026973,0.0000026970, +0.0000026974,0.0000026977,0.0000026997,0.0000027028,0.0000027057, +0.0000027081,0.0000027091,0.0000027008,0.0000026825,0.0000026678, +0.0000026667,0.0000026752,0.0000026834,0.0000026870,0.0000026919, +0.0000026980,0.0000027012,0.0000027044,0.0000027096,0.0000027144, +0.0000027159,0.0000027123,0.0000027081,0.0000027053,0.0000027053, +0.0000027106,0.0000027220,0.0000027318,0.0000027340,0.0000027281, +0.0000027152,0.0000026992,0.0000026816,0.0000026633,0.0000026468, +0.0000026355,0.0000026319,0.0000026336,0.0000026379,0.0000026424, +0.0000026466,0.0000026502,0.0000026526,0.0000026533,0.0000026534, +0.0000026540,0.0000026549,0.0000026557,0.0000026574,0.0000026605, +0.0000026652,0.0000026710,0.0000026769,0.0000026824,0.0000026863, +0.0000026874,0.0000026848,0.0000026781,0.0000026700,0.0000026638, +0.0000026630,0.0000026656,0.0000026714,0.0000026793,0.0000026887, +0.0000026967,0.0000027013,0.0000027040,0.0000027081,0.0000027137, +0.0000027180,0.0000027194,0.0000027198,0.0000027201,0.0000027198, +0.0000027176,0.0000027121,0.0000027035,0.0000026943,0.0000026872, +0.0000026827,0.0000026795,0.0000026764,0.0000026723,0.0000026665, +0.0000026608,0.0000026572,0.0000026560,0.0000026555,0.0000026538, +0.0000026506,0.0000026467,0.0000026433,0.0000026430,0.0000026444, +0.0000026475,0.0000026530,0.0000026638,0.0000026799,0.0000026966, +0.0000027086,0.0000027141,0.0000027144,0.0000027130,0.0000027135, +0.0000027176,0.0000027228,0.0000027251,0.0000027244,0.0000027207, +0.0000027164,0.0000027130,0.0000027105,0.0000027092,0.0000027092, +0.0000027100,0.0000027102,0.0000027090,0.0000027075,0.0000027065, +0.0000027066,0.0000027074,0.0000027086,0.0000027102,0.0000027125, +0.0000027167,0.0000027231,0.0000027309,0.0000027393,0.0000027473, +0.0000027530,0.0000027566,0.0000027570,0.0000027557,0.0000027541, +0.0000027635,0.0000027656,0.0000027674,0.0000027688,0.0000027693, +0.0000027682,0.0000027650,0.0000027613,0.0000027606,0.0000027646, +0.0000027701,0.0000027683,0.0000027571,0.0000027418,0.0000027290, +0.0000027222,0.0000027200,0.0000027223,0.0000027271,0.0000027323, +0.0000027370,0.0000027407,0.0000027439,0.0000027471,0.0000027512, +0.0000027559,0.0000027599,0.0000027625,0.0000027634,0.0000027637, +0.0000027659,0.0000027700,0.0000027743,0.0000027757,0.0000027748, +0.0000027701,0.0000027645,0.0000027658,0.0000027692,0.0000027703, +0.0000027680,0.0000027359,0.0000026937,0.0000026983,0.0000027240, +0.0000027540,0.0000027753,0.0000027856,0.0000027909,0.0000027904, +0.0000027748,0.0000027567,0.0000027475,0.0000027431,0.0000027450, +0.0000027636,0.0000027661,0.0000027540,0.0000027552,0.0000027573, +0.0000027527,0.0000027535,0.0000027556,0.0000027473,0.0000027337, +0.0000027209,0.0000027145,0.0000027160,0.0000027223,0.0000027300, +0.0000027347,0.0000027330,0.0000027225,0.0000027147,0.0000027277, +0.0000027456,0.0000027436,0.0000027338,0.0000027287,0.0000027275, +0.0000027300,0.0000027171,0.0000026901,0.0000026805,0.0000026783, +0.0000026676,0.0000026682,0.0000026838,0.0000026939,0.0000026952, +0.0000027004,0.0000027064,0.0000027094,0.0000027121,0.0000027119, +0.0000027051,0.0000026997,0.0000026993,0.0000027001,0.0000027001, +0.0000026981,0.0000026939,0.0000026902,0.0000026906,0.0000026940, +0.0000027004,0.0000027053,0.0000027080,0.0000027114,0.0000027145, +0.0000027158,0.0000027165,0.0000027175,0.0000027189,0.0000027200, +0.0000027191,0.0000027154,0.0000027058,0.0000026921,0.0000026824, +0.0000026776,0.0000026758,0.0000026767,0.0000026791,0.0000026807, +0.0000026829,0.0000026910,0.0000027060,0.0000027154,0.0000027165, +0.0000027191,0.0000027168,0.0000027041,0.0000026927,0.0000026922, +0.0000026963,0.0000027003,0.0000027024,0.0000027029,0.0000027021, +0.0000027014,0.0000027030,0.0000027068,0.0000027141,0.0000027263, +0.0000027377,0.0000027401,0.0000027335,0.0000027257,0.0000027264, +0.0000027331,0.0000027364,0.0000027336,0.0000027283,0.0000027274, +0.0000027324,0.0000027348,0.0000027311,0.0000027286,0.0000027273, +0.0000027191,0.0000027067,0.0000027001,0.0000026952,0.0000026835, +0.0000026786,0.0000026849,0.0000026845,0.0000026773,0.0000026759, +0.0000026832,0.0000026943,0.0000027028,0.0000027067,0.0000027084, +0.0000027089,0.0000027084,0.0000027088,0.0000027090,0.0000027063, +0.0000027005,0.0000026954,0.0000026947,0.0000026978,0.0000026998, +0.0000026991,0.0000026985,0.0000026989,0.0000026995,0.0000027008, +0.0000027024,0.0000027035,0.0000027055,0.0000027089,0.0000027089, +0.0000026998,0.0000026852,0.0000026770,0.0000026788,0.0000026837, +0.0000026869,0.0000026915,0.0000026973,0.0000026993,0.0000027001, +0.0000027051,0.0000027130,0.0000027186,0.0000027185,0.0000027145, +0.0000027084,0.0000027042,0.0000027067,0.0000027161,0.0000027272, +0.0000027314,0.0000027281,0.0000027173,0.0000027032,0.0000026880, +0.0000026721,0.0000026564,0.0000026422,0.0000026330,0.0000026316, +0.0000026357,0.0000026409,0.0000026452,0.0000026482,0.0000026503, +0.0000026505,0.0000026498,0.0000026489,0.0000026489,0.0000026494, +0.0000026509,0.0000026544,0.0000026602,0.0000026677,0.0000026768, +0.0000026860,0.0000026933,0.0000026971,0.0000026970,0.0000026921, +0.0000026825,0.0000026718,0.0000026642,0.0000026623,0.0000026646, +0.0000026690,0.0000026754,0.0000026848,0.0000026958,0.0000027037, +0.0000027076,0.0000027108,0.0000027159,0.0000027209,0.0000027219, +0.0000027213,0.0000027213,0.0000027214,0.0000027199,0.0000027153, +0.0000027076,0.0000026992,0.0000026921,0.0000026879,0.0000026855, +0.0000026825,0.0000026777,0.0000026712,0.0000026640,0.0000026589, +0.0000026572,0.0000026571,0.0000026558,0.0000026528,0.0000026494, +0.0000026475,0.0000026471,0.0000026472,0.0000026475,0.0000026505, +0.0000026620,0.0000026824,0.0000027033,0.0000027175,0.0000027250, +0.0000027272,0.0000027255,0.0000027208,0.0000027173,0.0000027174, +0.0000027203,0.0000027238,0.0000027239,0.0000027208,0.0000027172, +0.0000027139,0.0000027122,0.0000027122,0.0000027129,0.0000027136, +0.0000027137,0.0000027130,0.0000027113,0.0000027101,0.0000027097, +0.0000027094,0.0000027088,0.0000027083,0.0000027093,0.0000027130, +0.0000027188,0.0000027249,0.0000027313,0.0000027383,0.0000027456, +0.0000027524,0.0000027567,0.0000027588,0.0000027613,0.0000027550, +0.0000027586,0.0000027618,0.0000027650,0.0000027688,0.0000027732, +0.0000027777,0.0000027813,0.0000027819,0.0000027766,0.0000027637, +0.0000027469,0.0000027326,0.0000027252,0.0000027237,0.0000027264, +0.0000027315,0.0000027368,0.0000027409,0.0000027439,0.0000027474, +0.0000027520,0.0000027571,0.0000027610,0.0000027628,0.0000027635, +0.0000027643,0.0000027663,0.0000027680,0.0000027673,0.0000027664, +0.0000027677,0.0000027699,0.0000027700,0.0000027673,0.0000027639, +0.0000027613,0.0000027635,0.0000027676,0.0000027700,0.0000027723, +0.0000027646,0.0000027221,0.0000026889,0.0000027045,0.0000027292, +0.0000027580,0.0000027750,0.0000027818,0.0000027866,0.0000027856, +0.0000027731,0.0000027590,0.0000027489,0.0000027418,0.0000027439, +0.0000027631,0.0000027598,0.0000027507,0.0000027553,0.0000027555, +0.0000027515,0.0000027567,0.0000027598,0.0000027516,0.0000027376, +0.0000027254,0.0000027215,0.0000027247,0.0000027304,0.0000027353, +0.0000027357,0.0000027285,0.0000027162,0.0000027193,0.0000027388, +0.0000027446,0.0000027374,0.0000027302,0.0000027285,0.0000027287, +0.0000027271,0.0000027046,0.0000026821,0.0000026784,0.0000026744, +0.0000026647,0.0000026677,0.0000026842,0.0000026932,0.0000026932, +0.0000026966,0.0000027022,0.0000027056,0.0000027086,0.0000027071, +0.0000026991,0.0000026945,0.0000026955,0.0000026986,0.0000026999, +0.0000026991,0.0000026952,0.0000026903,0.0000026891,0.0000026915, +0.0000026975,0.0000027038,0.0000027065,0.0000027088,0.0000027118, +0.0000027136,0.0000027147,0.0000027150,0.0000027160,0.0000027166, +0.0000027166,0.0000027162,0.0000027124,0.0000027012,0.0000026872, +0.0000026774,0.0000026723,0.0000026715,0.0000026742,0.0000026789, +0.0000026820,0.0000026828,0.0000026893,0.0000027030,0.0000027112, +0.0000027113,0.0000027131,0.0000027131,0.0000027025,0.0000026909, +0.0000026903,0.0000026950,0.0000026981,0.0000026998,0.0000026996, +0.0000026983,0.0000026995,0.0000027042,0.0000027095,0.0000027166, +0.0000027283,0.0000027371,0.0000027361,0.0000027273,0.0000027219, +0.0000027242,0.0000027310,0.0000027339,0.0000027309,0.0000027257, +0.0000027265,0.0000027339,0.0000027369,0.0000027322,0.0000027286, +0.0000027283,0.0000027233,0.0000027128,0.0000027049,0.0000027003, +0.0000026895,0.0000026788,0.0000026810,0.0000026824,0.0000026744, +0.0000026702,0.0000026775,0.0000026924,0.0000027054,0.0000027117, +0.0000027142,0.0000027152,0.0000027141,0.0000027120,0.0000027104, +0.0000027088,0.0000027055,0.0000027012,0.0000026994,0.0000027013, +0.0000027036,0.0000027031,0.0000027015,0.0000027015,0.0000027025, +0.0000027035,0.0000027041,0.0000027031,0.0000027022,0.0000027044, +0.0000027077,0.0000027061,0.0000026975,0.0000026870,0.0000026829, +0.0000026839,0.0000026857,0.0000026899,0.0000026963,0.0000026987, +0.0000026975,0.0000026998,0.0000027083,0.0000027186,0.0000027223, +0.0000027213,0.0000027146,0.0000027062,0.0000027047,0.0000027110, +0.0000027211,0.0000027274,0.0000027253,0.0000027170,0.0000027060, +0.0000026932,0.0000026786,0.0000026643,0.0000026510,0.0000026391, +0.0000026326,0.0000026342,0.0000026401,0.0000026457,0.0000026498, +0.0000026521,0.0000026531,0.0000026528,0.0000026514,0.0000026503, +0.0000026500,0.0000026512,0.0000026547,0.0000026613,0.0000026708, +0.0000026819,0.0000026927,0.0000027008,0.0000027051,0.0000027057, +0.0000027032,0.0000026964,0.0000026852,0.0000026731,0.0000026657, +0.0000026647,0.0000026670,0.0000026706,0.0000026748,0.0000026829, +0.0000026942,0.0000027041,0.0000027098,0.0000027131,0.0000027174, +0.0000027220,0.0000027230,0.0000027214,0.0000027204,0.0000027206, +0.0000027203,0.0000027168,0.0000027097,0.0000027018,0.0000026959, +0.0000026920,0.0000026900,0.0000026883,0.0000026849,0.0000026793, +0.0000026719,0.0000026651,0.0000026612,0.0000026596,0.0000026580, +0.0000026551,0.0000026524,0.0000026511,0.0000026513,0.0000026516, +0.0000026510,0.0000026519,0.0000026629,0.0000026847,0.0000027063, +0.0000027199,0.0000027269,0.0000027311,0.0000027328,0.0000027312, +0.0000027264,0.0000027209,0.0000027167,0.0000027155,0.0000027172, +0.0000027180,0.0000027177,0.0000027167,0.0000027170,0.0000027186, +0.0000027198,0.0000027196,0.0000027187,0.0000027175,0.0000027149, +0.0000027121,0.0000027114,0.0000027124,0.0000027129,0.0000027118, +0.0000027098,0.0000027094,0.0000027111,0.0000027142,0.0000027180, +0.0000027225,0.0000027281,0.0000027342,0.0000027401,0.0000027444, +0.0000027477,0.0000027512,0.0000027576,0.0000027636,0.0000027693, +0.0000027746,0.0000027786,0.0000027794,0.0000027769,0.0000027691, +0.0000027562,0.0000027428,0.0000027338,0.0000027297,0.0000027298, +0.0000027324,0.0000027362,0.0000027405,0.0000027447,0.0000027482, +0.0000027519,0.0000027562,0.0000027610,0.0000027657,0.0000027690, +0.0000027709,0.0000027727,0.0000027754,0.0000027782,0.0000027814, +0.0000027842,0.0000027842,0.0000027813,0.0000027776,0.0000027748, +0.0000027712,0.0000027657,0.0000027609,0.0000027591,0.0000027613, +0.0000027664,0.0000027678,0.0000027713,0.0000027745,0.0000027550, +0.0000027067,0.0000026898,0.0000027100,0.0000027345,0.0000027609, +0.0000027731,0.0000027782,0.0000027818,0.0000027795,0.0000027695, +0.0000027591,0.0000027487,0.0000027397,0.0000027447,0.0000027628, +0.0000027539,0.0000027495,0.0000027546,0.0000027524,0.0000027525, +0.0000027623,0.0000027640,0.0000027556,0.0000027415,0.0000027308, +0.0000027285,0.0000027313,0.0000027347,0.0000027367,0.0000027331, +0.0000027201,0.0000027145,0.0000027292,0.0000027417,0.0000027390, +0.0000027318,0.0000027296,0.0000027301,0.0000027293,0.0000027180, +0.0000026906,0.0000026772,0.0000026757,0.0000026696,0.0000026629, +0.0000026702,0.0000026861,0.0000026920,0.0000026912,0.0000026944, +0.0000026990,0.0000027024,0.0000027047,0.0000027010,0.0000026933, +0.0000026914,0.0000026946,0.0000027005,0.0000027057,0.0000027064, +0.0000027049,0.0000027008,0.0000026983,0.0000026983,0.0000027014, +0.0000027059,0.0000027083,0.0000027095,0.0000027111,0.0000027121, +0.0000027131,0.0000027136,0.0000027145,0.0000027140,0.0000027122, +0.0000027115,0.0000027114,0.0000027062,0.0000026939,0.0000026807, +0.0000026723,0.0000026680,0.0000026684,0.0000026730,0.0000026795, +0.0000026828,0.0000026842,0.0000026902,0.0000027017,0.0000027074, +0.0000027060,0.0000027085,0.0000027108,0.0000027016,0.0000026894, +0.0000026886,0.0000026931,0.0000026956,0.0000026963,0.0000026952, +0.0000026947,0.0000026994,0.0000027068,0.0000027118,0.0000027181, +0.0000027288,0.0000027346,0.0000027306,0.0000027216,0.0000027186, +0.0000027218,0.0000027284,0.0000027311,0.0000027281,0.0000027241, +0.0000027272,0.0000027363,0.0000027393,0.0000027332,0.0000027285, +0.0000027290,0.0000027272,0.0000027186,0.0000027094,0.0000027050, +0.0000026966,0.0000026820,0.0000026776,0.0000026790,0.0000026728, +0.0000026664,0.0000026710,0.0000026884,0.0000027063,0.0000027160, +0.0000027196,0.0000027210,0.0000027204,0.0000027175,0.0000027138, +0.0000027113,0.0000027092,0.0000027069,0.0000027058,0.0000027070, +0.0000027090,0.0000027088,0.0000027070,0.0000027063,0.0000027072, +0.0000027083,0.0000027087,0.0000027070,0.0000027035,0.0000027021, +0.0000027033,0.0000027045,0.0000027014,0.0000026929,0.0000026855, +0.0000026834,0.0000026838,0.0000026870,0.0000026940,0.0000026989, +0.0000026976,0.0000026965,0.0000027018,0.0000027145,0.0000027240, +0.0000027254,0.0000027209,0.0000027109,0.0000027063,0.0000027090, +0.0000027164,0.0000027226,0.0000027215,0.0000027141,0.0000027062, +0.0000026977,0.0000026853,0.0000026710,0.0000026582,0.0000026465, +0.0000026377,0.0000026356,0.0000026392,0.0000026452,0.0000026505, +0.0000026549,0.0000026581,0.0000026595,0.0000026593,0.0000026586, +0.0000026589,0.0000026609,0.0000026648,0.0000026709,0.0000026798, +0.0000026903,0.0000027003,0.0000027071,0.0000027100,0.0000027102, +0.0000027085,0.0000027044,0.0000026968,0.0000026852,0.0000026728, +0.0000026661,0.0000026668,0.0000026705,0.0000026748,0.0000026783, +0.0000026842,0.0000026937,0.0000027030,0.0000027092,0.0000027130, +0.0000027168,0.0000027209,0.0000027220,0.0000027203,0.0000027180, +0.0000027180,0.0000027185,0.0000027163,0.0000027100,0.0000027027, +0.0000026982,0.0000026963,0.0000026950,0.0000026937,0.0000026922, +0.0000026884,0.0000026817,0.0000026744,0.0000026691,0.0000026665, +0.0000026640,0.0000026602,0.0000026567,0.0000026553,0.0000026556, +0.0000026561,0.0000026562,0.0000026582,0.0000026677,0.0000026854, +0.0000027035,0.0000027162,0.0000027237,0.0000027283,0.0000027317, +0.0000027333,0.0000027324,0.0000027283,0.0000027216,0.0000027143, +0.0000027101,0.0000027088,0.0000027094,0.0000027114,0.0000027146, +0.0000027186,0.0000027231,0.0000027253,0.0000027252,0.0000027235, +0.0000027197,0.0000027146,0.0000027103,0.0000027093,0.0000027114, +0.0000027131,0.0000027139,0.0000027140,0.0000027147,0.0000027163, +0.0000027185,0.0000027207,0.0000027237,0.0000027283,0.0000027337, +0.0000027389,0.0000027432,0.0000027471,0.0000027518,0.0000027451, +0.0000027478,0.0000027501,0.0000027504,0.0000027482,0.0000027434, +0.0000027372,0.0000027321,0.0000027304,0.0000027322,0.0000027364, +0.0000027401,0.0000027425,0.0000027443,0.0000027469,0.0000027513, +0.0000027568,0.0000027621,0.0000027664,0.0000027694,0.0000027715, +0.0000027741,0.0000027785,0.0000027840,0.0000027888,0.0000027911, +0.0000027918,0.0000027927,0.0000027953,0.0000027966,0.0000027962, +0.0000027946,0.0000027901,0.0000027830,0.0000027730,0.0000027638, +0.0000027603,0.0000027609,0.0000027650,0.0000027666,0.0000027684, +0.0000027746,0.0000027728,0.0000027389,0.0000026940,0.0000026941, +0.0000027145,0.0000027397,0.0000027620,0.0000027700,0.0000027748, +0.0000027759,0.0000027721,0.0000027650,0.0000027564,0.0000027470, +0.0000027379,0.0000027480,0.0000027612,0.0000027497,0.0000027487, +0.0000027524,0.0000027505,0.0000027578,0.0000027684,0.0000027680, +0.0000027590,0.0000027451,0.0000027352,0.0000027326,0.0000027336, +0.0000027357,0.0000027352,0.0000027252,0.0000027140,0.0000027205, +0.0000027370,0.0000027390,0.0000027324,0.0000027297,0.0000027316, +0.0000027317,0.0000027251,0.0000027025,0.0000026801,0.0000026754, +0.0000026730,0.0000026653,0.0000026641,0.0000026751,0.0000026875, +0.0000026896,0.0000026895,0.0000026934,0.0000026967,0.0000026993, +0.0000026992,0.0000026941,0.0000026896,0.0000026914,0.0000026986, +0.0000027093,0.0000027180,0.0000027204,0.0000027179,0.0000027119, +0.0000027063,0.0000027036,0.0000027035,0.0000027051,0.0000027078, +0.0000027084,0.0000027088,0.0000027096,0.0000027105,0.0000027104, +0.0000027105,0.0000027102,0.0000027082,0.0000027067,0.0000027063, +0.0000027037,0.0000026948,0.0000026830,0.0000026736,0.0000026677, +0.0000026652,0.0000026671,0.0000026737,0.0000026809,0.0000026848, +0.0000026869,0.0000026922,0.0000027007,0.0000027030,0.0000027010, +0.0000027055,0.0000027099,0.0000027010,0.0000026877,0.0000026865, +0.0000026909,0.0000026922,0.0000026918,0.0000026909,0.0000026932, +0.0000027015,0.0000027096,0.0000027128,0.0000027185,0.0000027281, +0.0000027312,0.0000027244,0.0000027169,0.0000027156,0.0000027192, +0.0000027255,0.0000027280,0.0000027255,0.0000027234,0.0000027292, +0.0000027394,0.0000027416,0.0000027341,0.0000027284,0.0000027294, +0.0000027298,0.0000027234,0.0000027140,0.0000027090,0.0000027036, +0.0000026888,0.0000026767,0.0000026746,0.0000026712,0.0000026635, +0.0000026641,0.0000026811,0.0000027037,0.0000027185,0.0000027245, +0.0000027265,0.0000027266,0.0000027244,0.0000027204,0.0000027165, +0.0000027135,0.0000027118,0.0000027114,0.0000027124,0.0000027140, +0.0000027145,0.0000027132,0.0000027115,0.0000027115,0.0000027123, +0.0000027129,0.0000027121,0.0000027086,0.0000027047,0.0000027025, +0.0000027019,0.0000027003,0.0000026948,0.0000026871,0.0000026819, +0.0000026813,0.0000026837,0.0000026902,0.0000026975,0.0000026993, +0.0000026966,0.0000026972,0.0000027080,0.0000027219,0.0000027284, +0.0000027262,0.0000027167,0.0000027089,0.0000027097,0.0000027145, +0.0000027186,0.0000027180,0.0000027114,0.0000027047,0.0000026999, +0.0000026915,0.0000026781,0.0000026648,0.0000026534,0.0000026441, +0.0000026398,0.0000026408,0.0000026452,0.0000026502,0.0000026554, +0.0000026603,0.0000026641,0.0000026666,0.0000026683,0.0000026704, +0.0000026740,0.0000026787,0.0000026837,0.0000026896,0.0000026973, +0.0000027055,0.0000027118,0.0000027142,0.0000027131,0.0000027107, +0.0000027084,0.0000027046,0.0000026972,0.0000026854,0.0000026726, +0.0000026657,0.0000026673,0.0000026734,0.0000026791,0.0000026837, +0.0000026881,0.0000026948,0.0000027017,0.0000027068,0.0000027101, +0.0000027129,0.0000027164,0.0000027187,0.0000027172,0.0000027138, +0.0000027131,0.0000027143,0.0000027134,0.0000027084,0.0000027021, +0.0000026988,0.0000026988,0.0000026991,0.0000026985,0.0000026973, +0.0000026950,0.0000026897,0.0000026828,0.0000026779,0.0000026760, +0.0000026742,0.0000026704,0.0000026657,0.0000026629,0.0000026626, +0.0000026633,0.0000026646,0.0000026678,0.0000026745,0.0000026852, +0.0000026971,0.0000027086,0.0000027183,0.0000027240,0.0000027266, +0.0000027291,0.0000027309,0.0000027302,0.0000027263,0.0000027189, +0.0000027106,0.0000027057,0.0000027033,0.0000027035,0.0000027057, +0.0000027103,0.0000027165,0.0000027224,0.0000027260,0.0000027272, +0.0000027258,0.0000027206,0.0000027136,0.0000027074,0.0000027048, +0.0000027057,0.0000027075,0.0000027092,0.0000027114,0.0000027142, +0.0000027171,0.0000027196,0.0000027214,0.0000027238,0.0000027266, +0.0000027299,0.0000027331,0.0000027364,0.0000027396,0.0000027423, +0.0000027126,0.0000027134,0.0000027154,0.0000027182,0.0000027213, +0.0000027245,0.0000027283,0.0000027325,0.0000027368,0.0000027401, +0.0000027430,0.0000027467,0.0000027515,0.0000027570,0.0000027621, +0.0000027664,0.0000027701,0.0000027733,0.0000027756,0.0000027773, +0.0000027789,0.0000027816,0.0000027855,0.0000027893,0.0000027906, +0.0000027903,0.0000027893,0.0000027887,0.0000027898,0.0000027922, +0.0000027945,0.0000027953,0.0000027947,0.0000027907,0.0000027824, +0.0000027726,0.0000027660,0.0000027629,0.0000027624,0.0000027652, +0.0000027661,0.0000027714,0.0000027779,0.0000027629,0.0000027186, +0.0000026877,0.0000027002,0.0000027185,0.0000027439,0.0000027607, +0.0000027672,0.0000027705,0.0000027688,0.0000027641,0.0000027585, +0.0000027526,0.0000027440,0.0000027375,0.0000027528,0.0000027581, +0.0000027474,0.0000027485,0.0000027496,0.0000027513,0.0000027658, +0.0000027733,0.0000027711,0.0000027613,0.0000027466,0.0000027360, +0.0000027328,0.0000027333,0.0000027344,0.0000027287,0.0000027157, +0.0000027150,0.0000027301,0.0000027369,0.0000027331,0.0000027278, +0.0000027306,0.0000027341,0.0000027296,0.0000027130,0.0000026874, +0.0000026764,0.0000026743,0.0000026695,0.0000026648,0.0000026691, +0.0000026810,0.0000026873,0.0000026876,0.0000026894,0.0000026930, +0.0000026949,0.0000026946,0.0000026924,0.0000026888,0.0000026891, +0.0000026964,0.0000027085,0.0000027207,0.0000027272,0.0000027266, +0.0000027216,0.0000027132,0.0000027046,0.0000026994,0.0000026970, +0.0000026973,0.0000026992,0.0000027011,0.0000027020,0.0000027027, +0.0000027041,0.0000027045,0.0000027042,0.0000027038,0.0000027028, +0.0000027017,0.0000027004,0.0000026971,0.0000026902,0.0000026813, +0.0000026734,0.0000026680,0.0000026646,0.0000026645,0.0000026692, +0.0000026770,0.0000026838,0.0000026872,0.0000026894,0.0000026944, +0.0000026992,0.0000026986,0.0000026979,0.0000027051,0.0000027096, +0.0000026990,0.0000026850,0.0000026839,0.0000026878,0.0000026879, +0.0000026872,0.0000026881,0.0000026943,0.0000027050,0.0000027109, +0.0000027123,0.0000027182,0.0000027266,0.0000027263,0.0000027180, +0.0000027120,0.0000027119,0.0000027160,0.0000027222,0.0000027252, +0.0000027240,0.0000027242,0.0000027323,0.0000027429,0.0000027440, +0.0000027352,0.0000027282,0.0000027290,0.0000027308,0.0000027274, +0.0000027190,0.0000027127,0.0000027088,0.0000026977,0.0000026798, +0.0000026709,0.0000026684,0.0000026616,0.0000026582,0.0000026708, +0.0000026964,0.0000027177,0.0000027281,0.0000027324,0.0000027332, +0.0000027320,0.0000027295,0.0000027259,0.0000027215,0.0000027182, +0.0000027169,0.0000027173,0.0000027186,0.0000027193,0.0000027183, +0.0000027154,0.0000027130,0.0000027131,0.0000027137,0.0000027137, +0.0000027114,0.0000027086,0.0000027055,0.0000027029,0.0000027001, +0.0000026948,0.0000026878,0.0000026813,0.0000026792,0.0000026805, +0.0000026860,0.0000026940,0.0000026994,0.0000026992,0.0000026964, +0.0000027023,0.0000027175,0.0000027288,0.0000027303,0.0000027226, +0.0000027136,0.0000027118,0.0000027147,0.0000027169,0.0000027149, +0.0000027092,0.0000027040,0.0000027016,0.0000026971,0.0000026856, +0.0000026714,0.0000026597,0.0000026502,0.0000026450,0.0000026453, +0.0000026484,0.0000026520,0.0000026562,0.0000026618,0.0000026677, +0.0000026730,0.0000026777,0.0000026822,0.0000026866,0.0000026907, +0.0000026939,0.0000026968,0.0000027005,0.0000027063,0.0000027125, +0.0000027163,0.0000027165,0.0000027138,0.0000027106,0.0000027083, +0.0000027056,0.0000026992,0.0000026875,0.0000026743,0.0000026671, +0.0000026691,0.0000026761,0.0000026832,0.0000026887,0.0000026931, +0.0000026974,0.0000027018,0.0000027046,0.0000027055,0.0000027061, +0.0000027080,0.0000027106,0.0000027110,0.0000027087,0.0000027071, +0.0000027077,0.0000027075,0.0000027037,0.0000026985,0.0000026964, +0.0000026977,0.0000026996,0.0000026999,0.0000026989,0.0000026969, +0.0000026932,0.0000026881,0.0000026840,0.0000026832,0.0000026839, +0.0000026826,0.0000026787,0.0000026752,0.0000026741,0.0000026747, +0.0000026760,0.0000026781,0.0000026809,0.0000026846,0.0000026905, +0.0000027000,0.0000027113,0.0000027189,0.0000027206,0.0000027216, +0.0000027246,0.0000027267,0.0000027260,0.0000027219,0.0000027146, +0.0000027084,0.0000027047,0.0000027032,0.0000027035,0.0000027059, +0.0000027098,0.0000027142,0.0000027186,0.0000027224,0.0000027247, +0.0000027244,0.0000027206,0.0000027141,0.0000027072,0.0000027029, +0.0000027013,0.0000027012,0.0000027019,0.0000027035,0.0000027059, +0.0000027085,0.0000027098,0.0000027098,0.0000027092,0.0000027090, +0.0000027092,0.0000027098,0.0000027109,0.0000027118,0.0000027123, +0.0000027167,0.0000027173,0.0000027188,0.0000027212,0.0000027242, +0.0000027272,0.0000027299,0.0000027339,0.0000027405,0.0000027487, +0.0000027563,0.0000027620,0.0000027663,0.0000027695,0.0000027722, +0.0000027746,0.0000027764,0.0000027782,0.0000027787,0.0000027775, +0.0000027758,0.0000027751,0.0000027755,0.0000027773,0.0000027793, +0.0000027798,0.0000027790,0.0000027776,0.0000027770,0.0000027782, +0.0000027818,0.0000027849,0.0000027869,0.0000027866,0.0000027825, +0.0000027757,0.0000027691,0.0000027647,0.0000027608,0.0000027610, +0.0000027637,0.0000027677,0.0000027772,0.0000027751,0.0000027446, +0.0000026989,0.0000026881,0.0000027057,0.0000027226,0.0000027462, +0.0000027589,0.0000027644,0.0000027654,0.0000027615,0.0000027561, +0.0000027512,0.0000027478,0.0000027404,0.0000027386,0.0000027564, +0.0000027543,0.0000027452,0.0000027474,0.0000027471,0.0000027563, +0.0000027735,0.0000027765,0.0000027728,0.0000027610,0.0000027441, +0.0000027333,0.0000027311,0.0000027324,0.0000027291,0.0000027184, +0.0000027131,0.0000027238,0.0000027347,0.0000027330,0.0000027273, +0.0000027270,0.0000027336,0.0000027342,0.0000027216,0.0000026972, +0.0000026798,0.0000026763,0.0000026726,0.0000026675,0.0000026682, +0.0000026767,0.0000026852,0.0000026865,0.0000026879,0.0000026911, +0.0000026925,0.0000026910,0.0000026883,0.0000026868,0.0000026871, +0.0000026920,0.0000027053,0.0000027176,0.0000027244,0.0000027271, +0.0000027258,0.0000027192,0.0000027102,0.0000027007,0.0000026934, +0.0000026896,0.0000026896,0.0000026908,0.0000026933,0.0000026943, +0.0000026943,0.0000026959,0.0000026976,0.0000026975,0.0000026962, +0.0000026951,0.0000026935,0.0000026917,0.0000026891,0.0000026843, +0.0000026780,0.0000026722,0.0000026682,0.0000026659,0.0000026651, +0.0000026682,0.0000026744,0.0000026818,0.0000026864,0.0000026887, +0.0000026919,0.0000026964,0.0000026975,0.0000026958,0.0000026973, +0.0000027063,0.0000027090,0.0000026949,0.0000026817,0.0000026821, +0.0000026845,0.0000026838,0.0000026843,0.0000026883,0.0000026982, +0.0000027087,0.0000027107,0.0000027108,0.0000027172,0.0000027228, +0.0000027193,0.0000027102,0.0000027058,0.0000027064,0.0000027117, +0.0000027188,0.0000027229,0.0000027235,0.0000027263,0.0000027359, +0.0000027460,0.0000027465,0.0000027372,0.0000027286,0.0000027283, +0.0000027310,0.0000027302,0.0000027239,0.0000027165,0.0000027121, +0.0000027053,0.0000026887,0.0000026719,0.0000026653,0.0000026604, +0.0000026551,0.0000026607,0.0000026841,0.0000027116,0.0000027289, +0.0000027373,0.0000027391,0.0000027386,0.0000027379,0.0000027366, +0.0000027326,0.0000027275,0.0000027241,0.0000027230,0.0000027233, +0.0000027230,0.0000027210,0.0000027168,0.0000027123,0.0000027099, +0.0000027096,0.0000027100,0.0000027095,0.0000027086,0.0000027075, +0.0000027057,0.0000027026,0.0000026975,0.0000026902,0.0000026831, +0.0000026787,0.0000026781,0.0000026818,0.0000026892,0.0000026973, +0.0000027009,0.0000026991,0.0000026990,0.0000027118,0.0000027270, +0.0000027319,0.0000027279,0.0000027191,0.0000027156,0.0000027161, +0.0000027172,0.0000027137,0.0000027072,0.0000027040,0.0000027035, +0.0000027027,0.0000026948,0.0000026795,0.0000026654,0.0000026556, +0.0000026492,0.0000026489,0.0000026530,0.0000026574,0.0000026611, +0.0000026658,0.0000026723,0.0000026792,0.0000026850,0.0000026899, +0.0000026940,0.0000026972,0.0000026995,0.0000027012,0.0000027033, +0.0000027066,0.0000027120,0.0000027173,0.0000027200,0.0000027191, +0.0000027155,0.0000027111,0.0000027084,0.0000027063,0.0000027008, +0.0000026897,0.0000026773,0.0000026707,0.0000026732,0.0000026804, +0.0000026872,0.0000026925,0.0000026973,0.0000027009,0.0000027032, +0.0000027041,0.0000027030,0.0000027004,0.0000026987,0.0000026992, +0.0000027003,0.0000027004,0.0000027001,0.0000027003,0.0000027004, +0.0000026984,0.0000026948,0.0000026936,0.0000026952,0.0000026975, +0.0000026982,0.0000026977,0.0000026967,0.0000026943,0.0000026904, +0.0000026869,0.0000026867,0.0000026896,0.0000026920,0.0000026911, +0.0000026887,0.0000026879,0.0000026881,0.0000026876,0.0000026861, +0.0000026845,0.0000026840,0.0000026863,0.0000026936,0.0000027054, +0.0000027139,0.0000027154,0.0000027152,0.0000027179,0.0000027221, +0.0000027238,0.0000027224,0.0000027180,0.0000027128,0.0000027097, +0.0000027080,0.0000027077,0.0000027088,0.0000027110,0.0000027131, +0.0000027153,0.0000027174,0.0000027184,0.0000027195,0.0000027197, +0.0000027182,0.0000027150,0.0000027108,0.0000027074,0.0000027061, +0.0000027061,0.0000027073,0.0000027093,0.0000027121,0.0000027149, +0.0000027161,0.0000027156,0.0000027145,0.0000027139,0.0000027143, +0.0000027151,0.0000027160,0.0000027165,0.0000027166,0.0000027310, +0.0000027301,0.0000027297,0.0000027302,0.0000027326,0.0000027379, +0.0000027456,0.0000027535,0.0000027593,0.0000027622,0.0000027642, +0.0000027671,0.0000027711,0.0000027746,0.0000027767,0.0000027761, +0.0000027733,0.0000027692,0.0000027646,0.0000027612,0.0000027598, +0.0000027606,0.0000027634,0.0000027678,0.0000027717,0.0000027734, +0.0000027721,0.0000027692,0.0000027660,0.0000027645,0.0000027660, +0.0000027692,0.0000027713,0.0000027728,0.0000027723,0.0000027696, +0.0000027657,0.0000027618,0.0000027574,0.0000027559,0.0000027591, +0.0000027645,0.0000027737,0.0000027799,0.0000027637,0.0000027226, +0.0000026898,0.0000026931,0.0000027099,0.0000027269,0.0000027474, +0.0000027570,0.0000027609,0.0000027599,0.0000027545,0.0000027481, +0.0000027444,0.0000027428,0.0000027364,0.0000027418,0.0000027589, +0.0000027495,0.0000027439,0.0000027448,0.0000027462,0.0000027639, +0.0000027789,0.0000027789,0.0000027725,0.0000027570,0.0000027384, +0.0000027287,0.0000027289,0.0000027290,0.0000027198,0.0000027121, +0.0000027189,0.0000027325,0.0000027338,0.0000027277,0.0000027242, +0.0000027297,0.0000027352,0.0000027294,0.0000027080,0.0000026860, +0.0000026789,0.0000026758,0.0000026713,0.0000026696,0.0000026754, +0.0000026836,0.0000026870,0.0000026878,0.0000026910,0.0000026925, +0.0000026899,0.0000026863,0.0000026847,0.0000026854,0.0000026897, +0.0000026994,0.0000027110,0.0000027186,0.0000027232,0.0000027242, +0.0000027223,0.0000027175,0.0000027109,0.0000027027,0.0000026948, +0.0000026901,0.0000026894,0.0000026891,0.0000026889,0.0000026884, +0.0000026866,0.0000026871,0.0000026890,0.0000026903,0.0000026904, +0.0000026893,0.0000026877,0.0000026853,0.0000026830,0.0000026801, +0.0000026764,0.0000026732,0.0000026698,0.0000026685,0.0000026689, +0.0000026721,0.0000026768,0.0000026822,0.0000026858,0.0000026874, +0.0000026899,0.0000026945,0.0000026975,0.0000026962,0.0000026950, +0.0000026993,0.0000027089,0.0000027069,0.0000026896,0.0000026802, +0.0000026816,0.0000026822,0.0000026819,0.0000026844,0.0000026913, +0.0000027034,0.0000027106,0.0000027091,0.0000027096,0.0000027154, +0.0000027171,0.0000027099,0.0000027005,0.0000026979,0.0000027005, +0.0000027075,0.0000027154,0.0000027205,0.0000027232,0.0000027288, +0.0000027392,0.0000027483,0.0000027489,0.0000027402,0.0000027304, +0.0000027279,0.0000027300,0.0000027309,0.0000027275,0.0000027206, +0.0000027147,0.0000027100,0.0000026991,0.0000026796,0.0000026652, +0.0000026593,0.0000026546,0.0000026544,0.0000026702,0.0000026992, +0.0000027253,0.0000027391,0.0000027422,0.0000027416,0.0000027410, +0.0000027421,0.0000027405,0.0000027359,0.0000027315,0.0000027288, +0.0000027272,0.0000027253,0.0000027215,0.0000027159,0.0000027095, +0.0000027050,0.0000027037,0.0000027039,0.0000027042,0.0000027047, +0.0000027058,0.0000027067,0.0000027060,0.0000027021,0.0000026952, +0.0000026872,0.0000026809,0.0000026779,0.0000026785,0.0000026839, +0.0000026925,0.0000027008,0.0000027026,0.0000026991,0.0000027056, +0.0000027226,0.0000027331,0.0000027317,0.0000027246,0.0000027198, +0.0000027187,0.0000027185,0.0000027147,0.0000027067,0.0000027033, +0.0000027054,0.0000027072,0.0000027043,0.0000026911,0.0000026737, +0.0000026606,0.0000026533,0.0000026513,0.0000026557,0.0000026630, +0.0000026686,0.0000026732,0.0000026783,0.0000026840,0.0000026894, +0.0000026938,0.0000026973,0.0000027001,0.0000027024,0.0000027048, +0.0000027072,0.0000027099,0.0000027134,0.0000027188,0.0000027235, +0.0000027250,0.0000027231,0.0000027172,0.0000027106,0.0000027064, +0.0000027043,0.0000026998,0.0000026898,0.0000026780,0.0000026731, +0.0000026766,0.0000026852,0.0000026919,0.0000026963,0.0000027002, +0.0000027036,0.0000027046,0.0000027044,0.0000027026,0.0000026984, +0.0000026930,0.0000026896,0.0000026887,0.0000026893,0.0000026910, +0.0000026922,0.0000026927,0.0000026925,0.0000026912,0.0000026904, +0.0000026917,0.0000026943,0.0000026957,0.0000026957,0.0000026955, +0.0000026948,0.0000026925,0.0000026899,0.0000026893,0.0000026925, +0.0000026976,0.0000026997,0.0000026987,0.0000026975,0.0000026975, +0.0000026959,0.0000026909,0.0000026855,0.0000026834,0.0000026848, +0.0000026907,0.0000027017,0.0000027106,0.0000027119,0.0000027106, +0.0000027130,0.0000027188,0.0000027231,0.0000027234,0.0000027213, +0.0000027182,0.0000027168,0.0000027160,0.0000027157,0.0000027160, +0.0000027171,0.0000027180,0.0000027187,0.0000027191,0.0000027186, +0.0000027178,0.0000027169,0.0000027159,0.0000027147,0.0000027129, +0.0000027106,0.0000027097,0.0000027111,0.0000027145,0.0000027186, +0.0000027225,0.0000027265,0.0000027296,0.0000027308,0.0000027308, +0.0000027308,0.0000027313,0.0000027320,0.0000027327,0.0000027331, +0.0000027329,0.0000027321,0.0000027515,0.0000027544,0.0000027577, +0.0000027606,0.0000027627,0.0000027639,0.0000027648,0.0000027657, +0.0000027679,0.0000027707,0.0000027723,0.0000027723,0.0000027714, +0.0000027702,0.0000027686,0.0000027655,0.0000027607,0.0000027550, +0.0000027510,0.0000027507,0.0000027537,0.0000027573,0.0000027620, +0.0000027667,0.0000027693,0.0000027692,0.0000027645,0.0000027581, +0.0000027524,0.0000027483,0.0000027476,0.0000027496,0.0000027512, +0.0000027523,0.0000027527,0.0000027524,0.0000027521,0.0000027511, +0.0000027499,0.0000027501,0.0000027533,0.0000027603,0.0000027703, +0.0000027797,0.0000027752,0.0000027449,0.0000027019,0.0000026858, +0.0000027002,0.0000027136,0.0000027318,0.0000027478,0.0000027551, +0.0000027567,0.0000027538,0.0000027474,0.0000027410,0.0000027387, +0.0000027378,0.0000027342,0.0000027482,0.0000027576,0.0000027453, +0.0000027421,0.0000027415,0.0000027491,0.0000027714,0.0000027811, +0.0000027797,0.0000027695,0.0000027503,0.0000027314,0.0000027246, +0.0000027255,0.0000027216,0.0000027121,0.0000027142,0.0000027292, +0.0000027348,0.0000027304,0.0000027237,0.0000027252,0.0000027333, +0.0000027342,0.0000027188,0.0000026946,0.0000026826,0.0000026795, +0.0000026752,0.0000026732,0.0000026761,0.0000026831,0.0000026883, +0.0000026895,0.0000026921,0.0000026935,0.0000026916,0.0000026877, +0.0000026852,0.0000026859,0.0000026898,0.0000026964,0.0000027032, +0.0000027097,0.0000027147,0.0000027179,0.0000027190,0.0000027183, +0.0000027163,0.0000027129,0.0000027068,0.0000026995,0.0000026940, +0.0000026920,0.0000026903,0.0000026889,0.0000026870,0.0000026847, +0.0000026832,0.0000026838,0.0000026859,0.0000026889,0.0000026893, +0.0000026886,0.0000026867,0.0000026838,0.0000026811,0.0000026793, +0.0000026781,0.0000026770,0.0000026765,0.0000026767,0.0000026789, +0.0000026824,0.0000026856,0.0000026868,0.0000026865,0.0000026874, +0.0000026915,0.0000026966,0.0000026975,0.0000026954,0.0000026957, +0.0000027034,0.0000027104,0.0000027028,0.0000026854,0.0000026800, +0.0000026817,0.0000026812,0.0000026823,0.0000026864,0.0000026965, +0.0000027081,0.0000027106,0.0000027074,0.0000027086,0.0000027122, +0.0000027100,0.0000026998,0.0000026919,0.0000026918,0.0000026969, +0.0000027047,0.0000027125,0.0000027178,0.0000027228,0.0000027309, +0.0000027417,0.0000027499,0.0000027510,0.0000027439,0.0000027339, +0.0000027287,0.0000027287,0.0000027301,0.0000027289,0.0000027240, +0.0000027178,0.0000027129,0.0000027071,0.0000026915,0.0000026709, +0.0000026596,0.0000026551,0.0000026533,0.0000026597,0.0000026833, +0.0000027147,0.0000027370,0.0000027427,0.0000027415,0.0000027397, +0.0000027412,0.0000027417,0.0000027386,0.0000027351,0.0000027322, +0.0000027294,0.0000027260,0.0000027211,0.0000027150,0.0000027082, +0.0000027028,0.0000027006,0.0000027003,0.0000027006,0.0000027010, +0.0000027023,0.0000027051,0.0000027069,0.0000027059,0.0000027010, +0.0000026932,0.0000026854,0.0000026801,0.0000026777,0.0000026795, +0.0000026862,0.0000026964,0.0000027045,0.0000027021,0.0000027013, +0.0000027149,0.0000027311,0.0000027348,0.0000027291,0.0000027240, +0.0000027218,0.0000027204,0.0000027173,0.0000027088,0.0000027033, +0.0000027066,0.0000027126,0.0000027133,0.0000027047,0.0000026869, +0.0000026686,0.0000026572,0.0000026537,0.0000026570,0.0000026662, +0.0000026750,0.0000026814,0.0000026858,0.0000026893,0.0000026932, +0.0000026964,0.0000026987,0.0000027010,0.0000027040,0.0000027081, +0.0000027127,0.0000027163,0.0000027190,0.0000027216,0.0000027255, +0.0000027280,0.0000027277,0.0000027230,0.0000027147,0.0000027065, +0.0000027019,0.0000027006,0.0000026975,0.0000026885,0.0000026768, +0.0000026727,0.0000026770,0.0000026879,0.0000026962,0.0000027002, +0.0000027030,0.0000027053,0.0000027060,0.0000027048,0.0000027024, +0.0000026979,0.0000026915,0.0000026858,0.0000026818,0.0000026795, +0.0000026799,0.0000026812,0.0000026823,0.0000026833,0.0000026842, +0.0000026853,0.0000026872,0.0000026896,0.0000026917,0.0000026925, +0.0000026930,0.0000026932,0.0000026925,0.0000026910,0.0000026905, +0.0000026930,0.0000026981,0.0000027029,0.0000027041,0.0000027021, +0.0000027003,0.0000026983,0.0000026927,0.0000026852,0.0000026821, +0.0000026842,0.0000026909,0.0000027010,0.0000027096,0.0000027106, +0.0000027079,0.0000027100,0.0000027171,0.0000027240,0.0000027270, +0.0000027265,0.0000027254,0.0000027261,0.0000027274,0.0000027276, +0.0000027276,0.0000027275,0.0000027279,0.0000027287,0.0000027293, +0.0000027285,0.0000027257,0.0000027222,0.0000027196,0.0000027170, +0.0000027143,0.0000027118,0.0000027093,0.0000027083,0.0000027106, +0.0000027162,0.0000027225,0.0000027278,0.0000027319,0.0000027352, +0.0000027368,0.0000027379,0.0000027394,0.0000027409,0.0000027423, +0.0000027439,0.0000027457,0.0000027473,0.0000027491,0.0000027816, +0.0000027811,0.0000027794,0.0000027774,0.0000027762,0.0000027766, +0.0000027785,0.0000027803,0.0000027795,0.0000027746,0.0000027683, +0.0000027641,0.0000027629,0.0000027628,0.0000027620,0.0000027585, +0.0000027529,0.0000027481,0.0000027467,0.0000027492,0.0000027534, +0.0000027572,0.0000027606,0.0000027633,0.0000027631,0.0000027585, +0.0000027517,0.0000027439,0.0000027382,0.0000027340,0.0000027313, +0.0000027307,0.0000027310,0.0000027308,0.0000027309,0.0000027318, +0.0000027344,0.0000027370,0.0000027393,0.0000027429,0.0000027481, +0.0000027551,0.0000027674,0.0000027797,0.0000027817,0.0000027628, +0.0000027231,0.0000026904,0.0000026913,0.0000027062,0.0000027196, +0.0000027361,0.0000027477,0.0000027518,0.0000027512,0.0000027466, +0.0000027400,0.0000027349,0.0000027343,0.0000027331,0.0000027352, +0.0000027547,0.0000027540,0.0000027418,0.0000027391,0.0000027392, +0.0000027552,0.0000027769,0.0000027819,0.0000027783,0.0000027637, +0.0000027419,0.0000027245,0.0000027201,0.0000027194,0.0000027129, +0.0000027118,0.0000027245,0.0000027355,0.0000027336,0.0000027269, +0.0000027228,0.0000027291,0.0000027338,0.0000027266,0.0000027049, +0.0000026873,0.0000026837,0.0000026810,0.0000026776,0.0000026777, +0.0000026834,0.0000026894,0.0000026924,0.0000026943,0.0000026961, +0.0000026947,0.0000026924,0.0000026900,0.0000026899,0.0000026925, +0.0000026964,0.0000026991,0.0000027017,0.0000027043,0.0000027069, +0.0000027094,0.0000027124,0.0000027141,0.0000027143,0.0000027131, +0.0000027094,0.0000027042,0.0000026997,0.0000026975,0.0000026957, +0.0000026939,0.0000026915,0.0000026896,0.0000026870,0.0000026852, +0.0000026858,0.0000026889,0.0000026917,0.0000026926,0.0000026930, +0.0000026925,0.0000026909,0.0000026903,0.0000026911,0.0000026910, +0.0000026896,0.0000026880,0.0000026878,0.0000026888,0.0000026894, +0.0000026884,0.0000026860,0.0000026849,0.0000026881,0.0000026943, +0.0000026980,0.0000026969,0.0000026954,0.0000026988,0.0000027076, +0.0000027102,0.0000026980,0.0000026831,0.0000026808,0.0000026816, +0.0000026815,0.0000026836,0.0000026904,0.0000027028,0.0000027104, +0.0000027090,0.0000027063,0.0000027080,0.0000027091,0.0000027030, +0.0000026928,0.0000026883,0.0000026904,0.0000026964,0.0000027037, +0.0000027101,0.0000027152,0.0000027219,0.0000027321,0.0000027433, +0.0000027510,0.0000027523,0.0000027469,0.0000027382,0.0000027313, +0.0000027284,0.0000027282,0.0000027281,0.0000027258,0.0000027213, +0.0000027161,0.0000027119,0.0000027026,0.0000026822,0.0000026632, +0.0000026559,0.0000026545,0.0000026553,0.0000026691,0.0000026990, +0.0000027292,0.0000027423,0.0000027404,0.0000027364,0.0000027374, +0.0000027394,0.0000027382,0.0000027355,0.0000027331,0.0000027304, +0.0000027267,0.0000027216,0.0000027157,0.0000027094,0.0000027036, +0.0000027005,0.0000026995,0.0000026993,0.0000026994,0.0000026998, +0.0000027023,0.0000027059,0.0000027068,0.0000027043,0.0000026987, +0.0000026907,0.0000026835,0.0000026787,0.0000026774,0.0000026801, +0.0000026891,0.0000027019,0.0000027061,0.0000027014,0.0000027066, +0.0000027238,0.0000027353,0.0000027331,0.0000027275,0.0000027241, +0.0000027218,0.0000027199,0.0000027127,0.0000027045,0.0000027062, +0.0000027154,0.0000027199,0.0000027175,0.0000027043,0.0000026833, +0.0000026642,0.0000026559,0.0000026580,0.0000026679,0.0000026794, +0.0000026878,0.0000026930,0.0000026954,0.0000026968,0.0000026989, +0.0000027013,0.0000027039,0.0000027073,0.0000027114,0.0000027153, +0.0000027186,0.0000027209,0.0000027231,0.0000027256,0.0000027280, +0.0000027282,0.0000027252,0.0000027184,0.0000027096,0.0000027024, +0.0000026996,0.0000026996,0.0000026980,0.0000026896,0.0000026774, +0.0000026721,0.0000026763,0.0000026884,0.0000026983,0.0000027030, +0.0000027053,0.0000027073,0.0000027079,0.0000027064,0.0000027024, +0.0000026977,0.0000026917,0.0000026855,0.0000026801,0.0000026761, +0.0000026740,0.0000026730,0.0000026724,0.0000026730,0.0000026744, +0.0000026760,0.0000026778,0.0000026799,0.0000026824,0.0000026842, +0.0000026854,0.0000026861,0.0000026860,0.0000026853,0.0000026855, +0.0000026880,0.0000026929,0.0000026987,0.0000027023,0.0000027025, +0.0000027005,0.0000026974,0.0000026925,0.0000026859,0.0000026827, +0.0000026842,0.0000026913,0.0000027019,0.0000027115,0.0000027128, +0.0000027092,0.0000027095,0.0000027169,0.0000027262,0.0000027319, +0.0000027336,0.0000027338,0.0000027354,0.0000027391,0.0000027413, +0.0000027415,0.0000027409,0.0000027407,0.0000027416,0.0000027430, +0.0000027431,0.0000027413,0.0000027379,0.0000027338,0.0000027304, +0.0000027267,0.0000027224,0.0000027182,0.0000027151,0.0000027137, +0.0000027162,0.0000027221,0.0000027284,0.0000027337,0.0000027380, +0.0000027416,0.0000027453,0.0000027496,0.0000027550,0.0000027605, +0.0000027661,0.0000027713,0.0000027758,0.0000027792,0.0000027811, +0.0000027961,0.0000027973,0.0000027982,0.0000027984,0.0000027974, +0.0000027939,0.0000027872,0.0000027784,0.0000027693,0.0000027631, +0.0000027607,0.0000027604,0.0000027605,0.0000027596,0.0000027569, +0.0000027516,0.0000027460,0.0000027434,0.0000027447,0.0000027481, +0.0000027505,0.0000027513,0.0000027524,0.0000027533,0.0000027522, +0.0000027481,0.0000027419,0.0000027364,0.0000027322,0.0000027287, +0.0000027249,0.0000027217,0.0000027197,0.0000027181,0.0000027173, +0.0000027193,0.0000027230,0.0000027269,0.0000027313,0.0000027369, +0.0000027439,0.0000027521,0.0000027640,0.0000027779,0.0000027835, +0.0000027744,0.0000027436,0.0000027055,0.0000026900,0.0000026995, +0.0000027123,0.0000027260,0.0000027388,0.0000027459,0.0000027469, +0.0000027439,0.0000027380,0.0000027324,0.0000027299,0.0000027310, +0.0000027301,0.0000027399,0.0000027579,0.0000027482,0.0000027390, +0.0000027361,0.0000027402,0.0000027628,0.0000027800,0.0000027817, +0.0000027741,0.0000027560,0.0000027333,0.0000027182,0.0000027141, +0.0000027112,0.0000027095,0.0000027203,0.0000027349,0.0000027365, +0.0000027310,0.0000027244,0.0000027262,0.0000027325,0.0000027305, +0.0000027144,0.0000026944,0.0000026869,0.0000026865,0.0000026836, +0.0000026814,0.0000026841,0.0000026900,0.0000026942,0.0000026972, +0.0000026990,0.0000026993,0.0000026993,0.0000026996,0.0000026989, +0.0000026994,0.0000027001,0.0000026991,0.0000026979,0.0000026980, +0.0000026973,0.0000026971,0.0000027011,0.0000027075,0.0000027124, +0.0000027144,0.0000027156,0.0000027148,0.0000027133,0.0000027132, +0.0000027139,0.0000027126,0.0000027097,0.0000027058,0.0000027022, +0.0000026981,0.0000026932,0.0000026916,0.0000026927,0.0000026952, +0.0000026973,0.0000027010,0.0000027050,0.0000027063,0.0000027061, +0.0000027066,0.0000027060,0.0000027027,0.0000026985,0.0000026959, +0.0000026942,0.0000026917,0.0000026892,0.0000026851,0.0000026824, +0.0000026849,0.0000026920,0.0000026978,0.0000026984,0.0000026962, +0.0000026966,0.0000027031,0.0000027108,0.0000027086,0.0000026941, +0.0000026824,0.0000026813,0.0000026815,0.0000026822,0.0000026862, +0.0000026967,0.0000027083,0.0000027107,0.0000027074,0.0000027065, +0.0000027084,0.0000027070,0.0000026988,0.0000026904,0.0000026884, +0.0000026920,0.0000026980,0.0000027043,0.0000027092,0.0000027136, +0.0000027210,0.0000027324,0.0000027441,0.0000027513,0.0000027525, +0.0000027488,0.0000027417,0.0000027348,0.0000027294,0.0000027267, +0.0000027262,0.0000027257,0.0000027241,0.0000027201,0.0000027155, +0.0000027099,0.0000026950,0.0000026723,0.0000026584,0.0000026563, +0.0000026560,0.0000026605,0.0000026821,0.0000027156,0.0000027374, +0.0000027388,0.0000027338,0.0000027341,0.0000027373,0.0000027374, +0.0000027354,0.0000027334,0.0000027308,0.0000027269,0.0000027221, +0.0000027163,0.0000027103,0.0000027042,0.0000026999,0.0000026983, +0.0000026979,0.0000026980,0.0000026984,0.0000026999,0.0000027031, +0.0000027059,0.0000027054,0.0000027011,0.0000026943,0.0000026865, +0.0000026801,0.0000026760,0.0000026755,0.0000026811,0.0000026941, +0.0000027061,0.0000027051,0.0000027019,0.0000027129,0.0000027305, +0.0000027350,0.0000027306,0.0000027262,0.0000027225,0.0000027207, +0.0000027167,0.0000027081,0.0000027054,0.0000027141,0.0000027235, +0.0000027254,0.0000027200,0.0000027031,0.0000026799,0.0000026614, +0.0000026589,0.0000026677,0.0000026816,0.0000026922,0.0000026986, +0.0000027011,0.0000027010,0.0000027017,0.0000027054,0.0000027094, +0.0000027116,0.0000027129,0.0000027147,0.0000027168,0.0000027185, +0.0000027194,0.0000027212,0.0000027247,0.0000027268,0.0000027262, +0.0000027222,0.0000027153,0.0000027079,0.0000027025,0.0000027011, +0.0000027019,0.0000027014,0.0000026943,0.0000026819,0.0000026741, +0.0000026779,0.0000026899,0.0000026999,0.0000027043,0.0000027067, +0.0000027090,0.0000027101,0.0000027091,0.0000027046,0.0000026980, +0.0000026913,0.0000026854,0.0000026808,0.0000026781,0.0000026758, +0.0000026735,0.0000026721,0.0000026715,0.0000026717,0.0000026722, +0.0000026723,0.0000026719,0.0000026722,0.0000026737,0.0000026750, +0.0000026756,0.0000026758,0.0000026758,0.0000026761,0.0000026785, +0.0000026838,0.0000026905,0.0000026962,0.0000026996,0.0000027004, +0.0000026989,0.0000026946,0.0000026886,0.0000026853,0.0000026865, +0.0000026922,0.0000027026,0.0000027151,0.0000027188,0.0000027138, +0.0000027121,0.0000027184,0.0000027276,0.0000027349,0.0000027389, +0.0000027406,0.0000027427,0.0000027469,0.0000027508,0.0000027522, +0.0000027524,0.0000027526,0.0000027531,0.0000027536,0.0000027533, +0.0000027520,0.0000027497,0.0000027465,0.0000027425,0.0000027392, +0.0000027358,0.0000027318,0.0000027276,0.0000027243,0.0000027233, +0.0000027273,0.0000027342,0.0000027422,0.0000027494,0.0000027552, +0.0000027595,0.0000027639,0.0000027684,0.0000027726,0.0000027768, +0.0000027813,0.0000027857,0.0000027894,0.0000027923,0.0000027944, +0.0000028119,0.0000028108,0.0000028080,0.0000028033,0.0000027959, +0.0000027855,0.0000027744,0.0000027668,0.0000027637,0.0000027627, +0.0000027606,0.0000027573,0.0000027547,0.0000027533,0.0000027499, +0.0000027436,0.0000027390,0.0000027388,0.0000027417,0.0000027441, +0.0000027437,0.0000027426,0.0000027444,0.0000027473,0.0000027485, +0.0000027468,0.0000027420,0.0000027367,0.0000027322,0.0000027282, +0.0000027240,0.0000027200,0.0000027174,0.0000027161,0.0000027161, +0.0000027182,0.0000027215,0.0000027249,0.0000027283,0.0000027333, +0.0000027409,0.0000027507,0.0000027634,0.0000027777,0.0000027851, +0.0000027815,0.0000027597,0.0000027236,0.0000026966,0.0000026958, +0.0000027073,0.0000027180,0.0000027311,0.0000027397,0.0000027424, +0.0000027404,0.0000027347,0.0000027292,0.0000027264,0.0000027276, +0.0000027285,0.0000027298,0.0000027482,0.0000027568,0.0000027431, +0.0000027358,0.0000027333,0.0000027450,0.0000027699,0.0000027806, +0.0000027796,0.0000027683,0.0000027478,0.0000027256,0.0000027116, +0.0000027065,0.0000027059,0.0000027154,0.0000027327,0.0000027384, +0.0000027344,0.0000027278,0.0000027254,0.0000027308,0.0000027312, +0.0000027209,0.0000027019,0.0000026904,0.0000026891,0.0000026895, +0.0000026857,0.0000026858,0.0000026909,0.0000026947,0.0000026972, +0.0000027009,0.0000027034,0.0000027058,0.0000027089,0.0000027100, +0.0000027088,0.0000027075,0.0000027049,0.0000027002,0.0000026964, +0.0000026936,0.0000026903,0.0000026896,0.0000026966,0.0000027061, +0.0000027143,0.0000027207,0.0000027261,0.0000027293,0.0000027316, +0.0000027345,0.0000027367,0.0000027354,0.0000027312,0.0000027260, +0.0000027203,0.0000027142,0.0000027086,0.0000027051,0.0000027043, +0.0000027054,0.0000027072,0.0000027112,0.0000027171,0.0000027204, +0.0000027200,0.0000027181,0.0000027152,0.0000027105,0.0000027053, +0.0000027006,0.0000026970,0.0000026931,0.0000026881,0.0000026823, +0.0000026791,0.0000026818,0.0000026900,0.0000026979,0.0000026995, +0.0000026973,0.0000026966,0.0000027005,0.0000027083,0.0000027132, +0.0000027073,0.0000026921,0.0000026822,0.0000026812,0.0000026818, +0.0000026837,0.0000026910,0.0000027038,0.0000027106,0.0000027092, +0.0000027075,0.0000027085,0.0000027099,0.0000027069,0.0000026980, +0.0000026911,0.0000026912,0.0000026954,0.0000027005,0.0000027054, +0.0000027093,0.0000027131,0.0000027204,0.0000027318,0.0000027436, +0.0000027508,0.0000027524,0.0000027497,0.0000027439,0.0000027377, +0.0000027315,0.0000027263,0.0000027240,0.0000027240,0.0000027246, +0.0000027238,0.0000027194,0.0000027141,0.0000027048,0.0000026847, +0.0000026647,0.0000026582,0.0000026577,0.0000026577,0.0000026687, +0.0000026989,0.0000027278,0.0000027354,0.0000027326,0.0000027322, +0.0000027362,0.0000027370,0.0000027352,0.0000027331,0.0000027300, +0.0000027253,0.0000027201,0.0000027146,0.0000027090,0.0000027032, +0.0000026989,0.0000026968,0.0000026962,0.0000026966,0.0000026975, +0.0000026987,0.0000027008,0.0000027037,0.0000027048,0.0000027026, +0.0000026967,0.0000026889,0.0000026816,0.0000026760,0.0000026734, +0.0000026748,0.0000026836,0.0000027000,0.0000027087,0.0000027038, +0.0000027030,0.0000027192,0.0000027328,0.0000027323,0.0000027283, +0.0000027230,0.0000027198,0.0000027183,0.0000027123,0.0000027072, +0.0000027116,0.0000027221,0.0000027292,0.0000027297,0.0000027207, +0.0000027012,0.0000026763,0.0000026614,0.0000026652,0.0000026802, +0.0000026933,0.0000027009,0.0000027049,0.0000027051,0.0000027051, +0.0000027083,0.0000027138,0.0000027175,0.0000027184,0.0000027181, +0.0000027173,0.0000027168,0.0000027165,0.0000027168,0.0000027190, +0.0000027224,0.0000027252,0.0000027258,0.0000027231,0.0000027172, +0.0000027103,0.0000027051,0.0000027036,0.0000027049,0.0000027053, +0.0000026996,0.0000026884,0.0000026804,0.0000026834,0.0000026952, +0.0000027048,0.0000027075,0.0000027082,0.0000027102,0.0000027120, +0.0000027117,0.0000027079,0.0000027010,0.0000026935,0.0000026876, +0.0000026840,0.0000026829,0.0000026826,0.0000026809,0.0000026782, +0.0000026767,0.0000026758,0.0000026754,0.0000026744,0.0000026730, +0.0000026717,0.0000026710,0.0000026707,0.0000026703,0.0000026702, +0.0000026704,0.0000026710,0.0000026730,0.0000026778,0.0000026848, +0.0000026918,0.0000026972,0.0000027008,0.0000027020,0.0000026994, +0.0000026942,0.0000026909,0.0000026914,0.0000026948,0.0000027031, +0.0000027162,0.0000027235,0.0000027210,0.0000027194,0.0000027238, +0.0000027299,0.0000027353,0.0000027395,0.0000027424,0.0000027450, +0.0000027490,0.0000027542,0.0000027572,0.0000027588,0.0000027600, +0.0000027604,0.0000027603,0.0000027608,0.0000027612,0.0000027606, +0.0000027588,0.0000027560,0.0000027529,0.0000027507,0.0000027483, +0.0000027452,0.0000027418,0.0000027401,0.0000027414,0.0000027462, +0.0000027520,0.0000027570,0.0000027605,0.0000027633,0.0000027664, +0.0000027713,0.0000027782,0.0000027853,0.0000027922,0.0000027987, +0.0000028044,0.0000028087,0.0000028111,0.0000028120,0.0000028017, +0.0000027975,0.0000027927,0.0000027872,0.0000027819,0.0000027763, +0.0000027723,0.0000027709,0.0000027700,0.0000027650,0.0000027565, +0.0000027494,0.0000027473,0.0000027464,0.0000027419,0.0000027350, +0.0000027321,0.0000027336,0.0000027373,0.0000027395,0.0000027402, +0.0000027416,0.0000027455,0.0000027497,0.0000027516,0.0000027505, +0.0000027453,0.0000027384,0.0000027333,0.0000027293,0.0000027252, +0.0000027209,0.0000027180,0.0000027182,0.0000027212,0.0000027249, +0.0000027279,0.0000027296,0.0000027306,0.0000027333,0.0000027399, +0.0000027505,0.0000027647,0.0000027792,0.0000027866,0.0000027854, +0.0000027709,0.0000027403,0.0000027102,0.0000026991,0.0000027033, +0.0000027122,0.0000027228,0.0000027337,0.0000027379,0.0000027370, +0.0000027320,0.0000027260,0.0000027230,0.0000027237,0.0000027270, +0.0000027271,0.0000027345,0.0000027545,0.0000027517,0.0000027391, +0.0000027317,0.0000027322,0.0000027525,0.0000027750,0.0000027801, +0.0000027763,0.0000027620,0.0000027402,0.0000027182,0.0000027038, +0.0000027008,0.0000027088,0.0000027285,0.0000027402,0.0000027375, +0.0000027309,0.0000027267,0.0000027295,0.0000027324,0.0000027248, +0.0000027083,0.0000026940,0.0000026915,0.0000026927,0.0000026920, +0.0000026884,0.0000026909,0.0000026947,0.0000026962,0.0000026990, +0.0000027037,0.0000027101,0.0000027165,0.0000027198,0.0000027191, +0.0000027159,0.0000027118,0.0000027062,0.0000026985,0.0000026914, +0.0000026869,0.0000026860,0.0000026884,0.0000026971,0.0000027111, +0.0000027248,0.0000027360,0.0000027443,0.0000027482,0.0000027504, +0.0000027524,0.0000027538,0.0000027524,0.0000027483,0.0000027429, +0.0000027370,0.0000027306,0.0000027247,0.0000027199,0.0000027175, +0.0000027169,0.0000027176,0.0000027203,0.0000027243,0.0000027268, +0.0000027262,0.0000027231,0.0000027183,0.0000027131,0.0000027080, +0.0000027028,0.0000026978,0.0000026919,0.0000026851,0.0000026780, +0.0000026747,0.0000026780,0.0000026879,0.0000026973,0.0000026997, +0.0000026982,0.0000026972,0.0000027004,0.0000027067,0.0000027145, +0.0000027168,0.0000027073,0.0000026915,0.0000026819,0.0000026814, +0.0000026829,0.0000026868,0.0000026977,0.0000027084,0.0000027099, +0.0000027084,0.0000027095,0.0000027125,0.0000027135,0.0000027086, +0.0000026997,0.0000026941,0.0000026943,0.0000026975,0.0000027018, +0.0000027057,0.0000027088,0.0000027125,0.0000027194,0.0000027302, +0.0000027419,0.0000027498,0.0000027521,0.0000027506,0.0000027457, +0.0000027403,0.0000027343,0.0000027275,0.0000027226,0.0000027214, +0.0000027233,0.0000027251,0.0000027230,0.0000027174,0.0000027104, +0.0000026965,0.0000026754,0.0000026620,0.0000026591,0.0000026581, +0.0000026614,0.0000026829,0.0000027147,0.0000027309,0.0000027312, +0.0000027307,0.0000027347,0.0000027355,0.0000027329,0.0000027299, +0.0000027266,0.0000027218,0.0000027167,0.0000027123,0.0000027080, +0.0000027035,0.0000026996,0.0000026978,0.0000026972,0.0000026975, +0.0000026981,0.0000026984,0.0000026994,0.0000027017,0.0000027037, +0.0000027034,0.0000026998,0.0000026932,0.0000026854,0.0000026785, +0.0000026731,0.0000026715,0.0000026745,0.0000026880,0.0000027063, +0.0000027104,0.0000027026,0.0000027063,0.0000027235,0.0000027318, +0.0000027293,0.0000027246,0.0000027186,0.0000027173,0.0000027152, +0.0000027097,0.0000027105,0.0000027189,0.0000027280,0.0000027327, +0.0000027313,0.0000027204,0.0000026985,0.0000026735,0.0000026645, +0.0000026748,0.0000026914,0.0000027003,0.0000027045,0.0000027063, +0.0000027068,0.0000027093,0.0000027150,0.0000027205,0.0000027236, +0.0000027240,0.0000027225,0.0000027203,0.0000027181,0.0000027171, +0.0000027176,0.0000027197,0.0000027228,0.0000027259,0.0000027276, +0.0000027267,0.0000027220,0.0000027150,0.0000027089,0.0000027065, +0.0000027075,0.0000027081,0.0000027033,0.0000026937,0.0000026864, +0.0000026898,0.0000027027,0.0000027133,0.0000027150,0.0000027137, +0.0000027130,0.0000027137,0.0000027137,0.0000027114,0.0000027064, +0.0000027003,0.0000026955,0.0000026925,0.0000026912,0.0000026909, +0.0000026894,0.0000026869,0.0000026842,0.0000026827,0.0000026817, +0.0000026807,0.0000026792,0.0000026775,0.0000026758,0.0000026735, +0.0000026710,0.0000026694,0.0000026687,0.0000026694,0.0000026714, +0.0000026759,0.0000026821,0.0000026888,0.0000026949,0.0000027006, +0.0000027043,0.0000027044,0.0000027011,0.0000026982,0.0000026986, +0.0000027006,0.0000027060,0.0000027180,0.0000027271,0.0000027271, +0.0000027276,0.0000027325,0.0000027358,0.0000027365,0.0000027378, +0.0000027403,0.0000027429,0.0000027467,0.0000027524,0.0000027578, +0.0000027611,0.0000027631,0.0000027651,0.0000027676,0.0000027706, +0.0000027724,0.0000027718,0.0000027693,0.0000027666,0.0000027645, +0.0000027629,0.0000027618,0.0000027605,0.0000027579,0.0000027546, +0.0000027519,0.0000027512,0.0000027521,0.0000027550,0.0000027605, +0.0000027691,0.0000027793,0.0000027877,0.0000027933,0.0000027982, +0.0000028018,0.0000028043,0.0000028063,0.0000028074,0.0000028081, +0.0000028075,0.0000028052,0.0000027848,0.0000027830,0.0000027826, +0.0000027826,0.0000027828,0.0000027833,0.0000027838,0.0000027824, +0.0000027754,0.0000027635,0.0000027507,0.0000027432,0.0000027411, +0.0000027387,0.0000027330,0.0000027270,0.0000027255,0.0000027285, +0.0000027340,0.0000027390,0.0000027431,0.0000027476,0.0000027523, +0.0000027557,0.0000027569,0.0000027559,0.0000027514,0.0000027449, +0.0000027405,0.0000027372,0.0000027328,0.0000027277,0.0000027242, +0.0000027250,0.0000027300,0.0000027358,0.0000027392,0.0000027396, +0.0000027384,0.0000027377,0.0000027415,0.0000027516,0.0000027669, +0.0000027818,0.0000027879,0.0000027872,0.0000027779,0.0000027529, +0.0000027226,0.0000027037,0.0000027025,0.0000027095,0.0000027160, +0.0000027252,0.0000027321,0.0000027327,0.0000027294,0.0000027242, +0.0000027204,0.0000027199,0.0000027242,0.0000027270,0.0000027280, +0.0000027433,0.0000027563,0.0000027454,0.0000027352,0.0000027277, +0.0000027356,0.0000027612,0.0000027786,0.0000027799,0.0000027721, +0.0000027556,0.0000027324,0.0000027096,0.0000026982,0.0000027016, +0.0000027212,0.0000027402,0.0000027419,0.0000027341,0.0000027275, +0.0000027287,0.0000027325,0.0000027293,0.0000027136,0.0000026968, +0.0000026916,0.0000026944,0.0000026966,0.0000026946,0.0000026926, +0.0000026942,0.0000026948,0.0000026964,0.0000027004,0.0000027083, +0.0000027204,0.0000027287,0.0000027298,0.0000027263,0.0000027201, +0.0000027122,0.0000027025,0.0000026914,0.0000026839,0.0000026836, +0.0000026867,0.0000026949,0.0000027081,0.0000027258,0.0000027427, +0.0000027535,0.0000027585,0.0000027596,0.0000027588,0.0000027584, +0.0000027585,0.0000027571,0.0000027537,0.0000027488,0.0000027441, +0.0000027382,0.0000027315,0.0000027257,0.0000027213,0.0000027194, +0.0000027191,0.0000027209,0.0000027238,0.0000027256,0.0000027250, +0.0000027223,0.0000027182,0.0000027131,0.0000027077,0.0000027019, +0.0000026956,0.0000026878,0.0000026797,0.0000026728,0.0000026705, +0.0000026747,0.0000026847,0.0000026949,0.0000026984,0.0000026978, +0.0000026978,0.0000027018,0.0000027075,0.0000027144,0.0000027212, +0.0000027202,0.0000027081,0.0000026908,0.0000026819,0.0000026821, +0.0000026848,0.0000026924,0.0000027040,0.0000027090,0.0000027084, +0.0000027091,0.0000027130,0.0000027171,0.0000027166,0.0000027099, +0.0000027010,0.0000026955,0.0000026946,0.0000026967,0.0000027003, +0.0000027038,0.0000027067,0.0000027108,0.0000027178,0.0000027281, +0.0000027398,0.0000027489,0.0000027526,0.0000027521,0.0000027479, +0.0000027431,0.0000027380,0.0000027306,0.0000027230,0.0000027190, +0.0000027201,0.0000027239,0.0000027245,0.0000027209,0.0000027138, +0.0000027047,0.0000026884,0.0000026704,0.0000026619,0.0000026593, +0.0000026589,0.0000026708,0.0000026994,0.0000027233,0.0000027284, +0.0000027288,0.0000027319,0.0000027321,0.0000027283,0.0000027252, +0.0000027226,0.0000027182,0.0000027142,0.0000027120,0.0000027101, +0.0000027069,0.0000027037,0.0000027023,0.0000027026,0.0000027039, +0.0000027047,0.0000027033,0.0000027007,0.0000026999,0.0000027011, +0.0000027022,0.0000027011,0.0000026971,0.0000026913,0.0000026845, +0.0000026773,0.0000026714,0.0000026698,0.0000026758,0.0000026949, +0.0000027113,0.0000027102,0.0000027027,0.0000027096,0.0000027255, +0.0000027292,0.0000027258,0.0000027187,0.0000027145,0.0000027151, +0.0000027123,0.0000027107,0.0000027159,0.0000027247,0.0000027319, +0.0000027346,0.0000027316,0.0000027190,0.0000026955,0.0000026728, +0.0000026696,0.0000026849,0.0000026988,0.0000027030,0.0000027049, +0.0000027060,0.0000027077,0.0000027119,0.0000027180,0.0000027234, +0.0000027262,0.0000027263,0.0000027247,0.0000027225,0.0000027209, +0.0000027205,0.0000027213,0.0000027230,0.0000027254,0.0000027286, +0.0000027311,0.0000027309,0.0000027267,0.0000027200,0.0000027140, +0.0000027110,0.0000027111,0.0000027109,0.0000027065,0.0000026979, +0.0000026913,0.0000026945,0.0000027083,0.0000027213,0.0000027248, +0.0000027230,0.0000027199,0.0000027180,0.0000027163,0.0000027145, +0.0000027118,0.0000027079,0.0000027049,0.0000027042,0.0000027048, +0.0000027056,0.0000027049,0.0000027027,0.0000026993,0.0000026963, +0.0000026940,0.0000026918,0.0000026903,0.0000026893,0.0000026881, +0.0000026854,0.0000026815,0.0000026778,0.0000026750,0.0000026738, +0.0000026754,0.0000026792,0.0000026841,0.0000026893,0.0000026946, +0.0000027009,0.0000027072,0.0000027104,0.0000027097,0.0000027073, +0.0000027065,0.0000027070,0.0000027112,0.0000027211,0.0000027299, +0.0000027320,0.0000027348,0.0000027410,0.0000027436,0.0000027408, +0.0000027377,0.0000027375,0.0000027397,0.0000027435,0.0000027487, +0.0000027549,0.0000027596,0.0000027634,0.0000027690,0.0000027760, +0.0000027803,0.0000027805,0.0000027768,0.0000027723,0.0000027692, +0.0000027678,0.0000027678,0.0000027681,0.0000027683,0.0000027673, +0.0000027633,0.0000027575,0.0000027525,0.0000027516,0.0000027560, +0.0000027696,0.0000027844,0.0000027951,0.0000028009,0.0000028028, +0.0000028028,0.0000028025,0.0000028024,0.0000028014,0.0000027993, +0.0000027966,0.0000027940,0.0000027909,0.0000027877,0.0000027788, +0.0000027808,0.0000027837,0.0000027879,0.0000027922,0.0000027946, +0.0000027946,0.0000027898,0.0000027779,0.0000027624,0.0000027487, +0.0000027400,0.0000027354,0.0000027311,0.0000027253,0.0000027201, +0.0000027188,0.0000027224,0.0000027311,0.0000027412,0.0000027494, +0.0000027551,0.0000027587,0.0000027613,0.0000027634,0.0000027638, +0.0000027613,0.0000027564,0.0000027523,0.0000027494,0.0000027448, +0.0000027388,0.0000027346,0.0000027356,0.0000027418,0.0000027491, +0.0000027532,0.0000027536,0.0000027510,0.0000027473,0.0000027470, +0.0000027544,0.0000027695,0.0000027842,0.0000027895,0.0000027885, +0.0000027820,0.0000027619,0.0000027342,0.0000027130,0.0000027056, +0.0000027085,0.0000027143,0.0000027189,0.0000027245,0.0000027273, +0.0000027263,0.0000027229,0.0000027187,0.0000027172,0.0000027206, +0.0000027262,0.0000027277,0.0000027330,0.0000027516,0.0000027519, +0.0000027404,0.0000027294,0.0000027251,0.0000027430,0.0000027700, +0.0000027802,0.0000027780,0.0000027669,0.0000027480,0.0000027228, +0.0000027020,0.0000026973,0.0000027116,0.0000027357,0.0000027441, +0.0000027391,0.0000027293,0.0000027273,0.0000027322,0.0000027320, +0.0000027209,0.0000027009,0.0000026902,0.0000026923,0.0000026975, +0.0000026998,0.0000026994,0.0000026986,0.0000026955,0.0000026934, +0.0000026962,0.0000027033,0.0000027163,0.0000027314,0.0000027380, +0.0000027373,0.0000027313,0.0000027212,0.0000027089,0.0000026939, +0.0000026820,0.0000026799,0.0000026851,0.0000026958,0.0000027120, +0.0000027298,0.0000027452,0.0000027570,0.0000027619,0.0000027629, +0.0000027621,0.0000027600,0.0000027588,0.0000027581,0.0000027572, +0.0000027544,0.0000027505,0.0000027462,0.0000027413,0.0000027341, +0.0000027267,0.0000027207,0.0000027166,0.0000027146,0.0000027152, +0.0000027184,0.0000027197,0.0000027192,0.0000027174,0.0000027146, +0.0000027106,0.0000027048,0.0000026975,0.0000026897,0.0000026808, +0.0000026732,0.0000026688,0.0000026684,0.0000026723,0.0000026816, +0.0000026905,0.0000026946,0.0000026952,0.0000026973,0.0000027033, +0.0000027103,0.0000027157,0.0000027224,0.0000027265,0.0000027227, +0.0000027077,0.0000026889,0.0000026824,0.0000026834,0.0000026887, +0.0000026994,0.0000027070,0.0000027082,0.0000027086,0.0000027122, +0.0000027177,0.0000027205,0.0000027172,0.0000027087,0.0000026996, +0.0000026935,0.0000026913,0.0000026923,0.0000026958,0.0000026993, +0.0000027028,0.0000027080,0.0000027159,0.0000027267,0.0000027390, +0.0000027490,0.0000027537,0.0000027535,0.0000027501,0.0000027458, +0.0000027416,0.0000027350,0.0000027260,0.0000027186,0.0000027168, +0.0000027200,0.0000027240,0.0000027236,0.0000027171,0.0000027094, +0.0000026996,0.0000026828,0.0000026678,0.0000026614,0.0000026595, +0.0000026637,0.0000026850,0.0000027114,0.0000027235,0.0000027258, +0.0000027281,0.0000027274,0.0000027234,0.0000027216,0.0000027203, +0.0000027168,0.0000027143,0.0000027144,0.0000027142,0.0000027115, +0.0000027078,0.0000027059,0.0000027067,0.0000027102,0.0000027138, +0.0000027141,0.0000027101,0.0000027040,0.0000027000,0.0000026989, +0.0000026991,0.0000026979,0.0000026949,0.0000026907,0.0000026852, +0.0000026775,0.0000026703,0.0000026691,0.0000026803,0.0000027028, +0.0000027154,0.0000027100,0.0000027030,0.0000027122,0.0000027255, +0.0000027270,0.0000027204,0.0000027120,0.0000027117,0.0000027131, +0.0000027118,0.0000027138,0.0000027210,0.0000027289,0.0000027341, +0.0000027348,0.0000027295,0.0000027162,0.0000026932,0.0000026753, +0.0000026780,0.0000026938,0.0000027029,0.0000027044,0.0000027052, +0.0000027061,0.0000027086,0.0000027140,0.0000027199,0.0000027240, +0.0000027255,0.0000027249,0.0000027232,0.0000027220,0.0000027219, +0.0000027224,0.0000027242,0.0000027265,0.0000027295,0.0000027332, +0.0000027357,0.0000027352,0.0000027317,0.0000027261,0.0000027206, +0.0000027175,0.0000027161,0.0000027144,0.0000027104,0.0000027032, +0.0000026972,0.0000026991,0.0000027120,0.0000027269,0.0000027331, +0.0000027324,0.0000027293,0.0000027262,0.0000027231,0.0000027203, +0.0000027178,0.0000027148,0.0000027126,0.0000027130,0.0000027158, +0.0000027190,0.0000027204,0.0000027194,0.0000027166,0.0000027120, +0.0000027078,0.0000027030,0.0000026989,0.0000026966,0.0000026950, +0.0000026921,0.0000026872,0.0000026830,0.0000026820,0.0000026838, +0.0000026876,0.0000026926,0.0000026974,0.0000027011,0.0000027041, +0.0000027085,0.0000027145,0.0000027194,0.0000027205,0.0000027180, +0.0000027142,0.0000027131,0.0000027173,0.0000027258,0.0000027323, +0.0000027354,0.0000027410,0.0000027481,0.0000027503,0.0000027470, +0.0000027409,0.0000027372,0.0000027376,0.0000027412,0.0000027459, +0.0000027503,0.0000027555,0.0000027619,0.0000027717,0.0000027821, +0.0000027864,0.0000027835,0.0000027772,0.0000027719,0.0000027703, +0.0000027704,0.0000027710,0.0000027714,0.0000027712,0.0000027691, +0.0000027655,0.0000027606,0.0000027578,0.0000027606,0.0000027705, +0.0000027829,0.0000027939,0.0000028015,0.0000028054,0.0000028060, +0.0000028037,0.0000027991,0.0000027933,0.0000027888,0.0000027853, +0.0000027826,0.0000027805,0.0000027787,0.0000027778,0.0000027779, +0.0000027754,0.0000027802,0.0000027865,0.0000027934,0.0000027989, +0.0000028007,0.0000027992,0.0000027921,0.0000027799,0.0000027645, +0.0000027501,0.0000027396,0.0000027319,0.0000027262,0.0000027208, +0.0000027145,0.0000027108,0.0000027140,0.0000027263,0.0000027420, +0.0000027537,0.0000027598,0.0000027627,0.0000027655,0.0000027691, +0.0000027719,0.0000027714,0.0000027670,0.0000027611,0.0000027563, +0.0000027508,0.0000027446,0.0000027406,0.0000027420,0.0000027492, +0.0000027583,0.0000027648,0.0000027666,0.0000027648,0.0000027600, +0.0000027568,0.0000027601,0.0000027721,0.0000027851,0.0000027905, +0.0000027900,0.0000027840,0.0000027683,0.0000027437,0.0000027227, +0.0000027107,0.0000027089,0.0000027138,0.0000027189,0.0000027214, +0.0000027228,0.0000027228,0.0000027210,0.0000027175,0.0000027147, +0.0000027166,0.0000027239,0.0000027287,0.0000027290,0.0000027418, +0.0000027533,0.0000027451,0.0000027353,0.0000027231,0.0000027275, +0.0000027547,0.0000027771,0.0000027801,0.0000027738,0.0000027595, +0.0000027377,0.0000027136,0.0000027005,0.0000027046,0.0000027273, +0.0000027439,0.0000027433,0.0000027333,0.0000027258,0.0000027297, +0.0000027335,0.0000027270,0.0000027089,0.0000026907,0.0000026881, +0.0000026934,0.0000026987,0.0000027028,0.0000027052,0.0000027035, +0.0000026977,0.0000026947,0.0000026977,0.0000027094,0.0000027261, +0.0000027395,0.0000027432,0.0000027400,0.0000027323,0.0000027201, +0.0000027035,0.0000026844,0.0000026758,0.0000026803,0.0000026929, +0.0000027123,0.0000027343,0.0000027512,0.0000027592,0.0000027629, +0.0000027636,0.0000027626,0.0000027614,0.0000027607,0.0000027603, +0.0000027606,0.0000027604,0.0000027599,0.0000027580,0.0000027546, +0.0000027496,0.0000027416,0.0000027321,0.0000027230,0.0000027157, +0.0000027111,0.0000027093,0.0000027115,0.0000027131,0.0000027127, +0.0000027109,0.0000027091,0.0000027056,0.0000026994,0.0000026908, +0.0000026820,0.0000026732,0.0000026680,0.0000026674,0.0000026680, +0.0000026721,0.0000026795,0.0000026863,0.0000026901,0.0000026923, +0.0000026954,0.0000027042,0.0000027137,0.0000027190,0.0000027238, +0.0000027293,0.0000027305,0.0000027233,0.0000027041,0.0000026863, +0.0000026828,0.0000026861,0.0000026950,0.0000027049,0.0000027076, +0.0000027076,0.0000027107,0.0000027168,0.0000027214,0.0000027212, +0.0000027151,0.0000027049,0.0000026950,0.0000026878,0.0000026853, +0.0000026864,0.0000026899,0.0000026933,0.0000026975,0.0000027040, +0.0000027134,0.0000027256,0.0000027390,0.0000027497,0.0000027549, +0.0000027548,0.0000027518,0.0000027476,0.0000027442,0.0000027393, +0.0000027305,0.0000027205,0.0000027145,0.0000027151,0.0000027205, +0.0000027235,0.0000027203,0.0000027131,0.0000027064,0.0000026953, +0.0000026776,0.0000026653,0.0000026611,0.0000026616,0.0000026742, +0.0000026976,0.0000027151,0.0000027213,0.0000027239,0.0000027223, +0.0000027187,0.0000027189,0.0000027191,0.0000027172,0.0000027169, +0.0000027179,0.0000027175,0.0000027138,0.0000027084,0.0000027049, +0.0000027057,0.0000027104,0.0000027162,0.0000027203,0.0000027202, +0.0000027150,0.0000027065,0.0000026992,0.0000026954,0.0000026944, +0.0000026936,0.0000026920,0.0000026895,0.0000026853,0.0000026771, +0.0000026691,0.0000026695,0.0000026870,0.0000027100,0.0000027167, +0.0000027086,0.0000027038,0.0000027136,0.0000027244,0.0000027239, +0.0000027132,0.0000027073,0.0000027100,0.0000027127,0.0000027134, +0.0000027178,0.0000027256,0.0000027320,0.0000027345,0.0000027331, +0.0000027258,0.0000027122,0.0000026926,0.0000026803,0.0000026858, +0.0000027001,0.0000027070,0.0000027082,0.0000027087,0.0000027101, +0.0000027141,0.0000027198,0.0000027248,0.0000027272,0.0000027269, +0.0000027237,0.0000027196,0.0000027181,0.0000027190,0.0000027218, +0.0000027252,0.0000027295,0.0000027349,0.0000027392,0.0000027408, +0.0000027401,0.0000027378,0.0000027336,0.0000027285,0.0000027234, +0.0000027203,0.0000027181,0.0000027153,0.0000027102,0.0000027051, +0.0000027063,0.0000027178,0.0000027329,0.0000027410,0.0000027416, +0.0000027391,0.0000027362,0.0000027335,0.0000027314,0.0000027298, +0.0000027280,0.0000027268,0.0000027282,0.0000027325,0.0000027379, +0.0000027420,0.0000027427,0.0000027409,0.0000027372,0.0000027324, +0.0000027267,0.0000027204,0.0000027149,0.0000027098,0.0000027038, +0.0000026962,0.0000026886,0.0000026853,0.0000026865,0.0000026928, +0.0000027014,0.0000027097,0.0000027156,0.0000027187,0.0000027209, +0.0000027242,0.0000027278,0.0000027291,0.0000027266,0.0000027223, +0.0000027212,0.0000027254,0.0000027312,0.0000027347,0.0000027381, +0.0000027455,0.0000027532,0.0000027551,0.0000027526,0.0000027476, +0.0000027419,0.0000027383,0.0000027391,0.0000027430,0.0000027469, +0.0000027516,0.0000027601,0.0000027730,0.0000027843,0.0000027873, +0.0000027834,0.0000027761,0.0000027737,0.0000027741,0.0000027746, +0.0000027731,0.0000027708,0.0000027689,0.0000027675,0.0000027665, +0.0000027670,0.0000027718,0.0000027795,0.0000027866,0.0000027914, +0.0000027962,0.0000028016,0.0000028048,0.0000028047,0.0000028001, +0.0000027926,0.0000027849,0.0000027787,0.0000027749,0.0000027725, +0.0000027707,0.0000027700,0.0000027698,0.0000027705,0.0000027723, +0.0000027719,0.0000027787,0.0000027873,0.0000027958,0.0000028016, +0.0000028030,0.0000027996,0.0000027919,0.0000027807,0.0000027675, +0.0000027537,0.0000027412,0.0000027316,0.0000027249,0.0000027189, +0.0000027108,0.0000027028,0.0000027040,0.0000027191,0.0000027395, +0.0000027536,0.0000027605,0.0000027647,0.0000027681,0.0000027712, +0.0000027743,0.0000027758,0.0000027739,0.0000027681,0.0000027612, +0.0000027537,0.0000027466,0.0000027425,0.0000027433,0.0000027495, +0.0000027591,0.0000027679,0.0000027742,0.0000027762,0.0000027741, +0.0000027695,0.0000027688,0.0000027748,0.0000027847,0.0000027909, +0.0000027916,0.0000027863,0.0000027729,0.0000027516,0.0000027320, +0.0000027194,0.0000027133,0.0000027139,0.0000027190,0.0000027232, +0.0000027236,0.0000027225,0.0000027198,0.0000027162,0.0000027127, +0.0000027122,0.0000027198,0.0000027285,0.0000027294,0.0000027337, +0.0000027493,0.0000027483,0.0000027395,0.0000027277,0.0000027194, +0.0000027371,0.0000027671,0.0000027793,0.0000027778,0.0000027661, +0.0000027487,0.0000027272,0.0000027092,0.0000027051,0.0000027198, +0.0000027395,0.0000027441,0.0000027385,0.0000027274,0.0000027267, +0.0000027318,0.0000027299,0.0000027173,0.0000026967,0.0000026864, +0.0000026878,0.0000026933,0.0000026994,0.0000027057,0.0000027085, +0.0000027066,0.0000027024,0.0000027001,0.0000027054,0.0000027205, +0.0000027348,0.0000027422,0.0000027441,0.0000027392,0.0000027306, +0.0000027177,0.0000026977,0.0000026774,0.0000026738,0.0000026859, +0.0000027069,0.0000027310,0.0000027508,0.0000027619,0.0000027650, +0.0000027657,0.0000027649,0.0000027632,0.0000027629,0.0000027649, +0.0000027685,0.0000027726,0.0000027749,0.0000027759,0.0000027746, +0.0000027714,0.0000027656,0.0000027570,0.0000027453,0.0000027325, +0.0000027214,0.0000027133,0.0000027084,0.0000027078,0.0000027082, +0.0000027072,0.0000027049,0.0000027031,0.0000027000,0.0000026936, +0.0000026855,0.0000026773,0.0000026698,0.0000026665,0.0000026673, +0.0000026696,0.0000026729,0.0000026786,0.0000026835,0.0000026866, +0.0000026903,0.0000026955,0.0000027056,0.0000027168,0.0000027234, +0.0000027270,0.0000027313,0.0000027341,0.0000027322,0.0000027191, +0.0000026971,0.0000026846,0.0000026845,0.0000026915,0.0000027019, +0.0000027073,0.0000027067,0.0000027081,0.0000027141,0.0000027206, +0.0000027225,0.0000027192,0.0000027100,0.0000026982,0.0000026877, +0.0000026814,0.0000026804,0.0000026832,0.0000026865,0.0000026898, +0.0000026943,0.0000027010,0.0000027106,0.0000027233,0.0000027376, +0.0000027498,0.0000027559,0.0000027563,0.0000027534,0.0000027488, +0.0000027455,0.0000027425,0.0000027351,0.0000027238,0.0000027141, +0.0000027114,0.0000027148,0.0000027201,0.0000027210,0.0000027170, +0.0000027106,0.0000027039,0.0000026899,0.0000026725,0.0000026636, +0.0000026624,0.0000026680,0.0000026846,0.0000027032,0.0000027137, +0.0000027189,0.0000027176,0.0000027136,0.0000027149,0.0000027173, +0.0000027177,0.0000027197,0.0000027210,0.0000027189,0.0000027141, +0.0000027083,0.0000027040,0.0000027040,0.0000027082,0.0000027146, +0.0000027206,0.0000027237,0.0000027226,0.0000027164,0.0000027071, +0.0000026978,0.0000026909,0.0000026885,0.0000026888,0.0000026890, +0.0000026876,0.0000026827,0.0000026744,0.0000026677,0.0000026729, +0.0000026943,0.0000027146,0.0000027173,0.0000027065,0.0000027040, +0.0000027133,0.0000027223,0.0000027187,0.0000027060,0.0000027032, +0.0000027095,0.0000027146,0.0000027167,0.0000027222,0.0000027299, +0.0000027341,0.0000027339,0.0000027295,0.0000027203,0.0000027082, +0.0000026938,0.0000026858,0.0000026908,0.0000027030,0.0000027113, +0.0000027137,0.0000027139,0.0000027155,0.0000027196,0.0000027237, +0.0000027266,0.0000027283,0.0000027282,0.0000027247,0.0000027185, +0.0000027139,0.0000027140,0.0000027181,0.0000027240,0.0000027318, +0.0000027404,0.0000027454,0.0000027457,0.0000027448,0.0000027441, +0.0000027412,0.0000027355,0.0000027284,0.0000027233,0.0000027220, +0.0000027213,0.0000027183,0.0000027150,0.0000027164,0.0000027264, +0.0000027402,0.0000027487,0.0000027500,0.0000027485,0.0000027454, +0.0000027430,0.0000027425,0.0000027432,0.0000027438,0.0000027445, +0.0000027473,0.0000027527,0.0000027592,0.0000027644,0.0000027665, +0.0000027659,0.0000027634,0.0000027599,0.0000027565,0.0000027523, +0.0000027475,0.0000027410,0.0000027312,0.0000027187,0.0000027059, +0.0000026968,0.0000026937,0.0000026971,0.0000027057,0.0000027150, +0.0000027224,0.0000027268,0.0000027291,0.0000027308,0.0000027331, +0.0000027347,0.0000027345,0.0000027331,0.0000027332,0.0000027352, +0.0000027365,0.0000027375,0.0000027419,0.0000027498,0.0000027560, +0.0000027575,0.0000027566,0.0000027539,0.0000027493,0.0000027430, +0.0000027388,0.0000027403,0.0000027451,0.0000027515,0.0000027607, +0.0000027730,0.0000027828,0.0000027849,0.0000027804,0.0000027760, +0.0000027767,0.0000027794,0.0000027792,0.0000027752,0.0000027716, +0.0000027698,0.0000027691,0.0000027701,0.0000027757,0.0000027843, +0.0000027915,0.0000027948,0.0000027964,0.0000027988,0.0000028021, +0.0000028039,0.0000028021,0.0000027952,0.0000027864,0.0000027796, +0.0000027758,0.0000027735,0.0000027715,0.0000027693,0.0000027669, +0.0000027652,0.0000027642,0.0000027646,0.0000027673,0.0000027707, +0.0000027784,0.0000027872,0.0000027950,0.0000027996,0.0000028002, +0.0000027963,0.0000027886,0.0000027792,0.0000027692,0.0000027582, +0.0000027466,0.0000027355,0.0000027263,0.0000027185,0.0000027079, +0.0000026962,0.0000026946,0.0000027099,0.0000027335,0.0000027502, +0.0000027587,0.0000027640,0.0000027679,0.0000027703,0.0000027730, +0.0000027765,0.0000027783,0.0000027767,0.0000027716,0.0000027645, +0.0000027567,0.0000027510,0.0000027499,0.0000027533,0.0000027598, +0.0000027670,0.0000027740,0.0000027805,0.0000027842,0.0000027832, +0.0000027798,0.0000027793,0.0000027836,0.0000027893,0.0000027920, +0.0000027891,0.0000027784,0.0000027599,0.0000027407,0.0000027285, +0.0000027221,0.0000027192,0.0000027196,0.0000027231,0.0000027259, +0.0000027254,0.0000027217,0.0000027162,0.0000027112,0.0000027090, +0.0000027141,0.0000027257,0.0000027305,0.0000027301,0.0000027421, +0.0000027494,0.0000027409,0.0000027336,0.0000027189,0.0000027219, +0.0000027518,0.0000027751,0.0000027785,0.0000027698,0.0000027543, +0.0000027377,0.0000027212,0.0000027117,0.0000027170,0.0000027350, +0.0000027437,0.0000027413,0.0000027315,0.0000027257,0.0000027301, +0.0000027308,0.0000027225,0.0000027053,0.0000026875,0.0000026847, +0.0000026867,0.0000026912,0.0000026990,0.0000027071,0.0000027097, +0.0000027093,0.0000027083,0.0000027097,0.0000027207,0.0000027341, +0.0000027400,0.0000027412,0.0000027411,0.0000027362,0.0000027281, +0.0000027141,0.0000026925,0.0000026745,0.0000026758,0.0000026959, +0.0000027234,0.0000027446,0.0000027569,0.0000027637,0.0000027676, +0.0000027689,0.0000027681,0.0000027670,0.0000027691,0.0000027754, +0.0000027836,0.0000027895,0.0000027913,0.0000027902,0.0000027868, +0.0000027829,0.0000027771,0.0000027688,0.0000027577,0.0000027447, +0.0000027315,0.0000027205,0.0000027126,0.0000027079,0.0000027063, +0.0000027045,0.0000027009,0.0000026985,0.0000026961,0.0000026911, +0.0000026849,0.0000026782,0.0000026717,0.0000026684,0.0000026692, +0.0000026716,0.0000026744,0.0000026788,0.0000026826,0.0000026854, +0.0000026896,0.0000026970,0.0000027084,0.0000027200,0.0000027276, +0.0000027314,0.0000027342,0.0000027365,0.0000027361,0.0000027293, +0.0000027104,0.0000026901,0.0000026849,0.0000026886,0.0000026983, +0.0000027056,0.0000027061,0.0000027056,0.0000027097,0.0000027168, +0.0000027214,0.0000027208,0.0000027133,0.0000027015,0.0000026895, +0.0000026814,0.0000026792,0.0000026809,0.0000026852,0.0000026886, +0.0000026915,0.0000026958,0.0000027016,0.0000027103,0.0000027211, +0.0000027342,0.0000027470,0.0000027552,0.0000027569,0.0000027547, +0.0000027499,0.0000027461,0.0000027441,0.0000027388,0.0000027280, +0.0000027160,0.0000027092,0.0000027092,0.0000027146,0.0000027192, +0.0000027195,0.0000027151,0.0000027087,0.0000027003,0.0000026840, +0.0000026686,0.0000026638,0.0000026653,0.0000026750,0.0000026905, +0.0000027031,0.0000027120,0.0000027138,0.0000027088,0.0000027089, +0.0000027135,0.0000027170,0.0000027210,0.0000027225,0.0000027199, +0.0000027154,0.0000027106,0.0000027060,0.0000027050,0.0000027078, +0.0000027134,0.0000027205,0.0000027259,0.0000027272,0.0000027237, +0.0000027156,0.0000027054,0.0000026951,0.0000026868,0.0000026831, +0.0000026839,0.0000026845,0.0000026826,0.0000026772,0.0000026695, +0.0000026668,0.0000026771,0.0000027003,0.0000027162,0.0000027145, +0.0000027039,0.0000027024,0.0000027112,0.0000027191,0.0000027128, +0.0000027008,0.0000027011,0.0000027113,0.0000027178,0.0000027210, +0.0000027266,0.0000027336,0.0000027356,0.0000027329,0.0000027255, +0.0000027156,0.0000027053,0.0000026959,0.0000026907,0.0000026931, +0.0000027013,0.0000027098,0.0000027142,0.0000027150,0.0000027167, +0.0000027189,0.0000027197,0.0000027202,0.0000027217,0.0000027242, +0.0000027247,0.0000027204,0.0000027136,0.0000027106,0.0000027131, +0.0000027211,0.0000027332,0.0000027452,0.0000027509,0.0000027503, +0.0000027492,0.0000027493,0.0000027471,0.0000027407,0.0000027326, +0.0000027274,0.0000027265,0.0000027273,0.0000027261,0.0000027244, +0.0000027262,0.0000027341,0.0000027453,0.0000027534,0.0000027555, +0.0000027543,0.0000027508,0.0000027477,0.0000027471,0.0000027487, +0.0000027503,0.0000027521,0.0000027552,0.0000027597,0.0000027645, +0.0000027682,0.0000027696,0.0000027689,0.0000027668,0.0000027643, +0.0000027616,0.0000027597,0.0000027589,0.0000027581,0.0000027546, +0.0000027467,0.0000027351,0.0000027224,0.0000027135,0.0000027115, +0.0000027158,0.0000027233,0.0000027308,0.0000027357,0.0000027380, +0.0000027401,0.0000027423,0.0000027444,0.0000027453,0.0000027451, +0.0000027444,0.0000027435,0.0000027425,0.0000027430,0.0000027474, +0.0000027538,0.0000027579,0.0000027590,0.0000027589,0.0000027579, +0.0000027549,0.0000027503,0.0000027460,0.0000027452,0.0000027496, +0.0000027573,0.0000027654,0.0000027731,0.0000027782,0.0000027788, +0.0000027754,0.0000027746,0.0000027792,0.0000027833,0.0000027825, +0.0000027794,0.0000027769,0.0000027750,0.0000027740,0.0000027757, +0.0000027814,0.0000027888,0.0000027943,0.0000027979,0.0000028011, +0.0000028033,0.0000028038,0.0000028024,0.0000027983,0.0000027913, +0.0000027836,0.0000027777,0.0000027744,0.0000027730,0.0000027719, +0.0000027702,0.0000027681,0.0000027665,0.0000027654,0.0000027645, +0.0000027642,0.0000027658,0.0000027749,0.0000027811,0.0000027870, +0.0000027914,0.0000027933,0.0000027928,0.0000027898,0.0000027843, +0.0000027780,0.0000027717,0.0000027652,0.0000027562,0.0000027439, +0.0000027311,0.0000027200,0.0000027069,0.0000026922,0.0000026877, +0.0000027013,0.0000027254,0.0000027439,0.0000027536,0.0000027597, +0.0000027642,0.0000027665,0.0000027692,0.0000027747,0.0000027804, +0.0000027827,0.0000027820,0.0000027781,0.0000027723,0.0000027669, +0.0000027648,0.0000027658,0.0000027698,0.0000027742,0.0000027776, +0.0000027808,0.0000027850,0.0000027884,0.0000027884,0.0000027855, +0.0000027840,0.0000027865,0.0000027897,0.0000027904,0.0000027840, +0.0000027698,0.0000027517,0.0000027377,0.0000027311,0.0000027281, +0.0000027261,0.0000027257,0.0000027269,0.0000027272,0.0000027250, +0.0000027192,0.0000027122,0.0000027080,0.0000027099,0.0000027208, +0.0000027301,0.0000027294,0.0000027351,0.0000027476,0.0000027423, +0.0000027356,0.0000027242,0.0000027147,0.0000027335,0.0000027650, +0.0000027761,0.0000027715,0.0000027565,0.0000027425,0.0000027310, +0.0000027205,0.0000027205,0.0000027326,0.0000027435,0.0000027425, +0.0000027344,0.0000027274,0.0000027286,0.0000027310,0.0000027252, +0.0000027118,0.0000026931,0.0000026822,0.0000026820,0.0000026833, +0.0000026881,0.0000026975,0.0000027050,0.0000027092,0.0000027122, +0.0000027146,0.0000027226,0.0000027373,0.0000027440,0.0000027428, +0.0000027395,0.0000027358,0.0000027320,0.0000027261,0.0000027106, +0.0000026887,0.0000026755,0.0000026816,0.0000027077,0.0000027356, +0.0000027506,0.0000027569,0.0000027629,0.0000027686,0.0000027713, +0.0000027725,0.0000027749,0.0000027806,0.0000027889,0.0000027962, +0.0000027996,0.0000027992,0.0000027962,0.0000027914,0.0000027857, +0.0000027797,0.0000027719,0.0000027625,0.0000027520,0.0000027404, +0.0000027297,0.0000027213,0.0000027143,0.0000027095,0.0000027067, +0.0000027021,0.0000026983,0.0000026962,0.0000026924,0.0000026877, +0.0000026823,0.0000026768,0.0000026728,0.0000026726,0.0000026744, +0.0000026767,0.0000026803,0.0000026838,0.0000026868,0.0000026917, +0.0000026998,0.0000027112,0.0000027227,0.0000027308,0.0000027355, +0.0000027379,0.0000027389,0.0000027381,0.0000027345,0.0000027214, +0.0000026998,0.0000026872,0.0000026870,0.0000026948,0.0000027033, +0.0000027051,0.0000027041,0.0000027056,0.0000027113,0.0000027178, +0.0000027193,0.0000027146,0.0000027038,0.0000026923,0.0000026849, +0.0000026811,0.0000026820,0.0000026863,0.0000026912,0.0000026945, +0.0000026974,0.0000027015,0.0000027069,0.0000027138,0.0000027220, +0.0000027315,0.0000027419,0.0000027508,0.0000027549,0.0000027545, +0.0000027501,0.0000027463,0.0000027447,0.0000027412,0.0000027320, +0.0000027193,0.0000027091,0.0000027059,0.0000027090,0.0000027150, +0.0000027191,0.0000027191,0.0000027138,0.0000027062,0.0000026955, +0.0000026785,0.0000026657,0.0000026633,0.0000026691,0.0000026800, +0.0000026915,0.0000027027,0.0000027099,0.0000027064,0.0000027032, +0.0000027069,0.0000027132,0.0000027195,0.0000027221,0.0000027207, +0.0000027175,0.0000027144,0.0000027099,0.0000027074,0.0000027084, +0.0000027129,0.0000027201,0.0000027275,0.0000027313,0.0000027309, +0.0000027249,0.0000027137,0.0000027018,0.0000026918,0.0000026835, +0.0000026780,0.0000026774,0.0000026776,0.0000026747,0.0000026691, +0.0000026635,0.0000026650,0.0000026820,0.0000027043,0.0000027152, +0.0000027105,0.0000027006,0.0000026996,0.0000027077,0.0000027151, +0.0000027079,0.0000026969,0.0000027007,0.0000027134,0.0000027214, +0.0000027255,0.0000027306,0.0000027369,0.0000027379,0.0000027323, +0.0000027232,0.0000027131,0.0000027043,0.0000026978,0.0000026943, +0.0000026945,0.0000026978,0.0000027025,0.0000027060,0.0000027084, +0.0000027108,0.0000027129,0.0000027137,0.0000027132,0.0000027134, +0.0000027171,0.0000027224,0.0000027234,0.0000027171,0.0000027091, +0.0000027082,0.0000027172,0.0000027340,0.0000027493,0.0000027554, +0.0000027542,0.0000027525,0.0000027525,0.0000027502,0.0000027440, +0.0000027371,0.0000027328,0.0000027320,0.0000027319,0.0000027316, +0.0000027313,0.0000027331,0.0000027381,0.0000027463,0.0000027539, +0.0000027566,0.0000027560,0.0000027535,0.0000027503,0.0000027487, +0.0000027494,0.0000027507,0.0000027524,0.0000027555,0.0000027597, +0.0000027639,0.0000027668,0.0000027677,0.0000027665,0.0000027641, +0.0000027611,0.0000027580,0.0000027556,0.0000027553,0.0000027564, +0.0000027561,0.0000027521,0.0000027470,0.0000027418,0.0000027378, +0.0000027371,0.0000027385,0.0000027421,0.0000027472,0.0000027514, +0.0000027534,0.0000027538,0.0000027550,0.0000027564,0.0000027565, +0.0000027552,0.0000027536,0.0000027525,0.0000027523,0.0000027526, +0.0000027539,0.0000027563,0.0000027590,0.0000027605,0.0000027611, +0.0000027617,0.0000027620,0.0000027620,0.0000027620,0.0000027622, +0.0000027638,0.0000027674,0.0000027714,0.0000027736,0.0000027741, +0.0000027718,0.0000027696,0.0000027719,0.0000027792,0.0000027839, +0.0000027836,0.0000027833,0.0000027840,0.0000027822,0.0000027792, +0.0000027793,0.0000027826,0.0000027870,0.0000027923,0.0000027991, +0.0000028054,0.0000028086,0.0000028074,0.0000028022,0.0000027955, +0.0000027900,0.0000027862,0.0000027829,0.0000027798,0.0000027772, +0.0000027751,0.0000027730,0.0000027710,0.0000027696,0.0000027694, +0.0000027694,0.0000027690,0.0000027688,0.0000027703,0.0000027820, +0.0000027863,0.0000027881,0.0000027879,0.0000027875,0.0000027868, +0.0000027857,0.0000027837,0.0000027809,0.0000027781,0.0000027747, +0.0000027673,0.0000027536,0.0000027376,0.0000027240,0.0000027093, +0.0000026912,0.0000026838,0.0000026946,0.0000027183,0.0000027370, +0.0000027466,0.0000027520,0.0000027562,0.0000027593,0.0000027628, +0.0000027689,0.0000027765,0.0000027817,0.0000027840,0.0000027833, +0.0000027808,0.0000027775,0.0000027758,0.0000027763,0.0000027796, +0.0000027847,0.0000027891,0.0000027901,0.0000027890,0.0000027885, +0.0000027893,0.0000027890,0.0000027860,0.0000027847,0.0000027867, +0.0000027889,0.0000027871,0.0000027787,0.0000027647,0.0000027498, +0.0000027401,0.0000027359,0.0000027340,0.0000027323,0.0000027313, +0.0000027307,0.0000027288,0.0000027241,0.0000027161,0.0000027094, +0.0000027083,0.0000027165,0.0000027280,0.0000027298,0.0000027305, +0.0000027442,0.0000027452,0.0000027352,0.0000027289,0.0000027140, +0.0000027180,0.0000027495,0.0000027705,0.0000027707,0.0000027576, +0.0000027432,0.0000027358,0.0000027290,0.0000027264,0.0000027340, +0.0000027430,0.0000027439,0.0000027364,0.0000027285,0.0000027282, +0.0000027305,0.0000027271,0.0000027161,0.0000026989,0.0000026830, +0.0000026783,0.0000026779,0.0000026790,0.0000026847,0.0000026943, +0.0000027017,0.0000027088,0.0000027161,0.0000027243,0.0000027368, +0.0000027475,0.0000027471,0.0000027440,0.0000027391,0.0000027322, +0.0000027283,0.0000027228,0.0000027071,0.0000026864,0.0000026781, +0.0000026891,0.0000027173,0.0000027403,0.0000027503,0.0000027558, +0.0000027611,0.0000027673,0.0000027716,0.0000027759,0.0000027830, +0.0000027915,0.0000027988,0.0000028031,0.0000028053,0.0000028045, +0.0000028008,0.0000027960,0.0000027893,0.0000027815,0.0000027726, +0.0000027638,0.0000027546,0.0000027456,0.0000027375,0.0000027313, +0.0000027257,0.0000027198,0.0000027157,0.0000027106,0.0000027048, +0.0000027010,0.0000026983,0.0000026937,0.0000026881,0.0000026826, +0.0000026781,0.0000026768,0.0000026779,0.0000026801,0.0000026832, +0.0000026866,0.0000026902,0.0000026957,0.0000027035,0.0000027134, +0.0000027239,0.0000027322,0.0000027380,0.0000027410,0.0000027414, +0.0000027394,0.0000027364,0.0000027283,0.0000027102,0.0000026923, +0.0000026885,0.0000026928,0.0000027014,0.0000027047,0.0000027029, +0.0000027028,0.0000027060,0.0000027118,0.0000027158,0.0000027137, +0.0000027051,0.0000026951,0.0000026886,0.0000026861,0.0000026861, +0.0000026885,0.0000026933,0.0000026979,0.0000027011,0.0000027045, +0.0000027094,0.0000027152,0.0000027214,0.0000027272,0.0000027326, +0.0000027383,0.0000027443,0.0000027492,0.0000027505,0.0000027485, +0.0000027460,0.0000027451,0.0000027429,0.0000027355,0.0000027235, +0.0000027118,0.0000027058,0.0000027055,0.0000027096,0.0000027153, +0.0000027193,0.0000027187,0.0000027111,0.0000027016,0.0000026898, +0.0000026737,0.0000026636,0.0000026648,0.0000026720,0.0000026807, +0.0000026908,0.0000027027,0.0000027052,0.0000027008,0.0000027004, +0.0000027054,0.0000027128,0.0000027183,0.0000027188,0.0000027177, +0.0000027164,0.0000027128,0.0000027096,0.0000027093,0.0000027124, +0.0000027181,0.0000027252,0.0000027310,0.0000027334,0.0000027323, +0.0000027246,0.0000027108,0.0000026972,0.0000026883,0.0000026806, +0.0000026730,0.0000026700,0.0000026689,0.0000026659,0.0000026610, +0.0000026588,0.0000026663,0.0000026874,0.0000027066,0.0000027124, +0.0000027062,0.0000026969,0.0000026959,0.0000027035,0.0000027119, +0.0000027041,0.0000026939,0.0000027013,0.0000027151,0.0000027241, +0.0000027297,0.0000027346,0.0000027397,0.0000027397,0.0000027330, +0.0000027233,0.0000027136,0.0000027055,0.0000027001,0.0000026970, +0.0000026958,0.0000026965,0.0000026973,0.0000026982,0.0000026995, +0.0000027014,0.0000027034,0.0000027049,0.0000027063,0.0000027080, +0.0000027128,0.0000027212,0.0000027261,0.0000027219,0.0000027097, +0.0000027049,0.0000027135,0.0000027344,0.0000027526,0.0000027586, +0.0000027570,0.0000027544,0.0000027537,0.0000027512,0.0000027464, +0.0000027416,0.0000027388,0.0000027375,0.0000027361,0.0000027347, +0.0000027349,0.0000027361,0.0000027387,0.0000027442,0.0000027508, +0.0000027548,0.0000027563,0.0000027565,0.0000027550,0.0000027528, +0.0000027525,0.0000027536,0.0000027553,0.0000027586,0.0000027626, +0.0000027657,0.0000027676,0.0000027683,0.0000027671,0.0000027643, +0.0000027605,0.0000027554,0.0000027509,0.0000027494,0.0000027507, +0.0000027510,0.0000027483,0.0000027442,0.0000027420,0.0000027440, +0.0000027509,0.0000027584,0.0000027652,0.0000027716,0.0000027762, +0.0000027782,0.0000027777,0.0000027757,0.0000027745,0.0000027729, +0.0000027702,0.0000027672,0.0000027657,0.0000027648,0.0000027631, +0.0000027604,0.0000027588,0.0000027594,0.0000027620,0.0000027650, +0.0000027690,0.0000027743,0.0000027786,0.0000027808,0.0000027808, +0.0000027792,0.0000027775,0.0000027759,0.0000027735,0.0000027701, +0.0000027658,0.0000027642,0.0000027692,0.0000027778,0.0000027821, +0.0000027826,0.0000027855,0.0000027888,0.0000027881,0.0000027843, +0.0000027811,0.0000027808,0.0000027829,0.0000027887,0.0000027988, +0.0000028096,0.0000028153,0.0000028145,0.0000028086,0.0000028003, +0.0000027939,0.0000027906,0.0000027888,0.0000027868,0.0000027840, +0.0000027808,0.0000027781,0.0000027767,0.0000027770,0.0000027780, +0.0000027781,0.0000027769,0.0000027752,0.0000027748,0.0000027771, +0.0000027897,0.0000027914,0.0000027903,0.0000027880,0.0000027863, +0.0000027857,0.0000027861,0.0000027868,0.0000027870,0.0000027865, +0.0000027836,0.0000027759,0.0000027614,0.0000027438,0.0000027294, +0.0000027148,0.0000026952,0.0000026842,0.0000026909,0.0000027131, +0.0000027313,0.0000027399,0.0000027434,0.0000027458,0.0000027484, +0.0000027526,0.0000027586,0.0000027652,0.0000027715,0.0000027773, +0.0000027805,0.0000027813,0.0000027799,0.0000027785,0.0000027792, +0.0000027829,0.0000027875,0.0000027932,0.0000027981,0.0000027993, +0.0000027969,0.0000027929,0.0000027899,0.0000027867,0.0000027829, +0.0000027815,0.0000027831,0.0000027842,0.0000027814,0.0000027734, +0.0000027617,0.0000027504,0.0000027426,0.0000027392,0.0000027380, +0.0000027370,0.0000027363,0.0000027348,0.0000027306,0.0000027221, +0.0000027131,0.0000027093,0.0000027145,0.0000027255,0.0000027295, +0.0000027276,0.0000027387,0.0000027475,0.0000027368,0.0000027303, +0.0000027186,0.0000027107,0.0000027312,0.0000027601,0.0000027667, +0.0000027577,0.0000027427,0.0000027361,0.0000027338,0.0000027321, +0.0000027375,0.0000027444,0.0000027448,0.0000027388,0.0000027305, +0.0000027287,0.0000027302,0.0000027284,0.0000027197,0.0000027038, +0.0000026861,0.0000026755,0.0000026737,0.0000026736,0.0000026760, +0.0000026822,0.0000026915,0.0000027004,0.0000027104,0.0000027233, +0.0000027361,0.0000027463,0.0000027492,0.0000027468,0.0000027448, +0.0000027405,0.0000027327,0.0000027271,0.0000027188,0.0000027032, +0.0000026857,0.0000026820,0.0000026965,0.0000027220,0.0000027395, +0.0000027481,0.0000027538,0.0000027581,0.0000027627,0.0000027679, +0.0000027762,0.0000027874,0.0000027975,0.0000028045,0.0000028088, +0.0000028115,0.0000028113,0.0000028076,0.0000028030,0.0000027962, +0.0000027870,0.0000027770,0.0000027672,0.0000027579,0.0000027500, +0.0000027435,0.0000027391,0.0000027360,0.0000027314,0.0000027272, +0.0000027225,0.0000027162,0.0000027111,0.0000027079,0.0000027030, +0.0000026957,0.0000026888,0.0000026838,0.0000026817,0.0000026825, +0.0000026846,0.0000026873,0.0000026909,0.0000026953,0.0000027008, +0.0000027079,0.0000027159,0.0000027244,0.0000027324,0.0000027387, +0.0000027428,0.0000027432,0.0000027407,0.0000027367,0.0000027313, +0.0000027184,0.0000026993,0.0000026898,0.0000026928,0.0000027005, +0.0000027051,0.0000027038,0.0000027010,0.0000027022,0.0000027060, +0.0000027101,0.0000027110,0.0000027059,0.0000026975,0.0000026917, +0.0000026902,0.0000026908,0.0000026923,0.0000026957,0.0000027006, +0.0000027047,0.0000027079,0.0000027121,0.0000027177,0.0000027240, +0.0000027300,0.0000027341,0.0000027365,0.0000027379,0.0000027394, +0.0000027414,0.0000027427,0.0000027433,0.0000027442,0.0000027453, +0.0000027445,0.0000027385,0.0000027279,0.0000027163,0.0000027078, +0.0000027046,0.0000027052,0.0000027094,0.0000027148,0.0000027185, +0.0000027161,0.0000027066,0.0000026960,0.0000026844,0.0000026702, +0.0000026630,0.0000026656,0.0000026721,0.0000026786,0.0000026907, +0.0000027022,0.0000027027,0.0000026986,0.0000026979,0.0000027016, +0.0000027081,0.0000027118,0.0000027125,0.0000027130,0.0000027122, +0.0000027105,0.0000027106,0.0000027132,0.0000027172,0.0000027219, +0.0000027266,0.0000027299,0.0000027313,0.0000027299,0.0000027232, +0.0000027083,0.0000026930,0.0000026851,0.0000026784,0.0000026696, +0.0000026633,0.0000026607,0.0000026585,0.0000026555,0.0000026571, +0.0000026714,0.0000026924,0.0000027074,0.0000027098,0.0000027015, +0.0000026935,0.0000026926,0.0000026994,0.0000027091,0.0000027015, +0.0000026938,0.0000027018,0.0000027155,0.0000027263,0.0000027344, +0.0000027394,0.0000027422,0.0000027411,0.0000027348,0.0000027258, +0.0000027167,0.0000027091,0.0000027039,0.0000027010,0.0000026993, +0.0000026985,0.0000026978,0.0000026979,0.0000026992,0.0000027014, +0.0000027033,0.0000027046,0.0000027057,0.0000027076,0.0000027121, +0.0000027212,0.0000027296,0.0000027258,0.0000027110,0.0000027033, +0.0000027109,0.0000027355,0.0000027553,0.0000027605,0.0000027590, +0.0000027557,0.0000027543,0.0000027523,0.0000027494,0.0000027466, +0.0000027446,0.0000027428,0.0000027405,0.0000027380,0.0000027363, +0.0000027364,0.0000027368,0.0000027392,0.0000027445,0.0000027507, +0.0000027565,0.0000027609,0.0000027616,0.0000027589,0.0000027560, +0.0000027554,0.0000027567,0.0000027598,0.0000027642,0.0000027678, +0.0000027703,0.0000027716,0.0000027709,0.0000027684,0.0000027643, +0.0000027583,0.0000027521,0.0000027480,0.0000027469,0.0000027472, +0.0000027454,0.0000027420,0.0000027400,0.0000027415,0.0000027499, +0.0000027607,0.0000027717,0.0000027826,0.0000027918,0.0000027973, +0.0000027989,0.0000027977,0.0000027939,0.0000027902,0.0000027864, +0.0000027823,0.0000027785,0.0000027753,0.0000027710,0.0000027655, +0.0000027613,0.0000027606,0.0000027647,0.0000027728,0.0000027818, +0.0000027887,0.0000027925,0.0000027933,0.0000027918,0.0000027885, +0.0000027835,0.0000027775,0.0000027723,0.0000027663,0.0000027622, +0.0000027620,0.0000027680,0.0000027766,0.0000027794,0.0000027802, +0.0000027857,0.0000027909,0.0000027910,0.0000027878,0.0000027833, +0.0000027786,0.0000027784,0.0000027852,0.0000027982,0.0000028128, +0.0000028225,0.0000028232,0.0000028161,0.0000028059,0.0000027964, +0.0000027901,0.0000027869,0.0000027854,0.0000027849,0.0000027845, +0.0000027835,0.0000027826,0.0000027836,0.0000027866,0.0000027892, +0.0000027886,0.0000027857,0.0000027829,0.0000027828,0.0000027858, +0.0000027957,0.0000027951,0.0000027934,0.0000027918,0.0000027909, +0.0000027907,0.0000027913,0.0000027924,0.0000027927,0.0000027918, +0.0000027882,0.0000027804,0.0000027666,0.0000027494,0.0000027355, +0.0000027228,0.0000027055,0.0000026919,0.0000026947,0.0000027116, +0.0000027281,0.0000027359,0.0000027384,0.0000027388,0.0000027395, +0.0000027420,0.0000027466,0.0000027515,0.0000027566,0.0000027628, +0.0000027689,0.0000027733,0.0000027753,0.0000027758,0.0000027770, +0.0000027810,0.0000027863,0.0000027915,0.0000027972,0.0000028019, +0.0000028034,0.0000028021,0.0000027979,0.0000027913,0.0000027834, +0.0000027768,0.0000027740,0.0000027751,0.0000027757,0.0000027729, +0.0000027669,0.0000027590,0.0000027512,0.0000027457,0.0000027434, +0.0000027427,0.0000027421,0.0000027413,0.0000027381,0.0000027301, +0.0000027188,0.0000027119,0.0000027139,0.0000027247,0.0000027296, +0.0000027252,0.0000027318,0.0000027476,0.0000027419,0.0000027306, +0.0000027231,0.0000027095,0.0000027152,0.0000027459,0.0000027606, +0.0000027561,0.0000027425,0.0000027340,0.0000027340,0.0000027356, +0.0000027413,0.0000027476,0.0000027467,0.0000027399,0.0000027323, +0.0000027300,0.0000027311,0.0000027295,0.0000027230,0.0000027092, +0.0000026899,0.0000026761,0.0000026713,0.0000026699,0.0000026709, +0.0000026751,0.0000026817,0.0000026915,0.0000027024,0.0000027169, +0.0000027326,0.0000027430,0.0000027477,0.0000027464,0.0000027447, +0.0000027448,0.0000027431,0.0000027371,0.0000027294,0.0000027172, +0.0000026998,0.0000026861,0.0000026868,0.0000027024,0.0000027225, +0.0000027360,0.0000027442,0.0000027507,0.0000027541,0.0000027565, +0.0000027617,0.0000027728,0.0000027863,0.0000027979,0.0000028063, +0.0000028125,0.0000028162,0.0000028164,0.0000028136,0.0000028093, +0.0000028030,0.0000027948,0.0000027842,0.0000027734,0.0000027648, +0.0000027572,0.0000027503,0.0000027465,0.0000027440,0.0000027400, +0.0000027361,0.0000027326,0.0000027273,0.0000027221,0.0000027184, +0.0000027135,0.0000027054,0.0000026965,0.0000026902,0.0000026876, +0.0000026880,0.0000026902,0.0000026930,0.0000026968,0.0000027020, +0.0000027077,0.0000027138,0.0000027200,0.0000027264,0.0000027331, +0.0000027393,0.0000027436,0.0000027444,0.0000027416,0.0000027366, +0.0000027319,0.0000027237,0.0000027070,0.0000026936,0.0000026925, +0.0000027008,0.0000027061,0.0000027062,0.0000027027,0.0000027005, +0.0000027022,0.0000027053,0.0000027075,0.0000027062,0.0000027001, +0.0000026941,0.0000026922,0.0000026933,0.0000026957,0.0000026993, +0.0000027044,0.0000027094,0.0000027132,0.0000027170,0.0000027220, +0.0000027279,0.0000027336,0.0000027379,0.0000027400,0.0000027400, +0.0000027384,0.0000027365,0.0000027354,0.0000027355,0.0000027373, +0.0000027412,0.0000027450,0.0000027457,0.0000027411,0.0000027318, +0.0000027214,0.0000027127,0.0000027064,0.0000027034,0.0000027039, +0.0000027078,0.0000027125,0.0000027156,0.0000027125,0.0000027021, +0.0000026908,0.0000026793,0.0000026669,0.0000026620,0.0000026650, +0.0000026693,0.0000026767,0.0000026925,0.0000027042,0.0000027023, +0.0000026970,0.0000026945,0.0000026959,0.0000026997,0.0000027022, +0.0000027031,0.0000027045,0.0000027056,0.0000027085,0.0000027130, +0.0000027172,0.0000027214,0.0000027243,0.0000027256,0.0000027248, +0.0000027246,0.0000027254,0.0000027215,0.0000027069,0.0000026906, +0.0000026826,0.0000026775,0.0000026682,0.0000026596,0.0000026556, +0.0000026541,0.0000026540,0.0000026610,0.0000026778,0.0000026959, +0.0000027064,0.0000027065,0.0000026984,0.0000026915,0.0000026890, +0.0000026955,0.0000027061,0.0000027006,0.0000026942,0.0000027017, +0.0000027146,0.0000027271,0.0000027378,0.0000027443,0.0000027452, +0.0000027433,0.0000027375,0.0000027296,0.0000027217,0.0000027150, +0.0000027104,0.0000027083,0.0000027075,0.0000027071,0.0000027068, +0.0000027074,0.0000027089,0.0000027102,0.0000027104,0.0000027098, +0.0000027099,0.0000027112,0.0000027147,0.0000027227,0.0000027313, +0.0000027280,0.0000027111,0.0000027015,0.0000027106,0.0000027378, +0.0000027574,0.0000027620,0.0000027611,0.0000027579,0.0000027565, +0.0000027557,0.0000027543,0.0000027525,0.0000027505,0.0000027480, +0.0000027454,0.0000027415,0.0000027364,0.0000027336,0.0000027322, +0.0000027330,0.0000027384,0.0000027474,0.0000027577,0.0000027653, +0.0000027668,0.0000027631,0.0000027567,0.0000027537,0.0000027554, +0.0000027608,0.0000027684,0.0000027753,0.0000027792,0.0000027796, +0.0000027772,0.0000027729,0.0000027681,0.0000027622,0.0000027555, +0.0000027498,0.0000027465,0.0000027457,0.0000027448,0.0000027426, +0.0000027404,0.0000027411,0.0000027481,0.0000027585,0.0000027694, +0.0000027813,0.0000027927,0.0000028013,0.0000028059,0.0000028069, +0.0000028049,0.0000027994,0.0000027943,0.0000027903,0.0000027861, +0.0000027818,0.0000027766,0.0000027704,0.0000027651,0.0000027648, +0.0000027722,0.0000027843,0.0000027946,0.0000027993,0.0000027992, +0.0000027967,0.0000027942,0.0000027915,0.0000027865,0.0000027782, +0.0000027697,0.0000027637,0.0000027610,0.0000027624,0.0000027691, +0.0000027756,0.0000027769,0.0000027778,0.0000027844,0.0000027905, +0.0000027913,0.0000027893,0.0000027846,0.0000027784,0.0000027766, +0.0000027826,0.0000027980,0.0000028147,0.0000028254,0.0000028265, +0.0000028184,0.0000028055,0.0000027926,0.0000027826,0.0000027761, +0.0000027737,0.0000027743,0.0000027774,0.0000027821,0.0000027863, +0.0000027901,0.0000027942,0.0000027981,0.0000027991,0.0000027969, +0.0000027936,0.0000027924,0.0000027933,0.0000027950,0.0000028008, +0.0000028005,0.0000028004,0.0000028001,0.0000027994,0.0000027984, +0.0000027972,0.0000027957,0.0000027946,0.0000027925,0.0000027895, +0.0000027826,0.0000027696,0.0000027535,0.0000027408,0.0000027306, +0.0000027172,0.0000027052,0.0000027045,0.0000027145,0.0000027263, +0.0000027337,0.0000027381,0.0000027389,0.0000027382,0.0000027386, +0.0000027410,0.0000027448,0.0000027495,0.0000027542,0.0000027581, +0.0000027607,0.0000027633,0.0000027665,0.0000027703,0.0000027753, +0.0000027816,0.0000027878,0.0000027938,0.0000027995,0.0000028035, +0.0000028053,0.0000028051,0.0000028016,0.0000027933,0.0000027817, +0.0000027717,0.0000027666,0.0000027663,0.0000027664,0.0000027645, +0.0000027618,0.0000027590,0.0000027558,0.0000027534,0.0000027524, +0.0000027510,0.0000027488,0.0000027453,0.0000027385,0.0000027272, +0.0000027169,0.0000027155,0.0000027243,0.0000027310,0.0000027253, +0.0000027243,0.0000027432,0.0000027479,0.0000027338,0.0000027257, +0.0000027127,0.0000027070,0.0000027281,0.0000027517,0.0000027525, +0.0000027426,0.0000027319,0.0000027306,0.0000027346,0.0000027431, +0.0000027510,0.0000027500,0.0000027411,0.0000027324,0.0000027308, +0.0000027322,0.0000027310,0.0000027255,0.0000027151,0.0000026965, +0.0000026783,0.0000026721,0.0000026705,0.0000026687,0.0000026711, +0.0000026765,0.0000026850,0.0000026969,0.0000027105,0.0000027262, +0.0000027377,0.0000027421,0.0000027434,0.0000027410,0.0000027414, +0.0000027440,0.0000027449,0.0000027422,0.0000027344,0.0000027190, +0.0000026996,0.0000026881,0.0000026912,0.0000027069,0.0000027211, +0.0000027308,0.0000027391,0.0000027462,0.0000027490,0.0000027501, +0.0000027549,0.0000027670,0.0000027822,0.0000027944,0.0000028030, +0.0000028101,0.0000028154,0.0000028170,0.0000028152,0.0000028115, +0.0000028056,0.0000027979,0.0000027888,0.0000027792,0.0000027717, +0.0000027657,0.0000027598,0.0000027556,0.0000027526,0.0000027483, +0.0000027441,0.0000027410,0.0000027369,0.0000027324,0.0000027280, +0.0000027232,0.0000027156,0.0000027057,0.0000026971,0.0000026932, +0.0000026932,0.0000026961,0.0000027000,0.0000027044,0.0000027098, +0.0000027156,0.0000027210,0.0000027258,0.0000027305,0.0000027354, +0.0000027407,0.0000027448,0.0000027457,0.0000027429,0.0000027373, +0.0000027320,0.0000027261,0.0000027133,0.0000026982,0.0000026943, +0.0000027003,0.0000027077,0.0000027089,0.0000027068,0.0000027034, +0.0000027017,0.0000027025,0.0000027053,0.0000027064,0.0000027029, +0.0000026965,0.0000026932,0.0000026937,0.0000026970,0.0000027017, +0.0000027078,0.0000027141,0.0000027194,0.0000027245,0.0000027301, +0.0000027359,0.0000027404,0.0000027430,0.0000027437,0.0000027428, +0.0000027404,0.0000027372,0.0000027338,0.0000027319,0.0000027319, +0.0000027345,0.0000027398,0.0000027446,0.0000027465,0.0000027431, +0.0000027348,0.0000027260,0.0000027189,0.0000027122,0.0000027053, +0.0000027010,0.0000027013,0.0000027047,0.0000027088,0.0000027123, +0.0000027098,0.0000026982,0.0000026851,0.0000026747,0.0000026650, +0.0000026602,0.0000026622,0.0000026654,0.0000026765,0.0000026962, +0.0000027074,0.0000027045,0.0000026972,0.0000026923,0.0000026897, +0.0000026909,0.0000026921,0.0000026937,0.0000026956,0.0000026992, +0.0000027055,0.0000027126,0.0000027189,0.0000027235,0.0000027250, +0.0000027226,0.0000027175,0.0000027165,0.0000027194,0.0000027186, +0.0000027080,0.0000026922,0.0000026831,0.0000026780,0.0000026696, +0.0000026602,0.0000026543,0.0000026530,0.0000026553,0.0000026663, +0.0000026831,0.0000026973,0.0000027049,0.0000027052,0.0000026988, +0.0000026914,0.0000026874,0.0000026916,0.0000027032,0.0000027011, +0.0000026953,0.0000027013,0.0000027124,0.0000027255,0.0000027392, +0.0000027485,0.0000027502,0.0000027473,0.0000027412,0.0000027341, +0.0000027273,0.0000027212,0.0000027176,0.0000027169,0.0000027170, +0.0000027165,0.0000027154,0.0000027149,0.0000027151,0.0000027151, +0.0000027144,0.0000027135,0.0000027135,0.0000027153,0.0000027189, +0.0000027257,0.0000027331,0.0000027285,0.0000027099,0.0000027010, +0.0000027131,0.0000027415,0.0000027596,0.0000027643,0.0000027646, +0.0000027627,0.0000027612,0.0000027610,0.0000027600,0.0000027580, +0.0000027553,0.0000027519,0.0000027485,0.0000027429,0.0000027346, +0.0000027278,0.0000027260,0.0000027269,0.0000027329,0.0000027442, +0.0000027576,0.0000027670,0.0000027686,0.0000027639,0.0000027553, +0.0000027520,0.0000027571,0.0000027700,0.0000027839,0.0000027948, +0.0000027998,0.0000027993,0.0000027947,0.0000027873,0.0000027780, +0.0000027682,0.0000027584,0.0000027500,0.0000027446,0.0000027425, +0.0000027423,0.0000027418,0.0000027407,0.0000027412,0.0000027473, +0.0000027579,0.0000027682,0.0000027795,0.0000027913,0.0000028005, +0.0000028065,0.0000028094,0.0000028092,0.0000028048,0.0000027977, +0.0000027927,0.0000027891,0.0000027852,0.0000027807,0.0000027761, +0.0000027739,0.0000027758,0.0000027840,0.0000027945,0.0000028013, +0.0000028026,0.0000028007,0.0000027975,0.0000027938,0.0000027905, +0.0000027855,0.0000027776,0.0000027689,0.0000027635,0.0000027629, +0.0000027673,0.0000027732,0.0000027757,0.0000027742,0.0000027763, +0.0000027831,0.0000027878,0.0000027886,0.0000027874,0.0000027834, +0.0000027780,0.0000027764,0.0000027812,0.0000027962,0.0000028136, +0.0000028242,0.0000028252,0.0000028164,0.0000028016,0.0000027872, +0.0000027747,0.0000027650,0.0000027601,0.0000027602,0.0000027644, +0.0000027716,0.0000027808,0.0000027907,0.0000028000,0.0000028058, +0.0000028073,0.0000028055,0.0000028027,0.0000028019,0.0000028026, +0.0000028025,0.0000028015,0.0000028087,0.0000028083,0.0000028076, +0.0000028067,0.0000028051,0.0000028019,0.0000027984,0.0000027950, +0.0000027928,0.0000027918,0.0000027890,0.0000027823,0.0000027705, +0.0000027565,0.0000027459,0.0000027388,0.0000027306,0.0000027225, +0.0000027200,0.0000027233,0.0000027288,0.0000027346,0.0000027406, +0.0000027443,0.0000027444,0.0000027442,0.0000027460,0.0000027490, +0.0000027527,0.0000027568,0.0000027593,0.0000027594,0.0000027583, +0.0000027592,0.0000027625,0.0000027660,0.0000027717,0.0000027786, +0.0000027861,0.0000027936,0.0000028001,0.0000028051,0.0000028076, +0.0000028077,0.0000028038,0.0000027944,0.0000027810,0.0000027693, +0.0000027623,0.0000027603,0.0000027601,0.0000027600,0.0000027603, +0.0000027606,0.0000027609,0.0000027610,0.0000027607,0.0000027579, +0.0000027532,0.0000027468,0.0000027372,0.0000027259,0.0000027207, +0.0000027251,0.0000027317,0.0000027271,0.0000027201,0.0000027348, +0.0000027494,0.0000027402,0.0000027287,0.0000027172,0.0000027049, +0.0000027129,0.0000027381,0.0000027457,0.0000027410,0.0000027315, +0.0000027261,0.0000027298,0.0000027412,0.0000027530,0.0000027540, +0.0000027441,0.0000027323,0.0000027297,0.0000027327,0.0000027329, +0.0000027287,0.0000027201,0.0000027051,0.0000026856,0.0000026742, +0.0000026732,0.0000026725,0.0000026715,0.0000026751,0.0000026825, +0.0000026945,0.0000027092,0.0000027226,0.0000027325,0.0000027361, +0.0000027360,0.0000027365,0.0000027352,0.0000027383,0.0000027428, +0.0000027449,0.0000027442,0.0000027383,0.0000027233,0.0000027023, +0.0000026909,0.0000026953,0.0000027104,0.0000027195,0.0000027252, +0.0000027331,0.0000027409,0.0000027428,0.0000027432,0.0000027485, +0.0000027613,0.0000027775,0.0000027887,0.0000027947,0.0000027997, +0.0000028048,0.0000028082,0.0000028086,0.0000028076,0.0000028047, +0.0000027977,0.0000027888,0.0000027808,0.0000027754,0.0000027725, +0.0000027690,0.0000027656,0.0000027621,0.0000027574,0.0000027530, +0.0000027500,0.0000027460,0.0000027416,0.0000027368,0.0000027317, +0.0000027251,0.0000027160,0.0000027059,0.0000026993,0.0000026985, +0.0000027017,0.0000027070,0.0000027123,0.0000027175,0.0000027228, +0.0000027273,0.0000027311,0.0000027344,0.0000027377,0.0000027418, +0.0000027458,0.0000027471,0.0000027448,0.0000027395,0.0000027335, +0.0000027278,0.0000027177,0.0000027027,0.0000026950,0.0000026997, +0.0000027082,0.0000027119,0.0000027114,0.0000027089,0.0000027063, +0.0000027050,0.0000027056,0.0000027076,0.0000027059,0.0000026995, +0.0000026941,0.0000026939,0.0000026971,0.0000027023,0.0000027088, +0.0000027162,0.0000027239,0.0000027318,0.0000027399,0.0000027466, +0.0000027501,0.0000027503,0.0000027480,0.0000027447,0.0000027419, +0.0000027385,0.0000027351,0.0000027323,0.0000027313,0.0000027326, +0.0000027361,0.0000027415,0.0000027462,0.0000027478,0.0000027446, +0.0000027371,0.0000027299,0.0000027250,0.0000027197,0.0000027115, +0.0000027026,0.0000026975,0.0000026976,0.0000027008,0.0000027054, +0.0000027103,0.0000027070,0.0000026924,0.0000026794,0.0000026718, +0.0000026625,0.0000026584,0.0000026588,0.0000026633,0.0000026790, +0.0000027015,0.0000027123,0.0000027080,0.0000026986,0.0000026908, +0.0000026872,0.0000026853,0.0000026861,0.0000026876,0.0000026897, +0.0000026943,0.0000027008,0.0000027082,0.0000027160,0.0000027222, +0.0000027230,0.0000027180,0.0000027099,0.0000027075,0.0000027120, +0.0000027170,0.0000027128,0.0000026985,0.0000026861,0.0000026799, +0.0000026732,0.0000026644,0.0000026571,0.0000026541,0.0000026586, +0.0000026715,0.0000026874,0.0000026989,0.0000027068,0.0000027092, +0.0000027024,0.0000026932,0.0000026865,0.0000026888,0.0000027004, +0.0000027007,0.0000026965,0.0000027004,0.0000027096,0.0000027212, +0.0000027362,0.0000027498,0.0000027551,0.0000027528,0.0000027468, +0.0000027400,0.0000027329,0.0000027262,0.0000027221,0.0000027212, +0.0000027214,0.0000027211,0.0000027202,0.0000027193,0.0000027189, +0.0000027190,0.0000027188,0.0000027177,0.0000027171,0.0000027188, +0.0000027225,0.0000027287,0.0000027335,0.0000027272,0.0000027074, +0.0000026997,0.0000027183,0.0000027471,0.0000027633,0.0000027681, +0.0000027693,0.0000027681,0.0000027656,0.0000027647,0.0000027625, +0.0000027598,0.0000027565,0.0000027527,0.0000027487,0.0000027418, +0.0000027317,0.0000027234,0.0000027211,0.0000027219,0.0000027280, +0.0000027401,0.0000027552,0.0000027659,0.0000027674,0.0000027616, +0.0000027544,0.0000027553,0.0000027691,0.0000027884,0.0000028006, +0.0000028079,0.0000028101,0.0000028097,0.0000028081,0.0000028050, +0.0000027976,0.0000027855,0.0000027711,0.0000027565,0.0000027458, +0.0000027396,0.0000027367,0.0000027355,0.0000027353,0.0000027372, +0.0000027439,0.0000027546,0.0000027655,0.0000027770,0.0000027889, +0.0000027990,0.0000028056,0.0000028096,0.0000028110,0.0000028085, +0.0000028017,0.0000027944,0.0000027905,0.0000027881,0.0000027863, +0.0000027856,0.0000027861,0.0000027890,0.0000027936,0.0000027980, +0.0000028010,0.0000028017,0.0000028003,0.0000027967,0.0000027918, +0.0000027873,0.0000027831,0.0000027779,0.0000027725,0.0000027683, +0.0000027700,0.0000027758,0.0000027786,0.0000027764,0.0000027734, +0.0000027766,0.0000027843,0.0000027869,0.0000027858,0.0000027842, +0.0000027809,0.0000027766,0.0000027754,0.0000027810,0.0000027945, +0.0000028106,0.0000028207,0.0000028230,0.0000028162,0.0000028020, +0.0000027850,0.0000027702,0.0000027570,0.0000027488,0.0000027478, +0.0000027522,0.0000027604,0.0000027711,0.0000027844,0.0000027991, +0.0000028102,0.0000028126,0.0000028112,0.0000028087,0.0000028087, +0.0000028099,0.0000028104,0.0000028092,0.0000028086,0.0000028157, +0.0000028129,0.0000028107,0.0000028092,0.0000028065,0.0000028019, +0.0000027969,0.0000027938,0.0000027930,0.0000027915,0.0000027881, +0.0000027815,0.0000027714,0.0000027604,0.0000027528,0.0000027489, +0.0000027459,0.0000027429,0.0000027413,0.0000027414,0.0000027427, +0.0000027461,0.0000027521,0.0000027577,0.0000027593,0.0000027585, +0.0000027585,0.0000027599,0.0000027624,0.0000027654,0.0000027674, +0.0000027673,0.0000027650,0.0000027638,0.0000027641,0.0000027647, +0.0000027654,0.0000027680,0.0000027730,0.0000027814,0.0000027898, +0.0000027979,0.0000028050,0.0000028093,0.0000028105,0.0000028076, +0.0000027970,0.0000027818,0.0000027689,0.0000027612,0.0000027586, +0.0000027579,0.0000027579,0.0000027590,0.0000027604,0.0000027620, +0.0000027632,0.0000027628,0.0000027595,0.0000027541,0.0000027469, +0.0000027376,0.0000027298,0.0000027294,0.0000027329,0.0000027289, +0.0000027188,0.0000027265,0.0000027461,0.0000027452,0.0000027336, +0.0000027228,0.0000027066,0.0000027039,0.0000027239,0.0000027378, +0.0000027366,0.0000027314,0.0000027231,0.0000027226,0.0000027352, +0.0000027517,0.0000027562,0.0000027484,0.0000027342,0.0000027286, +0.0000027313,0.0000027333,0.0000027314,0.0000027255,0.0000027138, +0.0000026969,0.0000026817,0.0000026783,0.0000026796,0.0000026799, +0.0000026809,0.0000026860,0.0000026955,0.0000027086,0.0000027218, +0.0000027305,0.0000027329,0.0000027310,0.0000027297,0.0000027296, +0.0000027306,0.0000027357,0.0000027414,0.0000027441,0.0000027440, +0.0000027398,0.0000027264,0.0000027069,0.0000026952,0.0000026997, +0.0000027128,0.0000027176,0.0000027198,0.0000027264,0.0000027344, +0.0000027355,0.0000027366,0.0000027433,0.0000027572,0.0000027732, +0.0000027828,0.0000027857,0.0000027870,0.0000027892,0.0000027919, +0.0000027934,0.0000027948,0.0000027970,0.0000027949,0.0000027876, +0.0000027792,0.0000027746,0.0000027746,0.0000027753,0.0000027737, +0.0000027714,0.0000027663,0.0000027613,0.0000027585,0.0000027551, +0.0000027504,0.0000027456,0.0000027409,0.0000027349,0.0000027273, +0.0000027179,0.0000027096,0.0000027067,0.0000027091,0.0000027150, +0.0000027206,0.0000027251,0.0000027288,0.0000027317,0.0000027342, +0.0000027363,0.0000027383,0.0000027412,0.0000027452,0.0000027475, +0.0000027464,0.0000027419,0.0000027359,0.0000027297,0.0000027211, +0.0000027076,0.0000026975,0.0000026979,0.0000027072,0.0000027140, +0.0000027153,0.0000027146,0.0000027129,0.0000027115,0.0000027115, +0.0000027123,0.0000027104,0.0000027034,0.0000026959,0.0000026937, +0.0000026965,0.0000027017,0.0000027083,0.0000027162,0.0000027258, +0.0000027370,0.0000027481,0.0000027562,0.0000027590,0.0000027570, +0.0000027524,0.0000027473,0.0000027434,0.0000027406,0.0000027385, +0.0000027368,0.0000027366,0.0000027379,0.0000027409,0.0000027449, +0.0000027487,0.0000027508,0.0000027503,0.0000027462,0.0000027398, +0.0000027342,0.0000027308,0.0000027269,0.0000027193,0.0000027083, +0.0000026980,0.0000026930,0.0000026942,0.0000026984,0.0000027039, +0.0000027078,0.0000027011,0.0000026849,0.0000026748,0.0000026689, +0.0000026611,0.0000026570,0.0000026568,0.0000026636,0.0000026835, +0.0000027070,0.0000027163,0.0000027113,0.0000027017,0.0000026931, +0.0000026876,0.0000026852,0.0000026860,0.0000026873,0.0000026903, +0.0000026928,0.0000026975,0.0000027043,0.0000027123,0.0000027185, +0.0000027189,0.0000027123,0.0000027017,0.0000026978,0.0000027049, +0.0000027176,0.0000027189,0.0000027063,0.0000026912,0.0000026829, +0.0000026772,0.0000026701,0.0000026627,0.0000026591,0.0000026644, +0.0000026787,0.0000026931,0.0000027037,0.0000027137,0.0000027151, +0.0000027067,0.0000026957,0.0000026881,0.0000026882,0.0000026968, +0.0000027003,0.0000026973,0.0000026991,0.0000027065,0.0000027161, +0.0000027299,0.0000027457,0.0000027555,0.0000027563,0.0000027531, +0.0000027477,0.0000027403,0.0000027324,0.0000027265,0.0000027236, +0.0000027230,0.0000027237,0.0000027253,0.0000027270,0.0000027283, +0.0000027291,0.0000027290,0.0000027264,0.0000027232,0.0000027228, +0.0000027256,0.0000027309,0.0000027334,0.0000027246,0.0000027050, +0.0000027025,0.0000027267,0.0000027545,0.0000027684,0.0000027723, +0.0000027726,0.0000027703,0.0000027663,0.0000027635,0.0000027604, +0.0000027568,0.0000027536,0.0000027502,0.0000027462,0.0000027402, +0.0000027311,0.0000027235,0.0000027193,0.0000027191,0.0000027237, +0.0000027357,0.0000027516,0.0000027625,0.0000027633,0.0000027592, +0.0000027589,0.0000027683,0.0000027842,0.0000027959,0.0000027995, +0.0000027993,0.0000027987,0.0000027993,0.0000028018,0.0000028040, +0.0000028046,0.0000028017,0.0000027948,0.0000027814,0.0000027652, +0.0000027505,0.0000027397,0.0000027333,0.0000027297,0.0000027290, +0.0000027346,0.0000027457,0.0000027584,0.0000027709,0.0000027838, +0.0000027951,0.0000028033,0.0000028083,0.0000028110,0.0000028109, +0.0000028066,0.0000027999,0.0000027947,0.0000027932,0.0000027935, +0.0000027950,0.0000027960,0.0000027958,0.0000027955,0.0000027961, +0.0000027978,0.0000027994,0.0000027986,0.0000027951,0.0000027898, +0.0000027858,0.0000027836,0.0000027813,0.0000027801,0.0000027802, +0.0000027821,0.0000027839,0.0000027826,0.0000027772,0.0000027747, +0.0000027793,0.0000027856,0.0000027871,0.0000027852,0.0000027824, +0.0000027786,0.0000027749,0.0000027747,0.0000027805,0.0000027931, +0.0000028078,0.0000028176,0.0000028200,0.0000028171,0.0000028062, +0.0000027909,0.0000027741,0.0000027594,0.0000027461,0.0000027394, +0.0000027414,0.0000027496,0.0000027601,0.0000027738,0.0000027920, +0.0000028087,0.0000028156,0.0000028141,0.0000028116,0.0000028117, +0.0000028141,0.0000028159,0.0000028168,0.0000028174,0.0000028174, +0.0000028170,0.0000028135,0.0000028117,0.0000028102,0.0000028073, +0.0000028028,0.0000027988,0.0000027970,0.0000027952,0.0000027915, +0.0000027861,0.0000027792,0.0000027717,0.0000027656,0.0000027623, +0.0000027614,0.0000027619,0.0000027633,0.0000027646,0.0000027647, +0.0000027641,0.0000027647,0.0000027676,0.0000027689,0.0000027681, +0.0000027641,0.0000027610,0.0000027610,0.0000027634,0.0000027667, +0.0000027696,0.0000027707,0.0000027701,0.0000027702,0.0000027710, +0.0000027719,0.0000027718,0.0000027702,0.0000027685,0.0000027703, +0.0000027746,0.0000027814,0.0000027904,0.0000028004,0.0000028090, +0.0000028127,0.0000028112,0.0000028006,0.0000027854,0.0000027726, +0.0000027640,0.0000027592,0.0000027567,0.0000027564,0.0000027576, +0.0000027592,0.0000027606,0.0000027616,0.0000027614,0.0000027590, +0.0000027553,0.0000027496,0.0000027432,0.0000027384,0.0000027353, +0.0000027294,0.0000027191,0.0000027216,0.0000027406,0.0000027455, +0.0000027372,0.0000027288,0.0000027130,0.0000027001,0.0000027105, +0.0000027303,0.0000027320,0.0000027292,0.0000027228,0.0000027165, +0.0000027261,0.0000027467,0.0000027564,0.0000027518,0.0000027375, +0.0000027293,0.0000027302,0.0000027323,0.0000027318,0.0000027292, +0.0000027223,0.0000027097,0.0000026947,0.0000026865,0.0000026882, +0.0000026910,0.0000026937,0.0000026968,0.0000027023,0.0000027107, +0.0000027204,0.0000027278,0.0000027308,0.0000027294,0.0000027266, +0.0000027264,0.0000027265,0.0000027288,0.0000027330,0.0000027386, +0.0000027420,0.0000027435,0.0000027395,0.0000027283,0.0000027102, +0.0000027001,0.0000027056,0.0000027146,0.0000027148,0.0000027143, +0.0000027199,0.0000027265,0.0000027276,0.0000027306,0.0000027400, +0.0000027544,0.0000027686,0.0000027764,0.0000027779,0.0000027761, +0.0000027749,0.0000027760,0.0000027769,0.0000027778,0.0000027816, +0.0000027845,0.0000027838,0.0000027785,0.0000027727,0.0000027722, +0.0000027758,0.0000027784,0.0000027780,0.0000027742,0.0000027686, +0.0000027649,0.0000027624,0.0000027588,0.0000027549,0.0000027516, +0.0000027469,0.0000027408,0.0000027332,0.0000027248,0.0000027196, +0.0000027198,0.0000027252,0.0000027305,0.0000027335,0.0000027351, +0.0000027353,0.0000027358,0.0000027370,0.0000027381,0.0000027401, +0.0000027436,0.0000027465,0.0000027468,0.0000027436,0.0000027382, +0.0000027317,0.0000027237,0.0000027118,0.0000027000,0.0000026976, +0.0000027045,0.0000027137,0.0000027185,0.0000027197,0.0000027196, +0.0000027187,0.0000027186,0.0000027194,0.0000027177,0.0000027095, +0.0000026997,0.0000026944,0.0000026950,0.0000026998,0.0000027071, +0.0000027160,0.0000027268,0.0000027398,0.0000027529,0.0000027618, +0.0000027641,0.0000027609,0.0000027558,0.0000027512,0.0000027480, +0.0000027469,0.0000027473,0.0000027480,0.0000027488,0.0000027501, +0.0000027521,0.0000027547,0.0000027570,0.0000027577,0.0000027566, +0.0000027537,0.0000027489,0.0000027436,0.0000027394,0.0000027361, +0.0000027319,0.0000027249,0.0000027143,0.0000027015,0.0000026919, +0.0000026898,0.0000026933,0.0000026976,0.0000027015,0.0000027023, +0.0000026925,0.0000026773,0.0000026705,0.0000026673,0.0000026606, +0.0000026565,0.0000026577,0.0000026672,0.0000026889,0.0000027111, +0.0000027171,0.0000027130,0.0000027043,0.0000026959,0.0000026904, +0.0000026894,0.0000026908,0.0000026921,0.0000026928,0.0000026947, +0.0000026985,0.0000027038,0.0000027097,0.0000027138,0.0000027134, +0.0000027052,0.0000026934,0.0000026898,0.0000027004,0.0000027194, +0.0000027261,0.0000027146,0.0000026970,0.0000026862,0.0000026803, +0.0000026753,0.0000026696,0.0000026678,0.0000026744,0.0000026884, +0.0000027006,0.0000027115,0.0000027201,0.0000027201,0.0000027094, +0.0000026983,0.0000026904,0.0000026881,0.0000026928,0.0000026976, +0.0000026967,0.0000026974,0.0000027037,0.0000027131,0.0000027240, +0.0000027367,0.0000027484,0.0000027549,0.0000027560,0.0000027540, +0.0000027487,0.0000027418,0.0000027359,0.0000027324,0.0000027310, +0.0000027313,0.0000027331,0.0000027358,0.0000027384,0.0000027399, +0.0000027394,0.0000027354,0.0000027298,0.0000027272,0.0000027282, +0.0000027323,0.0000027335,0.0000027208,0.0000027044,0.0000027099, +0.0000027376,0.0000027623,0.0000027723,0.0000027734,0.0000027721, +0.0000027679,0.0000027623,0.0000027573,0.0000027537,0.0000027508, +0.0000027491,0.0000027477,0.0000027454,0.0000027414,0.0000027341, +0.0000027268,0.0000027209,0.0000027181,0.0000027203,0.0000027316, +0.0000027470,0.0000027571,0.0000027597,0.0000027618,0.0000027700, +0.0000027791,0.0000027854,0.0000027870,0.0000027868,0.0000027858, +0.0000027856,0.0000027869,0.0000027882,0.0000027902,0.0000027934, +0.0000027971,0.0000027992,0.0000027959,0.0000027875,0.0000027761, +0.0000027632,0.0000027500,0.0000027382,0.0000027310,0.0000027309, +0.0000027376,0.0000027504,0.0000027639,0.0000027778,0.0000027907, +0.0000028010,0.0000028085,0.0000028125,0.0000028130,0.0000028112, +0.0000028060,0.0000028002,0.0000027966,0.0000027962,0.0000027962, +0.0000027958,0.0000027935,0.0000027916,0.0000027924,0.0000027951, +0.0000027974,0.0000027973,0.0000027941,0.0000027895,0.0000027870, +0.0000027876,0.0000027899,0.0000027923,0.0000027947,0.0000027937, +0.0000027888,0.0000027828,0.0000027799,0.0000027809,0.0000027854, +0.0000027877,0.0000027872,0.0000027854,0.0000027829,0.0000027784, +0.0000027745,0.0000027740,0.0000027785,0.0000027891,0.0000028019, +0.0000028120,0.0000028156,0.0000028135,0.0000028065,0.0000027962, +0.0000027851,0.0000027730,0.0000027595,0.0000027448,0.0000027375, +0.0000027415,0.0000027511,0.0000027627,0.0000027805,0.0000028019, +0.0000028146,0.0000028160,0.0000028127,0.0000028120,0.0000028141, +0.0000028184,0.0000028226,0.0000028250,0.0000028248,0.0000028214, +0.0000028157,0.0000028135,0.0000028125,0.0000028113,0.0000028098, +0.0000028075,0.0000028065,0.0000028045,0.0000027996,0.0000027918, +0.0000027833,0.0000027764,0.0000027725,0.0000027716,0.0000027727, +0.0000027746,0.0000027765,0.0000027788,0.0000027804,0.0000027795, +0.0000027762,0.0000027726,0.0000027700,0.0000027668,0.0000027624, +0.0000027574,0.0000027554,0.0000027580,0.0000027628,0.0000027667, +0.0000027687,0.0000027698,0.0000027702,0.0000027703,0.0000027712, +0.0000027733,0.0000027764,0.0000027792,0.0000027786,0.0000027759, +0.0000027733,0.0000027713,0.0000027716,0.0000027789,0.0000027914, +0.0000028046,0.0000028121,0.0000028109,0.0000028019,0.0000027900, +0.0000027787,0.0000027685,0.0000027606,0.0000027564,0.0000027563, +0.0000027575,0.0000027585,0.0000027595,0.0000027608,0.0000027614, +0.0000027611,0.0000027597,0.0000027560,0.0000027492,0.0000027400, +0.0000027293,0.0000027184,0.0000027194,0.0000027368,0.0000027438, +0.0000027376,0.0000027324,0.0000027207,0.0000027027,0.0000027006, +0.0000027196,0.0000027293,0.0000027276,0.0000027232,0.0000027141, +0.0000027165,0.0000027379,0.0000027545,0.0000027537,0.0000027405, +0.0000027304,0.0000027304,0.0000027322,0.0000027317,0.0000027308, +0.0000027281,0.0000027211,0.0000027101,0.0000027013,0.0000027006, +0.0000027037,0.0000027073,0.0000027107,0.0000027136,0.0000027174, +0.0000027221,0.0000027263,0.0000027283,0.0000027284,0.0000027272, +0.0000027262,0.0000027271,0.0000027274,0.0000027290,0.0000027315, +0.0000027360,0.0000027404,0.0000027417,0.0000027382,0.0000027274, +0.0000027113,0.0000027047,0.0000027120,0.0000027159,0.0000027113, +0.0000027084,0.0000027141,0.0000027182,0.0000027198,0.0000027257, +0.0000027382,0.0000027530,0.0000027653,0.0000027713,0.0000027720, +0.0000027691,0.0000027654,0.0000027644,0.0000027641,0.0000027640, +0.0000027663,0.0000027691,0.0000027717,0.0000027737,0.0000027724, +0.0000027703,0.0000027717,0.0000027764,0.0000027799,0.0000027793, +0.0000027753,0.0000027707,0.0000027677,0.0000027659,0.0000027642, +0.0000027626,0.0000027604,0.0000027565,0.0000027512,0.0000027434, +0.0000027357,0.0000027331,0.0000027361,0.0000027404,0.0000027420, +0.0000027409,0.0000027385,0.0000027372,0.0000027376,0.0000027386, +0.0000027403,0.0000027431,0.0000027459,0.0000027464,0.0000027442, +0.0000027398,0.0000027339,0.0000027263,0.0000027156,0.0000027032, +0.0000026971,0.0000027014,0.0000027110,0.0000027193,0.0000027240, +0.0000027258,0.0000027257,0.0000027255,0.0000027261,0.0000027247, +0.0000027171,0.0000027062,0.0000026974,0.0000026947,0.0000026971, +0.0000027051,0.0000027161,0.0000027280,0.0000027412,0.0000027547, +0.0000027637,0.0000027648,0.0000027623,0.0000027583,0.0000027554, +0.0000027553,0.0000027567,0.0000027587,0.0000027609,0.0000027622, +0.0000027626,0.0000027625,0.0000027628,0.0000027640,0.0000027646, +0.0000027637,0.0000027611,0.0000027572,0.0000027521,0.0000027471, +0.0000027426,0.0000027381,0.0000027329,0.0000027259,0.0000027163, +0.0000027036,0.0000026923,0.0000026886,0.0000026907,0.0000026941, +0.0000026956,0.0000026975,0.0000026959,0.0000026836,0.0000026699, +0.0000026675,0.0000026671,0.0000026625,0.0000026592,0.0000026618, +0.0000026724,0.0000026943,0.0000027132,0.0000027167,0.0000027126, +0.0000027038,0.0000026959,0.0000026925,0.0000026937,0.0000026959, +0.0000026966,0.0000026965,0.0000026981,0.0000027014,0.0000027046, +0.0000027074,0.0000027081,0.0000027057,0.0000026969,0.0000026868, +0.0000026842,0.0000026982,0.0000027210,0.0000027313,0.0000027213, +0.0000027023,0.0000026889,0.0000026823,0.0000026783,0.0000026752, +0.0000026764,0.0000026853,0.0000026969,0.0000027072,0.0000027165, +0.0000027229,0.0000027218,0.0000027112,0.0000026998,0.0000026920, +0.0000026877,0.0000026889,0.0000026929,0.0000026939,0.0000026949, +0.0000027020,0.0000027122,0.0000027200,0.0000027267,0.0000027352, +0.0000027449,0.0000027528,0.0000027545,0.0000027531,0.0000027494, +0.0000027461,0.0000027439,0.0000027426,0.0000027418,0.0000027420, +0.0000027436,0.0000027464,0.0000027480,0.0000027469,0.0000027414, +0.0000027346,0.0000027303,0.0000027300,0.0000027329,0.0000027317, +0.0000027170,0.0000027060,0.0000027193,0.0000027490,0.0000027678, +0.0000027725,0.0000027716,0.0000027684,0.0000027631,0.0000027564, +0.0000027508,0.0000027475,0.0000027469,0.0000027477,0.0000027482, +0.0000027475,0.0000027449,0.0000027394,0.0000027325,0.0000027254, +0.0000027187,0.0000027191,0.0000027286,0.0000027427,0.0000027532, +0.0000027621,0.0000027722,0.0000027789,0.0000027783,0.0000027755, +0.0000027781,0.0000027823,0.0000027846,0.0000027859,0.0000027874, +0.0000027882,0.0000027873,0.0000027866,0.0000027875,0.0000027886, +0.0000027870,0.0000027843,0.0000027800,0.0000027754,0.0000027686, +0.0000027590,0.0000027491,0.0000027423,0.0000027421,0.0000027487, +0.0000027589,0.0000027703,0.0000027825,0.0000027940,0.0000028036, +0.0000028104,0.0000028130,0.0000028113,0.0000028067,0.0000028003, +0.0000027946,0.0000027909,0.0000027886,0.0000027865,0.0000027854, +0.0000027862,0.0000027896,0.0000027941,0.0000027970,0.0000027966, +0.0000027940,0.0000027907,0.0000027896,0.0000027937,0.0000028007, +0.0000028058,0.0000028059,0.0000027992,0.0000027895,0.0000027831, +0.0000027846,0.0000027910,0.0000027952,0.0000027938,0.0000027898, +0.0000027865,0.0000027838,0.0000027804,0.0000027764,0.0000027750, +0.0000027779,0.0000027860,0.0000027957,0.0000028031,0.0000028071, +0.0000028062,0.0000028025,0.0000027972,0.0000027915,0.0000027852, +0.0000027764,0.0000027624,0.0000027460,0.0000027406,0.0000027454, +0.0000027550,0.0000027693,0.0000027912,0.0000028101,0.0000028158, +0.0000028140,0.0000028111,0.0000028122,0.0000028178,0.0000028248, +0.0000028297,0.0000028298,0.0000028264,0.0000028207,0.0000028131, +0.0000028123,0.0000028118,0.0000028107,0.0000028096,0.0000028103, +0.0000028110,0.0000028099,0.0000028041,0.0000027941,0.0000027839, +0.0000027771,0.0000027757,0.0000027775,0.0000027813,0.0000027851, +0.0000027870,0.0000027871,0.0000027860,0.0000027827,0.0000027771, +0.0000027707,0.0000027643,0.0000027584,0.0000027547,0.0000027529, +0.0000027540,0.0000027597,0.0000027659,0.0000027696,0.0000027699, +0.0000027694,0.0000027691,0.0000027690,0.0000027696,0.0000027708, +0.0000027736,0.0000027788,0.0000027833,0.0000027839,0.0000027830, +0.0000027780,0.0000027712,0.0000027676,0.0000027696,0.0000027810, +0.0000027960,0.0000028054,0.0000028058,0.0000028001,0.0000027927, +0.0000027826,0.0000027710,0.0000027615,0.0000027575,0.0000027577, +0.0000027580,0.0000027581,0.0000027592,0.0000027613,0.0000027634, +0.0000027651,0.0000027645,0.0000027576,0.0000027452,0.0000027290, +0.0000027173,0.0000027191,0.0000027360,0.0000027437,0.0000027363, +0.0000027319,0.0000027264,0.0000027095,0.0000026969,0.0000027067, +0.0000027251,0.0000027279,0.0000027252,0.0000027154,0.0000027112, +0.0000027274,0.0000027493,0.0000027535,0.0000027430,0.0000027317, +0.0000027312,0.0000027330,0.0000027325,0.0000027322,0.0000027317, +0.0000027290,0.0000027229,0.0000027164,0.0000027152,0.0000027178, +0.0000027207,0.0000027225,0.0000027233,0.0000027240,0.0000027252, +0.0000027270,0.0000027280,0.0000027287,0.0000027296,0.0000027312, +0.0000027318,0.0000027323,0.0000027316,0.0000027312,0.0000027322, +0.0000027354,0.0000027398,0.0000027406,0.0000027360,0.0000027243, +0.0000027104,0.0000027089,0.0000027177,0.0000027173,0.0000027074, +0.0000027029,0.0000027091,0.0000027107,0.0000027132,0.0000027231, +0.0000027376,0.0000027523,0.0000027627,0.0000027671,0.0000027679, +0.0000027661,0.0000027624,0.0000027595,0.0000027571,0.0000027553, +0.0000027557,0.0000027576,0.0000027584,0.0000027616,0.0000027669, +0.0000027695,0.0000027694,0.0000027703,0.0000027757,0.0000027793, +0.0000027790,0.0000027762,0.0000027728,0.0000027715,0.0000027717, +0.0000027720,0.0000027722,0.0000027711,0.0000027683,0.0000027621, +0.0000027529,0.0000027467,0.0000027469,0.0000027493,0.0000027492, +0.0000027456,0.0000027404,0.0000027378,0.0000027375,0.0000027392, +0.0000027416,0.0000027443,0.0000027465,0.0000027464,0.0000027441, +0.0000027403,0.0000027354,0.0000027283,0.0000027187,0.0000027069, +0.0000026984,0.0000026987,0.0000027070,0.0000027177,0.0000027266, +0.0000027313,0.0000027322,0.0000027320,0.0000027323,0.0000027307, +0.0000027238,0.0000027127,0.0000027019,0.0000026960,0.0000026961, +0.0000027033,0.0000027166,0.0000027298,0.0000027420,0.0000027542, +0.0000027632,0.0000027648,0.0000027621,0.0000027599,0.0000027596, +0.0000027619,0.0000027652,0.0000027683,0.0000027706,0.0000027718, +0.0000027712,0.0000027693,0.0000027673,0.0000027663,0.0000027666, +0.0000027668,0.0000027649,0.0000027623,0.0000027582,0.0000027524, +0.0000027462,0.0000027404,0.0000027347,0.0000027290,0.0000027225, +0.0000027138,0.0000027029,0.0000026932,0.0000026897,0.0000026913, +0.0000026933,0.0000026924,0.0000026928,0.0000026945,0.0000026890, +0.0000026737,0.0000026639,0.0000026662,0.0000026689,0.0000026668, +0.0000026647,0.0000026672,0.0000026797,0.0000027000,0.0000027140, +0.0000027150,0.0000027095,0.0000027005,0.0000026940,0.0000026934, +0.0000026959,0.0000026980,0.0000026986,0.0000026983,0.0000027002, +0.0000027033,0.0000027044,0.0000027037,0.0000027009,0.0000026965, +0.0000026897,0.0000026831,0.0000026824,0.0000026975,0.0000027213, +0.0000027322,0.0000027245,0.0000027055,0.0000026909,0.0000026835, +0.0000026799,0.0000026794,0.0000026838,0.0000026923,0.0000027015, +0.0000027103,0.0000027190,0.0000027234,0.0000027217,0.0000027128, +0.0000027010,0.0000026928,0.0000026876,0.0000026858,0.0000026871, +0.0000026888,0.0000026916,0.0000026999,0.0000027098,0.0000027168, +0.0000027195,0.0000027221,0.0000027294,0.0000027403,0.0000027478, +0.0000027512,0.0000027515,0.0000027519,0.0000027519,0.0000027514, +0.0000027496,0.0000027481,0.0000027487,0.0000027514,0.0000027532, +0.0000027517,0.0000027455,0.0000027379,0.0000027321,0.0000027308, +0.0000027328,0.0000027283,0.0000027131,0.0000027091,0.0000027317, +0.0000027588,0.0000027692,0.0000027693,0.0000027678,0.0000027654, +0.0000027600,0.0000027528,0.0000027473,0.0000027450,0.0000027462, +0.0000027492,0.0000027517,0.0000027528,0.0000027526,0.0000027505, +0.0000027458,0.0000027398,0.0000027316,0.0000027285,0.0000027340, +0.0000027466,0.0000027600,0.0000027739,0.0000027804,0.0000027752, +0.0000027667,0.0000027677,0.0000027778,0.0000027878,0.0000027921, +0.0000027944,0.0000027974,0.0000027985,0.0000027974,0.0000027953, +0.0000027936,0.0000027911,0.0000027853,0.0000027774,0.0000027708, +0.0000027668,0.0000027645,0.0000027618,0.0000027583,0.0000027553, +0.0000027538,0.0000027551,0.0000027598,0.0000027656,0.0000027727, +0.0000027809,0.0000027899,0.0000027983,0.0000028037,0.0000028044, +0.0000028001,0.0000027935,0.0000027862,0.0000027808,0.0000027773, +0.0000027762,0.0000027781,0.0000027828,0.0000027882,0.0000027937, +0.0000027969,0.0000027964,0.0000027941,0.0000027923,0.0000027932, +0.0000028000,0.0000028094,0.0000028139,0.0000028100,0.0000027998, +0.0000027900,0.0000027880,0.0000027941,0.0000028019,0.0000028052, +0.0000028028,0.0000027963,0.0000027899,0.0000027856,0.0000027828, +0.0000027806,0.0000027795,0.0000027812,0.0000027868,0.0000027936, +0.0000027978,0.0000027987,0.0000027986,0.0000027969,0.0000027954, +0.0000027926,0.0000027888,0.0000027843,0.0000027767,0.0000027615, +0.0000027464,0.0000027436,0.0000027505,0.0000027622,0.0000027807, +0.0000028017,0.0000028134,0.0000028146,0.0000028124,0.0000028117, +0.0000028156,0.0000028238,0.0000028302,0.0000028317,0.0000028292, +0.0000028228,0.0000028164,0.0000028083,0.0000028083,0.0000028082, +0.0000028072,0.0000028069,0.0000028089,0.0000028109,0.0000028105, +0.0000028065,0.0000027990,0.0000027907,0.0000027854,0.0000027845, +0.0000027871,0.0000027908,0.0000027934,0.0000027935,0.0000027918, +0.0000027885,0.0000027841,0.0000027784,0.0000027717,0.0000027650, +0.0000027597,0.0000027551,0.0000027524,0.0000027523,0.0000027565, +0.0000027623,0.0000027652,0.0000027649,0.0000027637,0.0000027631, +0.0000027638,0.0000027658,0.0000027682,0.0000027698,0.0000027729, +0.0000027785,0.0000027824,0.0000027825,0.0000027810,0.0000027770, +0.0000027719,0.0000027689,0.0000027700,0.0000027769,0.0000027858, +0.0000027930,0.0000027955,0.0000027954,0.0000027906,0.0000027809, +0.0000027699,0.0000027610,0.0000027581,0.0000027578,0.0000027575, +0.0000027579,0.0000027599,0.0000027628,0.0000027654,0.0000027662, +0.0000027611,0.0000027477,0.0000027291,0.0000027175,0.0000027203, +0.0000027372,0.0000027451,0.0000027371,0.0000027298,0.0000027278, +0.0000027158,0.0000026988,0.0000026973,0.0000027153,0.0000027279, +0.0000027283,0.0000027198,0.0000027100,0.0000027179,0.0000027416, +0.0000027513,0.0000027452,0.0000027335,0.0000027315,0.0000027344, +0.0000027341,0.0000027338,0.0000027349,0.0000027343,0.0000027309, +0.0000027263,0.0000027239,0.0000027257,0.0000027285,0.0000027292, +0.0000027275,0.0000027264,0.0000027260,0.0000027271,0.0000027291, +0.0000027308,0.0000027334,0.0000027370,0.0000027398,0.0000027397, +0.0000027382,0.0000027361,0.0000027347,0.0000027344,0.0000027366, +0.0000027404,0.0000027401,0.0000027326,0.0000027194,0.0000027097, +0.0000027137,0.0000027215,0.0000027169,0.0000027035,0.0000026987, +0.0000027040,0.0000027037,0.0000027080,0.0000027209,0.0000027364, +0.0000027503,0.0000027586,0.0000027621,0.0000027645,0.0000027654, +0.0000027635,0.0000027607,0.0000027568,0.0000027523,0.0000027501, +0.0000027517,0.0000027525,0.0000027530,0.0000027561,0.0000027625, +0.0000027684,0.0000027683,0.0000027696,0.0000027735,0.0000027776, +0.0000027790,0.0000027776,0.0000027762,0.0000027774,0.0000027788, +0.0000027803,0.0000027809,0.0000027804,0.0000027769,0.0000027685, +0.0000027604,0.0000027581,0.0000027583,0.0000027564,0.0000027504, +0.0000027423,0.0000027372,0.0000027366,0.0000027390,0.0000027429, +0.0000027462,0.0000027478,0.0000027464,0.0000027431,0.0000027396, +0.0000027354,0.0000027290,0.0000027204,0.0000027099,0.0000027002, +0.0000026978,0.0000027030,0.0000027147,0.0000027272,0.0000027351, +0.0000027376,0.0000027378,0.0000027375,0.0000027346,0.0000027283, +0.0000027173,0.0000027062,0.0000026980,0.0000026963,0.0000027035, +0.0000027187,0.0000027329,0.0000027431,0.0000027530,0.0000027613, +0.0000027636,0.0000027618,0.0000027607,0.0000027627,0.0000027671, +0.0000027718,0.0000027758,0.0000027788,0.0000027805,0.0000027803, +0.0000027778,0.0000027740,0.0000027708,0.0000027686,0.0000027676, +0.0000027664,0.0000027636,0.0000027592,0.0000027536,0.0000027467, +0.0000027397,0.0000027336,0.0000027283,0.0000027230,0.0000027176, +0.0000027109,0.0000027031,0.0000026973,0.0000026954,0.0000026956, +0.0000026943,0.0000026908,0.0000026891,0.0000026903,0.0000026895, +0.0000026797,0.0000026648,0.0000026604,0.0000026659,0.0000026706, +0.0000026731,0.0000026726,0.0000026761,0.0000026889,0.0000027050, +0.0000027126,0.0000027116,0.0000027039,0.0000026960,0.0000026929, +0.0000026941,0.0000026961,0.0000026974,0.0000026972,0.0000026975, +0.0000027006,0.0000027034,0.0000027022,0.0000026975,0.0000026922, +0.0000026893,0.0000026866,0.0000026828,0.0000026833,0.0000026973, +0.0000027198,0.0000027315,0.0000027251,0.0000027065,0.0000026917, +0.0000026847,0.0000026818,0.0000026826,0.0000026884,0.0000026958, +0.0000027028,0.0000027106,0.0000027187,0.0000027223,0.0000027220, +0.0000027147,0.0000027024,0.0000026931,0.0000026879,0.0000026844, +0.0000026826,0.0000026836,0.0000026881,0.0000026952,0.0000027043, +0.0000027121,0.0000027150,0.0000027145,0.0000027164,0.0000027241, +0.0000027332,0.0000027411,0.0000027476,0.0000027526,0.0000027564, +0.0000027572,0.0000027552,0.0000027524,0.0000027517,0.0000027543, +0.0000027563,0.0000027546,0.0000027482,0.0000027399,0.0000027329, +0.0000027315,0.0000027323,0.0000027242,0.0000027110,0.0000027168, +0.0000027451,0.0000027650,0.0000027666,0.0000027653,0.0000027662, +0.0000027650,0.0000027589,0.0000027513,0.0000027466,0.0000027462, +0.0000027492,0.0000027554,0.0000027616,0.0000027666,0.0000027711, +0.0000027738,0.0000027722,0.0000027673,0.0000027596,0.0000027533, +0.0000027563,0.0000027664,0.0000027776,0.0000027834,0.0000027772, +0.0000027620,0.0000027580,0.0000027690,0.0000027865,0.0000027978, +0.0000028019,0.0000028031,0.0000028044,0.0000028046,0.0000028034, +0.0000028025,0.0000028026,0.0000028012,0.0000027964,0.0000027891, +0.0000027814,0.0000027733,0.0000027657,0.0000027579,0.0000027521, +0.0000027503,0.0000027522,0.0000027557,0.0000027604,0.0000027644, +0.0000027676,0.0000027709,0.0000027760,0.0000027830,0.0000027896, +0.0000027925,0.0000027909,0.0000027844,0.0000027768,0.0000027712, +0.0000027698,0.0000027708,0.0000027749,0.0000027812,0.0000027879, +0.0000027927,0.0000027951,0.0000027954,0.0000027939,0.0000027938, +0.0000027976,0.0000028058,0.0000028137,0.0000028150,0.0000028083, +0.0000027987,0.0000027943,0.0000027970,0.0000028042,0.0000028106, +0.0000028133,0.0000028113,0.0000028039,0.0000027951,0.0000027897, +0.0000027879,0.0000027872,0.0000027870,0.0000027881,0.0000027913, +0.0000027950,0.0000027971,0.0000027964,0.0000027934,0.0000027912, +0.0000027898,0.0000027894,0.0000027879,0.0000027859,0.0000027836, +0.0000027756,0.0000027590,0.0000027468,0.0000027474,0.0000027570, +0.0000027734,0.0000027930,0.0000028078,0.0000028134,0.0000028129, +0.0000028120,0.0000028148,0.0000028217,0.0000028282,0.0000028310, +0.0000028297,0.0000028242,0.0000028166,0.0000028107,0.0000028024, +0.0000028031,0.0000028035,0.0000028029,0.0000028040,0.0000028059, +0.0000028074,0.0000028074,0.0000028061,0.0000028041,0.0000028022, +0.0000028014,0.0000028016,0.0000028029,0.0000028045,0.0000028046, +0.0000028030,0.0000027998,0.0000027961,0.0000027927,0.0000027888, +0.0000027828,0.0000027744,0.0000027643,0.0000027527,0.0000027417, +0.0000027374,0.0000027396,0.0000027464,0.0000027522,0.0000027561, +0.0000027573,0.0000027579,0.0000027595,0.0000027629,0.0000027664, +0.0000027674,0.0000027675,0.0000027701,0.0000027752,0.0000027773, +0.0000027756,0.0000027724,0.0000027701,0.0000027704,0.0000027735, +0.0000027782,0.0000027806,0.0000027807,0.0000027804,0.0000027819, +0.0000027844,0.0000027818,0.0000027740,0.0000027648,0.0000027581, +0.0000027559,0.0000027552,0.0000027556,0.0000027573,0.0000027595, +0.0000027610,0.0000027611,0.0000027562,0.0000027441,0.0000027285, +0.0000027190,0.0000027226,0.0000027395,0.0000027480,0.0000027405, +0.0000027306,0.0000027276,0.0000027196,0.0000027031,0.0000026934, +0.0000027035,0.0000027223,0.0000027293,0.0000027251,0.0000027126, +0.0000027131,0.0000027327,0.0000027483,0.0000027464,0.0000027360, +0.0000027323,0.0000027356,0.0000027367,0.0000027365,0.0000027382, +0.0000027387,0.0000027356,0.0000027312,0.0000027278,0.0000027272, +0.0000027290,0.0000027303,0.0000027298,0.0000027275,0.0000027261, +0.0000027266,0.0000027287,0.0000027318,0.0000027352,0.0000027398, +0.0000027443,0.0000027463,0.0000027442,0.0000027415,0.0000027400, +0.0000027389,0.0000027373,0.0000027389,0.0000027417,0.0000027387, +0.0000027271,0.0000027136,0.0000027108,0.0000027206,0.0000027237, +0.0000027142,0.0000026995,0.0000026959,0.0000026985,0.0000026975, +0.0000027031,0.0000027172,0.0000027333,0.0000027458,0.0000027527, +0.0000027572,0.0000027625,0.0000027662,0.0000027670,0.0000027653, +0.0000027608,0.0000027551,0.0000027508,0.0000027507,0.0000027515, +0.0000027515,0.0000027508,0.0000027525,0.0000027614,0.0000027687, +0.0000027691,0.0000027693,0.0000027720,0.0000027769,0.0000027798, +0.0000027802,0.0000027823,0.0000027845,0.0000027859,0.0000027865, +0.0000027867,0.0000027856,0.0000027799,0.0000027722,0.0000027683, +0.0000027670,0.0000027641,0.0000027567,0.0000027464,0.0000027388, +0.0000027365,0.0000027384,0.0000027433,0.0000027472,0.0000027480, +0.0000027461,0.0000027416,0.0000027377,0.0000027340,0.0000027281, +0.0000027203,0.0000027114,0.0000027017,0.0000026965,0.0000026995, +0.0000027108,0.0000027258,0.0000027365,0.0000027404,0.0000027416, +0.0000027416,0.0000027383,0.0000027303,0.0000027194,0.0000027089, +0.0000027005,0.0000026975,0.0000027051,0.0000027221,0.0000027377, +0.0000027460,0.0000027524,0.0000027595,0.0000027623,0.0000027614, +0.0000027613,0.0000027651,0.0000027713,0.0000027774,0.0000027829, +0.0000027876,0.0000027906,0.0000027910,0.0000027887,0.0000027839, +0.0000027785,0.0000027743,0.0000027705,0.0000027670,0.0000027633, +0.0000027582,0.0000027522,0.0000027459,0.0000027394,0.0000027335, +0.0000027295,0.0000027256,0.0000027209,0.0000027167,0.0000027129, +0.0000027093,0.0000027067,0.0000027043,0.0000027010,0.0000026956, +0.0000026899,0.0000026870,0.0000026868,0.0000026868,0.0000026824, +0.0000026699,0.0000026587,0.0000026579,0.0000026664,0.0000026752, +0.0000026790,0.0000026798,0.0000026855,0.0000026971,0.0000027069, +0.0000027086,0.0000027034,0.0000026960,0.0000026915,0.0000026918, +0.0000026926,0.0000026931,0.0000026932,0.0000026933,0.0000026960, +0.0000027010,0.0000027020,0.0000026968,0.0000026894,0.0000026864, +0.0000026881,0.0000026877,0.0000026845,0.0000026855,0.0000026973, +0.0000027170,0.0000027285,0.0000027234,0.0000027062,0.0000026919, +0.0000026864,0.0000026846,0.0000026858,0.0000026913,0.0000026978, +0.0000027030,0.0000027104,0.0000027176,0.0000027219,0.0000027233, +0.0000027177,0.0000027049,0.0000026938,0.0000026884,0.0000026845, +0.0000026811,0.0000026814,0.0000026847,0.0000026888,0.0000026955, +0.0000027038,0.0000027098,0.0000027108,0.0000027100,0.0000027130, +0.0000027196,0.0000027282,0.0000027384,0.0000027491,0.0000027575, +0.0000027607,0.0000027593,0.0000027555,0.0000027541,0.0000027567, +0.0000027584,0.0000027562,0.0000027493,0.0000027405,0.0000027333, +0.0000027324,0.0000027315,0.0000027201,0.0000027136,0.0000027292, +0.0000027571,0.0000027664,0.0000027640,0.0000027644,0.0000027663, +0.0000027649,0.0000027588,0.0000027530,0.0000027523,0.0000027548, +0.0000027604,0.0000027701,0.0000027795,0.0000027865,0.0000027914, +0.0000027935,0.0000027920,0.0000027860,0.0000027786,0.0000027736, +0.0000027762,0.0000027827,0.0000027854,0.0000027784,0.0000027610, +0.0000027503,0.0000027585,0.0000027798,0.0000027984,0.0000028068, +0.0000028072,0.0000028050,0.0000028039,0.0000028022,0.0000027995, +0.0000027981,0.0000027982,0.0000027970,0.0000027944,0.0000027911, +0.0000027892,0.0000027870,0.0000027825,0.0000027744,0.0000027624, +0.0000027508,0.0000027444,0.0000027439,0.0000027492,0.0000027579, +0.0000027642,0.0000027670,0.0000027692,0.0000027736,0.0000027790, +0.0000027827,0.0000027829,0.0000027787,0.0000027719,0.0000027664, +0.0000027657,0.0000027693,0.0000027753,0.0000027824,0.0000027874, +0.0000027902,0.0000027920,0.0000027925,0.0000027925,0.0000027941, +0.0000028008,0.0000028097,0.0000028144,0.0000028114,0.0000028031, +0.0000027977,0.0000027999,0.0000028067,0.0000028126,0.0000028166, +0.0000028185,0.0000028171,0.0000028099,0.0000028011,0.0000027961, +0.0000027950,0.0000027948,0.0000027943,0.0000027949,0.0000027967, +0.0000027982,0.0000027984,0.0000027968,0.0000027932,0.0000027886, +0.0000027864,0.0000027859,0.0000027857,0.0000027854,0.0000027861, +0.0000027847,0.0000027727,0.0000027558,0.0000027488,0.0000027528, +0.0000027675,0.0000027870,0.0000028024,0.0000028104,0.0000028122, +0.0000028123,0.0000028148,0.0000028204,0.0000028254,0.0000028282, +0.0000028277,0.0000028236,0.0000028169,0.0000028095,0.0000028041, +0.0000027971,0.0000027985,0.0000027994,0.0000028003,0.0000028019, +0.0000028034,0.0000028041,0.0000028041,0.0000028051,0.0000028076, +0.0000028114,0.0000028146,0.0000028166,0.0000028179,0.0000028182, +0.0000028174,0.0000028150,0.0000028112,0.0000028072,0.0000028023, +0.0000027977,0.0000027901,0.0000027761,0.0000027558,0.0000027341, +0.0000027191,0.0000027158,0.0000027243,0.0000027359,0.0000027473, +0.0000027558,0.0000027607,0.0000027635,0.0000027659,0.0000027689, +0.0000027712,0.0000027708,0.0000027686,0.0000027685,0.0000027719, +0.0000027748,0.0000027735,0.0000027687,0.0000027634,0.0000027624, +0.0000027672,0.0000027769,0.0000027857,0.0000027883,0.0000027836, +0.0000027759,0.0000027714,0.0000027685,0.0000027652,0.0000027596, +0.0000027535,0.0000027489,0.0000027467,0.0000027466,0.0000027479, +0.0000027497,0.0000027501,0.0000027480,0.0000027439,0.0000027365, +0.0000027285,0.0000027236,0.0000027278,0.0000027420,0.0000027494, +0.0000027431,0.0000027338,0.0000027297,0.0000027221,0.0000027072, +0.0000026914,0.0000026942,0.0000027136,0.0000027280,0.0000027289, +0.0000027179,0.0000027131,0.0000027269,0.0000027437,0.0000027459, +0.0000027378,0.0000027336,0.0000027367,0.0000027394,0.0000027400, +0.0000027418,0.0000027425,0.0000027399,0.0000027346,0.0000027297, +0.0000027274,0.0000027284,0.0000027303,0.0000027306,0.0000027288, +0.0000027261,0.0000027254,0.0000027270,0.0000027294,0.0000027332, +0.0000027378,0.0000027432,0.0000027467,0.0000027468,0.0000027445, +0.0000027440,0.0000027445,0.0000027423,0.0000027403,0.0000027418, +0.0000027426,0.0000027346,0.0000027195,0.0000027103,0.0000027159, +0.0000027264,0.0000027232,0.0000027098,0.0000026963,0.0000026934, +0.0000026924,0.0000026913,0.0000026971,0.0000027113,0.0000027287, +0.0000027409,0.0000027480,0.0000027552,0.0000027634,0.0000027696, +0.0000027721,0.0000027713,0.0000027676,0.0000027631,0.0000027597, +0.0000027574,0.0000027548,0.0000027523,0.0000027507,0.0000027492, +0.0000027533,0.0000027647,0.0000027720,0.0000027714,0.0000027698, +0.0000027721,0.0000027772,0.0000027815,0.0000027862,0.0000027904, +0.0000027924,0.0000027925,0.0000027914,0.0000027907,0.0000027872, +0.0000027806,0.0000027760,0.0000027741,0.0000027709,0.0000027638, +0.0000027528,0.0000027432,0.0000027387,0.0000027387,0.0000027426, +0.0000027463,0.0000027475,0.0000027449,0.0000027397,0.0000027351, +0.0000027314,0.0000027262,0.0000027189,0.0000027106,0.0000027014, +0.0000026952,0.0000026969,0.0000027072,0.0000027227,0.0000027349, +0.0000027399,0.0000027419,0.0000027427,0.0000027395,0.0000027307, +0.0000027193,0.0000027097,0.0000027026,0.0000027002,0.0000027084, +0.0000027265,0.0000027426,0.0000027495,0.0000027537,0.0000027593, +0.0000027622,0.0000027616,0.0000027618,0.0000027665,0.0000027743, +0.0000027818,0.0000027886,0.0000027947,0.0000027985,0.0000027990, +0.0000027950,0.0000027907,0.0000027845,0.0000027789,0.0000027740, +0.0000027687,0.0000027631,0.0000027585,0.0000027531,0.0000027482, +0.0000027431,0.0000027383,0.0000027344,0.0000027317,0.0000027292, +0.0000027263,0.0000027236,0.0000027216,0.0000027195,0.0000027160, +0.0000027108,0.0000027039,0.0000026964,0.0000026902,0.0000026870, +0.0000026857,0.0000026845,0.0000026817,0.0000026733,0.0000026613, +0.0000026543,0.0000026576,0.0000026680,0.0000026767,0.0000026810, +0.0000026850,0.0000026918,0.0000026994,0.0000027017,0.0000026982, +0.0000026920,0.0000026880,0.0000026873,0.0000026874,0.0000026871, +0.0000026874,0.0000026881,0.0000026911,0.0000026975,0.0000027010, +0.0000026974,0.0000026889,0.0000026844,0.0000026875,0.0000026912, +0.0000026893,0.0000026861,0.0000026874,0.0000026967,0.0000027129, +0.0000027235,0.0000027203,0.0000027055,0.0000026928,0.0000026885, +0.0000026874,0.0000026882,0.0000026930,0.0000026987,0.0000027032, +0.0000027095,0.0000027165,0.0000027225,0.0000027257,0.0000027220, +0.0000027096,0.0000026966,0.0000026896,0.0000026855,0.0000026830, +0.0000026836,0.0000026846,0.0000026842,0.0000026862,0.0000026924, +0.0000027001,0.0000027054,0.0000027074,0.0000027094,0.0000027127, +0.0000027196,0.0000027310,0.0000027453,0.0000027577,0.0000027631, +0.0000027616,0.0000027572,0.0000027557,0.0000027588,0.0000027603, +0.0000027562,0.0000027489,0.0000027399,0.0000027338,0.0000027331, +0.0000027289,0.0000027170,0.0000027185,0.0000027439,0.0000027649, +0.0000027659,0.0000027631,0.0000027650,0.0000027668,0.0000027661, +0.0000027650,0.0000027656,0.0000027677,0.0000027715,0.0000027773, +0.0000027851,0.0000027921,0.0000027958,0.0000027980,0.0000027991, +0.0000027968,0.0000027893,0.0000027810,0.0000027770,0.0000027781, +0.0000027817,0.0000027779,0.0000027613,0.0000027461,0.0000027483, +0.0000027686,0.0000027928,0.0000028077,0.0000028105,0.0000028081, +0.0000028045,0.0000028014,0.0000027971,0.0000027910,0.0000027868, +0.0000027845,0.0000027828,0.0000027813,0.0000027818,0.0000027847, +0.0000027873,0.0000027867,0.0000027832,0.0000027761,0.0000027673, +0.0000027576,0.0000027470,0.0000027404,0.0000027414,0.0000027478, +0.0000027558,0.0000027636,0.0000027700,0.0000027744,0.0000027771, +0.0000027776,0.0000027755,0.0000027708,0.0000027668,0.0000027658, +0.0000027681,0.0000027743,0.0000027813,0.0000027859,0.0000027879, +0.0000027881,0.0000027879,0.0000027886,0.0000027914,0.0000027998, +0.0000028099,0.0000028125,0.0000028066,0.0000027976,0.0000027964, +0.0000028038,0.0000028132,0.0000028187,0.0000028210,0.0000028221, +0.0000028202,0.0000028136,0.0000028063,0.0000028026,0.0000028021, +0.0000028017,0.0000028010,0.0000028011,0.0000028024,0.0000028033, +0.0000028027,0.0000028003,0.0000027969,0.0000027933,0.0000027893, +0.0000027862,0.0000027842,0.0000027839,0.0000027860,0.0000027883, +0.0000027829,0.0000027666,0.0000027543,0.0000027528,0.0000027621, +0.0000027818,0.0000027999,0.0000028095,0.0000028122,0.0000028124, +0.0000028147,0.0000028191,0.0000028227,0.0000028242,0.0000028235, +0.0000028202,0.0000028146,0.0000028082,0.0000028019,0.0000027977, +0.0000027911,0.0000027937,0.0000027959,0.0000027989,0.0000028014, +0.0000028028,0.0000028030,0.0000028033,0.0000028053,0.0000028102, +0.0000028161,0.0000028203,0.0000028222,0.0000028226,0.0000028230, +0.0000028223,0.0000028204,0.0000028159,0.0000028087,0.0000028006, +0.0000027915,0.0000027787,0.0000027590,0.0000027340,0.0000027136, +0.0000027069,0.0000027106,0.0000027228,0.0000027379,0.0000027518, +0.0000027630,0.0000027710,0.0000027760,0.0000027786,0.0000027799, +0.0000027804,0.0000027791,0.0000027768,0.0000027755,0.0000027771, +0.0000027799,0.0000027793,0.0000027741,0.0000027657,0.0000027593, +0.0000027593,0.0000027659,0.0000027773,0.0000027880,0.0000027923, +0.0000027902,0.0000027815,0.0000027695,0.0000027579,0.0000027489, +0.0000027396,0.0000027339,0.0000027294,0.0000027278,0.0000027287, +0.0000027302,0.0000027314,0.0000027319,0.0000027319,0.0000027331, +0.0000027323,0.0000027317,0.0000027356,0.0000027450,0.0000027495, +0.0000027439,0.0000027363,0.0000027330,0.0000027262,0.0000027116, +0.0000026929,0.0000026875,0.0000027041,0.0000027233,0.0000027290, +0.0000027217,0.0000027148,0.0000027240,0.0000027405,0.0000027451, +0.0000027385,0.0000027344,0.0000027380,0.0000027417,0.0000027432, +0.0000027453,0.0000027465,0.0000027443,0.0000027389,0.0000027327, +0.0000027284,0.0000027272,0.0000027287,0.0000027307,0.0000027299, +0.0000027275,0.0000027253,0.0000027259,0.0000027285,0.0000027321, +0.0000027368,0.0000027418,0.0000027454,0.0000027458,0.0000027439, +0.0000027437,0.0000027470,0.0000027473,0.0000027440,0.0000027424, +0.0000027438,0.0000027409,0.0000027266,0.0000027125,0.0000027122, +0.0000027240,0.0000027280,0.0000027195,0.0000027050,0.0000026948, +0.0000026897,0.0000026853,0.0000026839,0.0000026910,0.0000027078, +0.0000027262,0.0000027389,0.0000027463,0.0000027553,0.0000027664, +0.0000027744,0.0000027786,0.0000027794,0.0000027772,0.0000027735, +0.0000027721,0.0000027709,0.0000027650,0.0000027560,0.0000027520, +0.0000027505,0.0000027515,0.0000027595,0.0000027707,0.0000027753, +0.0000027732,0.0000027711,0.0000027733,0.0000027785,0.0000027867, +0.0000027953,0.0000028003,0.0000028010,0.0000027989,0.0000027970, +0.0000027935,0.0000027866,0.0000027809,0.0000027783,0.0000027760, +0.0000027705,0.0000027607,0.0000027499,0.0000027421,0.0000027396, +0.0000027409,0.0000027439,0.0000027449,0.0000027425,0.0000027375, +0.0000027326,0.0000027284,0.0000027233,0.0000027161,0.0000027079, +0.0000026995,0.0000026935,0.0000026951,0.0000027051,0.0000027194, +0.0000027314,0.0000027374,0.0000027400,0.0000027411,0.0000027379, +0.0000027291,0.0000027184,0.0000027101,0.0000027053,0.0000027036, +0.0000027128,0.0000027311,0.0000027469,0.0000027526,0.0000027550, +0.0000027601,0.0000027634,0.0000027624,0.0000027626,0.0000027674, +0.0000027756,0.0000027841,0.0000027919,0.0000027985,0.0000028021, +0.0000028012,0.0000027977,0.0000027912,0.0000027849,0.0000027797, +0.0000027749,0.0000027699,0.0000027646,0.0000027596,0.0000027567, +0.0000027535,0.0000027507,0.0000027483,0.0000027459,0.0000027438, +0.0000027422,0.0000027403,0.0000027374,0.0000027340,0.0000027302, +0.0000027254,0.0000027193,0.0000027121,0.0000027048,0.0000026977, +0.0000026929,0.0000026901,0.0000026873,0.0000026840,0.0000026799, +0.0000026740,0.0000026645,0.0000026560,0.0000026548,0.0000026607, +0.0000026698,0.0000026773,0.0000026819,0.0000026865,0.0000026915, +0.0000026933,0.0000026909,0.0000026869,0.0000026834,0.0000026810, +0.0000026800,0.0000026797,0.0000026808,0.0000026827,0.0000026868, +0.0000026949,0.0000027008,0.0000026983,0.0000026892,0.0000026837, +0.0000026868,0.0000026930,0.0000026926,0.0000026882,0.0000026865, +0.0000026880,0.0000026952,0.0000027080,0.0000027173,0.0000027161, +0.0000027058,0.0000026952,0.0000026905,0.0000026891,0.0000026895, +0.0000026933,0.0000026978,0.0000027024,0.0000027078,0.0000027150, +0.0000027228,0.0000027271,0.0000027262,0.0000027160,0.0000027025, +0.0000026926,0.0000026876,0.0000026872,0.0000026879,0.0000026866, +0.0000026831,0.0000026804,0.0000026809,0.0000026859,0.0000026931, +0.0000027009,0.0000027069,0.0000027102,0.0000027155,0.0000027267, +0.0000027421,0.0000027559,0.0000027629,0.0000027621,0.0000027580, +0.0000027574,0.0000027604,0.0000027600,0.0000027549,0.0000027475, +0.0000027390,0.0000027342,0.0000027329,0.0000027246,0.0000027165, +0.0000027296,0.0000027566,0.0000027674,0.0000027650,0.0000027646, +0.0000027677,0.0000027717,0.0000027768,0.0000027811,0.0000027836, +0.0000027839,0.0000027834,0.0000027851,0.0000027893,0.0000027955, +0.0000028005,0.0000028038,0.0000028046,0.0000028010,0.0000027922, +0.0000027818,0.0000027767,0.0000027742,0.0000027729,0.0000027641, +0.0000027506,0.0000027455,0.0000027571,0.0000027819,0.0000028025, +0.0000028107,0.0000028113,0.0000028084,0.0000028038,0.0000027969, +0.0000027881,0.0000027788,0.0000027722,0.0000027681,0.0000027653, +0.0000027626,0.0000027626,0.0000027666,0.0000027720,0.0000027764, +0.0000027777,0.0000027761,0.0000027713,0.0000027678,0.0000027637, +0.0000027565,0.0000027465,0.0000027407,0.0000027404,0.0000027465, +0.0000027570,0.0000027666,0.0000027723,0.0000027746,0.0000027740, +0.0000027712,0.0000027677,0.0000027666,0.0000027684,0.0000027721, +0.0000027774,0.0000027820,0.0000027838,0.0000027839,0.0000027833, +0.0000027833,0.0000027863,0.0000027947,0.0000028052,0.0000028080, +0.0000028023,0.0000027945,0.0000027955,0.0000028056,0.0000028158, +0.0000028219,0.0000028246,0.0000028250,0.0000028225,0.0000028166, +0.0000028110,0.0000028086,0.0000028084,0.0000028088,0.0000028089, +0.0000028085,0.0000028084,0.0000028090,0.0000028087,0.0000028066, +0.0000028030,0.0000027988,0.0000027947,0.0000027900,0.0000027853, +0.0000027824,0.0000027845,0.0000027899,0.0000027881,0.0000027753, +0.0000027612,0.0000027558,0.0000027599,0.0000027764,0.0000027966, +0.0000028096,0.0000028135,0.0000028136,0.0000028157,0.0000028193, +0.0000028210,0.0000028208,0.0000028194,0.0000028158,0.0000028103, +0.0000028042,0.0000027983,0.0000027930,0.0000027904,0.0000027832, +0.0000027881,0.0000027927,0.0000027973,0.0000028008,0.0000028024, +0.0000028027,0.0000028035,0.0000028059,0.0000028110,0.0000028170, +0.0000028207,0.0000028219,0.0000028219,0.0000028217,0.0000028206, +0.0000028173,0.0000028097,0.0000027981,0.0000027846,0.0000027700, +0.0000027535,0.0000027351,0.0000027185,0.0000027095,0.0000027095, +0.0000027171,0.0000027301,0.0000027441,0.0000027566,0.0000027671, +0.0000027764,0.0000027838,0.0000027875,0.0000027884,0.0000027886, +0.0000027877,0.0000027854,0.0000027834,0.0000027834,0.0000027853, +0.0000027856,0.0000027824,0.0000027739,0.0000027639,0.0000027589, +0.0000027602,0.0000027675,0.0000027774,0.0000027857,0.0000027907, +0.0000027918,0.0000027880,0.0000027765,0.0000027594,0.0000027418, +0.0000027270,0.0000027161,0.0000027088,0.0000027071,0.0000027100, +0.0000027145,0.0000027205,0.0000027269,0.0000027350,0.0000027423, +0.0000027455,0.0000027462,0.0000027471,0.0000027477,0.0000027434, +0.0000027379,0.0000027359,0.0000027304,0.0000027173,0.0000026976, +0.0000026839,0.0000026935,0.0000027164,0.0000027264,0.0000027234, +0.0000027171,0.0000027226,0.0000027381,0.0000027448,0.0000027403, +0.0000027352,0.0000027388,0.0000027442,0.0000027462,0.0000027486, +0.0000027503,0.0000027491,0.0000027438,0.0000027367,0.0000027304, +0.0000027276,0.0000027279,0.0000027303,0.0000027325,0.0000027322, +0.0000027301,0.0000027293,0.0000027309,0.0000027339,0.0000027384, +0.0000027434,0.0000027478,0.0000027488,0.0000027462,0.0000027431, +0.0000027453,0.0000027488,0.0000027485,0.0000027442,0.0000027430, +0.0000027422,0.0000027340,0.0000027178,0.0000027111,0.0000027200, +0.0000027295,0.0000027262,0.0000027143,0.0000027024,0.0000026931, +0.0000026833,0.0000026771,0.0000026780,0.0000026902,0.0000027099, +0.0000027281,0.0000027381,0.0000027450,0.0000027549,0.0000027678, +0.0000027776,0.0000027840,0.0000027881,0.0000027881,0.0000027848, +0.0000027835,0.0000027839,0.0000027778,0.0000027634,0.0000027550, +0.0000027533,0.0000027551,0.0000027590,0.0000027668,0.0000027756, +0.0000027779,0.0000027746,0.0000027732,0.0000027753,0.0000027835, +0.0000027963,0.0000028063,0.0000028096,0.0000028086,0.0000028062, +0.0000028019,0.0000027931,0.0000027846,0.0000027809,0.0000027794, +0.0000027759,0.0000027679,0.0000027569,0.0000027461,0.0000027397, +0.0000027389,0.0000027401,0.0000027405,0.0000027387,0.0000027347, +0.0000027301,0.0000027254,0.0000027194,0.0000027114,0.0000027033, +0.0000026968,0.0000026941,0.0000026957,0.0000027056,0.0000027184, +0.0000027288,0.0000027347,0.0000027378,0.0000027387,0.0000027357, +0.0000027276,0.0000027183,0.0000027117,0.0000027081,0.0000027085, +0.0000027177,0.0000027352,0.0000027500,0.0000027552,0.0000027567, +0.0000027611,0.0000027646,0.0000027639,0.0000027628,0.0000027672, +0.0000027753,0.0000027834,0.0000027918,0.0000027991,0.0000028018, +0.0000028012,0.0000027959,0.0000027890,0.0000027825,0.0000027777, +0.0000027738,0.0000027702,0.0000027673,0.0000027636,0.0000027615, +0.0000027616,0.0000027621,0.0000027623,0.0000027619,0.0000027605, +0.0000027584,0.0000027557,0.0000027516,0.0000027457,0.0000027392, +0.0000027329,0.0000027266,0.0000027202,0.0000027139,0.0000027076, +0.0000027024,0.0000026987,0.0000026957,0.0000026914,0.0000026854, +0.0000026787,0.0000026726,0.0000026660,0.0000026601,0.0000026582, +0.0000026611,0.0000026679,0.0000026752,0.0000026796,0.0000026822, +0.0000026846,0.0000026857,0.0000026850,0.0000026829,0.0000026793, +0.0000026741,0.0000026709,0.0000026710,0.0000026738,0.0000026777, +0.0000026845,0.0000026949,0.0000027021,0.0000026997,0.0000026895, +0.0000026833,0.0000026868,0.0000026945,0.0000026947,0.0000026896, +0.0000026857,0.0000026855,0.0000026872,0.0000026934,0.0000027042, +0.0000027121,0.0000027129,0.0000027075,0.0000026982,0.0000026915, +0.0000026893,0.0000026895,0.0000026917,0.0000026954,0.0000026998, +0.0000027055,0.0000027127,0.0000027211,0.0000027270,0.0000027267, +0.0000027214,0.0000027103,0.0000026987,0.0000026920,0.0000026914, +0.0000026918,0.0000026900,0.0000026852,0.0000026790,0.0000026740, +0.0000026725,0.0000026762,0.0000026864,0.0000026976,0.0000027050, +0.0000027123,0.0000027244,0.0000027397,0.0000027532,0.0000027608, +0.0000027609,0.0000027577,0.0000027587,0.0000027614,0.0000027586, +0.0000027525,0.0000027460,0.0000027380,0.0000027340,0.0000027304, +0.0000027201,0.0000027200,0.0000027440,0.0000027654,0.0000027676, +0.0000027661,0.0000027693,0.0000027763,0.0000027854,0.0000027926, +0.0000027930,0.0000027904,0.0000027875,0.0000027871,0.0000027895, +0.0000027956,0.0000028037,0.0000028101,0.0000028118,0.0000028104, +0.0000028050,0.0000027958,0.0000027847,0.0000027782,0.0000027744, +0.0000027684,0.0000027604,0.0000027544,0.0000027563,0.0000027714, +0.0000027932,0.0000028068,0.0000028103,0.0000028101,0.0000028063, +0.0000027995,0.0000027915,0.0000027836,0.0000027765,0.0000027709, +0.0000027657,0.0000027606,0.0000027556,0.0000027535,0.0000027546, +0.0000027578,0.0000027599,0.0000027594,0.0000027576,0.0000027579, +0.0000027616,0.0000027645,0.0000027669,0.0000027648,0.0000027584, +0.0000027502,0.0000027438,0.0000027462,0.0000027526,0.0000027603, +0.0000027661,0.0000027689,0.0000027689,0.0000027670,0.0000027656, +0.0000027664,0.0000027692,0.0000027727,0.0000027757,0.0000027772, +0.0000027774,0.0000027775,0.0000027777,0.0000027801,0.0000027879, +0.0000027985,0.0000028023,0.0000027977,0.0000027927,0.0000027952, +0.0000028052,0.0000028152,0.0000028209,0.0000028246,0.0000028258, +0.0000028245,0.0000028202,0.0000028162,0.0000028148,0.0000028149, +0.0000028156,0.0000028166,0.0000028171,0.0000028170,0.0000028171, +0.0000028165,0.0000028137,0.0000028097,0.0000028053,0.0000028005, +0.0000027959,0.0000027905,0.0000027843,0.0000027835,0.0000027901, +0.0000027920,0.0000027812,0.0000027681,0.0000027609,0.0000027627, +0.0000027752,0.0000027937,0.0000028089,0.0000028152,0.0000028155, +0.0000028172,0.0000028207,0.0000028218,0.0000028207,0.0000028183, +0.0000028138,0.0000028072,0.0000027996,0.0000027926,0.0000027863, +0.0000027816,0.0000027806,0.0000027752,0.0000027822,0.0000027886, +0.0000027940,0.0000027977,0.0000027992,0.0000027999,0.0000028012, +0.0000028039,0.0000028084,0.0000028141,0.0000028180,0.0000028187, +0.0000028175,0.0000028150,0.0000028110,0.0000028040,0.0000027933, +0.0000027792,0.0000027633,0.0000027473,0.0000027339,0.0000027252, +0.0000027189,0.0000027163,0.0000027181,0.0000027243,0.0000027340, +0.0000027457,0.0000027571,0.0000027675,0.0000027784,0.0000027893, +0.0000027969,0.0000027998,0.0000028002,0.0000027989,0.0000027953, +0.0000027906,0.0000027876,0.0000027873,0.0000027876,0.0000027856, +0.0000027790,0.0000027688,0.0000027605,0.0000027583,0.0000027627, +0.0000027715,0.0000027803,0.0000027862,0.0000027889,0.0000027894, +0.0000027870,0.0000027803,0.0000027688,0.0000027509,0.0000027321, +0.0000027164,0.0000027075,0.0000027074,0.0000027120,0.0000027188, +0.0000027292,0.0000027425,0.0000027545,0.0000027595,0.0000027560, +0.0000027488,0.0000027451,0.0000027417,0.0000027385,0.0000027381, +0.0000027344,0.0000027230,0.0000027040,0.0000026838,0.0000026841, +0.0000027072,0.0000027254,0.0000027239,0.0000027164,0.0000027208, +0.0000027365,0.0000027461,0.0000027433,0.0000027372,0.0000027397, +0.0000027461,0.0000027491,0.0000027515,0.0000027535,0.0000027527, +0.0000027482,0.0000027403,0.0000027329,0.0000027293,0.0000027305, +0.0000027344,0.0000027383,0.0000027395,0.0000027370,0.0000027337, +0.0000027326,0.0000027335,0.0000027356,0.0000027402,0.0000027453, +0.0000027496,0.0000027503,0.0000027476,0.0000027457,0.0000027485, +0.0000027517,0.0000027501,0.0000027445,0.0000027414,0.0000027357, +0.0000027239,0.0000027136,0.0000027163,0.0000027278,0.0000027297, +0.0000027227,0.0000027121,0.0000027020,0.0000026887,0.0000026750, +0.0000026712,0.0000026785,0.0000026959,0.0000027148,0.0000027281, +0.0000027353,0.0000027409,0.0000027515,0.0000027659,0.0000027776, +0.0000027862,0.0000027941,0.0000027968,0.0000027944,0.0000027920, +0.0000027923,0.0000027872,0.0000027719,0.0000027602,0.0000027576, +0.0000027604,0.0000027633,0.0000027661,0.0000027733,0.0000027798, +0.0000027792,0.0000027765,0.0000027758,0.0000027803,0.0000027934, +0.0000028081,0.0000028158,0.0000028169,0.0000028156,0.0000028116, +0.0000028012,0.0000027891,0.0000027832,0.0000027823,0.0000027800, +0.0000027731,0.0000027622,0.0000027496,0.0000027400,0.0000027366, +0.0000027361,0.0000027357,0.0000027343,0.0000027313,0.0000027271, +0.0000027222,0.0000027150,0.0000027058,0.0000026984,0.0000026956, +0.0000026958,0.0000027009,0.0000027110,0.0000027223,0.0000027308, +0.0000027357,0.0000027385,0.0000027395,0.0000027364,0.0000027288, +0.0000027203,0.0000027149,0.0000027124,0.0000027140,0.0000027230, +0.0000027386,0.0000027517,0.0000027567,0.0000027584,0.0000027625, +0.0000027659,0.0000027654,0.0000027638,0.0000027659,0.0000027730, +0.0000027809,0.0000027893,0.0000027974,0.0000028010,0.0000027996, +0.0000027930,0.0000027856,0.0000027798,0.0000027757,0.0000027730, +0.0000027717,0.0000027708,0.0000027711,0.0000027720,0.0000027735, +0.0000027762,0.0000027781,0.0000027789,0.0000027778,0.0000027748, +0.0000027703,0.0000027642,0.0000027567,0.0000027483,0.0000027404, +0.0000027343,0.0000027296,0.0000027254,0.0000027214,0.0000027169, +0.0000027119,0.0000027070,0.0000027020,0.0000026957,0.0000026875, +0.0000026785,0.0000026712,0.0000026657,0.0000026620,0.0000026615, +0.0000026649,0.0000026716,0.0000026778,0.0000026809,0.0000026811, +0.0000026807,0.0000026802,0.0000026799,0.0000026784,0.0000026731, +0.0000026651,0.0000026602,0.0000026621,0.0000026672,0.0000026751, +0.0000026865,0.0000026988,0.0000027052,0.0000027010,0.0000026894, +0.0000026829,0.0000026876,0.0000026962,0.0000026959,0.0000026900, +0.0000026846,0.0000026836,0.0000026843,0.0000026865,0.0000026938, +0.0000027038,0.0000027107,0.0000027127,0.0000027096,0.0000027003, +0.0000026911,0.0000026875,0.0000026875,0.0000026882,0.0000026906, +0.0000026950,0.0000027016,0.0000027089,0.0000027168,0.0000027230, +0.0000027252,0.0000027225,0.0000027164,0.0000027073,0.0000027000, +0.0000026968,0.0000026955,0.0000026933,0.0000026884,0.0000026812, +0.0000026727,0.0000026668,0.0000026653,0.0000026705,0.0000026814, +0.0000026930,0.0000027065,0.0000027223,0.0000027372,0.0000027494, +0.0000027573,0.0000027585,0.0000027575,0.0000027602,0.0000027611, +0.0000027555,0.0000027503,0.0000027450,0.0000027372,0.0000027326, +0.0000027260,0.0000027181,0.0000027295,0.0000027577,0.0000027700, +0.0000027678,0.0000027700,0.0000027795,0.0000027911,0.0000027988, +0.0000027986,0.0000027938,0.0000027899,0.0000027902,0.0000027938, +0.0000027989,0.0000028055,0.0000028121,0.0000028165,0.0000028154, +0.0000028110,0.0000028054,0.0000027989,0.0000027910,0.0000027840, +0.0000027790,0.0000027719,0.0000027673,0.0000027663,0.0000027701, +0.0000027845,0.0000027996,0.0000028071,0.0000028079,0.0000028057, +0.0000028013,0.0000027974,0.0000027932,0.0000027891,0.0000027838, +0.0000027768,0.0000027700,0.0000027637,0.0000027574,0.0000027529, +0.0000027525,0.0000027544,0.0000027554,0.0000027525,0.0000027469, +0.0000027423,0.0000027413,0.0000027467,0.0000027572,0.0000027659, +0.0000027699,0.0000027698,0.0000027670,0.0000027622,0.0000027585, +0.0000027566,0.0000027588,0.0000027599,0.0000027604,0.0000027605, +0.0000027594,0.0000027589,0.0000027601,0.0000027629,0.0000027662, +0.0000027684,0.0000027700,0.0000027715,0.0000027722,0.0000027737, +0.0000027802,0.0000027905,0.0000027960,0.0000027938,0.0000027906, +0.0000027939,0.0000028027,0.0000028108,0.0000028168,0.0000028212, +0.0000028243,0.0000028248,0.0000028231,0.0000028203,0.0000028183, +0.0000028177,0.0000028182,0.0000028199,0.0000028214,0.0000028221, +0.0000028226,0.0000028227,0.0000028207,0.0000028159,0.0000028103, +0.0000028053,0.0000028010,0.0000027955,0.0000027879,0.0000027863, +0.0000027914,0.0000027929,0.0000027849,0.0000027741,0.0000027672, +0.0000027674,0.0000027783,0.0000027937,0.0000028081,0.0000028163, +0.0000028184,0.0000028199,0.0000028230,0.0000028242,0.0000028232, +0.0000028212,0.0000028168,0.0000028088,0.0000027990,0.0000027891, +0.0000027798,0.0000027724,0.0000027686,0.0000027694,0.0000027686, +0.0000027768,0.0000027838,0.0000027885,0.0000027911,0.0000027925, +0.0000027935,0.0000027950,0.0000027968,0.0000027994,0.0000028040, +0.0000028082,0.0000028090,0.0000028067,0.0000028015,0.0000027946, +0.0000027863,0.0000027757,0.0000027631,0.0000027513,0.0000027406, +0.0000027332,0.0000027288,0.0000027253,0.0000027225,0.0000027223, +0.0000027272,0.0000027373,0.0000027499,0.0000027626,0.0000027742, +0.0000027851,0.0000027965,0.0000028064,0.0000028116,0.0000028127, +0.0000028109,0.0000028062,0.0000028001,0.0000027957,0.0000027944, +0.0000027943,0.0000027931,0.0000027877,0.0000027778,0.0000027663, +0.0000027588,0.0000027591,0.0000027655,0.0000027742,0.0000027825, +0.0000027872,0.0000027886,0.0000027868,0.0000027821,0.0000027762, +0.0000027678,0.0000027561,0.0000027429,0.0000027314,0.0000027252, +0.0000027258,0.0000027311,0.0000027394,0.0000027510,0.0000027606, +0.0000027643,0.0000027608,0.0000027524,0.0000027451,0.0000027402, +0.0000027379,0.0000027393,0.0000027376,0.0000027280,0.0000027113, +0.0000026877,0.0000026783,0.0000026958,0.0000027207,0.0000027251, +0.0000027154,0.0000027168,0.0000027331,0.0000027468,0.0000027474, +0.0000027414,0.0000027414,0.0000027480,0.0000027517,0.0000027538, +0.0000027558,0.0000027551,0.0000027507,0.0000027431,0.0000027362, +0.0000027337,0.0000027369,0.0000027426,0.0000027459,0.0000027450, +0.0000027407,0.0000027342,0.0000027292,0.0000027283,0.0000027296, +0.0000027330,0.0000027382,0.0000027441,0.0000027486,0.0000027499, +0.0000027482,0.0000027487,0.0000027531,0.0000027551,0.0000027515, +0.0000027443,0.0000027374,0.0000027271,0.0000027174,0.0000027155, +0.0000027228,0.0000027285,0.0000027265,0.0000027213,0.0000027138, +0.0000027012,0.0000026828,0.0000026709,0.0000026721,0.0000026857, +0.0000027028,0.0000027157,0.0000027236,0.0000027277,0.0000027333, +0.0000027447,0.0000027612,0.0000027755,0.0000027862,0.0000027963, +0.0000028013,0.0000028000,0.0000027965,0.0000027953,0.0000027900, +0.0000027762,0.0000027652,0.0000027629,0.0000027663,0.0000027691, +0.0000027691,0.0000027725,0.0000027797,0.0000027820,0.0000027807, +0.0000027801,0.0000027814,0.0000027904,0.0000028060,0.0000028181, +0.0000028227,0.0000028231,0.0000028201,0.0000028094,0.0000027947, +0.0000027856,0.0000027843,0.0000027824,0.0000027755,0.0000027644, +0.0000027517,0.0000027409,0.0000027351,0.0000027326,0.0000027310, +0.0000027294,0.0000027274,0.0000027241,0.0000027186,0.0000027101, +0.0000027011,0.0000026967,0.0000026964,0.0000027025,0.0000027119, +0.0000027228,0.0000027324,0.0000027391,0.0000027427,0.0000027442, +0.0000027442,0.0000027409,0.0000027334,0.0000027252,0.0000027198, +0.0000027180,0.0000027198,0.0000027275,0.0000027406,0.0000027520, +0.0000027573,0.0000027597,0.0000027636,0.0000027675,0.0000027671, +0.0000027648,0.0000027652,0.0000027697,0.0000027767,0.0000027855, +0.0000027948,0.0000027993,0.0000027981,0.0000027905,0.0000027817, +0.0000027763,0.0000027742,0.0000027739,0.0000027749,0.0000027776, +0.0000027815,0.0000027853,0.0000027881,0.0000027899,0.0000027916, +0.0000027915,0.0000027901,0.0000027869,0.0000027802,0.0000027731, +0.0000027645,0.0000027559,0.0000027475,0.0000027403,0.0000027359, +0.0000027336,0.0000027322,0.0000027307,0.0000027281,0.0000027232, +0.0000027163,0.0000027083,0.0000026991,0.0000026884,0.0000026775, +0.0000026691,0.0000026631,0.0000026600,0.0000026603,0.0000026648, +0.0000026727,0.0000026792,0.0000026809,0.0000026791,0.0000026753, +0.0000026721,0.0000026708,0.0000026689,0.0000026631,0.0000026547, +0.0000026503,0.0000026560,0.0000026651,0.0000026783,0.0000026941, +0.0000027062,0.0000027087,0.0000027012,0.0000026887,0.0000026833, +0.0000026894,0.0000026978,0.0000026964,0.0000026888,0.0000026833, +0.0000026825,0.0000026837,0.0000026849,0.0000026894,0.0000026982, +0.0000027074,0.0000027126,0.0000027134,0.0000027105,0.0000027014, +0.0000026912,0.0000026859,0.0000026840,0.0000026837,0.0000026844, +0.0000026881,0.0000026949,0.0000027021,0.0000027091,0.0000027149, +0.0000027189,0.0000027209,0.0000027200,0.0000027159,0.0000027101, +0.0000027048,0.0000027007,0.0000026964,0.0000026910,0.0000026839, +0.0000026758,0.0000026683,0.0000026634,0.0000026629,0.0000026691, +0.0000026813,0.0000026986,0.0000027169,0.0000027318,0.0000027447, +0.0000027544,0.0000027566,0.0000027579,0.0000027613,0.0000027590, +0.0000027523,0.0000027492,0.0000027443,0.0000027365,0.0000027298, +0.0000027207,0.0000027188,0.0000027424,0.0000027676,0.0000027705, +0.0000027692,0.0000027792,0.0000027936,0.0000028010,0.0000028010, +0.0000027962,0.0000027931,0.0000027938,0.0000027962,0.0000028014, +0.0000028077,0.0000028138,0.0000028185,0.0000028202,0.0000028161, +0.0000028095,0.0000028044,0.0000028012,0.0000027970,0.0000027903, +0.0000027851,0.0000027800,0.0000027764,0.0000027772,0.0000027840, +0.0000027943,0.0000028017,0.0000028052,0.0000028033,0.0000028001, +0.0000028004,0.0000028020,0.0000028003,0.0000027960,0.0000027913, +0.0000027876,0.0000027847,0.0000027811,0.0000027753,0.0000027683, +0.0000027641,0.0000027630,0.0000027619,0.0000027563,0.0000027482, +0.0000027401,0.0000027340,0.0000027334,0.0000027391,0.0000027492, +0.0000027613,0.0000027708,0.0000027771,0.0000027802,0.0000027797, +0.0000027764,0.0000027715,0.0000027668,0.0000027615,0.0000027577, +0.0000027544,0.0000027517,0.0000027504,0.0000027513,0.0000027546, +0.0000027587,0.0000027621,0.0000027653,0.0000027676,0.0000027698, +0.0000027755,0.0000027848,0.0000027909,0.0000027906,0.0000027889, +0.0000027921,0.0000027997,0.0000028051,0.0000028092,0.0000028148, +0.0000028200,0.0000028218,0.0000028213,0.0000028193,0.0000028169, +0.0000028152,0.0000028150,0.0000028167,0.0000028197,0.0000028224, +0.0000028239,0.0000028239,0.0000028223,0.0000028179,0.0000028128, +0.0000028086,0.0000028046,0.0000027988,0.0000027917,0.0000027917, +0.0000027955,0.0000027934,0.0000027863,0.0000027790,0.0000027738, +0.0000027756,0.0000027845,0.0000027971,0.0000028092,0.0000028172, +0.0000028200,0.0000028222,0.0000028253,0.0000028269,0.0000028268, +0.0000028253,0.0000028220,0.0000028149,0.0000028045,0.0000027922, +0.0000027790,0.0000027670,0.0000027594,0.0000027576,0.0000027609, +0.0000027640,0.0000027723,0.0000027787,0.0000027824,0.0000027845, +0.0000027858,0.0000027864,0.0000027868,0.0000027871,0.0000027880, +0.0000027912,0.0000027958,0.0000027977,0.0000027957,0.0000027902, +0.0000027840,0.0000027785,0.0000027707,0.0000027615,0.0000027535, +0.0000027464,0.0000027401,0.0000027341,0.0000027284,0.0000027254, +0.0000027273,0.0000027355,0.0000027488,0.0000027624,0.0000027736, +0.0000027827,0.0000027901,0.0000027986,0.0000028079,0.0000028150, +0.0000028175,0.0000028169,0.0000028129,0.0000028075,0.0000028039, +0.0000028033,0.0000028041,0.0000028039,0.0000028010,0.0000027935, +0.0000027822,0.0000027707,0.0000027647,0.0000027655,0.0000027709, +0.0000027777,0.0000027830,0.0000027856,0.0000027858,0.0000027831, +0.0000027776,0.0000027696,0.0000027592,0.0000027479,0.0000027372, +0.0000027304,0.0000027302,0.0000027345,0.0000027402,0.0000027467, +0.0000027543,0.0000027599,0.0000027604,0.0000027568,0.0000027496, +0.0000027416,0.0000027383,0.0000027407,0.0000027402,0.0000027318, +0.0000027178,0.0000026941,0.0000026769,0.0000026849,0.0000027124, +0.0000027252,0.0000027152,0.0000027115,0.0000027268,0.0000027452, +0.0000027505,0.0000027465,0.0000027446,0.0000027497,0.0000027539, +0.0000027558,0.0000027572,0.0000027561,0.0000027513,0.0000027453, +0.0000027408,0.0000027411,0.0000027456,0.0000027512,0.0000027534, +0.0000027503,0.0000027433,0.0000027350,0.0000027277,0.0000027242, +0.0000027250,0.0000027290,0.0000027342,0.0000027399,0.0000027459, +0.0000027502,0.0000027498,0.0000027493,0.0000027537,0.0000027576, +0.0000027570,0.0000027512,0.0000027430,0.0000027334,0.0000027224, +0.0000027184,0.0000027209,0.0000027242,0.0000027250,0.0000027240, +0.0000027218,0.0000027150,0.0000026984,0.0000026805,0.0000026737, +0.0000026799,0.0000026918,0.0000027030,0.0000027108,0.0000027149, +0.0000027175,0.0000027245,0.0000027373,0.0000027550,0.0000027720, +0.0000027847,0.0000027958,0.0000028022,0.0000028016,0.0000027968, +0.0000027936,0.0000027873,0.0000027743,0.0000027667,0.0000027675, +0.0000027721,0.0000027751,0.0000027742,0.0000027751,0.0000027808, +0.0000027844,0.0000027839,0.0000027846,0.0000027863,0.0000027911, +0.0000028037,0.0000028178,0.0000028261,0.0000028283,0.0000028265, +0.0000028160,0.0000028004,0.0000027886,0.0000027855,0.0000027826, +0.0000027747,0.0000027637,0.0000027522,0.0000027426,0.0000027358, +0.0000027309,0.0000027269,0.0000027240,0.0000027225,0.0000027203, +0.0000027152,0.0000027073,0.0000026991,0.0000026970,0.0000027022, +0.0000027129,0.0000027257,0.0000027369,0.0000027449,0.0000027496, +0.0000027514,0.0000027513,0.0000027496,0.0000027452,0.0000027384, +0.0000027310,0.0000027262,0.0000027248,0.0000027259,0.0000027316, +0.0000027418,0.0000027516,0.0000027575,0.0000027607,0.0000027640, +0.0000027677,0.0000027688,0.0000027668,0.0000027658,0.0000027677, +0.0000027721,0.0000027804,0.0000027912,0.0000027973,0.0000027969, +0.0000027888,0.0000027787,0.0000027727,0.0000027721,0.0000027751, +0.0000027797,0.0000027846,0.0000027898,0.0000027938,0.0000027969, +0.0000027975,0.0000027957,0.0000027957,0.0000027935,0.0000027901, +0.0000027849,0.0000027771,0.0000027682,0.0000027596,0.0000027518, +0.0000027440,0.0000027373,0.0000027339,0.0000027336,0.0000027338, +0.0000027343,0.0000027338,0.0000027306,0.0000027239,0.0000027143, +0.0000027026,0.0000026893,0.0000026762,0.0000026665,0.0000026597, +0.0000026560,0.0000026559,0.0000026597,0.0000026662,0.0000026709, +0.0000026714,0.0000026680,0.0000026622,0.0000026576,0.0000026564, +0.0000026558,0.0000026530,0.0000026501,0.0000026486,0.0000026563, +0.0000026709,0.0000026883,0.0000027041,0.0000027120,0.0000027102, +0.0000026997,0.0000026882,0.0000026856,0.0000026926,0.0000026981, +0.0000026943,0.0000026859,0.0000026819,0.0000026824,0.0000026844, +0.0000026863,0.0000026891,0.0000026953,0.0000027036,0.0000027106, +0.0000027133,0.0000027131,0.0000027095,0.0000027021,0.0000026927, +0.0000026852,0.0000026814,0.0000026799,0.0000026794,0.0000026815, +0.0000026866,0.0000026929,0.0000026991,0.0000027051,0.0000027117, +0.0000027180,0.0000027207,0.0000027214,0.0000027192,0.0000027142, +0.0000027077,0.0000027006,0.0000026933,0.0000026864,0.0000026802, +0.0000026736,0.0000026666,0.0000026643,0.0000026668,0.0000026761, +0.0000026929,0.0000027110,0.0000027261,0.0000027412,0.0000027525, +0.0000027558,0.0000027588,0.0000027610,0.0000027558,0.0000027505, +0.0000027494,0.0000027436,0.0000027349,0.0000027263,0.0000027180, +0.0000027263,0.0000027569,0.0000027735,0.0000027704,0.0000027746, +0.0000027918,0.0000028025,0.0000028013,0.0000027972,0.0000027949, +0.0000027955,0.0000027980,0.0000028022,0.0000028090,0.0000028178, +0.0000028230,0.0000028239,0.0000028212,0.0000028152,0.0000028081, +0.0000028038,0.0000028027,0.0000028001,0.0000027940,0.0000027892, +0.0000027859,0.0000027841,0.0000027893,0.0000027958,0.0000027998, +0.0000028024,0.0000028016,0.0000027978,0.0000027995,0.0000028059, +0.0000028082,0.0000028054,0.0000028032,0.0000028033,0.0000028050, +0.0000028058,0.0000028031,0.0000027962,0.0000027868,0.0000027803, +0.0000027777,0.0000027769,0.0000027716,0.0000027616,0.0000027492, +0.0000027382,0.0000027340,0.0000027354,0.0000027398,0.0000027469, +0.0000027568,0.0000027676,0.0000027779,0.0000027842,0.0000027868, +0.0000027861,0.0000027824,0.0000027771,0.0000027698,0.0000027627, +0.0000027563,0.0000027510,0.0000027489,0.0000027497,0.0000027535, +0.0000027577,0.0000027614,0.0000027645,0.0000027677,0.0000027742, +0.0000027826,0.0000027878,0.0000027885,0.0000027888,0.0000027925, +0.0000027992,0.0000028031,0.0000028037,0.0000028075,0.0000028142, +0.0000028177,0.0000028170,0.0000028143,0.0000028126,0.0000028125, +0.0000028134,0.0000028149,0.0000028168,0.0000028193,0.0000028216, +0.0000028221,0.0000028201,0.0000028159,0.0000028128,0.0000028111, +0.0000028085,0.0000028029,0.0000027966,0.0000027985,0.0000028019, +0.0000027974,0.0000027901,0.0000027840,0.0000027815,0.0000027850, +0.0000027940,0.0000028031,0.0000028131,0.0000028200,0.0000028221, +0.0000028237,0.0000028266,0.0000028279,0.0000028280,0.0000028277, +0.0000028256,0.0000028201,0.0000028117,0.0000028008,0.0000027869, +0.0000027714,0.0000027585,0.0000027521,0.0000027516,0.0000027561, +0.0000027621,0.0000027691,0.0000027743,0.0000027777,0.0000027800, +0.0000027810,0.0000027808,0.0000027803,0.0000027803,0.0000027813, +0.0000027844,0.0000027893,0.0000027928,0.0000027924,0.0000027890, +0.0000027844,0.0000027793,0.0000027738,0.0000027680,0.0000027613, +0.0000027530,0.0000027443,0.0000027374,0.0000027337,0.0000027341, +0.0000027392,0.0000027496,0.0000027633,0.0000027758,0.0000027845, +0.0000027902,0.0000027945,0.0000027988,0.0000028056,0.0000028129, +0.0000028175,0.0000028184,0.0000028161,0.0000028118,0.0000028086, +0.0000028082,0.0000028093,0.0000028108,0.0000028101,0.0000028058, +0.0000027974,0.0000027867,0.0000027785,0.0000027762,0.0000027791, +0.0000027842,0.0000027873,0.0000027875,0.0000027858,0.0000027831, +0.0000027799,0.0000027743,0.0000027649,0.0000027520,0.0000027377, +0.0000027258,0.0000027204,0.0000027208,0.0000027256,0.0000027316, +0.0000027398,0.0000027505,0.0000027582,0.0000027601,0.0000027558, +0.0000027466,0.0000027411,0.0000027418,0.0000027417,0.0000027347, +0.0000027229,0.0000027009,0.0000026776,0.0000026777,0.0000027019, +0.0000027229,0.0000027179,0.0000027065,0.0000027183,0.0000027403, +0.0000027517,0.0000027505,0.0000027476,0.0000027514,0.0000027555, +0.0000027570,0.0000027577,0.0000027565,0.0000027519,0.0000027469, +0.0000027469,0.0000027502,0.0000027549,0.0000027588,0.0000027599, +0.0000027569,0.0000027502,0.0000027418,0.0000027333,0.0000027267, +0.0000027246,0.0000027273,0.0000027332,0.0000027396,0.0000027452, +0.0000027504,0.0000027520,0.0000027503,0.0000027533,0.0000027583, +0.0000027598,0.0000027563,0.0000027501,0.0000027420,0.0000027318, +0.0000027234,0.0000027225,0.0000027227,0.0000027215,0.0000027225, +0.0000027229,0.0000027218,0.0000027134,0.0000026974,0.0000026849, +0.0000026821,0.0000026853,0.0000026900,0.0000026959,0.0000027014, +0.0000027056,0.0000027094,0.0000027177,0.0000027313,0.0000027482, +0.0000027662,0.0000027813,0.0000027938,0.0000028010,0.0000028009, +0.0000027951,0.0000027883,0.0000027793,0.0000027686,0.0000027658, +0.0000027703,0.0000027771,0.0000027804,0.0000027803,0.0000027815, +0.0000027857,0.0000027885,0.0000027877,0.0000027886,0.0000027920, +0.0000027953,0.0000028038,0.0000028172,0.0000028278,0.0000028317, +0.0000028308,0.0000028215,0.0000028054,0.0000027920,0.0000027866, +0.0000027816,0.0000027723,0.0000027614,0.0000027517,0.0000027441, +0.0000027382,0.0000027316,0.0000027243,0.0000027186,0.0000027171, +0.0000027161,0.0000027125,0.0000027065,0.0000027021,0.0000027032, +0.0000027110,0.0000027233,0.0000027360,0.0000027462,0.0000027520, +0.0000027548,0.0000027550,0.0000027541,0.0000027515,0.0000027471, +0.0000027415,0.0000027365,0.0000027334,0.0000027322,0.0000027321, +0.0000027354,0.0000027430,0.0000027514,0.0000027575,0.0000027614, +0.0000027643,0.0000027672,0.0000027694,0.0000027696,0.0000027689, +0.0000027685,0.0000027693,0.0000027750,0.0000027858,0.0000027948, +0.0000027956,0.0000027879,0.0000027768,0.0000027705,0.0000027705, +0.0000027754,0.0000027826,0.0000027881,0.0000027922,0.0000027945, +0.0000027957,0.0000027960,0.0000027948,0.0000027926,0.0000027903, +0.0000027880,0.0000027845,0.0000027788,0.0000027718,0.0000027650, +0.0000027574,0.0000027503,0.0000027425,0.0000027355,0.0000027318, +0.0000027318,0.0000027325,0.0000027331,0.0000027333,0.0000027320, +0.0000027270,0.0000027186,0.0000027068,0.0000026927,0.0000026786, +0.0000026676,0.0000026600,0.0000026559,0.0000026547,0.0000026551, +0.0000026563,0.0000026565,0.0000026547,0.0000026509,0.0000026473, +0.0000026448,0.0000026455,0.0000026504,0.0000026517,0.0000026545, +0.0000026592,0.0000026689,0.0000026844,0.0000027001,0.0000027104, +0.0000027122,0.0000027063,0.0000026961,0.0000026894,0.0000026911, +0.0000026970,0.0000026978,0.0000026905,0.0000026822,0.0000026802, +0.0000026826,0.0000026861,0.0000026883,0.0000026899,0.0000026928, +0.0000026983,0.0000027043,0.0000027083,0.0000027098,0.0000027092, +0.0000027062,0.0000026998,0.0000026915,0.0000026838,0.0000026794, +0.0000026773,0.0000026765,0.0000026771,0.0000026800,0.0000026847, +0.0000026907,0.0000026984,0.0000027078,0.0000027154,0.0000027198, +0.0000027226,0.0000027240,0.0000027219,0.0000027157,0.0000027071, +0.0000026980,0.0000026905,0.0000026849,0.0000026795,0.0000026733, +0.0000026703,0.0000026707,0.0000026769,0.0000026906,0.0000027069, +0.0000027232,0.0000027404,0.0000027520,0.0000027563,0.0000027603, +0.0000027600,0.0000027534,0.0000027511,0.0000027512,0.0000027433, +0.0000027323,0.0000027228,0.0000027200,0.0000027373,0.0000027678, +0.0000027751,0.0000027725,0.0000027845,0.0000028011,0.0000028031, +0.0000027967,0.0000027942,0.0000027951,0.0000027971,0.0000028020, +0.0000028111,0.0000028196,0.0000028273,0.0000028294,0.0000028262, +0.0000028195,0.0000028128,0.0000028064,0.0000028030,0.0000028021, +0.0000027996,0.0000027946,0.0000027909,0.0000027906,0.0000027938, +0.0000028005,0.0000028038,0.0000028038,0.0000028024,0.0000027980, +0.0000027972,0.0000028046,0.0000028119,0.0000028124,0.0000028103, +0.0000028117,0.0000028152,0.0000028192,0.0000028208,0.0000028179, +0.0000028096,0.0000027987,0.0000027902,0.0000027861,0.0000027837, +0.0000027792,0.0000027736,0.0000027659,0.0000027550,0.0000027446, +0.0000027402,0.0000027409,0.0000027439,0.0000027484,0.0000027552, +0.0000027638,0.0000027731,0.0000027808,0.0000027840,0.0000027833, +0.0000027803,0.0000027775,0.0000027726,0.0000027672,0.0000027605, +0.0000027546,0.0000027527,0.0000027541,0.0000027577,0.0000027617, +0.0000027653,0.0000027693,0.0000027753,0.0000027818,0.0000027855, +0.0000027867,0.0000027889,0.0000027947,0.0000028022,0.0000028057, +0.0000028048,0.0000028044,0.0000028081,0.0000028130,0.0000028145, +0.0000028130,0.0000028120,0.0000028126,0.0000028143,0.0000028160, +0.0000028178,0.0000028192,0.0000028206,0.0000028203,0.0000028164, +0.0000028122,0.0000028114,0.0000028123,0.0000028121,0.0000028075, +0.0000028031,0.0000028062,0.0000028071,0.0000028024,0.0000027956, +0.0000027902,0.0000027909,0.0000027979,0.0000028051,0.0000028125, +0.0000028198,0.0000028249,0.0000028261,0.0000028267,0.0000028281, +0.0000028282,0.0000028276,0.0000028271,0.0000028259,0.0000028223, +0.0000028164,0.0000028082,0.0000027974,0.0000027834,0.0000027689, +0.0000027570,0.0000027513,0.0000027514,0.0000027555,0.0000027612, +0.0000027659,0.0000027698,0.0000027731,0.0000027758,0.0000027771, +0.0000027769,0.0000027765,0.0000027772,0.0000027794,0.0000027829, +0.0000027872,0.0000027906,0.0000027913,0.0000027900,0.0000027873, +0.0000027844,0.0000027806,0.0000027758,0.0000027679,0.0000027577, +0.0000027481,0.0000027428,0.0000027425,0.0000027462,0.0000027531, +0.0000027633,0.0000027761,0.0000027879,0.0000027956,0.0000027995, +0.0000028012,0.0000028024,0.0000028047,0.0000028098,0.0000028150, +0.0000028177,0.0000028172,0.0000028137,0.0000028098,0.0000028077, +0.0000028076,0.0000028098,0.0000028117,0.0000028111,0.0000028064, +0.0000027983,0.0000027900,0.0000027858,0.0000027871,0.0000027927, +0.0000027978,0.0000027992,0.0000027969,0.0000027927,0.0000027878, +0.0000027815,0.0000027726,0.0000027609,0.0000027471,0.0000027332, +0.0000027225,0.0000027181,0.0000027184,0.0000027236,0.0000027324, +0.0000027448,0.0000027573,0.0000027631,0.0000027612,0.0000027533, +0.0000027459,0.0000027432,0.0000027419,0.0000027367,0.0000027269, +0.0000027068,0.0000026818,0.0000026749,0.0000026929,0.0000027186, +0.0000027199,0.0000027044,0.0000027082,0.0000027319,0.0000027500, +0.0000027534,0.0000027508,0.0000027527,0.0000027565,0.0000027575, +0.0000027579,0.0000027563,0.0000027529,0.0000027506,0.0000027528, +0.0000027590,0.0000027637,0.0000027660,0.0000027670,0.0000027657, +0.0000027609,0.0000027526,0.0000027427,0.0000027338,0.0000027282, +0.0000027277,0.0000027325,0.0000027403,0.0000027473,0.0000027526, +0.0000027546,0.0000027517,0.0000027515,0.0000027564,0.0000027592, +0.0000027586,0.0000027549,0.0000027501,0.0000027417,0.0000027330, +0.0000027277,0.0000027250,0.0000027207,0.0000027194,0.0000027211, +0.0000027217,0.0000027198,0.0000027125,0.0000027026,0.0000026939, +0.0000026875,0.0000026839,0.0000026824,0.0000026862,0.0000026930, +0.0000026990,0.0000027048,0.0000027140,0.0000027267,0.0000027419, +0.0000027586,0.0000027760,0.0000027904,0.0000027990,0.0000027993, +0.0000027930,0.0000027822,0.0000027690,0.0000027597,0.0000027636, +0.0000027727,0.0000027808,0.0000027854,0.0000027885,0.0000027918, +0.0000027945,0.0000027954,0.0000027937,0.0000027942,0.0000027985, +0.0000028015,0.0000028066,0.0000028178,0.0000028287,0.0000028334, +0.0000028332,0.0000028248,0.0000028088,0.0000027948,0.0000027876, +0.0000027805,0.0000027699,0.0000027591,0.0000027510,0.0000027454, +0.0000027405,0.0000027333,0.0000027228,0.0000027141,0.0000027124, +0.0000027128,0.0000027114,0.0000027088,0.0000027082,0.0000027127, +0.0000027205,0.0000027300,0.0000027392,0.0000027464,0.0000027518, +0.0000027537,0.0000027540,0.0000027530,0.0000027508,0.0000027476, +0.0000027440,0.0000027419,0.0000027407,0.0000027396,0.0000027384, +0.0000027391,0.0000027440,0.0000027514,0.0000027574,0.0000027613, +0.0000027639,0.0000027666,0.0000027699,0.0000027725,0.0000027732, +0.0000027715,0.0000027690,0.0000027708,0.0000027799,0.0000027900, +0.0000027934,0.0000027875,0.0000027763,0.0000027689,0.0000027693, +0.0000027751,0.0000027824,0.0000027870,0.0000027895,0.0000027903, +0.0000027904,0.0000027903,0.0000027902,0.0000027902,0.0000027897, +0.0000027874,0.0000027853,0.0000027822,0.0000027780,0.0000027733, +0.0000027687,0.0000027635,0.0000027569,0.0000027489,0.0000027410, +0.0000027356,0.0000027338,0.0000027333,0.0000027326,0.0000027321, +0.0000027309,0.0000027271,0.0000027200,0.0000027102,0.0000026985, +0.0000026861,0.0000026755,0.0000026674,0.0000026623,0.0000026590, +0.0000026556,0.0000026522,0.0000026480,0.0000026462,0.0000026445, +0.0000026433,0.0000026459,0.0000026496,0.0000026566,0.0000026640, +0.0000026708,0.0000026782,0.0000026870,0.0000026975,0.0000027072, +0.0000027108,0.0000027074,0.0000027003,0.0000026950,0.0000026936, +0.0000026984,0.0000027012,0.0000026962,0.0000026863,0.0000026794, +0.0000026792,0.0000026825,0.0000026863,0.0000026885,0.0000026892, +0.0000026900,0.0000026939,0.0000027002,0.0000027047,0.0000027080, +0.0000027091,0.0000027080,0.0000027033,0.0000026961,0.0000026878, +0.0000026807,0.0000026754,0.0000026732,0.0000026730,0.0000026738, +0.0000026759,0.0000026801,0.0000026876,0.0000026982,0.0000027087, +0.0000027150,0.0000027186,0.0000027221,0.0000027252,0.0000027262, +0.0000027228,0.0000027155,0.0000027060,0.0000026967,0.0000026893, +0.0000026837,0.0000026784,0.0000026757,0.0000026753,0.0000026797, +0.0000026906,0.0000027055,0.0000027240,0.0000027432,0.0000027542, +0.0000027595,0.0000027630,0.0000027593,0.0000027525,0.0000027533, +0.0000027530,0.0000027430,0.0000027296,0.0000027203,0.0000027238, +0.0000027504,0.0000027744,0.0000027756,0.0000027772,0.0000027947, +0.0000028034,0.0000027982,0.0000027929,0.0000027923,0.0000027954, +0.0000028009,0.0000028106,0.0000028215,0.0000028278,0.0000028307, +0.0000028308,0.0000028250,0.0000028171,0.0000028102,0.0000028044, +0.0000028008,0.0000027980,0.0000027943,0.0000027910,0.0000027911, +0.0000027962,0.0000028024,0.0000028066,0.0000028083,0.0000028062, +0.0000028008,0.0000027979,0.0000028008,0.0000028083,0.0000028132, +0.0000028144,0.0000028158,0.0000028206,0.0000028245,0.0000028271, +0.0000028266,0.0000028212,0.0000028102,0.0000027974,0.0000027868, +0.0000027820,0.0000027811,0.0000027795,0.0000027759,0.0000027709, +0.0000027679,0.0000027637,0.0000027570,0.0000027515,0.0000027471, +0.0000027470,0.0000027501,0.0000027558,0.0000027619,0.0000027679, +0.0000027726,0.0000027742,0.0000027740,0.0000027740,0.0000027731, +0.0000027687,0.0000027623,0.0000027556,0.0000027530,0.0000027539, +0.0000027573,0.0000027620,0.0000027670,0.0000027719,0.0000027764, +0.0000027799,0.0000027820,0.0000027840,0.0000027886,0.0000027968, +0.0000028057,0.0000028097,0.0000028081,0.0000028040,0.0000028034, +0.0000028080,0.0000028136,0.0000028159,0.0000028151,0.0000028151, +0.0000028169,0.0000028196,0.0000028226,0.0000028242,0.0000028238, +0.0000028202,0.0000028138,0.0000028097,0.0000028101,0.0000028135, +0.0000028145,0.0000028115,0.0000028100,0.0000028133,0.0000028125, +0.0000028078,0.0000028018,0.0000027970,0.0000028008,0.0000028102, +0.0000028176,0.0000028236,0.0000028297,0.0000028318,0.0000028319, +0.0000028318,0.0000028308,0.0000028286,0.0000028260,0.0000028243, +0.0000028232,0.0000028209,0.0000028171,0.0000028123,0.0000028053, +0.0000027948,0.0000027831,0.0000027707,0.0000027606,0.0000027551, +0.0000027543,0.0000027568,0.0000027607,0.0000027623,0.0000027650, +0.0000027688,0.0000027721,0.0000027741,0.0000027750,0.0000027755, +0.0000027766,0.0000027785,0.0000027808,0.0000027831,0.0000027850, +0.0000027866,0.0000027886,0.0000027904,0.0000027912,0.0000027897, +0.0000027848,0.0000027760,0.0000027654,0.0000027558,0.0000027496, +0.0000027485,0.0000027527,0.0000027615,0.0000027736,0.0000027871, +0.0000027990,0.0000028067,0.0000028099,0.0000028096,0.0000028075, +0.0000028064,0.0000028078,0.0000028121,0.0000028164,0.0000028180, +0.0000028169,0.0000028130,0.0000028089,0.0000028056,0.0000028055, +0.0000028085,0.0000028107,0.0000028102,0.0000028054,0.0000027982, +0.0000027922,0.0000027908,0.0000027944,0.0000028001,0.0000028047, +0.0000028064,0.0000028060,0.0000028039,0.0000027990,0.0000027888, +0.0000027741,0.0000027579,0.0000027436,0.0000027324,0.0000027254, +0.0000027234,0.0000027264,0.0000027351,0.0000027475,0.0000027597, +0.0000027669,0.0000027656,0.0000027583,0.0000027500,0.0000027437, +0.0000027403,0.0000027377,0.0000027297,0.0000027106,0.0000026858, +0.0000026758,0.0000026860,0.0000027129,0.0000027227,0.0000027064, +0.0000027003,0.0000027210,0.0000027449,0.0000027548,0.0000027535, +0.0000027537,0.0000027572,0.0000027573,0.0000027573,0.0000027559, +0.0000027537,0.0000027547,0.0000027597,0.0000027662,0.0000027716, +0.0000027741,0.0000027760,0.0000027768,0.0000027741,0.0000027665, +0.0000027550,0.0000027427,0.0000027334,0.0000027298,0.0000027314, +0.0000027391,0.0000027491,0.0000027569,0.0000027595,0.0000027557, +0.0000027496,0.0000027521,0.0000027572,0.0000027589,0.0000027583, +0.0000027559,0.0000027506,0.0000027423,0.0000027365,0.0000027311, +0.0000027237,0.0000027180,0.0000027174,0.0000027191,0.0000027197, +0.0000027186,0.0000027156,0.0000027086,0.0000026973,0.0000026870, +0.0000026799,0.0000026771,0.0000026807,0.0000026886,0.0000026967, +0.0000027038,0.0000027129,0.0000027234,0.0000027356,0.0000027512, +0.0000027693,0.0000027861,0.0000027965,0.0000027975,0.0000027912, +0.0000027775,0.0000027603,0.0000027525,0.0000027617,0.0000027765, +0.0000027851,0.0000027926,0.0000028002,0.0000028056,0.0000028070, +0.0000028049,0.0000028024,0.0000028029,0.0000028072,0.0000028098, +0.0000028119,0.0000028197,0.0000028293,0.0000028339,0.0000028344, +0.0000028268,0.0000028109,0.0000027961,0.0000027879,0.0000027796, +0.0000027683,0.0000027583,0.0000027515,0.0000027473,0.0000027426, +0.0000027344,0.0000027215,0.0000027105,0.0000027090,0.0000027116, +0.0000027126,0.0000027133,0.0000027158,0.0000027204,0.0000027252, +0.0000027300,0.0000027363,0.0000027420,0.0000027479,0.0000027523, +0.0000027534,0.0000027528,0.0000027512,0.0000027494,0.0000027476, +0.0000027471,0.0000027469,0.0000027455,0.0000027433,0.0000027425, +0.0000027452,0.0000027508,0.0000027567,0.0000027609,0.0000027633, +0.0000027658,0.0000027703,0.0000027751,0.0000027771,0.0000027746, +0.0000027689,0.0000027672,0.0000027740,0.0000027849,0.0000027899, +0.0000027868,0.0000027764,0.0000027681,0.0000027683,0.0000027746, +0.0000027811,0.0000027839,0.0000027847,0.0000027849,0.0000027855, +0.0000027863,0.0000027881,0.0000027904,0.0000027920,0.0000027920, +0.0000027903,0.0000027872,0.0000027840,0.0000027810,0.0000027781, +0.0000027748,0.0000027707,0.0000027651,0.0000027580,0.0000027505, +0.0000027445,0.0000027411,0.0000027393,0.0000027370,0.0000027342, +0.0000027316,0.0000027275,0.0000027208,0.0000027127,0.0000027042, +0.0000026951,0.0000026868,0.0000026794,0.0000026732,0.0000026679, +0.0000026624,0.0000026567,0.0000026528,0.0000026518,0.0000026536, +0.0000026576,0.0000026627,0.0000026683,0.0000026747,0.0000026818, +0.0000026887,0.0000026944,0.0000026990,0.0000027036,0.0000027069, +0.0000027066,0.0000027019,0.0000026974,0.0000026963,0.0000027001, +0.0000027040,0.0000027022,0.0000026930,0.0000026828,0.0000026785, +0.0000026792,0.0000026822,0.0000026848,0.0000026865,0.0000026887, +0.0000026906,0.0000026955,0.0000027034,0.0000027113,0.0000027172, +0.0000027200,0.0000027195,0.0000027150,0.0000027074,0.0000026982, +0.0000026881,0.0000026787,0.0000026720,0.0000026684,0.0000026687, +0.0000026702,0.0000026727,0.0000026783,0.0000026892,0.0000027021, +0.0000027122,0.0000027173,0.0000027198,0.0000027228,0.0000027255, +0.0000027271,0.0000027265,0.0000027216,0.0000027127,0.0000027016, +0.0000026916,0.0000026849,0.0000026810,0.0000026794,0.0000026790, +0.0000026823,0.0000026918,0.0000027073,0.0000027289,0.0000027481, +0.0000027581,0.0000027642,0.0000027649,0.0000027575,0.0000027538, +0.0000027570,0.0000027544,0.0000027420,0.0000027275,0.0000027200, +0.0000027308,0.0000027619,0.0000027776,0.0000027770,0.0000027854, +0.0000028003,0.0000028004,0.0000027927,0.0000027903,0.0000027923, +0.0000027987,0.0000028092,0.0000028195,0.0000028260,0.0000028294, +0.0000028291,0.0000028282,0.0000028228,0.0000028151,0.0000028075, +0.0000028010,0.0000027951,0.0000027896,0.0000027861,0.0000027871, +0.0000027930,0.0000028010,0.0000028069,0.0000028095,0.0000028097, +0.0000028048,0.0000028003,0.0000028007,0.0000028044,0.0000028092, +0.0000028141,0.0000028188,0.0000028230,0.0000028262,0.0000028264, +0.0000028249,0.0000028223,0.0000028168,0.0000028069,0.0000027947, +0.0000027827,0.0000027734,0.0000027676,0.0000027679,0.0000027723, +0.0000027736,0.0000027720,0.0000027717,0.0000027728,0.0000027719, +0.0000027649,0.0000027559,0.0000027501,0.0000027505,0.0000027553, +0.0000027606,0.0000027641,0.0000027654,0.0000027663,0.0000027683, +0.0000027697,0.0000027675,0.0000027609,0.0000027532,0.0000027489, +0.0000027488,0.0000027513,0.0000027558,0.0000027617,0.0000027679, +0.0000027732,0.0000027764,0.0000027782,0.0000027810,0.0000027872, +0.0000027973,0.0000028069,0.0000028110,0.0000028100,0.0000028061, +0.0000028036,0.0000028062,0.0000028137,0.0000028197,0.0000028208, +0.0000028209,0.0000028229,0.0000028267,0.0000028297,0.0000028299, +0.0000028264,0.0000028194,0.0000028128,0.0000028099,0.0000028111, +0.0000028142,0.0000028150,0.0000028132,0.0000028149,0.0000028193, +0.0000028176,0.0000028128,0.0000028071,0.0000028034,0.0000028095, +0.0000028195,0.0000028272,0.0000028345,0.0000028394,0.0000028400, +0.0000028388,0.0000028382,0.0000028360,0.0000028307,0.0000028254, +0.0000028218,0.0000028195,0.0000028172,0.0000028144,0.0000028118, +0.0000028083,0.0000028024,0.0000027947,0.0000027856,0.0000027759, +0.0000027677,0.0000027621,0.0000027599,0.0000027597,0.0000027630, +0.0000027613,0.0000027620,0.0000027650,0.0000027687,0.0000027714, +0.0000027735,0.0000027750,0.0000027759,0.0000027760,0.0000027756, +0.0000027755,0.0000027763,0.0000027796,0.0000027865,0.0000027944, +0.0000027990,0.0000027986,0.0000027940,0.0000027863,0.0000027771, +0.0000027666,0.0000027566,0.0000027515,0.0000027539,0.0000027637, +0.0000027772,0.0000027917,0.0000028051,0.0000028148,0.0000028188, +0.0000028179,0.0000028131,0.0000028075,0.0000028044,0.0000028058, +0.0000028102,0.0000028152,0.0000028170,0.0000028157,0.0000028123, +0.0000028077,0.0000028050,0.0000028068,0.0000028110,0.0000028131, +0.0000028121,0.0000028070,0.0000027992,0.0000027938,0.0000027942, +0.0000027985,0.0000028032,0.0000028068,0.0000028092,0.0000028105, +0.0000028108,0.0000028062,0.0000027941,0.0000027764,0.0000027574, +0.0000027416,0.0000027316,0.0000027282,0.0000027301,0.0000027389, +0.0000027514,0.0000027626,0.0000027680,0.0000027666,0.0000027588, +0.0000027492,0.0000027418,0.0000027386,0.0000027384,0.0000027321, +0.0000027124,0.0000026882,0.0000026776,0.0000026824,0.0000027066, +0.0000027232,0.0000027100,0.0000026957,0.0000027097,0.0000027366, +0.0000027531,0.0000027552,0.0000027543,0.0000027571,0.0000027569, +0.0000027556,0.0000027552,0.0000027549,0.0000027577,0.0000027653, +0.0000027725,0.0000027767,0.0000027805,0.0000027846,0.0000027879, +0.0000027884,0.0000027829,0.0000027717,0.0000027567,0.0000027421, +0.0000027325,0.0000027304,0.0000027356,0.0000027472,0.0000027596, +0.0000027666,0.0000027639,0.0000027533,0.0000027478,0.0000027524, +0.0000027574,0.0000027607,0.0000027617,0.0000027583,0.0000027505, +0.0000027441,0.0000027404,0.0000027323,0.0000027215,0.0000027155, +0.0000027142,0.0000027161,0.0000027183,0.0000027198,0.0000027177, +0.0000027086,0.0000026949,0.0000026837,0.0000026777,0.0000026764, +0.0000026803,0.0000026885,0.0000026978,0.0000027061,0.0000027141, +0.0000027222,0.0000027309,0.0000027443,0.0000027636,0.0000027817, +0.0000027939,0.0000027970,0.0000027909,0.0000027756,0.0000027559, +0.0000027514,0.0000027654,0.0000027823,0.0000027929,0.0000028043, +0.0000028153,0.0000028211,0.0000028213,0.0000028174,0.0000028137, +0.0000028140,0.0000028171,0.0000028187,0.0000028187,0.0000028228, +0.0000028299,0.0000028333,0.0000028340,0.0000028278,0.0000028120, +0.0000027962,0.0000027871,0.0000027787,0.0000027680,0.0000027588, +0.0000027536,0.0000027500,0.0000027450,0.0000027347,0.0000027190, +0.0000027079,0.0000027077,0.0000027116,0.0000027158,0.0000027189, +0.0000027214,0.0000027226,0.0000027238,0.0000027255,0.0000027309, +0.0000027383,0.0000027466,0.0000027540,0.0000027567,0.0000027560, +0.0000027539,0.0000027519,0.0000027508,0.0000027508,0.0000027508, +0.0000027498,0.0000027476,0.0000027461,0.0000027469,0.0000027506, +0.0000027556,0.0000027604,0.0000027637,0.0000027661,0.0000027707, +0.0000027768,0.0000027799,0.0000027765,0.0000027679,0.0000027629, +0.0000027673,0.0000027787,0.0000027869,0.0000027858,0.0000027771, +0.0000027684,0.0000027678,0.0000027741,0.0000027798,0.0000027808, +0.0000027796,0.0000027800,0.0000027821,0.0000027846,0.0000027871, +0.0000027907,0.0000027941,0.0000027954,0.0000027947,0.0000027918, +0.0000027875,0.0000027835,0.0000027808,0.0000027782,0.0000027749, +0.0000027707,0.0000027657,0.0000027602,0.0000027546,0.0000027513, +0.0000027487,0.0000027469,0.0000027442,0.0000027402,0.0000027359, +0.0000027307,0.0000027239,0.0000027170,0.0000027106,0.0000027038, +0.0000026971,0.0000026903,0.0000026839,0.0000026787,0.0000026744, +0.0000026713,0.0000026701,0.0000026718,0.0000026762,0.0000026817, +0.0000026859,0.0000026883,0.0000026906,0.0000026941,0.0000026982, +0.0000027016,0.0000027032,0.0000027037,0.0000027039,0.0000027021, +0.0000026998,0.0000026982,0.0000027005,0.0000027048,0.0000027050, +0.0000026991,0.0000026895,0.0000026815,0.0000026789,0.0000026794, +0.0000026812,0.0000026833,0.0000026861,0.0000026909,0.0000026973, +0.0000027058,0.0000027162,0.0000027256,0.0000027319,0.0000027345, +0.0000027340,0.0000027300,0.0000027226,0.0000027131,0.0000027024, +0.0000026908,0.0000026800,0.0000026722,0.0000026695,0.0000026694, +0.0000026701,0.0000026728,0.0000026797,0.0000026923,0.0000027054, +0.0000027155,0.0000027213,0.0000027242,0.0000027259,0.0000027268, +0.0000027272,0.0000027261,0.0000027223,0.0000027137,0.0000027016, +0.0000026909,0.0000026849,0.0000026827,0.0000026820,0.0000026821, +0.0000026856,0.0000026950,0.0000027132,0.0000027368,0.0000027542, +0.0000027641,0.0000027682,0.0000027642,0.0000027561,0.0000027575, +0.0000027623,0.0000027561,0.0000027401,0.0000027256,0.0000027226, +0.0000027410,0.0000027696,0.0000027775,0.0000027802,0.0000027937, +0.0000028006,0.0000027946,0.0000027884,0.0000027892,0.0000027962, +0.0000028067,0.0000028165,0.0000028226,0.0000028257,0.0000028265, +0.0000028250,0.0000028246,0.0000028213,0.0000028128,0.0000028027, +0.0000027938,0.0000027863,0.0000027825,0.0000027829,0.0000027883, +0.0000027961,0.0000028047,0.0000028110,0.0000028115,0.0000028096, +0.0000028050,0.0000028037,0.0000028059,0.0000028099,0.0000028153, +0.0000028214,0.0000028249,0.0000028249,0.0000028213,0.0000028186, +0.0000028190,0.0000028205,0.0000028185,0.0000028111,0.0000027995, +0.0000027877,0.0000027769,0.0000027677,0.0000027618,0.0000027619, +0.0000027694,0.0000027767,0.0000027775,0.0000027769,0.0000027812, +0.0000027814,0.0000027759,0.0000027662,0.0000027568,0.0000027532, +0.0000027534,0.0000027557,0.0000027583,0.0000027614,0.0000027651, +0.0000027672,0.0000027662,0.0000027600,0.0000027528,0.0000027494, +0.0000027492,0.0000027498,0.0000027520,0.0000027563,0.0000027625, +0.0000027689,0.0000027737,0.0000027772,0.0000027816,0.0000027878, +0.0000027956,0.0000028031,0.0000028082,0.0000028100,0.0000028097, +0.0000028097,0.0000028125,0.0000028189,0.0000028262,0.0000028296, +0.0000028302,0.0000028313,0.0000028323,0.0000028321,0.0000028291, +0.0000028228,0.0000028157,0.0000028121,0.0000028129,0.0000028154, +0.0000028154,0.0000028137,0.0000028132,0.0000028182,0.0000028229, +0.0000028215,0.0000028172,0.0000028109,0.0000028097,0.0000028171, +0.0000028262,0.0000028327,0.0000028408,0.0000028452,0.0000028460, +0.0000028461,0.0000028448,0.0000028414,0.0000028362,0.0000028296, +0.0000028237,0.0000028190,0.0000028152,0.0000028116,0.0000028086, +0.0000028066,0.0000028034,0.0000027986,0.0000027949,0.0000027900, +0.0000027834,0.0000027768,0.0000027712,0.0000027675,0.0000027652, +0.0000027709,0.0000027658,0.0000027627,0.0000027630,0.0000027652, +0.0000027675,0.0000027701,0.0000027727,0.0000027735,0.0000027722, +0.0000027696,0.0000027683,0.0000027694,0.0000027746,0.0000027847, +0.0000027961,0.0000028035,0.0000028042,0.0000028019,0.0000027981, +0.0000027916,0.0000027804,0.0000027661,0.0000027556,0.0000027537, +0.0000027610,0.0000027736,0.0000027881,0.0000028033,0.0000028159, +0.0000028229,0.0000028235,0.0000028180,0.0000028086,0.0000027995, +0.0000027946,0.0000027960,0.0000028009,0.0000028058,0.0000028087, +0.0000028092,0.0000028072,0.0000028046,0.0000028051,0.0000028097, +0.0000028150,0.0000028175,0.0000028166,0.0000028099,0.0000028015, +0.0000027978,0.0000027986,0.0000028017,0.0000028043,0.0000028062, +0.0000028082,0.0000028102,0.0000028103,0.0000028051,0.0000027938, +0.0000027785,0.0000027611,0.0000027451,0.0000027345,0.0000027322, +0.0000027380,0.0000027499,0.0000027604,0.0000027633,0.0000027592, +0.0000027505,0.0000027417,0.0000027369,0.0000027378,0.0000027409, +0.0000027353,0.0000027133,0.0000026891,0.0000026778,0.0000026816, +0.0000027014,0.0000027228,0.0000027154,0.0000026931,0.0000026994, +0.0000027268,0.0000027487,0.0000027552,0.0000027548,0.0000027563, +0.0000027564,0.0000027539,0.0000027535,0.0000027551,0.0000027597, +0.0000027686,0.0000027765,0.0000027800,0.0000027828,0.0000027889, +0.0000027958,0.0000027994,0.0000027976,0.0000027892,0.0000027753, +0.0000027585,0.0000027426,0.0000027330,0.0000027330,0.0000027421, +0.0000027571,0.0000027706,0.0000027737,0.0000027642,0.0000027500, +0.0000027480,0.0000027537,0.0000027605,0.0000027662,0.0000027665, +0.0000027590,0.0000027501,0.0000027462,0.0000027427,0.0000027326, +0.0000027212,0.0000027136,0.0000027108,0.0000027130,0.0000027169, +0.0000027202,0.0000027175,0.0000027059,0.0000026914,0.0000026818, +0.0000026781,0.0000026785,0.0000026847,0.0000026946,0.0000027044, +0.0000027119,0.0000027182,0.0000027231,0.0000027285,0.0000027388, +0.0000027583,0.0000027781,0.0000027914,0.0000027964,0.0000027919, +0.0000027764,0.0000027580,0.0000027570,0.0000027730,0.0000027910, +0.0000028054,0.0000028196,0.0000028312,0.0000028359,0.0000028354, +0.0000028311,0.0000028263,0.0000028251,0.0000028257,0.0000028258, +0.0000028248,0.0000028266,0.0000028309,0.0000028331,0.0000028335, +0.0000028282,0.0000028129,0.0000027957,0.0000027851,0.0000027776, +0.0000027687,0.0000027614,0.0000027565,0.0000027542,0.0000027485, +0.0000027353,0.0000027166,0.0000027049,0.0000027061,0.0000027136, +0.0000027200,0.0000027236,0.0000027235,0.0000027212,0.0000027187, +0.0000027197,0.0000027267,0.0000027381,0.0000027498,0.0000027588, +0.0000027620,0.0000027609,0.0000027580,0.0000027556,0.0000027547, +0.0000027547,0.0000027549,0.0000027546,0.0000027532,0.0000027512, +0.0000027503,0.0000027520,0.0000027559,0.0000027604,0.0000027647, +0.0000027682,0.0000027720,0.0000027770,0.0000027796,0.0000027762, +0.0000027653,0.0000027582,0.0000027609,0.0000027718,0.0000027817, +0.0000027839,0.0000027771,0.0000027689,0.0000027682,0.0000027744, +0.0000027793,0.0000027788,0.0000027759,0.0000027756,0.0000027785, +0.0000027823,0.0000027853,0.0000027883,0.0000027922,0.0000027951, +0.0000027957,0.0000027940,0.0000027900,0.0000027846,0.0000027796, +0.0000027758,0.0000027725,0.0000027683,0.0000027632,0.0000027578, +0.0000027535,0.0000027512,0.0000027504,0.0000027504,0.0000027500, +0.0000027491,0.0000027458,0.0000027409,0.0000027350,0.0000027281, +0.0000027218,0.0000027163,0.0000027103,0.0000027042,0.0000026978, +0.0000026920,0.0000026886,0.0000026875,0.0000026884,0.0000026905, +0.0000026938,0.0000026980,0.0000027011,0.0000027018,0.0000027000, +0.0000026982,0.0000026985,0.0000027008,0.0000027034,0.0000027046, +0.0000027042,0.0000027030,0.0000027019,0.0000027004,0.0000027007, +0.0000027025,0.0000027041,0.0000027011,0.0000026943,0.0000026879, +0.0000026834,0.0000026809,0.0000026798,0.0000026804,0.0000026833, +0.0000026901,0.0000026994,0.0000027088,0.0000027178,0.0000027273, +0.0000027361,0.0000027417,0.0000027431,0.0000027415,0.0000027377, +0.0000027316,0.0000027232,0.0000027132,0.0000027024,0.0000026920, +0.0000026842,0.0000026804,0.0000026791,0.0000026781,0.0000026770, +0.0000026787,0.0000026858,0.0000026971,0.0000027083,0.0000027182, +0.0000027256,0.0000027298,0.0000027311,0.0000027301,0.0000027275, +0.0000027242,0.0000027187,0.0000027090,0.0000026974,0.0000026891, +0.0000026853,0.0000026843,0.0000026831,0.0000026840,0.0000026895, +0.0000027021,0.0000027240,0.0000027470,0.0000027622,0.0000027696, +0.0000027689,0.0000027609,0.0000027569,0.0000027634,0.0000027669, +0.0000027561,0.0000027381,0.0000027253,0.0000027289,0.0000027530, +0.0000027734,0.0000027780,0.0000027869,0.0000027998,0.0000028001, +0.0000027904,0.0000027872,0.0000027933,0.0000028057,0.0000028142, +0.0000028190,0.0000028212,0.0000028218,0.0000028214,0.0000028208, +0.0000028210,0.0000028188,0.0000028087,0.0000027960,0.0000027869, +0.0000027834,0.0000027845,0.0000027879,0.0000027927,0.0000028002, +0.0000028100,0.0000028161,0.0000028164,0.0000028153,0.0000028143, +0.0000028155,0.0000028187,0.0000028223,0.0000028256,0.0000028267, +0.0000028234,0.0000028176,0.0000028124,0.0000028124,0.0000028172, +0.0000028216,0.0000028220,0.0000028166,0.0000028069,0.0000027962, +0.0000027844,0.0000027735,0.0000027659,0.0000027625,0.0000027636, +0.0000027736,0.0000027820,0.0000027821,0.0000027824,0.0000027847, +0.0000027862,0.0000027826,0.0000027751,0.0000027661,0.0000027566, +0.0000027506,0.0000027504,0.0000027540,0.0000027602,0.0000027645, +0.0000027645,0.0000027592,0.0000027520,0.0000027491,0.0000027503, +0.0000027530,0.0000027554,0.0000027587,0.0000027641,0.0000027702, +0.0000027758,0.0000027801,0.0000027847,0.0000027893,0.0000027934, +0.0000027974,0.0000028019,0.0000028082,0.0000028148,0.0000028215, +0.0000028269,0.0000028304,0.0000028342,0.0000028372,0.0000028370, +0.0000028345,0.0000028304,0.0000028253,0.0000028206,0.0000028174, +0.0000028151,0.0000028154,0.0000028184,0.0000028205,0.0000028179, +0.0000028127,0.0000028126,0.0000028196,0.0000028239,0.0000028232, +0.0000028192,0.0000028122,0.0000028119,0.0000028209,0.0000028302, +0.0000028355,0.0000028418,0.0000028466,0.0000028484,0.0000028503, +0.0000028499,0.0000028469,0.0000028411,0.0000028359,0.0000028305, +0.0000028246,0.0000028183,0.0000028127,0.0000028083,0.0000028042, +0.0000028006,0.0000027979,0.0000027964,0.0000027959,0.0000027945, +0.0000027911,0.0000027868,0.0000027819,0.0000027781,0.0000027751, +0.0000027837,0.0000027771,0.0000027707,0.0000027666,0.0000027652, +0.0000027655,0.0000027674,0.0000027705,0.0000027720,0.0000027706, +0.0000027675,0.0000027657,0.0000027670,0.0000027716,0.0000027808, +0.0000027928,0.0000028025,0.0000028063,0.0000028073,0.0000028074, +0.0000028045,0.0000027954,0.0000027801,0.0000027638,0.0000027554, +0.0000027576,0.0000027668,0.0000027793,0.0000027939,0.0000028091, +0.0000028207,0.0000028241,0.0000028214,0.0000028120,0.0000028000, +0.0000027893,0.0000027840,0.0000027853,0.0000027895,0.0000027942, +0.0000027986,0.0000028001,0.0000027994,0.0000027989,0.0000028018, +0.0000028087,0.0000028154,0.0000028184,0.0000028171,0.0000028114, +0.0000028057,0.0000028036,0.0000028034,0.0000028035,0.0000028037, +0.0000028041,0.0000028053,0.0000028061,0.0000028043,0.0000027985, +0.0000027912,0.0000027826,0.0000027700,0.0000027550,0.0000027452, +0.0000027448,0.0000027515,0.0000027587,0.0000027585,0.0000027502, +0.0000027393,0.0000027323,0.0000027317,0.0000027379,0.0000027454, +0.0000027403,0.0000027161,0.0000026909,0.0000026803,0.0000026830, +0.0000026992,0.0000027208,0.0000027189,0.0000026957,0.0000026914, +0.0000027159,0.0000027424,0.0000027544,0.0000027548,0.0000027551, +0.0000027560,0.0000027528,0.0000027511,0.0000027536,0.0000027598, +0.0000027696,0.0000027779,0.0000027811,0.0000027829,0.0000027882, +0.0000027973,0.0000028047,0.0000028067,0.0000028017,0.0000027904, +0.0000027759,0.0000027596,0.0000027446,0.0000027369,0.0000027386, +0.0000027507,0.0000027684,0.0000027809,0.0000027783,0.0000027623, +0.0000027484,0.0000027494,0.0000027574,0.0000027670,0.0000027721, +0.0000027689,0.0000027574,0.0000027498,0.0000027483,0.0000027443, +0.0000027341,0.0000027226,0.0000027129,0.0000027091,0.0000027113, +0.0000027166,0.0000027200,0.0000027173,0.0000027051,0.0000026917, +0.0000026830,0.0000026799,0.0000026825,0.0000026917,0.0000027035, +0.0000027136,0.0000027203,0.0000027243,0.0000027261,0.0000027283, +0.0000027355,0.0000027535,0.0000027751,0.0000027901,0.0000027961, +0.0000027935,0.0000027794,0.0000027636,0.0000027658,0.0000027833, +0.0000028026,0.0000028203,0.0000028347,0.0000028446,0.0000028482, +0.0000028476,0.0000028428,0.0000028369,0.0000028334,0.0000028316, +0.0000028301,0.0000028289,0.0000028301,0.0000028329,0.0000028340, +0.0000028338,0.0000028287,0.0000028138,0.0000027948,0.0000027820, +0.0000027756,0.0000027700,0.0000027647,0.0000027617,0.0000027593, +0.0000027529,0.0000027369,0.0000027159,0.0000027054,0.0000027061, +0.0000027164,0.0000027244,0.0000027269,0.0000027244,0.0000027189, +0.0000027150,0.0000027171,0.0000027260,0.0000027399,0.0000027538, +0.0000027643,0.0000027692,0.0000027691,0.0000027666,0.0000027641, +0.0000027631,0.0000027630,0.0000027625,0.0000027614,0.0000027597, +0.0000027571,0.0000027550,0.0000027554,0.0000027586,0.0000027621, +0.0000027656,0.0000027696,0.0000027740,0.0000027774,0.0000027779, +0.0000027722,0.0000027608,0.0000027531,0.0000027557,0.0000027652, +0.0000027764,0.0000027808,0.0000027759,0.0000027676,0.0000027673, +0.0000027751,0.0000027810,0.0000027797,0.0000027748,0.0000027723, +0.0000027737,0.0000027772,0.0000027810,0.0000027847,0.0000027891, +0.0000027936,0.0000027958,0.0000027951,0.0000027919,0.0000027862, +0.0000027792,0.0000027725,0.0000027670,0.0000027624,0.0000027574, +0.0000027517,0.0000027466,0.0000027433,0.0000027424,0.0000027434, +0.0000027455,0.0000027471,0.0000027482,0.0000027469,0.0000027423, +0.0000027372,0.0000027309,0.0000027247,0.0000027186,0.0000027122, +0.0000027065,0.0000027014,0.0000026975,0.0000026964,0.0000026987, +0.0000027026,0.0000027061,0.0000027085,0.0000027100,0.0000027102, +0.0000027080,0.0000027038,0.0000027005,0.0000026996,0.0000027016, +0.0000027046,0.0000027065,0.0000027071,0.0000027063,0.0000027048, +0.0000027040,0.0000027026,0.0000027012,0.0000026996,0.0000026960, +0.0000026917,0.0000026891,0.0000026869,0.0000026836,0.0000026805, +0.0000026810,0.0000026872,0.0000026980,0.0000027092,0.0000027185, +0.0000027254,0.0000027321,0.0000027394,0.0000027453,0.0000027472, +0.0000027461,0.0000027430,0.0000027387,0.0000027324,0.0000027240, +0.0000027143,0.0000027044,0.0000026963,0.0000026923,0.0000026914, +0.0000026910,0.0000026900,0.0000026896,0.0000026913,0.0000026965, +0.0000027044,0.0000027132,0.0000027222,0.0000027295,0.0000027339, +0.0000027349,0.0000027322,0.0000027268,0.0000027202,0.0000027121, +0.0000027022,0.0000026937,0.0000026895,0.0000026872,0.0000026841, +0.0000026831,0.0000026869,0.0000026966,0.0000027154,0.0000027395, +0.0000027590,0.0000027703,0.0000027722,0.0000027648,0.0000027561, +0.0000027597,0.0000027705,0.0000027697,0.0000027545,0.0000027361, +0.0000027268,0.0000027372,0.0000027623,0.0000027753,0.0000027811, +0.0000027943,0.0000028022,0.0000027982,0.0000027891,0.0000027894, +0.0000028018,0.0000028129,0.0000028168,0.0000028185,0.0000028188, +0.0000028175,0.0000028162,0.0000028165,0.0000028170,0.0000028147, +0.0000028049,0.0000027930,0.0000027869,0.0000027882,0.0000027925, +0.0000027953,0.0000027983,0.0000028041,0.0000028137,0.0000028208, +0.0000028238,0.0000028246,0.0000028253,0.0000028264,0.0000028274, +0.0000028272,0.0000028261,0.0000028218,0.0000028151,0.0000028105, +0.0000028085,0.0000028097,0.0000028162,0.0000028228,0.0000028258, +0.0000028229,0.0000028156,0.0000028060,0.0000027955,0.0000027842, +0.0000027744,0.0000027682,0.0000027650,0.0000027672,0.0000027780, +0.0000027863,0.0000027876,0.0000027875,0.0000027896,0.0000027917, +0.0000027893,0.0000027828,0.0000027744,0.0000027633,0.0000027525, +0.0000027500,0.0000027543,0.0000027605,0.0000027623,0.0000027594, +0.0000027537,0.0000027505,0.0000027519,0.0000027551,0.0000027590, +0.0000027635,0.0000027684,0.0000027744,0.0000027794,0.0000027831, +0.0000027858,0.0000027888,0.0000027918,0.0000027948,0.0000027996, +0.0000028083,0.0000028208,0.0000028323,0.0000028392,0.0000028421, +0.0000028424,0.0000028408,0.0000028361,0.0000028282,0.0000028216, +0.0000028184,0.0000028173,0.0000028182,0.0000028203,0.0000028228, +0.0000028246,0.0000028237,0.0000028190,0.0000028130,0.0000028131, +0.0000028203,0.0000028238,0.0000028237,0.0000028193,0.0000028123, +0.0000028127,0.0000028210,0.0000028285,0.0000028338,0.0000028393, +0.0000028430,0.0000028472,0.0000028512,0.0000028528,0.0000028507, +0.0000028472,0.0000028417,0.0000028365,0.0000028309,0.0000028247, +0.0000028176,0.0000028109,0.0000028053,0.0000027997,0.0000027953, +0.0000027936,0.0000027953,0.0000027979,0.0000027990,0.0000027980, +0.0000027961,0.0000027936,0.0000027910,0.0000027883,0.0000027957, +0.0000027894,0.0000027823,0.0000027763,0.0000027723,0.0000027703, +0.0000027699,0.0000027711,0.0000027726,0.0000027720,0.0000027697, +0.0000027680,0.0000027680,0.0000027703,0.0000027751,0.0000027841, +0.0000027950,0.0000028031,0.0000028077,0.0000028102,0.0000028107, +0.0000028065,0.0000027948,0.0000027784,0.0000027647,0.0000027607, +0.0000027639,0.0000027727,0.0000027843,0.0000027994,0.0000028143, +0.0000028230,0.0000028242,0.0000028188,0.0000028080,0.0000027951, +0.0000027847,0.0000027813,0.0000027828,0.0000027870,0.0000027925, +0.0000027961,0.0000027964,0.0000027947,0.0000027942,0.0000027971, +0.0000028037,0.0000028101,0.0000028132,0.0000028129,0.0000028113, +0.0000028111,0.0000028106,0.0000028074,0.0000028032,0.0000028009, +0.0000028009,0.0000028010,0.0000027994,0.0000027956,0.0000027932, +0.0000027924,0.0000027886,0.0000027787,0.0000027677,0.0000027633, +0.0000027640,0.0000027649,0.0000027592,0.0000027478,0.0000027362, +0.0000027301,0.0000027310,0.0000027400,0.0000027490,0.0000027438, +0.0000027199,0.0000026964,0.0000026860,0.0000026873,0.0000026995, +0.0000027205,0.0000027239,0.0000027005,0.0000026883,0.0000027053, +0.0000027342,0.0000027515,0.0000027537,0.0000027531,0.0000027545, +0.0000027526,0.0000027487,0.0000027501,0.0000027573,0.0000027681, +0.0000027778,0.0000027814,0.0000027819,0.0000027855,0.0000027939, +0.0000028033,0.0000028086,0.0000028082,0.0000028005,0.0000027880, +0.0000027745,0.0000027609,0.0000027480,0.0000027416,0.0000027452, +0.0000027609,0.0000027798,0.0000027879,0.0000027802,0.0000027609, +0.0000027501,0.0000027519,0.0000027628,0.0000027739,0.0000027764, +0.0000027684,0.0000027556,0.0000027498,0.0000027505,0.0000027468, +0.0000027371,0.0000027262,0.0000027159,0.0000027117,0.0000027129, +0.0000027183,0.0000027211,0.0000027172,0.0000027064,0.0000026954, +0.0000026870,0.0000026835,0.0000026875,0.0000026977,0.0000027101, +0.0000027212,0.0000027285,0.0000027313,0.0000027311,0.0000027310, +0.0000027348,0.0000027496,0.0000027714,0.0000027881,0.0000027968, +0.0000027958,0.0000027829,0.0000027699,0.0000027748,0.0000027941, +0.0000028154,0.0000028342,0.0000028472,0.0000028548,0.0000028577, +0.0000028568,0.0000028517,0.0000028448,0.0000028393,0.0000028358, +0.0000028334,0.0000028327,0.0000028340,0.0000028367,0.0000028374, +0.0000028361,0.0000028300,0.0000028144,0.0000027935,0.0000027783, +0.0000027729,0.0000027715,0.0000027691,0.0000027680,0.0000027652, +0.0000027568,0.0000027393,0.0000027172,0.0000027067,0.0000027087, +0.0000027201,0.0000027282,0.0000027292,0.0000027249,0.0000027195, +0.0000027163,0.0000027189,0.0000027283,0.0000027430,0.0000027587, +0.0000027719,0.0000027799,0.0000027824,0.0000027811,0.0000027775, +0.0000027750,0.0000027735,0.0000027710,0.0000027676,0.0000027633, +0.0000027601,0.0000027579,0.0000027588,0.0000027626,0.0000027659, +0.0000027675,0.0000027695,0.0000027730,0.0000027760,0.0000027746, +0.0000027660,0.0000027540,0.0000027476,0.0000027510,0.0000027608, +0.0000027716,0.0000027764,0.0000027735,0.0000027654,0.0000027649, +0.0000027732,0.0000027820,0.0000027823,0.0000027776,0.0000027722, +0.0000027704,0.0000027711,0.0000027744,0.0000027801,0.0000027865, +0.0000027933,0.0000027974,0.0000027971,0.0000027934,0.0000027859, +0.0000027767,0.0000027676,0.0000027599,0.0000027541,0.0000027497, +0.0000027455,0.0000027408,0.0000027367,0.0000027345,0.0000027343, +0.0000027355,0.0000027380,0.0000027405,0.0000027418,0.0000027420, +0.0000027395,0.0000027357,0.0000027306,0.0000027246,0.0000027184, +0.0000027116,0.0000027062,0.0000027023,0.0000027005,0.0000027011, +0.0000027051,0.0000027103,0.0000027129,0.0000027123,0.0000027123, +0.0000027112,0.0000027085,0.0000027045,0.0000027011,0.0000027001, +0.0000027018,0.0000027056,0.0000027091,0.0000027112,0.0000027115, +0.0000027098,0.0000027071,0.0000027043,0.0000027012,0.0000026978, +0.0000026946,0.0000026922,0.0000026914,0.0000026899,0.0000026862, +0.0000026833,0.0000026862,0.0000026950,0.0000027063,0.0000027155, +0.0000027224,0.0000027279,0.0000027331,0.0000027394,0.0000027464, +0.0000027512,0.0000027525,0.0000027518,0.0000027496,0.0000027453, +0.0000027382,0.0000027293,0.0000027197,0.0000027112,0.0000027058, +0.0000027033,0.0000027021,0.0000027016,0.0000027014,0.0000027024, +0.0000027048,0.0000027091,0.0000027150,0.0000027215,0.0000027273, +0.0000027317,0.0000027346,0.0000027348,0.0000027306,0.0000027230, +0.0000027147,0.0000027055,0.0000026969,0.0000026922,0.0000026887, +0.0000026847,0.0000026828,0.0000026858,0.0000026933,0.0000027102, +0.0000027349,0.0000027574,0.0000027698,0.0000027720,0.0000027669, +0.0000027567,0.0000027545,0.0000027664,0.0000027756,0.0000027689, +0.0000027502,0.0000027330,0.0000027299,0.0000027471,0.0000027675, +0.0000027775,0.0000027888,0.0000028005,0.0000028026,0.0000027968, +0.0000027912,0.0000027980,0.0000028093,0.0000028149,0.0000028171, +0.0000028183,0.0000028170,0.0000028138,0.0000028117,0.0000028123, +0.0000028134,0.0000028118,0.0000028044,0.0000027954,0.0000027922, +0.0000027951,0.0000027979,0.0000027978,0.0000027987,0.0000028028, +0.0000028101,0.0000028173,0.0000028210,0.0000028222,0.0000028220, +0.0000028218,0.0000028214,0.0000028201,0.0000028175,0.0000028134, +0.0000028099,0.0000028069,0.0000028063,0.0000028102,0.0000028188, +0.0000028272,0.0000028299,0.0000028281,0.0000028218,0.0000028141, +0.0000028055,0.0000027967,0.0000027880,0.0000027782,0.0000027701, +0.0000027669,0.0000027697,0.0000027814,0.0000027911,0.0000027929, +0.0000027937,0.0000027974,0.0000027988,0.0000027958,0.0000027892, +0.0000027806,0.0000027693,0.0000027589,0.0000027557,0.0000027590, +0.0000027623,0.0000027616,0.0000027579,0.0000027560,0.0000027575, +0.0000027616,0.0000027663,0.0000027713,0.0000027767,0.0000027815, +0.0000027854,0.0000027883,0.0000027899,0.0000027911,0.0000027934, +0.0000027971,0.0000028035,0.0000028136,0.0000028253,0.0000028367, +0.0000028444,0.0000028474,0.0000028462,0.0000028406,0.0000028328, +0.0000028261,0.0000028221,0.0000028209,0.0000028221,0.0000028251, +0.0000028285,0.0000028288,0.0000028275,0.0000028235,0.0000028184, +0.0000028150,0.0000028168,0.0000028221,0.0000028242,0.0000028237, +0.0000028188,0.0000028105,0.0000028107,0.0000028181,0.0000028253, +0.0000028290,0.0000028334,0.0000028364,0.0000028405,0.0000028477, +0.0000028522,0.0000028530,0.0000028513,0.0000028479,0.0000028423, +0.0000028362,0.0000028296,0.0000028225,0.0000028150,0.0000028083, +0.0000028018,0.0000027957,0.0000027917,0.0000027912,0.0000027941, +0.0000027985,0.0000028019,0.0000028031,0.0000028032,0.0000028031, +0.0000028022,0.0000027999,0.0000028025,0.0000027977,0.0000027923, +0.0000027871,0.0000027826,0.0000027795,0.0000027780,0.0000027775, +0.0000027775,0.0000027771,0.0000027759,0.0000027744,0.0000027734, +0.0000027728,0.0000027727,0.0000027750,0.0000027824,0.0000027923, +0.0000028007,0.0000028062,0.0000028094,0.0000028090,0.0000028030, +0.0000027918,0.0000027787,0.0000027702,0.0000027688,0.0000027727, +0.0000027815,0.0000027942,0.0000028085,0.0000028202,0.0000028258, +0.0000028244,0.0000028167,0.0000028053,0.0000027931,0.0000027860, +0.0000027845,0.0000027864,0.0000027926,0.0000027985,0.0000028007, +0.0000027989,0.0000027955,0.0000027939,0.0000027953,0.0000027998, +0.0000028044,0.0000028064,0.0000028078,0.0000028115,0.0000028155, +0.0000028153,0.0000028087,0.0000028008,0.0000027967,0.0000027960, +0.0000027949,0.0000027932,0.0000027931,0.0000027947,0.0000027953, +0.0000027916,0.0000027845,0.0000027790,0.0000027772,0.0000027738, +0.0000027646,0.0000027514,0.0000027403,0.0000027342,0.0000027345, +0.0000027427,0.0000027492,0.0000027441,0.0000027231,0.0000027031, +0.0000026939,0.0000026939,0.0000027020,0.0000027193,0.0000027246, +0.0000027047,0.0000026872,0.0000026955,0.0000027248,0.0000027472, +0.0000027529,0.0000027507,0.0000027511,0.0000027517,0.0000027474, +0.0000027458,0.0000027523,0.0000027643,0.0000027762,0.0000027824, +0.0000027826,0.0000027839,0.0000027894,0.0000027987,0.0000028062, +0.0000028093,0.0000028058,0.0000027965,0.0000027854,0.0000027744, +0.0000027631,0.0000027516,0.0000027464,0.0000027533,0.0000027721, +0.0000027891,0.0000027923,0.0000027807,0.0000027609,0.0000027526, +0.0000027561,0.0000027688,0.0000027785,0.0000027777,0.0000027660, +0.0000027520,0.0000027480,0.0000027517,0.0000027499,0.0000027420, +0.0000027336,0.0000027255,0.0000027181,0.0000027165,0.0000027189, +0.0000027201,0.0000027164,0.0000027098,0.0000027019,0.0000026939, +0.0000026901,0.0000026922,0.0000027013,0.0000027141,0.0000027264, +0.0000027350,0.0000027379,0.0000027378,0.0000027372,0.0000027383, +0.0000027480,0.0000027678,0.0000027860,0.0000027967,0.0000027978, +0.0000027866,0.0000027758,0.0000027840,0.0000028041,0.0000028269, +0.0000028459,0.0000028576,0.0000028637,0.0000028662,0.0000028656, +0.0000028608,0.0000028536,0.0000028472,0.0000028423,0.0000028397, +0.0000028395,0.0000028411,0.0000028434,0.0000028434,0.0000028405, +0.0000028317,0.0000028143,0.0000027914,0.0000027743,0.0000027702, +0.0000027722,0.0000027737,0.0000027740,0.0000027703,0.0000027604, +0.0000027430,0.0000027223,0.0000027109,0.0000027130,0.0000027245, +0.0000027320,0.0000027320,0.0000027277,0.0000027228,0.0000027205, +0.0000027234,0.0000027336,0.0000027503,0.0000027686,0.0000027838, +0.0000027937,0.0000027972,0.0000027950,0.0000027893,0.0000027840, +0.0000027804,0.0000027756,0.0000027697,0.0000027632,0.0000027581, +0.0000027568,0.0000027598,0.0000027656,0.0000027698,0.0000027703, +0.0000027693,0.0000027701,0.0000027709,0.0000027678,0.0000027589, +0.0000027475,0.0000027422,0.0000027469,0.0000027576,0.0000027682, +0.0000027728,0.0000027699,0.0000027621,0.0000027606,0.0000027694, +0.0000027800,0.0000027833,0.0000027808,0.0000027752,0.0000027703, +0.0000027687,0.0000027701,0.0000027760,0.0000027848,0.0000027932, +0.0000027981,0.0000027981,0.0000027930,0.0000027836,0.0000027723, +0.0000027613,0.0000027524,0.0000027464,0.0000027425,0.0000027402, +0.0000027379,0.0000027344,0.0000027313,0.0000027299,0.0000027300, +0.0000027311,0.0000027328,0.0000027339,0.0000027342,0.0000027336, +0.0000027321,0.0000027296,0.0000027260,0.0000027206,0.0000027143, +0.0000027077,0.0000027030,0.0000027002,0.0000026995,0.0000027005, +0.0000027046,0.0000027092,0.0000027107,0.0000027094,0.0000027076, +0.0000027064,0.0000027047,0.0000027021,0.0000026998,0.0000026992, +0.0000027013,0.0000027064,0.0000027118,0.0000027153,0.0000027160, +0.0000027141,0.0000027106,0.0000027071,0.0000027040,0.0000027007, +0.0000026967,0.0000026940,0.0000026928,0.0000026919,0.0000026903, +0.0000026905,0.0000026953,0.0000027037,0.0000027116,0.0000027173, +0.0000027225,0.0000027281,0.0000027332,0.0000027388,0.0000027468, +0.0000027553,0.0000027603,0.0000027615,0.0000027609,0.0000027578, +0.0000027515,0.0000027426,0.0000027328,0.0000027238,0.0000027181, +0.0000027158,0.0000027149,0.0000027134,0.0000027117,0.0000027110, +0.0000027125,0.0000027155,0.0000027203,0.0000027251,0.0000027280, +0.0000027290,0.0000027301,0.0000027311,0.0000027296,0.0000027244, +0.0000027177,0.0000027092,0.0000027000,0.0000026940,0.0000026893, +0.0000026840,0.0000026820,0.0000026848,0.0000026916,0.0000027078, +0.0000027331,0.0000027576,0.0000027710,0.0000027729,0.0000027682, +0.0000027579,0.0000027526,0.0000027596,0.0000027750,0.0000027772, +0.0000027636,0.0000027450,0.0000027315,0.0000027369,0.0000027567, +0.0000027705,0.0000027826,0.0000027975,0.0000028044,0.0000028034, +0.0000027971,0.0000027967,0.0000028055,0.0000028118,0.0000028148, +0.0000028183,0.0000028194,0.0000028157,0.0000028099,0.0000028069, +0.0000028080,0.0000028101,0.0000028102,0.0000028063,0.0000028001, +0.0000027974,0.0000027968,0.0000027949,0.0000027908,0.0000027885, +0.0000027884,0.0000027914,0.0000027962,0.0000028005,0.0000028038, +0.0000028046,0.0000028057,0.0000028080,0.0000028099,0.0000028102, +0.0000028086,0.0000028067,0.0000028060,0.0000028093,0.0000028157, +0.0000028218,0.0000028289,0.0000028303,0.0000028287,0.0000028247, +0.0000028192,0.0000028127,0.0000028069,0.0000028010,0.0000027924, +0.0000027810,0.0000027708,0.0000027670,0.0000027699,0.0000027826, +0.0000027934,0.0000027969,0.0000028007,0.0000028059,0.0000028058, +0.0000028011,0.0000027944,0.0000027851,0.0000027758,0.0000027696, +0.0000027674,0.0000027674,0.0000027664,0.0000027648,0.0000027652, +0.0000027680,0.0000027717,0.0000027759,0.0000027809,0.0000027872, +0.0000027934,0.0000027970,0.0000027994,0.0000028018,0.0000028035, +0.0000028054,0.0000028085,0.0000028132,0.0000028200,0.0000028277, +0.0000028350,0.0000028409,0.0000028445,0.0000028458,0.0000028439, +0.0000028387,0.0000028328,0.0000028288,0.0000028283,0.0000028290, +0.0000028301,0.0000028307,0.0000028293,0.0000028255,0.0000028202, +0.0000028167,0.0000028172,0.0000028222,0.0000028260,0.0000028255, +0.0000028241,0.0000028176,0.0000028076,0.0000028067,0.0000028129, +0.0000028190,0.0000028217,0.0000028251,0.0000028275,0.0000028312, +0.0000028392,0.0000028475,0.0000028521,0.0000028533,0.0000028521, +0.0000028477,0.0000028411,0.0000028331,0.0000028252,0.0000028176, +0.0000028108,0.0000028053,0.0000027997,0.0000027940,0.0000027900, +0.0000027891,0.0000027917,0.0000027965,0.0000028013,0.0000028041, +0.0000028056,0.0000028068,0.0000028072,0.0000028059,0.0000028039, +0.0000028017,0.0000027992,0.0000027957,0.0000027912,0.0000027870, +0.0000027849,0.0000027847,0.0000027851,0.0000027857,0.0000027863, +0.0000027864,0.0000027856,0.0000027831,0.0000027787,0.0000027747, +0.0000027756,0.0000027803,0.0000027878,0.0000027947,0.0000028002, +0.0000028032,0.0000028021,0.0000027966,0.0000027880,0.0000027802, +0.0000027776,0.0000027791,0.0000027849,0.0000027944,0.0000028058, +0.0000028172,0.0000028255,0.0000028275,0.0000028228,0.0000028141, +0.0000028040,0.0000027962,0.0000027931,0.0000027946,0.0000027997, +0.0000028054,0.0000028089,0.0000028078,0.0000028038,0.0000027988, +0.0000027954,0.0000027969,0.0000028003,0.0000028028,0.0000028045, +0.0000028080,0.0000028133,0.0000028171,0.0000028154,0.0000028069, +0.0000027962,0.0000027907,0.0000027901,0.0000027916,0.0000027940, +0.0000027963,0.0000027973,0.0000027960,0.0000027917,0.0000027865, +0.0000027826,0.0000027772,0.0000027673,0.0000027553,0.0000027456, +0.0000027402,0.0000027403,0.0000027460,0.0000027501,0.0000027436, +0.0000027266,0.0000027105,0.0000027018,0.0000027012,0.0000027074, +0.0000027209,0.0000027287,0.0000027107,0.0000026875,0.0000026896, +0.0000027143,0.0000027403,0.0000027510,0.0000027485,0.0000027461, +0.0000027488,0.0000027472,0.0000027434,0.0000027464,0.0000027585, +0.0000027730,0.0000027827,0.0000027845,0.0000027840,0.0000027873, +0.0000027937,0.0000028015,0.0000028062,0.0000028060,0.0000028003, +0.0000027925,0.0000027845,0.0000027763,0.0000027664,0.0000027561, +0.0000027531,0.0000027634,0.0000027824,0.0000027954,0.0000027945, +0.0000027806,0.0000027634,0.0000027574,0.0000027623,0.0000027739, +0.0000027789,0.0000027758,0.0000027623,0.0000027481,0.0000027457, +0.0000027517,0.0000027527,0.0000027472,0.0000027418,0.0000027339, +0.0000027246,0.0000027178,0.0000027168,0.0000027181,0.0000027174, +0.0000027148,0.0000027107,0.0000027037,0.0000026982,0.0000026983, +0.0000027054,0.0000027179,0.0000027312,0.0000027408,0.0000027443, +0.0000027459,0.0000027466,0.0000027465,0.0000027507,0.0000027663, +0.0000027854,0.0000027982,0.0000028006,0.0000027907,0.0000027826, +0.0000027925,0.0000028129,0.0000028367,0.0000028559,0.0000028675, +0.0000028728,0.0000028754,0.0000028759,0.0000028725,0.0000028663, +0.0000028599,0.0000028540,0.0000028508,0.0000028511,0.0000028521, +0.0000028530,0.0000028508,0.0000028442,0.0000028328,0.0000028128, +0.0000027884,0.0000027707,0.0000027688,0.0000027735,0.0000027784, +0.0000027788,0.0000027733,0.0000027624,0.0000027462,0.0000027292, +0.0000027186,0.0000027199,0.0000027297,0.0000027367,0.0000027365, +0.0000027325,0.0000027280,0.0000027266,0.0000027319,0.0000027457, +0.0000027653,0.0000027847,0.0000027979,0.0000028043,0.0000028061, +0.0000028026,0.0000027960,0.0000027884,0.0000027824,0.0000027765, +0.0000027685,0.0000027597,0.0000027536,0.0000027534,0.0000027588, +0.0000027660,0.0000027708,0.0000027711,0.0000027686,0.0000027661, +0.0000027641,0.0000027596,0.0000027517,0.0000027438,0.0000027407, +0.0000027435,0.0000027542,0.0000027645,0.0000027683,0.0000027649, +0.0000027578,0.0000027567,0.0000027651,0.0000027763,0.0000027814, +0.0000027808,0.0000027767,0.0000027715,0.0000027692,0.0000027702, +0.0000027764,0.0000027853,0.0000027927,0.0000027962,0.0000027948, +0.0000027888,0.0000027793,0.0000027687,0.0000027584,0.0000027503, +0.0000027461,0.0000027428,0.0000027410,0.0000027401,0.0000027384, +0.0000027349,0.0000027313,0.0000027300,0.0000027299,0.0000027306, +0.0000027315,0.0000027301,0.0000027283,0.0000027264,0.0000027246, +0.0000027224,0.0000027192,0.0000027137,0.0000027078,0.0000027024, +0.0000026986,0.0000026964,0.0000026954,0.0000026960,0.0000026988, +0.0000027018,0.0000027020,0.0000026999,0.0000026978,0.0000026973, +0.0000026974,0.0000026977,0.0000026980,0.0000026991,0.0000027022, +0.0000027076,0.0000027136,0.0000027168,0.0000027175,0.0000027165, +0.0000027138,0.0000027111,0.0000027081,0.0000027042,0.0000026999, +0.0000026962,0.0000026952,0.0000026960,0.0000026972,0.0000026995, +0.0000027044,0.0000027100,0.0000027137,0.0000027172,0.0000027223, +0.0000027282,0.0000027334,0.0000027390,0.0000027480,0.0000027593, +0.0000027667,0.0000027681,0.0000027670,0.0000027645,0.0000027595, +0.0000027520,0.0000027426,0.0000027328,0.0000027250,0.0000027223, +0.0000027229,0.0000027233,0.0000027219,0.0000027191,0.0000027177, +0.0000027187,0.0000027216,0.0000027250,0.0000027272,0.0000027254, +0.0000027236,0.0000027238,0.0000027236,0.0000027220,0.0000027188, +0.0000027123,0.0000027029,0.0000026950,0.0000026882,0.0000026823, +0.0000026812,0.0000026839,0.0000026909,0.0000027076,0.0000027333, +0.0000027579,0.0000027714,0.0000027732,0.0000027682,0.0000027583, +0.0000027505,0.0000027537,0.0000027684,0.0000027791,0.0000027731, +0.0000027560,0.0000027383,0.0000027342,0.0000027469,0.0000027628, +0.0000027749,0.0000027914,0.0000028047,0.0000028064,0.0000028028, +0.0000028003,0.0000028048,0.0000028098,0.0000028116,0.0000028151, +0.0000028205,0.0000028215,0.0000028149,0.0000028064,0.0000028021, +0.0000028031,0.0000028059,0.0000028076,0.0000028068,0.0000028031, +0.0000027991,0.0000027932,0.0000027863,0.0000027794,0.0000027750, +0.0000027725,0.0000027728,0.0000027757,0.0000027800,0.0000027845, +0.0000027882,0.0000027924,0.0000027972,0.0000028015,0.0000028047, +0.0000028065,0.0000028087,0.0000028122,0.0000028173,0.0000028204, +0.0000028224,0.0000028244,0.0000028241,0.0000028211,0.0000028193, +0.0000028182,0.0000028156,0.0000028134,0.0000028099,0.0000028041, +0.0000027958,0.0000027844,0.0000027730,0.0000027671,0.0000027682, +0.0000027814,0.0000027945,0.0000028009,0.0000028081,0.0000028120, +0.0000028105,0.0000028055,0.0000027990,0.0000027900,0.0000027850, +0.0000027821,0.0000027803,0.0000027791,0.0000027779,0.0000027773, +0.0000027795,0.0000027836,0.0000027879,0.0000027925,0.0000027988, +0.0000028062,0.0000028119,0.0000028147,0.0000028174,0.0000028200, +0.0000028214,0.0000028219,0.0000028225,0.0000028249,0.0000028285, +0.0000028334,0.0000028385,0.0000028429,0.0000028465,0.0000028475, +0.0000028459,0.0000028423,0.0000028383,0.0000028355,0.0000028336, +0.0000028310,0.0000028284,0.0000028244,0.0000028197,0.0000028159, +0.0000028154,0.0000028185,0.0000028262,0.0000028308,0.0000028289, +0.0000028260,0.0000028194,0.0000028064,0.0000028018,0.0000028064, +0.0000028124,0.0000028136,0.0000028139,0.0000028161,0.0000028191, +0.0000028272,0.0000028379,0.0000028467,0.0000028524,0.0000028541, +0.0000028525,0.0000028464,0.0000028381,0.0000028285,0.0000028206, +0.0000028144,0.0000028093,0.0000028053,0.0000028008,0.0000027952, +0.0000027905,0.0000027889,0.0000027905,0.0000027941,0.0000027982, +0.0000028014,0.0000028037,0.0000028056,0.0000028067,0.0000028060, +0.0000028028,0.0000028016,0.0000028010,0.0000028007,0.0000027983, +0.0000027939,0.0000027901,0.0000027892,0.0000027905,0.0000027928, +0.0000027960,0.0000027994,0.0000028017,0.0000028010,0.0000027957, +0.0000027879,0.0000027819,0.0000027794,0.0000027807,0.0000027831, +0.0000027876,0.0000027919,0.0000027939,0.0000027922,0.0000027881, +0.0000027830,0.0000027810,0.0000027836,0.0000027898,0.0000027989, +0.0000028090,0.0000028194,0.0000028283,0.0000028328,0.0000028314, +0.0000028248,0.0000028157,0.0000028081,0.0000028066,0.0000028090, +0.0000028135,0.0000028170,0.0000028188,0.0000028173,0.0000028127, +0.0000028058,0.0000027994,0.0000027974,0.0000028002,0.0000028039, +0.0000028070,0.0000028088,0.0000028104,0.0000028132,0.0000028155, +0.0000028129,0.0000028005,0.0000027879,0.0000027847,0.0000027891, +0.0000027954,0.0000027989,0.0000027990,0.0000027969,0.0000027932, +0.0000027882,0.0000027828,0.0000027764,0.0000027684,0.0000027595, +0.0000027513,0.0000027461,0.0000027459,0.0000027500,0.0000027520, +0.0000027451,0.0000027311,0.0000027173,0.0000027090,0.0000027086, +0.0000027135,0.0000027230,0.0000027291,0.0000027143,0.0000026908, +0.0000026869,0.0000027051,0.0000027316,0.0000027481,0.0000027480, +0.0000027416,0.0000027420,0.0000027444,0.0000027417,0.0000027421, +0.0000027516,0.0000027670,0.0000027799,0.0000027847,0.0000027842, +0.0000027853,0.0000027896,0.0000027959,0.0000028014,0.0000028034, +0.0000028005,0.0000027952,0.0000027904,0.0000027859,0.0000027798, +0.0000027703,0.0000027610,0.0000027610,0.0000027736,0.0000027903, +0.0000027986,0.0000027953,0.0000027808,0.0000027675,0.0000027641, +0.0000027695,0.0000027770,0.0000027784,0.0000027712,0.0000027579, +0.0000027448,0.0000027433,0.0000027499,0.0000027528,0.0000027491, +0.0000027446,0.0000027375,0.0000027274,0.0000027179,0.0000027153, +0.0000027180,0.0000027205,0.0000027214,0.0000027200,0.0000027141, +0.0000027076,0.0000027064,0.0000027117,0.0000027230,0.0000027366, +0.0000027463,0.0000027499,0.0000027533,0.0000027566,0.0000027561, +0.0000027561,0.0000027669,0.0000027863,0.0000028010,0.0000028044, +0.0000027966,0.0000027908,0.0000028008,0.0000028205,0.0000028453, +0.0000028654,0.0000028771,0.0000028822,0.0000028849,0.0000028863, +0.0000028848,0.0000028801,0.0000028748,0.0000028685,0.0000028645, +0.0000028647,0.0000028648,0.0000028627,0.0000028570,0.0000028474, +0.0000028316,0.0000028095,0.0000027849,0.0000027680,0.0000027675, +0.0000027747,0.0000027811,0.0000027809,0.0000027743,0.0000027624, +0.0000027483,0.0000027349,0.0000027269,0.0000027279,0.0000027352, +0.0000027417,0.0000027417,0.0000027382,0.0000027346,0.0000027365, +0.0000027473,0.0000027652,0.0000027847,0.0000028004,0.0000028083, +0.0000028102,0.0000028085,0.0000028059,0.0000027989,0.0000027905, +0.0000027830,0.0000027755,0.0000027669,0.0000027567,0.0000027497, +0.0000027494,0.0000027552,0.0000027627,0.0000027678,0.0000027680, +0.0000027654,0.0000027622,0.0000027594,0.0000027553,0.0000027489, +0.0000027427,0.0000027409,0.0000027433,0.0000027513,0.0000027593, +0.0000027623,0.0000027582,0.0000027530,0.0000027536,0.0000027613, +0.0000027720,0.0000027775,0.0000027777,0.0000027751,0.0000027717, +0.0000027698,0.0000027728,0.0000027794,0.0000027870,0.0000027914, +0.0000027925,0.0000027893,0.0000027834,0.0000027758,0.0000027682, +0.0000027611,0.0000027547,0.0000027517,0.0000027511,0.0000027513, +0.0000027508,0.0000027488,0.0000027454,0.0000027406,0.0000027362, +0.0000027345,0.0000027341,0.0000027337,0.0000027326,0.0000027297, +0.0000027262,0.0000027236,0.0000027211,0.0000027182,0.0000027136, +0.0000027075,0.0000027018,0.0000026973,0.0000026943,0.0000026923, +0.0000026909,0.0000026904,0.0000026911,0.0000026921,0.0000026914, +0.0000026894,0.0000026881,0.0000026895,0.0000026927,0.0000026963, +0.0000026995,0.0000027016,0.0000027040,0.0000027069,0.0000027102, +0.0000027132,0.0000027154,0.0000027164,0.0000027155,0.0000027138, +0.0000027115,0.0000027079,0.0000027042,0.0000027017,0.0000027016, +0.0000027037,0.0000027054,0.0000027067,0.0000027095,0.0000027132, +0.0000027155,0.0000027180,0.0000027232,0.0000027288,0.0000027339, +0.0000027407,0.0000027509,0.0000027625,0.0000027695,0.0000027699, +0.0000027674,0.0000027650,0.0000027620,0.0000027572,0.0000027502, +0.0000027411,0.0000027313,0.0000027251,0.0000027243,0.0000027260, +0.0000027266,0.0000027244,0.0000027205,0.0000027189,0.0000027191, +0.0000027200,0.0000027203,0.0000027176,0.0000027151,0.0000027151, +0.0000027169,0.0000027187,0.0000027188,0.0000027144,0.0000027048, +0.0000026943,0.0000026857,0.0000026800,0.0000026792,0.0000026829, +0.0000026923,0.0000027110,0.0000027361,0.0000027584,0.0000027702, +0.0000027722,0.0000027676,0.0000027571,0.0000027496,0.0000027501, +0.0000027612,0.0000027761,0.0000027778,0.0000027656,0.0000027477, +0.0000027349,0.0000027400,0.0000027554,0.0000027675,0.0000027832, +0.0000028002,0.0000028076,0.0000028067,0.0000028028,0.0000028049, +0.0000028104,0.0000028107,0.0000028118,0.0000028172,0.0000028228, +0.0000028240,0.0000028162,0.0000028054,0.0000027994,0.0000027992, +0.0000028009,0.0000028034,0.0000028046,0.0000028029,0.0000027975, +0.0000027896,0.0000027824,0.0000027769,0.0000027735,0.0000027712, +0.0000027702,0.0000027711,0.0000027732,0.0000027761,0.0000027805, +0.0000027864,0.0000027922,0.0000027987,0.0000028053,0.0000028117, +0.0000028177,0.0000028203,0.0000028203,0.0000028163,0.0000028127, +0.0000028082,0.0000028055,0.0000028022,0.0000028001,0.0000028001, +0.0000028035,0.0000028074,0.0000028100,0.0000028089,0.0000028057, +0.0000027983,0.0000027891,0.0000027772,0.0000027669,0.0000027669, +0.0000027779,0.0000027945,0.0000028051,0.0000028130,0.0000028152, +0.0000028135,0.0000028101,0.0000028047,0.0000028000,0.0000027975, +0.0000027953,0.0000027946,0.0000027952,0.0000027960,0.0000027955, +0.0000027961,0.0000027980,0.0000028019,0.0000028082,0.0000028158, +0.0000028222,0.0000028262,0.0000028274,0.0000028287,0.0000028296, +0.0000028294,0.0000028274,0.0000028265,0.0000028292,0.0000028368, +0.0000028455,0.0000028499,0.0000028498,0.0000028482,0.0000028478, +0.0000028482,0.0000028477,0.0000028439,0.0000028378,0.0000028315, +0.0000028249,0.0000028198,0.0000028153,0.0000028137,0.0000028143, +0.0000028191,0.0000028273,0.0000028338,0.0000028335,0.0000028289, +0.0000028235,0.0000028105,0.0000027996,0.0000027992,0.0000028050, +0.0000028070,0.0000028051,0.0000028036,0.0000028053,0.0000028115, +0.0000028235,0.0000028361,0.0000028462,0.0000028528,0.0000028543, +0.0000028521,0.0000028449,0.0000028361,0.0000028266,0.0000028196, +0.0000028146,0.0000028118,0.0000028088,0.0000028053,0.0000027999, +0.0000027952,0.0000027933,0.0000027942,0.0000027960,0.0000027981, +0.0000027999,0.0000028015,0.0000028031,0.0000028041,0.0000028036, +0.0000028003,0.0000027999,0.0000028007,0.0000028021,0.0000028029, +0.0000028014,0.0000027973,0.0000027943,0.0000027949,0.0000027972, +0.0000028006,0.0000028058,0.0000028116,0.0000028150,0.0000028145, +0.0000028095,0.0000028019,0.0000027939,0.0000027871,0.0000027828, +0.0000027823,0.0000027847,0.0000027879,0.0000027877,0.0000027852, +0.0000027821,0.0000027808,0.0000027837,0.0000027918,0.0000028026, +0.0000028142,0.0000028258,0.0000028356,0.0000028417,0.0000028425, +0.0000028376,0.0000028277,0.0000028178,0.0000028152,0.0000028183, +0.0000028242,0.0000028269,0.0000028269,0.0000028248,0.0000028205, +0.0000028129,0.0000028036,0.0000027982,0.0000028007,0.0000028068, +0.0000028128,0.0000028142,0.0000028116,0.0000028092,0.0000028113, +0.0000028133,0.0000028050,0.0000027884,0.0000027806,0.0000027845, +0.0000027949,0.0000028016,0.0000028012,0.0000027961,0.0000027892, +0.0000027834,0.0000027792,0.0000027754,0.0000027707,0.0000027648, +0.0000027582,0.0000027535,0.0000027532,0.0000027560,0.0000027566, +0.0000027505,0.0000027380,0.0000027234,0.0000027141,0.0000027145, +0.0000027201,0.0000027266,0.0000027299,0.0000027176,0.0000026948, +0.0000026863,0.0000026982,0.0000027222,0.0000027431,0.0000027492, +0.0000027421,0.0000027369,0.0000027387,0.0000027400,0.0000027397, +0.0000027456,0.0000027592,0.0000027736,0.0000027820,0.0000027831, +0.0000027828,0.0000027858,0.0000027895,0.0000027950,0.0000027987, +0.0000027986,0.0000027947,0.0000027919,0.0000027909,0.0000027891, +0.0000027833,0.0000027735,0.0000027661,0.0000027685,0.0000027817, +0.0000027957,0.0000028006,0.0000027958,0.0000027836,0.0000027742, +0.0000027728,0.0000027759,0.0000027775,0.0000027744,0.0000027659, +0.0000027545,0.0000027439,0.0000027423,0.0000027465,0.0000027477, +0.0000027446,0.0000027406,0.0000027351,0.0000027259,0.0000027186, +0.0000027180,0.0000027204,0.0000027252,0.0000027286,0.0000027283, +0.0000027235,0.0000027162,0.0000027141,0.0000027203,0.0000027315, +0.0000027439,0.0000027520,0.0000027554,0.0000027604,0.0000027662, +0.0000027657,0.0000027627,0.0000027691,0.0000027870,0.0000028033, +0.0000028086,0.0000028029,0.0000027996,0.0000028086,0.0000028272, +0.0000028535,0.0000028744,0.0000028853,0.0000028902,0.0000028930, +0.0000028946,0.0000028941,0.0000028911,0.0000028868,0.0000028808, +0.0000028757,0.0000028751,0.0000028739,0.0000028691,0.0000028605, +0.0000028471,0.0000028274,0.0000028044,0.0000027817,0.0000027677, +0.0000027675,0.0000027757,0.0000027815,0.0000027810,0.0000027728, +0.0000027613,0.0000027503,0.0000027411,0.0000027356,0.0000027355, +0.0000027399,0.0000027456,0.0000027462,0.0000027448,0.0000027449, +0.0000027523,0.0000027681,0.0000027858,0.0000027999,0.0000028094, +0.0000028131,0.0000028125,0.0000028102,0.0000028068,0.0000027996, +0.0000027906,0.0000027829,0.0000027754,0.0000027658,0.0000027555, +0.0000027474,0.0000027455,0.0000027495,0.0000027564,0.0000027616, +0.0000027632,0.0000027625,0.0000027622,0.0000027608,0.0000027584, +0.0000027532,0.0000027471,0.0000027438,0.0000027446,0.0000027497, +0.0000027547,0.0000027548,0.0000027506,0.0000027476,0.0000027505, +0.0000027588,0.0000027680,0.0000027726,0.0000027727,0.0000027712, +0.0000027702,0.0000027717,0.0000027764,0.0000027831,0.0000027880, +0.0000027893,0.0000027870,0.0000027833,0.0000027797,0.0000027759, +0.0000027723,0.0000027688,0.0000027649,0.0000027626,0.0000027628, +0.0000027641,0.0000027646,0.0000027633,0.0000027592,0.0000027533, +0.0000027472,0.0000027425,0.0000027404,0.0000027397,0.0000027381, +0.0000027354,0.0000027312,0.0000027269,0.0000027240,0.0000027214, +0.0000027170,0.0000027107,0.0000027035,0.0000026973,0.0000026929, +0.0000026898,0.0000026881,0.0000026869,0.0000026861,0.0000026857, +0.0000026853,0.0000026847,0.0000026840,0.0000026840,0.0000026870, +0.0000026930,0.0000026987,0.0000027024,0.0000027024,0.0000027003, +0.0000026987,0.0000027000,0.0000027049,0.0000027106,0.0000027154, +0.0000027172,0.0000027176,0.0000027174,0.0000027158,0.0000027135, +0.0000027118,0.0000027109,0.0000027110,0.0000027106,0.0000027098, +0.0000027110,0.0000027150,0.0000027187,0.0000027214,0.0000027257, +0.0000027312,0.0000027366,0.0000027440,0.0000027540,0.0000027635, +0.0000027679,0.0000027670,0.0000027643,0.0000027631,0.0000027628, +0.0000027611,0.0000027564,0.0000027490,0.0000027395,0.0000027299, +0.0000027248,0.0000027250,0.0000027265,0.0000027253,0.0000027203, +0.0000027149,0.0000027123,0.0000027104,0.0000027082,0.0000027065, +0.0000027056,0.0000027072,0.0000027117,0.0000027170,0.0000027191, +0.0000027161,0.0000027055,0.0000026919,0.0000026821,0.0000026779, +0.0000026771,0.0000026815,0.0000026954,0.0000027175,0.0000027415, +0.0000027595,0.0000027684,0.0000027700,0.0000027656,0.0000027551, +0.0000027485,0.0000027494,0.0000027569,0.0000027702,0.0000027766, +0.0000027711,0.0000027560,0.0000027395,0.0000027376,0.0000027493, +0.0000027617,0.0000027753,0.0000027948,0.0000028061,0.0000028077, +0.0000028060,0.0000028047,0.0000028101,0.0000028127,0.0000028107, +0.0000028130,0.0000028192,0.0000028257,0.0000028276,0.0000028208, +0.0000028086,0.0000028020,0.0000028012,0.0000028020,0.0000028051, +0.0000028090,0.0000028094,0.0000028069,0.0000028022,0.0000027981, +0.0000027952,0.0000027914,0.0000027893,0.0000027877,0.0000027871, +0.0000027869,0.0000027868,0.0000027892,0.0000027943,0.0000027991, +0.0000028058,0.0000028144,0.0000028200,0.0000028229,0.0000028188, +0.0000028122,0.0000028029,0.0000027972,0.0000027938,0.0000027937, +0.0000027927,0.0000027905,0.0000027877,0.0000027863,0.0000027886, +0.0000027919,0.0000027968,0.0000028027,0.0000028038,0.0000028000, +0.0000027924,0.0000027815,0.0000027696,0.0000027649,0.0000027737, +0.0000027932,0.0000028077,0.0000028159,0.0000028196,0.0000028204, +0.0000028191,0.0000028145,0.0000028114,0.0000028097,0.0000028093, +0.0000028110,0.0000028150,0.0000028174,0.0000028159,0.0000028121, +0.0000028097,0.0000028120,0.0000028180,0.0000028236,0.0000028267, +0.0000028271,0.0000028267,0.0000028278,0.0000028294,0.0000028308, +0.0000028329,0.0000028379,0.0000028446,0.0000028499,0.0000028534, +0.0000028537,0.0000028527,0.0000028526,0.0000028541,0.0000028550, +0.0000028529,0.0000028466,0.0000028377,0.0000028288,0.0000028209, +0.0000028158,0.0000028142,0.0000028150,0.0000028188,0.0000028263, +0.0000028335,0.0000028364,0.0000028336,0.0000028279,0.0000028189, +0.0000028042,0.0000027959,0.0000027962,0.0000028003,0.0000028005, +0.0000027969,0.0000027940,0.0000027965,0.0000028054,0.0000028196, +0.0000028341,0.0000028456,0.0000028528,0.0000028539,0.0000028515, +0.0000028443,0.0000028357,0.0000028267,0.0000028201,0.0000028165, +0.0000028153,0.0000028133,0.0000028100,0.0000028047,0.0000028007, +0.0000027993,0.0000027994,0.0000028001,0.0000028004,0.0000028002, +0.0000028003,0.0000028009,0.0000028012,0.0000028010,0.0000027964, +0.0000027971,0.0000027995,0.0000028027,0.0000028057,0.0000028065, +0.0000028041,0.0000028005,0.0000028001,0.0000028015,0.0000028037, +0.0000028077,0.0000028138,0.0000028200,0.0000028238,0.0000028244, +0.0000028219,0.0000028152,0.0000028048,0.0000027941,0.0000027867, +0.0000027853,0.0000027881,0.0000027895,0.0000027880,0.0000027848, +0.0000027832,0.0000027858,0.0000027945,0.0000028059,0.0000028184, +0.0000028311,0.0000028418,0.0000028482,0.0000028496,0.0000028469, +0.0000028379,0.0000028269,0.0000028207,0.0000028223,0.0000028281, +0.0000028304,0.0000028288,0.0000028260,0.0000028235,0.0000028184, +0.0000028091,0.0000028011,0.0000028011,0.0000028088,0.0000028180, +0.0000028207,0.0000028149,0.0000028074,0.0000028063,0.0000028096, +0.0000028058,0.0000027903,0.0000027776,0.0000027796,0.0000027918, +0.0000028020,0.0000028032,0.0000027952,0.0000027835,0.0000027760, +0.0000027747,0.0000027750,0.0000027737,0.0000027700,0.0000027656, +0.0000027628,0.0000027631,0.0000027648,0.0000027643,0.0000027589, +0.0000027458,0.0000027281,0.0000027170,0.0000027189,0.0000027258, +0.0000027308,0.0000027318,0.0000027203,0.0000026987,0.0000026885, +0.0000026938,0.0000027135,0.0000027354,0.0000027485,0.0000027461, +0.0000027361,0.0000027327,0.0000027359,0.0000027386,0.0000027420, +0.0000027514,0.0000027647,0.0000027752,0.0000027792,0.0000027790, +0.0000027800,0.0000027827,0.0000027863,0.0000027918,0.0000027944, +0.0000027923,0.0000027902,0.0000027915,0.0000027937,0.0000027922, +0.0000027852,0.0000027754,0.0000027703,0.0000027738,0.0000027870, +0.0000027998,0.0000028040,0.0000027987,0.0000027884,0.0000027815, +0.0000027804,0.0000027808,0.0000027780,0.0000027709,0.0000027620, +0.0000027533,0.0000027458,0.0000027426,0.0000027417,0.0000027389, +0.0000027349,0.0000027311,0.0000027279,0.0000027239,0.0000027225, +0.0000027240,0.0000027258,0.0000027302,0.0000027353,0.0000027363, +0.0000027326,0.0000027260,0.0000027239,0.0000027305,0.0000027423, +0.0000027525,0.0000027587,0.0000027621,0.0000027676,0.0000027752, +0.0000027751,0.0000027709,0.0000027732,0.0000027877,0.0000028048, +0.0000028113,0.0000028080,0.0000028073,0.0000028154,0.0000028331, +0.0000028609,0.0000028820,0.0000028912,0.0000028958,0.0000028987, +0.0000029001,0.0000028998,0.0000028975,0.0000028937,0.0000028878, +0.0000028818,0.0000028794,0.0000028770,0.0000028706,0.0000028589, +0.0000028418,0.0000028204,0.0000027986,0.0000027796,0.0000027695, +0.0000027697,0.0000027769,0.0000027810,0.0000027783,0.0000027691, +0.0000027592,0.0000027528,0.0000027475,0.0000027440,0.0000027422, +0.0000027437,0.0000027479,0.0000027502,0.0000027533,0.0000027601, +0.0000027723,0.0000027877,0.0000028002,0.0000028074,0.0000028122, +0.0000028142,0.0000028136,0.0000028118,0.0000028069,0.0000027984, +0.0000027891,0.0000027816,0.0000027748,0.0000027658,0.0000027551, +0.0000027469,0.0000027442,0.0000027456,0.0000027501,0.0000027558, +0.0000027603,0.0000027626,0.0000027649,0.0000027669,0.0000027670, +0.0000027633,0.0000027558,0.0000027489,0.0000027454,0.0000027468, +0.0000027489,0.0000027471,0.0000027431,0.0000027428,0.0000027489, +0.0000027577,0.0000027648,0.0000027676,0.0000027673,0.0000027673, +0.0000027691,0.0000027731,0.0000027789,0.0000027845,0.0000027869, +0.0000027862,0.0000027833,0.0000027799,0.0000027791,0.0000027786, +0.0000027794,0.0000027793,0.0000027778,0.0000027756,0.0000027744, +0.0000027743,0.0000027745,0.0000027740,0.0000027723,0.0000027675, +0.0000027606,0.0000027538,0.0000027485,0.0000027449,0.0000027431, +0.0000027409,0.0000027377,0.0000027330,0.0000027282,0.0000027249, +0.0000027218,0.0000027164,0.0000027094,0.0000027020,0.0000026954, +0.0000026905,0.0000026877,0.0000026868,0.0000026860,0.0000026857, +0.0000026850,0.0000026841,0.0000026837,0.0000026835,0.0000026841, +0.0000026876,0.0000026936,0.0000026989,0.0000027004,0.0000026966, +0.0000026904,0.0000026883,0.0000026928,0.0000027014,0.0000027119, +0.0000027192,0.0000027234,0.0000027257,0.0000027272,0.0000027269, +0.0000027244,0.0000027208,0.0000027169,0.0000027143,0.0000027122, +0.0000027113,0.0000027132,0.0000027184,0.0000027242,0.0000027282, +0.0000027317,0.0000027367,0.0000027424,0.0000027485,0.0000027553, +0.0000027613,0.0000027636,0.0000027623,0.0000027607,0.0000027619, +0.0000027646,0.0000027662,0.0000027635,0.0000027569,0.0000027484, +0.0000027376,0.0000027277,0.0000027232,0.0000027231,0.0000027214, +0.0000027149,0.0000027069,0.0000027021,0.0000027000,0.0000026973, +0.0000026957,0.0000026973,0.0000027015,0.0000027083,0.0000027161, +0.0000027193,0.0000027158,0.0000027035,0.0000026887,0.0000026792, +0.0000026759,0.0000026760,0.0000026824,0.0000027009,0.0000027260, +0.0000027469,0.0000027592,0.0000027657,0.0000027675,0.0000027619, +0.0000027519,0.0000027487,0.0000027522,0.0000027575,0.0000027669, +0.0000027751,0.0000027730,0.0000027620,0.0000027465,0.0000027388, +0.0000027462,0.0000027573,0.0000027686,0.0000027874,0.0000028049, +0.0000028088,0.0000028070,0.0000028055,0.0000028076,0.0000028129, +0.0000028130,0.0000028118,0.0000028151,0.0000028226,0.0000028296, +0.0000028340,0.0000028321,0.0000028214,0.0000028151,0.0000028150, +0.0000028181,0.0000028248,0.0000028317,0.0000028308,0.0000028265, +0.0000028169,0.0000028056,0.0000027962,0.0000027895,0.0000027862, +0.0000027871,0.0000027901,0.0000027926,0.0000027938,0.0000027966, +0.0000028011,0.0000028060,0.0000028104,0.0000028158,0.0000028184, +0.0000028166,0.0000028076,0.0000027996,0.0000027938,0.0000027923, +0.0000027921,0.0000027925,0.0000027932,0.0000027927,0.0000027898, +0.0000027844,0.0000027803,0.0000027761,0.0000027743,0.0000027810, +0.0000027915,0.0000027991,0.0000028003,0.0000027948,0.0000027861, +0.0000027756,0.0000027684,0.0000027726,0.0000027929,0.0000028121, +0.0000028219,0.0000028264,0.0000028299,0.0000028288,0.0000028239, +0.0000028205,0.0000028202,0.0000028218,0.0000028271,0.0000028325, +0.0000028349,0.0000028323,0.0000028262,0.0000028223,0.0000028224, +0.0000028244,0.0000028267,0.0000028262,0.0000028265,0.0000028278, +0.0000028336,0.0000028398,0.0000028447,0.0000028464,0.0000028474, +0.0000028495,0.0000028541,0.0000028592,0.0000028620,0.0000028636, +0.0000028645,0.0000028643,0.0000028623,0.0000028585,0.0000028521, +0.0000028427,0.0000028325,0.0000028232,0.0000028178,0.0000028172, +0.0000028188,0.0000028234,0.0000028301,0.0000028355,0.0000028373, +0.0000028338,0.0000028268,0.0000028157,0.0000028009,0.0000027925, +0.0000027916,0.0000027941,0.0000027943,0.0000027912,0.0000027885, +0.0000027912,0.0000028008,0.0000028159,0.0000028311,0.0000028436, +0.0000028506,0.0000028514,0.0000028492,0.0000028428,0.0000028344, +0.0000028253,0.0000028185,0.0000028157,0.0000028152,0.0000028141, +0.0000028107,0.0000028056,0.0000028017,0.0000028003,0.0000028005, +0.0000028007,0.0000027997,0.0000027981,0.0000027970,0.0000027968, +0.0000027970,0.0000027971,0.0000027946,0.0000027953,0.0000027985, +0.0000028028,0.0000028067,0.0000028085,0.0000028078,0.0000028048, +0.0000028030,0.0000028033,0.0000028055,0.0000028091,0.0000028143, +0.0000028206,0.0000028267,0.0000028307,0.0000028324,0.0000028299, +0.0000028215,0.0000028096,0.0000027986,0.0000027923,0.0000027915, +0.0000027931,0.0000027936,0.0000027924,0.0000027910,0.0000027925, +0.0000027993,0.0000028095,0.0000028211,0.0000028333,0.0000028438, +0.0000028512,0.0000028543,0.0000028528,0.0000028457,0.0000028358, +0.0000028290,0.0000028285,0.0000028322,0.0000028333,0.0000028297, +0.0000028244,0.0000028213,0.0000028192,0.0000028138,0.0000028066, +0.0000028035,0.0000028097,0.0000028199,0.0000028239,0.0000028177, +0.0000028063,0.0000028025,0.0000028051,0.0000028038,0.0000027910, +0.0000027774,0.0000027762,0.0000027872,0.0000028001,0.0000028035, +0.0000027942,0.0000027796,0.0000027710,0.0000027708,0.0000027736, +0.0000027748,0.0000027733,0.0000027714,0.0000027713,0.0000027730, +0.0000027741,0.0000027730,0.0000027673,0.0000027529,0.0000027320, +0.0000027197,0.0000027211,0.0000027295,0.0000027350,0.0000027353, +0.0000027242,0.0000027032,0.0000026897,0.0000026916,0.0000027064, +0.0000027271,0.0000027449,0.0000027498,0.0000027416,0.0000027313, +0.0000027300,0.0000027346,0.0000027394,0.0000027451,0.0000027547, +0.0000027649,0.0000027711,0.0000027732,0.0000027739,0.0000027750, +0.0000027763,0.0000027812,0.0000027865,0.0000027878,0.0000027867, +0.0000027889,0.0000027943,0.0000027965,0.0000027934,0.0000027846, +0.0000027753,0.0000027716,0.0000027764,0.0000027901,0.0000028036, +0.0000028085,0.0000028044,0.0000027943,0.0000027876,0.0000027861, +0.0000027846,0.0000027791,0.0000027693,0.0000027600,0.0000027532, +0.0000027487,0.0000027448,0.0000027409,0.0000027356,0.0000027304, +0.0000027270,0.0000027255,0.0000027256,0.0000027285,0.0000027316, +0.0000027330,0.0000027355,0.0000027407,0.0000027438,0.0000027420, +0.0000027376,0.0000027367,0.0000027436,0.0000027528,0.0000027592, +0.0000027652,0.0000027707,0.0000027769,0.0000027851,0.0000027853, +0.0000027793,0.0000027790,0.0000027894,0.0000028055,0.0000028123, +0.0000028114,0.0000028136,0.0000028207,0.0000028379,0.0000028666, +0.0000028870,0.0000028945,0.0000028991,0.0000029024,0.0000029035, +0.0000029030,0.0000029005,0.0000028961,0.0000028902,0.0000028834, +0.0000028794,0.0000028741,0.0000028649,0.0000028508,0.0000028326, +0.0000028126,0.0000027939,0.0000027785,0.0000027717,0.0000027723, +0.0000027767,0.0000027783,0.0000027732,0.0000027647,0.0000027581, +0.0000027550,0.0000027533,0.0000027507,0.0000027471,0.0000027462, +0.0000027496,0.0000027558,0.0000027653,0.0000027781,0.0000027911, +0.0000028008,0.0000028066,0.0000028102,0.0000028138,0.0000028154, +0.0000028143,0.0000028116,0.0000028055,0.0000027953,0.0000027852, +0.0000027784,0.0000027726,0.0000027648,0.0000027553,0.0000027481, +0.0000027449,0.0000027452,0.0000027477,0.0000027525,0.0000027587, +0.0000027648,0.0000027702,0.0000027750,0.0000027767,0.0000027734, +0.0000027646,0.0000027546,0.0000027458,0.0000027422,0.0000027419, +0.0000027408,0.0000027386,0.0000027399,0.0000027466,0.0000027562, +0.0000027625,0.0000027642,0.0000027637,0.0000027642,0.0000027676, +0.0000027730,0.0000027783,0.0000027817,0.0000027827,0.0000027823, +0.0000027818,0.0000027812,0.0000027817,0.0000027838,0.0000027863, +0.0000027882,0.0000027884,0.0000027865,0.0000027835,0.0000027811, +0.0000027797,0.0000027794,0.0000027791,0.0000027783,0.0000027748, +0.0000027688,0.0000027621,0.0000027555,0.0000027495,0.0000027458, +0.0000027439,0.0000027414,0.0000027368,0.0000027313,0.0000027268, +0.0000027226,0.0000027171,0.0000027105,0.0000027039,0.0000026976, +0.0000026931,0.0000026904,0.0000026905,0.0000026907,0.0000026903, +0.0000026888,0.0000026869,0.0000026854,0.0000026849,0.0000026855, +0.0000026886,0.0000026933,0.0000026967,0.0000026966,0.0000026913, +0.0000026871,0.0000026870,0.0000026966,0.0000027100,0.0000027223, +0.0000027295,0.0000027324,0.0000027336,0.0000027340,0.0000027331, +0.0000027297,0.0000027250,0.0000027200,0.0000027181,0.0000027179, +0.0000027189,0.0000027218,0.0000027274,0.0000027341,0.0000027392, +0.0000027426,0.0000027462,0.0000027499,0.0000027521,0.0000027542, +0.0000027575,0.0000027591,0.0000027587,0.0000027592,0.0000027620, +0.0000027676,0.0000027721,0.0000027715,0.0000027652,0.0000027569, +0.0000027467,0.0000027338,0.0000027226,0.0000027170,0.0000027133, +0.0000027065,0.0000026982,0.0000026934,0.0000026928,0.0000026926, +0.0000026916,0.0000026928,0.0000026976,0.0000027062,0.0000027154, +0.0000027191,0.0000027131,0.0000026982,0.0000026835,0.0000026760, +0.0000026742,0.0000026752,0.0000026847,0.0000027083,0.0000027353, +0.0000027526,0.0000027593,0.0000027627,0.0000027636,0.0000027579, +0.0000027514,0.0000027514,0.0000027575,0.0000027622,0.0000027669, +0.0000027738,0.0000027732,0.0000027649,0.0000027521,0.0000027411, +0.0000027460,0.0000027565,0.0000027640,0.0000027794,0.0000028006, +0.0000028100,0.0000028099,0.0000028080,0.0000028066,0.0000028102, +0.0000028139,0.0000028134,0.0000028139,0.0000028194,0.0000028276, +0.0000028355,0.0000028432,0.0000028450,0.0000028369,0.0000028304, +0.0000028311,0.0000028342,0.0000028383,0.0000028378,0.0000028295, +0.0000028159,0.0000028002,0.0000027855,0.0000027737,0.0000027657, +0.0000027624,0.0000027639,0.0000027704,0.0000027775,0.0000027838, +0.0000027888,0.0000027935,0.0000027992,0.0000028034,0.0000028064, +0.0000028071,0.0000028064,0.0000028005,0.0000027945,0.0000027902, +0.0000027863,0.0000027846,0.0000027822,0.0000027829,0.0000027850, +0.0000027870,0.0000027856,0.0000027803,0.0000027745,0.0000027673, +0.0000027641,0.0000027696,0.0000027812,0.0000027918,0.0000027972, +0.0000027946,0.0000027886,0.0000027823,0.0000027783,0.0000027805, +0.0000027962,0.0000028171,0.0000028281,0.0000028331,0.0000028366, +0.0000028354,0.0000028307,0.0000028274,0.0000028285,0.0000028331, +0.0000028384,0.0000028414,0.0000028428,0.0000028404,0.0000028365, +0.0000028347,0.0000028347,0.0000028359,0.0000028360,0.0000028357, +0.0000028380,0.0000028421,0.0000028472,0.0000028498,0.0000028496, +0.0000028485,0.0000028504,0.0000028569,0.0000028640,0.0000028694, +0.0000028729,0.0000028731,0.0000028708,0.0000028669,0.0000028629, +0.0000028600,0.0000028567,0.0000028512,0.0000028424,0.0000028319, +0.0000028235,0.0000028203,0.0000028210,0.0000028253,0.0000028309, +0.0000028359,0.0000028381,0.0000028343,0.0000028264,0.0000028155, +0.0000028008,0.0000027905,0.0000027874,0.0000027890,0.0000027906, +0.0000027902,0.0000027888,0.0000027912,0.0000028001,0.0000028128, +0.0000028268,0.0000028389,0.0000028455,0.0000028460,0.0000028433, +0.0000028368,0.0000028278,0.0000028179,0.0000028105,0.0000028087, +0.0000028092,0.0000028085,0.0000028053,0.0000028008,0.0000027975, +0.0000027965,0.0000027975,0.0000027978,0.0000027963,0.0000027937, +0.0000027920,0.0000027921,0.0000027940,0.0000027948,0.0000027978, +0.0000027989,0.0000028002,0.0000028036,0.0000028072,0.0000028089, +0.0000028086,0.0000028060,0.0000028032,0.0000028027,0.0000028044, +0.0000028084,0.0000028134,0.0000028193,0.0000028260,0.0000028323, +0.0000028365,0.0000028377,0.0000028326,0.0000028229,0.0000028123, +0.0000028043,0.0000027996,0.0000027975,0.0000027968,0.0000027971, +0.0000027979,0.0000027993,0.0000028039,0.0000028127,0.0000028235, +0.0000028342,0.0000028433,0.0000028505,0.0000028551,0.0000028555, +0.0000028503,0.0000028418,0.0000028359,0.0000028352,0.0000028364, +0.0000028362,0.0000028326,0.0000028257,0.0000028195,0.0000028166, +0.0000028146,0.0000028109,0.0000028082,0.0000028105,0.0000028185, +0.0000028229,0.0000028177,0.0000028054,0.0000027994,0.0000028006, +0.0000028000,0.0000027901,0.0000027765,0.0000027725,0.0000027823, +0.0000027960,0.0000028005,0.0000027928,0.0000027780,0.0000027679, +0.0000027664,0.0000027698,0.0000027729,0.0000027739,0.0000027744, +0.0000027764,0.0000027797,0.0000027814,0.0000027805,0.0000027740, +0.0000027570,0.0000027336,0.0000027205,0.0000027222,0.0000027320, +0.0000027382,0.0000027380,0.0000027274,0.0000027069,0.0000026935, +0.0000026920,0.0000027012,0.0000027190,0.0000027380,0.0000027499, +0.0000027485,0.0000027374,0.0000027276,0.0000027278,0.0000027329, +0.0000027379,0.0000027440,0.0000027524,0.0000027601,0.0000027648, +0.0000027663,0.0000027670,0.0000027681,0.0000027709,0.0000027766, +0.0000027805,0.0000027817,0.0000027843,0.0000027914,0.0000027980, +0.0000027982,0.0000027920,0.0000027820,0.0000027731,0.0000027705, +0.0000027778,0.0000027929,0.0000028082,0.0000028147,0.0000028114, +0.0000028004,0.0000027925,0.0000027904,0.0000027877,0.0000027807, +0.0000027700,0.0000027598,0.0000027533,0.0000027512,0.0000027494, +0.0000027455,0.0000027401,0.0000027345,0.0000027308,0.0000027290, +0.0000027300,0.0000027332,0.0000027365,0.0000027380,0.0000027407, +0.0000027469,0.0000027516,0.0000027511,0.0000027508,0.0000027549, +0.0000027611,0.0000027634,0.0000027661,0.0000027717,0.0000027798, +0.0000027884,0.0000027953,0.0000027946,0.0000027879,0.0000027858, +0.0000027921,0.0000028053,0.0000028122,0.0000028132,0.0000028179, +0.0000028249,0.0000028417,0.0000028699,0.0000028890,0.0000028955, +0.0000029006,0.0000029046,0.0000029056,0.0000029047,0.0000029013, +0.0000028963,0.0000028892,0.0000028808,0.0000028739,0.0000028651, +0.0000028534,0.0000028391,0.0000028231,0.0000028069,0.0000027916, +0.0000027790,0.0000027739,0.0000027743,0.0000027758,0.0000027735, +0.0000027671,0.0000027605,0.0000027580,0.0000027578,0.0000027578, +0.0000027543,0.0000027493,0.0000027478,0.0000027528,0.0000027647, +0.0000027803,0.0000027952,0.0000028037,0.0000028068,0.0000028092, +0.0000028135,0.0000028166,0.0000028164,0.0000028129,0.0000028083, +0.0000028019,0.0000027911,0.0000027801,0.0000027733,0.0000027683, +0.0000027622,0.0000027549,0.0000027492,0.0000027473,0.0000027468, +0.0000027473,0.0000027503,0.0000027569,0.0000027655,0.0000027736, +0.0000027798,0.0000027827,0.0000027798,0.0000027709,0.0000027579, +0.0000027456,0.0000027384,0.0000027374,0.0000027376,0.0000027375, +0.0000027385,0.0000027434,0.0000027515,0.0000027588,0.0000027619, +0.0000027629,0.0000027639,0.0000027669,0.0000027706,0.0000027738, +0.0000027754,0.0000027762,0.0000027778,0.0000027804,0.0000027832, +0.0000027862,0.0000027896,0.0000027928,0.0000027940,0.0000027934, +0.0000027911,0.0000027882,0.0000027846,0.0000027814,0.0000027801, +0.0000027802,0.0000027803,0.0000027802,0.0000027786,0.0000027744, +0.0000027690,0.0000027623,0.0000027553,0.0000027504,0.0000027491, +0.0000027478,0.0000027443,0.0000027393,0.0000027344,0.0000027301, +0.0000027257,0.0000027207,0.0000027155,0.0000027100,0.0000027058, +0.0000027033,0.0000027030,0.0000027025,0.0000027005,0.0000026975, +0.0000026945,0.0000026923,0.0000026911,0.0000026914,0.0000026935, +0.0000026966,0.0000026988,0.0000026989,0.0000026962,0.0000026942, +0.0000026989,0.0000027107,0.0000027238,0.0000027333,0.0000027375, +0.0000027378,0.0000027372,0.0000027376,0.0000027381,0.0000027371, +0.0000027351,0.0000027329,0.0000027338,0.0000027364,0.0000027389, +0.0000027412,0.0000027445,0.0000027492,0.0000027535,0.0000027554, +0.0000027561,0.0000027558,0.0000027542,0.0000027525,0.0000027533, +0.0000027554,0.0000027575,0.0000027592,0.0000027635,0.0000027703, +0.0000027762,0.0000027774,0.0000027728,0.0000027645,0.0000027549, +0.0000027423,0.0000027267,0.0000027134,0.0000027052,0.0000026987, +0.0000026924,0.0000026896,0.0000026908,0.0000026926,0.0000026935, +0.0000026938,0.0000026978,0.0000027057,0.0000027137,0.0000027161, +0.0000027077,0.0000026912,0.0000026783,0.0000026740,0.0000026736, +0.0000026751,0.0000026886,0.0000027166,0.0000027443,0.0000027579, +0.0000027604,0.0000027605,0.0000027593,0.0000027562,0.0000027554, +0.0000027592,0.0000027644,0.0000027668,0.0000027687,0.0000027735, +0.0000027730,0.0000027656,0.0000027546,0.0000027434,0.0000027455, +0.0000027572,0.0000027639,0.0000027730,0.0000027932,0.0000028095, +0.0000028120,0.0000028120,0.0000028120,0.0000028118,0.0000028142, +0.0000028166,0.0000028165,0.0000028185,0.0000028246,0.0000028327, +0.0000028414,0.0000028502,0.0000028520,0.0000028446,0.0000028353, +0.0000028322,0.0000028304,0.0000028256,0.0000028162,0.0000028033, +0.0000027917,0.0000027816,0.0000027734,0.0000027650,0.0000027590, +0.0000027546,0.0000027508,0.0000027501,0.0000027528,0.0000027593, +0.0000027670,0.0000027742,0.0000027826,0.0000027904,0.0000027950, +0.0000027971,0.0000027985,0.0000027943,0.0000027848,0.0000027740, +0.0000027632,0.0000027596,0.0000027565,0.0000027582,0.0000027616, +0.0000027680,0.0000027728,0.0000027736,0.0000027713,0.0000027657, +0.0000027603,0.0000027592,0.0000027642,0.0000027752,0.0000027863, +0.0000027924,0.0000027937,0.0000027927,0.0000027921,0.0000027923, +0.0000027922,0.0000027996,0.0000028182,0.0000028320,0.0000028374, +0.0000028407,0.0000028403,0.0000028354,0.0000028333,0.0000028365, +0.0000028416,0.0000028429,0.0000028422,0.0000028421,0.0000028408, +0.0000028405,0.0000028424,0.0000028443,0.0000028455,0.0000028455, +0.0000028449,0.0000028459,0.0000028484,0.0000028510,0.0000028521, +0.0000028522,0.0000028545,0.0000028589,0.0000028654,0.0000028718, +0.0000028765,0.0000028788,0.0000028773,0.0000028720,0.0000028649, +0.0000028593,0.0000028564,0.0000028556,0.0000028548,0.0000028528, +0.0000028442,0.0000028324,0.0000028238,0.0000028218,0.0000028244, +0.0000028292,0.0000028350,0.0000028386,0.0000028355,0.0000028280, +0.0000028191,0.0000028059,0.0000027931,0.0000027869,0.0000027869, +0.0000027898,0.0000027926,0.0000027936,0.0000027964,0.0000028034, +0.0000028137,0.0000028248,0.0000028341,0.0000028386,0.0000028380, +0.0000028339,0.0000028261,0.0000028156,0.0000028046,0.0000027975, +0.0000027967,0.0000027981,0.0000027979,0.0000027958,0.0000027932, +0.0000027920,0.0000027928,0.0000027950,0.0000027958,0.0000027941, +0.0000027901,0.0000027871,0.0000027873,0.0000027909,0.0000027949, +0.0000027992,0.0000028038,0.0000028060,0.0000028078,0.0000028098, +0.0000028104,0.0000028092,0.0000028058,0.0000028019,0.0000027998, +0.0000028002,0.0000028033,0.0000028077,0.0000028126,0.0000028190, +0.0000028269,0.0000028343,0.0000028383,0.0000028369,0.0000028314, +0.0000028226,0.0000028150,0.0000028100,0.0000028058,0.0000028025, +0.0000028019,0.0000028028,0.0000028034,0.0000028059,0.0000028132, +0.0000028235,0.0000028338,0.0000028419,0.0000028474,0.0000028523, +0.0000028547,0.0000028524,0.0000028448,0.0000028394,0.0000028388, +0.0000028382,0.0000028365,0.0000028337,0.0000028280,0.0000028198, +0.0000028146,0.0000028140,0.0000028132,0.0000028119,0.0000028105, +0.0000028150,0.0000028187,0.0000028148,0.0000028042,0.0000027973, +0.0000027969,0.0000027955,0.0000027882,0.0000027776,0.0000027729, +0.0000027783,0.0000027906,0.0000027948,0.0000027901,0.0000027774, +0.0000027670,0.0000027634,0.0000027649,0.0000027689,0.0000027725, +0.0000027752,0.0000027787,0.0000027833,0.0000027864,0.0000027855, +0.0000027773,0.0000027581,0.0000027343,0.0000027203,0.0000027231, +0.0000027333,0.0000027404,0.0000027410,0.0000027304,0.0000027103, +0.0000026957,0.0000026936,0.0000026979,0.0000027115,0.0000027301, +0.0000027472,0.0000027527,0.0000027474,0.0000027333,0.0000027243, +0.0000027243,0.0000027276,0.0000027319,0.0000027387,0.0000027473, +0.0000027538,0.0000027570,0.0000027585,0.0000027609,0.0000027639, +0.0000027692,0.0000027735,0.0000027759,0.0000027787,0.0000027857, +0.0000027952,0.0000027996,0.0000027973,0.0000027888,0.0000027782, +0.0000027706,0.0000027705,0.0000027801,0.0000027970,0.0000028144, +0.0000028215,0.0000028185,0.0000028063,0.0000027964,0.0000027934, +0.0000027908,0.0000027836,0.0000027728,0.0000027616,0.0000027548, +0.0000027540,0.0000027544,0.0000027524,0.0000027491,0.0000027449, +0.0000027394,0.0000027341,0.0000027333,0.0000027358,0.0000027393, +0.0000027421,0.0000027469,0.0000027546,0.0000027596,0.0000027609, +0.0000027672,0.0000027771,0.0000027782,0.0000027728,0.0000027736, +0.0000027807,0.0000027914,0.0000028008,0.0000028051,0.0000028023, +0.0000027957,0.0000027927,0.0000027954,0.0000028039,0.0000028100, +0.0000028146,0.0000028224,0.0000028294,0.0000028446,0.0000028698, +0.0000028869,0.0000028941,0.0000029002,0.0000029054,0.0000029067, +0.0000029055,0.0000029016,0.0000028953,0.0000028866,0.0000028755, +0.0000028646,0.0000028526,0.0000028398,0.0000028277,0.0000028160, +0.0000028039,0.0000027907,0.0000027798,0.0000027758,0.0000027755, +0.0000027738,0.0000027687,0.0000027622,0.0000027579,0.0000027573, +0.0000027590,0.0000027594,0.0000027558,0.0000027509,0.0000027501, +0.0000027597,0.0000027771,0.0000027960,0.0000028076,0.0000028092, +0.0000028083,0.0000028116,0.0000028187,0.0000028212,0.0000028163, +0.0000028089,0.0000028026,0.0000027966,0.0000027871,0.0000027758, +0.0000027678,0.0000027626,0.0000027578,0.0000027528,0.0000027493, +0.0000027483,0.0000027483,0.0000027476,0.0000027482,0.0000027534, +0.0000027627,0.0000027723,0.0000027796,0.0000027833,0.0000027822, +0.0000027734,0.0000027589,0.0000027458,0.0000027387,0.0000027373, +0.0000027382,0.0000027381,0.0000027380,0.0000027397,0.0000027447, +0.0000027525,0.0000027595,0.0000027638,0.0000027664,0.0000027680, +0.0000027686,0.0000027682,0.0000027682,0.0000027700,0.0000027739, +0.0000027783,0.0000027829,0.0000027877,0.0000027932,0.0000027978, +0.0000027994,0.0000027971,0.0000027927,0.0000027871,0.0000027829, +0.0000027794,0.0000027770,0.0000027765,0.0000027771,0.0000027772, +0.0000027770,0.0000027767,0.0000027753,0.0000027724,0.0000027673, +0.0000027613,0.0000027556,0.0000027526,0.0000027518,0.0000027498, +0.0000027475,0.0000027448,0.0000027425,0.0000027410,0.0000027387, +0.0000027348,0.0000027298,0.0000027256,0.0000027229,0.0000027213, +0.0000027190,0.0000027153,0.0000027113,0.0000027082,0.0000027056, +0.0000027035,0.0000027027,0.0000027033,0.0000027052,0.0000027073, +0.0000027088,0.0000027096,0.0000027107,0.0000027151,0.0000027241, +0.0000027337,0.0000027402,0.0000027438,0.0000027455,0.0000027475, +0.0000027517,0.0000027570,0.0000027601,0.0000027607,0.0000027602, +0.0000027610,0.0000027629,0.0000027640,0.0000027639,0.0000027634, +0.0000027634,0.0000027642,0.0000027638,0.0000027615,0.0000027579, +0.0000027546,0.0000027517,0.0000027511,0.0000027534,0.0000027577, +0.0000027615,0.0000027652,0.0000027703,0.0000027763,0.0000027797, +0.0000027781,0.0000027714,0.0000027622,0.0000027512,0.0000027362, +0.0000027178,0.0000027029,0.0000026949,0.0000026908,0.0000026893, +0.0000026906,0.0000026944,0.0000026984,0.0000027005,0.0000027027, +0.0000027075,0.0000027109,0.0000027103,0.0000026997,0.0000026837, +0.0000026730,0.0000026716,0.0000026729,0.0000026771,0.0000026939, +0.0000027244,0.0000027520,0.0000027634,0.0000027631,0.0000027596, +0.0000027571,0.0000027586,0.0000027641,0.0000027689,0.0000027709, +0.0000027704,0.0000027699,0.0000027739,0.0000027744,0.0000027659, +0.0000027544,0.0000027437,0.0000027438,0.0000027571,0.0000027655, +0.0000027715,0.0000027866,0.0000028050,0.0000028129,0.0000028139, +0.0000028164,0.0000028179,0.0000028177,0.0000028187,0.0000028197, +0.0000028210,0.0000028238,0.0000028291,0.0000028371,0.0000028458, +0.0000028520,0.0000028524,0.0000028442,0.0000028310,0.0000028189, +0.0000028100,0.0000028010,0.0000027948,0.0000027924,0.0000027892, +0.0000027816,0.0000027725,0.0000027629,0.0000027573,0.0000027559, +0.0000027549,0.0000027526,0.0000027513,0.0000027517,0.0000027505, +0.0000027509,0.0000027537,0.0000027623,0.0000027699,0.0000027734, +0.0000027760,0.0000027731,0.0000027644,0.0000027539,0.0000027427, +0.0000027394,0.0000027368,0.0000027375,0.0000027432,0.0000027504, +0.0000027585,0.0000027629,0.0000027635,0.0000027622,0.0000027579, +0.0000027526,0.0000027525,0.0000027599,0.0000027724,0.0000027848, +0.0000027908,0.0000027933,0.0000027945,0.0000027964,0.0000028016, +0.0000028036,0.0000028056,0.0000028170,0.0000028336,0.0000028402, +0.0000028450,0.0000028462,0.0000028426,0.0000028402,0.0000028434, +0.0000028458,0.0000028429,0.0000028407,0.0000028400,0.0000028413, +0.0000028448,0.0000028481,0.0000028499,0.0000028506,0.0000028498, +0.0000028491,0.0000028498,0.0000028526,0.0000028547,0.0000028562, +0.0000028581,0.0000028611,0.0000028658,0.0000028721,0.0000028785, +0.0000028816,0.0000028820,0.0000028783,0.0000028717,0.0000028640, +0.0000028578,0.0000028535,0.0000028521,0.0000028540,0.0000028564, +0.0000028545,0.0000028439,0.0000028300,0.0000028219,0.0000028212, +0.0000028250,0.0000028324,0.0000028387,0.0000028376,0.0000028324, +0.0000028251,0.0000028145,0.0000028019,0.0000027922,0.0000027893, +0.0000027932,0.0000027975,0.0000028004,0.0000028050,0.0000028120, +0.0000028198,0.0000028264,0.0000028308,0.0000028322,0.0000028301, +0.0000028243,0.0000028148,0.0000028031,0.0000027918,0.0000027853, +0.0000027846,0.0000027867,0.0000027877,0.0000027872,0.0000027870, +0.0000027898,0.0000027926,0.0000027957,0.0000027964,0.0000027941, +0.0000027885,0.0000027836,0.0000027818,0.0000027847,0.0000027918, +0.0000027982,0.0000028060,0.0000028108,0.0000028132,0.0000028144, +0.0000028145,0.0000028128,0.0000028088,0.0000028036,0.0000027998, +0.0000027976,0.0000027984,0.0000027996,0.0000028025,0.0000028064, +0.0000028130,0.0000028218,0.0000028296,0.0000028330,0.0000028314, +0.0000028253,0.0000028186,0.0000028143,0.0000028113,0.0000028092, +0.0000028080,0.0000028076,0.0000028062,0.0000028054,0.0000028092, +0.0000028190,0.0000028306,0.0000028383,0.0000028415,0.0000028448, +0.0000028494,0.0000028505,0.0000028457,0.0000028412,0.0000028402, +0.0000028386,0.0000028345,0.0000028315,0.0000028278,0.0000028200, +0.0000028140,0.0000028139,0.0000028157,0.0000028154,0.0000028124, +0.0000028114,0.0000028126,0.0000028102,0.0000028027,0.0000027967, +0.0000027944,0.0000027911,0.0000027854,0.0000027786,0.0000027733, +0.0000027759,0.0000027852,0.0000027893,0.0000027860,0.0000027770, +0.0000027682,0.0000027624,0.0000027615,0.0000027646,0.0000027695, +0.0000027740,0.0000027788,0.0000027843,0.0000027879,0.0000027868, +0.0000027766,0.0000027553,0.0000027325,0.0000027214,0.0000027249, +0.0000027358,0.0000027421,0.0000027426,0.0000027329,0.0000027133, +0.0000026971,0.0000026934,0.0000026957,0.0000027051,0.0000027222, +0.0000027413,0.0000027547,0.0000027553,0.0000027443,0.0000027290, +0.0000027204,0.0000027191,0.0000027201,0.0000027251,0.0000027335, +0.0000027411,0.0000027455,0.0000027480,0.0000027523,0.0000027582, +0.0000027638,0.0000027682,0.0000027708,0.0000027736,0.0000027793, +0.0000027891,0.0000027977,0.0000027996,0.0000027947,0.0000027846, +0.0000027744,0.0000027700,0.0000027730,0.0000027848,0.0000028031, +0.0000028213,0.0000028285,0.0000028241,0.0000028105,0.0000027992, +0.0000027953,0.0000027934,0.0000027871,0.0000027769,0.0000027661, +0.0000027601,0.0000027593,0.0000027592,0.0000027583,0.0000027576, +0.0000027544,0.0000027461,0.0000027375,0.0000027352,0.0000027381, +0.0000027430,0.0000027479,0.0000027553,0.0000027634,0.0000027673, +0.0000027732,0.0000027875,0.0000027970,0.0000027910,0.0000027820, +0.0000027843,0.0000027947,0.0000028054,0.0000028123,0.0000028129, +0.0000028073,0.0000028019,0.0000027996,0.0000027994,0.0000028021, +0.0000028062,0.0000028150,0.0000028265,0.0000028348,0.0000028486, +0.0000028682,0.0000028826,0.0000028902,0.0000028978,0.0000029045, +0.0000029068,0.0000029061,0.0000029020,0.0000028949,0.0000028847, +0.0000028707,0.0000028562,0.0000028415,0.0000028283,0.0000028181, +0.0000028102,0.0000028010,0.0000027892,0.0000027799,0.0000027770, +0.0000027762,0.0000027721,0.0000027659,0.0000027602,0.0000027572, +0.0000027567,0.0000027582,0.0000027588,0.0000027555,0.0000027523, +0.0000027550,0.0000027697,0.0000027905,0.0000028090,0.0000028154, +0.0000028110,0.0000028079,0.0000028142,0.0000028238,0.0000028246, +0.0000028162,0.0000028043,0.0000027967,0.0000027916,0.0000027840, +0.0000027737,0.0000027641,0.0000027569,0.0000027520,0.0000027488, +0.0000027472,0.0000027480,0.0000027493,0.0000027487,0.0000027475, +0.0000027496,0.0000027570,0.0000027670,0.0000027750,0.0000027795, +0.0000027799,0.0000027738,0.0000027608,0.0000027481,0.0000027418, +0.0000027409,0.0000027411,0.0000027394,0.0000027367,0.0000027361, +0.0000027392,0.0000027466,0.0000027570,0.0000027649,0.0000027687, +0.0000027694,0.0000027679,0.0000027654,0.0000027643,0.0000027661, +0.0000027702,0.0000027752,0.0000027801,0.0000027853,0.0000027916, +0.0000027980,0.0000028003,0.0000027996,0.0000027934,0.0000027849, +0.0000027777,0.0000027732,0.0000027708,0.0000027699,0.0000027695, +0.0000027696,0.0000027699,0.0000027713,0.0000027741,0.0000027759, +0.0000027753,0.0000027718,0.0000027660,0.0000027588,0.0000027527, +0.0000027503,0.0000027497,0.0000027494,0.0000027493,0.0000027499, +0.0000027513,0.0000027512,0.0000027485,0.0000027443,0.0000027405, +0.0000027376,0.0000027349,0.0000027319,0.0000027277,0.0000027237, +0.0000027205,0.0000027178,0.0000027157,0.0000027143,0.0000027141, +0.0000027156,0.0000027183,0.0000027210,0.0000027236,0.0000027259, +0.0000027292,0.0000027359,0.0000027449,0.0000027528,0.0000027592, +0.0000027652,0.0000027709,0.0000027776,0.0000027845,0.0000027877, +0.0000027873,0.0000027834,0.0000027804,0.0000027790,0.0000027772, +0.0000027739,0.0000027703,0.0000027683,0.0000027670,0.0000027657, +0.0000027626,0.0000027585,0.0000027549,0.0000027523,0.0000027519, +0.0000027545,0.0000027603,0.0000027645,0.0000027657,0.0000027674, +0.0000027721,0.0000027784,0.0000027808,0.0000027780,0.0000027705, +0.0000027598,0.0000027466,0.0000027293,0.0000027098,0.0000026970, +0.0000026920,0.0000026913,0.0000026924,0.0000026960,0.0000027019, +0.0000027072,0.0000027099,0.0000027110,0.0000027097,0.0000027028, +0.0000026907,0.0000026771,0.0000026692,0.0000026690,0.0000026716, +0.0000026790,0.0000026997,0.0000027308,0.0000027571,0.0000027672, +0.0000027655,0.0000027598,0.0000027577,0.0000027631,0.0000027718, +0.0000027744,0.0000027745,0.0000027746,0.0000027730,0.0000027741, +0.0000027749,0.0000027666,0.0000027541,0.0000027415,0.0000027396, +0.0000027554,0.0000027682,0.0000027732,0.0000027843,0.0000028004, +0.0000028105,0.0000028130,0.0000028162,0.0000028214,0.0000028230, +0.0000028226,0.0000028227,0.0000028239,0.0000028264,0.0000028289, +0.0000028333,0.0000028413,0.0000028482,0.0000028505,0.0000028469, +0.0000028352,0.0000028204,0.0000028041,0.0000027946,0.0000027933, +0.0000027950,0.0000027942,0.0000027863,0.0000027735,0.0000027598, +0.0000027473,0.0000027402,0.0000027383,0.0000027397,0.0000027430, +0.0000027464,0.0000027528,0.0000027567,0.0000027553,0.0000027514, +0.0000027507,0.0000027536,0.0000027572,0.0000027614,0.0000027639, +0.0000027633,0.0000027576,0.0000027490,0.0000027454,0.0000027421, +0.0000027392,0.0000027423,0.0000027472,0.0000027542,0.0000027600, +0.0000027625,0.0000027628,0.0000027603,0.0000027545,0.0000027496, +0.0000027489,0.0000027558,0.0000027696,0.0000027827,0.0000027914, +0.0000027941,0.0000027927,0.0000027947,0.0000028036,0.0000028102, +0.0000028126,0.0000028178,0.0000028304,0.0000028425,0.0000028492, +0.0000028544,0.0000028544,0.0000028507,0.0000028490,0.0000028466, +0.0000028428,0.0000028407,0.0000028418,0.0000028450,0.0000028508, +0.0000028545,0.0000028559,0.0000028563,0.0000028547,0.0000028529, +0.0000028532,0.0000028549,0.0000028564,0.0000028580,0.0000028617, +0.0000028674,0.0000028725,0.0000028771,0.0000028810,0.0000028813, +0.0000028799,0.0000028738,0.0000028664,0.0000028601,0.0000028561, +0.0000028528,0.0000028507,0.0000028522,0.0000028554,0.0000028565, +0.0000028526,0.0000028391,0.0000028251,0.0000028188,0.0000028198, +0.0000028269,0.0000028361,0.0000028398,0.0000028377,0.0000028319, +0.0000028252,0.0000028146,0.0000028029,0.0000027978,0.0000027997, +0.0000028035,0.0000028070,0.0000028124,0.0000028202,0.0000028271, +0.0000028303,0.0000028306,0.0000028297,0.0000028256,0.0000028185, +0.0000028083,0.0000027973,0.0000027867,0.0000027807,0.0000027794, +0.0000027817,0.0000027840,0.0000027859,0.0000027885,0.0000027936, +0.0000028001,0.0000028048,0.0000028053,0.0000028019,0.0000027939, +0.0000027849,0.0000027797,0.0000027806,0.0000027880,0.0000027991, +0.0000028094,0.0000028161,0.0000028192,0.0000028199,0.0000028193, +0.0000028177,0.0000028151,0.0000028115,0.0000028077,0.0000028035, +0.0000028002,0.0000027985,0.0000027983,0.0000027987,0.0000027996, +0.0000028048,0.0000028123,0.0000028183,0.0000028203,0.0000028189, +0.0000028153,0.0000028119,0.0000028097,0.0000028085,0.0000028087, +0.0000028092,0.0000028077,0.0000028047,0.0000028039,0.0000028101, +0.0000028218,0.0000028306,0.0000028327,0.0000028335,0.0000028379, +0.0000028423,0.0000028427,0.0000028417,0.0000028407,0.0000028382, +0.0000028327,0.0000028286,0.0000028250,0.0000028178,0.0000028128, +0.0000028146,0.0000028191,0.0000028190,0.0000028144,0.0000028078, +0.0000028057,0.0000028042,0.0000028004,0.0000027960,0.0000027925, +0.0000027873,0.0000027820,0.0000027790,0.0000027762,0.0000027759, +0.0000027803,0.0000027829,0.0000027806,0.0000027760,0.0000027710, +0.0000027646,0.0000027609,0.0000027627,0.0000027671,0.0000027715, +0.0000027767,0.0000027828,0.0000027856,0.0000027829,0.0000027704, +0.0000027499,0.0000027301,0.0000027223,0.0000027261,0.0000027380, +0.0000027435,0.0000027426,0.0000027343,0.0000027159,0.0000026989, +0.0000026923,0.0000026931,0.0000026995,0.0000027144,0.0000027342, +0.0000027524,0.0000027602,0.0000027553,0.0000027405,0.0000027246, +0.0000027150,0.0000027127,0.0000027143,0.0000027208,0.0000027281, +0.0000027329,0.0000027368,0.0000027423,0.0000027500,0.0000027568, +0.0000027628,0.0000027662,0.0000027689,0.0000027735,0.0000027822, +0.0000027930,0.0000027997,0.0000027994,0.0000027922,0.0000027810, +0.0000027729,0.0000027721,0.0000027792,0.0000027928,0.0000028110, +0.0000028281,0.0000028336,0.0000028262,0.0000028116,0.0000027998, +0.0000027954,0.0000027939,0.0000027893,0.0000027817,0.0000027728, +0.0000027664,0.0000027640,0.0000027640,0.0000027649,0.0000027652, +0.0000027603,0.0000027485,0.0000027392,0.0000027378,0.0000027419, +0.0000027478,0.0000027549,0.0000027637,0.0000027713,0.0000027780, +0.0000027909,0.0000028058,0.0000028087,0.0000028013,0.0000027968, +0.0000028008,0.0000028098,0.0000028164,0.0000028182,0.0000028156, +0.0000028106,0.0000028082,0.0000028073,0.0000028045,0.0000028003, +0.0000028019,0.0000028156,0.0000028304,0.0000028410,0.0000028541, +0.0000028667,0.0000028755,0.0000028829,0.0000028926,0.0000029017, +0.0000029059,0.0000029056,0.0000029018,0.0000028945,0.0000028833, +0.0000028678,0.0000028516,0.0000028361,0.0000028229,0.0000028131, +0.0000028055,0.0000027973,0.0000027872,0.0000027797,0.0000027775, +0.0000027761,0.0000027714,0.0000027657,0.0000027608,0.0000027576, +0.0000027559,0.0000027566,0.0000027581,0.0000027572,0.0000027570, +0.0000027638,0.0000027815,0.0000028029,0.0000028172,0.0000028177, +0.0000028097,0.0000028062,0.0000028156,0.0000028278,0.0000028283, +0.0000028173,0.0000028022,0.0000027929,0.0000027889,0.0000027831, +0.0000027743,0.0000027643,0.0000027545,0.0000027470,0.0000027435, +0.0000027429,0.0000027449,0.0000027482,0.0000027494,0.0000027477, +0.0000027469,0.0000027501,0.0000027575,0.0000027654,0.0000027713, +0.0000027735,0.0000027715,0.0000027625,0.0000027510,0.0000027441, +0.0000027432,0.0000027436,0.0000027418,0.0000027379,0.0000027356, +0.0000027373,0.0000027448,0.0000027556,0.0000027643,0.0000027680, +0.0000027686,0.0000027667,0.0000027650,0.0000027652,0.0000027666, +0.0000027689,0.0000027727,0.0000027770,0.0000027819,0.0000027873, +0.0000027931,0.0000027971,0.0000027967,0.0000027911,0.0000027826, +0.0000027752,0.0000027704,0.0000027680,0.0000027668,0.0000027657, +0.0000027646,0.0000027649,0.0000027675,0.0000027706,0.0000027757, +0.0000027797,0.0000027802,0.0000027769,0.0000027701,0.0000027612, +0.0000027534,0.0000027487,0.0000027482,0.0000027485,0.0000027494, +0.0000027519,0.0000027541,0.0000027540,0.0000027524,0.0000027492, +0.0000027457,0.0000027427,0.0000027399,0.0000027372,0.0000027338, +0.0000027300,0.0000027271,0.0000027257,0.0000027255,0.0000027258, +0.0000027260,0.0000027270,0.0000027288,0.0000027313,0.0000027354, +0.0000027407,0.0000027466,0.0000027547,0.0000027649,0.0000027738, +0.0000027809,0.0000027870,0.0000027919,0.0000027961,0.0000027994, +0.0000028003,0.0000027959,0.0000027899,0.0000027829,0.0000027789, +0.0000027766,0.0000027734,0.0000027695,0.0000027663,0.0000027652, +0.0000027647,0.0000027628,0.0000027595,0.0000027567,0.0000027560, +0.0000027574,0.0000027597,0.0000027640,0.0000027666,0.0000027641, +0.0000027617,0.0000027650,0.0000027740,0.0000027816,0.0000027826, +0.0000027791,0.0000027697,0.0000027556,0.0000027398,0.0000027225, +0.0000027053,0.0000026950,0.0000026933,0.0000026948,0.0000026982, +0.0000027037,0.0000027104,0.0000027147,0.0000027149,0.0000027086, +0.0000026957,0.0000026817,0.0000026722,0.0000026681,0.0000026681, +0.0000026702,0.0000026798,0.0000027038,0.0000027359,0.0000027603, +0.0000027686,0.0000027672,0.0000027607,0.0000027584,0.0000027661, +0.0000027741,0.0000027748,0.0000027749,0.0000027783,0.0000027788, +0.0000027773,0.0000027761,0.0000027675,0.0000027533,0.0000027385, +0.0000027349,0.0000027504,0.0000027691,0.0000027771,0.0000027866, +0.0000027992,0.0000028085,0.0000028109,0.0000028131,0.0000028198, +0.0000028255,0.0000028268,0.0000028266,0.0000028271,0.0000028297, +0.0000028329,0.0000028354,0.0000028388,0.0000028450,0.0000028484, +0.0000028462,0.0000028376,0.0000028269,0.0000028139,0.0000028012, +0.0000027966,0.0000027971,0.0000027955,0.0000027885,0.0000027791, +0.0000027686,0.0000027560,0.0000027439,0.0000027356,0.0000027296, +0.0000027251,0.0000027246,0.0000027260,0.0000027331,0.0000027441, +0.0000027534,0.0000027582,0.0000027597,0.0000027615,0.0000027646, +0.0000027697,0.0000027751,0.0000027787,0.0000027763,0.0000027671, +0.0000027620,0.0000027579,0.0000027518,0.0000027524,0.0000027550, +0.0000027589,0.0000027629,0.0000027656,0.0000027681,0.0000027687, +0.0000027653,0.0000027589,0.0000027537,0.0000027523,0.0000027582, +0.0000027694,0.0000027806,0.0000027901,0.0000027928,0.0000027904, +0.0000027913,0.0000027985,0.0000028097,0.0000028193,0.0000028227, +0.0000028287,0.0000028407,0.0000028519,0.0000028605,0.0000028650, +0.0000028625,0.0000028544,0.0000028464,0.0000028432,0.0000028430, +0.0000028459,0.0000028506,0.0000028561,0.0000028597,0.0000028613, +0.0000028605,0.0000028578,0.0000028546,0.0000028545,0.0000028552, +0.0000028572,0.0000028609,0.0000028671,0.0000028736,0.0000028774, +0.0000028795,0.0000028797,0.0000028769,0.0000028720,0.0000028645, +0.0000028570,0.0000028519,0.0000028507,0.0000028503,0.0000028508, +0.0000028518,0.0000028533,0.0000028542,0.0000028530,0.0000028460, +0.0000028306,0.0000028183,0.0000028153,0.0000028200,0.0000028313, +0.0000028406,0.0000028431,0.0000028394,0.0000028343,0.0000028264, +0.0000028156,0.0000028081,0.0000028069,0.0000028086,0.0000028119, +0.0000028176,0.0000028255,0.0000028315,0.0000028328,0.0000028313, +0.0000028288,0.0000028248,0.0000028184,0.0000028102,0.0000028013, +0.0000027937,0.0000027887,0.0000027871,0.0000027891,0.0000027926, +0.0000027965,0.0000028012,0.0000028082,0.0000028162,0.0000028216, +0.0000028217,0.0000028175,0.0000028072,0.0000027942,0.0000027839, +0.0000027813,0.0000027876,0.0000028013,0.0000028137,0.0000028234, +0.0000028279,0.0000028281,0.0000028259,0.0000028228,0.0000028208, +0.0000028195,0.0000028180,0.0000028148,0.0000028109,0.0000028076, +0.0000028050,0.0000028022,0.0000027987,0.0000027976,0.0000027996, +0.0000028040,0.0000028068,0.0000028070,0.0000028056,0.0000028034, +0.0000028015,0.0000028008,0.0000028017,0.0000028040,0.0000028045, +0.0000028016,0.0000027982,0.0000028006,0.0000028102,0.0000028198, +0.0000028232,0.0000028236,0.0000028260,0.0000028298,0.0000028341, +0.0000028387,0.0000028405,0.0000028376,0.0000028313,0.0000028270, +0.0000028224,0.0000028143,0.0000028099,0.0000028141,0.0000028219, +0.0000028226,0.0000028161,0.0000028069,0.0000028008,0.0000027985, +0.0000027972,0.0000027953,0.0000027919,0.0000027856,0.0000027797, +0.0000027788,0.0000027793,0.0000027778,0.0000027777,0.0000027778, +0.0000027754,0.0000027738,0.0000027741,0.0000027709,0.0000027654, +0.0000027641,0.0000027668,0.0000027703,0.0000027741,0.0000027781, +0.0000027792,0.0000027744,0.0000027619,0.0000027441,0.0000027285, +0.0000027234,0.0000027281,0.0000027387,0.0000027433,0.0000027411, +0.0000027342,0.0000027186,0.0000027020,0.0000026925,0.0000026913, +0.0000026948,0.0000027065,0.0000027259,0.0000027467,0.0000027612, +0.0000027630,0.0000027538,0.0000027376,0.0000027213,0.0000027109, +0.0000027085,0.0000027118,0.0000027178,0.0000027230,0.0000027271, +0.0000027320,0.0000027399,0.0000027482,0.0000027563,0.0000027618, +0.0000027651,0.0000027691,0.0000027767,0.0000027877,0.0000027978, +0.0000028023,0.0000027997,0.0000027897,0.0000027788,0.0000027747, +0.0000027780,0.0000027875,0.0000028010,0.0000028183,0.0000028325, +0.0000028343,0.0000028244,0.0000028090,0.0000027979,0.0000027939, +0.0000027924,0.0000027894,0.0000027838,0.0000027754,0.0000027689, +0.0000027677,0.0000027696,0.0000027714,0.0000027695,0.0000027611, +0.0000027478,0.0000027403,0.0000027410,0.0000027456,0.0000027528, +0.0000027629,0.0000027727,0.0000027817,0.0000027934,0.0000028068, +0.0000028156,0.0000028180,0.0000028165,0.0000028144,0.0000028160, +0.0000028193,0.0000028203,0.0000028179,0.0000028144,0.0000028137, +0.0000028159,0.0000028156,0.0000028090,0.0000027985,0.0000028000, +0.0000028177,0.0000028350,0.0000028481,0.0000028599,0.0000028646, +0.0000028678,0.0000028739,0.0000028855,0.0000028973,0.0000029033, +0.0000029035,0.0000028999,0.0000028924,0.0000028808,0.0000028654, +0.0000028502,0.0000028364,0.0000028253,0.0000028149,0.0000028056, +0.0000027962,0.0000027874,0.0000027808,0.0000027777,0.0000027758, +0.0000027717,0.0000027673,0.0000027624,0.0000027582,0.0000027558, +0.0000027564,0.0000027598,0.0000027625,0.0000027660,0.0000027755, +0.0000027931,0.0000028121,0.0000028209,0.0000028172,0.0000028046, +0.0000028014,0.0000028145,0.0000028291,0.0000028307,0.0000028203, +0.0000028039,0.0000027927,0.0000027885,0.0000027842,0.0000027775, +0.0000027694,0.0000027590,0.0000027490,0.0000027410,0.0000027388, +0.0000027400,0.0000027435,0.0000027469,0.0000027466,0.0000027436, +0.0000027422,0.0000027448,0.0000027502,0.0000027560,0.0000027611, +0.0000027621,0.0000027584,0.0000027502,0.0000027439,0.0000027428, +0.0000027450,0.0000027460,0.0000027445,0.0000027420,0.0000027424, +0.0000027477,0.0000027560,0.0000027621,0.0000027645,0.0000027646, +0.0000027641,0.0000027647,0.0000027675,0.0000027703,0.0000027712, +0.0000027722,0.0000027758,0.0000027803,0.0000027842,0.0000027874, +0.0000027895,0.0000027893,0.0000027856,0.0000027799,0.0000027754, +0.0000027732,0.0000027715,0.0000027705,0.0000027695,0.0000027680, +0.0000027667,0.0000027670,0.0000027706,0.0000027760,0.0000027817, +0.0000027860,0.0000027866,0.0000027832,0.0000027755,0.0000027653, +0.0000027567,0.0000027515,0.0000027497,0.0000027501,0.0000027517, +0.0000027540,0.0000027551,0.0000027547,0.0000027531,0.0000027507, +0.0000027478,0.0000027455,0.0000027432,0.0000027414,0.0000027388, +0.0000027360,0.0000027346,0.0000027357,0.0000027383,0.0000027401, +0.0000027397,0.0000027387,0.0000027386,0.0000027419,0.0000027504, +0.0000027618,0.0000027714,0.0000027785,0.0000027845,0.0000027896, +0.0000027937,0.0000027973,0.0000027997,0.0000028011,0.0000028017, +0.0000028006,0.0000027957,0.0000027875,0.0000027807,0.0000027760, +0.0000027752,0.0000027731,0.0000027694,0.0000027662,0.0000027655, +0.0000027657,0.0000027650,0.0000027634,0.0000027625,0.0000027641, +0.0000027662,0.0000027672,0.0000027670,0.0000027654,0.0000027591, +0.0000027535,0.0000027565,0.0000027681,0.0000027796,0.0000027848, +0.0000027843,0.0000027781,0.0000027645,0.0000027465,0.0000027309, +0.0000027175,0.0000027043,0.0000026959,0.0000026958,0.0000027010, +0.0000027069,0.0000027122,0.0000027164,0.0000027168,0.0000027094, +0.0000026919,0.0000026747,0.0000026673,0.0000026681,0.0000026698, +0.0000026714,0.0000026807,0.0000027053,0.0000027383,0.0000027619, +0.0000027687,0.0000027673,0.0000027613,0.0000027590,0.0000027663, +0.0000027731,0.0000027723,0.0000027734,0.0000027814,0.0000027849, +0.0000027828,0.0000027781,0.0000027686,0.0000027532,0.0000027353, +0.0000027293,0.0000027446,0.0000027668,0.0000027783,0.0000027907, +0.0000028027,0.0000028080,0.0000028093,0.0000028093,0.0000028149, +0.0000028232,0.0000028279,0.0000028307,0.0000028327,0.0000028336, +0.0000028378,0.0000028430,0.0000028445,0.0000028446,0.0000028467, +0.0000028452,0.0000028394,0.0000028312,0.0000028225,0.0000028145, +0.0000028095,0.0000028049,0.0000027990,0.0000027909,0.0000027853, +0.0000027798,0.0000027723,0.0000027608,0.0000027489,0.0000027408, +0.0000027343,0.0000027267,0.0000027212,0.0000027184,0.0000027182, +0.0000027244,0.0000027327,0.0000027418,0.0000027505,0.0000027583, +0.0000027645,0.0000027708,0.0000027776,0.0000027836,0.0000027839, +0.0000027762,0.0000027688,0.0000027651,0.0000027595,0.0000027573, +0.0000027604,0.0000027650,0.0000027690,0.0000027712,0.0000027725, +0.0000027747,0.0000027745,0.0000027721,0.0000027680,0.0000027632, +0.0000027627,0.0000027675,0.0000027733,0.0000027801,0.0000027852, +0.0000027881,0.0000027904,0.0000027903,0.0000027925,0.0000028032, +0.0000028184,0.0000028295,0.0000028326,0.0000028374,0.0000028511, +0.0000028632,0.0000028705,0.0000028696,0.0000028610,0.0000028500, +0.0000028447,0.0000028457,0.0000028503,0.0000028558,0.0000028604, +0.0000028640,0.0000028646,0.0000028625,0.0000028595,0.0000028571, +0.0000028567,0.0000028574,0.0000028615,0.0000028676,0.0000028750, +0.0000028815,0.0000028854,0.0000028855,0.0000028815,0.0000028733, +0.0000028639,0.0000028543,0.0000028463,0.0000028418,0.0000028416, +0.0000028450,0.0000028493,0.0000028524,0.0000028529,0.0000028517, +0.0000028493,0.0000028459,0.0000028350,0.0000028213,0.0000028141, +0.0000028150,0.0000028260,0.0000028408,0.0000028480,0.0000028476, +0.0000028434,0.0000028372,0.0000028272,0.0000028180,0.0000028135, +0.0000028130,0.0000028159,0.0000028223,0.0000028293,0.0000028334, +0.0000028335,0.0000028313,0.0000028293,0.0000028283,0.0000028264, +0.0000028223,0.0000028170,0.0000028116,0.0000028063,0.0000028027, +0.0000028025,0.0000028044,0.0000028079,0.0000028131,0.0000028206, +0.0000028289,0.0000028346,0.0000028351,0.0000028312,0.0000028218, +0.0000028083,0.0000027953,0.0000027884,0.0000027910,0.0000028060, +0.0000028177,0.0000028291,0.0000028360,0.0000028377,0.0000028363, +0.0000028325,0.0000028287,0.0000028270,0.0000028261,0.0000028237, +0.0000028201,0.0000028180,0.0000028166,0.0000028141,0.0000028085, +0.0000028019,0.0000027997,0.0000028011,0.0000028031,0.0000028027, +0.0000028014,0.0000027996,0.0000027975,0.0000027958,0.0000027955, +0.0000027973,0.0000027989,0.0000027977,0.0000027944,0.0000027953, +0.0000028036,0.0000028138,0.0000028194,0.0000028212,0.0000028223, +0.0000028218,0.0000028230,0.0000028306,0.0000028377,0.0000028365, +0.0000028307,0.0000028263,0.0000028208,0.0000028111,0.0000028065, +0.0000028123,0.0000028230,0.0000028252,0.0000028176,0.0000028077, +0.0000027985,0.0000027942,0.0000027933,0.0000027932,0.0000027910, +0.0000027851,0.0000027787,0.0000027781,0.0000027819,0.0000027814, +0.0000027780,0.0000027757,0.0000027726,0.0000027711,0.0000027755, +0.0000027790,0.0000027764,0.0000027714,0.0000027701,0.0000027714, +0.0000027726,0.0000027732,0.0000027725,0.0000027675,0.0000027568, +0.0000027420,0.0000027286,0.0000027241,0.0000027282,0.0000027373, +0.0000027414,0.0000027397,0.0000027335,0.0000027208,0.0000027045, +0.0000026934,0.0000026892,0.0000026902,0.0000026996,0.0000027173, +0.0000027379,0.0000027559,0.0000027643,0.0000027626,0.0000027531, +0.0000027366,0.0000027200,0.0000027099,0.0000027083,0.0000027119, +0.0000027162,0.0000027200,0.0000027243,0.0000027316,0.0000027408, +0.0000027502,0.0000027575,0.0000027622,0.0000027659,0.0000027725, +0.0000027831,0.0000027948,0.0000028036,0.0000028056,0.0000027990, +0.0000027872,0.0000027783,0.0000027777,0.0000027842,0.0000027942, +0.0000028069,0.0000028231,0.0000028340,0.0000028317,0.0000028181, +0.0000028034,0.0000027952,0.0000027927,0.0000027911,0.0000027880, +0.0000027817,0.0000027740,0.0000027706,0.0000027725,0.0000027759, +0.0000027759,0.0000027704,0.0000027592,0.0000027480,0.0000027441, +0.0000027450,0.0000027502,0.0000027614,0.0000027751,0.0000027863, +0.0000027959,0.0000028057,0.0000028158,0.0000028258,0.0000028312, +0.0000028301,0.0000028254,0.0000028228,0.0000028216,0.0000028183, +0.0000028144,0.0000028145,0.0000028197,0.0000028253,0.0000028233, +0.0000028109,0.0000027987,0.0000028023,0.0000028226,0.0000028402, +0.0000028551,0.0000028637,0.0000028625,0.0000028598,0.0000028646, +0.0000028782,0.0000028923,0.0000028994,0.0000028999,0.0000028963, +0.0000028881,0.0000028764,0.0000028626,0.0000028505,0.0000028404, +0.0000028315,0.0000028215,0.0000028107,0.0000028002,0.0000027912, +0.0000027833,0.0000027788,0.0000027763,0.0000027730,0.0000027695, +0.0000027646,0.0000027606,0.0000027583,0.0000027608,0.0000027664, +0.0000027716,0.0000027776,0.0000027882,0.0000028040,0.0000028185, +0.0000028219,0.0000028133,0.0000027975,0.0000027950,0.0000028108, +0.0000028271,0.0000028305,0.0000028238,0.0000028091,0.0000027964, +0.0000027900,0.0000027860,0.0000027808,0.0000027764,0.0000027706, +0.0000027604,0.0000027483,0.0000027395,0.0000027375,0.0000027389, +0.0000027419,0.0000027434,0.0000027415,0.0000027368,0.0000027333, +0.0000027334,0.0000027363,0.0000027412,0.0000027457,0.0000027463, +0.0000027441,0.0000027418,0.0000027426,0.0000027472,0.0000027527, +0.0000027561,0.0000027567,0.0000027554,0.0000027549,0.0000027570, +0.0000027592,0.0000027593,0.0000027589,0.0000027602,0.0000027637, +0.0000027685,0.0000027730,0.0000027743,0.0000027740,0.0000027761, +0.0000027807,0.0000027839,0.0000027846,0.0000027840,0.0000027824, +0.0000027794,0.0000027771,0.0000027764,0.0000027779,0.0000027792, +0.0000027794,0.0000027784,0.0000027764,0.0000027745,0.0000027739, +0.0000027749,0.0000027776,0.0000027835,0.0000027891,0.0000027924, +0.0000027932,0.0000027899,0.0000027819,0.0000027712,0.0000027617, +0.0000027555,0.0000027529,0.0000027529,0.0000027534,0.0000027545, +0.0000027545,0.0000027538,0.0000027528,0.0000027514,0.0000027502, +0.0000027495,0.0000027487,0.0000027479,0.0000027466,0.0000027455, +0.0000027467,0.0000027504,0.0000027540,0.0000027550,0.0000027525, +0.0000027492,0.0000027500,0.0000027583,0.0000027733,0.0000027880, +0.0000027941,0.0000027934,0.0000027916,0.0000027920,0.0000027961, +0.0000028008,0.0000028034,0.0000028040,0.0000028029,0.0000027995, +0.0000027937,0.0000027873,0.0000027826,0.0000027808,0.0000027806, +0.0000027805,0.0000027781,0.0000027746,0.0000027729,0.0000027728, +0.0000027725,0.0000027720,0.0000027719,0.0000027735,0.0000027738, +0.0000027719,0.0000027677,0.0000027603,0.0000027522,0.0000027462, +0.0000027489,0.0000027615,0.0000027759,0.0000027842,0.0000027855, +0.0000027822,0.0000027711,0.0000027527,0.0000027345,0.0000027230, +0.0000027155,0.0000027064,0.0000027000,0.0000027024,0.0000027102, +0.0000027154,0.0000027171,0.0000027174,0.0000027117,0.0000026941, +0.0000026730,0.0000026638,0.0000026661,0.0000026719,0.0000026751, +0.0000026829,0.0000027053,0.0000027381,0.0000027627,0.0000027686, +0.0000027667,0.0000027616,0.0000027603,0.0000027652,0.0000027693, +0.0000027691,0.0000027722,0.0000027836,0.0000027909,0.0000027879, +0.0000027799,0.0000027687,0.0000027537,0.0000027343,0.0000027245, +0.0000027385,0.0000027631,0.0000027772,0.0000027920,0.0000028081, +0.0000028120,0.0000028086,0.0000028070,0.0000028092,0.0000028185, +0.0000028255,0.0000028304,0.0000028369,0.0000028402,0.0000028419, +0.0000028479,0.0000028532,0.0000028529,0.0000028498,0.0000028447, +0.0000028393,0.0000028338,0.0000028298,0.0000028226,0.0000028216, +0.0000028204,0.0000028094,0.0000027964,0.0000027896,0.0000027868, +0.0000027829,0.0000027760,0.0000027675,0.0000027583,0.0000027530, +0.0000027483,0.0000027402,0.0000027289,0.0000027211,0.0000027173, +0.0000027202,0.0000027244,0.0000027271,0.0000027313,0.0000027376, +0.0000027460,0.0000027549,0.0000027636,0.0000027733,0.0000027783, +0.0000027741,0.0000027682,0.0000027660,0.0000027626,0.0000027605, +0.0000027641,0.0000027682,0.0000027739,0.0000027786,0.0000027809, +0.0000027817,0.0000027814,0.0000027794,0.0000027777,0.0000027775, +0.0000027773,0.0000027789,0.0000027800,0.0000027806,0.0000027818, +0.0000027831,0.0000027872,0.0000027914,0.0000027913,0.0000027905, +0.0000027967,0.0000028108,0.0000028274,0.0000028372,0.0000028404, +0.0000028472,0.0000028606,0.0000028695,0.0000028699,0.0000028663, +0.0000028582,0.0000028507,0.0000028492,0.0000028529,0.0000028594, +0.0000028660,0.0000028696,0.0000028690,0.0000028660,0.0000028620, +0.0000028604,0.0000028600,0.0000028618,0.0000028678,0.0000028760, +0.0000028848,0.0000028927,0.0000028978,0.0000028961,0.0000028877, +0.0000028747,0.0000028601,0.0000028472,0.0000028361,0.0000028314, +0.0000028321,0.0000028390,0.0000028473,0.0000028533,0.0000028539, +0.0000028504,0.0000028452,0.0000028416,0.0000028363,0.0000028266, +0.0000028168,0.0000028151,0.0000028254,0.0000028433,0.0000028542, +0.0000028560,0.0000028523,0.0000028470,0.0000028375,0.0000028264, +0.0000028192,0.0000028164,0.0000028198,0.0000028266,0.0000028317, +0.0000028340,0.0000028338,0.0000028329,0.0000028328,0.0000028345, +0.0000028354,0.0000028333,0.0000028290,0.0000028237,0.0000028175, +0.0000028120,0.0000028088,0.0000028092,0.0000028120,0.0000028172, +0.0000028251,0.0000028337,0.0000028399,0.0000028411,0.0000028385, +0.0000028311,0.0000028200,0.0000028078,0.0000028000,0.0000027994, +0.0000028127,0.0000028226,0.0000028342,0.0000028427,0.0000028463, +0.0000028463,0.0000028442,0.0000028408,0.0000028379,0.0000028361, +0.0000028334,0.0000028283,0.0000028259,0.0000028262,0.0000028258, +0.0000028218,0.0000028137,0.0000028067,0.0000028047,0.0000028044, +0.0000028035,0.0000028021,0.0000028013,0.0000028000,0.0000027978, +0.0000027967,0.0000027981,0.0000027999,0.0000027992,0.0000027966, +0.0000027969,0.0000028049,0.0000028161,0.0000028222,0.0000028246, +0.0000028258,0.0000028227,0.0000028171,0.0000028211,0.0000028316, +0.0000028339,0.0000028296,0.0000028260,0.0000028204,0.0000028091, +0.0000028034,0.0000028097,0.0000028223,0.0000028257,0.0000028192, +0.0000028097,0.0000027993,0.0000027915,0.0000027898,0.0000027905, +0.0000027897,0.0000027852,0.0000027794,0.0000027781,0.0000027834, +0.0000027864,0.0000027820,0.0000027765,0.0000027725,0.0000027709, +0.0000027749,0.0000027845,0.0000027884,0.0000027836,0.0000027774, +0.0000027743,0.0000027725,0.0000027709,0.0000027688,0.0000027645, +0.0000027558,0.0000027431,0.0000027307,0.0000027248,0.0000027272, +0.0000027344,0.0000027376,0.0000027368,0.0000027337,0.0000027237, +0.0000027085,0.0000026954,0.0000026879,0.0000026874,0.0000026943, +0.0000027098,0.0000027277,0.0000027460,0.0000027607,0.0000027654, +0.0000027626,0.0000027526,0.0000027373,0.0000027219,0.0000027129, +0.0000027115,0.0000027132,0.0000027156,0.0000027192,0.0000027254, +0.0000027353,0.0000027459,0.0000027541,0.0000027593,0.0000027633, +0.0000027687,0.0000027783,0.0000027913,0.0000028034,0.0000028097, +0.0000028077,0.0000027977,0.0000027853,0.0000027804,0.0000027826, +0.0000027902,0.0000027985,0.0000028106,0.0000028253,0.0000028313, +0.0000028252,0.0000028103,0.0000027989,0.0000027946,0.0000027930, +0.0000027902,0.0000027858,0.0000027798,0.0000027755,0.0000027770, +0.0000027815,0.0000027831,0.0000027801,0.0000027719,0.0000027606, +0.0000027527,0.0000027519,0.0000027565,0.0000027673,0.0000027804, +0.0000027909,0.0000027982,0.0000028053,0.0000028162,0.0000028289, +0.0000028372,0.0000028389,0.0000028354,0.0000028288,0.0000028232, +0.0000028189,0.0000028151,0.0000028145,0.0000028193,0.0000028284, +0.0000028324,0.0000028259,0.0000028104,0.0000028010,0.0000028105, +0.0000028296,0.0000028459,0.0000028612,0.0000028666,0.0000028588, +0.0000028520,0.0000028558,0.0000028713,0.0000028871,0.0000028948, +0.0000028959,0.0000028924,0.0000028835,0.0000028717,0.0000028597, +0.0000028509,0.0000028450,0.0000028386,0.0000028294,0.0000028181, +0.0000028074,0.0000027984,0.0000027901,0.0000027838,0.0000027806, +0.0000027780,0.0000027751,0.0000027708,0.0000027676,0.0000027667, +0.0000027700,0.0000027760,0.0000027821,0.0000027897,0.0000028013, +0.0000028148,0.0000028232,0.0000028219,0.0000028091,0.0000027908, +0.0000027880,0.0000028049,0.0000028228,0.0000028278,0.0000028250, +0.0000028154,0.0000028028,0.0000027936,0.0000027884,0.0000027831, +0.0000027802,0.0000027800,0.0000027770,0.0000027679,0.0000027543, +0.0000027432,0.0000027393,0.0000027402,0.0000027417,0.0000027422, +0.0000027386,0.0000027313,0.0000027255,0.0000027224,0.0000027231, +0.0000027274,0.0000027320,0.0000027352,0.0000027392,0.0000027440, +0.0000027510,0.0000027603,0.0000027684,0.0000027724,0.0000027712, +0.0000027649,0.0000027584,0.0000027550,0.0000027540,0.0000027549, +0.0000027572,0.0000027619,0.0000027675,0.0000027724,0.0000027753, +0.0000027762,0.0000027779,0.0000027811,0.0000027839,0.0000027843, +0.0000027831,0.0000027814,0.0000027784,0.0000027766,0.0000027769, +0.0000027812,0.0000027856,0.0000027880,0.0000027889,0.0000027882, +0.0000027857,0.0000027838,0.0000027835,0.0000027840,0.0000027852, +0.0000027892,0.0000027943,0.0000027966,0.0000027975,0.0000027945, +0.0000027867,0.0000027758,0.0000027650,0.0000027575,0.0000027528, +0.0000027512,0.0000027502,0.0000027488,0.0000027481,0.0000027482, +0.0000027493,0.0000027500,0.0000027509,0.0000027524,0.0000027538, +0.0000027548,0.0000027558,0.0000027571,0.0000027604,0.0000027653, +0.0000027683,0.0000027675,0.0000027634,0.0000027612,0.0000027669, +0.0000027816,0.0000027987,0.0000028076,0.0000028053,0.0000027963, +0.0000027901,0.0000027913,0.0000027980,0.0000028060,0.0000028099, +0.0000028088,0.0000028048,0.0000027992,0.0000027946,0.0000027915, +0.0000027918,0.0000027937,0.0000027948,0.0000027947,0.0000027919, +0.0000027872,0.0000027839,0.0000027828,0.0000027824,0.0000027815, +0.0000027798,0.0000027789,0.0000027765,0.0000027713,0.0000027640, +0.0000027548,0.0000027470,0.0000027432,0.0000027455,0.0000027571, +0.0000027721,0.0000027823,0.0000027850,0.0000027831,0.0000027745, +0.0000027581,0.0000027390,0.0000027259,0.0000027201,0.0000027181, +0.0000027125,0.0000027080,0.0000027116,0.0000027183,0.0000027196, +0.0000027173,0.0000027133,0.0000027000,0.0000026783,0.0000026645, +0.0000026650,0.0000026727,0.0000026789,0.0000026865,0.0000027055, +0.0000027360,0.0000027620,0.0000027693,0.0000027664,0.0000027610, +0.0000027601,0.0000027635,0.0000027657,0.0000027657,0.0000027714, +0.0000027855,0.0000027943,0.0000027917,0.0000027813,0.0000027686, +0.0000027533,0.0000027331,0.0000027235,0.0000027358,0.0000027588, +0.0000027736,0.0000027924,0.0000028112,0.0000028175,0.0000028121, +0.0000028056,0.0000028051,0.0000028124,0.0000028212,0.0000028273, +0.0000028373,0.0000028462,0.0000028493,0.0000028523,0.0000028568, +0.0000028595,0.0000028582,0.0000028522,0.0000028403,0.0000028341, +0.0000028317,0.0000028276,0.0000028271,0.0000028286,0.0000028263, +0.0000028101,0.0000027964,0.0000027910,0.0000027886,0.0000027860, +0.0000027811,0.0000027768,0.0000027725,0.0000027700,0.0000027683, +0.0000027626,0.0000027496,0.0000027354,0.0000027257,0.0000027242, +0.0000027257,0.0000027264,0.0000027270,0.0000027283,0.0000027311, +0.0000027371,0.0000027445,0.0000027548,0.0000027622,0.0000027630, +0.0000027604,0.0000027626,0.0000027621,0.0000027609,0.0000027656, +0.0000027735,0.0000027826,0.0000027891,0.0000027933,0.0000027965, +0.0000027961,0.0000027915,0.0000027857,0.0000027836,0.0000027869, +0.0000027921,0.0000027927,0.0000027886,0.0000027862,0.0000027862, +0.0000027891,0.0000027930,0.0000027942,0.0000027917,0.0000027908, +0.0000027948,0.0000028031,0.0000028154,0.0000028320,0.0000028436, +0.0000028477,0.0000028539,0.0000028625,0.0000028659,0.0000028653, +0.0000028630,0.0000028603,0.0000028576,0.0000028579,0.0000028645, +0.0000028728,0.0000028772,0.0000028765,0.0000028741,0.0000028705, +0.0000028702,0.0000028714,0.0000028749,0.0000028811,0.0000028886, +0.0000028967,0.0000029036,0.0000029063,0.0000029025,0.0000028927, +0.0000028780,0.0000028597,0.0000028421,0.0000028293,0.0000028237, +0.0000028251,0.0000028337,0.0000028452,0.0000028542,0.0000028555, +0.0000028509,0.0000028427,0.0000028392,0.0000028364,0.0000028317, +0.0000028246,0.0000028221,0.0000028324,0.0000028505,0.0000028614, +0.0000028630,0.0000028600,0.0000028552,0.0000028454,0.0000028331, +0.0000028241,0.0000028198,0.0000028230,0.0000028292,0.0000028329, +0.0000028347,0.0000028348,0.0000028340,0.0000028336,0.0000028349, +0.0000028361,0.0000028346,0.0000028311,0.0000028268,0.0000028220, +0.0000028174,0.0000028145,0.0000028150,0.0000028183,0.0000028238, +0.0000028313,0.0000028391,0.0000028448,0.0000028469,0.0000028455, +0.0000028397,0.0000028298,0.0000028186,0.0000028108,0.0000028089, +0.0000028199,0.0000028276,0.0000028391,0.0000028496,0.0000028550, +0.0000028554,0.0000028537,0.0000028510,0.0000028480,0.0000028463, +0.0000028447,0.0000028397,0.0000028356,0.0000028360,0.0000028376, +0.0000028361,0.0000028293,0.0000028208,0.0000028154,0.0000028124, +0.0000028094,0.0000028072,0.0000028063,0.0000028052,0.0000028026, +0.0000028013,0.0000028037,0.0000028076,0.0000028092,0.0000028078, +0.0000028075,0.0000028142,0.0000028246,0.0000028297,0.0000028304, +0.0000028312,0.0000028285,0.0000028188,0.0000028150,0.0000028233, +0.0000028290,0.0000028277,0.0000028253,0.0000028198,0.0000028082, +0.0000028020,0.0000028076,0.0000028199,0.0000028253,0.0000028213, +0.0000028124,0.0000028021,0.0000027913,0.0000027882,0.0000027886, +0.0000027878,0.0000027845,0.0000027800,0.0000027783,0.0000027828, +0.0000027892,0.0000027884,0.0000027806,0.0000027745,0.0000027737, +0.0000027755,0.0000027847,0.0000027946,0.0000027964,0.0000027894, +0.0000027804,0.0000027738,0.0000027697,0.0000027670,0.0000027635, +0.0000027566,0.0000027456,0.0000027337,0.0000027261,0.0000027253, +0.0000027294,0.0000027330,0.0000027338,0.0000027329,0.0000027257, +0.0000027125,0.0000026980,0.0000026876,0.0000026854,0.0000026907, +0.0000027041,0.0000027192,0.0000027334,0.0000027481,0.0000027594, +0.0000027627,0.0000027605,0.0000027509,0.0000027366,0.0000027236, +0.0000027170,0.0000027156,0.0000027158,0.0000027171,0.0000027212, +0.0000027309,0.0000027432,0.0000027532,0.0000027583,0.0000027615, +0.0000027653,0.0000027732,0.0000027859,0.0000028004,0.0000028122, +0.0000028154,0.0000028094,0.0000027958,0.0000027849,0.0000027829, +0.0000027881,0.0000027949,0.0000028021,0.0000028141,0.0000028262, +0.0000028277,0.0000028166,0.0000028032,0.0000027966,0.0000027947, +0.0000027925,0.0000027886,0.0000027850,0.0000027829,0.0000027841, +0.0000027880,0.0000027911,0.0000027898,0.0000027827,0.0000027719, +0.0000027626,0.0000027608,0.0000027682,0.0000027821,0.0000027959, +0.0000028019,0.0000028021,0.0000028069,0.0000028190,0.0000028317, +0.0000028388,0.0000028410,0.0000028411,0.0000028367,0.0000028287, +0.0000028207,0.0000028161,0.0000028163,0.0000028214,0.0000028301, +0.0000028356,0.0000028331,0.0000028225,0.0000028087,0.0000028084, +0.0000028216,0.0000028371,0.0000028529,0.0000028672,0.0000028667, +0.0000028533,0.0000028442,0.0000028479,0.0000028648,0.0000028818, +0.0000028910,0.0000028930,0.0000028897,0.0000028806,0.0000028691, +0.0000028590,0.0000028529,0.0000028496,0.0000028450,0.0000028363, +0.0000028263,0.0000028171,0.0000028098,0.0000028033,0.0000027972, +0.0000027932,0.0000027902,0.0000027876,0.0000027833,0.0000027799, +0.0000027789,0.0000027810,0.0000027857,0.0000027923,0.0000028021, +0.0000028145,0.0000028250,0.0000028277,0.0000028209,0.0000028056, +0.0000027874,0.0000027832,0.0000027969,0.0000028165,0.0000028248, +0.0000028242,0.0000028198,0.0000028116,0.0000028020,0.0000027941, +0.0000027872,0.0000027820,0.0000027823,0.0000027848,0.0000027837, +0.0000027771,0.0000027640,0.0000027519,0.0000027460,0.0000027447, +0.0000027448,0.0000027439,0.0000027390,0.0000027310,0.0000027234, +0.0000027188,0.0000027177,0.0000027216,0.0000027275,0.0000027349, +0.0000027436,0.0000027539,0.0000027648,0.0000027761,0.0000027829, +0.0000027827,0.0000027742,0.0000027621,0.0000027519,0.0000027492, +0.0000027524,0.0000027566,0.0000027612,0.0000027663,0.0000027701, +0.0000027732,0.0000027764,0.0000027800,0.0000027829,0.0000027833, +0.0000027837,0.0000027843,0.0000027850,0.0000027838,0.0000027812, +0.0000027805,0.0000027835,0.0000027879,0.0000027916,0.0000027945, +0.0000027971,0.0000027983,0.0000027969,0.0000027952,0.0000027945, +0.0000027939,0.0000027937,0.0000027958,0.0000028004,0.0000028032, +0.0000028038,0.0000028019,0.0000027950,0.0000027841,0.0000027719, +0.0000027618,0.0000027547,0.0000027507,0.0000027460,0.0000027433, +0.0000027424,0.0000027441,0.0000027480,0.0000027498,0.0000027521, +0.0000027555,0.0000027594,0.0000027628,0.0000027664,0.0000027697, +0.0000027738,0.0000027781,0.0000027800,0.0000027786,0.0000027764, +0.0000027785,0.0000027895,0.0000028048,0.0000028138,0.0000028117, +0.0000028039,0.0000027929,0.0000027888,0.0000027925,0.0000028033, +0.0000028124,0.0000028149,0.0000028114,0.0000028057,0.0000028005, +0.0000027984,0.0000028003,0.0000028043,0.0000028075,0.0000028076, +0.0000028049,0.0000027995,0.0000027929,0.0000027883,0.0000027863, +0.0000027860,0.0000027849,0.0000027826,0.0000027791,0.0000027751, +0.0000027682,0.0000027597,0.0000027518,0.0000027472,0.0000027452, +0.0000027480,0.0000027575,0.0000027700,0.0000027801,0.0000027845, +0.0000027838,0.0000027768,0.0000027631,0.0000027453,0.0000027309, +0.0000027241,0.0000027241,0.0000027260,0.0000027219,0.0000027173, +0.0000027195,0.0000027219,0.0000027189,0.0000027133,0.0000027049, +0.0000026868,0.0000026692,0.0000026656,0.0000026729,0.0000026809, +0.0000026889,0.0000027057,0.0000027337,0.0000027608,0.0000027703, +0.0000027667,0.0000027602,0.0000027589,0.0000027614,0.0000027631, +0.0000027647,0.0000027719,0.0000027860,0.0000027960,0.0000027940, +0.0000027821,0.0000027688,0.0000027513,0.0000027301,0.0000027242, +0.0000027375,0.0000027557,0.0000027677,0.0000027896,0.0000028138, +0.0000028216,0.0000028161,0.0000028079,0.0000028036,0.0000028069, +0.0000028168,0.0000028227,0.0000028330,0.0000028489,0.0000028548, +0.0000028574,0.0000028607,0.0000028645,0.0000028639,0.0000028584, +0.0000028510,0.0000028379,0.0000028322,0.0000028297,0.0000028292, +0.0000028322,0.0000028334,0.0000028269,0.0000028118,0.0000028002, +0.0000027944,0.0000027927,0.0000027918,0.0000027897,0.0000027881, +0.0000027870,0.0000027856,0.0000027853,0.0000027831,0.0000027734, +0.0000027579,0.0000027440,0.0000027360,0.0000027335,0.0000027319, +0.0000027310,0.0000027304,0.0000027308,0.0000027333,0.0000027377, +0.0000027465,0.0000027543,0.0000027573,0.0000027542,0.0000027556, +0.0000027578,0.0000027603,0.0000027679,0.0000027796,0.0000027929, +0.0000028027,0.0000028078,0.0000028105,0.0000028117,0.0000028093, +0.0000028024,0.0000027933,0.0000027909,0.0000027969,0.0000028021, +0.0000028010,0.0000027943,0.0000027899,0.0000027927,0.0000027989, +0.0000028026,0.0000027989,0.0000027933,0.0000027918,0.0000027939, +0.0000027985,0.0000028064,0.0000028189,0.0000028348,0.0000028479, +0.0000028515,0.0000028532,0.0000028583,0.0000028612,0.0000028618, +0.0000028633,0.0000028653,0.0000028687,0.0000028759,0.0000028832, +0.0000028873,0.0000028869,0.0000028848,0.0000028825,0.0000028827, +0.0000028845,0.0000028865,0.0000028902,0.0000028960,0.0000029018, +0.0000029062,0.0000029068,0.0000029019,0.0000028930,0.0000028788, +0.0000028590,0.0000028389,0.0000028251,0.0000028197,0.0000028204, +0.0000028290,0.0000028431,0.0000028554,0.0000028582,0.0000028531, +0.0000028436,0.0000028407,0.0000028393,0.0000028390,0.0000028357, +0.0000028338,0.0000028437,0.0000028595,0.0000028678,0.0000028682, +0.0000028658,0.0000028615,0.0000028526,0.0000028409,0.0000028315, +0.0000028270,0.0000028283,0.0000028318,0.0000028337,0.0000028347, +0.0000028332,0.0000028294,0.0000028265,0.0000028280,0.0000028320, +0.0000028344,0.0000028340,0.0000028318,0.0000028283,0.0000028246, +0.0000028228,0.0000028237,0.0000028268,0.0000028317,0.0000028384, +0.0000028449,0.0000028493,0.0000028518,0.0000028515,0.0000028477, +0.0000028402,0.0000028307,0.0000028223,0.0000028185,0.0000028292, +0.0000028349,0.0000028448,0.0000028558,0.0000028636,0.0000028651, +0.0000028625,0.0000028581,0.0000028541,0.0000028518,0.0000028508, +0.0000028483,0.0000028448,0.0000028455,0.0000028493,0.0000028514, +0.0000028473,0.0000028389,0.0000028325,0.0000028282,0.0000028232, +0.0000028188,0.0000028161,0.0000028132,0.0000028088,0.0000028064, +0.0000028088,0.0000028148,0.0000028190,0.0000028198,0.0000028197, +0.0000028238,0.0000028316,0.0000028354,0.0000028339,0.0000028330, +0.0000028318,0.0000028229,0.0000028136,0.0000028157,0.0000028221, +0.0000028238,0.0000028235,0.0000028184,0.0000028084,0.0000028021, +0.0000028070,0.0000028184,0.0000028251,0.0000028231,0.0000028149, +0.0000028053,0.0000027943,0.0000027879,0.0000027870,0.0000027862, +0.0000027838,0.0000027798,0.0000027774,0.0000027807,0.0000027879, +0.0000027921,0.0000027870,0.0000027786,0.0000027762,0.0000027778, +0.0000027823,0.0000027937,0.0000028028,0.0000028024,0.0000027922, +0.0000027790,0.0000027696,0.0000027648,0.0000027622,0.0000027574, +0.0000027482,0.0000027364,0.0000027265,0.0000027234,0.0000027251, +0.0000027278,0.0000027290,0.0000027306,0.0000027287,0.0000027179, +0.0000027023,0.0000026886,0.0000026825,0.0000026863,0.0000026990, +0.0000027135,0.0000027237,0.0000027331,0.0000027446,0.0000027547, +0.0000027586,0.0000027563,0.0000027466,0.0000027332,0.0000027231, +0.0000027191,0.0000027184,0.0000027184,0.0000027193,0.0000027259, +0.0000027382,0.0000027519,0.0000027597,0.0000027625,0.0000027638, +0.0000027683,0.0000027792,0.0000027940,0.0000028092,0.0000028194, +0.0000028199,0.0000028094,0.0000027948,0.0000027869,0.0000027882, +0.0000027939,0.0000027994,0.0000028065,0.0000028171,0.0000028247, +0.0000028197,0.0000028063,0.0000027968,0.0000027940,0.0000027920, +0.0000027889,0.0000027863,0.0000027865,0.0000027889,0.0000027931, +0.0000027970,0.0000027971,0.0000027907,0.0000027788,0.0000027694, +0.0000027691,0.0000027808,0.0000027988,0.0000028133,0.0000028165, +0.0000028140,0.0000028158,0.0000028258,0.0000028363,0.0000028414, +0.0000028422,0.0000028422,0.0000028407,0.0000028352,0.0000028265, +0.0000028194,0.0000028182,0.0000028235,0.0000028315,0.0000028361, +0.0000028345,0.0000028265,0.0000028164,0.0000028125,0.0000028193, +0.0000028312,0.0000028443,0.0000028609,0.0000028706,0.0000028650, +0.0000028468,0.0000028369,0.0000028417,0.0000028592,0.0000028765, +0.0000028880,0.0000028918,0.0000028892,0.0000028808,0.0000028706, +0.0000028617,0.0000028579,0.0000028567,0.0000028531,0.0000028451, +0.0000028373,0.0000028316,0.0000028274,0.0000028228,0.0000028170, +0.0000028119,0.0000028074,0.0000028037,0.0000027987,0.0000027928, +0.0000027903,0.0000027911,0.0000027956,0.0000028032,0.0000028141, +0.0000028258,0.0000028330,0.0000028319,0.0000028220,0.0000028048, +0.0000027873,0.0000027818,0.0000027887,0.0000028066,0.0000028189, +0.0000028215,0.0000028209,0.0000028180,0.0000028130,0.0000028062, +0.0000027978,0.0000027890,0.0000027842,0.0000027852,0.0000027875, +0.0000027881,0.0000027838,0.0000027733,0.0000027625,0.0000027558, +0.0000027527,0.0000027510,0.0000027489,0.0000027438,0.0000027358, +0.0000027268,0.0000027199,0.0000027192,0.0000027225,0.0000027294, +0.0000027392,0.0000027520,0.0000027655,0.0000027777,0.0000027868, +0.0000027888,0.0000027822,0.0000027685,0.0000027540,0.0000027471, +0.0000027488,0.0000027554,0.0000027621,0.0000027661,0.0000027685, +0.0000027702,0.0000027742,0.0000027802,0.0000027855,0.0000027857, +0.0000027831,0.0000027844,0.0000027891,0.0000027925,0.0000027918, +0.0000027897,0.0000027894,0.0000027916,0.0000027933,0.0000027957, +0.0000027998,0.0000028051,0.0000028092,0.0000028106,0.0000028108, +0.0000028110,0.0000028106,0.0000028110,0.0000028138,0.0000028177, +0.0000028211,0.0000028218,0.0000028206,0.0000028151,0.0000028049, +0.0000027923,0.0000027803,0.0000027699,0.0000027607,0.0000027529, +0.0000027482,0.0000027476,0.0000027498,0.0000027541,0.0000027576, +0.0000027603,0.0000027644,0.0000027696,0.0000027743,0.0000027791, +0.0000027836,0.0000027879,0.0000027913,0.0000027927,0.0000027927, +0.0000027940,0.0000028002,0.0000028113,0.0000028183,0.0000028162, +0.0000028076,0.0000027967,0.0000027899,0.0000027895,0.0000027971, +0.0000028091,0.0000028166,0.0000028165,0.0000028120,0.0000028063, +0.0000028035,0.0000028050,0.0000028092,0.0000028134,0.0000028151, +0.0000028127,0.0000028061,0.0000027979,0.0000027906,0.0000027855, +0.0000027840,0.0000027845,0.0000027839,0.0000027815,0.0000027772, +0.0000027730,0.0000027673,0.0000027611,0.0000027556,0.0000027534, +0.0000027536,0.0000027558,0.0000027618,0.0000027705,0.0000027781, +0.0000027828,0.0000027836,0.0000027789,0.0000027681,0.0000027530, +0.0000027382,0.0000027299,0.0000027291,0.0000027338,0.0000027368, +0.0000027308,0.0000027237,0.0000027232,0.0000027213,0.0000027143, +0.0000027071,0.0000026946,0.0000026766,0.0000026681,0.0000026728, +0.0000026819,0.0000026900,0.0000027047,0.0000027313,0.0000027588, +0.0000027707,0.0000027669,0.0000027602,0.0000027587,0.0000027601, +0.0000027612,0.0000027646,0.0000027734,0.0000027869,0.0000027957, +0.0000027936,0.0000027830,0.0000027690,0.0000027478,0.0000027271, +0.0000027244,0.0000027423,0.0000027564,0.0000027622,0.0000027833, +0.0000028125,0.0000028224,0.0000028191,0.0000028096,0.0000028046, +0.0000028047,0.0000028120,0.0000028204,0.0000028294,0.0000028453, +0.0000028581,0.0000028595,0.0000028606,0.0000028643,0.0000028678, +0.0000028635,0.0000028536,0.0000028486,0.0000028387,0.0000028301, +0.0000028286,0.0000028318,0.0000028351,0.0000028326,0.0000028230, +0.0000028136,0.0000028038,0.0000027983,0.0000027972,0.0000027975, +0.0000027978,0.0000027976,0.0000027974,0.0000027971,0.0000027976, +0.0000027979,0.0000027915,0.0000027764,0.0000027609,0.0000027484, +0.0000027429,0.0000027398,0.0000027377,0.0000027361,0.0000027347, +0.0000027355,0.0000027385,0.0000027445,0.0000027521,0.0000027573, +0.0000027569,0.0000027569,0.0000027583,0.0000027615,0.0000027712, +0.0000027849,0.0000027980,0.0000028078,0.0000028137,0.0000028167, +0.0000028185,0.0000028186,0.0000028157,0.0000028084,0.0000028000, +0.0000027977,0.0000028034,0.0000028076,0.0000028050,0.0000028001, +0.0000027969,0.0000028011,0.0000028077,0.0000028102,0.0000028063, +0.0000028005,0.0000027959,0.0000027937,0.0000027951,0.0000028017, +0.0000028086,0.0000028185,0.0000028359,0.0000028486,0.0000028498, +0.0000028497,0.0000028529,0.0000028571,0.0000028615,0.0000028661, +0.0000028746,0.0000028833,0.0000028909,0.0000028947,0.0000028930, +0.0000028893,0.0000028873,0.0000028866,0.0000028861,0.0000028870, +0.0000028902,0.0000028949,0.0000028989,0.0000029022,0.0000029026, +0.0000028986,0.0000028906,0.0000028776,0.0000028582,0.0000028379, +0.0000028244,0.0000028179,0.0000028177,0.0000028249,0.0000028406, +0.0000028562,0.0000028613,0.0000028567,0.0000028478,0.0000028462, +0.0000028463,0.0000028473,0.0000028459,0.0000028452,0.0000028539, +0.0000028661,0.0000028716,0.0000028714,0.0000028689,0.0000028648, +0.0000028588,0.0000028504,0.0000028427,0.0000028379,0.0000028354, +0.0000028339,0.0000028319,0.0000028293,0.0000028249,0.0000028203, +0.0000028183,0.0000028227,0.0000028308,0.0000028375,0.0000028397, +0.0000028381,0.0000028338,0.0000028304,0.0000028304,0.0000028324, +0.0000028353,0.0000028391,0.0000028447,0.0000028499,0.0000028533, +0.0000028552,0.0000028551,0.0000028526,0.0000028480,0.0000028414, +0.0000028336,0.0000028289,0.0000028373,0.0000028430,0.0000028522, +0.0000028623,0.0000028706,0.0000028736,0.0000028712,0.0000028652, +0.0000028594,0.0000028556,0.0000028535,0.0000028519,0.0000028497, +0.0000028508,0.0000028562,0.0000028616,0.0000028618,0.0000028549, +0.0000028476,0.0000028435,0.0000028394,0.0000028345,0.0000028298, +0.0000028241,0.0000028167,0.0000028117,0.0000028136,0.0000028208, +0.0000028263,0.0000028278,0.0000028273,0.0000028287,0.0000028336, +0.0000028370,0.0000028357,0.0000028333,0.0000028315,0.0000028255, +0.0000028156,0.0000028120,0.0000028152,0.0000028184,0.0000028193, +0.0000028161,0.0000028088,0.0000028039,0.0000028077,0.0000028188, +0.0000028261,0.0000028253,0.0000028186,0.0000028095,0.0000027997, +0.0000027903,0.0000027879,0.0000027867,0.0000027842,0.0000027792, +0.0000027754,0.0000027770,0.0000027840,0.0000027932,0.0000027947, +0.0000027851,0.0000027782,0.0000027800,0.0000027839,0.0000027904, +0.0000028015,0.0000028082,0.0000028052,0.0000027911,0.0000027747, +0.0000027644,0.0000027598,0.0000027559,0.0000027485,0.0000027375, +0.0000027261,0.0000027198,0.0000027204,0.0000027227,0.0000027237, +0.0000027267,0.0000027291,0.0000027237,0.0000027091,0.0000026930, +0.0000026838,0.0000026856,0.0000026960,0.0000027097,0.0000027194, +0.0000027252,0.0000027316,0.0000027408,0.0000027491,0.0000027517, +0.0000027488,0.0000027388,0.0000027277,0.0000027212,0.0000027202, +0.0000027205,0.0000027200,0.0000027221,0.0000027307,0.0000027457, +0.0000027588,0.0000027654,0.0000027661,0.0000027662,0.0000027724, +0.0000027857,0.0000028017,0.0000028164,0.0000028245,0.0000028216, +0.0000028091,0.0000027956,0.0000027919,0.0000027947,0.0000027997, +0.0000028042,0.0000028102,0.0000028174,0.0000028183,0.0000028081, +0.0000027959,0.0000027905,0.0000027890,0.0000027861,0.0000027837, +0.0000027847,0.0000027887,0.0000027947,0.0000028002,0.0000028023, +0.0000027971,0.0000027841,0.0000027735,0.0000027758,0.0000027918, +0.0000028119,0.0000028268,0.0000028308,0.0000028297,0.0000028313, +0.0000028371,0.0000028442,0.0000028479,0.0000028468,0.0000028441, +0.0000028416,0.0000028381,0.0000028324,0.0000028260,0.0000028227, +0.0000028242,0.0000028296,0.0000028324,0.0000028309,0.0000028232, +0.0000028180,0.0000028175,0.0000028221,0.0000028289,0.0000028373, +0.0000028519,0.0000028692,0.0000028739,0.0000028613,0.0000028408, +0.0000028310,0.0000028370,0.0000028547,0.0000028723,0.0000028858, +0.0000028927,0.0000028909,0.0000028833,0.0000028748,0.0000028684, +0.0000028659,0.0000028663,0.0000028640,0.0000028571,0.0000028515, +0.0000028491,0.0000028473,0.0000028428,0.0000028357,0.0000028287, +0.0000028228,0.0000028181,0.0000028125,0.0000028047,0.0000027997, +0.0000028003,0.0000028061,0.0000028141,0.0000028232,0.0000028322, +0.0000028374,0.0000028356,0.0000028264,0.0000028095,0.0000027916, +0.0000027829,0.0000027845,0.0000027954,0.0000028074,0.0000028136, +0.0000028161,0.0000028175,0.0000028178,0.0000028161,0.0000028113, +0.0000028034,0.0000027947,0.0000027890,0.0000027876,0.0000027889, +0.0000027898,0.0000027869,0.0000027793,0.0000027709,0.0000027651, +0.0000027614,0.0000027581,0.0000027551,0.0000027507,0.0000027432, +0.0000027337,0.0000027262,0.0000027239,0.0000027260,0.0000027330, +0.0000027455,0.0000027613,0.0000027759,0.0000027859,0.0000027898, +0.0000027873,0.0000027756,0.0000027603,0.0000027497,0.0000027469, +0.0000027520,0.0000027611,0.0000027673,0.0000027683,0.0000027685, +0.0000027712,0.0000027784,0.0000027863,0.0000027891,0.0000027868, +0.0000027856,0.0000027909,0.0000027981,0.0000028014,0.0000028004, +0.0000027989,0.0000027983,0.0000027988,0.0000027988,0.0000028012, +0.0000028073,0.0000028158,0.0000028243,0.0000028304,0.0000028342, +0.0000028363,0.0000028379,0.0000028394,0.0000028424,0.0000028447, +0.0000028475,0.0000028476,0.0000028445,0.0000028397,0.0000028313, +0.0000028204,0.0000028086,0.0000027964,0.0000027840,0.0000027730, +0.0000027662,0.0000027650,0.0000027671,0.0000027709,0.0000027743, +0.0000027769,0.0000027806,0.0000027859,0.0000027906,0.0000027948, +0.0000027996,0.0000028041,0.0000028072,0.0000028089,0.0000028105, +0.0000028137,0.0000028197,0.0000028244,0.0000028205,0.0000028111, +0.0000027987,0.0000027910,0.0000027890,0.0000027922,0.0000028024, +0.0000028136,0.0000028184,0.0000028170,0.0000028126,0.0000028088, +0.0000028092,0.0000028131,0.0000028177,0.0000028200,0.0000028203, +0.0000028164,0.0000028082,0.0000027984,0.0000027902,0.0000027857, +0.0000027842,0.0000027840,0.0000027832,0.0000027799,0.0000027750, +0.0000027714,0.0000027687,0.0000027662,0.0000027659,0.0000027669, +0.0000027675,0.0000027670,0.0000027676,0.0000027713,0.0000027760, +0.0000027796,0.0000027808,0.0000027784,0.0000027710,0.0000027597, +0.0000027473,0.0000027375,0.0000027348,0.0000027382,0.0000027448, +0.0000027447,0.0000027335,0.0000027246,0.0000027219,0.0000027159, +0.0000027079,0.0000026997,0.0000026850,0.0000026718,0.0000026726, +0.0000026822,0.0000026907,0.0000027029,0.0000027274,0.0000027571, +0.0000027717,0.0000027682,0.0000027601,0.0000027581,0.0000027600, +0.0000027608,0.0000027652,0.0000027751,0.0000027879,0.0000027954, +0.0000027924,0.0000027827,0.0000027669,0.0000027430,0.0000027255, +0.0000027284,0.0000027469,0.0000027594,0.0000027607,0.0000027782, +0.0000028074,0.0000028224,0.0000028183,0.0000028109,0.0000028042, +0.0000028039,0.0000028085,0.0000028165,0.0000028274,0.0000028436, +0.0000028579,0.0000028620,0.0000028605,0.0000028593,0.0000028606, +0.0000028635,0.0000028588,0.0000028498,0.0000028447,0.0000028367, +0.0000028278,0.0000028298,0.0000028346,0.0000028329,0.0000028249, +0.0000028200,0.0000028140,0.0000028060,0.0000027996,0.0000027980, +0.0000027994,0.0000028024,0.0000028034,0.0000028048,0.0000028067, +0.0000028084,0.0000028095,0.0000028038,0.0000027880,0.0000027703, +0.0000027549,0.0000027481,0.0000027450,0.0000027432,0.0000027418, +0.0000027405,0.0000027404,0.0000027431,0.0000027499,0.0000027573, +0.0000027625,0.0000027645,0.0000027659,0.0000027691,0.0000027719, +0.0000027784,0.0000027881,0.0000027962,0.0000028030,0.0000028090, +0.0000028129,0.0000028159,0.0000028180,0.0000028172,0.0000028144, +0.0000028087,0.0000028015,0.0000028006,0.0000028053,0.0000028095, +0.0000028096,0.0000028072,0.0000028062,0.0000028106,0.0000028141, +0.0000028144,0.0000028142,0.0000028107,0.0000028042,0.0000027974, +0.0000027959,0.0000027974,0.0000028018,0.0000028066,0.0000028165, +0.0000028338,0.0000028463,0.0000028482,0.0000028460,0.0000028469, +0.0000028540,0.0000028643,0.0000028749,0.0000028836,0.0000028918, +0.0000028953,0.0000028933,0.0000028907,0.0000028887,0.0000028865, +0.0000028843,0.0000028840,0.0000028858,0.0000028890,0.0000028918, +0.0000028942,0.0000028946,0.0000028925,0.0000028863,0.0000028750, +0.0000028591,0.0000028420,0.0000028270,0.0000028178,0.0000028162, +0.0000028216,0.0000028374,0.0000028564,0.0000028643,0.0000028613, +0.0000028541,0.0000028535,0.0000028541,0.0000028546,0.0000028539, +0.0000028540,0.0000028609,0.0000028686,0.0000028722,0.0000028712, +0.0000028682,0.0000028643,0.0000028616,0.0000028578,0.0000028524, +0.0000028457,0.0000028387,0.0000028321,0.0000028264,0.0000028221, +0.0000028191,0.0000028169,0.0000028171,0.0000028235,0.0000028331, +0.0000028405,0.0000028425,0.0000028402,0.0000028365,0.0000028355, +0.0000028379,0.0000028410,0.0000028432,0.0000028452,0.0000028483, +0.0000028521,0.0000028548,0.0000028567,0.0000028574,0.0000028559, +0.0000028528,0.0000028480,0.0000028416,0.0000028370,0.0000028403, +0.0000028471,0.0000028576,0.0000028682,0.0000028763,0.0000028796, +0.0000028779,0.0000028713,0.0000028643,0.0000028598,0.0000028571, +0.0000028548,0.0000028527,0.0000028535,0.0000028583,0.0000028653, +0.0000028681,0.0000028633,0.0000028554,0.0000028508,0.0000028478, +0.0000028442,0.0000028400,0.0000028331,0.0000028231,0.0000028155, +0.0000028157,0.0000028240,0.0000028322,0.0000028345,0.0000028330, +0.0000028317,0.0000028336,0.0000028365,0.0000028367,0.0000028345, +0.0000028313,0.0000028255,0.0000028168,0.0000028106,0.0000028102, +0.0000028120,0.0000028145,0.0000028129,0.0000028079,0.0000028056, +0.0000028102,0.0000028203,0.0000028282,0.0000028284,0.0000028225, +0.0000028141,0.0000028063,0.0000027966,0.0000027910,0.0000027895, +0.0000027867,0.0000027807,0.0000027728,0.0000027723,0.0000027795, +0.0000027900,0.0000027970,0.0000027928,0.0000027825,0.0000027801, +0.0000027850,0.0000027896,0.0000027975,0.0000028063,0.0000028094, +0.0000028046,0.0000027889,0.0000027715,0.0000027599,0.0000027533, +0.0000027465,0.0000027362,0.0000027251,0.0000027186,0.0000027177, +0.0000027186,0.0000027187,0.0000027213,0.0000027269,0.0000027278, +0.0000027179,0.0000027018,0.0000026888,0.0000026875,0.0000026946, +0.0000027063,0.0000027164,0.0000027225,0.0000027272,0.0000027338, +0.0000027409,0.0000027444,0.0000027443,0.0000027391,0.0000027299, +0.0000027227,0.0000027212,0.0000027228,0.0000027230,0.0000027223, +0.0000027253,0.0000027362,0.0000027520,0.0000027649,0.0000027700, +0.0000027687,0.0000027687,0.0000027767,0.0000027914,0.0000028078, +0.0000028218,0.0000028277,0.0000028235,0.0000028097,0.0000027987, +0.0000027968,0.0000028007,0.0000028048,0.0000028072,0.0000028106, +0.0000028135,0.0000028091,0.0000027965,0.0000027866,0.0000027839, +0.0000027824,0.0000027803,0.0000027813,0.0000027859,0.0000027939, +0.0000028019,0.0000028054,0.0000028023,0.0000027907,0.0000027800, +0.0000027826,0.0000027993,0.0000028200,0.0000028352,0.0000028431, +0.0000028466,0.0000028494,0.0000028524,0.0000028554,0.0000028569, +0.0000028549,0.0000028494,0.0000028436,0.0000028391,0.0000028356, +0.0000028322,0.0000028291,0.0000028268,0.0000028259,0.0000028257, +0.0000028226,0.0000028175,0.0000028150,0.0000028191,0.0000028267, +0.0000028313,0.0000028335,0.0000028421,0.0000028606,0.0000028746, +0.0000028730,0.0000028562,0.0000028356,0.0000028269,0.0000028341, +0.0000028515,0.0000028696,0.0000028852,0.0000028941,0.0000028931, +0.0000028867,0.0000028804,0.0000028767,0.0000028755,0.0000028764, +0.0000028749,0.0000028687,0.0000028640,0.0000028630,0.0000028622, +0.0000028570,0.0000028483,0.0000028404,0.0000028345,0.0000028300, +0.0000028251,0.0000028173,0.0000028105,0.0000028096,0.0000028143, +0.0000028205,0.0000028268,0.0000028332,0.0000028377,0.0000028376, +0.0000028318,0.0000028188,0.0000028015,0.0000027889,0.0000027861, +0.0000027897,0.0000027972,0.0000028025,0.0000028049,0.0000028077, +0.0000028113,0.0000028145,0.0000028147,0.0000028122,0.0000028074, +0.0000028005,0.0000027939,0.0000027905,0.0000027908,0.0000027913, +0.0000027887,0.0000027820,0.0000027748,0.0000027708,0.0000027686, +0.0000027659,0.0000027627,0.0000027586,0.0000027519,0.0000027432, +0.0000027360,0.0000027327,0.0000027332,0.0000027392,0.0000027526, +0.0000027696,0.0000027828,0.0000027887,0.0000027893,0.0000027827, +0.0000027693,0.0000027566,0.0000027493,0.0000027486,0.0000027571, +0.0000027672,0.0000027698,0.0000027680,0.0000027690,0.0000027751, +0.0000027846,0.0000027909,0.0000027911,0.0000027911,0.0000027948, +0.0000028008,0.0000028054,0.0000028065,0.0000028068,0.0000028069, +0.0000028067,0.0000028067,0.0000028069,0.0000028107,0.0000028198, +0.0000028319,0.0000028443,0.0000028545,0.0000028611,0.0000028641, +0.0000028671,0.0000028690,0.0000028693,0.0000028698,0.0000028696, +0.0000028682,0.0000028633,0.0000028576,0.0000028512,0.0000028429, +0.0000028332,0.0000028216,0.0000028085,0.0000027965,0.0000027888, +0.0000027869,0.0000027882,0.0000027909,0.0000027941,0.0000027969, +0.0000028003,0.0000028051,0.0000028092,0.0000028129,0.0000028175, +0.0000028216,0.0000028242,0.0000028255,0.0000028267,0.0000028280, +0.0000028293,0.0000028266,0.0000028173,0.0000028019,0.0000027914, +0.0000027879,0.0000027884,0.0000027947,0.0000028067,0.0000028167, +0.0000028197,0.0000028183,0.0000028156,0.0000028149,0.0000028179, +0.0000028238,0.0000028290,0.0000028310,0.0000028315,0.0000028284, +0.0000028211,0.0000028114,0.0000028034,0.0000027995,0.0000027981, +0.0000027961,0.0000027920,0.0000027852,0.0000027771,0.0000027715, +0.0000027704,0.0000027722,0.0000027771,0.0000027815,0.0000027822, +0.0000027782,0.0000027728,0.0000027713,0.0000027735,0.0000027761, +0.0000027766,0.0000027748,0.0000027705,0.0000027636,0.0000027544, +0.0000027454,0.0000027405,0.0000027417,0.0000027473,0.0000027507, +0.0000027438,0.0000027289,0.0000027208,0.0000027163,0.0000027081, +0.0000027012,0.0000026923,0.0000026786,0.0000026743,0.0000026815, +0.0000026913,0.0000027011,0.0000027216,0.0000027525,0.0000027724, +0.0000027706,0.0000027602,0.0000027574,0.0000027594,0.0000027620, +0.0000027677,0.0000027775,0.0000027882,0.0000027944,0.0000027908, +0.0000027791,0.0000027606,0.0000027385,0.0000027285,0.0000027360, +0.0000027521,0.0000027605,0.0000027638,0.0000027774,0.0000028041, +0.0000028189,0.0000028178,0.0000028085,0.0000028031,0.0000028023, +0.0000028061,0.0000028118,0.0000028235,0.0000028401,0.0000028559, +0.0000028636,0.0000028608,0.0000028556,0.0000028522,0.0000028532, +0.0000028546,0.0000028531,0.0000028446,0.0000028370,0.0000028332, +0.0000028284,0.0000028325,0.0000028328,0.0000028238,0.0000028162, +0.0000028151,0.0000028122,0.0000028049,0.0000027972,0.0000027962, +0.0000028011,0.0000028062,0.0000028069,0.0000028086,0.0000028134, +0.0000028176,0.0000028176,0.0000028108,0.0000027964,0.0000027803, +0.0000027659,0.0000027605,0.0000027579,0.0000027567,0.0000027562, +0.0000027562,0.0000027567,0.0000027586,0.0000027639,0.0000027719, +0.0000027786,0.0000027817,0.0000027829,0.0000027846,0.0000027851, +0.0000027854,0.0000027883,0.0000027927,0.0000027961,0.0000027987, +0.0000028029,0.0000028073,0.0000028115,0.0000028139,0.0000028137, +0.0000028111,0.0000028074,0.0000028018,0.0000028021,0.0000028067, +0.0000028111,0.0000028118,0.0000028118,0.0000028134,0.0000028165, +0.0000028169,0.0000028175,0.0000028200,0.0000028198,0.0000028138, +0.0000028062,0.0000028001,0.0000027957,0.0000027961,0.0000027996, +0.0000028039,0.0000028141,0.0000028322,0.0000028454,0.0000028461, +0.0000028426,0.0000028441,0.0000028545,0.0000028679,0.0000028789, +0.0000028872,0.0000028909,0.0000028914,0.0000028918,0.0000028902, +0.0000028876,0.0000028860,0.0000028855,0.0000028870,0.0000028890, +0.0000028902,0.0000028904,0.0000028897,0.0000028878,0.0000028816, +0.0000028732,0.0000028617,0.0000028468,0.0000028309,0.0000028189, +0.0000028154,0.0000028192,0.0000028336,0.0000028547,0.0000028663, +0.0000028666,0.0000028619,0.0000028617,0.0000028621,0.0000028613, +0.0000028602,0.0000028599,0.0000028642,0.0000028690,0.0000028719, +0.0000028714,0.0000028680,0.0000028635,0.0000028620,0.0000028605, +0.0000028556,0.0000028471,0.0000028390,0.0000028314,0.0000028259, +0.0000028220,0.0000028195,0.0000028183,0.0000028191,0.0000028259, +0.0000028339,0.0000028395,0.0000028405,0.0000028387,0.0000028371, +0.0000028392,0.0000028430,0.0000028455,0.0000028460,0.0000028462, +0.0000028476,0.0000028501,0.0000028526,0.0000028555,0.0000028571, +0.0000028563,0.0000028538,0.0000028494,0.0000028433,0.0000028394, +0.0000028412,0.0000028494,0.0000028613,0.0000028731,0.0000028814, +0.0000028843,0.0000028824,0.0000028749,0.0000028670,0.0000028623, +0.0000028597,0.0000028572,0.0000028551,0.0000028549,0.0000028584, +0.0000028650,0.0000028687,0.0000028659,0.0000028588,0.0000028539, +0.0000028511,0.0000028482,0.0000028446,0.0000028375,0.0000028260, +0.0000028161,0.0000028140,0.0000028225,0.0000028336,0.0000028384, +0.0000028375,0.0000028343,0.0000028333,0.0000028347,0.0000028361, +0.0000028355,0.0000028319,0.0000028248,0.0000028171,0.0000028109, +0.0000028077,0.0000028070,0.0000028085,0.0000028077,0.0000028051, +0.0000028066,0.0000028137,0.0000028232,0.0000028304,0.0000028313, +0.0000028263,0.0000028195,0.0000028126,0.0000028055,0.0000027973, +0.0000027948,0.0000027917,0.0000027852,0.0000027751,0.0000027698, +0.0000027743,0.0000027859,0.0000027969,0.0000027977,0.0000027903, +0.0000027822,0.0000027847,0.0000027918,0.0000027966,0.0000028018, +0.0000028067,0.0000028078,0.0000028023,0.0000027881,0.0000027701, +0.0000027547,0.0000027444,0.0000027348,0.0000027242,0.0000027180, +0.0000027173,0.0000027175,0.0000027155,0.0000027162,0.0000027232, +0.0000027286,0.0000027262,0.0000027146,0.0000026996,0.0000026917, +0.0000026953,0.0000027044,0.0000027131,0.0000027194,0.0000027243, +0.0000027306,0.0000027381,0.0000027425,0.0000027417,0.0000027391, +0.0000027319,0.0000027243,0.0000027223,0.0000027251,0.0000027283, +0.0000027269,0.0000027259,0.0000027302,0.0000027428,0.0000027588, +0.0000027708,0.0000027734,0.0000027706,0.0000027707,0.0000027795, +0.0000027948,0.0000028116,0.0000028254,0.0000028296,0.0000028248, +0.0000028119,0.0000028023,0.0000028015,0.0000028048,0.0000028067, +0.0000028070,0.0000028085,0.0000028085,0.0000028001,0.0000027863, +0.0000027788,0.0000027776,0.0000027769,0.0000027776,0.0000027827, +0.0000027920,0.0000028027,0.0000028089,0.0000028065,0.0000027966, +0.0000027880,0.0000027907,0.0000028043,0.0000028223,0.0000028393, +0.0000028531,0.0000028622,0.0000028666,0.0000028683,0.0000028695, +0.0000028695,0.0000028663,0.0000028578,0.0000028471,0.0000028393, +0.0000028364,0.0000028360,0.0000028352,0.0000028324,0.0000028271, +0.0000028201,0.0000028141,0.0000028119,0.0000028140,0.0000028207, +0.0000028297,0.0000028338,0.0000028342,0.0000028360,0.0000028496, +0.0000028683,0.0000028755,0.0000028689,0.0000028503,0.0000028318, +0.0000028256,0.0000028331,0.0000028498,0.0000028682,0.0000028852, +0.0000028951,0.0000028947,0.0000028895,0.0000028850,0.0000028834, +0.0000028833,0.0000028844,0.0000028826,0.0000028770,0.0000028720, +0.0000028706,0.0000028701,0.0000028659,0.0000028581,0.0000028509, +0.0000028457,0.0000028416,0.0000028374,0.0000028308,0.0000028231, +0.0000028189,0.0000028188,0.0000028204,0.0000028241,0.0000028295, +0.0000028348,0.0000028367,0.0000028344,0.0000028263,0.0000028141, +0.0000028018,0.0000027941,0.0000027920,0.0000027943,0.0000027969, +0.0000027970,0.0000027971,0.0000027993,0.0000028028,0.0000028060, +0.0000028072,0.0000028070,0.0000028053,0.0000028013,0.0000027961, +0.0000027925,0.0000027925,0.0000027937,0.0000027919,0.0000027845, +0.0000027759,0.0000027727,0.0000027735,0.0000027741,0.0000027721, +0.0000027682,0.0000027625,0.0000027547,0.0000027481,0.0000027441, +0.0000027428,0.0000027468,0.0000027595,0.0000027755,0.0000027862, +0.0000027892,0.0000027882,0.0000027792,0.0000027665,0.0000027561, +0.0000027506,0.0000027530,0.0000027645,0.0000027719,0.0000027698, +0.0000027674,0.0000027714,0.0000027802,0.0000027887,0.0000027925, +0.0000027946,0.0000028004,0.0000028060,0.0000028088,0.0000028097, +0.0000028099,0.0000028121,0.0000028147,0.0000028169,0.0000028184, +0.0000028201,0.0000028251,0.0000028361,0.0000028493,0.0000028619, +0.0000028730,0.0000028801,0.0000028834,0.0000028869,0.0000028895, +0.0000028890,0.0000028881,0.0000028855,0.0000028821,0.0000028759, +0.0000028686,0.0000028634,0.0000028577,0.0000028505,0.0000028409, +0.0000028288,0.0000028168,0.0000028085,0.0000028059,0.0000028066, +0.0000028087,0.0000028115,0.0000028142,0.0000028176,0.0000028218, +0.0000028254,0.0000028286,0.0000028325,0.0000028356,0.0000028365, +0.0000028363,0.0000028347,0.0000028320,0.0000028295,0.0000028223, +0.0000028085,0.0000027943,0.0000027869,0.0000027854,0.0000027872, +0.0000027964,0.0000028097,0.0000028192,0.0000028227,0.0000028230, +0.0000028230,0.0000028244,0.0000028286,0.0000028354,0.0000028417, +0.0000028445,0.0000028455,0.0000028434,0.0000028368,0.0000028283, +0.0000028208,0.0000028167,0.0000028157,0.0000028149,0.0000028114, +0.0000028037,0.0000027918,0.0000027811,0.0000027770,0.0000027784, +0.0000027847,0.0000027909,0.0000027922,0.0000027863,0.0000027762, +0.0000027703,0.0000027706,0.0000027723,0.0000027723,0.0000027704, +0.0000027680,0.0000027647,0.0000027590,0.0000027519,0.0000027462, +0.0000027454,0.0000027486,0.0000027517,0.0000027491,0.0000027348, +0.0000027207,0.0000027153,0.0000027089,0.0000027014,0.0000026961, +0.0000026861,0.0000026775,0.0000026805,0.0000026908,0.0000027003, +0.0000027162,0.0000027453,0.0000027696,0.0000027720,0.0000027604, +0.0000027551,0.0000027579,0.0000027629,0.0000027710,0.0000027809, +0.0000027886,0.0000027914,0.0000027865,0.0000027713,0.0000027519, +0.0000027366,0.0000027342,0.0000027472,0.0000027580,0.0000027612, +0.0000027669,0.0000027813,0.0000028026,0.0000028161,0.0000028156, +0.0000028077,0.0000028000,0.0000027993,0.0000028032,0.0000028089, +0.0000028183,0.0000028352,0.0000028515,0.0000028596,0.0000028616, +0.0000028547,0.0000028448,0.0000028416,0.0000028447,0.0000028454, +0.0000028463,0.0000028395,0.0000028331,0.0000028341,0.0000028321, +0.0000028301,0.0000028222,0.0000028108,0.0000028075,0.0000028072, +0.0000028048,0.0000027980,0.0000027933,0.0000027956,0.0000028032, +0.0000028084,0.0000028085,0.0000028097,0.0000028163,0.0000028221, +0.0000028217,0.0000028164,0.0000028066,0.0000027950,0.0000027847, +0.0000027794,0.0000027762,0.0000027752,0.0000027744,0.0000027751, +0.0000027778,0.0000027802,0.0000027843,0.0000027886,0.0000027946, +0.0000027987,0.0000027996,0.0000027982,0.0000027946,0.0000027918, +0.0000027911,0.0000027914,0.0000027927,0.0000027932,0.0000027953, +0.0000028008,0.0000028059,0.0000028101,0.0000028125,0.0000028131, +0.0000028137,0.0000028108,0.0000028083,0.0000028084,0.0000028125, +0.0000028145,0.0000028141,0.0000028142,0.0000028158,0.0000028166, +0.0000028154,0.0000028186,0.0000028230,0.0000028241,0.0000028204, +0.0000028134,0.0000028056,0.0000027982,0.0000027953,0.0000027963, +0.0000027994,0.0000028031,0.0000028137,0.0000028307,0.0000028428, +0.0000028456,0.0000028464,0.0000028507,0.0000028568,0.0000028633, +0.0000028708,0.0000028774,0.0000028826,0.0000028852,0.0000028858, +0.0000028855,0.0000028862,0.0000028875,0.0000028904,0.0000028936, +0.0000028955,0.0000028958,0.0000028931,0.0000028881,0.0000028813, +0.0000028729,0.0000028633,0.0000028495,0.0000028342,0.0000028209, +0.0000028150,0.0000028172,0.0000028289,0.0000028500,0.0000028672, +0.0000028718,0.0000028702,0.0000028703,0.0000028700,0.0000028672, +0.0000028638,0.0000028618,0.0000028636,0.0000028668,0.0000028707, +0.0000028727,0.0000028708,0.0000028673,0.0000028671,0.0000028668, +0.0000028617,0.0000028523,0.0000028443,0.0000028361,0.0000028306, +0.0000028271,0.0000028259,0.0000028240,0.0000028227,0.0000028272, +0.0000028328,0.0000028363,0.0000028374,0.0000028369,0.0000028368, +0.0000028394,0.0000028430,0.0000028445,0.0000028443,0.0000028439, +0.0000028446,0.0000028470,0.0000028511,0.0000028547,0.0000028562, +0.0000028548,0.0000028522,0.0000028478,0.0000028423,0.0000028391, +0.0000028462,0.0000028556,0.0000028678,0.0000028798,0.0000028879, +0.0000028899,0.0000028872,0.0000028786,0.0000028692,0.0000028638, +0.0000028611,0.0000028588,0.0000028570,0.0000028574,0.0000028601, +0.0000028651,0.0000028686,0.0000028668,0.0000028608,0.0000028565, +0.0000028548,0.0000028527,0.0000028488,0.0000028406,0.0000028274, +0.0000028155,0.0000028122,0.0000028188,0.0000028312,0.0000028395, +0.0000028402,0.0000028362,0.0000028324,0.0000028323,0.0000028341, +0.0000028353,0.0000028326,0.0000028246,0.0000028164,0.0000028109, +0.0000028071,0.0000028039,0.0000028025,0.0000028016,0.0000028010, +0.0000028063,0.0000028170,0.0000028271,0.0000028323,0.0000028330, +0.0000028291,0.0000028233,0.0000028187,0.0000028143,0.0000028072, +0.0000028028,0.0000028003,0.0000027941,0.0000027822,0.0000027713, +0.0000027697,0.0000027787,0.0000027932,0.0000027982,0.0000027951, +0.0000027882,0.0000027853,0.0000027914,0.0000027978,0.0000028018, +0.0000028028,0.0000028039,0.0000028041,0.0000028005,0.0000027884, +0.0000027676,0.0000027478,0.0000027349,0.0000027252,0.0000027193, +0.0000027189,0.0000027195,0.0000027166,0.0000027133,0.0000027180, +0.0000027284,0.0000027329,0.0000027287,0.0000027166,0.0000027040, +0.0000027011,0.0000027044,0.0000027099,0.0000027152,0.0000027203, +0.0000027262,0.0000027337,0.0000027408,0.0000027427,0.0000027409, +0.0000027359,0.0000027280,0.0000027231,0.0000027255,0.0000027314, +0.0000027333,0.0000027313,0.0000027308,0.0000027372,0.0000027501, +0.0000027652,0.0000027753,0.0000027757,0.0000027711,0.0000027710, +0.0000027801,0.0000027957,0.0000028131,0.0000028271,0.0000028313, +0.0000028276,0.0000028146,0.0000028044,0.0000028035,0.0000028059, +0.0000028063,0.0000028057,0.0000028062,0.0000028040,0.0000027921, +0.0000027778,0.0000027723,0.0000027721,0.0000027728,0.0000027779, +0.0000027890,0.0000028025,0.0000028116,0.0000028107,0.0000028017, +0.0000027945,0.0000027974,0.0000028083,0.0000028224,0.0000028399, +0.0000028597,0.0000028746,0.0000028810,0.0000028828,0.0000028841, +0.0000028841,0.0000028803,0.0000028698,0.0000028549,0.0000028421, +0.0000028373,0.0000028384,0.0000028403,0.0000028391,0.0000028325, +0.0000028221,0.0000028125,0.0000028095,0.0000028141,0.0000028253, +0.0000028347,0.0000028370,0.0000028348,0.0000028345,0.0000028424, +0.0000028592,0.0000028722,0.0000028730,0.0000028625,0.0000028446, +0.0000028293,0.0000028262,0.0000028347,0.0000028498,0.0000028672, +0.0000028847,0.0000028951,0.0000028955,0.0000028914,0.0000028881, +0.0000028873,0.0000028877,0.0000028891,0.0000028879,0.0000028829, +0.0000028780,0.0000028760,0.0000028761,0.0000028742,0.0000028690, +0.0000028632,0.0000028580,0.0000028527,0.0000028475,0.0000028413, +0.0000028343,0.0000028280,0.0000028232,0.0000028198,0.0000028191, +0.0000028214,0.0000028253,0.0000028281,0.0000028280,0.0000028253, +0.0000028191,0.0000028114,0.0000028049,0.0000027999,0.0000027977, +0.0000027973,0.0000027960,0.0000027937,0.0000027930,0.0000027943, +0.0000027955,0.0000027962,0.0000027961,0.0000027960,0.0000027963, +0.0000027954,0.0000027934,0.0000027915,0.0000027920,0.0000027952, +0.0000027966,0.0000027900,0.0000027791,0.0000027740,0.0000027762, +0.0000027806,0.0000027815,0.0000027793,0.0000027742,0.0000027673, +0.0000027612,0.0000027568,0.0000027536,0.0000027551,0.0000027656, +0.0000027797,0.0000027885,0.0000027904,0.0000027878,0.0000027773, +0.0000027661,0.0000027576,0.0000027541,0.0000027605,0.0000027720, +0.0000027738,0.0000027688,0.0000027677,0.0000027746,0.0000027829, +0.0000027888,0.0000027930,0.0000028012,0.0000028104,0.0000028142, +0.0000028152,0.0000028145,0.0000028150,0.0000028192,0.0000028251, +0.0000028318,0.0000028361,0.0000028385,0.0000028420,0.0000028508, +0.0000028615,0.0000028712,0.0000028803,0.0000028870,0.0000028911, +0.0000028944,0.0000028981,0.0000029006,0.0000029002,0.0000028975, +0.0000028926,0.0000028847,0.0000028769,0.0000028709,0.0000028671, +0.0000028621,0.0000028542,0.0000028433,0.0000028311,0.0000028218, +0.0000028182,0.0000028184,0.0000028201,0.0000028222,0.0000028244, +0.0000028271,0.0000028304,0.0000028331,0.0000028355,0.0000028385, +0.0000028397,0.0000028391,0.0000028375,0.0000028338,0.0000028288, +0.0000028221,0.0000028124,0.0000028002,0.0000027900,0.0000027844, +0.0000027830,0.0000027861,0.0000027980,0.0000028124,0.0000028223, +0.0000028278,0.0000028310,0.0000028332,0.0000028351,0.0000028383, +0.0000028440,0.0000028499,0.0000028529,0.0000028525,0.0000028496, +0.0000028427,0.0000028342,0.0000028263,0.0000028212,0.0000028198, +0.0000028209,0.0000028225,0.0000028200,0.0000028126,0.0000028009, +0.0000027912,0.0000027871,0.0000027895,0.0000027942,0.0000027950, +0.0000027892,0.0000027767,0.0000027679,0.0000027667,0.0000027683, +0.0000027680,0.0000027668,0.0000027659,0.0000027649,0.0000027622, +0.0000027578,0.0000027533,0.0000027507,0.0000027510,0.0000027518, +0.0000027495,0.0000027381,0.0000027223,0.0000027143,0.0000027098, +0.0000027023,0.0000026971,0.0000026914,0.0000026821,0.0000026808, +0.0000026893,0.0000026986,0.0000027113,0.0000027379,0.0000027652, +0.0000027710,0.0000027607,0.0000027531,0.0000027550,0.0000027631, +0.0000027741,0.0000027844,0.0000027894,0.0000027894,0.0000027798, +0.0000027613,0.0000027443,0.0000027383,0.0000027434,0.0000027593, +0.0000027654,0.0000027639,0.0000027694,0.0000027841,0.0000028024, +0.0000028128,0.0000028122,0.0000028045,0.0000027970,0.0000027950, +0.0000027981,0.0000028052,0.0000028162,0.0000028295,0.0000028439, +0.0000028545,0.0000028576,0.0000028544,0.0000028457,0.0000028344, +0.0000028338,0.0000028389,0.0000028418,0.0000028439,0.0000028396, +0.0000028348,0.0000028348,0.0000028300,0.0000028161,0.0000028062, +0.0000027986,0.0000027952,0.0000027938,0.0000027931,0.0000027908, +0.0000027911,0.0000027959,0.0000028038,0.0000028087,0.0000028090, +0.0000028097,0.0000028170,0.0000028242,0.0000028241,0.0000028209, +0.0000028168,0.0000028082,0.0000027974,0.0000027877,0.0000027819, +0.0000027809,0.0000027804,0.0000027800,0.0000027818,0.0000027843, +0.0000027876,0.0000027911,0.0000027964,0.0000028013,0.0000028044, +0.0000028047,0.0000028001,0.0000027963,0.0000027966,0.0000027964, +0.0000027969,0.0000027964,0.0000027961,0.0000027984,0.0000028032, +0.0000028083,0.0000028132,0.0000028184,0.0000028230,0.0000028254, +0.0000028244,0.0000028228,0.0000028203,0.0000028214,0.0000028216, +0.0000028204,0.0000028191,0.0000028173,0.0000028139,0.0000028140, +0.0000028185,0.0000028236,0.0000028250,0.0000028229,0.0000028168, +0.0000028091,0.0000028036,0.0000028011,0.0000027998,0.0000027996, +0.0000027996,0.0000028024,0.0000028124,0.0000028283,0.0000028414, +0.0000028491,0.0000028544,0.0000028576,0.0000028586,0.0000028606, +0.0000028639,0.0000028665,0.0000028689,0.0000028711,0.0000028743, +0.0000028786,0.0000028839,0.0000028914,0.0000028972,0.0000029026, +0.0000029036,0.0000029005,0.0000028943,0.0000028857,0.0000028765, +0.0000028657,0.0000028508,0.0000028365,0.0000028233,0.0000028155, +0.0000028164,0.0000028246,0.0000028433,0.0000028655,0.0000028753, +0.0000028781,0.0000028785,0.0000028785,0.0000028733,0.0000028662, +0.0000028608,0.0000028600,0.0000028631,0.0000028691,0.0000028744, +0.0000028759,0.0000028763,0.0000028774,0.0000028762,0.0000028685, +0.0000028576,0.0000028489,0.0000028412,0.0000028388,0.0000028378, +0.0000028359,0.0000028301,0.0000028260,0.0000028295,0.0000028342, +0.0000028365,0.0000028373,0.0000028367,0.0000028363,0.0000028375, +0.0000028396,0.0000028410,0.0000028421,0.0000028428,0.0000028445, +0.0000028484,0.0000028539,0.0000028581,0.0000028582,0.0000028552, +0.0000028518,0.0000028480,0.0000028439,0.0000028426,0.0000028544, +0.0000028636,0.0000028753,0.0000028871,0.0000028953,0.0000028974, +0.0000028945,0.0000028855,0.0000028744,0.0000028674,0.0000028640, +0.0000028617,0.0000028603,0.0000028607,0.0000028630,0.0000028665, +0.0000028685,0.0000028666,0.0000028611,0.0000028578,0.0000028574, +0.0000028563,0.0000028520,0.0000028430,0.0000028286,0.0000028147, +0.0000028104,0.0000028151,0.0000028281,0.0000028387,0.0000028409, +0.0000028376,0.0000028322,0.0000028301,0.0000028318,0.0000028335, +0.0000028324,0.0000028247,0.0000028152,0.0000028099,0.0000028069, +0.0000028033,0.0000027990,0.0000027950,0.0000027950,0.0000028042, +0.0000028188,0.0000028297,0.0000028335,0.0000028335,0.0000028310, +0.0000028261,0.0000028235,0.0000028215,0.0000028172,0.0000028099, +0.0000028079,0.0000028030,0.0000027921,0.0000027768,0.0000027692, +0.0000027707,0.0000027852,0.0000027978,0.0000027977,0.0000027930, +0.0000027888,0.0000027909,0.0000027983,0.0000028046,0.0000028051, +0.0000028008,0.0000027988,0.0000027993,0.0000027982,0.0000027873, +0.0000027639,0.0000027424,0.0000027301,0.0000027243,0.0000027230, +0.0000027231,0.0000027206,0.0000027148,0.0000027148,0.0000027247, +0.0000027360,0.0000027393,0.0000027347,0.0000027227,0.0000027121, +0.0000027088,0.0000027098,0.0000027119,0.0000027168,0.0000027238, +0.0000027313,0.0000027385,0.0000027431,0.0000027424,0.0000027407, +0.0000027342,0.0000027269,0.0000027255,0.0000027313,0.0000027366, +0.0000027368,0.0000027352,0.0000027369,0.0000027451,0.0000027573, +0.0000027702,0.0000027771,0.0000027753,0.0000027700,0.0000027696, +0.0000027785,0.0000027943,0.0000028125,0.0000028279,0.0000028345, +0.0000028306,0.0000028165,0.0000028052,0.0000028040,0.0000028056, +0.0000028055,0.0000028054,0.0000028056,0.0000028006,0.0000027854, +0.0000027715,0.0000027675,0.0000027675,0.0000027708,0.0000027819, +0.0000027994,0.0000028130,0.0000028151,0.0000028067,0.0000027995, +0.0000028021,0.0000028113,0.0000028222,0.0000028387,0.0000028620, +0.0000028825,0.0000028918,0.0000028937,0.0000028963,0.0000028989, +0.0000028957,0.0000028841,0.0000028663,0.0000028496,0.0000028418, +0.0000028430,0.0000028471,0.0000028473,0.0000028402,0.0000028277, +0.0000028171,0.0000028136,0.0000028189,0.0000028307,0.0000028404, +0.0000028420,0.0000028379,0.0000028352,0.0000028394,0.0000028532, +0.0000028669,0.0000028711,0.0000028670,0.0000028551,0.0000028397, +0.0000028295,0.0000028296,0.0000028383,0.0000028516,0.0000028672, +0.0000028833,0.0000028940,0.0000028960,0.0000028936,0.0000028913, +0.0000028897,0.0000028897,0.0000028916,0.0000028924,0.0000028893, +0.0000028855,0.0000028835,0.0000028835,0.0000028833,0.0000028798, +0.0000028746,0.0000028691,0.0000028625,0.0000028552,0.0000028485, +0.0000028426,0.0000028375,0.0000028315,0.0000028244,0.0000028188, +0.0000028167,0.0000028154,0.0000028155,0.0000028150,0.0000028136, +0.0000028116,0.0000028087,0.0000028059,0.0000028027,0.0000027996, +0.0000027977,0.0000027956,0.0000027930,0.0000027901,0.0000027900, +0.0000027909,0.0000027905,0.0000027886,0.0000027856,0.0000027838, +0.0000027842,0.0000027853,0.0000027869,0.0000027871,0.0000027884, +0.0000027943,0.0000027992,0.0000027979,0.0000027881,0.0000027792, +0.0000027788,0.0000027838,0.0000027890,0.0000027894,0.0000027858, +0.0000027799,0.0000027742,0.0000027695,0.0000027651,0.0000027641, +0.0000027715,0.0000027835,0.0000027914,0.0000027929,0.0000027883, +0.0000027768,0.0000027669,0.0000027604,0.0000027593,0.0000027695, +0.0000027771,0.0000027743,0.0000027691,0.0000027700,0.0000027767, +0.0000027827,0.0000027863,0.0000027948,0.0000028084,0.0000028171, +0.0000028206,0.0000028222,0.0000028222,0.0000028243,0.0000028309, +0.0000028404,0.0000028507,0.0000028569,0.0000028581,0.0000028585, +0.0000028623,0.0000028689,0.0000028754,0.0000028813,0.0000028868, +0.0000028916,0.0000028942,0.0000028983,0.0000029032,0.0000029044, +0.0000029036,0.0000028986,0.0000028903,0.0000028815,0.0000028748, +0.0000028716,0.0000028677,0.0000028605,0.0000028498,0.0000028374, +0.0000028273,0.0000028227,0.0000028225,0.0000028231,0.0000028242, +0.0000028258,0.0000028276,0.0000028300,0.0000028319,0.0000028330, +0.0000028350,0.0000028358,0.0000028346,0.0000028312,0.0000028263, +0.0000028200,0.0000028122,0.0000028033,0.0000027947,0.0000027882, +0.0000027836,0.0000027822,0.0000027862,0.0000028002,0.0000028157, +0.0000028265,0.0000028344,0.0000028403,0.0000028436,0.0000028446, +0.0000028453,0.0000028478,0.0000028516,0.0000028535,0.0000028519, +0.0000028479,0.0000028400,0.0000028301,0.0000028213,0.0000028152, +0.0000028133,0.0000028147,0.0000028184,0.0000028219,0.0000028212, +0.0000028162,0.0000028075,0.0000027980,0.0000027936,0.0000027938, +0.0000027942,0.0000027871,0.0000027735,0.0000027637,0.0000027620, +0.0000027634,0.0000027645,0.0000027647,0.0000027653,0.0000027654, +0.0000027648,0.0000027632,0.0000027606,0.0000027575,0.0000027551, +0.0000027534,0.0000027501,0.0000027394,0.0000027239,0.0000027144, +0.0000027105,0.0000027042,0.0000026979,0.0000026939,0.0000026862, +0.0000026830,0.0000026884,0.0000026966,0.0000027062,0.0000027300, +0.0000027594,0.0000027686,0.0000027607,0.0000027522,0.0000027520, +0.0000027613,0.0000027754,0.0000027865,0.0000027907,0.0000027880, +0.0000027737,0.0000027533,0.0000027404,0.0000027401,0.0000027522, +0.0000027697,0.0000027724,0.0000027686,0.0000027728,0.0000027844, +0.0000028001,0.0000028079,0.0000028070,0.0000028009,0.0000027922, +0.0000027886,0.0000027915,0.0000027990,0.0000028126,0.0000028273, +0.0000028382,0.0000028453,0.0000028509,0.0000028512,0.0000028447, +0.0000028375,0.0000028327,0.0000028348,0.0000028412,0.0000028464, +0.0000028463,0.0000028413,0.0000028322,0.0000028233,0.0000028129, +0.0000028013,0.0000027930,0.0000027870,0.0000027797,0.0000027806, +0.0000027833,0.0000027847,0.0000027868,0.0000027923,0.0000028012, +0.0000028066,0.0000028080,0.0000028084,0.0000028159,0.0000028247, +0.0000028249,0.0000028240,0.0000028238,0.0000028158,0.0000028045, +0.0000027922,0.0000027853,0.0000027838,0.0000027846,0.0000027845, +0.0000027849,0.0000027854,0.0000027863,0.0000027870,0.0000027911, +0.0000027977,0.0000028033,0.0000028067,0.0000028056,0.0000028028, +0.0000028043,0.0000028052,0.0000028057,0.0000028035,0.0000028019, +0.0000028033,0.0000028073,0.0000028131,0.0000028204,0.0000028274, +0.0000028317,0.0000028347,0.0000028350,0.0000028336,0.0000028310, +0.0000028282,0.0000028291,0.0000028303,0.0000028300,0.0000028270, +0.0000028224,0.0000028172,0.0000028182,0.0000028226,0.0000028263, +0.0000028265,0.0000028235,0.0000028169,0.0000028107,0.0000028086, +0.0000028091,0.0000028086,0.0000028050,0.0000028014,0.0000028005, +0.0000028026,0.0000028119,0.0000028271,0.0000028406,0.0000028494, +0.0000028548,0.0000028586,0.0000028616,0.0000028641,0.0000028643, +0.0000028626,0.0000028608,0.0000028615,0.0000028655,0.0000028742, +0.0000028864,0.0000028969,0.0000029049,0.0000029063,0.0000029056, +0.0000029014,0.0000028934,0.0000028843,0.0000028713,0.0000028547, +0.0000028387,0.0000028256,0.0000028171,0.0000028165,0.0000028216, +0.0000028357,0.0000028588,0.0000028764,0.0000028834,0.0000028854, +0.0000028853,0.0000028795,0.0000028694,0.0000028598,0.0000028557, +0.0000028585,0.0000028652,0.0000028716,0.0000028755,0.0000028783, +0.0000028800,0.0000028776,0.0000028688,0.0000028589,0.0000028532, +0.0000028496,0.0000028497,0.0000028490,0.0000028448,0.0000028370, +0.0000028326,0.0000028355,0.0000028386,0.0000028395,0.0000028394, +0.0000028378,0.0000028356,0.0000028346,0.0000028355,0.0000028383, +0.0000028420,0.0000028460,0.0000028510,0.0000028572,0.0000028632, +0.0000028663,0.0000028651,0.0000028597,0.0000028551,0.0000028520, +0.0000028501,0.0000028501,0.0000028609,0.0000028688,0.0000028796, +0.0000028908,0.0000028994,0.0000029021,0.0000029001,0.0000028922, +0.0000028812,0.0000028725,0.0000028677,0.0000028650,0.0000028631, +0.0000028621,0.0000028635,0.0000028659,0.0000028675,0.0000028652, +0.0000028598,0.0000028572,0.0000028576,0.0000028569,0.0000028523, +0.0000028427,0.0000028278,0.0000028128,0.0000028076,0.0000028126, +0.0000028270,0.0000028394,0.0000028429,0.0000028396,0.0000028329, +0.0000028291,0.0000028301,0.0000028326,0.0000028321,0.0000028246, +0.0000028137,0.0000028078,0.0000028060,0.0000028037,0.0000027977, +0.0000027898,0.0000027889,0.0000028004,0.0000028184,0.0000028301, +0.0000028333,0.0000028330,0.0000028313,0.0000028280,0.0000028272, +0.0000028277,0.0000028252,0.0000028170,0.0000028125,0.0000028092, +0.0000028009,0.0000027859,0.0000027719,0.0000027669,0.0000027757, +0.0000027928,0.0000027996,0.0000027966,0.0000027927,0.0000027937, +0.0000027987,0.0000028058,0.0000028107,0.0000028056,0.0000027962, +0.0000027930,0.0000027950,0.0000027957,0.0000027861,0.0000027624, +0.0000027416,0.0000027316,0.0000027290,0.0000027287,0.0000027264, +0.0000027198,0.0000027160,0.0000027206,0.0000027336,0.0000027448, +0.0000027473,0.0000027425,0.0000027307,0.0000027210,0.0000027161, +0.0000027159,0.0000027187,0.0000027256,0.0000027345,0.0000027417, +0.0000027469,0.0000027482,0.0000027463,0.0000027420,0.0000027345, +0.0000027294,0.0000027315,0.0000027373,0.0000027401,0.0000027394, +0.0000027391,0.0000027443,0.0000027543,0.0000027655,0.0000027745, +0.0000027772,0.0000027735,0.0000027670,0.0000027670,0.0000027766, +0.0000027923,0.0000028113,0.0000028284,0.0000028364,0.0000028327, +0.0000028177,0.0000028054,0.0000028036,0.0000028050,0.0000028058, +0.0000028071,0.0000028070,0.0000027978,0.0000027802,0.0000027678, +0.0000027653,0.0000027656,0.0000027719,0.0000027896,0.0000028099, +0.0000028176,0.0000028122,0.0000028036,0.0000028044,0.0000028140, +0.0000028239,0.0000028374,0.0000028604,0.0000028852,0.0000028990, +0.0000029015,0.0000029036,0.0000029093,0.0000029107,0.0000029011, +0.0000028809,0.0000028599,0.0000028486,0.0000028488,0.0000028547, +0.0000028565,0.0000028500,0.0000028366,0.0000028246,0.0000028209, +0.0000028262,0.0000028376,0.0000028471,0.0000028490,0.0000028437, +0.0000028381,0.0000028392,0.0000028498,0.0000028634,0.0000028694, +0.0000028676,0.0000028593,0.0000028473,0.0000028358,0.0000028311, +0.0000028333,0.0000028427,0.0000028553,0.0000028691,0.0000028826, +0.0000028927,0.0000028964,0.0000028966,0.0000028950,0.0000028919, +0.0000028901,0.0000028925,0.0000028959,0.0000028961,0.0000028943, +0.0000028927,0.0000028915,0.0000028904,0.0000028869,0.0000028817, +0.0000028763,0.0000028700,0.0000028623,0.0000028548,0.0000028493, +0.0000028458,0.0000028418,0.0000028354,0.0000028278,0.0000028212, +0.0000028167,0.0000028130,0.0000028095,0.0000028066,0.0000028033, +0.0000028003,0.0000027983,0.0000027976,0.0000027960,0.0000027941, +0.0000027922,0.0000027901,0.0000027871,0.0000027847,0.0000027848, +0.0000027857,0.0000027856,0.0000027826,0.0000027778,0.0000027742, +0.0000027735,0.0000027756,0.0000027792,0.0000027817,0.0000027841, +0.0000027904,0.0000027992,0.0000028053,0.0000028008,0.0000027903, +0.0000027836,0.0000027862,0.0000027933,0.0000027967,0.0000027949, +0.0000027910,0.0000027862,0.0000027817,0.0000027768,0.0000027736, +0.0000027779,0.0000027878,0.0000027948,0.0000027957,0.0000027888, +0.0000027769,0.0000027685,0.0000027641,0.0000027662,0.0000027774, +0.0000027803,0.0000027755,0.0000027714,0.0000027726,0.0000027769, +0.0000027797,0.0000027841,0.0000027982,0.0000028141,0.0000028225, +0.0000028276,0.0000028308,0.0000028328,0.0000028375,0.0000028460, +0.0000028570,0.0000028680,0.0000028738,0.0000028739,0.0000028716, +0.0000028715,0.0000028747,0.0000028786,0.0000028816,0.0000028852, +0.0000028895,0.0000028923,0.0000028950,0.0000028996,0.0000029036, +0.0000029050,0.0000029010,0.0000028937,0.0000028837,0.0000028766, +0.0000028713,0.0000028678,0.0000028609,0.0000028505,0.0000028381, +0.0000028281,0.0000028233,0.0000028220,0.0000028217,0.0000028216, +0.0000028225,0.0000028239,0.0000028255,0.0000028268,0.0000028274, +0.0000028286,0.0000028291,0.0000028283,0.0000028250,0.0000028194, +0.0000028123,0.0000028049,0.0000027979,0.0000027923,0.0000027884, +0.0000027845,0.0000027835,0.0000027890,0.0000028037,0.0000028193, +0.0000028308,0.0000028402,0.0000028479,0.0000028515,0.0000028516, +0.0000028498,0.0000028489,0.0000028502,0.0000028505,0.0000028473, +0.0000028426,0.0000028338,0.0000028235,0.0000028147,0.0000028090, +0.0000028059,0.0000028050,0.0000028073,0.0000028127,0.0000028177, +0.0000028190,0.0000028152,0.0000028072,0.0000027977,0.0000027928, +0.0000027910,0.0000027833,0.0000027693,0.0000027595,0.0000027579, +0.0000027590,0.0000027613,0.0000027641,0.0000027660,0.0000027667, +0.0000027671,0.0000027674,0.0000027667,0.0000027640,0.0000027597, +0.0000027553,0.0000027506,0.0000027402,0.0000027251,0.0000027148, +0.0000027110,0.0000027060,0.0000026997,0.0000026949,0.0000026886, +0.0000026838,0.0000026876,0.0000026945,0.0000027012,0.0000027210, +0.0000027519,0.0000027654,0.0000027598,0.0000027517,0.0000027505, +0.0000027592,0.0000027747,0.0000027871,0.0000027918,0.0000027885, +0.0000027707,0.0000027503,0.0000027404,0.0000027438,0.0000027601, +0.0000027773,0.0000027788,0.0000027739,0.0000027767,0.0000027839, +0.0000027951,0.0000028018,0.0000028013,0.0000027964,0.0000027910, +0.0000027842,0.0000027850,0.0000027923,0.0000028070,0.0000028230, +0.0000028338,0.0000028408,0.0000028435,0.0000028450,0.0000028429, +0.0000028383,0.0000028364,0.0000028376,0.0000028407,0.0000028452, +0.0000028464,0.0000028412,0.0000028309,0.0000028140,0.0000028029, +0.0000027980,0.0000027917,0.0000027811,0.0000027719,0.0000027664, +0.0000027709,0.0000027742,0.0000027753,0.0000027781,0.0000027858, +0.0000027952,0.0000028005,0.0000028021,0.0000028032,0.0000028116, +0.0000028226,0.0000028260,0.0000028265,0.0000028278,0.0000028214, +0.0000028100,0.0000027974,0.0000027914,0.0000027889,0.0000027895, +0.0000027919,0.0000027944,0.0000027950,0.0000027931,0.0000027893, +0.0000027889,0.0000027952,0.0000028040,0.0000028116,0.0000028145, +0.0000028128,0.0000028112,0.0000028118,0.0000028128,0.0000028139, +0.0000028149,0.0000028173,0.0000028209,0.0000028236,0.0000028261, +0.0000028302,0.0000028336,0.0000028357,0.0000028375,0.0000028378, +0.0000028377,0.0000028345,0.0000028324,0.0000028336,0.0000028359, +0.0000028362,0.0000028341,0.0000028296,0.0000028281,0.0000028298, +0.0000028324,0.0000028336,0.0000028326,0.0000028271,0.0000028192, +0.0000028145,0.0000028153,0.0000028185,0.0000028189,0.0000028140, +0.0000028061,0.0000028022,0.0000027997,0.0000028025,0.0000028137, +0.0000028278,0.0000028387,0.0000028457,0.0000028512,0.0000028558, +0.0000028600,0.0000028630,0.0000028640,0.0000028631,0.0000028621, +0.0000028620,0.0000028663,0.0000028761,0.0000028886,0.0000029001, +0.0000029046,0.0000029050,0.0000029035,0.0000029005,0.0000028941, +0.0000028816,0.0000028640,0.0000028439,0.0000028279,0.0000028185, +0.0000028169,0.0000028195,0.0000028287,0.0000028479,0.0000028709, +0.0000028851,0.0000028898,0.0000028903,0.0000028859,0.0000028755, +0.0000028630,0.0000028548,0.0000028551,0.0000028596,0.0000028659, +0.0000028714,0.0000028748,0.0000028764,0.0000028750,0.0000028684, +0.0000028628,0.0000028608,0.0000028592,0.0000028594,0.0000028584, +0.0000028544,0.0000028468,0.0000028405,0.0000028407,0.0000028417, +0.0000028421,0.0000028411,0.0000028386,0.0000028349,0.0000028328, +0.0000028345,0.0000028381,0.0000028451,0.0000028544,0.0000028638, +0.0000028712,0.0000028758,0.0000028766,0.0000028734,0.0000028664, +0.0000028606,0.0000028578,0.0000028567,0.0000028571,0.0000028654, +0.0000028719,0.0000028814,0.0000028914,0.0000028996,0.0000029022, +0.0000029008,0.0000028944,0.0000028850,0.0000028762,0.0000028699, +0.0000028659,0.0000028630,0.0000028615,0.0000028615,0.0000028635, +0.0000028645,0.0000028612,0.0000028559,0.0000028537,0.0000028539, +0.0000028530,0.0000028486,0.0000028392,0.0000028244,0.0000028094, +0.0000028046,0.0000028108,0.0000028268,0.0000028404,0.0000028451, +0.0000028419,0.0000028345,0.0000028294,0.0000028294,0.0000028311, +0.0000028302,0.0000028230,0.0000028112,0.0000028042,0.0000028042, +0.0000028040,0.0000027979,0.0000027868,0.0000027839,0.0000027953, +0.0000028151,0.0000028285,0.0000028310,0.0000028300,0.0000028296, +0.0000028282,0.0000028292,0.0000028319,0.0000028303,0.0000028228, +0.0000028139,0.0000028119,0.0000028062,0.0000027945,0.0000027790, +0.0000027710,0.0000027721,0.0000027869,0.0000027998,0.0000028018, +0.0000027961,0.0000027941,0.0000028010,0.0000028083,0.0000028145, +0.0000028144,0.0000028027,0.0000027904,0.0000027870,0.0000027914, +0.0000027938,0.0000027848,0.0000027638,0.0000027460,0.0000027381, +0.0000027363,0.0000027339,0.0000027278,0.0000027222,0.0000027219, +0.0000027300,0.0000027434,0.0000027541,0.0000027560,0.0000027510, +0.0000027406,0.0000027320,0.0000027278,0.0000027283,0.0000027333, +0.0000027412,0.0000027496,0.0000027554,0.0000027580,0.0000027563, +0.0000027528,0.0000027458,0.0000027374,0.0000027339,0.0000027356, +0.0000027392,0.0000027405,0.0000027408,0.0000027429,0.0000027521, +0.0000027644,0.0000027739,0.0000027776,0.0000027754,0.0000027687, +0.0000027636,0.0000027658,0.0000027765,0.0000027914,0.0000028094, +0.0000028275,0.0000028374,0.0000028342,0.0000028193,0.0000028055, +0.0000028027,0.0000028042,0.0000028072,0.0000028102,0.0000028086, +0.0000027952,0.0000027769,0.0000027672,0.0000027660,0.0000027668, +0.0000027774,0.0000027987,0.0000028161,0.0000028174,0.0000028080, +0.0000028060,0.0000028147,0.0000028269,0.0000028384,0.0000028577, +0.0000028836,0.0000029021,0.0000029071,0.0000029078,0.0000029138, +0.0000029207,0.0000029179,0.0000029010,0.0000028760,0.0000028581, +0.0000028546,0.0000028609,0.0000028656,0.0000028610,0.0000028480, +0.0000028355,0.0000028302,0.0000028331,0.0000028434,0.0000028532, +0.0000028559,0.0000028523,0.0000028455,0.0000028430,0.0000028492, +0.0000028612,0.0000028690,0.0000028686,0.0000028619,0.0000028512, +0.0000028404,0.0000028334,0.0000028321,0.0000028369,0.0000028482, +0.0000028616,0.0000028737,0.0000028843,0.0000028923,0.0000028971, +0.0000028983,0.0000028977,0.0000028941,0.0000028908,0.0000028920, +0.0000028969,0.0000029005,0.0000029010,0.0000029001,0.0000028978, +0.0000028937,0.0000028888,0.0000028835,0.0000028785,0.0000028732, +0.0000028670,0.0000028602,0.0000028547,0.0000028513,0.0000028487, +0.0000028450,0.0000028398,0.0000028338,0.0000028279,0.0000028228, +0.0000028178,0.0000028129,0.0000028078,0.0000028032,0.0000027981, +0.0000027963,0.0000027951,0.0000027933,0.0000027909,0.0000027883, +0.0000027856,0.0000027826,0.0000027800,0.0000027792,0.0000027796, +0.0000027792,0.0000027762,0.0000027714,0.0000027678,0.0000027670, +0.0000027688,0.0000027732,0.0000027778,0.0000027810,0.0000027862, +0.0000027963,0.0000028079,0.0000028124,0.0000028043,0.0000027924, +0.0000027901,0.0000027956,0.0000028004,0.0000028011,0.0000027996, +0.0000027966,0.0000027929,0.0000027883,0.0000027839,0.0000027855, +0.0000027927,0.0000027982,0.0000027974,0.0000027888,0.0000027774, +0.0000027705,0.0000027679,0.0000027732,0.0000027836,0.0000027836, +0.0000027782,0.0000027745,0.0000027744,0.0000027760,0.0000027768, +0.0000027845,0.0000028029,0.0000028196,0.0000028286,0.0000028356, +0.0000028406,0.0000028446,0.0000028506,0.0000028585,0.0000028681, +0.0000028769,0.0000028816,0.0000028814,0.0000028785,0.0000028773, +0.0000028787,0.0000028807,0.0000028819,0.0000028829,0.0000028860, +0.0000028892,0.0000028915,0.0000028944,0.0000028996,0.0000029034, +0.0000029022,0.0000028950,0.0000028854,0.0000028763,0.0000028694, +0.0000028647,0.0000028583,0.0000028487,0.0000028379,0.0000028293, +0.0000028247,0.0000028225,0.0000028211,0.0000028207,0.0000028215, +0.0000028228,0.0000028241,0.0000028252,0.0000028258,0.0000028267, +0.0000028269,0.0000028265,0.0000028230,0.0000028166,0.0000028090, +0.0000028026,0.0000027974,0.0000027932,0.0000027913,0.0000027894, +0.0000027897,0.0000027957,0.0000028088,0.0000028230,0.0000028342, +0.0000028437,0.0000028517,0.0000028554,0.0000028553,0.0000028524, +0.0000028496,0.0000028487,0.0000028480,0.0000028437,0.0000028377, +0.0000028288,0.0000028187,0.0000028108,0.0000028066,0.0000028039, +0.0000028009,0.0000028000,0.0000028026,0.0000028073,0.0000028124, +0.0000028148,0.0000028113,0.0000028019,0.0000027922,0.0000027873, +0.0000027801,0.0000027671,0.0000027572,0.0000027557,0.0000027571, +0.0000027602,0.0000027646,0.0000027676,0.0000027689,0.0000027693, +0.0000027702,0.0000027704,0.0000027686,0.0000027635,0.0000027572, +0.0000027496,0.0000027385,0.0000027251,0.0000027155,0.0000027120, +0.0000027082,0.0000027017,0.0000026958,0.0000026896,0.0000026847, +0.0000026864,0.0000026922,0.0000026967,0.0000027121,0.0000027432, +0.0000027622,0.0000027592,0.0000027514,0.0000027501,0.0000027574, +0.0000027722,0.0000027853,0.0000027926,0.0000027900,0.0000027719, +0.0000027515,0.0000027442,0.0000027488,0.0000027665,0.0000027819, +0.0000027829,0.0000027800,0.0000027806,0.0000027833,0.0000027886, +0.0000027933,0.0000027936,0.0000027927,0.0000027878,0.0000027828, +0.0000027815,0.0000027886,0.0000028016,0.0000028172,0.0000028282, +0.0000028354,0.0000028408,0.0000028416,0.0000028417,0.0000028380, +0.0000028361,0.0000028352,0.0000028360,0.0000028352,0.0000028340, +0.0000028305,0.0000028232,0.0000028123,0.0000027980,0.0000027899, +0.0000027847,0.0000027775,0.0000027692,0.0000027637,0.0000027604, +0.0000027623,0.0000027653,0.0000027686,0.0000027721,0.0000027808, +0.0000027892,0.0000027930,0.0000027933,0.0000027958,0.0000028048, +0.0000028184,0.0000028265,0.0000028272,0.0000028288,0.0000028240, +0.0000028133,0.0000028017,0.0000027980,0.0000027956,0.0000027975, +0.0000028028,0.0000028082,0.0000028109,0.0000028090,0.0000028026, +0.0000027966,0.0000027975,0.0000028052,0.0000028145,0.0000028204, +0.0000028217,0.0000028203,0.0000028212,0.0000028223,0.0000028243, +0.0000028251,0.0000028260,0.0000028281,0.0000028293,0.0000028297, +0.0000028322,0.0000028365,0.0000028412,0.0000028453,0.0000028479, +0.0000028494,0.0000028489,0.0000028454,0.0000028453,0.0000028466, +0.0000028464,0.0000028440,0.0000028393,0.0000028366,0.0000028388, +0.0000028406,0.0000028413,0.0000028403,0.0000028382,0.0000028315, +0.0000028234,0.0000028204,0.0000028235,0.0000028288,0.0000028291, +0.0000028228,0.0000028117,0.0000028033,0.0000027998,0.0000028005, +0.0000028074,0.0000028183,0.0000028290,0.0000028381,0.0000028448, +0.0000028491,0.0000028521,0.0000028554,0.0000028594,0.0000028629, +0.0000028660,0.0000028678,0.0000028693,0.0000028731,0.0000028781, +0.0000028884,0.0000028957,0.0000028994,0.0000029007,0.0000029014, +0.0000029001,0.0000028930,0.0000028787,0.0000028574,0.0000028352, +0.0000028203,0.0000028168,0.0000028177,0.0000028236,0.0000028369, +0.0000028581,0.0000028785,0.0000028899,0.0000028913,0.0000028886, +0.0000028806,0.0000028696,0.0000028599,0.0000028572,0.0000028597, +0.0000028636,0.0000028682,0.0000028715,0.0000028743,0.0000028755, +0.0000028735,0.0000028703,0.0000028678,0.0000028650,0.0000028654, +0.0000028660,0.0000028639,0.0000028563,0.0000028476,0.0000028446, +0.0000028440,0.0000028442,0.0000028423,0.0000028393,0.0000028347, +0.0000028331,0.0000028355,0.0000028411,0.0000028512,0.0000028644, +0.0000028766,0.0000028843,0.0000028868,0.0000028855,0.0000028805, +0.0000028735,0.0000028675,0.0000028643,0.0000028627,0.0000028627, +0.0000028683,0.0000028732,0.0000028817,0.0000028909,0.0000028976, +0.0000028997,0.0000028985,0.0000028935,0.0000028860,0.0000028777, +0.0000028705,0.0000028646,0.0000028604,0.0000028585,0.0000028582, +0.0000028586,0.0000028579,0.0000028529,0.0000028475,0.0000028457, +0.0000028461,0.0000028462,0.0000028436,0.0000028357,0.0000028216, +0.0000028072,0.0000028024,0.0000028094,0.0000028262,0.0000028409, +0.0000028469,0.0000028437,0.0000028355,0.0000028291,0.0000028277, +0.0000028278,0.0000028255,0.0000028193,0.0000028088,0.0000028014, +0.0000028029,0.0000028047,0.0000027990,0.0000027865,0.0000027802, +0.0000027893,0.0000028089,0.0000028240,0.0000028270,0.0000028260, +0.0000028258,0.0000028268,0.0000028288,0.0000028323,0.0000028321, +0.0000028255,0.0000028136,0.0000028112,0.0000028094,0.0000028022, +0.0000027898,0.0000027799,0.0000027769,0.0000027852,0.0000027980, +0.0000028046,0.0000028035,0.0000027976,0.0000027999,0.0000028114, +0.0000028173,0.0000028189,0.0000028126,0.0000027977,0.0000027842, +0.0000027811,0.0000027886,0.0000027930,0.0000027862,0.0000027686, +0.0000027529,0.0000027459,0.0000027432,0.0000027378,0.0000027317, +0.0000027296,0.0000027321,0.0000027410,0.0000027535,0.0000027626, +0.0000027642,0.0000027601,0.0000027517,0.0000027442,0.0000027414, +0.0000027437,0.0000027505,0.0000027598,0.0000027673,0.0000027712, +0.0000027707,0.0000027667,0.0000027600,0.0000027499,0.0000027400, +0.0000027352,0.0000027350,0.0000027363,0.0000027379,0.0000027406, +0.0000027472,0.0000027591,0.0000027724,0.0000027796,0.0000027782, +0.0000027706,0.0000027627,0.0000027601,0.0000027662,0.0000027783, +0.0000027906,0.0000028070,0.0000028263,0.0000028376,0.0000028361, +0.0000028220,0.0000028054,0.0000028007,0.0000028026,0.0000028083, +0.0000028135,0.0000028099,0.0000027933,0.0000027749,0.0000027678, +0.0000027677,0.0000027707,0.0000027850,0.0000028063,0.0000028180, +0.0000028143,0.0000028078,0.0000028140,0.0000028289,0.0000028415, +0.0000028556,0.0000028786,0.0000029019,0.0000029120,0.0000029118, +0.0000029145,0.0000029237,0.0000029280,0.0000029208,0.0000028989, +0.0000028751,0.0000028639,0.0000028657,0.0000028732,0.0000028733, +0.0000028623,0.0000028480,0.0000028390,0.0000028392,0.0000028480, +0.0000028583,0.0000028630,0.0000028614,0.0000028550,0.0000028492, +0.0000028502,0.0000028592,0.0000028683,0.0000028704,0.0000028662, +0.0000028568,0.0000028457,0.0000028368,0.0000028322,0.0000028335, +0.0000028421,0.0000028565,0.0000028701,0.0000028799,0.0000028866, +0.0000028921,0.0000028964,0.0000028980,0.0000028979,0.0000028950, +0.0000028911,0.0000028908,0.0000028952,0.0000029004,0.0000029033, +0.0000029024,0.0000029001,0.0000028943,0.0000028873,0.0000028807, +0.0000028758,0.0000028720,0.0000028675,0.0000028619,0.0000028566, +0.0000028528,0.0000028498,0.0000028469,0.0000028435,0.0000028395, +0.0000028352,0.0000028304,0.0000028254,0.0000028209,0.0000028172, +0.0000028122,0.0000028072,0.0000028034,0.0000028007,0.0000027989, +0.0000027965,0.0000027930,0.0000027887,0.0000027852,0.0000027814, +0.0000027779,0.0000027761,0.0000027743,0.0000027723,0.0000027690, +0.0000027654,0.0000027636,0.0000027638,0.0000027663,0.0000027708, +0.0000027761,0.0000027800,0.0000027840,0.0000027927,0.0000028068, +0.0000028170,0.0000028155,0.0000028044,0.0000027969,0.0000027984, +0.0000028024,0.0000028048,0.0000028055,0.0000028051,0.0000028032, +0.0000027995,0.0000027944,0.0000027929,0.0000027979,0.0000028015, +0.0000027990,0.0000027892,0.0000027783,0.0000027729,0.0000027715, +0.0000027796,0.0000027882,0.0000027865,0.0000027820,0.0000027782, +0.0000027758,0.0000027751,0.0000027760,0.0000027872,0.0000028086, +0.0000028246,0.0000028350,0.0000028434,0.0000028496,0.0000028541, +0.0000028593,0.0000028646,0.0000028709,0.0000028779,0.0000028816, +0.0000028814,0.0000028791,0.0000028782,0.0000028793,0.0000028810, +0.0000028814,0.0000028804,0.0000028810,0.0000028840,0.0000028880, +0.0000028900,0.0000028948,0.0000029010,0.0000029023,0.0000028958, +0.0000028867,0.0000028754,0.0000028676,0.0000028617,0.0000028570, +0.0000028488,0.0000028408,0.0000028354,0.0000028321,0.0000028296, +0.0000028278,0.0000028271,0.0000028274,0.0000028278,0.0000028284, +0.0000028291,0.0000028288,0.0000028281,0.0000028275,0.0000028267, +0.0000028236,0.0000028173,0.0000028111,0.0000028063,0.0000028031, +0.0000028012,0.0000028005,0.0000027996,0.0000028007,0.0000028058, +0.0000028149,0.0000028258,0.0000028356,0.0000028444,0.0000028517, +0.0000028562,0.0000028566,0.0000028542,0.0000028511,0.0000028495, +0.0000028481,0.0000028430,0.0000028344,0.0000028238,0.0000028144, +0.0000028084,0.0000028059,0.0000028042,0.0000028005,0.0000027973, +0.0000027980,0.0000028001,0.0000028024,0.0000028064,0.0000028094, +0.0000028056,0.0000027950,0.0000027856,0.0000027779,0.0000027662, +0.0000027566,0.0000027547,0.0000027564,0.0000027608,0.0000027662, +0.0000027697,0.0000027706,0.0000027709,0.0000027715,0.0000027719, +0.0000027712,0.0000027669,0.0000027587,0.0000027481,0.0000027356, +0.0000027240,0.0000027170,0.0000027142,0.0000027115,0.0000027052, +0.0000026973,0.0000026907,0.0000026863,0.0000026857,0.0000026897, +0.0000026931,0.0000027049,0.0000027344,0.0000027578,0.0000027586, +0.0000027513,0.0000027501,0.0000027568,0.0000027688,0.0000027812, +0.0000027914,0.0000027917,0.0000027760,0.0000027556,0.0000027497, +0.0000027558,0.0000027734,0.0000027845,0.0000027854,0.0000027845, +0.0000027841,0.0000027838,0.0000027838,0.0000027849,0.0000027852, +0.0000027842,0.0000027844,0.0000027824,0.0000027828,0.0000027878, +0.0000027991,0.0000028119,0.0000028245,0.0000028332,0.0000028380, +0.0000028409,0.0000028390,0.0000028344,0.0000028260,0.0000028197, +0.0000028170,0.0000028153,0.0000028145,0.0000028144,0.0000028122, +0.0000028070,0.0000027976,0.0000027851,0.0000027744,0.0000027681, +0.0000027660,0.0000027665,0.0000027632,0.0000027604,0.0000027590, +0.0000027614,0.0000027639,0.0000027686,0.0000027778,0.0000027860, +0.0000027886,0.0000027882,0.0000027913,0.0000027995,0.0000028141, +0.0000028251,0.0000028271,0.0000028284,0.0000028258,0.0000028152, +0.0000028047,0.0000028025,0.0000028023,0.0000028057,0.0000028113, +0.0000028153,0.0000028177,0.0000028179,0.0000028135,0.0000028068, +0.0000028062,0.0000028128,0.0000028219,0.0000028308,0.0000028351, +0.0000028338,0.0000028308,0.0000028283,0.0000028278,0.0000028294, +0.0000028322,0.0000028365,0.0000028403,0.0000028421,0.0000028431, +0.0000028453,0.0000028476,0.0000028499,0.0000028507,0.0000028504, +0.0000028507,0.0000028489,0.0000028486,0.0000028522,0.0000028558, +0.0000028556,0.0000028525,0.0000028489,0.0000028473,0.0000028474, +0.0000028472,0.0000028460,0.0000028440,0.0000028408,0.0000028340, +0.0000028271,0.0000028254,0.0000028298,0.0000028362,0.0000028365, +0.0000028294,0.0000028167,0.0000028068,0.0000028031,0.0000028034, +0.0000028068,0.0000028134,0.0000028221,0.0000028320,0.0000028396, +0.0000028446,0.0000028479,0.0000028515,0.0000028562,0.0000028614, +0.0000028672,0.0000028718,0.0000028740,0.0000028757,0.0000028758, +0.0000028792,0.0000028829,0.0000028876,0.0000028912,0.0000028959, +0.0000028994,0.0000028977,0.0000028921,0.0000028773,0.0000028533, +0.0000028292,0.0000028166,0.0000028153,0.0000028191,0.0000028282, +0.0000028441,0.0000028635,0.0000028820,0.0000028884,0.0000028871, +0.0000028798,0.0000028708,0.0000028647,0.0000028637,0.0000028659, +0.0000028681,0.0000028713,0.0000028748,0.0000028781,0.0000028809, +0.0000028796,0.0000028748,0.0000028701,0.0000028660,0.0000028671, +0.0000028689,0.0000028692,0.0000028636,0.0000028539,0.0000028486, +0.0000028465,0.0000028460,0.0000028437,0.0000028407,0.0000028361, +0.0000028355,0.0000028393,0.0000028465,0.0000028574,0.0000028712, +0.0000028838,0.0000028915,0.0000028927,0.0000028903,0.0000028857, +0.0000028805,0.0000028758,0.0000028720,0.0000028691,0.0000028674, +0.0000028686,0.0000028726,0.0000028803,0.0000028882,0.0000028937, +0.0000028959,0.0000028950,0.0000028914,0.0000028856,0.0000028780, +0.0000028695,0.0000028618,0.0000028561,0.0000028534,0.0000028529, +0.0000028518,0.0000028479,0.0000028410,0.0000028358,0.0000028357, +0.0000028381,0.0000028401,0.0000028398,0.0000028335,0.0000028205, +0.0000028067,0.0000028021,0.0000028096,0.0000028265,0.0000028411, +0.0000028467,0.0000028435,0.0000028345,0.0000028269,0.0000028238, +0.0000028222,0.0000028194,0.0000028149,0.0000028067,0.0000027998, +0.0000028019,0.0000028057,0.0000027999,0.0000027863,0.0000027793, +0.0000027838,0.0000028012,0.0000028170,0.0000028217,0.0000028208, +0.0000028205,0.0000028236,0.0000028265,0.0000028305,0.0000028315, +0.0000028263,0.0000028142,0.0000028091,0.0000028111,0.0000028090, +0.0000028007,0.0000027904,0.0000027855,0.0000027883,0.0000027986, +0.0000028056,0.0000028066,0.0000028045,0.0000028016,0.0000028088, +0.0000028212,0.0000028251,0.0000028200,0.0000028087,0.0000027914, +0.0000027763,0.0000027763,0.0000027882,0.0000027953,0.0000027895, +0.0000027743,0.0000027602,0.0000027543,0.0000027505,0.0000027441, +0.0000027389,0.0000027381,0.0000027422,0.0000027512,0.0000027615, +0.0000027686,0.0000027705,0.0000027677,0.0000027616,0.0000027573, +0.0000027583,0.0000027633,0.0000027711,0.0000027790,0.0000027835, +0.0000027836,0.0000027801,0.0000027749,0.0000027665,0.0000027557, +0.0000027453,0.0000027382,0.0000027350,0.0000027344,0.0000027361, +0.0000027418,0.0000027517,0.0000027644,0.0000027761,0.0000027802, +0.0000027762,0.0000027652,0.0000027572,0.0000027576,0.0000027676, +0.0000027801,0.0000027904,0.0000028053,0.0000028254,0.0000028386, +0.0000028390,0.0000028253,0.0000028056,0.0000027978,0.0000028002, +0.0000028088,0.0000028157,0.0000028105,0.0000027921,0.0000027742, +0.0000027690,0.0000027696,0.0000027759,0.0000027930,0.0000028131, +0.0000028191,0.0000028141,0.0000028135,0.0000028271,0.0000028438, +0.0000028562,0.0000028724,0.0000028962,0.0000029146,0.0000029186, +0.0000029173,0.0000029222,0.0000029316,0.0000029336,0.0000029210, +0.0000028985,0.0000028790,0.0000028729,0.0000028772,0.0000028806, +0.0000028769,0.0000028639,0.0000028521,0.0000028481,0.0000028521, +0.0000028619,0.0000028691,0.0000028696,0.0000028641,0.0000028573, +0.0000028547,0.0000028582,0.0000028657,0.0000028709,0.0000028700, +0.0000028637,0.0000028535,0.0000028431,0.0000028352,0.0000028326, +0.0000028364,0.0000028494,0.0000028658,0.0000028779,0.0000028843, +0.0000028873,0.0000028903,0.0000028927,0.0000028945,0.0000028950, +0.0000028936,0.0000028907,0.0000028897,0.0000028923,0.0000028976, +0.0000029010,0.0000029007,0.0000028963,0.0000028890,0.0000028808, +0.0000028728,0.0000028686,0.0000028660,0.0000028621,0.0000028578, +0.0000028527,0.0000028479,0.0000028442,0.0000028412,0.0000028384, +0.0000028352,0.0000028319,0.0000028288,0.0000028256,0.0000028220, +0.0000028188,0.0000028151,0.0000028110,0.0000028080,0.0000028046, +0.0000028024,0.0000028016,0.0000028003,0.0000027969,0.0000027927, +0.0000027881,0.0000027833,0.0000027787,0.0000027753,0.0000027715, +0.0000027675,0.0000027629,0.0000027600,0.0000027601,0.0000027634, +0.0000027676,0.0000027719,0.0000027769,0.0000027808,0.0000027843, +0.0000027905,0.0000028026,0.0000028162,0.0000028215,0.0000028154, +0.0000028057,0.0000028026,0.0000028047,0.0000028071,0.0000028092, +0.0000028116,0.0000028124,0.0000028106,0.0000028047,0.0000028000, +0.0000028023,0.0000028044,0.0000028010,0.0000027903,0.0000027795, +0.0000027752,0.0000027755,0.0000027850,0.0000027912,0.0000027893, +0.0000027865,0.0000027822,0.0000027769,0.0000027749,0.0000027770, +0.0000027923,0.0000028134,0.0000028283,0.0000028395,0.0000028485, +0.0000028548,0.0000028589,0.0000028626,0.0000028657,0.0000028697, +0.0000028744,0.0000028773,0.0000028771,0.0000028753,0.0000028743, +0.0000028751,0.0000028779,0.0000028794,0.0000028773,0.0000028754, +0.0000028772,0.0000028827,0.0000028855,0.0000028893,0.0000028976, +0.0000029008,0.0000028973,0.0000028879,0.0000028770,0.0000028685, +0.0000028627,0.0000028592,0.0000028544,0.0000028501,0.0000028477, +0.0000028460,0.0000028438,0.0000028420,0.0000028407,0.0000028394, +0.0000028386,0.0000028386,0.0000028382,0.0000028359,0.0000028330, +0.0000028312,0.0000028297,0.0000028270,0.0000028239,0.0000028212, +0.0000028190,0.0000028172,0.0000028149,0.0000028129,0.0000028112, +0.0000028120,0.0000028151,0.0000028200,0.0000028269,0.0000028348, +0.0000028428,0.0000028498,0.0000028553,0.0000028573,0.0000028565, +0.0000028543,0.0000028524,0.0000028496,0.0000028438,0.0000028326, +0.0000028191,0.0000028094,0.0000028055,0.0000028050,0.0000028044, +0.0000028007,0.0000027961,0.0000027955,0.0000027979,0.0000027980, +0.0000027967,0.0000028006,0.0000028055,0.0000028006,0.0000027883, +0.0000027771,0.0000027660,0.0000027565,0.0000027538,0.0000027550, +0.0000027598,0.0000027668,0.0000027716,0.0000027724,0.0000027719, +0.0000027717,0.0000027722,0.0000027721,0.0000027703,0.0000027626, +0.0000027497,0.0000027351,0.0000027239,0.0000027197,0.0000027181, +0.0000027164,0.0000027104,0.0000027008,0.0000026925,0.0000026884, +0.0000026865,0.0000026873,0.0000026899,0.0000027000,0.0000027267, +0.0000027527,0.0000027568,0.0000027511,0.0000027503,0.0000027567, +0.0000027663,0.0000027751,0.0000027875,0.0000027912,0.0000027808, +0.0000027616,0.0000027558,0.0000027626,0.0000027785,0.0000027890, +0.0000027889,0.0000027884,0.0000027863,0.0000027850,0.0000027818, +0.0000027785,0.0000027764,0.0000027747,0.0000027747,0.0000027772, +0.0000027826,0.0000027901,0.0000027985,0.0000028082,0.0000028199, +0.0000028296,0.0000028359,0.0000028383,0.0000028333,0.0000028205, +0.0000028049,0.0000027938,0.0000027929,0.0000027965,0.0000028001, +0.0000028001,0.0000027996,0.0000027978,0.0000027920,0.0000027839, +0.0000027743,0.0000027674,0.0000027638,0.0000027655,0.0000027703, +0.0000027698,0.0000027665,0.0000027612,0.0000027587,0.0000027599, +0.0000027664,0.0000027766,0.0000027849,0.0000027873,0.0000027869, +0.0000027887,0.0000027957,0.0000028099,0.0000028227,0.0000028276, +0.0000028294,0.0000028269,0.0000028162,0.0000028066,0.0000028043, +0.0000028064,0.0000028119,0.0000028167,0.0000028176,0.0000028176, +0.0000028216,0.0000028255,0.0000028238,0.0000028234,0.0000028287, +0.0000028347,0.0000028408,0.0000028439,0.0000028416,0.0000028357, +0.0000028334,0.0000028345,0.0000028396,0.0000028446,0.0000028482, +0.0000028505,0.0000028510,0.0000028489,0.0000028475,0.0000028469, +0.0000028465,0.0000028466,0.0000028450,0.0000028437,0.0000028416, +0.0000028407,0.0000028427,0.0000028476,0.0000028517,0.0000028533, +0.0000028551,0.0000028562,0.0000028563,0.0000028543,0.0000028521, +0.0000028491,0.0000028458,0.0000028417,0.0000028362,0.0000028301, +0.0000028282,0.0000028320,0.0000028377,0.0000028377,0.0000028321, +0.0000028212,0.0000028119,0.0000028074,0.0000028068,0.0000028083, +0.0000028122,0.0000028190,0.0000028272,0.0000028347,0.0000028406, +0.0000028456,0.0000028518,0.0000028579,0.0000028635,0.0000028701, +0.0000028746,0.0000028765,0.0000028764,0.0000028759,0.0000028771, +0.0000028764,0.0000028765,0.0000028786,0.0000028840,0.0000028900, +0.0000028933,0.0000028939,0.0000028885,0.0000028756,0.0000028514, +0.0000028285,0.0000028150,0.0000028148,0.0000028202,0.0000028326, +0.0000028474,0.0000028658,0.0000028779,0.0000028815,0.0000028765, +0.0000028676,0.0000028631,0.0000028642,0.0000028693,0.0000028734, +0.0000028765,0.0000028794,0.0000028818,0.0000028834,0.0000028810, +0.0000028753,0.0000028696,0.0000028648,0.0000028655,0.0000028682, +0.0000028695,0.0000028667,0.0000028586,0.0000028521,0.0000028488, +0.0000028472,0.0000028452,0.0000028430,0.0000028395,0.0000028392, +0.0000028435,0.0000028508,0.0000028601,0.0000028727,0.0000028847, +0.0000028926,0.0000028939,0.0000028921,0.0000028893,0.0000028863, +0.0000028829,0.0000028787,0.0000028741,0.0000028691,0.0000028661, +0.0000028695,0.0000028767,0.0000028831,0.0000028875,0.0000028898, +0.0000028897,0.0000028871,0.0000028822,0.0000028745,0.0000028652, +0.0000028565,0.0000028505,0.0000028481,0.0000028475,0.0000028449, +0.0000028385,0.0000028308,0.0000028268,0.0000028292,0.0000028343, +0.0000028375,0.0000028375,0.0000028318,0.0000028196,0.0000028073, +0.0000028036,0.0000028119,0.0000028269,0.0000028396,0.0000028440, +0.0000028404,0.0000028310,0.0000028234,0.0000028207,0.0000028193, +0.0000028166,0.0000028131,0.0000028071,0.0000028011,0.0000028033, +0.0000028067,0.0000028000,0.0000027862,0.0000027784,0.0000027798, +0.0000027928,0.0000028079,0.0000028151,0.0000028152,0.0000028153, +0.0000028197,0.0000028254,0.0000028282,0.0000028292,0.0000028248, +0.0000028147,0.0000028074,0.0000028123,0.0000028145,0.0000028115, +0.0000028031,0.0000027964,0.0000027946,0.0000028013,0.0000028076, +0.0000028086,0.0000028075,0.0000028071,0.0000028096,0.0000028184, +0.0000028280,0.0000028276,0.0000028166,0.0000028015,0.0000027821, +0.0000027698,0.0000027758,0.0000027919,0.0000027985,0.0000027933, +0.0000027807,0.0000027701,0.0000027657,0.0000027610,0.0000027533, +0.0000027484,0.0000027486,0.0000027531,0.0000027599,0.0000027670, +0.0000027724,0.0000027742,0.0000027728,0.0000027690,0.0000027675, +0.0000027695,0.0000027741,0.0000027803,0.0000027861,0.0000027890, +0.0000027888,0.0000027864,0.0000027830,0.0000027769,0.0000027680, +0.0000027573,0.0000027478,0.0000027404,0.0000027359,0.0000027369, +0.0000027441,0.0000027550,0.0000027671,0.0000027765,0.0000027790, +0.0000027726,0.0000027616,0.0000027546,0.0000027563,0.0000027676, +0.0000027810,0.0000027916,0.0000028054,0.0000028253,0.0000028403, +0.0000028425,0.0000028282,0.0000028058,0.0000027949,0.0000027977, +0.0000028084,0.0000028171,0.0000028118,0.0000027918,0.0000027741, +0.0000027704,0.0000027725,0.0000027825,0.0000028024,0.0000028201, +0.0000028228,0.0000028187,0.0000028237,0.0000028409,0.0000028573, +0.0000028695,0.0000028868,0.0000029098,0.0000029242,0.0000029252, +0.0000029243,0.0000029300,0.0000029371,0.0000029349,0.0000029209, +0.0000029010,0.0000028866,0.0000028837,0.0000028862,0.0000028861, +0.0000028794,0.0000028676,0.0000028586,0.0000028574,0.0000028636, +0.0000028722,0.0000028751,0.0000028732,0.0000028662,0.0000028606, +0.0000028604,0.0000028645,0.0000028698,0.0000028717,0.0000028689, +0.0000028609,0.0000028503,0.0000028408,0.0000028345,0.0000028331, +0.0000028401,0.0000028558,0.0000028719,0.0000028816,0.0000028852, +0.0000028862,0.0000028863,0.0000028869,0.0000028886,0.0000028903, +0.0000028906,0.0000028894,0.0000028882,0.0000028886,0.0000028912, +0.0000028930,0.0000028918,0.0000028862,0.0000028776,0.0000028693, +0.0000028623,0.0000028582,0.0000028570,0.0000028544,0.0000028495, +0.0000028451,0.0000028408,0.0000028370,0.0000028340,0.0000028315, +0.0000028304,0.0000028288,0.0000028274,0.0000028262,0.0000028245, +0.0000028219,0.0000028193,0.0000028154,0.0000028124,0.0000028087, +0.0000028042,0.0000028013,0.0000028004,0.0000027995,0.0000027980, +0.0000027951,0.0000027909,0.0000027861,0.0000027818,0.0000027776, +0.0000027721,0.0000027657,0.0000027597,0.0000027570,0.0000027583, +0.0000027648,0.0000027712,0.0000027755,0.0000027792,0.0000027824, +0.0000027853,0.0000027900,0.0000027991,0.0000028127,0.0000028224, +0.0000028223,0.0000028143,0.0000028084,0.0000028082,0.0000028097, +0.0000028122,0.0000028164,0.0000028203,0.0000028206,0.0000028143, +0.0000028061,0.0000028056,0.0000028068,0.0000028033,0.0000027922, +0.0000027811,0.0000027774,0.0000027797,0.0000027888,0.0000027929, +0.0000027920,0.0000027908,0.0000027861,0.0000027784,0.0000027758, +0.0000027808,0.0000027980,0.0000028169,0.0000028299,0.0000028402, +0.0000028493,0.0000028557,0.0000028598,0.0000028626,0.0000028645, +0.0000028671,0.0000028706,0.0000028733,0.0000028740,0.0000028731, +0.0000028707,0.0000028689,0.0000028711,0.0000028740,0.0000028731, +0.0000028710,0.0000028712,0.0000028762,0.0000028804,0.0000028832, +0.0000028921,0.0000028985,0.0000028980,0.0000028906,0.0000028820, +0.0000028738,0.0000028699,0.0000028674,0.0000028653,0.0000028634, +0.0000028623,0.0000028612,0.0000028596,0.0000028583,0.0000028569, +0.0000028549,0.0000028538,0.0000028533,0.0000028515,0.0000028476, +0.0000028436,0.0000028413,0.0000028402,0.0000028393,0.0000028390, +0.0000028384,0.0000028360,0.0000028329,0.0000028281,0.0000028237, +0.0000028206,0.0000028205,0.0000028214,0.0000028234,0.0000028275, +0.0000028342,0.0000028416,0.0000028487,0.0000028551,0.0000028592, +0.0000028604,0.0000028595,0.0000028567,0.0000028511,0.0000028436, +0.0000028308,0.0000028158,0.0000028056,0.0000028030,0.0000028041, +0.0000028045,0.0000028016,0.0000027960,0.0000027936,0.0000027959, +0.0000027979,0.0000027940,0.0000027909,0.0000027985,0.0000028038, +0.0000027956,0.0000027804,0.0000027669,0.0000027567,0.0000027516, +0.0000027520,0.0000027564,0.0000027647,0.0000027723,0.0000027751, +0.0000027747,0.0000027731,0.0000027731,0.0000027744,0.0000027745, +0.0000027701,0.0000027574,0.0000027412,0.0000027269,0.0000027215, +0.0000027222,0.0000027222,0.0000027169,0.0000027058,0.0000026956, +0.0000026907,0.0000026887,0.0000026869,0.0000026872,0.0000026960, +0.0000027214,0.0000027471,0.0000027531,0.0000027496,0.0000027503, +0.0000027568,0.0000027653,0.0000027697,0.0000027808,0.0000027902, +0.0000027847,0.0000027685,0.0000027612,0.0000027684,0.0000027820, +0.0000027925,0.0000027939,0.0000027932,0.0000027908,0.0000027865, +0.0000027824,0.0000027753,0.0000027698,0.0000027660,0.0000027654, +0.0000027696,0.0000027782,0.0000027878,0.0000027967,0.0000028035, +0.0000028133,0.0000028243,0.0000028283,0.0000028246,0.0000028151, +0.0000028020,0.0000027863,0.0000027742,0.0000027712,0.0000027775, +0.0000027854,0.0000027931,0.0000027931,0.0000027910,0.0000027899, +0.0000027858,0.0000027823,0.0000027756,0.0000027707,0.0000027680, +0.0000027705,0.0000027749,0.0000027749,0.0000027711,0.0000027654, +0.0000027602,0.0000027601,0.0000027655,0.0000027760,0.0000027849, +0.0000027881,0.0000027872,0.0000027871,0.0000027919,0.0000028043, +0.0000028189,0.0000028268,0.0000028293,0.0000028277,0.0000028175, +0.0000028066,0.0000028025,0.0000028075,0.0000028163,0.0000028221, +0.0000028221,0.0000028191,0.0000028217,0.0000028309,0.0000028360, +0.0000028358,0.0000028374,0.0000028402,0.0000028438,0.0000028477, +0.0000028485,0.0000028464,0.0000028459,0.0000028468,0.0000028507, +0.0000028539,0.0000028553,0.0000028553,0.0000028539,0.0000028499, +0.0000028470,0.0000028445,0.0000028430,0.0000028435,0.0000028437, +0.0000028413,0.0000028371,0.0000028347,0.0000028356,0.0000028384, +0.0000028413,0.0000028417,0.0000028449,0.0000028505,0.0000028556, +0.0000028580,0.0000028575,0.0000028559,0.0000028533,0.0000028493, +0.0000028452,0.0000028400,0.0000028326,0.0000028281,0.0000028297, +0.0000028345,0.0000028354,0.0000028319,0.0000028239,0.0000028161, +0.0000028114,0.0000028099,0.0000028100,0.0000028123,0.0000028178, +0.0000028242,0.0000028311,0.0000028380,0.0000028456,0.0000028548, +0.0000028633,0.0000028701,0.0000028764,0.0000028799,0.0000028805, +0.0000028781,0.0000028756,0.0000028763,0.0000028751,0.0000028721, +0.0000028701,0.0000028715,0.0000028744,0.0000028780,0.0000028824, +0.0000028842,0.0000028815,0.0000028726,0.0000028559,0.0000028314, +0.0000028167,0.0000028140,0.0000028214,0.0000028339,0.0000028487, +0.0000028600,0.0000028677,0.0000028672,0.0000028613,0.0000028573, +0.0000028589,0.0000028656,0.0000028719,0.0000028755,0.0000028794, +0.0000028816,0.0000028824,0.0000028800,0.0000028744,0.0000028685, +0.0000028631,0.0000028625,0.0000028645,0.0000028674,0.0000028664, +0.0000028613,0.0000028551,0.0000028506,0.0000028476,0.0000028460, +0.0000028446,0.0000028424,0.0000028425,0.0000028461,0.0000028520, +0.0000028599,0.0000028701,0.0000028814,0.0000028898,0.0000028925, +0.0000028919,0.0000028911,0.0000028895,0.0000028868,0.0000028821, +0.0000028751,0.0000028679,0.0000028604,0.0000028638,0.0000028703, +0.0000028754,0.0000028792,0.0000028815,0.0000028816,0.0000028796, +0.0000028751,0.0000028675,0.0000028582,0.0000028504,0.0000028464, +0.0000028459,0.0000028453,0.0000028412,0.0000028340,0.0000028256, +0.0000028225,0.0000028260,0.0000028329,0.0000028368,0.0000028362, +0.0000028294,0.0000028174,0.0000028072,0.0000028052,0.0000028129, +0.0000028254,0.0000028356,0.0000028390,0.0000028358,0.0000028274, +0.0000028212,0.0000028199,0.0000028186,0.0000028151,0.0000028119, +0.0000028085,0.0000028050,0.0000028065,0.0000028079,0.0000027995, +0.0000027853,0.0000027785,0.0000027789,0.0000027860,0.0000027990, +0.0000028079,0.0000028095,0.0000028099,0.0000028157,0.0000028235, +0.0000028264,0.0000028267,0.0000028227,0.0000028137,0.0000028067, +0.0000028119,0.0000028194,0.0000028219,0.0000028166,0.0000028085, +0.0000028042,0.0000028058,0.0000028099,0.0000028103,0.0000028092, +0.0000028093,0.0000028132,0.0000028191,0.0000028259,0.0000028310, +0.0000028260,0.0000028098,0.0000027911,0.0000027726,0.0000027669, +0.0000027796,0.0000027984,0.0000028032,0.0000027986,0.0000027901, +0.0000027841,0.0000027798,0.0000027724,0.0000027638,0.0000027600, +0.0000027609,0.0000027648,0.0000027688,0.0000027719,0.0000027739, +0.0000027730,0.0000027692,0.0000027656,0.0000027656,0.0000027683, +0.0000027735,0.0000027798,0.0000027849,0.0000027877,0.0000027878, +0.0000027880,0.0000027874,0.0000027857,0.0000027800,0.0000027705, +0.0000027595,0.0000027485,0.0000027406,0.0000027400,0.0000027466, +0.0000027568,0.0000027674,0.0000027741,0.0000027751,0.0000027698, +0.0000027604,0.0000027529,0.0000027546,0.0000027660,0.0000027812, +0.0000027938,0.0000028072,0.0000028258,0.0000028418,0.0000028450, +0.0000028299,0.0000028058,0.0000027931,0.0000027957,0.0000028076, +0.0000028178,0.0000028133,0.0000027930,0.0000027760,0.0000027727, +0.0000027765,0.0000027904,0.0000028125,0.0000028274,0.0000028276, +0.0000028268,0.0000028354,0.0000028535,0.0000028685,0.0000028804, +0.0000028981,0.0000029199,0.0000029322,0.0000029323,0.0000029322, +0.0000029378,0.0000029405,0.0000029361,0.0000029223,0.0000029062, +0.0000028957,0.0000028932,0.0000028932,0.0000028905,0.0000028832, +0.0000028729,0.0000028655,0.0000028654,0.0000028721,0.0000028802, +0.0000028827,0.0000028787,0.0000028706,0.0000028654,0.0000028657, +0.0000028687,0.0000028711,0.0000028712,0.0000028670,0.0000028574, +0.0000028464,0.0000028382,0.0000028342,0.0000028347,0.0000028430, +0.0000028585,0.0000028729,0.0000028810,0.0000028839,0.0000028835, +0.0000028807,0.0000028793,0.0000028813,0.0000028843,0.0000028855, +0.0000028856,0.0000028850,0.0000028839,0.0000028826,0.0000028814, +0.0000028787,0.0000028728,0.0000028648,0.0000028581,0.0000028531, +0.0000028502,0.0000028487,0.0000028471,0.0000028446,0.0000028415, +0.0000028384,0.0000028360,0.0000028342,0.0000028323,0.0000028310, +0.0000028305,0.0000028303,0.0000028303,0.0000028297,0.0000028282, +0.0000028269,0.0000028253,0.0000028232,0.0000028212,0.0000028168, +0.0000028109,0.0000028055,0.0000028014,0.0000027993,0.0000027967, +0.0000027941,0.0000027906,0.0000027866,0.0000027836,0.0000027809, +0.0000027758,0.0000027682,0.0000027607,0.0000027572,0.0000027594, +0.0000027673,0.0000027753,0.0000027799,0.0000027826,0.0000027844, +0.0000027865,0.0000027901,0.0000027964,0.0000028085,0.0000028209, +0.0000028257,0.0000028211,0.0000028144,0.0000028124,0.0000028129, +0.0000028150,0.0000028199,0.0000028269,0.0000028294,0.0000028224, +0.0000028108,0.0000028077,0.0000028085,0.0000028055,0.0000027948, +0.0000027832,0.0000027792,0.0000027829,0.0000027912,0.0000027933, +0.0000027939,0.0000027944,0.0000027894,0.0000027803,0.0000027784, +0.0000027862,0.0000028032,0.0000028193,0.0000028296,0.0000028379, +0.0000028470,0.0000028542,0.0000028593,0.0000028624,0.0000028646, +0.0000028674,0.0000028706,0.0000028736,0.0000028754,0.0000028757, +0.0000028734,0.0000028687,0.0000028662,0.0000028665,0.0000028669, +0.0000028671,0.0000028675,0.0000028725,0.0000028760,0.0000028774, +0.0000028849,0.0000028952,0.0000028987,0.0000028966,0.0000028897, +0.0000028835,0.0000028807,0.0000028789,0.0000028783,0.0000028769, +0.0000028755,0.0000028745,0.0000028740,0.0000028742,0.0000028738, +0.0000028726,0.0000028715,0.0000028701,0.0000028675,0.0000028636, +0.0000028598,0.0000028578,0.0000028579,0.0000028587,0.0000028592, +0.0000028580,0.0000028534,0.0000028480,0.0000028405,0.0000028340, +0.0000028300,0.0000028289,0.0000028282,0.0000028287,0.0000028308, +0.0000028367,0.0000028437,0.0000028507,0.0000028574,0.0000028624, +0.0000028646,0.0000028642,0.0000028601,0.0000028518,0.0000028415, +0.0000028275,0.0000028130,0.0000028038,0.0000028020,0.0000028035, +0.0000028041,0.0000028020,0.0000027968,0.0000027928,0.0000027936, +0.0000027974,0.0000027963,0.0000027880,0.0000027884,0.0000027994, +0.0000028026,0.0000027898,0.0000027717,0.0000027585,0.0000027502, +0.0000027486,0.0000027524,0.0000027614,0.0000027719,0.0000027781, +0.0000027790,0.0000027769,0.0000027756,0.0000027775,0.0000027806, +0.0000027800,0.0000027703,0.0000027526,0.0000027346,0.0000027246, +0.0000027246,0.0000027271,0.0000027244,0.0000027124,0.0000026994, +0.0000026932,0.0000026909,0.0000026881,0.0000026868,0.0000026934, +0.0000027176,0.0000027440,0.0000027502,0.0000027470,0.0000027484, +0.0000027562,0.0000027649,0.0000027671,0.0000027732,0.0000027859, +0.0000027868,0.0000027753,0.0000027664,0.0000027732,0.0000027851, +0.0000027946,0.0000027974,0.0000027982,0.0000027950,0.0000027892, +0.0000027830,0.0000027759,0.0000027695,0.0000027659,0.0000027641, +0.0000027654,0.0000027741,0.0000027850,0.0000027921,0.0000027969, +0.0000027998,0.0000028034,0.0000028047,0.0000027988,0.0000027900, +0.0000027811,0.0000027750,0.0000027698,0.0000027652,0.0000027673, +0.0000027769,0.0000027846,0.0000027930,0.0000027928,0.0000027896, +0.0000027877,0.0000027856,0.0000027865,0.0000027820,0.0000027761, +0.0000027698,0.0000027695,0.0000027721,0.0000027777,0.0000027766, +0.0000027737,0.0000027682,0.0000027642,0.0000027651,0.0000027751, +0.0000027855,0.0000027900,0.0000027899,0.0000027886,0.0000027906, +0.0000028004,0.0000028148,0.0000028246,0.0000028279,0.0000028278, +0.0000028196,0.0000028072,0.0000028004,0.0000028055,0.0000028174, +0.0000028280,0.0000028281,0.0000028226,0.0000028218,0.0000028307, +0.0000028402,0.0000028412,0.0000028430,0.0000028448,0.0000028476, +0.0000028519,0.0000028560,0.0000028590,0.0000028605,0.0000028614, +0.0000028625,0.0000028640,0.0000028639,0.0000028628,0.0000028604, +0.0000028548,0.0000028487,0.0000028449,0.0000028430,0.0000028440, +0.0000028470,0.0000028475,0.0000028447,0.0000028420,0.0000028424, +0.0000028441,0.0000028448,0.0000028420,0.0000028400,0.0000028401, +0.0000028440,0.0000028488,0.0000028516,0.0000028535,0.0000028549, +0.0000028560,0.0000028547,0.0000028518,0.0000028456,0.0000028358, +0.0000028276,0.0000028276,0.0000028311,0.0000028327,0.0000028303, +0.0000028242,0.0000028177,0.0000028127,0.0000028107,0.0000028099, +0.0000028118,0.0000028179,0.0000028249,0.0000028320,0.0000028407, +0.0000028502,0.0000028604,0.0000028695,0.0000028772,0.0000028832, +0.0000028870,0.0000028872,0.0000028831,0.0000028781,0.0000028761, +0.0000028742,0.0000028707,0.0000028673,0.0000028655,0.0000028639, +0.0000028626,0.0000028634,0.0000028657,0.0000028679,0.0000028709, +0.0000028710,0.0000028601,0.0000028383,0.0000028202,0.0000028148, +0.0000028194,0.0000028318,0.0000028423,0.0000028493,0.0000028513, +0.0000028496,0.0000028482,0.0000028512,0.0000028587,0.0000028663, +0.0000028705,0.0000028753,0.0000028779,0.0000028794,0.0000028778, +0.0000028730,0.0000028673,0.0000028617,0.0000028601,0.0000028608, +0.0000028635,0.0000028644,0.0000028623,0.0000028585,0.0000028531, +0.0000028482,0.0000028459,0.0000028443,0.0000028430,0.0000028435, +0.0000028469,0.0000028519,0.0000028580,0.0000028657,0.0000028757, +0.0000028848,0.0000028894,0.0000028906,0.0000028908,0.0000028900, +0.0000028874,0.0000028815,0.0000028719,0.0000028629,0.0000028530, +0.0000028570,0.0000028637,0.0000028693,0.0000028736,0.0000028761, +0.0000028761,0.0000028741,0.0000028696,0.0000028621,0.0000028534, +0.0000028475,0.0000028459,0.0000028458,0.0000028442,0.0000028386, +0.0000028308,0.0000028235,0.0000028209,0.0000028253,0.0000028326, +0.0000028360,0.0000028339,0.0000028251,0.0000028132,0.0000028052, +0.0000028046,0.0000028118,0.0000028225,0.0000028310,0.0000028340, +0.0000028308,0.0000028229,0.0000028176,0.0000028165,0.0000028152, +0.0000028115,0.0000028089,0.0000028080,0.0000028072,0.0000028087, +0.0000028093,0.0000027990,0.0000027843,0.0000027773,0.0000027786, +0.0000027839,0.0000027919,0.0000028003,0.0000028042,0.0000028062, +0.0000028127,0.0000028216,0.0000028267,0.0000028263,0.0000028208, +0.0000028109,0.0000028047,0.0000028094,0.0000028209,0.0000028285, +0.0000028276,0.0000028193,0.0000028137,0.0000028114,0.0000028139, +0.0000028127,0.0000028098,0.0000028096,0.0000028126,0.0000028208, +0.0000028266,0.0000028294,0.0000028315,0.0000028211,0.0000028005, +0.0000027823,0.0000027696,0.0000027705,0.0000027892,0.0000028065, +0.0000028092,0.0000028061,0.0000028025,0.0000028000,0.0000027943, +0.0000027840,0.0000027753,0.0000027721,0.0000027726,0.0000027734, +0.0000027728,0.0000027723,0.0000027700,0.0000027666,0.0000027622, +0.0000027595,0.0000027605,0.0000027644,0.0000027697,0.0000027750, +0.0000027786,0.0000027806,0.0000027821,0.0000027840,0.0000027865, +0.0000027879,0.0000027854,0.0000027778,0.0000027664,0.0000027541, +0.0000027453,0.0000027438,0.0000027490,0.0000027571,0.0000027655, +0.0000027705,0.0000027712,0.0000027674,0.0000027592,0.0000027521, +0.0000027530,0.0000027645,0.0000027815,0.0000027971,0.0000028105, +0.0000028267,0.0000028422,0.0000028455,0.0000028302,0.0000028054, +0.0000027918,0.0000027940,0.0000028064,0.0000028187,0.0000028149, +0.0000027949,0.0000027787,0.0000027758,0.0000027812,0.0000027991, +0.0000028225,0.0000028346,0.0000028337,0.0000028344,0.0000028465, +0.0000028641,0.0000028778,0.0000028893,0.0000029066,0.0000029269, +0.0000029382,0.0000029392,0.0000029410,0.0000029455,0.0000029456, +0.0000029382,0.0000029256,0.0000029128,0.0000029041,0.0000029009, +0.0000028991,0.0000028954,0.0000028884,0.0000028788,0.0000028719, +0.0000028719,0.0000028785,0.0000028866,0.0000028895,0.0000028853, +0.0000028762,0.0000028698,0.0000028687,0.0000028695,0.0000028705, +0.0000028703,0.0000028659,0.0000028554,0.0000028438,0.0000028368, +0.0000028348,0.0000028362,0.0000028452,0.0000028599,0.0000028723, +0.0000028788,0.0000028807,0.0000028787,0.0000028733,0.0000028698, +0.0000028710,0.0000028747,0.0000028771,0.0000028775,0.0000028775, +0.0000028767,0.0000028736,0.0000028689,0.0000028642,0.0000028583, +0.0000028517,0.0000028470,0.0000028438,0.0000028421,0.0000028414, +0.0000028409,0.0000028416,0.0000028421,0.0000028416,0.0000028413, +0.0000028407,0.0000028396,0.0000028383,0.0000028370,0.0000028358, +0.0000028353,0.0000028344,0.0000028322,0.0000028301,0.0000028282, +0.0000028271,0.0000028264,0.0000028258,0.0000028229,0.0000028194, +0.0000028136,0.0000028090,0.0000028041,0.0000027995,0.0000027947, +0.0000027897,0.0000027849,0.0000027827,0.0000027822,0.0000027798, +0.0000027739,0.0000027659,0.0000027615,0.0000027629,0.0000027703, +0.0000027788,0.0000027840,0.0000027860,0.0000027866,0.0000027875, +0.0000027898,0.0000027941,0.0000028048,0.0000028187,0.0000028269, +0.0000028254,0.0000028192,0.0000028163,0.0000028162,0.0000028175, +0.0000028228,0.0000028324,0.0000028365,0.0000028287,0.0000028144, +0.0000028090,0.0000028096,0.0000028073,0.0000027975,0.0000027855, +0.0000027807,0.0000027853,0.0000027925,0.0000027929,0.0000027947, +0.0000027966,0.0000027923,0.0000027834,0.0000027824,0.0000027917, +0.0000028080,0.0000028213,0.0000028292,0.0000028354,0.0000028442, +0.0000028530,0.0000028606,0.0000028652,0.0000028681,0.0000028702, +0.0000028714,0.0000028741,0.0000028764,0.0000028787,0.0000028792, +0.0000028756,0.0000028692,0.0000028631,0.0000028593,0.0000028610, +0.0000028650,0.0000028706,0.0000028741,0.0000028736,0.0000028775, +0.0000028904,0.0000028995,0.0000029024,0.0000028981,0.0000028943, +0.0000028919,0.0000028914,0.0000028907,0.0000028888,0.0000028875, +0.0000028877,0.0000028892,0.0000028907,0.0000028914,0.0000028902, +0.0000028880,0.0000028851,0.0000028816,0.0000028780,0.0000028746, +0.0000028729,0.0000028738,0.0000028753,0.0000028755,0.0000028734, +0.0000028675,0.0000028609,0.0000028523,0.0000028449,0.0000028398, +0.0000028372,0.0000028355,0.0000028355,0.0000028364,0.0000028406, +0.0000028470,0.0000028534,0.0000028598,0.0000028646,0.0000028664, +0.0000028655,0.0000028601,0.0000028500,0.0000028384,0.0000028233, +0.0000028093,0.0000028014,0.0000028006,0.0000028020,0.0000028018, +0.0000027992,0.0000027950,0.0000027917,0.0000027920,0.0000027954, +0.0000027972,0.0000027906,0.0000027831,0.0000027860,0.0000027998, +0.0000028010,0.0000027854,0.0000027651,0.0000027525,0.0000027468, +0.0000027486,0.0000027572,0.0000027695,0.0000027797,0.0000027833, +0.0000027819,0.0000027794,0.0000027801,0.0000027854,0.0000027881, +0.0000027838,0.0000027677,0.0000027464,0.0000027313,0.0000027275, +0.0000027304,0.0000027305,0.0000027213,0.0000027057,0.0000026963, +0.0000026932,0.0000026903,0.0000026882,0.0000026932,0.0000027153, +0.0000027429,0.0000027501,0.0000027455,0.0000027460,0.0000027549, +0.0000027640,0.0000027658,0.0000027666,0.0000027794,0.0000027863, +0.0000027806,0.0000027727,0.0000027760,0.0000027877,0.0000027966, +0.0000028000,0.0000028009,0.0000027982,0.0000027921,0.0000027863, +0.0000027799,0.0000027737,0.0000027719,0.0000027713,0.0000027709, +0.0000027741,0.0000027817,0.0000027868,0.0000027860,0.0000027792, +0.0000027737,0.0000027716,0.0000027707,0.0000027707,0.0000027721, +0.0000027733,0.0000027740,0.0000027735,0.0000027712,0.0000027719, +0.0000027789,0.0000027853,0.0000027894,0.0000027900,0.0000027865, +0.0000027807,0.0000027809,0.0000027841,0.0000027815,0.0000027758, +0.0000027673,0.0000027659,0.0000027730,0.0000027838,0.0000027864, +0.0000027844,0.0000027769,0.0000027688,0.0000027669,0.0000027771, +0.0000027897,0.0000027968,0.0000027976,0.0000027947,0.0000027943, +0.0000028009,0.0000028134,0.0000028239,0.0000028288,0.0000028298, +0.0000028229,0.0000028098,0.0000028005,0.0000028042,0.0000028173, +0.0000028315,0.0000028340,0.0000028279,0.0000028217,0.0000028271, +0.0000028392,0.0000028438,0.0000028469,0.0000028503,0.0000028529, +0.0000028561,0.0000028618,0.0000028686,0.0000028725,0.0000028728, +0.0000028719,0.0000028733,0.0000028732,0.0000028717,0.0000028691, +0.0000028641,0.0000028579,0.0000028528,0.0000028498,0.0000028497, +0.0000028534,0.0000028566,0.0000028555,0.0000028530,0.0000028525, +0.0000028548,0.0000028572,0.0000028576,0.0000028548,0.0000028502, +0.0000028447,0.0000028434,0.0000028415,0.0000028423,0.0000028449, +0.0000028510,0.0000028556,0.0000028572,0.0000028554,0.0000028509, +0.0000028415,0.0000028326,0.0000028308,0.0000028328,0.0000028339, +0.0000028318,0.0000028267,0.0000028207,0.0000028156,0.0000028136, +0.0000028138,0.0000028158,0.0000028205,0.0000028255,0.0000028306, +0.0000028367,0.0000028443,0.0000028537,0.0000028635,0.0000028729, +0.0000028816,0.0000028875,0.0000028892,0.0000028861,0.0000028806, +0.0000028769,0.0000028732,0.0000028696,0.0000028666,0.0000028630, +0.0000028590,0.0000028552,0.0000028512,0.0000028463,0.0000028437, +0.0000028484,0.0000028565,0.0000028623,0.0000028595,0.0000028466, +0.0000028274,0.0000028160,0.0000028169,0.0000028236,0.0000028316, +0.0000028347,0.0000028340,0.0000028341,0.0000028396,0.0000028492, +0.0000028590,0.0000028636,0.0000028678,0.0000028712,0.0000028740, +0.0000028732,0.0000028698,0.0000028656,0.0000028609,0.0000028594, +0.0000028599,0.0000028608,0.0000028619,0.0000028624,0.0000028618, +0.0000028582,0.0000028523,0.0000028475,0.0000028437,0.0000028416, +0.0000028425,0.0000028465,0.0000028513,0.0000028560,0.0000028614, +0.0000028699,0.0000028790,0.0000028854,0.0000028882,0.0000028889, +0.0000028884,0.0000028855,0.0000028774,0.0000028650,0.0000028553, +0.0000028476,0.0000028542,0.0000028619,0.0000028689,0.0000028737, +0.0000028757,0.0000028754,0.0000028722,0.0000028661,0.0000028570, +0.0000028479,0.0000028433,0.0000028427,0.0000028420,0.0000028393, +0.0000028340,0.0000028272,0.0000028221,0.0000028212,0.0000028258, +0.0000028317,0.0000028335,0.0000028283,0.0000028179,0.0000028075, +0.0000028022,0.0000028042,0.0000028127,0.0000028218,0.0000028267, +0.0000028274,0.0000028229,0.0000028154,0.0000028106,0.0000028093, +0.0000028071,0.0000028026,0.0000028008,0.0000028024,0.0000028052, +0.0000028086,0.0000028088,0.0000027978,0.0000027833,0.0000027770, +0.0000027787,0.0000027847,0.0000027902,0.0000027951,0.0000027995, +0.0000028028,0.0000028102,0.0000028202,0.0000028268,0.0000028269, +0.0000028221,0.0000028106,0.0000028027,0.0000028056,0.0000028189, +0.0000028299,0.0000028334,0.0000028277,0.0000028193,0.0000028150, +0.0000028163,0.0000028155,0.0000028102,0.0000028078,0.0000028099, +0.0000028171,0.0000028258,0.0000028291,0.0000028294,0.0000028284, +0.0000028125,0.0000027924,0.0000027802,0.0000027757,0.0000027810, +0.0000028003,0.0000028150,0.0000028169,0.0000028158,0.0000028154, +0.0000028142,0.0000028076,0.0000027973,0.0000027889,0.0000027844, +0.0000027819,0.0000027788,0.0000027756,0.0000027729,0.0000027696, +0.0000027650,0.0000027611,0.0000027605,0.0000027622,0.0000027655, +0.0000027689,0.0000027715,0.0000027729,0.0000027740,0.0000027770, +0.0000027812,0.0000027863,0.0000027889,0.0000027870,0.0000027796, +0.0000027689,0.0000027570,0.0000027480,0.0000027459,0.0000027496, +0.0000027550,0.0000027612,0.0000027656,0.0000027668,0.0000027646, +0.0000027583,0.0000027523,0.0000027535,0.0000027650,0.0000027836, +0.0000028016,0.0000028148,0.0000028281,0.0000028417,0.0000028447, +0.0000028288,0.0000028037,0.0000027897,0.0000027917,0.0000028050, +0.0000028195,0.0000028162,0.0000027971,0.0000027815,0.0000027786, +0.0000027868,0.0000028082,0.0000028314,0.0000028399,0.0000028393, +0.0000028423,0.0000028556,0.0000028724,0.0000028853,0.0000028965, +0.0000029127,0.0000029319,0.0000029437,0.0000029469,0.0000029503, +0.0000029534,0.0000029505,0.0000029413,0.0000029301,0.0000029194, +0.0000029117,0.0000029075,0.0000029043,0.0000029002,0.0000028932, +0.0000028833,0.0000028762,0.0000028765,0.0000028827,0.0000028902, +0.0000028945,0.0000028919,0.0000028823,0.0000028736,0.0000028698, +0.0000028691,0.0000028696,0.0000028699,0.0000028667,0.0000028574, +0.0000028455,0.0000028379,0.0000028362,0.0000028394,0.0000028485, +0.0000028617,0.0000028718,0.0000028754,0.0000028757,0.0000028726, +0.0000028658,0.0000028592,0.0000028579,0.0000028603,0.0000028634, +0.0000028649,0.0000028655,0.0000028652,0.0000028620,0.0000028550, +0.0000028466,0.0000028392,0.0000028337,0.0000028313,0.0000028300, +0.0000028302,0.0000028319,0.0000028354,0.0000028400,0.0000028442, +0.0000028466,0.0000028479,0.0000028483,0.0000028476,0.0000028468, +0.0000028457,0.0000028443,0.0000028426,0.0000028409,0.0000028387, +0.0000028352,0.0000028320,0.0000028285,0.0000028258,0.0000028233, +0.0000028215,0.0000028200,0.0000028181,0.0000028155,0.0000028134, +0.0000028109,0.0000028062,0.0000028002,0.0000027920,0.0000027846, +0.0000027816,0.0000027826,0.0000027833,0.0000027797,0.0000027723, +0.0000027673,0.0000027676,0.0000027735,0.0000027816,0.0000027868, +0.0000027886,0.0000027884,0.0000027878,0.0000027886,0.0000027914, +0.0000028018,0.0000028175,0.0000028279,0.0000028275,0.0000028220, +0.0000028192,0.0000028188,0.0000028197,0.0000028255,0.0000028367, +0.0000028418,0.0000028335,0.0000028171,0.0000028099,0.0000028102, +0.0000028082,0.0000027997,0.0000027878,0.0000027825,0.0000027877, +0.0000027933,0.0000027922,0.0000027946,0.0000027973,0.0000027950, +0.0000027877,0.0000027873,0.0000027973,0.0000028129,0.0000028239, +0.0000028305,0.0000028355,0.0000028443,0.0000028547,0.0000028645, +0.0000028691,0.0000028703,0.0000028701,0.0000028685,0.0000028681, +0.0000028700,0.0000028745,0.0000028785,0.0000028808,0.0000028779, +0.0000028663,0.0000028552,0.0000028542,0.0000028617,0.0000028691, +0.0000028738,0.0000028721,0.0000028724,0.0000028843,0.0000028989, +0.0000029056,0.0000029063,0.0000029034,0.0000029021,0.0000029024, +0.0000029013,0.0000028998,0.0000028996,0.0000029019,0.0000029049, +0.0000029066,0.0000029065,0.0000029037,0.0000028989,0.0000028929, +0.0000028865,0.0000028816,0.0000028784,0.0000028765,0.0000028771, +0.0000028787,0.0000028786,0.0000028760,0.0000028702,0.0000028642, +0.0000028561,0.0000028483,0.0000028427,0.0000028396,0.0000028386, +0.0000028388,0.0000028392,0.0000028419,0.0000028472,0.0000028528, +0.0000028589,0.0000028630,0.0000028641,0.0000028622,0.0000028558, +0.0000028458,0.0000028342,0.0000028191,0.0000028035,0.0000027956, +0.0000027957,0.0000027976,0.0000027969,0.0000027927,0.0000027879, +0.0000027859,0.0000027887,0.0000027932,0.0000027951,0.0000027914, +0.0000027822,0.0000027764,0.0000027830,0.0000027982,0.0000028000, +0.0000027842,0.0000027620,0.0000027482,0.0000027466,0.0000027523, +0.0000027641,0.0000027768,0.0000027855,0.0000027866,0.0000027844, +0.0000027835,0.0000027870,0.0000027928,0.0000027935,0.0000027839, +0.0000027622,0.0000027416,0.0000027330,0.0000027337,0.0000027358, +0.0000027303,0.0000027149,0.0000027016,0.0000026962,0.0000026933, +0.0000026912,0.0000026949,0.0000027142,0.0000027415,0.0000027530, +0.0000027464,0.0000027436,0.0000027526,0.0000027641,0.0000027658, +0.0000027629,0.0000027719,0.0000027840,0.0000027838,0.0000027788, +0.0000027793,0.0000027883,0.0000027980,0.0000028012,0.0000028026, +0.0000028000,0.0000027950,0.0000027904,0.0000027877,0.0000027841, +0.0000027833,0.0000027842,0.0000027828,0.0000027794,0.0000027771, +0.0000027769,0.0000027719,0.0000027634,0.0000027553,0.0000027526, +0.0000027563,0.0000027628,0.0000027706,0.0000027774,0.0000027829, +0.0000027840,0.0000027815,0.0000027765,0.0000027728,0.0000027741, +0.0000027785,0.0000027806,0.0000027825,0.0000027786,0.0000027735, +0.0000027743,0.0000027781,0.0000027788,0.0000027762,0.0000027680, +0.0000027677,0.0000027791,0.0000027941,0.0000027973,0.0000027933, +0.0000027854,0.0000027765,0.0000027746,0.0000027859,0.0000028009, +0.0000028104,0.0000028109,0.0000028068,0.0000028049,0.0000028094, +0.0000028189,0.0000028288,0.0000028354,0.0000028361,0.0000028288, +0.0000028149,0.0000028054,0.0000028070,0.0000028196,0.0000028342, +0.0000028401,0.0000028347,0.0000028247,0.0000028232,0.0000028339, +0.0000028426,0.0000028482,0.0000028544,0.0000028586,0.0000028608, +0.0000028669,0.0000028750,0.0000028780,0.0000028770,0.0000028755, +0.0000028783,0.0000028813,0.0000028815,0.0000028794,0.0000028739, +0.0000028659,0.0000028599,0.0000028559,0.0000028538,0.0000028547, +0.0000028570,0.0000028564,0.0000028533,0.0000028525,0.0000028550, +0.0000028585,0.0000028604,0.0000028617,0.0000028622,0.0000028618, +0.0000028576,0.0000028498,0.0000028409,0.0000028380,0.0000028394, +0.0000028446,0.0000028484,0.0000028509,0.0000028514,0.0000028490, +0.0000028423,0.0000028349,0.0000028331,0.0000028349,0.0000028357, +0.0000028338,0.0000028299,0.0000028251,0.0000028205,0.0000028177, +0.0000028162,0.0000028134,0.0000028100,0.0000028087,0.0000028108, +0.0000028171,0.0000028272,0.0000028385,0.0000028496,0.0000028601, +0.0000028703,0.0000028782,0.0000028816,0.0000028800,0.0000028764, +0.0000028723,0.0000028682,0.0000028647,0.0000028628,0.0000028597, +0.0000028543,0.0000028495,0.0000028454,0.0000028396,0.0000028327, +0.0000028286,0.0000028305,0.0000028390,0.0000028495,0.0000028560, +0.0000028505,0.0000028353,0.0000028200,0.0000028124,0.0000028118, +0.0000028165,0.0000028198,0.0000028201,0.0000028245,0.0000028342, +0.0000028464,0.0000028540,0.0000028591,0.0000028631,0.0000028655, +0.0000028650,0.0000028635,0.0000028618,0.0000028589,0.0000028592, +0.0000028604,0.0000028612,0.0000028606,0.0000028615,0.0000028636, +0.0000028645,0.0000028610,0.0000028537,0.0000028453,0.0000028406, +0.0000028409,0.0000028456,0.0000028503,0.0000028540,0.0000028576, +0.0000028645,0.0000028730,0.0000028805,0.0000028850,0.0000028860, +0.0000028854,0.0000028812,0.0000028701,0.0000028555,0.0000028472, +0.0000028471,0.0000028554,0.0000028635,0.0000028705,0.0000028746, +0.0000028748,0.0000028719,0.0000028657,0.0000028563,0.0000028454, +0.0000028372,0.0000028348,0.0000028354,0.0000028350,0.0000028330, +0.0000028296,0.0000028253,0.0000028218,0.0000028227,0.0000028259, +0.0000028295,0.0000028289,0.0000028216,0.0000028115,0.0000028048, +0.0000028028,0.0000028070,0.0000028153,0.0000028214,0.0000028226, +0.0000028206,0.0000028150,0.0000028087,0.0000028053,0.0000028033, +0.0000027995,0.0000027941,0.0000027908,0.0000027930,0.0000027990, +0.0000028056,0.0000028068,0.0000027963,0.0000027820,0.0000027756, +0.0000027778,0.0000027857,0.0000027914,0.0000027930,0.0000027963, +0.0000027992,0.0000028073,0.0000028181,0.0000028254,0.0000028280, +0.0000028251,0.0000028149,0.0000028045,0.0000028035,0.0000028147, +0.0000028278,0.0000028339,0.0000028304,0.0000028208,0.0000028145, +0.0000028133,0.0000028143,0.0000028109,0.0000028063,0.0000028064, +0.0000028109,0.0000028191,0.0000028267,0.0000028278,0.0000028254, +0.0000028203,0.0000028049,0.0000027907,0.0000027851,0.0000027844, +0.0000027919,0.0000028105,0.0000028231,0.0000028257,0.0000028262, +0.0000028268,0.0000028247,0.0000028176,0.0000028088,0.0000028009, +0.0000027946,0.0000027888,0.0000027829,0.0000027791,0.0000027749, +0.0000027712,0.0000027675,0.0000027658,0.0000027660,0.0000027665, +0.0000027674,0.0000027677,0.0000027672,0.0000027670,0.0000027692, +0.0000027750,0.0000027820,0.0000027878,0.0000027892,0.0000027866, +0.0000027799,0.0000027700,0.0000027589,0.0000027501,0.0000027475, +0.0000027493,0.0000027519,0.0000027561,0.0000027611,0.0000027641, +0.0000027631,0.0000027590,0.0000027547,0.0000027565,0.0000027681, +0.0000027875,0.0000028069,0.0000028197,0.0000028297,0.0000028400, +0.0000028419,0.0000028261,0.0000028008,0.0000027866,0.0000027891, +0.0000028045,0.0000028197,0.0000028170,0.0000027989,0.0000027841, +0.0000027816,0.0000027928,0.0000028169,0.0000028389,0.0000028447, +0.0000028451,0.0000028494,0.0000028623,0.0000028783,0.0000028914, +0.0000029027,0.0000029177,0.0000029361,0.0000029490,0.0000029543, +0.0000029585,0.0000029605,0.0000029563,0.0000029459,0.0000029347, +0.0000029250,0.0000029179,0.0000029127,0.0000029077,0.0000029030, +0.0000028965,0.0000028869,0.0000028794,0.0000028793,0.0000028844, +0.0000028905,0.0000028960,0.0000028958,0.0000028882,0.0000028779, +0.0000028713,0.0000028687,0.0000028691,0.0000028704,0.0000028689, +0.0000028624,0.0000028513,0.0000028424,0.0000028404,0.0000028439, +0.0000028520,0.0000028625,0.0000028707,0.0000028733,0.0000028726, +0.0000028687,0.0000028619,0.0000028537,0.0000028482,0.0000028471, +0.0000028482,0.0000028494,0.0000028503,0.0000028500,0.0000028463, +0.0000028379,0.0000028269,0.0000028178,0.0000028133,0.0000028135, +0.0000028163,0.0000028197,0.0000028250,0.0000028319,0.0000028407, +0.0000028481,0.0000028523,0.0000028543,0.0000028542,0.0000028521, +0.0000028507,0.0000028497,0.0000028485,0.0000028468,0.0000028450, +0.0000028428,0.0000028416,0.0000028388,0.0000028356,0.0000028318, +0.0000028270,0.0000028214,0.0000028166,0.0000028120,0.0000028107, +0.0000028109,0.0000028120,0.0000028120,0.0000028108,0.0000028059, +0.0000027974,0.0000027881,0.0000027835,0.0000027843,0.0000027861, +0.0000027839,0.0000027771,0.0000027721,0.0000027719,0.0000027755, +0.0000027825,0.0000027881,0.0000027898,0.0000027887,0.0000027867, +0.0000027862,0.0000027883,0.0000028001,0.0000028177,0.0000028281, +0.0000028279,0.0000028228,0.0000028208,0.0000028207,0.0000028216, +0.0000028279,0.0000028402,0.0000028461,0.0000028370,0.0000028192, +0.0000028106,0.0000028102,0.0000028078,0.0000028010,0.0000027907, +0.0000027856,0.0000027904,0.0000027941,0.0000027916,0.0000027938, +0.0000027971,0.0000027967,0.0000027918,0.0000027922,0.0000028031, +0.0000028180,0.0000028278,0.0000028339,0.0000028389,0.0000028474, +0.0000028581,0.0000028667,0.0000028686,0.0000028674,0.0000028641, +0.0000028608,0.0000028590,0.0000028600,0.0000028634,0.0000028692, +0.0000028776,0.0000028833,0.0000028756,0.0000028569,0.0000028494, +0.0000028567,0.0000028677,0.0000028737,0.0000028731,0.0000028693, +0.0000028780,0.0000028953,0.0000029064,0.0000029108,0.0000029096, +0.0000029095,0.0000029097,0.0000029086,0.0000029081,0.0000029091, +0.0000029123,0.0000029152,0.0000029158,0.0000029136,0.0000029072, +0.0000029001,0.0000028904,0.0000028811,0.0000028736,0.0000028696, +0.0000028679,0.0000028691,0.0000028697,0.0000028686,0.0000028657, +0.0000028600,0.0000028539,0.0000028463,0.0000028391,0.0000028333, +0.0000028312,0.0000028317,0.0000028342,0.0000028356,0.0000028381, +0.0000028426,0.0000028482,0.0000028532,0.0000028568,0.0000028575, +0.0000028554,0.0000028493,0.0000028397,0.0000028277,0.0000028122, +0.0000027942,0.0000027850,0.0000027860,0.0000027900,0.0000027903, +0.0000027856,0.0000027791,0.0000027767,0.0000027796,0.0000027879, +0.0000027920,0.0000027888,0.0000027806,0.0000027723,0.0000027706, +0.0000027792,0.0000027943,0.0000027972,0.0000027857,0.0000027639, +0.0000027492,0.0000027487,0.0000027567,0.0000027698,0.0000027819, +0.0000027878,0.0000027889,0.0000027884,0.0000027894,0.0000027934, +0.0000027973,0.0000027960,0.0000027804,0.0000027568,0.0000027409, +0.0000027384,0.0000027399,0.0000027370,0.0000027245,0.0000027096, +0.0000027009,0.0000026969,0.0000026951,0.0000026977,0.0000027138, +0.0000027396,0.0000027551,0.0000027502,0.0000027422,0.0000027483, +0.0000027620,0.0000027677,0.0000027620,0.0000027652,0.0000027799, +0.0000027846,0.0000027836,0.0000027832,0.0000027881,0.0000027982, +0.0000028027,0.0000028030,0.0000028017,0.0000027974,0.0000027959, +0.0000027960,0.0000027971,0.0000027971,0.0000027959,0.0000027925, +0.0000027841,0.0000027758,0.0000027695,0.0000027653,0.0000027612, +0.0000027575,0.0000027540,0.0000027570,0.0000027648,0.0000027746, +0.0000027848,0.0000027891,0.0000027897,0.0000027865,0.0000027831, +0.0000027764,0.0000027711,0.0000027711,0.0000027761,0.0000027794, +0.0000027826,0.0000027804,0.0000027763,0.0000027771,0.0000027804, +0.0000027825,0.0000027829,0.0000027779,0.0000027768,0.0000027876, +0.0000028017,0.0000028077,0.0000028036,0.0000027971,0.0000027896, +0.0000027884,0.0000027993,0.0000028157,0.0000028261,0.0000028263, +0.0000028224,0.0000028204,0.0000028230,0.0000028299,0.0000028396, +0.0000028467,0.0000028456,0.0000028360,0.0000028215,0.0000028131, +0.0000028141,0.0000028265,0.0000028397,0.0000028457,0.0000028414, +0.0000028297,0.0000028210,0.0000028258,0.0000028365,0.0000028470, +0.0000028565,0.0000028624,0.0000028655,0.0000028724,0.0000028788, +0.0000028788,0.0000028762,0.0000028763,0.0000028809,0.0000028868, +0.0000028884,0.0000028860,0.0000028790,0.0000028694,0.0000028620, +0.0000028577,0.0000028549,0.0000028521,0.0000028508,0.0000028494, +0.0000028467,0.0000028469,0.0000028520,0.0000028573,0.0000028589, +0.0000028597,0.0000028611,0.0000028639,0.0000028673,0.0000028685, +0.0000028642,0.0000028538,0.0000028461,0.0000028421,0.0000028414, +0.0000028385,0.0000028380,0.0000028386,0.0000028379,0.0000028319, +0.0000028252,0.0000028241,0.0000028253,0.0000028251,0.0000028227, +0.0000028191,0.0000028145,0.0000028094,0.0000028049,0.0000028002, +0.0000027952,0.0000027916,0.0000027940,0.0000028051,0.0000028200, +0.0000028348,0.0000028474,0.0000028578,0.0000028661,0.0000028730, +0.0000028767,0.0000028755,0.0000028707,0.0000028654,0.0000028606, +0.0000028560,0.0000028528,0.0000028522,0.0000028517,0.0000028502, +0.0000028479,0.0000028445,0.0000028384,0.0000028319,0.0000028276, +0.0000028231,0.0000028205,0.0000028223,0.0000028346,0.0000028466, +0.0000028507,0.0000028418,0.0000028239,0.0000028087,0.0000028008, +0.0000028002,0.0000028056,0.0000028117,0.0000028188,0.0000028306, +0.0000028407,0.0000028485,0.0000028531,0.0000028552,0.0000028550, +0.0000028533,0.0000028524,0.0000028520,0.0000028548,0.0000028589, +0.0000028615,0.0000028604,0.0000028600,0.0000028630,0.0000028674, +0.0000028689,0.0000028628,0.0000028510,0.0000028415,0.0000028406, +0.0000028447,0.0000028492,0.0000028522,0.0000028545,0.0000028596, +0.0000028673,0.0000028758,0.0000028820,0.0000028830,0.0000028820, +0.0000028757,0.0000028608,0.0000028462,0.0000028421,0.0000028495, +0.0000028568,0.0000028637,0.0000028692,0.0000028708,0.0000028676, +0.0000028604,0.0000028511,0.0000028403,0.0000028312,0.0000028274, +0.0000028278,0.0000028294,0.0000028301,0.0000028303,0.0000028289, +0.0000028265,0.0000028246,0.0000028260,0.0000028271,0.0000028276, +0.0000028245,0.0000028172,0.0000028095,0.0000028057,0.0000028068, +0.0000028126,0.0000028195,0.0000028222,0.0000028203,0.0000028133, +0.0000028040,0.0000027971,0.0000027948,0.0000027937,0.0000027916, +0.0000027886,0.0000027852,0.0000027864,0.0000027926,0.0000027998, +0.0000028024,0.0000027930,0.0000027785,0.0000027723,0.0000027760, +0.0000027849,0.0000027920,0.0000027936,0.0000027945,0.0000027972, +0.0000028038,0.0000028142,0.0000028230,0.0000028268,0.0000028262, +0.0000028196,0.0000028092,0.0000028059,0.0000028136,0.0000028246, +0.0000028306,0.0000028288,0.0000028203,0.0000028106,0.0000028060, +0.0000028073,0.0000028063,0.0000028030,0.0000028033,0.0000028067, +0.0000028119,0.0000028179,0.0000028237,0.0000028227,0.0000028181, +0.0000028142,0.0000028038,0.0000027953,0.0000027932,0.0000027931, +0.0000028023,0.0000028190,0.0000028305,0.0000028343,0.0000028352, +0.0000028346,0.0000028297,0.0000028213,0.0000028119,0.0000028031, +0.0000027950,0.0000027882,0.0000027836,0.0000027796,0.0000027767, +0.0000027738,0.0000027709,0.0000027685,0.0000027666,0.0000027648, +0.0000027629,0.0000027609,0.0000027595,0.0000027602,0.0000027657, +0.0000027749,0.0000027836,0.0000027883,0.0000027893,0.0000027863, +0.0000027797,0.0000027706,0.0000027611,0.0000027537,0.0000027510, +0.0000027507,0.0000027513,0.0000027545,0.0000027603,0.0000027647, +0.0000027652,0.0000027623,0.0000027603,0.0000027627,0.0000027743, +0.0000027933,0.0000028124,0.0000028239,0.0000028308,0.0000028374, +0.0000028381,0.0000028226,0.0000027974,0.0000027834,0.0000027875, +0.0000028040,0.0000028193,0.0000028171,0.0000027999,0.0000027864, +0.0000027852,0.0000027989,0.0000028250,0.0000028454,0.0000028497, +0.0000028500,0.0000028546,0.0000028670,0.0000028824,0.0000028963, +0.0000029081,0.0000029224,0.0000029403,0.0000029542,0.0000029607, +0.0000029653,0.0000029673,0.0000029631,0.0000029517,0.0000029391, +0.0000029288,0.0000029218,0.0000029163,0.0000029094,0.0000029026, +0.0000028969,0.0000028899,0.0000028829,0.0000028808,0.0000028838, +0.0000028897,0.0000028952,0.0000028970,0.0000028935,0.0000028836, +0.0000028748,0.0000028698,0.0000028689,0.0000028699,0.0000028702, +0.0000028673,0.0000028601,0.0000028519,0.0000028482,0.0000028505, +0.0000028572,0.0000028639,0.0000028690,0.0000028726,0.0000028734, +0.0000028702,0.0000028639,0.0000028560,0.0000028486,0.0000028446, +0.0000028412,0.0000028391,0.0000028375,0.0000028359,0.0000028319, +0.0000028239,0.0000028134,0.0000028051,0.0000028027,0.0000028067, +0.0000028113,0.0000028186,0.0000028248,0.0000028331,0.0000028427, +0.0000028504,0.0000028540,0.0000028549,0.0000028536,0.0000028506, +0.0000028475,0.0000028441,0.0000028424,0.0000028412,0.0000028403, +0.0000028399,0.0000028398,0.0000028400,0.0000028388,0.0000028363, +0.0000028338,0.0000028293,0.0000028226,0.0000028149,0.0000028097, +0.0000028083,0.0000028082,0.0000028098,0.0000028103,0.0000028096, +0.0000028066,0.0000028008,0.0000027936,0.0000027882,0.0000027874, +0.0000027888,0.0000027863,0.0000027790,0.0000027743,0.0000027735, +0.0000027753,0.0000027816,0.0000027877,0.0000027889,0.0000027872, +0.0000027843,0.0000027826,0.0000027857,0.0000028006,0.0000028191, +0.0000028278,0.0000028264,0.0000028219,0.0000028211,0.0000028220, +0.0000028232,0.0000028299,0.0000028430,0.0000028493,0.0000028396, +0.0000028208,0.0000028111,0.0000028097,0.0000028073,0.0000028027, +0.0000027948,0.0000027900,0.0000027938,0.0000027956,0.0000027917, +0.0000027930,0.0000027960,0.0000027967,0.0000027955,0.0000027978, +0.0000028090,0.0000028225,0.0000028323,0.0000028388,0.0000028447, +0.0000028519,0.0000028593,0.0000028631,0.0000028620,0.0000028591, +0.0000028572,0.0000028566,0.0000028555,0.0000028562,0.0000028570, +0.0000028597,0.0000028682,0.0000028817,0.0000028840,0.0000028662, +0.0000028497,0.0000028516,0.0000028643,0.0000028734,0.0000028750, +0.0000028696,0.0000028733,0.0000028888,0.0000029042,0.0000029116, +0.0000029136,0.0000029133,0.0000029134,0.0000029127,0.0000029117, +0.0000029121,0.0000029139,0.0000029163,0.0000029150,0.0000029098, +0.0000029013,0.0000028914,0.0000028798,0.0000028673,0.0000028571, +0.0000028526,0.0000028519,0.0000028542,0.0000028560,0.0000028561, +0.0000028539,0.0000028487,0.0000028421,0.0000028336,0.0000028237, +0.0000028157,0.0000028122,0.0000028134,0.0000028176,0.0000028208, +0.0000028245,0.0000028293,0.0000028354,0.0000028406,0.0000028453, +0.0000028470,0.0000028463,0.0000028414,0.0000028318,0.0000028185, +0.0000028017,0.0000027823,0.0000027716,0.0000027727,0.0000027788, +0.0000027824,0.0000027800,0.0000027738,0.0000027692,0.0000027685, +0.0000027767,0.0000027862,0.0000027861,0.0000027789,0.0000027692, +0.0000027638,0.0000027652,0.0000027744,0.0000027873,0.0000027936, +0.0000027861,0.0000027705,0.0000027569,0.0000027535,0.0000027611, +0.0000027731,0.0000027836,0.0000027888,0.0000027920,0.0000027947, +0.0000027961,0.0000027982,0.0000028001,0.0000027953,0.0000027754, +0.0000027535,0.0000027433,0.0000027430,0.0000027417,0.0000027325, +0.0000027193,0.0000027087,0.0000027023,0.0000026997,0.0000027017, +0.0000027137,0.0000027366,0.0000027555,0.0000027549,0.0000027444, +0.0000027440,0.0000027567,0.0000027673,0.0000027639,0.0000027609, +0.0000027736,0.0000027842,0.0000027860,0.0000027878,0.0000027895, +0.0000027966,0.0000028037,0.0000028045,0.0000028031,0.0000028003, +0.0000027996,0.0000028028,0.0000028054,0.0000028062,0.0000028027, +0.0000027964,0.0000027872,0.0000027790,0.0000027731,0.0000027698, +0.0000027686,0.0000027681,0.0000027684,0.0000027714,0.0000027758, +0.0000027803,0.0000027845,0.0000027898,0.0000027918,0.0000027917, +0.0000027886,0.0000027833,0.0000027792,0.0000027744,0.0000027768, +0.0000027826,0.0000027866,0.0000027890,0.0000027885,0.0000027879, +0.0000027900,0.0000027940,0.0000027961,0.0000027953,0.0000027888, +0.0000027859,0.0000027963,0.0000028095,0.0000028191,0.0000028154, +0.0000028091,0.0000028029,0.0000028026,0.0000028129,0.0000028294, +0.0000028403,0.0000028423,0.0000028405,0.0000028381,0.0000028382, +0.0000028428,0.0000028510,0.0000028570,0.0000028537,0.0000028428, +0.0000028306,0.0000028242,0.0000028256,0.0000028378,0.0000028475, +0.0000028503,0.0000028464,0.0000028347,0.0000028223,0.0000028194, +0.0000028271,0.0000028432,0.0000028582,0.0000028651,0.0000028682, +0.0000028746,0.0000028810,0.0000028803,0.0000028762,0.0000028761, +0.0000028813,0.0000028877,0.0000028895,0.0000028871,0.0000028808, +0.0000028716,0.0000028632,0.0000028576,0.0000028531,0.0000028491, +0.0000028441,0.0000028402,0.0000028385,0.0000028407,0.0000028494, +0.0000028580,0.0000028612,0.0000028612,0.0000028603,0.0000028615, +0.0000028654,0.0000028698,0.0000028740,0.0000028731,0.0000028700, +0.0000028667,0.0000028602,0.0000028505,0.0000028404,0.0000028356, +0.0000028340,0.0000028289,0.0000028187,0.0000028103,0.0000028075, +0.0000028067,0.0000028047,0.0000028008,0.0000027965,0.0000027927, +0.0000027904,0.0000027919,0.0000027957,0.0000027991,0.0000028039, +0.0000028141,0.0000028276,0.0000028401,0.0000028533,0.0000028643, +0.0000028739,0.0000028821,0.0000028898,0.0000028920,0.0000028882, +0.0000028791,0.0000028685,0.0000028600,0.0000028537,0.0000028496, +0.0000028493,0.0000028513,0.0000028528,0.0000028538,0.0000028536, +0.0000028491,0.0000028430,0.0000028372,0.0000028306,0.0000028228, +0.0000028154,0.0000028155,0.0000028233,0.0000028373,0.0000028453, +0.0000028409,0.0000028259,0.0000028061,0.0000027907,0.0000027875, +0.0000027947,0.0000028053,0.0000028163,0.0000028267,0.0000028358, +0.0000028410,0.0000028435,0.0000028427,0.0000028396,0.0000028384, +0.0000028386,0.0000028418,0.0000028481,0.0000028555,0.0000028585, +0.0000028581,0.0000028603,0.0000028667,0.0000028711,0.0000028687, +0.0000028572,0.0000028449,0.0000028413,0.0000028440,0.0000028480, +0.0000028507,0.0000028522,0.0000028556,0.0000028630,0.0000028727, +0.0000028799,0.0000028805,0.0000028786,0.0000028692,0.0000028514, +0.0000028404,0.0000028418,0.0000028506,0.0000028554,0.0000028598, +0.0000028627,0.0000028613,0.0000028545,0.0000028452,0.0000028362, +0.0000028289,0.0000028251,0.0000028248,0.0000028258,0.0000028273, +0.0000028292,0.0000028304,0.0000028305,0.0000028306,0.0000028310, +0.0000028317,0.0000028309,0.0000028280,0.0000028235,0.0000028168, +0.0000028122,0.0000028121,0.0000028156,0.0000028202,0.0000028223, +0.0000028190,0.0000028090,0.0000027950,0.0000027832,0.0000027781, +0.0000027777,0.0000027793,0.0000027805,0.0000027814,0.0000027815, +0.0000027833,0.0000027883,0.0000027933,0.0000027948,0.0000027864, +0.0000027726,0.0000027675,0.0000027727,0.0000027820,0.0000027914, +0.0000027946,0.0000027943,0.0000027964,0.0000028016,0.0000028093, +0.0000028169,0.0000028222,0.0000028242,0.0000028213,0.0000028135, +0.0000028079,0.0000028127,0.0000028216,0.0000028275,0.0000028261, +0.0000028199,0.0000028102,0.0000028033,0.0000028004,0.0000027989, +0.0000027952,0.0000027950,0.0000027990,0.0000028046,0.0000028095, +0.0000028149,0.0000028194,0.0000028172,0.0000028134,0.0000028135, +0.0000028080,0.0000028023,0.0000028024,0.0000028034,0.0000028112, +0.0000028255,0.0000028363,0.0000028404,0.0000028406,0.0000028372, +0.0000028296,0.0000028193,0.0000028090,0.0000027997,0.0000027922, +0.0000027859,0.0000027816,0.0000027787,0.0000027765,0.0000027735, +0.0000027703,0.0000027669,0.0000027628,0.0000027590,0.0000027556, +0.0000027530,0.0000027526,0.0000027567,0.0000027650,0.0000027755, +0.0000027841,0.0000027893,0.0000027898,0.0000027865,0.0000027799, +0.0000027714,0.0000027641,0.0000027596,0.0000027578,0.0000027565, +0.0000027563,0.0000027594,0.0000027653,0.0000027698,0.0000027702, +0.0000027679,0.0000027671,0.0000027711,0.0000027826,0.0000027997, +0.0000028161,0.0000028264,0.0000028315,0.0000028351,0.0000028340, +0.0000028184,0.0000027942,0.0000027820,0.0000027871,0.0000028037, +0.0000028188,0.0000028171,0.0000028012,0.0000027887,0.0000027888, +0.0000028050,0.0000028325,0.0000028511,0.0000028542,0.0000028545, +0.0000028593,0.0000028705,0.0000028852,0.0000029001,0.0000029131, +0.0000029274,0.0000029446,0.0000029587,0.0000029660,0.0000029701, +0.0000029718,0.0000029691,0.0000029580,0.0000029434,0.0000029308, +0.0000029226,0.0000029175,0.0000029110,0.0000029015,0.0000028936, +0.0000028884,0.0000028841,0.0000028815,0.0000028833,0.0000028896, +0.0000028946,0.0000028968,0.0000028956,0.0000028892,0.0000028803, +0.0000028731,0.0000028697,0.0000028695,0.0000028702,0.0000028706, +0.0000028686,0.0000028645,0.0000028602,0.0000028593,0.0000028622, +0.0000028664,0.0000028689,0.0000028721,0.0000028749,0.0000028745, +0.0000028697,0.0000028631,0.0000028570,0.0000028514,0.0000028463, +0.0000028414,0.0000028364,0.0000028327,0.0000028286,0.0000028221, +0.0000028138,0.0000028078,0.0000028066,0.0000028115,0.0000028188, +0.0000028254,0.0000028306,0.0000028353,0.0000028416,0.0000028469, +0.0000028486,0.0000028479,0.0000028444,0.0000028404,0.0000028361, +0.0000028313,0.0000028281,0.0000028266,0.0000028258,0.0000028262, +0.0000028286,0.0000028319,0.0000028347,0.0000028354,0.0000028342, +0.0000028327,0.0000028307,0.0000028257,0.0000028186,0.0000028142, +0.0000028132,0.0000028131,0.0000028120,0.0000028094,0.0000028061, +0.0000028030,0.0000028005,0.0000027985,0.0000027943,0.0000027923, +0.0000027918,0.0000027866,0.0000027778,0.0000027733,0.0000027717, +0.0000027731,0.0000027798,0.0000027857,0.0000027862,0.0000027833, +0.0000027805,0.0000027792,0.0000027848,0.0000028033,0.0000028209, +0.0000028263,0.0000028237,0.0000028199,0.0000028208,0.0000028226, +0.0000028240,0.0000028308,0.0000028444,0.0000028512,0.0000028415, +0.0000028224,0.0000028117,0.0000028099,0.0000028081,0.0000028056, +0.0000028004,0.0000027968,0.0000027997,0.0000027997,0.0000027931, +0.0000027929,0.0000027950,0.0000027965,0.0000027984,0.0000028037, +0.0000028147,0.0000028262,0.0000028362,0.0000028439,0.0000028498, +0.0000028541,0.0000028568,0.0000028563,0.0000028542,0.0000028533, +0.0000028553,0.0000028574,0.0000028583,0.0000028583,0.0000028578, +0.0000028572,0.0000028605,0.0000028755,0.0000028861,0.0000028796, +0.0000028576,0.0000028501,0.0000028583,0.0000028708,0.0000028756, +0.0000028728,0.0000028712,0.0000028826,0.0000028975,0.0000029086, +0.0000029138,0.0000029144,0.0000029150,0.0000029144,0.0000029125, +0.0000029108,0.0000029101,0.0000029086,0.0000029047,0.0000028973, +0.0000028888,0.0000028805,0.0000028698,0.0000028559,0.0000028431, +0.0000028370,0.0000028366,0.0000028397,0.0000028438,0.0000028468, +0.0000028474,0.0000028447,0.0000028395,0.0000028316,0.0000028193, +0.0000028084,0.0000028016,0.0000028003,0.0000028033,0.0000028064, +0.0000028102,0.0000028148,0.0000028207,0.0000028259,0.0000028311, +0.0000028343,0.0000028348,0.0000028316,0.0000028225,0.0000028081, +0.0000027899,0.0000027712,0.0000027586,0.0000027588,0.0000027645, +0.0000027716,0.0000027742,0.0000027720,0.0000027676,0.0000027637, +0.0000027658,0.0000027758,0.0000027816,0.0000027788,0.0000027709, +0.0000027609,0.0000027565,0.0000027596,0.0000027677,0.0000027774, +0.0000027830,0.0000027815,0.0000027749,0.0000027680,0.0000027637, +0.0000027667,0.0000027736,0.0000027830,0.0000027896,0.0000027966, +0.0000028014,0.0000028017,0.0000028022,0.0000028026,0.0000027928, +0.0000027703,0.0000027525,0.0000027462,0.0000027451,0.0000027400, +0.0000027294,0.0000027187,0.0000027106,0.0000027066,0.0000027071, +0.0000027149,0.0000027329,0.0000027529,0.0000027578,0.0000027494, +0.0000027446,0.0000027514,0.0000027637,0.0000027659,0.0000027588, +0.0000027656,0.0000027812,0.0000027869,0.0000027907,0.0000027927, +0.0000027952,0.0000028023,0.0000028060,0.0000028054,0.0000028031, +0.0000028025,0.0000028049,0.0000028070,0.0000028069,0.0000028030, +0.0000027954,0.0000027884,0.0000027832,0.0000027805,0.0000027791, +0.0000027793,0.0000027806,0.0000027829,0.0000027853,0.0000027868, +0.0000027873,0.0000027861,0.0000027893,0.0000027940,0.0000027969, +0.0000027963,0.0000027927,0.0000027868,0.0000027830,0.0000027820, +0.0000027834,0.0000027892,0.0000027930,0.0000027940,0.0000027941, +0.0000027963,0.0000028010,0.0000028055,0.0000028078,0.0000028062, +0.0000027993,0.0000027946,0.0000028056,0.0000028184,0.0000028287, +0.0000028255,0.0000028195,0.0000028149,0.0000028160,0.0000028253, +0.0000028407,0.0000028525,0.0000028577,0.0000028577,0.0000028540, +0.0000028528,0.0000028540,0.0000028572,0.0000028602,0.0000028578, +0.0000028503,0.0000028437,0.0000028404,0.0000028423,0.0000028510, +0.0000028555,0.0000028557,0.0000028511,0.0000028395,0.0000028249, +0.0000028172,0.0000028210,0.0000028385,0.0000028577,0.0000028668, +0.0000028698,0.0000028742,0.0000028810,0.0000028814,0.0000028776, +0.0000028774,0.0000028806,0.0000028852,0.0000028869,0.0000028845, +0.0000028799,0.0000028727,0.0000028643,0.0000028577,0.0000028524, +0.0000028471,0.0000028422,0.0000028362,0.0000028333,0.0000028349, +0.0000028449,0.0000028567,0.0000028637,0.0000028662,0.0000028661, +0.0000028642,0.0000028650,0.0000028683,0.0000028737,0.0000028760, +0.0000028766,0.0000028797,0.0000028798,0.0000028762,0.0000028689, +0.0000028603,0.0000028547,0.0000028481,0.0000028366,0.0000028220, +0.0000028119,0.0000028079,0.0000028057,0.0000028036,0.0000028002, +0.0000027971,0.0000027970,0.0000028025,0.0000028130,0.0000028242, +0.0000028313,0.0000028322,0.0000028318,0.0000028344,0.0000028422, +0.0000028523,0.0000028617,0.0000028726,0.0000028838,0.0000028926, +0.0000028970,0.0000028962,0.0000028915,0.0000028821,0.0000028726, +0.0000028653,0.0000028603,0.0000028597,0.0000028618,0.0000028642, +0.0000028658,0.0000028669,0.0000028655,0.0000028620,0.0000028571, +0.0000028496,0.0000028402,0.0000028300,0.0000028212,0.0000028168, +0.0000028213,0.0000028305,0.0000028362,0.0000028338,0.0000028221, +0.0000028037,0.0000027873,0.0000027823,0.0000027871,0.0000028001, +0.0000028117,0.0000028210,0.0000028283,0.0000028330,0.0000028324, +0.0000028295,0.0000028286,0.0000028278,0.0000028284,0.0000028319, +0.0000028403,0.0000028491,0.0000028536,0.0000028567,0.0000028632, +0.0000028690,0.0000028685,0.0000028597,0.0000028476,0.0000028418, +0.0000028439,0.0000028473,0.0000028496,0.0000028505,0.0000028528, +0.0000028605,0.0000028711,0.0000028782,0.0000028785,0.0000028751, +0.0000028620,0.0000028443,0.0000028386,0.0000028436,0.0000028485, +0.0000028508,0.0000028534,0.0000028544,0.0000028508,0.0000028430, +0.0000028352,0.0000028296,0.0000028267,0.0000028253,0.0000028249, +0.0000028247,0.0000028260,0.0000028287,0.0000028306,0.0000028323, +0.0000028346,0.0000028367,0.0000028373,0.0000028360,0.0000028316, +0.0000028263,0.0000028212,0.0000028180,0.0000028180,0.0000028193, +0.0000028185,0.0000028122,0.0000027998,0.0000027858,0.0000027736, +0.0000027655,0.0000027632,0.0000027641,0.0000027677,0.0000027701, +0.0000027723,0.0000027752,0.0000027795,0.0000027847,0.0000027879, +0.0000027861,0.0000027783,0.0000027670,0.0000027634,0.0000027690, +0.0000027779,0.0000027878,0.0000027944,0.0000027958,0.0000027967, +0.0000028004,0.0000028050,0.0000028094,0.0000028150,0.0000028201, +0.0000028212,0.0000028169,0.0000028113,0.0000028119,0.0000028176, +0.0000028236,0.0000028250,0.0000028219,0.0000028145,0.0000028070, +0.0000028014,0.0000027989,0.0000027937,0.0000027895,0.0000027889, +0.0000027925,0.0000027987,0.0000028056,0.0000028129,0.0000028163, +0.0000028141,0.0000028132,0.0000028173,0.0000028141,0.0000028105, +0.0000028118,0.0000028129,0.0000028179,0.0000028292,0.0000028391, +0.0000028432,0.0000028420,0.0000028359,0.0000028268,0.0000028166, +0.0000028072,0.0000027996,0.0000027927,0.0000027867,0.0000027819, +0.0000027797,0.0000027770,0.0000027741,0.0000027706,0.0000027662, +0.0000027618,0.0000027577,0.0000027540,0.0000027524,0.0000027535, +0.0000027600,0.0000027707,0.0000027821,0.0000027900,0.0000027919, +0.0000027901,0.0000027861,0.0000027796,0.0000027723,0.0000027674, +0.0000027661,0.0000027660,0.0000027656,0.0000027657,0.0000027689, +0.0000027743,0.0000027776,0.0000027769,0.0000027752,0.0000027755, +0.0000027802,0.0000027906,0.0000028044,0.0000028180,0.0000028275, +0.0000028321,0.0000028333,0.0000028305,0.0000028146,0.0000027925, +0.0000027827,0.0000027876,0.0000028040,0.0000028188,0.0000028182, +0.0000028040,0.0000027916,0.0000027928,0.0000028118,0.0000028397, +0.0000028559,0.0000028580,0.0000028589,0.0000028632,0.0000028725, +0.0000028866,0.0000029029,0.0000029179,0.0000029325,0.0000029485, +0.0000029615,0.0000029686,0.0000029724,0.0000029747,0.0000029732, +0.0000029643,0.0000029488,0.0000029330,0.0000029222,0.0000029172, +0.0000029127,0.0000029031,0.0000028918,0.0000028846,0.0000028832, +0.0000028832,0.0000028856,0.0000028907,0.0000028952,0.0000028966, +0.0000028953,0.0000028907,0.0000028851,0.0000028790,0.0000028743, +0.0000028717,0.0000028707,0.0000028711,0.0000028726,0.0000028735, +0.0000028733,0.0000028716,0.0000028693,0.0000028687,0.0000028696, +0.0000028726,0.0000028769,0.0000028785,0.0000028760,0.0000028697, +0.0000028644,0.0000028611,0.0000028582,0.0000028544,0.0000028492, +0.0000028429,0.0000028368,0.0000028316,0.0000028271,0.0000028232, +0.0000028216,0.0000028248,0.0000028301,0.0000028340,0.0000028340, +0.0000028336,0.0000028341,0.0000028361,0.0000028368,0.0000028359, +0.0000028340,0.0000028310,0.0000028272,0.0000028218,0.0000028161, +0.0000028122,0.0000028094,0.0000028090,0.0000028110,0.0000028161, +0.0000028228,0.0000028286,0.0000028316,0.0000028321,0.0000028331, +0.0000028341,0.0000028316,0.0000028254,0.0000028214,0.0000028213, +0.0000028210,0.0000028176,0.0000028106,0.0000028035,0.0000027991, +0.0000028010,0.0000028030,0.0000028004,0.0000027972,0.0000027937, +0.0000027843,0.0000027742,0.0000027694,0.0000027676,0.0000027705, +0.0000027782,0.0000027828,0.0000027816,0.0000027782,0.0000027759, +0.0000027758,0.0000027862,0.0000028070,0.0000028220,0.0000028243, +0.0000028196,0.0000028172,0.0000028198,0.0000028222,0.0000028235, +0.0000028296,0.0000028438,0.0000028519,0.0000028438,0.0000028246, +0.0000028126,0.0000028104,0.0000028098,0.0000028094,0.0000028068, +0.0000028045,0.0000028064,0.0000028043,0.0000027966,0.0000027943, +0.0000027952,0.0000027968,0.0000028011,0.0000028096,0.0000028201, +0.0000028296,0.0000028393,0.0000028476,0.0000028525,0.0000028542, +0.0000028537,0.0000028521,0.0000028512,0.0000028525,0.0000028556, +0.0000028596,0.0000028620,0.0000028627,0.0000028618,0.0000028589, +0.0000028588,0.0000028690,0.0000028849,0.0000028896,0.0000028725, +0.0000028534,0.0000028524,0.0000028645,0.0000028746,0.0000028762, +0.0000028726,0.0000028764,0.0000028882,0.0000029011,0.0000029094, +0.0000029143,0.0000029152,0.0000029162,0.0000029145,0.0000029103, +0.0000029047,0.0000028983,0.0000028918,0.0000028852,0.0000028796, +0.0000028738,0.0000028640,0.0000028489,0.0000028339,0.0000028264, +0.0000028257,0.0000028282,0.0000028332,0.0000028382,0.0000028419, +0.0000028427,0.0000028404,0.0000028349,0.0000028246,0.0000028134, +0.0000028047,0.0000028015,0.0000028028,0.0000028053,0.0000028079, +0.0000028115,0.0000028152,0.0000028195,0.0000028227,0.0000028249, +0.0000028247,0.0000028216,0.0000028134,0.0000027994,0.0000027815, +0.0000027643,0.0000027511,0.0000027492,0.0000027529,0.0000027608, +0.0000027680,0.0000027713,0.0000027702,0.0000027659,0.0000027631, +0.0000027678,0.0000027757,0.0000027785,0.0000027750,0.0000027666, +0.0000027562,0.0000027506,0.0000027523,0.0000027586,0.0000027654, +0.0000027698,0.0000027717,0.0000027738,0.0000027754,0.0000027744, +0.0000027714,0.0000027745,0.0000027828,0.0000027915,0.0000028012, +0.0000028070,0.0000028065,0.0000028061,0.0000028044,0.0000027890, +0.0000027669,0.0000027535,0.0000027486,0.0000027461,0.0000027402, +0.0000027307,0.0000027206,0.0000027150,0.0000027145,0.0000027188, +0.0000027295,0.0000027487,0.0000027592,0.0000027546,0.0000027472, +0.0000027487,0.0000027582,0.0000027662,0.0000027601,0.0000027582, +0.0000027737,0.0000027862,0.0000027915,0.0000027956,0.0000027962, +0.0000028002,0.0000028065,0.0000028084,0.0000028074,0.0000028056, +0.0000028061,0.0000028056,0.0000028017,0.0000027964,0.0000027905, +0.0000027867,0.0000027853,0.0000027851,0.0000027852,0.0000027865, +0.0000027900,0.0000027941,0.0000027960,0.0000027969,0.0000027953, +0.0000027943,0.0000027944,0.0000027966,0.0000027989,0.0000027979, +0.0000027950,0.0000027897,0.0000027854,0.0000027833,0.0000027837, +0.0000027844,0.0000027893,0.0000027934,0.0000027950,0.0000027945, +0.0000027983,0.0000028049,0.0000028105,0.0000028137,0.0000028125, +0.0000028064,0.0000028025,0.0000028123,0.0000028250,0.0000028355, +0.0000028331,0.0000028284,0.0000028265,0.0000028285,0.0000028356, +0.0000028506,0.0000028645,0.0000028717,0.0000028716,0.0000028669, +0.0000028621,0.0000028582,0.0000028574,0.0000028600,0.0000028623, +0.0000028613,0.0000028585,0.0000028567,0.0000028570,0.0000028603, +0.0000028619,0.0000028610,0.0000028567,0.0000028448,0.0000028289, +0.0000028187,0.0000028194,0.0000028353,0.0000028549,0.0000028657, +0.0000028695,0.0000028730,0.0000028794,0.0000028812,0.0000028782, +0.0000028773,0.0000028794,0.0000028826,0.0000028846,0.0000028831, +0.0000028798,0.0000028739,0.0000028661,0.0000028597,0.0000028549, +0.0000028501,0.0000028439,0.0000028369,0.0000028308,0.0000028315, +0.0000028410,0.0000028531,0.0000028635,0.0000028698,0.0000028722, +0.0000028697,0.0000028665,0.0000028677,0.0000028739,0.0000028772, +0.0000028769,0.0000028772,0.0000028805,0.0000028798,0.0000028783, +0.0000028755,0.0000028738,0.0000028737,0.0000028698,0.0000028598, +0.0000028469,0.0000028380,0.0000028337,0.0000028324,0.0000028307, +0.0000028281,0.0000028260,0.0000028270,0.0000028327,0.0000028394, +0.0000028435,0.0000028424,0.0000028358,0.0000028310,0.0000028305, +0.0000028368,0.0000028470,0.0000028569,0.0000028685,0.0000028804, +0.0000028893,0.0000028942,0.0000028946,0.0000028898,0.0000028819, +0.0000028725,0.0000028649,0.0000028605,0.0000028597,0.0000028613, +0.0000028639,0.0000028657,0.0000028673,0.0000028664,0.0000028654, +0.0000028634,0.0000028603,0.0000028554,0.0000028481,0.0000028393, +0.0000028307,0.0000028252,0.0000028231,0.0000028251,0.0000028255, +0.0000028226,0.0000028142,0.0000028027,0.0000027886,0.0000027802, +0.0000027837,0.0000027945,0.0000028053,0.0000028153,0.0000028230, +0.0000028254,0.0000028257,0.0000028269,0.0000028265,0.0000028254, +0.0000028235,0.0000028250,0.0000028331,0.0000028434,0.0000028516, +0.0000028588,0.0000028646,0.0000028650,0.0000028586,0.0000028480, +0.0000028414,0.0000028431,0.0000028466,0.0000028489,0.0000028494, +0.0000028512,0.0000028594,0.0000028701,0.0000028764,0.0000028764, +0.0000028707,0.0000028543,0.0000028394,0.0000028383,0.0000028439, +0.0000028439,0.0000028455,0.0000028478,0.0000028481,0.0000028441, +0.0000028374,0.0000028324,0.0000028293,0.0000028269,0.0000028245, +0.0000028222,0.0000028213,0.0000028226,0.0000028247,0.0000028260, +0.0000028281,0.0000028318,0.0000028343,0.0000028349,0.0000028336, +0.0000028286,0.0000028226,0.0000028177,0.0000028137,0.0000028111, +0.0000028077,0.0000028011,0.0000027915,0.0000027817,0.0000027735, +0.0000027664,0.0000027609,0.0000027588,0.0000027599,0.0000027635, +0.0000027664,0.0000027676,0.0000027692,0.0000027732,0.0000027777, +0.0000027806,0.0000027780,0.0000027707,0.0000027630,0.0000027603, +0.0000027651,0.0000027722,0.0000027811,0.0000027920,0.0000027977, +0.0000027986,0.0000027999,0.0000028014,0.0000028019,0.0000028072, +0.0000028152,0.0000028204,0.0000028199,0.0000028163,0.0000028133, +0.0000028152,0.0000028195,0.0000028237,0.0000028254,0.0000028228, +0.0000028163,0.0000028111,0.0000028065,0.0000028015,0.0000027950, +0.0000027898,0.0000027866,0.0000027867,0.0000027928,0.0000028027, +0.0000028125,0.0000028157,0.0000028134,0.0000028148,0.0000028211, +0.0000028207,0.0000028175,0.0000028193,0.0000028207,0.0000028232, +0.0000028295,0.0000028369,0.0000028405,0.0000028386,0.0000028318, +0.0000028228,0.0000028145,0.0000028079,0.0000028014,0.0000027943, +0.0000027878,0.0000027850,0.0000027834,0.0000027818,0.0000027790, +0.0000027746,0.0000027689,0.0000027630,0.0000027566,0.0000027510, +0.0000027487,0.0000027504,0.0000027597,0.0000027750,0.0000027906, +0.0000027992,0.0000027985,0.0000027931,0.0000027860,0.0000027787, +0.0000027733,0.0000027711,0.0000027714,0.0000027719,0.0000027724, +0.0000027737,0.0000027776,0.0000027834,0.0000027870,0.0000027868, +0.0000027849,0.0000027847,0.0000027889,0.0000027969,0.0000028072, +0.0000028187,0.0000028285,0.0000028329,0.0000028329,0.0000028283, +0.0000028122,0.0000027923,0.0000027840,0.0000027889,0.0000028053, +0.0000028199,0.0000028203,0.0000028070,0.0000027941,0.0000027969, +0.0000028190,0.0000028466,0.0000028600,0.0000028614,0.0000028624, +0.0000028655,0.0000028728,0.0000028867,0.0000029049,0.0000029222, +0.0000029373,0.0000029514,0.0000029623,0.0000029685,0.0000029721, +0.0000029742,0.0000029738,0.0000029686,0.0000029558,0.0000029389, +0.0000029249,0.0000029177,0.0000029139,0.0000029065,0.0000028949, +0.0000028845,0.0000028814,0.0000028826,0.0000028874,0.0000028937, +0.0000028986,0.0000029001,0.0000028972,0.0000028895,0.0000028836, +0.0000028816,0.0000028807,0.0000028784,0.0000028749,0.0000028724, +0.0000028728,0.0000028756,0.0000028793,0.0000028819,0.0000028806, +0.0000028759,0.0000028726,0.0000028739,0.0000028792,0.0000028835, +0.0000028831,0.0000028773,0.0000028698,0.0000028652,0.0000028640, +0.0000028638,0.0000028622,0.0000028581,0.0000028523,0.0000028467, +0.0000028423,0.0000028390,0.0000028355,0.0000028335,0.0000028340, +0.0000028353,0.0000028326,0.0000028276,0.0000028240,0.0000028244, +0.0000028268,0.0000028283,0.0000028304,0.0000028298,0.0000028276, +0.0000028226,0.0000028157,0.0000028085,0.0000028016,0.0000027975, +0.0000027973,0.0000028010,0.0000028080,0.0000028170,0.0000028249, +0.0000028301,0.0000028334,0.0000028372,0.0000028400,0.0000028377, +0.0000028305,0.0000028262,0.0000028266,0.0000028271,0.0000028233, +0.0000028130,0.0000028017,0.0000027985,0.0000028029,0.0000028074, +0.0000028048,0.0000028005,0.0000027925,0.0000027789,0.0000027687, +0.0000027637,0.0000027631,0.0000027688,0.0000027764,0.0000027788, +0.0000027762,0.0000027725,0.0000027711,0.0000027733,0.0000027895, +0.0000028112,0.0000028221,0.0000028207,0.0000028149,0.0000028139, +0.0000028177,0.0000028204,0.0000028214,0.0000028266,0.0000028420, +0.0000028522,0.0000028462,0.0000028273,0.0000028134,0.0000028103, +0.0000028106,0.0000028122,0.0000028123,0.0000028115,0.0000028129, +0.0000028093,0.0000028008,0.0000027974,0.0000027966,0.0000027979, +0.0000028041,0.0000028154,0.0000028255,0.0000028331,0.0000028414, +0.0000028494,0.0000028537,0.0000028543,0.0000028530,0.0000028518, +0.0000028518,0.0000028529,0.0000028547,0.0000028579,0.0000028613, +0.0000028636,0.0000028648,0.0000028625,0.0000028606,0.0000028658, +0.0000028809,0.0000028924,0.0000028879,0.0000028656,0.0000028517, +0.0000028566,0.0000028698,0.0000028771,0.0000028762,0.0000028745, +0.0000028804,0.0000028897,0.0000028998,0.0000029078,0.0000029139, +0.0000029172,0.0000029186,0.0000029138,0.0000029044,0.0000028943, +0.0000028850,0.0000028798,0.0000028768,0.0000028712,0.0000028601, +0.0000028450,0.0000028308,0.0000028226,0.0000028214,0.0000028226, +0.0000028258,0.0000028301,0.0000028347,0.0000028382,0.0000028392, +0.0000028370,0.0000028298,0.0000028214,0.0000028137,0.0000028104, +0.0000028111,0.0000028143,0.0000028174,0.0000028211,0.0000028232, +0.0000028259,0.0000028265,0.0000028260,0.0000028235,0.0000028186, +0.0000028092,0.0000027970,0.0000027821,0.0000027672,0.0000027543, +0.0000027493,0.0000027517,0.0000027575,0.0000027658,0.0000027728, +0.0000027757,0.0000027739,0.0000027704,0.0000027690,0.0000027732, +0.0000027783,0.0000027803,0.0000027767,0.0000027682,0.0000027569, +0.0000027494,0.0000027469,0.0000027495,0.0000027542,0.0000027571, +0.0000027597,0.0000027656,0.0000027748,0.0000027790,0.0000027772, +0.0000027777,0.0000027845,0.0000027946,0.0000028057,0.0000028120, +0.0000028113,0.0000028098,0.0000028042,0.0000027854,0.0000027663, +0.0000027556,0.0000027513,0.0000027484,0.0000027424,0.0000027332, +0.0000027253,0.0000027231,0.0000027245,0.0000027297,0.0000027426, +0.0000027585,0.0000027603,0.0000027519,0.0000027494,0.0000027540, +0.0000027618,0.0000027631,0.0000027544,0.0000027626,0.0000027815, +0.0000027911,0.0000027961,0.0000027986,0.0000027998,0.0000028052, +0.0000028108,0.0000028122,0.0000028097,0.0000028073,0.0000028046, +0.0000027962,0.0000027876,0.0000027840,0.0000027828,0.0000027841, +0.0000027852,0.0000027861,0.0000027900,0.0000027958,0.0000028018, +0.0000028049,0.0000028044,0.0000028045,0.0000028030,0.0000028001, +0.0000027981,0.0000027971,0.0000027950,0.0000027919,0.0000027881, +0.0000027839,0.0000027822,0.0000027813,0.0000027817,0.0000027833, +0.0000027878,0.0000027907,0.0000027925,0.0000027922,0.0000027955, +0.0000028025,0.0000028097,0.0000028146,0.0000028138,0.0000028085, +0.0000028067,0.0000028168,0.0000028303,0.0000028398,0.0000028381, +0.0000028359,0.0000028370,0.0000028383,0.0000028436,0.0000028596, +0.0000028753,0.0000028831,0.0000028815,0.0000028734,0.0000028644, +0.0000028589,0.0000028584,0.0000028630,0.0000028692,0.0000028716, +0.0000028691,0.0000028640,0.0000028609,0.0000028605,0.0000028636, +0.0000028642,0.0000028615,0.0000028501,0.0000028336,0.0000028222, +0.0000028212,0.0000028336,0.0000028512,0.0000028622,0.0000028664, +0.0000028703,0.0000028770,0.0000028806,0.0000028783,0.0000028766, +0.0000028773,0.0000028801,0.0000028837,0.0000028841,0.0000028814, +0.0000028768,0.0000028703,0.0000028644,0.0000028601,0.0000028555, +0.0000028480,0.0000028398,0.0000028321,0.0000028322,0.0000028423, +0.0000028543,0.0000028642,0.0000028722,0.0000028760,0.0000028748, +0.0000028678,0.0000028671,0.0000028720,0.0000028766,0.0000028778, +0.0000028762,0.0000028761,0.0000028759,0.0000028744,0.0000028729, +0.0000028720,0.0000028738,0.0000028746,0.0000028732,0.0000028672, +0.0000028592,0.0000028520,0.0000028479,0.0000028464,0.0000028443, +0.0000028407,0.0000028372,0.0000028361,0.0000028379,0.0000028408, +0.0000028430,0.0000028417,0.0000028366,0.0000028317,0.0000028298, +0.0000028340,0.0000028418,0.0000028504,0.0000028608,0.0000028715, +0.0000028804,0.0000028856,0.0000028877,0.0000028851,0.0000028781, +0.0000028682,0.0000028602,0.0000028547,0.0000028534,0.0000028550, +0.0000028589,0.0000028617,0.0000028639,0.0000028647,0.0000028650, +0.0000028633,0.0000028603,0.0000028561,0.0000028505,0.0000028441, +0.0000028391,0.0000028369,0.0000028313,0.0000028244,0.0000028200, +0.0000028159,0.0000028109,0.0000028073,0.0000028020,0.0000027911, +0.0000027831,0.0000027834,0.0000027904,0.0000028004,0.0000028100, +0.0000028160,0.0000028206,0.0000028251,0.0000028267,0.0000028262, +0.0000028232,0.0000028181,0.0000028189,0.0000028294,0.0000028437, +0.0000028544,0.0000028608,0.0000028613,0.0000028564,0.0000028469, +0.0000028400,0.0000028414,0.0000028458,0.0000028487,0.0000028490, +0.0000028509,0.0000028589,0.0000028686,0.0000028739,0.0000028737, +0.0000028650,0.0000028467,0.0000028361,0.0000028373,0.0000028418, +0.0000028388,0.0000028414,0.0000028448,0.0000028452,0.0000028414, +0.0000028358,0.0000028316,0.0000028276,0.0000028231,0.0000028183, +0.0000028147,0.0000028143,0.0000028151,0.0000028153,0.0000028150, +0.0000028161,0.0000028196,0.0000028218,0.0000028220,0.0000028193, +0.0000028132,0.0000028069,0.0000028021,0.0000027995,0.0000027980, +0.0000027953,0.0000027899,0.0000027831,0.0000027763,0.0000027707, +0.0000027651,0.0000027610,0.0000027596,0.0000027607,0.0000027628, +0.0000027652,0.0000027659,0.0000027659,0.0000027666,0.0000027675, +0.0000027691,0.0000027674,0.0000027629,0.0000027596,0.0000027587, +0.0000027619,0.0000027660,0.0000027734,0.0000027878,0.0000027989, +0.0000028022,0.0000028007,0.0000027985,0.0000027975,0.0000028006, +0.0000028099,0.0000028186,0.0000028219,0.0000028211,0.0000028188, +0.0000028173,0.0000028184,0.0000028234,0.0000028291,0.0000028320, +0.0000028295,0.0000028254,0.0000028205,0.0000028150,0.0000028082, +0.0000028018,0.0000027939,0.0000027860,0.0000027859,0.0000027910, +0.0000028023,0.0000028128,0.0000028149,0.0000028141,0.0000028163, +0.0000028239,0.0000028257,0.0000028228,0.0000028238,0.0000028266, +0.0000028276,0.0000028287,0.0000028305,0.0000028305,0.0000028272, +0.0000028206,0.0000028132,0.0000028076,0.0000028035,0.0000027979, +0.0000027921,0.0000027900,0.0000027897,0.0000027886,0.0000027851, +0.0000027797,0.0000027731,0.0000027663,0.0000027588,0.0000027508, +0.0000027441,0.0000027401,0.0000027412,0.0000027519,0.0000027711, +0.0000027908,0.0000028026,0.0000028046,0.0000027988,0.0000027884, +0.0000027788,0.0000027743,0.0000027739,0.0000027744,0.0000027741, +0.0000027743,0.0000027763,0.0000027813,0.0000027892,0.0000027962, +0.0000027980,0.0000027956,0.0000027942,0.0000027967,0.0000028020, +0.0000028097,0.0000028200,0.0000028301,0.0000028340,0.0000028335, +0.0000028276,0.0000028114,0.0000027917,0.0000027851,0.0000027905, +0.0000028075,0.0000028221,0.0000028225,0.0000028093,0.0000027962, +0.0000028010,0.0000028260,0.0000028528,0.0000028634,0.0000028639, +0.0000028645,0.0000028661,0.0000028718,0.0000028860,0.0000029063, +0.0000029258,0.0000029417,0.0000029541,0.0000029620,0.0000029658, +0.0000029686,0.0000029716,0.0000029724,0.0000029692,0.0000029608, +0.0000029477,0.0000029335,0.0000029231,0.0000029165,0.0000029097, +0.0000029003,0.0000028895,0.0000028827,0.0000028816,0.0000028860, +0.0000028944,0.0000029024,0.0000029061,0.0000029037,0.0000028931, +0.0000028805,0.0000028753,0.0000028777,0.0000028814,0.0000028817, +0.0000028789,0.0000028762,0.0000028761,0.0000028787,0.0000028825, +0.0000028849,0.0000028837,0.0000028802,0.0000028789,0.0000028820, +0.0000028865,0.0000028881,0.0000028849,0.0000028774,0.0000028697, +0.0000028655,0.0000028650,0.0000028651,0.0000028636,0.0000028597, +0.0000028543,0.0000028493,0.0000028444,0.0000028402,0.0000028350, +0.0000028314,0.0000028288,0.0000028248,0.0000028195,0.0000028164, +0.0000028188,0.0000028244,0.0000028285,0.0000028320,0.0000028335, +0.0000028327,0.0000028288,0.0000028222,0.0000028140,0.0000028055, +0.0000027977,0.0000027940,0.0000027945,0.0000027991,0.0000028069, +0.0000028161,0.0000028242,0.0000028313,0.0000028381,0.0000028439, +0.0000028457,0.0000028410,0.0000028322,0.0000028281,0.0000028294, +0.0000028310,0.0000028269,0.0000028138,0.0000028008,0.0000027990, +0.0000028061,0.0000028107,0.0000028079,0.0000028011,0.0000027873, +0.0000027720,0.0000027626,0.0000027587,0.0000027606,0.0000027681, +0.0000027746,0.0000027749,0.0000027704,0.0000027673,0.0000027670, +0.0000027732,0.0000027932,0.0000028138,0.0000028205,0.0000028166, +0.0000028098,0.0000028097,0.0000028141,0.0000028172,0.0000028184, +0.0000028231,0.0000028382,0.0000028507,0.0000028479,0.0000028301, +0.0000028140,0.0000028089,0.0000028098,0.0000028133,0.0000028156, +0.0000028166,0.0000028185,0.0000028141,0.0000028047,0.0000028004, +0.0000027987,0.0000027994,0.0000028073,0.0000028207,0.0000028310, +0.0000028369,0.0000028432,0.0000028499,0.0000028541,0.0000028551, +0.0000028537,0.0000028535,0.0000028534,0.0000028510,0.0000028472, +0.0000028481,0.0000028532,0.0000028596,0.0000028643,0.0000028644, +0.0000028626,0.0000028656,0.0000028773,0.0000028915,0.0000028964, +0.0000028831,0.0000028613,0.0000028542,0.0000028620,0.0000028729, +0.0000028773,0.0000028768,0.0000028755,0.0000028791,0.0000028868, +0.0000028941,0.0000029031,0.0000029124,0.0000029199,0.0000029186, +0.0000029106,0.0000028985,0.0000028875,0.0000028804,0.0000028775, +0.0000028722,0.0000028601,0.0000028454,0.0000028329,0.0000028258, +0.0000028228,0.0000028221,0.0000028237,0.0000028263,0.0000028302, +0.0000028347,0.0000028384,0.0000028391,0.0000028353,0.0000028294, +0.0000028238,0.0000028204,0.0000028199,0.0000028225,0.0000028267, +0.0000028327,0.0000028380,0.0000028433,0.0000028445,0.0000028423, +0.0000028369,0.0000028289,0.0000028181,0.0000028059,0.0000027937, +0.0000027821,0.0000027721,0.0000027652,0.0000027654,0.0000027682, +0.0000027725,0.0000027781,0.0000027815,0.0000027810,0.0000027800, +0.0000027781,0.0000027784,0.0000027813,0.0000027865,0.0000027880, +0.0000027839,0.0000027755,0.0000027636,0.0000027532,0.0000027474, +0.0000027476,0.0000027480,0.0000027491,0.0000027507,0.0000027558, +0.0000027663,0.0000027800,0.0000027846,0.0000027824,0.0000027889, +0.0000027991,0.0000028109,0.0000028173,0.0000028156,0.0000028120, +0.0000028029,0.0000027834,0.0000027679,0.0000027590,0.0000027550, +0.0000027515,0.0000027450,0.0000027375,0.0000027332,0.0000027322, +0.0000027335,0.0000027391,0.0000027533,0.0000027633,0.0000027586, +0.0000027512,0.0000027518,0.0000027573,0.0000027625,0.0000027589, +0.0000027542,0.0000027690,0.0000027872,0.0000027949,0.0000027984, +0.0000028003,0.0000028036,0.0000028090,0.0000028134,0.0000028145, +0.0000028101,0.0000028045,0.0000027946,0.0000027829,0.0000027790, +0.0000027801,0.0000027823,0.0000027840,0.0000027856,0.0000027896, +0.0000027973,0.0000028049,0.0000028087,0.0000028110,0.0000028102, +0.0000028090,0.0000028048,0.0000027971,0.0000027927,0.0000027907, +0.0000027905,0.0000027887,0.0000027862,0.0000027836,0.0000027826, +0.0000027817,0.0000027827,0.0000027869,0.0000027901,0.0000027916, +0.0000027917,0.0000027907,0.0000027922,0.0000027982,0.0000028050, +0.0000028096,0.0000028098,0.0000028084,0.0000028101,0.0000028205, +0.0000028349,0.0000028421,0.0000028416,0.0000028423,0.0000028450, +0.0000028444,0.0000028505,0.0000028682,0.0000028841,0.0000028896, +0.0000028853,0.0000028738,0.0000028642,0.0000028607,0.0000028628, +0.0000028685,0.0000028727,0.0000028741,0.0000028705,0.0000028638, +0.0000028583,0.0000028570,0.0000028607,0.0000028640,0.0000028638, +0.0000028536,0.0000028376,0.0000028255,0.0000028237,0.0000028336, +0.0000028487,0.0000028589,0.0000028630,0.0000028667,0.0000028743, +0.0000028797,0.0000028784,0.0000028755,0.0000028752,0.0000028775, +0.0000028825,0.0000028851,0.0000028840,0.0000028811,0.0000028764, +0.0000028709,0.0000028667,0.0000028615,0.0000028532,0.0000028454, +0.0000028394,0.0000028390,0.0000028486,0.0000028592,0.0000028667, +0.0000028723,0.0000028757,0.0000028760,0.0000028687,0.0000028648, +0.0000028673,0.0000028740,0.0000028761,0.0000028760,0.0000028720, +0.0000028711,0.0000028691,0.0000028673,0.0000028657,0.0000028651, +0.0000028666,0.0000028675,0.0000028655,0.0000028603,0.0000028531, +0.0000028462,0.0000028427,0.0000028415,0.0000028398,0.0000028374, +0.0000028336,0.0000028324,0.0000028346,0.0000028388,0.0000028425, +0.0000028427,0.0000028398,0.0000028337,0.0000028271,0.0000028256, +0.0000028278,0.0000028336,0.0000028421,0.0000028513,0.0000028593, +0.0000028650,0.0000028687,0.0000028681,0.0000028637,0.0000028554, +0.0000028479,0.0000028431,0.0000028425,0.0000028447,0.0000028499, +0.0000028543,0.0000028581,0.0000028615,0.0000028643,0.0000028651, +0.0000028644,0.0000028618,0.0000028560,0.0000028470,0.0000028394, +0.0000028367,0.0000028349,0.0000028300,0.0000028226,0.0000028148, +0.0000028072,0.0000028035,0.0000028025,0.0000028002,0.0000027937, +0.0000027857,0.0000027840,0.0000027869,0.0000027942,0.0000028022, +0.0000028108,0.0000028191,0.0000028246,0.0000028254,0.0000028230, +0.0000028172,0.0000028123,0.0000028177,0.0000028339,0.0000028493, +0.0000028585,0.0000028594,0.0000028549,0.0000028458,0.0000028379, +0.0000028395,0.0000028448,0.0000028486,0.0000028493,0.0000028514, +0.0000028586,0.0000028664,0.0000028707,0.0000028704,0.0000028581, +0.0000028399,0.0000028329,0.0000028347,0.0000028376,0.0000028344, +0.0000028394,0.0000028439,0.0000028438,0.0000028393,0.0000028333, +0.0000028276,0.0000028214,0.0000028157,0.0000028108,0.0000028093, +0.0000028097,0.0000028102,0.0000028089,0.0000028073,0.0000028081, +0.0000028113,0.0000028126,0.0000028112,0.0000028066,0.0000028015, +0.0000027973,0.0000027955,0.0000027965,0.0000027968,0.0000027949, +0.0000027892,0.0000027814,0.0000027745,0.0000027694,0.0000027650, +0.0000027628,0.0000027625,0.0000027637,0.0000027643,0.0000027642, +0.0000027632,0.0000027618,0.0000027605,0.0000027583,0.0000027565, +0.0000027555,0.0000027542,0.0000027542,0.0000027554,0.0000027577, +0.0000027608,0.0000027677,0.0000027831,0.0000027990,0.0000028060, +0.0000028041,0.0000027984,0.0000027959,0.0000027977,0.0000028062, +0.0000028167,0.0000028243,0.0000028286,0.0000028291,0.0000028284, +0.0000028279,0.0000028305,0.0000028359,0.0000028414,0.0000028424, +0.0000028396,0.0000028342,0.0000028276,0.0000028216,0.0000028171, +0.0000028088,0.0000027966,0.0000027898,0.0000027893,0.0000027939, +0.0000028037,0.0000028095,0.0000028122,0.0000028145,0.0000028163, +0.0000028235,0.0000028290,0.0000028275,0.0000028267,0.0000028288, +0.0000028300,0.0000028294,0.0000028267,0.0000028223,0.0000028163, +0.0000028103,0.0000028057,0.0000028033,0.0000028002,0.0000027969, +0.0000027953,0.0000027944,0.0000027932,0.0000027899,0.0000027848, +0.0000027800,0.0000027758,0.0000027709,0.0000027645,0.0000027572, +0.0000027501,0.0000027450,0.0000027448,0.0000027535,0.0000027694, +0.0000027858,0.0000027987,0.0000028043,0.0000028017,0.0000027927, +0.0000027815,0.0000027753,0.0000027750,0.0000027755,0.0000027750, +0.0000027752,0.0000027774,0.0000027830,0.0000027934,0.0000028039, +0.0000028074,0.0000028048,0.0000028020,0.0000028027,0.0000028064, +0.0000028125,0.0000028220,0.0000028323,0.0000028359,0.0000028348, +0.0000028278,0.0000028099,0.0000027902,0.0000027854,0.0000027923, +0.0000028105,0.0000028248,0.0000028239,0.0000028102,0.0000027986, +0.0000028057,0.0000028329,0.0000028582,0.0000028661,0.0000028661, +0.0000028663,0.0000028668,0.0000028705,0.0000028848,0.0000029066, +0.0000029281,0.0000029450,0.0000029562,0.0000029608,0.0000029612, +0.0000029620,0.0000029652,0.0000029676,0.0000029664,0.0000029614, +0.0000029532,0.0000029430,0.0000029328,0.0000029244,0.0000029168, +0.0000029077,0.0000028990,0.0000028908,0.0000028858,0.0000028861, +0.0000028924,0.0000029019,0.0000029091,0.0000029098,0.0000029015, +0.0000028867,0.0000028739,0.0000028693,0.0000028716,0.0000028775, +0.0000028825,0.0000028846,0.0000028830,0.0000028814,0.0000028807, +0.0000028805,0.0000028805,0.0000028809,0.0000028831,0.0000028868, +0.0000028904,0.0000028915,0.0000028893,0.0000028837,0.0000028759, +0.0000028690,0.0000028659,0.0000028651,0.0000028635,0.0000028599, +0.0000028549,0.0000028496,0.0000028444,0.0000028388,0.0000028323, +0.0000028253,0.0000028213,0.0000028168,0.0000028127,0.0000028116, +0.0000028161,0.0000028248,0.0000028311,0.0000028346,0.0000028361, +0.0000028353,0.0000028326,0.0000028278,0.0000028226,0.0000028162, +0.0000028079,0.0000027992,0.0000027951,0.0000027971,0.0000028031, +0.0000028109,0.0000028186,0.0000028252,0.0000028348,0.0000028448, +0.0000028503,0.0000028487,0.0000028413,0.0000028330,0.0000028306, +0.0000028328,0.0000028338,0.0000028276,0.0000028123,0.0000028004, +0.0000028010,0.0000028096,0.0000028133,0.0000028097,0.0000027975, +0.0000027797,0.0000027660,0.0000027586,0.0000027565,0.0000027598, +0.0000027681,0.0000027733,0.0000027714,0.0000027660,0.0000027643, +0.0000027654,0.0000027751,0.0000027959,0.0000028137,0.0000028173, +0.0000028117,0.0000028047,0.0000028046,0.0000028091,0.0000028133, +0.0000028159,0.0000028197,0.0000028322,0.0000028460,0.0000028466, +0.0000028326,0.0000028147,0.0000028065,0.0000028074,0.0000028128, +0.0000028164,0.0000028185,0.0000028218,0.0000028179,0.0000028074, +0.0000028022,0.0000028003,0.0000028007,0.0000028096,0.0000028239, +0.0000028351,0.0000028405,0.0000028442,0.0000028489,0.0000028534, +0.0000028550,0.0000028551,0.0000028557,0.0000028530,0.0000028430, +0.0000028326,0.0000028319,0.0000028394,0.0000028511,0.0000028607, +0.0000028639,0.0000028636,0.0000028662,0.0000028754,0.0000028884, +0.0000028976,0.0000028953,0.0000028784,0.0000028618,0.0000028593, +0.0000028656,0.0000028733,0.0000028770,0.0000028745,0.0000028742, +0.0000028761,0.0000028804,0.0000028852,0.0000028952,0.0000029081, +0.0000029156,0.0000029141,0.0000029072,0.0000028976,0.0000028880, +0.0000028824,0.0000028778,0.0000028676,0.0000028522,0.0000028395, +0.0000028329,0.0000028285,0.0000028254,0.0000028248,0.0000028270, +0.0000028307,0.0000028356,0.0000028419,0.0000028444,0.0000028434, +0.0000028394,0.0000028350,0.0000028301,0.0000028271,0.0000028269, +0.0000028288,0.0000028344,0.0000028426,0.0000028521,0.0000028599, +0.0000028625,0.0000028596,0.0000028521,0.0000028409,0.0000028283, +0.0000028170,0.0000028070,0.0000027981,0.0000027898,0.0000027855, +0.0000027853,0.0000027849,0.0000027849,0.0000027856,0.0000027847, +0.0000027831,0.0000027820,0.0000027831,0.0000027846,0.0000027888, +0.0000027947,0.0000027963,0.0000027926,0.0000027843,0.0000027735, +0.0000027632,0.0000027561,0.0000027516,0.0000027491,0.0000027485, +0.0000027478,0.0000027496,0.0000027586,0.0000027802,0.0000027926, +0.0000027899,0.0000027939,0.0000028045,0.0000028167,0.0000028226, +0.0000028192,0.0000028133,0.0000028021,0.0000027834,0.0000027712, +0.0000027635,0.0000027595,0.0000027550,0.0000027484,0.0000027431, +0.0000027405,0.0000027395,0.0000027397,0.0000027472,0.0000027612, +0.0000027653,0.0000027574,0.0000027519,0.0000027535,0.0000027586, +0.0000027619,0.0000027558,0.0000027549,0.0000027744,0.0000027907, +0.0000027964,0.0000027987,0.0000028020,0.0000028063,0.0000028104, +0.0000028140,0.0000028139,0.0000028078,0.0000027962,0.0000027831, +0.0000027769,0.0000027789,0.0000027823,0.0000027840,0.0000027867, +0.0000027909,0.0000027983,0.0000028049,0.0000028087,0.0000028094, +0.0000028116,0.0000028114,0.0000028090,0.0000028014,0.0000027891, +0.0000027835,0.0000027846,0.0000027863,0.0000027863,0.0000027857, +0.0000027840,0.0000027825,0.0000027830,0.0000027869,0.0000027930, +0.0000027959,0.0000027957,0.0000027933,0.0000027901,0.0000027896, +0.0000027917,0.0000027955,0.0000027998,0.0000028026,0.0000028060, +0.0000028112,0.0000028228,0.0000028379,0.0000028443,0.0000028460, +0.0000028497,0.0000028497,0.0000028488,0.0000028577,0.0000028759, +0.0000028898,0.0000028927,0.0000028846,0.0000028730,0.0000028661, +0.0000028643,0.0000028665,0.0000028712,0.0000028720,0.0000028709, +0.0000028664,0.0000028588,0.0000028530,0.0000028531,0.0000028567, +0.0000028616,0.0000028629,0.0000028554,0.0000028404,0.0000028289, +0.0000028274,0.0000028348,0.0000028470,0.0000028560,0.0000028597, +0.0000028637,0.0000028720,0.0000028779,0.0000028774,0.0000028738, +0.0000028732,0.0000028754,0.0000028814,0.0000028857,0.0000028862, +0.0000028850,0.0000028822,0.0000028781,0.0000028733,0.0000028671, +0.0000028593,0.0000028540,0.0000028519,0.0000028498,0.0000028555, +0.0000028643,0.0000028704,0.0000028721,0.0000028730,0.0000028729, +0.0000028676,0.0000028620,0.0000028641,0.0000028688,0.0000028733, +0.0000028739,0.0000028707,0.0000028673,0.0000028639,0.0000028615, +0.0000028593,0.0000028586,0.0000028593,0.0000028613,0.0000028619, +0.0000028594,0.0000028537,0.0000028450,0.0000028392,0.0000028366, +0.0000028354,0.0000028348,0.0000028329,0.0000028296,0.0000028292, +0.0000028323,0.0000028382,0.0000028426,0.0000028431,0.0000028386, +0.0000028285,0.0000028164,0.0000028090,0.0000028082,0.0000028134, +0.0000028225,0.0000028322,0.0000028406,0.0000028479,0.0000028532, +0.0000028545,0.0000028518,0.0000028451,0.0000028386,0.0000028347, +0.0000028348,0.0000028377,0.0000028438,0.0000028496,0.0000028547, +0.0000028589,0.0000028615,0.0000028625,0.0000028625,0.0000028622, +0.0000028599,0.0000028542,0.0000028467,0.0000028407,0.0000028348, +0.0000028290,0.0000028236,0.0000028166,0.0000028090,0.0000028033, +0.0000028005,0.0000027996,0.0000027980,0.0000027938,0.0000027884, +0.0000027847,0.0000027850,0.0000027890,0.0000027975,0.0000028092, +0.0000028187,0.0000028209,0.0000028192,0.0000028153,0.0000028102, +0.0000028112,0.0000028241,0.0000028421,0.0000028557,0.0000028583, +0.0000028542,0.0000028452,0.0000028361,0.0000028376,0.0000028432, +0.0000028487,0.0000028504,0.0000028523,0.0000028583,0.0000028639, +0.0000028675,0.0000028661,0.0000028508,0.0000028340,0.0000028292, +0.0000028307,0.0000028325,0.0000028318,0.0000028392,0.0000028432, +0.0000028411,0.0000028344,0.0000028275,0.0000028213,0.0000028156, +0.0000028122,0.0000028104,0.0000028110,0.0000028113,0.0000028104, +0.0000028080,0.0000028060,0.0000028076,0.0000028101,0.0000028104, +0.0000028081,0.0000028039,0.0000028007,0.0000027989,0.0000027990, +0.0000027996,0.0000027990,0.0000027948,0.0000027880,0.0000027797, +0.0000027723,0.0000027671,0.0000027638,0.0000027628,0.0000027640, +0.0000027665,0.0000027685,0.0000027665,0.0000027625,0.0000027580, +0.0000027549,0.0000027515,0.0000027487,0.0000027476,0.0000027473, +0.0000027479,0.0000027502,0.0000027530,0.0000027565,0.0000027642, +0.0000027790,0.0000027983,0.0000028098,0.0000028088,0.0000028007, +0.0000027971,0.0000027982,0.0000028053,0.0000028166,0.0000028270, +0.0000028363,0.0000028405,0.0000028423,0.0000028421,0.0000028417, +0.0000028437,0.0000028484,0.0000028521,0.0000028513,0.0000028457, +0.0000028370,0.0000028301,0.0000028292,0.0000028250,0.0000028116, +0.0000028003,0.0000027970,0.0000027966,0.0000027994,0.0000028014, +0.0000028035,0.0000028087,0.0000028129,0.0000028149,0.0000028214, +0.0000028297,0.0000028319,0.0000028311,0.0000028306,0.0000028305, +0.0000028292,0.0000028253,0.0000028196,0.0000028136,0.0000028086, +0.0000028060,0.0000028043,0.0000028035,0.0000028035,0.0000028049, +0.0000028057,0.0000028045,0.0000028007,0.0000027955,0.0000027909, +0.0000027870,0.0000027815,0.0000027747,0.0000027670,0.0000027590, +0.0000027544,0.0000027557,0.0000027637,0.0000027746,0.0000027849, +0.0000027929,0.0000027984,0.0000027997,0.0000027959,0.0000027865, +0.0000027778,0.0000027750,0.0000027750,0.0000027762,0.0000027788, +0.0000027823,0.0000027883,0.0000027986,0.0000028095,0.0000028133, +0.0000028109,0.0000028067,0.0000028070,0.0000028107,0.0000028157, +0.0000028246,0.0000028354,0.0000028388,0.0000028363,0.0000028275, +0.0000028075,0.0000027881,0.0000027844,0.0000027945,0.0000028141, +0.0000028278,0.0000028245,0.0000028102,0.0000028023,0.0000028118, +0.0000028403,0.0000028631,0.0000028681,0.0000028682,0.0000028681, +0.0000028676,0.0000028703,0.0000028837,0.0000029056,0.0000029281, +0.0000029458,0.0000029565,0.0000029591,0.0000029567,0.0000029550, +0.0000029558,0.0000029584,0.0000029594,0.0000029579,0.0000029534, +0.0000029472,0.0000029405,0.0000029348,0.0000029284,0.0000029205, +0.0000029126,0.0000029051,0.0000028982,0.0000028935,0.0000028941, +0.0000028999,0.0000029074,0.0000029103,0.0000029069,0.0000028956, +0.0000028815,0.0000028704,0.0000028654,0.0000028661,0.0000028728, +0.0000028828,0.0000028903,0.0000028912,0.0000028870,0.0000028808, +0.0000028751,0.0000028729,0.0000028757,0.0000028829,0.0000028899, +0.0000028920,0.0000028915,0.0000028876,0.0000028817,0.0000028753, +0.0000028708,0.0000028683,0.0000028652,0.0000028605,0.0000028555, +0.0000028502,0.0000028448,0.0000028393,0.0000028325,0.0000028247, +0.0000028190,0.0000028159,0.0000028117,0.0000028098,0.0000028131, +0.0000028224,0.0000028303,0.0000028336,0.0000028349,0.0000028336, +0.0000028307,0.0000028272,0.0000028242,0.0000028217,0.0000028190, +0.0000028134,0.0000028060,0.0000028018,0.0000028034,0.0000028097, +0.0000028167,0.0000028219,0.0000028281,0.0000028400,0.0000028511, +0.0000028533,0.0000028481,0.0000028409,0.0000028356,0.0000028358, +0.0000028381,0.0000028364,0.0000028258,0.0000028097,0.0000028013, +0.0000028042,0.0000028123,0.0000028151,0.0000028083,0.0000027907, +0.0000027732,0.0000027636,0.0000027576,0.0000027561,0.0000027601, +0.0000027691,0.0000027733,0.0000027698,0.0000027647,0.0000027643, +0.0000027671,0.0000027779,0.0000027962,0.0000028101,0.0000028122, +0.0000028057,0.0000027994,0.0000027997,0.0000028042,0.0000028097, +0.0000028139,0.0000028172,0.0000028253,0.0000028375,0.0000028425, +0.0000028337,0.0000028161,0.0000028046,0.0000028040,0.0000028100, +0.0000028153,0.0000028182,0.0000028221,0.0000028198,0.0000028090, +0.0000028028,0.0000028012,0.0000028019,0.0000028098,0.0000028247, +0.0000028364,0.0000028418,0.0000028435,0.0000028457,0.0000028501, +0.0000028538,0.0000028562,0.0000028560,0.0000028476,0.0000028299, +0.0000028157,0.0000028144,0.0000028232,0.0000028387,0.0000028541, +0.0000028625,0.0000028638,0.0000028659,0.0000028739,0.0000028851, +0.0000028953,0.0000028984,0.0000028923,0.0000028769,0.0000028654, +0.0000028633,0.0000028663,0.0000028709,0.0000028718,0.0000028698, +0.0000028693,0.0000028717,0.0000028730,0.0000028769,0.0000028863, +0.0000028989,0.0000029054,0.0000029065,0.0000029037,0.0000028979, +0.0000028911,0.0000028866,0.0000028811,0.0000028701,0.0000028564, +0.0000028459,0.0000028379,0.0000028311,0.0000028275,0.0000028283, +0.0000028315,0.0000028372,0.0000028468,0.0000028519,0.0000028519, +0.0000028480,0.0000028444,0.0000028386,0.0000028336,0.0000028289, +0.0000028279,0.0000028299,0.0000028375,0.0000028477,0.0000028596, +0.0000028683,0.0000028732,0.0000028719,0.0000028645,0.0000028529, +0.0000028416,0.0000028310,0.0000028211,0.0000028111,0.0000028026, +0.0000027982,0.0000027949,0.0000027907,0.0000027879,0.0000027868, +0.0000027842,0.0000027803,0.0000027795,0.0000027809,0.0000027839, +0.0000027899,0.0000027966,0.0000027989,0.0000027963,0.0000027893, +0.0000027804,0.0000027723,0.0000027657,0.0000027599,0.0000027547, +0.0000027505,0.0000027484,0.0000027483,0.0000027549,0.0000027807, +0.0000028006,0.0000027979,0.0000027999,0.0000028101,0.0000028217, +0.0000028269,0.0000028222,0.0000028147,0.0000028026,0.0000027858, +0.0000027761,0.0000027695,0.0000027643,0.0000027585,0.0000027520, +0.0000027479,0.0000027459,0.0000027441,0.0000027443,0.0000027544, +0.0000027671,0.0000027676,0.0000027574,0.0000027524,0.0000027544, +0.0000027591,0.0000027613,0.0000027546,0.0000027565,0.0000027761, +0.0000027909,0.0000027960,0.0000027981,0.0000028033,0.0000028075, +0.0000028110,0.0000028127,0.0000028105,0.0000028022,0.0000027875, +0.0000027787,0.0000027784,0.0000027842,0.0000027888,0.0000027898, +0.0000027930,0.0000027998,0.0000028059,0.0000028087,0.0000028086, +0.0000028076,0.0000028086,0.0000028082,0.0000028040,0.0000027937, +0.0000027801,0.0000027747,0.0000027764,0.0000027788,0.0000027812, +0.0000027829,0.0000027828,0.0000027824,0.0000027850,0.0000027922, +0.0000027979,0.0000027987,0.0000027961,0.0000027922,0.0000027877, +0.0000027844,0.0000027824,0.0000027833,0.0000027880,0.0000027965, +0.0000028042,0.0000028123,0.0000028255,0.0000028399,0.0000028457, +0.0000028517,0.0000028567,0.0000028543,0.0000028544,0.0000028645, +0.0000028808,0.0000028912,0.0000028911,0.0000028832,0.0000028739, +0.0000028687,0.0000028666,0.0000028681,0.0000028719,0.0000028722, +0.0000028679,0.0000028613,0.0000028523,0.0000028468,0.0000028472, +0.0000028518,0.0000028582,0.0000028613,0.0000028568,0.0000028445, +0.0000028335,0.0000028316,0.0000028370,0.0000028469,0.0000028534, +0.0000028565,0.0000028616,0.0000028697,0.0000028749,0.0000028745, +0.0000028715,0.0000028712,0.0000028732,0.0000028788,0.0000028838, +0.0000028859,0.0000028863,0.0000028858,0.0000028837,0.0000028790, +0.0000028718,0.0000028656,0.0000028636,0.0000028629,0.0000028600, +0.0000028627,0.0000028698,0.0000028736,0.0000028739,0.0000028712, +0.0000028701,0.0000028681,0.0000028644,0.0000028664,0.0000028703, +0.0000028731,0.0000028735,0.0000028724,0.0000028681,0.0000028627, +0.0000028580,0.0000028534,0.0000028512,0.0000028506,0.0000028520, +0.0000028544,0.0000028545,0.0000028526,0.0000028471,0.0000028398, +0.0000028343,0.0000028308,0.0000028291,0.0000028285,0.0000028273, +0.0000028267,0.0000028278,0.0000028309,0.0000028354,0.0000028381, +0.0000028369,0.0000028288,0.0000028163,0.0000028031,0.0000027955, +0.0000027954,0.0000028034,0.0000028153,0.0000028272,0.0000028377, +0.0000028466,0.0000028528,0.0000028547,0.0000028535,0.0000028500, +0.0000028452,0.0000028419,0.0000028420,0.0000028449,0.0000028510, +0.0000028568,0.0000028621,0.0000028663,0.0000028672,0.0000028651, +0.0000028622,0.0000028599,0.0000028572,0.0000028531,0.0000028497, +0.0000028484,0.0000028424,0.0000028316,0.0000028222,0.0000028152, +0.0000028099,0.0000028064,0.0000028031,0.0000028001,0.0000027971, +0.0000027950,0.0000027932,0.0000027897,0.0000027857,0.0000027847, +0.0000027882,0.0000027994,0.0000028103,0.0000028147,0.0000028133, +0.0000028105,0.0000028082,0.0000028079,0.0000028161,0.0000028330, +0.0000028502,0.0000028562,0.0000028535,0.0000028445,0.0000028347, +0.0000028356,0.0000028414,0.0000028492,0.0000028523,0.0000028537, +0.0000028579,0.0000028615,0.0000028644,0.0000028604,0.0000028435, +0.0000028286,0.0000028248,0.0000028262,0.0000028275,0.0000028313, +0.0000028390,0.0000028406,0.0000028356,0.0000028278,0.0000028224, +0.0000028189,0.0000028166,0.0000028160,0.0000028164,0.0000028166, +0.0000028136,0.0000028099,0.0000028065,0.0000028055,0.0000028078, +0.0000028090,0.0000028083,0.0000028058,0.0000028033,0.0000028020, +0.0000028011,0.0000027996,0.0000027977,0.0000027951,0.0000027908, +0.0000027841,0.0000027756,0.0000027676,0.0000027626,0.0000027608, +0.0000027612,0.0000027638,0.0000027676,0.0000027703,0.0000027691, +0.0000027647,0.0000027573,0.0000027517,0.0000027474,0.0000027452, +0.0000027451,0.0000027450,0.0000027447,0.0000027457,0.0000027487, +0.0000027530,0.0000027620,0.0000027772,0.0000027972,0.0000028122, +0.0000028125,0.0000028042,0.0000027998,0.0000028019,0.0000028082, +0.0000028180,0.0000028285,0.0000028404,0.0000028488,0.0000028516, +0.0000028515,0.0000028489,0.0000028474,0.0000028505,0.0000028560, +0.0000028577,0.0000028540,0.0000028449,0.0000028348,0.0000028329, +0.0000028350,0.0000028274,0.0000028127,0.0000028063,0.0000028052, +0.0000028049,0.0000028019,0.0000027983,0.0000027980,0.0000028039, +0.0000028109,0.0000028144,0.0000028189,0.0000028270,0.0000028342, +0.0000028369,0.0000028368,0.0000028354,0.0000028328,0.0000028283, +0.0000028238,0.0000028209,0.0000028203,0.0000028215,0.0000028232, +0.0000028248,0.0000028268,0.0000028268,0.0000028223,0.0000028143, +0.0000028058,0.0000027982,0.0000027938,0.0000027899,0.0000027850, +0.0000027783,0.0000027696,0.0000027615,0.0000027593,0.0000027634, +0.0000027729,0.0000027817,0.0000027873,0.0000027901,0.0000027917, +0.0000027941,0.0000027955,0.0000027910,0.0000027816,0.0000027747, +0.0000027738,0.0000027776,0.0000027844,0.0000027904,0.0000027965, +0.0000028054,0.0000028147,0.0000028177,0.0000028142,0.0000028100, +0.0000028112,0.0000028152,0.0000028192,0.0000028279,0.0000028387, +0.0000028418,0.0000028381,0.0000028263,0.0000028038,0.0000027859, +0.0000027844,0.0000027977,0.0000028180,0.0000028296,0.0000028246, +0.0000028102,0.0000028053,0.0000028189,0.0000028480,0.0000028671, +0.0000028700,0.0000028698,0.0000028696,0.0000028687,0.0000028705, +0.0000028820,0.0000029024,0.0000029252,0.0000029436,0.0000029542, +0.0000029566,0.0000029534,0.0000029492,0.0000029474,0.0000029473, +0.0000029479,0.0000029483,0.0000029472,0.0000029444,0.0000029421, +0.0000029412,0.0000029392,0.0000029344,0.0000029275,0.0000029213, +0.0000029159,0.0000029100,0.0000029056,0.0000029050,0.0000029075, +0.0000029092,0.0000029058,0.0000028981,0.0000028885,0.0000028784, +0.0000028697,0.0000028652,0.0000028655,0.0000028717,0.0000028824, +0.0000028911,0.0000028934,0.0000028900,0.0000028810,0.0000028720, +0.0000028694,0.0000028727,0.0000028794,0.0000028846,0.0000028864, +0.0000028848,0.0000028817,0.0000028781,0.0000028764,0.0000028744, +0.0000028714,0.0000028665,0.0000028606,0.0000028553,0.0000028509, +0.0000028462,0.0000028396,0.0000028313,0.0000028232,0.0000028188, +0.0000028143,0.0000028098,0.0000028097,0.0000028168,0.0000028247, +0.0000028283,0.0000028299,0.0000028290,0.0000028255,0.0000028212, +0.0000028175,0.0000028166,0.0000028183,0.0000028197,0.0000028202, +0.0000028166,0.0000028120,0.0000028116,0.0000028163,0.0000028220, +0.0000028257,0.0000028319,0.0000028451,0.0000028543,0.0000028527, +0.0000028467,0.0000028416,0.0000028401,0.0000028425,0.0000028434, +0.0000028378,0.0000028230,0.0000028087,0.0000028036,0.0000028066, +0.0000028141,0.0000028154,0.0000028035,0.0000027838,0.0000027706, +0.0000027657,0.0000027596,0.0000027564,0.0000027613,0.0000027709, +0.0000027750,0.0000027717,0.0000027671,0.0000027664,0.0000027700, +0.0000027800,0.0000027931,0.0000028026,0.0000028045,0.0000027992, +0.0000027947,0.0000027955,0.0000027998,0.0000028057,0.0000028113, +0.0000028153,0.0000028196,0.0000028274,0.0000028339,0.0000028308, +0.0000028177,0.0000028040,0.0000028005,0.0000028056,0.0000028118, +0.0000028149,0.0000028197,0.0000028194,0.0000028105,0.0000028026, +0.0000028011,0.0000028022,0.0000028084,0.0000028219,0.0000028341, +0.0000028398,0.0000028407,0.0000028416,0.0000028458,0.0000028522, +0.0000028556,0.0000028519,0.0000028359,0.0000028147,0.0000028002, +0.0000027991,0.0000028069,0.0000028229,0.0000028426,0.0000028578, +0.0000028631,0.0000028648,0.0000028718,0.0000028825,0.0000028924, +0.0000028978,0.0000028965,0.0000028895,0.0000028785,0.0000028691, +0.0000028656,0.0000028653,0.0000028665,0.0000028638,0.0000028630, +0.0000028630,0.0000028650,0.0000028653,0.0000028697,0.0000028795, +0.0000028887,0.0000028944,0.0000028978,0.0000028977,0.0000028942, +0.0000028921,0.0000028900,0.0000028865,0.0000028787,0.0000028686, +0.0000028574,0.0000028457,0.0000028357,0.0000028300,0.0000028299, +0.0000028328,0.0000028428,0.0000028530,0.0000028580,0.0000028568, +0.0000028530,0.0000028466,0.0000028411,0.0000028339,0.0000028290, +0.0000028271,0.0000028307,0.0000028381,0.0000028492,0.0000028607, +0.0000028703,0.0000028753,0.0000028753,0.0000028689,0.0000028601, +0.0000028498,0.0000028389,0.0000028271,0.0000028158,0.0000028079, +0.0000028025,0.0000027959,0.0000027906,0.0000027888,0.0000027873, +0.0000027826,0.0000027769,0.0000027730,0.0000027719,0.0000027753, +0.0000027811,0.0000027886,0.0000027933,0.0000027930,0.0000027880, +0.0000027816,0.0000027757,0.0000027702,0.0000027643,0.0000027583, +0.0000027536,0.0000027514,0.0000027497,0.0000027552,0.0000027834, +0.0000028087,0.0000028056,0.0000028056,0.0000028150,0.0000028258, +0.0000028303,0.0000028251,0.0000028166,0.0000028052,0.0000027906, +0.0000027822,0.0000027762,0.0000027689,0.0000027610,0.0000027547, +0.0000027513,0.0000027496,0.0000027476,0.0000027489,0.0000027606, +0.0000027718,0.0000027697,0.0000027582,0.0000027525,0.0000027545, +0.0000027596,0.0000027615,0.0000027546,0.0000027562,0.0000027735, +0.0000027877,0.0000027932,0.0000027970,0.0000028043,0.0000028094, +0.0000028109,0.0000028104,0.0000028058,0.0000027961,0.0000027842, +0.0000027801,0.0000027840,0.0000027916,0.0000027967,0.0000027987, +0.0000028021,0.0000028075,0.0000028117,0.0000028119,0.0000028082, +0.0000028051,0.0000028034,0.0000028011,0.0000027955,0.0000027844, +0.0000027716,0.0000027663,0.0000027674,0.0000027709,0.0000027768, +0.0000027813,0.0000027817,0.0000027830,0.0000027891,0.0000027966, +0.0000027999,0.0000027979,0.0000027918,0.0000027854,0.0000027803, +0.0000027755,0.0000027728,0.0000027732,0.0000027794,0.0000027918, +0.0000028030,0.0000028148,0.0000028288,0.0000028413,0.0000028480, +0.0000028573,0.0000028614,0.0000028586,0.0000028609,0.0000028707, +0.0000028826,0.0000028894,0.0000028890,0.0000028829,0.0000028749, +0.0000028703,0.0000028700,0.0000028721,0.0000028754,0.0000028758, +0.0000028710,0.0000028617,0.0000028510,0.0000028426,0.0000028409, +0.0000028449,0.0000028526,0.0000028601,0.0000028596,0.0000028500, +0.0000028391,0.0000028356,0.0000028397,0.0000028477,0.0000028518, +0.0000028544,0.0000028597,0.0000028666,0.0000028711,0.0000028711, +0.0000028688,0.0000028685,0.0000028696,0.0000028742,0.0000028792, +0.0000028830,0.0000028857,0.0000028882,0.0000028876,0.0000028833, +0.0000028769,0.0000028715,0.0000028705,0.0000028707,0.0000028691, +0.0000028688,0.0000028741,0.0000028774,0.0000028773,0.0000028735, +0.0000028712,0.0000028718,0.0000028723,0.0000028751,0.0000028770, +0.0000028752,0.0000028738,0.0000028722,0.0000028671,0.0000028615, +0.0000028545,0.0000028480,0.0000028430,0.0000028419,0.0000028430, +0.0000028467,0.0000028494,0.0000028503,0.0000028484,0.0000028435, +0.0000028377,0.0000028309,0.0000028252,0.0000028226,0.0000028209, +0.0000028201,0.0000028205,0.0000028207,0.0000028225,0.0000028248, +0.0000028259,0.0000028226,0.0000028143,0.0000028029,0.0000027951, +0.0000027931,0.0000027964,0.0000028060,0.0000028182,0.0000028285, +0.0000028369,0.0000028441,0.0000028489,0.0000028515,0.0000028507, +0.0000028480,0.0000028439,0.0000028409,0.0000028412,0.0000028453, +0.0000028509,0.0000028570,0.0000028640,0.0000028704,0.0000028727, +0.0000028709,0.0000028681,0.0000028627,0.0000028556,0.0000028493, +0.0000028468,0.0000028487,0.0000028483,0.0000028402,0.0000028267, +0.0000028140,0.0000028072,0.0000028059,0.0000028059,0.0000028042, +0.0000027990,0.0000027941,0.0000027923,0.0000027921,0.0000027907, +0.0000027880,0.0000027877,0.0000027937,0.0000028021,0.0000028080, +0.0000028075,0.0000028041,0.0000028037,0.0000028059,0.0000028118, +0.0000028245,0.0000028422,0.0000028521,0.0000028515,0.0000028432, +0.0000028332,0.0000028337,0.0000028402,0.0000028506,0.0000028544, +0.0000028551,0.0000028573,0.0000028593,0.0000028607,0.0000028535, +0.0000028363,0.0000028231,0.0000028202,0.0000028217,0.0000028243, +0.0000028315,0.0000028370,0.0000028353,0.0000028289,0.0000028236, +0.0000028215,0.0000028212,0.0000028218,0.0000028218,0.0000028209, +0.0000028184,0.0000028129,0.0000028080,0.0000028061,0.0000028066, +0.0000028085,0.0000028086,0.0000028073,0.0000028062,0.0000028057, +0.0000028048,0.0000028030,0.0000027992,0.0000027942,0.0000027894, +0.0000027849,0.0000027787,0.0000027706,0.0000027650,0.0000027620, +0.0000027609,0.0000027628,0.0000027659,0.0000027690,0.0000027701, +0.0000027689,0.0000027647,0.0000027575,0.0000027505,0.0000027443, +0.0000027417,0.0000027432,0.0000027449,0.0000027448,0.0000027447, +0.0000027464,0.0000027520,0.0000027621,0.0000027771,0.0000027957, +0.0000028123,0.0000028150,0.0000028078,0.0000028032,0.0000028068, +0.0000028144,0.0000028217,0.0000028303,0.0000028424,0.0000028542, +0.0000028580,0.0000028580,0.0000028541,0.0000028494,0.0000028501, +0.0000028551,0.0000028588,0.0000028578,0.0000028500,0.0000028382, +0.0000028326,0.0000028358,0.0000028356,0.0000028257,0.0000028170, +0.0000028133,0.0000028124,0.0000028095,0.0000028039,0.0000027987, +0.0000027980,0.0000028040,0.0000028101,0.0000028132,0.0000028156, +0.0000028206,0.0000028279,0.0000028345,0.0000028389,0.0000028411, +0.0000028417,0.0000028412,0.0000028425,0.0000028454,0.0000028470, +0.0000028467,0.0000028441,0.0000028404,0.0000028354,0.0000028283, +0.0000028201,0.0000028106,0.0000028021,0.0000027967,0.0000027938, +0.0000027912,0.0000027866,0.0000027789,0.0000027700,0.0000027629, +0.0000027623,0.0000027693,0.0000027797,0.0000027871,0.0000027899, +0.0000027891,0.0000027876,0.0000027885,0.0000027921,0.0000027923, +0.0000027851,0.0000027763,0.0000027739,0.0000027796,0.0000027890, +0.0000027968,0.0000028038,0.0000028124,0.0000028195,0.0000028206, +0.0000028165,0.0000028143,0.0000028164,0.0000028196,0.0000028230, +0.0000028322,0.0000028423,0.0000028446,0.0000028395,0.0000028236, +0.0000027990,0.0000027841,0.0000027863,0.0000028024,0.0000028230, +0.0000028309,0.0000028250,0.0000028111,0.0000028082,0.0000028270, +0.0000028551,0.0000028699,0.0000028710,0.0000028708,0.0000028712, +0.0000028702,0.0000028707,0.0000028790,0.0000028962,0.0000029175, +0.0000029361,0.0000029478,0.0000029511,0.0000029489,0.0000029448, +0.0000029415,0.0000029393,0.0000029375,0.0000029356,0.0000029332, +0.0000029322,0.0000029346,0.0000029395,0.0000029426,0.0000029429, +0.0000029404,0.0000029367,0.0000029324,0.0000029271,0.0000029222, +0.0000029203,0.0000029198,0.0000029162,0.0000029080,0.0000028981, +0.0000028890,0.0000028816,0.0000028747,0.0000028688,0.0000028668, +0.0000028689,0.0000028751,0.0000028825,0.0000028869,0.0000028888, +0.0000028841,0.0000028781,0.0000028735,0.0000028727,0.0000028748, +0.0000028766,0.0000028769,0.0000028747,0.0000028719,0.0000028706, +0.0000028711,0.0000028712,0.0000028702,0.0000028672,0.0000028628, +0.0000028582,0.0000028543,0.0000028507,0.0000028457,0.0000028370, +0.0000028266,0.0000028183,0.0000028131,0.0000028076,0.0000028047, +0.0000028074,0.0000028150,0.0000028205,0.0000028237,0.0000028239, +0.0000028209,0.0000028163,0.0000028110,0.0000028079,0.0000028095, +0.0000028150,0.0000028210,0.0000028255,0.0000028265,0.0000028226, +0.0000028197,0.0000028216,0.0000028260,0.0000028285,0.0000028356, +0.0000028491,0.0000028550,0.0000028513,0.0000028458,0.0000028439, +0.0000028450,0.0000028476,0.0000028471,0.0000028378,0.0000028219, +0.0000028105,0.0000028062,0.0000028080,0.0000028132,0.0000028125, +0.0000027983,0.0000027809,0.0000027734,0.0000027709,0.0000027629, +0.0000027581,0.0000027628,0.0000027728,0.0000027785,0.0000027769, +0.0000027724,0.0000027705,0.0000027737,0.0000027805,0.0000027869, +0.0000027926,0.0000027956,0.0000027936,0.0000027917,0.0000027924, +0.0000027955,0.0000028012,0.0000028074,0.0000028126,0.0000028157, +0.0000028191,0.0000028234,0.0000028248,0.0000028170,0.0000028058, +0.0000027994,0.0000028012,0.0000028063,0.0000028092,0.0000028143, +0.0000028180,0.0000028117,0.0000028028,0.0000028004,0.0000028017, +0.0000028070,0.0000028180,0.0000028292,0.0000028354,0.0000028374, +0.0000028385,0.0000028426,0.0000028489,0.0000028501,0.0000028408, +0.0000028208,0.0000028012,0.0000027898,0.0000027901,0.0000027955, +0.0000028075,0.0000028268,0.0000028479,0.0000028605,0.0000028636, +0.0000028687,0.0000028793,0.0000028900,0.0000028960,0.0000028961, +0.0000028930,0.0000028876,0.0000028801,0.0000028724,0.0000028680, +0.0000028661,0.0000028629,0.0000028577,0.0000028551,0.0000028552, +0.0000028543,0.0000028556,0.0000028623,0.0000028733,0.0000028820, +0.0000028869,0.0000028888,0.0000028883,0.0000028879,0.0000028883, +0.0000028892,0.0000028885,0.0000028860,0.0000028801,0.0000028703, +0.0000028575,0.0000028441,0.0000028345,0.0000028299,0.0000028308, +0.0000028395,0.0000028519,0.0000028595,0.0000028631,0.0000028583, +0.0000028519,0.0000028439,0.0000028351,0.0000028294,0.0000028287, +0.0000028327,0.0000028402,0.0000028490,0.0000028586,0.0000028670, +0.0000028714,0.0000028710,0.0000028665,0.0000028604,0.0000028515, +0.0000028400,0.0000028271,0.0000028168,0.0000028092,0.0000028020, +0.0000027958,0.0000027919,0.0000027903,0.0000027890,0.0000027838, +0.0000027756,0.0000027682,0.0000027650,0.0000027655,0.0000027693, +0.0000027756,0.0000027814,0.0000027841,0.0000027828,0.0000027789, +0.0000027746,0.0000027695,0.0000027639,0.0000027590,0.0000027564, +0.0000027562,0.0000027545,0.0000027591,0.0000027875,0.0000028157, +0.0000028136,0.0000028103,0.0000028184,0.0000028283,0.0000028308, +0.0000028269,0.0000028189,0.0000028088,0.0000027971,0.0000027889, +0.0000027826,0.0000027733,0.0000027632,0.0000027569,0.0000027540, +0.0000027527,0.0000027513,0.0000027540,0.0000027660,0.0000027757, +0.0000027717,0.0000027595,0.0000027523,0.0000027540,0.0000027593, +0.0000027623,0.0000027556,0.0000027545,0.0000027677,0.0000027818, +0.0000027887,0.0000027953,0.0000028052,0.0000028105,0.0000028107, +0.0000028070,0.0000028005,0.0000027932,0.0000027856,0.0000027849, +0.0000027894,0.0000027958,0.0000028010,0.0000028058,0.0000028102, +0.0000028146,0.0000028173,0.0000028171,0.0000028118,0.0000028048, +0.0000027985,0.0000027930,0.0000027869,0.0000027774,0.0000027669, +0.0000027619,0.0000027627,0.0000027664,0.0000027752,0.0000027806, +0.0000027827,0.0000027859,0.0000027946,0.0000028006,0.0000027992, +0.0000027935,0.0000027860,0.0000027783,0.0000027724,0.0000027684, +0.0000027666,0.0000027689,0.0000027769,0.0000027897,0.0000028038, +0.0000028181,0.0000028307,0.0000028410,0.0000028505,0.0000028617, +0.0000028650,0.0000028634,0.0000028672,0.0000028745,0.0000028814, +0.0000028866,0.0000028870,0.0000028821,0.0000028757,0.0000028743, +0.0000028771,0.0000028799,0.0000028803,0.0000028788,0.0000028732, +0.0000028620,0.0000028511,0.0000028411,0.0000028377,0.0000028394, +0.0000028456,0.0000028554,0.0000028611,0.0000028567,0.0000028458, +0.0000028395,0.0000028425,0.0000028493,0.0000028519,0.0000028539, +0.0000028578,0.0000028631,0.0000028669,0.0000028675,0.0000028668, +0.0000028664,0.0000028667,0.0000028701,0.0000028753,0.0000028807, +0.0000028860,0.0000028906,0.0000028906,0.0000028861,0.0000028807, +0.0000028783,0.0000028764,0.0000028766,0.0000028762,0.0000028744, +0.0000028792,0.0000028835,0.0000028823,0.0000028785,0.0000028748, +0.0000028758,0.0000028781,0.0000028809,0.0000028799,0.0000028750, +0.0000028680,0.0000028626,0.0000028570,0.0000028525,0.0000028459, +0.0000028384,0.0000028311,0.0000028283,0.0000028285,0.0000028333, +0.0000028386,0.0000028413,0.0000028416,0.0000028393,0.0000028352, +0.0000028280,0.0000028193,0.0000028131,0.0000028092,0.0000028063, +0.0000028060,0.0000028056,0.0000028053,0.0000028076,0.0000028094, +0.0000028099,0.0000028070,0.0000028027,0.0000027978,0.0000027956, +0.0000027972,0.0000028018,0.0000028088,0.0000028150,0.0000028196, +0.0000028240,0.0000028292,0.0000028331,0.0000028355,0.0000028353, +0.0000028338,0.0000028301,0.0000028279,0.0000028291,0.0000028338, +0.0000028393,0.0000028457,0.0000028537,0.0000028617,0.0000028659, +0.0000028673,0.0000028680,0.0000028664,0.0000028598,0.0000028487, +0.0000028419,0.0000028442,0.0000028477,0.0000028448,0.0000028345, +0.0000028180,0.0000028053,0.0000028021,0.0000028040,0.0000028063, +0.0000028031,0.0000027962,0.0000027910,0.0000027900,0.0000027909, +0.0000027914,0.0000027923,0.0000027939,0.0000027967,0.0000028005, +0.0000028009,0.0000027981,0.0000027983,0.0000028032,0.0000028105, +0.0000028188,0.0000028338,0.0000028471,0.0000028490,0.0000028415, +0.0000028316,0.0000028321,0.0000028408,0.0000028529,0.0000028567, +0.0000028567,0.0000028565,0.0000028572,0.0000028570,0.0000028464, +0.0000028290,0.0000028175,0.0000028158,0.0000028185,0.0000028237, +0.0000028310,0.0000028329,0.0000028287,0.0000028243,0.0000028230, +0.0000028233,0.0000028245,0.0000028248,0.0000028235,0.0000028213, +0.0000028169,0.0000028115,0.0000028086,0.0000028090,0.0000028104, +0.0000028118,0.0000028123,0.0000028125,0.0000028127,0.0000028127, +0.0000028119,0.0000028091,0.0000028035,0.0000027960,0.0000027891, +0.0000027840,0.0000027789,0.0000027732,0.0000027700,0.0000027685, +0.0000027680,0.0000027686,0.0000027704,0.0000027721,0.0000027722, +0.0000027694,0.0000027635,0.0000027562,0.0000027490,0.0000027427, +0.0000027386,0.0000027391,0.0000027417,0.0000027432,0.0000027434, +0.0000027451,0.0000027519,0.0000027630,0.0000027775,0.0000027944, +0.0000028097,0.0000028151,0.0000028107,0.0000028072,0.0000028118, +0.0000028207,0.0000028269,0.0000028328,0.0000028436,0.0000028556, +0.0000028615,0.0000028622,0.0000028580,0.0000028504,0.0000028479, +0.0000028509,0.0000028562,0.0000028577,0.0000028527,0.0000028421, +0.0000028322,0.0000028312,0.0000028350,0.0000028317,0.0000028269, +0.0000028230,0.0000028194,0.0000028156,0.0000028123,0.0000028073, +0.0000028033,0.0000028034,0.0000028057,0.0000028067,0.0000028076, +0.0000028084,0.0000028092,0.0000028131,0.0000028186,0.0000028229, +0.0000028264,0.0000028310,0.0000028364,0.0000028414,0.0000028447, +0.0000028460,0.0000028455,0.0000028440,0.0000028393,0.0000028330, +0.0000028257,0.0000028159,0.0000028051,0.0000027968,0.0000027927, +0.0000027911,0.0000027886,0.0000027832,0.0000027758,0.0000027684, +0.0000027647,0.0000027669,0.0000027752,0.0000027842,0.0000027889, +0.0000027895,0.0000027879,0.0000027860,0.0000027857,0.0000027884, +0.0000027900,0.0000027862,0.0000027788,0.0000027759,0.0000027820, +0.0000027920,0.0000028005,0.0000028090,0.0000028182,0.0000028230, +0.0000028221,0.0000028190,0.0000028189,0.0000028218,0.0000028240, +0.0000028271,0.0000028369,0.0000028467,0.0000028482,0.0000028403, +0.0000028195,0.0000027941,0.0000027840,0.0000027899,0.0000028092, +0.0000028290,0.0000028342,0.0000028258,0.0000028143,0.0000028152, +0.0000028354,0.0000028600,0.0000028700,0.0000028703,0.0000028714, +0.0000028733,0.0000028723,0.0000028714,0.0000028759,0.0000028880, +0.0000029050,0.0000029223,0.0000029354,0.0000029412,0.0000029405, +0.0000029375,0.0000029350,0.0000029329,0.0000029302,0.0000029259, +0.0000029208,0.0000029183,0.0000029215,0.0000029280,0.0000029350, +0.0000029403,0.0000029432,0.0000029462,0.0000029471,0.0000029431, +0.0000029366,0.0000029341,0.0000029356,0.0000029350,0.0000029259, +0.0000029097,0.0000028938,0.0000028828,0.0000028755,0.0000028692, +0.0000028666,0.0000028681,0.0000028733,0.0000028787,0.0000028810, +0.0000028802,0.0000028767,0.0000028725,0.0000028713,0.0000028729, +0.0000028768,0.0000028785,0.0000028775,0.0000028735,0.0000028687, +0.0000028648,0.0000028619,0.0000028599,0.0000028576,0.0000028545, +0.0000028508,0.0000028472,0.0000028448,0.0000028435,0.0000028407, +0.0000028330,0.0000028214,0.0000028103,0.0000028051,0.0000028013, +0.0000027989,0.0000028003,0.0000028067,0.0000028142,0.0000028204, +0.0000028224,0.0000028199,0.0000028153,0.0000028102,0.0000028055, +0.0000028044,0.0000028081,0.0000028139,0.0000028201,0.0000028283, +0.0000028341,0.0000028314,0.0000028261,0.0000028253,0.0000028282, +0.0000028308,0.0000028396,0.0000028520,0.0000028548,0.0000028494, +0.0000028462,0.0000028464,0.0000028485,0.0000028497,0.0000028482, +0.0000028378,0.0000028237,0.0000028142,0.0000028085,0.0000028070, +0.0000028093,0.0000028079,0.0000027961,0.0000027833,0.0000027795, +0.0000027777,0.0000027682,0.0000027617,0.0000027648,0.0000027739, +0.0000027819,0.0000027836,0.0000027793,0.0000027754,0.0000027764, +0.0000027790,0.0000027802,0.0000027842,0.0000027895,0.0000027909, +0.0000027901,0.0000027893,0.0000027913,0.0000027968,0.0000028028, +0.0000028086,0.0000028125,0.0000028142,0.0000028154,0.0000028168, +0.0000028145,0.0000028078,0.0000028004,0.0000027978,0.0000028001, +0.0000028026,0.0000028070,0.0000028126,0.0000028112,0.0000028039, +0.0000028000,0.0000028007,0.0000028053,0.0000028150,0.0000028254, +0.0000028319,0.0000028350,0.0000028366,0.0000028391,0.0000028413, +0.0000028378,0.0000028244,0.0000028064,0.0000027935,0.0000027876, +0.0000027892,0.0000027930,0.0000027985,0.0000028118,0.0000028336, +0.0000028541,0.0000028623,0.0000028655,0.0000028744,0.0000028866, +0.0000028945,0.0000028951,0.0000028927,0.0000028890,0.0000028856, +0.0000028800,0.0000028751,0.0000028715,0.0000028687,0.0000028607, +0.0000028563,0.0000028515,0.0000028490,0.0000028441,0.0000028456, +0.0000028542,0.0000028654,0.0000028750,0.0000028797,0.0000028804, +0.0000028811,0.0000028822,0.0000028833,0.0000028846,0.0000028861, +0.0000028861,0.0000028847,0.0000028785,0.0000028680,0.0000028547, +0.0000028411,0.0000028310,0.0000028276,0.0000028334,0.0000028458, +0.0000028604,0.0000028659,0.0000028645,0.0000028578,0.0000028473, +0.0000028375,0.0000028318,0.0000028321,0.0000028373,0.0000028436, +0.0000028497,0.0000028563,0.0000028611,0.0000028631,0.0000028631, +0.0000028610,0.0000028561,0.0000028487,0.0000028374,0.0000028262, +0.0000028168,0.0000028083,0.0000028020,0.0000027966,0.0000027930, +0.0000027921,0.0000027918,0.0000027874,0.0000027783,0.0000027702, +0.0000027647,0.0000027622,0.0000027633,0.0000027670,0.0000027717, +0.0000027756,0.0000027770,0.0000027755,0.0000027720,0.0000027666, +0.0000027620,0.0000027591,0.0000027596,0.0000027621,0.0000027608, +0.0000027643,0.0000027910,0.0000028191,0.0000028194,0.0000028134, +0.0000028190,0.0000028269,0.0000028301,0.0000028276,0.0000028212, +0.0000028129,0.0000028046,0.0000027962,0.0000027884,0.0000027777, +0.0000027659,0.0000027586,0.0000027561,0.0000027553,0.0000027549, +0.0000027592,0.0000027706,0.0000027789,0.0000027745,0.0000027618, +0.0000027530,0.0000027533,0.0000027577,0.0000027617,0.0000027570, +0.0000027530,0.0000027610,0.0000027739,0.0000027829,0.0000027927, +0.0000028045,0.0000028096,0.0000028086,0.0000028023,0.0000027962, +0.0000027922,0.0000027891,0.0000027884,0.0000027916,0.0000027959, +0.0000028001,0.0000028061,0.0000028126,0.0000028197,0.0000028224, +0.0000028218,0.0000028159,0.0000028056,0.0000027948,0.0000027868, +0.0000027818,0.0000027746,0.0000027665,0.0000027623,0.0000027622, +0.0000027661,0.0000027763,0.0000027823,0.0000027861,0.0000027908, +0.0000027986,0.0000028014,0.0000027974,0.0000027902,0.0000027827, +0.0000027760,0.0000027702,0.0000027669,0.0000027666,0.0000027701, +0.0000027779,0.0000027893,0.0000028051,0.0000028202,0.0000028307, +0.0000028399,0.0000028532,0.0000028644,0.0000028689,0.0000028697, +0.0000028727,0.0000028747,0.0000028789,0.0000028838,0.0000028843, +0.0000028815,0.0000028797,0.0000028808,0.0000028819,0.0000028815, +0.0000028786,0.0000028737,0.0000028669,0.0000028555,0.0000028437, +0.0000028348,0.0000028324,0.0000028345,0.0000028402,0.0000028482, +0.0000028595,0.0000028620,0.0000028531,0.0000028427,0.0000028432, +0.0000028500,0.0000028529,0.0000028544,0.0000028565,0.0000028595, +0.0000028620,0.0000028630,0.0000028644,0.0000028654,0.0000028663, +0.0000028694,0.0000028744,0.0000028807,0.0000028883,0.0000028935, +0.0000028927,0.0000028869,0.0000028839,0.0000028839,0.0000028811, +0.0000028803,0.0000028821,0.0000028822,0.0000028852,0.0000028885, +0.0000028872,0.0000028828,0.0000028781,0.0000028777,0.0000028787, +0.0000028804,0.0000028769,0.0000028670,0.0000028548,0.0000028467, +0.0000028418,0.0000028407,0.0000028363,0.0000028293,0.0000028212, +0.0000028153,0.0000028138,0.0000028169,0.0000028237,0.0000028280, +0.0000028294,0.0000028285,0.0000028255,0.0000028208,0.0000028132, +0.0000028048,0.0000027991,0.0000027935,0.0000027897,0.0000027884, +0.0000027862,0.0000027864,0.0000027901,0.0000027941,0.0000027986, +0.0000028010,0.0000028014,0.0000028002,0.0000027989,0.0000027998, +0.0000028009,0.0000028015,0.0000028019,0.0000028035,0.0000028063, +0.0000028112,0.0000028157,0.0000028191,0.0000028197,0.0000028184, +0.0000028151,0.0000028135,0.0000028150,0.0000028194,0.0000028244, +0.0000028303,0.0000028389,0.0000028483,0.0000028547,0.0000028575, +0.0000028587,0.0000028599,0.0000028593,0.0000028521,0.0000028417, +0.0000028390,0.0000028430,0.0000028443,0.0000028395,0.0000028252, +0.0000028090,0.0000028004,0.0000028003,0.0000028044,0.0000028047, +0.0000028000,0.0000027926,0.0000027873,0.0000027865,0.0000027902, +0.0000027948,0.0000027964,0.0000027957,0.0000027941,0.0000027925, +0.0000027929,0.0000027940,0.0000027989,0.0000028085,0.0000028149, +0.0000028262,0.0000028423,0.0000028471,0.0000028400,0.0000028301, +0.0000028310,0.0000028428,0.0000028558,0.0000028591,0.0000028582, +0.0000028555,0.0000028551,0.0000028528,0.0000028390,0.0000028216, +0.0000028125,0.0000028131,0.0000028180,0.0000028247,0.0000028285, +0.0000028274,0.0000028235,0.0000028228,0.0000028241,0.0000028247, +0.0000028248,0.0000028237,0.0000028209,0.0000028169,0.0000028117, +0.0000028077,0.0000028067,0.0000028078,0.0000028092,0.0000028107, +0.0000028121,0.0000028136,0.0000028144,0.0000028145,0.0000028132, +0.0000028103,0.0000028051,0.0000027978,0.0000027909,0.0000027851, +0.0000027804,0.0000027759,0.0000027733,0.0000027715,0.0000027699, +0.0000027696,0.0000027715,0.0000027738,0.0000027744,0.0000027720, +0.0000027660,0.0000027570,0.0000027470,0.0000027404,0.0000027373, +0.0000027372,0.0000027383,0.0000027393,0.0000027397,0.0000027422, +0.0000027494,0.0000027613,0.0000027768,0.0000027931,0.0000028055, +0.0000028121,0.0000028118,0.0000028103,0.0000028163,0.0000028262, +0.0000028326,0.0000028368,0.0000028425,0.0000028526,0.0000028605, +0.0000028623,0.0000028590,0.0000028504,0.0000028445,0.0000028461, +0.0000028526,0.0000028571,0.0000028551,0.0000028472,0.0000028350, +0.0000028292,0.0000028311,0.0000028300,0.0000028277,0.0000028283, +0.0000028281,0.0000028243,0.0000028189,0.0000028143,0.0000028109, +0.0000028085,0.0000028076,0.0000028057,0.0000028033,0.0000028011, +0.0000027978,0.0000027953,0.0000027956,0.0000027962,0.0000027965, +0.0000027990,0.0000028068,0.0000028178,0.0000028282,0.0000028358, +0.0000028409,0.0000028434,0.0000028419,0.0000028359,0.0000028261, +0.0000028133,0.0000028003,0.0000027902,0.0000027849,0.0000027832, +0.0000027824,0.0000027795,0.0000027748,0.0000027699,0.0000027663, +0.0000027661,0.0000027709,0.0000027790,0.0000027847,0.0000027866, +0.0000027865,0.0000027860,0.0000027854,0.0000027852,0.0000027860, +0.0000027868,0.0000027854,0.0000027808,0.0000027790,0.0000027847, +0.0000027941,0.0000028025,0.0000028123,0.0000028223,0.0000028253, +0.0000028233,0.0000028217,0.0000028233,0.0000028263,0.0000028277, +0.0000028312,0.0000028420,0.0000028516,0.0000028514,0.0000028398, +0.0000028145,0.0000027905,0.0000027861,0.0000027953,0.0000028167, +0.0000028349,0.0000028378,0.0000028279,0.0000028190,0.0000028226, +0.0000028417,0.0000028616,0.0000028672,0.0000028679,0.0000028714, +0.0000028751,0.0000028743,0.0000028726,0.0000028737,0.0000028803, +0.0000028911,0.0000029042,0.0000029167,0.0000029251,0.0000029271, +0.0000029261,0.0000029244,0.0000029226,0.0000029200,0.0000029157, +0.0000029108,0.0000029085,0.0000029111,0.0000029158,0.0000029216, +0.0000029273,0.0000029332,0.0000029408,0.0000029480,0.0000029524, +0.0000029518,0.0000029495,0.0000029477,0.0000029460,0.0000029411, +0.0000029303,0.0000029150,0.0000028994,0.0000028854,0.0000028733, +0.0000028655,0.0000028638,0.0000028671,0.0000028734,0.0000028777, +0.0000028757,0.0000028692,0.0000028618,0.0000028586,0.0000028610, +0.0000028683,0.0000028749,0.0000028778,0.0000028774,0.0000028749, +0.0000028715,0.0000028675,0.0000028623,0.0000028560,0.0000028506, +0.0000028435,0.0000028377,0.0000028347,0.0000028338,0.0000028326, +0.0000028276,0.0000028186,0.0000028091,0.0000028028,0.0000028002, +0.0000027994,0.0000028008,0.0000028056,0.0000028132,0.0000028208, +0.0000028253,0.0000028242,0.0000028195,0.0000028143,0.0000028097, +0.0000028072,0.0000028079,0.0000028114,0.0000028147,0.0000028187, +0.0000028295,0.0000028376,0.0000028368,0.0000028294,0.0000028269, +0.0000028293,0.0000028336,0.0000028435,0.0000028533,0.0000028532, +0.0000028486,0.0000028478,0.0000028489,0.0000028496,0.0000028498, +0.0000028479,0.0000028386,0.0000028271,0.0000028183,0.0000028101, +0.0000028053,0.0000028048,0.0000028044,0.0000027972,0.0000027890, +0.0000027864,0.0000027843,0.0000027755,0.0000027675,0.0000027668, +0.0000027735,0.0000027840,0.0000027888,0.0000027853,0.0000027796, +0.0000027775,0.0000027768,0.0000027774,0.0000027820,0.0000027885, +0.0000027910,0.0000027892,0.0000027865,0.0000027877,0.0000027925, +0.0000027985,0.0000028044,0.0000028092,0.0000028113,0.0000028116, +0.0000028118,0.0000028108,0.0000028071,0.0000028006,0.0000027961, +0.0000027949,0.0000027962,0.0000027996,0.0000028048,0.0000028077, +0.0000028041,0.0000028003,0.0000027992,0.0000028027,0.0000028111, +0.0000028210,0.0000028281,0.0000028318,0.0000028326,0.0000028317, +0.0000028283,0.0000028201,0.0000028071,0.0000027964,0.0000027922, +0.0000027920,0.0000027945,0.0000027956,0.0000027971,0.0000028019, +0.0000028182,0.0000028429,0.0000028593,0.0000028631,0.0000028688, +0.0000028809,0.0000028918,0.0000028949,0.0000028923,0.0000028878, +0.0000028845,0.0000028816,0.0000028780,0.0000028752,0.0000028737, +0.0000028687,0.0000028640,0.0000028580,0.0000028535,0.0000028450, +0.0000028408,0.0000028402,0.0000028465,0.0000028567,0.0000028651, +0.0000028684,0.0000028714,0.0000028753,0.0000028790,0.0000028801, +0.0000028804,0.0000028805,0.0000028815,0.0000028816,0.0000028784, +0.0000028728,0.0000028625,0.0000028489,0.0000028351,0.0000028274, +0.0000028271,0.0000028397,0.0000028570,0.0000028669,0.0000028695, +0.0000028624,0.0000028514,0.0000028407,0.0000028360,0.0000028379, +0.0000028437,0.0000028488,0.0000028534,0.0000028561,0.0000028568, +0.0000028561,0.0000028548,0.0000028531,0.0000028500,0.0000028436, +0.0000028354,0.0000028269,0.0000028183,0.0000028112,0.0000028048, +0.0000027979,0.0000027935,0.0000027932,0.0000027931,0.0000027894, +0.0000027829,0.0000027758,0.0000027689,0.0000027641,0.0000027631, +0.0000027644,0.0000027683,0.0000027719,0.0000027729,0.0000027721, +0.0000027684,0.0000027636,0.0000027610,0.0000027606,0.0000027633, +0.0000027678,0.0000027672,0.0000027695,0.0000027920,0.0000028226, +0.0000028267,0.0000028160,0.0000028172,0.0000028232,0.0000028265, +0.0000028258,0.0000028227,0.0000028168,0.0000028118,0.0000028043, +0.0000027947,0.0000027831,0.0000027696,0.0000027601,0.0000027574, +0.0000027574,0.0000027582,0.0000027631,0.0000027742,0.0000027813, +0.0000027772,0.0000027647,0.0000027541,0.0000027517,0.0000027551, +0.0000027598,0.0000027579,0.0000027526,0.0000027560,0.0000027655, +0.0000027764,0.0000027883,0.0000028009,0.0000028060,0.0000028045, +0.0000027985,0.0000027940,0.0000027923,0.0000027911,0.0000027895, +0.0000027898,0.0000027921,0.0000027955,0.0000028014,0.0000028109, +0.0000028205,0.0000028248,0.0000028247,0.0000028184,0.0000028067, +0.0000027933,0.0000027841,0.0000027802,0.0000027745,0.0000027681, +0.0000027643,0.0000027643,0.0000027684,0.0000027787,0.0000027855, +0.0000027901,0.0000027956,0.0000028010,0.0000028008,0.0000027959, +0.0000027898,0.0000027831,0.0000027769,0.0000027723,0.0000027698, +0.0000027706,0.0000027756,0.0000027825,0.0000027914,0.0000028079, +0.0000028225,0.0000028294,0.0000028399,0.0000028556,0.0000028666, +0.0000028739,0.0000028761,0.0000028755,0.0000028728,0.0000028762, +0.0000028804,0.0000028820,0.0000028837,0.0000028842,0.0000028822, +0.0000028776,0.0000028754,0.0000028729,0.0000028674,0.0000028606, +0.0000028488,0.0000028346,0.0000028242,0.0000028216,0.0000028265, +0.0000028361,0.0000028431,0.0000028547,0.0000028642,0.0000028590, +0.0000028451,0.0000028419,0.0000028484,0.0000028540,0.0000028555, +0.0000028559,0.0000028563,0.0000028565,0.0000028577,0.0000028614, +0.0000028659,0.0000028693,0.0000028723,0.0000028759,0.0000028836, +0.0000028932,0.0000028966,0.0000028931,0.0000028873,0.0000028862, +0.0000028873,0.0000028865,0.0000028858,0.0000028879,0.0000028889, +0.0000028882,0.0000028896,0.0000028892,0.0000028855,0.0000028803, +0.0000028778,0.0000028766,0.0000028736,0.0000028659,0.0000028524, +0.0000028390,0.0000028316,0.0000028311,0.0000028343,0.0000028330, +0.0000028267,0.0000028166,0.0000028082,0.0000028043,0.0000028053, +0.0000028122,0.0000028170,0.0000028183,0.0000028167,0.0000028143, +0.0000028101,0.0000028037,0.0000027949,0.0000027876,0.0000027811, +0.0000027746,0.0000027725,0.0000027714,0.0000027706,0.0000027751, +0.0000027830,0.0000027911,0.0000027973,0.0000027998,0.0000027999, +0.0000027976,0.0000027944,0.0000027922,0.0000027909,0.0000027896, +0.0000027884,0.0000027888,0.0000027908,0.0000027951,0.0000027999, +0.0000028037,0.0000028048,0.0000028035,0.0000028009,0.0000028006, +0.0000028032,0.0000028082,0.0000028120,0.0000028158,0.0000028223, +0.0000028310,0.0000028398,0.0000028457,0.0000028486,0.0000028503, +0.0000028512,0.0000028502,0.0000028440,0.0000028377,0.0000028371, +0.0000028396,0.0000028393,0.0000028307,0.0000028163,0.0000028045, +0.0000028001,0.0000028017,0.0000028036,0.0000028031,0.0000027965, +0.0000027872,0.0000027832,0.0000027853,0.0000027923,0.0000027964, +0.0000027965,0.0000027914,0.0000027848,0.0000027874,0.0000027905, +0.0000027941,0.0000028045,0.0000028109,0.0000028199,0.0000028388, +0.0000028459,0.0000028386,0.0000028294,0.0000028316,0.0000028459, +0.0000028588,0.0000028614,0.0000028594,0.0000028546,0.0000028531, +0.0000028467,0.0000028309,0.0000028147,0.0000028094,0.0000028125, +0.0000028193,0.0000028254,0.0000028247,0.0000028219,0.0000028207, +0.0000028228,0.0000028242,0.0000028222,0.0000028185,0.0000028150, +0.0000028103,0.0000028045,0.0000027985,0.0000027949,0.0000027945, +0.0000027960,0.0000027975,0.0000027987,0.0000027994,0.0000028005, +0.0000028018,0.0000028019,0.0000028007,0.0000027985,0.0000027945, +0.0000027889,0.0000027830,0.0000027772,0.0000027717,0.0000027674, +0.0000027654,0.0000027644,0.0000027636,0.0000027638,0.0000027668, +0.0000027705,0.0000027728,0.0000027719,0.0000027675,0.0000027592, +0.0000027478,0.0000027389,0.0000027362,0.0000027371,0.0000027388, +0.0000027395,0.0000027391,0.0000027399,0.0000027459,0.0000027575, +0.0000027734,0.0000027896,0.0000028011,0.0000028080,0.0000028108, +0.0000028127,0.0000028192,0.0000028306,0.0000028386,0.0000028403, +0.0000028415,0.0000028491,0.0000028569,0.0000028599,0.0000028589, +0.0000028528,0.0000028461,0.0000028464,0.0000028518,0.0000028579, +0.0000028580,0.0000028527,0.0000028407,0.0000028329,0.0000028291, +0.0000028265,0.0000028230,0.0000028249,0.0000028288,0.0000028326, +0.0000028298,0.0000028239,0.0000028175,0.0000028120,0.0000028085, +0.0000028051,0.0000028024,0.0000027995,0.0000027951,0.0000027900, +0.0000027864,0.0000027839,0.0000027832,0.0000027855,0.0000027925, +0.0000028045,0.0000028177,0.0000028281,0.0000028356,0.0000028390, +0.0000028373,0.0000028298,0.0000028180,0.0000028044,0.0000027924, +0.0000027846,0.0000027810,0.0000027795,0.0000027790,0.0000027775, +0.0000027747,0.0000027712,0.0000027679,0.0000027664,0.0000027686, +0.0000027749,0.0000027810,0.0000027838,0.0000027846,0.0000027854, +0.0000027866,0.0000027879,0.0000027880,0.0000027870,0.0000027859, +0.0000027845,0.0000027817,0.0000027818,0.0000027873,0.0000027951, +0.0000028036,0.0000028148,0.0000028246,0.0000028270,0.0000028249, +0.0000028245,0.0000028269,0.0000028295,0.0000028308,0.0000028357, +0.0000028475,0.0000028555,0.0000028532,0.0000028373,0.0000028094, +0.0000027892,0.0000027884,0.0000028020,0.0000028240,0.0000028396, +0.0000028404,0.0000028311,0.0000028238,0.0000028283,0.0000028450, +0.0000028602,0.0000028638,0.0000028641,0.0000028701,0.0000028760, +0.0000028759,0.0000028730,0.0000028717,0.0000028738,0.0000028791, +0.0000028870,0.0000028967,0.0000029059,0.0000029110,0.0000029118, +0.0000029110,0.0000029090,0.0000029058,0.0000029010,0.0000028973, +0.0000028974,0.0000029010,0.0000029045,0.0000029084,0.0000029131, +0.0000029194,0.0000029280,0.0000029371,0.0000029450,0.0000029521, +0.0000029586,0.0000029622,0.0000029599,0.0000029510,0.0000029384, +0.0000029255,0.0000029144,0.0000029048,0.0000028939,0.0000028808, +0.0000028695,0.0000028648,0.0000028644,0.0000028679,0.0000028693, +0.0000028646,0.0000028570,0.0000028506,0.0000028492,0.0000028536, +0.0000028598,0.0000028654,0.0000028695,0.0000028729,0.0000028747, +0.0000028761,0.0000028735,0.0000028678,0.0000028602,0.0000028520, +0.0000028444,0.0000028392,0.0000028365,0.0000028347,0.0000028322, +0.0000028263,0.0000028182,0.0000028115,0.0000028100,0.0000028103, +0.0000028114,0.0000028136,0.0000028183,0.0000028254,0.0000028317, +0.0000028331,0.0000028298,0.0000028241,0.0000028198,0.0000028174, +0.0000028170,0.0000028179,0.0000028181,0.0000028160,0.0000028174, +0.0000028291,0.0000028398,0.0000028388,0.0000028305,0.0000028278, +0.0000028303,0.0000028365,0.0000028467,0.0000028537,0.0000028520, +0.0000028494,0.0000028503,0.0000028500,0.0000028485,0.0000028484, +0.0000028466,0.0000028393,0.0000028302,0.0000028214,0.0000028115, +0.0000028035,0.0000028014,0.0000028021,0.0000027991,0.0000027941, +0.0000027911,0.0000027890,0.0000027834,0.0000027761,0.0000027705, +0.0000027727,0.0000027820,0.0000027891,0.0000027872,0.0000027824, +0.0000027785,0.0000027775,0.0000027793,0.0000027847,0.0000027908, +0.0000027930,0.0000027899,0.0000027857,0.0000027846,0.0000027883, +0.0000027944,0.0000028003,0.0000028051,0.0000028088,0.0000028109, +0.0000028105,0.0000028081,0.0000028038,0.0000027985,0.0000027942, +0.0000027917,0.0000027918,0.0000027942,0.0000027976,0.0000028011, +0.0000028023,0.0000028004,0.0000027987,0.0000028003,0.0000028062, +0.0000028146,0.0000028210,0.0000028242,0.0000028240,0.0000028192, +0.0000028117,0.0000028022,0.0000027949,0.0000027935,0.0000027961, +0.0000028002,0.0000028021,0.0000028011,0.0000027983,0.0000027977, +0.0000028053,0.0000028278,0.0000028519,0.0000028613,0.0000028642, +0.0000028736,0.0000028862,0.0000028935,0.0000028925,0.0000028877, +0.0000028819,0.0000028790,0.0000028769,0.0000028751,0.0000028737, +0.0000028723,0.0000028689,0.0000028673,0.0000028637,0.0000028560, +0.0000028469,0.0000028406,0.0000028412,0.0000028453,0.0000028514, +0.0000028538,0.0000028551,0.0000028593,0.0000028675,0.0000028745, +0.0000028777,0.0000028769,0.0000028755,0.0000028745,0.0000028744, +0.0000028744,0.0000028714,0.0000028650,0.0000028531,0.0000028388, +0.0000028264,0.0000028248,0.0000028356,0.0000028545,0.0000028698, +0.0000028720,0.0000028651,0.0000028546,0.0000028458,0.0000028434, +0.0000028468,0.0000028521,0.0000028563,0.0000028584,0.0000028586, +0.0000028560,0.0000028524,0.0000028491,0.0000028466,0.0000028432, +0.0000028375,0.0000028312,0.0000028260,0.0000028222,0.0000028179, +0.0000028104,0.0000028011,0.0000027951,0.0000027932,0.0000027907, +0.0000027866,0.0000027819,0.0000027768,0.0000027710,0.0000027657, +0.0000027633,0.0000027642,0.0000027677,0.0000027705,0.0000027709, +0.0000027695,0.0000027652,0.0000027623,0.0000027623,0.0000027635, +0.0000027670,0.0000027723,0.0000027731,0.0000027742,0.0000027906, +0.0000028242,0.0000028353,0.0000028222,0.0000028154,0.0000028178, +0.0000028207,0.0000028216,0.0000028214,0.0000028197,0.0000028173, +0.0000028121,0.0000028026,0.0000027898,0.0000027743,0.0000027624, +0.0000027587,0.0000027588,0.0000027602,0.0000027652,0.0000027760, +0.0000027827,0.0000027795,0.0000027675,0.0000027556,0.0000027504, +0.0000027512,0.0000027550,0.0000027565,0.0000027544,0.0000027535, +0.0000027580,0.0000027693,0.0000027831,0.0000027963,0.0000028019, +0.0000028013,0.0000027986,0.0000027954,0.0000027944,0.0000027927, +0.0000027891,0.0000027864,0.0000027863,0.0000027885,0.0000027940, +0.0000028042,0.0000028164,0.0000028242,0.0000028247,0.0000028207, +0.0000028087,0.0000027942,0.0000027847,0.0000027808,0.0000027760, +0.0000027702,0.0000027660,0.0000027657,0.0000027712,0.0000027810, +0.0000027884,0.0000027935,0.0000027989,0.0000028008,0.0000027984, +0.0000027944,0.0000027912,0.0000027868,0.0000027818,0.0000027781, +0.0000027756,0.0000027767,0.0000027819,0.0000027877,0.0000027961, +0.0000028115,0.0000028226,0.0000028276,0.0000028408,0.0000028568, +0.0000028692,0.0000028791,0.0000028791,0.0000028742,0.0000028698, +0.0000028730,0.0000028775,0.0000028828,0.0000028861,0.0000028826, +0.0000028759,0.0000028714,0.0000028727,0.0000028720,0.0000028664, +0.0000028592,0.0000028464,0.0000028306,0.0000028175,0.0000028125, +0.0000028173,0.0000028299,0.0000028405,0.0000028496,0.0000028618, +0.0000028627,0.0000028466,0.0000028393,0.0000028464,0.0000028542, +0.0000028560,0.0000028553,0.0000028533,0.0000028509,0.0000028521, +0.0000028584,0.0000028680,0.0000028747,0.0000028769,0.0000028791, +0.0000028897,0.0000028993,0.0000028995,0.0000028926,0.0000028879, +0.0000028881,0.0000028901,0.0000028907,0.0000028898,0.0000028890, +0.0000028892,0.0000028884,0.0000028887,0.0000028894,0.0000028863, +0.0000028796,0.0000028732,0.0000028680,0.0000028627,0.0000028543, +0.0000028431,0.0000028318,0.0000028271,0.0000028275,0.0000028298, +0.0000028272,0.0000028197,0.0000028083,0.0000027991,0.0000027931, +0.0000027920,0.0000027980,0.0000028027,0.0000028043,0.0000028028, +0.0000027996,0.0000027959,0.0000027911,0.0000027847,0.0000027781, +0.0000027736,0.0000027690,0.0000027661,0.0000027659,0.0000027658, +0.0000027677,0.0000027735,0.0000027805,0.0000027866,0.0000027892, +0.0000027889,0.0000027872,0.0000027836,0.0000027803,0.0000027790, +0.0000027787,0.0000027778,0.0000027756,0.0000027748,0.0000027758, +0.0000027795,0.0000027845,0.0000027885,0.0000027903,0.0000027895, +0.0000027885,0.0000027910,0.0000027957,0.0000028023,0.0000028064, +0.0000028097,0.0000028140,0.0000028195,0.0000028258,0.0000028320, +0.0000028378,0.0000028421,0.0000028432,0.0000028428,0.0000028416, +0.0000028393,0.0000028354,0.0000028338,0.0000028352,0.0000028315, +0.0000028228,0.0000028126,0.0000028045,0.0000028019,0.0000028029, +0.0000028042,0.0000028012,0.0000027917,0.0000027834,0.0000027823, +0.0000027875,0.0000027932,0.0000027962,0.0000027917,0.0000027815, +0.0000027811,0.0000027870,0.0000027909,0.0000028003,0.0000028070, +0.0000028162,0.0000028371,0.0000028452,0.0000028373,0.0000028291, +0.0000028332,0.0000028493,0.0000028614,0.0000028634,0.0000028599, +0.0000028537,0.0000028505,0.0000028396,0.0000028226,0.0000028092, +0.0000028082,0.0000028134,0.0000028209,0.0000028253,0.0000028207, +0.0000028182,0.0000028201,0.0000028215,0.0000028173,0.0000028107, +0.0000028052,0.0000028011,0.0000027956,0.0000027887,0.0000027820, +0.0000027786,0.0000027786,0.0000027810,0.0000027824,0.0000027832, +0.0000027829,0.0000027829,0.0000027831,0.0000027829,0.0000027819, +0.0000027796,0.0000027768,0.0000027735,0.0000027685,0.0000027634, +0.0000027599,0.0000027573,0.0000027572,0.0000027579,0.0000027591, +0.0000027597,0.0000027616,0.0000027644,0.0000027663,0.0000027657, +0.0000027628,0.0000027569,0.0000027478,0.0000027395,0.0000027365, +0.0000027380,0.0000027414,0.0000027427,0.0000027415,0.0000027411, +0.0000027445,0.0000027542,0.0000027689,0.0000027841,0.0000027960, +0.0000028036,0.0000028091,0.0000028136,0.0000028203,0.0000028329, +0.0000028423,0.0000028417,0.0000028409,0.0000028452,0.0000028523, +0.0000028563,0.0000028586,0.0000028558,0.0000028504,0.0000028494, +0.0000028535,0.0000028596,0.0000028616,0.0000028577,0.0000028479, +0.0000028388,0.0000028303,0.0000028253,0.0000028191,0.0000028190, +0.0000028230,0.0000028308,0.0000028349,0.0000028344,0.0000028295, +0.0000028215,0.0000028127,0.0000028052,0.0000028007,0.0000027977, +0.0000027937,0.0000027888,0.0000027847,0.0000027818,0.0000027806, +0.0000027831,0.0000027890,0.0000027990,0.0000028120,0.0000028222, +0.0000028286,0.0000028303,0.0000028274,0.0000028192,0.0000028083, +0.0000027976,0.0000027907,0.0000027872,0.0000027865,0.0000027861, +0.0000027847,0.0000027822,0.0000027795,0.0000027764,0.0000027729, +0.0000027703,0.0000027705,0.0000027756,0.0000027825,0.0000027867, +0.0000027881,0.0000027895,0.0000027918,0.0000027950,0.0000027974, +0.0000027965,0.0000027921,0.0000027875,0.0000027844,0.0000027825, +0.0000027841,0.0000027892,0.0000027955,0.0000028046,0.0000028168, +0.0000028259,0.0000028280,0.0000028279,0.0000028286,0.0000028307, +0.0000028324,0.0000028336,0.0000028405,0.0000028529,0.0000028573, +0.0000028528,0.0000028331,0.0000028045,0.0000027895,0.0000027927, +0.0000028085,0.0000028308,0.0000028444,0.0000028439,0.0000028345, +0.0000028274,0.0000028313,0.0000028448,0.0000028556,0.0000028573, +0.0000028587,0.0000028669,0.0000028753,0.0000028761,0.0000028722, +0.0000028689,0.0000028682,0.0000028698,0.0000028736,0.0000028801, +0.0000028881,0.0000028943,0.0000028969,0.0000028969,0.0000028956, +0.0000028922,0.0000028867,0.0000028832,0.0000028861,0.0000028908, +0.0000028932,0.0000028943,0.0000028963,0.0000029027,0.0000029143, +0.0000029264,0.0000029338,0.0000029390,0.0000029479,0.0000029593, +0.0000029662,0.0000029642,0.0000029526,0.0000029357,0.0000029205, +0.0000029098,0.0000029025,0.0000028957,0.0000028883,0.0000028806, +0.0000028732,0.0000028674,0.0000028645,0.0000028603,0.0000028543, +0.0000028502,0.0000028486,0.0000028482,0.0000028482,0.0000028496, +0.0000028528,0.0000028584,0.0000028661,0.0000028724,0.0000028748, +0.0000028728,0.0000028686,0.0000028613,0.0000028540,0.0000028482, +0.0000028442,0.0000028416,0.0000028395,0.0000028363,0.0000028307, +0.0000028244,0.0000028226,0.0000028247,0.0000028273,0.0000028284, +0.0000028290,0.0000028320,0.0000028370,0.0000028405,0.0000028397, +0.0000028354,0.0000028310,0.0000028291,0.0000028292,0.0000028304, +0.0000028305,0.0000028266,0.0000028185,0.0000028168,0.0000028274, +0.0000028393,0.0000028390,0.0000028306,0.0000028285,0.0000028321, +0.0000028399,0.0000028487,0.0000028529,0.0000028512,0.0000028510, +0.0000028521,0.0000028489,0.0000028454,0.0000028459,0.0000028449, +0.0000028388,0.0000028309,0.0000028227,0.0000028130,0.0000028038, +0.0000028005,0.0000028008,0.0000027993,0.0000027956,0.0000027925, +0.0000027913,0.0000027903,0.0000027861,0.0000027773,0.0000027732, +0.0000027774,0.0000027835,0.0000027851,0.0000027832,0.0000027813, +0.0000027822,0.0000027856,0.0000027903,0.0000027957,0.0000027977, +0.0000027940,0.0000027880,0.0000027851,0.0000027873,0.0000027915, +0.0000027955,0.0000027994,0.0000028054,0.0000028105,0.0000028113, +0.0000028081,0.0000028017,0.0000027950,0.0000027905,0.0000027890, +0.0000027894,0.0000027919,0.0000027945,0.0000027959,0.0000027980, +0.0000027989,0.0000027988,0.0000027996,0.0000028032,0.0000028092, +0.0000028128,0.0000028139,0.0000028117,0.0000028052,0.0000027965, +0.0000027909,0.0000027916,0.0000027972,0.0000028039,0.0000028081, +0.0000028082,0.0000028061,0.0000028017,0.0000027972,0.0000027980, +0.0000028125,0.0000028401,0.0000028574,0.0000028611,0.0000028663, +0.0000028784,0.0000028890,0.0000028918,0.0000028885,0.0000028820, +0.0000028767,0.0000028742,0.0000028732,0.0000028722,0.0000028723, +0.0000028695,0.0000028709,0.0000028698,0.0000028665,0.0000028575, +0.0000028484,0.0000028449,0.0000028455,0.0000028485,0.0000028498, +0.0000028473,0.0000028458,0.0000028498,0.0000028587,0.0000028670, +0.0000028711,0.0000028720,0.0000028706,0.0000028682,0.0000028670, +0.0000028681,0.0000028679,0.0000028627,0.0000028533,0.0000028390, +0.0000028265,0.0000028233,0.0000028347,0.0000028567,0.0000028716, +0.0000028718,0.0000028655,0.0000028575,0.0000028520,0.0000028521, +0.0000028550,0.0000028582,0.0000028605,0.0000028612,0.0000028593, +0.0000028546,0.0000028497,0.0000028466,0.0000028431,0.0000028371, +0.0000028291,0.0000028238,0.0000028230,0.0000028237,0.0000028225, +0.0000028155,0.0000028058,0.0000027980,0.0000027914,0.0000027844, +0.0000027799,0.0000027770,0.0000027739,0.0000027698,0.0000027651, +0.0000027624,0.0000027631,0.0000027663,0.0000027693,0.0000027697, +0.0000027675,0.0000027638,0.0000027637,0.0000027657,0.0000027675, +0.0000027705,0.0000027762,0.0000027781,0.0000027766,0.0000027866, +0.0000028167,0.0000028345,0.0000028297,0.0000028159,0.0000028117, +0.0000028138,0.0000028152,0.0000028176,0.0000028196,0.0000028200, +0.0000028181,0.0000028108,0.0000027976,0.0000027804,0.0000027661, +0.0000027598,0.0000027591,0.0000027609,0.0000027663,0.0000027767, +0.0000027832,0.0000027808,0.0000027698,0.0000027583,0.0000027498, +0.0000027471,0.0000027487,0.0000027535,0.0000027572,0.0000027553, +0.0000027556,0.0000027642,0.0000027786,0.0000027928,0.0000027996, +0.0000028006,0.0000028011,0.0000027994,0.0000027990,0.0000027963, +0.0000027908,0.0000027863,0.0000027830,0.0000027830,0.0000027867, +0.0000027957,0.0000028085,0.0000028193,0.0000028237,0.0000028206, +0.0000028099,0.0000027954,0.0000027851,0.0000027808,0.0000027774, +0.0000027722,0.0000027676,0.0000027679,0.0000027751,0.0000027839, +0.0000027906,0.0000027959,0.0000027997,0.0000027990,0.0000027953, +0.0000027934,0.0000027937,0.0000027923,0.0000027888,0.0000027849, +0.0000027824,0.0000027833,0.0000027883,0.0000027933,0.0000028016, +0.0000028138,0.0000028208,0.0000028270,0.0000028408,0.0000028571, +0.0000028725,0.0000028826,0.0000028780,0.0000028702,0.0000028657, +0.0000028697,0.0000028784,0.0000028856,0.0000028838,0.0000028763, +0.0000028704,0.0000028675,0.0000028683,0.0000028657,0.0000028582, +0.0000028501,0.0000028377,0.0000028235,0.0000028128,0.0000028075, +0.0000028115,0.0000028235,0.0000028386,0.0000028472,0.0000028564, +0.0000028606,0.0000028486,0.0000028368,0.0000028419,0.0000028521, +0.0000028555,0.0000028533,0.0000028496,0.0000028475,0.0000028485, +0.0000028573,0.0000028712,0.0000028794,0.0000028808,0.0000028839, +0.0000028972,0.0000029046,0.0000029001,0.0000028918,0.0000028890, +0.0000028899,0.0000028915,0.0000028906,0.0000028884,0.0000028865, +0.0000028865,0.0000028879,0.0000028876,0.0000028870,0.0000028811, +0.0000028731,0.0000028651,0.0000028595,0.0000028566,0.0000028505, +0.0000028411,0.0000028301,0.0000028221,0.0000028202,0.0000028203, +0.0000028171,0.0000028093,0.0000027982,0.0000027879,0.0000027811, +0.0000027774,0.0000027807,0.0000027849,0.0000027875,0.0000027877, +0.0000027855,0.0000027839,0.0000027812,0.0000027773,0.0000027727, +0.0000027705,0.0000027673,0.0000027637,0.0000027617,0.0000027602, +0.0000027596,0.0000027604,0.0000027627,0.0000027657,0.0000027677, +0.0000027680,0.0000027675,0.0000027661,0.0000027645,0.0000027627, +0.0000027621,0.0000027621,0.0000027611,0.0000027589,0.0000027574, +0.0000027579,0.0000027611,0.0000027657,0.0000027696,0.0000027724, +0.0000027730,0.0000027746,0.0000027803,0.0000027870,0.0000027949, +0.0000028004,0.0000028042,0.0000028083,0.0000028139,0.0000028182, +0.0000028211,0.0000028263,0.0000028338,0.0000028370,0.0000028356, +0.0000028351,0.0000028382,0.0000028376,0.0000028312,0.0000028285, +0.0000028277,0.0000028256,0.0000028206,0.0000028129,0.0000028069, +0.0000028051,0.0000028058,0.0000028054,0.0000027983,0.0000027881, +0.0000027831,0.0000027847,0.0000027888,0.0000027930,0.0000027914, +0.0000027818,0.0000027762,0.0000027826,0.0000027888,0.0000027968, +0.0000028040,0.0000028157,0.0000028377,0.0000028448,0.0000028361, +0.0000028299,0.0000028367,0.0000028528,0.0000028634,0.0000028648, +0.0000028594,0.0000028527,0.0000028471,0.0000028327,0.0000028150, +0.0000028065,0.0000028091,0.0000028152,0.0000028218,0.0000028236, +0.0000028179,0.0000028171,0.0000028182,0.0000028124,0.0000028018, +0.0000027957,0.0000027929,0.0000027896,0.0000027838,0.0000027766, +0.0000027699,0.0000027669,0.0000027674,0.0000027712,0.0000027736, +0.0000027752,0.0000027752,0.0000027755,0.0000027759,0.0000027766, +0.0000027766,0.0000027755,0.0000027750,0.0000027737,0.0000027699, +0.0000027653,0.0000027619,0.0000027596,0.0000027600,0.0000027611, +0.0000027619,0.0000027618,0.0000027623,0.0000027627,0.0000027619, +0.0000027588,0.0000027546,0.0000027495,0.0000027428,0.0000027390, +0.0000027389,0.0000027421,0.0000027455,0.0000027464,0.0000027452, +0.0000027439,0.0000027450,0.0000027519,0.0000027641,0.0000027778, +0.0000027905,0.0000027991,0.0000028066,0.0000028130,0.0000028206, +0.0000028347,0.0000028436,0.0000028411,0.0000028394,0.0000028411, +0.0000028483,0.0000028522,0.0000028567,0.0000028561,0.0000028514, +0.0000028487,0.0000028511,0.0000028559,0.0000028601,0.0000028586, +0.0000028519,0.0000028424,0.0000028340,0.0000028274,0.0000028189, +0.0000028153,0.0000028171,0.0000028236,0.0000028300,0.0000028343, +0.0000028339,0.0000028307,0.0000028226,0.0000028135,0.0000028054, +0.0000028003,0.0000027957,0.0000027912,0.0000027867,0.0000027836, +0.0000027833,0.0000027858,0.0000027918,0.0000027996,0.0000028099, +0.0000028186,0.0000028224,0.0000028221,0.0000028182,0.0000028115, +0.0000028053,0.0000027996,0.0000027967,0.0000027973,0.0000027987, +0.0000027992,0.0000027972,0.0000027929,0.0000027888,0.0000027856, +0.0000027823,0.0000027797,0.0000027790,0.0000027818,0.0000027884, +0.0000027939,0.0000027963,0.0000027974,0.0000027995,0.0000028034, +0.0000028080,0.0000028097,0.0000028056,0.0000027970,0.0000027888, +0.0000027844,0.0000027835,0.0000027866,0.0000027910,0.0000027963, +0.0000028060,0.0000028188,0.0000028278,0.0000028310,0.0000028327, +0.0000028334,0.0000028338,0.0000028339,0.0000028359,0.0000028452, +0.0000028571,0.0000028593,0.0000028509,0.0000028278,0.0000028003, +0.0000027910,0.0000027970,0.0000028149,0.0000028372,0.0000028492, +0.0000028473,0.0000028371,0.0000028291,0.0000028310,0.0000028413, +0.0000028491,0.0000028498,0.0000028516,0.0000028613,0.0000028722, +0.0000028745,0.0000028698,0.0000028646,0.0000028618,0.0000028610, +0.0000028619,0.0000028655,0.0000028718,0.0000028781,0.0000028815, +0.0000028824,0.0000028817,0.0000028792,0.0000028750,0.0000028732, +0.0000028784,0.0000028842,0.0000028865,0.0000028861,0.0000028852, +0.0000028871,0.0000028967,0.0000029110,0.0000029234,0.0000029305, +0.0000029354,0.0000029424,0.0000029519,0.0000029583,0.0000029561, +0.0000029472,0.0000029347,0.0000029216,0.0000029090,0.0000028993, +0.0000028935,0.0000028901,0.0000028871,0.0000028831,0.0000028773, +0.0000028693,0.0000028610,0.0000028555,0.0000028525,0.0000028498, +0.0000028472,0.0000028429,0.0000028401,0.0000028424,0.0000028493, +0.0000028581,0.0000028645,0.0000028669,0.0000028655,0.0000028606, +0.0000028547,0.0000028501,0.0000028467,0.0000028438,0.0000028421, +0.0000028395,0.0000028353,0.0000028304,0.0000028288,0.0000028324, +0.0000028379,0.0000028409,0.0000028399,0.0000028379,0.0000028385, +0.0000028409,0.0000028414,0.0000028392,0.0000028361,0.0000028354, +0.0000028374,0.0000028406,0.0000028423,0.0000028411,0.0000028335, +0.0000028201,0.0000028152,0.0000028259,0.0000028387,0.0000028385, +0.0000028308,0.0000028295,0.0000028352,0.0000028433,0.0000028492, +0.0000028512,0.0000028506,0.0000028526,0.0000028528,0.0000028460, +0.0000028414,0.0000028428,0.0000028422,0.0000028362,0.0000028286, +0.0000028221,0.0000028144,0.0000028072,0.0000028037,0.0000028016, +0.0000027980,0.0000027943,0.0000027912,0.0000027922,0.0000027946, +0.0000027946,0.0000027871,0.0000027782,0.0000027747,0.0000027748, +0.0000027771,0.0000027797,0.0000027829,0.0000027878,0.0000027921, +0.0000027971,0.0000028022,0.0000028047,0.0000028013,0.0000027950, +0.0000027911,0.0000027909,0.0000027923,0.0000027931,0.0000027938, +0.0000027999,0.0000028081,0.0000028124,0.0000028111,0.0000028042, +0.0000027945,0.0000027870,0.0000027847,0.0000027870,0.0000027916, +0.0000027955,0.0000027956,0.0000027957,0.0000027958,0.0000027969, +0.0000027984,0.0000028017,0.0000028058,0.0000028068,0.0000028045, +0.0000028001,0.0000027948,0.0000027904,0.0000027895,0.0000027960, +0.0000028053,0.0000028113,0.0000028135,0.0000028121,0.0000028099, +0.0000028055,0.0000027987,0.0000027946,0.0000028003,0.0000028259, +0.0000028505,0.0000028579,0.0000028606,0.0000028700,0.0000028821, +0.0000028888,0.0000028884,0.0000028843,0.0000028780,0.0000028745, +0.0000028733,0.0000028732,0.0000028733,0.0000028715,0.0000028723, +0.0000028728,0.0000028726,0.0000028650,0.0000028567,0.0000028514, +0.0000028492,0.0000028498,0.0000028511,0.0000028500,0.0000028469, +0.0000028453,0.0000028486,0.0000028536,0.0000028582,0.0000028620, +0.0000028653,0.0000028657,0.0000028628,0.0000028612,0.0000028622, +0.0000028623,0.0000028578,0.0000028487,0.0000028343,0.0000028227, +0.0000028242,0.0000028428,0.0000028651,0.0000028728,0.0000028705, +0.0000028650,0.0000028596,0.0000028570,0.0000028558,0.0000028561, +0.0000028563,0.0000028564,0.0000028556,0.0000028526,0.0000028485, +0.0000028453,0.0000028424,0.0000028374,0.0000028290,0.0000028199, +0.0000028169,0.0000028192,0.0000028228,0.0000028221,0.0000028178, +0.0000028096,0.0000027997,0.0000027881,0.0000027788,0.0000027733, +0.0000027719,0.0000027709,0.0000027687,0.0000027645,0.0000027615, +0.0000027613,0.0000027643,0.0000027676,0.0000027680,0.0000027655, +0.0000027635,0.0000027660,0.0000027701,0.0000027725,0.0000027752, +0.0000027800,0.0000027817,0.0000027786,0.0000027820,0.0000028022, +0.0000028282,0.0000028359,0.0000028216,0.0000028106,0.0000028076, +0.0000028084,0.0000028105,0.0000028159,0.0000028198,0.0000028203, +0.0000028171,0.0000028057,0.0000027883,0.0000027713,0.0000027614, +0.0000027597,0.0000027612,0.0000027666,0.0000027770,0.0000027836, +0.0000027815,0.0000027717,0.0000027612,0.0000027513,0.0000027450, +0.0000027445,0.0000027499,0.0000027582,0.0000027615,0.0000027606, +0.0000027663,0.0000027751,0.0000027870,0.0000027955,0.0000027995, +0.0000028014,0.0000028012,0.0000028018,0.0000027999,0.0000027953, +0.0000027898,0.0000027852,0.0000027835,0.0000027841,0.0000027896, +0.0000028006,0.0000028116,0.0000028181,0.0000028168,0.0000028075, +0.0000027937,0.0000027825,0.0000027779,0.0000027761,0.0000027730, +0.0000027698,0.0000027722,0.0000027807,0.0000027877,0.0000027923, +0.0000027971,0.0000027991,0.0000027962,0.0000027930,0.0000027951, +0.0000027996,0.0000028006,0.0000027973,0.0000027928,0.0000027890, +0.0000027897,0.0000027940,0.0000027992,0.0000028064,0.0000028141, +0.0000028196,0.0000028273,0.0000028401,0.0000028587,0.0000028757, +0.0000028811,0.0000028724,0.0000028647,0.0000028611,0.0000028701, +0.0000028825,0.0000028852,0.0000028786,0.0000028694,0.0000028614, +0.0000028574,0.0000028581,0.0000028559,0.0000028486,0.0000028399, +0.0000028273,0.0000028145,0.0000028078,0.0000028051,0.0000028097, +0.0000028197,0.0000028356,0.0000028459,0.0000028516,0.0000028593, +0.0000028514,0.0000028358,0.0000028360,0.0000028487,0.0000028537, +0.0000028503,0.0000028468,0.0000028476,0.0000028501,0.0000028573, +0.0000028732,0.0000028822,0.0000028831,0.0000028889,0.0000029037, +0.0000029070,0.0000028986,0.0000028909,0.0000028890,0.0000028892, +0.0000028886,0.0000028858,0.0000028834,0.0000028828,0.0000028840, +0.0000028855,0.0000028837,0.0000028801,0.0000028733,0.0000028658, +0.0000028603,0.0000028564,0.0000028542,0.0000028488,0.0000028397, +0.0000028271,0.0000028135,0.0000028063,0.0000028057,0.0000028050, +0.0000027997,0.0000027911,0.0000027805,0.0000027735,0.0000027687, +0.0000027702,0.0000027741,0.0000027778,0.0000027795,0.0000027795, +0.0000027771,0.0000027742,0.0000027694,0.0000027634,0.0000027603, +0.0000027578,0.0000027542,0.0000027512,0.0000027475,0.0000027441, +0.0000027436,0.0000027426,0.0000027432,0.0000027448,0.0000027452, +0.0000027448,0.0000027444,0.0000027441,0.0000027430,0.0000027418, +0.0000027420,0.0000027428,0.0000027427,0.0000027409,0.0000027385, +0.0000027382,0.0000027403,0.0000027437,0.0000027478,0.0000027519, +0.0000027552,0.0000027606,0.0000027695,0.0000027789,0.0000027885, +0.0000027952,0.0000027994,0.0000028019,0.0000028073,0.0000028127, +0.0000028152,0.0000028166,0.0000028234,0.0000028303,0.0000028305, +0.0000028295,0.0000028332,0.0000028372,0.0000028327,0.0000028246, +0.0000028210,0.0000028225,0.0000028228,0.0000028193,0.0000028139, +0.0000028101,0.0000028092,0.0000028088,0.0000028041,0.0000027951, +0.0000027873,0.0000027850,0.0000027868,0.0000027886,0.0000027883, +0.0000027838,0.0000027747,0.0000027778,0.0000027865,0.0000027942, +0.0000028014,0.0000028174,0.0000028401,0.0000028445,0.0000028350, +0.0000028317,0.0000028414,0.0000028562,0.0000028645,0.0000028653, +0.0000028580,0.0000028515,0.0000028425,0.0000028256,0.0000028087, +0.0000028062,0.0000028114,0.0000028168,0.0000028217,0.0000028213, +0.0000028173,0.0000028166,0.0000028099,0.0000027961,0.0000027872, +0.0000027863,0.0000027856,0.0000027814,0.0000027743,0.0000027669, +0.0000027606,0.0000027583,0.0000027590,0.0000027629,0.0000027665, +0.0000027694,0.0000027711,0.0000027727,0.0000027746,0.0000027763, +0.0000027797,0.0000027816,0.0000027834,0.0000027836,0.0000027813, +0.0000027774,0.0000027734,0.0000027706,0.0000027703,0.0000027713, +0.0000027716,0.0000027709,0.0000027694,0.0000027675,0.0000027641, +0.0000027585,0.0000027512,0.0000027441,0.0000027388,0.0000027380, +0.0000027405,0.0000027459,0.0000027510,0.0000027522,0.0000027516, +0.0000027495,0.0000027488,0.0000027523,0.0000027619,0.0000027739, +0.0000027856,0.0000027949,0.0000028021,0.0000028101,0.0000028212, +0.0000028368,0.0000028429,0.0000028384,0.0000028360,0.0000028377, +0.0000028432,0.0000028473,0.0000028521,0.0000028526,0.0000028482, +0.0000028445,0.0000028462,0.0000028499,0.0000028544,0.0000028547, +0.0000028512,0.0000028418,0.0000028355,0.0000028283,0.0000028196, +0.0000028128,0.0000028124,0.0000028168,0.0000028228,0.0000028276, +0.0000028295,0.0000028281,0.0000028244,0.0000028173,0.0000028100, +0.0000028047,0.0000028005,0.0000027959,0.0000027916,0.0000027891, +0.0000027897,0.0000027926,0.0000027971,0.0000028025,0.0000028082, +0.0000028140,0.0000028160,0.0000028153,0.0000028141,0.0000028120, +0.0000028082,0.0000028043,0.0000028032,0.0000028058,0.0000028093, +0.0000028106,0.0000028092,0.0000028045,0.0000027993,0.0000027960, +0.0000027934,0.0000027906,0.0000027885,0.0000027887,0.0000027926, +0.0000027980,0.0000028012,0.0000028026,0.0000028040,0.0000028072, +0.0000028122,0.0000028165,0.0000028164,0.0000028098,0.0000027992, +0.0000027900,0.0000027858,0.0000027854,0.0000027890,0.0000027925, +0.0000027978,0.0000028083,0.0000028217,0.0000028314,0.0000028365, +0.0000028375,0.0000028360,0.0000028347,0.0000028344,0.0000028380, +0.0000028494,0.0000028591,0.0000028587,0.0000028478,0.0000028219, +0.0000027980,0.0000027937,0.0000028024,0.0000028208,0.0000028426, +0.0000028533,0.0000028502,0.0000028383,0.0000028278,0.0000028273, +0.0000028353,0.0000028419,0.0000028427,0.0000028443,0.0000028532, +0.0000028645,0.0000028680,0.0000028643,0.0000028576,0.0000028527, +0.0000028497,0.0000028484,0.0000028501,0.0000028551,0.0000028611, +0.0000028651,0.0000028669,0.0000028675,0.0000028664,0.0000028642, +0.0000028655,0.0000028727,0.0000028799,0.0000028829,0.0000028826, +0.0000028811,0.0000028817,0.0000028875,0.0000028968,0.0000029072, +0.0000029182,0.0000029278,0.0000029335,0.0000029361,0.0000029382, +0.0000029395,0.0000029390,0.0000029363,0.0000029320,0.0000029247, +0.0000029139,0.0000029026,0.0000028935,0.0000028876,0.0000028853, +0.0000028840,0.0000028828,0.0000028797,0.0000028756,0.0000028698, +0.0000028610,0.0000028520,0.0000028440,0.0000028373,0.0000028343, +0.0000028372,0.0000028428,0.0000028491,0.0000028526,0.0000028527, +0.0000028496,0.0000028457,0.0000028425,0.0000028407,0.0000028399, +0.0000028391,0.0000028373,0.0000028336,0.0000028291,0.0000028272, +0.0000028306,0.0000028388,0.0000028445,0.0000028448,0.0000028410, +0.0000028379,0.0000028376,0.0000028378,0.0000028363,0.0000028342, +0.0000028349,0.0000028391,0.0000028447,0.0000028491,0.0000028501, +0.0000028479,0.0000028368,0.0000028193,0.0000028135,0.0000028255, +0.0000028391,0.0000028379,0.0000028311,0.0000028313,0.0000028391, +0.0000028458,0.0000028481,0.0000028488,0.0000028502,0.0000028540, +0.0000028521,0.0000028421,0.0000028376,0.0000028395,0.0000028384, +0.0000028320,0.0000028253,0.0000028199,0.0000028151,0.0000028130, +0.0000028116,0.0000028070,0.0000027993,0.0000027927,0.0000027907, +0.0000027929,0.0000027963,0.0000027995,0.0000027963,0.0000027876, +0.0000027771,0.0000027699,0.0000027676,0.0000027719,0.0000027803, +0.0000027888,0.0000027957,0.0000028013,0.0000028080,0.0000028118, +0.0000028100,0.0000028053,0.0000028021,0.0000028010,0.0000027994, +0.0000027958,0.0000027928,0.0000027955,0.0000028039,0.0000028126, +0.0000028158,0.0000028109,0.0000027989,0.0000027865,0.0000027809, +0.0000027831,0.0000027905,0.0000027974,0.0000027992,0.0000027971, +0.0000027946,0.0000027936,0.0000027948,0.0000027981,0.0000028013, +0.0000028020,0.0000027983,0.0000027937,0.0000027922,0.0000027925, +0.0000027967,0.0000028041,0.0000028117,0.0000028152,0.0000028162, +0.0000028142,0.0000028121,0.0000028091,0.0000028021,0.0000027943, +0.0000027939,0.0000028121,0.0000028405,0.0000028542,0.0000028564, +0.0000028615,0.0000028740,0.0000028847,0.0000028882,0.0000028870, +0.0000028831,0.0000028795,0.0000028774,0.0000028766,0.0000028760, +0.0000028757,0.0000028750,0.0000028778,0.0000028781,0.0000028723, +0.0000028640,0.0000028570,0.0000028529,0.0000028516,0.0000028524, +0.0000028527,0.0000028520,0.0000028506,0.0000028509,0.0000028522, +0.0000028532,0.0000028526,0.0000028555,0.0000028606,0.0000028615, +0.0000028579,0.0000028556,0.0000028568,0.0000028565,0.0000028515, +0.0000028381,0.0000028250,0.0000028230,0.0000028387,0.0000028615, +0.0000028728,0.0000028719,0.0000028673,0.0000028613,0.0000028562, +0.0000028502,0.0000028458,0.0000028436,0.0000028426,0.0000028421, +0.0000028413,0.0000028397,0.0000028380,0.0000028356,0.0000028316, +0.0000028247,0.0000028153,0.0000028090,0.0000028090,0.0000028140, +0.0000028193,0.0000028208,0.0000028190,0.0000028124,0.0000028013, +0.0000027868,0.0000027744,0.0000027672,0.0000027671,0.0000027692, +0.0000027702,0.0000027666,0.0000027614,0.0000027602,0.0000027629, +0.0000027659,0.0000027661,0.0000027634,0.0000027630,0.0000027678, +0.0000027740,0.0000027779,0.0000027808,0.0000027841,0.0000027853, +0.0000027820,0.0000027795,0.0000027882,0.0000028123,0.0000028332, +0.0000028294,0.0000028122,0.0000028018,0.0000028014,0.0000028029, +0.0000028090,0.0000028164,0.0000028197,0.0000028193,0.0000028122, +0.0000027968,0.0000027780,0.0000027643,0.0000027608,0.0000027616, +0.0000027662,0.0000027760,0.0000027836,0.0000027820,0.0000027731, +0.0000027643,0.0000027552,0.0000027456,0.0000027438,0.0000027482, +0.0000027586,0.0000027666,0.0000027699,0.0000027730,0.0000027767, +0.0000027815,0.0000027876,0.0000027932,0.0000027967,0.0000027987, +0.0000028007,0.0000028013,0.0000027998,0.0000027968,0.0000027927, +0.0000027898,0.0000027883,0.0000027904,0.0000027957,0.0000028033, +0.0000028083,0.0000028077,0.0000028008,0.0000027888,0.0000027773, +0.0000027722,0.0000027719,0.0000027720,0.0000027724,0.0000027783, +0.0000027864,0.0000027909,0.0000027941,0.0000027980,0.0000027984, +0.0000027951,0.0000027943,0.0000028011,0.0000028095,0.0000028101, +0.0000028059,0.0000027998,0.0000027958,0.0000027955,0.0000027989, +0.0000028040,0.0000028092,0.0000028141,0.0000028207,0.0000028287, +0.0000028414,0.0000028623,0.0000028768,0.0000028765,0.0000028663, +0.0000028609,0.0000028614,0.0000028756,0.0000028844,0.0000028823, +0.0000028705,0.0000028560,0.0000028498,0.0000028510,0.0000028540, +0.0000028532,0.0000028453,0.0000028348,0.0000028228,0.0000028123, +0.0000028072,0.0000028053,0.0000028104,0.0000028190,0.0000028328, +0.0000028444,0.0000028487,0.0000028558,0.0000028529,0.0000028365, +0.0000028324,0.0000028443,0.0000028512,0.0000028486,0.0000028464, +0.0000028489,0.0000028531,0.0000028577,0.0000028731,0.0000028831, +0.0000028844,0.0000028932,0.0000029073,0.0000029062,0.0000028960, +0.0000028900,0.0000028868,0.0000028835,0.0000028813,0.0000028787, +0.0000028769,0.0000028769,0.0000028786,0.0000028797,0.0000028774, +0.0000028730,0.0000028675,0.0000028607,0.0000028572,0.0000028529, +0.0000028510,0.0000028470,0.0000028365,0.0000028204,0.0000028038, +0.0000027950,0.0000027949,0.0000027987,0.0000027977,0.0000027924, +0.0000027836,0.0000027754,0.0000027688,0.0000027666,0.0000027670, +0.0000027689,0.0000027704,0.0000027716,0.0000027705,0.0000027681, +0.0000027639,0.0000027575,0.0000027517,0.0000027481,0.0000027435, +0.0000027391,0.0000027349,0.0000027297,0.0000027266,0.0000027248, +0.0000027232,0.0000027226,0.0000027235,0.0000027226,0.0000027202, +0.0000027189,0.0000027193,0.0000027193,0.0000027197,0.0000027212, +0.0000027229,0.0000027227,0.0000027199,0.0000027165,0.0000027157, +0.0000027174,0.0000027210,0.0000027262,0.0000027322,0.0000027386, +0.0000027468,0.0000027575,0.0000027700,0.0000027825,0.0000027912, +0.0000027960,0.0000027978,0.0000028019,0.0000028067,0.0000028101, +0.0000028105,0.0000028142,0.0000028226,0.0000028268,0.0000028259, +0.0000028271,0.0000028326,0.0000028332,0.0000028255,0.0000028170, +0.0000028163,0.0000028190,0.0000028192,0.0000028170,0.0000028152, +0.0000028144,0.0000028131,0.0000028090,0.0000028021,0.0000027945, +0.0000027897,0.0000027892,0.0000027881,0.0000027860,0.0000027843, +0.0000027756,0.0000027742,0.0000027844,0.0000027934,0.0000027999, +0.0000028205,0.0000028431,0.0000028437,0.0000028345,0.0000028345, +0.0000028469,0.0000028589,0.0000028650,0.0000028648,0.0000028565, +0.0000028496,0.0000028374,0.0000028184,0.0000028048,0.0000028073, +0.0000028132,0.0000028174,0.0000028202,0.0000028193,0.0000028173, +0.0000028120,0.0000027957,0.0000027821,0.0000027801,0.0000027814, +0.0000027786,0.0000027721,0.0000027646,0.0000027579,0.0000027524, +0.0000027500,0.0000027499,0.0000027528,0.0000027573,0.0000027612, +0.0000027637,0.0000027661,0.0000027689,0.0000027731,0.0000027781, +0.0000027814,0.0000027846,0.0000027858,0.0000027842,0.0000027810, +0.0000027776,0.0000027754,0.0000027754,0.0000027782,0.0000027805, +0.0000027809,0.0000027790,0.0000027759,0.0000027706,0.0000027636, +0.0000027544,0.0000027456,0.0000027398,0.0000027389,0.0000027422, +0.0000027479,0.0000027536,0.0000027560,0.0000027561,0.0000027545, +0.0000027526,0.0000027534,0.0000027605,0.0000027716,0.0000027818, +0.0000027909,0.0000027972,0.0000028069,0.0000028225,0.0000028375, +0.0000028408,0.0000028349,0.0000028309,0.0000028323,0.0000028362, +0.0000028416,0.0000028440,0.0000028455,0.0000028424,0.0000028403, +0.0000028422,0.0000028456,0.0000028480,0.0000028502,0.0000028477, +0.0000028406,0.0000028342,0.0000028253,0.0000028184,0.0000028105, +0.0000028085,0.0000028110,0.0000028161,0.0000028203,0.0000028226, +0.0000028220,0.0000028193,0.0000028137,0.0000028077,0.0000028035, +0.0000028006,0.0000027976,0.0000027944,0.0000027931,0.0000027941, +0.0000027968,0.0000027984,0.0000028011,0.0000028042,0.0000028082, +0.0000028105,0.0000028122,0.0000028138,0.0000028136,0.0000028115, +0.0000028079,0.0000028081,0.0000028119,0.0000028173,0.0000028203, +0.0000028201,0.0000028164,0.0000028105,0.0000028059,0.0000028030, +0.0000027998,0.0000027960,0.0000027937,0.0000027948,0.0000027991, +0.0000028036,0.0000028071,0.0000028097,0.0000028119,0.0000028149, +0.0000028186,0.0000028211,0.0000028200,0.0000028126,0.0000028015, +0.0000027918,0.0000027872,0.0000027866,0.0000027901,0.0000027937, +0.0000028003,0.0000028136,0.0000028283,0.0000028381,0.0000028407, +0.0000028395,0.0000028366,0.0000028348,0.0000028349,0.0000028408, +0.0000028527,0.0000028595,0.0000028576,0.0000028437,0.0000028160, +0.0000027966,0.0000027968,0.0000028071,0.0000028257,0.0000028466, +0.0000028560,0.0000028517,0.0000028377,0.0000028246,0.0000028220, +0.0000028285,0.0000028349,0.0000028371,0.0000028387,0.0000028441, +0.0000028523,0.0000028560,0.0000028536,0.0000028470,0.0000028405, +0.0000028347,0.0000028310,0.0000028313,0.0000028357,0.0000028423, +0.0000028474,0.0000028499,0.0000028513,0.0000028518,0.0000028521, +0.0000028568,0.0000028661,0.0000028760,0.0000028810,0.0000028814, +0.0000028800,0.0000028797,0.0000028837,0.0000028909,0.0000028970, +0.0000029038,0.0000029149,0.0000029260,0.0000029293,0.0000029269, +0.0000029215,0.0000029180,0.0000029195,0.0000029243,0.0000029269, +0.0000029251,0.0000029198,0.0000029105,0.0000028971,0.0000028843, +0.0000028769,0.0000028770,0.0000028815,0.0000028863,0.0000028877, +0.0000028828,0.0000028713,0.0000028579,0.0000028451,0.0000028358, +0.0000028346,0.0000028361,0.0000028386,0.0000028400,0.0000028395, +0.0000028373,0.0000028345,0.0000028327,0.0000028317,0.0000028323, +0.0000028333,0.0000028327,0.0000028300,0.0000028266,0.0000028250, +0.0000028277,0.0000028375,0.0000028468,0.0000028497,0.0000028478, +0.0000028432,0.0000028403,0.0000028390,0.0000028371,0.0000028346, +0.0000028349,0.0000028393,0.0000028456,0.0000028518,0.0000028549, +0.0000028549,0.0000028506,0.0000028357,0.0000028159,0.0000028123, +0.0000028283,0.0000028402,0.0000028375,0.0000028325,0.0000028351, +0.0000028434,0.0000028470,0.0000028459,0.0000028462,0.0000028505, +0.0000028553,0.0000028503,0.0000028388,0.0000028350,0.0000028362, +0.0000028336,0.0000028279,0.0000028220,0.0000028167,0.0000028148, +0.0000028174,0.0000028208,0.0000028166,0.0000028065,0.0000027972, +0.0000027939,0.0000027952,0.0000027978,0.0000028011,0.0000028016, +0.0000027963,0.0000027846,0.0000027716,0.0000027646,0.0000027670, +0.0000027747,0.0000027848,0.0000027935,0.0000028010,0.0000028086, +0.0000028147,0.0000028164,0.0000028145,0.0000028129,0.0000028122, +0.0000028099,0.0000028053,0.0000027999,0.0000027975,0.0000028019, +0.0000028115,0.0000028185,0.0000028175,0.0000028070,0.0000027909, +0.0000027808,0.0000027800,0.0000027871,0.0000027974,0.0000028020, +0.0000028016,0.0000027973,0.0000027933,0.0000027922,0.0000027937, +0.0000027963,0.0000027981,0.0000027969,0.0000027948,0.0000027963, +0.0000028005,0.0000028054,0.0000028095,0.0000028131,0.0000028152, +0.0000028162,0.0000028148,0.0000028127,0.0000028113,0.0000028060, +0.0000027969,0.0000027916,0.0000028004,0.0000028291,0.0000028500, +0.0000028540,0.0000028554,0.0000028652,0.0000028797,0.0000028886, +0.0000028906,0.0000028896,0.0000028864,0.0000028844,0.0000028833, +0.0000028827,0.0000028836,0.0000028833,0.0000028870,0.0000028872, +0.0000028837,0.0000028744,0.0000028645,0.0000028581,0.0000028544, +0.0000028538,0.0000028537,0.0000028541,0.0000028545,0.0000028557, +0.0000028584,0.0000028580,0.0000028532,0.0000028508,0.0000028550, +0.0000028599,0.0000028569,0.0000028509,0.0000028507,0.0000028522, +0.0000028486,0.0000028362,0.0000028271,0.0000028320,0.0000028489, +0.0000028662,0.0000028723,0.0000028707,0.0000028609,0.0000028491, +0.0000028395,0.0000028320,0.0000028273,0.0000028259,0.0000028262, +0.0000028262,0.0000028261,0.0000028260,0.0000028259,0.0000028251, +0.0000028222,0.0000028157,0.0000028059,0.0000027965,0.0000027927, +0.0000027957,0.0000028038,0.0000028124,0.0000028180,0.0000028175, +0.0000028141,0.0000028036,0.0000027891,0.0000027741,0.0000027651, +0.0000027611,0.0000027658,0.0000027701,0.0000027695,0.0000027636, +0.0000027609,0.0000027625,0.0000027649,0.0000027643,0.0000027613, +0.0000027613,0.0000027676,0.0000027760,0.0000027818,0.0000027853, +0.0000027880,0.0000027893,0.0000027866,0.0000027803,0.0000027784, +0.0000027922,0.0000028161,0.0000028256,0.0000028170,0.0000028025, +0.0000027961,0.0000027966,0.0000028013,0.0000028102,0.0000028175, +0.0000028193,0.0000028162,0.0000028050,0.0000027865,0.0000027696, +0.0000027622,0.0000027618,0.0000027648,0.0000027741,0.0000027825, +0.0000027817,0.0000027742,0.0000027676,0.0000027601,0.0000027507, +0.0000027454,0.0000027480,0.0000027577,0.0000027677,0.0000027751, +0.0000027808,0.0000027831,0.0000027838,0.0000027852,0.0000027886, +0.0000027920,0.0000027961,0.0000028007,0.0000028046,0.0000028063, +0.0000028054,0.0000028023,0.0000027990,0.0000027961,0.0000027936, +0.0000027934,0.0000027954,0.0000027969,0.0000027961,0.0000027916, +0.0000027829,0.0000027726,0.0000027673,0.0000027682,0.0000027723, +0.0000027779,0.0000027850,0.0000027907,0.0000027936,0.0000027967, +0.0000028001,0.0000027997,0.0000027967,0.0000027992,0.0000028107, +0.0000028199,0.0000028199,0.0000028129,0.0000028056,0.0000028019, +0.0000028009,0.0000028033,0.0000028074,0.0000028104,0.0000028159, +0.0000028236,0.0000028310,0.0000028462,0.0000028663,0.0000028738, +0.0000028706,0.0000028631,0.0000028620,0.0000028686,0.0000028796, +0.0000028838,0.0000028733,0.0000028558,0.0000028453,0.0000028456, +0.0000028504,0.0000028526,0.0000028516,0.0000028443,0.0000028356, +0.0000028262,0.0000028195,0.0000028160,0.0000028131,0.0000028153, +0.0000028205,0.0000028308,0.0000028422,0.0000028471,0.0000028510, +0.0000028515,0.0000028391,0.0000028303,0.0000028390,0.0000028484, +0.0000028487,0.0000028472,0.0000028509,0.0000028555,0.0000028576, +0.0000028702,0.0000028823,0.0000028844,0.0000028955,0.0000029071, +0.0000029032,0.0000028931,0.0000028869,0.0000028805,0.0000028744, +0.0000028718,0.0000028691,0.0000028681,0.0000028680,0.0000028697, +0.0000028718,0.0000028716,0.0000028680,0.0000028626,0.0000028547, +0.0000028510,0.0000028478,0.0000028467,0.0000028433,0.0000028336, +0.0000028180,0.0000028022,0.0000027920,0.0000027902,0.0000027933, +0.0000027932,0.0000027886,0.0000027815,0.0000027743,0.0000027677, +0.0000027641,0.0000027604,0.0000027570,0.0000027532,0.0000027507, +0.0000027474,0.0000027441,0.0000027388,0.0000027315,0.0000027236, +0.0000027183,0.0000027123,0.0000027060,0.0000027020,0.0000026976, +0.0000026934,0.0000026911,0.0000026893,0.0000026874,0.0000026869, +0.0000026876,0.0000026871,0.0000026851,0.0000026848,0.0000026863, +0.0000026879,0.0000026907,0.0000026949,0.0000026979,0.0000026984, +0.0000026964,0.0000026938,0.0000026934,0.0000026965,0.0000027019, +0.0000027088,0.0000027166,0.0000027242,0.0000027322,0.0000027430, +0.0000027579,0.0000027744,0.0000027876,0.0000027942,0.0000027963, +0.0000027997,0.0000028025,0.0000028049,0.0000028064,0.0000028086, +0.0000028152,0.0000028222,0.0000028240,0.0000028233,0.0000028261, +0.0000028303,0.0000028280,0.0000028195,0.0000028135,0.0000028129, +0.0000028145,0.0000028152,0.0000028158,0.0000028171,0.0000028169, +0.0000028137,0.0000028091,0.0000028046,0.0000028002,0.0000027985, +0.0000027940,0.0000027877,0.0000027847,0.0000027771,0.0000027728, +0.0000027833,0.0000027942,0.0000028010,0.0000028264,0.0000028453, +0.0000028420,0.0000028353,0.0000028390,0.0000028519,0.0000028606, +0.0000028653,0.0000028638,0.0000028550,0.0000028464,0.0000028318, +0.0000028117,0.0000028037,0.0000028095,0.0000028137,0.0000028166, +0.0000028183,0.0000028182,0.0000028149,0.0000028012,0.0000027824, +0.0000027755,0.0000027764,0.0000027755,0.0000027704,0.0000027635, +0.0000027569,0.0000027511,0.0000027454,0.0000027414,0.0000027395, +0.0000027412,0.0000027458,0.0000027509,0.0000027535,0.0000027560, +0.0000027595,0.0000027646,0.0000027697,0.0000027729,0.0000027758, +0.0000027766,0.0000027747,0.0000027723,0.0000027710,0.0000027703, +0.0000027720,0.0000027766,0.0000027801,0.0000027823,0.0000027814, +0.0000027781,0.0000027725,0.0000027660,0.0000027587,0.0000027523, +0.0000027477,0.0000027461,0.0000027475,0.0000027520,0.0000027564, +0.0000027585,0.0000027580,0.0000027550,0.0000027514,0.0000027511, +0.0000027569,0.0000027674,0.0000027774,0.0000027864,0.0000027940, +0.0000028057,0.0000028237,0.0000028358,0.0000028371,0.0000028310, +0.0000028255,0.0000028251,0.0000028268,0.0000028322,0.0000028333, +0.0000028355,0.0000028364,0.0000028380,0.0000028415,0.0000028447, +0.0000028461,0.0000028479,0.0000028455,0.0000028411,0.0000028337, +0.0000028247,0.0000028181,0.0000028095,0.0000028065,0.0000028069, +0.0000028105,0.0000028129,0.0000028156,0.0000028160,0.0000028150, +0.0000028117,0.0000028054,0.0000028005,0.0000027988,0.0000027976, +0.0000027956,0.0000027939,0.0000027938,0.0000027957,0.0000027972, +0.0000027975,0.0000027986,0.0000028019,0.0000028059,0.0000028092, +0.0000028119,0.0000028138,0.0000028132,0.0000028131,0.0000028155, +0.0000028205,0.0000028256,0.0000028283,0.0000028286,0.0000028259, +0.0000028201,0.0000028149,0.0000028117,0.0000028090,0.0000028054, +0.0000028023,0.0000028023,0.0000028064,0.0000028122,0.0000028182, +0.0000028236,0.0000028266,0.0000028272,0.0000028271,0.0000028273, +0.0000028274,0.0000028242,0.0000028154,0.0000028030,0.0000027923, +0.0000027875,0.0000027873,0.0000027919,0.0000027989,0.0000028106, +0.0000028258,0.0000028375,0.0000028422,0.0000028422,0.0000028397, +0.0000028365,0.0000028348,0.0000028364,0.0000028443,0.0000028548, +0.0000028575,0.0000028548,0.0000028384,0.0000028104,0.0000027965, +0.0000028001,0.0000028105,0.0000028293,0.0000028493,0.0000028568, +0.0000028516,0.0000028358,0.0000028210,0.0000028171,0.0000028223, +0.0000028293,0.0000028335,0.0000028356,0.0000028372,0.0000028391, +0.0000028398,0.0000028372,0.0000028322,0.0000028260,0.0000028191, +0.0000028133,0.0000028118,0.0000028152,0.0000028221,0.0000028286, +0.0000028324,0.0000028344,0.0000028361,0.0000028389,0.0000028458, +0.0000028571,0.0000028704,0.0000028796,0.0000028831,0.0000028828, +0.0000028809,0.0000028816,0.0000028860,0.0000028913,0.0000028961, +0.0000029034,0.0000029143,0.0000029227,0.0000029229,0.0000029154, +0.0000029052,0.0000029012,0.0000029042,0.0000029125,0.0000029199, +0.0000029231,0.0000029228,0.0000029152,0.0000028990,0.0000028806, +0.0000028688,0.0000028674,0.0000028737,0.0000028832,0.0000028879, +0.0000028858,0.0000028763,0.0000028638,0.0000028510,0.0000028432, +0.0000028399,0.0000028368,0.0000028347,0.0000028321,0.0000028301, +0.0000028292,0.0000028292,0.0000028295,0.0000028303,0.0000028319, +0.0000028330,0.0000028318,0.0000028296,0.0000028286,0.0000028319, +0.0000028418,0.0000028544,0.0000028621,0.0000028627,0.0000028592, +0.0000028550,0.0000028515,0.0000028481,0.0000028448,0.0000028435, +0.0000028451,0.0000028494,0.0000028547,0.0000028581,0.0000028584, +0.0000028565,0.0000028487,0.0000028298,0.0000028120,0.0000028145, +0.0000028329,0.0000028422,0.0000028390,0.0000028356,0.0000028405, +0.0000028473,0.0000028469,0.0000028439,0.0000028448,0.0000028519, +0.0000028556,0.0000028486,0.0000028376,0.0000028346,0.0000028333, +0.0000028300,0.0000028251,0.0000028189,0.0000028131,0.0000028127, +0.0000028194,0.0000028255,0.0000028246,0.0000028173,0.0000028091, +0.0000028044,0.0000028028,0.0000028030,0.0000028039,0.0000028041, +0.0000028011,0.0000027927,0.0000027801,0.0000027710,0.0000027693, +0.0000027734,0.0000027805,0.0000027875,0.0000027939,0.0000028014, +0.0000028097,0.0000028152,0.0000028171,0.0000028166,0.0000028171, +0.0000028159,0.0000028130,0.0000028095,0.0000028049,0.0000028052, +0.0000028122,0.0000028197,0.0000028214,0.0000028147,0.0000027991, +0.0000027852,0.0000027803,0.0000027839,0.0000027932,0.0000028014, +0.0000028042,0.0000028019,0.0000027968,0.0000027929,0.0000027925, +0.0000027940,0.0000027965,0.0000027985,0.0000028003,0.0000028032, +0.0000028065,0.0000028080,0.0000028086,0.0000028097,0.0000028122, +0.0000028145,0.0000028145,0.0000028129,0.0000028123,0.0000028093, +0.0000028007,0.0000027917,0.0000027930,0.0000028189,0.0000028455, +0.0000028533,0.0000028529,0.0000028579,0.0000028735,0.0000028881, +0.0000028944,0.0000028955,0.0000028941,0.0000028938,0.0000028948, +0.0000028957,0.0000028975,0.0000028987,0.0000029013,0.0000029017, +0.0000028986,0.0000028883,0.0000028756,0.0000028658,0.0000028588, +0.0000028562,0.0000028557,0.0000028561,0.0000028578,0.0000028603, +0.0000028645,0.0000028655,0.0000028586,0.0000028517,0.0000028540, +0.0000028595,0.0000028557,0.0000028469,0.0000028453,0.0000028459, +0.0000028416,0.0000028362,0.0000028389,0.0000028518,0.0000028643, +0.0000028669,0.0000028621,0.0000028499,0.0000028353,0.0000028231, +0.0000028163,0.0000028133,0.0000028125,0.0000028143,0.0000028164, +0.0000028172,0.0000028167,0.0000028161,0.0000028162,0.0000028158, +0.0000028137,0.0000028083,0.0000027991,0.0000027870,0.0000027767, +0.0000027736,0.0000027781,0.0000027884,0.0000028001,0.0000028093, +0.0000028138,0.0000028110,0.0000028040,0.0000027927,0.0000027787, +0.0000027640,0.0000027572,0.0000027614,0.0000027698,0.0000027732, +0.0000027678,0.0000027627,0.0000027632,0.0000027643,0.0000027631, +0.0000027602,0.0000027604,0.0000027667,0.0000027756,0.0000027830, +0.0000027868,0.0000027894,0.0000027923,0.0000027915,0.0000027843, +0.0000027778,0.0000027787,0.0000027935,0.0000028159,0.0000028191, +0.0000028061,0.0000027946,0.0000027927,0.0000027956,0.0000028039, +0.0000028138,0.0000028187,0.0000028178,0.0000028114,0.0000027958, +0.0000027774,0.0000027654,0.0000027619,0.0000027639,0.0000027711, +0.0000027792,0.0000027797,0.0000027749,0.0000027703,0.0000027655, +0.0000027577,0.0000027514,0.0000027518,0.0000027580,0.0000027661, +0.0000027752,0.0000027832,0.0000027872,0.0000027880,0.0000027879, +0.0000027897,0.0000027926,0.0000027987,0.0000028055,0.0000028111, +0.0000028141,0.0000028138,0.0000028103,0.0000028053,0.0000027996, +0.0000027935,0.0000027888,0.0000027859,0.0000027839,0.0000027834, +0.0000027823,0.0000027782,0.0000027705,0.0000027659,0.0000027684, +0.0000027771,0.0000027856,0.0000027899,0.0000027916,0.0000027944, +0.0000028000,0.0000028044,0.0000028026,0.0000028000,0.0000028066, +0.0000028214,0.0000028296,0.0000028270,0.0000028184,0.0000028110, +0.0000028080,0.0000028068,0.0000028079,0.0000028095,0.0000028109, +0.0000028183,0.0000028267,0.0000028358,0.0000028533,0.0000028658, +0.0000028675,0.0000028666,0.0000028645,0.0000028709,0.0000028753, +0.0000028793,0.0000028736,0.0000028577,0.0000028468,0.0000028426, +0.0000028427,0.0000028471,0.0000028500,0.0000028523,0.0000028484, +0.0000028427,0.0000028365,0.0000028333,0.0000028314,0.0000028277, +0.0000028264,0.0000028262,0.0000028313,0.0000028396,0.0000028455, +0.0000028472,0.0000028493,0.0000028427,0.0000028313,0.0000028344, +0.0000028460,0.0000028500,0.0000028504,0.0000028538,0.0000028572, +0.0000028582,0.0000028661,0.0000028795,0.0000028840,0.0000028952, +0.0000029053,0.0000028999,0.0000028907,0.0000028825,0.0000028722, +0.0000028655,0.0000028618,0.0000028579,0.0000028560,0.0000028565, +0.0000028588,0.0000028627,0.0000028653,0.0000028628,0.0000028568, +0.0000028479,0.0000028434,0.0000028410,0.0000028409,0.0000028379, +0.0000028304,0.0000028200,0.0000028067,0.0000027934,0.0000027845, +0.0000027826,0.0000027828,0.0000027799,0.0000027769,0.0000027724, +0.0000027672,0.0000027606,0.0000027518,0.0000027434,0.0000027334, +0.0000027241,0.0000027151,0.0000027069,0.0000027018,0.0000026948, +0.0000026875,0.0000026840,0.0000026801,0.0000026741,0.0000026703, +0.0000026683,0.0000026658,0.0000026647,0.0000026634,0.0000026613, +0.0000026586,0.0000026568,0.0000026570,0.0000026572,0.0000026563, +0.0000026571,0.0000026583,0.0000026605,0.0000026657,0.0000026723, +0.0000026764,0.0000026779,0.0000026771,0.0000026762,0.0000026777, +0.0000026826,0.0000026900,0.0000026984,0.0000027070,0.0000027145, +0.0000027219,0.0000027319,0.0000027459,0.0000027635,0.0000027813, +0.0000027923,0.0000027962,0.0000027994,0.0000028006,0.0000028018, +0.0000028041,0.0000028067,0.0000028104,0.0000028170,0.0000028234, +0.0000028236,0.0000028218,0.0000028244,0.0000028267,0.0000028237, +0.0000028165,0.0000028107,0.0000028095,0.0000028106,0.0000028117, +0.0000028148,0.0000028162,0.0000028148,0.0000028136,0.0000028131, +0.0000028113,0.0000028106,0.0000028049,0.0000027950,0.0000027872, +0.0000027782,0.0000027728,0.0000027838,0.0000027957,0.0000028048, +0.0000028340,0.0000028458,0.0000028407,0.0000028379,0.0000028444, +0.0000028555,0.0000028615,0.0000028660,0.0000028627,0.0000028531, +0.0000028420,0.0000028258,0.0000028064,0.0000028038,0.0000028102, +0.0000028126,0.0000028143,0.0000028168,0.0000028173,0.0000028075, +0.0000027884,0.0000027748,0.0000027727,0.0000027722,0.0000027691, +0.0000027640,0.0000027587,0.0000027528,0.0000027469,0.0000027409, +0.0000027353,0.0000027321,0.0000027334,0.0000027393,0.0000027454, +0.0000027487,0.0000027512,0.0000027550,0.0000027594,0.0000027630, +0.0000027653,0.0000027670,0.0000027660,0.0000027639,0.0000027619, +0.0000027619,0.0000027622,0.0000027645,0.0000027697,0.0000027751, +0.0000027784,0.0000027791,0.0000027768,0.0000027713,0.0000027653, +0.0000027604,0.0000027578,0.0000027573,0.0000027567,0.0000027575, +0.0000027606,0.0000027638,0.0000027647,0.0000027630,0.0000027576, +0.0000027510,0.0000027489,0.0000027540,0.0000027641,0.0000027740, +0.0000027829,0.0000027930,0.0000028075,0.0000028245,0.0000028329, +0.0000028320,0.0000028274,0.0000028215,0.0000028182,0.0000028176, +0.0000028191,0.0000028199,0.0000028239,0.0000028308,0.0000028370, +0.0000028426,0.0000028478,0.0000028487,0.0000028487,0.0000028476, +0.0000028437,0.0000028358,0.0000028284,0.0000028204,0.0000028121, +0.0000028062,0.0000028043,0.0000028065,0.0000028070,0.0000028082, +0.0000028090,0.0000028090,0.0000028078,0.0000028042,0.0000028000, +0.0000027971,0.0000027964,0.0000027960,0.0000027940,0.0000027921, +0.0000027923,0.0000027931,0.0000027931,0.0000027933,0.0000027960, +0.0000028001,0.0000028037,0.0000028077,0.0000028127,0.0000028169, +0.0000028214,0.0000028260,0.0000028301,0.0000028335,0.0000028357, +0.0000028361,0.0000028345,0.0000028308,0.0000028272,0.0000028251, +0.0000028237,0.0000028219,0.0000028206,0.0000028213,0.0000028252, +0.0000028312,0.0000028377,0.0000028443,0.0000028489,0.0000028496, +0.0000028471,0.0000028428,0.0000028393,0.0000028364,0.0000028304, +0.0000028193,0.0000028058,0.0000027954,0.0000027920,0.0000027946, +0.0000028030,0.0000028148,0.0000028279,0.0000028375,0.0000028419, +0.0000028429,0.0000028422,0.0000028400,0.0000028370,0.0000028356, +0.0000028388,0.0000028474,0.0000028551,0.0000028560,0.0000028516, +0.0000028321,0.0000028051,0.0000027973,0.0000028022,0.0000028128, +0.0000028315,0.0000028508,0.0000028564,0.0000028503,0.0000028336, +0.0000028181,0.0000028138,0.0000028175,0.0000028253,0.0000028313, +0.0000028336,0.0000028331,0.0000028299,0.0000028255,0.0000028207, +0.0000028164,0.0000028124,0.0000028080,0.0000028040,0.0000028024, +0.0000028038,0.0000028082,0.0000028135,0.0000028183,0.0000028219, +0.0000028251,0.0000028299,0.0000028369,0.0000028481,0.0000028629, +0.0000028761,0.0000028847,0.0000028879,0.0000028869,0.0000028845, +0.0000028848,0.0000028879,0.0000028917,0.0000028962,0.0000029037, +0.0000029132,0.0000029177,0.0000029145,0.0000029029,0.0000028922, +0.0000028894,0.0000028922,0.0000029016,0.0000029129,0.0000029210, +0.0000029216,0.0000029130,0.0000028950,0.0000028752,0.0000028622, +0.0000028599,0.0000028643,0.0000028723,0.0000028769,0.0000028758, +0.0000028704,0.0000028633,0.0000028571,0.0000028526,0.0000028464, +0.0000028401,0.0000028345,0.0000028306,0.0000028298,0.0000028305, +0.0000028317,0.0000028327,0.0000028344,0.0000028364,0.0000028368, +0.0000028356,0.0000028363,0.0000028397,0.0000028480,0.0000028609, +0.0000028723,0.0000028765,0.0000028752,0.0000028715,0.0000028675, +0.0000028636,0.0000028595,0.0000028562,0.0000028554,0.0000028567, +0.0000028596,0.0000028619,0.0000028615,0.0000028590,0.0000028540, +0.0000028411,0.0000028211,0.0000028103,0.0000028212,0.0000028404, +0.0000028453,0.0000028414,0.0000028402,0.0000028472,0.0000028512, +0.0000028469,0.0000028427,0.0000028451,0.0000028528,0.0000028548, +0.0000028473,0.0000028388,0.0000028353,0.0000028327,0.0000028292, +0.0000028236,0.0000028159,0.0000028092,0.0000028095,0.0000028180, +0.0000028258,0.0000028284,0.0000028260,0.0000028226,0.0000028189, +0.0000028162,0.0000028147,0.0000028126,0.0000028095,0.0000028055, +0.0000027992,0.0000027908,0.0000027836,0.0000027790,0.0000027782, +0.0000027810,0.0000027837,0.0000027865,0.0000027921,0.0000027998, +0.0000028072,0.0000028118,0.0000028138,0.0000028151,0.0000028142, +0.0000028139,0.0000028136,0.0000028112,0.0000028108,0.0000028161, +0.0000028216,0.0000028228,0.0000028187,0.0000028069,0.0000027924, +0.0000027846,0.0000027845,0.0000027891,0.0000027970,0.0000028024, +0.0000028029,0.0000027997,0.0000027953,0.0000027930,0.0000027935, +0.0000027963,0.0000027997,0.0000028028,0.0000028056,0.0000028065, +0.0000028058,0.0000028046,0.0000028053,0.0000028091,0.0000028129, +0.0000028145,0.0000028138,0.0000028129,0.0000028115,0.0000028046, +0.0000027941,0.0000027918,0.0000028115,0.0000028419,0.0000028540, +0.0000028531,0.0000028551,0.0000028691,0.0000028862,0.0000028961, +0.0000029011,0.0000029042,0.0000029066,0.0000029097,0.0000029112, +0.0000029128,0.0000029149,0.0000029150,0.0000029149,0.0000029100, +0.0000028992,0.0000028852,0.0000028728,0.0000028628,0.0000028588, +0.0000028583,0.0000028602,0.0000028643,0.0000028679,0.0000028705, +0.0000028699,0.0000028615,0.0000028549,0.0000028573,0.0000028594, +0.0000028526,0.0000028425,0.0000028386,0.0000028379,0.0000028407, +0.0000028481,0.0000028573,0.0000028613,0.0000028590,0.0000028481, +0.0000028346,0.0000028223,0.0000028128,0.0000028099,0.0000028106, +0.0000028119,0.0000028142,0.0000028181,0.0000028219,0.0000028237, +0.0000028235,0.0000028224,0.0000028215,0.0000028199,0.0000028164, +0.0000028102,0.0000028014,0.0000027890,0.0000027743,0.0000027618, +0.0000027573,0.0000027620,0.0000027738,0.0000027871,0.0000027976, +0.0000028031,0.0000028028,0.0000027988,0.0000027916,0.0000027817, +0.0000027677,0.0000027573,0.0000027582,0.0000027686,0.0000027762, +0.0000027729,0.0000027663,0.0000027641,0.0000027641,0.0000027629, +0.0000027616,0.0000027626,0.0000027678,0.0000027756,0.0000027826, +0.0000027863,0.0000027884,0.0000027920,0.0000027956,0.0000027919, +0.0000027792,0.0000027675,0.0000027719,0.0000027966,0.0000028159, +0.0000028110,0.0000027951,0.0000027904,0.0000027927,0.0000027994, +0.0000028090,0.0000028162,0.0000028175,0.0000028151,0.0000028040, +0.0000027866,0.0000027712,0.0000027634,0.0000027630,0.0000027673, +0.0000027738,0.0000027769,0.0000027760,0.0000027736,0.0000027699, +0.0000027638,0.0000027590,0.0000027591,0.0000027627,0.0000027677, +0.0000027740,0.0000027805,0.0000027852,0.0000027872,0.0000027879, +0.0000027898,0.0000027927,0.0000028001,0.0000028078,0.0000028133, +0.0000028160,0.0000028157,0.0000028125,0.0000028062,0.0000027978, +0.0000027882,0.0000027799,0.0000027743,0.0000027723,0.0000027742, +0.0000027769,0.0000027759,0.0000027708,0.0000027684,0.0000027723, +0.0000027830,0.0000027911,0.0000027920,0.0000027916,0.0000027956, +0.0000028034,0.0000028084,0.0000028060,0.0000028047,0.0000028160, +0.0000028322,0.0000028366,0.0000028312,0.0000028222,0.0000028170, +0.0000028153,0.0000028129,0.0000028120,0.0000028112,0.0000028121, +0.0000028218,0.0000028299,0.0000028422,0.0000028581,0.0000028622, +0.0000028633,0.0000028670,0.0000028729,0.0000028782,0.0000028755, +0.0000028689,0.0000028574,0.0000028484,0.0000028429,0.0000028385, +0.0000028368,0.0000028429,0.0000028517,0.0000028591,0.0000028553, +0.0000028485,0.0000028420,0.0000028403,0.0000028395,0.0000028373, +0.0000028370,0.0000028353,0.0000028349,0.0000028384,0.0000028437, +0.0000028453,0.0000028459,0.0000028442,0.0000028342,0.0000028322, +0.0000028432,0.0000028524,0.0000028558,0.0000028581,0.0000028594, +0.0000028590,0.0000028625,0.0000028752,0.0000028826,0.0000028918, +0.0000029024,0.0000028983,0.0000028891,0.0000028781,0.0000028652, +0.0000028588,0.0000028533,0.0000028464,0.0000028425,0.0000028440, +0.0000028479,0.0000028534,0.0000028581,0.0000028574,0.0000028515, +0.0000028433,0.0000028369,0.0000028340,0.0000028328,0.0000028299, +0.0000028256,0.0000028194,0.0000028093,0.0000027952,0.0000027820, +0.0000027772,0.0000027767,0.0000027732,0.0000027678,0.0000027621, +0.0000027586,0.0000027558,0.0000027488,0.0000027385,0.0000027266, +0.0000027151,0.0000027083,0.0000027026,0.0000026991,0.0000026971, +0.0000026913,0.0000026870,0.0000026851,0.0000026795,0.0000026739, +0.0000026717,0.0000026695,0.0000026685,0.0000026672,0.0000026650, +0.0000026618,0.0000026588,0.0000026562,0.0000026549,0.0000026538, +0.0000026542,0.0000026551,0.0000026558,0.0000026573,0.0000026627, +0.0000026686,0.0000026718,0.0000026725,0.0000026718,0.0000026715, +0.0000026735,0.0000026790,0.0000026865,0.0000026950,0.0000027038, +0.0000027111,0.0000027178,0.0000027263,0.0000027379,0.0000027542, +0.0000027728,0.0000027875,0.0000027956,0.0000028000,0.0000028010, +0.0000028018,0.0000028045,0.0000028075,0.0000028090,0.0000028129, +0.0000028218,0.0000028259,0.0000028228,0.0000028205,0.0000028227, +0.0000028244,0.0000028207,0.0000028130,0.0000028085,0.0000028084, +0.0000028089,0.0000028111,0.0000028114,0.0000028106,0.0000028125, +0.0000028147,0.0000028160,0.0000028181,0.0000028148,0.0000028044, +0.0000027917,0.0000027785,0.0000027728,0.0000027855,0.0000027968, +0.0000028127,0.0000028411,0.0000028450,0.0000028404,0.0000028418, +0.0000028492,0.0000028573,0.0000028624,0.0000028671,0.0000028614, +0.0000028505,0.0000028376,0.0000028198,0.0000028028,0.0000028046, +0.0000028092,0.0000028104,0.0000028118,0.0000028152,0.0000028146, +0.0000027972,0.0000027783,0.0000027712,0.0000027707,0.0000027685, +0.0000027652,0.0000027622,0.0000027581,0.0000027521,0.0000027460, +0.0000027407,0.0000027354,0.0000027321,0.0000027346,0.0000027404, +0.0000027475,0.0000027509,0.0000027532,0.0000027564,0.0000027597, +0.0000027622,0.0000027627,0.0000027628,0.0000027610,0.0000027595, +0.0000027578,0.0000027589,0.0000027609,0.0000027638,0.0000027696, +0.0000027749,0.0000027787,0.0000027797,0.0000027776,0.0000027715, +0.0000027661,0.0000027632,0.0000027635,0.0000027647,0.0000027651, +0.0000027662,0.0000027675,0.0000027700,0.0000027706,0.0000027706, +0.0000027665,0.0000027589,0.0000027548,0.0000027584,0.0000027673, +0.0000027758,0.0000027831,0.0000027942,0.0000028085,0.0000028228, +0.0000028286,0.0000028271,0.0000028241,0.0000028178,0.0000028129, +0.0000028090,0.0000028057,0.0000028074,0.0000028151,0.0000028249, +0.0000028337,0.0000028409,0.0000028471,0.0000028489,0.0000028490, +0.0000028485,0.0000028441,0.0000028384,0.0000028317,0.0000028240, +0.0000028185,0.0000028108,0.0000028055,0.0000028057,0.0000028053, +0.0000028056,0.0000028055,0.0000028045,0.0000028030,0.0000028008, +0.0000027975,0.0000027952,0.0000027939,0.0000027937,0.0000027922, +0.0000027894,0.0000027876,0.0000027879,0.0000027888,0.0000027897, +0.0000027919,0.0000027969,0.0000028021,0.0000028080,0.0000028163, +0.0000028258,0.0000028330,0.0000028366,0.0000028380,0.0000028401, +0.0000028427,0.0000028443,0.0000028442,0.0000028433,0.0000028426, +0.0000028423,0.0000028414,0.0000028399,0.0000028394,0.0000028407, +0.0000028438,0.0000028479,0.0000028528,0.0000028586,0.0000028640, +0.0000028666,0.0000028653,0.0000028602,0.0000028534,0.0000028481, +0.0000028436,0.0000028365,0.0000028258,0.0000028143,0.0000028071, +0.0000028065,0.0000028121,0.0000028218,0.0000028328,0.0000028398, +0.0000028420,0.0000028426,0.0000028430,0.0000028429,0.0000028411, +0.0000028381,0.0000028373,0.0000028413,0.0000028487,0.0000028532, +0.0000028534,0.0000028487,0.0000028255,0.0000028011,0.0000027979, +0.0000028042,0.0000028139,0.0000028327,0.0000028511,0.0000028555, +0.0000028484,0.0000028320,0.0000028166,0.0000028110,0.0000028139, +0.0000028221,0.0000028289,0.0000028310,0.0000028298,0.0000028242, +0.0000028170,0.0000028101,0.0000028056,0.0000028043,0.0000028040, +0.0000028035,0.0000028035,0.0000028044,0.0000028067,0.0000028102, +0.0000028143,0.0000028183,0.0000028229,0.0000028286,0.0000028351, +0.0000028443,0.0000028572,0.0000028713,0.0000028838,0.0000028911, +0.0000028924,0.0000028900,0.0000028884,0.0000028894,0.0000028916, +0.0000028933,0.0000028967,0.0000029042,0.0000029115,0.0000029126, +0.0000029048,0.0000028918,0.0000028820,0.0000028797,0.0000028831, +0.0000028946,0.0000029086,0.0000029168,0.0000029148,0.0000029020, +0.0000028842,0.0000028680,0.0000028574,0.0000028534,0.0000028553, +0.0000028588,0.0000028594,0.0000028582,0.0000028573,0.0000028572, +0.0000028567,0.0000028549,0.0000028507,0.0000028456,0.0000028401, +0.0000028370,0.0000028371,0.0000028384,0.0000028390,0.0000028394, +0.0000028404,0.0000028406,0.0000028397,0.0000028407,0.0000028447, +0.0000028510,0.0000028611,0.0000028727,0.0000028808,0.0000028829, +0.0000028815,0.0000028783,0.0000028750,0.0000028713,0.0000028665, +0.0000028634,0.0000028632,0.0000028645,0.0000028656,0.0000028649, +0.0000028612,0.0000028561,0.0000028471,0.0000028303,0.0000028143, +0.0000028141,0.0000028334,0.0000028485,0.0000028489,0.0000028445, +0.0000028467,0.0000028553,0.0000028551,0.0000028461,0.0000028426, +0.0000028460,0.0000028517,0.0000028524,0.0000028472,0.0000028416, +0.0000028379,0.0000028351,0.0000028307,0.0000028226,0.0000028131, +0.0000028071,0.0000028081,0.0000028168,0.0000028253,0.0000028303, +0.0000028329,0.0000028336,0.0000028325,0.0000028309,0.0000028296, +0.0000028265,0.0000028215,0.0000028151,0.0000028080,0.0000028026, +0.0000027973,0.0000027918,0.0000027885,0.0000027868,0.0000027850, +0.0000027854,0.0000027880,0.0000027931,0.0000028000,0.0000028052, +0.0000028081,0.0000028090,0.0000028091,0.0000028110,0.0000028131, +0.0000028125,0.0000028134,0.0000028197,0.0000028247,0.0000028244, +0.0000028194,0.0000028104,0.0000027980,0.0000027902,0.0000027884, +0.0000027894,0.0000027935,0.0000027974,0.0000027994,0.0000027980, +0.0000027951,0.0000027928,0.0000027927,0.0000027954,0.0000027989, +0.0000028016,0.0000028035,0.0000028032,0.0000028022,0.0000028019, +0.0000028039,0.0000028084,0.0000028126,0.0000028153,0.0000028154, +0.0000028137,0.0000028125,0.0000028083,0.0000027978,0.0000027914, +0.0000028055,0.0000028391,0.0000028551,0.0000028541,0.0000028550, +0.0000028684,0.0000028848,0.0000028966,0.0000029073,0.0000029156, +0.0000029192,0.0000029217,0.0000029219,0.0000029219,0.0000029228, +0.0000029212,0.0000029189,0.0000029121,0.0000029015,0.0000028882, +0.0000028752,0.0000028650,0.0000028616,0.0000028631,0.0000028680, +0.0000028742,0.0000028778,0.0000028769,0.0000028711,0.0000028621, +0.0000028591,0.0000028611,0.0000028575,0.0000028474,0.0000028365, +0.0000028314,0.0000028371,0.0000028522,0.0000028608,0.0000028581, +0.0000028466,0.0000028334,0.0000028228,0.0000028174,0.0000028150, +0.0000028131,0.0000028162,0.0000028204,0.0000028245,0.0000028282, +0.0000028319,0.0000028353,0.0000028373,0.0000028379,0.0000028381, +0.0000028387,0.0000028381,0.0000028352,0.0000028298,0.0000028208, +0.0000028068,0.0000027884,0.0000027692,0.0000027558,0.0000027489, +0.0000027532,0.0000027647,0.0000027771,0.0000027857,0.0000027902, +0.0000027907,0.0000027884,0.0000027859,0.0000027801,0.0000027693, +0.0000027599,0.0000027596,0.0000027680,0.0000027770,0.0000027769, +0.0000027709,0.0000027664,0.0000027660,0.0000027662,0.0000027668, +0.0000027681,0.0000027715,0.0000027778,0.0000027838,0.0000027862, +0.0000027872,0.0000027905,0.0000027965,0.0000027961,0.0000027836, +0.0000027648,0.0000027614,0.0000027774,0.0000028056,0.0000028118, +0.0000027985,0.0000027909,0.0000027928,0.0000027975,0.0000028048, +0.0000028128,0.0000028170,0.0000028161,0.0000028087,0.0000027942, +0.0000027778,0.0000027663,0.0000027631,0.0000027646,0.0000027682, +0.0000027737,0.0000027779,0.0000027772,0.0000027732,0.0000027687, +0.0000027654,0.0000027657,0.0000027688,0.0000027732,0.0000027767, +0.0000027794,0.0000027813,0.0000027824,0.0000027843,0.0000027871, +0.0000027907,0.0000027980,0.0000028052,0.0000028098,0.0000028117, +0.0000028115,0.0000028094,0.0000028044,0.0000027959,0.0000027856, +0.0000027751,0.0000027686,0.0000027674,0.0000027710,0.0000027768, +0.0000027777,0.0000027753,0.0000027747,0.0000027788,0.0000027880, +0.0000027943,0.0000027939,0.0000027932,0.0000027973,0.0000028053, +0.0000028109,0.0000028094,0.0000028113,0.0000028264,0.0000028407, +0.0000028413,0.0000028327,0.0000028250,0.0000028232,0.0000028220, +0.0000028187,0.0000028159,0.0000028130,0.0000028156,0.0000028255, +0.0000028352,0.0000028484,0.0000028580,0.0000028586,0.0000028627, +0.0000028737,0.0000028797,0.0000028774,0.0000028639,0.0000028521, +0.0000028478,0.0000028437,0.0000028385,0.0000028325,0.0000028326, +0.0000028439,0.0000028581,0.0000028643,0.0000028576,0.0000028523, +0.0000028478,0.0000028469,0.0000028445,0.0000028398,0.0000028400, +0.0000028404,0.0000028389,0.0000028382,0.0000028418,0.0000028447, +0.0000028424,0.0000028419,0.0000028375,0.0000028308,0.0000028388, +0.0000028531,0.0000028606,0.0000028638,0.0000028625,0.0000028607, +0.0000028615,0.0000028704,0.0000028801,0.0000028867,0.0000028978, +0.0000028971,0.0000028888,0.0000028768,0.0000028612,0.0000028531, +0.0000028465,0.0000028373,0.0000028328,0.0000028330,0.0000028376, +0.0000028437,0.0000028497,0.0000028507,0.0000028460,0.0000028405, +0.0000028331,0.0000028277,0.0000028239,0.0000028206,0.0000028167, +0.0000028120,0.0000028054,0.0000027964,0.0000027858,0.0000027790, +0.0000027747,0.0000027681,0.0000027588,0.0000027531,0.0000027524, +0.0000027528,0.0000027497,0.0000027435,0.0000027365,0.0000027299, +0.0000027248,0.0000027235,0.0000027217,0.0000027196,0.0000027161, +0.0000027097,0.0000027069,0.0000027011,0.0000026941,0.0000026895, +0.0000026877,0.0000026861,0.0000026852,0.0000026833,0.0000026800, +0.0000026754,0.0000026700,0.0000026646,0.0000026612,0.0000026606, +0.0000026626,0.0000026650,0.0000026662,0.0000026680,0.0000026723, +0.0000026764,0.0000026785,0.0000026781,0.0000026769,0.0000026766, +0.0000026786,0.0000026840,0.0000026917,0.0000027004,0.0000027081, +0.0000027138,0.0000027184,0.0000027229,0.0000027312,0.0000027463, +0.0000027638,0.0000027803,0.0000027927,0.0000028002,0.0000028026, +0.0000028041,0.0000028064,0.0000028088,0.0000028092,0.0000028103, +0.0000028181,0.0000028271,0.0000028274,0.0000028221,0.0000028202, +0.0000028220,0.0000028222,0.0000028168,0.0000028106,0.0000028086, +0.0000028088,0.0000028112,0.0000028098,0.0000028077,0.0000028101, +0.0000028131,0.0000028160,0.0000028198,0.0000028194,0.0000028109, +0.0000027955,0.0000027774,0.0000027735,0.0000027883,0.0000027985, +0.0000028236,0.0000028450,0.0000028435,0.0000028422,0.0000028464, +0.0000028526,0.0000028579,0.0000028641,0.0000028682,0.0000028600, +0.0000028477,0.0000028336,0.0000028142,0.0000028006,0.0000028049, +0.0000028068,0.0000028080,0.0000028096,0.0000028121,0.0000028098, +0.0000027871,0.0000027718,0.0000027693,0.0000027688,0.0000027670, +0.0000027655,0.0000027643,0.0000027600,0.0000027531,0.0000027474, +0.0000027435,0.0000027400,0.0000027376,0.0000027413,0.0000027472, +0.0000027539,0.0000027567,0.0000027584,0.0000027607,0.0000027624, +0.0000027626,0.0000027607,0.0000027590,0.0000027576,0.0000027570, +0.0000027562,0.0000027583,0.0000027618,0.0000027668,0.0000027743, +0.0000027800,0.0000027836,0.0000027840,0.0000027817,0.0000027761, +0.0000027716,0.0000027697,0.0000027707,0.0000027718,0.0000027714, +0.0000027716,0.0000027718,0.0000027718,0.0000027715,0.0000027736, +0.0000027728,0.0000027685,0.0000027668,0.0000027696,0.0000027765, +0.0000027827,0.0000027889,0.0000027980,0.0000028088,0.0000028183, +0.0000028228,0.0000028225,0.0000028206,0.0000028145,0.0000028076, +0.0000028013,0.0000027954,0.0000027978,0.0000028074,0.0000028173, +0.0000028264,0.0000028342,0.0000028409,0.0000028448,0.0000028461, +0.0000028448,0.0000028423,0.0000028372,0.0000028298,0.0000028239, +0.0000028208,0.0000028164,0.0000028121,0.0000028096,0.0000028081, +0.0000028077,0.0000028072,0.0000028058,0.0000028034,0.0000027999, +0.0000027955,0.0000027923,0.0000027915,0.0000027895,0.0000027872, +0.0000027857,0.0000027853,0.0000027865,0.0000027886,0.0000027902, +0.0000027933,0.0000028000,0.0000028081,0.0000028171,0.0000028284, +0.0000028391,0.0000028451,0.0000028460,0.0000028454,0.0000028466, +0.0000028491,0.0000028520,0.0000028544,0.0000028560,0.0000028565, +0.0000028561,0.0000028526,0.0000028491,0.0000028468,0.0000028470, +0.0000028490,0.0000028512,0.0000028536,0.0000028576,0.0000028630, +0.0000028675,0.0000028687,0.0000028669,0.0000028610,0.0000028538, +0.0000028482,0.0000028432,0.0000028366,0.0000028292,0.0000028223, +0.0000028195,0.0000028207,0.0000028264,0.0000028342,0.0000028409, +0.0000028434,0.0000028439,0.0000028442,0.0000028451,0.0000028453, +0.0000028431,0.0000028398,0.0000028391,0.0000028428,0.0000028479, +0.0000028508,0.0000028517,0.0000028455,0.0000028191,0.0000027989, +0.0000027994,0.0000028052,0.0000028145,0.0000028331,0.0000028503, +0.0000028540,0.0000028466,0.0000028324,0.0000028173,0.0000028088, +0.0000028103,0.0000028179,0.0000028251,0.0000028276,0.0000028262, +0.0000028205,0.0000028133,0.0000028069,0.0000028042,0.0000028049, +0.0000028087,0.0000028120,0.0000028136,0.0000028143,0.0000028150, +0.0000028167,0.0000028194,0.0000028232,0.0000028281,0.0000028334, +0.0000028391,0.0000028462,0.0000028562,0.0000028691,0.0000028826, +0.0000028924,0.0000028953,0.0000028935,0.0000028916,0.0000028924, +0.0000028942,0.0000028943,0.0000028948,0.0000028998,0.0000029072, +0.0000029099,0.0000029061,0.0000028952,0.0000028829,0.0000028742, +0.0000028724,0.0000028792,0.0000028927,0.0000029049,0.0000029079, +0.0000029001,0.0000028851,0.0000028698,0.0000028582,0.0000028510, +0.0000028482,0.0000028475,0.0000028456,0.0000028432,0.0000028434, +0.0000028459,0.0000028493,0.0000028518,0.0000028530,0.0000028528, +0.0000028495,0.0000028461,0.0000028455,0.0000028466,0.0000028471, +0.0000028470,0.0000028470,0.0000028464,0.0000028448,0.0000028446, +0.0000028485,0.0000028538,0.0000028606,0.0000028700,0.0000028794, +0.0000028856,0.0000028872,0.0000028853,0.0000028815,0.0000028781, +0.0000028728,0.0000028681,0.0000028669,0.0000028679,0.0000028686, +0.0000028679,0.0000028638,0.0000028572,0.0000028484,0.0000028349, +0.0000028198,0.0000028142,0.0000028253,0.0000028468,0.0000028543, +0.0000028511,0.0000028489,0.0000028560,0.0000028620,0.0000028558, +0.0000028461,0.0000028446,0.0000028468,0.0000028495,0.0000028503, +0.0000028477,0.0000028443,0.0000028418,0.0000028386,0.0000028321, +0.0000028219,0.0000028115,0.0000028060,0.0000028090,0.0000028181, +0.0000028273,0.0000028349,0.0000028406,0.0000028450,0.0000028460, +0.0000028451,0.0000028437,0.0000028409,0.0000028365,0.0000028297, +0.0000028229,0.0000028185,0.0000028129,0.0000028073,0.0000028027, +0.0000027979,0.0000027922,0.0000027894,0.0000027894,0.0000027926, +0.0000027982,0.0000028034,0.0000028063,0.0000028066,0.0000028073, +0.0000028101,0.0000028127,0.0000028121,0.0000028129,0.0000028201, +0.0000028266,0.0000028266,0.0000028199,0.0000028097,0.0000027988, +0.0000027925,0.0000027917,0.0000027922,0.0000027941,0.0000027953, +0.0000027956,0.0000027938,0.0000027918,0.0000027902,0.0000027903, +0.0000027928,0.0000027965,0.0000027991,0.0000028003,0.0000027998, +0.0000027996,0.0000028010,0.0000028042,0.0000028087,0.0000028130, +0.0000028165,0.0000028169,0.0000028144,0.0000028127,0.0000028111, +0.0000028018,0.0000027909,0.0000028002,0.0000028360,0.0000028557, +0.0000028547,0.0000028560,0.0000028700,0.0000028852,0.0000028988, +0.0000029138,0.0000029239,0.0000029264,0.0000029260,0.0000029237, +0.0000029228,0.0000029219,0.0000029190,0.0000029152,0.0000029087, +0.0000028990,0.0000028872,0.0000028758,0.0000028676,0.0000028667, +0.0000028724,0.0000028797,0.0000028852,0.0000028859,0.0000028801, +0.0000028696,0.0000028629,0.0000028628,0.0000028612,0.0000028520, +0.0000028395,0.0000028312,0.0000028344,0.0000028513,0.0000028590, +0.0000028521,0.0000028352,0.0000028219,0.0000028184,0.0000028211, +0.0000028245,0.0000028277,0.0000028304,0.0000028329,0.0000028345, +0.0000028362,0.0000028381,0.0000028401,0.0000028413,0.0000028418, +0.0000028424,0.0000028432,0.0000028448,0.0000028467,0.0000028476, +0.0000028464,0.0000028426,0.0000028344,0.0000028198,0.0000027999, +0.0000027785,0.0000027605,0.0000027510,0.0000027544,0.0000027617, +0.0000027692,0.0000027750,0.0000027778,0.0000027783,0.0000027781, +0.0000027778,0.0000027751,0.0000027684,0.0000027630,0.0000027626, +0.0000027687,0.0000027782,0.0000027828,0.0000027771,0.0000027710, +0.0000027703,0.0000027717,0.0000027737,0.0000027753,0.0000027773, +0.0000027818,0.0000027871,0.0000027891,0.0000027886,0.0000027895, +0.0000027943,0.0000027960,0.0000027876,0.0000027674,0.0000027549, +0.0000027632,0.0000027919,0.0000028093,0.0000028017,0.0000027925, +0.0000027930,0.0000027978,0.0000028022,0.0000028080,0.0000028133, +0.0000028139,0.0000028094,0.0000027982,0.0000027828,0.0000027697, +0.0000027638,0.0000027631,0.0000027654,0.0000027718,0.0000027781, +0.0000027793,0.0000027772,0.0000027740,0.0000027715,0.0000027714, +0.0000027731,0.0000027774,0.0000027811,0.0000027822,0.0000027820, +0.0000027819,0.0000027836,0.0000027868,0.0000027908,0.0000027975, +0.0000028038,0.0000028079,0.0000028095,0.0000028098,0.0000028088, +0.0000028060,0.0000027992,0.0000027886,0.0000027778,0.0000027713, +0.0000027700,0.0000027737,0.0000027802,0.0000027829,0.0000027823, +0.0000027823,0.0000027856,0.0000027928,0.0000027972,0.0000027964, +0.0000027959,0.0000027989,0.0000028065,0.0000028129,0.0000028141, +0.0000028205,0.0000028359,0.0000028459,0.0000028426,0.0000028333, +0.0000028281,0.0000028292,0.0000028281,0.0000028255,0.0000028202, +0.0000028163,0.0000028207,0.0000028286,0.0000028418,0.0000028523, +0.0000028566,0.0000028581,0.0000028676,0.0000028803,0.0000028785, +0.0000028657,0.0000028453,0.0000028417,0.0000028433,0.0000028408, +0.0000028352,0.0000028281,0.0000028321,0.0000028486,0.0000028625, +0.0000028659,0.0000028624,0.0000028639,0.0000028615,0.0000028611, +0.0000028574,0.0000028488,0.0000028432,0.0000028414,0.0000028397, +0.0000028379,0.0000028398,0.0000028430,0.0000028398,0.0000028377, +0.0000028392,0.0000028328,0.0000028350,0.0000028498,0.0000028632, +0.0000028686,0.0000028668,0.0000028632,0.0000028629,0.0000028670, +0.0000028758,0.0000028808,0.0000028900,0.0000028954,0.0000028900, +0.0000028790,0.0000028632,0.0000028500,0.0000028419,0.0000028315, +0.0000028263,0.0000028260,0.0000028279,0.0000028323,0.0000028375, +0.0000028405,0.0000028382,0.0000028340,0.0000028280,0.0000028221, +0.0000028159,0.0000028087,0.0000028021,0.0000027972,0.0000027955, +0.0000027940,0.0000027887,0.0000027813,0.0000027743,0.0000027649, +0.0000027548,0.0000027479,0.0000027460,0.0000027468,0.0000027477, +0.0000027483,0.0000027491,0.0000027471,0.0000027422,0.0000027368, +0.0000027343,0.0000027324,0.0000027316,0.0000027298,0.0000027283, +0.0000027269,0.0000027208,0.0000027153,0.0000027125,0.0000027108, +0.0000027097,0.0000027078,0.0000027051,0.0000027011,0.0000026952, +0.0000026876,0.0000026795,0.0000026728,0.0000026698,0.0000026696, +0.0000026700,0.0000026704,0.0000026729,0.0000026773,0.0000026806, +0.0000026821,0.0000026813,0.0000026811,0.0000026817,0.0000026851, +0.0000026929,0.0000027028,0.0000027114,0.0000027168,0.0000027191, +0.0000027195,0.0000027204,0.0000027262,0.0000027387,0.0000027547, +0.0000027714,0.0000027872,0.0000027988,0.0000028037,0.0000028062, +0.0000028079,0.0000028094,0.0000028088,0.0000028081,0.0000028134, +0.0000028249,0.0000028307,0.0000028277,0.0000028212,0.0000028186, +0.0000028201,0.0000028196,0.0000028153,0.0000028106,0.0000028080, +0.0000028095,0.0000028096,0.0000028099,0.0000028125,0.0000028138, +0.0000028157,0.0000028193,0.0000028201,0.0000028134,0.0000027969, +0.0000027747,0.0000027754,0.0000027919,0.0000028032,0.0000028346, +0.0000028451,0.0000028431,0.0000028458,0.0000028507,0.0000028544, +0.0000028583,0.0000028664,0.0000028690,0.0000028588,0.0000028452, +0.0000028305,0.0000028095,0.0000027992,0.0000028035,0.0000028046, +0.0000028058,0.0000028071,0.0000028076,0.0000028035,0.0000027787, +0.0000027680,0.0000027679,0.0000027672,0.0000027677,0.0000027695, +0.0000027689,0.0000027630,0.0000027551,0.0000027498,0.0000027469, +0.0000027447,0.0000027430,0.0000027467,0.0000027521,0.0000027572, +0.0000027593,0.0000027618,0.0000027643,0.0000027650,0.0000027636, +0.0000027602,0.0000027581,0.0000027580,0.0000027577,0.0000027566, +0.0000027578,0.0000027610,0.0000027668,0.0000027752,0.0000027819, +0.0000027859,0.0000027879,0.0000027877,0.0000027838,0.0000027804, +0.0000027778,0.0000027769,0.0000027773,0.0000027759,0.0000027755, +0.0000027750,0.0000027735,0.0000027729,0.0000027737,0.0000027738, +0.0000027721,0.0000027744,0.0000027785,0.0000027847,0.0000027905, +0.0000027958,0.0000028019,0.0000028095,0.0000028148,0.0000028181, +0.0000028178,0.0000028141,0.0000028089,0.0000028021,0.0000027952, +0.0000027906,0.0000027924,0.0000028004,0.0000028089,0.0000028159, +0.0000028239,0.0000028316,0.0000028382,0.0000028396,0.0000028382, +0.0000028375,0.0000028331,0.0000028262,0.0000028200,0.0000028154, +0.0000028136,0.0000028133,0.0000028140,0.0000028140,0.0000028133, +0.0000028118,0.0000028092,0.0000028056,0.0000028002,0.0000027943, +0.0000027899,0.0000027878,0.0000027866,0.0000027850,0.0000027851, +0.0000027882,0.0000027916,0.0000027951,0.0000027977,0.0000028027, +0.0000028120,0.0000028226,0.0000028335,0.0000028439,0.0000028516, +0.0000028541,0.0000028540,0.0000028547,0.0000028569,0.0000028597, +0.0000028621,0.0000028645,0.0000028644,0.0000028633,0.0000028590, +0.0000028532,0.0000028468,0.0000028420,0.0000028409,0.0000028420, +0.0000028427,0.0000028423,0.0000028433,0.0000028474,0.0000028524, +0.0000028561,0.0000028576,0.0000028566,0.0000028522,0.0000028467, +0.0000028428,0.0000028392,0.0000028342,0.0000028291,0.0000028260, +0.0000028251,0.0000028274,0.0000028334,0.0000028403,0.0000028450, +0.0000028471,0.0000028482,0.0000028493,0.0000028503,0.0000028495, +0.0000028459,0.0000028414,0.0000028401,0.0000028426,0.0000028458, +0.0000028495,0.0000028520,0.0000028417,0.0000028135,0.0000027995, +0.0000028020,0.0000028062,0.0000028148,0.0000028329,0.0000028487, +0.0000028517,0.0000028450,0.0000028334,0.0000028190,0.0000028082, +0.0000028066,0.0000028122,0.0000028189,0.0000028225,0.0000028222, +0.0000028186,0.0000028138,0.0000028103,0.0000028101,0.0000028143, +0.0000028207,0.0000028252,0.0000028263,0.0000028255,0.0000028256, +0.0000028272,0.0000028301,0.0000028339,0.0000028383,0.0000028427, +0.0000028473,0.0000028529,0.0000028609,0.0000028721,0.0000028847, +0.0000028942,0.0000028966,0.0000028946,0.0000028931,0.0000028943, +0.0000028970,0.0000028978,0.0000028977,0.0000029009,0.0000029068, +0.0000029095,0.0000029073,0.0000028986,0.0000028867,0.0000028761, +0.0000028705,0.0000028723,0.0000028816,0.0000028927,0.0000028969, +0.0000028928,0.0000028800,0.0000028648,0.0000028534,0.0000028474, +0.0000028450,0.0000028429,0.0000028399,0.0000028381,0.0000028383, +0.0000028388,0.0000028411,0.0000028448,0.0000028487,0.0000028519, +0.0000028517,0.0000028502,0.0000028505,0.0000028525,0.0000028543, +0.0000028555,0.0000028563,0.0000028557,0.0000028542,0.0000028537, +0.0000028571,0.0000028620,0.0000028668,0.0000028728,0.0000028798, +0.0000028867,0.0000028909,0.0000028901,0.0000028859,0.0000028817, +0.0000028761,0.0000028710,0.0000028695,0.0000028707,0.0000028716, +0.0000028708,0.0000028668,0.0000028589,0.0000028480,0.0000028351, +0.0000028227,0.0000028166,0.0000028209,0.0000028404,0.0000028566, +0.0000028572,0.0000028530,0.0000028564,0.0000028656,0.0000028660, +0.0000028559,0.0000028486,0.0000028477,0.0000028475,0.0000028482, +0.0000028490,0.0000028479,0.0000028464,0.0000028446,0.0000028403, +0.0000028322,0.0000028205,0.0000028095,0.0000028047,0.0000028085, +0.0000028181,0.0000028281,0.0000028373,0.0000028461,0.0000028544, +0.0000028586,0.0000028594,0.0000028572,0.0000028532,0.0000028491, +0.0000028448,0.0000028412,0.0000028372,0.0000028310,0.0000028249, +0.0000028192,0.0000028127,0.0000028054,0.0000027995,0.0000027952, +0.0000027947,0.0000027989,0.0000028042,0.0000028073,0.0000028084, +0.0000028092,0.0000028118,0.0000028142,0.0000028130,0.0000028125, +0.0000028176,0.0000028256,0.0000028273,0.0000028211,0.0000028087, +0.0000027971,0.0000027909,0.0000027908,0.0000027927,0.0000027953, +0.0000027964,0.0000027963,0.0000027937,0.0000027906,0.0000027886, +0.0000027882,0.0000027902,0.0000027940,0.0000027973,0.0000027983, +0.0000027977,0.0000027975,0.0000027994,0.0000028035,0.0000028084, +0.0000028137,0.0000028178,0.0000028180,0.0000028149,0.0000028127, +0.0000028126,0.0000028053,0.0000027913,0.0000027960,0.0000028327, +0.0000028558,0.0000028547,0.0000028576,0.0000028721,0.0000028879, +0.0000029039,0.0000029189,0.0000029269,0.0000029273,0.0000029244, +0.0000029205,0.0000029173,0.0000029146,0.0000029113,0.0000029073, +0.0000029037,0.0000028966,0.0000028872,0.0000028782,0.0000028738, +0.0000028764,0.0000028848,0.0000028913,0.0000028930,0.0000028888, +0.0000028792,0.0000028691,0.0000028651,0.0000028634,0.0000028565, +0.0000028431,0.0000028331,0.0000028360,0.0000028513,0.0000028562, +0.0000028447,0.0000028259,0.0000028172,0.0000028200,0.0000028302, +0.0000028397,0.0000028441,0.0000028448,0.0000028449,0.0000028450, +0.0000028449,0.0000028460,0.0000028473,0.0000028482,0.0000028476, +0.0000028466,0.0000028456,0.0000028450,0.0000028452,0.0000028455, +0.0000028458,0.0000028458,0.0000028452,0.0000028418,0.0000028363, +0.0000028265,0.0000028125,0.0000027949,0.0000027769,0.0000027652, +0.0000027612,0.0000027629,0.0000027643,0.0000027658,0.0000027666, +0.0000027678,0.0000027698,0.0000027711,0.0000027698,0.0000027659, +0.0000027647,0.0000027673,0.0000027728,0.0000027813,0.0000027879, +0.0000027843,0.0000027775,0.0000027760,0.0000027774,0.0000027796, +0.0000027818,0.0000027842,0.0000027884,0.0000027933,0.0000027951, +0.0000027939,0.0000027923,0.0000027935,0.0000027945,0.0000027900, +0.0000027721,0.0000027553,0.0000027557,0.0000027782,0.0000028021, +0.0000028041,0.0000027958,0.0000027948,0.0000027987,0.0000028008, +0.0000028031,0.0000028072,0.0000028095,0.0000028065,0.0000027981, +0.0000027843,0.0000027704,0.0000027627,0.0000027622,0.0000027666, +0.0000027720,0.0000027765,0.0000027798,0.0000027816,0.0000027807, +0.0000027789,0.0000027778,0.0000027774,0.0000027790,0.0000027816, +0.0000027833,0.0000027849,0.0000027856,0.0000027876,0.0000027907, +0.0000027943,0.0000028008,0.0000028074,0.0000028122,0.0000028148, +0.0000028164,0.0000028180,0.0000028173,0.0000028114,0.0000028010, +0.0000027891,0.0000027809,0.0000027784,0.0000027807,0.0000027854, +0.0000027880,0.0000027884,0.0000027887,0.0000027920,0.0000027977, +0.0000027998,0.0000027983,0.0000027976,0.0000028013,0.0000028096, +0.0000028173,0.0000028216,0.0000028307,0.0000028434,0.0000028486, +0.0000028428,0.0000028340,0.0000028325,0.0000028350,0.0000028357, +0.0000028336,0.0000028262,0.0000028226,0.0000028267,0.0000028334, +0.0000028482,0.0000028551,0.0000028585,0.0000028632,0.0000028756, +0.0000028793,0.0000028690,0.0000028446,0.0000028331,0.0000028371, +0.0000028418,0.0000028403,0.0000028337,0.0000028268,0.0000028354, +0.0000028531,0.0000028645,0.0000028707,0.0000028720,0.0000028735, +0.0000028672,0.0000028667,0.0000028644,0.0000028588,0.0000028539, +0.0000028470,0.0000028401,0.0000028371,0.0000028384,0.0000028403, +0.0000028383,0.0000028343,0.0000028383,0.0000028373,0.0000028347, +0.0000028432,0.0000028613,0.0000028712,0.0000028707,0.0000028669, +0.0000028657,0.0000028670,0.0000028707,0.0000028753,0.0000028798, +0.0000028887,0.0000028890,0.0000028813,0.0000028689,0.0000028515, +0.0000028385,0.0000028276,0.0000028210,0.0000028194,0.0000028197, +0.0000028204,0.0000028222,0.0000028250,0.0000028255,0.0000028223, +0.0000028170,0.0000028112,0.0000028044,0.0000027941,0.0000027833, +0.0000027779,0.0000027785,0.0000027821,0.0000027821,0.0000027774, +0.0000027686,0.0000027606,0.0000027511,0.0000027422,0.0000027370, +0.0000027374,0.0000027422,0.0000027479,0.0000027522,0.0000027522, +0.0000027471,0.0000027400,0.0000027360,0.0000027363,0.0000027395, +0.0000027425,0.0000027438,0.0000027460,0.0000027434,0.0000027370, +0.0000027325,0.0000027295,0.0000027261,0.0000027237,0.0000027206, +0.0000027165,0.0000027117,0.0000027055,0.0000026974,0.0000026882, +0.0000026805,0.0000026763,0.0000026742,0.0000026735,0.0000026738, +0.0000026761,0.0000026791,0.0000026805,0.0000026805,0.0000026799, +0.0000026797,0.0000026813,0.0000026868,0.0000026969,0.0000027084, +0.0000027172,0.0000027225,0.0000027233,0.0000027216,0.0000027210, +0.0000027235,0.0000027324,0.0000027461,0.0000027619,0.0000027791, +0.0000027946,0.0000028034,0.0000028067,0.0000028076,0.0000028076, +0.0000028067,0.0000028054,0.0000028085,0.0000028199,0.0000028301, +0.0000028318,0.0000028253,0.0000028175,0.0000028163,0.0000028199, +0.0000028205,0.0000028149,0.0000028078,0.0000028053,0.0000028048, +0.0000028091,0.0000028153,0.0000028175,0.0000028179,0.0000028191, +0.0000028200,0.0000028136,0.0000027952,0.0000027724,0.0000027804, +0.0000027952,0.0000028132,0.0000028416,0.0000028432,0.0000028454, +0.0000028501,0.0000028534,0.0000028551,0.0000028593,0.0000028689, +0.0000028700,0.0000028579,0.0000028433,0.0000028280,0.0000028056, +0.0000027980,0.0000028012,0.0000028029,0.0000028037,0.0000028037, +0.0000028026,0.0000027970,0.0000027726,0.0000027660,0.0000027666, +0.0000027665,0.0000027704,0.0000027744,0.0000027728,0.0000027645, +0.0000027564,0.0000027512,0.0000027481,0.0000027461,0.0000027444, +0.0000027473,0.0000027518,0.0000027558,0.0000027582,0.0000027616, +0.0000027647,0.0000027652,0.0000027635,0.0000027605,0.0000027604, +0.0000027622,0.0000027629,0.0000027615,0.0000027605,0.0000027613, +0.0000027641,0.0000027694,0.0000027751,0.0000027802,0.0000027860, +0.0000027883,0.0000027876,0.0000027863,0.0000027836,0.0000027804, +0.0000027793,0.0000027778,0.0000027769,0.0000027761,0.0000027747, +0.0000027755,0.0000027755,0.0000027760,0.0000027756,0.0000027793, +0.0000027841,0.0000027900,0.0000027960,0.0000028012,0.0000028063, +0.0000028110,0.0000028149,0.0000028164,0.0000028144,0.0000028077, +0.0000028010,0.0000027934,0.0000027879,0.0000027877,0.0000027902, +0.0000027955,0.0000028016,0.0000028075,0.0000028135,0.0000028206, +0.0000028295,0.0000028329,0.0000028327,0.0000028304,0.0000028280, +0.0000028231,0.0000028168,0.0000028100,0.0000028059,0.0000028058, +0.0000028094,0.0000028143,0.0000028165,0.0000028153,0.0000028112, +0.0000028055,0.0000027993,0.0000027932,0.0000027886,0.0000027865, +0.0000027867,0.0000027891,0.0000027927,0.0000027989,0.0000028040, +0.0000028076,0.0000028115,0.0000028184,0.0000028278,0.0000028381, +0.0000028480,0.0000028551,0.0000028590,0.0000028606,0.0000028635, +0.0000028670,0.0000028702,0.0000028725,0.0000028727,0.0000028693, +0.0000028662,0.0000028603,0.0000028521,0.0000028434,0.0000028357, +0.0000028304,0.0000028290,0.0000028305,0.0000028312,0.0000028293, +0.0000028276,0.0000028291,0.0000028332,0.0000028375,0.0000028403, +0.0000028407,0.0000028385,0.0000028338,0.0000028297,0.0000028278, +0.0000028272,0.0000028269,0.0000028269,0.0000028275,0.0000028295, +0.0000028345,0.0000028414,0.0000028478,0.0000028517,0.0000028537, +0.0000028554,0.0000028571,0.0000028575,0.0000028543,0.0000028478, +0.0000028418,0.0000028399,0.0000028417,0.0000028448,0.0000028503, +0.0000028522,0.0000028365,0.0000028096,0.0000028012,0.0000028043, +0.0000028070,0.0000028150,0.0000028323,0.0000028469,0.0000028493, +0.0000028437,0.0000028342,0.0000028207,0.0000028081,0.0000028040, +0.0000028059,0.0000028107,0.0000028148,0.0000028171,0.0000028177, +0.0000028170,0.0000028165,0.0000028180,0.0000028233,0.0000028298, +0.0000028338,0.0000028339,0.0000028331,0.0000028331,0.0000028350, +0.0000028385,0.0000028430,0.0000028475,0.0000028516,0.0000028558, +0.0000028609,0.0000028687,0.0000028794,0.0000028903,0.0000028971, +0.0000028976,0.0000028946,0.0000028932,0.0000028955,0.0000028997, +0.0000029020,0.0000029030,0.0000029059,0.0000029107,0.0000029125, +0.0000029106,0.0000029031,0.0000028916,0.0000028801,0.0000028735, +0.0000028729,0.0000028780,0.0000028856,0.0000028887,0.0000028857, +0.0000028742,0.0000028589,0.0000028469,0.0000028421,0.0000028420, +0.0000028418,0.0000028402,0.0000028397,0.0000028407,0.0000028409, +0.0000028411,0.0000028432,0.0000028469,0.0000028512,0.0000028522, +0.0000028516,0.0000028529,0.0000028568,0.0000028609,0.0000028641, +0.0000028666,0.0000028670,0.0000028659,0.0000028655,0.0000028683, +0.0000028732,0.0000028776,0.0000028811,0.0000028839,0.0000028876, +0.0000028915,0.0000028922,0.0000028903,0.0000028855,0.0000028786, +0.0000028737,0.0000028728,0.0000028750,0.0000028761,0.0000028746, +0.0000028696,0.0000028607,0.0000028473,0.0000028330,0.0000028227, +0.0000028178,0.0000028197,0.0000028336,0.0000028535,0.0000028598, +0.0000028573,0.0000028575,0.0000028661,0.0000028717,0.0000028675, +0.0000028579,0.0000028530,0.0000028510,0.0000028488,0.0000028482, +0.0000028484,0.0000028483,0.0000028477,0.0000028455,0.0000028402, +0.0000028305,0.0000028171,0.0000028050,0.0000027999,0.0000028032, +0.0000028118,0.0000028219,0.0000028329,0.0000028450,0.0000028564, +0.0000028642,0.0000028689,0.0000028675,0.0000028629,0.0000028591, +0.0000028578,0.0000028568,0.0000028539,0.0000028483,0.0000028416, +0.0000028346,0.0000028279,0.0000028216,0.0000028147,0.0000028061, +0.0000027999,0.0000028001,0.0000028044,0.0000028088,0.0000028118, +0.0000028125,0.0000028148,0.0000028175,0.0000028166,0.0000028143, +0.0000028157,0.0000028207,0.0000028240,0.0000028204,0.0000028097, +0.0000027973,0.0000027888,0.0000027860,0.0000027886,0.0000027937, +0.0000027971,0.0000027990,0.0000027987,0.0000027958,0.0000027929, +0.0000027907,0.0000027916,0.0000027941,0.0000027970,0.0000027979, +0.0000027963,0.0000027951,0.0000027968,0.0000028019,0.0000028084, +0.0000028148,0.0000028188,0.0000028186,0.0000028150,0.0000028128, +0.0000028132,0.0000028079,0.0000027925,0.0000027941,0.0000028306, +0.0000028552,0.0000028549,0.0000028592,0.0000028741,0.0000028927, +0.0000029104,0.0000029213,0.0000029253,0.0000029245,0.0000029191, +0.0000029131,0.0000029088,0.0000029052,0.0000029036,0.0000029026, +0.0000029017,0.0000028976,0.0000028909,0.0000028849,0.0000028842, +0.0000028888,0.0000028957,0.0000028982,0.0000028949,0.0000028875, +0.0000028769,0.0000028708,0.0000028661,0.0000028600,0.0000028475, +0.0000028357,0.0000028375,0.0000028540,0.0000028568,0.0000028385, +0.0000028188,0.0000028155,0.0000028261,0.0000028422,0.0000028531, +0.0000028564,0.0000028548,0.0000028524,0.0000028515,0.0000028508, +0.0000028502,0.0000028509,0.0000028519,0.0000028522,0.0000028513, +0.0000028510,0.0000028511,0.0000028518,0.0000028515,0.0000028500, +0.0000028477,0.0000028456,0.0000028433,0.0000028399,0.0000028353, +0.0000028304,0.0000028242,0.0000028163,0.0000028057,0.0000027941, +0.0000027834,0.0000027743,0.0000027682,0.0000027640,0.0000027612, +0.0000027600,0.0000027621,0.0000027648,0.0000027659,0.0000027654, +0.0000027645,0.0000027661,0.0000027719,0.0000027774,0.0000027842, +0.0000027909,0.0000027905,0.0000027845,0.0000027813,0.0000027817, +0.0000027833,0.0000027869,0.0000027922,0.0000027978,0.0000028016, +0.0000028027,0.0000028017,0.0000027991,0.0000027964,0.0000027947, +0.0000027913,0.0000027772,0.0000027588,0.0000027545,0.0000027668, +0.0000027913,0.0000028028,0.0000028004,0.0000027975,0.0000027994, +0.0000028002,0.0000027999,0.0000028009,0.0000028024,0.0000028012, +0.0000027942,0.0000027818,0.0000027677,0.0000027594,0.0000027616, +0.0000027696,0.0000027750,0.0000027772,0.0000027800,0.0000027843, +0.0000027871,0.0000027877,0.0000027872,0.0000027853,0.0000027821, +0.0000027807,0.0000027812,0.0000027840,0.0000027865,0.0000027901, +0.0000027934,0.0000027965,0.0000028032,0.0000028111,0.0000028181, +0.0000028235,0.0000028271,0.0000028295,0.0000028292,0.0000028236, +0.0000028133,0.0000028012,0.0000027917,0.0000027874,0.0000027875, +0.0000027896,0.0000027911,0.0000027922,0.0000027934,0.0000027968, +0.0000028009,0.0000028017,0.0000028003,0.0000028007,0.0000028060, +0.0000028154,0.0000028234,0.0000028301,0.0000028402,0.0000028494, +0.0000028511,0.0000028431,0.0000028354,0.0000028367,0.0000028406, +0.0000028439,0.0000028416,0.0000028331,0.0000028303,0.0000028326, +0.0000028406,0.0000028545,0.0000028596,0.0000028644,0.0000028729, +0.0000028797,0.0000028739,0.0000028517,0.0000028288,0.0000028283, +0.0000028363,0.0000028420,0.0000028414,0.0000028334,0.0000028284, +0.0000028406,0.0000028570,0.0000028671,0.0000028754,0.0000028747, +0.0000028727,0.0000028654,0.0000028669,0.0000028654,0.0000028606, +0.0000028589,0.0000028561,0.0000028471,0.0000028385,0.0000028363, +0.0000028360,0.0000028362,0.0000028328,0.0000028360,0.0000028407, +0.0000028387,0.0000028398,0.0000028525,0.0000028687,0.0000028721, +0.0000028701,0.0000028681,0.0000028684,0.0000028680,0.0000028676, +0.0000028703,0.0000028743,0.0000028805,0.0000028794,0.0000028717, +0.0000028562,0.0000028373,0.0000028226,0.0000028138,0.0000028104, +0.0000028087,0.0000028073,0.0000028064,0.0000028071,0.0000028073, +0.0000028043,0.0000027996,0.0000027941,0.0000027883,0.0000027782, +0.0000027658,0.0000027586,0.0000027581,0.0000027619,0.0000027656, +0.0000027643,0.0000027574,0.0000027524,0.0000027459,0.0000027378, +0.0000027320,0.0000027326,0.0000027380,0.0000027447,0.0000027486, +0.0000027474,0.0000027419,0.0000027364,0.0000027351,0.0000027366, +0.0000027397,0.0000027431,0.0000027450,0.0000027484,0.0000027501, +0.0000027476,0.0000027441,0.0000027410,0.0000027379,0.0000027343, +0.0000027315,0.0000027270,0.0000027214,0.0000027148,0.0000027065, +0.0000026968,0.0000026863,0.0000026790,0.0000026749,0.0000026723, +0.0000026712,0.0000026721,0.0000026750,0.0000026784,0.0000026799, +0.0000026788,0.0000026777,0.0000026778,0.0000026806,0.0000026875, +0.0000026980,0.0000027092,0.0000027185,0.0000027244,0.0000027263, +0.0000027251,0.0000027245,0.0000027252,0.0000027297,0.0000027390, +0.0000027520,0.0000027686,0.0000027864,0.0000027995,0.0000028048, +0.0000028051,0.0000028042,0.0000028031,0.0000028019,0.0000028035, +0.0000028143,0.0000028275,0.0000028320,0.0000028275,0.0000028179, +0.0000028134,0.0000028173,0.0000028228,0.0000028205,0.0000028121, +0.0000028038,0.0000027980,0.0000028024,0.0000028134,0.0000028202, +0.0000028212,0.0000028195,0.0000028195,0.0000028123,0.0000027904, +0.0000027713,0.0000027862,0.0000027983,0.0000028260,0.0000028427, +0.0000028418,0.0000028497,0.0000028534,0.0000028543,0.0000028554, +0.0000028607,0.0000028709,0.0000028712,0.0000028573,0.0000028420, +0.0000028257,0.0000028026,0.0000027973,0.0000027993,0.0000028017, +0.0000028017,0.0000028004,0.0000027986,0.0000027912,0.0000027690, +0.0000027647,0.0000027653,0.0000027669,0.0000027726,0.0000027769, +0.0000027740,0.0000027648,0.0000027566,0.0000027514,0.0000027478, +0.0000027451,0.0000027434,0.0000027451,0.0000027489,0.0000027518, +0.0000027550,0.0000027593,0.0000027622,0.0000027616,0.0000027597, +0.0000027595,0.0000027618,0.0000027666,0.0000027698,0.0000027697, +0.0000027677,0.0000027657,0.0000027638,0.0000027634,0.0000027653, +0.0000027690,0.0000027756,0.0000027809,0.0000027848,0.0000027858, +0.0000027846,0.0000027815,0.0000027801,0.0000027788,0.0000027768, +0.0000027749,0.0000027728,0.0000027744,0.0000027750,0.0000027776, +0.0000027797,0.0000027840,0.0000027885,0.0000027931,0.0000027980, +0.0000028024,0.0000028065,0.0000028104,0.0000028142,0.0000028140, +0.0000028106,0.0000028028,0.0000027950,0.0000027854,0.0000027790, +0.0000027809,0.0000027862,0.0000027924,0.0000027972,0.0000028014, +0.0000028058,0.0000028111,0.0000028187,0.0000028241,0.0000028249, +0.0000028231,0.0000028226,0.0000028192,0.0000028141,0.0000028077, +0.0000028014,0.0000027980,0.0000027997,0.0000028065,0.0000028119, +0.0000028135,0.0000028109,0.0000028050,0.0000027986,0.0000027940, +0.0000027906,0.0000027888,0.0000027910,0.0000027973,0.0000028058, +0.0000028136,0.0000028199,0.0000028229,0.0000028263,0.0000028327, +0.0000028402,0.0000028473,0.0000028547,0.0000028596,0.0000028629, +0.0000028676,0.0000028737,0.0000028787,0.0000028799,0.0000028787, +0.0000028761,0.0000028707,0.0000028622,0.0000028514,0.0000028408, +0.0000028321,0.0000028261,0.0000028228,0.0000028237,0.0000028263, +0.0000028287,0.0000028278,0.0000028252,0.0000028243,0.0000028259, +0.0000028282,0.0000028297,0.0000028298,0.0000028277,0.0000028229, +0.0000028170,0.0000028122,0.0000028103,0.0000028113,0.0000028152, +0.0000028205,0.0000028262,0.0000028328,0.0000028406,0.0000028481, +0.0000028538,0.0000028576,0.0000028596,0.0000028617,0.0000028633, +0.0000028621,0.0000028559,0.0000028476,0.0000028414,0.0000028400, +0.0000028416,0.0000028459,0.0000028537,0.0000028531,0.0000028306, +0.0000028062,0.0000028026,0.0000028060,0.0000028076,0.0000028149, +0.0000028314,0.0000028453,0.0000028479,0.0000028434,0.0000028354, +0.0000028221,0.0000028073,0.0000027999,0.0000027995,0.0000028026, +0.0000028080,0.0000028133,0.0000028172,0.0000028189,0.0000028194, +0.0000028211,0.0000028254,0.0000028307,0.0000028344,0.0000028359, +0.0000028362,0.0000028370,0.0000028388,0.0000028421,0.0000028470, +0.0000028519,0.0000028565,0.0000028620,0.0000028688,0.0000028771, +0.0000028867,0.0000028953,0.0000028995,0.0000028983,0.0000028944, +0.0000028930,0.0000028961,0.0000029015,0.0000029056,0.0000029085, +0.0000029122,0.0000029166,0.0000029182,0.0000029153,0.0000029081, +0.0000028971,0.0000028854,0.0000028775,0.0000028756,0.0000028793, +0.0000028847,0.0000028867,0.0000028835,0.0000028732,0.0000028580, +0.0000028450,0.0000028397,0.0000028404,0.0000028420,0.0000028430, +0.0000028446,0.0000028470,0.0000028476,0.0000028473,0.0000028483, +0.0000028513,0.0000028554,0.0000028570,0.0000028567,0.0000028578, +0.0000028622,0.0000028675,0.0000028718,0.0000028751,0.0000028759, +0.0000028744,0.0000028734,0.0000028749,0.0000028797,0.0000028842, +0.0000028872,0.0000028879,0.0000028884,0.0000028907,0.0000028925, +0.0000028920,0.0000028885,0.0000028824,0.0000028774,0.0000028773, +0.0000028805,0.0000028819,0.0000028788,0.0000028719,0.0000028609, +0.0000028459,0.0000028308,0.0000028217,0.0000028188,0.0000028195, +0.0000028297,0.0000028484,0.0000028598,0.0000028600,0.0000028590, +0.0000028653,0.0000028740,0.0000028748,0.0000028696,0.0000028619, +0.0000028576,0.0000028544,0.0000028503,0.0000028482,0.0000028489, +0.0000028495,0.0000028483,0.0000028450,0.0000028388,0.0000028274, +0.0000028132,0.0000028008,0.0000027946,0.0000027962,0.0000028033, +0.0000028135,0.0000028256,0.0000028396,0.0000028528,0.0000028631, +0.0000028696,0.0000028699,0.0000028674,0.0000028653,0.0000028653, +0.0000028651,0.0000028649,0.0000028620,0.0000028554,0.0000028473, +0.0000028399,0.0000028352,0.0000028303,0.0000028204,0.0000028085, +0.0000028025,0.0000028047,0.0000028096,0.0000028131,0.0000028136, +0.0000028162,0.0000028201,0.0000028210,0.0000028190,0.0000028163, +0.0000028150,0.0000028161,0.0000028158,0.0000028112,0.0000028015, +0.0000027897,0.0000027830,0.0000027837,0.0000027893,0.0000027951, +0.0000027994,0.0000028025,0.0000028034,0.0000028026,0.0000028010, +0.0000028008,0.0000028014,0.0000028015,0.0000028000,0.0000027971, +0.0000027947,0.0000027963,0.0000028020,0.0000028099,0.0000028168, +0.0000028200,0.0000028191,0.0000028150,0.0000028126,0.0000028134, +0.0000028091,0.0000027932,0.0000027945,0.0000028306,0.0000028546, +0.0000028558,0.0000028609,0.0000028772,0.0000028989,0.0000029154, +0.0000029205,0.0000029200,0.0000029177,0.0000029120,0.0000029051, +0.0000029002,0.0000028981,0.0000028996,0.0000029020,0.0000029026, +0.0000029016,0.0000028980,0.0000028947,0.0000028959,0.0000028994, +0.0000029015,0.0000028991,0.0000028932,0.0000028840,0.0000028759, +0.0000028719,0.0000028646,0.0000028516,0.0000028379,0.0000028381, +0.0000028554,0.0000028609,0.0000028397,0.0000028132,0.0000028117, +0.0000028310,0.0000028528,0.0000028631,0.0000028628,0.0000028589, +0.0000028544,0.0000028507,0.0000028489,0.0000028476,0.0000028469, +0.0000028472,0.0000028473,0.0000028468,0.0000028450,0.0000028439, +0.0000028453,0.0000028471,0.0000028488,0.0000028494,0.0000028492, +0.0000028486,0.0000028471,0.0000028434,0.0000028378,0.0000028317, +0.0000028260,0.0000028199,0.0000028136,0.0000028086,0.0000028045, +0.0000027982,0.0000027894,0.0000027796,0.0000027696,0.0000027622, +0.0000027600,0.0000027620,0.0000027632,0.0000027629,0.0000027631, +0.0000027642,0.0000027671,0.0000027742,0.0000027817,0.0000027875, +0.0000027926,0.0000027950,0.0000027914,0.0000027867,0.0000027848, +0.0000027858,0.0000027920,0.0000028013,0.0000028081,0.0000028103, +0.0000028104,0.0000028097,0.0000028071,0.0000028023,0.0000027965, +0.0000027917,0.0000027820,0.0000027653,0.0000027551,0.0000027580, +0.0000027783,0.0000027993,0.0000028049,0.0000028028,0.0000028006, +0.0000027995,0.0000027986,0.0000027979,0.0000027967,0.0000027936, +0.0000027870,0.0000027764,0.0000027636,0.0000027563,0.0000027604, +0.0000027712,0.0000027789,0.0000027809,0.0000027819,0.0000027858, +0.0000027915,0.0000027962,0.0000027985,0.0000027973,0.0000027918, +0.0000027851,0.0000027813,0.0000027815,0.0000027838,0.0000027879, +0.0000027914,0.0000027951,0.0000028022,0.0000028108,0.0000028194, +0.0000028262,0.0000028304,0.0000028312,0.0000028301,0.0000028249, +0.0000028168,0.0000028072,0.0000027985,0.0000027926,0.0000027907, +0.0000027905,0.0000027915,0.0000027930,0.0000027948,0.0000027988, +0.0000028032,0.0000028044,0.0000028042,0.0000028055,0.0000028123, +0.0000028221,0.0000028294,0.0000028370,0.0000028469,0.0000028541, +0.0000028537,0.0000028428,0.0000028372,0.0000028398,0.0000028468, +0.0000028521,0.0000028482,0.0000028394,0.0000028375,0.0000028379, +0.0000028492,0.0000028606,0.0000028661,0.0000028723,0.0000028815, +0.0000028784,0.0000028650,0.0000028345,0.0000028223,0.0000028267, +0.0000028367,0.0000028423,0.0000028424,0.0000028339,0.0000028321, +0.0000028462,0.0000028609,0.0000028689,0.0000028750,0.0000028711, +0.0000028682,0.0000028648,0.0000028694,0.0000028683,0.0000028623, +0.0000028583,0.0000028565,0.0000028534,0.0000028464,0.0000028376, +0.0000028322,0.0000028315,0.0000028312,0.0000028340,0.0000028408, +0.0000028430,0.0000028411,0.0000028446,0.0000028569,0.0000028669, +0.0000028699,0.0000028683,0.0000028675,0.0000028659,0.0000028619, +0.0000028597,0.0000028598,0.0000028633,0.0000028697,0.0000028682, +0.0000028578,0.0000028407,0.0000028216,0.0000028067,0.0000027990, +0.0000027946,0.0000027905,0.0000027887,0.0000027894,0.0000027887, +0.0000027841,0.0000027782,0.0000027751,0.0000027701,0.0000027637, +0.0000027532,0.0000027429,0.0000027407,0.0000027445,0.0000027518, +0.0000027531,0.0000027507,0.0000027469,0.0000027450,0.0000027398, +0.0000027351,0.0000027352,0.0000027385,0.0000027420,0.0000027425, +0.0000027396,0.0000027342,0.0000027318,0.0000027330,0.0000027365, +0.0000027394,0.0000027418,0.0000027438,0.0000027459,0.0000027502, +0.0000027512,0.0000027502,0.0000027491,0.0000027470,0.0000027443, +0.0000027422,0.0000027397,0.0000027352,0.0000027290,0.0000027212, +0.0000027104,0.0000026978,0.0000026865,0.0000026794,0.0000026748, +0.0000026709,0.0000026686,0.0000026677,0.0000026700,0.0000026733, +0.0000026751,0.0000026753,0.0000026761,0.0000026786,0.0000026832, +0.0000026915,0.0000027018,0.0000027125,0.0000027213,0.0000027269, +0.0000027295,0.0000027307,0.0000027313,0.0000027303,0.0000027304, +0.0000027338,0.0000027426,0.0000027572,0.0000027753,0.0000027917, +0.0000028008,0.0000028021,0.0000028006,0.0000027988,0.0000027982, +0.0000027995,0.0000028100,0.0000028247,0.0000028308,0.0000028270, +0.0000028170,0.0000028106,0.0000028140,0.0000028225,0.0000028242, +0.0000028171,0.0000028051,0.0000027946,0.0000027960,0.0000028090, +0.0000028210,0.0000028234,0.0000028194,0.0000028189,0.0000028097, +0.0000027820,0.0000027736,0.0000027909,0.0000028041,0.0000028357, +0.0000028396,0.0000028429,0.0000028539,0.0000028550,0.0000028546, +0.0000028558,0.0000028622,0.0000028723,0.0000028719,0.0000028572, +0.0000028412,0.0000028234,0.0000028005,0.0000027972,0.0000027987, +0.0000028005,0.0000028001,0.0000027988,0.0000027962,0.0000027862, +0.0000027670,0.0000027636,0.0000027640,0.0000027672,0.0000027729, +0.0000027766,0.0000027738,0.0000027645,0.0000027562,0.0000027512, +0.0000027471,0.0000027441,0.0000027427,0.0000027443,0.0000027481, +0.0000027515,0.0000027552,0.0000027585,0.0000027591,0.0000027563, +0.0000027537,0.0000027552,0.0000027601,0.0000027676,0.0000027735, +0.0000027759,0.0000027751,0.0000027724,0.0000027674,0.0000027628, +0.0000027604,0.0000027602,0.0000027635,0.0000027684,0.0000027735, +0.0000027764,0.0000027786,0.0000027788,0.0000027802,0.0000027806, +0.0000027782,0.0000027753,0.0000027714,0.0000027706,0.0000027703, +0.0000027743,0.0000027786,0.0000027833,0.0000027875,0.0000027911, +0.0000027943,0.0000027972,0.0000028000,0.0000028036,0.0000028072, +0.0000028067,0.0000028044,0.0000027985,0.0000027897,0.0000027794, +0.0000027735,0.0000027751,0.0000027797,0.0000027862,0.0000027925, +0.0000027961,0.0000028003,0.0000028038,0.0000028089,0.0000028141, +0.0000028160,0.0000028154,0.0000028143,0.0000028130,0.0000028099, +0.0000028043,0.0000027990,0.0000027953,0.0000027955,0.0000028003, +0.0000028049,0.0000028069,0.0000028060,0.0000028032,0.0000027992, +0.0000027962,0.0000027951,0.0000027945,0.0000027973,0.0000028053, +0.0000028153,0.0000028232,0.0000028292,0.0000028335,0.0000028375, +0.0000028420,0.0000028466,0.0000028509,0.0000028568,0.0000028616, +0.0000028675,0.0000028749,0.0000028808,0.0000028833,0.0000028824, +0.0000028797,0.0000028744,0.0000028659,0.0000028544,0.0000028427, +0.0000028326,0.0000028254,0.0000028211,0.0000028215,0.0000028234, +0.0000028290,0.0000028340,0.0000028344,0.0000028312,0.0000028265, +0.0000028242,0.0000028233,0.0000028222,0.0000028208,0.0000028191, +0.0000028162,0.0000028119,0.0000028069,0.0000028027,0.0000028012, +0.0000028029,0.0000028083,0.0000028162,0.0000028248,0.0000028341, +0.0000028429,0.0000028498,0.0000028551,0.0000028588,0.0000028613, +0.0000028635,0.0000028642,0.0000028611,0.0000028537,0.0000028457, +0.0000028414,0.0000028406,0.0000028425,0.0000028496,0.0000028576, +0.0000028509,0.0000028233,0.0000028036,0.0000028043,0.0000028071, +0.0000028079,0.0000028148,0.0000028309,0.0000028450,0.0000028478, +0.0000028442,0.0000028362,0.0000028226,0.0000028062,0.0000027959, +0.0000027941,0.0000027976,0.0000028044,0.0000028117,0.0000028171, +0.0000028193,0.0000028192,0.0000028197,0.0000028226,0.0000028273, +0.0000028322,0.0000028358,0.0000028375,0.0000028384,0.0000028395, +0.0000028424,0.0000028471,0.0000028518,0.0000028577,0.0000028666, +0.0000028769,0.0000028861,0.0000028934,0.0000028981,0.0000028994, +0.0000028975,0.0000028941,0.0000028932,0.0000028964,0.0000029019, +0.0000029076,0.0000029129,0.0000029180,0.0000029220,0.0000029231, +0.0000029208,0.0000029144,0.0000029042,0.0000028918,0.0000028819, +0.0000028791,0.0000028817,0.0000028860,0.0000028872,0.0000028853, +0.0000028766,0.0000028626,0.0000028491,0.0000028422,0.0000028417, +0.0000028434,0.0000028459,0.0000028496,0.0000028533,0.0000028546, +0.0000028545,0.0000028554,0.0000028580,0.0000028616,0.0000028638, +0.0000028646,0.0000028657,0.0000028693,0.0000028740,0.0000028778, +0.0000028803,0.0000028802,0.0000028776,0.0000028753,0.0000028760, +0.0000028792,0.0000028839,0.0000028878,0.0000028891,0.0000028890, +0.0000028895,0.0000028905,0.0000028914,0.0000028901,0.0000028860, +0.0000028825,0.0000028825,0.0000028859,0.0000028867,0.0000028813, +0.0000028708,0.0000028573,0.0000028422,0.0000028290,0.0000028216, +0.0000028200,0.0000028203,0.0000028270,0.0000028432,0.0000028577, +0.0000028607,0.0000028603,0.0000028642,0.0000028737,0.0000028783, +0.0000028777,0.0000028726,0.0000028658,0.0000028615,0.0000028563, +0.0000028505,0.0000028490,0.0000028509,0.0000028511,0.0000028483, +0.0000028435,0.0000028358,0.0000028241,0.0000028111,0.0000027995, +0.0000027932,0.0000027930,0.0000027994,0.0000028099,0.0000028223, +0.0000028361,0.0000028490,0.0000028593,0.0000028655,0.0000028670, +0.0000028667,0.0000028662,0.0000028657,0.0000028657,0.0000028683, +0.0000028693,0.0000028658,0.0000028579,0.0000028487,0.0000028437, +0.0000028415,0.0000028338,0.0000028194,0.0000028083,0.0000028063, +0.0000028090,0.0000028112,0.0000028122,0.0000028164,0.0000028214, +0.0000028246,0.0000028236,0.0000028186,0.0000028123,0.0000028079, +0.0000028079,0.0000028093,0.0000028054,0.0000027947,0.0000027850, +0.0000027836,0.0000027872,0.0000027917,0.0000027964,0.0000028012, +0.0000028059,0.0000028095,0.0000028122,0.0000028145,0.0000028145, +0.0000028128,0.0000028090,0.0000028039,0.0000027998,0.0000028005, +0.0000028063,0.0000028139,0.0000028200,0.0000028220,0.0000028205, +0.0000028152,0.0000028123,0.0000028131,0.0000028090,0.0000027925, +0.0000027964,0.0000028320,0.0000028538,0.0000028572,0.0000028636, +0.0000028825,0.0000029048,0.0000029166,0.0000029169,0.0000029131, +0.0000029102,0.0000029052,0.0000028982,0.0000028941,0.0000028942, +0.0000028984,0.0000029024,0.0000029047,0.0000029065,0.0000029056, +0.0000029037,0.0000029046,0.0000029044,0.0000029017,0.0000028963, +0.0000028885,0.0000028805,0.0000028742,0.0000028702,0.0000028599, +0.0000028428,0.0000028383,0.0000028554,0.0000028636,0.0000028454, +0.0000028156,0.0000028108,0.0000028317,0.0000028583,0.0000028677, +0.0000028653,0.0000028588,0.0000028524,0.0000028484,0.0000028459, +0.0000028446,0.0000028450,0.0000028466,0.0000028490,0.0000028494, +0.0000028475,0.0000028441,0.0000028421,0.0000028422,0.0000028424, +0.0000028434,0.0000028437,0.0000028437,0.0000028443,0.0000028443, +0.0000028430,0.0000028400,0.0000028359,0.0000028313,0.0000028254, +0.0000028179,0.0000028111,0.0000028076,0.0000028068,0.0000028051, +0.0000027991,0.0000027885,0.0000027766,0.0000027683,0.0000027659, +0.0000027660,0.0000027641,0.0000027623,0.0000027628,0.0000027650, +0.0000027676,0.0000027746,0.0000027840,0.0000027901,0.0000027943, +0.0000027968,0.0000027960,0.0000027918,0.0000027879,0.0000027890, +0.0000027989,0.0000028118,0.0000028184,0.0000028190,0.0000028182, +0.0000028167,0.0000028135,0.0000028076,0.0000027994,0.0000027932, +0.0000027872,0.0000027734,0.0000027579,0.0000027552,0.0000027665, +0.0000027887,0.0000028041,0.0000028089,0.0000028056,0.0000028000, +0.0000027982,0.0000027979,0.0000027949,0.0000027881,0.0000027786, +0.0000027688,0.0000027593,0.0000027549,0.0000027592,0.0000027706, +0.0000027807,0.0000027852,0.0000027860,0.0000027878,0.0000027934, +0.0000028014,0.0000028079,0.0000028092,0.0000028060,0.0000027979, +0.0000027896,0.0000027845,0.0000027835,0.0000027849,0.0000027883, +0.0000027933,0.0000028008,0.0000028094,0.0000028180,0.0000028246, +0.0000028271,0.0000028268,0.0000028242,0.0000028194,0.0000028134, +0.0000028065,0.0000027999,0.0000027937,0.0000027900,0.0000027890, +0.0000027899,0.0000027918,0.0000027951,0.0000028011,0.0000028063, +0.0000028076,0.0000028068,0.0000028084,0.0000028167,0.0000028267, +0.0000028336,0.0000028413,0.0000028506,0.0000028570,0.0000028540, +0.0000028433,0.0000028398,0.0000028430,0.0000028525,0.0000028586, +0.0000028520,0.0000028443,0.0000028431,0.0000028438,0.0000028579, +0.0000028670,0.0000028732,0.0000028808,0.0000028856,0.0000028736, +0.0000028534,0.0000028253,0.0000028208,0.0000028254,0.0000028365, +0.0000028423,0.0000028425,0.0000028365,0.0000028367,0.0000028497, +0.0000028624,0.0000028680,0.0000028703,0.0000028651,0.0000028636, +0.0000028654,0.0000028711,0.0000028702,0.0000028638,0.0000028586, +0.0000028545,0.0000028510,0.0000028484,0.0000028438,0.0000028348, +0.0000028296,0.0000028288,0.0000028318,0.0000028392,0.0000028438, +0.0000028431,0.0000028408,0.0000028441,0.0000028516,0.0000028602, +0.0000028637,0.0000028636,0.0000028611,0.0000028573,0.0000028514, +0.0000028476,0.0000028480,0.0000028519,0.0000028567,0.0000028540, +0.0000028424,0.0000028276,0.0000028090,0.0000027918,0.0000027814, +0.0000027758,0.0000027732,0.0000027737,0.0000027733,0.0000027687, +0.0000027623,0.0000027602,0.0000027593,0.0000027559,0.0000027484, +0.0000027359,0.0000027317,0.0000027359,0.0000027457,0.0000027509, +0.0000027514,0.0000027485,0.0000027491,0.0000027464,0.0000027424, +0.0000027410,0.0000027395,0.0000027372,0.0000027340,0.0000027320, +0.0000027303,0.0000027313,0.0000027341,0.0000027386,0.0000027425, +0.0000027437,0.0000027432,0.0000027437,0.0000027459,0.0000027483, +0.0000027477,0.0000027463,0.0000027446,0.0000027420,0.0000027402, +0.0000027390,0.0000027375,0.0000027350,0.0000027304,0.0000027232, +0.0000027133,0.0000027006,0.0000026905,0.0000026841,0.0000026793, +0.0000026750,0.0000026709,0.0000026680,0.0000026682,0.0000026685, +0.0000026692,0.0000026708,0.0000026746,0.0000026797,0.0000026868, +0.0000026960,0.0000027060,0.0000027163,0.0000027243,0.0000027290, +0.0000027320,0.0000027357,0.0000027371,0.0000027360,0.0000027335, +0.0000027325,0.0000027361,0.0000027473,0.0000027631,0.0000027816, +0.0000027953,0.0000027991,0.0000027977,0.0000027955,0.0000027950, +0.0000027972,0.0000028085,0.0000028244,0.0000028308,0.0000028256, +0.0000028142,0.0000028080,0.0000028113,0.0000028205,0.0000028238, +0.0000028186,0.0000028059,0.0000027940,0.0000027934,0.0000028064, +0.0000028211,0.0000028239,0.0000028186,0.0000028179,0.0000028031, +0.0000027737,0.0000027781,0.0000027950,0.0000028145,0.0000028381, +0.0000028358,0.0000028471,0.0000028569,0.0000028556,0.0000028550, +0.0000028565,0.0000028638,0.0000028738,0.0000028726,0.0000028572, +0.0000028408,0.0000028212,0.0000027996,0.0000027980,0.0000027987, +0.0000027993,0.0000027990,0.0000027984,0.0000027951,0.0000027824, +0.0000027657,0.0000027628,0.0000027630,0.0000027666,0.0000027720, +0.0000027750,0.0000027724,0.0000027637,0.0000027553,0.0000027510, +0.0000027473,0.0000027448,0.0000027441,0.0000027467,0.0000027508, +0.0000027554,0.0000027589,0.0000027603,0.0000027590,0.0000027537, +0.0000027495,0.0000027501,0.0000027552,0.0000027638,0.0000027721, +0.0000027770,0.0000027779,0.0000027772,0.0000027722,0.0000027649, +0.0000027600,0.0000027561,0.0000027557,0.0000027582,0.0000027608, +0.0000027620,0.0000027648,0.0000027683,0.0000027738,0.0000027782, +0.0000027782,0.0000027761,0.0000027722,0.0000027704,0.0000027697, +0.0000027719,0.0000027761,0.0000027800,0.0000027830,0.0000027855, +0.0000027874,0.0000027891,0.0000027901,0.0000027927,0.0000027954, +0.0000027959,0.0000027944,0.0000027903,0.0000027826,0.0000027736, +0.0000027697,0.0000027713,0.0000027757,0.0000027815,0.0000027879, +0.0000027914,0.0000027938,0.0000027959,0.0000027989,0.0000028032, +0.0000028069,0.0000028081,0.0000028071,0.0000028057,0.0000028037, +0.0000028003,0.0000027980,0.0000027954,0.0000027960,0.0000027990, +0.0000028025,0.0000028036,0.0000028020,0.0000027993,0.0000027975, +0.0000027970,0.0000027980,0.0000027992,0.0000028024,0.0000028088, +0.0000028176,0.0000028262,0.0000028326,0.0000028384,0.0000028443, +0.0000028486,0.0000028516,0.0000028543,0.0000028582,0.0000028635, +0.0000028712,0.0000028798,0.0000028829,0.0000028833,0.0000028815, +0.0000028758,0.0000028676,0.0000028569,0.0000028455,0.0000028363, +0.0000028282,0.0000028209,0.0000028186,0.0000028201,0.0000028272, +0.0000028371,0.0000028439,0.0000028437,0.0000028377,0.0000028294, +0.0000028223,0.0000028169,0.0000028132,0.0000028113,0.0000028101, +0.0000028085,0.0000028062,0.0000028032,0.0000027998,0.0000027974, +0.0000027974,0.0000028009,0.0000028082,0.0000028174,0.0000028265, +0.0000028352,0.0000028424,0.0000028480,0.0000028531,0.0000028567, +0.0000028591,0.0000028605,0.0000028602,0.0000028562,0.0000028497, +0.0000028445,0.0000028427,0.0000028417,0.0000028452,0.0000028551, +0.0000028597,0.0000028460,0.0000028155,0.0000028024,0.0000028064, +0.0000028081,0.0000028080,0.0000028148,0.0000028304,0.0000028444, +0.0000028473,0.0000028437,0.0000028353,0.0000028211,0.0000028046, +0.0000027943,0.0000027925,0.0000027957,0.0000028030,0.0000028111, +0.0000028166,0.0000028179,0.0000028172,0.0000028164,0.0000028180, +0.0000028226,0.0000028291,0.0000028341,0.0000028367,0.0000028374, +0.0000028384,0.0000028412,0.0000028455,0.0000028508,0.0000028598, +0.0000028733,0.0000028865,0.0000028947,0.0000028980,0.0000028984, +0.0000028971,0.0000028953,0.0000028937,0.0000028937,0.0000028965, +0.0000029020,0.0000029088,0.0000029161,0.0000029223,0.0000029261, +0.0000029275,0.0000029267,0.0000029217,0.0000029122,0.0000028993, +0.0000028873,0.0000028820,0.0000028834,0.0000028871,0.0000028886, +0.0000028874,0.0000028805,0.0000028687,0.0000028564,0.0000028485, +0.0000028464,0.0000028469,0.0000028490,0.0000028530,0.0000028572, +0.0000028591,0.0000028596,0.0000028610,0.0000028633,0.0000028652, +0.0000028673,0.0000028693,0.0000028712,0.0000028744,0.0000028788, +0.0000028823,0.0000028835,0.0000028818,0.0000028781,0.0000028756, +0.0000028756,0.0000028777,0.0000028815,0.0000028863,0.0000028891, +0.0000028891,0.0000028877,0.0000028883,0.0000028909,0.0000028921, +0.0000028894,0.0000028872,0.0000028879,0.0000028890,0.0000028878, +0.0000028796,0.0000028653,0.0000028500,0.0000028369,0.0000028276, +0.0000028229,0.0000028216,0.0000028219,0.0000028260,0.0000028394, +0.0000028546,0.0000028602,0.0000028611,0.0000028641,0.0000028723, +0.0000028795,0.0000028811,0.0000028803,0.0000028749,0.0000028689, +0.0000028641,0.0000028565,0.0000028506,0.0000028510,0.0000028539, +0.0000028526,0.0000028477,0.0000028406,0.0000028316,0.0000028204, +0.0000028101,0.0000028004,0.0000027933,0.0000027934,0.0000028003, +0.0000028112,0.0000028234,0.0000028357,0.0000028471,0.0000028559, +0.0000028608,0.0000028629,0.0000028641,0.0000028640,0.0000028624, +0.0000028611,0.0000028638,0.0000028680,0.0000028687,0.0000028661, +0.0000028574,0.0000028506,0.0000028478,0.0000028421,0.0000028295, +0.0000028173,0.0000028110,0.0000028088,0.0000028069,0.0000028076, +0.0000028144,0.0000028218,0.0000028258,0.0000028258,0.0000028215, +0.0000028128,0.0000028038,0.0000027997,0.0000028032,0.0000028043, +0.0000027987,0.0000027917,0.0000027895,0.0000027900,0.0000027914, +0.0000027933,0.0000027968,0.0000028027,0.0000028097,0.0000028165, +0.0000028224,0.0000028248,0.0000028238,0.0000028202,0.0000028147, +0.0000028099,0.0000028099,0.0000028138,0.0000028196,0.0000028245, +0.0000028257,0.0000028230,0.0000028163,0.0000028125,0.0000028129, +0.0000028078,0.0000027904,0.0000027996,0.0000028338,0.0000028526, +0.0000028585,0.0000028680,0.0000028894,0.0000029081,0.0000029143, +0.0000029112,0.0000029066,0.0000029037,0.0000028992,0.0000028933, +0.0000028908,0.0000028924,0.0000028977,0.0000029024,0.0000029059, +0.0000029093,0.0000029097,0.0000029082,0.0000029073,0.0000029040, +0.0000028973,0.0000028907,0.0000028827,0.0000028760,0.0000028707, +0.0000028659,0.0000028539,0.0000028437,0.0000028548,0.0000028657, +0.0000028517,0.0000028231,0.0000028148,0.0000028322,0.0000028601, +0.0000028704,0.0000028663,0.0000028576,0.0000028503,0.0000028463, +0.0000028451,0.0000028451,0.0000028451,0.0000028487,0.0000028544, +0.0000028588,0.0000028591,0.0000028571,0.0000028545,0.0000028537, +0.0000028545,0.0000028543,0.0000028532,0.0000028510,0.0000028478, +0.0000028445,0.0000028408,0.0000028368,0.0000028333,0.0000028314, +0.0000028301,0.0000028277,0.0000028224,0.0000028154,0.0000028086, +0.0000028044,0.0000028037,0.0000028031,0.0000027979,0.0000027899, +0.0000027810,0.0000027758,0.0000027746,0.0000027729,0.0000027681, +0.0000027635,0.0000027636,0.0000027663,0.0000027684,0.0000027734, +0.0000027831,0.0000027914,0.0000027946,0.0000027968,0.0000027989, +0.0000027964,0.0000027923,0.0000027950,0.0000028090,0.0000028237, +0.0000028292,0.0000028290,0.0000028274,0.0000028241,0.0000028188, +0.0000028120,0.0000028032,0.0000027964,0.0000027925,0.0000027818, +0.0000027643,0.0000027554,0.0000027572,0.0000027737,0.0000027971, +0.0000028114,0.0000028133,0.0000028070,0.0000028009,0.0000027994, +0.0000027975,0.0000027891,0.0000027754,0.0000027649,0.0000027569, +0.0000027544,0.0000027588,0.0000027694,0.0000027810,0.0000027884, +0.0000027906,0.0000027912,0.0000027944,0.0000028022,0.0000028113, +0.0000028180,0.0000028184,0.0000028132,0.0000028044,0.0000027963, +0.0000027906,0.0000027885,0.0000027904,0.0000027960,0.0000028035, +0.0000028112,0.0000028181,0.0000028228,0.0000028242,0.0000028228, +0.0000028184,0.0000028131,0.0000028080,0.0000028035,0.0000027989, +0.0000027934,0.0000027895,0.0000027884,0.0000027898,0.0000027925, +0.0000027979,0.0000028052,0.0000028088,0.0000028080,0.0000028051, +0.0000028070,0.0000028178,0.0000028283,0.0000028348,0.0000028424, +0.0000028512,0.0000028574,0.0000028530,0.0000028439,0.0000028416, +0.0000028455,0.0000028566,0.0000028616,0.0000028541,0.0000028474, +0.0000028465,0.0000028500,0.0000028652,0.0000028728,0.0000028798, +0.0000028881,0.0000028860,0.0000028696,0.0000028429,0.0000028230, +0.0000028197,0.0000028234,0.0000028358,0.0000028429,0.0000028428, +0.0000028410,0.0000028413,0.0000028515,0.0000028624,0.0000028648, +0.0000028634,0.0000028592,0.0000028593,0.0000028637,0.0000028700, +0.0000028688,0.0000028625,0.0000028575,0.0000028541,0.0000028493, +0.0000028449,0.0000028423,0.0000028372,0.0000028333,0.0000028299, +0.0000028303,0.0000028358,0.0000028406,0.0000028420,0.0000028387, +0.0000028353,0.0000028363,0.0000028419,0.0000028510,0.0000028556, +0.0000028546,0.0000028511,0.0000028466,0.0000028407,0.0000028366, +0.0000028363,0.0000028387,0.0000028416,0.0000028381,0.0000028300, +0.0000028172,0.0000027969,0.0000027780,0.0000027682,0.0000027674, +0.0000027684,0.0000027671,0.0000027627,0.0000027567,0.0000027559, +0.0000027573,0.0000027570,0.0000027516,0.0000027393,0.0000027314, +0.0000027356,0.0000027459,0.0000027538,0.0000027571,0.0000027548, +0.0000027531,0.0000027499,0.0000027437,0.0000027380,0.0000027329, +0.0000027294,0.0000027290,0.0000027308,0.0000027337,0.0000027371, +0.0000027404,0.0000027434,0.0000027457,0.0000027457,0.0000027431, +0.0000027407,0.0000027391,0.0000027390,0.0000027368,0.0000027327, +0.0000027291,0.0000027256,0.0000027222,0.0000027212,0.0000027220, +0.0000027236,0.0000027243,0.0000027227,0.0000027181,0.0000027102, +0.0000027014,0.0000026950,0.0000026912,0.0000026876,0.0000026839, +0.0000026789,0.0000026742,0.0000026708,0.0000026682,0.0000026666, +0.0000026675,0.0000026717,0.0000026782,0.0000026878,0.0000026983, +0.0000027083,0.0000027170,0.0000027230,0.0000027277,0.0000027328, +0.0000027370,0.0000027393,0.0000027396,0.0000027376,0.0000027345, +0.0000027338,0.0000027393,0.0000027510,0.0000027696,0.0000027875, +0.0000027955,0.0000027950,0.0000027929,0.0000027928,0.0000027965, +0.0000028093,0.0000028262,0.0000028314,0.0000028235,0.0000028101, +0.0000028055,0.0000028096,0.0000028194,0.0000028225,0.0000028170, +0.0000028035,0.0000027937,0.0000027941,0.0000028076,0.0000028226, +0.0000028234,0.0000028178,0.0000028145,0.0000027917,0.0000027701, +0.0000027839,0.0000027990,0.0000028262,0.0000028352,0.0000028343, +0.0000028522,0.0000028586,0.0000028560,0.0000028558,0.0000028574, +0.0000028660,0.0000028754,0.0000028729,0.0000028567,0.0000028399, +0.0000028191,0.0000027992,0.0000027986,0.0000027985,0.0000027980, +0.0000027984,0.0000027986,0.0000027943,0.0000027796,0.0000027646, +0.0000027623,0.0000027625,0.0000027652,0.0000027701,0.0000027729, +0.0000027707,0.0000027622,0.0000027544,0.0000027516,0.0000027492, +0.0000027474,0.0000027468,0.0000027497,0.0000027540,0.0000027591, +0.0000027621,0.0000027615,0.0000027587,0.0000027527,0.0000027479, +0.0000027475,0.0000027511,0.0000027573,0.0000027660,0.0000027729, +0.0000027761,0.0000027768,0.0000027739,0.0000027670,0.0000027601, +0.0000027542,0.0000027517,0.0000027525,0.0000027528,0.0000027527, +0.0000027536,0.0000027560,0.0000027600,0.0000027650,0.0000027673, +0.0000027684,0.0000027682,0.0000027688,0.0000027702,0.0000027718, +0.0000027750,0.0000027784,0.0000027788,0.0000027794,0.0000027800, +0.0000027808,0.0000027813,0.0000027831,0.0000027847,0.0000027845, +0.0000027824,0.0000027785,0.0000027727,0.0000027677,0.0000027661, +0.0000027683,0.0000027721,0.0000027775,0.0000027844,0.0000027885, +0.0000027893,0.0000027888,0.0000027884,0.0000027895,0.0000027921, +0.0000027953,0.0000027974,0.0000027971,0.0000027968,0.0000027960, +0.0000027958,0.0000027956,0.0000027978,0.0000028006,0.0000028025, +0.0000028028,0.0000028004,0.0000027971,0.0000027961,0.0000027969, +0.0000027987,0.0000028002,0.0000028031,0.0000028088,0.0000028164, +0.0000028255,0.0000028342,0.0000028430,0.0000028498,0.0000028546, +0.0000028574,0.0000028587,0.0000028605,0.0000028653,0.0000028730, +0.0000028798,0.0000028826,0.0000028820,0.0000028794,0.0000028698, +0.0000028580,0.0000028469,0.0000028378,0.0000028313,0.0000028246, +0.0000028184,0.0000028172,0.0000028234,0.0000028348,0.0000028461, +0.0000028521,0.0000028492,0.0000028392,0.0000028270,0.0000028173, +0.0000028106,0.0000028062,0.0000028038,0.0000028030,0.0000028028, +0.0000028018,0.0000027996,0.0000027966,0.0000027934,0.0000027914, +0.0000027922,0.0000027982,0.0000028083,0.0000028188,0.0000028276, +0.0000028345,0.0000028396,0.0000028442,0.0000028484,0.0000028512, +0.0000028526,0.0000028536,0.0000028534,0.0000028506,0.0000028470, +0.0000028455,0.0000028442,0.0000028434,0.0000028503,0.0000028609, +0.0000028609,0.0000028375,0.0000028087,0.0000028031,0.0000028079, +0.0000028086,0.0000028086,0.0000028158,0.0000028311,0.0000028444, +0.0000028469,0.0000028426,0.0000028334,0.0000028194,0.0000028044, +0.0000027954,0.0000027935,0.0000027956,0.0000028028,0.0000028113, +0.0000028164,0.0000028170,0.0000028155,0.0000028139,0.0000028143, +0.0000028191,0.0000028252,0.0000028301,0.0000028327,0.0000028345, +0.0000028367,0.0000028400,0.0000028449,0.0000028533,0.0000028669, +0.0000028829,0.0000028948,0.0000028990,0.0000028985,0.0000028958, +0.0000028930,0.0000028924,0.0000028929,0.0000028934,0.0000028961, +0.0000029021,0.0000029102,0.0000029183,0.0000029248,0.0000029290, +0.0000029310,0.0000029309,0.0000029274,0.0000029193,0.0000029074, +0.0000028947,0.0000028872,0.0000028869,0.0000028896,0.0000028904, +0.0000028891,0.0000028828,0.0000028730,0.0000028627,0.0000028553, +0.0000028520,0.0000028515,0.0000028528,0.0000028560,0.0000028596, +0.0000028616,0.0000028628,0.0000028653,0.0000028683,0.0000028690, +0.0000028690,0.0000028703,0.0000028721,0.0000028751,0.0000028796, +0.0000028830,0.0000028836,0.0000028820,0.0000028782,0.0000028760, +0.0000028767,0.0000028785,0.0000028808,0.0000028850,0.0000028885, +0.0000028885,0.0000028870,0.0000028880,0.0000028915,0.0000028944, +0.0000028933,0.0000028912,0.0000028909,0.0000028903,0.0000028852, +0.0000028736,0.0000028572,0.0000028418,0.0000028320,0.0000028272, +0.0000028247,0.0000028235,0.0000028238,0.0000028266,0.0000028367, +0.0000028513,0.0000028598,0.0000028617,0.0000028645,0.0000028715, +0.0000028791,0.0000028826,0.0000028834,0.0000028817,0.0000028766, +0.0000028716,0.0000028650,0.0000028564,0.0000028528,0.0000028550, +0.0000028570,0.0000028538,0.0000028464,0.0000028368,0.0000028261, +0.0000028165,0.0000028092,0.0000028011,0.0000027942,0.0000027950, +0.0000028029,0.0000028147,0.0000028265,0.0000028373,0.0000028475, +0.0000028549,0.0000028587,0.0000028603,0.0000028613,0.0000028611, +0.0000028586,0.0000028551,0.0000028558,0.0000028605,0.0000028667, +0.0000028685,0.0000028659,0.0000028591,0.0000028523,0.0000028452, +0.0000028352,0.0000028258,0.0000028183,0.0000028108,0.0000028042, +0.0000028030,0.0000028103,0.0000028191,0.0000028246,0.0000028260, +0.0000028235,0.0000028154,0.0000028029,0.0000027959,0.0000027957, +0.0000027981,0.0000027977,0.0000027969,0.0000027978,0.0000027980, +0.0000027969,0.0000027957,0.0000027963,0.0000028005,0.0000028075, +0.0000028160,0.0000028230,0.0000028271,0.0000028276,0.0000028260, +0.0000028220,0.0000028183,0.0000028177,0.0000028198,0.0000028248, +0.0000028298,0.0000028306,0.0000028264,0.0000028186,0.0000028140, +0.0000028138,0.0000028059,0.0000027886,0.0000028040,0.0000028358, +0.0000028517,0.0000028601,0.0000028740,0.0000028952,0.0000029079, +0.0000029089,0.0000029047,0.0000029013,0.0000028987,0.0000028945, +0.0000028905,0.0000028893,0.0000028914,0.0000028963,0.0000029008, +0.0000029049,0.0000029082,0.0000029092,0.0000029074,0.0000029051, +0.0000028992,0.0000028910,0.0000028839,0.0000028756,0.0000028705, +0.0000028659,0.0000028606,0.0000028543,0.0000028598,0.0000028696, +0.0000028588,0.0000028326,0.0000028196,0.0000028347,0.0000028606, +0.0000028723,0.0000028667,0.0000028572,0.0000028499,0.0000028467, +0.0000028465,0.0000028476,0.0000028480,0.0000028492,0.0000028549, +0.0000028617,0.0000028648,0.0000028641,0.0000028635,0.0000028637, +0.0000028652,0.0000028665,0.0000028656,0.0000028627,0.0000028590, +0.0000028548,0.0000028499,0.0000028438,0.0000028367,0.0000028295, +0.0000028247,0.0000028226,0.0000028213,0.0000028190,0.0000028146, +0.0000028090,0.0000028032,0.0000027982,0.0000027950,0.0000027925, +0.0000027896,0.0000027854,0.0000027826,0.0000027818,0.0000027819, +0.0000027803,0.0000027746,0.0000027681,0.0000027665,0.0000027680, +0.0000027698,0.0000027721,0.0000027801,0.0000027899,0.0000027943, +0.0000027966,0.0000028001,0.0000028005,0.0000027981,0.0000028033, +0.0000028212,0.0000028367,0.0000028406,0.0000028402,0.0000028378, +0.0000028321,0.0000028243,0.0000028164,0.0000028077,0.0000028012, +0.0000027981,0.0000027900,0.0000027740,0.0000027592,0.0000027525, +0.0000027595,0.0000027806,0.0000028043,0.0000028149,0.0000028153, +0.0000028099,0.0000028056,0.0000028034,0.0000027965,0.0000027830, +0.0000027684,0.0000027570,0.0000027540,0.0000027578,0.0000027678, +0.0000027803,0.0000027900,0.0000027948,0.0000027957,0.0000027968, +0.0000028019,0.0000028116,0.0000028215,0.0000028273,0.0000028266, +0.0000028213,0.0000028141,0.0000028063,0.0000028004,0.0000028003, +0.0000028050,0.0000028109,0.0000028161,0.0000028206,0.0000028238, +0.0000028247,0.0000028223,0.0000028176,0.0000028121,0.0000028071, +0.0000028037,0.0000028009,0.0000027969,0.0000027938,0.0000027935, +0.0000027952,0.0000027974,0.0000028023,0.0000028075,0.0000028079, +0.0000028026,0.0000027971,0.0000028001,0.0000028145,0.0000028263, +0.0000028321,0.0000028399,0.0000028494,0.0000028556,0.0000028504, +0.0000028435,0.0000028424,0.0000028475,0.0000028591,0.0000028622, +0.0000028550,0.0000028496,0.0000028493,0.0000028560,0.0000028698, +0.0000028767,0.0000028852,0.0000028920,0.0000028843,0.0000028661, +0.0000028364,0.0000028230,0.0000028187,0.0000028220,0.0000028360, +0.0000028446,0.0000028456,0.0000028467,0.0000028447,0.0000028520, +0.0000028612,0.0000028602,0.0000028562,0.0000028540,0.0000028545, +0.0000028604,0.0000028666,0.0000028652,0.0000028587,0.0000028537, +0.0000028522,0.0000028494,0.0000028443,0.0000028384,0.0000028333, +0.0000028317,0.0000028306,0.0000028299,0.0000028323,0.0000028347, +0.0000028363,0.0000028337,0.0000028288,0.0000028256,0.0000028253, +0.0000028325,0.0000028422,0.0000028459,0.0000028437,0.0000028411, +0.0000028374,0.0000028304,0.0000028245,0.0000028227,0.0000028238, +0.0000028269,0.0000028255,0.0000028203,0.0000028080,0.0000027870, +0.0000027696,0.0000027656,0.0000027679,0.0000027677,0.0000027640, +0.0000027595,0.0000027571,0.0000027599,0.0000027627,0.0000027599, +0.0000027486,0.0000027365,0.0000027379,0.0000027475,0.0000027563, +0.0000027583,0.0000027542,0.0000027459,0.0000027380,0.0000027293, +0.0000027236,0.0000027222,0.0000027251,0.0000027296,0.0000027329, +0.0000027361,0.0000027375,0.0000027382,0.0000027390,0.0000027391, +0.0000027375,0.0000027338,0.0000027289,0.0000027249,0.0000027234, +0.0000027219,0.0000027182,0.0000027145,0.0000027108,0.0000027075, +0.0000027054,0.0000027056,0.0000027079,0.0000027116,0.0000027143, +0.0000027145,0.0000027118,0.0000027058,0.0000027002,0.0000026975, +0.0000026969,0.0000026964,0.0000026944,0.0000026901,0.0000026847, +0.0000026790,0.0000026729,0.0000026683,0.0000026669,0.0000026680, +0.0000026733,0.0000026838,0.0000026957,0.0000027074,0.0000027148, +0.0000027183,0.0000027221,0.0000027269,0.0000027321,0.0000027369, +0.0000027394,0.0000027389,0.0000027363,0.0000027331,0.0000027334, +0.0000027401,0.0000027577,0.0000027780,0.0000027897,0.0000027910, +0.0000027901,0.0000027913,0.0000027971,0.0000028127,0.0000028297, +0.0000028322,0.0000028196,0.0000028057,0.0000028032,0.0000028099, +0.0000028198,0.0000028210,0.0000028122,0.0000027989,0.0000027936, +0.0000027969,0.0000028118,0.0000028244,0.0000028204,0.0000028169, +0.0000028064,0.0000027780,0.0000027719,0.0000027893,0.0000028048, +0.0000028321,0.0000028290,0.0000028363,0.0000028560,0.0000028590, +0.0000028565,0.0000028567,0.0000028588,0.0000028687,0.0000028766, +0.0000028723,0.0000028554,0.0000028383,0.0000028173,0.0000027992, +0.0000027988,0.0000027980,0.0000027967,0.0000027977,0.0000027987, +0.0000027929,0.0000027771,0.0000027638,0.0000027622,0.0000027622, +0.0000027641,0.0000027685,0.0000027709,0.0000027686,0.0000027613, +0.0000027549,0.0000027534,0.0000027515,0.0000027496,0.0000027491, +0.0000027517,0.0000027567,0.0000027615,0.0000027634,0.0000027615, +0.0000027560,0.0000027497,0.0000027452,0.0000027456,0.0000027485, +0.0000027525,0.0000027582,0.0000027635,0.0000027670,0.0000027689, +0.0000027694,0.0000027654,0.0000027593,0.0000027535,0.0000027493, +0.0000027485,0.0000027491,0.0000027498,0.0000027505,0.0000027503, +0.0000027496,0.0000027509,0.0000027500,0.0000027501,0.0000027510, +0.0000027537,0.0000027589,0.0000027630,0.0000027679,0.0000027719, +0.0000027730,0.0000027720,0.0000027723,0.0000027722,0.0000027715, +0.0000027724,0.0000027731,0.0000027727,0.0000027701,0.0000027672, +0.0000027635,0.0000027623,0.0000027632,0.0000027657,0.0000027685, +0.0000027718,0.0000027779,0.0000027831,0.0000027842,0.0000027833, +0.0000027812,0.0000027787,0.0000027772,0.0000027767,0.0000027787, +0.0000027812,0.0000027832,0.0000027861,0.0000027901,0.0000027945, +0.0000027967,0.0000027999,0.0000028025,0.0000028031,0.0000027997, +0.0000027950,0.0000027943,0.0000027969,0.0000027996,0.0000028009, +0.0000028023,0.0000028074,0.0000028148,0.0000028242,0.0000028352, +0.0000028460,0.0000028544,0.0000028594,0.0000028620,0.0000028621, +0.0000028617,0.0000028649,0.0000028714,0.0000028779,0.0000028796, +0.0000028789,0.0000028755,0.0000028645,0.0000028504,0.0000028387, +0.0000028311,0.0000028265,0.0000028216,0.0000028182,0.0000028201, +0.0000028286,0.0000028420,0.0000028522,0.0000028544,0.0000028489, +0.0000028366,0.0000028230,0.0000028144,0.0000028091,0.0000028059, +0.0000028034,0.0000028013,0.0000028000,0.0000027992,0.0000027978, +0.0000027947,0.0000027903,0.0000027859,0.0000027845,0.0000027881, +0.0000027972,0.0000028085,0.0000028181,0.0000028250,0.0000028300, +0.0000028339,0.0000028375,0.0000028404,0.0000028425,0.0000028443, +0.0000028461,0.0000028471,0.0000028468,0.0000028471,0.0000028478, +0.0000028457,0.0000028470,0.0000028575,0.0000028648,0.0000028568, +0.0000028273,0.0000028035,0.0000028033,0.0000028099,0.0000028088, +0.0000028088,0.0000028177,0.0000028329,0.0000028445,0.0000028461, +0.0000028404,0.0000028309,0.0000028182,0.0000028058,0.0000027979, +0.0000027959,0.0000027981,0.0000028055,0.0000028131,0.0000028165, +0.0000028159,0.0000028128,0.0000028101,0.0000028109,0.0000028149, +0.0000028201,0.0000028246,0.0000028281,0.0000028312,0.0000028348, +0.0000028400,0.0000028489,0.0000028622,0.0000028776,0.0000028905, +0.0000028975,0.0000028986,0.0000028964,0.0000028928,0.0000028900, +0.0000028900,0.0000028910,0.0000028920,0.0000028953,0.0000029027, +0.0000029122,0.0000029202,0.0000029256,0.0000029295,0.0000029319, +0.0000029327,0.0000029313,0.0000029253,0.0000029152,0.0000029038, +0.0000028960,0.0000028943,0.0000028946,0.0000028940,0.0000028908, +0.0000028838,0.0000028748,0.0000028664,0.0000028605,0.0000028581, +0.0000028582,0.0000028598,0.0000028626,0.0000028655,0.0000028677, +0.0000028694,0.0000028720,0.0000028748,0.0000028753,0.0000028730, +0.0000028717,0.0000028727,0.0000028748,0.0000028785,0.0000028814, +0.0000028817,0.0000028799,0.0000028770,0.0000028756,0.0000028778, +0.0000028813,0.0000028833,0.0000028853,0.0000028877,0.0000028882, +0.0000028876,0.0000028894,0.0000028936,0.0000028965,0.0000028963, +0.0000028937,0.0000028916,0.0000028885,0.0000028810,0.0000028673, +0.0000028500,0.0000028365,0.0000028302,0.0000028287,0.0000028280, +0.0000028262,0.0000028256,0.0000028277,0.0000028355,0.0000028481, +0.0000028586,0.0000028620,0.0000028644,0.0000028707,0.0000028785, +0.0000028833,0.0000028851,0.0000028855,0.0000028834,0.0000028789, +0.0000028726,0.0000028646,0.0000028583,0.0000028578,0.0000028597, +0.0000028592,0.0000028541,0.0000028441,0.0000028330,0.0000028228, +0.0000028158,0.0000028113,0.0000028045,0.0000027981,0.0000027988, +0.0000028063,0.0000028180,0.0000028301,0.0000028408,0.0000028498, +0.0000028562,0.0000028592,0.0000028599,0.0000028596,0.0000028583, +0.0000028546,0.0000028498,0.0000028485,0.0000028523,0.0000028602, +0.0000028675,0.0000028703,0.0000028667,0.0000028570,0.0000028461, +0.0000028365,0.0000028304,0.0000028253,0.0000028159,0.0000028045, +0.0000028016,0.0000028064,0.0000028147,0.0000028206,0.0000028235, +0.0000028234,0.0000028182,0.0000028058,0.0000027954,0.0000027902, +0.0000027898,0.0000027924,0.0000027969,0.0000028016,0.0000028046, +0.0000028041,0.0000028026,0.0000028019,0.0000028037,0.0000028088, +0.0000028158,0.0000028219,0.0000028256,0.0000028267,0.0000028260, +0.0000028234,0.0000028208,0.0000028200,0.0000028216,0.0000028281, +0.0000028346,0.0000028352,0.0000028299,0.0000028216,0.0000028174, +0.0000028173,0.0000028041,0.0000027886,0.0000028097,0.0000028379, +0.0000028517,0.0000028626,0.0000028801,0.0000028978,0.0000029034, +0.0000029021,0.0000028994,0.0000028980,0.0000028953,0.0000028917, +0.0000028889,0.0000028881,0.0000028903,0.0000028942,0.0000028971, +0.0000029005,0.0000029032,0.0000029046,0.0000029025,0.0000028995, +0.0000028933,0.0000028842,0.0000028758,0.0000028680,0.0000028649, +0.0000028604,0.0000028588,0.0000028650,0.0000028761,0.0000028675, +0.0000028417,0.0000028258,0.0000028359,0.0000028619,0.0000028740, +0.0000028701,0.0000028589,0.0000028510,0.0000028488,0.0000028490, +0.0000028509,0.0000028521,0.0000028512,0.0000028514,0.0000028554, +0.0000028612,0.0000028629,0.0000028625,0.0000028636,0.0000028657, +0.0000028678,0.0000028681,0.0000028644,0.0000028591,0.0000028544, +0.0000028508,0.0000028469,0.0000028419,0.0000028360,0.0000028290, +0.0000028225,0.0000028183,0.0000028158,0.0000028131,0.0000028088, +0.0000028035,0.0000027990,0.0000027949,0.0000027906,0.0000027859, +0.0000027822,0.0000027804,0.0000027806,0.0000027826,0.0000027850, +0.0000027875,0.0000027877,0.0000027829,0.0000027755,0.0000027713, +0.0000027710,0.0000027710,0.0000027713,0.0000027771,0.0000027874, +0.0000027937,0.0000027963,0.0000028008,0.0000028038,0.0000028039, +0.0000028132,0.0000028344,0.0000028486,0.0000028508,0.0000028502, +0.0000028464,0.0000028386,0.0000028297,0.0000028214,0.0000028126, +0.0000028068,0.0000028042,0.0000027979,0.0000027857,0.0000027696, +0.0000027549,0.0000027521,0.0000027627,0.0000027847,0.0000028061, +0.0000028161,0.0000028179,0.0000028160,0.0000028136,0.0000028081, +0.0000027969,0.0000027818,0.0000027668,0.0000027576,0.0000027577, +0.0000027652,0.0000027779,0.0000027907,0.0000027979,0.0000027998, +0.0000028002,0.0000028039,0.0000028123,0.0000028232,0.0000028320, +0.0000028356,0.0000028347,0.0000028300,0.0000028220,0.0000028146, +0.0000028127,0.0000028158,0.0000028204,0.0000028247,0.0000028283, +0.0000028308,0.0000028313,0.0000028293,0.0000028260,0.0000028213, +0.0000028157,0.0000028112,0.0000028083,0.0000028054,0.0000028027, +0.0000028016,0.0000028011,0.0000028011,0.0000028039,0.0000028063, +0.0000028029,0.0000027934,0.0000027863,0.0000027904,0.0000028067, +0.0000028189,0.0000028253,0.0000028354,0.0000028464,0.0000028522, +0.0000028471,0.0000028425,0.0000028428,0.0000028490,0.0000028602, +0.0000028621,0.0000028561,0.0000028521,0.0000028523,0.0000028597, +0.0000028714,0.0000028790,0.0000028885,0.0000028922,0.0000028823, +0.0000028624,0.0000028330,0.0000028230,0.0000028185,0.0000028223, +0.0000028363,0.0000028479,0.0000028521,0.0000028526,0.0000028473, +0.0000028515,0.0000028592,0.0000028567,0.0000028499,0.0000028491, +0.0000028497,0.0000028567,0.0000028621,0.0000028608,0.0000028546, +0.0000028505,0.0000028502,0.0000028493,0.0000028455,0.0000028395, +0.0000028310,0.0000028252,0.0000028237,0.0000028235,0.0000028243, +0.0000028248,0.0000028257,0.0000028244,0.0000028201,0.0000028150, +0.0000028117,0.0000028149,0.0000028252,0.0000028338,0.0000028354, +0.0000028338,0.0000028321,0.0000028265,0.0000028167,0.0000028110, +0.0000028091,0.0000028108,0.0000028166,0.0000028173,0.0000028125, +0.0000027989,0.0000027775,0.0000027665,0.0000027675,0.0000027696, +0.0000027677,0.0000027646,0.0000027617,0.0000027626,0.0000027656, +0.0000027638,0.0000027535,0.0000027393,0.0000027379,0.0000027457, +0.0000027528,0.0000027514,0.0000027395,0.0000027274,0.0000027221, +0.0000027206,0.0000027225,0.0000027257,0.0000027290,0.0000027305, +0.0000027303,0.0000027288,0.0000027269,0.0000027247,0.0000027232, +0.0000027217,0.0000027200,0.0000027169,0.0000027122,0.0000027081, +0.0000027059,0.0000027069,0.0000027076,0.0000027067,0.0000027058, +0.0000027045,0.0000027031,0.0000027025,0.0000027033,0.0000027062, +0.0000027095,0.0000027124,0.0000027132,0.0000027114,0.0000027072, +0.0000027021,0.0000026997,0.0000027008,0.0000027028,0.0000027033, +0.0000027010,0.0000026958,0.0000026889,0.0000026818,0.0000026753, +0.0000026707,0.0000026678,0.0000026693,0.0000026772,0.0000026896, +0.0000027033,0.0000027117,0.0000027141,0.0000027154,0.0000027171, +0.0000027221,0.0000027289,0.0000027335,0.0000027352,0.0000027345, +0.0000027319,0.0000027291,0.0000027317,0.0000027476,0.0000027689, +0.0000027829,0.0000027858,0.0000027864,0.0000027898,0.0000027994, +0.0000028187,0.0000028334,0.0000028302,0.0000028144,0.0000028029, +0.0000028040,0.0000028129,0.0000028201,0.0000028163,0.0000028040, +0.0000027952,0.0000027950,0.0000028033,0.0000028180,0.0000028242, +0.0000028168,0.0000028135,0.0000027940,0.0000027689,0.0000027780, +0.0000027935,0.0000028139,0.0000028317,0.0000028231,0.0000028403, +0.0000028576,0.0000028591,0.0000028573,0.0000028579,0.0000028608, +0.0000028714,0.0000028771,0.0000028709,0.0000028529,0.0000028360, +0.0000028152,0.0000027992,0.0000027992,0.0000027976,0.0000027951, +0.0000027969,0.0000027978,0.0000027911,0.0000027751,0.0000027636, +0.0000027627,0.0000027622,0.0000027636,0.0000027674,0.0000027691, +0.0000027672,0.0000027615,0.0000027565,0.0000027552,0.0000027529, +0.0000027505,0.0000027507,0.0000027537,0.0000027595,0.0000027638, +0.0000027640,0.0000027600,0.0000027519,0.0000027451,0.0000027412, +0.0000027420,0.0000027445,0.0000027475,0.0000027508,0.0000027530, +0.0000027541,0.0000027551,0.0000027575,0.0000027576,0.0000027564, +0.0000027535,0.0000027489,0.0000027463,0.0000027459,0.0000027471, +0.0000027478,0.0000027469,0.0000027445,0.0000027444,0.0000027413, +0.0000027396,0.0000027379,0.0000027378,0.0000027407,0.0000027438, +0.0000027480,0.0000027512,0.0000027521,0.0000027513,0.0000027532, +0.0000027549,0.0000027554,0.0000027581,0.0000027605,0.0000027621, +0.0000027611,0.0000027600,0.0000027576,0.0000027588,0.0000027610, +0.0000027634,0.0000027654,0.0000027665,0.0000027702,0.0000027753, +0.0000027774,0.0000027768,0.0000027748,0.0000027716,0.0000027675, +0.0000027644,0.0000027623,0.0000027622,0.0000027631,0.0000027658, +0.0000027721,0.0000027835,0.0000027936,0.0000027984,0.0000028001, +0.0000028008,0.0000027992,0.0000027953,0.0000027933,0.0000027952, +0.0000027992,0.0000028017,0.0000028025,0.0000028065,0.0000028138, +0.0000028234,0.0000028357,0.0000028476,0.0000028564,0.0000028619, +0.0000028641,0.0000028634,0.0000028610,0.0000028619,0.0000028674, +0.0000028731,0.0000028745,0.0000028738,0.0000028703,0.0000028591, +0.0000028449,0.0000028331,0.0000028258,0.0000028234,0.0000028203, +0.0000028187,0.0000028233,0.0000028342,0.0000028474,0.0000028542, +0.0000028538,0.0000028458,0.0000028335,0.0000028230,0.0000028166, +0.0000028132,0.0000028092,0.0000028045,0.0000028005,0.0000027983, +0.0000027974,0.0000027961,0.0000027934,0.0000027886,0.0000027829, +0.0000027796,0.0000027812,0.0000027882,0.0000027982,0.0000028077, +0.0000028147,0.0000028198,0.0000028235,0.0000028263,0.0000028290, +0.0000028319,0.0000028349,0.0000028382,0.0000028418,0.0000028443, +0.0000028470,0.0000028505,0.0000028505,0.0000028488,0.0000028539, +0.0000028643,0.0000028664,0.0000028489,0.0000028168,0.0000028014, +0.0000028068,0.0000028118,0.0000028094,0.0000028102,0.0000028205, +0.0000028351,0.0000028440,0.0000028434,0.0000028371,0.0000028277, +0.0000028168,0.0000028067,0.0000028007,0.0000027994,0.0000028037, +0.0000028115,0.0000028162,0.0000028162,0.0000028134,0.0000028084, +0.0000028052,0.0000028062,0.0000028098,0.0000028144,0.0000028193, +0.0000028239,0.0000028283,0.0000028346,0.0000028451,0.0000028596, +0.0000028744,0.0000028861,0.0000028934,0.0000028959,0.0000028954, +0.0000028938,0.0000028913,0.0000028885,0.0000028876,0.0000028880, +0.0000028898,0.0000028951,0.0000029044,0.0000029141,0.0000029211, +0.0000029252,0.0000029280,0.0000029309,0.0000029332,0.0000029333, +0.0000029296,0.0000029217,0.0000029121,0.0000029045,0.0000029005, +0.0000028982,0.0000028953,0.0000028899,0.0000028819,0.0000028735, +0.0000028667,0.0000028630,0.0000028624,0.0000028646,0.0000028681, +0.0000028717,0.0000028753,0.0000028784,0.0000028807,0.0000028826, +0.0000028843,0.0000028837,0.0000028800,0.0000028761,0.0000028752, +0.0000028766,0.0000028788,0.0000028798,0.0000028789,0.0000028770, +0.0000028750,0.0000028744,0.0000028778,0.0000028837,0.0000028872, +0.0000028875,0.0000028875,0.0000028878,0.0000028887,0.0000028913, +0.0000028949,0.0000028969,0.0000028970,0.0000028949,0.0000028915, +0.0000028859,0.0000028761,0.0000028625,0.0000028477,0.0000028365, +0.0000028323,0.0000028325,0.0000028329,0.0000028306,0.0000028281, +0.0000028292,0.0000028358,0.0000028465,0.0000028566,0.0000028616, +0.0000028643,0.0000028693,0.0000028769,0.0000028832,0.0000028864, +0.0000028882,0.0000028885,0.0000028859,0.0000028793,0.0000028712, +0.0000028653,0.0000028638,0.0000028644,0.0000028636,0.0000028606, +0.0000028539,0.0000028431,0.0000028328,0.0000028253,0.0000028209, +0.0000028176,0.0000028105,0.0000028038,0.0000028034,0.0000028083, +0.0000028183,0.0000028312,0.0000028425,0.0000028507,0.0000028565, +0.0000028595,0.0000028599,0.0000028581,0.0000028549,0.0000028500, +0.0000028451,0.0000028440,0.0000028477,0.0000028548,0.0000028626, +0.0000028691,0.0000028682,0.0000028609,0.0000028469,0.0000028357, +0.0000028313,0.0000028294,0.0000028219,0.0000028093,0.0000028030, +0.0000028064,0.0000028137,0.0000028172,0.0000028197,0.0000028221, +0.0000028202,0.0000028102,0.0000027975,0.0000027885,0.0000027836, +0.0000027855,0.0000027924,0.0000028006,0.0000028061,0.0000028075, +0.0000028075,0.0000028083,0.0000028103,0.0000028139,0.0000028187, +0.0000028233,0.0000028257,0.0000028267,0.0000028263,0.0000028239, +0.0000028211,0.0000028198,0.0000028216,0.0000028296,0.0000028379, +0.0000028387,0.0000028329,0.0000028253,0.0000028230,0.0000028211, +0.0000028023,0.0000027918,0.0000028164,0.0000028402,0.0000028526, +0.0000028670,0.0000028847,0.0000028962,0.0000028969,0.0000028957, +0.0000028966,0.0000028967,0.0000028941,0.0000028905,0.0000028871, +0.0000028861,0.0000028879,0.0000028899,0.0000028907,0.0000028930, +0.0000028958,0.0000028981,0.0000028965,0.0000028943,0.0000028879, +0.0000028765,0.0000028669,0.0000028611,0.0000028593,0.0000028570, +0.0000028650,0.0000028820,0.0000028790,0.0000028537,0.0000028306, +0.0000028344,0.0000028612,0.0000028775,0.0000028748,0.0000028638, +0.0000028562,0.0000028520,0.0000028521,0.0000028551,0.0000028570, +0.0000028555,0.0000028517,0.0000028487,0.0000028489,0.0000028531, +0.0000028559,0.0000028566,0.0000028598,0.0000028636,0.0000028661, +0.0000028656,0.0000028605,0.0000028549,0.0000028507,0.0000028478, +0.0000028454,0.0000028420,0.0000028375,0.0000028317,0.0000028248, +0.0000028193,0.0000028158,0.0000028123,0.0000028067,0.0000027996, +0.0000027941,0.0000027911,0.0000027898,0.0000027876,0.0000027838, +0.0000027800,0.0000027780,0.0000027792,0.0000027829,0.0000027873, +0.0000027920,0.0000027937,0.0000027910,0.0000027843,0.0000027780, +0.0000027747,0.0000027735,0.0000027735,0.0000027771,0.0000027863, +0.0000027934,0.0000027962,0.0000028017,0.0000028070,0.0000028102, +0.0000028248,0.0000028468,0.0000028576,0.0000028582,0.0000028563, +0.0000028502,0.0000028411,0.0000028331,0.0000028260,0.0000028178, +0.0000028132,0.0000028109,0.0000028059,0.0000027973,0.0000027834, +0.0000027659,0.0000027531,0.0000027534,0.0000027664,0.0000027870, +0.0000028051,0.0000028168,0.0000028226,0.0000028231,0.0000028204, +0.0000028122,0.0000027993,0.0000027841,0.0000027710,0.0000027642, +0.0000027651,0.0000027740,0.0000027880,0.0000027985,0.0000028032, +0.0000028048,0.0000028080,0.0000028156,0.0000028257,0.0000028340, +0.0000028389,0.0000028407,0.0000028391,0.0000028330,0.0000028267, +0.0000028243,0.0000028274,0.0000028334,0.0000028386,0.0000028414, +0.0000028425,0.0000028420,0.0000028400,0.0000028369,0.0000028317, +0.0000028240,0.0000028173,0.0000028132,0.0000028103,0.0000028071, +0.0000028035,0.0000028007,0.0000027998,0.0000028019,0.0000028020, +0.0000027957,0.0000027849,0.0000027777,0.0000027823,0.0000027987, +0.0000028099,0.0000028178,0.0000028311,0.0000028435,0.0000028484, +0.0000028437,0.0000028414,0.0000028426,0.0000028495,0.0000028600, +0.0000028634,0.0000028594,0.0000028558,0.0000028553,0.0000028615, +0.0000028707,0.0000028796,0.0000028897,0.0000028908,0.0000028797, +0.0000028581,0.0000028309,0.0000028230,0.0000028192,0.0000028231, +0.0000028379,0.0000028526,0.0000028585,0.0000028586,0.0000028494, +0.0000028498,0.0000028558,0.0000028542,0.0000028459,0.0000028445, +0.0000028437,0.0000028519,0.0000028571,0.0000028555,0.0000028502, +0.0000028484,0.0000028499,0.0000028510,0.0000028472,0.0000028405, +0.0000028318,0.0000028236,0.0000028187,0.0000028147,0.0000028119, +0.0000028093,0.0000028088,0.0000028088,0.0000028058,0.0000028011, +0.0000027987,0.0000028014,0.0000028113,0.0000028223,0.0000028270, +0.0000028266,0.0000028262,0.0000028230,0.0000028115,0.0000028025, +0.0000027988,0.0000027980,0.0000028066,0.0000028134,0.0000028133, +0.0000028058,0.0000027867,0.0000027703,0.0000027680,0.0000027691, +0.0000027684,0.0000027647,0.0000027609,0.0000027602,0.0000027611, +0.0000027602,0.0000027513,0.0000027388,0.0000027375,0.0000027413, +0.0000027411,0.0000027337,0.0000027253,0.0000027207,0.0000027224, +0.0000027259,0.0000027279,0.0000027277,0.0000027257,0.0000027225, +0.0000027196,0.0000027176,0.0000027168,0.0000027159,0.0000027155, +0.0000027157,0.0000027157,0.0000027143,0.0000027108,0.0000027066, +0.0000027038,0.0000027040,0.0000027058,0.0000027068,0.0000027069, +0.0000027063,0.0000027053,0.0000027047,0.0000027048,0.0000027060, +0.0000027082,0.0000027109,0.0000027131,0.0000027144,0.0000027138, +0.0000027115,0.0000027070,0.0000027050,0.0000027058,0.0000027086, +0.0000027104,0.0000027096,0.0000027051,0.0000026984,0.0000026921, +0.0000026859,0.0000026791,0.0000026718,0.0000026693,0.0000026720, +0.0000026828,0.0000026971,0.0000027074,0.0000027111,0.0000027103, +0.0000027088,0.0000027116,0.0000027173,0.0000027230,0.0000027266, +0.0000027279,0.0000027268,0.0000027235,0.0000027242,0.0000027387, +0.0000027608,0.0000027761,0.0000027801,0.0000027822,0.0000027888, +0.0000028036,0.0000028255,0.0000028350,0.0000028257,0.0000028096, +0.0000028043,0.0000028086,0.0000028157,0.0000028157,0.0000028061, +0.0000027971,0.0000027955,0.0000028007,0.0000028127,0.0000028226, +0.0000028203,0.0000028138,0.0000028049,0.0000027799,0.0000027681, +0.0000027833,0.0000027976,0.0000028224,0.0000028253,0.0000028195, +0.0000028438,0.0000028582,0.0000028592,0.0000028585,0.0000028593, +0.0000028633,0.0000028735,0.0000028767,0.0000028678,0.0000028492, +0.0000028336,0.0000028123,0.0000027996,0.0000027996,0.0000027964, +0.0000027936,0.0000027962,0.0000027964,0.0000027888,0.0000027729, +0.0000027634,0.0000027634,0.0000027629,0.0000027642,0.0000027671, +0.0000027680,0.0000027673,0.0000027627,0.0000027577,0.0000027556, +0.0000027530,0.0000027508,0.0000027519,0.0000027557,0.0000027618, +0.0000027650,0.0000027638,0.0000027571,0.0000027469,0.0000027404, +0.0000027375,0.0000027379,0.0000027391,0.0000027409,0.0000027425, +0.0000027432,0.0000027430,0.0000027426,0.0000027441,0.0000027453, +0.0000027473,0.0000027484,0.0000027459,0.0000027447,0.0000027434, +0.0000027429,0.0000027423,0.0000027409,0.0000027393,0.0000027403, +0.0000027381,0.0000027368,0.0000027352,0.0000027339,0.0000027340, +0.0000027343,0.0000027347,0.0000027351,0.0000027331,0.0000027301, +0.0000027301,0.0000027304,0.0000027301,0.0000027337,0.0000027372, +0.0000027414,0.0000027436,0.0000027454,0.0000027459,0.0000027497, +0.0000027531,0.0000027565,0.0000027587,0.0000027595,0.0000027611, +0.0000027652,0.0000027677,0.0000027685,0.0000027666,0.0000027636, +0.0000027584,0.0000027530,0.0000027488,0.0000027468,0.0000027463, +0.0000027469,0.0000027485,0.0000027553,0.0000027712,0.0000027889, +0.0000027982,0.0000027991,0.0000027970,0.0000027951,0.0000027946, +0.0000027959,0.0000027991,0.0000028023,0.0000028033,0.0000028059, +0.0000028133,0.0000028232,0.0000028358,0.0000028479,0.0000028563, +0.0000028613,0.0000028638,0.0000028614,0.0000028570,0.0000028568, +0.0000028612,0.0000028668,0.0000028685,0.0000028682,0.0000028641, +0.0000028528,0.0000028393,0.0000028284,0.0000028241,0.0000028232, +0.0000028211,0.0000028212,0.0000028282,0.0000028395,0.0000028505, +0.0000028554,0.0000028523,0.0000028434,0.0000028334,0.0000028260, +0.0000028220,0.0000028183,0.0000028127,0.0000028053,0.0000027990, +0.0000027959,0.0000027945,0.0000027931,0.0000027907,0.0000027862, +0.0000027800,0.0000027748,0.0000027741,0.0000027777,0.0000027843, +0.0000027919,0.0000027989,0.0000028046,0.0000028092,0.0000028124, +0.0000028151,0.0000028189,0.0000028238,0.0000028296,0.0000028359, +0.0000028413,0.0000028465,0.0000028523,0.0000028551,0.0000028531, +0.0000028535,0.0000028615,0.0000028680,0.0000028628,0.0000028365, +0.0000028086,0.0000028037,0.0000028129,0.0000028154,0.0000028127, +0.0000028143,0.0000028242,0.0000028366,0.0000028416,0.0000028389, +0.0000028324,0.0000028238,0.0000028141,0.0000028064,0.0000028025, +0.0000028038,0.0000028104,0.0000028173,0.0000028188,0.0000028157, +0.0000028090,0.0000028031,0.0000028010,0.0000028015,0.0000028044, +0.0000028094,0.0000028150,0.0000028208,0.0000028284,0.0000028410, +0.0000028577,0.0000028733,0.0000028841,0.0000028902,0.0000028934, +0.0000028945,0.0000028942,0.0000028931,0.0000028901,0.0000028864, +0.0000028847,0.0000028852,0.0000028883,0.0000028956,0.0000029059, +0.0000029151,0.0000029211,0.0000029240,0.0000029257,0.0000029283, +0.0000029314,0.0000029327,0.0000029306,0.0000029246,0.0000029168, +0.0000029096,0.0000029040,0.0000028997,0.0000028949,0.0000028879, +0.0000028795,0.0000028720,0.0000028673,0.0000028657,0.0000028670, +0.0000028709,0.0000028755,0.0000028795,0.0000028834,0.0000028870, +0.0000028897,0.0000028918,0.0000028932,0.0000028921,0.0000028878, +0.0000028828,0.0000028800,0.0000028807,0.0000028811,0.0000028797, +0.0000028771,0.0000028747,0.0000028730,0.0000028731,0.0000028774, +0.0000028852,0.0000028904,0.0000028906,0.0000028888,0.0000028877, +0.0000028887,0.0000028915,0.0000028941,0.0000028953,0.0000028957, +0.0000028952,0.0000028911,0.0000028833,0.0000028719,0.0000028590, +0.0000028477,0.0000028407,0.0000028379,0.0000028374,0.0000028381, +0.0000028357,0.0000028320,0.0000028319,0.0000028376,0.0000028469, +0.0000028549,0.0000028604,0.0000028640,0.0000028685,0.0000028747, +0.0000028810,0.0000028859,0.0000028894,0.0000028915,0.0000028909, +0.0000028856,0.0000028771,0.0000028710,0.0000028694,0.0000028704, +0.0000028701,0.0000028672,0.0000028640,0.0000028571,0.0000028477, +0.0000028385,0.0000028317,0.0000028275,0.0000028219,0.0000028127, +0.0000028054,0.0000028040,0.0000028066,0.0000028155,0.0000028283, +0.0000028391,0.0000028466,0.0000028521,0.0000028557,0.0000028560, +0.0000028535,0.0000028498,0.0000028457,0.0000028418,0.0000028413, +0.0000028459,0.0000028517,0.0000028573,0.0000028633,0.0000028662, +0.0000028601,0.0000028468,0.0000028347,0.0000028318,0.0000028317, +0.0000028270,0.0000028145,0.0000028080,0.0000028109,0.0000028165, +0.0000028177,0.0000028184,0.0000028198,0.0000028203,0.0000028152, +0.0000028026,0.0000027893,0.0000027819,0.0000027806,0.0000027858, +0.0000027954,0.0000028034,0.0000028067,0.0000028081,0.0000028103, +0.0000028138,0.0000028179,0.0000028221,0.0000028262,0.0000028284, +0.0000028298,0.0000028297,0.0000028275,0.0000028238,0.0000028208, +0.0000028223,0.0000028314,0.0000028403,0.0000028411,0.0000028359, +0.0000028307,0.0000028301,0.0000028230,0.0000028007,0.0000027981, +0.0000028242,0.0000028434,0.0000028558,0.0000028725,0.0000028868, +0.0000028911,0.0000028901,0.0000028913,0.0000028959,0.0000028966, +0.0000028940,0.0000028895,0.0000028842,0.0000028818,0.0000028825, +0.0000028819,0.0000028817,0.0000028842,0.0000028884,0.0000028921, +0.0000028917,0.0000028901,0.0000028824,0.0000028686,0.0000028592, +0.0000028556,0.0000028549,0.0000028591,0.0000028795,0.0000028891, +0.0000028694,0.0000028424,0.0000028329,0.0000028560,0.0000028795, +0.0000028804,0.0000028702,0.0000028611,0.0000028588,0.0000028583, +0.0000028597,0.0000028630,0.0000028621,0.0000028565,0.0000028500, +0.0000028430,0.0000028391,0.0000028409,0.0000028455,0.0000028487, +0.0000028530,0.0000028582,0.0000028618,0.0000028625,0.0000028579, +0.0000028534,0.0000028508,0.0000028503,0.0000028514,0.0000028518, +0.0000028500,0.0000028464,0.0000028408,0.0000028347,0.0000028283, +0.0000028213,0.0000028133,0.0000028044,0.0000027974,0.0000027931, +0.0000027909,0.0000027899,0.0000027891,0.0000027880,0.0000027851, +0.0000027825,0.0000027825,0.0000027856,0.0000027907,0.0000027965, +0.0000028004,0.0000027994,0.0000027927,0.0000027842,0.0000027788, +0.0000027778,0.0000027779,0.0000027805,0.0000027871,0.0000027935, +0.0000027974,0.0000028050,0.0000028117,0.0000028183,0.0000028372, +0.0000028572,0.0000028632,0.0000028622,0.0000028575,0.0000028491, +0.0000028398,0.0000028337,0.0000028288,0.0000028233,0.0000028202, +0.0000028182,0.0000028142,0.0000028075,0.0000027966,0.0000027805, +0.0000027645,0.0000027555,0.0000027579,0.0000027720,0.0000027911, +0.0000028079,0.0000028189,0.0000028240,0.0000028263,0.0000028237, +0.0000028154,0.0000028028,0.0000027891,0.0000027776,0.0000027716, +0.0000027743,0.0000027842,0.0000027963,0.0000028054,0.0000028109, +0.0000028154,0.0000028222,0.0000028300,0.0000028359,0.0000028401, +0.0000028427,0.0000028429,0.0000028402,0.0000028367,0.0000028359, +0.0000028401,0.0000028474,0.0000028516,0.0000028517,0.0000028498, +0.0000028478,0.0000028450,0.0000028404,0.0000028340,0.0000028253, +0.0000028175,0.0000028133,0.0000028107,0.0000028065,0.0000028009, +0.0000027974,0.0000027978,0.0000027995,0.0000027977,0.0000027898, +0.0000027787,0.0000027729,0.0000027782,0.0000027929,0.0000028023, +0.0000028118,0.0000028283,0.0000028409,0.0000028448,0.0000028411, +0.0000028413,0.0000028435,0.0000028497,0.0000028602,0.0000028657, +0.0000028640,0.0000028598,0.0000028578,0.0000028622,0.0000028702, +0.0000028798,0.0000028897,0.0000028881,0.0000028772,0.0000028539, +0.0000028301,0.0000028246,0.0000028217,0.0000028246,0.0000028412, +0.0000028572,0.0000028640,0.0000028640,0.0000028517,0.0000028474, +0.0000028511,0.0000028506,0.0000028434,0.0000028392,0.0000028389, +0.0000028460,0.0000028510,0.0000028485,0.0000028451,0.0000028443, +0.0000028474,0.0000028503,0.0000028473,0.0000028399,0.0000028306, +0.0000028236,0.0000028195,0.0000028141,0.0000028077,0.0000028010, +0.0000027970,0.0000027966,0.0000027946,0.0000027925,0.0000027925, +0.0000027964,0.0000028057,0.0000028151,0.0000028202,0.0000028209, +0.0000028216,0.0000028191,0.0000028059,0.0000027962,0.0000027922, +0.0000027905,0.0000027999,0.0000028093,0.0000028113,0.0000028072, +0.0000027895,0.0000027724,0.0000027666,0.0000027656,0.0000027623, +0.0000027566,0.0000027530,0.0000027535,0.0000027540,0.0000027523, +0.0000027470,0.0000027391,0.0000027353,0.0000027294,0.0000027241, +0.0000027224,0.0000027233,0.0000027251,0.0000027261,0.0000027259, +0.0000027241,0.0000027212,0.0000027184,0.0000027168,0.0000027166, +0.0000027176,0.0000027193,0.0000027203,0.0000027213,0.0000027224, +0.0000027232,0.0000027229,0.0000027204,0.0000027157,0.0000027120, +0.0000027101,0.0000027107,0.0000027118,0.0000027118,0.0000027112, +0.0000027097,0.0000027078,0.0000027069,0.0000027074,0.0000027090, +0.0000027106,0.0000027115,0.0000027124,0.0000027133,0.0000027133, +0.0000027113,0.0000027085,0.0000027082,0.0000027107,0.0000027145, +0.0000027165,0.0000027158,0.0000027120,0.0000027066,0.0000027021, +0.0000026978,0.0000026903,0.0000026805,0.0000026732,0.0000026720, +0.0000026792,0.0000026910,0.0000027016,0.0000027072,0.0000027061, +0.0000027032,0.0000027029,0.0000027058,0.0000027103,0.0000027144, +0.0000027173,0.0000027183,0.0000027163,0.0000027176,0.0000027316, +0.0000027538,0.0000027698,0.0000027746,0.0000027791,0.0000027894, +0.0000028092,0.0000028315,0.0000028348,0.0000028197,0.0000028078, +0.0000028080,0.0000028131,0.0000028127,0.0000028047,0.0000027971, +0.0000027957,0.0000028006,0.0000028102,0.0000028205,0.0000028227, +0.0000028142,0.0000028095,0.0000027916,0.0000027695,0.0000027730, +0.0000027885,0.0000028025,0.0000028244,0.0000028166,0.0000028180, +0.0000028457,0.0000028577,0.0000028594,0.0000028599,0.0000028608, +0.0000028653,0.0000028742,0.0000028746,0.0000028627,0.0000028453, +0.0000028313,0.0000028093,0.0000028006,0.0000027995,0.0000027947, +0.0000027924,0.0000027959,0.0000027949,0.0000027864,0.0000027704, +0.0000027632,0.0000027642,0.0000027643,0.0000027663,0.0000027680, +0.0000027682,0.0000027678,0.0000027631,0.0000027579,0.0000027552, +0.0000027518,0.0000027499,0.0000027521,0.0000027565,0.0000027624, +0.0000027641,0.0000027604,0.0000027507,0.0000027402,0.0000027349, +0.0000027340,0.0000027347,0.0000027351,0.0000027354,0.0000027351, +0.0000027344,0.0000027342,0.0000027339,0.0000027348,0.0000027349, +0.0000027363,0.0000027380,0.0000027372,0.0000027381,0.0000027372, +0.0000027366,0.0000027356,0.0000027339,0.0000027332,0.0000027352, +0.0000027350,0.0000027351,0.0000027343,0.0000027334,0.0000027328, +0.0000027324,0.0000027310,0.0000027298,0.0000027267,0.0000027236, +0.0000027227,0.0000027220,0.0000027202,0.0000027222,0.0000027240, +0.0000027269,0.0000027268,0.0000027277,0.0000027284,0.0000027325, +0.0000027364,0.0000027400,0.0000027430,0.0000027443,0.0000027448, +0.0000027481,0.0000027517,0.0000027544,0.0000027543,0.0000027536, +0.0000027495,0.0000027426,0.0000027360,0.0000027313,0.0000027288, +0.0000027287,0.0000027296,0.0000027314,0.0000027382,0.0000027552, +0.0000027789,0.0000027943,0.0000027962,0.0000027930,0.0000027942, +0.0000027989,0.0000028026,0.0000028055,0.0000028061,0.0000028064, +0.0000028125,0.0000028232,0.0000028360,0.0000028475,0.0000028546, +0.0000028590,0.0000028595,0.0000028555,0.0000028505,0.0000028506, +0.0000028548,0.0000028597,0.0000028622,0.0000028618,0.0000028572, +0.0000028455,0.0000028329,0.0000028242,0.0000028241,0.0000028245, +0.0000028230,0.0000028254,0.0000028340,0.0000028437,0.0000028512, +0.0000028544,0.0000028506,0.0000028420,0.0000028338,0.0000028288, +0.0000028256,0.0000028215,0.0000028152,0.0000028075,0.0000028011, +0.0000027971,0.0000027949,0.0000027936,0.0000027916,0.0000027878, +0.0000027808,0.0000027727,0.0000027682,0.0000027680,0.0000027715, +0.0000027764,0.0000027808,0.0000027852,0.0000027896,0.0000027939, +0.0000027977,0.0000028022,0.0000028085,0.0000028167,0.0000028267, +0.0000028365,0.0000028450,0.0000028528,0.0000028581,0.0000028582, +0.0000028565,0.0000028595,0.0000028663,0.0000028675,0.0000028524, +0.0000028221,0.0000028050,0.0000028100,0.0000028201,0.0000028204, +0.0000028175,0.0000028197,0.0000028282,0.0000028365,0.0000028374, +0.0000028331,0.0000028268,0.0000028188,0.0000028105,0.0000028050, +0.0000028041,0.0000028088,0.0000028161,0.0000028205,0.0000028192, +0.0000028124,0.0000028037,0.0000027989,0.0000027977,0.0000027979, +0.0000028009,0.0000028065,0.0000028127,0.0000028217,0.0000028369, +0.0000028562,0.0000028736,0.0000028847,0.0000028903,0.0000028929, +0.0000028942,0.0000028947,0.0000028946,0.0000028930,0.0000028889, +0.0000028843,0.0000028828,0.0000028834,0.0000028874,0.0000028954, +0.0000029054,0.0000029145,0.0000029202,0.0000029226,0.0000029233, +0.0000029249,0.0000029276,0.0000029295,0.0000029288,0.0000029244, +0.0000029176,0.0000029108,0.0000029057,0.0000029019,0.0000028971, +0.0000028895,0.0000028810,0.0000028746,0.0000028715,0.0000028715, +0.0000028744,0.0000028790,0.0000028827,0.0000028855,0.0000028883, +0.0000028912,0.0000028935,0.0000028960,0.0000028982,0.0000028980, +0.0000028946,0.0000028900,0.0000028871,0.0000028863,0.0000028850, +0.0000028814,0.0000028772,0.0000028735,0.0000028713,0.0000028719, +0.0000028772,0.0000028863,0.0000028930,0.0000028940,0.0000028916, +0.0000028888,0.0000028884,0.0000028900,0.0000028913,0.0000028921, +0.0000028937,0.0000028946,0.0000028907,0.0000028809,0.0000028686, +0.0000028567,0.0000028478,0.0000028442,0.0000028437,0.0000028441, +0.0000028430,0.0000028410,0.0000028378,0.0000028367,0.0000028412, +0.0000028492,0.0000028559,0.0000028598,0.0000028635,0.0000028685, +0.0000028737,0.0000028784,0.0000028834,0.0000028879,0.0000028909, +0.0000028919,0.0000028891,0.0000028826,0.0000028758,0.0000028725, +0.0000028731,0.0000028747,0.0000028748,0.0000028741,0.0000028716, +0.0000028634,0.0000028535,0.0000028436,0.0000028353,0.0000028287, +0.0000028196,0.0000028092,0.0000028027,0.0000028015,0.0000028064, +0.0000028144,0.0000028257,0.0000028356,0.0000028414,0.0000028453, +0.0000028482,0.0000028480,0.0000028455,0.0000028434,0.0000028416, +0.0000028393,0.0000028402,0.0000028457,0.0000028504,0.0000028536, +0.0000028558,0.0000028577,0.0000028553,0.0000028442,0.0000028345, +0.0000028332,0.0000028342,0.0000028301,0.0000028183,0.0000028133, +0.0000028161,0.0000028216,0.0000028223,0.0000028201,0.0000028189, +0.0000028204,0.0000028208,0.0000028113,0.0000027953,0.0000027834, +0.0000027797,0.0000027824,0.0000027912,0.0000028000,0.0000028047, +0.0000028074,0.0000028104,0.0000028145,0.0000028190,0.0000028232, +0.0000028278,0.0000028310,0.0000028331,0.0000028338,0.0000028322, +0.0000028278,0.0000028242,0.0000028263,0.0000028351,0.0000028424, +0.0000028431,0.0000028407,0.0000028389,0.0000028365,0.0000028218, +0.0000028013,0.0000028093,0.0000028326,0.0000028480,0.0000028614, +0.0000028774,0.0000028859,0.0000028851,0.0000028843,0.0000028888, +0.0000028958,0.0000028965,0.0000028936,0.0000028874,0.0000028796, +0.0000028753,0.0000028734,0.0000028710,0.0000028714,0.0000028762, +0.0000028823,0.0000028871,0.0000028875,0.0000028853,0.0000028764, +0.0000028625,0.0000028543,0.0000028519,0.0000028543,0.0000028693, +0.0000028904,0.0000028834,0.0000028571,0.0000028394,0.0000028487, +0.0000028766,0.0000028863,0.0000028783,0.0000028662,0.0000028625, +0.0000028654,0.0000028668,0.0000028687,0.0000028703,0.0000028649, +0.0000028554,0.0000028468,0.0000028394,0.0000028327,0.0000028299, +0.0000028322,0.0000028387,0.0000028450,0.0000028505,0.0000028557, +0.0000028578,0.0000028537,0.0000028484,0.0000028460,0.0000028481, +0.0000028522,0.0000028549,0.0000028547,0.0000028533,0.0000028513, +0.0000028489,0.0000028465,0.0000028429,0.0000028363,0.0000028267, +0.0000028172,0.0000028095,0.0000028034,0.0000027991,0.0000027957, +0.0000027942,0.0000027930,0.0000027909,0.0000027883,0.0000027877, +0.0000027902,0.0000027955,0.0000028019,0.0000028058,0.0000028042, +0.0000027966,0.0000027876,0.0000027833,0.0000027834,0.0000027837, +0.0000027842,0.0000027892,0.0000027952,0.0000028010,0.0000028108, +0.0000028181,0.0000028287,0.0000028495,0.0000028639,0.0000028655, +0.0000028625,0.0000028568,0.0000028478,0.0000028387,0.0000028331, +0.0000028299,0.0000028279,0.0000028270,0.0000028256,0.0000028220, +0.0000028160,0.0000028071,0.0000027941,0.0000027795,0.0000027674, +0.0000027642,0.0000027706,0.0000027857,0.0000028020,0.0000028124, +0.0000028174,0.0000028213,0.0000028229,0.0000028223,0.0000028169, +0.0000028062,0.0000027938,0.0000027849,0.0000027831,0.0000027876, +0.0000027956,0.0000028061,0.0000028158,0.0000028235,0.0000028302, +0.0000028366,0.0000028406,0.0000028428,0.0000028446,0.0000028453, +0.0000028447,0.0000028441,0.0000028446,0.0000028492,0.0000028551, +0.0000028569,0.0000028548,0.0000028511,0.0000028478,0.0000028437, +0.0000028379,0.0000028314,0.0000028236,0.0000028171,0.0000028138, +0.0000028111,0.0000028059,0.0000028003,0.0000027981,0.0000027996, +0.0000028003,0.0000027965,0.0000027865,0.0000027745,0.0000027694, +0.0000027762,0.0000027886,0.0000027959,0.0000028079,0.0000028270, +0.0000028394,0.0000028438,0.0000028412,0.0000028440,0.0000028473, +0.0000028518,0.0000028618,0.0000028680,0.0000028674,0.0000028627, +0.0000028595,0.0000028619,0.0000028696,0.0000028806,0.0000028893, +0.0000028855,0.0000028750,0.0000028508,0.0000028307,0.0000028281, +0.0000028257,0.0000028285,0.0000028454,0.0000028619,0.0000028690, +0.0000028682,0.0000028535,0.0000028453,0.0000028457,0.0000028456, +0.0000028412,0.0000028339,0.0000028333,0.0000028394,0.0000028427, +0.0000028402,0.0000028384,0.0000028373,0.0000028400,0.0000028431, +0.0000028414,0.0000028351,0.0000028267,0.0000028210,0.0000028190, +0.0000028155,0.0000028104,0.0000028046,0.0000027998,0.0000027975, +0.0000027952,0.0000027941,0.0000027933,0.0000027969,0.0000028041, +0.0000028109,0.0000028151,0.0000028171,0.0000028171,0.0000028106, +0.0000027973,0.0000027901,0.0000027867,0.0000027860,0.0000027968, +0.0000028055,0.0000028074,0.0000028026,0.0000027861,0.0000027712, +0.0000027642,0.0000027600,0.0000027529,0.0000027470,0.0000027457, +0.0000027478,0.0000027478,0.0000027458,0.0000027439,0.0000027373, +0.0000027254,0.0000027163,0.0000027157,0.0000027216,0.0000027267, +0.0000027278,0.0000027267,0.0000027255,0.0000027251,0.0000027258, +0.0000027269,0.0000027287,0.0000027307,0.0000027331,0.0000027354, +0.0000027360,0.0000027360,0.0000027360,0.0000027349,0.0000027320, +0.0000027282,0.0000027226,0.0000027166,0.0000027126,0.0000027111, +0.0000027115,0.0000027122,0.0000027124,0.0000027115,0.0000027092, +0.0000027067,0.0000027060,0.0000027069,0.0000027095,0.0000027114, +0.0000027119,0.0000027124,0.0000027124,0.0000027114,0.0000027090, +0.0000027069,0.0000027072,0.0000027110,0.0000027161,0.0000027195, +0.0000027194,0.0000027162,0.0000027129,0.0000027108,0.0000027087, +0.0000027028,0.0000026926,0.0000026825,0.0000026785,0.0000026810, +0.0000026870,0.0000026957,0.0000027016,0.0000027014,0.0000026979, +0.0000026956,0.0000026956,0.0000026973,0.0000027006,0.0000027056, +0.0000027097,0.0000027098,0.0000027132,0.0000027269,0.0000027485, +0.0000027645,0.0000027710,0.0000027782,0.0000027923,0.0000028169, +0.0000028343,0.0000028295,0.0000028143,0.0000028105,0.0000028136, +0.0000028123,0.0000028016,0.0000027939,0.0000027952,0.0000028008, +0.0000028094,0.0000028187,0.0000028234,0.0000028173,0.0000028088, +0.0000028000,0.0000027783,0.0000027662,0.0000027782,0.0000027937, +0.0000028086,0.0000028213,0.0000028089,0.0000028176,0.0000028455, +0.0000028570,0.0000028601,0.0000028614,0.0000028619,0.0000028664, +0.0000028731,0.0000028707,0.0000028565,0.0000028418,0.0000028285, +0.0000028069,0.0000028017,0.0000027991,0.0000027928,0.0000027916, +0.0000027957,0.0000027932,0.0000027833,0.0000027677,0.0000027632, +0.0000027652,0.0000027664,0.0000027692,0.0000027696,0.0000027690, +0.0000027674,0.0000027621,0.0000027572,0.0000027535,0.0000027487, +0.0000027471,0.0000027501,0.0000027557,0.0000027603,0.0000027597, +0.0000027524,0.0000027408,0.0000027319,0.0000027285,0.0000027301, +0.0000027318,0.0000027324,0.0000027314,0.0000027300,0.0000027285, +0.0000027280,0.0000027278,0.0000027293,0.0000027303,0.0000027318, +0.0000027334,0.0000027325,0.0000027311,0.0000027286,0.0000027271, +0.0000027264,0.0000027253,0.0000027262,0.0000027291,0.0000027300, +0.0000027316,0.0000027325,0.0000027333,0.0000027335,0.0000027334, +0.0000027318,0.0000027296,0.0000027254,0.0000027220,0.0000027206, +0.0000027203,0.0000027186,0.0000027203,0.0000027228,0.0000027258, +0.0000027251,0.0000027252,0.0000027250,0.0000027278,0.0000027304, +0.0000027326,0.0000027344,0.0000027355,0.0000027346,0.0000027346, +0.0000027367,0.0000027398,0.0000027418,0.0000027436,0.0000027430, +0.0000027388,0.0000027318,0.0000027234,0.0000027176,0.0000027148, +0.0000027129,0.0000027124,0.0000027143,0.0000027225,0.0000027392, +0.0000027627,0.0000027842,0.0000027911,0.0000027931,0.0000027986, +0.0000028057,0.0000028113,0.0000028121,0.0000028105,0.0000028136, +0.0000028239,0.0000028362,0.0000028466,0.0000028524,0.0000028547, +0.0000028534,0.0000028474,0.0000028423,0.0000028434,0.0000028489, +0.0000028536,0.0000028555,0.0000028547,0.0000028498,0.0000028381, +0.0000028265,0.0000028219,0.0000028247,0.0000028259,0.0000028268, +0.0000028313,0.0000028395,0.0000028472,0.0000028521,0.0000028539, +0.0000028498,0.0000028415,0.0000028345,0.0000028298,0.0000028262, +0.0000028220,0.0000028164,0.0000028101,0.0000028041,0.0000027997, +0.0000027978,0.0000027982,0.0000027988,0.0000027962,0.0000027888, +0.0000027790,0.0000027711,0.0000027675,0.0000027682,0.0000027712, +0.0000027728,0.0000027735,0.0000027755,0.0000027791,0.0000027838, +0.0000027894,0.0000027959,0.0000028048,0.0000028157,0.0000028279, +0.0000028396,0.0000028499,0.0000028576,0.0000028611,0.0000028602, +0.0000028600,0.0000028642,0.0000028675,0.0000028614,0.0000028356, +0.0000028104,0.0000028070,0.0000028196,0.0000028271,0.0000028256, +0.0000028235,0.0000028259,0.0000028317,0.0000028340,0.0000028314, +0.0000028267,0.0000028205,0.0000028129,0.0000028064,0.0000028039, +0.0000028064,0.0000028135,0.0000028193,0.0000028208,0.0000028162, +0.0000028065,0.0000027984,0.0000027953,0.0000027948,0.0000027960, +0.0000028004,0.0000028062,0.0000028150,0.0000028310,0.0000028523, +0.0000028719,0.0000028854,0.0000028925,0.0000028953,0.0000028960, +0.0000028961,0.0000028960,0.0000028955,0.0000028932,0.0000028884, +0.0000028841,0.0000028822,0.0000028823,0.0000028860,0.0000028924, +0.0000029009,0.0000029100,0.0000029168,0.0000029198,0.0000029204, +0.0000029209,0.0000029225,0.0000029241,0.0000029242,0.0000029216, +0.0000029155,0.0000029092,0.0000029057,0.0000029048,0.0000029026, +0.0000028963,0.0000028878,0.0000028813,0.0000028782,0.0000028779, +0.0000028803,0.0000028840,0.0000028864,0.0000028872,0.0000028884, +0.0000028908,0.0000028930,0.0000028957,0.0000028993,0.0000029009, +0.0000028997,0.0000028968,0.0000028946,0.0000028932,0.0000028907, +0.0000028855,0.0000028792,0.0000028734,0.0000028700,0.0000028707, +0.0000028773,0.0000028873,0.0000028950,0.0000028969,0.0000028950, +0.0000028915,0.0000028893,0.0000028885,0.0000028882,0.0000028890, +0.0000028919,0.0000028936,0.0000028900,0.0000028797,0.0000028672, +0.0000028563,0.0000028492,0.0000028466,0.0000028482,0.0000028506, +0.0000028508,0.0000028483,0.0000028463,0.0000028459,0.0000028483, +0.0000028542,0.0000028591,0.0000028616,0.0000028642,0.0000028685, +0.0000028735,0.0000028772,0.0000028803,0.0000028842,0.0000028873, +0.0000028892,0.0000028885,0.0000028849,0.0000028794,0.0000028739, +0.0000028717,0.0000028735,0.0000028769,0.0000028801,0.0000028810, +0.0000028763,0.0000028657,0.0000028532,0.0000028429,0.0000028339, +0.0000028256,0.0000028152,0.0000028050,0.0000028012,0.0000028038, +0.0000028117,0.0000028198,0.0000028299,0.0000028380,0.0000028409, +0.0000028434,0.0000028435,0.0000028420,0.0000028396,0.0000028385, +0.0000028378,0.0000028370,0.0000028401,0.0000028467,0.0000028508, +0.0000028516,0.0000028486,0.0000028464,0.0000028463,0.0000028410, +0.0000028353,0.0000028356,0.0000028371,0.0000028319,0.0000028202, +0.0000028166,0.0000028193,0.0000028253,0.0000028275,0.0000028246, +0.0000028198,0.0000028214,0.0000028266,0.0000028222,0.0000028071, +0.0000027924,0.0000027849,0.0000027853,0.0000027914,0.0000027988, +0.0000028041,0.0000028078,0.0000028116,0.0000028162,0.0000028208, +0.0000028250,0.0000028294,0.0000028330,0.0000028353,0.0000028359, +0.0000028343,0.0000028308,0.0000028295,0.0000028333,0.0000028399, +0.0000028450,0.0000028476,0.0000028491,0.0000028483,0.0000028387, +0.0000028182,0.0000028077,0.0000028228,0.0000028409,0.0000028540, +0.0000028684,0.0000028804,0.0000028825,0.0000028793,0.0000028801, +0.0000028873,0.0000028952,0.0000028958,0.0000028928,0.0000028848, +0.0000028737,0.0000028667,0.0000028622,0.0000028598,0.0000028620, +0.0000028693,0.0000028773,0.0000028822,0.0000028823,0.0000028792, +0.0000028714,0.0000028599,0.0000028524,0.0000028510,0.0000028589, +0.0000028824,0.0000028913,0.0000028710,0.0000028499,0.0000028441, +0.0000028688,0.0000028892,0.0000028866,0.0000028729,0.0000028652, +0.0000028670,0.0000028727,0.0000028745,0.0000028756,0.0000028744, +0.0000028655,0.0000028525,0.0000028432,0.0000028368,0.0000028305, +0.0000028252,0.0000028225,0.0000028255,0.0000028324,0.0000028402, +0.0000028469,0.0000028502,0.0000028483,0.0000028405,0.0000028354, +0.0000028360,0.0000028427,0.0000028475,0.0000028483,0.0000028485, +0.0000028492,0.0000028495,0.0000028498,0.0000028505,0.0000028505, +0.0000028483,0.0000028442,0.0000028386,0.0000028309,0.0000028229, +0.0000028155,0.0000028089,0.0000028031,0.0000027977,0.0000027928, +0.0000027898,0.0000027895,0.0000027929,0.0000027989,0.0000028045, +0.0000028059,0.0000028019,0.0000027952,0.0000027903,0.0000027893, +0.0000027900,0.0000027890,0.0000027883,0.0000027931,0.0000028000, +0.0000028090,0.0000028190,0.0000028258,0.0000028405,0.0000028591, +0.0000028657,0.0000028647,0.0000028625,0.0000028577,0.0000028492, +0.0000028403,0.0000028342,0.0000028312,0.0000028311,0.0000028318, +0.0000028312,0.0000028279,0.0000028228,0.0000028158,0.0000028062, +0.0000027948,0.0000027831,0.0000027763,0.0000027780,0.0000027900, +0.0000028039,0.0000028111,0.0000028113,0.0000028116,0.0000028138, +0.0000028186,0.0000028194,0.0000028165,0.0000028090,0.0000028021, +0.0000027985,0.0000027980,0.0000028004,0.0000028092,0.0000028193, +0.0000028286,0.0000028361,0.0000028422,0.0000028453,0.0000028467, +0.0000028480,0.0000028487,0.0000028491,0.0000028494,0.0000028494, +0.0000028516,0.0000028558,0.0000028571,0.0000028549,0.0000028507, +0.0000028465,0.0000028414,0.0000028355,0.0000028298,0.0000028235, +0.0000028187,0.0000028166,0.0000028139,0.0000028092,0.0000028057, +0.0000028056,0.0000028068,0.0000028057,0.0000027985,0.0000027859, +0.0000027722,0.0000027677,0.0000027748,0.0000027855,0.0000027920, +0.0000028077,0.0000028290,0.0000028407,0.0000028453,0.0000028455, +0.0000028502,0.0000028539,0.0000028578,0.0000028658,0.0000028703, +0.0000028686,0.0000028640,0.0000028599,0.0000028606,0.0000028683, +0.0000028808,0.0000028900,0.0000028844,0.0000028747,0.0000028503, +0.0000028330,0.0000028326,0.0000028308,0.0000028336,0.0000028501, +0.0000028674,0.0000028745,0.0000028720,0.0000028560,0.0000028444, +0.0000028409,0.0000028402,0.0000028386,0.0000028307,0.0000028297, +0.0000028333,0.0000028349,0.0000028313,0.0000028310,0.0000028290, +0.0000028302,0.0000028313,0.0000028289,0.0000028230,0.0000028175, +0.0000028154,0.0000028165,0.0000028156,0.0000028122,0.0000028085, +0.0000028050,0.0000028019,0.0000028001,0.0000027969,0.0000027943, +0.0000027967,0.0000028022,0.0000028071,0.0000028105,0.0000028111, +0.0000028061,0.0000027963,0.0000027888,0.0000027851,0.0000027822, +0.0000027864,0.0000027967,0.0000028024,0.0000028026,0.0000027925, +0.0000027771,0.0000027663,0.0000027573,0.0000027489,0.0000027420, +0.0000027400,0.0000027433,0.0000027456,0.0000027458,0.0000027443, +0.0000027420,0.0000027311,0.0000027173,0.0000027134,0.0000027174, +0.0000027246,0.0000027276,0.0000027274,0.0000027290,0.0000027321, +0.0000027374,0.0000027420,0.0000027456,0.0000027475,0.0000027483, +0.0000027479,0.0000027462,0.0000027443,0.0000027416,0.0000027395, +0.0000027363,0.0000027330,0.0000027299,0.0000027252,0.0000027194, +0.0000027143,0.0000027111,0.0000027101,0.0000027098,0.0000027100, +0.0000027101,0.0000027086,0.0000027064,0.0000027045,0.0000027042, +0.0000027056,0.0000027090,0.0000027116,0.0000027130,0.0000027138, +0.0000027136,0.0000027123,0.0000027097,0.0000027071,0.0000027067, +0.0000027089,0.0000027132,0.0000027174,0.0000027188,0.0000027177, +0.0000027160,0.0000027162,0.0000027169,0.0000027134,0.0000027045, +0.0000026943,0.0000026892,0.0000026879,0.0000026878,0.0000026913, +0.0000026952,0.0000026959,0.0000026936,0.0000026891,0.0000026857, +0.0000026843,0.0000026868,0.0000026952,0.0000027036,0.0000027067, +0.0000027106,0.0000027231,0.0000027444,0.0000027607,0.0000027691, +0.0000027788,0.0000027984,0.0000028255,0.0000028334,0.0000028225, +0.0000028129,0.0000028144,0.0000028135,0.0000028009,0.0000027915, +0.0000027933,0.0000028012,0.0000028097,0.0000028176,0.0000028224, +0.0000028192,0.0000028079,0.0000028025,0.0000027863,0.0000027682, +0.0000027676,0.0000027824,0.0000027971,0.0000028132,0.0000028133, +0.0000028022,0.0000028173,0.0000028439,0.0000028566,0.0000028613, +0.0000028625,0.0000028620,0.0000028662,0.0000028710,0.0000028655, +0.0000028509,0.0000028391,0.0000028251,0.0000028057,0.0000028023, +0.0000027985,0.0000027916,0.0000027912,0.0000027952,0.0000027916, +0.0000027792,0.0000027647,0.0000027635,0.0000027664,0.0000027691, +0.0000027719,0.0000027708,0.0000027692,0.0000027660,0.0000027604, +0.0000027552,0.0000027492,0.0000027432,0.0000027423,0.0000027460, +0.0000027524,0.0000027554,0.0000027521,0.0000027411,0.0000027296, +0.0000027235,0.0000027231,0.0000027263,0.0000027282,0.0000027281, +0.0000027261,0.0000027249,0.0000027248,0.0000027250,0.0000027263, +0.0000027279,0.0000027294,0.0000027316,0.0000027338,0.0000027331, +0.0000027311,0.0000027280,0.0000027249,0.0000027231,0.0000027205, +0.0000027206,0.0000027226,0.0000027230,0.0000027254,0.0000027279, +0.0000027304,0.0000027324,0.0000027339,0.0000027337,0.0000027328, +0.0000027289,0.0000027260,0.0000027240,0.0000027232,0.0000027217, +0.0000027229,0.0000027244,0.0000027265,0.0000027252,0.0000027248, +0.0000027234,0.0000027258,0.0000027277,0.0000027297,0.0000027318, +0.0000027337,0.0000027336,0.0000027324,0.0000027322,0.0000027334, +0.0000027348,0.0000027371,0.0000027385,0.0000027374,0.0000027333, +0.0000027248,0.0000027162,0.0000027101,0.0000027057,0.0000027033, +0.0000027011,0.0000027008,0.0000027078,0.0000027224,0.0000027443, +0.0000027700,0.0000027881,0.0000027975,0.0000028048,0.0000028133, +0.0000028176,0.0000028165,0.0000028175,0.0000028258,0.0000028359, +0.0000028439,0.0000028490,0.0000028488,0.0000028455,0.0000028389, +0.0000028338,0.0000028354,0.0000028432,0.0000028489,0.0000028495, +0.0000028472,0.0000028422,0.0000028316,0.0000028211,0.0000028196, +0.0000028251,0.0000028283,0.0000028308,0.0000028363,0.0000028436, +0.0000028491,0.0000028524,0.0000028536,0.0000028498,0.0000028429, +0.0000028364,0.0000028315,0.0000028269,0.0000028224,0.0000028170, +0.0000028111,0.0000028064,0.0000028031,0.0000028031,0.0000028052, +0.0000028068,0.0000028055,0.0000027987,0.0000027885,0.0000027804, +0.0000027768,0.0000027759,0.0000027763,0.0000027756,0.0000027733, +0.0000027712,0.0000027715,0.0000027751,0.0000027815,0.0000027889, +0.0000027973,0.0000028076,0.0000028197,0.0000028320,0.0000028434, +0.0000028529,0.0000028602,0.0000028634,0.0000028629,0.0000028633, +0.0000028666,0.0000028657,0.0000028451,0.0000028178,0.0000028079, +0.0000028162,0.0000028304,0.0000028336,0.0000028313,0.0000028298, +0.0000028316,0.0000028327,0.0000028299,0.0000028256,0.0000028211, +0.0000028142,0.0000028066,0.0000028028,0.0000028042,0.0000028098, +0.0000028163,0.0000028194,0.0000028174,0.0000028098,0.0000028005, +0.0000027943,0.0000027927,0.0000027932,0.0000027959,0.0000028013, +0.0000028103,0.0000028252,0.0000028452,0.0000028648,0.0000028800, +0.0000028904,0.0000028969,0.0000028992,0.0000028989,0.0000028979, +0.0000028970,0.0000028962,0.0000028939,0.0000028900,0.0000028865, +0.0000028841,0.0000028833,0.0000028845,0.0000028877,0.0000028933, +0.0000029014,0.0000029093,0.0000029141,0.0000029153,0.0000029152, +0.0000029158,0.0000029179,0.0000029189,0.0000029173,0.0000029116, +0.0000029059,0.0000029042,0.0000029051,0.0000029058,0.0000029026, +0.0000028954,0.0000028881,0.0000028834,0.0000028817,0.0000028824, +0.0000028837,0.0000028845,0.0000028845,0.0000028846,0.0000028856, +0.0000028880,0.0000028919,0.0000028971,0.0000029008,0.0000029023, +0.0000029022,0.0000029017,0.0000029008,0.0000028973,0.0000028912, +0.0000028831,0.0000028749,0.0000028700,0.0000028708,0.0000028780, +0.0000028882,0.0000028965,0.0000028998,0.0000028987,0.0000028951, +0.0000028917,0.0000028886,0.0000028865,0.0000028875,0.0000028908, +0.0000028928,0.0000028903,0.0000028813,0.0000028693,0.0000028590, +0.0000028528,0.0000028522,0.0000028551,0.0000028589,0.0000028609, +0.0000028600,0.0000028578,0.0000028582,0.0000028598,0.0000028622, +0.0000028644,0.0000028654,0.0000028662,0.0000028693,0.0000028732, +0.0000028769,0.0000028792,0.0000028806,0.0000028825,0.0000028834, +0.0000028844,0.0000028831,0.0000028801,0.0000028742,0.0000028691, +0.0000028690,0.0000028727,0.0000028780,0.0000028816,0.0000028806, +0.0000028721,0.0000028607,0.0000028496,0.0000028409,0.0000028331, +0.0000028246,0.0000028140,0.0000028070,0.0000028083,0.0000028169, +0.0000028271,0.0000028350,0.0000028428,0.0000028477,0.0000028474, +0.0000028465,0.0000028455,0.0000028433,0.0000028400,0.0000028379, +0.0000028366,0.0000028367,0.0000028416,0.0000028482,0.0000028513, +0.0000028506,0.0000028437,0.0000028374,0.0000028377,0.0000028365, +0.0000028350,0.0000028370,0.0000028390,0.0000028328,0.0000028219, +0.0000028191,0.0000028218,0.0000028269,0.0000028308,0.0000028298, +0.0000028243,0.0000028249,0.0000028315,0.0000028331,0.0000028229, +0.0000028081,0.0000027973,0.0000027938,0.0000027960,0.0000028006, +0.0000028054,0.0000028091,0.0000028134,0.0000028185,0.0000028240, +0.0000028292,0.0000028332,0.0000028361,0.0000028372,0.0000028364, +0.0000028345,0.0000028336,0.0000028357,0.0000028409,0.0000028462, +0.0000028517,0.0000028570,0.0000028589,0.0000028530,0.0000028352, +0.0000028169,0.0000028189,0.0000028350,0.0000028488,0.0000028612, +0.0000028751,0.0000028812,0.0000028782,0.0000028748,0.0000028769, +0.0000028858,0.0000028936,0.0000028944,0.0000028917,0.0000028823, +0.0000028677,0.0000028569,0.0000028511,0.0000028502,0.0000028549, +0.0000028632,0.0000028721,0.0000028774,0.0000028769,0.0000028738, +0.0000028691,0.0000028603,0.0000028525,0.0000028522,0.0000028690, +0.0000028907,0.0000028851,0.0000028603,0.0000028479,0.0000028559, +0.0000028858,0.0000028940,0.0000028832,0.0000028685,0.0000028657, +0.0000028718,0.0000028779,0.0000028790,0.0000028791,0.0000028754, +0.0000028640,0.0000028507,0.0000028409,0.0000028333,0.0000028270, +0.0000028235,0.0000028212,0.0000028182,0.0000028167,0.0000028228, +0.0000028331,0.0000028397,0.0000028417,0.0000028352,0.0000028238, +0.0000028187,0.0000028227,0.0000028308,0.0000028353,0.0000028400, +0.0000028463,0.0000028511,0.0000028519,0.0000028512,0.0000028503, +0.0000028501,0.0000028510,0.0000028525,0.0000028516,0.0000028471, +0.0000028405,0.0000028322,0.0000028234,0.0000028143,0.0000028045, +0.0000027949,0.0000027888,0.0000027877,0.0000027907,0.0000027950, +0.0000027975,0.0000027973,0.0000027954,0.0000027946,0.0000027953, +0.0000027964,0.0000027959,0.0000027928,0.0000027933,0.0000028012, +0.0000028111,0.0000028207,0.0000028269,0.0000028351,0.0000028522, +0.0000028632,0.0000028640,0.0000028637,0.0000028630,0.0000028585, +0.0000028508,0.0000028438,0.0000028388,0.0000028356,0.0000028352, +0.0000028358,0.0000028348,0.0000028318,0.0000028282,0.0000028237, +0.0000028173,0.0000028084,0.0000027982,0.0000027914,0.0000027914, +0.0000027992,0.0000028099,0.0000028146,0.0000028120,0.0000028063, +0.0000028036,0.0000028066,0.0000028129,0.0000028162,0.0000028171, +0.0000028172,0.0000028175,0.0000028167,0.0000028153,0.0000028177, +0.0000028242,0.0000028322,0.0000028392,0.0000028448,0.0000028485, +0.0000028503,0.0000028515,0.0000028526,0.0000028532,0.0000028525, +0.0000028501,0.0000028499,0.0000028528,0.0000028558,0.0000028547, +0.0000028506,0.0000028460,0.0000028404,0.0000028347,0.0000028302, +0.0000028261,0.0000028238,0.0000028237,0.0000028228,0.0000028206, +0.0000028189,0.0000028177,0.0000028158,0.0000028118,0.0000028034, +0.0000027891,0.0000027726,0.0000027672,0.0000027746,0.0000027855, +0.0000027928,0.0000028117,0.0000028342,0.0000028452,0.0000028498, +0.0000028516,0.0000028577,0.0000028629,0.0000028672,0.0000028737, +0.0000028751,0.0000028712,0.0000028648,0.0000028585,0.0000028581, +0.0000028663,0.0000028799,0.0000028901,0.0000028851,0.0000028763, +0.0000028529,0.0000028373,0.0000028377,0.0000028359,0.0000028379, +0.0000028546,0.0000028733,0.0000028809,0.0000028772,0.0000028611, +0.0000028466,0.0000028386,0.0000028357,0.0000028348,0.0000028307, +0.0000028290,0.0000028301,0.0000028289,0.0000028243,0.0000028239, +0.0000028214,0.0000028206,0.0000028197,0.0000028151,0.0000028081, +0.0000028032,0.0000028029,0.0000028071,0.0000028092,0.0000028086, +0.0000028069,0.0000028051,0.0000028028,0.0000028008,0.0000027970, +0.0000027934,0.0000027940,0.0000027973,0.0000027997,0.0000028009, +0.0000027973,0.0000027904,0.0000027850,0.0000027843,0.0000027811, +0.0000027818,0.0000027912,0.0000027975,0.0000027993,0.0000027929, +0.0000027783,0.0000027660,0.0000027574,0.0000027475,0.0000027386, +0.0000027368,0.0000027398,0.0000027459,0.0000027487,0.0000027480, +0.0000027447,0.0000027368,0.0000027262,0.0000027196,0.0000027198, +0.0000027232,0.0000027265,0.0000027282,0.0000027313,0.0000027368, +0.0000027434,0.0000027502,0.0000027563,0.0000027592,0.0000027607, +0.0000027591,0.0000027554,0.0000027497,0.0000027431,0.0000027383, +0.0000027356,0.0000027335,0.0000027323,0.0000027322,0.0000027319, +0.0000027297,0.0000027260,0.0000027230,0.0000027203,0.0000027185, +0.0000027166,0.0000027149,0.0000027131,0.0000027104,0.0000027072, +0.0000027051,0.0000027051,0.0000027075,0.0000027115,0.0000027147, +0.0000027166,0.0000027182,0.0000027192,0.0000027191,0.0000027169, +0.0000027137,0.0000027112,0.0000027105,0.0000027126,0.0000027145, +0.0000027157,0.0000027156,0.0000027161,0.0000027191,0.0000027217, +0.0000027198,0.0000027134,0.0000027057,0.0000027021,0.0000026992, +0.0000026946,0.0000026907,0.0000026891,0.0000026899,0.0000026888, +0.0000026826,0.0000026761,0.0000026722,0.0000026755,0.0000026885, +0.0000027005,0.0000027048,0.0000027075,0.0000027204,0.0000027427, +0.0000027587,0.0000027683,0.0000027815,0.0000028080,0.0000028317, +0.0000028297,0.0000028177,0.0000028160,0.0000028163,0.0000028034, +0.0000027912,0.0000027919,0.0000028012,0.0000028095,0.0000028173, +0.0000028221,0.0000028198,0.0000028074,0.0000027995,0.0000027926, +0.0000027737,0.0000027639,0.0000027711,0.0000027865,0.0000027994, +0.0000028137,0.0000028040,0.0000027979,0.0000028164,0.0000028419, +0.0000028563,0.0000028625,0.0000028627,0.0000028609,0.0000028647, +0.0000028676,0.0000028602,0.0000028466,0.0000028361,0.0000028210, +0.0000028058,0.0000028031,0.0000027982,0.0000027917,0.0000027924, +0.0000027951,0.0000027900,0.0000027741,0.0000027617,0.0000027638, +0.0000027679,0.0000027719,0.0000027729,0.0000027707,0.0000027689, +0.0000027646,0.0000027576,0.0000027505,0.0000027422,0.0000027372, +0.0000027378,0.0000027421,0.0000027482,0.0000027489,0.0000027424, +0.0000027301,0.0000027212,0.0000027180,0.0000027197,0.0000027223, +0.0000027226,0.0000027207,0.0000027185,0.0000027190,0.0000027209, +0.0000027225,0.0000027247,0.0000027264,0.0000027280,0.0000027307, +0.0000027330,0.0000027327,0.0000027311,0.0000027291,0.0000027268, +0.0000027255,0.0000027234,0.0000027229,0.0000027231,0.0000027229, +0.0000027235,0.0000027241,0.0000027247,0.0000027258,0.0000027272, +0.0000027284,0.0000027293,0.0000027280,0.0000027269,0.0000027267, +0.0000027282,0.0000027288,0.0000027309,0.0000027325,0.0000027330, +0.0000027297,0.0000027280,0.0000027239,0.0000027240,0.0000027238, +0.0000027241,0.0000027245,0.0000027266,0.0000027278,0.0000027272, +0.0000027278,0.0000027289,0.0000027296,0.0000027306,0.0000027326, +0.0000027327,0.0000027313,0.0000027261,0.0000027182,0.0000027096, +0.0000027021,0.0000026981,0.0000026961,0.0000026949,0.0000026939, +0.0000026960,0.0000027073,0.0000027266,0.0000027558,0.0000027855, +0.0000028020,0.0000028109,0.0000028176,0.0000028209,0.0000028222, +0.0000028280,0.0000028356,0.0000028412,0.0000028444,0.0000028432, +0.0000028370,0.0000028297,0.0000028251,0.0000028276,0.0000028367, +0.0000028439,0.0000028443,0.0000028405,0.0000028349,0.0000028257, +0.0000028165,0.0000028176,0.0000028254,0.0000028314,0.0000028348, +0.0000028405,0.0000028462,0.0000028499,0.0000028515,0.0000028515, +0.0000028486,0.0000028438,0.0000028392,0.0000028344,0.0000028295, +0.0000028245,0.0000028184,0.0000028128,0.0000028090,0.0000028088, +0.0000028118,0.0000028157,0.0000028166,0.0000028140,0.0000028073, +0.0000027987,0.0000027920,0.0000027894,0.0000027889,0.0000027886, +0.0000027865,0.0000027811,0.0000027746,0.0000027707,0.0000027704, +0.0000027746,0.0000027819,0.0000027906,0.0000028006,0.0000028123, +0.0000028248,0.0000028363,0.0000028469,0.0000028565,0.0000028636, +0.0000028654,0.0000028645,0.0000028653,0.0000028660,0.0000028509, +0.0000028237,0.0000028100,0.0000028147,0.0000028307,0.0000028399, +0.0000028397,0.0000028365,0.0000028350,0.0000028336,0.0000028298, +0.0000028253,0.0000028222,0.0000028166,0.0000028073,0.0000028009, +0.0000028011,0.0000028062,0.0000028121,0.0000028156,0.0000028148, +0.0000028098,0.0000028026,0.0000027960,0.0000027918,0.0000027913, +0.0000027928,0.0000027970,0.0000028065,0.0000028219,0.0000028390, +0.0000028547,0.0000028683,0.0000028807,0.0000028911,0.0000028979, +0.0000029002,0.0000028998,0.0000028985,0.0000028973,0.0000028964, +0.0000028950,0.0000028930,0.0000028908,0.0000028882,0.0000028859, +0.0000028838,0.0000028831,0.0000028846,0.0000028895,0.0000028969, +0.0000029034,0.0000029066,0.0000029071,0.0000029076,0.0000029102, +0.0000029125,0.0000029119,0.0000029078,0.0000029026,0.0000029008, +0.0000029023,0.0000029048,0.0000029041,0.0000028997,0.0000028932, +0.0000028876,0.0000028845,0.0000028839,0.0000028835,0.0000028824, +0.0000028816,0.0000028815,0.0000028816,0.0000028829,0.0000028864, +0.0000028923,0.0000028989,0.0000029040,0.0000029069,0.0000029080, +0.0000029076,0.0000029038,0.0000028971,0.0000028879,0.0000028783, +0.0000028722,0.0000028725,0.0000028792,0.0000028890,0.0000028978, +0.0000029024,0.0000029024,0.0000028991,0.0000028944,0.0000028898, +0.0000028868,0.0000028872,0.0000028905,0.0000028931,0.0000028919, +0.0000028847,0.0000028737,0.0000028635,0.0000028589,0.0000028602, +0.0000028651,0.0000028689,0.0000028708,0.0000028711,0.0000028701, +0.0000028687,0.0000028700,0.0000028708,0.0000028703,0.0000028689, +0.0000028686,0.0000028700,0.0000028729,0.0000028761,0.0000028787, +0.0000028797,0.0000028797,0.0000028798,0.0000028793,0.0000028789, +0.0000028769,0.0000028727,0.0000028671,0.0000028639,0.0000028652, +0.0000028693,0.0000028740,0.0000028754,0.0000028715,0.0000028632, +0.0000028549,0.0000028481,0.0000028434,0.0000028381,0.0000028302, +0.0000028215,0.0000028196,0.0000028259,0.0000028374,0.0000028477, +0.0000028541,0.0000028578,0.0000028582,0.0000028546,0.0000028522, +0.0000028520,0.0000028504,0.0000028472,0.0000028445,0.0000028421, +0.0000028411,0.0000028448,0.0000028497,0.0000028515,0.0000028498, +0.0000028414,0.0000028327,0.0000028304,0.0000028309,0.0000028324, +0.0000028366,0.0000028391,0.0000028329,0.0000028246,0.0000028229, +0.0000028254,0.0000028285,0.0000028333,0.0000028352,0.0000028314, +0.0000028311,0.0000028372,0.0000028418,0.0000028378,0.0000028273, +0.0000028160,0.0000028075,0.0000028047,0.0000028064,0.0000028091, +0.0000028112,0.0000028150,0.0000028206,0.0000028278,0.0000028340, +0.0000028373,0.0000028384,0.0000028377,0.0000028359,0.0000028350, +0.0000028374,0.0000028430,0.0000028503,0.0000028577,0.0000028643, +0.0000028678,0.0000028643,0.0000028505,0.0000028309,0.0000028230, +0.0000028323,0.0000028446,0.0000028564,0.0000028688,0.0000028797, +0.0000028808,0.0000028742,0.0000028715,0.0000028747,0.0000028838, +0.0000028912,0.0000028929,0.0000028904,0.0000028804,0.0000028625, +0.0000028474,0.0000028414,0.0000028432,0.0000028499,0.0000028582, +0.0000028671,0.0000028735,0.0000028728,0.0000028705,0.0000028688, +0.0000028616,0.0000028534,0.0000028559,0.0000028786,0.0000028916, +0.0000028751,0.0000028537,0.0000028481,0.0000028696,0.0000028972, +0.0000028963,0.0000028784,0.0000028663,0.0000028677,0.0000028755, +0.0000028804,0.0000028799,0.0000028793,0.0000028734,0.0000028610, +0.0000028498,0.0000028413,0.0000028327,0.0000028244,0.0000028197, +0.0000028193,0.0000028181,0.0000028108,0.0000028056,0.0000028109, +0.0000028235,0.0000028324,0.0000028326,0.0000028225,0.0000028073, +0.0000028019,0.0000028069,0.0000028146,0.0000028246,0.0000028388, +0.0000028495,0.0000028550,0.0000028558,0.0000028535,0.0000028498, +0.0000028476,0.0000028485,0.0000028510,0.0000028515,0.0000028509, +0.0000028476,0.0000028421,0.0000028348,0.0000028261,0.0000028151, +0.0000028031,0.0000027932,0.0000027891,0.0000027882,0.0000027884, +0.0000027897,0.0000027926,0.0000027966,0.0000028009,0.0000028039, +0.0000028036,0.0000027994,0.0000027972,0.0000028048,0.0000028165, +0.0000028252,0.0000028301,0.0000028342,0.0000028462,0.0000028588, +0.0000028616,0.0000028622,0.0000028632,0.0000028615,0.0000028557, +0.0000028498,0.0000028462,0.0000028441,0.0000028421,0.0000028410, +0.0000028404,0.0000028384,0.0000028356,0.0000028332,0.0000028305, +0.0000028259,0.0000028191,0.0000028121,0.0000028079,0.0000028075, +0.0000028115,0.0000028176,0.0000028203,0.0000028169,0.0000028083, +0.0000028025,0.0000028007,0.0000028040,0.0000028092,0.0000028161, +0.0000028216,0.0000028287,0.0000028326,0.0000028322,0.0000028319, +0.0000028348,0.0000028402,0.0000028451,0.0000028498,0.0000028533, +0.0000028543,0.0000028542,0.0000028544,0.0000028542,0.0000028526, +0.0000028480,0.0000028457,0.0000028485,0.0000028530,0.0000028535, +0.0000028503,0.0000028458,0.0000028401,0.0000028359,0.0000028338, +0.0000028324,0.0000028329,0.0000028354,0.0000028369,0.0000028363, +0.0000028336,0.0000028289,0.0000028232,0.0000028164,0.0000028092, +0.0000027967,0.0000027787,0.0000027703,0.0000027769,0.0000027879, +0.0000027981,0.0000028201,0.0000028414,0.0000028501,0.0000028542, +0.0000028570,0.0000028642,0.0000028724,0.0000028782,0.0000028835, +0.0000028840,0.0000028770,0.0000028678,0.0000028579,0.0000028565, +0.0000028635,0.0000028778,0.0000028886,0.0000028857,0.0000028783, +0.0000028567,0.0000028421,0.0000028424,0.0000028397,0.0000028405, +0.0000028583,0.0000028787,0.0000028879,0.0000028846,0.0000028695, +0.0000028531,0.0000028395,0.0000028336,0.0000028309,0.0000028304, +0.0000028292,0.0000028290,0.0000028250,0.0000028203,0.0000028183, +0.0000028157,0.0000028123,0.0000028101,0.0000028036,0.0000027957, +0.0000027913,0.0000027910,0.0000027947,0.0000027964,0.0000027960, +0.0000027953,0.0000027952,0.0000027937,0.0000027909,0.0000027877, +0.0000027837,0.0000027837,0.0000027850,0.0000027861,0.0000027854, +0.0000027835,0.0000027821,0.0000027817,0.0000027795,0.0000027800, +0.0000027884,0.0000027957,0.0000027974,0.0000027933,0.0000027791, +0.0000027644,0.0000027567,0.0000027494,0.0000027403,0.0000027359, +0.0000027377,0.0000027438,0.0000027491,0.0000027531,0.0000027531, +0.0000027455,0.0000027360,0.0000027300,0.0000027319,0.0000027371, +0.0000027383,0.0000027376,0.0000027390,0.0000027437,0.0000027512, +0.0000027590,0.0000027640,0.0000027696,0.0000027728,0.0000027727, +0.0000027700,0.0000027642,0.0000027567,0.0000027487,0.0000027436, +0.0000027423,0.0000027435,0.0000027457,0.0000027479,0.0000027495, +0.0000027493,0.0000027468,0.0000027429,0.0000027388,0.0000027348, +0.0000027312,0.0000027272,0.0000027234,0.0000027199,0.0000027157, +0.0000027109,0.0000027075,0.0000027073,0.0000027106,0.0000027153, +0.0000027184,0.0000027207,0.0000027232,0.0000027267,0.0000027287, +0.0000027291,0.0000027271,0.0000027227,0.0000027187,0.0000027164, +0.0000027154,0.0000027147,0.0000027140,0.0000027147,0.0000027191, +0.0000027224,0.0000027222,0.0000027178,0.0000027138,0.0000027131, +0.0000027109,0.0000027042,0.0000026933,0.0000026857,0.0000026844, +0.0000026831,0.0000026755,0.0000026664,0.0000026620,0.0000026691, +0.0000026876,0.0000027003,0.0000027021,0.0000027041,0.0000027205, +0.0000027443,0.0000027588,0.0000027688,0.0000027878,0.0000028188, +0.0000028316,0.0000028230,0.0000028173,0.0000028189,0.0000028104, +0.0000027932,0.0000027916,0.0000027989,0.0000028078,0.0000028159, +0.0000028210,0.0000028209,0.0000028079,0.0000027954,0.0000027926, +0.0000027799,0.0000027660,0.0000027634,0.0000027739,0.0000027908, +0.0000028021,0.0000028108,0.0000027955,0.0000027944,0.0000028148, +0.0000028401,0.0000028558,0.0000028627,0.0000028618,0.0000028587, +0.0000028621,0.0000028641,0.0000028553,0.0000028430,0.0000028326, +0.0000028169,0.0000028070,0.0000028040,0.0000027981,0.0000027928, +0.0000027947,0.0000027955,0.0000027877,0.0000027680,0.0000027589, +0.0000027642,0.0000027694,0.0000027732,0.0000027720,0.0000027700, +0.0000027686,0.0000027615,0.0000027517,0.0000027431,0.0000027357, +0.0000027336,0.0000027356,0.0000027395,0.0000027434,0.0000027409, +0.0000027324,0.0000027230,0.0000027179,0.0000027167,0.0000027177, +0.0000027171,0.0000027147,0.0000027119,0.0000027111,0.0000027130, +0.0000027154,0.0000027165,0.0000027171,0.0000027182,0.0000027199, +0.0000027228,0.0000027254,0.0000027262,0.0000027255,0.0000027248, +0.0000027237,0.0000027232,0.0000027237,0.0000027241,0.0000027247, +0.0000027249,0.0000027246,0.0000027238,0.0000027229,0.0000027218, +0.0000027205,0.0000027195,0.0000027188,0.0000027171,0.0000027173, +0.0000027189,0.0000027219,0.0000027244,0.0000027281,0.0000027311, +0.0000027331,0.0000027311,0.0000027320,0.0000027288,0.0000027289, +0.0000027279,0.0000027265,0.0000027244,0.0000027232,0.0000027223, +0.0000027200,0.0000027194,0.0000027205,0.0000027216,0.0000027221, +0.0000027244,0.0000027248,0.0000027241,0.0000027216,0.0000027171, +0.0000027100,0.0000027003,0.0000026917,0.0000026875,0.0000026884, +0.0000026906,0.0000026903,0.0000026892,0.0000026948,0.0000027123, +0.0000027445,0.0000027814,0.0000028046,0.0000028136,0.0000028193, +0.0000028243,0.0000028299,0.0000028362,0.0000028399,0.0000028406, +0.0000028381,0.0000028305,0.0000028219,0.0000028163,0.0000028194, +0.0000028303,0.0000028375,0.0000028377,0.0000028341,0.0000028287, +0.0000028207,0.0000028125,0.0000028151,0.0000028245,0.0000028342, +0.0000028387,0.0000028444,0.0000028491,0.0000028508,0.0000028501, +0.0000028478,0.0000028455,0.0000028436,0.0000028412,0.0000028379, +0.0000028331,0.0000028281,0.0000028215,0.0000028153,0.0000028123, +0.0000028137,0.0000028188,0.0000028248,0.0000028271,0.0000028250, +0.0000028184,0.0000028103,0.0000028047,0.0000028020,0.0000028008, +0.0000027992,0.0000027964,0.0000027905,0.0000027822,0.0000027747, +0.0000027705,0.0000027707,0.0000027749,0.0000027826,0.0000027932, +0.0000028054,0.0000028183,0.0000028304,0.0000028418,0.0000028526, +0.0000028617,0.0000028666,0.0000028675,0.0000028672,0.0000028661, +0.0000028525,0.0000028268,0.0000028117,0.0000028137,0.0000028304, +0.0000028448,0.0000028466,0.0000028441,0.0000028408,0.0000028373, +0.0000028311,0.0000028256,0.0000028232,0.0000028197,0.0000028102, +0.0000028009,0.0000027984,0.0000028024,0.0000028083,0.0000028114, +0.0000028108,0.0000028062,0.0000028003,0.0000027954,0.0000027918, +0.0000027900,0.0000027901,0.0000027925,0.0000028016,0.0000028178, +0.0000028350,0.0000028473,0.0000028568,0.0000028673,0.0000028783, +0.0000028885,0.0000028957,0.0000028990,0.0000028995,0.0000028985, +0.0000028976,0.0000028968,0.0000028958,0.0000028944,0.0000028929, +0.0000028915,0.0000028883,0.0000028837,0.0000028794,0.0000028776, +0.0000028784,0.0000028824,0.0000028881,0.0000028932,0.0000028956, +0.0000028970,0.0000028998,0.0000029034,0.0000029045,0.0000029032, +0.0000028994,0.0000028966,0.0000028972,0.0000029002,0.0000029020, +0.0000029010,0.0000028975,0.0000028928,0.0000028891,0.0000028875, +0.0000028857,0.0000028829,0.0000028814,0.0000028819,0.0000028825, +0.0000028827,0.0000028842,0.0000028893,0.0000028973,0.0000029056, +0.0000029111,0.0000029126,0.0000029123,0.0000029088,0.0000029022, +0.0000028931,0.0000028833,0.0000028765,0.0000028757,0.0000028812, +0.0000028905,0.0000028993,0.0000029049,0.0000029055,0.0000029022, +0.0000028967,0.0000028909,0.0000028869,0.0000028870,0.0000028905, +0.0000028936,0.0000028938,0.0000028885,0.0000028785,0.0000028689, +0.0000028653,0.0000028678,0.0000028741,0.0000028787,0.0000028798, +0.0000028790,0.0000028784,0.0000028771,0.0000028753,0.0000028755, +0.0000028742,0.0000028718,0.0000028703,0.0000028707,0.0000028722, +0.0000028745,0.0000028773,0.0000028792,0.0000028792,0.0000028782, +0.0000028763,0.0000028744,0.0000028721,0.0000028690,0.0000028657, +0.0000028620,0.0000028599,0.0000028599,0.0000028618,0.0000028639, +0.0000028640,0.0000028611,0.0000028578,0.0000028540,0.0000028527, +0.0000028523,0.0000028491,0.0000028411,0.0000028345,0.0000028356, +0.0000028444,0.0000028551,0.0000028632,0.0000028657,0.0000028648, +0.0000028618,0.0000028569,0.0000028553,0.0000028573,0.0000028587, +0.0000028576,0.0000028560,0.0000028534,0.0000028507,0.0000028507, +0.0000028519,0.0000028521,0.0000028494,0.0000028408,0.0000028307, +0.0000028251,0.0000028248,0.0000028288,0.0000028353,0.0000028378, +0.0000028329,0.0000028286,0.0000028288,0.0000028305,0.0000028322, +0.0000028366,0.0000028402,0.0000028399,0.0000028400,0.0000028434, +0.0000028476,0.0000028486,0.0000028453,0.0000028363,0.0000028243, +0.0000028168,0.0000028150,0.0000028148,0.0000028156,0.0000028196, +0.0000028259,0.0000028330,0.0000028377,0.0000028389,0.0000028384, +0.0000028366,0.0000028358,0.0000028382,0.0000028454,0.0000028547, +0.0000028643,0.0000028728,0.0000028767,0.0000028729,0.0000028611, +0.0000028447,0.0000028327,0.0000028340,0.0000028425,0.0000028521, +0.0000028640,0.0000028754,0.0000028818,0.0000028792,0.0000028711, +0.0000028692,0.0000028732,0.0000028817,0.0000028887,0.0000028916, +0.0000028895,0.0000028794,0.0000028590,0.0000028398,0.0000028339, +0.0000028384,0.0000028471,0.0000028547,0.0000028634,0.0000028710, +0.0000028711,0.0000028695,0.0000028691,0.0000028637,0.0000028558, +0.0000028614,0.0000028844,0.0000028892,0.0000028658,0.0000028502, +0.0000028501,0.0000028819,0.0000029049,0.0000028987,0.0000028756, +0.0000028662,0.0000028698,0.0000028778,0.0000028807,0.0000028787, +0.0000028760,0.0000028691,0.0000028563,0.0000028467,0.0000028403, +0.0000028334,0.0000028255,0.0000028182,0.0000028147,0.0000028135, +0.0000028098,0.0000028013,0.0000027944,0.0000028005,0.0000028164, +0.0000028256,0.0000028245,0.0000028116,0.0000027939,0.0000027880, +0.0000027925,0.0000028013,0.0000028175,0.0000028325,0.0000028422, +0.0000028488,0.0000028528,0.0000028526,0.0000028503,0.0000028480, +0.0000028466,0.0000028471,0.0000028485,0.0000028487,0.0000028486, +0.0000028463,0.0000028413,0.0000028338,0.0000028241,0.0000028134, +0.0000028035,0.0000027963,0.0000027925,0.0000027921,0.0000027957, +0.0000028022,0.0000028090,0.0000028129,0.0000028114,0.0000028061, +0.0000028045,0.0000028127,0.0000028243,0.0000028314,0.0000028344, +0.0000028361,0.0000028436,0.0000028545,0.0000028588,0.0000028597, +0.0000028611,0.0000028605,0.0000028564,0.0000028508,0.0000028471, +0.0000028461,0.0000028465,0.0000028462,0.0000028456,0.0000028445, +0.0000028421,0.0000028397,0.0000028384,0.0000028370,0.0000028335, +0.0000028282,0.0000028240,0.0000028224,0.0000028226,0.0000028239, +0.0000028251,0.0000028247,0.0000028211,0.0000028150,0.0000028099, +0.0000028066,0.0000028047,0.0000028049,0.0000028083,0.0000028157, +0.0000028260,0.0000028349,0.0000028375,0.0000028397,0.0000028440, +0.0000028504,0.0000028565,0.0000028612,0.0000028635,0.0000028627, +0.0000028592,0.0000028559,0.0000028537,0.0000028502,0.0000028447, +0.0000028415,0.0000028434,0.0000028482,0.0000028505,0.0000028487, +0.0000028442,0.0000028392,0.0000028382,0.0000028396,0.0000028410, +0.0000028441,0.0000028486,0.0000028515,0.0000028507,0.0000028454, +0.0000028369,0.0000028281,0.0000028196,0.0000028140,0.0000028063, +0.0000027905,0.0000027792,0.0000027837,0.0000027941,0.0000028065, +0.0000028292,0.0000028477,0.0000028542,0.0000028570,0.0000028601, +0.0000028686,0.0000028792,0.0000028864,0.0000028917,0.0000028920, +0.0000028851,0.0000028748,0.0000028627,0.0000028576,0.0000028617, +0.0000028743,0.0000028851,0.0000028845,0.0000028791,0.0000028605, +0.0000028462,0.0000028455,0.0000028418,0.0000028417,0.0000028599, +0.0000028828,0.0000028945,0.0000028931,0.0000028802,0.0000028630, +0.0000028448,0.0000028335,0.0000028277,0.0000028302,0.0000028301, +0.0000028283,0.0000028241,0.0000028184,0.0000028148,0.0000028129, +0.0000028062,0.0000028018,0.0000027953,0.0000027882,0.0000027857, +0.0000027856,0.0000027870,0.0000027863,0.0000027844,0.0000027823, +0.0000027802,0.0000027772,0.0000027737,0.0000027708,0.0000027679, +0.0000027696,0.0000027730,0.0000027762,0.0000027791,0.0000027817, +0.0000027816,0.0000027781,0.0000027765,0.0000027850,0.0000027956, +0.0000027983,0.0000027966,0.0000027845,0.0000027670,0.0000027555, +0.0000027502,0.0000027441,0.0000027376,0.0000027373,0.0000027423, +0.0000027463,0.0000027515,0.0000027575,0.0000027581,0.0000027503, +0.0000027446,0.0000027468,0.0000027550,0.0000027615,0.0000027638, +0.0000027629,0.0000027631,0.0000027661,0.0000027714,0.0000027765, +0.0000027799,0.0000027816,0.0000027831,0.0000027823,0.0000027787, +0.0000027736,0.0000027667,0.0000027605,0.0000027578,0.0000027588, +0.0000027622,0.0000027660,0.0000027682,0.0000027680,0.0000027659, +0.0000027623,0.0000027577,0.0000027525,0.0000027470,0.0000027420, +0.0000027381,0.0000027338,0.0000027293,0.0000027248,0.0000027194, +0.0000027129,0.0000027080,0.0000027075,0.0000027110,0.0000027156, +0.0000027187,0.0000027207,0.0000027237,0.0000027280,0.0000027329, +0.0000027366,0.0000027379,0.0000027351,0.0000027312,0.0000027265, +0.0000027213,0.0000027167,0.0000027142,0.0000027141,0.0000027181, +0.0000027216,0.0000027216,0.0000027192,0.0000027193,0.0000027212, +0.0000027205,0.0000027127,0.0000026970,0.0000026836,0.0000026802, +0.0000026772,0.0000026679,0.0000026576,0.0000026551,0.0000026704, +0.0000026916,0.0000026994,0.0000026981,0.0000027029,0.0000027259, +0.0000027491,0.0000027602,0.0000027710,0.0000027983,0.0000028268, +0.0000028280,0.0000028202,0.0000028198,0.0000028161,0.0000027998, +0.0000027920,0.0000027965,0.0000028046,0.0000028136,0.0000028209, +0.0000028204,0.0000028095,0.0000027935,0.0000027882,0.0000027837, +0.0000027691,0.0000027628,0.0000027641,0.0000027771,0.0000027937, +0.0000028045,0.0000028048,0.0000027902,0.0000027925,0.0000028128, +0.0000028379,0.0000028543,0.0000028620,0.0000028597,0.0000028556, +0.0000028593,0.0000028604,0.0000028505,0.0000028395,0.0000028285, +0.0000028136,0.0000028085,0.0000028050,0.0000027984,0.0000027941, +0.0000027968,0.0000027957,0.0000027848,0.0000027622,0.0000027569, +0.0000027644,0.0000027702,0.0000027721,0.0000027700,0.0000027696, +0.0000027661,0.0000027549,0.0000027440,0.0000027365,0.0000027325, +0.0000027326,0.0000027347,0.0000027365,0.0000027366,0.0000027318, +0.0000027248,0.0000027204,0.0000027177,0.0000027164,0.0000027145, +0.0000027106,0.0000027065,0.0000027049,0.0000027060,0.0000027079, +0.0000027088,0.0000027078,0.0000027066,0.0000027074,0.0000027102, +0.0000027146,0.0000027182,0.0000027196,0.0000027190,0.0000027189, +0.0000027184,0.0000027184,0.0000027194,0.0000027198,0.0000027194, +0.0000027191,0.0000027182,0.0000027173,0.0000027169,0.0000027165, +0.0000027160,0.0000027149,0.0000027138,0.0000027116,0.0000027111, +0.0000027116,0.0000027131,0.0000027151,0.0000027178,0.0000027198, +0.0000027210,0.0000027196,0.0000027213,0.0000027203,0.0000027239, +0.0000027264,0.0000027280,0.0000027282,0.0000027278,0.0000027265, +0.0000027226,0.0000027191,0.0000027166,0.0000027152,0.0000027145, +0.0000027170,0.0000027182,0.0000027182,0.0000027161,0.0000027130, +0.0000027092,0.0000027025,0.0000026914,0.0000026814,0.0000026782, +0.0000026808,0.0000026857,0.0000026864,0.0000026842,0.0000026872, +0.0000027049,0.0000027363,0.0000027742,0.0000028026,0.0000028141, +0.0000028206,0.0000028286,0.0000028360,0.0000028401,0.0000028396, +0.0000028349,0.0000028269,0.0000028181,0.0000028102,0.0000028113, +0.0000028230,0.0000028319,0.0000028310,0.0000028267,0.0000028225, +0.0000028164,0.0000028088,0.0000028106,0.0000028213,0.0000028334, +0.0000028400,0.0000028465,0.0000028512,0.0000028524,0.0000028493, +0.0000028443,0.0000028417,0.0000028417,0.0000028421,0.0000028409, +0.0000028382,0.0000028334,0.0000028262,0.0000028191,0.0000028156, +0.0000028167,0.0000028224,0.0000028300,0.0000028338,0.0000028333, +0.0000028283,0.0000028211,0.0000028149,0.0000028116,0.0000028090, +0.0000028050,0.0000028007,0.0000027952,0.0000027882,0.0000027809, +0.0000027750,0.0000027712,0.0000027712,0.0000027760,0.0000027862, +0.0000028007,0.0000028150,0.0000028262,0.0000028364,0.0000028474, +0.0000028575,0.0000028645,0.0000028679,0.0000028689,0.0000028673, +0.0000028529,0.0000028280,0.0000028128,0.0000028138,0.0000028304, +0.0000028485,0.0000028523,0.0000028505,0.0000028482,0.0000028437, +0.0000028351,0.0000028271,0.0000028247,0.0000028235,0.0000028159, +0.0000028041,0.0000027982,0.0000027998,0.0000028047,0.0000028079, +0.0000028074,0.0000028031,0.0000027966,0.0000027918,0.0000027898, +0.0000027885,0.0000027879,0.0000027896,0.0000027964,0.0000028112, +0.0000028288,0.0000028411,0.0000028486,0.0000028561,0.0000028645, +0.0000028737,0.0000028829,0.0000028903,0.0000028951,0.0000028976, +0.0000028982,0.0000028979,0.0000028965,0.0000028946,0.0000028928, +0.0000028924,0.0000028917,0.0000028887,0.0000028831,0.0000028769, +0.0000028722,0.0000028707,0.0000028708,0.0000028728,0.0000028761, +0.0000028797,0.0000028830,0.0000028865,0.0000028908,0.0000028946, +0.0000028958,0.0000028948,0.0000028922,0.0000028914,0.0000028939, +0.0000028978,0.0000029006,0.0000029008,0.0000028982,0.0000028950, +0.0000028926,0.0000028892,0.0000028847,0.0000028829,0.0000028843, +0.0000028863,0.0000028859,0.0000028852,0.0000028885,0.0000028970, +0.0000029068,0.0000029131,0.0000029142,0.0000029136,0.0000029108, +0.0000029056,0.0000028982,0.0000028896,0.0000028826,0.0000028811, +0.0000028846,0.0000028934,0.0000029024,0.0000029076,0.0000029081, +0.0000029042,0.0000028983,0.0000028917,0.0000028865,0.0000028861, +0.0000028905,0.0000028956,0.0000028970,0.0000028941,0.0000028858, +0.0000028774,0.0000028747,0.0000028775,0.0000028840,0.0000028896, +0.0000028912,0.0000028897,0.0000028876,0.0000028863,0.0000028838, +0.0000028811,0.0000028792,0.0000028766,0.0000028751,0.0000028750, +0.0000028748,0.0000028749,0.0000028762,0.0000028783,0.0000028793, +0.0000028780,0.0000028749,0.0000028712,0.0000028687,0.0000028661, +0.0000028643,0.0000028623,0.0000028585,0.0000028550,0.0000028527, +0.0000028524,0.0000028538,0.0000028561,0.0000028576,0.0000028595, +0.0000028615,0.0000028640,0.0000028643,0.0000028591,0.0000028500, +0.0000028450,0.0000028479,0.0000028561,0.0000028646,0.0000028687, +0.0000028678,0.0000028645,0.0000028602,0.0000028553,0.0000028551, +0.0000028599,0.0000028636,0.0000028652,0.0000028660,0.0000028649, +0.0000028612,0.0000028580,0.0000028560,0.0000028537,0.0000028494, +0.0000028411,0.0000028310,0.0000028229,0.0000028209,0.0000028263, +0.0000028338,0.0000028353,0.0000028326,0.0000028327,0.0000028348, +0.0000028364,0.0000028381,0.0000028413,0.0000028451,0.0000028484, +0.0000028496,0.0000028499,0.0000028520,0.0000028555,0.0000028579, +0.0000028521,0.0000028398,0.0000028290,0.0000028243,0.0000028226, +0.0000028243,0.0000028300,0.0000028349,0.0000028381,0.0000028395, +0.0000028393,0.0000028380,0.0000028374,0.0000028406,0.0000028498, +0.0000028609,0.0000028709,0.0000028780,0.0000028825,0.0000028808, +0.0000028707,0.0000028558,0.0000028444,0.0000028413,0.0000028439, +0.0000028491,0.0000028594,0.0000028712,0.0000028800,0.0000028821, +0.0000028770,0.0000028690,0.0000028672,0.0000028719,0.0000028802, +0.0000028871,0.0000028910,0.0000028895,0.0000028794,0.0000028578, +0.0000028350,0.0000028282,0.0000028351,0.0000028464,0.0000028536, +0.0000028618,0.0000028698,0.0000028710,0.0000028695,0.0000028695, +0.0000028660,0.0000028591,0.0000028669,0.0000028864,0.0000028835, +0.0000028593,0.0000028488,0.0000028527,0.0000028903,0.0000029102, +0.0000029004,0.0000028759,0.0000028672,0.0000028717,0.0000028786, +0.0000028810,0.0000028776,0.0000028712,0.0000028626,0.0000028504, +0.0000028415,0.0000028363,0.0000028315,0.0000028257,0.0000028193, +0.0000028134,0.0000028081,0.0000028041,0.0000027994,0.0000027922, +0.0000027871,0.0000027939,0.0000028104,0.0000028196,0.0000028172, +0.0000028030,0.0000027840,0.0000027785,0.0000027833,0.0000027970, +0.0000028122,0.0000028218,0.0000028285,0.0000028349,0.0000028400, +0.0000028456,0.0000028490,0.0000028495,0.0000028475,0.0000028458, +0.0000028463,0.0000028476,0.0000028477,0.0000028453,0.0000028405, +0.0000028342,0.0000028272,0.0000028200,0.0000028131,0.0000028081, +0.0000028068,0.0000028089,0.0000028139,0.0000028186,0.0000028198, +0.0000028177,0.0000028156,0.0000028176,0.0000028253,0.0000028330, +0.0000028374,0.0000028387,0.0000028392,0.0000028441,0.0000028521, +0.0000028562,0.0000028577,0.0000028594,0.0000028592,0.0000028558, +0.0000028511,0.0000028466,0.0000028441,0.0000028443,0.0000028458, +0.0000028465,0.0000028465,0.0000028455,0.0000028437,0.0000028425, +0.0000028425,0.0000028426,0.0000028413,0.0000028381,0.0000028352, +0.0000028339,0.0000028341,0.0000028343,0.0000028327,0.0000028290, +0.0000028252,0.0000028234,0.0000028230,0.0000028203,0.0000028147, +0.0000028085,0.0000028083,0.0000028090,0.0000028144,0.0000028222, +0.0000028283,0.0000028337,0.0000028413,0.0000028524,0.0000028620, +0.0000028711,0.0000028753,0.0000028744,0.0000028689,0.0000028613, +0.0000028549,0.0000028490,0.0000028432,0.0000028386,0.0000028385, +0.0000028420,0.0000028459,0.0000028455,0.0000028411,0.0000028371, +0.0000028389,0.0000028440,0.0000028482,0.0000028536,0.0000028599, +0.0000028628,0.0000028609,0.0000028525,0.0000028405,0.0000028289, +0.0000028201,0.0000028152,0.0000028124,0.0000028038,0.0000027919, +0.0000027929,0.0000028029,0.0000028158,0.0000028360,0.0000028516, +0.0000028567,0.0000028586,0.0000028615,0.0000028703,0.0000028807, +0.0000028885,0.0000028943,0.0000028961,0.0000028912,0.0000028836, +0.0000028725,0.0000028634,0.0000028626,0.0000028702,0.0000028794, +0.0000028815,0.0000028787,0.0000028627,0.0000028489,0.0000028467, +0.0000028423,0.0000028415,0.0000028589,0.0000028839,0.0000028983, +0.0000028991,0.0000028902,0.0000028738,0.0000028535,0.0000028367, +0.0000028260,0.0000028291,0.0000028313,0.0000028286,0.0000028247, +0.0000028174,0.0000028122,0.0000028116,0.0000028038,0.0000027956, +0.0000027896,0.0000027851,0.0000027843,0.0000027852,0.0000027858, +0.0000027849,0.0000027820,0.0000027782,0.0000027736,0.0000027686, +0.0000027649,0.0000027632,0.0000027631,0.0000027668,0.0000027739, +0.0000027800,0.0000027848,0.0000027844,0.0000027792,0.0000027735, +0.0000027801,0.0000027937,0.0000028000,0.0000028001,0.0000027947, +0.0000027780,0.0000027615,0.0000027519,0.0000027450,0.0000027391, +0.0000027364,0.0000027391,0.0000027459,0.0000027514,0.0000027566, +0.0000027633,0.0000027641,0.0000027582,0.0000027572,0.0000027648, +0.0000027767,0.0000027847,0.0000027884,0.0000027901,0.0000027912, +0.0000027932,0.0000027955,0.0000027962,0.0000027951,0.0000027927, +0.0000027901,0.0000027867,0.0000027828,0.0000027785,0.0000027740, +0.0000027709,0.0000027693,0.0000027708,0.0000027748,0.0000027793, +0.0000027810,0.0000027798,0.0000027752,0.0000027693,0.0000027641, +0.0000027596,0.0000027545,0.0000027485,0.0000027435,0.0000027412, +0.0000027389,0.0000027357,0.0000027314,0.0000027252,0.0000027169, +0.0000027100,0.0000027088,0.0000027116,0.0000027154,0.0000027175, +0.0000027177,0.0000027195,0.0000027239,0.0000027301,0.0000027355, +0.0000027386,0.0000027395,0.0000027395,0.0000027369,0.0000027311, +0.0000027229,0.0000027167,0.0000027155,0.0000027191,0.0000027214, +0.0000027208,0.0000027205,0.0000027243,0.0000027279,0.0000027276, +0.0000027187,0.0000027002,0.0000026831,0.0000026771,0.0000026713, +0.0000026603,0.0000026504,0.0000026554,0.0000026781,0.0000026952, +0.0000026954,0.0000026942,0.0000027079,0.0000027356,0.0000027531, +0.0000027608,0.0000027770,0.0000028111,0.0000028283,0.0000028235, +0.0000028219,0.0000028209,0.0000028086,0.0000027960,0.0000027959, +0.0000028012,0.0000028104,0.0000028205,0.0000028207,0.0000028094, +0.0000027941,0.0000027847,0.0000027824,0.0000027730,0.0000027636, +0.0000027613,0.0000027652,0.0000027817,0.0000027951,0.0000028050, +0.0000027978,0.0000027866,0.0000027916,0.0000028107,0.0000028347, +0.0000028516,0.0000028605,0.0000028568,0.0000028523,0.0000028563, +0.0000028566,0.0000028460,0.0000028358,0.0000028242,0.0000028118, +0.0000028100,0.0000028057,0.0000027988,0.0000027957,0.0000027982, +0.0000027953,0.0000027807,0.0000027576,0.0000027558,0.0000027644, +0.0000027691,0.0000027689,0.0000027686,0.0000027675,0.0000027592, +0.0000027473,0.0000027378,0.0000027326,0.0000027314,0.0000027321, +0.0000027329,0.0000027312,0.0000027277,0.0000027235,0.0000027212, +0.0000027195,0.0000027163,0.0000027131,0.0000027085,0.0000027041, +0.0000027014,0.0000027016,0.0000027034,0.0000027046,0.0000027045, +0.0000027033,0.0000027031,0.0000027055,0.0000027103,0.0000027148, +0.0000027182,0.0000027189,0.0000027168,0.0000027159,0.0000027150, +0.0000027145,0.0000027147,0.0000027140,0.0000027123,0.0000027100, +0.0000027070,0.0000027059,0.0000027067,0.0000027076,0.0000027074, +0.0000027069,0.0000027067,0.0000027053,0.0000027052,0.0000027058, +0.0000027071,0.0000027095,0.0000027127,0.0000027144,0.0000027148, +0.0000027128,0.0000027126,0.0000027110,0.0000027143,0.0000027162, +0.0000027177,0.0000027193,0.0000027212,0.0000027237,0.0000027232, +0.0000027216,0.0000027195,0.0000027166,0.0000027133,0.0000027130, +0.0000027136,0.0000027146,0.0000027134,0.0000027106,0.0000027074, +0.0000027027,0.0000026948,0.0000026840,0.0000026752,0.0000026724, +0.0000026757,0.0000026799,0.0000026819,0.0000026813,0.0000026865, +0.0000027040,0.0000027299,0.0000027643,0.0000027954,0.0000028125, +0.0000028236,0.0000028322,0.0000028393,0.0000028400,0.0000028356, +0.0000028264,0.0000028178,0.0000028088,0.0000028066,0.0000028157, +0.0000028269,0.0000028266,0.0000028203,0.0000028153,0.0000028119, +0.0000028057,0.0000028056,0.0000028158,0.0000028289,0.0000028372, +0.0000028443,0.0000028505,0.0000028529,0.0000028500,0.0000028429, +0.0000028381,0.0000028386,0.0000028412,0.0000028431,0.0000028434, +0.0000028399,0.0000028326,0.0000028252,0.0000028207,0.0000028192, +0.0000028231,0.0000028308,0.0000028352,0.0000028352,0.0000028320, +0.0000028265,0.0000028214,0.0000028181,0.0000028152,0.0000028102, +0.0000028034,0.0000027974,0.0000027924,0.0000027878,0.0000027831, +0.0000027779,0.0000027739,0.0000027744,0.0000027827,0.0000027977, +0.0000028136,0.0000028246,0.0000028316,0.0000028402,0.0000028505, +0.0000028592,0.0000028651,0.0000028684,0.0000028663,0.0000028515, +0.0000028283,0.0000028143,0.0000028149,0.0000028320,0.0000028519, +0.0000028579,0.0000028562,0.0000028552,0.0000028513,0.0000028420, +0.0000028313,0.0000028269,0.0000028262,0.0000028210,0.0000028086, +0.0000027995,0.0000027986,0.0000028019,0.0000028038,0.0000028032, +0.0000027996,0.0000027936,0.0000027882,0.0000027868,0.0000027874, +0.0000027871,0.0000027882,0.0000027944,0.0000028066,0.0000028212, +0.0000028332,0.0000028423,0.0000028502,0.0000028571,0.0000028629, +0.0000028689,0.0000028759,0.0000028830,0.0000028891,0.0000028938, +0.0000028964,0.0000028964,0.0000028943,0.0000028917,0.0000028902, +0.0000028899,0.0000028892,0.0000028866,0.0000028812,0.0000028744, +0.0000028689,0.0000028659,0.0000028636,0.0000028616,0.0000028611, +0.0000028628,0.0000028662,0.0000028705,0.0000028759,0.0000028816, +0.0000028861,0.0000028879,0.0000028874,0.0000028869,0.0000028884, +0.0000028934,0.0000028995,0.0000029027,0.0000029017,0.0000028994, +0.0000028973,0.0000028932,0.0000028877,0.0000028859,0.0000028878, +0.0000028908,0.0000028904,0.0000028884,0.0000028898,0.0000028968, +0.0000029059,0.0000029118,0.0000029128,0.0000029121,0.0000029101, +0.0000029062,0.0000029014,0.0000028953,0.0000028893,0.0000028867, +0.0000028893,0.0000028977,0.0000029069,0.0000029114,0.0000029109, +0.0000029059,0.0000028990,0.0000028919,0.0000028864,0.0000028859, +0.0000028916,0.0000028994,0.0000029037,0.0000029026,0.0000028962, +0.0000028891,0.0000028866,0.0000028886,0.0000028945,0.0000029002, +0.0000029027,0.0000029019,0.0000028993,0.0000028968,0.0000028947, +0.0000028913,0.0000028887,0.0000028866,0.0000028858,0.0000028863, +0.0000028861,0.0000028840,0.0000028825,0.0000028822,0.0000028825, +0.0000028816,0.0000028783,0.0000028736,0.0000028693,0.0000028667, +0.0000028643,0.0000028618,0.0000028575,0.0000028522,0.0000028482, +0.0000028460,0.0000028462,0.0000028508,0.0000028576,0.0000028648, +0.0000028705,0.0000028740,0.0000028747,0.0000028707,0.0000028620, +0.0000028532,0.0000028501,0.0000028535,0.0000028610,0.0000028673, +0.0000028689,0.0000028665,0.0000028624,0.0000028573,0.0000028527, +0.0000028542,0.0000028602,0.0000028645,0.0000028677,0.0000028707, +0.0000028716,0.0000028684,0.0000028650,0.0000028613,0.0000028561, +0.0000028501,0.0000028420,0.0000028329,0.0000028228,0.0000028203, +0.0000028253,0.0000028313,0.0000028317,0.0000028317,0.0000028362, +0.0000028398,0.0000028422,0.0000028451,0.0000028474,0.0000028503, +0.0000028550,0.0000028578,0.0000028563,0.0000028560,0.0000028598, +0.0000028638,0.0000028605,0.0000028492,0.0000028377,0.0000028329, +0.0000028330,0.0000028374,0.0000028423,0.0000028427,0.0000028417, +0.0000028418,0.0000028413,0.0000028418,0.0000028459,0.0000028550, +0.0000028673,0.0000028769,0.0000028822,0.0000028833,0.0000028828, +0.0000028778,0.0000028675,0.0000028563,0.0000028505,0.0000028492, +0.0000028496,0.0000028554,0.0000028665,0.0000028771,0.0000028823, +0.0000028820,0.0000028747,0.0000028677,0.0000028660,0.0000028708, +0.0000028792,0.0000028864,0.0000028909,0.0000028903,0.0000028806, +0.0000028588,0.0000028334,0.0000028243,0.0000028325,0.0000028471, +0.0000028545,0.0000028618,0.0000028695,0.0000028719,0.0000028708, +0.0000028707,0.0000028680,0.0000028626,0.0000028709,0.0000028857, +0.0000028775,0.0000028548,0.0000028480,0.0000028554,0.0000028953, +0.0000029138,0.0000029026,0.0000028790,0.0000028702,0.0000028737, +0.0000028785,0.0000028813,0.0000028792,0.0000028708,0.0000028586, +0.0000028452,0.0000028355,0.0000028307,0.0000028276,0.0000028235, +0.0000028183,0.0000028127,0.0000028068,0.0000028000,0.0000027944, +0.0000027910,0.0000027871,0.0000027836,0.0000027895,0.0000028041, +0.0000028121,0.0000028103,0.0000027958,0.0000027778,0.0000027727, +0.0000027812,0.0000027982,0.0000028122,0.0000028208,0.0000028255, +0.0000028279,0.0000028306,0.0000028365,0.0000028453,0.0000028509, +0.0000028510,0.0000028485,0.0000028476,0.0000028472,0.0000028452, +0.0000028409,0.0000028350,0.0000028292,0.0000028249,0.0000028222, +0.0000028205,0.0000028205,0.0000028219,0.0000028238,0.0000028248, +0.0000028249,0.0000028257,0.0000028288,0.0000028335,0.0000028376, +0.0000028404,0.0000028423,0.0000028428,0.0000028430,0.0000028466, +0.0000028515,0.0000028541,0.0000028561,0.0000028580,0.0000028575, +0.0000028544,0.0000028503,0.0000028462,0.0000028426,0.0000028407, +0.0000028414,0.0000028436,0.0000028449,0.0000028446,0.0000028437, +0.0000028428,0.0000028427,0.0000028440,0.0000028463,0.0000028484, +0.0000028490,0.0000028479,0.0000028461,0.0000028449,0.0000028432, +0.0000028394,0.0000028337,0.0000028305,0.0000028314,0.0000028332, +0.0000028321,0.0000028283,0.0000028228,0.0000028180,0.0000028122, +0.0000028102,0.0000028101,0.0000028120,0.0000028162,0.0000028241, +0.0000028371,0.0000028532,0.0000028684,0.0000028773,0.0000028807, +0.0000028777,0.0000028703,0.0000028612,0.0000028533,0.0000028465, +0.0000028390,0.0000028358,0.0000028381,0.0000028422,0.0000028422, +0.0000028376,0.0000028339,0.0000028376,0.0000028454,0.0000028522, +0.0000028595,0.0000028672,0.0000028696,0.0000028661,0.0000028547, +0.0000028396,0.0000028250,0.0000028151,0.0000028123,0.0000028155, +0.0000028150,0.0000028071,0.0000028047,0.0000028117,0.0000028224, +0.0000028386,0.0000028522,0.0000028573,0.0000028592,0.0000028619, +0.0000028696,0.0000028785,0.0000028857,0.0000028913,0.0000028937, +0.0000028916,0.0000028880,0.0000028812,0.0000028721,0.0000028665, +0.0000028678,0.0000028731,0.0000028775,0.0000028766,0.0000028636, +0.0000028495,0.0000028464,0.0000028414,0.0000028394,0.0000028554, +0.0000028819,0.0000028980,0.0000029003,0.0000028958,0.0000028831, +0.0000028632,0.0000028435,0.0000028273,0.0000028275,0.0000028316, +0.0000028310,0.0000028262,0.0000028166,0.0000028102,0.0000028099, +0.0000028040,0.0000027929,0.0000027866,0.0000027838,0.0000027840, +0.0000027875,0.0000027901,0.0000027912,0.0000027882,0.0000027836, +0.0000027790,0.0000027742,0.0000027721,0.0000027717,0.0000027729, +0.0000027781,0.0000027851,0.0000027898,0.0000027886,0.0000027827, +0.0000027749,0.0000027751,0.0000027890,0.0000028006,0.0000028024, +0.0000028021,0.0000027963,0.0000027789,0.0000027638,0.0000027536, +0.0000027438,0.0000027364,0.0000027347,0.0000027387,0.0000027472, +0.0000027546,0.0000027620,0.0000027695,0.0000027708,0.0000027667, +0.0000027648,0.0000027719,0.0000027857,0.0000027976,0.0000028034, +0.0000028063,0.0000028093,0.0000028125,0.0000028151,0.0000028155, +0.0000028129,0.0000028069,0.0000027994,0.0000027926,0.0000027865, +0.0000027810,0.0000027780,0.0000027768,0.0000027762,0.0000027770, +0.0000027792,0.0000027835,0.0000027861,0.0000027860,0.0000027831, +0.0000027767,0.0000027696,0.0000027640,0.0000027596,0.0000027539, +0.0000027468,0.0000027420,0.0000027412,0.0000027411,0.0000027408, +0.0000027390,0.0000027341,0.0000027257,0.0000027179,0.0000027154, +0.0000027168,0.0000027188,0.0000027183,0.0000027162,0.0000027160, +0.0000027189,0.0000027245,0.0000027298,0.0000027334,0.0000027369, +0.0000027400,0.0000027409,0.0000027384,0.0000027306,0.0000027230, +0.0000027203,0.0000027217,0.0000027228,0.0000027226,0.0000027238, +0.0000027296,0.0000027336,0.0000027329,0.0000027233,0.0000027028, +0.0000026832,0.0000026741,0.0000026652,0.0000026533,0.0000026484, +0.0000026638,0.0000026881,0.0000026935,0.0000026898,0.0000026951, +0.0000027206,0.0000027453,0.0000027547,0.0000027625,0.0000027893, +0.0000028212,0.0000028256,0.0000028233,0.0000028242,0.0000028165, +0.0000028038,0.0000027977,0.0000027996,0.0000028074,0.0000028191, +0.0000028213,0.0000028122,0.0000027948,0.0000027855,0.0000027803, +0.0000027751,0.0000027658,0.0000027618,0.0000027604,0.0000027680, +0.0000027855,0.0000027955,0.0000028032,0.0000027915,0.0000027847, +0.0000027921,0.0000028088,0.0000028304,0.0000028477,0.0000028577, +0.0000028537,0.0000028490,0.0000028535,0.0000028526,0.0000028415, +0.0000028321,0.0000028202,0.0000028112,0.0000028106,0.0000028062, +0.0000027992,0.0000027970,0.0000027990,0.0000027933,0.0000027750, +0.0000027545,0.0000027551,0.0000027639,0.0000027656,0.0000027661, +0.0000027666,0.0000027611,0.0000027510,0.0000027413,0.0000027329, +0.0000027299,0.0000027303,0.0000027306,0.0000027287,0.0000027237, +0.0000027191,0.0000027186,0.0000027187,0.0000027158,0.0000027104, +0.0000027053,0.0000027014,0.0000027002,0.0000027001,0.0000027010, +0.0000027024,0.0000027034,0.0000027033,0.0000027027,0.0000027035, +0.0000027067,0.0000027108,0.0000027141,0.0000027154,0.0000027139, +0.0000027108,0.0000027092,0.0000027076,0.0000027057,0.0000027049, +0.0000027036,0.0000027021,0.0000026999,0.0000026978,0.0000026985, +0.0000027011,0.0000027026,0.0000027025,0.0000027018,0.0000027014, +0.0000027000,0.0000026996,0.0000026996,0.0000027009,0.0000027041, +0.0000027079,0.0000027104,0.0000027119,0.0000027114,0.0000027106, +0.0000027097,0.0000027131,0.0000027145,0.0000027147,0.0000027147, +0.0000027143,0.0000027154,0.0000027152,0.0000027147,0.0000027144, +0.0000027142,0.0000027135,0.0000027140,0.0000027147,0.0000027154, +0.0000027133,0.0000027100,0.0000027074,0.0000027028,0.0000026954, +0.0000026865,0.0000026777,0.0000026710,0.0000026697,0.0000026728, +0.0000026761,0.0000026772,0.0000026801,0.0000026902,0.0000027054, +0.0000027253,0.0000027517,0.0000027833,0.0000028105,0.0000028259, +0.0000028347,0.0000028394,0.0000028381,0.0000028294,0.0000028203, +0.0000028113,0.0000028053,0.0000028099,0.0000028217,0.0000028248, +0.0000028182,0.0000028100,0.0000028069,0.0000028033,0.0000028009, +0.0000028085,0.0000028218,0.0000028318,0.0000028388,0.0000028462, +0.0000028505,0.0000028501,0.0000028439,0.0000028365,0.0000028348, +0.0000028384,0.0000028433,0.0000028465,0.0000028453,0.0000028390, +0.0000028325,0.0000028286,0.0000028245,0.0000028237,0.0000028279, +0.0000028322,0.0000028333,0.0000028320,0.0000028289,0.0000028254, +0.0000028229,0.0000028210,0.0000028173,0.0000028106,0.0000028028, +0.0000027982,0.0000027966,0.0000027940,0.0000027895,0.0000027844, +0.0000027815,0.0000027843,0.0000027962,0.0000028122,0.0000028244, +0.0000028299,0.0000028340,0.0000028428,0.0000028522,0.0000028591, +0.0000028630,0.0000028617,0.0000028489,0.0000028285,0.0000028157, +0.0000028166,0.0000028350,0.0000028566,0.0000028635,0.0000028618, +0.0000028617,0.0000028595,0.0000028498,0.0000028382,0.0000028319, +0.0000028310,0.0000028268,0.0000028148,0.0000028022,0.0000027985, +0.0000027997,0.0000028000,0.0000027987,0.0000027953,0.0000027899, +0.0000027848,0.0000027838,0.0000027856,0.0000027877,0.0000027887, +0.0000027944,0.0000028060,0.0000028184,0.0000028278,0.0000028363, +0.0000028468,0.0000028564,0.0000028613,0.0000028638,0.0000028665, +0.0000028702,0.0000028755,0.0000028817,0.0000028877,0.0000028916, +0.0000028925,0.0000028912,0.0000028895,0.0000028886,0.0000028879, +0.0000028867,0.0000028840,0.0000028789,0.0000028722,0.0000028673, +0.0000028647,0.0000028614,0.0000028560,0.0000028517,0.0000028503, +0.0000028509,0.0000028542,0.0000028598,0.0000028668,0.0000028741, +0.0000028797,0.0000028823,0.0000028833,0.0000028853,0.0000028906, +0.0000028987,0.0000029037,0.0000029034,0.0000029021,0.0000029012, +0.0000028975,0.0000028917,0.0000028898,0.0000028922,0.0000028949, +0.0000028941,0.0000028914,0.0000028914,0.0000028958,0.0000029027, +0.0000029076,0.0000029082,0.0000029072,0.0000029058,0.0000029038, +0.0000029013,0.0000028988,0.0000028953,0.0000028923,0.0000028938, +0.0000029015,0.0000029109,0.0000029155,0.0000029140,0.0000029079, +0.0000028997,0.0000028923,0.0000028870,0.0000028869,0.0000028936, +0.0000029033,0.0000029102,0.0000029109,0.0000029057,0.0000028990, +0.0000028953,0.0000028954,0.0000028994,0.0000029044,0.0000029074, +0.0000029072,0.0000029044,0.0000029012,0.0000028988,0.0000028963, +0.0000028935,0.0000028925,0.0000028943,0.0000028963,0.0000028975, +0.0000028970,0.0000028951,0.0000028931,0.0000028915,0.0000028900, +0.0000028869,0.0000028815,0.0000028752,0.0000028692,0.0000028645, +0.0000028599,0.0000028546,0.0000028485,0.0000028448,0.0000028434, +0.0000028438,0.0000028476,0.0000028579,0.0000028700,0.0000028788, +0.0000028823,0.0000028821,0.0000028778,0.0000028692,0.0000028595, +0.0000028526,0.0000028512,0.0000028555,0.0000028631,0.0000028674, +0.0000028674,0.0000028640,0.0000028597,0.0000028548,0.0000028506, +0.0000028523,0.0000028579,0.0000028634,0.0000028682,0.0000028715, +0.0000028728,0.0000028710,0.0000028705,0.0000028670,0.0000028597, +0.0000028518,0.0000028430,0.0000028336,0.0000028238,0.0000028208, +0.0000028252,0.0000028285,0.0000028283,0.0000028306,0.0000028388, +0.0000028441,0.0000028479,0.0000028522,0.0000028551,0.0000028563, +0.0000028597,0.0000028633,0.0000028618,0.0000028596,0.0000028615, +0.0000028646,0.0000028624,0.0000028518,0.0000028421,0.0000028407, +0.0000028447,0.0000028492,0.0000028494,0.0000028473,0.0000028463, +0.0000028468,0.0000028479,0.0000028537,0.0000028619,0.0000028717, +0.0000028802,0.0000028839,0.0000028840,0.0000028813,0.0000028780, +0.0000028745,0.0000028686,0.0000028618,0.0000028564,0.0000028538, +0.0000028547,0.0000028625,0.0000028726,0.0000028808,0.0000028830, +0.0000028807,0.0000028729,0.0000028676,0.0000028660,0.0000028698, +0.0000028783,0.0000028861,0.0000028908,0.0000028907,0.0000028826, +0.0000028623,0.0000028346,0.0000028222,0.0000028299,0.0000028482, +0.0000028572,0.0000028634,0.0000028706,0.0000028743,0.0000028738, +0.0000028730,0.0000028700,0.0000028661,0.0000028734,0.0000028851, +0.0000028718,0.0000028512,0.0000028475,0.0000028569,0.0000028971, +0.0000029161,0.0000029056,0.0000028828,0.0000028744,0.0000028768, +0.0000028792,0.0000028817,0.0000028819,0.0000028759,0.0000028632, +0.0000028474,0.0000028354,0.0000028273,0.0000028251,0.0000028229, +0.0000028166,0.0000028098,0.0000028042,0.0000027988,0.0000027921, +0.0000027879,0.0000027863,0.0000027845,0.0000027814,0.0000027850, +0.0000027971,0.0000028052,0.0000028042,0.0000027916,0.0000027737, +0.0000027699,0.0000027824,0.0000028027,0.0000028191,0.0000028269, +0.0000028276,0.0000028272,0.0000028285,0.0000028329,0.0000028422, +0.0000028516,0.0000028543,0.0000028530,0.0000028498,0.0000028460, +0.0000028407,0.0000028339,0.0000028277,0.0000028242,0.0000028232, +0.0000028232,0.0000028243,0.0000028258,0.0000028274,0.0000028295, +0.0000028329,0.0000028370,0.0000028409,0.0000028434,0.0000028446, +0.0000028456,0.0000028462,0.0000028460,0.0000028467,0.0000028496, +0.0000028521,0.0000028530,0.0000028545,0.0000028562,0.0000028549, +0.0000028510,0.0000028466,0.0000028429,0.0000028395,0.0000028369, +0.0000028363,0.0000028378,0.0000028399,0.0000028406,0.0000028405, +0.0000028408,0.0000028416,0.0000028432,0.0000028463,0.0000028505, +0.0000028551,0.0000028584,0.0000028588,0.0000028579,0.0000028561, +0.0000028517,0.0000028445,0.0000028378,0.0000028366,0.0000028387, +0.0000028404,0.0000028402,0.0000028389,0.0000028371,0.0000028341, +0.0000028274,0.0000028188,0.0000028102,0.0000028068,0.0000028061, +0.0000028090,0.0000028175,0.0000028320,0.0000028493,0.0000028652, +0.0000028750,0.0000028778,0.0000028758,0.0000028692,0.0000028625, +0.0000028544,0.0000028431,0.0000028372,0.0000028384,0.0000028418, +0.0000028411,0.0000028354,0.0000028308,0.0000028353,0.0000028459, +0.0000028544,0.0000028622,0.0000028699,0.0000028721,0.0000028669, +0.0000028530,0.0000028360,0.0000028200,0.0000028099,0.0000028084, +0.0000028155,0.0000028237,0.0000028219,0.0000028164,0.0000028179, +0.0000028241,0.0000028357,0.0000028496,0.0000028569,0.0000028589, +0.0000028613,0.0000028667,0.0000028728,0.0000028781,0.0000028826, +0.0000028855,0.0000028850,0.0000028849,0.0000028824,0.0000028772, +0.0000028716,0.0000028684,0.0000028695,0.0000028746,0.0000028749, +0.0000028637,0.0000028489,0.0000028447,0.0000028389,0.0000028364, +0.0000028503,0.0000028780,0.0000028950,0.0000028975,0.0000028964, +0.0000028892,0.0000028714,0.0000028512,0.0000028311,0.0000028264, +0.0000028304,0.0000028333,0.0000028288,0.0000028164,0.0000028085, +0.0000028075,0.0000028057,0.0000027937,0.0000027865,0.0000027841, +0.0000027851,0.0000027914,0.0000027968,0.0000027990,0.0000027962, +0.0000027919,0.0000027893,0.0000027872,0.0000027866,0.0000027863, +0.0000027881,0.0000027914,0.0000027940,0.0000027934,0.0000027869, +0.0000027797,0.0000027755,0.0000027797,0.0000027955,0.0000028060, +0.0000028067,0.0000028071,0.0000028055,0.0000027912,0.0000027738, +0.0000027632,0.0000027538,0.0000027432,0.0000027371,0.0000027377, +0.0000027448,0.0000027533,0.0000027597,0.0000027665,0.0000027729, +0.0000027731,0.0000027699,0.0000027710,0.0000027809,0.0000027960, +0.0000028074,0.0000028130,0.0000028157,0.0000028185,0.0000028232, +0.0000028257,0.0000028248,0.0000028206,0.0000028133,0.0000028035, +0.0000027937,0.0000027853,0.0000027792,0.0000027765,0.0000027755, +0.0000027756,0.0000027764,0.0000027792,0.0000027823,0.0000027839, +0.0000027833,0.0000027799,0.0000027743,0.0000027680,0.0000027629, +0.0000027585,0.0000027526,0.0000027447,0.0000027393,0.0000027385, +0.0000027397,0.0000027418,0.0000027430,0.0000027414,0.0000027358, +0.0000027293,0.0000027266,0.0000027274,0.0000027278,0.0000027241, +0.0000027184,0.0000027154,0.0000027161,0.0000027202,0.0000027243, +0.0000027275,0.0000027317,0.0000027370,0.0000027404,0.0000027396, +0.0000027356,0.0000027298,0.0000027268,0.0000027260,0.0000027259, +0.0000027260,0.0000027293,0.0000027352,0.0000027387,0.0000027367, +0.0000027256,0.0000027025,0.0000026815,0.0000026701,0.0000026586, +0.0000026474,0.0000026522,0.0000026766,0.0000026914,0.0000026877, +0.0000026875,0.0000027070,0.0000027363,0.0000027508,0.0000027558, +0.0000027693,0.0000028052,0.0000028251,0.0000028240,0.0000028257, +0.0000028228,0.0000028106,0.0000028028,0.0000028003,0.0000028041, +0.0000028158,0.0000028214,0.0000028149,0.0000027999,0.0000027883, +0.0000027823,0.0000027756,0.0000027689,0.0000027641,0.0000027604, +0.0000027607,0.0000027737,0.0000027878,0.0000027962,0.0000027996, +0.0000027875,0.0000027849,0.0000027932,0.0000028073,0.0000028255, +0.0000028428,0.0000028536,0.0000028508,0.0000028459,0.0000028503, +0.0000028483,0.0000028371,0.0000028283,0.0000028163,0.0000028115, +0.0000028110,0.0000028067,0.0000027993,0.0000027977,0.0000027988, +0.0000027892,0.0000027680,0.0000027525,0.0000027558,0.0000027617, +0.0000027622,0.0000027641,0.0000027611,0.0000027529,0.0000027446, +0.0000027352,0.0000027287,0.0000027281,0.0000027292,0.0000027276, +0.0000027227,0.0000027171,0.0000027147,0.0000027152,0.0000027127, +0.0000027071,0.0000027014,0.0000026982,0.0000026983,0.0000026996, +0.0000027002,0.0000027007,0.0000027003,0.0000026997,0.0000026984, +0.0000026975,0.0000026979,0.0000027003,0.0000027031,0.0000027052, +0.0000027048,0.0000027018,0.0000026980,0.0000026955,0.0000026930, +0.0000026895,0.0000026872,0.0000026847,0.0000026823,0.0000026805, +0.0000026807,0.0000026834,0.0000026876,0.0000026910,0.0000026926, +0.0000026938,0.0000026949,0.0000026948,0.0000026957,0.0000026967, +0.0000026987,0.0000027028,0.0000027073,0.0000027099,0.0000027117, +0.0000027118,0.0000027098,0.0000027090,0.0000027123,0.0000027145, +0.0000027153,0.0000027159,0.0000027165,0.0000027177,0.0000027171, +0.0000027161,0.0000027146,0.0000027115,0.0000027087,0.0000027091, +0.0000027115,0.0000027150,0.0000027154,0.0000027130,0.0000027103, +0.0000027057,0.0000026991,0.0000026904,0.0000026812,0.0000026727, +0.0000026683,0.0000026683,0.0000026719,0.0000026736,0.0000026750, +0.0000026810,0.0000026940,0.0000027090,0.0000027209,0.0000027375, +0.0000027689,0.0000028051,0.0000028258,0.0000028350,0.0000028376, +0.0000028335,0.0000028242,0.0000028160,0.0000028063,0.0000028057, +0.0000028165,0.0000028244,0.0000028210,0.0000028113,0.0000028055, +0.0000028034,0.0000027992,0.0000028010,0.0000028117,0.0000028243, +0.0000028322,0.0000028386,0.0000028448,0.0000028478,0.0000028455, +0.0000028378,0.0000028317,0.0000028326,0.0000028396,0.0000028466, +0.0000028479,0.0000028437,0.0000028380,0.0000028358,0.0000028328, +0.0000028279,0.0000028260,0.0000028269,0.0000028284,0.0000028299, +0.0000028306,0.0000028300,0.0000028282,0.0000028269,0.0000028256, +0.0000028216,0.0000028148,0.0000028077,0.0000028054,0.0000028051, +0.0000028021,0.0000027975,0.0000027932,0.0000027910,0.0000027963, +0.0000028093,0.0000028223,0.0000028296,0.0000028324,0.0000028376, +0.0000028448,0.0000028506,0.0000028537,0.0000028533,0.0000028447, +0.0000028289,0.0000028174,0.0000028200,0.0000028405,0.0000028623, +0.0000028694,0.0000028683,0.0000028678,0.0000028670,0.0000028574, +0.0000028448,0.0000028386,0.0000028372,0.0000028332,0.0000028212, +0.0000028072,0.0000027998,0.0000027986,0.0000027977,0.0000027947, +0.0000027912,0.0000027868,0.0000027818,0.0000027810,0.0000027839, +0.0000027880,0.0000027902,0.0000027940,0.0000028049,0.0000028182, +0.0000028277,0.0000028345,0.0000028437,0.0000028555,0.0000028633, +0.0000028657,0.0000028661,0.0000028661,0.0000028661,0.0000028680, +0.0000028727,0.0000028787,0.0000028837,0.0000028865,0.0000028872, +0.0000028875,0.0000028877,0.0000028881,0.0000028875,0.0000028848, +0.0000028793,0.0000028725,0.0000028681,0.0000028663,0.0000028630, +0.0000028560,0.0000028489,0.0000028437,0.0000028415,0.0000028420, +0.0000028459,0.0000028527,0.0000028616,0.0000028705,0.0000028770, +0.0000028811,0.0000028845,0.0000028903,0.0000028989,0.0000029046, +0.0000029049,0.0000029050,0.0000029054,0.0000029019,0.0000028963, +0.0000028946,0.0000028962,0.0000028978,0.0000028964,0.0000028930, +0.0000028914,0.0000028929,0.0000028973,0.0000029014,0.0000029016, +0.0000028998,0.0000028990,0.0000028985,0.0000028981,0.0000028989, +0.0000028988,0.0000028972,0.0000028976,0.0000029038,0.0000029131, +0.0000029183,0.0000029174,0.0000029104,0.0000029011,0.0000028930, +0.0000028881,0.0000028881,0.0000028947,0.0000029049,0.0000029129, +0.0000029145,0.0000029108,0.0000029044,0.0000028997,0.0000028975, +0.0000028982,0.0000029022,0.0000029051,0.0000029055,0.0000029029, +0.0000028991,0.0000028946,0.0000028905,0.0000028877,0.0000028880, +0.0000028905,0.0000028944,0.0000028975,0.0000028992,0.0000028995, +0.0000028990,0.0000028971,0.0000028953,0.0000028924,0.0000028870, +0.0000028795,0.0000028713,0.0000028631,0.0000028564,0.0000028505, +0.0000028456,0.0000028432,0.0000028429,0.0000028449,0.0000028498, +0.0000028601,0.0000028734,0.0000028828,0.0000028866,0.0000028863, +0.0000028822,0.0000028747,0.0000028652,0.0000028563,0.0000028512, +0.0000028513,0.0000028557,0.0000028622,0.0000028651,0.0000028644, +0.0000028605,0.0000028563,0.0000028520,0.0000028480,0.0000028492, +0.0000028548,0.0000028615,0.0000028667,0.0000028695,0.0000028705, +0.0000028713,0.0000028746,0.0000028728,0.0000028644,0.0000028545, +0.0000028436,0.0000028326,0.0000028244,0.0000028229,0.0000028258, +0.0000028276,0.0000028273,0.0000028309,0.0000028413,0.0000028495, +0.0000028537,0.0000028592,0.0000028635,0.0000028633,0.0000028633, +0.0000028661,0.0000028653,0.0000028617,0.0000028612,0.0000028638, +0.0000028611,0.0000028506,0.0000028440,0.0000028465,0.0000028532, +0.0000028544,0.0000028512,0.0000028504,0.0000028516,0.0000028541, +0.0000028599,0.0000028693,0.0000028766,0.0000028817,0.0000028836, +0.0000028827,0.0000028798,0.0000028768,0.0000028746,0.0000028742, +0.0000028717,0.0000028666,0.0000028605,0.0000028588,0.0000028615, +0.0000028689,0.0000028770,0.0000028825,0.0000028832,0.0000028794, +0.0000028722,0.0000028686,0.0000028671,0.0000028693,0.0000028769, +0.0000028856,0.0000028902,0.0000028902,0.0000028835,0.0000028668, +0.0000028389,0.0000028223,0.0000028272,0.0000028484,0.0000028605, +0.0000028662,0.0000028727,0.0000028773,0.0000028778,0.0000028762, +0.0000028723,0.0000028693,0.0000028747,0.0000028843,0.0000028681, +0.0000028481,0.0000028466,0.0000028565,0.0000028962,0.0000029168, +0.0000029090,0.0000028881,0.0000028793,0.0000028809,0.0000028816, +0.0000028831,0.0000028843,0.0000028823,0.0000028737,0.0000028603, +0.0000028448,0.0000028308,0.0000028253,0.0000028241,0.0000028188, +0.0000028100,0.0000028022,0.0000027963,0.0000027908,0.0000027860, +0.0000027827,0.0000027829,0.0000027825,0.0000027783,0.0000027793, +0.0000027900,0.0000027988,0.0000027991,0.0000027882,0.0000027704, +0.0000027681,0.0000027852,0.0000028088,0.0000028251,0.0000028284, +0.0000028268,0.0000028268,0.0000028301,0.0000028337,0.0000028400, +0.0000028491,0.0000028550,0.0000028554,0.0000028510,0.0000028441, +0.0000028363,0.0000028294,0.0000028251,0.0000028240,0.0000028243, +0.0000028263,0.0000028291,0.0000028321,0.0000028353,0.0000028388, +0.0000028423,0.0000028450,0.0000028468,0.0000028480,0.0000028484, +0.0000028480,0.0000028481,0.0000028499,0.0000028524,0.0000028535, +0.0000028533,0.0000028530,0.0000028526,0.0000028508,0.0000028464, +0.0000028410,0.0000028367,0.0000028331,0.0000028296,0.0000028275, +0.0000028282,0.0000028313,0.0000028345,0.0000028370,0.0000028393, +0.0000028412,0.0000028434,0.0000028466,0.0000028505,0.0000028551, +0.0000028592,0.0000028619,0.0000028634,0.0000028636,0.0000028625, +0.0000028570,0.0000028482,0.0000028421,0.0000028423,0.0000028454, +0.0000028476,0.0000028477,0.0000028464,0.0000028457,0.0000028449, +0.0000028406,0.0000028314,0.0000028204,0.0000028130,0.0000028096, +0.0000028087,0.0000028126,0.0000028180,0.0000028285,0.0000028431, +0.0000028577,0.0000028680,0.0000028726,0.0000028724,0.0000028698, +0.0000028627,0.0000028501,0.0000028423,0.0000028424,0.0000028434, +0.0000028416,0.0000028350,0.0000028292,0.0000028334,0.0000028458, +0.0000028562,0.0000028638,0.0000028700,0.0000028718,0.0000028668, +0.0000028516,0.0000028332,0.0000028175,0.0000028076,0.0000028074, +0.0000028145,0.0000028258,0.0000028304,0.0000028246,0.0000028198, +0.0000028210,0.0000028288,0.0000028441,0.0000028554,0.0000028573, +0.0000028587,0.0000028621,0.0000028658,0.0000028694,0.0000028723, +0.0000028744,0.0000028747,0.0000028765,0.0000028774,0.0000028755, +0.0000028723,0.0000028698,0.0000028686,0.0000028730,0.0000028733, +0.0000028626,0.0000028468,0.0000028417,0.0000028355,0.0000028330, +0.0000028439,0.0000028723,0.0000028909,0.0000028933,0.0000028935, +0.0000028904,0.0000028774,0.0000028578,0.0000028366,0.0000028262, +0.0000028294,0.0000028349,0.0000028310,0.0000028177,0.0000028075, +0.0000028037,0.0000028065,0.0000027960,0.0000027885,0.0000027867, +0.0000027879,0.0000027935,0.0000027982,0.0000028001,0.0000027977, +0.0000027937,0.0000027924,0.0000027924,0.0000027923,0.0000027918, +0.0000027936,0.0000027969,0.0000027979,0.0000027949,0.0000027878, +0.0000027816,0.0000027804,0.0000027830,0.0000027952,0.0000028089, +0.0000028154,0.0000028165,0.0000028161,0.0000028115,0.0000027985, +0.0000027829,0.0000027723,0.0000027651,0.0000027562,0.0000027485, +0.0000027464,0.0000027499,0.0000027567,0.0000027620,0.0000027659, +0.0000027705,0.0000027732,0.0000027743,0.0000027765,0.0000027844, +0.0000027967,0.0000028077,0.0000028137,0.0000028162,0.0000028186, +0.0000028216,0.0000028228,0.0000028214,0.0000028164,0.0000028085, +0.0000027993,0.0000027900,0.0000027810,0.0000027736,0.0000027685, +0.0000027661,0.0000027657,0.0000027659,0.0000027667,0.0000027690, +0.0000027707,0.0000027704,0.0000027681,0.0000027643,0.0000027601, +0.0000027567,0.0000027536,0.0000027488,0.0000027417,0.0000027358, +0.0000027341,0.0000027359,0.0000027401,0.0000027435,0.0000027437, +0.0000027413,0.0000027372,0.0000027358,0.0000027373,0.0000027373, +0.0000027321,0.0000027233,0.0000027164,0.0000027154,0.0000027179, +0.0000027207,0.0000027232,0.0000027270,0.0000027328,0.0000027372, +0.0000027381,0.0000027375,0.0000027349,0.0000027328,0.0000027308, +0.0000027297,0.0000027307,0.0000027355,0.0000027407,0.0000027432, +0.0000027386,0.0000027248,0.0000026995,0.0000026786,0.0000026647, +0.0000026516,0.0000026459,0.0000026640,0.0000026860,0.0000026866, +0.0000026829,0.0000026968,0.0000027276,0.0000027471,0.0000027535, +0.0000027586,0.0000027846,0.0000028179,0.0000028240,0.0000028251, +0.0000028270,0.0000028180,0.0000028078,0.0000028031,0.0000028029, +0.0000028112,0.0000028182,0.0000028151,0.0000028052,0.0000027948, +0.0000027869,0.0000027785,0.0000027708,0.0000027672,0.0000027627, +0.0000027595,0.0000027647,0.0000027797,0.0000027888,0.0000027965, +0.0000027963,0.0000027858,0.0000027862,0.0000027947,0.0000028059, +0.0000028202,0.0000028368,0.0000028489,0.0000028483,0.0000028430, +0.0000028466,0.0000028439,0.0000028329,0.0000028245,0.0000028134, +0.0000028120,0.0000028115,0.0000028069,0.0000027989,0.0000027980, +0.0000027971,0.0000027830,0.0000027611,0.0000027521,0.0000027572, +0.0000027587,0.0000027606,0.0000027604,0.0000027536,0.0000027464, +0.0000027378,0.0000027287,0.0000027260,0.0000027269,0.0000027271, +0.0000027233,0.0000027181,0.0000027147,0.0000027128,0.0000027088, +0.0000027026,0.0000026970,0.0000026945,0.0000026953,0.0000026970, +0.0000026974,0.0000026964,0.0000026951,0.0000026928,0.0000026905, +0.0000026889,0.0000026884,0.0000026887,0.0000026908,0.0000026929, +0.0000026930,0.0000026897,0.0000026845,0.0000026795,0.0000026758, +0.0000026724,0.0000026683,0.0000026647,0.0000026607,0.0000026567, +0.0000026552,0.0000026566,0.0000026603,0.0000026647,0.0000026686, +0.0000026718,0.0000026741,0.0000026762,0.0000026774,0.0000026793, +0.0000026811,0.0000026846,0.0000026911,0.0000026977,0.0000027031, +0.0000027069,0.0000027091,0.0000027081,0.0000027087,0.0000027125, +0.0000027152,0.0000027174,0.0000027172,0.0000027184,0.0000027210, +0.0000027225,0.0000027232,0.0000027235,0.0000027210,0.0000027166, +0.0000027129,0.0000027103,0.0000027106,0.0000027109,0.0000027109, +0.0000027109,0.0000027094,0.0000027048,0.0000026982,0.0000026911, +0.0000026819,0.0000026725,0.0000026680,0.0000026678,0.0000026699, +0.0000026723,0.0000026760,0.0000026837,0.0000026970,0.0000027107, +0.0000027164,0.0000027255,0.0000027543,0.0000027936,0.0000028215, +0.0000028324,0.0000028347,0.0000028297,0.0000028214,0.0000028110, +0.0000028026,0.0000028079,0.0000028222,0.0000028248,0.0000028179, +0.0000028090,0.0000028060,0.0000028033,0.0000027995,0.0000028029, +0.0000028134,0.0000028244,0.0000028314,0.0000028359,0.0000028407, +0.0000028432,0.0000028399,0.0000028316,0.0000028269,0.0000028315, +0.0000028415,0.0000028481,0.0000028467,0.0000028410,0.0000028383, +0.0000028378,0.0000028352,0.0000028299,0.0000028258,0.0000028249, +0.0000028262,0.0000028295,0.0000028328,0.0000028338,0.0000028328, +0.0000028323,0.0000028307,0.0000028264,0.0000028200,0.0000028145, +0.0000028129,0.0000028120,0.0000028086,0.0000028039,0.0000027994, +0.0000027985,0.0000028052,0.0000028160,0.0000028250,0.0000028301, +0.0000028336,0.0000028381,0.0000028416,0.0000028450,0.0000028460, +0.0000028414,0.0000028284,0.0000028191,0.0000028249,0.0000028487, +0.0000028696,0.0000028749,0.0000028746,0.0000028750,0.0000028738, +0.0000028648,0.0000028512,0.0000028451,0.0000028444,0.0000028404, +0.0000028286,0.0000028134,0.0000028034,0.0000027992,0.0000027966, +0.0000027928,0.0000027883,0.0000027840,0.0000027793,0.0000027787, +0.0000027828,0.0000027879,0.0000027911,0.0000027949,0.0000028031, +0.0000028151,0.0000028258,0.0000028342,0.0000028428,0.0000028530, +0.0000028623,0.0000028674,0.0000028688,0.0000028684,0.0000028661, +0.0000028623,0.0000028602,0.0000028617,0.0000028673,0.0000028740, +0.0000028796,0.0000028836,0.0000028856,0.0000028870,0.0000028890, +0.0000028900,0.0000028883,0.0000028825,0.0000028755,0.0000028715, +0.0000028704,0.0000028676,0.0000028606,0.0000028518,0.0000028442, +0.0000028388,0.0000028368,0.0000028383,0.0000028436,0.0000028515, +0.0000028618,0.0000028721,0.0000028799,0.0000028860,0.0000028929, +0.0000029006,0.0000029056,0.0000029073,0.0000029091,0.0000029097, +0.0000029057,0.0000029002,0.0000028987,0.0000028991,0.0000028990, +0.0000028966,0.0000028929,0.0000028895,0.0000028878,0.0000028895, +0.0000028931,0.0000028939,0.0000028924,0.0000028915,0.0000028916, +0.0000028917,0.0000028939,0.0000028974,0.0000028985,0.0000028995, +0.0000029040,0.0000029124,0.0000029189,0.0000029196,0.0000029134, +0.0000029030,0.0000028939,0.0000028886,0.0000028885,0.0000028943, +0.0000029037,0.0000029121,0.0000029148,0.0000029123,0.0000029064, +0.0000029017,0.0000028986,0.0000028970,0.0000028978,0.0000028994, +0.0000028992,0.0000028964,0.0000028925,0.0000028867,0.0000028794, +0.0000028742,0.0000028739,0.0000028774,0.0000028836,0.0000028889, +0.0000028924,0.0000028945,0.0000028955,0.0000028962,0.0000028953, +0.0000028925,0.0000028876,0.0000028803,0.0000028718,0.0000028632, +0.0000028558,0.0000028503,0.0000028459,0.0000028446,0.0000028462, +0.0000028501,0.0000028556,0.0000028636,0.0000028734,0.0000028811, +0.0000028859,0.0000028871,0.0000028845,0.0000028777,0.0000028687, +0.0000028590,0.0000028510,0.0000028467,0.0000028458,0.0000028492, +0.0000028540,0.0000028567,0.0000028569,0.0000028543,0.0000028514, +0.0000028484,0.0000028453,0.0000028465,0.0000028524,0.0000028595, +0.0000028641,0.0000028661,0.0000028682,0.0000028721,0.0000028778, +0.0000028788,0.0000028709,0.0000028579,0.0000028440,0.0000028318, +0.0000028251,0.0000028251,0.0000028280,0.0000028296,0.0000028294, +0.0000028327,0.0000028444,0.0000028554,0.0000028601,0.0000028658, +0.0000028719,0.0000028712,0.0000028674,0.0000028676,0.0000028670, +0.0000028623,0.0000028595,0.0000028616,0.0000028592,0.0000028492, +0.0000028449,0.0000028503,0.0000028566,0.0000028554,0.0000028517, +0.0000028528,0.0000028559,0.0000028626,0.0000028728,0.0000028813, +0.0000028850,0.0000028852,0.0000028825,0.0000028782,0.0000028757, +0.0000028750,0.0000028740,0.0000028746,0.0000028738,0.0000028705, +0.0000028664,0.0000028651,0.0000028669,0.0000028740,0.0000028800, +0.0000028829,0.0000028834,0.0000028787,0.0000028726,0.0000028704, +0.0000028683,0.0000028687,0.0000028743,0.0000028833,0.0000028882, +0.0000028880,0.0000028829,0.0000028702,0.0000028459,0.0000028255, +0.0000028258,0.0000028471,0.0000028634,0.0000028698,0.0000028755, +0.0000028801,0.0000028815,0.0000028799,0.0000028751,0.0000028721, +0.0000028753,0.0000028826,0.0000028664,0.0000028459,0.0000028454, +0.0000028548,0.0000028931,0.0000029161,0.0000029123,0.0000028941, +0.0000028844,0.0000028850,0.0000028853,0.0000028861,0.0000028881, +0.0000028879,0.0000028824,0.0000028735,0.0000028622,0.0000028459, +0.0000028305,0.0000028252,0.0000028221,0.0000028139,0.0000028048, +0.0000027972,0.0000027902,0.0000027843,0.0000027794,0.0000027787, +0.0000027807,0.0000027792,0.0000027733,0.0000027732,0.0000027829, +0.0000027931,0.0000027942,0.0000027837,0.0000027675,0.0000027679, +0.0000027879,0.0000028133,0.0000028271,0.0000028273,0.0000028247, +0.0000028265,0.0000028311,0.0000028338,0.0000028368,0.0000028432, +0.0000028501,0.0000028521,0.0000028498,0.0000028444,0.0000028382, +0.0000028340,0.0000028325,0.0000028324,0.0000028328,0.0000028335, +0.0000028343,0.0000028358,0.0000028384,0.0000028423,0.0000028460, +0.0000028477,0.0000028478,0.0000028477,0.0000028479,0.0000028497, +0.0000028526,0.0000028544,0.0000028544,0.0000028530,0.0000028503, +0.0000028476,0.0000028448,0.0000028404,0.0000028343,0.0000028281, +0.0000028228,0.0000028185,0.0000028166,0.0000028180,0.0000028229, +0.0000028292,0.0000028349,0.0000028392,0.0000028426,0.0000028453, +0.0000028474,0.0000028495,0.0000028523,0.0000028558,0.0000028586, +0.0000028601,0.0000028611,0.0000028622,0.0000028616,0.0000028564, +0.0000028497,0.0000028467,0.0000028484,0.0000028519,0.0000028546, +0.0000028550,0.0000028530,0.0000028507,0.0000028485,0.0000028438, +0.0000028357,0.0000028267,0.0000028207,0.0000028188,0.0000028187, +0.0000028195,0.0000028184,0.0000028214,0.0000028281,0.0000028391, +0.0000028513,0.0000028627,0.0000028699,0.0000028719,0.0000028684, +0.0000028584,0.0000028494,0.0000028461,0.0000028447,0.0000028423, +0.0000028359,0.0000028287,0.0000028315,0.0000028452,0.0000028576, +0.0000028648,0.0000028697,0.0000028716,0.0000028682,0.0000028540, +0.0000028345,0.0000028173,0.0000028079,0.0000028092,0.0000028154, +0.0000028239,0.0000028320,0.0000028284,0.0000028179,0.0000028147, +0.0000028203,0.0000028373,0.0000028519,0.0000028545,0.0000028542, +0.0000028552,0.0000028576,0.0000028603,0.0000028622,0.0000028632, +0.0000028644,0.0000028673,0.0000028697,0.0000028687,0.0000028674, +0.0000028677,0.0000028683,0.0000028720,0.0000028722,0.0000028606, +0.0000028440,0.0000028374,0.0000028314,0.0000028289,0.0000028362, +0.0000028631,0.0000028849,0.0000028877,0.0000028879,0.0000028871, +0.0000028793,0.0000028628,0.0000028419,0.0000028252,0.0000028275, +0.0000028355,0.0000028323,0.0000028203,0.0000028080,0.0000027999, +0.0000028062,0.0000027989,0.0000027916,0.0000027909,0.0000027916, +0.0000027938,0.0000027963,0.0000027962,0.0000027946,0.0000027920, +0.0000027900,0.0000027897,0.0000027891,0.0000027886,0.0000027904, +0.0000027950,0.0000027978,0.0000027976,0.0000027944,0.0000027914, +0.0000027897,0.0000027899,0.0000027929,0.0000028035,0.0000028154, +0.0000028234,0.0000028247,0.0000028224,0.0000028192,0.0000028137, +0.0000028049,0.0000027941,0.0000027834,0.0000027747,0.0000027690, +0.0000027654,0.0000027638,0.0000027648,0.0000027668,0.0000027672, +0.0000027671,0.0000027691,0.0000027741,0.0000027789,0.0000027827, +0.0000027875,0.0000027940,0.0000028003,0.0000028051,0.0000028084, +0.0000028102,0.0000028104,0.0000028085,0.0000028047,0.0000027992, +0.0000027918,0.0000027836,0.0000027756,0.0000027684,0.0000027617, +0.0000027575,0.0000027551,0.0000027527,0.0000027512,0.0000027518, +0.0000027530,0.0000027527,0.0000027508,0.0000027481,0.0000027456, +0.0000027438,0.0000027421,0.0000027393,0.0000027345,0.0000027296, +0.0000027279,0.0000027302,0.0000027363,0.0000027416,0.0000027425, +0.0000027397,0.0000027363,0.0000027362,0.0000027390,0.0000027399, +0.0000027351,0.0000027252,0.0000027169,0.0000027156,0.0000027174, +0.0000027197,0.0000027211,0.0000027237,0.0000027280,0.0000027325, +0.0000027362,0.0000027381,0.0000027381,0.0000027367,0.0000027340, +0.0000027330,0.0000027356,0.0000027410,0.0000027453,0.0000027457, +0.0000027389,0.0000027216,0.0000026953,0.0000026744,0.0000026580, +0.0000026465,0.0000026520,0.0000026767,0.0000026850,0.0000026789, +0.0000026877,0.0000027197,0.0000027452,0.0000027532,0.0000027555, +0.0000027673,0.0000028042,0.0000028230,0.0000028239,0.0000028271, +0.0000028244,0.0000028137,0.0000028066,0.0000028030,0.0000028064, +0.0000028135,0.0000028136,0.0000028074,0.0000028008,0.0000027931, +0.0000027841,0.0000027740,0.0000027686,0.0000027658,0.0000027598, +0.0000027604,0.0000027698,0.0000027826,0.0000027898,0.0000027966, +0.0000027932,0.0000027866,0.0000027883,0.0000027960,0.0000028037, +0.0000028147,0.0000028302,0.0000028448,0.0000028460,0.0000028406, +0.0000028425,0.0000028394,0.0000028288,0.0000028203,0.0000028113, +0.0000028127,0.0000028120,0.0000028063,0.0000027978,0.0000027976, +0.0000027927,0.0000027749,0.0000027556,0.0000027531,0.0000027574, +0.0000027567,0.0000027595,0.0000027544,0.0000027475,0.0000027400, +0.0000027297,0.0000027239,0.0000027238,0.0000027252,0.0000027241, +0.0000027204,0.0000027179,0.0000027147,0.0000027081,0.0000026983, +0.0000026917,0.0000026892,0.0000026895,0.0000026912,0.0000026916, +0.0000026906,0.0000026890,0.0000026873,0.0000026853,0.0000026840, +0.0000026829,0.0000026815,0.0000026792,0.0000026774,0.0000026760, +0.0000026729,0.0000026689,0.0000026653,0.0000026618,0.0000026587, +0.0000026560,0.0000026525,0.0000026480,0.0000026428,0.0000026373, +0.0000026354,0.0000026376,0.0000026415,0.0000026449,0.0000026480, +0.0000026508,0.0000026530,0.0000026550,0.0000026560,0.0000026575, +0.0000026589,0.0000026623,0.0000026693,0.0000026765,0.0000026832, +0.0000026877,0.0000026902,0.0000026893,0.0000026911,0.0000026961, +0.0000027010,0.0000027062,0.0000027087,0.0000027128,0.0000027182, +0.0000027228,0.0000027248,0.0000027265,0.0000027253,0.0000027227, +0.0000027198,0.0000027180,0.0000027166,0.0000027141,0.0000027111, +0.0000027077,0.0000027060,0.0000027046,0.0000027025,0.0000026998, +0.0000026953,0.0000026876,0.0000026783,0.0000026709,0.0000026671, +0.0000026682,0.0000026726,0.0000026780,0.0000026854,0.0000026986, +0.0000027103,0.0000027131,0.0000027177,0.0000027399,0.0000027764, +0.0000028093,0.0000028270,0.0000028313,0.0000028284,0.0000028187, +0.0000028048,0.0000027997,0.0000028108,0.0000028248,0.0000028262, +0.0000028191,0.0000028121,0.0000028111,0.0000028083,0.0000028041, +0.0000028060,0.0000028139,0.0000028232,0.0000028291,0.0000028322, +0.0000028357,0.0000028375,0.0000028340,0.0000028266,0.0000028245, +0.0000028314,0.0000028427,0.0000028472,0.0000028438,0.0000028385, +0.0000028371,0.0000028371,0.0000028355,0.0000028312,0.0000028267, +0.0000028248,0.0000028260,0.0000028301,0.0000028351,0.0000028372, +0.0000028370,0.0000028358,0.0000028336,0.0000028294,0.0000028243, +0.0000028200,0.0000028177,0.0000028157,0.0000028122,0.0000028077, +0.0000028035,0.0000028039,0.0000028097,0.0000028170,0.0000028233, +0.0000028282,0.0000028306,0.0000028338,0.0000028382,0.0000028422, +0.0000028401,0.0000028306,0.0000028228,0.0000028314,0.0000028572, +0.0000028762,0.0000028798,0.0000028805,0.0000028829,0.0000028805, +0.0000028705,0.0000028582,0.0000028521,0.0000028516,0.0000028479, +0.0000028370,0.0000028218,0.0000028090,0.0000028020,0.0000027974, +0.0000027928,0.0000027874,0.0000027812,0.0000027773,0.0000027773, +0.0000027826,0.0000027886,0.0000027919,0.0000027953,0.0000028023, +0.0000028116,0.0000028209,0.0000028297,0.0000028399,0.0000028501, +0.0000028586,0.0000028651,0.0000028692,0.0000028707,0.0000028701, +0.0000028669,0.0000028604,0.0000028538,0.0000028522,0.0000028568, +0.0000028649,0.0000028735,0.0000028800,0.0000028839,0.0000028865, +0.0000028895,0.0000028916,0.0000028902,0.0000028847,0.0000028778, +0.0000028737,0.0000028723,0.0000028706,0.0000028662,0.0000028594, +0.0000028512,0.0000028427,0.0000028378,0.0000028380,0.0000028411, +0.0000028466,0.0000028563,0.0000028687,0.0000028801,0.0000028895, +0.0000028976,0.0000029035,0.0000029070,0.0000029101,0.0000029130, +0.0000029125,0.0000029075,0.0000029028,0.0000029015,0.0000029009, +0.0000028984,0.0000028943,0.0000028902,0.0000028861,0.0000028822, +0.0000028813,0.0000028833,0.0000028856,0.0000028858,0.0000028860, +0.0000028853,0.0000028839,0.0000028846,0.0000028884,0.0000028932, +0.0000028975,0.0000029020,0.0000029089,0.0000029164,0.0000029188, +0.0000029152,0.0000029056,0.0000028958,0.0000028890,0.0000028877, +0.0000028921,0.0000029008,0.0000029094,0.0000029133,0.0000029118, +0.0000029068,0.0000029025,0.0000028998,0.0000028974,0.0000028956, +0.0000028945,0.0000028921,0.0000028882,0.0000028845,0.0000028797, +0.0000028711,0.0000028620,0.0000028596,0.0000028631,0.0000028720, +0.0000028804,0.0000028855,0.0000028888,0.0000028916,0.0000028941, +0.0000028961,0.0000028953,0.0000028914,0.0000028851,0.0000028773, +0.0000028691,0.0000028615,0.0000028558,0.0000028521,0.0000028501, +0.0000028514,0.0000028554,0.0000028601,0.0000028649,0.0000028703, +0.0000028763,0.0000028821,0.0000028846,0.0000028829,0.0000028751, +0.0000028648,0.0000028539,0.0000028427,0.0000028338,0.0000028285, +0.0000028266,0.0000028286,0.0000028333,0.0000028385,0.0000028418, +0.0000028428,0.0000028440,0.0000028448,0.0000028440,0.0000028450, +0.0000028505,0.0000028576,0.0000028620,0.0000028643,0.0000028678, +0.0000028737,0.0000028809,0.0000028843,0.0000028776,0.0000028626, +0.0000028459,0.0000028332,0.0000028280,0.0000028284,0.0000028318, +0.0000028338,0.0000028340,0.0000028365,0.0000028477,0.0000028602, +0.0000028664,0.0000028718,0.0000028794,0.0000028796,0.0000028729, +0.0000028693,0.0000028679,0.0000028626,0.0000028582,0.0000028592, +0.0000028580,0.0000028493,0.0000028459,0.0000028518,0.0000028576, +0.0000028559,0.0000028528,0.0000028549,0.0000028593,0.0000028702, +0.0000028822,0.0000028882,0.0000028887,0.0000028857,0.0000028804, +0.0000028757,0.0000028750,0.0000028750,0.0000028736,0.0000028742, +0.0000028764,0.0000028766,0.0000028735,0.0000028694,0.0000028698, +0.0000028774,0.0000028817,0.0000028838,0.0000028837,0.0000028786, +0.0000028737,0.0000028722,0.0000028689,0.0000028674,0.0000028707, +0.0000028790,0.0000028839,0.0000028836,0.0000028793,0.0000028706, +0.0000028535,0.0000028323,0.0000028272,0.0000028451,0.0000028648, +0.0000028731,0.0000028785,0.0000028826,0.0000028845,0.0000028836, +0.0000028788,0.0000028744,0.0000028756,0.0000028810,0.0000028660, +0.0000028446,0.0000028439,0.0000028525,0.0000028880,0.0000029145, +0.0000029147,0.0000029002,0.0000028894,0.0000028884,0.0000028891, +0.0000028897,0.0000028920,0.0000028931,0.0000028896,0.0000028825, +0.0000028743,0.0000028637,0.0000028465,0.0000028294,0.0000028236, +0.0000028182,0.0000028094,0.0000028012,0.0000027924,0.0000027851, +0.0000027774,0.0000027742,0.0000027756,0.0000027767,0.0000027742, +0.0000027683,0.0000027671,0.0000027765,0.0000027864,0.0000027879, +0.0000027793,0.0000027647,0.0000027669,0.0000027897,0.0000028157, +0.0000028251,0.0000028233,0.0000028221,0.0000028253,0.0000028305, +0.0000028331,0.0000028340,0.0000028357,0.0000028388,0.0000028419, +0.0000028432,0.0000028412,0.0000028382,0.0000028364,0.0000028351, +0.0000028337,0.0000028329,0.0000028334,0.0000028359,0.0000028397, +0.0000028433,0.0000028453,0.0000028455,0.0000028453,0.0000028462, +0.0000028487,0.0000028517,0.0000028541,0.0000028545,0.0000028526, +0.0000028492,0.0000028457,0.0000028421,0.0000028379,0.0000028326, +0.0000028258,0.0000028179,0.0000028110,0.0000028076,0.0000028088, +0.0000028137,0.0000028203,0.0000028281,0.0000028352,0.0000028408, +0.0000028446,0.0000028471,0.0000028483,0.0000028486,0.0000028490, +0.0000028503,0.0000028519,0.0000028526,0.0000028526,0.0000028530, +0.0000028537,0.0000028532,0.0000028503,0.0000028481,0.0000028493, +0.0000028525,0.0000028558,0.0000028585,0.0000028592,0.0000028572, +0.0000028537,0.0000028491,0.0000028424,0.0000028341,0.0000028264, +0.0000028228,0.0000028233,0.0000028271,0.0000028300,0.0000028282, +0.0000028254,0.0000028254,0.0000028280,0.0000028377,0.0000028525, +0.0000028652,0.0000028711,0.0000028708,0.0000028656,0.0000028563, +0.0000028485,0.0000028441,0.0000028419,0.0000028373,0.0000028294, +0.0000028298,0.0000028435,0.0000028577,0.0000028646,0.0000028685, +0.0000028706,0.0000028691,0.0000028575,0.0000028391,0.0000028209, +0.0000028102,0.0000028111,0.0000028172,0.0000028216,0.0000028286, +0.0000028282,0.0000028166,0.0000028075,0.0000028127,0.0000028313, +0.0000028481,0.0000028510,0.0000028481,0.0000028451,0.0000028464, +0.0000028492,0.0000028509,0.0000028524,0.0000028554,0.0000028598, +0.0000028632,0.0000028623,0.0000028596,0.0000028608,0.0000028661, +0.0000028714,0.0000028714,0.0000028588,0.0000028411,0.0000028324, +0.0000028272,0.0000028243,0.0000028285,0.0000028505,0.0000028749, +0.0000028801,0.0000028802,0.0000028796,0.0000028756,0.0000028652, +0.0000028467,0.0000028271,0.0000028240,0.0000028347,0.0000028335, +0.0000028244,0.0000028108,0.0000027985,0.0000028052,0.0000028022, +0.0000027950,0.0000027950,0.0000027953,0.0000027943,0.0000027928, +0.0000027923,0.0000027937,0.0000027926,0.0000027901,0.0000027883, +0.0000027865,0.0000027860,0.0000027877,0.0000027932,0.0000027986, +0.0000028031,0.0000028043,0.0000028055,0.0000028046,0.0000028021, +0.0000027994,0.0000028031,0.0000028079,0.0000028120,0.0000028141, +0.0000028179,0.0000028220,0.0000028254,0.0000028248,0.0000028225, +0.0000028196,0.0000028127,0.0000028012,0.0000027904,0.0000027841, +0.0000027815,0.0000027801,0.0000027781,0.0000027742,0.0000027707, +0.0000027697,0.0000027721,0.0000027769,0.0000027791,0.0000027782, +0.0000027768,0.0000027790,0.0000027862,0.0000027944,0.0000027992, +0.0000028000,0.0000027982,0.0000027962,0.0000027936,0.0000027885, +0.0000027802,0.0000027719,0.0000027648,0.0000027590,0.0000027540, +0.0000027496,0.0000027447,0.0000027409,0.0000027395,0.0000027396, +0.0000027392,0.0000027368,0.0000027337,0.0000027317,0.0000027305, +0.0000027285,0.0000027257,0.0000027228,0.0000027198,0.0000027186, +0.0000027215,0.0000027296,0.0000027373,0.0000027389,0.0000027346, +0.0000027302,0.0000027305,0.0000027349,0.0000027370,0.0000027319, +0.0000027216,0.0000027138,0.0000027131,0.0000027159,0.0000027194, +0.0000027213,0.0000027221,0.0000027236,0.0000027275,0.0000027338, +0.0000027381,0.0000027390,0.0000027376,0.0000027352,0.0000027351, +0.0000027396,0.0000027449,0.0000027480,0.0000027456,0.0000027364, +0.0000027158,0.0000026895,0.0000026681,0.0000026510,0.0000026455, +0.0000026648,0.0000026816,0.0000026780,0.0000026801,0.0000027111, +0.0000027438,0.0000027555,0.0000027572,0.0000027591,0.0000027860, +0.0000028178,0.0000028228,0.0000028251,0.0000028269,0.0000028187, +0.0000028113,0.0000028054,0.0000028032,0.0000028080,0.0000028106, +0.0000028063,0.0000028033,0.0000027986,0.0000027902,0.0000027801, +0.0000027705,0.0000027664,0.0000027622,0.0000027593,0.0000027639, +0.0000027739,0.0000027842,0.0000027910,0.0000027954,0.0000027907, +0.0000027872,0.0000027907,0.0000027971,0.0000028012,0.0000028086, +0.0000028226,0.0000028390,0.0000028438,0.0000028386,0.0000028386, +0.0000028350,0.0000028249,0.0000028160,0.0000028097,0.0000028129, +0.0000028115,0.0000028046,0.0000027966,0.0000027955,0.0000027856, +0.0000027662,0.0000027527,0.0000027540,0.0000027556,0.0000027566, +0.0000027570,0.0000027494,0.0000027427,0.0000027320,0.0000027226, +0.0000027209,0.0000027222,0.0000027226,0.0000027211,0.0000027198, +0.0000027188,0.0000027114,0.0000026986,0.0000026869,0.0000026810, +0.0000026806,0.0000026821,0.0000026838,0.0000026853,0.0000026859, +0.0000026854,0.0000026836,0.0000026806,0.0000026772,0.0000026726, +0.0000026675,0.0000026620,0.0000026583,0.0000026576,0.0000026573, +0.0000026587,0.0000026595,0.0000026576,0.0000026540,0.0000026505, +0.0000026466,0.0000026413,0.0000026352,0.0000026303,0.0000026294, +0.0000026324,0.0000026365,0.0000026395,0.0000026425,0.0000026450, +0.0000026467,0.0000026479,0.0000026488,0.0000026502,0.0000026520, +0.0000026553,0.0000026611,0.0000026663,0.0000026714,0.0000026735, +0.0000026747,0.0000026721,0.0000026729,0.0000026766,0.0000026811, +0.0000026848,0.0000026859,0.0000026888,0.0000026949,0.0000027027, +0.0000027080,0.0000027143,0.0000027177,0.0000027188,0.0000027187, +0.0000027178,0.0000027175,0.0000027175,0.0000027164,0.0000027130, +0.0000027092,0.0000027041,0.0000027002,0.0000026989,0.0000026985, +0.0000026968,0.0000026944,0.0000026877,0.0000026762,0.0000026678, +0.0000026677,0.0000026735,0.0000026780,0.0000026866,0.0000026993, +0.0000027086,0.0000027120,0.0000027126,0.0000027267,0.0000027563, +0.0000027893,0.0000028149,0.0000028272,0.0000028263,0.0000028155, +0.0000027999,0.0000027987,0.0000028136,0.0000028276,0.0000028290, +0.0000028223,0.0000028176,0.0000028180,0.0000028163,0.0000028125, +0.0000028115,0.0000028160,0.0000028219,0.0000028264,0.0000028290, +0.0000028310,0.0000028317,0.0000028283,0.0000028230,0.0000028228, +0.0000028313,0.0000028430,0.0000028454,0.0000028403,0.0000028355, +0.0000028345,0.0000028348,0.0000028345,0.0000028310,0.0000028276, +0.0000028253,0.0000028265,0.0000028317,0.0000028376,0.0000028403, +0.0000028393,0.0000028367,0.0000028343,0.0000028321,0.0000028281, +0.0000028234,0.0000028206,0.0000028185,0.0000028148,0.0000028096, +0.0000028063,0.0000028066,0.0000028104,0.0000028166,0.0000028228, +0.0000028262,0.0000028282,0.0000028331,0.0000028384,0.0000028379, +0.0000028313,0.0000028298,0.0000028418,0.0000028667,0.0000028815, +0.0000028840,0.0000028857,0.0000028893,0.0000028877,0.0000028760, +0.0000028641,0.0000028593,0.0000028580,0.0000028543,0.0000028444, +0.0000028294,0.0000028162,0.0000028072,0.0000028016,0.0000027964, +0.0000027907,0.0000027829,0.0000027759,0.0000027761,0.0000027836, +0.0000027912,0.0000027948,0.0000027972,0.0000028027,0.0000028098, +0.0000028162,0.0000028235,0.0000028332,0.0000028442,0.0000028535, +0.0000028606,0.0000028663,0.0000028702,0.0000028719,0.0000028710, +0.0000028666,0.0000028588,0.0000028500,0.0000028462,0.0000028493, +0.0000028583,0.0000028689,0.0000028774,0.0000028827,0.0000028866, +0.0000028906,0.0000028931,0.0000028918,0.0000028862,0.0000028790, +0.0000028744,0.0000028726,0.0000028709,0.0000028686,0.0000028655, +0.0000028608,0.0000028537,0.0000028473,0.0000028444,0.0000028439, +0.0000028462,0.0000028547,0.0000028683,0.0000028831,0.0000028953, +0.0000029028,0.0000029063,0.0000029090,0.0000029127,0.0000029148, +0.0000029127,0.0000029075,0.0000029042,0.0000029028,0.0000028999, +0.0000028947,0.0000028893,0.0000028852,0.0000028821,0.0000028781, +0.0000028748,0.0000028745,0.0000028758,0.0000028773,0.0000028798, +0.0000028805,0.0000028784,0.0000028762,0.0000028767,0.0000028805, +0.0000028878,0.0000028962,0.0000029033,0.0000029095,0.0000029145, +0.0000029147,0.0000029090,0.0000029000,0.0000028922,0.0000028880, +0.0000028897,0.0000028970,0.0000029053,0.0000029098,0.0000029093, +0.0000029053,0.0000029016,0.0000029000,0.0000028981,0.0000028954, +0.0000028926,0.0000028887,0.0000028825,0.0000028766,0.0000028722, +0.0000028662,0.0000028581,0.0000028535,0.0000028537,0.0000028608, +0.0000028715,0.0000028789,0.0000028827,0.0000028858,0.0000028898, +0.0000028944,0.0000028976,0.0000028966,0.0000028921,0.0000028861, +0.0000028785,0.0000028708,0.0000028645,0.0000028597,0.0000028558, +0.0000028547,0.0000028564,0.0000028595,0.0000028625,0.0000028651, +0.0000028690,0.0000028733,0.0000028752,0.0000028726,0.0000028631, +0.0000028492,0.0000028359,0.0000028231,0.0000028118,0.0000028039, +0.0000027996,0.0000027982,0.0000028004,0.0000028071,0.0000028144, +0.0000028199,0.0000028252,0.0000028330,0.0000028402,0.0000028428, +0.0000028435,0.0000028483,0.0000028556,0.0000028606,0.0000028634, +0.0000028679,0.0000028747,0.0000028823,0.0000028866,0.0000028830, +0.0000028688,0.0000028511,0.0000028379,0.0000028333,0.0000028340, +0.0000028365,0.0000028380,0.0000028387,0.0000028403,0.0000028494, +0.0000028631,0.0000028715,0.0000028764,0.0000028854,0.0000028877, +0.0000028797,0.0000028716,0.0000028680,0.0000028632,0.0000028585, +0.0000028582,0.0000028579,0.0000028516,0.0000028473,0.0000028511, +0.0000028574,0.0000028561,0.0000028547,0.0000028572,0.0000028616, +0.0000028749,0.0000028881,0.0000028923,0.0000028901,0.0000028856, +0.0000028803,0.0000028766,0.0000028758,0.0000028747,0.0000028733, +0.0000028752,0.0000028819,0.0000028837,0.0000028777,0.0000028705, +0.0000028715,0.0000028792,0.0000028830,0.0000028853,0.0000028837, +0.0000028785,0.0000028756,0.0000028739,0.0000028693,0.0000028659, +0.0000028674,0.0000028742,0.0000028784,0.0000028776,0.0000028732, +0.0000028678,0.0000028590,0.0000028414,0.0000028315,0.0000028434, +0.0000028641,0.0000028754,0.0000028813,0.0000028847,0.0000028868, +0.0000028869,0.0000028830,0.0000028763,0.0000028756,0.0000028795, +0.0000028662,0.0000028443,0.0000028427,0.0000028504,0.0000028822, +0.0000029119,0.0000029154,0.0000029056,0.0000028947,0.0000028915, +0.0000028924,0.0000028925,0.0000028938,0.0000028953,0.0000028940, +0.0000028901,0.0000028826,0.0000028736,0.0000028633,0.0000028421, +0.0000028250,0.0000028200,0.0000028138,0.0000028065,0.0000027973, +0.0000027888,0.0000027789,0.0000027714,0.0000027705,0.0000027715, +0.0000027725,0.0000027698,0.0000027636,0.0000027620,0.0000027701, +0.0000027792,0.0000027814,0.0000027747,0.0000027615,0.0000027658, +0.0000027925,0.0000028156,0.0000028201,0.0000028183,0.0000028187, +0.0000028235,0.0000028293,0.0000028324,0.0000028321,0.0000028303, +0.0000028292,0.0000028293,0.0000028296,0.0000028300,0.0000028307, +0.0000028314,0.0000028324,0.0000028343,0.0000028371,0.0000028401, +0.0000028421,0.0000028426,0.0000028425,0.0000028432,0.0000028450, +0.0000028473,0.0000028495,0.0000028517,0.0000028525,0.0000028508, +0.0000028471,0.0000028438,0.0000028411,0.0000028372,0.0000028317, +0.0000028251,0.0000028175,0.0000028096,0.0000028040,0.0000028035, +0.0000028079,0.0000028152,0.0000028226,0.0000028291,0.0000028347, +0.0000028388,0.0000028418,0.0000028431,0.0000028434,0.0000028433, +0.0000028430,0.0000028435,0.0000028453,0.0000028462,0.0000028459, +0.0000028453,0.0000028449,0.0000028447,0.0000028441,0.0000028438, +0.0000028458,0.0000028496,0.0000028529,0.0000028563,0.0000028598, +0.0000028610,0.0000028593,0.0000028554,0.0000028498,0.0000028423, +0.0000028346,0.0000028280,0.0000028245,0.0000028256,0.0000028311, +0.0000028363,0.0000028365,0.0000028325,0.0000028276,0.0000028265, +0.0000028329,0.0000028477,0.0000028609,0.0000028686,0.0000028707, +0.0000028692,0.0000028609,0.0000028496,0.0000028431,0.0000028416, +0.0000028387,0.0000028311,0.0000028301,0.0000028405,0.0000028547, +0.0000028617,0.0000028650,0.0000028671,0.0000028666,0.0000028586, +0.0000028445,0.0000028281,0.0000028157,0.0000028141,0.0000028192, +0.0000028221,0.0000028262,0.0000028296,0.0000028185,0.0000028045, +0.0000028069,0.0000028263,0.0000028448,0.0000028483,0.0000028427, +0.0000028345,0.0000028338,0.0000028369,0.0000028384,0.0000028404, +0.0000028459,0.0000028531,0.0000028582,0.0000028583,0.0000028542, +0.0000028533,0.0000028604,0.0000028687,0.0000028691,0.0000028568, +0.0000028388,0.0000028281,0.0000028236,0.0000028212,0.0000028229, +0.0000028379,0.0000028607,0.0000028700,0.0000028712,0.0000028697, +0.0000028674,0.0000028636,0.0000028508,0.0000028313,0.0000028204, +0.0000028303,0.0000028337,0.0000028283,0.0000028151,0.0000028009, +0.0000028040,0.0000028058,0.0000027980,0.0000027986,0.0000027987, +0.0000027952,0.0000027903,0.0000027914,0.0000027959,0.0000027957, +0.0000027926,0.0000027893,0.0000027875,0.0000027868,0.0000027879, +0.0000027932,0.0000028013,0.0000028090,0.0000028138,0.0000028165, +0.0000028176,0.0000028141,0.0000028107,0.0000028119,0.0000028120, +0.0000028112,0.0000028102,0.0000028097,0.0000028111,0.0000028131, +0.0000028161,0.0000028198,0.0000028223,0.0000028216,0.0000028182, +0.0000028134,0.0000028097,0.0000028065,0.0000028020,0.0000027966, +0.0000027912,0.0000027866,0.0000027829,0.0000027810,0.0000027804, +0.0000027798,0.0000027786,0.0000027763,0.0000027725,0.0000027684, +0.0000027682,0.0000027759,0.0000027851,0.0000027904,0.0000027920, +0.0000027919,0.0000027909,0.0000027872,0.0000027792,0.0000027699, +0.0000027626,0.0000027575,0.0000027523,0.0000027466,0.0000027408, +0.0000027357,0.0000027329,0.0000027323,0.0000027315,0.0000027283, +0.0000027245,0.0000027228,0.0000027219,0.0000027191,0.0000027152, +0.0000027118,0.0000027092,0.0000027082,0.0000027105,0.0000027196, +0.0000027305,0.0000027343,0.0000027297,0.0000027240,0.0000027239, +0.0000027294,0.0000027319,0.0000027274,0.0000027164,0.0000027083, +0.0000027072,0.0000027115,0.0000027173,0.0000027209,0.0000027212, +0.0000027208,0.0000027237,0.0000027306,0.0000027368,0.0000027388, +0.0000027367,0.0000027350,0.0000027370,0.0000027425,0.0000027472, +0.0000027484,0.0000027435,0.0000027323,0.0000027096,0.0000026828, +0.0000026599,0.0000026458,0.0000026528,0.0000026749,0.0000026757, +0.0000026752,0.0000027005,0.0000027406,0.0000027583,0.0000027603, +0.0000027596,0.0000027716,0.0000028071,0.0000028217,0.0000028225, +0.0000028262,0.0000028235,0.0000028150,0.0000028103,0.0000028042, +0.0000028031,0.0000028066,0.0000028059,0.0000028018,0.0000028005, +0.0000027948,0.0000027860,0.0000027755,0.0000027670,0.0000027625, +0.0000027597,0.0000027615,0.0000027674,0.0000027766,0.0000027866, +0.0000027926,0.0000027937,0.0000027893,0.0000027885,0.0000027929, +0.0000027981,0.0000027989,0.0000028026,0.0000028141,0.0000028325, +0.0000028413,0.0000028370,0.0000028351,0.0000028309,0.0000028209, +0.0000028120,0.0000028085,0.0000028121,0.0000028102,0.0000028021, +0.0000027948,0.0000027910,0.0000027768,0.0000027587,0.0000027521, +0.0000027540,0.0000027534,0.0000027570,0.0000027536,0.0000027467, +0.0000027370,0.0000027237,0.0000027178,0.0000027182,0.0000027203, +0.0000027192,0.0000027189,0.0000027197,0.0000027152,0.0000027013, +0.0000026861,0.0000026757,0.0000026705,0.0000026716,0.0000026770, +0.0000026820,0.0000026846,0.0000026838,0.0000026795,0.0000026732, +0.0000026667,0.0000026618,0.0000026567,0.0000026516,0.0000026473, +0.0000026463,0.0000026501,0.0000026546,0.0000026585,0.0000026597, +0.0000026571,0.0000026512,0.0000026446,0.0000026377,0.0000026306, +0.0000026243,0.0000026216,0.0000026219,0.0000026243,0.0000026273, +0.0000026299,0.0000026326,0.0000026349,0.0000026368,0.0000026383, +0.0000026396,0.0000026413,0.0000026448,0.0000026503,0.0000026575, +0.0000026640,0.0000026702,0.0000026731,0.0000026725,0.0000026715, +0.0000026700,0.0000026709,0.0000026724,0.0000026716,0.0000026686, +0.0000026671,0.0000026698,0.0000026769,0.0000026816,0.0000026877, +0.0000026918,0.0000026947,0.0000026984,0.0000027026,0.0000027066, +0.0000027111,0.0000027137,0.0000027132,0.0000027118,0.0000027097, +0.0000027056,0.0000027005,0.0000026963,0.0000026946,0.0000026964, +0.0000026982,0.0000026948,0.0000026834,0.0000026720,0.0000026696, +0.0000026730,0.0000026781,0.0000026868,0.0000026987,0.0000027083, +0.0000027107,0.0000027094,0.0000027160,0.0000027373,0.0000027646, +0.0000027954,0.0000028175,0.0000028208,0.0000028117,0.0000027995, +0.0000028007,0.0000028167,0.0000028295,0.0000028319,0.0000028267, +0.0000028227,0.0000028236,0.0000028245,0.0000028218,0.0000028192, +0.0000028198,0.0000028221,0.0000028244,0.0000028259,0.0000028267, +0.0000028262,0.0000028232,0.0000028198,0.0000028213,0.0000028314, +0.0000028426,0.0000028427,0.0000028366,0.0000028317,0.0000028301, +0.0000028302,0.0000028301,0.0000028282,0.0000028265,0.0000028267, +0.0000028296,0.0000028354,0.0000028406,0.0000028418,0.0000028391, +0.0000028363,0.0000028358,0.0000028354,0.0000028317,0.0000028262, +0.0000028228,0.0000028195,0.0000028144,0.0000028091,0.0000028062, +0.0000028070,0.0000028115,0.0000028175,0.0000028217,0.0000028244, +0.0000028292,0.0000028340,0.0000028359,0.0000028332,0.0000028367, +0.0000028548,0.0000028772,0.0000028863,0.0000028872,0.0000028902, +0.0000028946,0.0000028925,0.0000028810,0.0000028705,0.0000028666, +0.0000028641,0.0000028591,0.0000028500,0.0000028369,0.0000028237, +0.0000028145,0.0000028087,0.0000028043,0.0000027979,0.0000027891, +0.0000027808,0.0000027787,0.0000027856,0.0000027945,0.0000027991, +0.0000028022,0.0000028064,0.0000028114,0.0000028154,0.0000028199, +0.0000028278,0.0000028383,0.0000028481,0.0000028560,0.0000028622, +0.0000028674,0.0000028709,0.0000028719,0.0000028698,0.0000028645, +0.0000028568,0.0000028484,0.0000028446,0.0000028470,0.0000028556, +0.0000028663,0.0000028762,0.0000028831,0.0000028880,0.0000028926, +0.0000028947,0.0000028930,0.0000028872,0.0000028802,0.0000028754, +0.0000028730,0.0000028711,0.0000028695,0.0000028688,0.0000028685, +0.0000028664,0.0000028616,0.0000028556,0.0000028506,0.0000028500, +0.0000028574,0.0000028730,0.0000028904,0.0000029024,0.0000029068, +0.0000029080,0.0000029106,0.0000029135,0.0000029135,0.0000029097, +0.0000029058,0.0000029042,0.0000029017,0.0000028958,0.0000028887, +0.0000028829,0.0000028798,0.0000028788,0.0000028760,0.0000028714, +0.0000028686,0.0000028679,0.0000028683,0.0000028709,0.0000028739, +0.0000028742,0.0000028728,0.0000028713,0.0000028709,0.0000028744, +0.0000028840,0.0000028948,0.0000029017,0.0000029064,0.0000029094, +0.0000029090,0.0000029033,0.0000028985,0.0000028939,0.0000028923, +0.0000028953,0.0000029015,0.0000029060,0.0000029062,0.0000029028, +0.0000028987,0.0000028970,0.0000028961,0.0000028937,0.0000028906, +0.0000028868,0.0000028813,0.0000028740,0.0000028673,0.0000028613, +0.0000028568,0.0000028554,0.0000028544,0.0000028555,0.0000028606, +0.0000028683,0.0000028718,0.0000028725,0.0000028745,0.0000028794, +0.0000028860,0.0000028905,0.0000028906,0.0000028869,0.0000028805, +0.0000028733,0.0000028666,0.0000028612,0.0000028568,0.0000028541, +0.0000028534,0.0000028539,0.0000028549,0.0000028556,0.0000028562, +0.0000028565,0.0000028550,0.0000028496,0.0000028389,0.0000028240, +0.0000028097,0.0000027992,0.0000027906,0.0000027854,0.0000027821, +0.0000027801,0.0000027797,0.0000027829,0.0000027898,0.0000027948, +0.0000027997,0.0000028067,0.0000028183,0.0000028307,0.0000028381, +0.0000028404,0.0000028450,0.0000028524,0.0000028586,0.0000028620, +0.0000028669,0.0000028738,0.0000028810,0.0000028866,0.0000028858, +0.0000028761,0.0000028602,0.0000028460,0.0000028407,0.0000028411, +0.0000028415,0.0000028409,0.0000028415,0.0000028428,0.0000028491, +0.0000028638,0.0000028738,0.0000028794,0.0000028884,0.0000028930, +0.0000028862,0.0000028751,0.0000028681,0.0000028641,0.0000028610, +0.0000028594,0.0000028588,0.0000028550,0.0000028497,0.0000028486, +0.0000028533,0.0000028551,0.0000028562,0.0000028589,0.0000028627, +0.0000028767,0.0000028916,0.0000028951,0.0000028908,0.0000028859, +0.0000028815,0.0000028787,0.0000028767,0.0000028748,0.0000028747, +0.0000028799,0.0000028884,0.0000028884,0.0000028781,0.0000028707, +0.0000028734,0.0000028807,0.0000028846,0.0000028860,0.0000028833, +0.0000028789,0.0000028774,0.0000028747,0.0000028693,0.0000028645, +0.0000028650,0.0000028701,0.0000028729,0.0000028708,0.0000028657, +0.0000028628,0.0000028602,0.0000028501,0.0000028378,0.0000028423, +0.0000028620,0.0000028761,0.0000028833,0.0000028863,0.0000028890, +0.0000028903,0.0000028873,0.0000028782,0.0000028759,0.0000028783, +0.0000028667,0.0000028448,0.0000028420,0.0000028485,0.0000028762, +0.0000029081,0.0000029159,0.0000029098,0.0000029002,0.0000028950, +0.0000028955,0.0000028949,0.0000028938,0.0000028937,0.0000028935, +0.0000028929,0.0000028896,0.0000028813,0.0000028721,0.0000028574, +0.0000028309,0.0000028198,0.0000028163,0.0000028109,0.0000028026, +0.0000027942,0.0000027836,0.0000027722,0.0000027664,0.0000027661, +0.0000027684,0.0000027696,0.0000027659,0.0000027584,0.0000027561, +0.0000027639,0.0000027731,0.0000027760,0.0000027703,0.0000027592, +0.0000027678,0.0000027952,0.0000028129,0.0000028141,0.0000028117, +0.0000028130,0.0000028191,0.0000028267,0.0000028310,0.0000028310, +0.0000028288,0.0000028262,0.0000028247,0.0000028256,0.0000028285, +0.0000028317,0.0000028350,0.0000028371,0.0000028384,0.0000028389, +0.0000028384,0.0000028385,0.0000028405,0.0000028439,0.0000028465, +0.0000028478,0.0000028485,0.0000028486,0.0000028474,0.0000028447, +0.0000028417,0.0000028401,0.0000028386,0.0000028352,0.0000028296, +0.0000028223,0.0000028144,0.0000028083,0.0000028056,0.0000028072, +0.0000028131,0.0000028201,0.0000028256,0.0000028292,0.0000028317, +0.0000028334,0.0000028341,0.0000028338,0.0000028329,0.0000028324, +0.0000028328,0.0000028340,0.0000028365,0.0000028397,0.0000028421, +0.0000028435,0.0000028442,0.0000028447,0.0000028449,0.0000028453, +0.0000028464,0.0000028484,0.0000028507,0.0000028534,0.0000028571, +0.0000028615,0.0000028634,0.0000028623,0.0000028587,0.0000028532, +0.0000028466,0.0000028414,0.0000028369,0.0000028332,0.0000028323, +0.0000028351,0.0000028392,0.0000028409,0.0000028386,0.0000028328, +0.0000028297,0.0000028357,0.0000028481,0.0000028591,0.0000028660, +0.0000028691,0.0000028688,0.0000028625,0.0000028507,0.0000028435, +0.0000028423,0.0000028402,0.0000028333,0.0000028292,0.0000028352, +0.0000028477,0.0000028563,0.0000028602,0.0000028620,0.0000028621, +0.0000028576,0.0000028488,0.0000028375,0.0000028267,0.0000028216, +0.0000028232,0.0000028250,0.0000028274,0.0000028329,0.0000028255, +0.0000028065,0.0000028030,0.0000028211,0.0000028411,0.0000028459, +0.0000028392,0.0000028279,0.0000028250,0.0000028282,0.0000028294, +0.0000028298,0.0000028348,0.0000028445,0.0000028529,0.0000028549, +0.0000028515,0.0000028484,0.0000028528,0.0000028606,0.0000028617, +0.0000028526,0.0000028371,0.0000028272,0.0000028230,0.0000028209, +0.0000028219,0.0000028285,0.0000028447,0.0000028558,0.0000028593, +0.0000028581,0.0000028568,0.0000028567,0.0000028520,0.0000028362, +0.0000028190,0.0000028218,0.0000028325,0.0000028310,0.0000028197, +0.0000028054,0.0000028039,0.0000028083,0.0000028000,0.0000028010, +0.0000028021,0.0000027971,0.0000027897,0.0000027913,0.0000027980, +0.0000027973,0.0000027943,0.0000027927,0.0000027922,0.0000027921, +0.0000027927,0.0000027972,0.0000028063,0.0000028153,0.0000028217, +0.0000028235,0.0000028247,0.0000028225,0.0000028214,0.0000028230, +0.0000028246,0.0000028255,0.0000028239,0.0000028236,0.0000028237, +0.0000028229,0.0000028214,0.0000028193,0.0000028173,0.0000028158, +0.0000028150,0.0000028143,0.0000028131,0.0000028125,0.0000028123, +0.0000028115,0.0000028099,0.0000028065,0.0000028012,0.0000027964, +0.0000027947,0.0000027934,0.0000027901,0.0000027848,0.0000027785, +0.0000027725,0.0000027675,0.0000027641,0.0000027628,0.0000027675, +0.0000027760,0.0000027836,0.0000027879,0.0000027884,0.0000027849, +0.0000027778,0.0000027684,0.0000027607,0.0000027554,0.0000027502, +0.0000027436,0.0000027374,0.0000027325,0.0000027294,0.0000027283, +0.0000027271,0.0000027235,0.0000027193,0.0000027178,0.0000027175, +0.0000027155,0.0000027108,0.0000027057,0.0000027016,0.0000027000, +0.0000027010,0.0000027081,0.0000027193,0.0000027264,0.0000027254, +0.0000027204,0.0000027203,0.0000027251,0.0000027273,0.0000027234, +0.0000027129,0.0000027040,0.0000027022,0.0000027060,0.0000027123, +0.0000027170,0.0000027189,0.0000027192,0.0000027212,0.0000027267, +0.0000027336,0.0000027368,0.0000027352,0.0000027342,0.0000027380, +0.0000027443,0.0000027477,0.0000027468,0.0000027400,0.0000027267, +0.0000027022,0.0000026743,0.0000026512,0.0000026447,0.0000026623, +0.0000026742,0.0000026678,0.0000026856,0.0000027332,0.0000027610, +0.0000027639,0.0000027622,0.0000027646,0.0000027926,0.0000028192, +0.0000028216,0.0000028231,0.0000028253,0.0000028195,0.0000028136, +0.0000028085,0.0000028030,0.0000028033,0.0000028055,0.0000028028, +0.0000027993,0.0000027974,0.0000027910,0.0000027815,0.0000027707, +0.0000027632,0.0000027603,0.0000027600,0.0000027642,0.0000027699, +0.0000027802,0.0000027904,0.0000027943,0.0000027924,0.0000027889, +0.0000027894,0.0000027938,0.0000027982,0.0000027974,0.0000027980, +0.0000028057,0.0000028253,0.0000028383,0.0000028355,0.0000028323, +0.0000028272,0.0000028169,0.0000028085,0.0000028074,0.0000028106, +0.0000028084,0.0000027992,0.0000027917,0.0000027842,0.0000027677, +0.0000027547,0.0000027535,0.0000027533,0.0000027526,0.0000027566, +0.0000027514,0.0000027440,0.0000027299,0.0000027176,0.0000027146, +0.0000027158,0.0000027175,0.0000027158,0.0000027173,0.0000027159, +0.0000027043,0.0000026885,0.0000026746,0.0000026656,0.0000026650, +0.0000026713,0.0000026790,0.0000026824,0.0000026800,0.0000026733, +0.0000026654,0.0000026585,0.0000026527,0.0000026485,0.0000026446, +0.0000026418,0.0000026417,0.0000026440,0.0000026481,0.0000026512, +0.0000026519,0.0000026498,0.0000026444,0.0000026362,0.0000026274, +0.0000026192,0.0000026121,0.0000026072,0.0000026057,0.0000026058, +0.0000026068,0.0000026082,0.0000026102,0.0000026123,0.0000026136, +0.0000026139,0.0000026136,0.0000026137,0.0000026149,0.0000026179, +0.0000026233,0.0000026320,0.0000026414,0.0000026512,0.0000026589, +0.0000026602,0.0000026620,0.0000026608,0.0000026621,0.0000026640, +0.0000026629,0.0000026596,0.0000026554,0.0000026535,0.0000026569, +0.0000026579,0.0000026607,0.0000026637,0.0000026671,0.0000026725, +0.0000026783,0.0000026833,0.0000026887,0.0000026941,0.0000026987, +0.0000027021,0.0000027045,0.0000027055,0.0000027053,0.0000027030, +0.0000026980,0.0000026945,0.0000026954,0.0000026976,0.0000026969, +0.0000026910,0.0000026802,0.0000026724,0.0000026727,0.0000026791, +0.0000026870,0.0000026977,0.0000027072,0.0000027090,0.0000027063, +0.0000027080,0.0000027219,0.0000027430,0.0000027724,0.0000027988, +0.0000028105,0.0000028077,0.0000028006,0.0000028044,0.0000028196, +0.0000028324,0.0000028354,0.0000028304,0.0000028268,0.0000028278, +0.0000028290,0.0000028277,0.0000028253,0.0000028234,0.0000028226, +0.0000028227,0.0000028236,0.0000028241,0.0000028225,0.0000028188, +0.0000028168,0.0000028204,0.0000028314,0.0000028403,0.0000028396, +0.0000028321,0.0000028271,0.0000028246,0.0000028235,0.0000028227, +0.0000028223,0.0000028244,0.0000028296,0.0000028349,0.0000028396, +0.0000028422,0.0000028417,0.0000028386,0.0000028367,0.0000028373, +0.0000028374,0.0000028337,0.0000028270,0.0000028212,0.0000028157, +0.0000028106,0.0000028061,0.0000028043,0.0000028068,0.0000028114, +0.0000028148,0.0000028189,0.0000028243,0.0000028304,0.0000028334, +0.0000028368,0.0000028467,0.0000028685,0.0000028866,0.0000028909, +0.0000028910,0.0000028946,0.0000028987,0.0000028960,0.0000028842, +0.0000028759,0.0000028741,0.0000028708,0.0000028638,0.0000028545, +0.0000028434,0.0000028322,0.0000028227,0.0000028168,0.0000028129, +0.0000028079,0.0000027987,0.0000027898,0.0000027871,0.0000027913, +0.0000027986,0.0000028039,0.0000028081,0.0000028131,0.0000028175, +0.0000028205,0.0000028239,0.0000028300,0.0000028381,0.0000028464, +0.0000028540,0.0000028606,0.0000028660,0.0000028699,0.0000028723, +0.0000028726,0.0000028700,0.0000028656,0.0000028603,0.0000028547, +0.0000028517,0.0000028531,0.0000028585,0.0000028670,0.0000028768, +0.0000028852,0.0000028912,0.0000028953,0.0000028965,0.0000028944, +0.0000028888,0.0000028827,0.0000028783,0.0000028753,0.0000028730, +0.0000028719,0.0000028732,0.0000028756,0.0000028765,0.0000028739, +0.0000028664,0.0000028585,0.0000028570,0.0000028660,0.0000028835, +0.0000029001,0.0000029074,0.0000029079,0.0000029083,0.0000029105, +0.0000029115,0.0000029091,0.0000029052,0.0000029036,0.0000029028, +0.0000028981,0.0000028897,0.0000028822,0.0000028774,0.0000028759, +0.0000028763,0.0000028752,0.0000028708,0.0000028668,0.0000028643, +0.0000028624,0.0000028626,0.0000028650,0.0000028673,0.0000028695, +0.0000028709,0.0000028701,0.0000028702,0.0000028737,0.0000028828, +0.0000028916,0.0000028976,0.0000029009,0.0000029017,0.0000029004, +0.0000028992,0.0000028985,0.0000028981,0.0000028985,0.0000029011, +0.0000029041,0.0000029043,0.0000029019,0.0000028974,0.0000028937, +0.0000028914,0.0000028883,0.0000028851,0.0000028815,0.0000028779, +0.0000028731,0.0000028673,0.0000028611,0.0000028560,0.0000028563, +0.0000028581,0.0000028579,0.0000028571,0.0000028586,0.0000028610, +0.0000028601,0.0000028572,0.0000028575,0.0000028625,0.0000028698, +0.0000028742,0.0000028745,0.0000028702,0.0000028637,0.0000028575, +0.0000028521,0.0000028479,0.0000028446,0.0000028420,0.0000028399, +0.0000028377,0.0000028354,0.0000028331,0.0000028294,0.0000028239, +0.0000028170,0.0000028085,0.0000027981,0.0000027883,0.0000027824, +0.0000027801,0.0000027800,0.0000027798,0.0000027795,0.0000027790, +0.0000027796,0.0000027827,0.0000027869,0.0000027894,0.0000027931, +0.0000027956,0.0000028039,0.0000028162,0.0000028278,0.0000028338, +0.0000028394,0.0000028471,0.0000028550,0.0000028598,0.0000028645, +0.0000028709,0.0000028778,0.0000028845,0.0000028861,0.0000028824, +0.0000028709,0.0000028571,0.0000028501,0.0000028491,0.0000028476, +0.0000028441,0.0000028431,0.0000028438,0.0000028471,0.0000028608, +0.0000028739,0.0000028811,0.0000028894,0.0000028940,0.0000028911, +0.0000028807,0.0000028707,0.0000028657,0.0000028648,0.0000028631, +0.0000028608,0.0000028581,0.0000028534,0.0000028477,0.0000028463, +0.0000028505,0.0000028567,0.0000028607,0.0000028634,0.0000028754, +0.0000028926,0.0000028978,0.0000028919,0.0000028865,0.0000028827, +0.0000028806,0.0000028777,0.0000028763,0.0000028789,0.0000028865, +0.0000028925,0.0000028886,0.0000028773,0.0000028723,0.0000028764, +0.0000028834,0.0000028868,0.0000028859,0.0000028820,0.0000028784, +0.0000028778,0.0000028743,0.0000028675,0.0000028618,0.0000028619, +0.0000028663,0.0000028682,0.0000028648,0.0000028582,0.0000028559, +0.0000028586,0.0000028564,0.0000028447,0.0000028435,0.0000028589, +0.0000028749,0.0000028840,0.0000028880,0.0000028912,0.0000028939, +0.0000028909,0.0000028804,0.0000028767,0.0000028778,0.0000028670, +0.0000028458,0.0000028420,0.0000028471,0.0000028705,0.0000029034, +0.0000029159,0.0000029130,0.0000029053,0.0000028996,0.0000028991, +0.0000028978,0.0000028946,0.0000028916,0.0000028902,0.0000028911, +0.0000028910,0.0000028875,0.0000028784,0.0000028670,0.0000028410, +0.0000028208,0.0000028167,0.0000028137,0.0000028071,0.0000027992, +0.0000027896,0.0000027748,0.0000027644,0.0000027624,0.0000027647, +0.0000027679,0.0000027668,0.0000027606,0.0000027512,0.0000027490, +0.0000027590,0.0000027673,0.0000027715,0.0000027664,0.0000027597, +0.0000027710,0.0000027970,0.0000028087,0.0000028073,0.0000028036, +0.0000028052,0.0000028129,0.0000028218,0.0000028265,0.0000028279, +0.0000028269,0.0000028256,0.0000028262,0.0000028284,0.0000028309, +0.0000028320,0.0000028313,0.0000028300,0.0000028292,0.0000028304, +0.0000028340,0.0000028390,0.0000028428,0.0000028444,0.0000028451, +0.0000028450,0.0000028438,0.0000028408,0.0000028384,0.0000028379, +0.0000028381,0.0000028381,0.0000028365,0.0000028322,0.0000028254, +0.0000028181,0.0000028144,0.0000028140,0.0000028158,0.0000028198, +0.0000028244,0.0000028275,0.0000028287,0.0000028287,0.0000028282, +0.0000028281,0.0000028281,0.0000028279,0.0000028280,0.0000028294, +0.0000028311,0.0000028328,0.0000028359,0.0000028401,0.0000028435, +0.0000028464,0.0000028501,0.0000028542,0.0000028578,0.0000028605, +0.0000028618,0.0000028616,0.0000028608,0.0000028609,0.0000028628, +0.0000028650,0.0000028656,0.0000028639,0.0000028608,0.0000028567, +0.0000028534,0.0000028515,0.0000028494,0.0000028462,0.0000028430, +0.0000028422,0.0000028441,0.0000028459,0.0000028447,0.0000028393, +0.0000028366,0.0000028407,0.0000028503,0.0000028589,0.0000028642, +0.0000028668,0.0000028669,0.0000028622,0.0000028526,0.0000028461, +0.0000028446,0.0000028426,0.0000028362,0.0000028290,0.0000028300, +0.0000028396,0.0000028507,0.0000028564,0.0000028581,0.0000028582, +0.0000028563,0.0000028518,0.0000028462,0.0000028396,0.0000028335, +0.0000028299,0.0000028294,0.0000028302,0.0000028348,0.0000028328, +0.0000028139,0.0000028030,0.0000028154,0.0000028360,0.0000028423, +0.0000028369,0.0000028265,0.0000028230,0.0000028251,0.0000028267, +0.0000028249,0.0000028264,0.0000028346,0.0000028447,0.0000028501, +0.0000028489,0.0000028454,0.0000028464,0.0000028514,0.0000028519, +0.0000028456,0.0000028352,0.0000028281,0.0000028251,0.0000028230, +0.0000028229,0.0000028247,0.0000028308,0.0000028422,0.0000028463, +0.0000028447,0.0000028448,0.0000028469,0.0000028480,0.0000028400, +0.0000028205,0.0000028121,0.0000028288,0.0000028317,0.0000028235, +0.0000028106,0.0000028050,0.0000028099,0.0000028031,0.0000028018, +0.0000028051,0.0000027996,0.0000027898,0.0000027902,0.0000027974, +0.0000027971,0.0000027955,0.0000027969,0.0000027987,0.0000027999, +0.0000028001,0.0000028035,0.0000028118,0.0000028207,0.0000028265, +0.0000028276,0.0000028261,0.0000028233,0.0000028228,0.0000028239, +0.0000028259,0.0000028273,0.0000028260,0.0000028262,0.0000028277, +0.0000028282,0.0000028282,0.0000028279,0.0000028263,0.0000028238, +0.0000028200,0.0000028166,0.0000028136,0.0000028116,0.0000028115, +0.0000028115,0.0000028104,0.0000028079,0.0000028058,0.0000028049, +0.0000028054,0.0000028055,0.0000028041,0.0000027985,0.0000027914, +0.0000027833,0.0000027758,0.0000027699,0.0000027650,0.0000027604, +0.0000027577,0.0000027610,0.0000027719,0.0000027818,0.0000027848, +0.0000027819,0.0000027754,0.0000027666,0.0000027585,0.0000027530, +0.0000027475,0.0000027401,0.0000027341,0.0000027301,0.0000027269, +0.0000027255,0.0000027239,0.0000027201,0.0000027163,0.0000027154, +0.0000027156,0.0000027142,0.0000027099,0.0000027037,0.0000026987, +0.0000026971,0.0000026963,0.0000026989,0.0000027066,0.0000027153, +0.0000027185,0.0000027178,0.0000027182,0.0000027214,0.0000027229, +0.0000027197,0.0000027107,0.0000027027,0.0000027008,0.0000027024, +0.0000027058,0.0000027101,0.0000027141,0.0000027170,0.0000027196, +0.0000027228,0.0000027292,0.0000027334,0.0000027333,0.0000027335, +0.0000027391,0.0000027451,0.0000027465,0.0000027433,0.0000027353, +0.0000027211,0.0000026936,0.0000026636,0.0000026443,0.0000026478, +0.0000026684,0.0000026676,0.0000026709,0.0000027177,0.0000027605, +0.0000027685,0.0000027658,0.0000027646,0.0000027788,0.0000028113, +0.0000028227,0.0000028219,0.0000028239,0.0000028229,0.0000028163, +0.0000028125,0.0000028065,0.0000028023,0.0000028038,0.0000028068, +0.0000028044,0.0000027991,0.0000027950,0.0000027882,0.0000027773, +0.0000027665,0.0000027614,0.0000027610,0.0000027623,0.0000027667, +0.0000027740,0.0000027857,0.0000027948,0.0000027961,0.0000027914, +0.0000027879,0.0000027891,0.0000027926,0.0000027966,0.0000027960, +0.0000027952,0.0000027987,0.0000028172,0.0000028347,0.0000028343, +0.0000028302,0.0000028238,0.0000028133,0.0000028055,0.0000028065, +0.0000028092,0.0000028061,0.0000027959,0.0000027872,0.0000027764, +0.0000027606,0.0000027545,0.0000027548,0.0000027520,0.0000027533, +0.0000027552,0.0000027501,0.0000027390,0.0000027228,0.0000027138, +0.0000027117,0.0000027137,0.0000027136,0.0000027129,0.0000027129, +0.0000027046,0.0000026907,0.0000026776,0.0000026661,0.0000026618, +0.0000026665,0.0000026742,0.0000026767,0.0000026731,0.0000026665, +0.0000026606,0.0000026547,0.0000026484,0.0000026425,0.0000026395, +0.0000026391,0.0000026393,0.0000026388,0.0000026375,0.0000026348, +0.0000026318,0.0000026290,0.0000026258,0.0000026209,0.0000026145, +0.0000026080,0.0000026019,0.0000025975,0.0000025958,0.0000025961, +0.0000025969,0.0000025977,0.0000025992,0.0000026016,0.0000026031, +0.0000026030,0.0000026011,0.0000025973,0.0000025927,0.0000025897, +0.0000025882,0.0000025903,0.0000025964,0.0000026044,0.0000026136, +0.0000026235,0.0000026296,0.0000026349,0.0000026371,0.0000026430, +0.0000026485,0.0000026489,0.0000026469,0.0000026414,0.0000026374, +0.0000026393,0.0000026405,0.0000026424,0.0000026441,0.0000026443, +0.0000026462,0.0000026482,0.0000026522,0.0000026596,0.0000026683, +0.0000026759,0.0000026805,0.0000026851,0.0000026907,0.0000026964, +0.0000027002,0.0000027008,0.0000027009,0.0000026991,0.0000026965, +0.0000026949,0.0000026950,0.0000026940,0.0000026877,0.0000026773, +0.0000026747,0.0000026801,0.0000026880,0.0000026961,0.0000027046, +0.0000027067,0.0000027046,0.0000027041,0.0000027114,0.0000027290, +0.0000027523,0.0000027758,0.0000027928,0.0000027994,0.0000028006, +0.0000028097,0.0000028246,0.0000028352,0.0000028387,0.0000028361, +0.0000028336,0.0000028335,0.0000028336,0.0000028325,0.0000028303, +0.0000028264,0.0000028225,0.0000028212,0.0000028224,0.0000028233, +0.0000028216,0.0000028178,0.0000028154,0.0000028202,0.0000028314, +0.0000028397,0.0000028359,0.0000028274,0.0000028223,0.0000028185, +0.0000028163,0.0000028151,0.0000028164,0.0000028230,0.0000028335, +0.0000028410,0.0000028428,0.0000028429,0.0000028416,0.0000028387, +0.0000028369,0.0000028379,0.0000028377,0.0000028329,0.0000028244, +0.0000028168,0.0000028101,0.0000028052,0.0000028022,0.0000028021, +0.0000028041,0.0000028062,0.0000028113,0.0000028195,0.0000028270, +0.0000028335,0.0000028418,0.0000028583,0.0000028782,0.0000028917, +0.0000028950,0.0000028955,0.0000028992,0.0000029018,0.0000028975, +0.0000028867,0.0000028806,0.0000028803,0.0000028772,0.0000028684, +0.0000028588,0.0000028496,0.0000028405,0.0000028324,0.0000028260, +0.0000028219,0.0000028171,0.0000028095,0.0000028023,0.0000027999, +0.0000028016,0.0000028044,0.0000028092,0.0000028150,0.0000028212, +0.0000028269,0.0000028308,0.0000028352,0.0000028411,0.0000028478, +0.0000028536,0.0000028581,0.0000028626,0.0000028676,0.0000028723, +0.0000028758,0.0000028777,0.0000028776,0.0000028754,0.0000028724, +0.0000028695,0.0000028670,0.0000028659,0.0000028670,0.0000028690, +0.0000028733,0.0000028812,0.0000028899,0.0000028962,0.0000028996, +0.0000029001,0.0000028977,0.0000028927,0.0000028875,0.0000028831, +0.0000028796,0.0000028777,0.0000028775,0.0000028799,0.0000028827, +0.0000028834,0.0000028806,0.0000028729,0.0000028663,0.0000028673, +0.0000028791,0.0000028961,0.0000029069,0.0000029086,0.0000029071, +0.0000029066,0.0000029071,0.0000029058,0.0000029027,0.0000029012, +0.0000029012,0.0000028997,0.0000028922,0.0000028814,0.0000028737, +0.0000028703,0.0000028700,0.0000028720,0.0000028726,0.0000028706, +0.0000028675,0.0000028638,0.0000028595,0.0000028561,0.0000028561, +0.0000028576,0.0000028615,0.0000028668,0.0000028705,0.0000028724, +0.0000028746,0.0000028785,0.0000028839,0.0000028889,0.0000028920, +0.0000028927,0.0000028920,0.0000028921,0.0000028942,0.0000028963, +0.0000028981,0.0000029004,0.0000029025,0.0000029032,0.0000029019, +0.0000028988,0.0000028946,0.0000028902,0.0000028851,0.0000028797, +0.0000028756,0.0000028718,0.0000028680,0.0000028642,0.0000028609, +0.0000028586,0.0000028583,0.0000028591,0.0000028599,0.0000028592, +0.0000028575,0.0000028560,0.0000028546,0.0000028507,0.0000028454, +0.0000028446,0.0000028485,0.0000028532,0.0000028535,0.0000028496, +0.0000028432,0.0000028365,0.0000028312,0.0000028269,0.0000028237, +0.0000028203,0.0000028164,0.0000028122,0.0000028078,0.0000028039, +0.0000027998,0.0000027949,0.0000027891,0.0000027845,0.0000027807, +0.0000027773,0.0000027755,0.0000027767,0.0000027794,0.0000027818, +0.0000027839,0.0000027848,0.0000027861,0.0000027876,0.0000027898, +0.0000027933,0.0000027962,0.0000027961,0.0000027957,0.0000027972, +0.0000028026,0.0000028132,0.0000028217,0.0000028296,0.0000028394, +0.0000028496,0.0000028566,0.0000028620,0.0000028677,0.0000028740, +0.0000028809,0.0000028850,0.0000028844,0.0000028794,0.0000028692, +0.0000028613,0.0000028576,0.0000028546,0.0000028489,0.0000028448, +0.0000028440,0.0000028450,0.0000028560,0.0000028711,0.0000028813, +0.0000028884,0.0000028933,0.0000028935,0.0000028872,0.0000028768, +0.0000028697,0.0000028687,0.0000028671,0.0000028640,0.0000028609, +0.0000028570,0.0000028491,0.0000028414,0.0000028432,0.0000028552, +0.0000028623,0.0000028642,0.0000028715,0.0000028917,0.0000029003, +0.0000028937,0.0000028867,0.0000028834,0.0000028820,0.0000028794, +0.0000028791,0.0000028840,0.0000028918,0.0000028937,0.0000028868, +0.0000028769,0.0000028757,0.0000028809,0.0000028874,0.0000028891, +0.0000028858,0.0000028801,0.0000028763,0.0000028756,0.0000028707, +0.0000028625,0.0000028557,0.0000028558,0.0000028613,0.0000028644, +0.0000028602,0.0000028518,0.0000028485,0.0000028543,0.0000028599, +0.0000028519,0.0000028456,0.0000028554,0.0000028719,0.0000028837, +0.0000028898,0.0000028939,0.0000028974,0.0000028935,0.0000028825, +0.0000028781,0.0000028778,0.0000028666,0.0000028469,0.0000028427, +0.0000028473,0.0000028660,0.0000028976,0.0000029147,0.0000029148, +0.0000029095,0.0000029043,0.0000029027,0.0000029011,0.0000028972, +0.0000028928,0.0000028894,0.0000028881,0.0000028887,0.0000028887, +0.0000028836,0.0000028725,0.0000028513,0.0000028233,0.0000028160, +0.0000028151,0.0000028101,0.0000028032,0.0000027951,0.0000027781, +0.0000027629,0.0000027600,0.0000027626,0.0000027664,0.0000027661, +0.0000027627,0.0000027518,0.0000027410,0.0000027431,0.0000027547, +0.0000027625,0.0000027685,0.0000027632,0.0000027595,0.0000027737, +0.0000027978,0.0000028053,0.0000028005,0.0000027950,0.0000027963, +0.0000028044,0.0000028122,0.0000028164,0.0000028178,0.0000028180, +0.0000028187,0.0000028195,0.0000028198,0.0000028191,0.0000028180, +0.0000028178,0.0000028201,0.0000028251,0.0000028314,0.0000028359, +0.0000028379,0.0000028386,0.0000028393,0.0000028387,0.0000028357, +0.0000028332,0.0000028325,0.0000028347,0.0000028380,0.0000028394, +0.0000028391,0.0000028370,0.0000028326,0.0000028280,0.0000028250, +0.0000028237,0.0000028235,0.0000028242,0.0000028255,0.0000028263, +0.0000028260,0.0000028249,0.0000028241,0.0000028244,0.0000028262, +0.0000028279,0.0000028295,0.0000028322,0.0000028355,0.0000028377, +0.0000028400,0.0000028433,0.0000028468,0.0000028505,0.0000028552, +0.0000028608,0.0000028664,0.0000028712,0.0000028748,0.0000028769, +0.0000028767,0.0000028761,0.0000028760,0.0000028760,0.0000028748, +0.0000028717,0.0000028672,0.0000028627,0.0000028592,0.0000028585, +0.0000028591,0.0000028588,0.0000028572,0.0000028543,0.0000028528, +0.0000028535,0.0000028542,0.0000028524,0.0000028471,0.0000028433, +0.0000028450,0.0000028519,0.0000028585,0.0000028619,0.0000028633, +0.0000028641,0.0000028616,0.0000028550,0.0000028496,0.0000028477, +0.0000028454,0.0000028393,0.0000028307,0.0000028285,0.0000028349, +0.0000028474,0.0000028551,0.0000028573,0.0000028574,0.0000028566, +0.0000028542,0.0000028515,0.0000028485,0.0000028439,0.0000028373, +0.0000028330,0.0000028318,0.0000028345,0.0000028351,0.0000028213, +0.0000028032,0.0000028073,0.0000028270,0.0000028376,0.0000028359, +0.0000028284,0.0000028242,0.0000028249,0.0000028269,0.0000028255, +0.0000028243,0.0000028276,0.0000028354,0.0000028425,0.0000028439, +0.0000028418,0.0000028416,0.0000028437,0.0000028431,0.0000028394, +0.0000028345,0.0000028308,0.0000028287,0.0000028270,0.0000028262, +0.0000028242,0.0000028242,0.0000028316,0.0000028367,0.0000028337, +0.0000028330,0.0000028366,0.0000028411,0.0000028404,0.0000028258, +0.0000028061,0.0000028194,0.0000028309,0.0000028264,0.0000028149, +0.0000028069,0.0000028097,0.0000028072,0.0000028024,0.0000028065, +0.0000028033,0.0000027910,0.0000027880,0.0000027948,0.0000027966, +0.0000027960,0.0000027985,0.0000028011,0.0000028028,0.0000028053, +0.0000028082,0.0000028158,0.0000028251,0.0000028287,0.0000028280, +0.0000028246,0.0000028189,0.0000028163,0.0000028143,0.0000028135, +0.0000028124,0.0000028082,0.0000028053,0.0000028053,0.0000028057, +0.0000028054,0.0000028054,0.0000028056,0.0000028057,0.0000028056, +0.0000028043,0.0000028042,0.0000028035,0.0000028023,0.0000028017, +0.0000028017,0.0000028013,0.0000028000,0.0000027985,0.0000027982, +0.0000028015,0.0000028058,0.0000028073,0.0000028036,0.0000027966, +0.0000027870,0.0000027787,0.0000027724,0.0000027671,0.0000027606, +0.0000027540,0.0000027521,0.0000027600,0.0000027727,0.0000027793, +0.0000027783,0.0000027726,0.0000027642,0.0000027564,0.0000027508, +0.0000027439,0.0000027361,0.0000027313,0.0000027278,0.0000027245, +0.0000027226,0.0000027208,0.0000027173,0.0000027150,0.0000027151, +0.0000027153,0.0000027143,0.0000027110,0.0000027051,0.0000026997, +0.0000026968,0.0000026957,0.0000026952,0.0000026965,0.0000027026, +0.0000027087,0.0000027125,0.0000027151,0.0000027175,0.0000027182, +0.0000027150,0.0000027076,0.0000027021,0.0000027010,0.0000027009, +0.0000027005,0.0000027025,0.0000027074,0.0000027136,0.0000027178, +0.0000027192,0.0000027235,0.0000027294,0.0000027315,0.0000027334, +0.0000027397,0.0000027450,0.0000027448,0.0000027394,0.0000027314, +0.0000027143,0.0000026833,0.0000026524,0.0000026403,0.0000026539, +0.0000026675,0.0000026642,0.0000026943,0.0000027507,0.0000027716, +0.0000027705,0.0000027670,0.0000027707,0.0000027971,0.0000028212, +0.0000028236,0.0000028228,0.0000028242,0.0000028208,0.0000028145, +0.0000028109,0.0000028051,0.0000028009,0.0000028032,0.0000028079, +0.0000028085,0.0000028016,0.0000027940,0.0000027864,0.0000027742, +0.0000027642,0.0000027617,0.0000027632,0.0000027655,0.0000027695, +0.0000027787,0.0000027912,0.0000028001,0.0000027986,0.0000027912, +0.0000027868,0.0000027873,0.0000027895,0.0000027931,0.0000027929, +0.0000027924,0.0000027939,0.0000028095,0.0000028312,0.0000028332, +0.0000028281,0.0000028206,0.0000028097,0.0000028026,0.0000028058, +0.0000028074,0.0000028028,0.0000027920,0.0000027811,0.0000027689, +0.0000027576,0.0000027563,0.0000027550,0.0000027509,0.0000027545, +0.0000027543,0.0000027480,0.0000027315,0.0000027163,0.0000027110, +0.0000027096,0.0000027110,0.0000027099,0.0000027093,0.0000027036, +0.0000026904,0.0000026795,0.0000026694,0.0000026625,0.0000026628, +0.0000026674,0.0000026680,0.0000026638,0.0000026597,0.0000026577, +0.0000026535,0.0000026457,0.0000026388,0.0000026356,0.0000026350, +0.0000026340,0.0000026300,0.0000026228,0.0000026142,0.0000026067, +0.0000026030,0.0000026025,0.0000026036,0.0000026034,0.0000026014, +0.0000025984,0.0000025953,0.0000025937,0.0000025946,0.0000025951, +0.0000025952,0.0000025959,0.0000025975,0.0000025997,0.0000026012, +0.0000026011,0.0000025993,0.0000025955,0.0000025903,0.0000025854, +0.0000025813,0.0000025800,0.0000025818,0.0000025857,0.0000025898, +0.0000025912,0.0000025931,0.0000025948,0.0000025962,0.0000026032, +0.0000026130,0.0000026194,0.0000026251,0.0000026260,0.0000026271, +0.0000026291,0.0000026294,0.0000026284,0.0000026274,0.0000026259, +0.0000026270,0.0000026291,0.0000026321,0.0000026365,0.0000026400, +0.0000026432,0.0000026485,0.0000026578,0.0000026682,0.0000026766, +0.0000026837,0.0000026895,0.0000026950,0.0000026990,0.0000027008, +0.0000026996,0.0000026955,0.0000026922,0.0000026913,0.0000026888, +0.0000026831,0.0000026790,0.0000026819,0.0000026893,0.0000026947, +0.0000027003,0.0000027042,0.0000027033,0.0000027021,0.0000027064, +0.0000027207,0.0000027381,0.0000027533,0.0000027685,0.0000027854, +0.0000027997,0.0000028140,0.0000028272,0.0000028370,0.0000028422, +0.0000028431,0.0000028429,0.0000028427,0.0000028423,0.0000028415, +0.0000028393,0.0000028340,0.0000028265,0.0000028209,0.0000028204, +0.0000028236,0.0000028234,0.0000028181,0.0000028156,0.0000028214, +0.0000028326,0.0000028386,0.0000028322,0.0000028232,0.0000028173, +0.0000028123,0.0000028101,0.0000028100,0.0000028132,0.0000028227, +0.0000028376,0.0000028457,0.0000028452,0.0000028434,0.0000028418, +0.0000028388,0.0000028374,0.0000028386,0.0000028369,0.0000028304, +0.0000028213,0.0000028127,0.0000028059,0.0000028020,0.0000028012, +0.0000028002,0.0000028005,0.0000028049,0.0000028150,0.0000028253, +0.0000028363,0.0000028494,0.0000028665,0.0000028833,0.0000028923, +0.0000028966,0.0000028997,0.0000029033,0.0000029036,0.0000028963, +0.0000028870,0.0000028850,0.0000028850,0.0000028812,0.0000028712, +0.0000028625,0.0000028555,0.0000028484,0.0000028416,0.0000028363, +0.0000028319,0.0000028264,0.0000028192,0.0000028146,0.0000028136, +0.0000028132,0.0000028131,0.0000028154,0.0000028217,0.0000028297, +0.0000028370,0.0000028441,0.0000028508,0.0000028575,0.0000028627, +0.0000028660,0.0000028679,0.0000028695,0.0000028725,0.0000028775, +0.0000028823,0.0000028849,0.0000028849,0.0000028824,0.0000028790, +0.0000028760,0.0000028744,0.0000028745,0.0000028761,0.0000028788, +0.0000028807,0.0000028831,0.0000028893,0.0000028973,0.0000029031, +0.0000029054,0.0000029052,0.0000029026,0.0000028979,0.0000028928, +0.0000028882,0.0000028849,0.0000028839,0.0000028848,0.0000028865, +0.0000028872,0.0000028859,0.0000028823,0.0000028772,0.0000028756, +0.0000028805,0.0000028934,0.0000029045,0.0000029082,0.0000029067, +0.0000029036,0.0000029018,0.0000029004,0.0000028980,0.0000028966, +0.0000028975,0.0000028974,0.0000028928,0.0000028832,0.0000028718, +0.0000028643,0.0000028625,0.0000028632,0.0000028660,0.0000028688, +0.0000028691,0.0000028681,0.0000028650,0.0000028599,0.0000028543, +0.0000028508,0.0000028491,0.0000028504,0.0000028551,0.0000028624, +0.0000028705,0.0000028768,0.0000028823,0.0000028861,0.0000028881, +0.0000028888,0.0000028868,0.0000028841,0.0000028824,0.0000028844, +0.0000028871,0.0000028901,0.0000028932,0.0000028960,0.0000028973, +0.0000028975,0.0000028965,0.0000028948,0.0000028916,0.0000028864, +0.0000028799,0.0000028741,0.0000028699,0.0000028648,0.0000028599, +0.0000028564,0.0000028562,0.0000028587,0.0000028603,0.0000028606, +0.0000028595,0.0000028574,0.0000028554,0.0000028533,0.0000028505, +0.0000028460,0.0000028410,0.0000028391,0.0000028398,0.0000028368, +0.0000028282,0.0000028191,0.0000028120,0.0000028067,0.0000028031, +0.0000028001,0.0000027979,0.0000027952,0.0000027921,0.0000027887, +0.0000027855,0.0000027834,0.0000027803,0.0000027772,0.0000027737, +0.0000027717,0.0000027710,0.0000027708,0.0000027728,0.0000027766, +0.0000027814,0.0000027846,0.0000027866,0.0000027887,0.0000027909, +0.0000027924,0.0000027950,0.0000028003,0.0000028053,0.0000028066, +0.0000028039,0.0000027986,0.0000027964,0.0000027998,0.0000028060, +0.0000028146,0.0000028276,0.0000028409,0.0000028519,0.0000028602, +0.0000028661,0.0000028713,0.0000028765,0.0000028807,0.0000028829, +0.0000028823,0.0000028779,0.0000028718,0.0000028665,0.0000028620, +0.0000028550,0.0000028476,0.0000028441,0.0000028446,0.0000028517, +0.0000028660,0.0000028786,0.0000028865,0.0000028915,0.0000028938, +0.0000028914,0.0000028838,0.0000028762,0.0000028730,0.0000028701, +0.0000028668,0.0000028626,0.0000028583,0.0000028509,0.0000028411, +0.0000028376,0.0000028492,0.0000028620,0.0000028648,0.0000028679, +0.0000028870,0.0000029002,0.0000028960,0.0000028868,0.0000028836, +0.0000028829,0.0000028814,0.0000028826,0.0000028882,0.0000028939, +0.0000028932,0.0000028843,0.0000028774,0.0000028799,0.0000028864, +0.0000028914,0.0000028913,0.0000028857,0.0000028781,0.0000028728, +0.0000028704,0.0000028635,0.0000028540,0.0000028458,0.0000028458, +0.0000028536,0.0000028600,0.0000028569,0.0000028476,0.0000028420, +0.0000028476,0.0000028597,0.0000028584,0.0000028486,0.0000028524, +0.0000028680,0.0000028826,0.0000028918,0.0000028973,0.0000029002, +0.0000028951,0.0000028846,0.0000028803,0.0000028775,0.0000028652, +0.0000028475,0.0000028438,0.0000028489,0.0000028634,0.0000028913, +0.0000029119,0.0000029161,0.0000029129,0.0000029086,0.0000029059, +0.0000029039,0.0000029002,0.0000028962,0.0000028916,0.0000028875, +0.0000028858,0.0000028864,0.0000028858,0.0000028758,0.0000028582, +0.0000028267,0.0000028157,0.0000028156,0.0000028117,0.0000028058, +0.0000027993,0.0000027813,0.0000027613,0.0000027566,0.0000027603, +0.0000027648,0.0000027643,0.0000027616,0.0000027537,0.0000027393, +0.0000027335,0.0000027413,0.0000027527,0.0000027596,0.0000027656, +0.0000027592,0.0000027560,0.0000027755,0.0000027984,0.0000028008, +0.0000027932,0.0000027858,0.0000027861,0.0000027928,0.0000027989, +0.0000028019,0.0000028029,0.0000028036,0.0000028044,0.0000028051, +0.0000028060,0.0000028074,0.0000028103,0.0000028153,0.0000028214, +0.0000028262,0.0000028283,0.0000028285,0.0000028287,0.0000028284, +0.0000028265,0.0000028243,0.0000028248,0.0000028289,0.0000028335, +0.0000028376,0.0000028401,0.0000028413,0.0000028413,0.0000028398, +0.0000028370,0.0000028328,0.0000028285,0.0000028256,0.0000028243, +0.0000028232,0.0000028220,0.0000028210,0.0000028206,0.0000028212, +0.0000028223,0.0000028247,0.0000028274,0.0000028294,0.0000028320, +0.0000028356,0.0000028391,0.0000028414,0.0000028441,0.0000028474, +0.0000028516,0.0000028569,0.0000028620,0.0000028662,0.0000028701, +0.0000028738,0.0000028761,0.0000028780,0.0000028788,0.0000028813, +0.0000028838,0.0000028852,0.0000028849,0.0000028822,0.0000028781, +0.0000028739,0.0000028704,0.0000028681,0.0000028664,0.0000028652, +0.0000028645,0.0000028642,0.0000028654,0.0000028670,0.0000028664, +0.0000028625,0.0000028563,0.0000028502,0.0000028498,0.0000028538, +0.0000028580,0.0000028593,0.0000028595,0.0000028604,0.0000028602, +0.0000028566,0.0000028524,0.0000028495,0.0000028464,0.0000028407, +0.0000028336,0.0000028304,0.0000028348,0.0000028464,0.0000028562, +0.0000028603,0.0000028611,0.0000028604,0.0000028574,0.0000028538, +0.0000028517,0.0000028493,0.0000028433,0.0000028358,0.0000028321, +0.0000028321,0.0000028340,0.0000028269,0.0000028068,0.0000028008, +0.0000028149,0.0000028310,0.0000028345,0.0000028304,0.0000028261, +0.0000028253,0.0000028266,0.0000028268,0.0000028259,0.0000028270, +0.0000028310,0.0000028358,0.0000028379,0.0000028377,0.0000028373, +0.0000028378,0.0000028375,0.0000028363,0.0000028355,0.0000028350, +0.0000028335,0.0000028320,0.0000028309,0.0000028260,0.0000028217, +0.0000028257,0.0000028307,0.0000028281,0.0000028245,0.0000028284, +0.0000028331,0.0000028367,0.0000028304,0.0000028081,0.0000028073, +0.0000028266,0.0000028276,0.0000028180,0.0000028102,0.0000028082, +0.0000028112,0.0000028042,0.0000028058,0.0000028060,0.0000027948, +0.0000027869,0.0000027911,0.0000027960,0.0000027961,0.0000027981, +0.0000027996,0.0000028011,0.0000028043,0.0000028081,0.0000028161, +0.0000028248,0.0000028281,0.0000028258,0.0000028212,0.0000028141, +0.0000028094,0.0000028057,0.0000028032,0.0000028000,0.0000027939, +0.0000027882,0.0000027864,0.0000027863,0.0000027843,0.0000027821, +0.0000027796,0.0000027765,0.0000027746,0.0000027734,0.0000027743, +0.0000027769,0.0000027787,0.0000027805,0.0000027837,0.0000027866, +0.0000027877,0.0000027884,0.0000027885,0.0000027896,0.0000027932, +0.0000027975,0.0000028006,0.0000028011,0.0000027971,0.0000027886, +0.0000027788,0.0000027720,0.0000027675,0.0000027610,0.0000027527, +0.0000027486,0.0000027521,0.0000027644,0.0000027744,0.0000027751, +0.0000027698,0.0000027614,0.0000027542,0.0000027473,0.0000027390, +0.0000027327,0.0000027292,0.0000027254,0.0000027221,0.0000027207, +0.0000027185,0.0000027162,0.0000027160,0.0000027166,0.0000027160, +0.0000027143,0.0000027118,0.0000027075,0.0000027023,0.0000026983, +0.0000026965,0.0000026944,0.0000026921,0.0000026920,0.0000026975, +0.0000027041,0.0000027093,0.0000027129,0.0000027142,0.0000027104, +0.0000027030,0.0000026993,0.0000026996,0.0000026995,0.0000026966, +0.0000026955,0.0000027004,0.0000027092,0.0000027150,0.0000027153, +0.0000027181,0.0000027251,0.0000027303,0.0000027346,0.0000027411, +0.0000027442,0.0000027416,0.0000027343,0.0000027270,0.0000027054, +0.0000026712,0.0000026429,0.0000026369,0.0000026572,0.0000026630, +0.0000026706,0.0000027271,0.0000027695,0.0000027736,0.0000027708, +0.0000027696,0.0000027832,0.0000028116,0.0000028246,0.0000028240, +0.0000028239,0.0000028243,0.0000028204,0.0000028131,0.0000028087, +0.0000028040,0.0000028004,0.0000028015,0.0000028076,0.0000028111, +0.0000028059,0.0000027959,0.0000027867,0.0000027745,0.0000027644, +0.0000027628,0.0000027656,0.0000027693,0.0000027740,0.0000027827, +0.0000027958,0.0000028050,0.0000028021,0.0000027919,0.0000027856, +0.0000027845,0.0000027849,0.0000027873,0.0000027879,0.0000027882, +0.0000027914,0.0000028030,0.0000028265,0.0000028311,0.0000028260, +0.0000028173,0.0000028060,0.0000028001,0.0000028045,0.0000028053, +0.0000027990,0.0000027872,0.0000027751,0.0000027635,0.0000027582, +0.0000027590,0.0000027540,0.0000027510,0.0000027552,0.0000027535, +0.0000027434,0.0000027230,0.0000027113,0.0000027081,0.0000027069, +0.0000027077,0.0000027069,0.0000027037,0.0000026909,0.0000026781, +0.0000026703,0.0000026639,0.0000026623,0.0000026620,0.0000026596, +0.0000026544,0.0000026522,0.0000026529,0.0000026513,0.0000026450, +0.0000026377,0.0000026329,0.0000026299,0.0000026255,0.0000026167, +0.0000026046,0.0000025936,0.0000025865,0.0000025838,0.0000025842, +0.0000025869,0.0000025909,0.0000025927,0.0000025923,0.0000025912, +0.0000025902,0.0000025899,0.0000025896,0.0000025883,0.0000025865, +0.0000025863,0.0000025874,0.0000025889,0.0000025896,0.0000025891, +0.0000025870,0.0000025841,0.0000025807,0.0000025773,0.0000025756, +0.0000025759,0.0000025785,0.0000025824,0.0000025865,0.0000025884, +0.0000025874,0.0000025833,0.0000025771,0.0000025752,0.0000025770, +0.0000025774,0.0000025800,0.0000025818,0.0000025910,0.0000026035, +0.0000026148,0.0000026202,0.0000026219,0.0000026192,0.0000026169, +0.0000026151,0.0000026147,0.0000026177,0.0000026221,0.0000026272, +0.0000026314,0.0000026339,0.0000026372,0.0000026442,0.0000026559, +0.0000026679,0.0000026767,0.0000026849,0.0000026928,0.0000026984, +0.0000027003,0.0000026984,0.0000026923,0.0000026864,0.0000026850, +0.0000026856,0.0000026847,0.0000026857,0.0000026898,0.0000026931, +0.0000026957,0.0000027003,0.0000027025,0.0000027022,0.0000027042, +0.0000027157,0.0000027278,0.0000027361,0.0000027469,0.0000027662, +0.0000027888,0.0000028108,0.0000028269,0.0000028373,0.0000028439, +0.0000028462,0.0000028467,0.0000028470,0.0000028469,0.0000028470, +0.0000028453,0.0000028417,0.0000028342,0.0000028237,0.0000028207, +0.0000028247,0.0000028260,0.0000028204,0.0000028173,0.0000028227, +0.0000028335,0.0000028370,0.0000028298,0.0000028200,0.0000028122, +0.0000028076,0.0000028069,0.0000028089,0.0000028129,0.0000028226, +0.0000028399,0.0000028490,0.0000028470,0.0000028438,0.0000028415, +0.0000028402,0.0000028397,0.0000028391,0.0000028347,0.0000028277, +0.0000028187,0.0000028101,0.0000028050,0.0000028040,0.0000028020, +0.0000028000,0.0000028035,0.0000028138,0.0000028261,0.0000028395, +0.0000028539,0.0000028681,0.0000028813,0.0000028897,0.0000028963, +0.0000029022,0.0000029060,0.0000029043,0.0000028942,0.0000028874, +0.0000028881,0.0000028886,0.0000028832,0.0000028730,0.0000028647, +0.0000028601,0.0000028556,0.0000028504,0.0000028457,0.0000028420, +0.0000028369,0.0000028302,0.0000028261,0.0000028250,0.0000028235, +0.0000028223,0.0000028241,0.0000028292,0.0000028375,0.0000028463, +0.0000028547,0.0000028635,0.0000028713,0.0000028762,0.0000028777, +0.0000028779,0.0000028785,0.0000028807,0.0000028844,0.0000028884, +0.0000028889,0.0000028876,0.0000028850,0.0000028818,0.0000028787, +0.0000028769,0.0000028765,0.0000028772,0.0000028806,0.0000028862, +0.0000028900,0.0000028930,0.0000028992,0.0000029064,0.0000029103, +0.0000029109,0.0000029096,0.0000029065,0.0000029019,0.0000028971, +0.0000028930,0.0000028905,0.0000028899,0.0000028902,0.0000028899, +0.0000028885,0.0000028860,0.0000028840,0.0000028836,0.0000028858, +0.0000028936,0.0000029021,0.0000029057,0.0000029047,0.0000029012, +0.0000028971,0.0000028938,0.0000028911,0.0000028895,0.0000028898, +0.0000028906,0.0000028890,0.0000028836,0.0000028754,0.0000028665, +0.0000028603,0.0000028586,0.0000028592,0.0000028620,0.0000028648, +0.0000028654,0.0000028655,0.0000028646,0.0000028610,0.0000028556, +0.0000028507,0.0000028472,0.0000028455,0.0000028459,0.0000028489, +0.0000028560,0.0000028668,0.0000028787,0.0000028867,0.0000028912, +0.0000028914,0.0000028890,0.0000028836,0.0000028776,0.0000028760, +0.0000028769,0.0000028788,0.0000028810,0.0000028841,0.0000028864, +0.0000028873,0.0000028880,0.0000028886,0.0000028886,0.0000028861, +0.0000028809,0.0000028752,0.0000028709,0.0000028664,0.0000028604, +0.0000028543,0.0000028515,0.0000028539,0.0000028579,0.0000028599, +0.0000028598,0.0000028575,0.0000028539,0.0000028510,0.0000028494, +0.0000028475,0.0000028437,0.0000028395,0.0000028380,0.0000028347, +0.0000028220,0.0000028054,0.0000027955,0.0000027923,0.0000027908, +0.0000027895,0.0000027886,0.0000027889,0.0000027879,0.0000027865, +0.0000027844,0.0000027824,0.0000027797,0.0000027750,0.0000027711, +0.0000027672,0.0000027657,0.0000027675,0.0000027691,0.0000027750, +0.0000027816,0.0000027871,0.0000027902,0.0000027925,0.0000027948, +0.0000027958,0.0000027956,0.0000027973,0.0000028029,0.0000028094, +0.0000028130,0.0000028116,0.0000028054,0.0000027973,0.0000027950, +0.0000027933,0.0000027978,0.0000028103,0.0000028276,0.0000028442, +0.0000028574,0.0000028656,0.0000028698,0.0000028725,0.0000028748, +0.0000028778,0.0000028807,0.0000028796,0.0000028777,0.0000028740, +0.0000028693,0.0000028619,0.0000028526,0.0000028465,0.0000028450, +0.0000028494,0.0000028597,0.0000028724,0.0000028830,0.0000028895, +0.0000028930,0.0000028921,0.0000028891,0.0000028831,0.0000028778, +0.0000028726,0.0000028682,0.0000028625,0.0000028565,0.0000028498, +0.0000028420,0.0000028368,0.0000028420,0.0000028570,0.0000028645, +0.0000028653,0.0000028784,0.0000028973,0.0000028975,0.0000028879, +0.0000028834,0.0000028833,0.0000028833,0.0000028859,0.0000028917, +0.0000028941,0.0000028905,0.0000028817,0.0000028783,0.0000028845, +0.0000028915,0.0000028944,0.0000028927,0.0000028855,0.0000028765, +0.0000028691,0.0000028639,0.0000028552,0.0000028446,0.0000028345, +0.0000028326,0.0000028420,0.0000028537,0.0000028534,0.0000028453, +0.0000028382,0.0000028399,0.0000028556,0.0000028628,0.0000028535, +0.0000028518,0.0000028646,0.0000028811,0.0000028936,0.0000029009, +0.0000029024,0.0000028956,0.0000028864,0.0000028828,0.0000028766, +0.0000028629,0.0000028474,0.0000028451,0.0000028515,0.0000028630, +0.0000028855,0.0000029074,0.0000029164,0.0000029153,0.0000029126, +0.0000029093,0.0000029066,0.0000029020,0.0000028975,0.0000028926, +0.0000028876,0.0000028838,0.0000028832,0.0000028843,0.0000028776, +0.0000028619,0.0000028303,0.0000028155,0.0000028155,0.0000028124, +0.0000028068,0.0000028016,0.0000027838,0.0000027605,0.0000027521, +0.0000027557,0.0000027609,0.0000027603,0.0000027573,0.0000027530, +0.0000027410,0.0000027296,0.0000027313,0.0000027446,0.0000027509, +0.0000027566,0.0000027618,0.0000027546,0.0000027541,0.0000027780, +0.0000027975,0.0000027958,0.0000027858,0.0000027771,0.0000027765, +0.0000027807,0.0000027856,0.0000027891,0.0000027915,0.0000027940, +0.0000027962,0.0000027987,0.0000028020,0.0000028061,0.0000028108, +0.0000028151,0.0000028173,0.0000028176,0.0000028167,0.0000028152, +0.0000028134,0.0000028120,0.0000028130,0.0000028180,0.0000028253, +0.0000028308,0.0000028336,0.0000028368,0.0000028394,0.0000028410, +0.0000028410,0.0000028388,0.0000028339,0.0000028279,0.0000028229, +0.0000028199,0.0000028182,0.0000028170,0.0000028168,0.0000028175, +0.0000028187,0.0000028203,0.0000028220,0.0000028234,0.0000028241, +0.0000028251,0.0000028272,0.0000028299,0.0000028322,0.0000028335, +0.0000028353,0.0000028393,0.0000028447,0.0000028499,0.0000028543, +0.0000028580,0.0000028612,0.0000028636,0.0000028650,0.0000028670, +0.0000028709,0.0000028760,0.0000028807,0.0000028847,0.0000028861, +0.0000028884,0.0000028887,0.0000028881,0.0000028861,0.0000028830, +0.0000028792,0.0000028761,0.0000028746,0.0000028753,0.0000028782, +0.0000028805,0.0000028797,0.0000028752,0.0000028680,0.0000028592, +0.0000028550,0.0000028561,0.0000028582,0.0000028582,0.0000028574, +0.0000028575,0.0000028578,0.0000028561,0.0000028531,0.0000028496, +0.0000028450,0.0000028396,0.0000028349,0.0000028336,0.0000028370, +0.0000028470,0.0000028589,0.0000028661,0.0000028677,0.0000028664, +0.0000028616,0.0000028556,0.0000028517,0.0000028497,0.0000028463, +0.0000028385,0.0000028319,0.0000028291,0.0000028294,0.0000028269, +0.0000028117,0.0000027992,0.0000028050,0.0000028219,0.0000028311, +0.0000028305,0.0000028273,0.0000028254,0.0000028254,0.0000028260, +0.0000028270,0.0000028294,0.0000028323,0.0000028348,0.0000028351, +0.0000028346,0.0000028328,0.0000028331,0.0000028336,0.0000028338, +0.0000028352,0.0000028361,0.0000028365,0.0000028359,0.0000028343, +0.0000028287,0.0000028222,0.0000028229,0.0000028261,0.0000028259, +0.0000028219,0.0000028228,0.0000028256,0.0000028297,0.0000028310, +0.0000028154,0.0000027985,0.0000028156,0.0000028265,0.0000028207, +0.0000028142,0.0000028072,0.0000028123,0.0000028076,0.0000028036, +0.0000028064,0.0000028013,0.0000027892,0.0000027874,0.0000027940, +0.0000027965,0.0000027973,0.0000027991,0.0000027999,0.0000028007, +0.0000028033,0.0000028111,0.0000028206,0.0000028253,0.0000028241, +0.0000028210,0.0000028152,0.0000028116,0.0000028085,0.0000028081, +0.0000028066,0.0000028031,0.0000027975,0.0000027936,0.0000027911, +0.0000027868,0.0000027822,0.0000027768,0.0000027715,0.0000027659, +0.0000027606,0.0000027558,0.0000027537,0.0000027525,0.0000027520, +0.0000027544,0.0000027597,0.0000027648,0.0000027698,0.0000027735, +0.0000027756,0.0000027790,0.0000027835,0.0000027875,0.0000027896, +0.0000027906,0.0000027902,0.0000027850,0.0000027761,0.0000027691, +0.0000027648,0.0000027588,0.0000027507,0.0000027450,0.0000027467, +0.0000027587,0.0000027707,0.0000027723,0.0000027655,0.0000027572, +0.0000027499,0.0000027409,0.0000027335,0.0000027301,0.0000027269, +0.0000027230,0.0000027213,0.0000027201,0.0000027182,0.0000027179, +0.0000027189,0.0000027187,0.0000027167,0.0000027139,0.0000027113, +0.0000027089,0.0000027051,0.0000027008,0.0000026985,0.0000026962, +0.0000026912,0.0000026878,0.0000026885,0.0000026940,0.0000027006, +0.0000027070,0.0000027104,0.0000027065,0.0000026994,0.0000026953, +0.0000026957,0.0000026955,0.0000026918,0.0000026895,0.0000026938, +0.0000027036,0.0000027105,0.0000027114,0.0000027125,0.0000027210, +0.0000027305,0.0000027358,0.0000027410,0.0000027428,0.0000027377, +0.0000027299,0.0000027227,0.0000026948,0.0000026588,0.0000026337, +0.0000026374,0.0000026585,0.0000026607,0.0000026916,0.0000027534, +0.0000027751,0.0000027740,0.0000027723,0.0000027759,0.0000027971, +0.0000028192,0.0000028252,0.0000028245,0.0000028245,0.0000028248, +0.0000028214,0.0000028128,0.0000028070,0.0000028036,0.0000027998, +0.0000027991,0.0000028042,0.0000028092,0.0000028076,0.0000027998, +0.0000027896,0.0000027789,0.0000027693,0.0000027662,0.0000027686, +0.0000027734,0.0000027792,0.0000027860,0.0000027984,0.0000028089, +0.0000028065,0.0000027942,0.0000027845,0.0000027810,0.0000027797, +0.0000027808,0.0000027820,0.0000027829,0.0000027893,0.0000027980, +0.0000028212,0.0000028285,0.0000028234,0.0000028138,0.0000028023, +0.0000027975,0.0000028030,0.0000028031,0.0000027948,0.0000027817, +0.0000027695,0.0000027612,0.0000027608,0.0000027604,0.0000027525, +0.0000027522,0.0000027553,0.0000027524,0.0000027367,0.0000027154, +0.0000027079,0.0000027047,0.0000027036,0.0000027044,0.0000027043, +0.0000026964,0.0000026792,0.0000026677,0.0000026626,0.0000026608, +0.0000026597,0.0000026546,0.0000026475,0.0000026449,0.0000026463, +0.0000026471,0.0000026438,0.0000026374,0.0000026314,0.0000026253, +0.0000026159,0.0000026035,0.0000025908,0.0000025811,0.0000025762, +0.0000025758,0.0000025763,0.0000025767,0.0000025779,0.0000025806, +0.0000025831,0.0000025838,0.0000025836,0.0000025830,0.0000025827, +0.0000025816,0.0000025798,0.0000025775,0.0000025760,0.0000025760, +0.0000025768,0.0000025773,0.0000025763,0.0000025737,0.0000025704, +0.0000025662,0.0000025615,0.0000025584,0.0000025582,0.0000025610, +0.0000025653,0.0000025697,0.0000025735,0.0000025752,0.0000025744, +0.0000025721,0.0000025720,0.0000025732,0.0000025695,0.0000025627, +0.0000025517,0.0000025458,0.0000025526,0.0000025680,0.0000025821, +0.0000025964,0.0000026042,0.0000026068,0.0000026064,0.0000026060, +0.0000026082,0.0000026116,0.0000026140,0.0000026154,0.0000026170, +0.0000026216,0.0000026281,0.0000026338,0.0000026391,0.0000026477, +0.0000026612,0.0000026736,0.0000026828,0.0000026908,0.0000026964, +0.0000026971,0.0000026923,0.0000026854,0.0000026824,0.0000026847, +0.0000026893,0.0000026908,0.0000026908,0.0000026907,0.0000026919, +0.0000026959,0.0000027011,0.0000027027,0.0000027041,0.0000027108, +0.0000027205,0.0000027267,0.0000027325,0.0000027459,0.0000027673, +0.0000027961,0.0000028193,0.0000028322,0.0000028406,0.0000028434, +0.0000028431,0.0000028420,0.0000028418,0.0000028414,0.0000028407, +0.0000028408,0.0000028381,0.0000028315,0.0000028251,0.0000028264, +0.0000028297,0.0000028238,0.0000028187,0.0000028246,0.0000028346, +0.0000028372,0.0000028293,0.0000028177,0.0000028091,0.0000028059, +0.0000028068,0.0000028106,0.0000028143,0.0000028228,0.0000028413, +0.0000028507,0.0000028475,0.0000028432,0.0000028423,0.0000028439, +0.0000028425,0.0000028385,0.0000028317,0.0000028242,0.0000028162, +0.0000028113,0.0000028096,0.0000028082,0.0000028050,0.0000028068, +0.0000028155,0.0000028275,0.0000028392,0.0000028512,0.0000028625, +0.0000028746,0.0000028853,0.0000028937,0.0000029017,0.0000029056, +0.0000029021,0.0000028931,0.0000028887,0.0000028908,0.0000028908, +0.0000028826,0.0000028726,0.0000028668,0.0000028629,0.0000028600, +0.0000028562,0.0000028529,0.0000028507,0.0000028480,0.0000028442, +0.0000028403,0.0000028362,0.0000028326,0.0000028315,0.0000028346, +0.0000028399,0.0000028464,0.0000028547,0.0000028642,0.0000028733, +0.0000028803,0.0000028840,0.0000028849,0.0000028852,0.0000028869, +0.0000028895,0.0000028921,0.0000028912,0.0000028891,0.0000028857, +0.0000028830,0.0000028817,0.0000028811,0.0000028810,0.0000028805, +0.0000028785,0.0000028783,0.0000028839,0.0000028930,0.0000028981, +0.0000029023,0.0000029095,0.0000029149,0.0000029159,0.0000029147, +0.0000029123,0.0000029088,0.0000029048,0.0000029007,0.0000028972, +0.0000028946,0.0000028935,0.0000028930,0.0000028913,0.0000028891, +0.0000028877,0.0000028888,0.0000028908,0.0000028948,0.0000028999, +0.0000029029,0.0000029022,0.0000028987,0.0000028936,0.0000028881, +0.0000028836,0.0000028810,0.0000028796,0.0000028798,0.0000028810, +0.0000028804,0.0000028772,0.0000028721,0.0000028661,0.0000028609, +0.0000028583,0.0000028582,0.0000028599,0.0000028609,0.0000028598, +0.0000028586,0.0000028572,0.0000028543,0.0000028503,0.0000028458, +0.0000028417,0.0000028401,0.0000028402,0.0000028421,0.0000028458, +0.0000028517,0.0000028612,0.0000028733,0.0000028840,0.0000028904, +0.0000028910,0.0000028871,0.0000028810,0.0000028765,0.0000028748, +0.0000028735,0.0000028726,0.0000028728,0.0000028740,0.0000028746, +0.0000028751,0.0000028764,0.0000028786,0.0000028791,0.0000028761, +0.0000028719,0.0000028687,0.0000028656,0.0000028613,0.0000028555, +0.0000028510,0.0000028508,0.0000028538,0.0000028565,0.0000028574, +0.0000028571,0.0000028547,0.0000028504,0.0000028462,0.0000028446, +0.0000028441,0.0000028418,0.0000028388,0.0000028378,0.0000028327, +0.0000028130,0.0000027943,0.0000027865,0.0000027884,0.0000027901, +0.0000027900,0.0000027898,0.0000027901,0.0000027893,0.0000027877, +0.0000027854,0.0000027817,0.0000027779,0.0000027717,0.0000027692, +0.0000027688,0.0000027722,0.0000027780,0.0000027845,0.0000027931, +0.0000028002,0.0000028037,0.0000028059,0.0000028082,0.0000028099, +0.0000028095,0.0000028070,0.0000028056,0.0000028072,0.0000028108, +0.0000028131,0.0000028130,0.0000028097,0.0000028028,0.0000027957, +0.0000027898,0.0000027860,0.0000027917,0.0000028083,0.0000028302, +0.0000028494,0.0000028624,0.0000028684,0.0000028702,0.0000028704, +0.0000028722,0.0000028757,0.0000028776,0.0000028779,0.0000028771, +0.0000028747,0.0000028690,0.0000028606,0.0000028535,0.0000028499, +0.0000028506,0.0000028552,0.0000028646,0.0000028762,0.0000028848, +0.0000028899,0.0000028921,0.0000028921,0.0000028884,0.0000028827, +0.0000028760,0.0000028692,0.0000028611,0.0000028521,0.0000028458, +0.0000028402,0.0000028365,0.0000028381,0.0000028478,0.0000028605, +0.0000028630,0.0000028691,0.0000028895,0.0000028969,0.0000028903, +0.0000028836,0.0000028835,0.0000028853,0.0000028891,0.0000028944, +0.0000028950,0.0000028877,0.0000028792,0.0000028787,0.0000028866, +0.0000028939,0.0000028957,0.0000028934,0.0000028853,0.0000028757, +0.0000028670,0.0000028594,0.0000028495,0.0000028375,0.0000028253, +0.0000028200,0.0000028278,0.0000028445,0.0000028492,0.0000028439, +0.0000028376,0.0000028354,0.0000028489,0.0000028647,0.0000028599, +0.0000028531,0.0000028617,0.0000028793,0.0000028951,0.0000029040, +0.0000029044,0.0000028955,0.0000028877,0.0000028847,0.0000028753, +0.0000028602,0.0000028467,0.0000028460,0.0000028545,0.0000028645, +0.0000028813,0.0000029016,0.0000029143,0.0000029165,0.0000029152, +0.0000029119,0.0000029079,0.0000029015,0.0000028946,0.0000028877, +0.0000028827,0.0000028805,0.0000028799,0.0000028813,0.0000028783, +0.0000028635,0.0000028327,0.0000028155,0.0000028150,0.0000028121, +0.0000028060,0.0000028023,0.0000027863,0.0000027614,0.0000027486, +0.0000027489,0.0000027531,0.0000027539,0.0000027514,0.0000027496, +0.0000027429,0.0000027316,0.0000027290,0.0000027380,0.0000027458, +0.0000027462,0.0000027535,0.0000027578,0.0000027501,0.0000027535, +0.0000027796,0.0000027945,0.0000027903,0.0000027800,0.0000027704, +0.0000027672,0.0000027699,0.0000027747,0.0000027799,0.0000027852, +0.0000027894,0.0000027928,0.0000027960,0.0000027989,0.0000028017, +0.0000028044,0.0000028060,0.0000028061,0.0000028042,0.0000028008, +0.0000027988,0.0000027994,0.0000028036,0.0000028109,0.0000028183, +0.0000028231,0.0000028249,0.0000028265,0.0000028294,0.0000028319, +0.0000028329,0.0000028316,0.0000028275,0.0000028217,0.0000028159, +0.0000028124,0.0000028115,0.0000028115,0.0000028120,0.0000028131, +0.0000028140,0.0000028154,0.0000028173,0.0000028189,0.0000028192, +0.0000028188,0.0000028193,0.0000028214,0.0000028238,0.0000028249, +0.0000028248,0.0000028253,0.0000028281,0.0000028319,0.0000028355, +0.0000028392,0.0000028427,0.0000028451,0.0000028461,0.0000028469, +0.0000028502,0.0000028557,0.0000028620,0.0000028677,0.0000028732, +0.0000028782,0.0000028833,0.0000028881,0.0000028903,0.0000028928, +0.0000028932,0.0000028927,0.0000028915,0.0000028910,0.0000028915, +0.0000028925,0.0000028929,0.0000028917,0.0000028879,0.0000028806, +0.0000028706,0.0000028630,0.0000028600,0.0000028592,0.0000028582, +0.0000028571,0.0000028565,0.0000028560,0.0000028551,0.0000028527, +0.0000028489,0.0000028435,0.0000028383,0.0000028352,0.0000028361, +0.0000028407,0.0000028496,0.0000028617,0.0000028702,0.0000028725, +0.0000028707,0.0000028652,0.0000028579,0.0000028513,0.0000028474, +0.0000028453,0.0000028398,0.0000028317,0.0000028263,0.0000028240, +0.0000028219,0.0000028138,0.0000028024,0.0000028027,0.0000028143, +0.0000028258,0.0000028286,0.0000028266,0.0000028238,0.0000028225, +0.0000028229,0.0000028253,0.0000028291,0.0000028332,0.0000028367, +0.0000028371,0.0000028349,0.0000028306,0.0000028294,0.0000028299, +0.0000028302,0.0000028314,0.0000028331,0.0000028353,0.0000028363, +0.0000028346,0.0000028302,0.0000028252,0.0000028237,0.0000028246, +0.0000028258,0.0000028243,0.0000028199,0.0000028196,0.0000028225, +0.0000028278,0.0000028222,0.0000027992,0.0000028003,0.0000028200, +0.0000028217,0.0000028176,0.0000028092,0.0000028095,0.0000028106, +0.0000028024,0.0000028033,0.0000028053,0.0000027970,0.0000027874, +0.0000027892,0.0000027945,0.0000027970,0.0000027987,0.0000028021, +0.0000028038,0.0000028058,0.0000028111,0.0000028191,0.0000028242, +0.0000028251,0.0000028237,0.0000028198,0.0000028177,0.0000028149, +0.0000028144,0.0000028132,0.0000028105,0.0000028057,0.0000028020, +0.0000028012,0.0000028000,0.0000027980,0.0000027923,0.0000027826, +0.0000027720,0.0000027625,0.0000027542,0.0000027482,0.0000027443, +0.0000027414,0.0000027400,0.0000027417,0.0000027450,0.0000027490, +0.0000027531,0.0000027561,0.0000027593,0.0000027643,0.0000027703, +0.0000027748,0.0000027773,0.0000027791,0.0000027800,0.0000027777, +0.0000027707,0.0000027641,0.0000027602,0.0000027545,0.0000027471, +0.0000027412,0.0000027431,0.0000027564,0.0000027682,0.0000027669, +0.0000027587,0.0000027508,0.0000027413,0.0000027322,0.0000027289, +0.0000027270,0.0000027236,0.0000027221,0.0000027220,0.0000027207, +0.0000027199,0.0000027203,0.0000027202,0.0000027190,0.0000027166, +0.0000027135,0.0000027109,0.0000027091,0.0000027068,0.0000027032, +0.0000027007,0.0000026992,0.0000026943,0.0000026868,0.0000026836, +0.0000026855,0.0000026916,0.0000026995,0.0000027042,0.0000027034, +0.0000026978,0.0000026936,0.0000026919,0.0000026895,0.0000026854, +0.0000026834,0.0000026871,0.0000026972,0.0000027053,0.0000027073, +0.0000027079,0.0000027172,0.0000027295,0.0000027365,0.0000027414, +0.0000027411,0.0000027337,0.0000027264,0.0000027164,0.0000026830, +0.0000026478,0.0000026267,0.0000026401,0.0000026577,0.0000026620, +0.0000027157,0.0000027666,0.0000027752,0.0000027740,0.0000027758, +0.0000027853,0.0000028076,0.0000028222,0.0000028247,0.0000028244, +0.0000028244,0.0000028251,0.0000028229,0.0000028148,0.0000028070, +0.0000028039,0.0000028010,0.0000027990,0.0000027997,0.0000028024, +0.0000028035,0.0000028004,0.0000027930,0.0000027836,0.0000027760, +0.0000027726,0.0000027739,0.0000027778,0.0000027832,0.0000027890, +0.0000027995,0.0000028109,0.0000028105,0.0000027980,0.0000027849, +0.0000027777,0.0000027741,0.0000027741,0.0000027757,0.0000027775, +0.0000027868,0.0000027942,0.0000028162,0.0000028256,0.0000028204, +0.0000028100,0.0000027986,0.0000027949,0.0000028013,0.0000028006, +0.0000027902,0.0000027761,0.0000027647,0.0000027609,0.0000027636, +0.0000027603,0.0000027518,0.0000027535,0.0000027548,0.0000027500, +0.0000027288,0.0000027094,0.0000027052,0.0000027011,0.0000027003, +0.0000027022,0.0000027011,0.0000026881,0.0000026694,0.0000026599, +0.0000026580,0.0000026569,0.0000026521,0.0000026445,0.0000026392, +0.0000026388,0.0000026403,0.0000026413,0.0000026380,0.0000026301, +0.0000026208,0.0000026089,0.0000025938,0.0000025812,0.0000025758, +0.0000025746,0.0000025748,0.0000025760,0.0000025762,0.0000025747, +0.0000025731,0.0000025729,0.0000025739,0.0000025743,0.0000025747, +0.0000025751,0.0000025769,0.0000025770,0.0000025766,0.0000025759, +0.0000025751,0.0000025755,0.0000025765,0.0000025770,0.0000025758, +0.0000025731,0.0000025696,0.0000025654,0.0000025598,0.0000025542, +0.0000025512,0.0000025512,0.0000025524,0.0000025540,0.0000025549, +0.0000025559,0.0000025549,0.0000025540,0.0000025545,0.0000025576, +0.0000025576,0.0000025567,0.0000025512,0.0000025447,0.0000025375, +0.0000025391,0.0000025362,0.0000025456,0.0000025584,0.0000025712, +0.0000025822,0.0000025899,0.0000025948,0.0000025979,0.0000026006, +0.0000026040,0.0000026061,0.0000026078,0.0000026106,0.0000026170, +0.0000026261,0.0000026344,0.0000026396,0.0000026461,0.0000026578, +0.0000026706,0.0000026797,0.0000026856,0.0000026888,0.0000026888, +0.0000026869,0.0000026842,0.0000026854,0.0000026911,0.0000026945, +0.0000026922,0.0000026881,0.0000026875,0.0000026909,0.0000026978, +0.0000027028,0.0000027051,0.0000027080,0.0000027147,0.0000027212, +0.0000027247,0.0000027313,0.0000027459,0.0000027715,0.0000027987, +0.0000028162,0.0000028270,0.0000028316,0.0000028292,0.0000028250, +0.0000028233,0.0000028228,0.0000028240,0.0000028292,0.0000028359, +0.0000028357,0.0000028304,0.0000028300,0.0000028325,0.0000028268, +0.0000028200,0.0000028266,0.0000028358,0.0000028387,0.0000028306, +0.0000028181,0.0000028083,0.0000028063,0.0000028093,0.0000028135, +0.0000028158,0.0000028233,0.0000028407,0.0000028497,0.0000028464, +0.0000028428,0.0000028452,0.0000028478,0.0000028441,0.0000028364, +0.0000028273,0.0000028194,0.0000028152,0.0000028140,0.0000028135, +0.0000028124,0.0000028125,0.0000028176,0.0000028254,0.0000028346, +0.0000028435,0.0000028540,0.0000028665,0.0000028796,0.0000028900, +0.0000028980,0.0000029008,0.0000028977,0.0000028923,0.0000028918, +0.0000028924,0.0000028899,0.0000028812,0.0000028725,0.0000028684, +0.0000028655,0.0000028611,0.0000028582,0.0000028567,0.0000028574, +0.0000028590,0.0000028593,0.0000028566,0.0000028494,0.0000028423, +0.0000028412,0.0000028455,0.0000028521,0.0000028589,0.0000028649, +0.0000028725,0.0000028807,0.0000028857,0.0000028881,0.0000028890, +0.0000028904,0.0000028936,0.0000028966,0.0000028957,0.0000028934, +0.0000028885,0.0000028817,0.0000028757,0.0000028737,0.0000028754, +0.0000028797,0.0000028835,0.0000028834,0.0000028792,0.0000028792, +0.0000028886,0.0000028999,0.0000029051,0.0000029113,0.0000029186, +0.0000029206,0.0000029189,0.0000029161,0.0000029134,0.0000029107, +0.0000029078,0.0000029041,0.0000028999,0.0000028971,0.0000028966, +0.0000028962,0.0000028939,0.0000028923,0.0000028930,0.0000028954, +0.0000028969,0.0000028981,0.0000028992,0.0000028990,0.0000028963, +0.0000028912,0.0000028849,0.0000028788,0.0000028742,0.0000028708, +0.0000028684,0.0000028691,0.0000028728,0.0000028747,0.0000028733, +0.0000028695,0.0000028649,0.0000028612,0.0000028585,0.0000028579, +0.0000028588,0.0000028593,0.0000028577,0.0000028552,0.0000028522, +0.0000028483,0.0000028439,0.0000028389,0.0000028336,0.0000028292, +0.0000028278,0.0000028296,0.0000028345,0.0000028406,0.0000028475, +0.0000028561,0.0000028660,0.0000028748,0.0000028809,0.0000028829, +0.0000028808,0.0000028786,0.0000028769,0.0000028757,0.0000028736, +0.0000028705,0.0000028684,0.0000028667,0.0000028649,0.0000028645, +0.0000028661,0.0000028676,0.0000028653,0.0000028613,0.0000028579, +0.0000028567,0.0000028549,0.0000028523,0.0000028497,0.0000028495, +0.0000028520,0.0000028546,0.0000028555,0.0000028551,0.0000028536, +0.0000028508,0.0000028464,0.0000028415,0.0000028390,0.0000028391, +0.0000028389,0.0000028381,0.0000028380,0.0000028328,0.0000028092, +0.0000027878,0.0000027840,0.0000027888,0.0000027916,0.0000027916, +0.0000027902,0.0000027890,0.0000027876,0.0000027866,0.0000027854, +0.0000027838,0.0000027831,0.0000027828,0.0000027863,0.0000027927, +0.0000027998,0.0000028059,0.0000028118,0.0000028173,0.0000028197, +0.0000028204,0.0000028217,0.0000028246,0.0000028269,0.0000028269, +0.0000028244,0.0000028217,0.0000028194,0.0000028178,0.0000028152, +0.0000028125,0.0000028095,0.0000028057,0.0000027994,0.0000027914, +0.0000027832,0.0000027794,0.0000027884,0.0000028086,0.0000028319, +0.0000028511,0.0000028629,0.0000028678,0.0000028678,0.0000028682, +0.0000028706,0.0000028728,0.0000028741,0.0000028752,0.0000028756, +0.0000028739,0.0000028692,0.0000028635,0.0000028587,0.0000028558, +0.0000028553,0.0000028590,0.0000028670,0.0000028753,0.0000028816, +0.0000028875,0.0000028907,0.0000028891,0.0000028854,0.0000028791, +0.0000028704,0.0000028603,0.0000028484,0.0000028407,0.0000028347, +0.0000028325,0.0000028357,0.0000028394,0.0000028514,0.0000028590, +0.0000028622,0.0000028780,0.0000028943,0.0000028930,0.0000028847, +0.0000028836,0.0000028875,0.0000028926,0.0000028970,0.0000028964, +0.0000028866,0.0000028774,0.0000028777,0.0000028854,0.0000028930, +0.0000028951,0.0000028925,0.0000028843,0.0000028753,0.0000028668, +0.0000028583,0.0000028477,0.0000028345,0.0000028205,0.0000028116, +0.0000028151,0.0000028331,0.0000028439,0.0000028423,0.0000028379, +0.0000028346,0.0000028420,0.0000028635,0.0000028659,0.0000028563, +0.0000028597,0.0000028771,0.0000028962,0.0000029067,0.0000029061, +0.0000028957,0.0000028889,0.0000028854,0.0000028734,0.0000028575, +0.0000028457,0.0000028464,0.0000028570,0.0000028666,0.0000028787, +0.0000028953,0.0000029097,0.0000029157,0.0000029150,0.0000029117, +0.0000029057,0.0000028980,0.0000028904,0.0000028819,0.0000028747, +0.0000028737,0.0000028758,0.0000028782,0.0000028775,0.0000028636, +0.0000028336,0.0000028152,0.0000028144,0.0000028108,0.0000028044, +0.0000028021,0.0000027895,0.0000027650,0.0000027488,0.0000027446, +0.0000027455,0.0000027464,0.0000027458,0.0000027456,0.0000027437, +0.0000027362,0.0000027309,0.0000027349,0.0000027422,0.0000027426, +0.0000027418,0.0000027516,0.0000027541,0.0000027468,0.0000027536, +0.0000027789,0.0000027906,0.0000027866,0.0000027762,0.0000027651, +0.0000027602,0.0000027613,0.0000027656,0.0000027718,0.0000027775, +0.0000027812,0.0000027836,0.0000027852,0.0000027869,0.0000027893, +0.0000027912,0.0000027911,0.0000027890,0.0000027864,0.0000027858, +0.0000027892,0.0000027951,0.0000028019,0.0000028075,0.0000028111, +0.0000028130,0.0000028131,0.0000028149,0.0000028178,0.0000028191, +0.0000028182,0.0000028152,0.0000028116,0.0000028073,0.0000028040, +0.0000028032,0.0000028036,0.0000028039,0.0000028047,0.0000028056, +0.0000028067,0.0000028086,0.0000028105,0.0000028112,0.0000028104, +0.0000028095,0.0000028101,0.0000028129,0.0000028160,0.0000028175, +0.0000028180,0.0000028190,0.0000028216,0.0000028252,0.0000028293, +0.0000028335,0.0000028366,0.0000028381,0.0000028386,0.0000028407, +0.0000028436,0.0000028472,0.0000028504,0.0000028524,0.0000028542, +0.0000028569,0.0000028619,0.0000028693,0.0000028783,0.0000028868, +0.0000028949,0.0000029012,0.0000029053,0.0000029084,0.0000029099, +0.0000029093,0.0000029071,0.0000029039,0.0000028995,0.0000028925, +0.0000028832,0.0000028740,0.0000028674,0.0000028633,0.0000028607, +0.0000028589,0.0000028574,0.0000028562,0.0000028552,0.0000028529, +0.0000028493,0.0000028446,0.0000028410,0.0000028389,0.0000028410, +0.0000028469,0.0000028553,0.0000028650,0.0000028718,0.0000028732, +0.0000028710,0.0000028662,0.0000028595,0.0000028510,0.0000028434, +0.0000028400,0.0000028372,0.0000028313,0.0000028245,0.0000028201, +0.0000028166,0.0000028115,0.0000028045,0.0000028049,0.0000028136, +0.0000028237,0.0000028272,0.0000028245,0.0000028203,0.0000028180, +0.0000028182,0.0000028210,0.0000028253,0.0000028312,0.0000028370, +0.0000028402,0.0000028385,0.0000028333,0.0000028292,0.0000028288, +0.0000028278,0.0000028266,0.0000028267,0.0000028296,0.0000028328, +0.0000028325,0.0000028313,0.0000028303,0.0000028282,0.0000028269, +0.0000028288,0.0000028278,0.0000028207,0.0000028165,0.0000028164, +0.0000028216,0.0000028230,0.0000028086,0.0000027910,0.0000028048, +0.0000028185,0.0000028187,0.0000028150,0.0000028076,0.0000028088, +0.0000028050,0.0000027991,0.0000028025,0.0000028038,0.0000027964, +0.0000027895,0.0000027883,0.0000027895,0.0000027930,0.0000027973, +0.0000028009,0.0000028052,0.0000028103,0.0000028175,0.0000028226, +0.0000028230,0.0000028207,0.0000028162,0.0000028113,0.0000028071, +0.0000028040,0.0000028018,0.0000027994,0.0000027955,0.0000027920, +0.0000027927,0.0000027953,0.0000027976,0.0000027982,0.0000027964, +0.0000027910,0.0000027815,0.0000027686,0.0000027552,0.0000027459, +0.0000027411,0.0000027379,0.0000027360,0.0000027366,0.0000027384, +0.0000027401,0.0000027410,0.0000027412,0.0000027436,0.0000027490, +0.0000027559,0.0000027619,0.0000027664,0.0000027696,0.0000027711, +0.0000027696,0.0000027634,0.0000027577,0.0000027538,0.0000027485, +0.0000027420,0.0000027379,0.0000027421,0.0000027558,0.0000027622, +0.0000027586,0.0000027508,0.0000027408,0.0000027306,0.0000027264, +0.0000027253,0.0000027227,0.0000027217,0.0000027226,0.0000027222, +0.0000027210,0.0000027201,0.0000027191,0.0000027182,0.0000027173, +0.0000027159,0.0000027138,0.0000027113,0.0000027090,0.0000027072, +0.0000027050,0.0000027030,0.0000027023,0.0000026984,0.0000026890, +0.0000026814,0.0000026801,0.0000026835,0.0000026910,0.0000026975, +0.0000026998,0.0000026974,0.0000026941,0.0000026904,0.0000026847, +0.0000026782,0.0000026754,0.0000026796,0.0000026904,0.0000027004, +0.0000027033,0.0000027034,0.0000027129,0.0000027281,0.0000027371, +0.0000027402,0.0000027372,0.0000027295,0.0000027233,0.0000027082, +0.0000026722,0.0000026372,0.0000026225,0.0000026436,0.0000026555, +0.0000026709,0.0000027352,0.0000027714,0.0000027750,0.0000027753, +0.0000027801,0.0000027945,0.0000028142,0.0000028239,0.0000028244, +0.0000028236,0.0000028237,0.0000028242,0.0000028232,0.0000028173, +0.0000028083,0.0000028040,0.0000028028,0.0000028014,0.0000027971, +0.0000027941,0.0000027938,0.0000027945,0.0000027929,0.0000027867, +0.0000027806,0.0000027779,0.0000027798,0.0000027821,0.0000027859, +0.0000027922,0.0000027999,0.0000028103,0.0000028118,0.0000028016, +0.0000027869,0.0000027763,0.0000027698,0.0000027680,0.0000027693, +0.0000027728,0.0000027839,0.0000027912,0.0000028115,0.0000028221, +0.0000028172,0.0000028065,0.0000027949,0.0000027919,0.0000027989, +0.0000027975,0.0000027853,0.0000027706,0.0000027613,0.0000027613, +0.0000027652,0.0000027583,0.0000027509,0.0000027540,0.0000027546, +0.0000027457,0.0000027209,0.0000027057,0.0000027030,0.0000026981, +0.0000026983,0.0000027007,0.0000026962,0.0000026786,0.0000026611, +0.0000026555,0.0000026543,0.0000026492,0.0000026419,0.0000026366, +0.0000026331,0.0000026316,0.0000026334,0.0000026352,0.0000026316, +0.0000026196,0.0000026036,0.0000025884,0.0000025770,0.0000025730, +0.0000025744,0.0000025767,0.0000025786,0.0000025792,0.0000025768, +0.0000025710,0.0000025645,0.0000025619,0.0000025634,0.0000025663, +0.0000025698,0.0000025739,0.0000025781,0.0000025800,0.0000025803, +0.0000025812,0.0000025822,0.0000025821,0.0000025832,0.0000025845, +0.0000025839,0.0000025810,0.0000025773,0.0000025730,0.0000025667, +0.0000025606,0.0000025573,0.0000025563,0.0000025561,0.0000025569, +0.0000025570,0.0000025560,0.0000025530,0.0000025496,0.0000025457, +0.0000025443,0.0000025375,0.0000025336,0.0000025310,0.0000025333, +0.0000025371,0.0000025414,0.0000025395,0.0000025344,0.0000025296, +0.0000025257,0.0000025317,0.0000025487,0.0000025677,0.0000025809, +0.0000025863,0.0000025875,0.0000025885,0.0000025910,0.0000025957, +0.0000026026,0.0000026096,0.0000026151,0.0000026221,0.0000026324, +0.0000026400,0.0000026445,0.0000026535,0.0000026652,0.0000026729, +0.0000026774,0.0000026823,0.0000026870,0.0000026887,0.0000026891, +0.0000026926,0.0000026956,0.0000026930,0.0000026858,0.0000026822, +0.0000026851,0.0000026939,0.0000027015,0.0000027061,0.0000027084, +0.0000027105,0.0000027151,0.0000027202,0.0000027243,0.0000027319, +0.0000027488,0.0000027711,0.0000027888,0.0000028007,0.0000028061, +0.0000028038,0.0000027977,0.0000027933,0.0000027932,0.0000027966, +0.0000028075,0.0000028251,0.0000028359,0.0000028356,0.0000028335, +0.0000028347,0.0000028290,0.0000028218,0.0000028275,0.0000028377, +0.0000028404,0.0000028328,0.0000028208,0.0000028111,0.0000028094, +0.0000028136,0.0000028166,0.0000028179,0.0000028241,0.0000028382, +0.0000028463,0.0000028441,0.0000028431,0.0000028483,0.0000028496, +0.0000028430,0.0000028326,0.0000028219,0.0000028166,0.0000028157, +0.0000028153,0.0000028158,0.0000028162,0.0000028196,0.0000028235, +0.0000028290,0.0000028365,0.0000028454,0.0000028588,0.0000028729, +0.0000028841,0.0000028909,0.0000028929,0.0000028916,0.0000028925, +0.0000028939,0.0000028936,0.0000028869,0.0000028773,0.0000028710, +0.0000028682,0.0000028649,0.0000028604,0.0000028581,0.0000028602, +0.0000028649,0.0000028693,0.0000028709,0.0000028684,0.0000028618, +0.0000028546,0.0000028527,0.0000028558,0.0000028641,0.0000028721, +0.0000028776,0.0000028821,0.0000028868,0.0000028892,0.0000028898, +0.0000028915,0.0000028947,0.0000028971,0.0000028983,0.0000028961, +0.0000028916,0.0000028857,0.0000028773,0.0000028681,0.0000028620, +0.0000028614,0.0000028672,0.0000028765,0.0000028831,0.0000028824, +0.0000028779,0.0000028819,0.0000028953,0.0000029054,0.0000029112, +0.0000029195,0.0000029245,0.0000029232,0.0000029191,0.0000029157, +0.0000029146,0.0000029142,0.0000029115,0.0000029064,0.0000029021, +0.0000029011,0.0000029024,0.0000029017,0.0000028989,0.0000028978, +0.0000028987,0.0000028986,0.0000028973,0.0000028960,0.0000028953, +0.0000028936,0.0000028893,0.0000028835,0.0000028783,0.0000028731, +0.0000028676,0.0000028625,0.0000028610,0.0000028632,0.0000028673, +0.0000028688,0.0000028671,0.0000028631,0.0000028590,0.0000028565, +0.0000028552,0.0000028551,0.0000028562,0.0000028567,0.0000028558, +0.0000028535,0.0000028498,0.0000028454,0.0000028408,0.0000028356, +0.0000028301,0.0000028246,0.0000028206,0.0000028199,0.0000028220, +0.0000028259,0.0000028312,0.0000028388,0.0000028484,0.0000028575, +0.0000028645,0.0000028683,0.0000028688,0.0000028688,0.0000028705, +0.0000028723,0.0000028727,0.0000028703,0.0000028668,0.0000028639, +0.0000028608,0.0000028585,0.0000028588,0.0000028599,0.0000028578, +0.0000028519,0.0000028457,0.0000028423,0.0000028408,0.0000028398, +0.0000028399,0.0000028423,0.0000028473,0.0000028522,0.0000028549, +0.0000028552,0.0000028537,0.0000028499,0.0000028453,0.0000028411, +0.0000028362,0.0000028319,0.0000028317,0.0000028343,0.0000028363, +0.0000028376,0.0000028325,0.0000028079,0.0000027838,0.0000027798, +0.0000027868,0.0000027907,0.0000027884,0.0000027849,0.0000027834, +0.0000027856,0.0000027913,0.0000027971,0.0000028027,0.0000028065, +0.0000028103,0.0000028149,0.0000028201,0.0000028239,0.0000028253, +0.0000028272,0.0000028284,0.0000028276,0.0000028273,0.0000028288, +0.0000028325,0.0000028358,0.0000028371,0.0000028365,0.0000028359, +0.0000028337,0.0000028306,0.0000028248,0.0000028177,0.0000028113, +0.0000028061,0.0000028000,0.0000027933,0.0000027846,0.0000027768, +0.0000027761,0.0000027869,0.0000028068,0.0000028286,0.0000028471, +0.0000028597,0.0000028642,0.0000028651,0.0000028666,0.0000028679, +0.0000028689,0.0000028696,0.0000028718,0.0000028740,0.0000028735, +0.0000028712,0.0000028674,0.0000028632,0.0000028592,0.0000028583, +0.0000028597,0.0000028631,0.0000028670,0.0000028736,0.0000028797, +0.0000028829,0.0000028815,0.0000028774,0.0000028693,0.0000028591, +0.0000028468,0.0000028375,0.0000028292,0.0000028250,0.0000028296, +0.0000028341,0.0000028407,0.0000028515,0.0000028572,0.0000028673, +0.0000028870,0.0000028943,0.0000028870,0.0000028830,0.0000028889, +0.0000028965,0.0000029003,0.0000028981,0.0000028871,0.0000028774, +0.0000028762,0.0000028808,0.0000028875,0.0000028904,0.0000028884, +0.0000028820,0.0000028749,0.0000028676,0.0000028593,0.0000028482, +0.0000028347,0.0000028200,0.0000028086,0.0000028081,0.0000028225, +0.0000028374,0.0000028407,0.0000028386,0.0000028352,0.0000028379, +0.0000028592,0.0000028712,0.0000028625,0.0000028599,0.0000028748, +0.0000028961,0.0000029088,0.0000029079,0.0000028969,0.0000028906, +0.0000028858,0.0000028716,0.0000028554,0.0000028447,0.0000028462, +0.0000028584,0.0000028680,0.0000028770,0.0000028890,0.0000029027, +0.0000029106,0.0000029107,0.0000029073,0.0000029013,0.0000028955, +0.0000028903,0.0000028825,0.0000028719,0.0000028670,0.0000028701, +0.0000028746,0.0000028753,0.0000028628,0.0000028332,0.0000028148, +0.0000028137,0.0000028090,0.0000028028,0.0000028015,0.0000027938, +0.0000027715,0.0000027525,0.0000027454,0.0000027432,0.0000027425, +0.0000027425,0.0000027430,0.0000027426,0.0000027402,0.0000027357, +0.0000027357,0.0000027402,0.0000027414,0.0000027375,0.0000027384, +0.0000027503,0.0000027515,0.0000027446,0.0000027517,0.0000027756, +0.0000027866,0.0000027834,0.0000027731,0.0000027615,0.0000027545, +0.0000027536,0.0000027561,0.0000027611,0.0000027650,0.0000027672, +0.0000027681,0.0000027693,0.0000027714,0.0000027731,0.0000027735, +0.0000027731,0.0000027735,0.0000027753,0.0000027793,0.0000027847, +0.0000027902,0.0000027948,0.0000027980,0.0000028000,0.0000028007, +0.0000028010,0.0000028033,0.0000028049,0.0000028044,0.0000028023, +0.0000028001,0.0000027969,0.0000027937,0.0000027920,0.0000027915, +0.0000027914,0.0000027916,0.0000027923,0.0000027926,0.0000027929, +0.0000027928,0.0000027924,0.0000027911,0.0000027890,0.0000027881, +0.0000027894,0.0000027923,0.0000027942,0.0000027946,0.0000027946, +0.0000027952,0.0000027974,0.0000028013,0.0000028058,0.0000028103, +0.0000028149,0.0000028198,0.0000028259,0.0000028322,0.0000028375, +0.0000028420,0.0000028448,0.0000028448,0.0000028430,0.0000028421, +0.0000028440,0.0000028497,0.0000028591,0.0000028714,0.0000028855, +0.0000028988,0.0000029089,0.0000029176,0.0000029222,0.0000029226, +0.0000029203,0.0000029160,0.0000029106,0.0000029037,0.0000028946, +0.0000028849,0.0000028762,0.0000028701,0.0000028668,0.0000028647, +0.0000028627,0.0000028613,0.0000028599,0.0000028570,0.0000028540, +0.0000028517,0.0000028506,0.0000028485,0.0000028490,0.0000028545, +0.0000028619,0.0000028684,0.0000028728,0.0000028726,0.0000028699, +0.0000028654,0.0000028596,0.0000028510,0.0000028405,0.0000028323, +0.0000028295,0.0000028278,0.0000028234,0.0000028181,0.0000028135, +0.0000028067,0.0000028013,0.0000028058,0.0000028180,0.0000028282, +0.0000028300,0.0000028260,0.0000028194,0.0000028157,0.0000028150, +0.0000028173,0.0000028223,0.0000028291,0.0000028357,0.0000028399, +0.0000028404,0.0000028387,0.0000028361,0.0000028340,0.0000028313, +0.0000028265,0.0000028227,0.0000028229,0.0000028265,0.0000028285, +0.0000028306,0.0000028327,0.0000028319,0.0000028325,0.0000028333, +0.0000028321,0.0000028244,0.0000028165,0.0000028135,0.0000028150, +0.0000028197,0.0000028164,0.0000027956,0.0000027881,0.0000028069, +0.0000028179,0.0000028174,0.0000028123,0.0000028049,0.0000028051, +0.0000028012,0.0000027971,0.0000028001,0.0000028024,0.0000027998, +0.0000027937,0.0000027878,0.0000027848,0.0000027857,0.0000027880, +0.0000027912,0.0000027961,0.0000028025,0.0000028074,0.0000028086, +0.0000028081,0.0000028063,0.0000028028,0.0000027997,0.0000027971, +0.0000027948,0.0000027925,0.0000027882,0.0000027823,0.0000027794, +0.0000027796,0.0000027830,0.0000027890,0.0000027939,0.0000027953, +0.0000027948,0.0000027901,0.0000027777,0.0000027612,0.0000027485, +0.0000027405,0.0000027357,0.0000027348,0.0000027355,0.0000027363, +0.0000027360,0.0000027338,0.0000027328,0.0000027320,0.0000027363, +0.0000027435,0.0000027514,0.0000027582,0.0000027630,0.0000027646, +0.0000027618,0.0000027555,0.0000027504,0.0000027464,0.0000027418, +0.0000027370,0.0000027350,0.0000027426,0.0000027540,0.0000027553, +0.0000027492,0.0000027393,0.0000027283,0.0000027240,0.0000027228, +0.0000027204,0.0000027200,0.0000027217,0.0000027218,0.0000027197, +0.0000027175,0.0000027159,0.0000027152,0.0000027154,0.0000027159, +0.0000027157,0.0000027149,0.0000027127,0.0000027096,0.0000027074, +0.0000027063,0.0000027054,0.0000027051,0.0000027018,0.0000026912, +0.0000026802,0.0000026767,0.0000026783,0.0000026832,0.0000026900, +0.0000026954,0.0000026970,0.0000026947,0.0000026894,0.0000026809, +0.0000026710,0.0000026665,0.0000026710,0.0000026832,0.0000026948, +0.0000026998,0.0000027006,0.0000027087,0.0000027244,0.0000027356, +0.0000027387,0.0000027348,0.0000027254,0.0000027192,0.0000026990, +0.0000026622,0.0000026274,0.0000026189,0.0000026444,0.0000026545, +0.0000026810,0.0000027457,0.0000027725,0.0000027746,0.0000027757, +0.0000027828,0.0000028004,0.0000028184,0.0000028251,0.0000028242, +0.0000028222,0.0000028224,0.0000028220,0.0000028216,0.0000028176, +0.0000028100,0.0000028043,0.0000028029,0.0000028032,0.0000027980, +0.0000027903,0.0000027857,0.0000027857,0.0000027880,0.0000027878, +0.0000027837,0.0000027813,0.0000027838,0.0000027862,0.0000027891, +0.0000027946,0.0000028000,0.0000028077,0.0000028108,0.0000028024, +0.0000027881,0.0000027762,0.0000027669,0.0000027629,0.0000027636, +0.0000027682,0.0000027810,0.0000027886,0.0000028075,0.0000028184, +0.0000028143,0.0000028032,0.0000027916,0.0000027890,0.0000027962, +0.0000027940,0.0000027799,0.0000027653,0.0000027593,0.0000027623, +0.0000027650,0.0000027553,0.0000027505,0.0000027538,0.0000027548, +0.0000027399,0.0000027144,0.0000027047,0.0000027015,0.0000026969, +0.0000026980,0.0000026990,0.0000026893,0.0000026690,0.0000026560, +0.0000026538,0.0000026487,0.0000026396,0.0000026331,0.0000026298, +0.0000026263,0.0000026240,0.0000026254,0.0000026272,0.0000026222, +0.0000026057,0.0000025868,0.0000025757,0.0000025725,0.0000025730, +0.0000025764,0.0000025794,0.0000025804,0.0000025789,0.0000025739, +0.0000025657,0.0000025580,0.0000025572,0.0000025618,0.0000025671, +0.0000025721,0.0000025780,0.0000025824,0.0000025839,0.0000025850, +0.0000025878,0.0000025892,0.0000025900,0.0000025928,0.0000025959, +0.0000025970,0.0000025961,0.0000025937,0.0000025891,0.0000025807, +0.0000025727,0.0000025693,0.0000025689,0.0000025688,0.0000025696, +0.0000025705,0.0000025698,0.0000025664,0.0000025634,0.0000025585, +0.0000025532,0.0000025410,0.0000025276,0.0000025155,0.0000025074, +0.0000025120,0.0000025240,0.0000025353,0.0000025418,0.0000025397, +0.0000025325,0.0000025218,0.0000025170,0.0000025217,0.0000025394, +0.0000025603,0.0000025748,0.0000025797,0.0000025791,0.0000025799, +0.0000025850,0.0000025931,0.0000026011,0.0000026076,0.0000026130, +0.0000026193,0.0000026287,0.0000026372,0.0000026414,0.0000026484, +0.0000026593,0.0000026681,0.0000026758,0.0000026845,0.0000026910, +0.0000026939,0.0000026945,0.0000026944,0.0000026920,0.0000026837, +0.0000026755,0.0000026783,0.0000026888,0.0000026993,0.0000027068, +0.0000027095,0.0000027096,0.0000027103,0.0000027145,0.0000027200, +0.0000027260,0.0000027358,0.0000027495,0.0000027627,0.0000027702, +0.0000027747,0.0000027737,0.0000027680,0.0000027636,0.0000027628, +0.0000027672,0.0000027810,0.0000028059,0.0000028301,0.0000028381, +0.0000028363,0.0000028364,0.0000028302,0.0000028221,0.0000028285, +0.0000028389,0.0000028419,0.0000028352,0.0000028251,0.0000028156, +0.0000028137,0.0000028183,0.0000028207,0.0000028212,0.0000028250, +0.0000028342,0.0000028416,0.0000028419,0.0000028439,0.0000028497, +0.0000028484,0.0000028399,0.0000028277,0.0000028193,0.0000028173, +0.0000028170,0.0000028173,0.0000028194,0.0000028225,0.0000028256, +0.0000028272,0.0000028317,0.0000028398,0.0000028515,0.0000028657, +0.0000028762,0.0000028815,0.0000028843,0.0000028873,0.0000028927, +0.0000028960,0.0000028927,0.0000028825,0.0000028730,0.0000028677, +0.0000028644,0.0000028604,0.0000028577,0.0000028578,0.0000028632, +0.0000028721,0.0000028784,0.0000028790,0.0000028755,0.0000028712, +0.0000028671,0.0000028645,0.0000028665,0.0000028744,0.0000028834, +0.0000028892,0.0000028925,0.0000028927,0.0000028931,0.0000028946, +0.0000028960,0.0000028963,0.0000028966,0.0000028956,0.0000028930, +0.0000028884,0.0000028828,0.0000028766,0.0000028686,0.0000028625, +0.0000028599,0.0000028608,0.0000028668,0.0000028762,0.0000028814, +0.0000028788,0.0000028783,0.0000028881,0.0000029022,0.0000029096, +0.0000029175,0.0000029258,0.0000029269,0.0000029227,0.0000029177, +0.0000029164,0.0000029185,0.0000029184,0.0000029138,0.0000029082, +0.0000029064,0.0000029084,0.0000029099,0.0000029076,0.0000029039, +0.0000029015,0.0000029000,0.0000028966,0.0000028935,0.0000028920, +0.0000028910,0.0000028888,0.0000028847,0.0000028805,0.0000028769, +0.0000028714,0.0000028654,0.0000028611,0.0000028603,0.0000028615, +0.0000028625,0.0000028610,0.0000028572,0.0000028526,0.0000028488, +0.0000028476,0.0000028481,0.0000028489,0.0000028498,0.0000028496, +0.0000028482,0.0000028457,0.0000028422,0.0000028373,0.0000028318, +0.0000028269,0.0000028216,0.0000028157,0.0000028119,0.0000028111, +0.0000028118,0.0000028140,0.0000028169,0.0000028212,0.0000028280, +0.0000028361,0.0000028440,0.0000028502,0.0000028535,0.0000028556, +0.0000028594,0.0000028633,0.0000028657,0.0000028648,0.0000028609, +0.0000028572,0.0000028542,0.0000028522,0.0000028527,0.0000028544, +0.0000028538,0.0000028489,0.0000028413,0.0000028347,0.0000028306, +0.0000028278,0.0000028263,0.0000028278,0.0000028337,0.0000028416, +0.0000028479,0.0000028521,0.0000028535,0.0000028515,0.0000028461, +0.0000028400,0.0000028351,0.0000028292,0.0000028232,0.0000028228, +0.0000028282,0.0000028336,0.0000028353,0.0000028310,0.0000028073, +0.0000027796,0.0000027733,0.0000027811,0.0000027842,0.0000027804, +0.0000027783,0.0000027828,0.0000027958,0.0000028107,0.0000028209, +0.0000028262,0.0000028261,0.0000028264,0.0000028273,0.0000028295, +0.0000028312,0.0000028311,0.0000028314,0.0000028306,0.0000028291, +0.0000028292,0.0000028313,0.0000028349,0.0000028381,0.0000028404, +0.0000028416,0.0000028432,0.0000028432,0.0000028422,0.0000028381, +0.0000028306,0.0000028212,0.0000028108,0.0000028007,0.0000027922, +0.0000027839,0.0000027765,0.0000027739,0.0000027751,0.0000027843, +0.0000028001,0.0000028200,0.0000028401,0.0000028535,0.0000028603, +0.0000028631,0.0000028638,0.0000028636,0.0000028631,0.0000028647, +0.0000028687,0.0000028723,0.0000028735,0.0000028728,0.0000028693, +0.0000028646,0.0000028603,0.0000028577,0.0000028547,0.0000028540, +0.0000028576,0.0000028629,0.0000028675,0.0000028695,0.0000028677, +0.0000028632,0.0000028549,0.0000028448,0.0000028364,0.0000028272, +0.0000028186,0.0000028200,0.0000028286,0.0000028330,0.0000028409, +0.0000028513,0.0000028598,0.0000028765,0.0000028927,0.0000028898, +0.0000028828,0.0000028890,0.0000028994,0.0000029042,0.0000029009, +0.0000028898,0.0000028796,0.0000028763,0.0000028774,0.0000028811, +0.0000028840,0.0000028834,0.0000028798,0.0000028745,0.0000028693, +0.0000028614,0.0000028494,0.0000028359,0.0000028219,0.0000028091, +0.0000028054,0.0000028146,0.0000028304,0.0000028382,0.0000028386, +0.0000028369,0.0000028378,0.0000028531,0.0000028722,0.0000028705, +0.0000028625,0.0000028724,0.0000028942,0.0000029099,0.0000029103, +0.0000028994,0.0000028930,0.0000028863,0.0000028713,0.0000028546, +0.0000028443,0.0000028453,0.0000028584,0.0000028684,0.0000028754, +0.0000028835,0.0000028947,0.0000029030,0.0000029041,0.0000029024, +0.0000028989,0.0000028962,0.0000028933,0.0000028878,0.0000028762, +0.0000028654,0.0000028652,0.0000028703,0.0000028719,0.0000028612, +0.0000028317,0.0000028138,0.0000028129,0.0000028072,0.0000028012, +0.0000028011,0.0000027979,0.0000027803,0.0000027605,0.0000027509, +0.0000027464,0.0000027437,0.0000027423,0.0000027411,0.0000027409, +0.0000027405,0.0000027391,0.0000027380,0.0000027391,0.0000027402, +0.0000027373,0.0000027314,0.0000027365,0.0000027488,0.0000027483, +0.0000027412,0.0000027479,0.0000027711,0.0000027825,0.0000027797, +0.0000027699,0.0000027579,0.0000027491,0.0000027457,0.0000027464, +0.0000027487,0.0000027512,0.0000027528,0.0000027538,0.0000027544, +0.0000027549,0.0000027562,0.0000027592,0.0000027631,0.0000027662, +0.0000027682,0.0000027706,0.0000027742,0.0000027784,0.0000027823, +0.0000027858,0.0000027885,0.0000027893,0.0000027895,0.0000027902, +0.0000027899,0.0000027886,0.0000027865,0.0000027832,0.0000027794, +0.0000027765,0.0000027744,0.0000027725,0.0000027710,0.0000027709, +0.0000027712,0.0000027709,0.0000027703,0.0000027694,0.0000027689, +0.0000027676,0.0000027658,0.0000027655,0.0000027666,0.0000027669, +0.0000027651,0.0000027622,0.0000027586,0.0000027564,0.0000027567, +0.0000027591,0.0000027621,0.0000027662,0.0000027723,0.0000027802, +0.0000027895,0.0000027983,0.0000028059,0.0000028121,0.0000028178, +0.0000028233,0.0000028286,0.0000028344,0.0000028400,0.0000028461, +0.0000028533,0.0000028624,0.0000028748,0.0000028888,0.0000029024, +0.0000029135,0.0000029222,0.0000029250,0.0000029247,0.0000029219, +0.0000029172,0.0000029103,0.0000029012,0.0000028914,0.0000028821, +0.0000028758,0.0000028730,0.0000028717,0.0000028707,0.0000028705, +0.0000028699,0.0000028680,0.0000028668,0.0000028677,0.0000028675, +0.0000028626,0.0000028585,0.0000028609,0.0000028657,0.0000028695, +0.0000028724,0.0000028723,0.0000028695,0.0000028649,0.0000028597, +0.0000028525,0.0000028415,0.0000028287,0.0000028210,0.0000028205, +0.0000028204,0.0000028164,0.0000028110,0.0000028028,0.0000027953, +0.0000028004,0.0000028176,0.0000028335,0.0000028388,0.0000028346, +0.0000028258,0.0000028193,0.0000028164,0.0000028173,0.0000028222, +0.0000028295,0.0000028362,0.0000028396,0.0000028400,0.0000028397, +0.0000028411,0.0000028426,0.0000028422,0.0000028371,0.0000028292, +0.0000028239,0.0000028244,0.0000028257,0.0000028279,0.0000028309, +0.0000028338,0.0000028374,0.0000028375,0.0000028356,0.0000028287, +0.0000028191,0.0000028132,0.0000028114,0.0000028135,0.0000028160, +0.0000028068,0.0000027867,0.0000027869,0.0000028093,0.0000028173, +0.0000028152,0.0000028082,0.0000028033,0.0000028026,0.0000028006, +0.0000027978,0.0000027972,0.0000027998,0.0000028008,0.0000027975, +0.0000027950,0.0000027936,0.0000027938,0.0000027949,0.0000027979, +0.0000028031,0.0000028079,0.0000028099,0.0000028101,0.0000028089, +0.0000028060,0.0000028021,0.0000027986,0.0000027961,0.0000027934, +0.0000027896,0.0000027840,0.0000027794,0.0000027775,0.0000027786, +0.0000027808,0.0000027838,0.0000027888,0.0000027943,0.0000027969, +0.0000027943,0.0000027836,0.0000027689,0.0000027560,0.0000027478, +0.0000027449,0.0000027453,0.0000027469,0.0000027464,0.0000027429, +0.0000027384,0.0000027332,0.0000027289,0.0000027282,0.0000027334, +0.0000027425,0.0000027511,0.0000027565,0.0000027578,0.0000027537, +0.0000027475,0.0000027431,0.0000027394,0.0000027358,0.0000027319, +0.0000027330,0.0000027430,0.0000027485,0.0000027456,0.0000027364, +0.0000027253,0.0000027208,0.0000027199,0.0000027175,0.0000027174, +0.0000027194,0.0000027187,0.0000027154,0.0000027129,0.0000027129, +0.0000027142,0.0000027158,0.0000027167,0.0000027168,0.0000027166, +0.0000027161,0.0000027144,0.0000027112,0.0000027085,0.0000027078, +0.0000027077,0.0000027073,0.0000027037,0.0000026930,0.0000026806, +0.0000026746,0.0000026748,0.0000026781,0.0000026840,0.0000026905, +0.0000026943,0.0000026932,0.0000026867,0.0000026765,0.0000026641, +0.0000026567,0.0000026605,0.0000026744,0.0000026882,0.0000026967, +0.0000026988,0.0000027037,0.0000027194,0.0000027331,0.0000027366, +0.0000027315,0.0000027210,0.0000027135,0.0000026899,0.0000026531, +0.0000026214,0.0000026186,0.0000026445,0.0000026546,0.0000026875, +0.0000027495,0.0000027725,0.0000027727,0.0000027736,0.0000027836, +0.0000028014,0.0000028184,0.0000028241,0.0000028219,0.0000028199, +0.0000028199,0.0000028188,0.0000028181,0.0000028157,0.0000028104, +0.0000028055,0.0000028031,0.0000028040,0.0000028004,0.0000027915, +0.0000027831,0.0000027802,0.0000027820,0.0000027850,0.0000027852, +0.0000027849,0.0000027868,0.0000027899,0.0000027930,0.0000027965, +0.0000027998,0.0000028040,0.0000028071,0.0000028007,0.0000027863, +0.0000027747,0.0000027655,0.0000027595,0.0000027594,0.0000027640, +0.0000027781,0.0000027865,0.0000028048,0.0000028157,0.0000028118, +0.0000028001,0.0000027882,0.0000027861,0.0000027936,0.0000027907, +0.0000027747,0.0000027606,0.0000027578,0.0000027634,0.0000027631, +0.0000027523,0.0000027503,0.0000027537,0.0000027547,0.0000027333, +0.0000027103,0.0000027054,0.0000027009,0.0000026968,0.0000026977, +0.0000026960,0.0000026808,0.0000026611,0.0000026542,0.0000026515, +0.0000026418,0.0000026311,0.0000026257,0.0000026221,0.0000026183, +0.0000026152,0.0000026154,0.0000026166,0.0000026111,0.0000025939, +0.0000025770,0.0000025720,0.0000025725,0.0000025741,0.0000025767, +0.0000025783,0.0000025778,0.0000025753,0.0000025714,0.0000025660, +0.0000025636,0.0000025655,0.0000025709,0.0000025754,0.0000025790, +0.0000025832,0.0000025864,0.0000025889,0.0000025927,0.0000025973, +0.0000025995,0.0000026001,0.0000026008,0.0000026022,0.0000026026, +0.0000026019,0.0000025995,0.0000025943,0.0000025847,0.0000025755, +0.0000025712,0.0000025711,0.0000025715,0.0000025739,0.0000025776, +0.0000025807,0.0000025810,0.0000025837,0.0000025808,0.0000025766, +0.0000025638,0.0000025459,0.0000025249,0.0000025065,0.0000024996, +0.0000025002,0.0000025122,0.0000025245,0.0000025332,0.0000025365, +0.0000025353,0.0000025309,0.0000025239,0.0000025200,0.0000025245, +0.0000025341,0.0000025543,0.0000025704,0.0000025775,0.0000025808, +0.0000025856,0.0000025903,0.0000025942,0.0000025995,0.0000026058, +0.0000026117,0.0000026173,0.0000026252,0.0000026337,0.0000026391, +0.0000026478,0.0000026611,0.0000026720,0.0000026805,0.0000026892, +0.0000026953,0.0000026957,0.0000026927,0.0000026888,0.0000026806, +0.0000026716,0.0000026712,0.0000026818,0.0000026966,0.0000027062, +0.0000027101,0.0000027108,0.0000027089,0.0000027094,0.0000027144, +0.0000027211,0.0000027293,0.0000027384,0.0000027452,0.0000027484, +0.0000027504,0.0000027513,0.0000027480,0.0000027437,0.0000027425, +0.0000027457,0.0000027577,0.0000027854,0.0000028191,0.0000028371, +0.0000028386,0.0000028374,0.0000028305,0.0000028216,0.0000028293, +0.0000028395,0.0000028429,0.0000028372,0.0000028294,0.0000028205, +0.0000028182,0.0000028234,0.0000028253,0.0000028245,0.0000028252, +0.0000028297,0.0000028374,0.0000028410,0.0000028448,0.0000028481, +0.0000028449,0.0000028345,0.0000028246,0.0000028210,0.0000028206, +0.0000028203,0.0000028228,0.0000028276,0.0000028302,0.0000028308, +0.0000028314,0.0000028361,0.0000028461,0.0000028580,0.0000028677, +0.0000028734,0.0000028782,0.0000028855,0.0000028923,0.0000028954, +0.0000028894,0.0000028770,0.0000028672,0.0000028630,0.0000028599, +0.0000028558,0.0000028551,0.0000028593,0.0000028683,0.0000028767, +0.0000028813,0.0000028814,0.0000028804,0.0000028795,0.0000028788, +0.0000028777,0.0000028792,0.0000028847,0.0000028917,0.0000028971, +0.0000029000,0.0000029004,0.0000028991,0.0000028994,0.0000028992, +0.0000028966,0.0000028932,0.0000028898,0.0000028881,0.0000028865, +0.0000028852,0.0000028834,0.0000028797,0.0000028757,0.0000028728, +0.0000028705,0.0000028694,0.0000028721,0.0000028781,0.0000028802, +0.0000028772,0.0000028824,0.0000028969,0.0000029079,0.0000029148, +0.0000029242,0.0000029285,0.0000029256,0.0000029200,0.0000029178, +0.0000029207,0.0000029230,0.0000029201,0.0000029139,0.0000029110, +0.0000029127,0.0000029160,0.0000029152,0.0000029105,0.0000029056, +0.0000029015,0.0000028969,0.0000028919,0.0000028898,0.0000028891, +0.0000028889,0.0000028878,0.0000028856,0.0000028834,0.0000028787, +0.0000028719,0.0000028676,0.0000028656,0.0000028636,0.0000028612, +0.0000028574,0.0000028527,0.0000028478,0.0000028439,0.0000028420, +0.0000028420,0.0000028435,0.0000028449,0.0000028460,0.0000028454, +0.0000028436,0.0000028407,0.0000028368,0.0000028322,0.0000028271, +0.0000028216,0.0000028161,0.0000028101,0.0000028047,0.0000028025, +0.0000028025,0.0000028032,0.0000028046,0.0000028070,0.0000028117, +0.0000028170,0.0000028220,0.0000028270,0.0000028312,0.0000028354, +0.0000028414,0.0000028482,0.0000028540,0.0000028563,0.0000028547, +0.0000028512,0.0000028485,0.0000028469,0.0000028476,0.0000028501, +0.0000028508,0.0000028482,0.0000028422,0.0000028356,0.0000028304, +0.0000028262,0.0000028220,0.0000028194,0.0000028206,0.0000028256, +0.0000028322,0.0000028390,0.0000028442,0.0000028464,0.0000028460, +0.0000028423,0.0000028362,0.0000028285,0.0000028204,0.0000028141, +0.0000028138,0.0000028213,0.0000028300,0.0000028325,0.0000028295, +0.0000028077,0.0000027755,0.0000027650,0.0000027721,0.0000027754, +0.0000027727,0.0000027751,0.0000027915,0.0000028143,0.0000028307, +0.0000028363,0.0000028348,0.0000028303,0.0000028276,0.0000028282, +0.0000028313,0.0000028338,0.0000028340,0.0000028329,0.0000028303, +0.0000028288,0.0000028296,0.0000028320,0.0000028355,0.0000028388, +0.0000028416,0.0000028443,0.0000028474,0.0000028486,0.0000028492, +0.0000028475,0.0000028426,0.0000028343,0.0000028220,0.0000028073, +0.0000027930,0.0000027821,0.0000027765,0.0000027734,0.0000027721, +0.0000027723,0.0000027774,0.0000027902,0.0000028105,0.0000028315, +0.0000028479,0.0000028571,0.0000028592,0.0000028575,0.0000028565, +0.0000028571,0.0000028604,0.0000028658,0.0000028711,0.0000028734, +0.0000028721,0.0000028691,0.0000028649,0.0000028596,0.0000028543, +0.0000028509,0.0000028512,0.0000028535,0.0000028564,0.0000028583, +0.0000028573,0.0000028542,0.0000028478,0.0000028414,0.0000028363, +0.0000028278,0.0000028168,0.0000028113,0.0000028195,0.0000028278, +0.0000028308,0.0000028429,0.0000028541,0.0000028666,0.0000028865, +0.0000028907,0.0000028838,0.0000028875,0.0000029005,0.0000029076, +0.0000029050,0.0000028945,0.0000028842,0.0000028790,0.0000028776, +0.0000028781,0.0000028793,0.0000028794,0.0000028777,0.0000028733, +0.0000028688,0.0000028615,0.0000028494,0.0000028362,0.0000028241, +0.0000028113,0.0000028051,0.0000028095,0.0000028244,0.0000028346, +0.0000028375,0.0000028387,0.0000028411,0.0000028489,0.0000028690, +0.0000028775,0.0000028681,0.0000028711,0.0000028905,0.0000029093, +0.0000029121,0.0000029024,0.0000028958,0.0000028878,0.0000028722, +0.0000028556,0.0000028444,0.0000028447,0.0000028567,0.0000028677, +0.0000028734,0.0000028789,0.0000028873,0.0000028952,0.0000028982, +0.0000028990,0.0000028986,0.0000028974,0.0000028957,0.0000028917, +0.0000028828,0.0000028686,0.0000028628,0.0000028660,0.0000028684, +0.0000028588,0.0000028296,0.0000028124,0.0000028120,0.0000028057, +0.0000027994,0.0000028002,0.0000028000,0.0000027890,0.0000027703, +0.0000027591,0.0000027550,0.0000027511,0.0000027458,0.0000027411, +0.0000027386,0.0000027381,0.0000027389,0.0000027393,0.0000027385, +0.0000027382,0.0000027371,0.0000027318,0.0000027289,0.0000027366, +0.0000027472,0.0000027444,0.0000027374,0.0000027440,0.0000027654, +0.0000027775,0.0000027746,0.0000027653,0.0000027540,0.0000027445, +0.0000027396,0.0000027380,0.0000027381,0.0000027404,0.0000027428, +0.0000027434,0.0000027425,0.0000027426,0.0000027468,0.0000027528, +0.0000027562,0.0000027562,0.0000027555,0.0000027566,0.0000027600, +0.0000027647,0.0000027693,0.0000027728,0.0000027739,0.0000027719, +0.0000027698,0.0000027682,0.0000027672,0.0000027664,0.0000027646, +0.0000027620,0.0000027591,0.0000027564,0.0000027534,0.0000027503, +0.0000027487,0.0000027494,0.0000027510,0.0000027519,0.0000027525, +0.0000027522,0.0000027502,0.0000027469,0.0000027438,0.0000027426, +0.0000027422,0.0000027407,0.0000027380,0.0000027347,0.0000027310, +0.0000027276,0.0000027266,0.0000027274,0.0000027303,0.0000027345, +0.0000027404,0.0000027487,0.0000027569,0.0000027637,0.0000027688, +0.0000027728,0.0000027784,0.0000027873,0.0000027994,0.0000028140, +0.0000028291,0.0000028435,0.0000028549,0.0000028643,0.0000028746, +0.0000028836,0.0000028913,0.0000028992,0.0000029073,0.0000029136, +0.0000029166,0.0000029174,0.0000029151,0.0000029095,0.0000029008, +0.0000028921,0.0000028836,0.0000028781,0.0000028758,0.0000028754, +0.0000028761,0.0000028786,0.0000028811,0.0000028836,0.0000028864, +0.0000028893,0.0000028881,0.0000028797,0.0000028697,0.0000028663, +0.0000028668,0.0000028677,0.0000028694,0.0000028704,0.0000028687, +0.0000028649,0.0000028602,0.0000028548,0.0000028468,0.0000028339, +0.0000028206,0.0000028165,0.0000028162,0.0000028138,0.0000028081, +0.0000028000,0.0000027923,0.0000027933,0.0000028077,0.0000028286, +0.0000028410,0.0000028426,0.0000028361,0.0000028281,0.0000028237, +0.0000028226,0.0000028245,0.0000028296,0.0000028369,0.0000028412, +0.0000028410,0.0000028393,0.0000028399,0.0000028441,0.0000028484, +0.0000028478,0.0000028423,0.0000028356,0.0000028311,0.0000028293, +0.0000028287,0.0000028304,0.0000028363,0.0000028421,0.0000028423, +0.0000028389,0.0000028327,0.0000028233,0.0000028153,0.0000028114, +0.0000028094,0.0000028114,0.0000028109,0.0000027988,0.0000027814, +0.0000027875,0.0000028085,0.0000028158,0.0000028118,0.0000028073, +0.0000028039,0.0000028029,0.0000028021,0.0000028003,0.0000027979, +0.0000027958,0.0000027934,0.0000027936,0.0000027951,0.0000027966, +0.0000027977,0.0000027987,0.0000028018,0.0000028053,0.0000028066, +0.0000028057,0.0000028035,0.0000028007,0.0000027977,0.0000027949, +0.0000027933,0.0000027923,0.0000027907,0.0000027881,0.0000027851, +0.0000027823,0.0000027813,0.0000027813,0.0000027817,0.0000027828, +0.0000027869,0.0000027934,0.0000027975,0.0000027962,0.0000027886, +0.0000027793,0.0000027709,0.0000027655,0.0000027633,0.0000027636, +0.0000027632,0.0000027603,0.0000027561,0.0000027507,0.0000027430, +0.0000027338,0.0000027271,0.0000027271,0.0000027356,0.0000027442, +0.0000027493,0.0000027496,0.0000027455,0.0000027405,0.0000027365, +0.0000027333,0.0000027298,0.0000027275,0.0000027324,0.0000027405, +0.0000027409,0.0000027334,0.0000027223,0.0000027175,0.0000027167, +0.0000027144,0.0000027145,0.0000027162,0.0000027145,0.0000027102, +0.0000027088,0.0000027118,0.0000027168,0.0000027209,0.0000027225, +0.0000027223,0.0000027209,0.0000027192,0.0000027177,0.0000027158, +0.0000027132,0.0000027106,0.0000027096,0.0000027097,0.0000027085, +0.0000027039,0.0000026941,0.0000026809,0.0000026734,0.0000026730, +0.0000026754,0.0000026800,0.0000026854,0.0000026898,0.0000026893, +0.0000026826,0.0000026720,0.0000026581,0.0000026467,0.0000026479, +0.0000026628,0.0000026807,0.0000026930,0.0000026954,0.0000026986, +0.0000027130,0.0000027280,0.0000027337,0.0000027278,0.0000027153, +0.0000027080,0.0000026821,0.0000026466,0.0000026184,0.0000026177, +0.0000026458,0.0000026546,0.0000026879,0.0000027499,0.0000027703, +0.0000027695,0.0000027698,0.0000027802,0.0000027975,0.0000028150, +0.0000028212,0.0000028177,0.0000028157,0.0000028162,0.0000028153, +0.0000028141,0.0000028123,0.0000028098,0.0000028072,0.0000028054, +0.0000028051,0.0000028023,0.0000027942,0.0000027842,0.0000027794, +0.0000027787,0.0000027806,0.0000027840,0.0000027880,0.0000027902, +0.0000027918,0.0000027946,0.0000027975,0.0000027991,0.0000028002, +0.0000028014,0.0000027965,0.0000027824,0.0000027713,0.0000027645, +0.0000027586,0.0000027566,0.0000027601,0.0000027748,0.0000027847, +0.0000028033,0.0000028134,0.0000028095,0.0000027970,0.0000027851, +0.0000027834,0.0000027918,0.0000027874,0.0000027700,0.0000027570, +0.0000027571,0.0000027634,0.0000027599,0.0000027503,0.0000027505, +0.0000027542,0.0000027532,0.0000027271,0.0000027088,0.0000027067, +0.0000027007,0.0000026974,0.0000026975,0.0000026910,0.0000026717, +0.0000026551,0.0000026527,0.0000026482,0.0000026349,0.0000026231, +0.0000026175,0.0000026135,0.0000026098,0.0000026061,0.0000026047, +0.0000026049,0.0000026001,0.0000025861,0.0000025732,0.0000025705, +0.0000025717,0.0000025732,0.0000025748,0.0000025750,0.0000025742, +0.0000025736,0.0000025741,0.0000025751,0.0000025782,0.0000025815, +0.0000025836,0.0000025838,0.0000025844,0.0000025872,0.0000025920, +0.0000025979,0.0000026044,0.0000026087,0.0000026076,0.0000026041, +0.0000025995,0.0000025954,0.0000025913,0.0000025879,0.0000025839, +0.0000025769,0.0000025671,0.0000025578,0.0000025524,0.0000025507, +0.0000025504,0.0000025523,0.0000025578,0.0000025649,0.0000025720, +0.0000025810,0.0000025871,0.0000025899,0.0000025836,0.0000025723, +0.0000025525,0.0000025299,0.0000025115,0.0000025017,0.0000025040, +0.0000025100,0.0000025168,0.0000025216,0.0000025253,0.0000025281, +0.0000025298,0.0000025303,0.0000025283,0.0000025225,0.0000025212, +0.0000025277,0.0000025499,0.0000025723,0.0000025838,0.0000025882, +0.0000025922,0.0000025953,0.0000025962,0.0000025990,0.0000026051, +0.0000026112,0.0000026166,0.0000026258,0.0000026366,0.0000026443, +0.0000026553,0.0000026691,0.0000026780,0.0000026851,0.0000026920, +0.0000026946,0.0000026916,0.0000026857,0.0000026783,0.0000026701, +0.0000026665,0.0000026745,0.0000026913,0.0000027041,0.0000027099, +0.0000027117,0.0000027100,0.0000027083,0.0000027104,0.0000027143, +0.0000027221,0.0000027297,0.0000027338,0.0000027363,0.0000027376, +0.0000027391,0.0000027372,0.0000027341,0.0000027340,0.0000027354, +0.0000027437,0.0000027683,0.0000028048,0.0000028329,0.0000028402, +0.0000028383,0.0000028302,0.0000028210,0.0000028299,0.0000028390, +0.0000028434,0.0000028395,0.0000028340,0.0000028255,0.0000028224, +0.0000028277,0.0000028292,0.0000028260,0.0000028248,0.0000028253, +0.0000028348,0.0000028412,0.0000028445,0.0000028443,0.0000028387, +0.0000028289,0.0000028241,0.0000028234,0.0000028235,0.0000028253, +0.0000028301,0.0000028338,0.0000028340,0.0000028336,0.0000028351, +0.0000028413,0.0000028518,0.0000028610,0.0000028680,0.0000028757, +0.0000028848,0.0000028906,0.0000028899,0.0000028813,0.0000028686, +0.0000028605,0.0000028571,0.0000028545,0.0000028536,0.0000028556, +0.0000028629,0.0000028719,0.0000028776,0.0000028802,0.0000028820, +0.0000028830,0.0000028851,0.0000028876,0.0000028897,0.0000028925, +0.0000028961,0.0000028986,0.0000029019,0.0000029047,0.0000029060, +0.0000029058,0.0000029035,0.0000028993,0.0000028932,0.0000028876, +0.0000028851,0.0000028856,0.0000028881,0.0000028912,0.0000028925, +0.0000028916,0.0000028889,0.0000028859,0.0000028841,0.0000028813, +0.0000028774,0.0000028768,0.0000028791,0.0000028794,0.0000028811, +0.0000028928,0.0000029056,0.0000029129,0.0000029209,0.0000029282, +0.0000029274,0.0000029213,0.0000029188,0.0000029226,0.0000029255, +0.0000029240,0.0000029186,0.0000029141,0.0000029145,0.0000029176, +0.0000029196,0.0000029171,0.0000029109,0.0000029043,0.0000028982, +0.0000028932,0.0000028896,0.0000028887,0.0000028893,0.0000028910, +0.0000028919,0.0000028913,0.0000028880,0.0000028809,0.0000028742, +0.0000028717,0.0000028708,0.0000028673,0.0000028616,0.0000028555, +0.0000028502,0.0000028468,0.0000028449,0.0000028446,0.0000028457, +0.0000028480,0.0000028506,0.0000028526,0.0000028516,0.0000028498, +0.0000028477,0.0000028441,0.0000028399,0.0000028355,0.0000028303, +0.0000028235,0.0000028164,0.0000028094,0.0000028047,0.0000028025, +0.0000028019,0.0000028015,0.0000028013,0.0000028034,0.0000028069, +0.0000028097,0.0000028120,0.0000028136,0.0000028159,0.0000028200, +0.0000028263,0.0000028331,0.0000028380,0.0000028395,0.0000028387, +0.0000028373,0.0000028365,0.0000028376,0.0000028409,0.0000028440, +0.0000028450,0.0000028432,0.0000028380,0.0000028347,0.0000028308, +0.0000028262,0.0000028219,0.0000028195,0.0000028196,0.0000028209, +0.0000028243,0.0000028288,0.0000028325,0.0000028351,0.0000028376, +0.0000028384,0.0000028330,0.0000028223,0.0000028115,0.0000028056, +0.0000028058,0.0000028141,0.0000028261,0.0000028304,0.0000028285, +0.0000028087,0.0000027722,0.0000027566,0.0000027623,0.0000027675, +0.0000027673,0.0000027768,0.0000028028,0.0000028267,0.0000028386, +0.0000028401,0.0000028358,0.0000028313,0.0000028292,0.0000028310, +0.0000028343,0.0000028361,0.0000028347,0.0000028312,0.0000028277, +0.0000028273,0.0000028291,0.0000028317,0.0000028348,0.0000028382, +0.0000028417,0.0000028462,0.0000028511,0.0000028529,0.0000028532, +0.0000028510,0.0000028470,0.0000028413,0.0000028320,0.0000028183, +0.0000028018,0.0000027874,0.0000027783,0.0000027737,0.0000027723, +0.0000027693,0.0000027678,0.0000027701,0.0000027820,0.0000028013, +0.0000028246,0.0000028433,0.0000028516,0.0000028514,0.0000028495, +0.0000028500,0.0000028522,0.0000028562,0.0000028625,0.0000028685, +0.0000028712,0.0000028723,0.0000028715,0.0000028683,0.0000028632, +0.0000028580,0.0000028559,0.0000028558,0.0000028563,0.0000028567, +0.0000028549,0.0000028513,0.0000028441,0.0000028389,0.0000028363, +0.0000028297,0.0000028175,0.0000028077,0.0000028098,0.0000028220, +0.0000028242,0.0000028323,0.0000028476,0.0000028600,0.0000028774, +0.0000028895,0.0000028854,0.0000028859,0.0000028995,0.0000029089, +0.0000029086,0.0000029001,0.0000028908,0.0000028840,0.0000028806, +0.0000028781,0.0000028758,0.0000028747,0.0000028718,0.0000028660, +0.0000028611,0.0000028561,0.0000028471,0.0000028359,0.0000028254, +0.0000028144,0.0000028067,0.0000028081,0.0000028199,0.0000028312, +0.0000028351,0.0000028392,0.0000028450,0.0000028496,0.0000028625, +0.0000028786,0.0000028767,0.0000028727,0.0000028858,0.0000029066, +0.0000029141,0.0000029059,0.0000028986,0.0000028904,0.0000028742, +0.0000028577,0.0000028459,0.0000028439,0.0000028534,0.0000028658, +0.0000028714,0.0000028744,0.0000028797,0.0000028868,0.0000028911, +0.0000028935,0.0000028955,0.0000028960,0.0000028953,0.0000028920, +0.0000028858,0.0000028741,0.0000028625,0.0000028623,0.0000028649, +0.0000028560,0.0000028272,0.0000028109,0.0000028111,0.0000028044, +0.0000027973,0.0000027975,0.0000027995,0.0000027945,0.0000027789, +0.0000027664,0.0000027630,0.0000027608,0.0000027541,0.0000027448, +0.0000027381,0.0000027348,0.0000027356,0.0000027382,0.0000027384, +0.0000027370,0.0000027359,0.0000027346,0.0000027296,0.0000027291, +0.0000027378,0.0000027455,0.0000027413,0.0000027345,0.0000027404, +0.0000027593,0.0000027716,0.0000027687,0.0000027593,0.0000027498, +0.0000027417,0.0000027366,0.0000027324,0.0000027312,0.0000027336, +0.0000027367,0.0000027370,0.0000027353,0.0000027362,0.0000027413, +0.0000027453,0.0000027450,0.0000027423,0.0000027413,0.0000027433, +0.0000027473,0.0000027516,0.0000027542,0.0000027540,0.0000027512, +0.0000027474,0.0000027448,0.0000027430,0.0000027429,0.0000027432, +0.0000027424,0.0000027411,0.0000027396,0.0000027378,0.0000027356, +0.0000027338,0.0000027337,0.0000027346,0.0000027350,0.0000027349, +0.0000027334,0.0000027305,0.0000027269,0.0000027239,0.0000027226, +0.0000027227,0.0000027224,0.0000027214,0.0000027200,0.0000027183, +0.0000027168,0.0000027154,0.0000027147,0.0000027163,0.0000027186, +0.0000027210,0.0000027255,0.0000027327,0.0000027389,0.0000027441, +0.0000027484,0.0000027521,0.0000027572,0.0000027656,0.0000027770, +0.0000027914,0.0000028083,0.0000028262,0.0000028434,0.0000028599, +0.0000028744,0.0000028836,0.0000028874,0.0000028886,0.0000028892, +0.0000028910,0.0000028942,0.0000028977,0.0000028995,0.0000028984, +0.0000028951,0.0000028892,0.0000028824,0.0000028786,0.0000028774, +0.0000028777,0.0000028800,0.0000028850,0.0000028916,0.0000028988, +0.0000029042,0.0000029065,0.0000029044,0.0000028946,0.0000028818, +0.0000028734,0.0000028692,0.0000028664,0.0000028655,0.0000028662, +0.0000028661,0.0000028641,0.0000028604,0.0000028563,0.0000028525, +0.0000028450,0.0000028315,0.0000028199,0.0000028145,0.0000028120, +0.0000028062,0.0000027979,0.0000027916,0.0000027911,0.0000027986, +0.0000028164,0.0000028351,0.0000028435,0.0000028404,0.0000028342, +0.0000028301,0.0000028290,0.0000028292,0.0000028308,0.0000028365, +0.0000028425,0.0000028435,0.0000028409,0.0000028391,0.0000028412, +0.0000028455,0.0000028485,0.0000028466,0.0000028430,0.0000028389, +0.0000028354,0.0000028311,0.0000028317,0.0000028387,0.0000028464, +0.0000028480,0.0000028437,0.0000028370,0.0000028284,0.0000028193, +0.0000028138,0.0000028096,0.0000028077,0.0000028097,0.0000028068, +0.0000027941,0.0000027831,0.0000027868,0.0000028020,0.0000028111, +0.0000028102,0.0000028082,0.0000028072,0.0000028062,0.0000028049, +0.0000028022,0.0000028005,0.0000027983,0.0000027964,0.0000027961, +0.0000027960,0.0000027959,0.0000027954,0.0000027962,0.0000027985, +0.0000028003,0.0000028001,0.0000027989,0.0000027978,0.0000027966, +0.0000027951,0.0000027934,0.0000027923,0.0000027918,0.0000027909, +0.0000027898,0.0000027892,0.0000027887,0.0000027876,0.0000027850, +0.0000027830,0.0000027834,0.0000027870,0.0000027934,0.0000027976, +0.0000027961,0.0000027907,0.0000027827,0.0000027742,0.0000027682, +0.0000027665,0.0000027661,0.0000027636,0.0000027597,0.0000027560, +0.0000027531,0.0000027489,0.0000027409,0.0000027307,0.0000027262, +0.0000027309,0.0000027377,0.0000027412,0.0000027416,0.0000027389, +0.0000027347,0.0000027306,0.0000027273,0.0000027232,0.0000027237, +0.0000027307,0.0000027339,0.0000027305,0.0000027201,0.0000027149, +0.0000027141,0.0000027120,0.0000027123,0.0000027134,0.0000027101, +0.0000027061,0.0000027067,0.0000027129,0.0000027214,0.0000027279, +0.0000027307,0.0000027306,0.0000027289,0.0000027264,0.0000027234, +0.0000027201,0.0000027172,0.0000027151,0.0000027129,0.0000027118, +0.0000027114,0.0000027086,0.0000027033,0.0000026937,0.0000026810, +0.0000026731,0.0000026725,0.0000026745,0.0000026777,0.0000026812, +0.0000026834,0.0000026824,0.0000026779,0.0000026683,0.0000026533, +0.0000026395,0.0000026361,0.0000026491,0.0000026707,0.0000026876, +0.0000026933,0.0000026947,0.0000027058,0.0000027218,0.0000027289, +0.0000027226,0.0000027094,0.0000027017,0.0000026746,0.0000026439, +0.0000026182,0.0000026167,0.0000026455,0.0000026533,0.0000026828, +0.0000027447,0.0000027663,0.0000027652,0.0000027634,0.0000027734, +0.0000027892,0.0000028060,0.0000028138,0.0000028108,0.0000028093, +0.0000028110,0.0000028120,0.0000028108,0.0000028092,0.0000028080, +0.0000028078,0.0000028082,0.0000028080,0.0000028056,0.0000027993, +0.0000027892,0.0000027816,0.0000027788,0.0000027785,0.0000027829, +0.0000027893,0.0000027925,0.0000027932,0.0000027940,0.0000027965, +0.0000027980,0.0000027970,0.0000027951,0.0000027901,0.0000027773, +0.0000027674,0.0000027636,0.0000027588,0.0000027544,0.0000027567, +0.0000027716,0.0000027838,0.0000028024,0.0000028112,0.0000028071, +0.0000027938,0.0000027825,0.0000027813,0.0000027906,0.0000027842, +0.0000027655,0.0000027551,0.0000027570,0.0000027627,0.0000027565, +0.0000027500,0.0000027508,0.0000027545,0.0000027500,0.0000027220, +0.0000027090,0.0000027072,0.0000027002,0.0000026981,0.0000026965, +0.0000026849,0.0000026638,0.0000026513,0.0000026511,0.0000026451, +0.0000026297,0.0000026161,0.0000026092,0.0000026052,0.0000026016, +0.0000025976,0.0000025953,0.0000025948,0.0000025902,0.0000025801, +0.0000025709,0.0000025688,0.0000025693,0.0000025706,0.0000025723, +0.0000025732,0.0000025736,0.0000025766,0.0000025820,0.0000025873, +0.0000025911,0.0000025921,0.0000025908,0.0000025881,0.0000025878, +0.0000025917,0.0000025991,0.0000026067,0.0000026106,0.0000026106, +0.0000026042,0.0000025941,0.0000025830,0.0000025746,0.0000025694, +0.0000025666,0.0000025644,0.0000025602,0.0000025537,0.0000025466, +0.0000025414,0.0000025389,0.0000025372,0.0000025353,0.0000025356, +0.0000025394,0.0000025450,0.0000025533,0.0000025626,0.0000025727, +0.0000025772,0.0000025759,0.0000025673,0.0000025521,0.0000025374, +0.0000025241,0.0000025165,0.0000025135,0.0000025139,0.0000025157, +0.0000025154,0.0000025147,0.0000025159,0.0000025203,0.0000025271, +0.0000025310,0.0000025276,0.0000025193,0.0000025162,0.0000025262, +0.0000025552,0.0000025811,0.0000025911,0.0000025956,0.0000025986, +0.0000025998,0.0000026009,0.0000026032,0.0000026084,0.0000026152, +0.0000026221,0.0000026322,0.0000026441,0.0000026528,0.0000026632, +0.0000026748,0.0000026815,0.0000026863,0.0000026903,0.0000026900, +0.0000026854,0.0000026767,0.0000026684,0.0000026656,0.0000026699, +0.0000026829,0.0000026977,0.0000027082,0.0000027125,0.0000027117, +0.0000027095,0.0000027090,0.0000027100,0.0000027146,0.0000027206, +0.0000027236,0.0000027265,0.0000027284,0.0000027291,0.0000027291, +0.0000027303,0.0000027314,0.0000027322,0.0000027369,0.0000027558, +0.0000027902,0.0000028274,0.0000028415,0.0000028391,0.0000028298, +0.0000028198,0.0000028297,0.0000028378,0.0000028434,0.0000028421, +0.0000028382,0.0000028301,0.0000028254,0.0000028309,0.0000028317, +0.0000028269,0.0000028247,0.0000028227,0.0000028338,0.0000028424, +0.0000028429,0.0000028389,0.0000028308,0.0000028244,0.0000028229, +0.0000028239,0.0000028261,0.0000028296,0.0000028333,0.0000028339, +0.0000028335,0.0000028334,0.0000028368,0.0000028462,0.0000028569, +0.0000028676,0.0000028762,0.0000028829,0.0000028854,0.0000028806, +0.0000028700,0.0000028592,0.0000028537,0.0000028519,0.0000028515, +0.0000028527,0.0000028580,0.0000028662,0.0000028714,0.0000028749, +0.0000028779,0.0000028813,0.0000028841,0.0000028867,0.0000028915, +0.0000028971,0.0000029008,0.0000029040,0.0000029049,0.0000029057, +0.0000029088,0.0000029117,0.0000029106,0.0000029047,0.0000028960, +0.0000028872,0.0000028816,0.0000028817,0.0000028859,0.0000028922, +0.0000028967,0.0000028968,0.0000028957,0.0000028937,0.0000028912, +0.0000028888,0.0000028883,0.0000028865,0.0000028802,0.0000028771, +0.0000028780,0.0000028804,0.0000028901,0.0000029034,0.0000029123, +0.0000029189,0.0000029251,0.0000029270,0.0000029218,0.0000029184, +0.0000029228,0.0000029273,0.0000029262,0.0000029216,0.0000029174, +0.0000029158,0.0000029173,0.0000029193,0.0000029199,0.0000029167, +0.0000029097,0.0000029029,0.0000028975,0.0000028937,0.0000028915, +0.0000028914,0.0000028937,0.0000028971,0.0000028981,0.0000028967, +0.0000028910,0.0000028832,0.0000028777,0.0000028750,0.0000028732, +0.0000028692,0.0000028633,0.0000028581,0.0000028551,0.0000028552, +0.0000028560,0.0000028571,0.0000028586,0.0000028608,0.0000028632, +0.0000028654,0.0000028657,0.0000028648,0.0000028630,0.0000028609, +0.0000028580,0.0000028543,0.0000028499,0.0000028435,0.0000028352, +0.0000028269,0.0000028201,0.0000028148,0.0000028103,0.0000028066, +0.0000028040,0.0000028038,0.0000028063,0.0000028088,0.0000028103, +0.0000028113,0.0000028118,0.0000028126,0.0000028155,0.0000028196, +0.0000028237,0.0000028258,0.0000028258,0.0000028243,0.0000028226, +0.0000028219,0.0000028232,0.0000028260,0.0000028288,0.0000028302, +0.0000028306,0.0000028309,0.0000028317,0.0000028303,0.0000028280, +0.0000028252,0.0000028239,0.0000028225,0.0000028208,0.0000028208, +0.0000028211,0.0000028214,0.0000028230,0.0000028284,0.0000028327, +0.0000028283,0.0000028166,0.0000028047,0.0000027984,0.0000027985, +0.0000028068,0.0000028218,0.0000028286,0.0000028274,0.0000028092, +0.0000027716,0.0000027520,0.0000027532,0.0000027606,0.0000027637, +0.0000027784,0.0000028078,0.0000028315,0.0000028405,0.0000028416, +0.0000028382,0.0000028348,0.0000028335,0.0000028354,0.0000028372, +0.0000028363,0.0000028320,0.0000028270,0.0000028247,0.0000028264, +0.0000028299,0.0000028329,0.0000028350,0.0000028376,0.0000028414, +0.0000028474,0.0000028531,0.0000028554,0.0000028549,0.0000028507, +0.0000028454,0.0000028403,0.0000028339,0.0000028252,0.0000028130, +0.0000027999,0.0000027892,0.0000027810,0.0000027745,0.0000027692, +0.0000027671,0.0000027648,0.0000027656,0.0000027755,0.0000027964, +0.0000028200,0.0000028380,0.0000028443,0.0000028432,0.0000028441, +0.0000028463,0.0000028488,0.0000028532,0.0000028602,0.0000028672, +0.0000028734,0.0000028787,0.0000028806,0.0000028780,0.0000028735, +0.0000028701,0.0000028678,0.0000028660,0.0000028641,0.0000028609, +0.0000028549,0.0000028455,0.0000028393,0.0000028360,0.0000028308, +0.0000028196,0.0000028074,0.0000028021,0.0000028139,0.0000028204, +0.0000028229,0.0000028396,0.0000028551,0.0000028690,0.0000028848, +0.0000028859,0.0000028838,0.0000028954,0.0000029083,0.0000029105, +0.0000029049,0.0000028975,0.0000028902,0.0000028845,0.0000028787, +0.0000028719,0.0000028664,0.0000028588,0.0000028501,0.0000028458, +0.0000028449,0.0000028413,0.0000028338,0.0000028258,0.0000028184, +0.0000028116,0.0000028099,0.0000028184,0.0000028294,0.0000028332, +0.0000028384,0.0000028475,0.0000028535,0.0000028601,0.0000028740, +0.0000028828,0.0000028792,0.0000028836,0.0000029017,0.0000029147, +0.0000029107,0.0000029010,0.0000028937,0.0000028779,0.0000028609, +0.0000028487,0.0000028432,0.0000028481,0.0000028613,0.0000028695, +0.0000028713,0.0000028729,0.0000028776,0.0000028819,0.0000028845, +0.0000028881,0.0000028909,0.0000028918,0.0000028898,0.0000028858, +0.0000028785,0.0000028636,0.0000028596,0.0000028611,0.0000028528, +0.0000028245,0.0000028099,0.0000028102,0.0000028030,0.0000027942, +0.0000027927,0.0000027965,0.0000027954,0.0000027849,0.0000027724, +0.0000027673,0.0000027667,0.0000027629,0.0000027530,0.0000027418, +0.0000027336,0.0000027312,0.0000027340,0.0000027372,0.0000027365, +0.0000027350,0.0000027357,0.0000027345,0.0000027302,0.0000027306, +0.0000027392,0.0000027448,0.0000027398,0.0000027338,0.0000027377, +0.0000027537,0.0000027656,0.0000027636,0.0000027537,0.0000027448, +0.0000027396,0.0000027353,0.0000027302,0.0000027275,0.0000027290, +0.0000027316,0.0000027319,0.0000027302,0.0000027305,0.0000027335, +0.0000027353,0.0000027338,0.0000027313,0.0000027305,0.0000027317, +0.0000027335,0.0000027346,0.0000027339,0.0000027314,0.0000027277, +0.0000027247,0.0000027227,0.0000027217,0.0000027225,0.0000027233, +0.0000027232,0.0000027231,0.0000027227,0.0000027214,0.0000027193, +0.0000027168,0.0000027137,0.0000027103,0.0000027071,0.0000027048, +0.0000027033,0.0000027026,0.0000027026,0.0000027038,0.0000027060, +0.0000027072,0.0000027073,0.0000027071,0.0000027074,0.0000027084, +0.0000027101,0.0000027111,0.0000027118,0.0000027118,0.0000027108, +0.0000027102,0.0000027132,0.0000027190,0.0000027255,0.0000027325, +0.0000027390,0.0000027447,0.0000027513,0.0000027599,0.0000027700, +0.0000027810,0.0000027932,0.0000028066,0.0000028219,0.0000028394, +0.0000028572,0.0000028717,0.0000028797,0.0000028815,0.0000028792, +0.0000028754,0.0000028728,0.0000028720,0.0000028733,0.0000028759, +0.0000028786,0.0000028800,0.0000028799,0.0000028805,0.0000028825, +0.0000028851,0.0000028886,0.0000028946,0.0000029021,0.0000029090, +0.0000029131,0.0000029135,0.0000029099,0.0000029015,0.0000028900, +0.0000028806,0.0000028732,0.0000028669,0.0000028640,0.0000028634, +0.0000028638,0.0000028639,0.0000028620,0.0000028590,0.0000028576, +0.0000028555,0.0000028473,0.0000028342,0.0000028222,0.0000028139, +0.0000028060,0.0000027975,0.0000027921,0.0000027920,0.0000027976, +0.0000028090,0.0000028257,0.0000028374,0.0000028383,0.0000028343, +0.0000028299,0.0000028297,0.0000028310,0.0000028328,0.0000028368, +0.0000028427,0.0000028459,0.0000028440,0.0000028404,0.0000028393, +0.0000028407,0.0000028427,0.0000028423,0.0000028402,0.0000028379, +0.0000028349,0.0000028300,0.0000028295,0.0000028374,0.0000028470, +0.0000028498,0.0000028476,0.0000028409,0.0000028330,0.0000028239, +0.0000028165,0.0000028125,0.0000028086,0.0000028076,0.0000028077, +0.0000028028,0.0000027953,0.0000027867,0.0000027847,0.0000027916, +0.0000028008,0.0000028081,0.0000028095,0.0000028106,0.0000028099, +0.0000028074,0.0000028049,0.0000028016,0.0000027979,0.0000027962, +0.0000027958,0.0000027948,0.0000027930,0.0000027907,0.0000027893, +0.0000027877,0.0000027854,0.0000027839,0.0000027834,0.0000027832, +0.0000027828,0.0000027825,0.0000027823,0.0000027828,0.0000027844, +0.0000027869,0.0000027901,0.0000027935,0.0000027944,0.0000027918, +0.0000027872,0.0000027846,0.0000027852,0.0000027886,0.0000027931, +0.0000027946,0.0000027911,0.0000027817,0.0000027708,0.0000027646, +0.0000027637,0.0000027632,0.0000027595,0.0000027548,0.0000027523, +0.0000027508,0.0000027507,0.0000027496,0.0000027460,0.0000027362, +0.0000027264,0.0000027269,0.0000027323,0.0000027348,0.0000027359, +0.0000027342,0.0000027299,0.0000027256,0.0000027207,0.0000027184, +0.0000027215,0.0000027266,0.0000027259,0.0000027178,0.0000027127, +0.0000027119,0.0000027104,0.0000027114,0.0000027120,0.0000027076, +0.0000027036,0.0000027060,0.0000027147,0.0000027259,0.0000027345, +0.0000027378,0.0000027373,0.0000027350,0.0000027328,0.0000027305, +0.0000027273,0.0000027228,0.0000027190,0.0000027168,0.0000027150, +0.0000027139,0.0000027125,0.0000027079,0.0000027015,0.0000026918, +0.0000026807,0.0000026735,0.0000026728,0.0000026738,0.0000026755, +0.0000026775,0.0000026776,0.0000026766,0.0000026735,0.0000026653, +0.0000026504,0.0000026333,0.0000026260,0.0000026348,0.0000026580, +0.0000026802,0.0000026911,0.0000026922,0.0000026988,0.0000027143, +0.0000027221,0.0000027161,0.0000027032,0.0000026951,0.0000026708, +0.0000026450,0.0000026193,0.0000026170,0.0000026440,0.0000026509, +0.0000026737,0.0000027329,0.0000027611,0.0000027603,0.0000027576, +0.0000027652,0.0000027778,0.0000027925,0.0000028025,0.0000028026, +0.0000028018,0.0000028042,0.0000028072,0.0000028075,0.0000028061, +0.0000028052,0.0000028060,0.0000028089,0.0000028112,0.0000028108, +0.0000028063,0.0000027977,0.0000027874,0.0000027798,0.0000027786, +0.0000027828,0.0000027896,0.0000027933,0.0000027944,0.0000027941, +0.0000027946,0.0000027964,0.0000027943,0.0000027889,0.0000027826, +0.0000027721,0.0000027650,0.0000027628,0.0000027586,0.0000027521, +0.0000027540,0.0000027692,0.0000027837,0.0000028019,0.0000028090, +0.0000028047,0.0000027908,0.0000027806,0.0000027807,0.0000027903, +0.0000027807,0.0000027615,0.0000027537,0.0000027572,0.0000027604, +0.0000027538,0.0000027503,0.0000027512,0.0000027546,0.0000027456, +0.0000027182,0.0000027102,0.0000027073,0.0000027001,0.0000026993, +0.0000026943,0.0000026789,0.0000026586,0.0000026495,0.0000026493, +0.0000026428,0.0000026275,0.0000026124,0.0000026031,0.0000025984, +0.0000025953,0.0000025913,0.0000025890,0.0000025877,0.0000025834, +0.0000025752,0.0000025682,0.0000025666,0.0000025667,0.0000025675, +0.0000025696,0.0000025722,0.0000025755,0.0000025814,0.0000025892, +0.0000025949,0.0000025958,0.0000025945,0.0000025917,0.0000025892, +0.0000025901,0.0000025952,0.0000026017,0.0000026068,0.0000026070, +0.0000026012,0.0000025906,0.0000025777,0.0000025649,0.0000025563, +0.0000025533,0.0000025528,0.0000025532,0.0000025526,0.0000025498, +0.0000025457,0.0000025412,0.0000025387,0.0000025375,0.0000025352, +0.0000025353,0.0000025366,0.0000025381,0.0000025409,0.0000025427, +0.0000025477,0.0000025518,0.0000025546,0.0000025548,0.0000025503, +0.0000025435,0.0000025378,0.0000025359,0.0000025333,0.0000025292, +0.0000025232,0.0000025170,0.0000025123,0.0000025083,0.0000025077, +0.0000025105,0.0000025167,0.0000025237,0.0000025262,0.0000025230, +0.0000025179,0.0000025191,0.0000025366,0.0000025710,0.0000025932, +0.0000026002,0.0000026034,0.0000026038,0.0000026041,0.0000026038, +0.0000026056,0.0000026118,0.0000026201,0.0000026281,0.0000026387, +0.0000026496,0.0000026568,0.0000026663,0.0000026773,0.0000026825, +0.0000026850,0.0000026868,0.0000026846,0.0000026773,0.0000026698, +0.0000026669,0.0000026677,0.0000026747,0.0000026875,0.0000027028, +0.0000027122,0.0000027131,0.0000027109,0.0000027090,0.0000027077, +0.0000027092,0.0000027142,0.0000027180,0.0000027193,0.0000027189, +0.0000027183,0.0000027211,0.0000027240,0.0000027270,0.0000027303, +0.0000027340,0.0000027479,0.0000027808,0.0000028221,0.0000028418, +0.0000028394,0.0000028293,0.0000028188,0.0000028288,0.0000028359, +0.0000028426,0.0000028440,0.0000028425,0.0000028340,0.0000028277, +0.0000028323,0.0000028317,0.0000028271,0.0000028242,0.0000028205, +0.0000028337,0.0000028434,0.0000028410,0.0000028323,0.0000028244, +0.0000028209,0.0000028218,0.0000028255,0.0000028278,0.0000028304, +0.0000028312,0.0000028298,0.0000028291,0.0000028316,0.0000028397, +0.0000028535,0.0000028668,0.0000028757,0.0000028792,0.0000028783, +0.0000028699,0.0000028594,0.0000028537,0.0000028511,0.0000028497, +0.0000028510,0.0000028563,0.0000028635,0.0000028679,0.0000028698, +0.0000028722,0.0000028762,0.0000028800,0.0000028826,0.0000028856, +0.0000028920,0.0000028996,0.0000029048,0.0000029072,0.0000029097, +0.0000029114,0.0000029141,0.0000029151,0.0000029134,0.0000029044, +0.0000028920,0.0000028816,0.0000028776,0.0000028803,0.0000028871, +0.0000028946,0.0000028982,0.0000028973,0.0000028953,0.0000028946, +0.0000028941,0.0000028916,0.0000028892,0.0000028889,0.0000028865, +0.0000028783,0.0000028748,0.0000028782,0.0000028863,0.0000029002, +0.0000029123,0.0000029200,0.0000029250,0.0000029256,0.0000029215, +0.0000029168,0.0000029199,0.0000029268,0.0000029276,0.0000029235, +0.0000029196,0.0000029176,0.0000029174,0.0000029181,0.0000029188, +0.0000029184,0.0000029157,0.0000029103,0.0000029055,0.0000029019, +0.0000028991,0.0000028970,0.0000028968,0.0000028995,0.0000029029, +0.0000029034,0.0000029006,0.0000028946,0.0000028883,0.0000028837, +0.0000028799,0.0000028768,0.0000028729,0.0000028686,0.0000028661, +0.0000028662,0.0000028684,0.0000028707,0.0000028720,0.0000028719, +0.0000028723,0.0000028732,0.0000028746,0.0000028745,0.0000028737, +0.0000028715,0.0000028691,0.0000028676,0.0000028656,0.0000028624, +0.0000028580,0.0000028520,0.0000028456,0.0000028391,0.0000028319, +0.0000028247,0.0000028185,0.0000028130,0.0000028094,0.0000028091, +0.0000028111,0.0000028137,0.0000028162,0.0000028173,0.0000028171, +0.0000028173,0.0000028180,0.0000028201,0.0000028224,0.0000028230, +0.0000028221,0.0000028195,0.0000028165,0.0000028148,0.0000028146, +0.0000028154,0.0000028153,0.0000028141,0.0000028145,0.0000028177, +0.0000028211,0.0000028238,0.0000028249,0.0000028268,0.0000028279, +0.0000028262,0.0000028233,0.0000028203,0.0000028169,0.0000028138, +0.0000028146,0.0000028201,0.0000028250,0.0000028229,0.0000028129, +0.0000028003,0.0000027935,0.0000027928,0.0000028003,0.0000028165, +0.0000028259,0.0000028243,0.0000028100,0.0000027747,0.0000027460, +0.0000027434,0.0000027531,0.0000027602,0.0000027758,0.0000028036, +0.0000028277,0.0000028398,0.0000028407,0.0000028396,0.0000028375, +0.0000028369,0.0000028376,0.0000028373,0.0000028326,0.0000028258, +0.0000028218,0.0000028220,0.0000028265,0.0000028319,0.0000028354, +0.0000028374,0.0000028395,0.0000028429,0.0000028483,0.0000028540, +0.0000028554,0.0000028540,0.0000028487,0.0000028425,0.0000028369, +0.0000028310,0.0000028245,0.0000028177,0.0000028105,0.0000028041, +0.0000027960,0.0000027866,0.0000027767,0.0000027696,0.0000027646, +0.0000027631,0.0000027637,0.0000027750,0.0000027948,0.0000028175, +0.0000028333,0.0000028390,0.0000028427,0.0000028453,0.0000028477, +0.0000028501,0.0000028554,0.0000028629,0.0000028724,0.0000028815, +0.0000028884,0.0000028901,0.0000028884,0.0000028861,0.0000028836, +0.0000028795,0.0000028745,0.0000028691,0.0000028614,0.0000028504, +0.0000028418,0.0000028355,0.0000028303,0.0000028208,0.0000028086, +0.0000028000,0.0000028060,0.0000028170,0.0000028172,0.0000028298, +0.0000028492,0.0000028638,0.0000028774,0.0000028843,0.0000028817, +0.0000028897,0.0000029049,0.0000029105,0.0000029078,0.0000029021, +0.0000028954,0.0000028878,0.0000028788,0.0000028665,0.0000028537, +0.0000028404,0.0000028297,0.0000028270,0.0000028292,0.0000028298, +0.0000028271,0.0000028244,0.0000028234,0.0000028203,0.0000028175, +0.0000028212,0.0000028304,0.0000028337,0.0000028377,0.0000028479, +0.0000028574,0.0000028626,0.0000028695,0.0000028810,0.0000028864, +0.0000028862,0.0000028959,0.0000029123,0.0000029157,0.0000029051, +0.0000028966,0.0000028840,0.0000028659,0.0000028524,0.0000028446, +0.0000028442,0.0000028534,0.0000028645,0.0000028693,0.0000028700, +0.0000028721,0.0000028753,0.0000028776,0.0000028809,0.0000028844, +0.0000028859,0.0000028856,0.0000028840,0.0000028810,0.0000028654, +0.0000028568,0.0000028573,0.0000028494,0.0000028216,0.0000028087, +0.0000028090,0.0000028014,0.0000027902,0.0000027859,0.0000027897, +0.0000027921,0.0000027875,0.0000027783,0.0000027706,0.0000027685, +0.0000027670,0.0000027618,0.0000027507,0.0000027375,0.0000027290, +0.0000027281,0.0000027329,0.0000027353,0.0000027345,0.0000027352, +0.0000027368,0.0000027350,0.0000027311,0.0000027327,0.0000027404, +0.0000027443,0.0000027400,0.0000027338,0.0000027356,0.0000027479, +0.0000027593,0.0000027595,0.0000027495,0.0000027402,0.0000027361, +0.0000027335,0.0000027287,0.0000027248,0.0000027247,0.0000027262, +0.0000027267,0.0000027254,0.0000027244,0.0000027250,0.0000027262, +0.0000027257,0.0000027241,0.0000027230,0.0000027221,0.0000027211, +0.0000027195,0.0000027170,0.0000027137,0.0000027102,0.0000027074, +0.0000027054,0.0000027047,0.0000027049,0.0000027051,0.0000027048, +0.0000027032,0.0000027005,0.0000026968,0.0000026921,0.0000026868, +0.0000026823,0.0000026794,0.0000026786,0.0000026793,0.0000026807, +0.0000026819,0.0000026840,0.0000026869,0.0000026893,0.0000026909, +0.0000026924,0.0000026945,0.0000026973,0.0000027000,0.0000027012, +0.0000027015,0.0000027012,0.0000027000,0.0000026991,0.0000027003, +0.0000027040,0.0000027102,0.0000027189,0.0000027278,0.0000027346, +0.0000027404,0.0000027476,0.0000027565,0.0000027664,0.0000027769, +0.0000027865,0.0000027954,0.0000028051,0.0000028167,0.0000028300, +0.0000028431,0.0000028538,0.0000028610,0.0000028643,0.0000028633, +0.0000028597,0.0000028545,0.0000028513,0.0000028521,0.0000028570, +0.0000028645,0.0000028735,0.0000028819,0.0000028903,0.0000028966, +0.0000029010,0.0000029058,0.0000029104,0.0000029127,0.0000029136, +0.0000029123,0.0000029083,0.0000029014,0.0000028926,0.0000028841, +0.0000028755,0.0000028684,0.0000028651,0.0000028641,0.0000028649, +0.0000028667,0.0000028668,0.0000028649,0.0000028638,0.0000028636, +0.0000028603,0.0000028522,0.0000028405,0.0000028265,0.0000028124, +0.0000028002,0.0000027939,0.0000027942,0.0000027999,0.0000028093, +0.0000028219,0.0000028330,0.0000028363,0.0000028329,0.0000028261, +0.0000028247,0.0000028279,0.0000028321,0.0000028372,0.0000028430, +0.0000028477,0.0000028476,0.0000028434,0.0000028398,0.0000028379, +0.0000028371,0.0000028360,0.0000028335,0.0000028314,0.0000028291, +0.0000028256,0.0000028246,0.0000028311,0.0000028411,0.0000028475, +0.0000028472,0.0000028416,0.0000028343,0.0000028271,0.0000028188, +0.0000028145,0.0000028121,0.0000028091,0.0000028067,0.0000028045, +0.0000028025,0.0000028000,0.0000027947,0.0000027888,0.0000027863, +0.0000027889,0.0000027941,0.0000028004,0.0000028061,0.0000028086, +0.0000028070,0.0000028041,0.0000027998,0.0000027956,0.0000027915, +0.0000027886,0.0000027852,0.0000027813,0.0000027774,0.0000027726, +0.0000027679,0.0000027658,0.0000027660,0.0000027673,0.0000027689, +0.0000027703,0.0000027718,0.0000027735,0.0000027753,0.0000027773, +0.0000027807,0.0000027871,0.0000027946,0.0000027972,0.0000027946, +0.0000027888,0.0000027866,0.0000027873,0.0000027887,0.0000027886, +0.0000027847,0.0000027758,0.0000027675,0.0000027647,0.0000027644, +0.0000027619,0.0000027568,0.0000027536,0.0000027532,0.0000027552, +0.0000027558,0.0000027535,0.0000027508,0.0000027487,0.0000027388, +0.0000027247,0.0000027237,0.0000027280,0.0000027308,0.0000027325, +0.0000027307,0.0000027262,0.0000027204,0.0000027152,0.0000027153, +0.0000027200,0.0000027214,0.0000027147,0.0000027102,0.0000027099, +0.0000027090,0.0000027111,0.0000027121,0.0000027075,0.0000027033, +0.0000027051,0.0000027145,0.0000027280,0.0000027388,0.0000027424, +0.0000027411,0.0000027374,0.0000027342,0.0000027329,0.0000027324, +0.0000027300,0.0000027252,0.0000027211,0.0000027182,0.0000027162, +0.0000027154,0.0000027129,0.0000027070,0.0000026989,0.0000026900, +0.0000026806,0.0000026744,0.0000026725,0.0000026723,0.0000026726, +0.0000026735,0.0000026737,0.0000026725,0.0000026697,0.0000026627, +0.0000026481,0.0000026299,0.0000026202,0.0000026234,0.0000026430, +0.0000026703,0.0000026885,0.0000026908,0.0000026933,0.0000027056, +0.0000027141,0.0000027094,0.0000026968,0.0000026885,0.0000026710, +0.0000026487,0.0000026224,0.0000026178,0.0000026406,0.0000026490, +0.0000026627,0.0000027130,0.0000027527,0.0000027549,0.0000027527, +0.0000027554,0.0000027642,0.0000027769,0.0000027874,0.0000027934, +0.0000027964,0.0000027976,0.0000028008,0.0000028036,0.0000028044, +0.0000028041,0.0000028045,0.0000028083,0.0000028128,0.0000028150, +0.0000028136,0.0000028084,0.0000027977,0.0000027860,0.0000027803, +0.0000027833,0.0000027895,0.0000027926,0.0000027935,0.0000027947, +0.0000027939,0.0000027938,0.0000027907,0.0000027834,0.0000027761, +0.0000027681,0.0000027640,0.0000027617,0.0000027572,0.0000027493, +0.0000027525,0.0000027675,0.0000027840,0.0000028016,0.0000028070, +0.0000028024,0.0000027881,0.0000027795,0.0000027812,0.0000027903, +0.0000027772,0.0000027585,0.0000027538,0.0000027574,0.0000027578, +0.0000027526,0.0000027504,0.0000027517,0.0000027537,0.0000027400, +0.0000027153,0.0000027111,0.0000027078,0.0000027010,0.0000026996, +0.0000026910,0.0000026742,0.0000026558,0.0000026479,0.0000026474, +0.0000026418,0.0000026287,0.0000026136,0.0000026016,0.0000025944, +0.0000025908,0.0000025867,0.0000025844,0.0000025832,0.0000025800, +0.0000025730,0.0000025655,0.0000025630,0.0000025632,0.0000025646, +0.0000025668,0.0000025704,0.0000025756,0.0000025830,0.0000025907, +0.0000025950,0.0000025948,0.0000025921,0.0000025888,0.0000025877, +0.0000025904,0.0000025956,0.0000025993,0.0000025998,0.0000025975, +0.0000025912,0.0000025814,0.0000025710,0.0000025606,0.0000025533, +0.0000025503,0.0000025497,0.0000025492,0.0000025473,0.0000025444, +0.0000025404,0.0000025358,0.0000025336,0.0000025331,0.0000025313, +0.0000025317,0.0000025353,0.0000025384,0.0000025407,0.0000025418, +0.0000025413,0.0000025395,0.0000025382,0.0000025367,0.0000025344, +0.0000025326,0.0000025327,0.0000025352,0.0000025390,0.0000025415, +0.0000025389,0.0000025325,0.0000025218,0.0000025107,0.0000025052, +0.0000025054,0.0000025061,0.0000025070,0.0000025113,0.0000025184, +0.0000025241,0.0000025252,0.0000025239,0.0000025314,0.0000025530, +0.0000025864,0.0000026027,0.0000026062,0.0000026069,0.0000026052, +0.0000026042,0.0000026048,0.0000026076,0.0000026155,0.0000026249, +0.0000026319,0.0000026405,0.0000026503,0.0000026588,0.0000026704, +0.0000026809,0.0000026835,0.0000026829,0.0000026815,0.0000026780, +0.0000026724,0.0000026677,0.0000026657,0.0000026689,0.0000026783, +0.0000026938,0.0000027073,0.0000027125,0.0000027124,0.0000027092, +0.0000027054,0.0000027050,0.0000027101,0.0000027158,0.0000027164, +0.0000027149,0.0000027152,0.0000027166,0.0000027176,0.0000027206, +0.0000027248,0.0000027312,0.0000027463,0.0000027750,0.0000028170, +0.0000028414,0.0000028394,0.0000028288,0.0000028178,0.0000028275, +0.0000028338,0.0000028402,0.0000028453,0.0000028457,0.0000028368, +0.0000028291,0.0000028320,0.0000028310,0.0000028271,0.0000028228, +0.0000028184,0.0000028317,0.0000028429,0.0000028384,0.0000028271, +0.0000028207,0.0000028191,0.0000028226,0.0000028258,0.0000028269, +0.0000028268,0.0000028262,0.0000028253,0.0000028276,0.0000028355, +0.0000028488,0.0000028624,0.0000028703,0.0000028710,0.0000028664, +0.0000028587,0.0000028526,0.0000028516,0.0000028516,0.0000028522, +0.0000028557,0.0000028614,0.0000028664,0.0000028684,0.0000028701, +0.0000028725,0.0000028755,0.0000028773,0.0000028797,0.0000028834, +0.0000028905,0.0000028985,0.0000029052,0.0000029106,0.0000029146, +0.0000029185,0.0000029208,0.0000029191,0.0000029121,0.0000029001, +0.0000028867,0.0000028806,0.0000028787,0.0000028816,0.0000028881, +0.0000028920,0.0000028940,0.0000028932,0.0000028909,0.0000028908, +0.0000028933,0.0000028937,0.0000028910,0.0000028886,0.0000028884, +0.0000028826,0.0000028739,0.0000028739,0.0000028824,0.0000028947, +0.0000029091,0.0000029205,0.0000029275,0.0000029281,0.0000029238, +0.0000029165,0.0000029158,0.0000029219,0.0000029261,0.0000029243, +0.0000029208,0.0000029182,0.0000029184,0.0000029190,0.0000029190, +0.0000029191,0.0000029182,0.0000029162,0.0000029134,0.0000029114, +0.0000029092,0.0000029062,0.0000029027,0.0000029016,0.0000029027, +0.0000029054,0.0000029060,0.0000029043,0.0000029008,0.0000028970, +0.0000028930,0.0000028890,0.0000028854,0.0000028821,0.0000028787, +0.0000028775,0.0000028774,0.0000028784,0.0000028792,0.0000028791, +0.0000028772,0.0000028754,0.0000028744,0.0000028750,0.0000028742, +0.0000028728,0.0000028707,0.0000028681,0.0000028661,0.0000028651, +0.0000028630,0.0000028591,0.0000028553,0.0000028522,0.0000028496, +0.0000028450,0.0000028377,0.0000028303,0.0000028243,0.0000028199, +0.0000028165,0.0000028147,0.0000028146,0.0000028162,0.0000028193, +0.0000028219,0.0000028223,0.0000028223,0.0000028218,0.0000028216, +0.0000028219,0.0000028219,0.0000028205,0.0000028180,0.0000028162, +0.0000028156,0.0000028161,0.0000028161,0.0000028135,0.0000028096, +0.0000028101,0.0000028097,0.0000028108,0.0000028127,0.0000028165, +0.0000028227,0.0000028274,0.0000028272,0.0000028254,0.0000028211, +0.0000028157,0.0000028119,0.0000028120,0.0000028149,0.0000028185, +0.0000028185,0.0000028108,0.0000027989,0.0000027911,0.0000027895, +0.0000027949,0.0000028097,0.0000028207,0.0000028219,0.0000028117, +0.0000027824,0.0000027480,0.0000027385,0.0000027449,0.0000027549, +0.0000027693,0.0000027916,0.0000028150,0.0000028305,0.0000028366, +0.0000028379,0.0000028372,0.0000028372,0.0000028367,0.0000028329, +0.0000028251,0.0000028181,0.0000028164,0.0000028185,0.0000028251, +0.0000028325,0.0000028374,0.0000028414,0.0000028439,0.0000028461, +0.0000028491,0.0000028531,0.0000028536,0.0000028514,0.0000028461, +0.0000028395,0.0000028331,0.0000028267,0.0000028210,0.0000028161, +0.0000028130,0.0000028124,0.0000028099,0.0000028045,0.0000027937, +0.0000027813,0.0000027712,0.0000027657,0.0000027632,0.0000027672, +0.0000027780,0.0000027950,0.0000028159,0.0000028339,0.0000028436, +0.0000028491,0.0000028508,0.0000028527,0.0000028563,0.0000028615, +0.0000028698,0.0000028795,0.0000028882,0.0000028928,0.0000028944, +0.0000028952,0.0000028938,0.0000028888,0.0000028805,0.0000028726, +0.0000028633,0.0000028533,0.0000028436,0.0000028350,0.0000028289, +0.0000028209,0.0000028102,0.0000028006,0.0000028009,0.0000028124, +0.0000028153,0.0000028204,0.0000028417,0.0000028604,0.0000028705, +0.0000028797,0.0000028790,0.0000028834,0.0000028989,0.0000029077, +0.0000029078,0.0000029038,0.0000028977,0.0000028885,0.0000028751, +0.0000028569,0.0000028386,0.0000028222,0.0000028114,0.0000028093, +0.0000028117,0.0000028135,0.0000028149,0.0000028198,0.0000028275, +0.0000028304,0.0000028289,0.0000028295,0.0000028364,0.0000028395, +0.0000028400,0.0000028479,0.0000028596,0.0000028672,0.0000028711, +0.0000028760,0.0000028857,0.0000028918,0.0000028948,0.0000029060, +0.0000029168,0.0000029124,0.0000029008,0.0000028903,0.0000028743, +0.0000028581,0.0000028480,0.0000028439,0.0000028459,0.0000028544, +0.0000028622,0.0000028656,0.0000028682,0.0000028716,0.0000028739, +0.0000028760,0.0000028778,0.0000028784,0.0000028799,0.0000028815, +0.0000028815,0.0000028667,0.0000028541,0.0000028534,0.0000028457, +0.0000028185,0.0000028074,0.0000028083,0.0000027998,0.0000027859, +0.0000027791,0.0000027802,0.0000027840,0.0000027853,0.0000027817, +0.0000027751,0.0000027693,0.0000027670,0.0000027655,0.0000027595, +0.0000027478,0.0000027331,0.0000027243,0.0000027243,0.0000027309, +0.0000027342,0.0000027346,0.0000027364,0.0000027377,0.0000027353, +0.0000027328,0.0000027347,0.0000027407,0.0000027437,0.0000027405, +0.0000027338,0.0000027339,0.0000027413,0.0000027517,0.0000027534, +0.0000027478,0.0000027379,0.0000027320,0.0000027293,0.0000027253, +0.0000027213,0.0000027204,0.0000027211,0.0000027216,0.0000027209, +0.0000027193,0.0000027183,0.0000027184,0.0000027186,0.0000027181, +0.0000027170,0.0000027151,0.0000027123,0.0000027089,0.0000027052, +0.0000027015,0.0000026979,0.0000026949,0.0000026927,0.0000026909, +0.0000026897,0.0000026886,0.0000026862,0.0000026817,0.0000026755, +0.0000026685,0.0000026626,0.0000026589,0.0000026579,0.0000026588, +0.0000026612,0.0000026631,0.0000026642,0.0000026659,0.0000026686, +0.0000026711,0.0000026735,0.0000026760,0.0000026790,0.0000026826, +0.0000026862,0.0000026873,0.0000026859,0.0000026844,0.0000026847, +0.0000026876,0.0000026921,0.0000026968,0.0000027015,0.0000027086, +0.0000027181,0.0000027263,0.0000027313,0.0000027362,0.0000027433, +0.0000027522,0.0000027624,0.0000027725,0.0000027803,0.0000027867, +0.0000027930,0.0000027989,0.0000028050,0.0000028112,0.0000028179, +0.0000028253,0.0000028329,0.0000028392,0.0000028435,0.0000028442, +0.0000028426,0.0000028419,0.0000028437,0.0000028507,0.0000028633, +0.0000028786,0.0000028926,0.0000029018,0.0000029081,0.0000029118, +0.0000029136,0.0000029127,0.0000029109,0.0000029085,0.0000029051, +0.0000029003,0.0000028935,0.0000028854,0.0000028766,0.0000028705, +0.0000028683,0.0000028678,0.0000028689,0.0000028715,0.0000028732, +0.0000028726,0.0000028713,0.0000028712,0.0000028693,0.0000028650, +0.0000028584,0.0000028464,0.0000028283,0.0000028099,0.0000027987, +0.0000027969,0.0000028012,0.0000028109,0.0000028226,0.0000028333, +0.0000028380,0.0000028342,0.0000028251,0.0000028199,0.0000028220, +0.0000028279,0.0000028356,0.0000028424,0.0000028476,0.0000028485, +0.0000028468,0.0000028429,0.0000028390,0.0000028360,0.0000028321, +0.0000028280,0.0000028253,0.0000028233,0.0000028216,0.0000028214, +0.0000028259,0.0000028343,0.0000028414,0.0000028424,0.0000028383, +0.0000028322,0.0000028270,0.0000028201,0.0000028150,0.0000028140, +0.0000028127,0.0000028088,0.0000028050,0.0000028041,0.0000028053, +0.0000028063,0.0000028037,0.0000027985,0.0000027938,0.0000027908, +0.0000027896,0.0000027901,0.0000027904,0.0000027892,0.0000027867, +0.0000027819,0.0000027754,0.0000027694,0.0000027640,0.0000027609, +0.0000027583,0.0000027551,0.0000027509,0.0000027464,0.0000027440, +0.0000027443,0.0000027466,0.0000027505,0.0000027548,0.0000027602, +0.0000027656,0.0000027698,0.0000027724,0.0000027739,0.0000027766, +0.0000027839,0.0000027936,0.0000027992,0.0000027962,0.0000027901, +0.0000027879,0.0000027877,0.0000027861,0.0000027814,0.0000027743, +0.0000027685,0.0000027661,0.0000027635,0.0000027586,0.0000027544, +0.0000027539,0.0000027568,0.0000027611,0.0000027630,0.0000027622, +0.0000027588,0.0000027535,0.0000027492,0.0000027377,0.0000027223, +0.0000027214,0.0000027255,0.0000027291,0.0000027306,0.0000027279, +0.0000027222,0.0000027146,0.0000027116,0.0000027151,0.0000027172, +0.0000027118,0.0000027071,0.0000027077,0.0000027078,0.0000027103, +0.0000027123,0.0000027085,0.0000027042,0.0000027049,0.0000027122, +0.0000027260,0.0000027386,0.0000027433,0.0000027427,0.0000027385, +0.0000027335,0.0000027312,0.0000027319,0.0000027331,0.0000027316, +0.0000027273,0.0000027228,0.0000027187,0.0000027167,0.0000027159, +0.0000027130,0.0000027058,0.0000026963,0.0000026884,0.0000026808, +0.0000026747,0.0000026718,0.0000026703,0.0000026691,0.0000026694, +0.0000026703,0.0000026695,0.0000026664,0.0000026604,0.0000026480, +0.0000026298,0.0000026157,0.0000026129,0.0000026265,0.0000026574, +0.0000026839,0.0000026907,0.0000026903,0.0000026965,0.0000027052, +0.0000027030,0.0000026900,0.0000026831,0.0000026744,0.0000026540, +0.0000026273,0.0000026131,0.0000026327,0.0000026479,0.0000026529, +0.0000026863,0.0000027338,0.0000027505,0.0000027494,0.0000027477, +0.0000027511,0.0000027586,0.0000027688,0.0000027822,0.0000027906, +0.0000027928,0.0000027955,0.0000027994,0.0000028033,0.0000028054, +0.0000028060,0.0000028090,0.0000028128,0.0000028161,0.0000028190, +0.0000028183,0.0000028105,0.0000027982,0.0000027875,0.0000027851, +0.0000027893,0.0000027920,0.0000027916,0.0000027928,0.0000027931, +0.0000027909,0.0000027859,0.0000027781,0.0000027711,0.0000027659, +0.0000027624,0.0000027598,0.0000027540,0.0000027464,0.0000027524, +0.0000027661,0.0000027846,0.0000028011,0.0000028049,0.0000028004, +0.0000027858,0.0000027791,0.0000027823,0.0000027903,0.0000027741, +0.0000027579,0.0000027552,0.0000027568,0.0000027554,0.0000027524, +0.0000027500,0.0000027519,0.0000027510,0.0000027344,0.0000027140, +0.0000027125,0.0000027087,0.0000027022,0.0000026990,0.0000026877, +0.0000026713,0.0000026555,0.0000026472,0.0000026448,0.0000026404, +0.0000026310,0.0000026188,0.0000026063,0.0000025958,0.0000025893, +0.0000025838,0.0000025797,0.0000025792,0.0000025775,0.0000025731, +0.0000025659,0.0000025606,0.0000025599,0.0000025618,0.0000025644, +0.0000025690,0.0000025751,0.0000025823,0.0000025886,0.0000025909, +0.0000025899,0.0000025865,0.0000025842,0.0000025851,0.0000025894, +0.0000025939,0.0000025954,0.0000025947,0.0000025933,0.0000025897, +0.0000025835,0.0000025747,0.0000025656,0.0000025582,0.0000025538, +0.0000025521,0.0000025510,0.0000025486,0.0000025446,0.0000025392, +0.0000025332,0.0000025294,0.0000025266,0.0000025240,0.0000025223, +0.0000025248,0.0000025294,0.0000025331,0.0000025367,0.0000025372, +0.0000025358,0.0000025332,0.0000025296,0.0000025247,0.0000025212, +0.0000025211,0.0000025246,0.0000025311,0.0000025361,0.0000025386, +0.0000025379,0.0000025342,0.0000025260,0.0000025159,0.0000025082, +0.0000025046,0.0000025037,0.0000025028,0.0000025023,0.0000025094, +0.0000025217,0.0000025302,0.0000025334,0.0000025329,0.0000025421, +0.0000025701,0.0000025979,0.0000026081,0.0000026083,0.0000026065, +0.0000026052,0.0000026048,0.0000026058,0.0000026100,0.0000026185, +0.0000026267,0.0000026322,0.0000026411,0.0000026528,0.0000026623, +0.0000026726,0.0000026812,0.0000026820,0.0000026792,0.0000026756, +0.0000026720,0.0000026681,0.0000026653,0.0000026655,0.0000026721, +0.0000026847,0.0000026986,0.0000027083,0.0000027111,0.0000027089, +0.0000027042,0.0000027018,0.0000027053,0.0000027119,0.0000027146, +0.0000027173,0.0000027180,0.0000027167,0.0000027168,0.0000027159, +0.0000027177,0.0000027287,0.0000027473,0.0000027719,0.0000028122, +0.0000028400,0.0000028392,0.0000028281,0.0000028166,0.0000028267, +0.0000028324,0.0000028365,0.0000028442,0.0000028471,0.0000028388, +0.0000028296,0.0000028305,0.0000028290,0.0000028274,0.0000028203, +0.0000028152,0.0000028281,0.0000028412,0.0000028356,0.0000028243, +0.0000028194,0.0000028208,0.0000028232,0.0000028237,0.0000028246, +0.0000028253,0.0000028267,0.0000028283,0.0000028342,0.0000028432, +0.0000028537,0.0000028587,0.0000028565,0.0000028517,0.0000028484, +0.0000028491,0.0000028505,0.0000028536,0.0000028580,0.0000028633, +0.0000028671,0.0000028692,0.0000028714,0.0000028747,0.0000028756, +0.0000028758,0.0000028771,0.0000028800,0.0000028842,0.0000028906, +0.0000028997,0.0000029077,0.0000029147,0.0000029222,0.0000029260, +0.0000029255,0.0000029186,0.0000029067,0.0000028933,0.0000028820, +0.0000028788,0.0000028816,0.0000028856,0.0000028878,0.0000028891, +0.0000028875,0.0000028854,0.0000028838,0.0000028840,0.0000028867, +0.0000028905,0.0000028911,0.0000028889,0.0000028868,0.0000028853, +0.0000028768,0.0000028714,0.0000028771,0.0000028883,0.0000029031, +0.0000029176,0.0000029281,0.0000029313,0.0000029281,0.0000029203, +0.0000029153,0.0000029166,0.0000029220,0.0000029238,0.0000029208, +0.0000029175,0.0000029164,0.0000029185,0.0000029202,0.0000029210, +0.0000029211,0.0000029195,0.0000029179,0.0000029173,0.0000029173, +0.0000029152,0.0000029120,0.0000029080,0.0000029056,0.0000029052, +0.0000029066,0.0000029077,0.0000029078,0.0000029070,0.0000029051, +0.0000029020,0.0000028986,0.0000028953,0.0000028921,0.0000028880, +0.0000028847,0.0000028823,0.0000028803,0.0000028782,0.0000028759, +0.0000028718,0.0000028670,0.0000028635,0.0000028633,0.0000028629, +0.0000028618,0.0000028602,0.0000028577,0.0000028554,0.0000028546, +0.0000028531,0.0000028501,0.0000028477,0.0000028471,0.0000028476, +0.0000028476,0.0000028458,0.0000028406,0.0000028339,0.0000028286, +0.0000028252,0.0000028221,0.0000028187,0.0000028164,0.0000028178, +0.0000028212,0.0000028230,0.0000028229,0.0000028226,0.0000028215, +0.0000028205,0.0000028205,0.0000028204,0.0000028195,0.0000028185, +0.0000028186,0.0000028203,0.0000028223,0.0000028228,0.0000028203, +0.0000028180,0.0000028157,0.0000028126,0.0000028079,0.0000028059, +0.0000028083,0.0000028161,0.0000028235,0.0000028262,0.0000028256, +0.0000028224,0.0000028175,0.0000028144,0.0000028138,0.0000028147, +0.0000028157,0.0000028153,0.0000028093,0.0000027990,0.0000027911, +0.0000027891,0.0000027913,0.0000028020,0.0000028148,0.0000028197, +0.0000028137,0.0000027930,0.0000027590,0.0000027381,0.0000027371, +0.0000027468,0.0000027596,0.0000027758,0.0000027954,0.0000028112, +0.0000028226,0.0000028285,0.0000028314,0.0000028330,0.0000028318, +0.0000028269,0.0000028183,0.0000028118,0.0000028108,0.0000028140, +0.0000028218,0.0000028306,0.0000028381,0.0000028440,0.0000028476, +0.0000028491,0.0000028496,0.0000028504,0.0000028497,0.0000028473, +0.0000028431,0.0000028365,0.0000028295,0.0000028228,0.0000028173, +0.0000028135,0.0000028121,0.0000028127,0.0000028138,0.0000028149, +0.0000028104,0.0000028007,0.0000027875,0.0000027756,0.0000027677, +0.0000027688,0.0000027719,0.0000027791,0.0000027959,0.0000028206, +0.0000028421,0.0000028531,0.0000028571,0.0000028581,0.0000028597, +0.0000028627,0.0000028678,0.0000028743,0.0000028817,0.0000028878, +0.0000028923,0.0000028952,0.0000028947,0.0000028892,0.0000028788, +0.0000028688,0.0000028589,0.0000028501,0.0000028416,0.0000028340, +0.0000028275,0.0000028203,0.0000028114,0.0000028033,0.0000027994, +0.0000028066,0.0000028148,0.0000028136,0.0000028326,0.0000028557, +0.0000028666,0.0000028739,0.0000028753,0.0000028770,0.0000028914, +0.0000029024,0.0000029049,0.0000029026,0.0000028953,0.0000028829, +0.0000028638,0.0000028425,0.0000028244,0.0000028091,0.0000027990, +0.0000027961,0.0000027970,0.0000027978,0.0000028009,0.0000028125, +0.0000028282,0.0000028375,0.0000028389,0.0000028386,0.0000028446, +0.0000028492,0.0000028478,0.0000028503,0.0000028608,0.0000028694, +0.0000028748,0.0000028767,0.0000028810,0.0000028907,0.0000028980, +0.0000029027,0.0000029118,0.0000029163,0.0000029094,0.0000028975, +0.0000028843,0.0000028683,0.0000028542,0.0000028465,0.0000028441, +0.0000028460,0.0000028504,0.0000028542,0.0000028579,0.0000028622, +0.0000028654,0.0000028675,0.0000028692,0.0000028698,0.0000028735, +0.0000028788,0.0000028811,0.0000028667,0.0000028509,0.0000028492, +0.0000028418,0.0000028152,0.0000028067,0.0000028079,0.0000027984, +0.0000027824,0.0000027733,0.0000027713,0.0000027720,0.0000027758, +0.0000027794,0.0000027773,0.0000027707,0.0000027657,0.0000027641, +0.0000027625,0.0000027568,0.0000027450,0.0000027287,0.0000027198, +0.0000027219,0.0000027303,0.0000027347,0.0000027355,0.0000027369, +0.0000027372,0.0000027356,0.0000027344,0.0000027355,0.0000027390, +0.0000027414,0.0000027390,0.0000027326,0.0000027292,0.0000027333, +0.0000027427,0.0000027494,0.0000027488,0.0000027398,0.0000027302, +0.0000027239,0.0000027197,0.0000027161,0.0000027152,0.0000027161, +0.0000027173,0.0000027172,0.0000027159,0.0000027140,0.0000027127, +0.0000027122,0.0000027126,0.0000027124,0.0000027110,0.0000027080, +0.0000027038,0.0000026996,0.0000026955,0.0000026913,0.0000026880, +0.0000026858,0.0000026841,0.0000026823,0.0000026795,0.0000026755, +0.0000026701,0.0000026627,0.0000026549,0.0000026488,0.0000026459, +0.0000026458,0.0000026475,0.0000026495,0.0000026508,0.0000026525, +0.0000026549,0.0000026567,0.0000026577,0.0000026589,0.0000026613, +0.0000026650,0.0000026696,0.0000026729,0.0000026730,0.0000026704, +0.0000026691,0.0000026721,0.0000026792,0.0000026872,0.0000026942, +0.0000027009,0.0000027092,0.0000027180,0.0000027237,0.0000027274, +0.0000027329,0.0000027402,0.0000027487,0.0000027581,0.0000027660, +0.0000027715,0.0000027758,0.0000027793,0.0000027816,0.0000027840, +0.0000027863,0.0000027895,0.0000027937,0.0000027992,0.0000028074, +0.0000028190,0.0000028308,0.0000028391,0.0000028414,0.0000028420, +0.0000028441,0.0000028521,0.0000028661,0.0000028826,0.0000028970, +0.0000029059,0.0000029115,0.0000029137,0.0000029127,0.0000029100, +0.0000029071,0.0000029048,0.0000029022,0.0000028971,0.0000028890, +0.0000028811,0.0000028767,0.0000028747,0.0000028735,0.0000028735, +0.0000028758,0.0000028783,0.0000028783,0.0000028772,0.0000028774, +0.0000028759,0.0000028719,0.0000028687,0.0000028630,0.0000028489, +0.0000028291,0.0000028115,0.0000028023,0.0000028027,0.0000028108, +0.0000028235,0.0000028359,0.0000028423,0.0000028393,0.0000028292, +0.0000028207,0.0000028203,0.0000028240,0.0000028317,0.0000028392, +0.0000028443,0.0000028466,0.0000028471,0.0000028456,0.0000028430, +0.0000028388,0.0000028332,0.0000028271,0.0000028223,0.0000028193, +0.0000028188,0.0000028200,0.0000028230,0.0000028295,0.0000028369, +0.0000028397,0.0000028366,0.0000028296,0.0000028239,0.0000028185, +0.0000028136,0.0000028129,0.0000028141,0.0000028135,0.0000028099, +0.0000028064,0.0000028071,0.0000028099,0.0000028106,0.0000028088, +0.0000028062,0.0000028039,0.0000028027,0.0000028025,0.0000028020, +0.0000027998,0.0000027966,0.0000027926,0.0000027869,0.0000027805, +0.0000027758,0.0000027724,0.0000027714,0.0000027698,0.0000027671, +0.0000027637,0.0000027612,0.0000027611,0.0000027618,0.0000027614, +0.0000027586,0.0000027549,0.0000027534,0.0000027586,0.0000027653, +0.0000027705,0.0000027719,0.0000027742,0.0000027816,0.0000027936, +0.0000028001,0.0000027970,0.0000027905,0.0000027866,0.0000027845, +0.0000027812,0.0000027754,0.0000027702,0.0000027668,0.0000027621, +0.0000027567,0.0000027542,0.0000027554,0.0000027604,0.0000027641, +0.0000027635,0.0000027620,0.0000027631,0.0000027615,0.0000027554, +0.0000027483,0.0000027335,0.0000027199,0.0000027205,0.0000027251, +0.0000027288,0.0000027290,0.0000027249,0.0000027163,0.0000027093, +0.0000027114,0.0000027151,0.0000027096,0.0000027040,0.0000027053, +0.0000027064,0.0000027088,0.0000027117,0.0000027087,0.0000027049, +0.0000027048,0.0000027089,0.0000027206,0.0000027342,0.0000027412, +0.0000027419,0.0000027386,0.0000027326,0.0000027279,0.0000027278, +0.0000027313,0.0000027336,0.0000027327,0.0000027294,0.0000027239, +0.0000027188,0.0000027167,0.0000027155,0.0000027125,0.0000027040, +0.0000026944,0.0000026872,0.0000026805,0.0000026742,0.0000026703, +0.0000026675,0.0000026651,0.0000026656,0.0000026672,0.0000026668, +0.0000026642,0.0000026583,0.0000026478,0.0000026304,0.0000026131, +0.0000026060,0.0000026124,0.0000026413,0.0000026760,0.0000026904, +0.0000026873,0.0000026881,0.0000026956,0.0000026960,0.0000026847, +0.0000026801,0.0000026796,0.0000026608,0.0000026339,0.0000026129, +0.0000026220,0.0000026443,0.0000026472,0.0000026614,0.0000027011, +0.0000027365,0.0000027459,0.0000027427,0.0000027410,0.0000027417, +0.0000027494,0.0000027637,0.0000027767,0.0000027857,0.0000027912, +0.0000027959,0.0000028008,0.0000028058,0.0000028090,0.0000028122, +0.0000028141,0.0000028162,0.0000028211,0.0000028242,0.0000028209, +0.0000028122,0.0000028001,0.0000027919,0.0000027905,0.0000027917, +0.0000027910,0.0000027884,0.0000027886,0.0000027869,0.0000027808, +0.0000027728,0.0000027668,0.0000027633,0.0000027597,0.0000027570, +0.0000027499,0.0000027447,0.0000027532,0.0000027659,0.0000027854, +0.0000028006,0.0000028027,0.0000027982,0.0000027839,0.0000027791, +0.0000027838,0.0000027903,0.0000027718,0.0000027591,0.0000027567, +0.0000027557,0.0000027540,0.0000027522,0.0000027494,0.0000027514, +0.0000027474,0.0000027299,0.0000027137,0.0000027136,0.0000027095, +0.0000027027,0.0000026977,0.0000026841,0.0000026685,0.0000026556, +0.0000026472,0.0000026425,0.0000026377,0.0000026314,0.0000026239, +0.0000026149,0.0000026048,0.0000025952,0.0000025858,0.0000025778, +0.0000025751,0.0000025751,0.0000025735,0.0000025685,0.0000025621, +0.0000025589,0.0000025599,0.0000025633,0.0000025692,0.0000025763, +0.0000025831,0.0000025876,0.0000025885,0.0000025861,0.0000025824, +0.0000025813,0.0000025842,0.0000025893,0.0000025936,0.0000025949, +0.0000025942,0.0000025938,0.0000025922,0.0000025883,0.0000025811, +0.0000025733,0.0000025675,0.0000025642,0.0000025627,0.0000025617, +0.0000025596,0.0000025547,0.0000025477,0.0000025402,0.0000025341, +0.0000025296,0.0000025257,0.0000025217,0.0000025192,0.0000025184, +0.0000025205,0.0000025218,0.0000025221,0.0000025240,0.0000025267, +0.0000025275,0.0000025248,0.0000025196,0.0000025144,0.0000025121, +0.0000025173,0.0000025242,0.0000025299,0.0000025320,0.0000025301, +0.0000025266,0.0000025248,0.0000025209,0.0000025155,0.0000025072, +0.0000025017,0.0000025001,0.0000025016,0.0000025058,0.0000025168, +0.0000025317,0.0000025395,0.0000025418,0.0000025417,0.0000025542, +0.0000025858,0.0000026046,0.0000026072,0.0000026075,0.0000026068, +0.0000026056,0.0000026050,0.0000026062,0.0000026104,0.0000026184, +0.0000026270,0.0000026336,0.0000026415,0.0000026519,0.0000026604, +0.0000026695,0.0000026782,0.0000026777,0.0000026739,0.0000026698, +0.0000026668,0.0000026650,0.0000026649,0.0000026691,0.0000026780, +0.0000026894,0.0000027000,0.0000027060,0.0000027060,0.0000027037, +0.0000027009,0.0000027012,0.0000027058,0.0000027128,0.0000027185, +0.0000027206,0.0000027188,0.0000027171,0.0000027134,0.0000027129, +0.0000027266,0.0000027487,0.0000027698,0.0000028074,0.0000028385, +0.0000028390,0.0000028276,0.0000028157,0.0000028257,0.0000028320, +0.0000028331,0.0000028416,0.0000028471,0.0000028398,0.0000028287, +0.0000028286,0.0000028271,0.0000028262,0.0000028170,0.0000028111, +0.0000028232,0.0000028372,0.0000028329,0.0000028243,0.0000028218, +0.0000028237,0.0000028249,0.0000028249,0.0000028271,0.0000028303, +0.0000028326,0.0000028335,0.0000028368,0.0000028401,0.0000028407, +0.0000028396,0.0000028385,0.0000028420,0.0000028466,0.0000028519, +0.0000028572,0.0000028636,0.0000028696,0.0000028737,0.0000028768, +0.0000028795,0.0000028820,0.0000028843,0.0000028838,0.0000028844, +0.0000028876,0.0000028932,0.0000028995,0.0000029066,0.0000029151, +0.0000029223,0.0000029259,0.0000029283,0.0000029240,0.0000029141, +0.0000029002,0.0000028859,0.0000028799,0.0000028791,0.0000028840, +0.0000028889,0.0000028893,0.0000028879,0.0000028856,0.0000028824, +0.0000028808,0.0000028822,0.0000028843,0.0000028865,0.0000028871, +0.0000028868,0.0000028849,0.0000028833,0.0000028802,0.0000028721, +0.0000028721,0.0000028816,0.0000028946,0.0000029114,0.0000029253, +0.0000029328,0.0000029313,0.0000029249,0.0000029180,0.0000029155, +0.0000029176,0.0000029207,0.0000029203,0.0000029175,0.0000029140, +0.0000029132,0.0000029159,0.0000029188,0.0000029214,0.0000029227, +0.0000029219,0.0000029212,0.0000029211,0.0000029217,0.0000029200, +0.0000029171,0.0000029140,0.0000029111,0.0000029099,0.0000029099, +0.0000029103,0.0000029107,0.0000029100,0.0000029084,0.0000029058, +0.0000029027,0.0000028990,0.0000028948,0.0000028891,0.0000028832, +0.0000028773,0.0000028710,0.0000028648,0.0000028589,0.0000028528, +0.0000028468,0.0000028425,0.0000028423,0.0000028436,0.0000028445, +0.0000028442,0.0000028420,0.0000028399,0.0000028396,0.0000028390, +0.0000028370,0.0000028356,0.0000028365,0.0000028391,0.0000028419, +0.0000028439,0.0000028440,0.0000028420,0.0000028369,0.0000028315, +0.0000028271,0.0000028231,0.0000028196,0.0000028189,0.0000028205, +0.0000028222,0.0000028217,0.0000028199,0.0000028188,0.0000028176, +0.0000028175,0.0000028188,0.0000028199,0.0000028203,0.0000028211, +0.0000028230,0.0000028255,0.0000028278,0.0000028284,0.0000028287, +0.0000028288,0.0000028266,0.0000028207,0.0000028121,0.0000028062, +0.0000028073,0.0000028128,0.0000028193,0.0000028234,0.0000028245, +0.0000028225,0.0000028198,0.0000028186,0.0000028177,0.0000028161, +0.0000028148,0.0000028127,0.0000028080,0.0000028012,0.0000027946, +0.0000027910,0.0000027911,0.0000027957,0.0000028078,0.0000028156, +0.0000028126,0.0000028035,0.0000027768,0.0000027475,0.0000027344, +0.0000027373,0.0000027475,0.0000027597,0.0000027744,0.0000027874, +0.0000027998,0.0000028089,0.0000028160,0.0000028220,0.0000028247, +0.0000028220,0.0000028144,0.0000028079,0.0000028064,0.0000028096, +0.0000028170,0.0000028260,0.0000028345,0.0000028422,0.0000028478, +0.0000028500,0.0000028488,0.0000028466,0.0000028438,0.0000028412, +0.0000028385,0.0000028331,0.0000028264,0.0000028200,0.0000028156, +0.0000028128,0.0000028108,0.0000028090,0.0000028098,0.0000028136, +0.0000028155,0.0000028168,0.0000028084,0.0000027937,0.0000027787, +0.0000027728,0.0000027726,0.0000027732,0.0000027811,0.0000028018, +0.0000028289,0.0000028506,0.0000028595,0.0000028619,0.0000028626, +0.0000028646,0.0000028677,0.0000028704,0.0000028738,0.0000028791, +0.0000028853,0.0000028891,0.0000028886,0.0000028824,0.0000028709, +0.0000028595,0.0000028485,0.0000028402,0.0000028333,0.0000028294, +0.0000028257,0.0000028193,0.0000028122,0.0000028063,0.0000028006, +0.0000028021,0.0000028134,0.0000028106,0.0000028223,0.0000028490, +0.0000028650,0.0000028701,0.0000028714,0.0000028703,0.0000028817, +0.0000028946,0.0000028980,0.0000028955,0.0000028847,0.0000028687, +0.0000028479,0.0000028282,0.0000028144,0.0000028024,0.0000027935, +0.0000027903,0.0000027890,0.0000027875,0.0000027900,0.0000028047, +0.0000028244,0.0000028387,0.0000028446,0.0000028444,0.0000028496, +0.0000028566,0.0000028568,0.0000028563,0.0000028625,0.0000028702, +0.0000028762,0.0000028806,0.0000028821,0.0000028863,0.0000028956, +0.0000029027,0.0000029076,0.0000029134,0.0000029151,0.0000029076, +0.0000028953,0.0000028815,0.0000028661,0.0000028530,0.0000028461, +0.0000028439,0.0000028440,0.0000028443,0.0000028454,0.0000028480, +0.0000028506,0.0000028535,0.0000028575,0.0000028610,0.0000028677, +0.0000028767,0.0000028807,0.0000028652,0.0000028471,0.0000028452, +0.0000028384,0.0000028126,0.0000028065,0.0000028076,0.0000027969, +0.0000027805,0.0000027705,0.0000027658,0.0000027629,0.0000027637, +0.0000027693,0.0000027736,0.0000027707,0.0000027655,0.0000027613, +0.0000027603,0.0000027590,0.0000027543,0.0000027432,0.0000027271, +0.0000027190,0.0000027211,0.0000027301,0.0000027350,0.0000027346, +0.0000027342,0.0000027342,0.0000027347,0.0000027346,0.0000027347, +0.0000027361,0.0000027377,0.0000027365,0.0000027297,0.0000027239, +0.0000027245,0.0000027328,0.0000027430,0.0000027478,0.0000027447, +0.0000027344,0.0000027230,0.0000027159,0.0000027119,0.0000027111, +0.0000027118,0.0000027128,0.0000027129,0.0000027118,0.0000027103, +0.0000027090,0.0000027083,0.0000027086,0.0000027090,0.0000027087, +0.0000027068,0.0000027033,0.0000026985,0.0000026936,0.0000026891, +0.0000026858,0.0000026838,0.0000026832,0.0000026824,0.0000026805, +0.0000026773,0.0000026726,0.0000026669,0.0000026614,0.0000026563, +0.0000026520,0.0000026494,0.0000026495,0.0000026502,0.0000026512, +0.0000026525,0.0000026533,0.0000026531,0.0000026523,0.0000026513, +0.0000026507,0.0000026514,0.0000026537,0.0000026568,0.0000026581, +0.0000026575,0.0000026579,0.0000026618,0.0000026689,0.0000026787, +0.0000026884,0.0000026971,0.0000027066,0.0000027147,0.0000027198, +0.0000027248,0.0000027311,0.0000027380,0.0000027453,0.0000027524, +0.0000027583,0.0000027624,0.0000027649,0.0000027660,0.0000027666, +0.0000027679,0.0000027695,0.0000027719,0.0000027753,0.0000027795, +0.0000027856,0.0000027960,0.0000028115,0.0000028279,0.0000028386, +0.0000028420,0.0000028427,0.0000028446,0.0000028520,0.0000028661, +0.0000028828,0.0000028971,0.0000029075,0.0000029134,0.0000029149, +0.0000029134,0.0000029113,0.0000029095,0.0000029081,0.0000029040, +0.0000028971,0.0000028911,0.0000028875,0.0000028842,0.0000028805, +0.0000028787,0.0000028798,0.0000028813,0.0000028804,0.0000028792, +0.0000028801,0.0000028796,0.0000028758,0.0000028733,0.0000028716, +0.0000028645,0.0000028506,0.0000028330,0.0000028172,0.0000028105, +0.0000028136,0.0000028248,0.0000028395,0.0000028476,0.0000028459, +0.0000028370,0.0000028273,0.0000028222,0.0000028231,0.0000028282, +0.0000028346,0.0000028393,0.0000028418,0.0000028432,0.0000028434, +0.0000028428,0.0000028398,0.0000028345,0.0000028275,0.0000028214, +0.0000028180,0.0000028176,0.0000028189,0.0000028206,0.0000028249, +0.0000028322,0.0000028378,0.0000028374,0.0000028307,0.0000028231, +0.0000028169,0.0000028120,0.0000028102,0.0000028121,0.0000028153, +0.0000028157,0.0000028142,0.0000028125,0.0000028121,0.0000028121, +0.0000028111,0.0000028095,0.0000028086,0.0000028087,0.0000028096, +0.0000028100,0.0000028088,0.0000028064,0.0000028030,0.0000027980, +0.0000027919,0.0000027856,0.0000027802,0.0000027759,0.0000027724, +0.0000027689,0.0000027657,0.0000027641,0.0000027653,0.0000027697, +0.0000027747,0.0000027787,0.0000027806,0.0000027748,0.0000027644, +0.0000027583,0.0000027615,0.0000027687,0.0000027715,0.0000027731, +0.0000027808,0.0000027929,0.0000027996,0.0000027966,0.0000027889, +0.0000027830,0.0000027793,0.0000027750,0.0000027711,0.0000027675, +0.0000027625,0.0000027581,0.0000027566,0.0000027586,0.0000027628, +0.0000027633,0.0000027579,0.0000027543,0.0000027581,0.0000027634, +0.0000027624,0.0000027559,0.0000027455,0.0000027282,0.0000027191, +0.0000027211,0.0000027258,0.0000027283,0.0000027271,0.0000027194, +0.0000027099,0.0000027095,0.0000027137,0.0000027086,0.0000027013, +0.0000027026,0.0000027044,0.0000027067,0.0000027099,0.0000027078, +0.0000027042,0.0000027039,0.0000027061,0.0000027145,0.0000027274, +0.0000027366,0.0000027391,0.0000027375,0.0000027320,0.0000027246, +0.0000027218,0.0000027251,0.0000027308,0.0000027339,0.0000027332, +0.0000027311,0.0000027245,0.0000027192,0.0000027165,0.0000027150, +0.0000027110,0.0000027021,0.0000026929,0.0000026861,0.0000026793, +0.0000026725,0.0000026680,0.0000026643,0.0000026619,0.0000026622, +0.0000026638,0.0000026638,0.0000026625,0.0000026578,0.0000026483, +0.0000026310,0.0000026104,0.0000025993,0.0000026001,0.0000026237, +0.0000026643,0.0000026884,0.0000026859,0.0000026811,0.0000026856, +0.0000026867,0.0000026808,0.0000026786,0.0000026835,0.0000026677, +0.0000026415,0.0000026147,0.0000026143,0.0000026360,0.0000026433, +0.0000026457,0.0000026644,0.0000027021,0.0000027304,0.0000027380, +0.0000027362,0.0000027339,0.0000027373,0.0000027449,0.0000027550, +0.0000027678,0.0000027811,0.0000027909,0.0000027965,0.0000028024, +0.0000028092,0.0000028148,0.0000028171,0.0000028178,0.0000028210, +0.0000028249,0.0000028260,0.0000028220,0.0000028129,0.0000028031, +0.0000027956,0.0000027917,0.0000027910,0.0000027847,0.0000027795, +0.0000027788,0.0000027748,0.0000027676,0.0000027624,0.0000027591, +0.0000027565,0.0000027532,0.0000027452,0.0000027448,0.0000027539, +0.0000027670,0.0000027859,0.0000027996,0.0000028005,0.0000027957, +0.0000027825,0.0000027793,0.0000027854,0.0000027897,0.0000027704, +0.0000027612,0.0000027574,0.0000027548,0.0000027542,0.0000027527, +0.0000027497,0.0000027506,0.0000027433,0.0000027266,0.0000027134, +0.0000027139,0.0000027095,0.0000027020,0.0000026955,0.0000026800, +0.0000026641,0.0000026534,0.0000026461,0.0000026407,0.0000026354, +0.0000026302,0.0000026258,0.0000026219,0.0000026162,0.0000026075, +0.0000025971,0.0000025851,0.0000025760,0.0000025737,0.0000025735, +0.0000025709,0.0000025658,0.0000025610,0.0000025604,0.0000025638, +0.0000025718,0.0000025804,0.0000025874,0.0000025907,0.0000025897, +0.0000025857,0.0000025813,0.0000025806,0.0000025843,0.0000025899, +0.0000025942,0.0000025956,0.0000025950,0.0000025941,0.0000025932, +0.0000025905,0.0000025848,0.0000025784,0.0000025745,0.0000025729, +0.0000025724,0.0000025718,0.0000025704,0.0000025660,0.0000025597, +0.0000025533,0.0000025478,0.0000025441,0.0000025406,0.0000025357, +0.0000025295,0.0000025237,0.0000025186,0.0000025145,0.0000025070, +0.0000025051,0.0000025084,0.0000025140,0.0000025177,0.0000025182, +0.0000025159,0.0000025125,0.0000025099,0.0000025088,0.0000025121, +0.0000025184,0.0000025235,0.0000025241,0.0000025199,0.0000025184, +0.0000025216,0.0000025210,0.0000025129,0.0000025021,0.0000024998, +0.0000025046,0.0000025092,0.0000025165,0.0000025288,0.0000025427, +0.0000025471,0.0000025441,0.0000025452,0.0000025698,0.0000025970, +0.0000026055,0.0000026069,0.0000026074,0.0000026063,0.0000026041, +0.0000026029,0.0000026039,0.0000026091,0.0000026180,0.0000026262, +0.0000026315,0.0000026374,0.0000026454,0.0000026531,0.0000026622, +0.0000026713,0.0000026719,0.0000026682,0.0000026643,0.0000026636, +0.0000026649,0.0000026690,0.0000026751,0.0000026826,0.0000026902, +0.0000026964,0.0000027007,0.0000027019,0.0000027005,0.0000026986, +0.0000027026,0.0000027110,0.0000027179,0.0000027218,0.0000027200, +0.0000027158,0.0000027111,0.0000027117,0.0000027248,0.0000027499, +0.0000027682,0.0000028027,0.0000028378,0.0000028383,0.0000028269, +0.0000028151,0.0000028238,0.0000028320,0.0000028315,0.0000028394, +0.0000028460,0.0000028394,0.0000028284,0.0000028255,0.0000028259, +0.0000028240,0.0000028131,0.0000028062,0.0000028173,0.0000028303, +0.0000028286,0.0000028246,0.0000028259,0.0000028281,0.0000028294, +0.0000028294,0.0000028306,0.0000028322,0.0000028310,0.0000028270, +0.0000028241,0.0000028228,0.0000028246,0.0000028300,0.0000028367, +0.0000028453,0.0000028533,0.0000028602,0.0000028651,0.0000028709, +0.0000028789,0.0000028857,0.0000028902,0.0000028928,0.0000028951, +0.0000028984,0.0000029007,0.0000029037,0.0000029086,0.0000029145, +0.0000029190,0.0000029222,0.0000029249,0.0000029252,0.0000029227, +0.0000029161,0.0000029056,0.0000028944,0.0000028850,0.0000028794, +0.0000028800,0.0000028846,0.0000028892,0.0000028907,0.0000028898, +0.0000028894,0.0000028888,0.0000028885,0.0000028902,0.0000028937, +0.0000028937,0.0000028895,0.0000028836,0.0000028808,0.0000028791, +0.0000028780,0.0000028744,0.0000028698,0.0000028744,0.0000028855, +0.0000029017,0.0000029191,0.0000029313,0.0000029338,0.0000029285, +0.0000029209,0.0000029167,0.0000029159,0.0000029180,0.0000029197, +0.0000029183,0.0000029145,0.0000029104,0.0000029086,0.0000029098, +0.0000029126,0.0000029165,0.0000029198,0.0000029210,0.0000029222, +0.0000029221,0.0000029227,0.0000029217,0.0000029196,0.0000029175, +0.0000029156,0.0000029142,0.0000029131,0.0000029120,0.0000029110, +0.0000029091,0.0000029059,0.0000029021,0.0000028983,0.0000028933, +0.0000028873,0.0000028799,0.0000028709,0.0000028620,0.0000028530, +0.0000028450,0.0000028378,0.0000028314,0.0000028262,0.0000028234, +0.0000028241,0.0000028275,0.0000028307,0.0000028318,0.0000028299, +0.0000028270,0.0000028259,0.0000028251,0.0000028237,0.0000028231, +0.0000028248,0.0000028290,0.0000028342,0.0000028380,0.0000028404, +0.0000028416,0.0000028407,0.0000028373,0.0000028317,0.0000028253, +0.0000028206,0.0000028193,0.0000028205,0.0000028222,0.0000028222, +0.0000028200,0.0000028173,0.0000028155,0.0000028150,0.0000028168, +0.0000028202,0.0000028230,0.0000028256,0.0000028283,0.0000028301, +0.0000028309,0.0000028306,0.0000028304,0.0000028326,0.0000028340, +0.0000028325,0.0000028262,0.0000028168,0.0000028108,0.0000028101, +0.0000028130,0.0000028179,0.0000028218,0.0000028223,0.0000028209, +0.0000028209,0.0000028212,0.0000028203,0.0000028180,0.0000028145, +0.0000028105,0.0000028066,0.0000028040,0.0000028003,0.0000027960, +0.0000027924,0.0000027927,0.0000027993,0.0000028079,0.0000028124, +0.0000028099,0.0000027959,0.0000027682,0.0000027428,0.0000027342, +0.0000027353,0.0000027438,0.0000027554,0.0000027662,0.0000027763, +0.0000027845,0.0000027934,0.0000028040,0.0000028121,0.0000028147, +0.0000028105,0.0000028058,0.0000028040,0.0000028060,0.0000028113, +0.0000028186,0.0000028267,0.0000028354,0.0000028432,0.0000028469, +0.0000028455,0.0000028414,0.0000028367,0.0000028329,0.0000028307, +0.0000028277,0.0000028230,0.0000028184,0.0000028155,0.0000028134, +0.0000028101,0.0000028064,0.0000028041,0.0000028067,0.0000028134, +0.0000028206,0.0000028199,0.0000028124,0.0000027961,0.0000027820, +0.0000027755,0.0000027736,0.0000027748,0.0000027870,0.0000028085, +0.0000028337,0.0000028534,0.0000028617,0.0000028635,0.0000028659, +0.0000028683,0.0000028688,0.0000028688,0.0000028721,0.0000028778, +0.0000028817,0.0000028807,0.0000028743,0.0000028631,0.0000028510, +0.0000028390,0.0000028304,0.0000028233,0.0000028216,0.0000028213, +0.0000028181,0.0000028131,0.0000028087,0.0000028032,0.0000028004, +0.0000028107,0.0000028102,0.0000028134,0.0000028412,0.0000028630, +0.0000028692,0.0000028696,0.0000028645,0.0000028705,0.0000028831, +0.0000028862,0.0000028819,0.0000028688,0.0000028530,0.0000028361, +0.0000028211,0.0000028120,0.0000028024,0.0000027943,0.0000027909, +0.0000027879,0.0000027841,0.0000027849,0.0000027979,0.0000028165, +0.0000028345,0.0000028455,0.0000028472,0.0000028507,0.0000028587, +0.0000028622,0.0000028619,0.0000028648,0.0000028703,0.0000028760, +0.0000028817,0.0000028861,0.0000028876,0.0000028908,0.0000028989, +0.0000029061,0.0000029097,0.0000029129,0.0000029133,0.0000029073, +0.0000028958,0.0000028823,0.0000028662,0.0000028531,0.0000028453, +0.0000028435,0.0000028425,0.0000028410,0.0000028403,0.0000028400, +0.0000028411,0.0000028458,0.0000028525,0.0000028633,0.0000028755, +0.0000028797,0.0000028623,0.0000028430,0.0000028416,0.0000028354, +0.0000028106,0.0000028066,0.0000028068,0.0000027950,0.0000027800, +0.0000027703,0.0000027643,0.0000027599,0.0000027579,0.0000027590, +0.0000027634,0.0000027654,0.0000027637,0.0000027604,0.0000027576, +0.0000027566,0.0000027553,0.0000027517,0.0000027443,0.0000027319, +0.0000027218,0.0000027217,0.0000027291,0.0000027331,0.0000027314, +0.0000027284,0.0000027286,0.0000027308,0.0000027329,0.0000027331, +0.0000027336,0.0000027342,0.0000027325,0.0000027263,0.0000027194, +0.0000027179,0.0000027228,0.0000027335,0.0000027430,0.0000027456, +0.0000027423,0.0000027326,0.0000027211,0.0000027129,0.0000027103, +0.0000027102,0.0000027103,0.0000027095,0.0000027073,0.0000027052, +0.0000027047,0.0000027058,0.0000027071,0.0000027077,0.0000027075, +0.0000027061,0.0000027036,0.0000026998,0.0000026943,0.0000026887, +0.0000026847,0.0000026827,0.0000026829,0.0000026839,0.0000026842, +0.0000026832,0.0000026812,0.0000026789,0.0000026766,0.0000026737, +0.0000026695,0.0000026640,0.0000026599,0.0000026584,0.0000026583, +0.0000026584,0.0000026580,0.0000026564,0.0000026536,0.0000026504, +0.0000026466,0.0000026427,0.0000026404,0.0000026411,0.0000026432, +0.0000026453,0.0000026477,0.0000026511,0.0000026580,0.0000026680, +0.0000026781,0.0000026888,0.0000026996,0.0000027082,0.0000027148, +0.0000027210,0.0000027272,0.0000027335,0.0000027396,0.0000027457, +0.0000027511,0.0000027549,0.0000027567,0.0000027567,0.0000027565, +0.0000027565,0.0000027568,0.0000027590,0.0000027647,0.0000027716, +0.0000027773,0.0000027837,0.0000027947,0.0000028110,0.0000028280, +0.0000028388,0.0000028424,0.0000028433,0.0000028458,0.0000028546, +0.0000028705,0.0000028887,0.0000029042,0.0000029140,0.0000029186, +0.0000029192,0.0000029180,0.0000029164,0.0000029149,0.0000029118, +0.0000029068,0.0000029023,0.0000028980,0.0000028925,0.0000028870, +0.0000028841,0.0000028837,0.0000028833,0.0000028806,0.0000028790, +0.0000028803,0.0000028804,0.0000028783,0.0000028758,0.0000028747, +0.0000028711,0.0000028640,0.0000028531,0.0000028385,0.0000028269, +0.0000028246,0.0000028313,0.0000028448,0.0000028532,0.0000028524, +0.0000028455,0.0000028361,0.0000028278,0.0000028248,0.0000028266, +0.0000028313,0.0000028356,0.0000028378,0.0000028388,0.0000028392, +0.0000028389,0.0000028371,0.0000028322,0.0000028252,0.0000028197, +0.0000028174,0.0000028180,0.0000028188,0.0000028194,0.0000028214, +0.0000028271,0.0000028340,0.0000028371,0.0000028335,0.0000028253, +0.0000028173,0.0000028120,0.0000028086,0.0000028083,0.0000028131, +0.0000028184,0.0000028217,0.0000028218,0.0000028196,0.0000028164, +0.0000028124,0.0000028097,0.0000028088,0.0000028087,0.0000028094, +0.0000028100,0.0000028094,0.0000028069,0.0000028033,0.0000027987, +0.0000027924,0.0000027849,0.0000027779,0.0000027722,0.0000027673, +0.0000027626,0.0000027588,0.0000027570,0.0000027578,0.0000027624, +0.0000027690,0.0000027755,0.0000027813,0.0000027862,0.0000027878, +0.0000027780,0.0000027637,0.0000027615,0.0000027679,0.0000027714, +0.0000027728,0.0000027804,0.0000027922,0.0000027982,0.0000027950, +0.0000027868,0.0000027798,0.0000027750,0.0000027721,0.0000027684, +0.0000027640,0.0000027609,0.0000027604,0.0000027631,0.0000027653, +0.0000027595,0.0000027488,0.0000027455,0.0000027524,0.0000027615, +0.0000027642,0.0000027605,0.0000027535,0.0000027389,0.0000027217, +0.0000027177,0.0000027225,0.0000027266,0.0000027277,0.0000027226, +0.0000027121,0.0000027090,0.0000027131,0.0000027087,0.0000026991, +0.0000026992,0.0000027024,0.0000027046,0.0000027078,0.0000027062, +0.0000027023,0.0000027020,0.0000027038,0.0000027094,0.0000027205, +0.0000027309,0.0000027359,0.0000027360,0.0000027321,0.0000027240, +0.0000027161,0.0000027151,0.0000027225,0.0000027299,0.0000027336, +0.0000027337,0.0000027312,0.0000027251,0.0000027198,0.0000027160, +0.0000027137,0.0000027087,0.0000027006,0.0000026919,0.0000026852, +0.0000026778,0.0000026700,0.0000026649,0.0000026618,0.0000026595, +0.0000026591,0.0000026603,0.0000026611,0.0000026608,0.0000026582, +0.0000026499,0.0000026332,0.0000026102,0.0000025948,0.0000025926, +0.0000026080,0.0000026469,0.0000026813,0.0000026861,0.0000026769, +0.0000026763,0.0000026799,0.0000026776,0.0000026769,0.0000026862, +0.0000026769,0.0000026494,0.0000026201,0.0000026081,0.0000026218, +0.0000026372,0.0000026380,0.0000026402,0.0000026573,0.0000026863, +0.0000027140,0.0000027262,0.0000027301,0.0000027348,0.0000027372, +0.0000027402,0.0000027485,0.0000027619,0.0000027767,0.0000027878, +0.0000027959,0.0000028043,0.0000028136,0.0000028186,0.0000028199, +0.0000028205,0.0000028238,0.0000028273,0.0000028268,0.0000028214, +0.0000028139,0.0000028039,0.0000027941,0.0000027906,0.0000027833, +0.0000027708,0.0000027659,0.0000027664,0.0000027621,0.0000027569, +0.0000027545,0.0000027523,0.0000027478,0.0000027416,0.0000027464, +0.0000027543,0.0000027698,0.0000027861,0.0000027982,0.0000027984, +0.0000027931,0.0000027814,0.0000027798,0.0000027872,0.0000027889, +0.0000027703,0.0000027633,0.0000027571,0.0000027542,0.0000027554, +0.0000027531,0.0000027501,0.0000027481,0.0000027391,0.0000027239, +0.0000027108,0.0000027134,0.0000027091,0.0000027001,0.0000026929, +0.0000026774,0.0000026597,0.0000026481,0.0000026417,0.0000026379, +0.0000026345,0.0000026309,0.0000026278,0.0000026260,0.0000026237, +0.0000026184,0.0000026106,0.0000025996,0.0000025866,0.0000025778, +0.0000025746,0.0000025727,0.0000025688,0.0000025649,0.0000025635, +0.0000025657,0.0000025746,0.0000025852,0.0000025924,0.0000025943, +0.0000025919,0.0000025863,0.0000025806,0.0000025795,0.0000025839, +0.0000025899,0.0000025946,0.0000025964,0.0000025962,0.0000025944, +0.0000025923,0.0000025888,0.0000025835,0.0000025782,0.0000025745, +0.0000025730,0.0000025727,0.0000025721,0.0000025711,0.0000025680, +0.0000025639,0.0000025602,0.0000025570,0.0000025559,0.0000025556, +0.0000025535,0.0000025487,0.0000025426,0.0000025342,0.0000025235, +0.0000025124,0.0000025030,0.0000024994,0.0000025019,0.0000025035, +0.0000025048,0.0000025044,0.0000025059,0.0000025088,0.0000025098, +0.0000025062,0.0000025026,0.0000025013,0.0000025101,0.0000025187, +0.0000025200,0.0000025160,0.0000025150,0.0000025183,0.0000025161, +0.0000025084,0.0000025045,0.0000025099,0.0000025166,0.0000025187, +0.0000025262,0.0000025417,0.0000025493,0.0000025475,0.0000025441, +0.0000025562,0.0000025884,0.0000026034,0.0000026059,0.0000026070, +0.0000026062,0.0000026035,0.0000026006,0.0000026001,0.0000026023, +0.0000026072,0.0000026151,0.0000026224,0.0000026251,0.0000026286, +0.0000026343,0.0000026417,0.0000026512,0.0000026616,0.0000026655, +0.0000026635,0.0000026627,0.0000026646,0.0000026691,0.0000026737, +0.0000026782,0.0000026824,0.0000026877,0.0000026931,0.0000026966, +0.0000026970,0.0000026969,0.0000027025,0.0000027106,0.0000027173, +0.0000027218,0.0000027206,0.0000027138,0.0000027099,0.0000027117, +0.0000027243,0.0000027507,0.0000027665,0.0000027982,0.0000028368, +0.0000028374,0.0000028267,0.0000028151,0.0000028205,0.0000028313, +0.0000028314,0.0000028391,0.0000028445,0.0000028388,0.0000028259, +0.0000028230,0.0000028243,0.0000028211,0.0000028082,0.0000028006, +0.0000028104,0.0000028208,0.0000028219,0.0000028228,0.0000028271, +0.0000028296,0.0000028291,0.0000028272,0.0000028242,0.0000028210, +0.0000028165,0.0000028136,0.0000028145,0.0000028191,0.0000028254, +0.0000028342,0.0000028430,0.0000028525,0.0000028598,0.0000028661, +0.0000028721,0.0000028801,0.0000028894,0.0000028971,0.0000029027, +0.0000029081,0.0000029136,0.0000029187,0.0000029225,0.0000029243, +0.0000029235,0.0000029241,0.0000029228,0.0000029196,0.0000029158, +0.0000029101,0.0000029040,0.0000028976,0.0000028922,0.0000028875, +0.0000028839,0.0000028829,0.0000028846,0.0000028872,0.0000028901, +0.0000028940,0.0000028991,0.0000029043,0.0000029062,0.0000029063, +0.0000029085,0.0000029108,0.0000029065,0.0000028924,0.0000028792, +0.0000028741,0.0000028722,0.0000028720,0.0000028699,0.0000028693, +0.0000028766,0.0000028894,0.0000029092,0.0000029255,0.0000029342, +0.0000029331,0.0000029248,0.0000029174,0.0000029152,0.0000029160, +0.0000029175,0.0000029178,0.0000029156,0.0000029119,0.0000029068, +0.0000029044,0.0000029044,0.0000029053,0.0000029069,0.0000029093, +0.0000029113,0.0000029135,0.0000029144,0.0000029156,0.0000029163, +0.0000029150,0.0000029139,0.0000029131,0.0000029118,0.0000029101, +0.0000029077,0.0000029039,0.0000028990,0.0000028937,0.0000028878, +0.0000028827,0.0000028771,0.0000028706,0.0000028634,0.0000028550, +0.0000028469,0.0000028395,0.0000028331,0.0000028270,0.0000028208, +0.0000028152,0.0000028127,0.0000028141,0.0000028189,0.0000028236, +0.0000028262,0.0000028258,0.0000028236,0.0000028208,0.0000028184, +0.0000028166,0.0000028159,0.0000028173,0.0000028205,0.0000028251, +0.0000028304,0.0000028346,0.0000028375,0.0000028387,0.0000028378, +0.0000028339,0.0000028272,0.0000028200,0.0000028171,0.0000028183, +0.0000028212,0.0000028231,0.0000028228,0.0000028201,0.0000028170, +0.0000028149,0.0000028154,0.0000028192,0.0000028249,0.0000028304, +0.0000028352,0.0000028375,0.0000028364,0.0000028329,0.0000028292, +0.0000028304,0.0000028329,0.0000028335,0.0000028313,0.0000028252, +0.0000028181,0.0000028138,0.0000028132,0.0000028151,0.0000028193, +0.0000028219,0.0000028212,0.0000028205,0.0000028213,0.0000028214, +0.0000028203,0.0000028182,0.0000028140,0.0000028086,0.0000028053, +0.0000028054,0.0000028060,0.0000028031,0.0000027975,0.0000027920, +0.0000027915,0.0000027998,0.0000028076,0.0000028107,0.0000028097, +0.0000027928,0.0000027669,0.0000027443,0.0000027308,0.0000027308, +0.0000027375,0.0000027473,0.0000027563,0.0000027637,0.0000027719, +0.0000027828,0.0000027935,0.0000028000,0.0000028018,0.0000028022, +0.0000028024,0.0000028029,0.0000028053,0.0000028101,0.0000028169, +0.0000028257,0.0000028346,0.0000028389,0.0000028381,0.0000028339, +0.0000028282,0.0000028228,0.0000028197,0.0000028191,0.0000028184, +0.0000028167,0.0000028151,0.0000028135,0.0000028108,0.0000028057, +0.0000028008,0.0000027995,0.0000028040,0.0000028125,0.0000028192, +0.0000028218,0.0000028123,0.0000027976,0.0000027844,0.0000027755, +0.0000027753,0.0000027808,0.0000027932,0.0000028108,0.0000028322, +0.0000028505,0.0000028613,0.0000028664,0.0000028687,0.0000028684, +0.0000028659,0.0000028676,0.0000028726,0.0000028758,0.0000028744, +0.0000028684,0.0000028588,0.0000028472,0.0000028353,0.0000028262, +0.0000028185,0.0000028153,0.0000028149,0.0000028155,0.0000028142, +0.0000028112,0.0000028063,0.0000028008,0.0000028077,0.0000028112, +0.0000028063,0.0000028324,0.0000028596,0.0000028699,0.0000028700, +0.0000028618,0.0000028600,0.0000028689,0.0000028717,0.0000028665, +0.0000028550,0.0000028439,0.0000028338,0.0000028236,0.0000028174, +0.0000028106,0.0000028015,0.0000027961,0.0000027916,0.0000027849, +0.0000027844,0.0000027936,0.0000028079,0.0000028261,0.0000028431, +0.0000028477,0.0000028503,0.0000028580,0.0000028638,0.0000028646, +0.0000028663,0.0000028699,0.0000028743,0.0000028805,0.0000028870, +0.0000028910,0.0000028918,0.0000028941,0.0000029005,0.0000029062, +0.0000029093,0.0000029112,0.0000029130,0.0000029090,0.0000028994, +0.0000028847,0.0000028677,0.0000028531,0.0000028459,0.0000028439, +0.0000028418,0.0000028398,0.0000028378,0.0000028357,0.0000028382, +0.0000028458,0.0000028602,0.0000028752,0.0000028785,0.0000028579, +0.0000028389,0.0000028389,0.0000028327,0.0000028090,0.0000028066, +0.0000028054,0.0000027930,0.0000027799,0.0000027715,0.0000027654, +0.0000027611,0.0000027575,0.0000027547,0.0000027544,0.0000027572, +0.0000027594,0.0000027580,0.0000027559,0.0000027546,0.0000027533, +0.0000027521,0.0000027510,0.0000027490,0.0000027415,0.0000027299, +0.0000027243,0.0000027268,0.0000027294,0.0000027280,0.0000027240, +0.0000027218,0.0000027235,0.0000027277,0.0000027313,0.0000027326, +0.0000027320,0.0000027292,0.0000027235,0.0000027169,0.0000027128, +0.0000027143,0.0000027216,0.0000027310,0.0000027388,0.0000027422, +0.0000027410,0.0000027352,0.0000027265,0.0000027184,0.0000027136, +0.0000027110,0.0000027084,0.0000027047,0.0000027013,0.0000027005, +0.0000027023,0.0000027051,0.0000027070,0.0000027073,0.0000027058, +0.0000027037,0.0000027013,0.0000026977,0.0000026936,0.0000026895, +0.0000026861,0.0000026846,0.0000026845,0.0000026846,0.0000026845, +0.0000026842,0.0000026840,0.0000026836,0.0000026824,0.0000026797, +0.0000026758,0.0000026716,0.0000026684,0.0000026663,0.0000026647, +0.0000026627,0.0000026599,0.0000026564,0.0000026527,0.0000026473, +0.0000026408,0.0000026359,0.0000026333,0.0000026331,0.0000026351, +0.0000026386,0.0000026435,0.0000026501,0.0000026575,0.0000026665, +0.0000026775,0.0000026887,0.0000026980,0.0000027053,0.0000027115, +0.0000027179,0.0000027243,0.0000027309,0.0000027377,0.0000027440, +0.0000027487,0.0000027505,0.0000027500,0.0000027482,0.0000027469, +0.0000027471,0.0000027507,0.0000027583,0.0000027676,0.0000027757, +0.0000027813,0.0000027873,0.0000027980,0.0000028143,0.0000028311, +0.0000028418,0.0000028454,0.0000028473,0.0000028533,0.0000028665, +0.0000028860,0.0000029044,0.0000029168,0.0000029228,0.0000029243, +0.0000029234,0.0000029213,0.0000029193,0.0000029166,0.0000029130, +0.0000029090,0.0000029036,0.0000028967,0.0000028909,0.0000028871, +0.0000028853,0.0000028838,0.0000028804,0.0000028784,0.0000028790, +0.0000028794,0.0000028782,0.0000028768,0.0000028761,0.0000028726, +0.0000028672,0.0000028621,0.0000028544,0.0000028453,0.0000028399, +0.0000028427,0.0000028517,0.0000028581,0.0000028571,0.0000028511, +0.0000028423,0.0000028331,0.0000028272,0.0000028267,0.0000028299, +0.0000028342,0.0000028364,0.0000028366,0.0000028359,0.0000028349, +0.0000028330,0.0000028285,0.0000028230,0.0000028207,0.0000028208, +0.0000028208,0.0000028203,0.0000028198,0.0000028208,0.0000028246, +0.0000028310,0.0000028355,0.0000028345,0.0000028288,0.0000028196, +0.0000028124,0.0000028084,0.0000028064,0.0000028087,0.0000028166, +0.0000028234,0.0000028271,0.0000028274,0.0000028254,0.0000028200, +0.0000028145,0.0000028109,0.0000028095,0.0000028100,0.0000028106, +0.0000028102,0.0000028078,0.0000028042,0.0000027998,0.0000027934, +0.0000027851,0.0000027765,0.0000027690,0.0000027634,0.0000027588, +0.0000027549,0.0000027528,0.0000027526,0.0000027543,0.0000027588, +0.0000027648,0.0000027727,0.0000027809,0.0000027879,0.0000027913, +0.0000027861,0.0000027700,0.0000027632,0.0000027687,0.0000027719, +0.0000027731,0.0000027801,0.0000027902,0.0000027950,0.0000027923, +0.0000027851,0.0000027786,0.0000027740,0.0000027695,0.0000027657, +0.0000027638,0.0000027642,0.0000027665,0.0000027658,0.0000027542, +0.0000027420,0.0000027419,0.0000027519,0.0000027607,0.0000027638, +0.0000027619,0.0000027565,0.0000027469,0.0000027286,0.0000027171, +0.0000027191,0.0000027243,0.0000027271,0.0000027248,0.0000027152, +0.0000027099,0.0000027132,0.0000027097,0.0000026980,0.0000026962, +0.0000027004,0.0000027029,0.0000027064,0.0000027058,0.0000027008, +0.0000026993,0.0000027010,0.0000027053,0.0000027144,0.0000027256, +0.0000027326,0.0000027342,0.0000027330,0.0000027266,0.0000027161, +0.0000027092,0.0000027118,0.0000027203,0.0000027281,0.0000027315, +0.0000027322,0.0000027299,0.0000027255,0.0000027198,0.0000027158, +0.0000027124,0.0000027075,0.0000026994,0.0000026913,0.0000026846, +0.0000026760,0.0000026670,0.0000026616,0.0000026595,0.0000026577, +0.0000026567,0.0000026573,0.0000026584,0.0000026593,0.0000026588, +0.0000026521,0.0000026363,0.0000026126,0.0000025914,0.0000025868, +0.0000025954,0.0000026260,0.0000026662,0.0000026831,0.0000026754, +0.0000026687,0.0000026726,0.0000026744,0.0000026751,0.0000026846, +0.0000026849,0.0000026576,0.0000026290,0.0000026094,0.0000026102, +0.0000026242,0.0000026334,0.0000026298,0.0000026290,0.0000026377, +0.0000026590,0.0000026826,0.0000027028,0.0000027178,0.0000027263, +0.0000027323,0.0000027393,0.0000027464,0.0000027567,0.0000027713, +0.0000027854,0.0000027966,0.0000028066,0.0000028161,0.0000028198, +0.0000028192,0.0000028218,0.0000028275,0.0000028287,0.0000028265, +0.0000028221,0.0000028131,0.0000028002,0.0000027910,0.0000027826, +0.0000027665,0.0000027542,0.0000027530,0.0000027525,0.0000027495, +0.0000027484,0.0000027465,0.0000027419,0.0000027409,0.0000027492, +0.0000027563,0.0000027738,0.0000027866,0.0000027960,0.0000027961, +0.0000027900,0.0000027808,0.0000027805,0.0000027896,0.0000027884, +0.0000027707,0.0000027645,0.0000027558,0.0000027540,0.0000027566, +0.0000027531,0.0000027498,0.0000027443,0.0000027348,0.0000027207, +0.0000027067,0.0000027111,0.0000027088,0.0000026972,0.0000026893, +0.0000026777,0.0000026604,0.0000026452,0.0000026357,0.0000026314, +0.0000026299,0.0000026302,0.0000026306,0.0000026303,0.0000026287, +0.0000026248,0.0000026196,0.0000026127,0.0000026026,0.0000025898, +0.0000025801,0.0000025756,0.0000025712,0.0000025678,0.0000025676, +0.0000025700,0.0000025778,0.0000025880,0.0000025948,0.0000025961, +0.0000025930,0.0000025862,0.0000025799,0.0000025784,0.0000025842, +0.0000025914,0.0000025964,0.0000025982,0.0000025975,0.0000025945, +0.0000025900,0.0000025840,0.0000025776,0.0000025728,0.0000025699, +0.0000025687,0.0000025686,0.0000025684,0.0000025682,0.0000025668, +0.0000025651,0.0000025637,0.0000025629,0.0000025635,0.0000025652, +0.0000025650,0.0000025621,0.0000025578,0.0000025508,0.0000025404, +0.0000025282,0.0000025165,0.0000025084,0.0000025056,0.0000025041, +0.0000025011,0.0000024963,0.0000024920,0.0000024936,0.0000024988, +0.0000025028,0.0000025032,0.0000024981,0.0000024941,0.0000024953, +0.0000025096,0.0000025209,0.0000025194,0.0000025096,0.0000025095, +0.0000025179,0.0000025191,0.0000025149,0.0000025179,0.0000025229, +0.0000025240,0.0000025272,0.0000025375,0.0000025478,0.0000025489, +0.0000025443,0.0000025497,0.0000025804,0.0000026033,0.0000026080, +0.0000026077,0.0000026055,0.0000026017,0.0000025980,0.0000025968, +0.0000025976,0.0000025994,0.0000026041,0.0000026107,0.0000026156, +0.0000026175,0.0000026190,0.0000026231,0.0000026292,0.0000026391, +0.0000026521,0.0000026608,0.0000026633,0.0000026652,0.0000026686, +0.0000026720,0.0000026748,0.0000026782,0.0000026819,0.0000026856, +0.0000026894,0.0000026911,0.0000026947,0.0000027029,0.0000027113, +0.0000027173,0.0000027212,0.0000027199,0.0000027116,0.0000027093, +0.0000027113,0.0000027253,0.0000027514,0.0000027636,0.0000027936, +0.0000028352,0.0000028362,0.0000028266,0.0000028154,0.0000028167, +0.0000028279,0.0000028320,0.0000028403,0.0000028439,0.0000028356, +0.0000028236,0.0000028200,0.0000028214,0.0000028172,0.0000028031, +0.0000027961,0.0000028039,0.0000028099,0.0000028110,0.0000028156, +0.0000028219,0.0000028228,0.0000028200,0.0000028152,0.0000028104, +0.0000028095,0.0000028098,0.0000028118,0.0000028174,0.0000028263, +0.0000028347,0.0000028426,0.0000028512,0.0000028592,0.0000028671, +0.0000028747,0.0000028821,0.0000028901,0.0000029003,0.0000029104, +0.0000029194,0.0000029253,0.0000029286,0.0000029307,0.0000029295, +0.0000029253,0.0000029180,0.0000029109,0.0000029050,0.0000028989, +0.0000028943,0.0000028912,0.0000028905,0.0000028914,0.0000028914, +0.0000028889,0.0000028857,0.0000028846,0.0000028861,0.0000028900, +0.0000028978,0.0000029089,0.0000029189,0.0000029224,0.0000029206, +0.0000029187,0.0000029211,0.0000029223,0.0000029143,0.0000028929, +0.0000028744,0.0000028675,0.0000028654,0.0000028673,0.0000028677, +0.0000028686,0.0000028781,0.0000028939,0.0000029153,0.0000029296, +0.0000029348,0.0000029320,0.0000029214,0.0000029147,0.0000029138, +0.0000029159,0.0000029166,0.0000029155,0.0000029122,0.0000029085, +0.0000029037,0.0000029011,0.0000029018,0.0000029017,0.0000029006, +0.0000028991,0.0000028987,0.0000028985,0.0000028991,0.0000028997, +0.0000029003,0.0000028992,0.0000028977,0.0000028973,0.0000028961, +0.0000028941,0.0000028914,0.0000028874,0.0000028825,0.0000028774, +0.0000028716,0.0000028666,0.0000028621,0.0000028572,0.0000028518, +0.0000028463,0.0000028411,0.0000028370,0.0000028326,0.0000028278, +0.0000028217,0.0000028141,0.0000028081,0.0000028074,0.0000028113, +0.0000028170,0.0000028213,0.0000028231,0.0000028229,0.0000028212, +0.0000028182,0.0000028160,0.0000028157,0.0000028167,0.0000028183, +0.0000028203,0.0000028234,0.0000028271,0.0000028312,0.0000028347, +0.0000028354,0.0000028339,0.0000028294,0.0000028223,0.0000028160, +0.0000028144,0.0000028164,0.0000028205,0.0000028234,0.0000028232, +0.0000028199,0.0000028158,0.0000028136,0.0000028157,0.0000028224, +0.0000028314,0.0000028390,0.0000028433,0.0000028425,0.0000028374, +0.0000028295,0.0000028256,0.0000028273,0.0000028292,0.0000028291, +0.0000028260,0.0000028208,0.0000028162,0.0000028146,0.0000028144, +0.0000028168,0.0000028212,0.0000028235,0.0000028221,0.0000028210, +0.0000028210,0.0000028203,0.0000028187,0.0000028165,0.0000028125, +0.0000028070,0.0000028039,0.0000028067,0.0000028098,0.0000028083, +0.0000028020,0.0000027930,0.0000027875,0.0000027909,0.0000028011, +0.0000028115,0.0000028146,0.0000028107,0.0000027949,0.0000027695, +0.0000027441,0.0000027292,0.0000027240,0.0000027291,0.0000027379, +0.0000027466,0.0000027547,0.0000027642,0.0000027737,0.0000027809, +0.0000027872,0.0000027935,0.0000027978,0.0000027996,0.0000028008, +0.0000028028,0.0000028072,0.0000028150,0.0000028238,0.0000028281, +0.0000028279,0.0000028238,0.0000028177,0.0000028117,0.0000028077, +0.0000028077,0.0000028107,0.0000028132,0.0000028136,0.0000028129, +0.0000028113,0.0000028063,0.0000027993,0.0000027935,0.0000027934, +0.0000028000,0.0000028103,0.0000028179,0.0000028164,0.0000028116, +0.0000027991,0.0000027846,0.0000027783,0.0000027818,0.0000027876, +0.0000027953,0.0000028084,0.0000028270,0.0000028457,0.0000028596, +0.0000028667,0.0000028668,0.0000028640,0.0000028652,0.0000028700, +0.0000028725,0.0000028707,0.0000028650,0.0000028569,0.0000028467, +0.0000028367,0.0000028271,0.0000028185,0.0000028134,0.0000028102, +0.0000028122,0.0000028154,0.0000028141,0.0000028099,0.0000028026, +0.0000028068,0.0000028130,0.0000028042,0.0000028232,0.0000028550, +0.0000028702,0.0000028712,0.0000028620,0.0000028533,0.0000028565, +0.0000028592,0.0000028547,0.0000028475,0.0000028426,0.0000028397, +0.0000028342,0.0000028281,0.0000028202,0.0000028092,0.0000028013, +0.0000027964,0.0000027889,0.0000027861,0.0000027922,0.0000028020, +0.0000028176,0.0000028371,0.0000028464,0.0000028495,0.0000028568, +0.0000028639,0.0000028655,0.0000028670,0.0000028687,0.0000028713, +0.0000028765,0.0000028840,0.0000028907,0.0000028943,0.0000028947, +0.0000028953,0.0000028987,0.0000029041,0.0000029082,0.0000029107, +0.0000029131,0.0000029123,0.0000029033,0.0000028875,0.0000028696, +0.0000028552,0.0000028473,0.0000028433,0.0000028410,0.0000028381, +0.0000028345,0.0000028344,0.0000028414,0.0000028581,0.0000028753, +0.0000028773,0.0000028528,0.0000028354,0.0000028370,0.0000028305, +0.0000028078,0.0000028064,0.0000028035,0.0000027907,0.0000027793, +0.0000027721,0.0000027663,0.0000027620,0.0000027581,0.0000027539, +0.0000027505,0.0000027507,0.0000027544,0.0000027558,0.0000027533, +0.0000027514,0.0000027510,0.0000027508,0.0000027509,0.0000027508, +0.0000027513,0.0000027493,0.0000027408,0.0000027300,0.0000027259, +0.0000027266,0.0000027258,0.0000027224,0.0000027189,0.0000027188, +0.0000027219,0.0000027277,0.0000027316,0.0000027320,0.0000027294, +0.0000027246,0.0000027185,0.0000027129,0.0000027105,0.0000027119, +0.0000027171,0.0000027244,0.0000027317,0.0000027375,0.0000027411, +0.0000027410,0.0000027363,0.0000027290,0.0000027220,0.0000027153, +0.0000027085,0.0000027028,0.0000027003,0.0000027004,0.0000027027, +0.0000027063,0.0000027088,0.0000027092,0.0000027079,0.0000027056, +0.0000027031,0.0000027009,0.0000026984,0.0000026950,0.0000026914, +0.0000026879,0.0000026852,0.0000026844,0.0000026848,0.0000026855, +0.0000026855,0.0000026847,0.0000026839,0.0000026829,0.0000026812, +0.0000026788,0.0000026759,0.0000026716,0.0000026664,0.0000026614, +0.0000026574,0.0000026543,0.0000026498,0.0000026441,0.0000026383, +0.0000026331,0.0000026307,0.0000026308,0.0000026343,0.0000026405, +0.0000026457,0.0000026504,0.0000026555,0.0000026641,0.0000026757, +0.0000026852,0.0000026913,0.0000026975,0.0000027048,0.0000027117, +0.0000027192,0.0000027271,0.0000027350,0.0000027412,0.0000027431, +0.0000027420,0.0000027401,0.0000027398,0.0000027426,0.0000027484, +0.0000027560,0.0000027645,0.0000027739,0.0000027818,0.0000027872, +0.0000027928,0.0000028041,0.0000028231,0.0000028409,0.0000028503, +0.0000028535,0.0000028575,0.0000028686,0.0000028870,0.0000029063, +0.0000029193,0.0000029260,0.0000029274,0.0000029256,0.0000029223, +0.0000029197,0.0000029172,0.0000029141,0.0000029103,0.0000029047, +0.0000028976,0.0000028912,0.0000028863,0.0000028842,0.0000028832, +0.0000028808,0.0000028788,0.0000028784,0.0000028778,0.0000028769, +0.0000028767,0.0000028765,0.0000028728,0.0000028665,0.0000028621, +0.0000028597,0.0000028564,0.0000028524,0.0000028528,0.0000028567, +0.0000028597,0.0000028576,0.0000028517,0.0000028437,0.0000028353, +0.0000028289,0.0000028269,0.0000028290,0.0000028335,0.0000028360, +0.0000028360,0.0000028344,0.0000028325,0.0000028308,0.0000028281, +0.0000028253,0.0000028261,0.0000028275,0.0000028268,0.0000028244, +0.0000028225,0.0000028221,0.0000028253,0.0000028317,0.0000028363, +0.0000028360,0.0000028324,0.0000028239,0.0000028151,0.0000028095, +0.0000028056,0.0000028057,0.0000028123,0.0000028215,0.0000028274, +0.0000028290,0.0000028283,0.0000028255,0.0000028209,0.0000028160, +0.0000028128,0.0000028117,0.0000028110,0.0000028110,0.0000028105, +0.0000028093,0.0000028070,0.0000028026,0.0000027955,0.0000027872, +0.0000027799,0.0000027744,0.0000027703,0.0000027671,0.0000027650, +0.0000027644,0.0000027643,0.0000027640,0.0000027642,0.0000027663, +0.0000027714,0.0000027787,0.0000027875,0.0000027939,0.0000027903, +0.0000027741,0.0000027662,0.0000027699,0.0000027723,0.0000027729, +0.0000027786,0.0000027863,0.0000027894,0.0000027872,0.0000027819, +0.0000027761,0.0000027712,0.0000027683,0.0000027668,0.0000027670, +0.0000027680,0.0000027628,0.0000027476,0.0000027388,0.0000027451, +0.0000027554,0.0000027594,0.0000027592,0.0000027582,0.0000027556, +0.0000027511,0.0000027368,0.0000027200,0.0000027170,0.0000027216, +0.0000027260,0.0000027260,0.0000027180,0.0000027118,0.0000027144, +0.0000027116,0.0000026984,0.0000026941,0.0000026985,0.0000027014, +0.0000027053,0.0000027070,0.0000027021,0.0000026970,0.0000026976, +0.0000027013,0.0000027081,0.0000027191,0.0000027291,0.0000027329, +0.0000027331,0.0000027303,0.0000027209,0.0000027098,0.0000027048, +0.0000027092,0.0000027178,0.0000027247,0.0000027276,0.0000027288, +0.0000027281,0.0000027251,0.0000027201,0.0000027158,0.0000027115, +0.0000027070,0.0000026989,0.0000026912,0.0000026843,0.0000026748, +0.0000026647,0.0000026593,0.0000026577,0.0000026559,0.0000026544, +0.0000026544,0.0000026560,0.0000026581,0.0000026586,0.0000026535, +0.0000026397,0.0000026168,0.0000025919,0.0000025821,0.0000025858, +0.0000026049,0.0000026439,0.0000026753,0.0000026760,0.0000026646, +0.0000026649,0.0000026700,0.0000026731,0.0000026811,0.0000026867, +0.0000026673,0.0000026391,0.0000026164,0.0000026044,0.0000026083, +0.0000026216,0.0000026247,0.0000026198,0.0000026158,0.0000026168, +0.0000026264,0.0000026447,0.0000026631,0.0000026797,0.0000026966, +0.0000027111,0.0000027257,0.0000027384,0.0000027524,0.0000027678, +0.0000027837,0.0000027966,0.0000028080,0.0000028157,0.0000028176, +0.0000028199,0.0000028260,0.0000028291,0.0000028287,0.0000028274, +0.0000028204,0.0000028076,0.0000027934,0.0000027811,0.0000027664, +0.0000027513,0.0000027428,0.0000027400,0.0000027409,0.0000027419, +0.0000027418,0.0000027397,0.0000027437,0.0000027510,0.0000027621, +0.0000027771,0.0000027875,0.0000027934,0.0000027936,0.0000027864, +0.0000027810,0.0000027820,0.0000027918,0.0000027881,0.0000027711, +0.0000027645,0.0000027539,0.0000027540,0.0000027570,0.0000027530, +0.0000027485,0.0000027398,0.0000027308,0.0000027166,0.0000027013, +0.0000027071,0.0000027081,0.0000026962,0.0000026862,0.0000026775, +0.0000026648,0.0000026497,0.0000026372,0.0000026284,0.0000026242, +0.0000026236,0.0000026273,0.0000026313,0.0000026332,0.0000026314, +0.0000026259,0.0000026207,0.0000026152,0.0000026043,0.0000025904, +0.0000025806,0.0000025740,0.0000025691,0.0000025695,0.0000025740, +0.0000025815,0.0000025901,0.0000025956,0.0000025958,0.0000025918, +0.0000025859,0.0000025819,0.0000025810,0.0000025873,0.0000025956, +0.0000025995,0.0000026005,0.0000025983,0.0000025940,0.0000025880, +0.0000025807,0.0000025740,0.0000025693,0.0000025665,0.0000025657, +0.0000025659,0.0000025662,0.0000025666,0.0000025667,0.0000025669, +0.0000025675,0.0000025685,0.0000025702,0.0000025725,0.0000025728, +0.0000025699,0.0000025657,0.0000025588,0.0000025496,0.0000025392, +0.0000025280,0.0000025190,0.0000025154,0.0000025145,0.0000025106, +0.0000025034,0.0000024948,0.0000024889,0.0000024875,0.0000024867, +0.0000024904,0.0000024951,0.0000024961,0.0000024932,0.0000024924, +0.0000024988,0.0000025149,0.0000025214,0.0000025115,0.0000025042, +0.0000025149,0.0000025272,0.0000025282,0.0000025269,0.0000025286, +0.0000025298,0.0000025291,0.0000025330,0.0000025434,0.0000025490, +0.0000025471,0.0000025501,0.0000025779,0.0000026082,0.0000026151, +0.0000026122,0.0000026056,0.0000025989,0.0000025945,0.0000025917, +0.0000025913,0.0000025927,0.0000025957,0.0000026003,0.0000026059, +0.0000026095,0.0000026107,0.0000026116,0.0000026140,0.0000026197, +0.0000026313,0.0000026475,0.0000026604,0.0000026665,0.0000026685, +0.0000026696,0.0000026711,0.0000026744,0.0000026771,0.0000026805, +0.0000026832,0.0000026868,0.0000026924,0.0000027018,0.0000027118, +0.0000027171,0.0000027202,0.0000027177,0.0000027102,0.0000027086, +0.0000027103,0.0000027264,0.0000027511,0.0000027599,0.0000027893, +0.0000028332,0.0000028347,0.0000028261,0.0000028159,0.0000028135, +0.0000028221,0.0000028314,0.0000028429,0.0000028436,0.0000028321, +0.0000028207,0.0000028171,0.0000028174,0.0000028129,0.0000027985, +0.0000027930,0.0000027985,0.0000028003,0.0000028005,0.0000028055, +0.0000028108,0.0000028108,0.0000028083,0.0000028057,0.0000028065, +0.0000028094,0.0000028127,0.0000028182,0.0000028271,0.0000028366, +0.0000028450,0.0000028538,0.0000028633,0.0000028715,0.0000028799, +0.0000028873,0.0000028962,0.0000029050,0.0000029145,0.0000029215, +0.0000029266,0.0000029271,0.0000029258,0.0000029212,0.0000029130, +0.0000029042,0.0000028944,0.0000028863,0.0000028820,0.0000028803, +0.0000028817,0.0000028843,0.0000028877,0.0000028893,0.0000028890, +0.0000028865,0.0000028845,0.0000028856,0.0000028925,0.0000029025, +0.0000029142,0.0000029246,0.0000029292,0.0000029278,0.0000029248, +0.0000029243,0.0000029271,0.0000029273,0.0000029164,0.0000028920, +0.0000028703,0.0000028622,0.0000028613,0.0000028658,0.0000028667, +0.0000028680,0.0000028790,0.0000028974,0.0000029189,0.0000029312, +0.0000029343,0.0000029307,0.0000029193,0.0000029130,0.0000029124, +0.0000029138,0.0000029148,0.0000029126,0.0000029093,0.0000029040, +0.0000028992,0.0000028967,0.0000028973,0.0000028978,0.0000028962, +0.0000028938,0.0000028916,0.0000028889,0.0000028876,0.0000028866, +0.0000028860,0.0000028847,0.0000028824,0.0000028805,0.0000028786, +0.0000028768,0.0000028750,0.0000028732,0.0000028710,0.0000028687, +0.0000028654,0.0000028612,0.0000028572,0.0000028542,0.0000028499, +0.0000028454,0.0000028414,0.0000028377,0.0000028343,0.0000028308, +0.0000028256,0.0000028177,0.0000028095,0.0000028054,0.0000028063, +0.0000028104,0.0000028157,0.0000028189,0.0000028199,0.0000028200, +0.0000028192,0.0000028184,0.0000028181,0.0000028183,0.0000028184, +0.0000028187,0.0000028199,0.0000028223,0.0000028253,0.0000028285, +0.0000028309,0.0000028313,0.0000028297,0.0000028259,0.0000028200, +0.0000028144,0.0000028126,0.0000028148,0.0000028194,0.0000028221, +0.0000028209,0.0000028164,0.0000028120,0.0000028115,0.0000028165, +0.0000028266,0.0000028369,0.0000028446,0.0000028462,0.0000028425, +0.0000028338,0.0000028239,0.0000028205,0.0000028210,0.0000028220, +0.0000028216,0.0000028188,0.0000028162,0.0000028151,0.0000028144, +0.0000028145,0.0000028173,0.0000028220,0.0000028247,0.0000028239, +0.0000028222,0.0000028206,0.0000028183,0.0000028155,0.0000028132, +0.0000028101,0.0000028059,0.0000028045,0.0000028081,0.0000028103, +0.0000028092,0.0000028044,0.0000027954,0.0000027864,0.0000027855, +0.0000027944,0.0000028070,0.0000028155,0.0000028184,0.0000028144, +0.0000027982,0.0000027722,0.0000027478,0.0000027285,0.0000027229, +0.0000027235,0.0000027293,0.0000027375,0.0000027475,0.0000027561, +0.0000027626,0.0000027704,0.0000027797,0.0000027882,0.0000027941, +0.0000027971,0.0000027983,0.0000028002,0.0000028054,0.0000028127, +0.0000028172,0.0000028170,0.0000028122,0.0000028058,0.0000028003, +0.0000027962,0.0000027961,0.0000028005,0.0000028067,0.0000028106, +0.0000028112,0.0000028104,0.0000028061,0.0000027984,0.0000027898, +0.0000027848,0.0000027879,0.0000027969,0.0000028054,0.0000028111, +0.0000028138,0.0000028083,0.0000027979,0.0000027886,0.0000027862, +0.0000027881,0.0000027894,0.0000027935,0.0000028027,0.0000028186, +0.0000028382,0.0000028540,0.0000028610,0.0000028621,0.0000028645, +0.0000028693,0.0000028716,0.0000028698,0.0000028638,0.0000028573, +0.0000028495,0.0000028416,0.0000028305,0.0000028200,0.0000028129, +0.0000028090,0.0000028104,0.0000028164,0.0000028172,0.0000028137, +0.0000028060,0.0000028075,0.0000028153,0.0000028048,0.0000028149, +0.0000028501,0.0000028693,0.0000028725,0.0000028639,0.0000028517, +0.0000028494,0.0000028516,0.0000028492,0.0000028459,0.0000028457, +0.0000028469,0.0000028421,0.0000028322,0.0000028220,0.0000028101, +0.0000028019,0.0000027985,0.0000027936,0.0000027892,0.0000027925, +0.0000027994,0.0000028116,0.0000028297,0.0000028420,0.0000028472, +0.0000028545,0.0000028633,0.0000028661,0.0000028676,0.0000028675, +0.0000028678,0.0000028708,0.0000028775,0.0000028855,0.0000028928, +0.0000028958,0.0000028953,0.0000028936,0.0000028955,0.0000029024, +0.0000029078,0.0000029107,0.0000029147,0.0000029147,0.0000029055, +0.0000028898,0.0000028728,0.0000028581,0.0000028472,0.0000028419, +0.0000028389,0.0000028347,0.0000028334,0.0000028392,0.0000028574, +0.0000028758,0.0000028749,0.0000028471,0.0000028328,0.0000028361, +0.0000028286,0.0000028068,0.0000028052,0.0000028008,0.0000027884, +0.0000027785,0.0000027719,0.0000027658,0.0000027610,0.0000027574, +0.0000027538,0.0000027497,0.0000027478,0.0000027491,0.0000027530, +0.0000027528,0.0000027492,0.0000027461,0.0000027458,0.0000027480, +0.0000027497,0.0000027496,0.0000027498,0.0000027502,0.0000027486, +0.0000027419,0.0000027320,0.0000027270,0.0000027249,0.0000027233, +0.0000027207,0.0000027193,0.0000027198,0.0000027228,0.0000027277, +0.0000027313,0.0000027319,0.0000027306,0.0000027269,0.0000027212, +0.0000027151,0.0000027109,0.0000027100,0.0000027122,0.0000027178, +0.0000027251,0.0000027333,0.0000027401,0.0000027436,0.0000027436, +0.0000027404,0.0000027342,0.0000027260,0.0000027175,0.0000027100, +0.0000027053,0.0000027050,0.0000027080,0.0000027116,0.0000027139, +0.0000027142,0.0000027130,0.0000027103,0.0000027069,0.0000027030, +0.0000026993,0.0000026962,0.0000026931,0.0000026903,0.0000026891, +0.0000026887,0.0000026878,0.0000026862,0.0000026850,0.0000026847, +0.0000026847,0.0000026844,0.0000026837,0.0000026821,0.0000026781, +0.0000026721,0.0000026650,0.0000026588,0.0000026543,0.0000026509, +0.0000026475,0.0000026434,0.0000026389,0.0000026351,0.0000026340, +0.0000026363,0.0000026405,0.0000026450,0.0000026472,0.0000026480, +0.0000026528,0.0000026622,0.0000026700,0.0000026746,0.0000026808, +0.0000026892,0.0000026970,0.0000027046,0.0000027133,0.0000027224, +0.0000027289,0.0000027314,0.0000027324,0.0000027340,0.0000027366, +0.0000027417,0.0000027488,0.0000027554,0.0000027616,0.0000027698, +0.0000027792,0.0000027869,0.0000027916,0.0000027994,0.0000028166, +0.0000028381,0.0000028527,0.0000028602,0.0000028638,0.0000028708, +0.0000028849,0.0000029027,0.0000029177,0.0000029251,0.0000029262, +0.0000029234,0.0000029190,0.0000029156,0.0000029137,0.0000029122, +0.0000029094,0.0000029040,0.0000028972,0.0000028907,0.0000028853, +0.0000028833,0.0000028823,0.0000028808,0.0000028790,0.0000028783, +0.0000028771,0.0000028758,0.0000028759,0.0000028758,0.0000028723, +0.0000028656,0.0000028605,0.0000028596,0.0000028592,0.0000028577, +0.0000028568,0.0000028573,0.0000028576,0.0000028544,0.0000028489, +0.0000028421,0.0000028353,0.0000028297,0.0000028275,0.0000028295, +0.0000028342,0.0000028368,0.0000028373,0.0000028357,0.0000028329, +0.0000028317,0.0000028304,0.0000028302,0.0000028326,0.0000028349, +0.0000028342,0.0000028311,0.0000028285,0.0000028276,0.0000028303, +0.0000028362,0.0000028407,0.0000028403,0.0000028366,0.0000028285, +0.0000028183,0.0000028106,0.0000028061,0.0000028040,0.0000028066, +0.0000028143,0.0000028220,0.0000028252,0.0000028242,0.0000028208, +0.0000028173,0.0000028147,0.0000028140,0.0000028149,0.0000028166, +0.0000028189,0.0000028206,0.0000028206,0.0000028183,0.0000028143, +0.0000028084,0.0000028005,0.0000027929,0.0000027873,0.0000027834, +0.0000027798,0.0000027775,0.0000027773,0.0000027781,0.0000027781, +0.0000027764,0.0000027747,0.0000027737,0.0000027742,0.0000027784, +0.0000027866,0.0000027947,0.0000027919,0.0000027756,0.0000027679, +0.0000027709,0.0000027720,0.0000027716,0.0000027756,0.0000027806, +0.0000027823,0.0000027810,0.0000027771,0.0000027732,0.0000027703, +0.0000027682,0.0000027684,0.0000027680,0.0000027580,0.0000027423, +0.0000027393,0.0000027479,0.0000027544,0.0000027513,0.0000027472, +0.0000027469,0.0000027487,0.0000027507,0.0000027429,0.0000027245, +0.0000027164,0.0000027190,0.0000027247,0.0000027266,0.0000027206, +0.0000027143,0.0000027164,0.0000027150,0.0000027016,0.0000026934, +0.0000026965,0.0000027005,0.0000027040,0.0000027083,0.0000027063, +0.0000026987,0.0000026954,0.0000026976,0.0000027025,0.0000027104, +0.0000027220,0.0000027305,0.0000027326,0.0000027322,0.0000027269, +0.0000027161,0.0000027058,0.0000027023,0.0000027062,0.0000027141, +0.0000027197,0.0000027225,0.0000027246,0.0000027259,0.0000027239, +0.0000027206,0.0000027160,0.0000027122,0.0000027072,0.0000026993, +0.0000026918,0.0000026845,0.0000026742,0.0000026636,0.0000026581, +0.0000026567,0.0000026547,0.0000026524,0.0000026517,0.0000026536, +0.0000026565,0.0000026578,0.0000026548,0.0000026428,0.0000026222, +0.0000025969,0.0000025805,0.0000025787,0.0000025877,0.0000026185, +0.0000026589,0.0000026737,0.0000026654,0.0000026592,0.0000026641, +0.0000026702,0.0000026772,0.0000026845,0.0000026776,0.0000026508, +0.0000026252,0.0000026073,0.0000026008,0.0000026060,0.0000026122, +0.0000026139,0.0000026098,0.0000026091,0.0000026100,0.0000026137, +0.0000026179,0.0000026278,0.0000026398,0.0000026543,0.0000026761, +0.0000026994,0.0000027240,0.0000027463,0.0000027641,0.0000027816, +0.0000027965,0.0000028068,0.0000028140,0.0000028173,0.0000028234, +0.0000028286,0.0000028298,0.0000028302,0.0000028260,0.0000028150, +0.0000027978,0.0000027809,0.0000027688,0.0000027560,0.0000027432, +0.0000027372,0.0000027382,0.0000027405,0.0000027423,0.0000027435, +0.0000027481,0.0000027538,0.0000027695,0.0000027790,0.0000027883, +0.0000027911,0.0000027917,0.0000027831,0.0000027817,0.0000027840, +0.0000027941,0.0000027875,0.0000027713,0.0000027631,0.0000027519, +0.0000027540,0.0000027566,0.0000027526,0.0000027463,0.0000027351, +0.0000027270,0.0000027120,0.0000026964,0.0000026995,0.0000027051, +0.0000026983,0.0000026877,0.0000026787,0.0000026693,0.0000026585, +0.0000026471,0.0000026359,0.0000026270,0.0000026224,0.0000026221, +0.0000026258,0.0000026317,0.0000026348,0.0000026325,0.0000026270, +0.0000026222,0.0000026158,0.0000026031,0.0000025889,0.0000025785, +0.0000025707,0.0000025690,0.0000025744,0.0000025826,0.0000025909, +0.0000025958,0.0000025948,0.0000025901,0.0000025863,0.0000025859, +0.0000025870,0.0000025937,0.0000026017,0.0000026040,0.0000026038, +0.0000026004,0.0000025954,0.0000025891,0.0000025823,0.0000025760, +0.0000025710,0.0000025674,0.0000025662,0.0000025668,0.0000025678, +0.0000025680,0.0000025685,0.0000025693,0.0000025707,0.0000025722, +0.0000025739,0.0000025760,0.0000025773,0.0000025756,0.0000025713, +0.0000025639,0.0000025544,0.0000025442,0.0000025335,0.0000025239, +0.0000025194,0.0000025193,0.0000025182,0.0000025128,0.0000025040, +0.0000024963,0.0000024914,0.0000024855,0.0000024801,0.0000024796, +0.0000024855,0.0000024927,0.0000024952,0.0000024945,0.0000024964, +0.0000025047,0.0000025174,0.0000025164,0.0000025062,0.0000025105, +0.0000025309,0.0000025377,0.0000025360,0.0000025358,0.0000025351, +0.0000025318,0.0000025299,0.0000025375,0.0000025484,0.0000025506, +0.0000025538,0.0000025814,0.0000026154,0.0000026225,0.0000026179, +0.0000026083,0.0000025992,0.0000025932,0.0000025886,0.0000025848, +0.0000025840,0.0000025873,0.0000025921,0.0000025978,0.0000026028, +0.0000026057,0.0000026065,0.0000026075,0.0000026106,0.0000026168, +0.0000026293,0.0000026475,0.0000026620,0.0000026672,0.0000026673, +0.0000026680,0.0000026700,0.0000026727,0.0000026760,0.0000026796, +0.0000026845,0.0000026901,0.0000027005,0.0000027113,0.0000027166, +0.0000027184,0.0000027154,0.0000027098,0.0000027069,0.0000027095, +0.0000027274,0.0000027494,0.0000027556,0.0000027857,0.0000028311, +0.0000028327,0.0000028248,0.0000028166,0.0000028115,0.0000028168, +0.0000028297,0.0000028437,0.0000028435,0.0000028280,0.0000028172, +0.0000028142,0.0000028140,0.0000028096,0.0000027950,0.0000027910, +0.0000027941,0.0000027937,0.0000027940,0.0000027995,0.0000028027, +0.0000028025,0.0000028031,0.0000028049,0.0000028098,0.0000028158, +0.0000028217,0.0000028284,0.0000028371,0.0000028470,0.0000028558, +0.0000028664,0.0000028763,0.0000028843,0.0000028923,0.0000028991, +0.0000029058,0.0000029110,0.0000029145,0.0000029161,0.0000029147, +0.0000029102,0.0000029038,0.0000028960,0.0000028874,0.0000028802, +0.0000028751,0.0000028724,0.0000028719,0.0000028737,0.0000028769, +0.0000028793,0.0000028810,0.0000028804,0.0000028798,0.0000028813, +0.0000028852,0.0000028941,0.0000029051,0.0000029146,0.0000029220, +0.0000029285,0.0000029306,0.0000029293,0.0000029278,0.0000029282, +0.0000029300,0.0000029281,0.0000029155,0.0000028910,0.0000028673, +0.0000028583,0.0000028600,0.0000028663,0.0000028651,0.0000028661, +0.0000028788,0.0000028991,0.0000029201,0.0000029306,0.0000029329, +0.0000029289,0.0000029195,0.0000029129,0.0000029116,0.0000029116, +0.0000029114,0.0000029100,0.0000029064,0.0000029007,0.0000028953, +0.0000028916,0.0000028900,0.0000028890,0.0000028866,0.0000028839, +0.0000028814,0.0000028790,0.0000028771,0.0000028761,0.0000028752, +0.0000028748,0.0000028735,0.0000028716,0.0000028694,0.0000028682, +0.0000028673,0.0000028673,0.0000028677,0.0000028677,0.0000028661, +0.0000028626,0.0000028582,0.0000028553,0.0000028526,0.0000028480, +0.0000028433,0.0000028397,0.0000028368,0.0000028339,0.0000028301, +0.0000028244,0.0000028168,0.0000028109,0.0000028090,0.0000028100, +0.0000028138,0.0000028170,0.0000028179,0.0000028180,0.0000028178, +0.0000028185,0.0000028204,0.0000028217,0.0000028209,0.0000028189, +0.0000028178,0.0000028186,0.0000028211,0.0000028239,0.0000028256, +0.0000028262,0.0000028260,0.0000028255,0.0000028242,0.0000028205, +0.0000028158,0.0000028143,0.0000028163,0.0000028191,0.0000028200, +0.0000028179,0.0000028128,0.0000028100,0.0000028116,0.0000028191, +0.0000028305,0.0000028407,0.0000028464,0.0000028462,0.0000028395, +0.0000028286,0.0000028202,0.0000028158,0.0000028139,0.0000028138, +0.0000028132,0.0000028119,0.0000028121,0.0000028131,0.0000028134, +0.0000028139,0.0000028163,0.0000028217,0.0000028253,0.0000028254, +0.0000028228,0.0000028193,0.0000028153,0.0000028117,0.0000028095, +0.0000028079,0.0000028067,0.0000028071,0.0000028092,0.0000028094, +0.0000028073,0.0000028036,0.0000027976,0.0000027893,0.0000027856, +0.0000027902,0.0000028010,0.0000028120,0.0000028194,0.0000028229, +0.0000028165,0.0000028005,0.0000027797,0.0000027555,0.0000027376, +0.0000027246,0.0000027224,0.0000027231,0.0000027307,0.0000027387, +0.0000027455,0.0000027541,0.0000027649,0.0000027751,0.0000027836, +0.0000027904,0.0000027946,0.0000027967,0.0000027992,0.0000028037, +0.0000028074,0.0000028072,0.0000028017,0.0000027947,0.0000027895, +0.0000027862,0.0000027861,0.0000027896,0.0000027976,0.0000028050, +0.0000028087,0.0000028078,0.0000028040,0.0000027976,0.0000027883, +0.0000027799,0.0000027780,0.0000027836,0.0000027902,0.0000027962, +0.0000028024,0.0000028059,0.0000028056,0.0000028012,0.0000027959, +0.0000027910,0.0000027879,0.0000027868,0.0000027873,0.0000027934, +0.0000028088,0.0000028286,0.0000028447,0.0000028549,0.0000028624, +0.0000028690,0.0000028715,0.0000028700,0.0000028647,0.0000028600, +0.0000028539,0.0000028463,0.0000028340,0.0000028217,0.0000028127, +0.0000028096,0.0000028109,0.0000028170,0.0000028203,0.0000028178, +0.0000028100,0.0000028093,0.0000028182,0.0000028082,0.0000028096, +0.0000028446,0.0000028674,0.0000028728,0.0000028658,0.0000028522, +0.0000028473,0.0000028486,0.0000028481,0.0000028473,0.0000028485, +0.0000028480,0.0000028404,0.0000028271,0.0000028140,0.0000028037, +0.0000027970,0.0000027973,0.0000027965,0.0000027926,0.0000027936, +0.0000027987,0.0000028087,0.0000028235,0.0000028358,0.0000028425, +0.0000028503,0.0000028606,0.0000028658,0.0000028681,0.0000028669, +0.0000028656,0.0000028658,0.0000028692,0.0000028760,0.0000028857, +0.0000028934,0.0000028953,0.0000028931,0.0000028904,0.0000028926, +0.0000029015,0.0000029082,0.0000029109,0.0000029149,0.0000029138, +0.0000029058,0.0000028916,0.0000028759,0.0000028586,0.0000028457, +0.0000028400,0.0000028356,0.0000028337,0.0000028379,0.0000028578, +0.0000028765,0.0000028713,0.0000028413,0.0000028318,0.0000028354, +0.0000028273,0.0000028060,0.0000028024,0.0000027969,0.0000027859, +0.0000027778,0.0000027720,0.0000027669,0.0000027617,0.0000027576, +0.0000027543,0.0000027509,0.0000027475,0.0000027462,0.0000027480, +0.0000027516,0.0000027507,0.0000027466,0.0000027429,0.0000027425, +0.0000027447,0.0000027481,0.0000027482,0.0000027462,0.0000027460, +0.0000027492,0.0000027499,0.0000027450,0.0000027353,0.0000027279, +0.0000027241,0.0000027223,0.0000027219,0.0000027221,0.0000027223, +0.0000027229,0.0000027262,0.0000027306,0.0000027336,0.0000027337, +0.0000027311,0.0000027260,0.0000027195,0.0000027138,0.0000027118, +0.0000027137,0.0000027188,0.0000027248,0.0000027306,0.0000027359, +0.0000027404,0.0000027434,0.0000027441,0.0000027431,0.0000027391, +0.0000027321,0.0000027244,0.0000027186,0.0000027159,0.0000027158, +0.0000027172,0.0000027185,0.0000027188,0.0000027174,0.0000027139, +0.0000027086,0.0000027034,0.0000027002,0.0000026989,0.0000026982, +0.0000026978,0.0000026966,0.0000026935,0.0000026897,0.0000026871, +0.0000026858,0.0000026849,0.0000026840,0.0000026832,0.0000026820, +0.0000026797,0.0000026755,0.0000026693,0.0000026633,0.0000026586, +0.0000026550,0.0000026515,0.0000026477,0.0000026443,0.0000026418, +0.0000026407,0.0000026414,0.0000026443,0.0000026480,0.0000026489, +0.0000026480,0.0000026471,0.0000026502,0.0000026540,0.0000026569, +0.0000026630,0.0000026718,0.0000026800,0.0000026881,0.0000026975, +0.0000027066,0.0000027125,0.0000027161,0.0000027211,0.0000027276, +0.0000027336,0.0000027404,0.0000027487,0.0000027552,0.0000027597, +0.0000027654,0.0000027737,0.0000027827,0.0000027898,0.0000027979, +0.0000028111,0.0000028302,0.0000028493,0.0000028617,0.0000028667, +0.0000028703,0.0000028766,0.0000028886,0.0000029026,0.0000029129, +0.0000029170,0.0000029150,0.0000029109,0.0000029088,0.0000029089, +0.0000029092,0.0000029078,0.0000029039,0.0000028988,0.0000028934, +0.0000028879,0.0000028838,0.0000028807,0.0000028782,0.0000028767, +0.0000028760,0.0000028754,0.0000028749,0.0000028747,0.0000028741, +0.0000028713,0.0000028657,0.0000028615,0.0000028606,0.0000028607, +0.0000028600,0.0000028577,0.0000028556,0.0000028535,0.0000028496, +0.0000028445,0.0000028391,0.0000028343,0.0000028306,0.0000028294, +0.0000028317,0.0000028372,0.0000028409,0.0000028415,0.0000028398, +0.0000028367,0.0000028355,0.0000028349,0.0000028351,0.0000028372, +0.0000028400,0.0000028411,0.0000028399,0.0000028376,0.0000028361, +0.0000028374,0.0000028419,0.0000028458,0.0000028453,0.0000028408, +0.0000028320,0.0000028205,0.0000028112,0.0000028058,0.0000028029, +0.0000028025,0.0000028056,0.0000028120,0.0000028171,0.0000028179, +0.0000028156,0.0000028133,0.0000028132,0.0000028167,0.0000028219, +0.0000028265,0.0000028283,0.0000028280,0.0000028241,0.0000028183, +0.0000028122,0.0000028067,0.0000028015,0.0000027965,0.0000027928, +0.0000027911,0.0000027902,0.0000027891,0.0000027895,0.0000027912, +0.0000027920,0.0000027906,0.0000027868,0.0000027831,0.0000027797, +0.0000027779,0.0000027790,0.0000027860,0.0000027947,0.0000027915, +0.0000027753,0.0000027685,0.0000027707,0.0000027704,0.0000027689, +0.0000027709,0.0000027746,0.0000027760,0.0000027752,0.0000027730, +0.0000027695,0.0000027674,0.0000027689,0.0000027664,0.0000027524, +0.0000027403,0.0000027414,0.0000027475,0.0000027455,0.0000027370, +0.0000027317,0.0000027321,0.0000027375,0.0000027470,0.0000027463, +0.0000027292,0.0000027162,0.0000027173,0.0000027231,0.0000027271, +0.0000027230,0.0000027164,0.0000027180,0.0000027192,0.0000027077, +0.0000026957,0.0000026957,0.0000027003,0.0000027034,0.0000027081, +0.0000027107,0.0000027059,0.0000026974,0.0000026954,0.0000026989, +0.0000027034,0.0000027114,0.0000027232,0.0000027311,0.0000027321, +0.0000027303,0.0000027238,0.0000027137,0.0000027035,0.0000027001, +0.0000027029,0.0000027097,0.0000027142,0.0000027175,0.0000027203, +0.0000027221,0.0000027218,0.0000027197,0.0000027159,0.0000027125, +0.0000027070,0.0000026998,0.0000026931,0.0000026855,0.0000026743, +0.0000026636,0.0000026580,0.0000026561,0.0000026536,0.0000026503, +0.0000026488,0.0000026510,0.0000026548,0.0000026566,0.0000026553, +0.0000026458,0.0000026279,0.0000026042,0.0000025813,0.0000025726, +0.0000025761,0.0000025956,0.0000026349,0.0000026673,0.0000026690, +0.0000026565,0.0000026567,0.0000026657,0.0000026728,0.0000026790, +0.0000026790,0.0000026642,0.0000026358,0.0000026157,0.0000026040, +0.0000025984,0.0000025991,0.0000026003,0.0000026003,0.0000026036, +0.0000026079,0.0000026105,0.0000026090,0.0000026145,0.0000026174, +0.0000026224,0.0000026325,0.0000026464,0.0000026715,0.0000027074, +0.0000027388,0.0000027608,0.0000027800,0.0000027948,0.0000028067, +0.0000028134,0.0000028198,0.0000028274,0.0000028297,0.0000028301, +0.0000028287,0.0000028207,0.0000028031,0.0000027819,0.0000027704, +0.0000027630,0.0000027522,0.0000027453,0.0000027447,0.0000027462, +0.0000027484,0.0000027496,0.0000027507,0.0000027608,0.0000027749, +0.0000027812,0.0000027891,0.0000027904,0.0000027892,0.0000027807, +0.0000027826,0.0000027862,0.0000027955,0.0000027867,0.0000027714, +0.0000027610,0.0000027497,0.0000027536,0.0000027551,0.0000027519, +0.0000027433,0.0000027305,0.0000027235,0.0000027085,0.0000026931, +0.0000026907,0.0000026973,0.0000026986,0.0000026936,0.0000026864, +0.0000026785,0.0000026701,0.0000026601,0.0000026493,0.0000026391, +0.0000026312,0.0000026266,0.0000026250,0.0000026269,0.0000026308, +0.0000026345,0.0000026338,0.0000026280,0.0000026224,0.0000026137, +0.0000025994,0.0000025858,0.0000025759,0.0000025712,0.0000025736, +0.0000025805,0.0000025886,0.0000025935,0.0000025930,0.0000025893, +0.0000025878,0.0000025898,0.0000025927,0.0000026001,0.0000026082, +0.0000026101,0.0000026097,0.0000026064,0.0000026009,0.0000025945, +0.0000025882,0.0000025829,0.0000025786,0.0000025749,0.0000025732, +0.0000025741,0.0000025744,0.0000025733,0.0000025721,0.0000025719, +0.0000025729,0.0000025743,0.0000025754,0.0000025764,0.0000025777, +0.0000025771,0.0000025738,0.0000025671,0.0000025582,0.0000025484, +0.0000025382,0.0000025289,0.0000025231,0.0000025213,0.0000025206, +0.0000025169,0.0000025094,0.0000025014,0.0000024957,0.0000024900, +0.0000024843,0.0000024803,0.0000024769,0.0000024797,0.0000024886, +0.0000024963,0.0000024982,0.0000024970,0.0000025003,0.0000025112, +0.0000025186,0.0000025122,0.0000025106,0.0000025286,0.0000025442, +0.0000025462,0.0000025427,0.0000025400,0.0000025338,0.0000025274, +0.0000025330,0.0000025494,0.0000025560,0.0000025601,0.0000025875, +0.0000026224,0.0000026281,0.0000026217,0.0000026113,0.0000026031, +0.0000025971,0.0000025900,0.0000025824,0.0000025770,0.0000025784, +0.0000025850,0.0000025918,0.0000025977,0.0000026021,0.0000026047, +0.0000026066,0.0000026089,0.0000026120,0.0000026176,0.0000026303, +0.0000026476,0.0000026604,0.0000026645,0.0000026652,0.0000026660, +0.0000026689,0.0000026723,0.0000026780,0.0000026835,0.0000026890, +0.0000026991,0.0000027095,0.0000027152,0.0000027162,0.0000027133, +0.0000027093,0.0000027045,0.0000027084,0.0000027281,0.0000027463, +0.0000027510,0.0000027829,0.0000028284,0.0000028303,0.0000028228, +0.0000028165,0.0000028110,0.0000028146,0.0000028283,0.0000028443, +0.0000028421,0.0000028232,0.0000028135,0.0000028119,0.0000028118, +0.0000028082,0.0000027932,0.0000027896,0.0000027911,0.0000027904, +0.0000027929,0.0000027989,0.0000028017,0.0000028016,0.0000028039, +0.0000028095,0.0000028181,0.0000028252,0.0000028314,0.0000028374, +0.0000028456,0.0000028559,0.0000028648,0.0000028744,0.0000028814, +0.0000028863,0.0000028929,0.0000028969,0.0000028990,0.0000029002, +0.0000028997,0.0000028983,0.0000028950,0.0000028910,0.0000028869, +0.0000028818,0.0000028768,0.0000028717,0.0000028686,0.0000028667, +0.0000028661,0.0000028672,0.0000028680,0.0000028668,0.0000028661, +0.0000028670,0.0000028722,0.0000028817,0.0000028921,0.0000029019, +0.0000029095,0.0000029159,0.0000029233,0.0000029303,0.0000029333, +0.0000029327,0.0000029314,0.0000029317,0.0000029316,0.0000029265, +0.0000029129,0.0000028906,0.0000028650,0.0000028552,0.0000028602, +0.0000028667,0.0000028625,0.0000028635,0.0000028770,0.0000028982, +0.0000029184,0.0000029280,0.0000029303,0.0000029275,0.0000029207, +0.0000029141,0.0000029118,0.0000029101,0.0000029084,0.0000029070, +0.0000029034,0.0000028983,0.0000028915,0.0000028872,0.0000028829, +0.0000028792,0.0000028744,0.0000028694,0.0000028650,0.0000028615, +0.0000028590,0.0000028579,0.0000028576,0.0000028585,0.0000028588, +0.0000028586,0.0000028582,0.0000028586,0.0000028591,0.0000028608, +0.0000028637,0.0000028661,0.0000028666,0.0000028647,0.0000028613, +0.0000028590,0.0000028575,0.0000028541,0.0000028498,0.0000028460, +0.0000028430,0.0000028401,0.0000028371,0.0000028326,0.0000028273, +0.0000028224,0.0000028188,0.0000028167,0.0000028177,0.0000028199, +0.0000028205,0.0000028196,0.0000028173,0.0000028163,0.0000028183, +0.0000028221,0.0000028234,0.0000028214,0.0000028177,0.0000028157, +0.0000028164,0.0000028192,0.0000028220,0.0000028225,0.0000028214, +0.0000028211,0.0000028225,0.0000028241,0.0000028232,0.0000028209, +0.0000028193,0.0000028196,0.0000028209,0.0000028208,0.0000028177, +0.0000028139,0.0000028130,0.0000028158,0.0000028240,0.0000028340, +0.0000028424,0.0000028455,0.0000028425,0.0000028341,0.0000028251, +0.0000028183,0.0000028120,0.0000028077,0.0000028062,0.0000028057, +0.0000028058,0.0000028069,0.0000028086,0.0000028102,0.0000028114, +0.0000028141,0.0000028205,0.0000028253,0.0000028250,0.0000028219, +0.0000028169,0.0000028119,0.0000028081,0.0000028072,0.0000028079, +0.0000028086,0.0000028090,0.0000028092,0.0000028067,0.0000028039, +0.0000028014,0.0000027987,0.0000027934,0.0000027898,0.0000027910, +0.0000027961,0.0000028067,0.0000028176,0.0000028234,0.0000028225, +0.0000028154,0.0000028048,0.0000027896,0.0000027717,0.0000027501, +0.0000027327,0.0000027219,0.0000027204,0.0000027228,0.0000027285, +0.0000027382,0.0000027508,0.0000027616,0.0000027704,0.0000027799, +0.0000027890,0.0000027953,0.0000027972,0.0000027981,0.0000027998, +0.0000027996,0.0000027944,0.0000027869,0.0000027809,0.0000027778, +0.0000027773,0.0000027797,0.0000027871,0.0000027974,0.0000028050, +0.0000028046,0.0000028005,0.0000027957,0.0000027876,0.0000027774, +0.0000027705,0.0000027711,0.0000027749,0.0000027793,0.0000027854, +0.0000027937,0.0000028019,0.0000028054,0.0000028057,0.0000027985, +0.0000027892,0.0000027828,0.0000027784,0.0000027781,0.0000027852, +0.0000028002,0.0000028181,0.0000028356,0.0000028513,0.0000028647, +0.0000028706,0.0000028694,0.0000028654,0.0000028620,0.0000028567, +0.0000028485,0.0000028361,0.0000028234,0.0000028130,0.0000028106, +0.0000028124,0.0000028180,0.0000028232,0.0000028223,0.0000028143, +0.0000028116,0.0000028214,0.0000028129,0.0000028060,0.0000028378, +0.0000028647,0.0000028719,0.0000028668,0.0000028538,0.0000028479, +0.0000028487,0.0000028495,0.0000028490,0.0000028480,0.0000028425, +0.0000028294,0.0000028141,0.0000028025,0.0000027955,0.0000027892, +0.0000027924,0.0000027967,0.0000027953,0.0000027952,0.0000027993, +0.0000028084,0.0000028205,0.0000028300,0.0000028365,0.0000028447, +0.0000028552,0.0000028630,0.0000028672,0.0000028666,0.0000028654, +0.0000028634,0.0000028626,0.0000028656,0.0000028744,0.0000028856, +0.0000028917,0.0000028917,0.0000028887,0.0000028867,0.0000028911, +0.0000029023,0.0000029086,0.0000029104,0.0000029119,0.0000029119, +0.0000029052,0.0000028930,0.0000028751,0.0000028553,0.0000028431, +0.0000028377,0.0000028348,0.0000028384,0.0000028594,0.0000028768, +0.0000028659,0.0000028361,0.0000028318,0.0000028353,0.0000028264, +0.0000028049,0.0000027978,0.0000027913,0.0000027826,0.0000027768, +0.0000027735,0.0000027721,0.0000027691,0.0000027631,0.0000027576, +0.0000027537,0.0000027495,0.0000027457,0.0000027441,0.0000027466, +0.0000027503,0.0000027501,0.0000027472,0.0000027437,0.0000027427, +0.0000027436,0.0000027457,0.0000027466,0.0000027440,0.0000027412, +0.0000027425,0.0000027482,0.0000027518,0.0000027505,0.0000027423, +0.0000027322,0.0000027255,0.0000027232,0.0000027230,0.0000027239, +0.0000027248,0.0000027253,0.0000027265,0.0000027294,0.0000027321, +0.0000027330,0.0000027321,0.0000027298,0.0000027267,0.0000027238, +0.0000027220,0.0000027223,0.0000027243,0.0000027267,0.0000027282, +0.0000027298,0.0000027330,0.0000027382,0.0000027436,0.0000027470, +0.0000027474,0.0000027457,0.0000027405,0.0000027342,0.0000027291, +0.0000027262,0.0000027247,0.0000027233,0.0000027213,0.0000027183, +0.0000027136,0.0000027088,0.0000027063,0.0000027053,0.0000027051, +0.0000027050,0.0000027037,0.0000027008,0.0000026972,0.0000026937, +0.0000026904,0.0000026875,0.0000026847,0.0000026823,0.0000026801, +0.0000026773,0.0000026734,0.0000026699,0.0000026681,0.0000026661, +0.0000026630,0.0000026588,0.0000026543,0.0000026508,0.0000026489, +0.0000026481,0.0000026486,0.0000026510,0.0000026539,0.0000026544, +0.0000026516,0.0000026466,0.0000026416,0.0000026398,0.0000026407, +0.0000026458,0.0000026535,0.0000026614,0.0000026704,0.0000026801, +0.0000026894,0.0000026955,0.0000027002,0.0000027078,0.0000027176, +0.0000027269,0.0000027367,0.0000027470,0.0000027547,0.0000027593, +0.0000027640,0.0000027702,0.0000027777,0.0000027863,0.0000027964, +0.0000028071,0.0000028204,0.0000028366,0.0000028520,0.0000028625, +0.0000028659,0.0000028661,0.0000028692,0.0000028775,0.0000028897, +0.0000029008,0.0000029054,0.0000029051,0.0000029055,0.0000029070, +0.0000029080,0.0000029076,0.0000029056,0.0000029026,0.0000028982, +0.0000028911,0.0000028838,0.0000028779,0.0000028735,0.0000028713, +0.0000028712,0.0000028722,0.0000028730,0.0000028733,0.0000028730, +0.0000028712,0.0000028681,0.0000028656,0.0000028648,0.0000028645, +0.0000028630,0.0000028595,0.0000028560,0.0000028528,0.0000028487, +0.0000028433,0.0000028377,0.0000028335,0.0000028310,0.0000028320, +0.0000028352,0.0000028414,0.0000028468,0.0000028490,0.0000028475, +0.0000028440,0.0000028414,0.0000028391,0.0000028379,0.0000028390, +0.0000028427,0.0000028467,0.0000028480,0.0000028464,0.0000028435, +0.0000028420,0.0000028436,0.0000028469,0.0000028474,0.0000028444, +0.0000028370,0.0000028269,0.0000028178,0.0000028119,0.0000028087, +0.0000028074,0.0000028077,0.0000028101,0.0000028144,0.0000028163, +0.0000028150,0.0000028131,0.0000028129,0.0000028156,0.0000028196, +0.0000028228,0.0000028234,0.0000028219,0.0000028180,0.0000028136, +0.0000028097,0.0000028067,0.0000028039,0.0000028008,0.0000027974, +0.0000027948,0.0000027932,0.0000027920,0.0000027922,0.0000027957, +0.0000027999,0.0000028016,0.0000028006,0.0000027952,0.0000027884, +0.0000027818,0.0000027784,0.0000027788,0.0000027858,0.0000027946, +0.0000027888,0.0000027721,0.0000027668,0.0000027699,0.0000027674, +0.0000027647,0.0000027664,0.0000027693,0.0000027700,0.0000027686, +0.0000027651,0.0000027652,0.0000027680,0.0000027626,0.0000027469, +0.0000027406,0.0000027447,0.0000027430,0.0000027329,0.0000027249, +0.0000027244,0.0000027251,0.0000027313,0.0000027444,0.0000027498, +0.0000027337,0.0000027169,0.0000027157,0.0000027216,0.0000027269, +0.0000027251,0.0000027183,0.0000027185,0.0000027215,0.0000027149, +0.0000027007,0.0000026963,0.0000027004,0.0000027046,0.0000027076, +0.0000027126,0.0000027136,0.0000027067,0.0000026990,0.0000026979, +0.0000027005,0.0000027039,0.0000027118,0.0000027240,0.0000027314, +0.0000027316,0.0000027281,0.0000027218,0.0000027128,0.0000027034, +0.0000026986,0.0000026997,0.0000027052,0.0000027098,0.0000027127, +0.0000027147,0.0000027158,0.0000027161,0.0000027152,0.0000027134, +0.0000027105,0.0000027057,0.0000027001,0.0000026947,0.0000026862, +0.0000026741,0.0000026637,0.0000026582,0.0000026555,0.0000026522, +0.0000026477,0.0000026459,0.0000026479,0.0000026522,0.0000026553, +0.0000026554,0.0000026483,0.0000026333,0.0000026110,0.0000025845, +0.0000025679,0.0000025677,0.0000025788,0.0000026084,0.0000026494, +0.0000026665,0.0000026581,0.0000026524,0.0000026592,0.0000026674, +0.0000026728,0.0000026766,0.0000026726,0.0000026510,0.0000026260, +0.0000026126,0.0000026038,0.0000025973,0.0000025915,0.0000025895, +0.0000025921,0.0000025964,0.0000025996,0.0000026022,0.0000026043, +0.0000026058,0.0000026108,0.0000026158,0.0000026213,0.0000026312, +0.0000026534,0.0000026932,0.0000027334,0.0000027585,0.0000027790, +0.0000027955,0.0000028073,0.0000028138,0.0000028251,0.0000028286, +0.0000028288,0.0000028279,0.0000028232,0.0000028083,0.0000027866, +0.0000027722,0.0000027661,0.0000027609,0.0000027572,0.0000027559, +0.0000027551,0.0000027538,0.0000027517,0.0000027554,0.0000027697, +0.0000027776,0.0000027847,0.0000027900,0.0000027902,0.0000027849, +0.0000027790,0.0000027832,0.0000027883,0.0000027962,0.0000027858, +0.0000027709,0.0000027582,0.0000027475,0.0000027527,0.0000027529, +0.0000027503,0.0000027397,0.0000027262,0.0000027201,0.0000027071, +0.0000026947,0.0000026868,0.0000026870,0.0000026914,0.0000026929, +0.0000026918,0.0000026884,0.0000026849,0.0000026785,0.0000026698, +0.0000026587,0.0000026471,0.0000026380,0.0000026321,0.0000026298, +0.0000026298,0.0000026327,0.0000026355,0.0000026347,0.0000026283, +0.0000026197,0.0000026084,0.0000025949,0.0000025836,0.0000025765, +0.0000025759,0.0000025792,0.0000025848,0.0000025889,0.0000025899, +0.0000025894,0.0000025898,0.0000025931,0.0000025974,0.0000026048, +0.0000026126,0.0000026153,0.0000026153,0.0000026129,0.0000026080, +0.0000026013,0.0000025950,0.0000025900,0.0000025864,0.0000025838, +0.0000025834,0.0000025837,0.0000025830,0.0000025807,0.0000025771, +0.0000025749,0.0000025748,0.0000025755,0.0000025762,0.0000025762, +0.0000025769,0.0000025764,0.0000025738,0.0000025684,0.0000025607, +0.0000025521,0.0000025430,0.0000025349,0.0000025292,0.0000025262, +0.0000025241,0.0000025206,0.0000025146,0.0000025069,0.0000024994, +0.0000024908,0.0000024833,0.0000024807,0.0000024815,0.0000024812, +0.0000024796,0.0000024844,0.0000024943,0.0000024992,0.0000025004, +0.0000025010,0.0000025059,0.0000025163,0.0000025187,0.0000025146, +0.0000025241,0.0000025467,0.0000025527,0.0000025488,0.0000025435, +0.0000025343,0.0000025254,0.0000025299,0.0000025513,0.0000025618, +0.0000025670,0.0000025952,0.0000026286,0.0000026311,0.0000026237, +0.0000026149,0.0000026097,0.0000026042,0.0000025958,0.0000025850, +0.0000025754,0.0000025734,0.0000025788,0.0000025881,0.0000025952, +0.0000026000,0.0000026030,0.0000026056,0.0000026085,0.0000026109, +0.0000026127,0.0000026175,0.0000026298,0.0000026461,0.0000026581, +0.0000026621,0.0000026645,0.0000026676,0.0000026721,0.0000026781, +0.0000026833,0.0000026886,0.0000026973,0.0000027067,0.0000027125, +0.0000027136,0.0000027121,0.0000027073,0.0000027014,0.0000027072, +0.0000027284,0.0000027422,0.0000027463,0.0000027800,0.0000028255, +0.0000028275,0.0000028196,0.0000028152,0.0000028117,0.0000028156, +0.0000028284,0.0000028435,0.0000028398,0.0000028186,0.0000028097, +0.0000028099,0.0000028103,0.0000028082,0.0000027934,0.0000027882, +0.0000027888,0.0000027895,0.0000027953,0.0000028018,0.0000028040, +0.0000028047,0.0000028081,0.0000028165,0.0000028257,0.0000028324, +0.0000028381,0.0000028443,0.0000028521,0.0000028603,0.0000028671, +0.0000028733,0.0000028762,0.0000028763,0.0000028790,0.0000028812, +0.0000028820,0.0000028825,0.0000028833,0.0000028846,0.0000028849, +0.0000028836,0.0000028806,0.0000028764,0.0000028713,0.0000028657, +0.0000028608,0.0000028574,0.0000028549,0.0000028531,0.0000028510, +0.0000028496,0.0000028526,0.0000028602,0.0000028716,0.0000028834, +0.0000028928,0.0000029011,0.0000029083,0.0000029167,0.0000029257, +0.0000029332,0.0000029365,0.0000029363,0.0000029345,0.0000029340, +0.0000029320,0.0000029245,0.0000029095,0.0000028905,0.0000028635, +0.0000028523,0.0000028595,0.0000028663,0.0000028600,0.0000028607, +0.0000028735,0.0000028936,0.0000029120,0.0000029238,0.0000029273, +0.0000029264,0.0000029219,0.0000029168,0.0000029131,0.0000029091, +0.0000029067,0.0000029040,0.0000029012,0.0000028963,0.0000028896, +0.0000028833,0.0000028761,0.0000028697,0.0000028613,0.0000028536, +0.0000028466,0.0000028410,0.0000028371,0.0000028350,0.0000028352, +0.0000028364,0.0000028375,0.0000028385,0.0000028396,0.0000028413, +0.0000028436,0.0000028470,0.0000028517,0.0000028567,0.0000028609, +0.0000028625,0.0000028616,0.0000028611,0.0000028610,0.0000028595, +0.0000028580,0.0000028549,0.0000028517,0.0000028484,0.0000028450, +0.0000028414,0.0000028371,0.0000028338,0.0000028309,0.0000028273, +0.0000028255,0.0000028258,0.0000028257,0.0000028239,0.0000028201, +0.0000028162,0.0000028161,0.0000028199,0.0000028238,0.0000028242, +0.0000028208,0.0000028161,0.0000028129,0.0000028123,0.0000028141, +0.0000028177,0.0000028199,0.0000028203,0.0000028205,0.0000028224, +0.0000028253,0.0000028271,0.0000028269,0.0000028258,0.0000028257, +0.0000028258,0.0000028244,0.0000028215,0.0000028189,0.0000028186, +0.0000028221,0.0000028288,0.0000028359,0.0000028409,0.0000028412, +0.0000028360,0.0000028283,0.0000028221,0.0000028152,0.0000028077, +0.0000028024,0.0000028001,0.0000027999,0.0000028002,0.0000028005, +0.0000028020,0.0000028047,0.0000028067,0.0000028102,0.0000028173, +0.0000028227,0.0000028227,0.0000028187,0.0000028130,0.0000028083, +0.0000028071,0.0000028086,0.0000028097,0.0000028095,0.0000028088, +0.0000028074,0.0000028038,0.0000028014,0.0000028001,0.0000027986, +0.0000027966,0.0000027947,0.0000027937,0.0000027965,0.0000028032, +0.0000028145,0.0000028224,0.0000028226,0.0000028194,0.0000028149, +0.0000028111,0.0000028042,0.0000027893,0.0000027670,0.0000027424, +0.0000027248,0.0000027176,0.0000027156,0.0000027230,0.0000027365, +0.0000027492,0.0000027590,0.0000027695,0.0000027816,0.0000027928, +0.0000027969,0.0000027961,0.0000027951,0.0000027940,0.0000027902, +0.0000027828,0.0000027749,0.0000027706,0.0000027693,0.0000027712, +0.0000027771,0.0000027881,0.0000027993,0.0000028016,0.0000027972, +0.0000027918,0.0000027851,0.0000027759,0.0000027671,0.0000027613, +0.0000027615,0.0000027643,0.0000027693,0.0000027777,0.0000027888, +0.0000028001,0.0000028070,0.0000028032,0.0000027935,0.0000027817, +0.0000027722,0.0000027693,0.0000027725,0.0000027812,0.0000027932, +0.0000028089,0.0000028286,0.0000028494,0.0000028615,0.0000028643, +0.0000028638,0.0000028615,0.0000028565,0.0000028480,0.0000028359, +0.0000028243,0.0000028138,0.0000028112,0.0000028145,0.0000028196, +0.0000028262,0.0000028267,0.0000028186,0.0000028146,0.0000028242, +0.0000028182,0.0000028049,0.0000028303,0.0000028615,0.0000028708, +0.0000028669,0.0000028556,0.0000028505,0.0000028514,0.0000028517, +0.0000028490,0.0000028434,0.0000028309,0.0000028144,0.0000028018, +0.0000027951,0.0000027913,0.0000027833,0.0000027860,0.0000027951, +0.0000027967,0.0000027970,0.0000028010,0.0000028102,0.0000028201, +0.0000028263,0.0000028306,0.0000028391,0.0000028487,0.0000028578, +0.0000028642,0.0000028659,0.0000028663,0.0000028635,0.0000028597, +0.0000028586,0.0000028630,0.0000028743,0.0000028843,0.0000028873, +0.0000028853,0.0000028842,0.0000028849,0.0000028920,0.0000029041, +0.0000029086,0.0000029067,0.0000029093,0.0000029096,0.0000029046, +0.0000028906,0.0000028686,0.0000028491,0.0000028408,0.0000028367, +0.0000028403,0.0000028621,0.0000028762,0.0000028596,0.0000028318, +0.0000028324,0.0000028354,0.0000028258,0.0000028037,0.0000027916, +0.0000027837,0.0000027773,0.0000027747,0.0000027760,0.0000027802, +0.0000027811,0.0000027750,0.0000027653,0.0000027583,0.0000027532, +0.0000027482,0.0000027433,0.0000027412,0.0000027435,0.0000027486, +0.0000027504,0.0000027491,0.0000027471,0.0000027457,0.0000027450, +0.0000027450,0.0000027450,0.0000027438,0.0000027410,0.0000027397, +0.0000027425,0.0000027484,0.0000027536,0.0000027547,0.0000027519, +0.0000027434,0.0000027331,0.0000027260,0.0000027240,0.0000027253, +0.0000027276,0.0000027287,0.0000027280,0.0000027272,0.0000027281, +0.0000027306,0.0000027332,0.0000027349,0.0000027362,0.0000027355, +0.0000027327,0.0000027300,0.0000027290,0.0000027290,0.0000027287, +0.0000027284,0.0000027299,0.0000027345,0.0000027408,0.0000027465, +0.0000027495,0.0000027499,0.0000027486,0.0000027465,0.0000027436, +0.0000027395,0.0000027345,0.0000027299,0.0000027255,0.0000027208, +0.0000027165,0.0000027136,0.0000027120,0.0000027109,0.0000027096, +0.0000027079,0.0000027061,0.0000027033,0.0000026996,0.0000026959, +0.0000026923,0.0000026888,0.0000026852,0.0000026814,0.0000026770, +0.0000026735,0.0000026714,0.0000026711,0.0000026707,0.0000026689, +0.0000026663,0.0000026635,0.0000026611,0.0000026599,0.0000026589, +0.0000026584,0.0000026586,0.0000026590,0.0000026590,0.0000026564, +0.0000026486,0.0000026385,0.0000026308,0.0000026292,0.0000026317, +0.0000026372,0.0000026440,0.0000026524,0.0000026623,0.0000026722, +0.0000026796,0.0000026860,0.0000026950,0.0000027062,0.0000027173, +0.0000027294,0.0000027422,0.0000027526,0.0000027595,0.0000027651, +0.0000027702,0.0000027752,0.0000027821,0.0000027921,0.0000028031, +0.0000028131,0.0000028226,0.0000028341,0.0000028462,0.0000028540, +0.0000028560,0.0000028555,0.0000028574,0.0000028667,0.0000028824, +0.0000028963,0.0000029034,0.0000029062,0.0000029077,0.0000029082, +0.0000029079,0.0000029062,0.0000029039,0.0000028993,0.0000028921, +0.0000028835,0.0000028758,0.0000028701,0.0000028674,0.0000028677, +0.0000028692,0.0000028712,0.0000028728,0.0000028735,0.0000028733, +0.0000028724,0.0000028711,0.0000028694,0.0000028670,0.0000028635, +0.0000028601,0.0000028581,0.0000028561,0.0000028521,0.0000028451, +0.0000028387,0.0000028337,0.0000028309,0.0000028333,0.0000028382, +0.0000028449,0.0000028516,0.0000028553,0.0000028547,0.0000028510, +0.0000028463,0.0000028416,0.0000028387,0.0000028393,0.0000028436, +0.0000028493,0.0000028521,0.0000028511,0.0000028473,0.0000028435, +0.0000028425,0.0000028451,0.0000028482,0.0000028487,0.0000028454, +0.0000028393,0.0000028329,0.0000028281,0.0000028246,0.0000028215, +0.0000028193,0.0000028182,0.0000028181,0.0000028178,0.0000028157, +0.0000028134,0.0000028128,0.0000028141,0.0000028170,0.0000028204, +0.0000028226,0.0000028233,0.0000028218,0.0000028177,0.0000028121, +0.0000028059,0.0000027991,0.0000027921,0.0000027856,0.0000027800, +0.0000027762,0.0000027744,0.0000027750,0.0000027801,0.0000027899, +0.0000027992,0.0000028035,0.0000028030,0.0000027987,0.0000027898, +0.0000027810,0.0000027768,0.0000027774,0.0000027849,0.0000027924, +0.0000027842,0.0000027668,0.0000027638,0.0000027664,0.0000027641, +0.0000027615,0.0000027622,0.0000027638,0.0000027629,0.0000027611, +0.0000027637,0.0000027654,0.0000027559,0.0000027423,0.0000027413, +0.0000027454,0.0000027383,0.0000027245,0.0000027220,0.0000027269, +0.0000027318,0.0000027367,0.0000027476,0.0000027520,0.0000027372, +0.0000027179,0.0000027143,0.0000027198,0.0000027269,0.0000027279, +0.0000027214,0.0000027192,0.0000027228,0.0000027203,0.0000027081, +0.0000026985,0.0000026997,0.0000027056,0.0000027090,0.0000027123, +0.0000027166,0.0000027160,0.0000027093,0.0000027028,0.0000027012, +0.0000027025,0.0000027054,0.0000027130,0.0000027251,0.0000027319, +0.0000027305,0.0000027258,0.0000027208,0.0000027131,0.0000027042, +0.0000026971,0.0000026970,0.0000027015,0.0000027057,0.0000027076, +0.0000027084,0.0000027088,0.0000027090,0.0000027086,0.0000027089, +0.0000027079,0.0000027055,0.0000027019,0.0000026960,0.0000026856, +0.0000026730,0.0000026635,0.0000026579,0.0000026542,0.0000026500, +0.0000026447,0.0000026425,0.0000026445,0.0000026497,0.0000026537, +0.0000026544,0.0000026505,0.0000026372,0.0000026159,0.0000025894, +0.0000025677,0.0000025622,0.0000025686,0.0000025865,0.0000026227, +0.0000026569,0.0000026606,0.0000026507,0.0000026506,0.0000026603, +0.0000026670,0.0000026712,0.0000026721,0.0000026656,0.0000026425, +0.0000026215,0.0000026130,0.0000026071,0.0000025962,0.0000025892, +0.0000025878,0.0000025883,0.0000025903,0.0000025944,0.0000025939, +0.0000025927,0.0000025940,0.0000025951,0.0000026012,0.0000026118, +0.0000026237,0.0000026434,0.0000026861,0.0000027332,0.0000027596, +0.0000027824,0.0000027983,0.0000028074,0.0000028201,0.0000028262, +0.0000028265,0.0000028259,0.0000028231,0.0000028133,0.0000027946, +0.0000027769,0.0000027674,0.0000027641,0.0000027623,0.0000027608, +0.0000027583,0.0000027541,0.0000027536,0.0000027633,0.0000027736, +0.0000027795,0.0000027875,0.0000027907,0.0000027890,0.0000027791, +0.0000027779,0.0000027835,0.0000027904,0.0000027962,0.0000027845, +0.0000027696,0.0000027551,0.0000027468,0.0000027513,0.0000027503, +0.0000027479,0.0000027356,0.0000027218,0.0000027169,0.0000027076, +0.0000027002,0.0000026905,0.0000026854,0.0000026850,0.0000026853, +0.0000026868,0.0000026874,0.0000026872,0.0000026861,0.0000026831, +0.0000026800,0.0000026719,0.0000026597,0.0000026469,0.0000026384, +0.0000026353,0.0000026352,0.0000026367,0.0000026379,0.0000026353, +0.0000026260,0.0000026145,0.0000026028,0.0000025918,0.0000025848, +0.0000025831,0.0000025824,0.0000025832,0.0000025852,0.0000025867, +0.0000025892,0.0000025919,0.0000025967,0.0000026021,0.0000026090, +0.0000026157,0.0000026184,0.0000026182,0.0000026160,0.0000026119, +0.0000026061,0.0000026012,0.0000025973,0.0000025944,0.0000025931, +0.0000025939,0.0000025933,0.0000025911,0.0000025872,0.0000025818, +0.0000025778,0.0000025769,0.0000025778,0.0000025773,0.0000025756, +0.0000025760,0.0000025762,0.0000025743,0.0000025700,0.0000025638, +0.0000025558,0.0000025472,0.0000025397,0.0000025348,0.0000025325, +0.0000025307,0.0000025271,0.0000025221,0.0000025157,0.0000025087, +0.0000024989,0.0000024873,0.0000024792,0.0000024781,0.0000024822, +0.0000024862,0.0000024839,0.0000024824,0.0000024893,0.0000024987, +0.0000025025,0.0000025026,0.0000025027,0.0000025117,0.0000025212, +0.0000025185,0.0000025213,0.0000025433,0.0000025562,0.0000025531, +0.0000025450,0.0000025334,0.0000025235,0.0000025292,0.0000025549, +0.0000025668,0.0000025728,0.0000026029,0.0000026308,0.0000026309, +0.0000026236,0.0000026190,0.0000026166,0.0000026109,0.0000026016, +0.0000025904,0.0000025804,0.0000025748,0.0000025771,0.0000025865, +0.0000025952,0.0000025996,0.0000026014,0.0000026028,0.0000026054, +0.0000026084,0.0000026096,0.0000026112,0.0000026161,0.0000026295, +0.0000026477,0.0000026606,0.0000026662,0.0000026702,0.0000026750, +0.0000026799,0.0000026838,0.0000026884,0.0000026955,0.0000027032, +0.0000027090,0.0000027112,0.0000027104,0.0000027040,0.0000026982, +0.0000027062,0.0000027282,0.0000027372,0.0000027415,0.0000027771, +0.0000028221,0.0000028240,0.0000028154,0.0000028126,0.0000028128, +0.0000028188,0.0000028306,0.0000028414,0.0000028360,0.0000028136, +0.0000028057,0.0000028080,0.0000028082,0.0000028096,0.0000027955, +0.0000027874,0.0000027865,0.0000027895,0.0000027979,0.0000028052, +0.0000028074,0.0000028080,0.0000028111,0.0000028179,0.0000028262, +0.0000028332,0.0000028396,0.0000028457,0.0000028509,0.0000028555, +0.0000028611,0.0000028648,0.0000028657,0.0000028651,0.0000028655, +0.0000028679,0.0000028703,0.0000028728,0.0000028754,0.0000028778, +0.0000028779,0.0000028763,0.0000028726,0.0000028680,0.0000028621, +0.0000028555,0.0000028479,0.0000028416,0.0000028380,0.0000028370, +0.0000028380,0.0000028416,0.0000028489,0.0000028574,0.0000028681, +0.0000028779,0.0000028865,0.0000028966,0.0000029070,0.0000029183, +0.0000029281,0.0000029350,0.0000029386,0.0000029383,0.0000029359, +0.0000029345,0.0000029312,0.0000029216,0.0000029054,0.0000028899, +0.0000028626,0.0000028482,0.0000028561,0.0000028648,0.0000028585, +0.0000028576,0.0000028676,0.0000028860,0.0000029017,0.0000029155, +0.0000029231,0.0000029249,0.0000029233,0.0000029197,0.0000029155, +0.0000029104,0.0000029063,0.0000029019,0.0000028980,0.0000028922, +0.0000028856,0.0000028778,0.0000028686,0.0000028601,0.0000028497, +0.0000028401,0.0000028324,0.0000028259,0.0000028207,0.0000028173, +0.0000028163,0.0000028158,0.0000028162,0.0000028173,0.0000028184, +0.0000028193,0.0000028216,0.0000028253,0.0000028299,0.0000028352, +0.0000028410,0.0000028460,0.0000028486,0.0000028514,0.0000028548, +0.0000028570,0.0000028585,0.0000028586,0.0000028568,0.0000028535, +0.0000028494,0.0000028455,0.0000028415,0.0000028391,0.0000028384, +0.0000028361,0.0000028336,0.0000028326,0.0000028317,0.0000028292, +0.0000028241,0.0000028185,0.0000028164,0.0000028184,0.0000028226, +0.0000028248,0.0000028244,0.0000028214,0.0000028165,0.0000028122, +0.0000028096,0.0000028094,0.0000028122,0.0000028167,0.0000028201, +0.0000028224,0.0000028249,0.0000028284,0.0000028308,0.0000028309, +0.0000028305,0.0000028304,0.0000028296,0.0000028273,0.0000028244, +0.0000028227,0.0000028230,0.0000028258,0.0000028305,0.0000028341, +0.0000028349,0.0000028320,0.0000028264,0.0000028219,0.0000028166, +0.0000028094,0.0000028026,0.0000027980,0.0000027959,0.0000027952, +0.0000027946,0.0000027945,0.0000027957,0.0000027981,0.0000028012, +0.0000028057,0.0000028131,0.0000028182,0.0000028181,0.0000028134, +0.0000028080,0.0000028062,0.0000028080,0.0000028115,0.0000028115, +0.0000028090,0.0000028063,0.0000028033,0.0000028014,0.0000028003, +0.0000027992,0.0000027969,0.0000027964,0.0000027968,0.0000027980, +0.0000027995,0.0000028046,0.0000028124,0.0000028190,0.0000028211, +0.0000028197,0.0000028179,0.0000028191,0.0000028205,0.0000028164, +0.0000028027,0.0000027781,0.0000027490,0.0000027248,0.0000027131, +0.0000027141,0.0000027242,0.0000027375,0.0000027497,0.0000027612, +0.0000027737,0.0000027873,0.0000027953,0.0000027958,0.0000027936, +0.0000027902,0.0000027870,0.0000027800,0.0000027704,0.0000027642, +0.0000027625,0.0000027645,0.0000027691,0.0000027786,0.0000027916, +0.0000027978,0.0000027945,0.0000027875,0.0000027812,0.0000027750, +0.0000027663,0.0000027574,0.0000027520,0.0000027531,0.0000027571, +0.0000027632,0.0000027721,0.0000027848,0.0000027970,0.0000028005, +0.0000027948,0.0000027831,0.0000027693,0.0000027626,0.0000027649, +0.0000027721,0.0000027803,0.0000027894,0.0000028044,0.0000028241, +0.0000028399,0.0000028495,0.0000028553,0.0000028557,0.0000028530, +0.0000028455,0.0000028339,0.0000028232,0.0000028141,0.0000028118, +0.0000028168,0.0000028221,0.0000028292,0.0000028305,0.0000028226, +0.0000028171,0.0000028262,0.0000028229,0.0000028050,0.0000028226, +0.0000028579,0.0000028702,0.0000028668,0.0000028574,0.0000028536, +0.0000028546,0.0000028528,0.0000028473,0.0000028352,0.0000028175, +0.0000028030,0.0000027957,0.0000027940,0.0000027914,0.0000027821, +0.0000027808,0.0000027911,0.0000027964,0.0000027983,0.0000028032, +0.0000028125,0.0000028209,0.0000028248,0.0000028262,0.0000028336, +0.0000028431,0.0000028528,0.0000028607,0.0000028654,0.0000028680, +0.0000028652,0.0000028598,0.0000028551,0.0000028552,0.0000028633, +0.0000028749,0.0000028809,0.0000028799,0.0000028803,0.0000028831, +0.0000028859,0.0000028949,0.0000029065,0.0000029049,0.0000029032, +0.0000029078,0.0000029092,0.0000029014,0.0000028817,0.0000028569, +0.0000028448,0.0000028390,0.0000028435,0.0000028653,0.0000028746, +0.0000028528,0.0000028288,0.0000028332,0.0000028355,0.0000028253, +0.0000028024,0.0000027853,0.0000027758,0.0000027716,0.0000027719, +0.0000027781,0.0000027862,0.0000027891,0.0000027845,0.0000027729, +0.0000027622,0.0000027559,0.0000027518,0.0000027466,0.0000027407, +0.0000027377,0.0000027389,0.0000027449,0.0000027495,0.0000027498, +0.0000027493,0.0000027493,0.0000027491,0.0000027476,0.0000027459, +0.0000027445,0.0000027436,0.0000027431,0.0000027432,0.0000027445, +0.0000027481,0.0000027529,0.0000027584,0.0000027604,0.0000027583, +0.0000027485,0.0000027370,0.0000027293,0.0000027273,0.0000027287, +0.0000027300,0.0000027288,0.0000027259,0.0000027250,0.0000027281, +0.0000027344,0.0000027402,0.0000027428,0.0000027424,0.0000027395, +0.0000027365,0.0000027345,0.0000027331,0.0000027314,0.0000027297, +0.0000027297,0.0000027327,0.0000027377,0.0000027425,0.0000027464, +0.0000027490,0.0000027501,0.0000027496,0.0000027478,0.0000027455, +0.0000027436,0.0000027412,0.0000027377,0.0000027332,0.0000027294, +0.0000027264,0.0000027230,0.0000027194,0.0000027161,0.0000027129, +0.0000027088,0.0000027044,0.0000027002,0.0000026964,0.0000026929, +0.0000026892,0.0000026856,0.0000026832,0.0000026810,0.0000026792, +0.0000026778,0.0000026757,0.0000026728,0.0000026709,0.0000026705, +0.0000026709,0.0000026721,0.0000026724,0.0000026716,0.0000026688, +0.0000026647,0.0000026613,0.0000026587,0.0000026519,0.0000026392, +0.0000026285,0.0000026230,0.0000026230,0.0000026253,0.0000026293, +0.0000026355,0.0000026445,0.0000026547,0.0000026641,0.0000026736, +0.0000026849,0.0000026965,0.0000027073,0.0000027192,0.0000027333, +0.0000027471,0.0000027585,0.0000027665,0.0000027717,0.0000027756, +0.0000027792,0.0000027863,0.0000027970,0.0000028065,0.0000028121, +0.0000028177,0.0000028255,0.0000028347,0.0000028429,0.0000028478, +0.0000028500,0.0000028544,0.0000028659,0.0000028819,0.0000028956, +0.0000029044,0.0000029078,0.0000029088,0.0000029071,0.0000029038, +0.0000029008,0.0000028971,0.0000028911,0.0000028835,0.0000028762, +0.0000028705,0.0000028681,0.0000028684,0.0000028699,0.0000028721, +0.0000028746,0.0000028768,0.0000028778,0.0000028777,0.0000028762, +0.0000028720,0.0000028657,0.0000028607,0.0000028586,0.0000028589, +0.0000028588,0.0000028557,0.0000028483,0.0000028405,0.0000028335, +0.0000028296,0.0000028329,0.0000028394,0.0000028470,0.0000028541, +0.0000028588,0.0000028594,0.0000028565,0.0000028507,0.0000028442, +0.0000028396,0.0000028391,0.0000028427,0.0000028484,0.0000028524, +0.0000028524,0.0000028490,0.0000028447,0.0000028424,0.0000028439, +0.0000028481,0.0000028516,0.0000028511,0.0000028476,0.0000028426, +0.0000028386,0.0000028357,0.0000028327,0.0000028294,0.0000028271, +0.0000028260,0.0000028253,0.0000028242,0.0000028234,0.0000028234, +0.0000028246,0.0000028264,0.0000028278,0.0000028279,0.0000028260, +0.0000028220,0.0000028152,0.0000028068,0.0000027982,0.0000027897, +0.0000027812,0.0000027732,0.0000027663,0.0000027602,0.0000027559, +0.0000027537,0.0000027548,0.0000027638,0.0000027788,0.0000027928, +0.0000028007,0.0000028019,0.0000027976,0.0000027878,0.0000027776, +0.0000027732,0.0000027745,0.0000027840,0.0000027896,0.0000027767, +0.0000027610,0.0000027613,0.0000027647,0.0000027626,0.0000027594, +0.0000027591,0.0000027591,0.0000027605,0.0000027641,0.0000027613, +0.0000027474,0.0000027388,0.0000027428,0.0000027437,0.0000027330, +0.0000027246,0.0000027278,0.0000027381,0.0000027450,0.0000027482, +0.0000027542,0.0000027549,0.0000027379,0.0000027183,0.0000027145, +0.0000027183,0.0000027255,0.0000027293,0.0000027255,0.0000027209, +0.0000027232,0.0000027240,0.0000027158,0.0000027041,0.0000027001, +0.0000027037,0.0000027099,0.0000027130,0.0000027164,0.0000027198, +0.0000027188,0.0000027136,0.0000027080,0.0000027063,0.0000027066, +0.0000027081,0.0000027151,0.0000027267,0.0000027319,0.0000027292, +0.0000027242,0.0000027202,0.0000027149,0.0000027053,0.0000026968, +0.0000026951,0.0000026984,0.0000027018,0.0000027029,0.0000027036, +0.0000027046,0.0000027050,0.0000027056,0.0000027072,0.0000027078, +0.0000027064,0.0000027030,0.0000026951,0.0000026828,0.0000026709, +0.0000026626,0.0000026568,0.0000026521,0.0000026469,0.0000026416, +0.0000026398,0.0000026418,0.0000026476,0.0000026524,0.0000026540, +0.0000026514,0.0000026393,0.0000026191,0.0000025943,0.0000025700, +0.0000025588,0.0000025617,0.0000025717,0.0000025955,0.0000026353, +0.0000026584,0.0000026532,0.0000026451,0.0000026515,0.0000026603, +0.0000026658,0.0000026704,0.0000026699,0.0000026584,0.0000026370, +0.0000026198,0.0000026149,0.0000026111,0.0000026060,0.0000026006, +0.0000025935,0.0000025954,0.0000025977,0.0000025973,0.0000025968, +0.0000025932,0.0000025883,0.0000025874,0.0000025874,0.0000026019, +0.0000026193,0.0000026401,0.0000026900,0.0000027401,0.0000027654, +0.0000027879,0.0000028003,0.0000028126,0.0000028228,0.0000028228, +0.0000028228,0.0000028213,0.0000028153,0.0000028024,0.0000027854, +0.0000027715,0.0000027669,0.0000027645,0.0000027618,0.0000027584, +0.0000027548,0.0000027585,0.0000027685,0.0000027742,0.0000027827, +0.0000027890,0.0000027907,0.0000027857,0.0000027736,0.0000027776, +0.0000027833,0.0000027922,0.0000027957,0.0000027825,0.0000027675, +0.0000027521,0.0000027469,0.0000027508,0.0000027485,0.0000027456, +0.0000027319,0.0000027176,0.0000027133,0.0000027085,0.0000027044, +0.0000027000,0.0000026936,0.0000026884,0.0000026849,0.0000026826, +0.0000026822,0.0000026817,0.0000026815,0.0000026815,0.0000026819, +0.0000026818,0.0000026793,0.0000026703,0.0000026570,0.0000026460, +0.0000026417,0.0000026413,0.0000026409,0.0000026389,0.0000026327, +0.0000026210,0.0000026085,0.0000025984,0.0000025921,0.0000025908, +0.0000025891,0.0000025864,0.0000025847,0.0000025853,0.0000025891, +0.0000025942,0.0000026009,0.0000026077,0.0000026144,0.0000026202, +0.0000026225,0.0000026223,0.0000026205,0.0000026171,0.0000026126, +0.0000026088,0.0000026064,0.0000026051,0.0000026050,0.0000026049, +0.0000026027,0.0000025988,0.0000025927,0.0000025854,0.0000025798, +0.0000025783,0.0000025802,0.0000025800,0.0000025764,0.0000025748, +0.0000025755,0.0000025760,0.0000025735,0.0000025687,0.0000025610, +0.0000025514,0.0000025432,0.0000025380,0.0000025369,0.0000025376, +0.0000025362,0.0000025318,0.0000025256,0.0000025188,0.0000025099, +0.0000024991,0.0000024890,0.0000024823,0.0000024813,0.0000024857, +0.0000024893,0.0000024876,0.0000024824,0.0000024854,0.0000024966, +0.0000025026,0.0000025029,0.0000025014,0.0000025062,0.0000025178, +0.0000025208,0.0000025203,0.0000025369,0.0000025559,0.0000025557, +0.0000025458,0.0000025330,0.0000025229,0.0000025307,0.0000025596, +0.0000025710,0.0000025776,0.0000026083,0.0000026299,0.0000026283, +0.0000026218,0.0000026206,0.0000026183,0.0000026124,0.0000026048, +0.0000025966,0.0000025891,0.0000025821,0.0000025806,0.0000025868, +0.0000025951,0.0000025991,0.0000025998,0.0000025991,0.0000025996, +0.0000026024,0.0000026056,0.0000026075,0.0000026088,0.0000026171, +0.0000026376,0.0000026585,0.0000026692,0.0000026743,0.0000026784, +0.0000026819,0.0000026848,0.0000026881,0.0000026938,0.0000026996, +0.0000027052,0.0000027088,0.0000027073,0.0000026991,0.0000026948, +0.0000027064,0.0000027265,0.0000027315,0.0000027366,0.0000027741, +0.0000028184,0.0000028202,0.0000028111,0.0000028092,0.0000028138, +0.0000028233,0.0000028340,0.0000028392,0.0000028315,0.0000028088, +0.0000028006,0.0000028059,0.0000028065,0.0000028110,0.0000027991, +0.0000027867,0.0000027836,0.0000027894,0.0000027987,0.0000028062, +0.0000028083,0.0000028085,0.0000028114,0.0000028161,0.0000028234, +0.0000028308,0.0000028376,0.0000028436,0.0000028479,0.0000028515, +0.0000028563,0.0000028612,0.0000028632,0.0000028637,0.0000028641, +0.0000028648,0.0000028656,0.0000028681,0.0000028704,0.0000028725, +0.0000028720,0.0000028702,0.0000028660,0.0000028604,0.0000028517, +0.0000028429,0.0000028353,0.0000028317,0.0000028320,0.0000028350, +0.0000028375,0.0000028405,0.0000028459,0.0000028529,0.0000028622, +0.0000028716,0.0000028819,0.0000028940,0.0000029062,0.0000029186, +0.0000029290,0.0000029358,0.0000029388,0.0000029379,0.0000029351, +0.0000029335,0.0000029292,0.0000029177,0.0000029005,0.0000028874, +0.0000028625,0.0000028430,0.0000028495,0.0000028617,0.0000028587, +0.0000028551,0.0000028614,0.0000028760,0.0000028902,0.0000029026, +0.0000029127,0.0000029189,0.0000029208,0.0000029192,0.0000029158, +0.0000029113,0.0000029065,0.0000029014,0.0000028953,0.0000028879, +0.0000028794,0.0000028714,0.0000028624,0.0000028539,0.0000028437, +0.0000028340,0.0000028276,0.0000028217,0.0000028164,0.0000028123, +0.0000028092,0.0000028062,0.0000028040,0.0000028036,0.0000028037, +0.0000028031,0.0000028033,0.0000028050,0.0000028074,0.0000028105, +0.0000028146,0.0000028194,0.0000028234,0.0000028277,0.0000028332, +0.0000028384,0.0000028447,0.0000028505,0.0000028539,0.0000028540, +0.0000028506,0.0000028463,0.0000028419,0.0000028388,0.0000028384, +0.0000028384,0.0000028373,0.0000028368,0.0000028368,0.0000028357, +0.0000028311,0.0000028232,0.0000028173,0.0000028168,0.0000028196, +0.0000028224,0.0000028235,0.0000028232,0.0000028210,0.0000028175, +0.0000028134,0.0000028105,0.0000028092,0.0000028104,0.0000028138, +0.0000028185,0.0000028237,0.0000028283,0.0000028315,0.0000028322, +0.0000028315,0.0000028310,0.0000028307,0.0000028292,0.0000028280, +0.0000028258,0.0000028236,0.0000028236,0.0000028253,0.0000028274, +0.0000028275,0.0000028244,0.0000028195,0.0000028154,0.0000028115, +0.0000028058,0.0000028001,0.0000027963,0.0000027941,0.0000027921, +0.0000027898,0.0000027891,0.0000027898,0.0000027904,0.0000027932, +0.0000027978,0.0000028024,0.0000028083,0.0000028127,0.0000028120, +0.0000028079,0.0000028048,0.0000028053,0.0000028098,0.0000028134, +0.0000028129,0.0000028081,0.0000028027,0.0000027982,0.0000027978, +0.0000027985,0.0000027964,0.0000027934,0.0000027934,0.0000027960, +0.0000027995,0.0000028034,0.0000028080,0.0000028128,0.0000028156, +0.0000028171,0.0000028190,0.0000028205,0.0000028227,0.0000028253, +0.0000028267,0.0000028232,0.0000028082,0.0000027817,0.0000027483, +0.0000027233,0.0000027140,0.0000027182,0.0000027281,0.0000027399, +0.0000027527,0.0000027654,0.0000027793,0.0000027908,0.0000027955, +0.0000027932,0.0000027873,0.0000027826,0.0000027762,0.0000027662, +0.0000027588,0.0000027577,0.0000027603,0.0000027637,0.0000027704, +0.0000027821,0.0000027912,0.0000027923,0.0000027858,0.0000027788, +0.0000027746,0.0000027689,0.0000027584,0.0000027491,0.0000027469, +0.0000027489,0.0000027520,0.0000027567,0.0000027669,0.0000027796, +0.0000027880,0.0000027889,0.0000027809,0.0000027675,0.0000027583, +0.0000027580,0.0000027650,0.0000027749,0.0000027822,0.0000027899, +0.0000028001,0.0000028111,0.0000028241,0.0000028359,0.0000028418, +0.0000028437,0.0000028395,0.0000028300,0.0000028205,0.0000028133, +0.0000028125,0.0000028191,0.0000028253,0.0000028321,0.0000028334, +0.0000028261,0.0000028193,0.0000028279,0.0000028263,0.0000028060, +0.0000028160,0.0000028535,0.0000028697,0.0000028670,0.0000028585, +0.0000028552,0.0000028556,0.0000028524,0.0000028425,0.0000028255, +0.0000028082,0.0000027990,0.0000027954,0.0000027961,0.0000027943, +0.0000027831,0.0000027778,0.0000027856,0.0000027939,0.0000027981, +0.0000028047,0.0000028137,0.0000028219,0.0000028241,0.0000028233, +0.0000028285,0.0000028389,0.0000028500,0.0000028593,0.0000028663, +0.0000028707,0.0000028681,0.0000028603,0.0000028520,0.0000028498, +0.0000028558,0.0000028674,0.0000028745,0.0000028744,0.0000028761, +0.0000028815,0.0000028851,0.0000028875,0.0000029003,0.0000029049, +0.0000029000,0.0000029028,0.0000029087,0.0000029070,0.0000028923, +0.0000028648,0.0000028491,0.0000028418,0.0000028478,0.0000028687, +0.0000028718,0.0000028460,0.0000028276,0.0000028342,0.0000028356, +0.0000028248,0.0000028017,0.0000027815,0.0000027706,0.0000027675, +0.0000027707,0.0000027792,0.0000027878,0.0000027903,0.0000027872, +0.0000027769,0.0000027650,0.0000027572,0.0000027537,0.0000027508, +0.0000027458,0.0000027403,0.0000027369,0.0000027369,0.0000027418, +0.0000027470,0.0000027493,0.0000027497,0.0000027504,0.0000027519, +0.0000027526,0.0000027510,0.0000027482,0.0000027471,0.0000027475, +0.0000027480,0.0000027484,0.0000027495,0.0000027524,0.0000027563, +0.0000027608,0.0000027641,0.0000027653,0.0000027640,0.0000027545, +0.0000027420,0.0000027328,0.0000027292,0.0000027291,0.0000027288, +0.0000027267,0.0000027253,0.0000027273,0.0000027336,0.0000027402, +0.0000027437,0.0000027434,0.0000027414,0.0000027393,0.0000027377, +0.0000027360,0.0000027339,0.0000027333,0.0000027345,0.0000027369, +0.0000027397,0.0000027423,0.0000027442,0.0000027448,0.0000027448, +0.0000027445,0.0000027448,0.0000027457,0.0000027460,0.0000027453, +0.0000027434,0.0000027415,0.0000027402,0.0000027378,0.0000027347, +0.0000027313,0.0000027270,0.0000027220,0.0000027171,0.0000027122, +0.0000027070,0.0000027007,0.0000026943,0.0000026903,0.0000026890, +0.0000026892,0.0000026892,0.0000026881,0.0000026851,0.0000026808, +0.0000026768,0.0000026758,0.0000026771,0.0000026803,0.0000026836, +0.0000026843,0.0000026822,0.0000026753,0.0000026667,0.0000026611, +0.0000026554,0.0000026435,0.0000026298,0.0000026221,0.0000026196, +0.0000026190,0.0000026193,0.0000026214,0.0000026271,0.0000026366, +0.0000026482,0.0000026615,0.0000026755,0.0000026881,0.0000026988, +0.0000027093,0.0000027228,0.0000027386,0.0000027538,0.0000027651, +0.0000027722,0.0000027764,0.0000027790,0.0000027821,0.0000027891, +0.0000027969,0.0000028021,0.0000028060,0.0000028104,0.0000028173, +0.0000028269,0.0000028370,0.0000028440,0.0000028484,0.0000028544, +0.0000028648,0.0000028775,0.0000028907,0.0000029012,0.0000029064, +0.0000029053,0.0000029008,0.0000028963,0.0000028927,0.0000028886, +0.0000028831,0.0000028777,0.0000028742,0.0000028735,0.0000028745, +0.0000028758,0.0000028773,0.0000028793,0.0000028813,0.0000028826, +0.0000028828,0.0000028807,0.0000028740,0.0000028651,0.0000028593, +0.0000028579,0.0000028597,0.0000028610,0.0000028586,0.0000028508, +0.0000028414,0.0000028321,0.0000028268,0.0000028302,0.0000028380, +0.0000028467,0.0000028543,0.0000028601,0.0000028625,0.0000028611, +0.0000028559,0.0000028484,0.0000028409,0.0000028371,0.0000028387, +0.0000028443,0.0000028497,0.0000028518,0.0000028503,0.0000028469, +0.0000028439,0.0000028433,0.0000028463,0.0000028498,0.0000028500, +0.0000028473,0.0000028437,0.0000028413,0.0000028406,0.0000028413, +0.0000028413,0.0000028397,0.0000028381,0.0000028370,0.0000028363, +0.0000028357,0.0000028354,0.0000028349,0.0000028339,0.0000028318, +0.0000028287,0.0000028247,0.0000028202,0.0000028146,0.0000028077, +0.0000028000,0.0000027917,0.0000027831,0.0000027746,0.0000027668, +0.0000027596,0.0000027526,0.0000027462,0.0000027412,0.0000027411, +0.0000027505,0.0000027679,0.0000027854,0.0000027962,0.0000027982, +0.0000027937,0.0000027826,0.0000027723,0.0000027690,0.0000027720, +0.0000027826,0.0000027841,0.0000027673,0.0000027555,0.0000027602, +0.0000027648,0.0000027627,0.0000027593,0.0000027595,0.0000027634, +0.0000027645,0.0000027545,0.0000027392,0.0000027381,0.0000027437, +0.0000027409,0.0000027296,0.0000027292,0.0000027387,0.0000027478, +0.0000027504,0.0000027526,0.0000027558,0.0000027535,0.0000027361, +0.0000027183,0.0000027150,0.0000027172,0.0000027231,0.0000027293, +0.0000027288,0.0000027246,0.0000027239,0.0000027248,0.0000027219, +0.0000027122,0.0000027029,0.0000027012,0.0000027067,0.0000027132, +0.0000027167,0.0000027196,0.0000027221,0.0000027219,0.0000027180, +0.0000027137,0.0000027123,0.0000027115,0.0000027114,0.0000027177, +0.0000027285,0.0000027322,0.0000027279,0.0000027225,0.0000027196, +0.0000027163,0.0000027065,0.0000026969,0.0000026935,0.0000026957, +0.0000026982,0.0000026993,0.0000027001,0.0000027008,0.0000027006, +0.0000027020,0.0000027042,0.0000027055,0.0000027044,0.0000026998, +0.0000026903,0.0000026787,0.0000026689,0.0000026613,0.0000026549, +0.0000026490,0.0000026429,0.0000026381,0.0000026371,0.0000026405, +0.0000026467,0.0000026518,0.0000026532,0.0000026506,0.0000026395, +0.0000026208,0.0000025975,0.0000025743,0.0000025590,0.0000025565, +0.0000025617,0.0000025753,0.0000026072,0.0000026445,0.0000026532, +0.0000026454,0.0000026448,0.0000026519,0.0000026600,0.0000026662, +0.0000026683,0.0000026649,0.0000026535,0.0000026350,0.0000026214, +0.0000026180,0.0000026189,0.0000026181,0.0000026150,0.0000026138, +0.0000026156,0.0000026172,0.0000026150,0.0000026085,0.0000026021, +0.0000025943,0.0000025857,0.0000025841,0.0000025960,0.0000026204, +0.0000026443,0.0000027083,0.0000027477,0.0000027755,0.0000027914, +0.0000028035,0.0000028183,0.0000028194,0.0000028189,0.0000028183, +0.0000028151,0.0000028068,0.0000027928,0.0000027789,0.0000027731, +0.0000027694,0.0000027645,0.0000027600,0.0000027582,0.0000027631, +0.0000027693,0.0000027754,0.0000027849,0.0000027893,0.0000027905, +0.0000027805,0.0000027695,0.0000027780,0.0000027829,0.0000027934, +0.0000027942,0.0000027798,0.0000027645,0.0000027492,0.0000027473, +0.0000027505,0.0000027473,0.0000027435,0.0000027290,0.0000027144, +0.0000027094,0.0000027077,0.0000027038,0.0000027026,0.0000026998, +0.0000026956,0.0000026916,0.0000026875,0.0000026843,0.0000026822, +0.0000026793,0.0000026774,0.0000026766,0.0000026771,0.0000026781, +0.0000026797,0.0000026768,0.0000026655,0.0000026524,0.0000026475, +0.0000026464,0.0000026424,0.0000026364,0.0000026276,0.0000026155, +0.0000026045,0.0000025974,0.0000025952,0.0000025941,0.0000025910, +0.0000025874,0.0000025862,0.0000025885,0.0000025952,0.0000026039, +0.0000026124,0.0000026197,0.0000026255,0.0000026288,0.0000026291, +0.0000026288,0.0000026262,0.0000026225,0.0000026192,0.0000026182, +0.0000026182,0.0000026190,0.0000026173,0.0000026126,0.0000026062, +0.0000025979,0.0000025886,0.0000025811,0.0000025790,0.0000025822, +0.0000025829,0.0000025796,0.0000025761,0.0000025744,0.0000025750, +0.0000025753,0.0000025724,0.0000025660,0.0000025562,0.0000025462, +0.0000025397,0.0000025385,0.0000025416,0.0000025439,0.0000025417, +0.0000025360,0.0000025288,0.0000025195,0.0000025094,0.0000025009, +0.0000024953,0.0000024923,0.0000024928,0.0000024929,0.0000024925, +0.0000024903,0.0000024852,0.0000024849,0.0000024916,0.0000024994, +0.0000025016,0.0000025006,0.0000025010,0.0000025125,0.0000025205, +0.0000025198,0.0000025308,0.0000025538,0.0000025562,0.0000025475, +0.0000025325,0.0000025225,0.0000025334,0.0000025633,0.0000025734, +0.0000025806,0.0000026113,0.0000026283,0.0000026235,0.0000026200, +0.0000026204,0.0000026185,0.0000026134,0.0000026077,0.0000026024, +0.0000025971,0.0000025921,0.0000025874,0.0000025877,0.0000025918, +0.0000025952,0.0000025959,0.0000025939,0.0000025928,0.0000025947, +0.0000025996,0.0000026037,0.0000026060,0.0000026120,0.0000026296, +0.0000026540,0.0000026706,0.0000026767,0.0000026806,0.0000026835, +0.0000026853,0.0000026875,0.0000026920,0.0000026966,0.0000027027, +0.0000027058,0.0000027018,0.0000026928,0.0000026914,0.0000027074, +0.0000027229,0.0000027249,0.0000027321,0.0000027704,0.0000028143, +0.0000028168,0.0000028072,0.0000028060,0.0000028149,0.0000028276, +0.0000028369,0.0000028366,0.0000028255,0.0000028049,0.0000027952, +0.0000028036,0.0000028054,0.0000028120,0.0000028038,0.0000027883, +0.0000027827,0.0000027886,0.0000027976,0.0000028049,0.0000028067, +0.0000028070,0.0000028109,0.0000028154,0.0000028222,0.0000028299, +0.0000028362,0.0000028417,0.0000028463,0.0000028499,0.0000028547, +0.0000028591,0.0000028614,0.0000028610,0.0000028611,0.0000028600, +0.0000028579,0.0000028606,0.0000028652,0.0000028684,0.0000028688, +0.0000028666,0.0000028603,0.0000028547,0.0000028470,0.0000028412, +0.0000028363,0.0000028360,0.0000028378,0.0000028389,0.0000028386, +0.0000028392,0.0000028433,0.0000028504,0.0000028604,0.0000028702, +0.0000028810,0.0000028926,0.0000029051,0.0000029174,0.0000029272, +0.0000029340,0.0000029371,0.0000029352,0.0000029321,0.0000029303, +0.0000029262,0.0000029138,0.0000028950,0.0000028819,0.0000028636, +0.0000028386,0.0000028397,0.0000028547,0.0000028586,0.0000028550, +0.0000028570,0.0000028658,0.0000028769,0.0000028884,0.0000028976, +0.0000029053,0.0000029094,0.0000029090,0.0000029067,0.0000029033, +0.0000028996,0.0000028943,0.0000028875,0.0000028794,0.0000028705, +0.0000028629,0.0000028554,0.0000028480,0.0000028402,0.0000028320, +0.0000028267,0.0000028221,0.0000028177,0.0000028139,0.0000028109, +0.0000028079,0.0000028051,0.0000028032,0.0000028019,0.0000028005, +0.0000027990,0.0000027987,0.0000027988,0.0000027978,0.0000027984, +0.0000028000,0.0000028024,0.0000028052,0.0000028090,0.0000028138, +0.0000028212,0.0000028302,0.0000028396,0.0000028467,0.0000028489, +0.0000028471,0.0000028427,0.0000028378,0.0000028355,0.0000028361, +0.0000028366,0.0000028366,0.0000028376,0.0000028386,0.0000028375, +0.0000028310,0.0000028222,0.0000028169,0.0000028167,0.0000028179, +0.0000028187,0.0000028191,0.0000028192,0.0000028188,0.0000028168, +0.0000028147,0.0000028132,0.0000028128,0.0000028135,0.0000028154, +0.0000028189,0.0000028247,0.0000028299,0.0000028318,0.0000028310, +0.0000028289,0.0000028271,0.0000028268,0.0000028278,0.0000028276, +0.0000028244,0.0000028210,0.0000028201,0.0000028207,0.0000028207, +0.0000028180,0.0000028123,0.0000028069,0.0000028028,0.0000027974, +0.0000027913,0.0000027880,0.0000027886,0.0000027895,0.0000027871, +0.0000027837,0.0000027835,0.0000027852,0.0000027873,0.0000027912, +0.0000027957,0.0000027985,0.0000028024,0.0000028058,0.0000028059, +0.0000028042,0.0000028035,0.0000028060,0.0000028115,0.0000028148, +0.0000028132,0.0000028072,0.0000027996,0.0000027943,0.0000027926, +0.0000027928,0.0000027909,0.0000027887,0.0000027891,0.0000027927, +0.0000027982,0.0000028044,0.0000028101,0.0000028134,0.0000028129, +0.0000028130,0.0000028161,0.0000028211,0.0000028247,0.0000028275, +0.0000028286,0.0000028289,0.0000028229,0.0000028067,0.0000027771, +0.0000027456,0.0000027248,0.0000027195,0.0000027221,0.0000027299, +0.0000027422,0.0000027560,0.0000027698,0.0000027829,0.0000027916, +0.0000027916,0.0000027847,0.0000027773,0.0000027707,0.0000027613, +0.0000027540,0.0000027540,0.0000027578,0.0000027610,0.0000027652, +0.0000027732,0.0000027827,0.0000027892,0.0000027864,0.0000027803, +0.0000027760,0.0000027726,0.0000027650,0.0000027542,0.0000027472, +0.0000027455,0.0000027449,0.0000027453,0.0000027492,0.0000027566, +0.0000027650,0.0000027710,0.0000027704,0.0000027629,0.0000027555, +0.0000027537,0.0000027595,0.0000027707,0.0000027796,0.0000027852, +0.0000027869,0.0000027876,0.0000027957,0.0000028085,0.0000028187, +0.0000028283,0.0000028304,0.0000028246,0.0000028170,0.0000028120, +0.0000028131,0.0000028212,0.0000028283,0.0000028350,0.0000028370, +0.0000028288,0.0000028217,0.0000028298,0.0000028284,0.0000028069, +0.0000028110,0.0000028480,0.0000028682,0.0000028668,0.0000028584, +0.0000028549,0.0000028544,0.0000028497,0.0000028351,0.0000028182, +0.0000028063,0.0000027995,0.0000027970,0.0000027986,0.0000027984, +0.0000027864,0.0000027767,0.0000027808,0.0000027887,0.0000027960, +0.0000028048,0.0000028137,0.0000028218,0.0000028227,0.0000028211, +0.0000028244,0.0000028352,0.0000028483,0.0000028595,0.0000028687, +0.0000028738,0.0000028706,0.0000028587,0.0000028469,0.0000028450, +0.0000028531,0.0000028645,0.0000028702,0.0000028707,0.0000028743, +0.0000028808,0.0000028856,0.0000028851,0.0000028930,0.0000029031, +0.0000029002,0.0000028990,0.0000029063,0.0000029087,0.0000028996, +0.0000028716,0.0000028533,0.0000028450,0.0000028531,0.0000028719, +0.0000028687,0.0000028400,0.0000028279,0.0000028349,0.0000028353, +0.0000028239,0.0000028022,0.0000027826,0.0000027710,0.0000027679, +0.0000027721,0.0000027805,0.0000027870,0.0000027887,0.0000027863, +0.0000027789,0.0000027687,0.0000027615,0.0000027587,0.0000027574, +0.0000027544,0.0000027494,0.0000027441,0.0000027408,0.0000027411, +0.0000027441,0.0000027466,0.0000027479,0.0000027492,0.0000027502, +0.0000027520,0.0000027547,0.0000027556,0.0000027545,0.0000027535, +0.0000027531,0.0000027526,0.0000027525,0.0000027538,0.0000027567, +0.0000027602,0.0000027626,0.0000027643,0.0000027672,0.0000027703, +0.0000027719,0.0000027690,0.0000027574,0.0000027429,0.0000027334, +0.0000027301,0.0000027299,0.0000027290,0.0000027264,0.0000027260, +0.0000027293,0.0000027353,0.0000027397,0.0000027412,0.0000027403, +0.0000027384,0.0000027365,0.0000027363,0.0000027380,0.0000027405, +0.0000027431,0.0000027449,0.0000027453,0.0000027440,0.0000027416, +0.0000027395,0.0000027386,0.0000027393,0.0000027410,0.0000027419, +0.0000027420,0.0000027415,0.0000027407,0.0000027397,0.0000027387, +0.0000027375,0.0000027356,0.0000027342,0.0000027327,0.0000027304, +0.0000027272,0.0000027232,0.0000027178,0.0000027113,0.0000027054, +0.0000027016,0.0000026996,0.0000026982,0.0000026964,0.0000026937, +0.0000026900,0.0000026863,0.0000026842,0.0000026841,0.0000026854, +0.0000026880,0.0000026907,0.0000026909,0.0000026870,0.0000026782, +0.0000026685,0.0000026610,0.0000026502,0.0000026351,0.0000026239, +0.0000026194,0.0000026170,0.0000026138,0.0000026113,0.0000026123, +0.0000026193,0.0000026318,0.0000026479,0.0000026652,0.0000026802, +0.0000026922,0.0000027024,0.0000027146,0.0000027298,0.0000027452, +0.0000027577,0.0000027674,0.0000027751,0.0000027790,0.0000027802, +0.0000027825,0.0000027863,0.0000027902,0.0000027946,0.0000027996, +0.0000028053,0.0000028123,0.0000028209,0.0000028290,0.0000028356, +0.0000028420,0.0000028489,0.0000028570,0.0000028676,0.0000028797, +0.0000028897,0.0000028948,0.0000028959,0.0000028941,0.0000028913, +0.0000028875,0.0000028831,0.0000028800,0.0000028796,0.0000028810, +0.0000028827,0.0000028835,0.0000028833,0.0000028832,0.0000028838, +0.0000028855,0.0000028863,0.0000028845,0.0000028781,0.0000028696, +0.0000028639,0.0000028630,0.0000028655,0.0000028669,0.0000028636, +0.0000028536,0.0000028413,0.0000028304,0.0000028251,0.0000028292, +0.0000028369,0.0000028453,0.0000028531,0.0000028602,0.0000028645, +0.0000028650,0.0000028618,0.0000028541,0.0000028436,0.0000028349, +0.0000028337,0.0000028376,0.0000028439,0.0000028487,0.0000028508, +0.0000028496,0.0000028465,0.0000028436,0.0000028438,0.0000028462, +0.0000028475,0.0000028465,0.0000028446,0.0000028443,0.0000028454, +0.0000028479,0.0000028494,0.0000028479,0.0000028435,0.0000028392, +0.0000028373,0.0000028356,0.0000028351,0.0000028349,0.0000028342, +0.0000028316,0.0000028266,0.0000028197,0.0000028134,0.0000028075, +0.0000028015,0.0000027949,0.0000027880,0.0000027813,0.0000027743, +0.0000027673,0.0000027607,0.0000027540,0.0000027464,0.0000027387, +0.0000027320,0.0000027307,0.0000027397,0.0000027583,0.0000027784, +0.0000027911,0.0000027937,0.0000027875,0.0000027750,0.0000027658, +0.0000027643,0.0000027714,0.0000027821,0.0000027782,0.0000027603, +0.0000027534,0.0000027613,0.0000027658,0.0000027645,0.0000027640, +0.0000027670,0.0000027625,0.0000027455,0.0000027335,0.0000027377, +0.0000027450,0.0000027379,0.0000027294,0.0000027351,0.0000027475, +0.0000027506,0.0000027487,0.0000027487,0.0000027517,0.0000027488, +0.0000027327,0.0000027177,0.0000027152,0.0000027162,0.0000027201, +0.0000027272,0.0000027300,0.0000027280,0.0000027254,0.0000027251, +0.0000027244,0.0000027195,0.0000027102,0.0000027024,0.0000027024, +0.0000027094,0.0000027170,0.0000027207,0.0000027226,0.0000027246, +0.0000027244,0.0000027216,0.0000027196,0.0000027185,0.0000027162, +0.0000027151,0.0000027211,0.0000027305,0.0000027319,0.0000027261, +0.0000027207,0.0000027198,0.0000027170,0.0000027068,0.0000026957, +0.0000026919,0.0000026928,0.0000026945,0.0000026957,0.0000026958, +0.0000026942,0.0000026927,0.0000026939,0.0000026962,0.0000026979, +0.0000026968,0.0000026913,0.0000026831,0.0000026750,0.0000026675, +0.0000026599,0.0000026523,0.0000026450,0.0000026386,0.0000026354, +0.0000026362,0.0000026410,0.0000026473,0.0000026512,0.0000026518, +0.0000026484,0.0000026374,0.0000026202,0.0000025998,0.0000025782, +0.0000025611,0.0000025525,0.0000025541,0.0000025630,0.0000025821, +0.0000026189,0.0000026485,0.0000026505,0.0000026409,0.0000026426, +0.0000026526,0.0000026607,0.0000026649,0.0000026639,0.0000026597, +0.0000026510,0.0000026386,0.0000026283,0.0000026232,0.0000026233, +0.0000026230,0.0000026226,0.0000026264,0.0000026300,0.0000026285, +0.0000026242,0.0000026205,0.0000026138,0.0000026025,0.0000025888, +0.0000025825,0.0000026004,0.0000026248,0.0000026623,0.0000027299, +0.0000027605,0.0000027817,0.0000027943,0.0000028112,0.0000028152, +0.0000028153,0.0000028153,0.0000028142,0.0000028081,0.0000027963, +0.0000027855,0.0000027800,0.0000027748,0.0000027684,0.0000027630, +0.0000027611,0.0000027650,0.0000027704,0.0000027790,0.0000027855, +0.0000027889,0.0000027888,0.0000027738,0.0000027682,0.0000027784, +0.0000027830,0.0000027936,0.0000027918,0.0000027763,0.0000027606, +0.0000027466,0.0000027474,0.0000027501,0.0000027465,0.0000027415, +0.0000027267,0.0000027125,0.0000027058,0.0000027041,0.0000026982, +0.0000026978,0.0000026968,0.0000026944,0.0000026910,0.0000026879, +0.0000026858,0.0000026842,0.0000026817,0.0000026793,0.0000026764, +0.0000026729,0.0000026712,0.0000026745,0.0000026805,0.0000026818, +0.0000026704,0.0000026572,0.0000026517,0.0000026480,0.0000026402, +0.0000026317,0.0000026230,0.0000026133,0.0000026039,0.0000025979, +0.0000025955,0.0000025932,0.0000025901,0.0000025887,0.0000025893, +0.0000025964,0.0000026057,0.0000026153,0.0000026239,0.0000026307, +0.0000026351,0.0000026361,0.0000026356,0.0000026336,0.0000026306, +0.0000026287,0.0000026290,0.0000026308,0.0000026315,0.0000026292, +0.0000026233,0.0000026139,0.0000026034,0.0000025929,0.0000025844, +0.0000025813,0.0000025842,0.0000025855,0.0000025833,0.0000025800, +0.0000025757,0.0000025738,0.0000025735,0.0000025725,0.0000025681, +0.0000025598,0.0000025495,0.0000025413,0.0000025387,0.0000025422, +0.0000025474,0.0000025488,0.0000025452,0.0000025388,0.0000025294, +0.0000025184,0.0000025098,0.0000025060,0.0000025046,0.0000025063, +0.0000025066,0.0000025038,0.0000024987,0.0000024938,0.0000024893, +0.0000024841,0.0000024840,0.0000024928,0.0000024989,0.0000024985, +0.0000024980,0.0000025061,0.0000025189,0.0000025201,0.0000025245, +0.0000025484,0.0000025592,0.0000025486,0.0000025313,0.0000025227, +0.0000025357,0.0000025653,0.0000025738,0.0000025819,0.0000026117, +0.0000026241,0.0000026182,0.0000026186,0.0000026217,0.0000026206, +0.0000026152,0.0000026098,0.0000026059,0.0000026030,0.0000025999, +0.0000025943,0.0000025904,0.0000025895,0.0000025899,0.0000025891, +0.0000025871,0.0000025867,0.0000025884,0.0000025946,0.0000026021, +0.0000026063,0.0000026106,0.0000026234,0.0000026468,0.0000026676, +0.0000026767,0.0000026809,0.0000026836,0.0000026845,0.0000026862, +0.0000026901,0.0000026951,0.0000027005,0.0000027012,0.0000026939, +0.0000026858,0.0000026893,0.0000027077,0.0000027172,0.0000027179, +0.0000027275,0.0000027653,0.0000028096,0.0000028138,0.0000028046, +0.0000028035,0.0000028151,0.0000028313,0.0000028385,0.0000028332, +0.0000028207,0.0000028017,0.0000027893,0.0000028003,0.0000028055, +0.0000028122,0.0000028088,0.0000027931,0.0000027849,0.0000027890, +0.0000027952,0.0000028016,0.0000028026,0.0000028031,0.0000028075, +0.0000028124,0.0000028189,0.0000028266,0.0000028329,0.0000028373, +0.0000028408,0.0000028444,0.0000028485,0.0000028518,0.0000028537, +0.0000028545,0.0000028547,0.0000028560,0.0000028560,0.0000028589, +0.0000028627,0.0000028645,0.0000028643,0.0000028629,0.0000028598, +0.0000028576,0.0000028535,0.0000028491,0.0000028445,0.0000028423, +0.0000028409,0.0000028393,0.0000028390,0.0000028398,0.0000028434, +0.0000028503,0.0000028602,0.0000028698,0.0000028796,0.0000028903, +0.0000029016,0.0000029139,0.0000029223,0.0000029285,0.0000029318, +0.0000029294,0.0000029258,0.0000029245,0.0000029212,0.0000029097, +0.0000028899,0.0000028744,0.0000028635,0.0000028393,0.0000028294, +0.0000028413,0.0000028535,0.0000028555,0.0000028554,0.0000028593, +0.0000028652,0.0000028738,0.0000028823,0.0000028886,0.0000028937, +0.0000028939,0.0000028913,0.0000028869,0.0000028838,0.0000028801, +0.0000028749,0.0000028693,0.0000028632,0.0000028582,0.0000028533, +0.0000028483,0.0000028424,0.0000028372,0.0000028329,0.0000028292, +0.0000028261,0.0000028226,0.0000028200,0.0000028170,0.0000028136, +0.0000028099,0.0000028064,0.0000028033,0.0000028015,0.0000028005, +0.0000028001,0.0000027988,0.0000027969,0.0000027950,0.0000027936, +0.0000027932,0.0000027939,0.0000027959,0.0000028007,0.0000028079, +0.0000028177,0.0000028291,0.0000028391,0.0000028445,0.0000028442, +0.0000028395,0.0000028352,0.0000028343,0.0000028343,0.0000028334, +0.0000028341,0.0000028371,0.0000028388,0.0000028365,0.0000028296, +0.0000028229,0.0000028195,0.0000028182,0.0000028170,0.0000028162, +0.0000028156,0.0000028161,0.0000028165,0.0000028167,0.0000028160, +0.0000028161,0.0000028174,0.0000028192,0.0000028203,0.0000028220, +0.0000028259,0.0000028299,0.0000028304,0.0000028272,0.0000028232, +0.0000028221,0.0000028240,0.0000028262,0.0000028240,0.0000028182, +0.0000028144,0.0000028141,0.0000028149,0.0000028138,0.0000028091, +0.0000028025,0.0000027970,0.0000027916,0.0000027842,0.0000027781, +0.0000027773,0.0000027817,0.0000027846,0.0000027823,0.0000027784, +0.0000027779,0.0000027811,0.0000027856,0.0000027895,0.0000027924, +0.0000027933,0.0000027950,0.0000027979,0.0000027999,0.0000028011, +0.0000028031,0.0000028078,0.0000028132,0.0000028149,0.0000028118, +0.0000028057,0.0000027982,0.0000027923,0.0000027885,0.0000027857, +0.0000027836,0.0000027825,0.0000027847,0.0000027898,0.0000027959, +0.0000028022,0.0000028080,0.0000028109,0.0000028096,0.0000028088, +0.0000028114,0.0000028179,0.0000028248,0.0000028282,0.0000028294, +0.0000028289,0.0000028252,0.0000028167,0.0000027982,0.0000027708, +0.0000027428,0.0000027252,0.0000027209,0.0000027226,0.0000027313, +0.0000027456,0.0000027596,0.0000027721,0.0000027833,0.0000027874, +0.0000027815,0.0000027723,0.0000027646,0.0000027558,0.0000027494, +0.0000027496,0.0000027556,0.0000027603,0.0000027638,0.0000027680, +0.0000027747,0.0000027836,0.0000027865,0.0000027836,0.0000027791, +0.0000027758,0.0000027717,0.0000027634,0.0000027535,0.0000027461, +0.0000027423,0.0000027389,0.0000027349,0.0000027319,0.0000027355, +0.0000027440,0.0000027505,0.0000027511,0.0000027507,0.0000027534, +0.0000027599,0.0000027682,0.0000027758,0.0000027817,0.0000027814, +0.0000027762,0.0000027749,0.0000027810,0.0000027909,0.0000028078, +0.0000028189,0.0000028195,0.0000028154,0.0000028111,0.0000028138, +0.0000028223,0.0000028304,0.0000028386,0.0000028406,0.0000028314, +0.0000028247,0.0000028319,0.0000028297,0.0000028068,0.0000028070, +0.0000028411,0.0000028654,0.0000028657,0.0000028574,0.0000028527, +0.0000028512,0.0000028437,0.0000028269,0.0000028161,0.0000028099, +0.0000028031,0.0000027984,0.0000027996,0.0000028017,0.0000027908, +0.0000027769,0.0000027774,0.0000027826,0.0000027920,0.0000028029, +0.0000028134,0.0000028204,0.0000028207,0.0000028190,0.0000028222, +0.0000028325,0.0000028460,0.0000028592,0.0000028707,0.0000028761, +0.0000028715,0.0000028534,0.0000028404,0.0000028432,0.0000028545, +0.0000028646,0.0000028695,0.0000028712,0.0000028760,0.0000028822, +0.0000028859,0.0000028848,0.0000028885,0.0000029006,0.0000029014, +0.0000028976,0.0000029040,0.0000029090,0.0000029042,0.0000028769, +0.0000028572,0.0000028489,0.0000028589,0.0000028744,0.0000028650, +0.0000028353,0.0000028282,0.0000028353,0.0000028350,0.0000028230, +0.0000028041,0.0000027874,0.0000027771,0.0000027749,0.0000027790, +0.0000027846,0.0000027874,0.0000027873,0.0000027858,0.0000027818, +0.0000027753,0.0000027702,0.0000027684,0.0000027687,0.0000027672, +0.0000027622,0.0000027556,0.0000027496,0.0000027473,0.0000027485, +0.0000027505,0.0000027504,0.0000027494,0.0000027494,0.0000027512, +0.0000027542,0.0000027568,0.0000027584,0.0000027594,0.0000027599, +0.0000027596,0.0000027585,0.0000027578,0.0000027576,0.0000027593, +0.0000027626,0.0000027663,0.0000027698,0.0000027723,0.0000027729, +0.0000027733,0.0000027734,0.0000027721,0.0000027664,0.0000027543, +0.0000027420,0.0000027346,0.0000027313,0.0000027295,0.0000027269, +0.0000027250,0.0000027251,0.0000027288,0.0000027338,0.0000027365, +0.0000027364,0.0000027353,0.0000027350,0.0000027362,0.0000027387, +0.0000027423,0.0000027455,0.0000027467,0.0000027459,0.0000027432, +0.0000027396,0.0000027371,0.0000027362,0.0000027365,0.0000027372, +0.0000027377,0.0000027376,0.0000027373,0.0000027365,0.0000027353, +0.0000027345,0.0000027344,0.0000027349,0.0000027353,0.0000027350, +0.0000027331,0.0000027306,0.0000027283,0.0000027258,0.0000027224, +0.0000027193,0.0000027171,0.0000027148,0.0000027110,0.0000027055, +0.0000026995,0.0000026947,0.0000026927,0.0000026925,0.0000026922, +0.0000026917,0.0000026916,0.0000026913,0.0000026910,0.0000026880, +0.0000026800,0.0000026710,0.0000026604,0.0000026443,0.0000026287, +0.0000026206,0.0000026164,0.0000026124,0.0000026065,0.0000026035, +0.0000026067,0.0000026173,0.0000026346,0.0000026543,0.0000026716, +0.0000026857,0.0000026974,0.0000027095,0.0000027231,0.0000027361, +0.0000027465,0.0000027555,0.0000027646,0.0000027712,0.0000027745, +0.0000027764,0.0000027781,0.0000027802,0.0000027839,0.0000027888, +0.0000027938,0.0000027988,0.0000028044,0.0000028100,0.0000028159, +0.0000028225,0.0000028292,0.0000028365,0.0000028442,0.0000028536, +0.0000028639,0.0000028732,0.0000028808,0.0000028859,0.0000028885, +0.0000028870,0.0000028857,0.0000028845,0.0000028850,0.0000028868, +0.0000028880,0.0000028879,0.0000028859,0.0000028833,0.0000028831, +0.0000028855,0.0000028869,0.0000028868,0.0000028822,0.0000028758, +0.0000028722,0.0000028723,0.0000028747,0.0000028755,0.0000028702, +0.0000028572,0.0000028416,0.0000028299,0.0000028270,0.0000028324, +0.0000028400,0.0000028466,0.0000028532,0.0000028605,0.0000028667, +0.0000028693,0.0000028675,0.0000028598,0.0000028474,0.0000028349, +0.0000028287,0.0000028299,0.0000028367,0.0000028443,0.0000028497, +0.0000028516,0.0000028500,0.0000028466,0.0000028450,0.0000028466, +0.0000028488,0.0000028490,0.0000028479,0.0000028469,0.0000028469, +0.0000028481,0.0000028473,0.0000028442,0.0000028389,0.0000028338, +0.0000028303,0.0000028284,0.0000028272,0.0000028253,0.0000028225, +0.0000028181,0.0000028125,0.0000028069,0.0000028029,0.0000027994, +0.0000027951,0.0000027898,0.0000027842,0.0000027785,0.0000027725, +0.0000027658,0.0000027589,0.0000027524,0.0000027458,0.0000027387, +0.0000027310,0.0000027239,0.0000027219,0.0000027303,0.0000027510, +0.0000027742,0.0000027867,0.0000027877,0.0000027790,0.0000027668, +0.0000027611,0.0000027625,0.0000027726,0.0000027809,0.0000027731, +0.0000027558,0.0000027526,0.0000027611,0.0000027666,0.0000027675, +0.0000027659,0.0000027538,0.0000027353,0.0000027300,0.0000027401, +0.0000027462,0.0000027362,0.0000027298,0.0000027411,0.0000027524, +0.0000027509,0.0000027449,0.0000027438,0.0000027464,0.0000027430, +0.0000027274,0.0000027159,0.0000027147,0.0000027150,0.0000027167, +0.0000027229,0.0000027286,0.0000027294,0.0000027269,0.0000027253, +0.0000027242,0.0000027217,0.0000027159,0.0000027079,0.0000027025, +0.0000027051,0.0000027140,0.0000027215,0.0000027241,0.0000027256, +0.0000027272,0.0000027264,0.0000027255,0.0000027252,0.0000027235, +0.0000027199,0.0000027190,0.0000027256,0.0000027324,0.0000027309, +0.0000027239,0.0000027198,0.0000027200,0.0000027165,0.0000027055, +0.0000026938,0.0000026899,0.0000026902,0.0000026911,0.0000026918, +0.0000026908,0.0000026878,0.0000026866,0.0000026878,0.0000026900, +0.0000026913,0.0000026897,0.0000026852,0.0000026792,0.0000026730, +0.0000026663,0.0000026580,0.0000026490,0.0000026411,0.0000026359, +0.0000026346,0.0000026370,0.0000026427,0.0000026483,0.0000026507, +0.0000026502,0.0000026448,0.0000026326,0.0000026178,0.0000026010, +0.0000025809,0.0000025632,0.0000025525,0.0000025508,0.0000025554, +0.0000025660,0.0000025911,0.0000026298,0.0000026492,0.0000026442, +0.0000026368,0.0000026438,0.0000026540,0.0000026602,0.0000026622, +0.0000026595,0.0000026560,0.0000026516,0.0000026463,0.0000026399, +0.0000026341,0.0000026294,0.0000026269,0.0000026318,0.0000026333, +0.0000026309,0.0000026272,0.0000026247,0.0000026226,0.0000026183, +0.0000026090,0.0000025931,0.0000025880,0.0000026108,0.0000026300, +0.0000027024,0.0000027454,0.0000027723,0.0000027849,0.0000028026, +0.0000028103,0.0000028120,0.0000028131,0.0000028124,0.0000028067, +0.0000027967,0.0000027887,0.0000027836,0.0000027774,0.0000027707, +0.0000027647,0.0000027633,0.0000027677,0.0000027745,0.0000027814, +0.0000027852,0.0000027882,0.0000027848,0.0000027683,0.0000027691, +0.0000027788,0.0000027832,0.0000027931,0.0000027887,0.0000027723, +0.0000027562,0.0000027444,0.0000027471,0.0000027489,0.0000027452, +0.0000027390,0.0000027239,0.0000027104,0.0000027027,0.0000026990, +0.0000026921,0.0000026907,0.0000026894,0.0000026874,0.0000026849, +0.0000026824,0.0000026810,0.0000026806,0.0000026804,0.0000026798, +0.0000026780,0.0000026741,0.0000026695,0.0000026681,0.0000026737, +0.0000026834,0.0000026850,0.0000026732,0.0000026591,0.0000026524, +0.0000026460,0.0000026360,0.0000026273,0.0000026210,0.0000026133, +0.0000026046,0.0000025982,0.0000025949,0.0000025930,0.0000025919, +0.0000025934,0.0000026002,0.0000026097,0.0000026198,0.0000026289, +0.0000026362,0.0000026408,0.0000026412,0.0000026398,0.0000026385, +0.0000026369,0.0000026361,0.0000026372,0.0000026396,0.0000026401, +0.0000026377,0.0000026319,0.0000026224,0.0000026114,0.0000026009, +0.0000025921,0.0000025884,0.0000025891,0.0000025886,0.0000025861, +0.0000025833,0.0000025792,0.0000025758,0.0000025730,0.0000025703, +0.0000025661,0.0000025594,0.0000025511,0.0000025433,0.0000025391, +0.0000025415,0.0000025475,0.0000025514,0.0000025512,0.0000025473, +0.0000025391,0.0000025279,0.0000025176,0.0000025131,0.0000025126, +0.0000025165,0.0000025206,0.0000025219,0.0000025181,0.0000025090, +0.0000025007,0.0000024933,0.0000024836,0.0000024779,0.0000024845, +0.0000024939,0.0000024974,0.0000024971,0.0000025021,0.0000025156, +0.0000025188,0.0000025196,0.0000025432,0.0000025599,0.0000025492, +0.0000025300,0.0000025233,0.0000025377,0.0000025655,0.0000025727, +0.0000025817,0.0000026102,0.0000026177,0.0000026141,0.0000026196, +0.0000026241,0.0000026217,0.0000026154,0.0000026100,0.0000026080, +0.0000026082,0.0000026065,0.0000025998,0.0000025927,0.0000025891, +0.0000025872,0.0000025843,0.0000025818,0.0000025816,0.0000025859, +0.0000025950,0.0000026029,0.0000026066,0.0000026087,0.0000026170, +0.0000026384,0.0000026614,0.0000026727,0.0000026775,0.0000026807, +0.0000026816,0.0000026845,0.0000026889,0.0000026946,0.0000026976, +0.0000026942,0.0000026847,0.0000026803,0.0000026894,0.0000027064, +0.0000027110,0.0000027115,0.0000027223,0.0000027585,0.0000028042, +0.0000028110,0.0000028033,0.0000028017,0.0000028147,0.0000028331, +0.0000028381,0.0000028296,0.0000028174,0.0000027995,0.0000027835, +0.0000027958,0.0000028056,0.0000028130,0.0000028121,0.0000027997, +0.0000027925,0.0000027921,0.0000027948,0.0000027978,0.0000027982, +0.0000027979,0.0000028009,0.0000028058,0.0000028124,0.0000028197, +0.0000028256,0.0000028297,0.0000028318,0.0000028358,0.0000028414, +0.0000028457,0.0000028492,0.0000028522,0.0000028529,0.0000028534, +0.0000028528,0.0000028537,0.0000028569,0.0000028605,0.0000028643, +0.0000028657,0.0000028654,0.0000028634,0.0000028572,0.0000028512, +0.0000028463,0.0000028435,0.0000028411,0.0000028389,0.0000028391, +0.0000028398,0.0000028416,0.0000028460,0.0000028538,0.0000028632, +0.0000028722,0.0000028820,0.0000028930,0.0000029059,0.0000029143, +0.0000029201,0.0000029234,0.0000029205,0.0000029161,0.0000029147, +0.0000029125,0.0000029040,0.0000028863,0.0000028682,0.0000028595, +0.0000028459,0.0000028258,0.0000028251,0.0000028392,0.0000028493, +0.0000028532,0.0000028568,0.0000028606,0.0000028662,0.0000028719, +0.0000028761,0.0000028803,0.0000028810,0.0000028791,0.0000028747, +0.0000028702,0.0000028685,0.0000028663,0.0000028645,0.0000028622, +0.0000028600,0.0000028580,0.0000028557,0.0000028511,0.0000028461, +0.0000028406,0.0000028359,0.0000028321,0.0000028282,0.0000028258, +0.0000028243,0.0000028217,0.0000028180,0.0000028134,0.0000028082, +0.0000028044,0.0000028025,0.0000028020,0.0000028021,0.0000028010, +0.0000027981,0.0000027943,0.0000027904,0.0000027875,0.0000027865, +0.0000027885,0.0000027932,0.0000027995,0.0000028079,0.0000028192, +0.0000028313,0.0000028391,0.0000028401,0.0000028372,0.0000028356, +0.0000028348,0.0000028321,0.0000028303,0.0000028316,0.0000028346, +0.0000028355,0.0000028335,0.0000028294,0.0000028273,0.0000028262, +0.0000028234,0.0000028193,0.0000028160,0.0000028153,0.0000028160, +0.0000028189,0.0000028206,0.0000028211,0.0000028211,0.0000028215, +0.0000028230,0.0000028244,0.0000028249,0.0000028263,0.0000028280, +0.0000028270,0.0000028224,0.0000028187,0.0000028196,0.0000028226, +0.0000028221,0.0000028162,0.0000028098,0.0000028074,0.0000028083, +0.0000028093,0.0000028075,0.0000028026,0.0000027964,0.0000027906, +0.0000027838,0.0000027755,0.0000027703,0.0000027713,0.0000027769, +0.0000027803,0.0000027786,0.0000027749,0.0000027735,0.0000027774, +0.0000027829,0.0000027859,0.0000027868,0.0000027860,0.0000027864, +0.0000027893,0.0000027936,0.0000027977,0.0000028028,0.0000028091, +0.0000028130,0.0000028127,0.0000028092,0.0000028034,0.0000027977, +0.0000027914,0.0000027854,0.0000027799,0.0000027759,0.0000027758, +0.0000027808,0.0000027878,0.0000027941,0.0000027989,0.0000028030, +0.0000028047,0.0000028036,0.0000028033,0.0000028059,0.0000028116, +0.0000028196,0.0000028259,0.0000028294,0.0000028276,0.0000028231, +0.0000028153,0.0000028065,0.0000027886,0.0000027614,0.0000027351, +0.0000027212,0.0000027173,0.0000027223,0.0000027357,0.0000027492, +0.0000027596,0.0000027712,0.0000027791,0.0000027767,0.0000027684, +0.0000027597,0.0000027503,0.0000027439,0.0000027443,0.0000027524, +0.0000027595,0.0000027642,0.0000027666,0.0000027696,0.0000027769, +0.0000027831,0.0000027840,0.0000027812,0.0000027774,0.0000027741, +0.0000027694,0.0000027617,0.0000027505,0.0000027416,0.0000027357, +0.0000027270,0.0000027138,0.0000027065,0.0000027111,0.0000027210, +0.0000027299,0.0000027399,0.0000027528,0.0000027628,0.0000027698, +0.0000027731,0.0000027756,0.0000027758,0.0000027718,0.0000027659, +0.0000027631,0.0000027683,0.0000027870,0.0000028070,0.0000028156, +0.0000028151,0.0000028111,0.0000028140,0.0000028225,0.0000028320, +0.0000028422,0.0000028439,0.0000028338,0.0000028279,0.0000028341, +0.0000028301,0.0000028052,0.0000028034,0.0000028335,0.0000028611, +0.0000028634,0.0000028556,0.0000028491,0.0000028461,0.0000028346, +0.0000028211,0.0000028175,0.0000028164,0.0000028096,0.0000028004, +0.0000028001,0.0000028035,0.0000027958,0.0000027781,0.0000027755, +0.0000027784,0.0000027875,0.0000027978,0.0000028115,0.0000028180, +0.0000028186,0.0000028173,0.0000028216,0.0000028308,0.0000028428, +0.0000028578,0.0000028713,0.0000028769,0.0000028691,0.0000028454, +0.0000028367,0.0000028457,0.0000028589,0.0000028676,0.0000028729, +0.0000028764,0.0000028800,0.0000028835,0.0000028851,0.0000028843, +0.0000028873,0.0000028997,0.0000029026,0.0000028978,0.0000029030, +0.0000029099,0.0000029072,0.0000028806,0.0000028609,0.0000028535, +0.0000028647,0.0000028754,0.0000028602,0.0000028319,0.0000028294, +0.0000028351,0.0000028345,0.0000028230,0.0000028074,0.0000027952, +0.0000027876,0.0000027859,0.0000027893,0.0000027924,0.0000027916, +0.0000027886,0.0000027876,0.0000027868,0.0000027839,0.0000027806, +0.0000027797,0.0000027805,0.0000027800,0.0000027761,0.0000027693, +0.0000027609,0.0000027537,0.0000027522,0.0000027545,0.0000027567, +0.0000027563,0.0000027544,0.0000027531,0.0000027548,0.0000027596, +0.0000027642,0.0000027666,0.0000027676,0.0000027665,0.0000027645, +0.0000027635,0.0000027627,0.0000027629,0.0000027643,0.0000027663, +0.0000027684,0.0000027714,0.0000027749,0.0000027774,0.0000027770, +0.0000027735,0.0000027707,0.0000027703,0.0000027696,0.0000027639, +0.0000027521,0.0000027405,0.0000027328,0.0000027287,0.0000027266, +0.0000027250,0.0000027237,0.0000027231,0.0000027252,0.0000027292, +0.0000027320,0.0000027336,0.0000027344,0.0000027348,0.0000027356, +0.0000027366,0.0000027377,0.0000027389,0.0000027394,0.0000027389, +0.0000027381,0.0000027372,0.0000027359,0.0000027346,0.0000027330, +0.0000027310,0.0000027297,0.0000027292,0.0000027296,0.0000027314, +0.0000027342,0.0000027373,0.0000027403,0.0000027425,0.0000027422, +0.0000027392,0.0000027356,0.0000027323,0.0000027286,0.0000027255, +0.0000027244,0.0000027248,0.0000027248,0.0000027231,0.0000027186, +0.0000027123,0.0000027064,0.0000027017,0.0000026980,0.0000026955, +0.0000026932,0.0000026906,0.0000026891,0.0000026882,0.0000026862, +0.0000026807,0.0000026722,0.0000026576,0.0000026393,0.0000026258, +0.0000026184,0.0000026127,0.0000026056,0.0000026007,0.0000026005, +0.0000026075,0.0000026230,0.0000026418,0.0000026596,0.0000026756, +0.0000026897,0.0000027030,0.0000027163,0.0000027274,0.0000027345, +0.0000027397,0.0000027459,0.0000027526,0.0000027583,0.0000027632, +0.0000027677,0.0000027719,0.0000027767,0.0000027809,0.0000027838, +0.0000027860,0.0000027888,0.0000027923,0.0000027962,0.0000028009, +0.0000028062,0.0000028138,0.0000028220,0.0000028310,0.0000028409, +0.0000028507,0.0000028597,0.0000028680,0.0000028751,0.0000028803, +0.0000028850,0.0000028874,0.0000028910,0.0000028927,0.0000028925, +0.0000028903,0.0000028856,0.0000028805,0.0000028791,0.0000028826, +0.0000028858,0.0000028862,0.0000028829,0.0000028780,0.0000028767, +0.0000028776,0.0000028793,0.0000028797,0.0000028742,0.0000028608, +0.0000028437,0.0000028320,0.0000028319,0.0000028404,0.0000028473, +0.0000028506,0.0000028542,0.0000028609,0.0000028687,0.0000028730, +0.0000028716,0.0000028641,0.0000028515,0.0000028373,0.0000028271, +0.0000028249,0.0000028301,0.0000028388,0.0000028464,0.0000028512, +0.0000028519,0.0000028497,0.0000028467,0.0000028473,0.0000028493, +0.0000028489,0.0000028457,0.0000028417,0.0000028398,0.0000028396, +0.0000028392,0.0000028373,0.0000028332,0.0000028273,0.0000028213, +0.0000028159,0.0000028103,0.0000028052,0.0000028017,0.0000027994, +0.0000027969,0.0000027936,0.0000027907,0.0000027878,0.0000027839, +0.0000027787,0.0000027730,0.0000027671,0.0000027608,0.0000027541, +0.0000027475,0.0000027423,0.0000027383,0.0000027344,0.0000027297, +0.0000027236,0.0000027182,0.0000027165,0.0000027257,0.0000027492, +0.0000027728,0.0000027833,0.0000027810,0.0000027705,0.0000027616, +0.0000027597,0.0000027641,0.0000027760,0.0000027803,0.0000027652, +0.0000027488,0.0000027489,0.0000027572,0.0000027611,0.0000027566, +0.0000027405,0.0000027263,0.0000027278,0.0000027421,0.0000027471, +0.0000027353,0.0000027314,0.0000027448,0.0000027548,0.0000027507, +0.0000027448,0.0000027436,0.0000027434,0.0000027359,0.0000027206, +0.0000027129,0.0000027131,0.0000027130,0.0000027134,0.0000027172, +0.0000027225,0.0000027259,0.0000027260,0.0000027242,0.0000027216, +0.0000027186,0.0000027150,0.0000027093,0.0000027040,0.0000027040, +0.0000027110,0.0000027200,0.0000027249,0.0000027264,0.0000027281, +0.0000027283,0.0000027282,0.0000027287,0.0000027287,0.0000027263, +0.0000027226,0.0000027232,0.0000027304,0.0000027333,0.0000027286, +0.0000027216,0.0000027199,0.0000027196,0.0000027146,0.0000027026, +0.0000026916,0.0000026882,0.0000026879,0.0000026882,0.0000026883, +0.0000026868,0.0000026855,0.0000026862,0.0000026880,0.0000026895, +0.0000026895,0.0000026874,0.0000026833,0.0000026777,0.0000026712, +0.0000026637,0.0000026553,0.0000026466,0.0000026394,0.0000026356, +0.0000026353,0.0000026389,0.0000026450,0.0000026492,0.0000026498, +0.0000026470,0.0000026388,0.0000026267,0.0000026146,0.0000026006, +0.0000025820,0.0000025643,0.0000025534,0.0000025483,0.0000025497, +0.0000025570,0.0000025703,0.0000026026,0.0000026390,0.0000026464, +0.0000026375,0.0000026371,0.0000026459,0.0000026545,0.0000026589, +0.0000026588,0.0000026566,0.0000026539,0.0000026540,0.0000026533, +0.0000026504,0.0000026456,0.0000026446,0.0000026466,0.0000026458, +0.0000026431,0.0000026368,0.0000026306,0.0000026250,0.0000026205, +0.0000026202,0.0000026132,0.0000025914,0.0000025949,0.0000026168, +0.0000026677,0.0000027312,0.0000027626,0.0000027754,0.0000027936, +0.0000028054,0.0000028097,0.0000028114,0.0000028108,0.0000028043, +0.0000027956,0.0000027890,0.0000027832,0.0000027771,0.0000027710, +0.0000027664,0.0000027675,0.0000027730,0.0000027782,0.0000027818, +0.0000027846,0.0000027872,0.0000027773,0.0000027656,0.0000027715, +0.0000027785,0.0000027838,0.0000027921,0.0000027849,0.0000027682, +0.0000027515,0.0000027408,0.0000027461,0.0000027470,0.0000027432, +0.0000027358,0.0000027200,0.0000027072,0.0000027000,0.0000026950, +0.0000026876,0.0000026856,0.0000026843,0.0000026835,0.0000026823, +0.0000026807,0.0000026801,0.0000026799,0.0000026800,0.0000026795, +0.0000026779,0.0000026744,0.0000026697,0.0000026659,0.0000026662, +0.0000026746,0.0000026861,0.0000026865,0.0000026730,0.0000026578, +0.0000026502,0.0000026414,0.0000026316,0.0000026249,0.0000026204, +0.0000026147,0.0000026072,0.0000026011,0.0000025983,0.0000025972, +0.0000025994,0.0000026060,0.0000026154,0.0000026255,0.0000026342, +0.0000026413,0.0000026454,0.0000026454,0.0000026435,0.0000026424, +0.0000026423,0.0000026431,0.0000026452,0.0000026468,0.0000026468, +0.0000026437,0.0000026371,0.0000026296,0.0000026213,0.0000026129, +0.0000026048,0.0000025993,0.0000025969,0.0000025934,0.0000025883, +0.0000025846,0.0000025808,0.0000025778,0.0000025738,0.0000025696, +0.0000025629,0.0000025550,0.0000025478,0.0000025422,0.0000025394, +0.0000025411,0.0000025463,0.0000025514,0.0000025533,0.0000025526, +0.0000025477,0.0000025392,0.0000025299,0.0000025230,0.0000025195, +0.0000025222,0.0000025281,0.0000025333,0.0000025359,0.0000025328, +0.0000025233,0.0000025099,0.0000024964,0.0000024829,0.0000024729, +0.0000024753,0.0000024901,0.0000024970,0.0000024972,0.0000024995, +0.0000025104,0.0000025172,0.0000025176,0.0000025386,0.0000025592, +0.0000025491,0.0000025292,0.0000025246,0.0000025392,0.0000025650, +0.0000025708,0.0000025804,0.0000026071,0.0000026116,0.0000026122, +0.0000026223,0.0000026252,0.0000026207,0.0000026138,0.0000026095, +0.0000026097,0.0000026109,0.0000026091,0.0000026024,0.0000025940, +0.0000025893,0.0000025861,0.0000025818,0.0000025781,0.0000025793, +0.0000025883,0.0000025986,0.0000026038,0.0000026044,0.0000026046, +0.0000026112,0.0000026320,0.0000026550,0.0000026670,0.0000026725, +0.0000026764,0.0000026787,0.0000026829,0.0000026884,0.0000026929, +0.0000026924,0.0000026850,0.0000026755,0.0000026759,0.0000026909, +0.0000027034,0.0000027053,0.0000027060,0.0000027163,0.0000027512, +0.0000027972,0.0000028090,0.0000028027,0.0000028007,0.0000028139, +0.0000028331,0.0000028360,0.0000028260,0.0000028154,0.0000027988, +0.0000027809,0.0000027900,0.0000028045,0.0000028139,0.0000028141, +0.0000028065,0.0000028006,0.0000027976,0.0000027975,0.0000027973, +0.0000027965,0.0000027949,0.0000027960,0.0000028010,0.0000028078, +0.0000028147,0.0000028208,0.0000028251,0.0000028287,0.0000028331, +0.0000028375,0.0000028405,0.0000028414,0.0000028420,0.0000028427, +0.0000028442,0.0000028461,0.0000028489,0.0000028552,0.0000028613, +0.0000028669,0.0000028688,0.0000028674,0.0000028631,0.0000028560, +0.0000028504,0.0000028462,0.0000028433,0.0000028391,0.0000028342, +0.0000028307,0.0000028276,0.0000028265,0.0000028283,0.0000028341, +0.0000028435,0.0000028543,0.0000028648,0.0000028778,0.0000028929, +0.0000029036,0.0000029095,0.0000029128,0.0000029096,0.0000029047, +0.0000029016,0.0000028987,0.0000028934,0.0000028818,0.0000028651, +0.0000028542,0.0000028491,0.0000028335,0.0000028193,0.0000028197, +0.0000028301,0.0000028392,0.0000028468,0.0000028538,0.0000028615, +0.0000028692,0.0000028747,0.0000028779,0.0000028783,0.0000028767, +0.0000028736,0.0000028692,0.0000028666,0.0000028663,0.0000028653, +0.0000028642,0.0000028625,0.0000028602,0.0000028575,0.0000028530, +0.0000028468,0.0000028400,0.0000028335,0.0000028286,0.0000028253, +0.0000028233,0.0000028234,0.0000028240,0.0000028233,0.0000028216, +0.0000028173,0.0000028122,0.0000028082,0.0000028056,0.0000028049, +0.0000028047,0.0000028033,0.0000027996,0.0000027943,0.0000027888, +0.0000027846,0.0000027837,0.0000027850,0.0000027890,0.0000027934, +0.0000027999,0.0000028112,0.0000028241,0.0000028333,0.0000028366, +0.0000028372,0.0000028375,0.0000028350,0.0000028306,0.0000028287, +0.0000028298,0.0000028324,0.0000028334,0.0000028328,0.0000028327, +0.0000028330,0.0000028312,0.0000028266,0.0000028215,0.0000028184, +0.0000028182,0.0000028212,0.0000028249,0.0000028283,0.0000028294, +0.0000028280,0.0000028260,0.0000028261,0.0000028266,0.0000028256, +0.0000028247,0.0000028243,0.0000028228,0.0000028197,0.0000028182, +0.0000028184,0.0000028180,0.0000028137,0.0000028072,0.0000028031, +0.0000028025,0.0000028035,0.0000028037,0.0000028024,0.0000027985, +0.0000027930,0.0000027868,0.0000027788,0.0000027712,0.0000027676, +0.0000027689,0.0000027732,0.0000027767,0.0000027764,0.0000027738, +0.0000027727,0.0000027747,0.0000027787,0.0000027801,0.0000027787, +0.0000027771,0.0000027780,0.0000027821,0.0000027877,0.0000027936, +0.0000028009,0.0000028076,0.0000028097,0.0000028081,0.0000028041, +0.0000027994,0.0000027949,0.0000027895,0.0000027826,0.0000027748, +0.0000027685,0.0000027685,0.0000027753,0.0000027847,0.0000027923, +0.0000027963,0.0000027977,0.0000027966,0.0000027954,0.0000027954, +0.0000027987,0.0000028035,0.0000028110,0.0000028200,0.0000028266, +0.0000028255,0.0000028200,0.0000028118,0.0000028047,0.0000027953, +0.0000027743,0.0000027458,0.0000027237,0.0000027157,0.0000027170, +0.0000027273,0.0000027385,0.0000027461,0.0000027567,0.0000027681, +0.0000027712,0.0000027651,0.0000027561,0.0000027459,0.0000027392, +0.0000027397,0.0000027485,0.0000027581,0.0000027643,0.0000027669, +0.0000027682,0.0000027715,0.0000027765,0.0000027796,0.0000027799, +0.0000027765,0.0000027726,0.0000027692,0.0000027652,0.0000027551, +0.0000027427,0.0000027336,0.0000027235,0.0000027063,0.0000026896, +0.0000026797,0.0000026840,0.0000026963,0.0000027175,0.0000027427, +0.0000027622,0.0000027714,0.0000027727,0.0000027699,0.0000027672, +0.0000027665,0.0000027628,0.0000027581,0.0000027584,0.0000027720, +0.0000027959,0.0000028127,0.0000028151,0.0000028114,0.0000028138, +0.0000028219,0.0000028337,0.0000028441,0.0000028455,0.0000028352, +0.0000028310,0.0000028367,0.0000028300,0.0000028037,0.0000028011, +0.0000028264,0.0000028549,0.0000028593,0.0000028528,0.0000028445, +0.0000028383,0.0000028251,0.0000028191,0.0000028220,0.0000028239, +0.0000028184,0.0000028056,0.0000028008,0.0000028041,0.0000028008, +0.0000027810,0.0000027745,0.0000027766,0.0000027839,0.0000027920, +0.0000028070,0.0000028152,0.0000028169,0.0000028165,0.0000028218, +0.0000028301,0.0000028400,0.0000028553,0.0000028708,0.0000028769, +0.0000028627,0.0000028373,0.0000028369,0.0000028519,0.0000028648, +0.0000028741,0.0000028797,0.0000028801,0.0000028806,0.0000028816, +0.0000028826,0.0000028839,0.0000028892,0.0000029020,0.0000029044, +0.0000028984,0.0000029040,0.0000029115,0.0000029085,0.0000028831, +0.0000028641,0.0000028586,0.0000028700,0.0000028755,0.0000028556, +0.0000028297,0.0000028301,0.0000028348,0.0000028340,0.0000028249, +0.0000028122,0.0000028038,0.0000027976,0.0000027961,0.0000027993, +0.0000028018,0.0000027990,0.0000027927,0.0000027905,0.0000027913, +0.0000027912,0.0000027893,0.0000027882,0.0000027889,0.0000027892, +0.0000027872,0.0000027823,0.0000027747,0.0000027649,0.0000027573, +0.0000027560,0.0000027579,0.0000027591,0.0000027584,0.0000027570, +0.0000027564,0.0000027588,0.0000027641,0.0000027701,0.0000027757, +0.0000027792,0.0000027793,0.0000027760,0.0000027712,0.0000027676, +0.0000027660,0.0000027664,0.0000027686,0.0000027714,0.0000027735, +0.0000027751,0.0000027772,0.0000027783,0.0000027769,0.0000027721, +0.0000027684,0.0000027694,0.0000027712,0.0000027701,0.0000027609, +0.0000027477,0.0000027369,0.0000027301,0.0000027261,0.0000027232, +0.0000027212,0.0000027209,0.0000027226,0.0000027258,0.0000027299, +0.0000027335,0.0000027356,0.0000027361,0.0000027350,0.0000027337, +0.0000027331,0.0000027334,0.0000027343,0.0000027356,0.0000027365, +0.0000027365,0.0000027353,0.0000027325,0.0000027283,0.0000027237, +0.0000027200,0.0000027189,0.0000027212,0.0000027266,0.0000027331, +0.0000027397,0.0000027457,0.0000027495,0.0000027510,0.0000027506, +0.0000027473,0.0000027417,0.0000027350,0.0000027290,0.0000027265, +0.0000027272,0.0000027290,0.0000027298,0.0000027292,0.0000027261, +0.0000027200,0.0000027113,0.0000027023,0.0000026952,0.0000026904, +0.0000026866,0.0000026845,0.0000026845,0.0000026840,0.0000026806, +0.0000026709,0.0000026541,0.0000026370,0.0000026250,0.0000026162, +0.0000026077,0.0000026009,0.0000025999,0.0000026033,0.0000026142, +0.0000026290,0.0000026447,0.0000026611,0.0000026767,0.0000026912, +0.0000027049,0.0000027159,0.0000027215,0.0000027241,0.0000027266, +0.0000027303,0.0000027350,0.0000027413,0.0000027490,0.0000027573, +0.0000027660,0.0000027730,0.0000027769,0.0000027779,0.0000027775, +0.0000027777,0.0000027791,0.0000027816,0.0000027850,0.0000027911, +0.0000027999,0.0000028099,0.0000028209,0.0000028319,0.0000028416, +0.0000028496,0.0000028571,0.0000028651,0.0000028740,0.0000028820, +0.0000028896,0.0000028948,0.0000028947,0.0000028937,0.0000028875, +0.0000028797,0.0000028755,0.0000028781,0.0000028820,0.0000028826, +0.0000028792,0.0000028751,0.0000028746,0.0000028759,0.0000028777, +0.0000028791,0.0000028759,0.0000028646,0.0000028482,0.0000028368, +0.0000028380,0.0000028478,0.0000028533,0.0000028535,0.0000028541, +0.0000028598,0.0000028691,0.0000028747,0.0000028743,0.0000028678, +0.0000028559,0.0000028413,0.0000028283,0.0000028230,0.0000028259, +0.0000028342,0.0000028430,0.0000028488,0.0000028502,0.0000028473, +0.0000028421,0.0000028393,0.0000028396,0.0000028395,0.0000028364, +0.0000028319,0.0000028287,0.0000028281,0.0000028285,0.0000028269, +0.0000028214,0.0000028125,0.0000028030,0.0000027952,0.0000027895, +0.0000027855,0.0000027831,0.0000027815,0.0000027790,0.0000027748, +0.0000027698,0.0000027657,0.0000027625,0.0000027592,0.0000027550, +0.0000027494,0.0000027430,0.0000027362,0.0000027294,0.0000027235, +0.0000027203,0.0000027195,0.0000027197,0.0000027198,0.0000027185, +0.0000027161,0.0000027159,0.0000027269,0.0000027519,0.0000027734, +0.0000027787,0.0000027732,0.0000027641,0.0000027595,0.0000027600, +0.0000027682,0.0000027793,0.0000027754,0.0000027555,0.0000027416, +0.0000027423,0.0000027456,0.0000027417,0.0000027280,0.0000027196, +0.0000027273,0.0000027434,0.0000027475,0.0000027347,0.0000027315, +0.0000027467,0.0000027561,0.0000027515,0.0000027468,0.0000027451, +0.0000027408,0.0000027278,0.0000027136,0.0000027092,0.0000027102, +0.0000027103,0.0000027106,0.0000027126,0.0000027152,0.0000027173, +0.0000027182,0.0000027177,0.0000027155,0.0000027117,0.0000027075, +0.0000027038,0.0000027018,0.0000027030,0.0000027097,0.0000027181, +0.0000027236,0.0000027258,0.0000027275,0.0000027281,0.0000027282, +0.0000027290,0.0000027306,0.0000027303,0.0000027279,0.0000027251, +0.0000027284,0.0000027340,0.0000027322,0.0000027252,0.0000027207, +0.0000027199,0.0000027182,0.0000027111,0.0000026981,0.0000026884, +0.0000026858,0.0000026853,0.0000026851,0.0000026851,0.0000026847, +0.0000026860,0.0000026881,0.0000026896,0.0000026897,0.0000026879, +0.0000026847,0.0000026801,0.0000026741,0.0000026670,0.0000026597, +0.0000026527,0.0000026460,0.0000026404,0.0000026373,0.0000026378, +0.0000026421,0.0000026467,0.0000026478,0.0000026460,0.0000026402, +0.0000026313,0.0000026220,0.0000026119,0.0000025990,0.0000025816, +0.0000025647,0.0000025545,0.0000025493,0.0000025475,0.0000025511, +0.0000025588,0.0000025768,0.0000026147,0.0000026433,0.0000026436, +0.0000026349,0.0000026372,0.0000026478,0.0000026542,0.0000026566, +0.0000026565,0.0000026551,0.0000026545,0.0000026542,0.0000026535, +0.0000026530,0.0000026561,0.0000026591,0.0000026609,0.0000026585, +0.0000026520,0.0000026446,0.0000026358,0.0000026262,0.0000026206, +0.0000026227,0.0000026080,0.0000025899,0.0000026072,0.0000026383, +0.0000027159,0.0000027516,0.0000027664,0.0000027845,0.0000028010, +0.0000028076,0.0000028105,0.0000028085,0.0000028021,0.0000027940, +0.0000027874,0.0000027810,0.0000027763,0.0000027718,0.0000027700, +0.0000027730,0.0000027759,0.0000027789,0.0000027820,0.0000027847, +0.0000027833,0.0000027694,0.0000027654,0.0000027735,0.0000027773, +0.0000027843,0.0000027894,0.0000027807,0.0000027640,0.0000027469, +0.0000027378,0.0000027444,0.0000027443,0.0000027404,0.0000027320, +0.0000027157,0.0000027031,0.0000026964,0.0000026912,0.0000026855, +0.0000026842,0.0000026841,0.0000026846,0.0000026852,0.0000026858, +0.0000026861,0.0000026858,0.0000026850,0.0000026836,0.0000026813, +0.0000026767,0.0000026696,0.0000026634,0.0000026612,0.0000026647, +0.0000026763,0.0000026861,0.0000026857,0.0000026692,0.0000026534, +0.0000026446,0.0000026365,0.0000026292,0.0000026248,0.0000026218, +0.0000026176,0.0000026119,0.0000026073,0.0000026059,0.0000026079, +0.0000026136,0.0000026218,0.0000026304,0.0000026379,0.0000026437, +0.0000026472,0.0000026471,0.0000026457,0.0000026444,0.0000026446, +0.0000026465,0.0000026495,0.0000026505,0.0000026498,0.0000026461, +0.0000026404,0.0000026351,0.0000026296,0.0000026232,0.0000026159, +0.0000026091,0.0000026040,0.0000025987,0.0000025916,0.0000025857, +0.0000025812,0.0000025780,0.0000025735,0.0000025685,0.0000025619, +0.0000025516,0.0000025425,0.0000025376,0.0000025368,0.0000025396, +0.0000025451,0.0000025505,0.0000025539,0.0000025552,0.0000025538, +0.0000025505,0.0000025454,0.0000025395,0.0000025332,0.0000025305, +0.0000025329,0.0000025370,0.0000025409,0.0000025448,0.0000025447, +0.0000025362,0.0000025187,0.0000024997,0.0000024847,0.0000024711, +0.0000024727,0.0000024881,0.0000024978,0.0000024982,0.0000024974, +0.0000025060,0.0000025160,0.0000025181,0.0000025340,0.0000025565, +0.0000025487,0.0000025294,0.0000025265,0.0000025402,0.0000025635, +0.0000025678,0.0000025775,0.0000026023,0.0000026066,0.0000026129, +0.0000026248,0.0000026248,0.0000026194,0.0000026131,0.0000026097, +0.0000026104,0.0000026115,0.0000026091,0.0000026024,0.0000025934, +0.0000025875,0.0000025834,0.0000025792,0.0000025762,0.0000025813, +0.0000025919,0.0000026000,0.0000026024,0.0000026004,0.0000025998, +0.0000026069,0.0000026280,0.0000026510,0.0000026632,0.0000026682, +0.0000026728,0.0000026766,0.0000026819,0.0000026867,0.0000026883, +0.0000026840,0.0000026742,0.0000026682,0.0000026755,0.0000026918, +0.0000026989,0.0000027005,0.0000027013,0.0000027103,0.0000027435, +0.0000027881,0.0000028049,0.0000028021,0.0000027996,0.0000028126, +0.0000028312,0.0000028323,0.0000028223,0.0000028145,0.0000028002, +0.0000027811,0.0000027847,0.0000028018,0.0000028134,0.0000028143, +0.0000028116,0.0000028073,0.0000028031,0.0000028016,0.0000027997, +0.0000027980,0.0000027963,0.0000027976,0.0000028022,0.0000028091, +0.0000028150,0.0000028190,0.0000028200,0.0000028211,0.0000028227, +0.0000028242,0.0000028269,0.0000028300,0.0000028347,0.0000028404, +0.0000028459,0.0000028510,0.0000028547,0.0000028604,0.0000028656, +0.0000028693,0.0000028699,0.0000028684,0.0000028628,0.0000028539, +0.0000028455,0.0000028362,0.0000028295,0.0000028218,0.0000028131, +0.0000028058,0.0000028002,0.0000027984,0.0000028006,0.0000028073, +0.0000028178,0.0000028320,0.0000028450,0.0000028600,0.0000028776, +0.0000028906,0.0000028968,0.0000029001,0.0000028977,0.0000028921, +0.0000028871,0.0000028816,0.0000028768,0.0000028706,0.0000028611, +0.0000028521,0.0000028466,0.0000028410,0.0000028283,0.0000028146, +0.0000028111,0.0000028148,0.0000028212,0.0000028305,0.0000028416, +0.0000028547,0.0000028654,0.0000028722,0.0000028742,0.0000028739, +0.0000028716,0.0000028674,0.0000028628,0.0000028611,0.0000028602, +0.0000028587,0.0000028565,0.0000028535,0.0000028497,0.0000028457, +0.0000028403,0.0000028337,0.0000028272,0.0000028215,0.0000028174, +0.0000028153,0.0000028150,0.0000028171,0.0000028202,0.0000028216, +0.0000028214,0.0000028188,0.0000028152,0.0000028134,0.0000028122, +0.0000028119,0.0000028108,0.0000028080,0.0000028028,0.0000027959, +0.0000027896,0.0000027855,0.0000027839,0.0000027839,0.0000027846, +0.0000027860,0.0000027922,0.0000028044,0.0000028182,0.0000028290, +0.0000028350,0.0000028386,0.0000028395,0.0000028353,0.0000028301, +0.0000028292,0.0000028316,0.0000028340,0.0000028344,0.0000028342, +0.0000028352,0.0000028351,0.0000028330,0.0000028294,0.0000028255, +0.0000028239,0.0000028256,0.0000028284,0.0000028322,0.0000028352, +0.0000028350,0.0000028323,0.0000028298,0.0000028286,0.0000028274, +0.0000028249,0.0000028218,0.0000028205,0.0000028205,0.0000028201, +0.0000028183,0.0000028143,0.0000028097,0.0000028052,0.0000028021, +0.0000028008,0.0000028000,0.0000027995,0.0000027992,0.0000027987, +0.0000027962,0.0000027916,0.0000027846,0.0000027765,0.0000027704, +0.0000027676,0.0000027681,0.0000027714,0.0000027751,0.0000027768, +0.0000027759,0.0000027736,0.0000027726,0.0000027734,0.0000027723, +0.0000027695,0.0000027695,0.0000027730,0.0000027777,0.0000027822, +0.0000027876,0.0000027952,0.0000028017,0.0000028032,0.0000028009, +0.0000027970,0.0000027934,0.0000027898,0.0000027854,0.0000027782, +0.0000027686,0.0000027611,0.0000027608,0.0000027677,0.0000027790, +0.0000027881,0.0000027925,0.0000027918,0.0000027877,0.0000027846, +0.0000027848,0.0000027885,0.0000027934,0.0000028000,0.0000028104, +0.0000028194,0.0000028197,0.0000028150,0.0000028057,0.0000027981, +0.0000027926,0.0000027809,0.0000027553,0.0000027279,0.0000027145, +0.0000027130,0.0000027194,0.0000027266,0.0000027317,0.0000027417, +0.0000027564,0.0000027637,0.0000027613,0.0000027536,0.0000027432, +0.0000027361,0.0000027364,0.0000027457,0.0000027563,0.0000027634, +0.0000027674,0.0000027686,0.0000027691,0.0000027694,0.0000027711, +0.0000027735,0.0000027727,0.0000027695,0.0000027659,0.0000027628, +0.0000027559,0.0000027440,0.0000027317,0.0000027205,0.0000027055, +0.0000026849,0.0000026610,0.0000026501,0.0000026566,0.0000026813, +0.0000027164,0.0000027476,0.0000027659,0.0000027709,0.0000027665, +0.0000027600,0.0000027583,0.0000027587,0.0000027575,0.0000027580, +0.0000027654,0.0000027853,0.0000028078,0.0000028150,0.0000028118, +0.0000028131,0.0000028208,0.0000028343,0.0000028446,0.0000028448, +0.0000028352,0.0000028332,0.0000028390,0.0000028297,0.0000028029, +0.0000028003,0.0000028208,0.0000028466,0.0000028531,0.0000028486, +0.0000028394,0.0000028287,0.0000028180,0.0000028193,0.0000028275, +0.0000028311,0.0000028278,0.0000028146,0.0000028031,0.0000028036, +0.0000028047,0.0000027868,0.0000027745,0.0000027764,0.0000027823, +0.0000027888,0.0000028009,0.0000028118,0.0000028157,0.0000028168, +0.0000028225,0.0000028301,0.0000028376,0.0000028516,0.0000028693, +0.0000028757,0.0000028543,0.0000028321,0.0000028410,0.0000028581, +0.0000028715,0.0000028805,0.0000028819,0.0000028783,0.0000028762, +0.0000028781,0.0000028816,0.0000028864,0.0000028962,0.0000029073, +0.0000029058,0.0000029001,0.0000029071,0.0000029139,0.0000029097, +0.0000028845,0.0000028669,0.0000028639,0.0000028745,0.0000028742, +0.0000028514,0.0000028285,0.0000028304,0.0000028346,0.0000028339, +0.0000028282,0.0000028196,0.0000028129,0.0000028065,0.0000028051, +0.0000028082,0.0000028104,0.0000028066,0.0000027975,0.0000027934, +0.0000027943,0.0000027961,0.0000027954,0.0000027937,0.0000027932, +0.0000027935,0.0000027932,0.0000027914,0.0000027872,0.0000027798, +0.0000027701,0.0000027628,0.0000027607,0.0000027600,0.0000027580, +0.0000027558,0.0000027547,0.0000027564,0.0000027611,0.0000027668, +0.0000027730,0.0000027778,0.0000027810,0.0000027830,0.0000027833, +0.0000027808,0.0000027772,0.0000027722,0.0000027687,0.0000027686, +0.0000027711,0.0000027742,0.0000027760,0.0000027763,0.0000027765, +0.0000027766,0.0000027748,0.0000027717,0.0000027692,0.0000027694, +0.0000027716,0.0000027717,0.0000027683,0.0000027593,0.0000027471, +0.0000027356,0.0000027274,0.0000027233,0.0000027234,0.0000027258, +0.0000027288,0.0000027317,0.0000027342,0.0000027358,0.0000027357, +0.0000027347,0.0000027338,0.0000027337,0.0000027342,0.0000027353, +0.0000027366,0.0000027379,0.0000027384,0.0000027377,0.0000027348, +0.0000027300,0.0000027240,0.0000027180,0.0000027138,0.0000027130, +0.0000027156,0.0000027224,0.0000027304,0.0000027390,0.0000027466, +0.0000027530,0.0000027566,0.0000027575,0.0000027565,0.0000027530, +0.0000027465,0.0000027385,0.0000027333,0.0000027324,0.0000027329, +0.0000027338,0.0000027337,0.0000027318,0.0000027263,0.0000027173, +0.0000027066,0.0000026962,0.0000026877,0.0000026828,0.0000026810, +0.0000026821,0.0000026824,0.0000026792,0.0000026674,0.0000026501, +0.0000026357,0.0000026252,0.0000026151,0.0000026056,0.0000026014, +0.0000026040,0.0000026099,0.0000026193,0.0000026313,0.0000026453, +0.0000026599,0.0000026737,0.0000026867,0.0000026981,0.0000027052, +0.0000027091,0.0000027110,0.0000027125,0.0000027146,0.0000027189, +0.0000027261,0.0000027346,0.0000027448,0.0000027553,0.0000027637, +0.0000027680,0.0000027686,0.0000027674,0.0000027666,0.0000027669, +0.0000027686,0.0000027728,0.0000027804,0.0000027906,0.0000028018, +0.0000028136,0.0000028248,0.0000028346,0.0000028430,0.0000028508, +0.0000028585,0.0000028664,0.0000028751,0.0000028841,0.0000028889, +0.0000028909,0.0000028877,0.0000028798,0.0000028748,0.0000028767, +0.0000028797,0.0000028792,0.0000028743,0.0000028692,0.0000028684, +0.0000028700,0.0000028729,0.0000028767,0.0000028770,0.0000028700, +0.0000028562,0.0000028449,0.0000028451,0.0000028539,0.0000028581, +0.0000028563,0.0000028546,0.0000028593,0.0000028692,0.0000028764, +0.0000028771,0.0000028716,0.0000028607,0.0000028459,0.0000028320, +0.0000028247,0.0000028256,0.0000028321,0.0000028396,0.0000028438, +0.0000028441,0.0000028396,0.0000028318,0.0000028253,0.0000028232, +0.0000028229,0.0000028207,0.0000028161,0.0000028105,0.0000028056, +0.0000028026,0.0000028005,0.0000027970,0.0000027911,0.0000027840, +0.0000027775,0.0000027726,0.0000027693,0.0000027668,0.0000027649, +0.0000027629,0.0000027603,0.0000027570,0.0000027538,0.0000027514, +0.0000027488,0.0000027452,0.0000027398,0.0000027326,0.0000027243, +0.0000027157,0.0000027076,0.0000027019,0.0000027000,0.0000027017, +0.0000027072,0.0000027140,0.0000027178,0.0000027167,0.0000027173, +0.0000027320,0.0000027576,0.0000027728,0.0000027727,0.0000027660, +0.0000027603,0.0000027591,0.0000027626,0.0000027736,0.0000027790, +0.0000027658,0.0000027431,0.0000027323,0.0000027320,0.0000027288, +0.0000027190,0.0000027163,0.0000027269,0.0000027429,0.0000027463, +0.0000027343,0.0000027314,0.0000027467,0.0000027562,0.0000027526, +0.0000027498,0.0000027468,0.0000027370,0.0000027210,0.0000027092, +0.0000027065,0.0000027067,0.0000027066,0.0000027072,0.0000027088, +0.0000027105,0.0000027108,0.0000027100,0.0000027092,0.0000027080, +0.0000027051,0.0000027014,0.0000026994,0.0000026994,0.0000027023, +0.0000027090,0.0000027165,0.0000027215,0.0000027239,0.0000027254, +0.0000027259,0.0000027259,0.0000027275,0.0000027299,0.0000027310, +0.0000027308,0.0000027287,0.0000027292,0.0000027342,0.0000027339, +0.0000027276,0.0000027217,0.0000027203,0.0000027189,0.0000027155, +0.0000027058,0.0000026927,0.0000026852,0.0000026831,0.0000026819, +0.0000026822,0.0000026830,0.0000026849,0.0000026865,0.0000026870, +0.0000026861,0.0000026840,0.0000026809,0.0000026771,0.0000026724, +0.0000026670,0.0000026616,0.0000026565,0.0000026518,0.0000026474, +0.0000026434,0.0000026417,0.0000026427,0.0000026447,0.0000026451, +0.0000026427,0.0000026375,0.0000026312,0.0000026258,0.0000026195, +0.0000026100,0.0000025965,0.0000025802,0.0000025654,0.0000025562, +0.0000025514,0.0000025477,0.0000025474,0.0000025521,0.0000025598, +0.0000025854,0.0000026257,0.0000026448,0.0000026390,0.0000026325, +0.0000026389,0.0000026485,0.0000026524,0.0000026534,0.0000026547, +0.0000026557,0.0000026542,0.0000026520,0.0000026528,0.0000026562, +0.0000026599,0.0000026650,0.0000026671,0.0000026649,0.0000026581, +0.0000026482,0.0000026389,0.0000026255,0.0000026227,0.0000026225, +0.0000025939,0.0000025970,0.0000026188,0.0000026982,0.0000027390, +0.0000027579,0.0000027766,0.0000027968,0.0000028057,0.0000028093, +0.0000028064,0.0000027999,0.0000027924,0.0000027850,0.0000027791, +0.0000027765,0.0000027743,0.0000027750,0.0000027757,0.0000027757, +0.0000027783,0.0000027822,0.0000027842,0.0000027755,0.0000027653, +0.0000027663,0.0000027744,0.0000027754,0.0000027842,0.0000027860, +0.0000027763,0.0000027600,0.0000027426,0.0000027357,0.0000027418, +0.0000027408,0.0000027369,0.0000027283,0.0000027127,0.0000027003, +0.0000026932,0.0000026885,0.0000026893,0.0000026902,0.0000026919, +0.0000026939,0.0000026961,0.0000026979,0.0000026987,0.0000026989, +0.0000026977,0.0000026942,0.0000026885,0.0000026818,0.0000026733, +0.0000026639,0.0000026571,0.0000026566,0.0000026634,0.0000026754, +0.0000026849,0.0000026816,0.0000026625,0.0000026462,0.0000026383, +0.0000026332,0.0000026301,0.0000026279,0.0000026251,0.0000026212, +0.0000026171,0.0000026155,0.0000026162,0.0000026197,0.0000026255, +0.0000026320,0.0000026376,0.0000026423,0.0000026452,0.0000026455, +0.0000026448,0.0000026446,0.0000026452,0.0000026472,0.0000026491, +0.0000026501,0.0000026489,0.0000026452,0.0000026423,0.0000026390, +0.0000026338,0.0000026275,0.0000026200,0.0000026125,0.0000026066, +0.0000026015,0.0000025955,0.0000025879,0.0000025812,0.0000025770, +0.0000025721,0.0000025658,0.0000025599,0.0000025509,0.0000025396, +0.0000025326,0.0000025320,0.0000025356,0.0000025425,0.0000025491, +0.0000025541,0.0000025568,0.0000025573,0.0000025583,0.0000025582, +0.0000025548,0.0000025482,0.0000025418,0.0000025381,0.0000025382, +0.0000025404,0.0000025439,0.0000025477,0.0000025480,0.0000025423, +0.0000025251,0.0000025062,0.0000024886,0.0000024757,0.0000024743, +0.0000024873,0.0000024975,0.0000024981,0.0000024958,0.0000025024, +0.0000025153,0.0000025186,0.0000025296,0.0000025529,0.0000025482, +0.0000025306,0.0000025283,0.0000025401,0.0000025611,0.0000025649, +0.0000025736,0.0000025972,0.0000026040,0.0000026159,0.0000026265, +0.0000026262,0.0000026208,0.0000026142,0.0000026094,0.0000026085, +0.0000026085,0.0000026063,0.0000025992,0.0000025886,0.0000025809, +0.0000025767,0.0000025737,0.0000025758,0.0000025835,0.0000025921, +0.0000025972,0.0000025973,0.0000025965,0.0000025975,0.0000026065, +0.0000026284,0.0000026502,0.0000026596,0.0000026643,0.0000026692, +0.0000026746,0.0000026795,0.0000026822,0.0000026807,0.0000026730, +0.0000026641,0.0000026647,0.0000026779,0.0000026901,0.0000026944, +0.0000026965,0.0000026971,0.0000027047,0.0000027356,0.0000027767, +0.0000027990,0.0000028007,0.0000027987,0.0000028105,0.0000028275, +0.0000028275,0.0000028188,0.0000028140,0.0000028030,0.0000027845, +0.0000027831,0.0000027981,0.0000028096,0.0000028125,0.0000028129, +0.0000028100,0.0000028063,0.0000028046,0.0000028031,0.0000028011, +0.0000028005,0.0000028011,0.0000028031,0.0000028073,0.0000028102, +0.0000028101,0.0000028094,0.0000028106,0.0000028145,0.0000028209, +0.0000028280,0.0000028352,0.0000028424,0.0000028494,0.0000028549, +0.0000028597,0.0000028627,0.0000028652,0.0000028679,0.0000028686, +0.0000028666,0.0000028597,0.0000028494,0.0000028365,0.0000028244, +0.0000028129,0.0000028050,0.0000027985,0.0000027925,0.0000027860, +0.0000027808,0.0000027796,0.0000027829,0.0000027909,0.0000028025, +0.0000028173,0.0000028320,0.0000028467,0.0000028635,0.0000028769, +0.0000028837,0.0000028861,0.0000028849,0.0000028790,0.0000028738, +0.0000028666,0.0000028591,0.0000028529,0.0000028482,0.0000028458, +0.0000028437,0.0000028405,0.0000028354,0.0000028251,0.0000028130, +0.0000028050,0.0000028021,0.0000028035,0.0000028109,0.0000028235, +0.0000028361,0.0000028449,0.0000028493,0.0000028509,0.0000028500, +0.0000028462,0.0000028415,0.0000028388,0.0000028384,0.0000028389, +0.0000028384,0.0000028373,0.0000028357,0.0000028340,0.0000028312, +0.0000028272,0.0000028225,0.0000028180,0.0000028136,0.0000028103, +0.0000028079,0.0000028066,0.0000028082,0.0000028108,0.0000028121, +0.0000028115,0.0000028104,0.0000028106,0.0000028129,0.0000028164, +0.0000028180,0.0000028177,0.0000028139,0.0000028061,0.0000027975, +0.0000027925,0.0000027908,0.0000027873,0.0000027831,0.0000027783, +0.0000027771,0.0000027836,0.0000027975,0.0000028137,0.0000028260, +0.0000028351,0.0000028406,0.0000028403,0.0000028357,0.0000028326, +0.0000028337,0.0000028358,0.0000028358,0.0000028346,0.0000028348, +0.0000028363,0.0000028369,0.0000028363,0.0000028337,0.0000028308, +0.0000028305,0.0000028323,0.0000028354,0.0000028384,0.0000028387, +0.0000028366,0.0000028336,0.0000028307,0.0000028281,0.0000028257, +0.0000028223,0.0000028191,0.0000028190,0.0000028208,0.0000028208, +0.0000028155,0.0000028085,0.0000028039,0.0000028027,0.0000028023, +0.0000028012,0.0000027989,0.0000027972,0.0000027971,0.0000027971, +0.0000027957,0.0000027910,0.0000027838,0.0000027764,0.0000027708, +0.0000027681,0.0000027691,0.0000027728,0.0000027769,0.0000027789, +0.0000027780,0.0000027742,0.0000027698,0.0000027668,0.0000027647, +0.0000027640,0.0000027663,0.0000027709,0.0000027743,0.0000027763, +0.0000027792,0.0000027849,0.0000027913,0.0000027938,0.0000027923, +0.0000027897,0.0000027873,0.0000027850,0.0000027807,0.0000027734, +0.0000027636,0.0000027568,0.0000027554,0.0000027616,0.0000027717, +0.0000027807,0.0000027856,0.0000027837,0.0000027779,0.0000027716, +0.0000027712,0.0000027747,0.0000027804,0.0000027870,0.0000027973, +0.0000028072,0.0000028097,0.0000028062,0.0000027972,0.0000027893, +0.0000027872,0.0000027806,0.0000027614,0.0000027329,0.0000027144, +0.0000027088,0.0000027106,0.0000027135,0.0000027173,0.0000027274, +0.0000027435,0.0000027548,0.0000027563,0.0000027517,0.0000027418, +0.0000027340,0.0000027345,0.0000027450,0.0000027546,0.0000027614, +0.0000027670,0.0000027693,0.0000027685,0.0000027644,0.0000027620, +0.0000027635,0.0000027644,0.0000027636,0.0000027612,0.0000027581, +0.0000027531,0.0000027440,0.0000027313,0.0000027182,0.0000027056, +0.0000026881,0.0000026618,0.0000026394,0.0000026275,0.0000026427, +0.0000026768,0.0000027148,0.0000027446,0.0000027603,0.0000027621, +0.0000027564,0.0000027520,0.0000027525,0.0000027568,0.0000027615, +0.0000027651,0.0000027755,0.0000027986,0.0000028143,0.0000028122, +0.0000028122,0.0000028193,0.0000028331,0.0000028428,0.0000028425, +0.0000028335,0.0000028340,0.0000028400,0.0000028293,0.0000028029, +0.0000028003,0.0000028170,0.0000028378,0.0000028457,0.0000028435, +0.0000028346,0.0000028213,0.0000028152,0.0000028207,0.0000028322, +0.0000028367,0.0000028351,0.0000028245,0.0000028074,0.0000028022, +0.0000028059,0.0000027946,0.0000027775,0.0000027772,0.0000027824, +0.0000027886,0.0000027960,0.0000028062,0.0000028138,0.0000028184, +0.0000028241,0.0000028306,0.0000028356,0.0000028472,0.0000028669, +0.0000028738,0.0000028470,0.0000028309,0.0000028467,0.0000028633, +0.0000028766,0.0000028818,0.0000028790,0.0000028730,0.0000028736, +0.0000028794,0.0000028871,0.0000028963,0.0000029068,0.0000029120, +0.0000029060,0.0000029034,0.0000029115,0.0000029161,0.0000029093, +0.0000028850,0.0000028694,0.0000028688,0.0000028778,0.0000028722, +0.0000028478,0.0000028280,0.0000028313,0.0000028348,0.0000028342, +0.0000028320,0.0000028274,0.0000028214,0.0000028153,0.0000028143, +0.0000028165,0.0000028169,0.0000028109,0.0000028003,0.0000027953, +0.0000027965,0.0000027995,0.0000027992,0.0000027969,0.0000027949, +0.0000027943,0.0000027942,0.0000027940,0.0000027926,0.0000027891, +0.0000027831,0.0000027760,0.0000027711,0.0000027678,0.0000027636, +0.0000027577,0.0000027531,0.0000027519,0.0000027541,0.0000027598, +0.0000027672,0.0000027729,0.0000027768,0.0000027796,0.0000027808, +0.0000027811,0.0000027805,0.0000027790,0.0000027762,0.0000027726, +0.0000027700,0.0000027698,0.0000027721,0.0000027745,0.0000027746, +0.0000027732,0.0000027722,0.0000027730,0.0000027747,0.0000027746, +0.0000027722,0.0000027701,0.0000027706,0.0000027724,0.0000027725, +0.0000027696,0.0000027612,0.0000027499,0.0000027405,0.0000027352, +0.0000027342,0.0000027349,0.0000027372,0.0000027401,0.0000027412, +0.0000027404,0.0000027380,0.0000027350,0.0000027327,0.0000027320, +0.0000027329,0.0000027353,0.0000027377,0.0000027393,0.0000027400, +0.0000027391,0.0000027358,0.0000027310,0.0000027248,0.0000027177, +0.0000027121,0.0000027107,0.0000027137,0.0000027211,0.0000027313, +0.0000027419,0.0000027503,0.0000027557,0.0000027575,0.0000027579, +0.0000027584,0.0000027581,0.0000027551,0.0000027498,0.0000027451, +0.0000027422,0.0000027400,0.0000027377,0.0000027353,0.0000027314, +0.0000027258,0.0000027192,0.0000027106,0.0000026996,0.0000026882, +0.0000026812,0.0000026799,0.0000026812,0.0000026815,0.0000026767, +0.0000026630,0.0000026477,0.0000026373,0.0000026286,0.0000026181, +0.0000026099,0.0000026080,0.0000026111,0.0000026153,0.0000026225, +0.0000026324,0.0000026434,0.0000026538,0.0000026637,0.0000026738, +0.0000026826,0.0000026902,0.0000026954,0.0000026988,0.0000027010, +0.0000027037,0.0000027075,0.0000027120,0.0000027189,0.0000027289, +0.0000027392,0.0000027466,0.0000027507,0.0000027530,0.0000027547, +0.0000027561,0.0000027581,0.0000027615,0.0000027673,0.0000027757, +0.0000027854,0.0000027952,0.0000028066,0.0000028187,0.0000028299, +0.0000028391,0.0000028461,0.0000028517,0.0000028578,0.0000028648, +0.0000028706,0.0000028743,0.0000028741,0.0000028704,0.0000028680, +0.0000028720,0.0000028783,0.0000028780,0.0000028731,0.0000028673, +0.0000028656,0.0000028671,0.0000028707,0.0000028751,0.0000028784, +0.0000028757,0.0000028658,0.0000028547,0.0000028534,0.0000028604, +0.0000028653,0.0000028636,0.0000028603,0.0000028629,0.0000028721, +0.0000028804,0.0000028818,0.0000028767,0.0000028663,0.0000028517, +0.0000028377,0.0000028303,0.0000028289,0.0000028304,0.0000028344, +0.0000028365,0.0000028348,0.0000028283,0.0000028174,0.0000028056, +0.0000027978,0.0000027942,0.0000027916,0.0000027882,0.0000027829, +0.0000027776,0.0000027742,0.0000027734,0.0000027738,0.0000027729, +0.0000027698,0.0000027658,0.0000027620,0.0000027588,0.0000027558, +0.0000027525,0.0000027488,0.0000027439,0.0000027384,0.0000027338, +0.0000027312,0.0000027309,0.0000027316,0.0000027311,0.0000027275, +0.0000027207,0.0000027121,0.0000027030,0.0000026954,0.0000026905, +0.0000026888,0.0000026922,0.0000027019,0.0000027131,0.0000027175, +0.0000027161,0.0000027197,0.0000027404,0.0000027634,0.0000027696, +0.0000027660,0.0000027604,0.0000027581,0.0000027593,0.0000027673, +0.0000027775,0.0000027739,0.0000027514,0.0000027298,0.0000027230, +0.0000027193,0.0000027127,0.0000027137,0.0000027271,0.0000027406, +0.0000027431,0.0000027336,0.0000027312,0.0000027448,0.0000027556, +0.0000027531,0.0000027511,0.0000027487,0.0000027367,0.0000027196, +0.0000027095,0.0000027054,0.0000027040,0.0000027037,0.0000027039, +0.0000027050,0.0000027072,0.0000027086,0.0000027081,0.0000027073, +0.0000027062,0.0000027046,0.0000027022,0.0000027008,0.0000027011, +0.0000027036,0.0000027088,0.0000027145,0.0000027191,0.0000027218, +0.0000027225,0.0000027223,0.0000027224,0.0000027246,0.0000027279, +0.0000027302,0.0000027311,0.0000027306,0.0000027319,0.0000027360, +0.0000027354,0.0000027288,0.0000027227,0.0000027205,0.0000027189, +0.0000027163,0.0000027109,0.0000026988,0.0000026871,0.0000026819, +0.0000026797,0.0000026790,0.0000026800,0.0000026826,0.0000026843, +0.0000026833,0.0000026812,0.0000026792,0.0000026770,0.0000026742, +0.0000026702,0.0000026657,0.0000026619,0.0000026590,0.0000026562, +0.0000026528,0.0000026498,0.0000026483,0.0000026479,0.0000026469, +0.0000026439,0.0000026389,0.0000026331,0.0000026280,0.0000026252, +0.0000026229,0.0000026170,0.0000026065,0.0000025930,0.0000025786, +0.0000025669,0.0000025592,0.0000025539,0.0000025491,0.0000025451, +0.0000025471,0.0000025508,0.0000025618,0.0000025985,0.0000026367, +0.0000026419,0.0000026347,0.0000026335,0.0000026399,0.0000026474, +0.0000026497,0.0000026510,0.0000026537,0.0000026546,0.0000026545, +0.0000026549,0.0000026565,0.0000026595,0.0000026636,0.0000026677, +0.0000026696,0.0000026682,0.0000026600,0.0000026482,0.0000026363, +0.0000026234,0.0000026260,0.0000026025,0.0000025905,0.0000026061, +0.0000026782,0.0000027261,0.0000027503,0.0000027691,0.0000027923, +0.0000028039,0.0000028077,0.0000028047,0.0000027976,0.0000027902, +0.0000027822,0.0000027781,0.0000027779,0.0000027778,0.0000027772, +0.0000027735,0.0000027734,0.0000027789,0.0000027831,0.0000027806, +0.0000027692,0.0000027649,0.0000027666,0.0000027738,0.0000027736, +0.0000027831,0.0000027822,0.0000027720,0.0000027563,0.0000027386, +0.0000027339,0.0000027394,0.0000027368,0.0000027330,0.0000027257, +0.0000027119,0.0000027004,0.0000026938,0.0000026902,0.0000026978, +0.0000027005,0.0000027030,0.0000027053,0.0000027074,0.0000027089, +0.0000027098,0.0000027108,0.0000027111,0.0000027084,0.0000027009, +0.0000026901,0.0000026795,0.0000026691,0.0000026577,0.0000026512, +0.0000026520,0.0000026601,0.0000026719,0.0000026801,0.0000026737, +0.0000026551,0.0000026397,0.0000026342,0.0000026330,0.0000026334, +0.0000026325,0.0000026302,0.0000026273,0.0000026251,0.0000026244, +0.0000026256,0.0000026286,0.0000026327,0.0000026370,0.0000026410, +0.0000026438,0.0000026445,0.0000026445,0.0000026452,0.0000026463, +0.0000026473,0.0000026481,0.0000026485,0.0000026473,0.0000026455, +0.0000026447,0.0000026407,0.0000026346,0.0000026273,0.0000026196, +0.0000026123,0.0000026069,0.0000026024,0.0000025981,0.0000025915, +0.0000025829,0.0000025761,0.0000025703,0.0000025630,0.0000025566, +0.0000025494,0.0000025395,0.0000025307,0.0000025283,0.0000025308, +0.0000025367,0.0000025443,0.0000025520,0.0000025572,0.0000025586, +0.0000025614,0.0000025648,0.0000025635,0.0000025581,0.0000025505, +0.0000025429,0.0000025391,0.0000025388,0.0000025410,0.0000025438, +0.0000025462,0.0000025458,0.0000025398,0.0000025289,0.0000025115, +0.0000024966,0.0000024852,0.0000024808,0.0000024870,0.0000024958, +0.0000024966,0.0000024936,0.0000025005,0.0000025146,0.0000025187, +0.0000025260,0.0000025497,0.0000025488,0.0000025330,0.0000025304, +0.0000025394,0.0000025583,0.0000025615,0.0000025686,0.0000025931, +0.0000026049,0.0000026212,0.0000026303,0.0000026290,0.0000026245, +0.0000026163,0.0000026085,0.0000026054,0.0000026042,0.0000026009, +0.0000025916,0.0000025785,0.0000025694,0.0000025670,0.0000025685, +0.0000025737,0.0000025814,0.0000025872,0.0000025904,0.0000025932, +0.0000025959,0.0000025999,0.0000026120,0.0000026333,0.0000026505, +0.0000026559,0.0000026586,0.0000026643,0.0000026706,0.0000026745, +0.0000026749,0.0000026705,0.0000026620,0.0000026588,0.0000026661, +0.0000026791,0.0000026868,0.0000026904,0.0000026927,0.0000026928, +0.0000027007,0.0000027280,0.0000027647,0.0000027919,0.0000027987, +0.0000027972,0.0000028079,0.0000028224,0.0000028221,0.0000028150, +0.0000028128,0.0000028069,0.0000027917,0.0000027856,0.0000027957, +0.0000028055,0.0000028099,0.0000028121,0.0000028100,0.0000028074, +0.0000028054,0.0000028034,0.0000028014,0.0000028023,0.0000028023, +0.0000028041,0.0000028075,0.0000028102,0.0000028113,0.0000028134, +0.0000028175,0.0000028251,0.0000028336,0.0000028401,0.0000028446, +0.0000028479,0.0000028509,0.0000028534,0.0000028544,0.0000028541, +0.0000028524,0.0000028505,0.0000028475,0.0000028441,0.0000028361, +0.0000028267,0.0000028168,0.0000028095,0.0000028032,0.0000027989, +0.0000027942,0.0000027903,0.0000027855,0.0000027805,0.0000027776, +0.0000027789,0.0000027868,0.0000027982,0.0000028111,0.0000028258, +0.0000028401,0.0000028533,0.0000028648,0.0000028714,0.0000028735, +0.0000028729,0.0000028675,0.0000028620,0.0000028554,0.0000028469, +0.0000028373,0.0000028295,0.0000028282,0.0000028310,0.0000028342, +0.0000028338,0.0000028290,0.0000028226,0.0000028137,0.0000028056, +0.0000028008,0.0000028006,0.0000028066,0.0000028140,0.0000028199, +0.0000028242,0.0000028271,0.0000028268,0.0000028241,0.0000028205, +0.0000028189,0.0000028205,0.0000028241,0.0000028269,0.0000028283, +0.0000028289,0.0000028284,0.0000028275,0.0000028260,0.0000028236, +0.0000028202,0.0000028169,0.0000028139,0.0000028107,0.0000028076, +0.0000028055,0.0000028049,0.0000028040,0.0000027998,0.0000027974, +0.0000027969,0.0000028005,0.0000028081,0.0000028153,0.0000028196, +0.0000028202,0.0000028163,0.0000028066,0.0000027985,0.0000027971, +0.0000027962,0.0000027908,0.0000027810,0.0000027723,0.0000027688, +0.0000027757,0.0000027931,0.0000028109,0.0000028255,0.0000028365, +0.0000028410,0.0000028401,0.0000028372,0.0000028366,0.0000028372, +0.0000028366,0.0000028347,0.0000028335,0.0000028349,0.0000028379, +0.0000028397,0.0000028387,0.0000028361,0.0000028346,0.0000028351, +0.0000028366,0.0000028387,0.0000028398,0.0000028385,0.0000028357, +0.0000028318,0.0000028274,0.0000028237,0.0000028220,0.0000028201, +0.0000028187,0.0000028193,0.0000028207,0.0000028182,0.0000028111, +0.0000028054,0.0000028041,0.0000028048,0.0000028049,0.0000028027, +0.0000027993,0.0000027973,0.0000027972,0.0000027974,0.0000027959, +0.0000027913,0.0000027848,0.0000027777,0.0000027718,0.0000027703, +0.0000027725,0.0000027769,0.0000027795,0.0000027796,0.0000027773, +0.0000027722,0.0000027659,0.0000027620,0.0000027620,0.0000027634, +0.0000027659,0.0000027691,0.0000027701,0.0000027700,0.0000027693, +0.0000027719,0.0000027780,0.0000027828,0.0000027841,0.0000027838, +0.0000027835,0.0000027818,0.0000027776,0.0000027708,0.0000027623, +0.0000027561,0.0000027557,0.0000027599,0.0000027659,0.0000027722, +0.0000027765,0.0000027744,0.0000027680,0.0000027604,0.0000027576, +0.0000027600,0.0000027659,0.0000027728,0.0000027817,0.0000027908, +0.0000027952,0.0000027939,0.0000027877,0.0000027813,0.0000027801, +0.0000027774,0.0000027637,0.0000027372,0.0000027151,0.0000027042, +0.0000027006,0.0000027003,0.0000027040,0.0000027143,0.0000027317, +0.0000027460,0.0000027505,0.0000027484,0.0000027393,0.0000027315, +0.0000027335,0.0000027447,0.0000027530,0.0000027586,0.0000027648, +0.0000027684,0.0000027673,0.0000027612,0.0000027554,0.0000027541, +0.0000027543,0.0000027553,0.0000027555,0.0000027536,0.0000027494, +0.0000027426,0.0000027316,0.0000027177,0.0000027056,0.0000026952, +0.0000026775,0.0000026485,0.0000026232,0.0000026223,0.0000026409, +0.0000026718,0.0000027065,0.0000027351,0.0000027499,0.0000027533, +0.0000027503,0.0000027489,0.0000027544,0.0000027628,0.0000027658, +0.0000027689,0.0000027868,0.0000028106,0.0000028123,0.0000028112, +0.0000028174,0.0000028304,0.0000028389,0.0000028381,0.0000028301, +0.0000028325,0.0000028395,0.0000028290,0.0000028044,0.0000028007, +0.0000028146,0.0000028313,0.0000028396,0.0000028393,0.0000028311, +0.0000028192,0.0000028160,0.0000028234,0.0000028352,0.0000028391, +0.0000028385,0.0000028319,0.0000028132,0.0000028009,0.0000028040, +0.0000028010,0.0000027840,0.0000027805,0.0000027845,0.0000027908, +0.0000027948,0.0000028007,0.0000028106,0.0000028197,0.0000028264, +0.0000028318,0.0000028342,0.0000028423,0.0000028636,0.0000028722, +0.0000028428,0.0000028318,0.0000028508,0.0000028669,0.0000028784, +0.0000028798,0.0000028744,0.0000028719,0.0000028780,0.0000028897, +0.0000029005,0.0000029098,0.0000029152,0.0000029128,0.0000029060, +0.0000029091,0.0000029163,0.0000029176,0.0000029071,0.0000028847, +0.0000028716,0.0000028733,0.0000028792,0.0000028686,0.0000028447, +0.0000028284,0.0000028324,0.0000028354,0.0000028348,0.0000028350, +0.0000028330,0.0000028278,0.0000028231,0.0000028230,0.0000028235, +0.0000028204,0.0000028124,0.0000028013,0.0000027966,0.0000027984, +0.0000028015,0.0000028010,0.0000027970,0.0000027937,0.0000027924, +0.0000027918,0.0000027916,0.0000027912,0.0000027898,0.0000027866, +0.0000027830,0.0000027800,0.0000027780,0.0000027749,0.0000027692, +0.0000027621,0.0000027566,0.0000027549,0.0000027565,0.0000027613, +0.0000027664,0.0000027702,0.0000027737,0.0000027766,0.0000027785, +0.0000027788,0.0000027776,0.0000027752,0.0000027727,0.0000027705, +0.0000027691,0.0000027687,0.0000027691,0.0000027703,0.0000027707, +0.0000027695,0.0000027678,0.0000027685,0.0000027723,0.0000027761, +0.0000027768,0.0000027749,0.0000027715,0.0000027698,0.0000027704, +0.0000027725,0.0000027732,0.0000027730,0.0000027708,0.0000027657, +0.0000027596,0.0000027536,0.0000027493,0.0000027468,0.0000027450, +0.0000027439,0.0000027440,0.0000027440,0.0000027427,0.0000027391, +0.0000027352,0.0000027326,0.0000027319,0.0000027329,0.0000027345, +0.0000027353,0.0000027347,0.0000027334,0.0000027314,0.0000027281, +0.0000027216,0.0000027150,0.0000027128,0.0000027157,0.0000027241, +0.0000027358,0.0000027464,0.0000027538,0.0000027568,0.0000027567, +0.0000027568,0.0000027580,0.0000027591,0.0000027588,0.0000027564, +0.0000027538,0.0000027519,0.0000027496,0.0000027457,0.0000027396, +0.0000027319,0.0000027246,0.0000027191,0.0000027129,0.0000027034, +0.0000026920,0.0000026827,0.0000026806,0.0000026812,0.0000026811, +0.0000026741,0.0000026601,0.0000026487,0.0000026425,0.0000026353, +0.0000026259,0.0000026193,0.0000026175,0.0000026180,0.0000026217, +0.0000026261,0.0000026318,0.0000026377,0.0000026433,0.0000026494, +0.0000026566,0.0000026649,0.0000026730,0.0000026805,0.0000026870, +0.0000026919,0.0000026943,0.0000026959,0.0000026994,0.0000027060, +0.0000027138,0.0000027198,0.0000027239,0.0000027283,0.0000027337, +0.0000027388,0.0000027435,0.0000027489,0.0000027552,0.0000027631, +0.0000027719,0.0000027800,0.0000027890,0.0000028004,0.0000028126, +0.0000028235,0.0000028318,0.0000028379,0.0000028435,0.0000028484, +0.0000028513,0.0000028525,0.0000028505,0.0000028454,0.0000028431, +0.0000028493,0.0000028622,0.0000028696,0.0000028708,0.0000028674, +0.0000028676,0.0000028705,0.0000028746,0.0000028781,0.0000028809, +0.0000028806,0.0000028738,0.0000028633,0.0000028611,0.0000028673, +0.0000028748,0.0000028759,0.0000028726,0.0000028729,0.0000028798, +0.0000028874,0.0000028891,0.0000028840,0.0000028730,0.0000028583, +0.0000028448,0.0000028380,0.0000028330,0.0000028290,0.0000028258, +0.0000028243,0.0000028205,0.0000028127,0.0000028005,0.0000027863, +0.0000027748,0.0000027684,0.0000027658,0.0000027650,0.0000027629, +0.0000027605,0.0000027592,0.0000027594,0.0000027602,0.0000027609, +0.0000027594,0.0000027556,0.0000027496,0.0000027420,0.0000027338, +0.0000027264,0.0000027194,0.0000027127,0.0000027052,0.0000026977, +0.0000026908,0.0000026863,0.0000026841,0.0000026844,0.0000026860, +0.0000026875,0.0000026859,0.0000026823,0.0000026803,0.0000026815, +0.0000026842,0.0000026863,0.0000026913,0.0000027024,0.0000027135, +0.0000027154,0.0000027139,0.0000027267,0.0000027525,0.0000027670, +0.0000027654,0.0000027593,0.0000027559,0.0000027567,0.0000027626, +0.0000027735,0.0000027782,0.0000027633,0.0000027370,0.0000027209, +0.0000027141,0.0000027089,0.0000027128,0.0000027267,0.0000027377, +0.0000027385,0.0000027319,0.0000027294,0.0000027404,0.0000027540, +0.0000027533,0.0000027505,0.0000027498,0.0000027410,0.0000027248, +0.0000027134,0.0000027074,0.0000027045,0.0000027040,0.0000027040, +0.0000027042,0.0000027057,0.0000027078,0.0000027088,0.0000027086, +0.0000027081,0.0000027074,0.0000027065,0.0000027052,0.0000027049, +0.0000027059,0.0000027088,0.0000027127,0.0000027164,0.0000027190, +0.0000027196,0.0000027193,0.0000027199,0.0000027225,0.0000027255, +0.0000027281,0.0000027299,0.0000027318,0.0000027350,0.0000027382, +0.0000027361,0.0000027286,0.0000027223,0.0000027196,0.0000027187, +0.0000027157,0.0000027122,0.0000027039,0.0000026911,0.0000026824, +0.0000026787,0.0000026764,0.0000026767,0.0000026792,0.0000026811, +0.0000026800,0.0000026774,0.0000026765,0.0000026763,0.0000026747, +0.0000026709,0.0000026662,0.0000026620,0.0000026594,0.0000026577, +0.0000026561,0.0000026542,0.0000026530,0.0000026527,0.0000026514, +0.0000026469,0.0000026391,0.0000026305,0.0000026248,0.0000026223, +0.0000026207,0.0000026173,0.0000026102,0.0000026001,0.0000025886, +0.0000025776,0.0000025692,0.0000025631,0.0000025568,0.0000025506, +0.0000025449,0.0000025442,0.0000025459,0.0000025485,0.0000025706, +0.0000026144,0.0000026406,0.0000026408,0.0000026338,0.0000026333, +0.0000026390,0.0000026449,0.0000026480,0.0000026504,0.0000026528, +0.0000026552,0.0000026573,0.0000026590,0.0000026609,0.0000026635, +0.0000026674,0.0000026710,0.0000026726,0.0000026690,0.0000026555, +0.0000026443,0.0000026279,0.0000026261,0.0000026116,0.0000025877, +0.0000025965,0.0000026561,0.0000027134,0.0000027428,0.0000027611, +0.0000027876,0.0000028021,0.0000028058,0.0000028031,0.0000027953, +0.0000027871,0.0000027795,0.0000027776,0.0000027795,0.0000027791, +0.0000027750,0.0000027689,0.0000027724,0.0000027812,0.0000027826, +0.0000027757,0.0000027675,0.0000027650,0.0000027679,0.0000027710, +0.0000027722,0.0000027806,0.0000027784,0.0000027680,0.0000027524, +0.0000027351,0.0000027330,0.0000027375,0.0000027330,0.0000027299, +0.0000027246,0.0000027131,0.0000027028,0.0000026977,0.0000026966, +0.0000027068,0.0000027100,0.0000027126,0.0000027145,0.0000027159, +0.0000027167,0.0000027170,0.0000027175,0.0000027182,0.0000027179, +0.0000027132,0.0000027024,0.0000026887,0.0000026755,0.0000026629, +0.0000026518,0.0000026455,0.0000026472,0.0000026542,0.0000026636, +0.0000026714,0.0000026664,0.0000026516,0.0000026377,0.0000026331, +0.0000026341,0.0000026355,0.0000026365,0.0000026362,0.0000026356, +0.0000026350,0.0000026353,0.0000026368,0.0000026386,0.0000026404, +0.0000026427,0.0000026442,0.0000026443,0.0000026441,0.0000026448, +0.0000026456,0.0000026460,0.0000026471,0.0000026482,0.0000026475, +0.0000026462,0.0000026449,0.0000026395,0.0000026326,0.0000026258, +0.0000026198,0.0000026143,0.0000026095,0.0000026053,0.0000026012, +0.0000025952,0.0000025866,0.0000025772,0.0000025681,0.0000025594, +0.0000025526,0.0000025466,0.0000025394,0.0000025317,0.0000025272, +0.0000025279,0.0000025315,0.0000025362,0.0000025450,0.0000025542, +0.0000025576,0.0000025608,0.0000025661,0.0000025672,0.0000025642, +0.0000025573,0.0000025483,0.0000025414,0.0000025384,0.0000025394, +0.0000025411,0.0000025420,0.0000025415,0.0000025395,0.0000025353, +0.0000025274,0.0000025171,0.0000025064,0.0000024953,0.0000024877, +0.0000024884,0.0000024923,0.0000024937,0.0000024919,0.0000025007, +0.0000025139,0.0000025182,0.0000025235,0.0000025473,0.0000025493, +0.0000025361,0.0000025324,0.0000025381,0.0000025549,0.0000025578, +0.0000025643,0.0000025911,0.0000026079,0.0000026262,0.0000026337, +0.0000026321,0.0000026278,0.0000026183,0.0000026072,0.0000026015, +0.0000025991,0.0000025946,0.0000025831,0.0000025684,0.0000025601, +0.0000025591,0.0000025637,0.0000025690,0.0000025752,0.0000025803, +0.0000025858,0.0000025927,0.0000025999,0.0000026077,0.0000026227, +0.0000026413,0.0000026509,0.0000026516,0.0000026528,0.0000026590, +0.0000026650,0.0000026672,0.0000026659,0.0000026602,0.0000026546, +0.0000026575,0.0000026681,0.0000026780,0.0000026831,0.0000026871, +0.0000026885,0.0000026890,0.0000026984,0.0000027212,0.0000027535, +0.0000027833,0.0000027945,0.0000027952,0.0000028051,0.0000028168, +0.0000028163,0.0000028109,0.0000028111,0.0000028094,0.0000028003, +0.0000027936,0.0000027978,0.0000028038,0.0000028096,0.0000028135, +0.0000028149,0.0000028159,0.0000028159,0.0000028143,0.0000028146, +0.0000028179,0.0000028201,0.0000028234,0.0000028260,0.0000028289, +0.0000028305,0.0000028304,0.0000028307,0.0000028323,0.0000028362, +0.0000028390,0.0000028390,0.0000028371,0.0000028334,0.0000028294, +0.0000028251,0.0000028215,0.0000028201,0.0000028214,0.0000028233, +0.0000028243,0.0000028215,0.0000028166,0.0000028115,0.0000028078, +0.0000028024,0.0000027986,0.0000027939,0.0000027897,0.0000027852, +0.0000027821,0.0000027790,0.0000027787,0.0000027839,0.0000027953, +0.0000028074,0.0000028215,0.0000028359,0.0000028471,0.0000028554, +0.0000028602,0.0000028631,0.0000028632,0.0000028587,0.0000028527, +0.0000028465,0.0000028387,0.0000028295,0.0000028195,0.0000028133, +0.0000028122,0.0000028158,0.0000028205,0.0000028223,0.0000028210, +0.0000028168,0.0000028113,0.0000028068,0.0000028060,0.0000028081, +0.0000028132,0.0000028179,0.0000028222,0.0000028258,0.0000028260, +0.0000028240,0.0000028203,0.0000028185,0.0000028203,0.0000028243, +0.0000028272,0.0000028292,0.0000028300,0.0000028297,0.0000028286, +0.0000028275,0.0000028256,0.0000028226,0.0000028197,0.0000028182, +0.0000028170,0.0000028154,0.0000028138,0.0000028119,0.0000028083, +0.0000028024,0.0000027961,0.0000027911,0.0000027892,0.0000027955, +0.0000028048,0.0000028125,0.0000028169,0.0000028173,0.0000028125, +0.0000028041,0.0000028001,0.0000028014,0.0000028002,0.0000027919, +0.0000027785,0.0000027665,0.0000027629,0.0000027732,0.0000027926, +0.0000028116,0.0000028271,0.0000028371,0.0000028401,0.0000028392, +0.0000028378,0.0000028370,0.0000028354,0.0000028332,0.0000028316, +0.0000028321,0.0000028352,0.0000028390,0.0000028400,0.0000028385, +0.0000028366,0.0000028357,0.0000028359,0.0000028371,0.0000028381, +0.0000028373,0.0000028353,0.0000028322,0.0000028276,0.0000028226, +0.0000028193,0.0000028186,0.0000028189,0.0000028197,0.0000028207, +0.0000028199,0.0000028150,0.0000028093,0.0000028068,0.0000028071, +0.0000028080,0.0000028071,0.0000028039,0.0000028001,0.0000027982, +0.0000027982,0.0000027987,0.0000027982,0.0000027950,0.0000027879, +0.0000027795,0.0000027746,0.0000027747,0.0000027781,0.0000027806, +0.0000027803,0.0000027776,0.0000027735,0.0000027683,0.0000027639, +0.0000027622,0.0000027632,0.0000027651,0.0000027671,0.0000027679, +0.0000027671,0.0000027650,0.0000027610,0.0000027597,0.0000027646, +0.0000027723,0.0000027774,0.0000027797,0.0000027805,0.0000027791, +0.0000027752,0.0000027696,0.0000027627,0.0000027581,0.0000027586, +0.0000027607,0.0000027623,0.0000027656,0.0000027682,0.0000027663, +0.0000027602,0.0000027532,0.0000027492,0.0000027495,0.0000027534, +0.0000027596,0.0000027671,0.0000027744,0.0000027797,0.0000027816, +0.0000027792,0.0000027744,0.0000027725,0.0000027713,0.0000027601, +0.0000027381,0.0000027141,0.0000026980,0.0000026897,0.0000026875, +0.0000026923,0.0000027035,0.0000027222,0.0000027382,0.0000027443, +0.0000027439,0.0000027361,0.0000027291,0.0000027327,0.0000027441, +0.0000027512,0.0000027552,0.0000027603,0.0000027644,0.0000027637, +0.0000027574,0.0000027503,0.0000027472,0.0000027465,0.0000027477, +0.0000027492,0.0000027492,0.0000027466,0.0000027418,0.0000027329, +0.0000027201,0.0000027083,0.0000027019,0.0000026955,0.0000026753, +0.0000026449,0.0000026267,0.0000026252,0.0000026364,0.0000026619, +0.0000026944,0.0000027230,0.0000027424,0.0000027499,0.0000027494, +0.0000027519,0.0000027602,0.0000027657,0.0000027665,0.0000027750, +0.0000028028,0.0000028122,0.0000028101,0.0000028154,0.0000028266, +0.0000028335,0.0000028326,0.0000028252,0.0000028286,0.0000028368, +0.0000028289,0.0000028076,0.0000028016,0.0000028130,0.0000028276, +0.0000028358,0.0000028364,0.0000028296,0.0000028205,0.0000028200, +0.0000028278,0.0000028365,0.0000028391,0.0000028387,0.0000028345, +0.0000028192,0.0000028009,0.0000027986,0.0000028024,0.0000027918, +0.0000027862,0.0000027888,0.0000027945,0.0000027968,0.0000027989, +0.0000028073,0.0000028191,0.0000028274,0.0000028331,0.0000028337, +0.0000028375,0.0000028588,0.0000028714,0.0000028427,0.0000028332, +0.0000028527,0.0000028685,0.0000028775,0.0000028760,0.0000028729, +0.0000028767,0.0000028898,0.0000029044,0.0000029146,0.0000029189, +0.0000029168,0.0000029114,0.0000029089,0.0000029157,0.0000029198, +0.0000029180,0.0000029040,0.0000028837,0.0000028737,0.0000028774, +0.0000028792,0.0000028649,0.0000028419,0.0000028290,0.0000028335, +0.0000028364,0.0000028362,0.0000028373,0.0000028358,0.0000028316, +0.0000028294,0.0000028297,0.0000028271,0.0000028212,0.0000028124, +0.0000028031,0.0000027988,0.0000028014,0.0000028040,0.0000028013, +0.0000027948,0.0000027897,0.0000027876,0.0000027865,0.0000027862, +0.0000027854,0.0000027838,0.0000027817,0.0000027799,0.0000027794, +0.0000027802,0.0000027807,0.0000027784,0.0000027734,0.0000027669, +0.0000027622,0.0000027620,0.0000027642,0.0000027664,0.0000027676, +0.0000027681,0.0000027687,0.0000027693,0.0000027703,0.0000027715, +0.0000027718,0.0000027702,0.0000027668,0.0000027642,0.0000027641, +0.0000027652,0.0000027654,0.0000027650,0.0000027643,0.0000027635, +0.0000027628,0.0000027632,0.0000027663,0.0000027712,0.0000027752, +0.0000027761,0.0000027742,0.0000027708,0.0000027686,0.0000027685, +0.0000027712,0.0000027755,0.0000027801,0.0000027828,0.0000027826, +0.0000027801,0.0000027755,0.0000027691,0.0000027616,0.0000027547, +0.0000027504,0.0000027490,0.0000027494,0.0000027496,0.0000027485, +0.0000027450,0.0000027398,0.0000027349,0.0000027313,0.0000027290, +0.0000027281,0.0000027280,0.0000027275,0.0000027275,0.0000027267, +0.0000027230,0.0000027189,0.0000027178,0.0000027213,0.0000027295, +0.0000027393,0.0000027478,0.0000027533,0.0000027556,0.0000027567, +0.0000027582,0.0000027601,0.0000027610,0.0000027602,0.0000027589, +0.0000027589,0.0000027590,0.0000027581,0.0000027543,0.0000027467, +0.0000027362,0.0000027260,0.0000027184,0.0000027130,0.0000027074, +0.0000026988,0.0000026887,0.0000026823,0.0000026815,0.0000026803, +0.0000026727,0.0000026612,0.0000026539,0.0000026504,0.0000026446, +0.0000026366,0.0000026308,0.0000026277,0.0000026268,0.0000026267, +0.0000026288,0.0000026314,0.0000026335,0.0000026351,0.0000026374, +0.0000026416,0.0000026478,0.0000026563,0.0000026661,0.0000026736, +0.0000026772,0.0000026796,0.0000026841,0.0000026900,0.0000026956, +0.0000026990,0.0000027003,0.0000027024,0.0000027066,0.0000027117, +0.0000027167,0.0000027230,0.0000027313,0.0000027423,0.0000027546, +0.0000027650,0.0000027732,0.0000027824,0.0000027923,0.0000028024, +0.0000028106,0.0000028171,0.0000028235,0.0000028295,0.0000028328, +0.0000028328,0.0000028296,0.0000028212,0.0000028136,0.0000028147, +0.0000028280,0.0000028435,0.0000028533,0.0000028580,0.0000028626, +0.0000028703,0.0000028770,0.0000028809,0.0000028836,0.0000028844, +0.0000028796,0.0000028703,0.0000028675,0.0000028731,0.0000028840, +0.0000028885,0.0000028871,0.0000028864,0.0000028901,0.0000028952, +0.0000028961,0.0000028902,0.0000028776,0.0000028623,0.0000028507, +0.0000028424,0.0000028341,0.0000028256,0.0000028178,0.0000028114, +0.0000028066,0.0000027997,0.0000027896,0.0000027771,0.0000027657, +0.0000027576,0.0000027537,0.0000027527,0.0000027519,0.0000027504, +0.0000027491,0.0000027480,0.0000027463,0.0000027438,0.0000027402, +0.0000027356,0.0000027301,0.0000027237,0.0000027177,0.0000027133, +0.0000027091,0.0000027037,0.0000026980,0.0000026911,0.0000026835, +0.0000026764,0.0000026707,0.0000026648,0.0000026582,0.0000026514, +0.0000026460,0.0000026427,0.0000026432,0.0000026507,0.0000026634, +0.0000026760,0.0000026851,0.0000026935,0.0000027042,0.0000027113, +0.0000027115,0.0000027175,0.0000027422,0.0000027636,0.0000027656, +0.0000027584,0.0000027529,0.0000027536,0.0000027591,0.0000027693, +0.0000027783,0.0000027729,0.0000027511,0.0000027297,0.0000027158, +0.0000027074,0.0000027116,0.0000027252,0.0000027334,0.0000027332, +0.0000027290,0.0000027269,0.0000027348,0.0000027503,0.0000027535, +0.0000027486,0.0000027485,0.0000027465,0.0000027357,0.0000027241, +0.0000027162,0.0000027116,0.0000027097,0.0000027088,0.0000027086, +0.0000027094,0.0000027111,0.0000027116,0.0000027114,0.0000027109, +0.0000027107,0.0000027102,0.0000027090,0.0000027079,0.0000027079, +0.0000027092,0.0000027118,0.0000027146,0.0000027171,0.0000027183, +0.0000027186,0.0000027192,0.0000027212,0.0000027235,0.0000027264, +0.0000027289,0.0000027337,0.0000027387,0.0000027405,0.0000027362, +0.0000027277,0.0000027208,0.0000027184,0.0000027177,0.0000027148, +0.0000027115,0.0000027063,0.0000026954,0.0000026845,0.0000026788, +0.0000026750,0.0000026737,0.0000026755,0.0000026784,0.0000026777, +0.0000026743,0.0000026732,0.0000026742,0.0000026734,0.0000026696, +0.0000026643,0.0000026597,0.0000026566,0.0000026551,0.0000026549, +0.0000026551,0.0000026552,0.0000026550,0.0000026537,0.0000026499, +0.0000026425,0.0000026331,0.0000026255,0.0000026206,0.0000026156, +0.0000026093,0.0000026028,0.0000025966,0.0000025901,0.0000025832, +0.0000025760,0.0000025704,0.0000025659,0.0000025591,0.0000025518, +0.0000025458,0.0000025419,0.0000025421,0.0000025425,0.0000025514, +0.0000025855,0.0000026260,0.0000026413,0.0000026385,0.0000026330, +0.0000026325,0.0000026356,0.0000026409,0.0000026467,0.0000026516, +0.0000026552,0.0000026582,0.0000026609,0.0000026629,0.0000026646, +0.0000026671,0.0000026714,0.0000026752,0.0000026730,0.0000026625, +0.0000026485,0.0000026345,0.0000026251,0.0000026181,0.0000025870, +0.0000025886,0.0000026328,0.0000027010,0.0000027350,0.0000027530, +0.0000027809,0.0000027996,0.0000028042,0.0000028016,0.0000027929, +0.0000027835,0.0000027773,0.0000027774,0.0000027792,0.0000027774, +0.0000027681,0.0000027658,0.0000027746,0.0000027818,0.0000027803, +0.0000027729,0.0000027671,0.0000027652,0.0000027691,0.0000027670, +0.0000027721,0.0000027782,0.0000027753,0.0000027644,0.0000027492, +0.0000027328,0.0000027330,0.0000027362,0.0000027308,0.0000027284, +0.0000027252,0.0000027167,0.0000027082,0.0000027044,0.0000027046, +0.0000027147,0.0000027178,0.0000027202,0.0000027216,0.0000027224, +0.0000027227,0.0000027229,0.0000027233,0.0000027236,0.0000027227, +0.0000027194,0.0000027126,0.0000027010,0.0000026840,0.0000026688, +0.0000026569,0.0000026470,0.0000026420,0.0000026418,0.0000026457, +0.0000026546,0.0000026633,0.0000026640,0.0000026550,0.0000026416, +0.0000026354,0.0000026351,0.0000026365,0.0000026380,0.0000026393, +0.0000026402,0.0000026414,0.0000026418,0.0000026423,0.0000026419, +0.0000026416,0.0000026409,0.0000026398,0.0000026400,0.0000026415, +0.0000026425,0.0000026436,0.0000026454,0.0000026462,0.0000026451, +0.0000026433,0.0000026396,0.0000026342,0.0000026290,0.0000026245, +0.0000026212,0.0000026185,0.0000026152,0.0000026110,0.0000026060, +0.0000025997,0.0000025912,0.0000025807,0.0000025690,0.0000025573, +0.0000025484,0.0000025429,0.0000025384,0.0000025330,0.0000025286, +0.0000025274,0.0000025289,0.0000025303,0.0000025348,0.0000025459, +0.0000025538,0.0000025580,0.0000025644,0.0000025687,0.0000025678, +0.0000025631,0.0000025550,0.0000025466,0.0000025412,0.0000025400, +0.0000025407,0.0000025414,0.0000025401,0.0000025365,0.0000025332, +0.0000025288,0.0000025253,0.0000025222,0.0000025156,0.0000025044, +0.0000024941,0.0000024895,0.0000024889,0.0000024906,0.0000024918, +0.0000025013,0.0000025132,0.0000025173,0.0000025221,0.0000025434, +0.0000025502,0.0000025390,0.0000025331,0.0000025360,0.0000025507, +0.0000025550,0.0000025612,0.0000025897,0.0000026108,0.0000026307, +0.0000026367,0.0000026349,0.0000026301,0.0000026182,0.0000026037, +0.0000025971,0.0000025951,0.0000025895,0.0000025760,0.0000025612, +0.0000025557,0.0000025564,0.0000025615,0.0000025666,0.0000025725, +0.0000025787,0.0000025873,0.0000025979,0.0000026073,0.0000026179, +0.0000026354,0.0000026496,0.0000026519,0.0000026498,0.0000026502, +0.0000026552,0.0000026598,0.0000026606,0.0000026580,0.0000026526, +0.0000026518,0.0000026585,0.0000026680,0.0000026758,0.0000026801, +0.0000026839,0.0000026840,0.0000026864,0.0000026971,0.0000027160, +0.0000027445,0.0000027740,0.0000027887,0.0000027928,0.0000028016, +0.0000028103,0.0000028096,0.0000028066,0.0000028087,0.0000028098, +0.0000028073,0.0000028029,0.0000028020,0.0000028042,0.0000028095, +0.0000028141,0.0000028176,0.0000028224,0.0000028261,0.0000028267, +0.0000028297,0.0000028338,0.0000028376,0.0000028412,0.0000028425, +0.0000028419,0.0000028398,0.0000028360,0.0000028324,0.0000028293, +0.0000028253,0.0000028205,0.0000028139,0.0000028070,0.0000028018, +0.0000027994,0.0000027984,0.0000027984,0.0000028012,0.0000028059, +0.0000028108,0.0000028121,0.0000028097,0.0000028044,0.0000027994, +0.0000027964,0.0000027925,0.0000027898,0.0000027855,0.0000027809, +0.0000027773,0.0000027769,0.0000027759,0.0000027760,0.0000027797, +0.0000027904,0.0000028037,0.0000028166,0.0000028309,0.0000028421, +0.0000028484,0.0000028509,0.0000028537,0.0000028557,0.0000028535, +0.0000028472,0.0000028401,0.0000028320,0.0000028239,0.0000028168, +0.0000028114,0.0000028082,0.0000028060,0.0000028045,0.0000028044, +0.0000028062,0.0000028063,0.0000028038,0.0000028015,0.0000028009, +0.0000028026,0.0000028079,0.0000028140,0.0000028201,0.0000028256, +0.0000028278,0.0000028272,0.0000028238,0.0000028204,0.0000028205, +0.0000028232,0.0000028255,0.0000028266,0.0000028262,0.0000028242, +0.0000028212,0.0000028184,0.0000028154,0.0000028120,0.0000028092, +0.0000028087,0.0000028100,0.0000028118,0.0000028143,0.0000028173, +0.0000028180,0.0000028144,0.0000028068,0.0000027970,0.0000027897, +0.0000027904,0.0000027968,0.0000028039,0.0000028087,0.0000028105, +0.0000028098,0.0000028056,0.0000028015,0.0000028026,0.0000028045, +0.0000028021,0.0000027914,0.0000027748,0.0000027622,0.0000027620, +0.0000027753,0.0000027953,0.0000028141,0.0000028280,0.0000028360, +0.0000028379,0.0000028369,0.0000028345,0.0000028313,0.0000028288, +0.0000028282,0.0000028288,0.0000028310,0.0000028348,0.0000028377, +0.0000028383,0.0000028371,0.0000028360,0.0000028352,0.0000028351, +0.0000028351,0.0000028339,0.0000028320,0.0000028300,0.0000028274, +0.0000028240,0.0000028207,0.0000028182,0.0000028176,0.0000028194, +0.0000028221,0.0000028227,0.0000028196,0.0000028145,0.0000028105, +0.0000028091,0.0000028093,0.0000028093,0.0000028077,0.0000028038, +0.0000028000,0.0000027988,0.0000028001,0.0000028036,0.0000028046, +0.0000027996,0.0000027904,0.0000027827,0.0000027803,0.0000027815, +0.0000027833,0.0000027826,0.0000027786,0.0000027730,0.0000027688, +0.0000027669,0.0000027661,0.0000027658,0.0000027667,0.0000027691, +0.0000027699,0.0000027683,0.0000027660,0.0000027622,0.0000027564, +0.0000027516,0.0000027543,0.0000027638,0.0000027730,0.0000027778, +0.0000027782,0.0000027760,0.0000027723,0.0000027674,0.0000027616, +0.0000027590,0.0000027600,0.0000027604,0.0000027597,0.0000027604, +0.0000027609,0.0000027598,0.0000027552,0.0000027504,0.0000027469, +0.0000027450,0.0000027461,0.0000027503,0.0000027571,0.0000027627, +0.0000027683,0.0000027726,0.0000027722,0.0000027677,0.0000027642, +0.0000027624,0.0000027549,0.0000027355,0.0000027096,0.0000026892, +0.0000026781,0.0000026757,0.0000026819,0.0000026945,0.0000027142, +0.0000027313,0.0000027383,0.0000027395,0.0000027335,0.0000027284, +0.0000027326,0.0000027435,0.0000027493,0.0000027507,0.0000027536, +0.0000027572,0.0000027568,0.0000027509,0.0000027442,0.0000027413, +0.0000027416,0.0000027431,0.0000027444,0.0000027448,0.0000027438, +0.0000027416,0.0000027354,0.0000027247,0.0000027144,0.0000027091, +0.0000027084,0.0000027010,0.0000026790,0.0000026521,0.0000026316, +0.0000026235,0.0000026278,0.0000026492,0.0000026812,0.0000027162, +0.0000027423,0.0000027499,0.0000027512,0.0000027547,0.0000027623, +0.0000027650,0.0000027644,0.0000027884,0.0000028109,0.0000028091, +0.0000028136,0.0000028229,0.0000028279,0.0000028269,0.0000028190, +0.0000028225,0.0000028326,0.0000028289,0.0000028132,0.0000028031, +0.0000028111,0.0000028246,0.0000028325,0.0000028340,0.0000028294, +0.0000028254,0.0000028275,0.0000028338,0.0000028375,0.0000028373, +0.0000028363,0.0000028336,0.0000028231,0.0000028030,0.0000027928, +0.0000027984,0.0000027966,0.0000027925,0.0000027942,0.0000027987, +0.0000028019,0.0000028008,0.0000028062,0.0000028172,0.0000028260, +0.0000028329,0.0000028337,0.0000028339,0.0000028521,0.0000028703, +0.0000028449,0.0000028326,0.0000028525,0.0000028682,0.0000028750, +0.0000028729,0.0000028742,0.0000028849,0.0000029023,0.0000029162, +0.0000029216,0.0000029201,0.0000029154,0.0000029128,0.0000029160, +0.0000029208,0.0000029206,0.0000029165,0.0000028999,0.0000028822, +0.0000028764,0.0000028810,0.0000028777,0.0000028617,0.0000028394, +0.0000028294,0.0000028342,0.0000028381,0.0000028386,0.0000028393, +0.0000028370,0.0000028342,0.0000028343,0.0000028332,0.0000028276, +0.0000028203,0.0000028129,0.0000028051,0.0000028027,0.0000028058, +0.0000028068,0.0000028013,0.0000027926,0.0000027864,0.0000027833, +0.0000027826,0.0000027831,0.0000027822,0.0000027793,0.0000027750, +0.0000027717,0.0000027712,0.0000027748,0.0000027798,0.0000027816, +0.0000027805,0.0000027761,0.0000027706,0.0000027683,0.0000027691, +0.0000027703,0.0000027698,0.0000027668,0.0000027631,0.0000027605, +0.0000027596,0.0000027602,0.0000027618,0.0000027627,0.0000027620, +0.0000027598,0.0000027582,0.0000027592,0.0000027618,0.0000027628, +0.0000027616,0.0000027586,0.0000027551,0.0000027539,0.0000027551, +0.0000027582,0.0000027622,0.0000027664,0.0000027692,0.0000027698, +0.0000027693,0.0000027689,0.0000027689,0.0000027697,0.0000027714, +0.0000027742,0.0000027782,0.0000027817,0.0000027837,0.0000027846, +0.0000027827,0.0000027796,0.0000027758,0.0000027711,0.0000027664, +0.0000027623,0.0000027596,0.0000027581,0.0000027564,0.0000027538, +0.0000027504,0.0000027454,0.0000027391,0.0000027329,0.0000027275, +0.0000027232,0.0000027213,0.0000027216,0.0000027229,0.0000027236, +0.0000027237,0.0000027238,0.0000027258,0.0000027317,0.0000027391, +0.0000027457,0.0000027507,0.0000027550,0.0000027598,0.0000027636, +0.0000027649,0.0000027638,0.0000027615,0.0000027609,0.0000027623, +0.0000027640,0.0000027641,0.0000027609,0.0000027537,0.0000027424, +0.0000027293,0.0000027193,0.0000027147,0.0000027121,0.0000027065, +0.0000026969,0.0000026878,0.0000026834,0.0000026810,0.0000026749, +0.0000026672,0.0000026629,0.0000026600,0.0000026542,0.0000026466, +0.0000026406,0.0000026366,0.0000026339,0.0000026334,0.0000026344, +0.0000026347,0.0000026336,0.0000026329,0.0000026317,0.0000026334, +0.0000026384,0.0000026460,0.0000026524,0.0000026556,0.0000026588, +0.0000026649,0.0000026718,0.0000026769,0.0000026799,0.0000026810, +0.0000026817,0.0000026838,0.0000026866,0.0000026888,0.0000026920, +0.0000026984,0.0000027095,0.0000027247,0.0000027396,0.0000027513, +0.0000027615,0.0000027704,0.0000027788,0.0000027855,0.0000027903, +0.0000027955,0.0000028025,0.0000028082,0.0000028101,0.0000028083, +0.0000028008,0.0000027909,0.0000027863,0.0000027939,0.0000028090, +0.0000028227,0.0000028329,0.0000028425,0.0000028542,0.0000028649, +0.0000028726,0.0000028772,0.0000028805,0.0000028788,0.0000028717, +0.0000028684,0.0000028740,0.0000028858,0.0000028940,0.0000028946, +0.0000028933,0.0000028940,0.0000028965,0.0000028963,0.0000028887, +0.0000028750,0.0000028602,0.0000028507,0.0000028419,0.0000028325, +0.0000028228,0.0000028134,0.0000028041,0.0000027964,0.0000027888, +0.0000027797,0.0000027692,0.0000027586,0.0000027491,0.0000027425, +0.0000027376,0.0000027338,0.0000027308,0.0000027284,0.0000027261, +0.0000027236,0.0000027214,0.0000027202,0.0000027194,0.0000027186, +0.0000027159,0.0000027125,0.0000027095,0.0000027060,0.0000027013, +0.0000026959,0.0000026906,0.0000026842,0.0000026771,0.0000026709, +0.0000026649,0.0000026581,0.0000026492,0.0000026384,0.0000026274, +0.0000026186,0.0000026165,0.0000026251,0.0000026439,0.0000026670, +0.0000026844,0.0000026956,0.0000027033,0.0000027059,0.0000027108, +0.0000027340,0.0000027604,0.0000027672,0.0000027589,0.0000027504, +0.0000027500,0.0000027560,0.0000027664,0.0000027765,0.0000027775, +0.0000027650,0.0000027442,0.0000027212,0.0000027063,0.0000027103, +0.0000027235,0.0000027289,0.0000027272,0.0000027251,0.0000027245, +0.0000027287,0.0000027437,0.0000027531,0.0000027488,0.0000027447, +0.0000027459,0.0000027450,0.0000027391,0.0000027317,0.0000027263, +0.0000027234,0.0000027211,0.0000027194,0.0000027196,0.0000027200, +0.0000027192,0.0000027178,0.0000027164,0.0000027160,0.0000027157, +0.0000027147,0.0000027130,0.0000027123,0.0000027127,0.0000027143, +0.0000027164,0.0000027187,0.0000027202,0.0000027205,0.0000027203, +0.0000027207,0.0000027225,0.0000027259,0.0000027311,0.0000027377, +0.0000027418,0.0000027414,0.0000027353,0.0000027255,0.0000027183, +0.0000027166,0.0000027156,0.0000027131,0.0000027095,0.0000027064, +0.0000026982,0.0000026869,0.0000026793,0.0000026743,0.0000026713, +0.0000026722,0.0000026751,0.0000026758,0.0000026727,0.0000026707, +0.0000026707,0.0000026697,0.0000026656,0.0000026593,0.0000026537, +0.0000026507,0.0000026499,0.0000026506,0.0000026525,0.0000026544, +0.0000026553,0.0000026546,0.0000026514,0.0000026448,0.0000026370, +0.0000026301,0.0000026228,0.0000026122,0.0000025996,0.0000025897, +0.0000025844,0.0000025817,0.0000025796,0.0000025766,0.0000025728, +0.0000025692,0.0000025657,0.0000025595,0.0000025519,0.0000025458, +0.0000025411,0.0000025397,0.0000025400,0.0000025423,0.0000025602, +0.0000025980,0.0000026317,0.0000026403,0.0000026364,0.0000026320, +0.0000026294,0.0000026310,0.0000026370,0.0000026453,0.0000026522, +0.0000026571,0.0000026612,0.0000026644,0.0000026663,0.0000026680, +0.0000026709,0.0000026758,0.0000026746,0.0000026669,0.0000026519, +0.0000026410,0.0000026247,0.0000026213,0.0000025872,0.0000025810, +0.0000026103,0.0000026876,0.0000027257,0.0000027449,0.0000027722, +0.0000027950,0.0000028025,0.0000028001,0.0000027905,0.0000027802, +0.0000027755,0.0000027763,0.0000027775,0.0000027719,0.0000027616, +0.0000027666,0.0000027769,0.0000027801,0.0000027777,0.0000027707, +0.0000027663,0.0000027669,0.0000027681,0.0000027625,0.0000027729, +0.0000027760,0.0000027727,0.0000027621,0.0000027468,0.0000027324, +0.0000027340,0.0000027360,0.0000027301,0.0000027283,0.0000027270, +0.0000027212,0.0000027145,0.0000027115,0.0000027121,0.0000027213, +0.0000027241,0.0000027260,0.0000027269,0.0000027271,0.0000027268, +0.0000027266,0.0000027270,0.0000027274,0.0000027266,0.0000027227, +0.0000027170,0.0000027091,0.0000026948,0.0000026768,0.0000026612, +0.0000026520,0.0000026439,0.0000026386,0.0000026363,0.0000026394, +0.0000026472,0.0000026590,0.0000026666,0.0000026635,0.0000026525, +0.0000026429,0.0000026386,0.0000026376,0.0000026388,0.0000026400, +0.0000026407,0.0000026409,0.0000026398,0.0000026377,0.0000026355, +0.0000026333,0.0000026328,0.0000026350,0.0000026377,0.0000026391, +0.0000026401,0.0000026407,0.0000026396,0.0000026375,0.0000026349, +0.0000026311,0.0000026271,0.0000026239,0.0000026218,0.0000026206, +0.0000026196,0.0000026178,0.0000026145,0.0000026094,0.0000026028, +0.0000025941,0.0000025834,0.0000025714,0.0000025588,0.0000025474, +0.0000025403,0.0000025364,0.0000025330,0.0000025295,0.0000025276, +0.0000025274,0.0000025270,0.0000025278,0.0000025343,0.0000025459, +0.0000025540,0.0000025613,0.0000025685,0.0000025707,0.0000025675, +0.0000025603,0.0000025522,0.0000025458,0.0000025423,0.0000025411, +0.0000025408,0.0000025395,0.0000025370,0.0000025324,0.0000025265, +0.0000025247,0.0000025254,0.0000025264,0.0000025232,0.0000025113, +0.0000024982,0.0000024915,0.0000024869,0.0000024881,0.0000024919, +0.0000025008,0.0000025127,0.0000025165,0.0000025212,0.0000025396, +0.0000025516,0.0000025416,0.0000025329,0.0000025329,0.0000025458, +0.0000025528,0.0000025584,0.0000025874,0.0000026137,0.0000026341, +0.0000026393,0.0000026370,0.0000026305,0.0000026154,0.0000025985, +0.0000025922,0.0000025916,0.0000025865,0.0000025727,0.0000025595, +0.0000025571,0.0000025600,0.0000025654,0.0000025699,0.0000025748, +0.0000025818,0.0000025923,0.0000026041,0.0000026139,0.0000026287, +0.0000026470,0.0000026555,0.0000026535,0.0000026500,0.0000026501, +0.0000026530,0.0000026557,0.0000026556,0.0000026519,0.0000026488, +0.0000026514,0.0000026579,0.0000026665,0.0000026734,0.0000026774, +0.0000026803,0.0000026803,0.0000026849,0.0000026964,0.0000027128, +0.0000027375,0.0000027651,0.0000027819,0.0000027890,0.0000027966, +0.0000028022,0.0000028018,0.0000028019,0.0000028067,0.0000028095, +0.0000028091,0.0000028069,0.0000028042,0.0000028035,0.0000028070, +0.0000028100,0.0000028121,0.0000028166,0.0000028211,0.0000028243, +0.0000028278,0.0000028324,0.0000028371,0.0000028401,0.0000028404, +0.0000028380,0.0000028338,0.0000028269,0.0000028189,0.0000028107, +0.0000028025,0.0000027951,0.0000027900,0.0000027872,0.0000027864, +0.0000027864,0.0000027865,0.0000027851,0.0000027834,0.0000027838, +0.0000027861,0.0000027869,0.0000027852,0.0000027821,0.0000027808, +0.0000027806,0.0000027810,0.0000027815,0.0000027793,0.0000027742, +0.0000027700,0.0000027692,0.0000027689,0.0000027702,0.0000027751, +0.0000027850,0.0000027978,0.0000028114,0.0000028246,0.0000028365, +0.0000028431,0.0000028443,0.0000028459,0.0000028496,0.0000028500, +0.0000028453,0.0000028366,0.0000028278,0.0000028190,0.0000028132, +0.0000028096,0.0000028092,0.0000028083,0.0000028061,0.0000028030, +0.0000027989,0.0000027964,0.0000027926,0.0000027887,0.0000027855, +0.0000027849,0.0000027880,0.0000027938,0.0000028013,0.0000028083, +0.0000028132,0.0000028154,0.0000028143,0.0000028109,0.0000028099, +0.0000028122,0.0000028149,0.0000028160,0.0000028159,0.0000028141, +0.0000028111,0.0000028078,0.0000028048,0.0000028012,0.0000027976, +0.0000027960,0.0000027966,0.0000027992,0.0000028038,0.0000028106, +0.0000028170,0.0000028196,0.0000028178,0.0000028094,0.0000027986, +0.0000027937,0.0000027951,0.0000027992,0.0000028032,0.0000028046, +0.0000028039,0.0000028018,0.0000028004,0.0000028022,0.0000028051, +0.0000028069,0.0000028032,0.0000027897,0.0000027712,0.0000027602, +0.0000027638,0.0000027797,0.0000027991,0.0000028154,0.0000028269, +0.0000028329,0.0000028336,0.0000028306,0.0000028255,0.0000028220, +0.0000028219,0.0000028234,0.0000028255,0.0000028283,0.0000028316, +0.0000028340,0.0000028342,0.0000028342,0.0000028340,0.0000028339, +0.0000028331,0.0000028309,0.0000028281,0.0000028257,0.0000028241, +0.0000028237,0.0000028231,0.0000028216,0.0000028195,0.0000028190, +0.0000028209,0.0000028238,0.0000028241,0.0000028205,0.0000028150, +0.0000028103,0.0000028085,0.0000028087,0.0000028082,0.0000028057, +0.0000028019,0.0000028003,0.0000028022,0.0000028076,0.0000028114, +0.0000028101,0.0000028030,0.0000027940,0.0000027882,0.0000027866, +0.0000027867,0.0000027854,0.0000027810,0.0000027744,0.0000027696, +0.0000027684,0.0000027694,0.0000027700,0.0000027702,0.0000027717, +0.0000027740,0.0000027735,0.0000027701,0.0000027660,0.0000027609, +0.0000027541,0.0000027491,0.0000027495,0.0000027592,0.0000027719, +0.0000027778,0.0000027773,0.0000027741,0.0000027701,0.0000027647, +0.0000027608,0.0000027600,0.0000027607,0.0000027597,0.0000027573, +0.0000027557,0.0000027545,0.0000027535,0.0000027516,0.0000027496, +0.0000027473,0.0000027447,0.0000027436,0.0000027461,0.0000027523, +0.0000027568,0.0000027620,0.0000027663,0.0000027663,0.0000027612, +0.0000027561,0.0000027541,0.0000027494,0.0000027317,0.0000027037, +0.0000026795,0.0000026668,0.0000026645,0.0000026721,0.0000026860, +0.0000027063,0.0000027231,0.0000027303,0.0000027336,0.0000027313, +0.0000027292,0.0000027340,0.0000027431,0.0000027465,0.0000027452, +0.0000027451,0.0000027474,0.0000027472,0.0000027420,0.0000027362, +0.0000027345,0.0000027368,0.0000027399,0.0000027416,0.0000027418, +0.0000027411,0.0000027406,0.0000027376,0.0000027298,0.0000027216, +0.0000027173,0.0000027172,0.0000027163,0.0000027073,0.0000026875, +0.0000026586,0.0000026295,0.0000026166,0.0000026166,0.0000026372, +0.0000026752,0.0000027172,0.0000027445,0.0000027509,0.0000027508, +0.0000027557,0.0000027606,0.0000027558,0.0000027693,0.0000028041, +0.0000028084,0.0000028127,0.0000028207,0.0000028239,0.0000028222, +0.0000028127,0.0000028155,0.0000028278,0.0000028294,0.0000028202, +0.0000028081,0.0000028104,0.0000028208,0.0000028284,0.0000028320, +0.0000028313,0.0000028327,0.0000028363,0.0000028400,0.0000028392, +0.0000028354,0.0000028322,0.0000028297,0.0000028239,0.0000028069, +0.0000027906,0.0000027902,0.0000027957,0.0000027969,0.0000027984, +0.0000028026,0.0000028073,0.0000028067,0.0000028086,0.0000028163, +0.0000028232,0.0000028300,0.0000028327,0.0000028319,0.0000028436, +0.0000028669,0.0000028493,0.0000028303,0.0000028506,0.0000028666, +0.0000028720,0.0000028709,0.0000028761,0.0000028920,0.0000029114, +0.0000029202,0.0000029204,0.0000029165,0.0000029157,0.0000029185, +0.0000029220,0.0000029220,0.0000029198,0.0000029125,0.0000028948, +0.0000028811,0.0000028797,0.0000028822,0.0000028747,0.0000028588, +0.0000028373,0.0000028297,0.0000028344,0.0000028398,0.0000028411, +0.0000028407,0.0000028378,0.0000028362,0.0000028368,0.0000028335, +0.0000028255,0.0000028195,0.0000028141,0.0000028076,0.0000028070, +0.0000028096,0.0000028074,0.0000027999,0.0000027900,0.0000027830, +0.0000027788,0.0000027781,0.0000027801,0.0000027809,0.0000027790, +0.0000027740,0.0000027686,0.0000027660,0.0000027686,0.0000027756, +0.0000027815,0.0000027825,0.0000027809,0.0000027777,0.0000027750, +0.0000027747,0.0000027751,0.0000027737,0.0000027682,0.0000027597, +0.0000027522,0.0000027486,0.0000027489,0.0000027518,0.0000027549, +0.0000027563,0.0000027556,0.0000027532,0.0000027522,0.0000027544, +0.0000027584,0.0000027613,0.0000027615,0.0000027583,0.0000027527, +0.0000027481,0.0000027469,0.0000027475,0.0000027493,0.0000027514, +0.0000027539,0.0000027569,0.0000027607,0.0000027646,0.0000027675, +0.0000027694,0.0000027705,0.0000027708,0.0000027709,0.0000027708, +0.0000027719,0.0000027733,0.0000027752,0.0000027774,0.0000027801, +0.0000027817,0.0000027816,0.0000027805,0.0000027778,0.0000027739, +0.0000027702,0.0000027670,0.0000027633,0.0000027591,0.0000027551, +0.0000027510,0.0000027449,0.0000027360,0.0000027269,0.0000027208, +0.0000027188,0.0000027205,0.0000027245,0.0000027272,0.0000027282, +0.0000027296,0.0000027324,0.0000027358,0.0000027401,0.0000027463, +0.0000027554,0.0000027643,0.0000027693,0.0000027696,0.0000027667, +0.0000027638,0.0000027634,0.0000027658,0.0000027693,0.0000027702, +0.0000027672,0.0000027599,0.0000027484,0.0000027353,0.0000027242, +0.0000027186,0.0000027172,0.0000027147,0.0000027080,0.0000026987, +0.0000026908,0.0000026854,0.0000026808,0.0000026767,0.0000026728, +0.0000026678,0.0000026608,0.0000026529,0.0000026465,0.0000026428, +0.0000026422,0.0000026431,0.0000026439,0.0000026427,0.0000026391, +0.0000026349,0.0000026324,0.0000026345,0.0000026377,0.0000026406, +0.0000026417,0.0000026437,0.0000026484,0.0000026535,0.0000026569, +0.0000026589,0.0000026600,0.0000026611,0.0000026633,0.0000026662, +0.0000026681,0.0000026694,0.0000026725,0.0000026795,0.0000026909, +0.0000027047,0.0000027180,0.0000027304,0.0000027409,0.0000027494, +0.0000027557,0.0000027594,0.0000027632,0.0000027700,0.0000027778, +0.0000027827,0.0000027833,0.0000027794,0.0000027714,0.0000027651, +0.0000027671,0.0000027776,0.0000027911,0.0000028041,0.0000028167, +0.0000028297,0.0000028409,0.0000028499,0.0000028569,0.0000028623, +0.0000028632,0.0000028581,0.0000028535,0.0000028590,0.0000028732, +0.0000028842,0.0000028870,0.0000028860,0.0000028851,0.0000028847, +0.0000028823,0.0000028745,0.0000028622,0.0000028522,0.0000028453, +0.0000028384,0.0000028298,0.0000028200,0.0000028093,0.0000027975, +0.0000027845,0.0000027726,0.0000027610,0.0000027498,0.0000027393, +0.0000027304,0.0000027230,0.0000027159,0.0000027098,0.0000027063, +0.0000027058,0.0000027062,0.0000027063,0.0000027064,0.0000027069, +0.0000027068,0.0000027049,0.0000027003,0.0000026952,0.0000026914, +0.0000026881,0.0000026844,0.0000026806,0.0000026769,0.0000026737, +0.0000026703,0.0000026664,0.0000026618,0.0000026564,0.0000026492, +0.0000026401,0.0000026298,0.0000026192,0.0000026093,0.0000026033, +0.0000026067,0.0000026316,0.0000026642,0.0000026861,0.0000026958, +0.0000026991,0.0000027046,0.0000027272,0.0000027582,0.0000027685, +0.0000027607,0.0000027481,0.0000027460,0.0000027531,0.0000027640, +0.0000027753,0.0000027790,0.0000027742,0.0000027564,0.0000027259, +0.0000027051,0.0000027091,0.0000027212,0.0000027241,0.0000027215, +0.0000027204,0.0000027222,0.0000027247,0.0000027342,0.0000027484, +0.0000027505,0.0000027436,0.0000027407,0.0000027434,0.0000027459, +0.0000027456,0.0000027428,0.0000027411,0.0000027385,0.0000027357, +0.0000027346,0.0000027341,0.0000027321,0.0000027290,0.0000027260, +0.0000027242,0.0000027235,0.0000027232,0.0000027213,0.0000027198, +0.0000027200,0.0000027207,0.0000027215,0.0000027229,0.0000027237, +0.0000027233,0.0000027225,0.0000027228,0.0000027253,0.0000027304, +0.0000027364,0.0000027421,0.0000027423,0.0000027384,0.0000027309, +0.0000027220,0.0000027161,0.0000027144,0.0000027129,0.0000027101, +0.0000027068,0.0000027047,0.0000026993,0.0000026888,0.0000026800, +0.0000026741,0.0000026701,0.0000026698,0.0000026724,0.0000026739, +0.0000026712,0.0000026681,0.0000026672,0.0000026663,0.0000026628, +0.0000026562,0.0000026489,0.0000026441,0.0000026428,0.0000026446, +0.0000026485,0.0000026524,0.0000026544,0.0000026544,0.0000026517, +0.0000026458,0.0000026391,0.0000026338,0.0000026267,0.0000026129, +0.0000025953,0.0000025813,0.0000025744,0.0000025722,0.0000025719, +0.0000025718,0.0000025707,0.0000025684,0.0000025659,0.0000025629, +0.0000025573,0.0000025499,0.0000025437,0.0000025397,0.0000025377, +0.0000025384,0.0000025382,0.0000025425,0.0000025662,0.0000026050, +0.0000026338,0.0000026390,0.0000026356,0.0000026300,0.0000026265, +0.0000026277,0.0000026335,0.0000026402,0.0000026470,0.0000026543, +0.0000026609,0.0000026658,0.0000026690,0.0000026712,0.0000026747, +0.0000026751,0.0000026691,0.0000026560,0.0000026462,0.0000026252, +0.0000026207,0.0000025885,0.0000025726,0.0000025901,0.0000026709, +0.0000027144,0.0000027367,0.0000027608,0.0000027878,0.0000027997, +0.0000027982,0.0000027882,0.0000027779,0.0000027738,0.0000027749, +0.0000027751,0.0000027642,0.0000027601,0.0000027698,0.0000027769, +0.0000027776,0.0000027736,0.0000027674,0.0000027665,0.0000027691, +0.0000027636,0.0000027595,0.0000027734,0.0000027741,0.0000027711, +0.0000027603,0.0000027450,0.0000027326,0.0000027355,0.0000027365, +0.0000027303,0.0000027287,0.0000027290,0.0000027255,0.0000027200, +0.0000027175,0.0000027184,0.0000027259,0.0000027280,0.0000027293, +0.0000027296,0.0000027295,0.0000027291,0.0000027286,0.0000027285, +0.0000027282,0.0000027274,0.0000027243,0.0000027188,0.0000027113, +0.0000027012,0.0000026865,0.0000026679,0.0000026550,0.0000026483, +0.0000026426,0.0000026372,0.0000026349,0.0000026366,0.0000026437, +0.0000026556,0.0000026677,0.0000026703,0.0000026666,0.0000026580, +0.0000026506,0.0000026457,0.0000026435,0.0000026421,0.0000026404, +0.0000026376,0.0000026344,0.0000026316,0.0000026295,0.0000026299, +0.0000026331,0.0000026358,0.0000026366,0.0000026365,0.0000026361, +0.0000026344,0.0000026323,0.0000026283,0.0000026244,0.0000026201, +0.0000026167,0.0000026147,0.0000026138,0.0000026134,0.0000026128, +0.0000026113,0.0000026081,0.0000026024,0.0000025941,0.0000025839, +0.0000025727,0.0000025612,0.0000025496,0.0000025409,0.0000025356, +0.0000025323,0.0000025293,0.0000025273,0.0000025264,0.0000025248, +0.0000025241,0.0000025258,0.0000025344,0.0000025473,0.0000025571, +0.0000025668,0.0000025725,0.0000025718,0.0000025647,0.0000025564, +0.0000025508,0.0000025478,0.0000025453,0.0000025432,0.0000025403, +0.0000025366,0.0000025328,0.0000025277,0.0000025235,0.0000025238, +0.0000025273,0.0000025303,0.0000025277,0.0000025152,0.0000025007, +0.0000024923,0.0000024868,0.0000024860,0.0000024907,0.0000025000, +0.0000025125,0.0000025163,0.0000025213,0.0000025363,0.0000025521, +0.0000025445,0.0000025326,0.0000025292,0.0000025408,0.0000025513, +0.0000025555,0.0000025850,0.0000026159,0.0000026358,0.0000026408, +0.0000026377,0.0000026290,0.0000026122,0.0000025943,0.0000025891, +0.0000025900,0.0000025868,0.0000025741,0.0000025623,0.0000025622, +0.0000025668,0.0000025730,0.0000025775,0.0000025814,0.0000025875, +0.0000025971,0.0000026074,0.0000026198,0.0000026380,0.0000026537, +0.0000026568,0.0000026533,0.0000026494,0.0000026484,0.0000026498, +0.0000026516,0.0000026510,0.0000026475,0.0000026465,0.0000026498, +0.0000026558,0.0000026648,0.0000026710,0.0000026744,0.0000026766, +0.0000026776,0.0000026840,0.0000026959,0.0000027110,0.0000027322, +0.0000027568,0.0000027736,0.0000027830,0.0000027900,0.0000027929, +0.0000027928,0.0000027964,0.0000028042,0.0000028074,0.0000028073, +0.0000028044,0.0000028012,0.0000027999,0.0000028020,0.0000028034, +0.0000028039,0.0000028066,0.0000028102,0.0000028130,0.0000028148, +0.0000028172,0.0000028212,0.0000028243,0.0000028249,0.0000028213, +0.0000028155,0.0000028083,0.0000027999,0.0000027910,0.0000027846, +0.0000027806,0.0000027791,0.0000027790,0.0000027774,0.0000027727, +0.0000027665,0.0000027603,0.0000027566,0.0000027548,0.0000027550, +0.0000027584,0.0000027613,0.0000027630,0.0000027663,0.0000027707, +0.0000027757,0.0000027802,0.0000027804,0.0000027761,0.0000027711, +0.0000027693,0.0000027679,0.0000027676,0.0000027718,0.0000027794, +0.0000027911,0.0000028056,0.0000028181,0.0000028304,0.0000028390, +0.0000028406,0.0000028404,0.0000028430,0.0000028451,0.0000028430, +0.0000028352,0.0000028258,0.0000028166,0.0000028109,0.0000028079, +0.0000028083,0.0000028097,0.0000028109,0.0000028110,0.0000028086, +0.0000028045,0.0000027986,0.0000027907,0.0000027827,0.0000027769, +0.0000027754,0.0000027765,0.0000027807,0.0000027865,0.0000027917, +0.0000027952,0.0000027958,0.0000027939,0.0000027921,0.0000027930, +0.0000027955,0.0000027975,0.0000027989,0.0000027998,0.0000028002, +0.0000028002,0.0000027995,0.0000027980,0.0000027954,0.0000027935, +0.0000027933,0.0000027951,0.0000027986,0.0000028037,0.0000028107, +0.0000028167,0.0000028193,0.0000028163,0.0000028083,0.0000028018, +0.0000027998,0.0000027997,0.0000028013,0.0000028021,0.0000028007, +0.0000027983,0.0000027980,0.0000028010,0.0000028049,0.0000028082, +0.0000028097,0.0000028044,0.0000027884,0.0000027685,0.0000027610, +0.0000027679,0.0000027844,0.0000028010,0.0000028141,0.0000028233, +0.0000028271,0.0000028255,0.0000028201,0.0000028153,0.0000028143, +0.0000028154,0.0000028178,0.0000028203,0.0000028222,0.0000028236, +0.0000028247,0.0000028256,0.0000028266,0.0000028283,0.0000028293, +0.0000028282,0.0000028253,0.0000028217,0.0000028186,0.0000028184, +0.0000028205,0.0000028221,0.0000028219,0.0000028212,0.0000028210, +0.0000028226,0.0000028250,0.0000028247,0.0000028202,0.0000028137, +0.0000028083,0.0000028055,0.0000028046,0.0000028040,0.0000028027, +0.0000028019,0.0000028045,0.0000028106,0.0000028160,0.0000028172, +0.0000028144,0.0000028063,0.0000027974,0.0000027920,0.0000027903, +0.0000027885,0.0000027838,0.0000027773,0.0000027721,0.0000027713, +0.0000027726,0.0000027737,0.0000027739,0.0000027742,0.0000027758, +0.0000027766,0.0000027748,0.0000027701,0.0000027652,0.0000027597, +0.0000027531,0.0000027483,0.0000027486,0.0000027586,0.0000027724, +0.0000027785,0.0000027778,0.0000027747,0.0000027694,0.0000027643, +0.0000027620,0.0000027620,0.0000027621,0.0000027599,0.0000027565, +0.0000027532,0.0000027503,0.0000027490,0.0000027495,0.0000027494, +0.0000027483,0.0000027456,0.0000027435,0.0000027450,0.0000027506, +0.0000027545,0.0000027580,0.0000027609,0.0000027609,0.0000027558, +0.0000027498,0.0000027479,0.0000027452,0.0000027295,0.0000026991, +0.0000026720,0.0000026569,0.0000026543,0.0000026624,0.0000026769, +0.0000026967,0.0000027124,0.0000027198,0.0000027259,0.0000027285, +0.0000027299,0.0000027353,0.0000027425,0.0000027438,0.0000027399, +0.0000027363,0.0000027368,0.0000027369,0.0000027326,0.0000027273, +0.0000027264,0.0000027303,0.0000027350,0.0000027387,0.0000027406, +0.0000027403,0.0000027396,0.0000027379,0.0000027334,0.0000027274, +0.0000027239,0.0000027236,0.0000027239,0.0000027221,0.0000027138, +0.0000026923,0.0000026576,0.0000026238,0.0000026084,0.0000026078, +0.0000026338,0.0000026767,0.0000027207,0.0000027464,0.0000027497, +0.0000027496,0.0000027527,0.0000027492,0.0000027508,0.0000027889, +0.0000028083,0.0000028131,0.0000028204,0.0000028221,0.0000028193, +0.0000028085,0.0000028099,0.0000028235,0.0000028302,0.0000028269, +0.0000028175,0.0000028138,0.0000028196,0.0000028268,0.0000028324, +0.0000028366,0.0000028415,0.0000028445,0.0000028455,0.0000028418, +0.0000028355,0.0000028290,0.0000028249,0.0000028221,0.0000028109, +0.0000027923,0.0000027834,0.0000027899,0.0000027976,0.0000027999, +0.0000028051,0.0000028111,0.0000028125,0.0000028145,0.0000028181, +0.0000028214,0.0000028252,0.0000028297,0.0000028308,0.0000028357, +0.0000028600,0.0000028544,0.0000028284,0.0000028465,0.0000028637, +0.0000028691,0.0000028689,0.0000028761,0.0000028969,0.0000029152, +0.0000029180,0.0000029139,0.0000029139,0.0000029192,0.0000029228, +0.0000029232,0.0000029207,0.0000029163,0.0000029063,0.0000028892, +0.0000028813,0.0000028826,0.0000028816,0.0000028716,0.0000028558, +0.0000028357,0.0000028301,0.0000028343,0.0000028407,0.0000028428, +0.0000028412,0.0000028384,0.0000028375,0.0000028364,0.0000028306, +0.0000028230,0.0000028195,0.0000028151,0.0000028098,0.0000028104, +0.0000028120,0.0000028072,0.0000027967,0.0000027864,0.0000027785, +0.0000027736,0.0000027723,0.0000027747,0.0000027765,0.0000027755, +0.0000027717,0.0000027670,0.0000027641,0.0000027665,0.0000027736, +0.0000027810,0.0000027836,0.0000027828,0.0000027811,0.0000027796, +0.0000027797,0.0000027797,0.0000027772,0.0000027699,0.0000027586, +0.0000027473,0.0000027409,0.0000027401,0.0000027430,0.0000027474, +0.0000027505,0.0000027517,0.0000027507,0.0000027480,0.0000027463, +0.0000027471,0.0000027506,0.0000027547,0.0000027575,0.0000027574, +0.0000027544,0.0000027506,0.0000027473,0.0000027449,0.0000027428, +0.0000027408,0.0000027385,0.0000027384,0.0000027434,0.0000027516, +0.0000027595,0.0000027647,0.0000027664,0.0000027660,0.0000027644, +0.0000027629,0.0000027620,0.0000027603,0.0000027587,0.0000027598, +0.0000027650,0.0000027720,0.0000027776,0.0000027810,0.0000027827, +0.0000027830,0.0000027829,0.0000027820,0.0000027787,0.0000027743, +0.0000027696,0.0000027649,0.0000027605,0.0000027560,0.0000027496, +0.0000027406,0.0000027304,0.0000027238,0.0000027223,0.0000027250, +0.0000027286,0.0000027317,0.0000027336,0.0000027340,0.0000027336, +0.0000027343,0.0000027403,0.0000027520,0.0000027638,0.0000027703, +0.0000027712,0.0000027688,0.0000027663,0.0000027666,0.0000027706, +0.0000027755,0.0000027766,0.0000027727,0.0000027652,0.0000027552, +0.0000027432,0.0000027319,0.0000027251,0.0000027235,0.0000027229, +0.0000027203,0.0000027133,0.0000027030,0.0000026937,0.0000026887, +0.0000026856,0.0000026803,0.0000026725,0.0000026636,0.0000026556, +0.0000026505,0.0000026494,0.0000026508,0.0000026537,0.0000026542, +0.0000026513,0.0000026458,0.0000026408,0.0000026389,0.0000026397, +0.0000026400,0.0000026398,0.0000026414,0.0000026440,0.0000026467, +0.0000026473,0.0000026459,0.0000026443,0.0000026441,0.0000026456, +0.0000026483,0.0000026511,0.0000026534,0.0000026558,0.0000026598, +0.0000026659,0.0000026742,0.0000026834,0.0000026937,0.0000027041, +0.0000027125,0.0000027186,0.0000027220,0.0000027247,0.0000027310, +0.0000027406,0.0000027490,0.0000027537,0.0000027543,0.0000027511, +0.0000027468,0.0000027462,0.0000027511,0.0000027611,0.0000027747, +0.0000027901,0.0000028049,0.0000028172,0.0000028268,0.0000028347, +0.0000028406,0.0000028421,0.0000028368,0.0000028293,0.0000028321, +0.0000028440,0.0000028563,0.0000028620,0.0000028622,0.0000028604, +0.0000028587,0.0000028564,0.0000028512,0.0000028451,0.0000028405, +0.0000028369,0.0000028325,0.0000028249,0.0000028142,0.0000028020, +0.0000027886,0.0000027735,0.0000027581,0.0000027431,0.0000027294, +0.0000027189,0.0000027129,0.0000027085,0.0000027036,0.0000026976, +0.0000026931,0.0000026923,0.0000026931,0.0000026928,0.0000026905, +0.0000026877,0.0000026843,0.0000026795,0.0000026757,0.0000026731, +0.0000026720,0.0000026713,0.0000026701,0.0000026681,0.0000026658, +0.0000026642,0.0000026630,0.0000026609,0.0000026569,0.0000026513, +0.0000026448,0.0000026375,0.0000026297,0.0000026215,0.0000026119, +0.0000026003,0.0000025930,0.0000025992,0.0000026332,0.0000026699, +0.0000026886,0.0000026931,0.0000026989,0.0000027220,0.0000027563, +0.0000027694,0.0000027626,0.0000027467,0.0000027427,0.0000027505, +0.0000027616,0.0000027736,0.0000027808,0.0000027802,0.0000027643, +0.0000027293,0.0000027062,0.0000027095,0.0000027195,0.0000027200, +0.0000027165,0.0000027159,0.0000027189,0.0000027226,0.0000027264, +0.0000027378,0.0000027480,0.0000027467,0.0000027404,0.0000027375, +0.0000027402,0.0000027446,0.0000027476,0.0000027497,0.0000027511, +0.0000027497,0.0000027485,0.0000027480,0.0000027466,0.0000027432, +0.0000027386,0.0000027350,0.0000027337,0.0000027330,0.0000027311, +0.0000027290,0.0000027283,0.0000027290,0.0000027286,0.0000027284, +0.0000027285,0.0000027283,0.0000027283,0.0000027296,0.0000027331, +0.0000027376,0.0000027395,0.0000027412,0.0000027384,0.0000027324, +0.0000027251,0.0000027184,0.0000027143,0.0000027119,0.0000027091, +0.0000027051,0.0000027033,0.0000027023,0.0000026988,0.0000026897, +0.0000026807,0.0000026742,0.0000026693,0.0000026680,0.0000026702, +0.0000026721,0.0000026700,0.0000026660,0.0000026647,0.0000026643, +0.0000026615,0.0000026563,0.0000026491,0.0000026417,0.0000026368, +0.0000026361,0.0000026402,0.0000026465,0.0000026510,0.0000026518, +0.0000026501,0.0000026455,0.0000026404,0.0000026361,0.0000026294, +0.0000026157,0.0000025974,0.0000025824,0.0000025744,0.0000025702, +0.0000025678,0.0000025669,0.0000025663,0.0000025650,0.0000025627, +0.0000025599,0.0000025568,0.0000025515,0.0000025435,0.0000025371, +0.0000025349,0.0000025350,0.0000025368,0.0000025367,0.0000025330, +0.0000025402,0.0000025697,0.0000026080,0.0000026340,0.0000026362, +0.0000026328,0.0000026274,0.0000026255,0.0000026270,0.0000026297, +0.0000026340,0.0000026412,0.0000026505,0.0000026603,0.0000026675, +0.0000026708,0.0000026730,0.0000026745,0.0000026706,0.0000026602, +0.0000026496,0.0000026267,0.0000026177,0.0000025914,0.0000025634, +0.0000025740,0.0000026482,0.0000026997,0.0000027281,0.0000027477, +0.0000027767,0.0000027946,0.0000027957,0.0000027865,0.0000027771, +0.0000027733,0.0000027743,0.0000027713,0.0000027593,0.0000027617, +0.0000027714,0.0000027753,0.0000027741,0.0000027677,0.0000027654, +0.0000027691,0.0000027689,0.0000027568,0.0000027593,0.0000027726, +0.0000027729,0.0000027697,0.0000027591,0.0000027435,0.0000027328, +0.0000027368,0.0000027369,0.0000027310,0.0000027298,0.0000027307, +0.0000027291,0.0000027251,0.0000027231,0.0000027238,0.0000027289, +0.0000027309,0.0000027319,0.0000027315,0.0000027310,0.0000027303, +0.0000027294,0.0000027287,0.0000027272,0.0000027253,0.0000027224, +0.0000027180,0.0000027118,0.0000027028,0.0000026917,0.0000026768, +0.0000026605,0.0000026505,0.0000026473,0.0000026442,0.0000026398, +0.0000026376,0.0000026396,0.0000026442,0.0000026531,0.0000026649, +0.0000026736,0.0000026755,0.0000026752,0.0000026700,0.0000026664, +0.0000026608,0.0000026553,0.0000026497,0.0000026448,0.0000026405, +0.0000026381,0.0000026386,0.0000026416,0.0000026439,0.0000026444, +0.0000026440,0.0000026426,0.0000026406,0.0000026371,0.0000026318, +0.0000026243,0.0000026155,0.0000026081,0.0000026037,0.0000026021, +0.0000026020,0.0000026030,0.0000026043,0.0000026039,0.0000026004, +0.0000025934,0.0000025839,0.0000025735,0.0000025627,0.0000025518, +0.0000025429,0.0000025367,0.0000025329,0.0000025293,0.0000025266, +0.0000025250,0.0000025232,0.0000025210,0.0000025207,0.0000025248, +0.0000025370,0.0000025506,0.0000025627,0.0000025726,0.0000025744, +0.0000025687,0.0000025604,0.0000025574,0.0000025594,0.0000025603, +0.0000025585,0.0000025546,0.0000025479,0.0000025393,0.0000025307, +0.0000025261,0.0000025245,0.0000025262,0.0000025297,0.0000025319, +0.0000025296,0.0000025179,0.0000025010,0.0000024921,0.0000024877, +0.0000024837,0.0000024889,0.0000024989,0.0000025123,0.0000025167, +0.0000025225,0.0000025342,0.0000025513,0.0000025473,0.0000025319, +0.0000025254,0.0000025362,0.0000025496,0.0000025533,0.0000025814, +0.0000026157,0.0000026358,0.0000026418,0.0000026372,0.0000026272, +0.0000026102,0.0000025931,0.0000025889,0.0000025910,0.0000025891, +0.0000025779,0.0000025686,0.0000025691,0.0000025751,0.0000025824, +0.0000025883,0.0000025913,0.0000025944,0.0000026010,0.0000026101, +0.0000026251,0.0000026436,0.0000026545,0.0000026540,0.0000026493, +0.0000026448,0.0000026436,0.0000026457,0.0000026475,0.0000026461, +0.0000026433,0.0000026434,0.0000026467,0.0000026538,0.0000026634, +0.0000026677,0.0000026705,0.0000026730,0.0000026760,0.0000026831, +0.0000026953,0.0000027096,0.0000027278,0.0000027482,0.0000027640, +0.0000027746,0.0000027821,0.0000027834,0.0000027832,0.0000027886, +0.0000027981,0.0000028022,0.0000028017,0.0000027975,0.0000027941, +0.0000027939,0.0000027952,0.0000027966,0.0000027964,0.0000027973, +0.0000027992,0.0000028006,0.0000028004,0.0000027999,0.0000028022, +0.0000028060,0.0000028078,0.0000028061,0.0000028010,0.0000027953, +0.0000027903,0.0000027832,0.0000027764,0.0000027712,0.0000027651, +0.0000027595,0.0000027536,0.0000027458,0.0000027389,0.0000027344, +0.0000027336,0.0000027352,0.0000027379,0.0000027416,0.0000027461, +0.0000027518,0.0000027578,0.0000027645,0.0000027718,0.0000027787, +0.0000027817,0.0000027798,0.0000027750,0.0000027728,0.0000027715, +0.0000027704,0.0000027726,0.0000027775,0.0000027863,0.0000027994, +0.0000028125,0.0000028244,0.0000028347,0.0000028390,0.0000028380, +0.0000028377,0.0000028394,0.0000028392,0.0000028336,0.0000028251, +0.0000028155,0.0000028090,0.0000028062,0.0000028079,0.0000028109, +0.0000028130,0.0000028134,0.0000028126,0.0000028099,0.0000028058, +0.0000028002,0.0000027927,0.0000027853,0.0000027802,0.0000027785, +0.0000027792,0.0000027813,0.0000027844,0.0000027860,0.0000027860, +0.0000027835,0.0000027793,0.0000027767,0.0000027769,0.0000027785, +0.0000027806,0.0000027834,0.0000027869,0.0000027904,0.0000027922, +0.0000027923,0.0000027912,0.0000027907,0.0000027917,0.0000027944, +0.0000027985,0.0000028032,0.0000028084,0.0000028139,0.0000028180, +0.0000028178,0.0000028137,0.0000028096,0.0000028072,0.0000028056, +0.0000028043,0.0000028029,0.0000028007,0.0000027980,0.0000027973, +0.0000028005,0.0000028056,0.0000028092,0.0000028127,0.0000028136, +0.0000028066,0.0000027886,0.0000027697,0.0000027645,0.0000027731, +0.0000027877,0.0000028004,0.0000028100,0.0000028163,0.0000028178, +0.0000028149,0.0000028107,0.0000028080,0.0000028076,0.0000028096, +0.0000028124,0.0000028138,0.0000028140,0.0000028145,0.0000028158, +0.0000028178,0.0000028194,0.0000028205,0.0000028207,0.0000028199, +0.0000028179,0.0000028149,0.0000028123,0.0000028122,0.0000028154, +0.0000028197,0.0000028219,0.0000028226,0.0000028230,0.0000028244, +0.0000028253,0.0000028237,0.0000028180,0.0000028099,0.0000028031, +0.0000028002,0.0000028007,0.0000028021,0.0000028031,0.0000028053, +0.0000028108,0.0000028173,0.0000028214,0.0000028217,0.0000028165, +0.0000028065,0.0000027981,0.0000027951,0.0000027940,0.0000027899, +0.0000027830,0.0000027778,0.0000027769,0.0000027781,0.0000027785, +0.0000027773,0.0000027757,0.0000027751,0.0000027758,0.0000027752, +0.0000027718,0.0000027670,0.0000027625,0.0000027571,0.0000027510, +0.0000027480,0.0000027497,0.0000027592,0.0000027720,0.0000027786, +0.0000027791,0.0000027758,0.0000027707,0.0000027668,0.0000027650, +0.0000027652,0.0000027647,0.0000027623,0.0000027585,0.0000027540, +0.0000027507,0.0000027496,0.0000027496,0.0000027498,0.0000027491, +0.0000027463,0.0000027437,0.0000027457,0.0000027505,0.0000027537, +0.0000027546,0.0000027560,0.0000027560,0.0000027517,0.0000027457, +0.0000027440,0.0000027428,0.0000027290,0.0000026962,0.0000026650, +0.0000026478,0.0000026454,0.0000026535,0.0000026680,0.0000026866, +0.0000027008,0.0000027095,0.0000027182,0.0000027239,0.0000027278, +0.0000027340,0.0000027410,0.0000027424,0.0000027366,0.0000027296, +0.0000027276,0.0000027276,0.0000027240,0.0000027195,0.0000027191, +0.0000027234,0.0000027287,0.0000027345,0.0000027399,0.0000027414, +0.0000027401,0.0000027380,0.0000027347,0.0000027301,0.0000027271, +0.0000027264,0.0000027265,0.0000027262,0.0000027246,0.0000027154, +0.0000026911,0.0000026549,0.0000026189,0.0000026017,0.0000026081, +0.0000026364,0.0000026803,0.0000027254,0.0000027470,0.0000027469, +0.0000027446,0.0000027419,0.0000027365,0.0000027648,0.0000028057, +0.0000028136,0.0000028213,0.0000028221,0.0000028184,0.0000028075, +0.0000028074,0.0000028196,0.0000028309,0.0000028320,0.0000028291, +0.0000028250,0.0000028260,0.0000028306,0.0000028382,0.0000028452, +0.0000028503,0.0000028516,0.0000028504,0.0000028450,0.0000028375, +0.0000028288,0.0000028219,0.0000028193,0.0000028124,0.0000027975, +0.0000027829,0.0000027839,0.0000027931,0.0000027989,0.0000028053, +0.0000028122,0.0000028153,0.0000028194,0.0000028225,0.0000028221, +0.0000028217,0.0000028251,0.0000028292,0.0000028306,0.0000028494, +0.0000028570,0.0000028288,0.0000028398,0.0000028594,0.0000028664, +0.0000028666,0.0000028740,0.0000028985,0.0000029146,0.0000029104, +0.0000029071,0.0000029141,0.0000029209,0.0000029221,0.0000029201, +0.0000029165,0.0000029107,0.0000028985,0.0000028849,0.0000028820, +0.0000028837,0.0000028794,0.0000028696,0.0000028530,0.0000028348, +0.0000028311,0.0000028342,0.0000028402,0.0000028428,0.0000028411, +0.0000028388,0.0000028368,0.0000028328,0.0000028267,0.0000028223, +0.0000028200,0.0000028154,0.0000028119,0.0000028128,0.0000028122, +0.0000028051,0.0000027927,0.0000027819,0.0000027732,0.0000027683, +0.0000027673,0.0000027697,0.0000027720,0.0000027716,0.0000027683, +0.0000027643,0.0000027628,0.0000027657,0.0000027732,0.0000027817, +0.0000027859,0.0000027864,0.0000027852,0.0000027842,0.0000027836, +0.0000027831,0.0000027798,0.0000027718,0.0000027607,0.0000027484, +0.0000027387,0.0000027352,0.0000027369,0.0000027414,0.0000027450, +0.0000027459,0.0000027450,0.0000027429,0.0000027409,0.0000027407, +0.0000027411,0.0000027413,0.0000027424,0.0000027449,0.0000027476, +0.0000027496,0.0000027508,0.0000027503,0.0000027478,0.0000027449, +0.0000027414,0.0000027371,0.0000027333,0.0000027326,0.0000027349, +0.0000027402,0.0000027472,0.0000027529,0.0000027556,0.0000027556, +0.0000027545,0.0000027536,0.0000027518,0.0000027487,0.0000027456, +0.0000027454,0.0000027497,0.0000027572,0.0000027652,0.0000027720, +0.0000027774,0.0000027825,0.0000027861,0.0000027875,0.0000027876, +0.0000027854,0.0000027806,0.0000027748,0.0000027688,0.0000027641, +0.0000027603,0.0000027552,0.0000027472,0.0000027375,0.0000027301, +0.0000027282,0.0000027297,0.0000027327,0.0000027347,0.0000027349, +0.0000027336,0.0000027332,0.0000027374,0.0000027466,0.0000027585, +0.0000027673,0.0000027697,0.0000027688,0.0000027675,0.0000027695, +0.0000027755,0.0000027806,0.0000027813,0.0000027773,0.0000027699, +0.0000027602,0.0000027492,0.0000027394,0.0000027333,0.0000027317, +0.0000027324,0.0000027321,0.0000027269,0.0000027165,0.0000027058, +0.0000026987,0.0000026930,0.0000026850,0.0000026743,0.0000026644, +0.0000026580,0.0000026549,0.0000026550,0.0000026583,0.0000026608, +0.0000026595,0.0000026552,0.0000026502,0.0000026470,0.0000026460, +0.0000026455,0.0000026450,0.0000026458,0.0000026480,0.0000026498, +0.0000026492,0.0000026457,0.0000026414,0.0000026399,0.0000026390, +0.0000026397,0.0000026413,0.0000026431,0.0000026451,0.0000026474, +0.0000026505,0.0000026546,0.0000026588,0.0000026637,0.0000026703, +0.0000026762,0.0000026808,0.0000026835,0.0000026860,0.0000026910, +0.0000026990,0.0000027074,0.0000027141,0.0000027186,0.0000027205, +0.0000027204,0.0000027223,0.0000027269,0.0000027355,0.0000027479, +0.0000027634,0.0000027786,0.0000027920,0.0000028029,0.0000028129, +0.0000028208,0.0000028243,0.0000028200,0.0000028118,0.0000028116, +0.0000028197,0.0000028299,0.0000028354,0.0000028365,0.0000028346, +0.0000028324,0.0000028313,0.0000028310,0.0000028302,0.0000028292, +0.0000028278,0.0000028250,0.0000028186,0.0000028082,0.0000027961, +0.0000027838,0.0000027709,0.0000027561,0.0000027410,0.0000027259, +0.0000027153,0.0000027090,0.0000027064,0.0000027024,0.0000026947, +0.0000026856,0.0000026785,0.0000026746,0.0000026717,0.0000026679, +0.0000026647,0.0000026623,0.0000026593,0.0000026576,0.0000026580, +0.0000026582,0.0000026574,0.0000026562,0.0000026549,0.0000026540, +0.0000026541,0.0000026556,0.0000026565,0.0000026551,0.0000026491, +0.0000026406,0.0000026322,0.0000026253,0.0000026197,0.0000026140, +0.0000026053,0.0000025929,0.0000025861,0.0000026053,0.0000026483, +0.0000026792,0.0000026877,0.0000026931,0.0000027178,0.0000027551, +0.0000027707,0.0000027632,0.0000027459,0.0000027412,0.0000027485, +0.0000027593,0.0000027715,0.0000027807,0.0000027826,0.0000027685, +0.0000027319,0.0000027099,0.0000027130,0.0000027197,0.0000027169, +0.0000027122,0.0000027119,0.0000027151,0.0000027205,0.0000027231, +0.0000027263,0.0000027369,0.0000027457,0.0000027447,0.0000027397, +0.0000027365,0.0000027360,0.0000027384,0.0000027432,0.0000027479, +0.0000027505,0.0000027520,0.0000027525,0.0000027524,0.0000027508, +0.0000027479,0.0000027444,0.0000027441,0.0000027438,0.0000027423, +0.0000027404,0.0000027393,0.0000027399,0.0000027396,0.0000027382, +0.0000027375,0.0000027376,0.0000027375,0.0000027386,0.0000027388, +0.0000027397,0.0000027378,0.0000027342,0.0000027295,0.0000027244, +0.0000027193,0.0000027153,0.0000027119,0.0000027083,0.0000027033, +0.0000026990,0.0000026982,0.0000026996,0.0000026981,0.0000026900, +0.0000026809,0.0000026741,0.0000026687,0.0000026666,0.0000026686, +0.0000026710,0.0000026694,0.0000026650,0.0000026628,0.0000026623, +0.0000026604,0.0000026566,0.0000026515,0.0000026450,0.0000026373, +0.0000026314,0.0000026304,0.0000026351,0.0000026422,0.0000026465, +0.0000026465,0.0000026433,0.0000026397,0.0000026373,0.0000026322, +0.0000026193,0.0000026018,0.0000025879,0.0000025803,0.0000025750, +0.0000025695,0.0000025640,0.0000025595,0.0000025561,0.0000025534, +0.0000025509,0.0000025481,0.0000025452,0.0000025401,0.0000025318, +0.0000025253,0.0000025246,0.0000025280,0.0000025330,0.0000025342, +0.0000025295,0.0000025234,0.0000025360,0.0000025698,0.0000026063, +0.0000026289,0.0000026319,0.0000026304,0.0000026268,0.0000026260, +0.0000026266,0.0000026284,0.0000026327,0.0000026402,0.0000026516, +0.0000026626,0.0000026686,0.0000026709,0.0000026737,0.0000026722, +0.0000026638,0.0000026512,0.0000026292,0.0000026130,0.0000025945, +0.0000025586,0.0000025633,0.0000026182,0.0000026814,0.0000027163, +0.0000027345,0.0000027612,0.0000027861,0.0000027921,0.0000027860, +0.0000027773,0.0000027737,0.0000027746,0.0000027671,0.0000027584, +0.0000027648,0.0000027712,0.0000027728,0.0000027680,0.0000027631, +0.0000027664,0.0000027708,0.0000027644,0.0000027506,0.0000027610, +0.0000027710,0.0000027723,0.0000027686,0.0000027583,0.0000027419, +0.0000027331,0.0000027380,0.0000027372,0.0000027321,0.0000027310, +0.0000027324,0.0000027325,0.0000027301,0.0000027275,0.0000027274, +0.0000027321,0.0000027341,0.0000027345,0.0000027334,0.0000027321, +0.0000027312,0.0000027299,0.0000027287,0.0000027267,0.0000027237, +0.0000027198,0.0000027148,0.0000027097,0.0000027030,0.0000026936, +0.0000026822,0.0000026688,0.0000026564,0.0000026496,0.0000026485, +0.0000026479,0.0000026453,0.0000026432,0.0000026430,0.0000026456, +0.0000026519,0.0000026599,0.0000026698,0.0000026784,0.0000026825, +0.0000026858,0.0000026851,0.0000026805,0.0000026744,0.0000026695, +0.0000026653,0.0000026624,0.0000026623,0.0000026643,0.0000026653, +0.0000026649,0.0000026635,0.0000026606,0.0000026566,0.0000026500, +0.0000026394,0.0000026265,0.0000026117,0.0000025999,0.0000025942, +0.0000025933,0.0000025945,0.0000025973,0.0000026006,0.0000026018, +0.0000025992,0.0000025924,0.0000025828,0.0000025724,0.0000025619, +0.0000025517,0.0000025431,0.0000025370,0.0000025330,0.0000025299, +0.0000025264,0.0000025235,0.0000025214,0.0000025189,0.0000025171, +0.0000025184,0.0000025271,0.0000025417,0.0000025557,0.0000025693, +0.0000025750,0.0000025716,0.0000025631,0.0000025631,0.0000025725, +0.0000025796,0.0000025799,0.0000025761,0.0000025711,0.0000025634, +0.0000025519,0.0000025409,0.0000025337,0.0000025312,0.0000025301, +0.0000025300,0.0000025320,0.0000025294,0.0000025187,0.0000025018, +0.0000024921,0.0000024887,0.0000024821,0.0000024857,0.0000024975, +0.0000025115,0.0000025181,0.0000025244,0.0000025330,0.0000025515, +0.0000025499,0.0000025317,0.0000025226,0.0000025314,0.0000025472, +0.0000025524,0.0000025753,0.0000026125,0.0000026338,0.0000026416, +0.0000026370,0.0000026271,0.0000026115,0.0000025951,0.0000025903, +0.0000025925,0.0000025910,0.0000025821,0.0000025754,0.0000025766, +0.0000025824,0.0000025902,0.0000025970,0.0000025994,0.0000026008, +0.0000026050,0.0000026145,0.0000026306,0.0000026457,0.0000026507, +0.0000026476,0.0000026424,0.0000026391,0.0000026401,0.0000026428, +0.0000026429,0.0000026395,0.0000026381,0.0000026395,0.0000026439, +0.0000026531,0.0000026613,0.0000026635,0.0000026658,0.0000026700, +0.0000026750,0.0000026824,0.0000026946,0.0000027088,0.0000027230, +0.0000027392,0.0000027535,0.0000027643,0.0000027731,0.0000027751, +0.0000027746,0.0000027790,0.0000027878,0.0000027926,0.0000027919, +0.0000027873,0.0000027841,0.0000027840,0.0000027844,0.0000027843, +0.0000027824,0.0000027808,0.0000027805,0.0000027824,0.0000027829, +0.0000027831,0.0000027861,0.0000027916,0.0000027961,0.0000027965, +0.0000027925,0.0000027858,0.0000027797,0.0000027729,0.0000027634, +0.0000027537,0.0000027428,0.0000027335,0.0000027283,0.0000027255, +0.0000027243,0.0000027258,0.0000027281,0.0000027296,0.0000027311, +0.0000027349,0.0000027402,0.0000027466,0.0000027540,0.0000027622, +0.0000027696,0.0000027763,0.0000027813,0.0000027817,0.0000027774, +0.0000027743,0.0000027738,0.0000027739,0.0000027762,0.0000027795, +0.0000027848,0.0000027946,0.0000028072,0.0000028196,0.0000028304, +0.0000028370,0.0000028376,0.0000028354,0.0000028350,0.0000028350, +0.0000028317,0.0000028245,0.0000028145,0.0000028065,0.0000028030, +0.0000028057,0.0000028111,0.0000028145,0.0000028149,0.0000028137, +0.0000028109,0.0000028072,0.0000028034,0.0000027987,0.0000027941, +0.0000027904,0.0000027879,0.0000027866,0.0000027861,0.0000027858, +0.0000027857,0.0000027853,0.0000027828,0.0000027780,0.0000027737, +0.0000027725,0.0000027735,0.0000027757,0.0000027787,0.0000027817, +0.0000027850,0.0000027865,0.0000027854,0.0000027839,0.0000027836, +0.0000027854,0.0000027895,0.0000027953,0.0000028015,0.0000028078, +0.0000028135,0.0000028180,0.0000028196,0.0000028176,0.0000028145, +0.0000028132,0.0000028128,0.0000028112,0.0000028078,0.0000028034, +0.0000027996,0.0000027987,0.0000028017,0.0000028075,0.0000028119, +0.0000028154,0.0000028189,0.0000028188,0.0000028102,0.0000027909, +0.0000027739,0.0000027705,0.0000027787,0.0000027893,0.0000027974, +0.0000028035,0.0000028074,0.0000028081,0.0000028066,0.0000028040, +0.0000028024,0.0000028033,0.0000028063,0.0000028086,0.0000028092, +0.0000028102,0.0000028117,0.0000028147,0.0000028173,0.0000028187, +0.0000028182,0.0000028166,0.0000028138,0.0000028110,0.0000028083, +0.0000028060,0.0000028058,0.0000028098,0.0000028163,0.0000028210, +0.0000028230,0.0000028243,0.0000028255,0.0000028248,0.0000028208, +0.0000028126,0.0000028031,0.0000027979,0.0000027985,0.0000028014, +0.0000028033,0.0000028047,0.0000028083,0.0000028147,0.0000028208, +0.0000028242,0.0000028221,0.0000028142,0.0000028058,0.0000028027, +0.0000028029,0.0000028007,0.0000027936,0.0000027868,0.0000027844, +0.0000027842,0.0000027833,0.0000027803,0.0000027761,0.0000027726, +0.0000027712,0.0000027710,0.0000027693,0.0000027657,0.0000027615, +0.0000027572,0.0000027518,0.0000027472,0.0000027462,0.0000027496, +0.0000027588,0.0000027704,0.0000027774,0.0000027783,0.0000027765, +0.0000027728,0.0000027703,0.0000027691,0.0000027693,0.0000027680, +0.0000027654,0.0000027617,0.0000027580,0.0000027553,0.0000027539, +0.0000027529,0.0000027521,0.0000027505,0.0000027479,0.0000027462, +0.0000027481,0.0000027526,0.0000027539,0.0000027524,0.0000027524, +0.0000027526,0.0000027494,0.0000027438,0.0000027423,0.0000027421, +0.0000027281,0.0000026925,0.0000026579,0.0000026395,0.0000026386, +0.0000026474,0.0000026615,0.0000026785,0.0000026914,0.0000027014, +0.0000027113,0.0000027178,0.0000027225,0.0000027290,0.0000027373, +0.0000027405,0.0000027348,0.0000027258,0.0000027208,0.0000027198, +0.0000027170,0.0000027141,0.0000027141,0.0000027180,0.0000027235, +0.0000027302,0.0000027380,0.0000027421,0.0000027419,0.0000027393, +0.0000027351,0.0000027309,0.0000027279,0.0000027259,0.0000027251, +0.0000027250,0.0000027252,0.0000027237,0.0000027134,0.0000026897, +0.0000026527,0.0000026169,0.0000026033,0.0000026099,0.0000026384, +0.0000026858,0.0000027312,0.0000027459,0.0000027405,0.0000027342, +0.0000027272,0.0000027401,0.0000027935,0.0000028143,0.0000028223, +0.0000028234,0.0000028195,0.0000028104,0.0000028082,0.0000028178, +0.0000028311,0.0000028356,0.0000028380,0.0000028392,0.0000028402, +0.0000028430,0.0000028494,0.0000028553,0.0000028584,0.0000028584, +0.0000028554,0.0000028488,0.0000028411,0.0000028311,0.0000028219, +0.0000028168,0.0000028116,0.0000028025,0.0000027882,0.0000027829, +0.0000027861,0.0000027934,0.0000028018,0.0000028112,0.0000028155, +0.0000028204,0.0000028259,0.0000028255,0.0000028214,0.0000028213, +0.0000028262,0.0000028280,0.0000028370,0.0000028558,0.0000028331, +0.0000028312,0.0000028536,0.0000028634,0.0000028640,0.0000028706, +0.0000028967,0.0000029110,0.0000029017,0.0000029022,0.0000029142, +0.0000029185,0.0000029170,0.0000029147,0.0000029109,0.0000029039, +0.0000028918,0.0000028837,0.0000028836,0.0000028835,0.0000028773, +0.0000028686,0.0000028510,0.0000028349,0.0000028317,0.0000028338, +0.0000028389,0.0000028414,0.0000028407,0.0000028376,0.0000028329, +0.0000028277,0.0000028245,0.0000028233,0.0000028206,0.0000028154, +0.0000028139,0.0000028150,0.0000028113,0.0000028000,0.0000027861, +0.0000027743,0.0000027659,0.0000027627,0.0000027635,0.0000027670, +0.0000027703,0.0000027704,0.0000027675,0.0000027637,0.0000027628, +0.0000027672,0.0000027751,0.0000027828,0.0000027883,0.0000027908, +0.0000027920,0.0000027926,0.0000027924,0.0000027904,0.0000027853, +0.0000027764,0.0000027657,0.0000027536,0.0000027416,0.0000027337, +0.0000027313,0.0000027327,0.0000027357,0.0000027376,0.0000027381, +0.0000027370,0.0000027340,0.0000027318,0.0000027329,0.0000027356, +0.0000027363,0.0000027344,0.0000027316,0.0000027308,0.0000027337, +0.0000027391,0.0000027432,0.0000027443,0.0000027434,0.0000027412, +0.0000027395,0.0000027386,0.0000027370,0.0000027345,0.0000027326, +0.0000027325,0.0000027338,0.0000027363,0.0000027393,0.0000027425, +0.0000027436,0.0000027428,0.0000027398,0.0000027363,0.0000027342, +0.0000027338,0.0000027354,0.0000027406,0.0000027489,0.0000027590, +0.0000027683,0.0000027764,0.0000027836,0.0000027889,0.0000027911, +0.0000027907,0.0000027883,0.0000027827,0.0000027762,0.0000027707, +0.0000027672,0.0000027652,0.0000027616,0.0000027537,0.0000027436, +0.0000027356,0.0000027317,0.0000027309,0.0000027322,0.0000027338, +0.0000027347,0.0000027360,0.0000027389,0.0000027448,0.0000027535, +0.0000027618,0.0000027664,0.0000027669,0.0000027681,0.0000027732, +0.0000027799,0.0000027838,0.0000027833,0.0000027785,0.0000027705, +0.0000027610,0.0000027517,0.0000027451,0.0000027423,0.0000027421, +0.0000027428,0.0000027419,0.0000027377,0.0000027305,0.0000027217, +0.0000027115,0.0000026998,0.0000026873,0.0000026754,0.0000026661, +0.0000026606,0.0000026590,0.0000026604,0.0000026622,0.0000026620, +0.0000026595,0.0000026561,0.0000026528,0.0000026509,0.0000026504, +0.0000026510,0.0000026525,0.0000026552,0.0000026571,0.0000026567, +0.0000026536,0.0000026492,0.0000026455,0.0000026438,0.0000026434, +0.0000026431,0.0000026434,0.0000026437,0.0000026448,0.0000026455, +0.0000026464,0.0000026474,0.0000026473,0.0000026489,0.0000026507, +0.0000026525,0.0000026548,0.0000026576,0.0000026612,0.0000026661, +0.0000026714,0.0000026760,0.0000026788,0.0000026798,0.0000026806, +0.0000026845,0.0000026915,0.0000027007,0.0000027140,0.0000027317, +0.0000027498,0.0000027657,0.0000027779,0.0000027888,0.0000027986, +0.0000028056,0.0000028047,0.0000027992,0.0000027987,0.0000028052, +0.0000028126,0.0000028166,0.0000028172,0.0000028150,0.0000028136, +0.0000028156,0.0000028176,0.0000028191,0.0000028202,0.0000028208, +0.0000028200,0.0000028155,0.0000028063,0.0000027949,0.0000027838, +0.0000027717,0.0000027590,0.0000027445,0.0000027281,0.0000027153, +0.0000027051,0.0000026980,0.0000026902,0.0000026797,0.0000026676, +0.0000026569,0.0000026508,0.0000026483,0.0000026468,0.0000026459, +0.0000026455,0.0000026441,0.0000026420,0.0000026427,0.0000026423, +0.0000026405,0.0000026383,0.0000026364,0.0000026358,0.0000026377, +0.0000026419,0.0000026463,0.0000026477,0.0000026456,0.0000026382, +0.0000026279,0.0000026187,0.0000026139,0.0000026124,0.0000026090, +0.0000025987,0.0000025859,0.0000025915,0.0000026278,0.0000026673, +0.0000026822,0.0000026884,0.0000027147,0.0000027547,0.0000027707, +0.0000027623,0.0000027455,0.0000027414,0.0000027477,0.0000027574, +0.0000027693,0.0000027806,0.0000027838,0.0000027693,0.0000027333, +0.0000027150,0.0000027191,0.0000027224,0.0000027154,0.0000027075, +0.0000027077,0.0000027115,0.0000027165,0.0000027210,0.0000027209, +0.0000027231,0.0000027329,0.0000027420,0.0000027436,0.0000027413, +0.0000027371,0.0000027339,0.0000027333,0.0000027356,0.0000027379, +0.0000027415,0.0000027458,0.0000027494,0.0000027504,0.0000027492, +0.0000027468,0.0000027472,0.0000027493,0.0000027500,0.0000027494, +0.0000027496,0.0000027508,0.0000027509,0.0000027489,0.0000027468, +0.0000027453,0.0000027422,0.0000027404,0.0000027373,0.0000027329, +0.0000027280,0.0000027238,0.0000027203,0.0000027171,0.0000027137, +0.0000027110,0.0000027067,0.0000027012,0.0000026946,0.0000026916, +0.0000026926,0.0000026965,0.0000026969,0.0000026893,0.0000026801, +0.0000026736,0.0000026681,0.0000026655,0.0000026670,0.0000026696, +0.0000026689,0.0000026644,0.0000026613,0.0000026604,0.0000026592, +0.0000026560,0.0000026516,0.0000026471,0.0000026417,0.0000026342, +0.0000026271,0.0000026254,0.0000026290,0.0000026360,0.0000026398, +0.0000026390,0.0000026365,0.0000026354,0.0000026337,0.0000026241, +0.0000026071,0.0000025932,0.0000025873,0.0000025833,0.0000025751, +0.0000025634,0.0000025515,0.0000025422,0.0000025360,0.0000025322, +0.0000025297,0.0000025282,0.0000025268,0.0000025233,0.0000025165, +0.0000025107,0.0000025102,0.0000025152,0.0000025232,0.0000025296, +0.0000025276,0.0000025159,0.0000025143,0.0000025317,0.0000025649, +0.0000025961,0.0000026170,0.0000026276,0.0000026262,0.0000026257, +0.0000026258,0.0000026276,0.0000026308,0.0000026354,0.0000026440, +0.0000026564,0.0000026654,0.0000026689,0.0000026737,0.0000026737, +0.0000026660,0.0000026523,0.0000026321,0.0000026078,0.0000025961, +0.0000025579,0.0000025554,0.0000025863,0.0000026570,0.0000026977, +0.0000027219,0.0000027432,0.0000027737,0.0000027881,0.0000027849, +0.0000027775,0.0000027747,0.0000027748,0.0000027653,0.0000027606, +0.0000027671,0.0000027699,0.0000027684,0.0000027618,0.0000027616, +0.0000027688,0.0000027689,0.0000027560,0.0000027482,0.0000027629, +0.0000027687,0.0000027714,0.0000027674,0.0000027573,0.0000027402, +0.0000027337,0.0000027389,0.0000027380,0.0000027338,0.0000027327, +0.0000027345,0.0000027351,0.0000027329,0.0000027299,0.0000027296, +0.0000027350,0.0000027366,0.0000027362,0.0000027339,0.0000027318, +0.0000027308,0.0000027299,0.0000027292,0.0000027275,0.0000027242, +0.0000027196,0.0000027137,0.0000027071,0.0000027002,0.0000026929, +0.0000026842,0.0000026739,0.0000026647,0.0000026556,0.0000026503, +0.0000026501,0.0000026509,0.0000026499,0.0000026470,0.0000026461, +0.0000026493,0.0000026536,0.0000026595,0.0000026672,0.0000026755, +0.0000026828,0.0000026870,0.0000026870,0.0000026835,0.0000026803, +0.0000026775,0.0000026749,0.0000026742,0.0000026751,0.0000026752, +0.0000026736,0.0000026713,0.0000026675,0.0000026617,0.0000026520, +0.0000026378,0.0000026204,0.0000026042,0.0000025941,0.0000025911, +0.0000025910,0.0000025936,0.0000025970,0.0000025997,0.0000025995, +0.0000025955,0.0000025872,0.0000025761,0.0000025655,0.0000025562, +0.0000025476,0.0000025402,0.0000025350,0.0000025310,0.0000025282, +0.0000025251,0.0000025221,0.0000025196,0.0000025172,0.0000025143, +0.0000025137,0.0000025200,0.0000025338,0.0000025477,0.0000025615, +0.0000025724,0.0000025730,0.0000025642,0.0000025639,0.0000025786, +0.0000025907,0.0000025900,0.0000025840,0.0000025784,0.0000025745, +0.0000025709,0.0000025680,0.0000025629,0.0000025541,0.0000025425, +0.0000025341,0.0000025308,0.0000025296,0.0000025275,0.0000025186, +0.0000025039,0.0000024927,0.0000024892,0.0000024806,0.0000024818, +0.0000024960,0.0000025107,0.0000025200,0.0000025265,0.0000025321, +0.0000025485,0.0000025518,0.0000025325,0.0000025207,0.0000025270, +0.0000025453,0.0000025517,0.0000025678,0.0000026057,0.0000026304, +0.0000026413,0.0000026378,0.0000026288,0.0000026149,0.0000025989, +0.0000025920,0.0000025937,0.0000025929,0.0000025857,0.0000025811, +0.0000025826,0.0000025881,0.0000025949,0.0000026008,0.0000026032, +0.0000026049,0.0000026094,0.0000026206,0.0000026359,0.0000026458, +0.0000026452,0.0000026412,0.0000026375,0.0000026366,0.0000026388, +0.0000026391,0.0000026356,0.0000026327,0.0000026330,0.0000026363, +0.0000026430,0.0000026522,0.0000026575,0.0000026583,0.0000026607, +0.0000026675,0.0000026745,0.0000026826,0.0000026951,0.0000027076, +0.0000027168,0.0000027297,0.0000027421,0.0000027525,0.0000027634, +0.0000027676,0.0000027675,0.0000027699,0.0000027757,0.0000027799, +0.0000027785,0.0000027742,0.0000027712,0.0000027692,0.0000027667, +0.0000027648,0.0000027618,0.0000027587,0.0000027572,0.0000027600, +0.0000027621,0.0000027631,0.0000027652,0.0000027702,0.0000027751, +0.0000027766,0.0000027729,0.0000027660,0.0000027585,0.0000027512, +0.0000027442,0.0000027366,0.0000027287,0.0000027221,0.0000027187, +0.0000027183,0.0000027205,0.0000027251,0.0000027303,0.0000027331, +0.0000027332,0.0000027354,0.0000027405,0.0000027466,0.0000027540, +0.0000027634,0.0000027715,0.0000027765,0.0000027803,0.0000027814, +0.0000027783,0.0000027743,0.0000027729,0.0000027744,0.0000027790, +0.0000027834,0.0000027865,0.0000027925,0.0000028028,0.0000028155, +0.0000028265,0.0000028334,0.0000028356,0.0000028337,0.0000028313, +0.0000028303,0.0000028281,0.0000028227,0.0000028138,0.0000028049, +0.0000028007,0.0000028032,0.0000028090,0.0000028129,0.0000028134, +0.0000028115,0.0000028088,0.0000028067,0.0000028050,0.0000028033, +0.0000028019,0.0000028000,0.0000027965,0.0000027928,0.0000027895, +0.0000027866,0.0000027841,0.0000027823,0.0000027806,0.0000027780, +0.0000027748,0.0000027736,0.0000027741,0.0000027762,0.0000027787, +0.0000027811,0.0000027826,0.0000027822,0.0000027799,0.0000027771, +0.0000027765,0.0000027785,0.0000027827,0.0000027886,0.0000027961, +0.0000028043,0.0000028119,0.0000028177,0.0000028211,0.0000028208, +0.0000028181,0.0000028169,0.0000028177,0.0000028178,0.0000028151, +0.0000028094,0.0000028034,0.0000028012,0.0000028033,0.0000028099, +0.0000028162,0.0000028200,0.0000028238,0.0000028265,0.0000028245, +0.0000028138,0.0000027953,0.0000027804,0.0000027780,0.0000027838, +0.0000027897,0.0000027942,0.0000027983,0.0000028012,0.0000028018, +0.0000028002,0.0000027987,0.0000027995,0.0000028024,0.0000028052, +0.0000028063,0.0000028073,0.0000028098,0.0000028136,0.0000028170, +0.0000028190,0.0000028193,0.0000028181,0.0000028152,0.0000028114, +0.0000028075,0.0000028041,0.0000028014,0.0000028008,0.0000028037, +0.0000028112,0.0000028183,0.0000028225,0.0000028247,0.0000028251, +0.0000028225,0.0000028153,0.0000028051,0.0000027983,0.0000027978, +0.0000028006,0.0000028031,0.0000028038,0.0000028044,0.0000028084, +0.0000028161,0.0000028228,0.0000028234,0.0000028183,0.0000028132, +0.0000028116,0.0000028123,0.0000028112,0.0000028046,0.0000027957, +0.0000027898,0.0000027871,0.0000027847,0.0000027808,0.0000027758, +0.0000027707,0.0000027668,0.0000027652,0.0000027643,0.0000027623, +0.0000027588,0.0000027545,0.0000027501,0.0000027463,0.0000027449, +0.0000027462,0.0000027511,0.0000027594,0.0000027689,0.0000027751, +0.0000027776,0.0000027765,0.0000027748,0.0000027732,0.0000027726, +0.0000027727,0.0000027707,0.0000027677,0.0000027645,0.0000027624, +0.0000027609,0.0000027597,0.0000027580,0.0000027561,0.0000027542, +0.0000027524,0.0000027520,0.0000027545,0.0000027572,0.0000027553, +0.0000027516,0.0000027509,0.0000027515,0.0000027486,0.0000027437, +0.0000027428,0.0000027424,0.0000027251,0.0000026863,0.0000026503, +0.0000026345,0.0000026352,0.0000026453,0.0000026580,0.0000026729, +0.0000026848,0.0000026953,0.0000027053,0.0000027118,0.0000027159, +0.0000027214,0.0000027295,0.0000027346,0.0000027321,0.0000027238, +0.0000027161,0.0000027127,0.0000027109,0.0000027104,0.0000027108, +0.0000027139,0.0000027189,0.0000027259,0.0000027347,0.0000027410, +0.0000027427,0.0000027408,0.0000027363,0.0000027321,0.0000027288, +0.0000027248,0.0000027208,0.0000027200,0.0000027221,0.0000027234, +0.0000027207,0.0000027112,0.0000026879,0.0000026517,0.0000026169, +0.0000026029,0.0000026095,0.0000026426,0.0000026963,0.0000027358, +0.0000027389,0.0000027297,0.0000027207,0.0000027220,0.0000027688, +0.0000028133,0.0000028228,0.0000028259,0.0000028219,0.0000028161, +0.0000028122,0.0000028183,0.0000028296,0.0000028372,0.0000028422, +0.0000028482,0.0000028532,0.0000028564,0.0000028610,0.0000028647, +0.0000028659,0.0000028652,0.0000028612,0.0000028538,0.0000028450, +0.0000028345,0.0000028241,0.0000028164,0.0000028094,0.0000028032, +0.0000027941,0.0000027872,0.0000027833,0.0000027856,0.0000027937, +0.0000028054,0.0000028140,0.0000028197,0.0000028261,0.0000028288, +0.0000028247,0.0000028208,0.0000028225,0.0000028260,0.0000028272, +0.0000028476,0.0000028409,0.0000028249,0.0000028463,0.0000028597, +0.0000028616,0.0000028666,0.0000028918,0.0000029060,0.0000028953, +0.0000028982,0.0000029122,0.0000029130,0.0000029103,0.0000029086, +0.0000029051,0.0000028981,0.0000028885,0.0000028841,0.0000028848, +0.0000028828,0.0000028767,0.0000028681,0.0000028508,0.0000028361, +0.0000028319,0.0000028333,0.0000028375,0.0000028400,0.0000028389, +0.0000028330,0.0000028272,0.0000028245,0.0000028246,0.0000028240, +0.0000028199,0.0000028155,0.0000028154,0.0000028141,0.0000028050, +0.0000027898,0.0000027744,0.0000027627,0.0000027568,0.0000027567, +0.0000027612,0.0000027666,0.0000027702,0.0000027701,0.0000027668, +0.0000027633,0.0000027628,0.0000027676,0.0000027758,0.0000027831, +0.0000027889,0.0000027937,0.0000027976,0.0000028002,0.0000028004, +0.0000027977,0.0000027917,0.0000027827,0.0000027720,0.0000027594, +0.0000027450,0.0000027325,0.0000027258,0.0000027240,0.0000027246, +0.0000027254,0.0000027245,0.0000027221,0.0000027183,0.0000027136, +0.0000027105,0.0000027117,0.0000027165,0.0000027211,0.0000027221, +0.0000027185,0.0000027136,0.0000027121,0.0000027145,0.0000027196, +0.0000027248,0.0000027291,0.0000027323,0.0000027352,0.0000027378, +0.0000027381,0.0000027357,0.0000027319,0.0000027279,0.0000027259, +0.0000027260,0.0000027272,0.0000027293,0.0000027313,0.0000027316, +0.0000027303,0.0000027287,0.0000027276,0.0000027265,0.0000027248, +0.0000027240,0.0000027271,0.0000027352,0.0000027462,0.0000027572, +0.0000027671,0.0000027766,0.0000027847,0.0000027896,0.0000027909, +0.0000027892,0.0000027855,0.0000027803,0.0000027762,0.0000027744, +0.0000027735,0.0000027709,0.0000027651,0.0000027565,0.0000027460, +0.0000027360,0.0000027298,0.0000027282,0.0000027306,0.0000027352, +0.0000027388,0.0000027415,0.0000027452,0.0000027504,0.0000027554, +0.0000027592,0.0000027638,0.0000027701,0.0000027771,0.0000027828, +0.0000027844,0.0000027821,0.0000027755,0.0000027672,0.0000027586, +0.0000027518,0.0000027497,0.0000027505,0.0000027518,0.0000027519, +0.0000027505,0.0000027474,0.0000027428,0.0000027352,0.0000027231, +0.0000027078,0.0000026919,0.0000026782,0.0000026684,0.0000026633, +0.0000026624,0.0000026629,0.0000026630,0.0000026628,0.0000026618, +0.0000026591,0.0000026560,0.0000026539,0.0000026535,0.0000026549, +0.0000026579,0.0000026612,0.0000026623,0.0000026612,0.0000026590, +0.0000026571,0.0000026561,0.0000026561,0.0000026560,0.0000026556, +0.0000026551,0.0000026540,0.0000026524,0.0000026513,0.0000026491, +0.0000026459,0.0000026443,0.0000026410,0.0000026393,0.0000026401, +0.0000026419,0.0000026444,0.0000026470,0.0000026497,0.0000026518, +0.0000026522,0.0000026514,0.0000026504,0.0000026501,0.0000026507, +0.0000026540,0.0000026628,0.0000026791,0.0000026998,0.0000027199, +0.0000027377,0.0000027535,0.0000027681,0.0000027807,0.0000027856, +0.0000027847,0.0000027856,0.0000027920,0.0000027985,0.0000028021, +0.0000028021,0.0000028010,0.0000028028,0.0000028061,0.0000028089, +0.0000028113,0.0000028138,0.0000028159,0.0000028159,0.0000028121, +0.0000028028,0.0000027893,0.0000027752,0.0000027614,0.0000027461, +0.0000027286,0.0000027099,0.0000026932,0.0000026804,0.0000026701, +0.0000026607,0.0000026513,0.0000026415,0.0000026328,0.0000026285, +0.0000026283,0.0000026282,0.0000026279,0.0000026280,0.0000026277, +0.0000026275,0.0000026292,0.0000026312,0.0000026302,0.0000026266, +0.0000026214,0.0000026170,0.0000026169,0.0000026219,0.0000026290, +0.0000026337,0.0000026342,0.0000026310,0.0000026233,0.0000026136, +0.0000026072,0.0000026066,0.0000026078,0.0000026028,0.0000025910, +0.0000025875,0.0000026132,0.0000026560,0.0000026768,0.0000026849, +0.0000027133,0.0000027550,0.0000027699,0.0000027602,0.0000027453, +0.0000027428,0.0000027482,0.0000027565,0.0000027673,0.0000027799, +0.0000027838,0.0000027669,0.0000027329,0.0000027192,0.0000027245, +0.0000027265,0.0000027161,0.0000027021,0.0000027008,0.0000027078, +0.0000027124,0.0000027169,0.0000027193,0.0000027175,0.0000027176, +0.0000027265,0.0000027372,0.0000027423,0.0000027414,0.0000027384, +0.0000027348,0.0000027327,0.0000027303,0.0000027288,0.0000027306, +0.0000027358,0.0000027420,0.0000027457,0.0000027458,0.0000027459, +0.0000027477,0.0000027500,0.0000027509,0.0000027519,0.0000027538, +0.0000027547,0.0000027530,0.0000027498,0.0000027451,0.0000027402, +0.0000027342,0.0000027280,0.0000027223,0.0000027178,0.0000027148, +0.0000027126,0.0000027100,0.0000027069,0.0000027043,0.0000026991, +0.0000026927,0.0000026868,0.0000026857,0.0000026893,0.0000026942, +0.0000026953,0.0000026872,0.0000026779,0.0000026722,0.0000026672, +0.0000026644,0.0000026656,0.0000026685,0.0000026691,0.0000026647, +0.0000026606,0.0000026594,0.0000026582,0.0000026547,0.0000026494, +0.0000026443,0.0000026410,0.0000026375,0.0000026312,0.0000026237, +0.0000026202,0.0000026229,0.0000026295,0.0000026331,0.0000026326, +0.0000026315,0.0000026316,0.0000026280,0.0000026138,0.0000025978, +0.0000025907,0.0000025892,0.0000025823,0.0000025661,0.0000025458, +0.0000025292,0.0000025186,0.0000025121,0.0000025078,0.0000025056, +0.0000025055,0.0000025058,0.0000025048,0.0000025016,0.0000024982, +0.0000024978,0.0000025008,0.0000025074,0.0000025161,0.0000025213, +0.0000025151,0.0000025036,0.0000025036,0.0000025216,0.0000025491, +0.0000025755,0.0000025962,0.0000026101,0.0000026196,0.0000026242, +0.0000026262,0.0000026292,0.0000026340,0.0000026403,0.0000026505, +0.0000026617,0.0000026677,0.0000026741,0.0000026751,0.0000026671, +0.0000026525,0.0000026346,0.0000026035,0.0000025940,0.0000025634, +0.0000025502,0.0000025643,0.0000026198,0.0000026728,0.0000027063, +0.0000027263,0.0000027579,0.0000027817,0.0000027823,0.0000027772, +0.0000027762,0.0000027748,0.0000027657,0.0000027642,0.0000027682, +0.0000027678,0.0000027624,0.0000027578,0.0000027629,0.0000027681, +0.0000027628,0.0000027481,0.0000027496,0.0000027633,0.0000027663, +0.0000027698,0.0000027660,0.0000027556,0.0000027383,0.0000027340, +0.0000027395,0.0000027391,0.0000027358,0.0000027343,0.0000027355, +0.0000027359,0.0000027339,0.0000027315,0.0000027321,0.0000027368, +0.0000027376,0.0000027363,0.0000027333,0.0000027306,0.0000027294, +0.0000027286,0.0000027280,0.0000027270,0.0000027242,0.0000027201, +0.0000027145,0.0000027073,0.0000026981,0.0000026900,0.0000026829, +0.0000026755,0.0000026689,0.0000026615,0.0000026542,0.0000026505, +0.0000026510,0.0000026524,0.0000026515,0.0000026493,0.0000026501, +0.0000026533,0.0000026589,0.0000026644,0.0000026698,0.0000026747, +0.0000026781,0.0000026786,0.0000026765,0.0000026733,0.0000026706, +0.0000026697,0.0000026705,0.0000026717,0.0000026723,0.0000026710, +0.0000026678,0.0000026622,0.0000026531,0.0000026391,0.0000026219, +0.0000026066,0.0000025971,0.0000025935,0.0000025926,0.0000025933, +0.0000025945,0.0000025959,0.0000025951,0.0000025907,0.0000025834, +0.0000025728,0.0000025607,0.0000025509,0.0000025443,0.0000025391, +0.0000025344,0.0000025307,0.0000025276,0.0000025246,0.0000025210, +0.0000025185,0.0000025169,0.0000025151,0.0000025124,0.0000025114, +0.0000025149,0.0000025272,0.0000025413,0.0000025529,0.0000025656, +0.0000025717,0.0000025658,0.0000025609,0.0000025753,0.0000025924, +0.0000025921,0.0000025849,0.0000025766,0.0000025700,0.0000025669, +0.0000025698,0.0000025763,0.0000025829,0.0000025764,0.0000025602, +0.0000025419,0.0000025298,0.0000025254,0.0000025233,0.0000025173, +0.0000025065,0.0000024947,0.0000024886,0.0000024801,0.0000024785, +0.0000024941,0.0000025095,0.0000025217,0.0000025281,0.0000025314, +0.0000025432,0.0000025530,0.0000025351,0.0000025185,0.0000025232, +0.0000025411,0.0000025507,0.0000025599,0.0000025950,0.0000026255, +0.0000026411,0.0000026392,0.0000026315,0.0000026191,0.0000026033, +0.0000025939,0.0000025944,0.0000025944,0.0000025885,0.0000025848, +0.0000025863,0.0000025908,0.0000025962,0.0000026012,0.0000026037, +0.0000026064,0.0000026124,0.0000026239,0.0000026371,0.0000026425, +0.0000026402,0.0000026373,0.0000026356,0.0000026360,0.0000026360, +0.0000026328,0.0000026288,0.0000026281,0.0000026298,0.0000026351, +0.0000026423,0.0000026493,0.0000026526,0.0000026522,0.0000026561, +0.0000026661,0.0000026753,0.0000026845,0.0000026963,0.0000027044, +0.0000027094,0.0000027192,0.0000027292,0.0000027397,0.0000027527, +0.0000027593,0.0000027610,0.0000027625,0.0000027654,0.0000027679, +0.0000027657,0.0000027620,0.0000027577,0.0000027535,0.0000027486, +0.0000027460,0.0000027428,0.0000027392,0.0000027363,0.0000027361, +0.0000027371,0.0000027375,0.0000027384,0.0000027414,0.0000027450, +0.0000027475,0.0000027464,0.0000027427,0.0000027377,0.0000027332, +0.0000027306,0.0000027278,0.0000027249,0.0000027208,0.0000027171, +0.0000027163,0.0000027194,0.0000027258,0.0000027341,0.0000027386, +0.0000027393,0.0000027390,0.0000027423,0.0000027485,0.0000027548, +0.0000027643,0.0000027740,0.0000027794,0.0000027812,0.0000027812, +0.0000027782,0.0000027738,0.0000027715,0.0000027724,0.0000027793, +0.0000027861,0.0000027891,0.0000027926,0.0000028006,0.0000028123, +0.0000028231,0.0000028295,0.0000028317,0.0000028308,0.0000028276, +0.0000028253,0.0000028228,0.0000028184,0.0000028115,0.0000028043, +0.0000028011,0.0000028033,0.0000028074,0.0000028087,0.0000028076, +0.0000028051,0.0000028032,0.0000028035,0.0000028051,0.0000028067, +0.0000028075,0.0000028064,0.0000028026,0.0000027974,0.0000027921, +0.0000027876,0.0000027837,0.0000027805,0.0000027784,0.0000027767, +0.0000027746,0.0000027727,0.0000027720,0.0000027725,0.0000027748, +0.0000027774,0.0000027787,0.0000027783,0.0000027762,0.0000027736, +0.0000027728,0.0000027753,0.0000027797,0.0000027849,0.0000027918, +0.0000027999,0.0000028081,0.0000028149,0.0000028199,0.0000028214, +0.0000028197,0.0000028183,0.0000028193,0.0000028209,0.0000028203, +0.0000028159,0.0000028090,0.0000028038,0.0000028040,0.0000028102, +0.0000028185,0.0000028250,0.0000028296,0.0000028330,0.0000028331, +0.0000028284,0.0000028172,0.0000028014,0.0000027889,0.0000027855, +0.0000027875,0.0000027909,0.0000027935,0.0000027968,0.0000027986, +0.0000027977,0.0000027955,0.0000027961,0.0000028002,0.0000028044, +0.0000028055,0.0000028047,0.0000028054,0.0000028089,0.0000028138, +0.0000028164,0.0000028164,0.0000028156,0.0000028136,0.0000028100, +0.0000028064,0.0000028044,0.0000028025,0.0000027990,0.0000027962, +0.0000027983,0.0000028062,0.0000028155,0.0000028212,0.0000028230, +0.0000028221,0.0000028174,0.0000028087,0.0000028007,0.0000027987, +0.0000028004,0.0000028027,0.0000028021,0.0000028005,0.0000028017, +0.0000028082,0.0000028162,0.0000028194,0.0000028182,0.0000028174, +0.0000028188,0.0000028197,0.0000028184,0.0000028118,0.0000028017, +0.0000027931,0.0000027881,0.0000027845,0.0000027806,0.0000027764, +0.0000027718,0.0000027666,0.0000027624,0.0000027602,0.0000027590, +0.0000027575,0.0000027549,0.0000027509,0.0000027484,0.0000027477, +0.0000027482,0.0000027506,0.0000027552,0.0000027620,0.0000027691, +0.0000027753,0.0000027773,0.0000027769,0.0000027760,0.0000027745, +0.0000027737,0.0000027731,0.0000027717,0.0000027692,0.0000027673, +0.0000027659,0.0000027654,0.0000027646,0.0000027627,0.0000027607, +0.0000027592,0.0000027590,0.0000027598,0.0000027617,0.0000027616, +0.0000027571,0.0000027520,0.0000027513,0.0000027521,0.0000027497, +0.0000027459,0.0000027453,0.0000027416,0.0000027180,0.0000026767, +0.0000026435,0.0000026326,0.0000026360,0.0000026465,0.0000026563, +0.0000026685,0.0000026796,0.0000026904,0.0000027003,0.0000027066, +0.0000027096,0.0000027127,0.0000027183,0.0000027230,0.0000027242, +0.0000027197,0.0000027115,0.0000027058,0.0000027043,0.0000027059, +0.0000027075,0.0000027097,0.0000027133,0.0000027196,0.0000027287, +0.0000027367,0.0000027406,0.0000027399,0.0000027364,0.0000027331, +0.0000027303,0.0000027252,0.0000027182,0.0000027147,0.0000027154, +0.0000027184,0.0000027194,0.0000027170,0.0000027078,0.0000026861, +0.0000026496,0.0000026111,0.0000025994,0.0000026119,0.0000026530, +0.0000027075,0.0000027355,0.0000027293,0.0000027159,0.0000027111, +0.0000027397,0.0000028015,0.0000028232,0.0000028285,0.0000028251, +0.0000028217,0.0000028184,0.0000028203,0.0000028283,0.0000028370, +0.0000028431,0.0000028506,0.0000028576,0.0000028633,0.0000028673, +0.0000028704,0.0000028718,0.0000028712,0.0000028671,0.0000028589, +0.0000028482,0.0000028377,0.0000028277,0.0000028180,0.0000028092, +0.0000028016,0.0000027964,0.0000027920,0.0000027858,0.0000027819, +0.0000027847,0.0000027947,0.0000028078,0.0000028177,0.0000028245, +0.0000028294,0.0000028290,0.0000028232,0.0000028201,0.0000028232, +0.0000028225,0.0000028339,0.0000028446,0.0000028244,0.0000028371, +0.0000028547,0.0000028592,0.0000028630,0.0000028835,0.0000029009, +0.0000028914,0.0000028940,0.0000029085,0.0000029075,0.0000029042, +0.0000029032,0.0000029008,0.0000028950,0.0000028886,0.0000028859, +0.0000028858,0.0000028826,0.0000028768,0.0000028682,0.0000028529, +0.0000028382,0.0000028325,0.0000028337,0.0000028372,0.0000028387, +0.0000028347,0.0000028270,0.0000028234,0.0000028245,0.0000028254, +0.0000028231,0.0000028178,0.0000028157,0.0000028146,0.0000028072, +0.0000027918,0.0000027739,0.0000027593,0.0000027503,0.0000027477, +0.0000027518,0.0000027597,0.0000027665,0.0000027695,0.0000027691, +0.0000027661,0.0000027632,0.0000027632,0.0000027677,0.0000027745, +0.0000027819,0.0000027886,0.0000027943,0.0000027983,0.0000028004, +0.0000028000,0.0000027972,0.0000027915,0.0000027839,0.0000027736, +0.0000027604,0.0000027455,0.0000027314,0.0000027210,0.0000027143, +0.0000027091,0.0000027042,0.0000026988,0.0000026923,0.0000026846, +0.0000026766,0.0000026711,0.0000026705,0.0000026733,0.0000026788, +0.0000026849,0.0000026885,0.0000026885,0.0000026861,0.0000026837, +0.0000026829,0.0000026833,0.0000026867,0.0000026937,0.0000027028, +0.0000027124,0.0000027216,0.0000027279,0.0000027292,0.0000027265, +0.0000027203,0.0000027150,0.0000027132,0.0000027148,0.0000027189, +0.0000027225,0.0000027233,0.0000027219,0.0000027207,0.0000027219, +0.0000027232,0.0000027222,0.0000027192,0.0000027180,0.0000027197, +0.0000027264,0.0000027359,0.0000027458,0.0000027557,0.0000027662, +0.0000027755,0.0000027821,0.0000027854,0.0000027853,0.0000027826, +0.0000027800,0.0000027795,0.0000027796,0.0000027792,0.0000027764, +0.0000027721,0.0000027663,0.0000027575,0.0000027451,0.0000027331, +0.0000027269,0.0000027281,0.0000027335,0.0000027390,0.0000027427, +0.0000027453,0.0000027476,0.0000027499,0.0000027543,0.0000027614, +0.0000027703,0.0000027786,0.0000027835,0.0000027838,0.0000027797, +0.0000027720,0.0000027627,0.0000027546,0.0000027514,0.0000027526, +0.0000027559,0.0000027582,0.0000027583,0.0000027575,0.0000027557, +0.0000027521,0.0000027452,0.0000027339,0.0000027183,0.0000026999, +0.0000026830,0.0000026713,0.0000026651,0.0000026634,0.0000026639, +0.0000026661,0.0000026681,0.0000026680,0.0000026655,0.0000026616, +0.0000026581,0.0000026564,0.0000026582,0.0000026611,0.0000026635, +0.0000026643,0.0000026646,0.0000026653,0.0000026664,0.0000026678, +0.0000026689,0.0000026699,0.0000026708,0.0000026708,0.0000026695, +0.0000026668,0.0000026631,0.0000026581,0.0000026521,0.0000026460, +0.0000026416,0.0000026392,0.0000026389,0.0000026384,0.0000026374, +0.0000026372,0.0000026374,0.0000026379,0.0000026386,0.0000026383, +0.0000026359,0.0000026322,0.0000026274,0.0000026245,0.0000026283, +0.0000026392,0.0000026550,0.0000026736,0.0000026929,0.0000027118, +0.0000027298,0.0000027422,0.0000027488,0.0000027545,0.0000027631, +0.0000027710,0.0000027753,0.0000027763,0.0000027777,0.0000027811, +0.0000027840,0.0000027862,0.0000027879,0.0000027895,0.0000027900, +0.0000027878,0.0000027813,0.0000027693,0.0000027517,0.0000027321, +0.0000027136,0.0000026954,0.0000026771,0.0000026603,0.0000026478, +0.0000026397,0.0000026335,0.0000026275,0.0000026213,0.0000026150, +0.0000026094,0.0000026070,0.0000026080,0.0000026096,0.0000026090, +0.0000026086,0.0000026099,0.0000026129,0.0000026177,0.0000026237, +0.0000026256,0.0000026232,0.0000026169,0.0000026078,0.0000026012, +0.0000026011,0.0000026058,0.0000026115,0.0000026155,0.0000026159, +0.0000026135,0.0000026079,0.0000026022,0.0000026007,0.0000026026, +0.0000026021,0.0000025934,0.0000025877,0.0000026045,0.0000026462, +0.0000026726,0.0000026827,0.0000027133,0.0000027555,0.0000027692, +0.0000027578,0.0000027461,0.0000027454,0.0000027500,0.0000027571, +0.0000027663,0.0000027789,0.0000027825,0.0000027619,0.0000027319, +0.0000027249,0.0000027300,0.0000027310,0.0000027181,0.0000026984, +0.0000026928,0.0000027000,0.0000027087,0.0000027118,0.0000027152, +0.0000027168,0.0000027133,0.0000027115,0.0000027180,0.0000027305, +0.0000027390,0.0000027400,0.0000027383,0.0000027368,0.0000027329, +0.0000027282,0.0000027237,0.0000027222,0.0000027264,0.0000027348, +0.0000027413,0.0000027446,0.0000027459,0.0000027484,0.0000027496, +0.0000027513,0.0000027535,0.0000027545,0.0000027531,0.0000027479, +0.0000027401,0.0000027317,0.0000027242,0.0000027180,0.0000027132, +0.0000027101,0.0000027081,0.0000027063,0.0000027035,0.0000027005, +0.0000026983,0.0000026946,0.0000026893,0.0000026850,0.0000026843, +0.0000026893,0.0000026943,0.0000026930,0.0000026837,0.0000026746, +0.0000026702,0.0000026661,0.0000026633,0.0000026645,0.0000026680, +0.0000026693,0.0000026655,0.0000026608,0.0000026588,0.0000026569, +0.0000026529,0.0000026466,0.0000026401,0.0000026355,0.0000026335, +0.0000026323,0.0000026280,0.0000026208,0.0000026166,0.0000026186, +0.0000026244,0.0000026280,0.0000026280,0.0000026278,0.0000026280, +0.0000026209,0.0000026048,0.0000025927,0.0000025904,0.0000025872, +0.0000025718,0.0000025466,0.0000025232,0.0000025076,0.0000024987, +0.0000024928,0.0000024885,0.0000024869,0.0000024876,0.0000024891, +0.0000024900,0.0000024901,0.0000024899,0.0000024895,0.0000024890, +0.0000024904,0.0000024960,0.0000025054,0.0000025100,0.0000025040, +0.0000024941,0.0000024929,0.0000025043,0.0000025245,0.0000025466, +0.0000025663,0.0000025849,0.0000026037,0.0000026193,0.0000026272, +0.0000026324,0.0000026384,0.0000026460,0.0000026576,0.0000026664, +0.0000026741,0.0000026756,0.0000026675,0.0000026522,0.0000026361, +0.0000026023,0.0000025884,0.0000025736,0.0000025465,0.0000025514, +0.0000025780,0.0000026397,0.0000026826,0.0000027124,0.0000027403, +0.0000027717,0.0000027787,0.0000027764,0.0000027770,0.0000027741, +0.0000027680,0.0000027675,0.0000027689,0.0000027651,0.0000027573, +0.0000027560,0.0000027632,0.0000027639,0.0000027551,0.0000027448, +0.0000027529,0.0000027614,0.0000027641,0.0000027674,0.0000027639, +0.0000027531,0.0000027362,0.0000027340,0.0000027401,0.0000027404, +0.0000027378,0.0000027357,0.0000027356,0.0000027358,0.0000027347, +0.0000027334,0.0000027342,0.0000027369,0.0000027375,0.0000027356, +0.0000027330,0.0000027302,0.0000027280,0.0000027262,0.0000027248, +0.0000027234,0.0000027206,0.0000027170,0.0000027132,0.0000027074, +0.0000026985,0.0000026888,0.0000026806,0.0000026744,0.0000026698, +0.0000026641,0.0000026574,0.0000026518,0.0000026494,0.0000026498, +0.0000026514,0.0000026511,0.0000026518,0.0000026537,0.0000026594, +0.0000026656,0.0000026705,0.0000026744,0.0000026763,0.0000026760, +0.0000026733,0.0000026694,0.0000026667,0.0000026666,0.0000026681, +0.0000026695,0.0000026692,0.0000026666,0.0000026604,0.0000026496, +0.0000026350,0.0000026182,0.0000026036,0.0000025966,0.0000025956, +0.0000025960,0.0000025957,0.0000025943,0.0000025921,0.0000025880, +0.0000025815,0.0000025732,0.0000025634,0.0000025526,0.0000025422, +0.0000025349,0.0000025313,0.0000025294,0.0000025277,0.0000025257, +0.0000025242,0.0000025217,0.0000025186,0.0000025154,0.0000025140, +0.0000025134,0.0000025120,0.0000025118,0.0000025129,0.0000025212, +0.0000025360,0.0000025464,0.0000025569,0.0000025674,0.0000025673, +0.0000025591,0.0000025666,0.0000025881,0.0000025919,0.0000025846, +0.0000025767,0.0000025685,0.0000025612,0.0000025616,0.0000025711, +0.0000025807,0.0000025883,0.0000025897,0.0000025789,0.0000025552, +0.0000025318,0.0000025206,0.0000025178,0.0000025153,0.0000025093, +0.0000024976,0.0000024893,0.0000024799,0.0000024755,0.0000024909, +0.0000025083,0.0000025224,0.0000025292,0.0000025314,0.0000025380, +0.0000025516,0.0000025389,0.0000025180,0.0000025199,0.0000025357, +0.0000025483,0.0000025517,0.0000025810,0.0000026178,0.0000026380, +0.0000026399,0.0000026342,0.0000026231,0.0000026087,0.0000025966, +0.0000025952,0.0000025959,0.0000025925,0.0000025884,0.0000025887, +0.0000025911,0.0000025953,0.0000025993,0.0000026014,0.0000026051, +0.0000026116,0.0000026214,0.0000026323,0.0000026366,0.0000026355, +0.0000026345,0.0000026343,0.0000026338,0.0000026312,0.0000026269, +0.0000026253,0.0000026259,0.0000026287,0.0000026339,0.0000026391, +0.0000026442,0.0000026460,0.0000026460,0.0000026534,0.0000026669, +0.0000026775,0.0000026875,0.0000026966,0.0000026999,0.0000027018, +0.0000027071,0.0000027144,0.0000027258,0.0000027401,0.0000027484, +0.0000027520,0.0000027540,0.0000027553,0.0000027561,0.0000027535, +0.0000027494,0.0000027433,0.0000027377,0.0000027315,0.0000027278, +0.0000027236,0.0000027186,0.0000027152,0.0000027133,0.0000027145, +0.0000027171,0.0000027198,0.0000027235,0.0000027271,0.0000027297, +0.0000027309,0.0000027303,0.0000027289,0.0000027278,0.0000027269, +0.0000027263,0.0000027245,0.0000027219,0.0000027195,0.0000027182, +0.0000027194,0.0000027234,0.0000027311,0.0000027361,0.0000027379, +0.0000027372,0.0000027392,0.0000027453,0.0000027524,0.0000027613, +0.0000027724,0.0000027802,0.0000027826,0.0000027811,0.0000027772, +0.0000027731,0.0000027705,0.0000027711,0.0000027771,0.0000027863, +0.0000027909,0.0000027937,0.0000028003,0.0000028101,0.0000028200, +0.0000028264,0.0000028283,0.0000028273,0.0000028236,0.0000028198, +0.0000028165,0.0000028122,0.0000028072,0.0000028033,0.0000028024, +0.0000028047,0.0000028068,0.0000028054,0.0000028027,0.0000028013, +0.0000028012,0.0000028039,0.0000028080,0.0000028116,0.0000028129, +0.0000028113,0.0000028067,0.0000028011,0.0000027950,0.0000027889, +0.0000027839,0.0000027795,0.0000027757,0.0000027725,0.0000027692, +0.0000027659,0.0000027637,0.0000027636,0.0000027659,0.0000027698, +0.0000027732,0.0000027746,0.0000027745,0.0000027734,0.0000027727, +0.0000027743,0.0000027786,0.0000027840,0.0000027902,0.0000027968, +0.0000028033,0.0000028087,0.0000028132,0.0000028161,0.0000028165, +0.0000028161,0.0000028177,0.0000028206,0.0000028215,0.0000028193, +0.0000028140,0.0000028078,0.0000028050,0.0000028078,0.0000028161, +0.0000028255,0.0000028323,0.0000028377,0.0000028393,0.0000028370, +0.0000028315,0.0000028227,0.0000028102,0.0000027982,0.0000027925, +0.0000027919,0.0000027933,0.0000027952,0.0000027969,0.0000027969, +0.0000027950,0.0000027939,0.0000027978,0.0000028048,0.0000028080, +0.0000028063,0.0000028030,0.0000028031,0.0000028070,0.0000028103, +0.0000028109,0.0000028097,0.0000028083,0.0000028063,0.0000028010, +0.0000027967,0.0000027976,0.0000027990,0.0000027966,0.0000027924, +0.0000027945,0.0000028040,0.0000028141,0.0000028192,0.0000028198, +0.0000028174,0.0000028117,0.0000028046,0.0000028005,0.0000028009, +0.0000028026,0.0000028013,0.0000027970,0.0000027955,0.0000027990, +0.0000028066,0.0000028117,0.0000028140,0.0000028177,0.0000028224, +0.0000028243,0.0000028226,0.0000028159,0.0000028066,0.0000027974, +0.0000027913,0.0000027870,0.0000027835,0.0000027797,0.0000027753, +0.0000027699,0.0000027643,0.0000027604,0.0000027591,0.0000027591, +0.0000027587,0.0000027574,0.0000027564,0.0000027555,0.0000027548, +0.0000027548,0.0000027558,0.0000027588,0.0000027641,0.0000027707, +0.0000027751,0.0000027762,0.0000027762,0.0000027747,0.0000027728, +0.0000027718,0.0000027716,0.0000027712,0.0000027707,0.0000027702, +0.0000027695,0.0000027692,0.0000027681,0.0000027664,0.0000027646, +0.0000027643,0.0000027649,0.0000027660,0.0000027664,0.0000027645, +0.0000027588,0.0000027537,0.0000027534,0.0000027540,0.0000027520, +0.0000027494,0.0000027482,0.0000027377,0.0000027060,0.0000026647, +0.0000026385,0.0000026329,0.0000026388,0.0000026486,0.0000026555, +0.0000026645,0.0000026754,0.0000026864,0.0000026958,0.0000027018, +0.0000027038,0.0000027042,0.0000027058,0.0000027079,0.0000027101, +0.0000027097,0.0000027043,0.0000026982,0.0000026964,0.0000026988, +0.0000027019,0.0000027042,0.0000027060,0.0000027102,0.0000027188, +0.0000027281,0.0000027342,0.0000027360,0.0000027343,0.0000027320, +0.0000027303,0.0000027260,0.0000027190,0.0000027136,0.0000027103, +0.0000027112,0.0000027139,0.0000027157,0.0000027130,0.0000027051, +0.0000026826,0.0000026413,0.0000026040,0.0000025988,0.0000026189, +0.0000026663,0.0000027155,0.0000027284,0.0000027158,0.0000027055, +0.0000027175,0.0000027746,0.0000028201,0.0000028297,0.0000028289, +0.0000028255,0.0000028241,0.0000028244,0.0000028287,0.0000028349, +0.0000028416,0.0000028496,0.0000028569,0.0000028626,0.0000028668, +0.0000028708,0.0000028733,0.0000028730,0.0000028695,0.0000028620, +0.0000028511,0.0000028413,0.0000028322,0.0000028221,0.0000028122, +0.0000028020,0.0000027962,0.0000027926,0.0000027902,0.0000027843, +0.0000027808,0.0000027845,0.0000027967,0.0000028114,0.0000028218, +0.0000028278,0.0000028304,0.0000028278,0.0000028208,0.0000028198, +0.0000028206,0.0000028219,0.0000028409,0.0000028300,0.0000028278, +0.0000028479,0.0000028562,0.0000028602,0.0000028739,0.0000028944, +0.0000028892,0.0000028891,0.0000029042,0.0000029034,0.0000028993, +0.0000028989,0.0000028981,0.0000028942,0.0000028896,0.0000028878, +0.0000028866,0.0000028828,0.0000028768,0.0000028688,0.0000028559, +0.0000028422,0.0000028355,0.0000028361,0.0000028377,0.0000028359, +0.0000028290,0.0000028233,0.0000028232,0.0000028258,0.0000028249, +0.0000028200,0.0000028162,0.0000028147,0.0000028083,0.0000027929, +0.0000027731,0.0000027559,0.0000027451,0.0000027410,0.0000027413, +0.0000027475,0.0000027575,0.0000027648,0.0000027670,0.0000027658, +0.0000027643,0.0000027639,0.0000027660,0.0000027704,0.0000027751, +0.0000027815,0.0000027892,0.0000027945,0.0000027967,0.0000027960, +0.0000027932,0.0000027893,0.0000027856,0.0000027803,0.0000027708, +0.0000027585,0.0000027450,0.0000027308,0.0000027156,0.0000027010, +0.0000026876,0.0000026751,0.0000026641,0.0000026552,0.0000026475, +0.0000026391,0.0000026309,0.0000026279,0.0000026294,0.0000026333, +0.0000026380,0.0000026435,0.0000026490,0.0000026529,0.0000026553, +0.0000026563,0.0000026558,0.0000026537,0.0000026531,0.0000026559, +0.0000026623,0.0000026716,0.0000026829,0.0000026944,0.0000027030, +0.0000027066,0.0000027068,0.0000027050,0.0000027020,0.0000026999, +0.0000027006,0.0000027050,0.0000027111,0.0000027150,0.0000027162, +0.0000027173,0.0000027190,0.0000027191,0.0000027176,0.0000027155, +0.0000027154,0.0000027182,0.0000027232,0.0000027291,0.0000027361, +0.0000027445,0.0000027535,0.0000027624,0.0000027702,0.0000027757, +0.0000027779,0.0000027781,0.0000027781,0.0000027793,0.0000027810, +0.0000027821,0.0000027820,0.0000027803,0.0000027760,0.0000027678, +0.0000027552,0.0000027408,0.0000027310,0.0000027293,0.0000027330, +0.0000027375,0.0000027402,0.0000027419,0.0000027441,0.0000027476, +0.0000027523,0.0000027592,0.0000027682,0.0000027773,0.0000027829, +0.0000027828,0.0000027779,0.0000027694,0.0000027599,0.0000027540, +0.0000027532,0.0000027545,0.0000027574,0.0000027592,0.0000027609, +0.0000027619,0.0000027617,0.0000027601,0.0000027549,0.0000027446, +0.0000027291,0.0000027098,0.0000026904,0.0000026752,0.0000026667, +0.0000026653,0.0000026676,0.0000026717,0.0000026747,0.0000026752, +0.0000026731,0.0000026683,0.0000026637,0.0000026619,0.0000026629, +0.0000026650,0.0000026668,0.0000026686,0.0000026709,0.0000026732, +0.0000026749,0.0000026761,0.0000026775,0.0000026794,0.0000026809, +0.0000026810,0.0000026794,0.0000026765,0.0000026721,0.0000026663, +0.0000026604,0.0000026553,0.0000026517,0.0000026479,0.0000026436, +0.0000026386,0.0000026343,0.0000026324,0.0000026309,0.0000026312, +0.0000026313,0.0000026309,0.0000026287,0.0000026239,0.0000026177, +0.0000026126,0.0000026111,0.0000026153,0.0000026244,0.0000026374, +0.0000026512,0.0000026661,0.0000026790,0.0000026883,0.0000026966, +0.0000027055,0.0000027136,0.0000027182,0.0000027205,0.0000027230, +0.0000027251,0.0000027260,0.0000027264,0.0000027266,0.0000027266, +0.0000027257,0.0000027223,0.0000027150,0.0000027032,0.0000026867, +0.0000026679,0.0000026503,0.0000026340,0.0000026188,0.0000026061, +0.0000025987,0.0000025973,0.0000025969,0.0000025952,0.0000025916, +0.0000025868,0.0000025817,0.0000025789,0.0000025804,0.0000025838, +0.0000025845,0.0000025831,0.0000025837,0.0000025884,0.0000025964, +0.0000026054,0.0000026123,0.0000026141,0.0000026125,0.0000026054, +0.0000025952,0.0000025879,0.0000025859,0.0000025867,0.0000025885, +0.0000025922,0.0000025963,0.0000025979,0.0000025962,0.0000025939, +0.0000025952,0.0000025974,0.0000025926,0.0000025875,0.0000025986, +0.0000026383,0.0000026687,0.0000026814,0.0000027141,0.0000027553, +0.0000027667,0.0000027562,0.0000027481,0.0000027485,0.0000027527, +0.0000027588,0.0000027664,0.0000027773,0.0000027788,0.0000027552, +0.0000027301,0.0000027276,0.0000027348,0.0000027344,0.0000027206, +0.0000026982,0.0000026854,0.0000026888,0.0000027009,0.0000027077, +0.0000027089,0.0000027116,0.0000027132,0.0000027094,0.0000027049, +0.0000027093,0.0000027232,0.0000027341,0.0000027379,0.0000027391, +0.0000027375,0.0000027330,0.0000027266,0.0000027208,0.0000027185, +0.0000027218,0.0000027292,0.0000027375,0.0000027423,0.0000027464, +0.0000027483,0.0000027504,0.0000027526,0.0000027524,0.0000027496, +0.0000027420,0.0000027321,0.0000027223,0.0000027156,0.0000027112, +0.0000027082,0.0000027063,0.0000027048,0.0000027030,0.0000027006, +0.0000026984,0.0000026980,0.0000026964,0.0000026919,0.0000026878, +0.0000026875,0.0000026919,0.0000026950,0.0000026899,0.0000026787, +0.0000026709,0.0000026682,0.0000026650,0.0000026626,0.0000026638, +0.0000026673,0.0000026687,0.0000026660,0.0000026612,0.0000026585, +0.0000026561,0.0000026512,0.0000026440,0.0000026362,0.0000026300, +0.0000026271,0.0000026271,0.0000026273,0.0000026241,0.0000026177, +0.0000026138,0.0000026156,0.0000026210,0.0000026245,0.0000026246, +0.0000026243,0.0000026235,0.0000026136,0.0000025981,0.0000025904, +0.0000025889,0.0000025783,0.0000025538,0.0000025273,0.0000025082, +0.0000024959,0.0000024874,0.0000024809,0.0000024763,0.0000024750, +0.0000024756,0.0000024772,0.0000024787,0.0000024805,0.0000024822, +0.0000024816,0.0000024786,0.0000024761,0.0000024769,0.0000024835, +0.0000024940,0.0000024998,0.0000024956,0.0000024867,0.0000024834, +0.0000024877,0.0000024990,0.0000025141,0.0000025333,0.0000025597, +0.0000025925,0.0000026189,0.0000026302,0.0000026361,0.0000026428, +0.0000026534,0.0000026641,0.0000026732,0.0000026752,0.0000026671, +0.0000026512,0.0000026357,0.0000026035,0.0000025826,0.0000025801, +0.0000025551,0.0000025428,0.0000025532,0.0000025940,0.0000026509, +0.0000026938,0.0000027234,0.0000027572,0.0000027745,0.0000027758, +0.0000027776,0.0000027736,0.0000027708,0.0000027700,0.0000027697, +0.0000027619,0.0000027543,0.0000027550,0.0000027606,0.0000027583, +0.0000027501,0.0000027466,0.0000027565,0.0000027589,0.0000027620, +0.0000027643,0.0000027613,0.0000027498,0.0000027340,0.0000027339, +0.0000027403,0.0000027418,0.0000027397,0.0000027369,0.0000027358, +0.0000027363,0.0000027361,0.0000027348,0.0000027349,0.0000027354, +0.0000027361,0.0000027348,0.0000027332,0.0000027307,0.0000027274, +0.0000027242,0.0000027215,0.0000027191,0.0000027150,0.0000027102, +0.0000027074,0.0000027039,0.0000026972,0.0000026884,0.0000026802, +0.0000026738,0.0000026701,0.0000026659,0.0000026593,0.0000026527, +0.0000026488,0.0000026478,0.0000026483,0.0000026497,0.0000026517, +0.0000026533,0.0000026576,0.0000026633,0.0000026691,0.0000026740, +0.0000026764,0.0000026767,0.0000026747,0.0000026706,0.0000026672, +0.0000026666,0.0000026680,0.0000026684,0.0000026658,0.0000026600, +0.0000026487,0.0000026310,0.0000026130,0.0000025995,0.0000025934, +0.0000025942,0.0000025963,0.0000025970,0.0000025942,0.0000025882, +0.0000025804,0.0000025716,0.0000025623,0.0000025536,0.0000025448, +0.0000025365,0.0000025306,0.0000025269,0.0000025251,0.0000025245, +0.0000025243,0.0000025244,0.0000025237,0.0000025224,0.0000025202, +0.0000025179,0.0000025160,0.0000025149,0.0000025143,0.0000025152, +0.0000025162,0.0000025209,0.0000025320,0.0000025411,0.0000025490, +0.0000025601,0.0000025665,0.0000025610,0.0000025581,0.0000025772, +0.0000025894,0.0000025837,0.0000025772,0.0000025714,0.0000025645, +0.0000025624,0.0000025680,0.0000025740,0.0000025806,0.0000025870, +0.0000025917,0.0000025888,0.0000025705,0.0000025397,0.0000025184, +0.0000025127,0.0000025134,0.0000025115,0.0000025015,0.0000024908, +0.0000024802,0.0000024736,0.0000024866,0.0000025069,0.0000025223, +0.0000025298,0.0000025318,0.0000025340,0.0000025480,0.0000025429, +0.0000025196,0.0000025175,0.0000025302,0.0000025437,0.0000025457, +0.0000025651,0.0000026057,0.0000026314,0.0000026404,0.0000026370, +0.0000026274,0.0000026144,0.0000026007,0.0000025963,0.0000025981, +0.0000025972,0.0000025932,0.0000025908,0.0000025900,0.0000025918, +0.0000025953,0.0000025982,0.0000026019,0.0000026072,0.0000026146, +0.0000026244,0.0000026302,0.0000026314,0.0000026315,0.0000026315, +0.0000026301,0.0000026267,0.0000026242,0.0000026242,0.0000026248, +0.0000026271,0.0000026304,0.0000026338,0.0000026380,0.0000026395, +0.0000026424,0.0000026540,0.0000026698,0.0000026809,0.0000026900, +0.0000026951,0.0000026950,0.0000026939,0.0000026941,0.0000026986, +0.0000027107,0.0000027248,0.0000027337,0.0000027386,0.0000027405, +0.0000027411,0.0000027408,0.0000027374,0.0000027317,0.0000027242, +0.0000027164,0.0000027083,0.0000027037,0.0000027008,0.0000026994, +0.0000027002,0.0000027017,0.0000027060,0.0000027109,0.0000027150, +0.0000027192,0.0000027227,0.0000027249,0.0000027258,0.0000027263, +0.0000027270,0.0000027271,0.0000027268,0.0000027249,0.0000027214, +0.0000027187,0.0000027175,0.0000027168,0.0000027163,0.0000027176, +0.0000027234,0.0000027277,0.0000027301,0.0000027300,0.0000027313, +0.0000027379,0.0000027457,0.0000027546,0.0000027665,0.0000027770, +0.0000027818,0.0000027806,0.0000027758,0.0000027720,0.0000027701, +0.0000027701,0.0000027741,0.0000027832,0.0000027899,0.0000027942, +0.0000028009,0.0000028095,0.0000028175,0.0000028235,0.0000028261, +0.0000028248,0.0000028197,0.0000028138,0.0000028092,0.0000028054, +0.0000028028,0.0000028016,0.0000028030,0.0000028044,0.0000028050, +0.0000028031,0.0000028017,0.0000028028,0.0000028059,0.0000028098, +0.0000028136,0.0000028167,0.0000028173,0.0000028143,0.0000028086, +0.0000028018,0.0000027946,0.0000027871,0.0000027800,0.0000027737, +0.0000027681,0.0000027632,0.0000027588,0.0000027549,0.0000027527, +0.0000027524,0.0000027544,0.0000027583,0.0000027626,0.0000027657, +0.0000027675,0.0000027680,0.0000027682,0.0000027692,0.0000027720, +0.0000027768,0.0000027829,0.0000027896,0.0000027956,0.0000028000, +0.0000028032,0.0000028052,0.0000028060,0.0000028065,0.0000028096, +0.0000028150,0.0000028188,0.0000028190,0.0000028161,0.0000028113, +0.0000028068,0.0000028058,0.0000028109,0.0000028204,0.0000028294, +0.0000028366,0.0000028415,0.0000028422,0.0000028398,0.0000028363, +0.0000028306,0.0000028212,0.0000028106,0.0000028033,0.0000028000, +0.0000027986,0.0000027974,0.0000027964,0.0000027951,0.0000027943, +0.0000027962,0.0000028039,0.0000028111,0.0000028117,0.0000028071, +0.0000028030,0.0000028036,0.0000028052,0.0000028049,0.0000028041, +0.0000028039,0.0000028031,0.0000028002,0.0000027936,0.0000027881, +0.0000027893,0.0000027936,0.0000027937,0.0000027921,0.0000027952, +0.0000028053,0.0000028141,0.0000028170,0.0000028160,0.0000028124, +0.0000028073,0.0000028031,0.0000028020,0.0000028027,0.0000028014, +0.0000027953,0.0000027895,0.0000027902,0.0000027963,0.0000028018, +0.0000028060,0.0000028132,0.0000028217,0.0000028259,0.0000028243, +0.0000028183,0.0000028106,0.0000028034,0.0000027978,0.0000027933, +0.0000027887,0.0000027846,0.0000027805,0.0000027755,0.0000027697, +0.0000027647,0.0000027625,0.0000027626,0.0000027632,0.0000027632, +0.0000027629,0.0000027618,0.0000027595,0.0000027570,0.0000027563, +0.0000027566,0.0000027591,0.0000027640,0.0000027695,0.0000027720, +0.0000027726,0.0000027724,0.0000027701,0.0000027677,0.0000027672, +0.0000027682,0.0000027698,0.0000027716,0.0000027726,0.0000027732, +0.0000027726,0.0000027714,0.0000027696,0.0000027681,0.0000027681, +0.0000027691,0.0000027703,0.0000027697,0.0000027669,0.0000027613, +0.0000027577,0.0000027573,0.0000027569,0.0000027549,0.0000027529, +0.0000027478,0.0000027283,0.0000026898,0.0000026535,0.0000026366, +0.0000026349,0.0000026413,0.0000026497,0.0000026545,0.0000026613, +0.0000026720,0.0000026835,0.0000026926,0.0000026979,0.0000026993, +0.0000026978,0.0000026953,0.0000026935,0.0000026936,0.0000026947, +0.0000026923,0.0000026881,0.0000026866,0.0000026891,0.0000026935, +0.0000026971,0.0000026985,0.0000027005,0.0000027071,0.0000027160, +0.0000027237,0.0000027284,0.0000027296,0.0000027291,0.0000027282, +0.0000027247,0.0000027196,0.0000027149,0.0000027098,0.0000027076, +0.0000027077,0.0000027103,0.0000027118,0.0000027105,0.0000027008, +0.0000026744,0.0000026294,0.0000026005,0.0000026020,0.0000026298, +0.0000026793,0.0000027187,0.0000027167,0.0000027043,0.0000027044, +0.0000027414,0.0000028066,0.0000028299,0.0000028322,0.0000028280, +0.0000028274,0.0000028286,0.0000028311,0.0000028342,0.0000028384, +0.0000028450,0.0000028512,0.0000028560,0.0000028598,0.0000028639, +0.0000028668,0.0000028679,0.0000028668,0.0000028617,0.0000028534, +0.0000028454,0.0000028368,0.0000028275,0.0000028176,0.0000028061, +0.0000027983,0.0000027918,0.0000027912,0.0000027891,0.0000027831, +0.0000027804,0.0000027863,0.0000028002,0.0000028148,0.0000028243, +0.0000028296,0.0000028306,0.0000028248,0.0000028182,0.0000028184, +0.0000028165,0.0000028292,0.0000028360,0.0000028229,0.0000028387, +0.0000028517,0.0000028572,0.0000028659,0.0000028854,0.0000028875, +0.0000028844,0.0000028990,0.0000029010,0.0000028955,0.0000028946, +0.0000028954,0.0000028937,0.0000028905,0.0000028886,0.0000028868, +0.0000028823,0.0000028761,0.0000028690,0.0000028585,0.0000028467, +0.0000028400,0.0000028392,0.0000028374,0.0000028313,0.0000028246, +0.0000028229,0.0000028247,0.0000028258,0.0000028220,0.0000028166, +0.0000028147,0.0000028096,0.0000027949,0.0000027735,0.0000027532, +0.0000027398,0.0000027335,0.0000027325,0.0000027357,0.0000027436, +0.0000027546,0.0000027620,0.0000027633,0.0000027620,0.0000027619, +0.0000027650,0.0000027696,0.0000027735,0.0000027773,0.0000027827, +0.0000027894,0.0000027938,0.0000027950,0.0000027924,0.0000027875, +0.0000027837,0.0000027807,0.0000027752,0.0000027666,0.0000027563, +0.0000027436,0.0000027275,0.0000027078,0.0000026879,0.0000026708, +0.0000026559,0.0000026423,0.0000026310,0.0000026229,0.0000026162, +0.0000026089,0.0000026038,0.0000026029,0.0000026044,0.0000026066, +0.0000026089,0.0000026123,0.0000026172,0.0000026237,0.0000026313, +0.0000026378,0.0000026418,0.0000026432,0.0000026446,0.0000026473, +0.0000026514,0.0000026560,0.0000026611,0.0000026670,0.0000026725, +0.0000026765,0.0000026798,0.0000026827,0.0000026847,0.0000026856, +0.0000026863,0.0000026881,0.0000026927,0.0000026992,0.0000027063, +0.0000027125,0.0000027160,0.0000027166,0.0000027155,0.0000027131, +0.0000027120,0.0000027146,0.0000027200,0.0000027250,0.0000027287, +0.0000027313,0.0000027347,0.0000027406,0.0000027488,0.0000027581, +0.0000027666,0.0000027714,0.0000027725,0.0000027728,0.0000027747, +0.0000027788,0.0000027838,0.0000027877,0.0000027884,0.0000027846, +0.0000027753,0.0000027621,0.0000027482,0.0000027383,0.0000027352, +0.0000027361,0.0000027370,0.0000027370,0.0000027381,0.0000027416, +0.0000027464,0.0000027521,0.0000027587,0.0000027664,0.0000027743, +0.0000027798,0.0000027803,0.0000027768,0.0000027700,0.0000027632, +0.0000027579,0.0000027553,0.0000027556,0.0000027567,0.0000027584, +0.0000027612,0.0000027637,0.0000027668,0.0000027672,0.0000027636, +0.0000027537,0.0000027374,0.0000027175,0.0000026982,0.0000026828, +0.0000026738,0.0000026709,0.0000026732,0.0000026765,0.0000026800, +0.0000026811,0.0000026791,0.0000026751,0.0000026713,0.0000026692, +0.0000026693,0.0000026708,0.0000026735,0.0000026771,0.0000026803, +0.0000026821,0.0000026825,0.0000026827,0.0000026834,0.0000026843, +0.0000026844,0.0000026829,0.0000026802,0.0000026767,0.0000026729, +0.0000026700,0.0000026683,0.0000026664,0.0000026633,0.0000026582, +0.0000026519,0.0000026460,0.0000026411,0.0000026372,0.0000026332, +0.0000026298,0.0000026286,0.0000026257,0.0000026226,0.0000026175, +0.0000026120,0.0000026080,0.0000026070,0.0000026097,0.0000026156, +0.0000026228,0.0000026310,0.0000026387,0.0000026441,0.0000026485, +0.0000026532,0.0000026573,0.0000026603,0.0000026624,0.0000026633, +0.0000026626,0.0000026605,0.0000026586,0.0000026576,0.0000026574, +0.0000026576,0.0000026564,0.0000026522,0.0000026447,0.0000026335, +0.0000026199,0.0000026069,0.0000025944,0.0000025825,0.0000025714, +0.0000025657,0.0000025657,0.0000025677,0.0000025678,0.0000025647, +0.0000025589,0.0000025519,0.0000025468,0.0000025469,0.0000025509, +0.0000025542,0.0000025551,0.0000025567,0.0000025615,0.0000025701, +0.0000025802,0.0000025901,0.0000025965,0.0000025992,0.0000025978, +0.0000025916,0.0000025826,0.0000025748,0.0000025693,0.0000025649, +0.0000025646,0.0000025705,0.0000025790,0.0000025842,0.0000025856, +0.0000025873,0.0000025904,0.0000025899,0.0000025866,0.0000025959, +0.0000026326,0.0000026653,0.0000026819,0.0000027152,0.0000027549, +0.0000027640,0.0000027551,0.0000027509,0.0000027521,0.0000027558, +0.0000027604,0.0000027668,0.0000027752,0.0000027714,0.0000027473, +0.0000027285,0.0000027296,0.0000027377,0.0000027368,0.0000027228, +0.0000027011,0.0000026840,0.0000026806,0.0000026891,0.0000027009, +0.0000027051,0.0000027049,0.0000027072,0.0000027091,0.0000027049, +0.0000026987,0.0000027028,0.0000027171,0.0000027313,0.0000027394, +0.0000027413,0.0000027392,0.0000027325,0.0000027249,0.0000027198, +0.0000027187,0.0000027200,0.0000027255,0.0000027319,0.0000027381, +0.0000027421,0.0000027451,0.0000027469,0.0000027454,0.0000027409, +0.0000027327,0.0000027235,0.0000027160,0.0000027126,0.0000027101, +0.0000027085,0.0000027070,0.0000027053,0.0000027036,0.0000027019, +0.0000027004,0.0000027008,0.0000027007,0.0000026966,0.0000026933, +0.0000026931,0.0000026953,0.0000026943,0.0000026851,0.0000026732, +0.0000026679,0.0000026668,0.0000026641,0.0000026621,0.0000026634, +0.0000026667,0.0000026686,0.0000026664,0.0000026618,0.0000026587, +0.0000026557,0.0000026499,0.0000026420,0.0000026335,0.0000026261, +0.0000026220,0.0000026218,0.0000026233,0.0000026232,0.0000026190, +0.0000026134,0.0000026115,0.0000026140,0.0000026191,0.0000026216, +0.0000026216,0.0000026216,0.0000026191,0.0000026067,0.0000025933, +0.0000025895,0.0000025848,0.0000025649,0.0000025376,0.0000025171, +0.0000025033,0.0000024924,0.0000024827,0.0000024746,0.0000024688, +0.0000024658,0.0000024654,0.0000024659,0.0000024669,0.0000024688, +0.0000024701,0.0000024690,0.0000024648,0.0000024608,0.0000024602, +0.0000024640,0.0000024732,0.0000024842,0.0000024907,0.0000024889, +0.0000024826,0.0000024768,0.0000024753,0.0000024785,0.0000024894, +0.0000025123,0.0000025495,0.0000025944,0.0000026234,0.0000026338, +0.0000026400,0.0000026489,0.0000026607,0.0000026708,0.0000026741, +0.0000026658,0.0000026498,0.0000026340,0.0000026071,0.0000025800, +0.0000025802,0.0000025688,0.0000025417,0.0000025400,0.0000025554, +0.0000026106,0.0000026661,0.0000027072,0.0000027398,0.0000027680, +0.0000027757,0.0000027776,0.0000027738,0.0000027730,0.0000027718, +0.0000027703,0.0000027592,0.0000027528,0.0000027540,0.0000027576, +0.0000027550,0.0000027491,0.0000027507,0.0000027579,0.0000027565, +0.0000027596,0.0000027607,0.0000027582,0.0000027465,0.0000027324, +0.0000027338,0.0000027409,0.0000027432,0.0000027417,0.0000027387, +0.0000027370,0.0000027374,0.0000027368,0.0000027349,0.0000027342, +0.0000027339,0.0000027361,0.0000027360,0.0000027347,0.0000027322, +0.0000027287,0.0000027240,0.0000027193,0.0000027154,0.0000027109, +0.0000027048,0.0000027004,0.0000026969,0.0000026920,0.0000026856, +0.0000026791,0.0000026739,0.0000026716,0.0000026691,0.0000026634, +0.0000026555,0.0000026489,0.0000026465,0.0000026461,0.0000026468, +0.0000026496,0.0000026522,0.0000026555,0.0000026594,0.0000026642, +0.0000026695,0.0000026732,0.0000026752,0.0000026742,0.0000026708, +0.0000026667,0.0000026654,0.0000026658,0.0000026646,0.0000026595, +0.0000026493,0.0000026320,0.0000026109,0.0000025964,0.0000025912, +0.0000025922,0.0000025944,0.0000025954,0.0000025922,0.0000025842, +0.0000025738,0.0000025631,0.0000025534,0.0000025455,0.0000025393, +0.0000025339,0.0000025297,0.0000025279,0.0000025270,0.0000025254, +0.0000025248,0.0000025248,0.0000025258,0.0000025264,0.0000025264, +0.0000025265,0.0000025258,0.0000025247,0.0000025230,0.0000025221, +0.0000025238,0.0000025258,0.0000025284,0.0000025336,0.0000025390, +0.0000025434,0.0000025513,0.0000025621,0.0000025641,0.0000025553, +0.0000025627,0.0000025833,0.0000025827,0.0000025761,0.0000025728, +0.0000025703,0.0000025702,0.0000025741,0.0000025772,0.0000025786, +0.0000025792,0.0000025827,0.0000025875,0.0000025878,0.0000025792, +0.0000025521,0.0000025225,0.0000025109,0.0000025114,0.0000025120, +0.0000025051,0.0000024936,0.0000024817,0.0000024728,0.0000024818, +0.0000025047,0.0000025215,0.0000025295,0.0000025324,0.0000025311, +0.0000025435,0.0000025459,0.0000025232,0.0000025156,0.0000025242, +0.0000025372,0.0000025423,0.0000025510,0.0000025883,0.0000026228, +0.0000026411,0.0000026399,0.0000026315,0.0000026197,0.0000026062, +0.0000025978,0.0000025996,0.0000026007,0.0000025970,0.0000025919, +0.0000025872,0.0000025864,0.0000025899,0.0000025945,0.0000025981, +0.0000026020,0.0000026071,0.0000026164,0.0000026247,0.0000026274, +0.0000026274,0.0000026272,0.0000026260,0.0000026235,0.0000026229, +0.0000026226,0.0000026223,0.0000026235,0.0000026253,0.0000026279, +0.0000026324,0.0000026363,0.0000026428,0.0000026572,0.0000026736, +0.0000026838,0.0000026903,0.0000026918,0.0000026894,0.0000026853, +0.0000026816,0.0000026836,0.0000026945,0.0000027062,0.0000027145, +0.0000027194,0.0000027207,0.0000027209,0.0000027194,0.0000027148, +0.0000027078,0.0000027008,0.0000026939,0.0000026878,0.0000026861, +0.0000026875,0.0000026914,0.0000026962,0.0000027002,0.0000027048, +0.0000027097,0.0000027133,0.0000027163,0.0000027193,0.0000027213, +0.0000027216,0.0000027219,0.0000027228,0.0000027233,0.0000027221, +0.0000027185,0.0000027136,0.0000027105,0.0000027111,0.0000027134, +0.0000027143,0.0000027148,0.0000027182,0.0000027201,0.0000027203, +0.0000027193,0.0000027200,0.0000027273,0.0000027366,0.0000027460, +0.0000027578,0.0000027701,0.0000027776,0.0000027781,0.0000027742, +0.0000027712,0.0000027697,0.0000027689,0.0000027709,0.0000027780, +0.0000027863,0.0000027930,0.0000028006,0.0000028090,0.0000028158, +0.0000028206,0.0000028228,0.0000028214,0.0000028152,0.0000028067, +0.0000028007,0.0000027985,0.0000027988,0.0000028013,0.0000028028, +0.0000028012,0.0000028004,0.0000028002,0.0000028027,0.0000028074, +0.0000028122,0.0000028147,0.0000028161,0.0000028170,0.0000028167, +0.0000028130,0.0000028063,0.0000027978,0.0000027885,0.0000027791, +0.0000027702,0.0000027622,0.0000027559,0.0000027511,0.0000027472, +0.0000027438,0.0000027416,0.0000027412,0.0000027425,0.0000027454, +0.0000027490,0.0000027526,0.0000027550,0.0000027556,0.0000027556, +0.0000027558,0.0000027567,0.0000027591,0.0000027641,0.0000027715, +0.0000027795,0.0000027863,0.0000027915,0.0000027946,0.0000027952, +0.0000027947,0.0000027969,0.0000028037,0.0000028108,0.0000028146, +0.0000028147,0.0000028121,0.0000028082,0.0000028053,0.0000028063, +0.0000028129,0.0000028220,0.0000028296,0.0000028364,0.0000028413, +0.0000028430,0.0000028428,0.0000028414,0.0000028386,0.0000028334, +0.0000028260,0.0000028181,0.0000028111,0.0000028048,0.0000027994, +0.0000027951,0.0000027930,0.0000027942,0.0000028014,0.0000028106, +0.0000028140,0.0000028120,0.0000028067,0.0000028045,0.0000028049, +0.0000028035,0.0000028001,0.0000027986,0.0000027985,0.0000027977, +0.0000027937,0.0000027881,0.0000027841,0.0000027841,0.0000027883, +0.0000027930,0.0000027952,0.0000027995,0.0000028080,0.0000028149, +0.0000028161,0.0000028131,0.0000028086,0.0000028050,0.0000028028, +0.0000028021,0.0000028012,0.0000027957,0.0000027870,0.0000027838, +0.0000027867,0.0000027916,0.0000027958,0.0000028045,0.0000028164, +0.0000028244,0.0000028246,0.0000028193,0.0000028130,0.0000028090, +0.0000028051,0.0000028002,0.0000027946,0.0000027893,0.0000027856, +0.0000027812,0.0000027756,0.0000027697,0.0000027654,0.0000027636, +0.0000027635,0.0000027632,0.0000027628,0.0000027612,0.0000027589, +0.0000027564,0.0000027545,0.0000027542,0.0000027550,0.0000027575, +0.0000027626,0.0000027662,0.0000027673,0.0000027674,0.0000027660, +0.0000027636,0.0000027621,0.0000027633,0.0000027661,0.0000027693, +0.0000027726,0.0000027754,0.0000027763,0.0000027760,0.0000027747, +0.0000027726,0.0000027709,0.0000027712,0.0000027729,0.0000027746, +0.0000027737,0.0000027707,0.0000027662,0.0000027641,0.0000027626, +0.0000027604,0.0000027578,0.0000027541,0.0000027411,0.0000027110, +0.0000026723,0.0000026465,0.0000026371,0.0000026368,0.0000026429, +0.0000026496,0.0000026530,0.0000026590,0.0000026702,0.0000026819, +0.0000026910,0.0000026960,0.0000026974,0.0000026948,0.0000026905, +0.0000026847,0.0000026815,0.0000026800,0.0000026778,0.0000026751, +0.0000026746,0.0000026776,0.0000026829,0.0000026886,0.0000026920, +0.0000026939,0.0000026985,0.0000027047,0.0000027112,0.0000027171, +0.0000027221,0.0000027251,0.0000027252,0.0000027218,0.0000027183, +0.0000027152,0.0000027111,0.0000027074,0.0000027049,0.0000027047, +0.0000027073,0.0000027100,0.0000027060,0.0000026934,0.0000026630, +0.0000026207,0.0000026003,0.0000026092,0.0000026421,0.0000026897, +0.0000027129,0.0000027049,0.0000026984,0.0000027159,0.0000027779, +0.0000028258,0.0000028335,0.0000028307,0.0000028283,0.0000028313, +0.0000028344,0.0000028357,0.0000028373,0.0000028403,0.0000028435, +0.0000028461,0.0000028478,0.0000028499,0.0000028522,0.0000028539, +0.0000028556,0.0000028551,0.0000028517,0.0000028469,0.0000028401, +0.0000028325,0.0000028229,0.0000028116,0.0000028032,0.0000027942, +0.0000027908,0.0000027910,0.0000027887,0.0000027827,0.0000027817, +0.0000027892,0.0000028030,0.0000028164,0.0000028257,0.0000028306, +0.0000028292,0.0000028205,0.0000028158,0.0000028152,0.0000028182, +0.0000028350,0.0000028251,0.0000028281,0.0000028448,0.0000028531, +0.0000028604,0.0000028744,0.0000028845,0.0000028810,0.0000028911, +0.0000028997,0.0000028940,0.0000028903,0.0000028910,0.0000028914, +0.0000028902,0.0000028880,0.0000028854,0.0000028804,0.0000028739, +0.0000028673,0.0000028590,0.0000028499,0.0000028437,0.0000028401, +0.0000028343,0.0000028268,0.0000028233,0.0000028239,0.0000028249, +0.0000028233,0.0000028178,0.0000028140,0.0000028099,0.0000027972, +0.0000027759,0.0000027537,0.0000027365,0.0000027264,0.0000027227, +0.0000027237,0.0000027297,0.0000027408,0.0000027528,0.0000027597, +0.0000027603,0.0000027593,0.0000027604,0.0000027658,0.0000027719, +0.0000027756,0.0000027795,0.0000027854,0.0000027902,0.0000027926, +0.0000027921,0.0000027887,0.0000027838,0.0000027794,0.0000027735, +0.0000027659,0.0000027579,0.0000027484,0.0000027345,0.0000027168, +0.0000026975,0.0000026794,0.0000026636,0.0000026495,0.0000026364, +0.0000026248,0.0000026157,0.0000026094,0.0000026044,0.0000026008, +0.0000025994,0.0000026001,0.0000026012,0.0000026015,0.0000026017, +0.0000026023,0.0000026046,0.0000026105,0.0000026202,0.0000026311, +0.0000026394,0.0000026447,0.0000026487,0.0000026538,0.0000026591, +0.0000026633,0.0000026668,0.0000026704,0.0000026738,0.0000026769, +0.0000026793,0.0000026801,0.0000026793,0.0000026774,0.0000026760, +0.0000026758,0.0000026769,0.0000026805,0.0000026890,0.0000026997, +0.0000027083,0.0000027135,0.0000027149,0.0000027130,0.0000027095, +0.0000027081,0.0000027110,0.0000027189,0.0000027267,0.0000027308, +0.0000027308,0.0000027299,0.0000027313,0.0000027385,0.0000027502, +0.0000027609,0.0000027661,0.0000027663,0.0000027657,0.0000027677, +0.0000027745,0.0000027839,0.0000027918,0.0000027942,0.0000027916, +0.0000027818,0.0000027685,0.0000027565,0.0000027491,0.0000027457, +0.0000027433,0.0000027401,0.0000027380,0.0000027381,0.0000027402, +0.0000027449,0.0000027520,0.0000027595,0.0000027654,0.0000027699, +0.0000027742,0.0000027767,0.0000027769,0.0000027744,0.0000027693, +0.0000027641,0.0000027601,0.0000027572,0.0000027559,0.0000027570, +0.0000027602,0.0000027650,0.0000027686,0.0000027707,0.0000027677, +0.0000027576,0.0000027417,0.0000027240,0.0000027084,0.0000026965, +0.0000026877,0.0000026823,0.0000026806,0.0000026821,0.0000026841, +0.0000026850,0.0000026838,0.0000026808,0.0000026771,0.0000026745, +0.0000026740,0.0000026762,0.0000026808,0.0000026856,0.0000026886, +0.0000026891,0.0000026887,0.0000026883,0.0000026876,0.0000026864, +0.0000026840,0.0000026807,0.0000026772,0.0000026750,0.0000026746, +0.0000026745,0.0000026736,0.0000026716,0.0000026691,0.0000026665, +0.0000026647,0.0000026630,0.0000026593,0.0000026536,0.0000026465, +0.0000026391,0.0000026324,0.0000026258,0.0000026188,0.0000026119, +0.0000026079,0.0000026051,0.0000026053,0.0000026085,0.0000026133, +0.0000026188,0.0000026239,0.0000026272,0.0000026294,0.0000026317, +0.0000026338,0.0000026363,0.0000026390,0.0000026402,0.0000026392, +0.0000026362,0.0000026333,0.0000026316,0.0000026310,0.0000026312, +0.0000026315,0.0000026305,0.0000026268,0.0000026196,0.0000026093, +0.0000025999,0.0000025916,0.0000025806,0.0000025703,0.0000025638, +0.0000025622,0.0000025639,0.0000025637,0.0000025594,0.0000025516, +0.0000025432,0.0000025368,0.0000025354,0.0000025394,0.0000025462, +0.0000025510,0.0000025547,0.0000025603,0.0000025660,0.0000025728, +0.0000025760,0.0000025792,0.0000025815,0.0000025829,0.0000025825, +0.0000025785,0.0000025705,0.0000025611,0.0000025521,0.0000025460, +0.0000025462,0.0000025536,0.0000025648,0.0000025739,0.0000025791, +0.0000025833,0.0000025858,0.0000025860,0.0000025943,0.0000026293, +0.0000026639,0.0000026832,0.0000027172,0.0000027542,0.0000027618, +0.0000027552,0.0000027531,0.0000027550,0.0000027583,0.0000027611, +0.0000027665,0.0000027722,0.0000027623,0.0000027386,0.0000027265, +0.0000027308,0.0000027385,0.0000027372,0.0000027240,0.0000027052, +0.0000026881,0.0000026797,0.0000026811,0.0000026907,0.0000027002, +0.0000027024,0.0000027015,0.0000027037,0.0000027056,0.0000027005, +0.0000026937,0.0000026983,0.0000027158,0.0000027343,0.0000027428, +0.0000027442,0.0000027402,0.0000027318,0.0000027246,0.0000027217, +0.0000027195,0.0000027194,0.0000027219,0.0000027265,0.0000027309, +0.0000027340,0.0000027354,0.0000027339,0.0000027301,0.0000027249, +0.0000027193,0.0000027155,0.0000027145,0.0000027139,0.0000027127, +0.0000027107,0.0000027084,0.0000027065,0.0000027050,0.0000027034, +0.0000027034,0.0000027041,0.0000027013,0.0000026995,0.0000026989, +0.0000026964,0.0000026907,0.0000026792,0.0000026686,0.0000026660, +0.0000026659,0.0000026635,0.0000026620,0.0000026631,0.0000026658, +0.0000026679,0.0000026666,0.0000026625,0.0000026592,0.0000026560, +0.0000026501,0.0000026419,0.0000026328,0.0000026244,0.0000026195, +0.0000026188,0.0000026201,0.0000026206,0.0000026178,0.0000026128, +0.0000026097,0.0000026103,0.0000026138,0.0000026175,0.0000026186, +0.0000026189,0.0000026193,0.0000026145,0.0000026005,0.0000025905, +0.0000025883,0.0000025774,0.0000025518,0.0000025280,0.0000025141, +0.0000025037,0.0000024923,0.0000024806,0.0000024701,0.0000024621, +0.0000024571,0.0000024548,0.0000024541,0.0000024543,0.0000024552, +0.0000024554,0.0000024538,0.0000024495,0.0000024442,0.0000024424, +0.0000024447,0.0000024527,0.0000024642,0.0000024754,0.0000024819, +0.0000024815,0.0000024767,0.0000024709,0.0000024670,0.0000024692, +0.0000024805,0.0000025094,0.0000025585,0.0000026078,0.0000026295, +0.0000026367,0.0000026444,0.0000026559,0.0000026669,0.0000026725, +0.0000026643,0.0000026485,0.0000026316,0.0000026112,0.0000025833, +0.0000025739,0.0000025729,0.0000025535,0.0000025330,0.0000025387, +0.0000025683,0.0000026334,0.0000026861,0.0000027225,0.0000027600, +0.0000027758,0.0000027775,0.0000027742,0.0000027746,0.0000027730, +0.0000027701,0.0000027577,0.0000027528,0.0000027528,0.0000027547, +0.0000027535,0.0000027502,0.0000027551,0.0000027580,0.0000027541, +0.0000027567,0.0000027574,0.0000027553,0.0000027440,0.0000027318, +0.0000027338,0.0000027418,0.0000027446,0.0000027441,0.0000027417, +0.0000027396,0.0000027383,0.0000027361,0.0000027331,0.0000027322, +0.0000027336,0.0000027376,0.0000027386,0.0000027374,0.0000027348, +0.0000027311,0.0000027255,0.0000027184,0.0000027118,0.0000027070, +0.0000027019,0.0000026960,0.0000026900,0.0000026847,0.0000026800, +0.0000026761,0.0000026731,0.0000026720,0.0000026716,0.0000026687, +0.0000026622,0.0000026538,0.0000026477,0.0000026451,0.0000026445, +0.0000026469,0.0000026504,0.0000026547,0.0000026581,0.0000026613, +0.0000026655,0.0000026700,0.0000026726,0.0000026723,0.0000026691, +0.0000026647,0.0000026625,0.0000026617,0.0000026591,0.0000026513, +0.0000026352,0.0000026136,0.0000025960,0.0000025900,0.0000025912, +0.0000025928,0.0000025927,0.0000025879,0.0000025792,0.0000025682, +0.0000025578,0.0000025486,0.0000025408,0.0000025352,0.0000025311, +0.0000025285,0.0000025288,0.0000025299,0.0000025307,0.0000025301, +0.0000025289,0.0000025286,0.0000025292,0.0000025303,0.0000025315, +0.0000025326,0.0000025330,0.0000025333,0.0000025328,0.0000025326, +0.0000025345,0.0000025366,0.0000025386,0.0000025411,0.0000025421, +0.0000025425,0.0000025458,0.0000025548,0.0000025638,0.0000025587, +0.0000025529,0.0000025704,0.0000025796,0.0000025742,0.0000025702, +0.0000025712,0.0000025747,0.0000025781,0.0000025825,0.0000025849, +0.0000025822,0.0000025782,0.0000025777,0.0000025805,0.0000025809, +0.0000025765,0.0000025606,0.0000025345,0.0000025156,0.0000025109, +0.0000025115,0.0000025074,0.0000024973,0.0000024846,0.0000024736, +0.0000024777,0.0000025007,0.0000025193,0.0000025287,0.0000025329, +0.0000025305,0.0000025379,0.0000025471,0.0000025283,0.0000025143, +0.0000025183,0.0000025290,0.0000025379,0.0000025399,0.0000025673, +0.0000026105,0.0000026364,0.0000026411,0.0000026354,0.0000026249, +0.0000026125,0.0000026019,0.0000026004,0.0000026017,0.0000025987, +0.0000025917,0.0000025842,0.0000025809,0.0000025842,0.0000025906, +0.0000025950,0.0000025978,0.0000026012,0.0000026096,0.0000026189, +0.0000026226,0.0000026228,0.0000026223,0.0000026213,0.0000026205, +0.0000026203,0.0000026196,0.0000026189,0.0000026195,0.0000026200, +0.0000026227,0.0000026304,0.0000026377,0.0000026459,0.0000026611, +0.0000026766,0.0000026841,0.0000026873,0.0000026868,0.0000026830, +0.0000026769,0.0000026712,0.0000026713,0.0000026782,0.0000026853, +0.0000026911,0.0000026952,0.0000026962,0.0000026953,0.0000026931, +0.0000026892,0.0000026852,0.0000026839,0.0000026826,0.0000026823, +0.0000026841,0.0000026872,0.0000026922,0.0000026966,0.0000026991, +0.0000027015,0.0000027047,0.0000027077,0.0000027095,0.0000027113, +0.0000027138,0.0000027149,0.0000027151,0.0000027161,0.0000027171, +0.0000027161,0.0000027119,0.0000027079,0.0000027054,0.0000027072, +0.0000027115,0.0000027138,0.0000027141,0.0000027146,0.0000027133, +0.0000027105,0.0000027075,0.0000027075,0.0000027149,0.0000027249, +0.0000027359,0.0000027486,0.0000027616,0.0000027714,0.0000027743, +0.0000027726,0.0000027706,0.0000027698,0.0000027683,0.0000027686, +0.0000027724,0.0000027806,0.0000027892,0.0000027978,0.0000028061, +0.0000028126,0.0000028167,0.0000028182,0.0000028165,0.0000028095, +0.0000027994,0.0000027920,0.0000027905,0.0000027947,0.0000027998, +0.0000028003,0.0000027969,0.0000027964,0.0000027981,0.0000028031, +0.0000028088,0.0000028131,0.0000028141,0.0000028132,0.0000028121, +0.0000028105,0.0000028064,0.0000027995,0.0000027906,0.0000027806, +0.0000027704,0.0000027608,0.0000027525,0.0000027462,0.0000027418, +0.0000027385,0.0000027356,0.0000027338,0.0000027337,0.0000027357, +0.0000027391,0.0000027427,0.0000027465,0.0000027490,0.0000027490, +0.0000027477,0.0000027460,0.0000027443,0.0000027433,0.0000027448, +0.0000027499,0.0000027574,0.0000027658,0.0000027738,0.0000027812, +0.0000027858,0.0000027868,0.0000027879,0.0000027934,0.0000028016, +0.0000028081,0.0000028109,0.0000028105,0.0000028076,0.0000028043, +0.0000028035,0.0000028068,0.0000028144,0.0000028209,0.0000028267, +0.0000028331,0.0000028387,0.0000028425,0.0000028437,0.0000028435, +0.0000028441,0.0000028442,0.0000028416,0.0000028340,0.0000028229, +0.0000028114,0.0000028009,0.0000027937,0.0000027919,0.0000027962, +0.0000028061,0.0000028126,0.0000028122,0.0000028078,0.0000028047, +0.0000028054,0.0000028055,0.0000028014,0.0000027954,0.0000027926, +0.0000027924,0.0000027903,0.0000027873,0.0000027846,0.0000027821, +0.0000027811,0.0000027858,0.0000027948,0.0000028010,0.0000028045, +0.0000028102,0.0000028155,0.0000028159,0.0000028118,0.0000028067, +0.0000028037,0.0000028018,0.0000027998,0.0000027962,0.0000027884, +0.0000027806,0.0000027797,0.0000027833,0.0000027865,0.0000027937, +0.0000028072,0.0000028187,0.0000028216,0.0000028189,0.0000028137, +0.0000028117,0.0000028102,0.0000028060,0.0000028001,0.0000027946, +0.0000027904,0.0000027861,0.0000027803,0.0000027737,0.0000027675, +0.0000027632,0.0000027602,0.0000027581,0.0000027570,0.0000027559, +0.0000027545,0.0000027534,0.0000027530,0.0000027533,0.0000027537, +0.0000027551,0.0000027585,0.0000027621,0.0000027632,0.0000027628, +0.0000027616,0.0000027591,0.0000027577,0.0000027585,0.0000027618, +0.0000027661,0.0000027704,0.0000027751,0.0000027781,0.0000027792, +0.0000027794,0.0000027778,0.0000027755,0.0000027738,0.0000027744, +0.0000027766,0.0000027783,0.0000027774,0.0000027751,0.0000027725, +0.0000027712,0.0000027683,0.0000027642,0.0000027597,0.0000027505, +0.0000027274,0.0000026928,0.0000026611,0.0000026438,0.0000026377, +0.0000026377,0.0000026436,0.0000026489,0.0000026514,0.0000026575, +0.0000026694,0.0000026815,0.0000026907,0.0000026956,0.0000026973, +0.0000026951,0.0000026897,0.0000026830,0.0000026772,0.0000026729, +0.0000026673,0.0000026634,0.0000026630,0.0000026659,0.0000026716, +0.0000026791,0.0000026855,0.0000026898,0.0000026941,0.0000026978, +0.0000027008,0.0000027050,0.0000027118,0.0000027186,0.0000027215, +0.0000027195,0.0000027166,0.0000027144,0.0000027110,0.0000027074, +0.0000027041,0.0000027018,0.0000027022,0.0000027056,0.0000027052, +0.0000026989,0.0000026851,0.0000026559,0.0000026170,0.0000026064, +0.0000026181,0.0000026530,0.0000026916,0.0000027049,0.0000026978, +0.0000027020,0.0000027425,0.0000028090,0.0000028332,0.0000028331, +0.0000028288,0.0000028313,0.0000028360,0.0000028384,0.0000028387, +0.0000028394,0.0000028387,0.0000028381,0.0000028371,0.0000028361, +0.0000028365,0.0000028377,0.0000028403,0.0000028422,0.0000028425, +0.0000028420,0.0000028390,0.0000028341,0.0000028265,0.0000028157, +0.0000028073,0.0000027987,0.0000027923,0.0000027920,0.0000027922, +0.0000027884,0.0000027829,0.0000027831,0.0000027915,0.0000028042, +0.0000028177,0.0000028275,0.0000028308,0.0000028260,0.0000028159, +0.0000028144,0.0000028141,0.0000028260,0.0000028299,0.0000028206, +0.0000028351,0.0000028473,0.0000028556,0.0000028645,0.0000028775, +0.0000028797,0.0000028823,0.0000028959,0.0000028951,0.0000028883, +0.0000028857,0.0000028861,0.0000028863,0.0000028842,0.0000028812, +0.0000028765,0.0000028699,0.0000028637,0.0000028579,0.0000028514, +0.0000028448,0.0000028374,0.0000028294,0.0000028242,0.0000028235, +0.0000028244,0.0000028237,0.0000028199,0.0000028150,0.0000028111, +0.0000027998,0.0000027793,0.0000027567,0.0000027373,0.0000027234, +0.0000027152,0.0000027118,0.0000027146,0.0000027253,0.0000027399, +0.0000027528,0.0000027585,0.0000027585,0.0000027581,0.0000027598, +0.0000027653,0.0000027719,0.0000027761,0.0000027802,0.0000027855, +0.0000027892,0.0000027897,0.0000027875,0.0000027831,0.0000027786, +0.0000027719,0.0000027615,0.0000027516,0.0000027430,0.0000027312, +0.0000027157,0.0000026994,0.0000026834,0.0000026682,0.0000026541, +0.0000026408,0.0000026285,0.0000026186,0.0000026112,0.0000026064, +0.0000026029,0.0000026004,0.0000026002,0.0000026029,0.0000026076, +0.0000026112,0.0000026125,0.0000026116,0.0000026099,0.0000026105, +0.0000026167,0.0000026276,0.0000026402,0.0000026520,0.0000026606, +0.0000026669,0.0000026730,0.0000026789,0.0000026830,0.0000026853, +0.0000026873,0.0000026901,0.0000026934,0.0000026964,0.0000026976, +0.0000026964,0.0000026920,0.0000026861,0.0000026806,0.0000026766, +0.0000026743,0.0000026748,0.0000026798,0.0000026897,0.0000027004, +0.0000027079,0.0000027118,0.0000027112,0.0000027075,0.0000027045, +0.0000027062,0.0000027142,0.0000027246,0.0000027315,0.0000027324, +0.0000027291,0.0000027272,0.0000027323,0.0000027441,0.0000027554, +0.0000027603,0.0000027601,0.0000027590,0.0000027605,0.0000027683, +0.0000027805,0.0000027920,0.0000027973,0.0000027954,0.0000027875, +0.0000027767,0.0000027670,0.0000027611,0.0000027573,0.0000027531, +0.0000027478,0.0000027431,0.0000027404,0.0000027400,0.0000027436, +0.0000027510,0.0000027588,0.0000027639,0.0000027662,0.0000027685, +0.0000027727,0.0000027767,0.0000027776,0.0000027748,0.0000027696, +0.0000027636,0.0000027581,0.0000027553,0.0000027561,0.0000027602, +0.0000027657,0.0000027703,0.0000027710,0.0000027672,0.0000027575, +0.0000027450,0.0000027330,0.0000027220,0.0000027119,0.0000027036, +0.0000026978,0.0000026939,0.0000026912,0.0000026897,0.0000026883, +0.0000026858,0.0000026825,0.0000026794,0.0000026775,0.0000026782, +0.0000026818,0.0000026869,0.0000026913,0.0000026935,0.0000026936, +0.0000026931,0.0000026914,0.0000026891,0.0000026861,0.0000026824, +0.0000026794,0.0000026787,0.0000026797,0.0000026802,0.0000026785, +0.0000026760,0.0000026746,0.0000026751,0.0000026775,0.0000026803, +0.0000026811,0.0000026786,0.0000026731,0.0000026658,0.0000026572, +0.0000026475,0.0000026371,0.0000026262,0.0000026163,0.0000026090, +0.0000026050,0.0000026065,0.0000026078,0.0000026111,0.0000026134, +0.0000026150,0.0000026167,0.0000026190,0.0000026219,0.0000026260, +0.0000026310,0.0000026349,0.0000026368,0.0000026360,0.0000026347, +0.0000026337,0.0000026328,0.0000026327,0.0000026332,0.0000026333, +0.0000026316,0.0000026269,0.0000026202,0.0000026138,0.0000026090, +0.0000026030,0.0000025967,0.0000025909,0.0000025866,0.0000025842, +0.0000025831,0.0000025789,0.0000025712,0.0000025625,0.0000025568, +0.0000025560,0.0000025604,0.0000025677,0.0000025737,0.0000025787, +0.0000025834,0.0000025867,0.0000025868,0.0000025826,0.0000025760, +0.0000025687,0.0000025669,0.0000025685,0.0000025696,0.0000025669, +0.0000025590,0.0000025485,0.0000025386,0.0000025320,0.0000025317, +0.0000025407,0.0000025559,0.0000025689,0.0000025769,0.0000025818, +0.0000025836,0.0000025923,0.0000026263,0.0000026637,0.0000026870, +0.0000027208,0.0000027539,0.0000027598,0.0000027549,0.0000027543, +0.0000027565,0.0000027588,0.0000027606,0.0000027655,0.0000027673, +0.0000027529,0.0000027310,0.0000027246,0.0000027297,0.0000027376, +0.0000027363,0.0000027240,0.0000027093,0.0000026953,0.0000026849, +0.0000026815,0.0000026848,0.0000026930,0.0000026998,0.0000027000, +0.0000026982,0.0000027007,0.0000027022,0.0000026956,0.0000026905, +0.0000026985,0.0000027211,0.0000027398,0.0000027458,0.0000027455, +0.0000027394,0.0000027310,0.0000027259,0.0000027225,0.0000027202, +0.0000027194,0.0000027211,0.0000027229,0.0000027241,0.0000027248, +0.0000027251,0.0000027239,0.0000027233,0.0000027212,0.0000027202, +0.0000027203,0.0000027203,0.0000027186,0.0000027151,0.0000027111, +0.0000027080,0.0000027069,0.0000027062,0.0000027060,0.0000027077, +0.0000027066,0.0000027057,0.0000027022,0.0000026946,0.0000026845, +0.0000026739,0.0000026665,0.0000026652,0.0000026649,0.0000026630, +0.0000026622,0.0000026633,0.0000026657,0.0000026673,0.0000026664, +0.0000026629,0.0000026598,0.0000026567,0.0000026514,0.0000026437, +0.0000026344,0.0000026249,0.0000026189,0.0000026179,0.0000026191, +0.0000026195,0.0000026174,0.0000026134,0.0000026101,0.0000026092, +0.0000026104,0.0000026128,0.0000026144,0.0000026149,0.0000026162, +0.0000026168,0.0000026092,0.0000025955,0.0000025888,0.0000025857, +0.0000025686,0.0000025417,0.0000025236,0.0000025147,0.0000025049, +0.0000024915,0.0000024772,0.0000024642,0.0000024546,0.0000024489, +0.0000024458,0.0000024446,0.0000024445,0.0000024445,0.0000024445, +0.0000024434,0.0000024403,0.0000024355,0.0000024306,0.0000024296, +0.0000024332,0.0000024429,0.0000024555,0.0000024665,0.0000024722, +0.0000024718,0.0000024681,0.0000024644,0.0000024643,0.0000024685, +0.0000024848,0.0000025241,0.0000025832,0.0000026211,0.0000026324, +0.0000026397,0.0000026503,0.0000026615,0.0000026689,0.0000026627, +0.0000026473,0.0000026302,0.0000026134,0.0000025918,0.0000025704, +0.0000025692,0.0000025658,0.0000025412,0.0000025322,0.0000025444, +0.0000025969,0.0000026587,0.0000027072,0.0000027506,0.0000027751, +0.0000027778,0.0000027749,0.0000027755,0.0000027734,0.0000027691, +0.0000027585,0.0000027528,0.0000027510,0.0000027525,0.0000027534, +0.0000027527,0.0000027584,0.0000027572,0.0000027517,0.0000027534, +0.0000027544,0.0000027528,0.0000027426,0.0000027316,0.0000027344, +0.0000027425,0.0000027461,0.0000027464,0.0000027452,0.0000027428, +0.0000027386,0.0000027342,0.0000027311,0.0000027305,0.0000027325, +0.0000027373,0.0000027392,0.0000027390,0.0000027369,0.0000027326, +0.0000027271,0.0000027193,0.0000027104,0.0000027042,0.0000026995, +0.0000026943,0.0000026869,0.0000026787,0.0000026735,0.0000026716, +0.0000026714,0.0000026718,0.0000026723,0.0000026713,0.0000026684, +0.0000026627,0.0000026553,0.0000026486,0.0000026445,0.0000026452, +0.0000026485,0.0000026539,0.0000026579,0.0000026607,0.0000026637, +0.0000026679,0.0000026706,0.0000026704,0.0000026670,0.0000026623, +0.0000026598,0.0000026583,0.0000026537,0.0000026405,0.0000026180, +0.0000025976,0.0000025891,0.0000025899,0.0000025915,0.0000025898, +0.0000025834,0.0000025737,0.0000025636,0.0000025543,0.0000025468, +0.0000025397,0.0000025329,0.0000025284,0.0000025265,0.0000025272, +0.0000025315,0.0000025368,0.0000025404,0.0000025412,0.0000025405, +0.0000025396,0.0000025386,0.0000025380,0.0000025384,0.0000025388, +0.0000025386,0.0000025381,0.0000025377,0.0000025392,0.0000025402, +0.0000025421,0.0000025440,0.0000025469,0.0000025475,0.0000025464, +0.0000025456,0.0000025490,0.0000025598,0.0000025622,0.0000025521, +0.0000025545,0.0000025723,0.0000025723,0.0000025680,0.0000025709, +0.0000025760,0.0000025787,0.0000025811,0.0000025863,0.0000025883, +0.0000025842,0.0000025763,0.0000025722,0.0000025723,0.0000025721, +0.0000025689,0.0000025604,0.0000025468,0.0000025284,0.0000025145, +0.0000025106,0.0000025078,0.0000025005,0.0000024882,0.0000024741, +0.0000024749,0.0000024952,0.0000025160,0.0000025275,0.0000025324, +0.0000025319,0.0000025333,0.0000025441,0.0000025334,0.0000025125, +0.0000025127,0.0000025208,0.0000025314,0.0000025336,0.0000025479, +0.0000025927,0.0000026287,0.0000026409,0.0000026386,0.0000026297, +0.0000026188,0.0000026075,0.0000026004,0.0000026010,0.0000025988, +0.0000025909,0.0000025818,0.0000025766,0.0000025795,0.0000025877, +0.0000025941,0.0000025968,0.0000025987,0.0000026048,0.0000026132, +0.0000026178,0.0000026180,0.0000026179,0.0000026179,0.0000026179, +0.0000026174,0.0000026170,0.0000026159,0.0000026155,0.0000026154, +0.0000026214,0.0000026337,0.0000026413,0.0000026491,0.0000026633, +0.0000026762,0.0000026808,0.0000026818,0.0000026806,0.0000026764, +0.0000026696,0.0000026638,0.0000026639,0.0000026668,0.0000026696, +0.0000026725,0.0000026748,0.0000026754,0.0000026739,0.0000026727, +0.0000026724,0.0000026750,0.0000026792,0.0000026823,0.0000026849, +0.0000026878,0.0000026906,0.0000026930,0.0000026948,0.0000026953, +0.0000026957,0.0000026979,0.0000027013,0.0000027038,0.0000027053, +0.0000027079,0.0000027104,0.0000027118,0.0000027124,0.0000027132, +0.0000027123,0.0000027088,0.0000027055,0.0000027038,0.0000027053, +0.0000027081,0.0000027102,0.0000027100,0.0000027082,0.0000027049, +0.0000027003,0.0000026959,0.0000026944,0.0000027008,0.0000027111, +0.0000027234,0.0000027384,0.0000027526,0.0000027632,0.0000027689, +0.0000027706,0.0000027704,0.0000027701,0.0000027682,0.0000027663, +0.0000027682,0.0000027747,0.0000027829,0.0000027910,0.0000027994, +0.0000028066,0.0000028112,0.0000028122,0.0000028102,0.0000028026, +0.0000027921,0.0000027848,0.0000027840,0.0000027895,0.0000027949, +0.0000027945,0.0000027918,0.0000027935,0.0000027969,0.0000028014, +0.0000028053,0.0000028078,0.0000028080,0.0000028062,0.0000028037, +0.0000028010,0.0000027971,0.0000027911,0.0000027833,0.0000027744, +0.0000027649,0.0000027557,0.0000027478,0.0000027413,0.0000027361, +0.0000027322,0.0000027290,0.0000027267,0.0000027265,0.0000027287, +0.0000027331,0.0000027375,0.0000027420,0.0000027453,0.0000027459, +0.0000027449,0.0000027428,0.0000027395,0.0000027363,0.0000027352, +0.0000027373,0.0000027420,0.0000027480,0.0000027543,0.0000027617, +0.0000027696,0.0000027758,0.0000027806,0.0000027870,0.0000027953, +0.0000028026,0.0000028074,0.0000028087,0.0000028065,0.0000028028, +0.0000028010,0.0000028024,0.0000028084,0.0000028145,0.0000028187, +0.0000028224,0.0000028274,0.0000028333,0.0000028381,0.0000028410, +0.0000028433,0.0000028468,0.0000028508,0.0000028519,0.0000028453, +0.0000028333,0.0000028182,0.0000028035,0.0000027943,0.0000027934, +0.0000027992,0.0000028060,0.0000028082,0.0000028049,0.0000028005, +0.0000028019,0.0000028053,0.0000028041,0.0000027975,0.0000027902, +0.0000027870,0.0000027853,0.0000027845,0.0000027847,0.0000027845, +0.0000027823,0.0000027808,0.0000027862,0.0000027985,0.0000028063, +0.0000028080,0.0000028114,0.0000028163,0.0000028171,0.0000028122, +0.0000028062,0.0000028028,0.0000028001,0.0000027965,0.0000027908, +0.0000027821,0.0000027767,0.0000027777,0.0000027796,0.0000027832, +0.0000027947,0.0000028091,0.0000028166,0.0000028165,0.0000028133, +0.0000028121,0.0000028125,0.0000028099,0.0000028045,0.0000027994, +0.0000027950,0.0000027909,0.0000027854,0.0000027785,0.0000027709, +0.0000027646,0.0000027590,0.0000027543,0.0000027514,0.0000027503, +0.0000027503,0.0000027508,0.0000027519,0.0000027532,0.0000027545, +0.0000027559,0.0000027574,0.0000027606,0.0000027621,0.0000027611, +0.0000027591,0.0000027564,0.0000027540,0.0000027540,0.0000027570, +0.0000027619,0.0000027668,0.0000027722,0.0000027772,0.0000027801, +0.0000027816,0.0000027818,0.0000027806,0.0000027785,0.0000027771, +0.0000027775,0.0000027792,0.0000027801,0.0000027792,0.0000027784, +0.0000027777,0.0000027765,0.0000027728,0.0000027675,0.0000027593, +0.0000027427,0.0000027145,0.0000026819,0.0000026565,0.0000026435, +0.0000026380,0.0000026386,0.0000026435,0.0000026472,0.0000026497, +0.0000026568,0.0000026694,0.0000026816,0.0000026908,0.0000026959, +0.0000026982,0.0000026972,0.0000026929,0.0000026870,0.0000026801, +0.0000026728,0.0000026651,0.0000026588,0.0000026568,0.0000026582, +0.0000026626,0.0000026698,0.0000026778,0.0000026843,0.0000026899, +0.0000026934,0.0000026947,0.0000026962,0.0000027011,0.0000027085, +0.0000027146,0.0000027166,0.0000027158,0.0000027144,0.0000027107, +0.0000027068,0.0000027031,0.0000026997,0.0000026987,0.0000027001, +0.0000027011,0.0000026983,0.0000026933,0.0000026847,0.0000026519, +0.0000026156,0.0000026097,0.0000026249,0.0000026575,0.0000026911, +0.0000026976,0.0000026958,0.0000027156,0.0000027765,0.0000028252, +0.0000028334,0.0000028303,0.0000028295,0.0000028351,0.0000028398, +0.0000028410,0.0000028408,0.0000028381,0.0000028350,0.0000028316, +0.0000028283,0.0000028267,0.0000028268,0.0000028284,0.0000028301, +0.0000028308,0.0000028322,0.0000028329,0.0000028322,0.0000028271, +0.0000028175,0.0000028089,0.0000028012,0.0000027956,0.0000027948, +0.0000027941,0.0000027925,0.0000027877,0.0000027827,0.0000027849, +0.0000027922,0.0000028052,0.0000028202,0.0000028297,0.0000028306, +0.0000028206,0.0000028140,0.0000028140,0.0000028161,0.0000028288, +0.0000028198,0.0000028236,0.0000028392,0.0000028496,0.0000028573, +0.0000028678,0.0000028772,0.0000028771,0.0000028868,0.0000028949, +0.0000028906,0.0000028841,0.0000028809,0.0000028799,0.0000028779, +0.0000028751,0.0000028714,0.0000028659,0.0000028606,0.0000028565, +0.0000028505,0.0000028421,0.0000028322,0.0000028254,0.0000028233, +0.0000028237,0.0000028240,0.0000028223,0.0000028180,0.0000028138, +0.0000028047,0.0000027852,0.0000027629,0.0000027435,0.0000027269, +0.0000027147,0.0000027083,0.0000027066,0.0000027113,0.0000027242, +0.0000027422,0.0000027552,0.0000027591,0.0000027587,0.0000027589, +0.0000027617,0.0000027662,0.0000027707,0.0000027748,0.0000027801, +0.0000027850,0.0000027871,0.0000027861,0.0000027823,0.0000027779, +0.0000027733,0.0000027634,0.0000027491,0.0000027368,0.0000027244, +0.0000027086,0.0000026930,0.0000026798,0.0000026664,0.0000026526, +0.0000026399,0.0000026284,0.0000026172,0.0000026079,0.0000026016, +0.0000025982,0.0000025968,0.0000025963,0.0000025969,0.0000026009, +0.0000026085,0.0000026175,0.0000026251,0.0000026301,0.0000026315, +0.0000026309,0.0000026309,0.0000026342,0.0000026419,0.0000026533, +0.0000026655,0.0000026751,0.0000026822,0.0000026868,0.0000026879, +0.0000026878,0.0000026885,0.0000026912,0.0000026960,0.0000027017, +0.0000027077,0.0000027127,0.0000027156,0.0000027144,0.0000027083, +0.0000027008,0.0000026942,0.0000026882,0.0000026825,0.0000026783, +0.0000026775,0.0000026812,0.0000026880,0.0000026979,0.0000027051, +0.0000027078,0.0000027075,0.0000027051,0.0000027044,0.0000027089, +0.0000027188,0.0000027289,0.0000027325,0.0000027296,0.0000027263, +0.0000027285,0.0000027374,0.0000027481,0.0000027539,0.0000027532, +0.0000027509,0.0000027527,0.0000027618,0.0000027749,0.0000027871, +0.0000027940,0.0000027953,0.0000027920,0.0000027851,0.0000027774, +0.0000027715,0.0000027669,0.0000027620,0.0000027567,0.0000027511, +0.0000027454,0.0000027427,0.0000027434,0.0000027487,0.0000027563, +0.0000027614,0.0000027634,0.0000027650,0.0000027695,0.0000027747, +0.0000027766,0.0000027760,0.0000027717,0.0000027645,0.0000027577, +0.0000027551,0.0000027561,0.0000027606,0.0000027658,0.0000027690, +0.0000027683,0.0000027648,0.0000027585,0.0000027508,0.0000027423, +0.0000027340,0.0000027263,0.0000027200,0.0000027145,0.0000027094, +0.0000027041,0.0000026983,0.0000026920,0.0000026868,0.0000026828, +0.0000026806,0.0000026805,0.0000026822,0.0000026855,0.0000026905, +0.0000026948,0.0000026975,0.0000026975,0.0000026957,0.0000026930, +0.0000026893,0.0000026846,0.0000026813,0.0000026810,0.0000026832, +0.0000026849,0.0000026838,0.0000026815,0.0000026805,0.0000026816, +0.0000026856,0.0000026903,0.0000026929,0.0000026924,0.0000026896, +0.0000026858,0.0000026810,0.0000026743,0.0000026656,0.0000026552, +0.0000026438,0.0000026331,0.0000026246,0.0000026192,0.0000026163, +0.0000026145,0.0000026125,0.0000026118,0.0000026106,0.0000026102, +0.0000026113,0.0000026134,0.0000026179,0.0000026225,0.0000026262, +0.0000026283,0.0000026293,0.0000026295,0.0000026296,0.0000026299, +0.0000026301,0.0000026301,0.0000026298,0.0000026279,0.0000026243, +0.0000026219,0.0000026206,0.0000026193,0.0000026182,0.0000026151, +0.0000026105,0.0000026072,0.0000026055,0.0000026029,0.0000025972, +0.0000025904,0.0000025858,0.0000025849,0.0000025880,0.0000025930, +0.0000025966,0.0000025991,0.0000026012,0.0000026018,0.0000026009, +0.0000025964,0.0000025842,0.0000025676,0.0000025559,0.0000025541, +0.0000025573,0.0000025596,0.0000025575,0.0000025494,0.0000025372, +0.0000025251,0.0000025171,0.0000025186,0.0000025336,0.0000025544, +0.0000025693,0.0000025778,0.0000025817,0.0000025907,0.0000026226, +0.0000026627,0.0000026914,0.0000027260,0.0000027559,0.0000027584, +0.0000027542,0.0000027548,0.0000027566,0.0000027577,0.0000027596, +0.0000027644,0.0000027630,0.0000027440,0.0000027268,0.0000027246, +0.0000027293,0.0000027356,0.0000027340,0.0000027235,0.0000027125, +0.0000027031,0.0000026945,0.0000026881,0.0000026863,0.0000026897, +0.0000026957,0.0000026988,0.0000026967,0.0000026953,0.0000026989, +0.0000026987,0.0000026915,0.0000026893,0.0000027044,0.0000027295, +0.0000027444,0.0000027471,0.0000027448,0.0000027378,0.0000027310, +0.0000027258,0.0000027228,0.0000027217,0.0000027216,0.0000027219, +0.0000027212,0.0000027214,0.0000027229,0.0000027243,0.0000027259, +0.0000027263,0.0000027267,0.0000027261,0.0000027251,0.0000027216, +0.0000027156,0.0000027094,0.0000027059,0.0000027066,0.0000027081, +0.0000027088,0.0000027118,0.0000027120,0.0000027104,0.0000027043, +0.0000026903,0.0000026783,0.0000026714,0.0000026670,0.0000026651, +0.0000026641,0.0000026627,0.0000026628,0.0000026639,0.0000026661, +0.0000026675,0.0000026662,0.0000026629,0.0000026604,0.0000026574, +0.0000026524,0.0000026459,0.0000026373,0.0000026274,0.0000026202, +0.0000026190,0.0000026201,0.0000026204,0.0000026185,0.0000026155, +0.0000026126,0.0000026108,0.0000026100,0.0000026095,0.0000026097, +0.0000026100,0.0000026112,0.0000026135,0.0000026133,0.0000026041, +0.0000025916,0.0000025872,0.0000025821,0.0000025604,0.0000025350, +0.0000025224,0.0000025153,0.0000025039,0.0000024887,0.0000024732, +0.0000024593,0.0000024495,0.0000024439,0.0000024407,0.0000024395, +0.0000024395,0.0000024395,0.0000024395,0.0000024392,0.0000024377, +0.0000024342,0.0000024292,0.0000024249,0.0000024244,0.0000024286, +0.0000024362,0.0000024455,0.0000024546,0.0000024602,0.0000024610, +0.0000024601,0.0000024604,0.0000024649,0.0000024742,0.0000024992, +0.0000025550,0.0000026078,0.0000026269,0.0000026342,0.0000026446, +0.0000026551,0.0000026634,0.0000026607,0.0000026463,0.0000026300, +0.0000026148,0.0000025991,0.0000025753,0.0000025603,0.0000025650, +0.0000025562,0.0000025340,0.0000025363,0.0000025644,0.0000026308, +0.0000026918,0.0000027408,0.0000027739,0.0000027783,0.0000027757, +0.0000027756,0.0000027735,0.0000027682,0.0000027605,0.0000027524, +0.0000027499,0.0000027521,0.0000027544,0.0000027560,0.0000027614, +0.0000027563,0.0000027498,0.0000027499,0.0000027518,0.0000027514, +0.0000027426,0.0000027326,0.0000027351,0.0000027428,0.0000027472, +0.0000027481,0.0000027482,0.0000027459,0.0000027395,0.0000027333, +0.0000027299,0.0000027294,0.0000027288,0.0000027331,0.0000027364, +0.0000027375,0.0000027369,0.0000027333,0.0000027282,0.0000027213, +0.0000027127,0.0000027049,0.0000026985,0.0000026935,0.0000026872, +0.0000026788,0.0000026718,0.0000026682,0.0000026679,0.0000026702, +0.0000026730,0.0000026730,0.0000026709,0.0000026680,0.0000026645, +0.0000026580,0.0000026502,0.0000026459,0.0000026473,0.0000026518, +0.0000026568,0.0000026597,0.0000026619,0.0000026654,0.0000026686, +0.0000026685,0.0000026656,0.0000026616,0.0000026583,0.0000026553, +0.0000026466,0.0000026257,0.0000026007,0.0000025879,0.0000025876, +0.0000025894,0.0000025872,0.0000025794,0.0000025690,0.0000025603, +0.0000025529,0.0000025456,0.0000025389,0.0000025327,0.0000025279, +0.0000025257,0.0000025280,0.0000025340,0.0000025425,0.0000025501, +0.0000025548,0.0000025565,0.0000025567,0.0000025565,0.0000025554, +0.0000025541,0.0000025535,0.0000025531,0.0000025510,0.0000025482, +0.0000025454,0.0000025439,0.0000025424,0.0000025422,0.0000025427, +0.0000025460,0.0000025489,0.0000025496,0.0000025492,0.0000025490, +0.0000025548,0.0000025610,0.0000025561,0.0000025466,0.0000025583, +0.0000025689,0.0000025675,0.0000025720,0.0000025769,0.0000025800, +0.0000025804,0.0000025804,0.0000025852,0.0000025888,0.0000025838, +0.0000025740,0.0000025674,0.0000025638,0.0000025618,0.0000025583, +0.0000025550,0.0000025517,0.0000025423,0.0000025261,0.0000025129, +0.0000025067,0.0000025017,0.0000024919,0.0000024771,0.0000024732, +0.0000024891,0.0000025111,0.0000025262,0.0000025320,0.0000025338, +0.0000025301,0.0000025393,0.0000025365,0.0000025142,0.0000025085, +0.0000025126,0.0000025218,0.0000025302,0.0000025340,0.0000025701, +0.0000026172,0.0000026400,0.0000026407,0.0000026337,0.0000026247, +0.0000026138,0.0000026030,0.0000025997,0.0000025979,0.0000025898, +0.0000025792,0.0000025735,0.0000025767,0.0000025868,0.0000025953, +0.0000025987,0.0000025997,0.0000026024,0.0000026092,0.0000026138, +0.0000026152,0.0000026164,0.0000026163,0.0000026153,0.0000026149, +0.0000026146,0.0000026133,0.0000026130,0.0000026147,0.0000026256, +0.0000026394,0.0000026448,0.0000026510,0.0000026622,0.0000026723, +0.0000026750,0.0000026753,0.0000026743,0.0000026702,0.0000026639, +0.0000026612,0.0000026627,0.0000026643,0.0000026655,0.0000026667, +0.0000026677,0.0000026680,0.0000026670,0.0000026675,0.0000026702, +0.0000026754,0.0000026807,0.0000026847,0.0000026878,0.0000026901, +0.0000026913,0.0000026914,0.0000026904,0.0000026892,0.0000026885, +0.0000026908,0.0000026952,0.0000026981,0.0000027003,0.0000027029, +0.0000027066,0.0000027098,0.0000027109,0.0000027112,0.0000027102, +0.0000027079,0.0000027057,0.0000027057,0.0000027070,0.0000027076, +0.0000027066,0.0000027047,0.0000027011,0.0000026963,0.0000026901, +0.0000026845,0.0000026819,0.0000026853,0.0000026954,0.0000027102, +0.0000027270,0.0000027420,0.0000027527,0.0000027607,0.0000027669, +0.0000027697,0.0000027699,0.0000027680,0.0000027652,0.0000027656, +0.0000027707,0.0000027769,0.0000027823,0.0000027889,0.0000027973, +0.0000028040,0.0000028055,0.0000028030,0.0000027948,0.0000027853, +0.0000027794,0.0000027794,0.0000027838,0.0000027875,0.0000027871, +0.0000027868,0.0000027908,0.0000027943,0.0000027960,0.0000027962, +0.0000027962,0.0000027961,0.0000027948,0.0000027922,0.0000027891, +0.0000027852,0.0000027801,0.0000027737,0.0000027661,0.0000027574, +0.0000027482,0.0000027394,0.0000027313,0.0000027237,0.0000027172, +0.0000027118,0.0000027072,0.0000027047,0.0000027050,0.0000027081, +0.0000027124,0.0000027173,0.0000027220,0.0000027248,0.0000027265, +0.0000027270,0.0000027257,0.0000027232,0.0000027223,0.0000027254, +0.0000027310,0.0000027375,0.0000027425,0.0000027467,0.0000027518, +0.0000027577,0.0000027648,0.0000027751,0.0000027875,0.0000027978, +0.0000028042,0.0000028073,0.0000028069,0.0000028037,0.0000028001, +0.0000027990,0.0000028027,0.0000028083,0.0000028127,0.0000028151, +0.0000028170,0.0000028197,0.0000028237,0.0000028290,0.0000028351, +0.0000028418,0.0000028484,0.0000028531,0.0000028537,0.0000028498, +0.0000028396,0.0000028246,0.0000028101,0.0000028004,0.0000027974, +0.0000027992,0.0000028015,0.0000028004,0.0000027963,0.0000027955, +0.0000027999,0.0000028029,0.0000027998,0.0000027919,0.0000027859, +0.0000027823,0.0000027803,0.0000027806,0.0000027831,0.0000027854, +0.0000027846,0.0000027834,0.0000027893,0.0000028017,0.0000028093, +0.0000028105,0.0000028128,0.0000028172,0.0000028182,0.0000028136, +0.0000028077,0.0000028034,0.0000027990,0.0000027939,0.0000027866, +0.0000027779,0.0000027740,0.0000027750,0.0000027759,0.0000027820, +0.0000027961,0.0000028083,0.0000028118,0.0000028112,0.0000028108, +0.0000028124,0.0000028120,0.0000028077,0.0000028029,0.0000027990, +0.0000027949,0.0000027902,0.0000027848,0.0000027778,0.0000027699, +0.0000027630,0.0000027569,0.0000027522,0.0000027501,0.0000027501, +0.0000027506,0.0000027517,0.0000027532,0.0000027550,0.0000027564, +0.0000027572,0.0000027591,0.0000027609,0.0000027606,0.0000027583, +0.0000027555,0.0000027528,0.0000027520,0.0000027535,0.0000027575, +0.0000027616,0.0000027664,0.0000027719,0.0000027770,0.0000027801, +0.0000027816,0.0000027821,0.0000027814,0.0000027805,0.0000027797, +0.0000027798,0.0000027803,0.0000027802,0.0000027793,0.0000027797, +0.0000027802,0.0000027792,0.0000027755,0.0000027691,0.0000027572, +0.0000027358,0.0000027078,0.0000026805,0.0000026595,0.0000026464, +0.0000026400,0.0000026395,0.0000026421,0.0000026437,0.0000026461, +0.0000026542,0.0000026680,0.0000026806,0.0000026902,0.0000026962, +0.0000026985,0.0000026987,0.0000026968,0.0000026931,0.0000026878, +0.0000026797,0.0000026698,0.0000026619,0.0000026580,0.0000026572, +0.0000026588,0.0000026635,0.0000026699,0.0000026764,0.0000026829, +0.0000026877,0.0000026900,0.0000026906,0.0000026925,0.0000026974, +0.0000027041,0.0000027104,0.0000027145,0.0000027145,0.0000027113, +0.0000027069,0.0000027024,0.0000026977,0.0000026953,0.0000026955, +0.0000026954,0.0000026959,0.0000026963,0.0000026973,0.0000026855, +0.0000026462,0.0000026128,0.0000026103,0.0000026268,0.0000026618, +0.0000026908,0.0000026936,0.0000027011,0.0000027394,0.0000028014, +0.0000028294,0.0000028312,0.0000028287,0.0000028311,0.0000028382, +0.0000028415,0.0000028418,0.0000028391,0.0000028348,0.0000028302, +0.0000028256,0.0000028232,0.0000028225,0.0000028232,0.0000028240, +0.0000028234,0.0000028239,0.0000028255,0.0000028268,0.0000028243, +0.0000028173,0.0000028092,0.0000028018,0.0000027975,0.0000027974, +0.0000027965,0.0000027947,0.0000027927,0.0000027869,0.0000027836, +0.0000027846,0.0000027922,0.0000028085,0.0000028243,0.0000028316, +0.0000028275,0.0000028159,0.0000028142,0.0000028131,0.0000028206, +0.0000028224,0.0000028151,0.0000028282,0.0000028418,0.0000028511, +0.0000028593,0.0000028704,0.0000028754,0.0000028777,0.0000028884, +0.0000028924,0.0000028869,0.0000028803,0.0000028763,0.0000028730, +0.0000028703,0.0000028676,0.0000028633,0.0000028584,0.0000028537, +0.0000028465,0.0000028375,0.0000028285,0.0000028241,0.0000028234, +0.0000028238,0.0000028238,0.0000028215,0.0000028171,0.0000028100, +0.0000027928,0.0000027701,0.0000027521,0.0000027375,0.0000027232, +0.0000027125,0.0000027081,0.0000027086,0.0000027157,0.0000027303, +0.0000027489,0.0000027613,0.0000027640,0.0000027626,0.0000027628, +0.0000027661,0.0000027700,0.0000027720,0.0000027735,0.0000027772, +0.0000027818,0.0000027827,0.0000027810,0.0000027780,0.0000027757, +0.0000027702,0.0000027565,0.0000027400,0.0000027252,0.0000027074, +0.0000026876,0.0000026726,0.0000026615,0.0000026489,0.0000026351, +0.0000026239,0.0000026166,0.0000026108,0.0000026056,0.0000026012, +0.0000025980,0.0000025965,0.0000025953,0.0000025954,0.0000025986, +0.0000026059,0.0000026155,0.0000026252,0.0000026342,0.0000026417, +0.0000026463,0.0000026483,0.0000026486,0.0000026482,0.0000026502, +0.0000026569,0.0000026666,0.0000026766,0.0000026846,0.0000026884, +0.0000026879,0.0000026845,0.0000026816,0.0000026819,0.0000026860, +0.0000026929,0.0000027017,0.0000027111,0.0000027180,0.0000027203, +0.0000027193,0.0000027173,0.0000027148,0.0000027105,0.0000027051, +0.0000026986,0.0000026903,0.0000026818,0.0000026773,0.0000026789, +0.0000026845,0.0000026936,0.0000027011,0.0000027051,0.0000027062, +0.0000027058,0.0000027069,0.0000027133,0.0000027230,0.0000027297, +0.0000027303,0.0000027272,0.0000027261,0.0000027299,0.0000027385, +0.0000027452,0.0000027461,0.0000027454,0.0000027488,0.0000027581, +0.0000027686,0.0000027780,0.0000027865,0.0000027919,0.0000027931, +0.0000027897,0.0000027839,0.0000027781,0.0000027734,0.0000027695, +0.0000027656,0.0000027611,0.0000027546,0.0000027477,0.0000027451, +0.0000027467,0.0000027530,0.0000027592,0.0000027621,0.0000027638, +0.0000027657,0.0000027685,0.0000027719,0.0000027721,0.0000027697, +0.0000027636,0.0000027574,0.0000027544,0.0000027556,0.0000027596, +0.0000027637,0.0000027661,0.0000027663,0.0000027651,0.0000027616, +0.0000027565,0.0000027505,0.0000027444,0.0000027387,0.0000027336, +0.0000027287,0.0000027233,0.0000027164,0.0000027083,0.0000027005, +0.0000026931,0.0000026872,0.0000026838,0.0000026825,0.0000026835, +0.0000026872,0.0000026933,0.0000026986,0.0000027006,0.0000026998, +0.0000026977,0.0000026939,0.0000026884,0.0000026836,0.0000026826, +0.0000026850,0.0000026874,0.0000026874,0.0000026859,0.0000026853, +0.0000026869,0.0000026917,0.0000026969,0.0000026996,0.0000026989, +0.0000026960,0.0000026934,0.0000026910,0.0000026875,0.0000026824, +0.0000026760,0.0000026687,0.0000026613,0.0000026547,0.0000026494, +0.0000026443,0.0000026388,0.0000026327,0.0000026269,0.0000026220, +0.0000026180,0.0000026148,0.0000026131,0.0000026145,0.0000026167, +0.0000026185,0.0000026201,0.0000026207,0.0000026212,0.0000026209, +0.0000026197,0.0000026186,0.0000026178,0.0000026166,0.0000026150, +0.0000026139,0.0000026150,0.0000026166,0.0000026186,0.0000026204, +0.0000026190,0.0000026153,0.0000026119,0.0000026095,0.0000026082, +0.0000026046,0.0000026010,0.0000025985,0.0000025984,0.0000026005, +0.0000026033,0.0000026047,0.0000026050,0.0000026048,0.0000026033, +0.0000026012,0.0000025986,0.0000025910,0.0000025732,0.0000025528, +0.0000025432,0.0000025453,0.0000025514,0.0000025540,0.0000025507, +0.0000025390,0.0000025231,0.0000025084,0.0000025029,0.0000025122, +0.0000025366,0.0000025597,0.0000025732,0.0000025801,0.0000025889, +0.0000026181,0.0000026602,0.0000026945,0.0000027310,0.0000027589, +0.0000027588,0.0000027536,0.0000027545,0.0000027555,0.0000027555, +0.0000027586,0.0000027635,0.0000027573,0.0000027368,0.0000027253, +0.0000027255,0.0000027290,0.0000027329,0.0000027313,0.0000027231, +0.0000027148,0.0000027090,0.0000027038,0.0000026982,0.0000026941, +0.0000026931,0.0000026952,0.0000026972,0.0000026965,0.0000026934, +0.0000026940,0.0000026974,0.0000026954,0.0000026897,0.0000026934, +0.0000027133,0.0000027362,0.0000027471,0.0000027475,0.0000027433, +0.0000027369,0.0000027300,0.0000027256,0.0000027246,0.0000027241, +0.0000027237,0.0000027221,0.0000027221,0.0000027248,0.0000027280, +0.0000027308,0.0000027316,0.0000027313,0.0000027284,0.0000027247, +0.0000027178,0.0000027087,0.0000027013,0.0000026998,0.0000027043, +0.0000027088,0.0000027111,0.0000027154,0.0000027167,0.0000027131, +0.0000027027,0.0000026857,0.0000026751,0.0000026720,0.0000026688, +0.0000026657,0.0000026639,0.0000026634,0.0000026639,0.0000026646, +0.0000026665,0.0000026679,0.0000026659,0.0000026626,0.0000026600, +0.0000026571,0.0000026526,0.0000026471,0.0000026396,0.0000026299, +0.0000026225,0.0000026214,0.0000026228,0.0000026228,0.0000026204, +0.0000026174,0.0000026152,0.0000026138,0.0000026122,0.0000026104, +0.0000026087,0.0000026074,0.0000026070,0.0000026079,0.0000026097, +0.0000026079,0.0000025979,0.0000025878,0.0000025857,0.0000025777, +0.0000025537,0.0000025316,0.0000025222,0.0000025143,0.0000025015, +0.0000024866,0.0000024716,0.0000024576,0.0000024477,0.0000024420, +0.0000024384,0.0000024365,0.0000024364,0.0000024368,0.0000024371, +0.0000024369,0.0000024356,0.0000024328,0.0000024295,0.0000024269, +0.0000024264,0.0000024269,0.0000024277,0.0000024299,0.0000024344, +0.0000024421,0.0000024503,0.0000024538,0.0000024547,0.0000024600, +0.0000024701,0.0000024852,0.0000025292,0.0000025903,0.0000026197, +0.0000026280,0.0000026383,0.0000026485,0.0000026566,0.0000026576, +0.0000026458,0.0000026306,0.0000026180,0.0000026026,0.0000025832, +0.0000025608,0.0000025576,0.0000025629,0.0000025459,0.0000025352, +0.0000025473,0.0000026059,0.0000026754,0.0000027322,0.0000027726, +0.0000027784,0.0000027761,0.0000027751,0.0000027723,0.0000027686, +0.0000027623,0.0000027516,0.0000027501,0.0000027531,0.0000027561, +0.0000027598,0.0000027635,0.0000027557,0.0000027484,0.0000027472, +0.0000027497,0.0000027508,0.0000027438,0.0000027348,0.0000027362, +0.0000027428,0.0000027477,0.0000027494,0.0000027501,0.0000027485, +0.0000027420,0.0000027345,0.0000027295,0.0000027278,0.0000027221, +0.0000027250,0.0000027289,0.0000027316,0.0000027336,0.0000027324, +0.0000027289,0.0000027242,0.0000027180,0.0000027100,0.0000027015, +0.0000026942,0.0000026888,0.0000026836,0.0000026777,0.0000026713, +0.0000026670,0.0000026670,0.0000026709,0.0000026746,0.0000026743, +0.0000026701,0.0000026684,0.0000026666,0.0000026607,0.0000026530, +0.0000026490,0.0000026502,0.0000026542,0.0000026573,0.0000026600, +0.0000026636,0.0000026675,0.0000026684,0.0000026666,0.0000026632, +0.0000026584,0.0000026511,0.0000026346,0.0000026082,0.0000025878, +0.0000025838,0.0000025858,0.0000025838,0.0000025759,0.0000025654, +0.0000025576,0.0000025517,0.0000025449,0.0000025377,0.0000025328, +0.0000025299,0.0000025297,0.0000025314,0.0000025366,0.0000025449, +0.0000025530,0.0000025571,0.0000025608,0.0000025599,0.0000025577, +0.0000025556,0.0000025544,0.0000025550,0.0000025565,0.0000025597, +0.0000025606,0.0000025609,0.0000025620,0.0000025597,0.0000025543, +0.0000025476,0.0000025422,0.0000025407,0.0000025436,0.0000025475, +0.0000025501,0.0000025510,0.0000025529,0.0000025569,0.0000025569, +0.0000025455,0.0000025449,0.0000025625,0.0000025688,0.0000025735, +0.0000025781,0.0000025812,0.0000025828,0.0000025805,0.0000025768, +0.0000025823,0.0000025868,0.0000025812,0.0000025715,0.0000025632, +0.0000025564,0.0000025507,0.0000025481,0.0000025479,0.0000025492, +0.0000025489,0.0000025398,0.0000025221,0.0000025075,0.0000025013, +0.0000024947,0.0000024807,0.0000024740,0.0000024835,0.0000025046, +0.0000025241,0.0000025308,0.0000025350,0.0000025296,0.0000025328, +0.0000025370,0.0000025185,0.0000025044,0.0000025046,0.0000025113, +0.0000025249,0.0000025282,0.0000025488,0.0000025986,0.0000026327, +0.0000026400,0.0000026368,0.0000026302,0.0000026204,0.0000026081, +0.0000025990,0.0000025956,0.0000025884,0.0000025769,0.0000025709, +0.0000025744,0.0000025855,0.0000025970,0.0000026017,0.0000026015, +0.0000026019,0.0000026061,0.0000026105,0.0000026137,0.0000026150, +0.0000026142,0.0000026123,0.0000026125,0.0000026124,0.0000026121, +0.0000026128,0.0000026178,0.0000026320,0.0000026443,0.0000026468, +0.0000026498,0.0000026578,0.0000026659,0.0000026688,0.0000026696, +0.0000026689,0.0000026649,0.0000026613,0.0000026619,0.0000026651, +0.0000026672,0.0000026691,0.0000026703,0.0000026703,0.0000026702, +0.0000026701,0.0000026721,0.0000026755,0.0000026801,0.0000026841, +0.0000026866,0.0000026885,0.0000026889,0.0000026878,0.0000026856, +0.0000026826,0.0000026797,0.0000026785,0.0000026804,0.0000026855, +0.0000026898,0.0000026933,0.0000026964,0.0000027009,0.0000027049, +0.0000027072,0.0000027087,0.0000027085,0.0000027075,0.0000027071, +0.0000027095,0.0000027119,0.0000027120,0.0000027091,0.0000027035, +0.0000026961,0.0000026886,0.0000026799,0.0000026731,0.0000026705, +0.0000026733,0.0000026830,0.0000026982,0.0000027150,0.0000027292, +0.0000027401,0.0000027503,0.0000027604,0.0000027669,0.0000027683, +0.0000027673,0.0000027653,0.0000027655,0.0000027692,0.0000027732, +0.0000027751,0.0000027787,0.0000027867,0.0000027948,0.0000027976, +0.0000027953,0.0000027879,0.0000027801,0.0000027758,0.0000027757, +0.0000027778,0.0000027799,0.0000027810,0.0000027826,0.0000027866, +0.0000027884,0.0000027867,0.0000027830,0.0000027801,0.0000027790, +0.0000027777,0.0000027754,0.0000027722,0.0000027680,0.0000027626, +0.0000027565,0.0000027492,0.0000027404,0.0000027306,0.0000027201, +0.0000027095,0.0000026992,0.0000026902,0.0000026827,0.0000026762, +0.0000026707,0.0000026680,0.0000026689,0.0000026719,0.0000026764, +0.0000026813,0.0000026857,0.0000026901,0.0000026941,0.0000026959, +0.0000026955,0.0000026959,0.0000027007,0.0000027087,0.0000027190, +0.0000027289,0.0000027362,0.0000027413,0.0000027446,0.0000027478, +0.0000027549,0.0000027691,0.0000027860,0.0000027984,0.0000028045, +0.0000028063,0.0000028056,0.0000028026,0.0000027988,0.0000027985, +0.0000028012,0.0000028052,0.0000028087,0.0000028109,0.0000028109, +0.0000028102,0.0000028116,0.0000028180,0.0000028277,0.0000028372, +0.0000028447,0.0000028490,0.0000028501,0.0000028471,0.0000028402, +0.0000028299,0.0000028175,0.0000028070,0.0000028001,0.0000027966, +0.0000027944,0.0000027923,0.0000027917,0.0000027943,0.0000027983, +0.0000027980,0.0000027925,0.0000027871,0.0000027826,0.0000027785, +0.0000027750,0.0000027746,0.0000027789,0.0000027850,0.0000027876, +0.0000027878,0.0000027930,0.0000028040,0.0000028120,0.0000028135, +0.0000028145,0.0000028176,0.0000028187,0.0000028157,0.0000028110, +0.0000028056,0.0000027993,0.0000027927,0.0000027842,0.0000027751, +0.0000027712,0.0000027713,0.0000027730,0.0000027819,0.0000027959, +0.0000028044,0.0000028064,0.0000028074,0.0000028103,0.0000028121, +0.0000028098,0.0000028049,0.0000028012,0.0000027976,0.0000027932, +0.0000027884,0.0000027836,0.0000027778,0.0000027715,0.0000027654, +0.0000027608,0.0000027579,0.0000027569,0.0000027565,0.0000027559, +0.0000027556,0.0000027559,0.0000027562,0.0000027560,0.0000027555, +0.0000027561,0.0000027558,0.0000027535,0.0000027511,0.0000027494, +0.0000027492,0.0000027514,0.0000027545,0.0000027577,0.0000027605, +0.0000027646,0.0000027695,0.0000027736,0.0000027764,0.0000027779, +0.0000027790,0.0000027799,0.0000027805,0.0000027806,0.0000027810, +0.0000027806,0.0000027800,0.0000027794,0.0000027804,0.0000027809, +0.0000027801,0.0000027765,0.0000027695,0.0000027559,0.0000027340, +0.0000027096,0.0000026874,0.0000026683,0.0000026536,0.0000026448, +0.0000026413,0.0000026406,0.0000026387,0.0000026398,0.0000026478, +0.0000026623,0.0000026754,0.0000026862,0.0000026936,0.0000026973, +0.0000026984,0.0000026977,0.0000026961,0.0000026936,0.0000026856, +0.0000026762,0.0000026684,0.0000026636,0.0000026601,0.0000026588, +0.0000026600,0.0000026626,0.0000026670,0.0000026733,0.0000026790, +0.0000026828,0.0000026841,0.0000026852,0.0000026881,0.0000026928, +0.0000027008,0.0000027098,0.0000027135,0.0000027112,0.0000027073, +0.0000027026,0.0000026969,0.0000026913,0.0000026907,0.0000026903, +0.0000026914,0.0000026969,0.0000027014,0.0000027011,0.0000026820, +0.0000026361,0.0000026077,0.0000026092,0.0000026304,0.0000026686, +0.0000026892,0.0000026940,0.0000027132,0.0000027635,0.0000028131, +0.0000028295,0.0000028293,0.0000028281,0.0000028327,0.0000028385, +0.0000028410,0.0000028387,0.0000028348,0.0000028297,0.0000028247, +0.0000028219,0.0000028213,0.0000028215,0.0000028219,0.0000028201, +0.0000028190,0.0000028198,0.0000028212,0.0000028194,0.0000028149, +0.0000028085,0.0000028017,0.0000027980,0.0000027978,0.0000027980, +0.0000027965,0.0000027953,0.0000027923,0.0000027856,0.0000027816, +0.0000027833,0.0000027953,0.0000028148,0.0000028291,0.0000028323, +0.0000028221,0.0000028144,0.0000028140,0.0000028128,0.0000028211, +0.0000028134,0.0000028159,0.0000028321,0.0000028436,0.0000028530, +0.0000028614,0.0000028715,0.0000028746,0.0000028783,0.0000028870, +0.0000028891,0.0000028833,0.0000028774,0.0000028725,0.0000028689, +0.0000028657,0.0000028610,0.0000028545,0.0000028482,0.0000028411, +0.0000028343,0.0000028288,0.0000028251,0.0000028240,0.0000028240, +0.0000028233,0.0000028199,0.0000028142,0.0000028005,0.0000027780, +0.0000027590,0.0000027470,0.0000027360,0.0000027239,0.0000027148, +0.0000027112,0.0000027140,0.0000027246,0.0000027405,0.0000027584, +0.0000027697,0.0000027714,0.0000027692,0.0000027691,0.0000027724, +0.0000027764,0.0000027765,0.0000027751,0.0000027753,0.0000027763, +0.0000027755,0.0000027735,0.0000027730,0.0000027730,0.0000027675, +0.0000027516,0.0000027342,0.0000027177,0.0000026960,0.0000026741, +0.0000026583,0.0000026454,0.0000026307,0.0000026169,0.0000026083, +0.0000026058,0.0000026061,0.0000026056,0.0000026034,0.0000026000, +0.0000025967,0.0000025945,0.0000025934,0.0000025945,0.0000025996, +0.0000026083,0.0000026188,0.0000026290,0.0000026380,0.0000026455, +0.0000026514,0.0000026558,0.0000026571,0.0000026566,0.0000026563, +0.0000026586,0.0000026639,0.0000026719,0.0000026806,0.0000026862, +0.0000026865,0.0000026817,0.0000026753,0.0000026726,0.0000026746, +0.0000026817,0.0000026918,0.0000027023,0.0000027107,0.0000027154, +0.0000027169,0.0000027173,0.0000027177,0.0000027183,0.0000027194, +0.0000027193,0.0000027133,0.0000027027,0.0000026907,0.0000026814, +0.0000026764,0.0000026764,0.0000026803,0.0000026885,0.0000026966, +0.0000027020,0.0000027050,0.0000027075,0.0000027126,0.0000027204, +0.0000027268,0.0000027287,0.0000027265,0.0000027234,0.0000027237, +0.0000027294,0.0000027372,0.0000027418,0.0000027441,0.0000027489, +0.0000027557,0.0000027615,0.0000027670,0.0000027748,0.0000027836, +0.0000027879,0.0000027870,0.0000027845,0.0000027808,0.0000027776, +0.0000027767,0.0000027763,0.0000027723,0.0000027636,0.0000027533, +0.0000027473,0.0000027468,0.0000027519,0.0000027581,0.0000027620, +0.0000027620,0.0000027607,0.0000027614,0.0000027641,0.0000027658, +0.0000027647,0.0000027613,0.0000027568,0.0000027545,0.0000027549, +0.0000027574,0.0000027611,0.0000027648,0.0000027667,0.0000027668, +0.0000027650,0.0000027621,0.0000027583,0.0000027536,0.0000027485, +0.0000027439,0.0000027391,0.0000027331,0.0000027266,0.0000027207, +0.0000027139,0.0000027060,0.0000026978,0.0000026910,0.0000026867, +0.0000026868,0.0000026920,0.0000026989,0.0000027026,0.0000027032, +0.0000027018,0.0000026985,0.0000026933,0.0000026881,0.0000026863, +0.0000026879,0.0000026904,0.0000026905,0.0000026890,0.0000026883, +0.0000026898,0.0000026943,0.0000026994,0.0000027023,0.0000027016, +0.0000026986,0.0000026962,0.0000026943,0.0000026915,0.0000026874, +0.0000026828,0.0000026781,0.0000026735,0.0000026700,0.0000026682, +0.0000026664,0.0000026634,0.0000026592,0.0000026541,0.0000026485, +0.0000026421,0.0000026352,0.0000026294,0.0000026261,0.0000026247, +0.0000026240,0.0000026234,0.0000026230,0.0000026227,0.0000026213, +0.0000026185,0.0000026164,0.0000026139,0.0000026111,0.0000026086, +0.0000026078,0.0000026102,0.0000026130,0.0000026155,0.0000026168, +0.0000026160,0.0000026121,0.0000026078,0.0000026050,0.0000026026, +0.0000026005,0.0000025985,0.0000025978,0.0000025991,0.0000026018, +0.0000026047,0.0000026054,0.0000026051,0.0000026041,0.0000026015, +0.0000025969,0.0000025927,0.0000025890,0.0000025778,0.0000025572, +0.0000025397,0.0000025366,0.0000025435,0.0000025497,0.0000025503, +0.0000025419,0.0000025246,0.0000025055,0.0000024928,0.0000024951, +0.0000025171,0.0000025471,0.0000025683,0.0000025783,0.0000025868, +0.0000026138,0.0000026563,0.0000026953,0.0000027342,0.0000027623, +0.0000027609,0.0000027535,0.0000027539,0.0000027536,0.0000027538, +0.0000027584,0.0000027615,0.0000027514,0.0000027322,0.0000027257, +0.0000027282,0.0000027301,0.0000027310,0.0000027293,0.0000027234, +0.0000027172,0.0000027133,0.0000027109,0.0000027076,0.0000027040, +0.0000027014,0.0000027000,0.0000026984,0.0000026960,0.0000026932, +0.0000026918,0.0000026940,0.0000026972,0.0000026950,0.0000026931, +0.0000027001,0.0000027204,0.0000027405,0.0000027475,0.0000027464, +0.0000027423,0.0000027361,0.0000027303,0.0000027276,0.0000027265, +0.0000027261,0.0000027255,0.0000027263,0.0000027298,0.0000027329, +0.0000027345,0.0000027334,0.0000027308,0.0000027255,0.0000027178, +0.0000027083,0.0000026980,0.0000026909,0.0000026926,0.0000027019, +0.0000027092,0.0000027127,0.0000027180,0.0000027193,0.0000027138, +0.0000027001,0.0000026831,0.0000026756,0.0000026735,0.0000026712, +0.0000026674,0.0000026646,0.0000026649,0.0000026650,0.0000026649, +0.0000026666,0.0000026682,0.0000026650,0.0000026608,0.0000026585, +0.0000026556,0.0000026511,0.0000026463,0.0000026404,0.0000026319, +0.0000026252,0.0000026239,0.0000026251,0.0000026248,0.0000026223, +0.0000026192,0.0000026171,0.0000026155,0.0000026136,0.0000026116, +0.0000026094,0.0000026072,0.0000026049,0.0000026033,0.0000026027, +0.0000026020,0.0000025969,0.0000025882,0.0000025838,0.0000025835, +0.0000025730,0.0000025482,0.0000025295,0.0000025213,0.0000025121, +0.0000024996,0.0000024870,0.0000024736,0.0000024595,0.0000024483, +0.0000024407,0.0000024356,0.0000024328,0.0000024318,0.0000024316, +0.0000024314,0.0000024306,0.0000024285,0.0000024260,0.0000024242, +0.0000024242,0.0000024257,0.0000024268,0.0000024264,0.0000024252, +0.0000024241,0.0000024261,0.0000024345,0.0000024448,0.0000024492, +0.0000024542,0.0000024666,0.0000024782,0.0000025085,0.0000025685, +0.0000026095,0.0000026212,0.0000026308,0.0000026424,0.0000026503, +0.0000026520,0.0000026459,0.0000026323,0.0000026203,0.0000026056, +0.0000025885,0.0000025696,0.0000025553,0.0000025626,0.0000025598, +0.0000025384,0.0000025405,0.0000025855,0.0000026607,0.0000027251, +0.0000027705,0.0000027781,0.0000027756,0.0000027738,0.0000027709, +0.0000027699,0.0000027631,0.0000027516,0.0000027515,0.0000027547, +0.0000027581,0.0000027636,0.0000027652,0.0000027563,0.0000027482, +0.0000027460,0.0000027481,0.0000027503,0.0000027454,0.0000027375, +0.0000027373,0.0000027430,0.0000027480,0.0000027503,0.0000027508, +0.0000027506,0.0000027464,0.0000027385,0.0000027301,0.0000027239, +0.0000027143,0.0000027150,0.0000027186,0.0000027213,0.0000027255, +0.0000027273,0.0000027271,0.0000027255,0.0000027229,0.0000027172, +0.0000027086,0.0000026989,0.0000026914,0.0000026880,0.0000026863, +0.0000026824,0.0000026753,0.0000026688,0.0000026684,0.0000026728, +0.0000026771,0.0000026752,0.0000026706,0.0000026689,0.0000026682, +0.0000026635,0.0000026567,0.0000026527,0.0000026533,0.0000026554, +0.0000026589,0.0000026633,0.0000026685,0.0000026711,0.0000026710, +0.0000026678,0.0000026596,0.0000026448,0.0000026191,0.0000025923, +0.0000025811,0.0000025810,0.0000025800,0.0000025726,0.0000025622, +0.0000025544,0.0000025497,0.0000025430,0.0000025353,0.0000025324, +0.0000025329,0.0000025343,0.0000025362,0.0000025389,0.0000025437, +0.0000025482,0.0000025521,0.0000025524,0.0000025485,0.0000025417, +0.0000025344,0.0000025270,0.0000025223,0.0000025220,0.0000025248, +0.0000025303,0.0000025383,0.0000025482,0.0000025582,0.0000025663, +0.0000025687,0.0000025653,0.0000025567,0.0000025460,0.0000025393, +0.0000025384,0.0000025423,0.0000025470,0.0000025504,0.0000025525, +0.0000025527,0.0000025464,0.0000025402,0.0000025553,0.0000025706, +0.0000025743,0.0000025789,0.0000025826,0.0000025841,0.0000025835, +0.0000025772,0.0000025731,0.0000025794,0.0000025828,0.0000025772, +0.0000025691,0.0000025600,0.0000025505,0.0000025429,0.0000025393, +0.0000025400,0.0000025447,0.0000025490,0.0000025481,0.0000025352, +0.0000025146,0.0000025012,0.0000024955,0.0000024852,0.0000024764, +0.0000024799,0.0000024968,0.0000025201,0.0000025293,0.0000025338, +0.0000025306,0.0000025269,0.0000025331,0.0000025227,0.0000025032, +0.0000024986,0.0000025011,0.0000025153,0.0000025268,0.0000025341, +0.0000025735,0.0000026200,0.0000026381,0.0000026379,0.0000026343, +0.0000026267,0.0000026143,0.0000026011,0.0000025934,0.0000025865, +0.0000025757,0.0000025688,0.0000025716,0.0000025827,0.0000025961, +0.0000026024,0.0000026026,0.0000026013,0.0000026029,0.0000026067, +0.0000026108,0.0000026123,0.0000026109,0.0000026100,0.0000026106, +0.0000026112,0.0000026117,0.0000026137,0.0000026218,0.0000026373, +0.0000026464,0.0000026465,0.0000026462,0.0000026510,0.0000026583, +0.0000026628,0.0000026652,0.0000026651,0.0000026627,0.0000026619, +0.0000026655,0.0000026698,0.0000026725,0.0000026752,0.0000026764, +0.0000026764,0.0000026769,0.0000026785,0.0000026810,0.0000026830, +0.0000026845,0.0000026855,0.0000026852,0.0000026840,0.0000026818, +0.0000026789,0.0000026756,0.0000026723,0.0000026694,0.0000026681, +0.0000026701,0.0000026762,0.0000026821,0.0000026859,0.0000026890, +0.0000026931,0.0000026974,0.0000027012,0.0000027044,0.0000027061, +0.0000027069,0.0000027085,0.0000027125,0.0000027161,0.0000027168, +0.0000027138,0.0000027050,0.0000026922,0.0000026790,0.0000026675, +0.0000026617,0.0000026611,0.0000026664,0.0000026763,0.0000026891, +0.0000027025,0.0000027149,0.0000027265,0.0000027389,0.0000027515, +0.0000027613,0.0000027662,0.0000027673,0.0000027675,0.0000027681, +0.0000027697,0.0000027709,0.0000027706,0.0000027713,0.0000027768, +0.0000027849,0.0000027893,0.0000027879,0.0000027828,0.0000027774, +0.0000027737,0.0000027715,0.0000027707,0.0000027723,0.0000027755, +0.0000027779,0.0000027796,0.0000027790,0.0000027746,0.0000027680, +0.0000027623,0.0000027580,0.0000027547,0.0000027519,0.0000027492, +0.0000027449,0.0000027387,0.0000027320,0.0000027253,0.0000027175, +0.0000027088,0.0000026991,0.0000026891,0.0000026797,0.0000026711, +0.0000026639,0.0000026576,0.0000026513,0.0000026454,0.0000026435, +0.0000026446,0.0000026473,0.0000026502,0.0000026533,0.0000026578, +0.0000026630,0.0000026665,0.0000026676,0.0000026689,0.0000026730, +0.0000026800,0.0000026902,0.0000027030,0.0000027154,0.0000027264, +0.0000027345,0.0000027388,0.0000027412,0.0000027477,0.0000027631, +0.0000027826,0.0000027967,0.0000028034,0.0000028053,0.0000028045, +0.0000028010,0.0000027980,0.0000027964,0.0000027970,0.0000028000, +0.0000028043,0.0000028061,0.0000028037,0.0000027995,0.0000028000, +0.0000028075,0.0000028192,0.0000028302,0.0000028370,0.0000028403, +0.0000028414,0.0000028414,0.0000028372,0.0000028304,0.0000028216, +0.0000028108,0.0000028005,0.0000027928,0.0000027884,0.0000027877, +0.0000027902,0.0000027938,0.0000027936,0.0000027890,0.0000027855, +0.0000027835,0.0000027803,0.0000027741,0.0000027680,0.0000027675, +0.0000027738,0.0000027829,0.0000027888,0.0000027916,0.0000027967, +0.0000028069,0.0000028153,0.0000028168,0.0000028165,0.0000028178, +0.0000028193,0.0000028182,0.0000028148,0.0000028087,0.0000028009, +0.0000027929,0.0000027828,0.0000027726,0.0000027680,0.0000027677, +0.0000027700,0.0000027806,0.0000027933,0.0000027994,0.0000028016, +0.0000028052,0.0000028095,0.0000028103,0.0000028063,0.0000028017, +0.0000027986,0.0000027952,0.0000027900,0.0000027850,0.0000027812, +0.0000027776,0.0000027736,0.0000027703,0.0000027679,0.0000027662, +0.0000027647,0.0000027630,0.0000027609,0.0000027589,0.0000027573, +0.0000027556,0.0000027534,0.0000027514,0.0000027496,0.0000027466, +0.0000027425,0.0000027400,0.0000027400,0.0000027427,0.0000027477, +0.0000027523,0.0000027556,0.0000027586,0.0000027622,0.0000027657, +0.0000027689,0.0000027709,0.0000027723,0.0000027742,0.0000027763, +0.0000027785,0.0000027799,0.0000027805,0.0000027803,0.0000027799, +0.0000027797,0.0000027808,0.0000027808,0.0000027796,0.0000027759, +0.0000027687,0.0000027556,0.0000027352,0.0000027138,0.0000026954, +0.0000026783,0.0000026628,0.0000026523,0.0000026457,0.0000026409, +0.0000026364,0.0000026368,0.0000026419,0.0000026549,0.0000026662, +0.0000026765,0.0000026844,0.0000026895,0.0000026918,0.0000026925, +0.0000026926,0.0000026903,0.0000026836,0.0000026770,0.0000026703, +0.0000026654,0.0000026610,0.0000026573,0.0000026555,0.0000026549, +0.0000026569,0.0000026621,0.0000026681,0.0000026728,0.0000026752, +0.0000026769,0.0000026795,0.0000026823,0.0000026893,0.0000027010, +0.0000027092,0.0000027099,0.0000027068,0.0000027032,0.0000026975, +0.0000026893,0.0000026851,0.0000026852,0.0000026877,0.0000026951, +0.0000027027,0.0000027051,0.0000027017,0.0000026733,0.0000026216, +0.0000026024,0.0000026107,0.0000026375,0.0000026729,0.0000026886, +0.0000026993,0.0000027278,0.0000027801,0.0000028174,0.0000028281, +0.0000028276,0.0000028276,0.0000028319,0.0000028356,0.0000028349, +0.0000028319,0.0000028270,0.0000028215,0.0000028180,0.0000028175, +0.0000028180,0.0000028183,0.0000028159,0.0000028141,0.0000028145, +0.0000028157,0.0000028137,0.0000028106,0.0000028060,0.0000028011, +0.0000027982,0.0000027969,0.0000027976,0.0000027973,0.0000027966, +0.0000027957,0.0000027899,0.0000027818,0.0000027791,0.0000027846, +0.0000028027,0.0000028225,0.0000028330,0.0000028294,0.0000028170, +0.0000028146,0.0000028115,0.0000028146,0.0000028145,0.0000028074, +0.0000028200,0.0000028348,0.0000028460,0.0000028542,0.0000028632, +0.0000028728,0.0000028740,0.0000028768,0.0000028829,0.0000028830, +0.0000028785,0.0000028730,0.0000028682,0.0000028631,0.0000028565, +0.0000028486,0.0000028423,0.0000028378,0.0000028344,0.0000028310, +0.0000028269,0.0000028247,0.0000028238,0.0000028206,0.0000028156, +0.0000028061,0.0000027863,0.0000027651,0.0000027536,0.0000027478, +0.0000027388,0.0000027271,0.0000027172,0.0000027125,0.0000027151, +0.0000027283,0.0000027481,0.0000027673,0.0000027783,0.0000027798, +0.0000027774,0.0000027770,0.0000027806,0.0000027853,0.0000027849, +0.0000027811,0.0000027784,0.0000027762,0.0000027726,0.0000027700, +0.0000027700,0.0000027699,0.0000027630,0.0000027469,0.0000027297, +0.0000027119,0.0000026884,0.0000026654,0.0000026485,0.0000026329, +0.0000026158,0.0000026026,0.0000025969,0.0000025967,0.0000025987, +0.0000025995,0.0000025976,0.0000025937,0.0000025897,0.0000025864, +0.0000025842,0.0000025838,0.0000025859,0.0000025909,0.0000025992, +0.0000026111,0.0000026242,0.0000026355,0.0000026445,0.0000026522, +0.0000026583,0.0000026618,0.0000026629,0.0000026616,0.0000026605, +0.0000026611,0.0000026657,0.0000026726,0.0000026781,0.0000026794, +0.0000026759,0.0000026694,0.0000026656,0.0000026667,0.0000026730, +0.0000026830,0.0000026932,0.0000027014,0.0000027066,0.0000027093, +0.0000027105,0.0000027118,0.0000027146,0.0000027189,0.0000027220, +0.0000027224,0.0000027210,0.0000027140,0.0000027046,0.0000026939, +0.0000026835,0.0000026758,0.0000026731,0.0000026753,0.0000026828, +0.0000026926,0.0000027006,0.0000027073,0.0000027141,0.0000027207, +0.0000027249,0.0000027256,0.0000027232,0.0000027203,0.0000027196, +0.0000027230,0.0000027305,0.0000027386,0.0000027447,0.0000027487, +0.0000027514,0.0000027528,0.0000027547,0.0000027594,0.0000027662, +0.0000027735,0.0000027790,0.0000027801,0.0000027806,0.0000027826, +0.0000027850,0.0000027852,0.0000027809,0.0000027707,0.0000027583, +0.0000027501,0.0000027497,0.0000027544,0.0000027600,0.0000027615, +0.0000027589,0.0000027550,0.0000027543,0.0000027563,0.0000027590, +0.0000027593,0.0000027575,0.0000027559,0.0000027547,0.0000027545, +0.0000027564,0.0000027608,0.0000027654,0.0000027679,0.0000027693, +0.0000027691,0.0000027677,0.0000027648,0.0000027611,0.0000027569, +0.0000027520,0.0000027458,0.0000027404,0.0000027371,0.0000027333, +0.0000027278,0.0000027207,0.0000027127,0.0000027049,0.0000026996, +0.0000027000,0.0000027049,0.0000027098,0.0000027114,0.0000027105, +0.0000027071,0.0000027019,0.0000026962,0.0000026927,0.0000026922, +0.0000026932,0.0000026928,0.0000026912,0.0000026905,0.0000026917, +0.0000026948,0.0000026985,0.0000027005,0.0000026997,0.0000026973, +0.0000026955,0.0000026943,0.0000026918,0.0000026879,0.0000026838, +0.0000026798,0.0000026761,0.0000026732,0.0000026715,0.0000026705, +0.0000026697,0.0000026684,0.0000026673,0.0000026662,0.0000026634, +0.0000026581,0.0000026513,0.0000026456,0.0000026415,0.0000026379, +0.0000026350,0.0000026329,0.0000026313,0.0000026292,0.0000026260, +0.0000026223,0.0000026187,0.0000026152,0.0000026135,0.0000026141, +0.0000026163,0.0000026188,0.0000026202,0.0000026197,0.0000026176, +0.0000026128,0.0000026069,0.0000026015,0.0000025969,0.0000025937, +0.0000025923,0.0000025927,0.0000025946,0.0000025982,0.0000026024, +0.0000026041,0.0000026037,0.0000026023,0.0000025991,0.0000025936, +0.0000025876,0.0000025835,0.0000025777,0.0000025627,0.0000025428, +0.0000025324,0.0000025356,0.0000025442,0.0000025479,0.0000025436, +0.0000025272,0.0000025047,0.0000024877,0.0000024838,0.0000024981, +0.0000025306,0.0000025611,0.0000025769,0.0000025849,0.0000026085, +0.0000026518,0.0000026939,0.0000027350,0.0000027648,0.0000027643, +0.0000027553,0.0000027535,0.0000027518,0.0000027531,0.0000027593, +0.0000027600,0.0000027455,0.0000027298,0.0000027282,0.0000027330, +0.0000027336,0.0000027319,0.0000027295,0.0000027251,0.0000027203, +0.0000027171,0.0000027165,0.0000027151,0.0000027122,0.0000027102, +0.0000027081,0.0000027041,0.0000026980,0.0000026933,0.0000026916, +0.0000026918,0.0000026950,0.0000026982,0.0000026986,0.0000026980, +0.0000027055,0.0000027246,0.0000027414,0.0000027464,0.0000027455, +0.0000027418,0.0000027374,0.0000027335,0.0000027312,0.0000027302, +0.0000027309,0.0000027329,0.0000027358,0.0000027363,0.0000027352, +0.0000027315,0.0000027252,0.0000027167,0.0000027084,0.0000027007, +0.0000026924,0.0000026865,0.0000026885,0.0000027001,0.0000027093, +0.0000027133,0.0000027190,0.0000027206,0.0000027123,0.0000026979, +0.0000026837,0.0000026772,0.0000026754,0.0000026734,0.0000026700, +0.0000026674,0.0000026675,0.0000026659,0.0000026652,0.0000026673, +0.0000026676,0.0000026632,0.0000026586,0.0000026564,0.0000026531, +0.0000026484,0.0000026441,0.0000026397,0.0000026332,0.0000026270, +0.0000026255,0.0000026262,0.0000026256,0.0000026230,0.0000026204, +0.0000026185,0.0000026155,0.0000026109,0.0000026064,0.0000026033, +0.0000026013,0.0000025996,0.0000025969,0.0000025940,0.0000025916, +0.0000025880,0.0000025824,0.0000025785,0.0000025796,0.0000025804, +0.0000025674,0.0000025433,0.0000025273,0.0000025193,0.0000025094, +0.0000024987,0.0000024888,0.0000024767,0.0000024620,0.0000024485, +0.0000024384,0.0000024318,0.0000024282,0.0000024257,0.0000024232, +0.0000024208,0.0000024180,0.0000024146,0.0000024118,0.0000024113, +0.0000024130,0.0000024160,0.0000024186,0.0000024197,0.0000024202, +0.0000024204,0.0000024196,0.0000024223,0.0000024323,0.0000024428, +0.0000024491,0.0000024617,0.0000024742,0.0000024936,0.0000025435, +0.0000025948,0.0000026139,0.0000026221,0.0000026352,0.0000026449, +0.0000026486,0.0000026456,0.0000026352,0.0000026216,0.0000026090, +0.0000025933,0.0000025800,0.0000025624,0.0000025581,0.0000025648, +0.0000025460,0.0000025412,0.0000025718,0.0000026498,0.0000027191, +0.0000027676,0.0000027774,0.0000027748,0.0000027718,0.0000027707, +0.0000027719,0.0000027631,0.0000027524,0.0000027537,0.0000027566, +0.0000027603,0.0000027670,0.0000027673,0.0000027583,0.0000027498, +0.0000027463,0.0000027473,0.0000027499,0.0000027472,0.0000027400, +0.0000027383,0.0000027436,0.0000027488,0.0000027513,0.0000027525, +0.0000027523,0.0000027501,0.0000027431,0.0000027318,0.0000027203, +0.0000027099,0.0000027079,0.0000027086,0.0000027092,0.0000027122, +0.0000027162,0.0000027199,0.0000027226,0.0000027233,0.0000027221, +0.0000027161,0.0000027069,0.0000026972,0.0000026925,0.0000026919, +0.0000026916,0.0000026884,0.0000026807,0.0000026740,0.0000026717, +0.0000026751,0.0000026795,0.0000026769,0.0000026708,0.0000026693, +0.0000026701,0.0000026668,0.0000026606,0.0000026566,0.0000026564, +0.0000026595,0.0000026656,0.0000026724,0.0000026765,0.0000026773, +0.0000026729,0.0000026609,0.0000026372,0.0000026042,0.0000025817, +0.0000025772,0.0000025758,0.0000025706,0.0000025602,0.0000025513, +0.0000025463,0.0000025398,0.0000025315,0.0000025301,0.0000025338, +0.0000025375,0.0000025390,0.0000025402,0.0000025423,0.0000025446, +0.0000025451,0.0000025426,0.0000025365,0.0000025265,0.0000025148, +0.0000025039,0.0000024945,0.0000024876,0.0000024837,0.0000024826, +0.0000024844,0.0000024893,0.0000024998,0.0000025155,0.0000025339, +0.0000025525,0.0000025647,0.0000025687,0.0000025654,0.0000025542, +0.0000025431,0.0000025372,0.0000025379,0.0000025408,0.0000025437, +0.0000025450,0.0000025436,0.0000025410,0.0000025502,0.0000025715, +0.0000025768,0.0000025783,0.0000025829,0.0000025854,0.0000025855, +0.0000025804,0.0000025730,0.0000025702,0.0000025764,0.0000025781, +0.0000025727,0.0000025651,0.0000025557,0.0000025462,0.0000025387, +0.0000025331,0.0000025331,0.0000025383,0.0000025456,0.0000025494, +0.0000025452,0.0000025269,0.0000025057,0.0000024957,0.0000024889, +0.0000024811,0.0000024785,0.0000024887,0.0000025136,0.0000025275, +0.0000025311,0.0000025321,0.0000025237,0.0000025267,0.0000025249, +0.0000025063,0.0000024955,0.0000024936,0.0000025046,0.0000025232, +0.0000025285,0.0000025497,0.0000025979,0.0000026295,0.0000026368, +0.0000026357,0.0000026315,0.0000026209,0.0000026063,0.0000025921, +0.0000025842,0.0000025758,0.0000025675,0.0000025683,0.0000025792, +0.0000025928,0.0000026001,0.0000026012,0.0000025998,0.0000026003, +0.0000026040,0.0000026084,0.0000026095,0.0000026093,0.0000026097, +0.0000026102,0.0000026102,0.0000026107,0.0000026141,0.0000026241, +0.0000026393,0.0000026464,0.0000026450,0.0000026424,0.0000026447, +0.0000026508,0.0000026564,0.0000026606,0.0000026627,0.0000026627, +0.0000026642,0.0000026689,0.0000026727,0.0000026750,0.0000026775, +0.0000026793,0.0000026800,0.0000026811,0.0000026825,0.0000026832, +0.0000026831,0.0000026819,0.0000026800,0.0000026780,0.0000026756, +0.0000026730,0.0000026698,0.0000026671,0.0000026649,0.0000026632, +0.0000026625,0.0000026641,0.0000026687,0.0000026746,0.0000026797, +0.0000026833,0.0000026867,0.0000026907,0.0000026953,0.0000026993, +0.0000027012,0.0000027025,0.0000027058,0.0000027105,0.0000027147, +0.0000027162,0.0000027135,0.0000027037,0.0000026875,0.0000026695, +0.0000026563,0.0000026525,0.0000026552,0.0000026629,0.0000026722, +0.0000026819,0.0000026914,0.0000027018,0.0000027140,0.0000027278, +0.0000027418,0.0000027542,0.0000027634,0.0000027689,0.0000027711, +0.0000027710,0.0000027700,0.0000027687,0.0000027673,0.0000027668, +0.0000027698,0.0000027758,0.0000027806,0.0000027816,0.0000027800, +0.0000027766,0.0000027719,0.0000027667,0.0000027637,0.0000027642, +0.0000027683,0.0000027702,0.0000027690,0.0000027665,0.0000027606, +0.0000027529,0.0000027444,0.0000027361,0.0000027296,0.0000027261, +0.0000027240,0.0000027206,0.0000027149,0.0000027092,0.0000027048, +0.0000027009,0.0000026962,0.0000026900,0.0000026828,0.0000026760, +0.0000026695,0.0000026631,0.0000026568,0.0000026498,0.0000026425, +0.0000026377,0.0000026360,0.0000026363,0.0000026365,0.0000026367, +0.0000026387,0.0000026427,0.0000026462,0.0000026480,0.0000026496, +0.0000026528,0.0000026580,0.0000026659,0.0000026769,0.0000026893, +0.0000027026,0.0000027157,0.0000027269,0.0000027344,0.0000027379, +0.0000027437,0.0000027584,0.0000027785,0.0000027945,0.0000028025, +0.0000028042,0.0000028024,0.0000027997,0.0000027959,0.0000027928, +0.0000027926,0.0000027962,0.0000028011,0.0000028017,0.0000027972, +0.0000027922,0.0000027920,0.0000027995,0.0000028115,0.0000028219, +0.0000028278,0.0000028309,0.0000028336,0.0000028345,0.0000028328, +0.0000028286,0.0000028211,0.0000028097,0.0000027981,0.0000027898, +0.0000027871,0.0000027879,0.0000027902,0.0000027895,0.0000027842, +0.0000027805,0.0000027799,0.0000027799,0.0000027763,0.0000027680, +0.0000027615,0.0000027629,0.0000027711,0.0000027814,0.0000027893, +0.0000027940,0.0000027996,0.0000028097,0.0000028184,0.0000028200, +0.0000028180,0.0000028179,0.0000028200,0.0000028208,0.0000028184, +0.0000028115,0.0000028022,0.0000027927,0.0000027814,0.0000027704, +0.0000027645,0.0000027636,0.0000027674,0.0000027788,0.0000027897, +0.0000027946,0.0000027983,0.0000028037,0.0000028076,0.0000028066, +0.0000028018,0.0000027972,0.0000027946,0.0000027909,0.0000027853, +0.0000027806,0.0000027780,0.0000027762,0.0000027750,0.0000027737, +0.0000027719,0.0000027694,0.0000027662,0.0000027634,0.0000027604, +0.0000027575,0.0000027547,0.0000027517,0.0000027484,0.0000027455, +0.0000027432,0.0000027393,0.0000027342,0.0000027311,0.0000027308, +0.0000027338,0.0000027394,0.0000027452,0.0000027504,0.0000027549, +0.0000027586,0.0000027614,0.0000027636,0.0000027656,0.0000027678, +0.0000027702,0.0000027728,0.0000027752,0.0000027767,0.0000027775, +0.0000027781,0.0000027783,0.0000027786,0.0000027794,0.0000027792, +0.0000027773,0.0000027735,0.0000027661,0.0000027539,0.0000027347, +0.0000027147,0.0000026987,0.0000026850,0.0000026732,0.0000026648, +0.0000026577,0.0000026514,0.0000026452,0.0000026423,0.0000026461, +0.0000026544,0.0000026621,0.0000026671,0.0000026729,0.0000026765, +0.0000026779,0.0000026790,0.0000026791,0.0000026771,0.0000026738, +0.0000026697,0.0000026653,0.0000026613,0.0000026562,0.0000026512, +0.0000026485,0.0000026476,0.0000026488,0.0000026523,0.0000026577, +0.0000026627,0.0000026658,0.0000026681,0.0000026707,0.0000026726, +0.0000026780,0.0000026901,0.0000027017,0.0000027059,0.0000027047, +0.0000027028,0.0000026987,0.0000026894,0.0000026810,0.0000026794, +0.0000026840,0.0000026925,0.0000027011,0.0000027056,0.0000027050, +0.0000026983,0.0000026559,0.0000026070,0.0000026011,0.0000026145, +0.0000026448,0.0000026764,0.0000026906,0.0000027070,0.0000027411, +0.0000027895,0.0000028180,0.0000028258,0.0000028253,0.0000028262, +0.0000028280,0.0000028277,0.0000028248,0.0000028198,0.0000028133, +0.0000028079,0.0000028069,0.0000028083,0.0000028096,0.0000028079, +0.0000028067,0.0000028078,0.0000028092,0.0000028071,0.0000028044, +0.0000028014,0.0000027993,0.0000027982,0.0000027966,0.0000027958, +0.0000027961,0.0000027970,0.0000027968,0.0000027937,0.0000027839, +0.0000027772,0.0000027783,0.0000027911,0.0000028132,0.0000028303, +0.0000028343,0.0000028232,0.0000028143,0.0000028134,0.0000028099, +0.0000028129,0.0000028055,0.0000028074,0.0000028244,0.0000028372, +0.0000028476,0.0000028550,0.0000028655,0.0000028730,0.0000028732, +0.0000028743,0.0000028762,0.0000028746,0.0000028699,0.0000028645, +0.0000028583,0.0000028511,0.0000028442,0.0000028395,0.0000028375, +0.0000028354,0.0000028319,0.0000028274,0.0000028242,0.0000028209, +0.0000028152,0.0000028070,0.0000027921,0.0000027715,0.0000027573, +0.0000027534,0.0000027517,0.0000027455,0.0000027310,0.0000027168, +0.0000027098,0.0000027109,0.0000027233,0.0000027439,0.0000027660, +0.0000027804,0.0000027853,0.0000027850,0.0000027850,0.0000027883, +0.0000027936,0.0000027941,0.0000027900,0.0000027861,0.0000027824, +0.0000027767,0.0000027706,0.0000027682,0.0000027655,0.0000027545, +0.0000027372,0.0000027213,0.0000027054,0.0000026832,0.0000026597, +0.0000026413,0.0000026248,0.0000026084,0.0000025968,0.0000025921, +0.0000025912,0.0000025909,0.0000025901,0.0000025883,0.0000025854, +0.0000025829,0.0000025811,0.0000025796,0.0000025777,0.0000025770, +0.0000025777,0.0000025795,0.0000025840,0.0000025950,0.0000026122, +0.0000026292,0.0000026406,0.0000026482,0.0000026555,0.0000026620, +0.0000026647,0.0000026637,0.0000026605,0.0000026581,0.0000026590, +0.0000026630,0.0000026667,0.0000026674,0.0000026637,0.0000026581, +0.0000026552,0.0000026568,0.0000026634,0.0000026732,0.0000026831, +0.0000026906,0.0000026955,0.0000026986,0.0000027009,0.0000027033, +0.0000027069,0.0000027125,0.0000027182,0.0000027215,0.0000027227, +0.0000027236,0.0000027247,0.0000027199,0.0000027096,0.0000026960, +0.0000026827,0.0000026730,0.0000026693,0.0000026722,0.0000026807, +0.0000026917,0.0000027024,0.0000027121,0.0000027200,0.0000027229, +0.0000027219,0.0000027186,0.0000027167,0.0000027167,0.0000027190, +0.0000027245,0.0000027321,0.0000027391,0.0000027430,0.0000027436, +0.0000027429,0.0000027429,0.0000027441,0.0000027482,0.0000027563, +0.0000027665,0.0000027765,0.0000027838,0.0000027879,0.0000027898, +0.0000027892,0.0000027847,0.0000027747,0.0000027628,0.0000027559, +0.0000027563,0.0000027602,0.0000027618,0.0000027594,0.0000027544, +0.0000027509,0.0000027506,0.0000027523,0.0000027537,0.0000027542, +0.0000027546,0.0000027547,0.0000027540,0.0000027544,0.0000027574, +0.0000027618,0.0000027663,0.0000027701,0.0000027725,0.0000027730, +0.0000027716,0.0000027697,0.0000027673,0.0000027634,0.0000027578, +0.0000027521,0.0000027485,0.0000027456,0.0000027425,0.0000027387, +0.0000027339,0.0000027281,0.0000027232,0.0000027219,0.0000027245, +0.0000027282,0.0000027296,0.0000027286,0.0000027245,0.0000027186, +0.0000027124,0.0000027068,0.0000027026,0.0000026991,0.0000026955, +0.0000026922,0.0000026914,0.0000026927,0.0000026948,0.0000026962, +0.0000026964,0.0000026946,0.0000026919,0.0000026902,0.0000026895, +0.0000026879,0.0000026850,0.0000026817,0.0000026782,0.0000026747, +0.0000026719,0.0000026706,0.0000026697,0.0000026682,0.0000026663, +0.0000026655,0.0000026661,0.0000026665,0.0000026642,0.0000026621, +0.0000026594,0.0000026561,0.0000026526,0.0000026483,0.0000026443, +0.0000026411,0.0000026378,0.0000026341,0.0000026302,0.0000026264, +0.0000026231,0.0000026219,0.0000026235,0.0000026255,0.0000026270, +0.0000026271,0.0000026254,0.0000026225,0.0000026177,0.0000026105, +0.0000026031,0.0000025966,0.0000025914,0.0000025897,0.0000025905, +0.0000025922,0.0000025943,0.0000025969,0.0000025996,0.0000026004, +0.0000026000,0.0000025976,0.0000025919,0.0000025846,0.0000025792, +0.0000025750,0.0000025649,0.0000025468,0.0000025320,0.0000025295, +0.0000025369,0.0000025447,0.0000025441,0.0000025298,0.0000025052, +0.0000024831,0.0000024744,0.0000024810,0.0000025117,0.0000025509, +0.0000025745,0.0000025837,0.0000026034,0.0000026463,0.0000026909, +0.0000027333,0.0000027652,0.0000027675,0.0000027586,0.0000027535, +0.0000027500,0.0000027521,0.0000027589,0.0000027565,0.0000027416, +0.0000027303,0.0000027317,0.0000027381,0.0000027391,0.0000027369, +0.0000027337,0.0000027297,0.0000027259,0.0000027225,0.0000027218, +0.0000027220,0.0000027191,0.0000027165,0.0000027156,0.0000027118, +0.0000027036,0.0000026954,0.0000026917,0.0000026915,0.0000026925, +0.0000026962,0.0000027023,0.0000027038,0.0000027026,0.0000027090, +0.0000027254,0.0000027400,0.0000027448,0.0000027441,0.0000027425, +0.0000027399,0.0000027379,0.0000027371,0.0000027370,0.0000027384, +0.0000027392,0.0000027372,0.0000027319,0.0000027248,0.0000027166, +0.0000027086,0.0000027029,0.0000026997,0.0000026934,0.0000026872, +0.0000026870,0.0000026983,0.0000027085,0.0000027129,0.0000027186, +0.0000027203,0.0000027099,0.0000026959,0.0000026862,0.0000026801, +0.0000026776,0.0000026751,0.0000026730,0.0000026718,0.0000026707, +0.0000026670,0.0000026659,0.0000026678,0.0000026667,0.0000026608, +0.0000026558,0.0000026529,0.0000026493,0.0000026444,0.0000026411, +0.0000026388,0.0000026343,0.0000026289,0.0000026266,0.0000026267, +0.0000026258,0.0000026230,0.0000026207,0.0000026178,0.0000026120, +0.0000026037,0.0000025958,0.0000025905,0.0000025886,0.0000025887, +0.0000025888,0.0000025871,0.0000025842,0.0000025808,0.0000025765, +0.0000025730,0.0000025725,0.0000025753,0.0000025751,0.0000025600, +0.0000025375,0.0000025238,0.0000025156,0.0000025059,0.0000024974, +0.0000024893,0.0000024769,0.0000024611,0.0000024462,0.0000024349, +0.0000024270,0.0000024217,0.0000024168,0.0000024112,0.0000024055, +0.0000024003,0.0000023960,0.0000023936,0.0000023941,0.0000023969, +0.0000024007,0.0000024039,0.0000024059,0.0000024080,0.0000024113, +0.0000024155,0.0000024168,0.0000024205,0.0000024335,0.0000024443, +0.0000024563,0.0000024715,0.0000024842,0.0000025179,0.0000025728, +0.0000026041,0.0000026134,0.0000026255,0.0000026385,0.0000026442, +0.0000026436,0.0000026379,0.0000026246,0.0000026121,0.0000025996, +0.0000025885,0.0000025719,0.0000025566,0.0000025654,0.0000025528, +0.0000025420,0.0000025647,0.0000026421,0.0000027136,0.0000027645, +0.0000027764,0.0000027738,0.0000027702,0.0000027712,0.0000027733, +0.0000027629,0.0000027544,0.0000027564,0.0000027592,0.0000027634, +0.0000027704,0.0000027698,0.0000027611,0.0000027518,0.0000027474, +0.0000027468,0.0000027500,0.0000027493,0.0000027440,0.0000027408, +0.0000027445,0.0000027499,0.0000027529,0.0000027542,0.0000027533, +0.0000027511,0.0000027455,0.0000027343,0.0000027200,0.0000027114, +0.0000027049,0.0000027016,0.0000026991,0.0000026988,0.0000027017, +0.0000027076,0.0000027140,0.0000027194,0.0000027219,0.0000027199, +0.0000027145,0.0000027051,0.0000026980,0.0000026950,0.0000026950, +0.0000026946,0.0000026910,0.0000026849,0.0000026784,0.0000026743, +0.0000026773,0.0000026813,0.0000026773,0.0000026705,0.0000026711, +0.0000026734,0.0000026698,0.0000026634,0.0000026606,0.0000026624, +0.0000026692,0.0000026769,0.0000026814,0.0000026824,0.0000026758, +0.0000026603,0.0000026291,0.0000025928,0.0000025757,0.0000025733, +0.0000025683,0.0000025600,0.0000025503,0.0000025435,0.0000025369, +0.0000025277,0.0000025239,0.0000025307,0.0000025385,0.0000025406, +0.0000025410,0.0000025420,0.0000025429,0.0000025426,0.0000025397, +0.0000025341,0.0000025254,0.0000025139,0.0000025016,0.0000024907, +0.0000024825,0.0000024765,0.0000024713,0.0000024676,0.0000024654, +0.0000024643,0.0000024673,0.0000024737,0.0000024847,0.0000025014, +0.0000025232,0.0000025453,0.0000025613,0.0000025662,0.0000025628, +0.0000025527,0.0000025432,0.0000025373,0.0000025365,0.0000025375, +0.0000025398,0.0000025412,0.0000025480,0.0000025689,0.0000025805, +0.0000025796,0.0000025818,0.0000025852,0.0000025877,0.0000025840, +0.0000025765,0.0000025698,0.0000025670,0.0000025743,0.0000025745, +0.0000025682,0.0000025591,0.0000025498,0.0000025437,0.0000025369, +0.0000025304,0.0000025286,0.0000025319,0.0000025393,0.0000025464, +0.0000025481,0.0000025382,0.0000025168,0.0000024999,0.0000024916, +0.0000024857,0.0000024790,0.0000024817,0.0000025046,0.0000025248, +0.0000025271,0.0000025323,0.0000025238,0.0000025196,0.0000025237, +0.0000025121,0.0000024954,0.0000024904,0.0000024949,0.0000025135, +0.0000025269,0.0000025340,0.0000025684,0.0000026133,0.0000026326, +0.0000026351,0.0000026341,0.0000026270,0.0000026127,0.0000025957, +0.0000025826,0.0000025764,0.0000025684,0.0000025666,0.0000025743, +0.0000025869,0.0000025948,0.0000025968,0.0000025973,0.0000025989, +0.0000026031,0.0000026077,0.0000026091,0.0000026104,0.0000026111, +0.0000026103,0.0000026087,0.0000026093,0.0000026132,0.0000026231, +0.0000026367,0.0000026443,0.0000026436,0.0000026410,0.0000026412, +0.0000026450,0.0000026501,0.0000026556,0.0000026596,0.0000026609, +0.0000026628,0.0000026673,0.0000026706,0.0000026725,0.0000026747, +0.0000026761,0.0000026770,0.0000026778,0.0000026785,0.0000026788, +0.0000026780,0.0000026761,0.0000026744,0.0000026730,0.0000026715, +0.0000026693,0.0000026663,0.0000026638,0.0000026624,0.0000026617, +0.0000026614,0.0000026625,0.0000026653,0.0000026696,0.0000026741, +0.0000026783,0.0000026827,0.0000026872,0.0000026913,0.0000026948, +0.0000026955,0.0000026948,0.0000026962,0.0000027004,0.0000027050, +0.0000027070,0.0000027051,0.0000026963,0.0000026814,0.0000026641, +0.0000026508,0.0000026478,0.0000026518,0.0000026599,0.0000026671, +0.0000026740,0.0000026821,0.0000026923,0.0000027050,0.0000027193, +0.0000027345,0.0000027494,0.0000027622,0.0000027708,0.0000027739, +0.0000027725,0.0000027690,0.0000027658,0.0000027640,0.0000027635, +0.0000027650,0.0000027690,0.0000027737,0.0000027772,0.0000027784, +0.0000027774,0.0000027714,0.0000027635,0.0000027583,0.0000027576, +0.0000027598,0.0000027599,0.0000027566,0.0000027526,0.0000027466, +0.0000027388,0.0000027292,0.0000027186,0.0000027097,0.0000027047, +0.0000027028,0.0000027014,0.0000026990,0.0000026968,0.0000026959, +0.0000026956,0.0000026936,0.0000026886,0.0000026813,0.0000026737, +0.0000026669,0.0000026609,0.0000026543,0.0000026466,0.0000026396, +0.0000026347,0.0000026316,0.0000026304,0.0000026290,0.0000026271, +0.0000026264,0.0000026280,0.0000026303,0.0000026315,0.0000026322, +0.0000026340,0.0000026386,0.0000026462,0.0000026568,0.0000026692, +0.0000026830,0.0000026962,0.0000027093,0.0000027223,0.0000027321, +0.0000027368,0.0000027419,0.0000027559,0.0000027764,0.0000027937, +0.0000028024,0.0000028039,0.0000028019,0.0000027980,0.0000027930, +0.0000027903,0.0000027907,0.0000027956,0.0000028002,0.0000027996, +0.0000027943,0.0000027895,0.0000027901,0.0000027959,0.0000028061, +0.0000028147,0.0000028202,0.0000028246,0.0000028278,0.0000028292, +0.0000028290,0.0000028253,0.0000028165,0.0000028054,0.0000027962, +0.0000027913,0.0000027892,0.0000027879,0.0000027848,0.0000027797, +0.0000027754,0.0000027736,0.0000027736,0.0000027733,0.0000027694, +0.0000027622,0.0000027584,0.0000027620,0.0000027718,0.0000027818, +0.0000027893,0.0000027946,0.0000028016,0.0000028126,0.0000028215, +0.0000028223,0.0000028182,0.0000028172,0.0000028210,0.0000028233, +0.0000028211,0.0000028133,0.0000028030,0.0000027927,0.0000027809, +0.0000027693,0.0000027626,0.0000027612,0.0000027653,0.0000027762, +0.0000027861,0.0000027915,0.0000027966,0.0000028021,0.0000028043, +0.0000028021,0.0000027966,0.0000027918,0.0000027891,0.0000027855, +0.0000027803,0.0000027756,0.0000027736,0.0000027740,0.0000027747, +0.0000027739,0.0000027711,0.0000027667,0.0000027615,0.0000027567, +0.0000027525,0.0000027487,0.0000027449,0.0000027409,0.0000027373, +0.0000027360,0.0000027354,0.0000027331,0.0000027292,0.0000027262, +0.0000027249,0.0000027265,0.0000027307,0.0000027365,0.0000027427, +0.0000027482,0.0000027521,0.0000027545,0.0000027570,0.0000027604, +0.0000027639,0.0000027672,0.0000027700,0.0000027718,0.0000027728, +0.0000027735,0.0000027740,0.0000027742,0.0000027746,0.0000027758, +0.0000027755,0.0000027736,0.0000027697,0.0000027629,0.0000027508, +0.0000027328,0.0000027143,0.0000027012,0.0000026935,0.0000026892, +0.0000026862,0.0000026818,0.0000026759,0.0000026692,0.0000026649, +0.0000026650,0.0000026668,0.0000026678,0.0000026689,0.0000026706, +0.0000026703,0.0000026697,0.0000026702,0.0000026672,0.0000026643, +0.0000026629,0.0000026613,0.0000026588,0.0000026563,0.0000026519, +0.0000026470,0.0000026453,0.0000026457,0.0000026465,0.0000026480, +0.0000026515,0.0000026557,0.0000026590,0.0000026615,0.0000026637, +0.0000026651,0.0000026698,0.0000026808,0.0000026936,0.0000027001, +0.0000027011,0.0000027012,0.0000026988,0.0000026903,0.0000026794, +0.0000026741,0.0000026791,0.0000026903,0.0000026981,0.0000027040, +0.0000027048,0.0000027029,0.0000026887,0.0000026342,0.0000025993, +0.0000026042,0.0000026196,0.0000026514,0.0000026790,0.0000026959, +0.0000027144,0.0000027511,0.0000027927,0.0000028155,0.0000028217, +0.0000028229,0.0000028223,0.0000028210,0.0000028174,0.0000028117, +0.0000028037,0.0000027961,0.0000027934,0.0000027954,0.0000027982, +0.0000027980,0.0000027978,0.0000028008,0.0000028036,0.0000028019, +0.0000027982,0.0000027951,0.0000027958,0.0000027976,0.0000027968, +0.0000027943,0.0000027937,0.0000027963,0.0000027969,0.0000027956, +0.0000027872,0.0000027772,0.0000027756,0.0000027826,0.0000028032, +0.0000028248,0.0000028358,0.0000028309,0.0000028160,0.0000028130, +0.0000028104,0.0000028081,0.0000028060,0.0000027994,0.0000028112, +0.0000028277,0.0000028390,0.0000028482,0.0000028563,0.0000028665, +0.0000028727,0.0000028726,0.0000028712,0.0000028695,0.0000028654, +0.0000028600,0.0000028543,0.0000028486,0.0000028437,0.0000028399, +0.0000028375,0.0000028340,0.0000028288,0.0000028244,0.0000028208, +0.0000028153,0.0000028070,0.0000027943,0.0000027764,0.0000027607, +0.0000027550,0.0000027558,0.0000027574,0.0000027509,0.0000027326, +0.0000027136,0.0000027043,0.0000027039,0.0000027136,0.0000027333, +0.0000027560,0.0000027737,0.0000027834,0.0000027876,0.0000027900, +0.0000027938,0.0000027989,0.0000028005,0.0000027985,0.0000027955, +0.0000027920,0.0000027853,0.0000027757,0.0000027686,0.0000027625, +0.0000027481,0.0000027275,0.0000027105,0.0000026970,0.0000026794, +0.0000026578,0.0000026379,0.0000026200,0.0000026047,0.0000025956, +0.0000025917,0.0000025892,0.0000025868,0.0000025846,0.0000025842, +0.0000025834,0.0000025824,0.0000025817,0.0000025808,0.0000025790, +0.0000025774,0.0000025766,0.0000025753,0.0000025728,0.0000025715, +0.0000025778,0.0000025952,0.0000026174,0.0000026341,0.0000026438, +0.0000026509,0.0000026570,0.0000026609,0.0000026617,0.0000026591, +0.0000026553,0.0000026533,0.0000026540,0.0000026553,0.0000026537, +0.0000026482,0.0000026430,0.0000026421,0.0000026467,0.0000026559, +0.0000026659,0.0000026734,0.0000026781,0.0000026813,0.0000026840, +0.0000026868,0.0000026896,0.0000026932,0.0000026990,0.0000027063, +0.0000027127,0.0000027178,0.0000027227,0.0000027268,0.0000027291, +0.0000027294,0.0000027227,0.0000027101,0.0000026943,0.0000026792, +0.0000026699,0.0000026684,0.0000026731,0.0000026824,0.0000026942, +0.0000027064,0.0000027160,0.0000027190,0.0000027172,0.0000027150, +0.0000027146,0.0000027153,0.0000027162,0.0000027177,0.0000027213, +0.0000027271,0.0000027325,0.0000027361,0.0000027381,0.0000027381, +0.0000027373,0.0000027394,0.0000027476,0.0000027609,0.0000027743, +0.0000027845,0.0000027897,0.0000027902,0.0000027891,0.0000027845, +0.0000027764,0.0000027681,0.0000027635,0.0000027633,0.0000027645, +0.0000027627,0.0000027577,0.0000027526,0.0000027503,0.0000027506, +0.0000027508,0.0000027511,0.0000027520,0.0000027527,0.0000027520, +0.0000027521,0.0000027543,0.0000027579,0.0000027628,0.0000027678, +0.0000027723,0.0000027751,0.0000027752,0.0000027743,0.0000027732, +0.0000027712,0.0000027677,0.0000027625,0.0000027579,0.0000027539, +0.0000027508,0.0000027487,0.0000027469,0.0000027445,0.0000027424, +0.0000027424,0.0000027450,0.0000027489,0.0000027517,0.0000027519, +0.0000027486,0.0000027430,0.0000027361,0.0000027287,0.0000027212, +0.0000027134,0.0000027054,0.0000026980,0.0000026938,0.0000026936, +0.0000026949,0.0000026953,0.0000026937,0.0000026901,0.0000026856, +0.0000026827,0.0000026816,0.0000026805,0.0000026784,0.0000026755, +0.0000026721,0.0000026684,0.0000026653,0.0000026639,0.0000026635, +0.0000026628,0.0000026616,0.0000026600,0.0000026583,0.0000026571, +0.0000026563,0.0000026565,0.0000026581,0.0000026588,0.0000026593, +0.0000026569,0.0000026529,0.0000026486,0.0000026442,0.0000026401, +0.0000026369,0.0000026341,0.0000026316,0.0000026307,0.0000026322, +0.0000026333,0.0000026330,0.0000026313,0.0000026285,0.0000026248, +0.0000026197,0.0000026128,0.0000026050,0.0000025975,0.0000025914, +0.0000025890,0.0000025902,0.0000025926,0.0000025944,0.0000025950, +0.0000025949,0.0000025957,0.0000025967,0.0000025962,0.0000025912, +0.0000025828,0.0000025762,0.0000025725,0.0000025647,0.0000025479, +0.0000025317,0.0000025272,0.0000025318,0.0000025403,0.0000025427, +0.0000025317,0.0000025080,0.0000024820,0.0000024668,0.0000024676, +0.0000024926,0.0000025372,0.0000025702,0.0000025815,0.0000025986, +0.0000026398,0.0000026867,0.0000027295,0.0000027630,0.0000027692, +0.0000027621,0.0000027541,0.0000027482,0.0000027501,0.0000027550, +0.0000027502,0.0000027386,0.0000027327,0.0000027365,0.0000027438, +0.0000027459,0.0000027445,0.0000027421,0.0000027385,0.0000027349, +0.0000027313,0.0000027288,0.0000027281,0.0000027256,0.0000027211, +0.0000027196,0.0000027181,0.0000027109,0.0000027009,0.0000026932, +0.0000026912,0.0000026918,0.0000026928,0.0000026994,0.0000027078, +0.0000027088,0.0000027062,0.0000027098,0.0000027227,0.0000027355, +0.0000027416,0.0000027428,0.0000027420,0.0000027411,0.0000027407, +0.0000027398,0.0000027389,0.0000027385,0.0000027338,0.0000027251, +0.0000027163,0.0000027103,0.0000027069,0.0000027040,0.0000027018, +0.0000026957,0.0000026882,0.0000026872,0.0000026968,0.0000027071, +0.0000027117,0.0000027174,0.0000027192,0.0000027077,0.0000026941, +0.0000026881,0.0000026831,0.0000026798,0.0000026765,0.0000026752, +0.0000026761,0.0000026739,0.0000026682,0.0000026670,0.0000026685, +0.0000026661,0.0000026585,0.0000026522,0.0000026483,0.0000026446, +0.0000026398,0.0000026380,0.0000026381,0.0000026356,0.0000026307, +0.0000026278,0.0000026272,0.0000026255,0.0000026225,0.0000026200, +0.0000026150,0.0000026048,0.0000025915,0.0000025788,0.0000025696, +0.0000025653,0.0000025652,0.0000025690,0.0000025741,0.0000025775, +0.0000025781,0.0000025758,0.0000025719,0.0000025694,0.0000025700, +0.0000025720,0.0000025682,0.0000025501,0.0000025293,0.0000025177, +0.0000025093,0.0000025009,0.0000024946,0.0000024865,0.0000024725, +0.0000024557,0.0000024406,0.0000024283,0.0000024186,0.0000024108, +0.0000024033,0.0000023959,0.0000023898,0.0000023856,0.0000023829, +0.0000023826,0.0000023837,0.0000023854,0.0000023870,0.0000023878, +0.0000023892,0.0000023923,0.0000023972,0.0000024056,0.0000024117, +0.0000024132,0.0000024235,0.0000024386,0.0000024512,0.0000024673, +0.0000024776,0.0000024957,0.0000025425,0.0000025879,0.0000026049, +0.0000026143,0.0000026283,0.0000026385,0.0000026404,0.0000026389, +0.0000026302,0.0000026160,0.0000026062,0.0000025946,0.0000025796, +0.0000025598,0.0000025643,0.0000025581,0.0000025423,0.0000025605, +0.0000026367,0.0000027088,0.0000027609,0.0000027752,0.0000027730, +0.0000027693,0.0000027720,0.0000027740,0.0000027626,0.0000027571, +0.0000027598,0.0000027622,0.0000027667,0.0000027734,0.0000027726, +0.0000027643,0.0000027538,0.0000027483,0.0000027465,0.0000027497, +0.0000027516,0.0000027488,0.0000027447,0.0000027464,0.0000027513, +0.0000027547,0.0000027552,0.0000027538,0.0000027505,0.0000027447, +0.0000027354,0.0000027230,0.0000027163,0.0000027067,0.0000026987, +0.0000026927,0.0000026895,0.0000026896,0.0000026946,0.0000027022, +0.0000027104,0.0000027175,0.0000027188,0.0000027166,0.0000027108, +0.0000027034,0.0000026976,0.0000026959,0.0000026949,0.0000026928, +0.0000026889,0.0000026852,0.0000026803,0.0000026760,0.0000026790, +0.0000026818,0.0000026759,0.0000026715,0.0000026744,0.0000026755, +0.0000026709,0.0000026655,0.0000026659,0.0000026719,0.0000026801, +0.0000026844,0.0000026850,0.0000026775,0.0000026578,0.0000026218, +0.0000025857,0.0000025725,0.0000025691,0.0000025607,0.0000025507, +0.0000025433,0.0000025371,0.0000025267,0.0000025181,0.0000025235, +0.0000025356,0.0000025398,0.0000025410,0.0000025428,0.0000025433, +0.0000025421,0.0000025405,0.0000025381,0.0000025342,0.0000025271, +0.0000025158,0.0000025032,0.0000024915,0.0000024820,0.0000024757, +0.0000024704,0.0000024664,0.0000024643,0.0000024631,0.0000024642, +0.0000024661,0.0000024686,0.0000024715,0.0000024791,0.0000024937, +0.0000025170,0.0000025425,0.0000025604,0.0000025641,0.0000025606, +0.0000025516,0.0000025441,0.0000025412,0.0000025420,0.0000025441, +0.0000025496,0.0000025657,0.0000025826,0.0000025838,0.0000025826, +0.0000025836,0.0000025878,0.0000025877,0.0000025818,0.0000025736, +0.0000025653,0.0000025644,0.0000025734,0.0000025723,0.0000025634, +0.0000025529,0.0000025462,0.0000025416,0.0000025371,0.0000025312, +0.0000025285,0.0000025298,0.0000025343,0.0000025406,0.0000025457, +0.0000025435,0.0000025303,0.0000025100,0.0000024956,0.0000024893, +0.0000024802,0.0000024763,0.0000024943,0.0000025202,0.0000025239, +0.0000025292,0.0000025258,0.0000025148,0.0000025197,0.0000025173, +0.0000025006,0.0000024900,0.0000024886,0.0000025017,0.0000025221, +0.0000025278,0.0000025428,0.0000025853,0.0000026213,0.0000026330, +0.0000026338,0.0000026309,0.0000026200,0.0000026030,0.0000025847, +0.0000025764,0.0000025720,0.0000025665,0.0000025681,0.0000025780, +0.0000025872,0.0000025911,0.0000025934,0.0000025973,0.0000026031, +0.0000026075,0.0000026098,0.0000026123,0.0000026124,0.0000026098, +0.0000026072,0.0000026073,0.0000026103,0.0000026179,0.0000026294, +0.0000026393,0.0000026427,0.0000026418,0.0000026411,0.0000026428, +0.0000026469,0.0000026525,0.0000026559,0.0000026564,0.0000026573, +0.0000026606,0.0000026631,0.0000026650,0.0000026673,0.0000026691, +0.0000026707,0.0000026722,0.0000026739,0.0000026752,0.0000026752, +0.0000026738,0.0000026731,0.0000026726,0.0000026718,0.0000026699, +0.0000026666,0.0000026635,0.0000026614,0.0000026606,0.0000026606, +0.0000026620,0.0000026643,0.0000026676,0.0000026713,0.0000026752, +0.0000026800,0.0000026847,0.0000026884,0.0000026909,0.0000026909, +0.0000026882,0.0000026858,0.0000026864,0.0000026895,0.0000026914, +0.0000026904,0.0000026847,0.0000026746,0.0000026618,0.0000026502, +0.0000026461,0.0000026493,0.0000026554,0.0000026603,0.0000026665, +0.0000026757,0.0000026872,0.0000027012,0.0000027172,0.0000027340, +0.0000027498,0.0000027631,0.0000027716,0.0000027738,0.0000027716, +0.0000027671,0.0000027629,0.0000027598,0.0000027584,0.0000027596, +0.0000027638,0.0000027696,0.0000027754,0.0000027789,0.0000027783, +0.0000027714,0.0000027627,0.0000027574,0.0000027550,0.0000027535, +0.0000027512,0.0000027459,0.0000027404,0.0000027345,0.0000027274, +0.0000027184,0.0000027077,0.0000026974,0.0000026914,0.0000026908, +0.0000026923,0.0000026937,0.0000026942,0.0000026936,0.0000026921, +0.0000026883,0.0000026809,0.0000026707,0.0000026601,0.0000026519, +0.0000026462,0.0000026413,0.0000026354,0.0000026307,0.0000026282, +0.0000026271,0.0000026268,0.0000026254,0.0000026223,0.0000026193, +0.0000026184,0.0000026190,0.0000026193,0.0000026185,0.0000026183, +0.0000026209,0.0000026275,0.0000026377,0.0000026511,0.0000026668, +0.0000026822,0.0000026970,0.0000027099,0.0000027212,0.0000027298, +0.0000027350,0.0000027420,0.0000027574,0.0000027778,0.0000027950, +0.0000028041,0.0000028049,0.0000028016,0.0000027958,0.0000027908, +0.0000027895,0.0000027926,0.0000027985,0.0000028018,0.0000028007, +0.0000027959,0.0000027918,0.0000027925,0.0000027979,0.0000028040, +0.0000028110,0.0000028164,0.0000028202,0.0000028230,0.0000028248, +0.0000028245,0.0000028201,0.0000028116,0.0000028037,0.0000027985, +0.0000027940,0.0000027878,0.0000027803,0.0000027736,0.0000027701, +0.0000027677,0.0000027652,0.0000027645,0.0000027649,0.0000027632, +0.0000027586,0.0000027572,0.0000027637,0.0000027748,0.0000027838, +0.0000027889,0.0000027941,0.0000028035,0.0000028157,0.0000028238, +0.0000028231,0.0000028173,0.0000028168,0.0000028219,0.0000028249, +0.0000028226,0.0000028144,0.0000028039,0.0000027935,0.0000027819, +0.0000027704,0.0000027630,0.0000027602,0.0000027634,0.0000027737, +0.0000027842,0.0000027908,0.0000027964,0.0000028010,0.0000028018, +0.0000027981,0.0000027918,0.0000027869,0.0000027839,0.0000027805, +0.0000027752,0.0000027701,0.0000027691,0.0000027707,0.0000027719, +0.0000027704,0.0000027652,0.0000027577,0.0000027503,0.0000027445, +0.0000027400,0.0000027358,0.0000027315,0.0000027268,0.0000027237, +0.0000027237,0.0000027249,0.0000027248,0.0000027237,0.0000027222, +0.0000027212,0.0000027221,0.0000027251,0.0000027297,0.0000027347, +0.0000027389,0.0000027416,0.0000027438,0.0000027474,0.0000027522, +0.0000027569,0.0000027614,0.0000027652,0.0000027677,0.0000027693, +0.0000027703,0.0000027706,0.0000027704,0.0000027710,0.0000027725, +0.0000027728,0.0000027711,0.0000027675,0.0000027612,0.0000027504, +0.0000027353,0.0000027205,0.0000027117,0.0000027097,0.0000027109, +0.0000027121,0.0000027099,0.0000027042,0.0000026971,0.0000026923, +0.0000026895,0.0000026872,0.0000026848,0.0000026830,0.0000026810, +0.0000026787,0.0000026768,0.0000026730,0.0000026679,0.0000026632, +0.0000026620,0.0000026611,0.0000026594,0.0000026573,0.0000026537, +0.0000026505,0.0000026497,0.0000026494,0.0000026489,0.0000026488, +0.0000026507,0.0000026536,0.0000026567,0.0000026591,0.0000026614, +0.0000026630,0.0000026677,0.0000026769,0.0000026882,0.0000026947, +0.0000026970,0.0000026987,0.0000026980,0.0000026907,0.0000026781, +0.0000026714,0.0000026747,0.0000026866,0.0000026957,0.0000026999, +0.0000027029,0.0000027026,0.0000026998,0.0000026723,0.0000026158, +0.0000026010,0.0000026069,0.0000026233,0.0000026560,0.0000026835, +0.0000027021,0.0000027216,0.0000027563,0.0000027911,0.0000028100, +0.0000028171,0.0000028178,0.0000028164,0.0000028127,0.0000028070, +0.0000027987,0.0000027903,0.0000027863,0.0000027875,0.0000027906, +0.0000027911,0.0000027907,0.0000027951,0.0000028004,0.0000028003, +0.0000027957,0.0000027906,0.0000027916,0.0000027959,0.0000027969, +0.0000027939,0.0000027914,0.0000027947,0.0000027967,0.0000027959, +0.0000027902,0.0000027787,0.0000027746,0.0000027783,0.0000027948, +0.0000028180,0.0000028346,0.0000028363,0.0000028213,0.0000028109, +0.0000028115,0.0000028061,0.0000028042,0.0000027980,0.0000027987, +0.0000028161,0.0000028299,0.0000028398,0.0000028488,0.0000028562, +0.0000028658,0.0000028719,0.0000028720,0.0000028699,0.0000028655, +0.0000028598,0.0000028546,0.0000028496,0.0000028446,0.0000028398, +0.0000028340,0.0000028279,0.0000028228,0.0000028193,0.0000028154, +0.0000028077,0.0000027959,0.0000027805,0.0000027654,0.0000027576, +0.0000027571,0.0000027609,0.0000027612,0.0000027517,0.0000027297, +0.0000027087,0.0000026978,0.0000026959,0.0000027014,0.0000027184, +0.0000027402,0.0000027593,0.0000027736,0.0000027835,0.0000027893, +0.0000027946,0.0000028003,0.0000028033,0.0000028029,0.0000028014, +0.0000027993,0.0000027939,0.0000027834,0.0000027728,0.0000027634, +0.0000027478,0.0000027256,0.0000027058,0.0000026914,0.0000026764, +0.0000026572,0.0000026365,0.0000026169,0.0000026014,0.0000025937, +0.0000025913,0.0000025887,0.0000025862,0.0000025851,0.0000025859, +0.0000025867,0.0000025857,0.0000025834,0.0000025806,0.0000025780, +0.0000025761,0.0000025753,0.0000025745,0.0000025722,0.0000025682, +0.0000025646,0.0000025647,0.0000025752,0.0000025970,0.0000026212, +0.0000026390,0.0000026478,0.0000026512,0.0000026532,0.0000026548, +0.0000026550,0.0000026529,0.0000026501,0.0000026487,0.0000026473, +0.0000026426,0.0000026352,0.0000026305,0.0000026322,0.0000026409, +0.0000026527,0.0000026609,0.0000026641,0.0000026647,0.0000026650, +0.0000026661,0.0000026685,0.0000026715,0.0000026751,0.0000026807, +0.0000026882,0.0000026962,0.0000027042,0.0000027126,0.0000027205, +0.0000027266,0.0000027302,0.0000027304,0.0000027279,0.0000027214, +0.0000027069,0.0000026897,0.0000026759,0.0000026702,0.0000026709, +0.0000026764,0.0000026865,0.0000026991,0.0000027092,0.0000027130, +0.0000027126,0.0000027126,0.0000027136,0.0000027139,0.0000027127, +0.0000027108,0.0000027106,0.0000027139,0.0000027221,0.0000027331, +0.0000027404,0.0000027409,0.0000027396,0.0000027406,0.0000027475, +0.0000027588,0.0000027712,0.0000027812,0.0000027865,0.0000027871, +0.0000027852,0.0000027819,0.0000027768,0.0000027718,0.0000027693, +0.0000027690,0.0000027675,0.0000027636,0.0000027593,0.0000027556, +0.0000027527,0.0000027507,0.0000027508,0.0000027521,0.0000027525, +0.0000027514,0.0000027501,0.0000027505,0.0000027529,0.0000027574, +0.0000027631,0.0000027695,0.0000027745,0.0000027758,0.0000027762, +0.0000027762,0.0000027758,0.0000027740,0.0000027701,0.0000027654, +0.0000027603,0.0000027559,0.0000027544,0.0000027542,0.0000027543, +0.0000027549,0.0000027564,0.0000027586,0.0000027614,0.0000027646, +0.0000027667,0.0000027670,0.0000027654,0.0000027613,0.0000027545, +0.0000027451,0.0000027338,0.0000027222,0.0000027118,0.0000027037, +0.0000026993,0.0000026974,0.0000026957,0.0000026931,0.0000026884, +0.0000026826,0.0000026780,0.0000026755,0.0000026741,0.0000026724, +0.0000026695,0.0000026654,0.0000026615,0.0000026584,0.0000026560, +0.0000026544,0.0000026542,0.0000026549,0.0000026549,0.0000026522, +0.0000026477,0.0000026436,0.0000026427,0.0000026460,0.0000026521, +0.0000026566,0.0000026571,0.0000026545,0.0000026505,0.0000026458, +0.0000026422,0.0000026401,0.0000026388,0.0000026379,0.0000026378, +0.0000026389,0.0000026388,0.0000026368,0.0000026334,0.0000026292, +0.0000026243,0.0000026186,0.0000026118,0.0000026044,0.0000025970, +0.0000025911,0.0000025884,0.0000025897,0.0000025937,0.0000025973, +0.0000025973,0.0000025941,0.0000025920,0.0000025926,0.0000025933, +0.0000025898,0.0000025808,0.0000025731,0.0000025698,0.0000025627, +0.0000025466,0.0000025306,0.0000025243,0.0000025269,0.0000025347, +0.0000025381,0.0000025312,0.0000025101,0.0000024835,0.0000024620, +0.0000024571,0.0000024750,0.0000025209,0.0000025636,0.0000025790, +0.0000025933,0.0000026325,0.0000026807,0.0000027250,0.0000027601, +0.0000027698,0.0000027647,0.0000027546,0.0000027456,0.0000027457, +0.0000027471,0.0000027424,0.0000027366,0.0000027360,0.0000027396, +0.0000027479,0.0000027522,0.0000027523,0.0000027511,0.0000027486, +0.0000027451,0.0000027414,0.0000027372,0.0000027340,0.0000027310, +0.0000027256,0.0000027211,0.0000027203,0.0000027170,0.0000027078, +0.0000026978,0.0000026914,0.0000026905,0.0000026910,0.0000026939, +0.0000027040,0.0000027128,0.0000027125,0.0000027079,0.0000027086, +0.0000027173,0.0000027277,0.0000027342,0.0000027370,0.0000027377, +0.0000027379,0.0000027359,0.0000027325,0.0000027307,0.0000027259, +0.0000027177,0.0000027109,0.0000027091,0.0000027091,0.0000027078, +0.0000027044,0.0000026965,0.0000026880,0.0000026870,0.0000026954, +0.0000027059,0.0000027100,0.0000027153,0.0000027182,0.0000027068, +0.0000026921,0.0000026881,0.0000026847,0.0000026813,0.0000026779, +0.0000026766,0.0000026784,0.0000026758,0.0000026695,0.0000026685, +0.0000026696,0.0000026661,0.0000026563,0.0000026492,0.0000026453, +0.0000026409,0.0000026360,0.0000026358,0.0000026383,0.0000026378, +0.0000026330,0.0000026292,0.0000026278,0.0000026256,0.0000026224, +0.0000026189,0.0000026103,0.0000025943,0.0000025747,0.0000025565, +0.0000025425,0.0000025336,0.0000025305,0.0000025322,0.0000025383, +0.0000025477,0.0000025581,0.0000025661,0.0000025689,0.0000025682, +0.0000025671,0.0000025675,0.0000025672,0.0000025574,0.0000025370, +0.0000025190,0.0000025086,0.0000025000,0.0000024938,0.0000024905, +0.0000024819,0.0000024643,0.0000024450,0.0000024293,0.0000024167, +0.0000024059,0.0000023968,0.0000023893,0.0000023844,0.0000023820, +0.0000023811,0.0000023813,0.0000023827,0.0000023842,0.0000023851, +0.0000023845,0.0000023818,0.0000023795,0.0000023793,0.0000023821, +0.0000023908,0.0000024022,0.0000024074,0.0000024145,0.0000024313, +0.0000024460,0.0000024611,0.0000024722,0.0000024798,0.0000025089, +0.0000025593,0.0000025927,0.0000026044,0.0000026153,0.0000026283, +0.0000026356,0.0000026380,0.0000026352,0.0000026218,0.0000026114, +0.0000025995,0.0000025852,0.0000025636,0.0000025636,0.0000025621, +0.0000025435,0.0000025581,0.0000026328,0.0000027048,0.0000027572, +0.0000027743,0.0000027726,0.0000027690,0.0000027727,0.0000027745, +0.0000027627,0.0000027595,0.0000027631,0.0000027647,0.0000027691, +0.0000027753,0.0000027752,0.0000027682,0.0000027567,0.0000027498, +0.0000027473,0.0000027497,0.0000027531,0.0000027531,0.0000027500, +0.0000027502,0.0000027540,0.0000027572,0.0000027571,0.0000027547, +0.0000027495,0.0000027420,0.0000027340,0.0000027254,0.0000027195, +0.0000027108,0.0000027000,0.0000026910,0.0000026861,0.0000026842, +0.0000026872,0.0000026941,0.0000027026,0.0000027106,0.0000027138, +0.0000027137,0.0000027112,0.0000027063,0.0000027001,0.0000026974, +0.0000026961,0.0000026928,0.0000026875,0.0000026845,0.0000026842, +0.0000026806,0.0000026767,0.0000026798,0.0000026808,0.0000026751, +0.0000026740,0.0000026764,0.0000026758,0.0000026706,0.0000026693, +0.0000026734,0.0000026810,0.0000026851,0.0000026854,0.0000026765, +0.0000026547,0.0000026168,0.0000025823,0.0000025705,0.0000025654, +0.0000025548,0.0000025444,0.0000025386,0.0000025320,0.0000025191, +0.0000025159,0.0000025287,0.0000025377,0.0000025384,0.0000025415, +0.0000025445,0.0000025429,0.0000025408,0.0000025402,0.0000025399, +0.0000025391,0.0000025349,0.0000025246,0.0000025101,0.0000024953, +0.0000024831,0.0000024744,0.0000024676,0.0000024626,0.0000024601, +0.0000024597,0.0000024614,0.0000024639,0.0000024669,0.0000024698, +0.0000024714,0.0000024726,0.0000024765,0.0000024921,0.0000025190, +0.0000025457,0.0000025604,0.0000025618,0.0000025588,0.0000025562, +0.0000025552,0.0000025558,0.0000025583,0.0000025679,0.0000025819, +0.0000025871,0.0000025857,0.0000025844,0.0000025863,0.0000025890, +0.0000025866,0.0000025801,0.0000025690,0.0000025611,0.0000025642, +0.0000025730,0.0000025692,0.0000025588,0.0000025513,0.0000025452, +0.0000025415,0.0000025383,0.0000025340,0.0000025317,0.0000025319, +0.0000025334,0.0000025365,0.0000025413,0.0000025430,0.0000025392, +0.0000025225,0.0000025043,0.0000024939,0.0000024819,0.0000024729, +0.0000024845,0.0000025135,0.0000025215,0.0000025248,0.0000025276, +0.0000025147,0.0000025131,0.0000025191,0.0000025084,0.0000024925, +0.0000024864,0.0000024915,0.0000025103,0.0000025239,0.0000025285, +0.0000025530,0.0000025986,0.0000026246,0.0000026324,0.0000026321, +0.0000026269,0.0000026120,0.0000025919,0.0000025774,0.0000025746, +0.0000025691,0.0000025639,0.0000025679,0.0000025780,0.0000025847, +0.0000025889,0.0000025954,0.0000026011,0.0000026058,0.0000026098, +0.0000026127,0.0000026123,0.0000026091,0.0000026056,0.0000026042, +0.0000026056,0.0000026108,0.0000026203,0.0000026320,0.0000026403, +0.0000026427,0.0000026436,0.0000026444,0.0000026476,0.0000026522, +0.0000026537,0.0000026535,0.0000026533,0.0000026556,0.0000026576, +0.0000026597,0.0000026620,0.0000026639,0.0000026657,0.0000026679, +0.0000026702,0.0000026721,0.0000026729,0.0000026722,0.0000026721, +0.0000026722,0.0000026720,0.0000026704,0.0000026672,0.0000026631, +0.0000026591,0.0000026567,0.0000026562,0.0000026575,0.0000026601, +0.0000026638,0.0000026680,0.0000026722,0.0000026767,0.0000026813, +0.0000026849,0.0000026868,0.0000026865,0.0000026831,0.0000026777, +0.0000026741,0.0000026736,0.0000026743,0.0000026746,0.0000026730, +0.0000026688,0.0000026617,0.0000026527,0.0000026470,0.0000026478, +0.0000026519,0.0000026558,0.0000026621,0.0000026727,0.0000026868, +0.0000027043,0.0000027233,0.0000027401,0.0000027530,0.0000027628, +0.0000027702,0.0000027733,0.0000027707,0.0000027645,0.0000027581, +0.0000027535,0.0000027518,0.0000027541,0.0000027605,0.0000027690, +0.0000027768,0.0000027802,0.0000027782,0.0000027706,0.0000027631, +0.0000027586,0.0000027552,0.0000027513,0.0000027462,0.0000027397, +0.0000027324,0.0000027247,0.0000027161,0.0000027071,0.0000026982, +0.0000026907,0.0000026877,0.0000026889,0.0000026914,0.0000026925, +0.0000026903,0.0000026855,0.0000026798,0.0000026735,0.0000026652, +0.0000026542,0.0000026425,0.0000026334,0.0000026280,0.0000026249, +0.0000026219,0.0000026200,0.0000026206,0.0000026227,0.0000026250, +0.0000026248,0.0000026211,0.0000026161,0.0000026130,0.0000026123, +0.0000026126,0.0000026125,0.0000026120,0.0000026129,0.0000026177, +0.0000026253,0.0000026362,0.0000026507,0.0000026680,0.0000026870, +0.0000027031,0.0000027134,0.0000027201,0.0000027266,0.0000027343, +0.0000027457,0.0000027629,0.0000027825,0.0000027987,0.0000028063, +0.0000028061,0.0000028016,0.0000027949,0.0000027909,0.0000027918, +0.0000027970,0.0000028022,0.0000028042,0.0000028035,0.0000028010, +0.0000027998,0.0000028005,0.0000028034,0.0000028082,0.0000028128, +0.0000028159,0.0000028178,0.0000028201,0.0000028214,0.0000028203, +0.0000028151,0.0000028086,0.0000028026,0.0000027957,0.0000027865, +0.0000027767,0.0000027678,0.0000027629,0.0000027605,0.0000027565, +0.0000027536,0.0000027548,0.0000027583,0.0000027578,0.0000027540, +0.0000027556,0.0000027662,0.0000027789,0.0000027859,0.0000027884, +0.0000027940,0.0000028058,0.0000028177,0.0000028241,0.0000028219, +0.0000028159,0.0000028163,0.0000028223,0.0000028256,0.0000028232, +0.0000028150,0.0000028046,0.0000027946,0.0000027842,0.0000027741, +0.0000027658,0.0000027603,0.0000027616,0.0000027724,0.0000027843, +0.0000027925,0.0000027984,0.0000028012,0.0000028004,0.0000027953, +0.0000027889,0.0000027841,0.0000027801,0.0000027762,0.0000027714, +0.0000027674,0.0000027661,0.0000027666,0.0000027657,0.0000027613, +0.0000027540,0.0000027460,0.0000027393,0.0000027347,0.0000027316, +0.0000027278,0.0000027231,0.0000027176,0.0000027140,0.0000027134, +0.0000027139,0.0000027147,0.0000027154,0.0000027154,0.0000027161, +0.0000027184,0.0000027215,0.0000027250,0.0000027278,0.0000027295, +0.0000027303,0.0000027320,0.0000027357,0.0000027403,0.0000027451, +0.0000027502,0.0000027554,0.0000027599,0.0000027636,0.0000027659, +0.0000027672,0.0000027673,0.0000027680,0.0000027700,0.0000027708, +0.0000027696,0.0000027666,0.0000027611,0.0000027531,0.0000027427, +0.0000027322,0.0000027264,0.0000027262,0.0000027286,0.0000027300, +0.0000027281,0.0000027219,0.0000027145,0.0000027095,0.0000027054, +0.0000027022,0.0000026997,0.0000026976,0.0000026957,0.0000026941, +0.0000026906,0.0000026838,0.0000026765,0.0000026714,0.0000026693, +0.0000026680,0.0000026660,0.0000026633,0.0000026599,0.0000026565, +0.0000026545,0.0000026521,0.0000026501,0.0000026499,0.0000026512, +0.0000026546,0.0000026579,0.0000026606,0.0000026633,0.0000026657, +0.0000026707,0.0000026789,0.0000026878,0.0000026920,0.0000026938, +0.0000026961,0.0000026969,0.0000026903,0.0000026769,0.0000026705, +0.0000026726,0.0000026821,0.0000026928,0.0000026967,0.0000026979, +0.0000027006,0.0000026995,0.0000026948,0.0000026524,0.0000026062, +0.0000026012,0.0000026068,0.0000026261,0.0000026612,0.0000026906, +0.0000027089,0.0000027267,0.0000027562,0.0000027852,0.0000028030, +0.0000028098,0.0000028107,0.0000028084,0.0000028036,0.0000027964, +0.0000027893,0.0000027854,0.0000027863,0.0000027884,0.0000027883, +0.0000027867,0.0000027904,0.0000027978,0.0000028003,0.0000027974, +0.0000027910,0.0000027898,0.0000027939,0.0000027964,0.0000027941, +0.0000027900,0.0000027923,0.0000027964,0.0000027959,0.0000027920, +0.0000027816,0.0000027750,0.0000027772,0.0000027894,0.0000028116, +0.0000028312,0.0000028375,0.0000028276,0.0000028109,0.0000028095, +0.0000028073,0.0000028016,0.0000027987,0.0000027933,0.0000028024, +0.0000028203,0.0000028306,0.0000028402,0.0000028477,0.0000028544, +0.0000028628,0.0000028687,0.0000028704,0.0000028673,0.0000028618, +0.0000028563,0.0000028496,0.0000028424,0.0000028343,0.0000028260, +0.0000028198,0.0000028165,0.0000028135,0.0000028072,0.0000027964, +0.0000027827,0.0000027693,0.0000027613,0.0000027597,0.0000027625, +0.0000027657,0.0000027627,0.0000027484,0.0000027254,0.0000027050, +0.0000026933,0.0000026898,0.0000026915,0.0000027037,0.0000027228, +0.0000027411,0.0000027570,0.0000027717,0.0000027830,0.0000027908, +0.0000027977,0.0000028025,0.0000028033,0.0000028026,0.0000028014, +0.0000027975,0.0000027885,0.0000027773,0.0000027666,0.0000027511, +0.0000027293,0.0000027084,0.0000026923,0.0000026775,0.0000026592, +0.0000026372,0.0000026153,0.0000025996,0.0000025934,0.0000025923, +0.0000025907,0.0000025891,0.0000025898,0.0000025920,0.0000025933, +0.0000025915,0.0000025875,0.0000025822,0.0000025769,0.0000025733, +0.0000025716,0.0000025712,0.0000025702,0.0000025675,0.0000025638, +0.0000025608,0.0000025587,0.0000025602,0.0000025736,0.0000025990, +0.0000026254,0.0000026413,0.0000026458,0.0000026459,0.0000026462, +0.0000026474,0.0000026483,0.0000026486,0.0000026478,0.0000026447, +0.0000026375,0.0000026286,0.0000026236,0.0000026262,0.0000026359, +0.0000026468,0.0000026526,0.0000026533,0.0000026516,0.0000026487, +0.0000026471,0.0000026477,0.0000026507,0.0000026556,0.0000026621, +0.0000026702,0.0000026788,0.0000026871,0.0000026953,0.0000027035, +0.0000027118,0.0000027192,0.0000027246,0.0000027278,0.0000027284, +0.0000027242,0.0000027163,0.0000027010,0.0000026858,0.0000026756, +0.0000026726,0.0000026745,0.0000026817,0.0000026930,0.0000027026, +0.0000027069,0.0000027080,0.0000027093,0.0000027110,0.0000027114, +0.0000027097,0.0000027064,0.0000027040,0.0000027067,0.0000027175, +0.0000027335,0.0000027442,0.0000027463,0.0000027443,0.0000027442, +0.0000027491,0.0000027581,0.0000027681,0.0000027760,0.0000027803, +0.0000027814,0.0000027801,0.0000027769,0.0000027744,0.0000027731, +0.0000027728,0.0000027719,0.0000027702,0.0000027687,0.0000027660, +0.0000027609,0.0000027551,0.0000027526,0.0000027540,0.0000027556, +0.0000027549,0.0000027520,0.0000027501,0.0000027493,0.0000027513, +0.0000027560,0.0000027635,0.0000027711,0.0000027745,0.0000027757, +0.0000027773,0.0000027786,0.0000027778,0.0000027746,0.0000027699, +0.0000027647,0.0000027597,0.0000027575,0.0000027574,0.0000027589, +0.0000027621,0.0000027659,0.0000027685,0.0000027705,0.0000027716, +0.0000027718,0.0000027721,0.0000027738,0.0000027753,0.0000027746, +0.0000027689,0.0000027573,0.0000027427,0.0000027287,0.0000027181, +0.0000027112,0.0000027058,0.0000027000,0.0000026940,0.0000026882, +0.0000026823,0.0000026776,0.0000026745,0.0000026725,0.0000026705, +0.0000026675,0.0000026629,0.0000026587,0.0000026561,0.0000026532, +0.0000026507,0.0000026497,0.0000026504,0.0000026509,0.0000026494, +0.0000026442,0.0000026378,0.0000026340,0.0000026358,0.0000026420, +0.0000026489,0.0000026519,0.0000026510,0.0000026477,0.0000026436, +0.0000026408,0.0000026400,0.0000026393,0.0000026392,0.0000026398, +0.0000026401,0.0000026392,0.0000026360,0.0000026318,0.0000026270, +0.0000026215,0.0000026153,0.0000026090,0.0000026026,0.0000025964, +0.0000025914,0.0000025889,0.0000025901,0.0000025947,0.0000025994, +0.0000025998,0.0000025952,0.0000025906,0.0000025893,0.0000025895, +0.0000025859,0.0000025768,0.0000025691,0.0000025658,0.0000025580, +0.0000025426,0.0000025295,0.0000025237,0.0000025238,0.0000025298, +0.0000025340,0.0000025295,0.0000025108,0.0000024844,0.0000024608, +0.0000024503,0.0000024602,0.0000025030,0.0000025538,0.0000025761, +0.0000025871,0.0000026235,0.0000026728,0.0000027185,0.0000027565, +0.0000027689,0.0000027659,0.0000027546,0.0000027419,0.0000027386, +0.0000027379,0.0000027348,0.0000027349,0.0000027377,0.0000027419, +0.0000027492,0.0000027551,0.0000027570,0.0000027565,0.0000027550, +0.0000027520,0.0000027482,0.0000027434,0.0000027381,0.0000027338, +0.0000027294,0.0000027227,0.0000027195,0.0000027193,0.0000027133, +0.0000027034,0.0000026941,0.0000026891,0.0000026891,0.0000026906, +0.0000026969,0.0000027083,0.0000027157,0.0000027147,0.0000027097, +0.0000027084,0.0000027113,0.0000027166,0.0000027214,0.0000027244, +0.0000027260,0.0000027251,0.0000027218,0.0000027202,0.0000027182, +0.0000027140,0.0000027113,0.0000027121,0.0000027132,0.0000027115, +0.0000027064,0.0000026966,0.0000026873,0.0000026856,0.0000026936, +0.0000027047,0.0000027083,0.0000027127,0.0000027169,0.0000027068, +0.0000026909,0.0000026862,0.0000026842,0.0000026815,0.0000026790, +0.0000026778,0.0000026790,0.0000026752,0.0000026700,0.0000026701, +0.0000026709,0.0000026665,0.0000026560,0.0000026480,0.0000026441, +0.0000026390,0.0000026350,0.0000026357,0.0000026399,0.0000026399, +0.0000026356,0.0000026311,0.0000026290,0.0000026266,0.0000026233, +0.0000026177,0.0000026040,0.0000025813,0.0000025563,0.0000025346, +0.0000025182,0.0000025072,0.0000025010,0.0000024998,0.0000025021, +0.0000025084,0.0000025181,0.0000025307,0.0000025438,0.0000025540, +0.0000025595,0.0000025606,0.0000025603,0.0000025557,0.0000025420, +0.0000025228,0.0000025076,0.0000024974,0.0000024891,0.0000024857, +0.0000024842,0.0000024730,0.0000024511,0.0000024300,0.0000024149, +0.0000024035,0.0000023941,0.0000023872,0.0000023832,0.0000023816, +0.0000023815,0.0000023825,0.0000023843,0.0000023864,0.0000023883, +0.0000023889,0.0000023879,0.0000023847,0.0000023798,0.0000023743, +0.0000023714,0.0000023751,0.0000023878,0.0000024007,0.0000024071, +0.0000024216,0.0000024395,0.0000024541,0.0000024652,0.0000024693, +0.0000024814,0.0000025206,0.0000025686,0.0000025938,0.0000026033, +0.0000026143,0.0000026265,0.0000026352,0.0000026370,0.0000026268, +0.0000026148,0.0000026032,0.0000025889,0.0000025669,0.0000025649, +0.0000025651,0.0000025443,0.0000025565,0.0000026300,0.0000027017, +0.0000027538,0.0000027735,0.0000027725,0.0000027694,0.0000027730, +0.0000027749,0.0000027632,0.0000027611,0.0000027656,0.0000027667, +0.0000027707,0.0000027764,0.0000027774,0.0000027725,0.0000027617, +0.0000027534,0.0000027502,0.0000027514,0.0000027547,0.0000027570, +0.0000027563,0.0000027559,0.0000027580,0.0000027599,0.0000027590, +0.0000027549,0.0000027475,0.0000027383,0.0000027308,0.0000027253, +0.0000027212,0.0000027147,0.0000027048,0.0000026950,0.0000026875, +0.0000026849,0.0000026865,0.0000026923,0.0000026997,0.0000027058, +0.0000027083,0.0000027086,0.0000027083,0.0000027066,0.0000027017, +0.0000026989,0.0000026983,0.0000026954,0.0000026879,0.0000026807, +0.0000026803,0.0000026818,0.0000026791,0.0000026769,0.0000026801, +0.0000026797,0.0000026759,0.0000026761,0.0000026771,0.0000026741, +0.0000026718,0.0000026738,0.0000026800,0.0000026847,0.0000026846, +0.0000026744,0.0000026522,0.0000026146,0.0000025813,0.0000025696, +0.0000025625,0.0000025508,0.0000025404,0.0000025358,0.0000025282, +0.0000025159,0.0000025188,0.0000025349,0.0000025370,0.0000025371, +0.0000025425,0.0000025448,0.0000025422,0.0000025399,0.0000025397, +0.0000025407,0.0000025422,0.0000025420,0.0000025358,0.0000025216, +0.0000025031,0.0000024866,0.0000024752,0.0000024662,0.0000024586, +0.0000024544,0.0000024536,0.0000024552,0.0000024572,0.0000024604, +0.0000024653,0.0000024696,0.0000024723,0.0000024727,0.0000024726, +0.0000024778,0.0000024968,0.0000025255,0.0000025500,0.0000025626, +0.0000025661,0.0000025667,0.0000025683,0.0000025698,0.0000025743, +0.0000025815,0.0000025873,0.0000025875,0.0000025869,0.0000025854, +0.0000025890,0.0000025887,0.0000025848,0.0000025762,0.0000025646, +0.0000025584,0.0000025655,0.0000025720,0.0000025660,0.0000025595, +0.0000025537,0.0000025479,0.0000025439,0.0000025401,0.0000025366, +0.0000025359,0.0000025366,0.0000025365,0.0000025363,0.0000025372, +0.0000025405,0.0000025402,0.0000025312,0.0000025175,0.0000025035, +0.0000024857,0.0000024728,0.0000024769,0.0000025045,0.0000025194, +0.0000025203,0.0000025262,0.0000025175,0.0000025084,0.0000025168, +0.0000025155,0.0000024995,0.0000024861,0.0000024854,0.0000024977, +0.0000025163,0.0000025235,0.0000025301,0.0000025637,0.0000026068, +0.0000026267,0.0000026315,0.0000026303,0.0000026210,0.0000026019, +0.0000025826,0.0000025759,0.0000025730,0.0000025647,0.0000025613, +0.0000025677,0.0000025770,0.0000025840,0.0000025912,0.0000025973, +0.0000026027,0.0000026078,0.0000026111,0.0000026115,0.0000026078, +0.0000026030,0.0000026004,0.0000026011,0.0000026055,0.0000026128, +0.0000026237,0.0000026343,0.0000026409,0.0000026447,0.0000026466, +0.0000026494,0.0000026533,0.0000026546,0.0000026539,0.0000026534, +0.0000026551,0.0000026568,0.0000026586,0.0000026599,0.0000026609, +0.0000026617,0.0000026630,0.0000026647,0.0000026665,0.0000026677, +0.0000026679,0.0000026679,0.0000026677,0.0000026679,0.0000026667, +0.0000026636,0.0000026589,0.0000026537,0.0000026501,0.0000026489, +0.0000026499,0.0000026531,0.0000026573,0.0000026618,0.0000026669, +0.0000026720,0.0000026762,0.0000026794,0.0000026813,0.0000026815, +0.0000026787,0.0000026719,0.0000026649,0.0000026606,0.0000026590, +0.0000026601,0.0000026622,0.0000026635,0.0000026620,0.0000026571, +0.0000026511,0.0000026497,0.0000026522,0.0000026563,0.0000026631, +0.0000026759,0.0000026940,0.0000027138,0.0000027321,0.0000027463, +0.0000027554,0.0000027619,0.0000027677,0.0000027709,0.0000027680, +0.0000027594,0.0000027500,0.0000027447,0.0000027445,0.0000027501, +0.0000027604,0.0000027714,0.0000027790,0.0000027803,0.0000027761, +0.0000027687,0.0000027631,0.0000027599,0.0000027564,0.0000027515, +0.0000027450,0.0000027366,0.0000027255,0.0000027132,0.0000027018, +0.0000026943,0.0000026909,0.0000026893,0.0000026884,0.0000026883, +0.0000026873,0.0000026833,0.0000026767,0.0000026692,0.0000026626, +0.0000026568,0.0000026502,0.0000026411,0.0000026302,0.0000026207, +0.0000026146,0.0000026123,0.0000026101,0.0000026094,0.0000026115, +0.0000026154,0.0000026193,0.0000026204,0.0000026169,0.0000026114, +0.0000026077,0.0000026067,0.0000026074,0.0000026093,0.0000026106, +0.0000026118,0.0000026158,0.0000026228,0.0000026313,0.0000026419, +0.0000026561,0.0000026749,0.0000026950,0.0000027097,0.0000027157, +0.0000027182,0.0000027245,0.0000027364,0.0000027523,0.0000027707, +0.0000027886,0.0000028024,0.0000028076,0.0000028072,0.0000028020, +0.0000027961,0.0000027938,0.0000027961,0.0000028012,0.0000028053, +0.0000028072,0.0000028082,0.0000028098,0.0000028112,0.0000028122, +0.0000028138,0.0000028154,0.0000028164,0.0000028169,0.0000028179, +0.0000028189,0.0000028181,0.0000028139,0.0000028075,0.0000027999, +0.0000027909,0.0000027816,0.0000027727,0.0000027643,0.0000027570, +0.0000027526,0.0000027475,0.0000027428,0.0000027436,0.0000027490, +0.0000027519,0.0000027490,0.0000027465,0.0000027532,0.0000027690, +0.0000027823,0.0000027870,0.0000027879,0.0000027943,0.0000028070, +0.0000028178,0.0000028223,0.0000028197,0.0000028143,0.0000028152, +0.0000028220,0.0000028254,0.0000028228,0.0000028145,0.0000028044, +0.0000027953,0.0000027868,0.0000027787,0.0000027685,0.0000027606, +0.0000027618,0.0000027732,0.0000027868,0.0000027963,0.0000028021, +0.0000028036,0.0000028017,0.0000027961,0.0000027894,0.0000027831, +0.0000027779,0.0000027738,0.0000027698,0.0000027664,0.0000027641, +0.0000027620,0.0000027586,0.0000027531,0.0000027461,0.0000027392, +0.0000027337,0.0000027306,0.0000027273,0.0000027218,0.0000027138, +0.0000027049,0.0000026991,0.0000026968,0.0000026957,0.0000026962, +0.0000026976,0.0000027000,0.0000027038,0.0000027085,0.0000027132, +0.0000027173,0.0000027201,0.0000027216,0.0000027220,0.0000027236, +0.0000027265,0.0000027296,0.0000027331,0.0000027376,0.0000027432, +0.0000027489,0.0000027535,0.0000027569,0.0000027589,0.0000027593, +0.0000027605,0.0000027625,0.0000027638,0.0000027638,0.0000027624, +0.0000027581,0.0000027529,0.0000027443,0.0000027376,0.0000027326, +0.0000027317,0.0000027336,0.0000027339,0.0000027311,0.0000027243, +0.0000027172,0.0000027124,0.0000027085,0.0000027070,0.0000027056, +0.0000027045,0.0000027035,0.0000027011,0.0000026955,0.0000026882, +0.0000026816,0.0000026771,0.0000026745,0.0000026724,0.0000026689, +0.0000026654,0.0000026613,0.0000026566,0.0000026529,0.0000026500, +0.0000026493,0.0000026504,0.0000026535,0.0000026584,0.0000026630, +0.0000026666,0.0000026703,0.0000026737,0.0000026782,0.0000026840, +0.0000026893,0.0000026917,0.0000026926,0.0000026944,0.0000026955, +0.0000026893,0.0000026757,0.0000026702,0.0000026723,0.0000026792, +0.0000026885,0.0000026940,0.0000026929,0.0000026955,0.0000026991, +0.0000026987,0.0000026856,0.0000026344,0.0000026016,0.0000025999, +0.0000026060,0.0000026301,0.0000026680,0.0000026980,0.0000027143, +0.0000027286,0.0000027518,0.0000027764,0.0000027931,0.0000028004, +0.0000028013,0.0000027980,0.0000027919,0.0000027857,0.0000027828, +0.0000027847,0.0000027869,0.0000027866,0.0000027843,0.0000027862, +0.0000027935,0.0000027993,0.0000027992,0.0000027947,0.0000027913, +0.0000027931,0.0000027962,0.0000027955,0.0000027902,0.0000027902, +0.0000027955,0.0000027961,0.0000027928,0.0000027848,0.0000027776, +0.0000027782,0.0000027870,0.0000028067,0.0000028270,0.0000028370, +0.0000028323,0.0000028142,0.0000028056,0.0000028076,0.0000028024, +0.0000027979,0.0000027941,0.0000027929,0.0000028078,0.0000028223, +0.0000028304,0.0000028387,0.0000028447,0.0000028499,0.0000028566, +0.0000028620,0.0000028629,0.0000028595,0.0000028530,0.0000028440, +0.0000028337,0.0000028239,0.0000028167,0.0000028129,0.0000028108, +0.0000028054,0.0000027946,0.0000027811,0.0000027697,0.0000027629, +0.0000027619,0.0000027642,0.0000027670,0.0000027675,0.0000027613, +0.0000027452,0.0000027228,0.0000027025,0.0000026908,0.0000026878, +0.0000026890,0.0000026971,0.0000027113,0.0000027249,0.0000027367, +0.0000027515,0.0000027680,0.0000027808,0.0000027906,0.0000027975, +0.0000027991,0.0000027987,0.0000027978,0.0000027951,0.0000027874, +0.0000027768,0.0000027669,0.0000027536,0.0000027333,0.0000027120, +0.0000026949,0.0000026802,0.0000026629,0.0000026413,0.0000026185, +0.0000026018,0.0000025961,0.0000025964,0.0000025966,0.0000025963, +0.0000025971,0.0000025968,0.0000025962,0.0000025941,0.0000025909, +0.0000025869,0.0000025814,0.0000025761,0.0000025728,0.0000025713, +0.0000025702,0.0000025680,0.0000025645,0.0000025614,0.0000025593, +0.0000025572,0.0000025557,0.0000025581,0.0000025743,0.0000026003, +0.0000026239,0.0000026362,0.0000026389,0.0000026379,0.0000026378, +0.0000026402,0.0000026436,0.0000026453,0.0000026437,0.0000026367, +0.0000026276,0.0000026217,0.0000026219,0.0000026276,0.0000026346, +0.0000026383,0.0000026385,0.0000026367,0.0000026338,0.0000026317, +0.0000026313,0.0000026338,0.0000026390,0.0000026465,0.0000026558, +0.0000026658,0.0000026744,0.0000026808,0.0000026858,0.0000026910, +0.0000026977,0.0000027057,0.0000027137,0.0000027201,0.0000027241, +0.0000027240,0.0000027189,0.0000027088,0.0000026952,0.0000026830, +0.0000026759,0.0000026752,0.0000026801,0.0000026888,0.0000026973, +0.0000027019,0.0000027033,0.0000027043,0.0000027063,0.0000027080, +0.0000027080,0.0000027058,0.0000027033,0.0000027057,0.0000027169, +0.0000027345,0.0000027467,0.0000027503,0.0000027475,0.0000027464, +0.0000027503,0.0000027580,0.0000027652,0.0000027705,0.0000027746, +0.0000027764,0.0000027752,0.0000027733,0.0000027730,0.0000027732, +0.0000027736,0.0000027742,0.0000027760,0.0000027767,0.0000027732, +0.0000027659,0.0000027594,0.0000027576,0.0000027592,0.0000027601, +0.0000027583,0.0000027543,0.0000027501,0.0000027486,0.0000027503, +0.0000027557,0.0000027640,0.0000027699,0.0000027732,0.0000027765, +0.0000027792,0.0000027796,0.0000027774,0.0000027723,0.0000027664, +0.0000027614,0.0000027590,0.0000027585,0.0000027598,0.0000027637, +0.0000027682,0.0000027721,0.0000027761,0.0000027782,0.0000027770, +0.0000027746,0.0000027743,0.0000027768,0.0000027798,0.0000027804, +0.0000027759,0.0000027646,0.0000027488,0.0000027338,0.0000027241, +0.0000027177,0.0000027097,0.0000026997,0.0000026904,0.0000026835, +0.0000026792,0.0000026765,0.0000026742,0.0000026719,0.0000026685, +0.0000026636,0.0000026593,0.0000026567,0.0000026551,0.0000026525, +0.0000026503,0.0000026501,0.0000026507,0.0000026494,0.0000026445, +0.0000026377,0.0000026333,0.0000026330,0.0000026372,0.0000026432, +0.0000026463,0.0000026455,0.0000026419,0.0000026375,0.0000026353, +0.0000026354,0.0000026357,0.0000026360,0.0000026368,0.0000026369, +0.0000026351,0.0000026314,0.0000026268,0.0000026220,0.0000026168, +0.0000026114,0.0000026065,0.0000026021,0.0000025978,0.0000025936, +0.0000025908,0.0000025911,0.0000025949,0.0000025990,0.0000025991, +0.0000025941,0.0000025886,0.0000025862,0.0000025846,0.0000025791, +0.0000025705,0.0000025647,0.0000025611,0.0000025508,0.0000025354, +0.0000025265,0.0000025243,0.0000025239,0.0000025265,0.0000025306, +0.0000025278,0.0000025125,0.0000024873,0.0000024611,0.0000024446, +0.0000024490,0.0000024856,0.0000025409,0.0000025713,0.0000025820, +0.0000026136,0.0000026640,0.0000027112,0.0000027513,0.0000027688, +0.0000027661,0.0000027544,0.0000027388,0.0000027312,0.0000027288, +0.0000027284,0.0000027333,0.0000027399,0.0000027439,0.0000027489, +0.0000027545,0.0000027577,0.0000027576,0.0000027559,0.0000027531, +0.0000027494,0.0000027446,0.0000027390,0.0000027342,0.0000027307, +0.0000027250,0.0000027183,0.0000027176,0.0000027159,0.0000027080, +0.0000026983,0.0000026903,0.0000026876,0.0000026887,0.0000026922, +0.0000026998,0.0000027103,0.0000027169,0.0000027169,0.0000027128, +0.0000027091,0.0000027079,0.0000027077,0.0000027096,0.0000027122, +0.0000027141,0.0000027143,0.0000027155,0.0000027158,0.0000027147, +0.0000027141,0.0000027156,0.0000027165,0.0000027146,0.0000027088, +0.0000026980,0.0000026877,0.0000026842,0.0000026913,0.0000027034, +0.0000027067,0.0000027099,0.0000027148,0.0000027076,0.0000026903, +0.0000026837,0.0000026824,0.0000026805,0.0000026795,0.0000026789, +0.0000026784,0.0000026735,0.0000026697,0.0000026708,0.0000026720, +0.0000026682,0.0000026589,0.0000026506,0.0000026461,0.0000026410, +0.0000026370,0.0000026383,0.0000026433,0.0000026436,0.0000026390, +0.0000026340,0.0000026310,0.0000026279,0.0000026238,0.0000026148, +0.0000025951,0.0000025671,0.0000025385,0.0000025143,0.0000024968, +0.0000024849,0.0000024773,0.0000024740,0.0000024737,0.0000024763, +0.0000024824,0.0000024920,0.0000025045,0.0000025193,0.0000025336, +0.0000025438,0.0000025476,0.0000025465,0.0000025391,0.0000025244, +0.0000025081,0.0000024958,0.0000024857,0.0000024788,0.0000024778, +0.0000024754,0.0000024596,0.0000024356,0.0000024165,0.0000024049, +0.0000023966,0.0000023905,0.0000023866,0.0000023847,0.0000023840, +0.0000023838,0.0000023844,0.0000023859,0.0000023876,0.0000023893, +0.0000023901,0.0000023893,0.0000023867,0.0000023823,0.0000023762, +0.0000023694,0.0000023652,0.0000023718,0.0000023892,0.0000024000, +0.0000024107,0.0000024304,0.0000024470,0.0000024562,0.0000024605, +0.0000024647,0.0000024851,0.0000025294,0.0000025723,0.0000025917, +0.0000026017,0.0000026147,0.0000026280,0.0000026356,0.0000026295, +0.0000026171,0.0000026058,0.0000025906,0.0000025691,0.0000025670, +0.0000025673,0.0000025436,0.0000025549,0.0000026282,0.0000026991, +0.0000027514,0.0000027728,0.0000027726,0.0000027699,0.0000027726, +0.0000027748,0.0000027636,0.0000027613,0.0000027664,0.0000027682, +0.0000027719,0.0000027770,0.0000027789,0.0000027766,0.0000027682, +0.0000027592,0.0000027551,0.0000027556,0.0000027589,0.0000027620, +0.0000027625,0.0000027618,0.0000027618,0.0000027611,0.0000027589, +0.0000027526,0.0000027433,0.0000027338,0.0000027273,0.0000027242, +0.0000027238,0.0000027193,0.0000027107,0.0000027017,0.0000026946, +0.0000026911,0.0000026913,0.0000026948,0.0000027000,0.0000027044, +0.0000027050,0.0000027044,0.0000027052,0.0000027053,0.0000027022, +0.0000026996,0.0000026992,0.0000026975,0.0000026902,0.0000026807, +0.0000026754,0.0000026761,0.0000026789,0.0000026775,0.0000026772, +0.0000026799,0.0000026792,0.0000026776,0.0000026780,0.0000026761, +0.0000026730,0.0000026735,0.0000026778,0.0000026828,0.0000026826, +0.0000026724,0.0000026514,0.0000026155,0.0000025831,0.0000025705, +0.0000025618,0.0000025489,0.0000025388,0.0000025345,0.0000025257, +0.0000025159,0.0000025251,0.0000025388,0.0000025363,0.0000025370, +0.0000025426,0.0000025445,0.0000025422,0.0000025399,0.0000025390, +0.0000025396,0.0000025419,0.0000025439,0.0000025432,0.0000025345, +0.0000025156,0.0000024937,0.0000024774,0.0000024667,0.0000024569, +0.0000024501,0.0000024482,0.0000024487,0.0000024496,0.0000024515, +0.0000024565,0.0000024637,0.0000024707,0.0000024750,0.0000024750, +0.0000024728,0.0000024704,0.0000024801,0.0000025057,0.0000025376, +0.0000025611,0.0000025723,0.0000025765,0.0000025765,0.0000025780, +0.0000025816,0.0000025852,0.0000025865,0.0000025881,0.0000025868, +0.0000025871,0.0000025903,0.0000025870,0.0000025806,0.0000025714, +0.0000025605,0.0000025563,0.0000025664,0.0000025702,0.0000025665, +0.0000025627,0.0000025576,0.0000025510,0.0000025459,0.0000025419, +0.0000025386,0.0000025382,0.0000025397,0.0000025405,0.0000025388, +0.0000025362,0.0000025359,0.0000025366,0.0000025343,0.0000025295, +0.0000025175,0.0000024941,0.0000024726,0.0000024712,0.0000024947, +0.0000025167,0.0000025175,0.0000025227,0.0000025216,0.0000025098, +0.0000025120,0.0000025180,0.0000025081,0.0000024906,0.0000024842, +0.0000024881,0.0000025042,0.0000025189,0.0000025206,0.0000025321, +0.0000025732,0.0000026141,0.0000026290,0.0000026301,0.0000026273, +0.0000026127,0.0000025925,0.0000025784,0.0000025750,0.0000025697, +0.0000025609,0.0000025592,0.0000025667,0.0000025777,0.0000025861, +0.0000025930,0.0000025991,0.0000026044,0.0000026085,0.0000026094, +0.0000026053,0.0000025998,0.0000025975,0.0000025987,0.0000026028, +0.0000026087,0.0000026177,0.0000026276,0.0000026360,0.0000026423, +0.0000026454,0.0000026487,0.0000026529,0.0000026546,0.0000026544, +0.0000026542,0.0000026551,0.0000026559,0.0000026569,0.0000026572, +0.0000026574,0.0000026573,0.0000026575,0.0000026581,0.0000026592, +0.0000026602,0.0000026604,0.0000026596,0.0000026586,0.0000026579, +0.0000026565,0.0000026536,0.0000026492,0.0000026443,0.0000026401, +0.0000026373,0.0000026367,0.0000026399,0.0000026457,0.0000026519, +0.0000026580,0.0000026640,0.0000026694,0.0000026735,0.0000026756, +0.0000026760,0.0000026744,0.0000026682,0.0000026596,0.0000026528, +0.0000026494,0.0000026494,0.0000026537,0.0000026592,0.0000026619, +0.0000026611,0.0000026567,0.0000026539,0.0000026554,0.0000026609, +0.0000026707,0.0000026861,0.0000027051,0.0000027232,0.0000027379, +0.0000027489,0.0000027561,0.0000027608,0.0000027645,0.0000027654, +0.0000027613,0.0000027502,0.0000027387,0.0000027341,0.0000027370, +0.0000027489,0.0000027633,0.0000027738,0.0000027791,0.0000027792, +0.0000027736,0.0000027666,0.0000027624,0.0000027601,0.0000027573, +0.0000027520,0.0000027433,0.0000027301,0.0000027136,0.0000026995, +0.0000026909,0.0000026884,0.0000026885,0.0000026870,0.0000026826, +0.0000026766,0.0000026702,0.0000026637,0.0000026574,0.0000026523, +0.0000026482,0.0000026444,0.0000026394,0.0000026321,0.0000026228, +0.0000026139,0.0000026082,0.0000026048,0.0000026019,0.0000026007, +0.0000026021,0.0000026052,0.0000026083,0.0000026092,0.0000026061, +0.0000026015,0.0000025994,0.0000026001,0.0000026027,0.0000026060, +0.0000026088,0.0000026108,0.0000026144,0.0000026215,0.0000026302, +0.0000026403,0.0000026515,0.0000026660,0.0000026843,0.0000027027, +0.0000027138,0.0000027154,0.0000027161,0.0000027242,0.0000027404, +0.0000027593,0.0000027781,0.0000027939,0.0000028045,0.0000028078, +0.0000028058,0.0000028025,0.0000027995,0.0000027991,0.0000028013, +0.0000028049,0.0000028078,0.0000028100,0.0000028131,0.0000028171, +0.0000028203,0.0000028209,0.0000028201,0.0000028184,0.0000028166, +0.0000028153,0.0000028143,0.0000028120,0.0000028067,0.0000027986, +0.0000027895,0.0000027810,0.0000027739,0.0000027675,0.0000027612, +0.0000027537,0.0000027469,0.0000027400,0.0000027350,0.0000027349, +0.0000027384,0.0000027406,0.0000027384,0.0000027347,0.0000027370, +0.0000027515,0.0000027706,0.0000027833,0.0000027863,0.0000027867, +0.0000027937,0.0000028069,0.0000028166,0.0000028204,0.0000028176, +0.0000028119,0.0000028131,0.0000028206,0.0000028239,0.0000028211, +0.0000028133,0.0000028042,0.0000027960,0.0000027895,0.0000027813, +0.0000027698,0.0000027621,0.0000027642,0.0000027762,0.0000027905, +0.0000028010,0.0000028068,0.0000028076,0.0000028057,0.0000028007, +0.0000027934,0.0000027854,0.0000027784,0.0000027730,0.0000027686, +0.0000027648,0.0000027618,0.0000027592,0.0000027560,0.0000027511, +0.0000027441,0.0000027370,0.0000027317,0.0000027265,0.0000027177, +0.0000027043,0.0000026891,0.0000026769,0.0000026713,0.0000026692, +0.0000026670,0.0000026660,0.0000026674,0.0000026709,0.0000026764, +0.0000026830,0.0000026902,0.0000026972,0.0000027035,0.0000027084, +0.0000027127,0.0000027171,0.0000027208,0.0000027239,0.0000027271, +0.0000027310,0.0000027358,0.0000027402,0.0000027435,0.0000027456, +0.0000027463,0.0000027462,0.0000027468,0.0000027484,0.0000027501, +0.0000027514,0.0000027514,0.0000027489,0.0000027447,0.0000027393, +0.0000027338,0.0000027297,0.0000027292,0.0000027303,0.0000027297, +0.0000027266,0.0000027201,0.0000027137,0.0000027090,0.0000027063, +0.0000027060,0.0000027056,0.0000027050,0.0000027035,0.0000026993, +0.0000026930,0.0000026860,0.0000026801,0.0000026764,0.0000026734, +0.0000026702,0.0000026661,0.0000026614,0.0000026567,0.0000026520, +0.0000026481,0.0000026480,0.0000026501,0.0000026544,0.0000026604, +0.0000026668,0.0000026716,0.0000026748,0.0000026778,0.0000026809, +0.0000026841,0.0000026878,0.0000026910,0.0000026924,0.0000026926, +0.0000026934,0.0000026939,0.0000026877,0.0000026749,0.0000026701, +0.0000026728,0.0000026788,0.0000026845,0.0000026900,0.0000026902, +0.0000026894,0.0000026968,0.0000026990,0.0000026968,0.0000026728, +0.0000026202,0.0000025975,0.0000025977,0.0000026065,0.0000026348, +0.0000026745,0.0000027037,0.0000027175,0.0000027274,0.0000027442, +0.0000027647,0.0000027805,0.0000027890,0.0000027900,0.0000027856, +0.0000027790,0.0000027748,0.0000027762,0.0000027801,0.0000027815, +0.0000027808,0.0000027824,0.0000027880,0.0000027949,0.0000027979, +0.0000027969,0.0000027940,0.0000027939,0.0000027964,0.0000027976, +0.0000027928,0.0000027895,0.0000027943,0.0000027965,0.0000027932, +0.0000027872,0.0000027812,0.0000027806,0.0000027861,0.0000028027, +0.0000028227,0.0000028347,0.0000028342,0.0000028187,0.0000028031, +0.0000028044,0.0000028051,0.0000027980,0.0000027955,0.0000027919, +0.0000027957,0.0000028119,0.0000028224,0.0000028290,0.0000028352, +0.0000028395,0.0000028433,0.0000028476,0.0000028497,0.0000028485, +0.0000028432,0.0000028346,0.0000028245,0.0000028159,0.0000028109, +0.0000028083,0.0000028035,0.0000027931,0.0000027789,0.0000027668, +0.0000027606,0.0000027602,0.0000027632,0.0000027668,0.0000027680, +0.0000027659,0.0000027576,0.0000027419,0.0000027198,0.0000026995, +0.0000026889,0.0000026876,0.0000026906,0.0000026981,0.0000027095, +0.0000027206,0.0000027256,0.0000027317,0.0000027446,0.0000027609, +0.0000027760,0.0000027868,0.0000027900,0.0000027894,0.0000027887, +0.0000027869,0.0000027805,0.0000027702,0.0000027609,0.0000027506, +0.0000027340,0.0000027140,0.0000026968,0.0000026824,0.0000026659, +0.0000026456,0.0000026243,0.0000026081,0.0000026019,0.0000026021, +0.0000026028,0.0000026024,0.0000026007,0.0000025974,0.0000025935, +0.0000025905,0.0000025891,0.0000025877,0.0000025845,0.0000025798, +0.0000025757,0.0000025736,0.0000025728,0.0000025718,0.0000025699, +0.0000025660,0.0000025625,0.0000025591,0.0000025565,0.0000025548, +0.0000025536,0.0000025558,0.0000025714,0.0000025957,0.0000026169, +0.0000026274,0.0000026296,0.0000026289,0.0000026297,0.0000026338, +0.0000026383,0.0000026397,0.0000026360,0.0000026288,0.0000026220, +0.0000026186,0.0000026180,0.0000026196,0.0000026213,0.0000026227, +0.0000026248,0.0000026272,0.0000026285,0.0000026295,0.0000026313, +0.0000026340,0.0000026396,0.0000026482,0.0000026579,0.0000026667, +0.0000026728,0.0000026759,0.0000026771,0.0000026793,0.0000026843, +0.0000026915,0.0000026997,0.0000027083,0.0000027157,0.0000027193, +0.0000027184,0.0000027120,0.0000027020,0.0000026914,0.0000026830, +0.0000026798,0.0000026809,0.0000026868,0.0000026939,0.0000026985, +0.0000027001,0.0000027007,0.0000027022,0.0000027050,0.0000027078, +0.0000027084,0.0000027074,0.0000027097,0.0000027198,0.0000027366, +0.0000027492,0.0000027509,0.0000027470,0.0000027452,0.0000027500, +0.0000027572,0.0000027628,0.0000027679,0.0000027725,0.0000027741, +0.0000027731,0.0000027724,0.0000027725,0.0000027731,0.0000027750, +0.0000027788,0.0000027833,0.0000027842,0.0000027793,0.0000027717, +0.0000027660,0.0000027636,0.0000027635,0.0000027634,0.0000027609, +0.0000027553,0.0000027502,0.0000027489,0.0000027505,0.0000027566, +0.0000027626,0.0000027680,0.0000027738,0.0000027779,0.0000027794, +0.0000027787,0.0000027741,0.0000027674,0.0000027617,0.0000027591, +0.0000027586,0.0000027598,0.0000027629,0.0000027664,0.0000027700, +0.0000027745,0.0000027786,0.0000027791,0.0000027780,0.0000027772, +0.0000027781,0.0000027802,0.0000027820,0.0000027823,0.0000027786, +0.0000027680,0.0000027528,0.0000027388,0.0000027290,0.0000027204, +0.0000027091,0.0000026969,0.0000026877,0.0000026820,0.0000026787, +0.0000026763,0.0000026739,0.0000026705,0.0000026654,0.0000026611, +0.0000026592,0.0000026593,0.0000026576,0.0000026542,0.0000026521, +0.0000026518,0.0000026504,0.0000026457,0.0000026386,0.0000026337, +0.0000026334,0.0000026369,0.0000026417,0.0000026432,0.0000026414, +0.0000026359,0.0000026300,0.0000026269,0.0000026269,0.0000026280, +0.0000026294,0.0000026314,0.0000026323,0.0000026310,0.0000026277, +0.0000026232,0.0000026183,0.0000026139,0.0000026100,0.0000026063, +0.0000026034,0.0000026005,0.0000025965,0.0000025925,0.0000025915, +0.0000025940,0.0000025966,0.0000025949,0.0000025894,0.0000025842, +0.0000025819,0.0000025784,0.0000025716,0.0000025652,0.0000025618, +0.0000025550,0.0000025393,0.0000025248,0.0000025209,0.0000025220, +0.0000025222,0.0000025228,0.0000025253,0.0000025244,0.0000025137, +0.0000024916,0.0000024646,0.0000024429,0.0000024394,0.0000024692, +0.0000025260,0.0000025656,0.0000025772,0.0000026042,0.0000026556, +0.0000027042,0.0000027449,0.0000027670,0.0000027667,0.0000027546, +0.0000027375,0.0000027259,0.0000027224,0.0000027241,0.0000027319, +0.0000027407,0.0000027446,0.0000027480,0.0000027518,0.0000027549, +0.0000027553,0.0000027534,0.0000027497,0.0000027461,0.0000027420, +0.0000027368,0.0000027321,0.0000027290,0.0000027264,0.0000027196, +0.0000027145,0.0000027145,0.0000027106,0.0000027015,0.0000026934, +0.0000026885,0.0000026875,0.0000026890,0.0000026940,0.0000027012, +0.0000027097,0.0000027157,0.0000027172,0.0000027157,0.0000027120, +0.0000027086,0.0000027069,0.0000027083,0.0000027118,0.0000027147, +0.0000027163,0.0000027171,0.0000027161,0.0000027150,0.0000027161, +0.0000027172,0.0000027164,0.0000027119,0.0000027010,0.0000026895, +0.0000026843,0.0000026894,0.0000027019,0.0000027056,0.0000027079, +0.0000027125,0.0000027091,0.0000026917,0.0000026814,0.0000026799, +0.0000026788,0.0000026792,0.0000026792,0.0000026780,0.0000026726, +0.0000026691,0.0000026705,0.0000026724,0.0000026709,0.0000026646, +0.0000026567,0.0000026514,0.0000026465,0.0000026424,0.0000026432, +0.0000026479,0.0000026476,0.0000026428,0.0000026373,0.0000026332, +0.0000026290,0.0000026228,0.0000026085,0.0000025824,0.0000025501, +0.0000025195,0.0000024946,0.0000024770,0.0000024669,0.0000024624, +0.0000024610,0.0000024606,0.0000024596,0.0000024591,0.0000024609, +0.0000024686,0.0000024823,0.0000024986,0.0000025137,0.0000025252, +0.0000025301,0.0000025288,0.0000025206,0.0000025072,0.0000024946, +0.0000024843,0.0000024748,0.0000024700,0.0000024695,0.0000024634, +0.0000024431,0.0000024213,0.0000024089,0.0000024030,0.0000023988, +0.0000023952,0.0000023923,0.0000023898,0.0000023872,0.0000023852, +0.0000023849,0.0000023862,0.0000023880,0.0000023896,0.0000023900, +0.0000023895,0.0000023866,0.0000023822,0.0000023781,0.0000023713, +0.0000023613,0.0000023605,0.0000023739,0.0000023916,0.0000024012, +0.0000024186,0.0000024381,0.0000024474,0.0000024507,0.0000024546, +0.0000024634,0.0000024893,0.0000025343,0.0000025729,0.0000025918, +0.0000026044,0.0000026184,0.0000026307,0.0000026303,0.0000026182, +0.0000026070,0.0000025907,0.0000025702,0.0000025691,0.0000025678, +0.0000025415,0.0000025529,0.0000026272,0.0000026979,0.0000027492, +0.0000027723,0.0000027734,0.0000027701,0.0000027718,0.0000027744, +0.0000027642,0.0000027601,0.0000027657,0.0000027686,0.0000027730, +0.0000027780,0.0000027798,0.0000027790,0.0000027745,0.0000027662, +0.0000027612,0.0000027614,0.0000027642,0.0000027670,0.0000027676, +0.0000027664,0.0000027639,0.0000027606,0.0000027556,0.0000027476, +0.0000027381,0.0000027298,0.0000027248,0.0000027242,0.0000027270, +0.0000027243,0.0000027159,0.0000027079,0.0000027029,0.0000026997, +0.0000026984,0.0000026993,0.0000027019,0.0000027044,0.0000027037, +0.0000027019,0.0000027028,0.0000027038,0.0000027022,0.0000027004, +0.0000026995,0.0000026971,0.0000026897,0.0000026812,0.0000026753, +0.0000026723,0.0000026734,0.0000026769,0.0000026771,0.0000026778, +0.0000026801,0.0000026802,0.0000026803,0.0000026786,0.0000026739, +0.0000026722,0.0000026748,0.0000026794,0.0000026798,0.0000026708, +0.0000026526,0.0000026198,0.0000025867,0.0000025735,0.0000025644, +0.0000025505,0.0000025400,0.0000025351,0.0000025260,0.0000025180, +0.0000025315,0.0000025411,0.0000025368,0.0000025374,0.0000025417, +0.0000025432,0.0000025424,0.0000025404,0.0000025389,0.0000025387, +0.0000025404,0.0000025429,0.0000025445,0.0000025432,0.0000025308, +0.0000025064,0.0000024819,0.0000024674,0.0000024572,0.0000024482, +0.0000024438,0.0000024436,0.0000024431,0.0000024432,0.0000024471, +0.0000024558,0.0000024669,0.0000024747,0.0000024783,0.0000024776, +0.0000024731,0.0000024680,0.0000024710,0.0000024917,0.0000025244, +0.0000025564,0.0000025766,0.0000025837,0.0000025837,0.0000025834, +0.0000025841,0.0000025845,0.0000025864,0.0000025871,0.0000025864, +0.0000025890,0.0000025909,0.0000025826,0.0000025755,0.0000025669, +0.0000025563,0.0000025543,0.0000025662,0.0000025703,0.0000025686, +0.0000025661,0.0000025602,0.0000025523,0.0000025471,0.0000025437, +0.0000025401,0.0000025388,0.0000025399,0.0000025410,0.0000025403, +0.0000025371,0.0000025343,0.0000025325,0.0000025332,0.0000025363, +0.0000025301,0.0000025070,0.0000024779,0.0000024696,0.0000024864, +0.0000025124,0.0000025173,0.0000025193,0.0000025246,0.0000025149, +0.0000025077,0.0000025158,0.0000025150,0.0000024995,0.0000024857, +0.0000024841,0.0000024936,0.0000025088,0.0000025160,0.0000025154, +0.0000025358,0.0000025852,0.0000026199,0.0000026292,0.0000026281, +0.0000026216,0.0000026042,0.0000025865,0.0000025771,0.0000025738, +0.0000025662,0.0000025574,0.0000025568,0.0000025675,0.0000025794, +0.0000025885,0.0000025956,0.0000026009,0.0000026053,0.0000026061, +0.0000026021,0.0000025973,0.0000025960,0.0000025985,0.0000026032, +0.0000026085,0.0000026165,0.0000026248,0.0000026322,0.0000026376, +0.0000026408,0.0000026439,0.0000026477,0.0000026502,0.0000026512, +0.0000026511,0.0000026505,0.0000026503,0.0000026503,0.0000026500, +0.0000026495,0.0000026489,0.0000026483,0.0000026486,0.0000026496, +0.0000026503,0.0000026501,0.0000026492,0.0000026482,0.0000026473, +0.0000026458,0.0000026432,0.0000026396,0.0000026357,0.0000026318, +0.0000026275,0.0000026240,0.0000026244,0.0000026296,0.0000026366, +0.0000026438,0.0000026512,0.0000026588,0.0000026655,0.0000026698, +0.0000026715,0.0000026711,0.0000026662,0.0000026570,0.0000026484, +0.0000026446,0.0000026446,0.0000026481,0.0000026541,0.0000026595, +0.0000026619,0.0000026609,0.0000026588,0.0000026605,0.0000026684, +0.0000026814,0.0000026975,0.0000027145,0.0000027297,0.0000027412, +0.0000027495,0.0000027550,0.0000027580,0.0000027586,0.0000027571, +0.0000027510,0.0000027393,0.0000027276,0.0000027239,0.0000027315, +0.0000027480,0.0000027641,0.0000027737,0.0000027768,0.0000027760, +0.0000027716,0.0000027654,0.0000027611,0.0000027595,0.0000027566, +0.0000027485,0.0000027338,0.0000027162,0.0000027014,0.0000026935, +0.0000026903,0.0000026872,0.0000026814,0.0000026726,0.0000026632, +0.0000026545,0.0000026472,0.0000026420,0.0000026387,0.0000026367, +0.0000026350,0.0000026328,0.0000026290,0.0000026235,0.0000026171, +0.0000026114,0.0000026068,0.0000026029,0.0000025992,0.0000025962, +0.0000025948,0.0000025950,0.0000025956,0.0000025948,0.0000025914, +0.0000025877,0.0000025873,0.0000025911,0.0000025968,0.0000026022, +0.0000026063,0.0000026092,0.0000026123,0.0000026186,0.0000026277, +0.0000026384,0.0000026495,0.0000026616,0.0000026758,0.0000026925, +0.0000027073,0.0000027137,0.0000027131,0.0000027139,0.0000027246, +0.0000027437,0.0000027649,0.0000027833,0.0000027965,0.0000028033, +0.0000028048,0.0000028040,0.0000028032,0.0000028038,0.0000028040, +0.0000028053,0.0000028071,0.0000028088,0.0000028117,0.0000028160, +0.0000028197,0.0000028209,0.0000028192,0.0000028155,0.0000028114, +0.0000028074,0.0000028041,0.0000028006,0.0000027946,0.0000027862, +0.0000027772,0.0000027699,0.0000027651,0.0000027619,0.0000027576, +0.0000027508,0.0000027427,0.0000027344,0.0000027287,0.0000027272, +0.0000027275,0.0000027270,0.0000027237,0.0000027202,0.0000027211, +0.0000027310,0.0000027499,0.0000027699,0.0000027822,0.0000027848, +0.0000027844,0.0000027918,0.0000028057,0.0000028157,0.0000028187, +0.0000028152,0.0000028087,0.0000028104,0.0000028186,0.0000028219, +0.0000028192,0.0000028124,0.0000028043,0.0000027970,0.0000027907, +0.0000027818,0.0000027707,0.0000027646,0.0000027682,0.0000027801, +0.0000027941,0.0000028049,0.0000028105,0.0000028118,0.0000028106, +0.0000028067,0.0000027994,0.0000027901,0.0000027810,0.0000027733, +0.0000027670,0.0000027624,0.0000027597,0.0000027585,0.0000027568, +0.0000027526,0.0000027452,0.0000027370,0.0000027297,0.0000027200, +0.0000027026,0.0000026788,0.0000026578,0.0000026482,0.0000026468, +0.0000026463,0.0000026436,0.0000026402,0.0000026378,0.0000026376, +0.0000026400,0.0000026445,0.0000026514,0.0000026595,0.0000026683, +0.0000026780,0.0000026893,0.0000026999,0.0000027086,0.0000027161, +0.0000027229,0.0000027289,0.0000027337,0.0000027370,0.0000027388, +0.0000027389,0.0000027379,0.0000027360,0.0000027352,0.0000027358, +0.0000027369,0.0000027387,0.0000027393,0.0000027379,0.0000027355, +0.0000027322,0.0000027285,0.0000027261,0.0000027262,0.0000027270, +0.0000027264,0.0000027228,0.0000027164,0.0000027102,0.0000027045, +0.0000027021,0.0000027029,0.0000027035,0.0000027032,0.0000027013, +0.0000026968,0.0000026904,0.0000026833,0.0000026776,0.0000026735, +0.0000026697,0.0000026656,0.0000026610,0.0000026567,0.0000026529, +0.0000026492,0.0000026478,0.0000026506,0.0000026564,0.0000026632, +0.0000026700,0.0000026755,0.0000026788,0.0000026801,0.0000026813, +0.0000026832,0.0000026855,0.0000026884,0.0000026911,0.0000026924, +0.0000026924,0.0000026922,0.0000026912,0.0000026849,0.0000026743, +0.0000026711,0.0000026743,0.0000026799,0.0000026826,0.0000026851, +0.0000026876,0.0000026859,0.0000026915,0.0000026985,0.0000026969, +0.0000026923,0.0000026588,0.0000026095,0.0000025934,0.0000025968, +0.0000026077,0.0000026393,0.0000026783,0.0000027058,0.0000027181, +0.0000027243,0.0000027345,0.0000027502,0.0000027658,0.0000027755, +0.0000027775,0.0000027732,0.0000027664,0.0000027637,0.0000027654, +0.0000027688,0.0000027723,0.0000027772,0.0000027824,0.0000027880, +0.0000027928,0.0000027954,0.0000027950,0.0000027945,0.0000027963, +0.0000027993,0.0000027970,0.0000027911,0.0000027934,0.0000027968, +0.0000027937,0.0000027889,0.0000027845,0.0000027836,0.0000027864, +0.0000027992,0.0000028180,0.0000028310,0.0000028336,0.0000028223, +0.0000028035,0.0000027987,0.0000028046,0.0000028012,0.0000027954, +0.0000027943,0.0000027915,0.0000027992,0.0000028140,0.0000028217, +0.0000028260,0.0000028299,0.0000028325,0.0000028348,0.0000028361, +0.0000028354,0.0000028320,0.0000028266,0.0000028200,0.0000028136, +0.0000028084,0.0000028022,0.0000027919,0.0000027778,0.0000027648, +0.0000027579,0.0000027568,0.0000027591,0.0000027629,0.0000027658, +0.0000027656,0.0000027612,0.0000027527,0.0000027374,0.0000027149, +0.0000026953,0.0000026875,0.0000026882,0.0000026937,0.0000027018, +0.0000027125,0.0000027232,0.0000027265,0.0000027265,0.0000027294, +0.0000027385,0.0000027528,0.0000027682,0.0000027761,0.0000027762, +0.0000027754,0.0000027749,0.0000027696,0.0000027595,0.0000027507, +0.0000027431,0.0000027303,0.0000027132,0.0000026980,0.0000026847, +0.0000026689,0.0000026491,0.0000026286,0.0000026133,0.0000026070, +0.0000026065,0.0000026061,0.0000026042,0.0000025994,0.0000025927, +0.0000025874,0.0000025851,0.0000025843,0.0000025834,0.0000025808, +0.0000025763,0.0000025710,0.0000025671,0.0000025661,0.0000025669, +0.0000025678,0.0000025679,0.0000025671,0.0000025639,0.0000025610, +0.0000025576,0.0000025552,0.0000025512,0.0000025464,0.0000025482, +0.0000025643,0.0000025881,0.0000026080,0.0000026178,0.0000026200, +0.0000026202,0.0000026227,0.0000026279,0.0000026322,0.0000026327, +0.0000026289,0.0000026229,0.0000026162,0.0000026109,0.0000026082, +0.0000026090,0.0000026138,0.0000026210,0.0000026273,0.0000026305, +0.0000026319,0.0000026325,0.0000026331,0.0000026350,0.0000026400, +0.0000026480,0.0000026568,0.0000026643,0.0000026688,0.0000026705, +0.0000026709,0.0000026718,0.0000026745,0.0000026794,0.0000026863, +0.0000026959,0.0000027068,0.0000027142,0.0000027163,0.0000027138, +0.0000027083,0.0000027003,0.0000026921,0.0000026866,0.0000026856, +0.0000026879,0.0000026930,0.0000026974,0.0000026994,0.0000026998, +0.0000027007,0.0000027038,0.0000027088,0.0000027133,0.0000027143, +0.0000027162,0.0000027249,0.0000027384,0.0000027483,0.0000027484, +0.0000027441,0.0000027439,0.0000027494,0.0000027568,0.0000027634, +0.0000027686,0.0000027721,0.0000027732,0.0000027731,0.0000027728, +0.0000027735,0.0000027755,0.0000027797,0.0000027857,0.0000027905, +0.0000027905,0.0000027861,0.0000027794,0.0000027727,0.0000027680, +0.0000027663,0.0000027656,0.0000027618,0.0000027557,0.0000027512, +0.0000027509,0.0000027536,0.0000027564,0.0000027612,0.0000027691, +0.0000027760,0.0000027786,0.0000027781,0.0000027750,0.0000027692, +0.0000027629,0.0000027591,0.0000027585,0.0000027599,0.0000027626, +0.0000027653,0.0000027679,0.0000027702,0.0000027726,0.0000027743, +0.0000027755,0.0000027781,0.0000027812,0.0000027834,0.0000027838, +0.0000027829,0.0000027808,0.0000027772,0.0000027695,0.0000027567, +0.0000027422,0.0000027295,0.0000027179,0.0000027059,0.0000026955, +0.0000026874,0.0000026813,0.0000026772,0.0000026748,0.0000026717, +0.0000026672,0.0000026635,0.0000026633,0.0000026647,0.0000026643, +0.0000026604,0.0000026566,0.0000026547,0.0000026523,0.0000026465, +0.0000026382,0.0000026326,0.0000026327,0.0000026368,0.0000026410, +0.0000026417,0.0000026383,0.0000026308,0.0000026229,0.0000026184, +0.0000026178,0.0000026196,0.0000026228,0.0000026264,0.0000026286, +0.0000026289,0.0000026267,0.0000026225,0.0000026176,0.0000026136, +0.0000026105,0.0000026079,0.0000026055,0.0000026022,0.0000025973, +0.0000025928,0.0000025912,0.0000025920,0.0000025917,0.0000025879, +0.0000025826,0.0000025789,0.0000025763,0.0000025718,0.0000025667, +0.0000025637,0.0000025591,0.0000025455,0.0000025251,0.0000025121, +0.0000025122,0.0000025168,0.0000025187,0.0000025188,0.0000025192, +0.0000025184,0.0000025108,0.0000024933,0.0000024683,0.0000024434, +0.0000024347,0.0000024527,0.0000025081,0.0000025579,0.0000025737, +0.0000025957,0.0000026463,0.0000026977,0.0000027391,0.0000027635, +0.0000027666,0.0000027565,0.0000027377,0.0000027236,0.0000027194, +0.0000027213,0.0000027296,0.0000027392,0.0000027440,0.0000027460, +0.0000027480,0.0000027498,0.0000027503,0.0000027487,0.0000027449, +0.0000027411,0.0000027382,0.0000027347,0.0000027309,0.0000027275, +0.0000027261,0.0000027225,0.0000027142,0.0000027107,0.0000027102, +0.0000027036,0.0000026957,0.0000026916,0.0000026887,0.0000026867, +0.0000026891,0.0000026946,0.0000027002,0.0000027062,0.0000027117, +0.0000027157,0.0000027163,0.0000027139,0.0000027122,0.0000027122, +0.0000027148,0.0000027172,0.0000027180,0.0000027172,0.0000027150, +0.0000027137,0.0000027148,0.0000027164,0.0000027165,0.0000027140, +0.0000027040,0.0000026919,0.0000026856,0.0000026885,0.0000027003, +0.0000027049,0.0000027060,0.0000027108,0.0000027104,0.0000026958, +0.0000026813,0.0000026776,0.0000026770,0.0000026777,0.0000026783, +0.0000026773,0.0000026724,0.0000026689,0.0000026696,0.0000026721, +0.0000026734,0.0000026712,0.0000026656,0.0000026600,0.0000026544, +0.0000026499,0.0000026504,0.0000026536,0.0000026524,0.0000026467, +0.0000026408,0.0000026347,0.0000026281,0.0000026174,0.0000025960, +0.0000025645,0.0000025303,0.0000024991,0.0000024751,0.0000024613, +0.0000024556,0.0000024545,0.0000024556,0.0000024570,0.0000024573, +0.0000024563,0.0000024539,0.0000024517,0.0000024532,0.0000024633, +0.0000024797,0.0000024955,0.0000025069,0.0000025118,0.0000025107, +0.0000025033,0.0000024926,0.0000024832,0.0000024737,0.0000024653, +0.0000024627,0.0000024617,0.0000024486,0.0000024265,0.0000024121, +0.0000024085,0.0000024078,0.0000024056,0.0000024014,0.0000023968, +0.0000023921,0.0000023879,0.0000023856,0.0000023855,0.0000023868, +0.0000023886,0.0000023900,0.0000023904,0.0000023896,0.0000023863, +0.0000023817,0.0000023778,0.0000023725,0.0000023620,0.0000023521, +0.0000023584,0.0000023793,0.0000023938,0.0000024066,0.0000024257, +0.0000024387,0.0000024415,0.0000024450,0.0000024521,0.0000024640, +0.0000024937,0.0000025412,0.0000025778,0.0000025965,0.0000026099, +0.0000026236,0.0000026270,0.0000026178,0.0000026072,0.0000025895, +0.0000025704,0.0000025717,0.0000025667,0.0000025382,0.0000025512, +0.0000026271,0.0000026972,0.0000027471,0.0000027722,0.0000027740, +0.0000027701,0.0000027700,0.0000027733,0.0000027653,0.0000027577, +0.0000027627,0.0000027675,0.0000027733,0.0000027790,0.0000027806, +0.0000027799,0.0000027782,0.0000027732,0.0000027687,0.0000027676, +0.0000027688,0.0000027702,0.0000027702,0.0000027675,0.0000027629, +0.0000027568,0.0000027496,0.0000027416,0.0000027335,0.0000027271, +0.0000027245,0.0000027254,0.0000027297,0.0000027278,0.0000027211, +0.0000027144,0.0000027106,0.0000027082,0.0000027058,0.0000027045, +0.0000027050,0.0000027059,0.0000027038,0.0000027011,0.0000027014, +0.0000027030,0.0000027027,0.0000027017,0.0000026999,0.0000026950, +0.0000026865,0.0000026796,0.0000026768,0.0000026736,0.0000026711, +0.0000026727,0.0000026763,0.0000026771,0.0000026790,0.0000026808, +0.0000026819,0.0000026822,0.0000026771,0.0000026711,0.0000026711, +0.0000026748,0.0000026764,0.0000026693,0.0000026546,0.0000026265, +0.0000025929,0.0000025783,0.0000025698,0.0000025554,0.0000025442, +0.0000025380,0.0000025282,0.0000025224,0.0000025364,0.0000025442, +0.0000025388,0.0000025378,0.0000025397,0.0000025405,0.0000025404, +0.0000025393,0.0000025380,0.0000025378,0.0000025390,0.0000025412, +0.0000025434,0.0000025455,0.0000025425,0.0000025238,0.0000024927, +0.0000024697,0.0000024579,0.0000024484,0.0000024409,0.0000024393, +0.0000024384,0.0000024371,0.0000024386,0.0000024472,0.0000024611, +0.0000024728,0.0000024785,0.0000024798,0.0000024783,0.0000024730, +0.0000024675,0.0000024674,0.0000024834,0.0000025145,0.0000025481, +0.0000025740,0.0000025870,0.0000025908,0.0000025885,0.0000025852, +0.0000025848,0.0000025852,0.0000025859,0.0000025859,0.0000025912, +0.0000025887,0.0000025770,0.0000025707,0.0000025620,0.0000025518, +0.0000025530,0.0000025678,0.0000025716,0.0000025713,0.0000025686, +0.0000025614,0.0000025540,0.0000025502,0.0000025474,0.0000025436, +0.0000025403,0.0000025395,0.0000025397,0.0000025391,0.0000025374, +0.0000025351,0.0000025320,0.0000025326,0.0000025372,0.0000025368, +0.0000025208,0.0000024914,0.0000024737,0.0000024820,0.0000025087, +0.0000025193,0.0000025187,0.0000025248,0.0000025217,0.0000025096, +0.0000025097,0.0000025157,0.0000025090,0.0000024937,0.0000024859, +0.0000024880,0.0000024989,0.0000025096,0.0000025104,0.0000025130, +0.0000025442,0.0000025956,0.0000026226,0.0000026271,0.0000026247, +0.0000026151,0.0000025991,0.0000025849,0.0000025766,0.0000025710, +0.0000025613,0.0000025537,0.0000025555,0.0000025674,0.0000025809, +0.0000025914,0.0000025979,0.0000026021,0.0000026028,0.0000025993, +0.0000025954,0.0000025954,0.0000025998,0.0000026060,0.0000026117, +0.0000026189,0.0000026259,0.0000026318,0.0000026355,0.0000026375, +0.0000026393,0.0000026410,0.0000026426,0.0000026435,0.0000026428, +0.0000026418,0.0000026411,0.0000026403,0.0000026393,0.0000026381, +0.0000026369,0.0000026361,0.0000026364,0.0000026372,0.0000026379, +0.0000026380,0.0000026379,0.0000026380,0.0000026382,0.0000026375, +0.0000026361,0.0000026342,0.0000026318,0.0000026290,0.0000026248, +0.0000026202,0.0000026180,0.0000026196,0.0000026234,0.0000026281, +0.0000026348,0.0000026439,0.0000026540,0.0000026624,0.0000026670, +0.0000026677,0.0000026641,0.0000026547,0.0000026458,0.0000026427, +0.0000026435,0.0000026449,0.0000026483,0.0000026534,0.0000026586, +0.0000026611,0.0000026625,0.0000026668,0.0000026765,0.0000026900, +0.0000027052,0.0000027199,0.0000027324,0.0000027418,0.0000027481, +0.0000027512,0.0000027517,0.0000027501,0.0000027465,0.0000027396, +0.0000027296,0.0000027204,0.0000027182,0.0000027273,0.0000027451, +0.0000027603,0.0000027687,0.0000027721,0.0000027722,0.0000027693, +0.0000027645,0.0000027605,0.0000027571,0.0000027496,0.0000027347, +0.0000027175,0.0000027061,0.0000027002,0.0000026960,0.0000026897, +0.0000026779,0.0000026627,0.0000026492,0.0000026404,0.0000026342, +0.0000026284,0.0000026240,0.0000026217,0.0000026206,0.0000026200, +0.0000026191,0.0000026170,0.0000026139,0.0000026117,0.0000026098, +0.0000026072,0.0000026039,0.0000025995,0.0000025943,0.0000025894, +0.0000025861,0.0000025842,0.0000025819,0.0000025783,0.0000025750, +0.0000025751,0.0000025802,0.0000025881,0.0000025957,0.0000026017, +0.0000026059,0.0000026092,0.0000026138,0.0000026221,0.0000026327, +0.0000026451,0.0000026574,0.0000026694,0.0000026828,0.0000026973, +0.0000027080,0.0000027109,0.0000027092,0.0000027114,0.0000027239, +0.0000027444,0.0000027667,0.0000027840,0.0000027941,0.0000027982, +0.0000028000,0.0000028018,0.0000028037,0.0000028048,0.0000028052, +0.0000028049,0.0000028039,0.0000028041,0.0000028065,0.0000028094, +0.0000028106,0.0000028082,0.0000028027,0.0000027966,0.0000027915, +0.0000027871,0.0000027831,0.0000027781,0.0000027715,0.0000027645, +0.0000027589,0.0000027558,0.0000027547,0.0000027531,0.0000027481, +0.0000027398,0.0000027307,0.0000027238,0.0000027198,0.0000027168, +0.0000027141,0.0000027112,0.0000027089,0.0000027094,0.0000027155, +0.0000027291,0.0000027482,0.0000027674,0.0000027799,0.0000027823, +0.0000027815,0.0000027896,0.0000028053,0.0000028160,0.0000028180, +0.0000028123,0.0000028057,0.0000028083,0.0000028167,0.0000028199, +0.0000028177,0.0000028115,0.0000028039,0.0000027974,0.0000027902, +0.0000027809,0.0000027724,0.0000027699,0.0000027741,0.0000027844, +0.0000027966,0.0000028065,0.0000028121,0.0000028137,0.0000028135, +0.0000028109,0.0000028041,0.0000027946,0.0000027844,0.0000027751, +0.0000027671,0.0000027615,0.0000027589,0.0000027581,0.0000027564, +0.0000027528,0.0000027456,0.0000027372,0.0000027290,0.0000027160, +0.0000026930,0.0000026626,0.0000026429,0.0000026366,0.0000026385, +0.0000026393,0.0000026365,0.0000026297,0.0000026219,0.0000026156, +0.0000026111,0.0000026093,0.0000026103,0.0000026129,0.0000026184, +0.0000026287,0.0000026437,0.0000026597,0.0000026753,0.0000026900, +0.0000027033,0.0000027147,0.0000027233,0.0000027294,0.0000027333, +0.0000027350,0.0000027345,0.0000027326,0.0000027315,0.0000027311, +0.0000027316,0.0000027336,0.0000027339,0.0000027335,0.0000027328, +0.0000027309,0.0000027287,0.0000027274,0.0000027280,0.0000027284, +0.0000027273,0.0000027232,0.0000027171,0.0000027093,0.0000027027, +0.0000027003,0.0000027014,0.0000027019,0.0000027017,0.0000026999, +0.0000026959,0.0000026903,0.0000026834,0.0000026769,0.0000026724, +0.0000026679,0.0000026634,0.0000026594,0.0000026561,0.0000026533, +0.0000026519,0.0000026529,0.0000026575,0.0000026644,0.0000026709, +0.0000026762,0.0000026792,0.0000026810,0.0000026812,0.0000026811, +0.0000026820,0.0000026828,0.0000026850,0.0000026877,0.0000026892, +0.0000026896,0.0000026892,0.0000026872,0.0000026813,0.0000026744, +0.0000026735,0.0000026774,0.0000026818,0.0000026825,0.0000026811, +0.0000026832,0.0000026845,0.0000026856,0.0000026937,0.0000026967, +0.0000026934,0.0000026866,0.0000026458,0.0000025992,0.0000025888, +0.0000025959,0.0000026095,0.0000026412,0.0000026778,0.0000027042, +0.0000027168,0.0000027199,0.0000027243,0.0000027348,0.0000027487, +0.0000027598,0.0000027645,0.0000027617,0.0000027557,0.0000027517, +0.0000027521,0.0000027578,0.0000027673,0.0000027756,0.0000027812, +0.0000027855,0.0000027894,0.0000027924,0.0000027936,0.0000027953, +0.0000027992,0.0000028006,0.0000027951,0.0000027937,0.0000027966, +0.0000027945,0.0000027900,0.0000027870,0.0000027863,0.0000027875, +0.0000027963,0.0000028129,0.0000028261,0.0000028300,0.0000028238, +0.0000028061,0.0000027932,0.0000027984,0.0000028037,0.0000027972, +0.0000027943,0.0000027932,0.0000027922,0.0000028021,0.0000028146, +0.0000028199,0.0000028223,0.0000028237,0.0000028243,0.0000028245, +0.0000028241,0.0000028224,0.0000028195,0.0000028157,0.0000028102, +0.0000028023,0.0000027907,0.0000027765,0.0000027636,0.0000027560, +0.0000027543,0.0000027563,0.0000027587,0.0000027611,0.0000027621, +0.0000027604,0.0000027555,0.0000027476,0.0000027324,0.0000027103, +0.0000026929,0.0000026877,0.0000026895,0.0000026963,0.0000027054, +0.0000027164,0.0000027281,0.0000027338,0.0000027322,0.0000027293, +0.0000027302,0.0000027367,0.0000027492,0.0000027606,0.0000027631, +0.0000027622,0.0000027618,0.0000027590,0.0000027501,0.0000027409, +0.0000027355,0.0000027270,0.0000027126,0.0000026985,0.0000026863, +0.0000026717,0.0000026526,0.0000026324,0.0000026172,0.0000026097, +0.0000026076,0.0000026072,0.0000026045,0.0000025976,0.0000025893, +0.0000025849,0.0000025836,0.0000025824,0.0000025796,0.0000025753, +0.0000025691,0.0000025614,0.0000025541,0.0000025503,0.0000025499, +0.0000025510,0.0000025529,0.0000025559,0.0000025594,0.0000025613, +0.0000025610,0.0000025581,0.0000025545,0.0000025491,0.0000025415, +0.0000025358,0.0000025383,0.0000025558,0.0000025795,0.0000025989, +0.0000026091,0.0000026118,0.0000026129,0.0000026167,0.0000026225, +0.0000026266,0.0000026269,0.0000026225,0.0000026155,0.0000026078, +0.0000026035,0.0000026039,0.0000026099,0.0000026187,0.0000026263, +0.0000026308,0.0000026326,0.0000026329,0.0000026325,0.0000026326, +0.0000026344,0.0000026391,0.0000026451,0.0000026517,0.0000026578, +0.0000026623,0.0000026647,0.0000026651,0.0000026652,0.0000026671, +0.0000026712,0.0000026780,0.0000026878,0.0000026986,0.0000027078, +0.0000027134,0.0000027146,0.0000027122,0.0000027077,0.0000027021, +0.0000026962,0.0000026923,0.0000026918,0.0000026937,0.0000026977, +0.0000027005,0.0000027009,0.0000027013,0.0000027044,0.0000027115, +0.0000027186,0.0000027221,0.0000027239,0.0000027290,0.0000027379, +0.0000027443,0.0000027436,0.0000027409,0.0000027422,0.0000027496, +0.0000027590,0.0000027659,0.0000027696,0.0000027713,0.0000027717, +0.0000027722,0.0000027740,0.0000027772,0.0000027816,0.0000027871, +0.0000027934,0.0000027975,0.0000027978,0.0000027941,0.0000027864, +0.0000027775,0.0000027717,0.0000027695,0.0000027672,0.0000027625, +0.0000027574,0.0000027550,0.0000027547,0.0000027554,0.0000027576, +0.0000027645,0.0000027729,0.0000027774,0.0000027767,0.0000027744, +0.0000027703,0.0000027652,0.0000027609,0.0000027588,0.0000027594, +0.0000027622,0.0000027657,0.0000027681,0.0000027689,0.0000027686, +0.0000027679,0.0000027686,0.0000027728,0.0000027797,0.0000027848, +0.0000027864,0.0000027846,0.0000027809,0.0000027781,0.0000027770, +0.0000027716,0.0000027572,0.0000027393,0.0000027249,0.0000027144, +0.0000027048,0.0000026953,0.0000026861,0.0000026792,0.0000026756, +0.0000026730,0.0000026697,0.0000026668,0.0000026681,0.0000026707, +0.0000026712,0.0000026678,0.0000026632,0.0000026599,0.0000026563, +0.0000026489,0.0000026387,0.0000026321,0.0000026319,0.0000026358, +0.0000026393,0.0000026391,0.0000026339,0.0000026247,0.0000026158, +0.0000026115,0.0000026111,0.0000026129,0.0000026166,0.0000026213, +0.0000026254,0.0000026273,0.0000026265,0.0000026228,0.0000026178, +0.0000026136,0.0000026106,0.0000026084,0.0000026058,0.0000026016, +0.0000025962,0.0000025920,0.0000025900,0.0000025885,0.0000025845, +0.0000025794,0.0000025760,0.0000025740,0.0000025703,0.0000025663, +0.0000025645,0.0000025616,0.0000025507,0.0000025309,0.0000025114, +0.0000025018,0.0000025031,0.0000025089,0.0000025133,0.0000025154, +0.0000025159,0.0000025135,0.0000025061,0.0000024920,0.0000024711, +0.0000024469,0.0000024302,0.0000024391,0.0000024871,0.0000025451, +0.0000025694,0.0000025876,0.0000026357,0.0000026905,0.0000027340, +0.0000027616,0.0000027661,0.0000027593,0.0000027407,0.0000027243, +0.0000027183,0.0000027194,0.0000027262,0.0000027355,0.0000027411, +0.0000027434,0.0000027449,0.0000027463,0.0000027469,0.0000027462, +0.0000027433,0.0000027400,0.0000027375,0.0000027358,0.0000027330, +0.0000027292,0.0000027263,0.0000027244,0.0000027174,0.0000027084, +0.0000027068,0.0000027045,0.0000026971,0.0000026935,0.0000026920, +0.0000026884,0.0000026858,0.0000026886,0.0000026939,0.0000026981, +0.0000027020,0.0000027067,0.0000027105,0.0000027118,0.0000027115, +0.0000027122,0.0000027136,0.0000027147,0.0000027145,0.0000027131, +0.0000027111,0.0000027108,0.0000027120,0.0000027134,0.0000027141, +0.0000027131,0.0000027049,0.0000026937,0.0000026870,0.0000026883, +0.0000026989,0.0000027039,0.0000027041,0.0000027080,0.0000027099, +0.0000027008,0.0000026848,0.0000026772,0.0000026756,0.0000026758, +0.0000026767,0.0000026768,0.0000026731,0.0000026691,0.0000026691, +0.0000026718,0.0000026747,0.0000026757,0.0000026734,0.0000026684, +0.0000026620,0.0000026575,0.0000026581,0.0000026594,0.0000026557, +0.0000026494,0.0000026430,0.0000026351,0.0000026245,0.0000026061, +0.0000025762,0.0000025407,0.0000025065,0.0000024776,0.0000024584, +0.0000024504,0.0000024488,0.0000024482,0.0000024480,0.0000024484, +0.0000024493,0.0000024505,0.0000024514,0.0000024514,0.0000024496, +0.0000024480,0.0000024505,0.0000024620,0.0000024772,0.0000024892, +0.0000024946,0.0000024943,0.0000024890,0.0000024810,0.0000024730, +0.0000024642,0.0000024581,0.0000024572,0.0000024521,0.0000024336, +0.0000024153,0.0000024099,0.0000024111,0.0000024115,0.0000024092, +0.0000024036,0.0000023969,0.0000023911,0.0000023869,0.0000023851, +0.0000023855,0.0000023870,0.0000023885,0.0000023895,0.0000023897, +0.0000023887,0.0000023859,0.0000023814,0.0000023764,0.0000023719, +0.0000023639,0.0000023522,0.0000023507,0.0000023647,0.0000023854, +0.0000023973,0.0000024105,0.0000024265,0.0000024344,0.0000024372, +0.0000024438,0.0000024528,0.0000024669,0.0000025047,0.0000025549, +0.0000025879,0.0000026033,0.0000026163,0.0000026220,0.0000026161, +0.0000026063,0.0000025868,0.0000025704,0.0000025744,0.0000025638, +0.0000025345,0.0000025498,0.0000026279,0.0000026961,0.0000027449, +0.0000027720,0.0000027739,0.0000027700,0.0000027673,0.0000027713, +0.0000027668,0.0000027555,0.0000027575,0.0000027639,0.0000027714, +0.0000027785,0.0000027810,0.0000027802,0.0000027789,0.0000027771, +0.0000027751,0.0000027730,0.0000027721,0.0000027708,0.0000027689, +0.0000027644,0.0000027576,0.0000027498,0.0000027425,0.0000027365, +0.0000027309,0.0000027266,0.0000027262,0.0000027279,0.0000027309, +0.0000027294,0.0000027250,0.0000027209,0.0000027183,0.0000027161, +0.0000027136,0.0000027112,0.0000027103,0.0000027096,0.0000027057, +0.0000027021,0.0000027019,0.0000027034,0.0000027036,0.0000027027, +0.0000026997,0.0000026926,0.0000026850,0.0000026797,0.0000026780, +0.0000026776,0.0000026745,0.0000026712,0.0000026730,0.0000026767, +0.0000026784,0.0000026800,0.0000026813,0.0000026838,0.0000026824, +0.0000026735,0.0000026685,0.0000026698,0.0000026721,0.0000026677, +0.0000026562,0.0000026344,0.0000026022,0.0000025842,0.0000025760, +0.0000025624,0.0000025503,0.0000025432,0.0000025330,0.0000025273, +0.0000025403,0.0000025482,0.0000025425,0.0000025388,0.0000025377, +0.0000025370,0.0000025365,0.0000025354,0.0000025340,0.0000025346, +0.0000025368,0.0000025399,0.0000025428,0.0000025458,0.0000025475, +0.0000025402,0.0000025113,0.0000024772,0.0000024598,0.0000024505, +0.0000024402,0.0000024349,0.0000024345,0.0000024330,0.0000024326, +0.0000024388,0.0000024543,0.0000024691,0.0000024762,0.0000024790, +0.0000024786,0.0000024767,0.0000024730,0.0000024680,0.0000024683, +0.0000024801,0.0000025060,0.0000025372,0.0000025655,0.0000025858, +0.0000025932,0.0000025910,0.0000025876,0.0000025852,0.0000025846, +0.0000025836,0.0000025876,0.0000025904,0.0000025839,0.0000025716, +0.0000025658,0.0000025567,0.0000025481,0.0000025547,0.0000025696, +0.0000025729,0.0000025735,0.0000025705,0.0000025625,0.0000025567, +0.0000025545,0.0000025523,0.0000025490,0.0000025450,0.0000025418, +0.0000025398,0.0000025380,0.0000025366,0.0000025358,0.0000025346, +0.0000025346,0.0000025376,0.0000025386,0.0000025303,0.0000025066, +0.0000024838,0.0000024863,0.0000025063,0.0000025210,0.0000025210, +0.0000025245,0.0000025270,0.0000025147,0.0000025049,0.0000025115, +0.0000025150,0.0000025053,0.0000024928,0.0000024891,0.0000024926, +0.0000025014,0.0000025057,0.0000025044,0.0000025138,0.0000025543, +0.0000026023,0.0000026223,0.0000026233,0.0000026202,0.0000026116, +0.0000025975,0.0000025839,0.0000025746,0.0000025664,0.0000025563, +0.0000025483,0.0000025531,0.0000025665,0.0000025821,0.0000025929, +0.0000025982,0.0000025990,0.0000025963,0.0000025935,0.0000025942, +0.0000026003,0.0000026086,0.0000026152,0.0000026216,0.0000026279, +0.0000026326,0.0000026353,0.0000026365,0.0000026370,0.0000026369, +0.0000026368,0.0000026364,0.0000026351,0.0000026337,0.0000026323, +0.0000026308,0.0000026291,0.0000026270,0.0000026248,0.0000026233, +0.0000026229,0.0000026232,0.0000026239,0.0000026246,0.0000026253, +0.0000026269,0.0000026291,0.0000026306,0.0000026316,0.0000026319, +0.0000026316,0.0000026303,0.0000026267,0.0000026219,0.0000026186, +0.0000026189,0.0000026190,0.0000026195,0.0000026224,0.0000026295, +0.0000026406,0.0000026523,0.0000026602,0.0000026626,0.0000026604, +0.0000026524,0.0000026447,0.0000026428,0.0000026438,0.0000026438, +0.0000026439,0.0000026470,0.0000026526,0.0000026581,0.0000026639, +0.0000026711,0.0000026810,0.0000026942,0.0000027086,0.0000027216, +0.0000027317,0.0000027388,0.0000027431,0.0000027444,0.0000027437, +0.0000027415,0.0000027377,0.0000027310,0.0000027222,0.0000027150, +0.0000027141,0.0000027224,0.0000027377,0.0000027524,0.0000027613, +0.0000027665,0.0000027682,0.0000027668,0.0000027626,0.0000027572, +0.0000027482,0.0000027333,0.0000027183,0.0000027101,0.0000027079, +0.0000027043,0.0000026946,0.0000026788,0.0000026588,0.0000026398, +0.0000026276,0.0000026231,0.0000026208,0.0000026168,0.0000026126, +0.0000026099,0.0000026083,0.0000026075,0.0000026070,0.0000026061, +0.0000026058,0.0000026069,0.0000026082,0.0000026078,0.0000026049, +0.0000025998,0.0000025926,0.0000025852,0.0000025794,0.0000025755, +0.0000025720,0.0000025684,0.0000025657,0.0000025658,0.0000025702, +0.0000025778,0.0000025859,0.0000025932,0.0000025986,0.0000026024, +0.0000026067,0.0000026136,0.0000026233,0.0000026358,0.0000026493, +0.0000026619,0.0000026740,0.0000026872,0.0000026989,0.0000027053, +0.0000027056,0.0000027045,0.0000027083,0.0000027211,0.0000027418, +0.0000027626,0.0000027775,0.0000027856,0.0000027899,0.0000027930, +0.0000027957,0.0000027979,0.0000027992,0.0000027989,0.0000027966, +0.0000027939,0.0000027929,0.0000027933,0.0000027932,0.0000027905, +0.0000027840,0.0000027759,0.0000027696,0.0000027656,0.0000027618, +0.0000027573,0.0000027528,0.0000027492,0.0000027468,0.0000027464, +0.0000027474,0.0000027481,0.0000027454,0.0000027388,0.0000027301, +0.0000027214,0.0000027138,0.0000027083,0.0000027053,0.0000027047, +0.0000027048,0.0000027057,0.0000027090,0.0000027173,0.0000027302, +0.0000027467,0.0000027646,0.0000027774,0.0000027795,0.0000027785, +0.0000027886,0.0000028067,0.0000028160,0.0000028155,0.0000028093, +0.0000028036,0.0000028071,0.0000028152,0.0000028178,0.0000028148, +0.0000028087,0.0000028032,0.0000027967,0.0000027883,0.0000027802, +0.0000027760,0.0000027761,0.0000027809,0.0000027892,0.0000027980, +0.0000028052,0.0000028103,0.0000028131,0.0000028134,0.0000028120, +0.0000028061,0.0000027969,0.0000027870,0.0000027779,0.0000027698, +0.0000027631,0.0000027591,0.0000027567,0.0000027543,0.0000027505, +0.0000027445,0.0000027377,0.0000027303,0.0000027182,0.0000026963, +0.0000026667,0.0000026438,0.0000026369,0.0000026391,0.0000026389, +0.0000026352,0.0000026276,0.0000026176,0.0000026084,0.0000025976, +0.0000025890,0.0000025823,0.0000025771,0.0000025750,0.0000025797, +0.0000025906,0.0000026062,0.0000026240,0.0000026424,0.0000026598, +0.0000026755,0.0000026887,0.0000026999,0.0000027096,0.0000027170, +0.0000027216,0.0000027242,0.0000027255,0.0000027264,0.0000027284, +0.0000027313,0.0000027323,0.0000027331,0.0000027331,0.0000027316, +0.0000027298,0.0000027293,0.0000027299,0.0000027301,0.0000027281, +0.0000027233,0.0000027168,0.0000027083,0.0000027018,0.0000027003, +0.0000027014,0.0000027021,0.0000027021,0.0000027008,0.0000026975, +0.0000026927,0.0000026861,0.0000026794,0.0000026744,0.0000026694, +0.0000026649,0.0000026620,0.0000026594,0.0000026574,0.0000026566, +0.0000026586,0.0000026632,0.0000026686,0.0000026735,0.0000026771, +0.0000026787,0.0000026794,0.0000026794,0.0000026785,0.0000026775, +0.0000026767,0.0000026780,0.0000026806,0.0000026829,0.0000026848, +0.0000026855,0.0000026834,0.0000026790,0.0000026760,0.0000026774, +0.0000026814,0.0000026842,0.0000026832,0.0000026787,0.0000026782, +0.0000026825,0.0000026820,0.0000026853,0.0000026942,0.0000026931, +0.0000026909,0.0000026808,0.0000026336,0.0000025911,0.0000025856, +0.0000025955,0.0000026114,0.0000026400,0.0000026735,0.0000026997, +0.0000027132,0.0000027151,0.0000027149,0.0000027195,0.0000027292, +0.0000027408,0.0000027487,0.0000027497,0.0000027458,0.0000027421, +0.0000027443,0.0000027542,0.0000027661,0.0000027751,0.0000027791, +0.0000027812,0.0000027853,0.0000027897,0.0000027927,0.0000027973, +0.0000028016,0.0000027999,0.0000027964,0.0000027971,0.0000027954, +0.0000027907,0.0000027886,0.0000027886,0.0000027892,0.0000027944, +0.0000028077,0.0000028203,0.0000028247,0.0000028231,0.0000028097, +0.0000027922,0.0000027893,0.0000028008,0.0000028010,0.0000027941, +0.0000027946,0.0000027932,0.0000027930,0.0000028037,0.0000028143, +0.0000028182,0.0000028190,0.0000028179,0.0000028155,0.0000028135, +0.0000028120,0.0000028099,0.0000028063,0.0000027997,0.0000027891, +0.0000027755,0.0000027623,0.0000027543,0.0000027522,0.0000027537, +0.0000027563,0.0000027586,0.0000027604,0.0000027602,0.0000027570, +0.0000027508,0.0000027427,0.0000027289,0.0000027090,0.0000026932, +0.0000026884,0.0000026898,0.0000026959,0.0000027059,0.0000027178, +0.0000027310,0.0000027401,0.0000027409,0.0000027375,0.0000027354, +0.0000027360,0.0000027417,0.0000027514,0.0000027556,0.0000027542, +0.0000027525,0.0000027510,0.0000027445,0.0000027354,0.0000027299, +0.0000027247,0.0000027136,0.0000026997,0.0000026873,0.0000026738, +0.0000026560,0.0000026368,0.0000026216,0.0000026131,0.0000026101, +0.0000026093,0.0000026061,0.0000025989,0.0000025917,0.0000025883, +0.0000025875,0.0000025852,0.0000025794,0.0000025708,0.0000025611, +0.0000025516,0.0000025429,0.0000025372,0.0000025354,0.0000025354, +0.0000025359,0.0000025370,0.0000025400,0.0000025451,0.0000025502, +0.0000025535,0.0000025535,0.0000025499,0.0000025440,0.0000025370, +0.0000025294,0.0000025242,0.0000025293,0.0000025476,0.0000025721, +0.0000025915,0.0000026010,0.0000026040,0.0000026065,0.0000026117, +0.0000026177,0.0000026209,0.0000026200,0.0000026143,0.0000026072, +0.0000026025,0.0000026025,0.0000026069,0.0000026139,0.0000026209, +0.0000026264,0.0000026300,0.0000026318,0.0000026324,0.0000026329, +0.0000026343,0.0000026362,0.0000026385,0.0000026420,0.0000026468, +0.0000026516,0.0000026549,0.0000026564,0.0000026569,0.0000026579, +0.0000026609,0.0000026667,0.0000026747,0.0000026830,0.0000026912, +0.0000027003,0.0000027086,0.0000027137,0.0000027152,0.0000027141, +0.0000027104,0.0000027048,0.0000026988,0.0000026961,0.0000026972, +0.0000027000,0.0000027017,0.0000027018,0.0000027026,0.0000027073, +0.0000027156,0.0000027233,0.0000027273,0.0000027277,0.0000027286, +0.0000027336,0.0000027386,0.0000027394,0.0000027391,0.0000027431, +0.0000027524,0.0000027623,0.0000027683,0.0000027694,0.0000027687, +0.0000027683,0.0000027707,0.0000027762,0.0000027824,0.0000027883, +0.0000027945,0.0000028001,0.0000028043,0.0000028048,0.0000028004, +0.0000027918,0.0000027830,0.0000027767,0.0000027725,0.0000027687, +0.0000027646,0.0000027614,0.0000027590,0.0000027577,0.0000027586, +0.0000027634,0.0000027701,0.0000027751,0.0000027756,0.0000027738, +0.0000027698,0.0000027666,0.0000027634,0.0000027597,0.0000027582, +0.0000027600,0.0000027642,0.0000027678,0.0000027689,0.0000027682, +0.0000027665,0.0000027658,0.0000027684,0.0000027752,0.0000027825, +0.0000027863,0.0000027857,0.0000027815,0.0000027780,0.0000027788, +0.0000027791,0.0000027697,0.0000027505,0.0000027323,0.0000027216, +0.0000027136,0.0000027035,0.0000026925,0.0000026838,0.0000026789, +0.0000026764,0.0000026739,0.0000026721,0.0000026737,0.0000026768, +0.0000026776,0.0000026746,0.0000026700,0.0000026666,0.0000026629, +0.0000026549,0.0000026427,0.0000026337,0.0000026322,0.0000026354, +0.0000026379,0.0000026362,0.0000026284,0.0000026172,0.0000026087, +0.0000026059,0.0000026059,0.0000026069,0.0000026098,0.0000026148, +0.0000026211,0.0000026251,0.0000026253,0.0000026219,0.0000026169, +0.0000026123,0.0000026089,0.0000026066,0.0000026038,0.0000025994, +0.0000025945,0.0000025907,0.0000025873,0.0000025827,0.0000025767, +0.0000025725,0.0000025708,0.0000025682,0.0000025640,0.0000025622, +0.0000025607,0.0000025514,0.0000025333,0.0000025139,0.0000025012, +0.0000024962,0.0000024957,0.0000024986,0.0000025049,0.0000025101, +0.0000025120,0.0000025102,0.0000025020,0.0000024884,0.0000024715, +0.0000024509,0.0000024325,0.0000024310,0.0000024664,0.0000025275, +0.0000025628,0.0000025793,0.0000026231,0.0000026806,0.0000027261, +0.0000027595,0.0000027689,0.0000027622,0.0000027455,0.0000027276, +0.0000027192,0.0000027185,0.0000027230,0.0000027308,0.0000027371, +0.0000027410,0.0000027441,0.0000027462,0.0000027474,0.0000027473, +0.0000027456,0.0000027431,0.0000027413,0.0000027408,0.0000027393, +0.0000027351,0.0000027297,0.0000027260,0.0000027214,0.0000027103, +0.0000027032,0.0000027031,0.0000026985,0.0000026942,0.0000026942, +0.0000026926,0.0000026873,0.0000026853,0.0000026883,0.0000026934, +0.0000026963,0.0000026987,0.0000027007,0.0000027015,0.0000027019, +0.0000027037,0.0000027052,0.0000027053,0.0000027051,0.0000027049, +0.0000027055,0.0000027076,0.0000027088,0.0000027090,0.0000027095, +0.0000027092,0.0000027028,0.0000026941,0.0000026875,0.0000026885, +0.0000026975,0.0000027029,0.0000027021,0.0000027046,0.0000027081, +0.0000027040,0.0000026908,0.0000026799,0.0000026760,0.0000026754, +0.0000026759,0.0000026763,0.0000026744,0.0000026705,0.0000026698, +0.0000026722,0.0000026757,0.0000026785,0.0000026786,0.0000026744, +0.0000026681,0.0000026642,0.0000026649,0.0000026638,0.0000026583, +0.0000026505,0.0000026423,0.0000026318,0.0000026145,0.0000025865, +0.0000025503,0.0000025140,0.0000024828,0.0000024597,0.0000024472, +0.0000024443,0.0000024433,0.0000024416,0.0000024392,0.0000024377, +0.0000024380,0.0000024399,0.0000024422,0.0000024441,0.0000024457, +0.0000024466,0.0000024456,0.0000024440,0.0000024471,0.0000024584, +0.0000024711,0.0000024785,0.0000024797,0.0000024765,0.0000024700, +0.0000024622,0.0000024556,0.0000024535,0.0000024530,0.0000024414, +0.0000024211,0.0000024099,0.0000024098,0.0000024124,0.0000024130, +0.0000024099,0.0000024032,0.0000023956,0.0000023892,0.0000023848, +0.0000023831,0.0000023836,0.0000023858,0.0000023878,0.0000023885, +0.0000023886,0.0000023876,0.0000023850,0.0000023809,0.0000023758, +0.0000023709,0.0000023655,0.0000023555,0.0000023458,0.0000023511, +0.0000023728,0.0000023896,0.0000023981,0.0000024111,0.0000024258, +0.0000024327,0.0000024371,0.0000024465,0.0000024554,0.0000024762, +0.0000025271,0.0000025755,0.0000025975,0.0000026100,0.0000026169, +0.0000026142,0.0000026039,0.0000025836,0.0000025711,0.0000025763, +0.0000025596,0.0000025306,0.0000025497,0.0000026286,0.0000026952, +0.0000027422,0.0000027707,0.0000027729,0.0000027697,0.0000027641, +0.0000027680,0.0000027671,0.0000027553,0.0000027512,0.0000027574, +0.0000027656,0.0000027745,0.0000027795,0.0000027796,0.0000027783, +0.0000027776,0.0000027769,0.0000027751,0.0000027726,0.0000027689, +0.0000027641,0.0000027582,0.0000027516,0.0000027447,0.0000027389, +0.0000027348,0.0000027312,0.0000027286,0.0000027286,0.0000027298, +0.0000027296,0.0000027287,0.0000027267,0.0000027248,0.0000027237, +0.0000027223,0.0000027204,0.0000027186,0.0000027170,0.0000027144, +0.0000027090,0.0000027049,0.0000027042,0.0000027047,0.0000027040, +0.0000027014,0.0000026959,0.0000026900,0.0000026857,0.0000026834, +0.0000026812,0.0000026802,0.0000026794,0.0000026751,0.0000026719, +0.0000026746,0.0000026787,0.0000026798,0.0000026797,0.0000026822, +0.0000026853,0.0000026801,0.0000026700,0.0000026663,0.0000026676, +0.0000026658,0.0000026572,0.0000026416,0.0000026133,0.0000025913, +0.0000025823,0.0000025700,0.0000025567,0.0000025490,0.0000025395, +0.0000025322,0.0000025426,0.0000025519,0.0000025471,0.0000025407, +0.0000025374,0.0000025355,0.0000025340,0.0000025319,0.0000025299, +0.0000025301,0.0000025331,0.0000025377,0.0000025429,0.0000025467, +0.0000025496,0.0000025500,0.0000025331,0.0000024952,0.0000024647, +0.0000024533,0.0000024424,0.0000024321,0.0000024308,0.0000024310, +0.0000024299,0.0000024324,0.0000024455,0.0000024630,0.0000024719, +0.0000024756,0.0000024772,0.0000024763,0.0000024751,0.0000024734, +0.0000024702,0.0000024695,0.0000024778,0.0000024987,0.0000025250, +0.0000025546,0.0000025792,0.0000025900,0.0000025913,0.0000025892, +0.0000025856,0.0000025832,0.0000025845,0.0000025882,0.0000025878, +0.0000025782,0.0000025663,0.0000025609,0.0000025526,0.0000025468, +0.0000025568,0.0000025707,0.0000025749,0.0000025758,0.0000025718, +0.0000025639,0.0000025589,0.0000025574,0.0000025556,0.0000025524, +0.0000025485,0.0000025449,0.0000025424,0.0000025395,0.0000025368, +0.0000025359,0.0000025368,0.0000025387,0.0000025397,0.0000025390, +0.0000025337,0.0000025182,0.0000024990,0.0000024933,0.0000025060, +0.0000025219,0.0000025257,0.0000025270,0.0000025300,0.0000025226, +0.0000025062,0.0000025047,0.0000025145,0.0000025158,0.0000025046, +0.0000024945,0.0000024927,0.0000024952,0.0000024999,0.0000025002, +0.0000024996,0.0000025177,0.0000025620,0.0000026039,0.0000026199, +0.0000026195,0.0000026179,0.0000026102,0.0000025970,0.0000025833, +0.0000025709,0.0000025607,0.0000025501,0.0000025448,0.0000025511, +0.0000025660,0.0000025809,0.0000025900,0.0000025932,0.0000025921, +0.0000025899,0.0000025911,0.0000025975,0.0000026076,0.0000026156, +0.0000026222,0.0000026271,0.0000026308,0.0000026329,0.0000026336, +0.0000026336,0.0000026328,0.0000026319,0.0000026308,0.0000026294, +0.0000026278,0.0000026260,0.0000026244,0.0000026223,0.0000026197, +0.0000026167,0.0000026140,0.0000026122,0.0000026112,0.0000026105, +0.0000026098,0.0000026094,0.0000026103,0.0000026129,0.0000026166, +0.0000026210,0.0000026253,0.0000026287,0.0000026297,0.0000026288, +0.0000026253,0.0000026223,0.0000026214,0.0000026202,0.0000026188, +0.0000026175,0.0000026200,0.0000026289,0.0000026413,0.0000026516, +0.0000026564,0.0000026553,0.0000026492,0.0000026444,0.0000026441, +0.0000026453,0.0000026434,0.0000026400,0.0000026411,0.0000026466, +0.0000026543,0.0000026631,0.0000026719,0.0000026818,0.0000026945, +0.0000027081,0.0000027197,0.0000027277,0.0000027326,0.0000027360, +0.0000027379,0.0000027378,0.0000027359,0.0000027322,0.0000027254, +0.0000027166,0.0000027094,0.0000027076,0.0000027138,0.0000027273, +0.0000027432,0.0000027543,0.0000027612,0.0000027637,0.0000027626, +0.0000027570,0.0000027467,0.0000027324,0.0000027198,0.0000027139, +0.0000027132,0.0000027106,0.0000027005,0.0000026826,0.0000026602, +0.0000026380,0.0000026208,0.0000026130,0.0000026128,0.0000026145, +0.0000026136,0.0000026101,0.0000026071,0.0000026044,0.0000026018, +0.0000026004,0.0000026004,0.0000026015,0.0000026045,0.0000026075, +0.0000026079,0.0000026051,0.0000025991,0.0000025908,0.0000025824, +0.0000025755,0.0000025704,0.0000025658,0.0000025616,0.0000025588, +0.0000025589,0.0000025620,0.0000025672,0.0000025738,0.0000025812, +0.0000025871,0.0000025910,0.0000025953,0.0000026019,0.0000026105, +0.0000026218,0.0000026355,0.0000026495,0.0000026629,0.0000026766, +0.0000026888,0.0000026964,0.0000026991,0.0000026992,0.0000027003, +0.0000027057,0.0000027179,0.0000027350,0.0000027512,0.0000027630, +0.0000027707,0.0000027762,0.0000027799,0.0000027827,0.0000027851, +0.0000027866,0.0000027858,0.0000027829,0.0000027801,0.0000027787, +0.0000027777,0.0000027748,0.0000027679,0.0000027579,0.0000027491, +0.0000027440,0.0000027409,0.0000027371,0.0000027340,0.0000027334, +0.0000027350,0.0000027381,0.0000027417,0.0000027438,0.0000027431, +0.0000027386,0.0000027307,0.0000027207,0.0000027104,0.0000027036, +0.0000027020,0.0000027031,0.0000027055,0.0000027077,0.0000027098, +0.0000027143,0.0000027225,0.0000027329,0.0000027458,0.0000027620, +0.0000027746,0.0000027767,0.0000027768,0.0000027896,0.0000028088, +0.0000028150,0.0000028132,0.0000028072,0.0000028043,0.0000028079, +0.0000028140,0.0000028152,0.0000028107,0.0000028053,0.0000028009, +0.0000027945,0.0000027868,0.0000027819,0.0000027817,0.0000027848, +0.0000027890,0.0000027938,0.0000027980,0.0000028014,0.0000028054, +0.0000028092,0.0000028114,0.0000028106,0.0000028056,0.0000027971, +0.0000027881,0.0000027797,0.0000027719,0.0000027650,0.0000027593, +0.0000027544,0.0000027502,0.0000027467,0.0000027430,0.0000027383, +0.0000027321,0.0000027234,0.0000027087,0.0000026856,0.0000026620, +0.0000026468,0.0000026404,0.0000026384,0.0000026350,0.0000026286, +0.0000026190,0.0000026075,0.0000025942,0.0000025823,0.0000025728, +0.0000025641,0.0000025548,0.0000025530,0.0000025570,0.0000025667, +0.0000025807,0.0000025961,0.0000026109,0.0000026242,0.0000026363, +0.0000026483,0.0000026609,0.0000026733,0.0000026839,0.0000026922, +0.0000026984,0.0000027033,0.0000027092,0.0000027151,0.0000027194, +0.0000027228,0.0000027246,0.0000027246,0.0000027239,0.0000027238, +0.0000027240,0.0000027235,0.0000027211,0.0000027162,0.0000027092, +0.0000027021,0.0000026984,0.0000026979,0.0000026996,0.0000027015, +0.0000027020,0.0000027013,0.0000026983,0.0000026947,0.0000026888, +0.0000026833,0.0000026785,0.0000026731,0.0000026686,0.0000026658, +0.0000026629,0.0000026602,0.0000026596,0.0000026617,0.0000026651, +0.0000026688,0.0000026724,0.0000026745,0.0000026749,0.0000026753, +0.0000026754,0.0000026741,0.0000026718,0.0000026698,0.0000026705, +0.0000026737,0.0000026780,0.0000026821,0.0000026840,0.0000026825, +0.0000026796,0.0000026798,0.0000026829,0.0000026857,0.0000026863, +0.0000026834,0.0000026776,0.0000026744,0.0000026785,0.0000026797, +0.0000026772,0.0000026858,0.0000026919,0.0000026907,0.0000026892, +0.0000026740,0.0000026223,0.0000025841,0.0000025828,0.0000025967, +0.0000026125,0.0000026372,0.0000026674,0.0000026925,0.0000027063, +0.0000027093,0.0000027070,0.0000027050,0.0000027083,0.0000027175, +0.0000027289,0.0000027365,0.0000027374,0.0000027384,0.0000027457, +0.0000027571,0.0000027685,0.0000027744,0.0000027745,0.0000027759, +0.0000027817,0.0000027876,0.0000027936,0.0000028003,0.0000028030, +0.0000028003,0.0000027987,0.0000027973,0.0000027920,0.0000027897, +0.0000027910,0.0000027916,0.0000027936,0.0000028029,0.0000028140, +0.0000028186,0.0000028194,0.0000028122,0.0000027956,0.0000027837, +0.0000027904,0.0000028006,0.0000027975,0.0000027941,0.0000027946, +0.0000027923,0.0000027942,0.0000028046,0.0000028134,0.0000028168, +0.0000028165,0.0000028133,0.0000028079,0.0000028032,0.0000027993, +0.0000027943,0.0000027865,0.0000027756,0.0000027644,0.0000027559, +0.0000027518,0.0000027516,0.0000027539,0.0000027568,0.0000027593, +0.0000027610,0.0000027611,0.0000027570,0.0000027486,0.0000027389, +0.0000027271,0.0000027106,0.0000026946,0.0000026872,0.0000026873, +0.0000026925,0.0000027027,0.0000027150,0.0000027286,0.0000027408, +0.0000027446,0.0000027433,0.0000027422,0.0000027420,0.0000027436, +0.0000027498,0.0000027551,0.0000027534,0.0000027487,0.0000027452, +0.0000027393,0.0000027303,0.0000027240,0.0000027204,0.0000027128, +0.0000027002,0.0000026872,0.0000026740,0.0000026579,0.0000026404, +0.0000026261,0.0000026174,0.0000026143,0.0000026134,0.0000026101, +0.0000026035,0.0000025982,0.0000025963,0.0000025947,0.0000025894, +0.0000025788,0.0000025648,0.0000025520,0.0000025429,0.0000025360, +0.0000025309,0.0000025283,0.0000025276,0.0000025273,0.0000025274, +0.0000025286,0.0000025313,0.0000025350,0.0000025389,0.0000025425, +0.0000025429,0.0000025397,0.0000025349,0.0000025305,0.0000025255, +0.0000025195,0.0000025157,0.0000025229,0.0000025417,0.0000025650, +0.0000025832,0.0000025931,0.0000025975,0.0000026012,0.0000026067, +0.0000026118,0.0000026136,0.0000026109,0.0000026050,0.0000026003, +0.0000025995,0.0000026021,0.0000026069,0.0000026126,0.0000026184, +0.0000026237,0.0000026278,0.0000026305,0.0000026324,0.0000026342, +0.0000026349,0.0000026347,0.0000026356,0.0000026388,0.0000026427, +0.0000026451,0.0000026462,0.0000026470,0.0000026488,0.0000026521, +0.0000026575,0.0000026652,0.0000026728,0.0000026785,0.0000026846, +0.0000026938,0.0000027048,0.0000027132,0.0000027164,0.0000027162, +0.0000027141,0.0000027102,0.0000027061,0.0000027028,0.0000027012, +0.0000027010,0.0000027012,0.0000027026,0.0000027059,0.0000027116, +0.0000027192,0.0000027259,0.0000027282,0.0000027264,0.0000027247, +0.0000027274,0.0000027333,0.0000027378,0.0000027409,0.0000027468, +0.0000027567,0.0000027665,0.0000027707,0.0000027692,0.0000027656, +0.0000027645,0.0000027680,0.0000027755,0.0000027846,0.0000027935, +0.0000028005,0.0000028055,0.0000028085,0.0000028093,0.0000028060, +0.0000027984,0.0000027890,0.0000027809,0.0000027753,0.0000027715, +0.0000027685,0.0000027657,0.0000027630,0.0000027622,0.0000027652, +0.0000027703,0.0000027735,0.0000027746,0.0000027737,0.0000027703, +0.0000027667,0.0000027645,0.0000027612,0.0000027580,0.0000027573, +0.0000027603,0.0000027651,0.0000027677,0.0000027677,0.0000027666, +0.0000027660,0.0000027682,0.0000027737,0.0000027804,0.0000027847, +0.0000027848,0.0000027816,0.0000027787,0.0000027795,0.0000027815, +0.0000027775,0.0000027612,0.0000027410,0.0000027283,0.0000027209, +0.0000027108,0.0000026994,0.0000026904,0.0000026852,0.0000026823, +0.0000026800,0.0000026788,0.0000026803,0.0000026830,0.0000026831, +0.0000026798,0.0000026760,0.0000026738,0.0000026713,0.0000026635, +0.0000026497,0.0000026385,0.0000026357,0.0000026376,0.0000026386, +0.0000026344,0.0000026235,0.0000026108,0.0000026027,0.0000026004, +0.0000026003,0.0000026003,0.0000026016,0.0000026063,0.0000026146, +0.0000026209,0.0000026221,0.0000026190,0.0000026138,0.0000026085, +0.0000026045,0.0000026020,0.0000025996,0.0000025964,0.0000025931, +0.0000025891,0.0000025832,0.0000025762,0.0000025707,0.0000025672, +0.0000025646,0.0000025611,0.0000025592,0.0000025573,0.0000025489, +0.0000025316,0.0000025124,0.0000024996,0.0000024943,0.0000024918, +0.0000024893,0.0000024896,0.0000024955,0.0000025031,0.0000025072, +0.0000025056,0.0000024971,0.0000024838,0.0000024702,0.0000024547, +0.0000024341,0.0000024246,0.0000024455,0.0000025056,0.0000025530, +0.0000025712,0.0000026075,0.0000026666,0.0000027165,0.0000027535, +0.0000027691,0.0000027654,0.0000027509,0.0000027324,0.0000027208, +0.0000027188,0.0000027209,0.0000027269,0.0000027334,0.0000027390, +0.0000027448,0.0000027492,0.0000027517,0.0000027521,0.0000027510, +0.0000027487,0.0000027469,0.0000027470,0.0000027469,0.0000027429, +0.0000027365,0.0000027300,0.0000027251,0.0000027152,0.0000027028, +0.0000027002,0.0000026991,0.0000026949,0.0000026948,0.0000026953, +0.0000026918,0.0000026864,0.0000026859,0.0000026893,0.0000026927, +0.0000026949,0.0000026957,0.0000026950,0.0000026938,0.0000026950, +0.0000026964,0.0000026961,0.0000026959,0.0000026971,0.0000027007, +0.0000027043,0.0000027052,0.0000027038,0.0000027039,0.0000027037, +0.0000026992,0.0000026927,0.0000026868,0.0000026875,0.0000026959, +0.0000027018,0.0000027002,0.0000027011,0.0000027047,0.0000027041, +0.0000026962,0.0000026857,0.0000026788,0.0000026767,0.0000026762, +0.0000026766,0.0000026760,0.0000026732,0.0000026717,0.0000026736, +0.0000026771,0.0000026803,0.0000026805,0.0000026775,0.0000026723, +0.0000026695,0.0000026688,0.0000026667,0.0000026596,0.0000026503, +0.0000026392,0.0000026226,0.0000025952,0.0000025593,0.0000025219, +0.0000024892,0.0000024649,0.0000024504,0.0000024438,0.0000024417, +0.0000024396,0.0000024363,0.0000024326,0.0000024296,0.0000024292, +0.0000024318,0.0000024360,0.0000024389,0.0000024397,0.0000024396, +0.0000024405,0.0000024413,0.0000024394,0.0000024374,0.0000024413, +0.0000024519,0.0000024618,0.0000024651,0.0000024637,0.0000024581, +0.0000024519,0.0000024495,0.0000024499,0.0000024462,0.0000024299, +0.0000024131,0.0000024086,0.0000024104,0.0000024131,0.0000024133, +0.0000024096,0.0000024030,0.0000023952,0.0000023874,0.0000023820, +0.0000023804,0.0000023814,0.0000023846,0.0000023870,0.0000023876, +0.0000023874,0.0000023864,0.0000023838,0.0000023805,0.0000023764, +0.0000023716,0.0000023674,0.0000023604,0.0000023489,0.0000023466, +0.0000023588,0.0000023793,0.0000023912,0.0000023990,0.0000024134, +0.0000024271,0.0000024329,0.0000024412,0.0000024511,0.0000024599, +0.0000025017,0.0000025597,0.0000025918,0.0000026051,0.0000026121, +0.0000026124,0.0000026004,0.0000025802,0.0000025712,0.0000025767, +0.0000025549,0.0000025273,0.0000025496,0.0000026287,0.0000026937, +0.0000027381,0.0000027680,0.0000027713,0.0000027686,0.0000027617, +0.0000027631,0.0000027657,0.0000027577,0.0000027481,0.0000027493, +0.0000027562,0.0000027656,0.0000027732,0.0000027758,0.0000027756, +0.0000027756,0.0000027753,0.0000027735,0.0000027705,0.0000027654, +0.0000027597,0.0000027540,0.0000027485,0.0000027432,0.0000027383, +0.0000027343,0.0000027312,0.0000027295,0.0000027292,0.0000027294, +0.0000027266,0.0000027264,0.0000027261,0.0000027261,0.0000027260, +0.0000027257,0.0000027250,0.0000027243,0.0000027223,0.0000027180, +0.0000027125,0.0000027084,0.0000027065,0.0000027048,0.0000027007, +0.0000026946,0.0000026899,0.0000026887,0.0000026888,0.0000026889, +0.0000026863,0.0000026831,0.0000026820,0.0000026800,0.0000026750, +0.0000026735,0.0000026781,0.0000026804,0.0000026796,0.0000026792, +0.0000026840,0.0000026854,0.0000026767,0.0000026669,0.0000026641, +0.0000026637,0.0000026581,0.0000026475,0.0000026254,0.0000026004, +0.0000025885,0.0000025771,0.0000025629,0.0000025543,0.0000025467, +0.0000025379,0.0000025434,0.0000025540,0.0000025517,0.0000025441, +0.0000025394,0.0000025366,0.0000025346,0.0000025319,0.0000025292, +0.0000025290,0.0000025310,0.0000025353,0.0000025418,0.0000025473, +0.0000025505,0.0000025523,0.0000025481,0.0000025205,0.0000024797, +0.0000024576,0.0000024471,0.0000024341,0.0000024292,0.0000024306, +0.0000024297,0.0000024284,0.0000024358,0.0000024543,0.0000024660, +0.0000024695,0.0000024732,0.0000024751,0.0000024753,0.0000024749, +0.0000024740,0.0000024710,0.0000024702,0.0000024757,0.0000024913, +0.0000025144,0.0000025412,0.0000025676,0.0000025836,0.0000025894, +0.0000025885,0.0000025853,0.0000025842,0.0000025858,0.0000025864, +0.0000025829,0.0000025722,0.0000025618,0.0000025581,0.0000025501, +0.0000025463,0.0000025586,0.0000025720,0.0000025767,0.0000025777, +0.0000025728,0.0000025647,0.0000025601,0.0000025579,0.0000025557, +0.0000025522,0.0000025483,0.0000025448,0.0000025428,0.0000025409, +0.0000025387,0.0000025374,0.0000025388,0.0000025423,0.0000025443, +0.0000025416,0.0000025342,0.0000025230,0.0000025096,0.0000025033, +0.0000025106,0.0000025253,0.0000025318,0.0000025310,0.0000025316, +0.0000025285,0.0000025135,0.0000025033,0.0000025094,0.0000025185, +0.0000025168,0.0000025062,0.0000024972,0.0000024943,0.0000024946, +0.0000024956,0.0000024944,0.0000024976,0.0000025205,0.0000025639, +0.0000026019,0.0000026165,0.0000026172,0.0000026150,0.0000026094, +0.0000025976,0.0000025813,0.0000025661,0.0000025535,0.0000025448, +0.0000025440,0.0000025514,0.0000025638,0.0000025747,0.0000025819, +0.0000025846,0.0000025848,0.0000025867,0.0000025919,0.0000026009, +0.0000026096,0.0000026164,0.0000026207,0.0000026237,0.0000026255, +0.0000026261,0.0000026260,0.0000026251,0.0000026244,0.0000026236, +0.0000026226,0.0000026214,0.0000026205,0.0000026196,0.0000026181, +0.0000026161,0.0000026134,0.0000026107,0.0000026085,0.0000026066, +0.0000026043,0.0000026015,0.0000025988,0.0000025970,0.0000025972, +0.0000025992,0.0000026034,0.0000026094,0.0000026159,0.0000026216, +0.0000026248,0.0000026246,0.0000026225,0.0000026224,0.0000026228, +0.0000026211,0.0000026176,0.0000026170,0.0000026217,0.0000026321, +0.0000026428,0.0000026490,0.0000026491,0.0000026456,0.0000026443, +0.0000026462,0.0000026471,0.0000026430,0.0000026373,0.0000026375, +0.0000026424,0.0000026507,0.0000026601,0.0000026695,0.0000026796, +0.0000026915,0.0000027036,0.0000027138,0.0000027211,0.0000027258, +0.0000027299,0.0000027332,0.0000027342,0.0000027333,0.0000027292, +0.0000027211,0.0000027106,0.0000027019,0.0000026986,0.0000027039, +0.0000027174,0.0000027343,0.0000027474,0.0000027553,0.0000027576, +0.0000027548,0.0000027456,0.0000027324,0.0000027221,0.0000027190, +0.0000027178,0.0000027128,0.0000027014,0.0000026846,0.0000026641, +0.0000026418,0.0000026219,0.0000026097,0.0000026068,0.0000026100, +0.0000026140,0.0000026148,0.0000026123,0.0000026090,0.0000026051, +0.0000026001,0.0000025968,0.0000025967,0.0000025992,0.0000026034, +0.0000026062,0.0000026062,0.0000026026,0.0000025960,0.0000025876, +0.0000025794,0.0000025729,0.0000025681,0.0000025639,0.0000025598, +0.0000025556,0.0000025543,0.0000025554,0.0000025576,0.0000025613, +0.0000025670,0.0000025726,0.0000025762,0.0000025801,0.0000025863, +0.0000025944,0.0000026042,0.0000026167,0.0000026311,0.0000026461, +0.0000026618,0.0000026766,0.0000026863,0.0000026906,0.0000026923, +0.0000026943,0.0000026984,0.0000027049,0.0000027143,0.0000027249, +0.0000027349,0.0000027436,0.0000027508,0.0000027566,0.0000027609, +0.0000027649,0.0000027687,0.0000027707,0.0000027700,0.0000027683, +0.0000027673,0.0000027672,0.0000027655,0.0000027589,0.0000027479, +0.0000027364,0.0000027286,0.0000027251,0.0000027222,0.0000027200, +0.0000027205,0.0000027244,0.0000027303,0.0000027364,0.0000027403, +0.0000027406,0.0000027374,0.0000027306,0.0000027207,0.0000027105, +0.0000027035,0.0000027021,0.0000027049,0.0000027096,0.0000027135, +0.0000027154,0.0000027169,0.0000027213,0.0000027281,0.0000027352, +0.0000027450,0.0000027602,0.0000027729,0.0000027753,0.0000027770, +0.0000027927,0.0000028106,0.0000028147,0.0000028109,0.0000028074, +0.0000028065,0.0000028090,0.0000028120,0.0000028107,0.0000028057, +0.0000028014,0.0000027972,0.0000027918,0.0000027871,0.0000027861, +0.0000027895,0.0000027946,0.0000027980,0.0000027988,0.0000027988, +0.0000027978,0.0000027998,0.0000028036,0.0000028076,0.0000028076, +0.0000028027,0.0000027948,0.0000027860,0.0000027778,0.0000027705, +0.0000027638,0.0000027570,0.0000027504,0.0000027452,0.0000027427, +0.0000027414,0.0000027385,0.0000027333,0.0000027268,0.0000027193, +0.0000027069,0.0000026885,0.0000026675,0.0000026504,0.0000026404, +0.0000026342,0.0000026294,0.0000026223,0.0000026117,0.0000025984, +0.0000025851,0.0000025733,0.0000025629,0.0000025536,0.0000025491, +0.0000025499,0.0000025551,0.0000025640,0.0000025733,0.0000025813, +0.0000025874,0.0000025924,0.0000025986,0.0000026076,0.0000026185, +0.0000026292,0.0000026393,0.0000026483,0.0000026560,0.0000026650, +0.0000026735,0.0000026813,0.0000026879,0.0000026926,0.0000026953, +0.0000026966,0.0000026983,0.0000026997,0.0000027001,0.0000026982, +0.0000026944,0.0000026897,0.0000026874,0.0000026878,0.0000026899, +0.0000026939,0.0000026965,0.0000026973,0.0000026969,0.0000026955, +0.0000026927,0.0000026882,0.0000026844,0.0000026795,0.0000026741, +0.0000026698,0.0000026668,0.0000026630,0.0000026598,0.0000026596, +0.0000026614,0.0000026630,0.0000026652,0.0000026683,0.0000026699, +0.0000026697,0.0000026698,0.0000026697,0.0000026681,0.0000026647, +0.0000026618,0.0000026622,0.0000026674,0.0000026749,0.0000026815, +0.0000026845,0.0000026845,0.0000026839,0.0000026855,0.0000026884, +0.0000026893,0.0000026873,0.0000026827,0.0000026771,0.0000026727, +0.0000026738,0.0000026765,0.0000026725,0.0000026739,0.0000026852, +0.0000026901,0.0000026891,0.0000026863,0.0000026657,0.0000026137, +0.0000025803,0.0000025808,0.0000025980,0.0000026143,0.0000026343, +0.0000026590,0.0000026815,0.0000026965,0.0000027020,0.0000026984, +0.0000026915,0.0000026880,0.0000026955,0.0000027095,0.0000027211, +0.0000027307,0.0000027414,0.0000027523,0.0000027629,0.0000027704, +0.0000027711,0.0000027690,0.0000027716,0.0000027789,0.0000027872, +0.0000027962,0.0000028033,0.0000028036,0.0000028012,0.0000027999, +0.0000027946,0.0000027900,0.0000027917,0.0000027941,0.0000027945, +0.0000027990,0.0000028077,0.0000028123,0.0000028134,0.0000028114, +0.0000028004,0.0000027842,0.0000027799,0.0000027922,0.0000027997, +0.0000027963,0.0000027939,0.0000027946,0.0000027931,0.0000027956, +0.0000028045,0.0000028121,0.0000028148,0.0000028140,0.0000028092, +0.0000028017,0.0000027940,0.0000027863,0.0000027778,0.0000027692, +0.0000027625,0.0000027567,0.0000027537,0.0000027532,0.0000027547, +0.0000027571,0.0000027595,0.0000027616,0.0000027621,0.0000027579, +0.0000027479,0.0000027368,0.0000027272,0.0000027134,0.0000026952, +0.0000026830,0.0000026814,0.0000026869,0.0000026979,0.0000027104, +0.0000027234,0.0000027368,0.0000027440,0.0000027442,0.0000027439, +0.0000027451,0.0000027467,0.0000027506,0.0000027558,0.0000027559, +0.0000027496,0.0000027420,0.0000027341,0.0000027248,0.0000027173, +0.0000027143,0.0000027096,0.0000026988,0.0000026855,0.0000026725, +0.0000026579,0.0000026422,0.0000026294,0.0000026219,0.0000026192, +0.0000026181,0.0000026147,0.0000026094,0.0000026058,0.0000026041, +0.0000026002,0.0000025911,0.0000025751,0.0000025573,0.0000025439, +0.0000025365,0.0000025316,0.0000025274,0.0000025248,0.0000025239, +0.0000025237,0.0000025238,0.0000025244,0.0000025260,0.0000025284, +0.0000025312,0.0000025337,0.0000025350,0.0000025341,0.0000025305, +0.0000025264,0.0000025238,0.0000025217,0.0000025177,0.0000025130, +0.0000025102,0.0000025170,0.0000025357,0.0000025584,0.0000025770, +0.0000025874,0.0000025920,0.0000025960,0.0000026013,0.0000026048, +0.0000026043,0.0000025998,0.0000025952,0.0000025938,0.0000025958, +0.0000025999,0.0000026045,0.0000026095,0.0000026153,0.0000026210, +0.0000026258,0.0000026299,0.0000026329,0.0000026335,0.0000026319, +0.0000026305,0.0000026309,0.0000026332,0.0000026352,0.0000026365, +0.0000026377,0.0000026396,0.0000026436,0.0000026497,0.0000026566, +0.0000026630,0.0000026684,0.0000026741,0.0000026815,0.0000026909, +0.0000027012,0.0000027095,0.0000027140,0.0000027153,0.0000027156, +0.0000027146,0.0000027121,0.0000027085,0.0000027043,0.0000027012, +0.0000027009,0.0000027043,0.0000027101,0.0000027158,0.0000027212, +0.0000027258,0.0000027261,0.0000027223,0.0000027180,0.0000027214, +0.0000027310,0.0000027397,0.0000027452,0.0000027521,0.0000027623, +0.0000027707,0.0000027723,0.0000027680,0.0000027625,0.0000027592, +0.0000027621,0.0000027712,0.0000027840,0.0000027953,0.0000028028, +0.0000028079,0.0000028118,0.0000028145,0.0000028117,0.0000028041, +0.0000027939,0.0000027849,0.0000027788,0.0000027753,0.0000027729, +0.0000027698,0.0000027671,0.0000027682,0.0000027719,0.0000027743, +0.0000027749,0.0000027740,0.0000027717,0.0000027681,0.0000027650, +0.0000027636,0.0000027615,0.0000027582,0.0000027581,0.0000027622, +0.0000027663,0.0000027669,0.0000027658,0.0000027655,0.0000027679, +0.0000027735,0.0000027802,0.0000027845,0.0000027846,0.0000027821, +0.0000027801,0.0000027806,0.0000027818,0.0000027810,0.0000027698, +0.0000027503,0.0000027354,0.0000027271,0.0000027176,0.0000027061, +0.0000026977,0.0000026934,0.0000026903,0.0000026872,0.0000026857, +0.0000026865,0.0000026883,0.0000026873,0.0000026839,0.0000026817, +0.0000026815,0.0000026807,0.0000026727,0.0000026577,0.0000026454, +0.0000026422,0.0000026432,0.0000026425,0.0000026348,0.0000026207, +0.0000026072,0.0000025990,0.0000025958,0.0000025944,0.0000025932, +0.0000025935,0.0000025972,0.0000026065,0.0000026149,0.0000026169, +0.0000026140,0.0000026085,0.0000026028,0.0000025984,0.0000025960, +0.0000025946,0.0000025933,0.0000025916,0.0000025878,0.0000025811, +0.0000025732,0.0000025667,0.0000025612,0.0000025563,0.0000025541, +0.0000025524,0.0000025439,0.0000025267,0.0000025087,0.0000024966, +0.0000024909,0.0000024889,0.0000024874,0.0000024853,0.0000024849, +0.0000024885,0.0000024942,0.0000024979,0.0000024973,0.0000024909, +0.0000024791,0.0000024677,0.0000024564,0.0000024384,0.0000024195, +0.0000024276,0.0000024804,0.0000025385,0.0000025623,0.0000025907, +0.0000026494,0.0000027052,0.0000027464,0.0000027691,0.0000027678, +0.0000027561,0.0000027388,0.0000027245,0.0000027203,0.0000027210, +0.0000027252,0.0000027319,0.0000027393,0.0000027473,0.0000027539, +0.0000027574,0.0000027581,0.0000027572,0.0000027543,0.0000027514, +0.0000027512,0.0000027521,0.0000027494,0.0000027432,0.0000027354, +0.0000027290,0.0000027212,0.0000027065,0.0000026980,0.0000026981, +0.0000026957,0.0000026954,0.0000026965,0.0000026950,0.0000026905, +0.0000026877,0.0000026884,0.0000026902,0.0000026918,0.0000026930, +0.0000026927,0.0000026915,0.0000026921,0.0000026935,0.0000026927, +0.0000026920,0.0000026941,0.0000026977,0.0000027008,0.0000027000, +0.0000026981,0.0000026984,0.0000026985,0.0000026952,0.0000026901, +0.0000026847,0.0000026859,0.0000026939,0.0000027002,0.0000026981, +0.0000026976,0.0000027007,0.0000027018,0.0000026984,0.0000026918, +0.0000026842,0.0000026798,0.0000026777,0.0000026777,0.0000026780, +0.0000026765,0.0000026754,0.0000026763,0.0000026787,0.0000026810, +0.0000026810,0.0000026780,0.0000026741,0.0000026729,0.0000026709, +0.0000026660,0.0000026584,0.0000026485,0.0000026331,0.0000026068, +0.0000025703,0.0000025325,0.0000024996,0.0000024734,0.0000024586, +0.0000024509,0.0000024464,0.0000024438,0.0000024409,0.0000024365, +0.0000024310,0.0000024260,0.0000024240,0.0000024255,0.0000024302, +0.0000024351,0.0000024376,0.0000024376,0.0000024356,0.0000024338, +0.0000024342,0.0000024345,0.0000024315,0.0000024295,0.0000024340, +0.0000024439,0.0000024508,0.0000024519,0.0000024484,0.0000024455, +0.0000024458,0.0000024455,0.0000024356,0.0000024192,0.0000024094, +0.0000024088,0.0000024110,0.0000024134,0.0000024138,0.0000024110, +0.0000024045,0.0000023950,0.0000023854,0.0000023793,0.0000023779, +0.0000023794,0.0000023831,0.0000023859,0.0000023864,0.0000023861, +0.0000023853,0.0000023833,0.0000023808,0.0000023780,0.0000023743, +0.0000023700,0.0000023650,0.0000023568,0.0000023482,0.0000023499, +0.0000023668,0.0000023849,0.0000023936,0.0000024020,0.0000024168, +0.0000024283,0.0000024370,0.0000024483,0.0000024529,0.0000024827, +0.0000025440,0.0000025861,0.0000026012,0.0000026078,0.0000026088, +0.0000025958,0.0000025765,0.0000025710,0.0000025768,0.0000025506, +0.0000025250,0.0000025494,0.0000026279,0.0000026900,0.0000027329, +0.0000027634,0.0000027696,0.0000027659,0.0000027604,0.0000027576, +0.0000027613,0.0000027593,0.0000027497,0.0000027446,0.0000027466, +0.0000027531,0.0000027612,0.0000027670,0.0000027698,0.0000027707, +0.0000027705,0.0000027694,0.0000027665,0.0000027625,0.0000027577, +0.0000027526,0.0000027472,0.0000027415,0.0000027358,0.0000027309, +0.0000027277,0.0000027265,0.0000027265,0.0000027265,0.0000027231, +0.0000027239,0.0000027251,0.0000027262,0.0000027268,0.0000027270, +0.0000027274,0.0000027274,0.0000027253,0.0000027209,0.0000027157, +0.0000027106,0.0000027060,0.0000026993,0.0000026915,0.0000026863, +0.0000026872,0.0000026899,0.0000026926,0.0000026929,0.0000026903, +0.0000026862,0.0000026829,0.0000026814,0.0000026791,0.0000026757, +0.0000026769,0.0000026807,0.0000026808,0.0000026781,0.0000026794, +0.0000026849,0.0000026840,0.0000026734,0.0000026645,0.0000026623, +0.0000026591,0.0000026525,0.0000026372,0.0000026121,0.0000025947, +0.0000025833,0.0000025685,0.0000025585,0.0000025531,0.0000025441, +0.0000025438,0.0000025531,0.0000025543,0.0000025483,0.0000025427, +0.0000025395,0.0000025371,0.0000025340,0.0000025310,0.0000025306, +0.0000025326,0.0000025355,0.0000025407,0.0000025461,0.0000025499, +0.0000025519,0.0000025517,0.0000025411,0.0000025041,0.0000024679, +0.0000024534,0.0000024421,0.0000024314,0.0000024301,0.0000024305, +0.0000024271,0.0000024280,0.0000024436,0.0000024590,0.0000024629, +0.0000024656,0.0000024705,0.0000024746,0.0000024764,0.0000024755, +0.0000024730,0.0000024709,0.0000024696,0.0000024735,0.0000024851, +0.0000025051,0.0000025275,0.0000025541,0.0000025755,0.0000025845, +0.0000025850,0.0000025841,0.0000025842,0.0000025842,0.0000025823, +0.0000025777,0.0000025679,0.0000025596,0.0000025563,0.0000025480, +0.0000025461,0.0000025610,0.0000025732,0.0000025781,0.0000025787, +0.0000025732,0.0000025650,0.0000025598,0.0000025569,0.0000025539, +0.0000025497,0.0000025461,0.0000025426,0.0000025402,0.0000025393, +0.0000025390,0.0000025399,0.0000025420,0.0000025459,0.0000025489, +0.0000025459,0.0000025362,0.0000025247,0.0000025166,0.0000025134, +0.0000025174,0.0000025284,0.0000025367,0.0000025363,0.0000025338, +0.0000025317,0.0000025223,0.0000025077,0.0000025039,0.0000025150, +0.0000025225,0.0000025186,0.0000025085,0.0000024991,0.0000024941, +0.0000024917,0.0000024903,0.0000024895,0.0000024955,0.0000025210, +0.0000025619,0.0000025968,0.0000026111,0.0000026132,0.0000026126, +0.0000026096,0.0000025970,0.0000025786,0.0000025606,0.0000025476, +0.0000025438,0.0000025455,0.0000025518,0.0000025595,0.0000025670, +0.0000025725,0.0000025769,0.0000025809,0.0000025859,0.0000025930, +0.0000026005,0.0000026067,0.0000026106,0.0000026129,0.0000026142, +0.0000026144,0.0000026142,0.0000026133,0.0000026130,0.0000026126, +0.0000026120,0.0000026114,0.0000026115,0.0000026116,0.0000026114, +0.0000026106,0.0000026092,0.0000026077,0.0000026063,0.0000026049, +0.0000026029,0.0000025999,0.0000025965,0.0000025933,0.0000025908, +0.0000025892,0.0000025896,0.0000025930,0.0000025994,0.0000026074, +0.0000026145,0.0000026180,0.0000026186,0.0000026203,0.0000026237, +0.0000026241,0.0000026207,0.0000026175,0.0000026191,0.0000026263, +0.0000026352,0.0000026409,0.0000026417,0.0000026405,0.0000026420, +0.0000026462,0.0000026473,0.0000026426,0.0000026362,0.0000026350, +0.0000026390,0.0000026461,0.0000026547,0.0000026645,0.0000026755, +0.0000026868,0.0000026969,0.0000027059,0.0000027138,0.0000027201, +0.0000027255,0.0000027300,0.0000027322,0.0000027315,0.0000027266, +0.0000027165,0.0000027039,0.0000026942,0.0000026911,0.0000026973, +0.0000027109,0.0000027262,0.0000027393,0.0000027464,0.0000027475, +0.0000027427,0.0000027324,0.0000027238,0.0000027219,0.0000027220, +0.0000027152,0.0000026999,0.0000026818,0.0000026641,0.0000026465, +0.0000026292,0.0000026159,0.0000026089,0.0000026079,0.0000026113, +0.0000026152,0.0000026161,0.0000026139,0.0000026102,0.0000026048, +0.0000025973,0.0000025919,0.0000025919,0.0000025962,0.0000026010, +0.0000026031,0.0000026024,0.0000025978,0.0000025911,0.0000025831, +0.0000025756,0.0000025696,0.0000025662,0.0000025642,0.0000025611, +0.0000025567,0.0000025534,0.0000025514,0.0000025505,0.0000025510, +0.0000025533,0.0000025567,0.0000025597,0.0000025631,0.0000025691, +0.0000025771,0.0000025858,0.0000025960,0.0000026088,0.0000026232, +0.0000026396,0.0000026578,0.0000026728,0.0000026814,0.0000026853, +0.0000026878,0.0000026918,0.0000026979,0.0000027043,0.0000027097, +0.0000027149,0.0000027207,0.0000027264,0.0000027321,0.0000027371, +0.0000027422,0.0000027480,0.0000027532,0.0000027557,0.0000027559, +0.0000027559,0.0000027570,0.0000027575,0.0000027535,0.0000027443, +0.0000027324,0.0000027223,0.0000027167,0.0000027137,0.0000027118, +0.0000027114,0.0000027138,0.0000027205,0.0000027288,0.0000027346, +0.0000027357,0.0000027336,0.0000027292,0.0000027227,0.0000027146, +0.0000027087,0.0000027072,0.0000027093,0.0000027136,0.0000027175, +0.0000027192,0.0000027195,0.0000027211,0.0000027258,0.0000027313, +0.0000027367,0.0000027456,0.0000027602,0.0000027720,0.0000027742, +0.0000027786,0.0000027964,0.0000028120,0.0000028130,0.0000028097, +0.0000028090,0.0000028093,0.0000028095,0.0000028084,0.0000028050, +0.0000028006,0.0000027970,0.0000027932,0.0000027904,0.0000027900, +0.0000027927,0.0000027983,0.0000028044,0.0000028070,0.0000028056, +0.0000028008,0.0000027972,0.0000027957,0.0000027993,0.0000028029, +0.0000028029,0.0000027983,0.0000027904,0.0000027814,0.0000027729, +0.0000027658,0.0000027590,0.0000027516,0.0000027443,0.0000027396, +0.0000027386,0.0000027388,0.0000027373,0.0000027337,0.0000027286, +0.0000027254,0.0000027221,0.0000027127,0.0000026942,0.0000026718, +0.0000026522,0.0000026385,0.0000026303,0.0000026238,0.0000026159, +0.0000026058,0.0000025942,0.0000025826,0.0000025717,0.0000025614, +0.0000025549,0.0000025544,0.0000025590,0.0000025655,0.0000025708, +0.0000025734,0.0000025734,0.0000025723,0.0000025721,0.0000025744, +0.0000025791,0.0000025851,0.0000025922,0.0000025984,0.0000026042, +0.0000026112,0.0000026178,0.0000026256,0.0000026331,0.0000026395, +0.0000026442,0.0000026478,0.0000026513,0.0000026547,0.0000026569, +0.0000026567,0.0000026564,0.0000026575,0.0000026619,0.0000026684, +0.0000026763,0.0000026841,0.0000026882,0.0000026890,0.0000026886, +0.0000026879,0.0000026856,0.0000026827,0.0000026797,0.0000026762, +0.0000026716,0.0000026678,0.0000026649,0.0000026606,0.0000026575, +0.0000026575,0.0000026585,0.0000026591,0.0000026610,0.0000026638, +0.0000026645,0.0000026634,0.0000026627,0.0000026618,0.0000026593, +0.0000026547,0.0000026512,0.0000026521,0.0000026594,0.0000026697, +0.0000026784,0.0000026836,0.0000026861,0.0000026881,0.0000026900, +0.0000026916,0.0000026906,0.0000026869,0.0000026822,0.0000026776, +0.0000026721,0.0000026699,0.0000026722,0.0000026698,0.0000026639, +0.0000026733,0.0000026867,0.0000026887,0.0000026860,0.0000026808, +0.0000026579,0.0000026106,0.0000025787,0.0000025802,0.0000026000, +0.0000026169,0.0000026303,0.0000026479,0.0000026679,0.0000026836, +0.0000026900,0.0000026875,0.0000026792,0.0000026757,0.0000026789, +0.0000026895,0.0000027065,0.0000027276,0.0000027455,0.0000027581, +0.0000027667,0.0000027695,0.0000027669,0.0000027643,0.0000027680, +0.0000027774,0.0000027888,0.0000027996,0.0000028042,0.0000028034, +0.0000028025,0.0000027985,0.0000027914,0.0000027909,0.0000027949, +0.0000027964,0.0000027972,0.0000028021,0.0000028063,0.0000028068, +0.0000028061,0.0000028016,0.0000027884,0.0000027766,0.0000027803, +0.0000027951,0.0000027998,0.0000027956,0.0000027943,0.0000027954, +0.0000027944,0.0000027966,0.0000028039,0.0000028100,0.0000028119, +0.0000028108,0.0000028050,0.0000027959,0.0000027858,0.0000027765, +0.0000027697,0.0000027650,0.0000027621,0.0000027603,0.0000027589, +0.0000027577,0.0000027579,0.0000027591,0.0000027608,0.0000027613, +0.0000027578,0.0000027475,0.0000027366,0.0000027293,0.0000027174, +0.0000026968,0.0000026800,0.0000026767,0.0000026823,0.0000026950, +0.0000027077,0.0000027186,0.0000027304,0.0000027396,0.0000027423, +0.0000027426,0.0000027444,0.0000027468,0.0000027502,0.0000027553, +0.0000027572,0.0000027523,0.0000027412,0.0000027297,0.0000027193, +0.0000027117,0.0000027085,0.0000027054,0.0000026969,0.0000026840, +0.0000026710,0.0000026581,0.0000026448,0.0000026333,0.0000026261, +0.0000026233,0.0000026217,0.0000026187,0.0000026146,0.0000026112, +0.0000026087,0.0000026034,0.0000025898,0.0000025693,0.0000025509, +0.0000025400,0.0000025345,0.0000025301,0.0000025260,0.0000025241, +0.0000025240,0.0000025244,0.0000025245,0.0000025245,0.0000025249, +0.0000025259,0.0000025275,0.0000025289,0.0000025299,0.0000025303, +0.0000025294,0.0000025270,0.0000025241,0.0000025214,0.0000025197, +0.0000025182,0.0000025145,0.0000025087,0.0000025073,0.0000025135, +0.0000025326,0.0000025562,0.0000025742,0.0000025833,0.0000025874, +0.0000025915,0.0000025955,0.0000025968,0.0000025945,0.0000025906, +0.0000025887,0.0000025898,0.0000025931,0.0000025963,0.0000025998, +0.0000026051,0.0000026120,0.0000026192,0.0000026251,0.0000026285, +0.0000026292,0.0000026273,0.0000026238,0.0000026212,0.0000026208, +0.0000026224,0.0000026252,0.0000026279,0.0000026305,0.0000026346, +0.0000026415,0.0000026488,0.0000026541,0.0000026590,0.0000026655, +0.0000026731,0.0000026812,0.0000026897,0.0000026980,0.0000027049, +0.0000027099,0.0000027134,0.0000027153,0.0000027166,0.0000027159, +0.0000027122,0.0000027069,0.0000027023,0.0000027027,0.0000027077, +0.0000027141,0.0000027184,0.0000027221,0.0000027250,0.0000027229, +0.0000027161,0.0000027116,0.0000027184,0.0000027321,0.0000027435, +0.0000027507,0.0000027582,0.0000027668,0.0000027730,0.0000027726, +0.0000027661,0.0000027578,0.0000027526,0.0000027550,0.0000027670, +0.0000027824,0.0000027950,0.0000028035,0.0000028107,0.0000028160, +0.0000028189,0.0000028165,0.0000028088,0.0000027978,0.0000027875, +0.0000027815,0.0000027794,0.0000027768,0.0000027733,0.0000027721, +0.0000027742,0.0000027763,0.0000027767,0.0000027754,0.0000027734, +0.0000027707,0.0000027675,0.0000027668,0.0000027676,0.0000027650, +0.0000027609,0.0000027616,0.0000027654,0.0000027670,0.0000027661, +0.0000027653,0.0000027670,0.0000027718,0.0000027787,0.0000027840, +0.0000027846,0.0000027825,0.0000027806,0.0000027806,0.0000027808, +0.0000027807,0.0000027745,0.0000027593,0.0000027429,0.0000027329, +0.0000027242,0.0000027130,0.0000027050,0.0000027021,0.0000026991, +0.0000026947,0.0000026918,0.0000026915,0.0000026918,0.0000026897, +0.0000026866,0.0000026861,0.0000026885,0.0000026891,0.0000026812, +0.0000026656,0.0000026529,0.0000026498,0.0000026512,0.0000026491, +0.0000026375,0.0000026205,0.0000026060,0.0000025973,0.0000025932, +0.0000025903,0.0000025873,0.0000025858,0.0000025886,0.0000025978, +0.0000026072,0.0000026097,0.0000026072,0.0000026018,0.0000025960, +0.0000025919,0.0000025903,0.0000025904,0.0000025910,0.0000025907, +0.0000025880,0.0000025822,0.0000025732,0.0000025623,0.0000025531, +0.0000025478,0.0000025448,0.0000025360,0.0000025198,0.0000025031, +0.0000024929,0.0000024885,0.0000024858,0.0000024837,0.0000024832, +0.0000024845,0.0000024860,0.0000024866,0.0000024866,0.0000024864, +0.0000024854,0.0000024812,0.0000024725,0.0000024632,0.0000024551, +0.0000024417,0.0000024227,0.0000024179,0.0000024546,0.0000025174, +0.0000025524,0.0000025751,0.0000026291,0.0000026901,0.0000027353, +0.0000027641,0.0000027695,0.0000027613,0.0000027467,0.0000027308, +0.0000027235,0.0000027235,0.0000027272,0.0000027341,0.0000027426, +0.0000027514,0.0000027588,0.0000027627,0.0000027634,0.0000027627, +0.0000027599,0.0000027562,0.0000027548,0.0000027552,0.0000027542, +0.0000027486,0.0000027400,0.0000027323,0.0000027264,0.0000027128, +0.0000026985,0.0000026966,0.0000026959,0.0000026960,0.0000026975, +0.0000026963,0.0000026939,0.0000026917,0.0000026910,0.0000026910, +0.0000026905,0.0000026903,0.0000026902,0.0000026899,0.0000026908, +0.0000026925,0.0000026922,0.0000026914,0.0000026930,0.0000026956, +0.0000026956,0.0000026934,0.0000026923,0.0000026939,0.0000026938, +0.0000026906,0.0000026863,0.0000026816,0.0000026833,0.0000026915, +0.0000026985,0.0000026963,0.0000026944,0.0000026966,0.0000026991, +0.0000026980,0.0000026950,0.0000026900,0.0000026848,0.0000026812, +0.0000026801,0.0000026805,0.0000026804,0.0000026797,0.0000026799, +0.0000026808,0.0000026811,0.0000026797,0.0000026767,0.0000026748, +0.0000026740,0.0000026708,0.0000026634,0.0000026550,0.0000026440, +0.0000026233,0.0000025887,0.0000025486,0.0000025138,0.0000024870, +0.0000024690,0.0000024596,0.0000024558,0.0000024530,0.0000024501, +0.0000024464,0.0000024419,0.0000024349,0.0000024274,0.0000024223, +0.0000024210,0.0000024234,0.0000024287,0.0000024333,0.0000024351, +0.0000024348,0.0000024323,0.0000024284,0.0000024265,0.0000024272, +0.0000024268,0.0000024232,0.0000024217,0.0000024262,0.0000024345, +0.0000024404,0.0000024417,0.0000024412,0.0000024403,0.0000024341, +0.0000024212,0.0000024102,0.0000024076,0.0000024091,0.0000024117, +0.0000024142,0.0000024147,0.0000024130,0.0000024065,0.0000023955, +0.0000023844,0.0000023773,0.0000023753,0.0000023768,0.0000023809, +0.0000023844,0.0000023857,0.0000023859,0.0000023855,0.0000023840, +0.0000023819,0.0000023801,0.0000023774,0.0000023730,0.0000023689, +0.0000023648,0.0000023570,0.0000023522,0.0000023591,0.0000023769, +0.0000023910,0.0000023959,0.0000024051,0.0000024204,0.0000024328, +0.0000024460,0.0000024504,0.0000024700,0.0000025306,0.0000025807, +0.0000025981,0.0000026040,0.0000026051,0.0000025903,0.0000025735, +0.0000025716,0.0000025761,0.0000025478,0.0000025232,0.0000025478, +0.0000026248,0.0000026836,0.0000027267,0.0000027556,0.0000027667, +0.0000027625,0.0000027584,0.0000027539,0.0000027544,0.0000027567, +0.0000027531,0.0000027464,0.0000027429,0.0000027428,0.0000027474, +0.0000027531,0.0000027580,0.0000027606,0.0000027618,0.0000027618, +0.0000027597,0.0000027567,0.0000027524,0.0000027470,0.0000027405, +0.0000027338,0.0000027277,0.0000027232,0.0000027214,0.0000027215, +0.0000027223,0.0000027227,0.0000027222,0.0000027238,0.0000027254, +0.0000027263,0.0000027269,0.0000027272,0.0000027275,0.0000027273, +0.0000027258,0.0000027224,0.0000027166,0.0000027085,0.0000026983, +0.0000026882,0.0000026822,0.0000026836,0.0000026887,0.0000026939, +0.0000026954,0.0000026939,0.0000026906,0.0000026866,0.0000026824, +0.0000026799,0.0000026799,0.0000026782,0.0000026764,0.0000026796, +0.0000026816,0.0000026793,0.0000026761,0.0000026804,0.0000026861, +0.0000026829,0.0000026712,0.0000026633,0.0000026601,0.0000026558, +0.0000026465,0.0000026251,0.0000026028,0.0000025887,0.0000025736, +0.0000025619,0.0000025577,0.0000025505,0.0000025455,0.0000025497, +0.0000025541,0.0000025511,0.0000025462,0.0000025427,0.0000025402, +0.0000025373,0.0000025348,0.0000025345,0.0000025368,0.0000025390, +0.0000025418,0.0000025449,0.0000025483,0.0000025504,0.0000025507, +0.0000025488,0.0000025281,0.0000024865,0.0000024609,0.0000024521, +0.0000024396,0.0000024319,0.0000024319,0.0000024294,0.0000024258, +0.0000024330,0.0000024504,0.0000024579,0.0000024584,0.0000024627, +0.0000024695,0.0000024757,0.0000024780,0.0000024759,0.0000024723, +0.0000024695,0.0000024689,0.0000024723,0.0000024814,0.0000024971, +0.0000025169,0.0000025404,0.0000025659,0.0000025789,0.0000025804, +0.0000025808,0.0000025813,0.0000025809,0.0000025789,0.0000025747, +0.0000025649,0.0000025583,0.0000025543,0.0000025466,0.0000025475, +0.0000025634,0.0000025739,0.0000025790,0.0000025792,0.0000025726, +0.0000025643,0.0000025588,0.0000025551,0.0000025515,0.0000025476, +0.0000025437,0.0000025393,0.0000025355,0.0000025349,0.0000025370, +0.0000025408,0.0000025461,0.0000025512,0.0000025531,0.0000025497, +0.0000025406,0.0000025294,0.0000025213,0.0000025190,0.0000025218, +0.0000025310,0.0000025397,0.0000025411,0.0000025377,0.0000025336, +0.0000025279,0.0000025163,0.0000025058,0.0000025085,0.0000025203, +0.0000025272,0.0000025221,0.0000025111,0.0000025002,0.0000024917, +0.0000024881,0.0000024855,0.0000024854,0.0000024938,0.0000025183, +0.0000025548,0.0000025876,0.0000026041,0.0000026092,0.0000026103, +0.0000026084,0.0000025965,0.0000025768,0.0000025572,0.0000025455, +0.0000025457,0.0000025478,0.0000025522,0.0000025565,0.0000025613, +0.0000025676,0.0000025736,0.0000025796,0.0000025861,0.0000025926, +0.0000025977,0.0000026011,0.0000026026,0.0000026028,0.0000026021, +0.0000026015,0.0000026010,0.0000026009,0.0000026003,0.0000025992, +0.0000025983,0.0000025982,0.0000025986,0.0000025988,0.0000025986, +0.0000025982,0.0000025976,0.0000025968,0.0000025959,0.0000025951, +0.0000025941,0.0000025925,0.0000025905,0.0000025883,0.0000025858, +0.0000025837,0.0000025836,0.0000025872,0.0000025952,0.0000026041, +0.0000026098,0.0000026123,0.0000026164,0.0000026228,0.0000026256, +0.0000026234,0.0000026200,0.0000026202,0.0000026244,0.0000026299, +0.0000026332,0.0000026336,0.0000026340,0.0000026374,0.0000026424, +0.0000026436,0.0000026405,0.0000026352,0.0000026332,0.0000026356, +0.0000026407,0.0000026479,0.0000026579,0.0000026700,0.0000026814, +0.0000026906,0.0000026987,0.0000027070,0.0000027145,0.0000027212, +0.0000027269,0.0000027302,0.0000027297,0.0000027238,0.0000027123, +0.0000026991,0.0000026902,0.0000026884,0.0000026948,0.0000027067, +0.0000027184,0.0000027287,0.0000027341,0.0000027342,0.0000027303, +0.0000027251,0.0000027233,0.0000027227,0.0000027158,0.0000026986, +0.0000026767,0.0000026582,0.0000026451,0.0000026347,0.0000026251, +0.0000026176,0.0000026135,0.0000026127,0.0000026137,0.0000026154, +0.0000026147,0.0000026116,0.0000026072,0.0000026010,0.0000025926, +0.0000025862,0.0000025863,0.0000025913,0.0000025966,0.0000025987, +0.0000025978,0.0000025933,0.0000025873,0.0000025803,0.0000025729, +0.0000025669,0.0000025643,0.0000025645,0.0000025643,0.0000025610, +0.0000025559,0.0000025510,0.0000025470,0.0000025444,0.0000025425, +0.0000025416,0.0000025425,0.0000025459,0.0000025528,0.0000025616, +0.0000025693,0.0000025770,0.0000025864,0.0000025973,0.0000026110, +0.0000026299,0.0000026505,0.0000026667,0.0000026765,0.0000026817, +0.0000026855,0.0000026905,0.0000026966,0.0000027016,0.0000027054, +0.0000027093,0.0000027132,0.0000027170,0.0000027207,0.0000027248, +0.0000027303,0.0000027372,0.0000027427,0.0000027447,0.0000027445, +0.0000027451,0.0000027466,0.0000027453,0.0000027399,0.0000027310, +0.0000027222,0.0000027158,0.0000027118,0.0000027094,0.0000027082, +0.0000027083,0.0000027109,0.0000027175,0.0000027244,0.0000027271, +0.0000027270,0.0000027262,0.0000027251,0.0000027218,0.0000027175, +0.0000027149,0.0000027146,0.0000027162,0.0000027185,0.0000027198, +0.0000027199,0.0000027203,0.0000027226,0.0000027271,0.0000027326, +0.0000027389,0.0000027480,0.0000027609,0.0000027708,0.0000027744, +0.0000027818,0.0000028000,0.0000028132,0.0000028123,0.0000028098, +0.0000028111,0.0000028114,0.0000028082,0.0000028035,0.0000027992, +0.0000027960,0.0000027937,0.0000027921,0.0000027923,0.0000027950, +0.0000028004,0.0000028072,0.0000028125,0.0000028141,0.0000028115, +0.0000028055,0.0000027993,0.0000027969,0.0000027975,0.0000027982, +0.0000027970,0.0000027925,0.0000027852,0.0000027762,0.0000027669, +0.0000027593,0.0000027519,0.0000027444,0.0000027381,0.0000027346, +0.0000027343,0.0000027354,0.0000027359,0.0000027340,0.0000027313, +0.0000027307,0.0000027313,0.0000027280,0.0000027163,0.0000026977, +0.0000026759,0.0000026551,0.0000026386,0.0000026267,0.0000026180, +0.0000026106,0.0000026026,0.0000025931,0.0000025831,0.0000025739, +0.0000025682,0.0000025673,0.0000025698,0.0000025722,0.0000025734, +0.0000025730,0.0000025711,0.0000025678,0.0000025644,0.0000025623, +0.0000025627,0.0000025648,0.0000025675,0.0000025690,0.0000025708, +0.0000025723,0.0000025738,0.0000025778,0.0000025822,0.0000025861, +0.0000025890,0.0000025918,0.0000025952,0.0000025998,0.0000026034, +0.0000026058,0.0000026104,0.0000026173,0.0000026276,0.0000026407, +0.0000026547,0.0000026673,0.0000026753,0.0000026793,0.0000026805, +0.0000026795,0.0000026767,0.0000026738,0.0000026714,0.0000026686, +0.0000026645,0.0000026618,0.0000026600,0.0000026570,0.0000026552, +0.0000026555,0.0000026562,0.0000026566,0.0000026581,0.0000026595, +0.0000026587,0.0000026565,0.0000026547,0.0000026530,0.0000026498, +0.0000026453,0.0000026430,0.0000026450,0.0000026528,0.0000026631, +0.0000026717,0.0000026790,0.0000026850,0.0000026890,0.0000026911, +0.0000026917,0.0000026896,0.0000026866,0.0000026830,0.0000026782, +0.0000026717,0.0000026668,0.0000026672,0.0000026664,0.0000026587, +0.0000026616,0.0000026785,0.0000026877,0.0000026857,0.0000026803, +0.0000026737,0.0000026530,0.0000026104,0.0000025797,0.0000025816, +0.0000026032,0.0000026179,0.0000026244,0.0000026347,0.0000026515, +0.0000026668,0.0000026747,0.0000026753,0.0000026727,0.0000026685, +0.0000026664,0.0000026751,0.0000026971,0.0000027240,0.0000027459, +0.0000027601,0.0000027666,0.0000027669,0.0000027622,0.0000027596, +0.0000027653,0.0000027775,0.0000027913,0.0000028008,0.0000028039, +0.0000028046,0.0000028028,0.0000027950,0.0000027898,0.0000027926, +0.0000027970,0.0000027975,0.0000027985,0.0000028005,0.0000028005, +0.0000027989,0.0000027973,0.0000027911,0.0000027797,0.0000027734, +0.0000027816,0.0000027965,0.0000028002,0.0000027959,0.0000027954, +0.0000027964,0.0000027959,0.0000027976,0.0000028030,0.0000028075, +0.0000028089,0.0000028068,0.0000028005,0.0000027916,0.0000027827, +0.0000027760,0.0000027724,0.0000027708,0.0000027692,0.0000027664, +0.0000027629,0.0000027605,0.0000027602,0.0000027606,0.0000027608, +0.0000027576,0.0000027487,0.0000027390,0.0000027335,0.0000027229, +0.0000027008,0.0000026811,0.0000026758,0.0000026805,0.0000026940, +0.0000027077,0.0000027174,0.0000027272,0.0000027354,0.0000027388, +0.0000027395,0.0000027414,0.0000027441,0.0000027475,0.0000027525, +0.0000027565,0.0000027545,0.0000027441,0.0000027295,0.0000027166, +0.0000027081,0.0000027040,0.0000027010,0.0000026946,0.0000026837, +0.0000026709,0.0000026588,0.0000026480,0.0000026380,0.0000026301, +0.0000026259,0.0000026240,0.0000026221,0.0000026188,0.0000026147, +0.0000026112,0.0000026037,0.0000025854,0.0000025626,0.0000025469, +0.0000025398,0.0000025351,0.0000025297,0.0000025257,0.0000025246, +0.0000025250,0.0000025256,0.0000025259,0.0000025260,0.0000025266, +0.0000025274,0.0000025283,0.0000025284,0.0000025275,0.0000025264, +0.0000025249,0.0000025244,0.0000025247,0.0000025251,0.0000025235, +0.0000025208,0.0000025188,0.0000025177,0.0000025143,0.0000025081, +0.0000025052,0.0000025129,0.0000025329,0.0000025559,0.0000025729, +0.0000025811,0.0000025845,0.0000025869,0.0000025890,0.0000025897, +0.0000025880,0.0000025858,0.0000025852,0.0000025860,0.0000025871, +0.0000025888,0.0000025931,0.0000026007,0.0000026097,0.0000026163, +0.0000026188,0.0000026187,0.0000026168,0.0000026138,0.0000026097, +0.0000026063,0.0000026060,0.0000026095,0.0000026150,0.0000026206, +0.0000026260,0.0000026326,0.0000026406,0.0000026470,0.0000026514, +0.0000026575,0.0000026657,0.0000026741,0.0000026818,0.0000026881, +0.0000026934,0.0000026986,0.0000027037,0.0000027084,0.0000027129, +0.0000027157,0.0000027167,0.0000027145,0.0000027099,0.0000027061, +0.0000027077,0.0000027122,0.0000027165,0.0000027202,0.0000027232, +0.0000027234,0.0000027172,0.0000027088,0.0000027068,0.0000027178, +0.0000027337,0.0000027465,0.0000027555,0.0000027629,0.0000027691, +0.0000027726,0.0000027709,0.0000027634,0.0000027521,0.0000027460, +0.0000027507,0.0000027649,0.0000027814,0.0000027950,0.0000028060, +0.0000028148,0.0000028200,0.0000028226,0.0000028203,0.0000028111, +0.0000027981,0.0000027881,0.0000027842,0.0000027826,0.0000027798, +0.0000027776,0.0000027777,0.0000027788,0.0000027791,0.0000027775, +0.0000027750,0.0000027730,0.0000027714,0.0000027712,0.0000027731, +0.0000027735,0.0000027691,0.0000027645,0.0000027650,0.0000027672, +0.0000027673,0.0000027666,0.0000027673,0.0000027708,0.0000027765, +0.0000027817,0.0000027829,0.0000027812,0.0000027789,0.0000027776, +0.0000027764,0.0000027768,0.0000027753,0.0000027664,0.0000027508, +0.0000027390,0.0000027307,0.0000027205,0.0000027125,0.0000027102, +0.0000027076,0.0000027019,0.0000026971,0.0000026953,0.0000026939, +0.0000026904,0.0000026873,0.0000026884,0.0000026930,0.0000026947, +0.0000026879,0.0000026732,0.0000026608,0.0000026576,0.0000026590, +0.0000026561,0.0000026420,0.0000026223,0.0000026062,0.0000025971, +0.0000025923,0.0000025886,0.0000025840,0.0000025801,0.0000025810, +0.0000025887,0.0000025979,0.0000026012,0.0000025995,0.0000025945, +0.0000025892,0.0000025860,0.0000025854,0.0000025871,0.0000025892, +0.0000025900,0.0000025890,0.0000025833,0.0000025720,0.0000025574, +0.0000025464,0.0000025389,0.0000025274,0.0000025112,0.0000024962, +0.0000024884,0.0000024863,0.0000024845,0.0000024815,0.0000024800, +0.0000024822,0.0000024862,0.0000024884,0.0000024871,0.0000024817, +0.0000024751,0.0000024699,0.0000024669,0.0000024630,0.0000024577, +0.0000024519,0.0000024420,0.0000024231,0.0000024122,0.0000024304, +0.0000024913,0.0000025400,0.0000025616,0.0000026050,0.0000026689, +0.0000027194,0.0000027555,0.0000027683,0.0000027646,0.0000027538, +0.0000027402,0.0000027298,0.0000027280,0.0000027313,0.0000027377, +0.0000027461,0.0000027544,0.0000027613,0.0000027652,0.0000027659, +0.0000027654,0.0000027637,0.0000027612,0.0000027594,0.0000027584, +0.0000027572,0.0000027532,0.0000027443,0.0000027346,0.0000027289, +0.0000027192,0.0000027023,0.0000026960,0.0000026959,0.0000026964, +0.0000026987,0.0000026975,0.0000026958,0.0000026950,0.0000026950, +0.0000026945,0.0000026921,0.0000026897,0.0000026883,0.0000026878, +0.0000026883,0.0000026899,0.0000026907,0.0000026912,0.0000026924, +0.0000026923,0.0000026888,0.0000026859,0.0000026869,0.0000026894, +0.0000026890,0.0000026855,0.0000026817,0.0000026784,0.0000026808, +0.0000026885,0.0000026964,0.0000026943,0.0000026918,0.0000026934, +0.0000026966,0.0000026974,0.0000026961,0.0000026934,0.0000026900, +0.0000026863,0.0000026841,0.0000026838,0.0000026842,0.0000026840, +0.0000026832,0.0000026822,0.0000026808,0.0000026779,0.0000026750, +0.0000026748,0.0000026742,0.0000026693,0.0000026606,0.0000026512, +0.0000026372,0.0000026112,0.0000025743,0.0000025372,0.0000025066, +0.0000024837,0.0000024704,0.0000024643,0.0000024617,0.0000024592, +0.0000024562,0.0000024523,0.0000024475,0.0000024404,0.0000024317, +0.0000024242,0.0000024198,0.0000024194,0.0000024226,0.0000024266, +0.0000024294,0.0000024306,0.0000024303,0.0000024286,0.0000024246, +0.0000024205,0.0000024198,0.0000024210,0.0000024206,0.0000024175, +0.0000024161,0.0000024196,0.0000024260,0.0000024297,0.0000024299, +0.0000024259,0.0000024172,0.0000024083,0.0000024054,0.0000024070, +0.0000024101,0.0000024132,0.0000024153,0.0000024153,0.0000024131, +0.0000024075,0.0000023980,0.0000023859,0.0000023761,0.0000023725, +0.0000023735,0.0000023778,0.0000023828,0.0000023858,0.0000023870, +0.0000023873,0.0000023862,0.0000023837,0.0000023813,0.0000023794, +0.0000023767,0.0000023737,0.0000023719,0.0000023680,0.0000023605, +0.0000023597,0.0000023695,0.0000023866,0.0000023941,0.0000023973, +0.0000024110,0.0000024281,0.0000024434,0.0000024486,0.0000024609, +0.0000025201,0.0000025761,0.0000025951,0.0000026005,0.0000026021, +0.0000025856,0.0000025721,0.0000025732,0.0000025768,0.0000025471, +0.0000025207,0.0000025445,0.0000026176,0.0000026744,0.0000027189, +0.0000027449,0.0000027613,0.0000027594,0.0000027543,0.0000027513, +0.0000027489,0.0000027498,0.0000027513,0.0000027495,0.0000027452, +0.0000027411,0.0000027411,0.0000027421,0.0000027447,0.0000027469, +0.0000027485,0.0000027486,0.0000027473,0.0000027446,0.0000027406, +0.0000027360,0.0000027308,0.0000027258,0.0000027215,0.0000027187, +0.0000027180,0.0000027188,0.0000027199,0.0000027211,0.0000027245, +0.0000027254,0.0000027256,0.0000027252,0.0000027249,0.0000027250, +0.0000027256,0.0000027258,0.0000027245,0.0000027199,0.0000027103, +0.0000026977,0.0000026870,0.0000026802,0.0000026806,0.0000026857, +0.0000026934,0.0000026967,0.0000026956,0.0000026919,0.0000026872, +0.0000026832,0.0000026791,0.0000026762,0.0000026773,0.0000026780, +0.0000026763,0.0000026772,0.0000026809,0.0000026805,0.0000026762, +0.0000026762,0.0000026840,0.0000026885,0.0000026821,0.0000026696, +0.0000026618,0.0000026577,0.0000026522,0.0000026375,0.0000026136, +0.0000025945,0.0000025784,0.0000025651,0.0000025605,0.0000025561, +0.0000025488,0.0000025459,0.0000025492,0.0000025499,0.0000025471, +0.0000025445,0.0000025419,0.0000025396,0.0000025384,0.0000025392, +0.0000025420,0.0000025445,0.0000025459,0.0000025464,0.0000025475, +0.0000025490,0.0000025491,0.0000025487,0.0000025426,0.0000025104, +0.0000024729,0.0000024596,0.0000024505,0.0000024386,0.0000024351, +0.0000024340,0.0000024278,0.0000024266,0.0000024402,0.0000024532, +0.0000024543,0.0000024560,0.0000024627,0.0000024704,0.0000024769, +0.0000024793,0.0000024764,0.0000024710,0.0000024688,0.0000024691, +0.0000024728,0.0000024804,0.0000024921,0.0000025098,0.0000025296, +0.0000025564,0.0000025741,0.0000025780,0.0000025786,0.0000025789, +0.0000025782,0.0000025767,0.0000025727,0.0000025629,0.0000025572, +0.0000025526,0.0000025457,0.0000025498,0.0000025652,0.0000025745, +0.0000025787,0.0000025787,0.0000025714,0.0000025631,0.0000025578, +0.0000025532,0.0000025494,0.0000025455,0.0000025395,0.0000025325, +0.0000025277,0.0000025283,0.0000025326,0.0000025396,0.0000025480, +0.0000025541,0.0000025565,0.0000025534,0.0000025463,0.0000025368, +0.0000025267,0.0000025221,0.0000025242,0.0000025326,0.0000025423, +0.0000025460,0.0000025425,0.0000025359,0.0000025310,0.0000025243, +0.0000025135,0.0000025079,0.0000025137,0.0000025265,0.0000025325, +0.0000025263,0.0000025131,0.0000024994,0.0000024888,0.0000024848, +0.0000024818,0.0000024826,0.0000024909,0.0000025111,0.0000025427, +0.0000025750,0.0000025955,0.0000026038,0.0000026079,0.0000026061, +0.0000025960,0.0000025770,0.0000025574,0.0000025468,0.0000025462, +0.0000025490,0.0000025527,0.0000025566,0.0000025619,0.0000025678, +0.0000025737,0.0000025797,0.0000025855,0.0000025898,0.0000025927, +0.0000025934,0.0000025927,0.0000025913,0.0000025905,0.0000025899, +0.0000025890,0.0000025871,0.0000025848,0.0000025833,0.0000025834, +0.0000025845,0.0000025854,0.0000025861,0.0000025868,0.0000025871, +0.0000025870,0.0000025866,0.0000025862,0.0000025860,0.0000025858, +0.0000025856,0.0000025851,0.0000025841,0.0000025825,0.0000025810, +0.0000025823,0.0000025885,0.0000025969,0.0000026033,0.0000026077, +0.0000026138,0.0000026216,0.0000026253,0.0000026243,0.0000026224, +0.0000026226,0.0000026251,0.0000026272,0.0000026271,0.0000026263, +0.0000026270,0.0000026302,0.0000026345,0.0000026355,0.0000026331, +0.0000026290,0.0000026280,0.0000026312,0.0000026366,0.0000026434, +0.0000026529,0.0000026647,0.0000026760,0.0000026853,0.0000026936, +0.0000027019,0.0000027097,0.0000027173,0.0000027241,0.0000027283, +0.0000027281,0.0000027220,0.0000027105,0.0000026980,0.0000026900, +0.0000026884,0.0000026931,0.0000027019,0.0000027096,0.0000027162, +0.0000027209,0.0000027233,0.0000027245,0.0000027248,0.0000027233, +0.0000027148,0.0000026969,0.0000026729,0.0000026501,0.0000026361, +0.0000026306,0.0000026283,0.0000026252,0.0000026214,0.0000026175, +0.0000026155,0.0000026144,0.0000026130,0.0000026100,0.0000026058, +0.0000026011,0.0000025953,0.0000025876,0.0000025810,0.0000025803, +0.0000025850,0.0000025906,0.0000025934,0.0000025933,0.0000025903, +0.0000025862,0.0000025804,0.0000025729,0.0000025665,0.0000025638, +0.0000025649,0.0000025669,0.0000025660,0.0000025610,0.0000025539, +0.0000025474,0.0000025416,0.0000025356,0.0000025298,0.0000025271, +0.0000025293,0.0000025376,0.0000025481,0.0000025563,0.0000025616, +0.0000025675,0.0000025741,0.0000025828,0.0000025975,0.0000026187, +0.0000026413,0.0000026598,0.0000026726,0.0000026803,0.0000026854, +0.0000026898,0.0000026939,0.0000026977,0.0000027017,0.0000027059, +0.0000027097,0.0000027129,0.0000027158,0.0000027198,0.0000027261, +0.0000027329,0.0000027363,0.0000027360,0.0000027349,0.0000027348, +0.0000027343,0.0000027318,0.0000027270,0.0000027219,0.0000027177, +0.0000027151,0.0000027136,0.0000027124,0.0000027112,0.0000027104, +0.0000027110,0.0000027141,0.0000027174,0.0000027199,0.0000027218, +0.0000027240,0.0000027246,0.0000027227,0.0000027203,0.0000027182, +0.0000027173,0.0000027181,0.0000027195,0.0000027199,0.0000027198, +0.0000027203,0.0000027222,0.0000027267,0.0000027343,0.0000027426, +0.0000027505,0.0000027602,0.0000027703,0.0000027768,0.0000027854, +0.0000028025,0.0000028134,0.0000028115,0.0000028101,0.0000028119, +0.0000028102,0.0000028043,0.0000027985,0.0000027956,0.0000027948, +0.0000027947,0.0000027947,0.0000027961,0.0000028005,0.0000028070, +0.0000028133,0.0000028175,0.0000028181,0.0000028154,0.0000028105, +0.0000028058,0.0000028028,0.0000027998,0.0000027975,0.0000027933, +0.0000027881,0.0000027808,0.0000027716,0.0000027619,0.0000027536, +0.0000027462,0.0000027397,0.0000027348,0.0000027320,0.0000027315, +0.0000027326,0.0000027337,0.0000027338,0.0000027354,0.0000027374, +0.0000027380,0.0000027358,0.0000027292,0.0000027185,0.0000027025, +0.0000026819,0.0000026599,0.0000026405,0.0000026263,0.0000026162, +0.0000026077,0.0000025996,0.0000025919,0.0000025853,0.0000025817, +0.0000025816,0.0000025827,0.0000025826,0.0000025799,0.0000025752, +0.0000025702,0.0000025659,0.0000025620,0.0000025586,0.0000025569, +0.0000025563,0.0000025568,0.0000025567,0.0000025567,0.0000025544, +0.0000025525,0.0000025530,0.0000025528,0.0000025512,0.0000025484, +0.0000025473,0.0000025489,0.0000025530,0.0000025574,0.0000025627, +0.0000025714,0.0000025825,0.0000025965,0.0000026119,0.0000026269, +0.0000026411,0.0000026533,0.0000026632,0.0000026694,0.0000026714, +0.0000026694,0.0000026664,0.0000026636,0.0000026603,0.0000026562, +0.0000026535,0.0000026529,0.0000026524,0.0000026525,0.0000026536, +0.0000026545,0.0000026550,0.0000026558,0.0000026554,0.0000026533, +0.0000026496,0.0000026469,0.0000026451,0.0000026431,0.0000026414, +0.0000026414,0.0000026444,0.0000026513,0.0000026591,0.0000026659, +0.0000026740,0.0000026817,0.0000026868,0.0000026890,0.0000026891, +0.0000026871,0.0000026858,0.0000026836,0.0000026781,0.0000026704, +0.0000026634,0.0000026618,0.0000026617,0.0000026565,0.0000026549, +0.0000026678,0.0000026831,0.0000026856,0.0000026801,0.0000026732, +0.0000026667,0.0000026496,0.0000026116,0.0000025828,0.0000025855, +0.0000026049,0.0000026156,0.0000026154,0.0000026195,0.0000026325, +0.0000026480,0.0000026595,0.0000026662,0.0000026677,0.0000026645, +0.0000026623,0.0000026691,0.0000026909,0.0000027186,0.0000027422, +0.0000027570,0.0000027642,0.0000027628,0.0000027568,0.0000027549, +0.0000027636,0.0000027787,0.0000027925,0.0000028014,0.0000028054, +0.0000028060,0.0000028000,0.0000027908,0.0000027887,0.0000027941, +0.0000027980,0.0000027978,0.0000027964,0.0000027948,0.0000027922, +0.0000027901,0.0000027881,0.0000027819,0.0000027722,0.0000027701, +0.0000027835,0.0000027981,0.0000028007,0.0000027972,0.0000027966, +0.0000027977,0.0000027979,0.0000027990,0.0000028019,0.0000028048, +0.0000028051,0.0000028024,0.0000027969,0.0000027904,0.0000027842, +0.0000027799,0.0000027776,0.0000027748,0.0000027705,0.0000027665, +0.0000027633,0.0000027622,0.0000027620,0.0000027616,0.0000027587, +0.0000027513,0.0000027434,0.0000027394,0.0000027305,0.0000027082, +0.0000026855,0.0000026777,0.0000026807,0.0000026929,0.0000027074, +0.0000027187,0.0000027281,0.0000027349,0.0000027375,0.0000027377, +0.0000027386,0.0000027404,0.0000027427,0.0000027462,0.0000027504, +0.0000027513,0.0000027462,0.0000027342,0.0000027203,0.0000027090, +0.0000027020,0.0000026979,0.0000026925,0.0000026836,0.0000026717, +0.0000026598,0.0000026503,0.0000026418,0.0000026335,0.0000026280, +0.0000026260,0.0000026255,0.0000026229,0.0000026176,0.0000026122, +0.0000026012,0.0000025790,0.0000025563,0.0000025444,0.0000025396, +0.0000025339,0.0000025278,0.0000025244,0.0000025239,0.0000025241, +0.0000025244,0.0000025248,0.0000025256,0.0000025270,0.0000025287, +0.0000025305,0.0000025315,0.0000025315,0.0000025299,0.0000025268, +0.0000025230,0.0000025211,0.0000025208,0.0000025228,0.0000025243, +0.0000025236,0.0000025209,0.0000025188,0.0000025177,0.0000025150, +0.0000025092,0.0000025061,0.0000025134,0.0000025327,0.0000025559, +0.0000025726,0.0000025799,0.0000025818,0.0000025828,0.0000025841, +0.0000025843,0.0000025832,0.0000025817,0.0000025803,0.0000025788, +0.0000025784,0.0000025812,0.0000025885,0.0000025975,0.0000026035, +0.0000026049,0.0000026038,0.0000026026,0.0000026013,0.0000025981, +0.0000025930,0.0000025897,0.0000025909,0.0000025977,0.0000026074, +0.0000026168,0.0000026246,0.0000026320,0.0000026393,0.0000026453, +0.0000026513,0.0000026596,0.0000026685,0.0000026758,0.0000026812, +0.0000026842,0.0000026861,0.0000026892,0.0000026943,0.0000027005, +0.0000027068,0.0000027129,0.0000027171,0.0000027184,0.0000027164, +0.0000027139,0.0000027133,0.0000027159,0.0000027194,0.0000027227, +0.0000027236,0.0000027198,0.0000027098,0.0000027021,0.0000027041, +0.0000027163,0.0000027328,0.0000027475,0.0000027581,0.0000027650, +0.0000027692,0.0000027712,0.0000027684,0.0000027588,0.0000027472, +0.0000027431,0.0000027495,0.0000027645,0.0000027822,0.0000027982, +0.0000028100,0.0000028177,0.0000028230,0.0000028247,0.0000028205, +0.0000028085,0.0000027955,0.0000027883,0.0000027864,0.0000027853, +0.0000027837,0.0000027830,0.0000027830,0.0000027823,0.0000027801, +0.0000027769,0.0000027749,0.0000027748,0.0000027752,0.0000027763, +0.0000027787,0.0000027778,0.0000027719,0.0000027663,0.0000027659, +0.0000027674,0.0000027676,0.0000027684,0.0000027712,0.0000027756, +0.0000027796,0.0000027806,0.0000027785,0.0000027754,0.0000027724, +0.0000027698,0.0000027703,0.0000027732,0.0000027703,0.0000027579, +0.0000027451,0.0000027370,0.0000027284,0.0000027202,0.0000027169, +0.0000027144,0.0000027081,0.0000027020,0.0000026985,0.0000026952, +0.0000026903,0.0000026872,0.0000026892,0.0000026951,0.0000026973, +0.0000026923,0.0000026800,0.0000026693,0.0000026663,0.0000026668, +0.0000026619,0.0000026465,0.0000026254,0.0000026081,0.0000025978, +0.0000025922,0.0000025883,0.0000025833,0.0000025774,0.0000025755, +0.0000025797,0.0000025878,0.0000025925,0.0000025917,0.0000025875, +0.0000025828,0.0000025804,0.0000025810,0.0000025843,0.0000025878, +0.0000025897,0.0000025892,0.0000025822,0.0000025685,0.0000025536, +0.0000025401,0.0000025243,0.0000025054,0.0000024907,0.0000024848, +0.0000024839,0.0000024831,0.0000024810,0.0000024791,0.0000024799, +0.0000024840,0.0000024877,0.0000024882,0.0000024847,0.0000024769, +0.0000024672,0.0000024590,0.0000024551,0.0000024537,0.0000024516, +0.0000024476,0.0000024404,0.0000024255,0.0000024070,0.0000024117, +0.0000024624,0.0000025225,0.0000025494,0.0000025810,0.0000026437, +0.0000027015,0.0000027431,0.0000027687,0.0000027676,0.0000027575, +0.0000027479,0.0000027383,0.0000027341,0.0000027355,0.0000027404, +0.0000027475,0.0000027552,0.0000027608,0.0000027644,0.0000027653, +0.0000027650,0.0000027638,0.0000027628,0.0000027630,0.0000027627, +0.0000027605,0.0000027561,0.0000027483,0.0000027372,0.0000027296, +0.0000027233,0.0000027076,0.0000026971,0.0000026962,0.0000026967, +0.0000026998,0.0000026993,0.0000026975,0.0000026969,0.0000026982, +0.0000026986,0.0000026961,0.0000026919,0.0000026885,0.0000026866, +0.0000026860,0.0000026876,0.0000026896,0.0000026916,0.0000026920, +0.0000026877,0.0000026815,0.0000026794,0.0000026818,0.0000026844, +0.0000026830,0.0000026797,0.0000026770,0.0000026761,0.0000026792, +0.0000026858,0.0000026934,0.0000026920,0.0000026892,0.0000026906, +0.0000026941,0.0000026965,0.0000026971,0.0000026954,0.0000026933, +0.0000026911,0.0000026889,0.0000026877,0.0000026875,0.0000026868, +0.0000026853,0.0000026832,0.0000026798,0.0000026762,0.0000026740, +0.0000026746,0.0000026734,0.0000026674,0.0000026589,0.0000026484, +0.0000026308,0.0000026004,0.0000025646,0.0000025335,0.0000025076, +0.0000024861,0.0000024735,0.0000024681,0.0000024658,0.0000024637, +0.0000024610,0.0000024575,0.0000024520,0.0000024443,0.0000024349, +0.0000024262,0.0000024203,0.0000024187,0.0000024201,0.0000024224, +0.0000024238,0.0000024247,0.0000024253,0.0000024253,0.0000024243, +0.0000024216,0.0000024174,0.0000024148,0.0000024163,0.0000024187, +0.0000024183,0.0000024159,0.0000024143,0.0000024143,0.0000024150, +0.0000024134,0.0000024089,0.0000024040,0.0000024025,0.0000024043, +0.0000024081,0.0000024117,0.0000024141,0.0000024145,0.0000024132, +0.0000024102,0.0000024059,0.0000023996,0.0000023897,0.0000023778, +0.0000023700,0.0000023692,0.0000023739,0.0000023808,0.0000023861, +0.0000023894,0.0000023907,0.0000023894,0.0000023853,0.0000023815, +0.0000023803,0.0000023801,0.0000023792,0.0000023786,0.0000023773, +0.0000023711,0.0000023628,0.0000023646,0.0000023798,0.0000023918, +0.0000023945,0.0000024044,0.0000024227,0.0000024402,0.0000024468, +0.0000024543,0.0000025123,0.0000025721,0.0000025919,0.0000025977, +0.0000025996,0.0000025819,0.0000025719,0.0000025747,0.0000025781, +0.0000025477,0.0000025177,0.0000025399,0.0000026049,0.0000026631, +0.0000027074,0.0000027324,0.0000027520,0.0000027558,0.0000027501, +0.0000027469,0.0000027452,0.0000027436,0.0000027444,0.0000027469, +0.0000027476,0.0000027458,0.0000027436,0.0000027414,0.0000027411, +0.0000027410,0.0000027411,0.0000027406,0.0000027399,0.0000027381, +0.0000027356,0.0000027326,0.0000027296,0.0000027272,0.0000027247, +0.0000027225,0.0000027218,0.0000027221,0.0000027229,0.0000027235, +0.0000027180,0.0000027185,0.0000027193,0.0000027201,0.0000027214, +0.0000027225,0.0000027230,0.0000027217,0.0000027169,0.0000027084, +0.0000026973,0.0000026868,0.0000026824,0.0000026803,0.0000026835, +0.0000026902,0.0000026956,0.0000026966,0.0000026931,0.0000026865, +0.0000026803,0.0000026767,0.0000026739,0.0000026718,0.0000026727, +0.0000026751,0.0000026750,0.0000026747,0.0000026783,0.0000026801, +0.0000026773,0.0000026750,0.0000026795,0.0000026880,0.0000026894, +0.0000026797,0.0000026673,0.0000026601,0.0000026557,0.0000026474, +0.0000026272,0.0000026031,0.0000025831,0.0000025677,0.0000025619, +0.0000025598,0.0000025537,0.0000025462,0.0000025430,0.0000025426, +0.0000025420,0.0000025411,0.0000025399,0.0000025386,0.0000025388, +0.0000025410,0.0000025455,0.0000025493,0.0000025508,0.0000025505, +0.0000025490,0.0000025485,0.0000025482,0.0000025475,0.0000025471, +0.0000025317,0.0000024924,0.0000024670,0.0000024590,0.0000024476, +0.0000024402,0.0000024392,0.0000024342,0.0000024267,0.0000024309, +0.0000024465,0.0000024528,0.0000024527,0.0000024572,0.0000024646, +0.0000024718,0.0000024781,0.0000024806,0.0000024771,0.0000024712, +0.0000024693,0.0000024702,0.0000024749,0.0000024819,0.0000024905, +0.0000025061,0.0000025238,0.0000025491,0.0000025708,0.0000025777, +0.0000025778,0.0000025775,0.0000025768,0.0000025760,0.0000025715, +0.0000025613,0.0000025564,0.0000025509,0.0000025448,0.0000025517, +0.0000025668,0.0000025745,0.0000025783,0.0000025779,0.0000025700, +0.0000025630,0.0000025568,0.0000025510,0.0000025474,0.0000025416, +0.0000025312,0.0000025212,0.0000025171,0.0000025189,0.0000025248, +0.0000025339,0.0000025445,0.0000025537,0.0000025573,0.0000025570, +0.0000025524,0.0000025437,0.0000025333,0.0000025267,0.0000025269, +0.0000025334,0.0000025434,0.0000025479,0.0000025462,0.0000025394, +0.0000025335,0.0000025296,0.0000025222,0.0000025125,0.0000025109, +0.0000025202,0.0000025330,0.0000025366,0.0000025284,0.0000025135, +0.0000024984,0.0000024871,0.0000024816,0.0000024791,0.0000024802, +0.0000024846,0.0000025001,0.0000025278,0.0000025604,0.0000025850, +0.0000025975,0.0000026036,0.0000026044,0.0000025971,0.0000025796, +0.0000025607,0.0000025494,0.0000025471,0.0000025490,0.0000025537, +0.0000025594,0.0000025650,0.0000025699,0.0000025748,0.0000025795, +0.0000025826,0.0000025841,0.0000025837,0.0000025819,0.0000025799, +0.0000025781,0.0000025765,0.0000025748,0.0000025736,0.0000025734, +0.0000025752,0.0000025782,0.0000025812,0.0000025842,0.0000025856, +0.0000025871,0.0000025877,0.0000025879,0.0000025875,0.0000025867, +0.0000025856,0.0000025847,0.0000025841,0.0000025843,0.0000025844, +0.0000025835,0.0000025819,0.0000025824,0.0000025867,0.0000025934, +0.0000025999,0.0000026059,0.0000026131,0.0000026208,0.0000026242, +0.0000026240,0.0000026235,0.0000026243,0.0000026260,0.0000026261, +0.0000026233,0.0000026213,0.0000026220,0.0000026242,0.0000026259, +0.0000026252,0.0000026220,0.0000026188,0.0000026190,0.0000026225, +0.0000026294,0.0000026388,0.0000026501,0.0000026611,0.0000026709, +0.0000026797,0.0000026887,0.0000026975,0.0000027055,0.0000027139, +0.0000027221,0.0000027272,0.0000027272,0.0000027214,0.0000027106, +0.0000026987,0.0000026902,0.0000026877,0.0000026891,0.0000026946, +0.0000026998,0.0000027048,0.0000027115,0.0000027186,0.0000027241, +0.0000027246,0.0000027157,0.0000026957,0.0000026703,0.0000026458, +0.0000026280,0.0000026217,0.0000026227,0.0000026250,0.0000026251, +0.0000026220,0.0000026175,0.0000026145,0.0000026130,0.0000026108, +0.0000026064,0.0000026008,0.0000025958,0.0000025905,0.0000025837, +0.0000025769,0.0000025751,0.0000025785,0.0000025842,0.0000025880, +0.0000025889,0.0000025881,0.0000025862,0.0000025816,0.0000025741, +0.0000025672,0.0000025642,0.0000025652,0.0000025678,0.0000025685, +0.0000025652,0.0000025581,0.0000025499,0.0000025416,0.0000025324, +0.0000025230,0.0000025171,0.0000025167,0.0000025241,0.0000025355, +0.0000025458,0.0000025512,0.0000025548,0.0000025591,0.0000025636, +0.0000025715,0.0000025867,0.0000026088,0.0000026335,0.0000026553, +0.0000026711,0.0000026805,0.0000026857,0.0000026888,0.0000026912, +0.0000026940,0.0000026977,0.0000027018,0.0000027052,0.0000027078, +0.0000027111,0.0000027168,0.0000027238,0.0000027284,0.0000027291, +0.0000027273,0.0000027254,0.0000027240,0.0000027229,0.0000027216, +0.0000027200,0.0000027192,0.0000027198,0.0000027213,0.0000027224, +0.0000027220,0.0000027197,0.0000027166,0.0000027139,0.0000027130, +0.0000027142,0.0000027161,0.0000027186,0.0000027214,0.0000027221, +0.0000027212,0.0000027198,0.0000027184,0.0000027179,0.0000027189, +0.0000027198,0.0000027193,0.0000027186,0.0000027190,0.0000027213, +0.0000027278,0.0000027380,0.0000027464,0.0000027514,0.0000027600, +0.0000027724,0.0000027796,0.0000027880,0.0000028041,0.0000028134, +0.0000028113,0.0000028101,0.0000028102,0.0000028063,0.0000027997, +0.0000027962,0.0000027962,0.0000027976,0.0000027984,0.0000027985, +0.0000028004,0.0000028056,0.0000028119,0.0000028167,0.0000028188, +0.0000028177,0.0000028154,0.0000028131,0.0000028116,0.0000028094, +0.0000028052,0.0000028001,0.0000027943,0.0000027870,0.0000027778, +0.0000027673,0.0000027576,0.0000027492,0.0000027425,0.0000027372, +0.0000027333,0.0000027309,0.0000027297,0.0000027301,0.0000027316, +0.0000027345,0.0000027392,0.0000027427,0.0000027431,0.0000027406, +0.0000027360,0.0000027303,0.0000027212,0.0000027066,0.0000026875, +0.0000026674,0.0000026490,0.0000026321,0.0000026174,0.0000026060, +0.0000025975,0.0000025914,0.0000025897,0.0000025913,0.0000025931, +0.0000025927,0.0000025888,0.0000025817,0.0000025736,0.0000025659, +0.0000025606,0.0000025565,0.0000025519,0.0000025482,0.0000025476, +0.0000025485,0.0000025490,0.0000025463,0.0000025442,0.0000025440, +0.0000025413,0.0000025346,0.0000025264,0.0000025215,0.0000025212, +0.0000025235,0.0000025271,0.0000025337,0.0000025448,0.0000025597, +0.0000025767,0.0000025915,0.0000026039,0.0000026152,0.0000026257, +0.0000026374,0.0000026493,0.0000026589,0.0000026632,0.0000026616, +0.0000026582,0.0000026546,0.0000026500,0.0000026463,0.0000026455, +0.0000026462,0.0000026474,0.0000026497,0.0000026511,0.0000026521, +0.0000026524,0.0000026512,0.0000026477,0.0000026423,0.0000026396, +0.0000026393,0.0000026404,0.0000026419,0.0000026437,0.0000026469, +0.0000026519,0.0000026571,0.0000026628,0.0000026704,0.0000026774, +0.0000026821,0.0000026841,0.0000026845,0.0000026839,0.0000026834, +0.0000026819,0.0000026762,0.0000026676,0.0000026595,0.0000026559, +0.0000026565,0.0000026556,0.0000026530,0.0000026590,0.0000026755, +0.0000026841,0.0000026808,0.0000026729,0.0000026655,0.0000026606, +0.0000026470,0.0000026115,0.0000025857,0.0000025887,0.0000026032, +0.0000026076,0.0000026031,0.0000026019,0.0000026126,0.0000026316, +0.0000026496,0.0000026616,0.0000026658,0.0000026648,0.0000026633, +0.0000026697,0.0000026865,0.0000027104,0.0000027340,0.0000027522, +0.0000027607,0.0000027571,0.0000027495,0.0000027506,0.0000027627, +0.0000027793,0.0000027943,0.0000028039,0.0000028067,0.0000028040, +0.0000027949,0.0000027874,0.0000027887,0.0000027949,0.0000027975, +0.0000027955,0.0000027911,0.0000027869,0.0000027833,0.0000027813, +0.0000027788,0.0000027728,0.0000027666,0.0000027688,0.0000027836, +0.0000027985,0.0000028023,0.0000027995,0.0000027984,0.0000027994, +0.0000027998,0.0000028000,0.0000028009,0.0000028012,0.0000028000, +0.0000027965,0.0000027917,0.0000027861,0.0000027810,0.0000027771, +0.0000027733,0.0000027694,0.0000027661,0.0000027639,0.0000027632, +0.0000027631,0.0000027625,0.0000027597,0.0000027539,0.0000027479, +0.0000027453,0.0000027381,0.0000027164,0.0000026915,0.0000026802, +0.0000026815,0.0000026919,0.0000027061,0.0000027189,0.0000027306, +0.0000027382,0.0000027397,0.0000027392,0.0000027391,0.0000027399, +0.0000027411,0.0000027422,0.0000027443,0.0000027464,0.0000027458, +0.0000027396,0.0000027277,0.0000027142,0.0000027034,0.0000026965, +0.0000026907,0.0000026828,0.0000026718,0.0000026601,0.0000026512, +0.0000026435,0.0000026349,0.0000026290,0.0000026283,0.0000026290, +0.0000026268,0.0000026202,0.0000026124,0.0000025972,0.0000025717, +0.0000025503,0.0000025416,0.0000025372,0.0000025310,0.0000025259, +0.0000025246,0.0000025245,0.0000025242,0.0000025244,0.0000025252, +0.0000025262,0.0000025273,0.0000025281,0.0000025287,0.0000025292, +0.0000025302,0.0000025312,0.0000025314,0.0000025284,0.0000025262, +0.0000025228,0.0000025202,0.0000025196,0.0000025214,0.0000025229, +0.0000025232,0.0000025212,0.0000025185,0.0000025177,0.0000025165, +0.0000025114,0.0000025069,0.0000025131,0.0000025324,0.0000025556, +0.0000025718,0.0000025785,0.0000025799,0.0000025799,0.0000025797, +0.0000025789,0.0000025774,0.0000025751,0.0000025723,0.0000025710, +0.0000025727,0.0000025783,0.0000025851,0.0000025890,0.0000025896, +0.0000025888,0.0000025877,0.0000025865,0.0000025841,0.0000025790, +0.0000025734,0.0000025721,0.0000025780,0.0000025902,0.0000026048, +0.0000026170,0.0000026248,0.0000026314,0.0000026387,0.0000026465, +0.0000026556,0.0000026645,0.0000026708,0.0000026749,0.0000026764, +0.0000026759,0.0000026752,0.0000026775,0.0000026834,0.0000026910, +0.0000026998,0.0000027101,0.0000027193,0.0000027248,0.0000027247, +0.0000027217,0.0000027189,0.0000027200,0.0000027229,0.0000027245, +0.0000027223,0.0000027132,0.0000027016,0.0000026954,0.0000026988, +0.0000027120,0.0000027297,0.0000027466,0.0000027588,0.0000027655, +0.0000027688,0.0000027686,0.0000027631,0.0000027526,0.0000027431, +0.0000027416,0.0000027497,0.0000027668,0.0000027870,0.0000028028, +0.0000028126,0.0000028193,0.0000028237,0.0000028239,0.0000028159, +0.0000028028,0.0000027929,0.0000027896,0.0000027895,0.0000027894, +0.0000027891,0.0000027885,0.0000027870,0.0000027838,0.0000027798, +0.0000027769,0.0000027765,0.0000027772,0.0000027776,0.0000027796, +0.0000027812,0.0000027789,0.0000027710,0.0000027648,0.0000027646, +0.0000027668,0.0000027688,0.0000027716,0.0000027755,0.0000027790, +0.0000027799,0.0000027778,0.0000027741,0.0000027692,0.0000027646, +0.0000027639,0.0000027684,0.0000027704,0.0000027635,0.0000027516, +0.0000027429,0.0000027356,0.0000027276,0.0000027223,0.0000027191, +0.0000027132,0.0000027063,0.0000027013,0.0000026965,0.0000026904, +0.0000026870,0.0000026890,0.0000026952,0.0000026974,0.0000026940, +0.0000026852,0.0000026780,0.0000026761,0.0000026742,0.0000026661, +0.0000026499,0.0000026298,0.0000026124,0.0000026003,0.0000025932, +0.0000025893,0.0000025852,0.0000025786,0.0000025732,0.0000025737, +0.0000025797,0.0000025849,0.0000025851,0.0000025814,0.0000025768, +0.0000025748,0.0000025767,0.0000025817,0.0000025867,0.0000025888, +0.0000025875,0.0000025784,0.0000025644,0.0000025494,0.0000025306, +0.0000025072,0.0000024893,0.0000024831,0.0000024827,0.0000024828, +0.0000024810,0.0000024788,0.0000024791,0.0000024820,0.0000024851, +0.0000024861,0.0000024836,0.0000024778,0.0000024701,0.0000024615, +0.0000024535,0.0000024477,0.0000024447,0.0000024436,0.0000024420, +0.0000024377,0.0000024272,0.0000024104,0.0000024035,0.0000024358, +0.0000024980,0.0000025374,0.0000025609,0.0000026145,0.0000026785, +0.0000027237,0.0000027575,0.0000027680,0.0000027613,0.0000027518, +0.0000027437,0.0000027392,0.0000027391,0.0000027420,0.0000027476, +0.0000027543,0.0000027592,0.0000027612,0.0000027613,0.0000027606, +0.0000027601,0.0000027604,0.0000027626,0.0000027647,0.0000027641, +0.0000027592,0.0000027513,0.0000027404,0.0000027304,0.0000027252, +0.0000027121,0.0000026997,0.0000026969,0.0000026973,0.0000027007, +0.0000027011,0.0000026994,0.0000026982,0.0000027000,0.0000027017, +0.0000027005,0.0000026962,0.0000026907,0.0000026866,0.0000026852, +0.0000026870,0.0000026904,0.0000026924,0.0000026900,0.0000026819, +0.0000026749,0.0000026741,0.0000026765,0.0000026781,0.0000026757, +0.0000026733,0.0000026728,0.0000026753,0.0000026794,0.0000026847, +0.0000026904,0.0000026891,0.0000026859,0.0000026877,0.0000026919, +0.0000026940,0.0000026961,0.0000026964,0.0000026949,0.0000026934, +0.0000026915,0.0000026899,0.0000026889,0.0000026878,0.0000026861, +0.0000026832,0.0000026787,0.0000026746,0.0000026732,0.0000026737, +0.0000026710,0.0000026643,0.0000026568,0.0000026462,0.0000026257, +0.0000025937,0.0000025603,0.0000025341,0.0000025140,0.0000024943, +0.0000024786,0.0000024702,0.0000024669,0.0000024655,0.0000024645, +0.0000024621,0.0000024567,0.0000024481,0.0000024376,0.0000024277, +0.0000024210,0.0000024183,0.0000024192,0.0000024213,0.0000024218, +0.0000024210,0.0000024203,0.0000024204,0.0000024205,0.0000024202, +0.0000024193,0.0000024167,0.0000024138,0.0000024142,0.0000024182, +0.0000024210,0.0000024206,0.0000024170,0.0000024129,0.0000024092, +0.0000024056,0.0000024024,0.0000024015,0.0000024026,0.0000024055, +0.0000024089,0.0000024115,0.0000024124,0.0000024114,0.0000024082, +0.0000024044,0.0000024011,0.0000023983,0.0000023927,0.0000023812, +0.0000023697,0.0000023660,0.0000023692,0.0000023777,0.0000023865, +0.0000023916,0.0000023925,0.0000023907,0.0000023860,0.0000023813, +0.0000023801,0.0000023812,0.0000023826,0.0000023832,0.0000023830, +0.0000023795,0.0000023694,0.0000023644,0.0000023731,0.0000023881, +0.0000023932,0.0000023994,0.0000024171,0.0000024368,0.0000024449, +0.0000024490,0.0000025063,0.0000025687,0.0000025894,0.0000025961, +0.0000025980,0.0000025790,0.0000025716,0.0000025760,0.0000025786, +0.0000025498,0.0000025146,0.0000025339,0.0000025860,0.0000026506, +0.0000026902,0.0000027190,0.0000027387,0.0000027491,0.0000027471, +0.0000027419,0.0000027398,0.0000027394,0.0000027393,0.0000027408, +0.0000027436,0.0000027449,0.0000027441,0.0000027441,0.0000027438, +0.0000027439,0.0000027437,0.0000027434,0.0000027430,0.0000027420, +0.0000027404,0.0000027379,0.0000027354,0.0000027322,0.0000027283, +0.0000027245,0.0000027223,0.0000027217,0.0000027199,0.0000027182, +0.0000027057,0.0000027098,0.0000027138,0.0000027168,0.0000027185, +0.0000027181,0.0000027159,0.0000027116,0.0000027046,0.0000026970, +0.0000026909,0.0000026850,0.0000026827,0.0000026826,0.0000026864, +0.0000026918,0.0000026952,0.0000026936,0.0000026868,0.0000026779, +0.0000026712,0.0000026686,0.0000026673,0.0000026663,0.0000026673, +0.0000026703,0.0000026721,0.0000026720,0.0000026742,0.0000026775, +0.0000026773,0.0000026757,0.0000026766,0.0000026838,0.0000026904, +0.0000026879,0.0000026765,0.0000026654,0.0000026590,0.0000026541, +0.0000026407,0.0000026158,0.0000025900,0.0000025706,0.0000025621, +0.0000025609,0.0000025581,0.0000025501,0.0000025419,0.0000025363, +0.0000025336,0.0000025328,0.0000025324,0.0000025323,0.0000025344, +0.0000025389,0.0000025453,0.0000025514,0.0000025546,0.0000025551, +0.0000025523,0.0000025493,0.0000025478,0.0000025468,0.0000025473, +0.0000025440,0.0000025143,0.0000024786,0.0000024647,0.0000024549, +0.0000024449,0.0000024429,0.0000024411,0.0000024324,0.0000024275, +0.0000024372,0.0000024503,0.0000024522,0.0000024544,0.0000024608, +0.0000024669,0.0000024730,0.0000024793,0.0000024822,0.0000024789, +0.0000024733,0.0000024714,0.0000024730,0.0000024782,0.0000024849, +0.0000024909,0.0000025043,0.0000025215,0.0000025438,0.0000025671, +0.0000025776,0.0000025787,0.0000025778,0.0000025771,0.0000025766, +0.0000025708,0.0000025600,0.0000025554,0.0000025488,0.0000025443, +0.0000025537,0.0000025679,0.0000025748,0.0000025780,0.0000025774, +0.0000025707,0.0000025632,0.0000025554,0.0000025494,0.0000025447, +0.0000025354,0.0000025209,0.0000025104,0.0000025087,0.0000025111, +0.0000025169,0.0000025253,0.0000025361,0.0000025475,0.0000025564, +0.0000025594,0.0000025576,0.0000025500,0.0000025400,0.0000025328, +0.0000025303,0.0000025345,0.0000025427,0.0000025484,0.0000025481, +0.0000025429,0.0000025368,0.0000025326,0.0000025283,0.0000025210, +0.0000025146,0.0000025166,0.0000025262,0.0000025365,0.0000025383, +0.0000025296,0.0000025147,0.0000024989,0.0000024861,0.0000024792, +0.0000024770,0.0000024765,0.0000024782,0.0000024882,0.0000025124, +0.0000025458,0.0000025746,0.0000025912,0.0000026003,0.0000026024, +0.0000025986,0.0000025836,0.0000025657,0.0000025533,0.0000025497, +0.0000025504,0.0000025550,0.0000025603,0.0000025647,0.0000025686, +0.0000025720,0.0000025735,0.0000025734,0.0000025717,0.0000025698, +0.0000025687,0.0000025687,0.0000025696,0.0000025712,0.0000025731, +0.0000025769,0.0000025815,0.0000025863,0.0000025906,0.0000025941, +0.0000025963,0.0000025975,0.0000025976,0.0000025968,0.0000025953, +0.0000025931,0.0000025901,0.0000025870,0.0000025852,0.0000025850, +0.0000025858,0.0000025863,0.0000025855,0.0000025853,0.0000025877, +0.0000025924,0.0000025986,0.0000026058,0.0000026138,0.0000026202, +0.0000026226,0.0000026225,0.0000026229,0.0000026245,0.0000026262, +0.0000026260,0.0000026227,0.0000026204,0.0000026216,0.0000026243, +0.0000026239,0.0000026194,0.0000026139,0.0000026104,0.0000026099, +0.0000026119,0.0000026179,0.0000026298,0.0000026448,0.0000026575, +0.0000026662,0.0000026738,0.0000026827,0.0000026924,0.0000027014, +0.0000027112,0.0000027212,0.0000027274,0.0000027281,0.0000027233, +0.0000027130,0.0000027007,0.0000026898,0.0000026836,0.0000026828, +0.0000026862,0.0000026915,0.0000026979,0.0000027078,0.0000027177, +0.0000027214,0.0000027154,0.0000026975,0.0000026721,0.0000026457, +0.0000026255,0.0000026157,0.0000026154,0.0000026192,0.0000026229, +0.0000026230,0.0000026186,0.0000026134,0.0000026113,0.0000026113, +0.0000026099,0.0000026051,0.0000025982,0.0000025921,0.0000025869, +0.0000025805,0.0000025734,0.0000025707,0.0000025727,0.0000025780, +0.0000025826,0.0000025849,0.0000025861,0.0000025859,0.0000025821, +0.0000025747,0.0000025677,0.0000025644,0.0000025649,0.0000025669, +0.0000025679,0.0000025662,0.0000025611,0.0000025524,0.0000025420, +0.0000025312,0.0000025212,0.0000025143,0.0000025122,0.0000025162, +0.0000025257,0.0000025368,0.0000025448,0.0000025493,0.0000025540, +0.0000025573,0.0000025598,0.0000025663,0.0000025807,0.0000026039, +0.0000026304,0.0000026535,0.0000026692,0.0000026782,0.0000026832, +0.0000026863,0.0000026887,0.0000026915,0.0000026948,0.0000026976, +0.0000026994,0.0000027011,0.0000027048,0.0000027108,0.0000027160, +0.0000027177,0.0000027169,0.0000027151,0.0000027133,0.0000027129, +0.0000027147,0.0000027165,0.0000027183,0.0000027216,0.0000027268, +0.0000027317,0.0000027340,0.0000027332,0.0000027292,0.0000027234, +0.0000027167,0.0000027120,0.0000027113,0.0000027117,0.0000027136, +0.0000027163,0.0000027178,0.0000027183,0.0000027182,0.0000027173, +0.0000027173,0.0000027183,0.0000027180,0.0000027162,0.0000027158, +0.0000027180,0.0000027225,0.0000027311,0.0000027426,0.0000027492, +0.0000027522,0.0000027619,0.0000027748,0.0000027810,0.0000027895, +0.0000028055,0.0000028134,0.0000028110,0.0000028081,0.0000028056, +0.0000028005,0.0000027967,0.0000027968,0.0000027987,0.0000028008, +0.0000028017,0.0000028020,0.0000028043,0.0000028095,0.0000028144, +0.0000028175,0.0000028176,0.0000028158,0.0000028136,0.0000028131, +0.0000028129,0.0000028118,0.0000028086,0.0000028040,0.0000027977, +0.0000027889,0.0000027780,0.0000027664,0.0000027558,0.0000027467, +0.0000027398,0.0000027352,0.0000027315,0.0000027290,0.0000027280, +0.0000027285,0.0000027303,0.0000027344,0.0000027396,0.0000027434, +0.0000027442,0.0000027433,0.0000027400,0.0000027357,0.0000027294, +0.0000027201,0.0000027086,0.0000026951,0.0000026791,0.0000026597, +0.0000026394,0.0000026215,0.0000026072,0.0000025967,0.0000025929, +0.0000025948,0.0000025971,0.0000025978,0.0000025957,0.0000025900, +0.0000025816,0.0000025719,0.0000025638,0.0000025565,0.0000025487, +0.0000025412,0.0000025391,0.0000025402,0.0000025409,0.0000025385, +0.0000025376,0.0000025382,0.0000025352,0.0000025267,0.0000025169, +0.0000025113,0.0000025105,0.0000025111,0.0000025125,0.0000025177, +0.0000025282,0.0000025435,0.0000025604,0.0000025742,0.0000025870, +0.0000025966,0.0000026027,0.0000026107,0.0000026230,0.0000026399, +0.0000026543,0.0000026580,0.0000026549,0.0000026512,0.0000026471, +0.0000026430,0.0000026409,0.0000026406,0.0000026417,0.0000026440, +0.0000026455,0.0000026472,0.0000026478,0.0000026461,0.0000026409, +0.0000026350,0.0000026335,0.0000026361,0.0000026403,0.0000026432, +0.0000026457,0.0000026481,0.0000026505,0.0000026540,0.0000026592, +0.0000026652,0.0000026707,0.0000026748,0.0000026770,0.0000026781, +0.0000026789,0.0000026785,0.0000026771,0.0000026721,0.0000026635, +0.0000026544,0.0000026500,0.0000026519,0.0000026545,0.0000026530, +0.0000026544,0.0000026668,0.0000026792,0.0000026802,0.0000026728, +0.0000026647,0.0000026584,0.0000026566,0.0000026437,0.0000026084, +0.0000025863,0.0000025880,0.0000025952,0.0000025947,0.0000025874, +0.0000025850,0.0000025979,0.0000026231,0.0000026461,0.0000026598, +0.0000026668,0.0000026690,0.0000026698,0.0000026724,0.0000026805, +0.0000027006,0.0000027268,0.0000027492,0.0000027558,0.0000027488, +0.0000027424,0.0000027472,0.0000027625,0.0000027819,0.0000027976, +0.0000028049,0.0000028051,0.0000027992,0.0000027905,0.0000027863, +0.0000027884,0.0000027934,0.0000027958,0.0000027913,0.0000027844, +0.0000027787,0.0000027753,0.0000027734,0.0000027708,0.0000027661, +0.0000027620,0.0000027665,0.0000027829,0.0000027986,0.0000028030, +0.0000028019,0.0000028003,0.0000028006,0.0000028010,0.0000028008, +0.0000027998,0.0000027982,0.0000027947,0.0000027894,0.0000027832, +0.0000027774,0.0000027720,0.0000027673,0.0000027647,0.0000027638, +0.0000027637,0.0000027640,0.0000027640,0.0000027629,0.0000027598, +0.0000027549,0.0000027511,0.0000027496,0.0000027433,0.0000027225, +0.0000026963,0.0000026826,0.0000026827,0.0000026923,0.0000027053, +0.0000027176,0.0000027306,0.0000027409,0.0000027441,0.0000027436, +0.0000027430,0.0000027429,0.0000027430,0.0000027427,0.0000027432, +0.0000027452,0.0000027466,0.0000027445,0.0000027360,0.0000027224, +0.0000027087,0.0000026985,0.0000026908,0.0000026824,0.0000026714, +0.0000026594,0.0000026501,0.0000026423,0.0000026338,0.0000026286, +0.0000026294,0.0000026318,0.0000026296,0.0000026222,0.0000026120, +0.0000025926,0.0000025648,0.0000025451,0.0000025384,0.0000025344, +0.0000025290,0.0000025260,0.0000025259,0.0000025255,0.0000025245, +0.0000025247,0.0000025257,0.0000025261,0.0000025259,0.0000025252, +0.0000025238,0.0000025222,0.0000025207,0.0000025208,0.0000025217, +0.0000025235,0.0000025260,0.0000025281,0.0000025268,0.0000025237, +0.0000025201,0.0000025175,0.0000025188,0.0000025224,0.0000025231, +0.0000025214,0.0000025189,0.0000025184,0.0000025177,0.0000025125, +0.0000025071,0.0000025123,0.0000025310,0.0000025538,0.0000025693, +0.0000025759,0.0000025774,0.0000025766,0.0000025748,0.0000025726, +0.0000025700,0.0000025677,0.0000025669,0.0000025677,0.0000025705, +0.0000025733,0.0000025747,0.0000025751,0.0000025739,0.0000025713, +0.0000025687,0.0000025665,0.0000025626,0.0000025569,0.0000025541, +0.0000025587,0.0000025725,0.0000025906,0.0000026069,0.0000026177, +0.0000026244,0.0000026319,0.0000026417,0.0000026518,0.0000026603, +0.0000026660,0.0000026693,0.0000026705,0.0000026693,0.0000026655, +0.0000026633,0.0000026654,0.0000026725,0.0000026827,0.0000026954, +0.0000027103,0.0000027239,0.0000027311,0.0000027324,0.0000027283, +0.0000027240,0.0000027234,0.0000027245,0.0000027237,0.0000027164, +0.0000027034,0.0000026924,0.0000026884,0.0000026940,0.0000027084, +0.0000027271,0.0000027448,0.0000027581,0.0000027652,0.0000027655, +0.0000027618,0.0000027546,0.0000027458,0.0000027404,0.0000027420, +0.0000027537,0.0000027742,0.0000027937,0.0000028060,0.0000028137, +0.0000028195,0.0000028220,0.0000028182,0.0000028081,0.0000027982, +0.0000027941,0.0000027939,0.0000027946,0.0000027947,0.0000027942, +0.0000027922,0.0000027882,0.0000027830,0.0000027787,0.0000027769, +0.0000027774,0.0000027779,0.0000027781,0.0000027794,0.0000027802, +0.0000027764,0.0000027663,0.0000027600,0.0000027614,0.0000027664, +0.0000027709,0.0000027747,0.0000027784,0.0000027802,0.0000027792, +0.0000027756,0.0000027701,0.0000027639,0.0000027620,0.0000027645, +0.0000027692,0.0000027675,0.0000027587,0.0000027494,0.0000027423, +0.0000027351,0.0000027281,0.0000027232,0.0000027177,0.0000027103, +0.0000027041,0.0000026985,0.0000026919,0.0000026873,0.0000026886, +0.0000026941,0.0000026962,0.0000026936,0.0000026884,0.0000026858, +0.0000026855,0.0000026812,0.0000026696,0.0000026528,0.0000026350, +0.0000026187,0.0000026056,0.0000025966,0.0000025918,0.0000025888, +0.0000025833,0.0000025758,0.0000025732,0.0000025764,0.0000025808, +0.0000025812,0.0000025771,0.0000025718,0.0000025696,0.0000025724, +0.0000025790,0.0000025853,0.0000025874,0.0000025840,0.0000025737, +0.0000025602,0.0000025429,0.0000025191,0.0000024961,0.0000024850, +0.0000024836,0.0000024828,0.0000024813,0.0000024799,0.0000024799, +0.0000024816,0.0000024835,0.0000024840,0.0000024827,0.0000024793, +0.0000024732,0.0000024655,0.0000024576,0.0000024506,0.0000024448, +0.0000024392,0.0000024354,0.0000024341,0.0000024330,0.0000024278, +0.0000024143,0.0000024032,0.0000024154,0.0000024701,0.0000025226, +0.0000025452,0.0000025838,0.0000026497,0.0000027022,0.0000027404, +0.0000027659,0.0000027661,0.0000027564,0.0000027480,0.0000027431, +0.0000027428,0.0000027446,0.0000027477,0.0000027524,0.0000027559, +0.0000027563,0.0000027551,0.0000027538,0.0000027538,0.0000027555, +0.0000027590,0.0000027637,0.0000027653,0.0000027625,0.0000027542, +0.0000027433,0.0000027317,0.0000027258,0.0000027155,0.0000027027, +0.0000026984,0.0000026985,0.0000027016,0.0000027025,0.0000027006, +0.0000026993,0.0000027010,0.0000027037,0.0000027040,0.0000027003, +0.0000026940,0.0000026883,0.0000026864,0.0000026890,0.0000026920, +0.0000026914,0.0000026852,0.0000026757,0.0000026697,0.0000026690, +0.0000026707,0.0000026710,0.0000026678,0.0000026673,0.0000026697, +0.0000026747,0.0000026806,0.0000026848,0.0000026883,0.0000026864, +0.0000026825,0.0000026838,0.0000026898,0.0000026924,0.0000026929, +0.0000026938,0.0000026938,0.0000026928,0.0000026909,0.0000026890, +0.0000026878,0.0000026867,0.0000026850,0.0000026819,0.0000026773, +0.0000026735,0.0000026725,0.0000026715,0.0000026671,0.0000026604, +0.0000026537,0.0000026429,0.0000026203,0.0000025895,0.0000025603, +0.0000025376,0.0000025218,0.0000025070,0.0000024902,0.0000024760, +0.0000024683,0.0000024658,0.0000024657,0.0000024650,0.0000024612, +0.0000024533,0.0000024424,0.0000024309,0.0000024219,0.0000024178, +0.0000024180,0.0000024208,0.0000024218,0.0000024206,0.0000024181, +0.0000024164,0.0000024163,0.0000024173,0.0000024184,0.0000024190, +0.0000024186,0.0000024163,0.0000024147,0.0000024173,0.0000024221, +0.0000024242,0.0000024230,0.0000024180,0.0000024119,0.0000024071, +0.0000024042,0.0000024035,0.0000024041,0.0000024053,0.0000024064, +0.0000024071,0.0000024072,0.0000024055,0.0000024015,0.0000023975, +0.0000023955,0.0000023946,0.0000023924,0.0000023848,0.0000023722, +0.0000023648,0.0000023667,0.0000023756,0.0000023854,0.0000023905, +0.0000023910,0.0000023895,0.0000023862,0.0000023816,0.0000023791, +0.0000023801,0.0000023826,0.0000023842,0.0000023842,0.0000023826, +0.0000023736,0.0000023636,0.0000023672,0.0000023829,0.0000023910, +0.0000023953,0.0000024118,0.0000024330,0.0000024423,0.0000024443, +0.0000025019,0.0000025665,0.0000025874,0.0000025947,0.0000025958, +0.0000025761,0.0000025714,0.0000025768,0.0000025786,0.0000025534, +0.0000025129,0.0000025257,0.0000025634,0.0000026344,0.0000026692, +0.0000027031,0.0000027227,0.0000027370,0.0000027423,0.0000027386, +0.0000027338,0.0000027333,0.0000027358,0.0000027376,0.0000027381, +0.0000027372,0.0000027366,0.0000027373,0.0000027381,0.0000027391, +0.0000027395,0.0000027390,0.0000027376,0.0000027357,0.0000027331, +0.0000027291,0.0000027247,0.0000027198,0.0000027143,0.0000027091, +0.0000027052,0.0000027030,0.0000027019,0.0000027026,0.0000027030, +0.0000027062,0.0000027091,0.0000027106,0.0000027106,0.0000027102, +0.0000027090,0.0000027060,0.0000027016,0.0000026967,0.0000026914, +0.0000026861,0.0000026838,0.0000026840,0.0000026877,0.0000026914, +0.0000026917,0.0000026861,0.0000026766,0.0000026672,0.0000026622, +0.0000026611,0.0000026608,0.0000026602,0.0000026609,0.0000026638, +0.0000026675,0.0000026685,0.0000026690,0.0000026722,0.0000026749, +0.0000026764,0.0000026766,0.0000026797,0.0000026871,0.0000026895, +0.0000026839,0.0000026728,0.0000026638,0.0000026583,0.0000026504, +0.0000026306,0.0000026015,0.0000025755,0.0000025617,0.0000025597, +0.0000025589,0.0000025537,0.0000025453,0.0000025370,0.0000025313, +0.0000025289,0.0000025273,0.0000025275,0.0000025300,0.0000025358, +0.0000025436,0.0000025515,0.0000025565,0.0000025584,0.0000025557, +0.0000025509,0.0000025480,0.0000025466,0.0000025474,0.0000025480, +0.0000025303,0.0000024926,0.0000024702,0.0000024593,0.0000024477, +0.0000024440,0.0000024444,0.0000024399,0.0000024297,0.0000024295, +0.0000024440,0.0000024521,0.0000024537,0.0000024590,0.0000024649, +0.0000024691,0.0000024747,0.0000024808,0.0000024840,0.0000024816, +0.0000024767,0.0000024749,0.0000024768,0.0000024822,0.0000024887, +0.0000024930,0.0000025043,0.0000025213,0.0000025403,0.0000025624, +0.0000025765,0.0000025798,0.0000025799,0.0000025792,0.0000025780, +0.0000025699,0.0000025589,0.0000025544,0.0000025468,0.0000025441, +0.0000025558,0.0000025694,0.0000025755,0.0000025787,0.0000025780, +0.0000025712,0.0000025626,0.0000025542,0.0000025476,0.0000025407, +0.0000025280,0.0000025127,0.0000025040,0.0000025038,0.0000025073, +0.0000025129,0.0000025192,0.0000025273,0.0000025384,0.0000025503, +0.0000025589,0.0000025592,0.0000025549,0.0000025470,0.0000025404, +0.0000025371,0.0000025384,0.0000025426,0.0000025465,0.0000025474, +0.0000025454,0.0000025404,0.0000025357,0.0000025324,0.0000025282, +0.0000025228,0.0000025190,0.0000025215,0.0000025291,0.0000025375, +0.0000025389,0.0000025315,0.0000025175,0.0000025004,0.0000024861, +0.0000024777,0.0000024750,0.0000024732,0.0000024712,0.0000024772, +0.0000024982,0.0000025328,0.0000025655,0.0000025861,0.0000025975, +0.0000026015,0.0000025998,0.0000025874,0.0000025717,0.0000025600, +0.0000025556,0.0000025561,0.0000025595,0.0000025619,0.0000025645, +0.0000025670,0.0000025679,0.0000025687,0.0000025684,0.0000025686, +0.0000025714,0.0000025751,0.0000025794,0.0000025845,0.0000025893, +0.0000025937,0.0000025975,0.0000025998,0.0000026006,0.0000026008, +0.0000026006,0.0000025998,0.0000025990,0.0000025984,0.0000025984, +0.0000025983,0.0000025963,0.0000025921,0.0000025883,0.0000025866, +0.0000025870,0.0000025885,0.0000025895,0.0000025894,0.0000025897, +0.0000025924,0.0000025983,0.0000026061,0.0000026143,0.0000026195, +0.0000026204,0.0000026200,0.0000026210,0.0000026236,0.0000026262, +0.0000026265,0.0000026239,0.0000026218,0.0000026240,0.0000026293, +0.0000026307,0.0000026255,0.0000026172,0.0000026114,0.0000026097, +0.0000026081,0.0000026090,0.0000026175,0.0000026333,0.0000026492, +0.0000026601,0.0000026674,0.0000026758,0.0000026861,0.0000026966, +0.0000027076,0.0000027191,0.0000027275,0.0000027298,0.0000027255, +0.0000027153,0.0000027028,0.0000026902,0.0000026817,0.0000026795, +0.0000026813,0.0000026878,0.0000026964,0.0000027067,0.0000027126, +0.0000027105,0.0000026973,0.0000026758,0.0000026514,0.0000026295, +0.0000026154,0.0000026101,0.0000026118,0.0000026165,0.0000026198, +0.0000026191,0.0000026149,0.0000026115,0.0000026106,0.0000026102, +0.0000026083,0.0000026034,0.0000025965,0.0000025899,0.0000025842, +0.0000025774,0.0000025695,0.0000025656,0.0000025670,0.0000025719, +0.0000025775,0.0000025819,0.0000025850,0.0000025859,0.0000025824, +0.0000025752,0.0000025682,0.0000025645,0.0000025640,0.0000025648, +0.0000025654,0.0000025652,0.0000025620,0.0000025538,0.0000025420, +0.0000025299,0.0000025212,0.0000025157,0.0000025131,0.0000025153, +0.0000025217,0.0000025299,0.0000025392,0.0000025469,0.0000025532, +0.0000025574,0.0000025592,0.0000025611,0.0000025662,0.0000025815, +0.0000026049,0.0000026300,0.0000026500,0.0000026630,0.0000026709, +0.0000026765,0.0000026812,0.0000026854,0.0000026894,0.0000026927, +0.0000026941,0.0000026942,0.0000026945,0.0000026968,0.0000027004, +0.0000027020,0.0000027008,0.0000026985,0.0000026964,0.0000026961, +0.0000027001,0.0000027061,0.0000027118,0.0000027180,0.0000027260, +0.0000027344,0.0000027398,0.0000027412,0.0000027384,0.0000027314, +0.0000027223,0.0000027136,0.0000027082,0.0000027062,0.0000027056, +0.0000027070,0.0000027102,0.0000027129,0.0000027141,0.0000027137, +0.0000027125,0.0000027130,0.0000027136,0.0000027127,0.0000027123, +0.0000027152,0.0000027201,0.0000027265,0.0000027372,0.0000027484, +0.0000027524,0.0000027544,0.0000027644,0.0000027763,0.0000027816, +0.0000027911,0.0000028071,0.0000028129,0.0000028093,0.0000028035, +0.0000027987,0.0000027955,0.0000027954,0.0000027975,0.0000028002, +0.0000028020,0.0000028029,0.0000028035,0.0000028062,0.0000028102, +0.0000028136,0.0000028148,0.0000028143,0.0000028125,0.0000028119, +0.0000028120,0.0000028120,0.0000028105,0.0000028074,0.0000028033, +0.0000027969,0.0000027893,0.0000027798,0.0000027703,0.0000027606, +0.0000027506,0.0000027418,0.0000027354,0.0000027308,0.0000027283, +0.0000027281,0.0000027287,0.0000027302,0.0000027326,0.0000027363, +0.0000027398,0.0000027421,0.0000027426,0.0000027414,0.0000027386, +0.0000027331,0.0000027259,0.0000027188,0.0000027113,0.0000027013, +0.0000026867,0.0000026678,0.0000026475,0.0000026280,0.0000026107, +0.0000025994,0.0000025958,0.0000025967,0.0000025973,0.0000025970, +0.0000025955,0.0000025904,0.0000025817,0.0000025717,0.0000025614, +0.0000025499,0.0000025396,0.0000025357,0.0000025342,0.0000025334, +0.0000025310,0.0000025303,0.0000025306,0.0000025279,0.0000025208, +0.0000025129,0.0000025095,0.0000025097,0.0000025098,0.0000025109, +0.0000025155,0.0000025245,0.0000025339,0.0000025442,0.0000025534, +0.0000025653,0.0000025755,0.0000025821,0.0000025887,0.0000025987, +0.0000026177,0.0000026402,0.0000026524,0.0000026523,0.0000026491, +0.0000026466,0.0000026430,0.0000026401,0.0000026385,0.0000026387, +0.0000026400,0.0000026410,0.0000026422,0.0000026425,0.0000026407, +0.0000026344,0.0000026292,0.0000026294,0.0000026347,0.0000026402, +0.0000026434,0.0000026457,0.0000026471,0.0000026478,0.0000026505, +0.0000026543,0.0000026581,0.0000026620,0.0000026657,0.0000026680, +0.0000026698,0.0000026714,0.0000026717,0.0000026706,0.0000026658, +0.0000026573,0.0000026484,0.0000026452,0.0000026485,0.0000026531, +0.0000026526,0.0000026523,0.0000026599,0.0000026726,0.0000026775, +0.0000026719,0.0000026637,0.0000026578,0.0000026552,0.0000026564, +0.0000026384,0.0000026008,0.0000025805,0.0000025797,0.0000025819, +0.0000025792,0.0000025741,0.0000025742,0.0000025925,0.0000026227, +0.0000026474,0.0000026620,0.0000026706,0.0000026751,0.0000026735, +0.0000026710,0.0000026743,0.0000026938,0.0000027246,0.0000027470, +0.0000027487,0.0000027395,0.0000027362,0.0000027454,0.0000027653, +0.0000027862,0.0000027989,0.0000028027,0.0000028007,0.0000027944, +0.0000027876,0.0000027841,0.0000027862,0.0000027917,0.0000027919, +0.0000027858,0.0000027779,0.0000027728,0.0000027700,0.0000027683, +0.0000027656,0.0000027611,0.0000027589,0.0000027648,0.0000027810, +0.0000027975,0.0000028042,0.0000028041,0.0000028017,0.0000028007, +0.0000028007,0.0000028003,0.0000027990,0.0000027962,0.0000027915, +0.0000027851,0.0000027782,0.0000027714,0.0000027653,0.0000027623, +0.0000027624,0.0000027633,0.0000027646,0.0000027649,0.0000027634, +0.0000027595,0.0000027548,0.0000027523,0.0000027519,0.0000027458, +0.0000027253,0.0000026982,0.0000026843,0.0000026855,0.0000026957, +0.0000027074,0.0000027170,0.0000027285,0.0000027400,0.0000027459, +0.0000027469,0.0000027465,0.0000027462,0.0000027457,0.0000027443, +0.0000027432,0.0000027442,0.0000027462,0.0000027457,0.0000027401, +0.0000027283,0.0000027143,0.0000027026,0.0000026939,0.0000026849, +0.0000026730,0.0000026594,0.0000026481,0.0000026391,0.0000026306, +0.0000026266,0.0000026289,0.0000026324,0.0000026306,0.0000026229, +0.0000026115,0.0000025891,0.0000025595,0.0000025410,0.0000025359, +0.0000025334,0.0000025294,0.0000025275,0.0000025266,0.0000025249, +0.0000025239,0.0000025246,0.0000025254,0.0000025248,0.0000025236, +0.0000025226,0.0000025219,0.0000025206,0.0000025182,0.0000025157, +0.0000025134,0.0000025104,0.0000025106,0.0000025147,0.0000025211, +0.0000025252,0.0000025258,0.0000025225,0.0000025167,0.0000025144, +0.0000025174,0.0000025224,0.0000025242,0.0000025217,0.0000025181, +0.0000025189,0.0000025196,0.0000025132,0.0000025061,0.0000025102, +0.0000025290,0.0000025502,0.0000025644,0.0000025708,0.0000025723, +0.0000025711,0.0000025685,0.0000025659,0.0000025642,0.0000025632, +0.0000025620,0.0000025606,0.0000025600,0.0000025601,0.0000025595, +0.0000025568,0.0000025528,0.0000025501,0.0000025491,0.0000025475, +0.0000025432,0.0000025394,0.0000025417,0.0000025557,0.0000025762, +0.0000025953,0.0000026098,0.0000026193,0.0000026267,0.0000026360, +0.0000026463,0.0000026549,0.0000026607,0.0000026643,0.0000026657, +0.0000026647,0.0000026601,0.0000026537,0.0000026508,0.0000026546, +0.0000026649,0.0000026782,0.0000026940,0.0000027117,0.0000027278, +0.0000027365,0.0000027378,0.0000027329,0.0000027269,0.0000027235, +0.0000027217,0.0000027169,0.0000027060,0.0000026932,0.0000026859, +0.0000026847,0.0000026919,0.0000027061,0.0000027241,0.0000027431, +0.0000027568,0.0000027602,0.0000027567,0.0000027513,0.0000027469, +0.0000027425,0.0000027412,0.0000027473,0.0000027635,0.0000027834, +0.0000027985,0.0000028076,0.0000028140,0.0000028172,0.0000028161, +0.0000028100,0.0000028031,0.0000028003,0.0000028002,0.0000028002, +0.0000027996,0.0000027987,0.0000027962,0.0000027910,0.0000027847, +0.0000027793,0.0000027764,0.0000027759,0.0000027762,0.0000027751, +0.0000027745,0.0000027767,0.0000027767,0.0000027694,0.0000027584, +0.0000027537,0.0000027589,0.0000027671,0.0000027732,0.0000027772, +0.0000027797,0.0000027802,0.0000027788,0.0000027745,0.0000027683, +0.0000027640,0.0000027647,0.0000027689,0.0000027703,0.0000027655, +0.0000027568,0.0000027495,0.0000027432,0.0000027358,0.0000027285, +0.0000027221,0.0000027143,0.0000027073,0.0000027015,0.0000026953, +0.0000026899,0.0000026893,0.0000026931,0.0000026948,0.0000026927, +0.0000026904,0.0000026919,0.0000026931,0.0000026875,0.0000026736, +0.0000026564,0.0000026411,0.0000026270,0.0000026143,0.0000026036, +0.0000025963,0.0000025927,0.0000025892,0.0000025824,0.0000025770, +0.0000025774,0.0000025805,0.0000025806,0.0000025756,0.0000025689, +0.0000025661,0.0000025687,0.0000025765,0.0000025835,0.0000025853, +0.0000025803,0.0000025698,0.0000025561,0.0000025354,0.0000025099, +0.0000024927,0.0000024881,0.0000024872,0.0000024847,0.0000024814, +0.0000024808,0.0000024826,0.0000024844,0.0000024843,0.0000024824, +0.0000024803,0.0000024778,0.0000024730,0.0000024657,0.0000024575, +0.0000024497,0.0000024435,0.0000024368,0.0000024299,0.0000024265, +0.0000024265,0.0000024260,0.0000024186,0.0000024051,0.0000024049, +0.0000024434,0.0000025020,0.0000025338,0.0000025582,0.0000026144, +0.0000026761,0.0000027176,0.0000027524,0.0000027659,0.0000027613, +0.0000027524,0.0000027475,0.0000027468,0.0000027479,0.0000027480, +0.0000027494,0.0000027513,0.0000027503,0.0000027474,0.0000027452, +0.0000027459,0.0000027494,0.0000027542,0.0000027597,0.0000027641, +0.0000027639,0.0000027576,0.0000027462,0.0000027337,0.0000027269, +0.0000027180,0.0000027053,0.0000027004,0.0000027006,0.0000027027, +0.0000027031,0.0000027014,0.0000027001,0.0000027016,0.0000027051, +0.0000027064,0.0000027033,0.0000026973,0.0000026918,0.0000026903, +0.0000026922,0.0000026923,0.0000026869,0.0000026789,0.0000026708, +0.0000026657,0.0000026637,0.0000026643,0.0000026639,0.0000026611, +0.0000026626,0.0000026680,0.0000026749,0.0000026816,0.0000026854, +0.0000026871,0.0000026847,0.0000026796,0.0000026796,0.0000026857, +0.0000026917,0.0000026922,0.0000026907,0.0000026894,0.0000026884, +0.0000026868,0.0000026853,0.0000026847,0.0000026843,0.0000026826, +0.0000026794,0.0000026752,0.0000026721,0.0000026712,0.0000026683, +0.0000026623,0.0000026559,0.0000026494,0.0000026372,0.0000026135, +0.0000025858,0.0000025621,0.0000025432,0.0000025299,0.0000025207, +0.0000025088,0.0000024929,0.0000024781,0.0000024687,0.0000024654, +0.0000024650,0.0000024636,0.0000024582,0.0000024489,0.0000024367, +0.0000024250,0.0000024175,0.0000024161,0.0000024187,0.0000024212, +0.0000024209,0.0000024186,0.0000024159,0.0000024141,0.0000024140, +0.0000024159,0.0000024185,0.0000024202,0.0000024207,0.0000024195, +0.0000024162,0.0000024159,0.0000024204,0.0000024253,0.0000024261, +0.0000024230,0.0000024168,0.0000024109,0.0000024069,0.0000024045, +0.0000024028,0.0000024014,0.0000024000,0.0000023998,0.0000023998, +0.0000023983,0.0000023953,0.0000023931,0.0000023922,0.0000023911, +0.0000023893,0.0000023854,0.0000023775,0.0000023695,0.0000023684, +0.0000023743,0.0000023817,0.0000023865,0.0000023881,0.0000023874, +0.0000023853,0.0000023817,0.0000023780,0.0000023776,0.0000023796, +0.0000023819,0.0000023822,0.0000023811,0.0000023731,0.0000023610, +0.0000023610,0.0000023768,0.0000023877,0.0000023917,0.0000024072, +0.0000024292,0.0000024396,0.0000024408,0.0000024989,0.0000025651, +0.0000025857,0.0000025934,0.0000025943,0.0000025735,0.0000025705, +0.0000025770,0.0000025785,0.0000025583,0.0000025124,0.0000025150, +0.0000025424,0.0000026081,0.0000026493,0.0000026813,0.0000027059, +0.0000027209,0.0000027318,0.0000027349,0.0000027309,0.0000027271, +0.0000027292,0.0000027338,0.0000027354,0.0000027332,0.0000027295, +0.0000027269,0.0000027255,0.0000027254,0.0000027254,0.0000027244, +0.0000027222,0.0000027198,0.0000027172,0.0000027137,0.0000027101, +0.0000027063,0.0000027024,0.0000026990,0.0000026971,0.0000026967, +0.0000026977,0.0000027000,0.0000026978,0.0000027013,0.0000027055, +0.0000027090,0.0000027110,0.0000027117,0.0000027116,0.0000027105, +0.0000027066,0.0000027000,0.0000026924,0.0000026860,0.0000026842, +0.0000026855,0.0000026879,0.0000026880,0.0000026834,0.0000026756, +0.0000026676,0.0000026616,0.0000026590,0.0000026592,0.0000026590, +0.0000026574,0.0000026561,0.0000026573,0.0000026608,0.0000026629, +0.0000026630,0.0000026649,0.0000026695,0.0000026748,0.0000026771, +0.0000026780,0.0000026820,0.0000026864,0.0000026855,0.0000026778, +0.0000026684,0.0000026611,0.0000026546,0.0000026422,0.0000026175, +0.0000025866,0.0000025640,0.0000025568,0.0000025562,0.0000025542, +0.0000025484,0.0000025410,0.0000025345,0.0000025311,0.0000025297, +0.0000025297,0.0000025316,0.0000025370,0.0000025446,0.0000025519, +0.0000025573,0.0000025599,0.0000025580,0.0000025526,0.0000025486, +0.0000025464,0.0000025467,0.0000025490,0.0000025377,0.0000025030, +0.0000024756,0.0000024627,0.0000024488,0.0000024423,0.0000024438, +0.0000024441,0.0000024365,0.0000024281,0.0000024354,0.0000024490, +0.0000024536,0.0000024579,0.0000024640,0.0000024685,0.0000024725, +0.0000024774,0.0000024827,0.0000024867,0.0000024854,0.0000024813, +0.0000024799,0.0000024821,0.0000024878,0.0000024925,0.0000024949, +0.0000025051,0.0000025220,0.0000025381,0.0000025574,0.0000025738, +0.0000025810,0.0000025822,0.0000025817,0.0000025789,0.0000025683, +0.0000025580,0.0000025531,0.0000025450,0.0000025441,0.0000025582, +0.0000025711,0.0000025767,0.0000025796,0.0000025782,0.0000025712, +0.0000025622,0.0000025529,0.0000025458,0.0000025360,0.0000025216, +0.0000025076,0.0000024999,0.0000025001,0.0000025048,0.0000025106, +0.0000025166,0.0000025232,0.0000025313,0.0000025418,0.0000025517, +0.0000025578,0.0000025563,0.0000025528,0.0000025488,0.0000025458, +0.0000025446,0.0000025447,0.0000025456,0.0000025462,0.0000025452, +0.0000025428,0.0000025393,0.0000025363,0.0000025332,0.0000025294, +0.0000025252,0.0000025218,0.0000025232,0.0000025294,0.0000025373, +0.0000025396,0.0000025341,0.0000025202,0.0000025023,0.0000024870, +0.0000024772,0.0000024726,0.0000024689,0.0000024645,0.0000024685, +0.0000024877,0.0000025232,0.0000025584,0.0000025821,0.0000025952, +0.0000026011,0.0000025987,0.0000025896,0.0000025793,0.0000025721, +0.0000025688,0.0000025688,0.0000025698,0.0000025716,0.0000025741, +0.0000025762,0.0000025783,0.0000025811,0.0000025851,0.0000025893, +0.0000025933,0.0000025966,0.0000025992,0.0000026005,0.0000026008, +0.0000026006,0.0000025986,0.0000025965,0.0000025946,0.0000025927, +0.0000025912,0.0000025906,0.0000025905,0.0000025908,0.0000025929, +0.0000025953,0.0000025949,0.0000025924,0.0000025896,0.0000025888, +0.0000025902,0.0000025923,0.0000025924,0.0000025916,0.0000025928, +0.0000025982,0.0000026065,0.0000026140,0.0000026182,0.0000026184, +0.0000026177,0.0000026189,0.0000026219,0.0000026248,0.0000026257, +0.0000026249,0.0000026249,0.0000026282,0.0000026345,0.0000026376, +0.0000026359,0.0000026303,0.0000026246,0.0000026198,0.0000026141, +0.0000026089,0.0000026096,0.0000026197,0.0000026354,0.0000026493, +0.0000026587,0.0000026677,0.0000026784,0.0000026893,0.0000027010, +0.0000027142,0.0000027248,0.0000027280,0.0000027253,0.0000027162, +0.0000027042,0.0000026920,0.0000026822,0.0000026788,0.0000026804, +0.0000026873,0.0000026957,0.0000027013,0.0000027008,0.0000026928, +0.0000026768,0.0000026559,0.0000026348,0.0000026189,0.0000026100, +0.0000026074,0.0000026094,0.0000026132,0.0000026157,0.0000026168, +0.0000026159,0.0000026142,0.0000026125,0.0000026106,0.0000026074, +0.0000026025,0.0000025969,0.0000025914,0.0000025853,0.0000025769, +0.0000025675,0.0000025615,0.0000025618,0.0000025662,0.0000025723, +0.0000025789,0.0000025846,0.0000025865,0.0000025835,0.0000025765, +0.0000025696,0.0000025652,0.0000025634,0.0000025625,0.0000025623, +0.0000025623,0.0000025605,0.0000025542,0.0000025422,0.0000025287, +0.0000025200,0.0000025171,0.0000025168,0.0000025191,0.0000025223, +0.0000025271,0.0000025335,0.0000025422,0.0000025512,0.0000025579, +0.0000025608,0.0000025615,0.0000025636,0.0000025715,0.0000025872, +0.0000026078,0.0000026272,0.0000026422,0.0000026525,0.0000026602, +0.0000026673,0.0000026739,0.0000026803,0.0000026856,0.0000026880, +0.0000026873,0.0000026852,0.0000026840,0.0000026852,0.0000026867, +0.0000026853,0.0000026815,0.0000026767,0.0000026741,0.0000026770, +0.0000026853,0.0000026955,0.0000027056,0.0000027160,0.0000027269, +0.0000027356,0.0000027394,0.0000027387,0.0000027329,0.0000027240, +0.0000027145,0.0000027063,0.0000027012,0.0000026988,0.0000026981, +0.0000027002,0.0000027040,0.0000027061,0.0000027056,0.0000027030, +0.0000027022,0.0000027040,0.0000027057,0.0000027072,0.0000027117, +0.0000027182,0.0000027245,0.0000027331,0.0000027460,0.0000027555, +0.0000027561,0.0000027570,0.0000027664,0.0000027764,0.0000027810, +0.0000027923,0.0000028078,0.0000028113,0.0000028045,0.0000027963, +0.0000027912,0.0000027904,0.0000027927,0.0000027965,0.0000027996, +0.0000028012,0.0000028020,0.0000028032,0.0000028049,0.0000028066, +0.0000028077,0.0000028079,0.0000028074,0.0000028073,0.0000028079, +0.0000028089,0.0000028089,0.0000028065,0.0000028021,0.0000027968, +0.0000027907,0.0000027842,0.0000027780,0.0000027742,0.0000027673, +0.0000027589,0.0000027501,0.0000027431,0.0000027385,0.0000027362, +0.0000027352,0.0000027336,0.0000027324,0.0000027328,0.0000027347, +0.0000027362,0.0000027379,0.0000027394,0.0000027413,0.0000027417, +0.0000027377,0.0000027306,0.0000027229,0.0000027163,0.0000027099, +0.0000027012,0.0000026887,0.0000026734,0.0000026560,0.0000026363, +0.0000026172,0.0000026032,0.0000025964,0.0000025948,0.0000025950, +0.0000025959,0.0000025947,0.0000025892,0.0000025796,0.0000025680, +0.0000025553,0.0000025434,0.0000025364,0.0000025326,0.0000025302, +0.0000025272,0.0000025250,0.0000025234,0.0000025206,0.0000025152, +0.0000025098,0.0000025088,0.0000025103,0.0000025125,0.0000025163, +0.0000025226,0.0000025291,0.0000025342,0.0000025368,0.0000025374, +0.0000025418,0.0000025473,0.0000025546,0.0000025641,0.0000025764, +0.0000025950,0.0000026203,0.0000026417,0.0000026496,0.0000026485, +0.0000026478,0.0000026453,0.0000026415,0.0000026386,0.0000026386, +0.0000026393,0.0000026399,0.0000026390,0.0000026383,0.0000026363, +0.0000026296,0.0000026255,0.0000026271,0.0000026338,0.0000026391, +0.0000026425,0.0000026448,0.0000026454,0.0000026462,0.0000026490, +0.0000026513,0.0000026530,0.0000026554,0.0000026581,0.0000026601, +0.0000026619,0.0000026640,0.0000026652,0.0000026637,0.0000026579, +0.0000026496,0.0000026429,0.0000026419,0.0000026464,0.0000026512, +0.0000026512,0.0000026509,0.0000026559,0.0000026674,0.0000026739, +0.0000026706,0.0000026623,0.0000026576,0.0000026549,0.0000026560, +0.0000026553,0.0000026242,0.0000025839,0.0000025671,0.0000025674, +0.0000025683,0.0000025674,0.0000025663,0.0000025734,0.0000025973, +0.0000026294,0.0000026531,0.0000026664,0.0000026748,0.0000026768, +0.0000026730,0.0000026672,0.0000026694,0.0000026937,0.0000027274, +0.0000027433,0.0000027393,0.0000027309,0.0000027322,0.0000027476, +0.0000027699,0.0000027883,0.0000027971,0.0000027983,0.0000027953, +0.0000027907,0.0000027850,0.0000027815,0.0000027837,0.0000027875, +0.0000027868,0.0000027811,0.0000027744,0.0000027701,0.0000027679, +0.0000027661,0.0000027631,0.0000027593,0.0000027583,0.0000027628, +0.0000027773,0.0000027942,0.0000028041,0.0000028053,0.0000028023, +0.0000027998,0.0000027988,0.0000027984,0.0000027974,0.0000027950, +0.0000027911,0.0000027857,0.0000027790,0.0000027718,0.0000027657, +0.0000027627,0.0000027625,0.0000027637,0.0000027642,0.0000027626, +0.0000027584,0.0000027540,0.0000027523,0.0000027522,0.0000027463, +0.0000027244,0.0000026980,0.0000026867,0.0000026910,0.0000027036, +0.0000027136,0.0000027193,0.0000027271,0.0000027368,0.0000027438, +0.0000027467,0.0000027466,0.0000027460,0.0000027447,0.0000027421, +0.0000027390,0.0000027375,0.0000027379,0.0000027382,0.0000027351, +0.0000027267,0.0000027150,0.0000027042,0.0000026961,0.0000026886, +0.0000026767,0.0000026612,0.0000026472,0.0000026358,0.0000026265, +0.0000026230,0.0000026261,0.0000026311,0.0000026300,0.0000026223, +0.0000026110,0.0000025880,0.0000025573,0.0000025390,0.0000025351, +0.0000025340,0.0000025319,0.0000025301,0.0000025265,0.0000025231, +0.0000025232,0.0000025246,0.0000025239,0.0000025214,0.0000025195, +0.0000025193,0.0000025205,0.0000025221,0.0000025227,0.0000025227, +0.0000025209,0.0000025169,0.0000025113,0.0000025069,0.0000025065, +0.0000025108,0.0000025170,0.0000025219,0.0000025220,0.0000025173, +0.0000025127,0.0000025124,0.0000025177,0.0000025248,0.0000025259, +0.0000025212,0.0000025183,0.0000025202,0.0000025197,0.0000025113, +0.0000025040,0.0000025092,0.0000025267,0.0000025450,0.0000025570, +0.0000025624,0.0000025635,0.0000025621,0.0000025597,0.0000025574, +0.0000025547,0.0000025508,0.0000025463,0.0000025433,0.0000025420, +0.0000025404,0.0000025377,0.0000025350,0.0000025340,0.0000025343, +0.0000025347,0.0000025328,0.0000025293,0.0000025298,0.0000025410, +0.0000025623,0.0000025840,0.0000026019,0.0000026150,0.0000026231, +0.0000026305,0.0000026395,0.0000026478,0.0000026544,0.0000026590, +0.0000026609,0.0000026606,0.0000026566,0.0000026489,0.0000026417, +0.0000026410,0.0000026483,0.0000026620,0.0000026779,0.0000026953, +0.0000027142,0.0000027308,0.0000027388,0.0000027400,0.0000027336, +0.0000027246,0.0000027177,0.0000027126,0.0000027059,0.0000026969, +0.0000026877,0.0000026821,0.0000026817,0.0000026893,0.0000027041, +0.0000027240,0.0000027417,0.0000027506,0.0000027500,0.0000027461, +0.0000027448,0.0000027448,0.0000027442,0.0000027477,0.0000027576, +0.0000027742,0.0000027899,0.0000028009,0.0000028083,0.0000028120, +0.0000028122,0.0000028090,0.0000028062,0.0000028064,0.0000028076, +0.0000028069,0.0000028044,0.0000028019,0.0000027979,0.0000027914, +0.0000027841,0.0000027780,0.0000027746,0.0000027735,0.0000027730, +0.0000027710,0.0000027687,0.0000027691,0.0000027716,0.0000027691, +0.0000027596,0.0000027494,0.0000027495,0.0000027588,0.0000027693, +0.0000027758,0.0000027784,0.0000027796,0.0000027801,0.0000027787, +0.0000027746,0.0000027707,0.0000027701,0.0000027719,0.0000027732, +0.0000027709,0.0000027640,0.0000027567,0.0000027512,0.0000027444, +0.0000027354,0.0000027270,0.0000027189,0.0000027115,0.0000027056, +0.0000027000,0.0000026940,0.0000026917,0.0000026937,0.0000026949, +0.0000026928,0.0000026925,0.0000026966,0.0000026986,0.0000026923, +0.0000026778,0.0000026620,0.0000026490,0.0000026372,0.0000026256, +0.0000026142,0.0000026040,0.0000025974,0.0000025944,0.0000025902, +0.0000025841,0.0000025816,0.0000025826,0.0000025820,0.0000025768, +0.0000025691,0.0000025645,0.0000025664,0.0000025746,0.0000025820, +0.0000025835,0.0000025782,0.0000025680,0.0000025534,0.0000025303, +0.0000025056,0.0000024934,0.0000024920,0.0000024910,0.0000024876, +0.0000024844,0.0000024834,0.0000024850,0.0000024861,0.0000024851, +0.0000024820,0.0000024795,0.0000024783,0.0000024754,0.0000024692, +0.0000024606,0.0000024512,0.0000024429,0.0000024357,0.0000024269, +0.0000024206,0.0000024206,0.0000024229,0.0000024214,0.0000024110, +0.0000024029,0.0000024214,0.0000024765,0.0000025216,0.0000025404, +0.0000025780,0.0000026432,0.0000026928,0.0000027286,0.0000027589, +0.0000027650,0.0000027560,0.0000027494,0.0000027479,0.0000027481, +0.0000027474,0.0000027466,0.0000027470,0.0000027453,0.0000027404, +0.0000027364,0.0000027364,0.0000027417,0.0000027485,0.0000027544, +0.0000027604,0.0000027629,0.0000027600,0.0000027496,0.0000027363, +0.0000027281,0.0000027205,0.0000027077,0.0000027025,0.0000027033, +0.0000027046,0.0000027037,0.0000027018,0.0000027008,0.0000027022, +0.0000027062,0.0000027083,0.0000027058,0.0000027010,0.0000026975, +0.0000026963,0.0000026939,0.0000026891,0.0000026808,0.0000026735, +0.0000026675,0.0000026619,0.0000026586,0.0000026581,0.0000026575, +0.0000026558,0.0000026592,0.0000026660,0.0000026741,0.0000026807, +0.0000026849,0.0000026866,0.0000026841,0.0000026786,0.0000026770, +0.0000026800,0.0000026868,0.0000026910,0.0000026908,0.0000026881, +0.0000026856,0.0000026835,0.0000026821,0.0000026814,0.0000026808, +0.0000026789,0.0000026753,0.0000026722,0.0000026700,0.0000026682, +0.0000026639,0.0000026574,0.0000026515,0.0000026443,0.0000026297, +0.0000026051,0.0000025823,0.0000025655,0.0000025507,0.0000025386, +0.0000025310,0.0000025248,0.0000025155,0.0000025022,0.0000024864, +0.0000024734,0.0000024669,0.0000024642,0.0000024606,0.0000024546, +0.0000024446,0.0000024312,0.0000024198,0.0000024142,0.0000024150, +0.0000024184,0.0000024196,0.0000024190,0.0000024170,0.0000024150, +0.0000024141,0.0000024142,0.0000024162,0.0000024191,0.0000024211, +0.0000024214,0.0000024209,0.0000024185,0.0000024167,0.0000024186, +0.0000024235,0.0000024257,0.0000024241,0.0000024189,0.0000024122, +0.0000024065,0.0000024019,0.0000023981,0.0000023948,0.0000023927, +0.0000023925,0.0000023932,0.0000023933,0.0000023927,0.0000023917, +0.0000023906,0.0000023888,0.0000023862,0.0000023849,0.0000023834, +0.0000023776,0.0000023726,0.0000023731,0.0000023773,0.0000023819, +0.0000023841,0.0000023839,0.0000023834,0.0000023822,0.0000023783, +0.0000023753,0.0000023759,0.0000023776,0.0000023778,0.0000023758, +0.0000023683,0.0000023557,0.0000023542,0.0000023704,0.0000023835, +0.0000023884,0.0000024040,0.0000024260,0.0000024373,0.0000024385, +0.0000024959,0.0000025637,0.0000025845,0.0000025923,0.0000025930, +0.0000025716,0.0000025689,0.0000025759,0.0000025775,0.0000025631, +0.0000025158,0.0000025030,0.0000025254,0.0000025712,0.0000026281, +0.0000026568,0.0000026860,0.0000027045,0.0000027171,0.0000027267, +0.0000027284,0.0000027246,0.0000027234,0.0000027271,0.0000027311, +0.0000027313,0.0000027281,0.0000027243,0.0000027206,0.0000027194, +0.0000027185,0.0000027171,0.0000027150,0.0000027127,0.0000027103, +0.0000027074,0.0000027042,0.0000027013,0.0000026981,0.0000026953, +0.0000026931,0.0000026924,0.0000026930,0.0000026950,0.0000027054, +0.0000027111,0.0000027165,0.0000027207,0.0000027226,0.0000027217, +0.0000027195,0.0000027163,0.0000027102,0.0000027012,0.0000026923, +0.0000026865,0.0000026852,0.0000026857,0.0000026843,0.0000026799, +0.0000026747,0.0000026701,0.0000026657,0.0000026624,0.0000026613, +0.0000026616,0.0000026609,0.0000026583,0.0000026549,0.0000026538, +0.0000026551,0.0000026568,0.0000026571,0.0000026575,0.0000026616, +0.0000026686,0.0000026746,0.0000026769,0.0000026785,0.0000026813, +0.0000026828,0.0000026791,0.0000026707,0.0000026626,0.0000026555, +0.0000026466,0.0000026308,0.0000026041,0.0000025754,0.0000025583, +0.0000025534,0.0000025513,0.0000025481,0.0000025436,0.0000025390, +0.0000025377,0.0000025391,0.0000025406,0.0000025421,0.0000025458, +0.0000025502,0.0000025542,0.0000025579,0.0000025604,0.0000025588, +0.0000025535,0.0000025490,0.0000025457,0.0000025456,0.0000025472, +0.0000025367,0.0000025054,0.0000024785,0.0000024648,0.0000024494, +0.0000024392,0.0000024399,0.0000024440,0.0000024419,0.0000024322, +0.0000024299,0.0000024424,0.0000024524,0.0000024568,0.0000024629, +0.0000024682,0.0000024725,0.0000024769,0.0000024805,0.0000024858, +0.0000024901,0.0000024898,0.0000024869,0.0000024858,0.0000024878, +0.0000024927,0.0000024951,0.0000024964,0.0000025065,0.0000025232, +0.0000025378,0.0000025539,0.0000025704,0.0000025800,0.0000025830, +0.0000025831,0.0000025787,0.0000025662,0.0000025574,0.0000025517, +0.0000025437,0.0000025457,0.0000025615,0.0000025728,0.0000025779, +0.0000025803,0.0000025782,0.0000025715,0.0000025619,0.0000025519, +0.0000025440,0.0000025317,0.0000025173,0.0000025048,0.0000024966, +0.0000024965,0.0000025013,0.0000025080,0.0000025153,0.0000025220, +0.0000025279,0.0000025349,0.0000025430,0.0000025494,0.0000025531, +0.0000025541,0.0000025554,0.0000025544,0.0000025524,0.0000025498, +0.0000025472,0.0000025456,0.0000025441,0.0000025431,0.0000025417, +0.0000025397,0.0000025368,0.0000025336,0.0000025301,0.0000025258, +0.0000025222,0.0000025232,0.0000025288,0.0000025368,0.0000025390, +0.0000025350,0.0000025220,0.0000025049,0.0000024889,0.0000024764, +0.0000024680,0.0000024637,0.0000024594,0.0000024626,0.0000024817, +0.0000025161,0.0000025517,0.0000025770,0.0000025909,0.0000025959, +0.0000025941,0.0000025912,0.0000025867,0.0000025844,0.0000025843, +0.0000025853,0.0000025872,0.0000025897,0.0000025922,0.0000025949, +0.0000025976,0.0000025994,0.0000026002,0.0000025997,0.0000025990, +0.0000025971,0.0000025946,0.0000025910,0.0000025862,0.0000025805, +0.0000025745,0.0000025686,0.0000025637,0.0000025613,0.0000025626, +0.0000025683,0.0000025761,0.0000025822,0.0000025865,0.0000025911, +0.0000025936,0.0000025928,0.0000025913,0.0000025924,0.0000025946, +0.0000025943,0.0000025924,0.0000025928,0.0000025983,0.0000026059, +0.0000026125,0.0000026160,0.0000026162,0.0000026157,0.0000026167, +0.0000026191,0.0000026216,0.0000026232,0.0000026245,0.0000026276, +0.0000026333,0.0000026387,0.0000026405,0.0000026398,0.0000026387, +0.0000026361,0.0000026308,0.0000026237,0.0000026165,0.0000026122, +0.0000026137,0.0000026225,0.0000026348,0.0000026457,0.0000026559, +0.0000026677,0.0000026795,0.0000026911,0.0000027049,0.0000027182, +0.0000027246,0.0000027232,0.0000027156,0.0000027044,0.0000026931, +0.0000026836,0.0000026784,0.0000026786,0.0000026831,0.0000026875, +0.0000026879,0.0000026837,0.0000026732,0.0000026565,0.0000026370, +0.0000026196,0.0000026087,0.0000026037,0.0000026028,0.0000026045, +0.0000026081,0.0000026129,0.0000026177,0.0000026200,0.0000026193, +0.0000026167,0.0000026134,0.0000026092,0.0000026042,0.0000025995, +0.0000025955,0.0000025900,0.0000025809,0.0000025698,0.0000025614, +0.0000025599,0.0000025629,0.0000025684,0.0000025762,0.0000025840, +0.0000025874,0.0000025857,0.0000025793,0.0000025724,0.0000025674, +0.0000025641,0.0000025618,0.0000025604,0.0000025587,0.0000025564, +0.0000025518,0.0000025423,0.0000025289,0.0000025182,0.0000025151, +0.0000025179,0.0000025230,0.0000025262,0.0000025286,0.0000025312, +0.0000025365,0.0000025450,0.0000025541,0.0000025597,0.0000025620, +0.0000025636,0.0000025681,0.0000025777,0.0000025916,0.0000026066, +0.0000026198,0.0000026308,0.0000026397,0.0000026485,0.0000026570, +0.0000026652,0.0000026726,0.0000026766,0.0000026754,0.0000026709, +0.0000026671,0.0000026669,0.0000026690,0.0000026703,0.0000026682, +0.0000026627,0.0000026570,0.0000026558,0.0000026611,0.0000026721, +0.0000026853,0.0000026979,0.0000027090,0.0000027186,0.0000027252, +0.0000027273,0.0000027248,0.0000027186,0.0000027107,0.0000027024, +0.0000026953,0.0000026916,0.0000026910,0.0000026922,0.0000026951, +0.0000026965,0.0000026953,0.0000026915,0.0000026891,0.0000026907, +0.0000026949,0.0000026989,0.0000027049,0.0000027141,0.0000027232, +0.0000027310,0.0000027422,0.0000027558,0.0000027609,0.0000027586, +0.0000027583,0.0000027672,0.0000027756,0.0000027802,0.0000027930, +0.0000028074,0.0000028078,0.0000027976,0.0000027878,0.0000027835, +0.0000027839,0.0000027878,0.0000027927,0.0000027959,0.0000027975, +0.0000027987,0.0000027992,0.0000027988,0.0000027982,0.0000027976, +0.0000027969,0.0000027965,0.0000027971,0.0000027987,0.0000028004, +0.0000028002,0.0000027972,0.0000027922,0.0000027861,0.0000027800, +0.0000027758,0.0000027739,0.0000027723,0.0000027680,0.0000027636, +0.0000027587,0.0000027556,0.0000027536,0.0000027520,0.0000027495, +0.0000027455,0.0000027417,0.0000027395,0.0000027376,0.0000027364, +0.0000027368,0.0000027390,0.0000027432,0.0000027455,0.0000027428, +0.0000027352,0.0000027261,0.0000027182,0.0000027116,0.0000027047, +0.0000026967,0.0000026881,0.0000026780,0.0000026636,0.0000026441, +0.0000026223,0.0000026044,0.0000025943,0.0000025916,0.0000025931, +0.0000025939,0.0000025910,0.0000025833,0.0000025718,0.0000025595, +0.0000025486,0.0000025413,0.0000025357,0.0000025315,0.0000025271, +0.0000025230,0.0000025202,0.0000025162,0.0000025111,0.0000025076, +0.0000025079,0.0000025107,0.0000025148,0.0000025209,0.0000025294, +0.0000025361,0.0000025386,0.0000025375,0.0000025336,0.0000025292, +0.0000025251,0.0000025265,0.0000025343,0.0000025492,0.0000025694, +0.0000025949,0.0000026234,0.0000026431,0.0000026489,0.0000026508, +0.0000026494,0.0000026447,0.0000026400,0.0000026390,0.0000026404, +0.0000026404,0.0000026382,0.0000026366,0.0000026341,0.0000026275, +0.0000026233,0.0000026255,0.0000026322,0.0000026374,0.0000026413, +0.0000026432,0.0000026436,0.0000026459,0.0000026491,0.0000026502, +0.0000026505,0.0000026519,0.0000026536,0.0000026551,0.0000026567, +0.0000026590,0.0000026604,0.0000026579,0.0000026505,0.0000026427, +0.0000026386,0.0000026401,0.0000026449,0.0000026482,0.0000026487, +0.0000026496,0.0000026545,0.0000026645,0.0000026709,0.0000026693, +0.0000026615,0.0000026568,0.0000026557,0.0000026558,0.0000026571, +0.0000026436,0.0000025961,0.0000025608,0.0000025543,0.0000025569, +0.0000025588,0.0000025624,0.0000025702,0.0000025833,0.0000026090, +0.0000026390,0.0000026594,0.0000026696,0.0000026745,0.0000026744, +0.0000026683,0.0000026614,0.0000026696,0.0000027018,0.0000027309, +0.0000027372,0.0000027295,0.0000027253,0.0000027322,0.0000027514, +0.0000027727,0.0000027874,0.0000027930,0.0000027930,0.0000027910, +0.0000027877,0.0000027820,0.0000027784,0.0000027800,0.0000027826, +0.0000027827,0.0000027786,0.0000027735,0.0000027702,0.0000027686, +0.0000027669,0.0000027635,0.0000027593,0.0000027577,0.0000027606, +0.0000027723,0.0000027887,0.0000028007,0.0000028038,0.0000028016, +0.0000027987,0.0000027962,0.0000027951,0.0000027946,0.0000027932, +0.0000027904,0.0000027865,0.0000027808,0.0000027739,0.0000027676, +0.0000027639,0.0000027627,0.0000027618,0.0000027594,0.0000027553, +0.0000027519,0.0000027512,0.0000027516,0.0000027441,0.0000027210, +0.0000026961,0.0000026888,0.0000026996,0.0000027152,0.0000027228, +0.0000027249,0.0000027285,0.0000027338,0.0000027388,0.0000027418, +0.0000027418,0.0000027394,0.0000027357,0.0000027313,0.0000027267, +0.0000027237,0.0000027223,0.0000027210,0.0000027177,0.0000027117, +0.0000027040,0.0000026973,0.0000026931,0.0000026885,0.0000026790, +0.0000026641,0.0000026472,0.0000026327,0.0000026225,0.0000026189, +0.0000026218,0.0000026271,0.0000026272,0.0000026203,0.0000026093, +0.0000025874,0.0000025580,0.0000025395,0.0000025360,0.0000025361, +0.0000025352,0.0000025325,0.0000025266,0.0000025223,0.0000025232, +0.0000025237,0.0000025210,0.0000025170,0.0000025158,0.0000025163, +0.0000025184,0.0000025211,0.0000025235,0.0000025258,0.0000025281, +0.0000025292,0.0000025280,0.0000025234,0.0000025157,0.0000025084, +0.0000025067,0.0000025079,0.0000025134,0.0000025165,0.0000025155, +0.0000025124,0.0000025100,0.0000025126,0.0000025210,0.0000025277, +0.0000025266,0.0000025189,0.0000025164,0.0000025191,0.0000025177, +0.0000025094,0.0000025033,0.0000025093,0.0000025249,0.0000025393, +0.0000025475,0.0000025501,0.0000025502,0.0000025484,0.0000025455, +0.0000025419,0.0000025366,0.0000025299,0.0000025238,0.0000025206, +0.0000025201,0.0000025207,0.0000025212,0.0000025211,0.0000025218, +0.0000025235,0.0000025248,0.0000025246,0.0000025244,0.0000025310, +0.0000025495,0.0000025728,0.0000025932,0.0000026089,0.0000026186, +0.0000026246,0.0000026315,0.0000026397,0.0000026476,0.0000026532, +0.0000026560,0.0000026561,0.0000026527,0.0000026459,0.0000026375, +0.0000026328,0.0000026354,0.0000026479,0.0000026649,0.0000026810, +0.0000026973,0.0000027158,0.0000027318,0.0000027397,0.0000027374, +0.0000027279,0.0000027153,0.0000027058,0.0000027009,0.0000026969, +0.0000026907,0.0000026813,0.0000026742,0.0000026765,0.0000026896, +0.0000027079,0.0000027243,0.0000027359,0.0000027413,0.0000027414, +0.0000027415,0.0000027450,0.0000027482,0.0000027504,0.0000027565, +0.0000027678,0.0000027814,0.0000027930,0.0000028018,0.0000028070, +0.0000028081,0.0000028069,0.0000028065,0.0000028099,0.0000028141, +0.0000028138,0.0000028091,0.0000028035,0.0000027973,0.0000027893, +0.0000027811,0.0000027748,0.0000027716,0.0000027707,0.0000027696, +0.0000027666,0.0000027629,0.0000027614,0.0000027628,0.0000027645, +0.0000027602,0.0000027509,0.0000027472,0.0000027510,0.0000027623, +0.0000027722,0.0000027766,0.0000027780,0.0000027793,0.0000027799, +0.0000027792,0.0000027777,0.0000027774,0.0000027776,0.0000027771, +0.0000027749,0.0000027695,0.0000027629,0.0000027577,0.0000027522, +0.0000027430,0.0000027330,0.0000027241,0.0000027166,0.0000027102, +0.0000027048,0.0000026986,0.0000026954,0.0000026965,0.0000026970, +0.0000026948,0.0000026955,0.0000027007,0.0000027021,0.0000026945, +0.0000026814,0.0000026690,0.0000026586,0.0000026484,0.0000026380, +0.0000026270,0.0000026147,0.0000026041,0.0000025992,0.0000025969, +0.0000025920,0.0000025871,0.0000025855,0.0000025845,0.0000025798, +0.0000025714,0.0000025650,0.0000025654,0.0000025728,0.0000025812, +0.0000025833,0.0000025778,0.0000025679,0.0000025530,0.0000025294, +0.0000025053,0.0000024947,0.0000024944,0.0000024937,0.0000024910, +0.0000024888,0.0000024885,0.0000024887,0.0000024889,0.0000024873, +0.0000024836,0.0000024803,0.0000024792,0.0000024786,0.0000024742, +0.0000024655,0.0000024548,0.0000024443,0.0000024352,0.0000024256, +0.0000024174,0.0000024161,0.0000024203,0.0000024228,0.0000024182, +0.0000024065,0.0000024100,0.0000024507,0.0000025040,0.0000025304, +0.0000025500,0.0000026023,0.0000026639,0.0000027033,0.0000027380, +0.0000027616,0.0000027602,0.0000027509,0.0000027462,0.0000027457, +0.0000027453,0.0000027441,0.0000027439,0.0000027415,0.0000027344, +0.0000027287,0.0000027274,0.0000027320,0.0000027410,0.0000027483, +0.0000027549,0.0000027606,0.0000027607,0.0000027526,0.0000027392, +0.0000027300,0.0000027230,0.0000027101,0.0000027047,0.0000027059, +0.0000027065,0.0000027042,0.0000027021,0.0000027018,0.0000027030, +0.0000027073,0.0000027100,0.0000027089,0.0000027066,0.0000027049, +0.0000027011,0.0000026936,0.0000026829,0.0000026747,0.0000026696, +0.0000026646,0.0000026581,0.0000026542,0.0000026529,0.0000026521, +0.0000026514,0.0000026558,0.0000026631,0.0000026714,0.0000026779, +0.0000026823,0.0000026848,0.0000026839,0.0000026794,0.0000026762, +0.0000026764,0.0000026794,0.0000026839,0.0000026865,0.0000026863, +0.0000026844,0.0000026817,0.0000026793,0.0000026773,0.0000026752, +0.0000026728,0.0000026700,0.0000026682,0.0000026666,0.0000026636, +0.0000026584,0.0000026529,0.0000026471,0.0000026380,0.0000026199, +0.0000025963,0.0000025799,0.0000025705,0.0000025615,0.0000025525, +0.0000025450,0.0000025388,0.0000025327,0.0000025248,0.0000025134, +0.0000024987,0.0000024838,0.0000024720,0.0000024639,0.0000024578, +0.0000024511,0.0000024403,0.0000024261,0.0000024150,0.0000024120, +0.0000024141,0.0000024170,0.0000024176,0.0000024174,0.0000024170, +0.0000024165,0.0000024164,0.0000024168,0.0000024177,0.0000024195, +0.0000024210,0.0000024214,0.0000024214,0.0000024210,0.0000024186, +0.0000024171,0.0000024190,0.0000024217,0.0000024216,0.0000024181, +0.0000024119,0.0000024047,0.0000023982,0.0000023933,0.0000023896, +0.0000023877,0.0000023877,0.0000023896,0.0000023922,0.0000023934, +0.0000023926,0.0000023908,0.0000023881,0.0000023857,0.0000023854, +0.0000023856,0.0000023822,0.0000023762,0.0000023740,0.0000023750, +0.0000023774,0.0000023796,0.0000023812,0.0000023824,0.0000023827, +0.0000023788,0.0000023738,0.0000023723,0.0000023728,0.0000023720, +0.0000023686,0.0000023606,0.0000023482,0.0000023468,0.0000023641, +0.0000023794,0.0000023858,0.0000024015,0.0000024229,0.0000024354, +0.0000024367,0.0000024927,0.0000025621,0.0000025838,0.0000025913, +0.0000025919,0.0000025704,0.0000025659,0.0000025731,0.0000025744, +0.0000025666,0.0000025241,0.0000024949,0.0000025090,0.0000025356, +0.0000025946,0.0000026350,0.0000026618,0.0000026870,0.0000027020, +0.0000027138,0.0000027217,0.0000027228,0.0000027214,0.0000027223, +0.0000027250,0.0000027265,0.0000027258,0.0000027237,0.0000027212, +0.0000027200,0.0000027188,0.0000027171,0.0000027149,0.0000027121, +0.0000027088,0.0000027050,0.0000027012,0.0000026979,0.0000026948, +0.0000026928,0.0000026918,0.0000026920,0.0000026946,0.0000026994, +0.0000027181,0.0000027240,0.0000027287,0.0000027316,0.0000027315, +0.0000027279,0.0000027232,0.0000027182,0.0000027105,0.0000027012, +0.0000026921,0.0000026861,0.0000026837,0.0000026811,0.0000026772, +0.0000026740,0.0000026726,0.0000026703,0.0000026659,0.0000026622, +0.0000026605,0.0000026606,0.0000026604,0.0000026585,0.0000026547, +0.0000026521,0.0000026518,0.0000026525,0.0000026527,0.0000026518, +0.0000026534,0.0000026594,0.0000026670,0.0000026724,0.0000026749, +0.0000026769,0.0000026787,0.0000026780,0.0000026720,0.0000026635, +0.0000026551,0.0000026465,0.0000026355,0.0000026188,0.0000025952, +0.0000025721,0.0000025583,0.0000025520,0.0000025484,0.0000025457, +0.0000025447,0.0000025474,0.0000025525,0.0000025560,0.0000025575, +0.0000025585,0.0000025581,0.0000025577,0.0000025591,0.0000025604, +0.0000025589,0.0000025529,0.0000025477,0.0000025442,0.0000025444, +0.0000025433,0.0000025285,0.0000024996,0.0000024771,0.0000024649, +0.0000024495,0.0000024361,0.0000024349,0.0000024406,0.0000024430, +0.0000024377,0.0000024297,0.0000024347,0.0000024481,0.0000024554, +0.0000024614,0.0000024673,0.0000024727,0.0000024780,0.0000024819, +0.0000024852,0.0000024893,0.0000024935,0.0000024941,0.0000024919, +0.0000024911,0.0000024932,0.0000024962,0.0000024963,0.0000024982, +0.0000025093,0.0000025260,0.0000025403,0.0000025524,0.0000025651, +0.0000025764,0.0000025827,0.0000025832,0.0000025772,0.0000025642, +0.0000025570,0.0000025498,0.0000025429,0.0000025492,0.0000025646, +0.0000025741,0.0000025787,0.0000025810,0.0000025785,0.0000025723, +0.0000025620,0.0000025514,0.0000025423,0.0000025285,0.0000025151, +0.0000025034,0.0000024941,0.0000024934,0.0000024982,0.0000025062, +0.0000025149,0.0000025216,0.0000025259,0.0000025301,0.0000025350, +0.0000025396,0.0000025441,0.0000025498,0.0000025560,0.0000025581, +0.0000025586,0.0000025560,0.0000025520,0.0000025478,0.0000025444, +0.0000025429,0.0000025422,0.0000025411,0.0000025389,0.0000025361, +0.0000025329,0.0000025291,0.0000025249,0.0000025218,0.0000025223, +0.0000025280,0.0000025353,0.0000025378,0.0000025356,0.0000025244, +0.0000025075,0.0000024892,0.0000024736,0.0000024642,0.0000024592, +0.0000024580,0.0000024607,0.0000024772,0.0000025083,0.0000025420, +0.0000025680,0.0000025828,0.0000025892,0.0000025907,0.0000025891, +0.0000025897,0.0000025905,0.0000025919,0.0000025938,0.0000025948, +0.0000025961,0.0000025975,0.0000025976,0.0000025961,0.0000025931, +0.0000025887,0.0000025835,0.0000025781,0.0000025716,0.0000025637, +0.0000025543,0.0000025438,0.0000025338,0.0000025252,0.0000025186, +0.0000025147,0.0000025153,0.0000025249,0.0000025438,0.0000025633, +0.0000025754,0.0000025833,0.0000025908,0.0000025945,0.0000025946, +0.0000025957,0.0000025973,0.0000025963,0.0000025932,0.0000025927, +0.0000025969,0.0000026033,0.0000026093,0.0000026130,0.0000026140, +0.0000026137,0.0000026139,0.0000026145,0.0000026156,0.0000026174, +0.0000026211,0.0000026276,0.0000026347,0.0000026406,0.0000026423, +0.0000026421,0.0000026418,0.0000026411,0.0000026374,0.0000026303, +0.0000026230,0.0000026181,0.0000026154,0.0000026165,0.0000026228, +0.0000026317,0.0000026413,0.0000026537,0.0000026673,0.0000026794, +0.0000026929,0.0000027078,0.0000027182,0.0000027199,0.0000027137, +0.0000027035,0.0000026926,0.0000026833,0.0000026770,0.0000026739, +0.0000026725,0.0000026707,0.0000026675,0.0000026620,0.0000026516, +0.0000026360,0.0000026195,0.0000026068,0.0000026000,0.0000025977, +0.0000025967,0.0000025976,0.0000026036,0.0000026127,0.0000026203, +0.0000026235,0.0000026238,0.0000026212,0.0000026170,0.0000026116, +0.0000026060,0.0000026007,0.0000025965,0.0000025919,0.0000025843, +0.0000025734,0.0000025638,0.0000025611,0.0000025634,0.0000025684, +0.0000025758,0.0000025843,0.0000025898,0.0000025894,0.0000025840, +0.0000025771,0.0000025714,0.0000025673,0.0000025641,0.0000025610, +0.0000025569,0.0000025524,0.0000025481,0.0000025418,0.0000025304, +0.0000025179,0.0000025123,0.0000025148,0.0000025228,0.0000025287, +0.0000025322,0.0000025329,0.0000025342,0.0000025386,0.0000025469, +0.0000025550,0.0000025595,0.0000025609,0.0000025631,0.0000025689, +0.0000025784,0.0000025892,0.0000025996,0.0000026092,0.0000026179, +0.0000026265,0.0000026356,0.0000026447,0.0000026532,0.0000026583, +0.0000026578,0.0000026525,0.0000026456,0.0000026425,0.0000026438, +0.0000026479,0.0000026506,0.0000026489,0.0000026448,0.0000026421, +0.0000026426,0.0000026496,0.0000026624,0.0000026762,0.0000026874, +0.0000026955,0.0000027020,0.0000027062,0.0000027075,0.0000027065, +0.0000027025,0.0000026966,0.0000026900,0.0000026853,0.0000026843, +0.0000026855,0.0000026879,0.0000026887,0.0000026856,0.0000026803, +0.0000026774,0.0000026785,0.0000026840,0.0000026906,0.0000026982, +0.0000027089,0.0000027207,0.0000027299,0.0000027394,0.0000027529, +0.0000027635,0.0000027643,0.0000027587,0.0000027582,0.0000027675, +0.0000027751,0.0000027797,0.0000027932,0.0000028053,0.0000028023, +0.0000027904,0.0000027798,0.0000027755,0.0000027763,0.0000027809, +0.0000027861,0.0000027893,0.0000027909,0.0000027915,0.0000027909, +0.0000027895,0.0000027882,0.0000027870,0.0000027865,0.0000027868, +0.0000027879,0.0000027890,0.0000027887,0.0000027858,0.0000027814, +0.0000027763,0.0000027707,0.0000027666,0.0000027653,0.0000027665, +0.0000027664,0.0000027650,0.0000027629,0.0000027626,0.0000027637, +0.0000027645,0.0000027642,0.0000027622,0.0000027586,0.0000027545, +0.0000027501,0.0000027450,0.0000027407,0.0000027399,0.0000027431, +0.0000027476,0.0000027494,0.0000027462,0.0000027386,0.0000027300, +0.0000027220,0.0000027140,0.0000027054,0.0000026980,0.0000026924, +0.0000026871,0.0000026802,0.0000026682,0.0000026484,0.0000026241, +0.0000026030,0.0000025916,0.0000025896,0.0000025902,0.0000025883, +0.0000025815,0.0000025712,0.0000025601,0.0000025516,0.0000025465, +0.0000025425,0.0000025376,0.0000025312,0.0000025249,0.0000025199, +0.0000025147,0.0000025095,0.0000025074,0.0000025081,0.0000025108, +0.0000025151,0.0000025218,0.0000025307,0.0000025373,0.0000025394, +0.0000025383,0.0000025337,0.0000025271,0.0000025187,0.0000025138, +0.0000025133,0.0000025218,0.0000025395,0.0000025655,0.0000025977, +0.0000026295,0.0000026486,0.0000026542,0.0000026537,0.0000026494, +0.0000026427,0.0000026400,0.0000026411,0.0000026410,0.0000026387, +0.0000026367,0.0000026334,0.0000026264,0.0000026221,0.0000026240, +0.0000026302,0.0000026358,0.0000026395,0.0000026409,0.0000026424, +0.0000026462,0.0000026486,0.0000026483,0.0000026477,0.0000026480, +0.0000026488,0.0000026503,0.0000026526,0.0000026552,0.0000026565, +0.0000026528,0.0000026449,0.0000026377,0.0000026353,0.0000026387, +0.0000026433,0.0000026451,0.0000026460,0.0000026487,0.0000026545, +0.0000026631,0.0000026687,0.0000026682,0.0000026611,0.0000026559, +0.0000026557,0.0000026556,0.0000026567,0.0000026528,0.0000026086, +0.0000025598,0.0000025441,0.0000025468,0.0000025514,0.0000025587, +0.0000025704,0.0000025822,0.0000025959,0.0000026206,0.0000026474, +0.0000026626,0.0000026680,0.0000026698,0.0000026683,0.0000026617, +0.0000026588,0.0000026788,0.0000027136,0.0000027318,0.0000027294, +0.0000027217,0.0000027222,0.0000027343,0.0000027536,0.0000027725, +0.0000027838,0.0000027877,0.0000027883,0.0000027879,0.0000027844, +0.0000027783,0.0000027756,0.0000027763,0.0000027790,0.0000027799, +0.0000027774,0.0000027742,0.0000027723,0.0000027715,0.0000027694, +0.0000027649,0.0000027599,0.0000027577,0.0000027587,0.0000027669, +0.0000027810,0.0000027938,0.0000028000,0.0000028000,0.0000027966, +0.0000027930,0.0000027912,0.0000027905,0.0000027897,0.0000027880, +0.0000027844,0.0000027799,0.0000027742,0.0000027686,0.0000027642, +0.0000027602,0.0000027556,0.0000027508,0.0000027482,0.0000027485, +0.0000027487,0.0000027390,0.0000027147,0.0000026942,0.0000026937, +0.0000027103,0.0000027272,0.0000027317,0.0000027315,0.0000027323, +0.0000027336,0.0000027348,0.0000027359,0.0000027347,0.0000027307, +0.0000027253,0.0000027191,0.0000027129,0.0000027077,0.0000027042, +0.0000027014,0.0000026973,0.0000026908,0.0000026839,0.0000026799, +0.0000026799,0.0000026794,0.0000026755,0.0000026648,0.0000026486, +0.0000026316,0.0000026193,0.0000026151,0.0000026170,0.0000026213, +0.0000026225,0.0000026171,0.0000026067,0.0000025867,0.0000025602, +0.0000025425,0.0000025387,0.0000025389,0.0000025376,0.0000025335, +0.0000025263,0.0000025229,0.0000025244,0.0000025239,0.0000025203, +0.0000025176,0.0000025176,0.0000025191,0.0000025209,0.0000025225, +0.0000025239,0.0000025255,0.0000025277,0.0000025302,0.0000025329, +0.0000025355,0.0000025354,0.0000025295,0.0000025179,0.0000025073, +0.0000025045,0.0000025063,0.0000025104,0.0000025118,0.0000025107, +0.0000025088,0.0000025092,0.0000025163,0.0000025262,0.0000025280, +0.0000025214,0.0000025139,0.0000025140,0.0000025180,0.0000025157, +0.0000025079,0.0000025051,0.0000025121,0.0000025237,0.0000025321, +0.0000025358,0.0000025362,0.0000025347,0.0000025316,0.0000025268, +0.0000025196,0.0000025106,0.0000025037,0.0000025025,0.0000025058, +0.0000025099,0.0000025120,0.0000025123,0.0000025133,0.0000025165, +0.0000025202,0.0000025222,0.0000025223,0.0000025257,0.0000025400, +0.0000025629,0.0000025845,0.0000026013,0.0000026123,0.0000026179, +0.0000026232,0.0000026313,0.0000026400,0.0000026462,0.0000026496, +0.0000026500,0.0000026475,0.0000026423,0.0000026349,0.0000026279, +0.0000026269,0.0000026359,0.0000026524,0.0000026686,0.0000026824, +0.0000026980,0.0000027157,0.0000027292,0.0000027334,0.0000027276, +0.0000027150,0.0000027016,0.0000026933,0.0000026911,0.0000026888, +0.0000026791,0.0000026667,0.0000026644,0.0000026777,0.0000026967, +0.0000027102,0.0000027189,0.0000027283,0.0000027354,0.0000027383, +0.0000027435,0.0000027507,0.0000027543,0.0000027578,0.0000027650, +0.0000027746,0.0000027849,0.0000027945,0.0000028007,0.0000028033, +0.0000028034,0.0000028048,0.0000028108,0.0000028177,0.0000028189, +0.0000028130,0.0000028038,0.0000027941,0.0000027847,0.0000027770, +0.0000027709,0.0000027675,0.0000027664,0.0000027658,0.0000027630, +0.0000027590,0.0000027557,0.0000027547,0.0000027560,0.0000027574, +0.0000027551,0.0000027514,0.0000027504,0.0000027564,0.0000027655, +0.0000027724,0.0000027755,0.0000027772,0.0000027791,0.0000027801, +0.0000027813,0.0000027822,0.0000027826,0.0000027812,0.0000027778, +0.0000027728,0.0000027672,0.0000027622,0.0000027576,0.0000027503, +0.0000027402,0.0000027301,0.0000027221,0.0000027153,0.0000027097, +0.0000027035,0.0000027003,0.0000027011,0.0000027009,0.0000026982, +0.0000026997,0.0000027049,0.0000027044,0.0000026951,0.0000026838, +0.0000026755,0.0000026680,0.0000026590,0.0000026496,0.0000026398, +0.0000026270,0.0000026130,0.0000026044,0.0000026022,0.0000025991, +0.0000025928,0.0000025884,0.0000025867,0.0000025831,0.0000025753, +0.0000025671,0.0000025650,0.0000025700,0.0000025794,0.0000025826, +0.0000025784,0.0000025686,0.0000025542,0.0000025315,0.0000025071, +0.0000024952,0.0000024945,0.0000024948,0.0000024942,0.0000024936, +0.0000024941,0.0000024943,0.0000024931,0.0000024911,0.0000024881, +0.0000024848,0.0000024827,0.0000024816,0.0000024789,0.0000024712, +0.0000024596,0.0000024478,0.0000024370,0.0000024260,0.0000024159, +0.0000024128,0.0000024183,0.0000024249,0.0000024246,0.0000024159, +0.0000024101,0.0000024306,0.0000024805,0.0000025206,0.0000025353, +0.0000025640,0.0000026250,0.0000026774,0.0000027102,0.0000027441, +0.0000027622,0.0000027567,0.0000027467,0.0000027430,0.0000027428, +0.0000027428,0.0000027418,0.0000027370,0.0000027272,0.0000027191, +0.0000027174,0.0000027212,0.0000027310,0.0000027413,0.0000027488, +0.0000027558,0.0000027590,0.0000027547,0.0000027423,0.0000027320, +0.0000027253,0.0000027127,0.0000027067,0.0000027079,0.0000027079, +0.0000027049,0.0000027026,0.0000027031,0.0000027046,0.0000027087, +0.0000027119,0.0000027129,0.0000027128,0.0000027114,0.0000027043, +0.0000026899,0.0000026755,0.0000026697,0.0000026666,0.0000026613, +0.0000026544,0.0000026504,0.0000026489,0.0000026480,0.0000026475, +0.0000026514,0.0000026581,0.0000026662,0.0000026725,0.0000026767, +0.0000026795,0.0000026810,0.0000026797,0.0000026769,0.0000026762, +0.0000026764,0.0000026772,0.0000026785,0.0000026792,0.0000026789, +0.0000026770,0.0000026740,0.0000026709,0.0000026682,0.0000026662, +0.0000026649,0.0000026637,0.0000026615,0.0000026579,0.0000026529, +0.0000026482,0.0000026417,0.0000026296,0.0000026090,0.0000025891, +0.0000025803,0.0000025753,0.0000025719,0.0000025688,0.0000025652, +0.0000025607,0.0000025556,0.0000025484,0.0000025383,0.0000025259, +0.0000025117,0.0000024954,0.0000024790,0.0000024653,0.0000024557, +0.0000024479,0.0000024357,0.0000024200,0.0000024101,0.0000024091, +0.0000024126,0.0000024152,0.0000024161,0.0000024178,0.0000024196, +0.0000024203,0.0000024215,0.0000024227,0.0000024222,0.0000024209, +0.0000024207,0.0000024211,0.0000024210,0.0000024211,0.0000024198, +0.0000024161,0.0000024140,0.0000024153,0.0000024159,0.0000024140, +0.0000024094,0.0000024032,0.0000023970,0.0000023918,0.0000023879, +0.0000023856,0.0000023858,0.0000023896,0.0000023936,0.0000023945, +0.0000023932,0.0000023911,0.0000023893,0.0000023875,0.0000023866, +0.0000023860,0.0000023833,0.0000023787,0.0000023749,0.0000023731, +0.0000023736,0.0000023763,0.0000023795,0.0000023816,0.0000023820, +0.0000023782,0.0000023716,0.0000023677,0.0000023667,0.0000023647, +0.0000023603,0.0000023521,0.0000023404,0.0000023403,0.0000023593, +0.0000023760,0.0000023838,0.0000023995,0.0000024200,0.0000024344, +0.0000024362,0.0000024885,0.0000025593,0.0000025834,0.0000025903, +0.0000025909,0.0000025699,0.0000025620,0.0000025684,0.0000025699, +0.0000025657,0.0000025355,0.0000024959,0.0000024927,0.0000025113, +0.0000025507,0.0000026087,0.0000026399,0.0000026651,0.0000026870, +0.0000026998,0.0000027096,0.0000027160,0.0000027184,0.0000027202, +0.0000027220,0.0000027228,0.0000027226,0.0000027218,0.0000027209, +0.0000027205,0.0000027200,0.0000027186,0.0000027160,0.0000027128, +0.0000027088,0.0000027048,0.0000027012,0.0000026990,0.0000026983, +0.0000026990,0.0000027005,0.0000027030,0.0000027073,0.0000027126, +0.0000027236,0.0000027284,0.0000027334,0.0000027356,0.0000027343, +0.0000027294,0.0000027240,0.0000027182,0.0000027097,0.0000026986, +0.0000026876,0.0000026800,0.0000026768,0.0000026747,0.0000026738, +0.0000026735,0.0000026720,0.0000026668,0.0000026599,0.0000026542, +0.0000026513,0.0000026513,0.0000026523,0.0000026524,0.0000026503, +0.0000026480,0.0000026471,0.0000026478,0.0000026485,0.0000026475, +0.0000026469,0.0000026494,0.0000026558,0.0000026627,0.0000026676, +0.0000026709,0.0000026734,0.0000026743,0.0000026719,0.0000026645, +0.0000026553,0.0000026457,0.0000026358,0.0000026246,0.0000026109, +0.0000025935,0.0000025771,0.0000025657,0.0000025589,0.0000025559, +0.0000025569,0.0000025613,0.0000025670,0.0000025704,0.0000025713, +0.0000025696,0.0000025647,0.0000025611,0.0000025610,0.0000025606, +0.0000025575,0.0000025503,0.0000025447,0.0000025419,0.0000025416, +0.0000025349,0.0000025142,0.0000024884,0.0000024721,0.0000024622, +0.0000024479,0.0000024336,0.0000024300,0.0000024352,0.0000024416, +0.0000024406,0.0000024326,0.0000024299,0.0000024412,0.0000024526, +0.0000024596,0.0000024660,0.0000024718,0.0000024780,0.0000024832, +0.0000024874,0.0000024901,0.0000024928,0.0000024965,0.0000024977, +0.0000024964,0.0000024958,0.0000024970,0.0000024976,0.0000024973, +0.0000025020,0.0000025143,0.0000025311,0.0000025444,0.0000025514, +0.0000025595,0.0000025721,0.0000025815,0.0000025826,0.0000025749, +0.0000025624,0.0000025559,0.0000025473,0.0000025436,0.0000025531, +0.0000025670,0.0000025749,0.0000025798,0.0000025814,0.0000025790, +0.0000025729,0.0000025624,0.0000025511,0.0000025406,0.0000025262, +0.0000025146,0.0000025028,0.0000024925,0.0000024915,0.0000024967, +0.0000025056,0.0000025148,0.0000025212,0.0000025243,0.0000025265, +0.0000025289,0.0000025313,0.0000025344,0.0000025400,0.0000025479, +0.0000025550,0.0000025593,0.0000025593,0.0000025569,0.0000025532, +0.0000025488,0.0000025452,0.0000025424,0.0000025403,0.0000025386, +0.0000025367,0.0000025338,0.0000025306,0.0000025271,0.0000025233, +0.0000025210,0.0000025214,0.0000025264,0.0000025337,0.0000025374, +0.0000025362,0.0000025258,0.0000025082,0.0000024878,0.0000024713, +0.0000024624,0.0000024585,0.0000024575,0.0000024572,0.0000024701, +0.0000024964,0.0000025269,0.0000025524,0.0000025698,0.0000025794, +0.0000025842,0.0000025863,0.0000025876,0.0000025887,0.0000025895, +0.0000025896,0.0000025889,0.0000025871,0.0000025842,0.0000025791, +0.0000025718,0.0000025628,0.0000025525,0.0000025416,0.0000025308, +0.0000025205,0.0000025111,0.0000025028,0.0000024967,0.0000024933, +0.0000024911,0.0000024871,0.0000024826,0.0000024851,0.0000025017, +0.0000025305,0.0000025577,0.0000025743,0.0000025851,0.0000025932, +0.0000025975,0.0000025995,0.0000026004,0.0000025988,0.0000025949, +0.0000025934,0.0000025949,0.0000025984,0.0000026032,0.0000026081, +0.0000026117,0.0000026130,0.0000026125,0.0000026106,0.0000026092, +0.0000026099,0.0000026126,0.0000026192,0.0000026283,0.0000026360, +0.0000026406,0.0000026427,0.0000026436,0.0000026427,0.0000026398, +0.0000026344,0.0000026274,0.0000026219,0.0000026187,0.0000026166, +0.0000026171,0.0000026208,0.0000026273,0.0000026377,0.0000026513, +0.0000026649,0.0000026785,0.0000026939,0.0000027074,0.0000027132, +0.0000027109,0.0000027028,0.0000026921,0.0000026822,0.0000026749, +0.0000026690,0.0000026623,0.0000026538,0.0000026456,0.0000026379, +0.0000026281,0.0000026166,0.0000026061,0.0000025989,0.0000025952, +0.0000025933,0.0000025923,0.0000025939,0.0000026032,0.0000026142, +0.0000026218,0.0000026251,0.0000026253,0.0000026223,0.0000026166, +0.0000026098,0.0000026030,0.0000025964,0.0000025909,0.0000025865, +0.0000025809,0.0000025722,0.0000025632,0.0000025604,0.0000025642, +0.0000025707,0.0000025781,0.0000025864,0.0000025929,0.0000025936, +0.0000025887,0.0000025809,0.0000025741,0.0000025696,0.0000025666, +0.0000025638,0.0000025593,0.0000025533,0.0000025473,0.0000025416, +0.0000025324,0.0000025200,0.0000025116,0.0000025102,0.0000025181, +0.0000025275,0.0000025334,0.0000025358,0.0000025352,0.0000025358, +0.0000025407,0.0000025491,0.0000025556,0.0000025571,0.0000025567, +0.0000025579,0.0000025633,0.0000025713,0.0000025800,0.0000025893, +0.0000025979,0.0000026053,0.0000026129,0.0000026213,0.0000026294, +0.0000026346,0.0000026351,0.0000026305,0.0000026216,0.0000026128, +0.0000026094,0.0000026120,0.0000026178,0.0000026220,0.0000026235, +0.0000026239,0.0000026245,0.0000026282,0.0000026379,0.0000026518, +0.0000026642,0.0000026721,0.0000026770,0.0000026813,0.0000026851, +0.0000026880,0.0000026890,0.0000026871,0.0000026829,0.0000026787, +0.0000026772,0.0000026787,0.0000026815,0.0000026824,0.0000026788, +0.0000026714,0.0000026673,0.0000026686,0.0000026754,0.0000026842, +0.0000026946,0.0000027061,0.0000027182,0.0000027291,0.0000027388, +0.0000027501,0.0000027620,0.0000027671,0.0000027640,0.0000027562, +0.0000027569,0.0000027682,0.0000027752,0.0000027787,0.0000027908, +0.0000028006,0.0000027962,0.0000027839,0.0000027734,0.0000027685, +0.0000027686,0.0000027726,0.0000027771,0.0000027800,0.0000027813, +0.0000027812,0.0000027807,0.0000027807,0.0000027810,0.0000027816, +0.0000027832,0.0000027847,0.0000027855,0.0000027840,0.0000027785, +0.0000027698,0.0000027610,0.0000027528,0.0000027461,0.0000027437, +0.0000027464,0.0000027512,0.0000027547,0.0000027573,0.0000027598, +0.0000027627,0.0000027652,0.0000027668,0.0000027668,0.0000027668, +0.0000027653,0.0000027621,0.0000027567,0.0000027498,0.0000027449, +0.0000027448,0.0000027483,0.0000027512,0.0000027508,0.0000027464, +0.0000027400,0.0000027338,0.0000027272,0.0000027180,0.0000027077, +0.0000026998,0.0000026942,0.0000026893,0.0000026856,0.0000026808, +0.0000026697,0.0000026495,0.0000026235,0.0000026007,0.0000025891, +0.0000025850,0.0000025823,0.0000025771,0.0000025682,0.0000025581, +0.0000025511,0.0000025495,0.0000025484,0.0000025449,0.0000025383, +0.0000025307,0.0000025235,0.0000025166,0.0000025116,0.0000025099, +0.0000025105,0.0000025122,0.0000025150,0.0000025199,0.0000025272, +0.0000025319,0.0000025336,0.0000025326,0.0000025299,0.0000025249, +0.0000025196,0.0000025149,0.0000025095,0.0000025064,0.0000025135, +0.0000025351,0.0000025686,0.0000026079,0.0000026420,0.0000026556, +0.0000026579,0.0000026544,0.0000026462,0.0000026411,0.0000026408, +0.0000026404,0.0000026387,0.0000026370,0.0000026332,0.0000026262, +0.0000026218,0.0000026225,0.0000026283,0.0000026342,0.0000026369, +0.0000026386,0.0000026423,0.0000026462,0.0000026469,0.0000026453, +0.0000026440,0.0000026428,0.0000026422,0.0000026433,0.0000026463, +0.0000026494,0.0000026505,0.0000026469,0.0000026403,0.0000026338, +0.0000026327,0.0000026371,0.0000026416,0.0000026430,0.0000026446, +0.0000026488,0.0000026549,0.0000026621,0.0000026670,0.0000026670, +0.0000026598,0.0000026542,0.0000026544,0.0000026545,0.0000026549, +0.0000026531,0.0000026153,0.0000025606,0.0000025371,0.0000025389, +0.0000025473,0.0000025571,0.0000025706,0.0000025835,0.0000025922, +0.0000026065,0.0000026306,0.0000026516,0.0000026607,0.0000026631, +0.0000026646,0.0000026624,0.0000026561,0.0000026633,0.0000026953, +0.0000027231,0.0000027275,0.0000027203,0.0000027169,0.0000027216, +0.0000027355,0.0000027532,0.0000027686,0.0000027777,0.0000027827, +0.0000027855,0.0000027847,0.0000027801,0.0000027755,0.0000027729, +0.0000027738,0.0000027767,0.0000027777,0.0000027762,0.0000027746, +0.0000027743,0.0000027741,0.0000027714,0.0000027657,0.0000027598, +0.0000027570,0.0000027568,0.0000027617,0.0000027732,0.0000027869, +0.0000027956,0.0000027966,0.0000027930,0.0000027892,0.0000027867, +0.0000027858,0.0000027855,0.0000027841,0.0000027813,0.0000027774, +0.0000027728,0.0000027672,0.0000027604,0.0000027528,0.0000027463, +0.0000027436,0.0000027445,0.0000027436,0.0000027306,0.0000027069, +0.0000026946,0.0000027008,0.0000027221,0.0000027367,0.0000027383, +0.0000027367,0.0000027361,0.0000027351,0.0000027339,0.0000027329, +0.0000027303,0.0000027257,0.0000027196,0.0000027122,0.0000027036, +0.0000026955,0.0000026896,0.0000026861,0.0000026824,0.0000026761, +0.0000026679,0.0000026617,0.0000026608,0.0000026637,0.0000026646, +0.0000026608,0.0000026494,0.0000026340,0.0000026202,0.0000026131, +0.0000026130,0.0000026158,0.0000026163,0.0000026119,0.0000026026, +0.0000025850,0.0000025624,0.0000025473,0.0000025435,0.0000025425, +0.0000025389,0.0000025327,0.0000025253,0.0000025235,0.0000025253, +0.0000025248,0.0000025229,0.0000025232,0.0000025242,0.0000025247, +0.0000025242,0.0000025243,0.0000025245,0.0000025255,0.0000025275, +0.0000025295,0.0000025320,0.0000025347,0.0000025382,0.0000025413, +0.0000025398,0.0000025288,0.0000025134,0.0000025040,0.0000025033, +0.0000025065,0.0000025083,0.0000025084,0.0000025074,0.0000025074, +0.0000025122,0.0000025216,0.0000025277,0.0000025239,0.0000025134, +0.0000025090,0.0000025136,0.0000025178,0.0000025155,0.0000025112, +0.0000025107,0.0000025149,0.0000025200,0.0000025230,0.0000025227, +0.0000025196,0.0000025152,0.0000025092,0.0000025011,0.0000024936, +0.0000024911,0.0000024940,0.0000025005,0.0000025055,0.0000025072, +0.0000025077,0.0000025097,0.0000025137,0.0000025183,0.0000025213, +0.0000025218,0.0000025235,0.0000025341,0.0000025546,0.0000025763, +0.0000025930,0.0000026042,0.0000026099,0.0000026146,0.0000026225, +0.0000026311,0.0000026373,0.0000026410,0.0000026423,0.0000026411, +0.0000026375,0.0000026320,0.0000026254,0.0000026220,0.0000026259, +0.0000026393,0.0000026560,0.0000026698,0.0000026822,0.0000026969, +0.0000027113,0.0000027196,0.0000027192,0.0000027112,0.0000026987, +0.0000026881,0.0000026836,0.0000026817,0.0000026729,0.0000026579, +0.0000026522,0.0000026644,0.0000026864,0.0000026996,0.0000027034, +0.0000027120,0.0000027255,0.0000027348,0.0000027420,0.0000027515, +0.0000027570,0.0000027595,0.0000027642,0.0000027704,0.0000027783, +0.0000027869,0.0000027929,0.0000027964,0.0000027985,0.0000028018, +0.0000028092,0.0000028179,0.0000028201,0.0000028143,0.0000028026, +0.0000027901,0.0000027802,0.0000027731,0.0000027668,0.0000027627, +0.0000027616,0.0000027620,0.0000027612,0.0000027586,0.0000027547, +0.0000027510,0.0000027496,0.0000027521,0.0000027565,0.0000027590, +0.0000027570,0.0000027561,0.0000027594,0.0000027654,0.0000027705, +0.0000027736,0.0000027761,0.0000027788,0.0000027815,0.0000027832, +0.0000027840,0.0000027829,0.0000027791,0.0000027741,0.0000027697, +0.0000027652,0.0000027606,0.0000027556,0.0000027473,0.0000027365, +0.0000027275,0.0000027209,0.0000027151,0.0000027088,0.0000027057, +0.0000027064,0.0000027055,0.0000027020,0.0000027034,0.0000027085, +0.0000027061,0.0000026954,0.0000026855,0.0000026802,0.0000026752, +0.0000026676,0.0000026591,0.0000026504,0.0000026387,0.0000026234, +0.0000026109,0.0000026066,0.0000026047,0.0000025986,0.0000025915, +0.0000025881,0.0000025858,0.0000025801,0.0000025710,0.0000025650, +0.0000025664,0.0000025750,0.0000025809,0.0000025788,0.0000025698, +0.0000025562,0.0000025357,0.0000025113,0.0000024960,0.0000024934, +0.0000024943,0.0000024953,0.0000024964,0.0000024974,0.0000024980, +0.0000024976,0.0000024956,0.0000024929,0.0000024903,0.0000024877, +0.0000024856,0.0000024833,0.0000024775,0.0000024661,0.0000024526, +0.0000024407,0.0000024286,0.0000024165,0.0000024127,0.0000024170, +0.0000024261,0.0000024291,0.0000024244,0.0000024161,0.0000024205, +0.0000024551,0.0000025031,0.0000025287,0.0000025408,0.0000025814, +0.0000026442,0.0000026862,0.0000027154,0.0000027472,0.0000027583, +0.0000027525,0.0000027440,0.0000027420,0.0000027421,0.0000027391, +0.0000027311,0.0000027185,0.0000027077,0.0000027057,0.0000027091, +0.0000027186,0.0000027320,0.0000027424,0.0000027500,0.0000027564, +0.0000027560,0.0000027456,0.0000027340,0.0000027277,0.0000027155, +0.0000027086,0.0000027100,0.0000027090,0.0000027056,0.0000027032, +0.0000027046,0.0000027067,0.0000027106,0.0000027144,0.0000027174, +0.0000027185,0.0000027151,0.0000027046,0.0000026858,0.0000026696, +0.0000026649,0.0000026630,0.0000026577,0.0000026510,0.0000026467, +0.0000026457,0.0000026453,0.0000026455,0.0000026480,0.0000026527, +0.0000026589,0.0000026644,0.0000026682,0.0000026703,0.0000026721, +0.0000026740,0.0000026751,0.0000026758,0.0000026761,0.0000026757, +0.0000026752,0.0000026745,0.0000026736,0.0000026718,0.0000026687, +0.0000026653,0.0000026625,0.0000026607,0.0000026595,0.0000026577, +0.0000026548,0.0000026511,0.0000026469,0.0000026419,0.0000026338, +0.0000026187,0.0000025990,0.0000025863,0.0000025822,0.0000025804, +0.0000025795,0.0000025802,0.0000025809,0.0000025808,0.0000025798, +0.0000025767,0.0000025695,0.0000025577,0.0000025417,0.0000025232, +0.0000025044,0.0000024850,0.0000024669,0.0000024544,0.0000024445, +0.0000024299,0.0000024136,0.0000024049,0.0000024059,0.0000024110, +0.0000024142,0.0000024166,0.0000024201,0.0000024237,0.0000024259, +0.0000024279,0.0000024293,0.0000024285,0.0000024256,0.0000024225, +0.0000024205,0.0000024190,0.0000024186,0.0000024188,0.0000024155, +0.0000024099,0.0000024077,0.0000024081,0.0000024074,0.0000024048, +0.0000024013,0.0000023968,0.0000023917,0.0000023874,0.0000023856, +0.0000023867,0.0000023906,0.0000023934,0.0000023933,0.0000023922, +0.0000023916,0.0000023914,0.0000023904,0.0000023883,0.0000023858, +0.0000023826,0.0000023788,0.0000023750,0.0000023725,0.0000023725, +0.0000023750,0.0000023779,0.0000023794,0.0000023794,0.0000023760, +0.0000023686,0.0000023624,0.0000023593,0.0000023566,0.0000023521, +0.0000023441,0.0000023343,0.0000023366,0.0000023562,0.0000023736, +0.0000023825,0.0000023983,0.0000024181,0.0000024341,0.0000024364, +0.0000024821,0.0000025542,0.0000025830,0.0000025895,0.0000025900, +0.0000025702,0.0000025581,0.0000025615,0.0000025642,0.0000025630, +0.0000025461,0.0000025061,0.0000024822,0.0000024933,0.0000025153, +0.0000025689,0.0000026198,0.0000026450,0.0000026694,0.0000026878, +0.0000026975,0.0000027052,0.0000027111,0.0000027153,0.0000027193, +0.0000027218,0.0000027223,0.0000027216,0.0000027211,0.0000027211, +0.0000027209,0.0000027193,0.0000027160,0.0000027122,0.0000027079, +0.0000027036,0.0000027004,0.0000026996,0.0000027014,0.0000027042, +0.0000027074,0.0000027110,0.0000027153,0.0000027195,0.0000027259, +0.0000027296,0.0000027346,0.0000027364,0.0000027340,0.0000027287, +0.0000027222,0.0000027144,0.0000027032,0.0000026890,0.0000026768, +0.0000026707,0.0000026705,0.0000026719,0.0000026720,0.0000026688, +0.0000026627,0.0000026546,0.0000026471,0.0000026413,0.0000026377, +0.0000026368,0.0000026373,0.0000026388,0.0000026392,0.0000026391, +0.0000026384,0.0000026386,0.0000026398,0.0000026407,0.0000026403, +0.0000026401,0.0000026429,0.0000026486,0.0000026550,0.0000026603, +0.0000026646,0.0000026676,0.0000026684,0.0000026649,0.0000026570, +0.0000026476,0.0000026381,0.0000026284,0.0000026187,0.0000026083, +0.0000025975,0.0000025877,0.0000025797,0.0000025752,0.0000025748, +0.0000025763,0.0000025789,0.0000025805,0.0000025797,0.0000025752, +0.0000025685,0.0000025639,0.0000025629,0.0000025610,0.0000025547, +0.0000025466,0.0000025411,0.0000025386,0.0000025333,0.0000025180, +0.0000024950,0.0000024756,0.0000024652,0.0000024569,0.0000024444, +0.0000024320,0.0000024268,0.0000024299,0.0000024378,0.0000024402, +0.0000024357,0.0000024295,0.0000024345,0.0000024475,0.0000024568, +0.0000024643,0.0000024702,0.0000024768,0.0000024832,0.0000024881, +0.0000024928,0.0000024946,0.0000024960,0.0000024990,0.0000025007, +0.0000025001,0.0000024994,0.0000024994,0.0000024986,0.0000024997, +0.0000025085,0.0000025215,0.0000025370,0.0000025479,0.0000025506, +0.0000025554,0.0000025693,0.0000025804,0.0000025815,0.0000025713, +0.0000025605,0.0000025531,0.0000025446,0.0000025441,0.0000025569, +0.0000025691,0.0000025761,0.0000025808,0.0000025818,0.0000025793, +0.0000025735,0.0000025629,0.0000025505,0.0000025392,0.0000025254, +0.0000025152,0.0000025027,0.0000024917,0.0000024909,0.0000024960, +0.0000025048,0.0000025142,0.0000025204,0.0000025230,0.0000025241, +0.0000025249,0.0000025257,0.0000025272,0.0000025308,0.0000025370, +0.0000025445,0.0000025515,0.0000025561,0.0000025577,0.0000025577, +0.0000025549,0.0000025509,0.0000025457,0.0000025406,0.0000025375, +0.0000025355,0.0000025335,0.0000025312,0.0000025284,0.0000025250, +0.0000025213,0.0000025195,0.0000025200,0.0000025244,0.0000025320, +0.0000025374,0.0000025363,0.0000025261,0.0000025076,0.0000024862, +0.0000024697,0.0000024617,0.0000024587,0.0000024549,0.0000024557, +0.0000024641,0.0000024821,0.0000025055,0.0000025274,0.0000025448, +0.0000025576,0.0000025661,0.0000025708,0.0000025728,0.0000025729, +0.0000025714,0.0000025677,0.0000025621,0.0000025541,0.0000025432, +0.0000025308,0.0000025186,0.0000025076,0.0000024987,0.0000024933, +0.0000024912,0.0000024913,0.0000024925,0.0000024933,0.0000024961, +0.0000024966,0.0000024928,0.0000024821,0.0000024766,0.0000024776, +0.0000024962,0.0000025301,0.0000025602,0.0000025777,0.0000025894, +0.0000025982,0.0000026030,0.0000026032,0.0000026013,0.0000025983, +0.0000025958,0.0000025947,0.0000025941,0.0000025955,0.0000025998, +0.0000026061,0.0000026115,0.0000026137,0.0000026126,0.0000026099, +0.0000026073,0.0000026060,0.0000026081,0.0000026134,0.0000026204, +0.0000026283,0.0000026362,0.0000026412,0.0000026423,0.0000026403, +0.0000026358,0.0000026300,0.0000026244,0.0000026204,0.0000026174, +0.0000026151,0.0000026152,0.0000026180,0.0000026234,0.0000026332, +0.0000026466,0.0000026611,0.0000026772,0.0000026929,0.0000027030, +0.0000027049,0.0000027002,0.0000026912,0.0000026815,0.0000026735, +0.0000026658,0.0000026560,0.0000026435,0.0000026305,0.0000026190, +0.0000026098,0.0000026030,0.0000025983,0.0000025952,0.0000025932, +0.0000025920,0.0000025930,0.0000025975,0.0000026064,0.0000026156, +0.0000026215,0.0000026238,0.0000026233,0.0000026183,0.0000026104, +0.0000026023,0.0000025955,0.0000025894,0.0000025835,0.0000025785, +0.0000025733,0.0000025656,0.0000025567,0.0000025537,0.0000025592, +0.0000025693,0.0000025789,0.0000025874,0.0000025939,0.0000025948, +0.0000025893,0.0000025805,0.0000025719,0.0000025659,0.0000025632, +0.0000025623,0.0000025612,0.0000025578,0.0000025522,0.0000025446, +0.0000025345,0.0000025230,0.0000025131,0.0000025086,0.0000025117, +0.0000025219,0.0000025317,0.0000025369,0.0000025372,0.0000025363, +0.0000025375,0.0000025430,0.0000025506,0.0000025540,0.0000025529, +0.0000025497,0.0000025489,0.0000025528,0.0000025596,0.0000025691, +0.0000025795,0.0000025876,0.0000025938,0.0000025995,0.0000026049, +0.0000026082,0.0000026070,0.0000026011,0.0000025912,0.0000025792, +0.0000025691,0.0000025662,0.0000025704,0.0000025780,0.0000025847, +0.0000025903,0.0000025951,0.0000026001,0.0000026079,0.0000026196, +0.0000026325,0.0000026423,0.0000026475,0.0000026509,0.0000026552, +0.0000026610,0.0000026670,0.0000026700,0.0000026699,0.0000026682, +0.0000026679,0.0000026702,0.0000026736,0.0000026743,0.0000026704, +0.0000026630,0.0000026573,0.0000026588,0.0000026668,0.0000026779, +0.0000026910,0.0000027052,0.0000027175,0.0000027274,0.0000027377, +0.0000027488,0.0000027594,0.0000027667,0.0000027675,0.0000027606, +0.0000027530,0.0000027570,0.0000027693,0.0000027750,0.0000027764, +0.0000027849,0.0000027925,0.0000027890,0.0000027785,0.0000027694, +0.0000027642,0.0000027636,0.0000027656,0.0000027683,0.0000027705, +0.0000027715,0.0000027723,0.0000027741,0.0000027767,0.0000027789, +0.0000027817,0.0000027839,0.0000027853,0.0000027838,0.0000027775, +0.0000027660,0.0000027515,0.0000027368,0.0000027235,0.0000027142, +0.0000027114,0.0000027149,0.0000027216,0.0000027297,0.0000027384, +0.0000027467,0.0000027542,0.0000027600,0.0000027636,0.0000027657, +0.0000027666,0.0000027655,0.0000027620,0.0000027562,0.0000027487, +0.0000027450,0.0000027460,0.0000027491,0.0000027501,0.0000027485, +0.0000027438,0.0000027390,0.0000027357,0.0000027307,0.0000027217, +0.0000027119,0.0000027043,0.0000026987,0.0000026927,0.0000026875, +0.0000026840,0.0000026799,0.0000026697,0.0000026489,0.0000026207, +0.0000025961,0.0000025820,0.0000025746,0.0000025708,0.0000025647, +0.0000025558,0.0000025492,0.0000025486,0.0000025499,0.0000025488, +0.0000025450,0.0000025393,0.0000025324,0.0000025242,0.0000025164, +0.0000025129,0.0000025133,0.0000025138,0.0000025148,0.0000025173, +0.0000025213,0.0000025229,0.0000025223,0.0000025204,0.0000025190, +0.0000025181,0.0000025190,0.0000025191,0.0000025144,0.0000025056, +0.0000025003,0.0000025108,0.0000025395,0.0000025814,0.0000026274, +0.0000026554,0.0000026611,0.0000026586,0.0000026500,0.0000026424, +0.0000026400,0.0000026392,0.0000026380,0.0000026365,0.0000026327, +0.0000026264,0.0000026217,0.0000026216,0.0000026272,0.0000026326, +0.0000026343,0.0000026376,0.0000026422,0.0000026442,0.0000026434, +0.0000026412,0.0000026400,0.0000026380,0.0000026363,0.0000026364, +0.0000026391,0.0000026419,0.0000026425,0.0000026397,0.0000026348, +0.0000026299,0.0000026306,0.0000026359,0.0000026404,0.0000026427, +0.0000026451,0.0000026503,0.0000026559,0.0000026616,0.0000026652, +0.0000026638,0.0000026562,0.0000026512,0.0000026520,0.0000026516, +0.0000026505,0.0000026496,0.0000026149,0.0000025599,0.0000025333, +0.0000025342,0.0000025455,0.0000025572,0.0000025699,0.0000025830, +0.0000025918,0.0000025996,0.0000026147,0.0000026362,0.0000026520, +0.0000026569,0.0000026593,0.0000026601,0.0000026549,0.0000026547, +0.0000026791,0.0000027118,0.0000027235,0.0000027196,0.0000027136, +0.0000027137,0.0000027212,0.0000027345,0.0000027486,0.0000027611, +0.0000027721,0.0000027801,0.0000027824,0.0000027810,0.0000027772, +0.0000027730,0.0000027714,0.0000027731,0.0000027756,0.0000027758, +0.0000027746,0.0000027746,0.0000027756,0.0000027756,0.0000027717, +0.0000027644,0.0000027580,0.0000027553,0.0000027549,0.0000027576, +0.0000027666,0.0000027793,0.0000027886,0.0000027908,0.0000027881, +0.0000027845,0.0000027818,0.0000027808,0.0000027807,0.0000027800, +0.0000027778,0.0000027740,0.0000027686,0.0000027605,0.0000027501, +0.0000027420,0.0000027397,0.0000027405,0.0000027371,0.0000027202, +0.0000027003,0.0000026953,0.0000027104,0.0000027330,0.0000027423, +0.0000027413,0.0000027393,0.0000027383,0.0000027361,0.0000027340, +0.0000027322,0.0000027293,0.0000027246,0.0000027178,0.0000027088, +0.0000026981,0.0000026880,0.0000026811,0.0000026775,0.0000026744, +0.0000026685,0.0000026598,0.0000026511,0.0000026461,0.0000026460, +0.0000026495,0.0000026509,0.0000026468,0.0000026360,0.0000026230, +0.0000026139,0.0000026110,0.0000026115,0.0000026104,0.0000026053, +0.0000025972,0.0000025829,0.0000025646,0.0000025525,0.0000025496, +0.0000025467,0.0000025398,0.0000025313,0.0000025240,0.0000025228, +0.0000025255,0.0000025265,0.0000025270,0.0000025281,0.0000025275, +0.0000025256,0.0000025235,0.0000025215,0.0000025201,0.0000025200, +0.0000025220,0.0000025256,0.0000025299,0.0000025334,0.0000025359, +0.0000025390,0.0000025433,0.0000025442,0.0000025360,0.0000025194, +0.0000025064,0.0000025039,0.0000025051,0.0000025058,0.0000025062, +0.0000025062,0.0000025065,0.0000025101,0.0000025185,0.0000025264, +0.0000025255,0.0000025150,0.0000025069,0.0000025080,0.0000025149, +0.0000025187,0.0000025191,0.0000025168,0.0000025162,0.0000025174, +0.0000025177,0.0000025146,0.0000025095,0.0000025040,0.0000024989, +0.0000024930,0.0000024888,0.0000024893,0.0000024943,0.0000025011, +0.0000025051,0.0000025062,0.0000025073,0.0000025097,0.0000025129, +0.0000025169,0.0000025205,0.0000025219,0.0000025229,0.0000025303, +0.0000025476,0.0000025683,0.0000025850,0.0000025959,0.0000026013, +0.0000026058,0.0000026130,0.0000026203,0.0000026263,0.0000026308, +0.0000026334,0.0000026336,0.0000026320,0.0000026289,0.0000026241, +0.0000026198,0.0000026198,0.0000026279,0.0000026433,0.0000026588, +0.0000026699,0.0000026798,0.0000026904,0.0000026991,0.0000027028, +0.0000027008,0.0000026945,0.0000026865,0.0000026797,0.0000026741, +0.0000026647,0.0000026503,0.0000026426,0.0000026511,0.0000026739, +0.0000026896,0.0000026911,0.0000026957,0.0000027126,0.0000027301, +0.0000027409,0.0000027511,0.0000027579,0.0000027600,0.0000027634, +0.0000027677,0.0000027734,0.0000027798,0.0000027846,0.0000027885, +0.0000027926,0.0000027979,0.0000028060,0.0000028150,0.0000028182, +0.0000028124,0.0000028003,0.0000027877,0.0000027783,0.0000027703, +0.0000027634,0.0000027600,0.0000027595,0.0000027606,0.0000027617, +0.0000027617,0.0000027584,0.0000027522,0.0000027470,0.0000027472, +0.0000027548,0.0000027634,0.0000027647,0.0000027611,0.0000027580, +0.0000027586,0.0000027631,0.0000027678,0.0000027714,0.0000027746, +0.0000027783,0.0000027812,0.0000027826,0.0000027820,0.0000027787, +0.0000027743,0.0000027707,0.0000027669,0.0000027621,0.0000027580, +0.0000027526,0.0000027427,0.0000027325,0.0000027262,0.0000027208, +0.0000027142,0.0000027109,0.0000027113,0.0000027098,0.0000027054, +0.0000027060,0.0000027095,0.0000027063,0.0000026957,0.0000026871, +0.0000026835,0.0000026799,0.0000026739,0.0000026664,0.0000026584, +0.0000026482,0.0000026341,0.0000026195,0.0000026115,0.0000026093, +0.0000026045,0.0000025959,0.0000025898,0.0000025877,0.0000025846, +0.0000025768,0.0000025675,0.0000025642,0.0000025688,0.0000025763, +0.0000025778,0.0000025708,0.0000025584,0.0000025406,0.0000025177, +0.0000024987,0.0000024921,0.0000024928,0.0000024948,0.0000024966, +0.0000024980,0.0000024989,0.0000024993,0.0000024989,0.0000024963, +0.0000024931,0.0000024911,0.0000024892,0.0000024873,0.0000024835, +0.0000024738,0.0000024594,0.0000024456,0.0000024328,0.0000024196, +0.0000024117,0.0000024159,0.0000024261,0.0000024323,0.0000024304, +0.0000024227,0.0000024190,0.0000024356,0.0000024774,0.0000025173, +0.0000025323,0.0000025491,0.0000026004,0.0000026595,0.0000026913, +0.0000027185,0.0000027470,0.0000027538,0.0000027488,0.0000027438, +0.0000027420,0.0000027363,0.0000027250,0.0000027108,0.0000026975, +0.0000026932,0.0000026961,0.0000027051,0.0000027198,0.0000027343, +0.0000027437,0.0000027519,0.0000027547,0.0000027486,0.0000027368, +0.0000027303,0.0000027185,0.0000027107,0.0000027123,0.0000027102, +0.0000027064,0.0000027042,0.0000027063,0.0000027089,0.0000027127, +0.0000027171,0.0000027217,0.0000027224,0.0000027183,0.0000027041, +0.0000026829,0.0000026662,0.0000026597,0.0000026578,0.0000026532, +0.0000026467,0.0000026425,0.0000026418,0.0000026430,0.0000026450, +0.0000026471,0.0000026503,0.0000026535,0.0000026565,0.0000026586, +0.0000026595,0.0000026604,0.0000026622,0.0000026652,0.0000026683, +0.0000026706,0.0000026718,0.0000026721,0.0000026712,0.0000026700, +0.0000026678,0.0000026642,0.0000026603,0.0000026565,0.0000026535, +0.0000026512,0.0000026488,0.0000026458,0.0000026426,0.0000026382, +0.0000026326,0.0000026232,0.0000026074,0.0000025925,0.0000025877, +0.0000025865,0.0000025853,0.0000025849,0.0000025864,0.0000025891, +0.0000025915,0.0000025935,0.0000025944,0.0000025924,0.0000025855, +0.0000025733,0.0000025546,0.0000025315,0.0000025088,0.0000024871, +0.0000024666,0.0000024517,0.0000024398,0.0000024234,0.0000024069, +0.0000024004,0.0000024034,0.0000024098,0.0000024147,0.0000024187, +0.0000024230,0.0000024272,0.0000024300,0.0000024318,0.0000024335, +0.0000024340,0.0000024321,0.0000024262,0.0000024200,0.0000024159, +0.0000024141,0.0000024143,0.0000024126,0.0000024061,0.0000024008, +0.0000024002,0.0000024006,0.0000024001,0.0000023977,0.0000023942, +0.0000023905,0.0000023876,0.0000023864,0.0000023872,0.0000023895, +0.0000023908,0.0000023908,0.0000023910,0.0000023918,0.0000023928, +0.0000023923,0.0000023894,0.0000023849,0.0000023805,0.0000023776, +0.0000023758,0.0000023743,0.0000023739,0.0000023743,0.0000023750, +0.0000023752,0.0000023750,0.0000023725,0.0000023652,0.0000023568, +0.0000023519,0.0000023492,0.0000023452,0.0000023384,0.0000023305, +0.0000023344,0.0000023542,0.0000023722,0.0000023822,0.0000023982, +0.0000024170,0.0000024338,0.0000024364,0.0000024730,0.0000025454, +0.0000025824,0.0000025892,0.0000025893,0.0000025716,0.0000025561, +0.0000025546,0.0000025562,0.0000025564,0.0000025495,0.0000025210, +0.0000024857,0.0000024776,0.0000024946,0.0000025270,0.0000025886, +0.0000026293,0.0000026512,0.0000026744,0.0000026886,0.0000026950, +0.0000027006,0.0000027062,0.0000027124,0.0000027184,0.0000027215, +0.0000027217,0.0000027216,0.0000027212,0.0000027205,0.0000027175, +0.0000027127,0.0000027067,0.0000027011,0.0000026968,0.0000026950, +0.0000026971,0.0000027018,0.0000027071,0.0000027125,0.0000027172, +0.0000027212,0.0000027237,0.0000027239,0.0000027268,0.0000027318, +0.0000027333,0.0000027300,0.0000027231,0.0000027146,0.0000027040, +0.0000026898,0.0000026755,0.0000026667,0.0000026647,0.0000026662, +0.0000026661,0.0000026613,0.0000026534,0.0000026453,0.0000026384, +0.0000026327,0.0000026281,0.0000026246,0.0000026223,0.0000026211, +0.0000026216,0.0000026227,0.0000026249,0.0000026263,0.0000026264, +0.0000026265,0.0000026277,0.0000026294,0.0000026299,0.0000026303, +0.0000026325,0.0000026377,0.0000026440,0.0000026499,0.0000026551, +0.0000026588,0.0000026602,0.0000026577,0.0000026516,0.0000026442, +0.0000026360,0.0000026272,0.0000026186,0.0000026109,0.0000026042, +0.0000025978,0.0000025927,0.0000025894,0.0000025873,0.0000025865, +0.0000025859,0.0000025829,0.0000025769,0.0000025698,0.0000025657, +0.0000025634,0.0000025584,0.0000025499,0.0000025423,0.0000025371, +0.0000025307,0.0000025164,0.0000024952,0.0000024761,0.0000024645, +0.0000024576,0.0000024501,0.0000024400,0.0000024309,0.0000024260, +0.0000024264,0.0000024333,0.0000024378,0.0000024366,0.0000024302, +0.0000024299,0.0000024417,0.0000024528,0.0000024619,0.0000024687, +0.0000024746,0.0000024822,0.0000024877,0.0000024931,0.0000024978, +0.0000024982,0.0000024983,0.0000025009,0.0000025030,0.0000025031, +0.0000025025,0.0000025012,0.0000025007,0.0000025059,0.0000025169, +0.0000025289,0.0000025423,0.0000025496,0.0000025500,0.0000025546, +0.0000025701,0.0000025808,0.0000025791,0.0000025671,0.0000025580, +0.0000025490,0.0000025428,0.0000025474,0.0000025609,0.0000025712, +0.0000025776,0.0000025816,0.0000025821,0.0000025796,0.0000025743, +0.0000025633,0.0000025501,0.0000025390,0.0000025262,0.0000025166, +0.0000025033,0.0000024916,0.0000024908,0.0000024959,0.0000025037, +0.0000025129,0.0000025196,0.0000025222,0.0000025230,0.0000025230, +0.0000025228,0.0000025231,0.0000025250,0.0000025286,0.0000025331, +0.0000025389,0.0000025457,0.0000025525,0.0000025572,0.0000025579, +0.0000025565,0.0000025519,0.0000025443,0.0000025379,0.0000025345, +0.0000025327,0.0000025312,0.0000025292,0.0000025260,0.0000025220, +0.0000025190,0.0000025175,0.0000025177,0.0000025223,0.0000025312, +0.0000025373,0.0000025363,0.0000025258,0.0000025058,0.0000024840, +0.0000024688,0.0000024620,0.0000024589,0.0000024567,0.0000024565, +0.0000024584,0.0000024667,0.0000024788,0.0000024924,0.0000025057, +0.0000025164,0.0000025230,0.0000025259,0.0000025258,0.0000025235, +0.0000025190,0.0000025130,0.0000025056,0.0000024972,0.0000024897, +0.0000024847,0.0000024827,0.0000024831,0.0000024864,0.0000024913, +0.0000024969,0.0000025014,0.0000025055,0.0000025096,0.0000025128, +0.0000025114,0.0000025024,0.0000024896,0.0000024777,0.0000024786, +0.0000025007,0.0000025374,0.0000025669,0.0000025838,0.0000025961, +0.0000026041,0.0000026058,0.0000026039,0.0000026016,0.0000025993, +0.0000025967,0.0000025936,0.0000025931,0.0000025945,0.0000025998, +0.0000026064,0.0000026114,0.0000026138,0.0000026143,0.0000026128, +0.0000026098,0.0000026075,0.0000026067,0.0000026079,0.0000026126, +0.0000026207,0.0000026297,0.0000026364,0.0000026381,0.0000026358, +0.0000026305,0.0000026251,0.0000026208,0.0000026173,0.0000026141, +0.0000026131,0.0000026141,0.0000026161,0.0000026193,0.0000026277, +0.0000026415,0.0000026574,0.0000026735,0.0000026876,0.0000026944, +0.0000026933,0.0000026871,0.0000026783,0.0000026698,0.0000026609, +0.0000026502,0.0000026372,0.0000026224,0.0000026085,0.0000025993, +0.0000025953,0.0000025935,0.0000025928,0.0000025934,0.0000025964, +0.0000026015,0.0000026063,0.0000026104,0.0000026157,0.0000026193, +0.0000026194,0.0000026159,0.0000026093,0.0000026017,0.0000025952, +0.0000025908,0.0000025867,0.0000025824,0.0000025773,0.0000025712, +0.0000025630,0.0000025526,0.0000025460,0.0000025492,0.0000025609, +0.0000025736,0.0000025836,0.0000025902,0.0000025911,0.0000025854, +0.0000025762,0.0000025670,0.0000025597,0.0000025555,0.0000025543, +0.0000025553,0.0000025567,0.0000025565,0.0000025518,0.0000025400, +0.0000025272,0.0000025172,0.0000025104,0.0000025080,0.0000025147, +0.0000025262,0.0000025348,0.0000025382,0.0000025383,0.0000025376, +0.0000025391,0.0000025443,0.0000025500,0.0000025514,0.0000025479, +0.0000025426,0.0000025406,0.0000025431,0.0000025500,0.0000025602, +0.0000025698,0.0000025765,0.0000025799,0.0000025807,0.0000025786, +0.0000025723,0.0000025621,0.0000025519,0.0000025418,0.0000025303, +0.0000025224,0.0000025224,0.0000025289,0.0000025384,0.0000025482, +0.0000025569,0.0000025651,0.0000025733,0.0000025828,0.0000025934, +0.0000026032,0.0000026103,0.0000026150,0.0000026196,0.0000026269, +0.0000026370,0.0000026452,0.0000026490,0.0000026506,0.0000026530, +0.0000026569,0.0000026601,0.0000026600,0.0000026558,0.0000026489, +0.0000026451,0.0000026468,0.0000026560,0.0000026697,0.0000026854, +0.0000027025,0.0000027175,0.0000027264,0.0000027346,0.0000027465, +0.0000027576,0.0000027646,0.0000027669,0.0000027644,0.0000027554, +0.0000027494,0.0000027563,0.0000027698,0.0000027730,0.0000027709, +0.0000027739,0.0000027791,0.0000027789,0.0000027731,0.0000027668, +0.0000027628,0.0000027618,0.0000027621,0.0000027631,0.0000027646, +0.0000027659,0.0000027671,0.0000027689,0.0000027707,0.0000027719, +0.0000027731,0.0000027738,0.0000027731,0.0000027691,0.0000027602, +0.0000027469,0.0000027314,0.0000027159,0.0000027019,0.0000026919, +0.0000026868,0.0000026859,0.0000026894,0.0000026970,0.0000027071, +0.0000027183,0.0000027306,0.0000027416,0.0000027501,0.0000027565, +0.0000027608,0.0000027617,0.0000027586,0.0000027524,0.0000027453, +0.0000027424,0.0000027435,0.0000027448,0.0000027445,0.0000027425, +0.0000027394,0.0000027366,0.0000027345,0.0000027303,0.0000027238, +0.0000027167,0.0000027110,0.0000027059,0.0000026990,0.0000026913, +0.0000026852,0.0000026821,0.0000026788,0.0000026679,0.0000026448, +0.0000026136,0.0000025860,0.0000025709,0.0000025644,0.0000025602, +0.0000025532,0.0000025464,0.0000025445,0.0000025466,0.0000025485, +0.0000025498,0.0000025496,0.0000025457,0.0000025362,0.0000025237, +0.0000025162,0.0000025144,0.0000025132,0.0000025123,0.0000025130, +0.0000025142,0.0000025131,0.0000025095,0.0000025063,0.0000025059, +0.0000025088,0.0000025141,0.0000025183,0.0000025186,0.0000025117, +0.0000025012,0.0000024975,0.0000025157,0.0000025550,0.0000026069, +0.0000026491,0.0000026616,0.0000026610,0.0000026530,0.0000026439, +0.0000026396,0.0000026382,0.0000026368,0.0000026352,0.0000026318, +0.0000026267,0.0000026221,0.0000026216,0.0000026268,0.0000026309, +0.0000026326,0.0000026367,0.0000026394,0.0000026387,0.0000026368, +0.0000026346,0.0000026340,0.0000026331,0.0000026318,0.0000026317, +0.0000026337,0.0000026356,0.0000026355,0.0000026330,0.0000026287, +0.0000026266,0.0000026297,0.0000026358,0.0000026403,0.0000026444, +0.0000026485,0.0000026539,0.0000026584,0.0000026616,0.0000026623, +0.0000026575,0.0000026498,0.0000026473,0.0000026481,0.0000026464, +0.0000026447,0.0000026431,0.0000026097,0.0000025566,0.0000025320, +0.0000025331,0.0000025447,0.0000025572,0.0000025683,0.0000025799, +0.0000025897,0.0000025960,0.0000026040,0.0000026209,0.0000026413, +0.0000026508,0.0000026539,0.0000026563,0.0000026526,0.0000026493, +0.0000026656,0.0000026996,0.0000027185,0.0000027183,0.0000027123, +0.0000027095,0.0000027115,0.0000027188,0.0000027287,0.0000027409, +0.0000027563,0.0000027707,0.0000027783,0.0000027804,0.0000027785, +0.0000027749,0.0000027720,0.0000027722,0.0000027742,0.0000027747, +0.0000027738,0.0000027738,0.0000027754,0.0000027766,0.0000027756, +0.0000027696,0.0000027607,0.0000027544,0.0000027527,0.0000027525, +0.0000027542,0.0000027614,0.0000027727,0.0000027813,0.0000027840, +0.0000027826,0.0000027798,0.0000027769,0.0000027758,0.0000027761, +0.0000027762,0.0000027742,0.0000027687,0.0000027588,0.0000027462, +0.0000027376,0.0000027364,0.0000027372,0.0000027298,0.0000027106, +0.0000026962,0.0000027003,0.0000027215,0.0000027407,0.0000027449, +0.0000027416,0.0000027395,0.0000027386,0.0000027362,0.0000027337, +0.0000027314,0.0000027275,0.0000027205,0.0000027099,0.0000026972, +0.0000026844,0.0000026737,0.0000026677,0.0000026661,0.0000026656, +0.0000026625,0.0000026555,0.0000026469,0.0000026400,0.0000026354, +0.0000026343,0.0000026358,0.0000026363,0.0000026322,0.0000026225, +0.0000026134,0.0000026087,0.0000026071,0.0000026047,0.0000025992, +0.0000025918,0.0000025808,0.0000025668,0.0000025573,0.0000025549, +0.0000025505,0.0000025411,0.0000025309,0.0000025232,0.0000025223, +0.0000025256,0.0000025280,0.0000025287,0.0000025279,0.0000025256, +0.0000025225,0.0000025186,0.0000025139,0.0000025098,0.0000025075, +0.0000025081,0.0000025123,0.0000025192,0.0000025269,0.0000025329, +0.0000025362,0.0000025387,0.0000025430,0.0000025452,0.0000025395, +0.0000025235,0.0000025091,0.0000025053,0.0000025053,0.0000025045, +0.0000025047,0.0000025052,0.0000025061,0.0000025098,0.0000025177, +0.0000025256,0.0000025257,0.0000025166,0.0000025057,0.0000025038, +0.0000025101,0.0000025186,0.0000025232,0.0000025234,0.0000025215, +0.0000025202,0.0000025178,0.0000025132,0.0000025073,0.0000025016, +0.0000024968,0.0000024930,0.0000024920,0.0000024938,0.0000024991, +0.0000025043,0.0000025067,0.0000025078,0.0000025092,0.0000025106, +0.0000025122,0.0000025151,0.0000025189,0.0000025212,0.0000025223, +0.0000025278,0.0000025425,0.0000025622,0.0000025787,0.0000025888, +0.0000025938,0.0000025981,0.0000026043,0.0000026105,0.0000026158, +0.0000026204,0.0000026241,0.0000026260,0.0000026264,0.0000026258, +0.0000026236,0.0000026198,0.0000026173,0.0000026205,0.0000026334, +0.0000026494,0.0000026602,0.0000026662,0.0000026722,0.0000026791, +0.0000026845,0.0000026866,0.0000026858,0.0000026831,0.0000026778, +0.0000026702,0.0000026590,0.0000026461,0.0000026376,0.0000026412, +0.0000026601,0.0000026778,0.0000026811,0.0000026828,0.0000026996, +0.0000027237,0.0000027396,0.0000027503,0.0000027579,0.0000027594, +0.0000027617,0.0000027656,0.0000027699,0.0000027737,0.0000027771, +0.0000027807,0.0000027857,0.0000027928,0.0000028017,0.0000028102, +0.0000028133,0.0000028082,0.0000027979,0.0000027867,0.0000027772, +0.0000027689,0.0000027623,0.0000027598,0.0000027604,0.0000027621, +0.0000027641,0.0000027652,0.0000027632,0.0000027567,0.0000027485, +0.0000027457,0.0000027514,0.0000027630,0.0000027686,0.0000027663, +0.0000027592,0.0000027546,0.0000027560,0.0000027606,0.0000027650, +0.0000027685,0.0000027726,0.0000027763,0.0000027785,0.0000027790, +0.0000027772,0.0000027740,0.0000027709,0.0000027675,0.0000027627, +0.0000027584,0.0000027550,0.0000027471,0.0000027365,0.0000027300, +0.0000027254,0.0000027192,0.0000027155,0.0000027153,0.0000027134, +0.0000027084,0.0000027077,0.0000027093,0.0000027053,0.0000026955, +0.0000026884,0.0000026859,0.0000026830,0.0000026781,0.0000026717, +0.0000026641,0.0000026552,0.0000026437,0.0000026300,0.0000026192, +0.0000026144,0.0000026104,0.0000026019,0.0000025932,0.0000025894, +0.0000025879,0.0000025827,0.0000025732,0.0000025650,0.0000025640, +0.0000025688,0.0000025731,0.0000025702,0.0000025602,0.0000025449, +0.0000025249,0.0000025040,0.0000024922,0.0000024911,0.0000024939, +0.0000024962,0.0000024977,0.0000024988,0.0000024994,0.0000024993, +0.0000024982,0.0000024957,0.0000024935,0.0000024921,0.0000024903, +0.0000024876,0.0000024807,0.0000024671,0.0000024516,0.0000024379, +0.0000024244,0.0000024145,0.0000024149,0.0000024250,0.0000024329, +0.0000024335,0.0000024289,0.0000024232,0.0000024268,0.0000024523, +0.0000024951,0.0000025253,0.0000025358,0.0000025616,0.0000026198, +0.0000026702,0.0000026941,0.0000027194,0.0000027434,0.0000027485, +0.0000027462,0.0000027413,0.0000027322,0.0000027187,0.0000027041, +0.0000026896,0.0000026822,0.0000026837,0.0000026916,0.0000027057, +0.0000027235,0.0000027365,0.0000027464,0.0000027529,0.0000027509, +0.0000027399,0.0000027327,0.0000027217,0.0000027132,0.0000027144, +0.0000027114,0.0000027072,0.0000027055,0.0000027080,0.0000027112, +0.0000027148,0.0000027196,0.0000027248,0.0000027244,0.0000027192, +0.0000027040,0.0000026820,0.0000026648,0.0000026559,0.0000026519, +0.0000026478,0.0000026407,0.0000026368,0.0000026358,0.0000026380, +0.0000026425,0.0000026460,0.0000026498,0.0000026521,0.0000026534, +0.0000026531,0.0000026521,0.0000026515,0.0000026518,0.0000026536, +0.0000026563,0.0000026589,0.0000026605,0.0000026619,0.0000026622, +0.0000026611,0.0000026594,0.0000026560,0.0000026518,0.0000026471, +0.0000026427,0.0000026395,0.0000026371,0.0000026341,0.0000026313, +0.0000026280,0.0000026224,0.0000026120,0.0000025984,0.0000025918, +0.0000025898,0.0000025898,0.0000025887,0.0000025883,0.0000025899, +0.0000025927,0.0000025955,0.0000025987,0.0000026025,0.0000026044, +0.0000026016,0.0000025920,0.0000025774,0.0000025567,0.0000025314, +0.0000025072,0.0000024842,0.0000024627,0.0000024473,0.0000024337, +0.0000024156,0.0000024005,0.0000023970,0.0000024018,0.0000024097, +0.0000024161,0.0000024208,0.0000024249,0.0000024284,0.0000024308, +0.0000024325,0.0000024344,0.0000024355,0.0000024350,0.0000024292, +0.0000024196,0.0000024117,0.0000024079,0.0000024076,0.0000024072, +0.0000024027,0.0000023964,0.0000023938,0.0000023945,0.0000023949, +0.0000023933,0.0000023911,0.0000023895,0.0000023880,0.0000023865, +0.0000023857,0.0000023862,0.0000023875,0.0000023881,0.0000023884, +0.0000023893,0.0000023909,0.0000023912,0.0000023893,0.0000023846, +0.0000023800,0.0000023780,0.0000023772,0.0000023763,0.0000023753, +0.0000023737,0.0000023719,0.0000023710,0.0000023707,0.0000023688, +0.0000023621,0.0000023522,0.0000023457,0.0000023428,0.0000023403, +0.0000023353,0.0000023281,0.0000023320,0.0000023519,0.0000023714, +0.0000023828,0.0000023987,0.0000024161,0.0000024325,0.0000024375, +0.0000024624,0.0000025316,0.0000025795,0.0000025884,0.0000025884, +0.0000025736,0.0000025560,0.0000025489,0.0000025474,0.0000025470, +0.0000025459,0.0000025324,0.0000025002,0.0000024749,0.0000024794, +0.0000024996,0.0000025465,0.0000026070,0.0000026372,0.0000026582, +0.0000026792,0.0000026885,0.0000026914,0.0000026955,0.0000027020, +0.0000027093,0.0000027151,0.0000027182,0.0000027191,0.0000027186, +0.0000027162,0.0000027112,0.0000027048,0.0000026979,0.0000026925, +0.0000026902,0.0000026917,0.0000026973,0.0000027044,0.0000027107, +0.0000027156,0.0000027193,0.0000027221,0.0000027233,0.0000027178, +0.0000027198,0.0000027243,0.0000027250,0.0000027210,0.0000027124, +0.0000027022,0.0000026899,0.0000026759,0.0000026648,0.0000026590, +0.0000026568,0.0000026546,0.0000026502,0.0000026423,0.0000026342, +0.0000026277,0.0000026221,0.0000026173,0.0000026130,0.0000026099, +0.0000026076,0.0000026056,0.0000026044,0.0000026040,0.0000026058, +0.0000026093,0.0000026122,0.0000026129,0.0000026131,0.0000026145, +0.0000026164,0.0000026178,0.0000026186,0.0000026205,0.0000026246, +0.0000026301,0.0000026362,0.0000026423,0.0000026476,0.0000026513, +0.0000026519,0.0000026486,0.0000026435,0.0000026364,0.0000026289, +0.0000026220,0.0000026157,0.0000026097,0.0000026039,0.0000025986, +0.0000025939,0.0000025909,0.0000025879,0.0000025833,0.0000025765, +0.0000025703,0.0000025661,0.0000025611,0.0000025523,0.0000025438, +0.0000025377,0.0000025296,0.0000025145,0.0000024933,0.0000024741, +0.0000024622,0.0000024559,0.0000024502,0.0000024435,0.0000024364, +0.0000024303,0.0000024259,0.0000024249,0.0000024297,0.0000024344, +0.0000024351,0.0000024310,0.0000024283,0.0000024363,0.0000024485, +0.0000024585,0.0000024669,0.0000024725,0.0000024796,0.0000024868, +0.0000024921,0.0000024982,0.0000025016,0.0000025005,0.0000025000, +0.0000025023,0.0000025046,0.0000025050,0.0000025039,0.0000025025, +0.0000025051,0.0000025144,0.0000025248,0.0000025359,0.0000025462, +0.0000025495,0.0000025495,0.0000025588,0.0000025754,0.0000025811, +0.0000025739,0.0000025628,0.0000025540,0.0000025447,0.0000025431, +0.0000025519,0.0000025645,0.0000025731,0.0000025787,0.0000025817, +0.0000025816,0.0000025800,0.0000025749,0.0000025634,0.0000025502, +0.0000025399,0.0000025278,0.0000025182,0.0000025044,0.0000024918, +0.0000024910,0.0000024963,0.0000025029,0.0000025118,0.0000025191, +0.0000025221,0.0000025228,0.0000025226,0.0000025217,0.0000025206, +0.0000025213,0.0000025233,0.0000025259,0.0000025291,0.0000025338, +0.0000025408,0.0000025490,0.0000025556,0.0000025580,0.0000025572, +0.0000025501,0.0000025413,0.0000025353,0.0000025326,0.0000025314, +0.0000025298,0.0000025269,0.0000025223,0.0000025183,0.0000025161, +0.0000025154,0.0000025161,0.0000025217,0.0000025322,0.0000025377, +0.0000025368,0.0000025240,0.0000025033,0.0000024831,0.0000024691, +0.0000024626,0.0000024603,0.0000024585,0.0000024557,0.0000024558, +0.0000024554,0.0000024576,0.0000024610,0.0000024655,0.0000024697, +0.0000024718,0.0000024722,0.0000024721,0.0000024721,0.0000024719, +0.0000024716,0.0000024713,0.0000024720,0.0000024740,0.0000024769, +0.0000024802,0.0000024843,0.0000024891,0.0000024937,0.0000024978, +0.0000025017,0.0000025065,0.0000025121,0.0000025137,0.0000025136, +0.0000025077,0.0000024949,0.0000024809,0.0000024818,0.0000025092, +0.0000025480,0.0000025752,0.0000025901,0.0000026010,0.0000026063, +0.0000026076,0.0000026063,0.0000026045,0.0000026019,0.0000025980, +0.0000025958,0.0000025965,0.0000026006,0.0000026065,0.0000026110, +0.0000026142,0.0000026162,0.0000026164,0.0000026152,0.0000026133, +0.0000026107,0.0000026083,0.0000026074,0.0000026092,0.0000026147, +0.0000026234,0.0000026312,0.0000026334,0.0000026304,0.0000026246, +0.0000026196,0.0000026162,0.0000026129,0.0000026106,0.0000026113, +0.0000026137,0.0000026145,0.0000026162,0.0000026241,0.0000026372, +0.0000026516,0.0000026653,0.0000026752,0.0000026780,0.0000026753, +0.0000026686,0.0000026604,0.0000026514,0.0000026400,0.0000026266, +0.0000026128,0.0000026008,0.0000025932,0.0000025902,0.0000025906, +0.0000025944,0.0000026012,0.0000026085,0.0000026131,0.0000026139, +0.0000026124,0.0000026128,0.0000026131,0.0000026107,0.0000026061, +0.0000026008,0.0000025964,0.0000025930,0.0000025906,0.0000025889, +0.0000025863,0.0000025819,0.0000025755,0.0000025668,0.0000025554, +0.0000025455,0.0000025442,0.0000025525,0.0000025652,0.0000025761, +0.0000025832,0.0000025849,0.0000025812,0.0000025742,0.0000025662, +0.0000025589,0.0000025533,0.0000025496,0.0000025470,0.0000025481, +0.0000025526,0.0000025545,0.0000025481,0.0000025352,0.0000025223, +0.0000025131,0.0000025081,0.0000025097,0.0000025189,0.0000025299, +0.0000025369,0.0000025388,0.0000025386,0.0000025387,0.0000025403, +0.0000025442,0.0000025482,0.0000025487,0.0000025445,0.0000025390, +0.0000025369,0.0000025379,0.0000025432,0.0000025505,0.0000025571, +0.0000025592,0.0000025560,0.0000025475,0.0000025351,0.0000025228, +0.0000025153,0.0000025108,0.0000025040,0.0000024965,0.0000024933, +0.0000024950,0.0000025016,0.0000025112,0.0000025215,0.0000025313, +0.0000025408,0.0000025500,0.0000025586,0.0000025662,0.0000025734, +0.0000025803,0.0000025868,0.0000025947,0.0000026051,0.0000026157, +0.0000026237,0.0000026293,0.0000026353,0.0000026413,0.0000026438, +0.0000026428,0.0000026372,0.0000026295,0.0000026257,0.0000026284, +0.0000026403,0.0000026575,0.0000026764,0.0000026961,0.0000027145, +0.0000027260,0.0000027317,0.0000027414,0.0000027544,0.0000027626, +0.0000027654,0.0000027647,0.0000027590,0.0000027498,0.0000027472, +0.0000027561,0.0000027674,0.0000027686,0.0000027628,0.0000027594, +0.0000027602,0.0000027612,0.0000027604,0.0000027589,0.0000027571, +0.0000027553,0.0000027537,0.0000027537,0.0000027542,0.0000027539, +0.0000027532,0.0000027528,0.0000027522,0.0000027519,0.0000027514, +0.0000027511,0.0000027503,0.0000027468,0.0000027394,0.0000027292, +0.0000027180,0.0000027066,0.0000026958,0.0000026870,0.0000026801, +0.0000026747,0.0000026729,0.0000026748,0.0000026789,0.0000026869, +0.0000026988,0.0000027119,0.0000027241,0.0000027345,0.0000027425, +0.0000027464,0.0000027455,0.0000027417,0.0000027381,0.0000027371, +0.0000027373,0.0000027372,0.0000027365,0.0000027359,0.0000027347, +0.0000027330,0.0000027310,0.0000027277,0.0000027234,0.0000027204, +0.0000027180,0.0000027138,0.0000027064,0.0000026971,0.0000026886, +0.0000026832,0.0000026801,0.0000026757,0.0000026635,0.0000026372, +0.0000026031,0.0000025748,0.0000025610,0.0000025551,0.0000025500, +0.0000025428,0.0000025391,0.0000025411,0.0000025460,0.0000025520, +0.0000025577,0.0000025569,0.0000025489,0.0000025330,0.0000025197, +0.0000025139,0.0000025104,0.0000025079,0.0000025072,0.0000025068, +0.0000025035,0.0000024980,0.0000024946,0.0000024961,0.0000025022, +0.0000025083,0.0000025132,0.0000025181,0.0000025172,0.0000025081, +0.0000024975,0.0000025018,0.0000025328,0.0000025852,0.0000026387, +0.0000026613,0.0000026608,0.0000026546,0.0000026456,0.0000026398, +0.0000026378,0.0000026357,0.0000026334,0.0000026307,0.0000026270, +0.0000026227,0.0000026221,0.0000026266,0.0000026294,0.0000026313, +0.0000026338,0.0000026330,0.0000026307,0.0000026292,0.0000026271, +0.0000026269,0.0000026270,0.0000026266,0.0000026276,0.0000026301, +0.0000026321,0.0000026316,0.0000026283,0.0000026245,0.0000026255, +0.0000026308,0.0000026376,0.0000026432,0.0000026499,0.0000026552, +0.0000026592,0.0000026610,0.0000026606,0.0000026562,0.0000026482, +0.0000026429,0.0000026427,0.0000026422,0.0000026392,0.0000026385, +0.0000026353,0.0000025994,0.0000025506,0.0000025315,0.0000025335, +0.0000025444,0.0000025565,0.0000025660,0.0000025757,0.0000025856, +0.0000025921,0.0000025971,0.0000026088,0.0000026300,0.0000026439, +0.0000026485,0.0000026523,0.0000026494,0.0000026425,0.0000026536, +0.0000026872,0.0000027119,0.0000027158,0.0000027121,0.0000027076, +0.0000027057,0.0000027068,0.0000027111,0.0000027216,0.0000027388, +0.0000027579,0.0000027714,0.0000027773,0.0000027780,0.0000027762, +0.0000027739,0.0000027736,0.0000027745,0.0000027744,0.0000027731, +0.0000027730,0.0000027746,0.0000027762,0.0000027764,0.0000027728, +0.0000027640,0.0000027541,0.0000027492,0.0000027488,0.0000027495, +0.0000027517,0.0000027581,0.0000027674,0.0000027749,0.0000027783, +0.0000027783,0.0000027756,0.0000027724,0.0000027712,0.0000027719, +0.0000027716,0.0000027664,0.0000027550,0.0000027415,0.0000027339, +0.0000027337,0.0000027326,0.0000027207,0.0000027046,0.0000026978, +0.0000027092,0.0000027318,0.0000027457,0.0000027448,0.0000027402, +0.0000027385,0.0000027372,0.0000027341,0.0000027301,0.0000027244, +0.0000027151,0.0000027014,0.0000026851,0.0000026699,0.0000026579, +0.0000026492,0.0000026448,0.0000026445,0.0000026468,0.0000026489, +0.0000026479,0.0000026433,0.0000026377,0.0000026327,0.0000026276, +0.0000026229,0.0000026208,0.0000026195,0.0000026150,0.0000026083, +0.0000026034,0.0000026012,0.0000025989,0.0000025943,0.0000025879, +0.0000025788,0.0000025686,0.0000025615,0.0000025588,0.0000025532, +0.0000025428,0.0000025318,0.0000025234,0.0000025223,0.0000025264, +0.0000025294,0.0000025285,0.0000025248,0.0000025212,0.0000025173, +0.0000025109,0.0000025024,0.0000024946,0.0000024894,0.0000024882, +0.0000024915,0.0000024991,0.0000025097,0.0000025215,0.0000025311, +0.0000025358,0.0000025382,0.0000025428,0.0000025457,0.0000025407, +0.0000025253,0.0000025115,0.0000025069,0.0000025055,0.0000025043, +0.0000025042,0.0000025046,0.0000025061,0.0000025109,0.0000025188, +0.0000025252,0.0000025246,0.0000025166,0.0000025059,0.0000025025, +0.0000025059,0.0000025142,0.0000025214,0.0000025239,0.0000025238, +0.0000025216,0.0000025179,0.0000025119,0.0000025048,0.0000024986, +0.0000024952,0.0000024948,0.0000024971,0.0000025017,0.0000025063, +0.0000025092,0.0000025105,0.0000025115,0.0000025118,0.0000025112, +0.0000025111,0.0000025134,0.0000025168,0.0000025196,0.0000025216, +0.0000025270,0.0000025404,0.0000025588,0.0000025741,0.0000025836, +0.0000025888,0.0000025934,0.0000025989,0.0000026036,0.0000026074, +0.0000026115,0.0000026157,0.0000026187,0.0000026210,0.0000026227, +0.0000026224,0.0000026194,0.0000026161,0.0000026172,0.0000026269, +0.0000026414,0.0000026520,0.0000026565,0.0000026593,0.0000026641, +0.0000026697,0.0000026730,0.0000026739,0.0000026752,0.0000026750, +0.0000026688,0.0000026568,0.0000026445,0.0000026354,0.0000026346, +0.0000026473,0.0000026649,0.0000026727,0.0000026744,0.0000026888, +0.0000027164,0.0000027376,0.0000027492,0.0000027570,0.0000027584, +0.0000027595,0.0000027638,0.0000027677,0.0000027699,0.0000027719, +0.0000027742,0.0000027783,0.0000027856,0.0000027954,0.0000028043, +0.0000028077,0.0000028044,0.0000027955,0.0000027849,0.0000027757, +0.0000027681,0.0000027628,0.0000027613,0.0000027629,0.0000027654, +0.0000027672,0.0000027675,0.0000027660,0.0000027610,0.0000027526, +0.0000027472,0.0000027501,0.0000027606,0.0000027682,0.0000027680, +0.0000027609,0.0000027531,0.0000027512,0.0000027540,0.0000027576, +0.0000027610,0.0000027655,0.0000027701,0.0000027732,0.0000027746, +0.0000027747,0.0000027731,0.0000027705,0.0000027673,0.0000027626, +0.0000027582,0.0000027551,0.0000027492,0.0000027390,0.0000027316, +0.0000027278,0.0000027234,0.0000027197,0.0000027186,0.0000027160, +0.0000027110,0.0000027095,0.0000027102,0.0000027044,0.0000026939, +0.0000026882,0.0000026870,0.0000026848,0.0000026807,0.0000026751, +0.0000026682,0.0000026602,0.0000026514,0.0000026409,0.0000026301, +0.0000026222,0.0000026168,0.0000026091,0.0000025989,0.0000025918, +0.0000025896,0.0000025870,0.0000025796,0.0000025693,0.0000025628, +0.0000025619,0.0000025652,0.0000025659,0.0000025603,0.0000025481, +0.0000025319,0.0000025122,0.0000024957,0.0000024899,0.0000024919, +0.0000024954,0.0000024964,0.0000024975,0.0000024988,0.0000024994, +0.0000024990,0.0000024980,0.0000024962,0.0000024950,0.0000024936, +0.0000024911,0.0000024859,0.0000024746,0.0000024584,0.0000024431, +0.0000024298,0.0000024183,0.0000024153,0.0000024231,0.0000024326, +0.0000024349,0.0000024320,0.0000024279,0.0000024269,0.0000024365, +0.0000024681,0.0000025087,0.0000025311,0.0000025418,0.0000025781, +0.0000026376,0.0000026769,0.0000026948,0.0000027180,0.0000027372, +0.0000027410,0.0000027375,0.0000027274,0.0000027131,0.0000026975, +0.0000026822,0.0000026735,0.0000026739,0.0000026791,0.0000026907, +0.0000027098,0.0000027279,0.0000027406,0.0000027501,0.0000027515, +0.0000027430,0.0000027351,0.0000027254,0.0000027161,0.0000027161, +0.0000027134,0.0000027081,0.0000027071,0.0000027100,0.0000027136, +0.0000027170,0.0000027218,0.0000027262,0.0000027254,0.0000027188, +0.0000027042,0.0000026836,0.0000026667,0.0000026557,0.0000026482, +0.0000026425,0.0000026349,0.0000026303,0.0000026288,0.0000026296, +0.0000026338,0.0000026394,0.0000026442,0.0000026482,0.0000026507, +0.0000026511,0.0000026496,0.0000026479,0.0000026471,0.0000026476, +0.0000026492,0.0000026506,0.0000026510,0.0000026509,0.0000026509, +0.0000026500,0.0000026477,0.0000026446,0.0000026404,0.0000026356, +0.0000026308,0.0000026272,0.0000026245,0.0000026226,0.0000026214, +0.0000026202,0.0000026165,0.0000026068,0.0000025976,0.0000025931, +0.0000025934,0.0000025933,0.0000025925,0.0000025927,0.0000025942, +0.0000025965,0.0000025990,0.0000026014,0.0000026044,0.0000026071, +0.0000026069,0.0000026001,0.0000025860,0.0000025676,0.0000025455, +0.0000025216,0.0000024989,0.0000024760,0.0000024560,0.0000024416, +0.0000024260,0.0000024072,0.0000023956,0.0000023951,0.0000024021, +0.0000024108,0.0000024175,0.0000024220,0.0000024253,0.0000024282, +0.0000024303,0.0000024319,0.0000024334,0.0000024346,0.0000024347, +0.0000024301,0.0000024190,0.0000024080,0.0000024016,0.0000024006, +0.0000024013,0.0000023995,0.0000023944,0.0000023897,0.0000023887, +0.0000023892,0.0000023892,0.0000023890,0.0000023886,0.0000023873, +0.0000023849,0.0000023826,0.0000023825,0.0000023835,0.0000023829, +0.0000023820,0.0000023824,0.0000023850,0.0000023882,0.0000023887, +0.0000023857,0.0000023810,0.0000023784,0.0000023776,0.0000023771, +0.0000023763,0.0000023740,0.0000023701,0.0000023676,0.0000023668, +0.0000023656,0.0000023599,0.0000023496,0.0000023411,0.0000023381, +0.0000023365,0.0000023334,0.0000023267,0.0000023290,0.0000023479, +0.0000023698,0.0000023834,0.0000023988,0.0000024146,0.0000024294, +0.0000024381,0.0000024523,0.0000025122,0.0000025713,0.0000025881, +0.0000025879,0.0000025764,0.0000025580,0.0000025478,0.0000025407, +0.0000025377,0.0000025376,0.0000025333,0.0000025155,0.0000024841, +0.0000024688,0.0000024847,0.0000025112,0.0000025722,0.0000026230, +0.0000026443,0.0000026653,0.0000026823,0.0000026860,0.0000026871, +0.0000026914,0.0000026977,0.0000027040,0.0000027086,0.0000027106, +0.0000027102,0.0000027073,0.0000027024,0.0000026967,0.0000026912, +0.0000026879,0.0000026878,0.0000026916,0.0000026981,0.0000027045, +0.0000027091,0.0000027125,0.0000027155,0.0000027181,0.0000027184, +0.0000027099,0.0000027104,0.0000027131,0.0000027131,0.0000027088, +0.0000027000,0.0000026892,0.0000026766,0.0000026631,0.0000026522, +0.0000026452,0.0000026403,0.0000026356,0.0000026301,0.0000026233, +0.0000026168,0.0000026105,0.0000026039,0.0000025981,0.0000025932, +0.0000025901,0.0000025881,0.0000025870,0.0000025857,0.0000025844, +0.0000025838,0.0000025861,0.0000025911,0.0000025958,0.0000025987, +0.0000026006,0.0000026021,0.0000026042,0.0000026065,0.0000026081, +0.0000026096,0.0000026121,0.0000026162,0.0000026221,0.0000026292, +0.0000026363,0.0000026421,0.0000026448,0.0000026438,0.0000026397, +0.0000026340,0.0000026282,0.0000026225,0.0000026162,0.0000026095, +0.0000026032,0.0000025969,0.0000025918,0.0000025869,0.0000025809, +0.0000025747,0.0000025692,0.0000025633,0.0000025541,0.0000025443, +0.0000025376,0.0000025295,0.0000025138,0.0000024919,0.0000024721, +0.0000024599,0.0000024538,0.0000024493,0.0000024443,0.0000024395, +0.0000024356,0.0000024310,0.0000024269,0.0000024253,0.0000024277, +0.0000024311,0.0000024327,0.0000024306,0.0000024272,0.0000024322, +0.0000024441,0.0000024546,0.0000024642,0.0000024707,0.0000024765, +0.0000024844,0.0000024907,0.0000024967,0.0000025024,0.0000025040, +0.0000025022,0.0000025015,0.0000025036,0.0000025052,0.0000025049, +0.0000025038,0.0000025051,0.0000025124,0.0000025227,0.0000025327, +0.0000025424,0.0000025475,0.0000025479,0.0000025526,0.0000025694, +0.0000025808,0.0000025782,0.0000025663,0.0000025575,0.0000025480, +0.0000025421,0.0000025457,0.0000025573,0.0000025678,0.0000025748, +0.0000025801,0.0000025817,0.0000025815,0.0000025806,0.0000025748, +0.0000025631,0.0000025508,0.0000025410,0.0000025293,0.0000025202, +0.0000025065,0.0000024930,0.0000024918,0.0000024965,0.0000025024, +0.0000025110,0.0000025191,0.0000025222,0.0000025228,0.0000025226, +0.0000025211,0.0000025193,0.0000025178,0.0000025185,0.0000025207, +0.0000025233,0.0000025261,0.0000025304,0.0000025378,0.0000025469, +0.0000025546,0.0000025571,0.0000025537,0.0000025458,0.0000025385, +0.0000025347,0.0000025331,0.0000025310,0.0000025279,0.0000025230, +0.0000025171,0.0000025140,0.0000025142,0.0000025143,0.0000025158, +0.0000025241,0.0000025351,0.0000025407,0.0000025367,0.0000025223, +0.0000025026,0.0000024834,0.0000024699,0.0000024635,0.0000024618, +0.0000024606,0.0000024587,0.0000024559,0.0000024528,0.0000024517, +0.0000024499,0.0000024498,0.0000024496,0.0000024496,0.0000024505, +0.0000024528,0.0000024556,0.0000024581,0.0000024599,0.0000024618, +0.0000024643,0.0000024670,0.0000024696,0.0000024723,0.0000024754, +0.0000024787,0.0000024819,0.0000024856,0.0000024907,0.0000024973, +0.0000025039,0.0000025090,0.0000025104,0.0000025088,0.0000024968, +0.0000024814,0.0000024858,0.0000025186,0.0000025577,0.0000025815, +0.0000025936,0.0000026019,0.0000026072,0.0000026094,0.0000026098, +0.0000026081,0.0000026041,0.0000026013,0.0000026018,0.0000026058, +0.0000026110,0.0000026154,0.0000026193,0.0000026220,0.0000026225, +0.0000026210,0.0000026181,0.0000026151,0.0000026128,0.0000026109, +0.0000026088,0.0000026082,0.0000026122,0.0000026209,0.0000026276, +0.0000026285,0.0000026241,0.0000026179,0.0000026140,0.0000026113, +0.0000026086,0.0000026081,0.0000026108,0.0000026141,0.0000026151, +0.0000026163,0.0000026224,0.0000026329,0.0000026436,0.0000026518, +0.0000026557,0.0000026549,0.0000026507,0.0000026450,0.0000026379, +0.0000026271,0.0000026149,0.0000026038,0.0000025962,0.0000025928, +0.0000025928,0.0000025974,0.0000026055,0.0000026139,0.0000026191, +0.0000026197,0.0000026164,0.0000026107,0.0000026053,0.0000026033, +0.0000026018,0.0000025999,0.0000025976,0.0000025953,0.0000025938, +0.0000025927,0.0000025921,0.0000025908,0.0000025875,0.0000025815, +0.0000025731,0.0000025629,0.0000025529,0.0000025492,0.0000025530, +0.0000025622,0.0000025724,0.0000025798,0.0000025823,0.0000025809, +0.0000025760,0.0000025695,0.0000025629,0.0000025570,0.0000025521, +0.0000025475,0.0000025442,0.0000025443,0.0000025473,0.0000025487, +0.0000025433,0.0000025310,0.0000025179,0.0000025100,0.0000025081, +0.0000025129,0.0000025229,0.0000025325,0.0000025371,0.0000025386, +0.0000025396,0.0000025403,0.0000025413,0.0000025433,0.0000025465, +0.0000025468,0.0000025431,0.0000025381,0.0000025354,0.0000025344, +0.0000025356,0.0000025386,0.0000025393,0.0000025347,0.0000025227, +0.0000025073,0.0000024962,0.0000024939,0.0000024948,0.0000024925, +0.0000024884,0.0000024849,0.0000024838,0.0000024846,0.0000024894, +0.0000024974,0.0000025064,0.0000025155,0.0000025249,0.0000025335, +0.0000025398,0.0000025457,0.0000025528,0.0000025611,0.0000025691, +0.0000025771,0.0000025866,0.0000025971,0.0000026074,0.0000026175, +0.0000026257,0.0000026285,0.0000026272,0.0000026214,0.0000026129, +0.0000026062,0.0000026079,0.0000026207,0.0000026407,0.0000026630, +0.0000026857,0.0000027076,0.0000027234,0.0000027299,0.0000027351, +0.0000027474,0.0000027595,0.0000027637,0.0000027634,0.0000027598, +0.0000027528,0.0000027463,0.0000027452,0.0000027522,0.0000027600, +0.0000027603,0.0000027532,0.0000027450,0.0000027395,0.0000027370, +0.0000027362,0.0000027356,0.0000027343,0.0000027321,0.0000027309, +0.0000027310,0.0000027314,0.0000027315,0.0000027315,0.0000027315, +0.0000027320,0.0000027320,0.0000027322,0.0000027328,0.0000027325, +0.0000027295,0.0000027236,0.0000027163,0.0000027088,0.0000027014, +0.0000026940,0.0000026876,0.0000026796,0.0000026733,0.0000026707, +0.0000026680,0.0000026661,0.0000026683,0.0000026751,0.0000026844, +0.0000026946,0.0000027048,0.0000027136,0.0000027186,0.0000027199, +0.0000027201,0.0000027204,0.0000027215,0.0000027221,0.0000027219, +0.0000027230,0.0000027251,0.0000027269,0.0000027274,0.0000027268, +0.0000027247,0.0000027225,0.0000027214,0.0000027219,0.0000027193, +0.0000027129,0.0000027039,0.0000026942,0.0000026859,0.0000026795, +0.0000026757,0.0000026720,0.0000026569,0.0000026273,0.0000025909, +0.0000025636,0.0000025524,0.0000025457,0.0000025384,0.0000025337, +0.0000025348,0.0000025417,0.0000025525,0.0000025602,0.0000025630, +0.0000025571,0.0000025409,0.0000025232,0.0000025126,0.0000025072, +0.0000025037,0.0000025012,0.0000024993,0.0000024947,0.0000024887, +0.0000024862,0.0000024895,0.0000024973,0.0000025033,0.0000025080, +0.0000025143,0.0000025188,0.0000025165,0.0000025042,0.0000024998, +0.0000025170,0.0000025664,0.0000026268,0.0000026583,0.0000026595, +0.0000026543,0.0000026472,0.0000026408,0.0000026378,0.0000026349, +0.0000026317,0.0000026297,0.0000026270,0.0000026233,0.0000026228, +0.0000026263,0.0000026280,0.0000026293,0.0000026284,0.0000026253, +0.0000026246,0.0000026243,0.0000026225,0.0000026220,0.0000026215, +0.0000026208,0.0000026223,0.0000026256,0.0000026287,0.0000026287, +0.0000026251,0.0000026232,0.0000026266,0.0000026345,0.0000026425, +0.0000026499,0.0000026575,0.0000026616,0.0000026624,0.0000026606, +0.0000026555,0.0000026464,0.0000026389,0.0000026370,0.0000026370, +0.0000026343,0.0000026317,0.0000026329,0.0000026254,0.0000025839, +0.0000025421,0.0000025308,0.0000025343,0.0000025440,0.0000025556, +0.0000025641,0.0000025717,0.0000025810,0.0000025871,0.0000025911, +0.0000026001,0.0000026196,0.0000026360,0.0000026426,0.0000026480, +0.0000026455,0.0000026355,0.0000026420,0.0000026747,0.0000027037, +0.0000027129,0.0000027118,0.0000027079,0.0000027031,0.0000026990, +0.0000026984,0.0000027055,0.0000027223,0.0000027431,0.0000027604, +0.0000027707,0.0000027746,0.0000027753,0.0000027748,0.0000027751, +0.0000027757,0.0000027748,0.0000027731,0.0000027725,0.0000027733, +0.0000027744,0.0000027748,0.0000027725,0.0000027643,0.0000027526, +0.0000027443,0.0000027427,0.0000027441,0.0000027465,0.0000027499, +0.0000027558,0.0000027636,0.0000027705,0.0000027744,0.0000027744, +0.0000027715,0.0000027681,0.0000027666,0.0000027654,0.0000027604, +0.0000027492,0.0000027372,0.0000027318,0.0000027310,0.0000027249, +0.0000027108,0.0000027020,0.0000027045,0.0000027202,0.0000027396, +0.0000027459,0.0000027424,0.0000027366,0.0000027347,0.0000027326, +0.0000027272,0.0000027182,0.0000027047,0.0000026875,0.0000026695, +0.0000026539,0.0000026432,0.0000026363,0.0000026311,0.0000026275, +0.0000026261,0.0000026271,0.0000026305,0.0000026340,0.0000026357, +0.0000026347,0.0000026316,0.0000026267,0.0000026191,0.0000026112, +0.0000026060,0.0000026028,0.0000025991,0.0000025954,0.0000025933, +0.0000025923,0.0000025896,0.0000025846,0.0000025772,0.0000025693, +0.0000025640,0.0000025613,0.0000025552,0.0000025450,0.0000025340, +0.0000025247,0.0000025233,0.0000025277,0.0000025307,0.0000025282, +0.0000025224,0.0000025177,0.0000025116,0.0000025001,0.0000024858, +0.0000024736,0.0000024660,0.0000024633,0.0000024644,0.0000024706, +0.0000024815,0.0000024969,0.0000025143,0.0000025285,0.0000025354, +0.0000025384,0.0000025435,0.0000025465,0.0000025405,0.0000025253, +0.0000025127,0.0000025082,0.0000025061,0.0000025045,0.0000025043, +0.0000025044,0.0000025068,0.0000025133,0.0000025206,0.0000025244, +0.0000025232,0.0000025160,0.0000025069,0.0000025028,0.0000025034, +0.0000025085,0.0000025148,0.0000025188,0.0000025202,0.0000025185, +0.0000025132,0.0000025053,0.0000024975,0.0000024930,0.0000024929, +0.0000024964,0.0000025022,0.0000025084,0.0000025129,0.0000025150, +0.0000025154,0.0000025150,0.0000025135,0.0000025115,0.0000025111, +0.0000025130,0.0000025157,0.0000025182,0.0000025212,0.0000025276, +0.0000025408,0.0000025576,0.0000025712,0.0000025801,0.0000025863, +0.0000025919,0.0000025971,0.0000026004,0.0000026028,0.0000026056, +0.0000026089,0.0000026126,0.0000026165,0.0000026193,0.0000026196, +0.0000026176,0.0000026149,0.0000026153,0.0000026223,0.0000026340, +0.0000026443,0.0000026494,0.0000026516,0.0000026546,0.0000026592, +0.0000026622,0.0000026632,0.0000026662,0.0000026704,0.0000026680, +0.0000026571,0.0000026434,0.0000026325,0.0000026293,0.0000026368, +0.0000026537,0.0000026662,0.0000026695,0.0000026809,0.0000027086, +0.0000027336,0.0000027469,0.0000027552,0.0000027568,0.0000027570, +0.0000027616,0.0000027664,0.0000027684,0.0000027691,0.0000027692, +0.0000027708,0.0000027761,0.0000027860,0.0000027970,0.0000028025, +0.0000028009,0.0000027923,0.0000027819,0.0000027735,0.0000027677, +0.0000027644,0.0000027636,0.0000027658,0.0000027686,0.0000027696, +0.0000027685,0.0000027663,0.0000027625,0.0000027558,0.0000027507, +0.0000027514,0.0000027595,0.0000027663,0.0000027668,0.0000027605, +0.0000027517,0.0000027475,0.0000027483,0.0000027503,0.0000027527, +0.0000027576,0.0000027636,0.0000027678,0.0000027701,0.0000027714, +0.0000027710,0.0000027690,0.0000027658,0.0000027615,0.0000027575, +0.0000027546,0.0000027497,0.0000027401,0.0000027314,0.0000027276, +0.0000027254,0.0000027226,0.0000027209,0.0000027179,0.0000027129, +0.0000027119,0.0000027128,0.0000027051,0.0000026924,0.0000026864, +0.0000026864,0.0000026853,0.0000026818,0.0000026771,0.0000026710, +0.0000026640,0.0000026570,0.0000026500,0.0000026418,0.0000026329, +0.0000026251,0.0000026172,0.0000026069,0.0000025966,0.0000025911, +0.0000025892,0.0000025849,0.0000025757,0.0000025653,0.0000025592, +0.0000025577,0.0000025585,0.0000025566,0.0000025492,0.0000025375, +0.0000025215,0.0000025028,0.0000024902,0.0000024880,0.0000024915, +0.0000024941,0.0000024943,0.0000024961,0.0000024990,0.0000025005, +0.0000025001,0.0000024990,0.0000024975,0.0000024965,0.0000024940, +0.0000024896,0.0000024809,0.0000024660,0.0000024495,0.0000024353, +0.0000024231,0.0000024179,0.0000024211,0.0000024306,0.0000024346, +0.0000024335,0.0000024301,0.0000024288,0.0000024312,0.0000024472, +0.0000024826,0.0000025194,0.0000025362,0.0000025521,0.0000025975, +0.0000026532,0.0000026801,0.0000026930,0.0000027135,0.0000027276, +0.0000027288,0.0000027217,0.0000027081,0.0000026906,0.0000026741, +0.0000026628,0.0000026622,0.0000026676,0.0000026768,0.0000026937, +0.0000027170,0.0000027344,0.0000027462,0.0000027517,0.0000027462, +0.0000027379,0.0000027299,0.0000027193,0.0000027182,0.0000027152, +0.0000027090,0.0000027088,0.0000027123,0.0000027166,0.0000027198, +0.0000027241,0.0000027268,0.0000027251,0.0000027174,0.0000027045, +0.0000026871,0.0000026719,0.0000026600,0.0000026509,0.0000026427, +0.0000026340,0.0000026274,0.0000026254,0.0000026241,0.0000026254, +0.0000026284,0.0000026318,0.0000026361,0.0000026398,0.0000026425, +0.0000026429,0.0000026422,0.0000026418,0.0000026422,0.0000026435, +0.0000026450,0.0000026450,0.0000026438,0.0000026422,0.0000026402, +0.0000026371,0.0000026326,0.0000026283,0.0000026235,0.0000026197, +0.0000026181,0.0000026172,0.0000026175,0.0000026189,0.0000026191, +0.0000026166,0.0000026103,0.0000026037,0.0000026020,0.0000026020, +0.0000026015,0.0000026016,0.0000026026,0.0000026039,0.0000026049, +0.0000026056,0.0000026063,0.0000026066,0.0000026067,0.0000026042, +0.0000025965,0.0000025820,0.0000025643,0.0000025452,0.0000025253, +0.0000025052,0.0000024844,0.0000024639,0.0000024480,0.0000024344, +0.0000024170,0.0000024008,0.0000023946,0.0000023971,0.0000024047, +0.0000024123,0.0000024179,0.0000024219,0.0000024249,0.0000024275, +0.0000024292,0.0000024302,0.0000024309,0.0000024316,0.0000024317, +0.0000024281,0.0000024170,0.0000024043,0.0000023958,0.0000023943, +0.0000023961,0.0000023968,0.0000023933,0.0000023877,0.0000023844, +0.0000023846,0.0000023857,0.0000023862,0.0000023858,0.0000023843, +0.0000023813,0.0000023781,0.0000023765,0.0000023757,0.0000023744, +0.0000023740,0.0000023752,0.0000023786,0.0000023839,0.0000023875, +0.0000023862,0.0000023815,0.0000023780,0.0000023768,0.0000023761, +0.0000023760,0.0000023748,0.0000023699,0.0000023652,0.0000023634, +0.0000023626,0.0000023585,0.0000023481,0.0000023381,0.0000023340, +0.0000023326,0.0000023312,0.0000023260,0.0000023260,0.0000023424, +0.0000023666,0.0000023828,0.0000023980,0.0000024125,0.0000024249, +0.0000024366,0.0000024449,0.0000024888,0.0000025544,0.0000025856, +0.0000025877,0.0000025799,0.0000025622,0.0000025491,0.0000025388, +0.0000025314,0.0000025288,0.0000025292,0.0000025240,0.0000025011, +0.0000024713,0.0000024723,0.0000024918,0.0000025352,0.0000026001, +0.0000026341,0.0000026503,0.0000026711,0.0000026826,0.0000026833, +0.0000026843,0.0000026878,0.0000026928,0.0000026973,0.0000026999, +0.0000026998,0.0000026979,0.0000026950,0.0000026923,0.0000026893, +0.0000026871,0.0000026869,0.0000026897,0.0000026941,0.0000026983, +0.0000027024,0.0000027062,0.0000027098,0.0000027122,0.0000027118, +0.0000026967,0.0000026964,0.0000026978,0.0000026973,0.0000026934, +0.0000026851,0.0000026738,0.0000026603,0.0000026461,0.0000026341, +0.0000026264,0.0000026213,0.0000026170,0.0000026121,0.0000026057, +0.0000025988,0.0000025912,0.0000025834,0.0000025766,0.0000025707, +0.0000025672,0.0000025648,0.0000025634,0.0000025621,0.0000025610, +0.0000025597,0.0000025598,0.0000025630,0.0000025692,0.0000025760, +0.0000025823,0.0000025870,0.0000025904,0.0000025936,0.0000025968, +0.0000025995,0.0000026016,0.0000026035,0.0000026065,0.0000026112, +0.0000026173,0.0000026239,0.0000026293,0.0000026325,0.0000026331, +0.0000026312,0.0000026274,0.0000026223,0.0000026161,0.0000026091, +0.0000026016,0.0000025943,0.0000025880,0.0000025826,0.0000025773, +0.0000025715,0.0000025645,0.0000025553,0.0000025450,0.0000025366, +0.0000025284,0.0000025131,0.0000024912,0.0000024710,0.0000024587, +0.0000024526,0.0000024489,0.0000024455,0.0000024426,0.0000024392, +0.0000024363,0.0000024327,0.0000024285,0.0000024260,0.0000024268, +0.0000024285,0.0000024304,0.0000024297,0.0000024263,0.0000024292, +0.0000024400,0.0000024503,0.0000024604,0.0000024685,0.0000024738, +0.0000024809,0.0000024881,0.0000024946,0.0000025008,0.0000025053, +0.0000025059,0.0000025039,0.0000025034,0.0000025047,0.0000025051, +0.0000025049,0.0000025062,0.0000025124,0.0000025221,0.0000025320, +0.0000025406,0.0000025453,0.0000025458,0.0000025497,0.0000025661, +0.0000025794,0.0000025799,0.0000025683,0.0000025585,0.0000025499, +0.0000025427,0.0000025427,0.0000025513,0.0000025624,0.0000025703, +0.0000025771,0.0000025815,0.0000025819,0.0000025816,0.0000025805, +0.0000025742,0.0000025629,0.0000025515,0.0000025421,0.0000025311, +0.0000025225,0.0000025093,0.0000024952,0.0000024936,0.0000024967, +0.0000025017,0.0000025101,0.0000025186,0.0000025221,0.0000025227, +0.0000025221,0.0000025205,0.0000025176,0.0000025142,0.0000025127, +0.0000025139,0.0000025174,0.0000025212,0.0000025246,0.0000025292, +0.0000025365,0.0000025452,0.0000025515,0.0000025525,0.0000025481, +0.0000025420,0.0000025384,0.0000025367,0.0000025338,0.0000025293, +0.0000025239,0.0000025171,0.0000025120,0.0000025118,0.0000025137, +0.0000025146,0.0000025182,0.0000025284,0.0000025390,0.0000025424, +0.0000025360,0.0000025218,0.0000025032,0.0000024854,0.0000024726, +0.0000024662,0.0000024636,0.0000024625,0.0000024616,0.0000024599, +0.0000024571,0.0000024551,0.0000024529,0.0000024507,0.0000024494, +0.0000024496,0.0000024510,0.0000024522,0.0000024530,0.0000024533, +0.0000024539,0.0000024557,0.0000024586,0.0000024619,0.0000024648, +0.0000024675,0.0000024703,0.0000024728,0.0000024752,0.0000024784, +0.0000024834,0.0000024901,0.0000024965,0.0000025033,0.0000025106, +0.0000025097,0.0000024954,0.0000024805,0.0000024890,0.0000025255, +0.0000025626,0.0000025843,0.0000025943,0.0000026003,0.0000026052, +0.0000026077,0.0000026067,0.0000026029,0.0000025993,0.0000025988, +0.0000026020,0.0000026070,0.0000026120,0.0000026178,0.0000026228, +0.0000026267,0.0000026280,0.0000026264,0.0000026220,0.0000026169, +0.0000026141,0.0000026129,0.0000026107,0.0000026102,0.0000026138, +0.0000026208,0.0000026250,0.0000026233,0.0000026171,0.0000026119, +0.0000026094,0.0000026071,0.0000026048,0.0000026057,0.0000026111, +0.0000026173,0.0000026194,0.0000026202,0.0000026239,0.0000026305, +0.0000026365,0.0000026396,0.0000026393,0.0000026372,0.0000026352, +0.0000026317,0.0000026240,0.0000026134,0.0000026064,0.0000026045, +0.0000026060,0.0000026094,0.0000026132,0.0000026169,0.0000026196, +0.0000026203,0.0000026189,0.0000026134,0.0000026053,0.0000025993, +0.0000025980,0.0000025992,0.0000025992,0.0000025976,0.0000025963, +0.0000025953,0.0000025943,0.0000025934,0.0000025921,0.0000025898, +0.0000025852,0.0000025778,0.0000025690,0.0000025610,0.0000025581, +0.0000025600,0.0000025658,0.0000025742,0.0000025818,0.0000025846, +0.0000025834,0.0000025792,0.0000025730,0.0000025664,0.0000025610, +0.0000025573,0.0000025543,0.0000025505,0.0000025457,0.0000025419, +0.0000025413,0.0000025418,0.0000025373,0.0000025269,0.0000025142, +0.0000025090,0.0000025110,0.0000025173,0.0000025268,0.0000025341, +0.0000025375,0.0000025398,0.0000025418,0.0000025422,0.0000025420, +0.0000025434,0.0000025457,0.0000025460,0.0000025428,0.0000025374, +0.0000025325,0.0000025286,0.0000025264,0.0000025250,0.0000025213, +0.0000025112,0.0000024965,0.0000024859,0.0000024852,0.0000024890, +0.0000024882,0.0000024861,0.0000024838,0.0000024828,0.0000024815, +0.0000024809,0.0000024839,0.0000024899,0.0000024972,0.0000025063, +0.0000025161,0.0000025233,0.0000025278,0.0000025329,0.0000025404, +0.0000025480,0.0000025540,0.0000025612,0.0000025714,0.0000025842, +0.0000025974,0.0000026080,0.0000026139,0.0000026145,0.0000026108, +0.0000026041,0.0000025972,0.0000025956,0.0000026048,0.0000026241, +0.0000026472,0.0000026714,0.0000026959,0.0000027166,0.0000027274, +0.0000027303,0.0000027378,0.0000027517,0.0000027611,0.0000027625, +0.0000027595,0.0000027539,0.0000027480,0.0000027433,0.0000027419, +0.0000027447,0.0000027482,0.0000027476,0.0000027417,0.0000027325, +0.0000027233,0.0000027161,0.0000027111,0.0000027075,0.0000027044, +0.0000027018,0.0000027015,0.0000027027,0.0000027055,0.0000027091, +0.0000027123,0.0000027149,0.0000027172,0.0000027190,0.0000027209, +0.0000027219,0.0000027207,0.0000027168,0.0000027106,0.0000027041, +0.0000026983,0.0000026930,0.0000026884,0.0000026822,0.0000026747, +0.0000026696,0.0000026669,0.0000026636,0.0000026605,0.0000026602, +0.0000026621,0.0000026657,0.0000026708,0.0000026774,0.0000026836, +0.0000026868,0.0000026888,0.0000026905,0.0000026926,0.0000026949, +0.0000026957,0.0000026964,0.0000026985,0.0000027028,0.0000027083, +0.0000027137,0.0000027184,0.0000027211,0.0000027209,0.0000027212, +0.0000027215,0.0000027199,0.0000027169,0.0000027102,0.0000027001, +0.0000026894,0.0000026801,0.0000026751,0.0000026732,0.0000026675, +0.0000026492,0.0000026162,0.0000025794,0.0000025545,0.0000025428, +0.0000025344,0.0000025288,0.0000025280,0.0000025350,0.0000025480, +0.0000025584,0.0000025623,0.0000025574,0.0000025442,0.0000025260, +0.0000025124,0.0000025052,0.0000024995,0.0000024948,0.0000024916, +0.0000024873,0.0000024832,0.0000024817,0.0000024847,0.0000024917, +0.0000024988,0.0000025046,0.0000025104,0.0000025183,0.0000025221, +0.0000025139,0.0000025018,0.0000025095,0.0000025519,0.0000026154, +0.0000026538,0.0000026565,0.0000026525,0.0000026475,0.0000026417, +0.0000026384,0.0000026352,0.0000026309,0.0000026291,0.0000026269, +0.0000026239,0.0000026236,0.0000026259,0.0000026266,0.0000026264, +0.0000026218,0.0000026196,0.0000026208,0.0000026189,0.0000026160, +0.0000026160,0.0000026168,0.0000026166,0.0000026176,0.0000026205, +0.0000026229,0.0000026226,0.0000026202,0.0000026217,0.0000026286, +0.0000026380,0.0000026475,0.0000026556,0.0000026613,0.0000026626, +0.0000026611,0.0000026552,0.0000026464,0.0000026373,0.0000026323, +0.0000026313,0.0000026296,0.0000026263,0.0000026259,0.0000026276, +0.0000026087,0.0000025629,0.0000025328,0.0000025294,0.0000025350, +0.0000025432,0.0000025543,0.0000025625,0.0000025683,0.0000025763, +0.0000025817,0.0000025852,0.0000025931,0.0000026106,0.0000026277, +0.0000026368,0.0000026436,0.0000026414,0.0000026292,0.0000026311, +0.0000026613,0.0000026934,0.0000027081,0.0000027109,0.0000027093, +0.0000027033,0.0000026958,0.0000026920,0.0000026948,0.0000027080, +0.0000027276,0.0000027465,0.0000027604,0.0000027683,0.0000027720, +0.0000027739,0.0000027754,0.0000027762,0.0000027750,0.0000027729, +0.0000027716,0.0000027709,0.0000027703,0.0000027699,0.0000027669, +0.0000027581,0.0000027457,0.0000027365,0.0000027340,0.0000027353, +0.0000027387,0.0000027428,0.0000027478,0.0000027544,0.0000027614, +0.0000027676,0.0000027709,0.0000027707,0.0000027671,0.0000027633, +0.0000027600,0.0000027543,0.0000027448,0.0000027355,0.0000027303, +0.0000027250,0.0000027141,0.0000027035,0.0000027030,0.0000027125, +0.0000027286,0.0000027422,0.0000027440,0.0000027368,0.0000027295, +0.0000027264,0.0000027223,0.0000027125,0.0000026961,0.0000026755, +0.0000026563,0.0000026424,0.0000026342,0.0000026301,0.0000026274, +0.0000026244,0.0000026212,0.0000026181,0.0000026157,0.0000026155, +0.0000026185,0.0000026238,0.0000026282,0.0000026287,0.0000026264, +0.0000026200,0.0000026112,0.0000026024,0.0000025959,0.0000025914, +0.0000025881,0.0000025863,0.0000025857,0.0000025847,0.0000025811, +0.0000025754,0.0000025697,0.0000025650,0.0000025616,0.0000025556, +0.0000025467,0.0000025367,0.0000025275,0.0000025256,0.0000025293, +0.0000025317,0.0000025287,0.0000025224,0.0000025164,0.0000025060, +0.0000024876,0.0000024677,0.0000024536,0.0000024459,0.0000024424, +0.0000024417,0.0000024442,0.0000024508,0.0000024627,0.0000024819, +0.0000025059,0.0000025256,0.0000025354,0.0000025399,0.0000025450, +0.0000025468,0.0000025390,0.0000025242,0.0000025136,0.0000025094, +0.0000025062,0.0000025048,0.0000025046,0.0000025048,0.0000025087, +0.0000025160,0.0000025214,0.0000025225,0.0000025206,0.0000025151, +0.0000025083,0.0000025033,0.0000025018,0.0000025032,0.0000025062, +0.0000025095,0.0000025111,0.0000025093,0.0000025032,0.0000024954, +0.0000024901,0.0000024897,0.0000024930,0.0000024993,0.0000025074, +0.0000025150,0.0000025196,0.0000025209,0.0000025200,0.0000025175, +0.0000025150,0.0000025132,0.0000025131,0.0000025147,0.0000025165, +0.0000025179,0.0000025211,0.0000025285,0.0000025417,0.0000025571, +0.0000025696,0.0000025787,0.0000025865,0.0000025932,0.0000025975, +0.0000025995,0.0000026004,0.0000026019,0.0000026051,0.0000026098, +0.0000026139,0.0000026159,0.0000026159,0.0000026142,0.0000026124, +0.0000026127,0.0000026176,0.0000026266,0.0000026363,0.0000026433, +0.0000026464,0.0000026483,0.0000026514,0.0000026543,0.0000026570, +0.0000026617,0.0000026669,0.0000026675,0.0000026583,0.0000026421, +0.0000026287,0.0000026247,0.0000026302,0.0000026465,0.0000026617, +0.0000026666,0.0000026753,0.0000027008,0.0000027275,0.0000027425, +0.0000027519,0.0000027544,0.0000027542,0.0000027594,0.0000027658, +0.0000027684,0.0000027680,0.0000027650,0.0000027630,0.0000027661, +0.0000027756,0.0000027888,0.0000027965,0.0000027959,0.0000027882, +0.0000027788,0.0000027715,0.0000027679,0.0000027665,0.0000027661, +0.0000027681,0.0000027707,0.0000027710,0.0000027689,0.0000027657, +0.0000027613,0.0000027565,0.0000027535,0.0000027546,0.0000027602, +0.0000027645,0.0000027643,0.0000027581,0.0000027487,0.0000027430, +0.0000027429,0.0000027437,0.0000027447,0.0000027496,0.0000027572, +0.0000027632,0.0000027664,0.0000027680,0.0000027680,0.0000027663, +0.0000027630,0.0000027591,0.0000027559,0.0000027533,0.0000027494, +0.0000027407,0.0000027305,0.0000027254,0.0000027242,0.0000027229, +0.0000027217,0.0000027188,0.0000027138,0.0000027139,0.0000027155, +0.0000027077,0.0000026927,0.0000026847,0.0000026843,0.0000026840, +0.0000026815,0.0000026776,0.0000026727,0.0000026667,0.0000026608, +0.0000026564,0.0000026517,0.0000026443,0.0000026354,0.0000026266, +0.0000026169,0.0000026054,0.0000025957,0.0000025909,0.0000025883, +0.0000025820,0.0000025716,0.0000025615,0.0000025550,0.0000025514, +0.0000025498,0.0000025471,0.0000025403,0.0000025292,0.0000025133, +0.0000024966,0.0000024873,0.0000024861,0.0000024888,0.0000024909, +0.0000024923,0.0000024966,0.0000025011,0.0000025023,0.0000025012, +0.0000024998,0.0000024981,0.0000024962,0.0000024923,0.0000024858, +0.0000024734,0.0000024570,0.0000024418,0.0000024290,0.0000024204, +0.0000024202,0.0000024277,0.0000024346,0.0000024340,0.0000024304, +0.0000024285,0.0000024302,0.0000024370,0.0000024578,0.0000024952, +0.0000025283,0.0000025432,0.0000025668,0.0000026184,0.0000026646, +0.0000026788,0.0000026889,0.0000027068,0.0000027168,0.0000027146, +0.0000027022,0.0000026841,0.0000026665,0.0000026518,0.0000026477, +0.0000026541,0.0000026640,0.0000026774,0.0000027026,0.0000027262, +0.0000027412,0.0000027503,0.0000027492,0.0000027410,0.0000027346, +0.0000027237,0.0000027203,0.0000027169,0.0000027100,0.0000027099, +0.0000027147,0.0000027197,0.0000027227,0.0000027265,0.0000027275, +0.0000027244,0.0000027160,0.0000027049,0.0000026917,0.0000026790, +0.0000026684,0.0000026597,0.0000026510,0.0000026415,0.0000026340, +0.0000026310,0.0000026286,0.0000026279,0.0000026280,0.0000026285, +0.0000026298,0.0000026309,0.0000026322,0.0000026327,0.0000026321, +0.0000026315,0.0000026316,0.0000026324,0.0000026340,0.0000026345, +0.0000026338,0.0000026319,0.0000026296,0.0000026259,0.0000026212, +0.0000026167,0.0000026136,0.0000026119,0.0000026131,0.0000026162, +0.0000026182,0.0000026198,0.0000026205,0.0000026197,0.0000026179, +0.0000026166,0.0000026161,0.0000026158,0.0000026152,0.0000026153, +0.0000026158,0.0000026152,0.0000026133,0.0000026098,0.0000026070, +0.0000026032,0.0000025971,0.0000025886,0.0000025773,0.0000025634, +0.0000025481,0.0000025324,0.0000025168,0.0000025005,0.0000024828, +0.0000024651,0.0000024508,0.0000024389,0.0000024244,0.0000024088, +0.0000023991,0.0000023984,0.0000024023,0.0000024078,0.0000024128, +0.0000024172,0.0000024209,0.0000024239,0.0000024260,0.0000024267, +0.0000024268,0.0000024267,0.0000024269,0.0000024269,0.0000024237, +0.0000024133,0.0000024003,0.0000023904,0.0000023888,0.0000023917, +0.0000023933,0.0000023915,0.0000023867,0.0000023829,0.0000023820, +0.0000023823,0.0000023824,0.0000023813,0.0000023789,0.0000023750, +0.0000023701,0.0000023672,0.0000023668,0.0000023674,0.0000023687, +0.0000023707,0.0000023736,0.0000023787,0.0000023836,0.0000023840, +0.0000023800,0.0000023765,0.0000023748,0.0000023743,0.0000023748, +0.0000023748,0.0000023704,0.0000023641,0.0000023605,0.0000023595, +0.0000023573,0.0000023487,0.0000023373,0.0000023305,0.0000023287, +0.0000023283,0.0000023254,0.0000023245,0.0000023360,0.0000023608, +0.0000023801,0.0000023949,0.0000024091,0.0000024199,0.0000024319, +0.0000024406,0.0000024666,0.0000025272,0.0000025767,0.0000025876, +0.0000025831,0.0000025680,0.0000025535,0.0000025401,0.0000025285, +0.0000025234,0.0000025235,0.0000025233,0.0000025126,0.0000024835, +0.0000024644,0.0000024814,0.0000025087,0.0000025696,0.0000026217, +0.0000026397,0.0000026561,0.0000026746,0.0000026822,0.0000026824, +0.0000026828,0.0000026848,0.0000026879,0.0000026907,0.0000026919, +0.0000026920,0.0000026919,0.0000026911,0.0000026888,0.0000026860, +0.0000026851,0.0000026862,0.0000026890,0.0000026928,0.0000026964, +0.0000026988,0.0000027001,0.0000027003,0.0000026990,0.0000026751, +0.0000026753,0.0000026768,0.0000026765,0.0000026730,0.0000026654, +0.0000026546,0.0000026412,0.0000026282,0.0000026177,0.0000026109, +0.0000026056,0.0000026007,0.0000025948,0.0000025879,0.0000025801, +0.0000025725,0.0000025659,0.0000025601,0.0000025544,0.0000025504, +0.0000025476,0.0000025452,0.0000025427,0.0000025404,0.0000025382, +0.0000025366,0.0000025367,0.0000025398,0.0000025454,0.0000025526, +0.0000025608,0.0000025690,0.0000025763,0.0000025823,0.0000025871, +0.0000025911,0.0000025943,0.0000025970,0.0000025994,0.0000026021, +0.0000026053,0.0000026090,0.0000026127,0.0000026154,0.0000026161, +0.0000026149,0.0000026114,0.0000026060,0.0000025996,0.0000025928, +0.0000025868,0.0000025819,0.0000025775,0.0000025721,0.0000025643, +0.0000025544,0.0000025445,0.0000025361,0.0000025264,0.0000025111, +0.0000024901,0.0000024703,0.0000024577,0.0000024523,0.0000024494, +0.0000024476,0.0000024452,0.0000024432,0.0000024406,0.0000024375, +0.0000024338,0.0000024294,0.0000024264,0.0000024262,0.0000024269, +0.0000024284,0.0000024285,0.0000024256,0.0000024269,0.0000024364, +0.0000024460,0.0000024557,0.0000024652,0.0000024711,0.0000024774, +0.0000024848,0.0000024915,0.0000024985,0.0000025040,0.0000025073, +0.0000025074,0.0000025061,0.0000025062,0.0000025071,0.0000025080, +0.0000025100,0.0000025152,0.0000025235,0.0000025324,0.0000025395, +0.0000025431,0.0000025445,0.0000025503,0.0000025665,0.0000025792, +0.0000025794,0.0000025681,0.0000025579,0.0000025499,0.0000025430, +0.0000025420,0.0000025479,0.0000025584,0.0000025669,0.0000025735, +0.0000025797,0.0000025820,0.0000025816,0.0000025815,0.0000025794, +0.0000025730,0.0000025623,0.0000025519,0.0000025430,0.0000025326, +0.0000025248,0.0000025123,0.0000024978,0.0000024947,0.0000024968, +0.0000025008,0.0000025089,0.0000025177,0.0000025217,0.0000025223, +0.0000025212,0.0000025189,0.0000025153,0.0000025112,0.0000025077, +0.0000025072,0.0000025101,0.0000025153,0.0000025206,0.0000025248, +0.0000025293,0.0000025354,0.0000025422,0.0000025468,0.0000025466, +0.0000025435,0.0000025413,0.0000025404,0.0000025376,0.0000025316, +0.0000025248,0.0000025178,0.0000025113,0.0000025086,0.0000025116, +0.0000025151,0.0000025175,0.0000025221,0.0000025315,0.0000025403, +0.0000025422,0.0000025357,0.0000025225,0.0000025063,0.0000024908, +0.0000024785,0.0000024706,0.0000024666,0.0000024649,0.0000024640, +0.0000024631,0.0000024617,0.0000024595,0.0000024572,0.0000024548, +0.0000024537,0.0000024541,0.0000024543,0.0000024538,0.0000024528, +0.0000024530,0.0000024544,0.0000024576,0.0000024613,0.0000024646, +0.0000024669,0.0000024689,0.0000024707,0.0000024722,0.0000024739, +0.0000024764,0.0000024806,0.0000024856,0.0000024916,0.0000025021, +0.0000025135,0.0000025130,0.0000024916,0.0000024762,0.0000024888, +0.0000025242,0.0000025580,0.0000025793,0.0000025910,0.0000025985, +0.0000026023,0.0000026021,0.0000025987,0.0000025943,0.0000025916, +0.0000025920,0.0000025945,0.0000025975,0.0000026022,0.0000026086, +0.0000026164,0.0000026239,0.0000026276,0.0000026278,0.0000026231, +0.0000026172,0.0000026153,0.0000026154,0.0000026136,0.0000026128, +0.0000026160,0.0000026212,0.0000026219,0.0000026170,0.0000026112, +0.0000026081,0.0000026063,0.0000026041,0.0000026028,0.0000026051, +0.0000026140,0.0000026232,0.0000026271,0.0000026284,0.0000026305, +0.0000026342,0.0000026372,0.0000026384,0.0000026400,0.0000026419, +0.0000026418,0.0000026384,0.0000026324,0.0000026271,0.0000026250, +0.0000026253,0.0000026257,0.0000026245,0.0000026216,0.0000026185, +0.0000026157,0.0000026122,0.0000026077,0.0000026030,0.0000026002, +0.0000026003,0.0000026022,0.0000026026,0.0000026007,0.0000025980, +0.0000025956,0.0000025937,0.0000025926,0.0000025916,0.0000025896, +0.0000025858,0.0000025799,0.0000025730,0.0000025663,0.0000025640, +0.0000025665,0.0000025718,0.0000025789,0.0000025855,0.0000025880, +0.0000025865,0.0000025815,0.0000025747,0.0000025677,0.0000025622, +0.0000025594,0.0000025586,0.0000025579,0.0000025545,0.0000025473, +0.0000025394,0.0000025355,0.0000025351,0.0000025317,0.0000025230, +0.0000025147,0.0000025124,0.0000025158,0.0000025231,0.0000025308, +0.0000025356,0.0000025386,0.0000025425,0.0000025455,0.0000025455, +0.0000025444,0.0000025448,0.0000025464,0.0000025460,0.0000025420, +0.0000025348,0.0000025271,0.0000025207,0.0000025167,0.0000025140, +0.0000025094,0.0000024999,0.0000024886,0.0000024838,0.0000024853, +0.0000024846,0.0000024832,0.0000024812,0.0000024808,0.0000024804, +0.0000024785,0.0000024770,0.0000024776,0.0000024816,0.0000024888, +0.0000024993,0.0000025091,0.0000025149,0.0000025186,0.0000025238, +0.0000025302,0.0000025354,0.0000025419,0.0000025515,0.0000025637, +0.0000025770,0.0000025896,0.0000025991,0.0000026038,0.0000026044, +0.0000026024,0.0000025974,0.0000025942,0.0000025982,0.0000026139, +0.0000026352,0.0000026574,0.0000026809,0.0000027040,0.0000027202, +0.0000027258,0.0000027287,0.0000027394,0.0000027538,0.0000027610, +0.0000027596,0.0000027540,0.0000027480,0.0000027432,0.0000027391, +0.0000027368,0.0000027370,0.0000027375,0.0000027355,0.0000027302, +0.0000027219,0.0000027123,0.0000027027,0.0000026941,0.0000026871, +0.0000026813,0.0000026781,0.0000026779,0.0000026803,0.0000026858, +0.0000026920,0.0000026971,0.0000027017,0.0000027053,0.0000027086, +0.0000027108,0.0000027109,0.0000027083,0.0000027033,0.0000026978, +0.0000026938,0.0000026908,0.0000026876,0.0000026838,0.0000026774, +0.0000026695,0.0000026635,0.0000026595,0.0000026551,0.0000026519, +0.0000026508,0.0000026505,0.0000026508,0.0000026522,0.0000026552, +0.0000026578,0.0000026593,0.0000026608,0.0000026622,0.0000026640, +0.0000026663,0.0000026673,0.0000026675,0.0000026686,0.0000026721, +0.0000026785,0.0000026877,0.0000026991,0.0000027093,0.0000027149, +0.0000027179,0.0000027185,0.0000027184,0.0000027174,0.0000027140, +0.0000027052,0.0000026938,0.0000026832,0.0000026765,0.0000026733, +0.0000026703,0.0000026625,0.0000026416,0.0000026059,0.0000025690, +0.0000025441,0.0000025318,0.0000025257,0.0000025225,0.0000025276, +0.0000025391,0.0000025503,0.0000025557,0.0000025534,0.0000025417, +0.0000025272,0.0000025136,0.0000025030,0.0000024936,0.0000024875, +0.0000024850,0.0000024832,0.0000024818,0.0000024811,0.0000024829, +0.0000024877,0.0000024953,0.0000025026,0.0000025084,0.0000025162, +0.0000025241,0.0000025227,0.0000025095,0.0000025068,0.0000025400, +0.0000026049,0.0000026476,0.0000026516,0.0000026488,0.0000026463, +0.0000026423,0.0000026395,0.0000026362,0.0000026311,0.0000026290, +0.0000026268,0.0000026248,0.0000026244,0.0000026253,0.0000026252, +0.0000026224,0.0000026160,0.0000026157,0.0000026108,0.0000025987, +0.0000025922,0.0000025943,0.0000026012,0.0000026071,0.0000026123, +0.0000026162,0.0000026167,0.0000026137,0.0000026124,0.0000026168, +0.0000026271,0.0000026379,0.0000026474,0.0000026549,0.0000026585, +0.0000026579,0.0000026546,0.0000026467,0.0000026382,0.0000026318, +0.0000026277,0.0000026244,0.0000026213,0.0000026202,0.0000026220, +0.0000026161,0.0000025810,0.0000025401,0.0000025255,0.0000025280, +0.0000025351,0.0000025421,0.0000025529,0.0000025606,0.0000025647, +0.0000025713,0.0000025765,0.0000025797,0.0000025866,0.0000026024, +0.0000026197,0.0000026308,0.0000026388,0.0000026374,0.0000026246, +0.0000026224,0.0000026462,0.0000026794,0.0000027002,0.0000027089, +0.0000027102,0.0000027055,0.0000026969,0.0000026908,0.0000026899, +0.0000026974,0.0000027128,0.0000027310,0.0000027473,0.0000027591, +0.0000027663,0.0000027708,0.0000027738,0.0000027751,0.0000027740, +0.0000027717,0.0000027690,0.0000027659,0.0000027630,0.0000027606, +0.0000027553,0.0000027449,0.0000027329,0.0000027257,0.0000027246, +0.0000027260,0.0000027286,0.0000027322,0.0000027379,0.0000027457, +0.0000027535,0.0000027600,0.0000027652,0.0000027676,0.0000027660, +0.0000027620,0.0000027577,0.0000027520,0.0000027438,0.0000027351, +0.0000027258,0.0000027141,0.0000027039,0.0000027021,0.0000027085, +0.0000027195,0.0000027317,0.0000027399,0.0000027386,0.0000027292, +0.0000027194,0.0000027131,0.0000027053,0.0000026909,0.0000026705, +0.0000026497,0.0000026349,0.0000026271,0.0000026231,0.0000026202, +0.0000026172,0.0000026144,0.0000026119,0.0000026097,0.0000026083, +0.0000026072,0.0000026069,0.0000026099,0.0000026168,0.0000026227, +0.0000026238,0.0000026210,0.0000026138,0.0000026056,0.0000025975, +0.0000025913,0.0000025862,0.0000025827,0.0000025810,0.0000025800, +0.0000025775,0.0000025733,0.0000025694,0.0000025651,0.0000025606, +0.0000025549,0.0000025474,0.0000025390,0.0000025310,0.0000025285, +0.0000025315,0.0000025336,0.0000025303,0.0000025237,0.0000025163, +0.0000025007,0.0000024765,0.0000024553,0.0000024429,0.0000024356, +0.0000024304,0.0000024275,0.0000024279,0.0000024319,0.0000024383, +0.0000024483,0.0000024680,0.0000024975,0.0000025232,0.0000025362, +0.0000025423,0.0000025472,0.0000025466,0.0000025365,0.0000025229, +0.0000025144,0.0000025096,0.0000025060,0.0000025052,0.0000025051, +0.0000025059,0.0000025113,0.0000025179,0.0000025202,0.0000025195, +0.0000025172,0.0000025136,0.0000025085,0.0000025031,0.0000025001, +0.0000024992,0.0000025003,0.0000025020,0.0000025025,0.0000025007, +0.0000024964,0.0000024916,0.0000024902,0.0000024920,0.0000024980, +0.0000025066,0.0000025156,0.0000025225,0.0000025254,0.0000025252, +0.0000025231,0.0000025206,0.0000025188,0.0000025181,0.0000025183, +0.0000025193,0.0000025191,0.0000025187,0.0000025216,0.0000025294, +0.0000025420,0.0000025563,0.0000025681,0.0000025780,0.0000025876, +0.0000025945,0.0000025973,0.0000025978,0.0000025982,0.0000026000, +0.0000026043,0.0000026092,0.0000026118,0.0000026123,0.0000026119, +0.0000026108,0.0000026092,0.0000026089,0.0000026120,0.0000026188, +0.0000026276,0.0000026361,0.0000026418,0.0000026444,0.0000026466, +0.0000026508,0.0000026573,0.0000026628,0.0000026674,0.0000026685, +0.0000026605,0.0000026417,0.0000026262,0.0000026226,0.0000026276, +0.0000026425,0.0000026582,0.0000026644,0.0000026713,0.0000026936, +0.0000027198,0.0000027362,0.0000027469,0.0000027505,0.0000027509, +0.0000027572,0.0000027653,0.0000027681,0.0000027664,0.0000027609, +0.0000027566,0.0000027588,0.0000027675,0.0000027806,0.0000027886, +0.0000027890,0.0000027836,0.0000027764,0.0000027705,0.0000027684, +0.0000027678,0.0000027680,0.0000027697,0.0000027716,0.0000027716, +0.0000027688,0.0000027642,0.0000027596,0.0000027565,0.0000027564, +0.0000027588,0.0000027623,0.0000027636,0.0000027617,0.0000027544, +0.0000027442,0.0000027376,0.0000027372,0.0000027378,0.0000027381, +0.0000027427,0.0000027517,0.0000027596,0.0000027637,0.0000027655, +0.0000027654,0.0000027631,0.0000027592,0.0000027554,0.0000027528, +0.0000027509,0.0000027479,0.0000027403,0.0000027297,0.0000027226, +0.0000027205,0.0000027206,0.0000027209,0.0000027186,0.0000027141, +0.0000027147,0.0000027169,0.0000027104,0.0000026943,0.0000026844, +0.0000026825,0.0000026817,0.0000026794,0.0000026764,0.0000026730, +0.0000026683,0.0000026631,0.0000026600,0.0000026581,0.0000026538, +0.0000026459,0.0000026365,0.0000026272,0.0000026170,0.0000026054, +0.0000025958,0.0000025907,0.0000025865,0.0000025787,0.0000025679, +0.0000025576,0.0000025501,0.0000025452,0.0000025432,0.0000025401, +0.0000025337,0.0000025234,0.0000025092,0.0000024939,0.0000024842, +0.0000024824,0.0000024849,0.0000024882,0.0000024930,0.0000024998, +0.0000025037,0.0000025036,0.0000025019,0.0000024998,0.0000024974, +0.0000024940,0.0000024888,0.0000024793,0.0000024646,0.0000024490, +0.0000024356,0.0000024251,0.0000024212,0.0000024262,0.0000024341, +0.0000024352,0.0000024308,0.0000024278,0.0000024291,0.0000024334, +0.0000024427,0.0000024677,0.0000025079,0.0000025368,0.0000025530, +0.0000025861,0.0000026378,0.0000026686,0.0000026738,0.0000026830, +0.0000026977,0.0000027014,0.0000026935,0.0000026774,0.0000026600, +0.0000026427,0.0000026319,0.0000026370,0.0000026498,0.0000026620, +0.0000026856,0.0000027150,0.0000027353,0.0000027473,0.0000027503, +0.0000027443,0.0000027390,0.0000027293,0.0000027231,0.0000027189, +0.0000027121,0.0000027114,0.0000027159,0.0000027216,0.0000027248, +0.0000027281,0.0000027283,0.0000027244,0.0000027160,0.0000027057, +0.0000026956,0.0000026864,0.0000026787,0.0000026719,0.0000026651, +0.0000026566,0.0000026487,0.0000026422,0.0000026390,0.0000026371, +0.0000026353,0.0000026348,0.0000026344,0.0000026339,0.0000026325, +0.0000026313,0.0000026320,0.0000026290,0.0000026275,0.0000026261, +0.0000026247,0.0000026236,0.0000026223,0.0000026203,0.0000026184, +0.0000026149,0.0000026114,0.0000026083,0.0000026068,0.0000026082, +0.0000026118,0.0000026155,0.0000026184,0.0000026202,0.0000026213, +0.0000026228,0.0000026247,0.0000026266,0.0000026276,0.0000026275, +0.0000026263,0.0000026252,0.0000026229,0.0000026199,0.0000026141, +0.0000026060,0.0000025952,0.0000025828,0.0000025696,0.0000025567, +0.0000025449,0.0000025342,0.0000025235,0.0000025120,0.0000025003, +0.0000024879,0.0000024739,0.0000024599,0.0000024483,0.0000024386, +0.0000024275,0.0000024148,0.0000024059,0.0000024041,0.0000024058, +0.0000024079,0.0000024096,0.0000024122,0.0000024154,0.0000024188, +0.0000024215,0.0000024228,0.0000024228,0.0000024222,0.0000024216, +0.0000024213,0.0000024207,0.0000024175,0.0000024079,0.0000023954, +0.0000023854,0.0000023837,0.0000023873,0.0000023898,0.0000023893, +0.0000023862,0.0000023823,0.0000023803,0.0000023796,0.0000023785, +0.0000023760,0.0000023718,0.0000023666,0.0000023617,0.0000023607, +0.0000023618,0.0000023641,0.0000023666,0.0000023686,0.0000023702, +0.0000023725,0.0000023764,0.0000023783,0.0000023766,0.0000023741, +0.0000023725,0.0000023717,0.0000023721,0.0000023723,0.0000023700, +0.0000023637,0.0000023582,0.0000023565,0.0000023559,0.0000023509, +0.0000023395,0.0000023294,0.0000023256,0.0000023252,0.0000023245, +0.0000023235,0.0000023300,0.0000023517,0.0000023744,0.0000023897, +0.0000024038,0.0000024150,0.0000024252,0.0000024366,0.0000024507, +0.0000024945,0.0000025546,0.0000025851,0.0000025865,0.0000025741, +0.0000025597,0.0000025450,0.0000025292,0.0000025209,0.0000025187, +0.0000025190,0.0000025163,0.0000024966,0.0000024665,0.0000024715, +0.0000024943,0.0000025391,0.0000026020,0.0000026327,0.0000026440, +0.0000026613,0.0000026767,0.0000026823,0.0000026825,0.0000026824, +0.0000026831,0.0000026849,0.0000026872,0.0000026894,0.0000026908, +0.0000026906,0.0000026886,0.0000026863,0.0000026854,0.0000026858, +0.0000026862,0.0000026847,0.0000026812,0.0000026780,0.0000026764, +0.0000026762,0.0000026762,0.0000026553,0.0000026554,0.0000026562, +0.0000026557,0.0000026524,0.0000026457,0.0000026368,0.0000026253, +0.0000026145,0.0000026054,0.0000025981,0.0000025911,0.0000025843, +0.0000025775,0.0000025714,0.0000025656,0.0000025607,0.0000025567, +0.0000025526,0.0000025478,0.0000025432,0.0000025399,0.0000025373, +0.0000025348,0.0000025320,0.0000025290,0.0000025260,0.0000025233, +0.0000025224,0.0000025235,0.0000025261,0.0000025305,0.0000025376, +0.0000025471,0.0000025570,0.0000025659,0.0000025732,0.0000025792, +0.0000025844,0.0000025887,0.0000025917,0.0000025934,0.0000025945, +0.0000025957,0.0000025971,0.0000025976,0.0000025968,0.0000025946, +0.0000025911,0.0000025871,0.0000025831,0.0000025794,0.0000025754, +0.0000025698,0.0000025618,0.0000025515,0.0000025414,0.0000025335, +0.0000025241,0.0000025079,0.0000024870,0.0000024688,0.0000024571, +0.0000024514,0.0000024495,0.0000024489,0.0000024478,0.0000024462, +0.0000024442,0.0000024410,0.0000024372,0.0000024329,0.0000024287, +0.0000024263,0.0000024256,0.0000024258,0.0000024271,0.0000024274, +0.0000024251,0.0000024259,0.0000024336,0.0000024421,0.0000024505, +0.0000024608,0.0000024678,0.0000024737,0.0000024810,0.0000024879, +0.0000024953,0.0000025019,0.0000025064,0.0000025089,0.0000025093, +0.0000025096,0.0000025112,0.0000025138,0.0000025164,0.0000025200, +0.0000025257,0.0000025324,0.0000025379,0.0000025413,0.0000025448, +0.0000025551,0.0000025709,0.0000025792,0.0000025768,0.0000025648, +0.0000025548,0.0000025482,0.0000025426,0.0000025417,0.0000025465, +0.0000025552,0.0000025640,0.0000025707,0.0000025774,0.0000025821, +0.0000025822,0.0000025815,0.0000025808,0.0000025772,0.0000025710, +0.0000025614,0.0000025516,0.0000025432,0.0000025338,0.0000025267, +0.0000025150,0.0000025003,0.0000024955,0.0000024971,0.0000025004, +0.0000025081,0.0000025170,0.0000025212,0.0000025218,0.0000025196, +0.0000025163,0.0000025127,0.0000025088,0.0000025051,0.0000025032, +0.0000025043,0.0000025083,0.0000025149,0.0000025212,0.0000025253, +0.0000025287,0.0000025333,0.0000025388,0.0000025418,0.0000025421, +0.0000025418,0.0000025423,0.0000025407,0.0000025345,0.0000025260, +0.0000025186,0.0000025121,0.0000025074,0.0000025085,0.0000025147, +0.0000025181,0.0000025190,0.0000025241,0.0000025331,0.0000025403, +0.0000025416,0.0000025360,0.0000025257,0.0000025129,0.0000024996, +0.0000024879,0.0000024788,0.0000024728,0.0000024692,0.0000024670, +0.0000024654,0.0000024639,0.0000024618,0.0000024597,0.0000024591, +0.0000024597,0.0000024600,0.0000024591,0.0000024575,0.0000024564, +0.0000024572,0.0000024600,0.0000024636,0.0000024664,0.0000024681, +0.0000024694,0.0000024698,0.0000024703,0.0000024716,0.0000024734, +0.0000024754,0.0000024785,0.0000024824,0.0000024904,0.0000025067, +0.0000025204,0.0000025134,0.0000024878,0.0000024727,0.0000024820, +0.0000025095,0.0000025375,0.0000025592,0.0000025744,0.0000025830, +0.0000025858,0.0000025844,0.0000025808,0.0000025776,0.0000025767, +0.0000025777,0.0000025810,0.0000025866,0.0000025944,0.0000026032, +0.0000026106,0.0000026167,0.0000026217,0.0000026225,0.0000026198, +0.0000026166,0.0000026170,0.0000026177,0.0000026157,0.0000026152, +0.0000026176,0.0000026196,0.0000026177,0.0000026129,0.0000026083, +0.0000026055,0.0000026031,0.0000026007,0.0000026004,0.0000026067, +0.0000026181,0.0000026284,0.0000026354,0.0000026394,0.0000026416, +0.0000026442,0.0000026477,0.0000026525,0.0000026577,0.0000026597, +0.0000026583,0.0000026530,0.0000026460,0.0000026398,0.0000026353, +0.0000026311,0.0000026261,0.0000026195,0.0000026123,0.0000026076, +0.0000026065,0.0000026064,0.0000026063,0.0000026069,0.0000026075, +0.0000026081,0.0000026071,0.0000026038,0.0000025989,0.0000025945, +0.0000025920,0.0000025913,0.0000025914,0.0000025899,0.0000025857, +0.0000025800,0.0000025744,0.0000025694,0.0000025674,0.0000025702, +0.0000025755,0.0000025815,0.0000025867,0.0000025889,0.0000025877, +0.0000025829,0.0000025761,0.0000025688,0.0000025627,0.0000025596, +0.0000025592,0.0000025601,0.0000025599,0.0000025561,0.0000025468, +0.0000025363,0.0000025296,0.0000025263,0.0000025263,0.0000025238, +0.0000025198,0.0000025183,0.0000025225,0.0000025290,0.0000025335, +0.0000025365,0.0000025410,0.0000025470,0.0000025502,0.0000025500, +0.0000025481,0.0000025471,0.0000025468,0.0000025456,0.0000025406, +0.0000025315,0.0000025216,0.0000025143,0.0000025100,0.0000025081, +0.0000025065,0.0000025011,0.0000024930,0.0000024871,0.0000024829, +0.0000024790,0.0000024757,0.0000024745,0.0000024758,0.0000024770, +0.0000024755,0.0000024725,0.0000024705,0.0000024715,0.0000024791, +0.0000024900,0.0000024983,0.0000025031,0.0000025076,0.0000025134, +0.0000025192,0.0000025271,0.0000025378,0.0000025490,0.0000025603, +0.0000025730,0.0000025851,0.0000025942,0.0000026005,0.0000026038, +0.0000026028,0.0000025985,0.0000025979,0.0000026085,0.0000026272, +0.0000026465,0.0000026659,0.0000026872,0.0000027065,0.0000027176, +0.0000027208,0.0000027267,0.0000027408,0.0000027546,0.0000027583, +0.0000027551,0.0000027481,0.0000027418,0.0000027372,0.0000027347, +0.0000027341,0.0000027341,0.0000027326,0.0000027287,0.0000027230, +0.0000027156,0.0000027061,0.0000026962,0.0000026866,0.0000026772, +0.0000026706,0.0000026674,0.0000026678,0.0000026723,0.0000026788, +0.0000026849,0.0000026904,0.0000026943,0.0000026969,0.0000026985, +0.0000026977,0.0000026939,0.0000026876,0.0000026810,0.0000026769, +0.0000026761,0.0000026778,0.0000026794,0.0000026792,0.0000026737, +0.0000026682,0.0000026624,0.0000026565,0.0000026502,0.0000026447, +0.0000026413,0.0000026387,0.0000026374,0.0000026375,0.0000026382, +0.0000026388,0.0000026390,0.0000026400,0.0000026403,0.0000026411, +0.0000026431,0.0000026443,0.0000026437,0.0000026429,0.0000026440, +0.0000026480,0.0000026568,0.0000026708,0.0000026854,0.0000026971, +0.0000027056,0.0000027109,0.0000027143,0.0000027164,0.0000027136, +0.0000027083,0.0000026988,0.0000026890,0.0000026814,0.0000026752, +0.0000026706,0.0000026674,0.0000026582,0.0000026333,0.0000025947, +0.0000025574,0.0000025347,0.0000025251,0.0000025211,0.0000025225, +0.0000025293,0.0000025386,0.0000025448,0.0000025447,0.0000025369, +0.0000025262,0.0000025147,0.0000025012,0.0000024878,0.0000024812, +0.0000024814,0.0000024826,0.0000024830,0.0000024833,0.0000024848, +0.0000024880,0.0000024937,0.0000025011,0.0000025083,0.0000025147, +0.0000025256,0.0000025292,0.0000025155,0.0000025071,0.0000025306, +0.0000025966,0.0000026424,0.0000026468,0.0000026448,0.0000026443, +0.0000026425,0.0000026405,0.0000026373,0.0000026319,0.0000026292, +0.0000026271,0.0000026257,0.0000026249,0.0000026246,0.0000026237, +0.0000026182,0.0000026124,0.0000026085,0.0000025840,0.0000025575, +0.0000025481,0.0000025510,0.0000025625,0.0000025770,0.0000025930, +0.0000026052,0.0000026093,0.0000026063,0.0000026054,0.0000026109, +0.0000026218,0.0000026324,0.0000026420,0.0000026487,0.0000026511, +0.0000026500,0.0000026463,0.0000026399,0.0000026333,0.0000026281, +0.0000026231,0.0000026176,0.0000026152,0.0000026167,0.0000026144, +0.0000025891,0.0000025466,0.0000025222,0.0000025213,0.0000025280, +0.0000025341,0.0000025404,0.0000025511,0.0000025580,0.0000025608, +0.0000025661,0.0000025713,0.0000025744,0.0000025801,0.0000025941, +0.0000026121,0.0000026239,0.0000026327,0.0000026336,0.0000026224, +0.0000026159,0.0000026296,0.0000026605,0.0000026876,0.0000027034, +0.0000027097,0.0000027085,0.0000027014,0.0000026932,0.0000026891, +0.0000026910,0.0000027009,0.0000027159,0.0000027327,0.0000027478, +0.0000027590,0.0000027661,0.0000027706,0.0000027724,0.0000027715, +0.0000027685,0.0000027636,0.0000027572,0.0000027517,0.0000027475, +0.0000027405,0.0000027294,0.0000027195,0.0000027166,0.0000027186, +0.0000027211,0.0000027220,0.0000027219,0.0000027247,0.0000027325, +0.0000027430,0.0000027517,0.0000027582,0.0000027624,0.0000027627, +0.0000027602,0.0000027566,0.0000027510,0.0000027418,0.0000027294, +0.0000027149,0.0000027019,0.0000026981,0.0000027044,0.0000027140, +0.0000027223,0.0000027295,0.0000027338,0.0000027319,0.0000027226, +0.0000027102,0.0000026991,0.0000026870,0.0000026705,0.0000026511, +0.0000026340,0.0000026228,0.0000026165,0.0000026120,0.0000026080, +0.0000026045,0.0000026019,0.0000026003,0.0000025987,0.0000025973, +0.0000025976,0.0000025992,0.0000026005,0.0000026041,0.0000026115, +0.0000026173,0.0000026181,0.0000026147,0.0000026086,0.0000026028, +0.0000025966,0.0000025900,0.0000025842,0.0000025799,0.0000025769, +0.0000025743,0.0000025714,0.0000025684,0.0000025645,0.0000025601, +0.0000025545,0.0000025479,0.0000025410,0.0000025345,0.0000025318, +0.0000025345,0.0000025366,0.0000025333,0.0000025265,0.0000025168, +0.0000024960,0.0000024692,0.0000024505,0.0000024395,0.0000024283, +0.0000024176,0.0000024109,0.0000024097,0.0000024134,0.0000024219, +0.0000024314,0.0000024402,0.0000024584,0.0000024915,0.0000025224, +0.0000025382,0.0000025453,0.0000025481,0.0000025451,0.0000025338, +0.0000025220,0.0000025144,0.0000025088,0.0000025062,0.0000025060, +0.0000025057,0.0000025078,0.0000025140,0.0000025183,0.0000025178, +0.0000025157,0.0000025138,0.0000025116,0.0000025078,0.0000025033, +0.0000025001,0.0000024988,0.0000024993,0.0000025001,0.0000025004, +0.0000025002,0.0000024995,0.0000024994,0.0000025010,0.0000025056, +0.0000025120,0.0000025187,0.0000025244,0.0000025277,0.0000025285, +0.0000025281,0.0000025272,0.0000025264,0.0000025257,0.0000025252, +0.0000025252,0.0000025247,0.0000025224,0.0000025204,0.0000025221, +0.0000025300,0.0000025422,0.0000025552,0.0000025664,0.0000025778, +0.0000025886,0.0000025943,0.0000025946,0.0000025939,0.0000025948, +0.0000025986,0.0000026040,0.0000026081,0.0000026093,0.0000026093, +0.0000026094,0.0000026088,0.0000026066,0.0000026046,0.0000026056, +0.0000026107,0.0000026187,0.0000026288,0.0000026381,0.0000026435, +0.0000026469,0.0000026526,0.0000026612,0.0000026680,0.0000026718, +0.0000026722,0.0000026643,0.0000026446,0.0000026271,0.0000026231, +0.0000026273,0.0000026400,0.0000026551,0.0000026625,0.0000026688, +0.0000026879,0.0000027124,0.0000027293,0.0000027406,0.0000027451, +0.0000027465,0.0000027544,0.0000027634,0.0000027658,0.0000027629, +0.0000027571,0.0000027535,0.0000027558,0.0000027629,0.0000027730, +0.0000027798,0.0000027813,0.0000027793,0.0000027750,0.0000027704, +0.0000027683,0.0000027680,0.0000027689,0.0000027704,0.0000027717, +0.0000027713,0.0000027683,0.0000027634,0.0000027597,0.0000027591, +0.0000027617,0.0000027640,0.0000027647,0.0000027629,0.0000027582, +0.0000027496,0.0000027389,0.0000027323,0.0000027322,0.0000027334, +0.0000027339,0.0000027378,0.0000027470,0.0000027558,0.0000027611, +0.0000027637,0.0000027636,0.0000027605,0.0000027551,0.0000027506, +0.0000027481,0.0000027471,0.0000027449,0.0000027386,0.0000027289, +0.0000027200,0.0000027164,0.0000027167,0.0000027187,0.0000027172, +0.0000027138,0.0000027149,0.0000027169,0.0000027113,0.0000026957, +0.0000026849,0.0000026821,0.0000026804,0.0000026773,0.0000026742, +0.0000026717,0.0000026686,0.0000026645,0.0000026619,0.0000026614, +0.0000026599,0.0000026547,0.0000026460,0.0000026365,0.0000026277, +0.0000026178,0.0000026061,0.0000025960,0.0000025900,0.0000025843, +0.0000025751,0.0000025638,0.0000025536,0.0000025462,0.0000025423, +0.0000025393,0.0000025361,0.0000025306,0.0000025217,0.0000025080, +0.0000024918,0.0000024809,0.0000024785,0.0000024817,0.0000024879, +0.0000024967,0.0000025043,0.0000025061,0.0000025036,0.0000025005, +0.0000024973,0.0000024948,0.0000024907,0.0000024831,0.0000024707, +0.0000024563,0.0000024429,0.0000024313,0.0000024241,0.0000024248, +0.0000024321,0.0000024359,0.0000024317,0.0000024264,0.0000024259, +0.0000024305,0.0000024358,0.0000024472,0.0000024795,0.0000025205, +0.0000025461,0.0000025672,0.0000026071,0.0000026505,0.0000026655, +0.0000026663,0.0000026752,0.0000026833,0.0000026801,0.0000026693, +0.0000026545,0.0000026386,0.0000026260,0.0000026251,0.0000026339, +0.0000026466,0.0000026674,0.0000026996,0.0000027271,0.0000027432, +0.0000027500,0.0000027472,0.0000027430,0.0000027359,0.0000027273, +0.0000027216,0.0000027144,0.0000027129,0.0000027164,0.0000027214, +0.0000027249,0.0000027280,0.0000027279,0.0000027242,0.0000027166, +0.0000027068,0.0000026984,0.0000026917,0.0000026863,0.0000026796, +0.0000026723,0.0000026619,0.0000026492,0.0000026386,0.0000026307, +0.0000026242,0.0000026195,0.0000026167,0.0000026174,0.0000026181, +0.0000026204,0.0000026222,0.0000026253,0.0000026269,0.0000026257, +0.0000026285,0.0000026258,0.0000026237,0.0000026229,0.0000026190, +0.0000026172,0.0000026122,0.0000026085,0.0000026060,0.0000026051, +0.0000026069,0.0000026110,0.0000026151,0.0000026183,0.0000026208, +0.0000026231,0.0000026260,0.0000026294,0.0000026321,0.0000026332, +0.0000026329,0.0000026302,0.0000026270,0.0000026220,0.0000026131, +0.0000025997,0.0000025826,0.0000025642,0.0000025473,0.0000025335, +0.0000025225,0.0000025142,0.0000025072,0.0000025001,0.0000024917, +0.0000024828,0.0000024739,0.0000024641,0.0000024537,0.0000024439, +0.0000024351,0.0000024264,0.0000024188,0.0000024129,0.0000024118, +0.0000024127,0.0000024124,0.0000024100,0.0000024089,0.0000024096, +0.0000024115,0.0000024141,0.0000024164,0.0000024178,0.0000024183, +0.0000024180,0.0000024171,0.0000024158,0.0000024133,0.0000024089, +0.0000024000,0.0000023897,0.0000023811,0.0000023792,0.0000023833, +0.0000023864,0.0000023869,0.0000023857,0.0000023826,0.0000023799, +0.0000023778,0.0000023748,0.0000023705,0.0000023655,0.0000023612, +0.0000023586,0.0000023582,0.0000023598,0.0000023622,0.0000023643, +0.0000023658,0.0000023668,0.0000023670,0.0000023681,0.0000023702, +0.0000023708,0.0000023706,0.0000023699,0.0000023689,0.0000023684, +0.0000023685,0.0000023675,0.0000023625,0.0000023562,0.0000023533, +0.0000023533,0.0000023524,0.0000023448,0.0000023327,0.0000023250, +0.0000023232,0.0000023234,0.0000023234,0.0000023244,0.0000023395, +0.0000023645,0.0000023827,0.0000023966,0.0000024094,0.0000024186, +0.0000024295,0.0000024410,0.0000024661,0.0000025197,0.0000025704, +0.0000025846,0.0000025786,0.0000025664,0.0000025518,0.0000025331, +0.0000025199,0.0000025151,0.0000025142,0.0000025141,0.0000025046, +0.0000024755,0.0000024673,0.0000024874,0.0000025156,0.0000025748, +0.0000026229,0.0000026378,0.0000026490,0.0000026652,0.0000026773, +0.0000026824,0.0000026834,0.0000026835,0.0000026845,0.0000026867, +0.0000026894,0.0000026914,0.0000026915,0.0000026905,0.0000026885, +0.0000026859,0.0000026806,0.0000026720,0.0000026622,0.0000026543, +0.0000026501,0.0000026501,0.0000026530,0.0000026555,0.0000026415, +0.0000026421,0.0000026419,0.0000026408,0.0000026370,0.0000026307, +0.0000026227,0.0000026124,0.0000026020,0.0000025925,0.0000025840, +0.0000025754,0.0000025681,0.0000025629,0.0000025601,0.0000025579, +0.0000025553,0.0000025521,0.0000025476,0.0000025419,0.0000025357, +0.0000025309,0.0000025278,0.0000025257,0.0000025240,0.0000025226, +0.0000025211,0.0000025192,0.0000025175,0.0000025168,0.0000025170, +0.0000025173,0.0000025188,0.0000025225,0.0000025285,0.0000025363, +0.0000025451,0.0000025537,0.0000025620,0.0000025696,0.0000025759, +0.0000025806,0.0000025835,0.0000025850,0.0000025858,0.0000025858, +0.0000025848,0.0000025831,0.0000025808,0.0000025778,0.0000025744, +0.0000025700,0.0000025640,0.0000025557,0.0000025461,0.0000025370, +0.0000025292,0.0000025197,0.0000025038,0.0000024830,0.0000024651, +0.0000024549,0.0000024504,0.0000024489,0.0000024489,0.0000024489, +0.0000024478,0.0000024456,0.0000024431,0.0000024397,0.0000024354, +0.0000024309,0.0000024273,0.0000024257,0.0000024251,0.0000024251, +0.0000024262,0.0000024265,0.0000024248,0.0000024256,0.0000024317, +0.0000024385,0.0000024453,0.0000024557,0.0000024640,0.0000024698, +0.0000024769,0.0000024841,0.0000024918,0.0000024994,0.0000025046, +0.0000025082,0.0000025105,0.0000025123,0.0000025149,0.0000025190, +0.0000025223,0.0000025244,0.0000025268,0.0000025307,0.0000025358, +0.0000025407,0.0000025496,0.0000025639,0.0000025764,0.0000025785, +0.0000025720,0.0000025595,0.0000025497,0.0000025443,0.0000025408, +0.0000025407,0.0000025463,0.0000025540,0.0000025615,0.0000025679, +0.0000025745,0.0000025810,0.0000025834,0.0000025823,0.0000025817, +0.0000025794,0.0000025745,0.0000025691,0.0000025598,0.0000025504, +0.0000025428,0.0000025349,0.0000025284,0.0000025172,0.0000025028, +0.0000024972,0.0000024981,0.0000025007,0.0000025082,0.0000025168, +0.0000025210,0.0000025211,0.0000025179,0.0000025138,0.0000025104, +0.0000025072,0.0000025042,0.0000025023,0.0000025014,0.0000025026, +0.0000025078,0.0000025158,0.0000025219,0.0000025248,0.0000025271, +0.0000025309,0.0000025350,0.0000025385,0.0000025413,0.0000025425, +0.0000025422,0.0000025373,0.0000025278,0.0000025193,0.0000025134, +0.0000025079,0.0000025063,0.0000025119,0.0000025179,0.0000025198, +0.0000025205,0.0000025246,0.0000025322,0.0000025390,0.0000025407, +0.0000025380,0.0000025313,0.0000025218,0.0000025111,0.0000025008, +0.0000024917,0.0000024841,0.0000024783,0.0000024743,0.0000024714, +0.0000024686,0.0000024660,0.0000024651,0.0000024653,0.0000024654, +0.0000024645,0.0000024627,0.0000024613,0.0000024618,0.0000024645, +0.0000024681,0.0000024707,0.0000024718,0.0000024718,0.0000024701, +0.0000024684,0.0000024685,0.0000024702,0.0000024720,0.0000024738, +0.0000024764,0.0000024810,0.0000024933,0.0000025138,0.0000025254, +0.0000025131,0.0000024863,0.0000024756,0.0000024752,0.0000024870, +0.0000025048,0.0000025211,0.0000025317,0.0000025364,0.0000025363, +0.0000025341,0.0000025311,0.0000025288,0.0000025283,0.0000025308, +0.0000025394,0.0000025552,0.0000025757,0.0000025947,0.0000026066, +0.0000026117,0.0000026141,0.0000026157,0.0000026159,0.0000026166, +0.0000026189,0.0000026196,0.0000026175,0.0000026160,0.0000026168, +0.0000026177,0.0000026167,0.0000026127,0.0000026066,0.0000026018, +0.0000025986,0.0000025978,0.0000026014,0.0000026101,0.0000026207, +0.0000026311,0.0000026392,0.0000026436,0.0000026468,0.0000026504, +0.0000026556,0.0000026618,0.0000026641,0.0000026627,0.0000026561, +0.0000026472,0.0000026384,0.0000026302,0.0000026241,0.0000026188, +0.0000026131,0.0000026076,0.0000026054,0.0000026068,0.0000026100, +0.0000026126,0.0000026143,0.0000026143,0.0000026124,0.0000026097, +0.0000026050,0.0000025988,0.0000025935,0.0000025911,0.0000025915, +0.0000025927,0.0000025921,0.0000025876,0.0000025810,0.0000025750, +0.0000025706,0.0000025690,0.0000025719,0.0000025775,0.0000025826, +0.0000025863,0.0000025885,0.0000025881,0.0000025848,0.0000025787, +0.0000025710,0.0000025635,0.0000025588,0.0000025576,0.0000025584, +0.0000025595,0.0000025593,0.0000025547,0.0000025446,0.0000025321, +0.0000025224,0.0000025204,0.0000025250,0.0000025276,0.0000025251, +0.0000025243,0.0000025285,0.0000025332,0.0000025354,0.0000025383, +0.0000025442,0.0000025507,0.0000025537,0.0000025539,0.0000025515, +0.0000025485,0.0000025466,0.0000025448,0.0000025397,0.0000025303, +0.0000025194,0.0000025112,0.0000025076,0.0000025079,0.0000025105, +0.0000025095,0.0000025024,0.0000024918,0.0000024799,0.0000024708, +0.0000024664,0.0000024681,0.0000024731,0.0000024760,0.0000024744, +0.0000024682,0.0000024622,0.0000024618,0.0000024684,0.0000024771, +0.0000024835,0.0000024884,0.0000024950,0.0000025032,0.0000025131, +0.0000025245,0.0000025357,0.0000025463,0.0000025580,0.0000025711, +0.0000025842,0.0000025958,0.0000026047,0.0000026081,0.0000026053, +0.0000026021,0.0000026069,0.0000026214,0.0000026379,0.0000026528, +0.0000026688,0.0000026859,0.0000027004,0.0000027084,0.0000027141, +0.0000027258,0.0000027420,0.0000027531,0.0000027545,0.0000027494, +0.0000027419,0.0000027351,0.0000027316,0.0000027321,0.0000027341, +0.0000027345,0.0000027323,0.0000027274,0.0000027212,0.0000027138, +0.0000027049,0.0000026943,0.0000026833,0.0000026738,0.0000026677, +0.0000026665,0.0000026689,0.0000026730,0.0000026764,0.0000026795, +0.0000026818,0.0000026829,0.0000026824,0.0000026798,0.0000026744, +0.0000026665,0.0000026573,0.0000026498,0.0000026457,0.0000026454, +0.0000026482,0.0000026513,0.0000026540,0.0000026560,0.0000026559, +0.0000026555,0.0000026538,0.0000026470,0.0000026425,0.0000026370, +0.0000026317,0.0000026289,0.0000026280,0.0000026279,0.0000026273, +0.0000026273,0.0000026274,0.0000026263,0.0000026258,0.0000026275, +0.0000026280,0.0000026270,0.0000026252,0.0000026241,0.0000026258, +0.0000026326,0.0000026438,0.0000026565,0.0000026691,0.0000026815, +0.0000026931,0.0000027024,0.0000027091,0.0000027116,0.0000027076, +0.0000027031,0.0000026963,0.0000026885,0.0000026799,0.0000026728, +0.0000026686,0.0000026644,0.0000026518,0.0000026230,0.0000025831, +0.0000025498,0.0000025317,0.0000025236,0.0000025221,0.0000025229, +0.0000025281,0.0000025333,0.0000025345,0.0000025295,0.0000025232, +0.0000025155,0.0000025021,0.0000024863,0.0000024796,0.0000024810, +0.0000024830,0.0000024845,0.0000024864,0.0000024886,0.0000024900, +0.0000024935,0.0000025000,0.0000025083,0.0000025141,0.0000025247, +0.0000025310,0.0000025208,0.0000025068,0.0000025237,0.0000025918, +0.0000026404,0.0000026445,0.0000026427,0.0000026430,0.0000026425, +0.0000026409,0.0000026379,0.0000026329,0.0000026299,0.0000026277, +0.0000026266,0.0000026252,0.0000026239,0.0000026221,0.0000026145, +0.0000026102,0.0000025927,0.0000025452,0.0000025159,0.0000025087, +0.0000025085,0.0000025159,0.0000025293,0.0000025504,0.0000025723, +0.0000025879,0.0000025950,0.0000026002,0.0000026083,0.0000026180, +0.0000026275,0.0000026365,0.0000026421,0.0000026441,0.0000026433, +0.0000026401,0.0000026356,0.0000026299,0.0000026243,0.0000026177, +0.0000026126,0.0000026128,0.0000026119,0.0000025926,0.0000025505, +0.0000025188,0.0000025132,0.0000025200,0.0000025281,0.0000025319, +0.0000025379,0.0000025485,0.0000025545,0.0000025563,0.0000025604, +0.0000025654,0.0000025685,0.0000025732,0.0000025853,0.0000026034, +0.0000026153,0.0000026250,0.0000026298,0.0000026221,0.0000026111, +0.0000026145,0.0000026377,0.0000026678,0.0000026909,0.0000027046, +0.0000027095,0.0000027069,0.0000026984,0.0000026898,0.0000026877, +0.0000026928,0.0000027035,0.0000027184,0.0000027352,0.0000027502, +0.0000027604,0.0000027662,0.0000027683,0.0000027673,0.0000027626, +0.0000027542,0.0000027446,0.0000027377,0.0000027332,0.0000027265, +0.0000027174,0.0000027121,0.0000027137,0.0000027182,0.0000027218, +0.0000027219,0.0000027183,0.0000027149,0.0000027179,0.0000027274, +0.0000027390,0.0000027485,0.0000027546,0.0000027559,0.0000027545, +0.0000027511,0.0000027439,0.0000027314,0.0000027154,0.0000027013, +0.0000026947,0.0000026985,0.0000027079,0.0000027158,0.0000027202, +0.0000027229,0.0000027248,0.0000027241,0.0000027168,0.0000027034, +0.0000026884,0.0000026730,0.0000026566,0.0000026400,0.0000026255, +0.0000026149,0.0000026081,0.0000026037,0.0000026002,0.0000025969, +0.0000025942,0.0000025925,0.0000025914,0.0000025899,0.0000025884, +0.0000025892,0.0000025930,0.0000025962,0.0000025997,0.0000026059, +0.0000026106,0.0000026107,0.0000026078,0.0000026044,0.0000026014, +0.0000025968,0.0000025906,0.0000025840,0.0000025780,0.0000025734, +0.0000025704,0.0000025676,0.0000025636,0.0000025594,0.0000025547, +0.0000025490,0.0000025435,0.0000025379,0.0000025350,0.0000025377, +0.0000025407,0.0000025380,0.0000025314,0.0000025187,0.0000024932, +0.0000024665,0.0000024505,0.0000024369,0.0000024190,0.0000024032, +0.0000023946,0.0000023921,0.0000023932,0.0000023991,0.0000024119, +0.0000024266,0.0000024369,0.0000024545,0.0000024903,0.0000025246, +0.0000025414,0.0000025475,0.0000025485,0.0000025428,0.0000025314, +0.0000025210,0.0000025128,0.0000025074,0.0000025065,0.0000025067, +0.0000025066,0.0000025104,0.0000025162,0.0000025176,0.0000025150, +0.0000025127,0.0000025115,0.0000025101,0.0000025074,0.0000025041, +0.0000025013,0.0000025001,0.0000025008,0.0000025022,0.0000025045, +0.0000025076,0.0000025114,0.0000025156,0.0000025199,0.0000025237, +0.0000025266,0.0000025286,0.0000025306,0.0000025324,0.0000025333, +0.0000025336,0.0000025338,0.0000025340,0.0000025337,0.0000025322, +0.0000025305,0.0000025288,0.0000025255,0.0000025225,0.0000025231, +0.0000025302,0.0000025418,0.0000025537,0.0000025653,0.0000025787, +0.0000025892,0.0000025916,0.0000025901,0.0000025892,0.0000025917, +0.0000025970,0.0000026026,0.0000026062,0.0000026070,0.0000026072, +0.0000026079,0.0000026075,0.0000026044,0.0000026005,0.0000026003, +0.0000026049,0.0000026134,0.0000026250,0.0000026374,0.0000026462, +0.0000026508,0.0000026570,0.0000026664,0.0000026747,0.0000026780, +0.0000026774,0.0000026700,0.0000026522,0.0000026329,0.0000026255, +0.0000026276,0.0000026381,0.0000026527,0.0000026617,0.0000026684, +0.0000026857,0.0000027078,0.0000027230,0.0000027332,0.0000027384, +0.0000027414,0.0000027504,0.0000027593,0.0000027611,0.0000027582, +0.0000027543,0.0000027537,0.0000027563,0.0000027606,0.0000027665, +0.0000027713,0.0000027746,0.0000027760,0.0000027740,0.0000027703, +0.0000027677,0.0000027673,0.0000027686,0.0000027700,0.0000027707, +0.0000027703,0.0000027680,0.0000027650,0.0000027641,0.0000027661, +0.0000027688,0.0000027690,0.0000027665,0.0000027611,0.0000027533, +0.0000027432,0.0000027334,0.0000027286,0.0000027289,0.0000027306, +0.0000027320,0.0000027352,0.0000027426,0.0000027508,0.0000027570, +0.0000027611,0.0000027620,0.0000027590,0.0000027521,0.0000027458, +0.0000027421,0.0000027415,0.0000027403,0.0000027358,0.0000027275, +0.0000027183,0.0000027131,0.0000027134,0.0000027152,0.0000027141, +0.0000027124,0.0000027146,0.0000027166,0.0000027105,0.0000026952, +0.0000026850,0.0000026822,0.0000026804,0.0000026771,0.0000026736, +0.0000026702,0.0000026677,0.0000026653,0.0000026634,0.0000026628, +0.0000026627,0.0000026606,0.0000026544,0.0000026453,0.0000026362, +0.0000026282,0.0000026189,0.0000026069,0.0000025960,0.0000025886, +0.0000025810,0.0000025703,0.0000025598,0.0000025520,0.0000025458, +0.0000025409,0.0000025386,0.0000025362,0.0000025308,0.0000025214, +0.0000025069,0.0000024892,0.0000024774,0.0000024761,0.0000024821, +0.0000024921,0.0000025023,0.0000025067,0.0000025050,0.0000025007, +0.0000024972,0.0000024947,0.0000024916,0.0000024854,0.0000024751, +0.0000024622,0.0000024492,0.0000024375,0.0000024280,0.0000024248, +0.0000024294,0.0000024354,0.0000024333,0.0000024266,0.0000024238, +0.0000024267,0.0000024325,0.0000024371,0.0000024536,0.0000024940, +0.0000025342,0.0000025583,0.0000025835,0.0000026240,0.0000026547, +0.0000026588,0.0000026593,0.0000026650,0.0000026662,0.0000026609, +0.0000026498,0.0000026371,0.0000026260,0.0000026203,0.0000026218, +0.0000026306,0.0000026489,0.0000026808,0.0000027154,0.0000027378, +0.0000027485,0.0000027489,0.0000027458,0.0000027425,0.0000027332, +0.0000027253,0.0000027166,0.0000027139,0.0000027171,0.0000027200, +0.0000027238,0.0000027262,0.0000027258,0.0000027224,0.0000027156, +0.0000027067,0.0000026999,0.0000026943,0.0000026888,0.0000026804, +0.0000026651,0.0000026410,0.0000026158,0.0000025941,0.0000025790, +0.0000025681,0.0000025620,0.0000025574,0.0000025571,0.0000025586, +0.0000025634,0.0000025696,0.0000025769,0.0000025845,0.0000025900, +0.0000025969,0.0000026038,0.0000026103,0.0000026176,0.0000026188, +0.0000026219,0.0000026184,0.0000026173,0.0000026135,0.0000026127, +0.0000026138,0.0000026164,0.0000026202,0.0000026235,0.0000026264, +0.0000026293,0.0000026322,0.0000026352,0.0000026368,0.0000026363, +0.0000026346,0.0000026301,0.0000026207,0.0000026065,0.0000025884, +0.0000025675,0.0000025466,0.0000025292,0.0000025174,0.0000025102, +0.0000025048,0.0000025000,0.0000024952,0.0000024897,0.0000024828, +0.0000024748,0.0000024670,0.0000024593,0.0000024510,0.0000024421, +0.0000024336,0.0000024272,0.0000024219,0.0000024200,0.0000024205, +0.0000024203,0.0000024183,0.0000024132,0.0000024070,0.0000024033, +0.0000024023,0.0000024033,0.0000024059,0.0000024090,0.0000024117, +0.0000024140,0.0000024148,0.0000024139,0.0000024111,0.0000024061, +0.0000023989,0.0000023902,0.0000023827,0.0000023773,0.0000023755, +0.0000023795,0.0000023836,0.0000023846,0.0000023850,0.0000023836, +0.0000023804,0.0000023768,0.0000023721,0.0000023671,0.0000023627, +0.0000023598,0.0000023580,0.0000023573,0.0000023574,0.0000023585, +0.0000023600,0.0000023610,0.0000023623,0.0000023626,0.0000023621, +0.0000023627,0.0000023639,0.0000023655,0.0000023659,0.0000023649, +0.0000023636,0.0000023622,0.0000023606,0.0000023582,0.0000023537, +0.0000023498,0.0000023498,0.0000023508,0.0000023489,0.0000023398, +0.0000023287,0.0000023233,0.0000023227,0.0000023230,0.0000023231, +0.0000023293,0.0000023501,0.0000023729,0.0000023885,0.0000024020, +0.0000024124,0.0000024208,0.0000024322,0.0000024475,0.0000024834, +0.0000025399,0.0000025780,0.0000025816,0.0000025728,0.0000025590, +0.0000025394,0.0000025208,0.0000025126,0.0000025100,0.0000025099, +0.0000025070,0.0000024856,0.0000024618,0.0000024777,0.0000025015, +0.0000025449,0.0000026040,0.0000026328,0.0000026421,0.0000026538, +0.0000026670,0.0000026766,0.0000026820,0.0000026842,0.0000026866, +0.0000026888,0.0000026911,0.0000026924,0.0000026920,0.0000026895, +0.0000026832,0.0000026734,0.0000026613,0.0000026496,0.0000026406, +0.0000026349,0.0000026322,0.0000026331,0.0000026372,0.0000026407, +0.0000026276,0.0000026292,0.0000026295,0.0000026283,0.0000026243, +0.0000026176,0.0000026088,0.0000025983,0.0000025873,0.0000025776, +0.0000025692,0.0000025616,0.0000025563,0.0000025542,0.0000025540, +0.0000025528,0.0000025496,0.0000025439,0.0000025356,0.0000025261, +0.0000025171,0.0000025104,0.0000025064,0.0000025039,0.0000025024, +0.0000025021,0.0000025027,0.0000025037,0.0000025049,0.0000025064, +0.0000025089,0.0000025116,0.0000025140,0.0000025162,0.0000025186, +0.0000025210,0.0000025245,0.0000025289,0.0000025352,0.0000025427, +0.0000025502,0.0000025568,0.0000025624,0.0000025666,0.0000025696, +0.0000025710,0.0000025711,0.0000025699,0.0000025674,0.0000025636, +0.0000025588,0.0000025527,0.0000025457,0.0000025379,0.0000025304, +0.0000025232,0.0000025133,0.0000024973,0.0000024774,0.0000024605, +0.0000024510,0.0000024475,0.0000024471,0.0000024479,0.0000024483, +0.0000024473,0.0000024456,0.0000024437,0.0000024414,0.0000024381, +0.0000024338,0.0000024296,0.0000024268,0.0000024254,0.0000024249, +0.0000024250,0.0000024261,0.0000024263,0.0000024253,0.0000024261, +0.0000024304,0.0000024350,0.0000024399,0.0000024501,0.0000024595, +0.0000024656,0.0000024722,0.0000024801,0.0000024883,0.0000024968, +0.0000025027,0.0000025066,0.0000025097,0.0000025126,0.0000025163, +0.0000025214,0.0000025254,0.0000025267,0.0000025267,0.0000025286, +0.0000025344,0.0000025448,0.0000025590,0.0000025730,0.0000025783, +0.0000025757,0.0000025645,0.0000025523,0.0000025439,0.0000025397, +0.0000025380,0.0000025393,0.0000025462,0.0000025543,0.0000025604, +0.0000025657,0.0000025715,0.0000025785,0.0000025833,0.0000025837, +0.0000025823,0.0000025816,0.0000025768,0.0000025720,0.0000025674, +0.0000025579,0.0000025489,0.0000025425,0.0000025363,0.0000025299, +0.0000025187,0.0000025050,0.0000024994,0.0000024994,0.0000025021, +0.0000025095,0.0000025175,0.0000025209,0.0000025205,0.0000025167, +0.0000025125,0.0000025092,0.0000025067,0.0000025048,0.0000025031, +0.0000025011,0.0000025003,0.0000025027,0.0000025100,0.0000025179, +0.0000025222,0.0000025233,0.0000025248,0.0000025281,0.0000025331, +0.0000025384,0.0000025416,0.0000025418,0.0000025387,0.0000025298, +0.0000025199,0.0000025145,0.0000025104,0.0000025067,0.0000025089, +0.0000025161,0.0000025207,0.0000025209,0.0000025196,0.0000025225, +0.0000025302,0.0000025382,0.0000025407,0.0000025413,0.0000025376, +0.0000025310,0.0000025234,0.0000025155,0.0000025072,0.0000024995, +0.0000024933,0.0000024884,0.0000024840,0.0000024806,0.0000024784, +0.0000024769,0.0000024759,0.0000024744,0.0000024719,0.0000024694, +0.0000024682,0.0000024693,0.0000024720,0.0000024744,0.0000024758, +0.0000024757,0.0000024734,0.0000024694,0.0000024664,0.0000024664, +0.0000024684,0.0000024701,0.0000024720,0.0000024751,0.0000024822, +0.0000024988,0.0000025196,0.0000025281,0.0000025159,0.0000024957, +0.0000024790,0.0000024752,0.0000024757,0.0000024827,0.0000024878, +0.0000024916,0.0000024934,0.0000024933,0.0000024919,0.0000024890, +0.0000024841,0.0000024807,0.0000024831,0.0000024932,0.0000025138, +0.0000025455,0.0000025786,0.0000025998,0.0000026055,0.0000026064, +0.0000026092,0.0000026133,0.0000026176,0.0000026208,0.0000026206, +0.0000026169,0.0000026152,0.0000026171,0.0000026199,0.0000026189, +0.0000026127,0.0000026040,0.0000025978,0.0000025962,0.0000025978, +0.0000026043,0.0000026125,0.0000026213,0.0000026284,0.0000026331, +0.0000026365,0.0000026399,0.0000026446,0.0000026502,0.0000026520, +0.0000026501,0.0000026434,0.0000026342,0.0000026256,0.0000026199, +0.0000026168,0.0000026142,0.0000026111,0.0000026079,0.0000026073, +0.0000026102,0.0000026141,0.0000026170,0.0000026178,0.0000026168, +0.0000026134,0.0000026098,0.0000026052,0.0000025996,0.0000025943, +0.0000025917,0.0000025924,0.0000025936,0.0000025934,0.0000025898, +0.0000025839,0.0000025778,0.0000025726,0.0000025704,0.0000025725, +0.0000025783,0.0000025835,0.0000025866,0.0000025887,0.0000025892, +0.0000025869,0.0000025816,0.0000025734,0.0000025643,0.0000025574, +0.0000025544,0.0000025543,0.0000025553,0.0000025564,0.0000025561, +0.0000025511,0.0000025409,0.0000025283,0.0000025186,0.0000025182, +0.0000025264,0.0000025315,0.0000025301,0.0000025292,0.0000025334, +0.0000025365,0.0000025373,0.0000025396,0.0000025455,0.0000025519, +0.0000025555,0.0000025558,0.0000025531,0.0000025489,0.0000025461, +0.0000025439,0.0000025391,0.0000025303,0.0000025200,0.0000025124, +0.0000025097,0.0000025111,0.0000025161,0.0000025187,0.0000025130, +0.0000024973,0.0000024776,0.0000024646,0.0000024629,0.0000024665, +0.0000024729,0.0000024759,0.0000024728,0.0000024635,0.0000024546, +0.0000024523,0.0000024571,0.0000024643,0.0000024708,0.0000024789, +0.0000024901,0.0000025017,0.0000025134,0.0000025240,0.0000025345, +0.0000025455,0.0000025579,0.0000025721,0.0000025871,0.0000026000, +0.0000026081,0.0000026089,0.0000026051,0.0000026059,0.0000026155, +0.0000026290,0.0000026412,0.0000026526,0.0000026638,0.0000026748, +0.0000026847,0.0000026945,0.0000027087,0.0000027268,0.0000027423, +0.0000027491,0.0000027480,0.0000027420,0.0000027338,0.0000027277, +0.0000027271,0.0000027308,0.0000027342,0.0000027343,0.0000027311, +0.0000027256,0.0000027192,0.0000027118,0.0000027018,0.0000026893, +0.0000026770,0.0000026647,0.0000026572,0.0000026545,0.0000026535, +0.0000026519,0.0000026505,0.0000026502,0.0000026498,0.0000026490, +0.0000026468,0.0000026424,0.0000026361,0.0000026290,0.0000026228, +0.0000026193,0.0000026180,0.0000026173,0.0000026168,0.0000026163, +0.0000026164,0.0000026182,0.0000026210,0.0000026253,0.0000026294, +0.0000026325,0.0000026344,0.0000026329,0.0000026289,0.0000026251, +0.0000026218,0.0000026198,0.0000026187,0.0000026193,0.0000026193, +0.0000026180,0.0000026178,0.0000026182,0.0000026175,0.0000026160, +0.0000026136,0.0000026118,0.0000026134,0.0000026189,0.0000026264, +0.0000026348,0.0000026435,0.0000026541,0.0000026662,0.0000026786, +0.0000026909,0.0000027002,0.0000027045,0.0000027044,0.0000027024, +0.0000026960,0.0000026873,0.0000026783,0.0000026707,0.0000026654, +0.0000026595,0.0000026438,0.0000026130,0.0000025762,0.0000025478, +0.0000025327,0.0000025263,0.0000025237,0.0000025249,0.0000025251, +0.0000025248,0.0000025216,0.0000025182,0.0000025141,0.0000025059, +0.0000024923,0.0000024840,0.0000024829,0.0000024847,0.0000024863, +0.0000024883,0.0000024902,0.0000024909,0.0000024927,0.0000024983, +0.0000025071,0.0000025136,0.0000025225,0.0000025312,0.0000025250, +0.0000025080,0.0000025193,0.0000025892,0.0000026408,0.0000026447, +0.0000026425,0.0000026429,0.0000026423,0.0000026405,0.0000026379, +0.0000026338,0.0000026308,0.0000026283,0.0000026271,0.0000026253, +0.0000026232,0.0000026203,0.0000026120,0.0000026075,0.0000025716, +0.0000025149,0.0000024985,0.0000024953,0.0000024914,0.0000024908, +0.0000024941,0.0000025056,0.0000025230,0.0000025430,0.0000025628, +0.0000025824,0.0000026012,0.0000026150,0.0000026255,0.0000026338, +0.0000026380,0.0000026392,0.0000026383,0.0000026352,0.0000026311, +0.0000026257,0.0000026195,0.0000026133,0.0000026113,0.0000026113, +0.0000025967,0.0000025566,0.0000025176,0.0000025067,0.0000025120, +0.0000025217,0.0000025271,0.0000025283,0.0000025343,0.0000025451, +0.0000025501,0.0000025511,0.0000025542,0.0000025591,0.0000025619, +0.0000025656,0.0000025754,0.0000025926,0.0000026054,0.0000026158, +0.0000026254,0.0000026223,0.0000026107,0.0000026054,0.0000026158, +0.0000026413,0.0000026689,0.0000026912,0.0000027056,0.0000027087, +0.0000027037,0.0000026925,0.0000026866,0.0000026879,0.0000026951, +0.0000027064,0.0000027220,0.0000027394,0.0000027531,0.0000027605, +0.0000027621,0.0000027604,0.0000027532,0.0000027412,0.0000027300, +0.0000027239,0.0000027211,0.0000027165,0.0000027111,0.0000027103, +0.0000027137,0.0000027199,0.0000027249,0.0000027254,0.0000027205, +0.0000027134,0.0000027104,0.0000027143,0.0000027238,0.0000027341, +0.0000027416,0.0000027437,0.0000027424,0.0000027373,0.0000027277, +0.0000027140,0.0000027008,0.0000026936,0.0000026941,0.0000027015, +0.0000027099,0.0000027144,0.0000027146,0.0000027130,0.0000027127, +0.0000027123,0.0000027066,0.0000026939,0.0000026779,0.0000026623, +0.0000026476,0.0000026335,0.0000026210,0.0000026115,0.0000026051, +0.0000026001,0.0000025952,0.0000025904,0.0000025866,0.0000025844, +0.0000025834,0.0000025830,0.0000025828,0.0000025822,0.0000025832, +0.0000025882,0.0000025930,0.0000025957,0.0000025994,0.0000026022, +0.0000026019,0.0000026008,0.0000026003,0.0000025987,0.0000025953, +0.0000025897,0.0000025824,0.0000025755,0.0000025707,0.0000025671, +0.0000025630,0.0000025590,0.0000025548,0.0000025502,0.0000025467, +0.0000025422,0.0000025385,0.0000025407,0.0000025441,0.0000025425, +0.0000025361,0.0000025212,0.0000024927,0.0000024672,0.0000024522, +0.0000024346,0.0000024121,0.0000023949,0.0000023866,0.0000023838, +0.0000023839,0.0000023851,0.0000023898,0.0000024040,0.0000024232, +0.0000024368,0.0000024561,0.0000024947,0.0000025296,0.0000025446, +0.0000025490,0.0000025477,0.0000025400,0.0000025292,0.0000025188, +0.0000025097,0.0000025065,0.0000025072,0.0000025076,0.0000025083, +0.0000025132,0.0000025174,0.0000025161,0.0000025124,0.0000025103, +0.0000025090,0.0000025075,0.0000025052,0.0000025021,0.0000024998, +0.0000024997,0.0000025014,0.0000025041,0.0000025077,0.0000025127, +0.0000025187,0.0000025251,0.0000025302,0.0000025329,0.0000025345, +0.0000025356,0.0000025373,0.0000025393,0.0000025405,0.0000025409, +0.0000025410,0.0000025409,0.0000025395,0.0000025362,0.0000025334, +0.0000025317,0.0000025282,0.0000025243,0.0000025245,0.0000025308, +0.0000025413,0.0000025530,0.0000025662,0.0000025805,0.0000025886, +0.0000025884,0.0000025861,0.0000025859,0.0000025896,0.0000025959, +0.0000026015,0.0000026044,0.0000026051,0.0000026054,0.0000026061, +0.0000026055,0.0000026020,0.0000025983,0.0000025985,0.0000026042, +0.0000026141,0.0000026265,0.0000026404,0.0000026510,0.0000026563, +0.0000026617,0.0000026711,0.0000026803,0.0000026831,0.0000026821, +0.0000026764,0.0000026610,0.0000026391,0.0000026267,0.0000026273, +0.0000026370,0.0000026523,0.0000026632,0.0000026715,0.0000026881, +0.0000027067,0.0000027175,0.0000027253,0.0000027310,0.0000027358, +0.0000027450,0.0000027529,0.0000027543,0.0000027534,0.0000027526, +0.0000027545,0.0000027572,0.0000027595,0.0000027619,0.0000027656, +0.0000027711,0.0000027740,0.0000027730,0.0000027700,0.0000027673, +0.0000027666,0.0000027673,0.0000027682,0.0000027688,0.0000027690, +0.0000027686,0.0000027693,0.0000027725,0.0000027758,0.0000027759, +0.0000027728,0.0000027672,0.0000027588,0.0000027478,0.0000027364, +0.0000027291,0.0000027270,0.0000027276,0.0000027295,0.0000027317, +0.0000027343,0.0000027386,0.0000027446,0.0000027510,0.0000027571, +0.0000027602,0.0000027582,0.0000027507,0.0000027421,0.0000027363, +0.0000027346,0.0000027342,0.0000027317,0.0000027255,0.0000027175, +0.0000027115,0.0000027105,0.0000027106,0.0000027098,0.0000027099, +0.0000027134,0.0000027155,0.0000027080,0.0000026925,0.0000026835, +0.0000026819,0.0000026810,0.0000026787,0.0000026753,0.0000026710, +0.0000026674,0.0000026656,0.0000026645,0.0000026639,0.0000026637, +0.0000026633,0.0000026607,0.0000026540,0.0000026444,0.0000026358, +0.0000026289,0.0000026196,0.0000026065,0.0000025944,0.0000025854, +0.0000025758,0.0000025658,0.0000025585,0.0000025530,0.0000025472, +0.0000025434,0.0000025416,0.0000025385,0.0000025319,0.0000025216, +0.0000025050,0.0000024854,0.0000024749,0.0000024769,0.0000024868, +0.0000024994,0.0000025067,0.0000025059,0.0000025008,0.0000024967, +0.0000024938,0.0000024918,0.0000024869,0.0000024780,0.0000024665, +0.0000024546,0.0000024429,0.0000024324,0.0000024260,0.0000024268, +0.0000024323,0.0000024333,0.0000024271,0.0000024222,0.0000024235, +0.0000024294,0.0000024332,0.0000024374,0.0000024652,0.0000025124, +0.0000025493,0.0000025709,0.0000025981,0.0000026332,0.0000026494, +0.0000026495,0.0000026523,0.0000026557,0.0000026539,0.0000026468, +0.0000026372,0.0000026259,0.0000026165,0.0000026138,0.0000026165, +0.0000026310,0.0000026599,0.0000026988,0.0000027295,0.0000027451, +0.0000027488,0.0000027477,0.0000027468,0.0000027403,0.0000027301, +0.0000027196,0.0000027147,0.0000027171,0.0000027184,0.0000027215, +0.0000027230,0.0000027222,0.0000027188,0.0000027127,0.0000027052, +0.0000026998,0.0000026946,0.0000026851,0.0000026647,0.0000026326, +0.0000025939,0.0000025617,0.0000025405,0.0000025280,0.0000025208, +0.0000025212,0.0000025188,0.0000025187,0.0000025201,0.0000025205, +0.0000025223,0.0000025255,0.0000025303,0.0000025346,0.0000025365, +0.0000025416,0.0000025527,0.0000025657,0.0000025770,0.0000025891, +0.0000025997,0.0000026099,0.0000026141,0.0000026198,0.0000026220, +0.0000026278,0.0000026314,0.0000026341,0.0000026366,0.0000026388, +0.0000026400,0.0000026401,0.0000026388,0.0000026361,0.0000026300, +0.0000026182,0.0000025991,0.0000025754,0.0000025523,0.0000025328, +0.0000025197,0.0000025122,0.0000025097,0.0000025075,0.0000025044, +0.0000025007,0.0000024959,0.0000024907,0.0000024844,0.0000024767, +0.0000024688,0.0000024613,0.0000024532,0.0000024452,0.0000024374, +0.0000024315,0.0000024281,0.0000024277,0.0000024282,0.0000024274, +0.0000024228,0.0000024156,0.0000024056,0.0000023961,0.0000023905, +0.0000023897,0.0000023916,0.0000023961,0.0000024012,0.0000024063, +0.0000024106,0.0000024122,0.0000024110,0.0000024066,0.0000023993, +0.0000023897,0.0000023807,0.0000023751,0.0000023725,0.0000023723, +0.0000023763,0.0000023814,0.0000023828,0.0000023840,0.0000023841, +0.0000023810,0.0000023762,0.0000023708,0.0000023659,0.0000023619, +0.0000023594,0.0000023572,0.0000023541,0.0000023523,0.0000023524, +0.0000023538,0.0000023547,0.0000023566,0.0000023588,0.0000023587, +0.0000023585,0.0000023584,0.0000023590,0.0000023594,0.0000023585, +0.0000023563,0.0000023534,0.0000023507,0.0000023493,0.0000023479, +0.0000023455,0.0000023450,0.0000023475,0.0000023488,0.0000023457, +0.0000023357,0.0000023265,0.0000023229,0.0000023226,0.0000023228, +0.0000023232,0.0000023352,0.0000023594,0.0000023795,0.0000023934, +0.0000024053,0.0000024134,0.0000024218,0.0000024349,0.0000024563, +0.0000025016,0.0000025561,0.0000025801,0.0000025771,0.0000025658, +0.0000025468,0.0000025236,0.0000025106,0.0000025062,0.0000025051, +0.0000025050,0.0000024927,0.0000024647,0.0000024652,0.0000024923, +0.0000025196,0.0000025748,0.0000026214,0.0000026378,0.0000026461, +0.0000026566,0.0000026663,0.0000026741,0.0000026802,0.0000026844, +0.0000026868,0.0000026877,0.0000026865,0.0000026823,0.0000026749, +0.0000026650,0.0000026551,0.0000026460,0.0000026386,0.0000026327, +0.0000026281,0.0000026246,0.0000026233,0.0000026246,0.0000026266, +0.0000026155,0.0000026153,0.0000026152,0.0000026137,0.0000026094, +0.0000026024,0.0000025930,0.0000025830,0.0000025733,0.0000025655, +0.0000025593,0.0000025537,0.0000025501,0.0000025491,0.0000025484, +0.0000025450,0.0000025376,0.0000025264,0.0000025133,0.0000025006, +0.0000024904,0.0000024833,0.0000024790,0.0000024760,0.0000024738, +0.0000024728,0.0000024729,0.0000024740,0.0000024762,0.0000024793, +0.0000024836,0.0000024895,0.0000024961,0.0000025026,0.0000025091, +0.0000025143,0.0000025179,0.0000025202,0.0000025223,0.0000025250, +0.0000025285,0.0000025324,0.0000025364,0.0000025401,0.0000025432, +0.0000025455,0.0000025465,0.0000025462,0.0000025444,0.0000025409, +0.0000025369,0.0000025324,0.0000025274,0.0000025218,0.0000025145, +0.0000025034,0.0000024875,0.0000024693,0.0000024542,0.0000024457, +0.0000024433,0.0000024442,0.0000024453,0.0000024460,0.0000024457, +0.0000024446,0.0000024432,0.0000024423,0.0000024405,0.0000024373, +0.0000024335,0.0000024299,0.0000024276,0.0000024261,0.0000024252, +0.0000024251,0.0000024261,0.0000024267,0.0000024266,0.0000024274, +0.0000024296,0.0000024319,0.0000024348,0.0000024443,0.0000024543, +0.0000024612,0.0000024674,0.0000024757,0.0000024852,0.0000024946, +0.0000025013,0.0000025054,0.0000025083,0.0000025110,0.0000025152, +0.0000025213,0.0000025263,0.0000025276,0.0000025271,0.0000025283, +0.0000025370,0.0000025528,0.0000025688,0.0000025765,0.0000025770, +0.0000025693,0.0000025555,0.0000025438,0.0000025376,0.0000025353, +0.0000025354,0.0000025377,0.0000025455,0.0000025547,0.0000025604, +0.0000025644,0.0000025694,0.0000025757,0.0000025818,0.0000025840, +0.0000025831,0.0000025824,0.0000025799,0.0000025736,0.0000025700, +0.0000025657,0.0000025560,0.0000025476,0.0000025428,0.0000025374, +0.0000025305,0.0000025196,0.0000025072,0.0000025017,0.0000025013, +0.0000025041,0.0000025117,0.0000025187,0.0000025212,0.0000025202, +0.0000025166,0.0000025127,0.0000025097,0.0000025076,0.0000025065, +0.0000025056,0.0000025034,0.0000025010,0.0000025017,0.0000025064, +0.0000025141,0.0000025196,0.0000025209,0.0000025208,0.0000025222, +0.0000025263,0.0000025324,0.0000025376,0.0000025399,0.0000025374, +0.0000025305,0.0000025205,0.0000025150,0.0000025130,0.0000025096, +0.0000025090,0.0000025131,0.0000025199,0.0000025221,0.0000025188, +0.0000025162,0.0000025199,0.0000025292,0.0000025377,0.0000025430, +0.0000025453,0.0000025429,0.0000025387,0.0000025335,0.0000025275, +0.0000025211,0.0000025151,0.0000025094,0.0000025043,0.0000025007, +0.0000024978,0.0000024951,0.0000024932,0.0000024916,0.0000024890, +0.0000024853,0.0000024812,0.0000024783,0.0000024768,0.0000024765, +0.0000024772,0.0000024780,0.0000024771,0.0000024731,0.0000024675, +0.0000024641,0.0000024645,0.0000024663,0.0000024680,0.0000024707, +0.0000024753,0.0000024855,0.0000025034,0.0000025228,0.0000025305, +0.0000025236,0.0000025103,0.0000024990,0.0000024942,0.0000024932, +0.0000024939,0.0000024960,0.0000024978,0.0000024983,0.0000024974, +0.0000024940,0.0000024865,0.0000024765,0.0000024727,0.0000024673, +0.0000024696,0.0000024868,0.0000025212,0.0000025627,0.0000025907, +0.0000025991,0.0000026004,0.0000026050,0.0000026125,0.0000026193, +0.0000026217,0.0000026195,0.0000026159,0.0000026169,0.0000026209, +0.0000026227,0.0000026201,0.0000026118,0.0000026020,0.0000025957, +0.0000025952,0.0000025993,0.0000026058,0.0000026133,0.0000026191, +0.0000026221,0.0000026235,0.0000026248,0.0000026276,0.0000026319, +0.0000026347,0.0000026344,0.0000026312,0.0000026256,0.0000026200, +0.0000026168,0.0000026161,0.0000026156,0.0000026135,0.0000026105, +0.0000026093,0.0000026106,0.0000026140,0.0000026169,0.0000026176, +0.0000026163,0.0000026127,0.0000026089,0.0000026052,0.0000026009, +0.0000025957,0.0000025922,0.0000025920,0.0000025929,0.0000025923, +0.0000025895,0.0000025854,0.0000025809,0.0000025763,0.0000025731, +0.0000025735,0.0000025777,0.0000025828,0.0000025862,0.0000025881, +0.0000025887,0.0000025874,0.0000025829,0.0000025748,0.0000025649, +0.0000025562,0.0000025514,0.0000025503,0.0000025507,0.0000025518, +0.0000025530,0.0000025524,0.0000025471,0.0000025374,0.0000025255, +0.0000025172,0.0000025185,0.0000025300,0.0000025354,0.0000025337, +0.0000025325,0.0000025364,0.0000025381,0.0000025374,0.0000025386, +0.0000025437,0.0000025501,0.0000025548,0.0000025559,0.0000025536, +0.0000025493,0.0000025456,0.0000025419,0.0000025365,0.0000025292, +0.0000025219,0.0000025166,0.0000025145,0.0000025158,0.0000025219, +0.0000025262,0.0000025232,0.0000025061,0.0000024831,0.0000024676, +0.0000024641,0.0000024654,0.0000024722,0.0000024748,0.0000024698, +0.0000024569,0.0000024462,0.0000024437,0.0000024484,0.0000024573, +0.0000024683,0.0000024819,0.0000024962,0.0000025083,0.0000025187, +0.0000025288,0.0000025390,0.0000025498,0.0000025620,0.0000025767, +0.0000025911,0.0000026026,0.0000026074,0.0000026061,0.0000026037, +0.0000026072,0.0000026175,0.0000026285,0.0000026377,0.0000026448, +0.0000026499,0.0000026545,0.0000026630,0.0000026807,0.0000027053, +0.0000027273,0.0000027398,0.0000027422,0.0000027395,0.0000027323, +0.0000027253,0.0000027230,0.0000027249,0.0000027287,0.0000027303, +0.0000027292,0.0000027244,0.0000027173,0.0000027089,0.0000026986, +0.0000026848,0.0000026678,0.0000026497,0.0000026343,0.0000026248, +0.0000026193,0.0000026146,0.0000026099,0.0000026073,0.0000026056, +0.0000026044,0.0000026029,0.0000025998,0.0000025951,0.0000025902, +0.0000025873,0.0000025874,0.0000025906,0.0000025934,0.0000025947, +0.0000025944,0.0000025923,0.0000025889,0.0000025863,0.0000025853, +0.0000025856,0.0000025891,0.0000025964,0.0000026050,0.0000026118, +0.0000026145,0.0000026134,0.0000026106,0.0000026069,0.0000026047, +0.0000026045,0.0000026046,0.0000026049,0.0000026063,0.0000026068, +0.0000026057,0.0000026039,0.0000026012,0.0000025997,0.0000026025, +0.0000026084,0.0000026160,0.0000026231,0.0000026289,0.0000026348, +0.0000026416,0.0000026498,0.0000026612,0.0000026759,0.0000026907, +0.0000027013,0.0000027032,0.0000027021,0.0000026959,0.0000026860, +0.0000026752,0.0000026668,0.0000026613,0.0000026536,0.0000026363, +0.0000026067,0.0000025736,0.0000025492,0.0000025367,0.0000025308, +0.0000025270,0.0000025237,0.0000025205,0.0000025154,0.0000025120, +0.0000025108,0.0000025089,0.0000025023,0.0000024946,0.0000024900, +0.0000024891,0.0000024894,0.0000024898,0.0000024900,0.0000024893, +0.0000024896,0.0000024945,0.0000025035,0.0000025122,0.0000025201, +0.0000025296,0.0000025275,0.0000025113,0.0000025168,0.0000025865, +0.0000026415,0.0000026459,0.0000026434,0.0000026431,0.0000026417, +0.0000026397,0.0000026375,0.0000026347,0.0000026314,0.0000026284, +0.0000026274,0.0000026255,0.0000026226,0.0000026186,0.0000026105, +0.0000026042,0.0000025552,0.0000025043,0.0000024984,0.0000024950, +0.0000024909,0.0000024884,0.0000024863,0.0000024859,0.0000024895, +0.0000024972,0.0000025143,0.0000025399,0.0000025714,0.0000025969, +0.0000026158,0.0000026283,0.0000026339,0.0000026353,0.0000026342, +0.0000026308,0.0000026264,0.0000026212,0.0000026157,0.0000026120, +0.0000026115,0.0000026029,0.0000025679,0.0000025232,0.0000025032, +0.0000025058,0.0000025147,0.0000025223,0.0000025242,0.0000025239, +0.0000025304,0.0000025417,0.0000025461,0.0000025458,0.0000025480, +0.0000025526,0.0000025550,0.0000025577,0.0000025648,0.0000025794, +0.0000025948,0.0000026065,0.0000026181,0.0000026212,0.0000026132, +0.0000026028,0.0000026012,0.0000026148,0.0000026393,0.0000026675, +0.0000026920,0.0000027055,0.0000027055,0.0000026960,0.0000026871, +0.0000026856,0.0000026899,0.0000026978,0.0000027100,0.0000027273, +0.0000027437,0.0000027528,0.0000027537,0.0000027506,0.0000027409, +0.0000027272,0.0000027170,0.0000027136,0.0000027128,0.0000027104, +0.0000027078,0.0000027088,0.0000027136,0.0000027200,0.0000027258, +0.0000027272,0.0000027248,0.0000027173,0.0000027115,0.0000027111, +0.0000027151,0.0000027211,0.0000027266,0.0000027284,0.0000027262, +0.0000027202,0.0000027109,0.0000027010,0.0000026942,0.0000026930, +0.0000026964,0.0000027034,0.0000027096,0.0000027111,0.0000027077, +0.0000027024,0.0000026986,0.0000026958,0.0000026899,0.0000026790, +0.0000026657,0.0000026531,0.0000026414,0.0000026302,0.0000026204, +0.0000026122,0.0000026046,0.0000025966,0.0000025890,0.0000025826, +0.0000025781,0.0000025753,0.0000025739,0.0000025737,0.0000025746, +0.0000025764,0.0000025772,0.0000025784,0.0000025843,0.0000025901, +0.0000025909,0.0000025914,0.0000025930,0.0000025934,0.0000025938, +0.0000025948,0.0000025947,0.0000025919,0.0000025864,0.0000025796, +0.0000025733,0.0000025681,0.0000025636,0.0000025597,0.0000025556, +0.0000025521,0.0000025505,0.0000025468,0.0000025422,0.0000025435, +0.0000025473,0.0000025464,0.0000025400,0.0000025231,0.0000024931, +0.0000024691,0.0000024548,0.0000024345,0.0000024100,0.0000023926, +0.0000023835,0.0000023784,0.0000023769,0.0000023783,0.0000023805, +0.0000023848,0.0000023999,0.0000024226,0.0000024395,0.0000024629, +0.0000025039,0.0000025358,0.0000025470,0.0000025485,0.0000025455, +0.0000025372,0.0000025264,0.0000025146,0.0000025065,0.0000025062, +0.0000025085,0.0000025089,0.0000025107,0.0000025151,0.0000025167, +0.0000025133,0.0000025088,0.0000025056,0.0000025032,0.0000025015, +0.0000024993,0.0000024965,0.0000024952,0.0000024961,0.0000024985, +0.0000025019,0.0000025064,0.0000025128,0.0000025205,0.0000025276, +0.0000025331,0.0000025373,0.0000025403,0.0000025422,0.0000025439, +0.0000025457,0.0000025464,0.0000025459,0.0000025450,0.0000025439, +0.0000025412,0.0000025372,0.0000025345,0.0000025330,0.0000025301, +0.0000025267,0.0000025268,0.0000025322,0.0000025418,0.0000025540, +0.0000025689,0.0000025825,0.0000025870,0.0000025858,0.0000025837, +0.0000025847,0.0000025897,0.0000025961,0.0000026006,0.0000026024, +0.0000026026,0.0000026027,0.0000026028,0.0000026019,0.0000025993, +0.0000025978,0.0000026003,0.0000026079,0.0000026185,0.0000026310, +0.0000026449,0.0000026562,0.0000026620,0.0000026668,0.0000026754, +0.0000026837,0.0000026863,0.0000026856,0.0000026811,0.0000026663, +0.0000026424,0.0000026265,0.0000026267,0.0000026373,0.0000026545, +0.0000026678,0.0000026777,0.0000026932,0.0000027072,0.0000027124, +0.0000027176,0.0000027237,0.0000027294,0.0000027373,0.0000027438, +0.0000027468,0.0000027490,0.0000027512,0.0000027548,0.0000027583, +0.0000027598,0.0000027605,0.0000027644,0.0000027704,0.0000027737, +0.0000027728,0.0000027702,0.0000027675,0.0000027666,0.0000027666, +0.0000027669,0.0000027676,0.0000027686,0.0000027708,0.0000027758, +0.0000027826,0.0000027852,0.0000027820,0.0000027751,0.0000027668, +0.0000027562,0.0000027430,0.0000027321,0.0000027275,0.0000027269, +0.0000027277,0.0000027296,0.0000027322,0.0000027340,0.0000027354, +0.0000027389,0.0000027444,0.0000027517,0.0000027571,0.0000027570, +0.0000027502,0.0000027397,0.0000027313,0.0000027274,0.0000027267, +0.0000027258,0.0000027222,0.0000027162,0.0000027109,0.0000027074, +0.0000027056,0.0000027053,0.0000027070,0.0000027116,0.0000027141, +0.0000027051,0.0000026887,0.0000026806,0.0000026808,0.0000026815, +0.0000026814,0.0000026798,0.0000026753,0.0000026700,0.0000026666, +0.0000026654,0.0000026649,0.0000026647,0.0000026646,0.0000026640, +0.0000026609,0.0000026535,0.0000026437,0.0000026359,0.0000026294, +0.0000026185,0.0000026035,0.0000025902,0.0000025802,0.0000025710, +0.0000025638,0.0000025593,0.0000025553,0.0000025511,0.0000025478, +0.0000025452,0.0000025411,0.0000025338,0.0000025211,0.0000024994, +0.0000024792,0.0000024744,0.0000024826,0.0000024961,0.0000025055, +0.0000025059,0.0000025010,0.0000024962,0.0000024932,0.0000024913, +0.0000024879,0.0000024805,0.0000024698,0.0000024582,0.0000024467, +0.0000024360,0.0000024280,0.0000024254,0.0000024283,0.0000024310, +0.0000024274,0.0000024196,0.0000024180,0.0000024248,0.0000024310, +0.0000024308,0.0000024425,0.0000024834,0.0000025325,0.0000025626, +0.0000025807,0.0000026069,0.0000026346,0.0000026431,0.0000026431, +0.0000026456,0.0000026463,0.0000026442,0.0000026380,0.0000026236, +0.0000026051,0.0000025998,0.0000026024,0.0000026151,0.0000026396, +0.0000026780,0.0000027172,0.0000027402,0.0000027479,0.0000027484, +0.0000027484,0.0000027465,0.0000027363,0.0000027242,0.0000027166, +0.0000027167,0.0000027168,0.0000027183,0.0000027190,0.0000027182, +0.0000027150,0.0000027098,0.0000027036,0.0000026978,0.0000026884, +0.0000026678,0.0000026308,0.0000025870,0.0000025497,0.0000025293, +0.0000025243,0.0000025214,0.0000025203,0.0000025224,0.0000025224, +0.0000025221,0.0000025221,0.0000025215,0.0000025212,0.0000025193, +0.0000025178,0.0000025168,0.0000025130,0.0000025088,0.0000025089, +0.0000025122,0.0000025178,0.0000025243,0.0000025356,0.0000025515, +0.0000025689,0.0000025845,0.0000026007,0.0000026136,0.0000026246, +0.0000026320,0.0000026366,0.0000026392,0.0000026388,0.0000026369, +0.0000026323,0.0000026237,0.0000026105,0.0000025910,0.0000025656, +0.0000025390,0.0000025214,0.0000025130,0.0000025120,0.0000025119, +0.0000025107,0.0000025088,0.0000025051,0.0000025009,0.0000024967, +0.0000024923,0.0000024874,0.0000024809,0.0000024731,0.0000024658, +0.0000024587,0.0000024514,0.0000024446,0.0000024392,0.0000024356, +0.0000024342,0.0000024319,0.0000024299,0.0000024238,0.0000024139, +0.0000024007,0.0000023872,0.0000023775,0.0000023742,0.0000023757, +0.0000023809,0.0000023883,0.0000023958,0.0000024028,0.0000024079, +0.0000024092,0.0000024069,0.0000024006,0.0000023921,0.0000023829, +0.0000023738,0.0000023686,0.0000023686,0.0000023695,0.0000023742, +0.0000023800,0.0000023813,0.0000023822,0.0000023828,0.0000023805, +0.0000023758,0.0000023705,0.0000023654,0.0000023616,0.0000023585, +0.0000023542,0.0000023490,0.0000023460,0.0000023457,0.0000023473, +0.0000023491,0.0000023517,0.0000023548,0.0000023572,0.0000023574, +0.0000023551,0.0000023524,0.0000023505,0.0000023485,0.0000023459, +0.0000023425,0.0000023395,0.0000023381,0.0000023382,0.0000023384, +0.0000023384,0.0000023407,0.0000023455,0.0000023473,0.0000023426, +0.0000023327,0.0000023258,0.0000023232,0.0000023231,0.0000023232, +0.0000023263,0.0000023436,0.0000023679,0.0000023847,0.0000023966, +0.0000024063,0.0000024124,0.0000024224,0.0000024384,0.0000024684, +0.0000025219,0.0000025678,0.0000025780,0.0000025720,0.0000025538, +0.0000025277,0.0000025095,0.0000025020,0.0000024998,0.0000024999, +0.0000024959,0.0000024720,0.0000024583,0.0000024822,0.0000025043, +0.0000025409,0.0000025965,0.0000026293,0.0000026404,0.0000026480, +0.0000026553,0.0000026620,0.0000026681,0.0000026721,0.0000026732, +0.0000026720,0.0000026689,0.0000026642,0.0000026578,0.0000026512, +0.0000026456,0.0000026404,0.0000026354,0.0000026312,0.0000026275, +0.0000026236,0.0000026201,0.0000026184,0.0000026174,0.0000026100, +0.0000026068,0.0000026047,0.0000026010,0.0000025954,0.0000025884, +0.0000025802,0.0000025722,0.0000025653,0.0000025600,0.0000025552, +0.0000025497,0.0000025454,0.0000025425,0.0000025386,0.0000025305, +0.0000025173,0.0000025022,0.0000024881,0.0000024765,0.0000024679, +0.0000024617,0.0000024572,0.0000024537,0.0000024510,0.0000024490, +0.0000024478,0.0000024475,0.0000024481,0.0000024498,0.0000024524, +0.0000024567,0.0000024632,0.0000024709,0.0000024798,0.0000024892, +0.0000024973,0.0000025041,0.0000025097,0.0000025140,0.0000025168, +0.0000025187,0.0000025199,0.0000025210,0.0000025222,0.0000025232, +0.0000025238,0.0000025238,0.0000025228,0.0000025208,0.0000025184, +0.0000025152,0.0000025100,0.0000025017,0.0000024894,0.0000024737, +0.0000024577,0.0000024457,0.0000024395,0.0000024379,0.0000024397, +0.0000024420,0.0000024433,0.0000024432,0.0000024430,0.0000024434, +0.0000024434,0.0000024427,0.0000024403,0.0000024367,0.0000024337, +0.0000024317,0.0000024295,0.0000024273,0.0000024258,0.0000024253, +0.0000024262,0.0000024274,0.0000024283,0.0000024285,0.0000024290, +0.0000024289,0.0000024295,0.0000024384,0.0000024488,0.0000024562, +0.0000024625,0.0000024716,0.0000024823,0.0000024930,0.0000025005, +0.0000025050,0.0000025074,0.0000025090,0.0000025127,0.0000025198, +0.0000025267,0.0000025291,0.0000025293,0.0000025326,0.0000025441, +0.0000025609,0.0000025722,0.0000025761,0.0000025715,0.0000025603, +0.0000025465,0.0000025362,0.0000025315,0.0000025316,0.0000025332, +0.0000025364,0.0000025447,0.0000025546,0.0000025605,0.0000025638, +0.0000025677,0.0000025737,0.0000025797,0.0000025831,0.0000025833, +0.0000025827,0.0000025819,0.0000025767,0.0000025707,0.0000025685, +0.0000025640,0.0000025543,0.0000025471,0.0000025433,0.0000025376, +0.0000025302,0.0000025203,0.0000025094,0.0000025041,0.0000025035, +0.0000025065,0.0000025143,0.0000025200,0.0000025216,0.0000025204, +0.0000025171,0.0000025137,0.0000025112,0.0000025097,0.0000025092, +0.0000025088,0.0000025073,0.0000025045,0.0000025030,0.0000025048, +0.0000025110,0.0000025170,0.0000025187,0.0000025179,0.0000025174, +0.0000025192,0.0000025238,0.0000025296,0.0000025338,0.0000025337, +0.0000025280,0.0000025199,0.0000025151,0.0000025147,0.0000025135, +0.0000025108,0.0000025105,0.0000025162,0.0000025214,0.0000025204, +0.0000025152,0.0000025137,0.0000025187,0.0000025282,0.0000025379, +0.0000025449,0.0000025475,0.0000025465,0.0000025427,0.0000025381, +0.0000025336,0.0000025291,0.0000025242,0.0000025196,0.0000025164, +0.0000025135,0.0000025104,0.0000025086,0.0000025080,0.0000025066, +0.0000025036,0.0000024991,0.0000024932,0.0000024864,0.0000024805, +0.0000024777,0.0000024780,0.0000024790,0.0000024769,0.0000024711, +0.0000024649,0.0000024623,0.0000024628,0.0000024643,0.0000024667, +0.0000024707,0.0000024768,0.0000024880,0.0000025053,0.0000025221, +0.0000025280,0.0000025303,0.0000025271,0.0000025245,0.0000025244, +0.0000025264,0.0000025287,0.0000025303,0.0000025308,0.0000025305, +0.0000025276,0.0000025203,0.0000025086,0.0000024960,0.0000024823, +0.0000024697,0.0000024670,0.0000024763,0.0000025077,0.0000025523, +0.0000025838,0.0000025933,0.0000025963,0.0000026048,0.0000026155, +0.0000026210,0.0000026208,0.0000026183,0.0000026180,0.0000026213, +0.0000026247,0.0000026245,0.0000026193,0.0000026109,0.0000026026, +0.0000025973,0.0000025968,0.0000026000,0.0000026064,0.0000026122, +0.0000026152,0.0000026161,0.0000026161,0.0000026168,0.0000026195, +0.0000026231,0.0000026252,0.0000026251,0.0000026229,0.0000026200, +0.0000026182,0.0000026181,0.0000026178,0.0000026148,0.0000026101, +0.0000026070,0.0000026075,0.0000026105,0.0000026137,0.0000026150, +0.0000026142,0.0000026112,0.0000026074,0.0000026042,0.0000026007, +0.0000025961,0.0000025923,0.0000025911,0.0000025915,0.0000025909, +0.0000025885,0.0000025853,0.0000025820,0.0000025788,0.0000025761, +0.0000025755,0.0000025778,0.0000025815,0.0000025844,0.0000025861, +0.0000025871,0.0000025866,0.0000025829,0.0000025751,0.0000025649, +0.0000025555,0.0000025496,0.0000025476,0.0000025480,0.0000025492, +0.0000025509,0.0000025514,0.0000025498,0.0000025441,0.0000025343, +0.0000025234,0.0000025170,0.0000025200,0.0000025333,0.0000025390, +0.0000025352,0.0000025339,0.0000025366,0.0000025365,0.0000025344, +0.0000025349,0.0000025404,0.0000025479,0.0000025530,0.0000025541, +0.0000025529,0.0000025496,0.0000025450,0.0000025399,0.0000025345, +0.0000025290,0.0000025241,0.0000025209,0.0000025199,0.0000025217, +0.0000025273,0.0000025327,0.0000025315,0.0000025169,0.0000024922, +0.0000024715,0.0000024636,0.0000024640,0.0000024702,0.0000024725, +0.0000024664,0.0000024517,0.0000024401,0.0000024387,0.0000024461, +0.0000024596,0.0000024753,0.0000024918,0.0000025058,0.0000025178, +0.0000025288,0.0000025384,0.0000025473,0.0000025575,0.0000025693, +0.0000025825,0.0000025952,0.0000026040,0.0000026057,0.0000026026, +0.0000026014,0.0000026061,0.0000026142,0.0000026220,0.0000026273, +0.0000026291,0.0000026295,0.0000026313,0.0000026436,0.0000026697, +0.0000026998,0.0000027212,0.0000027302,0.0000027308,0.0000027261, +0.0000027196,0.0000027160,0.0000027160,0.0000027173,0.0000027175, +0.0000027155,0.0000027104,0.0000027019,0.0000026913,0.0000026798, +0.0000026666,0.0000026503,0.0000026321,0.0000026155,0.0000026042, +0.0000025978,0.0000025930,0.0000025883,0.0000025844,0.0000025816, +0.0000025796,0.0000025773,0.0000025735,0.0000025681,0.0000025625, +0.0000025595,0.0000025601,0.0000025641,0.0000025676,0.0000025706, +0.0000025734,0.0000025745,0.0000025735,0.0000025710,0.0000025677, +0.0000025639,0.0000025600,0.0000025589,0.0000025618,0.0000025677, +0.0000025746,0.0000025808,0.0000025849,0.0000025863,0.0000025845, +0.0000025817,0.0000025791,0.0000025774,0.0000025778,0.0000025796, +0.0000025808,0.0000025803,0.0000025794,0.0000025772,0.0000025759, +0.0000025791,0.0000025865,0.0000025973,0.0000026080,0.0000026165, +0.0000026225,0.0000026265,0.0000026286,0.0000026332,0.0000026454, +0.0000026638,0.0000026831,0.0000026970,0.0000027033,0.0000027016, +0.0000026939,0.0000026822,0.0000026713,0.0000026632,0.0000026568, +0.0000026487,0.0000026314,0.0000026035,0.0000025737,0.0000025530, +0.0000025424,0.0000025364,0.0000025303,0.0000025229,0.0000025151, +0.0000025091,0.0000025060,0.0000025078,0.0000025092,0.0000025063, +0.0000025000,0.0000024954,0.0000024936,0.0000024926,0.0000024900, +0.0000024869,0.0000024858,0.0000024888,0.0000024972,0.0000025082, +0.0000025171,0.0000025270,0.0000025288,0.0000025139,0.0000025152, +0.0000025820,0.0000026411,0.0000026462,0.0000026438,0.0000026427, +0.0000026403,0.0000026385,0.0000026371,0.0000026350,0.0000026313, +0.0000026280,0.0000026275,0.0000026259,0.0000026221,0.0000026175, +0.0000026096,0.0000026020,0.0000025470,0.0000025008,0.0000024992, +0.0000024946,0.0000024897,0.0000024872,0.0000024854,0.0000024849, +0.0000024831,0.0000024801,0.0000024829,0.0000024967,0.0000025237, +0.0000025533,0.0000025818,0.0000026046,0.0000026189,0.0000026260, +0.0000026279,0.0000026261,0.0000026224,0.0000026180,0.0000026140, +0.0000026114,0.0000026061,0.0000025811,0.0000025363,0.0000025056, +0.0000025022,0.0000025099,0.0000025185,0.0000025216,0.0000025211, +0.0000025205,0.0000025271,0.0000025383,0.0000025423,0.0000025405, +0.0000025414,0.0000025458,0.0000025485,0.0000025504,0.0000025548, +0.0000025650,0.0000025827,0.0000025971,0.0000026078,0.0000026161, +0.0000026152,0.0000026052,0.0000025968,0.0000025970,0.0000026108, +0.0000026367,0.0000026673,0.0000026918,0.0000027020,0.0000026981, +0.0000026902,0.0000026856,0.0000026870,0.0000026923,0.0000027013, +0.0000027166,0.0000027336,0.0000027430,0.0000027436,0.0000027389, +0.0000027283,0.0000027158,0.0000027082,0.0000027073,0.0000027078, +0.0000027059,0.0000027039,0.0000027051,0.0000027097,0.0000027157, +0.0000027215,0.0000027251,0.0000027244,0.0000027200,0.0000027156, +0.0000027145,0.0000027155,0.0000027174,0.0000027191,0.0000027193, +0.0000027161,0.0000027108,0.0000027040,0.0000026985,0.0000026945, +0.0000026945,0.0000026983,0.0000027040,0.0000027071,0.0000027059, +0.0000027004,0.0000026933,0.0000026866,0.0000026807,0.0000026741, +0.0000026656,0.0000026564,0.0000026475,0.0000026388,0.0000026303, +0.0000026219,0.0000026127,0.0000026021,0.0000025913,0.0000025822, +0.0000025753,0.0000025702,0.0000025670,0.0000025650,0.0000025645, +0.0000025652,0.0000025677,0.0000025707,0.0000025719,0.0000025732, +0.0000025801,0.0000025861,0.0000025849,0.0000025829,0.0000025840, +0.0000025861,0.0000025877,0.0000025893,0.0000025897,0.0000025874, +0.0000025823,0.0000025760,0.0000025701,0.0000025646,0.0000025597, +0.0000025559,0.0000025539,0.0000025537,0.0000025503,0.0000025452, +0.0000025462,0.0000025503,0.0000025497,0.0000025433,0.0000025250, +0.0000024940,0.0000024710,0.0000024574,0.0000024362,0.0000024108, +0.0000023933,0.0000023826,0.0000023722,0.0000023646,0.0000023646, +0.0000023705,0.0000023760,0.0000023819,0.0000024001,0.0000024257, +0.0000024451,0.0000024740,0.0000025157,0.0000025413,0.0000025478, +0.0000025473,0.0000025427,0.0000025340,0.0000025218,0.0000025091, +0.0000025045,0.0000025074,0.0000025105,0.0000025109,0.0000025123, +0.0000025146,0.0000025135,0.0000025087,0.0000025039,0.0000025003, +0.0000024980,0.0000024956,0.0000024922,0.0000024890,0.0000024882, +0.0000024893,0.0000024927,0.0000024975,0.0000025040,0.0000025122, +0.0000025210,0.0000025291,0.0000025356,0.0000025403,0.0000025434, +0.0000025455,0.0000025474,0.0000025489,0.0000025487,0.0000025466, +0.0000025444,0.0000025424,0.0000025394,0.0000025361,0.0000025347, +0.0000025343,0.0000025318,0.0000025288,0.0000025288,0.0000025333, +0.0000025426,0.0000025560,0.0000025718,0.0000025835,0.0000025857, +0.0000025835,0.0000025828,0.0000025851,0.0000025901,0.0000025950, +0.0000025978,0.0000025984,0.0000025980,0.0000025974,0.0000025969, +0.0000025964,0.0000025961,0.0000025980,0.0000026043,0.0000026142, +0.0000026250,0.0000026367,0.0000026498,0.0000026613,0.0000026680, +0.0000026723,0.0000026788,0.0000026858,0.0000026888,0.0000026883, +0.0000026833,0.0000026686,0.0000026439,0.0000026265,0.0000026270, +0.0000026396,0.0000026593,0.0000026749,0.0000026858,0.0000026986, +0.0000027065,0.0000027074,0.0000027106,0.0000027161,0.0000027209, +0.0000027270,0.0000027333,0.0000027387,0.0000027432,0.0000027479, +0.0000027535,0.0000027585,0.0000027604,0.0000027615,0.0000027657, +0.0000027712,0.0000027746,0.0000027739,0.0000027709,0.0000027684, +0.0000027675,0.0000027673,0.0000027675,0.0000027684,0.0000027702, +0.0000027745,0.0000027825,0.0000027909,0.0000027922,0.0000027865, +0.0000027767,0.0000027657,0.0000027533,0.0000027404,0.0000027310, +0.0000027277,0.0000027276,0.0000027283,0.0000027308,0.0000027336, +0.0000027336,0.0000027328,0.0000027346,0.0000027386,0.0000027455, +0.0000027526,0.0000027547,0.0000027496,0.0000027383,0.0000027271, +0.0000027205,0.0000027181,0.0000027179,0.0000027163,0.0000027129, +0.0000027083,0.0000027039,0.0000027018,0.0000027021,0.0000027046, +0.0000027096,0.0000027121,0.0000027020,0.0000026847,0.0000026774, +0.0000026791,0.0000026820,0.0000026845,0.0000026850,0.0000026819, +0.0000026761,0.0000026707,0.0000026673,0.0000026660,0.0000026660, +0.0000026663,0.0000026662,0.0000026654,0.0000026618,0.0000026537, +0.0000026436,0.0000026360,0.0000026283,0.0000026144,0.0000025976, +0.0000025845,0.0000025752,0.0000025679,0.0000025635,0.0000025611, +0.0000025585,0.0000025549,0.0000025513,0.0000025480,0.0000025429, +0.0000025333,0.0000025133,0.0000024870,0.0000024761,0.0000024804, +0.0000024941,0.0000025036,0.0000025046,0.0000025002,0.0000024952, +0.0000024922,0.0000024903,0.0000024883,0.0000024819,0.0000024717, +0.0000024601,0.0000024489,0.0000024381,0.0000024298,0.0000024245, +0.0000024239,0.0000024274,0.0000024264,0.0000024182,0.0000024134, +0.0000024184,0.0000024276,0.0000024290,0.0000024288,0.0000024551, +0.0000025076,0.0000025510,0.0000025712,0.0000025855,0.0000026115, +0.0000026331,0.0000026361,0.0000026352,0.0000026379,0.0000026399, +0.0000026374,0.0000026205,0.0000025902,0.0000025771,0.0000025817, +0.0000025988,0.0000026218,0.0000026558,0.0000026998,0.0000027324, +0.0000027455,0.0000027482,0.0000027486,0.0000027493,0.0000027430, +0.0000027300,0.0000027200,0.0000027174,0.0000027157,0.0000027150, +0.0000027151,0.0000027145,0.0000027122,0.0000027079,0.0000027013, +0.0000026918,0.0000026744,0.0000026405,0.0000025936,0.0000025546, +0.0000025354,0.0000025293,0.0000025283,0.0000025291,0.0000025291, +0.0000025301,0.0000025295,0.0000025288,0.0000025274,0.0000025259, +0.0000025229,0.0000025179,0.0000025111,0.0000025047,0.0000024993, +0.0000024950,0.0000024920,0.0000024908,0.0000024923,0.0000024943, +0.0000024978,0.0000025035,0.0000025123,0.0000025239,0.0000025361, +0.0000025525,0.0000025702,0.0000025857,0.0000025978,0.0000026050, +0.0000026076,0.0000026063,0.0000026005,0.0000025900,0.0000025746, +0.0000025547,0.0000025329,0.0000025151,0.0000025075,0.0000025099, +0.0000025117,0.0000025127,0.0000025088,0.0000025015,0.0000024935, +0.0000024869,0.0000024831,0.0000024815,0.0000024806,0.0000024785, +0.0000024745,0.0000024692,0.0000024632,0.0000024568,0.0000024503, +0.0000024442,0.0000024393,0.0000024354,0.0000024315,0.0000024255, +0.0000024157,0.0000024026,0.0000023876,0.0000023732,0.0000023628, +0.0000023593,0.0000023612,0.0000023672,0.0000023757,0.0000023850, +0.0000023935,0.0000024004,0.0000024044,0.0000024044,0.0000024001, +0.0000023925,0.0000023845,0.0000023773,0.0000023699,0.0000023651, +0.0000023651,0.0000023669,0.0000023720,0.0000023777,0.0000023787, +0.0000023785,0.0000023792,0.0000023782,0.0000023750,0.0000023703, +0.0000023648,0.0000023604,0.0000023558,0.0000023496,0.0000023436, +0.0000023401,0.0000023394,0.0000023406,0.0000023431,0.0000023466, +0.0000023501,0.0000023535,0.0000023546,0.0000023527,0.0000023482, +0.0000023429,0.0000023382,0.0000023342,0.0000023306,0.0000023277, +0.0000023262,0.0000023264,0.0000023284,0.0000023304,0.0000023322, +0.0000023374,0.0000023440,0.0000023454,0.0000023390,0.0000023308, +0.0000023263,0.0000023246,0.0000023243,0.0000023243,0.0000023318, +0.0000023537,0.0000023756,0.0000023887,0.0000023983,0.0000024051, +0.0000024109,0.0000024239,0.0000024453,0.0000024868,0.0000025433, +0.0000025744,0.0000025760,0.0000025603,0.0000025326,0.0000025097, +0.0000024981,0.0000024939,0.0000024950,0.0000024951,0.0000024797, +0.0000024557,0.0000024665,0.0000024939,0.0000025135,0.0000025586, +0.0000026077,0.0000026317,0.0000026404,0.0000026457,0.0000026500, +0.0000026538,0.0000026560,0.0000026558,0.0000026542,0.0000026526, +0.0000026505,0.0000026471,0.0000026429,0.0000026387,0.0000026342, +0.0000026297,0.0000026260,0.0000026232,0.0000026205,0.0000026174, +0.0000026154,0.0000026139,0.0000026060,0.0000026030,0.0000026004, +0.0000025952,0.0000025883,0.0000025814,0.0000025747,0.0000025685, +0.0000025631,0.0000025578,0.0000025514,0.0000025444,0.0000025382, +0.0000025317,0.0000025221,0.0000025087,0.0000024937,0.0000024800, +0.0000024677,0.0000024573,0.0000024497,0.0000024441,0.0000024395, +0.0000024361,0.0000024341,0.0000024330,0.0000024320,0.0000024316, +0.0000024317,0.0000024322,0.0000024328,0.0000024341,0.0000024371, +0.0000024419,0.0000024483,0.0000024562,0.0000024643,0.0000024716, +0.0000024787,0.0000024857,0.0000024920,0.0000024971,0.0000025005, +0.0000025027,0.0000025042,0.0000025051,0.0000025054,0.0000025049, +0.0000025036,0.0000025013,0.0000024976,0.0000024918,0.0000024826, +0.0000024701,0.0000024561,0.0000024436,0.0000024352,0.0000024318, +0.0000024324,0.0000024347,0.0000024376,0.0000024396,0.0000024409, +0.0000024419,0.0000024431,0.0000024447,0.0000024455,0.0000024443, +0.0000024410,0.0000024371,0.0000024351,0.0000024341,0.0000024314, +0.0000024287,0.0000024269,0.0000024259,0.0000024267,0.0000024284, +0.0000024296,0.0000024289,0.0000024276,0.0000024252,0.0000024248, +0.0000024323,0.0000024430,0.0000024508,0.0000024574,0.0000024677, +0.0000024801,0.0000024920,0.0000024999,0.0000025052,0.0000025076, +0.0000025082,0.0000025108,0.0000025183,0.0000025273,0.0000025319, +0.0000025347,0.0000025413,0.0000025526,0.0000025646,0.0000025711, +0.0000025694,0.0000025615,0.0000025500,0.0000025386,0.0000025302, +0.0000025269,0.0000025281,0.0000025314,0.0000025356,0.0000025439, +0.0000025540,0.0000025603,0.0000025631,0.0000025665,0.0000025717, +0.0000025776,0.0000025818,0.0000025831,0.0000025828,0.0000025824, +0.0000025798,0.0000025730,0.0000025684,0.0000025672,0.0000025622, +0.0000025532,0.0000025472,0.0000025432,0.0000025368,0.0000025296, +0.0000025212,0.0000025118,0.0000025064,0.0000025056,0.0000025091, +0.0000025167,0.0000025211,0.0000025217,0.0000025204,0.0000025174, +0.0000025145,0.0000025128,0.0000025121,0.0000025120,0.0000025120, +0.0000025111,0.0000025087,0.0000025056,0.0000025055,0.0000025092, +0.0000025142,0.0000025161,0.0000025152,0.0000025133,0.0000025127, +0.0000025148,0.0000025193,0.0000025241,0.0000025262,0.0000025232, +0.0000025178,0.0000025152,0.0000025158,0.0000025166,0.0000025147, +0.0000025116,0.0000025128,0.0000025175,0.0000025202,0.0000025165, +0.0000025122,0.0000025117,0.0000025172,0.0000025266,0.0000025368, +0.0000025452,0.0000025471,0.0000025463,0.0000025426,0.0000025377, +0.0000025331,0.0000025287,0.0000025254,0.0000025235,0.0000025213, +0.0000025188,0.0000025177,0.0000025178,0.0000025174,0.0000025159, +0.0000025134,0.0000025082,0.0000024993,0.0000024885,0.0000024804, +0.0000024782,0.0000024790,0.0000024787,0.0000024752,0.0000024686, +0.0000024629,0.0000024606,0.0000024613,0.0000024635,0.0000024664, +0.0000024706,0.0000024776,0.0000024893,0.0000025041,0.0000025167, +0.0000025249,0.0000025291,0.0000025299,0.0000025324,0.0000025370, +0.0000025406,0.0000025434,0.0000025462,0.0000025472,0.0000025466, +0.0000025432,0.0000025359,0.0000025252,0.0000025109,0.0000024929, +0.0000024746,0.0000024638,0.0000024704,0.0000025027,0.0000025483, +0.0000025798,0.0000025910,0.0000025982,0.0000026094,0.0000026180, +0.0000026203,0.0000026197,0.0000026200,0.0000026224,0.0000026252, +0.0000026260,0.0000026236,0.0000026183,0.0000026118,0.0000026063, +0.0000026034,0.0000026027,0.0000026054,0.0000026082,0.0000026099, +0.0000026104,0.0000026102,0.0000026098,0.0000026107,0.0000026142, +0.0000026175,0.0000026195,0.0000026196,0.0000026187,0.0000026176, +0.0000026166,0.0000026152,0.0000026125,0.0000026083,0.0000026050, +0.0000026044,0.0000026062,0.0000026091,0.0000026111,0.0000026109, +0.0000026086,0.0000026053,0.0000026022,0.0000025992,0.0000025956, +0.0000025925,0.0000025915,0.0000025917,0.0000025910,0.0000025888, +0.0000025855,0.0000025822,0.0000025793,0.0000025771,0.0000025764, +0.0000025779,0.0000025807,0.0000025830,0.0000025842,0.0000025848, +0.0000025845,0.0000025810,0.0000025737,0.0000025640,0.0000025549, +0.0000025490,0.0000025465,0.0000025466,0.0000025484,0.0000025505, +0.0000025517,0.0000025514,0.0000025486,0.0000025411,0.0000025306, +0.0000025211,0.0000025163,0.0000025213,0.0000025350,0.0000025404, +0.0000025358,0.0000025333,0.0000025335,0.0000025319,0.0000025299, +0.0000025315,0.0000025385,0.0000025461,0.0000025505,0.0000025517, +0.0000025512,0.0000025482,0.0000025447,0.0000025410,0.0000025362, +0.0000025307,0.0000025264,0.0000025248,0.0000025254,0.0000025286, +0.0000025336,0.0000025377,0.0000025372,0.0000025257,0.0000025021, +0.0000024767,0.0000024636,0.0000024624,0.0000024677,0.0000024711, +0.0000024636,0.0000024484,0.0000024377,0.0000024394,0.0000024506, +0.0000024672,0.0000024849,0.0000025019,0.0000025168,0.0000025312, +0.0000025421,0.0000025498,0.0000025570,0.0000025652,0.0000025753, +0.0000025872,0.0000025985,0.0000026047,0.0000026043,0.0000026018, +0.0000026014,0.0000026042,0.0000026083,0.0000026114,0.0000026114, +0.0000026086,0.0000026075,0.0000026131,0.0000026306,0.0000026580, +0.0000026843,0.0000027002,0.0000027058,0.0000027048,0.0000027000, +0.0000026955,0.0000026936,0.0000026928,0.0000026916,0.0000026892, +0.0000026851,0.0000026784,0.0000026689,0.0000026579,0.0000026467, +0.0000026350,0.0000026221,0.0000026098,0.0000026017,0.0000025969, +0.0000025929,0.0000025890,0.0000025852,0.0000025815,0.0000025786, +0.0000025758,0.0000025719,0.0000025665,0.0000025606,0.0000025566, +0.0000025568,0.0000025596,0.0000025616,0.0000025627,0.0000025645, +0.0000025634,0.0000025624,0.0000025600,0.0000025568,0.0000025533, +0.0000025497,0.0000025460,0.0000025438,0.0000025425,0.0000025418, +0.0000025422,0.0000025448,0.0000025485,0.0000025525,0.0000025540, +0.0000025528,0.0000025494,0.0000025454,0.0000025434,0.0000025426, +0.0000025420,0.0000025414,0.0000025414,0.0000025403,0.0000025388, +0.0000025404,0.0000025471,0.0000025590,0.0000025732,0.0000025873, +0.0000025999,0.0000026093,0.0000026140,0.0000026170,0.0000026241, +0.0000026364,0.0000026544,0.0000026749,0.0000026920,0.0000027006, +0.0000026982,0.0000026901,0.0000026789,0.0000026684,0.0000026599, +0.0000026537,0.0000026448,0.0000026278,0.0000026021,0.0000025766, +0.0000025588,0.0000025491,0.0000025421,0.0000025340,0.0000025237, +0.0000025130,0.0000025046,0.0000025037,0.0000025089,0.0000025130, +0.0000025089,0.0000025016,0.0000024973,0.0000024957,0.0000024915, +0.0000024867,0.0000024836,0.0000024833,0.0000024896,0.0000025013, +0.0000025130,0.0000025239,0.0000025280,0.0000025145,0.0000025104, +0.0000025741,0.0000026389,0.0000026460,0.0000026434,0.0000026411, +0.0000026381,0.0000026372,0.0000026367,0.0000026347,0.0000026307, +0.0000026275,0.0000026277,0.0000026264,0.0000026220,0.0000026173, +0.0000026097,0.0000026020,0.0000025472,0.0000024991,0.0000024979, +0.0000024922,0.0000024857,0.0000024823,0.0000024812,0.0000024823, +0.0000024818,0.0000024794,0.0000024792,0.0000024829,0.0000024933, +0.0000025099,0.0000025328,0.0000025578,0.0000025793,0.0000025953, +0.0000026055,0.0000026101,0.0000026109,0.0000026080,0.0000026044, +0.0000025987,0.0000025836,0.0000025499,0.0000025138,0.0000025021, +0.0000025062,0.0000025161,0.0000025213,0.0000025213,0.0000025196, +0.0000025186,0.0000025246,0.0000025348,0.0000025383,0.0000025347, +0.0000025340,0.0000025385,0.0000025422,0.0000025437,0.0000025457, +0.0000025512,0.0000025679,0.0000025863,0.0000025967,0.0000026047, +0.0000026108,0.0000026081,0.0000025990,0.0000025917,0.0000025919, +0.0000026075,0.0000026359,0.0000026673,0.0000026897,0.0000026969, +0.0000026937,0.0000026880,0.0000026863,0.0000026893,0.0000026960, +0.0000027087,0.0000027243,0.0000027331,0.0000027333,0.0000027278, +0.0000027184,0.0000027086,0.0000027034,0.0000027034,0.0000027038, +0.0000027013,0.0000026982,0.0000026985,0.0000027022,0.0000027079, +0.0000027135,0.0000027175,0.0000027186,0.0000027177,0.0000027165, +0.0000027168,0.0000027186,0.0000027196,0.0000027200,0.0000027192, +0.0000027161,0.0000027111,0.0000027053,0.0000026998,0.0000026964, +0.0000026966,0.0000026999,0.0000027035,0.0000027035,0.0000026994, +0.0000026930,0.0000026864,0.0000026799,0.0000026733,0.0000026667, +0.0000026599,0.0000026530,0.0000026457,0.0000026384,0.0000026311, +0.0000026219,0.0000026098,0.0000025966,0.0000025853,0.0000025761, +0.0000025680,0.0000025609,0.0000025563,0.0000025547,0.0000025548, +0.0000025565,0.0000025599,0.0000025632,0.0000025654,0.0000025659, +0.0000025677,0.0000025757,0.0000025819,0.0000025794,0.0000025752, +0.0000025763,0.0000025805,0.0000025835,0.0000025843,0.0000025838, +0.0000025807,0.0000025756,0.0000025699,0.0000025642,0.0000025596, +0.0000025569,0.0000025564,0.0000025567,0.0000025528,0.0000025471, +0.0000025489,0.0000025535,0.0000025526,0.0000025458,0.0000025270, +0.0000024957,0.0000024730,0.0000024602,0.0000024391,0.0000024129, +0.0000023952,0.0000023834,0.0000023675,0.0000023507,0.0000023443, +0.0000023490,0.0000023623,0.0000023720,0.0000023812,0.0000024044, +0.0000024319,0.0000024542,0.0000024886,0.0000025271,0.0000025447, +0.0000025469,0.0000025453,0.0000025395,0.0000025298,0.0000025151, +0.0000025039,0.0000025041,0.0000025097,0.0000025126,0.0000025121, +0.0000025116,0.0000025113,0.0000025091,0.0000025053,0.0000025021, +0.0000024984,0.0000024928,0.0000024858,0.0000024801,0.0000024774, +0.0000024776,0.0000024805,0.0000024863,0.0000024940,0.0000025027, +0.0000025118,0.0000025210,0.0000025294,0.0000025364,0.0000025412, +0.0000025441,0.0000025461,0.0000025480,0.0000025489,0.0000025479, +0.0000025446,0.0000025409,0.0000025380,0.0000025355,0.0000025342, +0.0000025350,0.0000025356,0.0000025332,0.0000025301,0.0000025297, +0.0000025338,0.0000025435,0.0000025582,0.0000025743,0.0000025840, +0.0000025847,0.0000025832,0.0000025831,0.0000025847,0.0000025875, +0.0000025902,0.0000025919,0.0000025920,0.0000025908,0.0000025895, +0.0000025890,0.0000025898,0.0000025927,0.0000025991,0.0000026095, +0.0000026213,0.0000026318,0.0000026423,0.0000026542,0.0000026657, +0.0000026726,0.0000026765,0.0000026815,0.0000026875,0.0000026908, +0.0000026903,0.0000026847,0.0000026699,0.0000026452,0.0000026279, +0.0000026291,0.0000026433,0.0000026651,0.0000026822,0.0000026930, +0.0000027022,0.0000027050,0.0000027028,0.0000027042,0.0000027077, +0.0000027106,0.0000027157,0.0000027225,0.0000027284,0.0000027342, +0.0000027420,0.0000027500,0.0000027561,0.0000027601,0.0000027636, +0.0000027673,0.0000027716,0.0000027748,0.0000027744,0.0000027716, +0.0000027697,0.0000027689,0.0000027688,0.0000027696,0.0000027705, +0.0000027725,0.0000027773,0.0000027860,0.0000027948,0.0000027951, +0.0000027885,0.0000027775,0.0000027645,0.0000027513,0.0000027393, +0.0000027318,0.0000027288,0.0000027284,0.0000027295,0.0000027326, +0.0000027347,0.0000027330,0.0000027308,0.0000027312,0.0000027334, +0.0000027388,0.0000027464,0.0000027504,0.0000027476,0.0000027371, +0.0000027246,0.0000027152,0.0000027101,0.0000027090,0.0000027088, +0.0000027071,0.0000027039,0.0000027011,0.0000027004,0.0000027010, +0.0000027038,0.0000027086,0.0000027098,0.0000026979,0.0000026801, +0.0000026744,0.0000026769,0.0000026824,0.0000026872,0.0000026892, +0.0000026877,0.0000026831,0.0000026775,0.0000026720,0.0000026686, +0.0000026680,0.0000026684,0.0000026686,0.0000026686,0.0000026678, +0.0000026635,0.0000026536,0.0000026430,0.0000026353,0.0000026246, +0.0000026074,0.0000025904,0.0000025791,0.0000025714,0.0000025666, +0.0000025647,0.0000025635,0.0000025611,0.0000025567,0.0000025524, +0.0000025487,0.0000025417,0.0000025237,0.0000024957,0.0000024773, +0.0000024804,0.0000024935,0.0000025022,0.0000025026,0.0000024985, +0.0000024939,0.0000024912,0.0000024898,0.0000024879,0.0000024828, +0.0000024735,0.0000024618,0.0000024501,0.0000024393,0.0000024310, +0.0000024249,0.0000024205,0.0000024212,0.0000024228,0.0000024173, +0.0000024107,0.0000024127,0.0000024225,0.0000024269,0.0000024244, +0.0000024351,0.0000024797,0.0000025330,0.0000025629,0.0000025731, +0.0000025874,0.0000026132,0.0000026284,0.0000026290,0.0000026310, +0.0000026357,0.0000026342,0.0000026145,0.0000025776,0.0000025517, +0.0000025518,0.0000025748,0.0000026041,0.0000026356,0.0000026783, +0.0000027201,0.0000027413,0.0000027469,0.0000027478,0.0000027500, +0.0000027481,0.0000027359,0.0000027241,0.0000027188,0.0000027158, +0.0000027132,0.0000027126,0.0000027113,0.0000027091,0.0000027042, +0.0000026948,0.0000026797,0.0000026548,0.0000026133,0.0000025689, +0.0000025448,0.0000025362,0.0000025334,0.0000025327,0.0000025331, +0.0000025319,0.0000025308,0.0000025303,0.0000025292,0.0000025283, +0.0000025255,0.0000025184,0.0000025074,0.0000024924,0.0000024769, +0.0000024640,0.0000024545,0.0000024485,0.0000024475,0.0000024509, +0.0000024585,0.0000024685,0.0000024787,0.0000024877,0.0000024979, +0.0000025044,0.0000025111,0.0000025187,0.0000025278,0.0000025372, +0.0000025435,0.0000025478,0.0000025500,0.0000025485,0.0000025430, +0.0000025338,0.0000025231,0.0000025133,0.0000025076,0.0000025068, +0.0000025099,0.0000025119,0.0000025085,0.0000024961,0.0000024797, +0.0000024653,0.0000024552,0.0000024505,0.0000024503,0.0000024531, +0.0000024575,0.0000024606,0.0000024612,0.0000024594,0.0000024550, +0.0000024490,0.0000024425,0.0000024357,0.0000024282,0.0000024199, +0.0000024093,0.0000023955,0.0000023803,0.0000023658,0.0000023539, +0.0000023458,0.0000023437,0.0000023463,0.0000023533,0.0000023637, +0.0000023753,0.0000023855,0.0000023929,0.0000023976,0.0000023988, +0.0000023968,0.0000023911,0.0000023831,0.0000023761,0.0000023712, +0.0000023668,0.0000023628,0.0000023615,0.0000023627,0.0000023672, +0.0000023726,0.0000023734,0.0000023724,0.0000023731,0.0000023736, +0.0000023724,0.0000023689,0.0000023636,0.0000023582,0.0000023516, +0.0000023444,0.0000023388,0.0000023356,0.0000023328,0.0000023315, +0.0000023326,0.0000023354,0.0000023392,0.0000023439,0.0000023475, +0.0000023478,0.0000023447,0.0000023389,0.0000023322,0.0000023261, +0.0000023210,0.0000023172,0.0000023151,0.0000023148,0.0000023169, +0.0000023209,0.0000023246,0.0000023289,0.0000023371,0.0000023439, +0.0000023433,0.0000023364,0.0000023306,0.0000023278,0.0000023265, +0.0000023260,0.0000023262,0.0000023391,0.0000023638,0.0000023821, +0.0000023914,0.0000023983,0.0000024025,0.0000024108,0.0000024286, +0.0000024594,0.0000025127,0.0000025614,0.0000025748,0.0000025657, +0.0000025381,0.0000025115,0.0000024950,0.0000024871,0.0000024890, +0.0000024921,0.0000024849,0.0000024599,0.0000024550,0.0000024792, +0.0000024982,0.0000025203,0.0000025669,0.0000026096,0.0000026307, +0.0000026382,0.0000026409,0.0000026423,0.0000026434,0.0000026433, +0.0000026426,0.0000026420,0.0000026406,0.0000026377,0.0000026332, +0.0000026278,0.0000026216,0.0000026156,0.0000026112,0.0000026088, +0.0000026077,0.0000026068,0.0000026071,0.0000026080,0.0000025965, +0.0000025963,0.0000025962,0.0000025928,0.0000025864,0.0000025797, +0.0000025736,0.0000025677,0.0000025615,0.0000025539,0.0000025447, +0.0000025360,0.0000025271,0.0000025154,0.0000025008,0.0000024863, +0.0000024735,0.0000024607,0.0000024475,0.0000024371,0.0000024314, +0.0000024276,0.0000024241,0.0000024217,0.0000024211,0.0000024214, +0.0000024219,0.0000024223,0.0000024231,0.0000024241,0.0000024249, +0.0000024256,0.0000024269,0.0000024293,0.0000024327,0.0000024373, +0.0000024423,0.0000024472,0.0000024516,0.0000024558,0.0000024596, +0.0000024632,0.0000024666,0.0000024695,0.0000024721,0.0000024739, +0.0000024747,0.0000024741,0.0000024722,0.0000024687,0.0000024630, +0.0000024553,0.0000024460,0.0000024363,0.0000024284,0.0000024239, +0.0000024233,0.0000024260,0.0000024298,0.0000024331,0.0000024359, +0.0000024382,0.0000024404,0.0000024428,0.0000024456,0.0000024480, +0.0000024484,0.0000024463,0.0000024420,0.0000024384,0.0000024372, +0.0000024360,0.0000024331,0.0000024305,0.0000024284,0.0000024272, +0.0000024279,0.0000024297,0.0000024306,0.0000024287,0.0000024259, +0.0000024213,0.0000024198,0.0000024265,0.0000024372,0.0000024452, +0.0000024521,0.0000024638,0.0000024784,0.0000024911,0.0000024988, +0.0000025048,0.0000025087,0.0000025093,0.0000025113,0.0000025186, +0.0000025290,0.0000025361,0.0000025423,0.0000025515,0.0000025601, +0.0000025638,0.0000025644,0.0000025599,0.0000025507,0.0000025408, +0.0000025322,0.0000025257,0.0000025234,0.0000025253,0.0000025295, +0.0000025346,0.0000025429,0.0000025527,0.0000025592,0.0000025622, +0.0000025651,0.0000025699,0.0000025752,0.0000025798,0.0000025823, +0.0000025825,0.0000025824,0.0000025812,0.0000025761,0.0000025693, +0.0000025665,0.0000025657,0.0000025604,0.0000025526,0.0000025470, +0.0000025423,0.0000025353,0.0000025289,0.0000025226,0.0000025144, +0.0000025081,0.0000025071,0.0000025115,0.0000025184,0.0000025214, +0.0000025218,0.0000025198,0.0000025163,0.0000025136,0.0000025129, +0.0000025138,0.0000025144,0.0000025144,0.0000025139,0.0000025121, +0.0000025087,0.0000025063,0.0000025076,0.0000025115,0.0000025133, +0.0000025121,0.0000025094,0.0000025077,0.0000025080,0.0000025107, +0.0000025146,0.0000025175,0.0000025175,0.0000025163,0.0000025160, +0.0000025169,0.0000025188,0.0000025188,0.0000025149,0.0000025114, +0.0000025119,0.0000025161,0.0000025158,0.0000025117,0.0000025077, +0.0000025091,0.0000025154,0.0000025244,0.0000025346,0.0000025427, +0.0000025463,0.0000025449,0.0000025395,0.0000025328,0.0000025270, +0.0000025241,0.0000025237,0.0000025232,0.0000025224,0.0000025229, +0.0000025238,0.0000025235,0.0000025222,0.0000025205,0.0000025172, +0.0000025098,0.0000024980,0.0000024859,0.0000024791,0.0000024779, +0.0000024789,0.0000024782,0.0000024734,0.0000024662,0.0000024608, +0.0000024600,0.0000024610,0.0000024624,0.0000024649,0.0000024703, +0.0000024791,0.0000024892,0.0000024988,0.0000025074,0.0000025140, +0.0000025184,0.0000025221,0.0000025260,0.0000025299,0.0000025339, +0.0000025377,0.0000025407,0.0000025429,0.0000025430,0.0000025385, +0.0000025338,0.0000025263,0.0000025129,0.0000024931,0.0000024727, +0.0000024617,0.0000024695,0.0000025040,0.0000025505,0.0000025820, +0.0000025943,0.0000026026,0.0000026119,0.0000026173,0.0000026186, +0.0000026203,0.0000026237,0.0000026266,0.0000026272,0.0000026256, +0.0000026224,0.0000026184,0.0000026151,0.0000026132,0.0000026126, +0.0000026128,0.0000026121,0.0000026105,0.0000026089,0.0000026074, +0.0000026059,0.0000026054,0.0000026073,0.0000026103,0.0000026136, +0.0000026157,0.0000026157,0.0000026149,0.0000026136,0.0000026117, +0.0000026088,0.0000026048,0.0000026008,0.0000025987,0.0000025989, +0.0000026015,0.0000026042,0.0000026047,0.0000026037,0.0000026021, +0.0000026001,0.0000025973,0.0000025944,0.0000025923,0.0000025924, +0.0000025930,0.0000025927,0.0000025907,0.0000025871,0.0000025827, +0.0000025790,0.0000025766,0.0000025755,0.0000025762,0.0000025785, +0.0000025811,0.0000025829,0.0000025835,0.0000025823,0.0000025784, +0.0000025715,0.0000025631,0.0000025552,0.0000025496,0.0000025466, +0.0000025459,0.0000025468,0.0000025498,0.0000025526,0.0000025542, +0.0000025530,0.0000025472,0.0000025370,0.0000025263,0.0000025183, +0.0000025150,0.0000025222,0.0000025368,0.0000025414,0.0000025355, +0.0000025302,0.0000025286,0.0000025269,0.0000025262,0.0000025295, +0.0000025363,0.0000025430,0.0000025472,0.0000025486,0.0000025478, +0.0000025461,0.0000025453,0.0000025443,0.0000025412,0.0000025360, +0.0000025309,0.0000025288,0.0000025304,0.0000025353,0.0000025400, +0.0000025415,0.0000025396,0.0000025312,0.0000025104,0.0000024826, +0.0000024645,0.0000024616,0.0000024678,0.0000024699,0.0000024626, +0.0000024487,0.0000024415,0.0000024458,0.0000024592,0.0000024761, +0.0000024944,0.0000025123,0.0000025288,0.0000025424,0.0000025511, +0.0000025568,0.0000025621,0.0000025687,0.0000025784,0.0000025896, +0.0000025992,0.0000026043,0.0000026042,0.0000026023,0.0000026016, +0.0000026025,0.0000026032,0.0000026005,0.0000025942,0.0000025908, +0.0000025930,0.0000026030,0.0000026201,0.0000026407,0.0000026576, +0.0000026668,0.0000026689,0.0000026675,0.0000026637,0.0000026609, +0.0000026597,0.0000026590,0.0000026579,0.0000026560,0.0000026528, +0.0000026478,0.0000026407,0.0000026324,0.0000026239,0.0000026155, +0.0000026080,0.0000026027,0.0000025996,0.0000025970,0.0000025939, +0.0000025910,0.0000025878,0.0000025845,0.0000025812,0.0000025774, +0.0000025728,0.0000025684,0.0000025655,0.0000025658,0.0000025679, +0.0000025700,0.0000025715,0.0000025717,0.0000025705,0.0000025678, +0.0000025638,0.0000025585,0.0000025522,0.0000025467,0.0000025411, +0.0000025369,0.0000025338,0.0000025309,0.0000025265,0.0000025216, +0.0000025184,0.0000025184,0.0000025208,0.0000025229,0.0000025235, +0.0000025212,0.0000025175,0.0000025143,0.0000025112,0.0000025084, +0.0000025067,0.0000025065,0.0000025060,0.0000025046,0.0000025039, +0.0000025071,0.0000025144,0.0000025254,0.0000025393,0.0000025553, +0.0000025721,0.0000025875,0.0000026002,0.0000026110,0.0000026201, +0.0000026308,0.0000026461,0.0000026656,0.0000026845,0.0000026945, +0.0000026932,0.0000026867,0.0000026763,0.0000026658,0.0000026576, +0.0000026504,0.0000026410,0.0000026251,0.0000026034,0.0000025813, +0.0000025653,0.0000025559,0.0000025486,0.0000025395,0.0000025270, +0.0000025117,0.0000025024,0.0000025044,0.0000025122,0.0000025134, +0.0000025069,0.0000024998,0.0000024971,0.0000024935,0.0000024891, +0.0000024839,0.0000024811,0.0000024832,0.0000024929,0.0000025067, +0.0000025199,0.0000025272,0.0000025157,0.0000025049,0.0000025631, +0.0000026347,0.0000026452,0.0000026419,0.0000026381,0.0000026355, +0.0000026359,0.0000026361,0.0000026340,0.0000026296,0.0000026269, +0.0000026278,0.0000026270,0.0000026224,0.0000026180,0.0000026108, +0.0000026038,0.0000025553,0.0000024994,0.0000024946,0.0000024895, +0.0000024808,0.0000024757,0.0000024749,0.0000024771,0.0000024778, +0.0000024774,0.0000024788,0.0000024833,0.0000024898,0.0000024966, +0.0000025045,0.0000025178,0.0000025313,0.0000025464,0.0000025597, +0.0000025701,0.0000025762,0.0000025764,0.0000025725,0.0000025646, +0.0000025478,0.0000025214,0.0000025032,0.0000025025,0.0000025118, +0.0000025207,0.0000025229,0.0000025223,0.0000025192,0.0000025173, +0.0000025220,0.0000025309,0.0000025332,0.0000025285,0.0000025259, +0.0000025304,0.0000025358,0.0000025370,0.0000025370,0.0000025391, +0.0000025510,0.0000025711,0.0000025853,0.0000025911,0.0000025980, +0.0000026047,0.0000026028,0.0000025934,0.0000025858,0.0000025883, +0.0000026070,0.0000026366,0.0000026665,0.0000026872,0.0000026939, +0.0000026920,0.0000026879,0.0000026882,0.0000026931,0.0000027032, +0.0000027163,0.0000027245,0.0000027246,0.0000027198,0.0000027120, +0.0000027047,0.0000027007,0.0000027000,0.0000026994,0.0000026960, +0.0000026925,0.0000026927,0.0000026964,0.0000027014,0.0000027058, +0.0000027094,0.0000027116,0.0000027121,0.0000027128,0.0000027152, +0.0000027182,0.0000027201,0.0000027208,0.0000027203,0.0000027177, +0.0000027131,0.0000027076,0.0000027025,0.0000026998,0.0000026999, +0.0000027014,0.0000027017,0.0000026989,0.0000026931,0.0000026869, +0.0000026821,0.0000026776,0.0000026722,0.0000026658,0.0000026588, +0.0000026512,0.0000026439,0.0000026372,0.0000026297,0.0000026184, +0.0000026040,0.0000025904,0.0000025799,0.0000025711,0.0000025620, +0.0000025531,0.0000025468,0.0000025444,0.0000025450,0.0000025483, +0.0000025531,0.0000025576,0.0000025597,0.0000025602,0.0000025603, +0.0000025631,0.0000025721,0.0000025788,0.0000025760,0.0000025700, +0.0000025705,0.0000025759,0.0000025794,0.0000025796,0.0000025773, +0.0000025729,0.0000025680,0.0000025637,0.0000025606,0.0000025592, +0.0000025595,0.0000025594,0.0000025541,0.0000025490,0.0000025525, +0.0000025579,0.0000025560,0.0000025483,0.0000025294,0.0000024979, +0.0000024754,0.0000024638,0.0000024436,0.0000024164,0.0000023976, +0.0000023855,0.0000023669,0.0000023430,0.0000023268,0.0000023247, +0.0000023365,0.0000023560,0.0000023692,0.0000023838,0.0000024126, +0.0000024406,0.0000024663,0.0000025044,0.0000025360,0.0000025455, +0.0000025452,0.0000025421,0.0000025358,0.0000025232,0.0000025072, +0.0000025012,0.0000025060,0.0000025124,0.0000025138,0.0000025115, +0.0000025089,0.0000025081,0.0000025077,0.0000025064,0.0000025018, +0.0000024917,0.0000024798,0.0000024717,0.0000024690,0.0000024697, +0.0000024724,0.0000024777,0.0000024855,0.0000024944,0.0000025034, +0.0000025120,0.0000025205,0.0000025287,0.0000025357,0.0000025403, +0.0000025430,0.0000025453,0.0000025474,0.0000025482,0.0000025470, +0.0000025428,0.0000025376,0.0000025335,0.0000025318,0.0000025325, +0.0000025356,0.0000025371,0.0000025346,0.0000025308,0.0000025299, +0.0000025340,0.0000025449,0.0000025616,0.0000025781,0.0000025849, +0.0000025848,0.0000025835,0.0000025826,0.0000025828,0.0000025840, +0.0000025856,0.0000025862,0.0000025849,0.0000025823,0.0000025803, +0.0000025802,0.0000025837,0.0000025906,0.0000026007,0.0000026137, +0.0000026259,0.0000026357,0.0000026455,0.0000026570,0.0000026681, +0.0000026747,0.0000026786,0.0000026833,0.0000026888,0.0000026918, +0.0000026914,0.0000026857,0.0000026710,0.0000026478,0.0000026306, +0.0000026316,0.0000026470,0.0000026702,0.0000026878,0.0000026980, +0.0000027047,0.0000027040,0.0000026995,0.0000026995,0.0000027003, +0.0000027016,0.0000027068,0.0000027125,0.0000027171,0.0000027242, +0.0000027342,0.0000027436,0.0000027510,0.0000027579,0.0000027633, +0.0000027672,0.0000027711,0.0000027736,0.0000027733,0.0000027716, +0.0000027708,0.0000027705,0.0000027709,0.0000027720,0.0000027726, +0.0000027737,0.0000027773,0.0000027857,0.0000027941,0.0000027950, +0.0000027880,0.0000027773,0.0000027641,0.0000027507,0.0000027394, +0.0000027327,0.0000027300,0.0000027298,0.0000027309,0.0000027336, +0.0000027349,0.0000027324,0.0000027292,0.0000027281,0.0000027289, +0.0000027321,0.0000027387,0.0000027437,0.0000027431,0.0000027352, +0.0000027239,0.0000027134,0.0000027056,0.0000027023,0.0000027019, +0.0000027014,0.0000027001,0.0000027000,0.0000027005,0.0000027011, +0.0000027044,0.0000027086,0.0000027069,0.0000026919,0.0000026747, +0.0000026709,0.0000026749,0.0000026821,0.0000026886,0.0000026919, +0.0000026914,0.0000026885,0.0000026842,0.0000026785,0.0000026732, +0.0000026710,0.0000026708,0.0000026710,0.0000026712,0.0000026718, +0.0000026708,0.0000026637,0.0000026516,0.0000026412,0.0000026323, +0.0000026172,0.0000025979,0.0000025836,0.0000025751,0.0000025697, +0.0000025678,0.0000025673,0.0000025658,0.0000025615,0.0000025556, +0.0000025518,0.0000025469,0.0000025306,0.0000025014,0.0000024798, +0.0000024814,0.0000024939,0.0000025009,0.0000024998,0.0000024956, +0.0000024916,0.0000024892,0.0000024882,0.0000024864,0.0000024824, +0.0000024745,0.0000024634,0.0000024513,0.0000024402,0.0000024314, +0.0000024249,0.0000024185,0.0000024154,0.0000024168,0.0000024147, +0.0000024073,0.0000024062,0.0000024163,0.0000024244,0.0000024230, +0.0000024241,0.0000024541,0.0000025098,0.0000025512,0.0000025657, +0.0000025709,0.0000025872,0.0000026098,0.0000026212,0.0000026254, +0.0000026290,0.0000026251,0.0000026032,0.0000025669,0.0000025324, +0.0000025207,0.0000025412,0.0000025815,0.0000026173,0.0000026561, +0.0000027024,0.0000027343,0.0000027442,0.0000027464,0.0000027488, +0.0000027496,0.0000027413,0.0000027284,0.0000027216,0.0000027167, +0.0000027126,0.0000027120,0.0000027088,0.0000027041,0.0000026963, +0.0000026833,0.0000026641,0.0000026353,0.0000025935,0.0000025590, +0.0000025459,0.0000025390,0.0000025350,0.0000025342,0.0000025351, +0.0000025336,0.0000025312,0.0000025306,0.0000025300,0.0000025299, +0.0000025281,0.0000025223,0.0000025095,0.0000024902,0.0000024666, +0.0000024434,0.0000024245,0.0000024090,0.0000023982,0.0000023941, +0.0000023966,0.0000024049,0.0000024183,0.0000024354,0.0000024546, +0.0000024741,0.0000024918,0.0000025047,0.0000025126,0.0000025177, +0.0000025196,0.0000025189,0.0000025173,0.0000025149,0.0000025137, +0.0000025113,0.0000025099,0.0000025096,0.0000025083,0.0000025089, +0.0000025102,0.0000025095,0.0000024980,0.0000024760,0.0000024525, +0.0000024349,0.0000024245,0.0000024189,0.0000024166,0.0000024170, +0.0000024210,0.0000024280,0.0000024346,0.0000024383,0.0000024383, +0.0000024343,0.0000024276,0.0000024192,0.0000024093,0.0000023975, +0.0000023842,0.0000023697,0.0000023558,0.0000023445,0.0000023365, +0.0000023316,0.0000023303,0.0000023320,0.0000023378,0.0000023484, +0.0000023624,0.0000023761,0.0000023858,0.0000023910,0.0000023929, +0.0000023917,0.0000023873,0.0000023810,0.0000023735,0.0000023668, +0.0000023635,0.0000023623,0.0000023602,0.0000023575,0.0000023568, +0.0000023597,0.0000023643,0.0000023651,0.0000023645,0.0000023655, +0.0000023677,0.0000023683,0.0000023666,0.0000023622,0.0000023553, +0.0000023470,0.0000023397,0.0000023353,0.0000023310,0.0000023251, +0.0000023194,0.0000023181,0.0000023199,0.0000023236,0.0000023277, +0.0000023320,0.0000023353,0.0000023360,0.0000023341,0.0000023291, +0.0000023227,0.0000023161,0.0000023106,0.0000023071,0.0000023059, +0.0000023066,0.0000023101,0.0000023158,0.0000023216,0.0000023296, +0.0000023400,0.0000023451,0.0000023421,0.0000023356,0.0000023320, +0.0000023301,0.0000023286,0.0000023283,0.0000023318,0.0000023505, +0.0000023739,0.0000023867,0.0000023927,0.0000023966,0.0000024005, +0.0000024146,0.0000024397,0.0000024843,0.0000025413,0.0000025724, +0.0000025700,0.0000025436,0.0000025143,0.0000024927,0.0000024789, +0.0000024801,0.0000024881,0.0000024878,0.0000024670,0.0000024459, +0.0000024576,0.0000024844,0.0000024969,0.0000025193,0.0000025625, +0.0000026030,0.0000026257,0.0000026338,0.0000026355,0.0000026359, +0.0000026359,0.0000026355,0.0000026341,0.0000026307,0.0000026250, +0.0000026174,0.0000026083,0.0000025987,0.0000025904,0.0000025855, +0.0000025840,0.0000025850,0.0000025870,0.0000025904,0.0000025949, +0.0000025789,0.0000025823,0.0000025860,0.0000025863,0.0000025826, +0.0000025769,0.0000025703,0.0000025634,0.0000025556,0.0000025464, +0.0000025356,0.0000025243,0.0000025110,0.0000024956,0.0000024808, +0.0000024676,0.0000024537,0.0000024385,0.0000024263,0.0000024206, +0.0000024198,0.0000024200,0.0000024188,0.0000024173,0.0000024171, +0.0000024178,0.0000024187,0.0000024186,0.0000024184,0.0000024196, +0.0000024209,0.0000024222,0.0000024238,0.0000024263,0.0000024295, +0.0000024331,0.0000024366,0.0000024399,0.0000024424,0.0000024438, +0.0000024440,0.0000024434,0.0000024424,0.0000024415,0.0000024408, +0.0000024396,0.0000024384,0.0000024365,0.0000024340,0.0000024308, +0.0000024268,0.0000024224,0.0000024183,0.0000024150,0.0000024143, +0.0000024160,0.0000024195,0.0000024240,0.0000024281,0.0000024316, +0.0000024352,0.0000024390,0.0000024425,0.0000024455,0.0000024484, +0.0000024506,0.0000024509,0.0000024482,0.0000024434,0.0000024406, +0.0000024397,0.0000024375,0.0000024345,0.0000024323,0.0000024301, +0.0000024288,0.0000024293,0.0000024313,0.0000024314,0.0000024283, +0.0000024242,0.0000024179,0.0000024147,0.0000024208,0.0000024315, +0.0000024395,0.0000024470,0.0000024605,0.0000024768,0.0000024897, +0.0000024971,0.0000025036,0.0000025095,0.0000025117,0.0000025145, +0.0000025218,0.0000025324,0.0000025416,0.0000025509,0.0000025601, +0.0000025644,0.0000025626,0.0000025574,0.0000025499,0.0000025415, +0.0000025344,0.0000025279,0.0000025226,0.0000025216,0.0000025238, +0.0000025284,0.0000025335,0.0000025413,0.0000025512,0.0000025579, +0.0000025608,0.0000025630,0.0000025670,0.0000025722,0.0000025766, +0.0000025799,0.0000025818,0.0000025819,0.0000025812,0.0000025781, +0.0000025716,0.0000025663,0.0000025649,0.0000025639,0.0000025592, +0.0000025522,0.0000025465,0.0000025406,0.0000025334,0.0000025287, +0.0000025246,0.0000025164,0.0000025092,0.0000025081,0.0000025134, +0.0000025193,0.0000025214,0.0000025209,0.0000025178,0.0000025135, +0.0000025113,0.0000025120,0.0000025143,0.0000025158,0.0000025157, +0.0000025153,0.0000025141,0.0000025110,0.0000025072,0.0000025063, +0.0000025085,0.0000025100,0.0000025086,0.0000025061,0.0000025045, +0.0000025044,0.0000025061,0.0000025090,0.0000025120,0.0000025141, +0.0000025156,0.0000025167,0.0000025178,0.0000025196,0.0000025214, +0.0000025184,0.0000025106,0.0000025059,0.0000025097,0.0000025136, +0.0000025116,0.0000025063,0.0000025046,0.0000025074,0.0000025129, +0.0000025208,0.0000025315,0.0000025408,0.0000025443,0.0000025409, +0.0000025328,0.0000025246,0.0000025204,0.0000025202,0.0000025212, +0.0000025228,0.0000025255,0.0000025278,0.0000025278,0.0000025260, +0.0000025231,0.0000025198,0.0000025149,0.0000025056,0.0000024927, +0.0000024817,0.0000024777,0.0000024785,0.0000024796,0.0000024774, +0.0000024711,0.0000024634,0.0000024595,0.0000024591,0.0000024597, +0.0000024605,0.0000024642,0.0000024715,0.0000024794,0.0000024856, +0.0000024911,0.0000024965,0.0000025013,0.0000025052,0.0000025086, +0.0000025120,0.0000025155,0.0000025190,0.0000025223,0.0000025249, +0.0000025267,0.0000025269,0.0000025263,0.0000025242,0.0000025180, +0.0000025049,0.0000024854,0.0000024679,0.0000024616,0.0000024728, +0.0000025123,0.0000025607,0.0000025884,0.0000025972,0.0000026040, +0.0000026114,0.0000026156,0.0000026181,0.0000026223,0.0000026269, +0.0000026294,0.0000026284,0.0000026256,0.0000026233,0.0000026221, +0.0000026218,0.0000026210,0.0000026203,0.0000026185,0.0000026151, +0.0000026111,0.0000026077,0.0000026051,0.0000026029,0.0000026023, +0.0000026031,0.0000026056,0.0000026082,0.0000026092,0.0000026089, +0.0000026076,0.0000026054,0.0000026021,0.0000025977,0.0000025933, +0.0000025906,0.0000025902,0.0000025928,0.0000025959,0.0000025975, +0.0000025982,0.0000025988,0.0000025982,0.0000025958,0.0000025930, +0.0000025916,0.0000025924,0.0000025940,0.0000025946,0.0000025934, +0.0000025900,0.0000025845,0.0000025792,0.0000025756,0.0000025737, +0.0000025731,0.0000025746,0.0000025778,0.0000025807,0.0000025818, +0.0000025801,0.0000025757,0.0000025696,0.0000025633,0.0000025574, +0.0000025524,0.0000025478,0.0000025442,0.0000025429,0.0000025453, +0.0000025505,0.0000025554,0.0000025571,0.0000025535,0.0000025443, +0.0000025319,0.0000025215,0.0000025156,0.0000025148,0.0000025241, +0.0000025390,0.0000025425,0.0000025347,0.0000025268,0.0000025236, +0.0000025225,0.0000025236,0.0000025272,0.0000025329,0.0000025391, +0.0000025438,0.0000025453,0.0000025451,0.0000025449,0.0000025460, +0.0000025471,0.0000025469,0.0000025433,0.0000025377,0.0000025335, +0.0000025349,0.0000025407,0.0000025444,0.0000025429,0.0000025388, +0.0000025326,0.0000025166,0.0000024914,0.0000024699,0.0000024651, +0.0000024690,0.0000024699,0.0000024643,0.0000024536,0.0000024499, +0.0000024559,0.0000024691,0.0000024861,0.0000025044,0.0000025219, +0.0000025377,0.0000025484,0.0000025545,0.0000025579,0.0000025616, +0.0000025689,0.0000025788,0.0000025885,0.0000025971,0.0000026024, +0.0000026028,0.0000026011,0.0000026008,0.0000026014,0.0000026001, +0.0000025928,0.0000025841,0.0000025816,0.0000025863,0.0000025961, +0.0000026082,0.0000026200,0.0000026287,0.0000026335,0.0000026347, +0.0000026337,0.0000026316,0.0000026299,0.0000026289,0.0000026285, +0.0000026287,0.0000026285,0.0000026273,0.0000026241,0.0000026190, +0.0000026129,0.0000026068,0.0000026021,0.0000025992,0.0000025977, +0.0000025965,0.0000025948,0.0000025927,0.0000025902,0.0000025865, +0.0000025820,0.0000025769,0.0000025715,0.0000025668,0.0000025643, +0.0000025643,0.0000025659,0.0000025684,0.0000025711,0.0000025736, +0.0000025750,0.0000025732,0.0000025714,0.0000025674,0.0000025620, +0.0000025555,0.0000025486,0.0000025421,0.0000025354,0.0000025301, +0.0000025237,0.0000025156,0.0000025067,0.0000025001,0.0000024968, +0.0000024967,0.0000024973,0.0000024968,0.0000024950,0.0000024933, +0.0000024913,0.0000024892,0.0000024874,0.0000024865,0.0000024865, +0.0000024867,0.0000024862,0.0000024855,0.0000024858,0.0000024872, +0.0000024903,0.0000024959,0.0000025058,0.0000025212,0.0000025411, +0.0000025634,0.0000025855,0.0000026038,0.0000026164,0.0000026254, +0.0000026372,0.0000026554,0.0000026747,0.0000026867,0.0000026877, +0.0000026838,0.0000026739,0.0000026640,0.0000026551,0.0000026471, +0.0000026379,0.0000026247,0.0000026060,0.0000025870,0.0000025726, +0.0000025636,0.0000025564,0.0000025459,0.0000025283,0.0000025104, +0.0000025031,0.0000025080,0.0000025134,0.0000025107,0.0000025020, +0.0000024972,0.0000024954,0.0000024920,0.0000024862,0.0000024812, +0.0000024801,0.0000024858,0.0000024986,0.0000025144,0.0000025256, +0.0000025176,0.0000025041,0.0000025491,0.0000026277,0.0000026437, +0.0000026397,0.0000026346,0.0000026328,0.0000026342,0.0000026348, +0.0000026325,0.0000026279,0.0000026261,0.0000026280,0.0000026276, +0.0000026233,0.0000026196,0.0000026127,0.0000026060,0.0000025691, +0.0000025052,0.0000024910,0.0000024870,0.0000024776,0.0000024703, +0.0000024695,0.0000024730,0.0000024746,0.0000024743,0.0000024759, +0.0000024811,0.0000024887,0.0000024961,0.0000025029,0.0000025086, +0.0000025115,0.0000025145,0.0000025194,0.0000025255,0.0000025304, +0.0000025316,0.0000025282,0.0000025233,0.0000025154,0.0000025046, +0.0000025012,0.0000025050,0.0000025165,0.0000025232,0.0000025241, +0.0000025233,0.0000025198,0.0000025168,0.0000025196,0.0000025264, +0.0000025274,0.0000025223,0.0000025179,0.0000025221,0.0000025287, +0.0000025301,0.0000025285,0.0000025286,0.0000025350,0.0000025513, +0.0000025693,0.0000025784,0.0000025829,0.0000025915,0.0000025999, +0.0000025977,0.0000025875,0.0000025816,0.0000025877,0.0000026083, +0.0000026371,0.0000026660,0.0000026863,0.0000026936,0.0000026917, +0.0000026897,0.0000026919,0.0000026990,0.0000027094,0.0000027172, +0.0000027182,0.0000027150,0.0000027090,0.0000027034,0.0000026995, +0.0000026966,0.0000026936,0.0000026902,0.0000026882,0.0000026902, +0.0000026948,0.0000026989,0.0000027009,0.0000027028,0.0000027057, +0.0000027082,0.0000027094,0.0000027115,0.0000027148,0.0000027173, +0.0000027184,0.0000027183,0.0000027165,0.0000027135,0.0000027101, +0.0000027072,0.0000027055,0.0000027038,0.0000027014,0.0000026982, +0.0000026938,0.0000026886,0.0000026841,0.0000026806,0.0000026769, +0.0000026714,0.0000026645,0.0000026565,0.0000026483,0.0000026410, +0.0000026344,0.0000026255,0.0000026124,0.0000025978,0.0000025856, +0.0000025765,0.0000025684,0.0000025598,0.0000025513,0.0000025446, +0.0000025406,0.0000025397,0.0000025421,0.0000025472,0.0000025527, +0.0000025563,0.0000025567,0.0000025555,0.0000025553,0.0000025588, +0.0000025691,0.0000025771,0.0000025745,0.0000025677,0.0000025665, +0.0000025709,0.0000025747,0.0000025751,0.0000025727,0.0000025686, +0.0000025648,0.0000025622,0.0000025613,0.0000025614,0.0000025599, +0.0000025540,0.0000025511,0.0000025562,0.0000025621,0.0000025591, +0.0000025509,0.0000025322,0.0000025004,0.0000024777,0.0000024678, +0.0000024493,0.0000024214,0.0000024005,0.0000023884,0.0000023704, +0.0000023438,0.0000023214,0.0000023112,0.0000023136,0.0000023297, +0.0000023523,0.0000023687,0.0000023904,0.0000024234,0.0000024508, +0.0000024809,0.0000025188,0.0000025407,0.0000025433,0.0000025423, +0.0000025392,0.0000025306,0.0000025138,0.0000025005,0.0000025010, +0.0000025092,0.0000025144,0.0000025136,0.0000025098,0.0000025079, +0.0000025087,0.0000025101,0.0000025069,0.0000024940,0.0000024778, +0.0000024689,0.0000024672,0.0000024680,0.0000024703,0.0000024741, +0.0000024798,0.0000024871,0.0000024949,0.0000025028,0.0000025107, +0.0000025188,0.0000025270,0.0000025341,0.0000025393,0.0000025426, +0.0000025454,0.0000025477,0.0000025485,0.0000025464,0.0000025409, +0.0000025342,0.0000025295,0.0000025285,0.0000025317,0.0000025372, +0.0000025387,0.0000025356,0.0000025311,0.0000025299,0.0000025348, +0.0000025480,0.0000025669,0.0000025816,0.0000025848,0.0000025842, +0.0000025823,0.0000025801,0.0000025796,0.0000025803,0.0000025805, +0.0000025788,0.0000025756,0.0000025724,0.0000025710,0.0000025729, +0.0000025798,0.0000025895,0.0000026013,0.0000026154,0.0000026280, +0.0000026365,0.0000026446,0.0000026552,0.0000026661,0.0000026738, +0.0000026791,0.0000026843,0.0000026893,0.0000026921,0.0000026915, +0.0000026860,0.0000026729,0.0000026511,0.0000026333,0.0000026337, +0.0000026501,0.0000026739,0.0000026914,0.0000027019,0.0000027066, +0.0000027037,0.0000026985,0.0000026981,0.0000026966,0.0000026969, +0.0000027013,0.0000027057,0.0000027095,0.0000027164,0.0000027258, +0.0000027355,0.0000027449,0.0000027539,0.0000027604,0.0000027649, +0.0000027681,0.0000027700,0.0000027705,0.0000027709,0.0000027712, +0.0000027719,0.0000027737,0.0000027748,0.0000027744,0.0000027736, +0.0000027744,0.0000027801,0.0000027881,0.0000027908,0.0000027854, +0.0000027758,0.0000027644,0.0000027517,0.0000027400,0.0000027327, +0.0000027305,0.0000027309,0.0000027318,0.0000027330,0.0000027340, +0.0000027323,0.0000027284,0.0000027253,0.0000027250,0.0000027262, +0.0000027303,0.0000027348,0.0000027354,0.0000027309,0.0000027229, +0.0000027135,0.0000027047,0.0000026990,0.0000026977,0.0000026978, +0.0000026983,0.0000026995,0.0000027005,0.0000027022,0.0000027063, +0.0000027086,0.0000027020,0.0000026838,0.0000026691,0.0000026675, +0.0000026726,0.0000026807,0.0000026884,0.0000026932,0.0000026934, +0.0000026914,0.0000026882,0.0000026833,0.0000026777,0.0000026742, +0.0000026734,0.0000026732,0.0000026731,0.0000026738,0.0000026744, +0.0000026712,0.0000026602,0.0000026472,0.0000026374,0.0000026250, +0.0000026056,0.0000025888,0.0000025792,0.0000025732,0.0000025710, +0.0000025707,0.0000025697,0.0000025657,0.0000025587,0.0000025538, +0.0000025499,0.0000025345,0.0000025049,0.0000024824,0.0000024836, +0.0000024955,0.0000024999,0.0000024968,0.0000024915,0.0000024881, +0.0000024862,0.0000024850,0.0000024831,0.0000024798,0.0000024736, +0.0000024638,0.0000024521,0.0000024408,0.0000024310,0.0000024242, +0.0000024170,0.0000024102,0.0000024095,0.0000024100,0.0000024047, +0.0000024021,0.0000024088,0.0000024193,0.0000024217,0.0000024200, +0.0000024362,0.0000024848,0.0000025346,0.0000025570,0.0000025613, +0.0000025666,0.0000025827,0.0000026008,0.0000026111,0.0000026130, +0.0000026077,0.0000025873,0.0000025565,0.0000025235,0.0000024997, +0.0000025058,0.0000025483,0.0000025966,0.0000026358,0.0000026805, +0.0000027227,0.0000027404,0.0000027441,0.0000027467,0.0000027494, +0.0000027458,0.0000027327,0.0000027240,0.0000027193,0.0000027133, +0.0000027120,0.0000027079,0.0000026977,0.0000026854,0.0000026702, +0.0000026502,0.0000026211,0.0000025833,0.0000025588,0.0000025493, +0.0000025421,0.0000025369,0.0000025360,0.0000025375,0.0000025364, +0.0000025326,0.0000025322,0.0000025315,0.0000025313,0.0000025312, +0.0000025297,0.0000025228,0.0000025066,0.0000024812,0.0000024521, +0.0000024256,0.0000024006,0.0000023800,0.0000023650,0.0000023578, +0.0000023569,0.0000023614,0.0000023709,0.0000023849,0.0000024029, +0.0000024248,0.0000024499,0.0000024756,0.0000024968,0.0000025108, +0.0000025173,0.0000025183,0.0000025169,0.0000025144,0.0000025121, +0.0000025108,0.0000025106,0.0000025112,0.0000025111,0.0000025106, +0.0000025040,0.0000024847,0.0000024569,0.0000024321,0.0000024162, +0.0000024080,0.0000024046,0.0000024022,0.0000023992,0.0000023969, +0.0000023973,0.0000024008,0.0000024051,0.0000024076,0.0000024065, +0.0000024011,0.0000023930,0.0000023835,0.0000023726,0.0000023614, +0.0000023506,0.0000023412,0.0000023343,0.0000023293,0.0000023254, +0.0000023234,0.0000023237,0.0000023269,0.0000023346,0.0000023470, +0.0000023617,0.0000023745,0.0000023826,0.0000023861,0.0000023860, +0.0000023827,0.0000023774,0.0000023711,0.0000023643,0.0000023576, +0.0000023547,0.0000023557,0.0000023558,0.0000023528,0.0000023495, +0.0000023502,0.0000023538,0.0000023553,0.0000023554,0.0000023578, +0.0000023617,0.0000023641,0.0000023638,0.0000023601,0.0000023516, +0.0000023420,0.0000023360,0.0000023322,0.0000023257,0.0000023156, +0.0000023076,0.0000023056,0.0000023073,0.0000023110,0.0000023140, +0.0000023162,0.0000023179,0.0000023192,0.0000023204,0.0000023203, +0.0000023183,0.0000023140,0.0000023084,0.0000023037,0.0000023009, +0.0000023000,0.0000023014,0.0000023058,0.0000023133,0.0000023227, +0.0000023345,0.0000023450,0.0000023463,0.0000023406,0.0000023363, +0.0000023341,0.0000023320,0.0000023303,0.0000023298,0.0000023393, +0.0000023637,0.0000023828,0.0000023897,0.0000023924,0.0000023941, +0.0000024031,0.0000024247,0.0000024617,0.0000025184,0.0000025640, +0.0000025707,0.0000025489,0.0000025181,0.0000024918,0.0000024705, +0.0000024681,0.0000024805,0.0000024851,0.0000024734,0.0000024490, +0.0000024448,0.0000024626,0.0000024824,0.0000024902,0.0000025091, +0.0000025459,0.0000025841,0.0000026103,0.0000026226,0.0000026262, +0.0000026264,0.0000026251,0.0000026210,0.0000026136,0.0000026029, +0.0000025901,0.0000025759,0.0000025626,0.0000025536,0.0000025501, +0.0000025513,0.0000025555,0.0000025600,0.0000025661,0.0000025737, +0.0000025540,0.0000025600,0.0000025666,0.0000025708,0.0000025708, +0.0000025672,0.0000025603,0.0000025518,0.0000025427,0.0000025325, +0.0000025207,0.0000025070,0.0000024918,0.0000024772,0.0000024631, +0.0000024477,0.0000024316,0.0000024192,0.0000024141,0.0000024171, +0.0000024211,0.0000024220,0.0000024205,0.0000024195,0.0000024201, +0.0000024213,0.0000024210,0.0000024206,0.0000024194,0.0000024191, +0.0000024194,0.0000024205,0.0000024213,0.0000024239,0.0000024273, +0.0000024313,0.0000024350,0.0000024383,0.0000024409,0.0000024422, +0.0000024423,0.0000024413,0.0000024384,0.0000024352,0.0000024309, +0.0000024254,0.0000024209,0.0000024168,0.0000024131,0.0000024101, +0.0000024083,0.0000024077,0.0000024079,0.0000024090,0.0000024114, +0.0000024143,0.0000024182,0.0000024221,0.0000024263,0.0000024312, +0.0000024365,0.0000024415,0.0000024452,0.0000024480,0.0000024502, +0.0000024519,0.0000024522,0.0000024494,0.0000024444,0.0000024425, +0.0000024418,0.0000024388,0.0000024356,0.0000024337,0.0000024315, +0.0000024302,0.0000024307,0.0000024326,0.0000024324,0.0000024277, +0.0000024226,0.0000024153,0.0000024101,0.0000024153,0.0000024259, +0.0000024339,0.0000024421,0.0000024575,0.0000024751,0.0000024877, +0.0000024950,0.0000025019,0.0000025094,0.0000025137,0.0000025183, +0.0000025262,0.0000025369,0.0000025479,0.0000025593,0.0000025670, +0.0000025656,0.0000025605,0.0000025518,0.0000025425,0.0000025357, +0.0000025313,0.0000025260,0.0000025212,0.0000025208,0.0000025239, +0.0000025285,0.0000025330,0.0000025401,0.0000025498,0.0000025567, +0.0000025594,0.0000025609,0.0000025637,0.0000025683,0.0000025723, +0.0000025759,0.0000025792,0.0000025806,0.0000025802,0.0000025781, +0.0000025736,0.0000025674,0.0000025638,0.0000025631,0.0000025622, +0.0000025584,0.0000025520,0.0000025452,0.0000025382,0.0000025320, +0.0000025294,0.0000025262,0.0000025174,0.0000025098,0.0000025096, +0.0000025145,0.0000025188,0.0000025203,0.0000025188,0.0000025139, +0.0000025090,0.0000025078,0.0000025098,0.0000025136,0.0000025159, +0.0000025163,0.0000025159,0.0000025150,0.0000025124,0.0000025078, +0.0000025046,0.0000025049,0.0000025060,0.0000025057,0.0000025042, +0.0000025032,0.0000025033,0.0000025048,0.0000025069,0.0000025095, +0.0000025124,0.0000025148,0.0000025166,0.0000025181,0.0000025200, +0.0000025219,0.0000025197,0.0000025099,0.0000025013,0.0000025026, +0.0000025090,0.0000025097,0.0000025052,0.0000025010,0.0000025013, +0.0000025048,0.0000025101,0.0000025186,0.0000025299,0.0000025384, +0.0000025388,0.0000025327,0.0000025235,0.0000025172,0.0000025161, +0.0000025175,0.0000025209,0.0000025256,0.0000025295,0.0000025305, +0.0000025288,0.0000025240,0.0000025191,0.0000025157,0.0000025101, +0.0000024988,0.0000024854,0.0000024784,0.0000024785,0.0000024806, +0.0000024807,0.0000024761,0.0000024674,0.0000024604,0.0000024581, +0.0000024581,0.0000024580,0.0000024595,0.0000024648,0.0000024719, +0.0000024772,0.0000024800,0.0000024823,0.0000024853,0.0000024886, +0.0000024918,0.0000024948,0.0000024979,0.0000025004,0.0000025016, +0.0000025017,0.0000025021,0.0000025039,0.0000025067,0.0000025095, +0.0000025101,0.0000025037,0.0000024913,0.0000024761,0.0000024638, +0.0000024622,0.0000024805,0.0000025280,0.0000025723,0.0000025917, +0.0000025972,0.0000026034,0.0000026104,0.0000026147,0.0000026184, +0.0000026240,0.0000026294,0.0000026313,0.0000026299,0.0000026281, +0.0000026280,0.0000026287,0.0000026279,0.0000026269,0.0000026246, +0.0000026207,0.0000026152,0.0000026094,0.0000026047,0.0000026004, +0.0000025976,0.0000025966,0.0000025971,0.0000025993,0.0000026015, +0.0000026024,0.0000026021,0.0000026009,0.0000025985,0.0000025948, +0.0000025904,0.0000025869,0.0000025854,0.0000025870,0.0000025897, +0.0000025916,0.0000025934,0.0000025956,0.0000025966,0.0000025952, +0.0000025928,0.0000025916,0.0000025926,0.0000025950,0.0000025964, +0.0000025955,0.0000025926,0.0000025874,0.0000025808,0.0000025754, +0.0000025721,0.0000025705,0.0000025715,0.0000025747,0.0000025779, +0.0000025792,0.0000025775,0.0000025734,0.0000025688,0.0000025648, +0.0000025607,0.0000025553,0.0000025482,0.0000025410,0.0000025362, +0.0000025364,0.0000025419,0.0000025503,0.0000025569,0.0000025580, +0.0000025522,0.0000025396,0.0000025260,0.0000025172,0.0000025145, +0.0000025154,0.0000025269,0.0000025413,0.0000025436,0.0000025346, +0.0000025238,0.0000025190,0.0000025186,0.0000025208,0.0000025244, +0.0000025292,0.0000025348,0.0000025396,0.0000025426,0.0000025441, +0.0000025450,0.0000025466,0.0000025485,0.0000025501,0.0000025499, +0.0000025448,0.0000025391,0.0000025389,0.0000025441,0.0000025464, +0.0000025424,0.0000025356,0.0000025302,0.0000025213,0.0000024995, +0.0000024780,0.0000024703,0.0000024706,0.0000024717,0.0000024681, +0.0000024629,0.0000024623,0.0000024679,0.0000024810,0.0000024975, +0.0000025140,0.0000025288,0.0000025410,0.0000025489,0.0000025527, +0.0000025542,0.0000025583,0.0000025664,0.0000025751,0.0000025835, +0.0000025919,0.0000025970,0.0000025978,0.0000025981,0.0000025997, +0.0000026007,0.0000025981,0.0000025893,0.0000025818,0.0000025813, +0.0000025850,0.0000025904,0.0000025961,0.0000026010,0.0000026040, +0.0000026052,0.0000026058,0.0000026062,0.0000026058,0.0000026049, +0.0000026044,0.0000026050,0.0000026065,0.0000026076,0.0000026069, +0.0000026050,0.0000026025,0.0000026003,0.0000025990,0.0000025983, +0.0000025972,0.0000025957,0.0000025931,0.0000025894,0.0000025859, +0.0000025813,0.0000025758,0.0000025696,0.0000025634,0.0000025583, +0.0000025559,0.0000025551,0.0000025559,0.0000025579,0.0000025596, +0.0000025611,0.0000025631,0.0000025647,0.0000025650,0.0000025637, +0.0000025611,0.0000025580,0.0000025544,0.0000025500,0.0000025450, +0.0000025391,0.0000025324,0.0000025231,0.0000025109,0.0000024997, +0.0000024885,0.0000024812,0.0000024773,0.0000024752,0.0000024734, +0.0000024722,0.0000024716,0.0000024705,0.0000024697,0.0000024699, +0.0000024707,0.0000024720,0.0000024735,0.0000024750,0.0000024766, +0.0000024774,0.0000024769,0.0000024753,0.0000024739,0.0000024755, +0.0000024822,0.0000024951,0.0000025142,0.0000025397,0.0000025683, +0.0000025929,0.0000026087,0.0000026188,0.0000026297,0.0000026459, +0.0000026638,0.0000026778,0.0000026840,0.0000026795,0.0000026712, +0.0000026618,0.0000026528,0.0000026447,0.0000026363,0.0000026248, +0.0000026091,0.0000025926,0.0000025797,0.0000025712,0.0000025630, +0.0000025487,0.0000025288,0.0000025122,0.0000025070,0.0000025104, +0.0000025116,0.0000025057,0.0000024976,0.0000024955,0.0000024935, +0.0000024883,0.0000024835,0.0000024803,0.0000024808,0.0000024900, +0.0000025067,0.0000025214,0.0000025198,0.0000025039,0.0000025318, +0.0000026176,0.0000026416,0.0000026374,0.0000026315,0.0000026305, +0.0000026322,0.0000026329,0.0000026304,0.0000026260,0.0000026252, +0.0000026280,0.0000026280,0.0000026246,0.0000026214,0.0000026146, +0.0000026076,0.0000025849,0.0000025209,0.0000024891,0.0000024840, +0.0000024765,0.0000024678,0.0000024650,0.0000024692,0.0000024730, +0.0000024734,0.0000024734,0.0000024758,0.0000024827,0.0000024925, +0.0000025014,0.0000025078,0.0000025110,0.0000025117,0.0000025105, +0.0000025100,0.0000025081,0.0000025050,0.0000025016,0.0000024997, +0.0000024997,0.0000024998,0.0000025019,0.0000025095,0.0000025201, +0.0000025247,0.0000025252,0.0000025246,0.0000025212,0.0000025176, +0.0000025187,0.0000025228,0.0000025225,0.0000025169,0.0000025115, +0.0000025141,0.0000025208,0.0000025232,0.0000025208,0.0000025188, +0.0000025212,0.0000025311,0.0000025472,0.0000025619,0.0000025697, +0.0000025756,0.0000025857,0.0000025943,0.0000025916,0.0000025829, +0.0000025792,0.0000025883,0.0000026098,0.0000026378,0.0000026659, +0.0000026862,0.0000026934,0.0000026931,0.0000026923,0.0000026955, +0.0000027029,0.0000027101,0.0000027131,0.0000027121,0.0000027082, +0.0000027037,0.0000026997,0.0000026946,0.0000026887,0.0000026849, +0.0000026852,0.0000026893,0.0000026950,0.0000026985,0.0000026990, +0.0000026982,0.0000026998,0.0000027040,0.0000027073,0.0000027097, +0.0000027126,0.0000027155,0.0000027167,0.0000027166,0.0000027156, +0.0000027143,0.0000027131,0.0000027120,0.0000027096,0.0000027053, +0.0000026994,0.0000026942,0.0000026905,0.0000026872,0.0000026841, +0.0000026807,0.0000026751,0.0000026674,0.0000026594,0.0000026522, +0.0000026457,0.0000026394,0.0000026316,0.0000026203,0.0000026063, +0.0000025932,0.0000025831,0.0000025753,0.0000025681,0.0000025605, +0.0000025534,0.0000025476,0.0000025433,0.0000025409,0.0000025414, +0.0000025439,0.0000025482,0.0000025522,0.0000025540,0.0000025529, +0.0000025505,0.0000025500,0.0000025545,0.0000025668,0.0000025759, +0.0000025746,0.0000025680,0.0000025652,0.0000025668,0.0000025691, +0.0000025695,0.0000025681,0.0000025649,0.0000025620,0.0000025607, +0.0000025605,0.0000025579,0.0000025523,0.0000025518,0.0000025597, +0.0000025648,0.0000025613,0.0000025532,0.0000025347,0.0000025028, +0.0000024796,0.0000024711,0.0000024551,0.0000024272,0.0000024039, +0.0000023914,0.0000023761,0.0000023498,0.0000023235,0.0000023078, +0.0000023034,0.0000023078,0.0000023276,0.0000023516,0.0000023717, +0.0000024009,0.0000024349,0.0000024623,0.0000024965,0.0000025294, +0.0000025410,0.0000025408,0.0000025398,0.0000025357,0.0000025221, +0.0000025040,0.0000024974,0.0000025036,0.0000025124,0.0000025148, +0.0000025121,0.0000025088,0.0000025098,0.0000025135,0.0000025122, +0.0000024999,0.0000024826,0.0000024725,0.0000024702,0.0000024696, +0.0000024692,0.0000024707,0.0000024745,0.0000024799,0.0000024859, +0.0000024911,0.0000024967,0.0000025037,0.0000025121,0.0000025212, +0.0000025296,0.0000025363,0.0000025410,0.0000025445,0.0000025469, +0.0000025472,0.0000025437,0.0000025372,0.0000025307,0.0000025266, +0.0000025271,0.0000025327,0.0000025393,0.0000025401,0.0000025357, +0.0000025308,0.0000025304,0.0000025373,0.0000025531,0.0000025724, +0.0000025834,0.0000025845,0.0000025835,0.0000025803,0.0000025764, +0.0000025748,0.0000025742,0.0000025719,0.0000025677,0.0000025638, +0.0000025623,0.0000025635,0.0000025682,0.0000025769,0.0000025874, +0.0000025992,0.0000026129,0.0000026245,0.0000026316,0.0000026384, +0.0000026486,0.0000026603,0.0000026706,0.0000026785,0.0000026842, +0.0000026887,0.0000026911,0.0000026907,0.0000026854,0.0000026737, +0.0000026532,0.0000026350,0.0000026349,0.0000026514,0.0000026752, +0.0000026939,0.0000027049,0.0000027087,0.0000027049,0.0000027005, +0.0000026991,0.0000026968,0.0000026963,0.0000026991,0.0000027035, +0.0000027076,0.0000027122,0.0000027188,0.0000027283,0.0000027394, +0.0000027489,0.0000027552,0.0000027592,0.0000027620,0.0000027639, +0.0000027658,0.0000027682,0.0000027702,0.0000027727,0.0000027760, +0.0000027779,0.0000027770,0.0000027738,0.0000027711,0.0000027722, +0.0000027770,0.0000027804,0.0000027783,0.0000027724,0.0000027645, +0.0000027533,0.0000027406,0.0000027318,0.0000027289,0.0000027299, +0.0000027307,0.0000027309,0.0000027324,0.0000027327,0.0000027287, +0.0000027242,0.0000027222,0.0000027221,0.0000027236,0.0000027254, +0.0000027260,0.0000027242,0.0000027203,0.0000027136,0.0000027054, +0.0000026989,0.0000026960,0.0000026959,0.0000026969,0.0000026981, +0.0000027002,0.0000027038,0.0000027072,0.0000027062,0.0000026932, +0.0000026745,0.0000026641,0.0000026648,0.0000026700,0.0000026783, +0.0000026875,0.0000026930,0.0000026936,0.0000026918,0.0000026887, +0.0000026840,0.0000026788,0.0000026758,0.0000026750,0.0000026751, +0.0000026748,0.0000026749,0.0000026761,0.0000026753,0.0000026665, +0.0000026524,0.0000026410,0.0000026303,0.0000026125,0.0000025943, +0.0000025836,0.0000025770,0.0000025741,0.0000025738,0.0000025729, +0.0000025686,0.0000025613,0.0000025560,0.0000025522,0.0000025363, +0.0000025063,0.0000024855,0.0000024879,0.0000024977,0.0000024989, +0.0000024930,0.0000024872,0.0000024842,0.0000024817,0.0000024792, +0.0000024769,0.0000024741,0.0000024698,0.0000024620,0.0000024520, +0.0000024413,0.0000024307,0.0000024228,0.0000024158,0.0000024074, +0.0000024029,0.0000024034,0.0000024010,0.0000023968,0.0000024014, +0.0000024129,0.0000024202,0.0000024192,0.0000024266,0.0000024625, +0.0000025137,0.0000025447,0.0000025525,0.0000025542,0.0000025606, +0.0000025730,0.0000025842,0.0000025874,0.0000025841,0.0000025698, +0.0000025472,0.0000025215,0.0000024948,0.0000024832,0.0000025097, +0.0000025670,0.0000026152,0.0000026577,0.0000027049,0.0000027345, +0.0000027414,0.0000027440,0.0000027469,0.0000027474,0.0000027374, +0.0000027258,0.0000027216,0.0000027158,0.0000027123,0.0000027076, +0.0000026923,0.0000026758,0.0000026599,0.0000026407,0.0000026132, +0.0000025802,0.0000025603,0.0000025534,0.0000025459,0.0000025402, +0.0000025386,0.0000025405,0.0000025410,0.0000025382,0.0000025379, +0.0000025368,0.0000025350,0.0000025341,0.0000025339,0.0000025334, +0.0000025282,0.0000025107,0.0000024803,0.0000024453,0.0000024128, +0.0000023854,0.0000023632,0.0000023491,0.0000023406,0.0000023372, +0.0000023375,0.0000023420,0.0000023508,0.0000023628,0.0000023784, +0.0000023987,0.0000024241,0.0000024519,0.0000024772,0.0000024966, +0.0000025080,0.0000025133,0.0000025139,0.0000025128,0.0000025117, +0.0000025113,0.0000025100,0.0000025067,0.0000024951,0.0000024715, +0.0000024437,0.0000024219,0.0000024078,0.0000023990,0.0000023952, +0.0000023947,0.0000023945,0.0000023925,0.0000023886,0.0000023845, +0.0000023819,0.0000023806,0.0000023788,0.0000023748,0.0000023690, +0.0000023625,0.0000023560,0.0000023495,0.0000023435,0.0000023382, +0.0000023334,0.0000023292,0.0000023250,0.0000023219,0.0000023214, +0.0000023231,0.0000023275,0.0000023359,0.0000023471,0.0000023584, +0.0000023679,0.0000023744,0.0000023773,0.0000023768,0.0000023733, +0.0000023683,0.0000023625,0.0000023560,0.0000023495,0.0000023462, +0.0000023472,0.0000023487,0.0000023469,0.0000023422,0.0000023406, +0.0000023428,0.0000023448,0.0000023463,0.0000023500,0.0000023557, +0.0000023598,0.0000023601,0.0000023562,0.0000023465,0.0000023369, +0.0000023328,0.0000023291,0.0000023189,0.0000023060,0.0000022992, +0.0000022990,0.0000023017,0.0000023048,0.0000023072,0.0000023082, +0.0000023078,0.0000023060,0.0000023046,0.0000023042,0.0000023055, +0.0000023067,0.0000023055,0.0000023025,0.0000022994,0.0000022969, +0.0000022964,0.0000022981,0.0000023042,0.0000023147,0.0000023284, +0.0000023420,0.0000023478,0.0000023452,0.0000023403,0.0000023377, +0.0000023353,0.0000023334,0.0000023316,0.0000023346,0.0000023538, +0.0000023778,0.0000023892,0.0000023911,0.0000023913,0.0000023950, +0.0000024124,0.0000024440,0.0000024962,0.0000025510,0.0000025694, +0.0000025533,0.0000025228,0.0000024925,0.0000024638,0.0000024552, +0.0000024677,0.0000024809,0.0000024783,0.0000024575,0.0000024387, +0.0000024400,0.0000024599,0.0000024760,0.0000024831,0.0000024954, +0.0000025198,0.0000025481,0.0000025703,0.0000025828,0.0000025874, +0.0000025858,0.0000025794,0.0000025688,0.0000025551,0.0000025402, +0.0000025261,0.0000025147,0.0000025084,0.0000025079,0.0000025132, +0.0000025220,0.0000025300,0.0000025379,0.0000025466,0.0000025260, +0.0000025323,0.0000025391,0.0000025450,0.0000025470,0.0000025456, +0.0000025400,0.0000025312,0.0000025212,0.0000025103,0.0000024986, +0.0000024860,0.0000024724,0.0000024582,0.0000024423,0.0000024262, +0.0000024155,0.0000024135,0.0000024167,0.0000024239,0.0000024258, +0.0000024225,0.0000024176,0.0000024155,0.0000024164,0.0000024191, +0.0000024213,0.0000024229,0.0000024237,0.0000024225,0.0000024224, +0.0000024223,0.0000024222,0.0000024233,0.0000024256,0.0000024292, +0.0000024322,0.0000024350,0.0000024376,0.0000024397,0.0000024409, +0.0000024409,0.0000024395,0.0000024370,0.0000024329,0.0000024275, +0.0000024216,0.0000024160,0.0000024114,0.0000024080,0.0000024063, +0.0000024063,0.0000024073,0.0000024089,0.0000024110,0.0000024135, +0.0000024168,0.0000024204,0.0000024253,0.0000024320,0.0000024388, +0.0000024437,0.0000024467,0.0000024485,0.0000024503,0.0000024517, +0.0000024523,0.0000024498,0.0000024447,0.0000024432,0.0000024427, +0.0000024396,0.0000024364,0.0000024345,0.0000024324,0.0000024312, +0.0000024314,0.0000024333,0.0000024325,0.0000024266,0.0000024209, +0.0000024134,0.0000024067,0.0000024101,0.0000024203,0.0000024285, +0.0000024376,0.0000024546,0.0000024732,0.0000024854,0.0000024926, +0.0000024999,0.0000025083,0.0000025144,0.0000025208,0.0000025297, +0.0000025407,0.0000025536,0.0000025661,0.0000025714,0.0000025679, +0.0000025590,0.0000025482,0.0000025389,0.0000025338,0.0000025307, +0.0000025258,0.0000025218,0.0000025217,0.0000025252,0.0000025294, +0.0000025334,0.0000025403,0.0000025500,0.0000025567,0.0000025587, +0.0000025593,0.0000025606,0.0000025641,0.0000025679,0.0000025709, +0.0000025743,0.0000025777,0.0000025786,0.0000025773,0.0000025734, +0.0000025682,0.0000025632,0.0000025612,0.0000025609,0.0000025609, +0.0000025579,0.0000025510,0.0000025431,0.0000025361,0.0000025315, +0.0000025302,0.0000025272,0.0000025179,0.0000025107,0.0000025108, +0.0000025143,0.0000025175,0.0000025180,0.0000025148,0.0000025085, +0.0000025041,0.0000025038,0.0000025064,0.0000025112,0.0000025152, +0.0000025168,0.0000025165,0.0000025155,0.0000025128,0.0000025076, +0.0000025029,0.0000025009,0.0000025016,0.0000025027,0.0000025029, +0.0000025029,0.0000025035,0.0000025048,0.0000025063,0.0000025083, +0.0000025110,0.0000025138,0.0000025161,0.0000025180,0.0000025200, +0.0000025211,0.0000025173,0.0000025061,0.0000024970,0.0000024975, +0.0000025045,0.0000025074,0.0000025035,0.0000024976,0.0000024964, +0.0000024994,0.0000025040,0.0000025095,0.0000025185,0.0000025287, +0.0000025335,0.0000025303,0.0000025224,0.0000025152,0.0000025130, +0.0000025145,0.0000025189,0.0000025251,0.0000025302,0.0000025322, +0.0000025305,0.0000025246,0.0000025184,0.0000025152,0.0000025123, +0.0000025030,0.0000024890,0.0000024799,0.0000024791,0.0000024818, +0.0000024831,0.0000024803,0.0000024723,0.0000024634,0.0000024585, +0.0000024574,0.0000024572,0.0000024574,0.0000024599,0.0000024655, +0.0000024708,0.0000024729,0.0000024731,0.0000024737,0.0000024751, +0.0000024771,0.0000024794,0.0000024817,0.0000024826,0.0000024806, +0.0000024771,0.0000024752,0.0000024770,0.0000024828,0.0000024892, +0.0000024936,0.0000024941,0.0000024889,0.0000024796,0.0000024693, +0.0000024621,0.0000024645,0.0000024949,0.0000025437,0.0000025796, +0.0000025921,0.0000025962,0.0000026029,0.0000026102,0.0000026152, +0.0000026198,0.0000026255,0.0000026302,0.0000026318,0.0000026324, +0.0000026337,0.0000026344,0.0000026333,0.0000026315,0.0000026290, +0.0000026257,0.0000026211,0.0000026152,0.0000026090,0.0000026037, +0.0000025996,0.0000025971,0.0000025961,0.0000025971,0.0000025995, +0.0000026014,0.0000026019,0.0000026016,0.0000026006,0.0000025981, +0.0000025936,0.0000025888,0.0000025857,0.0000025857,0.0000025874, +0.0000025890,0.0000025906,0.0000025934,0.0000025959,0.0000025961, +0.0000025951,0.0000025948,0.0000025955,0.0000025972,0.0000025981, +0.0000025971,0.0000025943,0.0000025896,0.0000025831,0.0000025764, +0.0000025714,0.0000025692,0.0000025701,0.0000025734,0.0000025765, +0.0000025775,0.0000025758,0.0000025726,0.0000025699,0.0000025678, +0.0000025639,0.0000025568,0.0000025472,0.0000025371,0.0000025296, +0.0000025271,0.0000025298,0.0000025389,0.0000025500,0.0000025577, +0.0000025573,0.0000025484,0.0000025332,0.0000025200,0.0000025143, +0.0000025136,0.0000025177,0.0000025291,0.0000025424,0.0000025447, +0.0000025365,0.0000025242,0.0000025171,0.0000025158,0.0000025177, +0.0000025221,0.0000025269,0.0000025316,0.0000025363,0.0000025405, +0.0000025434,0.0000025450,0.0000025468,0.0000025493,0.0000025520, +0.0000025525,0.0000025491,0.0000025436,0.0000025425,0.0000025451, +0.0000025457,0.0000025399,0.0000025300,0.0000025263,0.0000025231, +0.0000025085,0.0000024868,0.0000024762,0.0000024749,0.0000024740, +0.0000024730,0.0000024734,0.0000024751,0.0000024819,0.0000024939, +0.0000025078,0.0000025207,0.0000025321,0.0000025408,0.0000025460, +0.0000025478,0.0000025492,0.0000025544,0.0000025617,0.0000025685, +0.0000025758,0.0000025824,0.0000025865,0.0000025891,0.0000025927, +0.0000025979,0.0000026005,0.0000025983,0.0000025912,0.0000025856, +0.0000025846,0.0000025858,0.0000025883,0.0000025903,0.0000025899, +0.0000025871,0.0000025844,0.0000025842,0.0000025855,0.0000025861, +0.0000025868,0.0000025888,0.0000025918,0.0000025950,0.0000025971, +0.0000025981,0.0000025987,0.0000025994,0.0000025996,0.0000025994, +0.0000025978,0.0000025954,0.0000025914,0.0000025862,0.0000025810, +0.0000025754,0.0000025696,0.0000025643,0.0000025589,0.0000025549, +0.0000025533,0.0000025532,0.0000025538,0.0000025544,0.0000025549, +0.0000025550,0.0000025551,0.0000025543,0.0000025526,0.0000025500, +0.0000025468,0.0000025440,0.0000025425,0.0000025425,0.0000025429, +0.0000025418,0.0000025387,0.0000025335,0.0000025245,0.0000025130, +0.0000024994,0.0000024861,0.0000024744,0.0000024633,0.0000024573, +0.0000024539,0.0000024533,0.0000024535,0.0000024531,0.0000024524, +0.0000024517,0.0000024515,0.0000024523,0.0000024538,0.0000024563, +0.0000024595,0.0000024622,0.0000024634,0.0000024628,0.0000024613, +0.0000024604,0.0000024621,0.0000024672,0.0000024768,0.0000024938, +0.0000025190,0.0000025487,0.0000025771,0.0000025986,0.0000026122, +0.0000026232,0.0000026367,0.0000026532,0.0000026682,0.0000026756, +0.0000026737,0.0000026684,0.0000026600,0.0000026516,0.0000026432, +0.0000026346,0.0000026243,0.0000026111,0.0000025971,0.0000025852, +0.0000025765,0.0000025663,0.0000025511,0.0000025315,0.0000025149, +0.0000025092,0.0000025110,0.0000025088,0.0000024988,0.0000024944, +0.0000024936,0.0000024900,0.0000024858,0.0000024809,0.0000024775, +0.0000024823,0.0000024973,0.0000025159,0.0000025207,0.0000025032, +0.0000025170,0.0000026040,0.0000026381,0.0000026354,0.0000026291, +0.0000026282,0.0000026299,0.0000026308,0.0000026283,0.0000026244, +0.0000026242,0.0000026279,0.0000026284,0.0000026255,0.0000026227, +0.0000026165,0.0000026083,0.0000025970,0.0000025459,0.0000024923, +0.0000024803,0.0000024759,0.0000024674,0.0000024623,0.0000024645, +0.0000024700,0.0000024730,0.0000024727,0.0000024719,0.0000024755, +0.0000024852,0.0000024956,0.0000025038,0.0000025096,0.0000025124, +0.0000025126,0.0000025115,0.0000025088,0.0000025043,0.0000025002, +0.0000024982,0.0000024991,0.0000025013,0.0000025065,0.0000025151, +0.0000025233,0.0000025266,0.0000025269,0.0000025260,0.0000025225, +0.0000025188,0.0000025191,0.0000025211,0.0000025199,0.0000025134, +0.0000025070,0.0000025077,0.0000025133,0.0000025167,0.0000025149, +0.0000025108,0.0000025102,0.0000025143,0.0000025241,0.0000025387, +0.0000025531,0.0000025624,0.0000025692,0.0000025794,0.0000025879, +0.0000025853,0.0000025788,0.0000025783,0.0000025898,0.0000026112, +0.0000026377,0.0000026654,0.0000026865,0.0000026946,0.0000026938, +0.0000026931,0.0000026964,0.0000027021,0.0000027065,0.0000027086, +0.0000027077,0.0000027045,0.0000027011,0.0000026954,0.0000026877, +0.0000026820,0.0000026826,0.0000026878,0.0000026938,0.0000026975, +0.0000026979,0.0000026960,0.0000026954,0.0000026980,0.0000027025, +0.0000027065,0.0000027100,0.0000027136,0.0000027161,0.0000027166, +0.0000027158,0.0000027147,0.0000027138,0.0000027123,0.0000027088, +0.0000027028,0.0000026960,0.0000026909,0.0000026883,0.0000026864, +0.0000026833,0.0000026778,0.0000026697,0.0000026604,0.0000026526, +0.0000026475,0.0000026434,0.0000026376,0.0000026284,0.0000026159, +0.0000026024,0.0000025909,0.0000025822,0.0000025751,0.0000025683, +0.0000025615,0.0000025556,0.0000025512,0.0000025475,0.0000025447, +0.0000025439,0.0000025447,0.0000025464,0.0000025481,0.0000025500, +0.0000025503,0.0000025477,0.0000025442,0.0000025439,0.0000025507, +0.0000025647,0.0000025748,0.0000025751,0.0000025700,0.0000025650, +0.0000025627,0.0000025625,0.0000025621,0.0000025603,0.0000025581, +0.0000025571,0.0000025566,0.0000025537,0.0000025507,0.0000025540, +0.0000025636,0.0000025670,0.0000025629,0.0000025546,0.0000025369, +0.0000025050,0.0000024812,0.0000024735,0.0000024603,0.0000024333, +0.0000024077,0.0000023937,0.0000023817,0.0000023581,0.0000023286, +0.0000023067,0.0000022964,0.0000022954,0.0000023059,0.0000023290, +0.0000023535,0.0000023787,0.0000024136,0.0000024461,0.0000024751, +0.0000025110,0.0000025348,0.0000025383,0.0000025382,0.0000025375, +0.0000025295,0.0000025111,0.0000024968,0.0000024977,0.0000025075, +0.0000025145,0.0000025140,0.0000025109,0.0000025112,0.0000025159, +0.0000025172,0.0000025073,0.0000024916,0.0000024819,0.0000024781, +0.0000024741,0.0000024705,0.0000024700,0.0000024734,0.0000024794, +0.0000024854,0.0000024897,0.0000024922,0.0000024943,0.0000024977, +0.0000025037,0.0000025122,0.0000025213,0.0000025296,0.0000025359, +0.0000025402,0.0000025427,0.0000025423,0.0000025385,0.0000025329, +0.0000025282,0.0000025261,0.0000025279,0.0000025352,0.0000025415, +0.0000025406,0.0000025351,0.0000025306,0.0000025314,0.0000025410, +0.0000025590,0.0000025768,0.0000025843,0.0000025845,0.0000025833, +0.0000025781,0.0000025719,0.0000025683,0.0000025652,0.0000025600, +0.0000025548,0.0000025532,0.0000025548,0.0000025582,0.0000025636, +0.0000025721,0.0000025815,0.0000025919,0.0000026044,0.0000026154, +0.0000026220,0.0000026287,0.0000026397,0.0000026538,0.0000026668, +0.0000026761,0.0000026820,0.0000026857,0.0000026879,0.0000026879, +0.0000026834,0.0000026725,0.0000026535,0.0000026356,0.0000026345, +0.0000026508,0.0000026753,0.0000026954,0.0000027074,0.0000027111, +0.0000027081,0.0000027040,0.0000027027,0.0000026996,0.0000026973, +0.0000026996,0.0000027047,0.0000027084,0.0000027106,0.0000027152, +0.0000027243,0.0000027352,0.0000027432,0.0000027477,0.0000027504, +0.0000027527,0.0000027556,0.0000027593,0.0000027631,0.0000027670, +0.0000027719,0.0000027771,0.0000027803,0.0000027796,0.0000027754, +0.0000027700,0.0000027655,0.0000027647,0.0000027665,0.0000027679, +0.0000027669,0.0000027633,0.0000027546,0.0000027418,0.0000027308, +0.0000027250,0.0000027244,0.0000027259,0.0000027278,0.0000027310, +0.0000027333,0.0000027307,0.0000027254,0.0000027215,0.0000027201, +0.0000027194,0.0000027185,0.0000027176,0.0000027170,0.0000027160, +0.0000027125,0.0000027066,0.0000027003,0.0000026957,0.0000026944, +0.0000026950,0.0000026966,0.0000027000,0.0000027042,0.0000027047, +0.0000026975,0.0000026812,0.0000026662,0.0000026606,0.0000026623, +0.0000026675,0.0000026760,0.0000026857,0.0000026917,0.0000026925, +0.0000026902,0.0000026857,0.0000026802,0.0000026762,0.0000026748, +0.0000026751,0.0000026762,0.0000026765,0.0000026763,0.0000026772, +0.0000026767,0.0000026694,0.0000026556,0.0000026440,0.0000026341, +0.0000026182,0.0000025998,0.0000025879,0.0000025806,0.0000025766, +0.0000025760,0.0000025749,0.0000025703,0.0000025632,0.0000025583, +0.0000025535,0.0000025355,0.0000025048,0.0000024877,0.0000024923, +0.0000025002,0.0000024976,0.0000024893,0.0000024833,0.0000024795, +0.0000024745,0.0000024698,0.0000024674,0.0000024658,0.0000024635, +0.0000024580,0.0000024505,0.0000024416,0.0000024307,0.0000024211, +0.0000024143,0.0000024057,0.0000023971,0.0000023957,0.0000023951, +0.0000023911,0.0000023934,0.0000024055,0.0000024174,0.0000024203, +0.0000024240,0.0000024461,0.0000024903,0.0000025280,0.0000025414, +0.0000025444,0.0000025475,0.0000025518,0.0000025571,0.0000025613, +0.0000025613,0.0000025539,0.0000025402,0.0000025238,0.0000025023, +0.0000024801,0.0000024815,0.0000025280,0.0000025893,0.0000026360, +0.0000026823,0.0000027236,0.0000027379,0.0000027407,0.0000027436, +0.0000027460,0.0000027416,0.0000027285,0.0000027221,0.0000027184, +0.0000027142,0.0000027087,0.0000026903,0.0000026713,0.0000026551, +0.0000026361,0.0000026106,0.0000025811,0.0000025627,0.0000025565, +0.0000025499,0.0000025444,0.0000025423,0.0000025439,0.0000025460, +0.0000025455,0.0000025467,0.0000025466,0.0000025450,0.0000025424, +0.0000025396,0.0000025376,0.0000025369,0.0000025330,0.0000025137, +0.0000024779,0.0000024364,0.0000023995,0.0000023713,0.0000023544, +0.0000023446,0.0000023377,0.0000023324,0.0000023291,0.0000023280, +0.0000023325,0.0000023409,0.0000023510,0.0000023631,0.0000023796, +0.0000024012,0.0000024263,0.0000024515,0.0000024734,0.0000024893, +0.0000024984,0.0000025016,0.0000025014,0.0000024994,0.0000024936, +0.0000024800,0.0000024575,0.0000024341,0.0000024164,0.0000024021, +0.0000023896,0.0000023822,0.0000023808,0.0000023825,0.0000023847, +0.0000023848,0.0000023822,0.0000023773,0.0000023716,0.0000023661, +0.0000023608,0.0000023559,0.0000023516,0.0000023486,0.0000023464, +0.0000023432,0.0000023394,0.0000023347,0.0000023297,0.0000023252, +0.0000023215,0.0000023205,0.0000023215,0.0000023245,0.0000023295, +0.0000023363,0.0000023434,0.0000023501,0.0000023561,0.0000023609, +0.0000023640,0.0000023645,0.0000023627,0.0000023593,0.0000023547, +0.0000023489,0.0000023431,0.0000023390,0.0000023386,0.0000023402, +0.0000023401,0.0000023358,0.0000023322,0.0000023327,0.0000023351, +0.0000023379,0.0000023428,0.0000023498,0.0000023550,0.0000023552, +0.0000023502,0.0000023403,0.0000023328,0.0000023297,0.0000023241, +0.0000023117,0.0000023000,0.0000022960,0.0000022976,0.0000023012, +0.0000023040,0.0000023055,0.0000023059,0.0000023054,0.0000023034, +0.0000022996,0.0000022953,0.0000022922,0.0000022920,0.0000022941, +0.0000022955,0.0000022951,0.0000022938,0.0000022932,0.0000022937, +0.0000022969,0.0000023059,0.0000023213,0.0000023384,0.0000023488, +0.0000023482,0.0000023432,0.0000023408,0.0000023390,0.0000023373, +0.0000023350,0.0000023342,0.0000023458,0.0000023721,0.0000023889, +0.0000023913,0.0000023911,0.0000023911,0.0000024025,0.0000024295, +0.0000024760,0.0000025352,0.0000025662,0.0000025565,0.0000025282, +0.0000024947,0.0000024589,0.0000024422,0.0000024518,0.0000024709, +0.0000024758,0.0000024661,0.0000024446,0.0000024310,0.0000024357, +0.0000024529,0.0000024690,0.0000024781,0.0000024847,0.0000024943, +0.0000025062,0.0000025158,0.0000025205,0.0000025200,0.0000025162, +0.0000025096,0.0000025017,0.0000024934,0.0000024858,0.0000024798, +0.0000024755,0.0000024739,0.0000024770,0.0000024858,0.0000024968, +0.0000025076,0.0000025181,0.0000024958,0.0000025028,0.0000025092, +0.0000025145,0.0000025165,0.0000025154,0.0000025111,0.0000025038, +0.0000024947,0.0000024850,0.0000024748,0.0000024635,0.0000024499, +0.0000024356,0.0000024226,0.0000024133,0.0000024129,0.0000024190, +0.0000024264,0.0000024278,0.0000024213,0.0000024095,0.0000024016, +0.0000023994,0.0000024003,0.0000024038,0.0000024091,0.0000024152, +0.0000024203,0.0000024228,0.0000024244,0.0000024254,0.0000024259, +0.0000024260,0.0000024274,0.0000024297,0.0000024316,0.0000024333, +0.0000024347,0.0000024359,0.0000024370,0.0000024375,0.0000024375, +0.0000024369,0.0000024348,0.0000024308,0.0000024264,0.0000024208, +0.0000024160,0.0000024122,0.0000024097,0.0000024084,0.0000024085, +0.0000024096,0.0000024108,0.0000024126,0.0000024156,0.0000024194, +0.0000024250,0.0000024327,0.0000024398,0.0000024439,0.0000024462, +0.0000024474,0.0000024484,0.0000024498,0.0000024509,0.0000024490, +0.0000024438,0.0000024423,0.0000024424,0.0000024396,0.0000024365, +0.0000024347,0.0000024326,0.0000024312,0.0000024313,0.0000024330, +0.0000024319,0.0000024252,0.0000024191,0.0000024120,0.0000024044, +0.0000024050,0.0000024145,0.0000024229,0.0000024328,0.0000024514, +0.0000024712,0.0000024831,0.0000024904,0.0000024981,0.0000025066, +0.0000025136,0.0000025216,0.0000025317,0.0000025438,0.0000025582, +0.0000025706,0.0000025732,0.0000025689,0.0000025582,0.0000025463, +0.0000025382,0.0000025345,0.0000025311,0.0000025267,0.0000025237, +0.0000025243,0.0000025277,0.0000025315,0.0000025350,0.0000025420, +0.0000025519,0.0000025580,0.0000025593,0.0000025589,0.0000025588, +0.0000025602,0.0000025630,0.0000025659,0.0000025689,0.0000025725, +0.0000025754,0.0000025757,0.0000025726,0.0000025673,0.0000025623, +0.0000025592,0.0000025583,0.0000025591,0.0000025597,0.0000025568, +0.0000025492,0.0000025411,0.0000025350,0.0000025319,0.0000025312, +0.0000025279,0.0000025187,0.0000025119,0.0000025113,0.0000025133, +0.0000025158,0.0000025152,0.0000025099,0.0000025037,0.0000024998, +0.0000024995,0.0000025020,0.0000025075,0.0000025134,0.0000025168, +0.0000025172,0.0000025160,0.0000025125,0.0000025069,0.0000025012, +0.0000024973,0.0000024967,0.0000024980,0.0000024994,0.0000025007, +0.0000025021,0.0000025037,0.0000025047,0.0000025060,0.0000025083, +0.0000025108,0.0000025129,0.0000025147,0.0000025156,0.0000025142, +0.0000025077,0.0000024987,0.0000024941,0.0000024957,0.0000025017, +0.0000025043,0.0000025009,0.0000024943,0.0000024925,0.0000024962, +0.0000025010,0.0000025044,0.0000025100,0.0000025193,0.0000025261, +0.0000025260,0.0000025196,0.0000025126,0.0000025100,0.0000025118, +0.0000025175,0.0000025252,0.0000025311,0.0000025331,0.0000025314, +0.0000025252,0.0000025184,0.0000025151,0.0000025131,0.0000025051, +0.0000024914,0.0000024815,0.0000024803,0.0000024837,0.0000024858, +0.0000024840,0.0000024771,0.0000024678,0.0000024604,0.0000024576, +0.0000024573,0.0000024572,0.0000024576,0.0000024604,0.0000024649, +0.0000024678,0.0000024680,0.0000024674,0.0000024672,0.0000024673, +0.0000024678,0.0000024681,0.0000024659,0.0000024599,0.0000024528, +0.0000024494,0.0000024518,0.0000024606,0.0000024699,0.0000024760, +0.0000024801,0.0000024812,0.0000024783,0.0000024737,0.0000024673, +0.0000024627,0.0000024722,0.0000025095,0.0000025568,0.0000025846, +0.0000025923,0.0000025963,0.0000026036,0.0000026114,0.0000026173, +0.0000026218,0.0000026257,0.0000026288,0.0000026319,0.0000026351, +0.0000026372,0.0000026367,0.0000026343,0.0000026307,0.0000026268, +0.0000026227,0.0000026180,0.0000026127,0.0000026076,0.0000026034, +0.0000026005,0.0000025988,0.0000025992,0.0000026013,0.0000026033, +0.0000026043,0.0000026043,0.0000026037,0.0000026021,0.0000025990, +0.0000025945,0.0000025903,0.0000025883,0.0000025889,0.0000025903, +0.0000025918,0.0000025942,0.0000025974,0.0000025995,0.0000026003, +0.0000026007,0.0000026005,0.0000025998,0.0000025989,0.0000025974, +0.0000025949,0.0000025909,0.0000025851,0.0000025782,0.0000025719, +0.0000025689,0.0000025696,0.0000025732,0.0000025766,0.0000025780, +0.0000025769,0.0000025744,0.0000025727,0.0000025714,0.0000025668, +0.0000025572,0.0000025449,0.0000025334,0.0000025246,0.0000025195, +0.0000025193,0.0000025254,0.0000025368,0.0000025492,0.0000025560, +0.0000025546,0.0000025428,0.0000025264,0.0000025147,0.0000025122, +0.0000025147,0.0000025199,0.0000025306,0.0000025426,0.0000025461, +0.0000025405,0.0000025291,0.0000025194,0.0000025161,0.0000025171, +0.0000025215,0.0000025262,0.0000025302,0.0000025339,0.0000025378, +0.0000025413,0.0000025442,0.0000025472,0.0000025501,0.0000025518, +0.0000025516,0.0000025493,0.0000025468,0.0000025447,0.0000025450, +0.0000025440,0.0000025353,0.0000025244,0.0000025234,0.0000025257, +0.0000025168,0.0000024992,0.0000024873,0.0000024809,0.0000024778, +0.0000024788,0.0000024818,0.0000024866,0.0000024949,0.0000025054, +0.0000025162,0.0000025258,0.0000025338,0.0000025393,0.0000025422, +0.0000025434,0.0000025468,0.0000025526,0.0000025574,0.0000025615, +0.0000025662,0.0000025705,0.0000025739,0.0000025785,0.0000025866, +0.0000025950,0.0000025992,0.0000025983,0.0000025941,0.0000025901, +0.0000025887,0.0000025892,0.0000025904,0.0000025901,0.0000025864, +0.0000025796,0.0000025744,0.0000025736,0.0000025754,0.0000025779, +0.0000025817,0.0000025867,0.0000025912,0.0000025941,0.0000025950, +0.0000025949,0.0000025951,0.0000025952,0.0000025949,0.0000025941, +0.0000025924,0.0000025896,0.0000025853,0.0000025805,0.0000025761, +0.0000025709,0.0000025654,0.0000025599,0.0000025552,0.0000025520, +0.0000025505,0.0000025498,0.0000025491,0.0000025481,0.0000025468, +0.0000025459,0.0000025445,0.0000025414,0.0000025370,0.0000025315, +0.0000025260,0.0000025222,0.0000025209,0.0000025217,0.0000025244, +0.0000025275,0.0000025294,0.0000025275,0.0000025221,0.0000025143, +0.0000025028,0.0000024893,0.0000024734,0.0000024594,0.0000024494, +0.0000024421,0.0000024397,0.0000024389,0.0000024392,0.0000024390, +0.0000024372,0.0000024346,0.0000024326,0.0000024318,0.0000024326, +0.0000024347,0.0000024372,0.0000024397,0.0000024418,0.0000024433, +0.0000024444,0.0000024464,0.0000024497,0.0000024553,0.0000024640, +0.0000024784,0.0000025005,0.0000025300,0.0000025609,0.0000025863, +0.0000026036,0.0000026153,0.0000026264,0.0000026412,0.0000026574, +0.0000026679,0.0000026690,0.0000026653,0.0000026592,0.0000026509, +0.0000026413,0.0000026322,0.0000026230,0.0000026120,0.0000025994, +0.0000025887,0.0000025797,0.0000025695,0.0000025541,0.0000025329, +0.0000025138,0.0000025102,0.0000025097,0.0000025011,0.0000024937, +0.0000024927,0.0000024908,0.0000024865,0.0000024815,0.0000024758, +0.0000024753,0.0000024868,0.0000025070,0.0000025199,0.0000025085, +0.0000025053,0.0000025847,0.0000026320,0.0000026328,0.0000026269, +0.0000026254,0.0000026274,0.0000026284,0.0000026263,0.0000026235, +0.0000026242,0.0000026279,0.0000026284,0.0000026258,0.0000026233, +0.0000026180,0.0000026084,0.0000026020,0.0000025730,0.0000025108, +0.0000024789,0.0000024734,0.0000024681,0.0000024619,0.0000024604, +0.0000024643,0.0000024699,0.0000024717,0.0000024699,0.0000024700, +0.0000024777,0.0000024883,0.0000024969,0.0000025035,0.0000025085, +0.0000025117,0.0000025137,0.0000025133,0.0000025098,0.0000025062, +0.0000025039,0.0000025038,0.0000025068,0.0000025128,0.0000025201, +0.0000025260,0.0000025287,0.0000025289,0.0000025277,0.0000025239, +0.0000025201,0.0000025198,0.0000025207,0.0000025198,0.0000025128, +0.0000025044,0.0000025036,0.0000025074,0.0000025110,0.0000025107, +0.0000025067,0.0000025029,0.0000025022,0.0000025056,0.0000025148, +0.0000025296,0.0000025459,0.0000025563,0.0000025629,0.0000025729, +0.0000025813,0.0000025803,0.0000025764,0.0000025788,0.0000025919, +0.0000026115,0.0000026365,0.0000026649,0.0000026867,0.0000026941, +0.0000026928,0.0000026914,0.0000026935,0.0000026978,0.0000027028, +0.0000027058,0.0000027053,0.0000027031,0.0000026986,0.0000026898, +0.0000026821,0.0000026807,0.0000026846,0.0000026897,0.0000026930, +0.0000026943,0.0000026940,0.0000026932,0.0000026940,0.0000026967, +0.0000027003,0.0000027037,0.0000027071,0.0000027103,0.0000027119, +0.0000027115,0.0000027100,0.0000027086,0.0000027064,0.0000027024, +0.0000026972,0.0000026916,0.0000026870,0.0000026838,0.0000026811, +0.0000026770,0.0000026700,0.0000026614,0.0000026532,0.0000026471, +0.0000026431,0.0000026391,0.0000026328,0.0000026237,0.0000026123, +0.0000025999,0.0000025891,0.0000025811,0.0000025744,0.0000025679, +0.0000025618,0.0000025567,0.0000025530,0.0000025498,0.0000025474, +0.0000025471,0.0000025486,0.0000025494,0.0000025485,0.0000025479, +0.0000025473,0.0000025456,0.0000025423,0.0000025395,0.0000025403, +0.0000025488,0.0000025626,0.0000025728,0.0000025742,0.0000025708, +0.0000025646,0.0000025595,0.0000025564,0.0000025542,0.0000025529, +0.0000025525,0.0000025520,0.0000025504,0.0000025507,0.0000025573, +0.0000025660,0.0000025678,0.0000025622,0.0000025551,0.0000025381, +0.0000025065,0.0000024822,0.0000024754,0.0000024647,0.0000024392, +0.0000024120,0.0000023959,0.0000023860,0.0000023666,0.0000023356, +0.0000023067,0.0000022895,0.0000022857,0.0000022902,0.0000023074, +0.0000023329,0.0000023585,0.0000023897,0.0000024268,0.0000024569, +0.0000024888,0.0000025218,0.0000025354,0.0000025358,0.0000025359, +0.0000025334,0.0000025191,0.0000025005,0.0000024943,0.0000025009, +0.0000025115,0.0000025151,0.0000025134,0.0000025129,0.0000025173, +0.0000025198,0.0000025135,0.0000025013,0.0000024934,0.0000024883, +0.0000024813,0.0000024761,0.0000024752,0.0000024778,0.0000024831, +0.0000024892,0.0000024935,0.0000024958,0.0000024965,0.0000024965, +0.0000024970,0.0000024998,0.0000025060,0.0000025146,0.0000025234, +0.0000025301,0.0000025343,0.0000025361,0.0000025356,0.0000025327, +0.0000025297,0.0000025273,0.0000025264,0.0000025301,0.0000025383, +0.0000025427,0.0000025405,0.0000025345,0.0000025313,0.0000025333, +0.0000025454,0.0000025648,0.0000025796,0.0000025838,0.0000025838, +0.0000025816,0.0000025737,0.0000025649,0.0000025590,0.0000025535, +0.0000025478,0.0000025455,0.0000025472,0.0000025510,0.0000025541, +0.0000025579,0.0000025644,0.0000025719,0.0000025811,0.0000025930, +0.0000026035,0.0000026103,0.0000026182,0.0000026313,0.0000026472, +0.0000026612,0.0000026715,0.0000026774,0.0000026800,0.0000026822, +0.0000026832,0.0000026801,0.0000026707,0.0000026535,0.0000026357, +0.0000026339,0.0000026505,0.0000026760,0.0000026971,0.0000027098, +0.0000027140,0.0000027109,0.0000027071,0.0000027063,0.0000027036, +0.0000027009,0.0000027023,0.0000027066,0.0000027089,0.0000027098, +0.0000027140,0.0000027223,0.0000027313,0.0000027369,0.0000027389, +0.0000027396,0.0000027420,0.0000027466,0.0000027519,0.0000027573, +0.0000027632,0.0000027698,0.0000027759,0.0000027799,0.0000027804, +0.0000027776,0.0000027709,0.0000027631,0.0000027570,0.0000027551, +0.0000027568,0.0000027595,0.0000027599,0.0000027549,0.0000027443, +0.0000027313,0.0000027211,0.0000027167,0.0000027180,0.0000027235, +0.0000027297,0.0000027331,0.0000027329,0.0000027291,0.0000027238, +0.0000027200,0.0000027171,0.0000027140,0.0000027116,0.0000027109, +0.0000027111,0.0000027100,0.0000027066,0.0000027014,0.0000026963, +0.0000026938,0.0000026942,0.0000026962,0.0000026990,0.0000027002, +0.0000026957,0.0000026838,0.0000026698,0.0000026610,0.0000026589, +0.0000026602,0.0000026660,0.0000026748,0.0000026836,0.0000026890, +0.0000026892,0.0000026858,0.0000026799,0.0000026739,0.0000026711, +0.0000026714,0.0000026739,0.0000026768,0.0000026782,0.0000026780, +0.0000026781,0.0000026771,0.0000026699,0.0000026570,0.0000026460, +0.0000026371,0.0000026227,0.0000026046,0.0000025916,0.0000025831, +0.0000025781,0.0000025775,0.0000025764,0.0000025712,0.0000025641, +0.0000025600,0.0000025537,0.0000025321,0.0000025015,0.0000024900, +0.0000024978,0.0000025030,0.0000024964,0.0000024868,0.0000024801, +0.0000024730,0.0000024642,0.0000024582,0.0000024567,0.0000024565, +0.0000024559,0.0000024529,0.0000024479,0.0000024409,0.0000024304, +0.0000024196,0.0000024131,0.0000024049,0.0000023935,0.0000023882, +0.0000023878,0.0000023860,0.0000023872,0.0000023979,0.0000024132, +0.0000024215,0.0000024252,0.0000024370,0.0000024681,0.0000025070, +0.0000025280,0.0000025332,0.0000025373,0.0000025406,0.0000025418, +0.0000025435,0.0000025443,0.0000025425,0.0000025371,0.0000025281, +0.0000025133,0.0000024897,0.0000024703,0.0000024898,0.0000025537, +0.0000026129,0.0000026589,0.0000027060,0.0000027332,0.0000027372, +0.0000027395,0.0000027424,0.0000027428,0.0000027327,0.0000027226, +0.0000027192,0.0000027163,0.0000027119,0.0000026931,0.0000026719, +0.0000026566,0.0000026378,0.0000026135,0.0000025871,0.0000025665, +0.0000025577,0.0000025524,0.0000025482,0.0000025461,0.0000025473, +0.0000025504,0.0000025516,0.0000025540,0.0000025560,0.0000025561, +0.0000025543,0.0000025507,0.0000025455,0.0000025411,0.0000025400, +0.0000025351,0.0000025115,0.0000024683,0.0000024211,0.0000023830, +0.0000023605,0.0000023517,0.0000023470,0.0000023410,0.0000023344, +0.0000023281,0.0000023237,0.0000023227,0.0000023277,0.0000023354, +0.0000023438,0.0000023530,0.0000023656,0.0000023829,0.0000024047, +0.0000024282,0.0000024497,0.0000024651,0.0000024725,0.0000024731, +0.0000024693,0.0000024583,0.0000024414,0.0000024246,0.0000024104, +0.0000023951,0.0000023795,0.0000023698,0.0000023674,0.0000023686, +0.0000023707,0.0000023721,0.0000023728,0.0000023724,0.0000023698, +0.0000023639,0.0000023565,0.0000023503,0.0000023459,0.0000023440, +0.0000023438,0.0000023425,0.0000023391,0.0000023342,0.0000023291, +0.0000023248,0.0000023220,0.0000023206,0.0000023207,0.0000023223, +0.0000023246,0.0000023279,0.0000023318,0.0000023355,0.0000023390, +0.0000023422,0.0000023454,0.0000023480,0.0000023492,0.0000023496, +0.0000023496,0.0000023478,0.0000023441,0.0000023393,0.0000023347, +0.0000023315,0.0000023318,0.0000023328,0.0000023300,0.0000023257, +0.0000023250,0.0000023269,0.0000023310,0.0000023370,0.0000023441, +0.0000023488,0.0000023482,0.0000023416,0.0000023338,0.0000023294, +0.0000023257,0.0000023176,0.0000023061,0.0000022981,0.0000022971, +0.0000023000,0.0000023040,0.0000023066,0.0000023076,0.0000023073, +0.0000023061,0.0000023037,0.0000023000,0.0000022950,0.0000022886, +0.0000022825,0.0000022797,0.0000022804,0.0000022831,0.0000022858, +0.0000022879,0.0000022901,0.0000022924,0.0000022988,0.0000023138, +0.0000023340,0.0000023482,0.0000023498,0.0000023455,0.0000023432, +0.0000023421,0.0000023406,0.0000023390,0.0000023378,0.0000023433, +0.0000023663,0.0000023879,0.0000023937,0.0000023918,0.0000023897, +0.0000023951,0.0000024171,0.0000024581,0.0000025173,0.0000025603, +0.0000025594,0.0000025336,0.0000024981,0.0000024572,0.0000024323, +0.0000024335,0.0000024536,0.0000024707,0.0000024723,0.0000024572, +0.0000024366,0.0000024270,0.0000024311,0.0000024439,0.0000024578, +0.0000024688,0.0000024770,0.0000024829,0.0000024866,0.0000024890, +0.0000024899,0.0000024895,0.0000024877,0.0000024851,0.0000024817, +0.0000024780,0.0000024744,0.0000024697,0.0000024645,0.0000024618, +0.0000024633,0.0000024684,0.0000024763,0.0000024867,0.0000024642, +0.0000024706,0.0000024780,0.0000024840,0.0000024862,0.0000024852, +0.0000024815,0.0000024755,0.0000024677,0.0000024587,0.0000024491, +0.0000024381,0.0000024274,0.0000024187,0.0000024160,0.0000024158, +0.0000024207,0.0000024275,0.0000024280,0.0000024189,0.0000024035, +0.0000023905,0.0000023852,0.0000023850,0.0000023868,0.0000023894, +0.0000023930,0.0000023988,0.0000024062,0.0000024131,0.0000024187, +0.0000024228,0.0000024251,0.0000024263,0.0000024280,0.0000024300, +0.0000024314,0.0000024325,0.0000024328,0.0000024326,0.0000024322, +0.0000024317,0.0000024312,0.0000024310,0.0000024303,0.0000024290, +0.0000024266,0.0000024230,0.0000024187,0.0000024158,0.0000024129, +0.0000024107,0.0000024097,0.0000024097,0.0000024103,0.0000024112, +0.0000024137,0.0000024179,0.0000024240,0.0000024317,0.0000024381, +0.0000024418,0.0000024434,0.0000024440,0.0000024444,0.0000024459, +0.0000024475,0.0000024465,0.0000024415,0.0000024397,0.0000024402, +0.0000024384,0.0000024358,0.0000024340,0.0000024316,0.0000024299, +0.0000024301,0.0000024321,0.0000024308,0.0000024237,0.0000024172, +0.0000024107,0.0000024023,0.0000024010,0.0000024083,0.0000024172, +0.0000024277,0.0000024472,0.0000024684,0.0000024805,0.0000024882, +0.0000024965,0.0000025050,0.0000025121,0.0000025212,0.0000025330, +0.0000025467,0.0000025616,0.0000025728,0.0000025738,0.0000025691, +0.0000025578,0.0000025461,0.0000025397,0.0000025359,0.0000025319, +0.0000025281,0.0000025265,0.0000025279,0.0000025312,0.0000025346, +0.0000025379,0.0000025446,0.0000025540,0.0000025598,0.0000025602, +0.0000025588,0.0000025574,0.0000025576,0.0000025592,0.0000025612, +0.0000025633,0.0000025662,0.0000025700,0.0000025725,0.0000025720, +0.0000025674,0.0000025613,0.0000025572,0.0000025554,0.0000025555, +0.0000025576,0.0000025585,0.0000025548,0.0000025471,0.0000025398, +0.0000025348,0.0000025329,0.0000025322,0.0000025284,0.0000025196, +0.0000025129,0.0000025113,0.0000025125,0.0000025141,0.0000025120, +0.0000025060,0.0000025005,0.0000024966,0.0000024952,0.0000024970, +0.0000025028,0.0000025104,0.0000025163,0.0000025184,0.0000025166, +0.0000025122,0.0000025063,0.0000024997,0.0000024946,0.0000024917, +0.0000024910,0.0000024916,0.0000024931,0.0000024951,0.0000024964, +0.0000024968,0.0000024974,0.0000024988,0.0000025004,0.0000025019, +0.0000025030,0.0000025030,0.0000025007,0.0000024967,0.0000024939, +0.0000024938,0.0000024963,0.0000024996,0.0000025003,0.0000024959, +0.0000024906,0.0000024908,0.0000024954,0.0000024992,0.0000025010, +0.0000025047,0.0000025127,0.0000025195,0.0000025202,0.0000025146, +0.0000025078,0.0000025062,0.0000025090,0.0000025165,0.0000025257, +0.0000025325,0.0000025342,0.0000025322,0.0000025257,0.0000025191, +0.0000025156,0.0000025131,0.0000025055,0.0000024924,0.0000024831, +0.0000024827,0.0000024864,0.0000024888,0.0000024873,0.0000024814, +0.0000024723,0.0000024632,0.0000024583,0.0000024576,0.0000024576, +0.0000024575,0.0000024579,0.0000024603,0.0000024632,0.0000024643, +0.0000024638,0.0000024628,0.0000024615,0.0000024603,0.0000024584, +0.0000024528,0.0000024423,0.0000024320,0.0000024281,0.0000024315, +0.0000024419,0.0000024532,0.0000024613,0.0000024675,0.0000024725, +0.0000024749,0.0000024753,0.0000024732,0.0000024658,0.0000024624, +0.0000024799,0.0000025264,0.0000025698,0.0000025891,0.0000025937, +0.0000025979,0.0000026051,0.0000026130,0.0000026191,0.0000026226, +0.0000026249,0.0000026279,0.0000026317,0.0000026348,0.0000026359, +0.0000026344,0.0000026311,0.0000026269,0.0000026225,0.0000026180, +0.0000026130,0.0000026082,0.0000026040,0.0000026009,0.0000025996, +0.0000026002,0.0000026028,0.0000026052,0.0000026063,0.0000026066, +0.0000026062,0.0000026048,0.0000026023,0.0000025985,0.0000025945, +0.0000025919,0.0000025924,0.0000025944,0.0000025965,0.0000025987, +0.0000026016,0.0000026041,0.0000026053,0.0000026052,0.0000026038, +0.0000026010,0.0000025984,0.0000025966,0.0000025947,0.0000025916, +0.0000025868,0.0000025807,0.0000025740,0.0000025696,0.0000025698, +0.0000025732,0.0000025768,0.0000025788,0.0000025792,0.0000025782, +0.0000025770,0.0000025748,0.0000025684,0.0000025563,0.0000025421, +0.0000025301,0.0000025220,0.0000025168,0.0000025143,0.0000025154, +0.0000025232,0.0000025356,0.0000025478,0.0000025534,0.0000025502, +0.0000025367,0.0000025208,0.0000025122,0.0000025117,0.0000025158, +0.0000025215,0.0000025305,0.0000025410,0.0000025454,0.0000025438, +0.0000025363,0.0000025267,0.0000025206,0.0000025195,0.0000025225, +0.0000025269,0.0000025303,0.0000025326,0.0000025357,0.0000025398, +0.0000025441,0.0000025473,0.0000025482,0.0000025481,0.0000025482, +0.0000025484,0.0000025478,0.0000025469,0.0000025453,0.0000025412, +0.0000025312,0.0000025218,0.0000025223,0.0000025268,0.0000025253, +0.0000025137,0.0000025000,0.0000024892,0.0000024833,0.0000024831, +0.0000024865,0.0000024941,0.0000025039,0.0000025139,0.0000025225, +0.0000025302,0.0000025355,0.0000025387,0.0000025404,0.0000025435, +0.0000025488,0.0000025528,0.0000025538,0.0000025548,0.0000025571, +0.0000025598,0.0000025637,0.0000025714,0.0000025820,0.0000025915, +0.0000025966,0.0000025971,0.0000025944,0.0000025915,0.0000025909, +0.0000025913,0.0000025916,0.0000025902,0.0000025846,0.0000025780, +0.0000025748,0.0000025754,0.0000025780,0.0000025812,0.0000025840, +0.0000025860,0.0000025863,0.0000025851,0.0000025835,0.0000025833, +0.0000025846,0.0000025861,0.0000025873,0.0000025876,0.0000025870, +0.0000025845,0.0000025802,0.0000025762,0.0000025716,0.0000025650, +0.0000025569,0.0000025489,0.0000025423,0.0000025368,0.0000025324, +0.0000025286,0.0000025254,0.0000025225,0.0000025201,0.0000025182, +0.0000025159,0.0000025123,0.0000025073,0.0000025017,0.0000024967, +0.0000024934,0.0000024921,0.0000024928,0.0000024960,0.0000025011, +0.0000025062,0.0000025102,0.0000025119,0.0000025091,0.0000025010, +0.0000024911,0.0000024770,0.0000024625,0.0000024494,0.0000024404, +0.0000024350,0.0000024301,0.0000024285,0.0000024275,0.0000024257, +0.0000024228,0.0000024194,0.0000024168,0.0000024154,0.0000024148, +0.0000024151,0.0000024165,0.0000024193,0.0000024229,0.0000024261, +0.0000024290,0.0000024332,0.0000024386,0.0000024445,0.0000024531, +0.0000024662,0.0000024867,0.0000025140,0.0000025441,0.0000025713, +0.0000025918,0.0000026048,0.0000026155,0.0000026296,0.0000026464, +0.0000026592,0.0000026648,0.0000026628,0.0000026587,0.0000026497, +0.0000026389,0.0000026295,0.0000026214,0.0000026117,0.0000026011, +0.0000025911,0.0000025818,0.0000025712,0.0000025546,0.0000025292, +0.0000025122,0.0000025096,0.0000025039,0.0000024934,0.0000024911, +0.0000024906,0.0000024861,0.0000024807,0.0000024734,0.0000024682, +0.0000024758,0.0000024955,0.0000025154,0.0000025122,0.0000024998, +0.0000025600,0.0000026239,0.0000026313,0.0000026246,0.0000026221, +0.0000026241,0.0000026252,0.0000026241,0.0000026230,0.0000026249, +0.0000026281,0.0000026283,0.0000026253,0.0000026229,0.0000026183, +0.0000026082,0.0000026016,0.0000025920,0.0000025406,0.0000024856, +0.0000024701,0.0000024673,0.0000024631,0.0000024595,0.0000024587, +0.0000024634,0.0000024685,0.0000024681,0.0000024662,0.0000024711, +0.0000024811,0.0000024904,0.0000024969,0.0000025016,0.0000025053, +0.0000025100,0.0000025128,0.0000025118,0.0000025103,0.0000025085, +0.0000025079,0.0000025106,0.0000025164,0.0000025228,0.0000025279, +0.0000025305,0.0000025311,0.0000025297,0.0000025260,0.0000025221, +0.0000025208,0.0000025208,0.0000025198,0.0000025139,0.0000025049, +0.0000025014,0.0000025035,0.0000025069,0.0000025079,0.0000025049, +0.0000024990,0.0000024946,0.0000024929,0.0000024964,0.0000025059, +0.0000025220,0.0000025400,0.0000025503,0.0000025565,0.0000025666, +0.0000025746,0.0000025760,0.0000025762,0.0000025819,0.0000025934, +0.0000026103,0.0000026346,0.0000026629,0.0000026840,0.0000026910, +0.0000026891,0.0000026872,0.0000026886,0.0000026943,0.0000027008, +0.0000027042,0.0000027041,0.0000027019,0.0000026949,0.0000026852, +0.0000026802,0.0000026808,0.0000026833,0.0000026850,0.0000026868, +0.0000026887,0.0000026902,0.0000026917,0.0000026939,0.0000026963, +0.0000026983,0.0000026996,0.0000027009,0.0000027018,0.0000027012, +0.0000026993,0.0000026973,0.0000026953,0.0000026923,0.0000026887, +0.0000026849,0.0000026807,0.0000026762,0.0000026720,0.0000026675, +0.0000026617,0.0000026549,0.0000026485,0.0000026428,0.0000026373, +0.0000026318,0.0000026258,0.0000026184,0.0000026081,0.0000025960, +0.0000025861,0.0000025793,0.0000025734,0.0000025675,0.0000025622, +0.0000025576,0.0000025542,0.0000025521,0.0000025513,0.0000025520, +0.0000025546,0.0000025571,0.0000025569,0.0000025543,0.0000025507, +0.0000025466,0.0000025432,0.0000025400,0.0000025393,0.0000025413, +0.0000025497,0.0000025611,0.0000025690,0.0000025709,0.0000025682, +0.0000025625,0.0000025567,0.0000025525,0.0000025503,0.0000025496, +0.0000025493,0.0000025494,0.0000025530,0.0000025609,0.0000025675, +0.0000025667,0.0000025603,0.0000025537,0.0000025374,0.0000025062, +0.0000024822,0.0000024765,0.0000024685,0.0000024446,0.0000024166, +0.0000023980,0.0000023888,0.0000023739,0.0000023437,0.0000023091, +0.0000022838,0.0000022733,0.0000022756,0.0000022888,0.0000023117, +0.0000023384,0.0000023668,0.0000024031,0.0000024388,0.0000024682, +0.0000025020,0.0000025275,0.0000025329,0.0000025335,0.0000025334, +0.0000025248,0.0000025066,0.0000024943,0.0000024958,0.0000025059, +0.0000025147,0.0000025160,0.0000025149,0.0000025174,0.0000025215, +0.0000025187,0.0000025098,0.0000025039,0.0000024990,0.0000024906, +0.0000024842,0.0000024828,0.0000024828,0.0000024847,0.0000024880, +0.0000024915,0.0000024938,0.0000024952,0.0000024957,0.0000024951, +0.0000024946,0.0000024961,0.0000025016,0.0000025102,0.0000025190, +0.0000025251,0.0000025282,0.0000025292,0.0000025290,0.0000025286, +0.0000025286,0.0000025282,0.0000025286,0.0000025340,0.0000025423, +0.0000025449,0.0000025405,0.0000025338,0.0000025313,0.0000025360, +0.0000025512,0.0000025696,0.0000025798,0.0000025818,0.0000025818, +0.0000025773,0.0000025668,0.0000025565,0.0000025494,0.0000025438, +0.0000025401,0.0000025404,0.0000025443,0.0000025486,0.0000025502, +0.0000025512,0.0000025545,0.0000025600,0.0000025689,0.0000025809, +0.0000025915,0.0000025987,0.0000026080,0.0000026223,0.0000026385, +0.0000026533,0.0000026647,0.0000026709,0.0000026729,0.0000026751, +0.0000026775,0.0000026764,0.0000026698,0.0000026543,0.0000026366, +0.0000026348,0.0000026512,0.0000026773,0.0000026989,0.0000027115, +0.0000027146,0.0000027120,0.0000027088,0.0000027086,0.0000027079, +0.0000027067,0.0000027072,0.0000027086,0.0000027091,0.0000027096, +0.0000027126,0.0000027185,0.0000027251,0.0000027287,0.0000027289, +0.0000027293,0.0000027327,0.0000027392,0.0000027460,0.0000027526, +0.0000027592,0.0000027657,0.0000027713,0.0000027759,0.0000027787, +0.0000027781,0.0000027732,0.0000027646,0.0000027557,0.0000027495, +0.0000027485,0.0000027520,0.0000027551,0.0000027542,0.0000027476, +0.0000027354,0.0000027213,0.0000027122,0.0000027113,0.0000027181, +0.0000027271,0.0000027326,0.0000027340,0.0000027327,0.0000027278, +0.0000027219,0.0000027163,0.0000027114,0.0000027081,0.0000027065, +0.0000027061,0.0000027062,0.0000027050,0.0000027015,0.0000026972, +0.0000026946,0.0000026948,0.0000026956,0.0000026941,0.0000026891, +0.0000026802,0.0000026699,0.0000026625,0.0000026599,0.0000026588, +0.0000026596,0.0000026659,0.0000026749,0.0000026822,0.0000026854, +0.0000026840,0.0000026790,0.0000026728,0.0000026677,0.0000026658, +0.0000026679,0.0000026729,0.0000026778,0.0000026802,0.0000026800, +0.0000026794,0.0000026769,0.0000026686,0.0000026564,0.0000026469, +0.0000026390,0.0000026255,0.0000026084,0.0000025949,0.0000025848, +0.0000025788,0.0000025785,0.0000025776,0.0000025714,0.0000025641, +0.0000025605,0.0000025518,0.0000025262,0.0000024988,0.0000024945, +0.0000025036,0.0000025042,0.0000024950,0.0000024854,0.0000024761, +0.0000024641,0.0000024529,0.0000024477,0.0000024472,0.0000024479, +0.0000024484,0.0000024476,0.0000024448,0.0000024396,0.0000024302, +0.0000024190,0.0000024120,0.0000024046,0.0000023918,0.0000023816, +0.0000023799,0.0000023801,0.0000023818,0.0000023913,0.0000024079, +0.0000024208,0.0000024270,0.0000024340,0.0000024513,0.0000024830, +0.0000025111,0.0000025210,0.0000025249,0.0000025311,0.0000025352, +0.0000025365,0.0000025374,0.0000025377,0.0000025366,0.0000025312, +0.0000025199,0.0000025021,0.0000024767,0.0000024693,0.0000025124, +0.0000025833,0.0000026361,0.0000026828,0.0000027232,0.0000027338, +0.0000027349,0.0000027377,0.0000027395,0.0000027363,0.0000027248, +0.0000027186,0.0000027170,0.0000027153,0.0000027000,0.0000026769, +0.0000026622,0.0000026449,0.0000026219,0.0000025981,0.0000025773, +0.0000025632,0.0000025552,0.0000025515,0.0000025497,0.0000025509, +0.0000025554,0.0000025592,0.0000025631,0.0000025669,0.0000025684, +0.0000025682,0.0000025654,0.0000025589,0.0000025509,0.0000025447, +0.0000025436,0.0000025356,0.0000025031,0.0000024508,0.0000024000, +0.0000023670,0.0000023553,0.0000023531,0.0000023497,0.0000023441, +0.0000023373,0.0000023302,0.0000023230,0.0000023183,0.0000023189, +0.0000023239,0.0000023301,0.0000023364,0.0000023445,0.0000023562, +0.0000023715,0.0000023902,0.0000024097,0.0000024255,0.0000024346, +0.0000024366,0.0000024331,0.0000024244,0.0000024145,0.0000024031, +0.0000023873,0.0000023707,0.0000023610,0.0000023593,0.0000023607, +0.0000023617,0.0000023610,0.0000023595,0.0000023596,0.0000023605, +0.0000023582,0.0000023517,0.0000023443,0.0000023391,0.0000023375, +0.0000023385,0.0000023391,0.0000023372,0.0000023329,0.0000023287, +0.0000023250,0.0000023223,0.0000023208,0.0000023201,0.0000023203, +0.0000023202,0.0000023205,0.0000023223,0.0000023245,0.0000023265, +0.0000023287,0.0000023308,0.0000023328,0.0000023340,0.0000023347, +0.0000023366,0.0000023399,0.0000023418,0.0000023409,0.0000023373, +0.0000023327,0.0000023281,0.0000023258,0.0000023257,0.0000023235, +0.0000023201,0.0000023193,0.0000023213,0.0000023263,0.0000023327, +0.0000023385,0.0000023411,0.0000023390,0.0000023327,0.0000023280, +0.0000023259,0.0000023212,0.0000023124,0.0000023039,0.0000023005, +0.0000023020,0.0000023058,0.0000023086,0.0000023090,0.0000023087, +0.0000023077,0.0000023059,0.0000023035,0.0000023002,0.0000022959, +0.0000022900,0.0000022819,0.0000022734,0.0000022683,0.0000022675, +0.0000022707,0.0000022768,0.0000022836,0.0000022889,0.0000022941, +0.0000023070,0.0000023288,0.0000023468,0.0000023502,0.0000023470, +0.0000023447,0.0000023441,0.0000023433,0.0000023428,0.0000023392, +0.0000023411,0.0000023613,0.0000023864,0.0000023957,0.0000023934, +0.0000023891,0.0000023898,0.0000024071,0.0000024426,0.0000024983, +0.0000025505,0.0000025594,0.0000025393,0.0000025032,0.0000024580, +0.0000024282,0.0000024236,0.0000024337,0.0000024539,0.0000024685, +0.0000024680,0.0000024530,0.0000024350,0.0000024276,0.0000024280, +0.0000024333,0.0000024414,0.0000024505,0.0000024588,0.0000024653, +0.0000024700,0.0000024732,0.0000024741,0.0000024727,0.0000024703, +0.0000024680,0.0000024664,0.0000024660,0.0000024650,0.0000024630, +0.0000024608,0.0000024593,0.0000024581,0.0000024575,0.0000024596, +0.0000024465,0.0000024463,0.0000024494,0.0000024532,0.0000024554, +0.0000024548,0.0000024519,0.0000024469,0.0000024400,0.0000024331, +0.0000024262,0.0000024205,0.0000024188,0.0000024179,0.0000024201, +0.0000024240,0.0000024257,0.0000024241,0.0000024154,0.0000024005, +0.0000023869,0.0000023801,0.0000023791,0.0000023806,0.0000023835, +0.0000023865,0.0000023880,0.0000023888,0.0000023919,0.0000023975, +0.0000024047,0.0000024117,0.0000024167,0.0000024200,0.0000024227, +0.0000024250,0.0000024267,0.0000024278,0.0000024280,0.0000024274, +0.0000024262,0.0000024248,0.0000024237,0.0000024227,0.0000024218, +0.0000024212,0.0000024205,0.0000024192,0.0000024174,0.0000024154, +0.0000024131,0.0000024107,0.0000024090,0.0000024081,0.0000024078, +0.0000024081,0.0000024101,0.0000024147,0.0000024215,0.0000024283, +0.0000024333,0.0000024362,0.0000024377,0.0000024384,0.0000024393, +0.0000024412,0.0000024429,0.0000024428,0.0000024382,0.0000024358, +0.0000024365,0.0000024360,0.0000024342,0.0000024325,0.0000024295, +0.0000024273,0.0000024274,0.0000024296,0.0000024287,0.0000024218, +0.0000024149,0.0000024091,0.0000024007,0.0000023967,0.0000024022, +0.0000024113,0.0000024223,0.0000024419,0.0000024642,0.0000024773, +0.0000024855,0.0000024948,0.0000025037,0.0000025110,0.0000025207, +0.0000025345,0.0000025498,0.0000025638,0.0000025723,0.0000025740, +0.0000025689,0.0000025576,0.0000025471,0.0000025412,0.0000025375, +0.0000025335,0.0000025306,0.0000025301,0.0000025320,0.0000025353, +0.0000025382,0.0000025416,0.0000025479,0.0000025563,0.0000025612, +0.0000025614,0.0000025598,0.0000025567,0.0000025552,0.0000025562, +0.0000025579,0.0000025595,0.0000025609,0.0000025633,0.0000025668, +0.0000025692,0.0000025680,0.0000025622,0.0000025563,0.0000025526, +0.0000025513,0.0000025529,0.0000025562,0.0000025571,0.0000025524, +0.0000025454,0.0000025395,0.0000025356,0.0000025342,0.0000025333, +0.0000025287,0.0000025202,0.0000025130,0.0000025110,0.0000025122, +0.0000025129,0.0000025098,0.0000025039,0.0000024987,0.0000024946, +0.0000024916,0.0000024922,0.0000024974,0.0000025063,0.0000025149, +0.0000025184,0.0000025176,0.0000025129,0.0000025061,0.0000024987, +0.0000024925,0.0000024872,0.0000024836,0.0000024819,0.0000024820, +0.0000024828,0.0000024830,0.0000024828,0.0000024831,0.0000024842, +0.0000024859,0.0000024880,0.0000024901,0.0000024920,0.0000024929, +0.0000024936,0.0000024940,0.0000024947,0.0000024957,0.0000024956, +0.0000024933,0.0000024888,0.0000024877,0.0000024914,0.0000024954, +0.0000024969,0.0000024975,0.0000025016,0.0000025093,0.0000025150, +0.0000025140,0.0000025074,0.0000025015,0.0000025016,0.0000025072, +0.0000025168,0.0000025275,0.0000025348,0.0000025363,0.0000025327, +0.0000025259,0.0000025196,0.0000025159,0.0000025126,0.0000025046, +0.0000024923,0.0000024847,0.0000024856,0.0000024896,0.0000024919, +0.0000024904,0.0000024851,0.0000024764,0.0000024662,0.0000024591, +0.0000024573,0.0000024576,0.0000024578,0.0000024578,0.0000024584, +0.0000024600,0.0000024611,0.0000024607,0.0000024592,0.0000024572, +0.0000024553,0.0000024522,0.0000024442,0.0000024299,0.0000024168, +0.0000024134,0.0000024171,0.0000024271,0.0000024386,0.0000024482, +0.0000024562,0.0000024646,0.0000024716,0.0000024751,0.0000024757, +0.0000024697,0.0000024597,0.0000024621,0.0000024959,0.0000025460, +0.0000025810,0.0000025931,0.0000025960,0.0000026000,0.0000026061, +0.0000026126,0.0000026175,0.0000026211,0.0000026246,0.0000026281, +0.0000026307,0.0000026317,0.0000026313,0.0000026293,0.0000026262, +0.0000026231,0.0000026199,0.0000026159,0.0000026115,0.0000026072, +0.0000026039,0.0000026021,0.0000026027,0.0000026055,0.0000026087, +0.0000026108,0.0000026113,0.0000026106,0.0000026086,0.0000026054, +0.0000026010,0.0000025968,0.0000025943,0.0000025950,0.0000025978, +0.0000026013,0.0000026041,0.0000026062,0.0000026074,0.0000026074, +0.0000026065,0.0000026041,0.0000026004,0.0000025970,0.0000025951, +0.0000025938,0.0000025914,0.0000025879,0.0000025834,0.0000025778, +0.0000025729,0.0000025717,0.0000025738,0.0000025772,0.0000025796, +0.0000025809,0.0000025814,0.0000025808,0.0000025775,0.0000025684, +0.0000025538,0.0000025385,0.0000025276,0.0000025213,0.0000025171, +0.0000025134,0.0000025120,0.0000025145,0.0000025228,0.0000025349, +0.0000025460,0.0000025499,0.0000025453,0.0000025319,0.0000025173, +0.0000025110,0.0000025115,0.0000025159,0.0000025214,0.0000025292, +0.0000025373,0.0000025432,0.0000025440,0.0000025416,0.0000025367, +0.0000025296,0.0000025259,0.0000025264,0.0000025292,0.0000025318, +0.0000025338,0.0000025361,0.0000025396,0.0000025434,0.0000025446, +0.0000025436,0.0000025427,0.0000025432,0.0000025461,0.0000025495, +0.0000025494,0.0000025456,0.0000025393,0.0000025285,0.0000025194, +0.0000025204,0.0000025282,0.0000025323,0.0000025275,0.0000025131, +0.0000024985,0.0000024891,0.0000024860,0.0000024879,0.0000024968, +0.0000025079,0.0000025182,0.0000025278,0.0000025347,0.0000025386, +0.0000025402,0.0000025424,0.0000025475,0.0000025524,0.0000025533, +0.0000025516,0.0000025497,0.0000025493,0.0000025523,0.0000025597, +0.0000025707,0.0000025818,0.0000025904,0.0000025950,0.0000025956, +0.0000025936,0.0000025914,0.0000025906,0.0000025907,0.0000025907, +0.0000025890,0.0000025847,0.0000025804,0.0000025783,0.0000025779, +0.0000025785,0.0000025784,0.0000025780,0.0000025771,0.0000025753, +0.0000025734,0.0000025731,0.0000025753,0.0000025784,0.0000025803, +0.0000025801,0.0000025783,0.0000025750,0.0000025702,0.0000025650, +0.0000025599,0.0000025528,0.0000025433,0.0000025348,0.0000025279, +0.0000025222,0.0000025166,0.0000025114,0.0000025067,0.0000025020, +0.0000024976,0.0000024937,0.0000024901,0.0000024863,0.0000024816, +0.0000024760,0.0000024700,0.0000024642,0.0000024595,0.0000024565, +0.0000024566,0.0000024592,0.0000024645,0.0000024716,0.0000024798, +0.0000024877,0.0000024929,0.0000024929,0.0000024874,0.0000024767, +0.0000024646,0.0000024530,0.0000024434,0.0000024356,0.0000024292, +0.0000024245,0.0000024193,0.0000024156,0.0000024124,0.0000024094, +0.0000024069,0.0000024051,0.0000024034,0.0000024019,0.0000024013, +0.0000024026,0.0000024060,0.0000024098,0.0000024141,0.0000024190, +0.0000024237,0.0000024286,0.0000024353,0.0000024445,0.0000024576, +0.0000024762,0.0000024998,0.0000025267,0.0000025540,0.0000025771, +0.0000025929,0.0000026049,0.0000026193,0.0000026370,0.0000026526, +0.0000026606,0.0000026611,0.0000026576,0.0000026477,0.0000026361, +0.0000026272,0.0000026200,0.0000026117,0.0000026017,0.0000025909, +0.0000025814,0.0000025713,0.0000025500,0.0000025235,0.0000025106, +0.0000025056,0.0000024953,0.0000024902,0.0000024894,0.0000024850, +0.0000024785,0.0000024702,0.0000024619,0.0000024650,0.0000024822, +0.0000025060,0.0000025147,0.0000025001,0.0000025335,0.0000026118, +0.0000026300,0.0000026230,0.0000026186,0.0000026199,0.0000026210, +0.0000026212,0.0000026222,0.0000026253,0.0000026281,0.0000026278, +0.0000026246,0.0000026212,0.0000026168,0.0000026071,0.0000026001, +0.0000025970,0.0000025688,0.0000025044,0.0000024690,0.0000024650, +0.0000024644,0.0000024609,0.0000024566,0.0000024564,0.0000024623, +0.0000024653,0.0000024641,0.0000024663,0.0000024745,0.0000024844, +0.0000024918,0.0000024964,0.0000024988,0.0000025028,0.0000025075, +0.0000025101,0.0000025102,0.0000025090,0.0000025081,0.0000025104, +0.0000025162,0.0000025229,0.0000025286,0.0000025318,0.0000025331, +0.0000025321,0.0000025289,0.0000025247,0.0000025220,0.0000025212, +0.0000025199,0.0000025156,0.0000025074,0.0000025013,0.0000025016, +0.0000025042,0.0000025051,0.0000025031,0.0000024971,0.0000024904, +0.0000024853,0.0000024843,0.0000024880,0.0000024984,0.0000025170, +0.0000025350,0.0000025443,0.0000025505,0.0000025599,0.0000025692, +0.0000025750,0.0000025795,0.0000025851,0.0000025937,0.0000026083, +0.0000026309,0.0000026566,0.0000026753,0.0000026825,0.0000026829, +0.0000026819,0.0000026847,0.0000026915,0.0000026985,0.0000027022, +0.0000027023,0.0000026991,0.0000026906,0.0000026815,0.0000026776, +0.0000026769,0.0000026764,0.0000026770,0.0000026794,0.0000026825, +0.0000026854,0.0000026891,0.0000026930,0.0000026959,0.0000026969, +0.0000026962,0.0000026950,0.0000026932,0.0000026901,0.0000026868, +0.0000026840,0.0000026812,0.0000026785,0.0000026763,0.0000026736, +0.0000026695,0.0000026650,0.0000026609,0.0000026568,0.0000026515, +0.0000026449,0.0000026371,0.0000026294,0.0000026239,0.0000026196, +0.0000026127,0.0000026013,0.0000025898,0.0000025823,0.0000025775, +0.0000025727,0.0000025676,0.0000025630,0.0000025591,0.0000025571, +0.0000025573,0.0000025580,0.0000025585,0.0000025598,0.0000025624, +0.0000025650,0.0000025651,0.0000025629,0.0000025578,0.0000025514, +0.0000025465,0.0000025443,0.0000025446,0.0000025478,0.0000025539, +0.0000025603,0.0000025643,0.0000025650,0.0000025630,0.0000025588, +0.0000025545,0.0000025518,0.0000025507,0.0000025506,0.0000025524, +0.0000025575,0.0000025638,0.0000025671,0.0000025641,0.0000025576, +0.0000025514,0.0000025349,0.0000025044,0.0000024809,0.0000024762, +0.0000024709,0.0000024494,0.0000024209,0.0000023998,0.0000023899, +0.0000023791,0.0000023519,0.0000023138,0.0000022812,0.0000022638, +0.0000022617,0.0000022718,0.0000022918,0.0000023178,0.0000023457, +0.0000023783,0.0000024168,0.0000024496,0.0000024799,0.0000025126, +0.0000025290,0.0000025305,0.0000025305,0.0000025268,0.0000025126, +0.0000024978,0.0000024942,0.0000025005,0.0000025113,0.0000025176, +0.0000025179,0.0000025180,0.0000025203,0.0000025202,0.0000025162, +0.0000025132,0.0000025098,0.0000025013,0.0000024934,0.0000024893, +0.0000024859,0.0000024844,0.0000024859,0.0000024880,0.0000024886, +0.0000024880,0.0000024875,0.0000024878,0.0000024879,0.0000024882, +0.0000024904,0.0000024963,0.0000025050,0.0000025134,0.0000025193, +0.0000025221,0.0000025231,0.0000025243,0.0000025270,0.0000025299, +0.0000025307,0.0000025324,0.0000025395,0.0000025467,0.0000025461, +0.0000025392,0.0000025329,0.0000025322,0.0000025406,0.0000025576, +0.0000025725,0.0000025779,0.0000025785,0.0000025776,0.0000025701, +0.0000025583,0.0000025490,0.0000025430,0.0000025387,0.0000025366, +0.0000025376,0.0000025421,0.0000025454,0.0000025452,0.0000025441, +0.0000025453,0.0000025509,0.0000025603,0.0000025720,0.0000025819, +0.0000025886,0.0000025975,0.0000026115,0.0000026278,0.0000026435, +0.0000026565,0.0000026633,0.0000026647,0.0000026669,0.0000026714, +0.0000026734,0.0000026693,0.0000026564,0.0000026403,0.0000026372, +0.0000026526,0.0000026781,0.0000026989,0.0000027095,0.0000027129, +0.0000027117,0.0000027095,0.0000027101,0.0000027120,0.0000027125, +0.0000027120,0.0000027112,0.0000027102,0.0000027092,0.0000027094, +0.0000027115,0.0000027148,0.0000027170,0.0000027178,0.0000027201, +0.0000027262,0.0000027344,0.0000027421,0.0000027489,0.0000027545, +0.0000027597,0.0000027645,0.0000027695,0.0000027742,0.0000027761, +0.0000027735,0.0000027676,0.0000027584,0.0000027501,0.0000027464, +0.0000027476,0.0000027511,0.0000027531,0.0000027508,0.0000027416, +0.0000027271,0.0000027139,0.0000027096,0.0000027136,0.0000027225, +0.0000027301,0.0000027335,0.0000027335,0.0000027306,0.0000027244, +0.0000027172,0.0000027114,0.0000027075,0.0000027049,0.0000027029, +0.0000027030,0.0000027031,0.0000027016,0.0000026991,0.0000026969, +0.0000026953,0.0000026919,0.0000026838,0.0000026734,0.0000026648, +0.0000026608,0.0000026606,0.0000026606,0.0000026604,0.0000026614, +0.0000026678,0.0000026765,0.0000026811,0.0000026815,0.0000026767, +0.0000026700,0.0000026649,0.0000026622,0.0000026619,0.0000026661, +0.0000026730,0.0000026793,0.0000026824,0.0000026823,0.0000026811, +0.0000026767,0.0000026664,0.0000026545,0.0000026469,0.0000026400, +0.0000026269,0.0000026108,0.0000025973,0.0000025858,0.0000025801, +0.0000025802,0.0000025784,0.0000025707,0.0000025636,0.0000025597, +0.0000025471,0.0000025194,0.0000024980,0.0000024998,0.0000025073, +0.0000025043,0.0000024943,0.0000024842,0.0000024708,0.0000024548, +0.0000024439,0.0000024401,0.0000024395,0.0000024397,0.0000024410, +0.0000024417,0.0000024407,0.0000024377,0.0000024298,0.0000024189, +0.0000024110,0.0000024045,0.0000023916,0.0000023778,0.0000023738, +0.0000023747,0.0000023770,0.0000023853,0.0000024016,0.0000024178, +0.0000024276,0.0000024345,0.0000024425,0.0000024604,0.0000024884, +0.0000025071,0.0000025126,0.0000025188,0.0000025268,0.0000025315, +0.0000025337,0.0000025345,0.0000025337,0.0000025292,0.0000025188, +0.0000025051,0.0000024875,0.0000024683,0.0000024804,0.0000025441, +0.0000026106,0.0000026589,0.0000027047,0.0000027298,0.0000027312, +0.0000027324,0.0000027353,0.0000027359,0.0000027285,0.0000027182, +0.0000027154,0.0000027156,0.0000027086,0.0000026848,0.0000026691, +0.0000026556,0.0000026354,0.0000026131,0.0000025939,0.0000025788, +0.0000025675,0.0000025613,0.0000025589,0.0000025604,0.0000025662, +0.0000025728,0.0000025796,0.0000025858,0.0000025888,0.0000025893, +0.0000025875,0.0000025801,0.0000025678,0.0000025556,0.0000025494, +0.0000025484,0.0000025324,0.0000024863,0.0000024257,0.0000023785, +0.0000023587,0.0000023556,0.0000023536,0.0000023489,0.0000023432, +0.0000023379,0.0000023308,0.0000023221,0.0000023147,0.0000023119, +0.0000023147,0.0000023197,0.0000023242,0.0000023295,0.0000023380, +0.0000023504,0.0000023655,0.0000023809,0.0000023941,0.0000024034, +0.0000024073,0.0000024065,0.0000024027,0.0000023943,0.0000023794, +0.0000023636,0.0000023554,0.0000023544,0.0000023564,0.0000023578, +0.0000023571,0.0000023535,0.0000023497,0.0000023482,0.0000023473, +0.0000023430,0.0000023359,0.0000023299,0.0000023278,0.0000023287, +0.0000023319,0.0000023338,0.0000023319,0.0000023290,0.0000023263, +0.0000023232,0.0000023201,0.0000023179,0.0000023170,0.0000023161, +0.0000023148,0.0000023149,0.0000023168,0.0000023188,0.0000023204, +0.0000023218,0.0000023235,0.0000023247,0.0000023247,0.0000023246, +0.0000023267,0.0000023314,0.0000023361,0.0000023374,0.0000023358, +0.0000023320,0.0000023272,0.0000023227,0.0000023198,0.0000023168, +0.0000023147,0.0000023148,0.0000023175,0.0000023228,0.0000023290, +0.0000023331,0.0000023333,0.0000023303,0.0000023259,0.0000023241, +0.0000023225,0.0000023173,0.0000023098,0.0000023054,0.0000023053, +0.0000023080,0.0000023103,0.0000023100,0.0000023078,0.0000023049, +0.0000023027,0.0000023011,0.0000022993,0.0000022971,0.0000022940, +0.0000022893,0.0000022823,0.0000022737,0.0000022643,0.0000022571, +0.0000022552,0.0000022607,0.0000022722,0.0000022836,0.0000022912, +0.0000023021,0.0000023234,0.0000023443,0.0000023505,0.0000023477, +0.0000023454,0.0000023455,0.0000023454,0.0000023454,0.0000023424, +0.0000023412,0.0000023581,0.0000023848,0.0000023982,0.0000023962, +0.0000023899,0.0000023877,0.0000023990,0.0000024292,0.0000024794, +0.0000025368,0.0000025576,0.0000025442,0.0000025106,0.0000024627, +0.0000024286,0.0000024220,0.0000024231,0.0000024339,0.0000024519, +0.0000024651,0.0000024661,0.0000024553,0.0000024400,0.0000024293, +0.0000024269,0.0000024276,0.0000024292,0.0000024323,0.0000024358, +0.0000024384,0.0000024403,0.0000024408,0.0000024397,0.0000024377, +0.0000024365,0.0000024373,0.0000024404,0.0000024455,0.0000024510, +0.0000024551,0.0000024572,0.0000024571,0.0000024550,0.0000024511, +0.0000024462,0.0000024419,0.0000024395,0.0000024379,0.0000024354, +0.0000024335,0.0000024312,0.0000024282,0.0000024261,0.0000024235, +0.0000024219,0.0000024217,0.0000024230,0.0000024242,0.0000024240, +0.0000024227,0.0000024185,0.0000024102,0.0000023981,0.0000023860, +0.0000023787,0.0000023769,0.0000023773,0.0000023789,0.0000023824, +0.0000023867,0.0000023888,0.0000023883,0.0000023870,0.0000023872, +0.0000023911,0.0000023977,0.0000024040,0.0000024088,0.0000024124, +0.0000024151,0.0000024171,0.0000024187,0.0000024197,0.0000024198, +0.0000024188,0.0000024173,0.0000024159,0.0000024145,0.0000024130, +0.0000024118,0.0000024109,0.0000024102,0.0000024097,0.0000024091, +0.0000024078,0.0000024058,0.0000024037,0.0000024024,0.0000024021, +0.0000024024,0.0000024046,0.0000024095,0.0000024165,0.0000024227, +0.0000024265,0.0000024287,0.0000024301,0.0000024312,0.0000024333, +0.0000024362,0.0000024383,0.0000024384,0.0000024345,0.0000024311, +0.0000024319,0.0000024326,0.0000024318,0.0000024303,0.0000024270, +0.0000024237,0.0000024233,0.0000024251,0.0000024253,0.0000024198, +0.0000024128,0.0000024074,0.0000023996,0.0000023930,0.0000023959, +0.0000024052,0.0000024165,0.0000024355,0.0000024583,0.0000024730, +0.0000024818,0.0000024924,0.0000025025,0.0000025108,0.0000025213, +0.0000025363,0.0000025521,0.0000025646,0.0000025710,0.0000025721, +0.0000025675,0.0000025575,0.0000025486,0.0000025431,0.0000025391, +0.0000025363,0.0000025343,0.0000025346,0.0000025361,0.0000025390, +0.0000025420,0.0000025453,0.0000025508,0.0000025579,0.0000025626, +0.0000025630,0.0000025617,0.0000025583,0.0000025551,0.0000025539, +0.0000025548,0.0000025567,0.0000025581,0.0000025589,0.0000025608, +0.0000025641,0.0000025657,0.0000025629,0.0000025569,0.0000025520, +0.0000025480,0.0000025473,0.0000025505,0.0000025545,0.0000025546, +0.0000025498,0.0000025442,0.0000025397,0.0000025368,0.0000025355, +0.0000025336,0.0000025286,0.0000025204,0.0000025129,0.0000025114, +0.0000025128,0.0000025128,0.0000025087,0.0000025031,0.0000024980, +0.0000024932,0.0000024894,0.0000024889,0.0000024925,0.0000025014, +0.0000025118,0.0000025184,0.0000025185,0.0000025143,0.0000025067, +0.0000024985,0.0000024908,0.0000024844,0.0000024790,0.0000024755, +0.0000024737,0.0000024731,0.0000024730,0.0000024733,0.0000024743, +0.0000024765,0.0000024799,0.0000024834,0.0000024869,0.0000024901, +0.0000024923,0.0000024936,0.0000024937,0.0000024928,0.0000024905, +0.0000024871,0.0000024838,0.0000024835,0.0000024875,0.0000024918, +0.0000024933,0.0000024930,0.0000024944,0.0000025005,0.0000025081, +0.0000025107,0.0000025065,0.0000024989,0.0000024959,0.0000024994, +0.0000025083,0.0000025197,0.0000025308,0.0000025373,0.0000025375, +0.0000025323,0.0000025250,0.0000025190,0.0000025151,0.0000025115, +0.0000025032,0.0000024919,0.0000024868,0.0000024888,0.0000024936, +0.0000024955,0.0000024939,0.0000024885,0.0000024800,0.0000024691, +0.0000024601,0.0000024568,0.0000024571,0.0000024579,0.0000024582, +0.0000024581,0.0000024583,0.0000024586,0.0000024579,0.0000024560, +0.0000024538,0.0000024517,0.0000024483,0.0000024388,0.0000024216, +0.0000024069,0.0000024041,0.0000024075,0.0000024159,0.0000024260, +0.0000024358,0.0000024461,0.0000024584,0.0000024689,0.0000024739, +0.0000024750,0.0000024714,0.0000024616,0.0000024569,0.0000024724, +0.0000025176,0.0000025644,0.0000025895,0.0000025962,0.0000025983, +0.0000026012,0.0000026051,0.0000026086,0.0000026121,0.0000026166, +0.0000026215,0.0000026253,0.0000026277,0.0000026283,0.0000026275, +0.0000026254,0.0000026233,0.0000026215,0.0000026191,0.0000026161, +0.0000026125,0.0000026088,0.0000026063,0.0000026058,0.0000026076, +0.0000026108,0.0000026135,0.0000026152,0.0000026147,0.0000026122, +0.0000026083,0.0000026036,0.0000025992,0.0000025968,0.0000025979, +0.0000026014,0.0000026058,0.0000026091,0.0000026100,0.0000026090, +0.0000026074,0.0000026056,0.0000026024,0.0000025978,0.0000025935, +0.0000025915,0.0000025907,0.0000025891,0.0000025869,0.0000025843, +0.0000025805,0.0000025764,0.0000025745,0.0000025754,0.0000025783, +0.0000025806,0.0000025818,0.0000025828,0.0000025822,0.0000025774, +0.0000025662,0.0000025496,0.0000025344,0.0000025252,0.0000025212, +0.0000025191,0.0000025156,0.0000025117,0.0000025108,0.0000025144, +0.0000025230,0.0000025343,0.0000025438,0.0000025467,0.0000025416, +0.0000025280,0.0000025150,0.0000025104,0.0000025111,0.0000025147, +0.0000025204,0.0000025266,0.0000025337,0.0000025383,0.0000025409, +0.0000025428,0.0000025423,0.0000025386,0.0000025343,0.0000025327, +0.0000025339,0.0000025358,0.0000025367,0.0000025375,0.0000025393, +0.0000025401,0.0000025392,0.0000025377,0.0000025369,0.0000025381, +0.0000025443,0.0000025515,0.0000025519,0.0000025465,0.0000025378, +0.0000025267,0.0000025175,0.0000025188,0.0000025297,0.0000025404, +0.0000025398,0.0000025264,0.0000025084,0.0000024939,0.0000024866, +0.0000024876,0.0000024956,0.0000025072,0.0000025207,0.0000025322, +0.0000025396,0.0000025428,0.0000025447,0.0000025495,0.0000025558, +0.0000025583,0.0000025565,0.0000025517,0.0000025473,0.0000025462, +0.0000025514,0.0000025634,0.0000025760,0.0000025853,0.0000025918, +0.0000025956,0.0000025965,0.0000025950,0.0000025920,0.0000025899, +0.0000025886,0.0000025867,0.0000025828,0.0000025778,0.0000025733, +0.0000025703,0.0000025690,0.0000025687,0.0000025686,0.0000025683, +0.0000025677,0.0000025664,0.0000025652,0.0000025654,0.0000025662, +0.0000025662,0.0000025644,0.0000025604,0.0000025549,0.0000025482, +0.0000025421,0.0000025378,0.0000025325,0.0000025248,0.0000025175, +0.0000025113,0.0000025055,0.0000024987,0.0000024909,0.0000024840, +0.0000024779,0.0000024722,0.0000024671,0.0000024624,0.0000024580, +0.0000024537,0.0000024496,0.0000024458,0.0000024418,0.0000024370, +0.0000024311,0.0000024256,0.0000024221,0.0000024218,0.0000024248, +0.0000024310,0.0000024405,0.0000024519,0.0000024627,0.0000024703, +0.0000024729,0.0000024692,0.0000024615,0.0000024530,0.0000024445, +0.0000024374,0.0000024309,0.0000024245,0.0000024177,0.0000024110, +0.0000024055,0.0000024011,0.0000023979,0.0000023960,0.0000023946, +0.0000023930,0.0000023914,0.0000023914,0.0000023933,0.0000023966, +0.0000024010,0.0000024058,0.0000024104,0.0000024152,0.0000024213, +0.0000024293,0.0000024393,0.0000024519,0.0000024675,0.0000024866, +0.0000025097,0.0000025360,0.0000025611,0.0000025809,0.0000025953, +0.0000026106,0.0000026289,0.0000026468,0.0000026577,0.0000026591, +0.0000026560,0.0000026455,0.0000026343,0.0000026257,0.0000026189, +0.0000026105,0.0000025994,0.0000025886,0.0000025813,0.0000025684, +0.0000025418,0.0000025163,0.0000025067,0.0000024987,0.0000024895, +0.0000024873,0.0000024838,0.0000024762,0.0000024659,0.0000024558, +0.0000024535,0.0000024673,0.0000024930,0.0000025140,0.0000025045, +0.0000025126,0.0000025917,0.0000026269,0.0000026222,0.0000026155, +0.0000026155,0.0000026164,0.0000026176,0.0000026201,0.0000026240, +0.0000026266,0.0000026258,0.0000026216,0.0000026168,0.0000026118, +0.0000026031,0.0000025956,0.0000025964,0.0000025840,0.0000025246, +0.0000024719,0.0000024630,0.0000024645,0.0000024629,0.0000024566, +0.0000024526,0.0000024545,0.0000024598,0.0000024621,0.0000024634, +0.0000024692,0.0000024785,0.0000024869,0.0000024927,0.0000024956, +0.0000024977,0.0000025003,0.0000025039,0.0000025065,0.0000025075, +0.0000025070,0.0000025079,0.0000025125,0.0000025200,0.0000025275, +0.0000025320,0.0000025346,0.0000025348,0.0000025318,0.0000025273, +0.0000025230,0.0000025209,0.0000025199,0.0000025164,0.0000025096, +0.0000025020,0.0000024999,0.0000025017,0.0000025025,0.0000025002, +0.0000024948,0.0000024870,0.0000024803,0.0000024760,0.0000024761, +0.0000024815,0.0000024946,0.0000025140,0.0000025309,0.0000025388, +0.0000025443,0.0000025541,0.0000025670,0.0000025777,0.0000025839, +0.0000025876,0.0000025933,0.0000026048,0.0000026229,0.0000026435, +0.0000026603,0.0000026702,0.0000026742,0.0000026759,0.0000026804, +0.0000026878,0.0000026951,0.0000026990,0.0000026993,0.0000026949, +0.0000026854,0.0000026764,0.0000026714,0.0000026689,0.0000026679, +0.0000026684,0.0000026701,0.0000026720,0.0000026752,0.0000026805, +0.0000026869,0.0000026921,0.0000026943,0.0000026941,0.0000026919, +0.0000026882,0.0000026841,0.0000026797,0.0000026752,0.0000026717, +0.0000026696,0.0000026680,0.0000026650,0.0000026605,0.0000026558, +0.0000026510,0.0000026452,0.0000026375,0.0000026289,0.0000026217, +0.0000026173,0.0000026126,0.0000026037,0.0000025923,0.0000025838, +0.0000025794,0.0000025765,0.0000025726,0.0000025686,0.0000025650, +0.0000025635,0.0000025638,0.0000025652,0.0000025653,0.0000025637, +0.0000025620,0.0000025624,0.0000025653,0.0000025679,0.0000025697, +0.0000025686,0.0000025647,0.0000025597,0.0000025563,0.0000025553, +0.0000025560,0.0000025577,0.0000025597,0.0000025614,0.0000025620, +0.0000025616,0.0000025598,0.0000025574,0.0000025557,0.0000025552, +0.0000025561,0.0000025593,0.0000025636,0.0000025664,0.0000025658, +0.0000025606,0.0000025546,0.0000025483,0.0000025307,0.0000025008, +0.0000024786,0.0000024747,0.0000024716,0.0000024526,0.0000024241, +0.0000024007,0.0000023894,0.0000023817,0.0000023589,0.0000023199, +0.0000022817,0.0000022580,0.0000022525,0.0000022572,0.0000022736, +0.0000022976,0.0000023253,0.0000023553,0.0000023918,0.0000024293, +0.0000024594,0.0000024914,0.0000025193,0.0000025277,0.0000025278, +0.0000025264,0.0000025169,0.0000025025,0.0000024957,0.0000024978, +0.0000025067,0.0000025157,0.0000025193,0.0000025192,0.0000025193, +0.0000025194,0.0000025193,0.0000025200,0.0000025192,0.0000025123, +0.0000025030,0.0000024959,0.0000024891,0.0000024842,0.0000024845, +0.0000024872,0.0000024880,0.0000024854,0.0000024812,0.0000024788, +0.0000024788,0.0000024797,0.0000024816,0.0000024858,0.0000024926, +0.0000025006,0.0000025080,0.0000025138,0.0000025170,0.0000025190, +0.0000025228,0.0000025290,0.0000025330,0.0000025338,0.0000025374, +0.0000025455,0.0000025495,0.0000025457,0.0000025376,0.0000025330, +0.0000025349,0.0000025468,0.0000025627,0.0000025722,0.0000025740, +0.0000025739,0.0000025706,0.0000025611,0.0000025507,0.0000025438, +0.0000025392,0.0000025359,0.0000025348,0.0000025361,0.0000025388, +0.0000025403,0.0000025401,0.0000025402,0.0000025431,0.0000025491, +0.0000025573,0.0000025665,0.0000025744,0.0000025794,0.0000025867, +0.0000025997,0.0000026160,0.0000026327,0.0000026466,0.0000026539, +0.0000026556,0.0000026589,0.0000026661,0.0000026709,0.0000026690, +0.0000026603,0.0000026466,0.0000026413,0.0000026532,0.0000026764, +0.0000026948,0.0000027038,0.0000027091,0.0000027109,0.0000027104, +0.0000027124,0.0000027154,0.0000027164,0.0000027154,0.0000027132, +0.0000027106,0.0000027076,0.0000027044,0.0000027022,0.0000027021, +0.0000027033,0.0000027054,0.0000027103,0.0000027189,0.0000027285, +0.0000027369,0.0000027433,0.0000027482,0.0000027529,0.0000027578, +0.0000027633,0.0000027684,0.0000027711,0.0000027707,0.0000027671, +0.0000027615,0.0000027552,0.0000027504,0.0000027483,0.0000027503, +0.0000027526,0.0000027524,0.0000027469,0.0000027359,0.0000027233, +0.0000027157,0.0000027145,0.0000027191,0.0000027253,0.0000027294, +0.0000027308,0.0000027294,0.0000027248,0.0000027189,0.0000027139, +0.0000027101,0.0000027062,0.0000027031,0.0000027027,0.0000027031, +0.0000027028,0.0000027010,0.0000026978,0.0000026928,0.0000026836, +0.0000026707,0.0000026599,0.0000026558,0.0000026579,0.0000026611, +0.0000026626,0.0000026627,0.0000026648,0.0000026714,0.0000026783, +0.0000026797,0.0000026763,0.0000026678,0.0000026599,0.0000026567, +0.0000026569,0.0000026597,0.0000026664,0.0000026747,0.0000026811, +0.0000026842,0.0000026845,0.0000026832,0.0000026770,0.0000026647, +0.0000026529,0.0000026468,0.0000026402,0.0000026269,0.0000026118, +0.0000025983,0.0000025866,0.0000025823,0.0000025825,0.0000025786, +0.0000025696,0.0000025630,0.0000025573,0.0000025389,0.0000025103, +0.0000024985,0.0000025051,0.0000025106,0.0000025042,0.0000024942, +0.0000024822,0.0000024646,0.0000024475,0.0000024381,0.0000024339, +0.0000024318,0.0000024310,0.0000024319,0.0000024339,0.0000024351, +0.0000024346,0.0000024292,0.0000024189,0.0000024105,0.0000024045, +0.0000023927,0.0000023769,0.0000023692,0.0000023702,0.0000023732, +0.0000023798,0.0000023945,0.0000024130,0.0000024263,0.0000024352, +0.0000024402,0.0000024452,0.0000024621,0.0000024867,0.0000025013, +0.0000025078,0.0000025147,0.0000025211,0.0000025249,0.0000025255, +0.0000025239,0.0000025197,0.0000025105,0.0000024986,0.0000024884, +0.0000024729,0.0000024672,0.0000025037,0.0000025789,0.0000026352, +0.0000026806,0.0000027193,0.0000027282,0.0000027269,0.0000027295, +0.0000027320,0.0000027305,0.0000027203,0.0000027131,0.0000027134, +0.0000027140,0.0000026973,0.0000026762,0.0000026662,0.0000026512, +0.0000026319,0.0000026127,0.0000025980,0.0000025879,0.0000025816, +0.0000025782,0.0000025796,0.0000025853,0.0000025918,0.0000025990, +0.0000026061,0.0000026100,0.0000026120,0.0000026126,0.0000026089, +0.0000025946,0.0000025745,0.0000025593,0.0000025553,0.0000025511, +0.0000025203,0.0000024595,0.0000023984,0.0000023658,0.0000023579, +0.0000023559,0.0000023509,0.0000023450,0.0000023400,0.0000023347, +0.0000023274,0.0000023186,0.0000023101,0.0000023054,0.0000023067, +0.0000023109,0.0000023146,0.0000023178,0.0000023237,0.0000023340, +0.0000023478,0.0000023617,0.0000023736,0.0000023823,0.0000023868, +0.0000023870,0.0000023817,0.0000023700,0.0000023566,0.0000023498, +0.0000023501,0.0000023521,0.0000023541,0.0000023548,0.0000023533, +0.0000023486,0.0000023426,0.0000023381,0.0000023339,0.0000023271, +0.0000023204,0.0000023160,0.0000023149,0.0000023172,0.0000023239, +0.0000023289,0.0000023290,0.0000023276,0.0000023246,0.0000023197, +0.0000023152,0.0000023123,0.0000023108,0.0000023098,0.0000023101, +0.0000023121,0.0000023149,0.0000023168,0.0000023171,0.0000023172, +0.0000023179,0.0000023190,0.0000023193,0.0000023194,0.0000023207, +0.0000023243,0.0000023293,0.0000023334,0.0000023339,0.0000023318, +0.0000023274,0.0000023218,0.0000023163,0.0000023117,0.0000023095, +0.0000023104,0.0000023138,0.0000023189,0.0000023239,0.0000023265, +0.0000023256,0.0000023232,0.0000023219,0.0000023214,0.0000023191, +0.0000023144,0.0000023104,0.0000023094,0.0000023104,0.0000023115, +0.0000023109,0.0000023078,0.0000023029,0.0000022977,0.0000022939, +0.0000022919,0.0000022910,0.0000022900,0.0000022880,0.0000022851, +0.0000022807,0.0000022737,0.0000022645,0.0000022542,0.0000022469, +0.0000022466,0.0000022574,0.0000022749,0.0000022883,0.0000022987, +0.0000023181,0.0000023409,0.0000023500,0.0000023476,0.0000023459, +0.0000023466,0.0000023471,0.0000023476,0.0000023452,0.0000023434, +0.0000023564,0.0000023842,0.0000023999,0.0000023987,0.0000023911, +0.0000023871,0.0000023934,0.0000024176,0.0000024618,0.0000025202, +0.0000025535,0.0000025471,0.0000025189,0.0000024715,0.0000024322, +0.0000024224,0.0000024228,0.0000024248,0.0000024332,0.0000024475, +0.0000024615,0.0000024664,0.0000024615,0.0000024492,0.0000024371, +0.0000024294,0.0000024279,0.0000024283,0.0000024294,0.0000024301, +0.0000024313,0.0000024317,0.0000024304,0.0000024275,0.0000024247, +0.0000024242,0.0000024236,0.0000024257,0.0000024311,0.0000024380, +0.0000024454,0.0000024506,0.0000024531,0.0000024514,0.0000024454, +0.0000024432,0.0000024408,0.0000024391,0.0000024362,0.0000024332, +0.0000024308,0.0000024292,0.0000024285,0.0000024280,0.0000024270, +0.0000024266,0.0000024246,0.0000024213,0.0000024169,0.0000024114, +0.0000024044,0.0000023954,0.0000023855,0.0000023779,0.0000023745, +0.0000023742,0.0000023750,0.0000023769,0.0000023808,0.0000023863, +0.0000023898,0.0000023899,0.0000023875,0.0000023851,0.0000023848, +0.0000023881,0.0000023933,0.0000023980,0.0000024015,0.0000024039, +0.0000024057,0.0000024075,0.0000024094,0.0000024106,0.0000024107, +0.0000024100,0.0000024088,0.0000024072,0.0000024054,0.0000024034, +0.0000024013,0.0000023994,0.0000023983,0.0000023976,0.0000023967, +0.0000023955,0.0000023942,0.0000023934,0.0000023939,0.0000023951, +0.0000023980,0.0000024035,0.0000024106,0.0000024164,0.0000024196, +0.0000024213,0.0000024224,0.0000024236,0.0000024264,0.0000024305, +0.0000024336,0.0000024342,0.0000024310,0.0000024265,0.0000024268, +0.0000024286,0.0000024287,0.0000024274,0.0000024240,0.0000024197, +0.0000024180,0.0000024189,0.0000024198,0.0000024172,0.0000024112, +0.0000024057,0.0000023987,0.0000023904,0.0000023900,0.0000023985, +0.0000024101,0.0000024280,0.0000024515,0.0000024678,0.0000024772, +0.0000024889,0.0000025010,0.0000025112,0.0000025226,0.0000025378, +0.0000025528,0.0000025629,0.0000025686,0.0000025691,0.0000025650, +0.0000025569,0.0000025503,0.0000025452,0.0000025412,0.0000025393, +0.0000025386,0.0000025388,0.0000025401,0.0000025426,0.0000025455, +0.0000025483,0.0000025526,0.0000025583,0.0000025625,0.0000025639, +0.0000025634,0.0000025614,0.0000025578,0.0000025542,0.0000025525, +0.0000025533,0.0000025560,0.0000025574,0.0000025576,0.0000025592, +0.0000025618,0.0000025615,0.0000025572,0.0000025527,0.0000025482, +0.0000025435,0.0000025439,0.0000025481,0.0000025517,0.0000025508, +0.0000025468,0.0000025432,0.0000025402,0.0000025381,0.0000025365, +0.0000025333,0.0000025281,0.0000025201,0.0000025130,0.0000025122, +0.0000025138,0.0000025127,0.0000025076,0.0000025017,0.0000024963, +0.0000024916,0.0000024878,0.0000024861,0.0000024882,0.0000024959, +0.0000025071,0.0000025162,0.0000025183,0.0000025154,0.0000025085, +0.0000024999,0.0000024911,0.0000024833,0.0000024775,0.0000024734, +0.0000024715,0.0000024711,0.0000024719,0.0000024740,0.0000024770, +0.0000024801,0.0000024829,0.0000024854,0.0000024881,0.0000024901, +0.0000024911,0.0000024904,0.0000024881,0.0000024842,0.0000024799, +0.0000024773,0.0000024779,0.0000024825,0.0000024868,0.0000024884, +0.0000024882,0.0000024891,0.0000024940,0.0000025015,0.0000025056, +0.0000025039,0.0000024966,0.0000024912,0.0000024929,0.0000025012, +0.0000025123,0.0000025245,0.0000025347,0.0000025389,0.0000025372, +0.0000025304,0.0000025229,0.0000025169,0.0000025135,0.0000025099, +0.0000025015,0.0000024920,0.0000024894,0.0000024934,0.0000024986, +0.0000025000,0.0000024978,0.0000024917,0.0000024827,0.0000024712, +0.0000024611,0.0000024567,0.0000024567,0.0000024579,0.0000024583, +0.0000024579,0.0000024572,0.0000024567,0.0000024557,0.0000024540, +0.0000024517,0.0000024492,0.0000024454,0.0000024343,0.0000024150, +0.0000023997,0.0000023972,0.0000024001,0.0000024069,0.0000024156, +0.0000024255,0.0000024382,0.0000024533,0.0000024658,0.0000024715, +0.0000024725,0.0000024701,0.0000024629,0.0000024551,0.0000024592, +0.0000024915,0.0000025405,0.0000025783,0.0000025947,0.0000025986, +0.0000025998,0.0000026009,0.0000026018,0.0000026032,0.0000026061, +0.0000026099,0.0000026137,0.0000026173,0.0000026204,0.0000026221, +0.0000026221,0.0000026215,0.0000026209,0.0000026201,0.0000026190, +0.0000026166,0.0000026129,0.0000026093,0.0000026073,0.0000026079, +0.0000026104,0.0000026134,0.0000026158,0.0000026161,0.0000026143, +0.0000026106,0.0000026065,0.0000026025,0.0000026002,0.0000026015, +0.0000026054,0.0000026099,0.0000026128,0.0000026128,0.0000026102, +0.0000026065,0.0000026029,0.0000025982,0.0000025917,0.0000025858, +0.0000025835,0.0000025837,0.0000025833,0.0000025826,0.0000025819, +0.0000025797,0.0000025767,0.0000025753,0.0000025762,0.0000025787, +0.0000025809,0.0000025819,0.0000025821,0.0000025806,0.0000025739, +0.0000025606,0.0000025438,0.0000025302,0.0000025233,0.0000025212, +0.0000025205,0.0000025180,0.0000025127,0.0000025085,0.0000025085, +0.0000025139,0.0000025233,0.0000025334,0.0000025415,0.0000025438, +0.0000025381,0.0000025250,0.0000025140,0.0000025104,0.0000025101, +0.0000025134,0.0000025184,0.0000025255,0.0000025304,0.0000025328, +0.0000025349,0.0000025374,0.0000025391,0.0000025394,0.0000025385, +0.0000025379,0.0000025387,0.0000025395,0.0000025393,0.0000025380, +0.0000025363,0.0000025348,0.0000025326,0.0000025310,0.0000025312, +0.0000025345,0.0000025443,0.0000025540,0.0000025546,0.0000025474, +0.0000025368,0.0000025245,0.0000025175,0.0000025190,0.0000025313, +0.0000025468,0.0000025513,0.0000025384,0.0000025166,0.0000024974, +0.0000024868,0.0000024865,0.0000024936,0.0000025072,0.0000025219, +0.0000025348,0.0000025429,0.0000025470,0.0000025515,0.0000025585, +0.0000025639,0.0000025649,0.0000025618,0.0000025553,0.0000025491, +0.0000025483,0.0000025564,0.0000025704,0.0000025817,0.0000025885, +0.0000025933,0.0000025967,0.0000025975,0.0000025949,0.0000025904, +0.0000025853,0.0000025796,0.0000025732,0.0000025673,0.0000025629, +0.0000025600,0.0000025582,0.0000025574,0.0000025570,0.0000025567, +0.0000025561,0.0000025544,0.0000025518,0.0000025494,0.0000025475, +0.0000025454,0.0000025425,0.0000025379,0.0000025312,0.0000025235, +0.0000025169,0.0000025130,0.0000025091,0.0000025020,0.0000024932, +0.0000024840,0.0000024754,0.0000024671,0.0000024584,0.0000024507, +0.0000024454,0.0000024414,0.0000024378,0.0000024343,0.0000024305, +0.0000024259,0.0000024208,0.0000024166,0.0000024143,0.0000024128, +0.0000024104,0.0000024068,0.0000024027,0.0000023984,0.0000023946, +0.0000023927,0.0000023947,0.0000024015,0.0000024115,0.0000024231, +0.0000024344,0.0000024439,0.0000024493,0.0000024507,0.0000024471, +0.0000024415,0.0000024352,0.0000024296,0.0000024239,0.0000024187, +0.0000024124,0.0000024058,0.0000023993,0.0000023940,0.0000023902, +0.0000023875,0.0000023854,0.0000023835,0.0000023832,0.0000023846, +0.0000023867,0.0000023889,0.0000023916,0.0000023954,0.0000024005, +0.0000024076,0.0000024168,0.0000024267,0.0000024364,0.0000024469, +0.0000024592,0.0000024743,0.0000024937,0.0000025189,0.0000025460, +0.0000025692,0.0000025870,0.0000026037,0.0000026234,0.0000026417, +0.0000026540,0.0000026576,0.0000026542,0.0000026444,0.0000026326, +0.0000026239,0.0000026168,0.0000026068,0.0000025953,0.0000025875, +0.0000025806,0.0000025620,0.0000025296,0.0000025092,0.0000025008, +0.0000024893,0.0000024852,0.0000024825,0.0000024744,0.0000024615, +0.0000024487,0.0000024428,0.0000024513,0.0000024769,0.0000025062, +0.0000025103,0.0000024987,0.0000025624,0.0000026183,0.0000026202, +0.0000026131,0.0000026110,0.0000026116,0.0000026132,0.0000026166, +0.0000026201,0.0000026218,0.0000026201,0.0000026148,0.0000026083, +0.0000026022,0.0000025955,0.0000025914,0.0000025936,0.0000025835, +0.0000025307,0.0000024745,0.0000024621,0.0000024637,0.0000024640, +0.0000024586,0.0000024517,0.0000024482,0.0000024526,0.0000024583, +0.0000024609,0.0000024653,0.0000024727,0.0000024808,0.0000024874, +0.0000024922,0.0000024948,0.0000024950,0.0000024965,0.0000024992, +0.0000025026,0.0000025044,0.0000025055,0.0000025082,0.0000025146, +0.0000025235,0.0000025304,0.0000025347,0.0000025366,0.0000025340, +0.0000025292,0.0000025239,0.0000025196,0.0000025179,0.0000025156, +0.0000025105,0.0000025030,0.0000024985,0.0000024989,0.0000024997, +0.0000024972,0.0000024913,0.0000024829,0.0000024754,0.0000024692, +0.0000024672,0.0000024698,0.0000024786,0.0000024937,0.0000025128, +0.0000025270,0.0000025331,0.0000025389,0.0000025517,0.0000025689, +0.0000025820,0.0000025872,0.0000025889,0.0000025914,0.0000025980, +0.0000026096,0.0000026247,0.0000026405,0.0000026536,0.0000026622, +0.0000026684,0.0000026750,0.0000026829,0.0000026904,0.0000026947, +0.0000026952,0.0000026892,0.0000026783,0.0000026682,0.0000026629, +0.0000026609,0.0000026592,0.0000026572,0.0000026551,0.0000026543, +0.0000026568,0.0000026633,0.0000026723,0.0000026808,0.0000026862, +0.0000026879,0.0000026865,0.0000026839,0.0000026794,0.0000026737, +0.0000026683,0.0000026640,0.0000026609,0.0000026570,0.0000026515, +0.0000026453,0.0000026393,0.0000026331,0.0000026268,0.0000026207, +0.0000026153,0.0000026096,0.0000026016,0.0000025918,0.0000025840, +0.0000025803,0.0000025785,0.0000025764,0.0000025734,0.0000025705, +0.0000025692,0.0000025700,0.0000025713,0.0000025715,0.0000025695, +0.0000025659,0.0000025628,0.0000025617,0.0000025623,0.0000025645, +0.0000025672,0.0000025696,0.0000025695,0.0000025677,0.0000025653, +0.0000025638,0.0000025637,0.0000025642,0.0000025645,0.0000025642, +0.0000025636,0.0000025626,0.0000025615,0.0000025604,0.0000025599, +0.0000025604,0.0000025624,0.0000025656,0.0000025676,0.0000025674, +0.0000025640,0.0000025576,0.0000025521,0.0000025445,0.0000025249, +0.0000024957,0.0000024754,0.0000024725,0.0000024709,0.0000024535, +0.0000024253,0.0000024005,0.0000023879,0.0000023820,0.0000023630, +0.0000023249,0.0000022839,0.0000022562,0.0000022454,0.0000022469, +0.0000022583,0.0000022790,0.0000023053,0.0000023343,0.0000023671, +0.0000024055,0.0000024398,0.0000024689,0.0000025011,0.0000025224, +0.0000025254,0.0000025248,0.0000025190,0.0000025075,0.0000024986, +0.0000024983,0.0000025042,0.0000025123,0.0000025181,0.0000025193, +0.0000025186,0.0000025179,0.0000025191,0.0000025233,0.0000025254, +0.0000025208,0.0000025122,0.0000025035,0.0000024934,0.0000024849, +0.0000024829,0.0000024864,0.0000024888,0.0000024872,0.0000024821, +0.0000024783,0.0000024773,0.0000024778,0.0000024789,0.0000024815, +0.0000024869,0.0000024941,0.0000025007,0.0000025062,0.0000025105, +0.0000025137,0.0000025179,0.0000025254,0.0000025331,0.0000025360, +0.0000025371,0.0000025434,0.0000025511,0.0000025511,0.0000025441, +0.0000025363,0.0000025338,0.0000025396,0.0000025529,0.0000025652, +0.0000025696,0.0000025694,0.0000025680,0.0000025622,0.0000025532, +0.0000025456,0.0000025402,0.0000025363,0.0000025343,0.0000025343, +0.0000025349,0.0000025355,0.0000025365,0.0000025387,0.0000025417, +0.0000025456,0.0000025506,0.0000025564,0.0000025632,0.0000025688, +0.0000025718,0.0000025767,0.0000025877,0.0000026030,0.0000026194, +0.0000026338,0.0000026432,0.0000026476,0.0000026524,0.0000026612, +0.0000026680,0.0000026689,0.0000026647,0.0000026531,0.0000026446, +0.0000026509,0.0000026708,0.0000026877,0.0000026968,0.0000027044, +0.0000027102,0.0000027128,0.0000027159,0.0000027190,0.0000027195, +0.0000027168,0.0000027124,0.0000027082,0.0000027033,0.0000026974, +0.0000026927,0.0000026903,0.0000026904,0.0000026931,0.0000026988, +0.0000027068,0.0000027156,0.0000027236,0.0000027311,0.0000027384, +0.0000027457,0.0000027529,0.0000027590,0.0000027630,0.0000027642, +0.0000027641,0.0000027636,0.0000027626,0.0000027609,0.0000027576, +0.0000027543,0.0000027531,0.0000027531,0.0000027523,0.0000027492, +0.0000027433,0.0000027351,0.0000027273,0.0000027226,0.0000027207, +0.0000027211,0.0000027221,0.0000027228,0.0000027228,0.0000027213, +0.0000027189,0.0000027162,0.0000027136,0.0000027102,0.0000027063, +0.0000027044,0.0000027041,0.0000027034,0.0000027006,0.0000026943, +0.0000026845,0.0000026717,0.0000026597,0.0000026538,0.0000026542, +0.0000026586,0.0000026627,0.0000026642,0.0000026653,0.0000026691, +0.0000026751,0.0000026787,0.0000026773,0.0000026685,0.0000026567, +0.0000026493,0.0000026488,0.0000026526,0.0000026594,0.0000026686, +0.0000026774,0.0000026830,0.0000026860,0.0000026868,0.0000026853, +0.0000026774,0.0000026640,0.0000026528,0.0000026469,0.0000026393, +0.0000026258,0.0000026117,0.0000025985,0.0000025876,0.0000025848, +0.0000025841,0.0000025780,0.0000025688,0.0000025622,0.0000025520, +0.0000025277,0.0000025030,0.0000025002,0.0000025097,0.0000025109, +0.0000025036,0.0000024939,0.0000024788,0.0000024590,0.0000024432, +0.0000024342,0.0000024283,0.0000024247,0.0000024234,0.0000024238, +0.0000024258,0.0000024289,0.0000024303,0.0000024273,0.0000024186, +0.0000024108,0.0000024049,0.0000023944,0.0000023788,0.0000023679, +0.0000023669,0.0000023703,0.0000023758,0.0000023883,0.0000024071, +0.0000024232,0.0000024347,0.0000024400,0.0000024395,0.0000024415, +0.0000024583,0.0000024822,0.0000024981,0.0000025059,0.0000025107, +0.0000025138,0.0000025142,0.0000025127,0.0000025097,0.0000025025, +0.0000024911,0.0000024810,0.0000024744,0.0000024670,0.0000024786, +0.0000025401,0.0000026083,0.0000026569,0.0000026996,0.0000027234, +0.0000027227,0.0000027225,0.0000027263,0.0000027276,0.0000027230, +0.0000027129,0.0000027092,0.0000027121,0.0000027101,0.0000026891, +0.0000026739,0.0000026654,0.0000026505,0.0000026333,0.0000026174, +0.0000026059,0.0000026000,0.0000025971,0.0000025981,0.0000026021, +0.0000026069,0.0000026118,0.0000026173,0.0000026212,0.0000026244, +0.0000026278,0.0000026300,0.0000026238,0.0000026020,0.0000025763, +0.0000025627,0.0000025607,0.0000025452,0.0000024946,0.0000024264, +0.0000023790,0.0000023631,0.0000023590,0.0000023532,0.0000023463, +0.0000023401,0.0000023347,0.0000023284,0.0000023203,0.0000023118, +0.0000023044,0.0000023003,0.0000022995,0.0000023016,0.0000023049, +0.0000023087,0.0000023134,0.0000023211,0.0000023328,0.0000023457, +0.0000023565,0.0000023643,0.0000023674,0.0000023656,0.0000023583, +0.0000023491,0.0000023441,0.0000023449,0.0000023471,0.0000023482, +0.0000023493,0.0000023500,0.0000023490,0.0000023446,0.0000023375, +0.0000023300,0.0000023218,0.0000023140,0.0000023078,0.0000023031, +0.0000023014,0.0000023054,0.0000023166,0.0000023252,0.0000023266, +0.0000023251,0.0000023199,0.0000023129,0.0000023076,0.0000023048, +0.0000023042,0.0000023051,0.0000023072,0.0000023106,0.0000023139, +0.0000023153,0.0000023147,0.0000023136,0.0000023136,0.0000023151, +0.0000023159,0.0000023157,0.0000023158,0.0000023172,0.0000023207, +0.0000023260,0.0000023299,0.0000023303,0.0000023278,0.0000023221, +0.0000023150,0.0000023084,0.0000023049,0.0000023053,0.0000023087, +0.0000023129,0.0000023167,0.0000023183,0.0000023180,0.0000023180, +0.0000023186,0.0000023178,0.0000023152,0.0000023129,0.0000023124, +0.0000023129,0.0000023132,0.0000023121,0.0000023084,0.0000023023, +0.0000022951,0.0000022886,0.0000022840,0.0000022819,0.0000022813, +0.0000022812,0.0000022805,0.0000022787,0.0000022759,0.0000022714, +0.0000022640,0.0000022546,0.0000022441,0.0000022382,0.0000022433, +0.0000022634,0.0000022840,0.0000022962,0.0000023133,0.0000023367, +0.0000023480,0.0000023471,0.0000023465,0.0000023481,0.0000023487, +0.0000023493,0.0000023472,0.0000023448,0.0000023561,0.0000023840, +0.0000024020,0.0000024017,0.0000023932,0.0000023862,0.0000023877, +0.0000024074,0.0000024462,0.0000025014,0.0000025459,0.0000025504, +0.0000025282,0.0000024840,0.0000024394,0.0000024232,0.0000024240, +0.0000024256,0.0000024273,0.0000024323,0.0000024414,0.0000024530, +0.0000024615,0.0000024628,0.0000024571,0.0000024473,0.0000024388, +0.0000024340,0.0000024328,0.0000024331,0.0000024340,0.0000024343, +0.0000024340,0.0000024330,0.0000024307,0.0000024277,0.0000024251, +0.0000024228,0.0000024216,0.0000024225,0.0000024268,0.0000024331, +0.0000024400,0.0000024446,0.0000024296,0.0000024335,0.0000024358, +0.0000024368,0.0000024363,0.0000024345,0.0000024321,0.0000024298, +0.0000024276,0.0000024251,0.0000024220,0.0000024179,0.0000024132, +0.0000024088,0.0000024046,0.0000023993,0.0000023919,0.0000023837, +0.0000023770,0.0000023733,0.0000023718,0.0000023718,0.0000023731, +0.0000023758,0.0000023800,0.0000023854,0.0000023894,0.0000023902, +0.0000023884,0.0000023855,0.0000023843,0.0000023855,0.0000023885, +0.0000023918,0.0000023941,0.0000023950,0.0000023956,0.0000023968, +0.0000023989,0.0000024010,0.0000024023,0.0000024030,0.0000024030, +0.0000024022,0.0000024009,0.0000023988,0.0000023957,0.0000023925, +0.0000023897,0.0000023875,0.0000023861,0.0000023855,0.0000023852, +0.0000023854,0.0000023865,0.0000023888,0.0000023925,0.0000023983, +0.0000024050,0.0000024102,0.0000024132,0.0000024149,0.0000024156, +0.0000024162,0.0000024190,0.0000024242,0.0000024285,0.0000024301, +0.0000024281,0.0000024225,0.0000024218,0.0000024242,0.0000024248, +0.0000024237,0.0000024205,0.0000024152,0.0000024118,0.0000024116, +0.0000024131,0.0000024132,0.0000024097,0.0000024043,0.0000023979, +0.0000023886,0.0000023852,0.0000023914,0.0000024030,0.0000024200, +0.0000024427,0.0000024614,0.0000024718,0.0000024842,0.0000024982, +0.0000025111,0.0000025235,0.0000025379,0.0000025516,0.0000025606, +0.0000025648,0.0000025651,0.0000025617,0.0000025557,0.0000025514, +0.0000025478,0.0000025439,0.0000025418,0.0000025406,0.0000025408, +0.0000025425,0.0000025452,0.0000025484,0.0000025508,0.0000025533, +0.0000025569,0.0000025606,0.0000025624,0.0000025626,0.0000025623, +0.0000025608,0.0000025573,0.0000025529,0.0000025506,0.0000025522, +0.0000025562,0.0000025579,0.0000025573,0.0000025579,0.0000025591, +0.0000025568,0.0000025527,0.0000025495,0.0000025443,0.0000025394, +0.0000025404,0.0000025451,0.0000025475,0.0000025462,0.0000025437, +0.0000025418,0.0000025404,0.0000025392,0.0000025369,0.0000025326, +0.0000025272,0.0000025194,0.0000025134,0.0000025134,0.0000025143, +0.0000025111,0.0000025046,0.0000024981,0.0000024927,0.0000024886, +0.0000024860,0.0000024844,0.0000024851,0.0000024905,0.0000025008, +0.0000025113,0.0000025165,0.0000025158,0.0000025108,0.0000025028, +0.0000024936,0.0000024856,0.0000024795,0.0000024758,0.0000024748, +0.0000024753,0.0000024778,0.0000024814,0.0000024844,0.0000024853, +0.0000024856,0.0000024865,0.0000024870,0.0000024865,0.0000024845, +0.0000024812,0.0000024770,0.0000024730,0.0000024711,0.0000024723, +0.0000024761,0.0000024799,0.0000024817,0.0000024825,0.0000024846, +0.0000024895,0.0000024963,0.0000025005,0.0000024997,0.0000024936, +0.0000024868,0.0000024867,0.0000024943,0.0000025060,0.0000025180, +0.0000025296,0.0000025377,0.0000025395,0.0000025353,0.0000025274, +0.0000025193,0.0000025137,0.0000025116,0.0000025087,0.0000025002, +0.0000024932,0.0000024932,0.0000024985,0.0000025038,0.0000025049, +0.0000025015,0.0000024942,0.0000024841,0.0000024721,0.0000024618, +0.0000024571,0.0000024569,0.0000024581,0.0000024583,0.0000024573, +0.0000024560,0.0000024556,0.0000024550,0.0000024534,0.0000024504, +0.0000024466,0.0000024414,0.0000024287,0.0000024082,0.0000023932, +0.0000023909,0.0000023934,0.0000023992,0.0000024074,0.0000024180, +0.0000024324,0.0000024488,0.0000024617,0.0000024676,0.0000024685, +0.0000024669,0.0000024623,0.0000024553,0.0000024536,0.0000024728, +0.0000025148,0.0000025585,0.0000025858,0.0000025970,0.0000025996, +0.0000025992,0.0000025985,0.0000025991,0.0000026007,0.0000026024, +0.0000026039,0.0000026061,0.0000026093,0.0000026121,0.0000026135, +0.0000026144,0.0000026158,0.0000026173,0.0000026179,0.0000026168, +0.0000026138,0.0000026102,0.0000026074,0.0000026065,0.0000026077, +0.0000026105,0.0000026136,0.0000026153,0.0000026148,0.0000026122, +0.0000026090,0.0000026055,0.0000026037,0.0000026046,0.0000026079, +0.0000026118,0.0000026142,0.0000026139,0.0000026108,0.0000026053, +0.0000025983,0.0000025900,0.0000025812,0.0000025745,0.0000025726, +0.0000025738,0.0000025747,0.0000025752,0.0000025760,0.0000025753, +0.0000025732,0.0000025723,0.0000025744,0.0000025771,0.0000025794, +0.0000025802,0.0000025788,0.0000025749,0.0000025657,0.0000025516, +0.0000025370,0.0000025271,0.0000025224,0.0000025206,0.0000025201, +0.0000025182,0.0000025130,0.0000025075,0.0000025045,0.0000025058, +0.0000025133,0.0000025232,0.0000025322,0.0000025396,0.0000025411, +0.0000025347,0.0000025229,0.0000025142,0.0000025108,0.0000025102, +0.0000025127,0.0000025189,0.0000025253,0.0000025291,0.0000025306, +0.0000025305,0.0000025299,0.0000025305,0.0000025331,0.0000025359, +0.0000025377,0.0000025389,0.0000025396,0.0000025386,0.0000025352, +0.0000025313,0.0000025279,0.0000025248,0.0000025241,0.0000025261, +0.0000025323,0.0000025455,0.0000025574,0.0000025563,0.0000025472, +0.0000025346,0.0000025227,0.0000025174,0.0000025204,0.0000025352, +0.0000025536,0.0000025596,0.0000025482,0.0000025235,0.0000025005, +0.0000024885,0.0000024882,0.0000024979,0.0000025110,0.0000025254, +0.0000025386,0.0000025471,0.0000025524,0.0000025582,0.0000025644, +0.0000025682,0.0000025686,0.0000025656,0.0000025589,0.0000025521, +0.0000025516,0.0000025606,0.0000025739,0.0000025839,0.0000025897, +0.0000025936,0.0000025955,0.0000025952,0.0000025923,0.0000025869, +0.0000025796,0.0000025716,0.0000025645,0.0000025590,0.0000025546, +0.0000025511,0.0000025483,0.0000025459,0.0000025436,0.0000025412, +0.0000025384,0.0000025351,0.0000025317,0.0000025282,0.0000025241, +0.0000025197,0.0000025147,0.0000025079,0.0000024987,0.0000024891, +0.0000024814,0.0000024746,0.0000024661,0.0000024562,0.0000024466, +0.0000024394,0.0000024347,0.0000024313,0.0000024288,0.0000024273, +0.0000024264,0.0000024253,0.0000024237,0.0000024214,0.0000024179, +0.0000024131,0.0000024073,0.0000024014,0.0000023967,0.0000023926, +0.0000023888,0.0000023857,0.0000023830,0.0000023799,0.0000023762, +0.0000023727,0.0000023715,0.0000023736,0.0000023783,0.0000023855, +0.0000023954,0.0000024067,0.0000024173,0.0000024252,0.0000024293, +0.0000024298,0.0000024272,0.0000024234,0.0000024199,0.0000024166, +0.0000024124,0.0000024078,0.0000024020,0.0000023964,0.0000023909, +0.0000023863,0.0000023823,0.0000023798,0.0000023785,0.0000023792, +0.0000023799,0.0000023802,0.0000023801,0.0000023810,0.0000023841, +0.0000023905,0.0000024010,0.0000024134,0.0000024244,0.0000024332, +0.0000024414,0.0000024510,0.0000024630,0.0000024803,0.0000025037, +0.0000025326,0.0000025598,0.0000025813,0.0000025998,0.0000026184, +0.0000026364,0.0000026501,0.0000026567,0.0000026533,0.0000026423, +0.0000026303,0.0000026215,0.0000026123,0.0000026013,0.0000025926, +0.0000025875,0.0000025778,0.0000025485,0.0000025159,0.0000025022, +0.0000024901,0.0000024834,0.0000024806,0.0000024733,0.0000024580, +0.0000024418,0.0000024340,0.0000024367,0.0000024588,0.0000024920, +0.0000025111,0.0000024983,0.0000025293,0.0000026034,0.0000026195, +0.0000026119,0.0000026066,0.0000026064,0.0000026080,0.0000026114, +0.0000026137,0.0000026140,0.0000026108,0.0000026038,0.0000025961, +0.0000025905,0.0000025882,0.0000025887,0.0000025892,0.0000025709, +0.0000025170,0.0000024701,0.0000024613,0.0000024629,0.0000024643, +0.0000024603,0.0000024512,0.0000024451,0.0000024462,0.0000024523, +0.0000024575,0.0000024621,0.0000024674,0.0000024738,0.0000024798, +0.0000024851,0.0000024890,0.0000024895,0.0000024899,0.0000024911, +0.0000024940,0.0000024984,0.0000025016,0.0000025044,0.0000025087, +0.0000025169,0.0000025260,0.0000025328,0.0000025367,0.0000025353, +0.0000025303,0.0000025244,0.0000025179,0.0000025140,0.0000025120, +0.0000025088,0.0000025030,0.0000024970,0.0000024957,0.0000024963, +0.0000024943,0.0000024877,0.0000024785,0.0000024700,0.0000024630, +0.0000024592,0.0000024605,0.0000024676,0.0000024793,0.0000024944, +0.0000025109,0.0000025226,0.0000025289,0.0000025374,0.0000025539, +0.0000025728,0.0000025847,0.0000025884,0.0000025880,0.0000025868, +0.0000025879,0.0000025936,0.0000026041,0.0000026187,0.0000026339, +0.0000026475,0.0000026591,0.0000026685,0.0000026771,0.0000026850, +0.0000026906,0.0000026895,0.0000026810,0.0000026685,0.0000026594, +0.0000026559,0.0000026531,0.0000026477,0.0000026409,0.0000026352, +0.0000026325,0.0000026341,0.0000026403,0.0000026506,0.0000026610, +0.0000026682,0.0000026717,0.0000026727,0.0000026705,0.0000026657, +0.0000026596,0.0000026535,0.0000026483,0.0000026433,0.0000026372, +0.0000026308,0.0000026251,0.0000026205,0.0000026164,0.0000026123, +0.0000026063,0.0000025978,0.0000025887,0.0000025822,0.0000025794, +0.0000025787,0.0000025780,0.0000025767,0.0000025747,0.0000025731, +0.0000025730,0.0000025735,0.0000025725,0.0000025701,0.0000025659, +0.0000025620,0.0000025587,0.0000025568,0.0000025565,0.0000025578, +0.0000025604,0.0000025635,0.0000025663,0.0000025679,0.0000025671, +0.0000025663,0.0000025654,0.0000025651,0.0000025655,0.0000025658, +0.0000025657,0.0000025650,0.0000025642,0.0000025638,0.0000025641, +0.0000025654,0.0000025675,0.0000025688,0.0000025684,0.0000025661, +0.0000025614,0.0000025555,0.0000025503,0.0000025404,0.0000025183, +0.0000024899,0.0000024716,0.0000024697,0.0000024686,0.0000024516, +0.0000024238,0.0000023989,0.0000023860,0.0000023812,0.0000023644, +0.0000023267,0.0000022847,0.0000022565,0.0000022445,0.0000022429, +0.0000022479,0.0000022632,0.0000022868,0.0000023145,0.0000023446, +0.0000023799,0.0000024180,0.0000024487,0.0000024779,0.0000025084, +0.0000025230,0.0000025234,0.0000025196,0.0000025109,0.0000025025, +0.0000025000,0.0000025035,0.0000025099,0.0000025156,0.0000025181, +0.0000025176,0.0000025168,0.0000025180,0.0000025236,0.0000025279, +0.0000025256,0.0000025186,0.0000025101,0.0000024986,0.0000024866, +0.0000024824,0.0000024843,0.0000024885,0.0000024884,0.0000024837, +0.0000024806,0.0000024815,0.0000024840,0.0000024856,0.0000024863, +0.0000024889,0.0000024943,0.0000025006,0.0000025053,0.0000025078, +0.0000025096,0.0000025132,0.0000025206,0.0000025302,0.0000025364, +0.0000025379,0.0000025415,0.0000025500,0.0000025544,0.0000025508, +0.0000025425,0.0000025362,0.0000025364,0.0000025447,0.0000025573, +0.0000025654,0.0000025663,0.0000025648,0.0000025608,0.0000025546, +0.0000025483,0.0000025426,0.0000025380,0.0000025356,0.0000025353, +0.0000025354,0.0000025351,0.0000025354,0.0000025370,0.0000025407, +0.0000025450,0.0000025488,0.0000025524,0.0000025566,0.0000025615, +0.0000025652,0.0000025660,0.0000025681,0.0000025760,0.0000025886, +0.0000026034,0.0000026190,0.0000026328,0.0000026409,0.0000026465, +0.0000026556,0.0000026650,0.0000026692,0.0000026677,0.0000026570, +0.0000026443,0.0000026457,0.0000026627,0.0000026804,0.0000026908, +0.0000027004,0.0000027109,0.0000027171,0.0000027207,0.0000027226, +0.0000027208,0.0000027153,0.0000027086,0.0000027024,0.0000026960, +0.0000026897,0.0000026843,0.0000026808,0.0000026804,0.0000026829, +0.0000026871,0.0000026914,0.0000026959,0.0000027017,0.0000027106, +0.0000027224,0.0000027346,0.0000027451,0.0000027526,0.0000027562, +0.0000027573,0.0000027582,0.0000027600,0.0000027627,0.0000027646, +0.0000027646,0.0000027627,0.0000027590,0.0000027549,0.0000027517, +0.0000027492,0.0000027468,0.0000027434,0.0000027391,0.0000027341, +0.0000027279,0.0000027216,0.0000027164,0.0000027126,0.0000027112, +0.0000027119,0.0000027135,0.0000027142,0.0000027136,0.0000027117, +0.0000027078,0.0000027051,0.0000027032,0.0000027006,0.0000026944, +0.0000026840,0.0000026714,0.0000026600,0.0000026538,0.0000026536, +0.0000026567,0.0000026609,0.0000026641,0.0000026661,0.0000026690, +0.0000026733,0.0000026773,0.0000026778,0.0000026707,0.0000026559, +0.0000026427,0.0000026384,0.0000026426,0.0000026511,0.0000026606, +0.0000026712,0.0000026799,0.0000026849,0.0000026881,0.0000026891, +0.0000026866,0.0000026773,0.0000026643,0.0000026542,0.0000026475, +0.0000026378,0.0000026242,0.0000026110,0.0000025982,0.0000025893, +0.0000025870,0.0000025841,0.0000025767,0.0000025683,0.0000025600, +0.0000025429,0.0000025150,0.0000024987,0.0000025031,0.0000025116, +0.0000025098,0.0000025026,0.0000024922,0.0000024749,0.0000024551, +0.0000024402,0.0000024306,0.0000024239,0.0000024204,0.0000024193, +0.0000024195,0.0000024210,0.0000024239,0.0000024264,0.0000024251, +0.0000024183,0.0000024113,0.0000024057,0.0000023964,0.0000023818, +0.0000023694,0.0000023663,0.0000023683,0.0000023729,0.0000023832, +0.0000024007,0.0000024174,0.0000024314,0.0000024383,0.0000024380, +0.0000024332,0.0000024338,0.0000024501,0.0000024750,0.0000024942, +0.0000025040,0.0000025080,0.0000025090,0.0000025077,0.0000025050, +0.0000024981,0.0000024871,0.0000024753,0.0000024698,0.0000024660, +0.0000024642,0.0000025007,0.0000025764,0.0000026329,0.0000026753, +0.0000027111,0.0000027204,0.0000027167,0.0000027186,0.0000027227, +0.0000027232,0.0000027155,0.0000027066,0.0000027058,0.0000027101, +0.0000027059,0.0000026869,0.0000026747,0.0000026674,0.0000026538, +0.0000026379,0.0000026247,0.0000026161,0.0000026110,0.0000026104, +0.0000026127,0.0000026155,0.0000026187,0.0000026229,0.0000026272, +0.0000026313,0.0000026357,0.0000026397,0.0000026408,0.0000026286, +0.0000025993,0.0000025743,0.0000025663,0.0000025595,0.0000025239, +0.0000024584,0.0000023985,0.0000023721,0.0000023647,0.0000023575, +0.0000023498,0.0000023428,0.0000023359,0.0000023288,0.0000023205, +0.0000023115,0.0000023042,0.0000022979,0.0000022938,0.0000022925, +0.0000022930,0.0000022952,0.0000022998,0.0000023055,0.0000023128, +0.0000023222,0.0000023323,0.0000023414,0.0000023474,0.0000023485, +0.0000023458,0.0000023411,0.0000023388,0.0000023400,0.0000023416, +0.0000023414,0.0000023412,0.0000023419,0.0000023429,0.0000023430, +0.0000023406,0.0000023335,0.0000023231,0.0000023138,0.0000023067, +0.0000023004,0.0000022950,0.0000022922,0.0000022972,0.0000023115, +0.0000023217,0.0000023227,0.0000023194,0.0000023123,0.0000023043, +0.0000022989,0.0000022976,0.0000022989,0.0000023007,0.0000023033, +0.0000023069,0.0000023102,0.0000023122,0.0000023122,0.0000023111, +0.0000023106,0.0000023114,0.0000023116,0.0000023108,0.0000023099, +0.0000023095,0.0000023106,0.0000023149,0.0000023213,0.0000023257, +0.0000023261,0.0000023223,0.0000023152,0.0000023075,0.0000023023, +0.0000023009,0.0000023022,0.0000023051,0.0000023082,0.0000023106, +0.0000023122,0.0000023139,0.0000023147,0.0000023136,0.0000023122, +0.0000023122,0.0000023132,0.0000023135,0.0000023128,0.0000023093, +0.0000023026,0.0000022939,0.0000022852,0.0000022786,0.0000022739, +0.0000022714,0.0000022711,0.0000022721,0.0000022730,0.0000022722, +0.0000022698,0.0000022666,0.0000022618,0.0000022544,0.0000022449, +0.0000022354,0.0000022342,0.0000022516,0.0000022778,0.0000022939, +0.0000023098,0.0000023331,0.0000023467,0.0000023471,0.0000023472, +0.0000023491,0.0000023498,0.0000023501,0.0000023481,0.0000023458, +0.0000023562,0.0000023842,0.0000024037,0.0000024046,0.0000023956, +0.0000023869,0.0000023845,0.0000023983,0.0000024324,0.0000024821, +0.0000025323,0.0000025480,0.0000025365,0.0000025001,0.0000024523, +0.0000024266,0.0000024246,0.0000024274,0.0000024289,0.0000024300, +0.0000024312,0.0000024349,0.0000024418,0.0000024496,0.0000024541, +0.0000024544,0.0000024503,0.0000024440,0.0000024388,0.0000024349, +0.0000024325,0.0000024315,0.0000024318,0.0000024326,0.0000024332, +0.0000024331,0.0000024322,0.0000024282,0.0000024228,0.0000024190, +0.0000024161,0.0000024157,0.0000024190,0.0000024245,0.0000024069, +0.0000024106,0.0000024145,0.0000024179,0.0000024198,0.0000024196, +0.0000024181,0.0000024153,0.0000024119,0.0000024084,0.0000024053, +0.0000024026,0.0000024002,0.0000023977,0.0000023940,0.0000023882, +0.0000023816,0.0000023759,0.0000023729,0.0000023719,0.0000023710, +0.0000023708,0.0000023718,0.0000023750,0.0000023796,0.0000023846, +0.0000023885,0.0000023896,0.0000023885,0.0000023862,0.0000023852, +0.0000023859,0.0000023881,0.0000023899,0.0000023904,0.0000023900, +0.0000023895,0.0000023900,0.0000023917,0.0000023936,0.0000023950, +0.0000023960,0.0000023966,0.0000023969,0.0000023971,0.0000023963, +0.0000023943,0.0000023913,0.0000023881,0.0000023849,0.0000023825, +0.0000023817,0.0000023819,0.0000023823,0.0000023833,0.0000023854, +0.0000023887,0.0000023936,0.0000023990,0.0000024036,0.0000024066, +0.0000024088,0.0000024096,0.0000024095,0.0000024115,0.0000024174, +0.0000024230,0.0000024258,0.0000024255,0.0000024200,0.0000024173, +0.0000024192,0.0000024205,0.0000024193,0.0000024165,0.0000024109, +0.0000024058,0.0000024039,0.0000024047,0.0000024073,0.0000024074, +0.0000024034,0.0000023972,0.0000023877,0.0000023811,0.0000023840, +0.0000023950,0.0000024116,0.0000024329,0.0000024536,0.0000024659, +0.0000024781,0.0000024934,0.0000025090,0.0000025226,0.0000025357, +0.0000025481,0.0000025570,0.0000025604,0.0000025602,0.0000025575, +0.0000025537,0.0000025516,0.0000025497,0.0000025466,0.0000025431, +0.0000025405,0.0000025404,0.0000025421,0.0000025450,0.0000025482, +0.0000025510,0.0000025530,0.0000025545,0.0000025560,0.0000025570, +0.0000025574,0.0000025578,0.0000025583,0.0000025578,0.0000025552, +0.0000025515,0.0000025498,0.0000025521,0.0000025567,0.0000025582, +0.0000025569,0.0000025565,0.0000025561,0.0000025530,0.0000025501, +0.0000025471,0.0000025406,0.0000025357,0.0000025372,0.0000025411, +0.0000025422,0.0000025410,0.0000025403,0.0000025405,0.0000025404, +0.0000025397,0.0000025364,0.0000025316,0.0000025260,0.0000025185, +0.0000025139,0.0000025143,0.0000025134,0.0000025071,0.0000024986, +0.0000024911,0.0000024855,0.0000024827,0.0000024822,0.0000024823, +0.0000024828,0.0000024861,0.0000024938,0.0000025039,0.0000025117, +0.0000025146,0.0000025123,0.0000025059,0.0000024978,0.0000024903, +0.0000024844,0.0000024812,0.0000024807,0.0000024823,0.0000024850, +0.0000024869,0.0000024865,0.0000024852,0.0000024842,0.0000024834, +0.0000024815,0.0000024782,0.0000024744,0.0000024709,0.0000024684, +0.0000024675,0.0000024681,0.0000024699,0.0000024720,0.0000024741, +0.0000024769,0.0000024810,0.0000024864,0.0000024926,0.0000024958, +0.0000024951,0.0000024901,0.0000024834,0.0000024810,0.0000024868, +0.0000024990,0.0000025121,0.0000025238,0.0000025335,0.0000025388, +0.0000025380,0.0000025319,0.0000025232,0.0000025153,0.0000025115, +0.0000025111,0.0000025080,0.0000024999,0.0000024952,0.0000024971, +0.0000025031,0.0000025077,0.0000025082,0.0000025039,0.0000024953, +0.0000024837,0.0000024713,0.0000024620,0.0000024579,0.0000024578, +0.0000024584,0.0000024579,0.0000024559,0.0000024545,0.0000024546, +0.0000024548,0.0000024531,0.0000024489,0.0000024436,0.0000024365, +0.0000024214,0.0000024003,0.0000023869,0.0000023854,0.0000023874, +0.0000023925,0.0000024013,0.0000024133,0.0000024287,0.0000024446, +0.0000024566,0.0000024628,0.0000024641,0.0000024634,0.0000024606, +0.0000024556,0.0000024534,0.0000024626,0.0000024934,0.0000025342, +0.0000025679,0.0000025879,0.0000025966,0.0000025982,0.0000025970, +0.0000025969,0.0000025984,0.0000025998,0.0000026006,0.0000026017, +0.0000026036,0.0000026057,0.0000026073,0.0000026088,0.0000026106, +0.0000026126,0.0000026141,0.0000026144,0.0000026127,0.0000026093, +0.0000026058,0.0000026037,0.0000026033,0.0000026044,0.0000026079, +0.0000026119,0.0000026134,0.0000026124,0.0000026096,0.0000026068, +0.0000026052,0.0000026057,0.0000026084,0.0000026119,0.0000026136, +0.0000026133,0.0000026096,0.0000026019,0.0000025909,0.0000025793, +0.0000025693,0.0000025628,0.0000025612,0.0000025627,0.0000025644, +0.0000025660,0.0000025678,0.0000025681,0.0000025667,0.0000025658, +0.0000025673,0.0000025694,0.0000025713,0.0000025720,0.0000025706, +0.0000025646,0.0000025540,0.0000025406,0.0000025304,0.0000025251, +0.0000025218,0.0000025193,0.0000025186,0.0000025173,0.0000025123, +0.0000025065,0.0000025020,0.0000025002,0.0000025028,0.0000025120, +0.0000025226,0.0000025309,0.0000025371,0.0000025374,0.0000025308, +0.0000025217,0.0000025154,0.0000025128,0.0000025120,0.0000025157, +0.0000025220,0.0000025278,0.0000025316,0.0000025324,0.0000025301, +0.0000025260,0.0000025232,0.0000025237,0.0000025275,0.0000025308, +0.0000025332,0.0000025342,0.0000025337,0.0000025295,0.0000025238, +0.0000025190,0.0000025168,0.0000025176,0.0000025216,0.0000025318, +0.0000025495,0.0000025582,0.0000025556,0.0000025455,0.0000025321, +0.0000025215,0.0000025183,0.0000025239,0.0000025403,0.0000025583, +0.0000025647,0.0000025546,0.0000025287,0.0000025039,0.0000024935, +0.0000024960,0.0000025070,0.0000025204,0.0000025348,0.0000025479, +0.0000025563,0.0000025614,0.0000025659,0.0000025694,0.0000025711, +0.0000025708,0.0000025677,0.0000025613,0.0000025550,0.0000025548, +0.0000025623,0.0000025730,0.0000025823,0.0000025888,0.0000025926, +0.0000025942,0.0000025938,0.0000025910,0.0000025853,0.0000025774, +0.0000025688,0.0000025600,0.0000025510,0.0000025432,0.0000025379, +0.0000025346,0.0000025318,0.0000025287,0.0000025251,0.0000025208, +0.0000025156,0.0000025094,0.0000025023,0.0000024947,0.0000024866, +0.0000024774,0.0000024656,0.0000024521,0.0000024411,0.0000024344, +0.0000024291,0.0000024238,0.0000024197,0.0000024177,0.0000024176, +0.0000024183,0.0000024186,0.0000024182,0.0000024173,0.0000024158, +0.0000024141,0.0000024126,0.0000024108,0.0000024086,0.0000024056, +0.0000024017,0.0000023973,0.0000023919,0.0000023860,0.0000023804, +0.0000023750,0.0000023701,0.0000023656,0.0000023619,0.0000023598, +0.0000023587,0.0000023580,0.0000023583,0.0000023605,0.0000023655, +0.0000023730,0.0000023822,0.0000023915,0.0000023993,0.0000024051, +0.0000024086,0.0000024102,0.0000024103,0.0000024097,0.0000024082, +0.0000024052,0.0000024020,0.0000023968,0.0000023933,0.0000023884, +0.0000023843,0.0000023810,0.0000023794,0.0000023779,0.0000023769, +0.0000023754,0.0000023737,0.0000023721,0.0000023718,0.0000023742, +0.0000023818,0.0000023943,0.0000024085,0.0000024203,0.0000024285, +0.0000024354,0.0000024438,0.0000024543,0.0000024688,0.0000024922, +0.0000025229,0.0000025542,0.0000025784,0.0000025962,0.0000026128, +0.0000026311,0.0000026482,0.0000026560,0.0000026512,0.0000026395, +0.0000026273,0.0000026169,0.0000026064,0.0000025972,0.0000025918, +0.0000025871,0.0000025674,0.0000025285,0.0000025053,0.0000024916, +0.0000024814,0.0000024777,0.0000024723,0.0000024556,0.0000024362, +0.0000024264,0.0000024257,0.0000024399,0.0000024732,0.0000025059, +0.0000025033,0.0000025041,0.0000025794,0.0000026173,0.0000026117, +0.0000026030,0.0000026010,0.0000026019,0.0000026042,0.0000026052, +0.0000026038,0.0000025993,0.0000025920,0.0000025853,0.0000025826, +0.0000025827,0.0000025794,0.0000025657,0.0000025317,0.0000024868, +0.0000024620,0.0000024599,0.0000024619,0.0000024642,0.0000024604, +0.0000024510,0.0000024434,0.0000024417,0.0000024452,0.0000024524, +0.0000024588,0.0000024631,0.0000024678,0.0000024723,0.0000024766, +0.0000024807,0.0000024813,0.0000024818,0.0000024826,0.0000024846, +0.0000024898,0.0000024953,0.0000024999,0.0000025037,0.0000025099, +0.0000025194,0.0000025284,0.0000025349,0.0000025354,0.0000025308, +0.0000025244,0.0000025168,0.0000025101,0.0000025068,0.0000025044, +0.0000025006,0.0000024949,0.0000024921,0.0000024921,0.0000024908, +0.0000024843,0.0000024739,0.0000024644,0.0000024568,0.0000024519, +0.0000024522,0.0000024588,0.0000024691,0.0000024802,0.0000024933, +0.0000025076,0.0000025192,0.0000025281,0.0000025404,0.0000025580, +0.0000025745,0.0000025839,0.0000025861,0.0000025842,0.0000025803, +0.0000025774,0.0000025780,0.0000025853,0.0000025980,0.0000026141, +0.0000026330,0.0000026499,0.0000026618,0.0000026715,0.0000026808, +0.0000026849,0.0000026816,0.0000026702,0.0000026587,0.0000026526, +0.0000026488,0.0000026414,0.0000026313,0.0000026225,0.0000026166, +0.0000026141,0.0000026146,0.0000026197,0.0000026285,0.0000026373, +0.0000026437,0.0000026473,0.0000026479,0.0000026457,0.0000026413, +0.0000026361,0.0000026313,0.0000026272,0.0000026226,0.0000026174, +0.0000026127,0.0000026088,0.0000026050,0.0000026001,0.0000025932, +0.0000025856,0.0000025801,0.0000025781,0.0000025776,0.0000025770, +0.0000025767,0.0000025763,0.0000025753,0.0000025743,0.0000025732, +0.0000025704,0.0000025657,0.0000025600,0.0000025552,0.0000025523, +0.0000025503,0.0000025489,0.0000025482,0.0000025484,0.0000025500, +0.0000025527,0.0000025557,0.0000025587,0.0000025618,0.0000025643, +0.0000025653,0.0000025648,0.0000025641,0.0000025640,0.0000025645, +0.0000025654,0.0000025654,0.0000025655,0.0000025660,0.0000025670, +0.0000025679,0.0000025677,0.0000025656,0.0000025624,0.0000025577, +0.0000025529,0.0000025474,0.0000025351,0.0000025116,0.0000024846, +0.0000024687,0.0000024675,0.0000024653,0.0000024472,0.0000024195, +0.0000023957,0.0000023838,0.0000023799,0.0000023639,0.0000023256, +0.0000022828,0.0000022559,0.0000022454,0.0000022422,0.0000022433, +0.0000022515,0.0000022702,0.0000022961,0.0000023246,0.0000023556, +0.0000023926,0.0000024285,0.0000024562,0.0000024861,0.0000025130, +0.0000025213,0.0000025198,0.0000025133,0.0000025057,0.0000025018, +0.0000025031,0.0000025083,0.0000025136,0.0000025164,0.0000025163, +0.0000025155,0.0000025172,0.0000025233,0.0000025287,0.0000025274, +0.0000025215,0.0000025143,0.0000025026,0.0000024884,0.0000024806, +0.0000024815,0.0000024862,0.0000024875,0.0000024841,0.0000024822, +0.0000024856,0.0000024929,0.0000024974,0.0000024982,0.0000024992, +0.0000025024,0.0000025063,0.0000025091,0.0000025096,0.0000025089, +0.0000025098,0.0000025154,0.0000025254,0.0000025342,0.0000025377, +0.0000025400,0.0000025474,0.0000025556,0.0000025560,0.0000025496, +0.0000025416,0.0000025378,0.0000025399,0.0000025493,0.0000025597, +0.0000025637,0.0000025629,0.0000025590,0.0000025541,0.0000025500, +0.0000025458,0.0000025412,0.0000025383,0.0000025380,0.0000025383, +0.0000025379,0.0000025369,0.0000025371,0.0000025396,0.0000025440, +0.0000025487,0.0000025526,0.0000025554,0.0000025582,0.0000025617, +0.0000025634,0.0000025623,0.0000025619,0.0000025666,0.0000025757, +0.0000025877,0.0000026042,0.0000026225,0.0000026346,0.0000026410, +0.0000026503,0.0000026627,0.0000026692,0.0000026685,0.0000026584, +0.0000026423,0.0000026392,0.0000026536,0.0000026735,0.0000026867, +0.0000026985,0.0000027123,0.0000027209,0.0000027232,0.0000027228, +0.0000027182,0.0000027107,0.0000027024,0.0000026949,0.0000026882, +0.0000026824,0.0000026772,0.0000026736,0.0000026728,0.0000026749, +0.0000026771,0.0000026776,0.0000026780,0.0000026808,0.0000026886, +0.0000027005,0.0000027137,0.0000027255,0.0000027352,0.0000027420, +0.0000027469,0.0000027519,0.0000027582,0.0000027634,0.0000027676, +0.0000027700,0.0000027693,0.0000027649,0.0000027584,0.0000027522, +0.0000027484,0.0000027469,0.0000027459,0.0000027450,0.0000027423, +0.0000027355,0.0000027258,0.0000027155,0.0000027060,0.0000026999, +0.0000026990,0.0000027014,0.0000027042,0.0000027058,0.0000027058, +0.0000027039,0.0000027000,0.0000026955,0.0000026896,0.0000026806, +0.0000026693,0.0000026587,0.0000026531,0.0000026530,0.0000026565, +0.0000026603,0.0000026631,0.0000026656,0.0000026690,0.0000026731, +0.0000026761,0.0000026769,0.0000026716,0.0000026572,0.0000026386, +0.0000026278,0.0000026288,0.0000026401,0.0000026516,0.0000026626, +0.0000026734,0.0000026816,0.0000026865,0.0000026895,0.0000026901, +0.0000026865,0.0000026769,0.0000026660,0.0000026574,0.0000026484, +0.0000026358,0.0000026224,0.0000026097,0.0000025982,0.0000025916, +0.0000025883,0.0000025831,0.0000025755,0.0000025670,0.0000025543, +0.0000025298,0.0000025043,0.0000024983,0.0000025061,0.0000025107, +0.0000025074,0.0000025008,0.0000024892,0.0000024713,0.0000024525, +0.0000024377,0.0000024282,0.0000024223,0.0000024192,0.0000024183, +0.0000024186,0.0000024194,0.0000024216,0.0000024241,0.0000024235, +0.0000024183,0.0000024118,0.0000024064,0.0000023984,0.0000023856, +0.0000023727,0.0000023669,0.0000023677,0.0000023707,0.0000023782, +0.0000023938,0.0000024104,0.0000024246,0.0000024340,0.0000024354, +0.0000024303,0.0000024235,0.0000024230,0.0000024374,0.0000024611, +0.0000024812,0.0000024932,0.0000024981,0.0000024980,0.0000024956, +0.0000024890,0.0000024797,0.0000024702,0.0000024643,0.0000024646, +0.0000024645,0.0000024771,0.0000025386,0.0000026064,0.0000026524, +0.0000026905,0.0000027147,0.0000027142,0.0000027113,0.0000027150, +0.0000027182,0.0000027164,0.0000027080,0.0000027021,0.0000027034, +0.0000027087,0.0000027058,0.0000026891,0.0000026775,0.0000026719, +0.0000026617,0.0000026483,0.0000026372,0.0000026293,0.0000026260, +0.0000026260,0.0000026275,0.0000026299,0.0000026344,0.0000026405, +0.0000026460,0.0000026493,0.0000026498,0.0000026494,0.0000026446, +0.0000026209,0.0000025890,0.0000025721,0.0000025670,0.0000025444, +0.0000024894,0.0000024229,0.0000023843,0.0000023725,0.0000023641, +0.0000023547,0.0000023477,0.0000023401,0.0000023314,0.0000023222, +0.0000023120,0.0000023042,0.0000022976,0.0000022904,0.0000022858, +0.0000022849,0.0000022856,0.0000022871,0.0000022914,0.0000022991, +0.0000023075,0.0000023154,0.0000023234,0.0000023308,0.0000023350, +0.0000023357,0.0000023346,0.0000023343,0.0000023353,0.0000023355, +0.0000023341,0.0000023326,0.0000023328,0.0000023340,0.0000023354, +0.0000023364,0.0000023348,0.0000023276,0.0000023181,0.0000023104, +0.0000023040,0.0000022977,0.0000022916,0.0000022874,0.0000022922, +0.0000023073,0.0000023168,0.0000023166,0.0000023115,0.0000023038, +0.0000022957,0.0000022917,0.0000022920,0.0000022938,0.0000022952, +0.0000022972,0.0000023001,0.0000023035,0.0000023066,0.0000023082, +0.0000023085,0.0000023078,0.0000023069,0.0000023058,0.0000023043, +0.0000023028,0.0000023014,0.0000023012,0.0000023034,0.0000023099, +0.0000023175,0.0000023216,0.0000023213,0.0000023169,0.0000023095, +0.0000023026,0.0000022987,0.0000022981,0.0000022991,0.0000023021, +0.0000023059,0.0000023090,0.0000023107,0.0000023108,0.0000023103, +0.0000023102,0.0000023113,0.0000023123,0.0000023119,0.0000023087, +0.0000023025,0.0000022944,0.0000022856,0.0000022772,0.0000022698, +0.0000022640,0.0000022607,0.0000022600,0.0000022611,0.0000022634, +0.0000022649,0.0000022640,0.0000022616,0.0000022583,0.0000022534, +0.0000022455,0.0000022351,0.0000022296,0.0000022415,0.0000022703, +0.0000022911,0.0000023075,0.0000023304,0.0000023454,0.0000023471, +0.0000023478,0.0000023499,0.0000023503,0.0000023503,0.0000023484, +0.0000023461,0.0000023563,0.0000023844,0.0000024049,0.0000024070, +0.0000023981,0.0000023881,0.0000023842,0.0000023926,0.0000024206, +0.0000024638,0.0000025138,0.0000025432,0.0000025415,0.0000025168, +0.0000024716,0.0000024348,0.0000024263,0.0000024277,0.0000024296, +0.0000024310,0.0000024315,0.0000024317,0.0000024321,0.0000024336, +0.0000024365,0.0000024397,0.0000024421,0.0000024422,0.0000024399, +0.0000024361,0.0000024320,0.0000024292,0.0000024281,0.0000024286, +0.0000024301,0.0000024322,0.0000024335,0.0000024323,0.0000024282, +0.0000024218,0.0000024156,0.0000024100,0.0000024064,0.0000024054, +0.0000023948,0.0000023940,0.0000023946,0.0000023964,0.0000023982, +0.0000023988,0.0000023989,0.0000023979,0.0000023965,0.0000023952, +0.0000023941,0.0000023930,0.0000023915,0.0000023892,0.0000023854, +0.0000023811,0.0000023780,0.0000023755,0.0000023744,0.0000023731, +0.0000023713,0.0000023700,0.0000023703,0.0000023736,0.0000023789, +0.0000023840,0.0000023872,0.0000023879,0.0000023872,0.0000023861, +0.0000023862,0.0000023874,0.0000023890,0.0000023895,0.0000023887, +0.0000023874,0.0000023870,0.0000023876,0.0000023890,0.0000023902, +0.0000023908,0.0000023910,0.0000023909,0.0000023908,0.0000023911, +0.0000023912,0.0000023908,0.0000023897,0.0000023877,0.0000023851, +0.0000023826,0.0000023816,0.0000023816,0.0000023816,0.0000023817, +0.0000023823,0.0000023840,0.0000023877,0.0000023924,0.0000023968, +0.0000024001,0.0000024029,0.0000024040,0.0000024037,0.0000024047, +0.0000024106,0.0000024173,0.0000024216,0.0000024225,0.0000024185, +0.0000024134,0.0000024138,0.0000024154,0.0000024147,0.0000024123, +0.0000024074,0.0000024012,0.0000023967,0.0000023957,0.0000023990, +0.0000024032,0.0000024024,0.0000023971,0.0000023875,0.0000023784, +0.0000023775,0.0000023863,0.0000024023,0.0000024228,0.0000024441, +0.0000024592,0.0000024709,0.0000024862,0.0000025039,0.0000025193, +0.0000025315,0.0000025427,0.0000025516,0.0000025550,0.0000025547, +0.0000025524,0.0000025509,0.0000025508,0.0000025506,0.0000025482, +0.0000025434,0.0000025393,0.0000025383,0.0000025394,0.0000025416, +0.0000025443,0.0000025471,0.0000025491,0.0000025501,0.0000025503, +0.0000025499,0.0000025490,0.0000025486,0.0000025494,0.0000025511, +0.0000025526,0.0000025529,0.0000025514,0.0000025505,0.0000025529, +0.0000025570,0.0000025579,0.0000025557,0.0000025546,0.0000025536, +0.0000025512,0.0000025492,0.0000025451,0.0000025366,0.0000025318, +0.0000025335,0.0000025357,0.0000025354,0.0000025354,0.0000025365, +0.0000025386,0.0000025403,0.0000025395,0.0000025353,0.0000025307, +0.0000025246,0.0000025173,0.0000025140,0.0000025139,0.0000025095, +0.0000024994,0.0000024895,0.0000024821,0.0000024771,0.0000024752, +0.0000024757,0.0000024776,0.0000024799,0.0000024827,0.0000024877, +0.0000024957,0.0000025045,0.0000025103,0.0000025108,0.0000025075, +0.0000025014,0.0000024948,0.0000024895,0.0000024866,0.0000024861, +0.0000024869,0.0000024875,0.0000024870,0.0000024846,0.0000024819, +0.0000024795,0.0000024767,0.0000024730,0.0000024697,0.0000024676, +0.0000024664,0.0000024660,0.0000024657,0.0000024654,0.0000024656, +0.0000024681,0.0000024731,0.0000024783,0.0000024843,0.0000024895, +0.0000024920,0.0000024906,0.0000024860,0.0000024800,0.0000024772, +0.0000024800,0.0000024909,0.0000025051,0.0000025179,0.0000025283, +0.0000025356,0.0000025378,0.0000025345,0.0000025273,0.0000025193, +0.0000025136,0.0000025123,0.0000025122,0.0000025078,0.0000025006, +0.0000024981,0.0000025005,0.0000025056,0.0000025088,0.0000025084, +0.0000025034,0.0000024935,0.0000024814,0.0000024700,0.0000024622, +0.0000024589,0.0000024588,0.0000024588,0.0000024571,0.0000024545, +0.0000024535,0.0000024541,0.0000024545,0.0000024522,0.0000024470, +0.0000024406,0.0000024308,0.0000024127,0.0000023921,0.0000023812, +0.0000023804,0.0000023819,0.0000023872,0.0000023978,0.0000024115, +0.0000024262,0.0000024400,0.0000024507,0.0000024573,0.0000024596, +0.0000024593,0.0000024578,0.0000024548,0.0000024532,0.0000024586, +0.0000024791,0.0000025112,0.0000025444,0.0000025703,0.0000025864, +0.0000025940,0.0000025959,0.0000025957,0.0000025961,0.0000025972, +0.0000025987,0.0000026003,0.0000026021,0.0000026040,0.0000026057, +0.0000026074,0.0000026086,0.0000026094,0.0000026101,0.0000026108, +0.0000026106,0.0000026083,0.0000026046,0.0000026019,0.0000026008, +0.0000026007,0.0000026032,0.0000026085,0.0000026122,0.0000026119, +0.0000026090,0.0000026061,0.0000026042,0.0000026042,0.0000026066, +0.0000026101,0.0000026117,0.0000026105,0.0000026055,0.0000025961, +0.0000025833,0.0000025700,0.0000025588,0.0000025518,0.0000025501, +0.0000025514,0.0000025534,0.0000025557,0.0000025583,0.0000025595, +0.0000025581,0.0000025565,0.0000025561,0.0000025563,0.0000025568, +0.0000025570,0.0000025562,0.0000025508,0.0000025413,0.0000025317, +0.0000025260,0.0000025237,0.0000025209,0.0000025179,0.0000025171, +0.0000025168,0.0000025126,0.0000025064,0.0000025010,0.0000024969, +0.0000024953,0.0000024997,0.0000025108,0.0000025215,0.0000025285, +0.0000025329,0.0000025323,0.0000025275,0.0000025215,0.0000025170, +0.0000025155,0.0000025172,0.0000025217,0.0000025275,0.0000025331, +0.0000025372,0.0000025379,0.0000025342,0.0000025266,0.0000025202, +0.0000025183,0.0000025186,0.0000025210,0.0000025229,0.0000025247, +0.0000025248,0.0000025203,0.0000025136,0.0000025099,0.0000025094, +0.0000025115,0.0000025192,0.0000025351,0.0000025526,0.0000025577, +0.0000025537,0.0000025424,0.0000025297,0.0000025209,0.0000025204, +0.0000025287,0.0000025445,0.0000025604,0.0000025664,0.0000025568, +0.0000025334,0.0000025116,0.0000025051,0.0000025089,0.0000025206, +0.0000025343,0.0000025488,0.0000025610,0.0000025683,0.0000025725, +0.0000025751,0.0000025759,0.0000025752,0.0000025735,0.0000025702, +0.0000025650,0.0000025602,0.0000025592,0.0000025631,0.0000025699, +0.0000025772,0.0000025833,0.0000025875,0.0000025894,0.0000025894, +0.0000025864,0.0000025797,0.0000025703,0.0000025594,0.0000025479, +0.0000025380,0.0000025319,0.0000025288,0.0000025261,0.0000025215, +0.0000025137,0.0000025029,0.0000024911,0.0000024801,0.0000024706, +0.0000024618,0.0000024523,0.0000024424,0.0000024321,0.0000024215, +0.0000024135,0.0000024110,0.0000024119,0.0000024127,0.0000024126, +0.0000024123,0.0000024116,0.0000024098,0.0000024070,0.0000024036, +0.0000024003,0.0000023971,0.0000023942,0.0000023914,0.0000023890, +0.0000023874,0.0000023862,0.0000023851,0.0000023843,0.0000023834, +0.0000023816,0.0000023796,0.0000023770,0.0000023725,0.0000023662, +0.0000023594,0.0000023545,0.0000023512,0.0000023490,0.0000023473, +0.0000023468,0.0000023474,0.0000023490,0.0000023516,0.0000023556, +0.0000023610,0.0000023669,0.0000023727,0.0000023787,0.0000023848, +0.0000023908,0.0000023955,0.0000023978,0.0000023974,0.0000023952, +0.0000023921,0.0000023891,0.0000023864,0.0000023847,0.0000023828, +0.0000023825,0.0000023807,0.0000023784,0.0000023756,0.0000023723, +0.0000023698,0.0000023672,0.0000023657,0.0000023675,0.0000023748, +0.0000023878,0.0000024021,0.0000024142,0.0000024228,0.0000024306, +0.0000024381,0.0000024472,0.0000024613,0.0000024853,0.0000025185, +0.0000025516,0.0000025757,0.0000025917,0.0000026077,0.0000026292, +0.0000026477,0.0000026544,0.0000026488,0.0000026356,0.0000026225, +0.0000026112,0.0000026014,0.0000025948,0.0000025913,0.0000025813, +0.0000025453,0.0000025116,0.0000024944,0.0000024788,0.0000024737, +0.0000024705,0.0000024546,0.0000024319,0.0000024188,0.0000024176, +0.0000024239,0.0000024519,0.0000024908,0.0000025067,0.0000024950, +0.0000025459,0.0000026065,0.0000026099,0.0000026014,0.0000025966, +0.0000025959,0.0000025962,0.0000025955,0.0000025934,0.0000025900, +0.0000025848,0.0000025782,0.0000025717,0.0000025623,0.0000025436, +0.0000025154,0.0000024842,0.0000024628,0.0000024580,0.0000024588, +0.0000024603,0.0000024617,0.0000024583,0.0000024494,0.0000024418, +0.0000024382,0.0000024389,0.0000024464,0.0000024548,0.0000024591, +0.0000024631,0.0000024669,0.0000024701,0.0000024735,0.0000024735, +0.0000024731,0.0000024735,0.0000024756,0.0000024812,0.0000024882, +0.0000024944,0.0000024989,0.0000025043,0.0000025130,0.0000025225, +0.0000025308,0.0000025339,0.0000025307,0.0000025237,0.0000025159, +0.0000025076,0.0000025024,0.0000024995,0.0000024966,0.0000024923, +0.0000024884,0.0000024874,0.0000024863,0.0000024804,0.0000024698, +0.0000024594,0.0000024508,0.0000024452,0.0000024452,0.0000024510, +0.0000024603,0.0000024696,0.0000024788,0.0000024904,0.0000025044, +0.0000025180,0.0000025305,0.0000025445,0.0000025602,0.0000025732, +0.0000025799,0.0000025815,0.0000025789,0.0000025729,0.0000025668, +0.0000025654,0.0000025702,0.0000025812,0.0000025994,0.0000026225, +0.0000026428,0.0000026566,0.0000026678,0.0000026761,0.0000026778, +0.0000026705,0.0000026590,0.0000026510,0.0000026453,0.0000026361, +0.0000026244,0.0000026147,0.0000026088,0.0000026058,0.0000026045, +0.0000026047,0.0000026078,0.0000026130,0.0000026178,0.0000026208, +0.0000026216,0.0000026208,0.0000026183,0.0000026152,0.0000026122, +0.0000026102,0.0000026079,0.0000026042,0.0000025997,0.0000025951, +0.0000025909,0.0000025870,0.0000025826,0.0000025794,0.0000025784, +0.0000025771,0.0000025752,0.0000025739,0.0000025739,0.0000025743, +0.0000025738,0.0000025719,0.0000025679,0.0000025620,0.0000025560, +0.0000025511,0.0000025484,0.0000025473,0.0000025468,0.0000025461, +0.0000025450,0.0000025441,0.0000025440,0.0000025448,0.0000025461, +0.0000025474,0.0000025495,0.0000025529,0.0000025566,0.0000025592, +0.0000025601,0.0000025600,0.0000025598,0.0000025597,0.0000025599, +0.0000025601,0.0000025602,0.0000025601,0.0000025597,0.0000025591, +0.0000025584,0.0000025567,0.0000025535,0.0000025493,0.0000025423, +0.0000025271,0.0000025029,0.0000024787,0.0000024669,0.0000024658, +0.0000024606,0.0000024405,0.0000024133,0.0000023915,0.0000023813, +0.0000023781,0.0000023614,0.0000023219,0.0000022792,0.0000022542, +0.0000022453,0.0000022420,0.0000022415,0.0000022454,0.0000022571, +0.0000022789,0.0000023065,0.0000023349,0.0000023668,0.0000024041, +0.0000024367,0.0000024628,0.0000024929,0.0000025150,0.0000025190, +0.0000025153,0.0000025084,0.0000025041,0.0000025037,0.0000025067, +0.0000025117,0.0000025149,0.0000025153,0.0000025148,0.0000025166, +0.0000025221,0.0000025267,0.0000025255,0.0000025211,0.0000025152, +0.0000025037,0.0000024891,0.0000024806,0.0000024798,0.0000024832, +0.0000024859,0.0000024841,0.0000024817,0.0000024863,0.0000024985, +0.0000025074,0.0000025095,0.0000025107,0.0000025136,0.0000025158, +0.0000025157,0.0000025136,0.0000025110,0.0000025099,0.0000025117, +0.0000025199,0.0000025304,0.0000025363,0.0000025386,0.0000025441, +0.0000025538,0.0000025587,0.0000025558,0.0000025482,0.0000025413, +0.0000025394,0.0000025433,0.0000025523,0.0000025601,0.0000025616, +0.0000025586,0.0000025534,0.0000025497,0.0000025476,0.0000025449, +0.0000025421,0.0000025413,0.0000025416,0.0000025413,0.0000025404, +0.0000025403,0.0000025416,0.0000025441,0.0000025474,0.0000025517, +0.0000025557,0.0000025584,0.0000025606,0.0000025630,0.0000025634, +0.0000025609,0.0000025585,0.0000025606,0.0000025665,0.0000025753, +0.0000025911,0.0000026126,0.0000026284,0.0000026363,0.0000026464, +0.0000026606,0.0000026689,0.0000026682,0.0000026588,0.0000026414, +0.0000026340,0.0000026450,0.0000026664,0.0000026843,0.0000026982, +0.0000027125,0.0000027216,0.0000027225,0.0000027187,0.0000027123, +0.0000027044,0.0000026954,0.0000026871,0.0000026808,0.0000026758, +0.0000026707,0.0000026666,0.0000026654,0.0000026674,0.0000026687, +0.0000026683,0.0000026680,0.0000026691,0.0000026731,0.0000026791, +0.0000026864,0.0000026953,0.0000027054,0.0000027156,0.0000027263, +0.0000027394,0.0000027522,0.0000027620,0.0000027685,0.0000027715, +0.0000027716,0.0000027683,0.0000027622,0.0000027544,0.0000027483, +0.0000027455,0.0000027447,0.0000027448,0.0000027438,0.0000027386, +0.0000027289,0.0000027173,0.0000027048,0.0000026952,0.0000026902, +0.0000026890,0.0000026898,0.0000026910,0.0000026916,0.0000026906, +0.0000026868,0.0000026808,0.0000026733,0.0000026648,0.0000026569, +0.0000026523,0.0000026525,0.0000026557,0.0000026599,0.0000026625, +0.0000026644,0.0000026675,0.0000026719,0.0000026754,0.0000026759, +0.0000026700,0.0000026566,0.0000026378,0.0000026202,0.0000026146, +0.0000026236,0.0000026404,0.0000026537,0.0000026645,0.0000026750, +0.0000026824,0.0000026868,0.0000026895,0.0000026893,0.0000026848, +0.0000026770,0.0000026695,0.0000026615,0.0000026489,0.0000026337, +0.0000026204,0.0000026081,0.0000025987,0.0000025934,0.0000025882, +0.0000025821,0.0000025742,0.0000025629,0.0000025437,0.0000025160, +0.0000024981,0.0000024999,0.0000025067,0.0000025076,0.0000025043, +0.0000024980,0.0000024853,0.0000024680,0.0000024508,0.0000024367, +0.0000024278,0.0000024225,0.0000024187,0.0000024170,0.0000024170, +0.0000024184,0.0000024210,0.0000024233,0.0000024231,0.0000024188, +0.0000024126,0.0000024071,0.0000024002,0.0000023895,0.0000023776, +0.0000023697,0.0000023686,0.0000023698,0.0000023734,0.0000023856, +0.0000024021,0.0000024155,0.0000024255,0.0000024303,0.0000024276, +0.0000024198,0.0000024128,0.0000024136,0.0000024249,0.0000024414, +0.0000024559,0.0000024651,0.0000024673,0.0000024666,0.0000024618, +0.0000024563,0.0000024548,0.0000024561,0.0000024605,0.0000024632, +0.0000024625,0.0000025004,0.0000025760,0.0000026288,0.0000026670, +0.0000026998,0.0000027118,0.0000027063,0.0000027059,0.0000027106, +0.0000027118,0.0000027083,0.0000027016,0.0000026996,0.0000027029, +0.0000027098,0.0000027088,0.0000026963,0.0000026832,0.0000026760, +0.0000026703,0.0000026634,0.0000026558,0.0000026505,0.0000026482, +0.0000026484,0.0000026500,0.0000026539,0.0000026600,0.0000026658, +0.0000026685,0.0000026653,0.0000026586,0.0000026524,0.0000026348, +0.0000026027,0.0000025792,0.0000025712,0.0000025588,0.0000025160, +0.0000024492,0.0000023990,0.0000023806,0.0000023716,0.0000023609, +0.0000023526,0.0000023456,0.0000023358,0.0000023250,0.0000023139, +0.0000023047,0.0000022982,0.0000022908,0.0000022822,0.0000022773, +0.0000022773,0.0000022791,0.0000022810,0.0000022851,0.0000022936, +0.0000023028,0.0000023104,0.0000023177,0.0000023241,0.0000023281, +0.0000023298,0.0000023310,0.0000023316,0.0000023303,0.0000023271, +0.0000023244,0.0000023241,0.0000023256,0.0000023279,0.0000023292, +0.0000023290,0.0000023263,0.0000023205,0.0000023143,0.0000023087, +0.0000023025,0.0000022955,0.0000022890,0.0000022840,0.0000022881, +0.0000023021,0.0000023107,0.0000023093,0.0000023036,0.0000022962, +0.0000022895,0.0000022874,0.0000022883,0.0000022892,0.0000022896, +0.0000022907,0.0000022932,0.0000022968,0.0000022999,0.0000023024, +0.0000023042,0.0000023043,0.0000023020,0.0000022987,0.0000022961, +0.0000022948,0.0000022934,0.0000022924,0.0000022929,0.0000022973, +0.0000023055,0.0000023136,0.0000023174,0.0000023167,0.0000023126, +0.0000023066,0.0000023012,0.0000022982,0.0000022980,0.0000023002, +0.0000023038,0.0000023065,0.0000023076,0.0000023078,0.0000023082, +0.0000023091,0.0000023098,0.0000023094,0.0000023065,0.0000023009, +0.0000022937,0.0000022865,0.0000022795,0.0000022717,0.0000022633, +0.0000022555,0.0000022498,0.0000022471,0.0000022469,0.0000022495, +0.0000022540,0.0000022566,0.0000022562,0.0000022541,0.0000022509, +0.0000022445,0.0000022354,0.0000022286,0.0000022350,0.0000022619, +0.0000022870,0.0000023056,0.0000023286,0.0000023438,0.0000023460, +0.0000023478,0.0000023501,0.0000023503,0.0000023501,0.0000023485, +0.0000023464,0.0000023565,0.0000023844,0.0000024056,0.0000024085, +0.0000024003,0.0000023902,0.0000023824,0.0000023856,0.0000024095, +0.0000024469,0.0000024924,0.0000025311,0.0000025410,0.0000025306, +0.0000024952,0.0000024517,0.0000024301,0.0000024284,0.0000024297, +0.0000024309,0.0000024319,0.0000024323,0.0000024319,0.0000024313, +0.0000024309,0.0000024311,0.0000024323,0.0000024338,0.0000024343, +0.0000024340,0.0000024319,0.0000024294,0.0000024275,0.0000024265, +0.0000024265,0.0000024283,0.0000024308,0.0000024317,0.0000024304, +0.0000024257,0.0000024183,0.0000024099,0.0000024026,0.0000023975, +0.0000023904,0.0000023872,0.0000023854,0.0000023853,0.0000023860, +0.0000023870,0.0000023883,0.0000023890,0.0000023894,0.0000023892, +0.0000023884,0.0000023874,0.0000023867,0.0000023855,0.0000023842, +0.0000023827,0.0000023816,0.0000023808,0.0000023803,0.0000023783, +0.0000023739,0.0000023700,0.0000023692,0.0000023722,0.0000023781, +0.0000023834,0.0000023851,0.0000023847,0.0000023844,0.0000023851, +0.0000023865,0.0000023885,0.0000023896,0.0000023893,0.0000023883, +0.0000023870,0.0000023869,0.0000023877,0.0000023888,0.0000023895, +0.0000023895,0.0000023890,0.0000023883,0.0000023874,0.0000023868, +0.0000023863,0.0000023857,0.0000023851,0.0000023842,0.0000023826, +0.0000023808,0.0000023799,0.0000023795,0.0000023791,0.0000023786, +0.0000023780,0.0000023784,0.0000023812,0.0000023861,0.0000023911, +0.0000023951,0.0000023982,0.0000023994,0.0000023990,0.0000023993, +0.0000024045,0.0000024120,0.0000024178,0.0000024200,0.0000024174, +0.0000024106,0.0000024083,0.0000024096,0.0000024098,0.0000024080, +0.0000024045,0.0000023988,0.0000023923,0.0000023880,0.0000023894, +0.0000023961,0.0000023996,0.0000023973,0.0000023882,0.0000023774, +0.0000023730,0.0000023778,0.0000023919,0.0000024122,0.0000024331, +0.0000024512,0.0000024632,0.0000024769,0.0000024954,0.0000025138, +0.0000025264,0.0000025358,0.0000025444,0.0000025488,0.0000025488, +0.0000025473,0.0000025474,0.0000025491,0.0000025500,0.0000025478, +0.0000025424,0.0000025374,0.0000025359,0.0000025360,0.0000025363, +0.0000025372,0.0000025388,0.0000025402,0.0000025407,0.0000025406, +0.0000025402,0.0000025395,0.0000025386,0.0000025382,0.0000025392, +0.0000025429,0.0000025479,0.0000025514,0.0000025516,0.0000025508, +0.0000025528,0.0000025564,0.0000025562,0.0000025534,0.0000025525, +0.0000025521,0.0000025509,0.0000025488,0.0000025424,0.0000025326, +0.0000025282,0.0000025290,0.0000025288,0.0000025280,0.0000025292, +0.0000025326,0.0000025370,0.0000025400,0.0000025384,0.0000025341, +0.0000025296,0.0000025225,0.0000025157,0.0000025133,0.0000025106, +0.0000025013,0.0000024891,0.0000024808,0.0000024753,0.0000024712, +0.0000024689,0.0000024689,0.0000024710,0.0000024750,0.0000024794, +0.0000024835,0.0000024890,0.0000024963,0.0000025029,0.0000025064, +0.0000025059,0.0000025026,0.0000024978,0.0000024934,0.0000024901, +0.0000024882,0.0000024873,0.0000024862,0.0000024839,0.0000024804, +0.0000024769,0.0000024731,0.0000024693,0.0000024667,0.0000024658, +0.0000024655,0.0000024645,0.0000024630,0.0000024618,0.0000024615, +0.0000024642,0.0000024704,0.0000024774,0.0000024833,0.0000024872, +0.0000024886,0.0000024867,0.0000024822,0.0000024772,0.0000024743, +0.0000024754,0.0000024832,0.0000024966,0.0000025104,0.0000025220, +0.0000025309,0.0000025354,0.0000025347,0.0000025299,0.0000025234, +0.0000025179,0.0000025154,0.0000025152,0.0000025136,0.0000025077, +0.0000025015,0.0000025003,0.0000025024,0.0000025059,0.0000025077, +0.0000025065,0.0000025001,0.0000024896,0.0000024782,0.0000024688, +0.0000024627,0.0000024601,0.0000024596,0.0000024590,0.0000024567, +0.0000024542,0.0000024537,0.0000024545,0.0000024546,0.0000024514, +0.0000024452,0.0000024374,0.0000024245,0.0000024043,0.0000023856, +0.0000023773,0.0000023762,0.0000023775,0.0000023841,0.0000023969, +0.0000024115,0.0000024244,0.0000024351,0.0000024441,0.0000024509, +0.0000024542,0.0000024546,0.0000024538,0.0000024529,0.0000024525, +0.0000024566,0.0000024706,0.0000024937,0.0000025209,0.0000025475, +0.0000025687,0.0000025824,0.0000025904,0.0000025946,0.0000025956, +0.0000025957,0.0000025964,0.0000025981,0.0000026003,0.0000026025, +0.0000026043,0.0000026057,0.0000026061,0.0000026058,0.0000026053, +0.0000026057,0.0000026064,0.0000026052,0.0000026015,0.0000025981, +0.0000025966,0.0000025963,0.0000025984,0.0000026040,0.0000026092, +0.0000026102,0.0000026078,0.0000026041,0.0000026014,0.0000026011, +0.0000026033,0.0000026070,0.0000026087,0.0000026066,0.0000026005, +0.0000025904,0.0000025773,0.0000025628,0.0000025496,0.0000025413, +0.0000025393,0.0000025407,0.0000025431,0.0000025463,0.0000025499, +0.0000025515,0.0000025498,0.0000025471,0.0000025442,0.0000025421, +0.0000025409,0.0000025409,0.0000025408,0.0000025381,0.0000025331, +0.0000025283,0.0000025259,0.0000025242,0.0000025214,0.0000025177, +0.0000025158,0.0000025151,0.0000025123,0.0000025074,0.0000025017, +0.0000024966,0.0000024925,0.0000024922,0.0000024988,0.0000025111, +0.0000025209,0.0000025257,0.0000025279,0.0000025274,0.0000025247, +0.0000025209,0.0000025187,0.0000025200,0.0000025241,0.0000025294, +0.0000025349,0.0000025396,0.0000025428,0.0000025431,0.0000025383, +0.0000025295,0.0000025212,0.0000025166,0.0000025146,0.0000025124, +0.0000025121,0.0000025136,0.0000025136,0.0000025091,0.0000025040, +0.0000025031,0.0000025036,0.0000025085,0.0000025207,0.0000025387, +0.0000025538,0.0000025564,0.0000025497,0.0000025391,0.0000025271, +0.0000025212,0.0000025235,0.0000025327,0.0000025466,0.0000025602, +0.0000025634,0.0000025546,0.0000025391,0.0000025263,0.0000025229, +0.0000025270,0.0000025372,0.0000025511,0.0000025648,0.0000025746, +0.0000025803,0.0000025832,0.0000025837,0.0000025823,0.0000025794, +0.0000025762,0.0000025732,0.0000025698,0.0000025661,0.0000025644, +0.0000025659,0.0000025696,0.0000025731,0.0000025761,0.0000025788, +0.0000025807,0.0000025806,0.0000025766,0.0000025687,0.0000025595, +0.0000025498,0.0000025404,0.0000025329,0.0000025270,0.0000025193, +0.0000025073,0.0000024917,0.0000024751,0.0000024603,0.0000024493, +0.0000024420,0.0000024360,0.0000024292,0.0000024216,0.0000024147, +0.0000024092,0.0000024056,0.0000024050,0.0000024072,0.0000024088, +0.0000024085,0.0000024065,0.0000024037,0.0000024003,0.0000023960, +0.0000023909,0.0000023863,0.0000023826,0.0000023794,0.0000023762, +0.0000023727,0.0000023692,0.0000023666,0.0000023650,0.0000023643, +0.0000023638,0.0000023636,0.0000023638,0.0000023645,0.0000023653, +0.0000023650,0.0000023629,0.0000023587,0.0000023533,0.0000023479, +0.0000023427,0.0000023391,0.0000023378,0.0000023384,0.0000023399, +0.0000023408,0.0000023412,0.0000023423,0.0000023436,0.0000023450, +0.0000023473,0.0000023519,0.0000023602,0.0000023701,0.0000023785, +0.0000023826,0.0000023823,0.0000023799,0.0000023772,0.0000023760, +0.0000023764,0.0000023786,0.0000023803,0.0000023819,0.0000023810, +0.0000023798,0.0000023763,0.0000023720,0.0000023682,0.0000023645, +0.0000023627,0.0000023635,0.0000023702,0.0000023815,0.0000023947, +0.0000024071,0.0000024181,0.0000024267,0.0000024339,0.0000024428, +0.0000024585,0.0000024840,0.0000025173,0.0000025497,0.0000025728, +0.0000025881,0.0000026061,0.0000026287,0.0000026479,0.0000026515, +0.0000026446,0.0000026302,0.0000026168,0.0000026060,0.0000025978, +0.0000025933,0.0000025892,0.0000025620,0.0000025207,0.0000024988, +0.0000024790,0.0000024696,0.0000024682,0.0000024541,0.0000024289, +0.0000024128,0.0000024112,0.0000024139,0.0000024309,0.0000024694, +0.0000025027,0.0000024945,0.0000025125,0.0000025869,0.0000026097, +0.0000026022,0.0000025947,0.0000025917,0.0000025894,0.0000025871, +0.0000025862,0.0000025848,0.0000025759,0.0000025581,0.0000025367, +0.0000025142,0.0000024909,0.0000024707,0.0000024602,0.0000024577, +0.0000024578,0.0000024570,0.0000024562,0.0000024552,0.0000024517, +0.0000024453,0.0000024387,0.0000024341,0.0000024337,0.0000024410, +0.0000024504,0.0000024553,0.0000024590,0.0000024627,0.0000024661, +0.0000024689,0.0000024689,0.0000024673,0.0000024665,0.0000024678, +0.0000024734,0.0000024811,0.0000024886,0.0000024941,0.0000024997, +0.0000025078,0.0000025170,0.0000025258,0.0000025308,0.0000025292, +0.0000025223,0.0000025146,0.0000025061,0.0000024994,0.0000024954, +0.0000024928,0.0000024899,0.0000024856,0.0000024833,0.0000024816, +0.0000024764,0.0000024666,0.0000024559,0.0000024462,0.0000024398, +0.0000024397,0.0000024451,0.0000024525,0.0000024606,0.0000024685, +0.0000024765,0.0000024875,0.0000025026,0.0000025189,0.0000025338, +0.0000025474,0.0000025602,0.0000025700,0.0000025749,0.0000025752, +0.0000025709,0.0000025636,0.0000025578,0.0000025562,0.0000025601, +0.0000025715,0.0000025923,0.0000026180,0.0000026395,0.0000026538, +0.0000026642,0.0000026699,0.0000026673,0.0000026583,0.0000026501, +0.0000026426,0.0000026312,0.0000026183,0.0000026090,0.0000026046, +0.0000026033,0.0000026028,0.0000026022,0.0000026021,0.0000026036, +0.0000026053,0.0000026058,0.0000026047,0.0000026026,0.0000026001, +0.0000025976,0.0000025953,0.0000025940,0.0000025933,0.0000025912, +0.0000025876,0.0000025833,0.0000025807,0.0000025800,0.0000025804, +0.0000025798,0.0000025784,0.0000025748,0.0000025708,0.0000025694, +0.0000025698,0.0000025702,0.0000025691,0.0000025658,0.0000025609, +0.0000025557,0.0000025517,0.0000025494,0.0000025481,0.0000025475, +0.0000025465,0.0000025459,0.0000025449,0.0000025434,0.0000025425, +0.0000025429,0.0000025438,0.0000025443,0.0000025444,0.0000025452, +0.0000025474,0.0000025502,0.0000025526,0.0000025540,0.0000025546, +0.0000025545,0.0000025537,0.0000025528,0.0000025521,0.0000025519, +0.0000025519,0.0000025522,0.0000025523,0.0000025511,0.0000025484, +0.0000025439,0.0000025342,0.0000025156,0.0000024917,0.0000024726, +0.0000024658,0.0000024655,0.0000024561,0.0000024325,0.0000024067, +0.0000023876,0.0000023793,0.0000023756,0.0000023563,0.0000023154, +0.0000022748,0.0000022527,0.0000022438,0.0000022388,0.0000022380, +0.0000022421,0.0000022496,0.0000022644,0.0000022891,0.0000023173, +0.0000023450,0.0000023773,0.0000024136,0.0000024426,0.0000024684, +0.0000024977,0.0000025145,0.0000025158,0.0000025113,0.0000025056, +0.0000025044,0.0000025061,0.0000025099,0.0000025135,0.0000025147, +0.0000025148,0.0000025165,0.0000025200,0.0000025216,0.0000025202, +0.0000025175,0.0000025129,0.0000025017,0.0000024876,0.0000024798, +0.0000024785,0.0000024801,0.0000024833,0.0000024834,0.0000024801, +0.0000024835,0.0000024983,0.0000025124,0.0000025176,0.0000025189, +0.0000025210,0.0000025224,0.0000025212,0.0000025176,0.0000025133, +0.0000025103,0.0000025104,0.0000025153,0.0000025252,0.0000025335, +0.0000025369,0.0000025405,0.0000025496,0.0000025585,0.0000025599, +0.0000025549,0.0000025472,0.0000025420,0.0000025415,0.0000025457, +0.0000025534,0.0000025588,0.0000025581,0.0000025536,0.0000025490, +0.0000025473,0.0000025467,0.0000025453,0.0000025447,0.0000025450, +0.0000025448,0.0000025441,0.0000025442,0.0000025459,0.0000025479, +0.0000025492,0.0000025506,0.0000025534,0.0000025570,0.0000025599, +0.0000025628,0.0000025647,0.0000025643,0.0000025605,0.0000025568, +0.0000025570,0.0000025611,0.0000025681,0.0000025824,0.0000026041, +0.0000026224,0.0000026326,0.0000026425,0.0000026570,0.0000026673, +0.0000026671,0.0000026585,0.0000026422,0.0000026327,0.0000026377, +0.0000026598,0.0000026824,0.0000026982,0.0000027104,0.0000027182, +0.0000027182,0.0000027129,0.0000027057,0.0000026977,0.0000026882, +0.0000026794,0.0000026735,0.0000026691,0.0000026637,0.0000026590, +0.0000026576,0.0000026595,0.0000026609,0.0000026618,0.0000026628, +0.0000026638,0.0000026642,0.0000026639,0.0000026645,0.0000026686, +0.0000026766,0.0000026878,0.0000027026,0.0000027199,0.0000027365, +0.0000027500,0.0000027600,0.0000027665,0.0000027688,0.0000027680, +0.0000027632,0.0000027570,0.0000027502,0.0000027450,0.0000027420, +0.0000027412,0.0000027408,0.0000027363,0.0000027278,0.0000027173, +0.0000027056,0.0000026958,0.0000026889,0.0000026847,0.0000026810, +0.0000026795,0.0000026786,0.0000026768,0.0000026727,0.0000026671, +0.0000026611,0.0000026559,0.0000026535,0.0000026528,0.0000026558, +0.0000026590,0.0000026612,0.0000026629,0.0000026654,0.0000026693, +0.0000026730,0.0000026745,0.0000026677,0.0000026529,0.0000026359, +0.0000026188,0.0000026055,0.0000026065,0.0000026242,0.0000026439, +0.0000026557,0.0000026661,0.0000026762,0.0000026823,0.0000026857, +0.0000026872,0.0000026858,0.0000026821,0.0000026782,0.0000026739, +0.0000026647,0.0000026489,0.0000026323,0.0000026189,0.0000026078, +0.0000025999,0.0000025936,0.0000025874,0.0000025807,0.0000025706, +0.0000025545,0.0000025291,0.0000025049,0.0000024979,0.0000025022, +0.0000025050,0.0000025040,0.0000025017,0.0000024948,0.0000024812, +0.0000024651,0.0000024499,0.0000024374,0.0000024285,0.0000024212, +0.0000024149,0.0000024120,0.0000024115,0.0000024141,0.0000024188, +0.0000024227,0.0000024233,0.0000024196,0.0000024135,0.0000024078, +0.0000024018,0.0000023934,0.0000023835,0.0000023747,0.0000023702, +0.0000023702,0.0000023709,0.0000023772,0.0000023915,0.0000024055, +0.0000024156,0.0000024228,0.0000024242,0.0000024175,0.0000024081, +0.0000024043,0.0000024080,0.0000024167,0.0000024256,0.0000024324, +0.0000024338,0.0000024334,0.0000024291,0.0000024237,0.0000024246, +0.0000024365,0.0000024514,0.0000024619,0.0000024628,0.0000024773, +0.0000025389,0.0000026041,0.0000026448,0.0000026787,0.0000027032, +0.0000027068,0.0000026988,0.0000027008,0.0000027045,0.0000027041, +0.0000027005,0.0000026969,0.0000026983,0.0000027051,0.0000027120, +0.0000027140,0.0000027068,0.0000026937,0.0000026830,0.0000026769, +0.0000026730,0.0000026707,0.0000026692,0.0000026686,0.0000026688, +0.0000026700,0.0000026727,0.0000026760,0.0000026783,0.0000026758, +0.0000026666,0.0000026569,0.0000026421,0.0000026115,0.0000025856, +0.0000025750,0.0000025668,0.0000025349,0.0000024735,0.0000024152, +0.0000023884,0.0000023779,0.0000023675,0.0000023573,0.0000023503, +0.0000023412,0.0000023291,0.0000023168,0.0000023062,0.0000022983, +0.0000022918,0.0000022835,0.0000022745,0.0000022698,0.0000022708, +0.0000022742,0.0000022765,0.0000022808,0.0000022890,0.0000022979, +0.0000023055,0.0000023128,0.0000023190,0.0000023229,0.0000023255, +0.0000023265,0.0000023254,0.0000023214,0.0000023175,0.0000023162, +0.0000023171,0.0000023203,0.0000023230,0.0000023233,0.0000023210, +0.0000023173,0.0000023140,0.0000023110,0.0000023067,0.0000023003, +0.0000022928,0.0000022862,0.0000022810,0.0000022834,0.0000022953, +0.0000023030,0.0000023019,0.0000022968,0.0000022905,0.0000022856, +0.0000022845,0.0000022849,0.0000022843,0.0000022838,0.0000022846, +0.0000022875,0.0000022911,0.0000022937,0.0000022957,0.0000022979, +0.0000022987,0.0000022969,0.0000022929,0.0000022888,0.0000022861, +0.0000022848,0.0000022838,0.0000022838,0.0000022863,0.0000022930, +0.0000023018,0.0000023094,0.0000023127,0.0000023120,0.0000023091, +0.0000023053,0.0000023020,0.0000023004,0.0000023009,0.0000023027, +0.0000023041,0.0000023047,0.0000023054,0.0000023065,0.0000023069, +0.0000023058,0.0000023022,0.0000022970,0.0000022909,0.0000022849, +0.0000022796,0.0000022739,0.0000022664,0.0000022573,0.0000022480, +0.0000022396,0.0000022335,0.0000022315,0.0000022334,0.0000022390, +0.0000022455,0.0000022486,0.0000022487,0.0000022470,0.0000022424, +0.0000022346,0.0000022277,0.0000022301,0.0000022535,0.0000022818, +0.0000023039,0.0000023272,0.0000023424,0.0000023454,0.0000023476, +0.0000023498,0.0000023498,0.0000023497,0.0000023485,0.0000023466, +0.0000023567,0.0000023842,0.0000024054,0.0000024084,0.0000024020, +0.0000023923,0.0000023841,0.0000023829,0.0000023992,0.0000024317, +0.0000024710,0.0000025123,0.0000025361,0.0000025367,0.0000025168, +0.0000024779,0.0000024431,0.0000024315,0.0000024312,0.0000024313, +0.0000024317,0.0000024323,0.0000024322,0.0000024312,0.0000024304, +0.0000024303,0.0000024307,0.0000024310,0.0000024315,0.0000024319, +0.0000024318,0.0000024309,0.0000024292,0.0000024270,0.0000024253, +0.0000024252,0.0000024270,0.0000024287,0.0000024288,0.0000024257, +0.0000024193,0.0000024108,0.0000024024,0.0000023956,0.0000023916, +0.0000023861,0.0000023824,0.0000023812,0.0000023809,0.0000023817, +0.0000023833,0.0000023850,0.0000023863,0.0000023868,0.0000023870, +0.0000023871,0.0000023874,0.0000023874,0.0000023865,0.0000023855, +0.0000023845,0.0000023840,0.0000023850,0.0000023840,0.0000023786, +0.0000023716,0.0000023691,0.0000023715,0.0000023774,0.0000023819, +0.0000023820,0.0000023807,0.0000023811,0.0000023838,0.0000023867, +0.0000023887,0.0000023897,0.0000023897,0.0000023895,0.0000023893, +0.0000023894,0.0000023891,0.0000023888,0.0000023886,0.0000023877, +0.0000023866,0.0000023856,0.0000023846,0.0000023837,0.0000023830, +0.0000023822,0.0000023814,0.0000023806,0.0000023796,0.0000023784, +0.0000023778,0.0000023774,0.0000023769,0.0000023764,0.0000023757, +0.0000023754,0.0000023771,0.0000023816,0.0000023869,0.0000023916, +0.0000023949,0.0000023961,0.0000023957,0.0000023957,0.0000023996, +0.0000024072,0.0000024143,0.0000024178,0.0000024166,0.0000024087, +0.0000024032,0.0000024032,0.0000024042,0.0000024034,0.0000024013, +0.0000023977,0.0000023913,0.0000023843,0.0000023822,0.0000023867, +0.0000023944,0.0000023964,0.0000023901,0.0000023783,0.0000023702, +0.0000023708,0.0000023813,0.0000024004,0.0000024215,0.0000024411, +0.0000024555,0.0000024671,0.0000024833,0.0000025040,0.0000025200, +0.0000025289,0.0000025363,0.0000025416,0.0000025426,0.0000025424, +0.0000025439,0.0000025466,0.0000025481,0.0000025461,0.0000025404, +0.0000025352,0.0000025330,0.0000025322,0.0000025309,0.0000025294, +0.0000025288,0.0000025287,0.0000025280,0.0000025269,0.0000025258, +0.0000025254,0.0000025259,0.0000025274,0.0000025288,0.0000025311, +0.0000025371,0.0000025449,0.0000025502,0.0000025507,0.0000025499, +0.0000025516,0.0000025545,0.0000025533,0.0000025511,0.0000025512, +0.0000025515,0.0000025510,0.0000025477,0.0000025385,0.0000025287, +0.0000025246,0.0000025232,0.0000025209,0.0000025207,0.0000025233, +0.0000025291,0.0000025360,0.0000025389,0.0000025367,0.0000025329, +0.0000025278,0.0000025196,0.0000025136,0.0000025104,0.0000025033, +0.0000024910,0.0000024811,0.0000024760,0.0000024718,0.0000024676, +0.0000024647,0.0000024633,0.0000024644,0.0000024687,0.0000024747, +0.0000024800,0.0000024844,0.0000024893,0.0000024947,0.0000024991, +0.0000025014,0.0000025012,0.0000024988,0.0000024955,0.0000024915, +0.0000024878,0.0000024851,0.0000024823,0.0000024789,0.0000024754, +0.0000024718,0.0000024678,0.0000024650,0.0000024641,0.0000024637, +0.0000024619,0.0000024592,0.0000024577,0.0000024579,0.0000024611, +0.0000024681,0.0000024766,0.0000024827,0.0000024856,0.0000024859, +0.0000024837,0.0000024796,0.0000024754,0.0000024731,0.0000024734, +0.0000024777,0.0000024884,0.0000025019,0.0000025141,0.0000025242, +0.0000025308,0.0000025326,0.0000025305,0.0000025261,0.0000025221, +0.0000025196,0.0000025189,0.0000025181,0.0000025141,0.0000025073, +0.0000025021,0.0000025012,0.0000025026,0.0000025044,0.0000025047, +0.0000025015,0.0000024940,0.0000024846,0.0000024759,0.0000024688, +0.0000024638,0.0000024618,0.0000024612,0.0000024600,0.0000024575, +0.0000024557,0.0000024558,0.0000024568,0.0000024560,0.0000024511, +0.0000024432,0.0000024334,0.0000024179,0.0000023973,0.0000023815, +0.0000023755,0.0000023739,0.0000023750,0.0000023830,0.0000023974, +0.0000024117,0.0000024221,0.0000024299,0.0000024372,0.0000024440, +0.0000024484,0.0000024496,0.0000024494,0.0000024499,0.0000024508, +0.0000024544,0.0000024650,0.0000024820,0.0000025020,0.0000025244, +0.0000025471,0.0000025650,0.0000025774,0.0000025870,0.0000025936, +0.0000025960,0.0000025964,0.0000025967,0.0000025981,0.0000026002, +0.0000026017,0.0000026020,0.0000026013,0.0000025996,0.0000025981, +0.0000025987,0.0000026005,0.0000026005,0.0000025974,0.0000025934, +0.0000025914,0.0000025911,0.0000025927,0.0000025977,0.0000026035, +0.0000026058,0.0000026053,0.0000026022,0.0000025991,0.0000025985, +0.0000026004,0.0000026037,0.0000026052,0.0000026026,0.0000025956, +0.0000025851,0.0000025721,0.0000025571,0.0000025425,0.0000025332, +0.0000025313,0.0000025337,0.0000025372,0.0000025414,0.0000025462, +0.0000025488,0.0000025468,0.0000025434,0.0000025390,0.0000025354, +0.0000025332,0.0000025328,0.0000025339,0.0000025343,0.0000025333, +0.0000025314,0.0000025308,0.0000025291,0.0000025256,0.0000025208, +0.0000025165,0.0000025134,0.0000025104,0.0000025066,0.0000025015, +0.0000024963,0.0000024916,0.0000024893,0.0000024905,0.0000024993, +0.0000025117,0.0000025194,0.0000025214,0.0000025223,0.0000025228, +0.0000025226,0.0000025218,0.0000025219,0.0000025248,0.0000025302, +0.0000025358,0.0000025400,0.0000025427,0.0000025444,0.0000025443, +0.0000025405,0.0000025329,0.0000025243,0.0000025179,0.0000025131, +0.0000025085,0.0000025060,0.0000025050,0.0000025043,0.0000025012, +0.0000024989,0.0000024991,0.0000025015,0.0000025090,0.0000025233, +0.0000025399,0.0000025511,0.0000025517,0.0000025454,0.0000025355, +0.0000025254,0.0000025230,0.0000025270,0.0000025356,0.0000025480, +0.0000025574,0.0000025570,0.0000025506,0.0000025447,0.0000025427, +0.0000025431,0.0000025476,0.0000025580,0.0000025722,0.0000025848, +0.0000025923,0.0000025957,0.0000025965,0.0000025949,0.0000025907, +0.0000025860,0.0000025822,0.0000025795,0.0000025771,0.0000025744, +0.0000025734,0.0000025747,0.0000025764,0.0000025766,0.0000025761, +0.0000025759,0.0000025760,0.0000025750,0.0000025700,0.0000025620, +0.0000025527,0.0000025418,0.0000025294,0.0000025163,0.0000025016, +0.0000024847,0.0000024684,0.0000024556,0.0000024461,0.0000024390, +0.0000024332,0.0000024268,0.0000024191,0.0000024114,0.0000024048, +0.0000023998,0.0000023959,0.0000023937,0.0000023941,0.0000023959, +0.0000023969,0.0000023963,0.0000023947,0.0000023927,0.0000023903, +0.0000023869,0.0000023828,0.0000023788,0.0000023752,0.0000023719, +0.0000023688,0.0000023652,0.0000023612,0.0000023577,0.0000023554, +0.0000023542,0.0000023533,0.0000023519,0.0000023500,0.0000023484, +0.0000023485,0.0000023503,0.0000023522,0.0000023533,0.0000023515, +0.0000023467,0.0000023405,0.0000023349,0.0000023309,0.0000023291, +0.0000023299,0.0000023317,0.0000023333,0.0000023340,0.0000023332, +0.0000023310,0.0000023280,0.0000023268,0.0000023302,0.0000023386, +0.0000023492,0.0000023573,0.0000023609,0.0000023610,0.0000023594, +0.0000023585,0.0000023598,0.0000023629,0.0000023677,0.0000023726, +0.0000023773,0.0000023799,0.0000023788,0.0000023778,0.0000023738, +0.0000023692,0.0000023639,0.0000023614,0.0000023623,0.0000023670, +0.0000023757,0.0000023875,0.0000024014,0.0000024143,0.0000024241, +0.0000024317,0.0000024427,0.0000024600,0.0000024849,0.0000025170, +0.0000025489,0.0000025721,0.0000025872,0.0000026047,0.0000026297, +0.0000026482,0.0000026508,0.0000026393,0.0000026243,0.0000026117, +0.0000026019,0.0000025954,0.0000025929,0.0000025756,0.0000025316, +0.0000025037,0.0000024817,0.0000024667,0.0000024641,0.0000024525, +0.0000024273,0.0000024092,0.0000024053,0.0000024080,0.0000024146, +0.0000024458,0.0000024881,0.0000024987,0.0000024912,0.0000025570, +0.0000026040,0.0000026047,0.0000025950,0.0000025901,0.0000025853, +0.0000025824,0.0000025821,0.0000025728,0.0000025459,0.0000025123, +0.0000024866,0.0000024709,0.0000024627,0.0000024596,0.0000024592, +0.0000024582,0.0000024562,0.0000024515,0.0000024475,0.0000024444, +0.0000024414,0.0000024376,0.0000024329,0.0000024288,0.0000024286, +0.0000024367,0.0000024462,0.0000024514,0.0000024550,0.0000024589, +0.0000024632,0.0000024661,0.0000024663,0.0000024645,0.0000024629, +0.0000024631,0.0000024674,0.0000024741,0.0000024822,0.0000024887, +0.0000024950,0.0000025030,0.0000025122,0.0000025207,0.0000025262, +0.0000025261,0.0000025201,0.0000025125,0.0000025044,0.0000024970, +0.0000024920,0.0000024897,0.0000024880,0.0000024843,0.0000024806, +0.0000024780,0.0000024732,0.0000024643,0.0000024542,0.0000024437, +0.0000024368,0.0000024369,0.0000024419,0.0000024476,0.0000024535, +0.0000024608,0.0000024679,0.0000024751,0.0000024863,0.0000025025, +0.0000025203,0.0000025360,0.0000025489,0.0000025593,0.0000025661, +0.0000025684,0.0000025666,0.0000025610,0.0000025546,0.0000025512, +0.0000025510,0.0000025554,0.0000025692,0.0000025932,0.0000026193, +0.0000026387,0.0000026515,0.0000026597,0.0000026608,0.0000026557, +0.0000026486,0.0000026400,0.0000026268,0.0000026130,0.0000026044, +0.0000026014,0.0000026015,0.0000026020,0.0000026017,0.0000026015, +0.0000026020,0.0000026024,0.0000026014,0.0000025987,0.0000025952, +0.0000025917,0.0000025886,0.0000025856,0.0000025838,0.0000025839, +0.0000025838,0.0000025820,0.0000025806,0.0000025789,0.0000025801, +0.0000025815,0.0000025807,0.0000025764,0.0000025699,0.0000025651, +0.0000025641,0.0000025649,0.0000025651,0.0000025635,0.0000025603, +0.0000025568,0.0000025543,0.0000025526,0.0000025505,0.0000025484, +0.0000025451,0.0000025416,0.0000025384,0.0000025356,0.0000025333, +0.0000025321,0.0000025322,0.0000025336,0.0000025361,0.0000025387, +0.0000025414,0.0000025444,0.0000025473,0.0000025497,0.0000025514, +0.0000025526,0.0000025535,0.0000025538,0.0000025533,0.0000025524, +0.0000025517,0.0000025510,0.0000025502,0.0000025488,0.0000025462, +0.0000025424,0.0000025352,0.0000025213,0.0000025007,0.0000024805, +0.0000024688,0.0000024667,0.0000024652,0.0000024511,0.0000024256, +0.0000024015,0.0000023850,0.0000023783,0.0000023728,0.0000023487, +0.0000023062,0.0000022702,0.0000022527,0.0000022428,0.0000022335, +0.0000022304,0.0000022360,0.0000022453,0.0000022549,0.0000022730, +0.0000023004,0.0000023279,0.0000023542,0.0000023869,0.0000024214, +0.0000024468,0.0000024726,0.0000025003,0.0000025130,0.0000025127, +0.0000025079,0.0000025043,0.0000025052,0.0000025087,0.0000025124, +0.0000025145,0.0000025152,0.0000025161,0.0000025166,0.0000025151, +0.0000025123,0.0000025108,0.0000025075,0.0000024975,0.0000024846, +0.0000024773,0.0000024764,0.0000024773,0.0000024801,0.0000024815, +0.0000024798,0.0000024814,0.0000024937,0.0000025111,0.0000025210, +0.0000025235,0.0000025246,0.0000025253,0.0000025240,0.0000025202, +0.0000025151,0.0000025107,0.0000025093,0.0000025120,0.0000025198, +0.0000025291,0.0000025346,0.0000025374,0.0000025441,0.0000025546, +0.0000025602,0.0000025591,0.0000025535,0.0000025469,0.0000025431, +0.0000025431,0.0000025475,0.0000025541,0.0000025567,0.0000025544, +0.0000025492,0.0000025464,0.0000025464,0.0000025469,0.0000025475, +0.0000025484,0.0000025485,0.0000025477,0.0000025477,0.0000025494, +0.0000025519,0.0000025538,0.0000025542,0.0000025537,0.0000025539, +0.0000025559,0.0000025594,0.0000025634,0.0000025663,0.0000025659, +0.0000025615,0.0000025562,0.0000025551,0.0000025592,0.0000025662, +0.0000025785,0.0000025978,0.0000026168,0.0000026286,0.0000026376, +0.0000026514,0.0000026636,0.0000026648,0.0000026580,0.0000026443, +0.0000026327,0.0000026334,0.0000026531,0.0000026786,0.0000026965, +0.0000027065,0.0000027122,0.0000027124,0.0000027071,0.0000026994, +0.0000026909,0.0000026809,0.0000026716,0.0000026660,0.0000026617, +0.0000026565,0.0000026522,0.0000026508,0.0000026516,0.0000026524, +0.0000026535,0.0000026547,0.0000026545,0.0000026522,0.0000026487, +0.0000026471,0.0000026497,0.0000026576,0.0000026687,0.0000026831, +0.0000026995,0.0000027149,0.0000027283,0.0000027395,0.0000027479, +0.0000027536,0.0000027578,0.0000027591,0.0000027568,0.0000027525, +0.0000027469,0.0000027417,0.0000027383,0.0000027349,0.0000027292, +0.0000027214,0.0000027128,0.0000027048,0.0000026979,0.0000026919, +0.0000026862,0.0000026813,0.0000026777,0.0000026754,0.0000026719, +0.0000026671,0.0000026632,0.0000026587,0.0000026561,0.0000026556, +0.0000026568,0.0000026590,0.0000026601,0.0000026610,0.0000026629, +0.0000026662,0.0000026698,0.0000026709,0.0000026640,0.0000026479, +0.0000026310,0.0000026182,0.0000026058,0.0000025975,0.0000026057, +0.0000026299,0.0000026487,0.0000026572,0.0000026671,0.0000026763, +0.0000026813,0.0000026830,0.0000026827,0.0000026811,0.0000026801, +0.0000026800,0.0000026777,0.0000026662,0.0000026485,0.0000026313, +0.0000026178,0.0000026082,0.0000026005,0.0000025933,0.0000025868, +0.0000025776,0.0000025633,0.0000025413,0.0000025142,0.0000024993, +0.0000025006,0.0000025038,0.0000025028,0.0000025019,0.0000024998, +0.0000024913,0.0000024778,0.0000024639,0.0000024511,0.0000024393, +0.0000024276,0.0000024158,0.0000024061,0.0000024018,0.0000024010, +0.0000024042,0.0000024116,0.0000024191,0.0000024218,0.0000024203, +0.0000024147,0.0000024088,0.0000024035,0.0000023968,0.0000023890, +0.0000023808,0.0000023739,0.0000023710,0.0000023699,0.0000023703, +0.0000023797,0.0000023941,0.0000024061,0.0000024133,0.0000024160, +0.0000024129,0.0000024047,0.0000023983,0.0000023987,0.0000024045, +0.0000024115,0.0000024170,0.0000024178,0.0000024169,0.0000024121, +0.0000024039,0.0000023994,0.0000024084,0.0000024327,0.0000024554, +0.0000024634,0.0000024625,0.0000025012,0.0000025754,0.0000026239, +0.0000026576,0.0000026868,0.0000027028,0.0000026991,0.0000026914, +0.0000026943,0.0000026968,0.0000026958,0.0000026949,0.0000026954, +0.0000026998,0.0000027066,0.0000027135,0.0000027168,0.0000027155, +0.0000027080,0.0000026985,0.0000026904,0.0000026858,0.0000026838, +0.0000026822,0.0000026805,0.0000026787,0.0000026777,0.0000026773, +0.0000026785,0.0000026773,0.0000026691,0.0000026583,0.0000026415, +0.0000026127,0.0000025889,0.0000025783,0.0000025719,0.0000025475, +0.0000024926,0.0000024309,0.0000023968,0.0000023829,0.0000023727, +0.0000023620,0.0000023541,0.0000023464,0.0000023345,0.0000023211, +0.0000023096,0.0000022999,0.0000022918,0.0000022842,0.0000022761, +0.0000022682,0.0000022648,0.0000022659,0.0000022696,0.0000022731, +0.0000022780,0.0000022854,0.0000022931,0.0000023005,0.0000023071, +0.0000023121,0.0000023158,0.0000023179,0.0000023178,0.0000023151, +0.0000023111,0.0000023085,0.0000023088,0.0000023113,0.0000023151, +0.0000023171,0.0000023166,0.0000023136,0.0000023104,0.0000023086, +0.0000023073,0.0000023037,0.0000022967,0.0000022891,0.0000022834, +0.0000022782,0.0000022782,0.0000022863,0.0000022928,0.0000022928, +0.0000022894,0.0000022840,0.0000022794,0.0000022778,0.0000022765, +0.0000022741,0.0000022727,0.0000022734,0.0000022765,0.0000022804, +0.0000022831,0.0000022850,0.0000022877,0.0000022900,0.0000022904, +0.0000022882,0.0000022842,0.0000022800,0.0000022772,0.0000022757, +0.0000022756,0.0000022776,0.0000022821,0.0000022884,0.0000022959, +0.0000023025,0.0000023064,0.0000023069,0.0000023053,0.0000023029, +0.0000023009,0.0000023006,0.0000023011,0.0000023019,0.0000023025, +0.0000023030,0.0000023031,0.0000023014,0.0000022969,0.0000022909, +0.0000022851,0.0000022805,0.0000022766,0.0000022725,0.0000022668, +0.0000022590,0.0000022496,0.0000022400,0.0000022310,0.0000022234, +0.0000022198,0.0000022205,0.0000022250,0.0000022321,0.0000022384, +0.0000022408,0.0000022406,0.0000022381,0.0000022326,0.0000022262, +0.0000022256,0.0000022455,0.0000022763,0.0000023018,0.0000023257, +0.0000023406,0.0000023444,0.0000023473,0.0000023493,0.0000023493, +0.0000023497,0.0000023488,0.0000023471,0.0000023569,0.0000023834, +0.0000024044,0.0000024088,0.0000024036,0.0000023946,0.0000023863, +0.0000023827,0.0000023916,0.0000024181,0.0000024514,0.0000024895, +0.0000025223,0.0000025336,0.0000025285,0.0000025052,0.0000024685, +0.0000024417,0.0000024345,0.0000024335,0.0000024324,0.0000024321, +0.0000024324,0.0000024317,0.0000024303,0.0000024296,0.0000024296, +0.0000024292,0.0000024288,0.0000024289,0.0000024296,0.0000024304, +0.0000024306,0.0000024291,0.0000024271,0.0000024257,0.0000024259, +0.0000024262,0.0000024256,0.0000024232,0.0000024187,0.0000024124, +0.0000024053,0.0000023983,0.0000023968,0.0000023907,0.0000023863, +0.0000023842,0.0000023833,0.0000023834,0.0000023847,0.0000023865, +0.0000023879,0.0000023887,0.0000023890,0.0000023887,0.0000023881, +0.0000023867,0.0000023847,0.0000023827,0.0000023818,0.0000023828, +0.0000023854,0.0000023867,0.0000023827,0.0000023740,0.0000023695, +0.0000023714,0.0000023763,0.0000023787,0.0000023779,0.0000023770, +0.0000023792,0.0000023835,0.0000023869,0.0000023886,0.0000023900, +0.0000023913,0.0000023919,0.0000023922,0.0000023908,0.0000023886, +0.0000023861,0.0000023838,0.0000023816,0.0000023798,0.0000023785, +0.0000023775,0.0000023767,0.0000023762,0.0000023759,0.0000023756, +0.0000023754,0.0000023753,0.0000023754,0.0000023757,0.0000023760, +0.0000023760,0.0000023759,0.0000023755,0.0000023751,0.0000023757, +0.0000023789,0.0000023837,0.0000023886,0.0000023923,0.0000023937, +0.0000023934,0.0000023937,0.0000023964,0.0000024031,0.0000024112, +0.0000024159,0.0000024160,0.0000024084,0.0000023997,0.0000023969, +0.0000023977,0.0000023982,0.0000023973,0.0000023957,0.0000023918, +0.0000023847,0.0000023785,0.0000023784,0.0000023858,0.0000023929, +0.0000023917,0.0000023814,0.0000023702,0.0000023669,0.0000023722, +0.0000023877,0.0000024090,0.0000024290,0.0000024464,0.0000024584, +0.0000024703,0.0000024890,0.0000025096,0.0000025217,0.0000025281, +0.0000025337,0.0000025366,0.0000025377,0.0000025402,0.0000025436, +0.0000025453,0.0000025438,0.0000025385,0.0000025332,0.0000025302, +0.0000025285,0.0000025261,0.0000025234,0.0000025210,0.0000025193, +0.0000025177,0.0000025160,0.0000025141,0.0000025124,0.0000025116, +0.0000025133,0.0000025178,0.0000025225,0.0000025272,0.0000025343, +0.0000025428,0.0000025481,0.0000025484,0.0000025476,0.0000025496, +0.0000025518,0.0000025504,0.0000025496,0.0000025505,0.0000025511, +0.0000025503,0.0000025448,0.0000025343,0.0000025253,0.0000025207, +0.0000025163,0.0000025128,0.0000025132,0.0000025181,0.0000025270, +0.0000025354,0.0000025372,0.0000025347,0.0000025310,0.0000025247, +0.0000025161,0.0000025100,0.0000025037,0.0000024936,0.0000024834, +0.0000024775,0.0000024729,0.0000024668,0.0000024613,0.0000024582, +0.0000024573,0.0000024587,0.0000024628,0.0000024687,0.0000024751, +0.0000024806,0.0000024851,0.0000024886,0.0000024916,0.0000024942, +0.0000024963,0.0000024967,0.0000024948,0.0000024908,0.0000024857, +0.0000024811,0.0000024771,0.0000024739,0.0000024716,0.0000024690, +0.0000024656,0.0000024629,0.0000024610,0.0000024585,0.0000024554, +0.0000024535,0.0000024539,0.0000024572,0.0000024644,0.0000024738, +0.0000024806,0.0000024835,0.0000024836,0.0000024817,0.0000024783, +0.0000024746,0.0000024727,0.0000024728,0.0000024748,0.0000024816, +0.0000024933,0.0000025055,0.0000025157,0.0000025240,0.0000025287, +0.0000025293,0.0000025270,0.0000025245,0.0000025231,0.0000025222, +0.0000025216,0.0000025193,0.0000025138,0.0000025070,0.0000025022, +0.0000025007,0.0000025011,0.0000025018,0.0000025007,0.0000024959, +0.0000024886,0.0000024814,0.0000024754,0.0000024699,0.0000024659, +0.0000024644,0.0000024640,0.0000024629,0.0000024611,0.0000024598, +0.0000024598,0.0000024599,0.0000024573,0.0000024502,0.0000024406, +0.0000024291,0.0000024120,0.0000023919,0.0000023787,0.0000023743, +0.0000023728,0.0000023739,0.0000023825,0.0000023974,0.0000024107, +0.0000024185,0.0000024238,0.0000024298,0.0000024368,0.0000024426, +0.0000024450,0.0000024455,0.0000024470,0.0000024494,0.0000024525, +0.0000024601,0.0000024738,0.0000024894,0.0000025058,0.0000025249, +0.0000025447,0.0000025607,0.0000025729,0.0000025841,0.0000025934, +0.0000025978,0.0000025983,0.0000025978,0.0000025980,0.0000025983, +0.0000025978,0.0000025959,0.0000025926,0.0000025891,0.0000025882, +0.0000025899,0.0000025914,0.0000025903,0.0000025877,0.0000025861, +0.0000025861,0.0000025882,0.0000025930,0.0000025988,0.0000026026, +0.0000026030,0.0000026010,0.0000025985,0.0000025975,0.0000025985, +0.0000026004,0.0000026009,0.0000025977,0.0000025901,0.0000025799, +0.0000025678,0.0000025531,0.0000025384,0.0000025302,0.0000025298, +0.0000025329,0.0000025373,0.0000025419,0.0000025471,0.0000025506, +0.0000025496,0.0000025465,0.0000025420,0.0000025385,0.0000025372, +0.0000025375,0.0000025392,0.0000025415,0.0000025432,0.0000025431, +0.0000025416,0.0000025376,0.0000025320,0.0000025260,0.0000025204, +0.0000025153,0.0000025105,0.0000025057,0.0000025004,0.0000024952, +0.0000024907,0.0000024872,0.0000024863,0.0000024904,0.0000025010, +0.0000025124,0.0000025176,0.0000025177,0.0000025187,0.0000025208, +0.0000025226,0.0000025239,0.0000025259,0.0000025301,0.0000025354, +0.0000025388,0.0000025402,0.0000025411,0.0000025418,0.0000025418, +0.0000025395,0.0000025343,0.0000025278,0.0000025212,0.0000025143, +0.0000025077,0.0000025032,0.0000025016,0.0000025010,0.0000024994, +0.0000024973,0.0000024986,0.0000025024,0.0000025115,0.0000025249, +0.0000025381,0.0000025468,0.0000025470,0.0000025417,0.0000025324, +0.0000025258,0.0000025262,0.0000025307,0.0000025387,0.0000025478, +0.0000025516,0.0000025485,0.0000025456,0.0000025470,0.0000025514, +0.0000025571,0.0000025646,0.0000025755,0.0000025904,0.0000026035, +0.0000026113,0.0000026129,0.0000026122,0.0000026081,0.0000026016, +0.0000025954,0.0000025904,0.0000025872,0.0000025849,0.0000025825, +0.0000025806,0.0000025799,0.0000025792,0.0000025776,0.0000025757, +0.0000025744,0.0000025733,0.0000025702,0.0000025639,0.0000025543, +0.0000025406,0.0000025230,0.0000025045,0.0000024874,0.0000024732, +0.0000024626,0.0000024556,0.0000024493,0.0000024420,0.0000024314, +0.0000024179,0.0000024047,0.0000023948,0.0000023884,0.0000023840, +0.0000023810,0.0000023791,0.0000023796,0.0000023827,0.0000023865, +0.0000023889,0.0000023903,0.0000023906,0.0000023899,0.0000023877, +0.0000023842,0.0000023799,0.0000023755,0.0000023712,0.0000023670, +0.0000023627,0.0000023581,0.0000023535,0.0000023497,0.0000023476, +0.0000023469,0.0000023463,0.0000023449,0.0000023423,0.0000023395, +0.0000023374,0.0000023363,0.0000023373,0.0000023408,0.0000023438, +0.0000023435,0.0000023399,0.0000023333,0.0000023265,0.0000023212, +0.0000023189,0.0000023202,0.0000023238,0.0000023276,0.0000023295, +0.0000023282,0.0000023238,0.0000023192,0.0000023145,0.0000023160, +0.0000023211,0.0000023278,0.0000023328,0.0000023348,0.0000023351, +0.0000023356,0.0000023375,0.0000023409,0.0000023459,0.0000023526, +0.0000023603,0.0000023679,0.0000023742,0.0000023773,0.0000023768, +0.0000023757,0.0000023704,0.0000023652,0.0000023623,0.0000023624, +0.0000023647,0.0000023712,0.0000023828,0.0000023976,0.0000024127, +0.0000024238,0.0000024330,0.0000024457,0.0000024626,0.0000024859, +0.0000025180,0.0000025518,0.0000025728,0.0000025846,0.0000026049, +0.0000026332,0.0000026499,0.0000026469,0.0000026334,0.0000026190, +0.0000026077,0.0000025987,0.0000025950,0.0000025856,0.0000025434, +0.0000025085,0.0000024861,0.0000024646,0.0000024590,0.0000024487, +0.0000024254,0.0000024069,0.0000024007,0.0000024031,0.0000024058, +0.0000024235,0.0000024659,0.0000024983,0.0000024882,0.0000025212, +0.0000025893,0.0000026059,0.0000025973,0.0000025902,0.0000025839, +0.0000025811,0.0000025733,0.0000025415,0.0000024982,0.0000024702, +0.0000024614,0.0000024618,0.0000024630,0.0000024622,0.0000024603, +0.0000024556,0.0000024479,0.0000024392,0.0000024335,0.0000024304, +0.0000024283,0.0000024262,0.0000024240,0.0000024223,0.0000024239, +0.0000024337,0.0000024425,0.0000024475,0.0000024509,0.0000024553, +0.0000024608,0.0000024644,0.0000024647,0.0000024631,0.0000024612, +0.0000024611,0.0000024639,0.0000024684,0.0000024752,0.0000024818, +0.0000024889,0.0000024973,0.0000025065,0.0000025149,0.0000025206, +0.0000025214,0.0000025167,0.0000025095,0.0000025020,0.0000024943, +0.0000024889,0.0000024868,0.0000024864,0.0000024842,0.0000024793, +0.0000024753,0.0000024711,0.0000024631,0.0000024534,0.0000024430, +0.0000024367,0.0000024371,0.0000024423,0.0000024472,0.0000024512, +0.0000024560,0.0000024625,0.0000024686,0.0000024760,0.0000024876, +0.0000025036,0.0000025214,0.0000025371,0.0000025489,0.0000025565, +0.0000025600,0.0000025601,0.0000025570,0.0000025519,0.0000025483, +0.0000025477,0.0000025486,0.0000025556,0.0000025739,0.0000025995, +0.0000026223,0.0000026382,0.0000026485,0.0000026526,0.0000026514, +0.0000026460,0.0000026366,0.0000026223,0.0000026088,0.0000026008, +0.0000025985,0.0000025992,0.0000026004,0.0000026005,0.0000026003, +0.0000026006,0.0000026006,0.0000025994,0.0000025965,0.0000025929, +0.0000025895,0.0000025864,0.0000025829,0.0000025803,0.0000025808, +0.0000025826,0.0000025824,0.0000025821,0.0000025818,0.0000025816, +0.0000025811,0.0000025775,0.0000025704,0.0000025631,0.0000025593, +0.0000025594,0.0000025605,0.0000025607,0.0000025592,0.0000025572, +0.0000025558,0.0000025549,0.0000025530,0.0000025477,0.0000025404, +0.0000025333,0.0000025276,0.0000025232,0.0000025194,0.0000025164, +0.0000025147,0.0000025146,0.0000025154,0.0000025173,0.0000025201, +0.0000025237,0.0000025283,0.0000025340,0.0000025397,0.0000025445, +0.0000025481,0.0000025507,0.0000025521,0.0000025524,0.0000025519, +0.0000025505,0.0000025486,0.0000025462,0.0000025433,0.0000025395, +0.0000025330,0.0000025216,0.0000025047,0.0000024863,0.0000024730, +0.0000024683,0.0000024684,0.0000024638,0.0000024448,0.0000024200, +0.0000023989,0.0000023843,0.0000023783,0.0000023693,0.0000023385, +0.0000022952,0.0000022655,0.0000022535,0.0000022434,0.0000022302, +0.0000022222,0.0000022257,0.0000022385,0.0000022496,0.0000022607, +0.0000022832,0.0000023121,0.0000023372,0.0000023620,0.0000023950, +0.0000024271,0.0000024495,0.0000024754,0.0000025007,0.0000025105, +0.0000025096,0.0000025051,0.0000025029,0.0000025058,0.0000025103, +0.0000025133,0.0000025142,0.0000025134,0.0000025105,0.0000025060, +0.0000025026,0.0000025017,0.0000024991,0.0000024911,0.0000024808, +0.0000024737,0.0000024716,0.0000024730,0.0000024771,0.0000024796, +0.0000024784,0.0000024778,0.0000024874,0.0000025052,0.0000025189, +0.0000025240,0.0000025251,0.0000025255,0.0000025252,0.0000025218, +0.0000025160,0.0000025105,0.0000025086,0.0000025099,0.0000025157, +0.0000025240,0.0000025312,0.0000025348,0.0000025390,0.0000025482, +0.0000025576,0.0000025604,0.0000025579,0.0000025524,0.0000025467, +0.0000025440,0.0000025445,0.0000025496,0.0000025547,0.0000025548, +0.0000025502,0.0000025455,0.0000025448,0.0000025463,0.0000025485, +0.0000025506,0.0000025516,0.0000025509,0.0000025503,0.0000025515, +0.0000025541,0.0000025566,0.0000025579,0.0000025578,0.0000025556, +0.0000025533,0.0000025533,0.0000025563,0.0000025616,0.0000025668, +0.0000025677,0.0000025629,0.0000025561,0.0000025548,0.0000025595, +0.0000025675,0.0000025779,0.0000025934,0.0000026111,0.0000026234, +0.0000026314,0.0000026433,0.0000026571,0.0000026619,0.0000026576, +0.0000026470,0.0000026346,0.0000026324,0.0000026468,0.0000026719, +0.0000026923,0.0000027025,0.0000027070,0.0000027069,0.0000027012, +0.0000026926,0.0000026835,0.0000026732,0.0000026645,0.0000026592, +0.0000026547,0.0000026498,0.0000026462,0.0000026443,0.0000026427, +0.0000026404,0.0000026379,0.0000026343,0.0000026293,0.0000026237, +0.0000026198,0.0000026205,0.0000026257,0.0000026344,0.0000026457, +0.0000026596,0.0000026742,0.0000026877,0.0000026999,0.0000027102, +0.0000027182,0.0000027258,0.0000027340,0.0000027416,0.0000027471, +0.0000027493,0.0000027475,0.0000027434,0.0000027376,0.0000027307, +0.0000027218,0.0000027130,0.0000027060,0.0000027008,0.0000026969, +0.0000026931,0.0000026888,0.0000026843,0.0000026812,0.0000026779, +0.0000026732,0.0000026684,0.0000026646,0.0000026616,0.0000026598, +0.0000026595,0.0000026597,0.0000026599,0.0000026602,0.0000026611, +0.0000026629,0.0000026658,0.0000026647,0.0000026570,0.0000026414, +0.0000026244,0.0000026143,0.0000026075,0.0000025977,0.0000025960, +0.0000026124,0.0000026390,0.0000026523,0.0000026583,0.0000026678, +0.0000026753,0.0000026785,0.0000026786,0.0000026775,0.0000026771, +0.0000026803,0.0000026829,0.0000026798,0.0000026659,0.0000026473, +0.0000026303,0.0000026179,0.0000026087,0.0000026000,0.0000025930, +0.0000025853,0.0000025717,0.0000025517,0.0000025255,0.0000025044, +0.0000024999,0.0000025039,0.0000025041,0.0000025018,0.0000025011, +0.0000024972,0.0000024874,0.0000024759,0.0000024653,0.0000024535, +0.0000024395,0.0000024230,0.0000024069,0.0000023949,0.0000023894, +0.0000023881,0.0000023906,0.0000023984,0.0000024098,0.0000024180, +0.0000024194,0.0000024156,0.0000024103,0.0000024054,0.0000023998, +0.0000023934,0.0000023870,0.0000023794,0.0000023734,0.0000023695, +0.0000023659,0.0000023696,0.0000023821,0.0000023950,0.0000024025, +0.0000024048,0.0000024036,0.0000023991,0.0000023940,0.0000023929, +0.0000023963,0.0000024020,0.0000024077,0.0000024090,0.0000024082, +0.0000024037,0.0000023964,0.0000023896,0.0000023894,0.0000024091, +0.0000024405,0.0000024614,0.0000024634,0.0000024778,0.0000025390, +0.0000026026,0.0000026375,0.0000026670,0.0000026897,0.0000026969, +0.0000026904,0.0000026830,0.0000026860,0.0000026891,0.0000026903, +0.0000026926,0.0000026961,0.0000027010,0.0000027069,0.0000027125, +0.0000027158,0.0000027158,0.0000027135,0.0000027096,0.0000027045, +0.0000026986,0.0000026926,0.0000026870,0.0000026818,0.0000026782, +0.0000026765,0.0000026755,0.0000026716,0.0000026626,0.0000026508, +0.0000026326,0.0000026073,0.0000025889,0.0000025809,0.0000025754, +0.0000025545,0.0000025048,0.0000024434,0.0000024051,0.0000023879, +0.0000023762,0.0000023656,0.0000023570,0.0000023503,0.0000023400, +0.0000023260,0.0000023135,0.0000023032,0.0000022938,0.0000022845, +0.0000022765,0.0000022703,0.0000022647,0.0000022611,0.0000022615, +0.0000022654,0.0000022707,0.0000022762,0.0000022825,0.0000022894, +0.0000022956,0.0000023002,0.0000023038,0.0000023064,0.0000023073, +0.0000023065,0.0000023036,0.0000023005,0.0000023000,0.0000023019, +0.0000023058,0.0000023092,0.0000023106,0.0000023101,0.0000023080, +0.0000023056,0.0000023041,0.0000023028,0.0000022989,0.0000022917, +0.0000022849,0.0000022809,0.0000022761,0.0000022731,0.0000022758, +0.0000022794,0.0000022798,0.0000022773,0.0000022722,0.0000022671, +0.0000022647,0.0000022628,0.0000022598,0.0000022576,0.0000022574, +0.0000022593,0.0000022620,0.0000022642,0.0000022665,0.0000022698, +0.0000022731,0.0000022760,0.0000022778,0.0000022776,0.0000022755, +0.0000022730,0.0000022706,0.0000022693,0.0000022701,0.0000022726, +0.0000022760,0.0000022807,0.0000022867,0.0000022927,0.0000022972, +0.0000022990,0.0000022987,0.0000022975,0.0000022971,0.0000022977, +0.0000022985,0.0000022986,0.0000022977,0.0000022948,0.0000022903, +0.0000022849,0.0000022792,0.0000022746,0.0000022712,0.0000022679, +0.0000022636,0.0000022573,0.0000022492,0.0000022407,0.0000022327, +0.0000022252,0.0000022186,0.0000022143,0.0000022134,0.0000022155, +0.0000022210,0.0000022275,0.0000022312,0.0000022318,0.0000022315, +0.0000022288,0.0000022247,0.0000022236,0.0000022386,0.0000022706, +0.0000022993,0.0000023240,0.0000023386,0.0000023430,0.0000023468, +0.0000023489,0.0000023489,0.0000023495,0.0000023488,0.0000023474, +0.0000023563,0.0000023818,0.0000024029,0.0000024081,0.0000024048, +0.0000023967,0.0000023887,0.0000023819,0.0000023838,0.0000024049, +0.0000024338,0.0000024655,0.0000025004,0.0000025246,0.0000025288, +0.0000025222,0.0000024989,0.0000024664,0.0000024443,0.0000024375, +0.0000024353,0.0000024325,0.0000024311,0.0000024305,0.0000024296, +0.0000024289,0.0000024289,0.0000024285,0.0000024275,0.0000024261, +0.0000024255,0.0000024261,0.0000024274,0.0000024282,0.0000024281, +0.0000024273,0.0000024268,0.0000024260,0.0000024246,0.0000024222, +0.0000024188,0.0000024146,0.0000024095,0.0000024034,0.0000024021, +0.0000023968,0.0000023930,0.0000023906,0.0000023892,0.0000023886, +0.0000023892,0.0000023901,0.0000023905,0.0000023903,0.0000023894, +0.0000023882,0.0000023862,0.0000023835,0.0000023808,0.0000023789, +0.0000023786,0.0000023803,0.0000023843,0.0000023871,0.0000023840, +0.0000023753,0.0000023699,0.0000023711,0.0000023744,0.0000023747, +0.0000023740,0.0000023748,0.0000023791,0.0000023841,0.0000023870, +0.0000023887,0.0000023908,0.0000023920,0.0000023922,0.0000023902, +0.0000023863,0.0000023816,0.0000023773,0.0000023739,0.0000023713, +0.0000023694,0.0000023682,0.0000023675,0.0000023670,0.0000023667, +0.0000023667,0.0000023666,0.0000023666,0.0000023669,0.0000023677, +0.0000023692,0.0000023707,0.0000023718,0.0000023729,0.0000023739, +0.0000023744,0.0000023748,0.0000023768,0.0000023808,0.0000023857, +0.0000023897,0.0000023917,0.0000023919,0.0000023926,0.0000023948, +0.0000024001,0.0000024081,0.0000024140,0.0000024148,0.0000024095, +0.0000023990,0.0000023921,0.0000023907,0.0000023918,0.0000023926, +0.0000023925,0.0000023910,0.0000023865,0.0000023793,0.0000023741, +0.0000023769,0.0000023863,0.0000023906,0.0000023852,0.0000023731, +0.0000023653,0.0000023658,0.0000023760,0.0000023952,0.0000024162, +0.0000024346,0.0000024496,0.0000024599,0.0000024725,0.0000024925, +0.0000025109,0.0000025199,0.0000025252,0.0000025296,0.0000025326, +0.0000025361,0.0000025401,0.0000025420,0.0000025413,0.0000025373, +0.0000025321,0.0000025280,0.0000025249,0.0000025214,0.0000025175, +0.0000025140,0.0000025111,0.0000025084,0.0000025065,0.0000025056, +0.0000025046,0.0000025033,0.0000025028,0.0000025050,0.0000025117, +0.0000025191,0.0000025252,0.0000025326,0.0000025407,0.0000025450, +0.0000025449,0.0000025447,0.0000025474,0.0000025484,0.0000025476, +0.0000025482,0.0000025499,0.0000025503,0.0000025485,0.0000025409, +0.0000025303,0.0000025223,0.0000025159,0.0000025087,0.0000025056, +0.0000025076,0.0000025149,0.0000025264,0.0000025346,0.0000025349, +0.0000025319,0.0000025281,0.0000025202,0.0000025109,0.0000025034, +0.0000024950,0.0000024865,0.0000024802,0.0000024742,0.0000024650, +0.0000024551,0.0000024488,0.0000024468,0.0000024473,0.0000024508, +0.0000024564,0.0000024626,0.0000024695,0.0000024769,0.0000024829, +0.0000024857,0.0000024863,0.0000024869,0.0000024889,0.0000024911, +0.0000024910,0.0000024875,0.0000024819,0.0000024764,0.0000024726, +0.0000024712,0.0000024702,0.0000024676,0.0000024634,0.0000024591, +0.0000024551,0.0000024520,0.0000024500,0.0000024502,0.0000024532, +0.0000024595,0.0000024689,0.0000024771,0.0000024808,0.0000024810, +0.0000024799,0.0000024775,0.0000024744,0.0000024724,0.0000024724, +0.0000024735,0.0000024768,0.0000024849,0.0000024963,0.0000025065, +0.0000025154,0.0000025228,0.0000025264,0.0000025265,0.0000025251, +0.0000025247,0.0000025247,0.0000025242,0.0000025229,0.0000025195, +0.0000025138,0.0000025076,0.0000025023,0.0000024995,0.0000024988, +0.0000024987,0.0000024969,0.0000024923,0.0000024863,0.0000024808, +0.0000024760,0.0000024715,0.0000024686,0.0000024682,0.0000024684, +0.0000024677,0.0000024660,0.0000024645,0.0000024637,0.0000024622, +0.0000024568,0.0000024477,0.0000024374,0.0000024255,0.0000024077, +0.0000023877,0.0000023760,0.0000023726,0.0000023717,0.0000023730, +0.0000023814,0.0000023957,0.0000024074,0.0000024129,0.0000024163, +0.0000024215,0.0000024291,0.0000024366,0.0000024409,0.0000024425, +0.0000024452,0.0000024491,0.0000024522,0.0000024571,0.0000024678, +0.0000024816,0.0000024941,0.0000025070,0.0000025238,0.0000025425, +0.0000025580,0.0000025703,0.0000025824,0.0000025936,0.0000025989, +0.0000025994,0.0000025974,0.0000025952,0.0000025932,0.0000025905, +0.0000025862,0.0000025809,0.0000025775,0.0000025773,0.0000025784, +0.0000025792,0.0000025789,0.0000025788,0.0000025796,0.0000025824, +0.0000025878,0.0000025943,0.0000025992,0.0000026010,0.0000026008, +0.0000025990,0.0000025971,0.0000025959,0.0000025957,0.0000025953, +0.0000025922,0.0000025855,0.0000025759,0.0000025643,0.0000025511, +0.0000025389,0.0000025326,0.0000025331,0.0000025376,0.0000025423, +0.0000025460,0.0000025500,0.0000025536,0.0000025540,0.0000025524, +0.0000025497,0.0000025485,0.0000025492,0.0000025513,0.0000025532, +0.0000025549,0.0000025553,0.0000025534,0.0000025489,0.0000025425, +0.0000025348,0.0000025281,0.0000025235,0.0000025199,0.0000025150, +0.0000025087,0.0000025015,0.0000024951,0.0000024900,0.0000024860, +0.0000024841,0.0000024847,0.0000024913,0.0000025032,0.0000025125, +0.0000025145,0.0000025139,0.0000025163,0.0000025200,0.0000025229, +0.0000025262,0.0000025303,0.0000025350,0.0000025380,0.0000025384, +0.0000025375,0.0000025361,0.0000025361,0.0000025365,0.0000025358, +0.0000025339,0.0000025306,0.0000025251,0.0000025183,0.0000025098, +0.0000025036,0.0000025026,0.0000025028,0.0000024999,0.0000024982, +0.0000025001,0.0000025049,0.0000025134,0.0000025239,0.0000025349, +0.0000025427,0.0000025437,0.0000025385,0.0000025311,0.0000025280, +0.0000025303,0.0000025356,0.0000025414,0.0000025448,0.0000025432, +0.0000025387,0.0000025395,0.0000025459,0.0000025542,0.0000025615, +0.0000025696,0.0000025819,0.0000025971,0.0000026101,0.0000026177, +0.0000026198,0.0000026183,0.0000026131,0.0000026048,0.0000025966, +0.0000025906,0.0000025871,0.0000025847,0.0000025808,0.0000025746, +0.0000025679,0.0000025621,0.0000025578,0.0000025549,0.0000025540, +0.0000025536,0.0000025501,0.0000025418,0.0000025291,0.0000025136, +0.0000024979,0.0000024847,0.0000024750,0.0000024678,0.0000024615, +0.0000024527,0.0000024397,0.0000024206,0.0000024008,0.0000023863, +0.0000023790,0.0000023767,0.0000023762,0.0000023765,0.0000023764, +0.0000023767,0.0000023786,0.0000023823,0.0000023855,0.0000023874, +0.0000023883,0.0000023884,0.0000023872,0.0000023842,0.0000023801, +0.0000023752,0.0000023697,0.0000023636,0.0000023576,0.0000023520, +0.0000023464,0.0000023415,0.0000023385,0.0000023372,0.0000023362, +0.0000023356,0.0000023355,0.0000023351,0.0000023336,0.0000023312, +0.0000023284,0.0000023270,0.0000023283,0.0000023313,0.0000023347, +0.0000023348,0.0000023308,0.0000023240,0.0000023163,0.0000023108, +0.0000023097,0.0000023123,0.0000023176,0.0000023233,0.0000023265, +0.0000023254,0.0000023202,0.0000023145,0.0000023105,0.0000023087, +0.0000023092,0.0000023092,0.0000023094,0.0000023092,0.0000023101, +0.0000023120,0.0000023152,0.0000023198,0.0000023265,0.0000023354, +0.0000023455,0.0000023553,0.0000023644,0.0000023716,0.0000023750, +0.0000023733,0.0000023709,0.0000023663,0.0000023634,0.0000023624, +0.0000023645,0.0000023704,0.0000023802,0.0000023965,0.0000024141, +0.0000024262,0.0000024361,0.0000024487,0.0000024643,0.0000024880, +0.0000025237,0.0000025559,0.0000025711,0.0000025829,0.0000026091, +0.0000026391,0.0000026492,0.0000026424,0.0000026278,0.0000026148, +0.0000026040,0.0000025973,0.0000025925,0.0000025558,0.0000025134, +0.0000024904,0.0000024655,0.0000024553,0.0000024440,0.0000024214, +0.0000024049,0.0000023988,0.0000023992,0.0000024026,0.0000024080, +0.0000024417,0.0000024859,0.0000024924,0.0000024941,0.0000025638, +0.0000026036,0.0000026007,0.0000025924,0.0000025846,0.0000025809, +0.0000025554,0.0000025015,0.0000024657,0.0000024603,0.0000024626, +0.0000024661,0.0000024673,0.0000024626,0.0000024542,0.0000024426, +0.0000024301,0.0000024199,0.0000024155,0.0000024140,0.0000024132, +0.0000024132,0.0000024146,0.0000024160,0.0000024212,0.0000024318, +0.0000024393,0.0000024434,0.0000024469,0.0000024521,0.0000024590, +0.0000024636,0.0000024640,0.0000024621,0.0000024601,0.0000024604, +0.0000024629,0.0000024656,0.0000024697,0.0000024745,0.0000024810, +0.0000024894,0.0000024989,0.0000025077,0.0000025138,0.0000025153, +0.0000025115,0.0000025050,0.0000024982,0.0000024911,0.0000024856, +0.0000024838,0.0000024844,0.0000024837,0.0000024787,0.0000024736, +0.0000024697,0.0000024626,0.0000024531,0.0000024434,0.0000024382, +0.0000024392,0.0000024456,0.0000024517,0.0000024543,0.0000024566, +0.0000024609,0.0000024659,0.0000024723,0.0000024807,0.0000024919, +0.0000025062,0.0000025218,0.0000025355,0.0000025453,0.0000025502, +0.0000025515,0.0000025508,0.0000025485,0.0000025452,0.0000025439, +0.0000025448,0.0000025486,0.0000025608,0.0000025832,0.0000026066, +0.0000026248,0.0000026373,0.0000026440,0.0000026454,0.0000026420, +0.0000026322,0.0000026176,0.0000026055,0.0000025982,0.0000025955, +0.0000025965,0.0000025988,0.0000025994,0.0000025990,0.0000025982, +0.0000025969,0.0000025952,0.0000025932,0.0000025912,0.0000025895, +0.0000025873,0.0000025838,0.0000025805,0.0000025804,0.0000025824, +0.0000025832,0.0000025832,0.0000025829,0.0000025808,0.0000025766, +0.0000025699,0.0000025617,0.0000025560,0.0000025544,0.0000025557, +0.0000025573,0.0000025574,0.0000025565,0.0000025559,0.0000025556, +0.0000025533,0.0000025466,0.0000025376,0.0000025292,0.0000025232, +0.0000025189,0.0000025156,0.0000025124,0.0000025088,0.0000025055, +0.0000025031,0.0000025021,0.0000025026,0.0000025043,0.0000025068, +0.0000025098,0.0000025139,0.0000025191,0.0000025244,0.0000025295, +0.0000025341,0.0000025378,0.0000025400,0.0000025408,0.0000025405, +0.0000025390,0.0000025361,0.0000025319,0.0000025256,0.0000025158, +0.0000025022,0.0000024874,0.0000024759,0.0000024702,0.0000024694, +0.0000024688,0.0000024586,0.0000024374,0.0000024160,0.0000023979, +0.0000023851,0.0000023794,0.0000023645,0.0000023264,0.0000022839, +0.0000022610,0.0000022529,0.0000022435,0.0000022301,0.0000022190, +0.0000022168,0.0000022276,0.0000022437,0.0000022537,0.0000022681, +0.0000022950,0.0000023230,0.0000023447,0.0000023684,0.0000024015, +0.0000024306,0.0000024510,0.0000024765,0.0000024994,0.0000025074, +0.0000025067,0.0000025027,0.0000025011,0.0000025043,0.0000025079, +0.0000025086,0.0000025058,0.0000025009,0.0000024961,0.0000024932, +0.0000024913,0.0000024880,0.0000024827,0.0000024762,0.0000024692, +0.0000024640,0.0000024649,0.0000024723,0.0000024791,0.0000024793, +0.0000024774,0.0000024814,0.0000024968,0.0000025130,0.0000025213, +0.0000025236,0.0000025242,0.0000025246,0.0000025230,0.0000025173, +0.0000025104,0.0000025074,0.0000025085,0.0000025129,0.0000025197, +0.0000025268,0.0000025317,0.0000025349,0.0000025413,0.0000025513, +0.0000025583,0.0000025592,0.0000025563,0.0000025509,0.0000025460, +0.0000025441,0.0000025463,0.0000025514,0.0000025540,0.0000025515, +0.0000025460,0.0000025434,0.0000025441,0.0000025466,0.0000025500, +0.0000025526,0.0000025528,0.0000025520,0.0000025523,0.0000025545, +0.0000025574,0.0000025596,0.0000025602,0.0000025589,0.0000025557, +0.0000025522,0.0000025508,0.0000025528,0.0000025586,0.0000025656, +0.0000025682,0.0000025643,0.0000025577,0.0000025560,0.0000025607, +0.0000025690,0.0000025782,0.0000025899,0.0000026045,0.0000026166, +0.0000026241,0.0000026335,0.0000026485,0.0000026584,0.0000026574, +0.0000026502,0.0000026396,0.0000026336,0.0000026407,0.0000026626, +0.0000026858,0.0000026985,0.0000027018,0.0000027003,0.0000026933, +0.0000026842,0.0000026752,0.0000026661,0.0000026587,0.0000026526, +0.0000026466,0.0000026418,0.0000026386,0.0000026351,0.0000026287, +0.0000026194,0.0000026083,0.0000025964,0.0000025863,0.0000025814, +0.0000025815,0.0000025858,0.0000025935,0.0000026036,0.0000026160, +0.0000026299,0.0000026435,0.0000026560,0.0000026670,0.0000026755, +0.0000026829,0.0000026909,0.0000027005,0.0000027118,0.0000027233, +0.0000027330,0.0000027386,0.0000027391,0.0000027354,0.0000027282, +0.0000027186,0.0000027091,0.0000027019,0.0000026970,0.0000026932, +0.0000026903,0.0000026870,0.0000026836,0.0000026810,0.0000026778, +0.0000026732,0.0000026687,0.0000026652,0.0000026625,0.0000026611, +0.0000026610,0.0000026611,0.0000026614,0.0000026615,0.0000026613, +0.0000026611,0.0000026565,0.0000026463,0.0000026320,0.0000026174, +0.0000026085,0.0000026057,0.0000026003,0.0000025928,0.0000025986, +0.0000026255,0.0000026476,0.0000026544,0.0000026601,0.0000026678, +0.0000026726,0.0000026741,0.0000026736,0.0000026730,0.0000026760, +0.0000026824,0.0000026858,0.0000026800,0.0000026641,0.0000026453, +0.0000026295,0.0000026184,0.0000026086,0.0000025996,0.0000025922, +0.0000025807,0.0000025620,0.0000025362,0.0000025104,0.0000025003, +0.0000025035,0.0000025067,0.0000025047,0.0000025023,0.0000024996, +0.0000024927,0.0000024836,0.0000024760,0.0000024675,0.0000024542, +0.0000024351,0.0000024143,0.0000023967,0.0000023846,0.0000023787, +0.0000023769,0.0000023775,0.0000023828,0.0000023943,0.0000024080, +0.0000024154,0.0000024153,0.0000024112,0.0000024067,0.0000024021, +0.0000023971,0.0000023923,0.0000023854,0.0000023772,0.0000023708, +0.0000023651,0.0000023633,0.0000023703,0.0000023813,0.0000023895, +0.0000023924,0.0000023923,0.0000023902,0.0000023879,0.0000023886, +0.0000023925,0.0000023977,0.0000024033,0.0000024046,0.0000024038, +0.0000023985,0.0000023910,0.0000023851,0.0000023833,0.0000023913, +0.0000024209,0.0000024528,0.0000024634,0.0000024619,0.0000025012, +0.0000025740,0.0000026195,0.0000026464,0.0000026719,0.0000026868, +0.0000026900,0.0000026827,0.0000026740,0.0000026754,0.0000026817, +0.0000026865,0.0000026911,0.0000026959,0.0000027006,0.0000027053, +0.0000027083,0.0000027094,0.0000027099,0.0000027087,0.0000027052, +0.0000026997,0.0000026924,0.0000026842,0.0000026771,0.0000026728, +0.0000026700,0.0000026658,0.0000026579,0.0000026470,0.0000026341, +0.0000026166,0.0000025978,0.0000025872,0.0000025829,0.0000025776, +0.0000025566,0.0000025093,0.0000024507,0.0000024120,0.0000023926, +0.0000023786,0.0000023679,0.0000023592,0.0000023527,0.0000023443, +0.0000023306,0.0000023165,0.0000023053,0.0000022965,0.0000022868, +0.0000022773,0.0000022709,0.0000022661,0.0000022615,0.0000022580, +0.0000022578,0.0000022623,0.0000022690,0.0000022747,0.0000022803, +0.0000022863,0.0000022905,0.0000022931,0.0000022950,0.0000022964, +0.0000022966,0.0000022954,0.0000022929,0.0000022916,0.0000022928, +0.0000022963,0.0000023000,0.0000023030,0.0000023044,0.0000023042, +0.0000023032,0.0000023019,0.0000023005,0.0000022981,0.0000022931, +0.0000022858,0.0000022805,0.0000022782,0.0000022737,0.0000022686, +0.0000022663,0.0000022655,0.0000022646,0.0000022628,0.0000022591, +0.0000022557,0.0000022548,0.0000022539,0.0000022518,0.0000022494, +0.0000022481,0.0000022478,0.0000022481,0.0000022482,0.0000022486, +0.0000022498,0.0000022512,0.0000022529,0.0000022554,0.0000022585, +0.0000022613,0.0000022636,0.0000022648,0.0000022649,0.0000022650, +0.0000022658,0.0000022672,0.0000022693,0.0000022727,0.0000022767, +0.0000022806,0.0000022838,0.0000022856,0.0000022864,0.0000022869, +0.0000022878,0.0000022881,0.0000022875,0.0000022853,0.0000022814, +0.0000022771,0.0000022732,0.0000022697,0.0000022658,0.0000022613, +0.0000022564,0.0000022512,0.0000022455,0.0000022395,0.0000022336, +0.0000022279,0.0000022222,0.0000022168,0.0000022118,0.0000022083, +0.0000022079,0.0000022114,0.0000022174,0.0000022218,0.0000022231, +0.0000022235,0.0000022230,0.0000022215,0.0000022208,0.0000022332, +0.0000022652,0.0000022968,0.0000023225,0.0000023366,0.0000023416, +0.0000023463,0.0000023485,0.0000023481,0.0000023483,0.0000023479, +0.0000023470,0.0000023548,0.0000023793,0.0000024007,0.0000024072, +0.0000024053,0.0000023982,0.0000023906,0.0000023838,0.0000023823, +0.0000023932,0.0000024179,0.0000024441,0.0000024739,0.0000025049, +0.0000025228,0.0000025246,0.0000025187,0.0000024986,0.0000024698, +0.0000024490,0.0000024409,0.0000024361,0.0000024312,0.0000024283, +0.0000024269,0.0000024263,0.0000024265,0.0000024270,0.0000024268, +0.0000024256,0.0000024241,0.0000024231,0.0000024228,0.0000024234, +0.0000024240,0.0000024245,0.0000024250,0.0000024255,0.0000024250, +0.0000024231,0.0000024204,0.0000024172,0.0000024129,0.0000024078, +0.0000024046,0.0000024002,0.0000023969,0.0000023944,0.0000023926, +0.0000023913,0.0000023910,0.0000023908,0.0000023902,0.0000023895, +0.0000023884,0.0000023870,0.0000023851,0.0000023828,0.0000023803, +0.0000023787,0.0000023785,0.0000023802,0.0000023841,0.0000023872, +0.0000023843,0.0000023750,0.0000023696,0.0000023703,0.0000023716, +0.0000023712,0.0000023715,0.0000023744,0.0000023798,0.0000023844, +0.0000023867,0.0000023886,0.0000023903,0.0000023902,0.0000023871, +0.0000023817,0.0000023757,0.0000023705,0.0000023665,0.0000023636, +0.0000023613,0.0000023595,0.0000023582,0.0000023574,0.0000023574, +0.0000023580,0.0000023591,0.0000023599,0.0000023599,0.0000023597, +0.0000023600,0.0000023610,0.0000023625,0.0000023642,0.0000023666, +0.0000023698,0.0000023725,0.0000023737,0.0000023752,0.0000023785, +0.0000023832,0.0000023873,0.0000023897,0.0000023909,0.0000023921, +0.0000023941,0.0000023982,0.0000024054,0.0000024117,0.0000024134, +0.0000024105,0.0000024008,0.0000023904,0.0000023849,0.0000023845, +0.0000023868,0.0000023888,0.0000023888,0.0000023872,0.0000023820, +0.0000023742,0.0000023722,0.0000023786,0.0000023871,0.0000023875, +0.0000023781,0.0000023669,0.0000023628,0.0000023672,0.0000023814, +0.0000024021,0.0000024213,0.0000024380,0.0000024510,0.0000024605, +0.0000024736,0.0000024931,0.0000025088,0.0000025167,0.0000025216, +0.0000025259,0.0000025304,0.0000025349,0.0000025378,0.0000025382, +0.0000025358,0.0000025315,0.0000025264,0.0000025214,0.0000025159, +0.0000025099,0.0000025048,0.0000025006,0.0000024971,0.0000024947, +0.0000024937,0.0000024939,0.0000024945,0.0000024956,0.0000024968, +0.0000025002,0.0000025082,0.0000025167,0.0000025237,0.0000025314, +0.0000025385,0.0000025410,0.0000025404,0.0000025415,0.0000025445, +0.0000025449,0.0000025451,0.0000025475,0.0000025495,0.0000025496, +0.0000025456,0.0000025365,0.0000025263,0.0000025183,0.0000025095, +0.0000025017,0.0000025005,0.0000025040,0.0000025138,0.0000025264, +0.0000025321,0.0000025306,0.0000025277,0.0000025231,0.0000025134, +0.0000025028,0.0000024949,0.0000024887,0.0000024835,0.0000024764, +0.0000024645,0.0000024504,0.0000024402,0.0000024358,0.0000024347, +0.0000024358,0.0000024404,0.0000024479,0.0000024561,0.0000024645, +0.0000024732,0.0000024804,0.0000024839,0.0000024837,0.0000024824, +0.0000024827,0.0000024842,0.0000024844,0.0000024819,0.0000024765, +0.0000024714,0.0000024691,0.0000024689,0.0000024677,0.0000024641, +0.0000024590,0.0000024537,0.0000024500,0.0000024479,0.0000024473, +0.0000024494,0.0000024547,0.0000024631,0.0000024721,0.0000024773, +0.0000024782,0.0000024777,0.0000024765,0.0000024744,0.0000024722, +0.0000024716,0.0000024725,0.0000024741,0.0000024784,0.0000024871, +0.0000024975,0.0000025069,0.0000025155,0.0000025220,0.0000025247, +0.0000025245,0.0000025243,0.0000025251,0.0000025258,0.0000025254, +0.0000025238,0.0000025205,0.0000025154,0.0000025092,0.0000025030, +0.0000024983,0.0000024963,0.0000024956,0.0000024940,0.0000024905, +0.0000024856,0.0000024809,0.0000024766,0.0000024734,0.0000024723, +0.0000024729,0.0000024733,0.0000024722,0.0000024700,0.0000024681, +0.0000024663,0.0000024625,0.0000024547,0.0000024443,0.0000024347, +0.0000024234,0.0000024045,0.0000023838,0.0000023724,0.0000023699, +0.0000023698,0.0000023711,0.0000023789,0.0000023918,0.0000024017, +0.0000024051,0.0000024069,0.0000024119,0.0000024206,0.0000024301, +0.0000024365,0.0000024399,0.0000024442,0.0000024497,0.0000024535, +0.0000024569,0.0000024644,0.0000024764,0.0000024877,0.0000024966, +0.0000025079,0.0000025242,0.0000025421,0.0000025571,0.0000025689, +0.0000025805,0.0000025917,0.0000025979,0.0000025972,0.0000025936, +0.0000025893,0.0000025848,0.0000025793,0.0000025728,0.0000025675, +0.0000025656,0.0000025661,0.0000025677,0.0000025699,0.0000025715, +0.0000025728,0.0000025760,0.0000025820,0.0000025893,0.0000025949, +0.0000025979,0.0000025987,0.0000025978,0.0000025953,0.0000025925, +0.0000025908,0.0000025902,0.0000025881,0.0000025822,0.0000025730, +0.0000025624,0.0000025520,0.0000025441,0.0000025410,0.0000025425, +0.0000025462,0.0000025480,0.0000025481,0.0000025487,0.0000025507, +0.0000025514,0.0000025511,0.0000025496,0.0000025488,0.0000025509, +0.0000025542,0.0000025558,0.0000025555,0.0000025536,0.0000025498, +0.0000025441,0.0000025367,0.0000025299,0.0000025248,0.0000025223, +0.0000025211,0.0000025196,0.0000025163,0.0000025089,0.0000024993, +0.0000024909,0.0000024853,0.0000024820,0.0000024809,0.0000024840, +0.0000024937,0.0000025048,0.0000025108,0.0000025108,0.0000025113, +0.0000025153,0.0000025198,0.0000025240,0.0000025290,0.0000025337, +0.0000025366,0.0000025373,0.0000025352,0.0000025315,0.0000025293, +0.0000025291,0.0000025303,0.0000025319,0.0000025324,0.0000025317, +0.0000025299,0.0000025231,0.0000025140,0.0000025082,0.0000025070, +0.0000025058,0.0000025022,0.0000025007,0.0000025022,0.0000025060, +0.0000025129,0.0000025213,0.0000025317,0.0000025402,0.0000025414, +0.0000025372,0.0000025320,0.0000025316,0.0000025355,0.0000025405, +0.0000025422,0.0000025397,0.0000025334,0.0000025302,0.0000025333, +0.0000025413,0.0000025501,0.0000025568,0.0000025631,0.0000025731, +0.0000025872,0.0000026011,0.0000026109,0.0000026154,0.0000026147, +0.0000026095,0.0000026011,0.0000025917,0.0000025842,0.0000025797, +0.0000025751,0.0000025667,0.0000025542,0.0000025412,0.0000025306, +0.0000025230,0.0000025184,0.0000025169,0.0000025165,0.0000025134, +0.0000025067,0.0000024993,0.0000024925,0.0000024858,0.0000024785, +0.0000024708,0.0000024606,0.0000024443,0.0000024228,0.0000024004, +0.0000023834,0.0000023753,0.0000023746,0.0000023773,0.0000023808, +0.0000023822,0.0000023812,0.0000023785,0.0000023765,0.0000023773, +0.0000023798,0.0000023820,0.0000023829,0.0000023828,0.0000023820, +0.0000023801,0.0000023770,0.0000023726,0.0000023670,0.0000023601, +0.0000023526,0.0000023460,0.0000023405,0.0000023352,0.0000023311, +0.0000023292,0.0000023281,0.0000023270,0.0000023260,0.0000023254, +0.0000023253,0.0000023254,0.0000023248,0.0000023234,0.0000023218, +0.0000023204,0.0000023204,0.0000023223,0.0000023253,0.0000023256, +0.0000023209,0.0000023133,0.0000023057,0.0000023021,0.0000023024, +0.0000023059,0.0000023120,0.0000023187,0.0000023230,0.0000023220, +0.0000023193,0.0000023151,0.0000023111,0.0000023057,0.0000023025, +0.0000022966,0.0000022929,0.0000022909,0.0000022904,0.0000022918, +0.0000022947,0.0000023002,0.0000023082,0.0000023180,0.0000023288, +0.0000023403,0.0000023517,0.0000023615,0.0000023680,0.0000023698, +0.0000023678,0.0000023657,0.0000023635,0.0000023654,0.0000023677, +0.0000023695,0.0000023794,0.0000023993,0.0000024184,0.0000024294, +0.0000024386,0.0000024507,0.0000024659,0.0000024936,0.0000025309, +0.0000025583,0.0000025684,0.0000025838,0.0000026175,0.0000026440, +0.0000026482,0.0000026369,0.0000026229,0.0000026108,0.0000026010, +0.0000025971,0.0000025681,0.0000025193,0.0000024938,0.0000024682, +0.0000024539,0.0000024391,0.0000024156,0.0000024018,0.0000023985, +0.0000023977,0.0000024015,0.0000024038,0.0000024208,0.0000024649, +0.0000024934,0.0000024861,0.0000025303,0.0000025913,0.0000026027, +0.0000025962,0.0000025874,0.0000025813,0.0000025358,0.0000024756, +0.0000024603,0.0000024624,0.0000024675,0.0000024702,0.0000024667, +0.0000024541,0.0000024378,0.0000024208,0.0000024066,0.0000023985, +0.0000023978,0.0000023995,0.0000024014,0.0000024044,0.0000024090, +0.0000024130,0.0000024207,0.0000024305,0.0000024358,0.0000024393, +0.0000024432,0.0000024496,0.0000024578,0.0000024631,0.0000024634, +0.0000024610,0.0000024588,0.0000024597,0.0000024628,0.0000024650, +0.0000024671,0.0000024692,0.0000024736,0.0000024806,0.0000024900, +0.0000024990,0.0000025054,0.0000025075,0.0000025045,0.0000024988, +0.0000024929,0.0000024868,0.0000024818,0.0000024803,0.0000024816, +0.0000024821,0.0000024783,0.0000024727,0.0000024687,0.0000024624, +0.0000024534,0.0000024447,0.0000024406,0.0000024420,0.0000024493, +0.0000024588,0.0000024640,0.0000024649,0.0000024652,0.0000024672, +0.0000024719,0.0000024792,0.0000024879,0.0000024975,0.0000025081, +0.0000025193,0.0000025297,0.0000025371,0.0000025404,0.0000025417, +0.0000025421,0.0000025412,0.0000025398,0.0000025406,0.0000025441, +0.0000025526,0.0000025709,0.0000025934,0.0000026121,0.0000026261, +0.0000026352,0.0000026386,0.0000026371,0.0000026274,0.0000026133, +0.0000026028,0.0000025958,0.0000025920,0.0000025932,0.0000025972, +0.0000025986,0.0000025975,0.0000025950,0.0000025919,0.0000025891, +0.0000025878,0.0000025885,0.0000025898,0.0000025897,0.0000025869, +0.0000025830,0.0000025815,0.0000025823,0.0000025827,0.0000025820, +0.0000025806,0.0000025769,0.0000025698,0.0000025609,0.0000025536, +0.0000025504,0.0000025510,0.0000025533,0.0000025547,0.0000025548, +0.0000025549,0.0000025553,0.0000025530,0.0000025459,0.0000025366, +0.0000025295,0.0000025255,0.0000025225,0.0000025186,0.0000025155, +0.0000025125,0.0000025089,0.0000025051,0.0000025014,0.0000024980, +0.0000024954,0.0000024943,0.0000024946,0.0000024962,0.0000024991, +0.0000025032,0.0000025076,0.0000025117,0.0000025153,0.0000025184, +0.0000025209,0.0000025224,0.0000025227,0.0000025215,0.0000025182, +0.0000025128,0.0000025053,0.0000024957,0.0000024852,0.0000024764, +0.0000024714,0.0000024700,0.0000024698,0.0000024659,0.0000024504, +0.0000024304,0.0000024129,0.0000023965,0.0000023861,0.0000023796, +0.0000023567,0.0000023126,0.0000022740,0.0000022574,0.0000022504, +0.0000022411,0.0000022304,0.0000022198,0.0000022122,0.0000022166, +0.0000022339,0.0000022487,0.0000022581,0.0000022776,0.0000023070, +0.0000023320,0.0000023501,0.0000023736,0.0000024064,0.0000024324, +0.0000024511,0.0000024761,0.0000024969,0.0000025042,0.0000025043, +0.0000025008,0.0000024983,0.0000024983,0.0000024980,0.0000024948, +0.0000024904,0.0000024875,0.0000024848,0.0000024804,0.0000024762, +0.0000024738,0.0000024703,0.0000024630,0.0000024556,0.0000024548, +0.0000024636,0.0000024761,0.0000024806,0.0000024781,0.0000024782, +0.0000024883,0.0000025046,0.0000025158,0.0000025202,0.0000025215, +0.0000025225,0.0000025229,0.0000025194,0.0000025120,0.0000025069, +0.0000025076,0.0000025116,0.0000025171,0.0000025230,0.0000025281, +0.0000025313,0.0000025355,0.0000025437,0.0000025530,0.0000025578, +0.0000025576,0.0000025541,0.0000025486,0.0000025446,0.0000025444, +0.0000025481,0.0000025521,0.0000025521,0.0000025479,0.0000025433, +0.0000025421,0.0000025432,0.0000025465,0.0000025506,0.0000025526, +0.0000025526,0.0000025524,0.0000025534,0.0000025558,0.0000025587, +0.0000025607,0.0000025611,0.0000025593,0.0000025557,0.0000025515, +0.0000025492,0.0000025501,0.0000025551,0.0000025625,0.0000025674, +0.0000025658,0.0000025606,0.0000025585,0.0000025620,0.0000025694, +0.0000025774,0.0000025860,0.0000025973,0.0000026090,0.0000026164, +0.0000026236,0.0000026382,0.0000026535,0.0000026566,0.0000026524, +0.0000026432,0.0000026341,0.0000026345,0.0000026519,0.0000026761, +0.0000026919,0.0000026950,0.0000026921,0.0000026838,0.0000026746, +0.0000026666,0.0000026590,0.0000026516,0.0000026437,0.0000026367, +0.0000026316,0.0000026261,0.0000026169,0.0000026033,0.0000025870, +0.0000025702,0.0000025572,0.0000025511,0.0000025520,0.0000025567, +0.0000025637,0.0000025726,0.0000025832,0.0000025962,0.0000026102, +0.0000026227,0.0000026332,0.0000026412,0.0000026466,0.0000026512, +0.0000026569,0.0000026650,0.0000026761,0.0000026890,0.0000027015, +0.0000027115,0.0000027171,0.0000027188,0.0000027171,0.0000027132, +0.0000027079,0.0000027017,0.0000026961,0.0000026911,0.0000026870, +0.0000026828,0.0000026784,0.0000026747,0.0000026712,0.0000026674, +0.0000026642,0.0000026619,0.0000026608,0.0000026613,0.0000026627, +0.0000026636,0.0000026637,0.0000026621,0.0000026565,0.0000026467, +0.0000026331,0.0000026194,0.0000026086,0.0000026024,0.0000026009, +0.0000025993,0.0000025932,0.0000025925,0.0000026110,0.0000026402, +0.0000026527,0.0000026563,0.0000026621,0.0000026668,0.0000026692, +0.0000026698,0.0000026694,0.0000026714,0.0000026775,0.0000026853, +0.0000026866,0.0000026778,0.0000026608,0.0000026426,0.0000026285, +0.0000026177,0.0000026077,0.0000025994,0.0000025895,0.0000025729, +0.0000025486,0.0000025199,0.0000025009,0.0000025011,0.0000025077, +0.0000025095,0.0000025070,0.0000025026,0.0000024958,0.0000024874, +0.0000024816,0.0000024766,0.0000024667,0.0000024491,0.0000024266, +0.0000024047,0.0000023881,0.0000023772,0.0000023716,0.0000023691, +0.0000023679,0.0000023693,0.0000023771,0.0000023918,0.0000024056, +0.0000024112,0.0000024102,0.0000024069,0.0000024033,0.0000023996, +0.0000023959,0.0000023904,0.0000023821,0.0000023742,0.0000023668, +0.0000023607,0.0000023606,0.0000023674,0.0000023754,0.0000023791, +0.0000023792,0.0000023785,0.0000023789,0.0000023833,0.0000023899, +0.0000023962,0.0000024027,0.0000024049,0.0000024051,0.0000023999, +0.0000023910,0.0000023830,0.0000023802,0.0000023821,0.0000024030, +0.0000024379,0.0000024613,0.0000024620,0.0000024764,0.0000025367, +0.0000025994,0.0000026280,0.0000026510,0.0000026717,0.0000026803, +0.0000026816,0.0000026758,0.0000026665,0.0000026651,0.0000026707, +0.0000026783,0.0000026844,0.0000026898,0.0000026943,0.0000026967, +0.0000026968,0.0000026958,0.0000026934,0.0000026895,0.0000026843, +0.0000026781,0.0000026718,0.0000026661,0.0000026615,0.0000026561, +0.0000026473,0.0000026356,0.0000026236,0.0000026112,0.0000025983, +0.0000025892,0.0000025864,0.0000025845,0.0000025776,0.0000025533, +0.0000025059,0.0000024516,0.0000024162,0.0000023967,0.0000023807, +0.0000023691,0.0000023611,0.0000023541,0.0000023461,0.0000023331, +0.0000023179,0.0000023050,0.0000022966,0.0000022886,0.0000022802, +0.0000022723,0.0000022668,0.0000022629,0.0000022593,0.0000022558, +0.0000022554,0.0000022606,0.0000022677,0.0000022732,0.0000022783, +0.0000022826,0.0000022849,0.0000022856,0.0000022864,0.0000022874, +0.0000022877,0.0000022869,0.0000022853,0.0000022854,0.0000022880, +0.0000022911,0.0000022939,0.0000022967,0.0000022983,0.0000022985, +0.0000022985,0.0000022991,0.0000022980,0.0000022939,0.0000022871, +0.0000022801,0.0000022762,0.0000022746,0.0000022707,0.0000022652, +0.0000022599,0.0000022559,0.0000022545,0.0000022545,0.0000022536, +0.0000022531,0.0000022532,0.0000022530,0.0000022510,0.0000022481, +0.0000022456,0.0000022441,0.0000022432,0.0000022424,0.0000022417, +0.0000022411,0.0000022397,0.0000022376,0.0000022356,0.0000022351, +0.0000022363,0.0000022400,0.0000022454,0.0000022512,0.0000022564, +0.0000022601,0.0000022619,0.0000022626,0.0000022637,0.0000022652, +0.0000022662,0.0000022668,0.0000022672,0.0000022679,0.0000022687, +0.0000022695,0.0000022700,0.0000022700,0.0000022693,0.0000022680, +0.0000022662,0.0000022639,0.0000022606,0.0000022553,0.0000022486, +0.0000022420,0.0000022372,0.0000022341,0.0000022316,0.0000022289, +0.0000022253,0.0000022202,0.0000022148,0.0000022096,0.0000022044, +0.0000022017,0.0000022031,0.0000022084,0.0000022136,0.0000022154, +0.0000022156,0.0000022158,0.0000022168,0.0000022172,0.0000022286, +0.0000022602,0.0000022941,0.0000023211,0.0000023347,0.0000023400, +0.0000023454,0.0000023472,0.0000023465,0.0000023463,0.0000023464, +0.0000023460,0.0000023524,0.0000023757,0.0000023976,0.0000024059, +0.0000024053,0.0000023996,0.0000023925,0.0000023861,0.0000023811, +0.0000023840,0.0000024021,0.0000024260,0.0000024491,0.0000024766, +0.0000025038,0.0000025195,0.0000025209,0.0000025176,0.0000025025, +0.0000024774,0.0000024551,0.0000024431,0.0000024361,0.0000024298, +0.0000024249,0.0000024218,0.0000024203,0.0000024202,0.0000024210, +0.0000024218,0.0000024222,0.0000024221,0.0000024219,0.0000024207, +0.0000024193,0.0000024187,0.0000024193,0.0000024203,0.0000024210, +0.0000024208,0.0000024195,0.0000024171,0.0000024136,0.0000024094, +0.0000024002,0.0000023968,0.0000023939,0.0000023913,0.0000023890, +0.0000023872,0.0000023860,0.0000023855,0.0000023853,0.0000023853, +0.0000023853,0.0000023851,0.0000023847,0.0000023831,0.0000023813, +0.0000023800,0.0000023798,0.0000023814,0.0000023852,0.0000023874, +0.0000023835,0.0000023735,0.0000023684,0.0000023685,0.0000023686, +0.0000023688,0.0000023707,0.0000023750,0.0000023801,0.0000023839, +0.0000023861,0.0000023872,0.0000023867,0.0000023835,0.0000023776, +0.0000023710,0.0000023655,0.0000023617,0.0000023592,0.0000023571, +0.0000023550,0.0000023533,0.0000023519,0.0000023507,0.0000023498, +0.0000023500,0.0000023516,0.0000023542,0.0000023561,0.0000023567, +0.0000023570,0.0000023574,0.0000023580,0.0000023590,0.0000023612, +0.0000023652,0.0000023695,0.0000023723,0.0000023741,0.0000023771, +0.0000023814,0.0000023855,0.0000023883,0.0000023902,0.0000023919, +0.0000023940,0.0000023971,0.0000024030,0.0000024092,0.0000024117, +0.0000024104,0.0000024031,0.0000023922,0.0000023827,0.0000023788, +0.0000023800,0.0000023842,0.0000023864,0.0000023864,0.0000023847, +0.0000023783,0.0000023723,0.0000023732,0.0000023809,0.0000023864, +0.0000023833,0.0000023718,0.0000023628,0.0000023619,0.0000023704, +0.0000023868,0.0000024068,0.0000024244,0.0000024395,0.0000024514, +0.0000024605,0.0000024732,0.0000024905,0.0000025046,0.0000025128, +0.0000025179,0.0000025229,0.0000025281,0.0000025320,0.0000025337, +0.0000025332,0.0000025301,0.0000025246,0.0000025176,0.0000025097, +0.0000025018,0.0000024951,0.0000024900,0.0000024862,0.0000024834, +0.0000024823,0.0000024823,0.0000024824,0.0000024836,0.0000024871, +0.0000024911,0.0000024969,0.0000025062,0.0000025150,0.0000025224, +0.0000025301,0.0000025352,0.0000025357,0.0000025355,0.0000025382, +0.0000025409,0.0000025415,0.0000025437,0.0000025473,0.0000025485, +0.0000025473,0.0000025411,0.0000025310,0.0000025214,0.0000025124, +0.0000025025,0.0000024965,0.0000024970,0.0000025026,0.0000025147, +0.0000025257,0.0000025274,0.0000025247,0.0000025221,0.0000025154, +0.0000025034,0.0000024932,0.0000024885,0.0000024860,0.0000024794, +0.0000024655,0.0000024489,0.0000024368,0.0000024316,0.0000024300, +0.0000024289,0.0000024292,0.0000024323,0.0000024386,0.0000024474, +0.0000024579,0.0000024683,0.0000024764,0.0000024809,0.0000024818, +0.0000024806,0.0000024797,0.0000024795,0.0000024787,0.0000024755, +0.0000024706,0.0000024666,0.0000024653,0.0000024649,0.0000024629, +0.0000024592,0.0000024547,0.0000024512,0.0000024484,0.0000024467, +0.0000024466,0.0000024503,0.0000024577,0.0000024665,0.0000024730, +0.0000024754,0.0000024753,0.0000024748,0.0000024737,0.0000024718, +0.0000024705,0.0000024710,0.0000024726,0.0000024748,0.0000024801, +0.0000024892,0.0000024994,0.0000025089,0.0000025168,0.0000025217, +0.0000025230,0.0000025224,0.0000025230,0.0000025249,0.0000025260, +0.0000025259,0.0000025248,0.0000025227,0.0000025187,0.0000025120, +0.0000025040,0.0000024975,0.0000024941,0.0000024928,0.0000024916, +0.0000024890,0.0000024849,0.0000024805,0.0000024771,0.0000024757, +0.0000024762,0.0000024773,0.0000024771,0.0000024748,0.0000024723, +0.0000024700,0.0000024670,0.0000024613,0.0000024519,0.0000024418, +0.0000024336,0.0000024225,0.0000024018,0.0000023794,0.0000023679, +0.0000023665,0.0000023668,0.0000023684,0.0000023752,0.0000023863, +0.0000023939,0.0000023957,0.0000023965,0.0000024015,0.0000024117, +0.0000024230,0.0000024312,0.0000024367,0.0000024430,0.0000024501, +0.0000024554,0.0000024584,0.0000024637,0.0000024730,0.0000024835, +0.0000024922,0.0000025003,0.0000025112,0.0000025264,0.0000025435, +0.0000025577,0.0000025679,0.0000025773,0.0000025868,0.0000025928, +0.0000025926,0.0000025876,0.0000025809,0.0000025732,0.0000025650, +0.0000025586,0.0000025558,0.0000025558,0.0000025579,0.0000025624, +0.0000025666,0.0000025690,0.0000025715,0.0000025769,0.0000025846, +0.0000025912,0.0000025950,0.0000025962,0.0000025962,0.0000025943, +0.0000025911,0.0000025884,0.0000025872,0.0000025850,0.0000025795, +0.0000025713,0.0000025626,0.0000025557,0.0000025526,0.0000025521, +0.0000025524,0.0000025519,0.0000025487,0.0000025425,0.0000025368, +0.0000025351,0.0000025351,0.0000025350,0.0000025333,0.0000025309, +0.0000025310,0.0000025338,0.0000025355,0.0000025350,0.0000025318, +0.0000025277,0.0000025218,0.0000025154,0.0000025106,0.0000025089, +0.0000025097,0.0000025136,0.0000025176,0.0000025192,0.0000025163, +0.0000025093,0.0000024974,0.0000024867,0.0000024810,0.0000024787, +0.0000024793,0.0000024858,0.0000024965,0.0000025052,0.0000025083, +0.0000025083,0.0000025097,0.0000025143,0.0000025202,0.0000025266, +0.0000025316,0.0000025337,0.0000025334,0.0000025308,0.0000025271, +0.0000025240,0.0000025226,0.0000025230,0.0000025256,0.0000025284, +0.0000025310,0.0000025340,0.0000025340,0.0000025282,0.0000025201, +0.0000025143,0.0000025115,0.0000025090,0.0000025054,0.0000025029, +0.0000025019,0.0000025048,0.0000025107,0.0000025187,0.0000025300, +0.0000025390,0.0000025411,0.0000025374,0.0000025336,0.0000025350, +0.0000025407,0.0000025440,0.0000025412,0.0000025330,0.0000025249, +0.0000025247,0.0000025296,0.0000025367,0.0000025436,0.0000025480, +0.0000025511,0.0000025577,0.0000025699,0.0000025842,0.0000025960, +0.0000026034,0.0000026060,0.0000026040,0.0000025958,0.0000025847, +0.0000025735,0.0000025635,0.0000025539,0.0000025427,0.0000025290, +0.0000025153,0.0000025043,0.0000024966,0.0000024914,0.0000024883, +0.0000024874,0.0000024868,0.0000024858,0.0000024846,0.0000024819, +0.0000024748,0.0000024623,0.0000024444,0.0000024226,0.0000024008, +0.0000023845,0.0000023769,0.0000023763,0.0000023787,0.0000023838, +0.0000023868,0.0000023866,0.0000023834,0.0000023792,0.0000023750, +0.0000023730,0.0000023731,0.0000023740,0.0000023744,0.0000023741, +0.0000023732,0.0000023716,0.0000023694,0.0000023660,0.0000023612, +0.0000023551,0.0000023478,0.0000023403,0.0000023341,0.0000023291, +0.0000023254,0.0000023229,0.0000023212,0.0000023205,0.0000023206, +0.0000023195,0.0000023175,0.0000023160,0.0000023157,0.0000023162, +0.0000023170,0.0000023169,0.0000023155,0.0000023132,0.0000023120, +0.0000023133,0.0000023160,0.0000023158,0.0000023099,0.0000023026, +0.0000022973,0.0000022957,0.0000022967,0.0000023003,0.0000023066, +0.0000023137,0.0000023186,0.0000023209,0.0000023206,0.0000023173, +0.0000023127,0.0000023057,0.0000022981,0.0000022908,0.0000022851, +0.0000022814,0.0000022794,0.0000022796,0.0000022812,0.0000022853, +0.0000022918,0.0000023009,0.0000023123,0.0000023252,0.0000023379, +0.0000023492,0.0000023576,0.0000023622,0.0000023639,0.0000023656, +0.0000023690,0.0000023692,0.0000023679,0.0000023691,0.0000023823, +0.0000024059,0.0000024232,0.0000024312,0.0000024402,0.0000024518, +0.0000024693,0.0000025019,0.0000025383,0.0000025582,0.0000025656, +0.0000025907,0.0000026282,0.0000026482,0.0000026449,0.0000026317, +0.0000026183,0.0000026063,0.0000026011,0.0000025795,0.0000025273, +0.0000024965,0.0000024713,0.0000024550,0.0000024365,0.0000024097, +0.0000023972,0.0000023973,0.0000023985,0.0000024020,0.0000024047, +0.0000024088,0.0000024429,0.0000024855,0.0000024880,0.0000025005, +0.0000025697,0.0000026029,0.0000025998,0.0000025912,0.0000025830, +0.0000025244,0.0000024674,0.0000024603,0.0000024654,0.0000024710, +0.0000024709,0.0000024597,0.0000024385,0.0000024163,0.0000023984, +0.0000023875,0.0000023847,0.0000023888,0.0000023946,0.0000023986, +0.0000024034,0.0000024090,0.0000024136,0.0000024212,0.0000024286, +0.0000024320,0.0000024354,0.0000024400,0.0000024480,0.0000024577, +0.0000024628,0.0000024628,0.0000024597,0.0000024568,0.0000024581, +0.0000024618,0.0000024647,0.0000024667,0.0000024670,0.0000024693, +0.0000024736,0.0000024814,0.0000024896,0.0000024956,0.0000024984, +0.0000024963,0.0000024914,0.0000024863,0.0000024809,0.0000024768, +0.0000024758,0.0000024780,0.0000024803,0.0000024782,0.0000024728, +0.0000024677,0.0000024620,0.0000024540,0.0000024466,0.0000024437, +0.0000024454,0.0000024521,0.0000024630,0.0000024721,0.0000024761, +0.0000024757,0.0000024745,0.0000024749,0.0000024790,0.0000024861, +0.0000024936,0.0000025010,0.0000025076,0.0000025140,0.0000025202, +0.0000025253,0.0000025293,0.0000025328,0.0000025349,0.0000025358, +0.0000025367,0.0000025405,0.0000025473,0.0000025617,0.0000025827, +0.0000026011,0.0000026153,0.0000026265,0.0000026323,0.0000026320, +0.0000026228,0.0000026098,0.0000026003,0.0000025925,0.0000025878, +0.0000025894,0.0000025948,0.0000025968,0.0000025949,0.0000025912, +0.0000025870,0.0000025831,0.0000025812,0.0000025833,0.0000025883, +0.0000025907,0.0000025892,0.0000025858,0.0000025836,0.0000025832, +0.0000025825,0.0000025803,0.0000025774,0.0000025720,0.0000025634, +0.0000025540,0.0000025484,0.0000025475,0.0000025493,0.0000025515, +0.0000025526,0.0000025538,0.0000025548,0.0000025534,0.0000025466, +0.0000025376,0.0000025318,0.0000025292,0.0000025257,0.0000025196, +0.0000025097,0.0000025001,0.0000024927,0.0000024875,0.0000024845, +0.0000024828,0.0000024819,0.0000024811,0.0000024801,0.0000024793, +0.0000024787,0.0000024790,0.0000024808,0.0000024844,0.0000024888, +0.0000024928,0.0000024957,0.0000024974,0.0000024981,0.0000024978, +0.0000024964,0.0000024932,0.0000024885,0.0000024829,0.0000024774, +0.0000024731,0.0000024705,0.0000024696,0.0000024698,0.0000024688, +0.0000024588,0.0000024409,0.0000024249,0.0000024095,0.0000023942, +0.0000023867,0.0000023772,0.0000023450,0.0000022983,0.0000022666, +0.0000022547,0.0000022464,0.0000022367,0.0000022290,0.0000022212, +0.0000022120,0.0000022094,0.0000022223,0.0000022418,0.0000022525, +0.0000022638,0.0000022888,0.0000023181,0.0000023386,0.0000023535, +0.0000023776,0.0000024101,0.0000024330,0.0000024505,0.0000024748, +0.0000024941,0.0000025010,0.0000025021,0.0000024996,0.0000024949, +0.0000024906,0.0000024871,0.0000024841,0.0000024815,0.0000024771, +0.0000024709,0.0000024666,0.0000024654,0.0000024627,0.0000024554, +0.0000024468,0.0000024439,0.0000024523,0.0000024692,0.0000024807, +0.0000024807,0.0000024781,0.0000024819,0.0000024953,0.0000025079, +0.0000025143,0.0000025168,0.0000025189,0.0000025216,0.0000025212, +0.0000025150,0.0000025085,0.0000025072,0.0000025103,0.0000025154, +0.0000025209,0.0000025256,0.0000025287,0.0000025313,0.0000025368, +0.0000025457,0.0000025536,0.0000025564,0.0000025554,0.0000025512, +0.0000025460,0.0000025440,0.0000025461,0.0000025501,0.0000025517, +0.0000025499,0.0000025452,0.0000025418,0.0000025411,0.0000025429, +0.0000025470,0.0000025506,0.0000025516,0.0000025517,0.0000025518, +0.0000025527,0.0000025547,0.0000025579,0.0000025607,0.0000025614, +0.0000025603,0.0000025572,0.0000025528,0.0000025492,0.0000025488, +0.0000025521,0.0000025589,0.0000025651,0.0000025657,0.0000025624, +0.0000025606,0.0000025626,0.0000025682,0.0000025749,0.0000025820, +0.0000025912,0.0000026014,0.0000026084,0.0000026144,0.0000026280, +0.0000026465,0.0000026549,0.0000026524,0.0000026442,0.0000026335, +0.0000026293,0.0000026409,0.0000026638,0.0000026825,0.0000026877, +0.0000026840,0.0000026742,0.0000026644,0.0000026568,0.0000026498, +0.0000026419,0.0000026337,0.0000026256,0.0000026163,0.0000026038, +0.0000025886,0.0000025729,0.0000025588,0.0000025486,0.0000025450, +0.0000025441,0.0000025485,0.0000025539,0.0000025613,0.0000025689, +0.0000025778,0.0000025906,0.0000026039,0.0000026149,0.0000026228, +0.0000026278,0.0000026302,0.0000026317,0.0000026340,0.0000026381, +0.0000026446,0.0000026529,0.0000026622,0.0000026709,0.0000026782, +0.0000026837,0.0000026886,0.0000026933,0.0000026966,0.0000026971, +0.0000026943,0.0000026902,0.0000026857,0.0000026802,0.0000026739, +0.0000026685,0.0000026646,0.0000026618,0.0000026602,0.0000026604, +0.0000026614,0.0000026636,0.0000026650,0.0000026645,0.0000026608, +0.0000026512,0.0000026360,0.0000026197,0.0000026063,0.0000025977, +0.0000025941,0.0000025937,0.0000025944,0.0000025907,0.0000025871, +0.0000026003,0.0000026296,0.0000026504,0.0000026551,0.0000026589, +0.0000026633,0.0000026654,0.0000026666,0.0000026668,0.0000026679, +0.0000026726,0.0000026816,0.0000026875,0.0000026847,0.0000026734, +0.0000026563,0.0000026394,0.0000026264,0.0000026156,0.0000026063, +0.0000025977,0.0000025842,0.0000025626,0.0000025331,0.0000025081, +0.0000025003,0.0000025053,0.0000025117,0.0000025130,0.0000025095, +0.0000025007,0.0000024902,0.0000024835,0.0000024798,0.0000024727, +0.0000024588,0.0000024397,0.0000024186,0.0000023986,0.0000023831, +0.0000023730,0.0000023679,0.0000023650,0.0000023615,0.0000023605, +0.0000023631,0.0000023741,0.0000023894,0.0000024008,0.0000024052, +0.0000024048,0.0000024029,0.0000024004,0.0000023976,0.0000023936, +0.0000023871,0.0000023790,0.0000023709,0.0000023617,0.0000023560, +0.0000023560,0.0000023605,0.0000023657,0.0000023665,0.0000023653, +0.0000023661,0.0000023726,0.0000023828,0.0000023917,0.0000023995, +0.0000024037,0.0000024052,0.0000024023,0.0000023950,0.0000023849, +0.0000023787,0.0000023787,0.0000023905,0.0000024207,0.0000024529, +0.0000024625,0.0000024609,0.0000024976,0.0000025675,0.0000026128, +0.0000026305,0.0000026512,0.0000026665,0.0000026707,0.0000026721, +0.0000026698,0.0000026634,0.0000026596,0.0000026608,0.0000026649, +0.0000026696,0.0000026741,0.0000026770,0.0000026774,0.0000026762, +0.0000026739,0.0000026708,0.0000026678,0.0000026642,0.0000026597, +0.0000026534,0.0000026448,0.0000026340,0.0000026212,0.0000026084, +0.0000025979,0.0000025899,0.0000025852,0.0000025849,0.0000025862, +0.0000025840,0.0000025723,0.0000025426,0.0000024947,0.0000024468, +0.0000024174,0.0000023997,0.0000023829,0.0000023699,0.0000023622, +0.0000023548,0.0000023455,0.0000023327,0.0000023179,0.0000023034, +0.0000022937,0.0000022882,0.0000022822,0.0000022750,0.0000022686, +0.0000022642,0.0000022611,0.0000022576,0.0000022544,0.0000022543, +0.0000022595,0.0000022666,0.0000022718,0.0000022757,0.0000022783, +0.0000022790,0.0000022790,0.0000022801,0.0000022812,0.0000022813, +0.0000022801,0.0000022794,0.0000022811,0.0000022837,0.0000022853, +0.0000022872,0.0000022899,0.0000022922,0.0000022932,0.0000022948, +0.0000022968,0.0000022959,0.0000022898,0.0000022818,0.0000022754, +0.0000022720,0.0000022699,0.0000022666,0.0000022620,0.0000022565, +0.0000022525,0.0000022521,0.0000022535,0.0000022537,0.0000022534, +0.0000022533,0.0000022524,0.0000022488,0.0000022439,0.0000022397, +0.0000022372,0.0000022360,0.0000022358,0.0000022363,0.0000022366, +0.0000022359,0.0000022334,0.0000022298,0.0000022262,0.0000022231, +0.0000022218,0.0000022228,0.0000022269,0.0000022339,0.0000022424, +0.0000022501,0.0000022551,0.0000022573,0.0000022581,0.0000022580, +0.0000022564,0.0000022540,0.0000022523,0.0000022521,0.0000022529, +0.0000022539,0.0000022553,0.0000022567,0.0000022575,0.0000022570, +0.0000022538,0.0000022481,0.0000022406,0.0000022334,0.0000022285, +0.0000022261,0.0000022255,0.0000022254,0.0000022247,0.0000022219, +0.0000022168,0.0000022113,0.0000022065,0.0000022018,0.0000021981, +0.0000021975,0.0000022010,0.0000022065,0.0000022093,0.0000022088, +0.0000022083,0.0000022113,0.0000022127,0.0000022243,0.0000022556, +0.0000022914,0.0000023197,0.0000023328,0.0000023381,0.0000023441, +0.0000023455,0.0000023442,0.0000023436,0.0000023440,0.0000023441, +0.0000023490,0.0000023709,0.0000023937,0.0000024040,0.0000024048, +0.0000024005,0.0000023941,0.0000023879,0.0000023826,0.0000023815, +0.0000023882,0.0000024071,0.0000024282,0.0000024483,0.0000024727, +0.0000024980,0.0000025141,0.0000025180,0.0000025172,0.0000025077, +0.0000024870,0.0000024634,0.0000024470,0.0000024365,0.0000024278, +0.0000024202,0.0000024150,0.0000024115,0.0000024104,0.0000024114, +0.0000024140,0.0000024170,0.0000024186,0.0000024185,0.0000024174, +0.0000024164,0.0000024158,0.0000024154,0.0000024148,0.0000024139, +0.0000024124,0.0000024101,0.0000024073,0.0000024039,0.0000023945, +0.0000023910,0.0000023879,0.0000023851,0.0000023831,0.0000023817, +0.0000023809,0.0000023810,0.0000023819,0.0000023833,0.0000023847, +0.0000023856,0.0000023858,0.0000023851,0.0000023837,0.0000023819, +0.0000023815,0.0000023834,0.0000023869,0.0000023879,0.0000023816, +0.0000023709,0.0000023661,0.0000023659,0.0000023663,0.0000023678, +0.0000023711,0.0000023757,0.0000023800,0.0000023831,0.0000023844, +0.0000023835,0.0000023801,0.0000023744,0.0000023683,0.0000023633, +0.0000023600,0.0000023573,0.0000023547,0.0000023523,0.0000023505, +0.0000023492,0.0000023483,0.0000023475,0.0000023468,0.0000023460, +0.0000023457,0.0000023470,0.0000023500,0.0000023531,0.0000023550, +0.0000023561,0.0000023568,0.0000023572,0.0000023584,0.0000023613, +0.0000023657,0.0000023699,0.0000023730,0.0000023763,0.0000023805, +0.0000023847,0.0000023879,0.0000023900,0.0000023918,0.0000023938, +0.0000023963,0.0000024006,0.0000024065,0.0000024096,0.0000024095, +0.0000024048,0.0000023954,0.0000023845,0.0000023768,0.0000023748, +0.0000023780,0.0000023832,0.0000023854,0.0000023859,0.0000023833, +0.0000023761,0.0000023724,0.0000023750,0.0000023819,0.0000023842, +0.0000023779,0.0000023666,0.0000023608,0.0000023634,0.0000023741, +0.0000023907,0.0000024097,0.0000024260,0.0000024398,0.0000024511, +0.0000024598,0.0000024710,0.0000024854,0.0000024987,0.0000025078, +0.0000025142,0.0000025200,0.0000025247,0.0000025277,0.0000025285, +0.0000025269,0.0000025217,0.0000025137,0.0000025041,0.0000024952, +0.0000024884,0.0000024833,0.0000024795,0.0000024765,0.0000024747, +0.0000024744,0.0000024743,0.0000024739,0.0000024746,0.0000024789, +0.0000024851,0.0000024937,0.0000025046,0.0000025136,0.0000025211, +0.0000025277,0.0000025303,0.0000025295,0.0000025306,0.0000025345, +0.0000025369,0.0000025390,0.0000025436,0.0000025474,0.0000025476, +0.0000025434,0.0000025348,0.0000025245,0.0000025150,0.0000025048, +0.0000024962,0.0000024939,0.0000024959,0.0000025039,0.0000025160, +0.0000025226,0.0000025209,0.0000025178,0.0000025145,0.0000025047, +0.0000024924,0.0000024863,0.0000024855,0.0000024817,0.0000024679, +0.0000024496,0.0000024366,0.0000024319,0.0000024309,0.0000024302, +0.0000024291,0.0000024289,0.0000024294,0.0000024322,0.0000024382, +0.0000024480,0.0000024597,0.0000024694,0.0000024754,0.0000024782, +0.0000024791,0.0000024791,0.0000024781,0.0000024752,0.0000024707, +0.0000024662,0.0000024633,0.0000024623,0.0000024612,0.0000024591, +0.0000024568,0.0000024540,0.0000024516,0.0000024488,0.0000024467, +0.0000024474,0.0000024527,0.0000024610,0.0000024684,0.0000024721, +0.0000024727,0.0000024725,0.0000024719,0.0000024706,0.0000024691, +0.0000024695,0.0000024714,0.0000024733,0.0000024763,0.0000024827, +0.0000024923,0.0000025024,0.0000025114,0.0000025178,0.0000025207, +0.0000025205,0.0000025195,0.0000025204,0.0000025233,0.0000025256, +0.0000025264,0.0000025264,0.0000025259,0.0000025229,0.0000025157, +0.0000025060,0.0000024976,0.0000024926,0.0000024905,0.0000024890, +0.0000024865,0.0000024829,0.0000024796,0.0000024778,0.0000024780, +0.0000024795,0.0000024805,0.0000024793,0.0000024763,0.0000024732, +0.0000024702,0.0000024662,0.0000024595,0.0000024500,0.0000024407, +0.0000024340,0.0000024225,0.0000023997,0.0000023756,0.0000023637, +0.0000023629,0.0000023636,0.0000023651,0.0000023709,0.0000023803, +0.0000023864,0.0000023869,0.0000023870,0.0000023916,0.0000024031, +0.0000024158,0.0000024252,0.0000024324,0.0000024406,0.0000024496, +0.0000024561,0.0000024597,0.0000024638,0.0000024716,0.0000024818, +0.0000024912,0.0000024988,0.0000025061,0.0000025160,0.0000025302, +0.0000025466,0.0000025596,0.0000025668,0.0000025721,0.0000025790, +0.0000025846,0.0000025847,0.0000025794,0.0000025705,0.0000025607, +0.0000025530,0.0000025489,0.0000025482,0.0000025501,0.0000025558, +0.0000025629,0.0000025679,0.0000025708,0.0000025749,0.0000025816, +0.0000025885,0.0000025930,0.0000025946,0.0000025949,0.0000025934, +0.0000025903,0.0000025871,0.0000025853,0.0000025829,0.0000025782, +0.0000025717,0.0000025654,0.0000025615,0.0000025605,0.0000025597, +0.0000025563,0.0000025505,0.0000025408,0.0000025276,0.0000025173, +0.0000025141,0.0000025148,0.0000025158,0.0000025139,0.0000025100, +0.0000025072,0.0000025077,0.0000025097,0.0000025097,0.0000025076, +0.0000025037,0.0000024982,0.0000024927,0.0000024883,0.0000024866, +0.0000024880,0.0000024935,0.0000025010,0.0000025090,0.0000025141, +0.0000025140,0.0000025062,0.0000024936,0.0000024821,0.0000024765, +0.0000024765,0.0000024804,0.0000024892,0.0000024993,0.0000025052, +0.0000025065,0.0000025065,0.0000025083,0.0000025139,0.0000025216, +0.0000025276,0.0000025295,0.0000025285,0.0000025249,0.0000025211, +0.0000025186,0.0000025176,0.0000025178,0.0000025195,0.0000025224, +0.0000025264,0.0000025319,0.0000025361,0.0000025371,0.0000025336, +0.0000025266,0.0000025196,0.0000025148,0.0000025121,0.0000025079, +0.0000025021,0.0000024996,0.0000025026,0.0000025087,0.0000025175, +0.0000025291,0.0000025395,0.0000025419,0.0000025377,0.0000025349, +0.0000025386,0.0000025447,0.0000025454,0.0000025384,0.0000025276, +0.0000025225,0.0000025241,0.0000025288,0.0000025347,0.0000025397, +0.0000025416,0.0000025423,0.0000025469,0.0000025575,0.0000025708, +0.0000025823,0.0000025897,0.0000025922,0.0000025896,0.0000025798, +0.0000025652,0.0000025495,0.0000025361,0.0000025250,0.0000025133, +0.0000025002,0.0000024870,0.0000024759,0.0000024695,0.0000024674, +0.0000024670,0.0000024667,0.0000024657,0.0000024641,0.0000024613, +0.0000024548,0.0000024420,0.0000024234,0.0000024032,0.0000023873, +0.0000023793,0.0000023782,0.0000023803,0.0000023842,0.0000023869, +0.0000023873,0.0000023860,0.0000023825,0.0000023784,0.0000023743, +0.0000023706,0.0000023681,0.0000023668,0.0000023658,0.0000023644, +0.0000023627,0.0000023608,0.0000023588,0.0000023560,0.0000023520, +0.0000023466,0.0000023406,0.0000023345,0.0000023284,0.0000023225, +0.0000023180,0.0000023158,0.0000023137,0.0000023120,0.0000023122, +0.0000023133,0.0000023135,0.0000023116,0.0000023085,0.0000023066, +0.0000023069,0.0000023087,0.0000023103,0.0000023105,0.0000023092, +0.0000023061,0.0000023037,0.0000023042,0.0000023063,0.0000023054, +0.0000023004,0.0000022944,0.0000022913,0.0000022908,0.0000022922, +0.0000022963,0.0000023025,0.0000023092,0.0000023150,0.0000023183, +0.0000023194,0.0000023179,0.0000023131,0.0000023067,0.0000022979, +0.0000022895,0.0000022832,0.0000022798,0.0000022766,0.0000022759, +0.0000022741,0.0000022750,0.0000022785,0.0000022866,0.0000022982, +0.0000023113,0.0000023247,0.0000023366,0.0000023462,0.0000023542, +0.0000023637,0.0000023711,0.0000023729,0.0000023707,0.0000023673, +0.0000023705,0.0000023897,0.0000024138,0.0000024257,0.0000024316, +0.0000024410,0.0000024529,0.0000024759,0.0000025120,0.0000025438, +0.0000025558,0.0000025676,0.0000026036,0.0000026399,0.0000026488, +0.0000026408,0.0000026261,0.0000026125,0.0000026051,0.0000025897, +0.0000025376,0.0000025000,0.0000024746,0.0000024581,0.0000024376, +0.0000024051,0.0000023906,0.0000023940,0.0000024000,0.0000024042, +0.0000024079,0.0000024083,0.0000024244,0.0000024686,0.0000024923, +0.0000024856,0.0000025416,0.0000025956,0.0000026032,0.0000025952, +0.0000025870,0.0000025230,0.0000024658,0.0000024609,0.0000024673, +0.0000024732,0.0000024686,0.0000024487,0.0000024213,0.0000023978, +0.0000023853,0.0000023817,0.0000023836,0.0000023911,0.0000023984, +0.0000024031,0.0000024078,0.0000024120,0.0000024153,0.0000024210, +0.0000024256,0.0000024283,0.0000024320,0.0000024375,0.0000024475, +0.0000024583,0.0000024625,0.0000024621,0.0000024583,0.0000024544, +0.0000024553,0.0000024591,0.0000024628,0.0000024654,0.0000024661, +0.0000024677,0.0000024700,0.0000024753,0.0000024815,0.0000024864, +0.0000024888,0.0000024873,0.0000024829,0.0000024778,0.0000024731, +0.0000024707,0.0000024710,0.0000024744,0.0000024781,0.0000024779, +0.0000024730,0.0000024666,0.0000024612,0.0000024549,0.0000024488, +0.0000024469,0.0000024494,0.0000024548,0.0000024633,0.0000024728, +0.0000024801,0.0000024831,0.0000024831,0.0000024823,0.0000024825, +0.0000024855,0.0000024904,0.0000024961,0.0000025012,0.0000025044, +0.0000025064,0.0000025086,0.0000025131,0.0000025200,0.0000025262, +0.0000025307,0.0000025336,0.0000025376,0.0000025436,0.0000025547, +0.0000025739,0.0000025921,0.0000026053,0.0000026175,0.0000026260, +0.0000026269,0.0000026193,0.0000026076,0.0000025974,0.0000025876, +0.0000025822,0.0000025849,0.0000025912,0.0000025932,0.0000025910, +0.0000025876,0.0000025840,0.0000025796,0.0000025761,0.0000025767, +0.0000025825,0.0000025881,0.0000025884,0.0000025859,0.0000025845, +0.0000025849,0.0000025840,0.0000025807,0.0000025757,0.0000025684, +0.0000025592,0.0000025512,0.0000025474,0.0000025471,0.0000025486, +0.0000025501,0.0000025520,0.0000025547,0.0000025551,0.0000025499, +0.0000025408,0.0000025350,0.0000025326,0.0000025284,0.0000025173, +0.0000025020,0.0000024879,0.0000024769,0.0000024684,0.0000024618, +0.0000024573,0.0000024546,0.0000024536,0.0000024535,0.0000024539, +0.0000024547,0.0000024553,0.0000024554,0.0000024549,0.0000024552, +0.0000024568,0.0000024601,0.0000024636,0.0000024659,0.0000024668, +0.0000024668,0.0000024663,0.0000024656,0.0000024650,0.0000024647, +0.0000024651,0.0000024659,0.0000024668,0.0000024681,0.0000024685, +0.0000024629,0.0000024485,0.0000024335,0.0000024205,0.0000024043, +0.0000023915,0.0000023865,0.0000023707,0.0000023297,0.0000022851, +0.0000022617,0.0000022523,0.0000022417,0.0000022318,0.0000022266, +0.0000022217,0.0000022133,0.0000022072,0.0000022127,0.0000022322, +0.0000022481,0.0000022558,0.0000022720,0.0000023005,0.0000023271, +0.0000023427,0.0000023554,0.0000023807,0.0000024128,0.0000024331, +0.0000024494,0.0000024732,0.0000024912,0.0000024975,0.0000024994, +0.0000024981,0.0000024919,0.0000024858,0.0000024821,0.0000024777, +0.0000024705,0.0000024635,0.0000024597,0.0000024578,0.0000024544, +0.0000024478,0.0000024403,0.0000024372,0.0000024422,0.0000024590, +0.0000024767,0.0000024823,0.0000024802,0.0000024798,0.0000024877, +0.0000024996,0.0000025071,0.0000025101,0.0000025127,0.0000025172, +0.0000025199,0.0000025178,0.0000025111,0.0000025078,0.0000025090, +0.0000025139,0.0000025199,0.0000025252,0.0000025282,0.0000025295, +0.0000025322,0.0000025387,0.0000025473,0.0000025534,0.0000025547, +0.0000025528,0.0000025486,0.0000025453,0.0000025455,0.0000025491, +0.0000025514,0.0000025507,0.0000025468,0.0000025420,0.0000025399, +0.0000025405,0.0000025439,0.0000025481,0.0000025503,0.0000025507, +0.0000025506,0.0000025501,0.0000025497,0.0000025508,0.0000025544, +0.0000025581,0.0000025602,0.0000025603,0.0000025592,0.0000025556, +0.0000025513,0.0000025492,0.0000025506,0.0000025557,0.0000025618, +0.0000025637,0.0000025619,0.0000025608,0.0000025621,0.0000025658, +0.0000025715,0.0000025784,0.0000025863,0.0000025944,0.0000026012, +0.0000026069,0.0000026186,0.0000026375,0.0000026506,0.0000026509, +0.0000026443,0.0000026344,0.0000026271,0.0000026317,0.0000026502, +0.0000026699,0.0000026787,0.0000026759,0.0000026653,0.0000026542, +0.0000026462,0.0000026395,0.0000026320,0.0000026226,0.0000026095, +0.0000025930,0.0000025767,0.0000025648,0.0000025569,0.0000025521, +0.0000025518,0.0000025545,0.0000025585,0.0000025607,0.0000025625, +0.0000025657,0.0000025706,0.0000025781,0.0000025890,0.0000025996, +0.0000026079,0.0000026139,0.0000026181,0.0000026207,0.0000026222, +0.0000026230,0.0000026235,0.0000026240,0.0000026258,0.0000026288, +0.0000026324,0.0000026366,0.0000026416,0.0000026483,0.0000026570, +0.0000026662,0.0000026736,0.0000026776,0.0000026786,0.0000026770, +0.0000026731,0.0000026677,0.0000026632,0.0000026607,0.0000026597, +0.0000026597,0.0000026605,0.0000026622,0.0000026634,0.0000026615, +0.0000026554,0.0000026426,0.0000026247,0.0000026067,0.0000025936, +0.0000025859,0.0000025820,0.0000025819,0.0000025845,0.0000025856, +0.0000025825,0.0000025899,0.0000026182,0.0000026454,0.0000026541, +0.0000026569,0.0000026612,0.0000026638,0.0000026651,0.0000026658, +0.0000026661,0.0000026689,0.0000026771,0.0000026856,0.0000026872, +0.0000026806,0.0000026677,0.0000026513,0.0000026358,0.0000026231, +0.0000026129,0.0000026044,0.0000025936,0.0000025764,0.0000025500, +0.0000025196,0.0000025030,0.0000025037,0.0000025104,0.0000025162, +0.0000025168,0.0000025092,0.0000024956,0.0000024851,0.0000024799, +0.0000024734,0.0000024620,0.0000024476,0.0000024319,0.0000024145, +0.0000023962,0.0000023809,0.0000023707,0.0000023658,0.0000023627, +0.0000023580,0.0000023541,0.0000023541,0.0000023603,0.0000023715, +0.0000023838,0.0000023934,0.0000023981,0.0000023990,0.0000023986, +0.0000023974,0.0000023949,0.0000023902,0.0000023832,0.0000023751, +0.0000023653,0.0000023558,0.0000023498,0.0000023483,0.0000023521, +0.0000023546,0.0000023539,0.0000023534,0.0000023572,0.0000023672, +0.0000023785,0.0000023887,0.0000023945,0.0000023979,0.0000023984, +0.0000023955,0.0000023879,0.0000023795,0.0000023784,0.0000023829, +0.0000024044,0.0000024385,0.0000024615,0.0000024592,0.0000024698, +0.0000025269,0.0000025881,0.0000026168,0.0000026284,0.0000026466, +0.0000026592,0.0000026602,0.0000026608,0.0000026618,0.0000026607, +0.0000026594,0.0000026594,0.0000026604,0.0000026627,0.0000026645, +0.0000026658,0.0000026659,0.0000026652,0.0000026635,0.0000026607, +0.0000026555,0.0000026475,0.0000026365,0.0000026230,0.0000026092, +0.0000025966,0.0000025867,0.0000025807,0.0000025788,0.0000025805, +0.0000025831,0.0000025829,0.0000025767,0.0000025577,0.0000025222, +0.0000024763,0.0000024379,0.0000024165,0.0000024016,0.0000023855, +0.0000023718,0.0000023630,0.0000023545,0.0000023433,0.0000023303, +0.0000023173,0.0000023030,0.0000022916,0.0000022852,0.0000022815, +0.0000022769,0.0000022710,0.0000022661,0.0000022631,0.0000022603, +0.0000022567,0.0000022537,0.0000022535,0.0000022583,0.0000022654, +0.0000022702,0.0000022728,0.0000022742,0.0000022743,0.0000022753, +0.0000022767,0.0000022769,0.0000022755,0.0000022742,0.0000022748, +0.0000022772,0.0000022786,0.0000022791,0.0000022806,0.0000022842, +0.0000022875,0.0000022893,0.0000022918,0.0000022947,0.0000022932, +0.0000022859,0.0000022780,0.0000022719,0.0000022678,0.0000022647, +0.0000022616,0.0000022578,0.0000022536,0.0000022512,0.0000022518, +0.0000022535,0.0000022538,0.0000022532,0.0000022515,0.0000022475, +0.0000022408,0.0000022339,0.0000022285,0.0000022250,0.0000022231, +0.0000022225,0.0000022232,0.0000022244,0.0000022249,0.0000022240, +0.0000022217,0.0000022190,0.0000022166,0.0000022147,0.0000022142, +0.0000022147,0.0000022166,0.0000022207,0.0000022274,0.0000022355, +0.0000022421,0.0000022464,0.0000022485,0.0000022483,0.0000022461, +0.0000022436,0.0000022427,0.0000022431,0.0000022438,0.0000022448, +0.0000022454,0.0000022450,0.0000022426,0.0000022377,0.0000022312, +0.0000022252,0.0000022211,0.0000022195,0.0000022191,0.0000022191, +0.0000022193,0.0000022191,0.0000022169,0.0000022127,0.0000022084, +0.0000022049,0.0000022011,0.0000021976,0.0000021961,0.0000021968, +0.0000022004,0.0000022038,0.0000022035,0.0000022026,0.0000022055, +0.0000022085,0.0000022200,0.0000022509,0.0000022883,0.0000023179, +0.0000023309,0.0000023361,0.0000023423,0.0000023436,0.0000023416, +0.0000023404,0.0000023409,0.0000023411,0.0000023448,0.0000023649, +0.0000023888,0.0000024009,0.0000024029,0.0000024001,0.0000023946, +0.0000023888,0.0000023838,0.0000023801,0.0000023799,0.0000023883, +0.0000024058,0.0000024245,0.0000024420,0.0000024622,0.0000024852, +0.0000025041,0.0000025140,0.0000025145,0.0000025112,0.0000024970, +0.0000024736,0.0000024521,0.0000024371,0.0000024254,0.0000024156, +0.0000024083,0.0000024038,0.0000024019,0.0000024033,0.0000024062, +0.0000024088,0.0000024106,0.0000024122,0.0000024136,0.0000024147, +0.0000024147,0.0000024132,0.0000024106,0.0000024075,0.0000024040, +0.0000024008,0.0000023976,0.0000023957,0.0000023924,0.0000023894, +0.0000023869,0.0000023853,0.0000023845,0.0000023845,0.0000023849, +0.0000023859,0.0000023878,0.0000023898,0.0000023909,0.0000023910, +0.0000023898,0.0000023870,0.0000023840,0.0000023834,0.0000023857, +0.0000023883,0.0000023876,0.0000023782,0.0000023673,0.0000023633, +0.0000023633,0.0000023648,0.0000023679,0.0000023719,0.0000023760, +0.0000023796,0.0000023817,0.0000023811,0.0000023776,0.0000023720, +0.0000023663,0.0000023622,0.0000023597,0.0000023567,0.0000023529, +0.0000023495,0.0000023477,0.0000023471,0.0000023476,0.0000023473, +0.0000023465,0.0000023454,0.0000023450,0.0000023446,0.0000023438, +0.0000023438,0.0000023465,0.0000023507,0.0000023535,0.0000023550, +0.0000023559,0.0000023568,0.0000023588,0.0000023624,0.0000023670, +0.0000023712,0.0000023755,0.0000023804,0.0000023848,0.0000023883, +0.0000023906,0.0000023918,0.0000023932,0.0000023951,0.0000023981, +0.0000024030,0.0000024068,0.0000024074,0.0000024052,0.0000023985, +0.0000023884,0.0000023785,0.0000023726,0.0000023724,0.0000023778, +0.0000023838,0.0000023859,0.0000023863,0.0000023817,0.0000023745, +0.0000023724,0.0000023762,0.0000023814,0.0000023812,0.0000023728, +0.0000023633,0.0000023610,0.0000023656,0.0000023768,0.0000023930, +0.0000024112,0.0000024262,0.0000024389,0.0000024495,0.0000024580, +0.0000024674,0.0000024793,0.0000024913,0.0000025013,0.0000025092, +0.0000025151,0.0000025191,0.0000025208,0.0000025205,0.0000025169, +0.0000025100,0.0000025009,0.0000024915,0.0000024844,0.0000024795, +0.0000024759,0.0000024724,0.0000024693,0.0000024677,0.0000024677, +0.0000024677,0.0000024675,0.0000024681,0.0000024718,0.0000024790, +0.0000024903,0.0000025026,0.0000025120,0.0000025193,0.0000025239, +0.0000025238,0.0000025228,0.0000025260,0.0000025306,0.0000025335, +0.0000025384,0.0000025446,0.0000025466,0.0000025446,0.0000025375, +0.0000025274,0.0000025172,0.0000025068,0.0000024971,0.0000024922, +0.0000024926,0.0000024964,0.0000025060,0.0000025157,0.0000025169, +0.0000025130,0.0000025104,0.0000025047,0.0000024932,0.0000024844, +0.0000024831,0.0000024819,0.0000024706,0.0000024518,0.0000024379, +0.0000024333,0.0000024330,0.0000024330,0.0000024323,0.0000024312, +0.0000024305,0.0000024301,0.0000024298,0.0000024317,0.0000024377, +0.0000024474,0.0000024580,0.0000024667,0.0000024726,0.0000024765, +0.0000024786,0.0000024780,0.0000024744,0.0000024689,0.0000024644, +0.0000024622,0.0000024611,0.0000024599,0.0000024586,0.0000024576, +0.0000024565,0.0000024540,0.0000024505,0.0000024483,0.0000024501, +0.0000024564,0.0000024640,0.0000024687,0.0000024700,0.0000024699, +0.0000024695,0.0000024686,0.0000024674,0.0000024676,0.0000024700, +0.0000024727,0.0000024751,0.0000024791,0.0000024860,0.0000024953, +0.0000025048,0.0000025123,0.0000025170,0.0000025185,0.0000025177, +0.0000025164,0.0000025174,0.0000025211,0.0000025249,0.0000025272, +0.0000025284,0.0000025287,0.0000025271,0.0000025208,0.0000025106, +0.0000025001,0.0000024925,0.0000024881,0.0000024853,0.0000024825, +0.0000024799,0.0000024786,0.0000024788,0.0000024803,0.0000024821, +0.0000024828,0.0000024811,0.0000024773,0.0000024734,0.0000024696, +0.0000024648,0.0000024580,0.0000024493,0.0000024414,0.0000024356, +0.0000024238,0.0000023989,0.0000023724,0.0000023604,0.0000023599, +0.0000023609,0.0000023619,0.0000023669,0.0000023755,0.0000023804, +0.0000023793,0.0000023781,0.0000023825,0.0000023951,0.0000024091, +0.0000024193,0.0000024273,0.0000024367,0.0000024468,0.0000024544, +0.0000024589,0.0000024636,0.0000024718,0.0000024822,0.0000024915, +0.0000024988,0.0000025053,0.0000025121,0.0000025210,0.0000025344, +0.0000025498,0.0000025603,0.0000025632,0.0000025643,0.0000025684, +0.0000025737,0.0000025755,0.0000025703,0.0000025611,0.0000025526, +0.0000025474,0.0000025452,0.0000025462,0.0000025510,0.0000025588, +0.0000025664,0.0000025718,0.0000025762,0.0000025817,0.0000025878, +0.0000025923,0.0000025939,0.0000025937,0.0000025919,0.0000025892, +0.0000025865,0.0000025848,0.0000025825,0.0000025784,0.0000025737, +0.0000025694,0.0000025659,0.0000025638,0.0000025606,0.0000025531, +0.0000025412,0.0000025263,0.0000025120,0.0000025039,0.0000025041, +0.0000025081,0.0000025113,0.0000025111,0.0000025079,0.0000025037, +0.0000025020,0.0000025030,0.0000025035,0.0000025019,0.0000024982, +0.0000024929,0.0000024871,0.0000024817,0.0000024772,0.0000024750, +0.0000024752,0.0000024787,0.0000024855,0.0000024941,0.0000025019, +0.0000025054,0.0000025006,0.0000024899,0.0000024775,0.0000024738, +0.0000024764,0.0000024834,0.0000024933,0.0000025014,0.0000025046, +0.0000025049,0.0000025051,0.0000025088,0.0000025157,0.0000025220, +0.0000025248,0.0000025244,0.0000025209,0.0000025162,0.0000025127, +0.0000025120,0.0000025134,0.0000025155,0.0000025169,0.0000025203, +0.0000025263,0.0000025326,0.0000025375,0.0000025395,0.0000025379, +0.0000025310,0.0000025227,0.0000025179,0.0000025150,0.0000025080, +0.0000024995,0.0000024969,0.0000025013,0.0000025094,0.0000025177, +0.0000025300,0.0000025412,0.0000025427,0.0000025383,0.0000025368, +0.0000025409,0.0000025454,0.0000025440,0.0000025356,0.0000025257, +0.0000025233,0.0000025260,0.0000025302,0.0000025351,0.0000025388, +0.0000025396,0.0000025393,0.0000025423,0.0000025511,0.0000025614, +0.0000025673,0.0000025680,0.0000025649,0.0000025563,0.0000025424, +0.0000025256,0.0000025102,0.0000024991,0.0000024910,0.0000024830, +0.0000024736,0.0000024628,0.0000024530,0.0000024476,0.0000024461, +0.0000024457,0.0000024441,0.0000024402,0.0000024346,0.0000024273, +0.0000024171,0.0000024048,0.0000023934,0.0000023860,0.0000023835, +0.0000023857,0.0000023893,0.0000023908,0.0000023894,0.0000023864, +0.0000023833,0.0000023799,0.0000023763,0.0000023724,0.0000023680, +0.0000023638,0.0000023607,0.0000023580,0.0000023549,0.0000023514, +0.0000023482,0.0000023452,0.0000023422,0.0000023390,0.0000023350, +0.0000023305,0.0000023259,0.0000023214,0.0000023161,0.0000023103, +0.0000023062,0.0000023041,0.0000023026,0.0000023012,0.0000023014, +0.0000023038,0.0000023061,0.0000023055,0.0000023024,0.0000022992, +0.0000022984,0.0000023001,0.0000023029,0.0000023052,0.0000023058, +0.0000023036,0.0000022984,0.0000022947,0.0000022956,0.0000022985, +0.0000022979,0.0000022932,0.0000022887,0.0000022874,0.0000022883, +0.0000022913,0.0000022953,0.0000022998,0.0000023046,0.0000023093, +0.0000023133,0.0000023148,0.0000023150,0.0000023117,0.0000023051, +0.0000022983,0.0000022921,0.0000022870,0.0000022823,0.0000022777, +0.0000022739,0.0000022702,0.0000022673,0.0000022692,0.0000022755, +0.0000022863,0.0000022994,0.0000023130,0.0000023257,0.0000023386, +0.0000023538,0.0000023679,0.0000023747,0.0000023751,0.0000023695, +0.0000023666,0.0000023758,0.0000024000,0.0000024195,0.0000024252, +0.0000024310,0.0000024414,0.0000024568,0.0000024862,0.0000025228, +0.0000025467,0.0000025536,0.0000025771,0.0000026207,0.0000026495, +0.0000026485,0.0000026342,0.0000026191,0.0000026094,0.0000025981, +0.0000025499,0.0000025058,0.0000024790,0.0000024624,0.0000024415, +0.0000024037,0.0000023841,0.0000023890,0.0000024005,0.0000024078, +0.0000024119,0.0000024114,0.0000024151,0.0000024493,0.0000024887, +0.0000024855,0.0000025118,0.0000025788,0.0000026041,0.0000025989, +0.0000025929,0.0000025303,0.0000024687,0.0000024615,0.0000024691, +0.0000024737,0.0000024644,0.0000024377,0.0000024070,0.0000023886, +0.0000023846,0.0000023857,0.0000023907,0.0000023992,0.0000024062, +0.0000024098,0.0000024124,0.0000024140,0.0000024157,0.0000024193, +0.0000024222,0.0000024252,0.0000024294,0.0000024361,0.0000024482, +0.0000024588,0.0000024617,0.0000024609,0.0000024567,0.0000024518, +0.0000024518,0.0000024550,0.0000024588,0.0000024618,0.0000024634, +0.0000024659,0.0000024681,0.0000024720,0.0000024761,0.0000024793, +0.0000024802,0.0000024782,0.0000024734,0.0000024677,0.0000024643, +0.0000024645,0.0000024670,0.0000024714,0.0000024758,0.0000024768, +0.0000024728,0.0000024656,0.0000024604,0.0000024558,0.0000024510, +0.0000024494,0.0000024524,0.0000024574,0.0000024630,0.0000024696, +0.0000024762,0.0000024811,0.0000024840,0.0000024859,0.0000024865, +0.0000024883,0.0000024899,0.0000024924,0.0000024957,0.0000024980, +0.0000024980,0.0000024962,0.0000024972,0.0000025047,0.0000025151, +0.0000025242,0.0000025308,0.0000025354,0.0000025407,0.0000025490, +0.0000025659,0.0000025848,0.0000025968,0.0000026079,0.0000026184, +0.0000026214,0.0000026166,0.0000026058,0.0000025931,0.0000025806, +0.0000025757,0.0000025800,0.0000025868,0.0000025882,0.0000025862, +0.0000025841,0.0000025824,0.0000025790,0.0000025744,0.0000025717, +0.0000025743,0.0000025807,0.0000025837,0.0000025834,0.0000025836, +0.0000025854,0.0000025854,0.0000025824,0.0000025760,0.0000025678, +0.0000025595,0.0000025525,0.0000025493,0.0000025485,0.0000025489, +0.0000025502,0.0000025537,0.0000025560,0.0000025539,0.0000025460, +0.0000025398,0.0000025372,0.0000025319,0.0000025179,0.0000024994, +0.0000024844,0.0000024754,0.0000024694,0.0000024643,0.0000024583, +0.0000024519,0.0000024467,0.0000024425,0.0000024395,0.0000024377, +0.0000024365,0.0000024365,0.0000024372,0.0000024375,0.0000024371, +0.0000024365,0.0000024374,0.0000024398,0.0000024426,0.0000024448, +0.0000024465,0.0000024481,0.0000024498,0.0000024519,0.0000024549, +0.0000024586,0.0000024627,0.0000024660,0.0000024670,0.0000024640, +0.0000024526,0.0000024393,0.0000024286,0.0000024143,0.0000023975, +0.0000023896,0.0000023842,0.0000023584,0.0000023124,0.0000022746, +0.0000022586,0.0000022491,0.0000022368,0.0000022276,0.0000022238, +0.0000022213,0.0000022149,0.0000022063,0.0000022064,0.0000022222, +0.0000022422,0.0000022520,0.0000022609,0.0000022824,0.0000023113, +0.0000023335,0.0000023443,0.0000023561,0.0000023831,0.0000024146, +0.0000024327,0.0000024483,0.0000024713,0.0000024883,0.0000024941, +0.0000024964,0.0000024954,0.0000024891,0.0000024818,0.0000024744, +0.0000024655,0.0000024585,0.0000024549,0.0000024514,0.0000024469, +0.0000024423,0.0000024372,0.0000024331,0.0000024349,0.0000024483, +0.0000024689,0.0000024822,0.0000024831,0.0000024804,0.0000024831, +0.0000024922,0.0000025001,0.0000025032,0.0000025048,0.0000025092, +0.0000025157,0.0000025183,0.0000025139,0.0000025085,0.0000025078, +0.0000025119,0.0000025193,0.0000025260,0.0000025293,0.0000025300, +0.0000025308,0.0000025342,0.0000025408,0.0000025480,0.0000025519, +0.0000025521,0.0000025503,0.0000025475,0.0000025462,0.0000025479, +0.0000025504,0.0000025503,0.0000025466,0.0000025411,0.0000025376, +0.0000025376,0.0000025404,0.0000025450,0.0000025485,0.0000025492, +0.0000025489,0.0000025482,0.0000025469,0.0000025459,0.0000025467, +0.0000025501,0.0000025544,0.0000025573,0.0000025588,0.0000025591, +0.0000025582,0.0000025547,0.0000025508,0.0000025497,0.0000025527, +0.0000025580,0.0000025599,0.0000025588,0.0000025585,0.0000025602, +0.0000025628,0.0000025672,0.0000025738,0.0000025815,0.0000025887, +0.0000025951,0.0000026011,0.0000026103,0.0000026272,0.0000026441, +0.0000026485,0.0000026441,0.0000026363,0.0000026276,0.0000026254, +0.0000026356,0.0000026530,0.0000026648,0.0000026655,0.0000026573, +0.0000026460,0.0000026372,0.0000026300,0.0000026206,0.0000026061, +0.0000025869,0.0000025691,0.0000025592,0.0000025567,0.0000025581, +0.0000025617,0.0000025682,0.0000025738,0.0000025753,0.0000025737, +0.0000025715,0.0000025710,0.0000025729,0.0000025777,0.0000025847, +0.0000025912,0.0000025967,0.0000026021,0.0000026074,0.0000026113, +0.0000026135,0.0000026137,0.0000026123,0.0000026104,0.0000026092, +0.0000026082,0.0000026072,0.0000026068,0.0000026078,0.0000026110, +0.0000026169,0.0000026249,0.0000026335,0.0000026411,0.0000026461, +0.0000026481,0.0000026482,0.0000026479,0.0000026485,0.0000026505, +0.0000026528,0.0000026542,0.0000026547,0.0000026535,0.0000026500, +0.0000026427,0.0000026306,0.0000026134,0.0000025949,0.0000025806, +0.0000025718,0.0000025664,0.0000025645,0.0000025685,0.0000025753, +0.0000025774,0.0000025824,0.0000026065,0.0000026381,0.0000026525, +0.0000026549,0.0000026587,0.0000026627,0.0000026652,0.0000026664, +0.0000026664,0.0000026679,0.0000026738,0.0000026827,0.0000026869, +0.0000026841,0.0000026751,0.0000026618,0.0000026461,0.0000026313, +0.0000026196,0.0000026103,0.0000026007,0.0000025874,0.0000025661, +0.0000025368,0.0000025124,0.0000025050,0.0000025087,0.0000025164, +0.0000025211,0.0000025185,0.0000025056,0.0000024902,0.0000024805, +0.0000024728,0.0000024625,0.0000024513,0.0000024404,0.0000024283, +0.0000024131,0.0000023958,0.0000023802,0.0000023691,0.0000023640, +0.0000023611,0.0000023560,0.0000023507,0.0000023494,0.0000023515, +0.0000023570,0.0000023655,0.0000023759,0.0000023849,0.0000023902, +0.0000023928,0.0000023940,0.0000023939,0.0000023911,0.0000023854, +0.0000023780,0.0000023687,0.0000023579,0.0000023479,0.0000023419, +0.0000023413,0.0000023438,0.0000023445,0.0000023439,0.0000023444, +0.0000023506,0.0000023610,0.0000023721,0.0000023799,0.0000023849, +0.0000023877,0.0000023888,0.0000023869,0.0000023805,0.0000023764, +0.0000023783,0.0000023909,0.0000024208,0.0000024521,0.0000024611, +0.0000024585,0.0000024868,0.0000025511,0.0000025980,0.0000026146, +0.0000026226,0.0000026383,0.0000026499,0.0000026508,0.0000026486, +0.0000026487,0.0000026512,0.0000026540,0.0000026561,0.0000026579, +0.0000026594,0.0000026599,0.0000026592,0.0000026574,0.0000026535, +0.0000026477,0.0000026393,0.0000026286,0.0000026165,0.0000026042, +0.0000025929,0.0000025840,0.0000025785,0.0000025762,0.0000025768, +0.0000025783,0.0000025776,0.0000025725,0.0000025581,0.0000025309, +0.0000024926,0.0000024539,0.0000024278,0.0000024141,0.0000024021, +0.0000023879,0.0000023751,0.0000023648,0.0000023539,0.0000023406, +0.0000023277,0.0000023169,0.0000023053,0.0000022928,0.0000022828, +0.0000022783,0.0000022766,0.0000022727,0.0000022678,0.0000022651, +0.0000022631,0.0000022601,0.0000022563,0.0000022530,0.0000022523, +0.0000022568,0.0000022637,0.0000022679,0.0000022697,0.0000022701, +0.0000022711,0.0000022730,0.0000022738,0.0000022726,0.0000022707, +0.0000022705,0.0000022717,0.0000022731,0.0000022735,0.0000022737, +0.0000022758,0.0000022803,0.0000022843,0.0000022864,0.0000022893, +0.0000022919,0.0000022897,0.0000022825,0.0000022753,0.0000022691, +0.0000022638,0.0000022594,0.0000022562,0.0000022530,0.0000022502, +0.0000022492,0.0000022500,0.0000022515,0.0000022514,0.0000022492, +0.0000022443,0.0000022372,0.0000022295,0.0000022230,0.0000022176, +0.0000022131,0.0000022100,0.0000022083,0.0000022081,0.0000022087, +0.0000022091,0.0000022085,0.0000022064,0.0000022038,0.0000022019, +0.0000022015,0.0000022025,0.0000022055,0.0000022093,0.0000022126, +0.0000022153,0.0000022182,0.0000022218,0.0000022252,0.0000022278, +0.0000022295,0.0000022299,0.0000022296,0.0000022295,0.0000022296, +0.0000022298,0.0000022294,0.0000022280,0.0000022255,0.0000022225, +0.0000022197,0.0000022173,0.0000022156,0.0000022147,0.0000022140, +0.0000022129,0.0000022124,0.0000022128,0.0000022131,0.0000022119, +0.0000022097,0.0000022075,0.0000022058,0.0000022036,0.0000022006, +0.0000021977,0.0000021963,0.0000021974,0.0000021998,0.0000022001, +0.0000021985,0.0000022000,0.0000022041,0.0000022159,0.0000022461, +0.0000022847,0.0000023154,0.0000023286,0.0000023338,0.0000023402, +0.0000023413,0.0000023385,0.0000023366,0.0000023369,0.0000023377, +0.0000023406,0.0000023576,0.0000023822,0.0000023969,0.0000024000, +0.0000023984,0.0000023939,0.0000023884,0.0000023836,0.0000023799, +0.0000023770,0.0000023771,0.0000023847,0.0000023994,0.0000024158, +0.0000024305,0.0000024460,0.0000024653,0.0000024859,0.0000025022, +0.0000025107,0.0000025120,0.0000025052,0.0000024845,0.0000024592, +0.0000024388,0.0000024241,0.0000024129,0.0000024049,0.0000024003, +0.0000023982,0.0000023970,0.0000023977,0.0000023995,0.0000024025, +0.0000024063,0.0000024099,0.0000024121,0.0000024122,0.0000024107, +0.0000024083,0.0000024055,0.0000024023,0.0000023989,0.0000023992, +0.0000023972,0.0000023953,0.0000023941,0.0000023945,0.0000023955, +0.0000023961,0.0000023959,0.0000023954,0.0000023957,0.0000023970, +0.0000023982,0.0000023982,0.0000023955,0.0000023902,0.0000023858, +0.0000023851,0.0000023873,0.0000023886,0.0000023848,0.0000023731, +0.0000023631,0.0000023604,0.0000023614,0.0000023649,0.0000023690, +0.0000023727,0.0000023761,0.0000023788,0.0000023790,0.0000023758, +0.0000023701,0.0000023645,0.0000023611,0.0000023597,0.0000023568, +0.0000023515,0.0000023469,0.0000023461,0.0000023479,0.0000023502, +0.0000023511,0.0000023507,0.0000023495,0.0000023475,0.0000023451, +0.0000023439,0.0000023438,0.0000023428,0.0000023424,0.0000023452, +0.0000023499,0.0000023526,0.0000023537,0.0000023551,0.0000023574, +0.0000023610,0.0000023653,0.0000023698,0.0000023748,0.0000023805, +0.0000023855,0.0000023892,0.0000023913,0.0000023917,0.0000023921, +0.0000023935,0.0000023956,0.0000023993,0.0000024029,0.0000024043, +0.0000024036,0.0000023997,0.0000023920,0.0000023823,0.0000023738, +0.0000023700,0.0000023723,0.0000023798,0.0000023851,0.0000023872, +0.0000023862,0.0000023794,0.0000023735,0.0000023731,0.0000023765, +0.0000023798,0.0000023773,0.0000023687,0.0000023621,0.0000023613, +0.0000023672,0.0000023784,0.0000023942,0.0000024113,0.0000024253, +0.0000024364,0.0000024464,0.0000024551,0.0000024636,0.0000024732, +0.0000024831,0.0000024929,0.0000025011,0.0000025067,0.0000025098, +0.0000025105,0.0000025087,0.0000025043,0.0000024980,0.0000024906, +0.0000024829,0.0000024767,0.0000024722,0.0000024688,0.0000024654, +0.0000024623,0.0000024608,0.0000024607,0.0000024611,0.0000024617, +0.0000024629,0.0000024656,0.0000024728,0.0000024857,0.0000024996, +0.0000025099,0.0000025166,0.0000025181,0.0000025164,0.0000025170, +0.0000025222,0.0000025269,0.0000025323,0.0000025402,0.0000025459, +0.0000025462,0.0000025403,0.0000025306,0.0000025198,0.0000025091, +0.0000024985,0.0000024915,0.0000024904,0.0000024919,0.0000024980, +0.0000025078,0.0000025127,0.0000025096,0.0000025051,0.0000025022, +0.0000024944,0.0000024845,0.0000024808,0.0000024804,0.0000024719, +0.0000024543,0.0000024397,0.0000024348,0.0000024346,0.0000024349, +0.0000024343,0.0000024328,0.0000024317,0.0000024312,0.0000024304, +0.0000024292,0.0000024289,0.0000024307,0.0000024357,0.0000024441, +0.0000024543,0.0000024643,0.0000024719,0.0000024762,0.0000024770, +0.0000024742,0.0000024698,0.0000024653,0.0000024623,0.0000024606, +0.0000024596,0.0000024595,0.0000024595,0.0000024583,0.0000024552, +0.0000024518,0.0000024509,0.0000024542,0.0000024604,0.0000024655, +0.0000024675,0.0000024675,0.0000024672,0.0000024665,0.0000024656, +0.0000024656,0.0000024678,0.0000024711,0.0000024743,0.0000024776, +0.0000024824,0.0000024897,0.0000024983,0.0000025057,0.0000025109, +0.0000025142,0.0000025153,0.0000025149,0.0000025144,0.0000025155, +0.0000025190,0.0000025236,0.0000025276,0.0000025299,0.0000025312, +0.0000025310,0.0000025269,0.0000025176,0.0000025052,0.0000024937, +0.0000024858,0.0000024815,0.0000024790,0.0000024780,0.0000024785, +0.0000024804,0.0000024831,0.0000024850,0.0000024851,0.0000024826, +0.0000024780,0.0000024730,0.0000024684,0.0000024635,0.0000024574, +0.0000024499,0.0000024432,0.0000024377,0.0000024254,0.0000023989, +0.0000023709,0.0000023588,0.0000023588,0.0000023597,0.0000023603, +0.0000023648,0.0000023729,0.0000023758,0.0000023728,0.0000023700, +0.0000023741,0.0000023866,0.0000024016,0.0000024132,0.0000024222, +0.0000024317,0.0000024416,0.0000024495,0.0000024557,0.0000024627, +0.0000024720,0.0000024822,0.0000024913,0.0000024985,0.0000025048, +0.0000025104,0.0000025158,0.0000025235,0.0000025360,0.0000025497, +0.0000025571,0.0000025569,0.0000025558,0.0000025577,0.0000025626, +0.0000025646,0.0000025619,0.0000025562,0.0000025505,0.0000025470, +0.0000025468,0.0000025498,0.0000025560,0.0000025638,0.0000025712, +0.0000025777,0.0000025838,0.0000025896,0.0000025937,0.0000025949, +0.0000025937,0.0000025911,0.0000025885,0.0000025867,0.0000025858, +0.0000025841,0.0000025807,0.0000025767,0.0000025722,0.0000025667, +0.0000025612,0.0000025538,0.0000025424,0.0000025284,0.0000025150, +0.0000025053,0.0000025022,0.0000025042,0.0000025097,0.0000025146, +0.0000025169,0.0000025162,0.0000025126,0.0000025092,0.0000025082, +0.0000025080,0.0000025067,0.0000025034,0.0000024984,0.0000024926, +0.0000024867,0.0000024809,0.0000024758,0.0000024720,0.0000024693, +0.0000024679,0.0000024692,0.0000024746,0.0000024848,0.0000024952, +0.0000024967,0.0000024857,0.0000024739,0.0000024723,0.0000024780, +0.0000024872,0.0000024966,0.0000025025,0.0000025040,0.0000025039, +0.0000025061,0.0000025117,0.0000025172,0.0000025201,0.0000025202, +0.0000025178,0.0000025132,0.0000025080,0.0000025053,0.0000025070, +0.0000025106,0.0000025122,0.0000025135,0.0000025183,0.0000025262, +0.0000025337,0.0000025393,0.0000025417,0.0000025399,0.0000025326, +0.0000025249,0.0000025213,0.0000025160,0.0000025058,0.0000024971, +0.0000024969,0.0000025041,0.0000025116,0.0000025188,0.0000025323, +0.0000025433,0.0000025428,0.0000025377,0.0000025368,0.0000025409, +0.0000025438,0.0000025411,0.0000025339,0.0000025269,0.0000025264, +0.0000025287,0.0000025324,0.0000025365,0.0000025392,0.0000025396, +0.0000025384,0.0000025381,0.0000025401,0.0000025410,0.0000025389, +0.0000025344,0.0000025273,0.0000025172,0.0000025035,0.0000024883, +0.0000024753,0.0000024660,0.0000024592,0.0000024524,0.0000024443, +0.0000024354,0.0000024275,0.0000024222,0.0000024194,0.0000024176, +0.0000024154,0.0000024120,0.0000024080,0.0000024037,0.0000023991, +0.0000023955,0.0000023934,0.0000023939,0.0000023962,0.0000023977, +0.0000023961,0.0000023907,0.0000023842,0.0000023770,0.0000023712, +0.0000023670,0.0000023638,0.0000023606,0.0000023569,0.0000023532, +0.0000023498,0.0000023459,0.0000023416,0.0000023379,0.0000023347, +0.0000023310,0.0000023271,0.0000023240,0.0000023218,0.0000023194, +0.0000023158,0.0000023104,0.0000023038,0.0000022971,0.0000022926, +0.0000022903,0.0000022890,0.0000022887,0.0000022903,0.0000022941, +0.0000022976,0.0000022984,0.0000022968,0.0000022934,0.0000022917, +0.0000022929,0.0000022965,0.0000023004,0.0000023025,0.0000023015, +0.0000022961,0.0000022897,0.0000022879,0.0000022908,0.0000022943, +0.0000022927,0.0000022882,0.0000022865,0.0000022872,0.0000022904, +0.0000022933,0.0000022951,0.0000022967,0.0000022991,0.0000023020, +0.0000023055,0.0000023082,0.0000023082,0.0000023062,0.0000023027, +0.0000022995,0.0000022962,0.0000022909,0.0000022851,0.0000022786, +0.0000022719,0.0000022661,0.0000022625,0.0000022616,0.0000022667, +0.0000022769,0.0000022901,0.0000023052,0.0000023220,0.0000023402, +0.0000023585,0.0000023729,0.0000023773,0.0000023739,0.0000023671, +0.0000023682,0.0000023856,0.0000024097,0.0000024197,0.0000024225, +0.0000024314,0.0000024439,0.0000024654,0.0000024992,0.0000025315, +0.0000025466,0.0000025572,0.0000025954,0.0000026393,0.0000026518, +0.0000026428,0.0000026263,0.0000026142,0.0000026050,0.0000025628, +0.0000025143,0.0000024852,0.0000024679,0.0000024472,0.0000024065, +0.0000023812,0.0000023832,0.0000023991,0.0000024106,0.0000024158, +0.0000024169,0.0000024151,0.0000024329,0.0000024766,0.0000024900, +0.0000024907,0.0000025551,0.0000026007,0.0000026005,0.0000025979, +0.0000025429,0.0000024747,0.0000024626,0.0000024707,0.0000024741, +0.0000024609,0.0000024284,0.0000023987,0.0000023883,0.0000023900, +0.0000023943,0.0000023996,0.0000024060,0.0000024109,0.0000024125, +0.0000024131,0.0000024135,0.0000024146,0.0000024170,0.0000024197, +0.0000024235,0.0000024282,0.0000024366,0.0000024499,0.0000024588, +0.0000024602,0.0000024593,0.0000024550,0.0000024496,0.0000024487, +0.0000024509,0.0000024538,0.0000024560,0.0000024582,0.0000024616, +0.0000024647,0.0000024686,0.0000024720,0.0000024736,0.0000024727, +0.0000024691,0.0000024630,0.0000024574,0.0000024563,0.0000024592, +0.0000024638,0.0000024688,0.0000024733,0.0000024751,0.0000024720, +0.0000024651,0.0000024595,0.0000024561,0.0000024525,0.0000024510, +0.0000024538,0.0000024590,0.0000024638,0.0000024677,0.0000024709, +0.0000024740,0.0000024767,0.0000024799,0.0000024838,0.0000024876, +0.0000024904,0.0000024920,0.0000024928,0.0000024930,0.0000024919, +0.0000024886,0.0000024863,0.0000024905,0.0000025026,0.0000025163, +0.0000025273,0.0000025335,0.0000025382,0.0000025443,0.0000025581, +0.0000025778,0.0000025905,0.0000025987,0.0000026089,0.0000026151, +0.0000026128,0.0000026024,0.0000025865,0.0000025721,0.0000025691, +0.0000025758,0.0000025826,0.0000025829,0.0000025808,0.0000025800, +0.0000025800,0.0000025784,0.0000025744,0.0000025695,0.0000025678, +0.0000025717,0.0000025767,0.0000025788,0.0000025808,0.0000025840, +0.0000025853,0.0000025834,0.0000025776,0.0000025700,0.0000025628, +0.0000025573,0.0000025537,0.0000025511,0.0000025506,0.0000025527, +0.0000025567,0.0000025562,0.0000025505,0.0000025438,0.0000025416, +0.0000025376,0.0000025232,0.0000025030,0.0000024880,0.0000024816, +0.0000024769,0.0000024724,0.0000024667,0.0000024609,0.0000024553, +0.0000024495,0.0000024437,0.0000024389,0.0000024341,0.0000024309, +0.0000024290,0.0000024287,0.0000024294,0.0000024307,0.0000024308, +0.0000024307,0.0000024317,0.0000024340,0.0000024365,0.0000024391, +0.0000024419,0.0000024451,0.0000024484,0.0000024526,0.0000024577, +0.0000024629,0.0000024654,0.0000024634,0.0000024542,0.0000024427, +0.0000024340,0.0000024223,0.0000024043,0.0000023915,0.0000023886, +0.0000023777,0.0000023416,0.0000022954,0.0000022672,0.0000022561, +0.0000022453,0.0000022331,0.0000022251,0.0000022214,0.0000022195, +0.0000022156,0.0000022068,0.0000022023,0.0000022131,0.0000022346, +0.0000022489,0.0000022555,0.0000022687,0.0000022935,0.0000023198, +0.0000023365,0.0000023439,0.0000023562,0.0000023850,0.0000024159, +0.0000024322,0.0000024469,0.0000024691,0.0000024853,0.0000024901, +0.0000024918,0.0000024906,0.0000024826,0.0000024713,0.0000024616, +0.0000024556,0.0000024520,0.0000024474,0.0000024421,0.0000024386, +0.0000024359,0.0000024327,0.0000024319,0.0000024399,0.0000024592, +0.0000024780,0.0000024840,0.0000024826,0.0000024813,0.0000024865, +0.0000024938,0.0000024972,0.0000024975,0.0000024993,0.0000025064, +0.0000025139,0.0000025152,0.0000025108,0.0000025075,0.0000025094, +0.0000025170,0.0000025260,0.0000025310,0.0000025318,0.0000025315, +0.0000025323,0.0000025359,0.0000025420,0.0000025472,0.0000025489, +0.0000025486,0.0000025478,0.0000025466,0.0000025466,0.0000025482, +0.0000025486,0.0000025456,0.0000025396,0.0000025348,0.0000025336, +0.0000025355,0.0000025399,0.0000025440,0.0000025455,0.0000025453, +0.0000025443,0.0000025432,0.0000025422,0.0000025422,0.0000025440, +0.0000025479,0.0000025521,0.0000025545,0.0000025553,0.0000025567, +0.0000025583,0.0000025572,0.0000025528,0.0000025491,0.0000025494, +0.0000025533,0.0000025550,0.0000025533,0.0000025534,0.0000025567, +0.0000025594,0.0000025623,0.0000025681,0.0000025764,0.0000025836, +0.0000025897,0.0000025959,0.0000026033,0.0000026169,0.0000026351, +0.0000026450,0.0000026439,0.0000026383,0.0000026294,0.0000026216, +0.0000026230,0.0000026343,0.0000026472,0.0000026522,0.0000026488, +0.0000026396,0.0000026298,0.0000026192,0.0000026048,0.0000025854, +0.0000025661,0.0000025554,0.0000025542,0.0000025581,0.0000025649, +0.0000025725,0.0000025793,0.0000025822,0.0000025810,0.0000025768, +0.0000025735,0.0000025720,0.0000025719,0.0000025741,0.0000025780, +0.0000025820,0.0000025868,0.0000025927,0.0000025977,0.0000026005, +0.0000026010,0.0000025993,0.0000025966,0.0000025948,0.0000025939, +0.0000025928,0.0000025910,0.0000025887,0.0000025866,0.0000025854, +0.0000025860,0.0000025885,0.0000025929,0.0000025979,0.0000026014, +0.0000026038,0.0000026074,0.0000026133,0.0000026207,0.0000026280, +0.0000026331,0.0000026345,0.0000026335,0.0000026298,0.0000026232, +0.0000026134,0.0000025993,0.0000025823,0.0000025664,0.0000025547, +0.0000025471,0.0000025436,0.0000025473,0.0000025587,0.0000025690, +0.0000025760,0.0000025955,0.0000026287,0.0000026495,0.0000026531, +0.0000026558,0.0000026602,0.0000026646,0.0000026679,0.0000026690, +0.0000026696,0.0000026736,0.0000026810,0.0000026865,0.0000026854, +0.0000026791,0.0000026690,0.0000026555,0.0000026401,0.0000026266, +0.0000026165,0.0000026072,0.0000025955,0.0000025790,0.0000025539, +0.0000025277,0.0000025131,0.0000025115,0.0000025160,0.0000025234, +0.0000025257,0.0000025176,0.0000025010,0.0000024856,0.0000024730, +0.0000024620,0.0000024537,0.0000024472,0.0000024392,0.0000024279, +0.0000024129,0.0000023960,0.0000023806,0.0000023689,0.0000023628, +0.0000023593,0.0000023546,0.0000023496,0.0000023469,0.0000023465, +0.0000023478,0.0000023512,0.0000023581,0.0000023675,0.0000023758, +0.0000023818,0.0000023864,0.0000023892,0.0000023891,0.0000023859, +0.0000023796,0.0000023711,0.0000023601,0.0000023483,0.0000023390, +0.0000023345,0.0000023355,0.0000023365,0.0000023361,0.0000023357, +0.0000023384,0.0000023460,0.0000023562,0.0000023644,0.0000023700, +0.0000023740,0.0000023777,0.0000023798,0.0000023789,0.0000023753, +0.0000023755,0.0000023814,0.0000024032,0.0000024360,0.0000024576, +0.0000024553,0.0000024577,0.0000025065,0.0000025670,0.0000025996, +0.0000026094,0.0000026142,0.0000026269,0.0000026393,0.0000026420, +0.0000026392,0.0000026369,0.0000026381,0.0000026409,0.0000026434, +0.0000026454,0.0000026456,0.0000026436,0.0000026405,0.0000026359, +0.0000026298,0.0000026223,0.0000026138,0.0000026052,0.0000025968, +0.0000025892,0.0000025834,0.0000025790,0.0000025755,0.0000025730, +0.0000025698,0.0000025627,0.0000025488,0.0000025251,0.0000024926, +0.0000024586,0.0000024328,0.0000024191,0.0000024110,0.0000024011, +0.0000023895,0.0000023783,0.0000023665,0.0000023529,0.0000023384, +0.0000023262,0.0000023180,0.0000023085,0.0000022961,0.0000022838, +0.0000022759,0.0000022739,0.0000022727,0.0000022688,0.0000022661, +0.0000022652,0.0000022632,0.0000022597,0.0000022555,0.0000022517, +0.0000022508,0.0000022551,0.0000022615,0.0000022649,0.0000022656, +0.0000022664,0.0000022685,0.0000022702,0.0000022700,0.0000022685, +0.0000022679,0.0000022681,0.0000022687,0.0000022693,0.0000022695, +0.0000022698,0.0000022723,0.0000022773,0.0000022815,0.0000022838, +0.0000022861,0.0000022881,0.0000022857,0.0000022794,0.0000022727, +0.0000022663,0.0000022599,0.0000022547,0.0000022513,0.0000022487, +0.0000022470,0.0000022463,0.0000022464,0.0000022463,0.0000022445, +0.0000022403,0.0000022339,0.0000022269,0.0000022205,0.0000022150, +0.0000022097,0.0000022047,0.0000022007,0.0000021979,0.0000021964, +0.0000021958,0.0000021954,0.0000021946,0.0000021928,0.0000021903, +0.0000021878,0.0000021860,0.0000021860,0.0000021888,0.0000021942, +0.0000022008,0.0000022067,0.0000022107,0.0000022128,0.0000022136, +0.0000022133,0.0000022122,0.0000022112,0.0000022105,0.0000022106, +0.0000022112,0.0000022117,0.0000022117,0.0000022112,0.0000022104, +0.0000022100,0.0000022102,0.0000022103,0.0000022100,0.0000022091, +0.0000022077,0.0000022065,0.0000022061,0.0000022067,0.0000022077, +0.0000022083,0.0000022088,0.0000022096,0.0000022102,0.0000022100, +0.0000022077,0.0000022035,0.0000021997,0.0000021980,0.0000021986, +0.0000021986,0.0000021963,0.0000021954,0.0000021997,0.0000022116, +0.0000022411,0.0000022803,0.0000023122,0.0000023260,0.0000023312, +0.0000023377,0.0000023388,0.0000023355,0.0000023327,0.0000023322, +0.0000023337,0.0000023365,0.0000023494,0.0000023733,0.0000023912, +0.0000023964,0.0000023952,0.0000023913,0.0000023865,0.0000023821, +0.0000023784,0.0000023752,0.0000023730,0.0000023737,0.0000023788, +0.0000023887,0.0000024017,0.0000024148,0.0000024272,0.0000024414, +0.0000024604,0.0000024816,0.0000024997,0.0000025075,0.0000025063, +0.0000024929,0.0000024682,0.0000024440,0.0000024268,0.0000024150, +0.0000024061,0.0000023996,0.0000023959,0.0000023939,0.0000023941, +0.0000023952,0.0000023993,0.0000024037,0.0000024070,0.0000024083, +0.0000024085,0.0000024080,0.0000024064,0.0000024042,0.0000024017, +0.0000023984,0.0000023967,0.0000023961,0.0000023964,0.0000023986, +0.0000024017,0.0000024049,0.0000024060,0.0000024050,0.0000024035, +0.0000024035,0.0000024046,0.0000024045,0.0000023997,0.0000023921, +0.0000023873,0.0000023870,0.0000023881,0.0000023874,0.0000023796, +0.0000023668,0.0000023587,0.0000023577,0.0000023609,0.0000023661, +0.0000023705,0.0000023737,0.0000023760,0.0000023770,0.0000023746, +0.0000023690,0.0000023631,0.0000023601,0.0000023595,0.0000023575, +0.0000023518,0.0000023459,0.0000023450,0.0000023490,0.0000023544, +0.0000023574,0.0000023576,0.0000023562,0.0000023545,0.0000023526, +0.0000023496,0.0000023458,0.0000023438,0.0000023436,0.0000023429, +0.0000023427,0.0000023462,0.0000023503,0.0000023514,0.0000023527, +0.0000023562,0.0000023609,0.0000023656,0.0000023702,0.0000023751, +0.0000023806,0.0000023857,0.0000023895,0.0000023915,0.0000023914, +0.0000023910,0.0000023917,0.0000023933,0.0000023956,0.0000023986, +0.0000024005,0.0000024007,0.0000023983,0.0000023934,0.0000023862, +0.0000023775,0.0000023706,0.0000023693,0.0000023746,0.0000023825, +0.0000023871,0.0000023883,0.0000023847,0.0000023770,0.0000023730, +0.0000023730,0.0000023755,0.0000023772,0.0000023740,0.0000023661, +0.0000023617,0.0000023619,0.0000023680,0.0000023794,0.0000023943, +0.0000024101,0.0000024226,0.0000024324,0.0000024420,0.0000024513, +0.0000024597,0.0000024673,0.0000024748,0.0000024833,0.0000024906, +0.0000024957,0.0000024984,0.0000024984,0.0000024964,0.0000024927, +0.0000024883,0.0000024824,0.0000024755,0.0000024693,0.0000024648, +0.0000024617,0.0000024587,0.0000024560,0.0000024545,0.0000024542, +0.0000024547,0.0000024563,0.0000024579,0.0000024598,0.0000024664, +0.0000024808,0.0000024965,0.0000025074,0.0000025129,0.0000025123, +0.0000025101,0.0000025129,0.0000025191,0.0000025251,0.0000025338, +0.0000025429,0.0000025464,0.0000025438,0.0000025347,0.0000025236, +0.0000025124,0.0000025008,0.0000024916,0.0000024885,0.0000024892, +0.0000024925,0.0000025006,0.0000025080,0.0000025076,0.0000025016, +0.0000024979,0.0000024942,0.0000024862,0.0000024801,0.0000024787, +0.0000024722,0.0000024561,0.0000024414,0.0000024359,0.0000024356, +0.0000024356,0.0000024349,0.0000024327,0.0000024302,0.0000024289, +0.0000024285,0.0000024277,0.0000024265,0.0000024263,0.0000024268, +0.0000024280,0.0000024317,0.0000024401,0.0000024518,0.0000024629, +0.0000024699,0.0000024725,0.0000024724,0.0000024705,0.0000024677, +0.0000024642,0.0000024610,0.0000024596,0.0000024596,0.0000024595, +0.0000024576,0.0000024542,0.0000024526,0.0000024538,0.0000024580, +0.0000024624,0.0000024651,0.0000024656,0.0000024655,0.0000024650, +0.0000024641,0.0000024638,0.0000024654,0.0000024685,0.0000024721, +0.0000024760,0.0000024807,0.0000024872,0.0000024948,0.0000025016, +0.0000025060,0.0000025087,0.0000025102,0.0000025113,0.0000025123, +0.0000025134,0.0000025149,0.0000025175,0.0000025217,0.0000025266, +0.0000025306,0.0000025331,0.0000025334,0.0000025312,0.0000025237, +0.0000025108,0.0000024963,0.0000024856,0.0000024806,0.0000024785, +0.0000024784,0.0000024799,0.0000024825,0.0000024855,0.0000024874, +0.0000024870,0.0000024834,0.0000024777,0.0000024717,0.0000024666, +0.0000024621,0.0000024571,0.0000024507,0.0000024442,0.0000024385, +0.0000024263,0.0000024000,0.0000023725,0.0000023608,0.0000023613, +0.0000023620,0.0000023618,0.0000023655,0.0000023719,0.0000023732, +0.0000023680,0.0000023637,0.0000023661,0.0000023764,0.0000023916, +0.0000024055,0.0000024163,0.0000024258,0.0000024348,0.0000024430, +0.0000024511,0.0000024604,0.0000024704,0.0000024803,0.0000024893, +0.0000024967,0.0000025022,0.0000025063,0.0000025098,0.0000025141, +0.0000025212,0.0000025327,0.0000025454,0.0000025521,0.0000025510, +0.0000025477,0.0000025473,0.0000025505,0.0000025552,0.0000025571, +0.0000025559,0.0000025533,0.0000025514,0.0000025518,0.0000025553, +0.0000025620,0.0000025698,0.0000025773,0.0000025847,0.0000025919, +0.0000025968,0.0000025982,0.0000025965,0.0000025927,0.0000025896, +0.0000025884,0.0000025886,0.0000025873,0.0000025832,0.0000025781, +0.0000025715,0.0000025620,0.0000025514,0.0000025409,0.0000025304, +0.0000025207,0.0000025124,0.0000025060,0.0000025048,0.0000025091, +0.0000025154,0.0000025206,0.0000025241,0.0000025237,0.0000025200, +0.0000025152,0.0000025108,0.0000025077,0.0000025054,0.0000025023, +0.0000024980,0.0000024932,0.0000024879,0.0000024823,0.0000024775, +0.0000024734,0.0000024696,0.0000024644,0.0000024588,0.0000024550, +0.0000024560,0.0000024685,0.0000024867,0.0000024927,0.0000024825, +0.0000024715,0.0000024716,0.0000024800,0.0000024901,0.0000024988, +0.0000025035,0.0000025042,0.0000025054,0.0000025097,0.0000025143, +0.0000025172,0.0000025173,0.0000025147,0.0000025100,0.0000025041, +0.0000024987,0.0000024977,0.0000025011,0.0000025043,0.0000025058, +0.0000025083,0.0000025160,0.0000025261,0.0000025341,0.0000025402, +0.0000025426,0.0000025395,0.0000025325,0.0000025270,0.0000025229, +0.0000025144,0.0000025032,0.0000024973,0.0000025000,0.0000025080, +0.0000025133,0.0000025207,0.0000025342,0.0000025423,0.0000025414, +0.0000025360,0.0000025355,0.0000025386,0.0000025402,0.0000025374, +0.0000025321,0.0000025284,0.0000025286,0.0000025302,0.0000025335, +0.0000025371,0.0000025391,0.0000025384,0.0000025325,0.0000025224, +0.0000025130,0.0000025065,0.0000025026,0.0000025001,0.0000024965, +0.0000024893,0.0000024780,0.0000024647,0.0000024522,0.0000024424, +0.0000024354,0.0000024282,0.0000024195,0.0000024117,0.0000024069, +0.0000024047,0.0000024043,0.0000024043,0.0000024039,0.0000024036, +0.0000024035,0.0000024032,0.0000024031,0.0000024030,0.0000024024, +0.0000024014,0.0000023989,0.0000023940,0.0000023854,0.0000023760, +0.0000023679,0.0000023619,0.0000023578,0.0000023543,0.0000023510, +0.0000023480,0.0000023452,0.0000023429,0.0000023404,0.0000023370, +0.0000023330,0.0000023290,0.0000023247,0.0000023203,0.0000023172, +0.0000023162,0.0000023161,0.0000023143,0.0000023089,0.0000023009, +0.0000022929,0.0000022854,0.0000022797,0.0000022770,0.0000022765, +0.0000022775,0.0000022811,0.0000022858,0.0000022898,0.0000022919, +0.0000022915,0.0000022888,0.0000022864,0.0000022868,0.0000022909, +0.0000022959,0.0000022993,0.0000022994,0.0000022950,0.0000022881, +0.0000022836,0.0000022845,0.0000022895,0.0000022917,0.0000022897, +0.0000022877,0.0000022882,0.0000022909,0.0000022940,0.0000022948, +0.0000022949,0.0000022930,0.0000022925,0.0000022939,0.0000022966, +0.0000022991,0.0000023000,0.0000023003,0.0000023014,0.0000023001, +0.0000022970,0.0000022921,0.0000022849,0.0000022768,0.0000022690, +0.0000022619,0.0000022568,0.0000022554,0.0000022608,0.0000022715, +0.0000022870,0.0000023064,0.0000023266,0.0000023463,0.0000023653, +0.0000023772,0.0000023775,0.0000023706,0.0000023667,0.0000023743, +0.0000023968,0.0000024129,0.0000024161,0.0000024225,0.0000024345, +0.0000024500,0.0000024776,0.0000025120,0.0000025382,0.0000025476, +0.0000025709,0.0000026195,0.0000026524,0.0000026508,0.0000026347, +0.0000026205,0.0000026113,0.0000025753,0.0000025244,0.0000024926, +0.0000024742,0.0000024539,0.0000024127,0.0000023805,0.0000023788, +0.0000023959,0.0000024125,0.0000024194,0.0000024217,0.0000024189, +0.0000024237,0.0000024606,0.0000024914,0.0000024846,0.0000025280, +0.0000025890,0.0000026005,0.0000026004,0.0000025583,0.0000024842, +0.0000024646,0.0000024720,0.0000024750,0.0000024590,0.0000024223, +0.0000023960,0.0000023914,0.0000023963,0.0000024009,0.0000024047, +0.0000024089,0.0000024120,0.0000024124,0.0000024120,0.0000024120, +0.0000024134,0.0000024157,0.0000024191,0.0000024235,0.0000024289, +0.0000024393,0.0000024526,0.0000024581,0.0000024583,0.0000024574, +0.0000024536,0.0000024488,0.0000024472,0.0000024480,0.0000024493, +0.0000024501,0.0000024518,0.0000024546,0.0000024580,0.0000024624, +0.0000024657,0.0000024666,0.0000024641,0.0000024591,0.0000024527, +0.0000024492,0.0000024511,0.0000024558,0.0000024611,0.0000024659, +0.0000024702,0.0000024722,0.0000024704,0.0000024641,0.0000024576, +0.0000024547,0.0000024529,0.0000024523,0.0000024542,0.0000024588, +0.0000024642,0.0000024679,0.0000024697,0.0000024700,0.0000024697, +0.0000024705,0.0000024736,0.0000024787,0.0000024846,0.0000024891, +0.0000024906,0.0000024901,0.0000024881,0.0000024842,0.0000024800, +0.0000024804,0.0000024903,0.0000025071,0.0000025226,0.0000025316, +0.0000025360,0.0000025408,0.0000025509,0.0000025702,0.0000025862, +0.0000025920,0.0000025981,0.0000026051,0.0000026053,0.0000025950, +0.0000025774,0.0000025640,0.0000025640,0.0000025737,0.0000025797, +0.0000025788,0.0000025757,0.0000025750,0.0000025757,0.0000025755, +0.0000025732,0.0000025688,0.0000025647,0.0000025649,0.0000025689, +0.0000025733,0.0000025770,0.0000025814,0.0000025842,0.0000025835, +0.0000025795,0.0000025736,0.0000025680,0.0000025629,0.0000025582, +0.0000025544,0.0000025540,0.0000025568,0.0000025588,0.0000025546, +0.0000025475,0.0000025446,0.0000025423,0.0000025303,0.0000025097, +0.0000024939,0.0000024879,0.0000024852,0.0000024798,0.0000024723, +0.0000024651,0.0000024602,0.0000024573,0.0000024543,0.0000024499, +0.0000024442,0.0000024376,0.0000024316,0.0000024264,0.0000024230, +0.0000024227,0.0000024243,0.0000024266,0.0000024278,0.0000024284, +0.0000024303,0.0000024333,0.0000024364,0.0000024399,0.0000024439, +0.0000024489,0.0000024541,0.0000024589,0.0000024619,0.0000024609, +0.0000024539,0.0000024446,0.0000024373,0.0000024277,0.0000024100, +0.0000023930,0.0000023876,0.0000023859,0.0000023661,0.0000023226, +0.0000022811,0.0000022617,0.0000022529,0.0000022413,0.0000022307, +0.0000022241,0.0000022195,0.0000022168,0.0000022144,0.0000022077, +0.0000022008,0.0000022065,0.0000022263,0.0000022443,0.0000022526, +0.0000022608,0.0000022784,0.0000023032,0.0000023248,0.0000023365, +0.0000023425,0.0000023566,0.0000023868,0.0000024168,0.0000024317, +0.0000024453,0.0000024668,0.0000024821,0.0000024851,0.0000024851, +0.0000024813,0.0000024705,0.0000024592,0.0000024537,0.0000024507, +0.0000024457,0.0000024398,0.0000024363,0.0000024349,0.0000024328, +0.0000024313,0.0000024345,0.0000024499,0.0000024711,0.0000024839, +0.0000024851,0.0000024824,0.0000024831,0.0000024886,0.0000024925, +0.0000024922,0.0000024916,0.0000024950,0.0000025049,0.0000025130, +0.0000025127,0.0000025079,0.0000025066,0.0000025125,0.0000025231, +0.0000025313,0.0000025336,0.0000025334,0.0000025329,0.0000025335, +0.0000025368,0.0000025420,0.0000025451,0.0000025453,0.0000025452, +0.0000025451,0.0000025448,0.0000025448,0.0000025450,0.0000025430, +0.0000025378,0.0000025323,0.0000025300,0.0000025306,0.0000025336, +0.0000025372,0.0000025390,0.0000025391,0.0000025380,0.0000025367, +0.0000025361,0.0000025364,0.0000025384,0.0000025420,0.0000025467, +0.0000025510,0.0000025532,0.0000025533,0.0000025537,0.0000025559, +0.0000025568,0.0000025537,0.0000025484,0.0000025461,0.0000025481, +0.0000025491,0.0000025462,0.0000025461,0.0000025514,0.0000025558, +0.0000025579,0.0000025622,0.0000025708,0.0000025790,0.0000025850, +0.0000025907,0.0000025970,0.0000026077,0.0000026246,0.0000026393, +0.0000026430,0.0000026398,0.0000026323,0.0000026219,0.0000026154, +0.0000026180,0.0000026278,0.0000026355,0.0000026370,0.0000026315, +0.0000026207,0.0000026063,0.0000025877,0.0000025673,0.0000025533, +0.0000025507,0.0000025542,0.0000025603,0.0000025676,0.0000025741, +0.0000025783,0.0000025787,0.0000025760,0.0000025716,0.0000025682, +0.0000025666,0.0000025678,0.0000025721,0.0000025765,0.0000025814, +0.0000025870,0.0000025919,0.0000025950,0.0000025943,0.0000025911, +0.0000025857,0.0000025801,0.0000025764,0.0000025747,0.0000025740, +0.0000025733,0.0000025721,0.0000025701,0.0000025676,0.0000025653, +0.0000025640,0.0000025640,0.0000025642,0.0000025639,0.0000025649, +0.0000025701,0.0000025796,0.0000025906,0.0000025996,0.0000026043, +0.0000026047,0.0000026029,0.0000025986,0.0000025915,0.0000025808, +0.0000025665,0.0000025510,0.0000025379,0.0000025286,0.0000025241, +0.0000025254,0.0000025379,0.0000025547,0.0000025678,0.0000025856, +0.0000026181,0.0000026447,0.0000026513,0.0000026528,0.0000026570, +0.0000026624,0.0000026677,0.0000026712,0.0000026730,0.0000026759, +0.0000026814,0.0000026863,0.0000026868,0.0000026814,0.0000026733, +0.0000026626,0.0000026485,0.0000026338,0.0000026224,0.0000026135, +0.0000026030,0.0000025885,0.0000025679,0.0000025439,0.0000025266, +0.0000025197,0.0000025198,0.0000025252,0.0000025306,0.0000025281, +0.0000025146,0.0000024974,0.0000024801,0.0000024634,0.0000024533, +0.0000024503,0.0000024480,0.0000024406,0.0000024273,0.0000024092, +0.0000023911,0.0000023767,0.0000023670,0.0000023616,0.0000023581, +0.0000023542,0.0000023500,0.0000023467,0.0000023441,0.0000023429, +0.0000023429,0.0000023448,0.0000023507,0.0000023587,0.0000023668, +0.0000023743,0.0000023802,0.0000023833,0.0000023832,0.0000023794, +0.0000023722,0.0000023617,0.0000023499,0.0000023387,0.0000023306, +0.0000023286,0.0000023291,0.0000023287,0.0000023273,0.0000023282, +0.0000023332,0.0000023418,0.0000023497,0.0000023549,0.0000023584, +0.0000023632,0.0000023695,0.0000023733,0.0000023729,0.0000023721, +0.0000023748,0.0000023877,0.0000024165,0.0000024451,0.0000024545, +0.0000024516,0.0000024676,0.0000025235,0.0000025740,0.0000025959, +0.0000026022,0.0000026065,0.0000026153,0.0000026251,0.0000026291, +0.0000026281,0.0000026271,0.0000026273,0.0000026283,0.0000026291, +0.0000026292,0.0000026276,0.0000026243,0.0000026204,0.0000026162, +0.0000026119,0.0000026075,0.0000026027,0.0000025971,0.0000025907, +0.0000025841,0.0000025767,0.0000025683,0.0000025594,0.0000025487, +0.0000025322,0.0000025090,0.0000024805,0.0000024514,0.0000024294, +0.0000024182,0.0000024131,0.0000024076,0.0000023995,0.0000023902, +0.0000023797,0.0000023665,0.0000023512,0.0000023370,0.0000023269, +0.0000023198,0.0000023111,0.0000022989,0.0000022863,0.0000022763, +0.0000022710,0.0000022698,0.0000022686,0.0000022666,0.0000022658, +0.0000022650,0.0000022625,0.0000022587,0.0000022543,0.0000022503, +0.0000022495,0.0000022537,0.0000022590,0.0000022609,0.0000022617, +0.0000022637,0.0000022658,0.0000022666,0.0000022661,0.0000022660, +0.0000022662,0.0000022660,0.0000022664,0.0000022669,0.0000022666, +0.0000022664,0.0000022687,0.0000022738,0.0000022780,0.0000022798, +0.0000022818,0.0000022835,0.0000022812,0.0000022757,0.0000022698, +0.0000022631,0.0000022561,0.0000022505,0.0000022473,0.0000022454, +0.0000022441,0.0000022429,0.0000022412,0.0000022387,0.0000022351, +0.0000022310,0.0000022260,0.0000022202,0.0000022147,0.0000022094, +0.0000022038,0.0000021982,0.0000021934,0.0000021897,0.0000021870, +0.0000021851,0.0000021838,0.0000021830,0.0000021821,0.0000021804, +0.0000021780,0.0000021758,0.0000021751,0.0000021761,0.0000021793, +0.0000021844,0.0000021906,0.0000021965,0.0000022009,0.0000022036, +0.0000022049,0.0000022048,0.0000022039,0.0000022032,0.0000022034, +0.0000022040,0.0000022048,0.0000022051,0.0000022051,0.0000022052, +0.0000022051,0.0000022043,0.0000022032,0.0000022025,0.0000022021, +0.0000022018,0.0000022015,0.0000022016,0.0000022026,0.0000022042, +0.0000022067,0.0000022103,0.0000022147,0.0000022179,0.0000022184, +0.0000022160,0.0000022115,0.0000022063,0.0000022018,0.0000021994, +0.0000021984,0.0000021950,0.0000021919,0.0000021957,0.0000022073, +0.0000022358,0.0000022751,0.0000023081,0.0000023232,0.0000023283, +0.0000023344,0.0000023357,0.0000023325,0.0000023286,0.0000023270, +0.0000023286,0.0000023319,0.0000023415,0.0000023623,0.0000023825, +0.0000023906,0.0000023904,0.0000023871,0.0000023830,0.0000023788, +0.0000023749,0.0000023718,0.0000023698,0.0000023689,0.0000023691, +0.0000023708,0.0000023755,0.0000023844,0.0000023961,0.0000024078, +0.0000024194,0.0000024344,0.0000024550,0.0000024778,0.0000024948, +0.0000025010,0.0000024952,0.0000024776,0.0000024541,0.0000024347, +0.0000024211,0.0000024112,0.0000024036,0.0000023984,0.0000023958, +0.0000023961,0.0000023986,0.0000024019,0.0000024048,0.0000024064, +0.0000024072,0.0000024070,0.0000024055,0.0000024032,0.0000024008, +0.0000023998,0.0000023975,0.0000023963,0.0000023963,0.0000023979, +0.0000024010,0.0000024056,0.0000024100,0.0000024115,0.0000024098, +0.0000024092,0.0000024098,0.0000024087,0.0000024013,0.0000023927, +0.0000023886,0.0000023886,0.0000023883,0.0000023838,0.0000023721, +0.0000023600,0.0000023548,0.0000023557,0.0000023616,0.0000023679, +0.0000023718,0.0000023744,0.0000023755,0.0000023738,0.0000023687, +0.0000023624,0.0000023590,0.0000023593,0.0000023586,0.0000023533, +0.0000023467,0.0000023445,0.0000023494,0.0000023573,0.0000023620, +0.0000023627,0.0000023612,0.0000023593,0.0000023574,0.0000023557, +0.0000023544,0.0000023518,0.0000023473,0.0000023441,0.0000023438, +0.0000023431,0.0000023441,0.0000023480,0.0000023497,0.0000023501, +0.0000023542,0.0000023608,0.0000023671,0.0000023723,0.0000023766, +0.0000023808,0.0000023851,0.0000023889,0.0000023913,0.0000023913, +0.0000023906,0.0000023906,0.0000023913,0.0000023925,0.0000023947, +0.0000023968,0.0000023973,0.0000023953,0.0000023918,0.0000023881, +0.0000023821,0.0000023737,0.0000023692,0.0000023709,0.0000023783, +0.0000023857,0.0000023892,0.0000023886,0.0000023818,0.0000023746, +0.0000023717,0.0000023712,0.0000023734,0.0000023750,0.0000023711, +0.0000023648,0.0000023621,0.0000023627,0.0000023688,0.0000023798, +0.0000023934,0.0000024072,0.0000024184,0.0000024273,0.0000024363, +0.0000024460,0.0000024547,0.0000024615,0.0000024679,0.0000024741, +0.0000024802,0.0000024850,0.0000024878,0.0000024883,0.0000024867, +0.0000024839,0.0000024801,0.0000024749,0.0000024686,0.0000024626, +0.0000024577,0.0000024545,0.0000024521,0.0000024502,0.0000024492, +0.0000024489,0.0000024492,0.0000024512,0.0000024531,0.0000024541, +0.0000024601,0.0000024762,0.0000024937,0.0000025049,0.0000025083, +0.0000025061,0.0000025053,0.0000025100,0.0000025173,0.0000025258, +0.0000025369,0.0000025453,0.0000025462,0.0000025396,0.0000025283, +0.0000025169,0.0000025048,0.0000024933,0.0000024872,0.0000024871, +0.0000024890,0.0000024950,0.0000025033,0.0000025063,0.0000025012, +0.0000024946,0.0000024920,0.0000024880,0.0000024817,0.0000024782, +0.0000024723,0.0000024576,0.0000024426,0.0000024365,0.0000024364, +0.0000024361,0.0000024341,0.0000024310,0.0000024272,0.0000024239, +0.0000024223,0.0000024217,0.0000024207,0.0000024201,0.0000024211, +0.0000024228,0.0000024231,0.0000024237,0.0000024278,0.0000024368, +0.0000024483,0.0000024579,0.0000024636,0.0000024672,0.0000024688, +0.0000024682,0.0000024666,0.0000024636,0.0000024613,0.0000024598, +0.0000024579,0.0000024549,0.0000024528,0.0000024535,0.0000024565, +0.0000024599,0.0000024624,0.0000024636,0.0000024639,0.0000024639, +0.0000024633,0.0000024625,0.0000024628,0.0000024650,0.0000024690, +0.0000024740,0.0000024798,0.0000024865,0.0000024944,0.0000025013, +0.0000025054,0.0000025068,0.0000025068,0.0000025067,0.0000025075, +0.0000025097,0.0000025125,0.0000025153,0.0000025179,0.0000025209, +0.0000025254,0.0000025304,0.0000025337,0.0000025340,0.0000025322, +0.0000025263,0.0000025156,0.0000025017,0.0000024898,0.0000024833, +0.0000024810,0.0000024810,0.0000024822,0.0000024846,0.0000024872, +0.0000024888,0.0000024879,0.0000024833,0.0000024762,0.0000024691, +0.0000024637,0.0000024600,0.0000024558,0.0000024497,0.0000024432, +0.0000024377,0.0000024274,0.0000024042,0.0000023783,0.0000023670, +0.0000023668,0.0000023657,0.0000023638,0.0000023663,0.0000023707, +0.0000023702,0.0000023643,0.0000023592,0.0000023589,0.0000023657, +0.0000023809,0.0000023980,0.0000024115,0.0000024207,0.0000024287, +0.0000024373,0.0000024466,0.0000024567,0.0000024669,0.0000024766, +0.0000024856,0.0000024929,0.0000024971,0.0000024989,0.0000025008, +0.0000025037,0.0000025075,0.0000025142,0.0000025262,0.0000025395, +0.0000025468,0.0000025455,0.0000025405,0.0000025384,0.0000025419, +0.0000025503,0.0000025569,0.0000025587,0.0000025570,0.0000025551, +0.0000025557,0.0000025606,0.0000025685,0.0000025766,0.0000025845, +0.0000025924,0.0000025986,0.0000026014,0.0000026010,0.0000025973, +0.0000025933,0.0000025915,0.0000025911,0.0000025887,0.0000025832, +0.0000025757,0.0000025649,0.0000025509,0.0000025379,0.0000025288, +0.0000025232,0.0000025196,0.0000025155,0.0000025116,0.0000025113, +0.0000025154,0.0000025199,0.0000025229,0.0000025242,0.0000025222, +0.0000025149,0.0000025051,0.0000024956,0.0000024875,0.0000024817, +0.0000024777,0.0000024744,0.0000024712,0.0000024687,0.0000024666, +0.0000024643,0.0000024618,0.0000024598,0.0000024575,0.0000024533, +0.0000024475,0.0000024410,0.0000024402,0.0000024558,0.0000024811, +0.0000024901,0.0000024792,0.0000024688,0.0000024712,0.0000024819, +0.0000024921,0.0000025007,0.0000025049,0.0000025065,0.0000025095, +0.0000025127,0.0000025148,0.0000025152,0.0000025129,0.0000025078, +0.0000025013,0.0000024940,0.0000024893,0.0000024896,0.0000024928, +0.0000024957,0.0000024973,0.0000025026,0.0000025135,0.0000025252, +0.0000025348,0.0000025411,0.0000025418,0.0000025372,0.0000025319, +0.0000025280,0.0000025218,0.0000025112,0.0000025017,0.0000024993, +0.0000025039,0.0000025098,0.0000025139,0.0000025219,0.0000025349, +0.0000025415,0.0000025388,0.0000025332,0.0000025333,0.0000025358, +0.0000025351,0.0000025319,0.0000025286,0.0000025278,0.0000025280, +0.0000025296,0.0000025330,0.0000025363,0.0000025357,0.0000025285, +0.0000025138,0.0000024971,0.0000024853,0.0000024795,0.0000024765, +0.0000024732,0.0000024675,0.0000024579,0.0000024447,0.0000024300, +0.0000024166,0.0000024075,0.0000024023,0.0000023973,0.0000023919, +0.0000023892,0.0000023893,0.0000023906,0.0000023933,0.0000023963, +0.0000023989,0.0000024014,0.0000024040,0.0000024062,0.0000024064, +0.0000024038,0.0000023992,0.0000023925,0.0000023846,0.0000023766, +0.0000023697,0.0000023641,0.0000023593,0.0000023550,0.0000023512, +0.0000023476,0.0000023443,0.0000023419,0.0000023402,0.0000023387, +0.0000023365,0.0000023329,0.0000023274,0.0000023210,0.0000023158, +0.0000023130,0.0000023124,0.0000023124,0.0000023109,0.0000023058, +0.0000022978,0.0000022898,0.0000022823,0.0000022756,0.0000022709, +0.0000022688,0.0000022693,0.0000022718,0.0000022759,0.0000022805, +0.0000022844,0.0000022864,0.0000022863,0.0000022844,0.0000022815, +0.0000022807,0.0000022849,0.0000022917,0.0000022965,0.0000022973, +0.0000022940,0.0000022881,0.0000022827,0.0000022818,0.0000022856, +0.0000022906,0.0000022921,0.0000022909,0.0000022903,0.0000022921, +0.0000022949,0.0000022961,0.0000022950,0.0000022914,0.0000022876, +0.0000022854,0.0000022854,0.0000022869,0.0000022892,0.0000022927, +0.0000022967,0.0000022986,0.0000022982,0.0000022960,0.0000022892, +0.0000022808,0.0000022729,0.0000022643,0.0000022559,0.0000022509, +0.0000022523,0.0000022595,0.0000022730,0.0000022927,0.0000023144, +0.0000023349,0.0000023553,0.0000023729,0.0000023791,0.0000023750, +0.0000023670,0.0000023679,0.0000023838,0.0000024035,0.0000024110, +0.0000024154,0.0000024264,0.0000024389,0.0000024604,0.0000024929, +0.0000025251,0.0000025430,0.0000025540,0.0000025952,0.0000026433, +0.0000026557,0.0000026450,0.0000026287,0.0000026178,0.0000025872, +0.0000025357,0.0000025007,0.0000024809,0.0000024611,0.0000024206, +0.0000023837,0.0000023779,0.0000023918,0.0000024119,0.0000024215, +0.0000024246,0.0000024242,0.0000024228,0.0000024456,0.0000024854, +0.0000024848,0.0000025024,0.0000025698,0.0000025993,0.0000026004, +0.0000025743,0.0000024973,0.0000024675,0.0000024726,0.0000024767, +0.0000024595,0.0000024197,0.0000023959,0.0000023943,0.0000024004, +0.0000024044,0.0000024079,0.0000024112,0.0000024128,0.0000024123, +0.0000024119,0.0000024125,0.0000024141,0.0000024168,0.0000024210, +0.0000024262,0.0000024334,0.0000024447,0.0000024543,0.0000024562, +0.0000024555,0.0000024551,0.0000024530,0.0000024491,0.0000024468, +0.0000024463,0.0000024462,0.0000024462,0.0000024469,0.0000024479, +0.0000024499,0.0000024535,0.0000024564,0.0000024566,0.0000024537, +0.0000024491,0.0000024448,0.0000024447,0.0000024488,0.0000024535, +0.0000024582,0.0000024625,0.0000024662,0.0000024678,0.0000024666, +0.0000024611,0.0000024542,0.0000024513,0.0000024515,0.0000024526, +0.0000024543,0.0000024575,0.0000024627,0.0000024677,0.0000024706, +0.0000024705,0.0000024682,0.0000024656,0.0000024653,0.0000024681, +0.0000024736,0.0000024796,0.0000024833,0.0000024846,0.0000024846, +0.0000024819,0.0000024773,0.0000024750,0.0000024804,0.0000024972, +0.0000025163,0.0000025293,0.0000025343,0.0000025382,0.0000025455, +0.0000025618,0.0000025820,0.0000025900,0.0000025898,0.0000025923, +0.0000025930,0.0000025836,0.0000025677,0.0000025595,0.0000025631, +0.0000025735,0.0000025788,0.0000025766,0.0000025724,0.0000025709, +0.0000025715,0.0000025720,0.0000025708,0.0000025676,0.0000025632, +0.0000025608,0.0000025622,0.0000025676,0.0000025733,0.0000025786, +0.0000025826,0.0000025837,0.0000025817,0.0000025772,0.0000025723, +0.0000025673,0.0000025623,0.0000025591,0.0000025593,0.0000025603, +0.0000025580,0.0000025514,0.0000025470,0.0000025453,0.0000025374, +0.0000025178,0.0000024999,0.0000024933,0.0000024908,0.0000024856, +0.0000024763,0.0000024670,0.0000024609,0.0000024583,0.0000024576, +0.0000024569,0.0000024559,0.0000024531,0.0000024481,0.0000024413, +0.0000024335,0.0000024257,0.0000024212,0.0000024197,0.0000024214, +0.0000024241,0.0000024264,0.0000024284,0.0000024317,0.0000024359, +0.0000024405,0.0000024455,0.0000024508,0.0000024551,0.0000024570, +0.0000024559,0.0000024511,0.0000024452,0.0000024397,0.0000024308, +0.0000024141,0.0000023951,0.0000023860,0.0000023857,0.0000023799, +0.0000023496,0.0000023037,0.0000022703,0.0000022573,0.0000022486, +0.0000022375,0.0000022292,0.0000022238,0.0000022183,0.0000022141, +0.0000022122,0.0000022075,0.0000022007,0.0000022028,0.0000022191, +0.0000022385,0.0000022497,0.0000022567,0.0000022688,0.0000022885, +0.0000023101,0.0000023264,0.0000023353,0.0000023414,0.0000023575, +0.0000023888,0.0000024177,0.0000024309,0.0000024434,0.0000024642, +0.0000024785,0.0000024805,0.0000024779,0.0000024705,0.0000024601, +0.0000024532,0.0000024502,0.0000024457,0.0000024391,0.0000024346, +0.0000024335,0.0000024330,0.0000024312,0.0000024318,0.0000024422, +0.0000024627,0.0000024813,0.0000024869,0.0000024848,0.0000024824, +0.0000024847,0.0000024894,0.0000024897,0.0000024864,0.0000024856, +0.0000024929,0.0000025045,0.0000025104,0.0000025085,0.0000025045, +0.0000025064,0.0000025163,0.0000025277,0.0000025339,0.0000025348, +0.0000025346,0.0000025342,0.0000025347,0.0000025375,0.0000025413, +0.0000025427,0.0000025421,0.0000025420,0.0000025418,0.0000025407, +0.0000025394,0.0000025379,0.0000025346,0.0000025303,0.0000025278, +0.0000025278,0.0000025290,0.0000025308,0.0000025319,0.0000025317, +0.0000025309,0.0000025298,0.0000025292,0.0000025296,0.0000025316, +0.0000025351,0.0000025400,0.0000025455,0.0000025504,0.0000025532, +0.0000025532,0.0000025523,0.0000025530,0.0000025544,0.0000025525, +0.0000025471,0.0000025428,0.0000025431,0.0000025430,0.0000025389, +0.0000025383,0.0000025454,0.0000025527,0.0000025548,0.0000025572, +0.0000025653,0.0000025750,0.0000025812,0.0000025854,0.0000025907, +0.0000025994,0.0000026136,0.0000026305,0.0000026402,0.0000026405, +0.0000026356,0.0000026255,0.0000026134,0.0000026071,0.0000026103, +0.0000026176,0.0000026218,0.0000026196,0.0000026092,0.0000025932, +0.0000025738,0.0000025564,0.0000025490,0.0000025499,0.0000025548, +0.0000025596,0.0000025639,0.0000025669,0.0000025674,0.0000025653, +0.0000025615,0.0000025587,0.0000025578,0.0000025610,0.0000025679, +0.0000025768,0.0000025852,0.0000025922,0.0000025969,0.0000025991, +0.0000025989,0.0000025957,0.0000025886,0.0000025803,0.0000025721, +0.0000025650,0.0000025595,0.0000025557,0.0000025534,0.0000025522, +0.0000025515,0.0000025510,0.0000025501,0.0000025490,0.0000025475, +0.0000025453,0.0000025440,0.0000025454,0.0000025513,0.0000025605, +0.0000025694,0.0000025751,0.0000025767,0.0000025756,0.0000025735, +0.0000025697,0.0000025625,0.0000025515,0.0000025385,0.0000025266, +0.0000025172,0.0000025109,0.0000025095,0.0000025172,0.0000025363, +0.0000025545,0.0000025741,0.0000026066,0.0000026382,0.0000026494, +0.0000026505,0.0000026531,0.0000026587,0.0000026654,0.0000026709, +0.0000026750,0.0000026790,0.0000026837,0.0000026873,0.0000026873, +0.0000026833,0.0000026758,0.0000026670,0.0000026554,0.0000026412, +0.0000026284,0.0000026190,0.0000026097,0.0000025970,0.0000025785, +0.0000025562,0.0000025399,0.0000025322,0.0000025291,0.0000025303, +0.0000025357,0.0000025376,0.0000025289,0.0000025130,0.0000024953, +0.0000024746,0.0000024571,0.0000024506,0.0000024506,0.0000024492, +0.0000024397,0.0000024200,0.0000023961,0.0000023756,0.0000023618, +0.0000023552,0.0000023540,0.0000023551,0.0000023542,0.0000023516, +0.0000023476,0.0000023433,0.0000023403,0.0000023389,0.0000023383, +0.0000023392,0.0000023431,0.0000023501,0.0000023586,0.0000023667, +0.0000023727,0.0000023754,0.0000023751,0.0000023707,0.0000023619, +0.0000023511,0.0000023398,0.0000023291,0.0000023229,0.0000023220, +0.0000023219,0.0000023204,0.0000023195,0.0000023216,0.0000023282, +0.0000023353,0.0000023400,0.0000023426,0.0000023464,0.0000023545, +0.0000023636,0.0000023680,0.0000023679,0.0000023693,0.0000023759, +0.0000023970,0.0000024270,0.0000024467,0.0000024480,0.0000024449, +0.0000024729,0.0000025328,0.0000025739,0.0000025882,0.0000025949, +0.0000026017,0.0000026074,0.0000026118,0.0000026141,0.0000026149, +0.0000026153,0.0000026153,0.0000026152,0.0000026148,0.0000026144, +0.0000026132,0.0000026121,0.0000026108,0.0000026089,0.0000026057, +0.0000026008,0.0000025939,0.0000025856,0.0000025754,0.0000025634, +0.0000025485,0.0000025304,0.0000025095,0.0000024853,0.0000024596, +0.0000024369,0.0000024205,0.0000024127,0.0000024110,0.0000024090, +0.0000024042,0.0000023976,0.0000023897,0.0000023786,0.0000023643, +0.0000023494,0.0000023374,0.0000023289,0.0000023221,0.0000023128, +0.0000023001,0.0000022877,0.0000022779,0.0000022702,0.0000022662, +0.0000022663,0.0000022668,0.0000022662,0.0000022655,0.0000022642, +0.0000022614,0.0000022574,0.0000022526,0.0000022491,0.0000022492, +0.0000022529,0.0000022561,0.0000022574,0.0000022591,0.0000022613, +0.0000022627,0.0000022628,0.0000022632,0.0000022642,0.0000022644, +0.0000022646,0.0000022651,0.0000022649,0.0000022633,0.0000022628, +0.0000022650,0.0000022698,0.0000022735,0.0000022752,0.0000022776, +0.0000022787,0.0000022761,0.0000022716,0.0000022664,0.0000022595, +0.0000022523,0.0000022468,0.0000022443,0.0000022432,0.0000022416, +0.0000022383,0.0000022341,0.0000022303,0.0000022273,0.0000022247, +0.0000022211,0.0000022157,0.0000022102,0.0000022048,0.0000021990, +0.0000021928,0.0000021870,0.0000021824,0.0000021786,0.0000021754, +0.0000021735,0.0000021732,0.0000021731,0.0000021721,0.0000021703, +0.0000021689,0.0000021686,0.0000021691,0.0000021710,0.0000021743, +0.0000021784,0.0000021829,0.0000021865,0.0000021887,0.0000021902, +0.0000021915,0.0000021926,0.0000021940,0.0000021959,0.0000021977, +0.0000021987,0.0000021984,0.0000021977,0.0000021972,0.0000021965, +0.0000021957,0.0000021957,0.0000021964,0.0000021976,0.0000021987, +0.0000021991,0.0000021996,0.0000022010,0.0000022037,0.0000022083, +0.0000022150,0.0000022216,0.0000022250,0.0000022251,0.0000022225, +0.0000022185,0.0000022138,0.0000022084,0.0000022033,0.0000021995, +0.0000021949,0.0000021894,0.0000021919,0.0000022029,0.0000022303, +0.0000022689,0.0000023031,0.0000023203,0.0000023248,0.0000023305, +0.0000023324,0.0000023296,0.0000023248,0.0000023218,0.0000023229, +0.0000023267,0.0000023341,0.0000023501,0.0000023703,0.0000023825, +0.0000023841,0.0000023818,0.0000023776,0.0000023726,0.0000023675, +0.0000023636,0.0000023616,0.0000023611,0.0000023615,0.0000023620, +0.0000023621,0.0000023633,0.0000023677,0.0000023768,0.0000023891, +0.0000024016,0.0000024140,0.0000024289,0.0000024489,0.0000024707, +0.0000024864,0.0000024905,0.0000024816,0.0000024651,0.0000024458, +0.0000024312,0.0000024214,0.0000024137,0.0000024081,0.0000024056, +0.0000024057,0.0000024073,0.0000024093,0.0000024107,0.0000024113, +0.0000024111,0.0000024097,0.0000024069,0.0000024032,0.0000024085, +0.0000024046,0.0000024018,0.0000024004,0.0000023994,0.0000023994, +0.0000024027,0.0000024092,0.0000024130,0.0000024127,0.0000024124, +0.0000024129,0.0000024100,0.0000024012,0.0000023923,0.0000023891, +0.0000023888,0.0000023863,0.0000023773,0.0000023637,0.0000023536, +0.0000023512,0.0000023552,0.0000023632,0.0000023696,0.0000023727, +0.0000023740,0.0000023735,0.0000023694,0.0000023629,0.0000023580, +0.0000023581,0.0000023591,0.0000023557,0.0000023484,0.0000023453, +0.0000023486,0.0000023577,0.0000023649,0.0000023667,0.0000023653, +0.0000023629,0.0000023599,0.0000023580,0.0000023562,0.0000023555, +0.0000023560,0.0000023540,0.0000023484,0.0000023445,0.0000023439, +0.0000023439,0.0000023463,0.0000023486,0.0000023485,0.0000023512, +0.0000023590,0.0000023674,0.0000023737,0.0000023779,0.0000023809, +0.0000023840,0.0000023877,0.0000023908,0.0000023917,0.0000023910, +0.0000023902,0.0000023899,0.0000023900,0.0000023913,0.0000023932, +0.0000023938,0.0000023919,0.0000023886,0.0000023873,0.0000023851, +0.0000023780,0.0000023709,0.0000023702,0.0000023744,0.0000023830, +0.0000023891,0.0000023904,0.0000023867,0.0000023778,0.0000023718, +0.0000023688,0.0000023685,0.0000023717,0.0000023729,0.0000023690, +0.0000023644,0.0000023631,0.0000023643,0.0000023694,0.0000023796, +0.0000023912,0.0000024028,0.0000024132,0.0000024215,0.0000024296, +0.0000024388,0.0000024480,0.0000024560,0.0000024617,0.0000024664, +0.0000024714,0.0000024760,0.0000024795,0.0000024807,0.0000024797, +0.0000024772,0.0000024738,0.0000024692,0.0000024631,0.0000024563, +0.0000024503,0.0000024470,0.0000024455,0.0000024448,0.0000024446, +0.0000024444,0.0000024446,0.0000024465,0.0000024483,0.0000024485, +0.0000024542,0.0000024722,0.0000024916,0.0000025024,0.0000025037, +0.0000025013,0.0000025020,0.0000025083,0.0000025171,0.0000025282, +0.0000025400,0.0000025457,0.0000025435,0.0000025340,0.0000025225, +0.0000025105,0.0000024975,0.0000024878,0.0000024850,0.0000024861, +0.0000024909,0.0000024990,0.0000025048,0.0000025028,0.0000024947, +0.0000024895,0.0000024881,0.0000024843,0.0000024791,0.0000024723, +0.0000024591,0.0000024441,0.0000024372,0.0000024370,0.0000024368, +0.0000024334,0.0000024280,0.0000024232,0.0000024192,0.0000024161, +0.0000024141,0.0000024127,0.0000024111,0.0000024107,0.0000024128, +0.0000024159,0.0000024175,0.0000024177,0.0000024190,0.0000024234, +0.0000024313,0.0000024411,0.0000024503,0.0000024583,0.0000024637, +0.0000024665,0.0000024670,0.0000024666,0.0000024647,0.0000024614, +0.0000024571,0.0000024535,0.0000024529,0.0000024553,0.0000024584, +0.0000024606,0.0000024616,0.0000024622,0.0000024624,0.0000024624, +0.0000024619,0.0000024615,0.0000024621,0.0000024652,0.0000024711, +0.0000024787,0.0000024862,0.0000024936,0.0000025011,0.0000025065, +0.0000025086,0.0000025081,0.0000025063,0.0000025047,0.0000025049, +0.0000025072,0.0000025113,0.0000025160,0.0000025199,0.0000025229, +0.0000025259,0.0000025291,0.0000025320,0.0000025329,0.0000025312, +0.0000025269,0.0000025197,0.0000025099,0.0000024995,0.0000024917, +0.0000024874,0.0000024856,0.0000024856,0.0000024868,0.0000024887, +0.0000024897,0.0000024883,0.0000024827,0.0000024744,0.0000024660, +0.0000024603,0.0000024568,0.0000024529,0.0000024474,0.0000024416, +0.0000024370,0.0000024296,0.0000024109,0.0000023871,0.0000023745, +0.0000023723,0.0000023694,0.0000023659,0.0000023669,0.0000023695, +0.0000023675,0.0000023611,0.0000023555,0.0000023539,0.0000023578, +0.0000023725,0.0000023932,0.0000024093,0.0000024183,0.0000024253, +0.0000024336,0.0000024430,0.0000024530,0.0000024633,0.0000024730, +0.0000024812,0.0000024873,0.0000024900,0.0000024899,0.0000024900, +0.0000024912,0.0000024933,0.0000024966,0.0000025041,0.0000025177, +0.0000025329,0.0000025411,0.0000025397,0.0000025347,0.0000025331, +0.0000025389,0.0000025499,0.0000025581,0.0000025593,0.0000025572, +0.0000025562,0.0000025593,0.0000025665,0.0000025748,0.0000025836, +0.0000025919,0.0000025985,0.0000026029,0.0000026040,0.0000026012, +0.0000025965,0.0000025934,0.0000025909,0.0000025868,0.0000025788, +0.0000025673,0.0000025525,0.0000025371,0.0000025262,0.0000025216, +0.0000025213,0.0000025218,0.0000025208,0.0000025178,0.0000025171, +0.0000025191,0.0000025203,0.0000025195,0.0000025154,0.0000025066, +0.0000024935,0.0000024806,0.0000024709,0.0000024641,0.0000024600, +0.0000024570,0.0000024541,0.0000024515,0.0000024502,0.0000024496, +0.0000024481,0.0000024464,0.0000024441,0.0000024407,0.0000024376, +0.0000024344,0.0000024312,0.0000024281,0.0000024294,0.0000024498, +0.0000024806,0.0000024879,0.0000024760,0.0000024662,0.0000024723, +0.0000024830,0.0000024932,0.0000025026,0.0000025076,0.0000025109, +0.0000025123,0.0000025129,0.0000025127,0.0000025110,0.0000025069, +0.0000025008,0.0000024934,0.0000024867,0.0000024832,0.0000024835, +0.0000024865,0.0000024881,0.0000024903,0.0000024981,0.0000025111, +0.0000025250,0.0000025356,0.0000025401,0.0000025388,0.0000025343, +0.0000025303,0.0000025262,0.0000025186,0.0000025089,0.0000025027, +0.0000025020,0.0000025055,0.0000025099,0.0000025140,0.0000025223, +0.0000025340,0.0000025394,0.0000025358,0.0000025318,0.0000025325, +0.0000025331,0.0000025297,0.0000025252,0.0000025228,0.0000025247, +0.0000025267,0.0000025294,0.0000025317,0.0000025299,0.0000025202, +0.0000025050,0.0000024902,0.0000024795,0.0000024723,0.0000024662, +0.0000024596,0.0000024511,0.0000024406,0.0000024285,0.0000024149, +0.0000024002,0.0000023875,0.0000023795,0.0000023744,0.0000023709, +0.0000023701,0.0000023721,0.0000023757,0.0000023798,0.0000023850, +0.0000023910,0.0000023968,0.0000024012,0.0000024037,0.0000024035, +0.0000023998,0.0000023936,0.0000023865,0.0000023800,0.0000023747, +0.0000023701,0.0000023655,0.0000023607,0.0000023564,0.0000023528, +0.0000023495,0.0000023459,0.0000023425,0.0000023399,0.0000023378, +0.0000023346,0.0000023299,0.0000023245,0.0000023186,0.0000023134, +0.0000023102,0.0000023083,0.0000023058,0.0000023018,0.0000022959, +0.0000022894,0.0000022833,0.0000022781,0.0000022738,0.0000022702, +0.0000022679,0.0000022683,0.0000022701,0.0000022731,0.0000022762, +0.0000022796,0.0000022817,0.0000022819,0.0000022812,0.0000022800, +0.0000022769,0.0000022751,0.0000022791,0.0000022880,0.0000022948, +0.0000022961,0.0000022932,0.0000022882,0.0000022835,0.0000022816, +0.0000022840,0.0000022902,0.0000022941,0.0000022942,0.0000022936, +0.0000022943,0.0000022960,0.0000022970,0.0000022962,0.0000022925, +0.0000022868,0.0000022817,0.0000022773,0.0000022762,0.0000022780, +0.0000022824,0.0000022883,0.0000022935,0.0000022965,0.0000022959, +0.0000022909,0.0000022827,0.0000022754,0.0000022678,0.0000022581, +0.0000022503,0.0000022485,0.0000022531,0.0000022645,0.0000022819, +0.0000023033,0.0000023252,0.0000023459,0.0000023659,0.0000023787, +0.0000023784,0.0000023701,0.0000023644,0.0000023730,0.0000023927, +0.0000024058,0.0000024103,0.0000024191,0.0000024305,0.0000024473, +0.0000024766,0.0000025098,0.0000025360,0.0000025460,0.0000025722, +0.0000026243,0.0000026571,0.0000026542,0.0000026384,0.0000026250, +0.0000025989,0.0000025480,0.0000025095,0.0000024878,0.0000024685, +0.0000024288,0.0000023897,0.0000023782,0.0000023881,0.0000024091, +0.0000024226,0.0000024257,0.0000024278,0.0000024245,0.0000024347, +0.0000024735,0.0000024881,0.0000024858,0.0000025465,0.0000025941, +0.0000025998,0.0000025886,0.0000025143,0.0000024717,0.0000024735, +0.0000024788,0.0000024629,0.0000024212,0.0000023975,0.0000023966, +0.0000024028,0.0000024077,0.0000024121,0.0000024144,0.0000024148, +0.0000024151,0.0000024165,0.0000024187,0.0000024207,0.0000024240, +0.0000024290,0.0000024345,0.0000024414,0.0000024494,0.0000024542, +0.0000024530,0.0000024517,0.0000024528,0.0000024527,0.0000024491, +0.0000024463,0.0000024448,0.0000024442,0.0000024442,0.0000024444, +0.0000024441,0.0000024441,0.0000024456,0.0000024469,0.0000024463, +0.0000024440,0.0000024413,0.0000024403,0.0000024425,0.0000024472, +0.0000024510,0.0000024550,0.0000024587,0.0000024611,0.0000024615, +0.0000024599,0.0000024550,0.0000024485,0.0000024462,0.0000024478, +0.0000024507,0.0000024537,0.0000024564,0.0000024603,0.0000024655, +0.0000024699,0.0000024711,0.0000024694,0.0000024649,0.0000024614, +0.0000024613,0.0000024646,0.0000024698,0.0000024734,0.0000024753, +0.0000024771,0.0000024776,0.0000024755,0.0000024728,0.0000024742, +0.0000024877,0.0000025087,0.0000025257,0.0000025331,0.0000025362, +0.0000025422,0.0000025541,0.0000025745,0.0000025897,0.0000025895, +0.0000025838,0.0000025806,0.0000025735,0.0000025631,0.0000025599, +0.0000025672,0.0000025771,0.0000025802,0.0000025770,0.0000025716, +0.0000025688,0.0000025691,0.0000025702,0.0000025698,0.0000025671, +0.0000025626,0.0000025580,0.0000025570,0.0000025617,0.0000025695, +0.0000025760,0.0000025808,0.0000025835,0.0000025831,0.0000025802, +0.0000025756,0.0000025710,0.0000025672,0.0000025653,0.0000025645, +0.0000025615,0.0000025549,0.0000025490,0.0000025477,0.0000025432, +0.0000025268,0.0000025072,0.0000024971,0.0000024946,0.0000024900, +0.0000024802,0.0000024697,0.0000024624,0.0000024584,0.0000024558, +0.0000024541,0.0000024530,0.0000024528,0.0000024526,0.0000024510, +0.0000024477,0.0000024428,0.0000024358,0.0000024282,0.0000024228, +0.0000024214,0.0000024230,0.0000024257,0.0000024287,0.0000024323, +0.0000024369,0.0000024419,0.0000024463,0.0000024496,0.0000024517, +0.0000024510,0.0000024479,0.0000024438,0.0000024393,0.0000024312, +0.0000024157,0.0000023968,0.0000023854,0.0000023842,0.0000023840, +0.0000023691,0.0000023306,0.0000022870,0.0000022622,0.0000022529, +0.0000022436,0.0000022338,0.0000022280,0.0000022241,0.0000022186, +0.0000022129,0.0000022104,0.0000022071,0.0000022005,0.0000021998, +0.0000022132,0.0000022326,0.0000022459,0.0000022537,0.0000022630, +0.0000022782,0.0000022969,0.0000023137,0.0000023264,0.0000023342, +0.0000023411,0.0000023591,0.0000023911,0.0000024183,0.0000024297, +0.0000024415,0.0000024616,0.0000024752,0.0000024765,0.0000024715, +0.0000024631,0.0000024553,0.0000024507,0.0000024464,0.0000024400, +0.0000024344,0.0000024327,0.0000024330,0.0000024322,0.0000024313, +0.0000024366,0.0000024538,0.0000024753,0.0000024877,0.0000024879, +0.0000024833,0.0000024824,0.0000024866,0.0000024891,0.0000024860, +0.0000024815,0.0000024829,0.0000024926,0.0000025040,0.0000025074, +0.0000025040,0.0000025018,0.0000025065,0.0000025189,0.0000025301, +0.0000025349,0.0000025358,0.0000025357,0.0000025356,0.0000025361, +0.0000025383,0.0000025406,0.0000025408,0.0000025399,0.0000025390, +0.0000025377,0.0000025351,0.0000025326,0.0000025308,0.0000025289, +0.0000025279,0.0000025276,0.0000025277,0.0000025272,0.0000025261, +0.0000025248,0.0000025239,0.0000025235,0.0000025237,0.0000025250, +0.0000025272,0.0000025304,0.0000025349,0.0000025399,0.0000025451, +0.0000025500,0.0000025535,0.0000025543,0.0000025525,0.0000025511, +0.0000025514,0.0000025506,0.0000025456,0.0000025403,0.0000025388, +0.0000025374,0.0000025326,0.0000025321,0.0000025409,0.0000025502, +0.0000025528,0.0000025536,0.0000025601,0.0000025702,0.0000025774, +0.0000025808,0.0000025849,0.0000025921,0.0000026030,0.0000026186, +0.0000026335,0.0000026398,0.0000026378,0.0000026296,0.0000026159, +0.0000026049,0.0000026015,0.0000026041,0.0000026070,0.0000026059, +0.0000025975,0.0000025831,0.0000025659,0.0000025526,0.0000025487, +0.0000025504,0.0000025541,0.0000025563,0.0000025570,0.0000025555, +0.0000025521,0.0000025482,0.0000025456,0.0000025458,0.0000025514, +0.0000025625,0.0000025758,0.0000025879,0.0000025971,0.0000026025, +0.0000026048,0.0000026053,0.0000026035,0.0000025975,0.0000025888, +0.0000025797,0.0000025712,0.0000025627,0.0000025539,0.0000025456, +0.0000025388,0.0000025346,0.0000025336,0.0000025353,0.0000025382, +0.0000025397,0.0000025390,0.0000025374,0.0000025373,0.0000025402, +0.0000025464,0.0000025537,0.0000025588,0.0000025602,0.0000025592, +0.0000025574,0.0000025551,0.0000025510,0.0000025437,0.0000025337, +0.0000025234,0.0000025148,0.0000025074,0.0000025022,0.0000025033, +0.0000025168,0.0000025369,0.0000025599,0.0000025932,0.0000026301, +0.0000026476,0.0000026491,0.0000026501,0.0000026542,0.0000026611, +0.0000026682,0.0000026742,0.0000026803,0.0000026862,0.0000026897, +0.0000026886,0.0000026844,0.0000026775,0.0000026699,0.0000026602, +0.0000026476,0.0000026345,0.0000026242,0.0000026154,0.0000026043, +0.0000025880,0.0000025661,0.0000025485,0.0000025425,0.0000025415, +0.0000025406,0.0000025428,0.0000025459,0.0000025427,0.0000025302, +0.0000025147,0.0000024952,0.0000024730,0.0000024576,0.0000024528, +0.0000024521,0.0000024473,0.0000024311,0.0000024052,0.0000023784, +0.0000023576,0.0000023439,0.0000023368,0.0000023371,0.0000023438, +0.0000023507,0.0000023517,0.0000023489,0.0000023437,0.0000023392, +0.0000023368,0.0000023357,0.0000023345,0.0000023341,0.0000023364, +0.0000023419,0.0000023496,0.0000023571,0.0000023622,0.0000023646, +0.0000023638,0.0000023586,0.0000023500,0.0000023401,0.0000023291, +0.0000023195,0.0000023160,0.0000023155,0.0000023148,0.0000023129, +0.0000023125,0.0000023165,0.0000023226,0.0000023271,0.0000023283, +0.0000023298,0.0000023369,0.0000023493,0.0000023597,0.0000023632, +0.0000023640,0.0000023680,0.0000023804,0.0000024068,0.0000024321, +0.0000024423,0.0000024378,0.0000024381,0.0000024780,0.0000025357, +0.0000025683,0.0000025790,0.0000025888,0.0000025990,0.0000026049, +0.0000026073,0.0000026090,0.0000026111,0.0000026134,0.0000026148, +0.0000026152,0.0000026147,0.0000026134,0.0000026108,0.0000026074, +0.0000026034,0.0000025982,0.0000025911,0.0000025817,0.0000025692, +0.0000025530,0.0000025331,0.0000025095,0.0000024833,0.0000024574, +0.0000024349,0.0000024182,0.0000024089,0.0000024059,0.0000024065, +0.0000024070,0.0000024052,0.0000024008,0.0000023952,0.0000023870, +0.0000023752,0.0000023615,0.0000023496,0.0000023400,0.0000023322, +0.0000023244,0.0000023139,0.0000023004,0.0000022877,0.0000022786, +0.0000022705,0.0000022641,0.0000022635,0.0000022663,0.0000022671, +0.0000022659,0.0000022646,0.0000022630,0.0000022600,0.0000022555, +0.0000022509,0.0000022488,0.0000022497,0.0000022521,0.0000022537, +0.0000022550,0.0000022566,0.0000022585,0.0000022592,0.0000022599, +0.0000022616,0.0000022625,0.0000022631,0.0000022636,0.0000022635, +0.0000022620,0.0000022598,0.0000022592,0.0000022613,0.0000022658, +0.0000022690,0.0000022711,0.0000022739,0.0000022742,0.0000022713, +0.0000022679,0.0000022630,0.0000022557,0.0000022484,0.0000022438, +0.0000022420,0.0000022404,0.0000022367,0.0000022314,0.0000022268, +0.0000022243,0.0000022223,0.0000022200,0.0000022165,0.0000022114, +0.0000022059,0.0000022009,0.0000021955,0.0000021891,0.0000021825, +0.0000021769,0.0000021722,0.0000021684,0.0000021664,0.0000021661, +0.0000021665,0.0000021666,0.0000021660,0.0000021656,0.0000021658, +0.0000021660,0.0000021670,0.0000021690,0.0000021719,0.0000021753, +0.0000021781,0.0000021798,0.0000021808,0.0000021818,0.0000021827, +0.0000021842,0.0000021864,0.0000021888,0.0000021906,0.0000021911, +0.0000021912,0.0000021914,0.0000021915,0.0000021919,0.0000021928, +0.0000021945,0.0000021966,0.0000021982,0.0000021991,0.0000022001, +0.0000022024,0.0000022068,0.0000022135,0.0000022213,0.0000022270, +0.0000022285,0.0000022279,0.0000022259,0.0000022232,0.0000022202, +0.0000022162,0.0000022095,0.0000022022,0.0000021958,0.0000021886, +0.0000021884,0.0000021983,0.0000022241,0.0000022614,0.0000022969, +0.0000023168,0.0000023214,0.0000023268,0.0000023299,0.0000023274, +0.0000023220,0.0000023175,0.0000023170,0.0000023205,0.0000023270, +0.0000023388,0.0000023563,0.0000023712,0.0000023765,0.0000023755, +0.0000023709,0.0000023639,0.0000023562,0.0000023494,0.0000023453, +0.0000023445,0.0000023458,0.0000023487,0.0000023518,0.0000023530, +0.0000023528,0.0000023539,0.0000023590,0.0000023695,0.0000023838, +0.0000023976,0.0000024095,0.0000024232,0.0000024413,0.0000024604, +0.0000024716,0.0000024742,0.0000024660,0.0000024537,0.0000024413, +0.0000024322,0.0000024267,0.0000024235,0.0000024218,0.0000024212, +0.0000024208,0.0000024202,0.0000024194,0.0000024187,0.0000024179, +0.0000024158,0.0000024124,0.0000024163,0.0000024113,0.0000024071, +0.0000024044,0.0000024021,0.0000023997,0.0000024003,0.0000024063, +0.0000024120,0.0000024129,0.0000024130,0.0000024134,0.0000024095, +0.0000023989,0.0000023908,0.0000023882,0.0000023866,0.0000023808, +0.0000023686,0.0000023554,0.0000023482,0.0000023485,0.0000023557, +0.0000023650,0.0000023707,0.0000023728,0.0000023727,0.0000023702, +0.0000023645,0.0000023586,0.0000023566,0.0000023583,0.0000023579, +0.0000023520,0.0000023459,0.0000023468,0.0000023554,0.0000023650, +0.0000023694,0.0000023689,0.0000023660,0.0000023625,0.0000023579, +0.0000023542,0.0000023524,0.0000023530,0.0000023559,0.0000023582, +0.0000023551,0.0000023480,0.0000023445,0.0000023442,0.0000023457, +0.0000023484,0.0000023484,0.0000023491,0.0000023565,0.0000023665, +0.0000023739,0.0000023785,0.0000023809,0.0000023829,0.0000023865, +0.0000023904,0.0000023922,0.0000023918,0.0000023904,0.0000023889, +0.0000023878,0.0000023881,0.0000023893,0.0000023897,0.0000023879, +0.0000023849,0.0000023847,0.0000023856,0.0000023817,0.0000023742, +0.0000023711,0.0000023726,0.0000023800,0.0000023880,0.0000023911, +0.0000023901,0.0000023823,0.0000023730,0.0000023679,0.0000023652, +0.0000023660,0.0000023698,0.0000023708,0.0000023676,0.0000023647, +0.0000023646,0.0000023660,0.0000023701,0.0000023782,0.0000023882, +0.0000023981,0.0000024074,0.0000024153,0.0000024224,0.0000024308, +0.0000024408,0.0000024496,0.0000024557,0.0000024601,0.0000024643, +0.0000024687,0.0000024728,0.0000024748,0.0000024746,0.0000024728, +0.0000024702,0.0000024652,0.0000024576,0.0000024489,0.0000024417, +0.0000024384,0.0000024381,0.0000024389,0.0000024398,0.0000024402, +0.0000024408,0.0000024425,0.0000024437,0.0000024435,0.0000024495, +0.0000024697,0.0000024902,0.0000024999,0.0000024998,0.0000024974, +0.0000025001,0.0000025079,0.0000025184,0.0000025310,0.0000025419, +0.0000025445,0.0000025393,0.0000025289,0.0000025175,0.0000025037, +0.0000024911,0.0000024844,0.0000024839,0.0000024869,0.0000024948, +0.0000025027,0.0000025041,0.0000024977,0.0000024894,0.0000024866, +0.0000024858,0.0000024814,0.0000024729,0.0000024600,0.0000024461, +0.0000024386,0.0000024376,0.0000024377,0.0000024340,0.0000024259, +0.0000024182,0.0000024140,0.0000024113,0.0000024078,0.0000024042, +0.0000024011,0.0000023988,0.0000023985,0.0000024011,0.0000024051, +0.0000024082,0.0000024101,0.0000024116,0.0000024135,0.0000024172, +0.0000024237,0.0000024335,0.0000024450,0.0000024549,0.0000024615, +0.0000024654,0.0000024669,0.0000024658,0.0000024631,0.0000024587, +0.0000024560,0.0000024567,0.0000024592,0.0000024609,0.0000024616, +0.0000024619,0.0000024620,0.0000024618,0.0000024617,0.0000024615, +0.0000024615,0.0000024627,0.0000024672,0.0000024753,0.0000024843, +0.0000024916,0.0000024981,0.0000025045,0.0000025088,0.0000025100, +0.0000025088,0.0000025060,0.0000025042,0.0000025041,0.0000025061, +0.0000025105,0.0000025167,0.0000025229,0.0000025266,0.0000025276, +0.0000025281,0.0000025292,0.0000025302,0.0000025298,0.0000025274, +0.0000025238,0.0000025187,0.0000025118,0.0000025040,0.0000024973, +0.0000024926,0.0000024901,0.0000024896,0.0000024900,0.0000024899, +0.0000024876,0.0000024819,0.0000024730,0.0000024636,0.0000024570, +0.0000024531,0.0000024496,0.0000024455,0.0000024409,0.0000024373, +0.0000024326,0.0000024185,0.0000023964,0.0000023813,0.0000023769, +0.0000023731,0.0000023686,0.0000023679,0.0000023691,0.0000023663, +0.0000023596,0.0000023535,0.0000023510,0.0000023529,0.0000023664, +0.0000023894,0.0000024085,0.0000024180,0.0000024234,0.0000024302, +0.0000024388,0.0000024487,0.0000024591,0.0000024688,0.0000024762, +0.0000024804,0.0000024814,0.0000024798,0.0000024775,0.0000024765, +0.0000024771,0.0000024794,0.0000024843,0.0000024938,0.0000025096, +0.0000025265,0.0000025351,0.0000025339,0.0000025298,0.0000025299, +0.0000025376,0.0000025500,0.0000025576,0.0000025573,0.0000025560, +0.0000025583,0.0000025642,0.0000025722,0.0000025814,0.0000025902, +0.0000025975,0.0000026027,0.0000026049,0.0000026027,0.0000025979, +0.0000025930,0.0000025881,0.0000025812,0.0000025700,0.0000025553, +0.0000025393,0.0000025262,0.0000025199,0.0000025198,0.0000025231, +0.0000025260,0.0000025254,0.0000025220,0.0000025202,0.0000025199, +0.0000025178,0.0000025105,0.0000024985,0.0000024849,0.0000024736, +0.0000024674,0.0000024653,0.0000024638,0.0000024617,0.0000024591, +0.0000024561,0.0000024534,0.0000024522,0.0000024525,0.0000024517, +0.0000024496,0.0000024460,0.0000024396,0.0000024304,0.0000024210, +0.0000024123,0.0000024121,0.0000024159,0.0000024245,0.0000024503, +0.0000024830,0.0000024889,0.0000024743,0.0000024666,0.0000024729, +0.0000024828,0.0000024940,0.0000025052,0.0000025114,0.0000025126, +0.0000025118,0.0000025099,0.0000025081,0.0000025055,0.0000025012, +0.0000024950,0.0000024887,0.0000024838,0.0000024813,0.0000024821, +0.0000024834,0.0000024845,0.0000024875,0.0000024966,0.0000025113, +0.0000025259,0.0000025353,0.0000025368,0.0000025344,0.0000025305, +0.0000025274,0.0000025234,0.0000025159,0.0000025080,0.0000025039, +0.0000025036,0.0000025058,0.0000025095,0.0000025142,0.0000025220, +0.0000025320,0.0000025365,0.0000025341,0.0000025320,0.0000025321, +0.0000025310,0.0000025252,0.0000025184,0.0000025173,0.0000025219, +0.0000025262,0.0000025280,0.0000025232,0.0000025107,0.0000024953, +0.0000024819,0.0000024723,0.0000024640,0.0000024546,0.0000024446, +0.0000024353,0.0000024255,0.0000024148,0.0000024037,0.0000023918, +0.0000023808,0.0000023707,0.0000023615,0.0000023552,0.0000023543, +0.0000023590,0.0000023670,0.0000023750,0.0000023814,0.0000023870, +0.0000023922,0.0000023957,0.0000023970,0.0000023966,0.0000023936, +0.0000023891,0.0000023846,0.0000023803,0.0000023756,0.0000023708, +0.0000023659,0.0000023615,0.0000023580,0.0000023554,0.0000023529, +0.0000023494,0.0000023448,0.0000023393,0.0000023334,0.0000023275, +0.0000023217,0.0000023169,0.0000023131,0.0000023093,0.0000023050, +0.0000023000,0.0000022941,0.0000022875,0.0000022819,0.0000022781, +0.0000022756,0.0000022737,0.0000022719,0.0000022705,0.0000022699, +0.0000022703,0.0000022731,0.0000022769,0.0000022796,0.0000022813, +0.0000022819,0.0000022813,0.0000022788,0.0000022770,0.0000022761, +0.0000022730,0.0000022702,0.0000022739,0.0000022850,0.0000022942, +0.0000022960,0.0000022932,0.0000022889,0.0000022851,0.0000022835, +0.0000022853,0.0000022904,0.0000022953,0.0000022972,0.0000022974, +0.0000022974,0.0000022975,0.0000022975,0.0000022968,0.0000022940, +0.0000022881,0.0000022803,0.0000022739,0.0000022696,0.0000022695, +0.0000022730,0.0000022791,0.0000022858,0.0000022912,0.0000022932, +0.0000022896,0.0000022827,0.0000022759,0.0000022700,0.0000022610, +0.0000022515,0.0000022479,0.0000022504,0.0000022601,0.0000022745, +0.0000022939,0.0000023168,0.0000023385,0.0000023586,0.0000023754, +0.0000023799,0.0000023732,0.0000023639,0.0000023658,0.0000023826, +0.0000023997,0.0000024061,0.0000024127,0.0000024235,0.0000024377, +0.0000024637,0.0000024955,0.0000025247,0.0000025417,0.0000025551, +0.0000026004,0.0000026486,0.0000026588,0.0000026485,0.0000026333, +0.0000026101,0.0000025608,0.0000025185,0.0000024946,0.0000024752, +0.0000024363,0.0000023969,0.0000023820,0.0000023875,0.0000024058, +0.0000024214,0.0000024258,0.0000024287,0.0000024283,0.0000024297, +0.0000024596,0.0000024891,0.0000024817,0.0000025216,0.0000025828, +0.0000025995,0.0000025973,0.0000025338,0.0000024791,0.0000024744, +0.0000024808,0.0000024685,0.0000024255,0.0000023998,0.0000023988, +0.0000024042,0.0000024111,0.0000024165,0.0000024181,0.0000024195, +0.0000024236,0.0000024282,0.0000024318,0.0000024336,0.0000024366, +0.0000024405,0.0000024440,0.0000024473,0.0000024504,0.0000024511, +0.0000024483,0.0000024475,0.0000024510,0.0000024520,0.0000024482, +0.0000024448,0.0000024432,0.0000024422,0.0000024424,0.0000024426, +0.0000024420,0.0000024411,0.0000024407,0.0000024408,0.0000024397, +0.0000024378,0.0000024365,0.0000024369,0.0000024399,0.0000024444, +0.0000024478,0.0000024512,0.0000024536,0.0000024542,0.0000024533, +0.0000024509,0.0000024466,0.0000024416,0.0000024403,0.0000024425, +0.0000024466,0.0000024511,0.0000024548,0.0000024581,0.0000024619, +0.0000024664,0.0000024696,0.0000024691,0.0000024643,0.0000024582, +0.0000024553,0.0000024569,0.0000024621,0.0000024662,0.0000024675, +0.0000024682,0.0000024698,0.0000024713,0.0000024716,0.0000024716, +0.0000024800,0.0000025000,0.0000025203,0.0000025315,0.0000025348, +0.0000025395,0.0000025485,0.0000025638,0.0000025846,0.0000025930, +0.0000025879,0.0000025790,0.0000025719,0.0000025672,0.0000025689, +0.0000025771,0.0000025838,0.0000025838,0.0000025788,0.0000025719, +0.0000025673,0.0000025666,0.0000025684,0.0000025697,0.0000025682, +0.0000025637,0.0000025576,0.0000025536,0.0000025551,0.0000025634, +0.0000025725,0.0000025785,0.0000025821,0.0000025831,0.0000025816, +0.0000025782,0.0000025746,0.0000025720,0.0000025700,0.0000025663, +0.0000025597,0.0000025514,0.0000025481,0.0000025468,0.0000025353, +0.0000025150,0.0000025012,0.0000024971,0.0000024931,0.0000024842, +0.0000024739,0.0000024660,0.0000024606,0.0000024553,0.0000024491, +0.0000024427,0.0000024381,0.0000024366,0.0000024374,0.0000024394, +0.0000024404,0.0000024395,0.0000024370,0.0000024317,0.0000024271, +0.0000024237,0.0000024231,0.0000024248,0.0000024277,0.0000024310, +0.0000024353,0.0000024395,0.0000024426,0.0000024442,0.0000024445, +0.0000024434,0.0000024408,0.0000024361,0.0000024274,0.0000024136, +0.0000023972,0.0000023852,0.0000023821,0.0000023823,0.0000023782, +0.0000023540,0.0000023115,0.0000022738,0.0000022564,0.0000022483, +0.0000022386,0.0000022306,0.0000022266,0.0000022245,0.0000022204, +0.0000022143,0.0000022101,0.0000022070,0.0000022013,0.0000021987, +0.0000022090,0.0000022273,0.0000022417,0.0000022507,0.0000022591, +0.0000022713,0.0000022874,0.0000023025,0.0000023153,0.0000023264, +0.0000023338,0.0000023414,0.0000023616,0.0000023940,0.0000024186, +0.0000024281,0.0000024396,0.0000024591,0.0000024718,0.0000024723, +0.0000024664,0.0000024588,0.0000024524,0.0000024468,0.0000024406, +0.0000024348,0.0000024324,0.0000024331,0.0000024338,0.0000024322, +0.0000024337,0.0000024457,0.0000024666,0.0000024844,0.0000024894, +0.0000024859,0.0000024817,0.0000024840,0.0000024887,0.0000024884, +0.0000024827,0.0000024786,0.0000024820,0.0000024925,0.0000025013, +0.0000025028,0.0000024988,0.0000024973,0.0000025050,0.0000025189, +0.0000025301,0.0000025348,0.0000025360,0.0000025368,0.0000025372, +0.0000025377,0.0000025390,0.0000025404,0.0000025405,0.0000025392, +0.0000025373,0.0000025346,0.0000025313,0.0000025291,0.0000025289, +0.0000025292,0.0000025297,0.0000025294,0.0000025273,0.0000025235, +0.0000025198,0.0000025181,0.0000025182,0.0000025196,0.0000025222, +0.0000025252,0.0000025288,0.0000025331,0.0000025377,0.0000025420, +0.0000025462,0.0000025503,0.0000025537,0.0000025550,0.0000025537, +0.0000025510,0.0000025497,0.0000025485,0.0000025446,0.0000025392, +0.0000025355,0.0000025322,0.0000025279,0.0000025285,0.0000025382, +0.0000025479,0.0000025510,0.0000025509,0.0000025547,0.0000025637, +0.0000025725,0.0000025769,0.0000025800,0.0000025855,0.0000025934, +0.0000026056,0.0000026220,0.0000026347,0.0000026374,0.0000026332, +0.0000026230,0.0000026109,0.0000026020,0.0000025983,0.0000025974, +0.0000025956,0.0000025891,0.0000025774,0.0000025630,0.0000025521, +0.0000025491,0.0000025509,0.0000025531,0.0000025535,0.0000025516, +0.0000025461,0.0000025400,0.0000025363,0.0000025361,0.0000025409, +0.0000025533,0.0000025702,0.0000025855,0.0000025961,0.0000026019, +0.0000026045,0.0000026050,0.0000026048,0.0000026023,0.0000025961, +0.0000025874,0.0000025782,0.0000025697,0.0000025614,0.0000025522, +0.0000025419,0.0000025320,0.0000025249,0.0000025225,0.0000025241, +0.0000025290,0.0000025331,0.0000025348,0.0000025354,0.0000025361, +0.0000025385,0.0000025432,0.0000025485,0.0000025520,0.0000025525, +0.0000025518,0.0000025504,0.0000025480,0.0000025435,0.0000025363, +0.0000025273,0.0000025187,0.0000025106,0.0000025021,0.0000024971, +0.0000025018,0.0000025191,0.0000025430,0.0000025770,0.0000026182, +0.0000026441,0.0000026485,0.0000026487,0.0000026510,0.0000026567, +0.0000026643,0.0000026714,0.0000026787,0.0000026866,0.0000026914, +0.0000026910,0.0000026865,0.0000026780,0.0000026710,0.0000026637, +0.0000026532,0.0000026406,0.0000026296,0.0000026207,0.0000026109, +0.0000025971,0.0000025768,0.0000025561,0.0000025480,0.0000025507, +0.0000025531,0.0000025537,0.0000025560,0.0000025556,0.0000025471, +0.0000025340,0.0000025186,0.0000024967,0.0000024754,0.0000024634, +0.0000024583,0.0000024525,0.0000024398,0.0000024168,0.0000023902, +0.0000023672,0.0000023494,0.0000023354,0.0000023253,0.0000023218, +0.0000023262,0.0000023376,0.0000023459,0.0000023471,0.0000023443, +0.0000023394,0.0000023362,0.0000023348,0.0000023337,0.0000023320, +0.0000023303,0.0000023304,0.0000023335,0.0000023389,0.0000023445, +0.0000023491,0.0000023512,0.0000023496,0.0000023446,0.0000023378, +0.0000023292,0.0000023198,0.0000023137,0.0000023111,0.0000023097, +0.0000023074,0.0000023059,0.0000023075,0.0000023125,0.0000023164, +0.0000023163,0.0000023160,0.0000023199,0.0000023321,0.0000023474, +0.0000023570,0.0000023594,0.0000023626,0.0000023693,0.0000023871, +0.0000024135,0.0000024311,0.0000024335,0.0000024283,0.0000024349, +0.0000024779,0.0000025306,0.0000025608,0.0000025739,0.0000025837, +0.0000025941,0.0000026020,0.0000026069,0.0000026102,0.0000026131, +0.0000026150,0.0000026154,0.0000026143,0.0000026107,0.0000026047, +0.0000025980,0.0000025913,0.0000025838,0.0000025731,0.0000025580, +0.0000025380,0.0000025130,0.0000024851,0.0000024573,0.0000024324, +0.0000024133,0.0000024020,0.0000023980,0.0000023988,0.0000024004, +0.0000024012,0.0000024013,0.0000024003,0.0000023971,0.0000023913, +0.0000023825,0.0000023712,0.0000023601,0.0000023517,0.0000023438, +0.0000023360,0.0000023264,0.0000023145,0.0000023006,0.0000022876, +0.0000022785,0.0000022708,0.0000022639,0.0000022621,0.0000022651, +0.0000022680,0.0000022672,0.0000022650,0.0000022635,0.0000022615, +0.0000022578,0.0000022532,0.0000022499,0.0000022492,0.0000022499, +0.0000022509,0.0000022516,0.0000022525,0.0000022542,0.0000022557, +0.0000022568,0.0000022587,0.0000022601,0.0000022611,0.0000022619, +0.0000022618,0.0000022606,0.0000022585,0.0000022563,0.0000022558, +0.0000022579,0.0000022621,0.0000022649,0.0000022674,0.0000022702, +0.0000022699,0.0000022676,0.0000022651,0.0000022600,0.0000022519, +0.0000022446,0.0000022406,0.0000022383,0.0000022347,0.0000022296, +0.0000022251,0.0000022225,0.0000022209,0.0000022183,0.0000022153, +0.0000022120,0.0000022075,0.0000022025,0.0000021978,0.0000021927, +0.0000021862,0.0000021793,0.0000021735,0.0000021688,0.0000021653, +0.0000021633,0.0000021627,0.0000021630,0.0000021638,0.0000021643, +0.0000021645,0.0000021647,0.0000021654,0.0000021661,0.0000021670, +0.0000021686,0.0000021709,0.0000021736,0.0000021760,0.0000021777, +0.0000021791,0.0000021801,0.0000021808,0.0000021823,0.0000021850, +0.0000021879,0.0000021899,0.0000021910,0.0000021916,0.0000021920, +0.0000021926,0.0000021936,0.0000021955,0.0000021977,0.0000022001, +0.0000022021,0.0000022042,0.0000022077,0.0000022129,0.0000022191, +0.0000022252,0.0000022287,0.0000022292,0.0000022285,0.0000022271, +0.0000022257,0.0000022249,0.0000022234,0.0000022171,0.0000022072, +0.0000021983,0.0000021902,0.0000021869,0.0000021941,0.0000022168, +0.0000022522,0.0000022889,0.0000023126,0.0000023187,0.0000023236, +0.0000023282,0.0000023267,0.0000023213,0.0000023154,0.0000023127, +0.0000023141,0.0000023197,0.0000023295,0.0000023437,0.0000023582, +0.0000023668,0.0000023678,0.0000023635,0.0000023546,0.0000023443, +0.0000023352,0.0000023290,0.0000023258,0.0000023253,0.0000023273, +0.0000023315,0.0000023365,0.0000023405,0.0000023424,0.0000023427, +0.0000023445,0.0000023516,0.0000023647,0.0000023803,0.0000023941, +0.0000024055,0.0000024168,0.0000024300,0.0000024436,0.0000024518, +0.0000024530,0.0000024482,0.0000024405,0.0000024356,0.0000024351, +0.0000024369,0.0000024373,0.0000024360,0.0000024338,0.0000024309, +0.0000024279,0.0000024253,0.0000024230,0.0000024202,0.0000024216, +0.0000024155,0.0000024090,0.0000024046,0.0000024022,0.0000023998, +0.0000023986,0.0000024026,0.0000024088,0.0000024110,0.0000024119, +0.0000024122,0.0000024068,0.0000023959,0.0000023888,0.0000023861, +0.0000023822,0.0000023730,0.0000023595,0.0000023483,0.0000023444, +0.0000023478,0.0000023572,0.0000023662,0.0000023707,0.0000023716, +0.0000023706,0.0000023664,0.0000023606,0.0000023568,0.0000023569, +0.0000023584,0.0000023561,0.0000023498,0.0000023468,0.0000023523, +0.0000023630,0.0000023704,0.0000023716,0.0000023687,0.0000023634, +0.0000023571,0.0000023512,0.0000023471,0.0000023452,0.0000023454, +0.0000023500,0.0000023570,0.0000023588,0.0000023533,0.0000023466, +0.0000023450,0.0000023459,0.0000023487,0.0000023490,0.0000023481, +0.0000023531,0.0000023638,0.0000023728,0.0000023781,0.0000023807, +0.0000023828,0.0000023861,0.0000023902,0.0000023923,0.0000023923, +0.0000023904,0.0000023877,0.0000023855,0.0000023846,0.0000023849, +0.0000023847,0.0000023831,0.0000023811,0.0000023819,0.0000023847, +0.0000023841,0.0000023779,0.0000023740,0.0000023738,0.0000023780, +0.0000023861,0.0000023907,0.0000023911,0.0000023863,0.0000023756, +0.0000023678,0.0000023637,0.0000023616,0.0000023636,0.0000023679, +0.0000023691,0.0000023670,0.0000023658,0.0000023670,0.0000023688, +0.0000023710,0.0000023768,0.0000023854,0.0000023938,0.0000024014, +0.0000024083,0.0000024156,0.0000024238,0.0000024328,0.0000024418, +0.0000024492,0.0000024544,0.0000024585,0.0000024629,0.0000024673, +0.0000024700,0.0000024705,0.0000024696,0.0000024664,0.0000024593, +0.0000024494,0.0000024392,0.0000024315,0.0000024289,0.0000024298, +0.0000024322,0.0000024346,0.0000024362,0.0000024374,0.0000024389, +0.0000024391,0.0000024385,0.0000024461,0.0000024691,0.0000024895, +0.0000024970,0.0000024960,0.0000024950,0.0000024992,0.0000025085, +0.0000025205,0.0000025337,0.0000025422,0.0000025420,0.0000025346, +0.0000025246,0.0000025121,0.0000024970,0.0000024863,0.0000024828, +0.0000024837,0.0000024896,0.0000024988,0.0000025038,0.0000025014, +0.0000024921,0.0000024857,0.0000024850,0.0000024832,0.0000024744, +0.0000024607,0.0000024478,0.0000024406,0.0000024390,0.0000024390, +0.0000024356,0.0000024259,0.0000024148,0.0000024079,0.0000024053, +0.0000024023,0.0000023968,0.0000023908,0.0000023859,0.0000023828, +0.0000023825,0.0000023849,0.0000023893,0.0000023940,0.0000023987, +0.0000024029,0.0000024058,0.0000024075,0.0000024103,0.0000024172, +0.0000024288,0.0000024422,0.0000024535,0.0000024606,0.0000024634, +0.0000024633,0.0000024618,0.0000024601,0.0000024610,0.0000024639, +0.0000024661,0.0000024668,0.0000024667,0.0000024661,0.0000024647, +0.0000024637,0.0000024637,0.0000024643,0.0000024647,0.0000024662, +0.0000024708,0.0000024789,0.0000024872,0.0000024935,0.0000024995, +0.0000025054,0.0000025091,0.0000025097,0.0000025086,0.0000025061, +0.0000025044,0.0000025045,0.0000025064,0.0000025105,0.0000025173, +0.0000025249,0.0000025294,0.0000025300,0.0000025287,0.0000025275, +0.0000025275,0.0000025281,0.0000025283,0.0000025276,0.0000025258, +0.0000025224,0.0000025167,0.0000025090,0.0000025012,0.0000024955, +0.0000024922,0.0000024902,0.0000024884,0.0000024858,0.0000024807, +0.0000024720,0.0000024616,0.0000024539,0.0000024501,0.0000024480, +0.0000024452,0.0000024419,0.0000024388,0.0000024363,0.0000024264, +0.0000024057,0.0000023880,0.0000023815,0.0000023775,0.0000023725, +0.0000023707,0.0000023705,0.0000023666,0.0000023592,0.0000023530, +0.0000023506,0.0000023510,0.0000023607,0.0000023826,0.0000024050, +0.0000024173,0.0000024218,0.0000024261,0.0000024326,0.0000024411, +0.0000024511,0.0000024612,0.0000024686,0.0000024722,0.0000024723, +0.0000024695,0.0000024650,0.0000024612,0.0000024601,0.0000024613, +0.0000024658,0.0000024729,0.0000024847,0.0000025026,0.0000025207, +0.0000025296,0.0000025287,0.0000025260,0.0000025280,0.0000025373, +0.0000025493,0.0000025553,0.0000025558,0.0000025574,0.0000025622, +0.0000025693,0.0000025780,0.0000025868,0.0000025948,0.0000026009, +0.0000026036,0.0000026027,0.0000025976,0.0000025909,0.0000025832, +0.0000025730,0.0000025594,0.0000025440,0.0000025299,0.0000025207, +0.0000025184,0.0000025212,0.0000025267,0.0000025289,0.0000025274, +0.0000025235,0.0000025209,0.0000025182,0.0000025105,0.0000024973, +0.0000024833,0.0000024738,0.0000024695,0.0000024684,0.0000024682, +0.0000024675,0.0000024652,0.0000024619,0.0000024574,0.0000024530, +0.0000024513,0.0000024526,0.0000024546,0.0000024556,0.0000024558, +0.0000024542,0.0000024457,0.0000024296,0.0000024084,0.0000023957, +0.0000023949,0.0000024076,0.0000024251,0.0000024537,0.0000024854, +0.0000024890,0.0000024739,0.0000024670,0.0000024721,0.0000024823, +0.0000024947,0.0000025067,0.0000025119,0.0000025117,0.0000025083, +0.0000025053,0.0000025032,0.0000025002,0.0000024959,0.0000024909, +0.0000024868,0.0000024838,0.0000024822,0.0000024823,0.0000024838, +0.0000024858,0.0000024897,0.0000024989,0.0000025134,0.0000025269, +0.0000025330,0.0000025324,0.0000025287,0.0000025253,0.0000025237, +0.0000025202,0.0000025128,0.0000025068,0.0000025044,0.0000025042, +0.0000025059,0.0000025096,0.0000025144,0.0000025209,0.0000025288, +0.0000025333,0.0000025329,0.0000025315,0.0000025308,0.0000025276, +0.0000025203,0.0000025140,0.0000025160,0.0000025213,0.0000025238, +0.0000025182,0.0000025031,0.0000024863,0.0000024742,0.0000024642, +0.0000024526,0.0000024411,0.0000024309,0.0000024218,0.0000024117, +0.0000024014,0.0000023927,0.0000023858,0.0000023792,0.0000023722, +0.0000023630,0.0000023531,0.0000023465,0.0000023453,0.0000023519, +0.0000023627,0.0000023729,0.0000023806,0.0000023866,0.0000023908, +0.0000023923,0.0000023914,0.0000023882,0.0000023835,0.0000023784, +0.0000023737,0.0000023684,0.0000023630,0.0000023588,0.0000023564, +0.0000023559,0.0000023559,0.0000023553,0.0000023528,0.0000023475, +0.0000023396,0.0000023299,0.0000023215,0.0000023160,0.0000023120, +0.0000023078,0.0000023021,0.0000022949,0.0000022870,0.0000022799, +0.0000022745,0.0000022708,0.0000022693,0.0000022698,0.0000022707, +0.0000022707,0.0000022700,0.0000022699,0.0000022711,0.0000022744, +0.0000022801,0.0000022857,0.0000022890,0.0000022892,0.0000022865, +0.0000022819,0.0000022772,0.0000022740,0.0000022730,0.0000022701, +0.0000022666,0.0000022700,0.0000022828,0.0000022945,0.0000022972, +0.0000022945,0.0000022903,0.0000022873,0.0000022866,0.0000022877, +0.0000022917,0.0000022965,0.0000022997,0.0000023009,0.0000023008, +0.0000023001,0.0000022988,0.0000022970,0.0000022947,0.0000022896, +0.0000022811,0.0000022727,0.0000022671,0.0000022650,0.0000022671, +0.0000022719,0.0000022785,0.0000022849,0.0000022882,0.0000022873, +0.0000022815,0.0000022751,0.0000022705,0.0000022629,0.0000022533, +0.0000022481,0.0000022500,0.0000022581,0.0000022700,0.0000022870, +0.0000023099,0.0000023327,0.0000023526,0.0000023712,0.0000023795, +0.0000023756,0.0000023653,0.0000023620,0.0000023738,0.0000023927, +0.0000024022,0.0000024074,0.0000024170,0.0000024303,0.0000024535, +0.0000024833,0.0000025121,0.0000025355,0.0000025457,0.0000025770, +0.0000026301,0.0000026592,0.0000026561,0.0000026422,0.0000026203, +0.0000025731,0.0000025277,0.0000025010,0.0000024811,0.0000024422, +0.0000024034,0.0000023884,0.0000023900,0.0000024033,0.0000024186, +0.0000024248,0.0000024276,0.0000024308,0.0000024289,0.0000024467, +0.0000024832,0.0000024824,0.0000024985,0.0000025650,0.0000025980, +0.0000026015,0.0000025550,0.0000024898,0.0000024755,0.0000024819, +0.0000024755,0.0000024324,0.0000024024,0.0000024003,0.0000024049, +0.0000024133,0.0000024204,0.0000024226,0.0000024278,0.0000024363, +0.0000024417,0.0000024441,0.0000024445,0.0000024459,0.0000024472, +0.0000024472,0.0000024477,0.0000024477,0.0000024452,0.0000024423, +0.0000024437,0.0000024495,0.0000024506,0.0000024463,0.0000024431, +0.0000024418,0.0000024405,0.0000024402,0.0000024403,0.0000024395, +0.0000024382,0.0000024371,0.0000024370,0.0000024360,0.0000024339, +0.0000024324,0.0000024328,0.0000024354,0.0000024396,0.0000024429, +0.0000024457,0.0000024466,0.0000024457,0.0000024439,0.0000024412, +0.0000024379,0.0000024350,0.0000024348,0.0000024373,0.0000024415, +0.0000024466,0.0000024513,0.0000024549,0.0000024575,0.0000024609, +0.0000024650,0.0000024661,0.0000024623,0.0000024540,0.0000024480, +0.0000024477,0.0000024528,0.0000024596,0.0000024628,0.0000024624, +0.0000024621,0.0000024646,0.0000024688,0.0000024708,0.0000024754, +0.0000024915,0.0000025131,0.0000025285,0.0000025338,0.0000025367, +0.0000025443,0.0000025547,0.0000025717,0.0000025903,0.0000025966, +0.0000025908,0.0000025834,0.0000025824,0.0000025858,0.0000025906, +0.0000025911,0.0000025865,0.0000025792,0.0000025699,0.0000025633, +0.0000025617,0.0000025635,0.0000025669,0.0000025682,0.0000025656, +0.0000025596,0.0000025532,0.0000025504,0.0000025552,0.0000025653, +0.0000025744,0.0000025796,0.0000025817,0.0000025813,0.0000025790, +0.0000025760,0.0000025737,0.0000025709,0.0000025644,0.0000025556, +0.0000025496,0.0000025480,0.0000025415,0.0000025235,0.0000025058, +0.0000024984,0.0000024946,0.0000024870,0.0000024777,0.0000024703, +0.0000024641,0.0000024559,0.0000024443,0.0000024316,0.0000024202, +0.0000024117,0.0000024074,0.0000024075,0.0000024114,0.0000024173, +0.0000024226,0.0000024256,0.0000024256,0.0000024239,0.0000024214, +0.0000024196,0.0000024198,0.0000024222,0.0000024256,0.0000024291, +0.0000024324,0.0000024349,0.0000024360,0.0000024358,0.0000024340, +0.0000024296,0.0000024213,0.0000024090,0.0000023957,0.0000023858, +0.0000023822,0.0000023826,0.0000023813,0.0000023687,0.0000023371, +0.0000022948,0.0000022641,0.0000022516,0.0000022436,0.0000022343, +0.0000022278,0.0000022252,0.0000022248,0.0000022232,0.0000022182, +0.0000022123,0.0000022081,0.0000022030,0.0000022006,0.0000022070, +0.0000022232,0.0000022379,0.0000022477,0.0000022561,0.0000022661, +0.0000022799,0.0000022943,0.0000023058,0.0000023168,0.0000023273, +0.0000023340,0.0000023429,0.0000023655,0.0000023973,0.0000024182, +0.0000024258,0.0000024377,0.0000024565,0.0000024678,0.0000024676, +0.0000024621,0.0000024553,0.0000024482,0.0000024410,0.0000024352, +0.0000024322,0.0000024330,0.0000024357,0.0000024358,0.0000024347, +0.0000024404,0.0000024569,0.0000024767,0.0000024881,0.0000024882, +0.0000024831,0.0000024817,0.0000024866,0.0000024898,0.0000024875, +0.0000024804,0.0000024778,0.0000024818,0.0000024909,0.0000024971, +0.0000024973,0.0000024936,0.0000024929,0.0000025020,0.0000025169, +0.0000025281,0.0000025331,0.0000025353,0.0000025369,0.0000025379, +0.0000025387,0.0000025397,0.0000025407,0.0000025409,0.0000025398, +0.0000025372,0.0000025338,0.0000025309,0.0000025300,0.0000025309, +0.0000025317,0.0000025310,0.0000025289,0.0000025240,0.0000025184, +0.0000025154,0.0000025154,0.0000025176,0.0000025213,0.0000025253, +0.0000025295,0.0000025342,0.0000025388,0.0000025427,0.0000025457, +0.0000025483,0.0000025507,0.0000025533,0.0000025551,0.0000025549, +0.0000025519,0.0000025492,0.0000025471,0.0000025438,0.0000025383, +0.0000025325,0.0000025271,0.0000025240,0.0000025262,0.0000025363, +0.0000025457,0.0000025489,0.0000025484,0.0000025497,0.0000025566, +0.0000025662,0.0000025723,0.0000025752,0.0000025789,0.0000025848, +0.0000025939,0.0000026085,0.0000026252,0.0000026352,0.0000026359, +0.0000026311,0.0000026219,0.0000026113,0.0000026022,0.0000025962, +0.0000025916,0.0000025851,0.0000025752,0.0000025630,0.0000025536, +0.0000025509,0.0000025515,0.0000025528,0.0000025528,0.0000025494, +0.0000025420,0.0000025355,0.0000025333,0.0000025351,0.0000025441, +0.0000025608,0.0000025787,0.0000025917,0.0000025987,0.0000026011, +0.0000026007,0.0000025997,0.0000025990,0.0000025970,0.0000025926, +0.0000025854,0.0000025758,0.0000025655,0.0000025563,0.0000025475, +0.0000025378,0.0000025281,0.0000025209,0.0000025179,0.0000025186, +0.0000025223,0.0000025273,0.0000025317,0.0000025346,0.0000025359, +0.0000025367,0.0000025383,0.0000025409,0.0000025436,0.0000025455, +0.0000025462,0.0000025459,0.0000025438,0.0000025390,0.0000025318, +0.0000025237,0.0000025154,0.0000025053,0.0000024949,0.0000024929, +0.0000025037,0.0000025261,0.0000025595,0.0000026029,0.0000026366, +0.0000026474,0.0000026486,0.0000026502,0.0000026543,0.0000026607, +0.0000026681,0.0000026758,0.0000026844,0.0000026917,0.0000026932, +0.0000026893,0.0000026802,0.0000026708,0.0000026643,0.0000026568, +0.0000026463,0.0000026358,0.0000026269,0.0000026173,0.0000026053, +0.0000025882,0.0000025664,0.0000025539,0.0000025537,0.0000025612, +0.0000025656,0.0000025672,0.0000025681,0.0000025632,0.0000025516, +0.0000025395,0.0000025228,0.0000024994,0.0000024808,0.0000024711, +0.0000024636,0.0000024511,0.0000024295,0.0000024036,0.0000023816, +0.0000023647,0.0000023492,0.0000023351,0.0000023240,0.0000023160, +0.0000023145,0.0000023214,0.0000023312,0.0000023380,0.0000023400, +0.0000023379,0.0000023351,0.0000023338,0.0000023333,0.0000023324, +0.0000023307,0.0000023276,0.0000023250,0.0000023246,0.0000023268, +0.0000023309,0.0000023347,0.0000023361,0.0000023344,0.0000023317, +0.0000023274,0.0000023211,0.0000023148,0.0000023104,0.0000023069, +0.0000023033,0.0000023003,0.0000023000,0.0000023042,0.0000023081, +0.0000023067,0.0000023045,0.0000023059,0.0000023145,0.0000023312, +0.0000023475,0.0000023549,0.0000023579,0.0000023628,0.0000023716, +0.0000023928,0.0000024153,0.0000024250,0.0000024242,0.0000024201, +0.0000024289,0.0000024703,0.0000025217,0.0000025563,0.0000025720, +0.0000025799,0.0000025866,0.0000025931,0.0000025989,0.0000026035, +0.0000026060,0.0000026061,0.0000026037,0.0000025995,0.0000025926, +0.0000025833,0.0000025723,0.0000025594,0.0000025419,0.0000025184, +0.0000024909,0.0000024613,0.0000024344,0.0000024136,0.0000024000, +0.0000023930,0.0000023913,0.0000023923,0.0000023934,0.0000023939, +0.0000023939,0.0000023941,0.0000023938,0.0000023915,0.0000023860, +0.0000023783,0.0000023693,0.0000023609,0.0000023540,0.0000023468, +0.0000023387,0.0000023277,0.0000023146,0.0000023007,0.0000022878, +0.0000022784,0.0000022714,0.0000022652,0.0000022620,0.0000022637, +0.0000022678,0.0000022683,0.0000022659,0.0000022638,0.0000022620, +0.0000022590,0.0000022549,0.0000022513,0.0000022495,0.0000022493, +0.0000022494,0.0000022494,0.0000022495,0.0000022507,0.0000022525, +0.0000022537,0.0000022554,0.0000022569,0.0000022583,0.0000022599, +0.0000022601,0.0000022591,0.0000022576,0.0000022553,0.0000022529, +0.0000022523,0.0000022544,0.0000022580,0.0000022605,0.0000022640, +0.0000022670,0.0000022666,0.0000022651,0.0000022626,0.0000022562, +0.0000022474,0.0000022404,0.0000022361,0.0000022320,0.0000022272, +0.0000022235,0.0000022212,0.0000022194,0.0000022171,0.0000022140, +0.0000022108,0.0000022078,0.0000022040,0.0000021999,0.0000021956, +0.0000021902,0.0000021835,0.0000021770,0.0000021717,0.0000021676, +0.0000021643,0.0000021616,0.0000021601,0.0000021598,0.0000021605, +0.0000021617,0.0000021624,0.0000021627,0.0000021636,0.0000021644, +0.0000021646,0.0000021648,0.0000021660,0.0000021684,0.0000021713, +0.0000021739,0.0000021764,0.0000021785,0.0000021798,0.0000021816, +0.0000021849,0.0000021887,0.0000021918,0.0000021936,0.0000021949, +0.0000021960,0.0000021967,0.0000021978,0.0000021999,0.0000022028, +0.0000022061,0.0000022090,0.0000022108,0.0000022129,0.0000022164, +0.0000022214,0.0000022262,0.0000022288,0.0000022290,0.0000022282, +0.0000022271,0.0000022266,0.0000022274,0.0000022281,0.0000022248, +0.0000022147,0.0000022033,0.0000021934,0.0000021871,0.0000021912, +0.0000022085,0.0000022413,0.0000022787,0.0000023066,0.0000023163, +0.0000023204,0.0000023266,0.0000023273,0.0000023229,0.0000023165, +0.0000023109,0.0000023095,0.0000023122,0.0000023205,0.0000023327, +0.0000023458,0.0000023557,0.0000023591,0.0000023559,0.0000023458, +0.0000023339,0.0000023248,0.0000023193,0.0000023164,0.0000023149, +0.0000023136,0.0000023134,0.0000023144,0.0000023178,0.0000023234, +0.0000023292,0.0000023326,0.0000023342,0.0000023374,0.0000023459, +0.0000023605,0.0000023776,0.0000023926,0.0000024037,0.0000024123, +0.0000024204,0.0000024279,0.0000024329,0.0000024345,0.0000024340, +0.0000024342,0.0000024363,0.0000024397,0.0000024418,0.0000024420, +0.0000024412,0.0000024381,0.0000024336,0.0000024294,0.0000024259, +0.0000024244,0.0000024186,0.0000024102,0.0000024034,0.0000024005, +0.0000023985,0.0000023961,0.0000023975,0.0000024030,0.0000024066, +0.0000024083,0.0000024086,0.0000024029,0.0000023927,0.0000023862, +0.0000023827,0.0000023764,0.0000023646,0.0000023515,0.0000023434, +0.0000023423,0.0000023478,0.0000023585,0.0000023663,0.0000023694, +0.0000023694,0.0000023676,0.0000023633,0.0000023588,0.0000023570, +0.0000023579,0.0000023580,0.0000023544,0.0000023500,0.0000023516, +0.0000023611,0.0000023709,0.0000023741,0.0000023713,0.0000023639, +0.0000023544,0.0000023460,0.0000023414,0.0000023407,0.0000023412, +0.0000023406,0.0000023428,0.0000023517,0.0000023591,0.0000023577, +0.0000023501,0.0000023460,0.0000023462,0.0000023488,0.0000023495, +0.0000023476,0.0000023502,0.0000023602,0.0000023703,0.0000023765, +0.0000023799,0.0000023825,0.0000023860,0.0000023899,0.0000023923, +0.0000023920,0.0000023893,0.0000023858,0.0000023828,0.0000023808, +0.0000023799,0.0000023792,0.0000023778,0.0000023773,0.0000023800, +0.0000023842,0.0000023853,0.0000023814,0.0000023776,0.0000023765, +0.0000023780,0.0000023840,0.0000023893,0.0000023904,0.0000023883, +0.0000023791,0.0000023684,0.0000023626,0.0000023593,0.0000023582, +0.0000023614,0.0000023663,0.0000023679,0.0000023671,0.0000023674, +0.0000023698,0.0000023718,0.0000023727,0.0000023761,0.0000023826, +0.0000023899,0.0000023955,0.0000024012,0.0000024089,0.0000024171, +0.0000024251,0.0000024337,0.0000024419,0.0000024480,0.0000024529, +0.0000024577,0.0000024624,0.0000024652,0.0000024654,0.0000024640, +0.0000024586,0.0000024491,0.0000024379,0.0000024274,0.0000024206, +0.0000024197,0.0000024216,0.0000024255,0.0000024294,0.0000024326, +0.0000024345,0.0000024356,0.0000024349,0.0000024341,0.0000024447, +0.0000024700,0.0000024891,0.0000024941,0.0000024930,0.0000024934, +0.0000024996,0.0000025100,0.0000025236,0.0000025359,0.0000025409, +0.0000025380,0.0000025308,0.0000025206,0.0000025062,0.0000024917, +0.0000024837,0.0000024826,0.0000024855,0.0000024931,0.0000025010, +0.0000025025,0.0000024962,0.0000024864,0.0000024829,0.0000024825, +0.0000024758,0.0000024619,0.0000024493,0.0000024431,0.0000024416, +0.0000024414,0.0000024383,0.0000024280,0.0000024140,0.0000024034, +0.0000023981,0.0000023947,0.0000023895,0.0000023822,0.0000023751, +0.0000023693,0.0000023654,0.0000023642,0.0000023661,0.0000023703, +0.0000023759,0.0000023832,0.0000023911,0.0000023970,0.0000023998, +0.0000024016,0.0000024057,0.0000024146,0.0000024276,0.0000024411, +0.0000024510,0.0000024562,0.0000024577,0.0000024579,0.0000024595, +0.0000024638,0.0000024686,0.0000024720,0.0000024737,0.0000024738, +0.0000024726,0.0000024704,0.0000024692,0.0000024694,0.0000024699, +0.0000024698,0.0000024704,0.0000024737,0.0000024801,0.0000024868, +0.0000024927,0.0000024985,0.0000025038,0.0000025073,0.0000025085, +0.0000025080,0.0000025064,0.0000025055,0.0000025060,0.0000025078, +0.0000025117,0.0000025182,0.0000025255,0.0000025304,0.0000025317, +0.0000025304,0.0000025278,0.0000025263,0.0000025269,0.0000025287, +0.0000025301,0.0000025301,0.0000025288,0.0000025256,0.0000025190, +0.0000025098,0.0000025010,0.0000024941,0.0000024890,0.0000024852, +0.0000024826,0.0000024787,0.0000024709,0.0000024602,0.0000024522, +0.0000024491,0.0000024479,0.0000024466,0.0000024440,0.0000024419, +0.0000024411,0.0000024344,0.0000024154,0.0000023951,0.0000023864, +0.0000023830,0.0000023778,0.0000023743,0.0000023724,0.0000023675, +0.0000023599,0.0000023537,0.0000023507,0.0000023503,0.0000023549, +0.0000023725,0.0000023968,0.0000024139,0.0000024202,0.0000024224, +0.0000024260,0.0000024319,0.0000024401,0.0000024494,0.0000024572, +0.0000024615,0.0000024620,0.0000024592,0.0000024536,0.0000024478, +0.0000024441,0.0000024434,0.0000024464,0.0000024528,0.0000024619, +0.0000024762,0.0000024966,0.0000025157,0.0000025249,0.0000025251, +0.0000025242,0.0000025267,0.0000025358,0.0000025470,0.0000025535, +0.0000025563,0.0000025600,0.0000025659,0.0000025733,0.0000025818, +0.0000025900,0.0000025966,0.0000026009,0.0000026012,0.0000025964, +0.0000025879,0.0000025775,0.0000025648,0.0000025507,0.0000025375, +0.0000025265,0.0000025195,0.0000025189,0.0000025243,0.0000025298, +0.0000025303,0.0000025271,0.0000025230,0.0000025180,0.0000025099, +0.0000024978,0.0000024857,0.0000024785,0.0000024749,0.0000024720, +0.0000024692,0.0000024667,0.0000024640,0.0000024600,0.0000024546, +0.0000024487,0.0000024430,0.0000024398,0.0000024399,0.0000024427, +0.0000024471,0.0000024524,0.0000024558,0.0000024559,0.0000024493, +0.0000024300,0.0000024021,0.0000023812,0.0000023812,0.0000024048, +0.0000024286,0.0000024578,0.0000024859,0.0000024884,0.0000024741, +0.0000024668,0.0000024719,0.0000024817,0.0000024940,0.0000025049, +0.0000025088,0.0000025073,0.0000025037,0.0000025007,0.0000024978, +0.0000024944,0.0000024904,0.0000024871,0.0000024850,0.0000024838, +0.0000024825,0.0000024835,0.0000024867,0.0000024894,0.0000024936, +0.0000025028,0.0000025157,0.0000025255,0.0000025280,0.0000025262, +0.0000025222,0.0000025198,0.0000025191,0.0000025150,0.0000025086, +0.0000025051,0.0000025044,0.0000025044,0.0000025062,0.0000025100, +0.0000025140,0.0000025184,0.0000025250,0.0000025307,0.0000025317, +0.0000025305,0.0000025277,0.0000025221,0.0000025151,0.0000025139, +0.0000025186,0.0000025214,0.0000025167,0.0000025019,0.0000024839, +0.0000024701,0.0000024600,0.0000024477,0.0000024340,0.0000024239, +0.0000024173,0.0000024105,0.0000024029,0.0000023961,0.0000023899, +0.0000023845,0.0000023795,0.0000023726,0.0000023635,0.0000023530, +0.0000023445,0.0000023409,0.0000023445,0.0000023522,0.0000023605, +0.0000023673,0.0000023726,0.0000023761,0.0000023764,0.0000023742, +0.0000023703,0.0000023654,0.0000023612,0.0000023572,0.0000023543, +0.0000023533,0.0000023540,0.0000023563,0.0000023578,0.0000023576, +0.0000023545,0.0000023480,0.0000023385,0.0000023291,0.0000023214, +0.0000023156,0.0000023089,0.0000022999,0.0000022904,0.0000022824, +0.0000022759,0.0000022709,0.0000022674,0.0000022654,0.0000022648, +0.0000022655,0.0000022672,0.0000022691,0.0000022702,0.0000022705, +0.0000022711,0.0000022735,0.0000022783,0.0000022847,0.0000022913, +0.0000022952,0.0000022952,0.0000022910,0.0000022835,0.0000022759, +0.0000022717,0.0000022709,0.0000022682,0.0000022640,0.0000022671, +0.0000022816,0.0000022955,0.0000022989,0.0000022964,0.0000022926, +0.0000022903,0.0000022900,0.0000022909,0.0000022936,0.0000022978, +0.0000023016,0.0000023039,0.0000023043,0.0000023033,0.0000023008, +0.0000022976,0.0000022945,0.0000022900,0.0000022824,0.0000022739, +0.0000022675,0.0000022648,0.0000022650,0.0000022677,0.0000022729, +0.0000022788,0.0000022831,0.0000022838,0.0000022795,0.0000022739, +0.0000022695,0.0000022630,0.0000022542,0.0000022492,0.0000022510, +0.0000022576,0.0000022680,0.0000022832,0.0000023051,0.0000023281, +0.0000023481,0.0000023672,0.0000023791,0.0000023772,0.0000023661, +0.0000023597,0.0000023666,0.0000023858,0.0000023984,0.0000024030, +0.0000024108,0.0000024239,0.0000024450,0.0000024733,0.0000025002, +0.0000025256,0.0000025408,0.0000025582,0.0000026058,0.0000026494, +0.0000026582,0.0000026501,0.0000026292,0.0000025836,0.0000025364, +0.0000025070,0.0000024864,0.0000024464,0.0000024085,0.0000023957, +0.0000023956,0.0000024028,0.0000024151,0.0000024224,0.0000024245, +0.0000024310,0.0000024296,0.0000024366,0.0000024726,0.0000024859, +0.0000024823,0.0000025436,0.0000025935,0.0000026027,0.0000025760, +0.0000025044,0.0000024769,0.0000024822,0.0000024811,0.0000024416, +0.0000024056,0.0000024011,0.0000024049,0.0000024143,0.0000024239, +0.0000024284,0.0000024376,0.0000024467,0.0000024489,0.0000024480, +0.0000024473,0.0000024475,0.0000024468,0.0000024454,0.0000024441, +0.0000024417,0.0000024377,0.0000024364,0.0000024405,0.0000024475, +0.0000024482,0.0000024445,0.0000024423,0.0000024414,0.0000024398, +0.0000024384,0.0000024378,0.0000024363,0.0000024343,0.0000024325, +0.0000024320,0.0000024312,0.0000024291,0.0000024273,0.0000024275, +0.0000024293,0.0000024327,0.0000024354,0.0000024373,0.0000024374, +0.0000024361,0.0000024345,0.0000024326,0.0000024308,0.0000024297, +0.0000024301,0.0000024324,0.0000024361,0.0000024410,0.0000024459, +0.0000024499,0.0000024521,0.0000024544,0.0000024586,0.0000024612, +0.0000024581,0.0000024482,0.0000024399,0.0000024383,0.0000024423, +0.0000024511,0.0000024580,0.0000024592,0.0000024573,0.0000024581, +0.0000024643,0.0000024701,0.0000024741,0.0000024851,0.0000025049, +0.0000025233,0.0000025322,0.0000025344,0.0000025396,0.0000025487, +0.0000025595,0.0000025764,0.0000025933,0.0000025986,0.0000025994, +0.0000025991,0.0000025999,0.0000025992,0.0000025940,0.0000025854, +0.0000025743,0.0000025634,0.0000025564,0.0000025546,0.0000025564, +0.0000025604,0.0000025639,0.0000025649,0.0000025616,0.0000025553, +0.0000025500,0.0000025499,0.0000025557,0.0000025655,0.0000025737, +0.0000025776,0.0000025779,0.0000025765,0.0000025742,0.0000025717, +0.0000025668,0.0000025589,0.0000025518,0.0000025496,0.0000025464, +0.0000025320,0.0000025120,0.0000025001,0.0000024950,0.0000024885, +0.0000024803,0.0000024737,0.0000024670,0.0000024559,0.0000024399, +0.0000024224,0.0000024078,0.0000023971,0.0000023898,0.0000023852, +0.0000023834,0.0000023842,0.0000023877,0.0000023937,0.0000024012, +0.0000024078,0.0000024120,0.0000024130,0.0000024123,0.0000024116, +0.0000024125,0.0000024158,0.0000024198,0.0000024228,0.0000024243, +0.0000024242,0.0000024224,0.0000024187,0.0000024126,0.0000024041, +0.0000023949,0.0000023877,0.0000023845,0.0000023843,0.0000023838, +0.0000023769,0.0000023566,0.0000023205,0.0000022808,0.0000022567, +0.0000022473,0.0000022394,0.0000022312,0.0000022260,0.0000022244, +0.0000022255,0.0000022265,0.0000022237,0.0000022169,0.0000022108, +0.0000022052,0.0000022016,0.0000022061,0.0000022207,0.0000022349, +0.0000022452,0.0000022537,0.0000022625,0.0000022738,0.0000022874, +0.0000022991,0.0000023086,0.0000023193,0.0000023290,0.0000023351, +0.0000023460,0.0000023707,0.0000024001,0.0000024168,0.0000024232, +0.0000024359,0.0000024539,0.0000024630,0.0000024624,0.0000024581, +0.0000024510,0.0000024424,0.0000024354,0.0000024315,0.0000024317, +0.0000024361,0.0000024398,0.0000024392,0.0000024399,0.0000024491, +0.0000024665,0.0000024824,0.0000024873,0.0000024852,0.0000024812, +0.0000024835,0.0000024901,0.0000024926,0.0000024875,0.0000024794, +0.0000024768,0.0000024809,0.0000024881,0.0000024924,0.0000024924, +0.0000024892,0.0000024891,0.0000024983,0.0000025127,0.0000025241, +0.0000025300,0.0000025333,0.0000025358,0.0000025378,0.0000025390, +0.0000025398,0.0000025402,0.0000025401,0.0000025390,0.0000025362, +0.0000025332,0.0000025312,0.0000025310,0.0000025316,0.0000025309, +0.0000025285,0.0000025244,0.0000025195,0.0000025160,0.0000025152, +0.0000025176,0.0000025221,0.0000025269,0.0000025314,0.0000025362, +0.0000025411,0.0000025452,0.0000025480,0.0000025491,0.0000025495, +0.0000025502,0.0000025522,0.0000025546,0.0000025548,0.0000025523, +0.0000025485,0.0000025454,0.0000025422,0.0000025367,0.0000025292, +0.0000025222,0.0000025193,0.0000025235,0.0000025340,0.0000025433, +0.0000025468,0.0000025461,0.0000025458,0.0000025502,0.0000025584, +0.0000025656,0.0000025696,0.0000025730,0.0000025782,0.0000025856, +0.0000025973,0.0000026134,0.0000026283,0.0000026361,0.0000026368, +0.0000026329,0.0000026245,0.0000026141,0.0000026035,0.0000025938, +0.0000025850,0.0000025752,0.0000025645,0.0000025564,0.0000025533, +0.0000025526,0.0000025529,0.0000025528,0.0000025490,0.0000025419, +0.0000025361,0.0000025352,0.0000025399,0.0000025520,0.0000025691, +0.0000025850,0.0000025953,0.0000025992,0.0000025988,0.0000025956, +0.0000025930,0.0000025923,0.0000025914,0.0000025890,0.0000025837, +0.0000025742,0.0000025620,0.0000025510,0.0000025420,0.0000025329, +0.0000025241,0.0000025181,0.0000025157,0.0000025157,0.0000025176, +0.0000025219,0.0000025271,0.0000025315,0.0000025338,0.0000025342, +0.0000025338,0.0000025338,0.0000025350,0.0000025376,0.0000025393, +0.0000025396,0.0000025370,0.0000025315,0.0000025249,0.0000025183, +0.0000025096,0.0000024972,0.0000024886,0.0000024924,0.0000025107, +0.0000025419,0.0000025858,0.0000026260,0.0000026442,0.0000026478, +0.0000026500,0.0000026538,0.0000026592,0.0000026653,0.0000026724, +0.0000026810,0.0000026891,0.0000026930,0.0000026918,0.0000026835, +0.0000026728,0.0000026647,0.0000026580,0.0000026497,0.0000026406, +0.0000026330,0.0000026250,0.0000026136,0.0000025991,0.0000025791, +0.0000025600,0.0000025553,0.0000025624,0.0000025721,0.0000025775, +0.0000025789,0.0000025774,0.0000025679,0.0000025553,0.0000025439, +0.0000025255,0.0000025026,0.0000024870,0.0000024779,0.0000024673, +0.0000024479,0.0000024203,0.0000023955,0.0000023788,0.0000023653, +0.0000023499,0.0000023350,0.0000023242,0.0000023170,0.0000023134, +0.0000023137,0.0000023171,0.0000023226,0.0000023273,0.0000023292, +0.0000023289,0.0000023289,0.0000023302,0.0000023316,0.0000023315, +0.0000023296,0.0000023256,0.0000023199,0.0000023161,0.0000023163, +0.0000023184,0.0000023206,0.0000023217,0.0000023224,0.0000023217, +0.0000023192,0.0000023151,0.0000023113,0.0000023072,0.0000023024, +0.0000022974,0.0000022950,0.0000022972,0.0000023008,0.0000022988, +0.0000022948,0.0000022949,0.0000022995,0.0000023135,0.0000023338, +0.0000023482,0.0000023528,0.0000023566,0.0000023615,0.0000023733, +0.0000023957,0.0000024114,0.0000024155,0.0000024137,0.0000024104, +0.0000024191,0.0000024585,0.0000025104,0.0000025483,0.0000025680, +0.0000025768,0.0000025808,0.0000025833,0.0000025860,0.0000025881, +0.0000025882,0.0000025854,0.0000025798,0.0000025711,0.0000025578, +0.0000025402,0.0000025191,0.0000024944,0.0000024670,0.0000024406, +0.0000024181,0.0000024027,0.0000023943,0.0000023901,0.0000023879, +0.0000023866,0.0000023855,0.0000023847,0.0000023851,0.0000023860, +0.0000023868,0.0000023866,0.0000023849,0.0000023812,0.0000023761, +0.0000023693,0.0000023616,0.0000023539,0.0000023461,0.0000023378, +0.0000023269,0.0000023143,0.0000023009,0.0000022877,0.0000022783, +0.0000022722,0.0000022670,0.0000022634,0.0000022631,0.0000022665, +0.0000022685,0.0000022666,0.0000022638,0.0000022618,0.0000022590, +0.0000022551,0.0000022514,0.0000022492,0.0000022484,0.0000022482, +0.0000022477,0.0000022474,0.0000022479,0.0000022495,0.0000022505, +0.0000022516,0.0000022533,0.0000022550,0.0000022572,0.0000022579, +0.0000022574,0.0000022567,0.0000022549,0.0000022522,0.0000022495, +0.0000022487,0.0000022505,0.0000022534,0.0000022571,0.0000022619, +0.0000022642,0.0000022638,0.0000022627,0.0000022588,0.0000022509, +0.0000022421,0.0000022355,0.0000022300,0.0000022252,0.0000022219, +0.0000022195,0.0000022173,0.0000022152,0.0000022127,0.0000022094, +0.0000022061,0.0000022032,0.0000022003,0.0000021971,0.0000021930, +0.0000021875,0.0000021813,0.0000021755,0.0000021712,0.0000021676, +0.0000021636,0.0000021598,0.0000021568,0.0000021555,0.0000021555, +0.0000021565,0.0000021575,0.0000021580,0.0000021587,0.0000021596, +0.0000021598,0.0000021592,0.0000021589,0.0000021603,0.0000021638, +0.0000021685,0.0000021737,0.0000021780,0.0000021811,0.0000021843, +0.0000021888,0.0000021934,0.0000021969,0.0000021993,0.0000022013, +0.0000022030,0.0000022042,0.0000022053,0.0000022069,0.0000022094, +0.0000022121,0.0000022132,0.0000022130,0.0000022135,0.0000022161, +0.0000022207,0.0000022256,0.0000022280,0.0000022280,0.0000022270, +0.0000022261,0.0000022262,0.0000022283,0.0000022312,0.0000022308, +0.0000022231,0.0000022108,0.0000021988,0.0000021892,0.0000021886, +0.0000022005,0.0000022290,0.0000022659,0.0000022984,0.0000023139, +0.0000023175,0.0000023240,0.0000023277,0.0000023258,0.0000023203, +0.0000023130,0.0000023073,0.0000023067,0.0000023116,0.0000023226, +0.0000023350,0.0000023451,0.0000023500,0.0000023482,0.0000023381, +0.0000023255,0.0000023172,0.0000023139,0.0000023130,0.0000023122, +0.0000023111,0.0000023091,0.0000023060,0.0000023033,0.0000023033, +0.0000023072,0.0000023142,0.0000023214,0.0000023265,0.0000023300, +0.0000023352,0.0000023452,0.0000023597,0.0000023758,0.0000023900, +0.0000024007,0.0000024085,0.0000024148,0.0000024202,0.0000024243, +0.0000024272,0.0000024300,0.0000024331,0.0000024363,0.0000024386, +0.0000024396,0.0000024390,0.0000024363,0.0000024324,0.0000024287, +0.0000024228,0.0000024188,0.0000024108,0.0000024021,0.0000023971, +0.0000023953,0.0000023924,0.0000023912,0.0000023949,0.0000023995, +0.0000024023,0.0000024030,0.0000023983,0.0000023892,0.0000023831, +0.0000023790,0.0000023705,0.0000023572,0.0000023456,0.0000023404, +0.0000023412,0.0000023485,0.0000023591,0.0000023657,0.0000023671, +0.0000023668,0.0000023649,0.0000023615,0.0000023588,0.0000023580, +0.0000023581,0.0000023565,0.0000023529,0.0000023527,0.0000023599, +0.0000023706,0.0000023762,0.0000023744,0.0000023652,0.0000023528, +0.0000023407,0.0000023326,0.0000023308,0.0000023353,0.0000023403, +0.0000023409,0.0000023414,0.0000023481,0.0000023584,0.0000023601, +0.0000023533,0.0000023472,0.0000023468,0.0000023489,0.0000023495, +0.0000023470,0.0000023478,0.0000023566,0.0000023674,0.0000023743, +0.0000023782,0.0000023817,0.0000023851,0.0000023883,0.0000023903, +0.0000023900,0.0000023871,0.0000023830,0.0000023799,0.0000023770, +0.0000023749,0.0000023738,0.0000023732,0.0000023743,0.0000023787, +0.0000023843,0.0000023870,0.0000023845,0.0000023810,0.0000023800, +0.0000023799,0.0000023826,0.0000023875,0.0000023894,0.0000023885, +0.0000023821,0.0000023705,0.0000023617,0.0000023577,0.0000023554, +0.0000023554,0.0000023596,0.0000023649,0.0000023674,0.0000023681, +0.0000023699,0.0000023730,0.0000023750,0.0000023753,0.0000023762, +0.0000023800,0.0000023856,0.0000023896,0.0000023937,0.0000024013, +0.0000024102,0.0000024184,0.0000024269,0.0000024349,0.0000024416, +0.0000024470,0.0000024522,0.0000024566,0.0000024583,0.0000024578, +0.0000024546,0.0000024470,0.0000024361,0.0000024249,0.0000024153, +0.0000024105,0.0000024108,0.0000024143,0.0000024195,0.0000024252, +0.0000024295,0.0000024319,0.0000024324,0.0000024309,0.0000024304, +0.0000024454,0.0000024721,0.0000024885,0.0000024912,0.0000024908, +0.0000024932,0.0000025010,0.0000025125,0.0000025267,0.0000025373, +0.0000025387,0.0000025351,0.0000025281,0.0000025161,0.0000025004, +0.0000024881,0.0000024829,0.0000024835,0.0000024882,0.0000024954, +0.0000024998,0.0000024980,0.0000024884,0.0000024802,0.0000024785, +0.0000024748,0.0000024634,0.0000024512,0.0000024455,0.0000024452, +0.0000024453,0.0000024422,0.0000024323,0.0000024163,0.0000024018, +0.0000023925,0.0000023859,0.0000023801,0.0000023740,0.0000023676, +0.0000023615,0.0000023562,0.0000023521,0.0000023503,0.0000023511, +0.0000023536,0.0000023579,0.0000023658,0.0000023760,0.0000023851, +0.0000023911,0.0000023951,0.0000023995,0.0000024062,0.0000024156, +0.0000024261,0.0000024360,0.0000024439,0.0000024492,0.0000024535, +0.0000024585,0.0000024643,0.0000024694,0.0000024734,0.0000024757, +0.0000024759,0.0000024753,0.0000024735,0.0000024731,0.0000024735, +0.0000024734,0.0000024725,0.0000024723,0.0000024743,0.0000024787, +0.0000024844,0.0000024899,0.0000024951,0.0000025000,0.0000025039, +0.0000025063,0.0000025068,0.0000025063,0.0000025060,0.0000025069, +0.0000025095,0.0000025136,0.0000025193,0.0000025252,0.0000025296, +0.0000025318,0.0000025316,0.0000025295,0.0000025272,0.0000025269, +0.0000025284,0.0000025309,0.0000025314,0.0000025309,0.0000025292, +0.0000025244,0.0000025157,0.0000025049,0.0000024949,0.0000024869, +0.0000024814,0.0000024784,0.0000024757,0.0000024698,0.0000024604, +0.0000024523,0.0000024492,0.0000024487,0.0000024490,0.0000024483, +0.0000024472,0.0000024467,0.0000024419,0.0000024246,0.0000024028, +0.0000023923,0.0000023895,0.0000023844,0.0000023785,0.0000023739, +0.0000023682,0.0000023612,0.0000023550,0.0000023508,0.0000023488, +0.0000023500,0.0000023615,0.0000023833,0.0000024043,0.0000024156, +0.0000024191,0.0000024206,0.0000024236,0.0000024288,0.0000024359, +0.0000024434,0.0000024488,0.0000024503,0.0000024489,0.0000024444, +0.0000024384,0.0000024327,0.0000024293,0.0000024293,0.0000024334, +0.0000024418,0.0000024533,0.0000024700,0.0000024927,0.0000025135, +0.0000025229,0.0000025228,0.0000025213,0.0000025233,0.0000025325, +0.0000025451,0.0000025539,0.0000025581,0.0000025625,0.0000025689, +0.0000025765,0.0000025844,0.0000025915,0.0000025969,0.0000025988, +0.0000025952,0.0000025855,0.0000025723,0.0000025583,0.0000025462, +0.0000025365,0.0000025272,0.0000025219,0.0000025223,0.0000025273, +0.0000025304,0.0000025295,0.0000025255,0.0000025194,0.0000025095, +0.0000024964,0.0000024856,0.0000024807,0.0000024793,0.0000024766, +0.0000024707,0.0000024633,0.0000024565,0.0000024510,0.0000024460, +0.0000024406,0.0000024350,0.0000024297,0.0000024257,0.0000024235, +0.0000024236,0.0000024273,0.0000024339,0.0000024420,0.0000024482, +0.0000024494,0.0000024436,0.0000024283,0.0000023970,0.0000023728, +0.0000023764,0.0000024063,0.0000024334,0.0000024606,0.0000024856, +0.0000024875,0.0000024755,0.0000024683,0.0000024719,0.0000024806, +0.0000024908,0.0000024993,0.0000025022,0.0000025010,0.0000024982, +0.0000024952,0.0000024907,0.0000024858,0.0000024822,0.0000024806, +0.0000024811,0.0000024817,0.0000024824,0.0000024852,0.0000024895, +0.0000024927,0.0000024976,0.0000025060,0.0000025158,0.0000025221, +0.0000025218,0.0000025184,0.0000025150,0.0000025136,0.0000025123, +0.0000025082,0.0000025040,0.0000025032,0.0000025034,0.0000025046, +0.0000025070,0.0000025098,0.0000025122,0.0000025155,0.0000025216, +0.0000025272,0.0000025294,0.0000025283,0.0000025235,0.0000025157, +0.0000025122,0.0000025162,0.0000025191,0.0000025173,0.0000025048, +0.0000024873,0.0000024729,0.0000024611,0.0000024473,0.0000024313, +0.0000024182,0.0000024104,0.0000024057,0.0000024014,0.0000023971, +0.0000023928,0.0000023883,0.0000023828,0.0000023760,0.0000023678, +0.0000023581,0.0000023475,0.0000023372,0.0000023289,0.0000023271, +0.0000023312,0.0000023373,0.0000023429,0.0000023490,0.0000023537, +0.0000023556,0.0000023557,0.0000023550,0.0000023549,0.0000023549, +0.0000023555,0.0000023571,0.0000023591,0.0000023607,0.0000023606, +0.0000023579,0.0000023523,0.0000023434,0.0000023335,0.0000023255, +0.0000023186,0.0000023105,0.0000022999,0.0000022881,0.0000022784, +0.0000022723,0.0000022697,0.0000022682,0.0000022662,0.0000022643, +0.0000022632,0.0000022633,0.0000022646,0.0000022676,0.0000022712, +0.0000022731,0.0000022742,0.0000022758,0.0000022786,0.0000022826, +0.0000022877,0.0000022929,0.0000022967,0.0000022970,0.0000022930, +0.0000022843,0.0000022748,0.0000022705,0.0000022701,0.0000022676, +0.0000022627,0.0000022655,0.0000022820,0.0000022973,0.0000023009, +0.0000022988,0.0000022957,0.0000022937,0.0000022932,0.0000022936, +0.0000022956,0.0000022994,0.0000023033,0.0000023062,0.0000023070, +0.0000023061,0.0000023031,0.0000022989,0.0000022948,0.0000022901, +0.0000022838,0.0000022766,0.0000022705,0.0000022665,0.0000022650, +0.0000022658,0.0000022689,0.0000022740,0.0000022788,0.0000022802, +0.0000022776,0.0000022725,0.0000022676,0.0000022611,0.0000022541, +0.0000022508,0.0000022523,0.0000022584,0.0000022681,0.0000022820, +0.0000023023,0.0000023249,0.0000023449,0.0000023639,0.0000023776, +0.0000023777,0.0000023671,0.0000023583,0.0000023615,0.0000023796, +0.0000023946,0.0000023993,0.0000024052,0.0000024177,0.0000024372, +0.0000024647,0.0000024896,0.0000025137,0.0000025349,0.0000025465, +0.0000025805,0.0000026306,0.0000026561,0.0000026537,0.0000026361, +0.0000025916,0.0000025437,0.0000025123,0.0000024909,0.0000024491, +0.0000024122,0.0000024027,0.0000024023,0.0000024044,0.0000024120, +0.0000024187,0.0000024203,0.0000024278,0.0000024305,0.0000024311, +0.0000024601,0.0000024872,0.0000024779,0.0000025206,0.0000025845, +0.0000026027,0.0000025933,0.0000025233,0.0000024815,0.0000024825, +0.0000024853,0.0000024525,0.0000024102,0.0000024015,0.0000024044, +0.0000024140,0.0000024267,0.0000024343,0.0000024455,0.0000024512, +0.0000024499,0.0000024478,0.0000024471,0.0000024468,0.0000024444, +0.0000024413,0.0000024384,0.0000024347,0.0000024310,0.0000024314, +0.0000024375,0.0000024442,0.0000024450,0.0000024432,0.0000024423, +0.0000024417,0.0000024397,0.0000024373,0.0000024357,0.0000024332, +0.0000024302,0.0000024272,0.0000024253,0.0000024240,0.0000024219, +0.0000024201,0.0000024203,0.0000024217,0.0000024243,0.0000024261, +0.0000024274,0.0000024277,0.0000024271,0.0000024267,0.0000024261, +0.0000024257,0.0000024254,0.0000024259,0.0000024274,0.0000024302, +0.0000024344,0.0000024390,0.0000024432,0.0000024454,0.0000024472, +0.0000024514,0.0000024548,0.0000024512,0.0000024397,0.0000024308, +0.0000024291,0.0000024330,0.0000024422,0.0000024517,0.0000024558, +0.0000024550,0.0000024542,0.0000024594,0.0000024685,0.0000024746, +0.0000024822,0.0000024976,0.0000025160,0.0000025283,0.0000025327, +0.0000025352,0.0000025428,0.0000025523,0.0000025621,0.0000025764, +0.0000025907,0.0000025988,0.0000026010,0.0000026002,0.0000025962, +0.0000025879,0.0000025764,0.0000025649,0.0000025558,0.0000025508, +0.0000025494,0.0000025505,0.0000025535,0.0000025567,0.0000025595, +0.0000025602,0.0000025573,0.0000025524,0.0000025495,0.0000025499, +0.0000025551,0.0000025626,0.0000025684,0.0000025704,0.0000025697, +0.0000025676,0.0000025641,0.0000025586,0.0000025528,0.0000025503, +0.0000025494,0.0000025399,0.0000025205,0.0000025038,0.0000024954, +0.0000024887,0.0000024815,0.0000024757,0.0000024688,0.0000024558, +0.0000024367,0.0000024170,0.0000024021,0.0000023931,0.0000023876, +0.0000023832,0.0000023798,0.0000023774,0.0000023763,0.0000023763, +0.0000023773,0.0000023800,0.0000023845,0.0000023903,0.0000023959, +0.0000023999,0.0000024016,0.0000024021,0.0000024033,0.0000024061, +0.0000024088,0.0000024098,0.0000024083,0.0000024052,0.0000024015, +0.0000023979,0.0000023943,0.0000023909,0.0000023886,0.0000023877, +0.0000023874,0.0000023824,0.0000023691,0.0000023435,0.0000023055, +0.0000022697,0.0000022510,0.0000022431,0.0000022355,0.0000022285, +0.0000022242,0.0000022234,0.0000022262,0.0000022297,0.0000022290, +0.0000022225,0.0000022145,0.0000022080,0.0000022039,0.0000022072, +0.0000022195,0.0000022331,0.0000022433,0.0000022519,0.0000022604, +0.0000022698,0.0000022813,0.0000022932,0.0000023028,0.0000023120, +0.0000023228,0.0000023315,0.0000023377,0.0000023509,0.0000023764, +0.0000024020,0.0000024144,0.0000024206,0.0000024347,0.0000024514, +0.0000024576,0.0000024571,0.0000024528,0.0000024448,0.0000024363, +0.0000024308,0.0000024292,0.0000024333,0.0000024409,0.0000024441, +0.0000024439,0.0000024460,0.0000024568,0.0000024725,0.0000024836, +0.0000024855,0.0000024819,0.0000024810,0.0000024869,0.0000024932, +0.0000024937,0.0000024875,0.0000024787,0.0000024762,0.0000024794, +0.0000024851,0.0000024885,0.0000024883,0.0000024857,0.0000024858, +0.0000024936,0.0000025063,0.0000025176,0.0000025253,0.0000025303, +0.0000025340,0.0000025367,0.0000025381,0.0000025385,0.0000025381, +0.0000025370,0.0000025351,0.0000025324,0.0000025299,0.0000025283, +0.0000025279,0.0000025275,0.0000025261,0.0000025235,0.0000025205, +0.0000025178,0.0000025166,0.0000025176,0.0000025212,0.0000025260, +0.0000025312,0.0000025364,0.0000025417,0.0000025467,0.0000025504, +0.0000025518,0.0000025510,0.0000025492,0.0000025487,0.0000025505, +0.0000025532,0.0000025541,0.0000025519,0.0000025474,0.0000025430, +0.0000025392,0.0000025337,0.0000025257,0.0000025180,0.0000025152, +0.0000025196,0.0000025301,0.0000025404,0.0000025452,0.0000025446, +0.0000025434,0.0000025449,0.0000025499,0.0000025564,0.0000025621, +0.0000025674,0.0000025735,0.0000025805,0.0000025895,0.0000026024, +0.0000026177,0.0000026310,0.0000026382,0.0000026394,0.0000026360, +0.0000026276,0.0000026161,0.0000026036,0.0000025916,0.0000025798, +0.0000025688,0.0000025608,0.0000025569,0.0000025554,0.0000025548, +0.0000025544,0.0000025515,0.0000025460,0.0000025416,0.0000025419, +0.0000025478,0.0000025600,0.0000025758,0.0000025901,0.0000025985, +0.0000025999,0.0000025969,0.0000025917,0.0000025883,0.0000025875, +0.0000025871,0.0000025858,0.0000025817,0.0000025728,0.0000025608, +0.0000025495,0.0000025400,0.0000025303,0.0000025213,0.0000025155, +0.0000025127,0.0000025122,0.0000025129,0.0000025160,0.0000025205, +0.0000025250,0.0000025284,0.0000025297,0.0000025291,0.0000025279, +0.0000025286,0.0000025312,0.0000025332,0.0000025327,0.0000025280, +0.0000025216,0.0000025167,0.0000025113,0.0000025007,0.0000024883, +0.0000024858,0.0000024975,0.0000025256,0.0000025684,0.0000026129, +0.0000026379,0.0000026449,0.0000026485,0.0000026532,0.0000026588, +0.0000026644,0.0000026697,0.0000026765,0.0000026846,0.0000026903, +0.0000026915,0.0000026862,0.0000026757,0.0000026667,0.0000026599, +0.0000026523,0.0000026439,0.0000026372,0.0000026318,0.0000026228, +0.0000026094,0.0000025923,0.0000025720,0.0000025595,0.0000025609, +0.0000025719,0.0000025825,0.0000025877,0.0000025886,0.0000025840, +0.0000025708,0.0000025579,0.0000025461,0.0000025268,0.0000025049, +0.0000024914,0.0000024821,0.0000024688,0.0000024439,0.0000024136, +0.0000023916,0.0000023781,0.0000023653,0.0000023488,0.0000023321, +0.0000023209,0.0000023164,0.0000023145,0.0000023134,0.0000023118, +0.0000023113,0.0000023128,0.0000023147,0.0000023153,0.0000023162, +0.0000023193,0.0000023242,0.0000023285,0.0000023301,0.0000023278, +0.0000023223,0.0000023160,0.0000023106,0.0000023081,0.0000023073, +0.0000023078,0.0000023102,0.0000023124,0.0000023127,0.0000023114, +0.0000023101,0.0000023079,0.0000023036,0.0000022973,0.0000022919, +0.0000022913,0.0000022940,0.0000022916,0.0000022864,0.0000022857, +0.0000022884,0.0000022978,0.0000023175,0.0000023377,0.0000023470, +0.0000023498,0.0000023535,0.0000023583,0.0000023734,0.0000023941, +0.0000024039,0.0000024055,0.0000024045,0.0000024028,0.0000024101, +0.0000024434,0.0000024902,0.0000025286,0.0000025516,0.0000025627, +0.0000025671,0.0000025682,0.0000025676,0.0000025648,0.0000025585, +0.0000025481,0.0000025337,0.0000025150,0.0000024924,0.0000024679, +0.0000024440,0.0000024231,0.0000024077,0.0000023983,0.0000023934, +0.0000023897,0.0000023849,0.0000023800,0.0000023769,0.0000023752, +0.0000023755,0.0000023772,0.0000023789,0.0000023797,0.0000023804, +0.0000023800,0.0000023780,0.0000023740,0.0000023671,0.0000023584, +0.0000023494,0.0000023412,0.0000023333,0.0000023239,0.0000023131, +0.0000023005,0.0000022872,0.0000022780,0.0000022728,0.0000022686, +0.0000022650,0.0000022635,0.0000022651,0.0000022679,0.0000022671, +0.0000022638,0.0000022609,0.0000022582,0.0000022544,0.0000022506, +0.0000022481,0.0000022468,0.0000022461,0.0000022455,0.0000022449, +0.0000022448,0.0000022459,0.0000022470,0.0000022479,0.0000022494, +0.0000022516,0.0000022540,0.0000022551,0.0000022550,0.0000022551, +0.0000022545,0.0000022520,0.0000022489,0.0000022463,0.0000022454, +0.0000022466,0.0000022498,0.0000022556,0.0000022606,0.0000022620, +0.0000022620,0.0000022602,0.0000022538,0.0000022448,0.0000022368, +0.0000022298,0.0000022241,0.0000022209,0.0000022183,0.0000022156, +0.0000022132,0.0000022108,0.0000022076,0.0000022043,0.0000022011, +0.0000021983,0.0000021955,0.0000021924,0.0000021889,0.0000021843, +0.0000021790,0.0000021744,0.0000021709,0.0000021679,0.0000021636, +0.0000021585,0.0000021545,0.0000021517,0.0000021501,0.0000021498, +0.0000021499,0.0000021499,0.0000021505,0.0000021522,0.0000021534, +0.0000021534,0.0000021526,0.0000021529,0.0000021570,0.0000021647, +0.0000021732,0.0000021796,0.0000021842,0.0000021885,0.0000021927, +0.0000021971,0.0000022010,0.0000022043,0.0000022071,0.0000022090, +0.0000022098,0.0000022098,0.0000022101,0.0000022113,0.0000022126, +0.0000022124,0.0000022109,0.0000022105,0.0000022130,0.0000022186, +0.0000022243,0.0000022267,0.0000022263,0.0000022251,0.0000022248, +0.0000022255,0.0000022280,0.0000022323,0.0000022344,0.0000022309, +0.0000022202,0.0000022066,0.0000021944,0.0000021889,0.0000021945, +0.0000022160,0.0000022507,0.0000022869,0.0000023097,0.0000023157, +0.0000023216,0.0000023278,0.0000023282,0.0000023244,0.0000023175, +0.0000023092,0.0000023042,0.0000023052,0.0000023130,0.0000023248, +0.0000023360,0.0000023422,0.0000023414,0.0000023323,0.0000023198, +0.0000023123,0.0000023105,0.0000023102,0.0000023100,0.0000023099, +0.0000023092,0.0000023070,0.0000023034,0.0000023000,0.0000022975, +0.0000022976,0.0000023017,0.0000023101,0.0000023198,0.0000023278, +0.0000023342,0.0000023409,0.0000023494,0.0000023594,0.0000023703, +0.0000023813,0.0000023915,0.0000024004,0.0000024076,0.0000024131, +0.0000024172,0.0000024205,0.0000024232,0.0000024253,0.0000024267, +0.0000024274,0.0000024272,0.0000024260,0.0000024246,0.0000024124, +0.0000024129,0.0000024088,0.0000024003,0.0000023934,0.0000023906, +0.0000023877,0.0000023842,0.0000023850,0.0000023895,0.0000023939, +0.0000023957,0.0000023930,0.0000023855,0.0000023799,0.0000023760, +0.0000023665,0.0000023523,0.0000023420,0.0000023393,0.0000023413, +0.0000023494,0.0000023587,0.0000023637,0.0000023644,0.0000023642, +0.0000023628,0.0000023608,0.0000023593,0.0000023584,0.0000023569, +0.0000023543,0.0000023537,0.0000023597,0.0000023696,0.0000023753, +0.0000023745,0.0000023656,0.0000023519,0.0000023383,0.0000023281, +0.0000023228,0.0000023242,0.0000023319,0.0000023399,0.0000023429, +0.0000023438,0.0000023490,0.0000023587,0.0000023623,0.0000023565, +0.0000023488,0.0000023477,0.0000023493,0.0000023494,0.0000023464, +0.0000023460,0.0000023533,0.0000023641,0.0000023715,0.0000023760, +0.0000023800,0.0000023832,0.0000023852,0.0000023861,0.0000023854, +0.0000023830,0.0000023801,0.0000023771,0.0000023737,0.0000023709, +0.0000023699,0.0000023703,0.0000023726,0.0000023776,0.0000023842, +0.0000023884,0.0000023874,0.0000023837,0.0000023828,0.0000023824, +0.0000023828,0.0000023861,0.0000023884,0.0000023878,0.0000023835, +0.0000023738,0.0000023626,0.0000023559,0.0000023531,0.0000023519, +0.0000023530,0.0000023581,0.0000023640,0.0000023678,0.0000023701, +0.0000023725,0.0000023756,0.0000023778,0.0000023776,0.0000023770, +0.0000023779,0.0000023810,0.0000023835,0.0000023861,0.0000023933, +0.0000024030,0.0000024127,0.0000024217,0.0000024297,0.0000024362, +0.0000024416,0.0000024466,0.0000024496,0.0000024496,0.0000024482, +0.0000024435,0.0000024344,0.0000024232,0.0000024123,0.0000024039, +0.0000024015,0.0000024032,0.0000024081,0.0000024151,0.0000024221, +0.0000024271,0.0000024297,0.0000024299,0.0000024274,0.0000024281, +0.0000024475,0.0000024737,0.0000024872,0.0000024893,0.0000024895, +0.0000024942,0.0000025030,0.0000025153,0.0000025295,0.0000025373, +0.0000025373,0.0000025334,0.0000025255,0.0000025113,0.0000024966, +0.0000024874,0.0000024843,0.0000024857,0.0000024904,0.0000024950, +0.0000024960,0.0000024903,0.0000024795,0.0000024729,0.0000024702, +0.0000024636,0.0000024540,0.0000024486,0.0000024488,0.0000024498, +0.0000024476,0.0000024381,0.0000024217,0.0000024041,0.0000023903, +0.0000023794,0.0000023706,0.0000023649,0.0000023612,0.0000023574, +0.0000023534,0.0000023495,0.0000023464,0.0000023448,0.0000023443, +0.0000023444,0.0000023460,0.0000023512,0.0000023602,0.0000023706, +0.0000023800,0.0000023880,0.0000023952,0.0000024018,0.0000024080, +0.0000024140,0.0000024206,0.0000024284,0.0000024372,0.0000024466, +0.0000024558,0.0000024634,0.0000024690,0.0000024726,0.0000024745, +0.0000024745,0.0000024735,0.0000024726,0.0000024728,0.0000024730, +0.0000024725,0.0000024712,0.0000024707,0.0000024716,0.0000024746, +0.0000024792,0.0000024841,0.0000024888,0.0000024938,0.0000024985, +0.0000025021,0.0000025038,0.0000025042,0.0000025045,0.0000025063, +0.0000025099,0.0000025147,0.0000025198,0.0000025244,0.0000025280, +0.0000025305,0.0000025317,0.0000025311,0.0000025294,0.0000025278, +0.0000025278,0.0000025294,0.0000025308,0.0000025307,0.0000025289, +0.0000025247,0.0000025172,0.0000025065,0.0000024948,0.0000024849, +0.0000024777,0.0000024739,0.0000024719,0.0000024684,0.0000024615, +0.0000024535,0.0000024492,0.0000024497,0.0000024523,0.0000024541, +0.0000024534,0.0000024519,0.0000024479,0.0000024334,0.0000024119, +0.0000023990,0.0000023959,0.0000023913,0.0000023832,0.0000023755, +0.0000023692,0.0000023638,0.0000023584,0.0000023526,0.0000023483, +0.0000023472,0.0000023519,0.0000023668,0.0000023870,0.0000024038, +0.0000024125,0.0000024150,0.0000024159,0.0000024182,0.0000024228, +0.0000024288,0.0000024342,0.0000024374,0.0000024381,0.0000024365, +0.0000024319,0.0000024259,0.0000024201,0.0000024165,0.0000024178, +0.0000024251,0.0000024356,0.0000024483,0.0000024677,0.0000024936, +0.0000025144,0.0000025202,0.0000025182,0.0000025157,0.0000025183, +0.0000025304,0.0000025464,0.0000025562,0.0000025606,0.0000025656, +0.0000025725,0.0000025803,0.0000025880,0.0000025941,0.0000025966, +0.0000025937,0.0000025831,0.0000025684,0.0000025551,0.0000025460, +0.0000025385,0.0000025307,0.0000025266,0.0000025271,0.0000025298, +0.0000025306,0.0000025279,0.0000025216,0.0000025106,0.0000024956, +0.0000024834,0.0000024799,0.0000024798,0.0000024772,0.0000024695, +0.0000024587,0.0000024478,0.0000024393,0.0000024340,0.0000024303, +0.0000024265,0.0000024225,0.0000024192,0.0000024164,0.0000024134, +0.0000024107,0.0000024103,0.0000024130,0.0000024191,0.0000024271, +0.0000024340,0.0000024371,0.0000024355,0.0000024235,0.0000023966, +0.0000023742,0.0000023775,0.0000024083,0.0000024370,0.0000024611, +0.0000024834,0.0000024867,0.0000024796,0.0000024715,0.0000024723, +0.0000024785,0.0000024861,0.0000024923,0.0000024943,0.0000024932, +0.0000024908,0.0000024860,0.0000024791,0.0000024733,0.0000024708, +0.0000024722,0.0000024753,0.0000024775,0.0000024797,0.0000024847, +0.0000024904,0.0000024947,0.0000024996,0.0000025066,0.0000025133, +0.0000025157,0.0000025139,0.0000025097,0.0000025070,0.0000025059, +0.0000025045,0.0000025016,0.0000025001,0.0000025006,0.0000025023, +0.0000025051,0.0000025075,0.0000025088,0.0000025101,0.0000025130, +0.0000025179,0.0000025231,0.0000025261,0.0000025252,0.0000025192, +0.0000025134,0.0000025152,0.0000025177,0.0000025150,0.0000025037, +0.0000024876,0.0000024728,0.0000024597,0.0000024445,0.0000024271, +0.0000024124,0.0000024028,0.0000023980,0.0000023960,0.0000023939, +0.0000023916,0.0000023886,0.0000023827,0.0000023740,0.0000023637, +0.0000023528,0.0000023420,0.0000023322,0.0000023228,0.0000023139, +0.0000023108,0.0000023137,0.0000023193,0.0000023252,0.0000023317, +0.0000023372,0.0000023418,0.0000023466,0.0000023511,0.0000023553, +0.0000023589,0.0000023615,0.0000023624,0.0000023613,0.0000023583, +0.0000023513,0.0000023420,0.0000023322,0.0000023241,0.0000023173, +0.0000023088,0.0000022975,0.0000022864,0.0000022783,0.0000022731, +0.0000022698,0.0000022682,0.0000022675,0.0000022672,0.0000022661, +0.0000022651,0.0000022649,0.0000022664,0.0000022690,0.0000022725, +0.0000022755,0.0000022774,0.0000022791,0.0000022813,0.0000022842, +0.0000022870,0.0000022895,0.0000022920,0.0000022945,0.0000022954, +0.0000022924,0.0000022837,0.0000022741,0.0000022706,0.0000022708, +0.0000022683,0.0000022618,0.0000022657,0.0000022842,0.0000022999, +0.0000023029,0.0000023014,0.0000022991,0.0000022968,0.0000022953, +0.0000022952,0.0000022971,0.0000023007,0.0000023046,0.0000023072, +0.0000023083,0.0000023078,0.0000023051,0.0000023011,0.0000022966, +0.0000022913,0.0000022854,0.0000022792,0.0000022729,0.0000022678, +0.0000022649,0.0000022641,0.0000022659,0.0000022706,0.0000022757, +0.0000022778,0.0000022762,0.0000022709,0.0000022644,0.0000022582, +0.0000022535,0.0000022516,0.0000022534,0.0000022604,0.0000022698, +0.0000022824,0.0000023016,0.0000023234,0.0000023428,0.0000023611, +0.0000023757,0.0000023772,0.0000023678,0.0000023574,0.0000023581, +0.0000023744,0.0000023907,0.0000023960,0.0000024005,0.0000024119, +0.0000024300,0.0000024565,0.0000024802,0.0000025017,0.0000025260, +0.0000025398,0.0000025598,0.0000026056,0.0000026450,0.0000026537, +0.0000026400,0.0000025969,0.0000025491,0.0000025168,0.0000024943, +0.0000024508,0.0000024147,0.0000024087,0.0000024094,0.0000024080, +0.0000024100,0.0000024143,0.0000024153,0.0000024216,0.0000024296, +0.0000024288,0.0000024487,0.0000024833,0.0000024782,0.0000024979, +0.0000025685,0.0000026019,0.0000026029,0.0000025458,0.0000024898, +0.0000024828,0.0000024870,0.0000024637,0.0000024167,0.0000024018, +0.0000024039,0.0000024127,0.0000024284,0.0000024391,0.0000024498, +0.0000024524,0.0000024499,0.0000024477,0.0000024470,0.0000024457, +0.0000024419,0.0000024370,0.0000024326,0.0000024283,0.0000024256, +0.0000024273,0.0000024340,0.0000024400,0.0000024416,0.0000024424, +0.0000024428,0.0000024424,0.0000024400,0.0000024362,0.0000024334, +0.0000024303,0.0000024267,0.0000024226,0.0000024189,0.0000024167, +0.0000024145,0.0000024127,0.0000024127,0.0000024140,0.0000024165, +0.0000024182,0.0000024192,0.0000024201,0.0000024205,0.0000024210, +0.0000024212,0.0000024212,0.0000024211,0.0000024212,0.0000024218, +0.0000024238,0.0000024273,0.0000024315,0.0000024353,0.0000024374, +0.0000024396,0.0000024441,0.0000024466,0.0000024412,0.0000024286, +0.0000024207,0.0000024203,0.0000024252,0.0000024347,0.0000024450, +0.0000024512,0.0000024527,0.0000024523,0.0000024552,0.0000024652, +0.0000024752,0.0000024820,0.0000024927,0.0000025082,0.0000025217, +0.0000025296,0.0000025326,0.0000025366,0.0000025451,0.0000025543, +0.0000025622,0.0000025717,0.0000025805,0.0000025845,0.0000025845, +0.0000025806,0.0000025732,0.0000025647,0.0000025576,0.0000025535, +0.0000025504,0.0000025487,0.0000025478,0.0000025483,0.0000025498, +0.0000025519,0.0000025549,0.0000025563,0.0000025543,0.0000025514, +0.0000025498,0.0000025504,0.0000025533,0.0000025571,0.0000025595, +0.0000025594,0.0000025574,0.0000025539,0.0000025505,0.0000025494, +0.0000025501,0.0000025450,0.0000025288,0.0000025100,0.0000024976, +0.0000024889,0.0000024810,0.0000024754,0.0000024690,0.0000024556, +0.0000024355,0.0000024158,0.0000024014,0.0000023918,0.0000023853, +0.0000023802,0.0000023758,0.0000023724,0.0000023702,0.0000023697, +0.0000023705,0.0000023719,0.0000023737,0.0000023753,0.0000023769, +0.0000023791,0.0000023826,0.0000023868,0.0000023904,0.0000023924, +0.0000023933,0.0000023943,0.0000023952,0.0000023948,0.0000023936, +0.0000023926,0.0000023925,0.0000023928,0.0000023927,0.0000023924, +0.0000023916,0.0000023871,0.0000023767,0.0000023592,0.0000023302, +0.0000022918,0.0000022608,0.0000022464,0.0000022393,0.0000022322, +0.0000022260,0.0000022225,0.0000022226,0.0000022265,0.0000022315, +0.0000022329,0.0000022279,0.0000022187,0.0000022108,0.0000022067, +0.0000022089,0.0000022193,0.0000022321,0.0000022420,0.0000022505, +0.0000022593,0.0000022682,0.0000022777,0.0000022884,0.0000022986, +0.0000023072,0.0000023168,0.0000023272,0.0000023346,0.0000023413, +0.0000023570,0.0000023820,0.0000024027,0.0000024113,0.0000024184, +0.0000024341,0.0000024483,0.0000024515,0.0000024508,0.0000024462, +0.0000024384,0.0000024315,0.0000024280,0.0000024294,0.0000024377, +0.0000024466,0.0000024486,0.0000024478,0.0000024512,0.0000024620, +0.0000024748,0.0000024819,0.0000024817,0.0000024802,0.0000024828, +0.0000024909,0.0000024968,0.0000024955,0.0000024872,0.0000024784, +0.0000024761,0.0000024783,0.0000024828,0.0000024854,0.0000024844, +0.0000024816,0.0000024819,0.0000024881,0.0000024983,0.0000025087, +0.0000025176,0.0000025250,0.0000025306,0.0000025339,0.0000025353, +0.0000025353,0.0000025344,0.0000025319,0.0000025285,0.0000025250, +0.0000025220,0.0000025206,0.0000025207,0.0000025213,0.0000025215, +0.0000025212,0.0000025202,0.0000025189,0.0000025179,0.0000025186, +0.0000025216,0.0000025264,0.0000025323,0.0000025384,0.0000025440, +0.0000025494,0.0000025533,0.0000025542,0.0000025522,0.0000025489, +0.0000025472,0.0000025484,0.0000025512,0.0000025526,0.0000025507, +0.0000025459,0.0000025407,0.0000025356,0.0000025298,0.0000025224, +0.0000025150,0.0000025117,0.0000025146,0.0000025244,0.0000025363, +0.0000025435,0.0000025438,0.0000025420,0.0000025412,0.0000025425, +0.0000025462,0.0000025522,0.0000025602,0.0000025689,0.0000025769, +0.0000025842,0.0000025934,0.0000026063,0.0000026211,0.0000026336, +0.0000026406,0.0000026413,0.0000026367,0.0000026280,0.0000026166, +0.0000026043,0.0000025915,0.0000025797,0.0000025708,0.0000025654, +0.0000025628,0.0000025618,0.0000025615,0.0000025595,0.0000025558, +0.0000025524,0.0000025520,0.0000025564,0.0000025664,0.0000025808, +0.0000025939,0.0000026007,0.0000026004,0.0000025956,0.0000025893, +0.0000025856,0.0000025844,0.0000025835,0.0000025822,0.0000025787, +0.0000025711,0.0000025605,0.0000025504,0.0000025402,0.0000025289, +0.0000025187,0.0000025119,0.0000025081,0.0000025069,0.0000025074, +0.0000025101,0.0000025138,0.0000025175,0.0000025207,0.0000025224, +0.0000025222,0.0000025217,0.0000025238,0.0000025268,0.0000025279, +0.0000025248,0.0000025178,0.0000025121,0.0000025089,0.0000025023, +0.0000024897,0.0000024815,0.0000024881,0.0000025108,0.0000025512, +0.0000025987,0.0000026300,0.0000026397,0.0000026448,0.0000026508, +0.0000026578,0.0000026638,0.0000026685,0.0000026733,0.0000026793, +0.0000026852,0.0000026888,0.0000026864,0.0000026779,0.0000026688, +0.0000026621,0.0000026557,0.0000026476,0.0000026406,0.0000026367, +0.0000026312,0.0000026205,0.0000026053,0.0000025861,0.0000025683, +0.0000025627,0.0000025690,0.0000025814,0.0000025917,0.0000025962, +0.0000025965,0.0000025888,0.0000025730,0.0000025597,0.0000025473, +0.0000025270,0.0000025060,0.0000024934,0.0000024836,0.0000024679, +0.0000024393,0.0000024084,0.0000023889,0.0000023765,0.0000023630, +0.0000023457,0.0000023277,0.0000023152,0.0000023115,0.0000023118, +0.0000023122,0.0000023111,0.0000023085,0.0000023059,0.0000023041, +0.0000023019,0.0000023008,0.0000023022,0.0000023069,0.0000023138, +0.0000023205,0.0000023244,0.0000023238,0.0000023186,0.0000023120, +0.0000023056,0.0000023004,0.0000022974,0.0000022979,0.0000023005, +0.0000023028,0.0000023038,0.0000023047,0.0000023051,0.0000023039, +0.0000022988,0.0000022916,0.0000022875,0.0000022881,0.0000022856, +0.0000022789,0.0000022771,0.0000022796,0.0000022858,0.0000023009, +0.0000023234,0.0000023390,0.0000023435,0.0000023455,0.0000023478, +0.0000023538,0.0000023722,0.0000023901,0.0000023956,0.0000023969, +0.0000023991,0.0000023995,0.0000024046,0.0000024256,0.0000024583, +0.0000024896,0.0000025116,0.0000025241,0.0000025284,0.0000025275, +0.0000025223,0.0000025127,0.0000024986,0.0000024809,0.0000024610, +0.0000024414,0.0000024244,0.0000024115,0.0000024030,0.0000023970, +0.0000023924,0.0000023877,0.0000023815,0.0000023742,0.0000023687, +0.0000023667,0.0000023668,0.0000023681,0.0000023708,0.0000023731, +0.0000023748,0.0000023764,0.0000023764,0.0000023738,0.0000023679, +0.0000023594,0.0000023503,0.0000023416,0.0000023341,0.0000023274, +0.0000023197,0.0000023104,0.0000022989,0.0000022865,0.0000022776, +0.0000022730,0.0000022693,0.0000022660,0.0000022639,0.0000022640, +0.0000022665,0.0000022672,0.0000022646,0.0000022604,0.0000022567, +0.0000022532,0.0000022498,0.0000022473,0.0000022457,0.0000022444, +0.0000022434,0.0000022424,0.0000022418,0.0000022422,0.0000022435, +0.0000022451,0.0000022466,0.0000022484,0.0000022506,0.0000022519, +0.0000022521,0.0000022528,0.0000022529,0.0000022514,0.0000022488, +0.0000022460,0.0000022433,0.0000022424,0.0000022440,0.0000022493, +0.0000022558,0.0000022594,0.0000022607,0.0000022610,0.0000022571, +0.0000022482,0.0000022394,0.0000022316,0.0000022246,0.0000022202, +0.0000022172,0.0000022145,0.0000022123,0.0000022099,0.0000022063, +0.0000022026,0.0000021992,0.0000021961,0.0000021933,0.0000021908, +0.0000021883,0.0000021852,0.0000021814,0.0000021767,0.0000021726, +0.0000021699,0.0000021672,0.0000021632,0.0000021584,0.0000021538, +0.0000021502,0.0000021469,0.0000021447,0.0000021432,0.0000021419, +0.0000021415,0.0000021427,0.0000021450,0.0000021470,0.0000021477, +0.0000021479,0.0000021508,0.0000021586,0.0000021692,0.0000021786, +0.0000021854,0.0000021897,0.0000021934,0.0000021977,0.0000022022, +0.0000022061,0.0000022090,0.0000022099,0.0000022096,0.0000022088, +0.0000022086,0.0000022090,0.0000022092,0.0000022080,0.0000022056, +0.0000022052,0.0000022089,0.0000022158,0.0000022223,0.0000022248, +0.0000022241,0.0000022229,0.0000022230,0.0000022243,0.0000022270, +0.0000022315,0.0000022362,0.0000022366,0.0000022296,0.0000022167, +0.0000022024,0.0000021917,0.0000021913,0.0000022045,0.0000022347, +0.0000022717,0.0000023016,0.0000023142,0.0000023191,0.0000023266, +0.0000023296,0.0000023275,0.0000023219,0.0000023134,0.0000023055, +0.0000023028,0.0000023058,0.0000023150,0.0000023264,0.0000023348, +0.0000023358,0.0000023292,0.0000023179,0.0000023101,0.0000023078, +0.0000023073,0.0000023069,0.0000023073,0.0000023080,0.0000023079, +0.0000023066,0.0000023043,0.0000023011,0.0000022979,0.0000022964, +0.0000022972,0.0000023022,0.0000023120,0.0000023242,0.0000023345, +0.0000023417,0.0000023469,0.0000023517,0.0000023572,0.0000023640, +0.0000023717,0.0000023796,0.0000023865,0.0000023921,0.0000023966, +0.0000024003,0.0000024030,0.0000024052,0.0000024069,0.0000024082, +0.0000024094,0.0000024108,0.0000023947,0.0000023991,0.0000024001, +0.0000023959,0.0000023892,0.0000023849,0.0000023823,0.0000023779, +0.0000023753,0.0000023776,0.0000023828,0.0000023870,0.0000023870, +0.0000023822,0.0000023772,0.0000023739,0.0000023655,0.0000023517, +0.0000023414,0.0000023395,0.0000023422,0.0000023500,0.0000023579, +0.0000023617,0.0000023625,0.0000023625,0.0000023618,0.0000023606, +0.0000023592,0.0000023573,0.0000023548,0.0000023544,0.0000023593, +0.0000023677,0.0000023724,0.0000023716,0.0000023620,0.0000023488, +0.0000023366,0.0000023273,0.0000023215,0.0000023206,0.0000023240, +0.0000023325,0.0000023408,0.0000023459,0.0000023492,0.0000023539, +0.0000023609,0.0000023642,0.0000023590,0.0000023502,0.0000023483, +0.0000023500,0.0000023496,0.0000023463,0.0000023458,0.0000023510, +0.0000023608,0.0000023686,0.0000023736,0.0000023778,0.0000023803, +0.0000023809,0.0000023806,0.0000023792,0.0000023770,0.0000023757, +0.0000023740,0.0000023707,0.0000023677,0.0000023672,0.0000023685, +0.0000023716,0.0000023768,0.0000023835,0.0000023888,0.0000023894, +0.0000023858,0.0000023846,0.0000023845,0.0000023840,0.0000023855, +0.0000023876,0.0000023872,0.0000023838,0.0000023768,0.0000023659, +0.0000023558,0.0000023504,0.0000023488,0.0000023488,0.0000023513, +0.0000023574,0.0000023642,0.0000023691,0.0000023720,0.0000023746, +0.0000023777,0.0000023796,0.0000023798,0.0000023782,0.0000023770, +0.0000023769,0.0000023770,0.0000023786,0.0000023855,0.0000023962, +0.0000024072,0.0000024175,0.0000024263,0.0000024327,0.0000024379, +0.0000024415,0.0000024424,0.0000024414,0.0000024385,0.0000024318, +0.0000024216,0.0000024104,0.0000023995,0.0000023922,0.0000023914, +0.0000023952,0.0000024027,0.0000024118,0.0000024196,0.0000024250, +0.0000024274,0.0000024271,0.0000024248,0.0000024277,0.0000024492, +0.0000024743,0.0000024856,0.0000024871,0.0000024892,0.0000024962, +0.0000025057,0.0000025186,0.0000025318,0.0000025372,0.0000025362, +0.0000025321,0.0000025224,0.0000025080,0.0000024961,0.0000024895, +0.0000024871,0.0000024886,0.0000024920,0.0000024935,0.0000024912, +0.0000024821,0.0000024713,0.0000024654,0.0000024619,0.0000024567, +0.0000024528,0.0000024532,0.0000024547,0.0000024537,0.0000024453, +0.0000024290,0.0000024096,0.0000023922,0.0000023769,0.0000023639, +0.0000023563,0.0000023544,0.0000023537,0.0000023523,0.0000023502, +0.0000023478,0.0000023455,0.0000023439,0.0000023432,0.0000023427, +0.0000023420,0.0000023436,0.0000023485,0.0000023569,0.0000023677, +0.0000023792,0.0000023893,0.0000023969,0.0000024026,0.0000024068, +0.0000024110,0.0000024168,0.0000024251,0.0000024359,0.0000024474, +0.0000024574,0.0000024649,0.0000024698,0.0000024724,0.0000024728, +0.0000024722,0.0000024718,0.0000024718,0.0000024712,0.0000024699, +0.0000024682,0.0000024668,0.0000024664,0.0000024679,0.0000024712, +0.0000024750,0.0000024793,0.0000024843,0.0000024898,0.0000024947, +0.0000024979,0.0000024993,0.0000025005,0.0000025033,0.0000025078, +0.0000025129,0.0000025179,0.0000025222,0.0000025255,0.0000025281, +0.0000025303,0.0000025314,0.0000025308,0.0000025288,0.0000025267, +0.0000025262,0.0000025274,0.0000025282,0.0000025267,0.0000025224, +0.0000025157,0.0000025064,0.0000024947,0.0000024832,0.0000024744, +0.0000024696,0.0000024680,0.0000024666,0.0000024617,0.0000024541, +0.0000024489,0.0000024498,0.0000024548,0.0000024592,0.0000024592, +0.0000024564,0.0000024525,0.0000024419,0.0000024222,0.0000024061, +0.0000024007,0.0000023966,0.0000023875,0.0000023773,0.0000023701, +0.0000023666,0.0000023635,0.0000023571,0.0000023494,0.0000023449, +0.0000023452,0.0000023521,0.0000023665,0.0000023843,0.0000023988, +0.0000024062,0.0000024081,0.0000024085,0.0000024101,0.0000024135, +0.0000024180,0.0000024231,0.0000024271,0.0000024282,0.0000024259, +0.0000024209,0.0000024149,0.0000024098,0.0000024085,0.0000024126, +0.0000024213,0.0000024320,0.0000024468,0.0000024706,0.0000024981, +0.0000025144,0.0000025159,0.0000025119,0.0000025097,0.0000025149, +0.0000025315,0.0000025487,0.0000025582,0.0000025638,0.0000025706, +0.0000025785,0.0000025866,0.0000025926,0.0000025948,0.0000025911, +0.0000025803,0.0000025671,0.0000025561,0.0000025487,0.0000025418, +0.0000025351,0.0000025323,0.0000025323,0.0000025324,0.0000025302, +0.0000025247,0.0000025136,0.0000024964,0.0000024812,0.0000024764, +0.0000024768,0.0000024742,0.0000024646,0.0000024515,0.0000024389, +0.0000024292,0.0000024232,0.0000024197,0.0000024168,0.0000024134, +0.0000024102,0.0000024080,0.0000024068,0.0000024057,0.0000024039, +0.0000024018,0.0000024006,0.0000024016,0.0000024056,0.0000024115, +0.0000024177,0.0000024224,0.0000024248,0.0000024202,0.0000024024, +0.0000023811,0.0000023809,0.0000024093,0.0000024377,0.0000024593, +0.0000024810,0.0000024903,0.0000024841,0.0000024757,0.0000024733, +0.0000024761,0.0000024818,0.0000024865,0.0000024874,0.0000024856, +0.0000024817,0.0000024746,0.0000024661,0.0000024605,0.0000024610, +0.0000024646,0.0000024688,0.0000024723,0.0000024762,0.0000024818, +0.0000024883,0.0000024929,0.0000024975,0.0000025026,0.0000025067, +0.0000025074,0.0000025043,0.0000024997,0.0000024975,0.0000024970, +0.0000024968,0.0000024965,0.0000024968,0.0000024982,0.0000025012, +0.0000025054,0.0000025074,0.0000025076,0.0000025081,0.0000025101, +0.0000025143,0.0000025185,0.0000025211,0.0000025202,0.0000025169, +0.0000025176,0.0000025204,0.0000025163,0.0000025017,0.0000024829, +0.0000024671,0.0000024541,0.0000024392,0.0000024221,0.0000024083, +0.0000024002,0.0000023955,0.0000023929,0.0000023907,0.0000023884, +0.0000023851,0.0000023782,0.0000023686,0.0000023573,0.0000023463, +0.0000023355,0.0000023266,0.0000023196,0.0000023133,0.0000023069, +0.0000023046,0.0000023069,0.0000023125,0.0000023194,0.0000023263, +0.0000023318,0.0000023366,0.0000023416,0.0000023468,0.0000023511, +0.0000023540,0.0000023547,0.0000023523,0.0000023457,0.0000023362, +0.0000023264,0.0000023186,0.0000023129,0.0000023058,0.0000022956, +0.0000022843,0.0000022769,0.0000022749,0.0000022744,0.0000022721, +0.0000022700,0.0000022688,0.0000022692,0.0000022698,0.0000022697, +0.0000022694,0.0000022702,0.0000022719,0.0000022742,0.0000022764, +0.0000022777,0.0000022787,0.0000022803,0.0000022833,0.0000022865, +0.0000022890,0.0000022897,0.0000022895,0.0000022906,0.0000022920, +0.0000022899,0.0000022823,0.0000022744,0.0000022718,0.0000022730, +0.0000022689,0.0000022619,0.0000022675,0.0000022887,0.0000023029, +0.0000023051,0.0000023042,0.0000023018,0.0000022982,0.0000022957, +0.0000022954,0.0000022975,0.0000023013,0.0000023048,0.0000023072, +0.0000023086,0.0000023087,0.0000023071,0.0000023043,0.0000022999, +0.0000022939,0.0000022872,0.0000022803,0.0000022730,0.0000022670, +0.0000022631,0.0000022619,0.0000022636,0.0000022686,0.0000022741, +0.0000022767,0.0000022750,0.0000022679,0.0000022599,0.0000022549, +0.0000022523,0.0000022512,0.0000022548,0.0000022635,0.0000022724, +0.0000022841,0.0000023028,0.0000023234,0.0000023415,0.0000023591, +0.0000023739,0.0000023768,0.0000023680,0.0000023574,0.0000023562, +0.0000023706,0.0000023872,0.0000023932,0.0000023966,0.0000024062, +0.0000024229,0.0000024482,0.0000024717,0.0000024905,0.0000025148, +0.0000025342,0.0000025464,0.0000025809,0.0000026260,0.0000026469, +0.0000026384,0.0000025989,0.0000025523,0.0000025202,0.0000024967, +0.0000024517,0.0000024159,0.0000024126,0.0000024162,0.0000024129, +0.0000024095,0.0000024099,0.0000024093,0.0000024132,0.0000024259, +0.0000024279,0.0000024386,0.0000024747,0.0000024832,0.0000024823, +0.0000025485,0.0000025983,0.0000026067,0.0000025696,0.0000025030, +0.0000024827,0.0000024870,0.0000024739,0.0000024254,0.0000024024, +0.0000024031,0.0000024111,0.0000024289,0.0000024417,0.0000024515, +0.0000024533,0.0000024507,0.0000024484,0.0000024469,0.0000024441, +0.0000024389,0.0000024329,0.0000024277,0.0000024232,0.0000024217, +0.0000024242,0.0000024307,0.0000024359,0.0000024387,0.0000024418, +0.0000024435,0.0000024432,0.0000024401,0.0000024349,0.0000024306, +0.0000024271,0.0000024232,0.0000024184,0.0000024135,0.0000024104, +0.0000024080,0.0000024060,0.0000024058,0.0000024073,0.0000024099, +0.0000024120,0.0000024133,0.0000024144,0.0000024152,0.0000024160, +0.0000024163,0.0000024163,0.0000024160,0.0000024154,0.0000024154, +0.0000024167,0.0000024202,0.0000024241,0.0000024271,0.0000024290, +0.0000024322,0.0000024366,0.0000024367,0.0000024282,0.0000024161, +0.0000024112,0.0000024130,0.0000024191,0.0000024291,0.0000024393, +0.0000024455,0.0000024487,0.0000024502,0.0000024525,0.0000024612, +0.0000024740,0.0000024833,0.0000024911,0.0000025021,0.0000025138, +0.0000025236,0.0000025299,0.0000025332,0.0000025374,0.0000025458, +0.0000025546,0.0000025602,0.0000025641,0.0000025659,0.0000025659, +0.0000025644,0.0000025617,0.0000025588,0.0000025565,0.0000025549, +0.0000025533,0.0000025508,0.0000025476,0.0000025446,0.0000025433, +0.0000025440,0.0000025471,0.0000025516,0.0000025540,0.0000025530, +0.0000025516,0.0000025509,0.0000025512,0.0000025514,0.0000025518, +0.0000025509,0.0000025488,0.0000025470,0.0000025471,0.0000025485, +0.0000025471,0.0000025347,0.0000025161,0.0000025013,0.0000024905, +0.0000024806,0.0000024738,0.0000024676,0.0000024546,0.0000024345, +0.0000024153,0.0000024015,0.0000023912,0.0000023815,0.0000023729, +0.0000023665,0.0000023620,0.0000023591,0.0000023575,0.0000023572, +0.0000023579,0.0000023599,0.0000023633,0.0000023679,0.0000023721, +0.0000023744,0.0000023751,0.0000023758,0.0000023780,0.0000023814, +0.0000023840,0.0000023851,0.0000023857,0.0000023868,0.0000023881, +0.0000023898,0.0000023916,0.0000023932,0.0000023943,0.0000023943, +0.0000023912,0.0000023827,0.0000023695,0.0000023494,0.0000023172, +0.0000022799,0.0000022536,0.0000022421,0.0000022359,0.0000022296, +0.0000022239,0.0000022209,0.0000022220,0.0000022265,0.0000022315, +0.0000022340,0.0000022319,0.0000022232,0.0000022138,0.0000022092, +0.0000022106,0.0000022195,0.0000022320,0.0000022417,0.0000022495, +0.0000022585,0.0000022684,0.0000022778,0.0000022871,0.0000022967, +0.0000023054,0.0000023134,0.0000023229,0.0000023319,0.0000023378, +0.0000023459,0.0000023639,0.0000023865,0.0000024014,0.0000024075, +0.0000024170,0.0000024337,0.0000024451,0.0000024465,0.0000024447, +0.0000024402,0.0000024340,0.0000024285,0.0000024265,0.0000024317, +0.0000024432,0.0000024512,0.0000024518,0.0000024512,0.0000024549, +0.0000024639,0.0000024735,0.0000024781,0.0000024782,0.0000024793, +0.0000024859,0.0000024946,0.0000024979,0.0000024956,0.0000024867, +0.0000024781,0.0000024757,0.0000024775,0.0000024809,0.0000024820, +0.0000024799,0.0000024766,0.0000024766,0.0000024819,0.0000024904, +0.0000024990,0.0000025072,0.0000025151,0.0000025221,0.0000025271, +0.0000025296,0.0000025299,0.0000025286,0.0000025252,0.0000025209, +0.0000025167,0.0000025140,0.0000025136,0.0000025152,0.0000025179, +0.0000025202,0.0000025215,0.0000025215,0.0000025202,0.0000025180, +0.0000025170,0.0000025188,0.0000025236,0.0000025299,0.0000025367, +0.0000025436,0.0000025497,0.0000025537,0.0000025547,0.0000025530, +0.0000025490,0.0000025457,0.0000025455,0.0000025479,0.0000025494, +0.0000025484,0.0000025442,0.0000025384,0.0000025323,0.0000025261, +0.0000025194,0.0000025128,0.0000025091,0.0000025101,0.0000025182, +0.0000025305,0.0000025401,0.0000025423,0.0000025409,0.0000025390, +0.0000025379,0.0000025383,0.0000025418,0.0000025502,0.0000025618, +0.0000025722,0.0000025797,0.0000025866,0.0000025961,0.0000026089, +0.0000026232,0.0000026347,0.0000026400,0.0000026395,0.0000026350, +0.0000026269,0.0000026172,0.0000026066,0.0000025966,0.0000025881, +0.0000025816,0.0000025775,0.0000025762,0.0000025757,0.0000025743, +0.0000025715,0.0000025678,0.0000025647,0.0000025652,0.0000025718, +0.0000025842,0.0000025962,0.0000026012,0.0000025999,0.0000025940, +0.0000025874,0.0000025834,0.0000025816,0.0000025800,0.0000025782, +0.0000025748,0.0000025683,0.0000025595,0.0000025498,0.0000025383, +0.0000025248,0.0000025137,0.0000025071,0.0000025037,0.0000025026, +0.0000025030,0.0000025048,0.0000025073,0.0000025095,0.0000025111, +0.0000025122,0.0000025129,0.0000025151,0.0000025187,0.0000025212, +0.0000025196,0.0000025137,0.0000025073,0.0000025042,0.0000025007, +0.0000024912,0.0000024811,0.0000024806,0.0000024987,0.0000025350, +0.0000025833,0.0000026212,0.0000026357,0.0000026399,0.0000026460, +0.0000026544,0.0000026622,0.0000026671,0.0000026708,0.0000026753, +0.0000026798,0.0000026834,0.0000026835,0.0000026780,0.0000026700, +0.0000026634,0.0000026580,0.0000026514,0.0000026440,0.0000026395, +0.0000026371,0.0000026308,0.0000026189,0.0000026024,0.0000025823, +0.0000025685,0.0000025680,0.0000025774,0.0000025906,0.0000025997, +0.0000026031,0.0000026027,0.0000025930,0.0000025754,0.0000025617, +0.0000025484,0.0000025272,0.0000025062,0.0000024938,0.0000024831, +0.0000024645,0.0000024335,0.0000024033,0.0000023856,0.0000023730, +0.0000023583,0.0000023412,0.0000023239,0.0000023108,0.0000023054, +0.0000023053,0.0000023066,0.0000023074,0.0000023071,0.0000023051, +0.0000023015,0.0000022968,0.0000022923,0.0000022895,0.0000022897, +0.0000022927,0.0000022987,0.0000023058,0.0000023117,0.0000023139, +0.0000023119,0.0000023066,0.0000022998,0.0000022931,0.0000022896, +0.0000022893,0.0000022915,0.0000022945,0.0000022973,0.0000022999, +0.0000023013,0.0000022996,0.0000022931,0.0000022863,0.0000022842, +0.0000022813,0.0000022736,0.0000022691,0.0000022716,0.0000022772, +0.0000022866,0.0000023060,0.0000023270,0.0000023366,0.0000023379, +0.0000023390,0.0000023405,0.0000023493,0.0000023693,0.0000023843, +0.0000023879,0.0000023910,0.0000023970,0.0000024015,0.0000024062, +0.0000024152,0.0000024287,0.0000024422,0.0000024532,0.0000024599, +0.0000024611,0.0000024581,0.0000024511,0.0000024411,0.0000024305, +0.0000024207,0.0000024129,0.0000024071,0.0000024026,0.0000023975, +0.0000023905,0.0000023828,0.0000023762,0.0000023699,0.0000023635, +0.0000023594,0.0000023588,0.0000023601,0.0000023625,0.0000023661, +0.0000023696,0.0000023719,0.0000023725,0.0000023702,0.0000023649, +0.0000023573,0.0000023488,0.0000023405,0.0000023333,0.0000023271, +0.0000023216,0.0000023147,0.0000023064,0.0000022963,0.0000022853, +0.0000022772,0.0000022727,0.0000022692,0.0000022662,0.0000022640, +0.0000022634,0.0000022648,0.0000022668,0.0000022661,0.0000022620, +0.0000022571,0.0000022525,0.0000022492,0.0000022471,0.0000022461, +0.0000022447,0.0000022434,0.0000022419,0.0000022409,0.0000022406, +0.0000022412,0.0000022430,0.0000022450,0.0000022463,0.0000022475, +0.0000022489,0.0000022495,0.0000022505,0.0000022512,0.0000022503, +0.0000022484,0.0000022462,0.0000022433,0.0000022408,0.0000022406, +0.0000022442,0.0000022510,0.0000022561,0.0000022587,0.0000022606, +0.0000022597,0.0000022524,0.0000022426,0.0000022342,0.0000022266, +0.0000022206,0.0000022163,0.0000022134,0.0000022117,0.0000022099, +0.0000022066,0.0000022026,0.0000021988,0.0000021952,0.0000021923, +0.0000021906,0.0000021894,0.0000021872,0.0000021841,0.0000021802, +0.0000021753,0.0000021708,0.0000021679,0.0000021650,0.0000021615, +0.0000021574,0.0000021531,0.0000021492,0.0000021457,0.0000021433, +0.0000021411,0.0000021387,0.0000021363,0.0000021351,0.0000021358, +0.0000021381,0.0000021404,0.0000021420,0.0000021439,0.0000021493, +0.0000021590,0.0000021704,0.0000021806,0.0000021876,0.0000021918, +0.0000021957,0.0000022003,0.0000022044,0.0000022068,0.0000022072, +0.0000022062,0.0000022051,0.0000022042,0.0000022037,0.0000022033, +0.0000022013,0.0000021992,0.0000021997,0.0000022047,0.0000022127, +0.0000022196,0.0000022222,0.0000022215,0.0000022207,0.0000022212, +0.0000022228,0.0000022252,0.0000022296,0.0000022353,0.0000022386, +0.0000022363,0.0000022269,0.0000022125,0.0000021984,0.0000021922, +0.0000021971,0.0000022191,0.0000022539,0.0000022890,0.0000023108, +0.0000023173,0.0000023235,0.0000023295,0.0000023291,0.0000023247, +0.0000023175,0.0000023087,0.0000023026,0.0000023016,0.0000023063, +0.0000023166,0.0000023267,0.0000023305,0.0000023264,0.0000023168, +0.0000023093,0.0000023065,0.0000023057,0.0000023050,0.0000023048, +0.0000023050,0.0000023052,0.0000023051,0.0000023045,0.0000023039, +0.0000023031,0.0000023023,0.0000023014,0.0000023013,0.0000023028, +0.0000023087,0.0000023167,0.0000023266,0.0000023363,0.0000023440, +0.0000023495,0.0000023535,0.0000023575,0.0000023617,0.0000023660, +0.0000023700,0.0000023737,0.0000023769,0.0000023796,0.0000023820, +0.0000023842,0.0000023861,0.0000023877,0.0000023903,0.0000023747, +0.0000023803,0.0000023851,0.0000023861,0.0000023825,0.0000023784, +0.0000023762,0.0000023727,0.0000023680,0.0000023663,0.0000023699, +0.0000023760,0.0000023797,0.0000023786,0.0000023750,0.0000023722, +0.0000023667,0.0000023547,0.0000023433,0.0000023398,0.0000023425, +0.0000023497,0.0000023569,0.0000023607,0.0000023617,0.0000023617, +0.0000023611,0.0000023595,0.0000023575,0.0000023558,0.0000023556, +0.0000023593,0.0000023662,0.0000023697,0.0000023658,0.0000023556, +0.0000023428,0.0000023331,0.0000023269,0.0000023232,0.0000023214, +0.0000023232,0.0000023294,0.0000023374,0.0000023446,0.0000023505, +0.0000023554,0.0000023595,0.0000023636,0.0000023655,0.0000023607, +0.0000023510,0.0000023485,0.0000023503,0.0000023496,0.0000023463, +0.0000023459,0.0000023503,0.0000023583,0.0000023659,0.0000023715, +0.0000023757,0.0000023776,0.0000023772,0.0000023754,0.0000023731, +0.0000023709,0.0000023702,0.0000023696,0.0000023673,0.0000023648, +0.0000023644,0.0000023666,0.0000023703,0.0000023755,0.0000023821, +0.0000023882,0.0000023900,0.0000023877,0.0000023861,0.0000023865, +0.0000023861,0.0000023861,0.0000023872,0.0000023870,0.0000023841, +0.0000023786,0.0000023700,0.0000023589,0.0000023502,0.0000023459, +0.0000023454,0.0000023470,0.0000023513,0.0000023582,0.0000023654, +0.0000023703,0.0000023732,0.0000023758,0.0000023786,0.0000023808, +0.0000023811,0.0000023792,0.0000023764,0.0000023735,0.0000023710, +0.0000023718,0.0000023790,0.0000023901,0.0000024022,0.0000024141, +0.0000024235,0.0000024304,0.0000024350,0.0000024366,0.0000024356, +0.0000024331,0.0000024278,0.0000024189,0.0000024080,0.0000023966, +0.0000023858,0.0000023799,0.0000023809,0.0000023873,0.0000023977, +0.0000024085,0.0000024173,0.0000024232,0.0000024257,0.0000024253, +0.0000024228,0.0000024271,0.0000024503,0.0000024741,0.0000024837, +0.0000024855,0.0000024899,0.0000024988,0.0000025090,0.0000025221, +0.0000025337,0.0000025369,0.0000025352,0.0000025303,0.0000025198, +0.0000025075,0.0000024986,0.0000024931,0.0000024906,0.0000024917, +0.0000024933,0.0000024927,0.0000024864,0.0000024753,0.0000024656, +0.0000024610,0.0000024588,0.0000024580,0.0000024595,0.0000024613, +0.0000024604,0.0000024529,0.0000024372,0.0000024173,0.0000023978, +0.0000023789,0.0000023613,0.0000023500,0.0000023475,0.0000023487, +0.0000023500,0.0000023500,0.0000023491,0.0000023473,0.0000023453, +0.0000023442,0.0000023439,0.0000023433,0.0000023425,0.0000023430, +0.0000023440,0.0000023486,0.0000023569,0.0000023677,0.0000023789, +0.0000023888,0.0000023964,0.0000024020,0.0000024069,0.0000024119, +0.0000024180,0.0000024260,0.0000024356,0.0000024455,0.0000024543, +0.0000024616,0.0000024669,0.0000024699,0.0000024716,0.0000024718, +0.0000024722,0.0000024714,0.0000024697,0.0000024676,0.0000024655, +0.0000024636,0.0000024633,0.0000024644,0.0000024666,0.0000024697, +0.0000024737,0.0000024791,0.0000024849,0.0000024896,0.0000024925, +0.0000024954,0.0000024995,0.0000025043,0.0000025093,0.0000025140, +0.0000025179,0.0000025212,0.0000025244,0.0000025276,0.0000025298, +0.0000025299,0.0000025283,0.0000025251,0.0000025227,0.0000025228, +0.0000025238,0.0000025229,0.0000025191,0.0000025132,0.0000025052, +0.0000024945,0.0000024825,0.0000024726,0.0000024674,0.0000024658, +0.0000024650,0.0000024613,0.0000024540,0.0000024481,0.0000024487, +0.0000024552,0.0000024622,0.0000024639,0.0000024608,0.0000024565, +0.0000024485,0.0000024313,0.0000024128,0.0000024039,0.0000023997, +0.0000023913,0.0000023798,0.0000023709,0.0000023678,0.0000023672, +0.0000023628,0.0000023535,0.0000023455,0.0000023424,0.0000023435, +0.0000023500,0.0000023629,0.0000023783,0.0000023908,0.0000023975, +0.0000023999,0.0000024005,0.0000024016,0.0000024048,0.0000024102, +0.0000024163,0.0000024202,0.0000024202,0.0000024171,0.0000024123, +0.0000024076,0.0000024045,0.0000024047,0.0000024096,0.0000024195, +0.0000024328,0.0000024515,0.0000024775,0.0000025018,0.0000025120, +0.0000025106,0.0000025063,0.0000025057,0.0000025149,0.0000025330, +0.0000025502,0.0000025618,0.0000025701,0.0000025782,0.0000025856, +0.0000025912,0.0000025927,0.0000025882,0.0000025784,0.0000025682, +0.0000025598,0.0000025523,0.0000025451,0.0000025402,0.0000025388, +0.0000025375,0.0000025340,0.0000025285,0.0000025183,0.0000025003, +0.0000024810,0.0000024720,0.0000024718,0.0000024688,0.0000024580, +0.0000024431,0.0000024291,0.0000024189,0.0000024131,0.0000024104, +0.0000024083,0.0000024048,0.0000024001,0.0000023958,0.0000023925, +0.0000023909,0.0000023913,0.0000023925,0.0000023929,0.0000023923, +0.0000023918,0.0000023926,0.0000023950,0.0000023982,0.0000024023, +0.0000024096,0.0000024192,0.0000024219,0.0000024116,0.0000023888, +0.0000023853,0.0000024055,0.0000024356,0.0000024570,0.0000024772, +0.0000024884,0.0000024872,0.0000024812,0.0000024762,0.0000024757, +0.0000024788,0.0000024819,0.0000024820,0.0000024792,0.0000024737, +0.0000024652,0.0000024563,0.0000024524,0.0000024536,0.0000024572, +0.0000024626,0.0000024683,0.0000024724,0.0000024778,0.0000024836, +0.0000024871,0.0000024900,0.0000024933,0.0000024956,0.0000024957, +0.0000024927,0.0000024888,0.0000024874,0.0000024881,0.0000024906, +0.0000024926,0.0000024938,0.0000024958,0.0000024999,0.0000025041, +0.0000025059,0.0000025062,0.0000025062,0.0000025077,0.0000025110, +0.0000025138,0.0000025136,0.0000025131,0.0000025159,0.0000025209, +0.0000025200,0.0000025066,0.0000024838,0.0000024629,0.0000024480, +0.0000024345,0.0000024202,0.0000024083,0.0000024015,0.0000023972, +0.0000023936,0.0000023907,0.0000023877,0.0000023823,0.0000023736, +0.0000023629,0.0000023514,0.0000023406,0.0000023312,0.0000023249, +0.0000023211,0.0000023182,0.0000023141,0.0000023092,0.0000023067, +0.0000023079,0.0000023131,0.0000023200,0.0000023262,0.0000023302, +0.0000023338,0.0000023368,0.0000023390,0.0000023400,0.0000023388, +0.0000023345,0.0000023274,0.0000023199,0.0000023139,0.0000023094, +0.0000023045,0.0000022968,0.0000022879,0.0000022809,0.0000022780, +0.0000022766,0.0000022771,0.0000022763,0.0000022747,0.0000022734, +0.0000022728,0.0000022727,0.0000022727,0.0000022722,0.0000022716, +0.0000022716,0.0000022723,0.0000022738,0.0000022751,0.0000022754, +0.0000022758,0.0000022776,0.0000022812,0.0000022853,0.0000022883, +0.0000022880,0.0000022865,0.0000022868,0.0000022883,0.0000022867, +0.0000022806,0.0000022746,0.0000022738,0.0000022746,0.0000022671, +0.0000022606,0.0000022728,0.0000022946,0.0000023057,0.0000023078, +0.0000023066,0.0000023026,0.0000022976,0.0000022945,0.0000022943, +0.0000022969,0.0000023012,0.0000023047,0.0000023069,0.0000023088, +0.0000023097,0.0000023092,0.0000023075,0.0000023033,0.0000022961, +0.0000022876,0.0000022784,0.0000022699,0.0000022628,0.0000022595, +0.0000022594,0.0000022626,0.0000022683,0.0000022739,0.0000022760, +0.0000022723,0.0000022627,0.0000022551,0.0000022522,0.0000022501, +0.0000022507,0.0000022574,0.0000022670,0.0000022749,0.0000022870, +0.0000023057,0.0000023244,0.0000023407,0.0000023576,0.0000023727, +0.0000023760,0.0000023679,0.0000023574,0.0000023551,0.0000023680, +0.0000023845,0.0000023910,0.0000023933,0.0000024008,0.0000024158, +0.0000024397,0.0000024642,0.0000024805,0.0000025029,0.0000025269, +0.0000025388,0.0000025616,0.0000026040,0.0000026344,0.0000026331, +0.0000025975,0.0000025535,0.0000025225,0.0000024982,0.0000024519, +0.0000024161,0.0000024153,0.0000024223,0.0000024181,0.0000024102, +0.0000024063,0.0000024033,0.0000024052,0.0000024191,0.0000024269, +0.0000024309,0.0000024633,0.0000024865,0.0000024787,0.0000025270, +0.0000025900,0.0000026067,0.0000025909,0.0000025204,0.0000024843, +0.0000024855,0.0000024808,0.0000024365,0.0000024041,0.0000024023, +0.0000024091,0.0000024276,0.0000024425,0.0000024522,0.0000024543, +0.0000024517,0.0000024489,0.0000024458,0.0000024411,0.0000024351, +0.0000024294,0.0000024244,0.0000024204,0.0000024198,0.0000024227, +0.0000024283,0.0000024330,0.0000024366,0.0000024412,0.0000024441, +0.0000024439,0.0000024406,0.0000024344,0.0000024284,0.0000024242, +0.0000024197,0.0000024141,0.0000024085,0.0000024041,0.0000024012, +0.0000023991,0.0000023990,0.0000024008,0.0000024034,0.0000024058, +0.0000024076,0.0000024089,0.0000024096,0.0000024105,0.0000024108, +0.0000024108,0.0000024103,0.0000024088,0.0000024080,0.0000024091, +0.0000024127,0.0000024163,0.0000024187,0.0000024210,0.0000024250, +0.0000024278,0.0000024246,0.0000024137,0.0000024046,0.0000024036, +0.0000024076,0.0000024149,0.0000024255,0.0000024353,0.0000024400, +0.0000024432,0.0000024473,0.0000024511,0.0000024578,0.0000024704, +0.0000024829,0.0000024911,0.0000024987,0.0000025072,0.0000025157, +0.0000025241,0.0000025305,0.0000025336,0.0000025373,0.0000025444, +0.0000025516,0.0000025556,0.0000025569,0.0000025567,0.0000025567, +0.0000025567,0.0000025564,0.0000025557,0.0000025550,0.0000025538, +0.0000025514,0.0000025469,0.0000025410,0.0000025365,0.0000025355, +0.0000025380,0.0000025435,0.0000025491,0.0000025522,0.0000025526, +0.0000025523,0.0000025517,0.0000025511,0.0000025499,0.0000025482, +0.0000025466,0.0000025460,0.0000025477,0.0000025469,0.0000025376, +0.0000025206,0.0000025048,0.0000024927,0.0000024815,0.0000024725, +0.0000024654,0.0000024529,0.0000024334,0.0000024140,0.0000023997, +0.0000023886,0.0000023776,0.0000023666,0.0000023576,0.0000023511, +0.0000023463,0.0000023428,0.0000023409,0.0000023410,0.0000023432, +0.0000023467,0.0000023505,0.0000023547,0.0000023599,0.0000023656, +0.0000023705,0.0000023731,0.0000023738,0.0000023746,0.0000023768, +0.0000023792,0.0000023808,0.0000023823,0.0000023844,0.0000023871, +0.0000023900,0.0000023927,0.0000023941,0.0000023927,0.0000023857, +0.0000023752,0.0000023618,0.0000023397,0.0000023055,0.0000022703, +0.0000022479,0.0000022381,0.0000022325,0.0000022267,0.0000022213, +0.0000022193,0.0000022211,0.0000022260,0.0000022308,0.0000022344, +0.0000022343,0.0000022271,0.0000022169,0.0000022117,0.0000022125, +0.0000022203,0.0000022326,0.0000022423,0.0000022493,0.0000022579, +0.0000022694,0.0000022807,0.0000022900,0.0000022987,0.0000023072, +0.0000023146,0.0000023216,0.0000023296,0.0000023362,0.0000023412, +0.0000023519,0.0000023709,0.0000023890,0.0000023985,0.0000024043, +0.0000024167,0.0000024334,0.0000024424,0.0000024426,0.0000024405, +0.0000024370,0.0000024315,0.0000024264,0.0000024266,0.0000024358, +0.0000024486,0.0000024549,0.0000024547,0.0000024542,0.0000024565, +0.0000024629,0.0000024702,0.0000024743,0.0000024759,0.0000024804, +0.0000024893,0.0000024972,0.0000024992,0.0000024949,0.0000024858, +0.0000024776,0.0000024752,0.0000024769,0.0000024791,0.0000024792, +0.0000024763,0.0000024722,0.0000024713,0.0000024752,0.0000024824, +0.0000024899,0.0000024962,0.0000025023,0.0000025090,0.0000025150, +0.0000025189,0.0000025202,0.0000025193,0.0000025162,0.0000025122, +0.0000025088,0.0000025077,0.0000025090,0.0000025123,0.0000025162, +0.0000025195,0.0000025216,0.0000025219,0.0000025203,0.0000025170, +0.0000025147,0.0000025157,0.0000025197,0.0000025254,0.0000025321, +0.0000025396,0.0000025465,0.0000025513,0.0000025531,0.0000025520, +0.0000025480,0.0000025438,0.0000025420,0.0000025432,0.0000025448, +0.0000025446,0.0000025415,0.0000025363,0.0000025299,0.0000025233, +0.0000025171,0.0000025117,0.0000025081,0.0000025073,0.0000025127, +0.0000025239,0.0000025351,0.0000025395,0.0000025391,0.0000025380, +0.0000025369,0.0000025351,0.0000025345,0.0000025399,0.0000025512, +0.0000025636,0.0000025731,0.0000025800,0.0000025868,0.0000025965, +0.0000026099,0.0000026231,0.0000026321,0.0000026363,0.0000026355, +0.0000026326,0.0000026265,0.0000026190,0.0000026122,0.0000026068, +0.0000026018,0.0000025978,0.0000025958,0.0000025946,0.0000025930, +0.0000025899,0.0000025848,0.0000025785,0.0000025748,0.0000025776, +0.0000025867,0.0000025961,0.0000025998,0.0000025975,0.0000025908, +0.0000025842,0.0000025803,0.0000025781,0.0000025764,0.0000025741, +0.0000025703,0.0000025642,0.0000025565,0.0000025465,0.0000025322, +0.0000025171,0.0000025076,0.0000025038,0.0000025021,0.0000025009, +0.0000024998,0.0000024991,0.0000024989,0.0000024991,0.0000024993, +0.0000025004,0.0000025036,0.0000025078,0.0000025108,0.0000025106, +0.0000025062,0.0000025006,0.0000024979,0.0000024967,0.0000024907, +0.0000024806,0.0000024778,0.0000024879,0.0000025196,0.0000025672, +0.0000026108,0.0000026313,0.0000026360,0.0000026404,0.0000026486, +0.0000026583,0.0000026649,0.0000026679,0.0000026712,0.0000026755, +0.0000026787,0.0000026791,0.0000026759,0.0000026695,0.0000026632, +0.0000026587,0.0000026536,0.0000026471,0.0000026415,0.0000026395, +0.0000026378,0.0000026306,0.0000026183,0.0000026008,0.0000025813, +0.0000025725,0.0000025750,0.0000025862,0.0000025992,0.0000026069, +0.0000026088,0.0000026073,0.0000025959,0.0000025780,0.0000025642, +0.0000025496,0.0000025269,0.0000025056,0.0000024931,0.0000024811, +0.0000024590,0.0000024263,0.0000023979,0.0000023818,0.0000023679, +0.0000023523,0.0000023362,0.0000023207,0.0000023075,0.0000022996, +0.0000022980,0.0000022987,0.0000022997,0.0000023014,0.0000023026, +0.0000023010,0.0000022970,0.0000022921,0.0000022880,0.0000022835, +0.0000022808,0.0000022808,0.0000022835,0.0000022881,0.0000022926, +0.0000022955,0.0000022967,0.0000022948,0.0000022902,0.0000022850, +0.0000022812,0.0000022808,0.0000022847,0.0000022905,0.0000022949, +0.0000022975,0.0000022981,0.0000022948,0.0000022870,0.0000022817, +0.0000022783,0.0000022700,0.0000022630,0.0000022639,0.0000022702, +0.0000022764,0.0000022886,0.0000023102,0.0000023268,0.0000023306, +0.0000023305,0.0000023312,0.0000023340,0.0000023455,0.0000023653, +0.0000023787,0.0000023827,0.0000023874,0.0000023958,0.0000024045, +0.0000024105,0.0000024141,0.0000024162,0.0000024172,0.0000024180, +0.0000024182,0.0000024179,0.0000024173,0.0000024154,0.0000024128, +0.0000024101,0.0000024069,0.0000024020,0.0000023957,0.0000023880, +0.0000023792,0.0000023710,0.0000023653,0.0000023604,0.0000023553, +0.0000023520,0.0000023526,0.0000023552,0.0000023588,0.0000023628, +0.0000023655,0.0000023660,0.0000023640,0.0000023595,0.0000023535, +0.0000023468,0.0000023402,0.0000023332,0.0000023269,0.0000023212, +0.0000023161,0.0000023097,0.0000023019,0.0000022932,0.0000022835, +0.0000022760,0.0000022716,0.0000022685,0.0000022661,0.0000022643, +0.0000022633,0.0000022635,0.0000022657,0.0000022668,0.0000022649, +0.0000022603,0.0000022551,0.0000022507,0.0000022480,0.0000022468, +0.0000022461,0.0000022452,0.0000022439,0.0000022426,0.0000022417, +0.0000022413,0.0000022418,0.0000022432,0.0000022445,0.0000022451, +0.0000022463,0.0000022477,0.0000022492,0.0000022500,0.0000022493, +0.0000022477,0.0000022460,0.0000022436,0.0000022409,0.0000022398, +0.0000022414,0.0000022471,0.0000022531,0.0000022565,0.0000022590, +0.0000022599,0.0000022558,0.0000022468,0.0000022378,0.0000022296, +0.0000022224,0.0000022165,0.0000022126,0.0000022110,0.0000022098, +0.0000022074,0.0000022039,0.0000022000,0.0000021959,0.0000021922, +0.0000021904,0.0000021899,0.0000021891,0.0000021872,0.0000021845, +0.0000021808,0.0000021760,0.0000021709,0.0000021672,0.0000021634, +0.0000021594,0.0000021553,0.0000021509,0.0000021466,0.0000021433, +0.0000021418,0.0000021407,0.0000021389,0.0000021363,0.0000021337, +0.0000021320,0.0000021312,0.0000021308,0.0000021319,0.0000021343, +0.0000021396,0.0000021481,0.0000021585,0.0000021699,0.0000021796, +0.0000021860,0.0000021904,0.0000021943,0.0000021977,0.0000022000, +0.0000022008,0.0000022007,0.0000022002,0.0000021989,0.0000021974, +0.0000021959,0.0000021936,0.0000021925,0.0000021944,0.0000022007, +0.0000022091,0.0000022158,0.0000022190,0.0000022193,0.0000022190, +0.0000022192,0.0000022206,0.0000022230,0.0000022270,0.0000022330, +0.0000022386,0.0000022398,0.0000022350,0.0000022234,0.0000022083, +0.0000021959,0.0000021944,0.0000022060,0.0000022358,0.0000022721, +0.0000023022,0.0000023159,0.0000023208,0.0000023273,0.0000023291, +0.0000023262,0.0000023203,0.0000023121,0.0000023040,0.0000022997, +0.0000023007,0.0000023078,0.0000023177,0.0000023238,0.0000023225, +0.0000023154,0.0000023090,0.0000023066,0.0000023062,0.0000023050, +0.0000023033,0.0000023020,0.0000023014,0.0000023015,0.0000023019, +0.0000023022,0.0000023030,0.0000023046,0.0000023063,0.0000023075, +0.0000023086,0.0000023106,0.0000023130,0.0000023162,0.0000023216, +0.0000023279,0.0000023354,0.0000023424,0.0000023485,0.0000023536, +0.0000023576,0.0000023609,0.0000023636,0.0000023656,0.0000023670, +0.0000023679,0.0000023688,0.0000023693,0.0000023695,0.0000023709, +0.0000023621,0.0000023650,0.0000023696,0.0000023728,0.0000023725, +0.0000023705,0.0000023693,0.0000023679,0.0000023639,0.0000023589, +0.0000023578,0.0000023620,0.0000023684,0.0000023722,0.0000023724, +0.0000023706,0.0000023678,0.0000023611,0.0000023509,0.0000023437, +0.0000023432,0.0000023479,0.0000023541,0.0000023585,0.0000023600, +0.0000023599,0.0000023590,0.0000023574,0.0000023566,0.0000023573, +0.0000023596,0.0000023624,0.0000023645,0.0000023581,0.0000023467, +0.0000023352,0.0000023280,0.0000023247,0.0000023234,0.0000023232, +0.0000023252,0.0000023305,0.0000023377,0.0000023441,0.0000023497, +0.0000023552,0.0000023599,0.0000023629,0.0000023656,0.0000023666, +0.0000023614,0.0000023512,0.0000023484,0.0000023502,0.0000023491, +0.0000023458,0.0000023459,0.0000023503,0.0000023571,0.0000023636, +0.0000023691,0.0000023731,0.0000023748,0.0000023745,0.0000023719, +0.0000023685,0.0000023659,0.0000023647,0.0000023643,0.0000023627, +0.0000023609,0.0000023611,0.0000023637,0.0000023681,0.0000023733, +0.0000023799,0.0000023867,0.0000023898,0.0000023888,0.0000023877, +0.0000023887,0.0000023888,0.0000023879,0.0000023872,0.0000023866, +0.0000023846,0.0000023801,0.0000023733,0.0000023639,0.0000023537, +0.0000023462,0.0000023424,0.0000023432,0.0000023473,0.0000023532, +0.0000023600,0.0000023667,0.0000023712,0.0000023736,0.0000023757, +0.0000023787,0.0000023810,0.0000023812,0.0000023795,0.0000023757, +0.0000023707,0.0000023663,0.0000023669,0.0000023739,0.0000023854, +0.0000023987,0.0000024111,0.0000024205,0.0000024273,0.0000024303, +0.0000024296,0.0000024270,0.0000024225,0.0000024150,0.0000024051, +0.0000023941,0.0000023828,0.0000023733,0.0000023699,0.0000023725, +0.0000023816,0.0000023937,0.0000024057,0.0000024156,0.0000024220, +0.0000024246,0.0000024240,0.0000024211,0.0000024266,0.0000024508, +0.0000024735,0.0000024824,0.0000024853,0.0000024915,0.0000025016, +0.0000025123,0.0000025251,0.0000025349,0.0000025364,0.0000025340, +0.0000025284,0.0000025186,0.0000025092,0.0000025025,0.0000024976, +0.0000024953,0.0000024955,0.0000024957,0.0000024921,0.0000024823, +0.0000024706,0.0000024629,0.0000024613,0.0000024632,0.0000024669, +0.0000024696,0.0000024687,0.0000024613,0.0000024458,0.0000024254, +0.0000024058,0.0000023854,0.0000023633,0.0000023471,0.0000023418, +0.0000023427,0.0000023457,0.0000023481,0.0000023489,0.0000023482, +0.0000023464,0.0000023446,0.0000023441,0.0000023445,0.0000023444, +0.0000023440,0.0000023444,0.0000023454,0.0000023478,0.0000023507, +0.0000023565,0.0000023655,0.0000023767,0.0000023875,0.0000023964, +0.0000024036,0.0000024099,0.0000024158,0.0000024219,0.0000024287, +0.0000024361,0.0000024437,0.0000024511,0.0000024576,0.0000024627, +0.0000024669,0.0000024696,0.0000024714,0.0000024714,0.0000024709, +0.0000024694,0.0000024672,0.0000024648,0.0000024632,0.0000024629, +0.0000024631,0.0000024643,0.0000024665,0.0000024706,0.0000024760, +0.0000024810,0.0000024854,0.0000024901,0.0000024954,0.0000025007, +0.0000025056,0.0000025098,0.0000025131,0.0000025161,0.0000025198, +0.0000025237,0.0000025264,0.0000025270,0.0000025260,0.0000025232, +0.0000025199,0.0000025185,0.0000025190,0.0000025191,0.0000025162, +0.0000025104,0.0000025033,0.0000024941,0.0000024831,0.0000024733, +0.0000024676,0.0000024655,0.0000024645,0.0000024611,0.0000024538, +0.0000024477,0.0000024476,0.0000024542,0.0000024628,0.0000024670, +0.0000024649,0.0000024595,0.0000024521,0.0000024379,0.0000024196, +0.0000024076,0.0000024023,0.0000023951,0.0000023832,0.0000023723, +0.0000023679,0.0000023682,0.0000023672,0.0000023607,0.0000023511, +0.0000023437,0.0000023416,0.0000023425,0.0000023478,0.0000023579, +0.0000023701,0.0000023811,0.0000023894,0.0000023943,0.0000023968, +0.0000023989,0.0000024024,0.0000024078,0.0000024129,0.0000024153, +0.0000024147,0.0000024121,0.0000024081,0.0000024039,0.0000024008, +0.0000024018,0.0000024095,0.0000024228,0.0000024380,0.0000024575, +0.0000024819,0.0000025015,0.0000025074,0.0000025055,0.0000025030, +0.0000025050,0.0000025165,0.0000025356,0.0000025542,0.0000025679, +0.0000025772,0.0000025837,0.0000025879,0.0000025885,0.0000025842, +0.0000025765,0.0000025692,0.0000025624,0.0000025547,0.0000025482, +0.0000025459,0.0000025458,0.0000025422,0.0000025345,0.0000025241, +0.0000025071,0.0000024856,0.0000024712,0.0000024671,0.0000024623, +0.0000024503,0.0000024349,0.0000024211,0.0000024109,0.0000024043, +0.0000024005,0.0000023982,0.0000023952,0.0000023904,0.0000023851, +0.0000023798,0.0000023748,0.0000023711,0.0000023705,0.0000023725, +0.0000023755,0.0000023783,0.0000023810,0.0000023834,0.0000023845, +0.0000023855,0.0000023870,0.0000023919,0.0000024033,0.0000024179, +0.0000024271,0.0000024207,0.0000023984,0.0000023853,0.0000024006, +0.0000024300,0.0000024537,0.0000024721,0.0000024847,0.0000024883, +0.0000024850,0.0000024808,0.0000024785,0.0000024777,0.0000024776, +0.0000024757,0.0000024723,0.0000024660,0.0000024577,0.0000024505, +0.0000024473,0.0000024474,0.0000024504,0.0000024569,0.0000024633, +0.0000024674,0.0000024718,0.0000024765,0.0000024787,0.0000024797, +0.0000024810,0.0000024821,0.0000024824,0.0000024806,0.0000024780, +0.0000024779,0.0000024806,0.0000024851,0.0000024883,0.0000024902, +0.0000024935,0.0000024977,0.0000025014,0.0000025037,0.0000025044, +0.0000025046,0.0000025058,0.0000025082,0.0000025079,0.0000025060, +0.0000025072,0.0000025149,0.0000025163,0.0000025078,0.0000024889, +0.0000024675,0.0000024484,0.0000024317,0.0000024167,0.0000024060, +0.0000024010,0.0000023982,0.0000023951,0.0000023914,0.0000023874, +0.0000023803,0.0000023692,0.0000023569,0.0000023457,0.0000023365, +0.0000023301,0.0000023263,0.0000023254,0.0000023256,0.0000023250, +0.0000023218,0.0000023170,0.0000023133,0.0000023138,0.0000023172, +0.0000023212,0.0000023250,0.0000023278,0.0000023301,0.0000023309, +0.0000023293,0.0000023240,0.0000023173,0.0000023120,0.0000023090, +0.0000023072,0.0000023042,0.0000022986,0.0000022923,0.0000022888, +0.0000022874,0.0000022872,0.0000022859,0.0000022839,0.0000022824, +0.0000022813,0.0000022792,0.0000022767,0.0000022738,0.0000022720, +0.0000022701,0.0000022686,0.0000022669,0.0000022658,0.0000022661, +0.0000022673,0.0000022685,0.0000022695,0.0000022709,0.0000022737, +0.0000022773,0.0000022819,0.0000022849,0.0000022840,0.0000022824, +0.0000022832,0.0000022850,0.0000022834,0.0000022781,0.0000022739, +0.0000022747,0.0000022730,0.0000022626,0.0000022627,0.0000022820, +0.0000023002,0.0000023085,0.0000023102,0.0000023069,0.0000023005, +0.0000022952,0.0000022924,0.0000022928,0.0000022965,0.0000023014, +0.0000023049,0.0000023069,0.0000023091,0.0000023105,0.0000023106, +0.0000023089,0.0000023041,0.0000022955,0.0000022846,0.0000022734, +0.0000022628,0.0000022566,0.0000022561,0.0000022584,0.0000022633, +0.0000022697,0.0000022746,0.0000022745,0.0000022667,0.0000022564, +0.0000022507,0.0000022488,0.0000022481,0.0000022519,0.0000022613, +0.0000022700,0.0000022775,0.0000022915,0.0000023097,0.0000023257, +0.0000023400,0.0000023566,0.0000023718,0.0000023750,0.0000023673, +0.0000023572,0.0000023548,0.0000023667,0.0000023828,0.0000023891, +0.0000023903,0.0000023958,0.0000024089,0.0000024319,0.0000024575, +0.0000024716,0.0000024914,0.0000025182,0.0000025337,0.0000025491, +0.0000025838,0.0000026169,0.0000026213,0.0000025927,0.0000025530, +0.0000025237,0.0000024988,0.0000024513,0.0000024159,0.0000024175, +0.0000024273,0.0000024231,0.0000024117,0.0000024039,0.0000023985, +0.0000023980,0.0000024105,0.0000024244,0.0000024260,0.0000024515, +0.0000024856,0.0000024799,0.0000025048,0.0000025746,0.0000026061, +0.0000026047,0.0000025416,0.0000024898,0.0000024830,0.0000024827, +0.0000024492,0.0000024082,0.0000024009,0.0000024069,0.0000024245, +0.0000024413,0.0000024520,0.0000024551,0.0000024525,0.0000024484, +0.0000024433,0.0000024368,0.0000024308,0.0000024264,0.0000024228, +0.0000024201,0.0000024201,0.0000024228,0.0000024270,0.0000024312, +0.0000024356,0.0000024409,0.0000024448,0.0000024448,0.0000024413, +0.0000024345,0.0000024274,0.0000024225,0.0000024168,0.0000024102, +0.0000024039,0.0000023983,0.0000023943,0.0000023922,0.0000023925, +0.0000023948,0.0000023975,0.0000023999,0.0000024018,0.0000024034, +0.0000024044,0.0000024055,0.0000024058,0.0000024054,0.0000024039, +0.0000024012,0.0000023998,0.0000024012,0.0000024050,0.0000024084, +0.0000024105,0.0000024132,0.0000024168,0.0000024168,0.0000024101, +0.0000024004,0.0000023955,0.0000023973,0.0000024032,0.0000024114, +0.0000024228,0.0000024324,0.0000024361,0.0000024383,0.0000024438, +0.0000024501,0.0000024559,0.0000024657,0.0000024793,0.0000024900, +0.0000024971,0.0000025030,0.0000025087,0.0000025156,0.0000025239, +0.0000025307,0.0000025340,0.0000025361,0.0000025397,0.0000025437, +0.0000025468,0.0000025478,0.0000025481,0.0000025483,0.0000025480, +0.0000025475,0.0000025474,0.0000025473,0.0000025463,0.0000025425, +0.0000025358,0.0000025290,0.0000025261,0.0000025280,0.0000025336, +0.0000025402,0.0000025461,0.0000025501,0.0000025519,0.0000025519, +0.0000025512,0.0000025499,0.0000025486,0.0000025478,0.0000025474, +0.0000025463,0.0000025381,0.0000025227,0.0000025070,0.0000024944, +0.0000024825,0.0000024720,0.0000024634,0.0000024510,0.0000024317, +0.0000024119,0.0000023970,0.0000023853,0.0000023738,0.0000023624, +0.0000023517,0.0000023419,0.0000023340,0.0000023275,0.0000023222, +0.0000023185,0.0000023176,0.0000023192,0.0000023243,0.0000023319, +0.0000023400,0.0000023471,0.0000023527,0.0000023578,0.0000023635, +0.0000023687,0.0000023721,0.0000023742,0.0000023763,0.0000023785, +0.0000023802,0.0000023822,0.0000023847,0.0000023877,0.0000023900, +0.0000023902,0.0000023858,0.0000023776,0.0000023682,0.0000023546, +0.0000023297,0.0000022949,0.0000022627,0.0000022434,0.0000022349, +0.0000022296,0.0000022238,0.0000022184,0.0000022169,0.0000022192, +0.0000022245,0.0000022299,0.0000022344,0.0000022358,0.0000022302, +0.0000022199,0.0000022139,0.0000022142,0.0000022214,0.0000022336, +0.0000022438,0.0000022503,0.0000022579,0.0000022702,0.0000022840, +0.0000022949,0.0000023032,0.0000023114,0.0000023191,0.0000023249, +0.0000023301,0.0000023358,0.0000023401,0.0000023457,0.0000023588, +0.0000023764,0.0000023890,0.0000023949,0.0000024022,0.0000024169, +0.0000024329,0.0000024405,0.0000024408,0.0000024392,0.0000024358, +0.0000024299,0.0000024259,0.0000024287,0.0000024412,0.0000024539, +0.0000024581,0.0000024575,0.0000024561,0.0000024562,0.0000024604, +0.0000024669,0.0000024714,0.0000024750,0.0000024820,0.0000024912, +0.0000024972,0.0000024979,0.0000024932,0.0000024842,0.0000024760, +0.0000024734,0.0000024752,0.0000024775,0.0000024775,0.0000024741, +0.0000024690,0.0000024665,0.0000024687,0.0000024746,0.0000024812, +0.0000024865,0.0000024916,0.0000024974,0.0000025029,0.0000025067, +0.0000025078,0.0000025069,0.0000025038,0.0000025005,0.0000024991, +0.0000024998,0.0000025027,0.0000025072,0.0000025121,0.0000025166, +0.0000025200,0.0000025211,0.0000025194,0.0000025161,0.0000025136, +0.0000025139,0.0000025167,0.0000025212,0.0000025271,0.0000025344, +0.0000025415,0.0000025466,0.0000025489,0.0000025486,0.0000025453, +0.0000025406,0.0000025377,0.0000025379,0.0000025395,0.0000025399, +0.0000025379,0.0000025340,0.0000025283,0.0000025217,0.0000025161, +0.0000025118,0.0000025080,0.0000025062,0.0000025088,0.0000025181, +0.0000025293,0.0000025358,0.0000025370,0.0000025378,0.0000025384, +0.0000025360,0.0000025329,0.0000025337,0.0000025404,0.0000025513, +0.0000025619,0.0000025702,0.0000025769,0.0000025848,0.0000025962, +0.0000026091,0.0000026199,0.0000026272,0.0000026315,0.0000026329, +0.0000026305,0.0000026264,0.0000026223,0.0000026202,0.0000026187, +0.0000026168,0.0000026150,0.0000026132,0.0000026108,0.0000026065, +0.0000025996,0.0000025913,0.0000025849,0.0000025839,0.0000025883, +0.0000025941,0.0000025963,0.0000025929,0.0000025854,0.0000025788, +0.0000025755,0.0000025740,0.0000025725,0.0000025698,0.0000025653, +0.0000025592,0.0000025515,0.0000025398,0.0000025232,0.0000025096, +0.0000025046,0.0000025036,0.0000025019,0.0000024990,0.0000024948, +0.0000024904,0.0000024875,0.0000024862,0.0000024863,0.0000024891, +0.0000024939,0.0000024976,0.0000024982,0.0000024952,0.0000024910, +0.0000024892,0.0000024897,0.0000024876,0.0000024793,0.0000024737, +0.0000024806,0.0000025056,0.0000025505,0.0000025985,0.0000026262, +0.0000026337,0.0000026362,0.0000026421,0.0000026520,0.0000026611, +0.0000026654,0.0000026673,0.0000026703,0.0000026738,0.0000026750, +0.0000026730,0.0000026682,0.0000026622,0.0000026577,0.0000026540, +0.0000026490,0.0000026432,0.0000026400,0.0000026395,0.0000026378, +0.0000026300,0.0000026178,0.0000025998,0.0000025824,0.0000025777, +0.0000025831,0.0000025950,0.0000026069,0.0000026128,0.0000026132, +0.0000026098,0.0000025975,0.0000025806,0.0000025670,0.0000025505, +0.0000025256,0.0000025040,0.0000024918,0.0000024780,0.0000024519, +0.0000024182,0.0000023924,0.0000023776,0.0000023625,0.0000023464, +0.0000023311,0.0000023155,0.0000023002,0.0000022897,0.0000022871, +0.0000022882,0.0000022900,0.0000022925,0.0000022951,0.0000022959, +0.0000022947,0.0000022926,0.0000022894,0.0000022850,0.0000022801, +0.0000022765,0.0000022737,0.0000022722,0.0000022713,0.0000022710, +0.0000022714,0.0000022727,0.0000022747,0.0000022756,0.0000022738, +0.0000022721,0.0000022750,0.0000022829,0.0000022905,0.0000022946, +0.0000022957,0.0000022948,0.0000022890,0.0000022811,0.0000022764, +0.0000022684,0.0000022592,0.0000022580,0.0000022633,0.0000022696, +0.0000022753,0.0000022907,0.0000023119,0.0000023231,0.0000023239, +0.0000023240,0.0000023261,0.0000023308,0.0000023433,0.0000023615, +0.0000023742,0.0000023795,0.0000023841,0.0000023925,0.0000024016, +0.0000024082,0.0000024119,0.0000024136,0.0000024138,0.0000024133, +0.0000024120,0.0000024108,0.0000024090,0.0000024061,0.0000024020, +0.0000023966,0.0000023901,0.0000023831,0.0000023756,0.0000023688, +0.0000023628,0.0000023572,0.0000023529,0.0000023490,0.0000023472, +0.0000023486,0.0000023519,0.0000023549,0.0000023568,0.0000023568, +0.0000023553,0.0000023525,0.0000023489,0.0000023447,0.0000023403, +0.0000023353,0.0000023289,0.0000023218,0.0000023154,0.0000023101, +0.0000023042,0.0000022975,0.0000022900,0.0000022816,0.0000022744, +0.0000022702,0.0000022680,0.0000022666,0.0000022650,0.0000022637, +0.0000022632,0.0000022645,0.0000022666,0.0000022671,0.0000022652, +0.0000022612,0.0000022564,0.0000022523,0.0000022496,0.0000022483, +0.0000022476,0.0000022468,0.0000022457,0.0000022447,0.0000022437, +0.0000022424,0.0000022418,0.0000022423,0.0000022429,0.0000022441, +0.0000022463,0.0000022486,0.0000022497,0.0000022491,0.0000022475, +0.0000022457,0.0000022437,0.0000022416,0.0000022400,0.0000022409, +0.0000022449,0.0000022507,0.0000022547,0.0000022572,0.0000022593, +0.0000022577,0.0000022503,0.0000022418,0.0000022333,0.0000022252, +0.0000022181,0.0000022131,0.0000022107,0.0000022093,0.0000022072, +0.0000022039,0.0000021999,0.0000021956,0.0000021915,0.0000021888, +0.0000021879,0.0000021879,0.0000021875,0.0000021862,0.0000021844, +0.0000021818,0.0000021782,0.0000021736,0.0000021691,0.0000021641, +0.0000021589,0.0000021539,0.0000021487,0.0000021431,0.0000021390, +0.0000021382,0.0000021388,0.0000021392,0.0000021384,0.0000021365, +0.0000021342,0.0000021312,0.0000021278,0.0000021258,0.0000021255, +0.0000021293,0.0000021366,0.0000021459,0.0000021563,0.0000021664, +0.0000021743,0.0000021801,0.0000021847,0.0000021884,0.0000021910, +0.0000021929,0.0000021946,0.0000021954,0.0000021945,0.0000021921, +0.0000021894,0.0000021870,0.0000021866,0.0000021895,0.0000021966, +0.0000022046,0.0000022111,0.0000022150,0.0000022170,0.0000022177, +0.0000022174,0.0000022178,0.0000022202,0.0000022242,0.0000022297, +0.0000022360,0.0000022399,0.0000022392,0.0000022320,0.0000022194, +0.0000022045,0.0000021958,0.0000021987,0.0000022186,0.0000022523, +0.0000022877,0.0000023111,0.0000023187,0.0000023238,0.0000023283, +0.0000023271,0.0000023225,0.0000023154,0.0000023070,0.0000023008, +0.0000022993,0.0000023021,0.0000023090,0.0000023157,0.0000023173, +0.0000023141,0.0000023098,0.0000023079,0.0000023074,0.0000023057, +0.0000023024,0.0000022994,0.0000022977,0.0000022973,0.0000022976, +0.0000022986,0.0000023005,0.0000023032,0.0000023060,0.0000023085, +0.0000023114,0.0000023150,0.0000023182,0.0000023205,0.0000023229, +0.0000023256,0.0000023286,0.0000023322,0.0000023362,0.0000023400, +0.0000023449,0.0000023496,0.0000023533,0.0000023559,0.0000023578, +0.0000023591,0.0000023598,0.0000023601,0.0000023603,0.0000023608, +0.0000023546,0.0000023566,0.0000023589,0.0000023612,0.0000023623, +0.0000023621,0.0000023617,0.0000023619,0.0000023607,0.0000023561, +0.0000023506,0.0000023489,0.0000023526,0.0000023597,0.0000023654, +0.0000023679,0.0000023682,0.0000023666,0.0000023618,0.0000023546, +0.0000023496,0.0000023490,0.0000023522,0.0000023552,0.0000023571, +0.0000023583,0.0000023582,0.0000023585,0.0000023596,0.0000023611, +0.0000023606,0.0000023564,0.0000023477,0.0000023360,0.0000023265, +0.0000023219,0.0000023210,0.0000023215,0.0000023227,0.0000023252, +0.0000023313,0.0000023393,0.0000023460,0.0000023505,0.0000023544, +0.0000023586,0.0000023623,0.0000023645,0.0000023670,0.0000023680, +0.0000023615,0.0000023510,0.0000023484,0.0000023499,0.0000023484, +0.0000023447,0.0000023450,0.0000023502,0.0000023567,0.0000023622, +0.0000023665,0.0000023695,0.0000023709,0.0000023709,0.0000023685, +0.0000023647,0.0000023617,0.0000023600,0.0000023592,0.0000023576, +0.0000023561,0.0000023566,0.0000023599,0.0000023648,0.0000023700, +0.0000023766,0.0000023839,0.0000023885,0.0000023892,0.0000023889, +0.0000023903,0.0000023913,0.0000023903,0.0000023880,0.0000023861, +0.0000023847,0.0000023821,0.0000023768,0.0000023691,0.0000023602, +0.0000023512,0.0000023437,0.0000023413,0.0000023432,0.0000023490, +0.0000023552,0.0000023618,0.0000023679,0.0000023714,0.0000023728, +0.0000023746,0.0000023777,0.0000023800,0.0000023803,0.0000023783, +0.0000023741,0.0000023684,0.0000023640,0.0000023640,0.0000023702, +0.0000023822,0.0000023961,0.0000024077,0.0000024162,0.0000024212, +0.0000024217,0.0000024196,0.0000024158,0.0000024100,0.0000024020, +0.0000023924,0.0000023822,0.0000023722,0.0000023647,0.0000023633, +0.0000023683,0.0000023790,0.0000023909,0.0000024036,0.0000024145, +0.0000024209,0.0000024237,0.0000024227,0.0000024198,0.0000024258, +0.0000024503,0.0000024729,0.0000024822,0.0000024857,0.0000024932, +0.0000025042,0.0000025157,0.0000025278,0.0000025355,0.0000025360, +0.0000025327,0.0000025267,0.0000025184,0.0000025117,0.0000025065, +0.0000025024,0.0000025008,0.0000025006,0.0000024990,0.0000024926, +0.0000024813,0.0000024707,0.0000024659,0.0000024677,0.0000024735, +0.0000024778,0.0000024778,0.0000024709,0.0000024557,0.0000024342, +0.0000024136,0.0000023947,0.0000023711,0.0000023489,0.0000023389, +0.0000023378,0.0000023400,0.0000023437,0.0000023469,0.0000023475, +0.0000023465,0.0000023448,0.0000023433,0.0000023431,0.0000023437, +0.0000023438,0.0000023443,0.0000023461,0.0000023485,0.0000023495, +0.0000023500,0.0000023499,0.0000023536,0.0000023625,0.0000023749, +0.0000023874,0.0000023980,0.0000024066,0.0000024140,0.0000024210, +0.0000024279,0.0000024343,0.0000024400,0.0000024452,0.0000024499, +0.0000024546,0.0000024593,0.0000024634,0.0000024666,0.0000024683, +0.0000024684,0.0000024680,0.0000024668,0.0000024650,0.0000024640, +0.0000024633,0.0000024630,0.0000024633,0.0000024643,0.0000024669, +0.0000024710,0.0000024755,0.0000024804,0.0000024858,0.0000024916, +0.0000024970,0.0000025020,0.0000025061,0.0000025094,0.0000025124, +0.0000025158,0.0000025193,0.0000025221,0.0000025232,0.0000025227, +0.0000025205,0.0000025172,0.0000025149,0.0000025150,0.0000025159, +0.0000025143,0.0000025090,0.0000025017,0.0000024938,0.0000024849, +0.0000024762,0.0000024701,0.0000024670,0.0000024652,0.0000024616, +0.0000024547,0.0000024488,0.0000024479,0.0000024530,0.0000024616, +0.0000024674,0.0000024668,0.0000024615,0.0000024543,0.0000024429, +0.0000024265,0.0000024127,0.0000024059,0.0000023994,0.0000023882, +0.0000023761,0.0000023690,0.0000023680,0.0000023690,0.0000023676, +0.0000023611,0.0000023520,0.0000023450,0.0000023426,0.0000023432, +0.0000023469,0.0000023541,0.0000023637,0.0000023743,0.0000023840, +0.0000023915,0.0000023962,0.0000023994,0.0000024024,0.0000024060, +0.0000024099,0.0000024126,0.0000024129,0.0000024107,0.0000024062, +0.0000024014,0.0000023996,0.0000024029,0.0000024135,0.0000024269, +0.0000024409,0.0000024592,0.0000024813,0.0000024981,0.0000025036, +0.0000025029,0.0000025029,0.0000025078,0.0000025208,0.0000025397, +0.0000025583,0.0000025715,0.0000025790,0.0000025823,0.0000025824, +0.0000025792,0.0000025738,0.0000025687,0.0000025623,0.0000025549, +0.0000025510,0.0000025518,0.0000025519,0.0000025454,0.0000025327, +0.0000025149,0.0000024928,0.0000024750,0.0000024665,0.0000024586, +0.0000024441,0.0000024271,0.0000024136,0.0000024049,0.0000023988, +0.0000023929,0.0000023873,0.0000023832,0.0000023791,0.0000023750, +0.0000023711,0.0000023670,0.0000023618,0.0000023563,0.0000023525, +0.0000023513,0.0000023527,0.0000023553,0.0000023605,0.0000023677, +0.0000023731,0.0000023764,0.0000023787,0.0000023821,0.0000023895, +0.0000024009,0.0000024152,0.0000024261,0.0000024263,0.0000024120, +0.0000023927,0.0000023930,0.0000024209,0.0000024464,0.0000024629, +0.0000024760,0.0000024835,0.0000024870,0.0000024866,0.0000024840, +0.0000024796,0.0000024755,0.0000024714,0.0000024666,0.0000024605, +0.0000024542,0.0000024490,0.0000024468,0.0000024467,0.0000024486, +0.0000024538,0.0000024587,0.0000024615,0.0000024639,0.0000024665, +0.0000024679,0.0000024684,0.0000024684,0.0000024690,0.0000024700, +0.0000024699,0.0000024693,0.0000024706,0.0000024744,0.0000024789, +0.0000024829,0.0000024862,0.0000024904,0.0000024951,0.0000024984, +0.0000025008,0.0000025026,0.0000025028,0.0000025024,0.0000025022, +0.0000025013,0.0000025013,0.0000025057,0.0000025063,0.0000024977, +0.0000024835,0.0000024674,0.0000024503,0.0000024321,0.0000024159, +0.0000024050,0.0000023993,0.0000023969,0.0000023951,0.0000023917, +0.0000023850,0.0000023756,0.0000023638,0.0000023508,0.0000023407, +0.0000023346,0.0000023314,0.0000023307,0.0000023316,0.0000023331, +0.0000023341,0.0000023327,0.0000023296,0.0000023255,0.0000023219, +0.0000023204,0.0000023205,0.0000023211,0.0000023231,0.0000023245, +0.0000023241,0.0000023209,0.0000023154,0.0000023099,0.0000023069, +0.0000023061,0.0000023047,0.0000023008,0.0000022961,0.0000022944, +0.0000022955,0.0000022983,0.0000022988,0.0000022969,0.0000022933, +0.0000022893,0.0000022857,0.0000022811,0.0000022769,0.0000022716, +0.0000022666,0.0000022623,0.0000022596,0.0000022583,0.0000022576, +0.0000022576,0.0000022582,0.0000022601,0.0000022627,0.0000022650, +0.0000022680,0.0000022714,0.0000022754,0.0000022794,0.0000022803, +0.0000022784,0.0000022778,0.0000022803,0.0000022816,0.0000022796, +0.0000022750,0.0000022731,0.0000022739,0.0000022675,0.0000022599, +0.0000022713,0.0000022923,0.0000023050,0.0000023110,0.0000023106, +0.0000023040,0.0000022965,0.0000022920,0.0000022907,0.0000022922, +0.0000022969,0.0000023021,0.0000023050,0.0000023066,0.0000023088, +0.0000023103,0.0000023100,0.0000023075,0.0000023012,0.0000022904, +0.0000022771,0.0000022636,0.0000022542,0.0000022521,0.0000022549, +0.0000022599,0.0000022657,0.0000022719,0.0000022744,0.0000022696, +0.0000022589,0.0000022504,0.0000022467,0.0000022463,0.0000022487, +0.0000022560,0.0000022655,0.0000022720,0.0000022809,0.0000022971, +0.0000023137,0.0000023263,0.0000023392,0.0000023564,0.0000023712, +0.0000023739,0.0000023660,0.0000023569,0.0000023550,0.0000023667, +0.0000023822,0.0000023876,0.0000023878,0.0000023916,0.0000024029, +0.0000024251,0.0000024511,0.0000024637,0.0000024810,0.0000025097, +0.0000025286,0.0000025418,0.0000025687,0.0000025984,0.0000026049, +0.0000025854,0.0000025519,0.0000025238,0.0000024981,0.0000024497, +0.0000024152,0.0000024189,0.0000024310,0.0000024274,0.0000024139, +0.0000024028,0.0000023943,0.0000023918,0.0000024011,0.0000024187, +0.0000024228,0.0000024404,0.0000024784,0.0000024850,0.0000024892, +0.0000025556,0.0000026032,0.0000026110,0.0000025654,0.0000025001, +0.0000024815,0.0000024823,0.0000024615,0.0000024155,0.0000024004, +0.0000024047,0.0000024196,0.0000024382,0.0000024508,0.0000024554, +0.0000024532,0.0000024476,0.0000024403,0.0000024324,0.0000024266, +0.0000024239,0.0000024225,0.0000024217,0.0000024223,0.0000024239, +0.0000024269,0.0000024308,0.0000024357,0.0000024413,0.0000024456, +0.0000024457,0.0000024421,0.0000024349,0.0000024270,0.0000024215, +0.0000024149,0.0000024070,0.0000023998,0.0000023939,0.0000023892, +0.0000023868,0.0000023874,0.0000023899,0.0000023924,0.0000023943, +0.0000023959,0.0000023975,0.0000023989,0.0000024003,0.0000024004, +0.0000023989,0.0000023955,0.0000023918,0.0000023907,0.0000023932, +0.0000023978,0.0000024010,0.0000024025,0.0000024046,0.0000024063, +0.0000024039,0.0000023969,0.0000023906,0.0000023889,0.0000023921, +0.0000023987,0.0000024076,0.0000024193,0.0000024290,0.0000024326, +0.0000024345,0.0000024404,0.0000024487,0.0000024549,0.0000024618, +0.0000024731,0.0000024856,0.0000024946,0.0000025003,0.0000025043, +0.0000025084,0.0000025143,0.0000025228,0.0000025303,0.0000025333, +0.0000025334,0.0000025334,0.0000025340,0.0000025346,0.0000025349, +0.0000025353,0.0000025356,0.0000025360,0.0000025366,0.0000025371, +0.0000025369,0.0000025346,0.0000025291,0.0000025218,0.0000025169, +0.0000025175,0.0000025235,0.0000025307,0.0000025366,0.0000025419, +0.0000025465,0.0000025492,0.0000025499,0.0000025498,0.0000025489, +0.0000025484,0.0000025450,0.0000025363,0.0000025222,0.0000025078, +0.0000024953,0.0000024833,0.0000024718,0.0000024617,0.0000024489, +0.0000024300,0.0000024092,0.0000023928,0.0000023807,0.0000023702, +0.0000023599,0.0000023492,0.0000023379,0.0000023261,0.0000023159, +0.0000023082,0.0000023023,0.0000022978,0.0000022951,0.0000022947, +0.0000022973,0.0000023033,0.0000023126,0.0000023245,0.0000023366, +0.0000023454,0.0000023506,0.0000023552,0.0000023609,0.0000023671, +0.0000023726,0.0000023768,0.0000023795,0.0000023814,0.0000023829, +0.0000023841,0.0000023839,0.0000023809,0.0000023754,0.0000023695, +0.0000023622,0.0000023469,0.0000023195,0.0000022851,0.0000022560, +0.0000022398,0.0000022326,0.0000022271,0.0000022209,0.0000022157, +0.0000022145,0.0000022170,0.0000022222,0.0000022287,0.0000022345, +0.0000022364,0.0000022327,0.0000022226,0.0000022156,0.0000022153, +0.0000022221,0.0000022344,0.0000022456,0.0000022524,0.0000022588, +0.0000022706,0.0000022863,0.0000022991,0.0000023075,0.0000023149, +0.0000023231,0.0000023301,0.0000023345,0.0000023381,0.0000023415, +0.0000023446,0.0000023517,0.0000023654,0.0000023792,0.0000023870, +0.0000023914,0.0000024011,0.0000024176,0.0000024324,0.0000024393, +0.0000024401,0.0000024391,0.0000024349,0.0000024280,0.0000024248, +0.0000024323,0.0000024475,0.0000024590,0.0000024613,0.0000024595, +0.0000024556,0.0000024539,0.0000024579,0.0000024643,0.0000024693, +0.0000024746,0.0000024829,0.0000024912,0.0000024952,0.0000024952, +0.0000024905,0.0000024813,0.0000024725,0.0000024688,0.0000024709, +0.0000024745,0.0000024755,0.0000024728,0.0000024673,0.0000024630, +0.0000024630,0.0000024672,0.0000024728,0.0000024780,0.0000024836, +0.0000024897,0.0000024952,0.0000024985,0.0000024990,0.0000024973, +0.0000024941,0.0000024916,0.0000024912,0.0000024926,0.0000024961, +0.0000025011,0.0000025068,0.0000025122,0.0000025164,0.0000025184, +0.0000025177,0.0000025151,0.0000025130,0.0000025127,0.0000025143, +0.0000025178,0.0000025234,0.0000025305,0.0000025370,0.0000025414, +0.0000025434,0.0000025434,0.0000025404,0.0000025357,0.0000025322, +0.0000025321,0.0000025341,0.0000025353,0.0000025342,0.0000025315, +0.0000025274,0.0000025217,0.0000025164,0.0000025128,0.0000025092, +0.0000025061,0.0000025068,0.0000025133,0.0000025235,0.0000025315, +0.0000025348,0.0000025377,0.0000025406,0.0000025397,0.0000025356, +0.0000025328,0.0000025344,0.0000025403,0.0000025482,0.0000025570, +0.0000025655,0.0000025739,0.0000025837,0.0000025957,0.0000026074, +0.0000026163,0.0000026229,0.0000026275,0.0000026296,0.0000026292, +0.0000026279,0.0000026283,0.0000026294,0.0000026294,0.0000026283, +0.0000026263,0.0000026232,0.0000026181,0.0000026105,0.0000026016, +0.0000025933,0.0000025888,0.0000025890,0.0000025911,0.0000025915, +0.0000025869,0.0000025787,0.0000025722,0.0000025700,0.0000025697, +0.0000025684,0.0000025654,0.0000025604,0.0000025542,0.0000025457, +0.0000025315,0.0000025145,0.0000025056,0.0000025049,0.0000025035, +0.0000024988,0.0000024920,0.0000024846,0.0000024781,0.0000024740, +0.0000024726,0.0000024737,0.0000024771,0.0000024815,0.0000024836, +0.0000024826,0.0000024799,0.0000024792,0.0000024811,0.0000024812, +0.0000024760,0.0000024700,0.0000024742,0.0000024948,0.0000025347, +0.0000025843,0.0000026193,0.0000026315,0.0000026339,0.0000026371, +0.0000026448,0.0000026554,0.0000026627,0.0000026650,0.0000026660, +0.0000026680,0.0000026697,0.0000026691,0.0000026659,0.0000026612, +0.0000026568,0.0000026532,0.0000026496,0.0000026449,0.0000026401, +0.0000026390,0.0000026395,0.0000026366,0.0000026284,0.0000026163, +0.0000025988,0.0000025848,0.0000025832,0.0000025908,0.0000026025, +0.0000026123,0.0000026154,0.0000026147,0.0000026104,0.0000025986, +0.0000025829,0.0000025694,0.0000025506,0.0000025230,0.0000025010, +0.0000024894,0.0000024738,0.0000024435,0.0000024098,0.0000023877, +0.0000023737,0.0000023581,0.0000023416,0.0000023247,0.0000023057, +0.0000022868,0.0000022736,0.0000022692,0.0000022710,0.0000022755, +0.0000022806,0.0000022847,0.0000022867,0.0000022872,0.0000022876, +0.0000022874,0.0000022856,0.0000022818,0.0000022779,0.0000022737, +0.0000022690,0.0000022635,0.0000022576,0.0000022519,0.0000022476, +0.0000022469,0.0000022504,0.0000022559,0.0000022605,0.0000022651, +0.0000022732,0.0000022836,0.0000022911,0.0000022938,0.0000022938, +0.0000022907,0.0000022829,0.0000022759,0.0000022682,0.0000022580, +0.0000022530,0.0000022560,0.0000022634,0.0000022681,0.0000022747, +0.0000022925,0.0000023116,0.0000023192,0.0000023202,0.0000023216, +0.0000023247,0.0000023301,0.0000023411,0.0000023565,0.0000023693, +0.0000023764,0.0000023812,0.0000023863,0.0000023918,0.0000023963, +0.0000023991,0.0000024001,0.0000023991,0.0000023967,0.0000023939, +0.0000023910,0.0000023883,0.0000023854,0.0000023817,0.0000023771, +0.0000023719,0.0000023661,0.0000023604,0.0000023555,0.0000023511, +0.0000023476,0.0000023460,0.0000023452,0.0000023456,0.0000023465, +0.0000023471,0.0000023471,0.0000023463,0.0000023451,0.0000023438, +0.0000023424,0.0000023401,0.0000023367,0.0000023319,0.0000023253, +0.0000023169,0.0000023092,0.0000023033,0.0000022980,0.0000022926, +0.0000022868,0.0000022799,0.0000022733,0.0000022692,0.0000022677, +0.0000022672,0.0000022664,0.0000022650,0.0000022638,0.0000022639, +0.0000022657,0.0000022677,0.0000022683,0.0000022666,0.0000022633, +0.0000022594,0.0000022558,0.0000022530,0.0000022512,0.0000022498, +0.0000022486,0.0000022475,0.0000022465,0.0000022447,0.0000022424, +0.0000022411,0.0000022410,0.0000022422,0.0000022448,0.0000022480, +0.0000022498,0.0000022496,0.0000022479,0.0000022460,0.0000022443, +0.0000022425,0.0000022414,0.0000022421,0.0000022451,0.0000022497, +0.0000022534,0.0000022557,0.0000022579,0.0000022577,0.0000022526, +0.0000022450,0.0000022368,0.0000022280,0.0000022199,0.0000022140, +0.0000022112,0.0000022094,0.0000022067,0.0000022028,0.0000021982, +0.0000021937,0.0000021901,0.0000021877,0.0000021868,0.0000021868, +0.0000021871,0.0000021870,0.0000021863,0.0000021853,0.0000021837, +0.0000021811,0.0000021770,0.0000021718,0.0000021661,0.0000021599, +0.0000021540,0.0000021478,0.0000021409,0.0000021353,0.0000021336, +0.0000021349,0.0000021373,0.0000021387,0.0000021391,0.0000021390, +0.0000021369,0.0000021335,0.0000021294,0.0000021263,0.0000021256, +0.0000021283,0.0000021335,0.0000021423,0.0000021517,0.0000021598, +0.0000021665,0.0000021725,0.0000021779,0.0000021821,0.0000021855, +0.0000021886,0.0000021906,0.0000021904,0.0000021880,0.0000021849, +0.0000021825,0.0000021821,0.0000021853,0.0000021922,0.0000021996, +0.0000022060,0.0000022109,0.0000022143,0.0000022160,0.0000022153, +0.0000022149,0.0000022168,0.0000022213,0.0000022264,0.0000022320, +0.0000022375,0.0000022397,0.0000022369,0.0000022285,0.0000022157, +0.0000022021,0.0000021979,0.0000022055,0.0000022324,0.0000022685, +0.0000023000,0.0000023161,0.0000023207,0.0000023252,0.0000023267, +0.0000023237,0.0000023179,0.0000023101,0.0000023028,0.0000022998, +0.0000023002,0.0000023035,0.0000023085,0.0000023119,0.0000023122, +0.0000023112,0.0000023102,0.0000023092,0.0000023065,0.0000023019, +0.0000022973,0.0000022944,0.0000022929,0.0000022928,0.0000022940, +0.0000022968,0.0000023005,0.0000023042,0.0000023074,0.0000023104, +0.0000023143,0.0000023182,0.0000023216,0.0000023252,0.0000023286, +0.0000023317,0.0000023343,0.0000023365,0.0000023384,0.0000023404, +0.0000023427,0.0000023449,0.0000023461,0.0000023465,0.0000023476, +0.0000023485,0.0000023497,0.0000023512,0.0000023529,0.0000023439, +0.0000023463,0.0000023490,0.0000023514,0.0000023532,0.0000023542, +0.0000023546,0.0000023553,0.0000023559,0.0000023544,0.0000023491, +0.0000023429,0.0000023402,0.0000023435,0.0000023505,0.0000023585, +0.0000023644,0.0000023676,0.0000023686,0.0000023670,0.0000023629, +0.0000023594,0.0000023583,0.0000023588,0.0000023599,0.0000023614, +0.0000023628,0.0000023635,0.0000023617,0.0000023575,0.0000023487, +0.0000023366,0.0000023249,0.0000023175,0.0000023154,0.0000023163, +0.0000023175,0.0000023193,0.0000023235,0.0000023305,0.0000023392, +0.0000023471,0.0000023525,0.0000023558,0.0000023585,0.0000023613, +0.0000023638,0.0000023656,0.0000023684,0.0000023687,0.0000023608, +0.0000023505,0.0000023484,0.0000023497,0.0000023476,0.0000023433, +0.0000023433,0.0000023490,0.0000023560,0.0000023613,0.0000023647, +0.0000023665,0.0000023668,0.0000023662,0.0000023638,0.0000023602, +0.0000023575,0.0000023560,0.0000023551,0.0000023537,0.0000023519, +0.0000023519,0.0000023551,0.0000023603,0.0000023660,0.0000023730, +0.0000023804,0.0000023861,0.0000023885,0.0000023892,0.0000023905, +0.0000023922,0.0000023921,0.0000023896,0.0000023865,0.0000023842, +0.0000023829,0.0000023805,0.0000023750,0.0000023675,0.0000023593, +0.0000023505,0.0000023434,0.0000023414,0.0000023443,0.0000023504, +0.0000023571,0.0000023635,0.0000023684,0.0000023705,0.0000023710, +0.0000023725,0.0000023753,0.0000023774,0.0000023779,0.0000023764, +0.0000023725,0.0000023672,0.0000023631,0.0000023626,0.0000023682, +0.0000023805,0.0000023936,0.0000024035,0.0000024099,0.0000024123, +0.0000024114,0.0000024088,0.0000024047,0.0000023987,0.0000023911, +0.0000023822,0.0000023735,0.0000023654,0.0000023600,0.0000023602, +0.0000023677,0.0000023784,0.0000023896,0.0000024021,0.0000024129, +0.0000024194,0.0000024224,0.0000024215,0.0000024189,0.0000024246, +0.0000024493,0.0000024723,0.0000024822,0.0000024863,0.0000024946, +0.0000025067,0.0000025189,0.0000025299,0.0000025357,0.0000025353, +0.0000025316,0.0000025253,0.0000025185,0.0000025137,0.0000025100, +0.0000025074,0.0000025067,0.0000025063,0.0000025032,0.0000024956, +0.0000024849,0.0000024763,0.0000024742,0.0000024782,0.0000024835, +0.0000024852,0.0000024803,0.0000024668,0.0000024455,0.0000024227, +0.0000024034,0.0000023820,0.0000023564,0.0000023398,0.0000023364, +0.0000023362,0.0000023380,0.0000023420,0.0000023453,0.0000023455, +0.0000023443,0.0000023425,0.0000023410,0.0000023406,0.0000023409, +0.0000023412,0.0000023424,0.0000023458,0.0000023498,0.0000023517, +0.0000023511,0.0000023487,0.0000023476,0.0000023512,0.0000023606, +0.0000023740,0.0000023880,0.0000023997,0.0000024091,0.0000024179, +0.0000024267,0.0000024345,0.0000024404,0.0000024443,0.0000024471, +0.0000024498,0.0000024531,0.0000024564,0.0000024591,0.0000024606, +0.0000024608,0.0000024606,0.0000024600,0.0000024597,0.0000024597, +0.0000024601,0.0000024607,0.0000024616,0.0000024633,0.0000024661, +0.0000024700,0.0000024747,0.0000024796,0.0000024845,0.0000024892, +0.0000024937,0.0000024983,0.0000025028,0.0000025067,0.0000025098, +0.0000025127,0.0000025156,0.0000025180,0.0000025192,0.0000025187, +0.0000025170,0.0000025143,0.0000025122,0.0000025123,0.0000025137, +0.0000025137,0.0000025092,0.0000025016,0.0000024941,0.0000024870, +0.0000024798,0.0000024735,0.0000024695,0.0000024668,0.0000024632, +0.0000024571,0.0000024515,0.0000024500,0.0000024524,0.0000024593, +0.0000024657,0.0000024669,0.0000024635,0.0000024571,0.0000024473, +0.0000024327,0.0000024182,0.0000024099,0.0000024039,0.0000023946, +0.0000023833,0.0000023740,0.0000023691,0.0000023686,0.0000023702, +0.0000023697,0.0000023648,0.0000023567,0.0000023491,0.0000023452, +0.0000023458,0.0000023486,0.0000023536,0.0000023603,0.0000023686, +0.0000023775,0.0000023861,0.0000023935,0.0000023983,0.0000024012, +0.0000024044,0.0000024087,0.0000024123,0.0000024133,0.0000024108, +0.0000024054,0.0000024009,0.0000024008,0.0000024066,0.0000024169, +0.0000024274,0.0000024390,0.0000024564,0.0000024781,0.0000024951, +0.0000025026,0.0000025043,0.0000025064,0.0000025131,0.0000025266, +0.0000025443,0.0000025602,0.0000025702,0.0000025743,0.0000025745, +0.0000025724,0.0000025692,0.0000025653,0.0000025591,0.0000025537, +0.0000025535,0.0000025567,0.0000025558,0.0000025455,0.0000025255, +0.0000025007,0.0000024805,0.0000024680,0.0000024565,0.0000024403, +0.0000024227,0.0000024090,0.0000024005,0.0000023943,0.0000023872, +0.0000023784,0.0000023707,0.0000023663,0.0000023647,0.0000023653, +0.0000023655,0.0000023633,0.0000023586,0.0000023524,0.0000023457, +0.0000023396,0.0000023361,0.0000023340,0.0000023349,0.0000023409, +0.0000023504,0.0000023601,0.0000023677,0.0000023737,0.0000023814, +0.0000023897,0.0000023991,0.0000024116,0.0000024245,0.0000024303, +0.0000024198,0.0000023986,0.0000023903,0.0000024064,0.0000024331, +0.0000024513,0.0000024649,0.0000024767,0.0000024852,0.0000024890, +0.0000024887,0.0000024848,0.0000024781,0.0000024722,0.0000024666, +0.0000024612,0.0000024567,0.0000024533,0.0000024519,0.0000024508, +0.0000024514,0.0000024538,0.0000024567,0.0000024576,0.0000024566, +0.0000024552,0.0000024552,0.0000024556,0.0000024562,0.0000024575, +0.0000024592,0.0000024606,0.0000024622,0.0000024644,0.0000024674, +0.0000024720,0.0000024769,0.0000024813,0.0000024862,0.0000024905, +0.0000024939,0.0000024968,0.0000024984,0.0000024977,0.0000024956, +0.0000024948,0.0000024960,0.0000024983,0.0000024964,0.0000024863, +0.0000024714,0.0000024577,0.0000024453,0.0000024324,0.0000024200, +0.0000024098,0.0000024036,0.0000023994,0.0000023950,0.0000023894, +0.0000023800,0.0000023682,0.0000023566,0.0000023463,0.0000023396, +0.0000023366,0.0000023360,0.0000023367,0.0000023375,0.0000023374, +0.0000023372,0.0000023366,0.0000023359,0.0000023347,0.0000023316, +0.0000023276,0.0000023244,0.0000023224,0.0000023217,0.0000023215, +0.0000023197,0.0000023154,0.0000023109,0.0000023083,0.0000023070, +0.0000023054,0.0000023025,0.0000022992,0.0000022977,0.0000022994, +0.0000023035,0.0000023057,0.0000023057,0.0000023035,0.0000022989, +0.0000022924,0.0000022865,0.0000022794,0.0000022716,0.0000022637, +0.0000022566,0.0000022511,0.0000022475,0.0000022467,0.0000022474, +0.0000022487,0.0000022502,0.0000022528,0.0000022576,0.0000022624, +0.0000022658,0.0000022691,0.0000022727,0.0000022762,0.0000022774, +0.0000022751,0.0000022731,0.0000022745,0.0000022775,0.0000022773, +0.0000022741,0.0000022714,0.0000022723,0.0000022702,0.0000022617, +0.0000022643,0.0000022847,0.0000023004,0.0000023088,0.0000023114, +0.0000023077,0.0000022985,0.0000022919,0.0000022899,0.0000022900, +0.0000022926,0.0000022973,0.0000023011,0.0000023027,0.0000023039, +0.0000023058,0.0000023070,0.0000023064,0.0000023026,0.0000022936, +0.0000022799,0.0000022649,0.0000022533,0.0000022488,0.0000022512, +0.0000022569,0.0000022630,0.0000022688,0.0000022726,0.0000022709, +0.0000022615,0.0000022512,0.0000022454,0.0000022445,0.0000022468, +0.0000022525,0.0000022610,0.0000022682,0.0000022745,0.0000022869, +0.0000023035,0.0000023162,0.0000023259,0.0000023389,0.0000023570, +0.0000023714,0.0000023724,0.0000023643,0.0000023563,0.0000023555, +0.0000023677,0.0000023825,0.0000023870,0.0000023865,0.0000023891, +0.0000023985,0.0000024195,0.0000024452,0.0000024572,0.0000024723, +0.0000025025,0.0000025236,0.0000025367,0.0000025590,0.0000025833, +0.0000025904,0.0000025787,0.0000025506,0.0000025228,0.0000024958, +0.0000024474,0.0000024142,0.0000024196,0.0000024331,0.0000024310, +0.0000024168,0.0000024021,0.0000023908,0.0000023863,0.0000023927, +0.0000024108,0.0000024202,0.0000024306,0.0000024668,0.0000024889, +0.0000024852,0.0000025351,0.0000025959,0.0000026117,0.0000025893, +0.0000025158,0.0000024815,0.0000024806,0.0000024710,0.0000024271, +0.0000024013,0.0000024030,0.0000024139,0.0000024331,0.0000024484, +0.0000024555,0.0000024540,0.0000024472,0.0000024385,0.0000024296, +0.0000024238,0.0000024223,0.0000024230,0.0000024250,0.0000024263, +0.0000024268,0.0000024282,0.0000024315,0.0000024364,0.0000024420, +0.0000024464,0.0000024464,0.0000024428,0.0000024358,0.0000024275, +0.0000024213,0.0000024142,0.0000024056,0.0000023979,0.0000023919, +0.0000023867,0.0000023840,0.0000023840,0.0000023857,0.0000023870, +0.0000023878,0.0000023888,0.0000023905,0.0000023922,0.0000023933, +0.0000023924,0.0000023894,0.0000023851,0.0000023821,0.0000023825, +0.0000023865,0.0000023918,0.0000023940,0.0000023936,0.0000023938, +0.0000023937,0.0000023908,0.0000023863,0.0000023835,0.0000023835, +0.0000023874,0.0000023940,0.0000024023,0.0000024131,0.0000024230, +0.0000024278,0.0000024306,0.0000024365,0.0000024456,0.0000024536, +0.0000024592,0.0000024666,0.0000024778,0.0000024889,0.0000024963, +0.0000025011,0.0000025043,0.0000025068,0.0000025119,0.0000025199, +0.0000025271,0.0000025303,0.0000025302,0.0000025288,0.0000025281, +0.0000025278,0.0000025282,0.0000025293,0.0000025307,0.0000025316, +0.0000025316,0.0000025305,0.0000025281,0.0000025235,0.0000025168, +0.0000025105,0.0000025083,0.0000025126,0.0000025205,0.0000025273, +0.0000025323,0.0000025373,0.0000025422,0.0000025455,0.0000025469, +0.0000025459,0.0000025414,0.0000025322,0.0000025192,0.0000025062, +0.0000024952,0.0000024836,0.0000024716,0.0000024606,0.0000024475, +0.0000024282,0.0000024066,0.0000023884,0.0000023749,0.0000023643, +0.0000023549,0.0000023451,0.0000023340,0.0000023219,0.0000023105, +0.0000023008,0.0000022937,0.0000022884,0.0000022841,0.0000022807, +0.0000022786,0.0000022784,0.0000022806,0.0000022858,0.0000022940, +0.0000023062,0.0000023219,0.0000023356,0.0000023434,0.0000023475, +0.0000023521,0.0000023585,0.0000023657,0.0000023719,0.0000023757, +0.0000023766,0.0000023757,0.0000023726,0.0000023684,0.0000023649, +0.0000023621,0.0000023550,0.0000023372,0.0000023085,0.0000022759, +0.0000022500,0.0000022365,0.0000022306,0.0000022251,0.0000022184, +0.0000022136,0.0000022129,0.0000022150,0.0000022191,0.0000022264, +0.0000022341,0.0000022376,0.0000022346,0.0000022248,0.0000022173, +0.0000022164,0.0000022225,0.0000022345,0.0000022468,0.0000022548, +0.0000022605,0.0000022709,0.0000022873,0.0000023019,0.0000023106, +0.0000023169,0.0000023245,0.0000023331,0.0000023398,0.0000023434, +0.0000023457,0.0000023475,0.0000023504,0.0000023584,0.0000023700, +0.0000023792,0.0000023835,0.0000023884,0.0000024013,0.0000024189, +0.0000024321,0.0000024381,0.0000024395,0.0000024383,0.0000024325, +0.0000024254,0.0000024259,0.0000024378,0.0000024540,0.0000024633, +0.0000024640,0.0000024601,0.0000024543,0.0000024524,0.0000024563, +0.0000024622,0.0000024676,0.0000024745,0.0000024834,0.0000024900, +0.0000024923,0.0000024920,0.0000024868,0.0000024769,0.0000024664, +0.0000024609,0.0000024618,0.0000024663,0.0000024700,0.0000024698, +0.0000024653,0.0000024606,0.0000024594,0.0000024615,0.0000024658, +0.0000024705,0.0000024760,0.0000024828,0.0000024893,0.0000024934, +0.0000024942,0.0000024926,0.0000024897,0.0000024880,0.0000024879, +0.0000024892,0.0000024921,0.0000024964,0.0000025010,0.0000025055, +0.0000025094,0.0000025121,0.0000025130,0.0000025120,0.0000025099, +0.0000025088,0.0000025096,0.0000025134,0.0000025196,0.0000025268, +0.0000025329,0.0000025366,0.0000025379,0.0000025378,0.0000025346, +0.0000025297,0.0000025261,0.0000025261,0.0000025290,0.0000025314, +0.0000025310,0.0000025291,0.0000025266,0.0000025224,0.0000025177, +0.0000025141,0.0000025106,0.0000025071,0.0000025064,0.0000025103, +0.0000025187,0.0000025271,0.0000025319,0.0000025360,0.0000025410, +0.0000025427,0.0000025402,0.0000025364,0.0000025349,0.0000025367, +0.0000025398,0.0000025457,0.0000025542,0.0000025634,0.0000025730, +0.0000025839,0.0000025957,0.0000026062,0.0000026139,0.0000026195, +0.0000026238,0.0000026273,0.0000026293,0.0000026324,0.0000026349, +0.0000026356,0.0000026347,0.0000026322,0.0000026285,0.0000026232, +0.0000026161,0.0000026075,0.0000025986,0.0000025920,0.0000025890, +0.0000025881,0.0000025865,0.0000025810,0.0000025726,0.0000025666, +0.0000025655,0.0000025662,0.0000025651,0.0000025615,0.0000025565, +0.0000025500,0.0000025398,0.0000025235,0.0000025089,0.0000025051, +0.0000025045,0.0000024986,0.0000024889,0.0000024790,0.0000024704, +0.0000024639,0.0000024603,0.0000024594,0.0000024608,0.0000024644, +0.0000024677,0.0000024690,0.0000024687,0.0000024690,0.0000024716, +0.0000024732,0.0000024699,0.0000024652,0.0000024684,0.0000024858, +0.0000025211,0.0000025696,0.0000026104,0.0000026287,0.0000026328, +0.0000026342,0.0000026383,0.0000026477,0.0000026577,0.0000026629, +0.0000026642,0.0000026646,0.0000026650,0.0000026642,0.0000026620, +0.0000026589,0.0000026557,0.0000026527,0.0000026497,0.0000026463, +0.0000026416,0.0000026377,0.0000026380,0.0000026386,0.0000026338, +0.0000026253,0.0000026138,0.0000025979,0.0000025872,0.0000025882, +0.0000025966,0.0000026073,0.0000026143,0.0000026155,0.0000026142, +0.0000026099,0.0000025991,0.0000025846,0.0000025708,0.0000025496, +0.0000025195,0.0000024975,0.0000024863,0.0000024684,0.0000024347, +0.0000024021,0.0000023841,0.0000023710,0.0000023559,0.0000023385, +0.0000023165,0.0000022918,0.0000022713,0.0000022574,0.0000022503, +0.0000022500,0.0000022543,0.0000022615,0.0000022688,0.0000022740, +0.0000022769,0.0000022785,0.0000022795,0.0000022796,0.0000022788, +0.0000022773,0.0000022744,0.0000022698,0.0000022632,0.0000022551, +0.0000022463,0.0000022370,0.0000022291,0.0000022259,0.0000022284, +0.0000022372,0.0000022480,0.0000022594,0.0000022721,0.0000022836, +0.0000022902,0.0000022918,0.0000022911,0.0000022855,0.0000022772, +0.0000022691,0.0000022585,0.0000022501,0.0000022499,0.0000022567, +0.0000022637,0.0000022670,0.0000022752,0.0000022943,0.0000023117, +0.0000023186,0.0000023201,0.0000023219,0.0000023248,0.0000023294, +0.0000023379,0.0000023503,0.0000023622,0.0000023706,0.0000023755, +0.0000023786,0.0000023805,0.0000023818,0.0000023821,0.0000023809, +0.0000023786,0.0000023760,0.0000023734,0.0000023717,0.0000023702, +0.0000023681,0.0000023650,0.0000023612,0.0000023576,0.0000023544, +0.0000023517,0.0000023489,0.0000023466,0.0000023436,0.0000023405, +0.0000023380,0.0000023372,0.0000023376,0.0000023384,0.0000023391, +0.0000023393,0.0000023391,0.0000023382,0.0000023360,0.0000023325, +0.0000023278,0.0000023214,0.0000023128,0.0000023039,0.0000022970, +0.0000022915,0.0000022871,0.0000022832,0.0000022786,0.0000022732, +0.0000022689,0.0000022673,0.0000022675,0.0000022677,0.0000022671, +0.0000022658,0.0000022648,0.0000022651,0.0000022667,0.0000022681, +0.0000022679,0.0000022660,0.0000022632,0.0000022607,0.0000022580, +0.0000022556,0.0000022536,0.0000022519,0.0000022503,0.0000022489, +0.0000022471,0.0000022444,0.0000022419,0.0000022409,0.0000022413, +0.0000022436,0.0000022471,0.0000022499,0.0000022503,0.0000022490, +0.0000022469,0.0000022452,0.0000022440,0.0000022435,0.0000022443, +0.0000022468,0.0000022502,0.0000022531,0.0000022545,0.0000022560, +0.0000022566,0.0000022536,0.0000022471,0.0000022397,0.0000022304, +0.0000022211,0.0000022145,0.0000022110,0.0000022090,0.0000022063, +0.0000022021,0.0000021977,0.0000021938,0.0000021908,0.0000021891, +0.0000021885,0.0000021887,0.0000021888,0.0000021889,0.0000021888, +0.0000021886,0.0000021877,0.0000021864,0.0000021841,0.0000021807, +0.0000021758,0.0000021698,0.0000021626,0.0000021553,0.0000021479, +0.0000021399,0.0000021332,0.0000021304,0.0000021313,0.0000021340, +0.0000021368,0.0000021391,0.0000021411,0.0000021427,0.0000021423, +0.0000021397,0.0000021353,0.0000021311,0.0000021291,0.0000021294, +0.0000021330,0.0000021394,0.0000021463,0.0000021525,0.0000021591, +0.0000021666,0.0000021735,0.0000021789,0.0000021828,0.0000021852, +0.0000021858,0.0000021848,0.0000021826,0.0000021798,0.0000021788, +0.0000021816,0.0000021879,0.0000021946,0.0000022010,0.0000022065, +0.0000022104,0.0000022126,0.0000022125,0.0000022114,0.0000022127, +0.0000022177,0.0000022233,0.0000022283,0.0000022337,0.0000022381, +0.0000022386,0.0000022340,0.0000022252,0.0000022128,0.0000022010, +0.0000021995,0.0000022149,0.0000022469,0.0000022825,0.0000023083, +0.0000023179,0.0000023218,0.0000023256,0.0000023246,0.0000023200, +0.0000023133,0.0000023056,0.0000023011,0.0000023004,0.0000023015, +0.0000023040,0.0000023070,0.0000023099,0.0000023118,0.0000023121, +0.0000023111,0.0000023076,0.0000023024,0.0000022973,0.0000022934, +0.0000022910,0.0000022904,0.0000022914,0.0000022938,0.0000022965, +0.0000022994,0.0000023024,0.0000023055,0.0000023096,0.0000023143, +0.0000023188,0.0000023230,0.0000023271,0.0000023310,0.0000023343, +0.0000023373,0.0000023400,0.0000023423,0.0000023444,0.0000023457, +0.0000023465,0.0000023459,0.0000023447,0.0000023435,0.0000023430, +0.0000023427,0.0000023426,0.0000023377,0.0000023366,0.0000023372, +0.0000023391,0.0000023417,0.0000023447,0.0000023471,0.0000023489, +0.0000023504,0.0000023508,0.0000023487,0.0000023435,0.0000023376, +0.0000023344,0.0000023350,0.0000023416,0.0000023505,0.0000023590, +0.0000023656,0.0000023701,0.0000023699,0.0000023709,0.0000023699, +0.0000023691,0.0000023682,0.0000023663,0.0000023654,0.0000023609, +0.0000023523,0.0000023403,0.0000023274,0.0000023164,0.0000023102, +0.0000023092,0.0000023109,0.0000023123,0.0000023141,0.0000023189, +0.0000023278,0.0000023381,0.0000023468,0.0000023532,0.0000023574, +0.0000023601,0.0000023621,0.0000023640,0.0000023657,0.0000023673, +0.0000023698,0.0000023686,0.0000023592,0.0000023496,0.0000023481, +0.0000023496,0.0000023473,0.0000023423,0.0000023415,0.0000023466, +0.0000023538,0.0000023591,0.0000023622,0.0000023636,0.0000023632, +0.0000023613,0.0000023583,0.0000023549,0.0000023528,0.0000023521, +0.0000023518,0.0000023508,0.0000023493,0.0000023485,0.0000023508, +0.0000023551,0.0000023606,0.0000023682,0.0000023762,0.0000023826, +0.0000023868,0.0000023888,0.0000023900,0.0000023913,0.0000023921, +0.0000023910,0.0000023881,0.0000023847,0.0000023828,0.0000023821, +0.0000023799,0.0000023749,0.0000023679,0.0000023599,0.0000023514, +0.0000023443,0.0000023426,0.0000023454,0.0000023519,0.0000023589, +0.0000023644,0.0000023677,0.0000023684,0.0000023681,0.0000023690, +0.0000023716,0.0000023739,0.0000023750,0.0000023742,0.0000023712, +0.0000023668,0.0000023631,0.0000023626,0.0000023679,0.0000023793, +0.0000023905,0.0000023986,0.0000024028,0.0000024032,0.0000024022, +0.0000023996,0.0000023954,0.0000023895,0.0000023820,0.0000023747, +0.0000023679,0.0000023613,0.0000023578,0.0000023597,0.0000023679, +0.0000023785,0.0000023891,0.0000024006,0.0000024108,0.0000024175, +0.0000024208,0.0000024205,0.0000024184,0.0000024232,0.0000024473, +0.0000024712,0.0000024820,0.0000024868,0.0000024952,0.0000025088, +0.0000025219,0.0000025316,0.0000025359,0.0000025349,0.0000025303, +0.0000025239,0.0000025184,0.0000025153,0.0000025131,0.0000025120, +0.0000025121,0.0000025114,0.0000025082,0.0000025013,0.0000024916, +0.0000024843,0.0000024831,0.0000024860,0.0000024881,0.0000024865, +0.0000024768,0.0000024581,0.0000024346,0.0000024133,0.0000023929, +0.0000023676,0.0000023448,0.0000023364,0.0000023357,0.0000023354, +0.0000023362,0.0000023398,0.0000023431,0.0000023435,0.0000023422, +0.0000023398,0.0000023377,0.0000023369,0.0000023371,0.0000023373, +0.0000023384,0.0000023421,0.0000023473,0.0000023511,0.0000023513, +0.0000023497,0.0000023472,0.0000023461,0.0000023498,0.0000023592, +0.0000023726,0.0000023867,0.0000023994,0.0000024105,0.0000024206, +0.0000024299,0.0000024376,0.0000024428,0.0000024455,0.0000024471, +0.0000024485,0.0000024500,0.0000024510,0.0000024511,0.0000024507, +0.0000024503,0.0000024499,0.0000024496,0.0000024494,0.0000024499, +0.0000024511,0.0000024536,0.0000024578,0.0000024635,0.0000024698, +0.0000024760,0.0000024812,0.0000024853,0.0000024887,0.0000024918, +0.0000024955,0.0000024996,0.0000025035,0.0000025069,0.0000025099, +0.0000025125,0.0000025143,0.0000025147,0.0000025141,0.0000025129, +0.0000025114,0.0000025103,0.0000025106,0.0000025125,0.0000025133, +0.0000025105,0.0000025030,0.0000024948,0.0000024883,0.0000024828, +0.0000024774,0.0000024727,0.0000024691,0.0000024656,0.0000024606, +0.0000024551,0.0000024520,0.0000024526,0.0000024573,0.0000024635, +0.0000024669,0.0000024656,0.0000024602,0.0000024512,0.0000024375, +0.0000024223,0.0000024122,0.0000024071,0.0000024010,0.0000023920, +0.0000023822,0.0000023735,0.0000023693,0.0000023702,0.0000023733, +0.0000023744,0.0000023708,0.0000023633,0.0000023561,0.0000023521, +0.0000023515,0.0000023528,0.0000023548,0.0000023580,0.0000023626, +0.0000023699,0.0000023797,0.0000023895,0.0000023965,0.0000024006, +0.0000024046,0.0000024095,0.0000024132,0.0000024136,0.0000024101, +0.0000024051,0.0000024028,0.0000024046,0.0000024101,0.0000024173, +0.0000024253,0.0000024362,0.0000024532,0.0000024756,0.0000024954, +0.0000025047,0.0000025081,0.0000025126,0.0000025212,0.0000025340, +0.0000025479,0.0000025589,0.0000025646,0.0000025652,0.0000025635, +0.0000025615,0.0000025583,0.0000025537,0.0000025521,0.0000025558, +0.0000025594,0.0000025562,0.0000025394,0.0000025126,0.0000024878, +0.0000024716,0.0000024570,0.0000024374,0.0000024187,0.0000024063, +0.0000023990,0.0000023927,0.0000023835,0.0000023712,0.0000023603, +0.0000023556,0.0000023567,0.0000023621,0.0000023682,0.0000023715, +0.0000023718,0.0000023673,0.0000023592,0.0000023497,0.0000023399, +0.0000023316,0.0000023243,0.0000023188,0.0000023176,0.0000023230, +0.0000023313,0.0000023412,0.0000023528,0.0000023656,0.0000023773, +0.0000023867,0.0000023959,0.0000024060,0.0000024166,0.0000024239, +0.0000024225,0.0000024084,0.0000023910,0.0000023899,0.0000024127, +0.0000024382,0.0000024549,0.0000024692,0.0000024807,0.0000024877, +0.0000024895,0.0000024868,0.0000024821,0.0000024756,0.0000024695, +0.0000024638,0.0000024589,0.0000024561,0.0000024542,0.0000024520, +0.0000024507,0.0000024510,0.0000024530,0.0000024535,0.0000024511, +0.0000024469,0.0000024446,0.0000024447,0.0000024459,0.0000024472, +0.0000024489,0.0000024521,0.0000024546,0.0000024562,0.0000024584, +0.0000024630,0.0000024689,0.0000024749,0.0000024799,0.0000024838, +0.0000024875,0.0000024908,0.0000024920,0.0000024910,0.0000024882, +0.0000024879,0.0000024890,0.0000024855,0.0000024769,0.0000024645, +0.0000024531,0.0000024442,0.0000024358,0.0000024280,0.0000024219, +0.0000024155,0.0000024081,0.0000023991,0.0000023889,0.0000023768, +0.0000023641,0.0000023533,0.0000023456,0.0000023416,0.0000023411, +0.0000023426,0.0000023439,0.0000023430,0.0000023405,0.0000023388, +0.0000023376,0.0000023368,0.0000023362,0.0000023350,0.0000023323, +0.0000023290,0.0000023261,0.0000023236,0.0000023206,0.0000023162, +0.0000023119,0.0000023091,0.0000023078,0.0000023063,0.0000023032, +0.0000023000,0.0000022993,0.0000023012,0.0000023041,0.0000023061, +0.0000023064,0.0000023063,0.0000023041,0.0000022997,0.0000022926, +0.0000022839,0.0000022736,0.0000022620,0.0000022516,0.0000022438, +0.0000022386,0.0000022363,0.0000022362,0.0000022381,0.0000022410, +0.0000022436,0.0000022473,0.0000022533,0.0000022603,0.0000022664, +0.0000022700,0.0000022728,0.0000022763,0.0000022776,0.0000022743, +0.0000022701,0.0000022695,0.0000022722,0.0000022726,0.0000022702, +0.0000022679,0.0000022692,0.0000022690,0.0000022626,0.0000022618, +0.0000022781,0.0000022963,0.0000023059,0.0000023103,0.0000023095, +0.0000023013,0.0000022927,0.0000022893,0.0000022890,0.0000022895, +0.0000022916,0.0000022940,0.0000022954,0.0000022961,0.0000022976, +0.0000022997,0.0000023007,0.0000022996,0.0000022930,0.0000022806, +0.0000022656,0.0000022531,0.0000022475,0.0000022483,0.0000022540, +0.0000022605,0.0000022664,0.0000022703,0.0000022701,0.0000022629, +0.0000022527,0.0000022457,0.0000022435,0.0000022453,0.0000022510, +0.0000022582,0.0000022648,0.0000022708,0.0000022805,0.0000022950, +0.0000023079,0.0000023164,0.0000023250,0.0000023393,0.0000023586, +0.0000023715,0.0000023701,0.0000023622,0.0000023555,0.0000023563, +0.0000023697,0.0000023835,0.0000023870,0.0000023862,0.0000023879, +0.0000023956,0.0000024156,0.0000024404,0.0000024521,0.0000024657, +0.0000024969,0.0000025196,0.0000025316,0.0000025525,0.0000025739, +0.0000025808,0.0000025741,0.0000025485,0.0000025206,0.0000024923, +0.0000024443,0.0000024135,0.0000024206,0.0000024351,0.0000024345, +0.0000024191,0.0000024019,0.0000023888,0.0000023821,0.0000023862, +0.0000024021,0.0000024166,0.0000024230,0.0000024540,0.0000024887, +0.0000024857,0.0000025126,0.0000025821,0.0000026126,0.0000026069, +0.0000025366,0.0000024849,0.0000024775,0.0000024756,0.0000024421, +0.0000024056,0.0000024009,0.0000024083,0.0000024258,0.0000024441, +0.0000024545,0.0000024548,0.0000024481,0.0000024381,0.0000024286, +0.0000024229,0.0000024221,0.0000024240,0.0000024284,0.0000024311, +0.0000024315,0.0000024318,0.0000024335,0.0000024372,0.0000024424, +0.0000024469,0.0000024470,0.0000024438,0.0000024375,0.0000024299, +0.0000024229,0.0000024150,0.0000024063,0.0000023983,0.0000023922, +0.0000023870,0.0000023837,0.0000023826,0.0000023826,0.0000023821, +0.0000023812,0.0000023812,0.0000023828,0.0000023845,0.0000023852, +0.0000023833,0.0000023792,0.0000023756,0.0000023745,0.0000023765, +0.0000023817,0.0000023866,0.0000023864,0.0000023828,0.0000023812, +0.0000023811,0.0000023799,0.0000023780,0.0000023775,0.0000023787, +0.0000023825,0.0000023881,0.0000023947,0.0000024038,0.0000024138, +0.0000024209,0.0000024251,0.0000024306,0.0000024396,0.0000024496, +0.0000024568,0.0000024618,0.0000024690,0.0000024793,0.0000024891, +0.0000024964,0.0000025010,0.0000025031,0.0000025044,0.0000025076, +0.0000025137,0.0000025200,0.0000025238,0.0000025254,0.0000025257, +0.0000025259,0.0000025265,0.0000025279,0.0000025298,0.0000025309, +0.0000025308,0.0000025290,0.0000025256,0.0000025211,0.0000025154, +0.0000025095,0.0000025045,0.0000025043,0.0000025091,0.0000025156, +0.0000025211,0.0000025259,0.0000025308,0.0000025344,0.0000025351, +0.0000025317,0.0000025239,0.0000025136,0.0000025033,0.0000024936, +0.0000024831,0.0000024712,0.0000024598,0.0000024469,0.0000024281, +0.0000024052,0.0000023847,0.0000023693,0.0000023574,0.0000023473, +0.0000023378,0.0000023281,0.0000023185,0.0000023103,0.0000023043, +0.0000022996,0.0000022941,0.0000022904,0.0000022852,0.0000022805, +0.0000022750,0.0000022701,0.0000022678,0.0000022686,0.0000022725, +0.0000022789,0.0000022891,0.0000023052,0.0000023231,0.0000023354, +0.0000023411,0.0000023448,0.0000023495,0.0000023553,0.0000023604, +0.0000023628,0.0000023624,0.0000023603,0.0000023579,0.0000023568, +0.0000023546,0.0000023454,0.0000023256,0.0000022972,0.0000022672, +0.0000022448,0.0000022338,0.0000022287,0.0000022230,0.0000022161, +0.0000022119,0.0000022120,0.0000022134,0.0000022159,0.0000022227, +0.0000022322,0.0000022381,0.0000022362,0.0000022267,0.0000022187, +0.0000022176,0.0000022227,0.0000022338,0.0000022468,0.0000022566, +0.0000022627,0.0000022714,0.0000022870,0.0000023035,0.0000023135, +0.0000023194,0.0000023257,0.0000023341,0.0000023431,0.0000023492, +0.0000023517,0.0000023523,0.0000023530,0.0000023563,0.0000023637, +0.0000023718,0.0000023769,0.0000023796,0.0000023865,0.0000024025, +0.0000024206,0.0000024320,0.0000024376,0.0000024389,0.0000024358, +0.0000024283,0.0000024241,0.0000024295,0.0000024442,0.0000024591, +0.0000024661,0.0000024653,0.0000024595,0.0000024531,0.0000024519, +0.0000024556,0.0000024609,0.0000024668,0.0000024752,0.0000024838, +0.0000024881,0.0000024890,0.0000024884,0.0000024826,0.0000024716, +0.0000024592,0.0000024507,0.0000024496,0.0000024529,0.0000024583, +0.0000024608,0.0000024592,0.0000024561,0.0000024550,0.0000024568, +0.0000024610,0.0000024654,0.0000024698,0.0000024755,0.0000024822, +0.0000024878,0.0000024902,0.0000024895,0.0000024876,0.0000024860, +0.0000024856,0.0000024867,0.0000024887,0.0000024911,0.0000024937, +0.0000024965,0.0000024995,0.0000025025,0.0000025042,0.0000025040, +0.0000025023,0.0000025012,0.0000025023,0.0000025068,0.0000025136, +0.0000025210,0.0000025274,0.0000025313,0.0000025327,0.0000025324, +0.0000025288,0.0000025237,0.0000025203,0.0000025207,0.0000025244, +0.0000025280,0.0000025286,0.0000025272,0.0000025256,0.0000025230, +0.0000025190,0.0000025149,0.0000025113,0.0000025079,0.0000025066, +0.0000025091,0.0000025155,0.0000025233,0.0000025285,0.0000025327, +0.0000025387,0.0000025431,0.0000025442,0.0000025418,0.0000025397, +0.0000025392,0.0000025396,0.0000025431,0.0000025481,0.0000025560, +0.0000025647,0.0000025741,0.0000025850,0.0000025962,0.0000026054, +0.0000026115,0.0000026161,0.0000026214,0.0000026273,0.0000026328, +0.0000026362,0.0000026367,0.0000026354,0.0000026328,0.0000026289, +0.0000026235,0.0000026169,0.0000026088,0.0000026002,0.0000025933, +0.0000025889,0.0000025860,0.0000025824,0.0000025763,0.0000025687, +0.0000025637,0.0000025635,0.0000025645,0.0000025631,0.0000025588, +0.0000025535,0.0000025463,0.0000025340,0.0000025170,0.0000025063, +0.0000025045,0.0000024992,0.0000024868,0.0000024738,0.0000024635, +0.0000024557,0.0000024507,0.0000024478,0.0000024474,0.0000024498, +0.0000024538,0.0000024566,0.0000024577,0.0000024591,0.0000024618, +0.0000024637,0.0000024616,0.0000024584,0.0000024622,0.0000024778, +0.0000025090,0.0000025551,0.0000025991,0.0000026235,0.0000026315, +0.0000026334,0.0000026347,0.0000026399,0.0000026496,0.0000026582, +0.0000026622,0.0000026631,0.0000026632,0.0000026620,0.0000026588, +0.0000026556,0.0000026535,0.0000026516,0.0000026493,0.0000026470, +0.0000026438,0.0000026388,0.0000026357,0.0000026364,0.0000026354, +0.0000026287,0.0000026207,0.0000026107,0.0000025971,0.0000025893, +0.0000025917,0.0000026004,0.0000026092,0.0000026137,0.0000026136, +0.0000026122,0.0000026090,0.0000025993,0.0000025857,0.0000025714, +0.0000025473,0.0000025157,0.0000024941,0.0000024827,0.0000024623, +0.0000024273,0.0000023980,0.0000023842,0.0000023723,0.0000023573, +0.0000023372,0.0000023093,0.0000022811,0.0000022615,0.0000022487, +0.0000022392,0.0000022335,0.0000022334,0.0000022377,0.0000022449, +0.0000022531,0.0000022606,0.0000022658,0.0000022684,0.0000022694, +0.0000022702,0.0000022711,0.0000022709,0.0000022680,0.0000022620, +0.0000022539,0.0000022448,0.0000022351,0.0000022253,0.0000022172, +0.0000022132,0.0000022149,0.0000022230,0.0000022365,0.0000022528, +0.0000022693,0.0000022818,0.0000022879,0.0000022890,0.0000022866, +0.0000022794,0.0000022711,0.0000022603,0.0000022489,0.0000022455, +0.0000022497,0.0000022585,0.0000022645,0.0000022677,0.0000022776, +0.0000022968,0.0000023140,0.0000023208,0.0000023221,0.0000023230, +0.0000023250,0.0000023288,0.0000023354,0.0000023439,0.0000023521, +0.0000023586,0.0000023630,0.0000023652,0.0000023657,0.0000023652, +0.0000023644,0.0000023630,0.0000023600,0.0000023570,0.0000023555, +0.0000023552,0.0000023548,0.0000023539,0.0000023531,0.0000023529, +0.0000023528,0.0000023515,0.0000023487,0.0000023434,0.0000023369, +0.0000023305,0.0000023277,0.0000023284,0.0000023308,0.0000023332, +0.0000023347,0.0000023351,0.0000023341,0.0000023322,0.0000023295, +0.0000023262,0.0000023224,0.0000023172,0.0000023097,0.0000023001, +0.0000022923,0.0000022861,0.0000022816,0.0000022789,0.0000022767, +0.0000022736,0.0000022696,0.0000022670,0.0000022668,0.0000022676, +0.0000022684,0.0000022682,0.0000022672,0.0000022662,0.0000022656, +0.0000022654,0.0000022650,0.0000022638,0.0000022620,0.0000022605, +0.0000022591,0.0000022575,0.0000022559,0.0000022546,0.0000022528, +0.0000022510,0.0000022494,0.0000022468,0.0000022440,0.0000022424, +0.0000022422,0.0000022436,0.0000022464,0.0000022495,0.0000022510, +0.0000022504,0.0000022484,0.0000022464,0.0000022455,0.0000022458, +0.0000022473,0.0000022495,0.0000022521,0.0000022538,0.0000022543, +0.0000022545,0.0000022545,0.0000022526,0.0000022481,0.0000022418, +0.0000022328,0.0000022227,0.0000022155,0.0000022112,0.0000022081, +0.0000022050,0.0000022017,0.0000021988,0.0000021962,0.0000021944, +0.0000021928,0.0000021920,0.0000021916,0.0000021911,0.0000021908, +0.0000021906,0.0000021906,0.0000021906,0.0000021902,0.0000021890, +0.0000021873,0.0000021847,0.0000021807,0.0000021752,0.0000021678, +0.0000021593,0.0000021501,0.0000021409,0.0000021332,0.0000021290, +0.0000021287,0.0000021311,0.0000021346,0.0000021386,0.0000021427, +0.0000021457,0.0000021473,0.0000021475,0.0000021449,0.0000021403, +0.0000021359,0.0000021333,0.0000021331,0.0000021351,0.0000021373, +0.0000021403,0.0000021462,0.0000021553,0.0000021650,0.0000021724, +0.0000021771,0.0000021796,0.0000021810,0.0000021813,0.0000021805, +0.0000021778,0.0000021764,0.0000021785,0.0000021838,0.0000021896, +0.0000021957,0.0000022014,0.0000022052,0.0000022072,0.0000022078, +0.0000022076,0.0000022084,0.0000022129,0.0000022193,0.0000022246, +0.0000022296,0.0000022349,0.0000022377,0.0000022363,0.0000022308, +0.0000022224,0.0000022104,0.0000022015,0.0000022044,0.0000022265, +0.0000022609,0.0000022939,0.0000023135,0.0000023194,0.0000023229, +0.0000023247,0.0000023221,0.0000023168,0.0000023094,0.0000023030, +0.0000023008,0.0000023012,0.0000023025,0.0000023046,0.0000023081, +0.0000023120,0.0000023140,0.0000023133,0.0000023097,0.0000023050, +0.0000022998,0.0000022941,0.0000022895,0.0000022874,0.0000022874, +0.0000022888,0.0000022912,0.0000022935,0.0000022954,0.0000022973, +0.0000023009,0.0000023059,0.0000023112,0.0000023164,0.0000023214, +0.0000023258,0.0000023295,0.0000023327,0.0000023358,0.0000023390, +0.0000023420,0.0000023445,0.0000023460,0.0000023462,0.0000023458, +0.0000023452,0.0000023443,0.0000023424,0.0000023401,0.0000023365, +0.0000023339,0.0000023315,0.0000023303,0.0000023305,0.0000023328, +0.0000023363,0.0000023400,0.0000023428,0.0000023443,0.0000023446, +0.0000023432,0.0000023394,0.0000023347,0.0000023308,0.0000023301, +0.0000023340,0.0000023412,0.0000023501,0.0000023580,0.0000023638, +0.0000023671,0.0000023682,0.0000023676,0.0000023650,0.0000023603, +0.0000023533,0.0000023436,0.0000023317,0.0000023204,0.0000023116, +0.0000023063,0.0000023051,0.0000023060,0.0000023068,0.0000023076, +0.0000023125,0.0000023218,0.0000023344,0.0000023454,0.0000023527, +0.0000023579,0.0000023612,0.0000023627,0.0000023637,0.0000023652, +0.0000023672,0.0000023695,0.0000023708,0.0000023670,0.0000023567, +0.0000023481,0.0000023474,0.0000023495,0.0000023475,0.0000023425, +0.0000023411,0.0000023441,0.0000023500,0.0000023546,0.0000023574, +0.0000023585,0.0000023579,0.0000023556,0.0000023519,0.0000023485, +0.0000023469,0.0000023470,0.0000023476,0.0000023474,0.0000023465, +0.0000023457,0.0000023473,0.0000023509,0.0000023555,0.0000023623, +0.0000023700,0.0000023769,0.0000023827,0.0000023867,0.0000023887, +0.0000023895,0.0000023903,0.0000023906,0.0000023891,0.0000023863, +0.0000023835,0.0000023821,0.0000023813,0.0000023794,0.0000023753, +0.0000023691,0.0000023613,0.0000023523,0.0000023456,0.0000023443, +0.0000023471,0.0000023536,0.0000023598,0.0000023640,0.0000023655, +0.0000023651,0.0000023640,0.0000023647,0.0000023671,0.0000023700, +0.0000023719,0.0000023716,0.0000023697,0.0000023669,0.0000023640, +0.0000023639,0.0000023692,0.0000023784,0.0000023876,0.0000023936, +0.0000023957,0.0000023958,0.0000023945,0.0000023918,0.0000023879, +0.0000023819,0.0000023756,0.0000023700,0.0000023643,0.0000023588, +0.0000023571,0.0000023598,0.0000023680,0.0000023784,0.0000023887, +0.0000023990,0.0000024084,0.0000024150,0.0000024186,0.0000024195, +0.0000024186,0.0000024219,0.0000024443,0.0000024689,0.0000024815, +0.0000024869,0.0000024952,0.0000025103,0.0000025245,0.0000025329, +0.0000025360,0.0000025345,0.0000025291,0.0000025226,0.0000025181, +0.0000025161,0.0000025153,0.0000025156,0.0000025161,0.0000025155, +0.0000025129,0.0000025068,0.0000024976,0.0000024904,0.0000024881, +0.0000024886,0.0000024883,0.0000024830,0.0000024694,0.0000024484, +0.0000024261,0.0000024052,0.0000023808,0.0000023544,0.0000023385, +0.0000023358,0.0000023356,0.0000023347,0.0000023346,0.0000023374, +0.0000023405,0.0000023411,0.0000023395,0.0000023364,0.0000023334, +0.0000023319,0.0000023319,0.0000023321,0.0000023329,0.0000023361, +0.0000023415,0.0000023466,0.0000023493,0.0000023497,0.0000023484, +0.0000023462,0.0000023460,0.0000023491,0.0000023567,0.0000023692, +0.0000023844,0.0000023991,0.0000024111,0.0000024207,0.0000024292, +0.0000024363,0.0000024409,0.0000024431,0.0000024437,0.0000024437, +0.0000024430,0.0000024417,0.0000024405,0.0000024400,0.0000024399, +0.0000024393,0.0000024386,0.0000024386,0.0000024395,0.0000024427, +0.0000024487,0.0000024570,0.0000024663,0.0000024752,0.0000024817, +0.0000024859,0.0000024887,0.0000024911,0.0000024938,0.0000024968, +0.0000024998,0.0000025032,0.0000025068,0.0000025096,0.0000025106, +0.0000025101,0.0000025090,0.0000025085,0.0000025087,0.0000025090, +0.0000025098,0.0000025117,0.0000025130,0.0000025114,0.0000025046, +0.0000024957,0.0000024891,0.0000024855,0.0000024818,0.0000024770, +0.0000024721,0.0000024683,0.0000024641,0.0000024588,0.0000024542, +0.0000024533,0.0000024562,0.0000024618,0.0000024662,0.0000024663, +0.0000024623,0.0000024543,0.0000024410,0.0000024244,0.0000024119, +0.0000024069,0.0000024047,0.0000023996,0.0000023915,0.0000023822, +0.0000023746,0.0000023719,0.0000023732,0.0000023772,0.0000023801, +0.0000023788,0.0000023745,0.0000023687,0.0000023633,0.0000023592, +0.0000023569,0.0000023569,0.0000023577,0.0000023604,0.0000023662, +0.0000023755,0.0000023856,0.0000023944,0.0000024012,0.0000024063, +0.0000024102,0.0000024124,0.0000024120,0.0000024097,0.0000024075, +0.0000024072,0.0000024089,0.0000024122,0.0000024173,0.0000024238, +0.0000024336,0.0000024517,0.0000024769,0.0000024984,0.0000025090, +0.0000025147,0.0000025217,0.0000025309,0.0000025407,0.0000025494, +0.0000025544,0.0000025552,0.0000025544,0.0000025527,0.0000025508, +0.0000025496,0.0000025516,0.0000025572,0.0000025595,0.0000025495, +0.0000025259,0.0000024992,0.0000024784,0.0000024599,0.0000024381, +0.0000024171,0.0000024037,0.0000023972,0.0000023916,0.0000023821, +0.0000023684,0.0000023560,0.0000023519,0.0000023549,0.0000023626, +0.0000023732,0.0000023819,0.0000023878,0.0000023900,0.0000023877, +0.0000023804,0.0000023688,0.0000023541,0.0000023397,0.0000023276, +0.0000023176,0.0000023124,0.0000023121,0.0000023126,0.0000023137, +0.0000023220,0.0000023351,0.0000023498,0.0000023632,0.0000023751, +0.0000023863,0.0000023959,0.0000024051,0.0000024142,0.0000024188, +0.0000024098,0.0000023936,0.0000023801,0.0000023909,0.0000024211, +0.0000024459,0.0000024627,0.0000024755,0.0000024824,0.0000024847, +0.0000024840,0.0000024803,0.0000024749,0.0000024681,0.0000024611, +0.0000024562,0.0000024534,0.0000024508,0.0000024481,0.0000024444, +0.0000024420,0.0000024427,0.0000024448,0.0000024438,0.0000024401, +0.0000024377,0.0000024382,0.0000024394,0.0000024403,0.0000024425, +0.0000024457,0.0000024476,0.0000024480,0.0000024487,0.0000024519, +0.0000024583,0.0000024654,0.0000024716,0.0000024768,0.0000024822, +0.0000024864,0.0000024880,0.0000024849,0.0000024803,0.0000024768, +0.0000024720,0.0000024657,0.0000024601,0.0000024538,0.0000024478, +0.0000024427,0.0000024381,0.0000024332,0.0000024264,0.0000024168, +0.0000024046,0.0000023916,0.0000023781,0.0000023655,0.0000023553, +0.0000023484,0.0000023458,0.0000023462,0.0000023483,0.0000023489, +0.0000023472,0.0000023442,0.0000023422,0.0000023413,0.0000023400, +0.0000023379,0.0000023365,0.0000023351,0.0000023325,0.0000023286, +0.0000023238,0.0000023178,0.0000023121,0.0000023094,0.0000023088, +0.0000023079,0.0000023046,0.0000023001,0.0000022983,0.0000022996, +0.0000023019,0.0000023033,0.0000023036,0.0000023030,0.0000023023, +0.0000023011,0.0000022976,0.0000022893,0.0000022765,0.0000022624, +0.0000022486,0.0000022383,0.0000022330,0.0000022301,0.0000022290, +0.0000022301,0.0000022331,0.0000022370,0.0000022406,0.0000022444, +0.0000022499,0.0000022580,0.0000022675,0.0000022742,0.0000022773, +0.0000022801,0.0000022809,0.0000022762,0.0000022694,0.0000022669, +0.0000022677,0.0000022670,0.0000022642,0.0000022624,0.0000022644, +0.0000022659,0.0000022617,0.0000022609,0.0000022738,0.0000022927, +0.0000023037,0.0000023083,0.0000023087,0.0000023033,0.0000022943, +0.0000022896,0.0000022887,0.0000022879,0.0000022869,0.0000022864, +0.0000022863,0.0000022866,0.0000022879,0.0000022902,0.0000022929, +0.0000022936,0.0000022900,0.0000022796,0.0000022653,0.0000022528, +0.0000022469,0.0000022469,0.0000022516,0.0000022582,0.0000022643, +0.0000022681,0.0000022680,0.0000022626,0.0000022534,0.0000022461, +0.0000022438,0.0000022451,0.0000022501,0.0000022573,0.0000022633, +0.0000022690,0.0000022776,0.0000022899,0.0000023012,0.0000023086, +0.0000023149,0.0000023242,0.0000023409,0.0000023611,0.0000023698, +0.0000023663,0.0000023596,0.0000023548,0.0000023581,0.0000023725, +0.0000023849,0.0000023877,0.0000023864,0.0000023876,0.0000023944, +0.0000024139,0.0000024372,0.0000024476,0.0000024603,0.0000024922, +0.0000025166,0.0000025264,0.0000025462,0.0000025683,0.0000025765, +0.0000025709,0.0000025446,0.0000025175,0.0000024875,0.0000024402, +0.0000024142,0.0000024227,0.0000024375,0.0000024366,0.0000024211, +0.0000024022,0.0000023877,0.0000023792,0.0000023813,0.0000023943, +0.0000024121,0.0000024180,0.0000024416,0.0000024828,0.0000024902, +0.0000024944,0.0000025630,0.0000026100,0.0000026156,0.0000025623, +0.0000024942,0.0000024760,0.0000024759,0.0000024573,0.0000024155, +0.0000023999,0.0000024037,0.0000024172,0.0000024370,0.0000024514, +0.0000024552,0.0000024504,0.0000024396,0.0000024289,0.0000024232, +0.0000024229,0.0000024252,0.0000024308,0.0000024356,0.0000024375, +0.0000024372,0.0000024367,0.0000024380,0.0000024418,0.0000024469, +0.0000024473,0.0000024449,0.0000024399,0.0000024340,0.0000024272, +0.0000024193,0.0000024103,0.0000024013,0.0000023944,0.0000023889, +0.0000023847,0.0000023824,0.0000023808,0.0000023786,0.0000023761, +0.0000023750,0.0000023759,0.0000023775,0.0000023782,0.0000023762, +0.0000023725,0.0000023701,0.0000023702,0.0000023730,0.0000023778, +0.0000023804,0.0000023768,0.0000023711,0.0000023696,0.0000023708, +0.0000023714,0.0000023711,0.0000023717,0.0000023738,0.0000023770, +0.0000023805,0.0000023849,0.0000023919,0.0000024019,0.0000024113, +0.0000024175,0.0000024228,0.0000024308,0.0000024414,0.0000024512, +0.0000024573,0.0000024618,0.0000024688,0.0000024788,0.0000024884, +0.0000024955,0.0000024996,0.0000025009,0.0000025004,0.0000025007, +0.0000025039,0.0000025088,0.0000025136,0.0000025171,0.0000025197, +0.0000025215,0.0000025232,0.0000025250,0.0000025266,0.0000025274, +0.0000025268,0.0000025243,0.0000025204,0.0000025158,0.0000025110, +0.0000025063,0.0000025029,0.0000025020,0.0000025032,0.0000025063, +0.0000025104,0.0000025142,0.0000025165,0.0000025158,0.0000025121, +0.0000025061,0.0000024994,0.0000024916,0.0000024817,0.0000024699, +0.0000024586,0.0000024462,0.0000024288,0.0000024063,0.0000023839, +0.0000023657,0.0000023515,0.0000023400,0.0000023298,0.0000023212, +0.0000023151,0.0000023119,0.0000023110,0.0000023113,0.0000023111, +0.0000023100,0.0000023083,0.0000023050,0.0000022992,0.0000022901, +0.0000022779,0.0000022670,0.0000022598,0.0000022588,0.0000022622, +0.0000022678,0.0000022760,0.0000022902,0.0000023095,0.0000023260, +0.0000023352,0.0000023396,0.0000023431,0.0000023469,0.0000023498, +0.0000023513,0.0000023514,0.0000023508,0.0000023498,0.0000023460, +0.0000023343,0.0000023133,0.0000022862,0.0000022593,0.0000022402, +0.0000022313,0.0000022271,0.0000022214,0.0000022143,0.0000022105, +0.0000022108,0.0000022119,0.0000022133,0.0000022190,0.0000022285, +0.0000022369,0.0000022379,0.0000022292,0.0000022198,0.0000022186, +0.0000022232,0.0000022325,0.0000022456,0.0000022572,0.0000022647, +0.0000022719,0.0000022858,0.0000023034,0.0000023162,0.0000023237, +0.0000023299,0.0000023371,0.0000023457,0.0000023531,0.0000023566, +0.0000023567,0.0000023560,0.0000023567,0.0000023604,0.0000023661, +0.0000023708,0.0000023734,0.0000023759,0.0000023852,0.0000024040, +0.0000024221,0.0000024320,0.0000024361,0.0000024359,0.0000024307, +0.0000024241,0.0000024247,0.0000024350,0.0000024501,0.0000024629, +0.0000024683,0.0000024662,0.0000024583,0.0000024519,0.0000024519, +0.0000024559,0.0000024609,0.0000024673,0.0000024762,0.0000024834, +0.0000024857,0.0000024860,0.0000024846,0.0000024781,0.0000024664, +0.0000024527,0.0000024414,0.0000024365,0.0000024380,0.0000024425, +0.0000024462,0.0000024467,0.0000024452,0.0000024449,0.0000024479, +0.0000024534,0.0000024587,0.0000024628,0.0000024673,0.0000024730, +0.0000024790,0.0000024829,0.0000024840,0.0000024831,0.0000024817, +0.0000024812,0.0000024821,0.0000024836,0.0000024853,0.0000024866, +0.0000024878,0.0000024894,0.0000024915,0.0000024927,0.0000024924, +0.0000024910,0.0000024904,0.0000024922,0.0000024972,0.0000025044, +0.0000025123,0.0000025193,0.0000025240,0.0000025261,0.0000025262, +0.0000025232,0.0000025186,0.0000025155,0.0000025162,0.0000025204, +0.0000025251,0.0000025267,0.0000025257,0.0000025245,0.0000025230, +0.0000025198,0.0000025151,0.0000025107,0.0000025075,0.0000025066, +0.0000025087,0.0000025139,0.0000025212,0.0000025262,0.0000025296, +0.0000025355,0.0000025425,0.0000025463,0.0000025464,0.0000025460, +0.0000025466,0.0000025469,0.0000025473,0.0000025497,0.0000025552, +0.0000025611,0.0000025682,0.0000025769,0.0000025866,0.0000025960, +0.0000026037,0.0000026092,0.0000026144,0.0000026211,0.0000026283, +0.0000026331,0.0000026342,0.0000026333,0.0000026308,0.0000026271, +0.0000026217,0.0000026150,0.0000026070,0.0000025991,0.0000025929, +0.0000025887,0.0000025852,0.0000025804,0.0000025739,0.0000025674, +0.0000025634,0.0000025636,0.0000025645,0.0000025624,0.0000025572, +0.0000025510,0.0000025429,0.0000025288,0.0000025126,0.0000025046, +0.0000025003,0.0000024878,0.0000024709,0.0000024580,0.0000024490, +0.0000024428,0.0000024390,0.0000024377,0.0000024388,0.0000024430, +0.0000024476,0.0000024499,0.0000024508,0.0000024524,0.0000024537, +0.0000024519,0.0000024497,0.0000024550,0.0000024700,0.0000024980, +0.0000025409,0.0000025865,0.0000026155,0.0000026275,0.0000026318, +0.0000026332,0.0000026351,0.0000026413,0.0000026501,0.0000026573, +0.0000026610,0.0000026619,0.0000026617,0.0000026594,0.0000026553, +0.0000026522,0.0000026505,0.0000026485,0.0000026464,0.0000026447, +0.0000026413,0.0000026358,0.0000026334,0.0000026335,0.0000026299, +0.0000026219,0.0000026151,0.0000026070,0.0000025959,0.0000025908, +0.0000025937,0.0000026019,0.0000026088,0.0000026110,0.0000026105, +0.0000026099,0.0000026081,0.0000025990,0.0000025860,0.0000025705, +0.0000025435,0.0000025116,0.0000024918,0.0000024799,0.0000024567, +0.0000024221,0.0000023973,0.0000023865,0.0000023767,0.0000023613, +0.0000023364,0.0000023035,0.0000022758,0.0000022587,0.0000022454, +0.0000022332,0.0000022243,0.0000022197,0.0000022187,0.0000022215, +0.0000022274,0.0000022356,0.0000022443,0.0000022517,0.0000022569, +0.0000022603,0.0000022626,0.0000022634,0.0000022618,0.0000022573, +0.0000022500,0.0000022412,0.0000022319,0.0000022233,0.0000022172, +0.0000022124,0.0000022085,0.0000022075,0.0000022122,0.0000022251, +0.0000022454,0.0000022658,0.0000022789,0.0000022843,0.0000022846, +0.0000022809,0.0000022737,0.0000022633,0.0000022501,0.0000022419, +0.0000022429,0.0000022508,0.0000022604,0.0000022670,0.0000022714, +0.0000022805,0.0000022984,0.0000023153,0.0000023224,0.0000023241, +0.0000023242,0.0000023256,0.0000023287,0.0000023328,0.0000023371, +0.0000023408,0.0000023441,0.0000023464,0.0000023471,0.0000023465, +0.0000023454,0.0000023443,0.0000023427,0.0000023411,0.0000023414, +0.0000023432,0.0000023452,0.0000023470,0.0000023490,0.0000023505, +0.0000023499,0.0000023467,0.0000023415,0.0000023348,0.0000023276, +0.0000023220,0.0000023209,0.0000023235,0.0000023262,0.0000023279, +0.0000023286,0.0000023279,0.0000023257,0.0000023233,0.0000023212, +0.0000023194,0.0000023168,0.0000023123,0.0000023053,0.0000022963, +0.0000022882,0.0000022822,0.0000022775,0.0000022746,0.0000022735, +0.0000022727,0.0000022707,0.0000022677,0.0000022658,0.0000022659, +0.0000022674,0.0000022689,0.0000022692,0.0000022682,0.0000022661, +0.0000022635,0.0000022606,0.0000022581,0.0000022562,0.0000022552, +0.0000022551,0.0000022553,0.0000022553,0.0000022548,0.0000022537, +0.0000022520,0.0000022504,0.0000022485,0.0000022462,0.0000022443, +0.0000022439,0.0000022448,0.0000022466,0.0000022489,0.0000022508, +0.0000022513,0.0000022501,0.0000022481,0.0000022470,0.0000022475, +0.0000022500,0.0000022527,0.0000022546,0.0000022558,0.0000022556, +0.0000022545,0.0000022531,0.0000022504,0.0000022470,0.0000022430, +0.0000022354,0.0000022251,0.0000022172,0.0000022124,0.0000022083, +0.0000022041,0.0000022010,0.0000022000,0.0000021995,0.0000021992, +0.0000021977,0.0000021958,0.0000021940,0.0000021925,0.0000021916, +0.0000021920,0.0000021929,0.0000021938,0.0000021948,0.0000021954, +0.0000021951,0.0000021936,0.0000021909,0.0000021871,0.0000021815, +0.0000021742,0.0000021651,0.0000021551,0.0000021450,0.0000021362, +0.0000021301,0.0000021281,0.0000021296,0.0000021337,0.0000021391, +0.0000021439,0.0000021477,0.0000021505,0.0000021516,0.0000021501, +0.0000021460,0.0000021420,0.0000021397,0.0000021390,0.0000021386, +0.0000021372,0.0000021362,0.0000021381,0.0000021451,0.0000021555, +0.0000021650,0.0000021709,0.0000021737,0.0000021758,0.0000021774, +0.0000021777,0.0000021754,0.0000021737,0.0000021755,0.0000021803, +0.0000021851,0.0000021905,0.0000021961,0.0000021996,0.0000022006, +0.0000022010,0.0000022021,0.0000022038,0.0000022074,0.0000022135, +0.0000022198,0.0000022253,0.0000022310,0.0000022356,0.0000022365, +0.0000022338,0.0000022280,0.0000022202,0.0000022093,0.0000022042, +0.0000022116,0.0000022391,0.0000022746,0.0000023032,0.0000023165, +0.0000023206,0.0000023239,0.0000023238,0.0000023198,0.0000023139, +0.0000023066,0.0000023019,0.0000023014,0.0000023025,0.0000023046, +0.0000023078,0.0000023124,0.0000023157,0.0000023161,0.0000023135, +0.0000023092,0.0000023036,0.0000022964,0.0000022889,0.0000022833, +0.0000022805,0.0000022799,0.0000022805,0.0000022824,0.0000022846, +0.0000022870,0.0000022906,0.0000022954,0.0000023002,0.0000023049, +0.0000023097,0.0000023144,0.0000023187,0.0000023226,0.0000023262, +0.0000023295,0.0000023327,0.0000023354,0.0000023373,0.0000023385, +0.0000023394,0.0000023399,0.0000023399,0.0000023395,0.0000023384, +0.0000023269,0.0000023274,0.0000023272,0.0000023263,0.0000023253, +0.0000023252,0.0000023265,0.0000023291,0.0000023319,0.0000023343, +0.0000023361,0.0000023375,0.0000023377,0.0000023361,0.0000023327, +0.0000023299,0.0000023292,0.0000023297,0.0000023341,0.0000023396, +0.0000023449,0.0000023484,0.0000023495,0.0000023484,0.0000023453, +0.0000023399,0.0000023326,0.0000023244,0.0000023164,0.0000023101, +0.0000023058,0.0000023035,0.0000023030,0.0000023020,0.0000023012, +0.0000023042,0.0000023136,0.0000023273,0.0000023405,0.0000023504, +0.0000023570,0.0000023611,0.0000023628,0.0000023629,0.0000023626, +0.0000023640,0.0000023675,0.0000023711,0.0000023709,0.0000023639, +0.0000023535,0.0000023462,0.0000023462,0.0000023489,0.0000023475, +0.0000023433,0.0000023416,0.0000023432,0.0000023468,0.0000023499, +0.0000023516,0.0000023517,0.0000023503,0.0000023476,0.0000023439, +0.0000023406,0.0000023392,0.0000023398,0.0000023411,0.0000023415, +0.0000023410,0.0000023407,0.0000023428,0.0000023471,0.0000023520, +0.0000023578,0.0000023639,0.0000023695,0.0000023752,0.0000023805, +0.0000023842,0.0000023863,0.0000023874,0.0000023879,0.0000023879, +0.0000023866,0.0000023844,0.0000023825,0.0000023810,0.0000023796, +0.0000023783,0.0000023762,0.0000023707,0.0000023615,0.0000023528, +0.0000023478,0.0000023465,0.0000023487,0.0000023540,0.0000023593, +0.0000023621,0.0000023625,0.0000023611,0.0000023597,0.0000023599, +0.0000023621,0.0000023655,0.0000023680,0.0000023691,0.0000023692, +0.0000023682,0.0000023666,0.0000023670,0.0000023718,0.0000023786, +0.0000023851,0.0000023886,0.0000023901,0.0000023902,0.0000023888, +0.0000023866,0.0000023830,0.0000023776,0.0000023725,0.0000023679, +0.0000023627,0.0000023585,0.0000023579,0.0000023608,0.0000023682, +0.0000023783,0.0000023884,0.0000023977,0.0000024058,0.0000024116, +0.0000024158,0.0000024187,0.0000024188,0.0000024205,0.0000024400, +0.0000024652,0.0000024804,0.0000024867,0.0000024948,0.0000025109, +0.0000025262,0.0000025340,0.0000025361,0.0000025342,0.0000025280, +0.0000025213,0.0000025174,0.0000025163,0.0000025164,0.0000025175, +0.0000025183,0.0000025181,0.0000025161,0.0000025097,0.0000025005, +0.0000024930,0.0000024890,0.0000024876,0.0000024850,0.0000024765, +0.0000024604,0.0000024405,0.0000024204,0.0000023969,0.0000023683, +0.0000023450,0.0000023354,0.0000023350,0.0000023354,0.0000023341, +0.0000023335,0.0000023353,0.0000023380,0.0000023381,0.0000023359, +0.0000023322,0.0000023283,0.0000023255,0.0000023247,0.0000023248, +0.0000023257,0.0000023287,0.0000023338,0.0000023396,0.0000023442, +0.0000023473,0.0000023480,0.0000023472,0.0000023463,0.0000023466, +0.0000023480,0.0000023543,0.0000023671,0.0000023840,0.0000023995, +0.0000024109,0.0000024195,0.0000024269,0.0000024331,0.0000024372, +0.0000024386,0.0000024384,0.0000024368,0.0000024347,0.0000024328, +0.0000024314,0.0000024305,0.0000024300,0.0000024301,0.0000024309, +0.0000024326,0.0000024359,0.0000024416,0.0000024495,0.0000024597, +0.0000024703,0.0000024787,0.0000024843,0.0000024879,0.0000024905, +0.0000024926,0.0000024943,0.0000024962,0.0000024993,0.0000025034, +0.0000025065,0.0000025070,0.0000025059,0.0000025046,0.0000025045, +0.0000025058,0.0000025078,0.0000025095,0.0000025110,0.0000025118, +0.0000025109,0.0000025055,0.0000024972,0.0000024907,0.0000024877, +0.0000024853,0.0000024809,0.0000024754,0.0000024708,0.0000024672, +0.0000024625,0.0000024572,0.0000024546,0.0000024560,0.0000024604, +0.0000024645,0.0000024653,0.0000024629,0.0000024565,0.0000024439, +0.0000024255,0.0000024098,0.0000024035,0.0000024047,0.0000024055, +0.0000024022,0.0000023943,0.0000023859,0.0000023794,0.0000023769, +0.0000023794,0.0000023836,0.0000023879,0.0000023898,0.0000023878, +0.0000023819,0.0000023738,0.0000023661,0.0000023612,0.0000023601, +0.0000023610,0.0000023633,0.0000023664,0.0000023721,0.0000023812, +0.0000023925,0.0000024019,0.0000024069,0.0000024088,0.0000024102, +0.0000024115,0.0000024125,0.0000024128,0.0000024126,0.0000024124, +0.0000024131,0.0000024161,0.0000024223,0.0000024345,0.0000024546, +0.0000024801,0.0000025017,0.0000025151,0.0000025238,0.0000025319, +0.0000025393,0.0000025445,0.0000025468,0.0000025475,0.0000025475, +0.0000025467,0.0000025461,0.0000025472,0.0000025507,0.0000025542, +0.0000025508,0.0000025338,0.0000025103,0.0000024886,0.0000024671, +0.0000024424,0.0000024190,0.0000024044,0.0000023974,0.0000023919, +0.0000023823,0.0000023686,0.0000023572,0.0000023542,0.0000023597, +0.0000023680,0.0000023747,0.0000023799,0.0000023842,0.0000023886, +0.0000023918,0.0000023933,0.0000023923,0.0000023870,0.0000023773, +0.0000023622,0.0000023458,0.0000023318,0.0000023237,0.0000023200, +0.0000023170,0.0000023149,0.0000023153,0.0000023197,0.0000023273, +0.0000023365,0.0000023436,0.0000023553,0.0000023672,0.0000023778, +0.0000023878,0.0000023976,0.0000024061,0.0000024078,0.0000023972, +0.0000023818,0.0000023792,0.0000023999,0.0000024331,0.0000024564, +0.0000024696,0.0000024765,0.0000024797,0.0000024801,0.0000024777, +0.0000024721,0.0000024655,0.0000024597,0.0000024561,0.0000024542, +0.0000024519,0.0000024479,0.0000024413,0.0000024348,0.0000024317, +0.0000024312,0.0000024323,0.0000024310,0.0000024304,0.0000024321, +0.0000024343,0.0000024371,0.0000024410,0.0000024442,0.0000024456, +0.0000024452,0.0000024440,0.0000024448,0.0000024480,0.0000024550, +0.0000024640,0.0000024721,0.0000024785,0.0000024819,0.0000024800, +0.0000024732,0.0000024661,0.0000024601,0.0000024549,0.0000024525, +0.0000024510,0.0000024484,0.0000024446,0.0000024404,0.0000024359, +0.0000024292,0.0000024198,0.0000024067,0.0000023921,0.0000023775, +0.0000023649,0.0000023559,0.0000023512,0.0000023498,0.0000023501, +0.0000023510,0.0000023507,0.0000023492,0.0000023478,0.0000023464, +0.0000023452,0.0000023438,0.0000023413,0.0000023385,0.0000023371, +0.0000023350,0.0000023298,0.0000023219,0.0000023138,0.0000023080, +0.0000023068,0.0000023076,0.0000023065,0.0000023021,0.0000022980, +0.0000022972,0.0000022980,0.0000022980,0.0000022974,0.0000022972, +0.0000022975,0.0000022980,0.0000022978,0.0000022918,0.0000022787, +0.0000022621,0.0000022474,0.0000022360,0.0000022285,0.0000022265, +0.0000022269,0.0000022274,0.0000022285,0.0000022319,0.0000022362, +0.0000022406,0.0000022441,0.0000022487,0.0000022564,0.0000022675, +0.0000022773,0.0000022827,0.0000022865,0.0000022867,0.0000022805, +0.0000022706,0.0000022656,0.0000022649,0.0000022621,0.0000022579, +0.0000022566,0.0000022591,0.0000022612,0.0000022592,0.0000022601, +0.0000022719,0.0000022906,0.0000023021,0.0000023060,0.0000023065, +0.0000023032,0.0000022961,0.0000022901,0.0000022879,0.0000022865, +0.0000022836,0.0000022807,0.0000022789,0.0000022785,0.0000022795, +0.0000022815,0.0000022843,0.0000022863,0.0000022854,0.0000022773, +0.0000022639,0.0000022519,0.0000022462,0.0000022465,0.0000022502, +0.0000022561,0.0000022620,0.0000022659,0.0000022657,0.0000022607, +0.0000022525,0.0000022460,0.0000022442,0.0000022463,0.0000022509, +0.0000022569,0.0000022636,0.0000022700,0.0000022779,0.0000022880, +0.0000022971,0.0000023026,0.0000023066,0.0000023126,0.0000023243, +0.0000023446,0.0000023634,0.0000023670,0.0000023621,0.0000023570, +0.0000023554,0.0000023615,0.0000023761,0.0000023867,0.0000023888, +0.0000023872,0.0000023882,0.0000023949,0.0000024143,0.0000024347, +0.0000024430,0.0000024555,0.0000024881,0.0000025143,0.0000025219, +0.0000025384,0.0000025617,0.0000025719,0.0000025657,0.0000025382, +0.0000025135,0.0000024809,0.0000024350,0.0000024163,0.0000024262, +0.0000024389,0.0000024377,0.0000024229,0.0000024028,0.0000023872, +0.0000023780,0.0000023774,0.0000023879,0.0000024055,0.0000024143, +0.0000024306,0.0000024725,0.0000024943,0.0000024886,0.0000025400, +0.0000026020,0.0000026176,0.0000025893,0.0000025112,0.0000024762, +0.0000024745,0.0000024683,0.0000024306,0.0000024014,0.0000024001, +0.0000024091,0.0000024273,0.0000024452,0.0000024542,0.0000024526, +0.0000024430,0.0000024307,0.0000024245,0.0000024244,0.0000024268, +0.0000024325,0.0000024390,0.0000024427,0.0000024427,0.0000024411, +0.0000024394,0.0000024406,0.0000024450,0.0000024469,0.0000024453, +0.0000024418,0.0000024386,0.0000024335,0.0000024263,0.0000024171, +0.0000024068,0.0000023982,0.0000023919,0.0000023874,0.0000023836, +0.0000023803,0.0000023771,0.0000023739,0.0000023715,0.0000023718, +0.0000023732,0.0000023742,0.0000023731,0.0000023701,0.0000023675, +0.0000023667,0.0000023686,0.0000023721,0.0000023722,0.0000023664, +0.0000023615,0.0000023617,0.0000023637,0.0000023647,0.0000023651, +0.0000023659,0.0000023678,0.0000023702,0.0000023722,0.0000023744, +0.0000023789,0.0000023876,0.0000023988,0.0000024078,0.0000024140, +0.0000024208,0.0000024307,0.0000024420,0.0000024504,0.0000024553, +0.0000024602,0.0000024677,0.0000024773,0.0000024865,0.0000024932, +0.0000024965,0.0000024968,0.0000024944,0.0000024918,0.0000024918, +0.0000024950,0.0000024997,0.0000025052,0.0000025098,0.0000025133, +0.0000025157,0.0000025176,0.0000025193,0.0000025203,0.0000025200, +0.0000025179,0.0000025149,0.0000025119,0.0000025092,0.0000025059, +0.0000025020,0.0000024981,0.0000024964,0.0000024971,0.0000024989, +0.0000025005,0.0000025003,0.0000024987,0.0000024952,0.0000024893, +0.0000024800,0.0000024687,0.0000024572,0.0000024447,0.0000024282, +0.0000024069,0.0000023844,0.0000023646,0.0000023483,0.0000023350, +0.0000023244,0.0000023168,0.0000023135,0.0000023139,0.0000023167, +0.0000023204,0.0000023228,0.0000023232,0.0000023221,0.0000023201, +0.0000023173,0.0000023136,0.0000023085,0.0000023002,0.0000022861, +0.0000022681,0.0000022549,0.0000022517,0.0000022541,0.0000022601, +0.0000022673,0.0000022791,0.0000022974,0.0000023162,0.0000023286, +0.0000023349,0.0000023386,0.0000023416,0.0000023438,0.0000023447, +0.0000023443,0.0000023421,0.0000023360,0.0000023223,0.0000023008, +0.0000022759,0.0000022523,0.0000022361,0.0000022291,0.0000022256, +0.0000022199,0.0000022132,0.0000022097,0.0000022096,0.0000022099, +0.0000022113,0.0000022163,0.0000022243,0.0000022333,0.0000022371, +0.0000022323,0.0000022212,0.0000022185,0.0000022236,0.0000022313, +0.0000022429,0.0000022560,0.0000022653,0.0000022722,0.0000022835, +0.0000023012,0.0000023173,0.0000023283,0.0000023361,0.0000023423, +0.0000023487,0.0000023552,0.0000023588,0.0000023588,0.0000023572, +0.0000023565,0.0000023585,0.0000023624,0.0000023661,0.0000023686, +0.0000023698,0.0000023727,0.0000023849,0.0000024058,0.0000024230, +0.0000024308,0.0000024322,0.0000024298,0.0000024245,0.0000024231, +0.0000024292,0.0000024413,0.0000024549,0.0000024658,0.0000024691, +0.0000024656,0.0000024570,0.0000024515,0.0000024524,0.0000024567, +0.0000024616,0.0000024679,0.0000024764,0.0000024821,0.0000024830, +0.0000024829,0.0000024809,0.0000024741,0.0000024623,0.0000024482, +0.0000024357,0.0000024275,0.0000024258,0.0000024280,0.0000024310, +0.0000024318,0.0000024313,0.0000024313,0.0000024345,0.0000024404, +0.0000024463,0.0000024506,0.0000024543,0.0000024586,0.0000024635, +0.0000024679,0.0000024705,0.0000024712,0.0000024707,0.0000024704, +0.0000024711,0.0000024730,0.0000024753,0.0000024767,0.0000024770, +0.0000024772,0.0000024776,0.0000024776,0.0000024764,0.0000024747, +0.0000024741,0.0000024765,0.0000024824,0.0000024906,0.0000024998, +0.0000025079,0.0000025137,0.0000025171,0.0000025184,0.0000025172, +0.0000025141,0.0000025118,0.0000025125,0.0000025167,0.0000025220, +0.0000025245,0.0000025242,0.0000025232,0.0000025223,0.0000025196, +0.0000025145,0.0000025087,0.0000025052,0.0000025051,0.0000025080, +0.0000025135,0.0000025210,0.0000025261,0.0000025292,0.0000025343, +0.0000025418,0.0000025478,0.0000025506,0.0000025524,0.0000025555, +0.0000025582,0.0000025583,0.0000025581,0.0000025595,0.0000025628, +0.0000025679,0.0000025737,0.0000025800,0.0000025872,0.0000025953, +0.0000026026,0.0000026081,0.0000026138,0.0000026200,0.0000026252, +0.0000026275,0.0000026273,0.0000026252,0.0000026220,0.0000026173, +0.0000026110,0.0000026033,0.0000025960,0.0000025912,0.0000025884, +0.0000025852,0.0000025799,0.0000025734,0.0000025671,0.0000025640, +0.0000025642,0.0000025649,0.0000025620,0.0000025558,0.0000025495, +0.0000025406,0.0000025250,0.0000025091,0.0000025011,0.0000024913, +0.0000024725,0.0000024551,0.0000024445,0.0000024368,0.0000024311, +0.0000024289,0.0000024298,0.0000024342,0.0000024406,0.0000024450, +0.0000024464,0.0000024466,0.0000024456,0.0000024429,0.0000024409, +0.0000024465,0.0000024623,0.0000024877,0.0000025271,0.0000025735, +0.0000026062,0.0000026209,0.0000026281,0.0000026314,0.0000026323, +0.0000026352,0.0000026416,0.0000026488,0.0000026551,0.0000026591, +0.0000026605,0.0000026600,0.0000026573,0.0000026540,0.0000026518, +0.0000026498,0.0000026469,0.0000026447,0.0000026430,0.0000026386, +0.0000026329,0.0000026309,0.0000026298,0.0000026234,0.0000026146, +0.0000026090,0.0000026026,0.0000025938,0.0000025906,0.0000025945, +0.0000026019,0.0000026069,0.0000026081,0.0000026085,0.0000026095, +0.0000026076,0.0000025979,0.0000025851,0.0000025679,0.0000025379, +0.0000025072,0.0000024903,0.0000024778,0.0000024520,0.0000024184, +0.0000023978,0.0000023898,0.0000023809,0.0000023633,0.0000023331, +0.0000022989,0.0000022751,0.0000022598,0.0000022440,0.0000022283, +0.0000022170,0.0000022107,0.0000022075,0.0000022066,0.0000022075, +0.0000022105,0.0000022175,0.0000022276,0.0000022381,0.0000022465, +0.0000022522,0.0000022547,0.0000022541,0.0000022504,0.0000022441, +0.0000022356,0.0000022263,0.0000022185,0.0000022152,0.0000022140, +0.0000022115,0.0000022069,0.0000022039,0.0000022053,0.0000022169, +0.0000022389,0.0000022608,0.0000022742,0.0000022794,0.0000022796, +0.0000022754,0.0000022666,0.0000022535,0.0000022422,0.0000022393, +0.0000022436,0.0000022530,0.0000022644,0.0000022718,0.0000022759, +0.0000022825,0.0000022966,0.0000023119,0.0000023221,0.0000023257, +0.0000023273,0.0000023285,0.0000023300,0.0000023313,0.0000023321, +0.0000023329,0.0000023343,0.0000023360,0.0000023365,0.0000023357, +0.0000023343,0.0000023336,0.0000023338,0.0000023350,0.0000023368, +0.0000023383,0.0000023401,0.0000023414,0.0000023410,0.0000023387, +0.0000023351,0.0000023312,0.0000023275,0.0000023232,0.0000023187, +0.0000023168,0.0000023180,0.0000023191,0.0000023195,0.0000023189, +0.0000023172,0.0000023151,0.0000023141,0.0000023142,0.0000023137, +0.0000023113,0.0000023063,0.0000022991,0.0000022906,0.0000022825, +0.0000022779,0.0000022743,0.0000022718,0.0000022706,0.0000022706, +0.0000022706,0.0000022691,0.0000022663,0.0000022643,0.0000022647, +0.0000022670,0.0000022690,0.0000022692,0.0000022672,0.0000022636, +0.0000022587,0.0000022540,0.0000022507,0.0000022487,0.0000022484, +0.0000022493,0.0000022508,0.0000022522,0.0000022528,0.0000022521, +0.0000022506,0.0000022488,0.0000022473,0.0000022459,0.0000022452, +0.0000022457,0.0000022471,0.0000022488,0.0000022503,0.0000022513, +0.0000022512,0.0000022498,0.0000022484,0.0000022485,0.0000022516, +0.0000022554,0.0000022573,0.0000022579,0.0000022576,0.0000022561, +0.0000022537,0.0000022502,0.0000022461,0.0000022427,0.0000022372, +0.0000022275,0.0000022187,0.0000022136,0.0000022089,0.0000022039, +0.0000022009,0.0000022005,0.0000022012,0.0000022021,0.0000022011, +0.0000021987,0.0000021957,0.0000021939,0.0000021935,0.0000021953, +0.0000021984,0.0000022014,0.0000022035,0.0000022048,0.0000022058, +0.0000022058,0.0000022044,0.0000022014,0.0000021970,0.0000021906, +0.0000021820,0.0000021718,0.0000021609,0.0000021503,0.0000021414, +0.0000021347,0.0000021309,0.0000021310,0.0000021344,0.0000021390, +0.0000021437,0.0000021485,0.0000021523,0.0000021539,0.0000021529, +0.0000021487,0.0000021445,0.0000021436,0.0000021447,0.0000021453, +0.0000021431,0.0000021395,0.0000021380,0.0000021397,0.0000021462, +0.0000021556,0.0000021635,0.0000021680,0.0000021706,0.0000021731, +0.0000021742,0.0000021729,0.0000021711,0.0000021724,0.0000021769, +0.0000021814,0.0000021860,0.0000021912,0.0000021942,0.0000021941, +0.0000021936,0.0000021947,0.0000021978,0.0000022016,0.0000022068, +0.0000022135,0.0000022199,0.0000022262,0.0000022320,0.0000022351, +0.0000022349,0.0000022308,0.0000022256,0.0000022184,0.0000022092, +0.0000022073,0.0000022207,0.0000022524,0.0000022870,0.0000023101, +0.0000023186,0.0000023223,0.0000023245,0.0000023224,0.0000023178, +0.0000023114,0.0000023046,0.0000023019,0.0000023027,0.0000023051, +0.0000023086,0.0000023129,0.0000023168,0.0000023181,0.0000023171, +0.0000023138,0.0000023080,0.0000022999,0.0000022912,0.0000022840, +0.0000022796,0.0000022772,0.0000022757,0.0000022746,0.0000022742, +0.0000022746,0.0000022766,0.0000022803,0.0000022848,0.0000022896, +0.0000022942,0.0000022987,0.0000023029,0.0000023069,0.0000023106, +0.0000023143,0.0000023179,0.0000023209,0.0000023229,0.0000023242, +0.0000023252,0.0000023257,0.0000023256,0.0000023257,0.0000023262, +0.0000023088,0.0000023109,0.0000023136,0.0000023162,0.0000023185, +0.0000023202,0.0000023214,0.0000023225,0.0000023237,0.0000023252, +0.0000023271,0.0000023292,0.0000023308,0.0000023317,0.0000023314, +0.0000023306,0.0000023303,0.0000023306,0.0000023309,0.0000023326, +0.0000023329,0.0000023340,0.0000023335,0.0000023318,0.0000023292, +0.0000023255,0.0000023209,0.0000023158,0.0000023109,0.0000023071, +0.0000023045,0.0000023028,0.0000023004,0.0000022968,0.0000022969, +0.0000023046,0.0000023184,0.0000023327,0.0000023445,0.0000023538, +0.0000023596,0.0000023617,0.0000023617,0.0000023601,0.0000023594, +0.0000023613,0.0000023671,0.0000023713,0.0000023688,0.0000023599, +0.0000023504,0.0000023445,0.0000023446,0.0000023469,0.0000023461, +0.0000023433,0.0000023420,0.0000023431,0.0000023451,0.0000023465, +0.0000023466,0.0000023451,0.0000023422,0.0000023386,0.0000023346, +0.0000023312,0.0000023297,0.0000023305,0.0000023319,0.0000023321, +0.0000023314,0.0000023313,0.0000023342,0.0000023401,0.0000023472, +0.0000023541,0.0000023599,0.0000023643,0.0000023679,0.0000023718, +0.0000023758,0.0000023791,0.0000023815,0.0000023825,0.0000023827, +0.0000023832,0.0000023834,0.0000023824,0.0000023810,0.0000023789, +0.0000023778,0.0000023782,0.0000023773,0.0000023707,0.0000023613, +0.0000023546,0.0000023503,0.0000023479,0.0000023489,0.0000023532, +0.0000023574,0.0000023593,0.0000023590,0.0000023570,0.0000023551, +0.0000023548,0.0000023566,0.0000023603,0.0000023644,0.0000023678, +0.0000023698,0.0000023704,0.0000023701,0.0000023712,0.0000023751, +0.0000023799,0.0000023834,0.0000023858,0.0000023872,0.0000023876, +0.0000023867,0.0000023849,0.0000023815,0.0000023770,0.0000023728, +0.0000023687,0.0000023645,0.0000023611,0.0000023606,0.0000023633, +0.0000023698,0.0000023788,0.0000023881,0.0000023962,0.0000024026, +0.0000024076,0.0000024130,0.0000024182,0.0000024198,0.0000024197, +0.0000024348,0.0000024605,0.0000024784,0.0000024860,0.0000024939, +0.0000025103,0.0000025269,0.0000025349,0.0000025364,0.0000025339, +0.0000025271,0.0000025201,0.0000025166,0.0000025161,0.0000025167, +0.0000025182,0.0000025193,0.0000025193,0.0000025170,0.0000025100, +0.0000025007,0.0000024926,0.0000024870,0.0000024832,0.0000024779, +0.0000024676,0.0000024523,0.0000024355,0.0000024160,0.0000023884, +0.0000023580,0.0000023388,0.0000023345,0.0000023349,0.0000023351, +0.0000023338,0.0000023331,0.0000023340,0.0000023353,0.0000023347, +0.0000023323,0.0000023287,0.0000023239,0.0000023194,0.0000023168, +0.0000023161,0.0000023167,0.0000023194,0.0000023246,0.0000023313, +0.0000023377,0.0000023425,0.0000023451,0.0000023463,0.0000023467, +0.0000023470,0.0000023468,0.0000023473,0.0000023540,0.0000023677, +0.0000023851,0.0000024008,0.0000024116,0.0000024186,0.0000024246, +0.0000024300,0.0000024334,0.0000024344,0.0000024335,0.0000024316, +0.0000024289,0.0000024258,0.0000024233,0.0000024227,0.0000024235, +0.0000024256,0.0000024291,0.0000024337,0.0000024386,0.0000024445, +0.0000024530,0.0000024630,0.0000024725,0.0000024801,0.0000024856, +0.0000024890,0.0000024910,0.0000024921,0.0000024936,0.0000024964, +0.0000025004,0.0000025035,0.0000025040,0.0000025024,0.0000025008, +0.0000025006,0.0000025025,0.0000025059,0.0000025089,0.0000025103, +0.0000025105,0.0000025095,0.0000025056,0.0000024989,0.0000024925, +0.0000024887,0.0000024862,0.0000024827,0.0000024777,0.0000024729, +0.0000024695,0.0000024659,0.0000024604,0.0000024564,0.0000024563, +0.0000024590,0.0000024622,0.0000024634,0.0000024623,0.0000024580, +0.0000024468,0.0000024276,0.0000024087,0.0000024003,0.0000024022, +0.0000024080,0.0000024115,0.0000024092,0.0000024029,0.0000023954, +0.0000023889,0.0000023849,0.0000023854,0.0000023894,0.0000023944, +0.0000023974,0.0000023960,0.0000023904,0.0000023808,0.0000023713, +0.0000023662,0.0000023653,0.0000023656,0.0000023653,0.0000023653, +0.0000023688,0.0000023780,0.0000023907,0.0000024005,0.0000024050, +0.0000024072,0.0000024104,0.0000024143,0.0000024171,0.0000024176, +0.0000024156,0.0000024129,0.0000024122,0.0000024158,0.0000024244, +0.0000024380,0.0000024583,0.0000024819,0.0000025034,0.0000025200, +0.0000025315,0.0000025388,0.0000025422,0.0000025432,0.0000025436, +0.0000025436,0.0000025433,0.0000025435,0.0000025450,0.0000025467, +0.0000025443,0.0000025329,0.0000025155,0.0000024980,0.0000024780, +0.0000024520,0.0000024262,0.0000024092,0.0000024003,0.0000023942, +0.0000023840,0.0000023698,0.0000023599,0.0000023603,0.0000023673, +0.0000023732,0.0000023739,0.0000023724,0.0000023722,0.0000023748, +0.0000023791,0.0000023825,0.0000023844,0.0000023855,0.0000023848, +0.0000023808,0.0000023725,0.0000023612,0.0000023512,0.0000023448, +0.0000023415,0.0000023388,0.0000023367,0.0000023369,0.0000023384, +0.0000023396,0.0000023402,0.0000023402,0.0000023398,0.0000023411, +0.0000023442,0.0000023521,0.0000023631,0.0000023748,0.0000023858, +0.0000023948,0.0000023967,0.0000023880,0.0000023790,0.0000023844, +0.0000024125,0.0000024451,0.0000024627,0.0000024716,0.0000024765, +0.0000024778,0.0000024760,0.0000024716,0.0000024672,0.0000024646, +0.0000024644,0.0000024640,0.0000024620,0.0000024573,0.0000024491, +0.0000024380,0.0000024290,0.0000024239,0.0000024227,0.0000024210, +0.0000024203,0.0000024211,0.0000024247,0.0000024310,0.0000024381, +0.0000024434,0.0000024451,0.0000024454,0.0000024437,0.0000024422, +0.0000024426,0.0000024481,0.0000024566,0.0000024633,0.0000024665, +0.0000024651,0.0000024600,0.0000024538,0.0000024499,0.0000024467, +0.0000024445,0.0000024429,0.0000024413,0.0000024391,0.0000024350, +0.0000024304,0.0000024240,0.0000024146,0.0000024021,0.0000023881, +0.0000023739,0.0000023625,0.0000023562,0.0000023533,0.0000023518, +0.0000023507,0.0000023503,0.0000023510,0.0000023515,0.0000023521, +0.0000023516,0.0000023490,0.0000023465,0.0000023443,0.0000023416, +0.0000023387,0.0000023349,0.0000023278,0.0000023182,0.0000023105, +0.0000023067,0.0000023056,0.0000023048,0.0000023019,0.0000022980, +0.0000022959,0.0000022955,0.0000022941,0.0000022918,0.0000022908, +0.0000022919,0.0000022945,0.0000022958,0.0000022920,0.0000022791, +0.0000022610,0.0000022451,0.0000022346,0.0000022289,0.0000022246, +0.0000022234,0.0000022262,0.0000022287,0.0000022302,0.0000022332, +0.0000022371,0.0000022414,0.0000022451,0.0000022491,0.0000022560, +0.0000022675,0.0000022790,0.0000022863,0.0000022920,0.0000022929, +0.0000022856,0.0000022740,0.0000022661,0.0000022629,0.0000022579, +0.0000022526,0.0000022516,0.0000022544,0.0000022562,0.0000022550, +0.0000022574,0.0000022720,0.0000022907,0.0000023016,0.0000023046, +0.0000023036,0.0000023010,0.0000022966,0.0000022908,0.0000022861, +0.0000022838,0.0000022810,0.0000022771,0.0000022742,0.0000022731, +0.0000022735,0.0000022752,0.0000022774,0.0000022794,0.0000022794, +0.0000022736,0.0000022615,0.0000022502,0.0000022451,0.0000022458, +0.0000022495,0.0000022544,0.0000022597,0.0000022635,0.0000022632, +0.0000022581,0.0000022504,0.0000022452,0.0000022444,0.0000022474, +0.0000022524,0.0000022581,0.0000022646,0.0000022727,0.0000022816, +0.0000022895,0.0000022954,0.0000022986,0.0000023005,0.0000023031, +0.0000023104,0.0000023268,0.0000023499,0.0000023640,0.0000023627, +0.0000023576,0.0000023553,0.0000023561,0.0000023661,0.0000023800, +0.0000023882,0.0000023897,0.0000023887,0.0000023895,0.0000023969, +0.0000024162,0.0000024328,0.0000024387,0.0000024517,0.0000024849, +0.0000025124,0.0000025189,0.0000025303,0.0000025514,0.0000025618, +0.0000025548,0.0000025309,0.0000025088,0.0000024721,0.0000024296, +0.0000024193,0.0000024297,0.0000024400,0.0000024384,0.0000024244, +0.0000024039,0.0000023873,0.0000023774,0.0000023745,0.0000023828, +0.0000023979,0.0000024105,0.0000024214,0.0000024604,0.0000024948, +0.0000024895,0.0000025135,0.0000025865,0.0000026187,0.0000026105, +0.0000025356,0.0000024812,0.0000024725,0.0000024724,0.0000024482, +0.0000024088,0.0000023983,0.0000024029,0.0000024166,0.0000024356, +0.0000024497,0.0000024532,0.0000024476,0.0000024343,0.0000024257, +0.0000024258,0.0000024286,0.0000024344,0.0000024414,0.0000024458, +0.0000024467,0.0000024455,0.0000024421,0.0000024398,0.0000024412, +0.0000024439,0.0000024444,0.0000024427,0.0000024418,0.0000024394, +0.0000024339,0.0000024256,0.0000024148,0.0000024043,0.0000023963, +0.0000023912,0.0000023867,0.0000023819,0.0000023776,0.0000023744, +0.0000023717,0.0000023711,0.0000023721,0.0000023728,0.0000023720, +0.0000023691,0.0000023647,0.0000023610,0.0000023611,0.0000023634, +0.0000023629,0.0000023585,0.0000023561,0.0000023574,0.0000023594, +0.0000023599,0.0000023600,0.0000023601,0.0000023606,0.0000023622, +0.0000023641,0.0000023657,0.0000023676,0.0000023731,0.0000023830, +0.0000023945,0.0000024040,0.0000024112,0.0000024193,0.0000024303, +0.0000024408,0.0000024476,0.0000024523,0.0000024582,0.0000024664, +0.0000024755,0.0000024835,0.0000024892,0.0000024920,0.0000024914, +0.0000024875,0.0000024828,0.0000024802,0.0000024810,0.0000024854, +0.0000024917,0.0000024985,0.0000025040,0.0000025077,0.0000025102, +0.0000025121,0.0000025132,0.0000025131,0.0000025116,0.0000025099, +0.0000025087,0.0000025069,0.0000025035,0.0000024992,0.0000024955, +0.0000024935,0.0000024929,0.0000024933,0.0000024928,0.0000024907, +0.0000024859,0.0000024778,0.0000024675,0.0000024563,0.0000024436, +0.0000024267,0.0000024056,0.0000023832,0.0000023630,0.0000023459, +0.0000023321,0.0000023223,0.0000023168,0.0000023157,0.0000023166, +0.0000023212,0.0000023264,0.0000023305,0.0000023326,0.0000023325, +0.0000023308,0.0000023281,0.0000023250,0.0000023208,0.0000023153, +0.0000023093,0.0000023025,0.0000022906,0.0000022714,0.0000022530, +0.0000022455,0.0000022482,0.0000022551,0.0000022621,0.0000022716, +0.0000022875,0.0000023059,0.0000023202,0.0000023285,0.0000023331, +0.0000023357,0.0000023368,0.0000023362,0.0000023328,0.0000023245, +0.0000023091,0.0000022887,0.0000022666,0.0000022463,0.0000022330, +0.0000022278,0.0000022246,0.0000022188,0.0000022122,0.0000022090, +0.0000022085,0.0000022078,0.0000022090,0.0000022142,0.0000022204, +0.0000022283,0.0000022360,0.0000022350,0.0000022245,0.0000022192, +0.0000022236,0.0000022307,0.0000022397,0.0000022523,0.0000022637, +0.0000022714,0.0000022803,0.0000022963,0.0000023149,0.0000023297, +0.0000023407,0.0000023472,0.0000023510,0.0000023555,0.0000023591, +0.0000023595,0.0000023574,0.0000023555,0.0000023561,0.0000023594, +0.0000023630,0.0000023653,0.0000023663,0.0000023666,0.0000023705, +0.0000023858,0.0000024073,0.0000024217,0.0000024259,0.0000024250, +0.0000024220,0.0000024204,0.0000024252,0.0000024358,0.0000024473, +0.0000024588,0.0000024683,0.0000024710,0.0000024651,0.0000024559, +0.0000024517,0.0000024530,0.0000024573,0.0000024620,0.0000024679, +0.0000024753,0.0000024797,0.0000024800,0.0000024794,0.0000024772, +0.0000024709,0.0000024599,0.0000024463,0.0000024333,0.0000024243, +0.0000024194,0.0000024190,0.0000024200,0.0000024206,0.0000024203, +0.0000024203,0.0000024226,0.0000024273,0.0000024324,0.0000024364, +0.0000024390,0.0000024412,0.0000024436,0.0000024462,0.0000024487, +0.0000024505,0.0000024510,0.0000024508,0.0000024512,0.0000024533, +0.0000024564,0.0000024591,0.0000024604,0.0000024604,0.0000024598, +0.0000024588,0.0000024572,0.0000024551,0.0000024542,0.0000024564, +0.0000024627,0.0000024721,0.0000024825,0.0000024924,0.0000025002, +0.0000025053,0.0000025084,0.0000025102,0.0000025100,0.0000025090, +0.0000025093,0.0000025128,0.0000025179,0.0000025212,0.0000025217, +0.0000025208,0.0000025200,0.0000025181,0.0000025131,0.0000025060, +0.0000025023,0.0000025028,0.0000025070,0.0000025131,0.0000025208, +0.0000025267,0.0000025303,0.0000025354,0.0000025431,0.0000025504, +0.0000025549,0.0000025582,0.0000025633,0.0000025686,0.0000025706, +0.0000025698,0.0000025690,0.0000025700,0.0000025726,0.0000025755, +0.0000025790,0.0000025823,0.0000025880,0.0000025953,0.0000026020, +0.0000026069,0.0000026109,0.0000026150,0.0000026180,0.0000026187, +0.0000026173,0.0000026143,0.0000026103,0.0000026049,0.0000025983, +0.0000025925,0.0000025894,0.0000025879,0.0000025853,0.0000025802, +0.0000025735,0.0000025676,0.0000025649,0.0000025649,0.0000025647, +0.0000025611,0.0000025548,0.0000025492,0.0000025399,0.0000025223, +0.0000025055,0.0000024950,0.0000024791,0.0000024570,0.0000024420, +0.0000024333,0.0000024255,0.0000024207,0.0000024209,0.0000024256, +0.0000024338,0.0000024406,0.0000024434,0.0000024436,0.0000024412, +0.0000024367,0.0000024341,0.0000024400,0.0000024558,0.0000024787, +0.0000025134,0.0000025594,0.0000025964,0.0000026136,0.0000026220, +0.0000026277,0.0000026298,0.0000026314,0.0000026351,0.0000026404, +0.0000026459,0.0000026517,0.0000026566,0.0000026588,0.0000026582, +0.0000026558,0.0000026538,0.0000026524,0.0000026499,0.0000026466, +0.0000026443,0.0000026417,0.0000026362,0.0000026310,0.0000026292, +0.0000026258,0.0000026168,0.0000026079,0.0000026035,0.0000025982, +0.0000025916,0.0000025903,0.0000025954,0.0000026023,0.0000026061, +0.0000026075,0.0000026090,0.0000026104,0.0000026073,0.0000025959, +0.0000025826,0.0000025627,0.0000025304,0.0000025022,0.0000024885, +0.0000024752,0.0000024469,0.0000024151,0.0000023989,0.0000023930, +0.0000023841,0.0000023628,0.0000023284,0.0000022957,0.0000022757, +0.0000022609,0.0000022427,0.0000022248,0.0000022122,0.0000022045, +0.0000021991,0.0000021959,0.0000021946,0.0000021947,0.0000021978, +0.0000022052,0.0000022156,0.0000022263,0.0000022351,0.0000022414, +0.0000022443,0.0000022431,0.0000022382,0.0000022302,0.0000022208, +0.0000022131,0.0000022106,0.0000022116,0.0000022135,0.0000022119, +0.0000022077,0.0000022034,0.0000022032,0.0000022119,0.0000022327, +0.0000022545,0.0000022685,0.0000022741,0.0000022741,0.0000022686, +0.0000022580,0.0000022457,0.0000022394,0.0000022404,0.0000022467, +0.0000022574,0.0000022688,0.0000022761,0.0000022794,0.0000022841, +0.0000022926,0.0000023034,0.0000023141,0.0000023221,0.0000023267, +0.0000023294,0.0000023308,0.0000023313,0.0000023308,0.0000023308, +0.0000023317,0.0000023324,0.0000023321,0.0000023304,0.0000023278, +0.0000023257,0.0000023241,0.0000023233,0.0000023233,0.0000023247, +0.0000023262,0.0000023271,0.0000023274,0.0000023274,0.0000023264, +0.0000023243,0.0000023200,0.0000023146,0.0000023102,0.0000023085, +0.0000023088,0.0000023088,0.0000023077,0.0000023060,0.0000023055, +0.0000023069,0.0000023087,0.0000023082,0.0000023050,0.0000022991, +0.0000022914,0.0000022832,0.0000022759,0.0000022717,0.0000022698, +0.0000022689,0.0000022686,0.0000022690,0.0000022698,0.0000022698, +0.0000022680,0.0000022651,0.0000022636,0.0000022640,0.0000022660, +0.0000022673,0.0000022666,0.0000022635,0.0000022587,0.0000022532, +0.0000022485,0.0000022452,0.0000022436,0.0000022436,0.0000022449, +0.0000022474,0.0000022497,0.0000022512,0.0000022512,0.0000022500, +0.0000022485,0.0000022473,0.0000022465,0.0000022465,0.0000022473, +0.0000022488,0.0000022501,0.0000022511,0.0000022516,0.0000022510, +0.0000022497,0.0000022493,0.0000022516,0.0000022562,0.0000022593, +0.0000022599,0.0000022596,0.0000022583,0.0000022557,0.0000022520, +0.0000022475,0.0000022433,0.0000022383,0.0000022294,0.0000022199, +0.0000022143,0.0000022096,0.0000022036,0.0000022006,0.0000022010, +0.0000022019,0.0000022025,0.0000022020,0.0000022000,0.0000021973, +0.0000021959,0.0000021975,0.0000022016,0.0000022074,0.0000022129, +0.0000022165,0.0000022175,0.0000022172,0.0000022168,0.0000022159, +0.0000022145,0.0000022121,0.0000022081,0.0000022015,0.0000021920, +0.0000021803,0.0000021678,0.0000021563,0.0000021475,0.0000021415, +0.0000021379,0.0000021369,0.0000021381,0.0000021407,0.0000021444, +0.0000021489,0.0000021527,0.0000021542,0.0000021538,0.0000021505, +0.0000021464,0.0000021449,0.0000021463,0.0000021490,0.0000021492, +0.0000021468,0.0000021433,0.0000021414,0.0000021422,0.0000021468, +0.0000021545,0.0000021614,0.0000021655,0.0000021682,0.0000021698, +0.0000021696,0.0000021679,0.0000021684,0.0000021726,0.0000021775, +0.0000021820,0.0000021865,0.0000021888,0.0000021881,0.0000021867, +0.0000021870,0.0000021900,0.0000021948,0.0000022002,0.0000022067, +0.0000022138,0.0000022206,0.0000022269,0.0000022319,0.0000022339, +0.0000022324,0.0000022279,0.0000022234,0.0000022170,0.0000022104, +0.0000022117,0.0000022324,0.0000022667,0.0000022984,0.0000023156, +0.0000023215,0.0000023248,0.0000023250,0.0000023209,0.0000023156, +0.0000023093,0.0000023045,0.0000023039,0.0000023058,0.0000023092, +0.0000023133,0.0000023171,0.0000023193,0.0000023193,0.0000023171, +0.0000023121,0.0000023043,0.0000022960,0.0000022893,0.0000022842, +0.0000022800,0.0000022758,0.0000022716,0.0000022677,0.0000022651, +0.0000022642,0.0000022651,0.0000022673,0.0000022703,0.0000022735, +0.0000022771,0.0000022809,0.0000022851,0.0000022894,0.0000022937, +0.0000022980,0.0000023020,0.0000023050,0.0000023071,0.0000023085, +0.0000023090,0.0000023084,0.0000023077,0.0000023078,0.0000022913, +0.0000022925,0.0000022948,0.0000022982,0.0000023026,0.0000023074, +0.0000023120,0.0000023155,0.0000023181,0.0000023201,0.0000023222, +0.0000023238,0.0000023248,0.0000023255,0.0000023262,0.0000023277, +0.0000023300,0.0000023323,0.0000023335,0.0000023337,0.0000023330, +0.0000023322,0.0000023308,0.0000023284,0.0000023257,0.0000023221, +0.0000023176,0.0000023126,0.0000023085,0.0000023065,0.0000023052, +0.0000023022,0.0000022970,0.0000022934,0.0000022970,0.0000023090, +0.0000023234,0.0000023361,0.0000023472,0.0000023562,0.0000023599, +0.0000023594,0.0000023567,0.0000023547,0.0000023553,0.0000023592, +0.0000023662,0.0000023696,0.0000023646,0.0000023558,0.0000023480, +0.0000023432,0.0000023427,0.0000023435,0.0000023427,0.0000023413, +0.0000023411,0.0000023419,0.0000023432,0.0000023434,0.0000023420, +0.0000023391,0.0000023352,0.0000023304,0.0000023254,0.0000023215, +0.0000023198,0.0000023205,0.0000023214,0.0000023208,0.0000023190, +0.0000023180,0.0000023203,0.0000023268,0.0000023359,0.0000023454, +0.0000023536,0.0000023596,0.0000023632,0.0000023659,0.0000023681, +0.0000023702,0.0000023727,0.0000023743,0.0000023746,0.0000023753, +0.0000023771,0.0000023787,0.0000023792,0.0000023782,0.0000023768, +0.0000023770,0.0000023784,0.0000023771,0.0000023705,0.0000023625, +0.0000023565,0.0000023519,0.0000023483,0.0000023480,0.0000023512, +0.0000023547,0.0000023561,0.0000023551,0.0000023527,0.0000023504, +0.0000023493,0.0000023510,0.0000023556,0.0000023616,0.0000023672, +0.0000023708,0.0000023727,0.0000023740,0.0000023761,0.0000023788, +0.0000023815,0.0000023840,0.0000023862,0.0000023874,0.0000023877, +0.0000023872,0.0000023856,0.0000023827,0.0000023790,0.0000023751, +0.0000023716,0.0000023680,0.0000023648,0.0000023644,0.0000023670, +0.0000023728,0.0000023801,0.0000023880,0.0000023945,0.0000023989, +0.0000024035,0.0000024104,0.0000024173,0.0000024202,0.0000024200, +0.0000024296,0.0000024547,0.0000024751,0.0000024847,0.0000024930, +0.0000025087,0.0000025261,0.0000025351,0.0000025361,0.0000025334, +0.0000025262,0.0000025189,0.0000025154,0.0000025153,0.0000025165, +0.0000025183,0.0000025193,0.0000025190,0.0000025158,0.0000025081, +0.0000024987,0.0000024900,0.0000024825,0.0000024762,0.0000024689, +0.0000024592,0.0000024470,0.0000024329,0.0000024125,0.0000023817, +0.0000023517,0.0000023365,0.0000023343,0.0000023349,0.0000023350, +0.0000023340,0.0000023331,0.0000023330,0.0000023330,0.0000023320, +0.0000023301,0.0000023271,0.0000023218,0.0000023163,0.0000023112, +0.0000023084,0.0000023076,0.0000023091,0.0000023141,0.0000023216, +0.0000023298,0.0000023365,0.0000023410,0.0000023437,0.0000023456, +0.0000023471,0.0000023476,0.0000023474,0.0000023488,0.0000023555, +0.0000023692,0.0000023867,0.0000024018,0.0000024112,0.0000024170, +0.0000024221,0.0000024269,0.0000024301,0.0000024308,0.0000024296, +0.0000024265,0.0000024226,0.0000024192,0.0000024177,0.0000024179, +0.0000024201,0.0000024253,0.0000024317,0.0000024371,0.0000024418, +0.0000024477,0.0000024557,0.0000024651,0.0000024741,0.0000024813, +0.0000024861,0.0000024891,0.0000024911,0.0000024930,0.0000024952, +0.0000024980,0.0000025002,0.0000025005,0.0000024988,0.0000024967, +0.0000024962,0.0000024982,0.0000025028,0.0000025072,0.0000025092, +0.0000025089,0.0000025073,0.0000025042,0.0000024995,0.0000024938, +0.0000024890,0.0000024854,0.0000024823,0.0000024785,0.0000024741, +0.0000024705,0.0000024675,0.0000024626,0.0000024574,0.0000024559, +0.0000024571,0.0000024599,0.0000024615,0.0000024611,0.0000024584, +0.0000024500,0.0000024324,0.0000024115,0.0000023992,0.0000023986, +0.0000024070,0.0000024176,0.0000024233,0.0000024215,0.0000024147, +0.0000024059,0.0000023973,0.0000023912,0.0000023899,0.0000023916, +0.0000023959,0.0000023987,0.0000023984,0.0000023933,0.0000023849, +0.0000023765,0.0000023710,0.0000023686,0.0000023674,0.0000023659, +0.0000023649,0.0000023671,0.0000023752,0.0000023866,0.0000023965, +0.0000024032,0.0000024080,0.0000024127,0.0000024173,0.0000024196, +0.0000024186,0.0000024147,0.0000024118,0.0000024122,0.0000024171, +0.0000024271,0.0000024423,0.0000024608,0.0000024813,0.0000025023, +0.0000025199,0.0000025318,0.0000025381,0.0000025408,0.0000025413, +0.0000025410,0.0000025402,0.0000025393,0.0000025380,0.0000025339, +0.0000025250,0.0000025133,0.0000025014,0.0000024867,0.0000024647, +0.0000024393,0.0000024200,0.0000024094,0.0000024017,0.0000023903, +0.0000023748,0.0000023641,0.0000023659,0.0000023744,0.0000023783, +0.0000023757,0.0000023709,0.0000023708,0.0000023727,0.0000023762, +0.0000023810,0.0000023843,0.0000023846,0.0000023827,0.0000023796, +0.0000023750,0.0000023679,0.0000023597,0.0000023531,0.0000023502, +0.0000023498,0.0000023498,0.0000023503,0.0000023533,0.0000023576, +0.0000023608,0.0000023631,0.0000023635,0.0000023609,0.0000023550, +0.0000023466,0.0000023386,0.0000023342,0.0000023386,0.0000023493, +0.0000023621,0.0000023748,0.0000023861,0.0000023896,0.0000023839, +0.0000023798,0.0000023945,0.0000024261,0.0000024529,0.0000024669, +0.0000024730,0.0000024742,0.0000024728,0.0000024692,0.0000024677, +0.0000024685,0.0000024696,0.0000024695,0.0000024681,0.0000024661, +0.0000024602,0.0000024487,0.0000024352,0.0000024251,0.0000024202, +0.0000024177,0.0000024152,0.0000024131,0.0000024136,0.0000024179, +0.0000024266,0.0000024347,0.0000024398,0.0000024419,0.0000024413, +0.0000024390,0.0000024382,0.0000024396,0.0000024418,0.0000024425, +0.0000024413,0.0000024400,0.0000024394,0.0000024402,0.0000024405, +0.0000024390,0.0000024356,0.0000024317,0.0000024281,0.0000024246, +0.0000024210,0.0000024163,0.0000024068,0.0000023938,0.0000023801, +0.0000023682,0.0000023600,0.0000023558,0.0000023533,0.0000023510, +0.0000023491,0.0000023493,0.0000023520,0.0000023544,0.0000023551, +0.0000023544,0.0000023515,0.0000023482,0.0000023457,0.0000023428, +0.0000023375,0.0000023296,0.0000023209,0.0000023137,0.0000023094, +0.0000023072,0.0000023052,0.0000023023,0.0000022984,0.0000022954, +0.0000022934,0.0000022923,0.0000022906,0.0000022888,0.0000022888, +0.0000022903,0.0000022919,0.0000022901,0.0000022781,0.0000022601, +0.0000022437,0.0000022329,0.0000022270,0.0000022248,0.0000022236, +0.0000022225,0.0000022240,0.0000022284,0.0000022315,0.0000022341, +0.0000022378,0.0000022413,0.0000022446,0.0000022486,0.0000022556, +0.0000022677,0.0000022804,0.0000022888,0.0000022954,0.0000022973, +0.0000022905,0.0000022787,0.0000022688,0.0000022619,0.0000022541, +0.0000022480,0.0000022476,0.0000022505,0.0000022521,0.0000022517, +0.0000022561,0.0000022737,0.0000022929,0.0000023025,0.0000023041, +0.0000023013,0.0000022978,0.0000022952,0.0000022908,0.0000022841, +0.0000022801,0.0000022781,0.0000022749,0.0000022716,0.0000022697, +0.0000022694,0.0000022705,0.0000022724,0.0000022743,0.0000022743, +0.0000022693,0.0000022581,0.0000022479,0.0000022438,0.0000022451, +0.0000022491,0.0000022533,0.0000022574,0.0000022607,0.0000022602, +0.0000022552,0.0000022479,0.0000022432,0.0000022438,0.0000022481, +0.0000022542,0.0000022601,0.0000022673,0.0000022766,0.0000022862, +0.0000022933,0.0000022966,0.0000022967,0.0000022959,0.0000022964, +0.0000022991,0.0000023108,0.0000023328,0.0000023544,0.0000023604, +0.0000023565,0.0000023543,0.0000023543,0.0000023592,0.0000023716, +0.0000023831,0.0000023893,0.0000023911,0.0000023909,0.0000023918, +0.0000024004,0.0000024187,0.0000024304,0.0000024348,0.0000024492, +0.0000024824,0.0000025104,0.0000025173,0.0000025238,0.0000025390, +0.0000025474,0.0000025415,0.0000025247,0.0000025028,0.0000024608, +0.0000024254,0.0000024221,0.0000024339,0.0000024408,0.0000024386, +0.0000024257,0.0000024054,0.0000023878,0.0000023774,0.0000023727, +0.0000023784,0.0000023909,0.0000024060,0.0000024147,0.0000024475, +0.0000024900,0.0000024946,0.0000024931,0.0000025628,0.0000026152, +0.0000026218,0.0000025666,0.0000024942,0.0000024725,0.0000024727, +0.0000024632,0.0000024243,0.0000023986,0.0000023984,0.0000024073, +0.0000024238,0.0000024415,0.0000024514,0.0000024501,0.0000024396, +0.0000024286,0.0000024268,0.0000024298,0.0000024359,0.0000024431, +0.0000024474,0.0000024488,0.0000024483,0.0000024454,0.0000024412, +0.0000024389,0.0000024388,0.0000024401,0.0000024418,0.0000024426, +0.0000024421,0.0000024400,0.0000024345,0.0000024253,0.0000024142, +0.0000024041,0.0000023970,0.0000023920,0.0000023870,0.0000023819, +0.0000023784,0.0000023754,0.0000023734,0.0000023729,0.0000023728, +0.0000023714,0.0000023675,0.0000023613,0.0000023553,0.0000023532, +0.0000023544,0.0000023553,0.0000023543,0.0000023542,0.0000023556, +0.0000023572,0.0000023573,0.0000023565,0.0000023548,0.0000023533, +0.0000023537,0.0000023564,0.0000023591,0.0000023602,0.0000023617, +0.0000023666,0.0000023767,0.0000023896,0.0000024003,0.0000024078, +0.0000024165,0.0000024277,0.0000024374,0.0000024436,0.0000024492, +0.0000024566,0.0000024652,0.0000024730,0.0000024793,0.0000024840, +0.0000024861,0.0000024850,0.0000024809,0.0000024759,0.0000024727, +0.0000024724,0.0000024760,0.0000024829,0.0000024908,0.0000024974, +0.0000025018,0.0000025049,0.0000025072,0.0000025083,0.0000025081, +0.0000025069,0.0000025057,0.0000025044,0.0000025021,0.0000024989, +0.0000024956,0.0000024929,0.0000024909,0.0000024887,0.0000024856, +0.0000024807,0.0000024737,0.0000024653,0.0000024555,0.0000024430, +0.0000024257,0.0000024040,0.0000023808,0.0000023601,0.0000023433, +0.0000023310,0.0000023232,0.0000023196,0.0000023187,0.0000023222, +0.0000023266,0.0000023316,0.0000023359,0.0000023387,0.0000023396, +0.0000023387,0.0000023364,0.0000023336,0.0000023307,0.0000023272, +0.0000023225,0.0000023159,0.0000023077,0.0000022998,0.0000022901, +0.0000022729,0.0000022522,0.0000022414,0.0000022439,0.0000022521, +0.0000022592,0.0000022666,0.0000022792,0.0000022956,0.0000023099, +0.0000023191,0.0000023241,0.0000023259,0.0000023254,0.0000023211, +0.0000023108,0.0000022952,0.0000022773,0.0000022590,0.0000022422, +0.0000022315,0.0000022274,0.0000022243,0.0000022183,0.0000022116, +0.0000022082,0.0000022069,0.0000022052,0.0000022062,0.0000022117, +0.0000022173,0.0000022228,0.0000022319,0.0000022363,0.0000022288, +0.0000022188,0.0000022216,0.0000022303,0.0000022372,0.0000022473, +0.0000022598,0.0000022691,0.0000022768,0.0000022897,0.0000023085, +0.0000023262,0.0000023405,0.0000023499,0.0000023529,0.0000023548, +0.0000023579,0.0000023593,0.0000023572,0.0000023538,0.0000023530, +0.0000023560,0.0000023605,0.0000023636,0.0000023643,0.0000023634, +0.0000023631,0.0000023699,0.0000023876,0.0000024066,0.0000024159, +0.0000024171,0.0000024166,0.0000024168,0.0000024212,0.0000024315, +0.0000024426,0.0000024521,0.0000024622,0.0000024698,0.0000024707, +0.0000024640,0.0000024549,0.0000024514,0.0000024530,0.0000024572, +0.0000024614,0.0000024665,0.0000024725,0.0000024758,0.0000024755, +0.0000024746,0.0000024725,0.0000024668,0.0000024568,0.0000024444, +0.0000024322,0.0000024229,0.0000024172,0.0000024145,0.0000024138, +0.0000024138,0.0000024137,0.0000024138,0.0000024150,0.0000024181, +0.0000024225,0.0000024263,0.0000024282,0.0000024284,0.0000024279, +0.0000024275,0.0000024278,0.0000024286,0.0000024287,0.0000024280, +0.0000024280,0.0000024298,0.0000024335,0.0000024379,0.0000024412, +0.0000024426,0.0000024425,0.0000024419,0.0000024409,0.0000024393, +0.0000024379,0.0000024390,0.0000024439,0.0000024523,0.0000024628, +0.0000024737,0.0000024831,0.0000024904,0.0000024964,0.0000025020, +0.0000025058,0.0000025067,0.0000025067,0.0000025087,0.0000025129, +0.0000025165,0.0000025175,0.0000025169,0.0000025162,0.0000025151, +0.0000025110,0.0000025043,0.0000025002,0.0000025010,0.0000025053, +0.0000025112,0.0000025190,0.0000025264,0.0000025313,0.0000025371, +0.0000025453,0.0000025533,0.0000025585,0.0000025629,0.0000025691, +0.0000025764,0.0000025803,0.0000025806,0.0000025802,0.0000025804, +0.0000025807,0.0000025807,0.0000025809,0.0000025819,0.0000025846, +0.0000025897,0.0000025960,0.0000026004,0.0000026027,0.0000026046, +0.0000026069,0.0000026085,0.0000026083,0.0000026058,0.0000026021, +0.0000025979,0.0000025934,0.0000025896,0.0000025878,0.0000025872, +0.0000025850,0.0000025800,0.0000025732,0.0000025679,0.0000025655, +0.0000025649,0.0000025636,0.0000025596,0.0000025544,0.0000025501, +0.0000025398,0.0000025202,0.0000025020,0.0000024879,0.0000024670, +0.0000024443,0.0000024312,0.0000024226,0.0000024152,0.0000024133, +0.0000024175,0.0000024258,0.0000024347,0.0000024397,0.0000024402, +0.0000024376,0.0000024324,0.0000024291,0.0000024351,0.0000024515, +0.0000024727,0.0000025019,0.0000025447,0.0000025846,0.0000026051, +0.0000026142,0.0000026219,0.0000026260,0.0000026279,0.0000026306, +0.0000026342,0.0000026378,0.0000026419,0.0000026474,0.0000026532, +0.0000026565,0.0000026565,0.0000026549,0.0000026539,0.0000026527, +0.0000026500,0.0000026468,0.0000026442,0.0000026403,0.0000026342, +0.0000026299,0.0000026275,0.0000026212,0.0000026106,0.0000026031, +0.0000026004,0.0000025962,0.0000025914,0.0000025920,0.0000025984, +0.0000026047,0.0000026078,0.0000026093,0.0000026110,0.0000026117, +0.0000026061,0.0000025927,0.0000025779,0.0000025545,0.0000025212, +0.0000024970,0.0000024864,0.0000024719,0.0000024420,0.0000024126, +0.0000024002,0.0000023961,0.0000023856,0.0000023598,0.0000023230, +0.0000022929,0.0000022751,0.0000022597,0.0000022412,0.0000022235, +0.0000022104,0.0000022017,0.0000021949,0.0000021894,0.0000021860, +0.0000021853,0.0000021867,0.0000021912,0.0000021980,0.0000022057, +0.0000022138,0.0000022215,0.0000022279,0.0000022315,0.0000022304, +0.0000022252,0.0000022170,0.0000022093,0.0000022062,0.0000022076, +0.0000022115,0.0000022136,0.0000022129,0.0000022089,0.0000022040, +0.0000022025,0.0000022094,0.0000022276,0.0000022479,0.0000022623, +0.0000022685,0.0000022679,0.0000022615,0.0000022510,0.0000022422, +0.0000022407,0.0000022442,0.0000022516,0.0000022613,0.0000022716, +0.0000022792,0.0000022838,0.0000022877,0.0000022908,0.0000022959, +0.0000023019,0.0000023075,0.0000023119,0.0000023154,0.0000023175, +0.0000023180,0.0000023180,0.0000023176,0.0000023173,0.0000023167, +0.0000023149,0.0000023119,0.0000023085,0.0000023054,0.0000023036, +0.0000023049,0.0000023091,0.0000023141,0.0000023182,0.0000023207, +0.0000023214,0.0000023200,0.0000023164,0.0000023108,0.0000023051, +0.0000023005,0.0000022985,0.0000022984,0.0000022990,0.0000022981, +0.0000022970,0.0000022982,0.0000023009,0.0000023025,0.0000023011, +0.0000022965,0.0000022898,0.0000022819,0.0000022741,0.0000022674, +0.0000022632,0.0000022623,0.0000022634,0.0000022653,0.0000022673, +0.0000022690,0.0000022698,0.0000022695,0.0000022675,0.0000022649, +0.0000022633,0.0000022629,0.0000022633,0.0000022631,0.0000022611, +0.0000022575,0.0000022528,0.0000022482,0.0000022445,0.0000022422, +0.0000022413,0.0000022415,0.0000022429,0.0000022454,0.0000022482, +0.0000022507,0.0000022520,0.0000022520,0.0000022512,0.0000022499, +0.0000022489,0.0000022486,0.0000022491,0.0000022502,0.0000022514, +0.0000022522,0.0000022519,0.0000022507,0.0000022500,0.0000022510, +0.0000022551,0.0000022593,0.0000022612,0.0000022613,0.0000022604, +0.0000022583,0.0000022546,0.0000022500,0.0000022457,0.0000022403, +0.0000022319,0.0000022221,0.0000022151,0.0000022105,0.0000022043, +0.0000021998,0.0000022007,0.0000022022,0.0000022026,0.0000022019, +0.0000022006,0.0000021989,0.0000021988,0.0000022027,0.0000022096, +0.0000022171,0.0000022234,0.0000022275,0.0000022286,0.0000022270, +0.0000022243,0.0000022214,0.0000022195,0.0000022181,0.0000022166, +0.0000022145,0.0000022096,0.0000022015,0.0000021900,0.0000021764, +0.0000021633,0.0000021535,0.0000021479,0.0000021455,0.0000021451, +0.0000021457,0.0000021471,0.0000021495,0.0000021523,0.0000021542, +0.0000021542,0.0000021534,0.0000021509,0.0000021472,0.0000021455, +0.0000021466,0.0000021501,0.0000021524,0.0000021525,0.0000021510, +0.0000021474,0.0000021449,0.0000021451,0.0000021487,0.0000021542, +0.0000021596,0.0000021633,0.0000021650,0.0000021652,0.0000021641, +0.0000021638,0.0000021668,0.0000021724,0.0000021772,0.0000021810, +0.0000021827,0.0000021820,0.0000021806,0.0000021805,0.0000021826, +0.0000021872,0.0000021934,0.0000022003,0.0000022077,0.0000022148, +0.0000022213,0.0000022273,0.0000022315,0.0000022320,0.0000022294, +0.0000022248,0.0000022215,0.0000022166,0.0000022124,0.0000022191, +0.0000022460,0.0000022820,0.0000023090,0.0000023204,0.0000023244, +0.0000023261,0.0000023237,0.0000023188,0.0000023140,0.0000023089, +0.0000023057,0.0000023064,0.0000023095,0.0000023130,0.0000023163, +0.0000023189,0.0000023193,0.0000023182,0.0000023145,0.0000023087, +0.0000023019,0.0000022960,0.0000022910,0.0000022856,0.0000022789, +0.0000022717,0.0000022643,0.0000022576,0.0000022529,0.0000022491, +0.0000022481,0.0000022488,0.0000022503,0.0000022521,0.0000022548, +0.0000022580,0.0000022616,0.0000022656,0.0000022698,0.0000022741, +0.0000022783,0.0000022820,0.0000022854,0.0000022880,0.0000022894, +0.0000022900,0.0000022906,0.0000022739,0.0000022764,0.0000022785, +0.0000022810,0.0000022842,0.0000022886,0.0000022940,0.0000022997, +0.0000023053,0.0000023106,0.0000023150,0.0000023184,0.0000023204, +0.0000023216,0.0000023231,0.0000023253,0.0000023280,0.0000023307, +0.0000023328,0.0000023337,0.0000023332,0.0000023319,0.0000023299, +0.0000023271,0.0000023235,0.0000023192,0.0000023146,0.0000023112, +0.0000023088,0.0000023087,0.0000023068,0.0000023002,0.0000022938, +0.0000022939,0.0000023019,0.0000023147,0.0000023270,0.0000023386, +0.0000023501,0.0000023569,0.0000023574,0.0000023534,0.0000023493, +0.0000023485,0.0000023516,0.0000023575,0.0000023638,0.0000023646, +0.0000023593,0.0000023525,0.0000023461,0.0000023418,0.0000023405, +0.0000023396,0.0000023381,0.0000023374,0.0000023378,0.0000023388, +0.0000023396,0.0000023391,0.0000023366,0.0000023333,0.0000023296, +0.0000023246,0.0000023188,0.0000023143,0.0000023124,0.0000023126, +0.0000023131,0.0000023119,0.0000023087,0.0000023058,0.0000023054, +0.0000023096,0.0000023179,0.0000023281,0.0000023384,0.0000023474, +0.0000023540,0.0000023585,0.0000023615,0.0000023632,0.0000023651, +0.0000023667,0.0000023673,0.0000023674,0.0000023681,0.0000023699, +0.0000023725,0.0000023747,0.0000023751,0.0000023753,0.0000023768, +0.0000023783,0.0000023771,0.0000023712,0.0000023636,0.0000023580, +0.0000023526,0.0000023475,0.0000023463,0.0000023487,0.0000023517, +0.0000023523,0.0000023508,0.0000023484,0.0000023454,0.0000023444, +0.0000023461,0.0000023514,0.0000023598,0.0000023672,0.0000023716, +0.0000023747,0.0000023776,0.0000023798,0.0000023817,0.0000023839, +0.0000023860,0.0000023876,0.0000023886,0.0000023890,0.0000023885, +0.0000023870,0.0000023840,0.0000023798,0.0000023761,0.0000023732, +0.0000023703,0.0000023676,0.0000023679,0.0000023712,0.0000023764, +0.0000023820,0.0000023878,0.0000023925,0.0000023954,0.0000023996, +0.0000024074,0.0000024157,0.0000024198,0.0000024197,0.0000024251, +0.0000024478,0.0000024701,0.0000024823,0.0000024918,0.0000025064, +0.0000025238,0.0000025342,0.0000025355,0.0000025329,0.0000025256, +0.0000025179,0.0000025144,0.0000025145,0.0000025161,0.0000025175, +0.0000025180,0.0000025173,0.0000025128,0.0000025046,0.0000024951, +0.0000024857,0.0000024767,0.0000024685,0.0000024610,0.0000024535, +0.0000024446,0.0000024320,0.0000024107,0.0000023787,0.0000023497, +0.0000023365,0.0000023350,0.0000023354,0.0000023355,0.0000023347, +0.0000023331,0.0000023322,0.0000023318,0.0000023310,0.0000023296, +0.0000023269,0.0000023219,0.0000023153,0.0000023086,0.0000023042, +0.0000023017,0.0000023014,0.0000023040,0.0000023106,0.0000023200, +0.0000023297,0.0000023367,0.0000023408,0.0000023434,0.0000023458, +0.0000023477,0.0000023484,0.0000023489,0.0000023507,0.0000023573, +0.0000023701,0.0000023864,0.0000024005,0.0000024093,0.0000024145, +0.0000024190,0.0000024233,0.0000024259,0.0000024257,0.0000024235, +0.0000024200,0.0000024164,0.0000024137,0.0000024126,0.0000024139, +0.0000024189,0.0000024265,0.0000024335,0.0000024388,0.0000024437, +0.0000024503,0.0000024586,0.0000024673,0.0000024754,0.0000024822, +0.0000024876,0.0000024911,0.0000024933,0.0000024944,0.0000024952, +0.0000024961,0.0000024960,0.0000024940,0.0000024918,0.0000024913, +0.0000024936,0.0000024990,0.0000025048,0.0000025074,0.0000025067, +0.0000025043,0.0000025018,0.0000024989,0.0000024946,0.0000024893, +0.0000024844,0.0000024809,0.0000024780,0.0000024744,0.0000024704, +0.0000024671,0.0000024630,0.0000024576,0.0000024544,0.0000024547, +0.0000024574,0.0000024595,0.0000024598,0.0000024585,0.0000024531, +0.0000024394,0.0000024187,0.0000024021,0.0000023991,0.0000024054, +0.0000024188,0.0000024305,0.0000024354,0.0000024331,0.0000024250, +0.0000024141,0.0000024033,0.0000023949,0.0000023909,0.0000023906, +0.0000023929,0.0000023958,0.0000023965,0.0000023944,0.0000023881, +0.0000023800,0.0000023735,0.0000023698,0.0000023676,0.0000023655, +0.0000023645,0.0000023661,0.0000023722,0.0000023818,0.0000023926, +0.0000024021,0.0000024089,0.0000024144,0.0000024184,0.0000024189, +0.0000024164,0.0000024132,0.0000024119,0.0000024126,0.0000024182, +0.0000024302,0.0000024461,0.0000024631,0.0000024801,0.0000024964, +0.0000025109,0.0000025229,0.0000025310,0.0000025347,0.0000025346, +0.0000025318,0.0000025274,0.0000025219,0.0000025145,0.0000025067, +0.0000025001,0.0000024906,0.0000024739,0.0000024528,0.0000024349, +0.0000024232,0.0000024135,0.0000024010,0.0000023842,0.0000023714, +0.0000023722,0.0000023801,0.0000023842,0.0000023821,0.0000023773, +0.0000023775,0.0000023803,0.0000023834,0.0000023870,0.0000023919, +0.0000023964,0.0000023971,0.0000023934,0.0000023871,0.0000023803, +0.0000023716,0.0000023631,0.0000023571,0.0000023547,0.0000023544, +0.0000023535,0.0000023529,0.0000023548,0.0000023573,0.0000023601, +0.0000023630,0.0000023657,0.0000023675,0.0000023672,0.0000023642, +0.0000023597,0.0000023505,0.0000023402,0.0000023330,0.0000023304, +0.0000023354,0.0000023509,0.0000023684,0.0000023828,0.0000023890, +0.0000023876,0.0000023887,0.0000024060,0.0000024357,0.0000024573, +0.0000024661,0.0000024675,0.0000024656,0.0000024631,0.0000024631, +0.0000024647,0.0000024658,0.0000024665,0.0000024669,0.0000024659, +0.0000024622,0.0000024559,0.0000024446,0.0000024322,0.0000024236, +0.0000024197,0.0000024171,0.0000024137,0.0000024108,0.0000024100, +0.0000024126,0.0000024175,0.0000024240,0.0000024284,0.0000024298, +0.0000024297,0.0000024287,0.0000024276,0.0000024257,0.0000024233, +0.0000024239,0.0000024271,0.0000024323,0.0000024359,0.0000024359, +0.0000024325,0.0000024263,0.0000024193,0.0000024142,0.0000024114, +0.0000024081,0.0000024002,0.0000023876,0.0000023751,0.0000023656, +0.0000023596,0.0000023544,0.0000023503,0.0000023483,0.0000023484, +0.0000023500,0.0000023528,0.0000023544,0.0000023543,0.0000023534, +0.0000023519,0.0000023490,0.0000023445,0.0000023378,0.0000023294, +0.0000023209,0.0000023147,0.0000023115,0.0000023094,0.0000023076, +0.0000023051,0.0000023018,0.0000022994,0.0000022971,0.0000022940, +0.0000022912,0.0000022905,0.0000022902,0.0000022911,0.0000022918, +0.0000022883,0.0000022760,0.0000022578,0.0000022426,0.0000022334, +0.0000022277,0.0000022235,0.0000022210,0.0000022212,0.0000022216, +0.0000022223,0.0000022252,0.0000022295,0.0000022329,0.0000022367, +0.0000022398,0.0000022424,0.0000022464,0.0000022542,0.0000022672, +0.0000022810,0.0000022907,0.0000022972,0.0000022980,0.0000022932, +0.0000022833,0.0000022730,0.0000022616,0.0000022508,0.0000022447, +0.0000022448,0.0000022473,0.0000022484,0.0000022497,0.0000022565, +0.0000022769,0.0000022965,0.0000023048,0.0000023042,0.0000023000, +0.0000022953,0.0000022927,0.0000022890,0.0000022819,0.0000022764, +0.0000022749,0.0000022730,0.0000022699,0.0000022676,0.0000022668, +0.0000022674,0.0000022689,0.0000022703,0.0000022699,0.0000022648, +0.0000022539,0.0000022448,0.0000022422,0.0000022445,0.0000022486, +0.0000022523,0.0000022554,0.0000022578,0.0000022569,0.0000022519, +0.0000022451,0.0000022411,0.0000022426,0.0000022485,0.0000022559, +0.0000022633,0.0000022718,0.0000022821,0.0000022918,0.0000022974, +0.0000022990,0.0000022972,0.0000022940,0.0000022905,0.0000022905, +0.0000022972,0.0000023158,0.0000023404,0.0000023544,0.0000023537, +0.0000023510,0.0000023523,0.0000023551,0.0000023650,0.0000023777, +0.0000023856,0.0000023906,0.0000023931,0.0000023940,0.0000023959, +0.0000024059,0.0000024209,0.0000024270,0.0000024314,0.0000024480, +0.0000024803,0.0000025081,0.0000025161,0.0000025196,0.0000025285, +0.0000025342,0.0000025315,0.0000025202,0.0000024917,0.0000024478, +0.0000024236,0.0000024273,0.0000024381,0.0000024417,0.0000024390, +0.0000024266,0.0000024069,0.0000023885,0.0000023774,0.0000023714, +0.0000023741,0.0000023853,0.0000024000,0.0000024101,0.0000024350, +0.0000024791,0.0000024979,0.0000024884,0.0000025321,0.0000026013, +0.0000026237,0.0000025980,0.0000025169,0.0000024755,0.0000024715, +0.0000024707,0.0000024447,0.0000024070,0.0000023961,0.0000024012, +0.0000024131,0.0000024302,0.0000024452,0.0000024499,0.0000024442, +0.0000024341,0.0000024289,0.0000024303,0.0000024362,0.0000024432, +0.0000024481,0.0000024503,0.0000024498,0.0000024477,0.0000024443, +0.0000024396,0.0000024362,0.0000024345,0.0000024368,0.0000024395, +0.0000024416,0.0000024423,0.0000024409,0.0000024357,0.0000024271, +0.0000024164,0.0000024067,0.0000023997,0.0000023941,0.0000023889, +0.0000023847,0.0000023814,0.0000023783,0.0000023765,0.0000023753, +0.0000023725,0.0000023669,0.0000023599,0.0000023537,0.0000023505, +0.0000023506,0.0000023517,0.0000023529,0.0000023536,0.0000023547, +0.0000023560,0.0000023564,0.0000023553,0.0000023515,0.0000023475, +0.0000023462,0.0000023487,0.0000023529,0.0000023552,0.0000023551, +0.0000023549,0.0000023590,0.0000023698,0.0000023838,0.0000023946, +0.0000024021,0.0000024112,0.0000024230,0.0000024330,0.0000024401, +0.0000024472,0.0000024556,0.0000024635,0.0000024695,0.0000024740, +0.0000024769,0.0000024778,0.0000024765,0.0000024737,0.0000024709, +0.0000024693,0.0000024701,0.0000024739,0.0000024801,0.0000024867, +0.0000024926,0.0000024975,0.0000025017,0.0000025046,0.0000025056, +0.0000025049,0.0000025033,0.0000025010,0.0000024982,0.0000024949, +0.0000024915,0.0000024882,0.0000024848,0.0000024808,0.0000024756, +0.0000024692,0.0000024617,0.0000024528,0.0000024408,0.0000024239, +0.0000024023,0.0000023792,0.0000023581,0.0000023414,0.0000023304, +0.0000023247,0.0000023233,0.0000023244,0.0000023273,0.0000023321, +0.0000023366,0.0000023402,0.0000023423,0.0000023432,0.0000023432, +0.0000023428,0.0000023418,0.0000023400,0.0000023376,0.0000023341, +0.0000023294,0.0000023235,0.0000023158,0.0000023057,0.0000022960, +0.0000022871,0.0000022721,0.0000022515,0.0000022394,0.0000022420, +0.0000022509,0.0000022574,0.0000022624,0.0000022717,0.0000022854, +0.0000022982,0.0000023067,0.0000023107,0.0000023110,0.0000023066, +0.0000022963,0.0000022824,0.0000022678,0.0000022533,0.0000022400, +0.0000022313,0.0000022274,0.0000022244,0.0000022187,0.0000022117, +0.0000022074,0.0000022053,0.0000022026,0.0000022025,0.0000022083, +0.0000022147,0.0000022184,0.0000022257,0.0000022349,0.0000022334, +0.0000022221,0.0000022193,0.0000022283,0.0000022360,0.0000022426, +0.0000022537,0.0000022651,0.0000022733,0.0000022830,0.0000022995, +0.0000023187,0.0000023358,0.0000023489,0.0000023545,0.0000023548, +0.0000023556,0.0000023570,0.0000023560,0.0000023520,0.0000023495, +0.0000023513,0.0000023570,0.0000023622,0.0000023636,0.0000023617, +0.0000023596,0.0000023612,0.0000023715,0.0000023885,0.0000024018, +0.0000024063,0.0000024080,0.0000024115,0.0000024173,0.0000024270, +0.0000024387,0.0000024478,0.0000024560,0.0000024656,0.0000024719, +0.0000024709,0.0000024626,0.0000024533,0.0000024506,0.0000024520, +0.0000024559,0.0000024598,0.0000024640,0.0000024684,0.0000024701, +0.0000024693,0.0000024674,0.0000024646,0.0000024591,0.0000024502, +0.0000024388,0.0000024272,0.0000024182,0.0000024124,0.0000024090, +0.0000024075,0.0000024071,0.0000024073,0.0000024077,0.0000024087, +0.0000024107,0.0000024145,0.0000024192,0.0000024224,0.0000024228, +0.0000024218,0.0000024199,0.0000024184,0.0000024170,0.0000024153, +0.0000024130,0.0000024112,0.0000024116,0.0000024145,0.0000024194, +0.0000024243,0.0000024276,0.0000024295,0.0000024307,0.0000024316, +0.0000024312,0.0000024296,0.0000024285,0.0000024304,0.0000024364, +0.0000024453,0.0000024550,0.0000024644,0.0000024732,0.0000024822, +0.0000024919,0.0000025003,0.0000025041,0.0000025043,0.0000025049, +0.0000025076,0.0000025109,0.0000025123,0.0000025120,0.0000025116, +0.0000025116,0.0000025095,0.0000025045,0.0000025004,0.0000025001, +0.0000025034,0.0000025088,0.0000025165,0.0000025250,0.0000025313, +0.0000025375,0.0000025459,0.0000025540,0.0000025602,0.0000025657, +0.0000025727,0.0000025810,0.0000025863,0.0000025881,0.0000025890, +0.0000025891,0.0000025881,0.0000025864,0.0000025848,0.0000025840, +0.0000025847,0.0000025876,0.0000025915,0.0000025946,0.0000025955, +0.0000025954,0.0000025958,0.0000025975,0.0000025990,0.0000025982, +0.0000025955,0.0000025922,0.0000025891,0.0000025865,0.0000025855, +0.0000025852,0.0000025834,0.0000025782,0.0000025716,0.0000025672, +0.0000025653,0.0000025640,0.0000025618,0.0000025582,0.0000025551, +0.0000025519,0.0000025404,0.0000025190,0.0000024988,0.0000024809, +0.0000024566,0.0000024341,0.0000024218,0.0000024131,0.0000024088, +0.0000024114,0.0000024188,0.0000024273,0.0000024332,0.0000024344, +0.0000024324,0.0000024282,0.0000024251,0.0000024306,0.0000024472, +0.0000024679,0.0000024928,0.0000025313,0.0000025730,0.0000025962, +0.0000026053,0.0000026140,0.0000026206,0.0000026234,0.0000026259, +0.0000026294,0.0000026323,0.0000026342,0.0000026370,0.0000026421, +0.0000026486,0.0000026532,0.0000026543,0.0000026540,0.0000026538, +0.0000026524,0.0000026496,0.0000026469,0.0000026441,0.0000026391, +0.0000026329,0.0000026289,0.0000026249,0.0000026163,0.0000026065, +0.0000026021,0.0000026007,0.0000025973,0.0000025940,0.0000025960, +0.0000026026,0.0000026080,0.0000026101,0.0000026113,0.0000026121, +0.0000026115,0.0000026030,0.0000025880,0.0000025712,0.0000025446, +0.0000025121,0.0000024926,0.0000024849,0.0000024694,0.0000024387, +0.0000024119,0.0000024020,0.0000023983,0.0000023849,0.0000023542, +0.0000023163,0.0000022887,0.0000022719,0.0000022562,0.0000022387, +0.0000022225,0.0000022096,0.0000022000,0.0000021933,0.0000021882, +0.0000021842,0.0000021815,0.0000021811,0.0000021830,0.0000021865, +0.0000021909,0.0000021954,0.0000022004,0.0000022060,0.0000022120, +0.0000022163,0.0000022172,0.0000022135,0.0000022075,0.0000022038, +0.0000022043,0.0000022079,0.0000022120,0.0000022138,0.0000022128, +0.0000022098,0.0000022055,0.0000022042,0.0000022090,0.0000022237, +0.0000022414,0.0000022560,0.0000022634,0.0000022626,0.0000022558, +0.0000022469,0.0000022425,0.0000022436,0.0000022489,0.0000022557, +0.0000022637,0.0000022732,0.0000022821,0.0000022884,0.0000022915, +0.0000022929,0.0000022951,0.0000022964,0.0000022977,0.0000022998, +0.0000023017,0.0000023027,0.0000023031,0.0000023030,0.0000023028, +0.0000023026,0.0000023020,0.0000023009,0.0000022994,0.0000022977, +0.0000022961,0.0000022977,0.0000023019,0.0000023063,0.0000023091, +0.0000023094,0.0000023080,0.0000023046,0.0000022997,0.0000022945, +0.0000022904,0.0000022881,0.0000022877,0.0000022888,0.0000022900, +0.0000022902,0.0000022904,0.0000022921,0.0000022942,0.0000022940, +0.0000022909,0.0000022850,0.0000022774,0.0000022693,0.0000022615, +0.0000022553,0.0000022513,0.0000022504,0.0000022534,0.0000022579, +0.0000022629,0.0000022670,0.0000022694,0.0000022704,0.0000022698, +0.0000022675,0.0000022650,0.0000022630,0.0000022610,0.0000022592, +0.0000022572,0.0000022543,0.0000022508,0.0000022473,0.0000022441, +0.0000022420,0.0000022411,0.0000022411,0.0000022415,0.0000022429, +0.0000022447,0.0000022478,0.0000022516,0.0000022549,0.0000022565, +0.0000022563,0.0000022547,0.0000022526,0.0000022512,0.0000022511, +0.0000022519,0.0000022529,0.0000022527,0.0000022515,0.0000022505, +0.0000022504,0.0000022531,0.0000022574,0.0000022606,0.0000022622, +0.0000022623,0.0000022608,0.0000022579,0.0000022535,0.0000022488, +0.0000022436,0.0000022357,0.0000022258,0.0000022175,0.0000022117, +0.0000022053,0.0000021999,0.0000021997,0.0000022016,0.0000022023, +0.0000022018,0.0000022015,0.0000022015,0.0000022033,0.0000022087, +0.0000022172,0.0000022253,0.0000022309,0.0000022333,0.0000022328, +0.0000022307,0.0000022272,0.0000022230,0.0000022195,0.0000022177, +0.0000022167,0.0000022158,0.0000022143,0.0000022110,0.0000022057, +0.0000021967,0.0000021846,0.0000021713,0.0000021604,0.0000021541, +0.0000021521,0.0000021523,0.0000021532,0.0000021548,0.0000021574, +0.0000021600,0.0000021603,0.0000021581,0.0000021551,0.0000021519, +0.0000021479,0.0000021455,0.0000021466,0.0000021506,0.0000021540, +0.0000021559,0.0000021561,0.0000021542,0.0000021512,0.0000021490, +0.0000021493,0.0000021512,0.0000021541,0.0000021581,0.0000021608, +0.0000021611,0.0000021599,0.0000021583,0.0000021600,0.0000021653, +0.0000021707,0.0000021736,0.0000021741,0.0000021736,0.0000021731, +0.0000021741,0.0000021765,0.0000021803,0.0000021865,0.0000021940, +0.0000022017,0.0000022090,0.0000022156,0.0000022220,0.0000022276, +0.0000022305,0.0000022298,0.0000022260,0.0000022225,0.0000022205, +0.0000022173,0.0000022168,0.0000022304,0.0000022627,0.0000022967, +0.0000023172,0.0000023239,0.0000023262,0.0000023261,0.0000023217, +0.0000023173,0.0000023136,0.0000023094,0.0000023076,0.0000023091, +0.0000023119,0.0000023143,0.0000023163,0.0000023177,0.0000023176, +0.0000023152,0.0000023110,0.0000023062,0.0000023019,0.0000022979, +0.0000022934,0.0000022876,0.0000022806,0.0000022727,0.0000022641, +0.0000022560,0.0000022489,0.0000022431,0.0000022397,0.0000022383, +0.0000022374,0.0000022370,0.0000022382,0.0000022393,0.0000022406, +0.0000022418,0.0000022434,0.0000022456,0.0000022487,0.0000022525, +0.0000022569,0.0000022616,0.0000022662,0.0000022704,0.0000022493, +0.0000022561,0.0000022613,0.0000022651,0.0000022683,0.0000022718, +0.0000022762,0.0000022811,0.0000022864,0.0000022920,0.0000022979, +0.0000023039,0.0000023095,0.0000023149,0.0000023201,0.0000023244, +0.0000023275,0.0000023296,0.0000023309,0.0000023311,0.0000023302, +0.0000023285,0.0000023263,0.0000023233,0.0000023200,0.0000023171, +0.0000023143,0.0000023131,0.0000023134,0.0000023127,0.0000023063, +0.0000022969,0.0000022932,0.0000022984,0.0000023088,0.0000023194, +0.0000023298,0.0000023417,0.0000023520,0.0000023548,0.0000023505, +0.0000023453,0.0000023431,0.0000023444,0.0000023489,0.0000023546, +0.0000023582,0.0000023580,0.0000023551,0.0000023503,0.0000023443, +0.0000023402,0.0000023382,0.0000023359,0.0000023338,0.0000023333, +0.0000023339,0.0000023347,0.0000023351,0.0000023341,0.0000023314, +0.0000023283,0.0000023254,0.0000023210,0.0000023155,0.0000023109, +0.0000023086,0.0000023084,0.0000023087,0.0000023077,0.0000023043, +0.0000022997,0.0000022962,0.0000022964,0.0000023009,0.0000023082, +0.0000023169,0.0000023259,0.0000023341,0.0000023411,0.0000023470, +0.0000023515,0.0000023552,0.0000023588,0.0000023615,0.0000023627, +0.0000023625,0.0000023621,0.0000023631,0.0000023662,0.0000023693, +0.0000023717,0.0000023741,0.0000023768,0.0000023784,0.0000023773, +0.0000023715,0.0000023650,0.0000023592,0.0000023520,0.0000023460, +0.0000023445,0.0000023461,0.0000023474,0.0000023476,0.0000023468, +0.0000023442,0.0000023414,0.0000023405,0.0000023422,0.0000023491, +0.0000023589,0.0000023669,0.0000023721,0.0000023762,0.0000023792, +0.0000023815,0.0000023838,0.0000023856,0.0000023868,0.0000023877, +0.0000023887,0.0000023896,0.0000023890,0.0000023867,0.0000023830, +0.0000023788,0.0000023755,0.0000023731,0.0000023707,0.0000023697, +0.0000023711,0.0000023746,0.0000023795,0.0000023840,0.0000023876, +0.0000023905,0.0000023922,0.0000023957,0.0000024041,0.0000024135, +0.0000024190,0.0000024193,0.0000024211,0.0000024397,0.0000024634, +0.0000024786,0.0000024901,0.0000025040,0.0000025203,0.0000025319, +0.0000025346,0.0000025323,0.0000025254,0.0000025176,0.0000025139, +0.0000025138,0.0000025152,0.0000025156,0.0000025156,0.0000025140, +0.0000025085,0.0000025001,0.0000024905,0.0000024807,0.0000024708, +0.0000024620,0.0000024557,0.0000024511,0.0000024446,0.0000024326, +0.0000024115,0.0000023803,0.0000023516,0.0000023378,0.0000023360, +0.0000023363,0.0000023362,0.0000023352,0.0000023331,0.0000023316, +0.0000023311,0.0000023307,0.0000023298,0.0000023278,0.0000023232, +0.0000023162,0.0000023088,0.0000023037,0.0000023000,0.0000022982, +0.0000022977,0.0000023009,0.0000023093,0.0000023211,0.0000023319, +0.0000023386,0.0000023421,0.0000023441,0.0000023457,0.0000023471, +0.0000023487,0.0000023505,0.0000023530,0.0000023588,0.0000023700, +0.0000023849,0.0000023982,0.0000024067,0.0000024113,0.0000024147, +0.0000024179,0.0000024197,0.0000024193,0.0000024170,0.0000024135, +0.0000024103,0.0000024084,0.0000024087,0.0000024117,0.0000024187, +0.0000024276,0.0000024354,0.0000024415,0.0000024472,0.0000024536, +0.0000024609,0.0000024692,0.0000024778,0.0000024855,0.0000024907, +0.0000024927,0.0000024926,0.0000024919,0.0000024912,0.0000024902, +0.0000024885,0.0000024871,0.0000024872,0.0000024900,0.0000024958, +0.0000025021,0.0000025053,0.0000025049,0.0000025026,0.0000025002, +0.0000024979,0.0000024948,0.0000024900,0.0000024843,0.0000024799, +0.0000024770,0.0000024739,0.0000024695,0.0000024654,0.0000024622, +0.0000024577,0.0000024535,0.0000024526,0.0000024548,0.0000024576, +0.0000024589,0.0000024585,0.0000024556,0.0000024461,0.0000024285, +0.0000024108,0.0000024032,0.0000024069,0.0000024175,0.0000024308, +0.0000024412,0.0000024449,0.0000024423,0.0000024329,0.0000024199, +0.0000024071,0.0000023973,0.0000023910,0.0000023878,0.0000023878, +0.0000023906,0.0000023933,0.0000023921,0.0000023876,0.0000023808, +0.0000023741,0.0000023694,0.0000023666,0.0000023650,0.0000023647, +0.0000023661,0.0000023700,0.0000023775,0.0000023882,0.0000023993, +0.0000024084,0.0000024140,0.0000024157,0.0000024149,0.0000024131, +0.0000024123,0.0000024115,0.0000024125,0.0000024198,0.0000024335, +0.0000024496,0.0000024638,0.0000024750,0.0000024855,0.0000024969, +0.0000025075,0.0000025141,0.0000025153,0.0000025122,0.0000025072, +0.0000025028,0.0000024991,0.0000024959,0.0000024902,0.0000024787, +0.0000024630,0.0000024486,0.0000024379,0.0000024282,0.0000024143, +0.0000023951,0.0000023794,0.0000023784,0.0000023866,0.0000023910, +0.0000023893,0.0000023865,0.0000023866,0.0000023872,0.0000023861, +0.0000023858,0.0000023875,0.0000023919,0.0000023982,0.0000024016, +0.0000024007,0.0000023952,0.0000023874,0.0000023779,0.0000023678, +0.0000023601,0.0000023563,0.0000023551,0.0000023535,0.0000023520, +0.0000023530,0.0000023535,0.0000023538,0.0000023549,0.0000023566, +0.0000023583,0.0000023594,0.0000023598,0.0000023592,0.0000023574, +0.0000023539,0.0000023481,0.0000023402,0.0000023279,0.0000023207, +0.0000023255,0.0000023450,0.0000023691,0.0000023873,0.0000023932, +0.0000023934,0.0000023994,0.0000024158,0.0000024384,0.0000024525, +0.0000024572,0.0000024568,0.0000024550,0.0000024560,0.0000024572, +0.0000024579,0.0000024588,0.0000024598,0.0000024597,0.0000024582, +0.0000024551,0.0000024486,0.0000024394,0.0000024306,0.0000024251, +0.0000024230,0.0000024208,0.0000024161,0.0000024108,0.0000024066, +0.0000024069,0.0000024108,0.0000024143,0.0000024188,0.0000024219, +0.0000024235,0.0000024231,0.0000024214,0.0000024214,0.0000024237, +0.0000024277,0.0000024315,0.0000024322,0.0000024297,0.0000024236, +0.0000024157,0.0000024094,0.0000024051,0.0000024013,0.0000023959, +0.0000023870,0.0000023766,0.0000023669,0.0000023581,0.0000023518, +0.0000023479,0.0000023479,0.0000023493,0.0000023510,0.0000023516, +0.0000023518,0.0000023512,0.0000023507,0.0000023496,0.0000023460, +0.0000023388,0.0000023298,0.0000023217,0.0000023167,0.0000023139, +0.0000023121,0.0000023097,0.0000023069,0.0000023044,0.0000023022, +0.0000023009,0.0000022997,0.0000022971,0.0000022948,0.0000022945, +0.0000022955,0.0000022958,0.0000022913,0.0000022783,0.0000022586, +0.0000022427,0.0000022351,0.0000022314,0.0000022274,0.0000022231, +0.0000022197,0.0000022187,0.0000022198,0.0000022214,0.0000022229, +0.0000022258,0.0000022297,0.0000022340,0.0000022374,0.0000022392, +0.0000022427,0.0000022517,0.0000022661,0.0000022806,0.0000022911, +0.0000022975,0.0000022978,0.0000022928,0.0000022859,0.0000022768, +0.0000022619,0.0000022481,0.0000022427,0.0000022432,0.0000022449, +0.0000022453,0.0000022472,0.0000022581,0.0000022809,0.0000023003, +0.0000023076,0.0000023061,0.0000023004,0.0000022950,0.0000022909, +0.0000022858,0.0000022789,0.0000022732,0.0000022716,0.0000022707, +0.0000022683,0.0000022661,0.0000022654,0.0000022659,0.0000022670, +0.0000022675,0.0000022656,0.0000022590,0.0000022486,0.0000022413, +0.0000022399,0.0000022432,0.0000022478,0.0000022515,0.0000022537, +0.0000022549,0.0000022536,0.0000022488,0.0000022420,0.0000022389, +0.0000022420,0.0000022496,0.0000022583,0.0000022677,0.0000022785, +0.0000022896,0.0000022982,0.0000023026,0.0000023021,0.0000022990, +0.0000022943,0.0000022879,0.0000022836,0.0000022860,0.0000023007, +0.0000023253,0.0000023447,0.0000023484,0.0000023462,0.0000023483, +0.0000023517,0.0000023585,0.0000023729,0.0000023828,0.0000023877, +0.0000023922,0.0000023955,0.0000023981,0.0000024019,0.0000024122, +0.0000024214,0.0000024225,0.0000024285,0.0000024472,0.0000024777, +0.0000025050,0.0000025147,0.0000025173,0.0000025222,0.0000025265, +0.0000025264,0.0000025127,0.0000024741,0.0000024356,0.0000024252, +0.0000024335,0.0000024417,0.0000024432,0.0000024391,0.0000024270, +0.0000024080,0.0000023893,0.0000023776,0.0000023704,0.0000023702, +0.0000023805,0.0000023934,0.0000024065,0.0000024239,0.0000024657, +0.0000024967,0.0000024893,0.0000025017,0.0000025767,0.0000026218, +0.0000026192,0.0000025499,0.0000024863,0.0000024715,0.0000024710, +0.0000024614,0.0000024261,0.0000023990,0.0000023978,0.0000024060, +0.0000024185,0.0000024344,0.0000024448,0.0000024450,0.0000024403, +0.0000024341,0.0000024320,0.0000024352,0.0000024407,0.0000024464, +0.0000024505,0.0000024515,0.0000024500,0.0000024474,0.0000024432, +0.0000024379,0.0000024333,0.0000024326,0.0000024338,0.0000024369, +0.0000024404,0.0000024419,0.0000024413,0.0000024379,0.0000024306, +0.0000024215,0.0000024120,0.0000024042,0.0000023981,0.0000023929, +0.0000023886,0.0000023841,0.0000023816,0.0000023806,0.0000023776, +0.0000023707,0.0000023626,0.0000023563,0.0000023528,0.0000023518, +0.0000023521,0.0000023529,0.0000023535,0.0000023539,0.0000023546, +0.0000023558,0.0000023552,0.0000023511,0.0000023452,0.0000023411, +0.0000023417,0.0000023453,0.0000023490,0.0000023503,0.0000023491, +0.0000023482,0.0000023522,0.0000023631,0.0000023764,0.0000023869, +0.0000023952,0.0000024051,0.0000024170,0.0000024280,0.0000024374, +0.0000024462,0.0000024545,0.0000024614,0.0000024658,0.0000024682, +0.0000024689,0.0000024683,0.0000024669,0.0000024658,0.0000024654, +0.0000024664,0.0000024689,0.0000024726,0.0000024771,0.0000024820, +0.0000024873,0.0000024926,0.0000024971,0.0000024997,0.0000025002, +0.0000024989,0.0000024962,0.0000024925,0.0000024884,0.0000024842, +0.0000024803,0.0000024763,0.0000024716,0.0000024655,0.0000024578, +0.0000024480,0.0000024351,0.0000024183,0.0000023981,0.0000023764, +0.0000023567,0.0000023412,0.0000023317,0.0000023290,0.0000023277, +0.0000023301,0.0000023329,0.0000023358,0.0000023391,0.0000023421, +0.0000023442,0.0000023454,0.0000023468,0.0000023489,0.0000023514, +0.0000023531,0.0000023535,0.0000023520,0.0000023483,0.0000023424, +0.0000023349,0.0000023262,0.0000023158,0.0000023032,0.0000022917, +0.0000022830,0.0000022700,0.0000022508,0.0000022390,0.0000022414, +0.0000022499,0.0000022554,0.0000022585,0.0000022645,0.0000022751, +0.0000022858,0.0000022922,0.0000022934,0.0000022902,0.0000022824, +0.0000022721,0.0000022614,0.0000022504,0.0000022396,0.0000022316, +0.0000022275,0.0000022246,0.0000022195,0.0000022123,0.0000022069, +0.0000022037,0.0000022005,0.0000021992,0.0000022036,0.0000022112, +0.0000022159,0.0000022198,0.0000022292,0.0000022348,0.0000022282, +0.0000022188,0.0000022237,0.0000022348,0.0000022403,0.0000022466, +0.0000022574,0.0000022682,0.0000022773,0.0000022897,0.0000023076, +0.0000023269,0.0000023441,0.0000023544,0.0000023560,0.0000023548, +0.0000023545,0.0000023536,0.0000023495,0.0000023452,0.0000023456, +0.0000023516,0.0000023591,0.0000023622,0.0000023611,0.0000023579, +0.0000023578,0.0000023631,0.0000023741,0.0000023863,0.0000023935, +0.0000023976,0.0000024045,0.0000024133,0.0000024229,0.0000024345, +0.0000024445,0.0000024517,0.0000024600,0.0000024688,0.0000024723, +0.0000024699,0.0000024605,0.0000024516,0.0000024492,0.0000024503, +0.0000024538,0.0000024576,0.0000024609,0.0000024636,0.0000024642, +0.0000024620,0.0000024581,0.0000024532,0.0000024468,0.0000024383, +0.0000024275,0.0000024163,0.0000024075,0.0000024019,0.0000023989, +0.0000023977,0.0000023977,0.0000023985,0.0000024003,0.0000024026, +0.0000024047,0.0000024077,0.0000024122,0.0000024166,0.0000024191, +0.0000024196,0.0000024188,0.0000024175,0.0000024157,0.0000024129, +0.0000024096,0.0000024050,0.0000024030,0.0000024038,0.0000024073, +0.0000024123,0.0000024170,0.0000024210,0.0000024246,0.0000024274, +0.0000024280,0.0000024262,0.0000024232,0.0000024224,0.0000024260, +0.0000024327,0.0000024400,0.0000024473,0.0000024555,0.0000024659, +0.0000024790,0.0000024918,0.0000024997,0.0000025018,0.0000025019, +0.0000025032,0.0000025053,0.0000025067,0.0000025071,0.0000025075, +0.0000025084,0.0000025086,0.0000025067,0.0000025027,0.0000025010, +0.0000025030,0.0000025077,0.0000025148,0.0000025234,0.0000025301, +0.0000025356,0.0000025430,0.0000025517,0.0000025595,0.0000025665, +0.0000025741,0.0000025824,0.0000025881,0.0000025911,0.0000025928, +0.0000025935,0.0000025925,0.0000025902,0.0000025879,0.0000025865, +0.0000025863,0.0000025873,0.0000025888,0.0000025899,0.0000025896, +0.0000025880,0.0000025868,0.0000025880,0.0000025911,0.0000025930, +0.0000025922,0.0000025893,0.0000025856,0.0000025828,0.0000025819, +0.0000025817,0.0000025797,0.0000025745,0.0000025689,0.0000025658, +0.0000025645,0.0000025625,0.0000025597,0.0000025574,0.0000025567, +0.0000025542,0.0000025417,0.0000025186,0.0000024963,0.0000024755, +0.0000024489,0.0000024262,0.0000024142,0.0000024074,0.0000024078, +0.0000024131,0.0000024210,0.0000024259,0.0000024261,0.0000024240, +0.0000024216,0.0000024213,0.0000024276,0.0000024435,0.0000024627, +0.0000024837,0.0000025175,0.0000025610,0.0000025895,0.0000025978, +0.0000026048,0.0000026132,0.0000026179,0.0000026203,0.0000026236, +0.0000026271,0.0000026290,0.0000026295,0.0000026308,0.0000026353, +0.0000026422,0.0000026482,0.0000026512,0.0000026523,0.0000026525, +0.0000026509,0.0000026483,0.0000026463,0.0000026436,0.0000026383, +0.0000026325,0.0000026284,0.0000026226,0.0000026133,0.0000026059, +0.0000026042,0.0000026036,0.0000026002,0.0000025975,0.0000025997, +0.0000026053,0.0000026093,0.0000026107,0.0000026116,0.0000026119, +0.0000026092,0.0000025979,0.0000025818,0.0000025637,0.0000025351, +0.0000025047,0.0000024904,0.0000024850,0.0000024685,0.0000024372, +0.0000024119,0.0000024031,0.0000023985,0.0000023815,0.0000023465, +0.0000023085,0.0000022825,0.0000022657,0.0000022505,0.0000022341, +0.0000022191,0.0000022075,0.0000021988,0.0000021927,0.0000021889, +0.0000021857,0.0000021827,0.0000021805,0.0000021790,0.0000021787, +0.0000021798,0.0000021814,0.0000021826,0.0000021844,0.0000021885, +0.0000021956,0.0000022029,0.0000022065,0.0000022053,0.0000022027, +0.0000022022,0.0000022044,0.0000022083,0.0000022116,0.0000022130, +0.0000022127,0.0000022114,0.0000022082,0.0000022065,0.0000022103, +0.0000022211,0.0000022349,0.0000022492,0.0000022584,0.0000022585, +0.0000022521,0.0000022454,0.0000022441,0.0000022476,0.0000022534, +0.0000022589,0.0000022654,0.0000022733,0.0000022818,0.0000022894, +0.0000022930,0.0000022960,0.0000022974,0.0000022979,0.0000022989, +0.0000023003,0.0000023012,0.0000023016,0.0000023014,0.0000023012, +0.0000023010,0.0000022998,0.0000022974,0.0000022945,0.0000022912, +0.0000022872,0.0000022865,0.0000022874,0.0000022874,0.0000022865, +0.0000022846,0.0000022820,0.0000022790,0.0000022764,0.0000022744, +0.0000022736,0.0000022738,0.0000022754,0.0000022774,0.0000022791, +0.0000022813,0.0000022830,0.0000022847,0.0000022852,0.0000022833, +0.0000022787,0.0000022720,0.0000022643,0.0000022564,0.0000022489, +0.0000022429,0.0000022387,0.0000022373,0.0000022396,0.0000022455, +0.0000022534,0.0000022612,0.0000022666,0.0000022697,0.0000022706, +0.0000022695,0.0000022673,0.0000022651,0.0000022622,0.0000022587, +0.0000022549,0.0000022512,0.0000022480,0.0000022452,0.0000022430, +0.0000022415,0.0000022410,0.0000022411,0.0000022418,0.0000022429, +0.0000022440,0.0000022455,0.0000022487,0.0000022537,0.0000022586, +0.0000022613,0.0000022614,0.0000022590,0.0000022555,0.0000022533, +0.0000022530,0.0000022535,0.0000022531,0.0000022519,0.0000022510, +0.0000022504,0.0000022512,0.0000022546,0.0000022585,0.0000022611, +0.0000022628,0.0000022627,0.0000022609,0.0000022577,0.0000022531, +0.0000022477,0.0000022404,0.0000022305,0.0000022211,0.0000022141, +0.0000022073,0.0000022007,0.0000021993,0.0000022006,0.0000022010, +0.0000022009,0.0000022014,0.0000022034,0.0000022080,0.0000022154, +0.0000022240,0.0000022312,0.0000022351,0.0000022362,0.0000022341, +0.0000022308,0.0000022261,0.0000022207,0.0000022159,0.0000022133, +0.0000022125,0.0000022122,0.0000022120,0.0000022114,0.0000022094, +0.0000022049,0.0000021978,0.0000021880,0.0000021766,0.0000021665, +0.0000021607,0.0000021588,0.0000021585,0.0000021590,0.0000021607, +0.0000021640,0.0000021675,0.0000021686,0.0000021667,0.0000021627, +0.0000021576,0.0000021516,0.0000021470,0.0000021463,0.0000021496, +0.0000021544,0.0000021581,0.0000021591,0.0000021581,0.0000021566, +0.0000021550,0.0000021540,0.0000021533,0.0000021526,0.0000021536, +0.0000021567,0.0000021583,0.0000021569,0.0000021535,0.0000021531, +0.0000021576,0.0000021625,0.0000021643,0.0000021643,0.0000021633, +0.0000021631,0.0000021655,0.0000021702,0.0000021747,0.0000021802, +0.0000021879,0.0000021963,0.0000022038,0.0000022104,0.0000022166, +0.0000022228,0.0000022277,0.0000022293,0.0000022274,0.0000022232, +0.0000022211,0.0000022210,0.0000022207,0.0000022237,0.0000022446, +0.0000022793,0.0000023084,0.0000023219,0.0000023257,0.0000023267, +0.0000023247,0.0000023202,0.0000023172,0.0000023146,0.0000023110, +0.0000023093,0.0000023100,0.0000023117,0.0000023131,0.0000023143, +0.0000023148,0.0000023141,0.0000023111,0.0000023072,0.0000023044, +0.0000023026,0.0000023005,0.0000022971,0.0000022929,0.0000022879, +0.0000022817,0.0000022750,0.0000022669,0.0000022581,0.0000022497, +0.0000022433,0.0000022391,0.0000022372,0.0000022365,0.0000022359, +0.0000022349,0.0000022326,0.0000022287,0.0000022249,0.0000022222, +0.0000022213,0.0000022230,0.0000022272,0.0000022337,0.0000022414, +0.0000022177,0.0000022273,0.0000022364,0.0000022442,0.0000022505, +0.0000022559,0.0000022607,0.0000022652,0.0000022695,0.0000022739, +0.0000022784,0.0000022836,0.0000022904,0.0000022995,0.0000023099, +0.0000023193,0.0000023258,0.0000023296,0.0000023311,0.0000023309, +0.0000023295,0.0000023274,0.0000023252,0.0000023229,0.0000023209, +0.0000023192,0.0000023185,0.0000023190,0.0000023186,0.0000023135, +0.0000023030,0.0000022961,0.0000022973,0.0000023058,0.0000023150, +0.0000023230,0.0000023334,0.0000023448,0.0000023504,0.0000023472, +0.0000023413,0.0000023394,0.0000023411,0.0000023435,0.0000023473, +0.0000023506,0.0000023523,0.0000023531,0.0000023523,0.0000023478, +0.0000023420,0.0000023382,0.0000023358,0.0000023328,0.0000023307, +0.0000023302,0.0000023303,0.0000023302,0.0000023297,0.0000023283, +0.0000023258,0.0000023230,0.0000023201,0.0000023166,0.0000023122, +0.0000023084,0.0000023062,0.0000023059,0.0000023063,0.0000023062, +0.0000023037,0.0000022991,0.0000022941,0.0000022917,0.0000022924, +0.0000022956,0.0000023002,0.0000023056,0.0000023115,0.0000023176, +0.0000023239,0.0000023299,0.0000023357,0.0000023420,0.0000023490, +0.0000023551,0.0000023588,0.0000023596,0.0000023587,0.0000023585, +0.0000023600,0.0000023636,0.0000023691,0.0000023737,0.0000023769, +0.0000023781,0.0000023770,0.0000023725,0.0000023664,0.0000023587, +0.0000023508,0.0000023453,0.0000023429,0.0000023418,0.0000023419, +0.0000023430,0.0000023432,0.0000023412,0.0000023389,0.0000023381, +0.0000023406,0.0000023481,0.0000023575,0.0000023659,0.0000023723, +0.0000023764,0.0000023791,0.0000023817,0.0000023838,0.0000023848, +0.0000023855,0.0000023870,0.0000023890,0.0000023895,0.0000023882, +0.0000023855,0.0000023817,0.0000023776,0.0000023742,0.0000023718, +0.0000023705,0.0000023707,0.0000023726,0.0000023765,0.0000023817, +0.0000023856,0.0000023877,0.0000023891,0.0000023897,0.0000023923, +0.0000024005,0.0000024109,0.0000024179,0.0000024189,0.0000024185, +0.0000024307,0.0000024547,0.0000024732,0.0000024871,0.0000025015, +0.0000025164,0.0000025283,0.0000025331,0.0000025317,0.0000025257, +0.0000025179,0.0000025133,0.0000025128,0.0000025136,0.0000025134, +0.0000025128,0.0000025102,0.0000025040,0.0000024957,0.0000024863, +0.0000024760,0.0000024660,0.0000024578,0.0000024529,0.0000024507, +0.0000024456,0.0000024343,0.0000024150,0.0000023862,0.0000023568, +0.0000023399,0.0000023362,0.0000023368,0.0000023370,0.0000023358, +0.0000023330,0.0000023310,0.0000023305,0.0000023307,0.0000023302, +0.0000023287,0.0000023246,0.0000023177,0.0000023104,0.0000023052, +0.0000023015,0.0000022988,0.0000022966,0.0000022960,0.0000023005, +0.0000023115,0.0000023250,0.0000023355,0.0000023412,0.0000023433, +0.0000023441,0.0000023448,0.0000023464,0.0000023487,0.0000023517, +0.0000023553,0.0000023608,0.0000023702,0.0000023830,0.0000023951, +0.0000024030,0.0000024069,0.0000024092,0.0000024117,0.0000024135, +0.0000024129,0.0000024104,0.0000024078,0.0000024061,0.0000024055, +0.0000024067,0.0000024122,0.0000024218,0.0000024321,0.0000024400, +0.0000024454,0.0000024500,0.0000024557,0.0000024631,0.0000024716, +0.0000024802,0.0000024867,0.0000024896,0.0000024896,0.0000024878, +0.0000024857,0.0000024840,0.0000024831,0.0000024830,0.0000024845, +0.0000024880,0.0000024938,0.0000025001,0.0000025038,0.0000025043, +0.0000025027,0.0000025001,0.0000024973,0.0000024945,0.0000024904, +0.0000024848,0.0000024793,0.0000024753,0.0000024720,0.0000024677, +0.0000024635,0.0000024611,0.0000024579,0.0000024536,0.0000024513, +0.0000024524,0.0000024553,0.0000024579,0.0000024585,0.0000024567, +0.0000024502,0.0000024377,0.0000024234,0.0000024143,0.0000024140, +0.0000024198,0.0000024297,0.0000024404,0.0000024482,0.0000024506, +0.0000024474,0.0000024375,0.0000024245,0.0000024118,0.0000024010, +0.0000023922,0.0000023865,0.0000023835,0.0000023837,0.0000023857, +0.0000023871,0.0000023849,0.0000023794,0.0000023731,0.0000023686, +0.0000023660,0.0000023652,0.0000023655,0.0000023660,0.0000023678, +0.0000023736,0.0000023839,0.0000023956,0.0000024044,0.0000024076, +0.0000024078,0.0000024083,0.0000024100,0.0000024105,0.0000024098, +0.0000024121,0.0000024209,0.0000024349,0.0000024497,0.0000024610, +0.0000024688,0.0000024756,0.0000024830,0.0000024893,0.0000024914, +0.0000024909,0.0000024904,0.0000024906,0.0000024901,0.0000024868, +0.0000024787,0.0000024678,0.0000024580,0.0000024504,0.0000024419, +0.0000024283,0.0000024071,0.0000023868,0.0000023819,0.0000023902, +0.0000023972,0.0000023961,0.0000023939,0.0000023930,0.0000023913, +0.0000023879,0.0000023842,0.0000023823,0.0000023831,0.0000023867, +0.0000023925,0.0000023973,0.0000023976,0.0000023920,0.0000023826, +0.0000023718,0.0000023611,0.0000023539,0.0000023508,0.0000023498, +0.0000023478,0.0000023450,0.0000023434,0.0000023409,0.0000023389, +0.0000023379,0.0000023381,0.0000023390,0.0000023406,0.0000023420, +0.0000023430,0.0000023437,0.0000023441,0.0000023443,0.0000023435, +0.0000023399,0.0000023325,0.0000023221,0.0000023148,0.0000023242, +0.0000023507,0.0000023776,0.0000023936,0.0000023978,0.0000023989, +0.0000024042,0.0000024161,0.0000024291,0.0000024362,0.0000024379, +0.0000024384,0.0000024395,0.0000024393,0.0000024388,0.0000024396, +0.0000024410,0.0000024439,0.0000024466,0.0000024488,0.0000024478, +0.0000024429,0.0000024369,0.0000024306,0.0000024281,0.0000024268, +0.0000024237,0.0000024179,0.0000024105,0.0000024074,0.0000024081, +0.0000024108,0.0000024156,0.0000024203,0.0000024250,0.0000024280, +0.0000024295,0.0000024297,0.0000024298,0.0000024293,0.0000024282, +0.0000024247,0.0000024197,0.0000024134,0.0000024077,0.0000024032, +0.0000023980,0.0000023923,0.0000023862,0.0000023767,0.0000023651, +0.0000023553,0.0000023498,0.0000023488,0.0000023499,0.0000023508, +0.0000023501,0.0000023496,0.0000023498,0.0000023494,0.0000023476, +0.0000023437,0.0000023378,0.0000023317,0.0000023268,0.0000023223, +0.0000023185,0.0000023150,0.0000023112,0.0000023069,0.0000023031, +0.0000023013,0.0000023008,0.0000023008,0.0000023005,0.0000022996, +0.0000022991,0.0000022997,0.0000023002,0.0000022963,0.0000022847, +0.0000022636,0.0000022447,0.0000022363,0.0000022346,0.0000022327, +0.0000022292,0.0000022246,0.0000022209,0.0000022188,0.0000022192, +0.0000022209,0.0000022222,0.0000022237,0.0000022260,0.0000022303, +0.0000022346,0.0000022365,0.0000022392,0.0000022478,0.0000022639, +0.0000022794,0.0000022900,0.0000022954,0.0000022956,0.0000022912, +0.0000022860,0.0000022780,0.0000022622,0.0000022465,0.0000022420, +0.0000022429,0.0000022438,0.0000022438,0.0000022460,0.0000022608, +0.0000022854,0.0000023038,0.0000023093,0.0000023071,0.0000023014, +0.0000022967,0.0000022911,0.0000022830,0.0000022752,0.0000022700, +0.0000022684,0.0000022681,0.0000022668,0.0000022651,0.0000022646, +0.0000022650,0.0000022655,0.0000022645,0.0000022602,0.0000022519, +0.0000022419,0.0000022362,0.0000022373,0.0000022411,0.0000022461, +0.0000022505,0.0000022525,0.0000022526,0.0000022508,0.0000022461, +0.0000022396,0.0000022377,0.0000022418,0.0000022519,0.0000022622, +0.0000022733,0.0000022865,0.0000022985,0.0000023053,0.0000023074, +0.0000023054,0.0000023010,0.0000022950,0.0000022879,0.0000022803, +0.0000022798,0.0000022886,0.0000023108,0.0000023334,0.0000023421, +0.0000023404,0.0000023419,0.0000023474,0.0000023525,0.0000023656, +0.0000023803,0.0000023861,0.0000023897,0.0000023941,0.0000023988, +0.0000024034,0.0000024090,0.0000024175,0.0000024193,0.0000024172, +0.0000024260,0.0000024463,0.0000024740,0.0000025007,0.0000025123, +0.0000025153,0.0000025190,0.0000025227,0.0000025205,0.0000024955, +0.0000024530,0.0000024281,0.0000024288,0.0000024399,0.0000024445, +0.0000024437,0.0000024387,0.0000024270,0.0000024088,0.0000023903, +0.0000023781,0.0000023697,0.0000023671,0.0000023761,0.0000023875, +0.0000024023,0.0000024150,0.0000024503,0.0000024894,0.0000024955, +0.0000024856,0.0000025430,0.0000026090,0.0000026247,0.0000025872, +0.0000025095,0.0000024740,0.0000024688,0.0000024670,0.0000024484, +0.0000024141,0.0000023984,0.0000024019,0.0000024100,0.0000024218, +0.0000024344,0.0000024412,0.0000024425,0.0000024409,0.0000024376, +0.0000024358,0.0000024373,0.0000024413,0.0000024467,0.0000024509, +0.0000024517,0.0000024507,0.0000024475,0.0000024428,0.0000024377, +0.0000024337,0.0000024318,0.0000024327,0.0000024352,0.0000024380, +0.0000024406,0.0000024416,0.0000024400,0.0000024354,0.0000024278, +0.0000024189,0.0000024107,0.0000024041,0.0000023975,0.0000023908, +0.0000023866,0.0000023854,0.0000023840,0.0000023795,0.0000023718, +0.0000023643,0.0000023601,0.0000023581,0.0000023563,0.0000023550, +0.0000023542,0.0000023534,0.0000023531,0.0000023541,0.0000023548, +0.0000023525,0.0000023461,0.0000023400,0.0000023372,0.0000023375, +0.0000023398,0.0000023421,0.0000023427,0.0000023421,0.0000023425, +0.0000023470,0.0000023563,0.0000023681,0.0000023788,0.0000023879, +0.0000023978,0.0000024094,0.0000024218,0.0000024333,0.0000024434, +0.0000024519,0.0000024581,0.0000024617,0.0000024633,0.0000024629, +0.0000024613,0.0000024601,0.0000024598,0.0000024605,0.0000024622, +0.0000024647,0.0000024676,0.0000024705,0.0000024740,0.0000024781, +0.0000024822,0.0000024855,0.0000024870,0.0000024869,0.0000024850, +0.0000024821,0.0000024787,0.0000024748,0.0000024707,0.0000024660, +0.0000024599,0.0000024517,0.0000024404,0.0000024258,0.0000024084, +0.0000023894,0.0000023707,0.0000023544,0.0000023427,0.0000023349, +0.0000023315,0.0000023325,0.0000023345,0.0000023371,0.0000023390, +0.0000023404,0.0000023415,0.0000023432,0.0000023457,0.0000023489, +0.0000023526,0.0000023564,0.0000023599,0.0000023628,0.0000023645, +0.0000023644,0.0000023624,0.0000023577,0.0000023506,0.0000023411, +0.0000023295,0.0000023156,0.0000023003,0.0000022872,0.0000022787, +0.0000022673,0.0000022498,0.0000022388,0.0000022409,0.0000022486, +0.0000022533,0.0000022552,0.0000022583,0.0000022649,0.0000022723, +0.0000022760,0.0000022749,0.0000022700,0.0000022638,0.0000022571, +0.0000022493,0.0000022404,0.0000022327,0.0000022285,0.0000022256, +0.0000022206,0.0000022130,0.0000022063,0.0000022024,0.0000021992, +0.0000021980,0.0000022000,0.0000022060,0.0000022128,0.0000022164, +0.0000022219,0.0000022325,0.0000022346,0.0000022232,0.0000022187, +0.0000022300,0.0000022399,0.0000022426,0.0000022480,0.0000022592, +0.0000022714,0.0000022823,0.0000022962,0.0000023145,0.0000023341, +0.0000023505,0.0000023572,0.0000023563,0.0000023538,0.0000023514, +0.0000023467,0.0000023410,0.0000023394,0.0000023444,0.0000023528, +0.0000023586,0.0000023593,0.0000023576,0.0000023571,0.0000023603, +0.0000023670,0.0000023747,0.0000023809,0.0000023866,0.0000023965, +0.0000024089,0.0000024197,0.0000024308,0.0000024413,0.0000024484, +0.0000024548,0.0000024638,0.0000024714,0.0000024733,0.0000024682, +0.0000024579,0.0000024494,0.0000024472,0.0000024483,0.0000024517, +0.0000024551,0.0000024572,0.0000024582,0.0000024577,0.0000024544, +0.0000024483,0.0000024407,0.0000024326,0.0000024237,0.0000024134, +0.0000024028,0.0000023943,0.0000023891,0.0000023870,0.0000023869, +0.0000023874,0.0000023887,0.0000023916,0.0000023953,0.0000023984, +0.0000024010,0.0000024043,0.0000024083,0.0000024121,0.0000024146, +0.0000024161,0.0000024170,0.0000024160,0.0000024142,0.0000024104, +0.0000024055,0.0000024017,0.0000024009,0.0000024023,0.0000024061, +0.0000024112,0.0000024168,0.0000024219,0.0000024254,0.0000024261, +0.0000024240,0.0000024200,0.0000024174,0.0000024189,0.0000024238, +0.0000024293,0.0000024340,0.0000024397,0.0000024494,0.0000024638, +0.0000024799,0.0000024923,0.0000024979,0.0000024994,0.0000025000, +0.0000025006,0.0000025012,0.0000025022,0.0000025039,0.0000025062, +0.0000025088,0.0000025092,0.0000025066,0.0000025038,0.0000025043, +0.0000025081,0.0000025140,0.0000025214,0.0000025275,0.0000025319, +0.0000025381,0.0000025475,0.0000025574,0.0000025657,0.0000025728, +0.0000025801,0.0000025865,0.0000025903,0.0000025927,0.0000025939, +0.0000025931,0.0000025910,0.0000025886,0.0000025874,0.0000025872, +0.0000025873,0.0000025873,0.0000025869,0.0000025854,0.0000025827, +0.0000025810,0.0000025821,0.0000025862,0.0000025901,0.0000025908, +0.0000025881,0.0000025831,0.0000025793,0.0000025782,0.0000025776, +0.0000025748,0.0000025699,0.0000025657,0.0000025641,0.0000025632, +0.0000025606,0.0000025580,0.0000025577,0.0000025583,0.0000025564, +0.0000025432,0.0000025184,0.0000024946,0.0000024720,0.0000024439, +0.0000024209,0.0000024100,0.0000024067,0.0000024100,0.0000024170, +0.0000024208,0.0000024194,0.0000024157,0.0000024131,0.0000024145, +0.0000024237,0.0000024411,0.0000024595,0.0000024756,0.0000025028, +0.0000025460,0.0000025813,0.0000025928,0.0000025976,0.0000026051, +0.0000026119,0.0000026150,0.0000026171,0.0000026201,0.0000026230, +0.0000026239,0.0000026232,0.0000026233,0.0000026270,0.0000026341, +0.0000026413,0.0000026463,0.0000026489,0.0000026493,0.0000026478, +0.0000026458,0.0000026443,0.0000026416,0.0000026369,0.0000026322, +0.0000026281,0.0000026215,0.0000026129,0.0000026081,0.0000026080, +0.0000026069,0.0000026026,0.0000025995,0.0000026013,0.0000026055, +0.0000026085,0.0000026097,0.0000026100,0.0000026095,0.0000026048, +0.0000025914,0.0000025750,0.0000025564,0.0000025275,0.0000025005, +0.0000024907,0.0000024864,0.0000024687,0.0000024362,0.0000024114, +0.0000024027,0.0000023964,0.0000023753,0.0000023370,0.0000022994, +0.0000022743,0.0000022571,0.0000022419,0.0000022269,0.0000022137, +0.0000022046,0.0000021992,0.0000021947,0.0000021916,0.0000021888, +0.0000021858,0.0000021826,0.0000021788,0.0000021748,0.0000021718, +0.0000021705,0.0000021702,0.0000021698,0.0000021709,0.0000021760, +0.0000021848,0.0000021936,0.0000021984,0.0000021997,0.0000022002, +0.0000022012,0.0000022034,0.0000022070,0.0000022108,0.0000022131, +0.0000022143,0.0000022140,0.0000022118,0.0000022105,0.0000022132, +0.0000022194,0.0000022285,0.0000022425,0.0000022539,0.0000022549, +0.0000022505,0.0000022461,0.0000022470,0.0000022521,0.0000022570, +0.0000022609,0.0000022649,0.0000022698,0.0000022765,0.0000022829, +0.0000022878,0.0000022916,0.0000022943,0.0000022963,0.0000022975, +0.0000022982,0.0000022977,0.0000022962,0.0000022938,0.0000022905, +0.0000022857,0.0000022796,0.0000022732,0.0000022669,0.0000022602, +0.0000022576,0.0000022570,0.0000022560,0.0000022551,0.0000022549, +0.0000022552,0.0000022561,0.0000022580,0.0000022601,0.0000022621, +0.0000022633,0.0000022647,0.0000022656,0.0000022675,0.0000022700, +0.0000022726,0.0000022740,0.0000022741,0.0000022717,0.0000022672, +0.0000022613,0.0000022547,0.0000022479,0.0000022411,0.0000022354, +0.0000022310,0.0000022287,0.0000022288,0.0000022326,0.0000022399, +0.0000022499,0.0000022590,0.0000022651,0.0000022685,0.0000022693, +0.0000022684,0.0000022667,0.0000022645,0.0000022611,0.0000022569, +0.0000022519,0.0000022479,0.0000022441,0.0000022420,0.0000022411, +0.0000022408,0.0000022410,0.0000022420,0.0000022438,0.0000022458, +0.0000022466,0.0000022475,0.0000022507,0.0000022565,0.0000022622, +0.0000022649,0.0000022643,0.0000022609,0.0000022569,0.0000022549, +0.0000022546,0.0000022537,0.0000022519,0.0000022510,0.0000022508, +0.0000022508,0.0000022522,0.0000022555,0.0000022590,0.0000022618, +0.0000022634,0.0000022632,0.0000022615,0.0000022581,0.0000022528, +0.0000022457,0.0000022361,0.0000022257,0.0000022171,0.0000022101, +0.0000022029,0.0000021994,0.0000022001,0.0000022003,0.0000021996, +0.0000022005,0.0000022034,0.0000022098,0.0000022191,0.0000022286, +0.0000022354,0.0000022385,0.0000022385,0.0000022357,0.0000022305, +0.0000022235,0.0000022168,0.0000022118,0.0000022088,0.0000022078, +0.0000022080,0.0000022087,0.0000022090,0.0000022087,0.0000022075, +0.0000022033,0.0000021964,0.0000021876,0.0000021774,0.0000021688, +0.0000021644,0.0000021638,0.0000021646,0.0000021657,0.0000021673, +0.0000021697,0.0000021724,0.0000021746,0.0000021749,0.0000021727, +0.0000021679,0.0000021610,0.0000021531,0.0000021482,0.0000021484, +0.0000021531,0.0000021588,0.0000021613,0.0000021609,0.0000021598, +0.0000021591,0.0000021589,0.0000021588,0.0000021559,0.0000021525, +0.0000021531,0.0000021556,0.0000021551,0.0000021506,0.0000021483, +0.0000021505,0.0000021545,0.0000021557,0.0000021547,0.0000021525, +0.0000021516,0.0000021540,0.0000021616,0.0000021698,0.0000021761, +0.0000021831,0.0000021915,0.0000021997,0.0000022065,0.0000022120, +0.0000022179,0.0000022237,0.0000022277,0.0000022280,0.0000022245, +0.0000022212,0.0000022218,0.0000022236,0.0000022243,0.0000022327, +0.0000022600,0.0000022938,0.0000023164,0.0000023240,0.0000023260, +0.0000023262,0.0000023235,0.0000023203,0.0000023190,0.0000023167, +0.0000023128,0.0000023098,0.0000023088,0.0000023091,0.0000023095, +0.0000023099,0.0000023099,0.0000023088,0.0000023065,0.0000023043, +0.0000023030,0.0000023024,0.0000023018,0.0000023008,0.0000022983, +0.0000022948,0.0000022908,0.0000022859,0.0000022794,0.0000022713, +0.0000022625,0.0000022539,0.0000022466,0.0000022411,0.0000022377, +0.0000022358,0.0000022335,0.0000022294,0.0000022234,0.0000022159, +0.0000022094,0.0000022039,0.0000022023,0.0000022039,0.0000022093, +0.0000021936,0.0000021982,0.0000022059,0.0000022159,0.0000022260, +0.0000022351,0.0000022427,0.0000022488,0.0000022542,0.0000022592, +0.0000022638,0.0000022682,0.0000022735,0.0000022813,0.0000022925, +0.0000023054,0.0000023176,0.0000023266,0.0000023313,0.0000023324, +0.0000023313,0.0000023295,0.0000023275,0.0000023257,0.0000023241, +0.0000023229,0.0000023229,0.0000023234,0.0000023200,0.0000023098, +0.0000023005,0.0000022993,0.0000023044,0.0000023130,0.0000023198, +0.0000023271,0.0000023382,0.0000023454,0.0000023441,0.0000023374, +0.0000023344,0.0000023371,0.0000023409,0.0000023440,0.0000023464, +0.0000023482,0.0000023498,0.0000023510,0.0000023494,0.0000023441, +0.0000023389,0.0000023358,0.0000023331,0.0000023301,0.0000023282, +0.0000023274,0.0000023263,0.0000023245,0.0000023228,0.0000023208, +0.0000023182,0.0000023152,0.0000023119,0.0000023086,0.0000023056, +0.0000023031,0.0000023017,0.0000023017,0.0000023027,0.0000023036, +0.0000023026,0.0000022991,0.0000022945,0.0000022914,0.0000022910, +0.0000022923,0.0000022940,0.0000022959,0.0000022981,0.0000023013, +0.0000023050,0.0000023087,0.0000023133,0.0000023190,0.0000023268, +0.0000023367,0.0000023468,0.0000023550,0.0000023581,0.0000023572, +0.0000023549,0.0000023549,0.0000023601,0.0000023672,0.0000023730, +0.0000023767,0.0000023778,0.0000023773,0.0000023735,0.0000023659, +0.0000023577,0.0000023507,0.0000023447,0.0000023401,0.0000023367, +0.0000023366,0.0000023389,0.0000023404,0.0000023394,0.0000023378, +0.0000023375,0.0000023410,0.0000023478,0.0000023557,0.0000023640, +0.0000023709,0.0000023750,0.0000023782,0.0000023806,0.0000023821, +0.0000023827,0.0000023842,0.0000023870,0.0000023890,0.0000023887, +0.0000023871,0.0000023851,0.0000023817,0.0000023773,0.0000023733, +0.0000023712,0.0000023707,0.0000023714,0.0000023734,0.0000023771, +0.0000023825,0.0000023867,0.0000023882,0.0000023884,0.0000023881, +0.0000023896,0.0000023971,0.0000024081,0.0000024163,0.0000024179, +0.0000024162,0.0000024224,0.0000024441,0.0000024659,0.0000024826, +0.0000024984,0.0000025128,0.0000025242,0.0000025304,0.0000025303, +0.0000025260,0.0000025182,0.0000025125,0.0000025110,0.0000025117, +0.0000025115,0.0000025103,0.0000025067,0.0000025002,0.0000024925, +0.0000024833,0.0000024732,0.0000024634,0.0000024554,0.0000024515, +0.0000024505,0.0000024466,0.0000024370,0.0000024209,0.0000023953, +0.0000023650,0.0000023436,0.0000023364,0.0000023365,0.0000023372, +0.0000023361,0.0000023330,0.0000023305,0.0000023299,0.0000023304, +0.0000023305,0.0000023295,0.0000023260,0.0000023195,0.0000023122, +0.0000023068,0.0000023040,0.0000023016,0.0000022987,0.0000022961, +0.0000022969,0.0000023043,0.0000023167,0.0000023294,0.0000023383, +0.0000023426,0.0000023439,0.0000023442,0.0000023441,0.0000023450, +0.0000023482,0.0000023532,0.0000023580,0.0000023629,0.0000023699, +0.0000023803,0.0000023913,0.0000023986,0.0000024018,0.0000024037, +0.0000024060,0.0000024073,0.0000024067,0.0000024054,0.0000024048, +0.0000024048,0.0000024054,0.0000024090,0.0000024171,0.0000024278, +0.0000024369,0.0000024429,0.0000024470,0.0000024513,0.0000024565, +0.0000024632,0.0000024711,0.0000024786,0.0000024835,0.0000024845, +0.0000024829,0.0000024801,0.0000024783,0.0000024782,0.0000024797, +0.0000024830,0.0000024876,0.0000024931,0.0000024987,0.0000025028, +0.0000025043,0.0000025036,0.0000025012,0.0000024979,0.0000024944, +0.0000024902,0.0000024848,0.0000024788,0.0000024734,0.0000024692, +0.0000024654,0.0000024619,0.0000024602,0.0000024581,0.0000024542, +0.0000024506,0.0000024500,0.0000024523,0.0000024563,0.0000024585, +0.0000024574,0.0000024524,0.0000024446,0.0000024356,0.0000024286, +0.0000024264,0.0000024284,0.0000024334,0.0000024409,0.0000024471, +0.0000024511,0.0000024519,0.0000024478,0.0000024392,0.0000024285, +0.0000024174,0.0000024062,0.0000023952,0.0000023857,0.0000023791, +0.0000023762,0.0000023771,0.0000023796,0.0000023798,0.0000023772, +0.0000023733,0.0000023693,0.0000023665,0.0000023659,0.0000023659, +0.0000023662,0.0000023683,0.0000023736,0.0000023812,0.0000023893, +0.0000023952,0.0000023974,0.0000023987,0.0000024024,0.0000024064, +0.0000024075,0.0000024078,0.0000024121,0.0000024210,0.0000024333, +0.0000024457,0.0000024552,0.0000024623,0.0000024684,0.0000024732, +0.0000024765,0.0000024788,0.0000024808,0.0000024821,0.0000024806, +0.0000024754,0.0000024684,0.0000024625,0.0000024579,0.0000024517, +0.0000024403,0.0000024196,0.0000023952,0.0000023835,0.0000023878, +0.0000023965,0.0000023978,0.0000023973,0.0000023969,0.0000023939, +0.0000023886,0.0000023846,0.0000023822,0.0000023805,0.0000023804, +0.0000023819,0.0000023855,0.0000023895,0.0000023897,0.0000023834, +0.0000023725,0.0000023614,0.0000023531,0.0000023488,0.0000023453, +0.0000023411,0.0000023358,0.0000023315,0.0000023293,0.0000023263, +0.0000023237,0.0000023223,0.0000023221,0.0000023231,0.0000023244, +0.0000023247,0.0000023236,0.0000023231,0.0000023243,0.0000023263, +0.0000023287,0.0000023296,0.0000023299,0.0000023291,0.0000023264, +0.0000023220,0.0000023191,0.0000023318,0.0000023602,0.0000023847, +0.0000023981,0.0000024016,0.0000024012,0.0000024034,0.0000024071, +0.0000024084,0.0000024097,0.0000024084,0.0000024082,0.0000024072, +0.0000024073,0.0000024088,0.0000024114,0.0000024157,0.0000024237, +0.0000024334,0.0000024411,0.0000024427,0.0000024399,0.0000024348, +0.0000024308,0.0000024287,0.0000024269,0.0000024234,0.0000024182, +0.0000024137,0.0000024122,0.0000024128,0.0000024147,0.0000024209, +0.0000024276,0.0000024322,0.0000024341,0.0000024335,0.0000024297, +0.0000024255,0.0000024202,0.0000024153,0.0000024109,0.0000024062, +0.0000024011,0.0000023946,0.0000023865,0.0000023790,0.0000023696, +0.0000023596,0.0000023539,0.0000023527,0.0000023530,0.0000023528, +0.0000023514,0.0000023491,0.0000023480,0.0000023472,0.0000023459, +0.0000023415,0.0000023360,0.0000023321,0.0000023299,0.0000023280, +0.0000023253,0.0000023197,0.0000023123,0.0000023046,0.0000022989, +0.0000022962,0.0000022955,0.0000022965,0.0000022983,0.0000023002, +0.0000023011,0.0000023011,0.0000023012,0.0000022991,0.0000022878, +0.0000022681,0.0000022494,0.0000022389,0.0000022358,0.0000022344, +0.0000022327,0.0000022303,0.0000022272,0.0000022241,0.0000022216, +0.0000022207,0.0000022217,0.0000022224,0.0000022231,0.0000022243, +0.0000022268,0.0000022310,0.0000022343,0.0000022372,0.0000022449, +0.0000022606,0.0000022770,0.0000022882,0.0000022930,0.0000022920, +0.0000022889,0.0000022848,0.0000022760,0.0000022608,0.0000022463, +0.0000022413,0.0000022430,0.0000022437,0.0000022427,0.0000022471, +0.0000022654,0.0000022903,0.0000023066,0.0000023094,0.0000023068, +0.0000023019,0.0000022984,0.0000022922,0.0000022820,0.0000022723, +0.0000022669,0.0000022654,0.0000022656,0.0000022653,0.0000022641, +0.0000022633,0.0000022631,0.0000022623,0.0000022596,0.0000022533, +0.0000022438,0.0000022351,0.0000022317,0.0000022342,0.0000022388, +0.0000022442,0.0000022491,0.0000022516,0.0000022516,0.0000022489, +0.0000022436,0.0000022371,0.0000022366,0.0000022428,0.0000022559, +0.0000022683,0.0000022804,0.0000022944,0.0000023067,0.0000023125, +0.0000023123,0.0000023085,0.0000023031,0.0000022963,0.0000022881, +0.0000022802,0.0000022760,0.0000022806,0.0000022989,0.0000023218, +0.0000023348,0.0000023351,0.0000023349,0.0000023411,0.0000023470, +0.0000023570,0.0000023748,0.0000023851,0.0000023882,0.0000023919, +0.0000023967,0.0000024033,0.0000024097,0.0000024158,0.0000024201, +0.0000024151,0.0000024116,0.0000024242,0.0000024452,0.0000024698, +0.0000024944,0.0000025071,0.0000025116,0.0000025154,0.0000025168, +0.0000025047,0.0000024695,0.0000024356,0.0000024272,0.0000024364, +0.0000024459,0.0000024467,0.0000024435,0.0000024380,0.0000024268, +0.0000024093,0.0000023911,0.0000023785,0.0000023693,0.0000023650, +0.0000023717,0.0000023827,0.0000023966,0.0000024087,0.0000024351, +0.0000024762,0.0000024962,0.0000024848,0.0000025063,0.0000025823, +0.0000026234,0.0000026149,0.0000025449,0.0000024854,0.0000024687, +0.0000024664,0.0000024624,0.0000024379,0.0000024088,0.0000024006, +0.0000024051,0.0000024122,0.0000024212,0.0000024311,0.0000024387, +0.0000024434,0.0000024444,0.0000024411,0.0000024376,0.0000024368, +0.0000024396,0.0000024448,0.0000024496,0.0000024516,0.0000024501, +0.0000024470,0.0000024435,0.0000024404,0.0000024374,0.0000024354, +0.0000024343,0.0000024347,0.0000024360,0.0000024385,0.0000024402, +0.0000024402,0.0000024388,0.0000024333,0.0000024260,0.0000024186, +0.0000024102,0.0000024009,0.0000023932,0.0000023892,0.0000023881, +0.0000023881,0.0000023845,0.0000023772,0.0000023714,0.0000023680, +0.0000023646,0.0000023610,0.0000023577,0.0000023548,0.0000023528, +0.0000023524,0.0000023530,0.0000023529,0.0000023494,0.0000023430, +0.0000023372,0.0000023340,0.0000023319,0.0000023315,0.0000023315, +0.0000023318,0.0000023334,0.0000023370,0.0000023423,0.0000023500, +0.0000023597,0.0000023698,0.0000023791,0.0000023884,0.0000023994, +0.0000024122,0.0000024247,0.0000024357,0.0000024447,0.0000024513, +0.0000024562,0.0000024588,0.0000024592,0.0000024585,0.0000024576, +0.0000024573,0.0000024578,0.0000024588,0.0000024600,0.0000024613, +0.0000024628,0.0000024649,0.0000024672,0.0000024693,0.0000024709, +0.0000024713,0.0000024704,0.0000024686,0.0000024659,0.0000024617, +0.0000024560,0.0000024486,0.0000024391,0.0000024270,0.0000024123, +0.0000023954,0.0000023781,0.0000023627,0.0000023507,0.0000023429, +0.0000023399,0.0000023376,0.0000023368,0.0000023375,0.0000023386, +0.0000023399,0.0000023409,0.0000023415,0.0000023426,0.0000023449, +0.0000023486,0.0000023528,0.0000023566,0.0000023596,0.0000023620, +0.0000023643,0.0000023663,0.0000023675,0.0000023673,0.0000023655, +0.0000023615,0.0000023550,0.0000023450,0.0000023312,0.0000023146, +0.0000022970,0.0000022831,0.0000022750,0.0000022645,0.0000022482, +0.0000022382,0.0000022402,0.0000022468,0.0000022512,0.0000022529, +0.0000022539,0.0000022566,0.0000022601,0.0000022613,0.0000022600, +0.0000022570,0.0000022531,0.0000022477,0.0000022403,0.0000022335, +0.0000022299,0.0000022274,0.0000022223,0.0000022140,0.0000022062, +0.0000022016,0.0000021985,0.0000021973,0.0000021987,0.0000022021, +0.0000022076,0.0000022133,0.0000022167,0.0000022246,0.0000022352, +0.0000022315,0.0000022194,0.0000022222,0.0000022361,0.0000022424, +0.0000022426,0.0000022482,0.0000022614,0.0000022755,0.0000022876, +0.0000023021,0.0000023201,0.0000023393,0.0000023539,0.0000023577, +0.0000023553,0.0000023507,0.0000023450,0.0000023384,0.0000023350, +0.0000023370,0.0000023442,0.0000023519,0.0000023559,0.0000023562, +0.0000023567,0.0000023597,0.0000023650,0.0000023695,0.0000023723, +0.0000023766,0.0000023877,0.0000024038,0.0000024173,0.0000024280, +0.0000024384,0.0000024460,0.0000024510,0.0000024581,0.0000024673, +0.0000024731,0.0000024727,0.0000024657,0.0000024548,0.0000024470, +0.0000024448,0.0000024458,0.0000024489,0.0000024515,0.0000024523, +0.0000024524,0.0000024512,0.0000024468,0.0000024391,0.0000024298, +0.0000024202,0.0000024108,0.0000024014,0.0000023922,0.0000023846, +0.0000023798,0.0000023780,0.0000023778,0.0000023778,0.0000023783, +0.0000023801,0.0000023831,0.0000023861,0.0000023885,0.0000023908, +0.0000023937,0.0000023973,0.0000024011,0.0000024048,0.0000024079, +0.0000024100,0.0000024109,0.0000024094,0.0000024058,0.0000024030, +0.0000024015,0.0000024016,0.0000024040,0.0000024089,0.0000024150, +0.0000024206,0.0000024241,0.0000024247,0.0000024224,0.0000024180, +0.0000024137,0.0000024130,0.0000024163,0.0000024211,0.0000024246, +0.0000024281,0.0000024352,0.0000024485,0.0000024661,0.0000024820, +0.0000024919,0.0000024963,0.0000024977,0.0000024976,0.0000024971, +0.0000024976,0.0000025001,0.0000025041,0.0000025087,0.0000025116, +0.0000025108,0.0000025076,0.0000025068,0.0000025091,0.0000025134, +0.0000025194,0.0000025251,0.0000025284,0.0000025331,0.0000025429, +0.0000025544,0.0000025633,0.0000025691,0.0000025751,0.0000025812, +0.0000025857,0.0000025890,0.0000025911,0.0000025912,0.0000025895, +0.0000025875,0.0000025871,0.0000025872,0.0000025869,0.0000025862, +0.0000025847,0.0000025820,0.0000025793,0.0000025784,0.0000025798, +0.0000025837,0.0000025878,0.0000025890,0.0000025864,0.0000025811, +0.0000025772,0.0000025757,0.0000025741,0.0000025706,0.0000025663, +0.0000025637,0.0000025631,0.0000025622,0.0000025595,0.0000025579, +0.0000025588,0.0000025596,0.0000025581,0.0000025444,0.0000025184, +0.0000024932,0.0000024694,0.0000024404,0.0000024175,0.0000024092, +0.0000024095,0.0000024154,0.0000024203,0.0000024182,0.0000024119, +0.0000024078,0.0000024084,0.0000024165,0.0000024361,0.0000024568, +0.0000024706,0.0000024897,0.0000025285,0.0000025693,0.0000025875, +0.0000025920,0.0000025977,0.0000026054,0.0000026102,0.0000026121, +0.0000026134,0.0000026152,0.0000026171,0.0000026171,0.0000026155, +0.0000026149,0.0000026179,0.0000026247,0.0000026326,0.0000026392, +0.0000026431,0.0000026438,0.0000026427,0.0000026415,0.0000026403, +0.0000026379,0.0000026343,0.0000026313,0.0000026277,0.0000026212, +0.0000026140,0.0000026108,0.0000026109,0.0000026086,0.0000026031, +0.0000025994,0.0000026003,0.0000026032,0.0000026058,0.0000026070, +0.0000026067,0.0000026052,0.0000025994,0.0000025849,0.0000025689, +0.0000025508,0.0000025235,0.0000025001,0.0000024923,0.0000024881, +0.0000024688,0.0000024350,0.0000024097,0.0000024005,0.0000023922, +0.0000023669,0.0000023256,0.0000022886,0.0000022643,0.0000022464, +0.0000022313,0.0000022184,0.0000022090,0.0000022041,0.0000022015, +0.0000021995,0.0000021968,0.0000021937,0.0000021899,0.0000021854, +0.0000021805,0.0000021751,0.0000021698,0.0000021660,0.0000021643, +0.0000021638,0.0000021643,0.0000021665,0.0000021714,0.0000021788, +0.0000021857,0.0000021905,0.0000021940,0.0000021962,0.0000021977, +0.0000022011,0.0000022065,0.0000022116,0.0000022149,0.0000022165, +0.0000022163,0.0000022147,0.0000022144,0.0000022164,0.0000022187, +0.0000022238,0.0000022358,0.0000022484,0.0000022522,0.0000022505, +0.0000022487,0.0000022512,0.0000022558,0.0000022591,0.0000022607, +0.0000022617,0.0000022637,0.0000022673,0.0000022706,0.0000022734, +0.0000022756,0.0000022769,0.0000022772,0.0000022763,0.0000022745, +0.0000022718,0.0000022683,0.0000022636,0.0000022581,0.0000022520, +0.0000022457,0.0000022395,0.0000022334,0.0000022314,0.0000022315, +0.0000022322,0.0000022341,0.0000022370,0.0000022404,0.0000022438, +0.0000022483,0.0000022529,0.0000022567,0.0000022587,0.0000022592, +0.0000022583,0.0000022585,0.0000022597,0.0000022622,0.0000022636, +0.0000022639,0.0000022625,0.0000022592,0.0000022545,0.0000022486, +0.0000022422,0.0000022356,0.0000022298,0.0000022254,0.0000022223, +0.0000022221,0.0000022240,0.0000022287,0.0000022362,0.0000022462, +0.0000022555,0.0000022615,0.0000022649,0.0000022665,0.0000022665, +0.0000022654,0.0000022636,0.0000022609,0.0000022567,0.0000022518, +0.0000022470,0.0000022434,0.0000022420,0.0000022418,0.0000022419, +0.0000022423,0.0000022437,0.0000022465,0.0000022487,0.0000022493, +0.0000022498,0.0000022533,0.0000022598,0.0000022651,0.0000022665, +0.0000022649,0.0000022606,0.0000022570,0.0000022560,0.0000022551, +0.0000022525,0.0000022507,0.0000022507,0.0000022512,0.0000022516, +0.0000022532,0.0000022565,0.0000022602,0.0000022632,0.0000022644, +0.0000022639,0.0000022620,0.0000022582,0.0000022518,0.0000022428, +0.0000022320,0.0000022217,0.0000022132,0.0000022054,0.0000022007, +0.0000022004,0.0000022005,0.0000021989,0.0000021993,0.0000022028, +0.0000022097,0.0000022193,0.0000022291,0.0000022367,0.0000022404, +0.0000022406,0.0000022375,0.0000022306,0.0000022219,0.0000022143, +0.0000022093,0.0000022068,0.0000022058,0.0000022051,0.0000022060, +0.0000022073,0.0000022082,0.0000022082,0.0000022072,0.0000022033, +0.0000021964,0.0000021877,0.0000021778,0.0000021693,0.0000021651, +0.0000021652,0.0000021679,0.0000021714,0.0000021746,0.0000021769, +0.0000021783,0.0000021796,0.0000021807,0.0000021804,0.0000021782, +0.0000021732,0.0000021642,0.0000021544,0.0000021501,0.0000021522, +0.0000021576,0.0000021618,0.0000021625,0.0000021619,0.0000021612, +0.0000021615,0.0000021629,0.0000021617,0.0000021560,0.0000021516, +0.0000021523,0.0000021527,0.0000021490,0.0000021459,0.0000021466, +0.0000021492,0.0000021497,0.0000021476,0.0000021438,0.0000021407, +0.0000021416,0.0000021502,0.0000021636,0.0000021737,0.0000021803, +0.0000021878,0.0000021962,0.0000022037,0.0000022092,0.0000022140, +0.0000022192,0.0000022240,0.0000022266,0.0000022257,0.0000022221, +0.0000022211,0.0000022236,0.0000022262,0.0000022283,0.0000022439, +0.0000022753,0.0000023048,0.0000023200,0.0000023239,0.0000023256, +0.0000023258,0.0000023237,0.0000023221,0.0000023213,0.0000023185, +0.0000023139,0.0000023097,0.0000023071,0.0000023057,0.0000023049, +0.0000023043,0.0000023038,0.0000023029,0.0000023020,0.0000023015, +0.0000023015,0.0000023014,0.0000023010,0.0000022997,0.0000022975, +0.0000022941,0.0000022902,0.0000022863,0.0000022824,0.0000022785, +0.0000022739,0.0000022662,0.0000022576,0.0000022490,0.0000022418, +0.0000022369,0.0000022330,0.0000022277,0.0000022198,0.0000022110, +0.0000022037,0.0000021984,0.0000021946,0.0000021919,0.0000021897, +0.0000021871,0.0000021851,0.0000021889,0.0000021968,0.0000022080, +0.0000022197,0.0000022301,0.0000022383,0.0000022449,0.0000022510, +0.0000022569,0.0000022628,0.0000022690,0.0000022768,0.0000022879, +0.0000023022,0.0000023166,0.0000023271,0.0000023319,0.0000023322, +0.0000023307,0.0000023289,0.0000023265,0.0000023246,0.0000023241, +0.0000023248,0.0000023240,0.0000023165,0.0000023050,0.0000023006, +0.0000023041,0.0000023113,0.0000023183,0.0000023240,0.0000023327, +0.0000023426,0.0000023428,0.0000023348,0.0000023293,0.0000023309, +0.0000023361,0.0000023405,0.0000023438,0.0000023464,0.0000023486, +0.0000023503,0.0000023496,0.0000023449,0.0000023392,0.0000023354, +0.0000023329,0.0000023302,0.0000023274,0.0000023256,0.0000023239, +0.0000023211,0.0000023175,0.0000023145,0.0000023119,0.0000023092, +0.0000023058,0.0000023019,0.0000022987,0.0000022967,0.0000022955, +0.0000022948,0.0000022952,0.0000022965,0.0000022978,0.0000022976, +0.0000022955,0.0000022925,0.0000022905,0.0000022906,0.0000022917, +0.0000022931,0.0000022941,0.0000022942,0.0000022951,0.0000022966, +0.0000022977,0.0000022998,0.0000023030,0.0000023079,0.0000023158, +0.0000023265,0.0000023395,0.0000023513,0.0000023567,0.0000023558, +0.0000023527,0.0000023528,0.0000023577,0.0000023653,0.0000023722, +0.0000023762,0.0000023780,0.0000023778,0.0000023730,0.0000023651, +0.0000023577,0.0000023508,0.0000023437,0.0000023371,0.0000023329, +0.0000023324,0.0000023356,0.0000023384,0.0000023386,0.0000023379, +0.0000023387,0.0000023428,0.0000023481,0.0000023539,0.0000023609, +0.0000023674,0.0000023723,0.0000023762,0.0000023788,0.0000023803, +0.0000023816,0.0000023842,0.0000023868,0.0000023879,0.0000023876, +0.0000023869,0.0000023856,0.0000023825,0.0000023780,0.0000023742, +0.0000023721,0.0000023717,0.0000023724,0.0000023737,0.0000023769, +0.0000023824,0.0000023874,0.0000023889,0.0000023881,0.0000023871, +0.0000023877,0.0000023935,0.0000024043,0.0000024134,0.0000024159, +0.0000024132,0.0000024142,0.0000024318,0.0000024563,0.0000024761, +0.0000024938,0.0000025093,0.0000025205,0.0000025268,0.0000025283, +0.0000025253,0.0000025180,0.0000025114,0.0000025091,0.0000025100, +0.0000025102,0.0000025085,0.0000025040,0.0000024974,0.0000024906, +0.0000024822,0.0000024724,0.0000024629,0.0000024548,0.0000024505, +0.0000024494,0.0000024470,0.0000024402,0.0000024279,0.0000024061, +0.0000023766,0.0000023511,0.0000023385,0.0000023363,0.0000023365, +0.0000023360,0.0000023335,0.0000023308,0.0000023297,0.0000023298, +0.0000023305,0.0000023307,0.0000023286,0.0000023230,0.0000023150, +0.0000023086,0.0000023061,0.0000023053,0.0000023037,0.0000023014, +0.0000023003,0.0000023041,0.0000023115,0.0000023217,0.0000023315, +0.0000023388,0.0000023433,0.0000023450,0.0000023445,0.0000023441, +0.0000023447,0.0000023488,0.0000023549,0.0000023603,0.0000023644, +0.0000023697,0.0000023778,0.0000023867,0.0000023933,0.0000023967, +0.0000023986,0.0000024004,0.0000024015,0.0000024017,0.0000024024, +0.0000024042,0.0000024060,0.0000024086,0.0000024136,0.0000024217, +0.0000024303,0.0000024376,0.0000024429,0.0000024469,0.0000024506, +0.0000024549,0.0000024610,0.0000024684,0.0000024748,0.0000024778, +0.0000024776,0.0000024756,0.0000024743,0.0000024748,0.0000024775, +0.0000024822,0.0000024877,0.0000024928,0.0000024975,0.0000025014, +0.0000025036,0.0000025036,0.0000025023,0.0000024994,0.0000024951, +0.0000024898,0.0000024841,0.0000024780,0.0000024721,0.0000024669, +0.0000024632,0.0000024609,0.0000024599,0.0000024580,0.0000024543, +0.0000024500,0.0000024480,0.0000024496,0.0000024542,0.0000024581, +0.0000024582,0.0000024551,0.0000024500,0.0000024446,0.0000024402, +0.0000024386,0.0000024398,0.0000024430,0.0000024473,0.0000024501, +0.0000024513,0.0000024504,0.0000024474,0.0000024428,0.0000024374, +0.0000024310,0.0000024226,0.0000024120,0.0000024003,0.0000023884, +0.0000023779,0.0000023710,0.0000023684,0.0000023704,0.0000023741, +0.0000023757,0.0000023744,0.0000023714,0.0000023684,0.0000023670, +0.0000023669,0.0000023686,0.0000023720,0.0000023753,0.0000023790, +0.0000023825,0.0000023853,0.0000023881,0.0000023927,0.0000023989, +0.0000024036,0.0000024061,0.0000024089,0.0000024135,0.0000024205, +0.0000024292,0.0000024383,0.0000024470,0.0000024549,0.0000024615, +0.0000024661,0.0000024689,0.0000024706,0.0000024710,0.0000024691, +0.0000024660,0.0000024636,0.0000024615,0.0000024574,0.0000024480, +0.0000024296,0.0000024046,0.0000023864,0.0000023851,0.0000023917, +0.0000023948,0.0000023947,0.0000023959,0.0000023951,0.0000023898, +0.0000023841,0.0000023814,0.0000023806,0.0000023793,0.0000023778, +0.0000023776,0.0000023794,0.0000023827,0.0000023834,0.0000023782, +0.0000023685,0.0000023585,0.0000023506,0.0000023446,0.0000023375, +0.0000023293,0.0000023222,0.0000023190,0.0000023184,0.0000023175, +0.0000023164,0.0000023169,0.0000023188,0.0000023213,0.0000023233, +0.0000023238,0.0000023218,0.0000023171,0.0000023128,0.0000023103, +0.0000023104,0.0000023136,0.0000023163,0.0000023179,0.0000023222, +0.0000023270,0.0000023293,0.0000023261,0.0000023254,0.0000023399, +0.0000023681,0.0000023904,0.0000024001,0.0000024011,0.0000023988, +0.0000023952,0.0000023927,0.0000023901,0.0000023870,0.0000023858, +0.0000023857,0.0000023868,0.0000023895,0.0000023918,0.0000023946, +0.0000023999,0.0000024103,0.0000024244,0.0000024353,0.0000024375, +0.0000024363,0.0000024314,0.0000024276,0.0000024257,0.0000024241, +0.0000024214,0.0000024198,0.0000024187,0.0000024173,0.0000024182, +0.0000024214,0.0000024249,0.0000024282,0.0000024283,0.0000024256, +0.0000024205,0.0000024154,0.0000024116,0.0000024074,0.0000024019, +0.0000023948,0.0000023856,0.0000023748,0.0000023664,0.0000023598, +0.0000023565,0.0000023565,0.0000023590,0.0000023590,0.0000023553, +0.0000023519,0.0000023482,0.0000023438,0.0000023395,0.0000023376, +0.0000023358,0.0000023337,0.0000023317,0.0000023299,0.0000023270, +0.0000023222,0.0000023138,0.0000023037,0.0000022953,0.0000022909, +0.0000022897,0.0000022906,0.0000022928,0.0000022952,0.0000022979, +0.0000022999,0.0000023003,0.0000022972,0.0000022865,0.0000022683, +0.0000022502,0.0000022402,0.0000022374,0.0000022362,0.0000022342, +0.0000022324,0.0000022313,0.0000022301,0.0000022289,0.0000022266, +0.0000022235,0.0000022229,0.0000022229,0.0000022227,0.0000022235, +0.0000022250,0.0000022277,0.0000022313,0.0000022356,0.0000022442, +0.0000022592,0.0000022744,0.0000022851,0.0000022893,0.0000022883, +0.0000022862,0.0000022823,0.0000022720,0.0000022578,0.0000022470, +0.0000022428,0.0000022435,0.0000022440,0.0000022426,0.0000022498, +0.0000022710,0.0000022951,0.0000023082,0.0000023098,0.0000023058, +0.0000023016,0.0000022991,0.0000022923,0.0000022812,0.0000022710, +0.0000022646,0.0000022622,0.0000022624,0.0000022630,0.0000022624, +0.0000022611,0.0000022595,0.0000022569,0.0000022524,0.0000022452, +0.0000022364,0.0000022303,0.0000022289,0.0000022317,0.0000022369, +0.0000022428,0.0000022480,0.0000022508,0.0000022507,0.0000022477, +0.0000022418,0.0000022353,0.0000022351,0.0000022449,0.0000022617, +0.0000022768,0.0000022893,0.0000023021,0.0000023130,0.0000023179, +0.0000023174,0.0000023127,0.0000023056,0.0000022977,0.0000022895, +0.0000022810,0.0000022755,0.0000022770,0.0000022910,0.0000023114, +0.0000023256,0.0000023281,0.0000023277,0.0000023336,0.0000023414, +0.0000023484,0.0000023656,0.0000023822,0.0000023875,0.0000023904, +0.0000023943,0.0000024002,0.0000024088,0.0000024162,0.0000024202, +0.0000024190,0.0000024084,0.0000024060,0.0000024230,0.0000024442, +0.0000024650,0.0000024845,0.0000024970,0.0000025031,0.0000025058, +0.0000025011,0.0000024771,0.0000024444,0.0000024285,0.0000024316, +0.0000024450,0.0000024509,0.0000024479,0.0000024427,0.0000024370, +0.0000024260,0.0000024092,0.0000023915,0.0000023789,0.0000023691, +0.0000023632,0.0000023679,0.0000023789,0.0000023901,0.0000024038, +0.0000024217,0.0000024606,0.0000024911,0.0000024902,0.0000024828, +0.0000025427,0.0000026080,0.0000026232,0.0000025856,0.0000025119, +0.0000024735,0.0000024650,0.0000024638,0.0000024569,0.0000024311, +0.0000024076,0.0000024030,0.0000024066,0.0000024106,0.0000024177, +0.0000024284,0.0000024390,0.0000024460,0.0000024483,0.0000024441, +0.0000024379,0.0000024351,0.0000024367,0.0000024419,0.0000024468, +0.0000024488,0.0000024479,0.0000024464,0.0000024457,0.0000024450, +0.0000024440,0.0000024419,0.0000024388,0.0000024359,0.0000024351, +0.0000024353,0.0000024373,0.0000024393,0.0000024387,0.0000024366, +0.0000024322,0.0000024252,0.0000024153,0.0000024047,0.0000023967, +0.0000023927,0.0000023934,0.0000023942,0.0000023916,0.0000023867, +0.0000023819,0.0000023770,0.0000023714,0.0000023659,0.0000023608, +0.0000023563,0.0000023528,0.0000023514,0.0000023509,0.0000023500, +0.0000023467,0.0000023417,0.0000023362,0.0000023312,0.0000023268, +0.0000023224,0.0000023196,0.0000023193,0.0000023233,0.0000023297, +0.0000023363,0.0000023431,0.0000023509,0.0000023596,0.0000023680, +0.0000023768,0.0000023872,0.0000023991,0.0000024110,0.0000024217, +0.0000024308,0.0000024385,0.0000024450,0.0000024494,0.0000024519, +0.0000024531,0.0000024536,0.0000024542,0.0000024548,0.0000024553, +0.0000024560,0.0000024566,0.0000024571,0.0000024577,0.0000024579, +0.0000024577,0.0000024568,0.0000024548,0.0000024516,0.0000024467, +0.0000024396,0.0000024302,0.0000024190,0.0000024065,0.0000023929, +0.0000023789,0.0000023659,0.0000023550,0.0000023478,0.0000023439, +0.0000023418,0.0000023414,0.0000023411,0.0000023402,0.0000023393, +0.0000023390,0.0000023395,0.0000023410,0.0000023434,0.0000023467, +0.0000023501,0.0000023528,0.0000023548,0.0000023568,0.0000023592, +0.0000023619,0.0000023644,0.0000023663,0.0000023674,0.0000023676, +0.0000023672,0.0000023654,0.0000023620,0.0000023561,0.0000023459, +0.0000023308,0.0000023120,0.0000022928,0.0000022791,0.0000022718, +0.0000022612,0.0000022456,0.0000022371,0.0000022390,0.0000022444, +0.0000022489,0.0000022513,0.0000022518,0.0000022522,0.0000022529, +0.0000022525,0.0000022510,0.0000022486,0.0000022445,0.0000022385, +0.0000022336,0.0000022316,0.0000022296,0.0000022246,0.0000022157, +0.0000022067,0.0000022013,0.0000021982,0.0000021969,0.0000021984, +0.0000022006,0.0000022026,0.0000022077,0.0000022126,0.0000022168, +0.0000022274,0.0000022343,0.0000022271,0.0000022196,0.0000022273, +0.0000022404,0.0000022434,0.0000022424,0.0000022487,0.0000022639, +0.0000022797,0.0000022925,0.0000023061,0.0000023232,0.0000023428, +0.0000023556,0.0000023571,0.0000023523,0.0000023454,0.0000023378, +0.0000023323,0.0000023319,0.0000023365,0.0000023440,0.0000023506, +0.0000023542,0.0000023564,0.0000023600,0.0000023647,0.0000023680, +0.0000023689,0.0000023703,0.0000023797,0.0000023978,0.0000024150, +0.0000024261,0.0000024355,0.0000024438,0.0000024486,0.0000024534, +0.0000024616,0.0000024700,0.0000024729,0.0000024709,0.0000024627, +0.0000024517,0.0000024440,0.0000024413,0.0000024422,0.0000024446, +0.0000024463,0.0000024466,0.0000024462,0.0000024439,0.0000024390, +0.0000024315,0.0000024216,0.0000024111,0.0000024021,0.0000023943, +0.0000023872,0.0000023802,0.0000023741,0.0000023700,0.0000023672, +0.0000023653,0.0000023645,0.0000023650,0.0000023665,0.0000023687, +0.0000023708,0.0000023725,0.0000023741,0.0000023764,0.0000023799, +0.0000023842,0.0000023885,0.0000023927,0.0000023964,0.0000023988, +0.0000023995,0.0000023997,0.0000024000,0.0000024006,0.0000024027, +0.0000024069,0.0000024124,0.0000024181,0.0000024222,0.0000024232, +0.0000024212,0.0000024164,0.0000024113,0.0000024083,0.0000024096, +0.0000024136,0.0000024169,0.0000024191,0.0000024237,0.0000024344, +0.0000024510,0.0000024689,0.0000024827,0.0000024909,0.0000024948, +0.0000024954,0.0000024939,0.0000024929,0.0000024950,0.0000025009, +0.0000025075,0.0000025124,0.0000025137,0.0000025116,0.0000025094, +0.0000025100,0.0000025131,0.0000025184,0.0000025236,0.0000025260, +0.0000025289,0.0000025373,0.0000025491,0.0000025585,0.0000025639, +0.0000025684,0.0000025733,0.0000025775,0.0000025811,0.0000025840, +0.0000025853,0.0000025847,0.0000025843,0.0000025852,0.0000025859, +0.0000025855,0.0000025839,0.0000025814,0.0000025791,0.0000025779, +0.0000025783,0.0000025797,0.0000025824,0.0000025849,0.0000025852, +0.0000025829,0.0000025790,0.0000025758,0.0000025737,0.0000025712, +0.0000025673,0.0000025639,0.0000025626,0.0000025624,0.0000025614, +0.0000025591,0.0000025585,0.0000025598,0.0000025609,0.0000025594, +0.0000025454,0.0000025183,0.0000024921,0.0000024671,0.0000024372, +0.0000024153,0.0000024102,0.0000024144,0.0000024215,0.0000024224, +0.0000024158,0.0000024081,0.0000024059,0.0000024104,0.0000024280, +0.0000024513,0.0000024666,0.0000024796,0.0000025107,0.0000025541, +0.0000025807,0.0000025865,0.0000025907,0.0000025982,0.0000026046, +0.0000026078,0.0000026088,0.0000026088,0.0000026092,0.0000026098, +0.0000026088,0.0000026067,0.0000026060,0.0000026085,0.0000026147, +0.0000026227,0.0000026301,0.0000026347,0.0000026358,0.0000026354, +0.0000026349,0.0000026341,0.0000026328,0.0000026313,0.0000026300, +0.0000026271,0.0000026210,0.0000026149,0.0000026127,0.0000026118, +0.0000026080,0.0000026011,0.0000025971,0.0000025971,0.0000025991, +0.0000026020,0.0000026035,0.0000026027,0.0000026008,0.0000025941, +0.0000025790,0.0000025639,0.0000025479,0.0000025232,0.0000025018, +0.0000024941,0.0000024890,0.0000024687,0.0000024338,0.0000024073, +0.0000023971,0.0000023867,0.0000023574,0.0000023130,0.0000022760, +0.0000022526,0.0000022353,0.0000022215,0.0000022116,0.0000022069, +0.0000022056,0.0000022058,0.0000022051,0.0000022031,0.0000022002, +0.0000021959,0.0000021902,0.0000021845,0.0000021787,0.0000021728, +0.0000021679,0.0000021649,0.0000021638,0.0000021641,0.0000021653, +0.0000021664,0.0000021686,0.0000021718,0.0000021756,0.0000021804, +0.0000021856,0.0000021902,0.0000021950,0.0000022010,0.0000022076, +0.0000022135,0.0000022170,0.0000022178,0.0000022171,0.0000022162, +0.0000022167,0.0000022181,0.0000022186,0.0000022205,0.0000022287, +0.0000022407,0.0000022491,0.0000022512,0.0000022522,0.0000022546, +0.0000022572,0.0000022580,0.0000022576,0.0000022568,0.0000022569, +0.0000022579,0.0000022589,0.0000022596,0.0000022594,0.0000022585, +0.0000022571,0.0000022553,0.0000022528,0.0000022495,0.0000022451, +0.0000022401,0.0000022345,0.0000022280,0.0000022215,0.0000022159, +0.0000022148,0.0000022162,0.0000022193,0.0000022233,0.0000022280, +0.0000022323,0.0000022362,0.0000022404,0.0000022451,0.0000022499, +0.0000022534,0.0000022551,0.0000022546,0.0000022540,0.0000022544, +0.0000022551,0.0000022561,0.0000022567,0.0000022558,0.0000022530, +0.0000022482,0.0000022421,0.0000022355,0.0000022288,0.0000022228, +0.0000022183,0.0000022147,0.0000022137,0.0000022158,0.0000022199, +0.0000022255,0.0000022327,0.0000022420,0.0000022508,0.0000022569, +0.0000022610,0.0000022635,0.0000022644,0.0000022643,0.0000022636, +0.0000022620,0.0000022592,0.0000022549,0.0000022497,0.0000022460, +0.0000022448,0.0000022448,0.0000022447,0.0000022446,0.0000022461, +0.0000022488,0.0000022504,0.0000022506,0.0000022514,0.0000022562, +0.0000022630,0.0000022669,0.0000022669,0.0000022635,0.0000022591, +0.0000022568,0.0000022561,0.0000022538,0.0000022512,0.0000022508, +0.0000022517,0.0000022522,0.0000022522,0.0000022538,0.0000022576, +0.0000022618,0.0000022647,0.0000022650,0.0000022639,0.0000022619, +0.0000022574,0.0000022496,0.0000022394,0.0000022283,0.0000022180, +0.0000022088,0.0000022023,0.0000022013,0.0000022019,0.0000022003, +0.0000021991,0.0000022019,0.0000022090,0.0000022184,0.0000022276, +0.0000022354,0.0000022406,0.0000022411,0.0000022381,0.0000022303, +0.0000022212,0.0000022134,0.0000022086,0.0000022069,0.0000022062, +0.0000022055,0.0000022049,0.0000022055,0.0000022073,0.0000022090, +0.0000022101,0.0000022096,0.0000022060,0.0000021994,0.0000021909, +0.0000021817,0.0000021729,0.0000021672,0.0000021665,0.0000021693, +0.0000021742,0.0000021793,0.0000021833,0.0000021856,0.0000021863, +0.0000021865,0.0000021864,0.0000021857,0.0000021833,0.0000021766, +0.0000021658,0.0000021570,0.0000021549,0.0000021572,0.0000021609, +0.0000021626,0.0000021628,0.0000021627,0.0000021626,0.0000021645, +0.0000021655,0.0000021614,0.0000021536,0.0000021493,0.0000021487, +0.0000021471,0.0000021448,0.0000021449,0.0000021465,0.0000021462, +0.0000021429,0.0000021378,0.0000021324,0.0000021313,0.0000021376, +0.0000021537,0.0000021699,0.0000021793,0.0000021860,0.0000021939, +0.0000022020,0.0000022083,0.0000022122,0.0000022159,0.0000022200, +0.0000022236,0.0000022254,0.0000022240,0.0000022214,0.0000022223, +0.0000022266,0.0000022289,0.0000022346,0.0000022563,0.0000022875, +0.0000023112,0.0000023208,0.0000023231,0.0000023249,0.0000023255, +0.0000023245,0.0000023238,0.0000023231,0.0000023199,0.0000023148, +0.0000023100,0.0000023065,0.0000023042,0.0000023024,0.0000023010, +0.0000022996,0.0000022987,0.0000022985,0.0000022989,0.0000022989, +0.0000022982,0.0000022968,0.0000022949,0.0000022917,0.0000022876, +0.0000022834,0.0000022799,0.0000022776,0.0000022768,0.0000022757, +0.0000022734,0.0000022669,0.0000022570,0.0000022465,0.0000022384, +0.0000022328,0.0000022268,0.0000022182,0.0000022090,0.0000022020, +0.0000021973,0.0000021935,0.0000021950,0.0000021899,0.0000021845, +0.0000021805,0.0000021789,0.0000021840,0.0000021938,0.0000022075, +0.0000022210,0.0000022320,0.0000022399,0.0000022463,0.0000022530, +0.0000022600,0.0000022665,0.0000022741,0.0000022859,0.0000023017, +0.0000023171,0.0000023269,0.0000023298,0.0000023289,0.0000023265, +0.0000023238,0.0000023226,0.0000023239,0.0000023248,0.0000023215, +0.0000023115,0.0000023037,0.0000023039,0.0000023099,0.0000023168, +0.0000023222,0.0000023288,0.0000023389,0.0000023437,0.0000023361, +0.0000023252,0.0000023239,0.0000023289,0.0000023344,0.0000023388, +0.0000023434,0.0000023478,0.0000023505,0.0000023509,0.0000023466, +0.0000023397,0.0000023347,0.0000023322,0.0000023302,0.0000023276, +0.0000023250,0.0000023228,0.0000023197,0.0000023152,0.0000023105, +0.0000023069,0.0000023042,0.0000023014,0.0000022976,0.0000022930, +0.0000022898,0.0000022885,0.0000022879,0.0000022873,0.0000022875, +0.0000022883,0.0000022888,0.0000022883,0.0000022869,0.0000022854, +0.0000022852,0.0000022867,0.0000022886,0.0000022904,0.0000022915, +0.0000022915,0.0000022917,0.0000022927,0.0000022927,0.0000022933, +0.0000022955,0.0000022992,0.0000023047,0.0000023115,0.0000023205, +0.0000023342,0.0000023480,0.0000023550,0.0000023545,0.0000023525, +0.0000023525,0.0000023567,0.0000023640,0.0000023707,0.0000023755, +0.0000023781,0.0000023772,0.0000023720,0.0000023649,0.0000023576, +0.0000023505,0.0000023433,0.0000023358,0.0000023303,0.0000023296, +0.0000023328,0.0000023365,0.0000023382,0.0000023387,0.0000023409, +0.0000023449,0.0000023486,0.0000023521,0.0000023574,0.0000023635, +0.0000023689,0.0000023730,0.0000023759,0.0000023783,0.0000023812, +0.0000023840,0.0000023857,0.0000023861,0.0000023864,0.0000023866, +0.0000023859,0.0000023835,0.0000023801,0.0000023771,0.0000023747, +0.0000023738,0.0000023739,0.0000023745,0.0000023766,0.0000023816, +0.0000023872,0.0000023893,0.0000023883,0.0000023867,0.0000023863, +0.0000023894,0.0000023993,0.0000024092,0.0000024127,0.0000024102, +0.0000024092,0.0000024197,0.0000024439,0.0000024675,0.0000024876, +0.0000025049,0.0000025170,0.0000025235,0.0000025255,0.0000025237, +0.0000025171,0.0000025102,0.0000025078,0.0000025090,0.0000025096, +0.0000025074,0.0000025022,0.0000024959,0.0000024899,0.0000024822, +0.0000024730,0.0000024636,0.0000024554,0.0000024501,0.0000024483, +0.0000024471,0.0000024433,0.0000024342,0.0000024166,0.0000023903, +0.0000023636,0.0000023459,0.0000023383,0.0000023361,0.0000023356, +0.0000023345,0.0000023322,0.0000023302,0.0000023297,0.0000023316, +0.0000023342,0.0000023341,0.0000023299,0.0000023207,0.0000023119, +0.0000023080,0.0000023081,0.0000023088,0.0000023083,0.0000023074, +0.0000023082,0.0000023128,0.0000023177,0.0000023239,0.0000023310, +0.0000023383,0.0000023439,0.0000023461,0.0000023456,0.0000023443, +0.0000023452,0.0000023500,0.0000023564,0.0000023618,0.0000023656, +0.0000023694,0.0000023748,0.0000023815,0.0000023874,0.0000023913, +0.0000023940,0.0000023956,0.0000023968,0.0000023987,0.0000024019, +0.0000024054,0.0000024083,0.0000024113,0.0000024158,0.0000024220, +0.0000024292,0.0000024361,0.0000024420,0.0000024462,0.0000024493, +0.0000024530,0.0000024580,0.0000024638,0.0000024687,0.0000024716, +0.0000024727,0.0000024730,0.0000024737,0.0000024764,0.0000024811, +0.0000024863,0.0000024911,0.0000024952,0.0000024987,0.0000025012, +0.0000025024,0.0000025020,0.0000025003,0.0000024963,0.0000024903, +0.0000024839,0.0000024778,0.0000024718,0.0000024663,0.0000024622, +0.0000024601,0.0000024594,0.0000024575,0.0000024539,0.0000024499, +0.0000024478,0.0000024485,0.0000024521,0.0000024566,0.0000024588, +0.0000024573,0.0000024539,0.0000024505,0.0000024483,0.0000024484, +0.0000024499,0.0000024527,0.0000024560,0.0000024579,0.0000024578, +0.0000024541,0.0000024477,0.0000024419,0.0000024376,0.0000024347, +0.0000024312,0.0000024258,0.0000024188,0.0000024096,0.0000023970, +0.0000023821,0.0000023692,0.0000023629,0.0000023633,0.0000023681, +0.0000023731,0.0000023755,0.0000023744,0.0000023718,0.0000023701, +0.0000023707,0.0000023734,0.0000023763,0.0000023779,0.0000023773, +0.0000023771,0.0000023789,0.0000023838,0.0000023906,0.0000023971, +0.0000024025,0.0000024074,0.0000024114,0.0000024154,0.0000024205, +0.0000024269,0.0000024335,0.0000024402,0.0000024472,0.0000024529, +0.0000024567,0.0000024591,0.0000024607,0.0000024615,0.0000024620, +0.0000024617,0.0000024588,0.0000024513,0.0000024361,0.0000024127, +0.0000023911,0.0000023845,0.0000023886,0.0000023907,0.0000023896, +0.0000023906,0.0000023923,0.0000023911,0.0000023863,0.0000023815, +0.0000023785,0.0000023774,0.0000023764,0.0000023744,0.0000023732, +0.0000023743,0.0000023777,0.0000023800,0.0000023775,0.0000023700, +0.0000023608,0.0000023507,0.0000023396,0.0000023287,0.0000023193, +0.0000023129,0.0000023112,0.0000023106,0.0000023103,0.0000023108, +0.0000023130,0.0000023163,0.0000023209,0.0000023247,0.0000023255, +0.0000023240,0.0000023195,0.0000023136,0.0000023080,0.0000023041, +0.0000023026,0.0000023024,0.0000023068,0.0000023125,0.0000023169, +0.0000023222,0.0000023298,0.0000023334,0.0000023300,0.0000023304, +0.0000023471,0.0000023742,0.0000023909,0.0000023966,0.0000023944, +0.0000023895,0.0000023851,0.0000023818,0.0000023800,0.0000023796, +0.0000023808,0.0000023842,0.0000023865,0.0000023879,0.0000023894, +0.0000023907,0.0000023944,0.0000024049,0.0000024180,0.0000024285, +0.0000024316,0.0000024287,0.0000024254,0.0000024223,0.0000024207, +0.0000024207,0.0000024216,0.0000024219,0.0000024224,0.0000024222, +0.0000024225,0.0000024226,0.0000024212,0.0000024179,0.0000024137, +0.0000024088,0.0000024044,0.0000023997,0.0000023926,0.0000023838, +0.0000023743,0.0000023642,0.0000023582,0.0000023562,0.0000023571, +0.0000023608,0.0000023637,0.0000023628,0.0000023576,0.0000023514, +0.0000023442,0.0000023374,0.0000023333,0.0000023334,0.0000023341, +0.0000023327,0.0000023296,0.0000023245,0.0000023176,0.0000023101, +0.0000023028,0.0000022952,0.0000022893,0.0000022863,0.0000022850, +0.0000022854,0.0000022877,0.0000022907,0.0000022932,0.0000022946, +0.0000022917,0.0000022810,0.0000022648,0.0000022489,0.0000022394, +0.0000022366,0.0000022365,0.0000022356,0.0000022344,0.0000022336, +0.0000022347,0.0000022354,0.0000022342,0.0000022316,0.0000022275, +0.0000022240,0.0000022226,0.0000022221,0.0000022230,0.0000022243, +0.0000022257,0.0000022285,0.0000022333,0.0000022437,0.0000022599, +0.0000022736,0.0000022816,0.0000022846,0.0000022842,0.0000022835, +0.0000022785,0.0000022664,0.0000022544,0.0000022479,0.0000022452, +0.0000022454,0.0000022447,0.0000022442,0.0000022548,0.0000022776, +0.0000022996,0.0000023099,0.0000023090,0.0000023040,0.0000023003, +0.0000022980,0.0000022911,0.0000022799,0.0000022696,0.0000022627, +0.0000022589,0.0000022584,0.0000022595,0.0000022596,0.0000022580, +0.0000022550,0.0000022505,0.0000022445,0.0000022376,0.0000022310, +0.0000022274,0.0000022283,0.0000022312,0.0000022364,0.0000022425, +0.0000022479,0.0000022506,0.0000022500,0.0000022459,0.0000022394, +0.0000022343,0.0000022368,0.0000022494,0.0000022691,0.0000022863, +0.0000022988,0.0000023090,0.0000023172,0.0000023209,0.0000023205, +0.0000023164,0.0000023095,0.0000023005,0.0000022910,0.0000022822, +0.0000022765,0.0000022765,0.0000022860,0.0000023042,0.0000023177, +0.0000023207,0.0000023195,0.0000023247,0.0000023348,0.0000023413, +0.0000023551,0.0000023754,0.0000023857,0.0000023893,0.0000023932, +0.0000023971,0.0000024047,0.0000024147,0.0000024214,0.0000024221, +0.0000024146,0.0000024012,0.0000024025,0.0000024218,0.0000024433, +0.0000024592,0.0000024716,0.0000024812,0.0000024869,0.0000024868, +0.0000024735,0.0000024489,0.0000024303,0.0000024297,0.0000024414, +0.0000024532,0.0000024545,0.0000024477,0.0000024414,0.0000024356, +0.0000024248,0.0000024083,0.0000023914,0.0000023790,0.0000023687, +0.0000023620,0.0000023646,0.0000023753,0.0000023841,0.0000023987, +0.0000024114,0.0000024436,0.0000024794,0.0000024910,0.0000024785, +0.0000024993,0.0000025748,0.0000026200,0.0000026137,0.0000025517, +0.0000024897,0.0000024658,0.0000024609,0.0000024608,0.0000024521, +0.0000024281,0.0000024082,0.0000024038,0.0000024042,0.0000024067, +0.0000024151,0.0000024273,0.0000024394,0.0000024484,0.0000024505, +0.0000024462,0.0000024379,0.0000024333,0.0000024344,0.0000024383, +0.0000024420,0.0000024443,0.0000024459,0.0000024466,0.0000024473, +0.0000024486,0.0000024492,0.0000024475,0.0000024438,0.0000024397, +0.0000024356,0.0000024339,0.0000024345,0.0000024359,0.0000024367, +0.0000024370,0.0000024357,0.0000024293,0.0000024199,0.0000024104, +0.0000024033,0.0000024007,0.0000024007,0.0000024019,0.0000024018, +0.0000023989,0.0000023935,0.0000023869,0.0000023798,0.0000023732, +0.0000023667,0.0000023600,0.0000023543,0.0000023505,0.0000023485, +0.0000023466,0.0000023444,0.0000023409,0.0000023360,0.0000023298, +0.0000023229,0.0000023159,0.0000023108,0.0000023099,0.0000023137, +0.0000023204,0.0000023278,0.0000023347,0.0000023415,0.0000023482, +0.0000023556,0.0000023639,0.0000023731,0.0000023830,0.0000023929, +0.0000024019,0.0000024099,0.0000024175,0.0000024242,0.0000024296, +0.0000024336,0.0000024365,0.0000024388,0.0000024407,0.0000024421, +0.0000024429,0.0000024432,0.0000024426,0.0000024414,0.0000024395, +0.0000024366,0.0000024328,0.0000024279,0.0000024219,0.0000024144, +0.0000024050,0.0000023940,0.0000023825,0.0000023715,0.0000023617, +0.0000023537,0.0000023479,0.0000023447,0.0000023443,0.0000023441, +0.0000023436,0.0000023425,0.0000023413,0.0000023397,0.0000023388, +0.0000023388,0.0000023401,0.0000023438,0.0000023485,0.0000023529, +0.0000023556,0.0000023566,0.0000023571,0.0000023584,0.0000023611, +0.0000023647,0.0000023674,0.0000023684,0.0000023685,0.0000023682, +0.0000023679,0.0000023670,0.0000023650,0.0000023614,0.0000023555, +0.0000023450,0.0000023283,0.0000023073,0.0000022877,0.0000022758, +0.0000022688,0.0000022566,0.0000022419,0.0000022356,0.0000022370, +0.0000022413,0.0000022462,0.0000022498,0.0000022510,0.0000022507, +0.0000022493,0.0000022469,0.0000022438,0.0000022399,0.0000022357, +0.0000022334,0.0000022332,0.0000022319,0.0000022269,0.0000022177, +0.0000022078,0.0000022019,0.0000021988,0.0000021972,0.0000021987, +0.0000022008,0.0000022007,0.0000022019,0.0000022069,0.0000022110, +0.0000022171,0.0000022297,0.0000022339,0.0000022237,0.0000022194, +0.0000022316,0.0000022434,0.0000022441,0.0000022425,0.0000022494, +0.0000022658,0.0000022832,0.0000022961,0.0000023082,0.0000023250, +0.0000023445,0.0000023560,0.0000023549,0.0000023477,0.0000023393, +0.0000023316,0.0000023290,0.0000023312,0.0000023380,0.0000023458, +0.0000023520,0.0000023564,0.0000023606,0.0000023648,0.0000023675, +0.0000023678,0.0000023677,0.0000023741,0.0000023917,0.0000024116, +0.0000024246,0.0000024332,0.0000024409,0.0000024464,0.0000024505, +0.0000024567,0.0000024657,0.0000024722,0.0000024727,0.0000024681, +0.0000024589,0.0000024479,0.0000024395,0.0000024360,0.0000024365, +0.0000024385,0.0000024397,0.0000024398,0.0000024388,0.0000024364, +0.0000024320,0.0000024248,0.0000024151,0.0000024051,0.0000023970, +0.0000023907,0.0000023839,0.0000023751,0.0000023658,0.0000023583, +0.0000023532,0.0000023499,0.0000023489,0.0000023491,0.0000023502, +0.0000023517,0.0000023529,0.0000023537,0.0000023544,0.0000023553, +0.0000023575,0.0000023612,0.0000023655,0.0000023701,0.0000023748, +0.0000023793,0.0000023835,0.0000023874,0.0000023907,0.0000023932, +0.0000023959,0.0000024000,0.0000024055,0.0000024114,0.0000024167, +0.0000024197,0.0000024194,0.0000024155,0.0000024099,0.0000024055, +0.0000024045,0.0000024063,0.0000024089,0.0000024109,0.0000024143, +0.0000024224,0.0000024367,0.0000024544,0.0000024704,0.0000024820, +0.0000024895,0.0000024927,0.0000024914,0.0000024889,0.0000024897, +0.0000024958,0.0000025043,0.0000025111,0.0000025142,0.0000025142, +0.0000025120,0.0000025113,0.0000025136,0.0000025183,0.0000025228, +0.0000025245,0.0000025255,0.0000025303,0.0000025404,0.0000025506, +0.0000025567,0.0000025602,0.0000025637,0.0000025670,0.0000025700, +0.0000025732,0.0000025753,0.0000025762,0.0000025780,0.0000025810, +0.0000025827,0.0000025821,0.0000025800,0.0000025784,0.0000025779, +0.0000025783,0.0000025790,0.0000025798,0.0000025804,0.0000025802, +0.0000025791,0.0000025774,0.0000025753,0.0000025732,0.0000025709, +0.0000025681,0.0000025647,0.0000025626,0.0000025623,0.0000025622, +0.0000025608,0.0000025590,0.0000025589,0.0000025607,0.0000025617, +0.0000025602,0.0000025454,0.0000025178,0.0000024911,0.0000024649, +0.0000024339,0.0000024136,0.0000024120,0.0000024197,0.0000024260, +0.0000024237,0.0000024148,0.0000024078,0.0000024078,0.0000024205, +0.0000024438,0.0000024620,0.0000024719,0.0000024938,0.0000025353, +0.0000025707,0.0000025825,0.0000025845,0.0000025902,0.0000025980, +0.0000026030,0.0000026049,0.0000026048,0.0000026033,0.0000026021, +0.0000026012,0.0000025994,0.0000025974,0.0000025972,0.0000025995, +0.0000026049,0.0000026124,0.0000026197,0.0000026244,0.0000026261, +0.0000026264,0.0000026263,0.0000026263,0.0000026270,0.0000026283, +0.0000026287,0.0000026264,0.0000026203,0.0000026149,0.0000026130, +0.0000026109,0.0000026044,0.0000025966,0.0000025930,0.0000025930, +0.0000025953,0.0000025991,0.0000026005,0.0000025992,0.0000025968, +0.0000025893,0.0000025738,0.0000025604,0.0000025478,0.0000025254, +0.0000025039,0.0000024948,0.0000024889,0.0000024687,0.0000024331, +0.0000024049,0.0000023931,0.0000023806,0.0000023478,0.0000023008, +0.0000022632,0.0000022410,0.0000022260,0.0000022144,0.0000022076, +0.0000022062,0.0000022080,0.0000022097,0.0000022099,0.0000022085, +0.0000022058,0.0000022015,0.0000021962,0.0000021904,0.0000021844, +0.0000021784,0.0000021733,0.0000021700,0.0000021680,0.0000021664, +0.0000021656,0.0000021650,0.0000021637,0.0000021618,0.0000021620, +0.0000021643,0.0000021699,0.0000021779,0.0000021870,0.0000021953, +0.0000022025,0.0000022092,0.0000022146,0.0000022172,0.0000022173, +0.0000022161,0.0000022153,0.0000022167,0.0000022184,0.0000022185, +0.0000022186,0.0000022230,0.0000022321,0.0000022421,0.0000022495, +0.0000022536,0.0000022552,0.0000022550,0.0000022538,0.0000022518, +0.0000022499,0.0000022491,0.0000022493,0.0000022492,0.0000022483, +0.0000022468,0.0000022450,0.0000022429,0.0000022401,0.0000022361, +0.0000022311,0.0000022258,0.0000022205,0.0000022147,0.0000022097, +0.0000022058,0.0000022063,0.0000022101,0.0000022147,0.0000022195, +0.0000022247,0.0000022295,0.0000022332,0.0000022363,0.0000022392, +0.0000022425,0.0000022456,0.0000022482,0.0000022500,0.0000022502, +0.0000022500,0.0000022490,0.0000022497,0.0000022499,0.0000022486, +0.0000022456,0.0000022413,0.0000022361,0.0000022305,0.0000022246, +0.0000022185,0.0000022134,0.0000022092,0.0000022066,0.0000022067, +0.0000022094,0.0000022149,0.0000022217,0.0000022292,0.0000022378, +0.0000022464,0.0000022531,0.0000022577,0.0000022610,0.0000022634, +0.0000022645,0.0000022648,0.0000022645,0.0000022630,0.0000022591, +0.0000022539,0.0000022501,0.0000022485,0.0000022483,0.0000022477, +0.0000022474,0.0000022487,0.0000022502,0.0000022507,0.0000022507, +0.0000022528,0.0000022591,0.0000022654,0.0000022673,0.0000022656, +0.0000022612,0.0000022577,0.0000022568,0.0000022552,0.0000022521, +0.0000022510,0.0000022520,0.0000022532,0.0000022528,0.0000022524, +0.0000022546,0.0000022591,0.0000022633,0.0000022650,0.0000022645, +0.0000022630,0.0000022606,0.0000022553,0.0000022465,0.0000022356, +0.0000022244,0.0000022136,0.0000022053,0.0000022026,0.0000022034, +0.0000022028,0.0000022011,0.0000022022,0.0000022083,0.0000022170, +0.0000022255,0.0000022332,0.0000022392,0.0000022411,0.0000022381, +0.0000022299,0.0000022207,0.0000022134,0.0000022089,0.0000022074, +0.0000022074,0.0000022076,0.0000022071,0.0000022066,0.0000022073, +0.0000022095,0.0000022123,0.0000022142,0.0000022140,0.0000022110, +0.0000022049,0.0000021971,0.0000021888,0.0000021804,0.0000021736, +0.0000021710,0.0000021724,0.0000021770,0.0000021826,0.0000021878, +0.0000021913,0.0000021926,0.0000021926,0.0000021925,0.0000021920, +0.0000021906,0.0000021864,0.0000021779,0.0000021684,0.0000021619, +0.0000021601,0.0000021611,0.0000021622,0.0000021626,0.0000021631, +0.0000021635,0.0000021645,0.0000021662,0.0000021655,0.0000021590, +0.0000021508,0.0000021459,0.0000021434,0.0000021425,0.0000021429, +0.0000021440,0.0000021436,0.0000021399,0.0000021337,0.0000021266, +0.0000021234,0.0000021267,0.0000021413,0.0000021622,0.0000021774, +0.0000021857,0.0000021929,0.0000022014,0.0000022090,0.0000022131, +0.0000022150,0.0000022174,0.0000022204,0.0000022234,0.0000022247, +0.0000022231,0.0000022214,0.0000022243,0.0000022293,0.0000022314, +0.0000022415,0.0000022675,0.0000022964,0.0000023146,0.0000023206, +0.0000023221,0.0000023248,0.0000023266,0.0000023263,0.0000023261, +0.0000023253,0.0000023219,0.0000023164,0.0000023113,0.0000023074, +0.0000023043,0.0000023017,0.0000022994,0.0000022977,0.0000022964, +0.0000022954,0.0000022944,0.0000022931,0.0000022917,0.0000022898, +0.0000022868,0.0000022833,0.0000022796,0.0000022755,0.0000022720, +0.0000022706,0.0000022714,0.0000022735,0.0000022739,0.0000022709, +0.0000022620,0.0000022494,0.0000022390,0.0000022319,0.0000022247, +0.0000022156,0.0000022070,0.0000022017,0.0000021985,0.0000021993, +0.0000021960,0.0000021908,0.0000021843,0.0000021790,0.0000021772, +0.0000021776,0.0000021863,0.0000022013,0.0000022183,0.0000022312, +0.0000022386,0.0000022441,0.0000022506,0.0000022576,0.0000022642, +0.0000022729,0.0000022872,0.0000023049,0.0000023190,0.0000023245, +0.0000023238,0.0000023213,0.0000023194,0.0000023202,0.0000023233, +0.0000023237,0.0000023173,0.0000023084,0.0000023060,0.0000023092, +0.0000023153,0.0000023208,0.0000023257,0.0000023348,0.0000023430, +0.0000023405,0.0000023270,0.0000023190,0.0000023210,0.0000023276, +0.0000023332,0.0000023384,0.0000023447,0.0000023500,0.0000023513, +0.0000023489,0.0000023422,0.0000023359,0.0000023322,0.0000023299, +0.0000023278,0.0000023252,0.0000023223,0.0000023193,0.0000023153, +0.0000023104,0.0000023056,0.0000023020,0.0000022992,0.0000022962, +0.0000022919,0.0000022865,0.0000022825,0.0000022809,0.0000022802, +0.0000022794,0.0000022791,0.0000022790,0.0000022782,0.0000022767, +0.0000022753,0.0000022744,0.0000022751,0.0000022776,0.0000022803, +0.0000022827,0.0000022842,0.0000022844,0.0000022847,0.0000022864, +0.0000022872,0.0000022874,0.0000022889,0.0000022926,0.0000022991, +0.0000023059,0.0000023107,0.0000023180,0.0000023310,0.0000023453, +0.0000023531,0.0000023549,0.0000023534,0.0000023534,0.0000023565, +0.0000023627,0.0000023691,0.0000023749,0.0000023773,0.0000023758, +0.0000023715,0.0000023646,0.0000023572,0.0000023505,0.0000023437, +0.0000023358,0.0000023298,0.0000023285,0.0000023307,0.0000023351, +0.0000023380,0.0000023399,0.0000023429,0.0000023465,0.0000023489, +0.0000023511,0.0000023548,0.0000023594,0.0000023638,0.0000023680, +0.0000023724,0.0000023766,0.0000023802,0.0000023824,0.0000023832, +0.0000023834,0.0000023845,0.0000023857,0.0000023856,0.0000023847, +0.0000023835,0.0000023816,0.0000023785,0.0000023765,0.0000023760, +0.0000023758,0.0000023766,0.0000023804,0.0000023862,0.0000023891, +0.0000023882,0.0000023862,0.0000023848,0.0000023857,0.0000023931, +0.0000024031,0.0000024080,0.0000024071,0.0000024036,0.0000024083, +0.0000024294,0.0000024568,0.0000024802,0.0000024991,0.0000025130, +0.0000025207,0.0000025230,0.0000025214,0.0000025156,0.0000025092, +0.0000025067,0.0000025082,0.0000025093,0.0000025074,0.0000025024, +0.0000024961,0.0000024901,0.0000024832,0.0000024745,0.0000024656, +0.0000024574,0.0000024511,0.0000024480,0.0000024469,0.0000024448, +0.0000024384,0.0000024247,0.0000024035,0.0000023795,0.0000023598, +0.0000023472,0.0000023406,0.0000023383,0.0000023377,0.0000023362, +0.0000023340,0.0000023333,0.0000023359,0.0000023406,0.0000023424, +0.0000023391,0.0000023293,0.0000023176,0.0000023107,0.0000023102, +0.0000023116,0.0000023130,0.0000023140,0.0000023151,0.0000023170, +0.0000023186,0.0000023209,0.0000023248,0.0000023307,0.0000023377, +0.0000023437,0.0000023457,0.0000023462,0.0000023460,0.0000023476, +0.0000023516,0.0000023570,0.0000023624,0.0000023661,0.0000023683, +0.0000023711,0.0000023757,0.0000023814,0.0000023866,0.0000023902, +0.0000023925,0.0000023950,0.0000023983,0.0000024019,0.0000024054, +0.0000024083,0.0000024111,0.0000024151,0.0000024206,0.0000024276, +0.0000024351,0.0000024411,0.0000024449,0.0000024473,0.0000024500, +0.0000024538,0.0000024585,0.0000024634,0.0000024679,0.0000024713, +0.0000024737,0.0000024764,0.0000024794,0.0000024827,0.0000024862, +0.0000024897,0.0000024935,0.0000024971,0.0000024997,0.0000025007, +0.0000024999,0.0000024970,0.0000024919,0.0000024855,0.0000024793, +0.0000024735,0.0000024677,0.0000024624,0.0000024589,0.0000024575, +0.0000024558,0.0000024531,0.0000024501,0.0000024484,0.0000024485, +0.0000024509,0.0000024550,0.0000024580,0.0000024576,0.0000024557, +0.0000024545,0.0000024547,0.0000024561,0.0000024585,0.0000024613, +0.0000024636,0.0000024651,0.0000024649,0.0000024621,0.0000024565, +0.0000024491,0.0000024417,0.0000024358,0.0000024319,0.0000024297, +0.0000024280,0.0000024249,0.0000024181,0.0000024064,0.0000023910, +0.0000023759,0.0000023654,0.0000023619,0.0000023629,0.0000023688, +0.0000023749,0.0000023780,0.0000023776,0.0000023765,0.0000023774, +0.0000023799,0.0000023808,0.0000023792,0.0000023762,0.0000023750, +0.0000023766,0.0000023822,0.0000023890,0.0000023952,0.0000024016, +0.0000024083,0.0000024141,0.0000024189,0.0000024238,0.0000024286, +0.0000024332,0.0000024385,0.0000024439,0.0000024489,0.0000024530, +0.0000024563,0.0000024590,0.0000024603,0.0000024584,0.0000024520, +0.0000024395,0.0000024189,0.0000023966,0.0000023862,0.0000023872, +0.0000023900,0.0000023870,0.0000023860,0.0000023895,0.0000023912, +0.0000023906,0.0000023870,0.0000023803,0.0000023743,0.0000023725, +0.0000023728,0.0000023722,0.0000023711,0.0000023712,0.0000023732, +0.0000023767,0.0000023778,0.0000023734,0.0000023655,0.0000023540, +0.0000023381,0.0000023230,0.0000023128,0.0000023069,0.0000023057, +0.0000023047,0.0000023039,0.0000023052,0.0000023069,0.0000023090, +0.0000023135,0.0000023179,0.0000023199,0.0000023188,0.0000023145, +0.0000023083,0.0000023033,0.0000023021,0.0000023014,0.0000022996, +0.0000022996,0.0000023024,0.0000023086,0.0000023136,0.0000023185, +0.0000023265,0.0000023354,0.0000023377,0.0000023322,0.0000023334, +0.0000023501,0.0000023737,0.0000023854,0.0000023865,0.0000023825, +0.0000023780,0.0000023756,0.0000023758,0.0000023769,0.0000023796, +0.0000023831,0.0000023861,0.0000023893,0.0000023902,0.0000023895, +0.0000023897,0.0000023939,0.0000024022,0.0000024117,0.0000024183, +0.0000024203,0.0000024197,0.0000024172,0.0000024163,0.0000024177, +0.0000024195,0.0000024218,0.0000024246,0.0000024260,0.0000024252, +0.0000024227,0.0000024184,0.0000024128,0.0000024064,0.0000023994, +0.0000023923,0.0000023855,0.0000023773,0.0000023695,0.0000023625, +0.0000023584,0.0000023581,0.0000023598,0.0000023624,0.0000023646, +0.0000023637,0.0000023578,0.0000023486,0.0000023408,0.0000023358, +0.0000023337,0.0000023326,0.0000023306,0.0000023247,0.0000023168, +0.0000023087,0.0000023019,0.0000022973,0.0000022941,0.0000022897, +0.0000022851,0.0000022822,0.0000022802,0.0000022794,0.0000022813, +0.0000022842,0.0000022854,0.0000022816,0.0000022709,0.0000022562, +0.0000022435,0.0000022363,0.0000022346,0.0000022353,0.0000022357, +0.0000022359,0.0000022365,0.0000022379,0.0000022399,0.0000022417, +0.0000022404,0.0000022358,0.0000022310,0.0000022267,0.0000022225, +0.0000022202,0.0000022214,0.0000022245,0.0000022252,0.0000022266, +0.0000022316,0.0000022434,0.0000022607,0.0000022737,0.0000022784, +0.0000022799,0.0000022808,0.0000022808,0.0000022741,0.0000022610, +0.0000022511,0.0000022481,0.0000022472,0.0000022471,0.0000022457, +0.0000022471,0.0000022612,0.0000022851,0.0000023038,0.0000023104, +0.0000023087,0.0000023019,0.0000022975,0.0000022950,0.0000022885, +0.0000022776,0.0000022671,0.0000022594,0.0000022550,0.0000022539, +0.0000022555,0.0000022565,0.0000022549,0.0000022508,0.0000022452, +0.0000022386,0.0000022322,0.0000022283,0.0000022275,0.0000022294, +0.0000022331,0.0000022379,0.0000022435,0.0000022484,0.0000022503, +0.0000022490,0.0000022434,0.0000022367,0.0000022342,0.0000022400, +0.0000022572,0.0000022783,0.0000022955,0.0000023069,0.0000023139, +0.0000023185,0.0000023214,0.0000023218,0.0000023192,0.0000023135, +0.0000023049,0.0000022943,0.0000022837,0.0000022766,0.0000022761, +0.0000022828,0.0000022979,0.0000023124,0.0000023166,0.0000023142, +0.0000023161,0.0000023265,0.0000023344,0.0000023443,0.0000023653, +0.0000023814,0.0000023867,0.0000023917,0.0000023959,0.0000024002, +0.0000024095,0.0000024198,0.0000024244,0.0000024222,0.0000024078, +0.0000023954,0.0000024003,0.0000024212,0.0000024416,0.0000024522, +0.0000024576,0.0000024627,0.0000024657,0.0000024615,0.0000024471, +0.0000024325,0.0000024283,0.0000024371,0.0000024523,0.0000024587, +0.0000024552,0.0000024458,0.0000024395,0.0000024338,0.0000024228, +0.0000024066,0.0000023904,0.0000023785,0.0000023682,0.0000023612, +0.0000023622,0.0000023715,0.0000023793,0.0000023923,0.0000024046, +0.0000024276,0.0000024643,0.0000024853,0.0000024810,0.0000024726, +0.0000025261,0.0000025979,0.0000026180,0.0000025923,0.0000025230, +0.0000024740,0.0000024592,0.0000024570,0.0000024575,0.0000024496, +0.0000024279,0.0000024089,0.0000024012,0.0000024003,0.0000024044, +0.0000024136,0.0000024258,0.0000024386,0.0000024491,0.0000024521, +0.0000024477,0.0000024388,0.0000024334,0.0000024328,0.0000024342, +0.0000024380,0.0000024416,0.0000024442,0.0000024463,0.0000024482, +0.0000024491,0.0000024492,0.0000024482,0.0000024462,0.0000024429, +0.0000024385,0.0000024346,0.0000024323,0.0000024317,0.0000024340, +0.0000024360,0.0000024347,0.0000024310,0.0000024249,0.0000024185, +0.0000024142,0.0000024116,0.0000024113,0.0000024127,0.0000024133, +0.0000024104,0.0000024048,0.0000023980,0.0000023911,0.0000023840, +0.0000023762,0.0000023676,0.0000023596,0.0000023531,0.0000023483, +0.0000023451,0.0000023427,0.0000023397,0.0000023348,0.0000023283, +0.0000023203,0.0000023127,0.0000023076,0.0000023068,0.0000023079, +0.0000023124,0.0000023187,0.0000023251,0.0000023308,0.0000023364, +0.0000023426,0.0000023494,0.0000023566,0.0000023640,0.0000023711, +0.0000023776,0.0000023837,0.0000023897,0.0000023952,0.0000023997, +0.0000024032,0.0000024061,0.0000024089,0.0000024108,0.0000024117, +0.0000024116,0.0000024103,0.0000024079,0.0000024044,0.0000023998, +0.0000023943,0.0000023881,0.0000023816,0.0000023748,0.0000023679, +0.0000023608,0.0000023545,0.0000023494,0.0000023458,0.0000023438, +0.0000023430,0.0000023425,0.0000023431,0.0000023432,0.0000023424, +0.0000023410,0.0000023394,0.0000023391,0.0000023393,0.0000023412, +0.0000023447,0.0000023496,0.0000023542,0.0000023576,0.0000023599, +0.0000023615,0.0000023633,0.0000023652,0.0000023670,0.0000023689, +0.0000023704,0.0000023706,0.0000023697,0.0000023684,0.0000023676, +0.0000023673,0.0000023667,0.0000023644,0.0000023601,0.0000023537, +0.0000023420,0.0000023232,0.0000023008,0.0000022827,0.0000022733, +0.0000022648,0.0000022503,0.0000022373,0.0000022336,0.0000022345, +0.0000022378,0.0000022428,0.0000022476,0.0000022500,0.0000022494, +0.0000022462,0.0000022413,0.0000022366,0.0000022341,0.0000022340, +0.0000022351,0.0000022344,0.0000022293,0.0000022199,0.0000022094, +0.0000022028,0.0000022002,0.0000021992,0.0000022003,0.0000022019, +0.0000022008,0.0000021993,0.0000022006,0.0000022053,0.0000022092, +0.0000022173,0.0000022301,0.0000022319,0.0000022219,0.0000022208, +0.0000022342,0.0000022447,0.0000022449,0.0000022432,0.0000022492, +0.0000022666,0.0000022858,0.0000022985,0.0000023090,0.0000023255, +0.0000023444,0.0000023531,0.0000023508,0.0000023429,0.0000023338, +0.0000023277,0.0000023276,0.0000023331,0.0000023416,0.0000023499, +0.0000023567,0.0000023619,0.0000023656,0.0000023675,0.0000023675, +0.0000023673,0.0000023721,0.0000023880,0.0000024080,0.0000024225, +0.0000024316,0.0000024385,0.0000024437,0.0000024479,0.0000024531, +0.0000024612,0.0000024693,0.0000024720,0.0000024705,0.0000024645, +0.0000024542,0.0000024420,0.0000024324,0.0000024281,0.0000024283, +0.0000024300,0.0000024313,0.0000024316,0.0000024310,0.0000024288, +0.0000024246,0.0000024180,0.0000024091,0.0000023996,0.0000023914, +0.0000023839,0.0000023751,0.0000023640,0.0000023528,0.0000023442, +0.0000023379,0.0000023337,0.0000023324,0.0000023330,0.0000023344, +0.0000023356,0.0000023362,0.0000023365,0.0000023367,0.0000023372, +0.0000023383,0.0000023408,0.0000023442,0.0000023482,0.0000023524, +0.0000023572,0.0000023629,0.0000023693,0.0000023750,0.0000023792, +0.0000023829,0.0000023876,0.0000023933,0.0000023994,0.0000024057, +0.0000024113,0.0000024141,0.0000024129,0.0000024084,0.0000024034, +0.0000024004,0.0000023999,0.0000024010,0.0000024030,0.0000024064, +0.0000024129,0.0000024244,0.0000024401,0.0000024562,0.0000024695, +0.0000024802,0.0000024874,0.0000024890,0.0000024870,0.0000024861, +0.0000024904,0.0000024994,0.0000025079,0.0000025133,0.0000025150, +0.0000025139,0.0000025126,0.0000025140,0.0000025180,0.0000025222, +0.0000025236,0.0000025225,0.0000025233,0.0000025306,0.0000025411, +0.0000025480,0.0000025507,0.0000025526,0.0000025547,0.0000025572, +0.0000025602,0.0000025628,0.0000025652,0.0000025691,0.0000025741, +0.0000025773,0.0000025775,0.0000025768,0.0000025770,0.0000025779, +0.0000025786,0.0000025788,0.0000025781,0.0000025763,0.0000025740, +0.0000025718,0.0000025705,0.0000025696,0.0000025682,0.0000025662, +0.0000025640,0.0000025622,0.0000025615,0.0000025619,0.0000025617, +0.0000025603,0.0000025591,0.0000025598,0.0000025618,0.0000025625, +0.0000025599,0.0000025436,0.0000025159,0.0000024893,0.0000024621, +0.0000024308,0.0000024123,0.0000024139,0.0000024239,0.0000024288, +0.0000024242,0.0000024150,0.0000024105,0.0000024154,0.0000024350, +0.0000024569,0.0000024672,0.0000024794,0.0000025136,0.0000025556, +0.0000025775,0.0000025813,0.0000025835,0.0000025895,0.0000025964, +0.0000026007,0.0000026016,0.0000026004,0.0000025971,0.0000025940, +0.0000025916,0.0000025893,0.0000025881,0.0000025886,0.0000025912, +0.0000025960,0.0000026026,0.0000026089,0.0000026134,0.0000026158, +0.0000026167,0.0000026170,0.0000026181,0.0000026212,0.0000026252, +0.0000026267,0.0000026247,0.0000026188,0.0000026136,0.0000026111, +0.0000026069,0.0000025986,0.0000025910,0.0000025885,0.0000025893, +0.0000025931,0.0000025980,0.0000025992,0.0000025965,0.0000025931, +0.0000025850,0.0000025703,0.0000025593,0.0000025499,0.0000025288, +0.0000025056,0.0000024941,0.0000024875,0.0000024687,0.0000024332, +0.0000024026,0.0000023888,0.0000023751,0.0000023403,0.0000022913, +0.0000022534,0.0000022327,0.0000022198,0.0000022100,0.0000022054, +0.0000022059,0.0000022090,0.0000022117,0.0000022118,0.0000022105, +0.0000022075,0.0000022037,0.0000022001,0.0000021957,0.0000021903, +0.0000021844,0.0000021792,0.0000021755,0.0000021726,0.0000021695, +0.0000021665,0.0000021639,0.0000021604,0.0000021559,0.0000021523, +0.0000021518,0.0000021542,0.0000021621,0.0000021744,0.0000021867, +0.0000021965,0.0000022038,0.0000022093,0.0000022128,0.0000022145, +0.0000022144,0.0000022126,0.0000022121,0.0000022140,0.0000022170, +0.0000022184,0.0000022195,0.0000022210,0.0000022261,0.0000022340, +0.0000022419,0.0000022471,0.0000022489,0.0000022484,0.0000022465, +0.0000022433,0.0000022410,0.0000022398,0.0000022391,0.0000022382, +0.0000022367,0.0000022347,0.0000022321,0.0000022292,0.0000022252, +0.0000022207,0.0000022163,0.0000022124,0.0000022085,0.0000022049, +0.0000022026,0.0000022038,0.0000022076,0.0000022124,0.0000022176, +0.0000022228,0.0000022276,0.0000022315,0.0000022347,0.0000022368, +0.0000022379,0.0000022387,0.0000022399,0.0000022423,0.0000022431, +0.0000022422,0.0000022411,0.0000022414,0.0000022419,0.0000022410, +0.0000022389,0.0000022360,0.0000022327,0.0000022288,0.0000022239, +0.0000022182,0.0000022127,0.0000022078,0.0000022040,0.0000022020, +0.0000022017,0.0000022038,0.0000022101,0.0000022180,0.0000022258, +0.0000022342,0.0000022427,0.0000022496,0.0000022548,0.0000022592, +0.0000022627,0.0000022650,0.0000022661,0.0000022665,0.0000022654, +0.0000022622,0.0000022577,0.0000022538,0.0000022520,0.0000022515, +0.0000022506,0.0000022505,0.0000022509,0.0000022506,0.0000022499, +0.0000022503,0.0000022546,0.0000022620,0.0000022666,0.0000022666, +0.0000022631,0.0000022588,0.0000022574,0.0000022569,0.0000022543, +0.0000022516,0.0000022515,0.0000022533,0.0000022540,0.0000022531, +0.0000022532,0.0000022562,0.0000022607,0.0000022636,0.0000022640, +0.0000022628,0.0000022610,0.0000022583,0.0000022522,0.0000022426, +0.0000022313,0.0000022199,0.0000022098,0.0000022046,0.0000022049, +0.0000022054,0.0000022039,0.0000022045,0.0000022089,0.0000022161, +0.0000022236,0.0000022307,0.0000022370,0.0000022396,0.0000022373, +0.0000022302,0.0000022212,0.0000022137,0.0000022091,0.0000022073, +0.0000022073,0.0000022081,0.0000022091,0.0000022098,0.0000022109, +0.0000022127,0.0000022151,0.0000022172,0.0000022182,0.0000022179, +0.0000022155,0.0000022103,0.0000022034,0.0000021963,0.0000021890, +0.0000021824,0.0000021790,0.0000021799,0.0000021838,0.0000021886, +0.0000021930,0.0000021961,0.0000021972,0.0000021973,0.0000021977, +0.0000021978,0.0000021969,0.0000021936,0.0000021874,0.0000021799, +0.0000021728,0.0000021672,0.0000021640,0.0000021626,0.0000021620, +0.0000021624,0.0000021634,0.0000021641,0.0000021652,0.0000021659, +0.0000021636,0.0000021553,0.0000021457,0.0000021394,0.0000021380, +0.0000021388,0.0000021402,0.0000021399,0.0000021364,0.0000021301, +0.0000021222,0.0000021173,0.0000021180,0.0000021285,0.0000021506, +0.0000021729,0.0000021855,0.0000021929,0.0000022016,0.0000022105, +0.0000022152,0.0000022161,0.0000022170,0.0000022188,0.0000022214, +0.0000022245,0.0000022251,0.0000022223,0.0000022215,0.0000022262, +0.0000022305,0.0000022343,0.0000022501,0.0000022777,0.0000023022, +0.0000023154,0.0000023193,0.0000023214,0.0000023258,0.0000023287, +0.0000023287,0.0000023280,0.0000023272,0.0000023246,0.0000023195, +0.0000023138,0.0000023091,0.0000023056,0.0000023025,0.0000022997, +0.0000022970,0.0000022942,0.0000022916,0.0000022888,0.0000022868, +0.0000022852,0.0000022834,0.0000022809,0.0000022778,0.0000022746, +0.0000022718,0.0000022695,0.0000022682,0.0000022688,0.0000022715, +0.0000022737,0.0000022723,0.0000022631,0.0000022487,0.0000022364, +0.0000022281,0.0000022202,0.0000022117,0.0000022053,0.0000022017, +0.0000022007,0.0000021989,0.0000021958,0.0000021907,0.0000021847, +0.0000021792,0.0000021762,0.0000021772,0.0000021864,0.0000022040, +0.0000022217,0.0000022324,0.0000022375,0.0000022426,0.0000022494, +0.0000022561,0.0000022634,0.0000022760,0.0000022945,0.0000023111, +0.0000023182,0.0000023175,0.0000023155,0.0000023151,0.0000023182, +0.0000023218,0.0000023202,0.0000023129,0.0000023078,0.0000023093, +0.0000023141,0.0000023194,0.0000023237,0.0000023300,0.0000023409, +0.0000023438,0.0000023334,0.0000023183,0.0000023158,0.0000023205, +0.0000023275,0.0000023343,0.0000023410,0.0000023472,0.0000023506, +0.0000023493,0.0000023440,0.0000023382,0.0000023341,0.0000023310, +0.0000023279,0.0000023250,0.0000023221,0.0000023189,0.0000023154, +0.0000023115,0.0000023072,0.0000023028,0.0000022991,0.0000022960, +0.0000022923,0.0000022871,0.0000022812,0.0000022762,0.0000022731, +0.0000022715,0.0000022702,0.0000022695,0.0000022688,0.0000022671, +0.0000022652,0.0000022640,0.0000022638,0.0000022647,0.0000022671, +0.0000022700,0.0000022727,0.0000022744,0.0000022747,0.0000022748, +0.0000022766,0.0000022788,0.0000022799,0.0000022813,0.0000022841, +0.0000022909,0.0000023004,0.0000023073,0.0000023111,0.0000023171, +0.0000023293,0.0000023429,0.0000023527,0.0000023560,0.0000023549, +0.0000023546,0.0000023574,0.0000023621,0.0000023684,0.0000023736, +0.0000023754,0.0000023745,0.0000023707,0.0000023640,0.0000023568, +0.0000023506,0.0000023442,0.0000023369,0.0000023304,0.0000023281, +0.0000023297,0.0000023336,0.0000023374,0.0000023410,0.0000023445, +0.0000023473,0.0000023490,0.0000023504,0.0000023525,0.0000023553, +0.0000023588,0.0000023638,0.0000023695,0.0000023743,0.0000023778, +0.0000023797,0.0000023803,0.0000023810,0.0000023823,0.0000023840, +0.0000023851,0.0000023862,0.0000023869,0.0000023857,0.0000023826, +0.0000023806,0.0000023794,0.0000023779,0.0000023774,0.0000023796, +0.0000023844,0.0000023879,0.0000023877,0.0000023858,0.0000023834, +0.0000023824,0.0000023859,0.0000023949,0.0000024017,0.0000024026, +0.0000023991,0.0000023991,0.0000024148,0.0000024434,0.0000024707, +0.0000024916,0.0000025075,0.0000025178,0.0000025211,0.0000025196, +0.0000025139,0.0000025077,0.0000025057,0.0000025073,0.0000025094, +0.0000025090,0.0000025048,0.0000024982,0.0000024916,0.0000024850, +0.0000024772,0.0000024688,0.0000024606,0.0000024537,0.0000024489, +0.0000024468,0.0000024453,0.0000024406,0.0000024300,0.0000024136, +0.0000023944,0.0000023769,0.0000023629,0.0000023529,0.0000023480, +0.0000023468,0.0000023456,0.0000023432,0.0000023418,0.0000023441, +0.0000023482,0.0000023499,0.0000023477,0.0000023388,0.0000023254, +0.0000023148,0.0000023114,0.0000023127,0.0000023152,0.0000023182, +0.0000023209,0.0000023229,0.0000023237,0.0000023244,0.0000023250, +0.0000023267,0.0000023304,0.0000023362,0.0000023420,0.0000023463, +0.0000023485,0.0000023495,0.0000023514,0.0000023535,0.0000023575, +0.0000023618,0.0000023648,0.0000023660,0.0000023670,0.0000023701, +0.0000023755,0.0000023818,0.0000023875,0.0000023919,0.0000023950, +0.0000023977,0.0000024004,0.0000024030,0.0000024058,0.0000024095, +0.0000024143,0.0000024206,0.0000024273,0.0000024334,0.0000024381, +0.0000024416,0.0000024443,0.0000024472,0.0000024505,0.0000024548, +0.0000024599,0.0000024652,0.0000024701,0.0000024740,0.0000024767, +0.0000024784,0.0000024799,0.0000024820,0.0000024855,0.0000024900, +0.0000024941,0.0000024968,0.0000024976,0.0000024963,0.0000024933, +0.0000024885,0.0000024831,0.0000024773,0.0000024709,0.0000024639, +0.0000024585,0.0000024553,0.0000024528,0.0000024506,0.0000024487, +0.0000024478,0.0000024481,0.0000024503,0.0000024539,0.0000024564, +0.0000024569,0.0000024568,0.0000024576,0.0000024591,0.0000024610, +0.0000024645,0.0000024685,0.0000024712,0.0000024721,0.0000024715, +0.0000024694,0.0000024657,0.0000024604,0.0000024537,0.0000024461, +0.0000024386,0.0000024325,0.0000024294,0.0000024282,0.0000024264, +0.0000024226,0.0000024147,0.0000024031,0.0000023899,0.0000023767, +0.0000023666,0.0000023650,0.0000023672,0.0000023737,0.0000023798, +0.0000023835,0.0000023852,0.0000023860,0.0000023859,0.0000023851, +0.0000023821,0.0000023772,0.0000023737,0.0000023743,0.0000023793, +0.0000023858,0.0000023920,0.0000023991,0.0000024079,0.0000024163, +0.0000024234,0.0000024289,0.0000024335,0.0000024379,0.0000024425, +0.0000024473,0.0000024517,0.0000024548,0.0000024561,0.0000024553, +0.0000024515,0.0000024420,0.0000024246,0.0000024029,0.0000023879, +0.0000023871,0.0000023917,0.0000023903,0.0000023851,0.0000023866, +0.0000023909,0.0000023935,0.0000023946,0.0000023908,0.0000023801, +0.0000023711,0.0000023684,0.0000023693,0.0000023707,0.0000023712, +0.0000023707,0.0000023708,0.0000023727,0.0000023755,0.0000023751, +0.0000023699,0.0000023593,0.0000023424,0.0000023241,0.0000023114, +0.0000023041,0.0000023015,0.0000023010,0.0000023010,0.0000023020, +0.0000023036,0.0000023043,0.0000023067,0.0000023100,0.0000023132, +0.0000023142,0.0000023125,0.0000023068,0.0000023005,0.0000022972, +0.0000022959,0.0000022968,0.0000022989,0.0000023001,0.0000023010, +0.0000023049,0.0000023120,0.0000023168,0.0000023225,0.0000023328, +0.0000023406,0.0000023390,0.0000023282,0.0000023296,0.0000023484, +0.0000023678,0.0000023743,0.0000023729,0.0000023700,0.0000023696, +0.0000023692,0.0000023703,0.0000023724,0.0000023758,0.0000023814, +0.0000023870,0.0000023889,0.0000023888,0.0000023889,0.0000023913, +0.0000023954,0.0000023995,0.0000024026,0.0000024044,0.0000024057, +0.0000024067,0.0000024084,0.0000024106,0.0000024135,0.0000024174, +0.0000024222,0.0000024251,0.0000024246,0.0000024220,0.0000024166, +0.0000024097,0.0000024016,0.0000023937,0.0000023858,0.0000023787, +0.0000023712,0.0000023651,0.0000023616,0.0000023602,0.0000023598, +0.0000023607,0.0000023620,0.0000023604,0.0000023539,0.0000023465, +0.0000023415,0.0000023377,0.0000023335,0.0000023274,0.0000023181, +0.0000023068,0.0000022980,0.0000022929,0.0000022902,0.0000022883, +0.0000022867,0.0000022838,0.0000022793,0.0000022760,0.0000022741, +0.0000022732,0.0000022733,0.0000022723,0.0000022670,0.0000022563, +0.0000022441,0.0000022347,0.0000022309,0.0000022303,0.0000022328, +0.0000022357,0.0000022399,0.0000022424,0.0000022434,0.0000022441, +0.0000022450,0.0000022459,0.0000022443,0.0000022387,0.0000022335, +0.0000022297,0.0000022239,0.0000022181,0.0000022186,0.0000022234, +0.0000022252,0.0000022257,0.0000022311,0.0000022447,0.0000022621, +0.0000022734,0.0000022763,0.0000022762,0.0000022775,0.0000022773, +0.0000022693,0.0000022571,0.0000022504,0.0000022483,0.0000022488, +0.0000022484,0.0000022471,0.0000022513,0.0000022693,0.0000022927, +0.0000023076,0.0000023101,0.0000023070,0.0000022998,0.0000022942, +0.0000022905,0.0000022841,0.0000022736,0.0000022627,0.0000022545, +0.0000022506,0.0000022501,0.0000022524,0.0000022540,0.0000022529, +0.0000022481,0.0000022420,0.0000022353,0.0000022298,0.0000022280, +0.0000022287,0.0000022325,0.0000022371,0.0000022413,0.0000022456, +0.0000022493,0.0000022503,0.0000022474,0.0000022403,0.0000022342, +0.0000022340,0.0000022452,0.0000022667,0.0000022887,0.0000023044, +0.0000023131,0.0000023165,0.0000023175,0.0000023200,0.0000023219, +0.0000023212,0.0000023171,0.0000023097,0.0000022986,0.0000022864, +0.0000022775,0.0000022748,0.0000022797,0.0000022926,0.0000023062, +0.0000023129,0.0000023113,0.0000023110,0.0000023183,0.0000023275, +0.0000023338,0.0000023522,0.0000023737,0.0000023829,0.0000023881, +0.0000023943,0.0000023980,0.0000024033,0.0000024143,0.0000024234, +0.0000024251,0.0000024174,0.0000023999,0.0000023913,0.0000023996, +0.0000024207,0.0000024380,0.0000024444,0.0000024457,0.0000024475, +0.0000024478,0.0000024418,0.0000024326,0.0000024289,0.0000024352, +0.0000024501,0.0000024606,0.0000024613,0.0000024534,0.0000024431, +0.0000024373,0.0000024315,0.0000024201,0.0000024040,0.0000023888, +0.0000023779,0.0000023685,0.0000023611,0.0000023604,0.0000023676, +0.0000023758,0.0000023854,0.0000023997,0.0000024146,0.0000024478, +0.0000024749,0.0000024801,0.0000024659,0.0000024785,0.0000025540, +0.0000026094,0.0000026138,0.0000025671,0.0000024991,0.0000024615, +0.0000024531,0.0000024536,0.0000024554,0.0000024495,0.0000024292, +0.0000024071,0.0000023979,0.0000023980,0.0000024033,0.0000024119, +0.0000024232,0.0000024359,0.0000024476,0.0000024521,0.0000024490, +0.0000024414,0.0000024343,0.0000024310,0.0000024325,0.0000024362, +0.0000024400,0.0000024434,0.0000024457,0.0000024459,0.0000024449, +0.0000024442,0.0000024441,0.0000024440,0.0000024427,0.0000024396, +0.0000024358,0.0000024318,0.0000024309,0.0000024314,0.0000024323, +0.0000024323,0.0000024308,0.0000024291,0.0000024279,0.0000024265, +0.0000024254,0.0000024251,0.0000024253,0.0000024240,0.0000024204, +0.0000024154,0.0000024097,0.0000024036,0.0000023968,0.0000023886, +0.0000023796,0.0000023707,0.0000023625,0.0000023559,0.0000023507, +0.0000023461,0.0000023409,0.0000023347,0.0000023272,0.0000023193, +0.0000023127,0.0000023084,0.0000023068,0.0000023072,0.0000023088, +0.0000023124,0.0000023160,0.0000023202,0.0000023245,0.0000023290, +0.0000023337,0.0000023383,0.0000023429,0.0000023475,0.0000023515, +0.0000023553,0.0000023591,0.0000023625,0.0000023652,0.0000023675, +0.0000023697,0.0000023712,0.0000023716,0.0000023715,0.0000023704, +0.0000023683,0.0000023652,0.0000023615,0.0000023573,0.0000023532, +0.0000023497,0.0000023468,0.0000023450,0.0000023441,0.0000023435, +0.0000023435,0.0000023433,0.0000023427,0.0000023420,0.0000023409, +0.0000023404,0.0000023400,0.0000023397,0.0000023400,0.0000023400, +0.0000023417,0.0000023445,0.0000023479,0.0000023518,0.0000023556, +0.0000023591,0.0000023622,0.0000023653,0.0000023682,0.0000023705, +0.0000023716,0.0000023711,0.0000023696,0.0000023697,0.0000023696, +0.0000023694,0.0000023683,0.0000023667,0.0000023658,0.0000023660, +0.0000023657,0.0000023630,0.0000023578,0.0000023502,0.0000023367, +0.0000023160,0.0000022936,0.0000022785,0.0000022703,0.0000022584, +0.0000022423,0.0000022330,0.0000022317,0.0000022318,0.0000022341, +0.0000022390,0.0000022442,0.0000022462,0.0000022449,0.0000022405, +0.0000022361,0.0000022343,0.0000022351,0.0000022369,0.0000022365, +0.0000022317,0.0000022225,0.0000022114,0.0000022039,0.0000022017, +0.0000022020,0.0000022033,0.0000022041,0.0000022026,0.0000021991, +0.0000021973,0.0000021989,0.0000022029,0.0000022070,0.0000022178, +0.0000022321,0.0000022313,0.0000022198,0.0000022209,0.0000022352, +0.0000022452,0.0000022454,0.0000022438,0.0000022488,0.0000022671, +0.0000022876,0.0000022993,0.0000023081,0.0000023244,0.0000023434, +0.0000023503,0.0000023474,0.0000023383,0.0000023296,0.0000023262, +0.0000023287,0.0000023372,0.0000023473,0.0000023562,0.0000023628, +0.0000023667,0.0000023684,0.0000023682,0.0000023684,0.0000023739, +0.0000023881,0.0000024061,0.0000024204,0.0000024299,0.0000024366, +0.0000024411,0.0000024448,0.0000024498,0.0000024574,0.0000024660, +0.0000024709,0.0000024709,0.0000024674,0.0000024595,0.0000024473, +0.0000024335,0.0000024223,0.0000024172,0.0000024173,0.0000024194, +0.0000024216,0.0000024228,0.0000024226,0.0000024206,0.0000024165, +0.0000024095,0.0000023996,0.0000023885,0.0000023783,0.0000023691, +0.0000023594,0.0000023483,0.0000023373,0.0000023283,0.0000023213, +0.0000023168,0.0000023156,0.0000023166,0.0000023187,0.0000023202, +0.0000023209,0.0000023209,0.0000023209,0.0000023212,0.0000023221, +0.0000023240,0.0000023268,0.0000023302,0.0000023336,0.0000023371, +0.0000023420,0.0000023486,0.0000023556,0.0000023620,0.0000023678, +0.0000023736,0.0000023794,0.0000023851,0.0000023910,0.0000023974, +0.0000024031,0.0000024055,0.0000024036,0.0000023993,0.0000023952, +0.0000023931,0.0000023929,0.0000023950,0.0000023991,0.0000024053, +0.0000024145,0.0000024271,0.0000024416,0.0000024550,0.0000024673, +0.0000024788,0.0000024858,0.0000024863,0.0000024851,0.0000024867, +0.0000024937,0.0000025025,0.0000025097,0.0000025141,0.0000025144, +0.0000025136,0.0000025137,0.0000025168,0.0000025209,0.0000025226, +0.0000025202,0.0000025181,0.0000025222,0.0000025316,0.0000025383, +0.0000025400,0.0000025404,0.0000025415,0.0000025436,0.0000025465, +0.0000025498,0.0000025535,0.0000025589,0.0000025657,0.0000025710, +0.0000025736,0.0000025749,0.0000025759,0.0000025766,0.0000025768, +0.0000025760,0.0000025737,0.0000025705,0.0000025674,0.0000025648, +0.0000025636,0.0000025624,0.0000025609,0.0000025595,0.0000025588, +0.0000025588,0.0000025597,0.0000025610,0.0000025613,0.0000025604, +0.0000025601,0.0000025614,0.0000025630,0.0000025632,0.0000025588, +0.0000025404,0.0000025121,0.0000024862,0.0000024587,0.0000024276, +0.0000024117,0.0000024154,0.0000024263,0.0000024300,0.0000024239, +0.0000024160,0.0000024147,0.0000024256,0.0000024484,0.0000024646, +0.0000024711,0.0000024925,0.0000025342,0.0000025676,0.0000025783, +0.0000025803,0.0000025831,0.0000025877,0.0000025931,0.0000025968, +0.0000025974,0.0000025955,0.0000025911,0.0000025862,0.0000025822, +0.0000025795,0.0000025789,0.0000025804,0.0000025837,0.0000025882, +0.0000025934,0.0000025984,0.0000026025,0.0000026054,0.0000026072, +0.0000026084,0.0000026110,0.0000026160,0.0000026212,0.0000026232, +0.0000026216,0.0000026161,0.0000026108,0.0000026068,0.0000026009, +0.0000025923,0.0000025858,0.0000025846,0.0000025872,0.0000025927, +0.0000025980,0.0000025987,0.0000025945,0.0000025896,0.0000025817, +0.0000025688,0.0000025603,0.0000025533,0.0000025329,0.0000025071, +0.0000024922,0.0000024846,0.0000024681,0.0000024335,0.0000024002, +0.0000023845,0.0000023711,0.0000023366,0.0000022866,0.0000022485, +0.0000022291,0.0000022173,0.0000022085,0.0000022047,0.0000022051, +0.0000022078,0.0000022100,0.0000022102,0.0000022086,0.0000022059, +0.0000022029,0.0000022007,0.0000021979,0.0000021934,0.0000021881, +0.0000021829,0.0000021784,0.0000021745,0.0000021706,0.0000021670, +0.0000021623,0.0000021565,0.0000021511,0.0000021462,0.0000021431, +0.0000021428,0.0000021479,0.0000021591,0.0000021730,0.0000021859, +0.0000021960,0.0000022026,0.0000022062,0.0000022081,0.0000022090, +0.0000022085,0.0000022070,0.0000022069,0.0000022097,0.0000022147, +0.0000022190,0.0000022217,0.0000022232,0.0000022254,0.0000022291, +0.0000022330,0.0000022356,0.0000022370,0.0000022369,0.0000022357, +0.0000022342,0.0000022329,0.0000022314,0.0000022299,0.0000022285, +0.0000022266,0.0000022240,0.0000022216,0.0000022186,0.0000022151, +0.0000022117,0.0000022088,0.0000022059,0.0000022034,0.0000022017, +0.0000022028,0.0000022062,0.0000022112,0.0000022168,0.0000022220, +0.0000022261,0.0000022290,0.0000022318,0.0000022339,0.0000022347, +0.0000022344,0.0000022339,0.0000022345,0.0000022346,0.0000022334, +0.0000022333,0.0000022338,0.0000022347,0.0000022345,0.0000022330, +0.0000022306,0.0000022280,0.0000022248,0.0000022207,0.0000022159, +0.0000022112,0.0000022071,0.0000022033,0.0000022004,0.0000021990, +0.0000021984,0.0000022006,0.0000022068,0.0000022148,0.0000022230, +0.0000022310,0.0000022390,0.0000022461,0.0000022519,0.0000022569, +0.0000022610,0.0000022643,0.0000022662,0.0000022667,0.0000022662, +0.0000022643,0.0000022608,0.0000022572,0.0000022551,0.0000022539, +0.0000022531,0.0000022527,0.0000022520,0.0000022500,0.0000022489, +0.0000022505,0.0000022569,0.0000022638,0.0000022658,0.0000022641, +0.0000022601,0.0000022578,0.0000022579,0.0000022570,0.0000022540, +0.0000022520,0.0000022525,0.0000022542,0.0000022545,0.0000022539, +0.0000022544,0.0000022575,0.0000022611,0.0000022624,0.0000022619, +0.0000022603,0.0000022581,0.0000022545,0.0000022480,0.0000022383, +0.0000022271,0.0000022160,0.0000022085,0.0000022071,0.0000022082, +0.0000022076,0.0000022077,0.0000022111,0.0000022171,0.0000022234, +0.0000022295,0.0000022353,0.0000022381,0.0000022360,0.0000022300, +0.0000022224,0.0000022152,0.0000022095,0.0000022062,0.0000022055, +0.0000022064,0.0000022079,0.0000022102,0.0000022136,0.0000022172, +0.0000022194,0.0000022202,0.0000022202,0.0000022197,0.0000022187, +0.0000022168,0.0000022130,0.0000022073,0.0000022011,0.0000021951, +0.0000021900,0.0000021879,0.0000021891,0.0000021927,0.0000021968, +0.0000022002,0.0000022020,0.0000022019,0.0000022015,0.0000022019, +0.0000022025,0.0000022020,0.0000021991,0.0000021942,0.0000021885, +0.0000021828,0.0000021769,0.0000021709,0.0000021658,0.0000021625, +0.0000021617,0.0000021624,0.0000021635,0.0000021644,0.0000021649, +0.0000021649,0.0000021594,0.0000021482,0.0000021368,0.0000021324, +0.0000021332,0.0000021352,0.0000021351,0.0000021318,0.0000021261, +0.0000021186,0.0000021134,0.0000021129,0.0000021185,0.0000021375, +0.0000021650,0.0000021845,0.0000021938,0.0000022021,0.0000022117, +0.0000022174,0.0000022180,0.0000022179,0.0000022186,0.0000022202, +0.0000022233,0.0000022255,0.0000022239,0.0000022212,0.0000022225, +0.0000022282,0.0000022320,0.0000022387,0.0000022588,0.0000022851, +0.0000023051,0.0000023160,0.0000023196,0.0000023218,0.0000023270, +0.0000023312,0.0000023312,0.0000023294,0.0000023284,0.0000023271, +0.0000023245,0.0000023207,0.0000023161,0.0000023114,0.0000023067, +0.0000023020,0.0000022976,0.0000022937,0.0000022901,0.0000022869, +0.0000022845,0.0000022827,0.0000022804,0.0000022774,0.0000022749, +0.0000022732,0.0000022715,0.0000022696,0.0000022686,0.0000022692, +0.0000022717,0.0000022734,0.0000022710,0.0000022590,0.0000022427, +0.0000022304,0.0000022221,0.0000022146,0.0000022077,0.0000022032, +0.0000022002,0.0000021994,0.0000021987,0.0000021964,0.0000021922, +0.0000021861,0.0000021802,0.0000021778,0.0000021807,0.0000021936, +0.0000022119,0.0000022259,0.0000022327,0.0000022372,0.0000022433, +0.0000022499,0.0000022567,0.0000022684,0.0000022870,0.0000023048, +0.0000023124,0.0000023116,0.0000023099,0.0000023111,0.0000023160, +0.0000023190,0.0000023161,0.0000023101,0.0000023090,0.0000023129, +0.0000023182,0.0000023225,0.0000023264,0.0000023353,0.0000023451, +0.0000023427,0.0000023249,0.0000023124,0.0000023139,0.0000023212, +0.0000023295,0.0000023375,0.0000023439,0.0000023475,0.0000023472, +0.0000023431,0.0000023384,0.0000023353,0.0000023328,0.0000023294, +0.0000023253,0.0000023215,0.0000023184,0.0000023153,0.0000023121, +0.0000023085,0.0000023040,0.0000022990,0.0000022949,0.0000022916, +0.0000022876,0.0000022823,0.0000022766,0.0000022714,0.0000022675, +0.0000022643,0.0000022620,0.0000022602,0.0000022589,0.0000022571, +0.0000022555,0.0000022553,0.0000022565,0.0000022585,0.0000022603, +0.0000022631,0.0000022659,0.0000022672,0.0000022675,0.0000022669, +0.0000022673,0.0000022694,0.0000022713,0.0000022737,0.0000022761, +0.0000022814,0.0000022910,0.0000023012,0.0000023078,0.0000023116, +0.0000023177,0.0000023280,0.0000023419,0.0000023534,0.0000023576, +0.0000023572,0.0000023573,0.0000023592,0.0000023623,0.0000023668, +0.0000023709,0.0000023730,0.0000023725,0.0000023691,0.0000023631, +0.0000023564,0.0000023503,0.0000023445,0.0000023379,0.0000023320, +0.0000023292,0.0000023296,0.0000023324,0.0000023372,0.0000023421, +0.0000023456,0.0000023473,0.0000023481,0.0000023489,0.0000023505, +0.0000023525,0.0000023567,0.0000023627,0.0000023681,0.0000023724, +0.0000023756,0.0000023776,0.0000023788,0.0000023799,0.0000023809, +0.0000023823,0.0000023846,0.0000023875,0.0000023895,0.0000023888, +0.0000023867,0.0000023853,0.0000023835,0.0000023804,0.0000023781, +0.0000023789,0.0000023825,0.0000023861,0.0000023867,0.0000023851, +0.0000023823,0.0000023791,0.0000023788,0.0000023850,0.0000023933, +0.0000023961,0.0000023943,0.0000023939,0.0000024027,0.0000024278, +0.0000024579,0.0000024820,0.0000025000,0.0000025132,0.0000025193, +0.0000025185,0.0000025124,0.0000025061,0.0000025043,0.0000025065, +0.0000025099,0.0000025110,0.0000025081,0.0000025018,0.0000024947, +0.0000024879,0.0000024806,0.0000024729,0.0000024655,0.0000024584, +0.0000024525,0.0000024487,0.0000024461,0.0000024418,0.0000024329, +0.0000024199,0.0000024055,0.0000023923,0.0000023808,0.0000023712, +0.0000023653,0.0000023629,0.0000023611,0.0000023579,0.0000023551, +0.0000023546,0.0000023556,0.0000023557,0.0000023533,0.0000023465, +0.0000023344,0.0000023214,0.0000023139,0.0000023136,0.0000023159, +0.0000023197,0.0000023231,0.0000023269,0.0000023299,0.0000023319, +0.0000023318,0.0000023303,0.0000023300,0.0000023306,0.0000023347, +0.0000023405,0.0000023467,0.0000023510,0.0000023539,0.0000023545, +0.0000023553,0.0000023571,0.0000023599,0.0000023623,0.0000023629, +0.0000023631,0.0000023650,0.0000023700,0.0000023776,0.0000023855, +0.0000023914,0.0000023946,0.0000023961,0.0000023974,0.0000023999, +0.0000024041,0.0000024098,0.0000024160,0.0000024214,0.0000024260, +0.0000024304,0.0000024344,0.0000024379,0.0000024411,0.0000024444, +0.0000024479,0.0000024514,0.0000024555,0.0000024602,0.0000024650, +0.0000024689,0.0000024715,0.0000024732,0.0000024748,0.0000024774, +0.0000024812,0.0000024854,0.0000024892,0.0000024922,0.0000024939, +0.0000024930,0.0000024912,0.0000024877,0.0000024824,0.0000024753, +0.0000024673,0.0000024603,0.0000024548,0.0000024507,0.0000024474, +0.0000024450,0.0000024440,0.0000024448,0.0000024478,0.0000024512, +0.0000024536,0.0000024555,0.0000024572,0.0000024594,0.0000024614, +0.0000024637,0.0000024673,0.0000024719,0.0000024758,0.0000024778, +0.0000024779,0.0000024764,0.0000024734,0.0000024688,0.0000024635, +0.0000024583,0.0000024529,0.0000024463,0.0000024388,0.0000024319, +0.0000024274,0.0000024246,0.0000024217,0.0000024179,0.0000024119, +0.0000024030,0.0000023920,0.0000023815,0.0000023739,0.0000023722, +0.0000023738,0.0000023797,0.0000023880,0.0000023937,0.0000023942, +0.0000023925,0.0000023897,0.0000023845,0.0000023772,0.0000023717, +0.0000023705,0.0000023741,0.0000023808,0.0000023880,0.0000023957, +0.0000024054,0.0000024161,0.0000024252,0.0000024317,0.0000024368, +0.0000024412,0.0000024450,0.0000024479,0.0000024493,0.0000024489, +0.0000024464,0.0000024406,0.0000024281,0.0000024099,0.0000023939, +0.0000023891,0.0000023941,0.0000023964,0.0000023897,0.0000023858, +0.0000023903,0.0000023959,0.0000024011,0.0000024026,0.0000023948, +0.0000023809,0.0000023711,0.0000023681,0.0000023682,0.0000023693, +0.0000023708,0.0000023718,0.0000023713,0.0000023707,0.0000023718, +0.0000023732,0.0000023714,0.0000023643,0.0000023500,0.0000023317, +0.0000023166,0.0000023072,0.0000023011,0.0000023007,0.0000023017, +0.0000023022,0.0000023028,0.0000023030,0.0000023035,0.0000023053, +0.0000023086,0.0000023112,0.0000023113,0.0000023078,0.0000023027, +0.0000022979,0.0000022953,0.0000022950,0.0000022956,0.0000022971, +0.0000022994,0.0000023010,0.0000023039,0.0000023107,0.0000023159, +0.0000023198,0.0000023274,0.0000023378,0.0000023411,0.0000023316, +0.0000023201,0.0000023229,0.0000023422,0.0000023582,0.0000023646, +0.0000023651,0.0000023627,0.0000023603,0.0000023595,0.0000023590, +0.0000023622,0.0000023692,0.0000023755,0.0000023801,0.0000023829, +0.0000023859,0.0000023902,0.0000023932,0.0000023944,0.0000023939, +0.0000023920,0.0000023903,0.0000023909,0.0000023939,0.0000023971, +0.0000024011,0.0000024067,0.0000024124,0.0000024167,0.0000024182, +0.0000024169,0.0000024127,0.0000024059,0.0000023978,0.0000023892, +0.0000023810,0.0000023729,0.0000023659,0.0000023610,0.0000023578, +0.0000023569,0.0000023571,0.0000023569,0.0000023540,0.0000023496, +0.0000023461,0.0000023424,0.0000023364,0.0000023254,0.0000023115, +0.0000022986,0.0000022892,0.0000022847,0.0000022840,0.0000022836, +0.0000022820,0.0000022802,0.0000022779,0.0000022746,0.0000022719, +0.0000022695,0.0000022651,0.0000022581,0.0000022486,0.0000022383, +0.0000022294,0.0000022244,0.0000022234,0.0000022267,0.0000022310, +0.0000022377,0.0000022459,0.0000022534,0.0000022562,0.0000022539, +0.0000022497,0.0000022480,0.0000022477,0.0000022454,0.0000022399, +0.0000022352,0.0000022317,0.0000022251,0.0000022175,0.0000022172, +0.0000022216,0.0000022242,0.0000022251,0.0000022314,0.0000022473, +0.0000022647,0.0000022736,0.0000022747,0.0000022743,0.0000022752, +0.0000022730,0.0000022639,0.0000022539,0.0000022509,0.0000022511, +0.0000022518,0.0000022505,0.0000022495,0.0000022575,0.0000022790, +0.0000023005,0.0000023107,0.0000023106,0.0000023052,0.0000022974, +0.0000022907,0.0000022850,0.0000022776,0.0000022668,0.0000022560, +0.0000022486,0.0000022461,0.0000022478,0.0000022507,0.0000022526, +0.0000022519,0.0000022475,0.0000022412,0.0000022342,0.0000022287, +0.0000022278,0.0000022303,0.0000022353,0.0000022406,0.0000022448, +0.0000022482,0.0000022505,0.0000022496,0.0000022451,0.0000022379, +0.0000022335,0.0000022357,0.0000022515,0.0000022754,0.0000022966, +0.0000023106,0.0000023178,0.0000023191,0.0000023177,0.0000023179, +0.0000023202,0.0000023212,0.0000023192,0.0000023131,0.0000023028, +0.0000022895,0.0000022784,0.0000022742,0.0000022771,0.0000022869, +0.0000022993,0.0000023082,0.0000023085,0.0000023065,0.0000023119, +0.0000023215,0.0000023255,0.0000023373,0.0000023615,0.0000023773, +0.0000023831,0.0000023902,0.0000023961,0.0000023996,0.0000024069, +0.0000024185,0.0000024250,0.0000024240,0.0000024104,0.0000023929, +0.0000023890,0.0000024003,0.0000024191,0.0000024320,0.0000024364, +0.0000024368,0.0000024377,0.0000024362,0.0000024315,0.0000024292, +0.0000024347,0.0000024480,0.0000024606,0.0000024638,0.0000024599, +0.0000024496,0.0000024402,0.0000024351,0.0000024290,0.0000024168, +0.0000024005,0.0000023867,0.0000023772,0.0000023692,0.0000023616, +0.0000023594,0.0000023643,0.0000023727,0.0000023796,0.0000023943, +0.0000024058,0.0000024318,0.0000024612,0.0000024725,0.0000024674, +0.0000024569,0.0000024968,0.0000025766,0.0000026130,0.0000026017, +0.0000025420,0.0000024795,0.0000024523,0.0000024475,0.0000024504, +0.0000024543,0.0000024505,0.0000024289,0.0000024053,0.0000023957, +0.0000023969,0.0000024020,0.0000024095,0.0000024190,0.0000024314, +0.0000024430,0.0000024499,0.0000024498,0.0000024443,0.0000024365, +0.0000024323,0.0000024326,0.0000024357,0.0000024401,0.0000024434, +0.0000024437,0.0000024418,0.0000024390,0.0000024372,0.0000024365, +0.0000024372,0.0000024377,0.0000024372,0.0000024353,0.0000024340, +0.0000024320,0.0000024305,0.0000024297,0.0000024293,0.0000024304, +0.0000024329,0.0000024359,0.0000024378,0.0000024388,0.0000024388, +0.0000024373,0.0000024341,0.0000024300,0.0000024253,0.0000024202, +0.0000024146,0.0000024082,0.0000024009,0.0000023929,0.0000023849, +0.0000023778,0.0000023714,0.0000023652,0.0000023583,0.0000023506, +0.0000023417,0.0000023323,0.0000023239,0.0000023174,0.0000023128, +0.0000023102,0.0000023091,0.0000023098,0.0000023103,0.0000023110, +0.0000023128,0.0000023147,0.0000023174,0.0000023202,0.0000023225, +0.0000023248,0.0000023267,0.0000023281,0.0000023296,0.0000023314, +0.0000023330,0.0000023346,0.0000023362,0.0000023378,0.0000023388, +0.0000023394,0.0000023398,0.0000023397,0.0000023389,0.0000023378, +0.0000023371,0.0000023368,0.0000023370,0.0000023376,0.0000023390, +0.0000023406,0.0000023418,0.0000023423,0.0000023422,0.0000023414, +0.0000023402,0.0000023391,0.0000023390,0.0000023390,0.0000023403, +0.0000023424,0.0000023453,0.0000023484,0.0000023519,0.0000023552, +0.0000023583,0.0000023614,0.0000023643,0.0000023674,0.0000023703, +0.0000023724,0.0000023733,0.0000023724,0.0000023702,0.0000023666, +0.0000023640,0.0000023633,0.0000023642,0.0000023651,0.0000023649, +0.0000023642,0.0000023638,0.0000023642,0.0000023637,0.0000023599, +0.0000023535,0.0000023447,0.0000023294,0.0000023072,0.0000022865, +0.0000022748,0.0000022656,0.0000022494,0.0000022344,0.0000022304, +0.0000022301,0.0000022298,0.0000022315,0.0000022358,0.0000022393, +0.0000022397,0.0000022379,0.0000022356,0.0000022348,0.0000022357, +0.0000022372,0.0000022371,0.0000022335,0.0000022251,0.0000022133, +0.0000022045,0.0000022029,0.0000022045,0.0000022062,0.0000022072, +0.0000022064,0.0000022027,0.0000021975,0.0000021949,0.0000021964, +0.0000022003,0.0000022052,0.0000022179,0.0000022317,0.0000022294, +0.0000022188,0.0000022210,0.0000022349,0.0000022445,0.0000022452, +0.0000022443,0.0000022494,0.0000022676,0.0000022880,0.0000022983, +0.0000023059,0.0000023222,0.0000023407,0.0000023471,0.0000023441, +0.0000023350,0.0000023275,0.0000023262,0.0000023324,0.0000023433, +0.0000023545,0.0000023630,0.0000023679,0.0000023700,0.0000023704, +0.0000023719,0.0000023789,0.0000023920,0.0000024070,0.0000024192, +0.0000024280,0.0000024346,0.0000024389,0.0000024417,0.0000024457, +0.0000024529,0.0000024619,0.0000024684,0.0000024696,0.0000024676, +0.0000024620,0.0000024519,0.0000024376,0.0000024222,0.0000024099, +0.0000024045,0.0000024053,0.0000024088,0.0000024125,0.0000024144, +0.0000024146,0.0000024121,0.0000024057,0.0000023951,0.0000023818, +0.0000023684,0.0000023573,0.0000023484,0.0000023399,0.0000023304, +0.0000023203,0.0000023110,0.0000023033,0.0000022980,0.0000022961, +0.0000022968,0.0000022990,0.0000023011,0.0000023023,0.0000023027, +0.0000023027,0.0000023028,0.0000023035,0.0000023054,0.0000023088, +0.0000023133,0.0000023174,0.0000023206,0.0000023241,0.0000023288, +0.0000023350,0.0000023425,0.0000023510,0.0000023594,0.0000023666, +0.0000023721,0.0000023766,0.0000023818,0.0000023881,0.0000023931, +0.0000023943,0.0000023921,0.0000023883,0.0000023852,0.0000023843, +0.0000023864,0.0000023915,0.0000023982,0.0000024062,0.0000024162, +0.0000024282,0.0000024404,0.0000024529,0.0000024669,0.0000024796, +0.0000024855,0.0000024855,0.0000024854,0.0000024890,0.0000024964, +0.0000025041,0.0000025105,0.0000025137,0.0000025133,0.0000025123, +0.0000025142,0.0000025184,0.0000025203,0.0000025181,0.0000025143, +0.0000025150,0.0000025221,0.0000025286,0.0000025303,0.0000025298, +0.0000025293,0.0000025304,0.0000025334,0.0000025377,0.0000025427, +0.0000025496,0.0000025583,0.0000025663,0.0000025710,0.0000025730, +0.0000025733,0.0000025732,0.0000025723,0.0000025705,0.0000025678, +0.0000025645,0.0000025613,0.0000025588,0.0000025571,0.0000025548, +0.0000025530,0.0000025527,0.0000025535,0.0000025554,0.0000025582, +0.0000025608,0.0000025616,0.0000025614,0.0000025615,0.0000025624, +0.0000025634,0.0000025632,0.0000025558,0.0000025340,0.0000025052, +0.0000024809,0.0000024537,0.0000024234,0.0000024109,0.0000024159, +0.0000024274,0.0000024296,0.0000024231,0.0000024174,0.0000024196, +0.0000024362,0.0000024582,0.0000024684,0.0000024773,0.0000025083, +0.0000025495,0.0000025725,0.0000025779,0.0000025802,0.0000025824, +0.0000025849,0.0000025884,0.0000025907,0.0000025911,0.0000025897, +0.0000025855,0.0000025796,0.0000025743,0.0000025711,0.0000025707, +0.0000025729,0.0000025770,0.0000025813,0.0000025852,0.0000025886, +0.0000025918,0.0000025950,0.0000025980,0.0000026010,0.0000026054, +0.0000026114,0.0000026166,0.0000026184,0.0000026169,0.0000026119, +0.0000026064,0.0000026011,0.0000025945,0.0000025868,0.0000025821, +0.0000025825,0.0000025872,0.0000025936,0.0000025981,0.0000025978, +0.0000025925,0.0000025866,0.0000025797,0.0000025690,0.0000025615, +0.0000025558,0.0000025363,0.0000025082,0.0000024893,0.0000024803, +0.0000024665,0.0000024342,0.0000023984,0.0000023804,0.0000023692, +0.0000023378,0.0000022880,0.0000022489,0.0000022299,0.0000022186, +0.0000022103,0.0000022057,0.0000022043,0.0000022047,0.0000022057, +0.0000022053,0.0000022036,0.0000022014,0.0000021995,0.0000021983, +0.0000021967,0.0000021926,0.0000021878,0.0000021834,0.0000021787, +0.0000021735,0.0000021685,0.0000021642,0.0000021590,0.0000021528, +0.0000021461,0.0000021403,0.0000021371,0.0000021367,0.0000021394, +0.0000021462,0.0000021571,0.0000021700,0.0000021821,0.0000021918, +0.0000021979,0.0000022004,0.0000022007,0.0000022004,0.0000021999, +0.0000022001,0.0000022019,0.0000022060,0.0000022124,0.0000022195, +0.0000022252,0.0000022283,0.0000022293,0.0000022300,0.0000022292, +0.0000022280,0.0000022273,0.0000022271,0.0000022271,0.0000022270, +0.0000022263,0.0000022248,0.0000022231,0.0000022211,0.0000022188, +0.0000022167,0.0000022145,0.0000022120,0.0000022097,0.0000022076, +0.0000022061,0.0000022051,0.0000022043,0.0000022050,0.0000022076, +0.0000022118,0.0000022172,0.0000022219,0.0000022249,0.0000022267, +0.0000022282,0.0000022296,0.0000022307,0.0000022312,0.0000022307, +0.0000022301,0.0000022293,0.0000022279,0.0000022278,0.0000022276, +0.0000022276,0.0000022267,0.0000022251,0.0000022229,0.0000022202, +0.0000022170,0.0000022130,0.0000022085,0.0000022045,0.0000022017, +0.0000021993,0.0000021971,0.0000021963,0.0000021963,0.0000021969, +0.0000021996,0.0000022051,0.0000022124,0.0000022201,0.0000022278, +0.0000022355,0.0000022425,0.0000022486,0.0000022537,0.0000022580, +0.0000022616,0.0000022643,0.0000022658,0.0000022662,0.0000022655, +0.0000022630,0.0000022598,0.0000022571,0.0000022552,0.0000022543, +0.0000022540,0.0000022519,0.0000022486,0.0000022477,0.0000022512, +0.0000022587,0.0000022637,0.0000022641,0.0000022613,0.0000022585, +0.0000022580,0.0000022583,0.0000022572,0.0000022546,0.0000022530, +0.0000022535,0.0000022548,0.0000022551,0.0000022544,0.0000022547, +0.0000022571,0.0000022594,0.0000022598,0.0000022588,0.0000022568, +0.0000022539,0.0000022498,0.0000022434,0.0000022343,0.0000022237, +0.0000022145,0.0000022107,0.0000022113,0.0000022120,0.0000022122, +0.0000022148,0.0000022200,0.0000022257,0.0000022305,0.0000022351, +0.0000022378,0.0000022361,0.0000022303,0.0000022234,0.0000022172, +0.0000022110,0.0000022056,0.0000022028,0.0000022026,0.0000022041, +0.0000022070,0.0000022122,0.0000022186,0.0000022225,0.0000022227, +0.0000022215,0.0000022202,0.0000022191,0.0000022177,0.0000022159, +0.0000022128,0.0000022084,0.0000022032,0.0000021982,0.0000021945, +0.0000021941,0.0000021966,0.0000022010,0.0000022048,0.0000022074, +0.0000022084,0.0000022078,0.0000022066,0.0000022060,0.0000022061, +0.0000022057,0.0000022030,0.0000021984,0.0000021939,0.0000021901, +0.0000021858,0.0000021794,0.0000021721,0.0000021660,0.0000021626, +0.0000021617,0.0000021620,0.0000021629,0.0000021632,0.0000021632, +0.0000021608,0.0000021518,0.0000021377,0.0000021283,0.0000021272, +0.0000021296,0.0000021300,0.0000021272,0.0000021224,0.0000021162, +0.0000021119,0.0000021113,0.0000021126,0.0000021254,0.0000021543, +0.0000021813,0.0000021943,0.0000022022,0.0000022120,0.0000022190, +0.0000022200,0.0000022194,0.0000022193,0.0000022205,0.0000022231, +0.0000022257,0.0000022260,0.0000022230,0.0000022207,0.0000022236, +0.0000022291,0.0000022326,0.0000022432,0.0000022664,0.0000022904, +0.0000023075,0.0000023178,0.0000023214,0.0000023230,0.0000023283, +0.0000023338,0.0000023347,0.0000023329,0.0000023315,0.0000023309, +0.0000023300,0.0000023278,0.0000023240,0.0000023189,0.0000023131, +0.0000023072,0.0000023018,0.0000022968,0.0000022916,0.0000022872, +0.0000022836,0.0000022802,0.0000022771,0.0000022750,0.0000022739, +0.0000022731,0.0000022721,0.0000022707,0.0000022696,0.0000022700, +0.0000022721,0.0000022723,0.0000022652,0.0000022495,0.0000022332, +0.0000022223,0.0000022145,0.0000022076,0.0000022025,0.0000021968, +0.0000021979,0.0000022005,0.0000022015,0.0000021998,0.0000021947, +0.0000021869,0.0000021805,0.0000021801,0.0000021878,0.0000022038, +0.0000022198,0.0000022288,0.0000022336,0.0000022395,0.0000022457, +0.0000022521,0.0000022638,0.0000022829,0.0000023007,0.0000023076, +0.0000023063,0.0000023046,0.0000023077,0.0000023137,0.0000023156, +0.0000023124,0.0000023094,0.0000023113,0.0000023162,0.0000023213, +0.0000023252,0.0000023299,0.0000023407,0.0000023478,0.0000023370, +0.0000023171,0.0000023095,0.0000023137,0.0000023226,0.0000023316, +0.0000023385,0.0000023431,0.0000023435,0.0000023403,0.0000023361, +0.0000023338,0.0000023327,0.0000023304,0.0000023264,0.0000023218, +0.0000023179,0.0000023153,0.0000023129,0.0000023097,0.0000023049, +0.0000022989,0.0000022927,0.0000022884,0.0000022855,0.0000022825, +0.0000022784,0.0000022737,0.0000022697,0.0000022661,0.0000022624, +0.0000022592,0.0000022560,0.0000022535,0.0000022516,0.0000022506, +0.0000022510,0.0000022533,0.0000022564,0.0000022583,0.0000022605, +0.0000022633,0.0000022645,0.0000022649,0.0000022639,0.0000022628, +0.0000022630,0.0000022640,0.0000022669,0.0000022698,0.0000022733, +0.0000022813,0.0000022916,0.0000023011,0.0000023085,0.0000023134, +0.0000023179,0.0000023273,0.0000023423,0.0000023547,0.0000023593, +0.0000023600,0.0000023600,0.0000023604,0.0000023617,0.0000023645, +0.0000023681,0.0000023703,0.0000023697,0.0000023667,0.0000023625, +0.0000023567,0.0000023503,0.0000023440,0.0000023389,0.0000023346, +0.0000023311,0.0000023303,0.0000023327,0.0000023377,0.0000023429, +0.0000023453,0.0000023457,0.0000023460,0.0000023472,0.0000023486, +0.0000023516,0.0000023576,0.0000023636,0.0000023681,0.0000023719, +0.0000023746,0.0000023767,0.0000023786,0.0000023798,0.0000023803, +0.0000023812,0.0000023843,0.0000023886,0.0000023916,0.0000023916, +0.0000023901,0.0000023890,0.0000023867,0.0000023823,0.0000023789, +0.0000023787,0.0000023810,0.0000023840,0.0000023849,0.0000023838, +0.0000023808,0.0000023755,0.0000023715,0.0000023742,0.0000023833, +0.0000023890,0.0000023892,0.0000023881,0.0000023923,0.0000024117, +0.0000024417,0.0000024694,0.0000024904,0.0000025065,0.0000025159, +0.0000025162,0.0000025111,0.0000025046,0.0000025027,0.0000025053, +0.0000025099,0.0000025128,0.0000025115,0.0000025060,0.0000024989, +0.0000024920,0.0000024847,0.0000024775,0.0000024711,0.0000024648, +0.0000024588,0.0000024535,0.0000024491,0.0000024437,0.0000024352, +0.0000024243,0.0000024129,0.0000024034,0.0000023961,0.0000023897, +0.0000023849,0.0000023823,0.0000023799,0.0000023758,0.0000023709, +0.0000023670,0.0000023639,0.0000023603,0.0000023559,0.0000023514, +0.0000023434,0.0000023308,0.0000023189,0.0000023145,0.0000023158, +0.0000023187,0.0000023221,0.0000023275,0.0000023330,0.0000023383, +0.0000023408,0.0000023401,0.0000023372,0.0000023338,0.0000023343, +0.0000023357,0.0000023409,0.0000023482,0.0000023546,0.0000023579, +0.0000023581,0.0000023565,0.0000023559,0.0000023574,0.0000023591, +0.0000023595,0.0000023595,0.0000023609,0.0000023650,0.0000023728, +0.0000023815,0.0000023882,0.0000023920,0.0000023941,0.0000023962, +0.0000024001,0.0000024061,0.0000024126,0.0000024179,0.0000024222, +0.0000024258,0.0000024288,0.0000024314,0.0000024341,0.0000024371, +0.0000024399,0.0000024422,0.0000024444,0.0000024474,0.0000024511, +0.0000024550,0.0000024589,0.0000024624,0.0000024655,0.0000024687, +0.0000024723,0.0000024764,0.0000024806,0.0000024847,0.0000024882, +0.0000024906,0.0000024911,0.0000024900,0.0000024866,0.0000024804, +0.0000024728,0.0000024650,0.0000024579,0.0000024518,0.0000024466, +0.0000024432,0.0000024406,0.0000024403,0.0000024425,0.0000024453, +0.0000024481,0.0000024514,0.0000024550,0.0000024580,0.0000024606, +0.0000024634,0.0000024667,0.0000024710,0.0000024754,0.0000024782, +0.0000024799,0.0000024806,0.0000024790,0.0000024752,0.0000024709, +0.0000024674,0.0000024645,0.0000024608,0.0000024554,0.0000024480, +0.0000024382,0.0000024284,0.0000024222,0.0000024182,0.0000024160, +0.0000024138,0.0000024097,0.0000024031,0.0000023958,0.0000023894, +0.0000023826,0.0000023794,0.0000023817,0.0000023900,0.0000023972, +0.0000023993,0.0000023973,0.0000023925,0.0000023848,0.0000023757, +0.0000023682,0.0000023653,0.0000023682,0.0000023750,0.0000023829, +0.0000023913,0.0000024013,0.0000024116,0.0000024200,0.0000024263, +0.0000024313,0.0000024346,0.0000024368,0.0000024385,0.0000024386, +0.0000024349,0.0000024256,0.0000024120,0.0000023991,0.0000023932, +0.0000023967,0.0000024021,0.0000023989,0.0000023902,0.0000023889, +0.0000023941,0.0000024020,0.0000024087,0.0000024080,0.0000023967, +0.0000023821,0.0000023724,0.0000023699,0.0000023697,0.0000023692, +0.0000023696,0.0000023713,0.0000023729,0.0000023719,0.0000023705, +0.0000023704,0.0000023694,0.0000023655,0.0000023564,0.0000023420, +0.0000023278,0.0000023169,0.0000023078,0.0000023047,0.0000023044, +0.0000023049,0.0000023051,0.0000023046,0.0000023032,0.0000023027, +0.0000023052,0.0000023092,0.0000023102,0.0000023084,0.0000023033, +0.0000022980,0.0000022956,0.0000022961,0.0000022977,0.0000022980, +0.0000022977,0.0000022991,0.0000023012,0.0000023040,0.0000023096, +0.0000023161,0.0000023193,0.0000023223,0.0000023317,0.0000023380, +0.0000023349,0.0000023211,0.0000023105,0.0000023170,0.0000023383, +0.0000023551,0.0000023606,0.0000023586,0.0000023556,0.0000023529, +0.0000023517,0.0000023539,0.0000023591,0.0000023640,0.0000023673, +0.0000023697,0.0000023751,0.0000023845,0.0000023913,0.0000023923, +0.0000023896,0.0000023857,0.0000023822,0.0000023804,0.0000023806, +0.0000023832,0.0000023874,0.0000023934,0.0000023990,0.0000024023, +0.0000024046,0.0000024059,0.0000024044,0.0000023993,0.0000023909, +0.0000023820,0.0000023723,0.0000023631,0.0000023563,0.0000023529, +0.0000023525,0.0000023514,0.0000023490,0.0000023469,0.0000023460, +0.0000023443,0.0000023377,0.0000023252,0.0000023088,0.0000022945, +0.0000022859,0.0000022815,0.0000022795,0.0000022792,0.0000022789, +0.0000022776,0.0000022764,0.0000022750,0.0000022718,0.0000022663, +0.0000022576,0.0000022455,0.0000022334,0.0000022240,0.0000022189, +0.0000022173,0.0000022205,0.0000022252,0.0000022340,0.0000022441, +0.0000022535,0.0000022609,0.0000022663,0.0000022667,0.0000022613, +0.0000022540,0.0000022505,0.0000022491,0.0000022459,0.0000022409, +0.0000022369,0.0000022330,0.0000022256,0.0000022173,0.0000022166, +0.0000022207,0.0000022227,0.0000022243,0.0000022330,0.0000022505, +0.0000022666,0.0000022736,0.0000022739,0.0000022735,0.0000022729, +0.0000022681,0.0000022591,0.0000022528,0.0000022516,0.0000022551, +0.0000022561,0.0000022541,0.0000022540,0.0000022659,0.0000022893, +0.0000023073,0.0000023127,0.0000023105,0.0000023031,0.0000022948, +0.0000022870,0.0000022786,0.0000022688,0.0000022576,0.0000022481, +0.0000022432,0.0000022430,0.0000022463,0.0000022500,0.0000022519, +0.0000022517,0.0000022483,0.0000022418,0.0000022339,0.0000022281, +0.0000022275,0.0000022313,0.0000022373,0.0000022429,0.0000022472, +0.0000022502,0.0000022512,0.0000022492,0.0000022434,0.0000022363, +0.0000022342,0.0000022406,0.0000022592,0.0000022829,0.0000023023, +0.0000023141,0.0000023200,0.0000023209,0.0000023193,0.0000023176, +0.0000023178,0.0000023190,0.0000023185,0.0000023139,0.0000023046, +0.0000022919,0.0000022798,0.0000022741,0.0000022747,0.0000022812, +0.0000022920,0.0000023017,0.0000023048,0.0000023040,0.0000023076, +0.0000023175,0.0000023215,0.0000023244,0.0000023449,0.0000023680, +0.0000023775,0.0000023838,0.0000023921,0.0000023969,0.0000024014, +0.0000024106,0.0000024213,0.0000024250,0.0000024201,0.0000024027, +0.0000023880,0.0000023879,0.0000024010,0.0000024156,0.0000024247, +0.0000024279,0.0000024290,0.0000024297,0.0000024286,0.0000024289, +0.0000024347,0.0000024468,0.0000024588,0.0000024642,0.0000024633, +0.0000024560,0.0000024450,0.0000024373,0.0000024330,0.0000024263, +0.0000024126,0.0000023966,0.0000023847,0.0000023767,0.0000023696, +0.0000023619,0.0000023588,0.0000023619,0.0000023692,0.0000023757, +0.0000023882,0.0000024001,0.0000024173,0.0000024466,0.0000024624, +0.0000024638,0.0000024511,0.0000024515,0.0000025198,0.0000025914, +0.0000026095,0.0000025836,0.0000025190,0.0000024649,0.0000024451, +0.0000024431,0.0000024482,0.0000024537,0.0000024494,0.0000024287, +0.0000024061,0.0000023956,0.0000023956,0.0000024002,0.0000024060, +0.0000024141,0.0000024250,0.0000024366,0.0000024457,0.0000024492, +0.0000024465,0.0000024401,0.0000024352,0.0000024341,0.0000024372, +0.0000024405,0.0000024420,0.0000024410,0.0000024380,0.0000024350, +0.0000024327,0.0000024304,0.0000024295,0.0000024292,0.0000024301, +0.0000024322,0.0000024332,0.0000024328,0.0000024317,0.0000024300, +0.0000024306,0.0000024334,0.0000024373,0.0000024413,0.0000024448, +0.0000024473,0.0000024476,0.0000024459,0.0000024430,0.0000024391, +0.0000024345,0.0000024292,0.0000024233,0.0000024171,0.0000024103, +0.0000024033,0.0000023973,0.0000023926,0.0000023881,0.0000023827, +0.0000023757,0.0000023670,0.0000023571,0.0000023473,0.0000023385, +0.0000023310,0.0000023247,0.0000023190,0.0000023143,0.0000023118, +0.0000023106,0.0000023106,0.0000023108,0.0000023113,0.0000023122, +0.0000023130,0.0000023136,0.0000023145,0.0000023152,0.0000023154, +0.0000023158,0.0000023163,0.0000023172,0.0000023185,0.0000023202, +0.0000023219,0.0000023237,0.0000023259,0.0000023278,0.0000023292, +0.0000023305,0.0000023319,0.0000023334,0.0000023348,0.0000023361, +0.0000023374,0.0000023386,0.0000023400,0.0000023406,0.0000023405, +0.0000023404,0.0000023398,0.0000023401,0.0000023411,0.0000023428, +0.0000023449,0.0000023479,0.0000023515,0.0000023550,0.0000023583, +0.0000023612,0.0000023638,0.0000023660,0.0000023681,0.0000023701, +0.0000023720,0.0000023728,0.0000023727,0.0000023711,0.0000023679, +0.0000023638,0.0000023598,0.0000023577,0.0000023579,0.0000023593, +0.0000023607,0.0000023615,0.0000023617,0.0000023615,0.0000023615, +0.0000023603,0.0000023553,0.0000023478,0.0000023377,0.0000023205, +0.0000022981,0.0000022805,0.0000022709,0.0000022582,0.0000022392, +0.0000022283,0.0000022283,0.0000022293,0.0000022292,0.0000022304, +0.0000022325,0.0000022334,0.0000022334,0.0000022336,0.0000022344, +0.0000022353,0.0000022360,0.0000022361,0.0000022341,0.0000022276, +0.0000022155,0.0000022052,0.0000022033,0.0000022062,0.0000022083, +0.0000022090,0.0000022092,0.0000022080,0.0000022031,0.0000021958, +0.0000021922,0.0000021937,0.0000021976,0.0000022032,0.0000022176, +0.0000022308,0.0000022274,0.0000022179,0.0000022207,0.0000022333, +0.0000022426,0.0000022450,0.0000022453,0.0000022509,0.0000022676, +0.0000022868,0.0000022965,0.0000023031,0.0000023189,0.0000023376, +0.0000023448,0.0000023420,0.0000023335,0.0000023274,0.0000023290, +0.0000023387,0.0000023520,0.0000023634,0.0000023706,0.0000023740, +0.0000023752,0.0000023775,0.0000023852,0.0000023980,0.0000024106, +0.0000024198,0.0000024266,0.0000024324,0.0000024366,0.0000024388, +0.0000024414,0.0000024473,0.0000024564,0.0000024642,0.0000024665, +0.0000024654,0.0000024616,0.0000024540,0.0000024418,0.0000024261, +0.0000024097,0.0000023975,0.0000023940,0.0000023957,0.0000024010, +0.0000024056,0.0000024071,0.0000024058,0.0000023998,0.0000023887, +0.0000023740,0.0000023584,0.0000023444,0.0000023337,0.0000023262, +0.0000023194,0.0000023111,0.0000023009,0.0000022903,0.0000022812, +0.0000022753,0.0000022735,0.0000022741,0.0000022767,0.0000022794, +0.0000022813,0.0000022822,0.0000022822,0.0000022819,0.0000022819, +0.0000022830,0.0000022861,0.0000022911,0.0000022968,0.0000023024, +0.0000023075,0.0000023119,0.0000023163,0.0000023229,0.0000023321, +0.0000023426,0.0000023524,0.0000023599,0.0000023647,0.0000023684, +0.0000023730,0.0000023785,0.0000023824,0.0000023830,0.0000023805, +0.0000023771,0.0000023757,0.0000023773,0.0000023825,0.0000023899, +0.0000023980,0.0000024066,0.0000024164,0.0000024272,0.0000024388, +0.0000024529,0.0000024687,0.0000024811,0.0000024858,0.0000024854, +0.0000024863,0.0000024909,0.0000024976,0.0000025047,0.0000025104, +0.0000025117,0.0000025101,0.0000025104,0.0000025142,0.0000025169, +0.0000025155,0.0000025104,0.0000025086,0.0000025134,0.0000025206, +0.0000025235,0.0000025225,0.0000025202,0.0000025200,0.0000025229, +0.0000025284,0.0000025352,0.0000025439,0.0000025548,0.0000025647, +0.0000025702,0.0000025713,0.0000025705,0.0000025687,0.0000025666, +0.0000025642,0.0000025613,0.0000025580,0.0000025549,0.0000025526, +0.0000025501,0.0000025477,0.0000025470,0.0000025480,0.0000025505, +0.0000025544,0.0000025586,0.0000025617,0.0000025625,0.0000025620, +0.0000025617,0.0000025618,0.0000025622,0.0000025607,0.0000025489, +0.0000025233,0.0000024951,0.0000024729,0.0000024461,0.0000024173, +0.0000024074,0.0000024152,0.0000024273,0.0000024284,0.0000024216, +0.0000024181,0.0000024244,0.0000024449,0.0000024642,0.0000024710, +0.0000024849,0.0000025211,0.0000025576,0.0000025733,0.0000025774, +0.0000025798,0.0000025809,0.0000025819,0.0000025831,0.0000025836, +0.0000025834,0.0000025824,0.0000025792,0.0000025739,0.0000025685, +0.0000025652,0.0000025648,0.0000025673,0.0000025718,0.0000025761, +0.0000025791,0.0000025811,0.0000025830,0.0000025857,0.0000025896, +0.0000025946,0.0000026008,0.0000026072,0.0000026120,0.0000026131, +0.0000026113,0.0000026061,0.0000026003,0.0000025950,0.0000025889, +0.0000025829,0.0000025803,0.0000025822,0.0000025884,0.0000025947, +0.0000025978,0.0000025966,0.0000025904,0.0000025843,0.0000025789, +0.0000025698,0.0000025620,0.0000025567,0.0000025387,0.0000025087, +0.0000024859,0.0000024750,0.0000024641,0.0000024360,0.0000023985, +0.0000023774,0.0000023690,0.0000023429,0.0000022941,0.0000022533, +0.0000022338,0.0000022239,0.0000022163,0.0000022099,0.0000022049, +0.0000022019,0.0000022010,0.0000022006,0.0000021989,0.0000021969, +0.0000021955,0.0000021945,0.0000021927,0.0000021886,0.0000021842, +0.0000021799,0.0000021752,0.0000021698,0.0000021644,0.0000021581, +0.0000021528,0.0000021476,0.0000021411,0.0000021345,0.0000021310, +0.0000021316,0.0000021349,0.0000021392,0.0000021453,0.0000021543, +0.0000021646,0.0000021747,0.0000021838,0.0000021901,0.0000021916, +0.0000021906,0.0000021894,0.0000021901,0.0000021935,0.0000021983, +0.0000022037,0.0000022106,0.0000022185,0.0000022259,0.0000022297, +0.0000022324,0.0000022324,0.0000022306,0.0000022282,0.0000022264, +0.0000022251,0.0000022243,0.0000022232,0.0000022217,0.0000022198, +0.0000022182,0.0000022166,0.0000022148,0.0000022133,0.0000022118, +0.0000022104,0.0000022093,0.0000022086,0.0000022082,0.0000022081, +0.0000022084,0.0000022100,0.0000022134,0.0000022182,0.0000022226, +0.0000022249,0.0000022252,0.0000022248,0.0000022248,0.0000022259, +0.0000022273,0.0000022273,0.0000022264,0.0000022253,0.0000022232, +0.0000022213,0.0000022200,0.0000022190,0.0000022185,0.0000022176, +0.0000022161,0.0000022139,0.0000022106,0.0000022064,0.0000022016, +0.0000021966,0.0000021932,0.0000021910,0.0000021897,0.0000021898, +0.0000021914,0.0000021932,0.0000021953,0.0000021989,0.0000022039, +0.0000022105,0.0000022180,0.0000022251,0.0000022319,0.0000022387, +0.0000022450,0.0000022500,0.0000022540,0.0000022579,0.0000022616, +0.0000022644,0.0000022659,0.0000022657,0.0000022642,0.0000022611, +0.0000022578,0.0000022553,0.0000022547,0.0000022543,0.0000022507, +0.0000022468,0.0000022464,0.0000022515,0.0000022588,0.0000022624, +0.0000022618,0.0000022594,0.0000022581,0.0000022585,0.0000022590, +0.0000022581,0.0000022558,0.0000022542,0.0000022544,0.0000022552, +0.0000022550,0.0000022537,0.0000022533,0.0000022547,0.0000022562, +0.0000022564,0.0000022548,0.0000022525,0.0000022493,0.0000022450, +0.0000022390,0.0000022308,0.0000022223,0.0000022163,0.0000022152, +0.0000022159,0.0000022168,0.0000022197,0.0000022246,0.0000022298, +0.0000022340,0.0000022370,0.0000022388,0.0000022376,0.0000022324, +0.0000022257,0.0000022199,0.0000022140,0.0000022072,0.0000022012, +0.0000021990,0.0000021996,0.0000022020,0.0000022072,0.0000022154, +0.0000022222,0.0000022238,0.0000022227,0.0000022205,0.0000022185, +0.0000022172,0.0000022158,0.0000022140,0.0000022113,0.0000022076, +0.0000022033,0.0000021992,0.0000021967,0.0000021973,0.0000022013, +0.0000022065,0.0000022107,0.0000022132,0.0000022139,0.0000022134, +0.0000022118,0.0000022102,0.0000022094,0.0000022085,0.0000022057, +0.0000022009,0.0000021969,0.0000021945,0.0000021925,0.0000021874, +0.0000021799,0.0000021728,0.0000021673,0.0000021635,0.0000021616, +0.0000021613,0.0000021610,0.0000021606,0.0000021592,0.0000021539, +0.0000021408,0.0000021274,0.0000021233,0.0000021250,0.0000021257, +0.0000021234,0.0000021200,0.0000021153,0.0000021114,0.0000021104, +0.0000021104,0.0000021165,0.0000021423,0.0000021753,0.0000021937, +0.0000022020,0.0000022119,0.0000022200,0.0000022218,0.0000022213, +0.0000022209,0.0000022217,0.0000022243,0.0000022269,0.0000022278, +0.0000022262,0.0000022219,0.0000022205,0.0000022238,0.0000022290, +0.0000022345,0.0000022500,0.0000022740,0.0000022942,0.0000023088, +0.0000023194,0.0000023237,0.0000023247,0.0000023287,0.0000023351, +0.0000023385,0.0000023379,0.0000023355,0.0000023336,0.0000023325, +0.0000023309,0.0000023282,0.0000023239,0.0000023184,0.0000023123, +0.0000023055,0.0000022988,0.0000022929,0.0000022876,0.0000022828, +0.0000022792,0.0000022768,0.0000022755,0.0000022751,0.0000022750, +0.0000022738,0.0000022716,0.0000022698,0.0000022700,0.0000022707, +0.0000022683,0.0000022560,0.0000022376,0.0000022221,0.0000022117, +0.0000022042,0.0000021988,0.0000021916,0.0000021948,0.0000022005, +0.0000022040,0.0000022049,0.0000022025,0.0000021955,0.0000021859, +0.0000021815,0.0000021844,0.0000021975,0.0000022140,0.0000022248, +0.0000022304,0.0000022363,0.0000022426,0.0000022492,0.0000022618, +0.0000022815,0.0000022982,0.0000023031,0.0000023015,0.0000023007, +0.0000023054,0.0000023118,0.0000023129,0.0000023100,0.0000023094, +0.0000023137,0.0000023190,0.0000023238,0.0000023278,0.0000023344, +0.0000023455,0.0000023477,0.0000023304,0.0000023116,0.0000023085, +0.0000023142,0.0000023231,0.0000023312,0.0000023363,0.0000023382, +0.0000023368,0.0000023329,0.0000023303,0.0000023299,0.0000023294, +0.0000023266,0.0000023222,0.0000023182,0.0000023154,0.0000023134, +0.0000023107,0.0000023059,0.0000022993,0.0000022922,0.0000022865, +0.0000022828,0.0000022807,0.0000022796,0.0000022777,0.0000022748, +0.0000022713,0.0000022680,0.0000022646,0.0000022609,0.0000022570, +0.0000022535,0.0000022517,0.0000022512,0.0000022511,0.0000022528, +0.0000022558,0.0000022576,0.0000022594,0.0000022621,0.0000022636, +0.0000022645,0.0000022642,0.0000022622,0.0000022610,0.0000022606, +0.0000022622,0.0000022650,0.0000022668,0.0000022727,0.0000022824, +0.0000022925,0.0000023024,0.0000023101,0.0000023141,0.0000023177, +0.0000023278,0.0000023433,0.0000023557,0.0000023608,0.0000023624, +0.0000023624,0.0000023615,0.0000023616,0.0000023631,0.0000023655, +0.0000023669,0.0000023669,0.0000023657,0.0000023632,0.0000023577, +0.0000023498,0.0000023435,0.0000023403,0.0000023375,0.0000023344, +0.0000023330,0.0000023343,0.0000023384,0.0000023422,0.0000023436, +0.0000023438,0.0000023443,0.0000023455,0.0000023478,0.0000023529, +0.0000023592,0.0000023643,0.0000023687,0.0000023718,0.0000023739, +0.0000023762,0.0000023785,0.0000023799,0.0000023803,0.0000023813, +0.0000023848,0.0000023900,0.0000023935,0.0000023939,0.0000023925, +0.0000023911,0.0000023884,0.0000023837,0.0000023800,0.0000023792, +0.0000023801,0.0000023817,0.0000023824,0.0000023818,0.0000023785, +0.0000023720,0.0000023650,0.0000023644,0.0000023722,0.0000023799, +0.0000023824,0.0000023824,0.0000023848,0.0000023982,0.0000024241, +0.0000024535,0.0000024783,0.0000024974,0.0000025096,0.0000025137, +0.0000025103,0.0000025040,0.0000025009,0.0000025033,0.0000025091, +0.0000025134,0.0000025136,0.0000025099,0.0000025036,0.0000024966, +0.0000024890,0.0000024819,0.0000024763,0.0000024714,0.0000024661, +0.0000024598,0.0000024534,0.0000024469,0.0000024392,0.0000024294, +0.0000024196,0.0000024122,0.0000024076,0.0000024044,0.0000024018, +0.0000023999,0.0000023976,0.0000023934,0.0000023872,0.0000023803, +0.0000023734,0.0000023660,0.0000023590,0.0000023548,0.0000023506, +0.0000023415,0.0000023279,0.0000023177,0.0000023150,0.0000023159, +0.0000023184,0.0000023241,0.0000023323,0.0000023407,0.0000023469, +0.0000023493,0.0000023486,0.0000023453,0.0000023420,0.0000023392, +0.0000023411,0.0000023445,0.0000023508,0.0000023575,0.0000023612, +0.0000023603,0.0000023574,0.0000023559,0.0000023555,0.0000023559, +0.0000023561,0.0000023558,0.0000023567,0.0000023601,0.0000023663, +0.0000023738,0.0000023814,0.0000023879,0.0000023929,0.0000023980, +0.0000024041,0.0000024104,0.0000024160,0.0000024207,0.0000024243, +0.0000024266,0.0000024281,0.0000024292,0.0000024303,0.0000024311, +0.0000024317,0.0000024324,0.0000024338,0.0000024358,0.0000024387, +0.0000024426,0.0000024469,0.0000024510,0.0000024549,0.0000024597, +0.0000024655,0.0000024717,0.0000024769,0.0000024810,0.0000024843, +0.0000024870,0.0000024886,0.0000024872,0.0000024840,0.0000024786, +0.0000024722,0.0000024652,0.0000024582,0.0000024517,0.0000024459, +0.0000024414,0.0000024395,0.0000024396,0.0000024410,0.0000024433, +0.0000024471,0.0000024515,0.0000024553,0.0000024581,0.0000024610, +0.0000024638,0.0000024670,0.0000024704,0.0000024734,0.0000024759, +0.0000024778,0.0000024784,0.0000024771,0.0000024759,0.0000024748, +0.0000024736,0.0000024713,0.0000024678,0.0000024630,0.0000024554, +0.0000024447,0.0000024332,0.0000024227,0.0000024158,0.0000024117, +0.0000024101,0.0000024075,0.0000024050,0.0000024034,0.0000024008, +0.0000023961,0.0000023906,0.0000023892,0.0000023914,0.0000023968, +0.0000024003,0.0000023992,0.0000023932,0.0000023838,0.0000023728, +0.0000023641,0.0000023598,0.0000023615,0.0000023682,0.0000023768, +0.0000023856,0.0000023952,0.0000024040,0.0000024110,0.0000024167, +0.0000024209,0.0000024234,0.0000024244,0.0000024229,0.0000024172, +0.0000024080,0.0000023988,0.0000023940,0.0000023965,0.0000024046, +0.0000024065,0.0000023981,0.0000023920,0.0000023924,0.0000023986, +0.0000024082,0.0000024138,0.0000024099,0.0000023970,0.0000023826, +0.0000023725,0.0000023697,0.0000023691,0.0000023684,0.0000023684, +0.0000023695,0.0000023721,0.0000023735,0.0000023723,0.0000023700, +0.0000023673,0.0000023637,0.0000023577,0.0000023485,0.0000023381, +0.0000023279,0.0000023195,0.0000023136,0.0000023101,0.0000023082, +0.0000023073,0.0000023063,0.0000023042,0.0000023021,0.0000023034, +0.0000023096,0.0000023127,0.0000023109,0.0000023047,0.0000022987, +0.0000022967,0.0000022982,0.0000023022,0.0000023049,0.0000023050, +0.0000023032,0.0000023006,0.0000023014,0.0000023042,0.0000023091, +0.0000023169,0.0000023193,0.0000023199,0.0000023255,0.0000023325, +0.0000023331,0.0000023268,0.0000023127,0.0000023081,0.0000023200, +0.0000023380,0.0000023492,0.0000023522,0.0000023519,0.0000023510, +0.0000023523,0.0000023551,0.0000023579,0.0000023604,0.0000023605, +0.0000023597,0.0000023629,0.0000023732,0.0000023847,0.0000023893, +0.0000023877,0.0000023829,0.0000023792,0.0000023759,0.0000023740, +0.0000023752,0.0000023781,0.0000023823,0.0000023848,0.0000023861, +0.0000023884,0.0000023905,0.0000023901,0.0000023858,0.0000023783, +0.0000023685,0.0000023592,0.0000023532,0.0000023504,0.0000023484, +0.0000023445,0.0000023422,0.0000023422,0.0000023418,0.0000023364, +0.0000023233,0.0000023072,0.0000022943,0.0000022875,0.0000022847, +0.0000022823,0.0000022797,0.0000022775,0.0000022752,0.0000022739, +0.0000022731,0.0000022706,0.0000022636,0.0000022519,0.0000022382, +0.0000022264,0.0000022196,0.0000022186,0.0000022198,0.0000022253, +0.0000022338,0.0000022435,0.0000022518,0.0000022583,0.0000022643, +0.0000022693,0.0000022718,0.0000022693,0.0000022624,0.0000022546, +0.0000022521,0.0000022507,0.0000022463,0.0000022418,0.0000022392, +0.0000022344,0.0000022255,0.0000022176,0.0000022167,0.0000022202, +0.0000022216,0.0000022246,0.0000022360,0.0000022540,0.0000022678, +0.0000022722,0.0000022730,0.0000022731,0.0000022704,0.0000022629, +0.0000022551,0.0000022531,0.0000022552,0.0000022597,0.0000022601, +0.0000022572,0.0000022601,0.0000022763,0.0000022992,0.0000023120, +0.0000023129,0.0000023088,0.0000023007,0.0000022918,0.0000022826, +0.0000022708,0.0000022580,0.0000022476,0.0000022410,0.0000022390, +0.0000022414,0.0000022455,0.0000022493,0.0000022514,0.0000022516, +0.0000022491,0.0000022421,0.0000022329,0.0000022272,0.0000022272, +0.0000022321,0.0000022388,0.0000022444,0.0000022486,0.0000022516, +0.0000022518,0.0000022489,0.0000022431,0.0000022379,0.0000022385, +0.0000022485,0.0000022682,0.0000022892,0.0000023055,0.0000023160, +0.0000023213,0.0000023220,0.0000023208,0.0000023185,0.0000023168, +0.0000023162,0.0000023152,0.0000023116,0.0000023037,0.0000022925, +0.0000022809,0.0000022739,0.0000022732,0.0000022762,0.0000022835, +0.0000022929,0.0000022985,0.0000023001,0.0000023037,0.0000023141, +0.0000023215,0.0000023191,0.0000023278,0.0000023529,0.0000023702, +0.0000023769,0.0000023850,0.0000023925,0.0000023968,0.0000024036, +0.0000024135,0.0000024221,0.0000024236,0.0000024145,0.0000023961, +0.0000023859,0.0000023888,0.0000024005,0.0000024110,0.0000024166, +0.0000024190,0.0000024212,0.0000024234,0.0000024267,0.0000024341, +0.0000024463,0.0000024572,0.0000024624,0.0000024631,0.0000024592, +0.0000024505,0.0000024406,0.0000024349,0.0000024308,0.0000024225, +0.0000024076,0.0000023930,0.0000023834,0.0000023763,0.0000023694, +0.0000023619,0.0000023585,0.0000023606,0.0000023661,0.0000023730, +0.0000023828,0.0000023961,0.0000024062,0.0000024316,0.0000024520, +0.0000024565,0.0000024515,0.0000024404,0.0000024620,0.0000025392, +0.0000025946,0.0000025992,0.0000025640,0.0000025021,0.0000024558, +0.0000024402,0.0000024395,0.0000024455,0.0000024504,0.0000024468, +0.0000024312,0.0000024093,0.0000023964,0.0000023951,0.0000023975, +0.0000024022,0.0000024089,0.0000024180,0.0000024290,0.0000024388, +0.0000024448,0.0000024460,0.0000024438,0.0000024400,0.0000024386, +0.0000024391,0.0000024398,0.0000024390,0.0000024368,0.0000024344, +0.0000024323,0.0000024299,0.0000024271,0.0000024239,0.0000024213, +0.0000024222,0.0000024243,0.0000024277,0.0000024313,0.0000024333, +0.0000024360,0.0000024381,0.0000024402,0.0000024425,0.0000024453, +0.0000024482,0.0000024496,0.0000024497,0.0000024488,0.0000024474, +0.0000024443,0.0000024403,0.0000024354,0.0000024299,0.0000024238, +0.0000024173,0.0000024117,0.0000024076,0.0000024044,0.0000024008, +0.0000023960,0.0000023896,0.0000023819,0.0000023740,0.0000023667, +0.0000023599,0.0000023529,0.0000023447,0.0000023357,0.0000023274, +0.0000023214,0.0000023177,0.0000023156,0.0000023141,0.0000023134, +0.0000023126,0.0000023120,0.0000023126,0.0000023135,0.0000023139, +0.0000023141,0.0000023144,0.0000023150,0.0000023161,0.0000023176, +0.0000023193,0.0000023211,0.0000023231,0.0000023252,0.0000023273, +0.0000023292,0.0000023307,0.0000023322,0.0000023338,0.0000023351, +0.0000023361,0.0000023372,0.0000023386,0.0000023403,0.0000023414, +0.0000023425,0.0000023434,0.0000023445,0.0000023460,0.0000023478, +0.0000023500,0.0000023533,0.0000023571,0.0000023607,0.0000023636, +0.0000023656,0.0000023670,0.0000023682,0.0000023696,0.0000023711, +0.0000023727,0.0000023736,0.0000023736,0.0000023724,0.0000023700, +0.0000023665,0.0000023622,0.0000023587,0.0000023571,0.0000023570, +0.0000023573,0.0000023580,0.0000023590,0.0000023593,0.0000023585, +0.0000023580,0.0000023557,0.0000023496,0.0000023415,0.0000023298, +0.0000023111,0.0000022903,0.0000022760,0.0000022652,0.0000022477, +0.0000022296,0.0000022245,0.0000022279,0.0000022300,0.0000022298, +0.0000022298,0.0000022295,0.0000022294,0.0000022305,0.0000022324, +0.0000022336,0.0000022339,0.0000022340,0.0000022337,0.0000022295, +0.0000022179,0.0000022062,0.0000022039,0.0000022074,0.0000022093, +0.0000022093,0.0000022094,0.0000022096,0.0000022086,0.0000022028, +0.0000021939,0.0000021896,0.0000021914,0.0000021949,0.0000022012, +0.0000022169,0.0000022289,0.0000022254,0.0000022170,0.0000022199, +0.0000022311,0.0000022400,0.0000022443,0.0000022470,0.0000022524, +0.0000022670,0.0000022853,0.0000022943,0.0000022994,0.0000023144, +0.0000023340,0.0000023434,0.0000023411,0.0000023339,0.0000023308, +0.0000023349,0.0000023481,0.0000023632,0.0000023742,0.0000023802, +0.0000023829,0.0000023854,0.0000023920,0.0000024037,0.0000024150, +0.0000024219,0.0000024262,0.0000024304,0.0000024340,0.0000024359, +0.0000024373,0.0000024411,0.0000024492,0.0000024581,0.0000024623, +0.0000024617,0.0000024587,0.0000024533,0.0000024441,0.0000024306, +0.0000024141,0.0000023978,0.0000023871,0.0000023850,0.0000023893, +0.0000023956,0.0000023988,0.0000023980,0.0000023921,0.0000023817, +0.0000023674,0.0000023509,0.0000023347,0.0000023210,0.0000023112, +0.0000023040,0.0000022969,0.0000022879,0.0000022774,0.0000022669, +0.0000022582,0.0000022530,0.0000022510,0.0000022512,0.0000022532, +0.0000022561,0.0000022587,0.0000022606,0.0000022617,0.0000022618, +0.0000022613,0.0000022608,0.0000022614,0.0000022641,0.0000022695, +0.0000022770,0.0000022854,0.0000022930,0.0000022990,0.0000023049, +0.0000023127,0.0000023232,0.0000023353,0.0000023462,0.0000023538, +0.0000023576,0.0000023604,0.0000023648,0.0000023701,0.0000023735, +0.0000023732,0.0000023705,0.0000023683,0.0000023685,0.0000023726, +0.0000023797,0.0000023883,0.0000023971,0.0000024059,0.0000024154, +0.0000024259,0.0000024387,0.0000024548,0.0000024717,0.0000024827, +0.0000024853,0.0000024849,0.0000024865,0.0000024911,0.0000024979, +0.0000025053,0.0000025089,0.0000025074,0.0000025063,0.0000025089, +0.0000025127,0.0000025122,0.0000025071,0.0000025035,0.0000025068, +0.0000025144,0.0000025187,0.0000025180,0.0000025150,0.0000025142, +0.0000025176,0.0000025245,0.0000025330,0.0000025431,0.0000025548, +0.0000025650,0.0000025699,0.0000025701,0.0000025678,0.0000025643, +0.0000025608,0.0000025575,0.0000025540,0.0000025506,0.0000025478, +0.0000025457,0.0000025440,0.0000025433,0.0000025445,0.0000025473, +0.0000025510,0.0000025558,0.0000025602,0.0000025627,0.0000025628, +0.0000025612,0.0000025596,0.0000025590,0.0000025585,0.0000025534, +0.0000025363,0.0000025083,0.0000024828,0.0000024622,0.0000024350, +0.0000024095,0.0000024031,0.0000024137,0.0000024257,0.0000024255, +0.0000024186,0.0000024168,0.0000024277,0.0000024505,0.0000024673, +0.0000024732,0.0000024912,0.0000025289,0.0000025604,0.0000025730, +0.0000025766,0.0000025787,0.0000025792,0.0000025791,0.0000025787, +0.0000025774,0.0000025757,0.0000025739,0.0000025714,0.0000025680, +0.0000025644,0.0000025622,0.0000025620,0.0000025641,0.0000025683, +0.0000025726,0.0000025755,0.0000025769,0.0000025775,0.0000025791, +0.0000025827,0.0000025885,0.0000025956,0.0000026022,0.0000026067, +0.0000026077,0.0000026053,0.0000025997,0.0000025939,0.0000025892, +0.0000025847,0.0000025806,0.0000025794,0.0000025829,0.0000025900, +0.0000025956,0.0000025971,0.0000025950,0.0000025883,0.0000025824, +0.0000025785,0.0000025705,0.0000025617,0.0000025564,0.0000025400, +0.0000025083,0.0000024819,0.0000024693,0.0000024611,0.0000024386, +0.0000024018,0.0000023766,0.0000023698,0.0000023507,0.0000023050, +0.0000022617,0.0000022408,0.0000022319,0.0000022246,0.0000022164, +0.0000022077,0.0000022012,0.0000021975,0.0000021962,0.0000021957, +0.0000021945,0.0000021935,0.0000021922,0.0000021890,0.0000021839, +0.0000021791,0.0000021740,0.0000021682,0.0000021641,0.0000021592, +0.0000021527,0.0000021466,0.0000021414,0.0000021358,0.0000021307, +0.0000021273,0.0000021266,0.0000021288,0.0000021328,0.0000021371, +0.0000021423,0.0000021488,0.0000021559,0.0000021643,0.0000021732, +0.0000021792,0.0000021800,0.0000021790,0.0000021791,0.0000021823, +0.0000021880,0.0000021948,0.0000022016,0.0000022086,0.0000022154, +0.0000022215,0.0000022265,0.0000022300,0.0000022314,0.0000022319, +0.0000022313,0.0000022308,0.0000022300,0.0000022282,0.0000022259, +0.0000022235,0.0000022213,0.0000022195,0.0000022179,0.0000022165, +0.0000022149,0.0000022135,0.0000022118,0.0000022101,0.0000022090, +0.0000022088,0.0000022091,0.0000022101,0.0000022131,0.0000022180, +0.0000022228,0.0000022258,0.0000022256,0.0000022234,0.0000022214, +0.0000022215,0.0000022224,0.0000022224,0.0000022212,0.0000022195, +0.0000022173,0.0000022148,0.0000022144,0.0000022144,0.0000022150, +0.0000022145,0.0000022131,0.0000022109,0.0000022079,0.0000022042, +0.0000021996,0.0000021941,0.0000021891,0.0000021854,0.0000021825, +0.0000021813,0.0000021826,0.0000021850,0.0000021879,0.0000021918, +0.0000021970,0.0000022029,0.0000022097,0.0000022161,0.0000022215, +0.0000022272,0.0000022340,0.0000022406,0.0000022455,0.0000022498, +0.0000022543,0.0000022585,0.0000022624,0.0000022649,0.0000022654, +0.0000022639,0.0000022609,0.0000022572,0.0000022549,0.0000022548, +0.0000022535,0.0000022487,0.0000022445,0.0000022449,0.0000022508, +0.0000022577,0.0000022606,0.0000022600,0.0000022584,0.0000022583, +0.0000022595,0.0000022603,0.0000022594,0.0000022572,0.0000022555, +0.0000022550,0.0000022549,0.0000022542,0.0000022525,0.0000022513, +0.0000022516,0.0000022523,0.0000022519,0.0000022503,0.0000022482, +0.0000022451,0.0000022409,0.0000022354,0.0000022291,0.0000022234, +0.0000022202,0.0000022199,0.0000022207,0.0000022238,0.0000022290, +0.0000022343,0.0000022385,0.0000022408,0.0000022414,0.0000022402, +0.0000022355,0.0000022289,0.0000022232,0.0000022178,0.0000022110, +0.0000022029,0.0000021969,0.0000021959,0.0000021973,0.0000022012, +0.0000022091,0.0000022182,0.0000022226,0.0000022227,0.0000022211, +0.0000022189,0.0000022168,0.0000022154,0.0000022141,0.0000022122, +0.0000022094,0.0000022058,0.0000022017,0.0000021983,0.0000021972, +0.0000021988,0.0000022031,0.0000022085,0.0000022133,0.0000022168, +0.0000022180,0.0000022179,0.0000022165,0.0000022145,0.0000022126, +0.0000022107,0.0000022078,0.0000022029,0.0000021984,0.0000021965, +0.0000021965,0.0000021940,0.0000021877,0.0000021807,0.0000021752, +0.0000021702,0.0000021654,0.0000021613,0.0000021589,0.0000021573, +0.0000021558,0.0000021529,0.0000021435,0.0000021300,0.0000021226, +0.0000021225,0.0000021228,0.0000021209,0.0000021183,0.0000021145, +0.0000021108,0.0000021098,0.0000021101,0.0000021114,0.0000021311, +0.0000021671,0.0000021920,0.0000022022,0.0000022119,0.0000022205, +0.0000022227,0.0000022222,0.0000022222,0.0000022231,0.0000022256, +0.0000022287,0.0000022306,0.0000022301,0.0000022260,0.0000022214, +0.0000022214,0.0000022264,0.0000022315,0.0000022396,0.0000022583, +0.0000022806,0.0000022966,0.0000023093,0.0000023209,0.0000023260, +0.0000023262,0.0000023283,0.0000023344,0.0000023396,0.0000023405, +0.0000023388,0.0000023365,0.0000023346,0.0000023327,0.0000023298, +0.0000023258,0.0000023205,0.0000023145,0.0000023080,0.0000023017, +0.0000022960,0.0000022912,0.0000022868,0.0000022830,0.0000022806, +0.0000022797,0.0000022792,0.0000022783,0.0000022760,0.0000022729, +0.0000022708,0.0000022702,0.0000022694,0.0000022615,0.0000022439, +0.0000022243,0.0000022099,0.0000022000,0.0000021937,0.0000021856, +0.0000021890,0.0000021967,0.0000022024,0.0000022048,0.0000022057, +0.0000022034,0.0000021940,0.0000021841,0.0000021824,0.0000021914, +0.0000022075,0.0000022201,0.0000022268,0.0000022329,0.0000022397, +0.0000022476,0.0000022617,0.0000022815,0.0000022964,0.0000022994, +0.0000022977,0.0000022984,0.0000023044,0.0000023101,0.0000023104, +0.0000023088,0.0000023105,0.0000023159,0.0000023214,0.0000023259, +0.0000023303,0.0000023392,0.0000023487,0.0000023448,0.0000023237, +0.0000023084,0.0000023082,0.0000023142,0.0000023216,0.0000023271, +0.0000023296,0.0000023304,0.0000023290,0.0000023263,0.0000023255, +0.0000023258,0.0000023249,0.0000023218,0.0000023179,0.0000023150, +0.0000023132,0.0000023110,0.0000023063,0.0000022995,0.0000022924, +0.0000022867,0.0000022840,0.0000022813,0.0000022802,0.0000022804, +0.0000022803,0.0000022787,0.0000022753,0.0000022714,0.0000022679, +0.0000022643,0.0000022600,0.0000022558,0.0000022542,0.0000022541, +0.0000022539,0.0000022548,0.0000022569,0.0000022584,0.0000022599, +0.0000022623,0.0000022638,0.0000022652,0.0000022652,0.0000022627, +0.0000022608,0.0000022598,0.0000022596,0.0000022615,0.0000022622, +0.0000022654,0.0000022740,0.0000022843,0.0000022943,0.0000023033, +0.0000023101,0.0000023139,0.0000023183,0.0000023287,0.0000023434, +0.0000023556,0.0000023623,0.0000023645,0.0000023642,0.0000023629, +0.0000023623,0.0000023628,0.0000023636,0.0000023650,0.0000023661, +0.0000023657,0.0000023636,0.0000023584,0.0000023503,0.0000023443, +0.0000023425,0.0000023415,0.0000023389,0.0000023362,0.0000023363, +0.0000023387,0.0000023411,0.0000023423,0.0000023427,0.0000023434, +0.0000023452,0.0000023492,0.0000023547,0.0000023598,0.0000023644, +0.0000023683,0.0000023708,0.0000023730,0.0000023755,0.0000023779, +0.0000023800,0.0000023815,0.0000023833,0.0000023866,0.0000023915, +0.0000023950,0.0000023956,0.0000023943,0.0000023925,0.0000023892, +0.0000023847,0.0000023811,0.0000023792,0.0000023789,0.0000023794, +0.0000023797,0.0000023789,0.0000023755,0.0000023692,0.0000023609, +0.0000023574,0.0000023611,0.0000023686,0.0000023742,0.0000023768, +0.0000023794,0.0000023886,0.0000024084,0.0000024356,0.0000024632, +0.0000024858,0.0000025014,0.0000025090,0.0000025078,0.0000025032, +0.0000024993,0.0000025009,0.0000025071,0.0000025128,0.0000025149, +0.0000025131,0.0000025084,0.0000025020,0.0000024941,0.0000024865, +0.0000024809,0.0000024772,0.0000024728,0.0000024662,0.0000024585, +0.0000024515,0.0000024449,0.0000024372,0.0000024292,0.0000024225, +0.0000024182,0.0000024158,0.0000024142,0.0000024129,0.0000024113, +0.0000024078,0.0000024016,0.0000023932,0.0000023835,0.0000023737, +0.0000023649,0.0000023592,0.0000023562,0.0000023512,0.0000023399, +0.0000023257,0.0000023163,0.0000023138,0.0000023148,0.0000023188, +0.0000023269,0.0000023376,0.0000023470,0.0000023518,0.0000023556, +0.0000023564,0.0000023552,0.0000023526,0.0000023503,0.0000023480, +0.0000023495,0.0000023533,0.0000023583,0.0000023608,0.0000023604, +0.0000023586,0.0000023562,0.0000023551,0.0000023536,0.0000023525, +0.0000023519,0.0000023523,0.0000023542,0.0000023584,0.0000023651, +0.0000023734,0.0000023824,0.0000023918,0.0000024006,0.0000024083, +0.0000024146,0.0000024195,0.0000024233,0.0000024258,0.0000024273, +0.0000024278,0.0000024276,0.0000024266,0.0000024249,0.0000024232, +0.0000024222,0.0000024220,0.0000024233,0.0000024261,0.0000024297, +0.0000024334,0.0000024374,0.0000024426,0.0000024500,0.0000024588, +0.0000024667,0.0000024724,0.0000024764,0.0000024797,0.0000024823, +0.0000024834,0.0000024830,0.0000024807,0.0000024775,0.0000024728, +0.0000024673,0.0000024613,0.0000024549,0.0000024488,0.0000024443, +0.0000024418,0.0000024415,0.0000024429,0.0000024466,0.0000024511, +0.0000024549,0.0000024578,0.0000024608,0.0000024633,0.0000024653, +0.0000024668,0.0000024680,0.0000024687,0.0000024694,0.0000024704, +0.0000024715,0.0000024732,0.0000024754,0.0000024782,0.0000024790, +0.0000024775,0.0000024739,0.0000024679,0.0000024599,0.0000024504, +0.0000024396,0.0000024280,0.0000024172,0.0000024098,0.0000024052, +0.0000024025,0.0000024024,0.0000024039,0.0000024068,0.0000024072, +0.0000024048,0.0000024008,0.0000023974,0.0000023966,0.0000023968, +0.0000023957,0.0000023907,0.0000023815,0.0000023699,0.0000023598, +0.0000023549,0.0000023558,0.0000023608,0.0000023673,0.0000023747, +0.0000023829,0.0000023910,0.0000023978,0.0000024023,0.0000024039, +0.0000024033,0.0000023999,0.0000023946,0.0000023899,0.0000023878, +0.0000023908,0.0000023996,0.0000024071,0.0000024045,0.0000023952, +0.0000023921,0.0000023948,0.0000024039,0.0000024159,0.0000024182, +0.0000024104,0.0000023973,0.0000023832,0.0000023729,0.0000023686, +0.0000023673,0.0000023663,0.0000023661,0.0000023670,0.0000023694, +0.0000023725,0.0000023735,0.0000023715,0.0000023677,0.0000023629, +0.0000023566,0.0000023494,0.0000023426,0.0000023358,0.0000023300, +0.0000023239,0.0000023193,0.0000023154,0.0000023116,0.0000023078, +0.0000023038,0.0000023011,0.0000023027,0.0000023109,0.0000023160, +0.0000023143,0.0000023083,0.0000023026,0.0000023004,0.0000023023, +0.0000023073,0.0000023117,0.0000023134,0.0000023130,0.0000023096, +0.0000023046,0.0000023016,0.0000023046,0.0000023103,0.0000023173, +0.0000023198,0.0000023184,0.0000023215,0.0000023293,0.0000023318, +0.0000023313,0.0000023229,0.0000023117,0.0000023114,0.0000023203, +0.0000023309,0.0000023378,0.0000023423,0.0000023472,0.0000023510, +0.0000023528,0.0000023544,0.0000023557,0.0000023560,0.0000023554, +0.0000023576,0.0000023640,0.0000023741,0.0000023835,0.0000023853, +0.0000023819,0.0000023779,0.0000023740,0.0000023710,0.0000023699, +0.0000023708,0.0000023706,0.0000023699,0.0000023700,0.0000023712, +0.0000023729,0.0000023729,0.0000023695,0.0000023627,0.0000023562, +0.0000023521,0.0000023479,0.0000023430,0.0000023384,0.0000023379, +0.0000023391,0.0000023356,0.0000023237,0.0000023071,0.0000022949, +0.0000022904,0.0000022886,0.0000022870,0.0000022849,0.0000022821, +0.0000022785,0.0000022746,0.0000022701,0.0000022646,0.0000022566, +0.0000022465,0.0000022374,0.0000022304,0.0000022278,0.0000022281, +0.0000022347,0.0000022423,0.0000022494,0.0000022554,0.0000022597, +0.0000022620,0.0000022633,0.0000022648,0.0000022682,0.0000022706, +0.0000022672,0.0000022588,0.0000022532,0.0000022526,0.0000022517, +0.0000022470,0.0000022433,0.0000022421,0.0000022371,0.0000022260, +0.0000022181,0.0000022177,0.0000022195,0.0000022209,0.0000022265, +0.0000022405,0.0000022568,0.0000022678,0.0000022706,0.0000022717, +0.0000022721,0.0000022674,0.0000022583,0.0000022527,0.0000022530, +0.0000022585,0.0000022633,0.0000022629,0.0000022608,0.0000022675, +0.0000022875,0.0000023073,0.0000023145,0.0000023128,0.0000023061, +0.0000022975,0.0000022881,0.0000022766,0.0000022614,0.0000022470, +0.0000022386,0.0000022358,0.0000022365,0.0000022397,0.0000022441, +0.0000022479,0.0000022504,0.0000022512,0.0000022484,0.0000022400, +0.0000022299,0.0000022249,0.0000022271,0.0000022333,0.0000022403, +0.0000022456,0.0000022497,0.0000022527,0.0000022528,0.0000022494, +0.0000022450,0.0000022422,0.0000022464,0.0000022587,0.0000022769, +0.0000022944,0.0000023077,0.0000023165,0.0000023211,0.0000023226, +0.0000023216,0.0000023193,0.0000023165,0.0000023138,0.0000023117, +0.0000023081,0.0000023010,0.0000022915,0.0000022816,0.0000022737, +0.0000022711,0.0000022719,0.0000022759,0.0000022832,0.0000022899, +0.0000022936,0.0000022981,0.0000023087,0.0000023209,0.0000023207, +0.0000023184,0.0000023344,0.0000023580,0.0000023700,0.0000023768, +0.0000023854,0.0000023916,0.0000023972,0.0000024059,0.0000024150, +0.0000024213,0.0000024212,0.0000024085,0.0000023916,0.0000023855, +0.0000023891,0.0000023983,0.0000024053,0.0000024088,0.0000024116, +0.0000024161,0.0000024227,0.0000024320,0.0000024445,0.0000024555, +0.0000024607,0.0000024613,0.0000024596,0.0000024540,0.0000024448, +0.0000024370,0.0000024326,0.0000024278,0.0000024179,0.0000024028, +0.0000023902,0.0000023823,0.0000023753,0.0000023685,0.0000023617, +0.0000023584,0.0000023601,0.0000023640,0.0000023709,0.0000023791, +0.0000023927,0.0000024001,0.0000024171,0.0000024402,0.0000024486, +0.0000024472,0.0000024372,0.0000024317,0.0000024728,0.0000025494, +0.0000025888,0.0000025859,0.0000025489,0.0000024919,0.0000024512, +0.0000024375,0.0000024366,0.0000024411,0.0000024460,0.0000024465, +0.0000024354,0.0000024153,0.0000023992,0.0000023937,0.0000023939, +0.0000023976,0.0000024036,0.0000024115,0.0000024206,0.0000024297, +0.0000024377,0.0000024429,0.0000024449,0.0000024452,0.0000024438, +0.0000024419,0.0000024390,0.0000024358,0.0000024333,0.0000024313, +0.0000024298,0.0000024275,0.0000024241,0.0000024207,0.0000024186, +0.0000024168,0.0000024173,0.0000024217,0.0000024277,0.0000024353, +0.0000024414,0.0000024453,0.0000024477,0.0000024488,0.0000024496, +0.0000024501,0.0000024495,0.0000024486,0.0000024473,0.0000024454, +0.0000024429,0.0000024399,0.0000024360,0.0000024318,0.0000024272, +0.0000024230,0.0000024195,0.0000024165,0.0000024132,0.0000024092, +0.0000024042,0.0000023983,0.0000023923,0.0000023871,0.0000023831, +0.0000023793,0.0000023742,0.0000023669,0.0000023580,0.0000023489, +0.0000023413,0.0000023358,0.0000023315,0.0000023279,0.0000023247, +0.0000023221,0.0000023203,0.0000023193,0.0000023188,0.0000023184, +0.0000023184,0.0000023187,0.0000023194,0.0000023202,0.0000023213, +0.0000023228,0.0000023246,0.0000023266,0.0000023285,0.0000023304, +0.0000023321,0.0000023337,0.0000023354,0.0000023371,0.0000023387, +0.0000023404,0.0000023422,0.0000023441,0.0000023459,0.0000023474, +0.0000023488,0.0000023500,0.0000023514,0.0000023533,0.0000023560, +0.0000023599,0.0000023637,0.0000023665,0.0000023680,0.0000023686, +0.0000023691,0.0000023704,0.0000023725,0.0000023749,0.0000023770, +0.0000023786,0.0000023793,0.0000023792,0.0000023781,0.0000023757, +0.0000023718,0.0000023673,0.0000023639,0.0000023616,0.0000023595, +0.0000023576,0.0000023570,0.0000023571,0.0000023565,0.0000023552, +0.0000023540,0.0000023507,0.0000023439,0.0000023349,0.0000023215, +0.0000023024,0.0000022840,0.0000022703,0.0000022552,0.0000022357, +0.0000022227,0.0000022234,0.0000022289,0.0000022305,0.0000022301, +0.0000022292,0.0000022283,0.0000022282,0.0000022292,0.0000022303, +0.0000022311,0.0000022318,0.0000022323,0.0000022305,0.0000022201, +0.0000022075,0.0000022044,0.0000022083,0.0000022100,0.0000022085, +0.0000022076,0.0000022082,0.0000022093,0.0000022083,0.0000022022, +0.0000021926,0.0000021880,0.0000021893,0.0000021921,0.0000021988, +0.0000022155,0.0000022271,0.0000022234,0.0000022159,0.0000022187, +0.0000022289,0.0000022371,0.0000022432,0.0000022482,0.0000022537, +0.0000022663,0.0000022829,0.0000022909,0.0000022945,0.0000023090, +0.0000023307,0.0000023427,0.0000023409,0.0000023345,0.0000023335, +0.0000023427,0.0000023586,0.0000023732,0.0000023835,0.0000023897, +0.0000023933,0.0000023986,0.0000024082,0.0000024183,0.0000024241, +0.0000024269,0.0000024294,0.0000024316,0.0000024325,0.0000024328, +0.0000024349,0.0000024411,0.0000024501,0.0000024562,0.0000024568, +0.0000024543,0.0000024501,0.0000024437,0.0000024336,0.0000024197, +0.0000024032,0.0000023883,0.0000023799,0.0000023790,0.0000023826, +0.0000023863,0.0000023866,0.0000023822,0.0000023728,0.0000023599, +0.0000023445,0.0000023276,0.0000023116,0.0000022985,0.0000022888, +0.0000022810,0.0000022736,0.0000022654,0.0000022557,0.0000022452, +0.0000022359,0.0000022298,0.0000022275,0.0000022276,0.0000022305, +0.0000022347,0.0000022388,0.0000022426,0.0000022456,0.0000022470, +0.0000022468,0.0000022452,0.0000022430,0.0000022418,0.0000022431, +0.0000022479,0.0000022562,0.0000022670,0.0000022777,0.0000022863, +0.0000022940,0.0000023036,0.0000023165,0.0000023307,0.0000023420, +0.0000023478,0.0000023502,0.0000023529,0.0000023577,0.0000023631, +0.0000023657,0.0000023647,0.0000023624,0.0000023615,0.0000023632, +0.0000023685,0.0000023764,0.0000023858,0.0000023953,0.0000024044, +0.0000024140,0.0000024254,0.0000024402,0.0000024581,0.0000024747, +0.0000024830,0.0000024836,0.0000024831,0.0000024855,0.0000024911, +0.0000024988,0.0000025047,0.0000025048,0.0000025026,0.0000025036, +0.0000025073,0.0000025082,0.0000025048,0.0000025008,0.0000025020, +0.0000025088,0.0000025148,0.0000025157,0.0000025136,0.0000025133, +0.0000025170,0.0000025249,0.0000025344,0.0000025444,0.0000025549, +0.0000025636,0.0000025679,0.0000025677,0.0000025645,0.0000025595, +0.0000025544,0.0000025498,0.0000025457,0.0000025428,0.0000025410, +0.0000025405,0.0000025409,0.0000025425,0.0000025450,0.0000025487, +0.0000025535,0.0000025581,0.0000025611,0.0000025626,0.0000025613, +0.0000025582,0.0000025555,0.0000025534,0.0000025496,0.0000025394, +0.0000025174,0.0000024899,0.0000024686,0.0000024483,0.0000024209, +0.0000024001,0.0000023987,0.0000024115,0.0000024225,0.0000024204, +0.0000024137,0.0000024145,0.0000024295,0.0000024538,0.0000024692, +0.0000024752,0.0000024947,0.0000025315,0.0000025607,0.0000025718, +0.0000025752,0.0000025771,0.0000025774,0.0000025769,0.0000025755, +0.0000025731,0.0000025697,0.0000025662,0.0000025633,0.0000025612, +0.0000025604,0.0000025606,0.0000025612,0.0000025626,0.0000025657, +0.0000025698,0.0000025733,0.0000025749,0.0000025752,0.0000025757, +0.0000025778,0.0000025825,0.0000025889,0.0000025953,0.0000025998, +0.0000026007,0.0000025987,0.0000025935,0.0000025883,0.0000025849, +0.0000025823,0.0000025801,0.0000025797,0.0000025843,0.0000025914, +0.0000025961,0.0000025966,0.0000025933,0.0000025862,0.0000025806, +0.0000025778,0.0000025703,0.0000025600,0.0000025537,0.0000025388, +0.0000025070,0.0000024780,0.0000024638,0.0000024575,0.0000024412, +0.0000024069,0.0000023783,0.0000023703,0.0000023591,0.0000023196, +0.0000022736,0.0000022489,0.0000022402,0.0000022334,0.0000022240, +0.0000022129,0.0000022032,0.0000021968,0.0000021928,0.0000021920, +0.0000021924,0.0000021932,0.0000021925,0.0000021887,0.0000021812, +0.0000021744,0.0000021676,0.0000021606,0.0000021562,0.0000021524, +0.0000021482,0.0000021431,0.0000021380,0.0000021335,0.0000021301, +0.0000021269,0.0000021245,0.0000021234,0.0000021249,0.0000021286, +0.0000021324,0.0000021356,0.0000021396,0.0000021454,0.0000021528, +0.0000021604,0.0000021652,0.0000021674,0.0000021691,0.0000021721, +0.0000021767,0.0000021830,0.0000021903,0.0000021975,0.0000022036, +0.0000022086,0.0000022131,0.0000022175,0.0000022217,0.0000022254, +0.0000022283,0.0000022308,0.0000022321,0.0000022326,0.0000022324, +0.0000022311,0.0000022291,0.0000022268,0.0000022244,0.0000022218, +0.0000022190,0.0000022165,0.0000022138,0.0000022107,0.0000022084, +0.0000022075,0.0000022077,0.0000022088,0.0000022111,0.0000022155, +0.0000022207,0.0000022251,0.0000022266,0.0000022252,0.0000022226, +0.0000022210,0.0000022204,0.0000022200,0.0000022187,0.0000022171, +0.0000022161,0.0000022151,0.0000022156,0.0000022161,0.0000022165, +0.0000022149,0.0000022121,0.0000022089,0.0000022060,0.0000022032, +0.0000021997,0.0000021951,0.0000021903,0.0000021859,0.0000021817, +0.0000021777,0.0000021755,0.0000021756,0.0000021772,0.0000021807, +0.0000021864,0.0000021935,0.0000022010,0.0000022074,0.0000022122, +0.0000022163,0.0000022215,0.0000022284,0.0000022351,0.0000022405, +0.0000022458,0.0000022507,0.0000022550,0.0000022595,0.0000022630, +0.0000022641,0.0000022629,0.0000022599,0.0000022563,0.0000022545, +0.0000022543,0.0000022519,0.0000022460,0.0000022420,0.0000022430, +0.0000022493,0.0000022561,0.0000022591,0.0000022588,0.0000022580, +0.0000022586,0.0000022601,0.0000022608,0.0000022604,0.0000022586, +0.0000022566,0.0000022551,0.0000022543,0.0000022534,0.0000022517, +0.0000022497,0.0000022487,0.0000022483,0.0000022477,0.0000022463, +0.0000022444,0.0000022414,0.0000022377,0.0000022336,0.0000022294, +0.0000022258,0.0000022237,0.0000022240,0.0000022271,0.0000022327, +0.0000022380,0.0000022420,0.0000022445,0.0000022449,0.0000022436, +0.0000022393,0.0000022327,0.0000022266,0.0000022216,0.0000022153, +0.0000022067,0.0000021981,0.0000021933,0.0000021930,0.0000021958, +0.0000022024,0.0000022120,0.0000022187,0.0000022201,0.0000022200, +0.0000022193,0.0000022179,0.0000022158,0.0000022137,0.0000022119, +0.0000022097,0.0000022066,0.0000022025,0.0000021982,0.0000021952, +0.0000021950,0.0000021978,0.0000022027,0.0000022081,0.0000022131, +0.0000022173,0.0000022199,0.0000022206,0.0000022197,0.0000022178, +0.0000022153,0.0000022122,0.0000022090,0.0000022045,0.0000021994, +0.0000021974,0.0000021982,0.0000021989,0.0000021954,0.0000021889, +0.0000021830,0.0000021785,0.0000021736,0.0000021662,0.0000021589, +0.0000021542,0.0000021510,0.0000021487,0.0000021444,0.0000021346, +0.0000021250,0.0000021220,0.0000021215,0.0000021195,0.0000021163, +0.0000021128,0.0000021100,0.0000021097,0.0000021104,0.0000021108, +0.0000021226,0.0000021578,0.0000021888,0.0000022014,0.0000022104, +0.0000022195,0.0000022231,0.0000022232,0.0000022239,0.0000022254, +0.0000022278,0.0000022312,0.0000022341,0.0000022349,0.0000022333, +0.0000022285,0.0000022250,0.0000022263,0.0000022301,0.0000022348, +0.0000022465,0.0000022676,0.0000022866,0.0000022980,0.0000023090, +0.0000023214,0.0000023281,0.0000023283,0.0000023277,0.0000023304, +0.0000023364,0.0000023407,0.0000023412,0.0000023393,0.0000023364, +0.0000023334,0.0000023300,0.0000023259,0.0000023211,0.0000023161, +0.0000023113,0.0000023068,0.0000023023,0.0000022975,0.0000022929, +0.0000022895,0.0000022874,0.0000022858,0.0000022842,0.0000022821, +0.0000022788,0.0000022747,0.0000022716,0.0000022701,0.0000022659, +0.0000022523,0.0000022307,0.0000022107,0.0000021970,0.0000021883, +0.0000021792,0.0000021809,0.0000021887,0.0000021962,0.0000021998, +0.0000022035,0.0000022062,0.0000022023,0.0000021902,0.0000021819, +0.0000021849,0.0000021994,0.0000022142,0.0000022225,0.0000022289, +0.0000022363,0.0000022463,0.0000022626,0.0000022821,0.0000022943, +0.0000022961,0.0000022948,0.0000022974,0.0000023040,0.0000023085, +0.0000023081,0.0000023082,0.0000023119,0.0000023178,0.0000023231, +0.0000023274,0.0000023328,0.0000023435,0.0000023506,0.0000023410, +0.0000023183,0.0000023067,0.0000023082,0.0000023132,0.0000023176, +0.0000023198,0.0000023207,0.0000023212,0.0000023204,0.0000023195, +0.0000023202,0.0000023209,0.0000023197,0.0000023170,0.0000023142, +0.0000023122,0.0000023101,0.0000023060,0.0000022996,0.0000022933, +0.0000022884,0.0000022855,0.0000022847,0.0000022844,0.0000022846, +0.0000022852,0.0000022855,0.0000022842,0.0000022799,0.0000022749, +0.0000022707,0.0000022672,0.0000022629,0.0000022585,0.0000022571, +0.0000022574,0.0000022574,0.0000022580,0.0000022594,0.0000022604, +0.0000022614,0.0000022636,0.0000022656,0.0000022671,0.0000022673, +0.0000022645,0.0000022614,0.0000022597,0.0000022578,0.0000022581, +0.0000022588,0.0000022604,0.0000022663,0.0000022757,0.0000022854, +0.0000022946,0.0000023024,0.0000023099,0.0000023150,0.0000023198, +0.0000023291,0.0000023429,0.0000023562,0.0000023638,0.0000023658, +0.0000023658,0.0000023649,0.0000023637,0.0000023630,0.0000023633, +0.0000023647,0.0000023656,0.0000023650,0.0000023636,0.0000023597, +0.0000023521,0.0000023463,0.0000023453,0.0000023454,0.0000023426, +0.0000023394,0.0000023386,0.0000023393,0.0000023408,0.0000023419, +0.0000023426,0.0000023440,0.0000023475,0.0000023522,0.0000023565, +0.0000023603,0.0000023641,0.0000023674,0.0000023699,0.0000023724, +0.0000023750,0.0000023780,0.0000023811,0.0000023838,0.0000023858, +0.0000023887,0.0000023930,0.0000023963,0.0000023969,0.0000023955, +0.0000023932,0.0000023897,0.0000023854,0.0000023814,0.0000023784, +0.0000023773,0.0000023775,0.0000023774,0.0000023758,0.0000023722, +0.0000023663,0.0000023579,0.0000023504,0.0000023496,0.0000023552, +0.0000023637,0.0000023700,0.0000023747,0.0000023825,0.0000023968, +0.0000024188,0.0000024459,0.0000024715,0.0000024906,0.0000025013, +0.0000025044,0.0000025012,0.0000024978,0.0000024985,0.0000025042, +0.0000025104,0.0000025144,0.0000025155,0.0000025131,0.0000025075, +0.0000024998,0.0000024917,0.0000024856,0.0000024820,0.0000024783, +0.0000024722,0.0000024643,0.0000024572,0.0000024517,0.0000024472, +0.0000024423,0.0000024368,0.0000024317,0.0000024279,0.0000024250, +0.0000024229,0.0000024212,0.0000024185,0.0000024134,0.0000024050, +0.0000023944,0.0000023834,0.0000023737,0.0000023666,0.0000023625, +0.0000023589,0.0000023518,0.0000023391,0.0000023249,0.0000023154, +0.0000023137,0.0000023148,0.0000023200,0.0000023297,0.0000023407, +0.0000023495,0.0000023565,0.0000023600,0.0000023635,0.0000023655, +0.0000023647,0.0000023614,0.0000023580,0.0000023551,0.0000023548, +0.0000023566,0.0000023589,0.0000023594,0.0000023588,0.0000023573, +0.0000023549,0.0000023523,0.0000023508,0.0000023487,0.0000023478, +0.0000023487,0.0000023516,0.0000023575,0.0000023666,0.0000023779, +0.0000023898,0.0000024009,0.0000024101,0.0000024169,0.0000024214, +0.0000024243,0.0000024260,0.0000024270,0.0000024272,0.0000024263, +0.0000024238,0.0000024206,0.0000024167,0.0000024138,0.0000024122, +0.0000024127,0.0000024146,0.0000024177,0.0000024214,0.0000024260, +0.0000024326,0.0000024414,0.0000024508,0.0000024592,0.0000024655, +0.0000024702,0.0000024735,0.0000024754,0.0000024767,0.0000024770, +0.0000024763,0.0000024737,0.0000024715,0.0000024682,0.0000024634, +0.0000024579,0.0000024523,0.0000024476,0.0000024452,0.0000024450, +0.0000024473,0.0000024515,0.0000024550,0.0000024583,0.0000024618, +0.0000024647,0.0000024663,0.0000024669,0.0000024667,0.0000024655, +0.0000024639,0.0000024625,0.0000024620,0.0000024633,0.0000024672, +0.0000024729,0.0000024785,0.0000024809,0.0000024809,0.0000024779, +0.0000024723,0.0000024647,0.0000024553,0.0000024442,0.0000024328, +0.0000024226,0.0000024134,0.0000024048,0.0000024003,0.0000023999, +0.0000024032,0.0000024078,0.0000024115,0.0000024145,0.0000024127, +0.0000024079,0.0000024008,0.0000023954,0.0000023910,0.0000023856, +0.0000023781,0.0000023685,0.0000023596,0.0000023542,0.0000023530, +0.0000023547,0.0000023576,0.0000023614,0.0000023668,0.0000023736, +0.0000023789,0.0000023807,0.0000023804,0.0000023793,0.0000023781, +0.0000023777,0.0000023815,0.0000023916,0.0000024034,0.0000024059, +0.0000023991,0.0000023934,0.0000023939,0.0000023999,0.0000024119, +0.0000024206,0.0000024200,0.0000024109,0.0000023988,0.0000023852, +0.0000023747,0.0000023699,0.0000023675,0.0000023661,0.0000023654, +0.0000023651,0.0000023661,0.0000023688,0.0000023713,0.0000023712, +0.0000023685,0.0000023638,0.0000023572,0.0000023500,0.0000023432, +0.0000023391,0.0000023361,0.0000023323,0.0000023287,0.0000023252, +0.0000023200,0.0000023124,0.0000023051,0.0000023021,0.0000023060, +0.0000023150,0.0000023186,0.0000023161,0.0000023112,0.0000023070, +0.0000023066,0.0000023094,0.0000023129,0.0000023147,0.0000023147, +0.0000023148,0.0000023140,0.0000023119,0.0000023084,0.0000023040, +0.0000023066,0.0000023122,0.0000023175,0.0000023205,0.0000023195, +0.0000023220,0.0000023294,0.0000023326,0.0000023334,0.0000023315, +0.0000023192,0.0000023102,0.0000023124,0.0000023172,0.0000023236, +0.0000023302,0.0000023363,0.0000023397,0.0000023400,0.0000023392, +0.0000023402,0.0000023428,0.0000023478,0.0000023545,0.0000023606, +0.0000023673,0.0000023753,0.0000023798,0.0000023800,0.0000023783, +0.0000023750,0.0000023704,0.0000023674,0.0000023639,0.0000023598, +0.0000023564,0.0000023546,0.0000023544,0.0000023568,0.0000023582, +0.0000023568,0.0000023533,0.0000023484,0.0000023418,0.0000023359, +0.0000023342,0.0000023354,0.0000023346,0.0000023256,0.0000023101, +0.0000022968,0.0000022924,0.0000022922,0.0000022906,0.0000022882, +0.0000022864,0.0000022843,0.0000022800,0.0000022731,0.0000022625, +0.0000022504,0.0000022415,0.0000022371,0.0000022380,0.0000022409, +0.0000022461,0.0000022524,0.0000022588,0.0000022633,0.0000022661, +0.0000022679,0.0000022686,0.0000022668,0.0000022644,0.0000022636, +0.0000022639,0.0000022633,0.0000022582,0.0000022521,0.0000022511, +0.0000022530,0.0000022527,0.0000022484,0.0000022453,0.0000022450, +0.0000022402,0.0000022284,0.0000022199,0.0000022195,0.0000022196, +0.0000022202,0.0000022290,0.0000022460,0.0000022589,0.0000022652, +0.0000022685,0.0000022705,0.0000022706,0.0000022643,0.0000022549, +0.0000022515,0.0000022546,0.0000022620,0.0000022665,0.0000022657, +0.0000022656,0.0000022769,0.0000022979,0.0000023126,0.0000023145, +0.0000023106,0.0000023027,0.0000022932,0.0000022826,0.0000022686, +0.0000022514,0.0000022377,0.0000022326,0.0000022324,0.0000022345, +0.0000022379,0.0000022420,0.0000022457,0.0000022486,0.0000022493, +0.0000022450,0.0000022354,0.0000022260,0.0000022238,0.0000022274, +0.0000022352,0.0000022420,0.0000022468,0.0000022508,0.0000022538, +0.0000022540,0.0000022515,0.0000022480,0.0000022491,0.0000022565, +0.0000022693,0.0000022846,0.0000022984,0.0000023090,0.0000023166, +0.0000023201,0.0000023215,0.0000023209,0.0000023195,0.0000023172, +0.0000023137,0.0000023098,0.0000023054,0.0000022994,0.0000022913, +0.0000022824,0.0000022747,0.0000022696,0.0000022687,0.0000022705, +0.0000022749,0.0000022805,0.0000022857,0.0000022916,0.0000023014, +0.0000023164,0.0000023231,0.0000023175,0.0000023198,0.0000023406, +0.0000023602,0.0000023696,0.0000023767,0.0000023845,0.0000023906, +0.0000023980,0.0000024075,0.0000024155,0.0000024195,0.0000024172, +0.0000024034,0.0000023891,0.0000023856,0.0000023885,0.0000023953, +0.0000023999,0.0000024030,0.0000024078,0.0000024163,0.0000024276, +0.0000024401,0.0000024513,0.0000024579,0.0000024591,0.0000024582, +0.0000024554,0.0000024488,0.0000024401,0.0000024343,0.0000024303, +0.0000024244,0.0000024131,0.0000023987,0.0000023883,0.0000023808, +0.0000023734,0.0000023671,0.0000023613,0.0000023582,0.0000023600, +0.0000023632,0.0000023698,0.0000023772,0.0000023897,0.0000023983, +0.0000024063,0.0000024274,0.0000024412,0.0000024409,0.0000024352, +0.0000024244,0.0000024276,0.0000024827,0.0000025510,0.0000025804, +0.0000025733,0.0000025390,0.0000024880,0.0000024501,0.0000024357, +0.0000024334,0.0000024364,0.0000024428,0.0000024462,0.0000024413, +0.0000024238,0.0000024039,0.0000023928,0.0000023911,0.0000023926, +0.0000023976,0.0000024047,0.0000024125,0.0000024208,0.0000024287, +0.0000024367,0.0000024436,0.0000024470,0.0000024467,0.0000024441, +0.0000024397,0.0000024349,0.0000024313,0.0000024291,0.0000024273, +0.0000024249,0.0000024224,0.0000024203,0.0000024184,0.0000024170, +0.0000024174,0.0000024201,0.0000024255,0.0000024334,0.0000024406, +0.0000024463,0.0000024501,0.0000024520,0.0000024526,0.0000024515, +0.0000024493,0.0000024469,0.0000024444,0.0000024417,0.0000024390, +0.0000024360,0.0000024329,0.0000024298,0.0000024273,0.0000024251, +0.0000024228,0.0000024202,0.0000024171,0.0000024133,0.0000024087, +0.0000024038,0.0000023994,0.0000023963,0.0000023942,0.0000023922, +0.0000023891,0.0000023842,0.0000023778,0.0000023710,0.0000023647, +0.0000023593,0.0000023544,0.0000023500,0.0000023458,0.0000023420, +0.0000023389,0.0000023366,0.0000023347,0.0000023336,0.0000023332, +0.0000023330,0.0000023328,0.0000023328,0.0000023335,0.0000023347, +0.0000023361,0.0000023377,0.0000023393,0.0000023409,0.0000023424, +0.0000023439,0.0000023456,0.0000023471,0.0000023483,0.0000023493, +0.0000023504,0.0000023518,0.0000023535,0.0000023554,0.0000023576, +0.0000023601,0.0000023628,0.0000023657,0.0000023687,0.0000023711, +0.0000023725,0.0000023732,0.0000023738,0.0000023748,0.0000023768, +0.0000023798,0.0000023833,0.0000023867,0.0000023893,0.0000023912, +0.0000023922,0.0000023922,0.0000023906,0.0000023870,0.0000023821, +0.0000023771,0.0000023731,0.0000023694,0.0000023645,0.0000023597, +0.0000023568,0.0000023551,0.0000023535,0.0000023515,0.0000023496, +0.0000023453,0.0000023380,0.0000023283,0.0000023133,0.0000022941, +0.0000022764,0.0000022603,0.0000022424,0.0000022258,0.0000022205, +0.0000022244,0.0000022293,0.0000022306,0.0000022303,0.0000022294, +0.0000022283,0.0000022278,0.0000022279,0.0000022289,0.0000022306, +0.0000022322,0.0000022308,0.0000022212,0.0000022086,0.0000022048, +0.0000022084,0.0000022098,0.0000022069,0.0000022051,0.0000022064, +0.0000022085,0.0000022089,0.0000022077,0.0000022019,0.0000021921, +0.0000021872,0.0000021876,0.0000021897,0.0000021959,0.0000022130, +0.0000022249,0.0000022211,0.0000022140,0.0000022171,0.0000022271, +0.0000022348,0.0000022418,0.0000022490,0.0000022545,0.0000022648, +0.0000022794,0.0000022867,0.0000022895,0.0000023034,0.0000023270, +0.0000023416,0.0000023406,0.0000023351,0.0000023379,0.0000023509, +0.0000023665,0.0000023794,0.0000023899,0.0000023974,0.0000024038, +0.0000024119,0.0000024202,0.0000024253,0.0000024276,0.0000024292, +0.0000024299,0.0000024291,0.0000024281,0.0000024287,0.0000024329, +0.0000024409,0.0000024485,0.0000024509,0.0000024496,0.0000024460, +0.0000024413,0.0000024344,0.0000024241,0.0000024101,0.0000023943, +0.0000023808,0.0000023723,0.0000023686,0.0000023686,0.0000023692, +0.0000023671,0.0000023601,0.0000023489,0.0000023353,0.0000023199, +0.0000023037,0.0000022891,0.0000022779,0.0000022697,0.0000022628, +0.0000022553,0.0000022458,0.0000022343,0.0000022228,0.0000022136, +0.0000022088,0.0000022081,0.0000022101,0.0000022141,0.0000022186, +0.0000022234,0.0000022284,0.0000022325,0.0000022350,0.0000022360, +0.0000022352,0.0000022328,0.0000022296,0.0000022271,0.0000022266, +0.0000022297,0.0000022377,0.0000022499,0.0000022629,0.0000022744, +0.0000022850,0.0000022978,0.0000023133,0.0000023280,0.0000023374, +0.0000023411,0.0000023427,0.0000023460,0.0000023517,0.0000023566, +0.0000023580,0.0000023569,0.0000023553,0.0000023550,0.0000023576, +0.0000023634,0.0000023722,0.0000023827,0.0000023929,0.0000024025, +0.0000024131,0.0000024265,0.0000024432,0.0000024619,0.0000024762, +0.0000024807,0.0000024799,0.0000024807,0.0000024848,0.0000024915, +0.0000024989,0.0000025018,0.0000024998,0.0000024990,0.0000025014, +0.0000025042,0.0000025033,0.0000024993,0.0000024987,0.0000025042, +0.0000025117,0.0000025147,0.0000025139,0.0000025137,0.0000025177, +0.0000025260,0.0000025355,0.0000025441,0.0000025520,0.0000025588, +0.0000025627,0.0000025628,0.0000025592,0.0000025532,0.0000025467, +0.0000025413,0.0000025378,0.0000025363,0.0000025365,0.0000025381, +0.0000025402,0.0000025428,0.0000025462,0.0000025506,0.0000025553, +0.0000025588,0.0000025602,0.0000025596,0.0000025570,0.0000025530, +0.0000025483,0.0000025425,0.0000025340,0.0000025179,0.0000024933, +0.0000024703,0.0000024526,0.0000024308,0.0000024052,0.0000023902, +0.0000023933,0.0000024081,0.0000024167,0.0000024140,0.0000024089, +0.0000024122,0.0000024303,0.0000024557,0.0000024709,0.0000024769, +0.0000024948,0.0000025278,0.0000025553,0.0000025677,0.0000025722, +0.0000025744,0.0000025748,0.0000025741,0.0000025724,0.0000025696, +0.0000025656,0.0000025610,0.0000025570,0.0000025551,0.0000025559, +0.0000025585,0.0000025609,0.0000025623,0.0000025643,0.0000025676, +0.0000025714,0.0000025739,0.0000025748,0.0000025746,0.0000025749, +0.0000025770,0.0000025816,0.0000025871,0.0000025912,0.0000025924, +0.0000025912,0.0000025877,0.0000025843,0.0000025827,0.0000025820, +0.0000025808,0.0000025811,0.0000025854,0.0000025919,0.0000025959, +0.0000025961,0.0000025925,0.0000025855,0.0000025799,0.0000025771, +0.0000025697,0.0000025576,0.0000025493,0.0000025357,0.0000025053, +0.0000024746,0.0000024593,0.0000024536,0.0000024435,0.0000024152, +0.0000023828,0.0000023704,0.0000023656,0.0000023359,0.0000022885, +0.0000022575,0.0000022473,0.0000022416,0.0000022325,0.0000022203, +0.0000022088,0.0000021995,0.0000021929,0.0000021889,0.0000021889, +0.0000021919,0.0000021934,0.0000021909,0.0000021830,0.0000021742, +0.0000021639,0.0000021562,0.0000021501,0.0000021453,0.0000021427, +0.0000021401,0.0000021368,0.0000021331,0.0000021301,0.0000021274, +0.0000021254,0.0000021229,0.0000021204,0.0000021207,0.0000021229, +0.0000021253,0.0000021273,0.0000021302,0.0000021343,0.0000021402, +0.0000021463,0.0000021517,0.0000021571,0.0000021621,0.0000021665, +0.0000021715,0.0000021777,0.0000021841,0.0000021897,0.0000021938, +0.0000021971,0.0000022009,0.0000022058,0.0000022114,0.0000022172, +0.0000022225,0.0000022264,0.0000022292,0.0000022311,0.0000022317, +0.0000022306,0.0000022289,0.0000022265,0.0000022234,0.0000022200, +0.0000022168,0.0000022136,0.0000022105,0.0000022080,0.0000022067, +0.0000022067,0.0000022078,0.0000022097,0.0000022129,0.0000022173, +0.0000022223,0.0000022268,0.0000022289,0.0000022286,0.0000022269, +0.0000022253,0.0000022243,0.0000022235,0.0000022230,0.0000022227, +0.0000022229,0.0000022234,0.0000022233,0.0000022220,0.0000022178, +0.0000022123,0.0000022073,0.0000022039,0.0000022015,0.0000021988, +0.0000021954,0.0000021917,0.0000021882,0.0000021841,0.0000021794, +0.0000021746,0.0000021713,0.0000021698,0.0000021704,0.0000021734, +0.0000021795,0.0000021872,0.0000021950,0.0000022014,0.0000022061, +0.0000022102,0.0000022155,0.0000022221,0.0000022284,0.0000022349, +0.0000022414,0.0000022468,0.0000022511,0.0000022559,0.0000022598, +0.0000022615,0.0000022611,0.0000022586,0.0000022555,0.0000022541, +0.0000022536,0.0000022498,0.0000022435,0.0000022395,0.0000022409, +0.0000022474,0.0000022541,0.0000022572,0.0000022573,0.0000022572, +0.0000022580,0.0000022595,0.0000022607,0.0000022607,0.0000022599, +0.0000022576,0.0000022553,0.0000022539,0.0000022531,0.0000022513, +0.0000022487,0.0000022464,0.0000022451,0.0000022440,0.0000022424, +0.0000022405,0.0000022380,0.0000022353,0.0000022326,0.0000022299, +0.0000022272,0.0000022263,0.0000022286,0.0000022346,0.0000022407, +0.0000022446,0.0000022466,0.0000022473,0.0000022468,0.0000022438, +0.0000022376,0.0000022307,0.0000022255,0.0000022198,0.0000022112, +0.0000022013,0.0000021932,0.0000021897,0.0000021904,0.0000021956, +0.0000022051,0.0000022138,0.0000022167,0.0000022167,0.0000022172, +0.0000022172,0.0000022156,0.0000022127,0.0000022097,0.0000022073, +0.0000022049,0.0000022015,0.0000021970,0.0000021925,0.0000021897, +0.0000021899,0.0000021936,0.0000021991,0.0000022047,0.0000022100, +0.0000022153,0.0000022195,0.0000022212,0.0000022210,0.0000022195, +0.0000022166,0.0000022126,0.0000022090,0.0000022050,0.0000022001, +0.0000021975,0.0000021985,0.0000022009,0.0000022008,0.0000021967, +0.0000021911,0.0000021868,0.0000021833,0.0000021760,0.0000021645, +0.0000021536,0.0000021468,0.0000021437,0.0000021421,0.0000021371, +0.0000021293,0.0000021237,0.0000021212,0.0000021189,0.0000021152, +0.0000021113,0.0000021095,0.0000021101,0.0000021111,0.0000021116, +0.0000021170,0.0000021473,0.0000021825,0.0000021991,0.0000022080, +0.0000022183,0.0000022240,0.0000022251,0.0000022264,0.0000022288, +0.0000022314,0.0000022344,0.0000022378,0.0000022399,0.0000022403, +0.0000022391,0.0000022361,0.0000022334,0.0000022329,0.0000022349, +0.0000022423,0.0000022588,0.0000022785,0.0000022911,0.0000022980, +0.0000023077,0.0000023202,0.0000023275,0.0000023276,0.0000023252, +0.0000023254,0.0000023306,0.0000023369,0.0000023404,0.0000023400, +0.0000023375,0.0000023339,0.0000023297,0.0000023253,0.0000023209, +0.0000023168,0.0000023131,0.0000023097,0.0000023061,0.0000023026, +0.0000022995,0.0000022968,0.0000022943,0.0000022921,0.0000022898, +0.0000022866,0.0000022816,0.0000022758,0.0000022718,0.0000022693, +0.0000022612,0.0000022422,0.0000022175,0.0000021972,0.0000021844, +0.0000021735,0.0000021722,0.0000021785,0.0000021879,0.0000021931, +0.0000021970,0.0000022032,0.0000022058,0.0000021980,0.0000021838, +0.0000021794,0.0000021899,0.0000022065,0.0000022175,0.0000022243, +0.0000022322,0.0000022444,0.0000022631,0.0000022824,0.0000022921, +0.0000022926,0.0000022926,0.0000022969,0.0000023036,0.0000023069, +0.0000023066,0.0000023084,0.0000023135,0.0000023192,0.0000023241, +0.0000023285,0.0000023356,0.0000023474,0.0000023515,0.0000023372, +0.0000023144,0.0000023063,0.0000023080,0.0000023113,0.0000023126, +0.0000023120,0.0000023117,0.0000023118,0.0000023119,0.0000023125, +0.0000023141,0.0000023154,0.0000023153,0.0000023137,0.0000023118, +0.0000023095,0.0000023056,0.0000023000,0.0000022942,0.0000022911, +0.0000022894,0.0000022892,0.0000022901,0.0000022913,0.0000022916, +0.0000022918,0.0000022916,0.0000022891,0.0000022837,0.0000022779, +0.0000022733,0.0000022695,0.0000022653,0.0000022612,0.0000022599, +0.0000022606,0.0000022613,0.0000022622,0.0000022636,0.0000022642, +0.0000022643,0.0000022658,0.0000022684,0.0000022702,0.0000022708, +0.0000022686,0.0000022643,0.0000022608,0.0000022571,0.0000022555, +0.0000022558,0.0000022569,0.0000022607,0.0000022674,0.0000022754, +0.0000022851,0.0000022931,0.0000023016,0.0000023109,0.0000023170, +0.0000023210,0.0000023293,0.0000023435,0.0000023571,0.0000023643, +0.0000023667,0.0000023676,0.0000023670,0.0000023656,0.0000023640, +0.0000023637,0.0000023644,0.0000023642,0.0000023638,0.0000023638, +0.0000023612,0.0000023541,0.0000023483,0.0000023477,0.0000023479, +0.0000023454,0.0000023422,0.0000023404,0.0000023405,0.0000023415, +0.0000023424,0.0000023437,0.0000023472,0.0000023518,0.0000023557, +0.0000023586,0.0000023617,0.0000023649,0.0000023677,0.0000023702, +0.0000023727,0.0000023756,0.0000023789,0.0000023823,0.0000023857, +0.0000023883,0.0000023909,0.0000023941,0.0000023967,0.0000023971, +0.0000023955,0.0000023931,0.0000023901,0.0000023857,0.0000023808, +0.0000023771,0.0000023761,0.0000023760,0.0000023753,0.0000023731, +0.0000023693,0.0000023637,0.0000023550,0.0000023452,0.0000023396, +0.0000023420,0.0000023510,0.0000023611,0.0000023696,0.0000023784, +0.0000023894,0.0000024056,0.0000024286,0.0000024542,0.0000024760, +0.0000024902,0.0000024970,0.0000024975,0.0000024962,0.0000024966, +0.0000025006,0.0000025064,0.0000025125,0.0000025160,0.0000025161, +0.0000025121,0.0000025053,0.0000024974,0.0000024906,0.0000024863, +0.0000024829,0.0000024777,0.0000024703,0.0000024634,0.0000024590, +0.0000024575,0.0000024560,0.0000024534,0.0000024495,0.0000024447, +0.0000024392,0.0000024340,0.0000024301,0.0000024269,0.0000024226, +0.0000024155,0.0000024057,0.0000023948,0.0000023849,0.0000023773, +0.0000023715,0.0000023662,0.0000023608,0.0000023524,0.0000023398, +0.0000023259,0.0000023163,0.0000023150,0.0000023161,0.0000023216, +0.0000023310,0.0000023420,0.0000023519,0.0000023588,0.0000023652, +0.0000023695,0.0000023734,0.0000023745,0.0000023723,0.0000023673, +0.0000023621,0.0000023582,0.0000023566,0.0000023560,0.0000023565, +0.0000023572,0.0000023571,0.0000023556,0.0000023532,0.0000023502, +0.0000023475,0.0000023466,0.0000023459,0.0000023480,0.0000023540, +0.0000023633,0.0000023748,0.0000023870,0.0000023982,0.0000024076, +0.0000024149,0.0000024198,0.0000024231,0.0000024251,0.0000024259, +0.0000024256,0.0000024235,0.0000024204,0.0000024163,0.0000024118, +0.0000024083,0.0000024060,0.0000024059,0.0000024074,0.0000024103, +0.0000024140,0.0000024184,0.0000024243,0.0000024319,0.0000024406, +0.0000024489,0.0000024559,0.0000024612,0.0000024648,0.0000024675, +0.0000024690,0.0000024695,0.0000024693,0.0000024687,0.0000024675, +0.0000024643,0.0000024606,0.0000024556,0.0000024504,0.0000024462, +0.0000024448,0.0000024453,0.0000024474,0.0000024500,0.0000024537, +0.0000024582,0.0000024620,0.0000024643,0.0000024651,0.0000024651, +0.0000024639,0.0000024616,0.0000024587,0.0000024558,0.0000024545, +0.0000024561,0.0000024613,0.0000024683,0.0000024744,0.0000024784, +0.0000024792,0.0000024788,0.0000024752,0.0000024685,0.0000024588, +0.0000024478,0.0000024375,0.0000024282,0.0000024190,0.0000024109, +0.0000024048,0.0000024022,0.0000024017,0.0000024047,0.0000024101, +0.0000024152,0.0000024180,0.0000024162,0.0000024109,0.0000024029, +0.0000023934,0.0000023836,0.0000023740,0.0000023656,0.0000023592, +0.0000023550,0.0000023535,0.0000023533,0.0000023539,0.0000023565, +0.0000023598,0.0000023636,0.0000023664,0.0000023678,0.0000023691, +0.0000023714,0.0000023756,0.0000023857,0.0000023973,0.0000024025, +0.0000023991,0.0000023936,0.0000023936,0.0000023986,0.0000024084, +0.0000024216,0.0000024265,0.0000024205,0.0000024112,0.0000024012, +0.0000023882,0.0000023770,0.0000023718,0.0000023691,0.0000023671, +0.0000023662,0.0000023658,0.0000023656,0.0000023658,0.0000023668, +0.0000023672,0.0000023663,0.0000023633,0.0000023584,0.0000023524, +0.0000023460,0.0000023418,0.0000023391,0.0000023368,0.0000023335, +0.0000023302,0.0000023235,0.0000023144,0.0000023081,0.0000023083, +0.0000023153,0.0000023224,0.0000023232,0.0000023198,0.0000023152, +0.0000023119,0.0000023130,0.0000023163,0.0000023178,0.0000023157, +0.0000023111,0.0000023069,0.0000023057,0.0000023067,0.0000023098, +0.0000023104,0.0000023082,0.0000023103,0.0000023152,0.0000023182, +0.0000023221,0.0000023223,0.0000023241,0.0000023312,0.0000023350, +0.0000023335,0.0000023325,0.0000023274,0.0000023147,0.0000023116, +0.0000023168,0.0000023224,0.0000023268,0.0000023297,0.0000023298, +0.0000023272,0.0000023225,0.0000023209,0.0000023235,0.0000023316, +0.0000023441,0.0000023570,0.0000023657,0.0000023703,0.0000023721, +0.0000023735,0.0000023763,0.0000023765,0.0000023741,0.0000023687, +0.0000023626,0.0000023562,0.0000023507,0.0000023470,0.0000023448, +0.0000023473,0.0000023488,0.0000023461,0.0000023400,0.0000023348, +0.0000023323,0.0000023325,0.0000023324,0.0000023271,0.0000023131, +0.0000022999,0.0000022946,0.0000022936,0.0000022935,0.0000022908, +0.0000022881,0.0000022871,0.0000022848,0.0000022778,0.0000022653, +0.0000022527,0.0000022450,0.0000022434,0.0000022470,0.0000022546, +0.0000022618,0.0000022659,0.0000022682,0.0000022707,0.0000022731, +0.0000022749,0.0000022753,0.0000022741,0.0000022709,0.0000022664, +0.0000022627,0.0000022593,0.0000022543,0.0000022482,0.0000022457, +0.0000022493,0.0000022534,0.0000022534,0.0000022505,0.0000022486, +0.0000022482,0.0000022430,0.0000022317,0.0000022226,0.0000022208, +0.0000022202,0.0000022209,0.0000022321,0.0000022504,0.0000022610, +0.0000022633,0.0000022658,0.0000022683,0.0000022677,0.0000022604, +0.0000022523,0.0000022514,0.0000022574,0.0000022653,0.0000022682, +0.0000022675,0.0000022717,0.0000022866,0.0000023056,0.0000023147, +0.0000023140,0.0000023075,0.0000022980,0.0000022873,0.0000022750, +0.0000022591,0.0000022422,0.0000022313,0.0000022289,0.0000022303, +0.0000022325,0.0000022355,0.0000022390,0.0000022426,0.0000022452, +0.0000022452,0.0000022395,0.0000022302,0.0000022233,0.0000022231, +0.0000022293,0.0000022375,0.0000022434,0.0000022481,0.0000022525, +0.0000022556,0.0000022561,0.0000022549,0.0000022541,0.0000022578, +0.0000022672,0.0000022793,0.0000022913,0.0000023017,0.0000023091, +0.0000023149,0.0000023189,0.0000023197,0.0000023193,0.0000023185, +0.0000023175,0.0000023155,0.0000023114,0.0000023061,0.0000023003, +0.0000022934,0.0000022852,0.0000022772,0.0000022703,0.0000022671, +0.0000022673,0.0000022693,0.0000022723,0.0000022769,0.0000022842, +0.0000022941,0.0000023094,0.0000023224,0.0000023212,0.0000023161, +0.0000023252,0.0000023455,0.0000023615,0.0000023693,0.0000023760, +0.0000023830,0.0000023900,0.0000023986,0.0000024080,0.0000024149, +0.0000024171,0.0000024140,0.0000024004,0.0000023883,0.0000023858, +0.0000023882,0.0000023931,0.0000023971,0.0000024017,0.0000024092, +0.0000024209,0.0000024334,0.0000024441,0.0000024526,0.0000024556, +0.0000024547,0.0000024537,0.0000024509,0.0000024439,0.0000024366, +0.0000024321,0.0000024278,0.0000024209,0.0000024086,0.0000023953, +0.0000023862,0.0000023785,0.0000023712,0.0000023656,0.0000023603, +0.0000023579,0.0000023603,0.0000023638,0.0000023695,0.0000023772, +0.0000023879,0.0000023980,0.0000024013,0.0000024160,0.0000024327, +0.0000024346,0.0000024295,0.0000024234,0.0000024175,0.0000024291, +0.0000024860,0.0000025462,0.0000025698,0.0000025636,0.0000025340, +0.0000024877,0.0000024503,0.0000024338,0.0000024310,0.0000024335, +0.0000024415,0.0000024481,0.0000024477,0.0000024330,0.0000024115, +0.0000023952,0.0000023881,0.0000023868,0.0000023906,0.0000023970, +0.0000024046,0.0000024121,0.0000024204,0.0000024297,0.0000024383, +0.0000024442,0.0000024462,0.0000024446,0.0000024412,0.0000024365, +0.0000024325,0.0000024294,0.0000024267,0.0000024243,0.0000024231, +0.0000024227,0.0000024220,0.0000024213,0.0000024213,0.0000024234, +0.0000024271,0.0000024310,0.0000024358,0.0000024402,0.0000024442, +0.0000024475,0.0000024491,0.0000024489,0.0000024475,0.0000024454, +0.0000024424,0.0000024402,0.0000024373,0.0000024342,0.0000024316, +0.0000024292,0.0000024271,0.0000024250,0.0000024227,0.0000024199, +0.0000024169,0.0000024134,0.0000024094,0.0000024055,0.0000024027, +0.0000024011,0.0000024001,0.0000023990,0.0000023975,0.0000023949, +0.0000023915,0.0000023873,0.0000023829,0.0000023784,0.0000023742, +0.0000023702,0.0000023664,0.0000023629,0.0000023600,0.0000023574, +0.0000023553,0.0000023540,0.0000023530,0.0000023520,0.0000023509, +0.0000023503,0.0000023502,0.0000023506,0.0000023514,0.0000023522, +0.0000023529,0.0000023536,0.0000023544,0.0000023554,0.0000023564, +0.0000023574,0.0000023585,0.0000023599,0.0000023619,0.0000023644, +0.0000023670,0.0000023696,0.0000023722,0.0000023745,0.0000023764, +0.0000023781,0.0000023794,0.0000023806,0.0000023822,0.0000023842, +0.0000023865,0.0000023890,0.0000023923,0.0000023963,0.0000024007, +0.0000024046,0.0000024076,0.0000024094,0.0000024101,0.0000024091, +0.0000024054,0.0000024000,0.0000023939,0.0000023882,0.0000023831, +0.0000023773,0.0000023701,0.0000023622,0.0000023560,0.0000023527, +0.0000023500,0.0000023473,0.0000023445,0.0000023396,0.0000023319, +0.0000023207,0.0000023035,0.0000022838,0.0000022653,0.0000022474, +0.0000022303,0.0000022204,0.0000022211,0.0000022261,0.0000022292, +0.0000022304,0.0000022307,0.0000022298,0.0000022283,0.0000022275, +0.0000022282,0.0000022307,0.0000022330,0.0000022317,0.0000022224, +0.0000022101,0.0000022060,0.0000022081,0.0000022085,0.0000022041, +0.0000022016,0.0000022047,0.0000022092,0.0000022099,0.0000022086, +0.0000022071,0.0000022021,0.0000021924,0.0000021865,0.0000021864, +0.0000021870,0.0000021923,0.0000022102,0.0000022228,0.0000022186, +0.0000022111,0.0000022143,0.0000022248,0.0000022329,0.0000022409, +0.0000022490,0.0000022539,0.0000022620,0.0000022754,0.0000022828, +0.0000022849,0.0000022979,0.0000023229,0.0000023401,0.0000023412, +0.0000023390,0.0000023445,0.0000023576,0.0000023710,0.0000023831, +0.0000023944,0.0000024040,0.0000024126,0.0000024203,0.0000024250, +0.0000024271,0.0000024285,0.0000024288,0.0000024266,0.0000024236, +0.0000024229,0.0000024255,0.0000024316,0.0000024394,0.0000024448, +0.0000024453,0.0000024426,0.0000024381,0.0000024330,0.0000024262, +0.0000024160,0.0000024012,0.0000023839,0.0000023684,0.0000023572, +0.0000023507,0.0000023478,0.0000023460,0.0000023423,0.0000023348, +0.0000023240,0.0000023111,0.0000022975,0.0000022846,0.0000022739, +0.0000022652,0.0000022566,0.0000022471,0.0000022367,0.0000022253, +0.0000022140,0.0000022041,0.0000021975,0.0000021942,0.0000021938, +0.0000021955,0.0000021979,0.0000022014,0.0000022062,0.0000022113, +0.0000022155,0.0000022186,0.0000022205,0.0000022212,0.0000022208, +0.0000022195,0.0000022179,0.0000022159,0.0000022143,0.0000022159, +0.0000022228,0.0000022352,0.0000022502,0.0000022650,0.0000022795, +0.0000022950,0.0000023109,0.0000023240,0.0000023314,0.0000023340, +0.0000023360,0.0000023402,0.0000023455,0.0000023490,0.0000023499, +0.0000023489,0.0000023475,0.0000023478,0.0000023509,0.0000023575, +0.0000023676,0.0000023794,0.0000023903,0.0000024012,0.0000024138, +0.0000024288,0.0000024467,0.0000024644,0.0000024744,0.0000024761, +0.0000024762,0.0000024788,0.0000024840,0.0000024920,0.0000024981, +0.0000024980,0.0000024952,0.0000024957,0.0000024997,0.0000025010, +0.0000024984,0.0000024968,0.0000025011,0.0000025092,0.0000025136, +0.0000025137,0.0000025134,0.0000025167,0.0000025245,0.0000025333, +0.0000025404,0.0000025461,0.0000025512,0.0000025546,0.0000025547, +0.0000025513,0.0000025449,0.0000025381,0.0000025336,0.0000025319, +0.0000025323,0.0000025341,0.0000025366,0.0000025392,0.0000025423, +0.0000025464,0.0000025511,0.0000025546,0.0000025557,0.0000025552, +0.0000025535,0.0000025496,0.0000025430,0.0000025347,0.0000025251, +0.0000025114,0.0000024906,0.0000024686,0.0000024519,0.0000024343, +0.0000024115,0.0000023901,0.0000023818,0.0000023888,0.0000024048, +0.0000024116,0.0000024083,0.0000024052,0.0000024107,0.0000024301, +0.0000024557,0.0000024718,0.0000024778,0.0000024908,0.0000025166, +0.0000025418,0.0000025568,0.0000025639,0.0000025672,0.0000025680, +0.0000025674,0.0000025660,0.0000025638,0.0000025608,0.0000025569, +0.0000025533,0.0000025511,0.0000025517,0.0000025551,0.0000025593, +0.0000025623,0.0000025643,0.0000025668,0.0000025700,0.0000025731, +0.0000025748,0.0000025746,0.0000025736,0.0000025731,0.0000025749, +0.0000025787,0.0000025824,0.0000025840,0.0000025838,0.0000025823, +0.0000025814,0.0000025817,0.0000025823,0.0000025822,0.0000025829, +0.0000025865,0.0000025919,0.0000025951,0.0000025951,0.0000025919, +0.0000025854,0.0000025793,0.0000025761,0.0000025687,0.0000025556, +0.0000025456,0.0000025335,0.0000025056,0.0000024741,0.0000024571, +0.0000024504,0.0000024450,0.0000024251,0.0000023919,0.0000023720, +0.0000023691,0.0000023509,0.0000023066,0.0000022680,0.0000022528, +0.0000022484,0.0000022416,0.0000022299,0.0000022172,0.0000022068, +0.0000021975,0.0000021897,0.0000021864,0.0000021881,0.0000021918, +0.0000021919,0.0000021876,0.0000021787,0.0000021672,0.0000021581, +0.0000021508,0.0000021448,0.0000021412,0.0000021395,0.0000021371, +0.0000021336,0.0000021299,0.0000021275,0.0000021271,0.0000021258, +0.0000021225,0.0000021191,0.0000021173,0.0000021177,0.0000021185, +0.0000021187,0.0000021197,0.0000021225,0.0000021275,0.0000021334, +0.0000021402,0.0000021480,0.0000021545,0.0000021600,0.0000021657, +0.0000021714,0.0000021760,0.0000021791,0.0000021810,0.0000021828, +0.0000021863,0.0000021919,0.0000021997,0.0000022084,0.0000022159, +0.0000022217,0.0000022252,0.0000022269,0.0000022270,0.0000022264, +0.0000022245,0.0000022218,0.0000022184,0.0000022149,0.0000022115, +0.0000022085,0.0000022065,0.0000022053,0.0000022056,0.0000022074, +0.0000022100,0.0000022128,0.0000022162,0.0000022208,0.0000022259, +0.0000022303,0.0000022327,0.0000022334,0.0000022334,0.0000022332, +0.0000022328,0.0000022322,0.0000022315,0.0000022308,0.0000022301, +0.0000022291,0.0000022266,0.0000022212,0.0000022136,0.0000022064, +0.0000022019,0.0000021993,0.0000021967,0.0000021940,0.0000021913, +0.0000021889,0.0000021857,0.0000021811,0.0000021761,0.0000021715, +0.0000021679,0.0000021656,0.0000021652,0.0000021672,0.0000021717, +0.0000021782,0.0000021856,0.0000021925,0.0000021982,0.0000022033, +0.0000022089,0.0000022151,0.0000022212,0.0000022283,0.0000022358, +0.0000022419,0.0000022471,0.0000022521,0.0000022562,0.0000022588, +0.0000022592,0.0000022575,0.0000022552,0.0000022539,0.0000022525, +0.0000022481,0.0000022414,0.0000022374,0.0000022386,0.0000022449, +0.0000022516,0.0000022548,0.0000022555,0.0000022558,0.0000022567, +0.0000022580,0.0000022597,0.0000022607,0.0000022602,0.0000022583, +0.0000022554,0.0000022536,0.0000022527,0.0000022512,0.0000022482, +0.0000022450,0.0000022422,0.0000022398,0.0000022376,0.0000022359, +0.0000022342,0.0000022325,0.0000022308,0.0000022289,0.0000022277, +0.0000022293,0.0000022345,0.0000022407,0.0000022454,0.0000022475, +0.0000022481,0.0000022481,0.0000022468,0.0000022427,0.0000022359, +0.0000022299,0.0000022250,0.0000022168,0.0000022057,0.0000021957, +0.0000021885,0.0000021860,0.0000021881,0.0000021965,0.0000022072, +0.0000022129,0.0000022133,0.0000022136,0.0000022143,0.0000022131, +0.0000022093,0.0000022055,0.0000022031,0.0000022014,0.0000021996, +0.0000021965,0.0000021923,0.0000021882,0.0000021861,0.0000021865, +0.0000021897,0.0000021950,0.0000022008,0.0000022063,0.0000022121, +0.0000022174,0.0000022205,0.0000022211,0.0000022196,0.0000022166, +0.0000022120,0.0000022079,0.0000022042,0.0000021999,0.0000021970, +0.0000021978,0.0000022009,0.0000022030,0.0000022024,0.0000021987, +0.0000021948,0.0000021920,0.0000021870,0.0000021755,0.0000021593, +0.0000021460,0.0000021402,0.0000021384,0.0000021364,0.0000021326, +0.0000021276,0.0000021232,0.0000021194,0.0000021152,0.0000021112, +0.0000021098,0.0000021109,0.0000021126,0.0000021115,0.0000021117, +0.0000021353,0.0000021733,0.0000021957,0.0000022060,0.0000022169, +0.0000022245,0.0000022267,0.0000022284,0.0000022318,0.0000022349, +0.0000022377,0.0000022406,0.0000022433,0.0000022453,0.0000022470, +0.0000022476,0.0000022468,0.0000022447,0.0000022441,0.0000022479, +0.0000022593,0.0000022751,0.0000022871,0.0000022922,0.0000022962, +0.0000023045,0.0000023159,0.0000023242,0.0000023254,0.0000023225, +0.0000023210,0.0000023238,0.0000023309,0.0000023366,0.0000023384, +0.0000023375,0.0000023348,0.0000023308,0.0000023261,0.0000023216, +0.0000023176,0.0000023140,0.0000023111,0.0000023089,0.0000023069, +0.0000023048,0.0000023026,0.0000023003,0.0000022979,0.0000022947, +0.0000022897,0.0000022831,0.0000022763,0.0000022715,0.0000022666, +0.0000022544,0.0000022312,0.0000022043,0.0000021838,0.0000021714, +0.0000021656,0.0000021682,0.0000021781,0.0000021865,0.0000021904, +0.0000021966,0.0000022046,0.0000022036,0.0000021897,0.0000021776, +0.0000021812,0.0000021971,0.0000022113,0.0000022194,0.0000022273, +0.0000022415,0.0000022627,0.0000022818,0.0000022897,0.0000022899, +0.0000022915,0.0000022970,0.0000023030,0.0000023053,0.0000023057, +0.0000023093,0.0000023150,0.0000023200,0.0000023245,0.0000023294, +0.0000023388,0.0000023510,0.0000023522,0.0000023336,0.0000023125, +0.0000023070,0.0000023083,0.0000023097,0.0000023084,0.0000023058, +0.0000023047,0.0000023049,0.0000023060,0.0000023074,0.0000023093, +0.0000023115,0.0000023127,0.0000023127,0.0000023105,0.0000023065, +0.0000023015,0.0000022968,0.0000022936,0.0000022931,0.0000022943, +0.0000022957,0.0000022964,0.0000022974,0.0000022975,0.0000022972, +0.0000022960,0.0000022921,0.0000022858,0.0000022803,0.0000022762, +0.0000022721,0.0000022679,0.0000022648,0.0000022640,0.0000022649, +0.0000022663,0.0000022672,0.0000022685,0.0000022687,0.0000022681, +0.0000022689,0.0000022713,0.0000022734,0.0000022751,0.0000022740, +0.0000022696,0.0000022647,0.0000022589,0.0000022551,0.0000022542, +0.0000022545,0.0000022568,0.0000022609,0.0000022661,0.0000022746, +0.0000022833,0.0000022914,0.0000023017,0.0000023124,0.0000023184, +0.0000023219,0.0000023303,0.0000023437,0.0000023559,0.0000023633, +0.0000023672,0.0000023685,0.0000023683,0.0000023669,0.0000023650, +0.0000023635,0.0000023627,0.0000023623,0.0000023632,0.0000023642, +0.0000023623,0.0000023557,0.0000023504,0.0000023498,0.0000023499, +0.0000023475,0.0000023441,0.0000023422,0.0000023421,0.0000023427, +0.0000023438,0.0000023472,0.0000023523,0.0000023566,0.0000023595, +0.0000023617,0.0000023644,0.0000023668,0.0000023691,0.0000023714, +0.0000023740,0.0000023772,0.0000023801,0.0000023832,0.0000023866, +0.0000023897,0.0000023923,0.0000023944,0.0000023959,0.0000023961, +0.0000023946,0.0000023926,0.0000023900,0.0000023856,0.0000023800, +0.0000023756,0.0000023740,0.0000023738,0.0000023731,0.0000023707, +0.0000023666,0.0000023604,0.0000023514,0.0000023408,0.0000023324, +0.0000023311,0.0000023373,0.0000023501,0.0000023632,0.0000023748, +0.0000023849,0.0000023967,0.0000024138,0.0000024352,0.0000024570, +0.0000024744,0.0000024851,0.0000024903,0.0000024927,0.0000024947, +0.0000024978,0.0000025030,0.0000025102,0.0000025158,0.0000025163, +0.0000025144,0.0000025096,0.0000025027,0.0000024959,0.0000024909, +0.0000024868,0.0000024819,0.0000024756,0.0000024695,0.0000024660, +0.0000024657,0.0000024671,0.0000024685,0.0000024678,0.0000024645, +0.0000024579,0.0000024496,0.0000024420,0.0000024359,0.0000024305, +0.0000024242,0.0000024162,0.0000024066,0.0000023975,0.0000023900, +0.0000023834,0.0000023760,0.0000023687,0.0000023621,0.0000023543, +0.0000023431,0.0000023297,0.0000023201,0.0000023164,0.0000023170, +0.0000023228,0.0000023331,0.0000023439,0.0000023531,0.0000023609, +0.0000023677,0.0000023741,0.0000023776,0.0000023803,0.0000023787, +0.0000023745,0.0000023689,0.0000023632,0.0000023582,0.0000023559, +0.0000023546,0.0000023549,0.0000023553,0.0000023553,0.0000023542, +0.0000023522,0.0000023502,0.0000023481,0.0000023473,0.0000023489, +0.0000023540,0.0000023621,0.0000023723,0.0000023828,0.0000023929, +0.0000024021,0.0000024097,0.0000024152,0.0000024193,0.0000024214, +0.0000024218,0.0000024207,0.0000024183,0.0000024150,0.0000024109, +0.0000024078,0.0000024053,0.0000024040,0.0000024036,0.0000024052, +0.0000024078,0.0000024103,0.0000024128,0.0000024163,0.0000024218, +0.0000024285,0.0000024359,0.0000024429,0.0000024488,0.0000024534, +0.0000024565,0.0000024582,0.0000024594,0.0000024600,0.0000024598, +0.0000024588,0.0000024562,0.0000024522,0.0000024471,0.0000024420, +0.0000024382,0.0000024364,0.0000024366,0.0000024383,0.0000024418, +0.0000024465,0.0000024510,0.0000024543,0.0000024566,0.0000024579, +0.0000024575,0.0000024556,0.0000024526,0.0000024493,0.0000024473, +0.0000024483,0.0000024521,0.0000024576,0.0000024636,0.0000024689, +0.0000024727,0.0000024750,0.0000024753,0.0000024721,0.0000024668, +0.0000024596,0.0000024520,0.0000024436,0.0000024341,0.0000024254, +0.0000024189,0.0000024135,0.0000024081,0.0000024037,0.0000024034, +0.0000024055,0.0000024110,0.0000024168,0.0000024194,0.0000024179, +0.0000024127,0.0000024047,0.0000023938,0.0000023814,0.0000023701, +0.0000023615,0.0000023558,0.0000023533,0.0000023532,0.0000023549, +0.0000023578,0.0000023606,0.0000023634,0.0000023666,0.0000023705, +0.0000023774,0.0000023862,0.0000023944,0.0000023971,0.0000023949, +0.0000023904,0.0000023904,0.0000023956,0.0000024037,0.0000024173, +0.0000024294,0.0000024294,0.0000024211,0.0000024123,0.0000024043, +0.0000023919,0.0000023787,0.0000023721,0.0000023697,0.0000023678, +0.0000023666,0.0000023659,0.0000023657,0.0000023654,0.0000023648, +0.0000023632,0.0000023606,0.0000023579,0.0000023553,0.0000023519, +0.0000023481,0.0000023441,0.0000023402,0.0000023367,0.0000023322, +0.0000023257,0.0000023175,0.0000023125,0.0000023124,0.0000023177, +0.0000023246,0.0000023275,0.0000023269,0.0000023246,0.0000023212, +0.0000023183,0.0000023196,0.0000023211,0.0000023186,0.0000023124, +0.0000023033,0.0000022943,0.0000022886,0.0000022875,0.0000022918, +0.0000023023,0.0000023114,0.0000023147,0.0000023158,0.0000023178, +0.0000023198,0.0000023242,0.0000023251,0.0000023268,0.0000023333, +0.0000023365,0.0000023319,0.0000023289,0.0000023304,0.0000023244, +0.0000023185,0.0000023213,0.0000023273,0.0000023311,0.0000023313, +0.0000023289,0.0000023234,0.0000023175,0.0000023141,0.0000023125, +0.0000023153,0.0000023283,0.0000023460,0.0000023613,0.0000023673, +0.0000023671,0.0000023672,0.0000023702,0.0000023742,0.0000023746, +0.0000023709,0.0000023647,0.0000023570,0.0000023507,0.0000023445, +0.0000023405,0.0000023389,0.0000023363,0.0000023327,0.0000023313, +0.0000023315,0.0000023313,0.0000023267,0.0000023162,0.0000023026, +0.0000022959,0.0000022958,0.0000022958,0.0000022942,0.0000022906, +0.0000022877,0.0000022865,0.0000022806,0.0000022695,0.0000022587, +0.0000022543,0.0000022550,0.0000022604,0.0000022675,0.0000022724, +0.0000022748,0.0000022762,0.0000022766,0.0000022775,0.0000022782, +0.0000022783,0.0000022778,0.0000022753,0.0000022708,0.0000022660, +0.0000022611,0.0000022549,0.0000022468,0.0000022416,0.0000022424, +0.0000022481,0.0000022527,0.0000022534,0.0000022527,0.0000022523, +0.0000022511,0.0000022452,0.0000022353,0.0000022263,0.0000022220, +0.0000022210,0.0000022233,0.0000022363,0.0000022530,0.0000022613, +0.0000022619,0.0000022636,0.0000022657,0.0000022631,0.0000022563, +0.0000022509,0.0000022531,0.0000022608,0.0000022675,0.0000022688, +0.0000022698,0.0000022787,0.0000022956,0.0000023107,0.0000023139, +0.0000023113,0.0000023034,0.0000022924,0.0000022798,0.0000022657, +0.0000022497,0.0000022354,0.0000022281,0.0000022273,0.0000022284, +0.0000022299,0.0000022323,0.0000022355,0.0000022388,0.0000022409, +0.0000022392,0.0000022332,0.0000022266,0.0000022236,0.0000022254, +0.0000022325,0.0000022401,0.0000022448,0.0000022492,0.0000022545, +0.0000022588,0.0000022603,0.0000022605,0.0000022622,0.0000022677, +0.0000022775,0.0000022885,0.0000022979,0.0000023050,0.0000023091, +0.0000023122,0.0000023157,0.0000023171,0.0000023172,0.0000023174, +0.0000023178,0.0000023177,0.0000023150,0.0000023099,0.0000023041, +0.0000022981,0.0000022906,0.0000022818,0.0000022735,0.0000022675, +0.0000022659,0.0000022664,0.0000022673,0.0000022696,0.0000022763, +0.0000022865,0.0000023012,0.0000023188,0.0000023237,0.0000023169, +0.0000023166,0.0000023303,0.0000023484,0.0000023621,0.0000023688, +0.0000023745,0.0000023812,0.0000023893,0.0000023983,0.0000024069, +0.0000024132,0.0000024152,0.0000024123,0.0000023999,0.0000023893, +0.0000023872,0.0000023896,0.0000023942,0.0000023987,0.0000024053, +0.0000024148,0.0000024258,0.0000024360,0.0000024445,0.0000024495, +0.0000024495,0.0000024485,0.0000024484,0.0000024451,0.0000024383, +0.0000024335,0.0000024299,0.0000024251,0.0000024171,0.0000024042, +0.0000023924,0.0000023839,0.0000023757,0.0000023688,0.0000023638, +0.0000023590,0.0000023576,0.0000023608,0.0000023649,0.0000023699, +0.0000023780,0.0000023870,0.0000023975,0.0000024007,0.0000024080, +0.0000024236,0.0000024297,0.0000024245,0.0000024189,0.0000024147, +0.0000024106,0.0000024282,0.0000024844,0.0000025384,0.0000025597, +0.0000025540,0.0000025294,0.0000024880,0.0000024511,0.0000024328, +0.0000024299,0.0000024341,0.0000024426,0.0000024497,0.0000024508, +0.0000024419,0.0000024225,0.0000024027,0.0000023890,0.0000023838, +0.0000023845,0.0000023886,0.0000023952,0.0000024035,0.0000024126, +0.0000024215,0.0000024299,0.0000024367,0.0000024411,0.0000024426, +0.0000024418,0.0000024397,0.0000024366,0.0000024333,0.0000024298, +0.0000024275,0.0000024267,0.0000024265,0.0000024261,0.0000024259, +0.0000024265,0.0000024285,0.0000024308,0.0000024328,0.0000024341, +0.0000024345,0.0000024360,0.0000024374,0.0000024384,0.0000024389, +0.0000024387,0.0000024381,0.0000024375,0.0000024363,0.0000024347, +0.0000024335,0.0000024315,0.0000024301,0.0000024285,0.0000024262, +0.0000024237,0.0000024209,0.0000024177,0.0000024138,0.0000024094, +0.0000024056,0.0000024029,0.0000024016,0.0000024011,0.0000024007, +0.0000024005,0.0000023996,0.0000023982,0.0000023959,0.0000023929, +0.0000023892,0.0000023854,0.0000023820,0.0000023789,0.0000023762, +0.0000023738,0.0000023717,0.0000023700,0.0000023687,0.0000023675, +0.0000023661,0.0000023645,0.0000023631,0.0000023623,0.0000023621, +0.0000023622,0.0000023625,0.0000023629,0.0000023637,0.0000023651, +0.0000023670,0.0000023693,0.0000023718,0.0000023743,0.0000023768, +0.0000023794,0.0000023814,0.0000023828,0.0000023838,0.0000023849, +0.0000023863,0.0000023881,0.0000023900,0.0000023922,0.0000023946, +0.0000023974,0.0000024003,0.0000024032,0.0000024061,0.0000024096, +0.0000024137,0.0000024177,0.0000024209,0.0000024230,0.0000024239, +0.0000024235,0.0000024208,0.0000024160,0.0000024102,0.0000024038, +0.0000023973,0.0000023906,0.0000023832,0.0000023742,0.0000023635, +0.0000023546,0.0000023495,0.0000023459,0.0000023426,0.0000023390, +0.0000023332,0.0000023242,0.0000023099,0.0000022906,0.0000022712, +0.0000022529,0.0000022344,0.0000022211,0.0000022193,0.0000022244, +0.0000022280,0.0000022294,0.0000022304,0.0000022305,0.0000022292, +0.0000022282,0.0000022290,0.0000022324,0.0000022353,0.0000022338, +0.0000022245,0.0000022123,0.0000022071,0.0000022082,0.0000022070, +0.0000022005,0.0000021974,0.0000022031,0.0000022123,0.0000022155, +0.0000022123,0.0000022083,0.0000022068,0.0000022027,0.0000021933, +0.0000021862,0.0000021848,0.0000021843,0.0000021889,0.0000022072, +0.0000022198,0.0000022155,0.0000022072,0.0000022104,0.0000022215, +0.0000022310,0.0000022399,0.0000022480,0.0000022524,0.0000022596, +0.0000022721,0.0000022796,0.0000022814,0.0000022928,0.0000023182, +0.0000023388,0.0000023431,0.0000023436,0.0000023507,0.0000023630, +0.0000023748,0.0000023865,0.0000023984,0.0000024087,0.0000024171, +0.0000024228,0.0000024250,0.0000024261,0.0000024267,0.0000024245, +0.0000024200,0.0000024177,0.0000024189,0.0000024236,0.0000024296, +0.0000024361,0.0000024402,0.0000024402,0.0000024368,0.0000024313, +0.0000024255,0.0000024182,0.0000024062,0.0000023876,0.0000023660, +0.0000023478,0.0000023359,0.0000023288,0.0000023246,0.0000023220, +0.0000023186,0.0000023126,0.0000023037,0.0000022935,0.0000022838, +0.0000022746,0.0000022648,0.0000022539,0.0000022421,0.0000022309, +0.0000022208,0.0000022111,0.0000022009,0.0000021912,0.0000021835, +0.0000021787,0.0000021762,0.0000021749,0.0000021755,0.0000021786, +0.0000021837,0.0000021891,0.0000021934,0.0000021966,0.0000021988, +0.0000022002,0.0000022013,0.0000022025,0.0000022038,0.0000022044, +0.0000022040,0.0000022035,0.0000022053,0.0000022118,0.0000022244, +0.0000022413,0.0000022593,0.0000022765,0.0000022925,0.0000023069, +0.0000023180,0.0000023245,0.0000023276,0.0000023301,0.0000023338, +0.0000023379,0.0000023409,0.0000023415,0.0000023399,0.0000023388, +0.0000023398,0.0000023434,0.0000023511,0.0000023631,0.0000023763, +0.0000023886,0.0000024012,0.0000024151,0.0000024312,0.0000024491, +0.0000024638,0.0000024705,0.0000024718,0.0000024731,0.0000024770, +0.0000024849,0.0000024936,0.0000024958,0.0000024925,0.0000024910, +0.0000024944,0.0000024980,0.0000024974,0.0000024959,0.0000024987, +0.0000025056,0.0000025107,0.0000025112,0.0000025103,0.0000025124, +0.0000025192,0.0000025275,0.0000025338,0.0000025382,0.0000025417, +0.0000025440,0.0000025439,0.0000025407,0.0000025351,0.0000025301, +0.0000025279,0.0000025282,0.0000025299,0.0000025317,0.0000025337, +0.0000025365,0.0000025403,0.0000025447,0.0000025481,0.0000025494, +0.0000025490,0.0000025471,0.0000025428,0.0000025350,0.0000025251, +0.0000025144,0.0000025012,0.0000024829,0.0000024633,0.0000024483, +0.0000024343,0.0000024147,0.0000023931,0.0000023776,0.0000023755, +0.0000023874,0.0000024035,0.0000024084,0.0000024046,0.0000024029, +0.0000024102,0.0000024292,0.0000024537,0.0000024708,0.0000024770, +0.0000024843,0.0000025007,0.0000025209,0.0000025365,0.0000025456, +0.0000025501,0.0000025518,0.0000025521,0.0000025516,0.0000025508, +0.0000025498,0.0000025490,0.0000025483,0.0000025482,0.0000025489, +0.0000025517,0.0000025562,0.0000025607,0.0000025642,0.0000025668, +0.0000025695,0.0000025719,0.0000025738,0.0000025742,0.0000025733, +0.0000025714,0.0000025705,0.0000025719,0.0000025747,0.0000025769, +0.0000025776,0.0000025778,0.0000025788,0.0000025806,0.0000025824, +0.0000025835,0.0000025847,0.0000025874,0.0000025913,0.0000025939, +0.0000025942,0.0000025915,0.0000025853,0.0000025785,0.0000025744, +0.0000025676,0.0000025544,0.0000025432,0.0000025329,0.0000025086, +0.0000024776,0.0000024594,0.0000024519,0.0000024471,0.0000024350, +0.0000024048,0.0000023773,0.0000023701,0.0000023622,0.0000023268, +0.0000022825,0.0000022590,0.0000022533,0.0000022500,0.0000022412, +0.0000022282,0.0000022166,0.0000022070,0.0000021967,0.0000021882, +0.0000021847,0.0000021863,0.0000021883,0.0000021882,0.0000021835, +0.0000021752,0.0000021671,0.0000021594,0.0000021522,0.0000021459, +0.0000021430,0.0000021406,0.0000021366,0.0000021319,0.0000021286, +0.0000021281,0.0000021283,0.0000021268,0.0000021233,0.0000021188, +0.0000021149,0.0000021125,0.0000021111,0.0000021104,0.0000021102, +0.0000021125,0.0000021172,0.0000021233,0.0000021305,0.0000021384, +0.0000021455,0.0000021521,0.0000021585,0.0000021635,0.0000021664, +0.0000021677,0.0000021679,0.0000021691,0.0000021722,0.0000021780, +0.0000021869,0.0000021972,0.0000022067,0.0000022142,0.0000022189, +0.0000022213,0.0000022216,0.0000022203,0.0000022179,0.0000022146, +0.0000022110,0.0000022078,0.0000022051,0.0000022035,0.0000022028, +0.0000022035,0.0000022061,0.0000022105,0.0000022149,0.0000022187, +0.0000022225,0.0000022265,0.0000022301,0.0000022326,0.0000022338, +0.0000022346,0.0000022354,0.0000022352,0.0000022343,0.0000022331, +0.0000022315,0.0000022299,0.0000022291,0.0000022276,0.0000022226, +0.0000022143,0.0000022058,0.0000022000,0.0000021966,0.0000021942, +0.0000021918,0.0000021895,0.0000021874,0.0000021849,0.0000021810, +0.0000021761,0.0000021713,0.0000021671,0.0000021638,0.0000021616, +0.0000021609,0.0000021621,0.0000021650,0.0000021700,0.0000021762, +0.0000021826,0.0000021886,0.0000021945,0.0000022014,0.0000022080, +0.0000022138,0.0000022209,0.0000022287,0.0000022361,0.0000022430, +0.0000022487,0.0000022533,0.0000022565,0.0000022577,0.0000022569, +0.0000022552,0.0000022536,0.0000022516,0.0000022469,0.0000022398, +0.0000022352,0.0000022359,0.0000022419,0.0000022487,0.0000022525, +0.0000022540,0.0000022548,0.0000022555,0.0000022564,0.0000022580, +0.0000022594,0.0000022596,0.0000022578,0.0000022551,0.0000022530, +0.0000022521,0.0000022510,0.0000022483,0.0000022443,0.0000022399, +0.0000022357,0.0000022328,0.0000022312,0.0000022301,0.0000022290, +0.0000022282,0.0000022278,0.0000022293,0.0000022337,0.0000022391, +0.0000022434,0.0000022464,0.0000022477,0.0000022482,0.0000022478, +0.0000022457,0.0000022407,0.0000022345,0.0000022298,0.0000022234, +0.0000022120,0.0000022000,0.0000021906,0.0000021840,0.0000021824, +0.0000021868,0.0000021978,0.0000022070,0.0000022095,0.0000022098, +0.0000022104,0.0000022094,0.0000022053,0.0000022010,0.0000021989, +0.0000021988,0.0000021987,0.0000021975,0.0000021950,0.0000021912, +0.0000021877,0.0000021864,0.0000021872,0.0000021902,0.0000021949, +0.0000022005,0.0000022061,0.0000022114,0.0000022163,0.0000022200, +0.0000022211,0.0000022198,0.0000022164,0.0000022117,0.0000022068, +0.0000022023,0.0000021979,0.0000021952,0.0000021957,0.0000021989, +0.0000022027,0.0000022043,0.0000022038,0.0000022018,0.0000021996, +0.0000021964,0.0000021881,0.0000021713,0.0000021518,0.0000021396, +0.0000021354,0.0000021334,0.0000021324,0.0000021307,0.0000021267, +0.0000021220,0.0000021175,0.0000021129,0.0000021107,0.0000021120, +0.0000021146,0.0000021137,0.0000021121,0.0000021245,0.0000021610, +0.0000021902,0.0000022032,0.0000022145,0.0000022237,0.0000022270, +0.0000022294,0.0000022337,0.0000022377,0.0000022406,0.0000022431, +0.0000022454,0.0000022475,0.0000022496,0.0000022521,0.0000022546, +0.0000022564,0.0000022581,0.0000022618,0.0000022687,0.0000022777, +0.0000022847,0.0000022878,0.0000022890,0.0000022927,0.0000023009, +0.0000023118,0.0000023199,0.0000023216,0.0000023187,0.0000023161, +0.0000023180,0.0000023243,0.0000023308,0.0000023345,0.0000023356, +0.0000023343,0.0000023311,0.0000023273,0.0000023230,0.0000023191, +0.0000023161,0.0000023136,0.0000023116,0.0000023101,0.0000023084, +0.0000023062,0.0000023038,0.0000023012,0.0000022972,0.0000022910, +0.0000022827,0.0000022743,0.0000022682,0.0000022615,0.0000022460, +0.0000022188,0.0000021903,0.0000021762,0.0000021619,0.0000021600, +0.0000021678,0.0000021795,0.0000021860,0.0000021906,0.0000021996, +0.0000022048,0.0000021966,0.0000021804,0.0000021754,0.0000021870, +0.0000022039,0.0000022141,0.0000022223,0.0000022381,0.0000022619, +0.0000022811,0.0000022877,0.0000022881,0.0000022912,0.0000022975, +0.0000023024,0.0000023039,0.0000023057,0.0000023107,0.0000023163, +0.0000023204,0.0000023245,0.0000023307,0.0000023426,0.0000023540, +0.0000023516,0.0000023313,0.0000023127,0.0000023089,0.0000023098, +0.0000023092,0.0000023062,0.0000023025,0.0000023013,0.0000023021, +0.0000023043,0.0000023062,0.0000023082,0.0000023104,0.0000023120, +0.0000023117,0.0000023088,0.0000023044,0.0000023005,0.0000022980, +0.0000022974,0.0000022981,0.0000022998,0.0000023006,0.0000023001, +0.0000022999,0.0000023000,0.0000022996,0.0000022980,0.0000022933, +0.0000022865,0.0000022820,0.0000022795,0.0000022757,0.0000022719, +0.0000022695,0.0000022690,0.0000022698,0.0000022714,0.0000022721, +0.0000022727,0.0000022727,0.0000022721,0.0000022726,0.0000022743, +0.0000022768,0.0000022794,0.0000022792,0.0000022755,0.0000022707, +0.0000022643,0.0000022581,0.0000022546,0.0000022538,0.0000022542, +0.0000022562,0.0000022591,0.0000022652,0.0000022728,0.0000022807, +0.0000022901,0.0000023022,0.0000023133,0.0000023191,0.0000023228, +0.0000023297,0.0000023406,0.0000023521,0.0000023612,0.0000023665, +0.0000023681,0.0000023681,0.0000023666,0.0000023644,0.0000023621, +0.0000023610,0.0000023615,0.0000023634,0.0000023647,0.0000023632, +0.0000023574,0.0000023527,0.0000023519,0.0000023512,0.0000023482, +0.0000023452,0.0000023435,0.0000023433,0.0000023438,0.0000023463, +0.0000023512,0.0000023563,0.0000023601,0.0000023630,0.0000023657, +0.0000023679,0.0000023695,0.0000023711,0.0000023731,0.0000023760, +0.0000023790,0.0000023814,0.0000023839,0.0000023868,0.0000023903, +0.0000023926,0.0000023936,0.0000023943,0.0000023941,0.0000023929, +0.0000023918,0.0000023898,0.0000023855,0.0000023794,0.0000023741, +0.0000023714,0.0000023708,0.0000023702,0.0000023679,0.0000023633, +0.0000023563,0.0000023471,0.0000023365,0.0000023269,0.0000023228, +0.0000023263,0.0000023383,0.0000023549,0.0000023701,0.0000023815, +0.0000023911,0.0000024025,0.0000024173,0.0000024354,0.0000024539, +0.0000024688,0.0000024792,0.0000024864,0.0000024915,0.0000024962, +0.0000025016,0.0000025083,0.0000025138,0.0000025158,0.0000025143, +0.0000025110,0.0000025059,0.0000025004,0.0000024956,0.0000024907, +0.0000024855,0.0000024800,0.0000024748,0.0000024713,0.0000024712, +0.0000024740,0.0000024787,0.0000024818,0.0000024814,0.0000024767, +0.0000024681,0.0000024577,0.0000024478,0.0000024395,0.0000024326, +0.0000024253,0.0000024168,0.0000024085,0.0000024015,0.0000023953, +0.0000023879,0.0000023790,0.0000023711,0.0000023653,0.0000023590, +0.0000023493,0.0000023370,0.0000023258,0.0000023188,0.0000023199, +0.0000023261,0.0000023348,0.0000023445,0.0000023539,0.0000023620, +0.0000023687,0.0000023744,0.0000023788,0.0000023801,0.0000023805, +0.0000023778,0.0000023735,0.0000023680,0.0000023629,0.0000023590, +0.0000023564,0.0000023551,0.0000023550,0.0000023548,0.0000023550, +0.0000023556,0.0000023553,0.0000023538,0.0000023528,0.0000023536, +0.0000023562,0.0000023621,0.0000023697,0.0000023783,0.0000023872, +0.0000023954,0.0000024021,0.0000024072,0.0000024111,0.0000024129, +0.0000024129,0.0000024114,0.0000024092,0.0000024070,0.0000024056, +0.0000024049,0.0000024039,0.0000024035,0.0000024043,0.0000024060, +0.0000024073,0.0000024076,0.0000024076,0.0000024084,0.0000024111, +0.0000024158,0.0000024218,0.0000024276,0.0000024325,0.0000024365, +0.0000024395,0.0000024415,0.0000024425,0.0000024427,0.0000024419, +0.0000024397,0.0000024360,0.0000024305,0.0000024243,0.0000024187, +0.0000024150,0.0000024137,0.0000024144,0.0000024174,0.0000024216, +0.0000024261,0.0000024307,0.0000024358,0.0000024407,0.0000024439, +0.0000024446,0.0000024434,0.0000024411,0.0000024397,0.0000024403, +0.0000024430,0.0000024473,0.0000024529,0.0000024585,0.0000024631, +0.0000024667,0.0000024686,0.0000024679,0.0000024648,0.0000024607, +0.0000024561,0.0000024519,0.0000024462,0.0000024405,0.0000024347, +0.0000024285,0.0000024230,0.0000024180,0.0000024130,0.0000024086, +0.0000024082,0.0000024091,0.0000024124,0.0000024147,0.0000024147, +0.0000024126,0.0000024104,0.0000024044,0.0000023964,0.0000023879, +0.0000023794,0.0000023723,0.0000023678,0.0000023661,0.0000023664, +0.0000023681,0.0000023719,0.0000023773,0.0000023833,0.0000023891, +0.0000023925,0.0000023929,0.0000023883,0.0000023847,0.0000023854, +0.0000023909,0.0000023976,0.0000024081,0.0000024241,0.0000024330, +0.0000024308,0.0000024228,0.0000024150,0.0000024086,0.0000023973, +0.0000023819,0.0000023728,0.0000023704,0.0000023690,0.0000023677, +0.0000023666,0.0000023654,0.0000023640,0.0000023635,0.0000023620, +0.0000023583,0.0000023530,0.0000023481,0.0000023445,0.0000023413, +0.0000023380,0.0000023337,0.0000023280,0.0000023213,0.0000023152, +0.0000023116,0.0000023133,0.0000023192,0.0000023252,0.0000023285, +0.0000023289,0.0000023281,0.0000023266,0.0000023246,0.0000023236, +0.0000023242,0.0000023226,0.0000023155,0.0000023043,0.0000022932, +0.0000022839,0.0000022764,0.0000022712,0.0000022705,0.0000022778, +0.0000022949,0.0000023127,0.0000023204,0.0000023200,0.0000023200, +0.0000023211,0.0000023253,0.0000023269,0.0000023279,0.0000023337, +0.0000023360,0.0000023290,0.0000023236,0.0000023299,0.0000023346, +0.0000023320,0.0000023317,0.0000023347,0.0000023368,0.0000023358, +0.0000023312,0.0000023251,0.0000023200,0.0000023153,0.0000023098, +0.0000023078,0.0000023147,0.0000023318,0.0000023496,0.0000023608, +0.0000023650,0.0000023645,0.0000023645,0.0000023675,0.0000023704, +0.0000023689,0.0000023640,0.0000023582,0.0000023505,0.0000023425, +0.0000023364,0.0000023324,0.0000023310,0.0000023320,0.0000023325, +0.0000023299,0.0000023197,0.0000023061,0.0000022973,0.0000022956, +0.0000022970,0.0000022970,0.0000022945,0.0000022911,0.0000022869, +0.0000022812,0.0000022714,0.0000022637,0.0000022624,0.0000022667, +0.0000022729,0.0000022771,0.0000022808,0.0000022831,0.0000022838, +0.0000022840,0.0000022829,0.0000022811,0.0000022793,0.0000022777, +0.0000022764,0.0000022739,0.0000022695,0.0000022645,0.0000022594, +0.0000022515,0.0000022427,0.0000022384,0.0000022416,0.0000022476, +0.0000022512,0.0000022526,0.0000022542,0.0000022552,0.0000022533, +0.0000022473,0.0000022391,0.0000022301,0.0000022235,0.0000022215, +0.0000022268,0.0000022415,0.0000022551,0.0000022599,0.0000022606, +0.0000022619,0.0000022620,0.0000022578,0.0000022531,0.0000022521, +0.0000022571,0.0000022650,0.0000022684,0.0000022691,0.0000022736, +0.0000022866,0.0000023019,0.0000023109,0.0000023127,0.0000023071, +0.0000022978,0.0000022854,0.0000022711,0.0000022564,0.0000022424, +0.0000022318,0.0000022269,0.0000022262,0.0000022265,0.0000022272, +0.0000022287,0.0000022314,0.0000022344,0.0000022354,0.0000022331, +0.0000022289,0.0000022266,0.0000022262,0.0000022301,0.0000022366, +0.0000022425,0.0000022466,0.0000022513,0.0000022577,0.0000022632, +0.0000022663,0.0000022685,0.0000022716,0.0000022772,0.0000022861, +0.0000022961,0.0000023041,0.0000023085,0.0000023097,0.0000023101, +0.0000023121,0.0000023137,0.0000023145,0.0000023157,0.0000023178, +0.0000023195,0.0000023192,0.0000023157,0.0000023101,0.0000023045, +0.0000022977,0.0000022890,0.0000022792,0.0000022714,0.0000022665, +0.0000022650,0.0000022649,0.0000022652,0.0000022701,0.0000022793, +0.0000022926,0.0000023115,0.0000023238,0.0000023218,0.0000023143, +0.0000023195,0.0000023335,0.0000023500,0.0000023629,0.0000023683, +0.0000023726,0.0000023792,0.0000023880,0.0000023969,0.0000024048, +0.0000024104,0.0000024130,0.0000024114,0.0000024019,0.0000023931, +0.0000023914,0.0000023949,0.0000023998,0.0000024053,0.0000024120, +0.0000024197,0.0000024281,0.0000024357,0.0000024411,0.0000024430, +0.0000024428,0.0000024431,0.0000024423,0.0000024373,0.0000024318, +0.0000024296,0.0000024269,0.0000024219,0.0000024131,0.0000024005, +0.0000023896,0.0000023809,0.0000023728,0.0000023669,0.0000023624, +0.0000023582,0.0000023575,0.0000023619,0.0000023666,0.0000023712, +0.0000023795,0.0000023868,0.0000023963,0.0000024005,0.0000024027, +0.0000024150,0.0000024246,0.0000024215,0.0000024147,0.0000024123, +0.0000024099,0.0000024074,0.0000024265,0.0000024780,0.0000025264, +0.0000025466,0.0000025429,0.0000025229,0.0000024863,0.0000024503, +0.0000024329,0.0000024323,0.0000024374,0.0000024440,0.0000024499, +0.0000024517,0.0000024489,0.0000024352,0.0000024158,0.0000023983, +0.0000023874,0.0000023830,0.0000023836,0.0000023867,0.0000023938, +0.0000024020,0.0000024108,0.0000024191,0.0000024264,0.0000024327, +0.0000024378,0.0000024409,0.0000024416,0.0000024416,0.0000024390, +0.0000024361,0.0000024335,0.0000024318,0.0000024307,0.0000024299, +0.0000024296,0.0000024302,0.0000024316,0.0000024331,0.0000024343, +0.0000024344,0.0000024337,0.0000024324,0.0000024304,0.0000024286, +0.0000024272,0.0000024257,0.0000024248,0.0000024247,0.0000024249, +0.0000024255,0.0000024263,0.0000024269,0.0000024275,0.0000024273, +0.0000024266,0.0000024247,0.0000024236,0.0000024206,0.0000024170, +0.0000024128,0.0000024085,0.0000024052,0.0000024030,0.0000024018, +0.0000024012,0.0000024012,0.0000024010,0.0000024005,0.0000023992, +0.0000023967,0.0000023934,0.0000023899,0.0000023864,0.0000023835, +0.0000023812,0.0000023791,0.0000023776,0.0000023765,0.0000023756, +0.0000023745,0.0000023731,0.0000023716,0.0000023707,0.0000023705, +0.0000023710,0.0000023720,0.0000023733,0.0000023752,0.0000023775, +0.0000023804,0.0000023835,0.0000023863,0.0000023886,0.0000023905, +0.0000023920,0.0000023931,0.0000023937,0.0000023942,0.0000023951, +0.0000023966,0.0000023987,0.0000024011,0.0000024033,0.0000024054, +0.0000024075,0.0000024097,0.0000024117,0.0000024136,0.0000024157, +0.0000024184,0.0000024214,0.0000024241,0.0000024264,0.0000024279, +0.0000024283,0.0000024274,0.0000024250,0.0000024212,0.0000024162, +0.0000024101,0.0000024029,0.0000023950,0.0000023865,0.0000023758, +0.0000023629,0.0000023520,0.0000023458,0.0000023416,0.0000023376, +0.0000023323,0.0000023242,0.0000023126,0.0000022960,0.0000022772, +0.0000022596,0.0000022409,0.0000022241,0.0000022186,0.0000022229, +0.0000022281,0.0000022296,0.0000022303,0.0000022307,0.0000022297, +0.0000022290,0.0000022305,0.0000022348,0.0000022379,0.0000022363, +0.0000022273,0.0000022154,0.0000022092,0.0000022088,0.0000022054, +0.0000021972,0.0000021936,0.0000022019,0.0000022159,0.0000022244, +0.0000022231,0.0000022155,0.0000022087,0.0000022066,0.0000022033, +0.0000021942,0.0000021861,0.0000021834,0.0000021816,0.0000021853, +0.0000022033,0.0000022166,0.0000022127,0.0000022032,0.0000022056, +0.0000022170,0.0000022285,0.0000022388,0.0000022468,0.0000022512, +0.0000022577,0.0000022694,0.0000022775,0.0000022793,0.0000022887, +0.0000023138,0.0000023387,0.0000023478,0.0000023495,0.0000023567, +0.0000023683,0.0000023793,0.0000023901,0.0000024011,0.0000024110, +0.0000024180,0.0000024210,0.0000024214,0.0000024215,0.0000024210, +0.0000024181,0.0000024143,0.0000024137,0.0000024173,0.0000024223, +0.0000024275,0.0000024334,0.0000024374,0.0000024368,0.0000024315, +0.0000024241,0.0000024160,0.0000024055,0.0000023891,0.0000023668, +0.0000023437,0.0000023257,0.0000023141,0.0000023076,0.0000023046, +0.0000023029,0.0000023008,0.0000022967,0.0000022904,0.0000022828, +0.0000022737,0.0000022630,0.0000022516,0.0000022408,0.0000022311, +0.0000022218,0.0000022123,0.0000022019,0.0000021898,0.0000021770, +0.0000021663,0.0000021590,0.0000021537,0.0000021497,0.0000021491, +0.0000021522,0.0000021577,0.0000021634,0.0000021682,0.0000021721, +0.0000021746,0.0000021761,0.0000021775,0.0000021795,0.0000021822, +0.0000021852,0.0000021883,0.0000021916,0.0000021945,0.0000021981, +0.0000022048,0.0000022174,0.0000022357,0.0000022560,0.0000022741, +0.0000022885,0.0000023006,0.0000023108,0.0000023179,0.0000023217, +0.0000023238,0.0000023267,0.0000023305,0.0000023328,0.0000023318, +0.0000023297,0.0000023294,0.0000023309,0.0000023354,0.0000023452, +0.0000023597,0.0000023747,0.0000023882,0.0000024015,0.0000024159, +0.0000024323,0.0000024495,0.0000024620,0.0000024667,0.0000024678, +0.0000024705,0.0000024777,0.0000024879,0.0000024934,0.0000024913, +0.0000024881,0.0000024898,0.0000024946,0.0000024960,0.0000024950, +0.0000024956,0.0000025001,0.0000025047,0.0000025058,0.0000025050, +0.0000025061,0.0000025115,0.0000025194,0.0000025257,0.0000025292, +0.0000025309,0.0000025317,0.0000025310,0.0000025285,0.0000025253, +0.0000025235,0.0000025236,0.0000025251,0.0000025268,0.0000025278, +0.0000025295,0.0000025326,0.0000025364,0.0000025398,0.0000025415, +0.0000025416,0.0000025391,0.0000025333,0.0000025242,0.0000025134, +0.0000025019,0.0000024884,0.0000024719,0.0000024554,0.0000024429, +0.0000024316,0.0000024154,0.0000023953,0.0000023782,0.0000023705, +0.0000023746,0.0000023896,0.0000024040,0.0000024062,0.0000024023, +0.0000024021,0.0000024105,0.0000024280,0.0000024500,0.0000024668, +0.0000024736,0.0000024773,0.0000024856,0.0000024985,0.0000025106, +0.0000025186,0.0000025229,0.0000025250,0.0000025259,0.0000025261, +0.0000025265,0.0000025279,0.0000025308,0.0000025350,0.0000025398, +0.0000025445,0.0000025488,0.0000025530,0.0000025574,0.0000025616, +0.0000025654,0.0000025685,0.0000025705,0.0000025717,0.0000025722, +0.0000025720,0.0000025703,0.0000025682,0.0000025679,0.0000025695, +0.0000025715,0.0000025731,0.0000025746,0.0000025766,0.0000025792, +0.0000025818,0.0000025838,0.0000025854,0.0000025876,0.0000025905, +0.0000025930,0.0000025936,0.0000025913,0.0000025853,0.0000025778, +0.0000025728,0.0000025668,0.0000025544,0.0000025428,0.0000025338, +0.0000025134,0.0000024833,0.0000024641,0.0000024563,0.0000024507, +0.0000024443,0.0000024217,0.0000023889,0.0000023722,0.0000023686, +0.0000023466,0.0000023024,0.0000022688,0.0000022578,0.0000022560, +0.0000022516,0.0000022409,0.0000022274,0.0000022163,0.0000022058, +0.0000021949,0.0000021863,0.0000021823,0.0000021816,0.0000021815, +0.0000021807,0.0000021776,0.0000021759,0.0000021722,0.0000021669, +0.0000021603,0.0000021557,0.0000021516,0.0000021466,0.0000021400, +0.0000021334,0.0000021293,0.0000021292,0.0000021291,0.0000021276, +0.0000021235,0.0000021177,0.0000021123,0.0000021085,0.0000021069, +0.0000021059,0.0000021052,0.0000021074,0.0000021117,0.0000021173, +0.0000021235,0.0000021299,0.0000021361,0.0000021422,0.0000021481, +0.0000021530,0.0000021560,0.0000021570,0.0000021568,0.0000021573, +0.0000021598,0.0000021655,0.0000021745,0.0000021847,0.0000021943, +0.0000022022,0.0000022081,0.0000022120,0.0000022129,0.0000022124, +0.0000022101,0.0000022071,0.0000022042,0.0000022023,0.0000022013, +0.0000022012,0.0000022026,0.0000022057,0.0000022105,0.0000022160, +0.0000022207,0.0000022244,0.0000022275,0.0000022299,0.0000022315, +0.0000022320,0.0000022325,0.0000022327,0.0000022321,0.0000022312, +0.0000022301,0.0000022282,0.0000022257,0.0000022243,0.0000022237, +0.0000022205,0.0000022139,0.0000022056,0.0000021985,0.0000021938, +0.0000021910,0.0000021889,0.0000021868,0.0000021849,0.0000021829, +0.0000021797,0.0000021750,0.0000021699,0.0000021651,0.0000021615, +0.0000021589,0.0000021575,0.0000021573,0.0000021587,0.0000021615, +0.0000021650,0.0000021693,0.0000021739,0.0000021787,0.0000021855, +0.0000021938,0.0000022004,0.0000022064,0.0000022136,0.0000022215, +0.0000022301,0.0000022386,0.0000022457,0.0000022510,0.0000022548, +0.0000022567,0.0000022567,0.0000022555,0.0000022534,0.0000022510, +0.0000022459,0.0000022384,0.0000022335,0.0000022335,0.0000022392, +0.0000022463,0.0000022509,0.0000022532,0.0000022542,0.0000022546, +0.0000022550,0.0000022558,0.0000022568,0.0000022571,0.0000022562, +0.0000022543,0.0000022526,0.0000022517,0.0000022507,0.0000022485, +0.0000022443,0.0000022387,0.0000022334,0.0000022299,0.0000022284, +0.0000022275,0.0000022271,0.0000022275,0.0000022287,0.0000022319, +0.0000022365,0.0000022405,0.0000022432,0.0000022452,0.0000022469, +0.0000022477,0.0000022469,0.0000022437,0.0000022385,0.0000022335, +0.0000022284,0.0000022193,0.0000022066,0.0000021951,0.0000021860, +0.0000021799,0.0000021793,0.0000021870,0.0000021985,0.0000022047, +0.0000022058,0.0000022063,0.0000022053,0.0000022010,0.0000021973, +0.0000021966,0.0000021970,0.0000021976,0.0000021976,0.0000021967, +0.0000021947,0.0000021918,0.0000021890,0.0000021883,0.0000021899, +0.0000021936,0.0000021980,0.0000022032,0.0000022090,0.0000022140, +0.0000022181,0.0000022215,0.0000022227,0.0000022211,0.0000022176, +0.0000022131,0.0000022075,0.0000022010,0.0000021953,0.0000021919, +0.0000021920,0.0000021952,0.0000021998,0.0000022036,0.0000022052, +0.0000022058,0.0000022060,0.0000022046,0.0000021989,0.0000021854, +0.0000021638,0.0000021443,0.0000021342,0.0000021308,0.0000021308, +0.0000021314,0.0000021299,0.0000021258,0.0000021208,0.0000021157, +0.0000021126,0.0000021133,0.0000021159,0.0000021161,0.0000021119, +0.0000021167,0.0000021471,0.0000021812,0.0000021987,0.0000022103, +0.0000022210,0.0000022263,0.0000022297,0.0000022348,0.0000022396, +0.0000022428,0.0000022454,0.0000022477,0.0000022492,0.0000022504, +0.0000022520,0.0000022547,0.0000022583,0.0000022624,0.0000022672, +0.0000022723,0.0000022775,0.0000022812,0.0000022830,0.0000022837, +0.0000022853,0.0000022899,0.0000022983,0.0000023083,0.0000023154, +0.0000023173,0.0000023145,0.0000023118,0.0000023133,0.0000023189, +0.0000023249,0.0000023290,0.0000023310,0.0000023310,0.0000023291, +0.0000023263,0.0000023236,0.0000023207,0.0000023176,0.0000023149, +0.0000023129,0.0000023112,0.0000023091,0.0000023070,0.0000023051, +0.0000023022,0.0000022970,0.0000022887,0.0000022786,0.0000022697, +0.0000022637,0.0000022553,0.0000022351,0.0000022042,0.0000021873, +0.0000021629,0.0000021553,0.0000021590,0.0000021724,0.0000021828, +0.0000021870,0.0000021936,0.0000022026,0.0000022016,0.0000021858, +0.0000021732,0.0000021779,0.0000021954,0.0000022086,0.0000022177, +0.0000022355,0.0000022618,0.0000022811,0.0000022865,0.0000022873, +0.0000022918,0.0000022983,0.0000023019,0.0000023032,0.0000023066, +0.0000023125,0.0000023172,0.0000023205,0.0000023246,0.0000023326, +0.0000023464,0.0000023564,0.0000023510,0.0000023303,0.0000023138, +0.0000023114,0.0000023120,0.0000023102,0.0000023060,0.0000023020, +0.0000023008,0.0000023022,0.0000023052,0.0000023080,0.0000023097, +0.0000023109,0.0000023110,0.0000023097,0.0000023075,0.0000023052, +0.0000023041,0.0000023031,0.0000023023,0.0000023019,0.0000023017, +0.0000023015,0.0000023001,0.0000022996,0.0000022996,0.0000022993, +0.0000022978,0.0000022933,0.0000022872,0.0000022835,0.0000022822, +0.0000022799,0.0000022767,0.0000022745,0.0000022734,0.0000022734, +0.0000022749,0.0000022759,0.0000022760,0.0000022763,0.0000022764, +0.0000022767,0.0000022780,0.0000022811,0.0000022843,0.0000022846, +0.0000022817,0.0000022778,0.0000022724,0.0000022648,0.0000022579, +0.0000022546,0.0000022534,0.0000022530,0.0000022542,0.0000022585, +0.0000022639,0.0000022702,0.0000022785,0.0000022897,0.0000023026, +0.0000023128,0.0000023186,0.0000023214,0.0000023261,0.0000023357, +0.0000023477,0.0000023578,0.0000023635,0.0000023661,0.0000023665, +0.0000023652,0.0000023628,0.0000023609,0.0000023607,0.0000023619, +0.0000023638,0.0000023655,0.0000023642,0.0000023589,0.0000023546, +0.0000023530,0.0000023512,0.0000023484,0.0000023455,0.0000023437, +0.0000023434,0.0000023447,0.0000023486,0.0000023537,0.0000023581, +0.0000023618,0.0000023654,0.0000023686,0.0000023708,0.0000023724, +0.0000023738,0.0000023755,0.0000023784,0.0000023812,0.0000023833, +0.0000023850,0.0000023872,0.0000023900,0.0000023916,0.0000023919, +0.0000023920,0.0000023914,0.0000023906,0.0000023905,0.0000023897, +0.0000023856,0.0000023787,0.0000023719,0.0000023681,0.0000023673, +0.0000023670,0.0000023647,0.0000023597,0.0000023519,0.0000023421, +0.0000023312,0.0000023222,0.0000023170,0.0000023178,0.0000023276, +0.0000023448,0.0000023630,0.0000023769,0.0000023865,0.0000023944, +0.0000024029,0.0000024148,0.0000024310,0.0000024485,0.0000024640, +0.0000024759,0.0000024856,0.0000024942,0.0000025012,0.0000025069, +0.0000025115,0.0000025136,0.0000025127,0.0000025096,0.0000025060, +0.0000025024,0.0000024987,0.0000024944,0.0000024896,0.0000024849, +0.0000024800,0.0000024758,0.0000024749,0.0000024777,0.0000024830, +0.0000024878,0.0000024902,0.0000024892,0.0000024836,0.0000024737, +0.0000024618,0.0000024508,0.0000024417,0.0000024337,0.0000024256, +0.0000024176,0.0000024102,0.0000024039,0.0000023973,0.0000023896, +0.0000023818,0.0000023755,0.0000023709,0.0000023661,0.0000023577, +0.0000023454,0.0000023333,0.0000023258,0.0000023270,0.0000023299, +0.0000023366,0.0000023455,0.0000023543,0.0000023616,0.0000023675, +0.0000023724,0.0000023762,0.0000023782,0.0000023785,0.0000023767, +0.0000023745,0.0000023717,0.0000023684,0.0000023650,0.0000023617, +0.0000023591,0.0000023572,0.0000023569,0.0000023584,0.0000023602, +0.0000023612,0.0000023611,0.0000023605,0.0000023601,0.0000023614, +0.0000023629,0.0000023671,0.0000023736,0.0000023806,0.0000023869, +0.0000023923,0.0000023966,0.0000023991,0.0000023998,0.0000023994, +0.0000023983,0.0000023976,0.0000023980,0.0000023996,0.0000024012, +0.0000024024,0.0000024040,0.0000024057,0.0000024066,0.0000024063, +0.0000024049,0.0000024030,0.0000024019,0.0000024024,0.0000024049, +0.0000024082,0.0000024114,0.0000024145,0.0000024170,0.0000024184, +0.0000024189,0.0000024186,0.0000024174,0.0000024150,0.0000024113, +0.0000024061,0.0000024000,0.0000023944,0.0000023902,0.0000023878, +0.0000023872,0.0000023888,0.0000023910,0.0000023933,0.0000023966, +0.0000024016,0.0000024078,0.0000024140,0.0000024194,0.0000024234, +0.0000024264,0.0000024286,0.0000024306,0.0000024331,0.0000024370, +0.0000024423,0.0000024475,0.0000024521,0.0000024565,0.0000024597, +0.0000024605,0.0000024589,0.0000024560,0.0000024530,0.0000024501, +0.0000024473,0.0000024464,0.0000024455,0.0000024431,0.0000024395, +0.0000024351,0.0000024316,0.0000024280,0.0000024226,0.0000024165, +0.0000024119,0.0000024099,0.0000024067,0.0000024047,0.0000024033, +0.0000024026,0.0000024004,0.0000023989,0.0000023973,0.0000023946, +0.0000023921,0.0000023904,0.0000023893,0.0000023888,0.0000023888, +0.0000023890,0.0000023885,0.0000023872,0.0000023840,0.0000023808, +0.0000023793,0.0000023829,0.0000023881,0.0000023940,0.0000024017, +0.0000024159,0.0000024308,0.0000024354,0.0000024327,0.0000024267, +0.0000024203,0.0000024142,0.0000024049,0.0000023888,0.0000023759, +0.0000023725,0.0000023714,0.0000023701,0.0000023694,0.0000023674, +0.0000023630,0.0000023600,0.0000023589,0.0000023567,0.0000023526, +0.0000023471,0.0000023420,0.0000023361,0.0000023314,0.0000023264, +0.0000023218,0.0000023180,0.0000023156,0.0000023161,0.0000023197, +0.0000023240,0.0000023270,0.0000023291,0.0000023301,0.0000023291, +0.0000023272,0.0000023261,0.0000023260,0.0000023243,0.0000023193, +0.0000023089,0.0000022963,0.0000022857,0.0000022782,0.0000022720, +0.0000022663,0.0000022623,0.0000022621,0.0000022709,0.0000022901, +0.0000023129,0.0000023237,0.0000023223,0.0000023208,0.0000023211, +0.0000023250,0.0000023269,0.0000023266,0.0000023315,0.0000023336, +0.0000023276,0.0000023205,0.0000023276,0.0000023411,0.0000023484, +0.0000023487,0.0000023466,0.0000023443,0.0000023396,0.0000023331, +0.0000023270,0.0000023223,0.0000023159,0.0000023084,0.0000023043, +0.0000023076,0.0000023195,0.0000023353,0.0000023500,0.0000023588, +0.0000023611,0.0000023613,0.0000023633,0.0000023659,0.0000023661, +0.0000023630,0.0000023576,0.0000023497,0.0000023417,0.0000023366, +0.0000023350,0.0000023341,0.0000023327,0.0000023258,0.0000023115, +0.0000022994,0.0000022953,0.0000022960,0.0000022972,0.0000022967, +0.0000022945,0.0000022902,0.0000022815,0.0000022723,0.0000022669, +0.0000022674,0.0000022734,0.0000022800,0.0000022831,0.0000022855, +0.0000022892,0.0000022909,0.0000022900,0.0000022877,0.0000022846, +0.0000022811,0.0000022785,0.0000022776,0.0000022771,0.0000022753, +0.0000022715,0.0000022660,0.0000022590,0.0000022494,0.0000022407, +0.0000022382,0.0000022412,0.0000022461,0.0000022491,0.0000022520, +0.0000022550,0.0000022563,0.0000022546,0.0000022494,0.0000022426, +0.0000022339,0.0000022255,0.0000022227,0.0000022306,0.0000022465, +0.0000022571,0.0000022592,0.0000022597,0.0000022604,0.0000022578, +0.0000022522,0.0000022498,0.0000022541,0.0000022623,0.0000022692, +0.0000022699,0.0000022701,0.0000022788,0.0000022941,0.0000023064, +0.0000023093,0.0000023081,0.0000023014,0.0000022906,0.0000022765, +0.0000022618,0.0000022488,0.0000022386,0.0000022313,0.0000022271, +0.0000022252,0.0000022244,0.0000022246,0.0000022251,0.0000022268, +0.0000022293,0.0000022299,0.0000022284,0.0000022273,0.0000022279, +0.0000022310,0.0000022354,0.0000022406,0.0000022451,0.0000022495, +0.0000022555,0.0000022628,0.0000022694,0.0000022741,0.0000022775, +0.0000022811,0.0000022860,0.0000022933,0.0000023017,0.0000023085, +0.0000023119,0.0000023109,0.0000023097,0.0000023104,0.0000023113, +0.0000023120,0.0000023138,0.0000023169,0.0000023201,0.0000023219, +0.0000023211,0.0000023169,0.0000023115,0.0000023055,0.0000022972, +0.0000022868,0.0000022771,0.0000022704,0.0000022656,0.0000022634, +0.0000022633,0.0000022658,0.0000022734,0.0000022849,0.0000023023, +0.0000023202,0.0000023242,0.0000023177,0.0000023133,0.0000023209, +0.0000023346,0.0000023515,0.0000023643,0.0000023682,0.0000023707, +0.0000023768,0.0000023859,0.0000023944,0.0000024014,0.0000024060, +0.0000024092,0.0000024099,0.0000024050,0.0000023989,0.0000023983, +0.0000024027,0.0000024073,0.0000024117,0.0000024164,0.0000024228, +0.0000024289,0.0000024328,0.0000024352,0.0000024372,0.0000024380, +0.0000024379,0.0000024348,0.0000024288,0.0000024260,0.0000024262, +0.0000024240,0.0000024189,0.0000024099,0.0000023978,0.0000023869, +0.0000023779,0.0000023704,0.0000023656,0.0000023620,0.0000023585, +0.0000023584,0.0000023635,0.0000023684,0.0000023725,0.0000023805, +0.0000023872,0.0000023952,0.0000023999,0.0000024002,0.0000024078, +0.0000024182,0.0000024186,0.0000024122,0.0000024089,0.0000024090, +0.0000024061,0.0000024031,0.0000024213,0.0000024663,0.0000025087, +0.0000025273,0.0000025273,0.0000025099,0.0000024790,0.0000024484, +0.0000024361,0.0000024373,0.0000024420,0.0000024453,0.0000024484, +0.0000024512,0.0000024502,0.0000024444,0.0000024313,0.0000024157, +0.0000024014,0.0000023906,0.0000023847,0.0000023843,0.0000023870, +0.0000023910,0.0000023981,0.0000024059,0.0000024140,0.0000024219, +0.0000024298,0.0000024369,0.0000024417,0.0000024437,0.0000024447, +0.0000024433,0.0000024409,0.0000024379,0.0000024352,0.0000024332, +0.0000024322,0.0000024320,0.0000024323,0.0000024327,0.0000024330, +0.0000024328,0.0000024320,0.0000024301,0.0000024275,0.0000024244, +0.0000024211,0.0000024179,0.0000024154,0.0000024136,0.0000024126, +0.0000024126,0.0000024136,0.0000024156,0.0000024179,0.0000024199, +0.0000024211,0.0000024221,0.0000024218,0.0000024211,0.0000024182, +0.0000024163,0.0000024127,0.0000024093,0.0000024072,0.0000024059, +0.0000024051,0.0000024051,0.0000024049,0.0000024044,0.0000024035, +0.0000024017,0.0000023989,0.0000023957,0.0000023925,0.0000023898, +0.0000023877,0.0000023862,0.0000023854,0.0000023847,0.0000023838, +0.0000023828,0.0000023820,0.0000023817,0.0000023823,0.0000023835, +0.0000023849,0.0000023865,0.0000023883,0.0000023902,0.0000023922, +0.0000023942,0.0000023960,0.0000023977,0.0000023991,0.0000024002, +0.0000024012,0.0000024021,0.0000024029,0.0000024039,0.0000024051, +0.0000024066,0.0000024082,0.0000024097,0.0000024109,0.0000024119, +0.0000024127,0.0000024132,0.0000024140,0.0000024151,0.0000024164, +0.0000024186,0.0000024212,0.0000024237,0.0000024257,0.0000024270, +0.0000024272,0.0000024262,0.0000024245,0.0000024221,0.0000024183, +0.0000024127,0.0000024053,0.0000023968,0.0000023872,0.0000023750, +0.0000023607,0.0000023488,0.0000023419,0.0000023370,0.0000023313, +0.0000023230,0.0000023121,0.0000022988,0.0000022828,0.0000022666, +0.0000022489,0.0000022298,0.0000022193,0.0000022211,0.0000022270, +0.0000022301,0.0000022313,0.0000022320,0.0000022315,0.0000022307, +0.0000022321,0.0000022365,0.0000022397,0.0000022381,0.0000022299, +0.0000022189,0.0000022122,0.0000022098,0.0000022039,0.0000021942, +0.0000021910,0.0000022017,0.0000022198,0.0000022325,0.0000022352, +0.0000022302,0.0000022189,0.0000022090,0.0000022061,0.0000022042, +0.0000021962,0.0000021865,0.0000021815,0.0000021783,0.0000021813, +0.0000021989,0.0000022143,0.0000022108,0.0000022007,0.0000022012, +0.0000022118,0.0000022247,0.0000022370,0.0000022459,0.0000022504, +0.0000022562,0.0000022670,0.0000022754,0.0000022780,0.0000022863, +0.0000023100,0.0000023372,0.0000023515,0.0000023558,0.0000023623, +0.0000023730,0.0000023837,0.0000023934,0.0000024032,0.0000024120, +0.0000024173,0.0000024184,0.0000024183,0.0000024181,0.0000024174, +0.0000024151,0.0000024130,0.0000024140,0.0000024180,0.0000024224, +0.0000024273,0.0000024328,0.0000024350,0.0000024319,0.0000024233, +0.0000024124,0.0000024005,0.0000023860,0.0000023675,0.0000023460, +0.0000023245,0.0000023068,0.0000022962,0.0000022922,0.0000022913, +0.0000022907,0.0000022893,0.0000022858,0.0000022794,0.0000022698, +0.0000022583,0.0000022476,0.0000022395,0.0000022327,0.0000022251, +0.0000022156,0.0000022039,0.0000021904,0.0000021751,0.0000021598, +0.0000021471,0.0000021379,0.0000021300,0.0000021239,0.0000021223, +0.0000021250,0.0000021305,0.0000021365,0.0000021425,0.0000021476, +0.0000021509,0.0000021528,0.0000021542,0.0000021558,0.0000021578, +0.0000021608,0.0000021656,0.0000021725,0.0000021804,0.0000021874, +0.0000021930,0.0000022003,0.0000022135,0.0000022331,0.0000022542, +0.0000022707,0.0000022825,0.0000022931,0.0000023037,0.0000023119, +0.0000023159,0.0000023176,0.0000023204,0.0000023234,0.0000023232, +0.0000023203,0.0000023190,0.0000023198,0.0000023222,0.0000023286, +0.0000023419,0.0000023592,0.0000023748,0.0000023881,0.0000024012, +0.0000024161,0.0000024335,0.0000024503,0.0000024598,0.0000024624, +0.0000024646,0.0000024707,0.0000024812,0.0000024904,0.0000024916, +0.0000024880,0.0000024873,0.0000024914,0.0000024943,0.0000024932, +0.0000024915,0.0000024930,0.0000024969,0.0000024994,0.0000024996, +0.0000025001,0.0000025042,0.0000025115,0.0000025177,0.0000025202, +0.0000025204,0.0000025194,0.0000025180,0.0000025169,0.0000025168, +0.0000025177,0.0000025191,0.0000025206,0.0000025217,0.0000025225, +0.0000025246,0.0000025274,0.0000025304,0.0000025329,0.0000025333, +0.0000025304,0.0000025231,0.0000025129,0.0000025018,0.0000024899, +0.0000024755,0.0000024593,0.0000024455,0.0000024363,0.0000024274, +0.0000024136,0.0000023958,0.0000023792,0.0000023698,0.0000023696, +0.0000023780,0.0000023939,0.0000024045,0.0000024039,0.0000024006, +0.0000024020,0.0000024111,0.0000024261,0.0000024440,0.0000024592, +0.0000024671,0.0000024704,0.0000024748,0.0000024817,0.0000024881, +0.0000024921,0.0000024941,0.0000024948,0.0000024946,0.0000024941, +0.0000024945,0.0000024966,0.0000025012,0.0000025084,0.0000025183, +0.0000025297,0.0000025401,0.0000025480,0.0000025535,0.0000025574, +0.0000025611,0.0000025647,0.0000025674,0.0000025686,0.0000025691, +0.0000025690,0.0000025679,0.0000025664,0.0000025658,0.0000025663, +0.0000025679,0.0000025699,0.0000025723,0.0000025750,0.0000025777, +0.0000025803,0.0000025829,0.0000025849,0.0000025866,0.0000025892, +0.0000025919,0.0000025927,0.0000025910,0.0000025848,0.0000025767, +0.0000025711,0.0000025661,0.0000025553,0.0000025438,0.0000025356, +0.0000025187,0.0000024905,0.0000024703,0.0000024624,0.0000024558, +0.0000024511,0.0000024376,0.0000024061,0.0000023794,0.0000023722, +0.0000023635,0.0000023288,0.0000022869,0.0000022657,0.0000022609, +0.0000022592,0.0000022525,0.0000022388,0.0000022245,0.0000022128, +0.0000022016,0.0000021910,0.0000021829,0.0000021784,0.0000021752, +0.0000021725,0.0000021718,0.0000021758,0.0000021798,0.0000021807, +0.0000021778,0.0000021734,0.0000021681,0.0000021613,0.0000021535, +0.0000021448,0.0000021363,0.0000021318,0.0000021305,0.0000021296, +0.0000021269,0.0000021223,0.0000021162,0.0000021107,0.0000021081, +0.0000021071,0.0000021062,0.0000021064,0.0000021078,0.0000021110, +0.0000021152,0.0000021193,0.0000021236,0.0000021277,0.0000021319, +0.0000021367,0.0000021412,0.0000021445,0.0000021462,0.0000021467, +0.0000021474,0.0000021496,0.0000021549,0.0000021625,0.0000021711, +0.0000021791,0.0000021866,0.0000021929,0.0000021975,0.0000022005, +0.0000022014,0.0000022009,0.0000021999,0.0000021996,0.0000022001, +0.0000022011,0.0000022027,0.0000022061,0.0000022107,0.0000022160, +0.0000022205,0.0000022244,0.0000022272,0.0000022290,0.0000022299, +0.0000022300,0.0000022299,0.0000022291,0.0000022276,0.0000022264, +0.0000022249,0.0000022225,0.0000022193,0.0000022166,0.0000022159, +0.0000022146,0.0000022111,0.0000022049,0.0000021972,0.0000021906, +0.0000021865,0.0000021846,0.0000021832,0.0000021817,0.0000021803, +0.0000021780,0.0000021742,0.0000021692,0.0000021636,0.0000021591, +0.0000021563,0.0000021544,0.0000021537,0.0000021549,0.0000021575, +0.0000021601,0.0000021629,0.0000021660,0.0000021684,0.0000021724, +0.0000021796,0.0000021870,0.0000021934,0.0000022001,0.0000022076, +0.0000022154,0.0000022241,0.0000022339,0.0000022425,0.0000022491, +0.0000022536,0.0000022558,0.0000022565,0.0000022558,0.0000022533, +0.0000022504,0.0000022457,0.0000022379,0.0000022325,0.0000022323, +0.0000022377,0.0000022445,0.0000022496,0.0000022524,0.0000022538, +0.0000022541,0.0000022539,0.0000022535,0.0000022534,0.0000022536, +0.0000022535,0.0000022530,0.0000022522,0.0000022512,0.0000022500, +0.0000022483,0.0000022448,0.0000022394,0.0000022340,0.0000022303, +0.0000022286,0.0000022280,0.0000022283,0.0000022295,0.0000022310, +0.0000022333,0.0000022365,0.0000022392,0.0000022409,0.0000022433, +0.0000022457,0.0000022464,0.0000022451,0.0000022413,0.0000022364, +0.0000022319,0.0000022252,0.0000022141,0.0000022021,0.0000021911, +0.0000021814,0.0000021763,0.0000021781,0.0000021883,0.0000021984, +0.0000022019,0.0000022025,0.0000022017,0.0000021971,0.0000021930, +0.0000021932,0.0000021947,0.0000021942,0.0000021929,0.0000021923, +0.0000021918,0.0000021910,0.0000021894,0.0000021879,0.0000021879, +0.0000021905,0.0000021950,0.0000022005,0.0000022066,0.0000022132, +0.0000022185,0.0000022225,0.0000022252,0.0000022260,0.0000022244, +0.0000022210,0.0000022171,0.0000022111,0.0000022028,0.0000021946, +0.0000021894,0.0000021883,0.0000021906,0.0000021952,0.0000022006, +0.0000022044,0.0000022070,0.0000022098,0.0000022110,0.0000022075, +0.0000021973,0.0000021783,0.0000021544,0.0000021367,0.0000021293, +0.0000021288,0.0000021305,0.0000021310,0.0000021288,0.0000021240, +0.0000021186,0.0000021148,0.0000021144,0.0000021163,0.0000021174, +0.0000021138,0.0000021120,0.0000021316,0.0000021686,0.0000021920, +0.0000022045,0.0000022165,0.0000022244,0.0000022293,0.0000022350, +0.0000022402,0.0000022436,0.0000022468,0.0000022504,0.0000022528, +0.0000022532,0.0000022533,0.0000022541,0.0000022563,0.0000022596, +0.0000022635,0.0000022676,0.0000022716,0.0000022750,0.0000022778, +0.0000022794,0.0000022804,0.0000022828,0.0000022887,0.0000022975, +0.0000023064,0.0000023118,0.0000023125,0.0000023093,0.0000023069, +0.0000023092,0.0000023146,0.0000023198,0.0000023237,0.0000023257, +0.0000023262,0.0000023255,0.0000023241,0.0000023221,0.0000023193, +0.0000023165,0.0000023138,0.0000023113,0.0000023094,0.0000023079, +0.0000023065,0.0000023040,0.0000022994,0.0000022921,0.0000022828, +0.0000022729,0.0000022647,0.0000022583,0.0000022462,0.0000022204, +0.0000022000,0.0000021677,0.0000021516,0.0000021532,0.0000021673, +0.0000021811,0.0000021858,0.0000021894,0.0000021984,0.0000022033, +0.0000021923,0.0000021739,0.0000021712,0.0000021866,0.0000022026, +0.0000022140,0.0000022339,0.0000022625,0.0000022822,0.0000022868, +0.0000022880,0.0000022932,0.0000022987,0.0000023012,0.0000023032, +0.0000023083,0.0000023142,0.0000023177,0.0000023203,0.0000023248, +0.0000023354,0.0000023504,0.0000023579,0.0000023509,0.0000023307, +0.0000023167,0.0000023148,0.0000023147,0.0000023121,0.0000023072, +0.0000023027,0.0000023015,0.0000023033,0.0000023070,0.0000023102, +0.0000023110,0.0000023106,0.0000023094,0.0000023087,0.0000023089, +0.0000023100,0.0000023102,0.0000023081,0.0000023048,0.0000023026, +0.0000023007,0.0000022991,0.0000022975,0.0000022968,0.0000022968, +0.0000022967,0.0000022957,0.0000022922,0.0000022880,0.0000022852, +0.0000022840,0.0000022828,0.0000022808,0.0000022785,0.0000022765, +0.0000022754,0.0000022764,0.0000022780,0.0000022784,0.0000022794, +0.0000022805,0.0000022803,0.0000022812,0.0000022853,0.0000022895, +0.0000022902,0.0000022886,0.0000022858,0.0000022813,0.0000022738, +0.0000022647,0.0000022584,0.0000022544,0.0000022522,0.0000022516, +0.0000022544,0.0000022582,0.0000022625,0.0000022685,0.0000022778, +0.0000022892,0.0000023000,0.0000023094,0.0000023153,0.0000023181, +0.0000023225,0.0000023311,0.0000023419,0.0000023518,0.0000023592, +0.0000023631,0.0000023639,0.0000023627,0.0000023611,0.0000023606, +0.0000023611,0.0000023622,0.0000023645,0.0000023663,0.0000023648, +0.0000023601,0.0000023559,0.0000023535,0.0000023513,0.0000023484, +0.0000023452,0.0000023435,0.0000023439,0.0000023464,0.0000023502, +0.0000023541,0.0000023578,0.0000023617,0.0000023658,0.0000023693, +0.0000023721,0.0000023745,0.0000023763,0.0000023786,0.0000023814, +0.0000023842,0.0000023863,0.0000023871,0.0000023876,0.0000023887, +0.0000023898,0.0000023900,0.0000023895,0.0000023887,0.0000023885, +0.0000023894,0.0000023894,0.0000023853,0.0000023772,0.0000023689, +0.0000023644,0.0000023637,0.0000023635,0.0000023613,0.0000023558, +0.0000023472,0.0000023365,0.0000023252,0.0000023174,0.0000023142, +0.0000023145,0.0000023208,0.0000023349,0.0000023533,0.0000023697, +0.0000023811,0.0000023880,0.0000023924,0.0000023979,0.0000024085, +0.0000024250,0.0000024438,0.0000024611,0.0000024764,0.0000024895, +0.0000024993,0.0000025056,0.0000025095,0.0000025106,0.0000025097, +0.0000025070,0.0000025040,0.0000025014,0.0000024989,0.0000024966, +0.0000024936,0.0000024907,0.0000024868,0.0000024822,0.0000024794, +0.0000024804,0.0000024843,0.0000024884,0.0000024917,0.0000024923, +0.0000024907,0.0000024845,0.0000024744,0.0000024626,0.0000024514, +0.0000024420,0.0000024340,0.0000024261,0.0000024182,0.0000024104, +0.0000024030,0.0000023965,0.0000023906,0.0000023854,0.0000023813, +0.0000023781,0.0000023736,0.0000023660,0.0000023560,0.0000023450, +0.0000023365,0.0000023314,0.0000023324,0.0000023376,0.0000023453, +0.0000023533,0.0000023606,0.0000023664,0.0000023700,0.0000023717, +0.0000023728,0.0000023734,0.0000023739,0.0000023731,0.0000023724, +0.0000023707,0.0000023686,0.0000023664,0.0000023643,0.0000023632, +0.0000023634,0.0000023643,0.0000023657,0.0000023672,0.0000023685, +0.0000023687,0.0000023676,0.0000023656,0.0000023655,0.0000023656, +0.0000023685,0.0000023727,0.0000023772,0.0000023815,0.0000023842, +0.0000023853,0.0000023849,0.0000023838,0.0000023835,0.0000023849, +0.0000023885,0.0000023928,0.0000023969,0.0000024003,0.0000024032, +0.0000024052,0.0000024058,0.0000024048,0.0000024027,0.0000024002, +0.0000023975,0.0000023962,0.0000023965,0.0000023978,0.0000023994, +0.0000024006,0.0000024009,0.0000024006,0.0000023997,0.0000023982, +0.0000023961,0.0000023931,0.0000023895,0.0000023855,0.0000023816, +0.0000023781,0.0000023751,0.0000023735,0.0000023734,0.0000023734, +0.0000023730,0.0000023730,0.0000023747,0.0000023781,0.0000023827, +0.0000023874,0.0000023921,0.0000023968,0.0000024013,0.0000024062, +0.0000024122,0.0000024192,0.0000024264,0.0000024336,0.0000024404, +0.0000024464,0.0000024508,0.0000024529,0.0000024526,0.0000024508, +0.0000024485,0.0000024459,0.0000024440,0.0000024438,0.0000024453, +0.0000024478,0.0000024508,0.0000024527,0.0000024524,0.0000024487, +0.0000024431,0.0000024375,0.0000024311,0.0000024224,0.0000024120, +0.0000024033,0.0000023975,0.0000023918,0.0000023897,0.0000023886, +0.0000023890,0.0000023904,0.0000023920,0.0000023930,0.0000023926, +0.0000023922,0.0000023913,0.0000023893,0.0000023856,0.0000023819, +0.0000023808,0.0000023805,0.0000023852,0.0000023916,0.0000023962, +0.0000024011,0.0000024117,0.0000024272,0.0000024376,0.0000024385, +0.0000024368,0.0000024335,0.0000024272,0.0000024199,0.0000024122, +0.0000023984,0.0000023824,0.0000023756,0.0000023743,0.0000023723, +0.0000023709,0.0000023698,0.0000023653,0.0000023574,0.0000023514, +0.0000023491,0.0000023479,0.0000023459,0.0000023419,0.0000023385, +0.0000023341,0.0000023303,0.0000023271,0.0000023248,0.0000023236, +0.0000023236,0.0000023243,0.0000023257,0.0000023291,0.0000023321, +0.0000023327,0.0000023313,0.0000023300,0.0000023291,0.0000023269, +0.0000023213,0.0000023118,0.0000023009,0.0000022909,0.0000022825, +0.0000022748,0.0000022687,0.0000022640,0.0000022605,0.0000022592, +0.0000022617,0.0000022701,0.0000022871,0.0000023111,0.0000023241, +0.0000023221,0.0000023197,0.0000023195,0.0000023235,0.0000023242, +0.0000023228,0.0000023276,0.0000023306,0.0000023271,0.0000023212, +0.0000023259,0.0000023441,0.0000023593,0.0000023653,0.0000023640, +0.0000023584,0.0000023496,0.0000023397,0.0000023314,0.0000023241, +0.0000023146,0.0000023044,0.0000022987,0.0000023007,0.0000023112, +0.0000023256,0.0000023385,0.0000023489,0.0000023564,0.0000023596, +0.0000023615,0.0000023645,0.0000023666,0.0000023642,0.0000023589, +0.0000023522,0.0000023472,0.0000023436,0.0000023382,0.0000023317, +0.0000023191,0.0000023037,0.0000022957,0.0000022941,0.0000022950, +0.0000022958,0.0000022954,0.0000022912,0.0000022827,0.0000022728, +0.0000022696,0.0000022718,0.0000022781,0.0000022836,0.0000022865, +0.0000022888,0.0000022907,0.0000022923,0.0000022927,0.0000022911, +0.0000022883,0.0000022850,0.0000022819,0.0000022796,0.0000022791, +0.0000022794,0.0000022780,0.0000022742,0.0000022684,0.0000022596, +0.0000022486,0.0000022401,0.0000022385,0.0000022403,0.0000022434, +0.0000022462,0.0000022509,0.0000022553,0.0000022567,0.0000022557, +0.0000022516,0.0000022451,0.0000022364,0.0000022280,0.0000022261, +0.0000022352,0.0000022499,0.0000022580,0.0000022591,0.0000022597, +0.0000022593,0.0000022545,0.0000022491,0.0000022497,0.0000022573, +0.0000022676,0.0000022723,0.0000022721,0.0000022747,0.0000022851, +0.0000022986,0.0000023067,0.0000023085,0.0000023035,0.0000022942, +0.0000022812,0.0000022656,0.0000022526,0.0000022442,0.0000022382, +0.0000022331,0.0000022282,0.0000022248,0.0000022229,0.0000022220, +0.0000022214,0.0000022220,0.0000022242,0.0000022256,0.0000022256, +0.0000022275,0.0000022314,0.0000022360,0.0000022397,0.0000022437, +0.0000022482,0.0000022540,0.0000022618,0.0000022698,0.0000022770, +0.0000022824,0.0000022868,0.0000022904,0.0000022939,0.0000022991, +0.0000023056,0.0000023107,0.0000023134,0.0000023126,0.0000023106, +0.0000023107,0.0000023113,0.0000023114,0.0000023127,0.0000023163, +0.0000023206,0.0000023236,0.0000023245,0.0000023223,0.0000023171, +0.0000023117,0.0000023051,0.0000022952,0.0000022840,0.0000022750, +0.0000022688,0.0000022638,0.0000022624,0.0000022639,0.0000022698, +0.0000022793,0.0000022931,0.0000023122,0.0000023238,0.0000023227, +0.0000023141,0.0000023120,0.0000023202,0.0000023347,0.0000023530, +0.0000023656,0.0000023682,0.0000023692,0.0000023740,0.0000023828, +0.0000023907,0.0000023965,0.0000023998,0.0000024032,0.0000024071, +0.0000024065,0.0000024039,0.0000024046,0.0000024083,0.0000024116, +0.0000024146,0.0000024198,0.0000024256,0.0000024284,0.0000024289, +0.0000024309,0.0000024342,0.0000024349,0.0000024334,0.0000024279, +0.0000024224,0.0000024225,0.0000024237,0.0000024216,0.0000024168, +0.0000024077,0.0000023953,0.0000023843,0.0000023758,0.0000023694, +0.0000023657,0.0000023629,0.0000023603,0.0000023605,0.0000023657, +0.0000023702,0.0000023732,0.0000023805,0.0000023874,0.0000023939, +0.0000023985,0.0000023977,0.0000024019,0.0000024120,0.0000024144, +0.0000024098,0.0000024057,0.0000024060,0.0000024063,0.0000024015, +0.0000023978,0.0000024128,0.0000024500,0.0000024868,0.0000025056, +0.0000025068,0.0000024918,0.0000024682,0.0000024474,0.0000024409, +0.0000024434,0.0000024461,0.0000024464,0.0000024469,0.0000024482, +0.0000024488,0.0000024471,0.0000024424,0.0000024326,0.0000024203, +0.0000024078,0.0000023977,0.0000023907,0.0000023876,0.0000023869, +0.0000023892,0.0000023924,0.0000023999,0.0000024088,0.0000024184, +0.0000024281,0.0000024368,0.0000024434,0.0000024470,0.0000024476, +0.0000024473,0.0000024443,0.0000024407,0.0000024371,0.0000024345, +0.0000024327,0.0000024313,0.0000024299,0.0000024291,0.0000024279, +0.0000024260,0.0000024236,0.0000024211,0.0000024185,0.0000024159, +0.0000024133,0.0000024106,0.0000024080,0.0000024060,0.0000024049, +0.0000024049,0.0000024061,0.0000024080,0.0000024101,0.0000024120, +0.0000024136,0.0000024145,0.0000024147,0.0000024143,0.0000024130, +0.0000024111,0.0000024098,0.0000024088,0.0000024080,0.0000024079, +0.0000024078,0.0000024083,0.0000024096,0.0000024098,0.0000024085, +0.0000024066,0.0000024049,0.0000024030,0.0000024013,0.0000024001, +0.0000023992,0.0000023986,0.0000023980,0.0000023971,0.0000023960, +0.0000023954,0.0000023955,0.0000023961,0.0000023967,0.0000023971, +0.0000023976,0.0000023982,0.0000023986,0.0000023988,0.0000023997, +0.0000024008,0.0000024017,0.0000024030,0.0000024045,0.0000024058, +0.0000024067,0.0000024076,0.0000024087,0.0000024100,0.0000024113, +0.0000024120,0.0000024123,0.0000024124,0.0000024128,0.0000024130, +0.0000024130,0.0000024127,0.0000024129,0.0000024140,0.0000024163, +0.0000024188,0.0000024212,0.0000024233,0.0000024245,0.0000024244, +0.0000024235,0.0000024224,0.0000024205,0.0000024173,0.0000024124, +0.0000024056,0.0000023967,0.0000023858,0.0000023726,0.0000023574, +0.0000023449,0.0000023374,0.0000023315,0.0000023230,0.0000023111, +0.0000022990,0.0000022872,0.0000022738,0.0000022573,0.0000022375, +0.0000022231,0.0000022210,0.0000022257,0.0000022300,0.0000022319, +0.0000022332,0.0000022332,0.0000022321,0.0000022328,0.0000022364, +0.0000022397,0.0000022388,0.0000022320,0.0000022223,0.0000022154, +0.0000022109,0.0000022024,0.0000021922,0.0000021905,0.0000022033, +0.0000022245,0.0000022387,0.0000022423,0.0000022412,0.0000022339, +0.0000022205,0.0000022093,0.0000022065,0.0000022054,0.0000021978, +0.0000021869,0.0000021805,0.0000021763,0.0000021780,0.0000021945, +0.0000022115,0.0000022095,0.0000021993,0.0000021981,0.0000022063, +0.0000022198,0.0000022348,0.0000022455,0.0000022500,0.0000022546, +0.0000022641,0.0000022735,0.0000022781,0.0000022859,0.0000023063, +0.0000023338,0.0000023533,0.0000023611,0.0000023666,0.0000023757, +0.0000023862,0.0000023965,0.0000024065,0.0000024143,0.0000024181, +0.0000024186,0.0000024182,0.0000024179,0.0000024171,0.0000024148, +0.0000024136,0.0000024150,0.0000024185,0.0000024222,0.0000024268, +0.0000024303,0.0000024291,0.0000024212,0.0000024084,0.0000023947, +0.0000023808,0.0000023655,0.0000023479,0.0000023281,0.0000023082, +0.0000022925,0.0000022849,0.0000022833,0.0000022833,0.0000022823, +0.0000022789,0.0000022729,0.0000022640,0.0000022536,0.0000022441, +0.0000022370,0.0000022314,0.0000022249,0.0000022159,0.0000022046, +0.0000021909,0.0000021753,0.0000021584,0.0000021424,0.0000021287, +0.0000021168,0.0000021065,0.0000020999,0.0000020982,0.0000021007, +0.0000021063,0.0000021136,0.0000021213,0.0000021276,0.0000021319, +0.0000021344,0.0000021357,0.0000021361,0.0000021361,0.0000021370, +0.0000021405,0.0000021478,0.0000021588,0.0000021712,0.0000021817, +0.0000021899,0.0000021986,0.0000022126,0.0000022323,0.0000022518, +0.0000022658,0.0000022755,0.0000022856,0.0000022975,0.0000023067, +0.0000023107,0.0000023126,0.0000023150,0.0000023153,0.0000023119, +0.0000023088,0.0000023093,0.0000023115,0.0000023153,0.0000023253, +0.0000023428,0.0000023613,0.0000023754,0.0000023877,0.0000024017, +0.0000024185,0.0000024366,0.0000024504,0.0000024565,0.0000024595, +0.0000024645,0.0000024746,0.0000024868,0.0000024922,0.0000024900, +0.0000024876,0.0000024895,0.0000024923,0.0000024913,0.0000024880, +0.0000024873,0.0000024900,0.0000024938,0.0000024956,0.0000024963, +0.0000024992,0.0000025051,0.0000025108,0.0000025128,0.0000025120, +0.0000025095,0.0000025077,0.0000025076,0.0000025092,0.0000025114, +0.0000025130,0.0000025140,0.0000025151,0.0000025163,0.0000025188, +0.0000025214,0.0000025243,0.0000025257,0.0000025225,0.0000025137, +0.0000025029,0.0000024926,0.0000024809,0.0000024656,0.0000024489, +0.0000024364,0.0000024293,0.0000024223,0.0000024104,0.0000023949, +0.0000023796,0.0000023694,0.0000023686,0.0000023735,0.0000023851, +0.0000023977,0.0000024029,0.0000024005,0.0000023985,0.0000024021, +0.0000024113,0.0000024233,0.0000024367,0.0000024490,0.0000024574, +0.0000024622,0.0000024666,0.0000024705,0.0000024725,0.0000024729, +0.0000024722,0.0000024705,0.0000024682,0.0000024663,0.0000024657, +0.0000024666,0.0000024694,0.0000024751,0.0000024853,0.0000024997, +0.0000025161,0.0000025315,0.0000025435,0.0000025512,0.0000025557, +0.0000025587,0.0000025611,0.0000025632,0.0000025649,0.0000025657, +0.0000025654,0.0000025646,0.0000025643,0.0000025646,0.0000025657, +0.0000025675,0.0000025700,0.0000025729,0.0000025755,0.0000025780, +0.0000025806,0.0000025827,0.0000025843,0.0000025866,0.0000025897, +0.0000025913,0.0000025898,0.0000025834,0.0000025746,0.0000025689, +0.0000025649,0.0000025558,0.0000025448,0.0000025373,0.0000025236, +0.0000024978,0.0000024762,0.0000024678,0.0000024615,0.0000024556, +0.0000024497,0.0000024263,0.0000023932,0.0000023757,0.0000023719, +0.0000023542,0.0000023138,0.0000022796,0.0000022667,0.0000022644, +0.0000022611,0.0000022503,0.0000022338,0.0000022187,0.0000022066, +0.0000021953,0.0000021853,0.0000021781,0.0000021733,0.0000021688, +0.0000021665,0.0000021697,0.0000021766,0.0000021836,0.0000021894, +0.0000021890,0.0000021843,0.0000021760,0.0000021672,0.0000021587, +0.0000021492,0.0000021398,0.0000021349,0.0000021319,0.0000021289, +0.0000021253,0.0000021206,0.0000021152,0.0000021110,0.0000021091, +0.0000021089,0.0000021088,0.0000021092,0.0000021102,0.0000021123, +0.0000021151,0.0000021176,0.0000021200,0.0000021219,0.0000021240, +0.0000021266,0.0000021294,0.0000021320,0.0000021342,0.0000021360, +0.0000021381,0.0000021410,0.0000021448,0.0000021502,0.0000021568, +0.0000021635,0.0000021698,0.0000021755,0.0000021808,0.0000021849, +0.0000021878,0.0000021896,0.0000021912,0.0000021941,0.0000021974, +0.0000022008,0.0000022047,0.0000022092,0.0000022142,0.0000022189, +0.0000022228,0.0000022254,0.0000022268,0.0000022273,0.0000022272, +0.0000022264,0.0000022248,0.0000022224,0.0000022200,0.0000022175, +0.0000022144,0.0000022107,0.0000022079,0.0000022069,0.0000022063, +0.0000022053,0.0000022019,0.0000021950,0.0000021870,0.0000021816, +0.0000021794,0.0000021785,0.0000021775,0.0000021765,0.0000021751, +0.0000021727,0.0000021690,0.0000021638,0.0000021584,0.0000021548, +0.0000021526,0.0000021513,0.0000021519,0.0000021542,0.0000021566, +0.0000021590,0.0000021622,0.0000021645,0.0000021668,0.0000021715, +0.0000021776,0.0000021832,0.0000021889,0.0000021954,0.0000022026, +0.0000022100,0.0000022183,0.0000022283,0.0000022387,0.0000022473, +0.0000022521,0.0000022546,0.0000022563,0.0000022559,0.0000022530, +0.0000022505,0.0000022464,0.0000022392,0.0000022336,0.0000022333, +0.0000022372,0.0000022431,0.0000022482,0.0000022515,0.0000022533, +0.0000022535,0.0000022528,0.0000022516,0.0000022505,0.0000022501, +0.0000022504,0.0000022510,0.0000022509,0.0000022501,0.0000022490, +0.0000022475,0.0000022452,0.0000022415,0.0000022374,0.0000022341, +0.0000022322,0.0000022315,0.0000022317,0.0000022321,0.0000022322, +0.0000022331,0.0000022350,0.0000022370,0.0000022393,0.0000022421, +0.0000022440,0.0000022442,0.0000022423,0.0000022382,0.0000022336, +0.0000022285,0.0000022201,0.0000022097,0.0000021991,0.0000021868, +0.0000021764,0.0000021734,0.0000021782,0.0000021897,0.0000021974, +0.0000021993,0.0000021991,0.0000021948,0.0000021890,0.0000021883, +0.0000021908,0.0000021903,0.0000021857,0.0000021824,0.0000021825, +0.0000021834,0.0000021837,0.0000021835,0.0000021835,0.0000021843, +0.0000021871,0.0000021917,0.0000021984,0.0000022068,0.0000022152, +0.0000022215,0.0000022261,0.0000022289,0.0000022294,0.0000022279, +0.0000022253,0.0000022221,0.0000022165,0.0000022076,0.0000021977, +0.0000021902,0.0000021872,0.0000021876,0.0000021904,0.0000021959, +0.0000022018,0.0000022062,0.0000022106,0.0000022143,0.0000022138, +0.0000022062,0.0000021911,0.0000021681,0.0000021442,0.0000021304, +0.0000021277,0.0000021290,0.0000021307,0.0000021299,0.0000021257, +0.0000021203,0.0000021165,0.0000021152,0.0000021156,0.0000021163, +0.0000021147,0.0000021107,0.0000021195,0.0000021519,0.0000021821, +0.0000021975,0.0000022100,0.0000022207,0.0000022276,0.0000022341, +0.0000022397,0.0000022433,0.0000022472,0.0000022523,0.0000022558, +0.0000022565,0.0000022558,0.0000022551,0.0000022551,0.0000022561, +0.0000022581,0.0000022612,0.0000022652,0.0000022694,0.0000022732, +0.0000022757,0.0000022769,0.0000022788,0.0000022835,0.0000022910, +0.0000022987,0.0000023044,0.0000023073,0.0000023067,0.0000023037, +0.0000023029,0.0000023055,0.0000023112,0.0000023164,0.0000023196, +0.0000023210,0.0000023213,0.0000023207,0.0000023197,0.0000023182, +0.0000023159,0.0000023131,0.0000023105,0.0000023085,0.0000023071, +0.0000023058,0.0000023036,0.0000022995,0.0000022933,0.0000022855, +0.0000022761,0.0000022663,0.0000022588,0.0000022512,0.0000022327, +0.0000022080,0.0000021722,0.0000021514,0.0000021515,0.0000021656, +0.0000021810,0.0000021864,0.0000021882,0.0000021955,0.0000022028, +0.0000021973,0.0000021777,0.0000021683,0.0000021792,0.0000021970, +0.0000022112,0.0000022332,0.0000022637,0.0000022839,0.0000022882, +0.0000022897,0.0000022943,0.0000022983,0.0000023003,0.0000023041, +0.0000023107,0.0000023156,0.0000023177,0.0000023200,0.0000023257, +0.0000023390,0.0000023542,0.0000023588,0.0000023510,0.0000023324, +0.0000023207,0.0000023190,0.0000023183,0.0000023152,0.0000023101, +0.0000023047,0.0000023028,0.0000023043,0.0000023074,0.0000023095, +0.0000023095,0.0000023089,0.0000023091,0.0000023112,0.0000023142, +0.0000023158,0.0000023141,0.0000023101,0.0000023052,0.0000023010, +0.0000022972,0.0000022943,0.0000022926,0.0000022920,0.0000022922, +0.0000022927,0.0000022927,0.0000022911,0.0000022887,0.0000022866, +0.0000022851,0.0000022842,0.0000022831,0.0000022808,0.0000022782, +0.0000022764,0.0000022769,0.0000022787,0.0000022793,0.0000022809, +0.0000022820,0.0000022817,0.0000022825,0.0000022872,0.0000022927, +0.0000022947,0.0000022945,0.0000022931,0.0000022897,0.0000022834, +0.0000022748,0.0000022662,0.0000022590,0.0000022539,0.0000022518, +0.0000022529,0.0000022555,0.0000022585,0.0000022625,0.0000022691, +0.0000022770,0.0000022843,0.0000022928,0.0000023027,0.0000023102, +0.0000023151,0.0000023202,0.0000023264,0.0000023345,0.0000023446, +0.0000023538,0.0000023592,0.0000023608,0.0000023607,0.0000023604, +0.0000023608,0.0000023613,0.0000023628,0.0000023655,0.0000023669, +0.0000023654,0.0000023614,0.0000023574,0.0000023545,0.0000023519, +0.0000023486,0.0000023457,0.0000023450,0.0000023463,0.0000023488, +0.0000023515,0.0000023544,0.0000023574,0.0000023611,0.0000023650, +0.0000023684,0.0000023719,0.0000023750,0.0000023776,0.0000023808, +0.0000023841,0.0000023879,0.0000023902,0.0000023902,0.0000023886, +0.0000023877,0.0000023875,0.0000023873,0.0000023867,0.0000023861, +0.0000023865,0.0000023881,0.0000023885,0.0000023845,0.0000023753, +0.0000023658,0.0000023607,0.0000023601,0.0000023597,0.0000023573, +0.0000023518,0.0000023427,0.0000023308,0.0000023192,0.0000023135, +0.0000023130,0.0000023144,0.0000023189,0.0000023285,0.0000023429, +0.0000023591,0.0000023726,0.0000023807,0.0000023834,0.0000023845, +0.0000023890,0.0000024009,0.0000024199,0.0000024420,0.0000024636, +0.0000024813,0.0000024942,0.0000025022,0.0000025065,0.0000025077, +0.0000025069,0.0000025045,0.0000025015,0.0000024988,0.0000024971, +0.0000024962,0.0000024956,0.0000024953,0.0000024938,0.0000024902, +0.0000024867,0.0000024854,0.0000024858,0.0000024875,0.0000024900, +0.0000024912,0.0000024903,0.0000024881,0.0000024818,0.0000024720, +0.0000024608,0.0000024504,0.0000024414,0.0000024333,0.0000024260, +0.0000024182,0.0000024096,0.0000024015,0.0000023953,0.0000023915, +0.0000023891,0.0000023870,0.0000023844,0.0000023810,0.0000023760, +0.0000023679,0.0000023579,0.0000023480,0.0000023407,0.0000023383, +0.0000023397,0.0000023444,0.0000023512,0.0000023578,0.0000023626, +0.0000023652,0.0000023667,0.0000023681,0.0000023692,0.0000023696, +0.0000023694,0.0000023688,0.0000023681,0.0000023675,0.0000023673, +0.0000023682,0.0000023689,0.0000023695,0.0000023701,0.0000023713, +0.0000023732,0.0000023748,0.0000023747,0.0000023730,0.0000023699, +0.0000023669,0.0000023656,0.0000023640,0.0000023651,0.0000023673, +0.0000023700,0.0000023718,0.0000023718,0.0000023705,0.0000023694, +0.0000023703,0.0000023739,0.0000023794,0.0000023858,0.0000023918, +0.0000023969,0.0000024008,0.0000024032,0.0000024038,0.0000024028, +0.0000024007,0.0000023974,0.0000023941,0.0000023920,0.0000023916, +0.0000023920,0.0000023919,0.0000023915,0.0000023905,0.0000023889, +0.0000023864,0.0000023834,0.0000023801,0.0000023770,0.0000023742, +0.0000023715,0.0000023686,0.0000023654,0.0000023628,0.0000023608, +0.0000023592,0.0000023575,0.0000023559,0.0000023557,0.0000023574, +0.0000023608,0.0000023647,0.0000023680,0.0000023707,0.0000023730, +0.0000023760,0.0000023803,0.0000023862,0.0000023940,0.0000024035, +0.0000024135,0.0000024230,0.0000024311,0.0000024371,0.0000024410, +0.0000024434,0.0000024443,0.0000024434,0.0000024416,0.0000024414, +0.0000024438,0.0000024478,0.0000024528,0.0000024585,0.0000024636, +0.0000024652,0.0000024632,0.0000024579,0.0000024510,0.0000024434, +0.0000024344,0.0000024228,0.0000024099,0.0000023972,0.0000023880, +0.0000023837,0.0000023810,0.0000023814,0.0000023834,0.0000023850, +0.0000023863,0.0000023875,0.0000023887,0.0000023891,0.0000023890, +0.0000023895,0.0000023919,0.0000023947,0.0000023979,0.0000024012, +0.0000024054,0.0000024135,0.0000024262,0.0000024381,0.0000024434, +0.0000024434,0.0000024432,0.0000024425,0.0000024366,0.0000024271, +0.0000024184,0.0000024074,0.0000023906,0.0000023792,0.0000023768, +0.0000023746,0.0000023709,0.0000023694,0.0000023675,0.0000023595, +0.0000023462,0.0000023358,0.0000023316,0.0000023308,0.0000023318, +0.0000023326,0.0000023319,0.0000023302,0.0000023277,0.0000023251, +0.0000023235,0.0000023245,0.0000023272,0.0000023314,0.0000023341, +0.0000023344,0.0000023336,0.0000023337,0.0000023346,0.0000023329, +0.0000023273,0.0000023173,0.0000023058,0.0000022965,0.0000022881, +0.0000022802,0.0000022721,0.0000022649,0.0000022604,0.0000022583, +0.0000022588,0.0000022611,0.0000022646,0.0000022707,0.0000022844, +0.0000023069,0.0000023208,0.0000023198,0.0000023176,0.0000023176, +0.0000023202,0.0000023203,0.0000023190,0.0000023242,0.0000023280, +0.0000023272,0.0000023241,0.0000023280,0.0000023458,0.0000023641, +0.0000023744,0.0000023783,0.0000023749,0.0000023657,0.0000023542, +0.0000023426,0.0000023296,0.0000023144,0.0000022998,0.0000022930, +0.0000022930,0.0000023038,0.0000023185,0.0000023311,0.0000023411, +0.0000023486,0.0000023539,0.0000023586,0.0000023642,0.0000023665, +0.0000023652,0.0000023602,0.0000023548,0.0000023493,0.0000023404, +0.0000023271,0.0000023111,0.0000022994,0.0000022952,0.0000022939, +0.0000022931,0.0000022930,0.0000022896,0.0000022809,0.0000022723, +0.0000022696,0.0000022735,0.0000022812,0.0000022858,0.0000022888, +0.0000022922,0.0000022932,0.0000022919,0.0000022911,0.0000022913, +0.0000022910,0.0000022894,0.0000022867,0.0000022840,0.0000022817, +0.0000022804,0.0000022801,0.0000022788,0.0000022751,0.0000022685, +0.0000022586,0.0000022479,0.0000022411,0.0000022393,0.0000022390, +0.0000022395,0.0000022429,0.0000022491,0.0000022545,0.0000022569, +0.0000022569,0.0000022542,0.0000022470,0.0000022371,0.0000022302, +0.0000022308,0.0000022418,0.0000022533,0.0000022575,0.0000022587, +0.0000022602,0.0000022585,0.0000022534,0.0000022510,0.0000022542, +0.0000022642,0.0000022732,0.0000022761,0.0000022769,0.0000022828, +0.0000022925,0.0000023011,0.0000023046,0.0000023042,0.0000022974, +0.0000022851,0.0000022695,0.0000022540,0.0000022451,0.0000022420, +0.0000022399,0.0000022356,0.0000022304,0.0000022258,0.0000022225, +0.0000022199,0.0000022179,0.0000022177,0.0000022200,0.0000022229, +0.0000022251,0.0000022285,0.0000022345,0.0000022393,0.0000022424, +0.0000022465,0.0000022526,0.0000022606,0.0000022699,0.0000022780, +0.0000022846,0.0000022902,0.0000022948,0.0000022986,0.0000023009, +0.0000023038,0.0000023080,0.0000023117,0.0000023140,0.0000023140, +0.0000023125,0.0000023124,0.0000023132,0.0000023129,0.0000023135, +0.0000023166,0.0000023215,0.0000023257,0.0000023274,0.0000023265, +0.0000023219,0.0000023160,0.0000023103,0.0000023027,0.0000022915, +0.0000022804,0.0000022718,0.0000022659,0.0000022627,0.0000022633, +0.0000022677,0.0000022757,0.0000022858,0.0000023017,0.0000023181, +0.0000023226,0.0000023190,0.0000023108,0.0000023094,0.0000023184, +0.0000023347,0.0000023541,0.0000023663,0.0000023685,0.0000023687, +0.0000023717,0.0000023791,0.0000023861,0.0000023906,0.0000023926, +0.0000023959,0.0000024020,0.0000024056,0.0000024064,0.0000024081, +0.0000024106,0.0000024128,0.0000024167,0.0000024234,0.0000024276, +0.0000024271,0.0000024267,0.0000024300,0.0000024332,0.0000024331, +0.0000024301,0.0000024230,0.0000024192,0.0000024212,0.0000024221, +0.0000024198,0.0000024152,0.0000024054,0.0000023929,0.0000023825, +0.0000023745,0.0000023689,0.0000023667,0.0000023651,0.0000023629, +0.0000023640,0.0000023685,0.0000023721,0.0000023741,0.0000023799, +0.0000023867,0.0000023921,0.0000023966,0.0000023966,0.0000023980, +0.0000024062,0.0000024110,0.0000024078,0.0000024028,0.0000024019, +0.0000024026,0.0000024013,0.0000023952,0.0000023908,0.0000024014, +0.0000024322,0.0000024645,0.0000024817,0.0000024837,0.0000024744, +0.0000024604,0.0000024504,0.0000024490,0.0000024513,0.0000024514, +0.0000024486,0.0000024460,0.0000024455,0.0000024459,0.0000024457, +0.0000024439,0.0000024404,0.0000024335,0.0000024253,0.0000024168, +0.0000024082,0.0000024004,0.0000023933,0.0000023882,0.0000023872, +0.0000023896,0.0000023959,0.0000024051,0.0000024160,0.0000024272, +0.0000024371,0.0000024445,0.0000024487,0.0000024494,0.0000024489, +0.0000024458,0.0000024420,0.0000024381,0.0000024340,0.0000024302, +0.0000024273,0.0000024251,0.0000024214,0.0000024182,0.0000024148, +0.0000024114,0.0000024085,0.0000024061,0.0000024040,0.0000024022, +0.0000024006,0.0000023995,0.0000023992,0.0000023999,0.0000024014, +0.0000024031,0.0000024047,0.0000024057,0.0000024061,0.0000024060, +0.0000024055,0.0000024049,0.0000024042,0.0000024034,0.0000024023, +0.0000024016,0.0000024017,0.0000024026,0.0000024039,0.0000024056, +0.0000024072,0.0000024078,0.0000024079,0.0000024083,0.0000024081, +0.0000024068,0.0000024062,0.0000024065,0.0000024068,0.0000024068, +0.0000024062,0.0000024048,0.0000024034,0.0000024026,0.0000024022, +0.0000024018,0.0000024011,0.0000024002,0.0000023999,0.0000023997, +0.0000023991,0.0000023991,0.0000023997,0.0000024002,0.0000024013, +0.0000024029,0.0000024047,0.0000024062,0.0000024076,0.0000024089, +0.0000024101,0.0000024114,0.0000024119,0.0000024117,0.0000024112, +0.0000024108,0.0000024101,0.0000024088,0.0000024075,0.0000024069, +0.0000024073,0.0000024092,0.0000024119,0.0000024146,0.0000024173, +0.0000024196,0.0000024205,0.0000024203,0.0000024197,0.0000024190, +0.0000024173,0.0000024141,0.0000024106,0.0000024048,0.0000023955, +0.0000023831,0.0000023689,0.0000023531,0.0000023402,0.0000023323, +0.0000023248,0.0000023127,0.0000022989,0.0000022890,0.0000022801, +0.0000022656,0.0000022461,0.0000022294,0.0000022242,0.0000022264, +0.0000022305,0.0000022323,0.0000022329,0.0000022333,0.0000022327, +0.0000022326,0.0000022348,0.0000022378,0.0000022377,0.0000022329, +0.0000022253,0.0000022186,0.0000022120,0.0000022012,0.0000021904, +0.0000021907,0.0000022071,0.0000022303,0.0000022436,0.0000022455, +0.0000022441,0.0000022409,0.0000022333,0.0000022199,0.0000022087, +0.0000022065,0.0000022066,0.0000021993,0.0000021876,0.0000021800, +0.0000021748,0.0000021747,0.0000021896,0.0000022078,0.0000022073, +0.0000021980,0.0000021953,0.0000022010,0.0000022142,0.0000022313, +0.0000022449,0.0000022503,0.0000022532,0.0000022611,0.0000022720, +0.0000022798,0.0000022871,0.0000023028,0.0000023282,0.0000023523, +0.0000023647,0.0000023698,0.0000023759,0.0000023854,0.0000023970, +0.0000024082,0.0000024158,0.0000024191,0.0000024195,0.0000024191, +0.0000024187,0.0000024172,0.0000024140,0.0000024120,0.0000024126, +0.0000024148,0.0000024179,0.0000024208,0.0000024213,0.0000024162, +0.0000024041,0.0000023894,0.0000023756,0.0000023620,0.0000023466, +0.0000023293,0.0000023115,0.0000022951,0.0000022833,0.0000022780, +0.0000022766,0.0000022747,0.0000022700,0.0000022632,0.0000022558, +0.0000022482,0.0000022404,0.0000022332,0.0000022270,0.0000022205, +0.0000022120,0.0000022011,0.0000021888,0.0000021748,0.0000021590, +0.0000021417,0.0000021245,0.0000021090,0.0000020955,0.0000020856, +0.0000020808,0.0000020806,0.0000020835,0.0000020896,0.0000020982, +0.0000021069,0.0000021140,0.0000021192,0.0000021225,0.0000021237, +0.0000021233,0.0000021212,0.0000021191,0.0000021194,0.0000021239, +0.0000021337,0.0000021483,0.0000021647,0.0000021787,0.0000021887, +0.0000021984,0.0000022126,0.0000022311,0.0000022481,0.0000022594, +0.0000022677,0.0000022789,0.0000022928,0.0000023032,0.0000023075, +0.0000023095,0.0000023098,0.0000023061,0.0000023004,0.0000022990, +0.0000023019,0.0000023052,0.0000023115,0.0000023266,0.0000023471, +0.0000023637,0.0000023759,0.0000023895,0.0000024058,0.0000024231, +0.0000024390,0.0000024495,0.0000024548,0.0000024597,0.0000024687, +0.0000024822,0.0000024923,0.0000024934,0.0000024901,0.0000024893, +0.0000024907,0.0000024904,0.0000024869,0.0000024848,0.0000024859, +0.0000024896,0.0000024928,0.0000024943,0.0000024960,0.0000025001, +0.0000025053,0.0000025081,0.0000025074,0.0000025044,0.0000025019, +0.0000025014,0.0000025027,0.0000025047,0.0000025059,0.0000025069, +0.0000025081,0.0000025098,0.0000025131,0.0000025166,0.0000025189, +0.0000025172,0.0000025083,0.0000024961,0.0000024858,0.0000024751, +0.0000024598,0.0000024428,0.0000024306,0.0000024237,0.0000024166, +0.0000024056,0.0000023921,0.0000023791,0.0000023690,0.0000023663, +0.0000023712,0.0000023806,0.0000023907,0.0000023983,0.0000023996, +0.0000023968,0.0000023967,0.0000024023,0.0000024110,0.0000024201, +0.0000024293,0.0000024380,0.0000024454,0.0000024510,0.0000024553, +0.0000024579,0.0000024582,0.0000024568,0.0000024541,0.0000024511, +0.0000024484,0.0000024465,0.0000024458,0.0000024456,0.0000024460, +0.0000024484,0.0000024544,0.0000024649,0.0000024799,0.0000024982, +0.0000025173,0.0000025337,0.0000025449,0.0000025507,0.0000025535, +0.0000025556,0.0000025584,0.0000025612,0.0000025630,0.0000025638, +0.0000025640,0.0000025643,0.0000025649,0.0000025659,0.0000025675, +0.0000025697,0.0000025721,0.0000025744,0.0000025769,0.0000025790, +0.0000025806,0.0000025829,0.0000025864,0.0000025885,0.0000025871, +0.0000025807,0.0000025718,0.0000025661,0.0000025628,0.0000025547, +0.0000025443,0.0000025380,0.0000025274,0.0000025042,0.0000024817, +0.0000024726,0.0000024680,0.0000024607,0.0000024569,0.0000024445, +0.0000024126,0.0000023839,0.0000023744,0.0000023695,0.0000023442, +0.0000023039,0.0000022766,0.0000022681,0.0000022657,0.0000022594, +0.0000022454,0.0000022274,0.0000022115,0.0000021991,0.0000021881, +0.0000021789,0.0000021728,0.0000021686,0.0000021666,0.0000021678, +0.0000021717,0.0000021786,0.0000021887,0.0000021957,0.0000021958, +0.0000021893,0.0000021792,0.0000021700,0.0000021613,0.0000021510, +0.0000021432,0.0000021373,0.0000021324,0.0000021279,0.0000021234, +0.0000021189,0.0000021149,0.0000021119,0.0000021102,0.0000021099, +0.0000021103,0.0000021114,0.0000021127,0.0000021141,0.0000021160, +0.0000021171,0.0000021179,0.0000021178,0.0000021177,0.0000021179, +0.0000021187,0.0000021203,0.0000021225,0.0000021258,0.0000021295, +0.0000021325,0.0000021356,0.0000021397,0.0000021441,0.0000021487, +0.0000021539,0.0000021596,0.0000021652,0.0000021702,0.0000021738, +0.0000021767,0.0000021805,0.0000021852,0.0000021904,0.0000021961, +0.0000022020,0.0000022075,0.0000022127,0.0000022171,0.0000022199, +0.0000022213,0.0000022221,0.0000022218,0.0000022205,0.0000022184, +0.0000022155,0.0000022117,0.0000022080,0.0000022045,0.0000022009, +0.0000021982,0.0000021978,0.0000021978,0.0000021978,0.0000021964, +0.0000021918,0.0000021843,0.0000021779,0.0000021748,0.0000021737, +0.0000021729,0.0000021721,0.0000021712,0.0000021697,0.0000021675, +0.0000021638,0.0000021588,0.0000021547,0.0000021525,0.0000021508, +0.0000021506,0.0000021520,0.0000021539,0.0000021555,0.0000021581, +0.0000021610,0.0000021635,0.0000021674,0.0000021727,0.0000021781, +0.0000021829,0.0000021872,0.0000021917,0.0000021973,0.0000022040, +0.0000022118,0.0000022219,0.0000022340,0.0000022442,0.0000022498, +0.0000022533,0.0000022559,0.0000022556,0.0000022535,0.0000022514, +0.0000022478,0.0000022423,0.0000022373,0.0000022357,0.0000022381, +0.0000022420,0.0000022466,0.0000022501,0.0000022522,0.0000022525, +0.0000022517,0.0000022503,0.0000022488,0.0000022480,0.0000022478, +0.0000022480,0.0000022482,0.0000022481,0.0000022476,0.0000022467, +0.0000022451,0.0000022431,0.0000022407,0.0000022381,0.0000022361, +0.0000022350,0.0000022342,0.0000022334,0.0000022328,0.0000022329, +0.0000022340,0.0000022363,0.0000022392,0.0000022411,0.0000022413, +0.0000022408,0.0000022384,0.0000022340,0.0000022294,0.0000022231, +0.0000022148,0.0000022066,0.0000021959,0.0000021819,0.0000021721, +0.0000021710,0.0000021794,0.0000021903,0.0000021955,0.0000021962, +0.0000021940,0.0000021870,0.0000021831,0.0000021853,0.0000021865, +0.0000021820,0.0000021754,0.0000021735,0.0000021748,0.0000021770, +0.0000021783,0.0000021790,0.0000021795,0.0000021807,0.0000021833, +0.0000021876,0.0000021944,0.0000022035,0.0000022129,0.0000022207, +0.0000022266,0.0000022300,0.0000022308,0.0000022298,0.0000022279, +0.0000022253,0.0000022206,0.0000022128,0.0000022035,0.0000021950, +0.0000021898,0.0000021882,0.0000021889,0.0000021921,0.0000021978, +0.0000022035,0.0000022091,0.0000022149,0.0000022167,0.0000022122, +0.0000022001,0.0000021815,0.0000021567,0.0000021357,0.0000021277, +0.0000021281,0.0000021300,0.0000021299,0.0000021260,0.0000021205, +0.0000021166,0.0000021150,0.0000021144,0.0000021143,0.0000021144, +0.0000021094,0.0000021083,0.0000021322,0.0000021674,0.0000021891, +0.0000022024,0.0000022152,0.0000022248,0.0000022320,0.0000022381, +0.0000022426,0.0000022474,0.0000022533,0.0000022574,0.0000022582, +0.0000022577,0.0000022564,0.0000022558,0.0000022562,0.0000022574, +0.0000022596,0.0000022630,0.0000022669,0.0000022704,0.0000022731, +0.0000022754,0.0000022785,0.0000022832,0.0000022893,0.0000022949, +0.0000022995,0.0000023026,0.0000023029,0.0000022998,0.0000022969, +0.0000022975,0.0000023023,0.0000023090,0.0000023142,0.0000023163, +0.0000023165,0.0000023159,0.0000023152,0.0000023139,0.0000023117, +0.0000023093,0.0000023073,0.0000023055,0.0000023039,0.0000023027, +0.0000023012,0.0000022982,0.0000022933,0.0000022865,0.0000022776, +0.0000022674,0.0000022593,0.0000022534,0.0000022389,0.0000022090, +0.0000021733,0.0000021526,0.0000021526,0.0000021670,0.0000021828, +0.0000021884,0.0000021896,0.0000021950,0.0000022027,0.0000022010, +0.0000021832,0.0000021680,0.0000021742,0.0000021927,0.0000022093, +0.0000022331,0.0000022653,0.0000022858,0.0000022897,0.0000022909, +0.0000022941,0.0000022970,0.0000023000,0.0000023060,0.0000023129, +0.0000023163,0.0000023173,0.0000023198,0.0000023279,0.0000023430, +0.0000023568,0.0000023599,0.0000023511,0.0000023350,0.0000023256, +0.0000023241,0.0000023231,0.0000023196,0.0000023139,0.0000023079, +0.0000023048,0.0000023046,0.0000023057,0.0000023057,0.0000023060, +0.0000023083,0.0000023122,0.0000023159,0.0000023185,0.0000023181, +0.0000023143,0.0000023086,0.0000023026,0.0000022970,0.0000022920, +0.0000022883,0.0000022861,0.0000022857,0.0000022869,0.0000022890, +0.0000022906,0.0000022906,0.0000022897,0.0000022882,0.0000022866, +0.0000022854,0.0000022843,0.0000022825,0.0000022799,0.0000022782, +0.0000022781,0.0000022792,0.0000022797,0.0000022809,0.0000022814, +0.0000022808,0.0000022817,0.0000022862,0.0000022925,0.0000022962, +0.0000022976,0.0000022976,0.0000022957,0.0000022917,0.0000022854, +0.0000022769,0.0000022674,0.0000022600,0.0000022553,0.0000022544, +0.0000022557,0.0000022574,0.0000022603,0.0000022647,0.0000022692, +0.0000022720,0.0000022755,0.0000022835,0.0000022943,0.0000023041, +0.0000023120,0.0000023176,0.0000023214,0.0000023276,0.0000023369, +0.0000023469,0.0000023544,0.0000023585,0.0000023599,0.0000023601, +0.0000023604,0.0000023612,0.0000023636,0.0000023665,0.0000023679, +0.0000023671,0.0000023639,0.0000023601,0.0000023567,0.0000023532, +0.0000023496,0.0000023477,0.0000023485,0.0000023505,0.0000023522, +0.0000023541,0.0000023561,0.0000023585,0.0000023615,0.0000023645, +0.0000023676,0.0000023710,0.0000023740,0.0000023776,0.0000023817, +0.0000023866,0.0000023911,0.0000023941,0.0000023941,0.0000023911, +0.0000023874,0.0000023851,0.0000023844,0.0000023841,0.0000023837, +0.0000023845,0.0000023865,0.0000023870,0.0000023834,0.0000023736, +0.0000023629,0.0000023572,0.0000023559,0.0000023554,0.0000023530, +0.0000023475,0.0000023382,0.0000023260,0.0000023150,0.0000023111, +0.0000023120,0.0000023154,0.0000023201,0.0000023261,0.0000023348, +0.0000023468,0.0000023600,0.0000023698,0.0000023737,0.0000023733, +0.0000023737,0.0000023806,0.0000023969,0.0000024201,0.0000024455, +0.0000024680,0.0000024845,0.0000024945,0.0000025002,0.0000025035, +0.0000025046,0.0000025029,0.0000024998,0.0000024966,0.0000024947, +0.0000024944,0.0000024954,0.0000024970,0.0000024980,0.0000024969, +0.0000024946,0.0000024923,0.0000024901,0.0000024886,0.0000024881, +0.0000024881,0.0000024880,0.0000024869,0.0000024833,0.0000024767, +0.0000024677,0.0000024575,0.0000024473,0.0000024381,0.0000024313, +0.0000024251,0.0000024175,0.0000024086,0.0000024005,0.0000023952, +0.0000023928,0.0000023917,0.0000023907,0.0000023898,0.0000023880, +0.0000023845,0.0000023795,0.0000023723,0.0000023636,0.0000023553, +0.0000023485,0.0000023446,0.0000023443,0.0000023469,0.0000023510, +0.0000023550,0.0000023586,0.0000023620,0.0000023645,0.0000023655, +0.0000023651,0.0000023640,0.0000023632,0.0000023632,0.0000023644, +0.0000023663,0.0000023683,0.0000023702,0.0000023713,0.0000023728, +0.0000023746,0.0000023764,0.0000023775,0.0000023777,0.0000023764, +0.0000023738,0.0000023697,0.0000023652,0.0000023623,0.0000023591, +0.0000023589,0.0000023592,0.0000023597,0.0000023597,0.0000023594, +0.0000023597,0.0000023615,0.0000023653,0.0000023714,0.0000023786, +0.0000023856,0.0000023916,0.0000023962,0.0000023991,0.0000024003, +0.0000023996,0.0000023973,0.0000023941,0.0000023912,0.0000023895, +0.0000023882,0.0000023865,0.0000023845,0.0000023824,0.0000023796, +0.0000023756,0.0000023707,0.0000023655,0.0000023607,0.0000023568, +0.0000023536,0.0000023503,0.0000023471,0.0000023444,0.0000023414, +0.0000023384,0.0000023358,0.0000023338,0.0000023335,0.0000023349, +0.0000023381,0.0000023423,0.0000023469,0.0000023506,0.0000023525, +0.0000023529,0.0000023532,0.0000023549,0.0000023598,0.0000023676, +0.0000023768,0.0000023863,0.0000023954,0.0000024036,0.0000024104, +0.0000024167,0.0000024221,0.0000024272,0.0000024330,0.0000024391, +0.0000024436,0.0000024493,0.0000024542,0.0000024586,0.0000024629, +0.0000024670,0.0000024699,0.0000024708,0.0000024684,0.0000024631, +0.0000024547,0.0000024443,0.0000024328,0.0000024203,0.0000024076, +0.0000023961,0.0000023882,0.0000023844,0.0000023844,0.0000023852, +0.0000023867,0.0000023887,0.0000023915,0.0000023947,0.0000023974, +0.0000023997,0.0000024021,0.0000024038,0.0000024051,0.0000024083, +0.0000024156,0.0000024266,0.0000024370,0.0000024433,0.0000024460, +0.0000024474,0.0000024494,0.0000024503,0.0000024464,0.0000024371, +0.0000024257,0.0000024146,0.0000023995,0.0000023843,0.0000023794, +0.0000023779,0.0000023734,0.0000023688,0.0000023673,0.0000023642, +0.0000023500,0.0000023292,0.0000023146,0.0000023097,0.0000023099, +0.0000023127,0.0000023147,0.0000023156,0.0000023163,0.0000023171, +0.0000023195,0.0000023248,0.0000023305,0.0000023347,0.0000023339, +0.0000023315,0.0000023324,0.0000023353,0.0000023365,0.0000023327, +0.0000023240,0.0000023141,0.0000023047,0.0000022967,0.0000022889, +0.0000022800,0.0000022713,0.0000022641,0.0000022593,0.0000022572, +0.0000022585,0.0000022616,0.0000022642,0.0000022666,0.0000022705, +0.0000022806,0.0000023009,0.0000023162,0.0000023171,0.0000023151, +0.0000023153,0.0000023170,0.0000023177,0.0000023171,0.0000023219, +0.0000023271,0.0000023279,0.0000023281,0.0000023344,0.0000023488, +0.0000023654,0.0000023770,0.0000023815,0.0000023805,0.0000023755, +0.0000023673,0.0000023562,0.0000023412,0.0000023214,0.0000023010, +0.0000022871,0.0000022853,0.0000022965,0.0000023142,0.0000023284, +0.0000023358,0.0000023400,0.0000023448,0.0000023517,0.0000023584, +0.0000023614,0.0000023600,0.0000023551,0.0000023470,0.0000023352, +0.0000023193,0.0000023057,0.0000022991,0.0000022964,0.0000022942, +0.0000022903,0.0000022861,0.0000022776,0.0000022689,0.0000022674, +0.0000022719,0.0000022797,0.0000022861,0.0000022894,0.0000022932, +0.0000022956,0.0000022935,0.0000022902,0.0000022900,0.0000022916, +0.0000022924,0.0000022913,0.0000022884,0.0000022849,0.0000022813, +0.0000022782,0.0000022767,0.0000022757,0.0000022733,0.0000022670, +0.0000022569,0.0000022469,0.0000022417,0.0000022397,0.0000022372, +0.0000022353,0.0000022392,0.0000022466,0.0000022528,0.0000022568, +0.0000022584,0.0000022565,0.0000022482,0.0000022375,0.0000022329, +0.0000022351,0.0000022474,0.0000022575,0.0000022586,0.0000022588, +0.0000022610,0.0000022577,0.0000022533,0.0000022545,0.0000022630, +0.0000022733,0.0000022792,0.0000022810,0.0000022848,0.0000022928, +0.0000022998,0.0000023021,0.0000023026,0.0000022987,0.0000022888, +0.0000022736,0.0000022563,0.0000022429,0.0000022388,0.0000022419, +0.0000022416,0.0000022383,0.0000022330,0.0000022276,0.0000022226, +0.0000022185,0.0000022154,0.0000022147,0.0000022175,0.0000022216, +0.0000022255,0.0000022301,0.0000022360,0.0000022406,0.0000022442, +0.0000022500,0.0000022589,0.0000022691,0.0000022787,0.0000022864, +0.0000022918,0.0000022966,0.0000023011,0.0000023042,0.0000023055, +0.0000023062,0.0000023086,0.0000023115,0.0000023141,0.0000023152, +0.0000023150,0.0000023152,0.0000023160,0.0000023160,0.0000023157, +0.0000023175,0.0000023225,0.0000023276,0.0000023307,0.0000023308, +0.0000023273,0.0000023211,0.0000023144,0.0000023078,0.0000022990, +0.0000022874,0.0000022766,0.0000022682,0.0000022640,0.0000022633, +0.0000022666,0.0000022732,0.0000022812,0.0000022922,0.0000023081, +0.0000023193,0.0000023199,0.0000023150,0.0000023076,0.0000023064, +0.0000023171,0.0000023346,0.0000023537,0.0000023663,0.0000023690, +0.0000023684,0.0000023702,0.0000023760,0.0000023811,0.0000023839, +0.0000023859,0.0000023893,0.0000023960,0.0000024029,0.0000024069, +0.0000024095,0.0000024114,0.0000024134,0.0000024187,0.0000024257, +0.0000024280,0.0000024263,0.0000024263,0.0000024300,0.0000024322, +0.0000024318,0.0000024271,0.0000024196,0.0000024182,0.0000024209, +0.0000024209,0.0000024187,0.0000024138,0.0000024028,0.0000023909, +0.0000023812,0.0000023735,0.0000023696,0.0000023687,0.0000023676, +0.0000023662,0.0000023679,0.0000023717,0.0000023739,0.0000023746, +0.0000023787,0.0000023856,0.0000023902,0.0000023944,0.0000023955, +0.0000023955,0.0000024014,0.0000024075,0.0000024065,0.0000024014, +0.0000023986,0.0000023986,0.0000023983,0.0000023950,0.0000023879, +0.0000023833,0.0000023901,0.0000024138,0.0000024410,0.0000024583, +0.0000024644,0.0000024632,0.0000024580,0.0000024557,0.0000024563, +0.0000024572,0.0000024560,0.0000024514,0.0000024468,0.0000024439, +0.0000024432,0.0000024431,0.0000024415,0.0000024379,0.0000024345, +0.0000024319,0.0000024296,0.0000024247,0.0000024172,0.0000024086, +0.0000024000,0.0000023926,0.0000023894,0.0000023895,0.0000023937, +0.0000024032,0.0000024142,0.0000024253,0.0000024349,0.0000024423, +0.0000024467,0.0000024481,0.0000024475,0.0000024457,0.0000024418, +0.0000024368,0.0000024318,0.0000024268,0.0000024218,0.0000024173, +0.0000024125,0.0000024082,0.0000024041,0.0000023998,0.0000023965, +0.0000023935,0.0000023911,0.0000023896,0.0000023889,0.0000023897, +0.0000023916,0.0000023938,0.0000023961,0.0000023983,0.0000023997, +0.0000024001,0.0000023996,0.0000023986,0.0000023974,0.0000023960, +0.0000023943,0.0000023924,0.0000023912,0.0000023914,0.0000023924, +0.0000023939,0.0000023957,0.0000023976,0.0000023994,0.0000024007, +0.0000024015,0.0000024021,0.0000024029,0.0000024038,0.0000024047, +0.0000024053,0.0000024055,0.0000024050,0.0000024041,0.0000024033, +0.0000024026,0.0000024019,0.0000024009,0.0000023998,0.0000023990, +0.0000023982,0.0000023972,0.0000023966,0.0000023962,0.0000023960, +0.0000023964,0.0000023975,0.0000023991,0.0000024007,0.0000024021, +0.0000024034,0.0000024045,0.0000024053,0.0000024057,0.0000024054, +0.0000024047,0.0000024038,0.0000024026,0.0000024012,0.0000023999, +0.0000023991,0.0000023992,0.0000024008,0.0000024035,0.0000024062, +0.0000024088,0.0000024117,0.0000024140,0.0000024146,0.0000024147, +0.0000024149,0.0000024143,0.0000024125,0.0000024108,0.0000024087, +0.0000024034,0.0000023928,0.0000023792,0.0000023640,0.0000023477, +0.0000023347,0.0000023267,0.0000023167,0.0000023016,0.0000022895, +0.0000022833,0.0000022730,0.0000022549,0.0000022373,0.0000022292, +0.0000022297,0.0000022328,0.0000022340,0.0000022334,0.0000022326, +0.0000022319,0.0000022316,0.0000022326,0.0000022347,0.0000022355, +0.0000022331,0.0000022278,0.0000022213,0.0000022128,0.0000022010, +0.0000021908,0.0000021933,0.0000022127,0.0000022360,0.0000022472, +0.0000022475,0.0000022446,0.0000022415,0.0000022377,0.0000022301, +0.0000022177,0.0000022076,0.0000022063,0.0000022074,0.0000022012, +0.0000021891,0.0000021799,0.0000021725,0.0000021706,0.0000021846, +0.0000022031,0.0000022042,0.0000021951,0.0000021918,0.0000021964, +0.0000022088,0.0000022272,0.0000022436,0.0000022505,0.0000022522, +0.0000022588,0.0000022709,0.0000022816,0.0000022893,0.0000023004, +0.0000023214,0.0000023477,0.0000023658,0.0000023723,0.0000023754, +0.0000023822,0.0000023931,0.0000024044,0.0000024129,0.0000024171, +0.0000024177,0.0000024172,0.0000024160,0.0000024128,0.0000024080, +0.0000024049,0.0000024051,0.0000024068,0.0000024085,0.0000024092, +0.0000024078,0.0000023994,0.0000023853,0.0000023706,0.0000023572, +0.0000023433,0.0000023282,0.0000023133,0.0000022991,0.0000022859, +0.0000022754,0.0000022693,0.0000022651,0.0000022592,0.0000022517, +0.0000022450,0.0000022396,0.0000022335,0.0000022258,0.0000022181, +0.0000022113,0.0000022038,0.0000021941,0.0000021828,0.0000021701, +0.0000021557,0.0000021390,0.0000021205,0.0000021025,0.0000020876, +0.0000020770,0.0000020716,0.0000020705,0.0000020722,0.0000020756, +0.0000020814,0.0000020895,0.0000020977,0.0000021050,0.0000021112, +0.0000021153,0.0000021169,0.0000021163,0.0000021134,0.0000021091, +0.0000021057,0.0000021057,0.0000021108,0.0000021233,0.0000021414, +0.0000021606,0.0000021760,0.0000021874,0.0000021983,0.0000022124, +0.0000022287,0.0000022427,0.0000022518,0.0000022604,0.0000022744, +0.0000022909,0.0000023022,0.0000023067,0.0000023074,0.0000023035, +0.0000022952,0.0000022905,0.0000022922,0.0000022963,0.0000023012, +0.0000023122,0.0000023319,0.0000023518,0.0000023657,0.0000023788, +0.0000023947,0.0000024110,0.0000024269,0.0000024405,0.0000024498, +0.0000024563,0.0000024641,0.0000024769,0.0000024906,0.0000024962, +0.0000024934,0.0000024902,0.0000024900,0.0000024904,0.0000024882, +0.0000024851,0.0000024851,0.0000024872,0.0000024906,0.0000024929, +0.0000024943,0.0000024969,0.0000025016,0.0000025055,0.0000025059, +0.0000025032,0.0000024997,0.0000024978,0.0000024980,0.0000024990, +0.0000025001,0.0000025011,0.0000025026,0.0000025053,0.0000025101, +0.0000025142,0.0000025140,0.0000025075,0.0000024952,0.0000024833, +0.0000024720,0.0000024569,0.0000024401,0.0000024280,0.0000024204, +0.0000024113,0.0000023991,0.0000023865,0.0000023755,0.0000023668, +0.0000023637,0.0000023681,0.0000023775,0.0000023859,0.0000023919, +0.0000023958,0.0000023960,0.0000023946,0.0000023961,0.0000024020, +0.0000024092,0.0000024156,0.0000024215,0.0000024273,0.0000024324, +0.0000024362,0.0000024383,0.0000024389,0.0000024382,0.0000024358, +0.0000024320,0.0000024288,0.0000024272,0.0000024268,0.0000024273, +0.0000024278,0.0000024284,0.0000024303,0.0000024339,0.0000024396, +0.0000024483,0.0000024611,0.0000024783,0.0000024980,0.0000025170, +0.0000025320,0.0000025419,0.0000025475,0.0000025512,0.0000025548, +0.0000025585,0.0000025616,0.0000025635,0.0000025644,0.0000025649, +0.0000025651,0.0000025653,0.0000025660,0.0000025675,0.0000025693, +0.0000025716,0.0000025739,0.0000025759,0.0000025785,0.0000025819, +0.0000025838,0.0000025824,0.0000025761,0.0000025676,0.0000025624, +0.0000025599,0.0000025530,0.0000025435,0.0000025386,0.0000025303, +0.0000025092,0.0000024863,0.0000024762,0.0000024732,0.0000024661, +0.0000024601,0.0000024559,0.0000024340,0.0000023994,0.0000023785, +0.0000023739,0.0000023655,0.0000023358,0.0000022977,0.0000022750, +0.0000022681,0.0000022642,0.0000022553,0.0000022401,0.0000022218, +0.0000022049,0.0000021917,0.0000021808,0.0000021728,0.0000021682, +0.0000021675,0.0000021683,0.0000021715,0.0000021754,0.0000021815, +0.0000021905,0.0000021970,0.0000021989,0.0000021913,0.0000021801, +0.0000021702,0.0000021605,0.0000021512,0.0000021444,0.0000021381, +0.0000021321,0.0000021264,0.0000021214,0.0000021181,0.0000021155, +0.0000021131,0.0000021112,0.0000021105,0.0000021114,0.0000021136, +0.0000021151,0.0000021158,0.0000021166,0.0000021164,0.0000021159, +0.0000021144,0.0000021123,0.0000021103,0.0000021100,0.0000021107, +0.0000021135,0.0000021176,0.0000021211,0.0000021244,0.0000021276, +0.0000021305,0.0000021336,0.0000021372,0.0000021415,0.0000021465, +0.0000021516,0.0000021560,0.0000021602,0.0000021647,0.0000021698, +0.0000021749,0.0000021806,0.0000021871,0.0000021937,0.0000021995, +0.0000022047,0.0000022084,0.0000022108,0.0000022121,0.0000022122, +0.0000022110,0.0000022087,0.0000022056,0.0000022013,0.0000021971, +0.0000021940,0.0000021907,0.0000021882,0.0000021881,0.0000021895, +0.0000021904,0.0000021903,0.0000021880,0.0000021828,0.0000021766, +0.0000021721,0.0000021697,0.0000021687,0.0000021681,0.0000021674, +0.0000021664,0.0000021650,0.0000021625,0.0000021587,0.0000021549, +0.0000021529,0.0000021516,0.0000021510,0.0000021515,0.0000021528, +0.0000021538,0.0000021549,0.0000021567,0.0000021587,0.0000021616, +0.0000021662,0.0000021720,0.0000021780,0.0000021828,0.0000021858, +0.0000021883,0.0000021920,0.0000021974,0.0000022044,0.0000022144, +0.0000022271,0.0000022387,0.0000022466,0.0000022518,0.0000022549, +0.0000022554,0.0000022546,0.0000022527,0.0000022500,0.0000022463, +0.0000022425,0.0000022397,0.0000022396,0.0000022418,0.0000022450, +0.0000022480,0.0000022502,0.0000022507,0.0000022502,0.0000022493, +0.0000022483,0.0000022471,0.0000022460,0.0000022453,0.0000022452, +0.0000022457,0.0000022458,0.0000022455,0.0000022444,0.0000022432, +0.0000022417,0.0000022395,0.0000022377,0.0000022363,0.0000022353, +0.0000022344,0.0000022335,0.0000022334,0.0000022345,0.0000022367, +0.0000022385,0.0000022386,0.0000022379,0.0000022364,0.0000022331, +0.0000022288,0.0000022236,0.0000022168,0.0000022106,0.0000022038, +0.0000021915,0.0000021768,0.0000021692,0.0000021712,0.0000021812, +0.0000021902,0.0000021930,0.0000021927,0.0000021870,0.0000021796, +0.0000021788,0.0000021818,0.0000021806,0.0000021743,0.0000021699, +0.0000021697,0.0000021712,0.0000021729,0.0000021745,0.0000021758, +0.0000021771,0.0000021791,0.0000021823,0.0000021867,0.0000021925, +0.0000021997,0.0000022077,0.0000022159,0.0000022236,0.0000022289, +0.0000022307,0.0000022301,0.0000022286,0.0000022262,0.0000022220, +0.0000022156,0.0000022081,0.0000022009,0.0000021954,0.0000021922, +0.0000021909,0.0000021915,0.0000021947,0.0000021998,0.0000022061, +0.0000022130,0.0000022173,0.0000022154,0.0000022059,0.0000021914, +0.0000021710,0.0000021470,0.0000021312,0.0000021278,0.0000021288, +0.0000021290,0.0000021255,0.0000021200,0.0000021156,0.0000021139, +0.0000021131,0.0000021120,0.0000021116,0.0000021096,0.0000021062, +0.0000021154,0.0000021478,0.0000021783,0.0000021951,0.0000022089, +0.0000022210,0.0000022293,0.0000022356,0.0000022410,0.0000022468, +0.0000022533,0.0000022579,0.0000022595,0.0000022597,0.0000022595, +0.0000022594,0.0000022595,0.0000022599,0.0000022606,0.0000022623, +0.0000022652,0.0000022689,0.0000022731,0.0000022778,0.0000022829, +0.0000022876,0.0000022913,0.0000022944,0.0000022973,0.0000022987, +0.0000022975,0.0000022934,0.0000022903,0.0000022907,0.0000022948, +0.0000023014,0.0000023077,0.0000023110,0.0000023116,0.0000023115, +0.0000023108,0.0000023093,0.0000023071,0.0000023048,0.0000023030, +0.0000023014,0.0000023000,0.0000022991,0.0000022981,0.0000022960, +0.0000022918,0.0000022857,0.0000022774,0.0000022680,0.0000022606, +0.0000022546,0.0000022399,0.0000022032,0.0000021705,0.0000021541, +0.0000021564,0.0000021712,0.0000021854,0.0000021909,0.0000021927, +0.0000021967,0.0000022034,0.0000022044,0.0000021882,0.0000021691, +0.0000021721,0.0000021902,0.0000022081,0.0000022342,0.0000022680, +0.0000022879,0.0000022906,0.0000022910,0.0000022927,0.0000022955, +0.0000023007,0.0000023082,0.0000023141,0.0000023159,0.0000023165, +0.0000023202,0.0000023308,0.0000023464,0.0000023581,0.0000023601, +0.0000023512,0.0000023378,0.0000023308,0.0000023296,0.0000023283, +0.0000023243,0.0000023179,0.0000023114,0.0000023068,0.0000023037, +0.0000023016,0.0000023017,0.0000023050,0.0000023108,0.0000023162, +0.0000023182,0.0000023179,0.0000023157,0.0000023109,0.0000023045, +0.0000022979,0.0000022918,0.0000022868,0.0000022829,0.0000022801, +0.0000022794,0.0000022817,0.0000022858,0.0000022891,0.0000022905, +0.0000022909,0.0000022906,0.0000022896,0.0000022878,0.0000022865, +0.0000022853,0.0000022836,0.0000022821,0.0000022813,0.0000022816, +0.0000022816,0.0000022818,0.0000022811,0.0000022803,0.0000022807, +0.0000022842,0.0000022897,0.0000022947,0.0000022979,0.0000022994, +0.0000022989,0.0000022970,0.0000022934,0.0000022869,0.0000022782, +0.0000022700,0.0000022636,0.0000022604,0.0000022602,0.0000022602, +0.0000022611,0.0000022640,0.0000022667,0.0000022668,0.0000022659, +0.0000022678,0.0000022746,0.0000022848,0.0000022963,0.0000023067, +0.0000023129,0.0000023172,0.0000023219,0.0000023296,0.0000023394, +0.0000023491,0.0000023558,0.0000023587,0.0000023592,0.0000023593, +0.0000023609,0.0000023642,0.0000023675,0.0000023696,0.0000023699, +0.0000023677,0.0000023643,0.0000023601,0.0000023553,0.0000023516, +0.0000023513,0.0000023531,0.0000023549,0.0000023565,0.0000023577, +0.0000023584,0.0000023597,0.0000023620,0.0000023646,0.0000023675, +0.0000023702,0.0000023734,0.0000023773,0.0000023821,0.0000023881, +0.0000023931,0.0000023964,0.0000023975,0.0000023950,0.0000023892, +0.0000023842,0.0000023823,0.0000023819,0.0000023816,0.0000023823, +0.0000023843,0.0000023852,0.0000023819,0.0000023723,0.0000023611, +0.0000023539,0.0000023517,0.0000023510,0.0000023485,0.0000023432, +0.0000023342,0.0000023223,0.0000023122,0.0000023087,0.0000023101, +0.0000023156,0.0000023220,0.0000023269,0.0000023307,0.0000023365, +0.0000023455,0.0000023549,0.0000023608,0.0000023624,0.0000023628, +0.0000023678,0.0000023789,0.0000023972,0.0000024218,0.0000024480, +0.0000024689,0.0000024815,0.0000024892,0.0000024956,0.0000025003, +0.0000025014,0.0000024991,0.0000024957,0.0000024934,0.0000024931, +0.0000024947,0.0000024974,0.0000024999,0.0000025009,0.0000025005, +0.0000024990,0.0000024960,0.0000024924,0.0000024890,0.0000024866, +0.0000024847,0.0000024833,0.0000024812,0.0000024771,0.0000024705, +0.0000024617,0.0000024511,0.0000024408,0.0000024329,0.0000024271, +0.0000024216,0.0000024149,0.0000024073,0.0000024007,0.0000023965, +0.0000023943,0.0000023937,0.0000023936,0.0000023936,0.0000023939, +0.0000023936,0.0000023915,0.0000023868,0.0000023802,0.0000023720, +0.0000023633,0.0000023555,0.0000023491,0.0000023492,0.0000023475, +0.0000023479,0.0000023509,0.0000023549,0.0000023582,0.0000023601, +0.0000023608,0.0000023606,0.0000023602,0.0000023605,0.0000023614, +0.0000023631,0.0000023654,0.0000023676,0.0000023696,0.0000023720, +0.0000023745,0.0000023767,0.0000023784,0.0000023791,0.0000023787, +0.0000023767,0.0000023726,0.0000023666,0.0000023606,0.0000023563, +0.0000023520,0.0000023503,0.0000023499,0.0000023506,0.0000023519, +0.0000023538,0.0000023562,0.0000023599,0.0000023651,0.0000023711, +0.0000023773,0.0000023831,0.0000023881,0.0000023921,0.0000023945, +0.0000023945,0.0000023929,0.0000023907,0.0000023888,0.0000023865, +0.0000023833,0.0000023792,0.0000023758,0.0000023720,0.0000023672, +0.0000023613,0.0000023543,0.0000023474,0.0000023413,0.0000023363, +0.0000023325,0.0000023303,0.0000023288,0.0000023269,0.0000023243, +0.0000023216,0.0000023187,0.0000023166,0.0000023161,0.0000023175, +0.0000023205,0.0000023256,0.0000023307,0.0000023338,0.0000023344, +0.0000023338,0.0000023335,0.0000023353,0.0000023393,0.0000023449, +0.0000023519,0.0000023597,0.0000023671,0.0000023741,0.0000023811, +0.0000023873,0.0000023936,0.0000024021,0.0000024144,0.0000024297, +0.0000024438,0.0000024540,0.0000024586,0.0000024622,0.0000024644, +0.0000024662,0.0000024682,0.0000024703,0.0000024708,0.0000024687, +0.0000024626,0.0000024533,0.0000024417,0.0000024296,0.0000024182, +0.0000024090,0.0000024034,0.0000024008,0.0000023987,0.0000023971, +0.0000023966,0.0000023972,0.0000023989,0.0000024007,0.0000024025, +0.0000024044,0.0000024068,0.0000024107,0.0000024172,0.0000024253, +0.0000024327,0.0000024377,0.0000024412,0.0000024441,0.0000024481, +0.0000024524,0.0000024537,0.0000024517,0.0000024455,0.0000024343, +0.0000024218,0.0000024083,0.0000023928,0.0000023835,0.0000023814, +0.0000023787,0.0000023720,0.0000023667,0.0000023650,0.0000023578, +0.0000023363,0.0000023133,0.0000023003,0.0000022980,0.0000022997, +0.0000023025,0.0000023048,0.0000023076,0.0000023121,0.0000023175, +0.0000023241,0.0000023289,0.0000023293,0.0000023274,0.0000023275, +0.0000023313,0.0000023344,0.0000023324,0.0000023259,0.0000023180, +0.0000023115,0.0000023047,0.0000022977,0.0000022915,0.0000022836, +0.0000022752,0.0000022676,0.0000022617,0.0000022597,0.0000022601, +0.0000022627,0.0000022648,0.0000022659,0.0000022672,0.0000022691, +0.0000022763,0.0000022956,0.0000023125,0.0000023145,0.0000023138, +0.0000023139,0.0000023148,0.0000023155,0.0000023155,0.0000023219, +0.0000023278,0.0000023304,0.0000023344,0.0000023427,0.0000023535, +0.0000023659,0.0000023745,0.0000023776,0.0000023767,0.0000023731, +0.0000023681,0.0000023615,0.0000023505,0.0000023328,0.0000023085, +0.0000022878,0.0000022844,0.0000022928,0.0000023106,0.0000023265, +0.0000023336,0.0000023355,0.0000023382,0.0000023424,0.0000023462, +0.0000023470,0.0000023436,0.0000023359,0.0000023257,0.0000023158, +0.0000023070,0.0000023019,0.0000022991,0.0000022938,0.0000022845, +0.0000022743,0.0000022663,0.0000022641,0.0000022680,0.0000022759, +0.0000022827,0.0000022886,0.0000022936,0.0000022964,0.0000022959, +0.0000022925,0.0000022907,0.0000022922,0.0000022945,0.0000022948, +0.0000022932,0.0000022899,0.0000022854,0.0000022799,0.0000022749, +0.0000022717,0.0000022700,0.0000022685,0.0000022645,0.0000022555, +0.0000022462,0.0000022420,0.0000022399,0.0000022349,0.0000022312, +0.0000022352,0.0000022435,0.0000022504,0.0000022562,0.0000022594, +0.0000022574,0.0000022477,0.0000022366,0.0000022340,0.0000022399, +0.0000022509,0.0000022600,0.0000022611,0.0000022606,0.0000022624, +0.0000022593,0.0000022556,0.0000022597,0.0000022715,0.0000022813, +0.0000022851,0.0000022876,0.0000022944,0.0000023030,0.0000023058, +0.0000023026,0.0000022991,0.0000022919,0.0000022785,0.0000022601, +0.0000022423,0.0000022336,0.0000022356,0.0000022406,0.0000022432, +0.0000022410,0.0000022358,0.0000022294,0.0000022226,0.0000022173, +0.0000022143,0.0000022137,0.0000022164,0.0000022213,0.0000022262, +0.0000022313,0.0000022365,0.0000022417,0.0000022471,0.0000022553, +0.0000022666,0.0000022782,0.0000022872,0.0000022935,0.0000022982, +0.0000023024,0.0000023053,0.0000023070,0.0000023067,0.0000023062, +0.0000023077,0.0000023108,0.0000023140,0.0000023163,0.0000023176, +0.0000023187,0.0000023194,0.0000023195,0.0000023190,0.0000023195, +0.0000023231,0.0000023287,0.0000023329,0.0000023343,0.0000023328, +0.0000023274,0.0000023203,0.0000023126,0.0000023047,0.0000022952, +0.0000022841,0.0000022738,0.0000022664,0.0000022639,0.0000022653, +0.0000022704,0.0000022769,0.0000022847,0.0000022973,0.0000023117, +0.0000023171,0.0000023154,0.0000023114,0.0000023042,0.0000023031, +0.0000023165,0.0000023344,0.0000023520,0.0000023651,0.0000023689, +0.0000023684,0.0000023694,0.0000023734,0.0000023762,0.0000023777, +0.0000023804,0.0000023841,0.0000023903,0.0000023987,0.0000024056, +0.0000024096,0.0000024114,0.0000024137,0.0000024205,0.0000024273, +0.0000024285,0.0000024263,0.0000024266,0.0000024296,0.0000024310, +0.0000024297,0.0000024233,0.0000024174,0.0000024183,0.0000024211, +0.0000024198,0.0000024184,0.0000024121,0.0000024000,0.0000023893, +0.0000023797,0.0000023726,0.0000023707,0.0000023710,0.0000023705, +0.0000023702,0.0000023722,0.0000023744,0.0000023755,0.0000023747, +0.0000023771,0.0000023835,0.0000023877,0.0000023915,0.0000023936, +0.0000023938,0.0000023973,0.0000024039,0.0000024054,0.0000024018, +0.0000023977,0.0000023962,0.0000023956,0.0000023929,0.0000023876, +0.0000023812,0.0000023773,0.0000023797,0.0000023932,0.0000024132, +0.0000024319,0.0000024444,0.0000024507,0.0000024533,0.0000024547, +0.0000024559,0.0000024560,0.0000024535,0.0000024490,0.0000024442, +0.0000024403,0.0000024374,0.0000024348,0.0000024318,0.0000024288, +0.0000024272,0.0000024271,0.0000024273,0.0000024262,0.0000024239, +0.0000024215,0.0000024140,0.0000024056,0.0000023979,0.0000023923, +0.0000023912,0.0000023937,0.0000024012,0.0000024108,0.0000024203, +0.0000024286,0.0000024353,0.0000024399,0.0000024426,0.0000024429, +0.0000024412,0.0000024376,0.0000024340,0.0000024283,0.0000024225, +0.0000024163,0.0000024106,0.0000024052,0.0000024004,0.0000023960, +0.0000023918,0.0000023880,0.0000023854,0.0000023832,0.0000023818, +0.0000023810,0.0000023811,0.0000023822,0.0000023835,0.0000023854, +0.0000023870,0.0000023879,0.0000023886,0.0000023885,0.0000023879, +0.0000023865,0.0000023841,0.0000023822,0.0000023815,0.0000023816, +0.0000023821,0.0000023833,0.0000023852,0.0000023875,0.0000023895, +0.0000023910,0.0000023923,0.0000023939,0.0000023956,0.0000023974, +0.0000023989,0.0000024001,0.0000024009,0.0000024013,0.0000024014, +0.0000024012,0.0000024008,0.0000023999,0.0000023988,0.0000023977, +0.0000023964,0.0000023948,0.0000023931,0.0000023913,0.0000023899, +0.0000023888,0.0000023884,0.0000023888,0.0000023896,0.0000023906, +0.0000023918,0.0000023928,0.0000023939,0.0000023950,0.0000023958, +0.0000023961,0.0000023960,0.0000023957,0.0000023952,0.0000023947, +0.0000023944,0.0000023947,0.0000023961,0.0000023984,0.0000024010, +0.0000024030,0.0000024049,0.0000024072,0.0000024081,0.0000024078, +0.0000024082,0.0000024088,0.0000024083,0.0000024075,0.0000024073, +0.0000024062,0.0000024007,0.0000023886,0.0000023740,0.0000023583, +0.0000023417,0.0000023291,0.0000023204,0.0000023071,0.0000022919, +0.0000022840,0.0000022775,0.0000022631,0.0000022457,0.0000022360, +0.0000022347,0.0000022361,0.0000022371,0.0000022363,0.0000022339, +0.0000022319,0.0000022311,0.0000022315,0.0000022325,0.0000022330, +0.0000022321,0.0000022288,0.0000022231,0.0000022142,0.0000022028, +0.0000021957,0.0000022000,0.0000022200,0.0000022408,0.0000022491, +0.0000022487,0.0000022459,0.0000022421,0.0000022382,0.0000022337, +0.0000022259,0.0000022145,0.0000022060,0.0000022056,0.0000022076, +0.0000022030,0.0000021906,0.0000021795,0.0000021706,0.0000021673, +0.0000021794,0.0000021964,0.0000021988,0.0000021917,0.0000021886, +0.0000021928,0.0000022044,0.0000022230,0.0000022416,0.0000022505, +0.0000022521,0.0000022574,0.0000022696,0.0000022828,0.0000022923, +0.0000023003,0.0000023150,0.0000023397,0.0000023629,0.0000023739, +0.0000023763,0.0000023792,0.0000023864,0.0000023964,0.0000024055, +0.0000024099,0.0000024104,0.0000024100,0.0000024074,0.0000024024, +0.0000023974,0.0000023951,0.0000023956,0.0000023966,0.0000023969, +0.0000023966,0.0000023924,0.0000023813,0.0000023667,0.0000023525, +0.0000023395,0.0000023268,0.0000023150,0.0000023034,0.0000022911, +0.0000022776,0.0000022654,0.0000022562,0.0000022487,0.0000022412, +0.0000022340,0.0000022277,0.0000022219,0.0000022149,0.0000022062, +0.0000021977,0.0000021905,0.0000021828,0.0000021731,0.0000021608, +0.0000021462,0.0000021302,0.0000021136,0.0000020972,0.0000020834, +0.0000020739,0.0000020683,0.0000020671,0.0000020687,0.0000020715, +0.0000020745,0.0000020791,0.0000020854,0.0000020921,0.0000020988, +0.0000021052,0.0000021099,0.0000021122,0.0000021121,0.0000021096, +0.0000021044,0.0000020985,0.0000020943,0.0000020946,0.0000021018, +0.0000021166,0.0000021364,0.0000021563,0.0000021731,0.0000021867, +0.0000021987,0.0000022114,0.0000022249,0.0000022361,0.0000022443, +0.0000022553,0.0000022732,0.0000022920,0.0000023033,0.0000023060, +0.0000023027,0.0000022934,0.0000022849,0.0000022828,0.0000022873, +0.0000022928,0.0000023007,0.0000023169,0.0000023388,0.0000023564, +0.0000023695,0.0000023845,0.0000024004,0.0000024154,0.0000024303, +0.0000024436,0.0000024533,0.0000024608,0.0000024714,0.0000024862, +0.0000024964,0.0000024969,0.0000024925,0.0000024904,0.0000024909, +0.0000024905,0.0000024877,0.0000024856,0.0000024867,0.0000024895, +0.0000024926,0.0000024942,0.0000024960,0.0000024994,0.0000025034, +0.0000025048,0.0000025028,0.0000024989,0.0000024960,0.0000024949, +0.0000024952,0.0000024963,0.0000024973,0.0000024994,0.0000025041, +0.0000025100,0.0000025126,0.0000025092,0.0000024986,0.0000024856, +0.0000024729,0.0000024572,0.0000024395,0.0000024268,0.0000024187, +0.0000024078,0.0000023932,0.0000023796,0.0000023691,0.0000023617, +0.0000023588,0.0000023632,0.0000023729,0.0000023826,0.0000023874, +0.0000023903,0.0000023928,0.0000023934,0.0000023933,0.0000023950, +0.0000023993,0.0000024041,0.0000024083,0.0000024124,0.0000024163, +0.0000024186,0.0000024191,0.0000024181,0.0000024165,0.0000024143, +0.0000024105,0.0000024058,0.0000024023,0.0000024011,0.0000024014, +0.0000024026,0.0000024045,0.0000024072,0.0000024115,0.0000024171, +0.0000024230,0.0000024290,0.0000024357,0.0000024445,0.0000024573, +0.0000024746,0.0000024948,0.0000025147,0.0000025307,0.0000025413, +0.0000025480,0.0000025527,0.0000025566,0.0000025598,0.0000025622, +0.0000025634,0.0000025636,0.0000025632,0.0000025627,0.0000025627, +0.0000025636,0.0000025655,0.0000025680,0.0000025705,0.0000025736, +0.0000025767,0.0000025778,0.0000025757,0.0000025691,0.0000025612, +0.0000025571,0.0000025558,0.0000025503,0.0000025421,0.0000025385, +0.0000025318,0.0000025121,0.0000024890,0.0000024776,0.0000024753, +0.0000024695,0.0000024615,0.0000024582,0.0000024492,0.0000024196, +0.0000023883,0.0000023748,0.0000023724,0.0000023613,0.0000023302, +0.0000022946,0.0000022740,0.0000022670,0.0000022613,0.0000022508, +0.0000022354,0.0000022172,0.0000021997,0.0000021857,0.0000021746, +0.0000021679,0.0000021673,0.0000021687,0.0000021720,0.0000021763, +0.0000021795,0.0000021830,0.0000021903,0.0000021982,0.0000021994, +0.0000021916,0.0000021790,0.0000021671,0.0000021567,0.0000021485, +0.0000021428,0.0000021373,0.0000021310,0.0000021248,0.0000021203, +0.0000021179,0.0000021162,0.0000021144,0.0000021127,0.0000021119, +0.0000021133,0.0000021163,0.0000021175,0.0000021176,0.0000021169, +0.0000021154,0.0000021140,0.0000021116,0.0000021081,0.0000021050, +0.0000021031,0.0000021042,0.0000021079,0.0000021120,0.0000021149, +0.0000021172,0.0000021196,0.0000021225,0.0000021258,0.0000021293, +0.0000021330,0.0000021365,0.0000021395,0.0000021429,0.0000021476, +0.0000021534,0.0000021594,0.0000021653,0.0000021716,0.0000021782, +0.0000021838,0.0000021886,0.0000021929,0.0000021962,0.0000021982, +0.0000021989,0.0000021982,0.0000021959,0.0000021929,0.0000021894, +0.0000021857,0.0000021829,0.0000021805,0.0000021790,0.0000021794, +0.0000021815,0.0000021834,0.0000021844,0.0000021843,0.0000021819, +0.0000021772,0.0000021723,0.0000021687,0.0000021668,0.0000021659, +0.0000021650,0.0000021643,0.0000021634,0.0000021616,0.0000021585, +0.0000021552,0.0000021530,0.0000021523,0.0000021523,0.0000021526, +0.0000021532,0.0000021538,0.0000021539,0.0000021543,0.0000021548, +0.0000021557,0.0000021580,0.0000021625,0.0000021683,0.0000021745, +0.0000021799,0.0000021831,0.0000021851,0.0000021877,0.0000021910, +0.0000021964,0.0000022052,0.0000022172,0.0000022302,0.0000022411, +0.0000022485,0.0000022532,0.0000022556,0.0000022559,0.0000022546, +0.0000022523,0.0000022502,0.0000022479,0.0000022454,0.0000022432, +0.0000022429,0.0000022442,0.0000022456,0.0000022469,0.0000022475, +0.0000022477,0.0000022477,0.0000022473,0.0000022464,0.0000022451, +0.0000022438,0.0000022434,0.0000022435,0.0000022438,0.0000022438, +0.0000022433,0.0000022424,0.0000022411,0.0000022396,0.0000022379, +0.0000022367,0.0000022362,0.0000022355,0.0000022346,0.0000022341, +0.0000022346,0.0000022355,0.0000022356,0.0000022347,0.0000022331, +0.0000022305,0.0000022269,0.0000022223,0.0000022165,0.0000022115, +0.0000022076,0.0000022001,0.0000021860,0.0000021723,0.0000021678, +0.0000021726,0.0000021829,0.0000021892,0.0000021900,0.0000021874, +0.0000021793,0.0000021738,0.0000021748,0.0000021767,0.0000021749, +0.0000021703,0.0000021680,0.0000021684,0.0000021692,0.0000021696, +0.0000021702,0.0000021718,0.0000021743,0.0000021778,0.0000021819, +0.0000021864,0.0000021913,0.0000021970,0.0000022034,0.0000022104, +0.0000022184,0.0000022253,0.0000022289,0.0000022294,0.0000022282, +0.0000022258,0.0000022218,0.0000022160,0.0000022097,0.0000022040, +0.0000021997,0.0000021972,0.0000021955,0.0000021945,0.0000021951, +0.0000021981,0.0000022029,0.0000022097,0.0000022151,0.0000022156, +0.0000022092,0.0000021977,0.0000021827,0.0000021622,0.0000021415, +0.0000021298,0.0000021277,0.0000021273,0.0000021245,0.0000021191, +0.0000021140,0.0000021117,0.0000021113,0.0000021099,0.0000021085, +0.0000021083,0.0000021039,0.0000021037,0.0000021277,0.0000021638, +0.0000021876,0.0000022023,0.0000022160,0.0000022264,0.0000022331, +0.0000022388,0.0000022453,0.0000022523,0.0000022573,0.0000022599, +0.0000022617,0.0000022632,0.0000022636,0.0000022633,0.0000022628, +0.0000022625,0.0000022629,0.0000022654,0.0000022703,0.0000022767, +0.0000022832,0.0000022883,0.0000022916,0.0000022932,0.0000022943, +0.0000022948,0.0000022932,0.0000022891,0.0000022850,0.0000022838, +0.0000022853,0.0000022894,0.0000022950,0.0000023007,0.0000023047, +0.0000023069,0.0000023078,0.0000023076,0.0000023064,0.0000023045, +0.0000023020,0.0000022999,0.0000022985,0.0000022974,0.0000022961, +0.0000022944,0.0000022921,0.0000022883,0.0000022828,0.0000022755, +0.0000022679,0.0000022617,0.0000022545,0.0000022362,0.0000021902, +0.0000021653,0.0000021582,0.0000021635,0.0000021777,0.0000021883, +0.0000021933,0.0000021969,0.0000022002,0.0000022052,0.0000022068, +0.0000021918,0.0000021723,0.0000021726,0.0000021889,0.0000022084, +0.0000022372,0.0000022719,0.0000022896,0.0000022907,0.0000022900, +0.0000022907,0.0000022951,0.0000023026,0.0000023101,0.0000023140, +0.0000023146,0.0000023158,0.0000023211,0.0000023334,0.0000023483, +0.0000023580,0.0000023593,0.0000023510,0.0000023403,0.0000023358, +0.0000023350,0.0000023328,0.0000023282,0.0000023216,0.0000023144, +0.0000023070,0.0000023007,0.0000022982,0.0000023012,0.0000023073, +0.0000023132,0.0000023167,0.0000023168,0.0000023143,0.0000023108, +0.0000023063,0.0000023006,0.0000022943,0.0000022890,0.0000022848, +0.0000022810,0.0000022778,0.0000022767,0.0000022787,0.0000022837, +0.0000022881,0.0000022903,0.0000022918,0.0000022936,0.0000022943, +0.0000022928,0.0000022914,0.0000022910,0.0000022904,0.0000022889, +0.0000022871,0.0000022863,0.0000022858,0.0000022849,0.0000022833, +0.0000022823,0.0000022819,0.0000022833,0.0000022866,0.0000022908, +0.0000022955,0.0000022993,0.0000022997,0.0000022992,0.0000022975, +0.0000022937,0.0000022881,0.0000022817,0.0000022750,0.0000022701, +0.0000022686,0.0000022677,0.0000022678,0.0000022685,0.0000022692, +0.0000022676,0.0000022647,0.0000022631,0.0000022631,0.0000022673, +0.0000022749,0.0000022863,0.0000022973,0.0000023067,0.0000023132, +0.0000023181,0.0000023238,0.0000023318,0.0000023416,0.0000023505, +0.0000023559,0.0000023577,0.0000023587,0.0000023608,0.0000023643, +0.0000023682,0.0000023710,0.0000023719,0.0000023714,0.0000023683, +0.0000023633,0.0000023577,0.0000023548,0.0000023552,0.0000023567, +0.0000023582,0.0000023596,0.0000023597,0.0000023593,0.0000023601, +0.0000023618,0.0000023644,0.0000023670,0.0000023697,0.0000023734, +0.0000023772,0.0000023824,0.0000023883,0.0000023934,0.0000023971, +0.0000023990,0.0000023985,0.0000023933,0.0000023861,0.0000023815, +0.0000023798,0.0000023792,0.0000023798,0.0000023818,0.0000023827, +0.0000023803,0.0000023721,0.0000023607,0.0000023517,0.0000023476, +0.0000023462,0.0000023438,0.0000023387,0.0000023307,0.0000023198, +0.0000023107,0.0000023070,0.0000023083,0.0000023145,0.0000023221, +0.0000023275,0.0000023294,0.0000023305,0.0000023336,0.0000023390, +0.0000023447,0.0000023502,0.0000023552,0.0000023599,0.0000023664, +0.0000023777,0.0000023964,0.0000024212,0.0000024456,0.0000024631, +0.0000024742,0.0000024831,0.0000024911,0.0000024963,0.0000024970, +0.0000024946,0.0000024929,0.0000024930,0.0000024950,0.0000024979, +0.0000025007,0.0000025029,0.0000025040,0.0000025035,0.0000025010, +0.0000024968,0.0000024918,0.0000024867,0.0000024824,0.0000024796, +0.0000024778,0.0000024750,0.0000024701,0.0000024627,0.0000024525, +0.0000024417,0.0000024322,0.0000024254,0.0000024205,0.0000024164, +0.0000024111,0.0000024058,0.0000024013,0.0000023980,0.0000023963, +0.0000023957,0.0000023962,0.0000023984,0.0000024005,0.0000024014, +0.0000024008,0.0000023988,0.0000023946,0.0000023881,0.0000023801, +0.0000023712,0.0000023640,0.0000023566,0.0000023498,0.0000023494, +0.0000023473,0.0000023475,0.0000023496,0.0000023525,0.0000023549, +0.0000023565,0.0000023582,0.0000023594,0.0000023606,0.0000023618, +0.0000023630,0.0000023640,0.0000023653,0.0000023676,0.0000023707, +0.0000023741,0.0000023767,0.0000023787,0.0000023785,0.0000023778, +0.0000023746,0.0000023688,0.0000023615,0.0000023544,0.0000023483, +0.0000023453,0.0000023437,0.0000023443,0.0000023472,0.0000023503, +0.0000023532,0.0000023566,0.0000023604,0.0000023642,0.0000023682, +0.0000023727,0.0000023778,0.0000023825,0.0000023855,0.0000023865, +0.0000023862,0.0000023853,0.0000023836,0.0000023806,0.0000023765, +0.0000023722,0.0000023679,0.0000023630,0.0000023568,0.0000023493, +0.0000023412,0.0000023342,0.0000023293,0.0000023265,0.0000023256, +0.0000023252,0.0000023243,0.0000023225,0.0000023201,0.0000023166, +0.0000023124,0.0000023080,0.0000023057,0.0000023058,0.0000023083, +0.0000023124,0.0000023159,0.0000023176,0.0000023180,0.0000023181, +0.0000023190,0.0000023210,0.0000023241,0.0000023287,0.0000023342, +0.0000023397,0.0000023452,0.0000023505,0.0000023551,0.0000023604, +0.0000023677,0.0000023796,0.0000023952,0.0000024118,0.0000024281, +0.0000024432,0.0000024552,0.0000024624,0.0000024645,0.0000024640, +0.0000024638,0.0000024645,0.0000024653,0.0000024642,0.0000024621, +0.0000024573,0.0000024499,0.0000024404,0.0000024304,0.0000024233, +0.0000024200,0.0000024185,0.0000024174,0.0000024161,0.0000024146, +0.0000024136,0.0000024129,0.0000024127,0.0000024135,0.0000024161, +0.0000024197,0.0000024244,0.0000024286,0.0000024315,0.0000024339, +0.0000024371,0.0000024417,0.0000024477,0.0000024523,0.0000024537, +0.0000024526,0.0000024489,0.0000024403,0.0000024280,0.0000024148, +0.0000024016,0.0000023902,0.0000023851,0.0000023834,0.0000023793, +0.0000023713,0.0000023654,0.0000023622,0.0000023496,0.0000023252, +0.0000023043,0.0000022973,0.0000022978,0.0000023009,0.0000023035, +0.0000023059,0.0000023088,0.0000023135,0.0000023190,0.0000023215, +0.0000023216,0.0000023232,0.0000023267,0.0000023294,0.0000023272, +0.0000023216,0.0000023165,0.0000023132,0.0000023101,0.0000023052, +0.0000022992,0.0000022941,0.0000022883,0.0000022813,0.0000022741, +0.0000022679,0.0000022642,0.0000022632,0.0000022643,0.0000022654, +0.0000022661,0.0000022660,0.0000022666,0.0000022666,0.0000022725, +0.0000022925,0.0000023110,0.0000023144,0.0000023143,0.0000023129, +0.0000023131,0.0000023147,0.0000023154,0.0000023226,0.0000023302, +0.0000023345,0.0000023411,0.0000023493,0.0000023584,0.0000023663, +0.0000023705,0.0000023710,0.0000023689,0.0000023660,0.0000023628, +0.0000023581,0.0000023509,0.0000023398,0.0000023188,0.0000022954, +0.0000022866,0.0000022923,0.0000023074,0.0000023225,0.0000023315, +0.0000023353,0.0000023360,0.0000023367,0.0000023368,0.0000023345, +0.0000023303,0.0000023246,0.0000023196,0.0000023141,0.0000023072, +0.0000023008,0.0000022898,0.0000022755,0.0000022655,0.0000022626, +0.0000022643,0.0000022696,0.0000022771,0.0000022847,0.0000022928, +0.0000022970,0.0000022969,0.0000022955,0.0000022942,0.0000022942, +0.0000022959,0.0000022968,0.0000022959,0.0000022939,0.0000022904, +0.0000022851,0.0000022792,0.0000022738,0.0000022693,0.0000022657, +0.0000022639,0.0000022613,0.0000022534,0.0000022445,0.0000022410, +0.0000022389,0.0000022327,0.0000022282,0.0000022320,0.0000022403, +0.0000022481,0.0000022555,0.0000022594,0.0000022567,0.0000022451, +0.0000022353,0.0000022354,0.0000022439,0.0000022540,0.0000022610, +0.0000022638,0.0000022643,0.0000022638,0.0000022603,0.0000022595, +0.0000022664,0.0000022778,0.0000022863,0.0000022901,0.0000022952, +0.0000023044,0.0000023115,0.0000023114,0.0000023049,0.0000022955, +0.0000022842,0.0000022671,0.0000022457,0.0000022287,0.0000022249, +0.0000022324,0.0000022405,0.0000022440,0.0000022429,0.0000022379, +0.0000022303,0.0000022223,0.0000022168,0.0000022143,0.0000022140, +0.0000022166,0.0000022214,0.0000022269,0.0000022326,0.0000022385, +0.0000022445,0.0000022521,0.0000022621,0.0000022744,0.0000022863, +0.0000022945,0.0000022993,0.0000023033,0.0000023068,0.0000023086, +0.0000023072,0.0000023052,0.0000023043,0.0000023062,0.0000023100, +0.0000023142,0.0000023177,0.0000023205,0.0000023223,0.0000023229, +0.0000023228,0.0000023225,0.0000023227,0.0000023248,0.0000023294, +0.0000023341,0.0000023364,0.0000023364,0.0000023331,0.0000023272, +0.0000023198,0.0000023108,0.0000023020,0.0000022928,0.0000022828, +0.0000022733,0.0000022670,0.0000022651,0.0000022676,0.0000022727, +0.0000022784,0.0000022869,0.0000023000,0.0000023108,0.0000023129, +0.0000023115,0.0000023079,0.0000023007,0.0000023001,0.0000023158, +0.0000023339,0.0000023492,0.0000023624,0.0000023684,0.0000023686, +0.0000023687,0.0000023709,0.0000023725,0.0000023736,0.0000023765, +0.0000023803,0.0000023855,0.0000023937,0.0000024022,0.0000024079, +0.0000024101,0.0000024135,0.0000024216,0.0000024282,0.0000024287, +0.0000024260,0.0000024262,0.0000024285,0.0000024295,0.0000024266, +0.0000024193,0.0000024163,0.0000024193,0.0000024209,0.0000024195, +0.0000024180,0.0000024091,0.0000023975,0.0000023872,0.0000023774, +0.0000023726,0.0000023723,0.0000023728,0.0000023723,0.0000023726, +0.0000023750,0.0000023762,0.0000023763,0.0000023745,0.0000023756, +0.0000023813,0.0000023854,0.0000023887,0.0000023915,0.0000023915, +0.0000023938,0.0000024003,0.0000024038,0.0000024021,0.0000023982, +0.0000023958,0.0000023948,0.0000023924,0.0000023867,0.0000023804, +0.0000023762,0.0000023732,0.0000023709,0.0000023732,0.0000023831, +0.0000023975,0.0000024112,0.0000024210,0.0000024272,0.0000024313, +0.0000024338,0.0000024342,0.0000024324,0.0000024287,0.0000024237, +0.0000024180,0.0000024124,0.0000024074,0.0000024035,0.0000024019, +0.0000024026,0.0000024057,0.0000024097,0.0000024141,0.0000024178, +0.0000024198,0.0000024190,0.0000024163,0.0000024099,0.0000024021, +0.0000023960,0.0000023934,0.0000023952,0.0000023990,0.0000024054, +0.0000024116,0.0000024176,0.0000024231,0.0000024280,0.0000024317, +0.0000024334,0.0000024331,0.0000024308,0.0000024274,0.0000024219, +0.0000024172,0.0000024111,0.0000024056,0.0000024003,0.0000023955, +0.0000023916,0.0000023883,0.0000023859,0.0000023841,0.0000023824, +0.0000023803,0.0000023785,0.0000023762,0.0000023744,0.0000023724, +0.0000023721,0.0000023721,0.0000023722,0.0000023725,0.0000023718, +0.0000023703,0.0000023691,0.0000023684,0.0000023679,0.0000023678, +0.0000023684,0.0000023700,0.0000023726,0.0000023752,0.0000023775, +0.0000023796,0.0000023818,0.0000023842,0.0000023867,0.0000023890, +0.0000023912,0.0000023932,0.0000023948,0.0000023962,0.0000023973, +0.0000023978,0.0000023976,0.0000023968,0.0000023957,0.0000023942, +0.0000023922,0.0000023897,0.0000023868,0.0000023841,0.0000023817, +0.0000023799,0.0000023792,0.0000023794,0.0000023803,0.0000023818, +0.0000023835,0.0000023853,0.0000023874,0.0000023892,0.0000023905, +0.0000023913,0.0000023918,0.0000023921,0.0000023922,0.0000023922, +0.0000023927,0.0000023941,0.0000023963,0.0000023989,0.0000024009, +0.0000024023,0.0000024039,0.0000024048,0.0000024036,0.0000024017, +0.0000024012,0.0000024018,0.0000024018,0.0000024023,0.0000024039, +0.0000024033,0.0000023968,0.0000023836,0.0000023684,0.0000023521, +0.0000023353,0.0000023233,0.0000023129,0.0000022979,0.0000022855, +0.0000022789,0.0000022687,0.0000022539,0.0000022431,0.0000022393, +0.0000022394,0.0000022402,0.0000022400,0.0000022376,0.0000022341, +0.0000022318,0.0000022316,0.0000022317,0.0000022312,0.0000022304, +0.0000022286,0.0000022244,0.0000022168,0.0000022071,0.0000022026, +0.0000022102,0.0000022289,0.0000022447,0.0000022496,0.0000022494, +0.0000022476,0.0000022444,0.0000022398,0.0000022351,0.0000022297, +0.0000022215,0.0000022112,0.0000022041,0.0000022048,0.0000022079, +0.0000022044,0.0000021914,0.0000021789,0.0000021693,0.0000021649, +0.0000021739,0.0000021890,0.0000021929,0.0000021877,0.0000021846, +0.0000021889,0.0000022004,0.0000022188,0.0000022389,0.0000022505, +0.0000022528,0.0000022565,0.0000022678,0.0000022829,0.0000022950, +0.0000023021,0.0000023110,0.0000023304,0.0000023553,0.0000023716, +0.0000023760,0.0000023765,0.0000023807,0.0000023888,0.0000023965, +0.0000024002,0.0000024006,0.0000023986,0.0000023939,0.0000023884, +0.0000023847,0.0000023840,0.0000023851,0.0000023858,0.0000023857, +0.0000023836,0.0000023767,0.0000023643,0.0000023506,0.0000023381, +0.0000023269,0.0000023172,0.0000023079,0.0000022970,0.0000022833, +0.0000022678,0.0000022533,0.0000022420,0.0000022331,0.0000022247, +0.0000022162,0.0000022087,0.0000022018,0.0000021936,0.0000021837, +0.0000021740,0.0000021654,0.0000021564,0.0000021454,0.0000021323, +0.0000021186,0.0000021060,0.0000020947,0.0000020846,0.0000020766, +0.0000020704,0.0000020675,0.0000020680,0.0000020707,0.0000020737, +0.0000020766,0.0000020806,0.0000020865,0.0000020915,0.0000020962, +0.0000021011,0.0000021053,0.0000021079,0.0000021086,0.0000021068, +0.0000021019,0.0000020954,0.0000020888,0.0000020851,0.0000020866, +0.0000020951,0.0000021109,0.0000021311,0.0000021525,0.0000021720, +0.0000021874,0.0000021990,0.0000022092,0.0000022198,0.0000022292, +0.0000022384,0.0000022537,0.0000022758,0.0000022952,0.0000023038, +0.0000023025,0.0000022936,0.0000022817,0.0000022753,0.0000022779, +0.0000022845,0.0000022921,0.0000023042,0.0000023251,0.0000023467, +0.0000023616,0.0000023750,0.0000023905,0.0000024054,0.0000024202, +0.0000024358,0.0000024494,0.0000024584,0.0000024668,0.0000024806, +0.0000024945,0.0000024981,0.0000024952,0.0000024917,0.0000024917, +0.0000024926,0.0000024914,0.0000024891,0.0000024883,0.0000024901, +0.0000024933,0.0000024955,0.0000024966,0.0000024983,0.0000025011, +0.0000025027,0.0000025017,0.0000024982,0.0000024947,0.0000024928, +0.0000024926,0.0000024935,0.0000024946,0.0000024981,0.0000025049, +0.0000025109,0.0000025115,0.0000025044,0.0000024913,0.0000024773, +0.0000024613,0.0000024422,0.0000024269,0.0000024181,0.0000024072, +0.0000023905,0.0000023746,0.0000023635,0.0000023565,0.0000023536, +0.0000023568,0.0000023657,0.0000023777,0.0000023853,0.0000023876, +0.0000023891,0.0000023908,0.0000023914,0.0000023913,0.0000023918, +0.0000023934,0.0000023959,0.0000023988,0.0000024020,0.0000024040, +0.0000024038,0.0000024016,0.0000023983,0.0000023951,0.0000023917, +0.0000023874,0.0000023826,0.0000023786,0.0000023763,0.0000023752, +0.0000023754,0.0000023775,0.0000023816,0.0000023878,0.0000023957, +0.0000024039,0.0000024115,0.0000024178,0.0000024230,0.0000024285, +0.0000024374,0.0000024520,0.0000024720,0.0000024949,0.0000025167, +0.0000025336,0.0000025445,0.0000025506,0.0000025541,0.0000025564, +0.0000025581,0.0000025587,0.0000025586,0.0000025581,0.0000025578, +0.0000025581,0.0000025596,0.0000025620,0.0000025649,0.0000025681, +0.0000025705,0.0000025708,0.0000025676,0.0000025606,0.0000025531, +0.0000025499,0.0000025496,0.0000025453,0.0000025386,0.0000025364, +0.0000025314,0.0000025129,0.0000024898,0.0000024771,0.0000024743, +0.0000024700,0.0000024616,0.0000024570,0.0000024551,0.0000024386, +0.0000024058,0.0000023801,0.0000023720,0.0000023702,0.0000023581, +0.0000023288,0.0000022951,0.0000022741,0.0000022652,0.0000022579, +0.0000022466,0.0000022311,0.0000022136,0.0000021961,0.0000021815, +0.0000021709,0.0000021663,0.0000021672,0.0000021702,0.0000021757, +0.0000021810,0.0000021826,0.0000021841,0.0000021894,0.0000021973, +0.0000021991,0.0000021906,0.0000021756,0.0000021610,0.0000021492, +0.0000021431,0.0000021388,0.0000021345,0.0000021290,0.0000021240, +0.0000021209,0.0000021190,0.0000021178,0.0000021161,0.0000021140, +0.0000021132,0.0000021152,0.0000021180,0.0000021192,0.0000021182, +0.0000021164,0.0000021147,0.0000021133,0.0000021106,0.0000021065, +0.0000021026,0.0000021006,0.0000021024,0.0000021057,0.0000021085, +0.0000021105,0.0000021119,0.0000021136,0.0000021160,0.0000021191, +0.0000021225,0.0000021258,0.0000021283,0.0000021302,0.0000021334, +0.0000021379,0.0000021443,0.0000021515,0.0000021588,0.0000021653, +0.0000021709,0.0000021748,0.0000021781,0.0000021814,0.0000021836, +0.0000021845,0.0000021842,0.0000021824,0.0000021797,0.0000021773, +0.0000021750,0.0000021730,0.0000021718,0.0000021715,0.0000021727, +0.0000021747,0.0000021769,0.0000021787,0.0000021799,0.0000021799, +0.0000021778,0.0000021742,0.0000021705,0.0000021682,0.0000021667, +0.0000021651,0.0000021638,0.0000021631,0.0000021617,0.0000021596, +0.0000021569,0.0000021542,0.0000021529,0.0000021530,0.0000021539, +0.0000021545,0.0000021549,0.0000021550,0.0000021546,0.0000021538, +0.0000021530,0.0000021530,0.0000021548,0.0000021586,0.0000021635, +0.0000021694,0.0000021746,0.0000021782,0.0000021812,0.0000021834, +0.0000021852,0.0000021886,0.0000021950,0.0000022051,0.0000022183, +0.0000022313,0.0000022423,0.0000022503,0.0000022548,0.0000022564, +0.0000022558,0.0000022541,0.0000022535,0.0000022530,0.0000022510, +0.0000022483,0.0000022461,0.0000022446,0.0000022440,0.0000022434, +0.0000022436,0.0000022441,0.0000022447,0.0000022451,0.0000022449, +0.0000022440,0.0000022431,0.0000022425,0.0000022425,0.0000022427, +0.0000022428,0.0000022425,0.0000022417,0.0000022410,0.0000022397, +0.0000022382,0.0000022374,0.0000022372,0.0000022364,0.0000022347, +0.0000022331,0.0000022324,0.0000022320,0.0000022308,0.0000022287, +0.0000022260,0.0000022228,0.0000022191,0.0000022143,0.0000022102, +0.0000022077,0.0000022043,0.0000021950,0.0000021799,0.0000021685, +0.0000021672,0.0000021750,0.0000021840,0.0000021878,0.0000021878, +0.0000021819,0.0000021724,0.0000021679,0.0000021696,0.0000021717, +0.0000021712,0.0000021688,0.0000021675,0.0000021681,0.0000021686, +0.0000021679,0.0000021676,0.0000021689,0.0000021720,0.0000021762, +0.0000021803,0.0000021842,0.0000021889,0.0000021948,0.0000022011, +0.0000022074,0.0000022143,0.0000022202,0.0000022244,0.0000022262, +0.0000022264,0.0000022247,0.0000022209,0.0000022155,0.0000022097, +0.0000022049,0.0000022013,0.0000021996,0.0000021993,0.0000021991, +0.0000021989,0.0000021994,0.0000022020,0.0000022066,0.0000022116, +0.0000022129,0.0000022099,0.0000022013,0.0000021899,0.0000021752, +0.0000021558,0.0000021379,0.0000021284,0.0000021253,0.0000021226, +0.0000021179,0.0000021124,0.0000021090,0.0000021080,0.0000021068, +0.0000021047,0.0000021045,0.0000021038,0.0000021023,0.0000021113, +0.0000021443,0.0000021768,0.0000021952,0.0000022097,0.0000022226, +0.0000022308,0.0000022367,0.0000022435,0.0000022508,0.0000022560, +0.0000022592,0.0000022622,0.0000022651,0.0000022665,0.0000022662, +0.0000022657,0.0000022658,0.0000022669,0.0000022695,0.0000022740, +0.0000022799,0.0000022855,0.0000022897,0.0000022922,0.0000022930, +0.0000022921,0.0000022888,0.0000022839,0.0000022795,0.0000022776, +0.0000022782,0.0000022808,0.0000022852,0.0000022905,0.0000022958, +0.0000023000,0.0000023029,0.0000023043,0.0000023046,0.0000023037, +0.0000023015,0.0000022989,0.0000022968,0.0000022956,0.0000022942, +0.0000022920,0.0000022895,0.0000022869,0.0000022832,0.0000022781, +0.0000022724,0.0000022669,0.0000022609,0.0000022485,0.0000022230, +0.0000021760,0.0000021622,0.0000021627,0.0000021738,0.0000021856, +0.0000021922,0.0000021974,0.0000022020,0.0000022044,0.0000022080, +0.0000022090,0.0000021935,0.0000021739,0.0000021735,0.0000021892, +0.0000022106,0.0000022425,0.0000022762,0.0000022902,0.0000022896, +0.0000022877,0.0000022895,0.0000022964,0.0000023050,0.0000023108, +0.0000023126,0.0000023129,0.0000023153,0.0000023222,0.0000023351, +0.0000023485,0.0000023568,0.0000023574,0.0000023498,0.0000023421, +0.0000023399,0.0000023392,0.0000023360,0.0000023306,0.0000023239, +0.0000023154,0.0000023047,0.0000022980,0.0000022984,0.0000023040, +0.0000023092,0.0000023122,0.0000023132,0.0000023124,0.0000023100, +0.0000023075,0.0000023042,0.0000022998,0.0000022945,0.0000022904, +0.0000022869,0.0000022832,0.0000022797,0.0000022780,0.0000022796, +0.0000022845,0.0000022890,0.0000022916,0.0000022945,0.0000022986, +0.0000023017,0.0000023018,0.0000023010,0.0000023014,0.0000023018, +0.0000023004,0.0000022976,0.0000022950,0.0000022932,0.0000022909, +0.0000022883,0.0000022871,0.0000022858,0.0000022850,0.0000022860, +0.0000022881,0.0000022923,0.0000022977,0.0000022994,0.0000022993, +0.0000022987,0.0000022974,0.0000022951,0.0000022916,0.0000022861, +0.0000022811,0.0000022788,0.0000022773,0.0000022778,0.0000022787, +0.0000022784,0.0000022750,0.0000022693,0.0000022653,0.0000022627, +0.0000022622,0.0000022613,0.0000022660,0.0000022750,0.0000022869, +0.0000022987,0.0000023079,0.0000023140,0.0000023184,0.0000023239, +0.0000023325,0.0000023428,0.0000023511,0.0000023560,0.0000023582, +0.0000023601,0.0000023631,0.0000023668,0.0000023702,0.0000023723, +0.0000023723,0.0000023699,0.0000023649,0.0000023601,0.0000023580, +0.0000023578,0.0000023584,0.0000023595,0.0000023600,0.0000023593, +0.0000023587,0.0000023590,0.0000023603,0.0000023622,0.0000023648, +0.0000023684,0.0000023726,0.0000023765,0.0000023819,0.0000023876, +0.0000023925,0.0000023961,0.0000023989,0.0000024000,0.0000023982, +0.0000023912,0.0000023832,0.0000023786,0.0000023765,0.0000023767, +0.0000023787,0.0000023799,0.0000023787,0.0000023725,0.0000023614, +0.0000023506,0.0000023440,0.0000023412,0.0000023389,0.0000023344, +0.0000023276,0.0000023182,0.0000023101,0.0000023064,0.0000023073, +0.0000023127,0.0000023198,0.0000023258,0.0000023281,0.0000023275, +0.0000023264,0.0000023270,0.0000023311,0.0000023381,0.0000023457, +0.0000023520,0.0000023574,0.0000023638,0.0000023747,0.0000023929, +0.0000024159,0.0000024375,0.0000024539,0.0000024663,0.0000024765, +0.0000024847,0.0000024894,0.0000024908,0.0000024913,0.0000024924, +0.0000024948,0.0000024980,0.0000025012,0.0000025038,0.0000025050, +0.0000025047,0.0000025026,0.0000024987,0.0000024934,0.0000024874, +0.0000024815,0.0000024769,0.0000024737,0.0000024708,0.0000024668, +0.0000024598,0.0000024506,0.0000024399,0.0000024294,0.0000024214, +0.0000024165,0.0000024129,0.0000024096,0.0000024058,0.0000024024, +0.0000023994,0.0000023971,0.0000023962,0.0000023972,0.0000023998, +0.0000024021,0.0000024040,0.0000024057,0.0000024068,0.0000024065, +0.0000024042,0.0000024003,0.0000023945,0.0000023876,0.0000023799, +0.0000023714,0.0000023643,0.0000023570,0.0000023508,0.0000023481, +0.0000023462,0.0000023464,0.0000023476,0.0000023505,0.0000023542, +0.0000023577,0.0000023606,0.0000023621,0.0000023623,0.0000023622, +0.0000023625,0.0000023640,0.0000023662,0.0000023689,0.0000023721, +0.0000023748,0.0000023772,0.0000023769,0.0000023755,0.0000023711, +0.0000023642,0.0000023562,0.0000023492,0.0000023438,0.0000023428, +0.0000023427,0.0000023448,0.0000023475,0.0000023507,0.0000023540, +0.0000023571,0.0000023597,0.0000023623,0.0000023653,0.0000023688, +0.0000023720,0.0000023739,0.0000023747,0.0000023743,0.0000023729, +0.0000023707,0.0000023677,0.0000023639,0.0000023601,0.0000023560, +0.0000023512,0.0000023454,0.0000023392,0.0000023337,0.0000023308, +0.0000023299,0.0000023296,0.0000023290,0.0000023278,0.0000023262, +0.0000023237,0.0000023194,0.0000023133,0.0000023069,0.0000023015, +0.0000022975,0.0000022964,0.0000022979,0.0000023005,0.0000023026, +0.0000023037,0.0000023045,0.0000023059,0.0000023082,0.0000023110, +0.0000023145,0.0000023182,0.0000023220,0.0000023260,0.0000023291, +0.0000023312,0.0000023344,0.0000023400,0.0000023490,0.0000023617, +0.0000023762,0.0000023905,0.0000024042,0.0000024178,0.0000024316, +0.0000024443,0.0000024540,0.0000024594,0.0000024601,0.0000024584, +0.0000024561,0.0000024546,0.0000024538,0.0000024526,0.0000024514, +0.0000024487,0.0000024466,0.0000024436,0.0000024399,0.0000024360, +0.0000024332,0.0000024308,0.0000024292,0.0000024279,0.0000024267, +0.0000024251,0.0000024244,0.0000024248,0.0000024257,0.0000024269, +0.0000024288,0.0000024323,0.0000024366,0.0000024418,0.0000024470, +0.0000024507,0.0000024519,0.0000024508,0.0000024479,0.0000024418, +0.0000024316,0.0000024191,0.0000024076,0.0000023984,0.0000023915, +0.0000023884,0.0000023865,0.0000023807,0.0000023717,0.0000023654, +0.0000023598,0.0000023440,0.0000023214,0.0000023057,0.0000023018, +0.0000023033,0.0000023048,0.0000023053,0.0000023058,0.0000023094, +0.0000023133,0.0000023160,0.0000023189,0.0000023231,0.0000023255, +0.0000023222,0.0000023150,0.0000023097,0.0000023083,0.0000023084, +0.0000023076,0.0000023049,0.0000023006,0.0000022966,0.0000022923, +0.0000022861,0.0000022786,0.0000022720,0.0000022678,0.0000022651, +0.0000022652,0.0000022656,0.0000022659,0.0000022659,0.0000022656, +0.0000022645,0.0000022636,0.0000022706,0.0000022930,0.0000023127, +0.0000023161,0.0000023151,0.0000023124,0.0000023134,0.0000023154, +0.0000023159,0.0000023230,0.0000023323,0.0000023395,0.0000023459, +0.0000023528,0.0000023609,0.0000023656,0.0000023666,0.0000023647, +0.0000023618,0.0000023603,0.0000023562,0.0000023503,0.0000023456, +0.0000023395,0.0000023275,0.0000023066,0.0000022922,0.0000022940, +0.0000023049,0.0000023177,0.0000023291,0.0000023353,0.0000023363, +0.0000023365,0.0000023356,0.0000023335,0.0000023304,0.0000023267, +0.0000023206,0.0000023100,0.0000022982,0.0000022828,0.0000022690, +0.0000022628,0.0000022627,0.0000022650,0.0000022701,0.0000022782, +0.0000022880,0.0000022967,0.0000022977,0.0000022959,0.0000022968, +0.0000022985,0.0000022989,0.0000022984,0.0000022967,0.0000022945, +0.0000022918,0.0000022876,0.0000022819,0.0000022760,0.0000022720, +0.0000022682,0.0000022638,0.0000022612,0.0000022580,0.0000022501, +0.0000022413,0.0000022386,0.0000022362,0.0000022295,0.0000022258, +0.0000022303,0.0000022381,0.0000022464,0.0000022550,0.0000022587, +0.0000022542,0.0000022416,0.0000022343,0.0000022370,0.0000022476, +0.0000022566,0.0000022618,0.0000022656,0.0000022679,0.0000022652, +0.0000022613,0.0000022633,0.0000022730,0.0000022826,0.0000022886, +0.0000022936,0.0000023024,0.0000023129,0.0000023175,0.0000023158, +0.0000023072,0.0000022927,0.0000022757,0.0000022548,0.0000022324, +0.0000022193,0.0000022193,0.0000022294,0.0000022404,0.0000022449, +0.0000022441,0.0000022386,0.0000022301,0.0000022217,0.0000022168, +0.0000022150,0.0000022150,0.0000022173,0.0000022218,0.0000022279, +0.0000022350,0.0000022425,0.0000022501,0.0000022585,0.0000022691, +0.0000022812,0.0000022924,0.0000023001,0.0000023039,0.0000023066, +0.0000023090,0.0000023091,0.0000023063,0.0000023019,0.0000023012, +0.0000023043,0.0000023092,0.0000023148,0.0000023197,0.0000023236, +0.0000023260,0.0000023264,0.0000023256,0.0000023253,0.0000023258, +0.0000023274,0.0000023308,0.0000023350,0.0000023379,0.0000023383, +0.0000023363,0.0000023320,0.0000023268,0.0000023196,0.0000023102, +0.0000023014,0.0000022928,0.0000022835,0.0000022750,0.0000022686, +0.0000022665,0.0000022689,0.0000022733,0.0000022792,0.0000022889, +0.0000023009,0.0000023083,0.0000023090,0.0000023075,0.0000023042, +0.0000022979,0.0000022977,0.0000023149,0.0000023332,0.0000023458, +0.0000023585,0.0000023672,0.0000023685,0.0000023677,0.0000023689, +0.0000023704,0.0000023716,0.0000023739,0.0000023771,0.0000023815, +0.0000023889,0.0000023982,0.0000024049,0.0000024079,0.0000024130, +0.0000024221,0.0000024280,0.0000024276,0.0000024251,0.0000024255, +0.0000024276,0.0000024277,0.0000024223,0.0000024161,0.0000024162, +0.0000024202,0.0000024204,0.0000024196,0.0000024163,0.0000024056, +0.0000023949,0.0000023838,0.0000023755,0.0000023732,0.0000023737, +0.0000023740,0.0000023734,0.0000023741,0.0000023765,0.0000023773, +0.0000023762,0.0000023734,0.0000023741,0.0000023796,0.0000023838, +0.0000023864,0.0000023894,0.0000023900,0.0000023910,0.0000023968, +0.0000024020,0.0000024022,0.0000023992,0.0000023961,0.0000023944, +0.0000023927,0.0000023885,0.0000023812,0.0000023744,0.0000023707, +0.0000023683,0.0000023652,0.0000023631,0.0000023636,0.0000023683, +0.0000023744,0.0000023804,0.0000023859,0.0000023902,0.0000023924, +0.0000023927,0.0000023913,0.0000023881,0.0000023835,0.0000023786, +0.0000023738,0.0000023694,0.0000023665,0.0000023660,0.0000023685, +0.0000023735,0.0000023803,0.0000023880,0.0000023963,0.0000024047, +0.0000024118,0.0000024148,0.0000024151,0.0000024122,0.0000024059, +0.0000023999,0.0000023962,0.0000023953,0.0000023950,0.0000023962, +0.0000024001,0.0000024045,0.0000024089,0.0000024127,0.0000024154, +0.0000024170,0.0000024176,0.0000024173,0.0000024159,0.0000024130, +0.0000024097,0.0000024044,0.0000024011,0.0000023969,0.0000023936, +0.0000023916,0.0000023903,0.0000023892,0.0000023881,0.0000023862, +0.0000023829,0.0000023787,0.0000023742,0.0000023708,0.0000023677, +0.0000023651,0.0000023647,0.0000023628,0.0000023610,0.0000023598, +0.0000023585,0.0000023569,0.0000023562,0.0000023567,0.0000023572, +0.0000023584,0.0000023607,0.0000023631,0.0000023650,0.0000023670, +0.0000023696,0.0000023727,0.0000023761,0.0000023793,0.0000023824, +0.0000023856,0.0000023886,0.0000023913,0.0000023932,0.0000023942, +0.0000023942,0.0000023937,0.0000023925,0.0000023906,0.0000023880, +0.0000023849,0.0000023816,0.0000023784,0.0000023755,0.0000023736, +0.0000023731,0.0000023738,0.0000023754,0.0000023776,0.0000023798, +0.0000023824,0.0000023849,0.0000023869,0.0000023881,0.0000023889, +0.0000023894,0.0000023896,0.0000023896,0.0000023900,0.0000023913, +0.0000023934,0.0000023962,0.0000023988,0.0000024004,0.0000024021, +0.0000024039,0.0000024035,0.0000024003,0.0000023962,0.0000023944, +0.0000023945,0.0000023949,0.0000023973,0.0000024004,0.0000023999, +0.0000023925,0.0000023787,0.0000023624,0.0000023449,0.0000023288, +0.0000023174,0.0000023055,0.0000022911,0.0000022805,0.0000022715, +0.0000022601,0.0000022501,0.0000022448,0.0000022427,0.0000022427, +0.0000022430,0.0000022420,0.0000022384,0.0000022343,0.0000022321, +0.0000022315,0.0000022309,0.0000022302,0.0000022290,0.0000022260, +0.0000022200,0.0000022133,0.0000022130,0.0000022238,0.0000022388, +0.0000022479,0.0000022499,0.0000022498,0.0000022488,0.0000022466, +0.0000022426,0.0000022372,0.0000022319,0.0000022261,0.0000022182, +0.0000022088,0.0000022027,0.0000022041,0.0000022086,0.0000022050, +0.0000021917,0.0000021789,0.0000021684,0.0000021627,0.0000021680, +0.0000021834,0.0000021886,0.0000021832,0.0000021796,0.0000021838, +0.0000021958,0.0000022145,0.0000022356,0.0000022503,0.0000022545, +0.0000022563,0.0000022654,0.0000022813,0.0000022965,0.0000023051, +0.0000023104,0.0000023222,0.0000023430,0.0000023616,0.0000023693, +0.0000023710,0.0000023745,0.0000023804,0.0000023852,0.0000023866, +0.0000023858,0.0000023815,0.0000023754,0.0000023707,0.0000023693, +0.0000023705,0.0000023730,0.0000023744,0.0000023741,0.0000023709, +0.0000023624,0.0000023507,0.0000023393,0.0000023289,0.0000023196, +0.0000023113,0.0000023014,0.0000022884,0.0000022728,0.0000022563, +0.0000022411,0.0000022282,0.0000022170,0.0000022062,0.0000021962, +0.0000021877,0.0000021792,0.0000021686,0.0000021566,0.0000021451, +0.0000021349,0.0000021258,0.0000021172,0.0000021091,0.0000021021, +0.0000020959,0.0000020896,0.0000020818,0.0000020750,0.0000020696, +0.0000020679,0.0000020701,0.0000020750,0.0000020797,0.0000020844, +0.0000020897,0.0000020946,0.0000020986,0.0000021013,0.0000021030, +0.0000021054,0.0000021066,0.0000021064,0.0000021045,0.0000021000, +0.0000020934,0.0000020862,0.0000020796,0.0000020769,0.0000020800, +0.0000020897,0.0000021059,0.0000021275,0.0000021517,0.0000021735, +0.0000021887,0.0000021980,0.0000022058,0.0000022141,0.0000022230, +0.0000022357,0.0000022564,0.0000022808,0.0000022977,0.0000023012, +0.0000022937,0.0000022804,0.0000022702,0.0000022685,0.0000022754, +0.0000022847,0.0000022946,0.0000023121,0.0000023357,0.0000023541, +0.0000023667,0.0000023807,0.0000023962,0.0000024111,0.0000024270, +0.0000024434,0.0000024558,0.0000024642,0.0000024754,0.0000024898, +0.0000024976,0.0000024972,0.0000024939,0.0000024932,0.0000024944, +0.0000024951,0.0000024946,0.0000024936,0.0000024933,0.0000024946, +0.0000024967,0.0000024979,0.0000024983,0.0000024991,0.0000025000, +0.0000024997,0.0000024972,0.0000024940,0.0000024916,0.0000024909, +0.0000024911,0.0000024924,0.0000024972,0.0000025053,0.0000025110, +0.0000025095,0.0000024997,0.0000024849,0.0000024684,0.0000024489, +0.0000024299,0.0000024185,0.0000024095,0.0000023934,0.0000023748, +0.0000023611,0.0000023533,0.0000023509,0.0000023528,0.0000023590, +0.0000023702,0.0000023814,0.0000023871,0.0000023886,0.0000023892, +0.0000023894,0.0000023890,0.0000023883,0.0000023875,0.0000023872, +0.0000023881,0.0000023902,0.0000023922,0.0000023923,0.0000023904, +0.0000023864,0.0000023819,0.0000023779,0.0000023743,0.0000023703, +0.0000023659,0.0000023614,0.0000023575,0.0000023549,0.0000023544, +0.0000023560,0.0000023595,0.0000023648,0.0000023720,0.0000023801, +0.0000023884,0.0000023959,0.0000024024,0.0000024080,0.0000024137, +0.0000024211,0.0000024331,0.0000024514,0.0000024753,0.0000025008, +0.0000025226,0.0000025379,0.0000025468,0.0000025510,0.0000025520, +0.0000025517,0.0000025508,0.0000025503,0.0000025505,0.0000025515, +0.0000025530,0.0000025551,0.0000025579,0.0000025607,0.0000025625, +0.0000025620,0.0000025582,0.0000025514,0.0000025447,0.0000025421, +0.0000025419,0.0000025379,0.0000025324,0.0000025314,0.0000025279, +0.0000025105,0.0000024878,0.0000024745,0.0000024708,0.0000024673, +0.0000024597,0.0000024538,0.0000024531,0.0000024483,0.0000024258, +0.0000023942,0.0000023742,0.0000023694,0.0000023678,0.0000023572, +0.0000023317,0.0000022998,0.0000022758,0.0000022631,0.0000022544, +0.0000022425,0.0000022273,0.0000022106,0.0000021938,0.0000021798, +0.0000021690,0.0000021647,0.0000021668,0.0000021719,0.0000021793, +0.0000021840,0.0000021847,0.0000021843,0.0000021888,0.0000021968, +0.0000021973,0.0000021872,0.0000021696,0.0000021525,0.0000021409, +0.0000021360,0.0000021333,0.0000021297,0.0000021269,0.0000021244, +0.0000021232,0.0000021218,0.0000021200,0.0000021173,0.0000021149, +0.0000021141,0.0000021159,0.0000021183,0.0000021193,0.0000021182, +0.0000021167,0.0000021154,0.0000021139,0.0000021107,0.0000021060, +0.0000021028,0.0000021026,0.0000021033,0.0000021049,0.0000021068, +0.0000021084,0.0000021094,0.0000021100,0.0000021110,0.0000021129, +0.0000021159,0.0000021195,0.0000021226,0.0000021256,0.0000021284, +0.0000021328,0.0000021393,0.0000021466,0.0000021536,0.0000021597, +0.0000021640,0.0000021666,0.0000021687,0.0000021705,0.0000021716, +0.0000021716,0.0000021706,0.0000021685,0.0000021668,0.0000021657, +0.0000021651,0.0000021654,0.0000021661,0.0000021673,0.0000021689, +0.0000021708,0.0000021732,0.0000021754,0.0000021766,0.0000021767, +0.0000021756,0.0000021743,0.0000021732,0.0000021723,0.0000021702, +0.0000021672,0.0000021647,0.0000021630,0.0000021616,0.0000021601, +0.0000021583,0.0000021562,0.0000021548,0.0000021548,0.0000021552, +0.0000021558,0.0000021565,0.0000021564,0.0000021558,0.0000021544, +0.0000021528,0.0000021524,0.0000021538,0.0000021566,0.0000021608, +0.0000021656,0.0000021694,0.0000021726,0.0000021756,0.0000021779, +0.0000021795,0.0000021814,0.0000021850,0.0000021922,0.0000022032, +0.0000022175,0.0000022322,0.0000022436,0.0000022512,0.0000022549, +0.0000022556,0.0000022553,0.0000022559,0.0000022561,0.0000022554, +0.0000022536,0.0000022508,0.0000022472,0.0000022441,0.0000022417, +0.0000022404,0.0000022403,0.0000022411,0.0000022420,0.0000022421, +0.0000022418,0.0000022416,0.0000022418,0.0000022420,0.0000022425, +0.0000022428,0.0000022425,0.0000022420,0.0000022415,0.0000022405, +0.0000022390,0.0000022381,0.0000022374,0.0000022359,0.0000022333, +0.0000022307,0.0000022287,0.0000022264,0.0000022233,0.0000022200, +0.0000022170,0.0000022138,0.0000022104,0.0000022075,0.0000022059, +0.0000022040,0.0000021995,0.0000021886,0.0000021740,0.0000021663, +0.0000021686,0.0000021777,0.0000021848,0.0000021863,0.0000021850, +0.0000021769,0.0000021667,0.0000021629,0.0000021644,0.0000021672, +0.0000021688,0.0000021686,0.0000021681,0.0000021683,0.0000021683, +0.0000021670,0.0000021661,0.0000021672,0.0000021705,0.0000021749, +0.0000021790,0.0000021828,0.0000021874,0.0000021932,0.0000021995, +0.0000022056,0.0000022111,0.0000022155,0.0000022185,0.0000022208, +0.0000022224,0.0000022223,0.0000022195,0.0000022145,0.0000022090, +0.0000022048,0.0000022017,0.0000021998,0.0000022001,0.0000022019, +0.0000022035,0.0000022038,0.0000022041,0.0000022060,0.0000022086, +0.0000022092,0.0000022079,0.0000022026,0.0000021938,0.0000021830, +0.0000021689,0.0000021510,0.0000021348,0.0000021253,0.0000021203, +0.0000021157,0.0000021103,0.0000021059,0.0000021040,0.0000021034, +0.0000021017,0.0000021009,0.0000021022,0.0000021006,0.0000021015, +0.0000021239,0.0000021602,0.0000021865,0.0000022030,0.0000022178, +0.0000022284,0.0000022347,0.0000022412,0.0000022487,0.0000022545, +0.0000022581,0.0000022617,0.0000022654,0.0000022674,0.0000022676, +0.0000022679,0.0000022694,0.0000022717,0.0000022736,0.0000022756, +0.0000022793,0.0000022838,0.0000022874,0.0000022886,0.0000022878, +0.0000022844,0.0000022796,0.0000022755,0.0000022731,0.0000022730, +0.0000022742,0.0000022772,0.0000022816,0.0000022869,0.0000022921, +0.0000022964,0.0000022994,0.0000023007,0.0000023003,0.0000022985, +0.0000022962,0.0000022941,0.0000022921,0.0000022901,0.0000022877, +0.0000022851,0.0000022829,0.0000022805,0.0000022771,0.0000022731, +0.0000022692,0.0000022641,0.0000022530,0.0000022312,0.0000022018, +0.0000021684,0.0000021664,0.0000021737,0.0000021851,0.0000021925, +0.0000021982,0.0000022043,0.0000022074,0.0000022080,0.0000022110, +0.0000022107,0.0000021935,0.0000021733,0.0000021741,0.0000021911, +0.0000022155,0.0000022498,0.0000022804,0.0000022890,0.0000022871, +0.0000022858,0.0000022898,0.0000022987,0.0000023067,0.0000023103, +0.0000023106,0.0000023114,0.0000023151,0.0000023232,0.0000023356, +0.0000023473,0.0000023541,0.0000023539,0.0000023474,0.0000023423, +0.0000023420,0.0000023417,0.0000023377,0.0000023318,0.0000023241, +0.0000023131,0.0000023017,0.0000022981,0.0000023019,0.0000023067, +0.0000023085,0.0000023089,0.0000023092,0.0000023089,0.0000023079, +0.0000023065,0.0000023042,0.0000023007,0.0000022975,0.0000022951, +0.0000022923,0.0000022887,0.0000022852,0.0000022837,0.0000022856, +0.0000022904,0.0000022948,0.0000022980,0.0000023023,0.0000023081, +0.0000023132,0.0000023158,0.0000023163,0.0000023170,0.0000023181, +0.0000023172,0.0000023143,0.0000023097,0.0000023059,0.0000023021, +0.0000022983,0.0000022954,0.0000022913,0.0000022879,0.0000022874, +0.0000022879,0.0000022909,0.0000022961,0.0000022984,0.0000022986, +0.0000022987,0.0000022992,0.0000022990,0.0000022976,0.0000022935, +0.0000022900,0.0000022883,0.0000022868,0.0000022874,0.0000022898, +0.0000022906,0.0000022882,0.0000022825,0.0000022775,0.0000022722, +0.0000022663,0.0000022611,0.0000022596,0.0000022602,0.0000022671, +0.0000022774,0.0000022888,0.0000022991,0.0000023071,0.0000023127, +0.0000023175,0.0000023245,0.0000023344,0.0000023443,0.0000023517, +0.0000023562,0.0000023583,0.0000023604,0.0000023634,0.0000023666, +0.0000023696,0.0000023704,0.0000023684,0.0000023644,0.0000023616, +0.0000023600,0.0000023593,0.0000023591,0.0000023592,0.0000023584, +0.0000023571,0.0000023567,0.0000023568,0.0000023572,0.0000023583, +0.0000023604,0.0000023638,0.0000023682,0.0000023730,0.0000023790, +0.0000023847,0.0000023896,0.0000023936,0.0000023971,0.0000024002, +0.0000024012,0.0000023974,0.0000023884,0.0000023794,0.0000023741, +0.0000023731,0.0000023749,0.0000023771,0.0000023772,0.0000023730, +0.0000023631,0.0000023507,0.0000023413,0.0000023367,0.0000023342, +0.0000023307,0.0000023248,0.0000023173,0.0000023104,0.0000023070, +0.0000023073,0.0000023110,0.0000023164,0.0000023218,0.0000023250, +0.0000023252,0.0000023237,0.0000023236,0.0000023250,0.0000023287, +0.0000023342,0.0000023409,0.0000023479,0.0000023536,0.0000023595, +0.0000023699,0.0000023866,0.0000024067,0.0000024262,0.0000024427, +0.0000024562,0.0000024668,0.0000024746,0.0000024795,0.0000024829, +0.0000024858,0.0000024895,0.0000024940,0.0000024981,0.0000025013, +0.0000025030,0.0000025029,0.0000025010,0.0000024971,0.0000024919, +0.0000024862,0.0000024803,0.0000024744,0.0000024687,0.0000024635, +0.0000024583,0.0000024518,0.0000024436,0.0000024340,0.0000024238, +0.0000024152,0.0000024096,0.0000024061,0.0000024033,0.0000024005, +0.0000023977,0.0000023955,0.0000023938,0.0000023936,0.0000023952, +0.0000023978,0.0000024007,0.0000024033,0.0000024058,0.0000024079, +0.0000024087,0.0000024090,0.0000024086,0.0000024067,0.0000024033, +0.0000023991,0.0000023941,0.0000023881,0.0000023810,0.0000023730, +0.0000023649,0.0000023579,0.0000023520,0.0000023468,0.0000023454, +0.0000023463,0.0000023490,0.0000023533,0.0000023578,0.0000023611, +0.0000023624,0.0000023629,0.0000023629,0.0000023624,0.0000023625, +0.0000023638,0.0000023663,0.0000023699,0.0000023730,0.0000023754, +0.0000023746,0.0000023721,0.0000023673,0.0000023606,0.0000023539, +0.0000023490,0.0000023459,0.0000023441,0.0000023448,0.0000023466, +0.0000023495,0.0000023531,0.0000023564,0.0000023585,0.0000023599, +0.0000023614,0.0000023630,0.0000023640,0.0000023640,0.0000023627, +0.0000023604,0.0000023577,0.0000023551,0.0000023524,0.0000023499, +0.0000023476,0.0000023456,0.0000023435,0.0000023406,0.0000023389, +0.0000023386,0.0000023388,0.0000023383,0.0000023365,0.0000023333, +0.0000023295,0.0000023250,0.0000023201,0.0000023145,0.0000023079, +0.0000023008,0.0000022951,0.0000022918,0.0000022915,0.0000022927, +0.0000022949,0.0000022970,0.0000022983,0.0000023001,0.0000023035, +0.0000023077,0.0000023119,0.0000023152,0.0000023182,0.0000023212, +0.0000023230,0.0000023229,0.0000023228,0.0000023238,0.0000023270, +0.0000023328,0.0000023423,0.0000023546,0.0000023672,0.0000023786, +0.0000023889,0.0000023997,0.0000024111,0.0000024231,0.0000024349, +0.0000024440,0.0000024487,0.0000024496,0.0000024482,0.0000024462, +0.0000024451,0.0000024462,0.0000024500,0.0000024542,0.0000024562, +0.0000024563,0.0000024549,0.0000024519,0.0000024478,0.0000024438, +0.0000024403,0.0000024368,0.0000024337,0.0000024322,0.0000024320, +0.0000024327,0.0000024347,0.0000024369,0.0000024393,0.0000024418, +0.0000024441,0.0000024456,0.0000024460,0.0000024449,0.0000024427, +0.0000024386,0.0000024312,0.0000024211,0.0000024117,0.0000024052, +0.0000024003,0.0000023960,0.0000023929,0.0000023887,0.0000023800, +0.0000023701,0.0000023641,0.0000023572,0.0000023413,0.0000023229, +0.0000023120,0.0000023089,0.0000023074,0.0000023055,0.0000023060, +0.0000023089,0.0000023114,0.0000023141,0.0000023181,0.0000023209, +0.0000023175,0.0000023093,0.0000023030,0.0000023012,0.0000023014, +0.0000023019,0.0000023026,0.0000023017,0.0000022994,0.0000022969, +0.0000022936,0.0000022881,0.0000022805,0.0000022734,0.0000022686, +0.0000022660,0.0000022648,0.0000022655,0.0000022665,0.0000022667, +0.0000022661,0.0000022647,0.0000022629,0.0000022630,0.0000022737, +0.0000022979,0.0000023161,0.0000023179,0.0000023163,0.0000023139, +0.0000023152,0.0000023179,0.0000023163,0.0000023217,0.0000023334, +0.0000023422,0.0000023473,0.0000023530,0.0000023596,0.0000023622, +0.0000023622,0.0000023614,0.0000023596,0.0000023558,0.0000023492, +0.0000023434,0.0000023410,0.0000023389,0.0000023329,0.0000023166, +0.0000022993,0.0000022971,0.0000023028,0.0000023122,0.0000023240, +0.0000023314,0.0000023349,0.0000023368,0.0000023366,0.0000023344, +0.0000023296,0.0000023211,0.0000023072,0.0000022921,0.0000022787, +0.0000022684,0.0000022636,0.0000022629,0.0000022645,0.0000022703, +0.0000022809,0.0000022919,0.0000022969,0.0000022965,0.0000022957, +0.0000022988,0.0000023012,0.0000023010,0.0000022986,0.0000022947, +0.0000022908,0.0000022871,0.0000022825,0.0000022771,0.0000022718, +0.0000022685,0.0000022662,0.0000022627,0.0000022587,0.0000022531, +0.0000022448,0.0000022376,0.0000022358,0.0000022324,0.0000022250, +0.0000022232,0.0000022291,0.0000022379,0.0000022472,0.0000022555, +0.0000022576,0.0000022501,0.0000022378,0.0000022332,0.0000022390, +0.0000022509,0.0000022587,0.0000022626,0.0000022669,0.0000022705, +0.0000022667,0.0000022620,0.0000022663,0.0000022782,0.0000022861, +0.0000022899,0.0000022961,0.0000023081,0.0000023193,0.0000023222, +0.0000023185,0.0000023085,0.0000022902,0.0000022670,0.0000022421, +0.0000022195,0.0000022100,0.0000022158,0.0000022281,0.0000022398, +0.0000022446,0.0000022438,0.0000022379,0.0000022292,0.0000022213, +0.0000022172,0.0000022158,0.0000022160,0.0000022186,0.0000022235, +0.0000022307,0.0000022393,0.0000022482,0.0000022568,0.0000022652, +0.0000022752,0.0000022864,0.0000022964,0.0000023033,0.0000023064, +0.0000023073,0.0000023083,0.0000023073,0.0000023033,0.0000022990, +0.0000022989,0.0000023031,0.0000023096,0.0000023161,0.0000023223, +0.0000023269,0.0000023293,0.0000023295,0.0000023285,0.0000023275, +0.0000023279,0.0000023296,0.0000023322,0.0000023355,0.0000023385, +0.0000023396,0.0000023381,0.0000023345,0.0000023305,0.0000023266, +0.0000023199,0.0000023112,0.0000023024,0.0000022932,0.0000022843, +0.0000022760,0.0000022692,0.0000022671,0.0000022696,0.0000022744, +0.0000022815,0.0000022914,0.0000023008,0.0000023052,0.0000023050, +0.0000023038,0.0000023014,0.0000022964,0.0000022969,0.0000023143, +0.0000023327,0.0000023427,0.0000023536,0.0000023644,0.0000023680, +0.0000023673,0.0000023673,0.0000023687,0.0000023701,0.0000023719, +0.0000023743,0.0000023781,0.0000023848,0.0000023946,0.0000024023, +0.0000024065,0.0000024128,0.0000024223,0.0000024273,0.0000024262, +0.0000024241,0.0000024252,0.0000024267,0.0000024246,0.0000024181, +0.0000024143,0.0000024171,0.0000024206,0.0000024199,0.0000024194, +0.0000024134,0.0000024030,0.0000023920,0.0000023800,0.0000023749, +0.0000023750,0.0000023756,0.0000023749,0.0000023743,0.0000023753, +0.0000023773,0.0000023778,0.0000023758,0.0000023729,0.0000023732, +0.0000023786,0.0000023835,0.0000023859,0.0000023887,0.0000023897, +0.0000023900,0.0000023943,0.0000024003,0.0000024017,0.0000023996, +0.0000023962,0.0000023935,0.0000023916,0.0000023898,0.0000023854, +0.0000023776,0.0000023698,0.0000023655,0.0000023639,0.0000023628, +0.0000023612,0.0000023601,0.0000023589,0.0000023576,0.0000023587, +0.0000023603,0.0000023616,0.0000023624,0.0000023626,0.0000023616, +0.0000023597,0.0000023572,0.0000023543,0.0000023511,0.0000023479, +0.0000023457,0.0000023457,0.0000023474,0.0000023509,0.0000023562, +0.0000023633,0.0000023717,0.0000023814,0.0000023920,0.0000024021, +0.0000024098,0.0000024130,0.0000024111,0.0000024072,0.0000024016, +0.0000023968,0.0000023923,0.0000023903,0.0000023902,0.0000023904, +0.0000023922,0.0000023936,0.0000023944,0.0000023952,0.0000023963, +0.0000023977,0.0000023990,0.0000023996,0.0000023993,0.0000023987, +0.0000023974,0.0000023961,0.0000023941,0.0000023932,0.0000023931, +0.0000023920,0.0000023910,0.0000023898,0.0000023870,0.0000023833, +0.0000023796,0.0000023762,0.0000023728,0.0000023698,0.0000023674, +0.0000023656,0.0000023643,0.0000023625,0.0000023602,0.0000023584, +0.0000023574,0.0000023565,0.0000023559,0.0000023566,0.0000023586, +0.0000023585,0.0000023583,0.0000023595,0.0000023610,0.0000023635, +0.0000023667,0.0000023705,0.0000023745,0.0000023789,0.0000023836, +0.0000023876,0.0000023905,0.0000023925,0.0000023934,0.0000023930, +0.0000023919,0.0000023898,0.0000023868,0.0000023831,0.0000023793, +0.0000023755,0.0000023718,0.0000023696,0.0000023691,0.0000023695, +0.0000023711,0.0000023729,0.0000023753,0.0000023780,0.0000023806, +0.0000023822,0.0000023831,0.0000023839,0.0000023844,0.0000023846, +0.0000023850,0.0000023863,0.0000023887,0.0000023920,0.0000023953, +0.0000023975,0.0000023991,0.0000024014,0.0000024034,0.0000024023, +0.0000023974,0.0000023911,0.0000023872,0.0000023867,0.0000023881, +0.0000023925,0.0000023967,0.0000023961,0.0000023886,0.0000023735, +0.0000023552,0.0000023377,0.0000023233,0.0000023120,0.0000022996, +0.0000022858,0.0000022744,0.0000022640,0.0000022552,0.0000022506, +0.0000022478,0.0000022457,0.0000022451,0.0000022449,0.0000022435, +0.0000022394,0.0000022347,0.0000022322,0.0000022315,0.0000022312, +0.0000022304,0.0000022280,0.0000022246,0.0000022234,0.0000022285, +0.0000022392,0.0000022477,0.0000022501,0.0000022504,0.0000022503, +0.0000022500,0.0000022492,0.0000022470,0.0000022419,0.0000022351, +0.0000022289,0.0000022230,0.0000022154,0.0000022069,0.0000022015, +0.0000022033,0.0000022084,0.0000022053,0.0000021925,0.0000021794, +0.0000021684,0.0000021600,0.0000021638,0.0000021775,0.0000021834, +0.0000021781,0.0000021743,0.0000021777,0.0000021904,0.0000022100, +0.0000022323,0.0000022497,0.0000022560,0.0000022565,0.0000022624, +0.0000022780,0.0000022965,0.0000023083,0.0000023121,0.0000023170, +0.0000023303,0.0000023462,0.0000023550,0.0000023580,0.0000023611, +0.0000023646,0.0000023665,0.0000023665,0.0000023642,0.0000023587, +0.0000023528,0.0000023499,0.0000023509,0.0000023553,0.0000023600, +0.0000023621,0.0000023620,0.0000023587,0.0000023504,0.0000023401, +0.0000023303,0.0000023205,0.0000023113,0.0000023016,0.0000022897, +0.0000022753,0.0000022598,0.0000022435,0.0000022274,0.0000022125, +0.0000021986,0.0000021858,0.0000021740,0.0000021628,0.0000021510, +0.0000021384,0.0000021265,0.0000021173,0.0000021116,0.0000021079, +0.0000021048,0.0000021019,0.0000020991,0.0000020946,0.0000020883, +0.0000020807,0.0000020739,0.0000020698,0.0000020705,0.0000020769, +0.0000020851,0.0000020927,0.0000020998,0.0000021060,0.0000021107, +0.0000021136,0.0000021146,0.0000021142,0.0000021126,0.0000021104, +0.0000021075,0.0000021038,0.0000020989,0.0000020924,0.0000020844, +0.0000020769,0.0000020716,0.0000020708,0.0000020751,0.0000020860, +0.0000021038,0.0000021280,0.0000021542,0.0000021757,0.0000021891, +0.0000021960,0.0000022012,0.0000022083,0.0000022193,0.0000022372, +0.0000022622,0.0000022859,0.0000022969,0.0000022934,0.0000022809, +0.0000022675,0.0000022615,0.0000022655,0.0000022762,0.0000022872, +0.0000023011,0.0000023231,0.0000023452,0.0000023592,0.0000023711, +0.0000023863,0.0000024022,0.0000024177,0.0000024351,0.0000024512, +0.0000024619,0.0000024711,0.0000024836,0.0000024946,0.0000024975, +0.0000024963,0.0000024954,0.0000024964,0.0000024984,0.0000025003, +0.0000025007,0.0000024987,0.0000024967,0.0000024973,0.0000024987, +0.0000024989,0.0000024983,0.0000024977,0.0000024972,0.0000024958, +0.0000024935,0.0000024911,0.0000024896,0.0000024890,0.0000024900, +0.0000024956,0.0000025042,0.0000025086,0.0000025064,0.0000024952, +0.0000024788,0.0000024597,0.0000024381,0.0000024210,0.0000024121, +0.0000024009,0.0000023820,0.0000023644,0.0000023533,0.0000023493, +0.0000023510,0.0000023560,0.0000023638,0.0000023743,0.0000023836, +0.0000023888,0.0000023903,0.0000023898,0.0000023880,0.0000023865, +0.0000023856,0.0000023848,0.0000023841,0.0000023844,0.0000023854, +0.0000023857,0.0000023844,0.0000023811,0.0000023764,0.0000023716, +0.0000023675,0.0000023638,0.0000023598,0.0000023553,0.0000023500, +0.0000023449,0.0000023418,0.0000023413,0.0000023428,0.0000023455, +0.0000023491,0.0000023538,0.0000023596,0.0000023657,0.0000023719, +0.0000023785,0.0000023857,0.0000023929,0.0000023997,0.0000024074, +0.0000024188,0.0000024358,0.0000024582,0.0000024833,0.0000025073, +0.0000025270,0.0000025403,0.0000025463,0.0000025466,0.0000025447, +0.0000025426,0.0000025418,0.0000025426,0.0000025444,0.0000025463, +0.0000025484,0.0000025505,0.0000025515,0.0000025503,0.0000025466, +0.0000025412,0.0000025364,0.0000025347,0.0000025340,0.0000025296, +0.0000025245,0.0000025240,0.0000025212,0.0000025046,0.0000024825, +0.0000024694,0.0000024652,0.0000024618,0.0000024554,0.0000024495, +0.0000024477,0.0000024470,0.0000024377,0.0000024129,0.0000023848, +0.0000023693,0.0000023662,0.0000023642,0.0000023572,0.0000023373, +0.0000023079,0.0000022808,0.0000022629,0.0000022508,0.0000022386, +0.0000022237,0.0000022079,0.0000021921,0.0000021773,0.0000021663, +0.0000021630,0.0000021661,0.0000021732,0.0000021807,0.0000021857, +0.0000021865,0.0000021860,0.0000021892,0.0000021938,0.0000021937, +0.0000021829,0.0000021631,0.0000021438,0.0000021324,0.0000021275, +0.0000021260,0.0000021255,0.0000021251,0.0000021256,0.0000021263, +0.0000021259,0.0000021234,0.0000021198,0.0000021161,0.0000021152, +0.0000021163,0.0000021185,0.0000021198,0.0000021192,0.0000021179, +0.0000021163,0.0000021135,0.0000021097,0.0000021073,0.0000021060, +0.0000021050,0.0000021056,0.0000021068,0.0000021080,0.0000021093, +0.0000021101,0.0000021101,0.0000021098,0.0000021105,0.0000021126, +0.0000021164,0.0000021204,0.0000021236,0.0000021263,0.0000021305, +0.0000021359,0.0000021420,0.0000021480,0.0000021534,0.0000021569, +0.0000021585,0.0000021594,0.0000021598,0.0000021601,0.0000021599, +0.0000021586,0.0000021578,0.0000021579,0.0000021587,0.0000021602, +0.0000021617,0.0000021629,0.0000021638,0.0000021656,0.0000021686, +0.0000021718,0.0000021741,0.0000021755,0.0000021758,0.0000021764, +0.0000021774,0.0000021786,0.0000021783,0.0000021760,0.0000021724, +0.0000021688,0.0000021658,0.0000021636,0.0000021622,0.0000021612, +0.0000021594,0.0000021578,0.0000021568,0.0000021567,0.0000021572, +0.0000021575,0.0000021574,0.0000021570,0.0000021554,0.0000021537, +0.0000021533,0.0000021541,0.0000021565,0.0000021601,0.0000021637, +0.0000021661,0.0000021678,0.0000021694,0.0000021712,0.0000021733, +0.0000021751,0.0000021771,0.0000021807,0.0000021888,0.0000022018, +0.0000022171,0.0000022315,0.0000022427,0.0000022498,0.0000022535, +0.0000022550,0.0000022562,0.0000022570,0.0000022575,0.0000022570, +0.0000022548,0.0000022512,0.0000022468,0.0000022429,0.0000022399, +0.0000022385,0.0000022380,0.0000022382,0.0000022381,0.0000022382, +0.0000022386,0.0000022394,0.0000022406,0.0000022420,0.0000022427, +0.0000022428,0.0000022425,0.0000022422,0.0000022414,0.0000022398, +0.0000022382,0.0000022367,0.0000022345,0.0000022313,0.0000022277, +0.0000022234,0.0000022184,0.0000022140,0.0000022108,0.0000022081, +0.0000022055,0.0000022037,0.0000022030,0.0000022017,0.0000021993, +0.0000021937,0.0000021815,0.0000021690,0.0000021659,0.0000021713, +0.0000021802,0.0000021849,0.0000021854,0.0000021825,0.0000021728, +0.0000021631,0.0000021594,0.0000021601,0.0000021632,0.0000021668, +0.0000021690,0.0000021693,0.0000021688,0.0000021675,0.0000021656, +0.0000021650,0.0000021664,0.0000021698,0.0000021748,0.0000021798, +0.0000021841,0.0000021883,0.0000021925,0.0000021974,0.0000022028, +0.0000022076,0.0000022111,0.0000022132,0.0000022150,0.0000022172, +0.0000022180,0.0000022166,0.0000022125,0.0000022078,0.0000022044, +0.0000022019,0.0000022001,0.0000022003,0.0000022027,0.0000022061, +0.0000022085,0.0000022088,0.0000022083,0.0000022078,0.0000022063, +0.0000022040,0.0000022011,0.0000021955,0.0000021871,0.0000021772, +0.0000021640,0.0000021467,0.0000021304,0.0000021197,0.0000021132, +0.0000021074,0.0000021024,0.0000021001,0.0000021000,0.0000020999, +0.0000020995,0.0000021003,0.0000021007,0.0000021000,0.0000021077, +0.0000021395,0.0000021747,0.0000021963,0.0000022120,0.0000022247, +0.0000022323,0.0000022381,0.0000022455,0.0000022524,0.0000022569, +0.0000022607,0.0000022644,0.0000022669,0.0000022681,0.0000022692, +0.0000022711,0.0000022728,0.0000022736,0.0000022739,0.0000022751, +0.0000022780,0.0000022806,0.0000022812,0.0000022798,0.0000022768, +0.0000022734,0.0000022703,0.0000022685,0.0000022686,0.0000022704, +0.0000022736,0.0000022781,0.0000022833,0.0000022884,0.0000022925, +0.0000022951,0.0000022955,0.0000022941,0.0000022921,0.0000022902, +0.0000022880,0.0000022853,0.0000022822,0.0000022792,0.0000022772, +0.0000022759,0.0000022741,0.0000022715,0.0000022686,0.0000022642, +0.0000022530,0.0000022318,0.0000022050,0.0000021816,0.0000021704, +0.0000021775,0.0000021874,0.0000021942,0.0000022001,0.0000022073, +0.0000022116,0.0000022113,0.0000022110,0.0000022134,0.0000022108, +0.0000021913,0.0000021718,0.0000021756,0.0000021955,0.0000022234, +0.0000022588,0.0000022835,0.0000022876,0.0000022838,0.0000022843, +0.0000022917,0.0000023012,0.0000023071,0.0000023084,0.0000023086, +0.0000023104,0.0000023148,0.0000023236,0.0000023351,0.0000023448, +0.0000023499,0.0000023486,0.0000023431,0.0000023407,0.0000023418, +0.0000023419,0.0000023381,0.0000023311,0.0000023210,0.0000023088, +0.0000023011,0.0000023019,0.0000023061,0.0000023073,0.0000023064, +0.0000023060,0.0000023067,0.0000023071,0.0000023069,0.0000023059, +0.0000023042,0.0000023023,0.0000023014,0.0000023002,0.0000022976, +0.0000022942,0.0000022913,0.0000022907,0.0000022936,0.0000022986, +0.0000023035,0.0000023081,0.0000023140,0.0000023210,0.0000023275, +0.0000023319,0.0000023335,0.0000023340,0.0000023345,0.0000023337, +0.0000023310,0.0000023262,0.0000023218,0.0000023184,0.0000023147, +0.0000023097,0.0000023012,0.0000022932,0.0000022897,0.0000022890, +0.0000022913,0.0000022960,0.0000022984,0.0000022985,0.0000022988, +0.0000023004,0.0000023012,0.0000023009,0.0000022975,0.0000022950, +0.0000022943,0.0000022938,0.0000022949,0.0000022983,0.0000023013, +0.0000023019,0.0000022995,0.0000022967,0.0000022916,0.0000022831, +0.0000022735,0.0000022655,0.0000022610,0.0000022608,0.0000022646, +0.0000022707,0.0000022786,0.0000022873,0.0000022968,0.0000023055, +0.0000023120,0.0000023188,0.0000023263,0.0000023348,0.0000023441, +0.0000023508,0.0000023547,0.0000023575,0.0000023596,0.0000023618, +0.0000023645,0.0000023654,0.0000023641,0.0000023621,0.0000023603, +0.0000023597,0.0000023592,0.0000023589,0.0000023576,0.0000023552, +0.0000023536,0.0000023529,0.0000023526,0.0000023524,0.0000023527, +0.0000023536,0.0000023562,0.0000023603,0.0000023654,0.0000023716, +0.0000023780,0.0000023840,0.0000023894,0.0000023943,0.0000023989, +0.0000024015,0.0000024015,0.0000023950,0.0000023833,0.0000023735, +0.0000023699,0.0000023709,0.0000023739,0.0000023748,0.0000023727, +0.0000023647,0.0000023520,0.0000023401,0.0000023332,0.0000023298, +0.0000023270,0.0000023223,0.0000023168,0.0000023117,0.0000023080, +0.0000023074,0.0000023090,0.0000023126,0.0000023169,0.0000023201, +0.0000023223,0.0000023246,0.0000023260,0.0000023264,0.0000023253, +0.0000023256,0.0000023287,0.0000023353,0.0000023421,0.0000023477, +0.0000023546,0.0000023648,0.0000023787,0.0000023950,0.0000024116, +0.0000024273,0.0000024412,0.0000024527,0.0000024615,0.0000024675, +0.0000024721,0.0000024769,0.0000024821,0.0000024870,0.0000024909, +0.0000024937,0.0000024951,0.0000024947,0.0000024922,0.0000024880, +0.0000024827,0.0000024768,0.0000024696,0.0000024610,0.0000024523, +0.0000024443,0.0000024370,0.0000024302,0.0000024229,0.0000024150, +0.0000024077,0.0000024023,0.0000023987,0.0000023957,0.0000023927, +0.0000023897,0.0000023874,0.0000023860,0.0000023862,0.0000023877, +0.0000023902,0.0000023931,0.0000023961,0.0000023989,0.0000024018, +0.0000024042,0.0000024063,0.0000024081,0.0000024076,0.0000024064, +0.0000024046,0.0000024027,0.0000024002,0.0000023969,0.0000023925, +0.0000023868,0.0000023803,0.0000023725,0.0000023636,0.0000023559, +0.0000023500,0.0000023476,0.0000023471,0.0000023499,0.0000023538, +0.0000023575,0.0000023606,0.0000023626,0.0000023631,0.0000023626, +0.0000023623,0.0000023621,0.0000023632,0.0000023654,0.0000023684, +0.0000023706,0.0000023719,0.0000023703,0.0000023683,0.0000023653, +0.0000023614,0.0000023570,0.0000023523,0.0000023491,0.0000023479, +0.0000023491,0.0000023513,0.0000023541,0.0000023562,0.0000023573, +0.0000023581,0.0000023588,0.0000023591,0.0000023588,0.0000023578, +0.0000023558,0.0000023533,0.0000023506,0.0000023485,0.0000023469, +0.0000023461,0.0000023455,0.0000023458,0.0000023462,0.0000023466, +0.0000023467,0.0000023458,0.0000023438,0.0000023402,0.0000023352, +0.0000023294,0.0000023239,0.0000023196,0.0000023152,0.0000023093, +0.0000023019,0.0000022956,0.0000022920,0.0000022909,0.0000022916, +0.0000022939,0.0000022964,0.0000022979,0.0000023002,0.0000023048, +0.0000023103,0.0000023162,0.0000023211,0.0000023247,0.0000023273, +0.0000023285,0.0000023284,0.0000023273,0.0000023255,0.0000023245, +0.0000023248,0.0000023248,0.0000023287,0.0000023337,0.0000023397, +0.0000023477,0.0000023566,0.0000023652,0.0000023731,0.0000023815, +0.0000023918,0.0000024043,0.0000024174,0.0000024293,0.0000024380, +0.0000024419,0.0000024432,0.0000024457,0.0000024484,0.0000024512, +0.0000024544,0.0000024567,0.0000024581,0.0000024578,0.0000024557, +0.0000024530,0.0000024498,0.0000024466,0.0000024437,0.0000024412, +0.0000024390,0.0000024370,0.0000024356,0.0000024348,0.0000024346, +0.0000024344,0.0000024340,0.0000024338,0.0000024335,0.0000024324, +0.0000024305,0.0000024262,0.0000024194,0.0000024130,0.0000024093, +0.0000024068,0.0000024036,0.0000023990,0.0000023929,0.0000023834, +0.0000023719,0.0000023641,0.0000023593,0.0000023499,0.0000023349, +0.0000023228,0.0000023173,0.0000023140,0.0000023109,0.0000023107, +0.0000023116,0.0000023124,0.0000023135,0.0000023140,0.0000023102, +0.0000023017,0.0000022955,0.0000022948,0.0000022957,0.0000022955, +0.0000022949,0.0000022959,0.0000022967,0.0000022961,0.0000022944, +0.0000022923,0.0000022886,0.0000022820,0.0000022748,0.0000022694, +0.0000022660,0.0000022645,0.0000022653,0.0000022675,0.0000022692, +0.0000022692,0.0000022682,0.0000022663,0.0000022645,0.0000022665, +0.0000022797,0.0000023043,0.0000023193,0.0000023195,0.0000023188, +0.0000023163,0.0000023181,0.0000023202,0.0000023168,0.0000023207, +0.0000023319,0.0000023409,0.0000023461,0.0000023506,0.0000023539, +0.0000023561,0.0000023595,0.0000023597,0.0000023569,0.0000023522, +0.0000023462,0.0000023406,0.0000023381,0.0000023375,0.0000023349, +0.0000023239,0.0000023063,0.0000022991,0.0000023003,0.0000023072, +0.0000023147,0.0000023214,0.0000023277,0.0000023308,0.0000023296, +0.0000023248,0.0000023149,0.0000023016,0.0000022887,0.0000022794, +0.0000022706,0.0000022650,0.0000022638,0.0000022654,0.0000022725, +0.0000022844,0.0000022937,0.0000022959,0.0000022957,0.0000022971, +0.0000023002,0.0000023013,0.0000023005,0.0000022974,0.0000022924, +0.0000022874,0.0000022828,0.0000022778,0.0000022731,0.0000022683, +0.0000022642,0.0000022620,0.0000022598,0.0000022552,0.0000022470, +0.0000022377,0.0000022326,0.0000022316,0.0000022273,0.0000022218, +0.0000022228,0.0000022299,0.0000022397,0.0000022498,0.0000022563, +0.0000022555,0.0000022446,0.0000022344,0.0000022342,0.0000022434, +0.0000022554,0.0000022616,0.0000022643,0.0000022684,0.0000022716, +0.0000022671,0.0000022627,0.0000022684,0.0000022812,0.0000022880, +0.0000022908,0.0000022986,0.0000023122,0.0000023230,0.0000023250, +0.0000023206,0.0000023079,0.0000022868,0.0000022589,0.0000022301, +0.0000022084,0.0000022030,0.0000022124,0.0000022273,0.0000022387, +0.0000022427,0.0000022414,0.0000022358,0.0000022284,0.0000022217, +0.0000022181,0.0000022169,0.0000022171,0.0000022204,0.0000022269, +0.0000022358,0.0000022455,0.0000022545,0.0000022628,0.0000022708, +0.0000022800,0.0000022902,0.0000022988,0.0000023041,0.0000023058, +0.0000023058,0.0000023051,0.0000023033,0.0000022997,0.0000022968, +0.0000022979,0.0000023030,0.0000023104,0.0000023182,0.0000023250, +0.0000023297,0.0000023315,0.0000023315,0.0000023307,0.0000023296, +0.0000023292,0.0000023304,0.0000023325,0.0000023349,0.0000023376, +0.0000023395,0.0000023393,0.0000023361,0.0000023322,0.0000023290, +0.0000023254,0.0000023196,0.0000023115,0.0000023018,0.0000022921, +0.0000022834,0.0000022753,0.0000022693,0.0000022678,0.0000022712, +0.0000022773,0.0000022851,0.0000022937,0.0000023000,0.0000023019, +0.0000023015,0.0000023013,0.0000022996,0.0000022957,0.0000022974, +0.0000023145,0.0000023326,0.0000023404,0.0000023490,0.0000023613, +0.0000023677,0.0000023676,0.0000023661,0.0000023664,0.0000023683, +0.0000023703,0.0000023722,0.0000023754,0.0000023814,0.0000023915, +0.0000024001,0.0000024054,0.0000024127,0.0000024217,0.0000024251, +0.0000024238,0.0000024228,0.0000024244,0.0000024247,0.0000024209, +0.0000024147,0.0000024139,0.0000024181,0.0000024202,0.0000024198, +0.0000024190,0.0000024104,0.0000024003,0.0000023874,0.0000023774, +0.0000023762,0.0000023776,0.0000023778,0.0000023767,0.0000023756, +0.0000023761,0.0000023774,0.0000023779,0.0000023764,0.0000023736, +0.0000023738,0.0000023795,0.0000023848,0.0000023867,0.0000023887, +0.0000023900,0.0000023901,0.0000023926,0.0000023981,0.0000024007, +0.0000023993,0.0000023955,0.0000023916,0.0000023890,0.0000023882, +0.0000023874,0.0000023832,0.0000023752,0.0000023673,0.0000023628, +0.0000023612,0.0000023608,0.0000023601,0.0000023589,0.0000023572, +0.0000023556,0.0000023540,0.0000023530,0.0000023525,0.0000023526, +0.0000023524,0.0000023518,0.0000023506,0.0000023487,0.0000023462, +0.0000023432,0.0000023410,0.0000023400,0.0000023401,0.0000023413, +0.0000023438,0.0000023471,0.0000023512,0.0000023564,0.0000023631, +0.0000023720,0.0000023827,0.0000023941,0.0000024036,0.0000024088, +0.0000024102,0.0000024085,0.0000024034,0.0000023971,0.0000023919, +0.0000023878,0.0000023855,0.0000023840,0.0000023805,0.0000023789, +0.0000023778,0.0000023771,0.0000023771,0.0000023780,0.0000023796, +0.0000023817,0.0000023838,0.0000023856,0.0000023872,0.0000023891, +0.0000023906,0.0000023909,0.0000023906,0.0000023899,0.0000023880, +0.0000023854,0.0000023826,0.0000023803,0.0000023777,0.0000023759, +0.0000023747,0.0000023737,0.0000023728,0.0000023719,0.0000023706, +0.0000023690,0.0000023677,0.0000023665,0.0000023657,0.0000023656, +0.0000023654,0.0000023644,0.0000023630,0.0000023617,0.0000023604, +0.0000023600,0.0000023607,0.0000023621,0.0000023643,0.0000023669, +0.0000023714,0.0000023758,0.0000023802,0.0000023840,0.0000023874, +0.0000023898,0.0000023907,0.0000023904,0.0000023885,0.0000023853, +0.0000023823,0.0000023778,0.0000023737,0.0000023698,0.0000023677, +0.0000023668,0.0000023670,0.0000023682,0.0000023702,0.0000023727, +0.0000023748,0.0000023757,0.0000023761,0.0000023761,0.0000023762, +0.0000023765,0.0000023769,0.0000023781,0.0000023808,0.0000023848, +0.0000023895,0.0000023935,0.0000023959,0.0000023975,0.0000024003, +0.0000024028,0.0000024011,0.0000023937,0.0000023848,0.0000023795, +0.0000023790,0.0000023819,0.0000023883,0.0000023935,0.0000023932, +0.0000023849,0.0000023673,0.0000023477,0.0000023315,0.0000023187, +0.0000023075,0.0000022948,0.0000022808,0.0000022682,0.0000022584, +0.0000022542,0.0000022532,0.0000022508,0.0000022477,0.0000022465, +0.0000022465,0.0000022452,0.0000022412,0.0000022369,0.0000022348, +0.0000022344,0.0000022345,0.0000022340,0.0000022341,0.0000022380, +0.0000022459,0.0000022532,0.0000022552,0.0000022535,0.0000022521, +0.0000022520,0.0000022522,0.0000022526,0.0000022525,0.0000022500, +0.0000022435,0.0000022348,0.0000022271,0.0000022205,0.0000022133, +0.0000022061,0.0000022015,0.0000022031,0.0000022080,0.0000022058, +0.0000021936,0.0000021803,0.0000021687,0.0000021587,0.0000021594, +0.0000021709,0.0000021769,0.0000021724,0.0000021684,0.0000021711, +0.0000021842,0.0000022051,0.0000022288,0.0000022482,0.0000022569, +0.0000022574,0.0000022597,0.0000022731,0.0000022944,0.0000023102, +0.0000023145,0.0000023154,0.0000023218,0.0000023315,0.0000023370, +0.0000023388,0.0000023409,0.0000023428,0.0000023432,0.0000023428, +0.0000023403,0.0000023356,0.0000023317,0.0000023310,0.0000023345, +0.0000023413,0.0000023472,0.0000023502,0.0000023507,0.0000023473, +0.0000023391,0.0000023291,0.0000023186,0.0000023079,0.0000022977, +0.0000022871,0.0000022748,0.0000022609,0.0000022457,0.0000022291, +0.0000022120,0.0000021953,0.0000021789,0.0000021630,0.0000021478, +0.0000021340,0.0000021221,0.0000021130,0.0000021077,0.0000021061, +0.0000021060,0.0000021055,0.0000021033,0.0000021011,0.0000020983, +0.0000020944,0.0000020890,0.0000020828,0.0000020781,0.0000020775, +0.0000020821,0.0000020909,0.0000021005,0.0000021095,0.0000021167, +0.0000021222,0.0000021262,0.0000021282,0.0000021287,0.0000021278, +0.0000021250,0.0000021204,0.0000021146,0.0000021081,0.0000021011, +0.0000020932,0.0000020848,0.0000020761,0.0000020694,0.0000020659, +0.0000020673,0.0000020735,0.0000020859,0.0000021056,0.0000021313, +0.0000021576,0.0000021778,0.0000021886,0.0000021925,0.0000021960, +0.0000022043,0.0000022195,0.0000022425,0.0000022691,0.0000022878, +0.0000022913,0.0000022814,0.0000022668,0.0000022569,0.0000022567, +0.0000022665,0.0000022797,0.0000022924,0.0000023108,0.0000023340, +0.0000023515,0.0000023623,0.0000023752,0.0000023918,0.0000024085, +0.0000024256,0.0000024435,0.0000024573,0.0000024667,0.0000024771, +0.0000024888,0.0000024961,0.0000024974,0.0000024976,0.0000024992, +0.0000025016,0.0000025047,0.0000025068,0.0000025053,0.0000025010, +0.0000024983,0.0000024986,0.0000024991,0.0000024980,0.0000024960, +0.0000024942,0.0000024933,0.0000024922,0.0000024905,0.0000024886, +0.0000024870,0.0000024877,0.0000024934,0.0000025019,0.0000025053, +0.0000025028,0.0000024909,0.0000024732,0.0000024522,0.0000024296, +0.0000024143,0.0000024067,0.0000023939,0.0000023746,0.0000023592, +0.0000023512,0.0000023501,0.0000023544,0.0000023609,0.0000023682, +0.0000023763,0.0000023842,0.0000023895,0.0000023907,0.0000023892, +0.0000023862,0.0000023845,0.0000023842,0.0000023840,0.0000023837, +0.0000023837,0.0000023836,0.0000023826,0.0000023802,0.0000023764, +0.0000023720,0.0000023676,0.0000023636,0.0000023592,0.0000023542, +0.0000023487,0.0000023427,0.0000023377,0.0000023350,0.0000023350, +0.0000023365,0.0000023383,0.0000023404,0.0000023434,0.0000023475, +0.0000023514,0.0000023550,0.0000023592,0.0000023645,0.0000023706, +0.0000023779,0.0000023861,0.0000023960,0.0000024086,0.0000024241, +0.0000024431,0.0000024654,0.0000024896,0.0000025122,0.0000025293, +0.0000025384,0.0000025410,0.0000025392,0.0000025362,0.0000025348, +0.0000025353,0.0000025364,0.0000025376,0.0000025383,0.0000025382, +0.0000025366,0.0000025335,0.0000025301,0.0000025277,0.0000025271, +0.0000025259,0.0000025212,0.0000025167,0.0000025164,0.0000025132, +0.0000024963,0.0000024746,0.0000024620,0.0000024575,0.0000024537, +0.0000024487,0.0000024440,0.0000024414,0.0000024407,0.0000024384, +0.0000024251,0.0000024009,0.0000023772,0.0000023647,0.0000023614, +0.0000023606,0.0000023572,0.0000023429,0.0000023183,0.0000022904, +0.0000022666,0.0000022488,0.0000022342,0.0000022199,0.0000022046, +0.0000021879,0.0000021732,0.0000021636,0.0000021611,0.0000021646, +0.0000021727,0.0000021821,0.0000021887,0.0000021896,0.0000021880, +0.0000021890,0.0000021911,0.0000021902,0.0000021784,0.0000021567, +0.0000021355,0.0000021237,0.0000021194,0.0000021198,0.0000021218, +0.0000021237,0.0000021263,0.0000021293,0.0000021299,0.0000021276, +0.0000021231,0.0000021192,0.0000021180,0.0000021184,0.0000021199, +0.0000021207,0.0000021201,0.0000021182,0.0000021152,0.0000021123, +0.0000021117,0.0000021107,0.0000021096,0.0000021097,0.0000021105, +0.0000021114,0.0000021126,0.0000021139,0.0000021143,0.0000021134, +0.0000021121,0.0000021113,0.0000021123,0.0000021150,0.0000021187, +0.0000021216,0.0000021243,0.0000021276,0.0000021317,0.0000021366, +0.0000021423,0.0000021472,0.0000021494,0.0000021500,0.0000021497, +0.0000021493,0.0000021492,0.0000021488,0.0000021491,0.0000021504, +0.0000021527,0.0000021554,0.0000021574,0.0000021588,0.0000021599, +0.0000021620,0.0000021654,0.0000021692,0.0000021726,0.0000021748, +0.0000021763,0.0000021777,0.0000021793,0.0000021814,0.0000021831, +0.0000021833,0.0000021817,0.0000021787,0.0000021746,0.0000021699, +0.0000021660,0.0000021645,0.0000021638,0.0000021627,0.0000021610, +0.0000021594,0.0000021588,0.0000021584,0.0000021579,0.0000021576, +0.0000021568,0.0000021552,0.0000021540,0.0000021537,0.0000021543, +0.0000021565,0.0000021596,0.0000021624,0.0000021643,0.0000021649, +0.0000021649,0.0000021656,0.0000021677,0.0000021700,0.0000021715, +0.0000021736,0.0000021783,0.0000021871,0.0000021998,0.0000022147, +0.0000022288,0.0000022398,0.0000022466,0.0000022507,0.0000022537, +0.0000022559,0.0000022573,0.0000022572,0.0000022556,0.0000022535, +0.0000022503,0.0000022465,0.0000022422,0.0000022388,0.0000022367, +0.0000022352,0.0000022341,0.0000022335,0.0000022338,0.0000022351, +0.0000022372,0.0000022394,0.0000022410,0.0000022417,0.0000022419, +0.0000022418,0.0000022410,0.0000022394,0.0000022374,0.0000022349, +0.0000022318,0.0000022278,0.0000022226,0.0000022161,0.0000022101, +0.0000022061,0.0000022037,0.0000022018,0.0000022003,0.0000021996, +0.0000021986,0.0000021967,0.0000021944,0.0000021872,0.0000021742, +0.0000021655,0.0000021664,0.0000021744,0.0000021817,0.0000021841, +0.0000021841,0.0000021801,0.0000021706,0.0000021616,0.0000021578, +0.0000021577,0.0000021601,0.0000021646,0.0000021685,0.0000021696, +0.0000021686,0.0000021665,0.0000021647,0.0000021645,0.0000021665, +0.0000021703,0.0000021758,0.0000021818,0.0000021863,0.0000021895, +0.0000021919,0.0000021951,0.0000021993,0.0000022036,0.0000022070, +0.0000022092,0.0000022105,0.0000022116,0.0000022122,0.0000022116, +0.0000022090,0.0000022058,0.0000022035,0.0000022021,0.0000022010, +0.0000022012,0.0000022032,0.0000022069,0.0000022113,0.0000022134, +0.0000022128,0.0000022102,0.0000022054,0.0000022000,0.0000021968, +0.0000021945,0.0000021893,0.0000021819,0.0000021729,0.0000021592, +0.0000021405,0.0000021233,0.0000021121,0.0000021049,0.0000020993, +0.0000020962,0.0000020958,0.0000020974,0.0000020987,0.0000020992, +0.0000021001,0.0000021002,0.0000021012,0.0000021212,0.0000021583, +0.0000021874,0.0000022045,0.0000022187,0.0000022288,0.0000022348, +0.0000022418,0.0000022497,0.0000022556,0.0000022595,0.0000022631, +0.0000022660,0.0000022679,0.0000022693,0.0000022703,0.0000022709, +0.0000022705,0.0000022693,0.0000022691,0.0000022709,0.0000022734, +0.0000022746,0.0000022741,0.0000022716,0.0000022681,0.0000022649, +0.0000022638,0.0000022646,0.0000022666,0.0000022698,0.0000022745, +0.0000022797,0.0000022845,0.0000022880,0.0000022895,0.0000022889, +0.0000022870,0.0000022851,0.0000022834,0.0000022805,0.0000022767, +0.0000022730,0.0000022706,0.0000022695,0.0000022691,0.0000022682, +0.0000022661,0.0000022610,0.0000022488,0.0000022274,0.0000022021, +0.0000021819,0.0000021713,0.0000021822,0.0000021916,0.0000021979, +0.0000022035,0.0000022109,0.0000022161,0.0000022158,0.0000022137, +0.0000022142,0.0000022167,0.0000022100,0.0000021864,0.0000021720, +0.0000021804,0.0000022030,0.0000022345,0.0000022681,0.0000022838, +0.0000022830,0.0000022808,0.0000022846,0.0000022941,0.0000023027, +0.0000023061,0.0000023063,0.0000023072,0.0000023099,0.0000023145, +0.0000023231,0.0000023332,0.0000023413,0.0000023446,0.0000023420, +0.0000023373,0.0000023370,0.0000023397,0.0000023402,0.0000023359, +0.0000023270,0.0000023150,0.0000023057,0.0000023042,0.0000023073, +0.0000023092,0.0000023076,0.0000023051,0.0000023043,0.0000023048, +0.0000023057,0.0000023060,0.0000023054,0.0000023043,0.0000023042, +0.0000023047,0.0000023040,0.0000023015,0.0000022988,0.0000022973, +0.0000022976,0.0000023008,0.0000023057,0.0000023109,0.0000023168, +0.0000023244,0.0000023324,0.0000023396,0.0000023445,0.0000023460, +0.0000023455,0.0000023446,0.0000023425,0.0000023394,0.0000023358, +0.0000023331,0.0000023321,0.0000023307,0.0000023265,0.0000023166, +0.0000023053,0.0000022971,0.0000022927,0.0000022929,0.0000022966, +0.0000022993,0.0000022996,0.0000023003,0.0000023023,0.0000023037, +0.0000023037,0.0000023008,0.0000022981,0.0000022974,0.0000022973, +0.0000022990,0.0000023033,0.0000023078,0.0000023116,0.0000023131, +0.0000023135,0.0000023114,0.0000023049,0.0000022959,0.0000022860, +0.0000022772,0.0000022713,0.0000022677,0.0000022668,0.0000022691, +0.0000022700,0.0000022753,0.0000022848,0.0000022956,0.0000023057, +0.0000023129,0.0000023184,0.0000023255,0.0000023340,0.0000023420, +0.0000023490,0.0000023539,0.0000023561,0.0000023573,0.0000023581, +0.0000023580,0.0000023571,0.0000023555,0.0000023551,0.0000023559, +0.0000023567,0.0000023563,0.0000023541,0.0000023511,0.0000023489, +0.0000023477,0.0000023466,0.0000023460,0.0000023461,0.0000023468, +0.0000023489,0.0000023521,0.0000023564,0.0000023619,0.0000023682, +0.0000023751,0.0000023822,0.0000023894,0.0000023957,0.0000024002, +0.0000024021,0.0000023997,0.0000023898,0.0000023770,0.0000023688, +0.0000023668,0.0000023690,0.0000023714,0.0000023706,0.0000023654, +0.0000023546,0.0000023415,0.0000023319,0.0000023267,0.0000023237, +0.0000023204,0.0000023170,0.0000023136,0.0000023096,0.0000023070, +0.0000023067,0.0000023083,0.0000023114,0.0000023159,0.0000023218, +0.0000023269,0.0000023299,0.0000023300,0.0000023271,0.0000023243, +0.0000023216,0.0000023228,0.0000023276,0.0000023340,0.0000023417, +0.0000023500,0.0000023590,0.0000023693,0.0000023807,0.0000023932, +0.0000024068,0.0000024207,0.0000024336,0.0000024437,0.0000024514, +0.0000024576,0.0000024634,0.0000024686,0.0000024733,0.0000024774, +0.0000024806,0.0000024824,0.0000024823,0.0000024797,0.0000024748, +0.0000024679,0.0000024589,0.0000024483,0.0000024373,0.0000024272, +0.0000024196,0.0000024140,0.0000024091,0.0000024039,0.0000023988, +0.0000023945,0.0000023913,0.0000023882,0.0000023847,0.0000023810, +0.0000023778,0.0000023755,0.0000023748,0.0000023750,0.0000023758, +0.0000023770,0.0000023780,0.0000023790,0.0000023804,0.0000023821, +0.0000023839,0.0000023859,0.0000023881,0.0000023899,0.0000023915, +0.0000023926,0.0000023934,0.0000023936,0.0000023930,0.0000023896, +0.0000023870,0.0000023833,0.0000023780,0.0000023715,0.0000023646, +0.0000023584,0.0000023540,0.0000023517,0.0000023512,0.0000023511, +0.0000023528,0.0000023561,0.0000023594,0.0000023618,0.0000023629, +0.0000023635,0.0000023634,0.0000023635,0.0000023633,0.0000023641, +0.0000023653,0.0000023659,0.0000023668,0.0000023671,0.0000023670, +0.0000023652,0.0000023627,0.0000023596,0.0000023568,0.0000023553, +0.0000023550,0.0000023554,0.0000023559,0.0000023566,0.0000023567, +0.0000023565,0.0000023560,0.0000023550,0.0000023541,0.0000023531, +0.0000023515,0.0000023497,0.0000023481,0.0000023470,0.0000023464, +0.0000023464,0.0000023471,0.0000023478,0.0000023484,0.0000023472, +0.0000023453,0.0000023429,0.0000023393,0.0000023345,0.0000023289, +0.0000023238,0.0000023200,0.0000023167,0.0000023118,0.0000023051, +0.0000022986,0.0000022941,0.0000022921,0.0000022924,0.0000022948, +0.0000022976,0.0000023008,0.0000023060,0.0000023128,0.0000023203, +0.0000023278,0.0000023341,0.0000023386,0.0000023413,0.0000023429, +0.0000023443,0.0000023449,0.0000023446,0.0000023425,0.0000023387, +0.0000023350,0.0000023319,0.0000023294,0.0000023248,0.0000023216, +0.0000023217,0.0000023232,0.0000023260,0.0000023315,0.0000023395, +0.0000023495,0.0000023602,0.0000023725,0.0000023866,0.0000024009, +0.0000024159,0.0000024305,0.0000024417,0.0000024479,0.0000024505, +0.0000024515,0.0000024521,0.0000024517,0.0000024492,0.0000024459, +0.0000024422,0.0000024378,0.0000024334,0.0000024296,0.0000024261, +0.0000024227,0.0000024199,0.0000024184,0.0000024189,0.0000024198, +0.0000024207,0.0000024212,0.0000024218,0.0000024216,0.0000024198, +0.0000024173,0.0000024139,0.0000024113,0.0000024098,0.0000024083, +0.0000024055,0.0000024001,0.0000023918,0.0000023800,0.0000023677, +0.0000023601,0.0000023551,0.0000023477,0.0000023358,0.0000023254, +0.0000023209,0.0000023196,0.0000023179,0.0000023164,0.0000023144, +0.0000023133,0.0000023110,0.0000023043,0.0000022938,0.0000022867, +0.0000022859,0.0000022885,0.0000022904,0.0000022905,0.0000022902, +0.0000022913,0.0000022932,0.0000022939,0.0000022932,0.0000022918, +0.0000022895,0.0000022849,0.0000022790,0.0000022733,0.0000022688, +0.0000022663,0.0000022665,0.0000022687,0.0000022711,0.0000022727, +0.0000022730,0.0000022711,0.0000022679,0.0000022667,0.0000022703, +0.0000022862,0.0000023100,0.0000023216,0.0000023221,0.0000023218, +0.0000023189,0.0000023212,0.0000023222,0.0000023171,0.0000023173, +0.0000023270,0.0000023367,0.0000023420,0.0000023445,0.0000023475, +0.0000023529,0.0000023560,0.0000023559,0.0000023544,0.0000023511, +0.0000023448,0.0000023394,0.0000023363,0.0000023366,0.0000023364, +0.0000023278,0.0000023101,0.0000023000,0.0000022996,0.0000023009, +0.0000023049,0.0000023109,0.0000023157,0.0000023168,0.0000023138, +0.0000023071,0.0000022987,0.0000022897,0.0000022819,0.0000022737, +0.0000022681,0.0000022671,0.0000022693,0.0000022773,0.0000022870, +0.0000022925,0.0000022943,0.0000022956,0.0000022982,0.0000022999, +0.0000023000,0.0000022997,0.0000022973,0.0000022925,0.0000022869, +0.0000022816,0.0000022760,0.0000022707,0.0000022648,0.0000022596, +0.0000022567,0.0000022549,0.0000022507,0.0000022415,0.0000022313, +0.0000022270,0.0000022262,0.0000022221,0.0000022194,0.0000022242, +0.0000022340,0.0000022450,0.0000022528,0.0000022563,0.0000022523, +0.0000022397,0.0000022323,0.0000022369,0.0000022497,0.0000022615, +0.0000022665,0.0000022683,0.0000022718,0.0000022727,0.0000022669, +0.0000022633,0.0000022700,0.0000022824,0.0000022883,0.0000022913, +0.0000023008,0.0000023150,0.0000023243,0.0000023254,0.0000023210, +0.0000023059,0.0000022824,0.0000022525,0.0000022210,0.0000022012, +0.0000022001,0.0000022107,0.0000022268,0.0000022363,0.0000022394, +0.0000022375,0.0000022328,0.0000022275,0.0000022225,0.0000022192, +0.0000022180,0.0000022192,0.0000022236,0.0000022316,0.0000022419, +0.0000022521,0.0000022604,0.0000022674,0.0000022750,0.0000022836, +0.0000022925,0.0000022993,0.0000023029,0.0000023034,0.0000023019, +0.0000023001,0.0000022987,0.0000022970,0.0000022959,0.0000022979, +0.0000023038,0.0000023113,0.0000023196,0.0000023268,0.0000023310, +0.0000023319,0.0000023321,0.0000023315,0.0000023305,0.0000023301, +0.0000023305,0.0000023319,0.0000023337,0.0000023358,0.0000023379, +0.0000023387,0.0000023370,0.0000023333,0.0000023296,0.0000023264, +0.0000023227,0.0000023169,0.0000023084,0.0000022983,0.0000022891, +0.0000022810,0.0000022743,0.0000022703,0.0000022697,0.0000022744, +0.0000022817,0.0000022891,0.0000022952,0.0000022987,0.0000022992, +0.0000022992,0.0000022995,0.0000022984,0.0000022956,0.0000022989, +0.0000023159,0.0000023334,0.0000023400,0.0000023464,0.0000023590, +0.0000023675,0.0000023679,0.0000023649,0.0000023637,0.0000023654, +0.0000023679,0.0000023698,0.0000023727,0.0000023785,0.0000023885, +0.0000023974,0.0000024039,0.0000024122,0.0000024197,0.0000024215, +0.0000024206,0.0000024207,0.0000024225,0.0000024222,0.0000024174, +0.0000024128,0.0000024141,0.0000024191,0.0000024202,0.0000024202, +0.0000024169,0.0000024070,0.0000023966,0.0000023831,0.0000023767, +0.0000023787,0.0000023812,0.0000023812,0.0000023792,0.0000023771, +0.0000023762,0.0000023775,0.0000023784,0.0000023779,0.0000023760, +0.0000023766,0.0000023817,0.0000023868,0.0000023881,0.0000023892, +0.0000023906,0.0000023910,0.0000023922,0.0000023962,0.0000023992, +0.0000023985,0.0000023946,0.0000023898,0.0000023861,0.0000023850, +0.0000023851,0.0000023843,0.0000023802,0.0000023733,0.0000023668, +0.0000023630,0.0000023609,0.0000023599,0.0000023592,0.0000023581, +0.0000023565,0.0000023546,0.0000023534,0.0000023527,0.0000023521, +0.0000023512,0.0000023502,0.0000023490,0.0000023474,0.0000023450, +0.0000023425,0.0000023403,0.0000023391,0.0000023388,0.0000023391, +0.0000023405,0.0000023422,0.0000023454,0.0000023488,0.0000023515, +0.0000023542,0.0000023588,0.0000023663,0.0000023764,0.0000023876, +0.0000023980,0.0000024053,0.0000024083,0.0000024072,0.0000024034, +0.0000023973,0.0000023917,0.0000023865,0.0000023812,0.0000023764, +0.0000023726,0.0000023697,0.0000023671,0.0000023651,0.0000023645, +0.0000023645,0.0000023650,0.0000023661,0.0000023683,0.0000023715, +0.0000023752,0.0000023785,0.0000023809,0.0000023826,0.0000023833, +0.0000023826,0.0000023809,0.0000023787,0.0000023766,0.0000023755, +0.0000023751,0.0000023752,0.0000023750,0.0000023755,0.0000023757, +0.0000023755,0.0000023756,0.0000023760,0.0000023764,0.0000023772, +0.0000023781,0.0000023783,0.0000023776,0.0000023760,0.0000023739, +0.0000023713,0.0000023689,0.0000023678,0.0000023670,0.0000023661, +0.0000023668,0.0000023690,0.0000023703,0.0000023728,0.0000023739, +0.0000023766,0.0000023785,0.0000023794,0.0000023795,0.0000023785, +0.0000023774,0.0000023748,0.0000023720,0.0000023689,0.0000023669, +0.0000023656,0.0000023655,0.0000023671,0.0000023692,0.0000023717, +0.0000023743,0.0000023752,0.0000023747,0.0000023737,0.0000023716, +0.0000023700,0.0000023691,0.0000023695,0.0000023713,0.0000023745, +0.0000023792,0.0000023853,0.0000023910,0.0000023941,0.0000023960, +0.0000023998,0.0000024020,0.0000023983,0.0000023881,0.0000023772, +0.0000023719,0.0000023721,0.0000023767,0.0000023847,0.0000023906, +0.0000023905,0.0000023805,0.0000023607,0.0000023413,0.0000023269, +0.0000023148,0.0000023037,0.0000022909,0.0000022765,0.0000022634, +0.0000022558,0.0000022550,0.0000022553,0.0000022533,0.0000022500, +0.0000022488,0.0000022489,0.0000022481,0.0000022455,0.0000022434, +0.0000022428,0.0000022436,0.0000022459,0.0000022498,0.0000022553, +0.0000022607,0.0000022630,0.0000022615,0.0000022585,0.0000022569, +0.0000022570,0.0000022577,0.0000022581,0.0000022578,0.0000022566, +0.0000022531,0.0000022458,0.0000022361,0.0000022268,0.0000022189, +0.0000022124,0.0000022066,0.0000022026,0.0000022035,0.0000022074, +0.0000022057,0.0000021945,0.0000021811,0.0000021694,0.0000021584, +0.0000021561,0.0000021649,0.0000021708,0.0000021671,0.0000021632, +0.0000021652,0.0000021778,0.0000021992,0.0000022241,0.0000022453, +0.0000022567,0.0000022583,0.0000022584,0.0000022682,0.0000022897, +0.0000023094,0.0000023159,0.0000023162,0.0000023188,0.0000023225, +0.0000023232,0.0000023226,0.0000023234,0.0000023244,0.0000023246, +0.0000023244,0.0000023222,0.0000023189,0.0000023176,0.0000023187, +0.0000023236,0.0000023306,0.0000023360,0.0000023389,0.0000023395, +0.0000023354,0.0000023263,0.0000023153,0.0000023038,0.0000022926, +0.0000022824,0.0000022722,0.0000022603,0.0000022462,0.0000022304, +0.0000022131,0.0000021948,0.0000021760,0.0000021563,0.0000021373, +0.0000021217,0.0000021116,0.0000021062,0.0000021044,0.0000021048, +0.0000021058,0.0000021065,0.0000021056,0.0000021037,0.0000021019, +0.0000021003,0.0000020986,0.0000020963,0.0000020936,0.0000020919, +0.0000020931,0.0000020982,0.0000021068,0.0000021170,0.0000021269, +0.0000021348,0.0000021406,0.0000021440,0.0000021448,0.0000021443, +0.0000021423,0.0000021387,0.0000021331,0.0000021256,0.0000021168, +0.0000021075,0.0000020982,0.0000020883,0.0000020785,0.0000020704, +0.0000020658,0.0000020647,0.0000020672,0.0000020749,0.0000020887, +0.0000021094,0.0000021354,0.0000021610,0.0000021788,0.0000021861, +0.0000021878,0.0000021920,0.0000022036,0.0000022235,0.0000022497, +0.0000022741,0.0000022856,0.0000022810,0.0000022675,0.0000022546, +0.0000022507,0.0000022570,0.0000022712,0.0000022851,0.0000023002, +0.0000023213,0.0000023420,0.0000023545,0.0000023642,0.0000023795, +0.0000023983,0.0000024161,0.0000024336,0.0000024493,0.0000024608, +0.0000024705,0.0000024819,0.0000024918,0.0000024968,0.0000024987, +0.0000025018,0.0000025047,0.0000025075,0.0000025107,0.0000025113, +0.0000025075,0.0000025013,0.0000024983,0.0000024984,0.0000024979, +0.0000024949,0.0000024912,0.0000024893,0.0000024888,0.0000024883, +0.0000024870,0.0000024854,0.0000024857,0.0000024911,0.0000024991, +0.0000025023,0.0000024997,0.0000024876,0.0000024689,0.0000024462, +0.0000024230,0.0000024088,0.0000024022,0.0000023891,0.0000023711, +0.0000023583,0.0000023528,0.0000023536,0.0000023590,0.0000023654, +0.0000023709,0.0000023770,0.0000023833,0.0000023874,0.0000023882, +0.0000023863,0.0000023836,0.0000023825,0.0000023828,0.0000023831, +0.0000023829,0.0000023825,0.0000023815,0.0000023795,0.0000023767, +0.0000023729,0.0000023689,0.0000023650,0.0000023609,0.0000023558, +0.0000023496,0.0000023429,0.0000023368,0.0000023328,0.0000023318, +0.0000023329,0.0000023347,0.0000023363,0.0000023377,0.0000023399, +0.0000023425,0.0000023449,0.0000023471,0.0000023492,0.0000023514, +0.0000023541,0.0000023582,0.0000023647,0.0000023738,0.0000023853, +0.0000023986,0.0000024135,0.0000024305,0.0000024502,0.0000024719, +0.0000024941,0.0000025137,0.0000025276,0.0000025339,0.0000025341, +0.0000025317,0.0000025296,0.0000025287,0.0000025281,0.0000025272, +0.0000025258,0.0000025237,0.0000025213,0.0000025194,0.0000025188, +0.0000025186,0.0000025167,0.0000025121,0.0000025087,0.0000025089, +0.0000025051,0.0000024873,0.0000024656,0.0000024535,0.0000024489, +0.0000024446,0.0000024399,0.0000024366,0.0000024344,0.0000024330, +0.0000024321,0.0000024261,0.0000024111,0.0000023903,0.0000023705, +0.0000023590,0.0000023555,0.0000023563,0.0000023520,0.0000023445, +0.0000023275,0.0000023027,0.0000022749,0.0000022504,0.0000022316, +0.0000022156,0.0000021988,0.0000021820,0.0000021687,0.0000021608, +0.0000021589,0.0000021632,0.0000021741,0.0000021858,0.0000021925, +0.0000021930,0.0000021905,0.0000021883,0.0000021883,0.0000021858, +0.0000021740,0.0000021517,0.0000021295,0.0000021176,0.0000021140, +0.0000021158,0.0000021184,0.0000021218,0.0000021266,0.0000021301, +0.0000021305,0.0000021285,0.0000021251,0.0000021229,0.0000021216, +0.0000021212,0.0000021214,0.0000021211,0.0000021195,0.0000021166, +0.0000021151,0.0000021163,0.0000021166,0.0000021162,0.0000021164, +0.0000021172,0.0000021180,0.0000021188,0.0000021200,0.0000021207, +0.0000021200,0.0000021177,0.0000021145,0.0000021121,0.0000021115, +0.0000021134,0.0000021170,0.0000021200,0.0000021225,0.0000021250, +0.0000021280,0.0000021319,0.0000021364,0.0000021394,0.0000021407, +0.0000021407,0.0000021403,0.0000021402,0.0000021403,0.0000021412, +0.0000021434,0.0000021467,0.0000021502,0.0000021527,0.0000021549, +0.0000021570,0.0000021597,0.0000021631,0.0000021669,0.0000021707, +0.0000021738,0.0000021761,0.0000021780,0.0000021795,0.0000021812, +0.0000021830,0.0000021843,0.0000021845,0.0000021838,0.0000021822, +0.0000021783,0.0000021731,0.0000021690,0.0000021673,0.0000021670, +0.0000021664,0.0000021648,0.0000021631,0.0000021617,0.0000021603, +0.0000021587,0.0000021571,0.0000021555,0.0000021542,0.0000021537, +0.0000021537,0.0000021544,0.0000021563,0.0000021587,0.0000021610, +0.0000021626,0.0000021631,0.0000021628,0.0000021629,0.0000021639, +0.0000021654,0.0000021673,0.0000021695,0.0000021721,0.0000021766, +0.0000021848,0.0000021967,0.0000022110,0.0000022238,0.0000022336, +0.0000022410,0.0000022465,0.0000022507,0.0000022532,0.0000022542, +0.0000022541,0.0000022530,0.0000022510,0.0000022491,0.0000022458, +0.0000022419,0.0000022381,0.0000022351,0.0000022319,0.0000022296, +0.0000022290,0.0000022300,0.0000022321,0.0000022344,0.0000022364, +0.0000022378,0.0000022384,0.0000022386,0.0000022381,0.0000022365, +0.0000022339,0.0000022306,0.0000022269,0.0000022224,0.0000022166, +0.0000022106,0.0000022055,0.0000022022,0.0000022005,0.0000021989, +0.0000021973,0.0000021958,0.0000021938,0.0000021922,0.0000021894, +0.0000021798,0.0000021680,0.0000021640,0.0000021684,0.0000021769, +0.0000021821,0.0000021829,0.0000021826,0.0000021784,0.0000021703, +0.0000021626,0.0000021585,0.0000021575,0.0000021585,0.0000021619, +0.0000021662,0.0000021684,0.0000021679,0.0000021660,0.0000021645, +0.0000021644,0.0000021663,0.0000021705,0.0000021771,0.0000021837, +0.0000021880,0.0000021900,0.0000021914,0.0000021933,0.0000021961, +0.0000021996,0.0000022031,0.0000022059,0.0000022071,0.0000022072, +0.0000022069,0.0000022063,0.0000022049,0.0000022032,0.0000022023, +0.0000022022,0.0000022022,0.0000022028,0.0000022045,0.0000022077, +0.0000022124,0.0000022159,0.0000022165,0.0000022139,0.0000022073, +0.0000021984,0.0000021922,0.0000021904,0.0000021888,0.0000021841, +0.0000021772,0.0000021674,0.0000021519,0.0000021325,0.0000021156, +0.0000021045,0.0000020977,0.0000020935,0.0000020926,0.0000020939, +0.0000020969,0.0000020988,0.0000021000,0.0000021008,0.0000021005, +0.0000021076,0.0000021389,0.0000021748,0.0000021966,0.0000022118, +0.0000022241,0.0000022311,0.0000022373,0.0000022456,0.0000022533, +0.0000022581,0.0000022613,0.0000022644,0.0000022669,0.0000022683, +0.0000022686,0.0000022681,0.0000022668,0.0000022652,0.0000022646, +0.0000022657,0.0000022680,0.0000022689,0.0000022674,0.0000022642, +0.0000022609,0.0000022589,0.0000022587,0.0000022597,0.0000022620, +0.0000022654,0.0000022702,0.0000022756,0.0000022800,0.0000022823, +0.0000022824,0.0000022812,0.0000022796,0.0000022781,0.0000022757, +0.0000022719,0.0000022674,0.0000022641,0.0000022627,0.0000022626, +0.0000022627,0.0000022610,0.0000022544,0.0000022398,0.0000022181, +0.0000021956,0.0000021791,0.0000021726,0.0000021737,0.0000021963, +0.0000022026,0.0000022084,0.0000022153,0.0000022197,0.0000022198, +0.0000022176,0.0000022165,0.0000022183,0.0000022191,0.0000022047, +0.0000021807,0.0000021739,0.0000021883,0.0000022135,0.0000022476, +0.0000022750,0.0000022808,0.0000022787,0.0000022788,0.0000022861, +0.0000022964,0.0000023031,0.0000023042,0.0000023044,0.0000023066, +0.0000023094,0.0000023137,0.0000023216,0.0000023299,0.0000023364, +0.0000023385,0.0000023352,0.0000023314,0.0000023326,0.0000023359, +0.0000023360,0.0000023306,0.0000023200,0.0000023086,0.0000023041, +0.0000023073,0.0000023108,0.0000023105,0.0000023078,0.0000023047, +0.0000023028,0.0000023029,0.0000023041,0.0000023054,0.0000023060, +0.0000023063,0.0000023069,0.0000023075,0.0000023065,0.0000023044, +0.0000023028,0.0000023024,0.0000023032,0.0000023060,0.0000023102, +0.0000023150,0.0000023207,0.0000023285,0.0000023375,0.0000023451, +0.0000023499,0.0000023506,0.0000023489,0.0000023471,0.0000023443, +0.0000023406,0.0000023378,0.0000023368,0.0000023375,0.0000023381, +0.0000023360,0.0000023291,0.0000023202,0.0000023119,0.0000023043, +0.0000022996,0.0000022989,0.0000023005,0.0000023011,0.0000023024, +0.0000023050,0.0000023068,0.0000023069,0.0000023049,0.0000023022, +0.0000023009,0.0000022999,0.0000023010,0.0000023054,0.0000023108, +0.0000023168,0.0000023212,0.0000023241,0.0000023248,0.0000023219, +0.0000023161,0.0000023089,0.0000023014,0.0000022941,0.0000022869, +0.0000022796,0.0000022740,0.0000022694,0.0000022672,0.0000022682, +0.0000022744,0.0000022844,0.0000022950,0.0000023039,0.0000023114, +0.0000023179,0.0000023245,0.0000023321,0.0000023401,0.0000023471, +0.0000023513,0.0000023529,0.0000023526,0.0000023518,0.0000023491, +0.0000023471,0.0000023476,0.0000023495,0.0000023506,0.0000023506, +0.0000023493,0.0000023470,0.0000023453,0.0000023436,0.0000023415, +0.0000023405,0.0000023408,0.0000023422,0.0000023442,0.0000023467, +0.0000023502,0.0000023545,0.0000023594,0.0000023653,0.0000023726, +0.0000023813,0.0000023893,0.0000023958,0.0000023998,0.0000024002, +0.0000023949,0.0000023838,0.0000023717,0.0000023643,0.0000023631, +0.0000023648,0.0000023662,0.0000023644,0.0000023576,0.0000023459, +0.0000023338,0.0000023256,0.0000023211,0.0000023188,0.0000023173, +0.0000023151,0.0000023111,0.0000023070,0.0000023040,0.0000023037, +0.0000023069,0.0000023145,0.0000023228,0.0000023289,0.0000023320, +0.0000023327,0.0000023307,0.0000023264,0.0000023205,0.0000023162, +0.0000023159,0.0000023193,0.0000023262,0.0000023349,0.0000023438, +0.0000023518,0.0000023585,0.0000023652,0.0000023737,0.0000023849, +0.0000023973,0.0000024093,0.0000024198,0.0000024283,0.0000024354, +0.0000024413,0.0000024467,0.0000024519,0.0000024564,0.0000024599, +0.0000024620,0.0000024613,0.0000024573,0.0000024502,0.0000024407, +0.0000024299,0.0000024193,0.0000024099,0.0000024031,0.0000023984, +0.0000023947,0.0000023908,0.0000023865,0.0000023824,0.0000023786, +0.0000023747,0.0000023706,0.0000023664,0.0000023625,0.0000023595, +0.0000023573,0.0000023555,0.0000023542,0.0000023528,0.0000023512, +0.0000023496,0.0000023485,0.0000023479,0.0000023475,0.0000023474, +0.0000023481,0.0000023499,0.0000023527,0.0000023563,0.0000023603, +0.0000023641,0.0000023673,0.0000023698,0.0000023711,0.0000023716, +0.0000023710,0.0000023692,0.0000023667,0.0000023629,0.0000023608, +0.0000023582,0.0000023555,0.0000023523,0.0000023507,0.0000023510, +0.0000023527,0.0000023558,0.0000023591,0.0000023622,0.0000023641, +0.0000023651,0.0000023643,0.0000023630,0.0000023619,0.0000023613, +0.0000023610,0.0000023617,0.0000023629,0.0000023638,0.0000023645, +0.0000023638,0.0000023638,0.0000023640,0.0000023637,0.0000023628, +0.0000023615,0.0000023600,0.0000023586,0.0000023572,0.0000023557, +0.0000023541,0.0000023521,0.0000023506,0.0000023491,0.0000023472, +0.0000023454,0.0000023441,0.0000023434,0.0000023432,0.0000023437, +0.0000023440,0.0000023434,0.0000023421,0.0000023408,0.0000023394, +0.0000023372,0.0000023341,0.0000023305,0.0000023266,0.0000023229, +0.0000023195,0.0000023156,0.0000023105,0.0000023050,0.0000023008, +0.0000022990,0.0000022994,0.0000023019,0.0000023059,0.0000023118, +0.0000023191,0.0000023267,0.0000023336,0.0000023390,0.0000023432, +0.0000023465,0.0000023487,0.0000023504,0.0000023524,0.0000023549, +0.0000023568,0.0000023565,0.0000023546,0.0000023526,0.0000023505, +0.0000023470,0.0000023415,0.0000023338,0.0000023259,0.0000023188, +0.0000023107,0.0000023037,0.0000023021,0.0000023038,0.0000023098, +0.0000023192,0.0000023309,0.0000023430,0.0000023561,0.0000023719, +0.0000023898,0.0000024070,0.0000024216,0.0000024328,0.0000024407, +0.0000024446,0.0000024447,0.0000024422,0.0000024382,0.0000024328, +0.0000024274,0.0000024225,0.0000024184,0.0000024147,0.0000024115, +0.0000024096,0.0000024083,0.0000024078,0.0000024071,0.0000024063, +0.0000024052,0.0000024040,0.0000024025,0.0000024014,0.0000024010, +0.0000024014,0.0000024019,0.0000024004,0.0000023960,0.0000023892, +0.0000023800,0.0000023698,0.0000023600,0.0000023526,0.0000023458, +0.0000023371,0.0000023283,0.0000023228,0.0000023205,0.0000023202, +0.0000023192,0.0000023174,0.0000023141,0.0000023093,0.0000023008, +0.0000022895,0.0000022808,0.0000022785,0.0000022800,0.0000022826, +0.0000022854,0.0000022876,0.0000022896,0.0000022915,0.0000022936, +0.0000022947,0.0000022947,0.0000022936,0.0000022916,0.0000022888, +0.0000022851,0.0000022802,0.0000022750,0.0000022717,0.0000022707, +0.0000022715,0.0000022732,0.0000022746,0.0000022755,0.0000022749, +0.0000022717,0.0000022689,0.0000022693,0.0000022752,0.0000022928, +0.0000023155,0.0000023253,0.0000023253,0.0000023257,0.0000023222, +0.0000023236,0.0000023227,0.0000023138,0.0000023122,0.0000023199, +0.0000023285,0.0000023336,0.0000023388,0.0000023446,0.0000023492, +0.0000023519,0.0000023534,0.0000023536,0.0000023497,0.0000023443, +0.0000023388,0.0000023367,0.0000023370,0.0000023363,0.0000023281, +0.0000023136,0.0000023025,0.0000022980,0.0000022978,0.0000023007, +0.0000023038,0.0000023059,0.0000023060,0.0000023027,0.0000022982, +0.0000022923,0.0000022854,0.0000022789,0.0000022733,0.0000022718, +0.0000022753,0.0000022829,0.0000022880,0.0000022898,0.0000022924, +0.0000022953,0.0000022975,0.0000022985,0.0000022994,0.0000023001, +0.0000022985,0.0000022939,0.0000022886,0.0000022826,0.0000022761, +0.0000022688,0.0000022608,0.0000022547,0.0000022525,0.0000022515, +0.0000022472,0.0000022374,0.0000022265,0.0000022221,0.0000022212, +0.0000022190,0.0000022202,0.0000022283,0.0000022405,0.0000022514, +0.0000022561,0.0000022557,0.0000022473,0.0000022333,0.0000022312, +0.0000022416,0.0000022570,0.0000022677,0.0000022716,0.0000022734, +0.0000022760,0.0000022743,0.0000022667,0.0000022636,0.0000022710, +0.0000022822,0.0000022871,0.0000022915,0.0000023023,0.0000023161, +0.0000023241,0.0000023252,0.0000023192,0.0000023023,0.0000022774, +0.0000022471,0.0000022152,0.0000021979,0.0000021981,0.0000022099, +0.0000022256,0.0000022334,0.0000022348,0.0000022330,0.0000022296, +0.0000022266,0.0000022234,0.0000022203,0.0000022195,0.0000022224, +0.0000022287,0.0000022372,0.0000022474,0.0000022575,0.0000022651, +0.0000022709,0.0000022777,0.0000022857,0.0000022927,0.0000022974, +0.0000022994,0.0000022993,0.0000022977,0.0000022962,0.0000022956, +0.0000022956,0.0000022960,0.0000022986,0.0000023043,0.0000023121, +0.0000023198,0.0000023267,0.0000023305,0.0000023313,0.0000023312, +0.0000023312,0.0000023305,0.0000023298,0.0000023301,0.0000023309, +0.0000023323,0.0000023338,0.0000023356,0.0000023366,0.0000023363, +0.0000023341,0.0000023303,0.0000023262,0.0000023226,0.0000023184, +0.0000023119,0.0000023028,0.0000022935,0.0000022856,0.0000022791, +0.0000022745,0.0000022722,0.0000022729,0.0000022786,0.0000022858, +0.0000022917,0.0000022956,0.0000022973,0.0000022974,0.0000022974, +0.0000022980,0.0000022970,0.0000022957,0.0000023016,0.0000023193, +0.0000023355,0.0000023407,0.0000023455,0.0000023569,0.0000023664, +0.0000023674,0.0000023633,0.0000023602,0.0000023608,0.0000023638, +0.0000023666,0.0000023695,0.0000023749,0.0000023841,0.0000023929, +0.0000024008,0.0000024098,0.0000024155,0.0000024164,0.0000024159, +0.0000024172,0.0000024195,0.0000024191,0.0000024144,0.0000024122, +0.0000024154,0.0000024199,0.0000024201,0.0000024200,0.0000024138, +0.0000024040,0.0000023924,0.0000023803,0.0000023781,0.0000023822, +0.0000023843,0.0000023838,0.0000023813,0.0000023780,0.0000023763, +0.0000023780,0.0000023802,0.0000023808,0.0000023799,0.0000023802, +0.0000023841,0.0000023892,0.0000023906,0.0000023903,0.0000023912, +0.0000023923,0.0000023932,0.0000023955,0.0000023977,0.0000023973, +0.0000023936,0.0000023882,0.0000023840,0.0000023823,0.0000023825, +0.0000023823,0.0000023805,0.0000023764,0.0000023715,0.0000023674, +0.0000023639,0.0000023614,0.0000023599,0.0000023591,0.0000023585, +0.0000023579,0.0000023575,0.0000023571,0.0000023564,0.0000023551, +0.0000023533,0.0000023515,0.0000023495,0.0000023474,0.0000023458, +0.0000023446,0.0000023440,0.0000023437,0.0000023435,0.0000023432, +0.0000023431,0.0000023442,0.0000023457,0.0000023474,0.0000023494, +0.0000023514,0.0000023538,0.0000023579,0.0000023649,0.0000023741, +0.0000023838,0.0000023927,0.0000023998,0.0000024033,0.0000024033, +0.0000024004,0.0000023975,0.0000023914,0.0000023846,0.0000023783, +0.0000023731,0.0000023690,0.0000023654,0.0000023625,0.0000023600, +0.0000023578,0.0000023556,0.0000023547,0.0000023549,0.0000023565, +0.0000023590,0.0000023616,0.0000023642,0.0000023666,0.0000023682, +0.0000023686,0.0000023682,0.0000023679,0.0000023685,0.0000023694, +0.0000023707,0.0000023724,0.0000023739,0.0000023748,0.0000023755, +0.0000023766,0.0000023777,0.0000023789,0.0000023806,0.0000023832, +0.0000023855,0.0000023871,0.0000023876,0.0000023876,0.0000023870, +0.0000023854,0.0000023840,0.0000023828,0.0000023817,0.0000023799, +0.0000023781,0.0000023773,0.0000023768,0.0000023743,0.0000023730, +0.0000023727,0.0000023703,0.0000023683,0.0000023659,0.0000023633, +0.0000023612,0.0000023580,0.0000023558,0.0000023542,0.0000023540, +0.0000023550,0.0000023580,0.0000023624,0.0000023671,0.0000023716, +0.0000023752,0.0000023762,0.0000023761,0.0000023737,0.0000023699, +0.0000023666,0.0000023647,0.0000023651,0.0000023668,0.0000023690, +0.0000023729,0.0000023800,0.0000023876,0.0000023917,0.0000023950, +0.0000023993,0.0000024001,0.0000023935,0.0000023809,0.0000023698, +0.0000023655,0.0000023667,0.0000023723,0.0000023808,0.0000023877, +0.0000023878,0.0000023760,0.0000023549,0.0000023362,0.0000023230, +0.0000023119,0.0000023007,0.0000022878,0.0000022739,0.0000022615, +0.0000022552,0.0000022555,0.0000022572,0.0000022565,0.0000022545, +0.0000022539,0.0000022545,0.0000022549,0.0000022547,0.0000022548, +0.0000022562,0.0000022596,0.0000022645,0.0000022687,0.0000022705, +0.0000022700,0.0000022682,0.0000022669,0.0000022667,0.0000022672, +0.0000022676,0.0000022669,0.0000022649,0.0000022624,0.0000022592, +0.0000022544,0.0000022475,0.0000022382,0.0000022276,0.0000022190, +0.0000022136,0.0000022087,0.0000022041,0.0000022035,0.0000022065, +0.0000022055,0.0000021953,0.0000021822,0.0000021709,0.0000021592, +0.0000021541,0.0000021603,0.0000021652,0.0000021631,0.0000021588, +0.0000021600,0.0000021707,0.0000021915,0.0000022174,0.0000022406, +0.0000022553,0.0000022592,0.0000022585,0.0000022633,0.0000022823, +0.0000023050,0.0000023163,0.0000023179,0.0000023191,0.0000023203, +0.0000023189,0.0000023167,0.0000023158,0.0000023156,0.0000023157, +0.0000023151,0.0000023123,0.0000023097,0.0000023098,0.0000023124, +0.0000023173,0.0000023228,0.0000023264,0.0000023276,0.0000023270, +0.0000023218,0.0000023121,0.0000023008,0.0000022894,0.0000022782, +0.0000022678,0.0000022574,0.0000022451,0.0000022301,0.0000022132, +0.0000021949,0.0000021750,0.0000021539,0.0000021329,0.0000021162, +0.0000021071,0.0000021042,0.0000021042,0.0000021042,0.0000021058, +0.0000021078,0.0000021090,0.0000021091,0.0000021089,0.0000021090, +0.0000021092,0.0000021094,0.0000021090,0.0000021081,0.0000021078, +0.0000021096,0.0000021154,0.0000021255,0.0000021375,0.0000021490, +0.0000021580,0.0000021638,0.0000021663,0.0000021663,0.0000021643, +0.0000021606,0.0000021554,0.0000021486,0.0000021400,0.0000021294, +0.0000021180,0.0000021069,0.0000020958,0.0000020850,0.0000020757, +0.0000020691,0.0000020655,0.0000020652,0.0000020686,0.0000020777, +0.0000020923,0.0000021133,0.0000021395,0.0000021636,0.0000021780, +0.0000021824,0.0000021839,0.0000021905,0.0000022058,0.0000022295, +0.0000022562,0.0000022751,0.0000022785,0.0000022685,0.0000022551, +0.0000022474,0.0000022500,0.0000022622,0.0000022774,0.0000022916, +0.0000023091,0.0000023303,0.0000023462,0.0000023548,0.0000023664, +0.0000023855,0.0000024057,0.0000024232,0.0000024392,0.0000024525, +0.0000024633,0.0000024744,0.0000024858,0.0000024939,0.0000024986, +0.0000025029,0.0000025068,0.0000025095,0.0000025125,0.0000025151, +0.0000025136,0.0000025062,0.0000024991,0.0000024970,0.0000024969, +0.0000024941,0.0000024886,0.0000024843,0.0000024831,0.0000024836, +0.0000024843,0.0000024838,0.0000024840,0.0000024887,0.0000024961, +0.0000025000,0.0000024977,0.0000024858,0.0000024661,0.0000024421, +0.0000024180,0.0000024046,0.0000023992,0.0000023872,0.0000023703, +0.0000023593,0.0000023558,0.0000023571,0.0000023620,0.0000023678, +0.0000023726,0.0000023775,0.0000023817,0.0000023839,0.0000023840, +0.0000023826,0.0000023809,0.0000023802,0.0000023804,0.0000023807, +0.0000023803,0.0000023794,0.0000023777,0.0000023753,0.0000023719, +0.0000023676,0.0000023633,0.0000023592,0.0000023544,0.0000023484, +0.0000023413,0.0000023339,0.0000023284,0.0000023264,0.0000023274, +0.0000023305,0.0000023336,0.0000023359,0.0000023379,0.0000023401, +0.0000023422,0.0000023439,0.0000023455,0.0000023466,0.0000023467, +0.0000023465,0.0000023471,0.0000023489,0.0000023530,0.0000023607, +0.0000023720,0.0000023865,0.0000024030,0.0000024201,0.0000024370, +0.0000024549,0.0000024749,0.0000024955,0.0000025130,0.0000025241, +0.0000025283,0.0000025273,0.0000025251,0.0000025223,0.0000025195, +0.0000025169,0.0000025144,0.0000025120,0.0000025109,0.0000025108, +0.0000025102,0.0000025073,0.0000025028,0.0000025005,0.0000025011, +0.0000024961,0.0000024776,0.0000024565,0.0000024452,0.0000024408, +0.0000024360,0.0000024311,0.0000024287,0.0000024276,0.0000024261, +0.0000024244,0.0000024206,0.0000024117,0.0000023981,0.0000023815, +0.0000023643,0.0000023531,0.0000023484,0.0000023477,0.0000023473, +0.0000023424,0.0000023319,0.0000023131,0.0000022864,0.0000022570, +0.0000022313,0.0000022105,0.0000021922,0.0000021757,0.0000021640, +0.0000021579,0.0000021582,0.0000021663,0.0000021798,0.0000021905, +0.0000021960,0.0000021960,0.0000021916,0.0000021871,0.0000021843, +0.0000021795,0.0000021698,0.0000021500,0.0000021278,0.0000021146, +0.0000021124,0.0000021131,0.0000021155,0.0000021198,0.0000021244, +0.0000021276,0.0000021280,0.0000021260,0.0000021243,0.0000021235, +0.0000021226,0.0000021222,0.0000021217,0.0000021202,0.0000021179, +0.0000021180,0.0000021205,0.0000021225,0.0000021237,0.0000021244, +0.0000021254,0.0000021260,0.0000021267,0.0000021270,0.0000021274, +0.0000021271,0.0000021248,0.0000021207,0.0000021162,0.0000021128, +0.0000021115,0.0000021141,0.0000021176,0.0000021199,0.0000021220, +0.0000021238,0.0000021253,0.0000021275,0.0000021296,0.0000021308, +0.0000021313,0.0000021316,0.0000021324,0.0000021331,0.0000021342, +0.0000021365,0.0000021402,0.0000021443,0.0000021478,0.0000021512, +0.0000021546,0.0000021578,0.0000021608,0.0000021638,0.0000021672, +0.0000021706,0.0000021737,0.0000021760,0.0000021775,0.0000021788, +0.0000021804,0.0000021812,0.0000021816,0.0000021819,0.0000021817, +0.0000021804,0.0000021780,0.0000021753,0.0000021731,0.0000021719, +0.0000021716,0.0000021710,0.0000021698,0.0000021682,0.0000021662, +0.0000021637,0.0000021608,0.0000021579,0.0000021556,0.0000021545, +0.0000021542,0.0000021545,0.0000021555,0.0000021571,0.0000021587, +0.0000021597,0.0000021608,0.0000021613,0.0000021616,0.0000021618, +0.0000021618,0.0000021620,0.0000021631,0.0000021652,0.0000021680, +0.0000021708,0.0000021748,0.0000021823,0.0000021926,0.0000022039, +0.0000022149,0.0000022248,0.0000022330,0.0000022391,0.0000022433, +0.0000022460,0.0000022477,0.0000022482,0.0000022484,0.0000022481, +0.0000022466,0.0000022440,0.0000022409,0.0000022371,0.0000022329, +0.0000022294,0.0000022271,0.0000022266,0.0000022272,0.0000022286, +0.0000022302,0.0000022317,0.0000022329,0.0000022331,0.0000022324, +0.0000022308,0.0000022281,0.0000022250,0.0000022218,0.0000022179, +0.0000022134,0.0000022085,0.0000022040,0.0000022008,0.0000021987, +0.0000021965,0.0000021944,0.0000021922,0.0000021899,0.0000021886, +0.0000021832,0.0000021718,0.0000021639,0.0000021643,0.0000021711, +0.0000021785,0.0000021818,0.0000021821,0.0000021812,0.0000021775, +0.0000021715,0.0000021656,0.0000021614,0.0000021592,0.0000021585, +0.0000021592,0.0000021626,0.0000021662,0.0000021666,0.0000021648, +0.0000021631,0.0000021629,0.0000021651,0.0000021709,0.0000021789, +0.0000021856,0.0000021891,0.0000021904,0.0000021913,0.0000021920, +0.0000021934,0.0000021961,0.0000021996,0.0000022027,0.0000022044, +0.0000022045,0.0000022035,0.0000022024,0.0000022014,0.0000022006, +0.0000022006,0.0000022016,0.0000022027,0.0000022039,0.0000022058, +0.0000022091,0.0000022140,0.0000022177,0.0000022184,0.0000022166, +0.0000022102,0.0000021999,0.0000021901,0.0000021853,0.0000021847, +0.0000021833,0.0000021784,0.0000021708,0.0000021598,0.0000021438, +0.0000021252,0.0000021096,0.0000020993,0.0000020935,0.0000020913, +0.0000020916,0.0000020942,0.0000020977,0.0000021003,0.0000021018, +0.0000021020,0.0000021034,0.0000021227,0.0000021587,0.0000021875, +0.0000022047,0.0000022180,0.0000022268,0.0000022327,0.0000022408, +0.0000022498,0.0000022558,0.0000022591,0.0000022621,0.0000022650, +0.0000022668,0.0000022671,0.0000022659,0.0000022635,0.0000022607, +0.0000022586,0.0000022586,0.0000022598,0.0000022605,0.0000022592, +0.0000022567,0.0000022544,0.0000022532,0.0000022535,0.0000022553, +0.0000022583,0.0000022619,0.0000022663,0.0000022706,0.0000022735, +0.0000022747,0.0000022745,0.0000022735,0.0000022723,0.0000022703, +0.0000022667,0.0000022618,0.0000022573,0.0000022545,0.0000022539, +0.0000022542,0.0000022526,0.0000022443,0.0000022278,0.0000022068, +0.0000021875,0.0000021755,0.0000021721,0.0000021753,0.0000021860, +0.0000022076,0.0000022139,0.0000022197,0.0000022219,0.0000022215, +0.0000022201,0.0000022194,0.0000022204,0.0000022227,0.0000022171, +0.0000021945,0.0000021764,0.0000021801,0.0000021984,0.0000022272, +0.0000022609,0.0000022785,0.0000022780,0.0000022748,0.0000022783, +0.0000022883,0.0000022982,0.0000023024,0.0000023023,0.0000023031, +0.0000023061,0.0000023085,0.0000023124,0.0000023193,0.0000023257, +0.0000023307,0.0000023316,0.0000023281,0.0000023262,0.0000023285, +0.0000023313,0.0000023299,0.0000023229,0.0000023120,0.0000023037, +0.0000023036,0.0000023090,0.0000023118,0.0000023108,0.0000023076, +0.0000023038,0.0000023012,0.0000023013,0.0000023031,0.0000023053, +0.0000023072,0.0000023087,0.0000023094,0.0000023090,0.0000023072, +0.0000023057,0.0000023053,0.0000023056,0.0000023061,0.0000023081, +0.0000023111,0.0000023153,0.0000023201,0.0000023271,0.0000023361, +0.0000023442,0.0000023492,0.0000023501,0.0000023486,0.0000023468, +0.0000023443,0.0000023406,0.0000023384,0.0000023378,0.0000023386, +0.0000023393,0.0000023376,0.0000023328,0.0000023282,0.0000023244, +0.0000023200,0.0000023142,0.0000023081,0.0000023052,0.0000023037, +0.0000023039,0.0000023066,0.0000023093,0.0000023098,0.0000023088, +0.0000023071,0.0000023063,0.0000023046,0.0000023046,0.0000023073, +0.0000023116,0.0000023185,0.0000023251,0.0000023298,0.0000023325, +0.0000023326,0.0000023299,0.0000023250,0.0000023200,0.0000023155, +0.0000023104,0.0000023039,0.0000022960,0.0000022863,0.0000022770, +0.0000022701,0.0000022674,0.0000022686,0.0000022740,0.0000022818, +0.0000022923,0.0000023026,0.0000023109,0.0000023175,0.0000023236, +0.0000023302,0.0000023372,0.0000023433,0.0000023469,0.0000023479, +0.0000023469,0.0000023437,0.0000023420,0.0000023423,0.0000023436, +0.0000023443,0.0000023449,0.0000023451,0.0000023448,0.0000023441, +0.0000023418,0.0000023390,0.0000023378,0.0000023384,0.0000023402, +0.0000023418,0.0000023436,0.0000023471,0.0000023507,0.0000023540, +0.0000023582,0.0000023639,0.0000023713,0.0000023794,0.0000023877, +0.0000023942,0.0000023970,0.0000023963,0.0000023904,0.0000023787, +0.0000023661,0.0000023582,0.0000023571,0.0000023594,0.0000023612, +0.0000023590,0.0000023513,0.0000023394,0.0000023280,0.0000023204, +0.0000023176,0.0000023166,0.0000023150,0.0000023120,0.0000023075, +0.0000023031,0.0000023017,0.0000023056,0.0000023136,0.0000023219, +0.0000023286,0.0000023326,0.0000023334,0.0000023328,0.0000023301, +0.0000023248,0.0000023180,0.0000023140,0.0000023106,0.0000023120, +0.0000023177,0.0000023260,0.0000023347,0.0000023419,0.0000023471, +0.0000023523,0.0000023590,0.0000023670,0.0000023759,0.0000023849, +0.0000023929,0.0000023998,0.0000024056,0.0000024111,0.0000024163, +0.0000024213,0.0000024259,0.0000024295,0.0000024309,0.0000024295, +0.0000024250,0.0000024176,0.0000024090,0.0000024006,0.0000023936, +0.0000023881,0.0000023833,0.0000023787,0.0000023739,0.0000023686, +0.0000023628,0.0000023568,0.0000023510,0.0000023461,0.0000023422, +0.0000023393,0.0000023374,0.0000023358,0.0000023345,0.0000023335, +0.0000023324,0.0000023312,0.0000023299,0.0000023285,0.0000023270, +0.0000023253,0.0000023238,0.0000023227,0.0000023225,0.0000023235, +0.0000023257,0.0000023289,0.0000023327,0.0000023367,0.0000023406, +0.0000023442,0.0000023472,0.0000023494,0.0000023510,0.0000023522, +0.0000023532,0.0000023539,0.0000023541,0.0000023535,0.0000023521, +0.0000023504,0.0000023499,0.0000023501,0.0000023510,0.0000023531, +0.0000023561,0.0000023594,0.0000023620,0.0000023634,0.0000023630, +0.0000023627,0.0000023617,0.0000023600,0.0000023586,0.0000023579, +0.0000023573,0.0000023575,0.0000023585,0.0000023608,0.0000023638, +0.0000023656,0.0000023681,0.0000023683,0.0000023675,0.0000023656, +0.0000023631,0.0000023603,0.0000023572,0.0000023542,0.0000023518, +0.0000023499,0.0000023475,0.0000023448,0.0000023431,0.0000023417, +0.0000023410,0.0000023406,0.0000023402,0.0000023397,0.0000023391, +0.0000023387,0.0000023380,0.0000023365,0.0000023343,0.0000023319, +0.0000023291,0.0000023258,0.0000023225,0.0000023197,0.0000023171, +0.0000023150,0.0000023144,0.0000023152,0.0000023166,0.0000023188, +0.0000023226,0.0000023273,0.0000023322,0.0000023367,0.0000023403, +0.0000023429,0.0000023454,0.0000023477,0.0000023494,0.0000023508, +0.0000023525,0.0000023551,0.0000023566,0.0000023566,0.0000023557, +0.0000023542,0.0000023524,0.0000023503,0.0000023486,0.0000023468, +0.0000023436,0.0000023390,0.0000023323,0.0000023235,0.0000023143, +0.0000023059,0.0000023021,0.0000022980,0.0000022982,0.0000023010, +0.0000023073,0.0000023169,0.0000023312,0.0000023458,0.0000023587, +0.0000023705,0.0000023816,0.0000023903,0.0000023970,0.0000024001, +0.0000024003,0.0000023980,0.0000023940,0.0000023894,0.0000023845, +0.0000023795,0.0000023747,0.0000023698,0.0000023649,0.0000023619, +0.0000023601,0.0000023597,0.0000023601,0.0000023607,0.0000023619, +0.0000023639,0.0000023671,0.0000023704,0.0000023734,0.0000023740, +0.0000023719,0.0000023679,0.0000023627,0.0000023567,0.0000023498, +0.0000023416,0.0000023331,0.0000023250,0.0000023197,0.0000023179, +0.0000023177,0.0000023173,0.0000023156,0.0000023121,0.0000023053, +0.0000022951,0.0000022838,0.0000022763,0.0000022741,0.0000022751, +0.0000022764,0.0000022787,0.0000022832,0.0000022879,0.0000022923, +0.0000022957,0.0000022979,0.0000022991,0.0000022991,0.0000022979, +0.0000022959,0.0000022934,0.0000022904,0.0000022866,0.0000022819, +0.0000022785,0.0000022769,0.0000022761,0.0000022760,0.0000022771, +0.0000022773,0.0000022761,0.0000022744,0.0000022720,0.0000022702, +0.0000022723,0.0000022810,0.0000023010,0.0000023229,0.0000023294, +0.0000023301,0.0000023298,0.0000023245,0.0000023246,0.0000023199, +0.0000023090,0.0000023050,0.0000023105,0.0000023193,0.0000023281, +0.0000023356,0.0000023411,0.0000023455,0.0000023494,0.0000023520, +0.0000023517,0.0000023485,0.0000023432,0.0000023388,0.0000023378, +0.0000023374,0.0000023336,0.0000023287,0.0000023180,0.0000023045, +0.0000022991,0.0000022995,0.0000023007,0.0000023019,0.0000023036, +0.0000023027,0.0000023000,0.0000022954,0.0000022897,0.0000022839, +0.0000022785,0.0000022776,0.0000022829,0.0000022876,0.0000022878, +0.0000022871,0.0000022904,0.0000022936,0.0000022952,0.0000022968, +0.0000022992,0.0000023008,0.0000022998,0.0000022957,0.0000022899, +0.0000022835,0.0000022765,0.0000022674,0.0000022580,0.0000022518, +0.0000022503,0.0000022498,0.0000022453,0.0000022338,0.0000022222, +0.0000022183,0.0000022181,0.0000022188,0.0000022234,0.0000022349, +0.0000022481,0.0000022564,0.0000022582,0.0000022542,0.0000022409, +0.0000022299,0.0000022317,0.0000022475,0.0000022645,0.0000022732, +0.0000022760,0.0000022783,0.0000022803,0.0000022761,0.0000022670, +0.0000022640,0.0000022717,0.0000022810,0.0000022853,0.0000022914, +0.0000023035,0.0000023158,0.0000023221,0.0000023230,0.0000023158, +0.0000022975,0.0000022720,0.0000022422,0.0000022127,0.0000021977, +0.0000021984,0.0000022101,0.0000022237,0.0000022290,0.0000022295, +0.0000022287,0.0000022271,0.0000022260,0.0000022243,0.0000022219, +0.0000022218,0.0000022264,0.0000022345,0.0000022432,0.0000022522, +0.0000022609,0.0000022676,0.0000022727,0.0000022787,0.0000022855, +0.0000022907,0.0000022933,0.0000022941,0.0000022940,0.0000022932, +0.0000022934,0.0000022944,0.0000022954,0.0000022969,0.0000022998, +0.0000023051,0.0000023118,0.0000023187,0.0000023248,0.0000023285, +0.0000023297,0.0000023299,0.0000023303,0.0000023301,0.0000023289, +0.0000023282,0.0000023287,0.0000023298,0.0000023313,0.0000023330, +0.0000023346,0.0000023351,0.0000023342,0.0000023318,0.0000023272, +0.0000023226,0.0000023189,0.0000023140,0.0000023065,0.0000022976, +0.0000022896,0.0000022833,0.0000022788,0.0000022762,0.0000022753, +0.0000022773,0.0000022825,0.0000022876,0.0000022916,0.0000022944, +0.0000022954,0.0000022956,0.0000022961,0.0000022962,0.0000022952, +0.0000022960,0.0000023063,0.0000023244,0.0000023379,0.0000023419, +0.0000023455,0.0000023553,0.0000023646,0.0000023659,0.0000023614, +0.0000023565,0.0000023556,0.0000023584,0.0000023622,0.0000023656, +0.0000023704,0.0000023778,0.0000023859,0.0000023948,0.0000024034, +0.0000024078,0.0000024085,0.0000024092,0.0000024123,0.0000024158, +0.0000024159,0.0000024125,0.0000024122,0.0000024168,0.0000024200, +0.0000024200,0.0000024198,0.0000024109,0.0000024016,0.0000023888, +0.0000023793,0.0000023809,0.0000023860,0.0000023870,0.0000023856, +0.0000023823,0.0000023785,0.0000023773,0.0000023794,0.0000023826, +0.0000023840,0.0000023840,0.0000023843,0.0000023871,0.0000023920, +0.0000023939,0.0000023927,0.0000023918,0.0000023927,0.0000023943, +0.0000023959,0.0000023966,0.0000023955,0.0000023920,0.0000023872, +0.0000023835,0.0000023817,0.0000023813,0.0000023811,0.0000023799, +0.0000023771,0.0000023736,0.0000023702,0.0000023667,0.0000023635, +0.0000023613,0.0000023606,0.0000023608,0.0000023615,0.0000023621, +0.0000023623,0.0000023615,0.0000023599,0.0000023580,0.0000023558, +0.0000023535,0.0000023517,0.0000023505,0.0000023501,0.0000023503, +0.0000023504,0.0000023503,0.0000023500,0.0000023494,0.0000023490, +0.0000023486,0.0000023485,0.0000023493,0.0000023504,0.0000023518, +0.0000023539,0.0000023568,0.0000023617,0.0000023677,0.0000023741, +0.0000023804,0.0000023867,0.0000023925,0.0000023969,0.0000023989, +0.0000023981,0.0000023932,0.0000023877,0.0000023817,0.0000023765, +0.0000023718,0.0000023676,0.0000023636,0.0000023597,0.0000023560, +0.0000023526,0.0000023496,0.0000023479,0.0000023476,0.0000023481, +0.0000023486,0.0000023492,0.0000023498,0.0000023501,0.0000023502, +0.0000023509,0.0000023523,0.0000023542,0.0000023566,0.0000023594, +0.0000023620,0.0000023641,0.0000023661,0.0000023680,0.0000023700, +0.0000023724,0.0000023753,0.0000023783,0.0000023811,0.0000023836, +0.0000023858,0.0000023881,0.0000023900,0.0000023902,0.0000023905, +0.0000023930,0.0000023942,0.0000023938,0.0000023938,0.0000023927, +0.0000023916,0.0000023903,0.0000023874,0.0000023838,0.0000023797, +0.0000023756,0.0000023700,0.0000023635,0.0000023578,0.0000023523, +0.0000023461,0.0000023404,0.0000023366,0.0000023360,0.0000023374, +0.0000023416,0.0000023480,0.0000023551,0.0000023618,0.0000023676, +0.0000023716,0.0000023734,0.0000023715,0.0000023684,0.0000023645, +0.0000023626,0.0000023631,0.0000023644,0.0000023650,0.0000023677, +0.0000023748,0.0000023834,0.0000023896,0.0000023944,0.0000023983, +0.0000023966,0.0000023871,0.0000023734,0.0000023635,0.0000023612, +0.0000023625,0.0000023679,0.0000023769,0.0000023844,0.0000023839, +0.0000023714,0.0000023503,0.0000023323,0.0000023201,0.0000023097, +0.0000022983,0.0000022867,0.0000022745,0.0000022627,0.0000022563, +0.0000022567,0.0000022587,0.0000022597,0.0000022601,0.0000022611, +0.0000022626,0.0000022637,0.0000022645,0.0000022658,0.0000022689, +0.0000022730,0.0000022763,0.0000022779,0.0000022783,0.0000022786, +0.0000022795,0.0000022804,0.0000022803,0.0000022789,0.0000022768, +0.0000022743,0.0000022714,0.0000022675,0.0000022619,0.0000022557, +0.0000022493,0.0000022407,0.0000022300,0.0000022214,0.0000022166, +0.0000022123,0.0000022066,0.0000022042,0.0000022058,0.0000022053, +0.0000021964,0.0000021839,0.0000021733,0.0000021616,0.0000021541, +0.0000021563,0.0000021614,0.0000021599,0.0000021551,0.0000021548, +0.0000021633,0.0000021823,0.0000022086,0.0000022342,0.0000022523, +0.0000022598,0.0000022589,0.0000022597,0.0000022734,0.0000022968, +0.0000023134,0.0000023184,0.0000023197,0.0000023205,0.0000023193, +0.0000023166,0.0000023141,0.0000023130,0.0000023123,0.0000023098, +0.0000023058,0.0000023033,0.0000023041,0.0000023072,0.0000023112, +0.0000023147,0.0000023159,0.0000023155,0.0000023133,0.0000023076, +0.0000022981,0.0000022871,0.0000022758,0.0000022638,0.0000022522, +0.0000022411,0.0000022284,0.0000022129,0.0000021952,0.0000021754, +0.0000021541,0.0000021336,0.0000021175,0.0000021079,0.0000021045, +0.0000021045,0.0000021059,0.0000021079,0.0000021107,0.0000021138, +0.0000021165,0.0000021188,0.0000021207,0.0000021221,0.0000021227, +0.0000021229,0.0000021233,0.0000021245,0.0000021271,0.0000021317, +0.0000021397,0.0000021503,0.0000021612,0.0000021709,0.0000021781, +0.0000021822,0.0000021838,0.0000021834,0.0000021810,0.0000021767, +0.0000021715,0.0000021654,0.0000021574,0.0000021465,0.0000021330, +0.0000021190,0.0000021063,0.0000020948,0.0000020844,0.0000020761, +0.0000020699,0.0000020659,0.0000020659,0.0000020711,0.0000020814, +0.0000020964,0.0000021178,0.0000021434,0.0000021649,0.0000021761, +0.0000021792,0.0000021819,0.0000021911,0.0000022101,0.0000022363, +0.0000022606,0.0000022720,0.0000022688,0.0000022578,0.0000022471, +0.0000022452,0.0000022538,0.0000022686,0.0000022834,0.0000022984, +0.0000023173,0.0000023357,0.0000023464,0.0000023544,0.0000023703, +0.0000023925,0.0000024127,0.0000024289,0.0000024422,0.0000024538, +0.0000024656,0.0000024785,0.0000024894,0.0000024963,0.0000025015, +0.0000025069,0.0000025107,0.0000025131,0.0000025158,0.0000025165, +0.0000025117,0.0000025027,0.0000024963,0.0000024943,0.0000024922, +0.0000024864,0.0000024796,0.0000024761,0.0000024766,0.0000024794, +0.0000024812,0.0000024823,0.0000024863,0.0000024933,0.0000024979, +0.0000024968,0.0000024862,0.0000024658,0.0000024403,0.0000024157, +0.0000024020,0.0000023975,0.0000023870,0.0000023709,0.0000023610, +0.0000023584,0.0000023590,0.0000023627,0.0000023680,0.0000023732, +0.0000023779,0.0000023812,0.0000023826,0.0000023826,0.0000023816, +0.0000023802,0.0000023792,0.0000023792,0.0000023787,0.0000023780, +0.0000023772,0.0000023753,0.0000023720,0.0000023677,0.0000023624, +0.0000023568,0.0000023512,0.0000023447,0.0000023373,0.0000023289, +0.0000023210,0.0000023167,0.0000023167,0.0000023199,0.0000023249, +0.0000023294,0.0000023332,0.0000023367,0.0000023401,0.0000023427, +0.0000023445,0.0000023461,0.0000023471,0.0000023468,0.0000023454, +0.0000023435,0.0000023412,0.0000023391,0.0000023403,0.0000023459, +0.0000023567,0.0000023728,0.0000023913,0.0000024088,0.0000024244, +0.0000024394,0.0000024564,0.0000024762,0.0000024959,0.0000025112, +0.0000025189,0.0000025209,0.0000025187,0.0000025151,0.0000025118, +0.0000025088,0.0000025064,0.0000025051,0.0000025045,0.0000025026, +0.0000024990,0.0000024950,0.0000024937,0.0000024934,0.0000024858, +0.0000024670,0.0000024478,0.0000024379,0.0000024335,0.0000024283, +0.0000024233,0.0000024215,0.0000024212,0.0000024201,0.0000024174, +0.0000024132,0.0000024065,0.0000023972,0.0000023857,0.0000023732, +0.0000023578,0.0000023461,0.0000023403,0.0000023398,0.0000023392, +0.0000023367,0.0000023312,0.0000023190,0.0000022970,0.0000022659, +0.0000022332,0.0000022057,0.0000021855,0.0000021697,0.0000021604, +0.0000021589,0.0000021637,0.0000021739,0.0000021854,0.0000021940, +0.0000021974,0.0000021969,0.0000021914,0.0000021845,0.0000021793, +0.0000021745,0.0000021670,0.0000021512,0.0000021309,0.0000021162, +0.0000021114,0.0000021121,0.0000021147,0.0000021185,0.0000021219, +0.0000021231,0.0000021220,0.0000021214,0.0000021212,0.0000021211, +0.0000021212,0.0000021211,0.0000021204,0.0000021194,0.0000021210, +0.0000021246,0.0000021279,0.0000021304,0.0000021318,0.0000021330, +0.0000021340,0.0000021348,0.0000021351,0.0000021348,0.0000021344, +0.0000021326,0.0000021288,0.0000021237,0.0000021187,0.0000021153, +0.0000021147,0.0000021164,0.0000021179,0.0000021196,0.0000021220, +0.0000021235,0.0000021246,0.0000021255,0.0000021260,0.0000021262, +0.0000021265,0.0000021276,0.0000021285,0.0000021292,0.0000021309, +0.0000021337,0.0000021376,0.0000021416,0.0000021456,0.0000021495, +0.0000021529,0.0000021557,0.0000021581,0.0000021613,0.0000021650, +0.0000021687,0.0000021714,0.0000021729,0.0000021741,0.0000021757, +0.0000021763,0.0000021761,0.0000021756,0.0000021753,0.0000021749, +0.0000021746,0.0000021754,0.0000021764,0.0000021770,0.0000021768, +0.0000021768,0.0000021766,0.0000021759,0.0000021743,0.0000021718, +0.0000021686,0.0000021652,0.0000021620,0.0000021601,0.0000021592, +0.0000021589,0.0000021593,0.0000021601,0.0000021606,0.0000021607, +0.0000021608,0.0000021606,0.0000021604,0.0000021604,0.0000021610, +0.0000021609,0.0000021604,0.0000021600,0.0000021615,0.0000021640, +0.0000021665,0.0000021691,0.0000021728,0.0000021779,0.0000021849, +0.0000021938,0.0000022033,0.0000022122,0.0000022200,0.0000022261, +0.0000022308,0.0000022346,0.0000022377,0.0000022400,0.0000022419, +0.0000022426,0.0000022422,0.0000022406,0.0000022377,0.0000022351, +0.0000022320,0.0000022291,0.0000022266,0.0000022254,0.0000022250, +0.0000022254,0.0000022264,0.0000022273,0.0000022271,0.0000022263, +0.0000022250,0.0000022230,0.0000022207,0.0000022183,0.0000022152, +0.0000022113,0.0000022069,0.0000022024,0.0000021984,0.0000021955, +0.0000021936,0.0000021918,0.0000021892,0.0000021872,0.0000021843, +0.0000021751,0.0000021653,0.0000021627,0.0000021661,0.0000021732, +0.0000021789,0.0000021811,0.0000021812,0.0000021798,0.0000021766, +0.0000021725,0.0000021686,0.0000021659,0.0000021630,0.0000021594, +0.0000021578,0.0000021596,0.0000021634,0.0000021642,0.0000021622, +0.0000021604,0.0000021603,0.0000021642,0.0000021725,0.0000021814, +0.0000021872,0.0000021898,0.0000021907,0.0000021909,0.0000021904, +0.0000021910,0.0000021934,0.0000021968,0.0000022005,0.0000022031, +0.0000022035,0.0000022021,0.0000022005,0.0000021990,0.0000021982, +0.0000021984,0.0000021998,0.0000022017,0.0000022039,0.0000022067, +0.0000022113,0.0000022168,0.0000022204,0.0000022208,0.0000022183, +0.0000022128,0.0000022033,0.0000021915,0.0000021825,0.0000021794, +0.0000021794,0.0000021772,0.0000021712,0.0000021629,0.0000021515, +0.0000021361,0.0000021200,0.0000021073,0.0000020989,0.0000020943, +0.0000020929,0.0000020936,0.0000020967,0.0000021004,0.0000021030, +0.0000021035,0.0000021030,0.0000021101,0.0000021404,0.0000021749, +0.0000021962,0.0000022108,0.0000022218,0.0000022284,0.0000022353, +0.0000022446,0.0000022521,0.0000022562,0.0000022594,0.0000022624, +0.0000022640,0.0000022639,0.0000022618,0.0000022578,0.0000022530, +0.0000022493,0.0000022486,0.0000022499,0.0000022514,0.0000022511, +0.0000022492,0.0000022476,0.0000022477,0.0000022494,0.0000022523, +0.0000022558,0.0000022590,0.0000022620,0.0000022641,0.0000022654, +0.0000022663,0.0000022665,0.0000022657,0.0000022639,0.0000022606, +0.0000022557,0.0000022502,0.0000022459,0.0000022436,0.0000022422, +0.0000022384,0.0000022289,0.0000022138,0.0000021967,0.0000021818, +0.0000021724,0.0000021711,0.0000021777,0.0000021897,0.0000022006, +0.0000022202,0.0000022240,0.0000022237,0.0000022220,0.0000022209, +0.0000022210,0.0000022225,0.0000022249,0.0000022238,0.0000022074, +0.0000021826,0.0000021759,0.0000021890,0.0000022115,0.0000022431, +0.0000022716,0.0000022781,0.0000022739,0.0000022724,0.0000022793, +0.0000022906,0.0000022990,0.0000023010,0.0000023007,0.0000023026, +0.0000023058,0.0000023077,0.0000023110,0.0000023164,0.0000023214, +0.0000023246,0.0000023238,0.0000023205,0.0000023206,0.0000023247, +0.0000023268,0.0000023237,0.0000023147,0.0000023048,0.0000023005, +0.0000023033,0.0000023090,0.0000023113,0.0000023100,0.0000023063, +0.0000023023,0.0000023001,0.0000023006,0.0000023027,0.0000023051, +0.0000023072,0.0000023090,0.0000023100,0.0000023092,0.0000023070, +0.0000023054,0.0000023056,0.0000023067,0.0000023075,0.0000023086, +0.0000023105,0.0000023139,0.0000023185,0.0000023242,0.0000023322, +0.0000023404,0.0000023462,0.0000023484,0.0000023478,0.0000023465, +0.0000023441,0.0000023410,0.0000023399,0.0000023401,0.0000023404, +0.0000023403,0.0000023380,0.0000023332,0.0000023296,0.0000023283, +0.0000023280,0.0000023270,0.0000023224,0.0000023170,0.0000023125, +0.0000023089,0.0000023089,0.0000023111,0.0000023115,0.0000023112, +0.0000023107,0.0000023111,0.0000023102,0.0000023100,0.0000023112, +0.0000023134,0.0000023194,0.0000023272,0.0000023330,0.0000023365, +0.0000023385,0.0000023382,0.0000023344,0.0000023297,0.0000023265, +0.0000023240,0.0000023213,0.0000023172,0.0000023100,0.0000023003, +0.0000022899,0.0000022800,0.0000022731,0.0000022697,0.0000022694, +0.0000022714,0.0000022789,0.0000022900,0.0000023016,0.0000023113, +0.0000023176,0.0000023221,0.0000023271,0.0000023330,0.0000023377, +0.0000023405,0.0000023406,0.0000023395,0.0000023387,0.0000023393, +0.0000023402,0.0000023408,0.0000023417,0.0000023431,0.0000023438, +0.0000023432,0.0000023408,0.0000023382,0.0000023374,0.0000023384, +0.0000023397,0.0000023402,0.0000023417,0.0000023445,0.0000023474, +0.0000023505,0.0000023539,0.0000023578,0.0000023626,0.0000023687, +0.0000023763,0.0000023840,0.0000023900,0.0000023927,0.0000023919, +0.0000023849,0.0000023717,0.0000023585,0.0000023521,0.0000023526, +0.0000023560,0.0000023574,0.0000023549,0.0000023466,0.0000023346, +0.0000023235,0.0000023176,0.0000023156,0.0000023144,0.0000023123, +0.0000023086,0.0000023048,0.0000023039,0.0000023067,0.0000023120, +0.0000023188,0.0000023256,0.0000023304,0.0000023325,0.0000023326, +0.0000023321,0.0000023291,0.0000023238,0.0000023179,0.0000023116, +0.0000023092,0.0000023074,0.0000023097,0.0000023156,0.0000023225, +0.0000023286,0.0000023349,0.0000023411,0.0000023474,0.0000023538, +0.0000023596,0.0000023650,0.0000023698,0.0000023741,0.0000023782, +0.0000023822,0.0000023864,0.0000023909,0.0000023950,0.0000023979, +0.0000023987,0.0000023972,0.0000023932,0.0000023875,0.0000023814, +0.0000023760,0.0000023707,0.0000023648,0.0000023584,0.0000023516, +0.0000023445,0.0000023372,0.0000023299,0.0000023231,0.0000023182, +0.0000023159,0.0000023160,0.0000023172,0.0000023189,0.0000023209, +0.0000023231,0.0000023250,0.0000023263,0.0000023271,0.0000023264, +0.0000023257,0.0000023247,0.0000023235,0.0000023221,0.0000023209, +0.0000023204,0.0000023213,0.0000023216,0.0000023227,0.0000023244, +0.0000023269,0.0000023297,0.0000023325,0.0000023351,0.0000023375, +0.0000023401,0.0000023424,0.0000023440,0.0000023446,0.0000023447, +0.0000023452,0.0000023460,0.0000023471,0.0000023479,0.0000023485, +0.0000023495,0.0000023511,0.0000023529,0.0000023548,0.0000023568, +0.0000023588,0.0000023604,0.0000023615,0.0000023603,0.0000023592, +0.0000023580,0.0000023557,0.0000023535,0.0000023525,0.0000023530, +0.0000023551,0.0000023584,0.0000023619,0.0000023647,0.0000023669, +0.0000023670,0.0000023670,0.0000023660,0.0000023635,0.0000023597, +0.0000023563,0.0000023538,0.0000023510,0.0000023480,0.0000023454, +0.0000023436,0.0000023425,0.0000023416,0.0000023407,0.0000023399, +0.0000023392,0.0000023387,0.0000023380,0.0000023369,0.0000023352, +0.0000023328,0.0000023303,0.0000023283,0.0000023269,0.0000023264, +0.0000023267,0.0000023279,0.0000023303,0.0000023327,0.0000023340, +0.0000023345,0.0000023351,0.0000023361,0.0000023378,0.0000023397, +0.0000023418,0.0000023441,0.0000023468,0.0000023489,0.0000023500, +0.0000023507,0.0000023523,0.0000023541,0.0000023547,0.0000023537, +0.0000023516,0.0000023489,0.0000023460,0.0000023436,0.0000023417, +0.0000023404,0.0000023389,0.0000023371,0.0000023347,0.0000023332, +0.0000023317,0.0000023291,0.0000023264,0.0000023231,0.0000023184, +0.0000023115,0.0000023055,0.0000023023,0.0000023039,0.0000023088, +0.0000023155,0.0000023226,0.0000023292,0.0000023349,0.0000023387, +0.0000023397,0.0000023386,0.0000023354,0.0000023310,0.0000023263, +0.0000023221,0.0000023187,0.0000023151,0.0000023111,0.0000023073, +0.0000023046,0.0000023039,0.0000023049,0.0000023073,0.0000023102, +0.0000023139,0.0000023190,0.0000023259,0.0000023321,0.0000023385, +0.0000023437,0.0000023469,0.0000023472,0.0000023453,0.0000023419, +0.0000023369,0.0000023303,0.0000023235,0.0000023177,0.0000023141, +0.0000023118,0.0000023092,0.0000023055,0.0000023005,0.0000022942, +0.0000022855,0.0000022760,0.0000022696,0.0000022684,0.0000022701, +0.0000022724,0.0000022748,0.0000022786,0.0000022851,0.0000022932, +0.0000022999,0.0000023048,0.0000023076,0.0000023083,0.0000023073, +0.0000023048,0.0000023017,0.0000022983,0.0000022945,0.0000022914, +0.0000022880,0.0000022843,0.0000022827,0.0000022817,0.0000022801, +0.0000022789,0.0000022788,0.0000022761,0.0000022742,0.0000022738, +0.0000022723,0.0000022718,0.0000022771,0.0000022886,0.0000023104, +0.0000023292,0.0000023333,0.0000023351,0.0000023323,0.0000023255, +0.0000023234,0.0000023155,0.0000023018,0.0000022976,0.0000023046, +0.0000023157,0.0000023250,0.0000023319,0.0000023376,0.0000023429, +0.0000023471,0.0000023492,0.0000023492,0.0000023467,0.0000023420, +0.0000023395,0.0000023386,0.0000023350,0.0000023324,0.0000023299, +0.0000023204,0.0000023090,0.0000023048,0.0000023039,0.0000023037, +0.0000023047,0.0000023044,0.0000023026,0.0000022982,0.0000022924, +0.0000022863,0.0000022824,0.0000022847,0.0000022904,0.0000022911, +0.0000022877,0.0000022859,0.0000022881,0.0000022905,0.0000022925, +0.0000022960,0.0000022989,0.0000023001,0.0000022993,0.0000022955, +0.0000022900,0.0000022840,0.0000022771,0.0000022670,0.0000022570, +0.0000022512,0.0000022499,0.0000022491,0.0000022431,0.0000022296, +0.0000022182,0.0000022156,0.0000022174,0.0000022211,0.0000022300, +0.0000022427,0.0000022546,0.0000022597,0.0000022583,0.0000022492, +0.0000022333,0.0000022262,0.0000022349,0.0000022541,0.0000022705, +0.0000022773,0.0000022795,0.0000022832,0.0000022848,0.0000022780, +0.0000022674,0.0000022643,0.0000022721,0.0000022796,0.0000022833, +0.0000022910,0.0000023040,0.0000023149,0.0000023196,0.0000023194, +0.0000023107,0.0000022919,0.0000022665,0.0000022379,0.0000022118, +0.0000021997,0.0000022004,0.0000022116,0.0000022228,0.0000022256, +0.0000022245,0.0000022246,0.0000022253,0.0000022257,0.0000022253, +0.0000022246,0.0000022259,0.0000022315,0.0000022402,0.0000022488, +0.0000022565,0.0000022634,0.0000022687,0.0000022728,0.0000022779, +0.0000022832,0.0000022865,0.0000022880,0.0000022884,0.0000022888, +0.0000022895,0.0000022916,0.0000022944,0.0000022968,0.0000022991, +0.0000023019,0.0000023059,0.0000023115,0.0000023169,0.0000023214, +0.0000023252,0.0000023271,0.0000023284,0.0000023295,0.0000023298, +0.0000023282,0.0000023258,0.0000023243,0.0000023245,0.0000023257, +0.0000023282,0.0000023313,0.0000023337,0.0000023344,0.0000023335, +0.0000023304,0.0000023249,0.0000023201,0.0000023161,0.0000023107, +0.0000023029,0.0000022946,0.0000022878,0.0000022829,0.0000022801, +0.0000022785,0.0000022787,0.0000022804,0.0000022835,0.0000022866, +0.0000022895,0.0000022916,0.0000022925,0.0000022934,0.0000022943, +0.0000022940,0.0000022938,0.0000022988,0.0000023132,0.0000023300, +0.0000023401,0.0000023429,0.0000023461,0.0000023543,0.0000023624, +0.0000023639,0.0000023592,0.0000023533,0.0000023513,0.0000023533, +0.0000023576,0.0000023613,0.0000023649,0.0000023703,0.0000023775, +0.0000023865,0.0000023941,0.0000023976,0.0000023991,0.0000024023, +0.0000024080,0.0000024128,0.0000024133,0.0000024113,0.0000024124, +0.0000024170,0.0000024189,0.0000024195,0.0000024178,0.0000024078, +0.0000023987,0.0000023861,0.0000023799,0.0000023840,0.0000023882, +0.0000023883,0.0000023866,0.0000023831,0.0000023800,0.0000023793, +0.0000023818,0.0000023850,0.0000023868,0.0000023877,0.0000023881, +0.0000023903,0.0000023950,0.0000023974,0.0000023957,0.0000023925, +0.0000023921,0.0000023942,0.0000023962,0.0000023962,0.0000023943, +0.0000023908,0.0000023867,0.0000023835,0.0000023818,0.0000023813, +0.0000023809,0.0000023796,0.0000023768,0.0000023736,0.0000023705, +0.0000023677,0.0000023654,0.0000023638,0.0000023631,0.0000023634, +0.0000023646,0.0000023656,0.0000023656,0.0000023646,0.0000023630, +0.0000023612,0.0000023595,0.0000023578,0.0000023568,0.0000023565, +0.0000023567,0.0000023568,0.0000023567,0.0000023563,0.0000023558, +0.0000023551,0.0000023546,0.0000023544,0.0000023547,0.0000023553, +0.0000023555,0.0000023557,0.0000023562,0.0000023576,0.0000023601, +0.0000023636,0.0000023675,0.0000023709,0.0000023736,0.0000023767, +0.0000023808,0.0000023855,0.0000023893,0.0000023905,0.0000023886, +0.0000023850,0.0000023804,0.0000023758,0.0000023720,0.0000023683, +0.0000023645,0.0000023601,0.0000023554,0.0000023503,0.0000023458, +0.0000023430,0.0000023418,0.0000023413,0.0000023408,0.0000023403, +0.0000023393,0.0000023381,0.0000023374,0.0000023374,0.0000023383, +0.0000023401,0.0000023425,0.0000023450,0.0000023472,0.0000023492, +0.0000023512,0.0000023533,0.0000023558,0.0000023589,0.0000023624, +0.0000023660,0.0000023694,0.0000023726,0.0000023756,0.0000023785, +0.0000023811,0.0000023838,0.0000023871,0.0000023905,0.0000023932, +0.0000023961,0.0000023968,0.0000023973,0.0000023994,0.0000023991, +0.0000023976,0.0000023951,0.0000023918,0.0000023871,0.0000023809, +0.0000023739,0.0000023660,0.0000023580,0.0000023487,0.0000023393, +0.0000023326,0.0000023299,0.0000023262,0.0000023273,0.0000023320, +0.0000023382,0.0000023449,0.0000023514,0.0000023572,0.0000023624, +0.0000023656,0.0000023654,0.0000023626,0.0000023615,0.0000023623, +0.0000023633,0.0000023625,0.0000023633,0.0000023696,0.0000023801, +0.0000023882,0.0000023937,0.0000023957,0.0000023917,0.0000023799, +0.0000023664,0.0000023593,0.0000023579,0.0000023589,0.0000023639, +0.0000023733,0.0000023807,0.0000023795,0.0000023670,0.0000023465, +0.0000023290,0.0000023178,0.0000023079,0.0000022978,0.0000022886, +0.0000022782,0.0000022674,0.0000022605,0.0000022587,0.0000022596, +0.0000022615,0.0000022636,0.0000022658,0.0000022675,0.0000022688, +0.0000022710,0.0000022746,0.0000022787,0.0000022829,0.0000022871, +0.0000022909,0.0000022934,0.0000022946,0.0000022943,0.0000022915, +0.0000022879,0.0000022851,0.0000022827,0.0000022800,0.0000022771, +0.0000022725,0.0000022649,0.0000022572,0.0000022512,0.0000022439, +0.0000022341,0.0000022257,0.0000022214,0.0000022173,0.0000022099, +0.0000022041,0.0000022048,0.0000022055,0.0000021978,0.0000021864, +0.0000021770,0.0000021656,0.0000021547,0.0000021537,0.0000021582, +0.0000021573,0.0000021521,0.0000021500,0.0000021557,0.0000021723, +0.0000021973,0.0000022245,0.0000022471,0.0000022594,0.0000022600, +0.0000022576,0.0000022650,0.0000022857,0.0000023056,0.0000023151, +0.0000023186,0.0000023205,0.0000023198,0.0000023159,0.0000023117, +0.0000023096,0.0000023076,0.0000023036,0.0000022989,0.0000022962, +0.0000022971,0.0000023002,0.0000023034,0.0000023050,0.0000023045, +0.0000023022,0.0000022989,0.0000022931,0.0000022838,0.0000022728, +0.0000022613,0.0000022487,0.0000022364,0.0000022248,0.0000022117, +0.0000021954,0.0000021760,0.0000021553,0.0000021364,0.0000021221, +0.0000021126,0.0000021076,0.0000021073,0.0000021095,0.0000021130, +0.0000021170,0.0000021213,0.0000021259,0.0000021304,0.0000021343, +0.0000021372,0.0000021388,0.0000021399,0.0000021415,0.0000021446, +0.0000021489,0.0000021532,0.0000021577,0.0000021635,0.0000021702, +0.0000021768,0.0000021829,0.0000021876,0.0000021906,0.0000021919, +0.0000021916,0.0000021893,0.0000021854,0.0000021812,0.0000021769, +0.0000021719,0.0000021643,0.0000021518,0.0000021358,0.0000021202, +0.0000021068,0.0000020954,0.0000020856,0.0000020775,0.0000020707, +0.0000020665,0.0000020681,0.0000020754,0.0000020862,0.0000021009, +0.0000021222,0.0000021466,0.0000021657,0.0000021748,0.0000021772, +0.0000021808,0.0000021932,0.0000022161,0.0000022427,0.0000022620, +0.0000022667,0.0000022603,0.0000022485,0.0000022425,0.0000022464, +0.0000022593,0.0000022747,0.0000022890,0.0000023048,0.0000023229, +0.0000023369,0.0000023444,0.0000023553,0.0000023761,0.0000023999, +0.0000024183,0.0000024314,0.0000024425,0.0000024546,0.0000024690, +0.0000024830,0.0000024925,0.0000024984,0.0000025046,0.0000025102, +0.0000025129,0.0000025143,0.0000025161,0.0000025155,0.0000025078, +0.0000024974,0.0000024911,0.0000024883,0.0000024837,0.0000024758, +0.0000024693,0.0000024682,0.0000024721,0.0000024770,0.0000024802, +0.0000024843,0.0000024908,0.0000024962,0.0000024967,0.0000024879, +0.0000024675,0.0000024412,0.0000024156,0.0000024007,0.0000023965, +0.0000023884,0.0000023734,0.0000023633,0.0000023602,0.0000023600, +0.0000023622,0.0000023668,0.0000023725,0.0000023779,0.0000023819, +0.0000023842,0.0000023849,0.0000023844,0.0000023828,0.0000023812, +0.0000023800,0.0000023792,0.0000023786,0.0000023782,0.0000023762, +0.0000023722,0.0000023668,0.0000023605,0.0000023530,0.0000023454, +0.0000023367,0.0000023272,0.0000023171,0.0000023088,0.0000023054, +0.0000023068,0.0000023115,0.0000023176,0.0000023234,0.0000023287, +0.0000023340,0.0000023388,0.0000023422,0.0000023441,0.0000023456, +0.0000023467,0.0000023467,0.0000023456,0.0000023426,0.0000023379, +0.0000023324,0.0000023278,0.0000023270,0.0000023313,0.0000023423, +0.0000023589,0.0000023781,0.0000023964,0.0000024116,0.0000024249, +0.0000024394,0.0000024569,0.0000024758,0.0000024922,0.0000025034, +0.0000025086,0.0000025095,0.0000025079,0.0000025054,0.0000025031, +0.0000025012,0.0000024991,0.0000024962,0.0000024925,0.0000024895, +0.0000024884,0.0000024855,0.0000024744,0.0000024556,0.0000024393, +0.0000024315,0.0000024271,0.0000024212,0.0000024165,0.0000024150, +0.0000024146,0.0000024133,0.0000024102,0.0000024055,0.0000023990, +0.0000023913,0.0000023832,0.0000023751,0.0000023639,0.0000023500, +0.0000023390,0.0000023328,0.0000023316,0.0000023307,0.0000023288, +0.0000023254,0.0000023202,0.0000023038,0.0000022744,0.0000022368, +0.0000022028,0.0000021800,0.0000021657,0.0000021613,0.0000021636, +0.0000021715,0.0000021808,0.0000021897,0.0000021955,0.0000021973, +0.0000021946,0.0000021893,0.0000021819,0.0000021748,0.0000021697, +0.0000021648,0.0000021542,0.0000021372,0.0000021209,0.0000021130, +0.0000021132,0.0000021164,0.0000021190,0.0000021193,0.0000021182, +0.0000021175,0.0000021174,0.0000021177,0.0000021189,0.0000021198, +0.0000021203,0.0000021215,0.0000021245,0.0000021292,0.0000021335, +0.0000021366,0.0000021387,0.0000021402,0.0000021415,0.0000021427, +0.0000021434,0.0000021432,0.0000021425,0.0000021417,0.0000021390, +0.0000021341,0.0000021288,0.0000021244,0.0000021210,0.0000021199, +0.0000021197,0.0000021195,0.0000021216,0.0000021240,0.0000021260, +0.0000021276,0.0000021284,0.0000021286,0.0000021284,0.0000021290, +0.0000021298,0.0000021298,0.0000021299,0.0000021309,0.0000021331, +0.0000021356,0.0000021382,0.0000021406,0.0000021430,0.0000021454, +0.0000021477,0.0000021511,0.0000021553,0.0000021594,0.0000021626, +0.0000021643,0.0000021656,0.0000021675,0.0000021687,0.0000021687, +0.0000021681,0.0000021675,0.0000021667,0.0000021662,0.0000021678, +0.0000021716,0.0000021756,0.0000021781,0.0000021794,0.0000021808, +0.0000021812,0.0000021809,0.0000021797,0.0000021774,0.0000021745, +0.0000021716,0.0000021696,0.0000021685,0.0000021678,0.0000021677, +0.0000021681,0.0000021680,0.0000021676,0.0000021671,0.0000021660, +0.0000021642,0.0000021622,0.0000021609,0.0000021605,0.0000021604, +0.0000021601,0.0000021595,0.0000021596,0.0000021604,0.0000021622, +0.0000021646,0.0000021667,0.0000021685,0.0000021714,0.0000021757, +0.0000021813,0.0000021883,0.0000021959,0.0000022029,0.0000022092, +0.0000022148,0.0000022198,0.0000022245,0.0000022285,0.0000022315, +0.0000022334,0.0000022344,0.0000022345,0.0000022342,0.0000022333, +0.0000022313,0.0000022289,0.0000022267,0.0000022250,0.0000022240, +0.0000022238,0.0000022235,0.0000022228,0.0000022222,0.0000022212, +0.0000022195,0.0000022175,0.0000022151,0.0000022120,0.0000022086, +0.0000022045,0.0000021994,0.0000021948,0.0000021924,0.0000021913, +0.0000021891,0.0000021864,0.0000021843,0.0000021774,0.0000021669, +0.0000021620,0.0000021631,0.0000021681,0.0000021742,0.0000021785, +0.0000021801,0.0000021798,0.0000021780,0.0000021752,0.0000021720, +0.0000021704,0.0000021696,0.0000021670,0.0000021617,0.0000021570, +0.0000021568,0.0000021598,0.0000021607,0.0000021586,0.0000021566, +0.0000021573,0.0000021636,0.0000021741,0.0000021830,0.0000021876, +0.0000021896,0.0000021901,0.0000021892,0.0000021881,0.0000021890, +0.0000021920,0.0000021956,0.0000021995,0.0000022028,0.0000022034, +0.0000022018,0.0000021998,0.0000021979,0.0000021964,0.0000021959, +0.0000021967,0.0000021992,0.0000022029,0.0000022073,0.0000022131, +0.0000022193,0.0000022230,0.0000022231,0.0000022200,0.0000022145, +0.0000022060,0.0000021943,0.0000021829,0.0000021762,0.0000021746, +0.0000021737,0.0000021698,0.0000021631,0.0000021542,0.0000021429, +0.0000021302,0.0000021182,0.0000021090,0.0000021033,0.0000021005, +0.0000020991,0.0000020987,0.0000021005,0.0000021034,0.0000021048, +0.0000021038,0.0000021049,0.0000021242,0.0000021589,0.0000021862, +0.0000022028,0.0000022155,0.0000022235,0.0000022297,0.0000022385, +0.0000022472,0.0000022524,0.0000022556,0.0000022581,0.0000022590, +0.0000022580,0.0000022542,0.0000022487,0.0000022430,0.0000022391, +0.0000022383,0.0000022399,0.0000022417,0.0000022420,0.0000022415, +0.0000022419,0.0000022440,0.0000022472,0.0000022503,0.0000022531, +0.0000022553,0.0000022566,0.0000022569,0.0000022572,0.0000022576, +0.0000022575,0.0000022562,0.0000022537,0.0000022499,0.0000022446, +0.0000022390,0.0000022341,0.0000022288,0.0000022211,0.0000022103, +0.0000021983,0.0000021872,0.0000021782,0.0000021734,0.0000021739, +0.0000021819,0.0000021934,0.0000022040,0.0000022129,0.0000022274, +0.0000022252,0.0000022224,0.0000022210,0.0000022213,0.0000022233, +0.0000022264,0.0000022273,0.0000022167,0.0000021920,0.0000021757, +0.0000021828,0.0000022018,0.0000022274,0.0000022591,0.0000022770, +0.0000022751,0.0000022701,0.0000022720,0.0000022813,0.0000022926, +0.0000022988,0.0000022993,0.0000022994,0.0000023026,0.0000023056, +0.0000023072,0.0000023101,0.0000023140,0.0000023176,0.0000023187, +0.0000023163,0.0000023132,0.0000023149,0.0000023199,0.0000023212, +0.0000023168,0.0000023079,0.0000023002,0.0000022985,0.0000023017, +0.0000023070,0.0000023090,0.0000023076,0.0000023039,0.0000023007, +0.0000022995,0.0000023002,0.0000023017,0.0000023038,0.0000023058, +0.0000023076,0.0000023090,0.0000023089,0.0000023070,0.0000023052, +0.0000023053,0.0000023070,0.0000023089,0.0000023102,0.0000023110, +0.0000023137,0.0000023182,0.0000023233,0.0000023297,0.0000023374, +0.0000023440,0.0000023477,0.0000023484,0.0000023475,0.0000023447, +0.0000023417,0.0000023418,0.0000023433,0.0000023436,0.0000023428, +0.0000023398,0.0000023348,0.0000023310,0.0000023291,0.0000023284, +0.0000023298,0.0000023304,0.0000023284,0.0000023251,0.0000023205, +0.0000023172,0.0000023166,0.0000023155,0.0000023142,0.0000023135, +0.0000023140,0.0000023143,0.0000023150,0.0000023163,0.0000023180, +0.0000023221,0.0000023292,0.0000023355,0.0000023394,0.0000023419, +0.0000023428,0.0000023403,0.0000023352,0.0000023312,0.0000023286, +0.0000023267,0.0000023247,0.0000023221,0.0000023176,0.0000023117, +0.0000023040,0.0000022946,0.0000022848,0.0000022757,0.0000022694, +0.0000022666,0.0000022681,0.0000022762,0.0000022888,0.0000023010, +0.0000023094,0.0000023146,0.0000023192,0.0000023239,0.0000023280, +0.0000023304,0.0000023311,0.0000023312,0.0000023319,0.0000023338, +0.0000023351,0.0000023366,0.0000023388,0.0000023406,0.0000023414, +0.0000023415,0.0000023400,0.0000023383,0.0000023381,0.0000023392, +0.0000023398,0.0000023396,0.0000023400,0.0000023414,0.0000023435, +0.0000023470,0.0000023502,0.0000023532,0.0000023565,0.0000023602, +0.0000023648,0.0000023709,0.0000023782,0.0000023849,0.0000023873, +0.0000023852,0.0000023770,0.0000023645,0.0000023537,0.0000023491, +0.0000023500,0.0000023533,0.0000023547,0.0000023519,0.0000023430, +0.0000023309,0.0000023212,0.0000023162,0.0000023141,0.0000023125, +0.0000023108,0.0000023097,0.0000023094,0.0000023097,0.0000023117, +0.0000023158,0.0000023211,0.0000023258,0.0000023288,0.0000023306, +0.0000023315,0.0000023305,0.0000023280,0.0000023242,0.0000023194, +0.0000023142,0.0000023083,0.0000023067,0.0000023053,0.0000023065, +0.0000023099,0.0000023150,0.0000023208,0.0000023274,0.0000023338, +0.0000023388,0.0000023429,0.0000023464,0.0000023497,0.0000023525, +0.0000023549,0.0000023580,0.0000023613,0.0000023645,0.0000023670, +0.0000023680,0.0000023674,0.0000023651,0.0000023609,0.0000023557, +0.0000023505,0.0000023448,0.0000023384,0.0000023314,0.0000023242, +0.0000023173,0.0000023113,0.0000023062,0.0000023020,0.0000022996, +0.0000022998,0.0000023027,0.0000023066,0.0000023112,0.0000023161, +0.0000023209,0.0000023247,0.0000023268,0.0000023281,0.0000023284, +0.0000023283,0.0000023278,0.0000023272,0.0000023265,0.0000023256, +0.0000023244,0.0000023232,0.0000023225,0.0000023229,0.0000023234, +0.0000023245,0.0000023260,0.0000023277,0.0000023297,0.0000023322, +0.0000023352,0.0000023380,0.0000023399,0.0000023405,0.0000023402, +0.0000023407,0.0000023420,0.0000023437,0.0000023452,0.0000023465, +0.0000023478,0.0000023489,0.0000023495,0.0000023499,0.0000023506, +0.0000023518,0.0000023533,0.0000023549,0.0000023556,0.0000023560, +0.0000023565,0.0000023553,0.0000023536,0.0000023523,0.0000023516, +0.0000023519,0.0000023521,0.0000023527,0.0000023540,0.0000023560, +0.0000023579,0.0000023595,0.0000023610,0.0000023622,0.0000023608, +0.0000023592,0.0000023579,0.0000023563,0.0000023533,0.0000023503, +0.0000023478,0.0000023460,0.0000023447,0.0000023438,0.0000023429, +0.0000023415,0.0000023402,0.0000023397,0.0000023397,0.0000023393, +0.0000023378,0.0000023358,0.0000023346,0.0000023345,0.0000023354, +0.0000023367,0.0000023381,0.0000023395,0.0000023406,0.0000023406, +0.0000023404,0.0000023395,0.0000023390,0.0000023397,0.0000023412, +0.0000023431,0.0000023449,0.0000023472,0.0000023482,0.0000023483, +0.0000023482,0.0000023482,0.0000023484,0.0000023478,0.0000023462, +0.0000023438,0.0000023405,0.0000023372,0.0000023340,0.0000023312, +0.0000023289,0.0000023264,0.0000023237,0.0000023217,0.0000023211, +0.0000023215,0.0000023229,0.0000023248,0.0000023265,0.0000023295, +0.0000023305,0.0000023299,0.0000023285,0.0000023282,0.0000023265, +0.0000023243,0.0000023228,0.0000023226,0.0000023215,0.0000023196, +0.0000023165,0.0000023131,0.0000023090,0.0000023043,0.0000022994, +0.0000022948,0.0000022927,0.0000022899,0.0000022872,0.0000022841, +0.0000022806,0.0000022785,0.0000022777,0.0000022783,0.0000022780, +0.0000022794,0.0000022840,0.0000022911,0.0000022989,0.0000023069, +0.0000023146,0.0000023211,0.0000023247,0.0000023253,0.0000023241, +0.0000023215,0.0000023177,0.0000023131,0.0000023073,0.0000023013, +0.0000022958,0.0000022901,0.0000022827,0.0000022752,0.0000022691, +0.0000022647,0.0000022620,0.0000022626,0.0000022652,0.0000022684, +0.0000022726,0.0000022778,0.0000022841,0.0000022926,0.0000023023, +0.0000023102,0.0000023158,0.0000023189,0.0000023191,0.0000023167, +0.0000023121,0.0000023063,0.0000023005,0.0000022957,0.0000022927, +0.0000022914,0.0000022895,0.0000022870,0.0000022853,0.0000022844, +0.0000022819,0.0000022797,0.0000022777,0.0000022733,0.0000022729, +0.0000022736,0.0000022722,0.0000022753,0.0000022839,0.0000022969, +0.0000023195,0.0000023352,0.0000023380,0.0000023392,0.0000023331, +0.0000023249,0.0000023211,0.0000023082,0.0000022958,0.0000022954, +0.0000023040,0.0000023142,0.0000023221,0.0000023289,0.0000023352, +0.0000023402,0.0000023437,0.0000023462,0.0000023473,0.0000023447, +0.0000023420,0.0000023409,0.0000023377,0.0000023337,0.0000023324, +0.0000023300,0.0000023230,0.0000023166,0.0000023131,0.0000023098, +0.0000023084,0.0000023069,0.0000023044,0.0000023004,0.0000022948, +0.0000022899,0.0000022881,0.0000022924,0.0000022953,0.0000022918, +0.0000022874,0.0000022858,0.0000022864,0.0000022877,0.0000022909, +0.0000022959,0.0000022979,0.0000022980,0.0000022973,0.0000022937, +0.0000022888,0.0000022840,0.0000022776,0.0000022682,0.0000022576, +0.0000022510,0.0000022498,0.0000022484,0.0000022405,0.0000022258, +0.0000022156,0.0000022153,0.0000022188,0.0000022269,0.0000022386, +0.0000022501,0.0000022582,0.0000022608,0.0000022570,0.0000022406, +0.0000022258,0.0000022264,0.0000022402,0.0000022605,0.0000022745, +0.0000022799,0.0000022829,0.0000022880,0.0000022889,0.0000022800, +0.0000022682,0.0000022656,0.0000022723,0.0000022781,0.0000022812, +0.0000022900,0.0000023033,0.0000023128,0.0000023161,0.0000023147, +0.0000023043,0.0000022854,0.0000022609,0.0000022346,0.0000022119, +0.0000022012,0.0000022028,0.0000022135,0.0000022228,0.0000022238, +0.0000022212,0.0000022208,0.0000022233,0.0000022255,0.0000022267, +0.0000022283,0.0000022316,0.0000022375,0.0000022458,0.0000022538, +0.0000022601,0.0000022654,0.0000022694,0.0000022724,0.0000022759, +0.0000022796,0.0000022819,0.0000022830,0.0000022841,0.0000022853, +0.0000022871,0.0000022901,0.0000022947,0.0000022988,0.0000023020, +0.0000023050,0.0000023078,0.0000023113,0.0000023154,0.0000023185, +0.0000023214,0.0000023243,0.0000023268,0.0000023288,0.0000023295, +0.0000023281,0.0000023246,0.0000023206,0.0000023177,0.0000023177, +0.0000023197,0.0000023240,0.0000023287,0.0000023325,0.0000023343, +0.0000023339,0.0000023307,0.0000023246,0.0000023189,0.0000023141, +0.0000023084,0.0000023010,0.0000022935,0.0000022873,0.0000022830, +0.0000022809,0.0000022797,0.0000022801,0.0000022805,0.0000022808, +0.0000022828,0.0000022849,0.0000022866,0.0000022882,0.0000022900, +0.0000022913,0.0000022920,0.0000022953,0.0000023060,0.0000023217, +0.0000023348,0.0000023412,0.0000023432,0.0000023471,0.0000023546, +0.0000023608,0.0000023617,0.0000023570,0.0000023512,0.0000023486, +0.0000023498,0.0000023535,0.0000023568,0.0000023591,0.0000023631, +0.0000023697,0.0000023780,0.0000023844,0.0000023879,0.0000023911, +0.0000023975,0.0000024056,0.0000024111,0.0000024114,0.0000024103, +0.0000024123,0.0000024167,0.0000024185,0.0000024194,0.0000024154, +0.0000024052,0.0000023959,0.0000023845,0.0000023811,0.0000023858, +0.0000023887,0.0000023885,0.0000023876,0.0000023853,0.0000023831, +0.0000023828,0.0000023844,0.0000023872,0.0000023892,0.0000023909, +0.0000023920,0.0000023939,0.0000023979,0.0000024003,0.0000023986, +0.0000023939,0.0000023913,0.0000023925,0.0000023949,0.0000023952, +0.0000023932,0.0000023897,0.0000023860,0.0000023831,0.0000023814, +0.0000023807,0.0000023798,0.0000023778,0.0000023746,0.0000023714, +0.0000023689,0.0000023677,0.0000023675,0.0000023673,0.0000023670, +0.0000023672,0.0000023679,0.0000023684,0.0000023680,0.0000023668, +0.0000023655,0.0000023643,0.0000023636,0.0000023628,0.0000023627, +0.0000023633,0.0000023635,0.0000023621,0.0000023608,0.0000023591, +0.0000023573,0.0000023553,0.0000023541,0.0000023538,0.0000023545, +0.0000023557,0.0000023569,0.0000023584,0.0000023599,0.0000023610, +0.0000023618,0.0000023632,0.0000023659,0.0000023684,0.0000023699, +0.0000023705,0.0000023711,0.0000023725,0.0000023752,0.0000023784, +0.0000023807,0.0000023808,0.0000023788,0.0000023757,0.0000023722, +0.0000023687,0.0000023654,0.0000023618,0.0000023574,0.0000023519, +0.0000023457,0.0000023403,0.0000023366,0.0000023344,0.0000023332, +0.0000023326,0.0000023324,0.0000023320,0.0000023315,0.0000023312, +0.0000023316,0.0000023325,0.0000023339,0.0000023354,0.0000023369, +0.0000023383,0.0000023395,0.0000023408,0.0000023427,0.0000023454, +0.0000023487,0.0000023523,0.0000023559,0.0000023590,0.0000023618, +0.0000023643,0.0000023668,0.0000023695,0.0000023723,0.0000023753, +0.0000023792,0.0000023831,0.0000023867,0.0000023904,0.0000023942, +0.0000023969,0.0000023989,0.0000023984,0.0000023971,0.0000023957, +0.0000023926,0.0000023881,0.0000023832,0.0000023776,0.0000023699, +0.0000023615,0.0000023525,0.0000023443,0.0000023368,0.0000023301, +0.0000023262,0.0000023251,0.0000023258,0.0000023287,0.0000023329, +0.0000023387,0.0000023461,0.0000023544,0.0000023598,0.0000023612, +0.0000023610,0.0000023621,0.0000023625,0.0000023601,0.0000023588, +0.0000023658,0.0000023781,0.0000023870,0.0000023914,0.0000023919, +0.0000023857,0.0000023725,0.0000023614,0.0000023567,0.0000023549, +0.0000023556,0.0000023608,0.0000023693,0.0000023756,0.0000023740, +0.0000023628,0.0000023437,0.0000023271,0.0000023161,0.0000023076, +0.0000023004,0.0000022932,0.0000022849,0.0000022761,0.0000022687, +0.0000022650,0.0000022648,0.0000022664,0.0000022690,0.0000022715, +0.0000022744,0.0000022784,0.0000022839,0.0000022896,0.0000022950, +0.0000023007,0.0000023055,0.0000023074,0.0000023063,0.0000023029, +0.0000022982,0.0000022934,0.0000022900,0.0000022877,0.0000022852, +0.0000022823,0.0000022793,0.0000022746,0.0000022672,0.0000022594, +0.0000022533,0.0000022473,0.0000022396,0.0000022322,0.0000022276, +0.0000022231,0.0000022145,0.0000022053,0.0000022030,0.0000022040, +0.0000022002,0.0000021908,0.0000021817,0.0000021696,0.0000021562, +0.0000021518,0.0000021548,0.0000021545,0.0000021485,0.0000021447, +0.0000021481,0.0000021617,0.0000021839,0.0000022118,0.0000022387, +0.0000022560,0.0000022601,0.0000022572,0.0000022591,0.0000022737, +0.0000022943,0.0000023083,0.0000023152,0.0000023189,0.0000023182, +0.0000023127,0.0000023069,0.0000023040,0.0000023011,0.0000022963, +0.0000022913,0.0000022884,0.0000022890,0.0000022916,0.0000022938, +0.0000022942,0.0000022922,0.0000022880,0.0000022833,0.0000022767, +0.0000022670,0.0000022563,0.0000022455,0.0000022338,0.0000022221, +0.0000022100,0.0000021951,0.0000021760,0.0000021559,0.0000021389, +0.0000021268,0.0000021188,0.0000021143,0.0000021131,0.0000021145, +0.0000021182,0.0000021239,0.0000021306,0.0000021374,0.0000021436, +0.0000021488,0.0000021532,0.0000021568,0.0000021597,0.0000021623, +0.0000021650,0.0000021682,0.0000021704,0.0000021713,0.0000021720, +0.0000021740,0.0000021777,0.0000021820,0.0000021862,0.0000021901, +0.0000021933,0.0000021951,0.0000021952,0.0000021936,0.0000021901, +0.0000021855,0.0000021812,0.0000021785,0.0000021753,0.0000021679, +0.0000021546,0.0000021377,0.0000021215,0.0000021082,0.0000020973, +0.0000020877,0.0000020788,0.0000020712,0.0000020691,0.0000020721, +0.0000020804,0.0000020903,0.0000021043,0.0000021258,0.0000021495, +0.0000021665,0.0000021734,0.0000021749,0.0000021808,0.0000021978, +0.0000022236,0.0000022483,0.0000022613,0.0000022601,0.0000022508, +0.0000022420,0.0000022406,0.0000022502,0.0000022650,0.0000022797, +0.0000022938,0.0000023097,0.0000023250,0.0000023351,0.0000023432, +0.0000023591,0.0000023831,0.0000024057,0.0000024208,0.0000024311, +0.0000024419,0.0000024565,0.0000024732,0.0000024868,0.0000024949, +0.0000025008,0.0000025068,0.0000025109,0.0000025120,0.0000025138, +0.0000025157,0.0000025117,0.0000025008,0.0000024898,0.0000024837, +0.0000024793,0.0000024722,0.0000024638,0.0000024599,0.0000024631, +0.0000024705,0.0000024772,0.0000024823,0.0000024882,0.0000024941, +0.0000024963,0.0000024900,0.0000024706,0.0000024445,0.0000024181, +0.0000024008,0.0000023965,0.0000023913,0.0000023783,0.0000023669, +0.0000023623,0.0000023614,0.0000023624,0.0000023658,0.0000023711, +0.0000023772,0.0000023828,0.0000023868,0.0000023888,0.0000023887, +0.0000023872,0.0000023850,0.0000023829,0.0000023818,0.0000023816, +0.0000023815,0.0000023793,0.0000023744,0.0000023679,0.0000023604, +0.0000023519,0.0000023427,0.0000023324,0.0000023213,0.0000023104, +0.0000023018,0.0000022984,0.0000023003,0.0000023060,0.0000023128, +0.0000023195,0.0000023261,0.0000023323,0.0000023373,0.0000023405, +0.0000023424,0.0000023437,0.0000023445,0.0000023444,0.0000023430, +0.0000023396,0.0000023344,0.0000023280,0.0000023211,0.0000023161, +0.0000023162,0.0000023217,0.0000023319,0.0000023465,0.0000023642, +0.0000023818,0.0000023973,0.0000024104,0.0000024229,0.0000024363, +0.0000024514,0.0000024672,0.0000024814,0.0000024916,0.0000024971, +0.0000024987,0.0000024981,0.0000024965,0.0000024939,0.0000024908, +0.0000024877,0.0000024853,0.0000024826,0.0000024758,0.0000024618, +0.0000024445,0.0000024320,0.0000024261,0.0000024212,0.0000024152, +0.0000024111,0.0000024099,0.0000024088,0.0000024061,0.0000024019, +0.0000023968,0.0000023903,0.0000023831,0.0000023759,0.0000023695, +0.0000023627,0.0000023527,0.0000023419,0.0000023314,0.0000023258, +0.0000023240,0.0000023223,0.0000023208,0.0000023203,0.0000023167, +0.0000023062,0.0000022812,0.0000022418,0.0000022025,0.0000021769, +0.0000021655,0.0000021652,0.0000021706,0.0000021784,0.0000021859, +0.0000021924,0.0000021956,0.0000021944,0.0000021909,0.0000021861, +0.0000021785,0.0000021703,0.0000021651,0.0000021621,0.0000021568, +0.0000021458,0.0000021308,0.0000021192,0.0000021164,0.0000021182, +0.0000021192,0.0000021181,0.0000021171,0.0000021165,0.0000021164, +0.0000021171,0.0000021187,0.0000021208,0.0000021242,0.0000021286, +0.0000021337,0.0000021389,0.0000021427,0.0000021457,0.0000021480, +0.0000021496,0.0000021510,0.0000021517,0.0000021521,0.0000021517, +0.0000021509,0.0000021493,0.0000021458,0.0000021414,0.0000021370, +0.0000021328,0.0000021297,0.0000021284,0.0000021267,0.0000021263, +0.0000021282,0.0000021296,0.0000021312,0.0000021326,0.0000021334, +0.0000021335,0.0000021338,0.0000021343,0.0000021338,0.0000021330, +0.0000021326,0.0000021331,0.0000021338,0.0000021343,0.0000021346, +0.0000021349,0.0000021357,0.0000021372,0.0000021397,0.0000021426, +0.0000021457,0.0000021486,0.0000021506,0.0000021522,0.0000021544, +0.0000021561,0.0000021568,0.0000021567,0.0000021565,0.0000021564, +0.0000021565,0.0000021579,0.0000021614,0.0000021664,0.0000021718, +0.0000021765,0.0000021800,0.0000021822,0.0000021833,0.0000021837, +0.0000021829,0.0000021813,0.0000021792,0.0000021776,0.0000021767, +0.0000021759,0.0000021751,0.0000021753,0.0000021752,0.0000021746, +0.0000021743,0.0000021741,0.0000021729,0.0000021704,0.0000021674, +0.0000021643,0.0000021620,0.0000021608,0.0000021603,0.0000021599, +0.0000021595,0.0000021590,0.0000021591,0.0000021602,0.0000021612, +0.0000021622,0.0000021631,0.0000021640,0.0000021657,0.0000021691, +0.0000021740,0.0000021795,0.0000021847,0.0000021898,0.0000021956, +0.0000022018,0.0000022077,0.0000022127,0.0000022172,0.0000022214, +0.0000022248,0.0000022274,0.0000022291,0.0000022298,0.0000022291, +0.0000022276,0.0000022261,0.0000022248,0.0000022234,0.0000022221, +0.0000022208,0.0000022199,0.0000022188,0.0000022172,0.0000022150, +0.0000022124,0.0000022096,0.0000022064,0.0000022020,0.0000021964, +0.0000021922,0.0000021902,0.0000021886,0.0000021857,0.0000021838, +0.0000021790,0.0000021688,0.0000021618,0.0000021615,0.0000021647, +0.0000021693,0.0000021741,0.0000021776,0.0000021789,0.0000021779, +0.0000021757,0.0000021730,0.0000021708,0.0000021704,0.0000021705, +0.0000021694,0.0000021639,0.0000021569,0.0000021541,0.0000021557, +0.0000021567,0.0000021546,0.0000021523,0.0000021539,0.0000021625, +0.0000021744,0.0000021825,0.0000021863,0.0000021880,0.0000021883, +0.0000021869,0.0000021862,0.0000021880,0.0000021915,0.0000021952, +0.0000021993,0.0000022026,0.0000022032,0.0000022017,0.0000021998, +0.0000021978,0.0000021959,0.0000021944,0.0000021940,0.0000021963, +0.0000022014,0.0000022071,0.0000022134,0.0000022201,0.0000022244, +0.0000022250,0.0000022219,0.0000022155,0.0000022069,0.0000021962, +0.0000021847,0.0000021759,0.0000021716,0.0000021695,0.0000021666, +0.0000021617,0.0000021546,0.0000021456,0.0000021356,0.0000021262, +0.0000021184,0.0000021136,0.0000021120,0.0000021112,0.0000021077, +0.0000021040,0.0000021036,0.0000021050,0.0000021043,0.0000021024, +0.0000021111,0.0000021426,0.0000021750,0.0000021950,0.0000022090, +0.0000022189,0.0000022253,0.0000022331,0.0000022418,0.0000022475, +0.0000022506,0.0000022524,0.0000022526,0.0000022503,0.0000022453, +0.0000022393,0.0000022338,0.0000022303,0.0000022295,0.0000022303, +0.0000022322,0.0000022340,0.0000022358,0.0000022381,0.0000022411, +0.0000022444,0.0000022471,0.0000022490,0.0000022500,0.0000022498, +0.0000022490,0.0000022486,0.0000022485,0.0000022480,0.0000022462, +0.0000022431,0.0000022385,0.0000022323,0.0000022247,0.0000022156, +0.0000022045,0.0000021933,0.0000021840,0.0000021769,0.0000021723, +0.0000021725,0.0000021784,0.0000021886,0.0000021986,0.0000022078, +0.0000022178,0.0000022255,0.0000022264,0.0000022229,0.0000022208, +0.0000022207,0.0000022228,0.0000022265,0.0000022285,0.0000022229, +0.0000022000,0.0000021798,0.0000021805,0.0000021959,0.0000022164, +0.0000022452,0.0000022719,0.0000022778,0.0000022705,0.0000022681, +0.0000022733,0.0000022842,0.0000022937,0.0000022976,0.0000022974, +0.0000022985,0.0000023024,0.0000023053,0.0000023072,0.0000023099, +0.0000023124,0.0000023142,0.0000023139,0.0000023101,0.0000023075, +0.0000023095,0.0000023139,0.0000023143,0.0000023093,0.0000023022, +0.0000022973,0.0000022965,0.0000022987,0.0000023026,0.0000023043, +0.0000023032,0.0000023007,0.0000022992,0.0000022987,0.0000022987, +0.0000022995,0.0000023012,0.0000023032,0.0000023052,0.0000023072, +0.0000023079,0.0000023071,0.0000023057,0.0000023058,0.0000023077, +0.0000023104,0.0000023127,0.0000023138,0.0000023161,0.0000023206, +0.0000023253,0.0000023306,0.0000023376,0.0000023447,0.0000023491, +0.0000023505,0.0000023501,0.0000023468,0.0000023432,0.0000023431, +0.0000023451,0.0000023463,0.0000023458,0.0000023429,0.0000023382, +0.0000023344,0.0000023315,0.0000023286,0.0000023288,0.0000023305, +0.0000023310,0.0000023312,0.0000023306,0.0000023290,0.0000023276, +0.0000023253,0.0000023222,0.0000023200,0.0000023191,0.0000023192, +0.0000023205,0.0000023224,0.0000023249,0.0000023276,0.0000023327, +0.0000023389,0.0000023438,0.0000023466,0.0000023476,0.0000023459, +0.0000023413,0.0000023358,0.0000023313,0.0000023281,0.0000023255, +0.0000023229,0.0000023207,0.0000023184,0.0000023163,0.0000023129, +0.0000023062,0.0000022967,0.0000022860,0.0000022757,0.0000022678, +0.0000022647,0.0000022665,0.0000022748,0.0000022853,0.0000022949, +0.0000023034,0.0000023109,0.0000023170,0.0000023209,0.0000023216, +0.0000023213,0.0000023211,0.0000023221,0.0000023241,0.0000023263, +0.0000023294,0.0000023322,0.0000023341,0.0000023360,0.0000023373, +0.0000023375,0.0000023375,0.0000023380,0.0000023391,0.0000023397, +0.0000023392,0.0000023385,0.0000023387,0.0000023401,0.0000023435, +0.0000023464,0.0000023490,0.0000023519,0.0000023541,0.0000023560, +0.0000023590,0.0000023645,0.0000023714,0.0000023770,0.0000023794, +0.0000023775,0.0000023710,0.0000023610,0.0000023518,0.0000023481, +0.0000023488,0.0000023517,0.0000023522,0.0000023487,0.0000023405, +0.0000023300,0.0000023208,0.0000023157,0.0000023143,0.0000023148, +0.0000023156,0.0000023156,0.0000023147,0.0000023140,0.0000023151, +0.0000023178,0.0000023213,0.0000023245,0.0000023270,0.0000023284, +0.0000023286,0.0000023275,0.0000023264,0.0000023243,0.0000023211, +0.0000023168,0.0000023127,0.0000023082,0.0000023049,0.0000023034, +0.0000023041,0.0000023065,0.0000023109,0.0000023152,0.0000023188, +0.0000023217,0.0000023241,0.0000023263,0.0000023279,0.0000023293, +0.0000023308,0.0000023324,0.0000023340,0.0000023351,0.0000023352, +0.0000023340,0.0000023312,0.0000023272,0.0000023227,0.0000023181, +0.0000023132,0.0000023086,0.0000023042,0.0000022997,0.0000022958, +0.0000022936,0.0000022929,0.0000022932,0.0000022942,0.0000022967, +0.0000023001,0.0000023044,0.0000023093,0.0000023144,0.0000023190, +0.0000023220,0.0000023237,0.0000023242,0.0000023238,0.0000023228, +0.0000023216,0.0000023205,0.0000023195,0.0000023186,0.0000023175, +0.0000023166,0.0000023160,0.0000023158,0.0000023157,0.0000023160, +0.0000023167,0.0000023180,0.0000023200,0.0000023228,0.0000023261, +0.0000023298,0.0000023331,0.0000023353,0.0000023363,0.0000023375, +0.0000023398,0.0000023426,0.0000023448,0.0000023463,0.0000023478, +0.0000023491,0.0000023495,0.0000023493,0.0000023491,0.0000023484, +0.0000023477,0.0000023472,0.0000023465,0.0000023466,0.0000023479, +0.0000023487,0.0000023491,0.0000023503,0.0000023518,0.0000023529, +0.0000023533,0.0000023528,0.0000023517,0.0000023502,0.0000023487, +0.0000023474,0.0000023472,0.0000023482,0.0000023496,0.0000023507, +0.0000023529,0.0000023554,0.0000023549,0.0000023533,0.0000023512, +0.0000023497,0.0000023483,0.0000023473,0.0000023465,0.0000023454, +0.0000023441,0.0000023431,0.0000023430,0.0000023434,0.0000023433, +0.0000023423,0.0000023412,0.0000023404,0.0000023403,0.0000023404, +0.0000023405,0.0000023404,0.0000023408,0.0000023409,0.0000023407, +0.0000023400,0.0000023396,0.0000023400,0.0000023400,0.0000023398, +0.0000023395,0.0000023384,0.0000023358,0.0000023332,0.0000023314, +0.0000023309,0.0000023306,0.0000023303,0.0000023295,0.0000023276, +0.0000023252,0.0000023226,0.0000023198,0.0000023168,0.0000023133, +0.0000023091,0.0000023051,0.0000023025,0.0000023012,0.0000023015, +0.0000023033,0.0000023063,0.0000023103,0.0000023151,0.0000023195, +0.0000023228,0.0000023264,0.0000023312,0.0000023360,0.0000023383, +0.0000023400,0.0000023416,0.0000023418,0.0000023396,0.0000023363, +0.0000023329,0.0000023280,0.0000023223,0.0000023166,0.0000023120, +0.0000023089,0.0000023062,0.0000023035,0.0000023010,0.0000022982, +0.0000022945,0.0000022899,0.0000022851,0.0000022813,0.0000022783, +0.0000022769,0.0000022769,0.0000022792,0.0000022844,0.0000022892, +0.0000022941,0.0000022982,0.0000023004,0.0000023007,0.0000022996, +0.0000022970,0.0000022932,0.0000022877,0.0000022817,0.0000022767, +0.0000022721,0.0000022673,0.0000022624,0.0000022593,0.0000022584, +0.0000022592,0.0000022619,0.0000022663,0.0000022722,0.0000022794, +0.0000022869,0.0000022941,0.0000023014,0.0000023097,0.0000023168, +0.0000023221,0.0000023250,0.0000023251,0.0000023220,0.0000023162, +0.0000023081,0.0000022998,0.0000022932,0.0000022893,0.0000022887, +0.0000022897,0.0000022897,0.0000022888,0.0000022872,0.0000022852, +0.0000022818,0.0000022790,0.0000022741,0.0000022709,0.0000022730, +0.0000022726,0.0000022737,0.0000022819,0.0000022901,0.0000023058, +0.0000023300,0.0000023415,0.0000023424,0.0000023420,0.0000023319, +0.0000023236,0.0000023163,0.0000023027,0.0000022943,0.0000022964, +0.0000023050,0.0000023130,0.0000023198,0.0000023268,0.0000023322, +0.0000023370,0.0000023420,0.0000023456,0.0000023461,0.0000023445, +0.0000023436,0.0000023413,0.0000023367,0.0000023335,0.0000023316, +0.0000023297,0.0000023276,0.0000023246,0.0000023191,0.0000023150, +0.0000023119,0.0000023080,0.0000023036,0.0000022996,0.0000022968, +0.0000022961,0.0000022987,0.0000022974,0.0000022915,0.0000022866, +0.0000022850,0.0000022844,0.0000022859,0.0000022904,0.0000022949, +0.0000022951,0.0000022943,0.0000022949,0.0000022920,0.0000022873, +0.0000022834,0.0000022783,0.0000022700,0.0000022596,0.0000022521, +0.0000022499,0.0000022479,0.0000022381,0.0000022226,0.0000022148, +0.0000022165,0.0000022235,0.0000022349,0.0000022474,0.0000022556, +0.0000022596,0.0000022600,0.0000022507,0.0000022317,0.0000022217, +0.0000022269,0.0000022458,0.0000022656,0.0000022767,0.0000022809, +0.0000022861,0.0000022926,0.0000022920,0.0000022817,0.0000022695, +0.0000022673,0.0000022726,0.0000022764,0.0000022793,0.0000022886, +0.0000023013,0.0000023091,0.0000023122,0.0000023089,0.0000022971, +0.0000022784,0.0000022553,0.0000022322,0.0000022133,0.0000022028, +0.0000022050,0.0000022154,0.0000022231,0.0000022232,0.0000022194, +0.0000022180,0.0000022215,0.0000022259,0.0000022290,0.0000022325, +0.0000022379,0.0000022443,0.0000022515,0.0000022583,0.0000022634, +0.0000022672,0.0000022703,0.0000022726,0.0000022745,0.0000022766, +0.0000022779,0.0000022792,0.0000022815,0.0000022838,0.0000022861, +0.0000022892,0.0000022943,0.0000022996,0.0000023038,0.0000023074, +0.0000023095,0.0000023114,0.0000023138,0.0000023162,0.0000023182, +0.0000023216,0.0000023253,0.0000023278,0.0000023287,0.0000023278, +0.0000023240,0.0000023191,0.0000023142,0.0000023116,0.0000023120, +0.0000023154,0.0000023202,0.0000023252,0.0000023303,0.0000023339, +0.0000023344,0.0000023323,0.0000023269,0.0000023202,0.0000023136, +0.0000023070,0.0000022998,0.0000022924,0.0000022859,0.0000022815, +0.0000022793,0.0000022781,0.0000022770,0.0000022750,0.0000022737, +0.0000022753,0.0000022775,0.0000022797,0.0000022825,0.0000022853, +0.0000022881,0.0000022928,0.0000023025,0.0000023166,0.0000023298, +0.0000023375,0.0000023413,0.0000023437,0.0000023492,0.0000023562, +0.0000023599,0.0000023591,0.0000023544,0.0000023494,0.0000023471, +0.0000023479,0.0000023506,0.0000023526,0.0000023539,0.0000023570, +0.0000023630,0.0000023704,0.0000023767,0.0000023813,0.0000023866, +0.0000023958,0.0000024050,0.0000024098,0.0000024096,0.0000024090, +0.0000024119,0.0000024163,0.0000024189,0.0000024200,0.0000024142, +0.0000024046,0.0000023943,0.0000023835,0.0000023819,0.0000023862, +0.0000023886,0.0000023891,0.0000023895,0.0000023888,0.0000023876, +0.0000023866,0.0000023872,0.0000023893,0.0000023913,0.0000023934, +0.0000023951,0.0000023970,0.0000024001,0.0000024022,0.0000024013, +0.0000023964,0.0000023918,0.0000023904,0.0000023915,0.0000023921, +0.0000023907,0.0000023879,0.0000023849,0.0000023824,0.0000023806, +0.0000023787,0.0000023764,0.0000023736,0.0000023704,0.0000023676, +0.0000023665,0.0000023670,0.0000023682,0.0000023691,0.0000023697, +0.0000023701,0.0000023704,0.0000023705,0.0000023702,0.0000023697, +0.0000023693,0.0000023689,0.0000023678,0.0000023661,0.0000023648, +0.0000023636,0.0000023614,0.0000023583,0.0000023547,0.0000023508, +0.0000023471,0.0000023438,0.0000023418,0.0000023410,0.0000023411, +0.0000023418,0.0000023436,0.0000023465,0.0000023500,0.0000023535, +0.0000023565,0.0000023592,0.0000023615,0.0000023633,0.0000023647, +0.0000023658,0.0000023663,0.0000023666,0.0000023672,0.0000023688, +0.0000023710,0.0000023728,0.0000023737,0.0000023735,0.0000023718, +0.0000023684,0.0000023652,0.0000023614,0.0000023572,0.0000023522, +0.0000023461,0.0000023400,0.0000023345,0.0000023299,0.0000023268, +0.0000023248,0.0000023239,0.0000023240,0.0000023248,0.0000023260, +0.0000023273,0.0000023288,0.0000023305,0.0000023325,0.0000023343, +0.0000023362,0.0000023376,0.0000023387,0.0000023405,0.0000023431, +0.0000023461,0.0000023496,0.0000023531,0.0000023561,0.0000023585, +0.0000023605,0.0000023623,0.0000023645,0.0000023653,0.0000023652, +0.0000023671,0.0000023690,0.0000023710,0.0000023744,0.0000023780, +0.0000023826,0.0000023870,0.0000023906,0.0000023927,0.0000023932, +0.0000023926,0.0000023903,0.0000023865,0.0000023830,0.0000023789, +0.0000023745,0.0000023684,0.0000023638,0.0000023581,0.0000023521, +0.0000023450,0.0000023374,0.0000023289,0.0000023239,0.0000023189, +0.0000023189,0.0000023220,0.0000023296,0.0000023410,0.0000023526, +0.0000023592,0.0000023608,0.0000023618,0.0000023616,0.0000023574, +0.0000023551,0.0000023636,0.0000023767,0.0000023848,0.0000023885, +0.0000023879,0.0000023792,0.0000023666,0.0000023582,0.0000023539, +0.0000023520,0.0000023531,0.0000023574,0.0000023635,0.0000023686, +0.0000023685,0.0000023592,0.0000023423,0.0000023259,0.0000023154, +0.0000023099,0.0000023053,0.0000022996,0.0000022933,0.0000022866, +0.0000022814,0.0000022794,0.0000022796,0.0000022815,0.0000022842, +0.0000022878,0.0000022928,0.0000022991,0.0000023053,0.0000023104, +0.0000023140,0.0000023159,0.0000023149,0.0000023114,0.0000023069, +0.0000023018,0.0000022969,0.0000022938,0.0000022924,0.0000022906, +0.0000022873,0.0000022836,0.0000022800,0.0000022758,0.0000022695, +0.0000022620,0.0000022556,0.0000022507,0.0000022458,0.0000022404, +0.0000022356,0.0000022302,0.0000022199,0.0000022073,0.0000022026, +0.0000022040,0.0000022030,0.0000021955,0.0000021857,0.0000021728, +0.0000021584,0.0000021518,0.0000021521,0.0000021515,0.0000021463, +0.0000021410,0.0000021417,0.0000021514,0.0000021702,0.0000021966, +0.0000022261,0.0000022489,0.0000022581,0.0000022574,0.0000022568, +0.0000022645,0.0000022817,0.0000022982,0.0000023084,0.0000023137, +0.0000023133,0.0000023074,0.0000023010,0.0000022969,0.0000022931, +0.0000022881,0.0000022828,0.0000022795,0.0000022793,0.0000022804, +0.0000022811,0.0000022806,0.0000022773,0.0000022716,0.0000022649, +0.0000022571,0.0000022475,0.0000022383,0.0000022299,0.0000022207, +0.0000022095,0.0000021948,0.0000021758,0.0000021560,0.0000021407, +0.0000021308,0.0000021245,0.0000021208,0.0000021196,0.0000021201, +0.0000021229,0.0000021292,0.0000021378,0.0000021466,0.0000021548, +0.0000021620,0.0000021681,0.0000021732,0.0000021775,0.0000021801, +0.0000021806,0.0000021801,0.0000021787,0.0000021769,0.0000021753, +0.0000021748,0.0000021767,0.0000021801,0.0000021836,0.0000021874, +0.0000021906,0.0000021934,0.0000021954,0.0000021961,0.0000021959, +0.0000021938,0.0000021892,0.0000021838,0.0000021800,0.0000021779, +0.0000021753,0.0000021684,0.0000021552,0.0000021386,0.0000021232, +0.0000021106,0.0000020996,0.0000020895,0.0000020798,0.0000020725, +0.0000020708,0.0000020763,0.0000020842,0.0000020929,0.0000021074, +0.0000021293,0.0000021522,0.0000021670,0.0000021716,0.0000021735, +0.0000021835,0.0000022052,0.0000022316,0.0000022516,0.0000022572, +0.0000022522,0.0000022417,0.0000022366,0.0000022412,0.0000022544, +0.0000022693,0.0000022834,0.0000022976,0.0000023120,0.0000023248, +0.0000023340,0.0000023449,0.0000023646,0.0000023893,0.0000024090, +0.0000024210,0.0000024303,0.0000024426,0.0000024593,0.0000024769, +0.0000024896,0.0000024966,0.0000025019,0.0000025065,0.0000025085, +0.0000025098,0.0000025124,0.0000025120,0.0000025055,0.0000024917, +0.0000024805,0.0000024736,0.0000024676,0.0000024593,0.0000024530, +0.0000024534,0.0000024616,0.0000024718,0.0000024794,0.0000024854, +0.0000024915,0.0000024950,0.0000024913,0.0000024744,0.0000024495, +0.0000024233,0.0000024037,0.0000023976,0.0000023954,0.0000023854, +0.0000023728,0.0000023661,0.0000023645,0.0000023645,0.0000023665, +0.0000023709,0.0000023768,0.0000023832,0.0000023883,0.0000023911, +0.0000023914,0.0000023899,0.0000023874,0.0000023850,0.0000023840, +0.0000023841,0.0000023838,0.0000023811,0.0000023756,0.0000023682, +0.0000023601,0.0000023511,0.0000023409,0.0000023302,0.0000023192, +0.0000023084,0.0000022998,0.0000022965,0.0000022988,0.0000023050, +0.0000023126,0.0000023205,0.0000023276,0.0000023331,0.0000023371, +0.0000023391,0.0000023404,0.0000023412,0.0000023415,0.0000023403, +0.0000023377,0.0000023338,0.0000023288,0.0000023229,0.0000023158, +0.0000023102,0.0000023094,0.0000023127,0.0000023173,0.0000023241, +0.0000023347,0.0000023488,0.0000023645,0.0000023797,0.0000023930, +0.0000024042,0.0000024148,0.0000024271,0.0000024418,0.0000024572, +0.0000024704,0.0000024793,0.0000024838,0.0000024851,0.0000024843, +0.0000024828,0.0000024809,0.0000024781,0.0000024725,0.0000024622, +0.0000024478,0.0000024343,0.0000024261,0.0000024217,0.0000024167, +0.0000024113,0.0000024082,0.0000024069,0.0000024045,0.0000023996, +0.0000023929,0.0000023852,0.0000023776,0.0000023705,0.0000023638, +0.0000023579,0.0000023529,0.0000023480,0.0000023416,0.0000023325, +0.0000023240,0.0000023192,0.0000023174,0.0000023163,0.0000023152, +0.0000023144,0.0000023119,0.0000023059,0.0000022849,0.0000022473, +0.0000022050,0.0000021769,0.0000021680,0.0000021704,0.0000021776, +0.0000021842,0.0000021891,0.0000021935,0.0000021949,0.0000021922, +0.0000021876,0.0000021821,0.0000021747,0.0000021667,0.0000021615, +0.0000021598,0.0000021591,0.0000021552,0.0000021441,0.0000021303, +0.0000021211,0.0000021189,0.0000021190,0.0000021188,0.0000021181, +0.0000021174,0.0000021170,0.0000021179,0.0000021207,0.0000021255, +0.0000021315,0.0000021374,0.0000021432,0.0000021480,0.0000021520, +0.0000021555,0.0000021579,0.0000021593,0.0000021601,0.0000021606, +0.0000021605,0.0000021593,0.0000021579,0.0000021557,0.0000021532, +0.0000021503,0.0000021466,0.0000021430,0.0000021409,0.0000021388, +0.0000021367,0.0000021365,0.0000021365,0.0000021365,0.0000021367, +0.0000021371,0.0000021371,0.0000021369,0.0000021362,0.0000021350, +0.0000021335,0.0000021327,0.0000021328,0.0000021325,0.0000021320, +0.0000021316,0.0000021311,0.0000021308,0.0000021312,0.0000021325, +0.0000021338,0.0000021354,0.0000021374,0.0000021391,0.0000021408, +0.0000021429,0.0000021443,0.0000021446,0.0000021442,0.0000021435, +0.0000021428,0.0000021431,0.0000021449,0.0000021485,0.0000021533, +0.0000021593,0.0000021659,0.0000021722,0.0000021778,0.0000021816, +0.0000021836,0.0000021839,0.0000021834,0.0000021824,0.0000021810, +0.0000021803,0.0000021801,0.0000021791,0.0000021785,0.0000021784, +0.0000021778,0.0000021771,0.0000021770,0.0000021771,0.0000021764, +0.0000021747,0.0000021723,0.0000021694,0.0000021663,0.0000021636, +0.0000021618,0.0000021609,0.0000021604,0.0000021594,0.0000021585, +0.0000021577,0.0000021566,0.0000021566,0.0000021567,0.0000021570, +0.0000021575,0.0000021585,0.0000021601,0.0000021617,0.0000021635, +0.0000021663,0.0000021708,0.0000021765,0.0000021826,0.0000021889, +0.0000021958,0.0000022031,0.0000022094,0.0000022145,0.0000022190, +0.0000022224,0.0000022243,0.0000022250,0.0000022249,0.0000022242, +0.0000022230,0.0000022215,0.0000022200,0.0000022187,0.0000022174, +0.0000022158,0.0000022135,0.0000022107,0.0000022077,0.0000022042, +0.0000021991,0.0000021937,0.0000021902,0.0000021879,0.0000021849, +0.0000021826,0.0000021796,0.0000021707,0.0000021621,0.0000021611, +0.0000021631,0.0000021659,0.0000021695,0.0000021733,0.0000021759, +0.0000021762,0.0000021749,0.0000021726,0.0000021702,0.0000021690, +0.0000021691,0.0000021698,0.0000021695,0.0000021653,0.0000021568, +0.0000021511,0.0000021516,0.0000021526,0.0000021503,0.0000021480, +0.0000021504,0.0000021607,0.0000021730,0.0000021804,0.0000021836, +0.0000021852,0.0000021856,0.0000021847,0.0000021851,0.0000021872, +0.0000021906,0.0000021944,0.0000021987,0.0000022023,0.0000022031, +0.0000022020,0.0000022005,0.0000021988,0.0000021967,0.0000021947, +0.0000021936,0.0000021949,0.0000021998,0.0000022058,0.0000022120, +0.0000022190,0.0000022243,0.0000022254,0.0000022227,0.0000022158, +0.0000022067,0.0000021966,0.0000021858,0.0000021766,0.0000021707, +0.0000021672,0.0000021638,0.0000021596,0.0000021541,0.0000021464, +0.0000021374,0.0000021292,0.0000021231,0.0000021202,0.0000021206, +0.0000021221,0.0000021204,0.0000021131,0.0000021061,0.0000021047, +0.0000021049,0.0000021031,0.0000021053,0.0000021271,0.0000021617, +0.0000021874,0.0000022036,0.0000022151,0.0000022219,0.0000022284, +0.0000022365,0.0000022424,0.0000022450,0.0000022459,0.0000022458, +0.0000022434,0.0000022381,0.0000022319,0.0000022266,0.0000022230, +0.0000022215,0.0000022218,0.0000022241,0.0000022278,0.0000022314, +0.0000022345,0.0000022376,0.0000022405,0.0000022425,0.0000022432, +0.0000022428,0.0000022417,0.0000022409,0.0000022409,0.0000022410, +0.0000022398,0.0000022365,0.0000022311,0.0000022237,0.0000022141, +0.0000022026,0.0000021913,0.0000021819,0.0000021746,0.0000021684, +0.0000021657,0.0000021708,0.0000021823,0.0000021947,0.0000022044, +0.0000022135,0.0000022232,0.0000022298,0.0000022300,0.0000022239, +0.0000022210,0.0000022201,0.0000022217,0.0000022257,0.0000022289, +0.0000022255,0.0000022063,0.0000021821,0.0000021768,0.0000021915, +0.0000022099,0.0000022334,0.0000022626,0.0000022779,0.0000022736, +0.0000022667,0.0000022682,0.0000022768,0.0000022870,0.0000022936, +0.0000022950,0.0000022950,0.0000022977,0.0000023020,0.0000023046, +0.0000023072,0.0000023100,0.0000023112,0.0000023114,0.0000023097, +0.0000023053,0.0000023030,0.0000023048,0.0000023081,0.0000023073, +0.0000023026,0.0000022975,0.0000022946,0.0000022941,0.0000022950, +0.0000022969,0.0000022976,0.0000022969,0.0000022963,0.0000022965, +0.0000022964,0.0000022959,0.0000022962,0.0000022976,0.0000022994, +0.0000023016,0.0000023043,0.0000023059,0.0000023059,0.0000023059, +0.0000023072,0.0000023095,0.0000023124,0.0000023153,0.0000023171, +0.0000023194,0.0000023235,0.0000023278,0.0000023327,0.0000023395, +0.0000023466,0.0000023510,0.0000023524,0.0000023523,0.0000023495, +0.0000023455,0.0000023439,0.0000023448,0.0000023468,0.0000023478, +0.0000023464,0.0000023425,0.0000023383,0.0000023343,0.0000023300, +0.0000023286,0.0000023292,0.0000023294,0.0000023299,0.0000023316, +0.0000023337,0.0000023360,0.0000023356,0.0000023333,0.0000023307, +0.0000023282,0.0000023277,0.0000023288,0.0000023312,0.0000023341, +0.0000023362,0.0000023390,0.0000023439,0.0000023496,0.0000023534, +0.0000023545,0.0000023532,0.0000023496,0.0000023441,0.0000023377, +0.0000023319,0.0000023271,0.0000023227,0.0000023191,0.0000023170, +0.0000023156,0.0000023151,0.0000023135,0.0000023100,0.0000023038, +0.0000022958,0.0000022864,0.0000022754,0.0000022672,0.0000022647, +0.0000022666,0.0000022704,0.0000022775,0.0000022871,0.0000022974, +0.0000023067,0.0000023121,0.0000023136,0.0000023138,0.0000023138, +0.0000023143,0.0000023161,0.0000023193,0.0000023226,0.0000023248, +0.0000023265,0.0000023288,0.0000023307,0.0000023320,0.0000023330, +0.0000023342,0.0000023360,0.0000023370,0.0000023370,0.0000023368, +0.0000023367,0.0000023379,0.0000023407,0.0000023432,0.0000023454, +0.0000023478,0.0000023491,0.0000023495,0.0000023500,0.0000023523, +0.0000023563,0.0000023614,0.0000023672,0.0000023716,0.0000023711, +0.0000023672,0.0000023599,0.0000023523,0.0000023489,0.0000023486, +0.0000023503,0.0000023505,0.0000023476,0.0000023405,0.0000023310, +0.0000023233,0.0000023199,0.0000023200,0.0000023212,0.0000023215, +0.0000023202,0.0000023182,0.0000023168,0.0000023173,0.0000023189, +0.0000023216,0.0000023241,0.0000023258,0.0000023261,0.0000023255, +0.0000023247,0.0000023243,0.0000023233,0.0000023216,0.0000023193, +0.0000023159,0.0000023116,0.0000023084,0.0000023068,0.0000023069, +0.0000023088,0.0000023098,0.0000023108,0.0000023115,0.0000023122, +0.0000023126,0.0000023124,0.0000023125,0.0000023122,0.0000023118, +0.0000023115,0.0000023113,0.0000023103,0.0000023082,0.0000023050, +0.0000023018,0.0000022987,0.0000022957,0.0000022931,0.0000022913, +0.0000022898,0.0000022884,0.0000022877,0.0000022881,0.0000022899, +0.0000022924,0.0000022949,0.0000022979,0.0000023012,0.0000023043, +0.0000023072,0.0000023100,0.0000023122,0.0000023133,0.0000023135, +0.0000023126,0.0000023110,0.0000023089,0.0000023067,0.0000023050, +0.0000023040,0.0000023034,0.0000023030,0.0000023027,0.0000023024, +0.0000023021,0.0000023018,0.0000023015,0.0000023016,0.0000023024, +0.0000023037,0.0000023057,0.0000023083,0.0000023117,0.0000023154, +0.0000023187,0.0000023216,0.0000023249,0.0000023299,0.0000023353, +0.0000023399,0.0000023435,0.0000023469,0.0000023494,0.0000023500, +0.0000023500,0.0000023494,0.0000023484,0.0000023467,0.0000023444, +0.0000023414,0.0000023393,0.0000023386,0.0000023384,0.0000023389, +0.0000023410,0.0000023442,0.0000023478,0.0000023514,0.0000023535, +0.0000023548,0.0000023540,0.0000023512,0.0000023471,0.0000023438, +0.0000023397,0.0000023369,0.0000023359,0.0000023370,0.0000023395, +0.0000023421,0.0000023441,0.0000023460,0.0000023475,0.0000023482, +0.0000023478,0.0000023474,0.0000023470,0.0000023464,0.0000023459, +0.0000023456,0.0000023454,0.0000023452,0.0000023450,0.0000023443, +0.0000023429,0.0000023413,0.0000023402,0.0000023400,0.0000023396, +0.0000023383,0.0000023373,0.0000023362,0.0000023345,0.0000023324, +0.0000023299,0.0000023272,0.0000023248,0.0000023227,0.0000023202, +0.0000023174,0.0000023149,0.0000023144,0.0000023155,0.0000023174, +0.0000023192,0.0000023197,0.0000023191,0.0000023178,0.0000023159, +0.0000023133,0.0000023104,0.0000023070,0.0000023022,0.0000022969, +0.0000022923,0.0000022889,0.0000022866,0.0000022860,0.0000022871, +0.0000022894,0.0000022932,0.0000022976,0.0000023015,0.0000023062, +0.0000023126,0.0000023192,0.0000023243,0.0000023276,0.0000023308, +0.0000023330,0.0000023341,0.0000023343,0.0000023333,0.0000023308, +0.0000023265,0.0000023219,0.0000023187,0.0000023164,0.0000023147, +0.0000023132,0.0000023135,0.0000023139,0.0000023138,0.0000023118, +0.0000023088,0.0000023084,0.0000023060,0.0000023016,0.0000022964, +0.0000022921,0.0000022902,0.0000022903,0.0000022911,0.0000022926, +0.0000022940,0.0000022950,0.0000022946,0.0000022930,0.0000022907, +0.0000022871,0.0000022829,0.0000022792,0.0000022759,0.0000022727, +0.0000022698,0.0000022682,0.0000022670,0.0000022677,0.0000022707, +0.0000022761,0.0000022828,0.0000022897,0.0000022964,0.0000023025, +0.0000023079,0.0000023140,0.0000023197,0.0000023248,0.0000023285, +0.0000023292,0.0000023268,0.0000023210,0.0000023118,0.0000023009, +0.0000022917,0.0000022853,0.0000022823,0.0000022838,0.0000022872, +0.0000022910,0.0000022909,0.0000022871,0.0000022839,0.0000022806, +0.0000022760,0.0000022705,0.0000022705,0.0000022721,0.0000022726, +0.0000022788,0.0000022878,0.0000022961,0.0000023171,0.0000023401, +0.0000023457,0.0000023457,0.0000023426,0.0000023289,0.0000023211, +0.0000023110,0.0000022998,0.0000022952,0.0000022990,0.0000023057, +0.0000023121,0.0000023188,0.0000023246,0.0000023301,0.0000023367, +0.0000023431,0.0000023462,0.0000023465,0.0000023459,0.0000023443, +0.0000023402,0.0000023358,0.0000023321,0.0000023304,0.0000023310, +0.0000023310,0.0000023276,0.0000023234,0.0000023192,0.0000023147, +0.0000023105,0.0000023073,0.0000023048,0.0000023024,0.0000023014, +0.0000022984,0.0000022913,0.0000022861,0.0000022838,0.0000022830, +0.0000022856,0.0000022902,0.0000022918,0.0000022900,0.0000022900, +0.0000022919,0.0000022905,0.0000022861,0.0000022824,0.0000022788, +0.0000022723,0.0000022624,0.0000022543,0.0000022516,0.0000022486, +0.0000022368,0.0000022206,0.0000022149,0.0000022188,0.0000022298, +0.0000022440,0.0000022550,0.0000022591,0.0000022598,0.0000022564, +0.0000022403,0.0000022208,0.0000022179,0.0000022308,0.0000022510, +0.0000022680,0.0000022768,0.0000022813,0.0000022888,0.0000022949, +0.0000022936,0.0000022827,0.0000022710,0.0000022694,0.0000022734, +0.0000022750,0.0000022770,0.0000022864,0.0000022986,0.0000023049, +0.0000023069,0.0000023019,0.0000022893,0.0000022714,0.0000022501, +0.0000022305,0.0000022157,0.0000022068,0.0000022078,0.0000022175, +0.0000022240,0.0000022234,0.0000022189,0.0000022161,0.0000022193, +0.0000022261,0.0000022319,0.0000022371,0.0000022437,0.0000022508, +0.0000022572,0.0000022625,0.0000022663,0.0000022689,0.0000022713, +0.0000022732,0.0000022745,0.0000022754,0.0000022759,0.0000022769, +0.0000022798,0.0000022830,0.0000022858,0.0000022889,0.0000022932, +0.0000022984,0.0000023035,0.0000023077,0.0000023098,0.0000023108, +0.0000023123,0.0000023141,0.0000023158,0.0000023184,0.0000023225, +0.0000023261,0.0000023277,0.0000023268,0.0000023233,0.0000023188, +0.0000023140,0.0000023104,0.0000023095,0.0000023109,0.0000023138, +0.0000023174,0.0000023218,0.0000023271,0.0000023319,0.0000023340, +0.0000023338,0.0000023307,0.0000023240,0.0000023159,0.0000023076, +0.0000022990,0.0000022904,0.0000022833,0.0000022778,0.0000022742, +0.0000022714,0.0000022683,0.0000022655,0.0000022639,0.0000022658, +0.0000022688,0.0000022723,0.0000022770,0.0000022825,0.0000022895, +0.0000022998,0.0000023134,0.0000023264,0.0000023349,0.0000023385, +0.0000023412,0.0000023452,0.0000023520,0.0000023572,0.0000023588, +0.0000023566,0.0000023523,0.0000023485,0.0000023470,0.0000023480, +0.0000023494,0.0000023496,0.0000023496,0.0000023522,0.0000023579, +0.0000023648,0.0000023718,0.0000023781,0.0000023857,0.0000023964, +0.0000024048,0.0000024080,0.0000024074,0.0000024074,0.0000024113, +0.0000024164,0.0000024199,0.0000024205,0.0000024126,0.0000024033, +0.0000023930,0.0000023837,0.0000023833,0.0000023869,0.0000023884, +0.0000023894,0.0000023914,0.0000023928,0.0000023922,0.0000023905, +0.0000023902,0.0000023917,0.0000023934,0.0000023951,0.0000023967, +0.0000023987,0.0000024013,0.0000024031,0.0000024029,0.0000023993, +0.0000023942,0.0000023900,0.0000023883,0.0000023878,0.0000023866, +0.0000023846,0.0000023824,0.0000023803,0.0000023778,0.0000023748, +0.0000023712,0.0000023680,0.0000023657,0.0000023643,0.0000023642, +0.0000023655,0.0000023674,0.0000023689,0.0000023696,0.0000023700, +0.0000023706,0.0000023709,0.0000023710,0.0000023709,0.0000023703, +0.0000023689,0.0000023665,0.0000023627,0.0000023581,0.0000023534, +0.0000023487,0.0000023443,0.0000023402,0.0000023363,0.0000023328, +0.0000023301,0.0000023285,0.0000023274,0.0000023268,0.0000023264, +0.0000023267,0.0000023280,0.0000023296,0.0000023319,0.0000023356, +0.0000023400,0.0000023437,0.0000023467,0.0000023492,0.0000023513, +0.0000023529,0.0000023544,0.0000023560,0.0000023578,0.0000023599, +0.0000023621,0.0000023642,0.0000023660,0.0000023667,0.0000023659, +0.0000023637,0.0000023606,0.0000023566,0.0000023522,0.0000023469, +0.0000023414,0.0000023361,0.0000023315,0.0000023276,0.0000023242, +0.0000023218,0.0000023206,0.0000023212,0.0000023228,0.0000023242, +0.0000023260,0.0000023284,0.0000023313,0.0000023337,0.0000023362, +0.0000023385,0.0000023408,0.0000023434,0.0000023461,0.0000023493, +0.0000023528,0.0000023562,0.0000023590,0.0000023615,0.0000023639, +0.0000023661,0.0000023673,0.0000023677,0.0000023676,0.0000023676, +0.0000023670,0.0000023661,0.0000023668,0.0000023666,0.0000023686, +0.0000023711,0.0000023755,0.0000023792,0.0000023823,0.0000023844, +0.0000023847,0.0000023835,0.0000023811,0.0000023773,0.0000023734, +0.0000023693,0.0000023665,0.0000023634,0.0000023622,0.0000023602, +0.0000023588,0.0000023518,0.0000023402,0.0000023259,0.0000023157, +0.0000023088,0.0000023099,0.0000023164,0.0000023293,0.0000023459, +0.0000023572,0.0000023602,0.0000023612,0.0000023599,0.0000023540, +0.0000023522,0.0000023621,0.0000023751,0.0000023821,0.0000023855, +0.0000023831,0.0000023734,0.0000023625,0.0000023551,0.0000023501, +0.0000023487,0.0000023498,0.0000023519,0.0000023553,0.0000023606, +0.0000023623,0.0000023561,0.0000023418,0.0000023264,0.0000023172, +0.0000023132,0.0000023098,0.0000023057,0.0000023017,0.0000022989, +0.0000022980,0.0000022988,0.0000023002,0.0000023022,0.0000023052, +0.0000023093,0.0000023139,0.0000023179,0.0000023204,0.0000023211, +0.0000023199,0.0000023170,0.0000023133,0.0000023099,0.0000023068, +0.0000023037,0.0000023015,0.0000023008,0.0000022996,0.0000022963, +0.0000022916,0.0000022870,0.0000022827,0.0000022782,0.0000022724, +0.0000022654,0.0000022591,0.0000022546,0.0000022516,0.0000022488, +0.0000022451,0.0000022386,0.0000022260,0.0000022101,0.0000022030, +0.0000022051,0.0000022071,0.0000022001,0.0000021887,0.0000021761, +0.0000021619,0.0000021524,0.0000021507,0.0000021498,0.0000021453, +0.0000021391,0.0000021370,0.0000021423,0.0000021569,0.0000021803, +0.0000022101,0.0000022377,0.0000022533,0.0000022562,0.0000022551, +0.0000022585,0.0000022709,0.0000022861,0.0000022979,0.0000023049, +0.0000023053,0.0000022997,0.0000022929,0.0000022879,0.0000022833, +0.0000022781,0.0000022725,0.0000022682,0.0000022665,0.0000022659, +0.0000022651,0.0000022631,0.0000022590,0.0000022524,0.0000022446, +0.0000022361,0.0000022280,0.0000022223,0.0000022169,0.0000022085, +0.0000021947,0.0000021761,0.0000021569,0.0000021429,0.0000021350, +0.0000021295,0.0000021262,0.0000021246,0.0000021248,0.0000021277, +0.0000021342,0.0000021434,0.0000021532,0.0000021627,0.0000021715, +0.0000021790,0.0000021846,0.0000021881,0.0000021894,0.0000021886, +0.0000021858,0.0000021821,0.0000021790,0.0000021772,0.0000021764, +0.0000021764,0.0000021780,0.0000021805,0.0000021821,0.0000021835, +0.0000021853,0.0000021874,0.0000021900,0.0000021925,0.0000021945, +0.0000021942,0.0000021922,0.0000021879,0.0000021826,0.0000021782, +0.0000021757,0.0000021734,0.0000021671,0.0000021549,0.0000021399, +0.0000021256,0.0000021130,0.0000021019,0.0000020911,0.0000020801, +0.0000020731,0.0000020743,0.0000020800,0.0000020870,0.0000020950, +0.0000021099,0.0000021326,0.0000021547,0.0000021670,0.0000021702, +0.0000021749,0.0000021899,0.0000022138,0.0000022378,0.0000022510, +0.0000022507,0.0000022422,0.0000022337,0.0000022335,0.0000022431, +0.0000022574,0.0000022725,0.0000022866,0.0000023000,0.0000023136, +0.0000023254,0.0000023349,0.0000023485,0.0000023703,0.0000023939, +0.0000024111,0.0000024215,0.0000024305,0.0000024434,0.0000024615, +0.0000024794,0.0000024911,0.0000024970,0.0000025010,0.0000025037, +0.0000025050,0.0000025075,0.0000025106,0.0000025085,0.0000024958, +0.0000024799,0.0000024690,0.0000024624,0.0000024555,0.0000024478, +0.0000024455,0.0000024514,0.0000024635,0.0000024744,0.0000024818, +0.0000024880,0.0000024927,0.0000024916,0.0000024780,0.0000024551, +0.0000024303,0.0000024095,0.0000024010,0.0000024004,0.0000023940, +0.0000023818,0.0000023728,0.0000023693,0.0000023687,0.0000023695, +0.0000023727,0.0000023778,0.0000023837,0.0000023887,0.0000023914, +0.0000023917,0.0000023900,0.0000023875,0.0000023857,0.0000023849, +0.0000023850,0.0000023841,0.0000023810,0.0000023753,0.0000023680, +0.0000023599,0.0000023509,0.0000023408,0.0000023301,0.0000023195, +0.0000023091,0.0000023015,0.0000022998,0.0000023028,0.0000023100, +0.0000023187,0.0000023273,0.0000023339,0.0000023379,0.0000023396, +0.0000023402,0.0000023400,0.0000023401,0.0000023389,0.0000023362, +0.0000023320,0.0000023273,0.0000023225,0.0000023173,0.0000023114, +0.0000023069,0.0000023061,0.0000023086,0.0000023112,0.0000023135, +0.0000023171,0.0000023232,0.0000023321,0.0000023439,0.0000023577, +0.0000023717,0.0000023842,0.0000023955,0.0000024074,0.0000024210, +0.0000024350,0.0000024470,0.0000024556,0.0000024610,0.0000024640, +0.0000024651,0.0000024646,0.0000024617,0.0000024549,0.0000024444, +0.0000024331,0.0000024245,0.0000024202,0.0000024175,0.0000024137, +0.0000024099,0.0000024076,0.0000024053,0.0000024004,0.0000023926, +0.0000023824,0.0000023717,0.0000023619,0.0000023539,0.0000023473, +0.0000023419,0.0000023375,0.0000023345,0.0000023319,0.0000023284, +0.0000023226,0.0000023170,0.0000023142,0.0000023138,0.0000023133, +0.0000023116,0.0000023097,0.0000023081,0.0000023022,0.0000022860, +0.0000022528,0.0000022106,0.0000021803,0.0000021741,0.0000021782, +0.0000021838,0.0000021880,0.0000021913,0.0000021946,0.0000021951, +0.0000021917,0.0000021851,0.0000021781,0.0000021708,0.0000021633, +0.0000021586,0.0000021574,0.0000021605,0.0000021626,0.0000021570, +0.0000021442,0.0000021297,0.0000021205,0.0000021188,0.0000021190, +0.0000021187,0.0000021178,0.0000021177,0.0000021202,0.0000021253, +0.0000021319,0.0000021392,0.0000021459,0.0000021515,0.0000021561, +0.0000021604,0.0000021637,0.0000021657,0.0000021666,0.0000021671, +0.0000021670,0.0000021660,0.0000021640,0.0000021621,0.0000021608, +0.0000021592,0.0000021561,0.0000021528,0.0000021505,0.0000021484, +0.0000021457,0.0000021445,0.0000021442,0.0000021434,0.0000021425, +0.0000021424,0.0000021423,0.0000021412,0.0000021392,0.0000021371, +0.0000021346,0.0000021320,0.0000021303,0.0000021286,0.0000021273, +0.0000021265,0.0000021259,0.0000021252,0.0000021253,0.0000021261, +0.0000021271,0.0000021286,0.0000021307,0.0000021328,0.0000021346, +0.0000021365,0.0000021378,0.0000021378,0.0000021370,0.0000021356, +0.0000021334,0.0000021318,0.0000021317,0.0000021335,0.0000021371, +0.0000021429,0.0000021503,0.0000021581,0.0000021660,0.0000021729, +0.0000021781,0.0000021813,0.0000021828,0.0000021826,0.0000021816, +0.0000021806,0.0000021805,0.0000021803,0.0000021795,0.0000021790, +0.0000021784,0.0000021777,0.0000021770,0.0000021770,0.0000021767, +0.0000021760,0.0000021748,0.0000021736,0.0000021729,0.0000021710, +0.0000021683,0.0000021655,0.0000021634,0.0000021618,0.0000021606, +0.0000021594,0.0000021574,0.0000021550,0.0000021529,0.0000021515, +0.0000021517,0.0000021519,0.0000021523,0.0000021523,0.0000021514, +0.0000021503,0.0000021502,0.0000021515,0.0000021547,0.0000021595, +0.0000021656,0.0000021732,0.0000021817,0.0000021900,0.0000021977, +0.0000022045,0.0000022100,0.0000022140,0.0000022167,0.0000022184, +0.0000022193,0.0000022194,0.0000022187,0.0000022175,0.0000022162, +0.0000022149,0.0000022134,0.0000022107,0.0000022075,0.0000022043, +0.0000022000,0.0000021947,0.0000021904,0.0000021876,0.0000021844, +0.0000021816,0.0000021795,0.0000021723,0.0000021629,0.0000021606, +0.0000021625,0.0000021643,0.0000021661,0.0000021690,0.0000021715, +0.0000021723,0.0000021718,0.0000021704,0.0000021686,0.0000021671, +0.0000021667,0.0000021670,0.0000021677,0.0000021680,0.0000021652, +0.0000021562,0.0000021485,0.0000021477,0.0000021485,0.0000021460, +0.0000021439,0.0000021470,0.0000021581,0.0000021703,0.0000021769, +0.0000021796,0.0000021813,0.0000021823,0.0000021826,0.0000021834, +0.0000021855,0.0000021887,0.0000021927,0.0000021975,0.0000022014, +0.0000022029,0.0000022028,0.0000022019,0.0000022003,0.0000021983, +0.0000021960,0.0000021942,0.0000021950,0.0000021987,0.0000022037, +0.0000022096,0.0000022166,0.0000022224,0.0000022243,0.0000022224, +0.0000022157,0.0000022064,0.0000021962,0.0000021859,0.0000021768, +0.0000021707,0.0000021670,0.0000021633,0.0000021586,0.0000021530, +0.0000021462,0.0000021382,0.0000021305,0.0000021250,0.0000021228, +0.0000021239,0.0000021273,0.0000021291,0.0000021253,0.0000021147, +0.0000021070,0.0000021053,0.0000021030,0.0000021012,0.0000021135, +0.0000021474,0.0000021793,0.0000021989,0.0000022115,0.0000022188, +0.0000022242,0.0000022314,0.0000022374,0.0000022397,0.0000022402, +0.0000022403,0.0000022383,0.0000022334,0.0000022273,0.0000022219, +0.0000022177,0.0000022153,0.0000022153,0.0000022178,0.0000022225, +0.0000022275,0.0000022312,0.0000022339,0.0000022358,0.0000022367, +0.0000022366,0.0000022357,0.0000022345,0.0000022343,0.0000022350, +0.0000022350,0.0000022318,0.0000022242,0.0000022133,0.0000022012, +0.0000021895,0.0000021807,0.0000021750,0.0000021693,0.0000021632, +0.0000021620,0.0000021703,0.0000021849,0.0000021979,0.0000022085, +0.0000022198,0.0000022297,0.0000022333,0.0000022316,0.0000022277, +0.0000022213,0.0000022192,0.0000022203,0.0000022248,0.0000022289, +0.0000022261,0.0000022085,0.0000021847,0.0000021776,0.0000021875, +0.0000022049,0.0000022246,0.0000022526,0.0000022745,0.0000022763, +0.0000022682,0.0000022661,0.0000022707,0.0000022804,0.0000022887, +0.0000022920,0.0000022919,0.0000022928,0.0000022971,0.0000023010, +0.0000023033,0.0000023069,0.0000023101,0.0000023106,0.0000023099, +0.0000023072,0.0000023019,0.0000022992,0.0000023007,0.0000023033, +0.0000023025,0.0000022985,0.0000022944,0.0000022921,0.0000022915, +0.0000022917,0.0000022920,0.0000022919,0.0000022914,0.0000022916, +0.0000022922,0.0000022921,0.0000022917,0.0000022921,0.0000022932, +0.0000022949,0.0000022975,0.0000023005,0.0000023025,0.0000023035, +0.0000023049,0.0000023078,0.0000023113,0.0000023145,0.0000023174, +0.0000023197,0.0000023221,0.0000023253,0.0000023288,0.0000023333, +0.0000023400,0.0000023466,0.0000023510,0.0000023523,0.0000023524, +0.0000023505,0.0000023468,0.0000023440,0.0000023436,0.0000023454, +0.0000023476,0.0000023478,0.0000023458,0.0000023417,0.0000023364, +0.0000023314,0.0000023289,0.0000023288,0.0000023280,0.0000023267, +0.0000023277,0.0000023312,0.0000023357,0.0000023385,0.0000023388, +0.0000023381,0.0000023358,0.0000023349,0.0000023361,0.0000023387, +0.0000023418,0.0000023437,0.0000023454,0.0000023487,0.0000023538, +0.0000023585,0.0000023604,0.0000023599,0.0000023573,0.0000023537, +0.0000023480,0.0000023409,0.0000023340,0.0000023273,0.0000023215, +0.0000023170,0.0000023137,0.0000023113,0.0000023108,0.0000023099, +0.0000023072,0.0000023037,0.0000023013,0.0000022952,0.0000022856, +0.0000022767,0.0000022702,0.0000022659,0.0000022644,0.0000022653, +0.0000022710,0.0000022794,0.0000022890,0.0000022959,0.0000023006, +0.0000023037,0.0000023056,0.0000023079,0.0000023115,0.0000023156, +0.0000023187,0.0000023206,0.0000023226,0.0000023246,0.0000023260, +0.0000023271,0.0000023277,0.0000023290,0.0000023304,0.0000023315, +0.0000023326,0.0000023338,0.0000023348,0.0000023362,0.0000023375, +0.0000023391,0.0000023417,0.0000023440,0.0000023446,0.0000023441, +0.0000023435,0.0000023438,0.0000023450,0.0000023475,0.0000023524, +0.0000023588,0.0000023647,0.0000023666,0.0000023658,0.0000023609, +0.0000023545,0.0000023503,0.0000023495,0.0000023499,0.0000023502, +0.0000023487,0.0000023439,0.0000023367,0.0000023301,0.0000023264, +0.0000023256,0.0000023256,0.0000023245,0.0000023219,0.0000023193, +0.0000023179,0.0000023183,0.0000023203,0.0000023227,0.0000023246, +0.0000023250,0.0000023244,0.0000023236,0.0000023233,0.0000023228, +0.0000023219,0.0000023207,0.0000023191,0.0000023167,0.0000023147, +0.0000023138,0.0000023134,0.0000023133,0.0000023134,0.0000023133, +0.0000023129,0.0000023123,0.0000023113,0.0000023106,0.0000023094, +0.0000023083,0.0000023069,0.0000023052,0.0000023039,0.0000023022, +0.0000022999,0.0000022971,0.0000022951,0.0000022935,0.0000022918, +0.0000022905,0.0000022893,0.0000022883,0.0000022881,0.0000022882, +0.0000022887,0.0000022902,0.0000022920,0.0000022939,0.0000022960, +0.0000022978,0.0000022991,0.0000023001,0.0000023009,0.0000023015, +0.0000023017,0.0000023014,0.0000023006,0.0000022995,0.0000022980, +0.0000022965,0.0000022955,0.0000022951,0.0000022951,0.0000022952, +0.0000022953,0.0000022952,0.0000022949,0.0000022943,0.0000022937, +0.0000022933,0.0000022932,0.0000022929,0.0000022927,0.0000022931, +0.0000022941,0.0000022956,0.0000022972,0.0000022992,0.0000023025, +0.0000023082,0.0000023150,0.0000023219,0.0000023285,0.0000023349, +0.0000023406,0.0000023448,0.0000023471,0.0000023482,0.0000023482, +0.0000023465,0.0000023443,0.0000023408,0.0000023375,0.0000023348, +0.0000023329,0.0000023315,0.0000023319,0.0000023340,0.0000023373, +0.0000023418,0.0000023467,0.0000023507,0.0000023532,0.0000023530, +0.0000023516,0.0000023486,0.0000023441,0.0000023389,0.0000023338, +0.0000023303,0.0000023279,0.0000023265,0.0000023269,0.0000023289, +0.0000023310,0.0000023332,0.0000023354,0.0000023374,0.0000023388, +0.0000023398,0.0000023406,0.0000023411,0.0000023414,0.0000023416, +0.0000023416,0.0000023409,0.0000023394,0.0000023375,0.0000023354, +0.0000023332,0.0000023307,0.0000023281,0.0000023253,0.0000023227, +0.0000023201,0.0000023176,0.0000023149,0.0000023131,0.0000023122, +0.0000023118,0.0000023113,0.0000023102,0.0000023087,0.0000023087, +0.0000023107,0.0000023139,0.0000023167,0.0000023186,0.0000023197, +0.0000023196,0.0000023181,0.0000023153,0.0000023116,0.0000023075, +0.0000023022,0.0000022964,0.0000022908,0.0000022857,0.0000022819, +0.0000022791,0.0000022783,0.0000022795,0.0000022823,0.0000022861, +0.0000022898,0.0000022933,0.0000022973,0.0000023021,0.0000023059, +0.0000023081,0.0000023100,0.0000023111,0.0000023114,0.0000023117, +0.0000023112,0.0000023094,0.0000023061,0.0000023030,0.0000023006, +0.0000022981,0.0000022963,0.0000022959,0.0000022969,0.0000022988, +0.0000023020,0.0000023045,0.0000023067,0.0000023095,0.0000023127, +0.0000023147,0.0000023147,0.0000023144,0.0000023127,0.0000023120, +0.0000023115,0.0000023108,0.0000023112,0.0000023123,0.0000023121, +0.0000023112,0.0000023103,0.0000023085,0.0000023055,0.0000023023, +0.0000022989,0.0000022956,0.0000022928,0.0000022906,0.0000022884, +0.0000022876,0.0000022895,0.0000022927,0.0000022970,0.0000023018, +0.0000023065,0.0000023116,0.0000023163,0.0000023212,0.0000023262, +0.0000023310,0.0000023349,0.0000023357,0.0000023338,0.0000023288, +0.0000023200,0.0000023083,0.0000022967,0.0000022872,0.0000022804, +0.0000022791,0.0000022827,0.0000022893,0.0000022933,0.0000022907, +0.0000022856,0.0000022825,0.0000022785,0.0000022730,0.0000022686, +0.0000022699,0.0000022714,0.0000022752,0.0000022843,0.0000022922, +0.0000023044,0.0000023303,0.0000023476,0.0000023484,0.0000023486, +0.0000023399,0.0000023246,0.0000023172,0.0000023071,0.0000022991, +0.0000022978,0.0000023011,0.0000023058,0.0000023119,0.0000023182, +0.0000023240,0.0000023307,0.0000023392,0.0000023449,0.0000023472, +0.0000023473,0.0000023457,0.0000023425,0.0000023378,0.0000023329, +0.0000023301,0.0000023302,0.0000023318,0.0000023310,0.0000023286, +0.0000023256,0.0000023220,0.0000023186,0.0000023149,0.0000023099, +0.0000023047,0.0000023011,0.0000022973,0.0000022902,0.0000022845, +0.0000022834,0.0000022844,0.0000022871,0.0000022890,0.0000022872, +0.0000022846,0.0000022869,0.0000022900,0.0000022893,0.0000022854, +0.0000022809,0.0000022783,0.0000022741,0.0000022654,0.0000022574, +0.0000022546,0.0000022509,0.0000022368,0.0000022200,0.0000022159, +0.0000022225,0.0000022370,0.0000022525,0.0000022607,0.0000022619, +0.0000022598,0.0000022499,0.0000022291,0.0000022163,0.0000022178, +0.0000022351,0.0000022551,0.0000022686,0.0000022750,0.0000022810, +0.0000022904,0.0000022962,0.0000022939,0.0000022830,0.0000022730, +0.0000022718,0.0000022741,0.0000022741,0.0000022746,0.0000022836, +0.0000022955,0.0000023003,0.0000023005,0.0000022937,0.0000022809, +0.0000022640,0.0000022452,0.0000022295,0.0000022186,0.0000022113, +0.0000022118,0.0000022195,0.0000022250,0.0000022243,0.0000022194, +0.0000022158,0.0000022176,0.0000022257,0.0000022342,0.0000022414, +0.0000022489,0.0000022564,0.0000022624,0.0000022664,0.0000022689, +0.0000022705,0.0000022721,0.0000022739,0.0000022753,0.0000022758, +0.0000022756,0.0000022763,0.0000022787,0.0000022821,0.0000022853, +0.0000022883,0.0000022913,0.0000022958,0.0000023010,0.0000023058, +0.0000023084,0.0000023090,0.0000023097,0.0000023114,0.0000023136, +0.0000023162,0.0000023193,0.0000023226,0.0000023250,0.0000023248, +0.0000023223,0.0000023185,0.0000023147,0.0000023116,0.0000023103, +0.0000023105,0.0000023121,0.0000023145,0.0000023171,0.0000023201, +0.0000023239,0.0000023281,0.0000023316,0.0000023338,0.0000023333, +0.0000023287,0.0000023210,0.0000023116,0.0000023008,0.0000022903, +0.0000022817,0.0000022751,0.0000022690,0.0000022633,0.0000022591, +0.0000022567,0.0000022556,0.0000022579,0.0000022623,0.0000022682, +0.0000022766,0.0000022862,0.0000022988,0.0000023118,0.0000023235, +0.0000023320,0.0000023364,0.0000023390,0.0000023425,0.0000023479, +0.0000023536,0.0000023566,0.0000023567,0.0000023545,0.0000023514, +0.0000023488,0.0000023483,0.0000023493,0.0000023494,0.0000023480, +0.0000023467,0.0000023491,0.0000023540,0.0000023606,0.0000023687, +0.0000023768,0.0000023864,0.0000023975,0.0000024043,0.0000024056, +0.0000024048,0.0000024057,0.0000024110,0.0000024165,0.0000024204, +0.0000024208,0.0000024110,0.0000024019,0.0000023919,0.0000023837, +0.0000023834,0.0000023866,0.0000023884,0.0000023895,0.0000023929, +0.0000023956,0.0000023964,0.0000023950,0.0000023935,0.0000023939, +0.0000023952,0.0000023962,0.0000023973,0.0000023989,0.0000024010, +0.0000024027,0.0000024028,0.0000024008,0.0000023966,0.0000023917, +0.0000023880,0.0000023855,0.0000023833,0.0000023810,0.0000023789, +0.0000023769,0.0000023744,0.0000023708,0.0000023670,0.0000023639, +0.0000023622,0.0000023609,0.0000023609,0.0000023624,0.0000023646, +0.0000023661,0.0000023668,0.0000023673,0.0000023677,0.0000023678, +0.0000023675,0.0000023666,0.0000023645,0.0000023614,0.0000023572, +0.0000023519,0.0000023464,0.0000023413,0.0000023376,0.0000023347, +0.0000023330,0.0000023308,0.0000023287,0.0000023273,0.0000023264, +0.0000023255,0.0000023246,0.0000023238,0.0000023232,0.0000023229, +0.0000023222,0.0000023211,0.0000023201,0.0000023211,0.0000023225, +0.0000023236,0.0000023248,0.0000023264,0.0000023281,0.0000023299, +0.0000023319,0.0000023340,0.0000023365,0.0000023394,0.0000023428, +0.0000023464,0.0000023493,0.0000023511,0.0000023519,0.0000023516, +0.0000023506,0.0000023487,0.0000023460,0.0000023426,0.0000023390, +0.0000023356,0.0000023325,0.0000023293,0.0000023268,0.0000023252, +0.0000023244,0.0000023248,0.0000023258,0.0000023275,0.0000023298, +0.0000023325,0.0000023353,0.0000023379,0.0000023404,0.0000023430, +0.0000023455,0.0000023480,0.0000023504,0.0000023536,0.0000023565, +0.0000023588,0.0000023612,0.0000023638,0.0000023666,0.0000023687, +0.0000023693,0.0000023705,0.0000023714,0.0000023707,0.0000023693, +0.0000023686,0.0000023670,0.0000023664,0.0000023661,0.0000023672, +0.0000023693,0.0000023714,0.0000023739,0.0000023757,0.0000023764, +0.0000023756,0.0000023733,0.0000023698,0.0000023662,0.0000023626, +0.0000023596,0.0000023585,0.0000023583,0.0000023614,0.0000023629, +0.0000023608,0.0000023503,0.0000023323,0.0000023133,0.0000023034, +0.0000023027,0.0000023077,0.0000023213,0.0000023409,0.0000023548, +0.0000023592,0.0000023601,0.0000023576,0.0000023496,0.0000023489, +0.0000023610,0.0000023730,0.0000023796,0.0000023824,0.0000023785, +0.0000023684,0.0000023585,0.0000023503,0.0000023447,0.0000023435, +0.0000023439,0.0000023438,0.0000023462,0.0000023528,0.0000023569, +0.0000023534,0.0000023423,0.0000023293,0.0000023199,0.0000023149, +0.0000023124,0.0000023112,0.0000023110,0.0000023120,0.0000023138, +0.0000023154,0.0000023169,0.0000023187,0.0000023210,0.0000023231, +0.0000023242,0.0000023244,0.0000023234,0.0000023216,0.0000023193, +0.0000023175,0.0000023167,0.0000023163,0.0000023143,0.0000023112, +0.0000023084,0.0000023060,0.0000023029,0.0000022987,0.0000022943, +0.0000022902,0.0000022867,0.0000022827,0.0000022775,0.0000022711, +0.0000022648,0.0000022599,0.0000022569,0.0000022551,0.0000022528, +0.0000022466,0.0000022330,0.0000022151,0.0000022045,0.0000022069, +0.0000022104,0.0000022047,0.0000021923,0.0000021798,0.0000021663, +0.0000021545,0.0000021503,0.0000021497,0.0000021458,0.0000021384, +0.0000021342,0.0000021357,0.0000021458,0.0000021648,0.0000021923, +0.0000022218,0.0000022443,0.0000022539,0.0000022544,0.0000022557, +0.0000022639,0.0000022758,0.0000022866,0.0000022938,0.0000022950, +0.0000022904,0.0000022839,0.0000022783,0.0000022730,0.0000022674, +0.0000022615,0.0000022565,0.0000022532,0.0000022508,0.0000022482, +0.0000022446,0.0000022391,0.0000022323,0.0000022251,0.0000022177, +0.0000022122,0.0000022092,0.0000022039,0.0000021923,0.0000021757, +0.0000021584,0.0000021458,0.0000021391,0.0000021351,0.0000021315, +0.0000021292,0.0000021294,0.0000021329,0.0000021400,0.0000021491, +0.0000021587,0.0000021684,0.0000021775,0.0000021849,0.0000021896, +0.0000021915,0.0000021911,0.0000021899,0.0000021877,0.0000021846, +0.0000021818,0.0000021799,0.0000021784,0.0000021765,0.0000021753, +0.0000021738,0.0000021727,0.0000021721,0.0000021722,0.0000021734, +0.0000021759,0.0000021793,0.0000021829,0.0000021865,0.0000021894, +0.0000021906,0.0000021895,0.0000021862,0.0000021808,0.0000021760, +0.0000021734,0.0000021714,0.0000021656,0.0000021548,0.0000021413, +0.0000021278,0.0000021157,0.0000021042,0.0000020914,0.0000020797, +0.0000020746,0.0000020764,0.0000020830,0.0000020887,0.0000020962, +0.0000021124,0.0000021362,0.0000021570,0.0000021672,0.0000021711, +0.0000021794,0.0000021971,0.0000022207,0.0000022401,0.0000022459, +0.0000022410,0.0000022317,0.0000022279,0.0000022322,0.0000022445, +0.0000022605,0.0000022760,0.0000022898,0.0000023033,0.0000023168, +0.0000023277,0.0000023375,0.0000023530,0.0000023756,0.0000023982, +0.0000024133,0.0000024215,0.0000024294,0.0000024432,0.0000024628, +0.0000024808,0.0000024913,0.0000024961,0.0000024989,0.0000025004, +0.0000025023,0.0000025061,0.0000025071,0.0000024998,0.0000024842, +0.0000024682,0.0000024580,0.0000024516,0.0000024445,0.0000024395, +0.0000024414,0.0000024529,0.0000024668,0.0000024769,0.0000024840, +0.0000024896,0.0000024907,0.0000024811,0.0000024607,0.0000024379, +0.0000024177,0.0000024068,0.0000024057,0.0000024032,0.0000023933, +0.0000023822,0.0000023758,0.0000023738,0.0000023742,0.0000023767, +0.0000023804,0.0000023848,0.0000023886,0.0000023904,0.0000023902, +0.0000023886,0.0000023867,0.0000023856,0.0000023851,0.0000023851, +0.0000023841,0.0000023812,0.0000023758,0.0000023690,0.0000023617, +0.0000023535,0.0000023445,0.0000023349,0.0000023250,0.0000023162, +0.0000023111,0.0000023112,0.0000023155,0.0000023228,0.0000023309, +0.0000023383,0.0000023440,0.0000023468,0.0000023474,0.0000023464, +0.0000023443,0.0000023421,0.0000023395,0.0000023351,0.0000023301, +0.0000023235,0.0000023184,0.0000023138,0.0000023088,0.0000023050, +0.0000023040,0.0000023051,0.0000023074,0.0000023091,0.0000023099, +0.0000023106,0.0000023120,0.0000023155,0.0000023225,0.0000023336, +0.0000023477,0.0000023633,0.0000023793,0.0000023941,0.0000024071, +0.0000024176,0.0000024256,0.0000024315,0.0000024361,0.0000024388, +0.0000024395,0.0000024381,0.0000024335,0.0000024268,0.0000024204, +0.0000024166,0.0000024151,0.0000024139,0.0000024120,0.0000024097, +0.0000024075,0.0000024028,0.0000023942,0.0000023827,0.0000023701, +0.0000023578,0.0000023465,0.0000023370,0.0000023299,0.0000023248, +0.0000023210,0.0000023188,0.0000023180,0.0000023179,0.0000023171, +0.0000023147,0.0000023129,0.0000023124,0.0000023124,0.0000023115, +0.0000023091,0.0000023053,0.0000023018,0.0000022955,0.0000022844, +0.0000022576,0.0000022193,0.0000021899,0.0000021815,0.0000021848, +0.0000021890,0.0000021918,0.0000021938,0.0000021954,0.0000021957, +0.0000021917,0.0000021835,0.0000021746,0.0000021669,0.0000021610, +0.0000021570,0.0000021574,0.0000021610,0.0000021644,0.0000021653, +0.0000021571,0.0000021428,0.0000021285,0.0000021198,0.0000021187, +0.0000021182,0.0000021187,0.0000021208,0.0000021251,0.0000021316, +0.0000021389,0.0000021460,0.0000021528,0.0000021589,0.0000021639, +0.0000021678,0.0000021705,0.0000021719,0.0000021723,0.0000021716, +0.0000021701,0.0000021677,0.0000021649,0.0000021636,0.0000021624, +0.0000021601,0.0000021569,0.0000021542,0.0000021516,0.0000021495, +0.0000021484,0.0000021482,0.0000021478,0.0000021467,0.0000021458, +0.0000021453,0.0000021441,0.0000021418,0.0000021394,0.0000021365, +0.0000021326,0.0000021291,0.0000021260,0.0000021237,0.0000021217, +0.0000021200,0.0000021183,0.0000021171,0.0000021170,0.0000021173, +0.0000021184,0.0000021204,0.0000021232,0.0000021257,0.0000021278, +0.0000021296,0.0000021305,0.0000021307,0.0000021301,0.0000021287, +0.0000021269,0.0000021258,0.0000021253,0.0000021254,0.0000021275, +0.0000021326,0.0000021397,0.0000021487,0.0000021578,0.0000021654, +0.0000021713,0.0000021756,0.0000021782,0.0000021789,0.0000021784, +0.0000021780,0.0000021781,0.0000021783,0.0000021779,0.0000021770, +0.0000021761,0.0000021751,0.0000021744,0.0000021739,0.0000021734, +0.0000021730,0.0000021728,0.0000021729,0.0000021730,0.0000021727, +0.0000021721,0.0000021700,0.0000021675,0.0000021647,0.0000021624, +0.0000021608,0.0000021590,0.0000021561,0.0000021528,0.0000021505, +0.0000021488,0.0000021469,0.0000021462,0.0000021456,0.0000021446, +0.0000021429,0.0000021409,0.0000021398,0.0000021405,0.0000021429, +0.0000021472,0.0000021535,0.0000021614,0.0000021702,0.0000021791, +0.0000021877,0.0000021955,0.0000022014,0.0000022050,0.0000022076, +0.0000022098,0.0000022112,0.0000022115,0.0000022108,0.0000022098, +0.0000022089,0.0000022076,0.0000022050,0.0000022019,0.0000021986, +0.0000021941,0.0000021896,0.0000021865,0.0000021839,0.0000021810, +0.0000021793,0.0000021740,0.0000021639,0.0000021596,0.0000021620, +0.0000021639,0.0000021642,0.0000021656,0.0000021673,0.0000021675, +0.0000021668,0.0000021656,0.0000021644,0.0000021634,0.0000021631, +0.0000021636,0.0000021643,0.0000021651,0.0000021656,0.0000021639, +0.0000021554,0.0000021464,0.0000021445,0.0000021449,0.0000021423, +0.0000021400,0.0000021434,0.0000021546,0.0000021662,0.0000021722, +0.0000021747,0.0000021769,0.0000021789,0.0000021802,0.0000021816, +0.0000021836,0.0000021866,0.0000021910,0.0000021959,0.0000021998, +0.0000022021,0.0000022030,0.0000022027,0.0000022012,0.0000021991, +0.0000021970,0.0000021953,0.0000021956,0.0000021982,0.0000022022, +0.0000022074,0.0000022136,0.0000022190,0.0000022215,0.0000022203, +0.0000022146,0.0000022057,0.0000021956,0.0000021851,0.0000021759, +0.0000021700,0.0000021670,0.0000021641,0.0000021594,0.0000021529, +0.0000021452,0.0000021379,0.0000021317,0.0000021269,0.0000021245, +0.0000021253,0.0000021284,0.0000021321,0.0000021332,0.0000021266, +0.0000021148,0.0000021067,0.0000021030,0.0000021000,0.0000021049, +0.0000021326,0.0000021688,0.0000021929,0.0000022071,0.0000022154, +0.0000022202,0.0000022263,0.0000022325,0.0000022353,0.0000022361, +0.0000022368,0.0000022357,0.0000022309,0.0000022244,0.0000022182, +0.0000022134,0.0000022106,0.0000022105,0.0000022130,0.0000022180, +0.0000022234,0.0000022274,0.0000022298,0.0000022314,0.0000022323, +0.0000022321,0.0000022312,0.0000022305,0.0000022307,0.0000022310, +0.0000022283,0.0000022189,0.0000022039,0.0000021886,0.0000021773, +0.0000021717,0.0000021691,0.0000021647,0.0000021592,0.0000021599, +0.0000021706,0.0000021861,0.0000021989,0.0000022105,0.0000022244, +0.0000022355,0.0000022383,0.0000022347,0.0000022294,0.0000022251, +0.0000022183,0.0000022185,0.0000022234,0.0000022289,0.0000022274, +0.0000022103,0.0000021854,0.0000021767,0.0000021841,0.0000022005, +0.0000022173,0.0000022426,0.0000022684,0.0000022750,0.0000022704, +0.0000022649,0.0000022663,0.0000022739,0.0000022831,0.0000022888, +0.0000022896,0.0000022890,0.0000022914,0.0000022964,0.0000022994, +0.0000023017,0.0000023061,0.0000023096,0.0000023102,0.0000023095, +0.0000023064,0.0000023004,0.0000022963,0.0000022970,0.0000022998, +0.0000023000,0.0000022971,0.0000022933,0.0000022911,0.0000022902, +0.0000022898,0.0000022893,0.0000022888,0.0000022884,0.0000022884, +0.0000022881,0.0000022872,0.0000022867,0.0000022870,0.0000022879, +0.0000022900,0.0000022935,0.0000022968,0.0000022987,0.0000023002, +0.0000023030,0.0000023070,0.0000023116,0.0000023154,0.0000023182, +0.0000023207,0.0000023234,0.0000023261,0.0000023289,0.0000023327, +0.0000023387,0.0000023452,0.0000023494,0.0000023507,0.0000023507, +0.0000023495,0.0000023462,0.0000023431,0.0000023425,0.0000023439, +0.0000023460,0.0000023469,0.0000023465,0.0000023434,0.0000023379, +0.0000023324,0.0000023290,0.0000023279,0.0000023273,0.0000023257, +0.0000023250,0.0000023262,0.0000023295,0.0000023342,0.0000023373, +0.0000023381,0.0000023370,0.0000023360,0.0000023369,0.0000023397, +0.0000023427,0.0000023448,0.0000023463,0.0000023488,0.0000023523, +0.0000023564,0.0000023592,0.0000023601,0.0000023592,0.0000023576, +0.0000023541,0.0000023496,0.0000023432,0.0000023363,0.0000023299, +0.0000023235,0.0000023174,0.0000023122,0.0000023086,0.0000023066, +0.0000023042,0.0000023016,0.0000023009,0.0000023009,0.0000022990, +0.0000022942,0.0000022876,0.0000022801,0.0000022726,0.0000022667, +0.0000022637,0.0000022630,0.0000022650,0.0000022705,0.0000022762, +0.0000022813,0.0000022853,0.0000022894,0.0000022945,0.0000023007, +0.0000023065,0.0000023111,0.0000023150,0.0000023186,0.0000023218, +0.0000023243,0.0000023257,0.0000023266,0.0000023277,0.0000023282, +0.0000023283,0.0000023291,0.0000023304,0.0000023319,0.0000023333, +0.0000023335,0.0000023344,0.0000023370,0.0000023392,0.0000023398, +0.0000023394,0.0000023389,0.0000023386,0.0000023383,0.0000023387, +0.0000023406,0.0000023447,0.0000023509,0.0000023583,0.0000023641, +0.0000023653,0.0000023627,0.0000023582,0.0000023533,0.0000023507, +0.0000023506,0.0000023519,0.0000023515,0.0000023489,0.0000023431, +0.0000023359,0.0000023306,0.0000023279,0.0000023260,0.0000023234, +0.0000023203,0.0000023182,0.0000023179,0.0000023192,0.0000023212, +0.0000023231,0.0000023241,0.0000023242,0.0000023240,0.0000023240, +0.0000023237,0.0000023226,0.0000023210,0.0000023197,0.0000023185, +0.0000023178,0.0000023178,0.0000023177,0.0000023175,0.0000023171, +0.0000023165,0.0000023156,0.0000023145,0.0000023128,0.0000023112, +0.0000023097,0.0000023083,0.0000023065,0.0000023048,0.0000023030, +0.0000023012,0.0000022991,0.0000022966,0.0000022950,0.0000022942, +0.0000022929,0.0000022915,0.0000022901,0.0000022890,0.0000022886, +0.0000022874,0.0000022865,0.0000022859,0.0000022856,0.0000022857, +0.0000022864,0.0000022873,0.0000022883,0.0000022894,0.0000022905, +0.0000022913,0.0000022920,0.0000022927,0.0000022934,0.0000022939, +0.0000022937,0.0000022932,0.0000022926,0.0000022925,0.0000022926, +0.0000022928,0.0000022932,0.0000022936,0.0000022940,0.0000022936, +0.0000022932,0.0000022927,0.0000022922,0.0000022912,0.0000022900, +0.0000022884,0.0000022869,0.0000022857,0.0000022847,0.0000022842, +0.0000022849,0.0000022879,0.0000022924,0.0000022978,0.0000023039, +0.0000023104,0.0000023171,0.0000023236,0.0000023294,0.0000023342, +0.0000023377,0.0000023400,0.0000023406,0.0000023394,0.0000023369, +0.0000023342,0.0000023316,0.0000023295,0.0000023287,0.0000023293, +0.0000023312,0.0000023341,0.0000023379,0.0000023418,0.0000023452, +0.0000023472,0.0000023480,0.0000023480,0.0000023465,0.0000023442, +0.0000023406,0.0000023363,0.0000023315,0.0000023267,0.0000023237, +0.0000023204,0.0000023182,0.0000023176,0.0000023184,0.0000023196, +0.0000023205,0.0000023216,0.0000023226,0.0000023234,0.0000023240, +0.0000023246,0.0000023246,0.0000023241,0.0000023232,0.0000023216, +0.0000023196,0.0000023177,0.0000023165,0.0000023158,0.0000023152, +0.0000023146,0.0000023141,0.0000023130,0.0000023121,0.0000023111, +0.0000023107,0.0000023109,0.0000023108,0.0000023099,0.0000023086, +0.0000023083,0.0000023099,0.0000023126,0.0000023153,0.0000023181, +0.0000023201,0.0000023207,0.0000023203,0.0000023189,0.0000023164, +0.0000023126,0.0000023077,0.0000023015,0.0000022948,0.0000022883, +0.0000022827,0.0000022785,0.0000022750,0.0000022740,0.0000022756, +0.0000022789,0.0000022828,0.0000022868,0.0000022899,0.0000022931, +0.0000022963,0.0000022985,0.0000022993,0.0000022997,0.0000022993, +0.0000022983,0.0000022970,0.0000022945,0.0000022915,0.0000022886, +0.0000022861,0.0000022836,0.0000022810,0.0000022796,0.0000022793, +0.0000022791,0.0000022804,0.0000022829,0.0000022865,0.0000022923, +0.0000022996,0.0000023061,0.0000023117,0.0000023151,0.0000023165, +0.0000023186,0.0000023212,0.0000023234,0.0000023252,0.0000023274, +0.0000023289,0.0000023289,0.0000023294,0.0000023295,0.0000023283, +0.0000023263,0.0000023240,0.0000023214,0.0000023191,0.0000023175, +0.0000023159,0.0000023147,0.0000023154,0.0000023170,0.0000023191, +0.0000023214,0.0000023234,0.0000023261,0.0000023287,0.0000023311, +0.0000023339,0.0000023365,0.0000023382,0.0000023386,0.0000023368, +0.0000023328,0.0000023263,0.0000023170,0.0000023065,0.0000022962, +0.0000022867,0.0000022806,0.0000022814,0.0000022870,0.0000022931, +0.0000022941,0.0000022897,0.0000022846,0.0000022817,0.0000022770, +0.0000022702,0.0000022678,0.0000022700,0.0000022722,0.0000022798, +0.0000022899,0.0000022976,0.0000023169,0.0000023434,0.0000023517, +0.0000023514,0.0000023492,0.0000023328,0.0000023205,0.0000023130, +0.0000023050,0.0000022998,0.0000022996,0.0000023021,0.0000023068, +0.0000023129,0.0000023186,0.0000023249,0.0000023340,0.0000023421, +0.0000023461,0.0000023464,0.0000023451,0.0000023428,0.0000023382, +0.0000023327,0.0000023290,0.0000023283,0.0000023302,0.0000023313, +0.0000023306,0.0000023295,0.0000023275,0.0000023239,0.0000023175, +0.0000023107,0.0000023035,0.0000022991,0.0000022948,0.0000022868, +0.0000022815,0.0000022840,0.0000022879,0.0000022889,0.0000022870, +0.0000022817,0.0000022802,0.0000022852,0.0000022891,0.0000022888, +0.0000022854,0.0000022799,0.0000022770,0.0000022752,0.0000022687, +0.0000022610,0.0000022583,0.0000022542,0.0000022381,0.0000022205, +0.0000022179,0.0000022271,0.0000022441,0.0000022585,0.0000022634, +0.0000022637,0.0000022589,0.0000022411,0.0000022170,0.0000022099, +0.0000022210,0.0000022397,0.0000022571,0.0000022677,0.0000022731, +0.0000022808,0.0000022912,0.0000022957,0.0000022929,0.0000022827, +0.0000022750,0.0000022741,0.0000022741,0.0000022726,0.0000022733, +0.0000022815,0.0000022918,0.0000022954,0.0000022938,0.0000022849, +0.0000022725,0.0000022572,0.0000022406,0.0000022290,0.0000022217, +0.0000022162,0.0000022165,0.0000022221,0.0000022260,0.0000022252, +0.0000022205,0.0000022156,0.0000022167,0.0000022253,0.0000022357, +0.0000022445,0.0000022530,0.0000022608,0.0000022669,0.0000022700, +0.0000022715,0.0000022723,0.0000022730,0.0000022744,0.0000022764, +0.0000022770,0.0000022765,0.0000022768,0.0000022791,0.0000022816, +0.0000022841,0.0000022868,0.0000022893,0.0000022927,0.0000022975, +0.0000023025,0.0000023053,0.0000023062,0.0000023067,0.0000023085, +0.0000023114,0.0000023145,0.0000023176,0.0000023199,0.0000023214, +0.0000023217,0.0000023200,0.0000023173,0.0000023145,0.0000023124, +0.0000023113,0.0000023115,0.0000023127,0.0000023146,0.0000023166, +0.0000023187,0.0000023207,0.0000023224,0.0000023250,0.0000023287, +0.0000023319,0.0000023331,0.0000023316,0.0000023269,0.0000023189, +0.0000023078,0.0000022962,0.0000022856,0.0000022762,0.0000022675, +0.0000022601,0.0000022553,0.0000022532,0.0000022523,0.0000022557, +0.0000022625,0.0000022721,0.0000022844,0.0000022993,0.0000023131, +0.0000023227,0.0000023289,0.0000023334,0.0000023369,0.0000023410, +0.0000023456,0.0000023494,0.0000023528,0.0000023541,0.0000023537, +0.0000023523,0.0000023504,0.0000023491,0.0000023492,0.0000023498, +0.0000023488,0.0000023465,0.0000023449,0.0000023471,0.0000023510, +0.0000023574,0.0000023666,0.0000023761,0.0000023874,0.0000023984, +0.0000024037,0.0000024032,0.0000024022,0.0000024041,0.0000024101, +0.0000024157,0.0000024202,0.0000024203,0.0000024093,0.0000024007, +0.0000023915,0.0000023842,0.0000023837,0.0000023862,0.0000023879, +0.0000023895,0.0000023930,0.0000023968,0.0000023989,0.0000023991, +0.0000023971,0.0000023961,0.0000023964,0.0000023969,0.0000023975, +0.0000023984,0.0000023999,0.0000024012,0.0000024013,0.0000023999, +0.0000023971,0.0000023935,0.0000023897,0.0000023861,0.0000023828, +0.0000023797,0.0000023770,0.0000023747,0.0000023720,0.0000023687, +0.0000023654,0.0000023627,0.0000023605,0.0000023583,0.0000023575, +0.0000023581,0.0000023596,0.0000023605,0.0000023608,0.0000023610, +0.0000023611,0.0000023609,0.0000023600,0.0000023583,0.0000023557, +0.0000023524,0.0000023487,0.0000023445,0.0000023410,0.0000023382, +0.0000023361,0.0000023343,0.0000023326,0.0000023308,0.0000023288, +0.0000023271,0.0000023256,0.0000023242,0.0000023230,0.0000023221, +0.0000023217,0.0000023216,0.0000023215,0.0000023209,0.0000023198, +0.0000023184,0.0000023169,0.0000023147,0.0000023120,0.0000023099, +0.0000023084,0.0000023077,0.0000023078,0.0000023082,0.0000023091, +0.0000023111,0.0000023146,0.0000023195,0.0000023242,0.0000023283, +0.0000023319,0.0000023350,0.0000023377,0.0000023395,0.0000023404, +0.0000023400,0.0000023385,0.0000023368,0.0000023347,0.0000023329, +0.0000023315,0.0000023304,0.0000023296,0.0000023296,0.0000023305, +0.0000023318,0.0000023335,0.0000023356,0.0000023379,0.0000023397, +0.0000023409,0.0000023432,0.0000023447,0.0000023462,0.0000023478, +0.0000023494,0.0000023509,0.0000023524,0.0000023542,0.0000023563, +0.0000023589,0.0000023616,0.0000023638,0.0000023656,0.0000023670, +0.0000023676,0.0000023675,0.0000023678,0.0000023678,0.0000023673, +0.0000023676,0.0000023671,0.0000023678,0.0000023684,0.0000023693, +0.0000023702,0.0000023710,0.0000023710,0.0000023698,0.0000023675, +0.0000023645,0.0000023612,0.0000023579,0.0000023547,0.0000023530, +0.0000023531,0.0000023560,0.0000023604,0.0000023614,0.0000023560, +0.0000023374,0.0000023147,0.0000023013,0.0000022989,0.0000023034, +0.0000023168,0.0000023372,0.0000023529,0.0000023584,0.0000023592, +0.0000023535,0.0000023445,0.0000023468,0.0000023603,0.0000023715, +0.0000023783,0.0000023799,0.0000023734,0.0000023630,0.0000023529, +0.0000023432,0.0000023369,0.0000023350,0.0000023340,0.0000023336, +0.0000023374,0.0000023452,0.0000023511,0.0000023503,0.0000023432, +0.0000023323,0.0000023224,0.0000023163,0.0000023149,0.0000023160, +0.0000023182,0.0000023206,0.0000023226,0.0000023242,0.0000023256, +0.0000023269,0.0000023275,0.0000023272,0.0000023266,0.0000023258, +0.0000023251,0.0000023247,0.0000023246,0.0000023247,0.0000023243, +0.0000023216,0.0000023170,0.0000023119,0.0000023078,0.0000023046, +0.0000023007,0.0000022964,0.0000022931,0.0000022912,0.0000022899, +0.0000022879,0.0000022845,0.0000022797,0.0000022745,0.0000022696, +0.0000022653,0.0000022617,0.0000022586,0.0000022533,0.0000022413, +0.0000022236,0.0000022114,0.0000022111,0.0000022131,0.0000022089, +0.0000021965,0.0000021836,0.0000021706,0.0000021575,0.0000021510, +0.0000021503,0.0000021472,0.0000021399,0.0000021337,0.0000021326, +0.0000021372,0.0000021509,0.0000021745,0.0000022034,0.0000022299, +0.0000022469,0.0000022528,0.0000022545,0.0000022599,0.0000022691, +0.0000022782,0.0000022843,0.0000022857,0.0000022824,0.0000022761, +0.0000022697,0.0000022639,0.0000022585,0.0000022530,0.0000022475, +0.0000022430,0.0000022393,0.0000022351,0.0000022297,0.0000022230, +0.0000022162,0.0000022101,0.0000022041,0.0000021990,0.0000021947, +0.0000021860,0.0000021720,0.0000021579,0.0000021481,0.0000021432, +0.0000021407,0.0000021378,0.0000021349,0.0000021349,0.0000021390, +0.0000021463,0.0000021549,0.0000021633,0.0000021714,0.0000021787, +0.0000021847,0.0000021886,0.0000021908,0.0000021904,0.0000021894, +0.0000021886,0.0000021873,0.0000021858,0.0000021833,0.0000021798, +0.0000021754,0.0000021699,0.0000021649,0.0000021611,0.0000021587, +0.0000021572,0.0000021567,0.0000021580,0.0000021610,0.0000021651, +0.0000021695,0.0000021741,0.0000021785,0.0000021821,0.0000021849, +0.0000021853,0.0000021823,0.0000021779,0.0000021737,0.0000021712, +0.0000021689,0.0000021635,0.0000021542,0.0000021426,0.0000021305, +0.0000021183,0.0000021046,0.0000020899,0.0000020783,0.0000020759, +0.0000020797,0.0000020851,0.0000020893,0.0000020973,0.0000021156, +0.0000021404,0.0000021598,0.0000021688,0.0000021738,0.0000021840, +0.0000022030,0.0000022246,0.0000022372,0.0000022375,0.0000022301, +0.0000022241,0.0000022237,0.0000022325,0.0000022480,0.0000022651, +0.0000022803,0.0000022943,0.0000023087,0.0000023214,0.0000023309, +0.0000023411,0.0000023579,0.0000023806,0.0000024012,0.0000024134, +0.0000024194,0.0000024269,0.0000024425,0.0000024636,0.0000024815, +0.0000024911,0.0000024949,0.0000024965,0.0000024975,0.0000024999, +0.0000025027,0.0000025017,0.0000024905,0.0000024721,0.0000024569, +0.0000024487,0.0000024424,0.0000024356,0.0000024342,0.0000024416, +0.0000024561,0.0000024695,0.0000024788,0.0000024858,0.0000024890, +0.0000024834,0.0000024661,0.0000024455,0.0000024273,0.0000024147, +0.0000024114,0.0000024112,0.0000024051,0.0000023938,0.0000023841, +0.0000023794,0.0000023788,0.0000023809,0.0000023837,0.0000023862, +0.0000023881,0.0000023884,0.0000023872,0.0000023855,0.0000023846, +0.0000023845,0.0000023845,0.0000023844,0.0000023838,0.0000023815, +0.0000023769,0.0000023711,0.0000023648,0.0000023579,0.0000023504, +0.0000023424,0.0000023338,0.0000023270,0.0000023246,0.0000023263, +0.0000023314,0.0000023380,0.0000023445,0.0000023505,0.0000023550, +0.0000023572,0.0000023574,0.0000023562,0.0000023532,0.0000023494, +0.0000023451,0.0000023397,0.0000023332,0.0000023261,0.0000023197, +0.0000023139,0.0000023083,0.0000023046,0.0000023023,0.0000023025, +0.0000023042,0.0000023061,0.0000023067,0.0000023062,0.0000023048, +0.0000023028,0.0000023016,0.0000023041,0.0000023116,0.0000023261, +0.0000023452,0.0000023647,0.0000023817,0.0000023950,0.0000024045, +0.0000024109,0.0000024153,0.0000024180,0.0000024191,0.0000024191, +0.0000024178,0.0000024155,0.0000024134,0.0000024124,0.0000024120, +0.0000024114,0.0000024104,0.0000024086,0.0000024045,0.0000023963, +0.0000023841,0.0000023699,0.0000023562,0.0000023439,0.0000023326, +0.0000023225,0.0000023145,0.0000023090,0.0000023053,0.0000023035, +0.0000023035,0.0000023050,0.0000023074,0.0000023090,0.0000023104, +0.0000023118,0.0000023120,0.0000023117,0.0000023098,0.0000023054, +0.0000023000,0.0000022950,0.0000022899,0.0000022814,0.0000022617, +0.0000022310,0.0000022027,0.0000021902,0.0000021910,0.0000021940, +0.0000021950,0.0000021956,0.0000021959,0.0000021948,0.0000021906, +0.0000021826,0.0000021728,0.0000021645,0.0000021595,0.0000021574, +0.0000021576,0.0000021602,0.0000021644,0.0000021657,0.0000021641, +0.0000021553,0.0000021419,0.0000021281,0.0000021196,0.0000021185, +0.0000021211,0.0000021263,0.0000021319,0.0000021378,0.0000021435, +0.0000021500,0.0000021572,0.0000021641,0.0000021698,0.0000021738, +0.0000021764,0.0000021775,0.0000021770,0.0000021751,0.0000021727, +0.0000021701,0.0000021680,0.0000021664,0.0000021639,0.0000021606, +0.0000021574,0.0000021549,0.0000021530,0.0000021520,0.0000021513, +0.0000021505,0.0000021490,0.0000021473,0.0000021462,0.0000021448, +0.0000021426,0.0000021401,0.0000021367,0.0000021324,0.0000021280, +0.0000021239,0.0000021209,0.0000021181,0.0000021150,0.0000021124, +0.0000021104,0.0000021091,0.0000021090,0.0000021094,0.0000021110, +0.0000021137,0.0000021169,0.0000021194,0.0000021213,0.0000021228, +0.0000021236,0.0000021235,0.0000021230,0.0000021224,0.0000021225, +0.0000021229,0.0000021227,0.0000021225,0.0000021233,0.0000021254, +0.0000021306,0.0000021388,0.0000021477,0.0000021553,0.0000021613, +0.0000021660,0.0000021690,0.0000021702,0.0000021703,0.0000021702, +0.0000021704,0.0000021701,0.0000021690,0.0000021678,0.0000021665, +0.0000021653,0.0000021646,0.0000021644,0.0000021650,0.0000021666, +0.0000021684,0.0000021698,0.0000021713,0.0000021727,0.0000021730, +0.0000021727,0.0000021710,0.0000021685,0.0000021654,0.0000021625, +0.0000021600,0.0000021576,0.0000021553,0.0000021524,0.0000021489, +0.0000021454,0.0000021426,0.0000021399,0.0000021384,0.0000021364, +0.0000021342,0.0000021326,0.0000021320,0.0000021322,0.0000021344, +0.0000021390,0.0000021460,0.0000021538,0.0000021618,0.0000021707, +0.0000021802,0.0000021880,0.0000021930,0.0000021959,0.0000021982, +0.0000021998,0.0000022002,0.0000021997,0.0000021991,0.0000021988, +0.0000021980,0.0000021964,0.0000021944,0.0000021917,0.0000021878, +0.0000021845,0.0000021824,0.0000021803,0.0000021789,0.0000021757, +0.0000021662,0.0000021592,0.0000021605,0.0000021634,0.0000021636, +0.0000021636,0.0000021643,0.0000021637,0.0000021618,0.0000021597, +0.0000021580,0.0000021570,0.0000021570,0.0000021582,0.0000021599, +0.0000021612,0.0000021620,0.0000021627,0.0000021618,0.0000021545, +0.0000021450,0.0000021418,0.0000021419,0.0000021394,0.0000021365, +0.0000021394,0.0000021500,0.0000021611,0.0000021670,0.0000021696, +0.0000021724,0.0000021752,0.0000021776,0.0000021796,0.0000021819, +0.0000021850,0.0000021893,0.0000021937,0.0000021972,0.0000021997, +0.0000022015,0.0000022020,0.0000022007,0.0000021984,0.0000021964, +0.0000021951,0.0000021952,0.0000021973,0.0000022010,0.0000022058, +0.0000022106,0.0000022147,0.0000022169,0.0000022164,0.0000022121, +0.0000022042,0.0000021944,0.0000021840,0.0000021744,0.0000021679, +0.0000021648,0.0000021630,0.0000021602,0.0000021548,0.0000021466, +0.0000021381,0.0000021322,0.0000021283,0.0000021264,0.0000021268, +0.0000021292,0.0000021325,0.0000021357,0.0000021352,0.0000021259, +0.0000021123,0.0000021038,0.0000021000,0.0000021008,0.0000021198, +0.0000021553,0.0000021849,0.0000022021,0.0000022117,0.0000022165, +0.0000022213,0.0000022276,0.0000022316,0.0000022332,0.0000022342, +0.0000022335,0.0000022290,0.0000022216,0.0000022146,0.0000022095, +0.0000022068,0.0000022065,0.0000022089,0.0000022139,0.0000022196, +0.0000022241,0.0000022274,0.0000022297,0.0000022308,0.0000022306, +0.0000022295,0.0000022287,0.0000022286,0.0000022255,0.0000022147, +0.0000021968,0.0000021786,0.0000021677,0.0000021648,0.0000021638, +0.0000021597,0.0000021552,0.0000021579,0.0000021707,0.0000021868, +0.0000021984,0.0000022096,0.0000022249,0.0000022382,0.0000022422, +0.0000022389,0.0000022333,0.0000022275,0.0000022221,0.0000022161, +0.0000022199,0.0000022274,0.0000022295,0.0000022150,0.0000021877, +0.0000021719,0.0000021789,0.0000021960,0.0000022110,0.0000022327, +0.0000022606,0.0000022756,0.0000022722,0.0000022647,0.0000022635, +0.0000022677,0.0000022765,0.0000022847,0.0000022879,0.0000022870, +0.0000022867,0.0000022906,0.0000022952,0.0000022971,0.0000023000, +0.0000023054,0.0000023092,0.0000023097,0.0000023089,0.0000023065, +0.0000023012,0.0000022960,0.0000022949,0.0000022971,0.0000022992, +0.0000022979,0.0000022948,0.0000022924,0.0000022910,0.0000022901, +0.0000022891,0.0000022882,0.0000022877,0.0000022870,0.0000022860, +0.0000022844,0.0000022831,0.0000022826,0.0000022829,0.0000022850, +0.0000022890,0.0000022930,0.0000022955,0.0000022975,0.0000023009, +0.0000023056,0.0000023108,0.0000023150,0.0000023178,0.0000023202, +0.0000023232,0.0000023265,0.0000023294,0.0000023327,0.0000023376, +0.0000023432,0.0000023471,0.0000023486,0.0000023486,0.0000023473, +0.0000023439,0.0000023407,0.0000023405,0.0000023423,0.0000023443, +0.0000023452,0.0000023455,0.0000023439,0.0000023389,0.0000023333, +0.0000023291,0.0000023269,0.0000023258,0.0000023250,0.0000023240, +0.0000023234,0.0000023237,0.0000023264,0.0000023301,0.0000023325, +0.0000023325,0.0000023312,0.0000023312,0.0000023333,0.0000023361, +0.0000023384,0.0000023400,0.0000023420,0.0000023441,0.0000023460, +0.0000023483,0.0000023506,0.0000023514,0.0000023513,0.0000023503, +0.0000023484,0.0000023451,0.0000023404,0.0000023354,0.0000023299, +0.0000023254,0.0000023194,0.0000023133,0.0000023086,0.0000023049, +0.0000023007,0.0000022978,0.0000022970,0.0000022981,0.0000022981, +0.0000022962,0.0000022936,0.0000022886,0.0000022822,0.0000022755, +0.0000022691,0.0000022643,0.0000022627,0.0000022634,0.0000022639, +0.0000022644,0.0000022660,0.0000022692,0.0000022741,0.0000022800, +0.0000022865,0.0000022931,0.0000022995,0.0000023056,0.0000023117, +0.0000023173,0.0000023216,0.0000023253,0.0000023278,0.0000023283, +0.0000023284,0.0000023289,0.0000023295,0.0000023300,0.0000023303, +0.0000023298,0.0000023297,0.0000023308,0.0000023324,0.0000023336, +0.0000023344,0.0000023351,0.0000023352,0.0000023345,0.0000023338, +0.0000023339,0.0000023350,0.0000023380,0.0000023441,0.0000023528, +0.0000023613,0.0000023655,0.0000023653,0.0000023619,0.0000023569, +0.0000023529,0.0000023522,0.0000023528,0.0000023539,0.0000023521, +0.0000023465,0.0000023390,0.0000023321,0.0000023267,0.0000023225, +0.0000023192,0.0000023170,0.0000023165,0.0000023172,0.0000023188, +0.0000023205,0.0000023218,0.0000023227,0.0000023235,0.0000023241, +0.0000023246,0.0000023239,0.0000023225,0.0000023213,0.0000023202, +0.0000023203,0.0000023206,0.0000023208,0.0000023208,0.0000023203, +0.0000023193,0.0000023179,0.0000023159,0.0000023138,0.0000023112, +0.0000023087,0.0000023060,0.0000023036,0.0000023012,0.0000022989, +0.0000022966,0.0000022943,0.0000022919,0.0000022904,0.0000022894, +0.0000022881,0.0000022867,0.0000022854,0.0000022837,0.0000022816, +0.0000022793,0.0000022773,0.0000022756,0.0000022746,0.0000022743, +0.0000022752,0.0000022769,0.0000022792,0.0000022815,0.0000022834, +0.0000022845,0.0000022851,0.0000022857,0.0000022863,0.0000022865, +0.0000022859,0.0000022848,0.0000022839,0.0000022835,0.0000022836, +0.0000022843,0.0000022856,0.0000022874,0.0000022890,0.0000022901, +0.0000022910,0.0000022914,0.0000022914,0.0000022910,0.0000022898, +0.0000022881,0.0000022863,0.0000022843,0.0000022824,0.0000022809, +0.0000022800,0.0000022803,0.0000022817,0.0000022842,0.0000022873, +0.0000022905,0.0000022940,0.0000022981,0.0000023028,0.0000023076, +0.0000023123,0.0000023169,0.0000023209,0.0000023239,0.0000023260, +0.0000023273,0.0000023278,0.0000023281,0.0000023282,0.0000023289, +0.0000023303,0.0000023320,0.0000023338,0.0000023362,0.0000023386, +0.0000023401,0.0000023409,0.0000023413,0.0000023415,0.0000023412, +0.0000023404,0.0000023385,0.0000023364,0.0000023336,0.0000023303, +0.0000023265,0.0000023223,0.0000023183,0.0000023155,0.0000023139, +0.0000023121,0.0000023106,0.0000023098,0.0000023096,0.0000023097, +0.0000023101,0.0000023105,0.0000023105,0.0000023102,0.0000023099, +0.0000023098,0.0000023101,0.0000023112,0.0000023124,0.0000023138, +0.0000023150,0.0000023162,0.0000023166,0.0000023170,0.0000023171, +0.0000023170,0.0000023168,0.0000023159,0.0000023141,0.0000023119, +0.0000023099,0.0000023094,0.0000023105,0.0000023120,0.0000023138, +0.0000023153,0.0000023159,0.0000023156,0.0000023150,0.0000023143, +0.0000023123,0.0000023082,0.0000023045,0.0000022998,0.0000022944, +0.0000022887,0.0000022827,0.0000022773,0.0000022730,0.0000022710, +0.0000022717,0.0000022742,0.0000022778,0.0000022802,0.0000022814, +0.0000022825,0.0000022833,0.0000022827,0.0000022813,0.0000022804, +0.0000022793,0.0000022781,0.0000022763,0.0000022745,0.0000022731, +0.0000022725,0.0000022722,0.0000022721,0.0000022723,0.0000022732, +0.0000022740,0.0000022739,0.0000022736,0.0000022734,0.0000022743, +0.0000022785,0.0000022853,0.0000022938,0.0000023018,0.0000023078, +0.0000023122,0.0000023159,0.0000023192,0.0000023227,0.0000023261, +0.0000023287,0.0000023308,0.0000023332,0.0000023363,0.0000023388, +0.0000023400,0.0000023419,0.0000023431,0.0000023431,0.0000023428, +0.0000023419,0.0000023407,0.0000023397,0.0000023391,0.0000023388, +0.0000023378,0.0000023358,0.0000023344,0.0000023338,0.0000023334, +0.0000023341,0.0000023351,0.0000023360,0.0000023363,0.0000023349, +0.0000023315,0.0000023263,0.0000023202,0.0000023129,0.0000023049, +0.0000022971,0.0000022889,0.0000022849,0.0000022864,0.0000022913, +0.0000022957,0.0000022945,0.0000022878,0.0000022840,0.0000022808, +0.0000022739,0.0000022677,0.0000022678,0.0000022701,0.0000022754, +0.0000022863,0.0000022948,0.0000023066,0.0000023324,0.0000023524, +0.0000023537,0.0000023538,0.0000023440,0.0000023247,0.0000023170, +0.0000023102,0.0000023045,0.0000023002,0.0000023005,0.0000023030, +0.0000023083,0.0000023143,0.0000023206,0.0000023292,0.0000023381, +0.0000023427,0.0000023431,0.0000023421,0.0000023407,0.0000023367, +0.0000023309,0.0000023275,0.0000023268,0.0000023288,0.0000023308, +0.0000023316,0.0000023319,0.0000023308,0.0000023258,0.0000023169, +0.0000023072,0.0000023000,0.0000022952,0.0000022902,0.0000022822, +0.0000022799,0.0000022857,0.0000022904,0.0000022893,0.0000022837, +0.0000022780,0.0000022780,0.0000022842,0.0000022893,0.0000022893, +0.0000022863,0.0000022800,0.0000022764,0.0000022757,0.0000022716, +0.0000022646,0.0000022618,0.0000022574,0.0000022397,0.0000022211, +0.0000022200,0.0000022317,0.0000022499,0.0000022623,0.0000022645, +0.0000022637,0.0000022555,0.0000022307,0.0000022090,0.0000022095, +0.0000022247,0.0000022436,0.0000022575,0.0000022655,0.0000022713, +0.0000022807,0.0000022914,0.0000022952,0.0000022912,0.0000022821, +0.0000022766,0.0000022757,0.0000022741,0.0000022704,0.0000022708, +0.0000022803,0.0000022898,0.0000022911,0.0000022868,0.0000022764, +0.0000022643,0.0000022505,0.0000022365,0.0000022286,0.0000022240, +0.0000022206,0.0000022215,0.0000022255,0.0000022276,0.0000022260, +0.0000022214,0.0000022163,0.0000022161,0.0000022246,0.0000022370, +0.0000022468,0.0000022562,0.0000022645,0.0000022704,0.0000022730, +0.0000022739,0.0000022741,0.0000022740,0.0000022748,0.0000022771, +0.0000022782,0.0000022777,0.0000022780,0.0000022804,0.0000022824, +0.0000022832,0.0000022847,0.0000022870,0.0000022897,0.0000022937, +0.0000022982,0.0000023017,0.0000023034,0.0000023049,0.0000023067, +0.0000023097,0.0000023134,0.0000023169,0.0000023192,0.0000023197, +0.0000023191,0.0000023179,0.0000023158,0.0000023136,0.0000023116, +0.0000023106,0.0000023107,0.0000023120,0.0000023150,0.0000023181, +0.0000023202,0.0000023217,0.0000023227,0.0000023236,0.0000023254, +0.0000023279,0.0000023298,0.0000023311,0.0000023312,0.0000023298, +0.0000023253,0.0000023173,0.0000023067,0.0000022950,0.0000022835, +0.0000022723,0.0000022632,0.0000022576,0.0000022554,0.0000022554, +0.0000022617,0.0000022724,0.0000022860,0.0000023006,0.0000023137, +0.0000023227,0.0000023278,0.0000023311,0.0000023349,0.0000023392, +0.0000023434,0.0000023468,0.0000023481,0.0000023494,0.0000023500, +0.0000023502,0.0000023498,0.0000023489,0.0000023486,0.0000023489, +0.0000023488,0.0000023473,0.0000023448,0.0000023433,0.0000023454, +0.0000023488,0.0000023553,0.0000023648,0.0000023751,0.0000023877, +0.0000023983,0.0000024021,0.0000024012,0.0000023998,0.0000024019, +0.0000024081,0.0000024141,0.0000024193,0.0000024186,0.0000024078, +0.0000024000,0.0000023918,0.0000023851,0.0000023838,0.0000023852, +0.0000023867,0.0000023891,0.0000023923,0.0000023962,0.0000023994, +0.0000024011,0.0000024006,0.0000023991,0.0000023979,0.0000023974, +0.0000023974,0.0000023981,0.0000023993,0.0000023999,0.0000023995, +0.0000023981,0.0000023958,0.0000023933,0.0000023904,0.0000023870, +0.0000023831,0.0000023792,0.0000023756,0.0000023723,0.0000023692, +0.0000023664,0.0000023640,0.0000023617,0.0000023590,0.0000023560, +0.0000023541,0.0000023537,0.0000023537,0.0000023536,0.0000023532, +0.0000023529,0.0000023527,0.0000023525,0.0000023519,0.0000023507, +0.0000023493,0.0000023476,0.0000023454,0.0000023426,0.0000023396, +0.0000023370,0.0000023345,0.0000023322,0.0000023299,0.0000023273, +0.0000023246,0.0000023220,0.0000023195,0.0000023173,0.0000023154, +0.0000023138,0.0000023129,0.0000023125,0.0000023129,0.0000023135, +0.0000023139,0.0000023140,0.0000023135,0.0000023123,0.0000023100, +0.0000023065,0.0000023028,0.0000022999,0.0000022975,0.0000022955, +0.0000022942,0.0000022941,0.0000022964,0.0000023010,0.0000023060, +0.0000023106,0.0000023149,0.0000023193,0.0000023239,0.0000023279, +0.0000023310,0.0000023328,0.0000023333,0.0000023328,0.0000023320, +0.0000023311,0.0000023304,0.0000023299,0.0000023299,0.0000023302, +0.0000023312,0.0000023323,0.0000023334,0.0000023347,0.0000023362, +0.0000023370,0.0000023374,0.0000023374,0.0000023373,0.0000023370, +0.0000023369,0.0000023373,0.0000023381,0.0000023390,0.0000023402, +0.0000023418,0.0000023437,0.0000023463,0.0000023489,0.0000023512, +0.0000023532,0.0000023548,0.0000023561,0.0000023573,0.0000023589, +0.0000023609,0.0000023631,0.0000023643,0.0000023661,0.0000023674, +0.0000023681,0.0000023684,0.0000023688,0.0000023691,0.0000023685, +0.0000023667,0.0000023642,0.0000023614,0.0000023585,0.0000023553, +0.0000023523,0.0000023500,0.0000023487,0.0000023502,0.0000023551, +0.0000023592,0.0000023554,0.0000023410,0.0000023162,0.0000022997, +0.0000022983,0.0000023019,0.0000023143,0.0000023351,0.0000023516, +0.0000023575,0.0000023570,0.0000023488,0.0000023403,0.0000023457, +0.0000023606,0.0000023712,0.0000023771,0.0000023756,0.0000023667, +0.0000023560,0.0000023448,0.0000023336,0.0000023256,0.0000023222, +0.0000023216,0.0000023225,0.0000023274,0.0000023364,0.0000023446, +0.0000023464,0.0000023425,0.0000023350,0.0000023261,0.0000023202, +0.0000023184,0.0000023191,0.0000023206,0.0000023227,0.0000023245, +0.0000023259,0.0000023272,0.0000023279,0.0000023277,0.0000023273, +0.0000023273,0.0000023277,0.0000023284,0.0000023288,0.0000023285, +0.0000023269,0.0000023237,0.0000023192,0.0000023129,0.0000023053, +0.0000022968,0.0000022887,0.0000022836,0.0000022828,0.0000022860, +0.0000022895,0.0000022910,0.0000022920,0.0000022915,0.0000022904, +0.0000022882,0.0000022847,0.0000022796,0.0000022733,0.0000022671, +0.0000022602,0.0000022498,0.0000022340,0.0000022193,0.0000022148, +0.0000022166,0.0000022132,0.0000022008,0.0000021876,0.0000021752, +0.0000021616,0.0000021527,0.0000021512,0.0000021496,0.0000021428, +0.0000021357,0.0000021330,0.0000021333,0.0000021410,0.0000021595, +0.0000021858,0.0000022128,0.0000022342,0.0000022471,0.0000022527, +0.0000022571,0.0000022644,0.0000022725,0.0000022780,0.0000022793, +0.0000022769,0.0000022707,0.0000022631,0.0000022571,0.0000022529, +0.0000022486,0.0000022429,0.0000022373,0.0000022326,0.0000022273, +0.0000022207,0.0000022131,0.0000022054,0.0000021985,0.0000021911, +0.0000021833,0.0000021750,0.0000021643,0.0000021535,0.0000021475, +0.0000021458,0.0000021451,0.0000021433,0.0000021408,0.0000021408, +0.0000021450,0.0000021520,0.0000021602,0.0000021682,0.0000021742, +0.0000021783,0.0000021817,0.0000021849,0.0000021879,0.0000021896, +0.0000021898,0.0000021906,0.0000021908,0.0000021899,0.0000021864, +0.0000021803,0.0000021722,0.0000021637,0.0000021562,0.0000021505, +0.0000021464,0.0000021433,0.0000021415,0.0000021413,0.0000021430, +0.0000021465,0.0000021509,0.0000021554,0.0000021601,0.0000021647, +0.0000021690,0.0000021733,0.0000021770,0.0000021790,0.0000021771, +0.0000021741,0.0000021710,0.0000021688,0.0000021662,0.0000021616, +0.0000021544,0.0000021447,0.0000021327,0.0000021189,0.0000021032, +0.0000020879,0.0000020784,0.0000020775,0.0000020819,0.0000020862, +0.0000020895,0.0000020992,0.0000021202,0.0000021455,0.0000021633, +0.0000021707,0.0000021757,0.0000021876,0.0000022068,0.0000022242, +0.0000022307,0.0000022272,0.0000022210,0.0000022189,0.0000022230, +0.0000022358,0.0000022531,0.0000022698,0.0000022854,0.0000023008, +0.0000023152,0.0000023267,0.0000023351,0.0000023451,0.0000023617, +0.0000023832,0.0000024015,0.0000024112,0.0000024157,0.0000024242, +0.0000024424,0.0000024653,0.0000024828,0.0000024911,0.0000024935, +0.0000024938,0.0000024945,0.0000024974,0.0000025000,0.0000024951, +0.0000024796,0.0000024608,0.0000024483,0.0000024413,0.0000024345, +0.0000024298,0.0000024316,0.0000024438,0.0000024593,0.0000024717, +0.0000024809,0.0000024867,0.0000024853,0.0000024716,0.0000024531, +0.0000024370,0.0000024238,0.0000024175,0.0000024170,0.0000024143, +0.0000024053,0.0000023942,0.0000023864,0.0000023838,0.0000023848, +0.0000023866,0.0000023874,0.0000023876,0.0000023863,0.0000023839, +0.0000023819,0.0000023817,0.0000023824,0.0000023828,0.0000023830, +0.0000023829,0.0000023814,0.0000023779,0.0000023734,0.0000023684, +0.0000023631,0.0000023572,0.0000023508,0.0000023442,0.0000023392, +0.0000023386,0.0000023411,0.0000023464,0.0000023526,0.0000023586, +0.0000023636,0.0000023668,0.0000023683,0.0000023684,0.0000023669, +0.0000023636,0.0000023592,0.0000023544,0.0000023492,0.0000023432, +0.0000023363,0.0000023289,0.0000023216,0.0000023141,0.0000023072, +0.0000023028,0.0000023019,0.0000023024,0.0000023036,0.0000023043, +0.0000023042,0.0000023028,0.0000022999,0.0000022963,0.0000022934, +0.0000022940,0.0000023007,0.0000023138,0.0000023303,0.0000023481, +0.0000023652,0.0000023801,0.0000023918,0.0000024005,0.0000024063, +0.0000024099,0.0000024117,0.0000024123,0.0000024120,0.0000024119, +0.0000024118,0.0000024111,0.0000024094,0.0000024065,0.0000024022, +0.0000023949,0.0000023840,0.0000023704,0.0000023558,0.0000023420, +0.0000023302,0.0000023195,0.0000023098,0.0000023016,0.0000022954, +0.0000022910,0.0000022883,0.0000022877,0.0000022891,0.0000022928, +0.0000022966,0.0000023009,0.0000023054,0.0000023088,0.0000023104, +0.0000023100,0.0000023067,0.0000023011,0.0000022945,0.0000022889, +0.0000022837,0.0000022761,0.0000022649,0.0000022440,0.0000022181, +0.0000022012,0.0000021967,0.0000021973,0.0000021977,0.0000021970, +0.0000021952,0.0000021925,0.0000021888,0.0000021826,0.0000021734, +0.0000021643,0.0000021591,0.0000021575,0.0000021575,0.0000021591, +0.0000021610,0.0000021626,0.0000021629,0.0000021606,0.0000021530, +0.0000021421,0.0000021315,0.0000021251,0.0000021262,0.0000021312, +0.0000021373,0.0000021425,0.0000021477,0.0000021533,0.0000021594, +0.0000021656,0.0000021709,0.0000021756,0.0000021782,0.0000021797, +0.0000021793,0.0000021782,0.0000021765,0.0000021742,0.0000021719, +0.0000021691,0.0000021661,0.0000021629,0.0000021606,0.0000021588, +0.0000021574,0.0000021549,0.0000021525,0.0000021500,0.0000021474, +0.0000021455,0.0000021437,0.0000021413,0.0000021379,0.0000021336, +0.0000021294,0.0000021251,0.0000021209,0.0000021178,0.0000021150, +0.0000021120,0.0000021097,0.0000021080,0.0000021070,0.0000021068, +0.0000021072,0.0000021087,0.0000021113,0.0000021149,0.0000021180, +0.0000021200,0.0000021214,0.0000021221,0.0000021216,0.0000021209, +0.0000021203,0.0000021202,0.0000021208,0.0000021215,0.0000021221, +0.0000021229,0.0000021232,0.0000021238,0.0000021255,0.0000021305, +0.0000021370,0.0000021433,0.0000021489,0.0000021528,0.0000021552, +0.0000021563,0.0000021564,0.0000021558,0.0000021547,0.0000021529, +0.0000021511,0.0000021495,0.0000021479,0.0000021467,0.0000021465, +0.0000021473,0.0000021502,0.0000021548,0.0000021599,0.0000021643, +0.0000021683,0.0000021711,0.0000021722,0.0000021725,0.0000021719, +0.0000021712,0.0000021685,0.0000021645,0.0000021604,0.0000021574, +0.0000021552,0.0000021533,0.0000021508,0.0000021469,0.0000021425, +0.0000021385,0.0000021348,0.0000021307,0.0000021279,0.0000021262, +0.0000021252,0.0000021246,0.0000021254,0.0000021288,0.0000021349, +0.0000021418,0.0000021487,0.0000021564,0.0000021653,0.0000021744, +0.0000021813,0.0000021851,0.0000021870,0.0000021879,0.0000021877, +0.0000021868,0.0000021860,0.0000021856,0.0000021854,0.0000021856, +0.0000021858,0.0000021846,0.0000021819,0.0000021799,0.0000021787, +0.0000021778,0.0000021764,0.0000021690,0.0000021600,0.0000021591, +0.0000021624,0.0000021630,0.0000021625,0.0000021624,0.0000021616, +0.0000021590,0.0000021554,0.0000021519,0.0000021493,0.0000021487, +0.0000021500,0.0000021528,0.0000021556,0.0000021574,0.0000021584, +0.0000021594,0.0000021592,0.0000021535,0.0000021440,0.0000021397, +0.0000021396,0.0000021373,0.0000021335,0.0000021351,0.0000021447, +0.0000021556,0.0000021615,0.0000021643,0.0000021677,0.0000021711, +0.0000021739,0.0000021764,0.0000021792,0.0000021828,0.0000021869, +0.0000021905,0.0000021931,0.0000021953,0.0000021974,0.0000021982, +0.0000021975,0.0000021952,0.0000021929,0.0000021920,0.0000021921, +0.0000021941,0.0000021979,0.0000022026,0.0000022067,0.0000022099, +0.0000022116,0.0000022117,0.0000022086,0.0000022016,0.0000021923, +0.0000021823,0.0000021727,0.0000021651,0.0000021608,0.0000021592, +0.0000021584,0.0000021563,0.0000021510,0.0000021428,0.0000021349, +0.0000021296,0.0000021275,0.0000021280,0.0000021301,0.0000021324, +0.0000021353,0.0000021379,0.0000021347,0.0000021218,0.0000021081, +0.0000021006,0.0000020986,0.0000021078,0.0000021402,0.0000021748, +0.0000021957,0.0000022069,0.0000022128,0.0000022170,0.0000022230, +0.0000022282,0.0000022308,0.0000022317,0.0000022310,0.0000022264, +0.0000022188,0.0000022117,0.0000022068,0.0000022041,0.0000022037, +0.0000022061,0.0000022112,0.0000022172,0.0000022226,0.0000022268, +0.0000022295,0.0000022305,0.0000022302,0.0000022294,0.0000022286, +0.0000022252,0.0000022135,0.0000021937,0.0000021737,0.0000021620, +0.0000021598,0.0000021599,0.0000021560,0.0000021510,0.0000021541, +0.0000021686,0.0000021867,0.0000021987,0.0000022079,0.0000022215, +0.0000022360,0.0000022432,0.0000022424,0.0000022380,0.0000022317, +0.0000022242,0.0000022180,0.0000022151,0.0000022217,0.0000022276, +0.0000022206,0.0000021947,0.0000021741,0.0000021746,0.0000021890, +0.0000022042,0.0000022231,0.0000022506,0.0000022700,0.0000022715, +0.0000022645,0.0000022609,0.0000022628,0.0000022695,0.0000022787, +0.0000022854,0.0000022865,0.0000022845,0.0000022854,0.0000022901, +0.0000022934,0.0000022946,0.0000022986,0.0000023053,0.0000023094, +0.0000023094,0.0000023085,0.0000023074,0.0000023042,0.0000022988, +0.0000022959,0.0000022969,0.0000022999,0.0000023011,0.0000023004, +0.0000022983,0.0000022957,0.0000022933,0.0000022913,0.0000022896, +0.0000022883,0.0000022873,0.0000022861,0.0000022844,0.0000022826, +0.0000022810,0.0000022801,0.0000022813,0.0000022847,0.0000022890, +0.0000022929,0.0000022962,0.0000022997,0.0000023041,0.0000023094, +0.0000023141,0.0000023172,0.0000023196,0.0000023226,0.0000023263, +0.0000023299,0.0000023332,0.0000023370,0.0000023417,0.0000023450, +0.0000023464,0.0000023464,0.0000023452,0.0000023416,0.0000023377, +0.0000023375,0.0000023400,0.0000023420,0.0000023431,0.0000023441, +0.0000023437,0.0000023400,0.0000023345,0.0000023299,0.0000023270, +0.0000023250,0.0000023236,0.0000023226,0.0000023216,0.0000023206, +0.0000023204,0.0000023218,0.0000023240,0.0000023243,0.0000023234, +0.0000023224,0.0000023230,0.0000023250,0.0000023271,0.0000023291, +0.0000023308,0.0000023322,0.0000023329,0.0000023336,0.0000023354, +0.0000023371,0.0000023374,0.0000023369,0.0000023362,0.0000023358, +0.0000023341,0.0000023313,0.0000023286,0.0000023267,0.0000023239, +0.0000023191,0.0000023144,0.0000023098,0.0000023056,0.0000023009, +0.0000022968,0.0000022952,0.0000022949,0.0000022946,0.0000022941, +0.0000022930,0.0000022909,0.0000022882,0.0000022838,0.0000022787, +0.0000022739,0.0000022700,0.0000022668,0.0000022641,0.0000022617, +0.0000022600,0.0000022602,0.0000022610,0.0000022629,0.0000022673, +0.0000022726,0.0000022783,0.0000022847,0.0000022920,0.0000022998, +0.0000023076,0.0000023152,0.0000023211,0.0000023250,0.0000023276, +0.0000023290,0.0000023301,0.0000023305,0.0000023302,0.0000023289, +0.0000023269,0.0000023258,0.0000023255,0.0000023264,0.0000023284, +0.0000023307,0.0000023319,0.0000023320,0.0000023315,0.0000023308, +0.0000023303,0.0000023307,0.0000023333,0.0000023392,0.0000023480, +0.0000023580,0.0000023653,0.0000023677,0.0000023652,0.0000023601, +0.0000023552,0.0000023532,0.0000023534,0.0000023537,0.0000023519, +0.0000023469,0.0000023393,0.0000023309,0.0000023235,0.0000023180, +0.0000023149,0.0000023134,0.0000023136,0.0000023149,0.0000023168, +0.0000023187,0.0000023204,0.0000023218,0.0000023231,0.0000023241, +0.0000023243,0.0000023236,0.0000023226,0.0000023219,0.0000023219, +0.0000023222,0.0000023228,0.0000023232,0.0000023234,0.0000023231, +0.0000023222,0.0000023209,0.0000023187,0.0000023152,0.0000023109, +0.0000023064,0.0000023024,0.0000022989,0.0000022956,0.0000022922, +0.0000022890,0.0000022860,0.0000022836,0.0000022818,0.0000022804, +0.0000022792,0.0000022776,0.0000022755,0.0000022730,0.0000022706, +0.0000022683,0.0000022668,0.0000022659,0.0000022659,0.0000022671, +0.0000022693,0.0000022717,0.0000022739,0.0000022753,0.0000022754, +0.0000022745,0.0000022733,0.0000022726,0.0000022721,0.0000022714, +0.0000022707,0.0000022702,0.0000022699,0.0000022700,0.0000022707, +0.0000022720,0.0000022735,0.0000022749,0.0000022763,0.0000022774, +0.0000022783,0.0000022789,0.0000022793,0.0000022790,0.0000022781, +0.0000022767,0.0000022752,0.0000022743,0.0000022738,0.0000022737, +0.0000022740,0.0000022755,0.0000022777,0.0000022802,0.0000022822, +0.0000022837,0.0000022852,0.0000022868,0.0000022883,0.0000022901, +0.0000022923,0.0000022949,0.0000022976,0.0000023007,0.0000023044, +0.0000023085,0.0000023128,0.0000023173,0.0000023219,0.0000023264, +0.0000023303,0.0000023327,0.0000023344,0.0000023356,0.0000023361, +0.0000023360,0.0000023354,0.0000023348,0.0000023345,0.0000023344, +0.0000023344,0.0000023341,0.0000023335,0.0000023321,0.0000023310, +0.0000023294,0.0000023268,0.0000023237,0.0000023205,0.0000023175, +0.0000023144,0.0000023116,0.0000023092,0.0000023076,0.0000023071, +0.0000023068,0.0000023062,0.0000023061,0.0000023066,0.0000023074, +0.0000023089,0.0000023105,0.0000023119,0.0000023132,0.0000023148, +0.0000023164,0.0000023178,0.0000023187,0.0000023194,0.0000023194, +0.0000023194,0.0000023188,0.0000023176,0.0000023154,0.0000023125, +0.0000023099,0.0000023083,0.0000023075,0.0000023071,0.0000023065, +0.0000023056,0.0000023044,0.0000023035,0.0000023028,0.0000023020, +0.0000023002,0.0000022988,0.0000022975,0.0000022950,0.0000022916, +0.0000022871,0.0000022824,0.0000022768,0.0000022722,0.0000022709, +0.0000022717,0.0000022730,0.0000022742,0.0000022746,0.0000022742, +0.0000022732,0.0000022710,0.0000022682,0.0000022645,0.0000022601, +0.0000022560,0.0000022514,0.0000022479,0.0000022455,0.0000022441, +0.0000022434,0.0000022442,0.0000022466,0.0000022510,0.0000022568, +0.0000022622,0.0000022663,0.0000022697,0.0000022722,0.0000022741, +0.0000022751,0.0000022764,0.0000022799,0.0000022858,0.0000022933, +0.0000022998,0.0000023049,0.0000023090,0.0000023126,0.0000023158, +0.0000023188,0.0000023223,0.0000023271,0.0000023322,0.0000023368, +0.0000023408,0.0000023438,0.0000023460,0.0000023473,0.0000023474, +0.0000023465,0.0000023449,0.0000023428,0.0000023408,0.0000023383, +0.0000023348,0.0000023319,0.0000023302,0.0000023283,0.0000023275, +0.0000023276,0.0000023284,0.0000023301,0.0000023303,0.0000023289, +0.0000023253,0.0000023209,0.0000023154,0.0000023095,0.0000023034, +0.0000022977,0.0000022919,0.0000022886,0.0000022894,0.0000022943, +0.0000022966,0.0000022914,0.0000022862,0.0000022837,0.0000022778, +0.0000022700,0.0000022669,0.0000022685,0.0000022718,0.0000022820, +0.0000022918,0.0000023005,0.0000023207,0.0000023463,0.0000023553, +0.0000023553,0.0000023518,0.0000023329,0.0000023191,0.0000023142, +0.0000023092,0.0000023034,0.0000023006,0.0000023007,0.0000023039, +0.0000023101,0.0000023176,0.0000023262,0.0000023340,0.0000023381, +0.0000023381,0.0000023373,0.0000023362,0.0000023329,0.0000023277, +0.0000023255,0.0000023262,0.0000023283,0.0000023305,0.0000023319, +0.0000023329,0.0000023313,0.0000023256,0.0000023135,0.0000023020, +0.0000022948,0.0000022890,0.0000022831,0.0000022784,0.0000022808, +0.0000022879,0.0000022906,0.0000022867,0.0000022802,0.0000022765, +0.0000022780,0.0000022850,0.0000022905,0.0000022911,0.0000022886, +0.0000022815,0.0000022768,0.0000022766,0.0000022745,0.0000022683, +0.0000022651,0.0000022605,0.0000022412,0.0000022211,0.0000022213, +0.0000022354,0.0000022537,0.0000022634,0.0000022643,0.0000022631, +0.0000022495,0.0000022212,0.0000022053,0.0000022108,0.0000022296, +0.0000022466,0.0000022569,0.0000022630,0.0000022698,0.0000022808, +0.0000022912,0.0000022939,0.0000022893,0.0000022815,0.0000022775, +0.0000022765,0.0000022734,0.0000022678,0.0000022676,0.0000022778, +0.0000022883,0.0000022887,0.0000022811,0.0000022686,0.0000022566, +0.0000022437,0.0000022321,0.0000022280,0.0000022262,0.0000022245, +0.0000022262,0.0000022289,0.0000022295,0.0000022272,0.0000022223, +0.0000022169,0.0000022155,0.0000022232,0.0000022371,0.0000022485, +0.0000022585,0.0000022673,0.0000022734,0.0000022754,0.0000022758, +0.0000022758,0.0000022746,0.0000022749,0.0000022775,0.0000022794, +0.0000022791,0.0000022793,0.0000022819,0.0000022839,0.0000022837, +0.0000022832,0.0000022845,0.0000022874,0.0000022910,0.0000022947, +0.0000022983,0.0000023012,0.0000023039,0.0000023067,0.0000023097, +0.0000023135,0.0000023171,0.0000023194,0.0000023201,0.0000023193, +0.0000023178,0.0000023161,0.0000023140,0.0000023114,0.0000023094, +0.0000023084,0.0000023092,0.0000023119,0.0000023163,0.0000023200, +0.0000023224,0.0000023244,0.0000023258,0.0000023273,0.0000023283, +0.0000023288,0.0000023295,0.0000023299,0.0000023300,0.0000023297, +0.0000023282,0.0000023233,0.0000023150,0.0000023051,0.0000022941, +0.0000022827,0.0000022732,0.0000022671,0.0000022650,0.0000022683, +0.0000022778,0.0000022900,0.0000023020,0.0000023125,0.0000023204, +0.0000023257,0.0000023305,0.0000023356,0.0000023394,0.0000023418, +0.0000023432,0.0000023437,0.0000023435,0.0000023439,0.0000023453, +0.0000023466,0.0000023473,0.0000023472,0.0000023471,0.0000023473, +0.0000023465,0.0000023444,0.0000023420,0.0000023410,0.0000023431, +0.0000023467,0.0000023535,0.0000023630,0.0000023737,0.0000023867, +0.0000023969,0.0000023998,0.0000023985,0.0000023975,0.0000023998, +0.0000024058,0.0000024120,0.0000024179,0.0000024167,0.0000024062, +0.0000023991,0.0000023920,0.0000023860,0.0000023838,0.0000023840, +0.0000023865,0.0000023886,0.0000023911,0.0000023946,0.0000023981, +0.0000024005,0.0000024016,0.0000024017,0.0000024008,0.0000023990, +0.0000023977,0.0000023977,0.0000023982,0.0000023983,0.0000023979, +0.0000023965,0.0000023941,0.0000023914,0.0000023888,0.0000023855, +0.0000023816,0.0000023772,0.0000023726,0.0000023683,0.0000023650, +0.0000023630,0.0000023612,0.0000023589,0.0000023559,0.0000023528, +0.0000023506,0.0000023495,0.0000023487,0.0000023477,0.0000023466, +0.0000023458,0.0000023456,0.0000023457,0.0000023457,0.0000023455, +0.0000023446,0.0000023430,0.0000023403,0.0000023366,0.0000023331, +0.0000023302,0.0000023278,0.0000023258,0.0000023237,0.0000023211, +0.0000023184,0.0000023157,0.0000023132,0.0000023108,0.0000023086, +0.0000023067,0.0000023051,0.0000023037,0.0000023027,0.0000023021, +0.0000023016,0.0000023012,0.0000023009,0.0000023003,0.0000022992, +0.0000022975,0.0000022952,0.0000022923,0.0000022893,0.0000022864, +0.0000022838,0.0000022826,0.0000022839,0.0000022879,0.0000022928, +0.0000022973,0.0000023015,0.0000023056,0.0000023097,0.0000023138, +0.0000023175,0.0000023204,0.0000023222,0.0000023227,0.0000023223, +0.0000023214,0.0000023207,0.0000023202,0.0000023204,0.0000023208, +0.0000023211,0.0000023217,0.0000023222,0.0000023228,0.0000023234, +0.0000023235,0.0000023228,0.0000023215,0.0000023197,0.0000023179, +0.0000023163,0.0000023156,0.0000023158,0.0000023166,0.0000023176, +0.0000023189,0.0000023205,0.0000023227,0.0000023255,0.0000023286, +0.0000023316,0.0000023346,0.0000023375,0.0000023404,0.0000023436, +0.0000023467,0.0000023498,0.0000023528,0.0000023560,0.0000023590, +0.0000023613,0.0000023630,0.0000023640,0.0000023650,0.0000023658, +0.0000023656,0.0000023640,0.0000023617,0.0000023590,0.0000023565, +0.0000023536,0.0000023508,0.0000023480,0.0000023457,0.0000023463, +0.0000023500,0.0000023542,0.0000023543,0.0000023407,0.0000023160, +0.0000022997,0.0000022983,0.0000023018,0.0000023136,0.0000023343, +0.0000023506,0.0000023566,0.0000023542,0.0000023429,0.0000023364, +0.0000023468,0.0000023613,0.0000023702,0.0000023732,0.0000023689, +0.0000023588,0.0000023470,0.0000023342,0.0000023213,0.0000023116, +0.0000023074,0.0000023074,0.0000023091,0.0000023147,0.0000023246, +0.0000023352,0.0000023415,0.0000023411,0.0000023367,0.0000023308, +0.0000023259,0.0000023230,0.0000023215,0.0000023218,0.0000023231, +0.0000023241,0.0000023248,0.0000023251,0.0000023251,0.0000023253, +0.0000023258,0.0000023265,0.0000023276,0.0000023283,0.0000023282, +0.0000023269,0.0000023234,0.0000023155,0.0000023015,0.0000022828, +0.0000022632,0.0000022466,0.0000022367,0.0000022351,0.0000022420, +0.0000022569,0.0000022739,0.0000022874,0.0000022933,0.0000022968, +0.0000022983,0.0000022987,0.0000022977,0.0000022946,0.0000022895, +0.0000022818,0.0000022716,0.0000022594,0.0000022448,0.0000022290, +0.0000022195,0.0000022185,0.0000022160,0.0000022053,0.0000021920, +0.0000021799,0.0000021667,0.0000021561,0.0000021530,0.0000021521, +0.0000021473,0.0000021398,0.0000021349,0.0000021338,0.0000021360, +0.0000021480,0.0000021701,0.0000021960,0.0000022190,0.0000022363, +0.0000022473,0.0000022538,0.0000022606,0.0000022684,0.0000022741, +0.0000022760,0.0000022741,0.0000022677,0.0000022590,0.0000022522, +0.0000022487,0.0000022452,0.0000022393,0.0000022326,0.0000022268, +0.0000022209,0.0000022136,0.0000022042,0.0000021939,0.0000021841, +0.0000021737,0.0000021629,0.0000021534,0.0000021460,0.0000021430, +0.0000021442,0.0000021471,0.0000021471,0.0000021449,0.0000021453, +0.0000021504,0.0000021572,0.0000021642,0.0000021713,0.0000021768, +0.0000021798,0.0000021815,0.0000021837,0.0000021871,0.0000021911, +0.0000021942,0.0000021957,0.0000021958,0.0000021937,0.0000021887, +0.0000021803,0.0000021694,0.0000021590,0.0000021502,0.0000021428, +0.0000021369,0.0000021329,0.0000021311,0.0000021310,0.0000021324, +0.0000021351,0.0000021388,0.0000021427,0.0000021464,0.0000021498, +0.0000021528,0.0000021557,0.0000021592,0.0000021636,0.0000021684, +0.0000021714,0.0000021718,0.0000021700,0.0000021683,0.0000021667, +0.0000021646,0.0000021612,0.0000021555,0.0000021464,0.0000021337, +0.0000021184,0.0000021017,0.0000020869,0.0000020790,0.0000020800, +0.0000020837,0.0000020867,0.0000020905,0.0000021029,0.0000021262, +0.0000021509,0.0000021657,0.0000021709,0.0000021764,0.0000021894, +0.0000022072,0.0000022195,0.0000022214,0.0000022177,0.0000022152, +0.0000022166,0.0000022252,0.0000022402,0.0000022578,0.0000022754, +0.0000022921,0.0000023081,0.0000023223,0.0000023324,0.0000023392, +0.0000023482,0.0000023639,0.0000023839,0.0000024001,0.0000024079, +0.0000024121,0.0000024231,0.0000024444,0.0000024682,0.0000024843, +0.0000024904,0.0000024909,0.0000024903,0.0000024913,0.0000024944, +0.0000024947,0.0000024865,0.0000024698,0.0000024524,0.0000024416, +0.0000024347,0.0000024279,0.0000024256,0.0000024324,0.0000024466, +0.0000024618,0.0000024743,0.0000024834,0.0000024853,0.0000024766, +0.0000024607,0.0000024459,0.0000024330,0.0000024236,0.0000024205, +0.0000024194,0.0000024142,0.0000024049,0.0000023957,0.0000023904, +0.0000023895,0.0000023900,0.0000023896,0.0000023879,0.0000023852, +0.0000023818,0.0000023795,0.0000023797,0.0000023810,0.0000023821, +0.0000023828,0.0000023833,0.0000023827,0.0000023808,0.0000023780, +0.0000023748,0.0000023714,0.0000023672,0.0000023624,0.0000023576, +0.0000023544,0.0000023540,0.0000023567,0.0000023619,0.0000023679, +0.0000023737,0.0000023781,0.0000023805,0.0000023812,0.0000023810, +0.0000023789,0.0000023752,0.0000023707,0.0000023660,0.0000023614, +0.0000023566,0.0000023509,0.0000023445,0.0000023375,0.0000023292, +0.0000023197,0.0000023113,0.0000023060,0.0000023039,0.0000023035, +0.0000023037,0.0000023036,0.0000023025,0.0000022999,0.0000022967, +0.0000022939,0.0000022932,0.0000022962,0.0000023019,0.0000023099, +0.0000023204,0.0000023330,0.0000023468,0.0000023610,0.0000023743, +0.0000023863,0.0000023959,0.0000024028,0.0000024067,0.0000024084, +0.0000024089,0.0000024088,0.0000024072,0.0000024034,0.0000023974, +0.0000023891,0.0000023784,0.0000023661,0.0000023534,0.0000023404, +0.0000023280,0.0000023172,0.0000023078,0.0000022994,0.0000022923, +0.0000022865,0.0000022815,0.0000022774,0.0000022749,0.0000022748, +0.0000022773,0.0000022815,0.0000022863,0.0000022920,0.0000022976, +0.0000023021,0.0000023047,0.0000023043,0.0000023014,0.0000022952, +0.0000022882,0.0000022815,0.0000022760,0.0000022718,0.0000022680, +0.0000022565,0.0000022357,0.0000022148,0.0000022029,0.0000022003, +0.0000021998,0.0000021975,0.0000021938,0.0000021899,0.0000021865, +0.0000021828,0.0000021760,0.0000021676,0.0000021608,0.0000021575, +0.0000021563,0.0000021560,0.0000021560,0.0000021563,0.0000021569, +0.0000021573,0.0000021547,0.0000021518,0.0000021470,0.0000021434, +0.0000021398,0.0000021384,0.0000021413,0.0000021460,0.0000021508, +0.0000021557,0.0000021605,0.0000021648,0.0000021688,0.0000021726, +0.0000021754,0.0000021771,0.0000021776,0.0000021769,0.0000021749, +0.0000021729,0.0000021709,0.0000021682,0.0000021650,0.0000021621, +0.0000021598,0.0000021578,0.0000021546,0.0000021504,0.0000021467, +0.0000021432,0.0000021403,0.0000021380,0.0000021351,0.0000021313, +0.0000021267,0.0000021225,0.0000021191,0.0000021155,0.0000021126, +0.0000021101,0.0000021079,0.0000021063,0.0000021057,0.0000021053, +0.0000021056,0.0000021062,0.0000021074,0.0000021102,0.0000021143, +0.0000021183,0.0000021207,0.0000021222,0.0000021230,0.0000021225, +0.0000021220,0.0000021212,0.0000021207,0.0000021207,0.0000021211, +0.0000021217,0.0000021228,0.0000021238,0.0000021243,0.0000021242, +0.0000021247,0.0000021260,0.0000021289,0.0000021329,0.0000021364, +0.0000021385,0.0000021394,0.0000021396,0.0000021389,0.0000021370, +0.0000021351,0.0000021331,0.0000021312,0.0000021295,0.0000021280, +0.0000021270,0.0000021267,0.0000021280,0.0000021320,0.0000021386, +0.0000021466,0.0000021549,0.0000021622,0.0000021675,0.0000021700, +0.0000021709,0.0000021714,0.0000021714,0.0000021697,0.0000021657, +0.0000021608,0.0000021559,0.0000021525,0.0000021505,0.0000021489, +0.0000021468,0.0000021434,0.0000021395,0.0000021341,0.0000021285, +0.0000021235,0.0000021200,0.0000021185,0.0000021184,0.0000021193, +0.0000021219,0.0000021265,0.0000021330,0.0000021399,0.0000021462, +0.0000021530,0.0000021615,0.0000021700,0.0000021753,0.0000021774, +0.0000021773,0.0000021763,0.0000021747,0.0000021730,0.0000021721, +0.0000021723,0.0000021745,0.0000021776,0.0000021781,0.0000021770, +0.0000021765,0.0000021762,0.0000021758,0.0000021712,0.0000021617, +0.0000021579,0.0000021608,0.0000021627,0.0000021618,0.0000021610, +0.0000021603,0.0000021578,0.0000021536,0.0000021485,0.0000021436, +0.0000021405,0.0000021404,0.0000021432,0.0000021473,0.0000021506, +0.0000021525,0.0000021540,0.0000021559,0.0000021566,0.0000021523, +0.0000021432,0.0000021381,0.0000021377,0.0000021355,0.0000021310, +0.0000021308,0.0000021390,0.0000021497,0.0000021559,0.0000021589, +0.0000021624,0.0000021658,0.0000021685,0.0000021711,0.0000021745, +0.0000021787,0.0000021829,0.0000021861,0.0000021882,0.0000021899, +0.0000021914,0.0000021920,0.0000021912,0.0000021894,0.0000021875, +0.0000021865,0.0000021865,0.0000021883,0.0000021921,0.0000021967, +0.0000022005,0.0000022033,0.0000022053,0.0000022058,0.0000022038, +0.0000021985,0.0000021905,0.0000021810,0.0000021712,0.0000021626, +0.0000021567,0.0000021543,0.0000021542,0.0000021542,0.0000021530, +0.0000021488,0.0000021416,0.0000021343,0.0000021301,0.0000021294, +0.0000021304,0.0000021318,0.0000021339,0.0000021368,0.0000021378, +0.0000021308,0.0000021159,0.0000021032,0.0000020980,0.0000021010, +0.0000021245,0.0000021612,0.0000021874,0.0000022010,0.0000022085, +0.0000022131,0.0000022185,0.0000022246,0.0000022281,0.0000022288, +0.0000022278,0.0000022233,0.0000022162,0.0000022094,0.0000022045, +0.0000022021,0.0000022022,0.0000022049,0.0000022099,0.0000022159, +0.0000022217,0.0000022266,0.0000022296,0.0000022305,0.0000022304, +0.0000022299,0.0000022271,0.0000022165,0.0000021962,0.0000021738, +0.0000021594,0.0000021560,0.0000021564,0.0000021542,0.0000021487, +0.0000021500,0.0000021635,0.0000021831,0.0000021977,0.0000022067, +0.0000022173,0.0000022308,0.0000022407,0.0000022432,0.0000022418, +0.0000022367,0.0000022282,0.0000022194,0.0000022144,0.0000022136, +0.0000022219,0.0000022231,0.0000022042,0.0000021783,0.0000021711, +0.0000021817,0.0000021957,0.0000022124,0.0000022393,0.0000022627, +0.0000022677,0.0000022633,0.0000022585,0.0000022586,0.0000022632, +0.0000022716,0.0000022805,0.0000022850,0.0000022840,0.0000022824, +0.0000022849,0.0000022897,0.0000022917,0.0000022923,0.0000022971, +0.0000023052,0.0000023100,0.0000023099,0.0000023088,0.0000023083, +0.0000023074,0.0000023048,0.0000023021,0.0000023014,0.0000023030, +0.0000023056,0.0000023068,0.0000023059,0.0000023028,0.0000022992, +0.0000022963,0.0000022940,0.0000022920,0.0000022902,0.0000022885, +0.0000022867,0.0000022845,0.0000022821,0.0000022805,0.0000022807, +0.0000022830,0.0000022868,0.0000022914,0.0000022957,0.0000022993, +0.0000023027,0.0000023071,0.0000023122,0.0000023162,0.0000023192, +0.0000023221,0.0000023256,0.0000023291,0.0000023322,0.0000023354, +0.0000023391,0.0000023421,0.0000023433,0.0000023429,0.0000023416, +0.0000023388,0.0000023347,0.0000023338,0.0000023364,0.0000023388, +0.0000023396,0.0000023412,0.0000023424,0.0000023406,0.0000023356, +0.0000023308,0.0000023277,0.0000023255,0.0000023230,0.0000023210, +0.0000023195,0.0000023184,0.0000023175,0.0000023172,0.0000023177, +0.0000023176,0.0000023165,0.0000023150,0.0000023149,0.0000023161, +0.0000023177,0.0000023197,0.0000023214,0.0000023226,0.0000023232, +0.0000023232,0.0000023234,0.0000023243,0.0000023247,0.0000023238, +0.0000023222,0.0000023214,0.0000023207,0.0000023193,0.0000023175, +0.0000023174,0.0000023181,0.0000023172,0.0000023147,0.0000023118, +0.0000023094,0.0000023072,0.0000023035,0.0000022991,0.0000022958, +0.0000022934,0.0000022918,0.0000022905,0.0000022894,0.0000022885, +0.0000022874,0.0000022859,0.0000022845,0.0000022831,0.0000022803, +0.0000022775,0.0000022746,0.0000022709,0.0000022679,0.0000022657, +0.0000022646,0.0000022642,0.0000022649,0.0000022668,0.0000022701, +0.0000022736,0.0000022769,0.0000022812,0.0000022875,0.0000022947, +0.0000023020,0.0000023090,0.0000023155,0.0000023211,0.0000023264, +0.0000023301,0.0000023313,0.0000023305,0.0000023280,0.0000023249, +0.0000023223,0.0000023213,0.0000023222,0.0000023245,0.0000023273, +0.0000023294,0.0000023298,0.0000023294,0.0000023289,0.0000023283, +0.0000023287,0.0000023304,0.0000023351,0.0000023432,0.0000023535, +0.0000023630,0.0000023670,0.0000023668,0.0000023627,0.0000023576, +0.0000023538,0.0000023520,0.0000023510,0.0000023490,0.0000023449, +0.0000023383,0.0000023301,0.0000023216,0.0000023147,0.0000023111, +0.0000023094,0.0000023101,0.0000023121,0.0000023149,0.0000023177, +0.0000023202,0.0000023224,0.0000023240,0.0000023244,0.0000023241, +0.0000023235,0.0000023230,0.0000023227,0.0000023225,0.0000023226, +0.0000023229,0.0000023237,0.0000023248,0.0000023257,0.0000023260, +0.0000023251,0.0000023226,0.0000023184,0.0000023133,0.0000023082, +0.0000023033,0.0000022987,0.0000022941,0.0000022899,0.0000022859, +0.0000022826,0.0000022805,0.0000022785,0.0000022769,0.0000022752, +0.0000022730,0.0000022703,0.0000022675,0.0000022649,0.0000022629, +0.0000022612,0.0000022600,0.0000022597,0.0000022602,0.0000022612, +0.0000022622,0.0000022627,0.0000022623,0.0000022611,0.0000022601, +0.0000022596,0.0000022595,0.0000022592,0.0000022582,0.0000022567, +0.0000022552,0.0000022540,0.0000022533,0.0000022533,0.0000022537, +0.0000022545,0.0000022554,0.0000022563,0.0000022573,0.0000022582, +0.0000022588,0.0000022590,0.0000022588,0.0000022581,0.0000022573, +0.0000022571,0.0000022575,0.0000022582,0.0000022590,0.0000022611, +0.0000022640,0.0000022673,0.0000022700,0.0000022722,0.0000022739, +0.0000022753,0.0000022764,0.0000022774,0.0000022788,0.0000022801, +0.0000022811,0.0000022822,0.0000022842,0.0000022874,0.0000022911, +0.0000022962,0.0000023019,0.0000023081,0.0000023147,0.0000023205, +0.0000023251,0.0000023287,0.0000023311,0.0000023321,0.0000023320, +0.0000023312,0.0000023301,0.0000023291,0.0000023286,0.0000023285, +0.0000023286,0.0000023289,0.0000023291,0.0000023290,0.0000023284, +0.0000023269,0.0000023254,0.0000023239,0.0000023223,0.0000023202, +0.0000023180,0.0000023156,0.0000023136,0.0000023118,0.0000023105, +0.0000023097,0.0000023094,0.0000023095,0.0000023104,0.0000023113, +0.0000023123,0.0000023132,0.0000023144,0.0000023154,0.0000023162, +0.0000023170,0.0000023173,0.0000023173,0.0000023171,0.0000023168, +0.0000023162,0.0000023149,0.0000023127,0.0000023100,0.0000023072, +0.0000023047,0.0000023024,0.0000023006,0.0000022985,0.0000022962, +0.0000022942,0.0000022929,0.0000022920,0.0000022915,0.0000022923, +0.0000022928,0.0000022925,0.0000022910,0.0000022885,0.0000022851, +0.0000022813,0.0000022776,0.0000022762,0.0000022772,0.0000022782, +0.0000022787,0.0000022783,0.0000022770,0.0000022754,0.0000022730, +0.0000022698,0.0000022663,0.0000022616,0.0000022569,0.0000022515, +0.0000022467,0.0000022420,0.0000022374,0.0000022336,0.0000022320, +0.0000022320,0.0000022331,0.0000022347,0.0000022386,0.0000022433, +0.0000022494,0.0000022575,0.0000022659,0.0000022722,0.0000022754, +0.0000022762,0.0000022753,0.0000022748,0.0000022760,0.0000022786, +0.0000022822,0.0000022862,0.0000022901,0.0000022940,0.0000022987, +0.0000023048,0.0000023117,0.0000023181,0.0000023238,0.0000023287, +0.0000023322,0.0000023347,0.0000023365,0.0000023369,0.0000023355, +0.0000023327,0.0000023294,0.0000023250,0.0000023202,0.0000023154, +0.0000023123,0.0000023102,0.0000023091,0.0000023091,0.0000023105, +0.0000023149,0.0000023200,0.0000023238,0.0000023245,0.0000023231, +0.0000023189,0.0000023125,0.0000023065,0.0000023026,0.0000022990, +0.0000022931,0.0000022889,0.0000022913,0.0000022964,0.0000022940, +0.0000022883,0.0000022859,0.0000022809,0.0000022730,0.0000022685, +0.0000022681,0.0000022695,0.0000022768,0.0000022879,0.0000022964, +0.0000023103,0.0000023356,0.0000023541,0.0000023551,0.0000023548, +0.0000023427,0.0000023224,0.0000023163,0.0000023124,0.0000023079, +0.0000023025,0.0000023004,0.0000023007,0.0000023057,0.0000023144, +0.0000023243,0.0000023311,0.0000023333,0.0000023324,0.0000023315, +0.0000023298,0.0000023273,0.0000023238,0.0000023232,0.0000023257, +0.0000023283,0.0000023300,0.0000023312,0.0000023321,0.0000023297, +0.0000023222,0.0000023091,0.0000022964,0.0000022879,0.0000022816, +0.0000022777,0.0000022779,0.0000022823,0.0000022883,0.0000022889, +0.0000022836,0.0000022790,0.0000022776,0.0000022803,0.0000022872, +0.0000022928,0.0000022945,0.0000022924,0.0000022844,0.0000022779, +0.0000022779,0.0000022775,0.0000022720,0.0000022680,0.0000022635, +0.0000022432,0.0000022212,0.0000022216,0.0000022376,0.0000022552, +0.0000022623,0.0000022628,0.0000022605,0.0000022423,0.0000022132, +0.0000022021,0.0000022134,0.0000022334,0.0000022483,0.0000022562, +0.0000022610,0.0000022691,0.0000022810,0.0000022902,0.0000022916, +0.0000022866,0.0000022804,0.0000022778,0.0000022764,0.0000022717, +0.0000022649,0.0000022642,0.0000022744,0.0000022853,0.0000022865, +0.0000022773,0.0000022625,0.0000022501,0.0000022380,0.0000022280, +0.0000022269,0.0000022277,0.0000022277,0.0000022299,0.0000022318, +0.0000022311,0.0000022287,0.0000022237,0.0000022177,0.0000022155, +0.0000022216,0.0000022356,0.0000022484,0.0000022596,0.0000022693, +0.0000022758,0.0000022778,0.0000022777,0.0000022773,0.0000022754, +0.0000022746,0.0000022772,0.0000022802,0.0000022807,0.0000022806, +0.0000022827,0.0000022851,0.0000022849,0.0000022832,0.0000022828, +0.0000022853,0.0000022892,0.0000022925,0.0000022957,0.0000022993, +0.0000023030,0.0000023067,0.0000023099,0.0000023134,0.0000023172, +0.0000023200,0.0000023214,0.0000023217,0.0000023210,0.0000023196, +0.0000023174,0.0000023143,0.0000023108,0.0000023082,0.0000023074, +0.0000023082,0.0000023108,0.0000023149,0.0000023193,0.0000023228, +0.0000023257,0.0000023282,0.0000023305,0.0000023312,0.0000023312, +0.0000023314,0.0000023317,0.0000023313,0.0000023307,0.0000023289, +0.0000023247,0.0000023184,0.0000023104,0.0000023010,0.0000022920, +0.0000022844,0.0000022787,0.0000022774,0.0000022830,0.0000022924, +0.0000023015,0.0000023093,0.0000023163,0.0000023228,0.0000023290, +0.0000023358,0.0000023413,0.0000023430,0.0000023415,0.0000023391, +0.0000023375,0.0000023367,0.0000023374,0.0000023401,0.0000023430, +0.0000023447,0.0000023453,0.0000023453,0.0000023444,0.0000023424, +0.0000023396,0.0000023379,0.0000023377,0.0000023402,0.0000023443, +0.0000023516,0.0000023613,0.0000023721,0.0000023847,0.0000023942, +0.0000023967,0.0000023955,0.0000023951,0.0000023985,0.0000024033, +0.0000024093,0.0000024159,0.0000024142,0.0000024041,0.0000023978, +0.0000023919,0.0000023866,0.0000023840,0.0000023842,0.0000023861, +0.0000023881,0.0000023904,0.0000023933,0.0000023962,0.0000023983, +0.0000024003,0.0000024021,0.0000024029,0.0000024023,0.0000024010, +0.0000023996,0.0000023984,0.0000023974,0.0000023964,0.0000023950, +0.0000023925,0.0000023892,0.0000023857,0.0000023822,0.0000023787, +0.0000023748,0.0000023707,0.0000023667,0.0000023637,0.0000023615, +0.0000023596,0.0000023573,0.0000023543,0.0000023514,0.0000023491, +0.0000023474,0.0000023462,0.0000023448,0.0000023435,0.0000023426, +0.0000023424,0.0000023423,0.0000023420,0.0000023410,0.0000023386, +0.0000023350,0.0000023307,0.0000023267,0.0000023238,0.0000023221, +0.0000023211,0.0000023201,0.0000023183,0.0000023157,0.0000023128, +0.0000023101,0.0000023075,0.0000023050,0.0000023029,0.0000023011, +0.0000022996,0.0000022981,0.0000022965,0.0000022950,0.0000022936, +0.0000022920,0.0000022900,0.0000022875,0.0000022852,0.0000022833, +0.0000022812,0.0000022785,0.0000022752,0.0000022717,0.0000022684, +0.0000022662,0.0000022667,0.0000022695,0.0000022738,0.0000022783, +0.0000022826,0.0000022865,0.0000022903,0.0000022940,0.0000022973, +0.0000023003,0.0000023023,0.0000023033,0.0000023032,0.0000023021, +0.0000023001,0.0000022986,0.0000022977,0.0000022971,0.0000022967, +0.0000022962,0.0000022959,0.0000022960,0.0000022966,0.0000022968, +0.0000022963,0.0000022951,0.0000022933,0.0000022912,0.0000022891, +0.0000022875,0.0000022869,0.0000022872,0.0000022880,0.0000022890, +0.0000022903,0.0000022922,0.0000022947,0.0000022977,0.0000023011, +0.0000023051,0.0000023098,0.0000023153,0.0000023216,0.0000023278, +0.0000023331,0.0000023374,0.0000023409,0.0000023444,0.0000023478, +0.0000023507,0.0000023528,0.0000023545,0.0000023564,0.0000023582, +0.0000023589,0.0000023585,0.0000023577,0.0000023563,0.0000023542, +0.0000023515,0.0000023487,0.0000023452,0.0000023432,0.0000023436, +0.0000023466,0.0000023507,0.0000023499,0.0000023382,0.0000023143, +0.0000022991,0.0000022980,0.0000023019,0.0000023135,0.0000023343, +0.0000023505,0.0000023551,0.0000023501,0.0000023370,0.0000023353, +0.0000023482,0.0000023607,0.0000023671,0.0000023676,0.0000023606, +0.0000023487,0.0000023354,0.0000023218,0.0000023083,0.0000022984, +0.0000022945,0.0000022936,0.0000022943,0.0000022984,0.0000023084, +0.0000023221,0.0000023330,0.0000023375,0.0000023367,0.0000023340, +0.0000023304,0.0000023270,0.0000023248,0.0000023242,0.0000023241, +0.0000023237,0.0000023230,0.0000023223,0.0000023218,0.0000023221, +0.0000023231,0.0000023249,0.0000023267,0.0000023270,0.0000023237, +0.0000023135,0.0000022946,0.0000022677,0.0000022387,0.0000022147, +0.0000021984,0.0000021885,0.0000021842,0.0000021850,0.0000021932, +0.0000022111,0.0000022365,0.0000022625,0.0000022827,0.0000022950, +0.0000022996,0.0000023024,0.0000023039,0.0000023039,0.0000023025, +0.0000022979,0.0000022875,0.0000022724,0.0000022560,0.0000022391, +0.0000022254,0.0000022205,0.0000022188,0.0000022101,0.0000021967, +0.0000021846,0.0000021720,0.0000021599,0.0000021550,0.0000021546, +0.0000021523,0.0000021456,0.0000021389,0.0000021356,0.0000021359, +0.0000021419,0.0000021575,0.0000021812,0.0000022047,0.0000022228, +0.0000022366,0.0000022473,0.0000022565,0.0000022652,0.0000022716, +0.0000022738,0.0000022725,0.0000022661,0.0000022560,0.0000022466, +0.0000022410,0.0000022367,0.0000022302,0.0000022223,0.0000022156, +0.0000022092,0.0000022004,0.0000021891,0.0000021769,0.0000021649, +0.0000021532,0.0000021434,0.0000021376,0.0000021364,0.0000021390, +0.0000021443,0.0000021475,0.0000021471,0.0000021474,0.0000021529, +0.0000021611,0.0000021680,0.0000021737,0.0000021782,0.0000021810, +0.0000021836,0.0000021873,0.0000021922,0.0000021974,0.0000022014, +0.0000022030,0.0000022016,0.0000021969,0.0000021899,0.0000021801, +0.0000021686,0.0000021575,0.0000021475,0.0000021388,0.0000021321, +0.0000021284,0.0000021273,0.0000021278,0.0000021294,0.0000021319, +0.0000021348,0.0000021382,0.0000021416,0.0000021442,0.0000021459, +0.0000021467,0.0000021474,0.0000021483,0.0000021505,0.0000021544, +0.0000021592,0.0000021635,0.0000021659,0.0000021669,0.0000021664, +0.0000021656,0.0000021642,0.0000021617,0.0000021568,0.0000021477, +0.0000021343,0.0000021177,0.0000020998,0.0000020858,0.0000020801, +0.0000020821,0.0000020859,0.0000020882,0.0000020931,0.0000021079, +0.0000021322,0.0000021547,0.0000021659,0.0000021693,0.0000021755, +0.0000021891,0.0000022046,0.0000022129,0.0000022125,0.0000022108, +0.0000022115,0.0000022168,0.0000022280,0.0000022448,0.0000022637, +0.0000022817,0.0000022989,0.0000023154,0.0000023293,0.0000023381, +0.0000023433,0.0000023507,0.0000023649,0.0000023834,0.0000023978, +0.0000024043,0.0000024095,0.0000024237,0.0000024477,0.0000024712, +0.0000024850,0.0000024885,0.0000024874,0.0000024865,0.0000024879, +0.0000024907,0.0000024902,0.0000024804,0.0000024617,0.0000024454, +0.0000024360,0.0000024289,0.0000024235,0.0000024238,0.0000024332, +0.0000024490,0.0000024647,0.0000024771,0.0000024831,0.0000024805, +0.0000024685,0.0000024540,0.0000024411,0.0000024298,0.0000024231, +0.0000024209,0.0000024188,0.0000024136,0.0000024059,0.0000023995, +0.0000023965,0.0000023954,0.0000023941,0.0000023909,0.0000023865, +0.0000023820,0.0000023796,0.0000023799,0.0000023818,0.0000023841, +0.0000023860,0.0000023874,0.0000023877,0.0000023870,0.0000023855, +0.0000023840,0.0000023823,0.0000023795,0.0000023757,0.0000023721, +0.0000023698,0.0000023695,0.0000023713,0.0000023757,0.0000023808, +0.0000023855,0.0000023892,0.0000023910,0.0000023915,0.0000023910, +0.0000023891,0.0000023859,0.0000023819,0.0000023778,0.0000023744, +0.0000023710,0.0000023670,0.0000023625,0.0000023569,0.0000023494, +0.0000023399,0.0000023295,0.0000023206,0.0000023147,0.0000023114, +0.0000023090,0.0000023067,0.0000023041,0.0000023017,0.0000022999, +0.0000022989,0.0000022989,0.0000023000,0.0000023034,0.0000023076, +0.0000023133,0.0000023181,0.0000023244,0.0000023326,0.0000023429, +0.0000023545,0.0000023667,0.0000023776,0.0000023862,0.0000023918, +0.0000023943,0.0000023946,0.0000023930,0.0000023884,0.0000023807, +0.0000023705,0.0000023583,0.0000023457,0.0000023344,0.0000023239, +0.0000023142,0.0000023057,0.0000022988,0.0000022932,0.0000022881, +0.0000022833,0.0000022785,0.0000022738,0.0000022697,0.0000022675, +0.0000022680,0.0000022718,0.0000022765,0.0000022815,0.0000022867, +0.0000022914,0.0000022950,0.0000022968,0.0000022965,0.0000022936, +0.0000022879,0.0000022806,0.0000022741,0.0000022705,0.0000022704, +0.0000022716,0.0000022670,0.0000022527,0.0000022304,0.0000022115, +0.0000022032,0.0000022003,0.0000021971,0.0000021925,0.0000021876, +0.0000021846,0.0000021826,0.0000021800,0.0000021738,0.0000021652, +0.0000021579,0.0000021553,0.0000021522,0.0000021499,0.0000021483, +0.0000021487,0.0000021490,0.0000021495,0.0000021512,0.0000021557, +0.0000021582,0.0000021570,0.0000021555,0.0000021540,0.0000021529, +0.0000021536,0.0000021567,0.0000021598,0.0000021630,0.0000021658, +0.0000021678,0.0000021689,0.0000021692,0.0000021686,0.0000021674, +0.0000021658,0.0000021639,0.0000021610,0.0000021575,0.0000021537, +0.0000021506,0.0000021487,0.0000021459,0.0000021417,0.0000021371, +0.0000021335,0.0000021308,0.0000021294,0.0000021277,0.0000021254, +0.0000021219,0.0000021182,0.0000021153,0.0000021125,0.0000021098, +0.0000021075,0.0000021057,0.0000021044,0.0000021041,0.0000021040, +0.0000021044,0.0000021053,0.0000021067,0.0000021088,0.0000021121, +0.0000021163,0.0000021196,0.0000021214,0.0000021223,0.0000021223, +0.0000021217,0.0000021213,0.0000021213,0.0000021211,0.0000021212, +0.0000021217,0.0000021226,0.0000021239,0.0000021253,0.0000021256, +0.0000021253,0.0000021250,0.0000021249,0.0000021258,0.0000021273, +0.0000021281,0.0000021279,0.0000021272,0.0000021260,0.0000021242, +0.0000021227,0.0000021218,0.0000021208,0.0000021194,0.0000021179, +0.0000021163,0.0000021146,0.0000021139,0.0000021143,0.0000021173, +0.0000021231,0.0000021315,0.0000021416,0.0000021520,0.0000021603, +0.0000021654,0.0000021676,0.0000021689,0.0000021695,0.0000021685, +0.0000021655,0.0000021606,0.0000021549,0.0000021498,0.0000021456, +0.0000021432,0.0000021418,0.0000021406,0.0000021383,0.0000021342, +0.0000021283,0.0000021216,0.0000021162,0.0000021131,0.0000021135, +0.0000021159,0.0000021185,0.0000021214,0.0000021264,0.0000021332, +0.0000021391,0.0000021444,0.0000021517,0.0000021604,0.0000021671, +0.0000021692,0.0000021685,0.0000021666,0.0000021643,0.0000021618, +0.0000021602,0.0000021608,0.0000021653,0.0000021708,0.0000021730, +0.0000021738,0.0000021744,0.0000021745,0.0000021723,0.0000021641, +0.0000021571,0.0000021581,0.0000021616,0.0000021617,0.0000021601, +0.0000021590,0.0000021569,0.0000021528,0.0000021474,0.0000021413, +0.0000021358,0.0000021330,0.0000021336,0.0000021372,0.0000021416, +0.0000021450,0.0000021472,0.0000021496,0.0000021525,0.0000021540, +0.0000021509,0.0000021424,0.0000021363,0.0000021356,0.0000021340, +0.0000021289,0.0000021272,0.0000021333,0.0000021440,0.0000021508, +0.0000021539,0.0000021567,0.0000021594,0.0000021615,0.0000021639, +0.0000021672,0.0000021713,0.0000021757,0.0000021794,0.0000021819, +0.0000021837,0.0000021849,0.0000021849,0.0000021839,0.0000021826, +0.0000021815,0.0000021807,0.0000021805,0.0000021821,0.0000021858, +0.0000021900,0.0000021934,0.0000021959,0.0000021979,0.0000021986, +0.0000021975,0.0000021941,0.0000021882,0.0000021799,0.0000021704, +0.0000021609,0.0000021533,0.0000021490,0.0000021482,0.0000021490, +0.0000021505,0.0000021502,0.0000021468,0.0000021414,0.0000021367, +0.0000021339,0.0000021322,0.0000021313,0.0000021315,0.0000021337, +0.0000021372,0.0000021365,0.0000021249,0.0000021085,0.0000020980, +0.0000020961,0.0000021097,0.0000021441,0.0000021763,0.0000021941, +0.0000022033,0.0000022088,0.0000022140,0.0000022204,0.0000022248, +0.0000022256,0.0000022243,0.0000022200,0.0000022137,0.0000022075, +0.0000022027,0.0000022008,0.0000022014,0.0000022043,0.0000022089, +0.0000022145,0.0000022205,0.0000022260,0.0000022296,0.0000022307, +0.0000022306,0.0000022290,0.0000022215,0.0000022038,0.0000021804, +0.0000021615,0.0000021535,0.0000021532,0.0000021524,0.0000021485, +0.0000021474,0.0000021569,0.0000021760,0.0000021933,0.0000022040, +0.0000022131,0.0000022244,0.0000022352,0.0000022412,0.0000022425, +0.0000022407,0.0000022337,0.0000022232,0.0000022141,0.0000022109, +0.0000022115,0.0000022198,0.0000022125,0.0000021878,0.0000021708, +0.0000021750,0.0000021872,0.0000022006,0.0000022242,0.0000022526, +0.0000022656,0.0000022618,0.0000022563,0.0000022559,0.0000022588, +0.0000022650,0.0000022738,0.0000022811,0.0000022830,0.0000022814, +0.0000022810,0.0000022852,0.0000022900,0.0000022912,0.0000022915, +0.0000022961,0.0000023043,0.0000023099,0.0000023104,0.0000023090, +0.0000023084,0.0000023085,0.0000023092,0.0000023096,0.0000023095, +0.0000023098,0.0000023111,0.0000023121,0.0000023116,0.0000023090, +0.0000023054,0.0000023024,0.0000023003,0.0000022983,0.0000022958, +0.0000022935,0.0000022914,0.0000022892,0.0000022866,0.0000022844, +0.0000022838,0.0000022847,0.0000022874,0.0000022912,0.0000022954, +0.0000022989,0.0000023017,0.0000023050,0.0000023093,0.0000023139, +0.0000023177,0.0000023209,0.0000023239,0.0000023268,0.0000023291, +0.0000023310,0.0000023333,0.0000023357,0.0000023372,0.0000023364, +0.0000023344,0.0000023329,0.0000023303,0.0000023289,0.0000023308, +0.0000023338,0.0000023348,0.0000023361,0.0000023383,0.0000023385, +0.0000023347,0.0000023296,0.0000023260,0.0000023243,0.0000023222, +0.0000023195,0.0000023173,0.0000023157,0.0000023152,0.0000023152, +0.0000023150,0.0000023141,0.0000023126,0.0000023107,0.0000023104, +0.0000023115,0.0000023128,0.0000023145,0.0000023161,0.0000023166, +0.0000023163,0.0000023158,0.0000023146,0.0000023132,0.0000023124, +0.0000023115,0.0000023094,0.0000023070,0.0000023053,0.0000023042, +0.0000023029,0.0000023027,0.0000023039,0.0000023050,0.0000023052, +0.0000023049,0.0000023047,0.0000023054,0.0000023063,0.0000023053, +0.0000023026,0.0000022986,0.0000022947,0.0000022913,0.0000022881, +0.0000022853,0.0000022831,0.0000022825,0.0000022831,0.0000022837, +0.0000022842,0.0000022840,0.0000022838,0.0000022836,0.0000022816, +0.0000022796,0.0000022783,0.0000022771,0.0000022759,0.0000022754, +0.0000022759,0.0000022770,0.0000022784,0.0000022792,0.0000022799, +0.0000022811,0.0000022838,0.0000022865,0.0000022895,0.0000022945, +0.0000023015,0.0000023104,0.0000023191,0.0000023251,0.0000023280, +0.0000023278,0.0000023259,0.0000023227,0.0000023205,0.0000023191, +0.0000023195,0.0000023214,0.0000023247,0.0000023275,0.0000023287, +0.0000023289,0.0000023281,0.0000023271,0.0000023265,0.0000023273, +0.0000023308,0.0000023378,0.0000023480,0.0000023584,0.0000023655, +0.0000023664,0.0000023638,0.0000023588,0.0000023539,0.0000023502, +0.0000023478,0.0000023455,0.0000023423,0.0000023372,0.0000023300, +0.0000023214,0.0000023134,0.0000023083,0.0000023065,0.0000023073, +0.0000023096,0.0000023130,0.0000023169,0.0000023203,0.0000023230, +0.0000023244,0.0000023248,0.0000023246,0.0000023241,0.0000023235, +0.0000023227,0.0000023218,0.0000023215,0.0000023221,0.0000023237, +0.0000023258,0.0000023268,0.0000023274,0.0000023269,0.0000023246, +0.0000023209,0.0000023166,0.0000023117,0.0000023065,0.0000023012, +0.0000022961,0.0000022910,0.0000022865,0.0000022829,0.0000022801, +0.0000022778,0.0000022757,0.0000022732,0.0000022700,0.0000022666, +0.0000022633,0.0000022605,0.0000022582,0.0000022561,0.0000022544, +0.0000022536,0.0000022536,0.0000022538,0.0000022538,0.0000022534, +0.0000022527,0.0000022516,0.0000022502,0.0000022482,0.0000022458, +0.0000022429,0.0000022404,0.0000022387,0.0000022379,0.0000022380, +0.0000022392,0.0000022412,0.0000022434,0.0000022457,0.0000022477, +0.0000022493,0.0000022509,0.0000022516,0.0000022519,0.0000022516, +0.0000022511,0.0000022501,0.0000022490,0.0000022486,0.0000022488, +0.0000022493,0.0000022508,0.0000022532,0.0000022559,0.0000022583, +0.0000022601,0.0000022615,0.0000022625,0.0000022633,0.0000022644, +0.0000022660,0.0000022676,0.0000022690,0.0000022703,0.0000022721, +0.0000022747,0.0000022778,0.0000022817,0.0000022859,0.0000022905, +0.0000022957,0.0000023007,0.0000023051,0.0000023092,0.0000023132, +0.0000023168,0.0000023200,0.0000023226,0.0000023247,0.0000023259, +0.0000023261,0.0000023256,0.0000023244,0.0000023232,0.0000023228, +0.0000023231,0.0000023237,0.0000023239,0.0000023236,0.0000023233, +0.0000023227,0.0000023218,0.0000023200,0.0000023194,0.0000023185, +0.0000023180,0.0000023177,0.0000023173,0.0000023171,0.0000023171, +0.0000023177,0.0000023184,0.0000023191,0.0000023194,0.0000023194, +0.0000023192,0.0000023191,0.0000023189,0.0000023184,0.0000023174, +0.0000023164,0.0000023159,0.0000023151,0.0000023145,0.0000023126, +0.0000023103,0.0000023074,0.0000023040,0.0000023013,0.0000022983, +0.0000022955,0.0000022929,0.0000022902,0.0000022879,0.0000022869, +0.0000022881,0.0000022910,0.0000022934,0.0000022944,0.0000022939, +0.0000022927,0.0000022901,0.0000022870,0.0000022843,0.0000022833, +0.0000022846,0.0000022867,0.0000022882,0.0000022888,0.0000022881, +0.0000022858,0.0000022834,0.0000022810,0.0000022783,0.0000022757, +0.0000022721,0.0000022681,0.0000022647,0.0000022609,0.0000022553, +0.0000022494,0.0000022444,0.0000022399,0.0000022367,0.0000022345, +0.0000022341,0.0000022347,0.0000022357,0.0000022391,0.0000022459, +0.0000022537,0.0000022621,0.0000022694,0.0000022733,0.0000022736, +0.0000022714,0.0000022679,0.0000022646,0.0000022622,0.0000022608, +0.0000022610,0.0000022636,0.0000022691,0.0000022758,0.0000022826, +0.0000022892,0.0000022952,0.0000023001,0.0000023039,0.0000023071, +0.0000023091,0.0000023090,0.0000023071,0.0000023043,0.0000023004, +0.0000022958,0.0000022910,0.0000022872,0.0000022853,0.0000022846, +0.0000022849,0.0000022864,0.0000022913,0.0000022995,0.0000023086, +0.0000023179,0.0000023234,0.0000023231,0.0000023176,0.0000023104, +0.0000023060,0.0000023042,0.0000022984,0.0000022896,0.0000022882, +0.0000022940,0.0000022944,0.0000022894,0.0000022873,0.0000022835, +0.0000022755,0.0000022704,0.0000022696,0.0000022695,0.0000022727, +0.0000022833,0.0000022937,0.0000023026,0.0000023234,0.0000023480, +0.0000023545,0.0000023549,0.0000023500,0.0000023287,0.0000023171, +0.0000023141,0.0000023117,0.0000023060,0.0000023014,0.0000022988, +0.0000023013,0.0000023100,0.0000023214,0.0000023287,0.0000023294, +0.0000023271,0.0000023252,0.0000023224,0.0000023202,0.0000023190, +0.0000023209,0.0000023250,0.0000023275,0.0000023287,0.0000023295, +0.0000023297,0.0000023259,0.0000023164,0.0000023030,0.0000022907, +0.0000022822,0.0000022775,0.0000022761,0.0000022784,0.0000022833, +0.0000022858,0.0000022854,0.0000022824,0.0000022809,0.0000022817, +0.0000022842,0.0000022894,0.0000022944,0.0000022973,0.0000022967, +0.0000022889,0.0000022798,0.0000022789,0.0000022798,0.0000022749, +0.0000022700,0.0000022656,0.0000022454,0.0000022222,0.0000022218, +0.0000022378,0.0000022545,0.0000022601,0.0000022604,0.0000022567, +0.0000022342,0.0000022047,0.0000021999,0.0000022162,0.0000022351, +0.0000022477,0.0000022550,0.0000022604,0.0000022695,0.0000022806, +0.0000022875,0.0000022881,0.0000022833,0.0000022785,0.0000022769, +0.0000022750,0.0000022686,0.0000022608,0.0000022603,0.0000022706, +0.0000022817,0.0000022834,0.0000022746,0.0000022586,0.0000022446, +0.0000022325,0.0000022244,0.0000022245,0.0000022277,0.0000022302, +0.0000022331,0.0000022336,0.0000022319,0.0000022301,0.0000022256, +0.0000022190,0.0000022161,0.0000022205,0.0000022331,0.0000022466, +0.0000022590,0.0000022702,0.0000022773,0.0000022795,0.0000022794, +0.0000022789,0.0000022764,0.0000022746,0.0000022763,0.0000022799, +0.0000022814,0.0000022815,0.0000022829,0.0000022853,0.0000022856, +0.0000022838,0.0000022823,0.0000022833,0.0000022872,0.0000022908, +0.0000022938,0.0000022976,0.0000023020,0.0000023060,0.0000023092, +0.0000023124,0.0000023161,0.0000023198,0.0000023229,0.0000023247, +0.0000023255,0.0000023253,0.0000023239,0.0000023213,0.0000023171, +0.0000023120,0.0000023087,0.0000023081,0.0000023084,0.0000023093, +0.0000023116,0.0000023154,0.0000023200,0.0000023247,0.0000023285, +0.0000023312,0.0000023326,0.0000023334,0.0000023345,0.0000023356, +0.0000023357,0.0000023346,0.0000023315,0.0000023267,0.0000023204, +0.0000023122,0.0000023039,0.0000022971,0.0000022913,0.0000022869, +0.0000022864,0.0000022915,0.0000022988,0.0000023059,0.0000023124, +0.0000023194,0.0000023271,0.0000023349,0.0000023411,0.0000023433, +0.0000023424,0.0000023382,0.0000023331,0.0000023302,0.0000023295, +0.0000023306,0.0000023346,0.0000023387,0.0000023416,0.0000023431, +0.0000023430,0.0000023407,0.0000023370,0.0000023337,0.0000023324, +0.0000023334,0.0000023367,0.0000023421,0.0000023502,0.0000023595, +0.0000023702,0.0000023822,0.0000023911,0.0000023932,0.0000023925, +0.0000023929,0.0000023967,0.0000024006,0.0000024068,0.0000024138, +0.0000024119,0.0000024023,0.0000023970,0.0000023919,0.0000023868, +0.0000023845,0.0000023839,0.0000023847,0.0000023871,0.0000023893, +0.0000023917,0.0000023940,0.0000023958,0.0000023978,0.0000024001, +0.0000024020,0.0000024032,0.0000024034,0.0000024026,0.0000024009, +0.0000023987,0.0000023967,0.0000023946,0.0000023917,0.0000023881, +0.0000023843,0.0000023811,0.0000023782,0.0000023750,0.0000023714, +0.0000023679,0.0000023649,0.0000023623,0.0000023601,0.0000023578, +0.0000023557,0.0000023534,0.0000023509,0.0000023487,0.0000023468, +0.0000023453,0.0000023436,0.0000023423,0.0000023408,0.0000023390, +0.0000023368,0.0000023339,0.0000023299,0.0000023257,0.0000023220, +0.0000023194,0.0000023177,0.0000023167,0.0000023159,0.0000023144, +0.0000023119,0.0000023088,0.0000023055,0.0000023024,0.0000022996, +0.0000022973,0.0000022953,0.0000022936,0.0000022923,0.0000022911, +0.0000022898,0.0000022885,0.0000022873,0.0000022859,0.0000022835, +0.0000022803,0.0000022768,0.0000022736,0.0000022704,0.0000022667, +0.0000022627,0.0000022586,0.0000022547,0.0000022521,0.0000022519, +0.0000022530,0.0000022555,0.0000022587,0.0000022620,0.0000022651, +0.0000022683,0.0000022713,0.0000022739,0.0000022760,0.0000022773, +0.0000022778,0.0000022775,0.0000022762,0.0000022734,0.0000022705, +0.0000022684,0.0000022668,0.0000022656,0.0000022647,0.0000022639, +0.0000022638,0.0000022642,0.0000022647,0.0000022649,0.0000022650, +0.0000022648,0.0000022642,0.0000022632,0.0000022621,0.0000022614, +0.0000022615,0.0000022623,0.0000022631,0.0000022641,0.0000022657, +0.0000022675,0.0000022695,0.0000022716,0.0000022742,0.0000022778, +0.0000022827,0.0000022895,0.0000022980,0.0000023070,0.0000023156, +0.0000023228,0.0000023286,0.0000023333,0.0000023367,0.0000023389, +0.0000023402,0.0000023417,0.0000023439,0.0000023463,0.0000023479, +0.0000023491,0.0000023499,0.0000023499,0.0000023488,0.0000023468, +0.0000023433,0.0000023401,0.0000023393,0.0000023406,0.0000023436, +0.0000023464,0.0000023451,0.0000023338,0.0000023110,0.0000022982, +0.0000022986,0.0000023018,0.0000023138,0.0000023352,0.0000023508, +0.0000023535,0.0000023446,0.0000023330,0.0000023359,0.0000023487, +0.0000023583,0.0000023623,0.0000023601,0.0000023501,0.0000023362, +0.0000023227,0.0000023101,0.0000022983,0.0000022902,0.0000022859, +0.0000022826,0.0000022800,0.0000022815,0.0000022903,0.0000023041, +0.0000023177,0.0000023275,0.0000023322,0.0000023326,0.0000023306, +0.0000023284,0.0000023270,0.0000023260,0.0000023246,0.0000023231, +0.0000023219,0.0000023209,0.0000023205,0.0000023211,0.0000023225, +0.0000023228,0.0000023186,0.0000023063,0.0000022840,0.0000022548, +0.0000022255,0.0000022020,0.0000021871,0.0000021801,0.0000021778, +0.0000021746,0.0000021709,0.0000021676,0.0000021686,0.0000021766, +0.0000021930,0.0000022168,0.0000022427,0.0000022653,0.0000022823, +0.0000022939,0.0000023011,0.0000023037,0.0000023062,0.0000023072, +0.0000023023,0.0000022887,0.0000022698,0.0000022499,0.0000022327, +0.0000022232,0.0000022205,0.0000022145,0.0000022020,0.0000021892, +0.0000021773,0.0000021656,0.0000021587,0.0000021577,0.0000021570, +0.0000021524,0.0000021450,0.0000021403,0.0000021397,0.0000021414, +0.0000021496,0.0000021686,0.0000021922,0.0000022106,0.0000022232, +0.0000022353,0.0000022482,0.0000022599,0.0000022683,0.0000022713, +0.0000022700,0.0000022624,0.0000022494,0.0000022359,0.0000022266, +0.0000022201,0.0000022125,0.0000022040,0.0000021970,0.0000021902, +0.0000021807,0.0000021689,0.0000021567,0.0000021453,0.0000021360, +0.0000021313,0.0000021307,0.0000021331,0.0000021384,0.0000021436, +0.0000021458,0.0000021476,0.0000021538,0.0000021626,0.0000021702, +0.0000021760,0.0000021798,0.0000021817,0.0000021852,0.0000021911, +0.0000021983,0.0000022046,0.0000022085,0.0000022091,0.0000022062, +0.0000021997,0.0000021899,0.0000021786,0.0000021675,0.0000021572, +0.0000021472,0.0000021381,0.0000021318,0.0000021293,0.0000021280, +0.0000021287,0.0000021301,0.0000021320,0.0000021342,0.0000021366, +0.0000021395,0.0000021426,0.0000021444,0.0000021448,0.0000021448, +0.0000021442,0.0000021432,0.0000021428,0.0000021438,0.0000021467, +0.0000021512,0.0000021565,0.0000021610,0.0000021639,0.0000021651, +0.0000021652,0.0000021647,0.0000021628,0.0000021581,0.0000021489, +0.0000021343,0.0000021156,0.0000020971,0.0000020853,0.0000020826, +0.0000020849,0.0000020880,0.0000020904,0.0000020963,0.0000021126, +0.0000021362,0.0000021553,0.0000021633,0.0000021665,0.0000021740, +0.0000021880,0.0000022008,0.0000022056,0.0000022056,0.0000022062, +0.0000022103,0.0000022185,0.0000022322,0.0000022503,0.0000022693, +0.0000022874,0.0000023053,0.0000023226,0.0000023363,0.0000023434, +0.0000023462,0.0000023515,0.0000023644,0.0000023815,0.0000023943, +0.0000024003,0.0000024078,0.0000024258,0.0000024517,0.0000024740, +0.0000024844,0.0000024853,0.0000024835,0.0000024830,0.0000024859, +0.0000024899,0.0000024880,0.0000024736,0.0000024540,0.0000024393, +0.0000024303,0.0000024228,0.0000024186,0.0000024221,0.0000024351, +0.0000024524,0.0000024678,0.0000024785,0.0000024814,0.0000024748, +0.0000024619,0.0000024485,0.0000024361,0.0000024262,0.0000024211, +0.0000024194,0.0000024175,0.0000024136,0.0000024088,0.0000024050, +0.0000024027,0.0000024008,0.0000023972,0.0000023918,0.0000023863, +0.0000023832,0.0000023833,0.0000023858,0.0000023892,0.0000023920, +0.0000023941,0.0000023946,0.0000023940,0.0000023929,0.0000023920, +0.0000023910,0.0000023890,0.0000023859,0.0000023827,0.0000023806, +0.0000023799,0.0000023808,0.0000023835,0.0000023871,0.0000023908, +0.0000023939,0.0000023954,0.0000023957,0.0000023953,0.0000023941, +0.0000023922,0.0000023894,0.0000023863,0.0000023840,0.0000023827, +0.0000023813,0.0000023792,0.0000023753,0.0000023691,0.0000023609, +0.0000023513,0.0000023424,0.0000023355,0.0000023300,0.0000023249, +0.0000023197,0.0000023146,0.0000023107,0.0000023086,0.0000023076, +0.0000023071,0.0000023074,0.0000023090,0.0000023120,0.0000023152, +0.0000023183,0.0000023210,0.0000023242,0.0000023277,0.0000023333, +0.0000023399,0.0000023479,0.0000023562,0.0000023633,0.0000023674, +0.0000023686,0.0000023678,0.0000023641,0.0000023576,0.0000023490, +0.0000023386,0.0000023278,0.0000023182,0.0000023099,0.0000023031, +0.0000022977,0.0000022936,0.0000022902,0.0000022867,0.0000022826, +0.0000022775,0.0000022720,0.0000022668,0.0000022631,0.0000022625, +0.0000022649,0.0000022700,0.0000022755,0.0000022810,0.0000022858, +0.0000022889,0.0000022905,0.0000022907,0.0000022893,0.0000022857, +0.0000022800,0.0000022735,0.0000022682,0.0000022675,0.0000022708, +0.0000022736,0.0000022752,0.0000022667,0.0000022466,0.0000022230, +0.0000022069,0.0000022000,0.0000021964,0.0000021918,0.0000021863, +0.0000021831,0.0000021833,0.0000021834,0.0000021799,0.0000021725, +0.0000021629,0.0000021544,0.0000021496,0.0000021452,0.0000021422, +0.0000021406,0.0000021400,0.0000021411,0.0000021457,0.0000021529, +0.0000021592,0.0000021640,0.0000021688,0.0000021694,0.0000021684, +0.0000021668,0.0000021657,0.0000021652,0.0000021647,0.0000021653, +0.0000021647,0.0000021640,0.0000021629,0.0000021610,0.0000021590, +0.0000021568,0.0000021541,0.0000021509,0.0000021476,0.0000021444, +0.0000021429,0.0000021418,0.0000021395,0.0000021365,0.0000021344, +0.0000021330,0.0000021328,0.0000021328,0.0000021318,0.0000021295, +0.0000021269,0.0000021244,0.0000021218,0.0000021191,0.0000021166, +0.0000021144,0.0000021126,0.0000021115,0.0000021111,0.0000021112, +0.0000021115,0.0000021121,0.0000021126,0.0000021136,0.0000021162, +0.0000021191,0.0000021210,0.0000021219,0.0000021222,0.0000021215, +0.0000021208,0.0000021205,0.0000021203,0.0000021202,0.0000021207, +0.0000021219,0.0000021234,0.0000021248,0.0000021259,0.0000021261, +0.0000021259,0.0000021250,0.0000021250,0.0000021254,0.0000021255, +0.0000021249,0.0000021234,0.0000021212,0.0000021190,0.0000021172, +0.0000021169,0.0000021168,0.0000021161,0.0000021152,0.0000021140, +0.0000021120,0.0000021103,0.0000021090,0.0000021084,0.0000021094, +0.0000021129,0.0000021191,0.0000021282,0.0000021392,0.0000021497, +0.0000021571,0.0000021616,0.0000021643,0.0000021658,0.0000021658, +0.0000021636,0.0000021596,0.0000021541,0.0000021476,0.0000021416, +0.0000021369,0.0000021346,0.0000021339,0.0000021334,0.0000021318, +0.0000021279,0.0000021214,0.0000021145,0.0000021106,0.0000021104, +0.0000021133,0.0000021166,0.0000021189,0.0000021227,0.0000021285, +0.0000021343,0.0000021397,0.0000021464,0.0000021548,0.0000021612, +0.0000021628,0.0000021615,0.0000021587,0.0000021556,0.0000021525, +0.0000021506,0.0000021519,0.0000021587,0.0000021661,0.0000021699, +0.0000021721,0.0000021732,0.0000021727,0.0000021667,0.0000021577, +0.0000021556,0.0000021588,0.0000021609,0.0000021599,0.0000021581, +0.0000021558,0.0000021519,0.0000021467,0.0000021407,0.0000021342, +0.0000021290,0.0000021273,0.0000021284,0.0000021319,0.0000021361, +0.0000021396,0.0000021425,0.0000021458,0.0000021495,0.0000021516, +0.0000021495,0.0000021412,0.0000021344,0.0000021335,0.0000021324, +0.0000021273,0.0000021238,0.0000021282,0.0000021387,0.0000021467, +0.0000021502,0.0000021517,0.0000021528,0.0000021536,0.0000021550, +0.0000021573,0.0000021605,0.0000021645,0.0000021686,0.0000021719, +0.0000021745,0.0000021762,0.0000021766,0.0000021760,0.0000021752, +0.0000021748,0.0000021748,0.0000021753,0.0000021771,0.0000021805, +0.0000021844,0.0000021873,0.0000021893,0.0000021909,0.0000021918, +0.0000021912,0.0000021888,0.0000021845,0.0000021778,0.0000021691, +0.0000021599,0.0000021516,0.0000021458,0.0000021435,0.0000021436, +0.0000021451,0.0000021467,0.0000021464,0.0000021448,0.0000021426, +0.0000021406,0.0000021376,0.0000021334,0.0000021304,0.0000021303, +0.0000021337,0.0000021369,0.0000021319,0.0000021157,0.0000021005, +0.0000020944,0.0000020989,0.0000021248,0.0000021612,0.0000021853, +0.0000021970,0.0000022040,0.0000022096,0.0000022158,0.0000022210, +0.0000022222,0.0000022207,0.0000022167,0.0000022115,0.0000022061, +0.0000022018,0.0000022004,0.0000022010,0.0000022036,0.0000022077, +0.0000022133,0.0000022193,0.0000022248,0.0000022286,0.0000022302, +0.0000022300,0.0000022262,0.0000022133,0.0000021912,0.0000021685, +0.0000021545,0.0000021502,0.0000021499,0.0000021478,0.0000021459, +0.0000021502,0.0000021663,0.0000021855,0.0000021989,0.0000022081, +0.0000022172,0.0000022269,0.0000022351,0.0000022400,0.0000022413, +0.0000022385,0.0000022301,0.0000022184,0.0000022085,0.0000022056, +0.0000022082,0.0000022122,0.0000022002,0.0000021767,0.0000021693, +0.0000021785,0.0000021896,0.0000022065,0.0000022354,0.0000022582, +0.0000022606,0.0000022537,0.0000022525,0.0000022553,0.0000022606, +0.0000022675,0.0000022749,0.0000022792,0.0000022798,0.0000022792, +0.0000022815,0.0000022873,0.0000022918,0.0000022922,0.0000022920, +0.0000022958,0.0000023030,0.0000023090,0.0000023103,0.0000023092, +0.0000023080,0.0000023079,0.0000023093,0.0000023115,0.0000023137, +0.0000023155,0.0000023169,0.0000023170,0.0000023160,0.0000023136, +0.0000023104,0.0000023074,0.0000023054,0.0000023034,0.0000023009, +0.0000022982,0.0000022960,0.0000022941,0.0000022920,0.0000022898, +0.0000022883,0.0000022883,0.0000022896,0.0000022920,0.0000022949, +0.0000022980,0.0000023010,0.0000023040,0.0000023073,0.0000023113, +0.0000023150,0.0000023180,0.0000023207,0.0000023235,0.0000023255, +0.0000023262,0.0000023260,0.0000023261,0.0000023267,0.0000023262, +0.0000023242,0.0000023236,0.0000023232,0.0000023223,0.0000023231, +0.0000023259,0.0000023278,0.0000023290,0.0000023311,0.0000023320, +0.0000023302,0.0000023255,0.0000023208,0.0000023180,0.0000023163, +0.0000023147,0.0000023129,0.0000023112,0.0000023107,0.0000023118, +0.0000023126,0.0000023117,0.0000023099,0.0000023080,0.0000023069, +0.0000023073,0.0000023082,0.0000023093,0.0000023100,0.0000023094, +0.0000023072,0.0000023046,0.0000023020,0.0000022985,0.0000022951, +0.0000022929,0.0000022910,0.0000022885,0.0000022858,0.0000022838, +0.0000022830,0.0000022836,0.0000022850,0.0000022864,0.0000022882, +0.0000022901,0.0000022913,0.0000022929,0.0000022966,0.0000023019, +0.0000023046,0.0000023037,0.0000023017,0.0000022982,0.0000022940, +0.0000022884,0.0000022825,0.0000022784,0.0000022768,0.0000022768, +0.0000022781,0.0000022802,0.0000022820,0.0000022832,0.0000022830, +0.0000022825,0.0000022830,0.0000022835,0.0000022834,0.0000022828, +0.0000022836,0.0000022856,0.0000022879,0.0000022898,0.0000022906, +0.0000022906,0.0000022901,0.0000022890,0.0000022883,0.0000022881, +0.0000022880,0.0000022900,0.0000022943,0.0000022996,0.0000023059, +0.0000023124,0.0000023176,0.0000023203,0.0000023206,0.0000023201, +0.0000023189,0.0000023175,0.0000023179,0.0000023199,0.0000023235, +0.0000023267,0.0000023282,0.0000023279,0.0000023265,0.0000023250, +0.0000023238,0.0000023241,0.0000023268,0.0000023328,0.0000023413, +0.0000023507,0.0000023585,0.0000023625,0.0000023618,0.0000023588, +0.0000023544,0.0000023497,0.0000023456,0.0000023424,0.0000023395, +0.0000023358,0.0000023301,0.0000023223,0.0000023145,0.0000023083, +0.0000023065,0.0000023061,0.0000023079,0.0000023113,0.0000023150, +0.0000023183,0.0000023211,0.0000023230,0.0000023241,0.0000023241, +0.0000023239,0.0000023230,0.0000023218,0.0000023209,0.0000023207, +0.0000023216,0.0000023230,0.0000023244,0.0000023254,0.0000023260, +0.0000023247,0.0000023227,0.0000023195,0.0000023153,0.0000023105, +0.0000023053,0.0000023000,0.0000022946,0.0000022896,0.0000022853, +0.0000022815,0.0000022781,0.0000022754,0.0000022725,0.0000022690, +0.0000022654,0.0000022620,0.0000022595,0.0000022577,0.0000022559, +0.0000022542,0.0000022529,0.0000022519,0.0000022510,0.0000022493, +0.0000022468,0.0000022441,0.0000022410,0.0000022376,0.0000022347, +0.0000022323,0.0000022310,0.0000022306,0.0000022312,0.0000022336, +0.0000022360,0.0000022402,0.0000022443,0.0000022483,0.0000022519, +0.0000022545,0.0000022562,0.0000022569,0.0000022565,0.0000022553, +0.0000022535,0.0000022510,0.0000022490,0.0000022463,0.0000022443, +0.0000022433,0.0000022429,0.0000022441,0.0000022465,0.0000022496, +0.0000022526,0.0000022549,0.0000022563,0.0000022570,0.0000022572, +0.0000022575,0.0000022582,0.0000022592,0.0000022605,0.0000022618, +0.0000022632,0.0000022653,0.0000022677,0.0000022709,0.0000022745, +0.0000022782,0.0000022824,0.0000022867,0.0000022901,0.0000022927, +0.0000022950,0.0000022974,0.0000022996,0.0000023023,0.0000023058, +0.0000023099,0.0000023140,0.0000023177,0.0000023198,0.0000023202, +0.0000023196,0.0000023185,0.0000023174,0.0000023164,0.0000023158, +0.0000023156,0.0000023154,0.0000023148,0.0000023143,0.0000023143, +0.0000023147,0.0000023163,0.0000023174,0.0000023179,0.0000023186, +0.0000023189,0.0000023197,0.0000023207,0.0000023216,0.0000023219, +0.0000023216,0.0000023209,0.0000023202,0.0000023195,0.0000023188, +0.0000023175,0.0000023159,0.0000023146,0.0000023133,0.0000023119, +0.0000023101,0.0000023076,0.0000023046,0.0000023013,0.0000022980, +0.0000022948,0.0000022922,0.0000022900,0.0000022877,0.0000022850, +0.0000022840,0.0000022861,0.0000022899,0.0000022941,0.0000022972, +0.0000022984,0.0000022987,0.0000022979,0.0000022953,0.0000022931, +0.0000022924,0.0000022930,0.0000022948,0.0000022966,0.0000022979, +0.0000022977,0.0000022956,0.0000022923,0.0000022890,0.0000022863, +0.0000022834,0.0000022808,0.0000022788,0.0000022774,0.0000022763, +0.0000022747,0.0000022717,0.0000022677,0.0000022625,0.0000022568, +0.0000022505,0.0000022445,0.0000022403,0.0000022377,0.0000022372, +0.0000022397,0.0000022426,0.0000022455,0.0000022504,0.0000022565, +0.0000022616,0.0000022640,0.0000022636,0.0000022612,0.0000022572, +0.0000022526,0.0000022486,0.0000022475,0.0000022496,0.0000022542, +0.0000022589,0.0000022640,0.0000022690,0.0000022737,0.0000022787, +0.0000022834,0.0000022871,0.0000022890,0.0000022892,0.0000022884, +0.0000022865,0.0000022834,0.0000022800,0.0000022770,0.0000022753, +0.0000022744,0.0000022739,0.0000022741,0.0000022772,0.0000022838, +0.0000022920,0.0000023028,0.0000023145,0.0000023225,0.0000023226, +0.0000023159,0.0000023097,0.0000023073,0.0000023026,0.0000022913, +0.0000022851,0.0000022900,0.0000022918,0.0000022889,0.0000022879, +0.0000022853,0.0000022777,0.0000022718,0.0000022712,0.0000022711, +0.0000022713,0.0000022792,0.0000022907,0.0000022979,0.0000023134, +0.0000023385,0.0000023529,0.0000023535,0.0000023532,0.0000023364, +0.0000023182,0.0000023151,0.0000023140,0.0000023103,0.0000023039, +0.0000022992,0.0000022981,0.0000023046,0.0000023169,0.0000023263, +0.0000023266,0.0000023227,0.0000023189,0.0000023147,0.0000023128, +0.0000023133,0.0000023175,0.0000023231,0.0000023259,0.0000023263, +0.0000023261,0.0000023249,0.0000023203,0.0000023097,0.0000022970, +0.0000022874,0.0000022810,0.0000022770,0.0000022762,0.0000022785, +0.0000022823,0.0000022835,0.0000022840,0.0000022840,0.0000022854, +0.0000022870,0.0000022881,0.0000022909,0.0000022950,0.0000022987, +0.0000022995,0.0000022944,0.0000022836,0.0000022798,0.0000022811, +0.0000022771,0.0000022712,0.0000022663,0.0000022466,0.0000022227, +0.0000022219,0.0000022374,0.0000022525,0.0000022569,0.0000022573, +0.0000022520,0.0000022262,0.0000021979,0.0000021983,0.0000022174, +0.0000022352,0.0000022461,0.0000022535,0.0000022603,0.0000022701, +0.0000022797,0.0000022842,0.0000022836,0.0000022797,0.0000022763, +0.0000022748,0.0000022721,0.0000022644,0.0000022557,0.0000022557, +0.0000022665,0.0000022778,0.0000022801,0.0000022725,0.0000022567, +0.0000022415,0.0000022279,0.0000022199,0.0000022213,0.0000022260, +0.0000022311,0.0000022358,0.0000022355,0.0000022324,0.0000022308, +0.0000022278,0.0000022214,0.0000022177,0.0000022198,0.0000022301, +0.0000022436,0.0000022568,0.0000022696,0.0000022778,0.0000022800, +0.0000022802,0.0000022798,0.0000022777,0.0000022752,0.0000022756, +0.0000022787,0.0000022809,0.0000022815,0.0000022825,0.0000022846, +0.0000022856,0.0000022844,0.0000022824,0.0000022824,0.0000022858, +0.0000022902,0.0000022940,0.0000022985,0.0000023036,0.0000023076, +0.0000023106,0.0000023136,0.0000023170,0.0000023207,0.0000023250, +0.0000023289,0.0000023307,0.0000023310,0.0000023301,0.0000023282, +0.0000023251,0.0000023200,0.0000023145,0.0000023113,0.0000023105, +0.0000023098,0.0000023089,0.0000023091,0.0000023115,0.0000023159, +0.0000023212,0.0000023257,0.0000023294,0.0000023324,0.0000023344, +0.0000023362,0.0000023383,0.0000023397,0.0000023390,0.0000023362, +0.0000023314,0.0000023249,0.0000023170,0.0000023092,0.0000023027, +0.0000022976,0.0000022939,0.0000022941,0.0000022984,0.0000023049, +0.0000023119,0.0000023189,0.0000023263,0.0000023338,0.0000023395, +0.0000023421,0.0000023417,0.0000023384,0.0000023326,0.0000023267, +0.0000023231,0.0000023226,0.0000023241,0.0000023290,0.0000023340, +0.0000023383,0.0000023405,0.0000023402,0.0000023367,0.0000023317, +0.0000023278,0.0000023266,0.0000023291,0.0000023340,0.0000023411, +0.0000023497,0.0000023585,0.0000023684,0.0000023802,0.0000023882, +0.0000023898,0.0000023895,0.0000023906,0.0000023939,0.0000023971, +0.0000024039,0.0000024115,0.0000024101,0.0000024012,0.0000023962, +0.0000023915,0.0000023870,0.0000023856,0.0000023843,0.0000023841, +0.0000023856,0.0000023876,0.0000023896,0.0000023918,0.0000023939, +0.0000023959,0.0000023979,0.0000023997,0.0000024013,0.0000024022, +0.0000024024,0.0000024014,0.0000023993,0.0000023966,0.0000023938, +0.0000023908,0.0000023874,0.0000023842,0.0000023812,0.0000023784, +0.0000023755,0.0000023727,0.0000023699,0.0000023670,0.0000023642, +0.0000023618,0.0000023602,0.0000023586,0.0000023564,0.0000023537, +0.0000023505,0.0000023482,0.0000023455,0.0000023424,0.0000023391, +0.0000023357,0.0000023324,0.0000023292,0.0000023258,0.0000023223, +0.0000023192,0.0000023166,0.0000023140,0.0000023118,0.0000023100, +0.0000023083,0.0000023062,0.0000023035,0.0000023007,0.0000022980, +0.0000022955,0.0000022932,0.0000022909,0.0000022892,0.0000022879, +0.0000022868,0.0000022862,0.0000022855,0.0000022846,0.0000022833, +0.0000022818,0.0000022796,0.0000022766,0.0000022730,0.0000022688, +0.0000022643,0.0000022596,0.0000022546,0.0000022496,0.0000022453, +0.0000022427,0.0000022425,0.0000022431,0.0000022444,0.0000022467, +0.0000022491,0.0000022512,0.0000022531,0.0000022546,0.0000022559, +0.0000022569,0.0000022572,0.0000022567,0.0000022560,0.0000022548, +0.0000022522,0.0000022489,0.0000022462,0.0000022446,0.0000022434, +0.0000022428,0.0000022425,0.0000022423,0.0000022423,0.0000022425, +0.0000022428,0.0000022436,0.0000022449,0.0000022457,0.0000022459, +0.0000022458,0.0000022457,0.0000022459,0.0000022468,0.0000022479, +0.0000022489,0.0000022503,0.0000022519,0.0000022534,0.0000022547, +0.0000022557,0.0000022569,0.0000022590,0.0000022622,0.0000022670, +0.0000022741,0.0000022834,0.0000022937,0.0000023042,0.0000023139, +0.0000023216,0.0000023262,0.0000023279,0.0000023282,0.0000023288, +0.0000023305,0.0000023326,0.0000023345,0.0000023364,0.0000023381, +0.0000023387,0.0000023386,0.0000023363,0.0000023331,0.0000023315, +0.0000023324,0.0000023354,0.0000023382,0.0000023406,0.0000023401, +0.0000023272,0.0000023065,0.0000022980,0.0000022984,0.0000023014, +0.0000023149,0.0000023373,0.0000023514,0.0000023510,0.0000023392, +0.0000023313,0.0000023360,0.0000023475,0.0000023544,0.0000023557, +0.0000023503,0.0000023377,0.0000023231,0.0000023115,0.0000023014, +0.0000022924,0.0000022861,0.0000022806,0.0000022751,0.0000022703, +0.0000022693,0.0000022734,0.0000022833,0.0000022962,0.0000023084, +0.0000023172,0.0000023220,0.0000023239,0.0000023243,0.0000023242, +0.0000023235,0.0000023223,0.0000023209,0.0000023193,0.0000023176, +0.0000023159,0.0000023131,0.0000023064,0.0000022925,0.0000022699, +0.0000022421,0.0000022168,0.0000022002,0.0000021923,0.0000021893, +0.0000021903,0.0000021921,0.0000021916,0.0000021886,0.0000021840, +0.0000021776,0.0000021711,0.0000021690,0.0000021711,0.0000021803, +0.0000021956,0.0000022145,0.0000022341,0.0000022516,0.0000022663, +0.0000022804,0.0000022957,0.0000023072,0.0000023113,0.0000023051, +0.0000022866,0.0000022629,0.0000022411,0.0000022272,0.0000022224, +0.0000022184,0.0000022076,0.0000021940,0.0000021826,0.0000021721, +0.0000021639,0.0000021614,0.0000021611,0.0000021586,0.0000021519, +0.0000021461,0.0000021451,0.0000021450,0.0000021476,0.0000021593, +0.0000021809,0.0000022007,0.0000022116,0.0000022204,0.0000022337, +0.0000022487,0.0000022602,0.0000022644,0.0000022625,0.0000022525, +0.0000022362,0.0000022198,0.0000022081,0.0000022000,0.0000021921, +0.0000021843,0.0000021782,0.0000021722,0.0000021631,0.0000021522, +0.0000021418,0.0000021328,0.0000021273,0.0000021267,0.0000021289, +0.0000021329,0.0000021374,0.0000021409,0.0000021443,0.0000021518, +0.0000021622,0.0000021709,0.0000021770,0.0000021810,0.0000021829, +0.0000021858,0.0000021927,0.0000022015,0.0000022089,0.0000022122, +0.0000022118,0.0000022076,0.0000021991,0.0000021879,0.0000021760, +0.0000021652,0.0000021558,0.0000021470,0.0000021395,0.0000021347, +0.0000021321,0.0000021319,0.0000021329,0.0000021346,0.0000021366, +0.0000021385,0.0000021398,0.0000021411,0.0000021426,0.0000021441, +0.0000021447,0.0000021445,0.0000021438,0.0000021429,0.0000021418, +0.0000021412,0.0000021406,0.0000021400,0.0000021413,0.0000021456, +0.0000021515,0.0000021573,0.0000021617,0.0000021645,0.0000021652, +0.0000021653,0.0000021635,0.0000021588,0.0000021488,0.0000021323, +0.0000021122,0.0000020950,0.0000020860,0.0000020851,0.0000020878, +0.0000020905,0.0000020922,0.0000020986,0.0000021150,0.0000021371, +0.0000021536,0.0000021605,0.0000021645,0.0000021732,0.0000021859, +0.0000021959,0.0000021996,0.0000022010,0.0000022047,0.0000022114, +0.0000022216,0.0000022366,0.0000022551,0.0000022739,0.0000022924, +0.0000023112,0.0000023289,0.0000023415,0.0000023462,0.0000023466, +0.0000023505,0.0000023623,0.0000023781,0.0000023896,0.0000023964, +0.0000024074,0.0000024291,0.0000024559,0.0000024757,0.0000024828, +0.0000024820,0.0000024799,0.0000024804,0.0000024851,0.0000024888, +0.0000024826,0.0000024656,0.0000024461,0.0000024321,0.0000024232, +0.0000024172,0.0000024166,0.0000024240,0.0000024395,0.0000024565, +0.0000024709,0.0000024785,0.0000024782,0.0000024694,0.0000024561, +0.0000024427,0.0000024303,0.0000024217,0.0000024180,0.0000024171, +0.0000024157,0.0000024149,0.0000024128,0.0000024105,0.0000024085, +0.0000024053,0.0000024000,0.0000023940,0.0000023902,0.0000023897, +0.0000023916,0.0000023947,0.0000023973,0.0000023992,0.0000023997, +0.0000023990,0.0000023980,0.0000023970,0.0000023957,0.0000023940, +0.0000023914,0.0000023884,0.0000023861,0.0000023851,0.0000023855, +0.0000023879,0.0000023914,0.0000023955,0.0000023990,0.0000024009, +0.0000024014,0.0000024008,0.0000023996,0.0000023980,0.0000023960, +0.0000023936,0.0000023916,0.0000023909,0.0000023911,0.0000023909, +0.0000023890,0.0000023848,0.0000023784,0.0000023714,0.0000023647, +0.0000023589,0.0000023537,0.0000023481,0.0000023418,0.0000023354, +0.0000023298,0.0000023253,0.0000023219,0.0000023189,0.0000023168, +0.0000023162,0.0000023173,0.0000023195,0.0000023219,0.0000023243, +0.0000023261,0.0000023277,0.0000023300,0.0000023310,0.0000023333, +0.0000023366,0.0000023404,0.0000023427,0.0000023429,0.0000023416, +0.0000023391,0.0000023350,0.0000023295,0.0000023227,0.0000023154, +0.0000023086,0.0000023028,0.0000022977,0.0000022933,0.0000022896, +0.0000022864,0.0000022829,0.0000022786,0.0000022734,0.0000022675, +0.0000022618,0.0000022571,0.0000022551,0.0000022561,0.0000022600, +0.0000022655,0.0000022722,0.0000022790,0.0000022843,0.0000022873, +0.0000022880,0.0000022873,0.0000022847,0.0000022801,0.0000022742, +0.0000022682,0.0000022661,0.0000022675,0.0000022713,0.0000022763, +0.0000022784,0.0000022750,0.0000022604,0.0000022361,0.0000022137, +0.0000022010,0.0000021959,0.0000021915,0.0000021863,0.0000021836, +0.0000021835,0.0000021845,0.0000021851,0.0000021810,0.0000021715, +0.0000021599,0.0000021496,0.0000021427,0.0000021393,0.0000021353, +0.0000021335,0.0000021337,0.0000021383,0.0000021446,0.0000021517, +0.0000021600,0.0000021673,0.0000021714,0.0000021753,0.0000021785, +0.0000021807,0.0000021815,0.0000021808,0.0000021791,0.0000021773, +0.0000021752,0.0000021724,0.0000021695,0.0000021670,0.0000021650, +0.0000021634,0.0000021618,0.0000021600,0.0000021597,0.0000021601, +0.0000021599,0.0000021595,0.0000021591,0.0000021585,0.0000021584, +0.0000021589,0.0000021585,0.0000021560,0.0000021527,0.0000021499, +0.0000021470,0.0000021441,0.0000021417,0.0000021393,0.0000021370, +0.0000021351,0.0000021334,0.0000021324,0.0000021319,0.0000021307, +0.0000021285,0.0000021265,0.0000021254,0.0000021251,0.0000021245, +0.0000021234,0.0000021226,0.0000021216,0.0000021207,0.0000021201, +0.0000021200,0.0000021196,0.0000021193,0.0000021198,0.0000021214, +0.0000021231,0.0000021244,0.0000021254,0.0000021261,0.0000021255, +0.0000021248,0.0000021249,0.0000021249,0.0000021246,0.0000021234, +0.0000021213,0.0000021188,0.0000021166,0.0000021150,0.0000021148, +0.0000021147,0.0000021147,0.0000021143,0.0000021131,0.0000021114, +0.0000021097,0.0000021080,0.0000021068,0.0000021067,0.0000021083, +0.0000021118,0.0000021183,0.0000021272,0.0000021372,0.0000021458, +0.0000021520,0.0000021564,0.0000021596,0.0000021609,0.0000021601, +0.0000021574,0.0000021526,0.0000021462,0.0000021394,0.0000021336, +0.0000021301,0.0000021284,0.0000021284,0.0000021284,0.0000021261, +0.0000021210,0.0000021145,0.0000021097,0.0000021083,0.0000021105, +0.0000021142,0.0000021177,0.0000021214,0.0000021264,0.0000021326, +0.0000021388,0.0000021457,0.0000021530,0.0000021580,0.0000021586, +0.0000021563,0.0000021524,0.0000021485,0.0000021451,0.0000021433, +0.0000021459,0.0000021549,0.0000021635,0.0000021684,0.0000021712, +0.0000021721,0.0000021695,0.0000021606,0.0000021536,0.0000021546, +0.0000021583,0.0000021591,0.0000021576,0.0000021551,0.0000021512, +0.0000021459,0.0000021404,0.0000021342,0.0000021278,0.0000021237, +0.0000021229,0.0000021239,0.0000021271,0.0000021313,0.0000021352, +0.0000021388,0.0000021429,0.0000021470,0.0000021496,0.0000021479, +0.0000021397,0.0000021326,0.0000021315,0.0000021309,0.0000021264, +0.0000021220,0.0000021241,0.0000021338,0.0000021432,0.0000021472, +0.0000021477,0.0000021466,0.0000021454,0.0000021457,0.0000021468, +0.0000021487,0.0000021514,0.0000021546,0.0000021576,0.0000021603, +0.0000021626,0.0000021640,0.0000021643,0.0000021641,0.0000021642, +0.0000021652,0.0000021674,0.0000021702,0.0000021737,0.0000021775, +0.0000021803,0.0000021818,0.0000021833,0.0000021846,0.0000021847, +0.0000021833,0.0000021802,0.0000021747,0.0000021670,0.0000021584, +0.0000021503,0.0000021444,0.0000021412,0.0000021403,0.0000021409, +0.0000021422,0.0000021430,0.0000021432,0.0000021430,0.0000021430, +0.0000021424,0.0000021391,0.0000021335,0.0000021293,0.0000021292, +0.0000021331,0.0000021344,0.0000021237,0.0000021059,0.0000020941, +0.0000020923,0.0000021073,0.0000021420,0.0000021730,0.0000021892, +0.0000021982,0.0000022050,0.0000022110,0.0000022165,0.0000022189, +0.0000022177,0.0000022142,0.0000022101,0.0000022057,0.0000022018, +0.0000022004,0.0000022010,0.0000022030,0.0000022062,0.0000022114, +0.0000022175,0.0000022229,0.0000022267,0.0000022283,0.0000022280, +0.0000022226,0.0000022065,0.0000021820,0.0000021604,0.0000021496, +0.0000021479,0.0000021475,0.0000021453,0.0000021449,0.0000021539, +0.0000021729,0.0000021908,0.0000022024,0.0000022107,0.0000022182, +0.0000022255,0.0000022327,0.0000022381,0.0000022396,0.0000022361, +0.0000022264,0.0000022135,0.0000022032,0.0000022012,0.0000022041, +0.0000022068,0.0000021898,0.0000021704,0.0000021692,0.0000021790, +0.0000021905,0.0000022125,0.0000022422,0.0000022567,0.0000022535, +0.0000022486,0.0000022505,0.0000022563,0.0000022627,0.0000022691, +0.0000022742,0.0000022765,0.0000022767,0.0000022781,0.0000022835, +0.0000022906,0.0000022943,0.0000022944,0.0000022943,0.0000022963, +0.0000023013,0.0000023064,0.0000023089,0.0000023087,0.0000023075, +0.0000023068,0.0000023074,0.0000023094,0.0000023121,0.0000023150, +0.0000023172,0.0000023183,0.0000023180,0.0000023161,0.0000023133, +0.0000023103,0.0000023078,0.0000023055,0.0000023030,0.0000023007, +0.0000022987,0.0000022971,0.0000022956,0.0000022936,0.0000022916, +0.0000022908,0.0000022909,0.0000022920,0.0000022942,0.0000022972, +0.0000023004,0.0000023035,0.0000023065,0.0000023097,0.0000023123, +0.0000023145,0.0000023167,0.0000023195,0.0000023218,0.0000023218, +0.0000023195,0.0000023163,0.0000023143,0.0000023133,0.0000023126, +0.0000023133,0.0000023145,0.0000023148,0.0000023152,0.0000023165, +0.0000023179,0.0000023193,0.0000023211,0.0000023223,0.0000023219, +0.0000023185,0.0000023137,0.0000023091,0.0000023054,0.0000023033, +0.0000023026,0.0000023017,0.0000023009,0.0000023018,0.0000023042, +0.0000023049,0.0000023033,0.0000023015,0.0000023000,0.0000022988, +0.0000022978,0.0000022975,0.0000022969,0.0000022950,0.0000022913, +0.0000022870,0.0000022831,0.0000022791,0.0000022748,0.0000022709, +0.0000022683,0.0000022668,0.0000022651,0.0000022623,0.0000022602, +0.0000022601,0.0000022612,0.0000022620,0.0000022636,0.0000022667, +0.0000022704,0.0000022741,0.0000022783,0.0000022848,0.0000022930, +0.0000022991,0.0000023017,0.0000023018,0.0000023003,0.0000022973, +0.0000022912,0.0000022832,0.0000022771,0.0000022737,0.0000022721, +0.0000022724,0.0000022745,0.0000022767,0.0000022774,0.0000022770, +0.0000022774,0.0000022790,0.0000022806,0.0000022808,0.0000022807, +0.0000022824,0.0000022855,0.0000022887,0.0000022916,0.0000022946, +0.0000022970,0.0000022981,0.0000022989,0.0000022994,0.0000022987, +0.0000022974,0.0000022965,0.0000022961,0.0000022951,0.0000022947, +0.0000022958,0.0000022978,0.0000023014,0.0000023066,0.0000023113, +0.0000023141,0.0000023157,0.0000023168,0.0000023182,0.0000023203, +0.0000023228,0.0000023252,0.0000023265,0.0000023261,0.0000023244, +0.0000023223,0.0000023210,0.0000023211,0.0000023230,0.0000023269, +0.0000023328,0.0000023401,0.0000023474,0.0000023538,0.0000023575, +0.0000023565,0.0000023539,0.0000023500,0.0000023459,0.0000023423, +0.0000023393,0.0000023358,0.0000023307,0.0000023240,0.0000023168, +0.0000023111,0.0000023078,0.0000023077,0.0000023089,0.0000023106, +0.0000023126,0.0000023148,0.0000023172,0.0000023194,0.0000023212, +0.0000023227,0.0000023228,0.0000023225,0.0000023217,0.0000023209, +0.0000023207,0.0000023208,0.0000023211,0.0000023214,0.0000023214, +0.0000023208,0.0000023192,0.0000023164,0.0000023127,0.0000023085, +0.0000023041,0.0000022997,0.0000022955,0.0000022915,0.0000022876, +0.0000022839,0.0000022805,0.0000022776,0.0000022746,0.0000022713, +0.0000022681,0.0000022652,0.0000022626,0.0000022602,0.0000022575, +0.0000022545,0.0000022518,0.0000022487,0.0000022453,0.0000022415, +0.0000022375,0.0000022342,0.0000022318,0.0000022302,0.0000022298, +0.0000022295,0.0000022310,0.0000022328,0.0000022355,0.0000022398, +0.0000022452,0.0000022507,0.0000022555,0.0000022593,0.0000022616, +0.0000022624,0.0000022617,0.0000022588,0.0000022554,0.0000022509, +0.0000022464,0.0000022420,0.0000022376,0.0000022339,0.0000022312, +0.0000022292,0.0000022281,0.0000022284,0.0000022306,0.0000022342, +0.0000022380,0.0000022413,0.0000022438,0.0000022458,0.0000022478, +0.0000022499,0.0000022519,0.0000022541,0.0000022565,0.0000022588, +0.0000022606,0.0000022621,0.0000022636,0.0000022661,0.0000022686, +0.0000022707,0.0000022734,0.0000022766,0.0000022793,0.0000022811, +0.0000022826,0.0000022844,0.0000022860,0.0000022872,0.0000022888, +0.0000022907,0.0000022930,0.0000022962,0.0000023003,0.0000023045, +0.0000023080,0.0000023106,0.0000023121,0.0000023124,0.0000023115, +0.0000023099,0.0000023081,0.0000023056,0.0000023033,0.0000023015, +0.0000023012,0.0000023024,0.0000023037,0.0000023051,0.0000023067, +0.0000023088,0.0000023110,0.0000023126,0.0000023135,0.0000023140, +0.0000023138,0.0000023133,0.0000023126,0.0000023120,0.0000023116, +0.0000023109,0.0000023099,0.0000023086,0.0000023071,0.0000023052, +0.0000023036,0.0000023019,0.0000022997,0.0000022972,0.0000022942, +0.0000022911,0.0000022890,0.0000022879,0.0000022872,0.0000022859, +0.0000022848,0.0000022864,0.0000022903,0.0000022951,0.0000022993, +0.0000023023,0.0000023037,0.0000023036,0.0000023023,0.0000023010, +0.0000023002,0.0000023005,0.0000023015,0.0000023026,0.0000023038, +0.0000023043,0.0000023036,0.0000023010,0.0000022973,0.0000022936, +0.0000022897,0.0000022860,0.0000022838,0.0000022834,0.0000022836, +0.0000022839,0.0000022824,0.0000022792,0.0000022751,0.0000022709, +0.0000022661,0.0000022604,0.0000022547,0.0000022497,0.0000022452, +0.0000022434,0.0000022435,0.0000022438,0.0000022442,0.0000022451, +0.0000022468,0.0000022486,0.0000022495,0.0000022492,0.0000022474, +0.0000022441,0.0000022398,0.0000022371,0.0000022382,0.0000022423, +0.0000022468,0.0000022513,0.0000022557,0.0000022606,0.0000022660, +0.0000022714,0.0000022762,0.0000022799,0.0000022821,0.0000022825, +0.0000022817,0.0000022797,0.0000022775,0.0000022756,0.0000022748, +0.0000022748,0.0000022739,0.0000022724,0.0000022723,0.0000022765, +0.0000022843,0.0000022931,0.0000023020,0.0000023146,0.0000023230, +0.0000023211,0.0000023140,0.0000023097,0.0000023054,0.0000022931, +0.0000022824,0.0000022849,0.0000022873,0.0000022866,0.0000022877, +0.0000022864,0.0000022792,0.0000022728,0.0000022724,0.0000022728, +0.0000022716,0.0000022764,0.0000022866,0.0000022941,0.0000023057, +0.0000023285,0.0000023488,0.0000023518,0.0000023539,0.0000023440, +0.0000023216,0.0000023157,0.0000023151,0.0000023138,0.0000023079, +0.0000023017,0.0000022971,0.0000022994,0.0000023105,0.0000023224, +0.0000023243,0.0000023197,0.0000023132,0.0000023066,0.0000023046, +0.0000023065,0.0000023125,0.0000023191,0.0000023223,0.0000023223, +0.0000023209,0.0000023185,0.0000023140,0.0000023048,0.0000022942, +0.0000022877,0.0000022827,0.0000022776,0.0000022758,0.0000022771, +0.0000022811,0.0000022830,0.0000022859,0.0000022888,0.0000022904, +0.0000022912,0.0000022908,0.0000022918,0.0000022958,0.0000023000, +0.0000023019,0.0000022993,0.0000022890,0.0000022817,0.0000022816, +0.0000022790,0.0000022724,0.0000022664,0.0000022473,0.0000022225, +0.0000022210,0.0000022361,0.0000022498,0.0000022535,0.0000022540, +0.0000022467,0.0000022186,0.0000021941,0.0000021965,0.0000022167, +0.0000022343,0.0000022447,0.0000022526,0.0000022606,0.0000022703, +0.0000022780,0.0000022809,0.0000022795,0.0000022764,0.0000022739, +0.0000022717,0.0000022677,0.0000022593,0.0000022503,0.0000022507, +0.0000022624,0.0000022744,0.0000022773,0.0000022707,0.0000022556, +0.0000022405,0.0000022257,0.0000022150,0.0000022163,0.0000022228, +0.0000022303,0.0000022369,0.0000022374,0.0000022334,0.0000022305, +0.0000022293,0.0000022248,0.0000022201,0.0000022204,0.0000022272, +0.0000022396,0.0000022533,0.0000022673,0.0000022770,0.0000022797, +0.0000022799,0.0000022799,0.0000022783,0.0000022760,0.0000022756, +0.0000022772,0.0000022793,0.0000022803,0.0000022815,0.0000022835, +0.0000022848,0.0000022847,0.0000022838,0.0000022841,0.0000022875, +0.0000022933,0.0000022989,0.0000023044,0.0000023104,0.0000023151, +0.0000023182,0.0000023212,0.0000023245,0.0000023282,0.0000023326, +0.0000023375,0.0000023405,0.0000023409,0.0000023398,0.0000023372, +0.0000023331,0.0000023279,0.0000023221,0.0000023168,0.0000023134, +0.0000023120,0.0000023107,0.0000023089,0.0000023085,0.0000023096, +0.0000023130,0.0000023174,0.0000023217,0.0000023260,0.0000023297, +0.0000023327,0.0000023354,0.0000023383,0.0000023403,0.0000023408, +0.0000023398,0.0000023363,0.0000023312,0.0000023247,0.0000023177, +0.0000023117,0.0000023069,0.0000023047,0.0000023054,0.0000023095, +0.0000023156,0.0000023224,0.0000023287,0.0000023344,0.0000023386, +0.0000023407,0.0000023401,0.0000023374,0.0000023324,0.0000023260, +0.0000023204,0.0000023165,0.0000023157,0.0000023177,0.0000023230, +0.0000023290,0.0000023347,0.0000023376,0.0000023371,0.0000023328, +0.0000023269,0.0000023227,0.0000023222,0.0000023267,0.0000023334, +0.0000023413,0.0000023496,0.0000023581,0.0000023677,0.0000023781, +0.0000023854,0.0000023866,0.0000023863,0.0000023877,0.0000023902, +0.0000023930,0.0000024006,0.0000024091,0.0000024084,0.0000024000, +0.0000023952,0.0000023916,0.0000023882,0.0000023869,0.0000023851, +0.0000023837,0.0000023842,0.0000023856,0.0000023872,0.0000023890, +0.0000023915,0.0000023940,0.0000023959,0.0000023976,0.0000023991, +0.0000024002,0.0000024006,0.0000023999,0.0000023981,0.0000023954, +0.0000023921,0.0000023888,0.0000023856,0.0000023826,0.0000023796, +0.0000023769,0.0000023744,0.0000023719,0.0000023696,0.0000023673, +0.0000023650,0.0000023632,0.0000023617,0.0000023595,0.0000023565, +0.0000023529,0.0000023490,0.0000023449,0.0000023408,0.0000023369, +0.0000023333,0.0000023297,0.0000023264,0.0000023231,0.0000023198, +0.0000023165,0.0000023130,0.0000023095,0.0000023062,0.0000023037, +0.0000023020,0.0000023006,0.0000022988,0.0000022964,0.0000022940, +0.0000022917,0.0000022894,0.0000022869,0.0000022845,0.0000022827, +0.0000022817,0.0000022810,0.0000022809,0.0000022814,0.0000022816, +0.0000022813,0.0000022807,0.0000022794,0.0000022772,0.0000022741, +0.0000022698,0.0000022648,0.0000022592,0.0000022531,0.0000022472, +0.0000022420,0.0000022390,0.0000022387,0.0000022382,0.0000022387, +0.0000022406,0.0000022429,0.0000022448,0.0000022463,0.0000022472, +0.0000022475,0.0000022470,0.0000022456,0.0000022442,0.0000022430, +0.0000022418,0.0000022402,0.0000022380,0.0000022354,0.0000022346, +0.0000022347,0.0000022351,0.0000022360,0.0000022374,0.0000022377, +0.0000022376,0.0000022378,0.0000022386,0.0000022401,0.0000022412, +0.0000022400,0.0000022390,0.0000022388,0.0000022379,0.0000022380, +0.0000022390,0.0000022396,0.0000022406,0.0000022419,0.0000022433, +0.0000022446,0.0000022456,0.0000022469,0.0000022482,0.0000022492, +0.0000022504,0.0000022526,0.0000022566,0.0000022633,0.0000022724, +0.0000022832,0.0000022954,0.0000023064,0.0000023137,0.0000023170, +0.0000023179,0.0000023181,0.0000023187,0.0000023196,0.0000023208, +0.0000023225,0.0000023237,0.0000023245,0.0000023239,0.0000023215, +0.0000023192,0.0000023190,0.0000023220,0.0000023260,0.0000023300, +0.0000023337,0.0000023325,0.0000023189,0.0000023015,0.0000022967, +0.0000022980,0.0000023009,0.0000023171,0.0000023404,0.0000023509, +0.0000023469,0.0000023342,0.0000023287,0.0000023358,0.0000023446, +0.0000023482,0.0000023469,0.0000023385,0.0000023246,0.0000023123, +0.0000023039,0.0000022964,0.0000022892,0.0000022829,0.0000022769, +0.0000022709,0.0000022646,0.0000022604,0.0000022604,0.0000022655, +0.0000022743,0.0000022845,0.0000022935,0.0000023000,0.0000023045, +0.0000023074,0.0000023090,0.0000023093,0.0000023088,0.0000023070, +0.0000023037,0.0000022980,0.0000022883,0.0000022731,0.0000022521, +0.0000022289,0.0000022105,0.0000022022,0.0000022008,0.0000022034, +0.0000022063,0.0000022069,0.0000022064,0.0000022051,0.0000022038, +0.0000022027,0.0000022009,0.0000021977,0.0000021921,0.0000021842, +0.0000021764,0.0000021741,0.0000021750,0.0000021797,0.0000021882, +0.0000021988,0.0000022117,0.0000022304,0.0000022570,0.0000022872, +0.0000023093,0.0000023136,0.0000023023,0.0000022780,0.0000022512, +0.0000022323,0.0000022242,0.0000022211,0.0000022131,0.0000021995, +0.0000021874,0.0000021780,0.0000021695,0.0000021644,0.0000021640, +0.0000021634,0.0000021584,0.0000021516,0.0000021493,0.0000021497, +0.0000021505,0.0000021558,0.0000021719,0.0000021916,0.0000022031, +0.0000022082,0.0000022172,0.0000022318,0.0000022455,0.0000022508, +0.0000022485,0.0000022371,0.0000022202,0.0000022042,0.0000021930, +0.0000021852,0.0000021780,0.0000021717,0.0000021678,0.0000021631, +0.0000021549,0.0000021453,0.0000021365,0.0000021292,0.0000021249, +0.0000021256,0.0000021291,0.0000021324,0.0000021348,0.0000021381, +0.0000021454,0.0000021574,0.0000021688,0.0000021767,0.0000021815, +0.0000021836,0.0000021857,0.0000021918,0.0000022014,0.0000022098, +0.0000022131,0.0000022120,0.0000022055,0.0000021952,0.0000021834, +0.0000021725,0.0000021630,0.0000021547,0.0000021474,0.0000021415, +0.0000021381,0.0000021370,0.0000021373,0.0000021388,0.0000021406, +0.0000021428,0.0000021450,0.0000021465,0.0000021468,0.0000021468, +0.0000021468,0.0000021466,0.0000021458,0.0000021445,0.0000021432, +0.0000021421,0.0000021416,0.0000021416,0.0000021411,0.0000021393, +0.0000021376,0.0000021382,0.0000021419,0.0000021478,0.0000021541, +0.0000021597,0.0000021639,0.0000021650,0.0000021645,0.0000021628, +0.0000021581,0.0000021472,0.0000021293,0.0000021093,0.0000020943, +0.0000020879,0.0000020882,0.0000020910,0.0000020922,0.0000020931, +0.0000020998,0.0000021159,0.0000021368,0.0000021521,0.0000021589, +0.0000021634,0.0000021717,0.0000021828,0.0000021912,0.0000021955, +0.0000021995,0.0000022052,0.0000022132,0.0000022247,0.0000022404, +0.0000022586,0.0000022773,0.0000022964,0.0000023156,0.0000023328, +0.0000023439,0.0000023465,0.0000023460,0.0000023486,0.0000023590, +0.0000023730,0.0000023839,0.0000023929,0.0000024083,0.0000024333, +0.0000024599,0.0000024764,0.0000024804,0.0000024781,0.0000024761, +0.0000024781,0.0000024835,0.0000024844,0.0000024757,0.0000024566, +0.0000024367,0.0000024244,0.0000024181,0.0000024161,0.0000024186, +0.0000024292,0.0000024449,0.0000024608,0.0000024729,0.0000024784, +0.0000024749,0.0000024635,0.0000024498,0.0000024359,0.0000024238, +0.0000024167,0.0000024141,0.0000024143,0.0000024159,0.0000024170, +0.0000024167,0.0000024154,0.0000024130,0.0000024084,0.0000024027, +0.0000023980,0.0000023962,0.0000023967,0.0000023985,0.0000024001, +0.0000024013,0.0000024019,0.0000024018,0.0000024013,0.0000024003, +0.0000023984,0.0000023965,0.0000023941,0.0000023916,0.0000023900, +0.0000023901,0.0000023918,0.0000023958,0.0000024011,0.0000024065, +0.0000024107,0.0000024127,0.0000024132,0.0000024121,0.0000024095, +0.0000024063,0.0000024039,0.0000024023,0.0000024010,0.0000023996, +0.0000023991,0.0000023995,0.0000023990,0.0000023966,0.0000023929, +0.0000023883,0.0000023835,0.0000023791,0.0000023751,0.0000023707, +0.0000023655,0.0000023600,0.0000023544,0.0000023489,0.0000023435, +0.0000023381,0.0000023328,0.0000023284,0.0000023256,0.0000023248, +0.0000023258,0.0000023276,0.0000023295,0.0000023304,0.0000023306, +0.0000023310,0.0000023310,0.0000023311,0.0000023315,0.0000023312, +0.0000023293,0.0000023263,0.0000023234,0.0000023207,0.0000023173, +0.0000023132,0.0000023084,0.0000023040,0.0000022996,0.0000022950, +0.0000022900,0.0000022847,0.0000022797,0.0000022753,0.0000022711, +0.0000022670,0.0000022627,0.0000022584,0.0000022538,0.0000022506, +0.0000022501,0.0000022519,0.0000022557,0.0000022606,0.0000022665, +0.0000022732,0.0000022789,0.0000022826,0.0000022845,0.0000022841, +0.0000022821,0.0000022776,0.0000022725,0.0000022691,0.0000022675, +0.0000022683,0.0000022715,0.0000022757,0.0000022789,0.0000022793, +0.0000022702,0.0000022492,0.0000022241,0.0000022053,0.0000021957, +0.0000021912,0.0000021880,0.0000021850,0.0000021843,0.0000021859, +0.0000021877,0.0000021868,0.0000021812,0.0000021712,0.0000021592, +0.0000021477,0.0000021388,0.0000021336,0.0000021313,0.0000021295, +0.0000021310,0.0000021342,0.0000021399,0.0000021483,0.0000021559, +0.0000021620,0.0000021683,0.0000021756,0.0000021821,0.0000021848, +0.0000021878,0.0000021897,0.0000021904,0.0000021898,0.0000021883, +0.0000021868,0.0000021860,0.0000021853,0.0000021844,0.0000021829, +0.0000021815,0.0000021803,0.0000021786,0.0000021768,0.0000021752, +0.0000021726,0.0000021698,0.0000021682,0.0000021672,0.0000021647, +0.0000021613,0.0000021585,0.0000021558,0.0000021535,0.0000021521, +0.0000021508,0.0000021494,0.0000021483,0.0000021477,0.0000021477, +0.0000021480,0.0000021490,0.0000021501,0.0000021483,0.0000021459, +0.0000021434,0.0000021398,0.0000021349,0.0000021296,0.0000021246, +0.0000021202,0.0000021181,0.0000021178,0.0000021185,0.0000021190, +0.0000021187,0.0000021188,0.0000021197,0.0000021214,0.0000021231, +0.0000021246,0.0000021250,0.0000021241,0.0000021237,0.0000021241, +0.0000021240,0.0000021233,0.0000021217,0.0000021198,0.0000021179, +0.0000021160,0.0000021148,0.0000021147,0.0000021151,0.0000021155, +0.0000021152,0.0000021143,0.0000021128,0.0000021107,0.0000021083, +0.0000021067,0.0000021064,0.0000021064,0.0000021080,0.0000021118, +0.0000021181,0.0000021261,0.0000021337,0.0000021401,0.0000021456, +0.0000021502,0.0000021531,0.0000021538,0.0000021527,0.0000021496, +0.0000021446,0.0000021391,0.0000021339,0.0000021296,0.0000021269, +0.0000021258,0.0000021250,0.0000021232,0.0000021195,0.0000021146, +0.0000021101,0.0000021075,0.0000021079,0.0000021118,0.0000021165, +0.0000021207,0.0000021263,0.0000021336,0.0000021411,0.0000021479, +0.0000021536,0.0000021562,0.0000021556,0.0000021521,0.0000021473, +0.0000021428,0.0000021393,0.0000021382,0.0000021428,0.0000021533, +0.0000021624,0.0000021676,0.0000021705,0.0000021709,0.0000021653, +0.0000021554,0.0000021513,0.0000021536,0.0000021564,0.0000021564, +0.0000021545,0.0000021510,0.0000021456,0.0000021398,0.0000021344, +0.0000021282,0.0000021226,0.0000021197,0.0000021193,0.0000021205, +0.0000021236,0.0000021280,0.0000021324,0.0000021367,0.0000021410, +0.0000021451,0.0000021475,0.0000021457,0.0000021377,0.0000021311, +0.0000021301,0.0000021299,0.0000021261,0.0000021209,0.0000021212, +0.0000021290,0.0000021391,0.0000021442,0.0000021443,0.0000021411, +0.0000021378,0.0000021369,0.0000021375,0.0000021384,0.0000021397, +0.0000021416,0.0000021433,0.0000021449,0.0000021466,0.0000021479, +0.0000021483,0.0000021480,0.0000021481,0.0000021497,0.0000021531, +0.0000021570,0.0000021610,0.0000021650,0.0000021681,0.0000021698, +0.0000021714,0.0000021735,0.0000021749,0.0000021750,0.0000021735, +0.0000021696,0.0000021632,0.0000021553,0.0000021479,0.0000021425, +0.0000021397,0.0000021390,0.0000021392,0.0000021398,0.0000021400, +0.0000021398,0.0000021399,0.0000021410,0.0000021422,0.0000021425, +0.0000021391,0.0000021325,0.0000021273,0.0000021277,0.0000021316, +0.0000021292,0.0000021141,0.0000020971,0.0000020899,0.0000020944, +0.0000021195,0.0000021555,0.0000021795,0.0000021913,0.0000021993, +0.0000022059,0.0000022119,0.0000022159,0.0000022159,0.0000022129, +0.0000022092,0.0000022057,0.0000022022,0.0000022006,0.0000022010, +0.0000022028,0.0000022053,0.0000022094,0.0000022149,0.0000022200, +0.0000022233,0.0000022247,0.0000022246,0.0000022194,0.0000022029, +0.0000021778,0.0000021563,0.0000021471,0.0000021466,0.0000021466, +0.0000021451,0.0000021459,0.0000021564,0.0000021757,0.0000021931, +0.0000022042,0.0000022117,0.0000022170,0.0000022215,0.0000022279, +0.0000022345,0.0000022366,0.0000022332,0.0000022230,0.0000022097, +0.0000021989,0.0000021966,0.0000021987,0.0000021999,0.0000021823, +0.0000021654,0.0000021669,0.0000021766,0.0000021899,0.0000022161, +0.0000022435,0.0000022515,0.0000022478,0.0000022457,0.0000022500, +0.0000022573,0.0000022636,0.0000022688,0.0000022723,0.0000022738, +0.0000022748,0.0000022786,0.0000022863,0.0000022935,0.0000022967, +0.0000022968,0.0000022967,0.0000022974,0.0000022995,0.0000023021, +0.0000023045,0.0000023056,0.0000023055,0.0000023050,0.0000023046, +0.0000023053,0.0000023069,0.0000023089,0.0000023113,0.0000023133, +0.0000023143,0.0000023136,0.0000023117,0.0000023095,0.0000023073, +0.0000023049,0.0000023027,0.0000023009,0.0000022994,0.0000022983, +0.0000022972,0.0000022955,0.0000022937,0.0000022925,0.0000022920, +0.0000022922,0.0000022938,0.0000022964,0.0000022995,0.0000023024, +0.0000023052,0.0000023078,0.0000023101,0.0000023116,0.0000023128, +0.0000023146,0.0000023161,0.0000023155,0.0000023117,0.0000023060, +0.0000023016,0.0000022996,0.0000023000,0.0000023026,0.0000023053, +0.0000023069,0.0000023076,0.0000023076,0.0000023071,0.0000023073, +0.0000023082,0.0000023092,0.0000023094,0.0000023076,0.0000023044, +0.0000023005,0.0000022953,0.0000022901,0.0000022875,0.0000022868, +0.0000022858,0.0000022851,0.0000022865,0.0000022887,0.0000022887, +0.0000022870,0.0000022853,0.0000022834,0.0000022807,0.0000022780, +0.0000022761,0.0000022738,0.0000022701,0.0000022661,0.0000022629, +0.0000022601,0.0000022575,0.0000022546,0.0000022515,0.0000022499, +0.0000022498,0.0000022488,0.0000022462,0.0000022438,0.0000022427, +0.0000022418,0.0000022410,0.0000022409,0.0000022429,0.0000022475, +0.0000022534,0.0000022599,0.0000022689,0.0000022796,0.0000022882, +0.0000022938,0.0000022976,0.0000022990,0.0000022980,0.0000022942, +0.0000022874,0.0000022810,0.0000022751,0.0000022714,0.0000022707, +0.0000022720,0.0000022729,0.0000022723,0.0000022711,0.0000022717, +0.0000022732,0.0000022743,0.0000022740,0.0000022739,0.0000022756, +0.0000022786,0.0000022817,0.0000022852,0.0000022893,0.0000022928, +0.0000022959,0.0000022986,0.0000023009,0.0000023036,0.0000023064, +0.0000023086,0.0000023087,0.0000023061,0.0000023014,0.0000022966, +0.0000022926,0.0000022894,0.0000022895,0.0000022914,0.0000022963, +0.0000023031,0.0000023097,0.0000023149,0.0000023184,0.0000023206, +0.0000023222,0.0000023232,0.0000023234,0.0000023229,0.0000023220, +0.0000023206,0.0000023195,0.0000023185,0.0000023186,0.0000023202, +0.0000023235,0.0000023284,0.0000023348,0.0000023416,0.0000023475, +0.0000023516,0.0000023513,0.0000023505,0.0000023484,0.0000023459, +0.0000023428,0.0000023388,0.0000023335,0.0000023270,0.0000023207, +0.0000023159,0.0000023129,0.0000023112,0.0000023105,0.0000023109, +0.0000023114,0.0000023122,0.0000023134,0.0000023154,0.0000023179, +0.0000023205,0.0000023222,0.0000023225,0.0000023224,0.0000023220, +0.0000023213,0.0000023205,0.0000023195,0.0000023184,0.0000023166, +0.0000023145,0.0000023120,0.0000023091,0.0000023059,0.0000023028, +0.0000022998,0.0000022973,0.0000022952,0.0000022929,0.0000022906, +0.0000022881,0.0000022851,0.0000022817,0.0000022777,0.0000022736, +0.0000022692,0.0000022647,0.0000022600,0.0000022548,0.0000022498, +0.0000022452,0.0000022413,0.0000022380,0.0000022355,0.0000022340, +0.0000022323,0.0000022326,0.0000022336,0.0000022357,0.0000022381, +0.0000022402,0.0000022421,0.0000022450,0.0000022494,0.0000022546, +0.0000022597,0.0000022634,0.0000022651,0.0000022649,0.0000022622, +0.0000022573,0.0000022507,0.0000022439,0.0000022383,0.0000022340, +0.0000022303,0.0000022270,0.0000022239,0.0000022211,0.0000022191, +0.0000022170,0.0000022154,0.0000022153,0.0000022169,0.0000022192, +0.0000022213,0.0000022231,0.0000022249,0.0000022274,0.0000022301, +0.0000022330,0.0000022364,0.0000022401,0.0000022437,0.0000022474, +0.0000022512,0.0000022553,0.0000022602,0.0000022648,0.0000022685, +0.0000022713,0.0000022733,0.0000022748,0.0000022756,0.0000022759, +0.0000022764,0.0000022770,0.0000022774,0.0000022782,0.0000022791, +0.0000022798,0.0000022806,0.0000022820,0.0000022842,0.0000022868, +0.0000022898,0.0000022932,0.0000022964,0.0000022987,0.0000023003, +0.0000023010,0.0000023003,0.0000022989,0.0000022968,0.0000022953, +0.0000022949,0.0000022940,0.0000022937,0.0000022934,0.0000022942, +0.0000022957,0.0000022971,0.0000022978,0.0000022981,0.0000022980, +0.0000022979,0.0000022979,0.0000022982,0.0000022991,0.0000023001, +0.0000023003,0.0000023005,0.0000023001,0.0000022989,0.0000022980, +0.0000022973,0.0000022964,0.0000022951,0.0000022934,0.0000022910, +0.0000022896,0.0000022888,0.0000022891,0.0000022895,0.0000022898, +0.0000022915,0.0000022954,0.0000023005,0.0000023053,0.0000023088, +0.0000023110,0.0000023113,0.0000023104,0.0000023088,0.0000023075, +0.0000023065,0.0000023065,0.0000023073,0.0000023080,0.0000023087, +0.0000023085,0.0000023071,0.0000023044,0.0000023010,0.0000022977, +0.0000022939,0.0000022910,0.0000022904,0.0000022911,0.0000022919, +0.0000022916,0.0000022893,0.0000022854,0.0000022806,0.0000022750, +0.0000022682,0.0000022623,0.0000022581,0.0000022545,0.0000022519, +0.0000022507,0.0000022497,0.0000022476,0.0000022456,0.0000022442, +0.0000022433,0.0000022420,0.0000022411,0.0000022399,0.0000022374, +0.0000022331,0.0000022295,0.0000022290,0.0000022319,0.0000022356, +0.0000022393,0.0000022433,0.0000022475,0.0000022525,0.0000022579, +0.0000022632,0.0000022681,0.0000022721,0.0000022741,0.0000022738, +0.0000022720,0.0000022704,0.0000022693,0.0000022696,0.0000022727, +0.0000022753,0.0000022754,0.0000022727,0.0000022717,0.0000022775, +0.0000022888,0.0000022965,0.0000023054,0.0000023186,0.0000023234, +0.0000023186,0.0000023124,0.0000023073,0.0000022948,0.0000022794, +0.0000022792,0.0000022812,0.0000022825,0.0000022863,0.0000022865, +0.0000022794,0.0000022732,0.0000022731,0.0000022744,0.0000022723, +0.0000022747,0.0000022822,0.0000022904,0.0000023003,0.0000023203, +0.0000023429,0.0000023508,0.0000023531,0.0000023495,0.0000023279, +0.0000023164,0.0000023160,0.0000023159,0.0000023126,0.0000023062, +0.0000022989,0.0000022963,0.0000023032,0.0000023152,0.0000023205, +0.0000023179,0.0000023094,0.0000023000,0.0000022971,0.0000022997, +0.0000023063,0.0000023133,0.0000023171,0.0000023171,0.0000023159, +0.0000023135,0.0000023097,0.0000023029,0.0000022946,0.0000022888, +0.0000022838,0.0000022773,0.0000022740,0.0000022758,0.0000022815, +0.0000022870,0.0000022914,0.0000022943,0.0000022941,0.0000022937, +0.0000022928,0.0000022929,0.0000022968,0.0000023017,0.0000023039, +0.0000023030,0.0000022945,0.0000022839,0.0000022820,0.0000022808, +0.0000022739,0.0000022666,0.0000022479,0.0000022219,0.0000022190, +0.0000022333,0.0000022457,0.0000022494,0.0000022502,0.0000022418, +0.0000022120,0.0000021891,0.0000021945,0.0000022149,0.0000022323, +0.0000022432,0.0000022519,0.0000022608,0.0000022704,0.0000022770, +0.0000022785,0.0000022767,0.0000022738,0.0000022713,0.0000022680, +0.0000022624,0.0000022536,0.0000022451,0.0000022459,0.0000022581, +0.0000022711,0.0000022748,0.0000022698,0.0000022552,0.0000022404, +0.0000022257,0.0000022123,0.0000022107,0.0000022176,0.0000022278, +0.0000022365,0.0000022385,0.0000022353,0.0000022312,0.0000022299, +0.0000022282,0.0000022242,0.0000022226,0.0000022259,0.0000022353, +0.0000022484,0.0000022633,0.0000022746,0.0000022786,0.0000022788, +0.0000022787,0.0000022778,0.0000022758,0.0000022751,0.0000022758, +0.0000022770,0.0000022780,0.0000022798,0.0000022820,0.0000022836, +0.0000022846,0.0000022862,0.0000022892,0.0000022936,0.0000023000, +0.0000023067,0.0000023130,0.0000023191,0.0000023247,0.0000023287, +0.0000023319,0.0000023355,0.0000023393,0.0000023438,0.0000023491, +0.0000023533,0.0000023550,0.0000023548,0.0000023531,0.0000023491, +0.0000023427,0.0000023350,0.0000023274,0.0000023207,0.0000023154, +0.0000023122,0.0000023104,0.0000023083,0.0000023081,0.0000023095, +0.0000023125,0.0000023157,0.0000023189,0.0000023219,0.0000023247, +0.0000023279,0.0000023313,0.0000023349,0.0000023381,0.0000023403, +0.0000023404,0.0000023379,0.0000023345,0.0000023295,0.0000023244, +0.0000023198,0.0000023161,0.0000023154,0.0000023170,0.0000023211, +0.0000023266,0.0000023322,0.0000023364,0.0000023393,0.0000023404, +0.0000023398,0.0000023366,0.0000023315,0.0000023253,0.0000023190, +0.0000023140,0.0000023104,0.0000023090,0.0000023111,0.0000023168, +0.0000023245,0.0000023317,0.0000023349,0.0000023338,0.0000023289, +0.0000023231,0.0000023204,0.0000023216,0.0000023276,0.0000023341, +0.0000023414,0.0000023491,0.0000023578,0.0000023673,0.0000023761, +0.0000023813,0.0000023824,0.0000023826,0.0000023842,0.0000023861, +0.0000023891,0.0000023975,0.0000024065,0.0000024064,0.0000023986, +0.0000023940,0.0000023922,0.0000023892,0.0000023874,0.0000023858, +0.0000023838,0.0000023831,0.0000023836,0.0000023847,0.0000023861, +0.0000023879,0.0000023902,0.0000023925,0.0000023943,0.0000023958, +0.0000023970,0.0000023976,0.0000023972,0.0000023957,0.0000023934, +0.0000023903,0.0000023868,0.0000023835,0.0000023802,0.0000023768, +0.0000023742,0.0000023718,0.0000023689,0.0000023657,0.0000023627, +0.0000023597,0.0000023573,0.0000023550,0.0000023522,0.0000023489, +0.0000023452,0.0000023415,0.0000023382,0.0000023353,0.0000023325, +0.0000023294,0.0000023254,0.0000023209,0.0000023165,0.0000023126, +0.0000023088,0.0000023050,0.0000023016,0.0000022987,0.0000022967, +0.0000022950,0.0000022927,0.0000022898,0.0000022865,0.0000022834, +0.0000022803,0.0000022771,0.0000022740,0.0000022714,0.0000022696, +0.0000022685,0.0000022680,0.0000022681,0.0000022688,0.0000022700, +0.0000022712,0.0000022727,0.0000022739,0.0000022742,0.0000022731, +0.0000022707,0.0000022671,0.0000022617,0.0000022566,0.0000022512, +0.0000022466,0.0000022429,0.0000022414,0.0000022410,0.0000022411, +0.0000022422,0.0000022438,0.0000022455,0.0000022471,0.0000022479, +0.0000022480,0.0000022465,0.0000022438,0.0000022413,0.0000022397, +0.0000022373,0.0000022350,0.0000022334,0.0000022320,0.0000022321, +0.0000022335,0.0000022355,0.0000022374,0.0000022396,0.0000022419, +0.0000022433,0.0000022444,0.0000022452,0.0000022457,0.0000022453, +0.0000022437,0.0000022417,0.0000022397,0.0000022370,0.0000022357, +0.0000022354,0.0000022345,0.0000022347,0.0000022352,0.0000022353, +0.0000022357,0.0000022368,0.0000022383,0.0000022398,0.0000022410, +0.0000022419,0.0000022426,0.0000022436,0.0000022460,0.0000022501, +0.0000022560,0.0000022648,0.0000022763,0.0000022877,0.0000022968, +0.0000023033,0.0000023069,0.0000023086,0.0000023093,0.0000023095, +0.0000023099,0.0000023102,0.0000023104,0.0000023099,0.0000023084, +0.0000023063,0.0000023044,0.0000023051,0.0000023086,0.0000023138, +0.0000023202,0.0000023250,0.0000023230,0.0000023098,0.0000022969, +0.0000022955,0.0000022970,0.0000023014,0.0000023214,0.0000023431, +0.0000023493,0.0000023426,0.0000023299,0.0000023276,0.0000023339, +0.0000023394,0.0000023401,0.0000023362,0.0000023261,0.0000023142, +0.0000023060,0.0000023000,0.0000022934,0.0000022863,0.0000022798, +0.0000022736,0.0000022664,0.0000022593,0.0000022545,0.0000022528, +0.0000022542,0.0000022582,0.0000022636,0.0000022691,0.0000022745, +0.0000022794,0.0000022826,0.0000022837,0.0000022836,0.0000022817, +0.0000022764,0.0000022665,0.0000022514,0.0000022328,0.0000022147, +0.0000022022,0.0000021992,0.0000022048,0.0000022121,0.0000022150, +0.0000022133,0.0000022074,0.0000021999,0.0000021942,0.0000021916, +0.0000021913,0.0000021935,0.0000021986,0.0000022032,0.0000022067, +0.0000022055,0.0000022002,0.0000021918,0.0000021820,0.0000021775, +0.0000021747,0.0000021750,0.0000021785,0.0000021886,0.0000022098, +0.0000022434,0.0000022822,0.0000023098,0.0000023132,0.0000022943, +0.0000022646,0.0000022401,0.0000022272,0.0000022230,0.0000022176, +0.0000022057,0.0000021925,0.0000021831,0.0000021753,0.0000021690, +0.0000021671,0.0000021671,0.0000021642,0.0000021574,0.0000021527, +0.0000021530,0.0000021548,0.0000021576,0.0000021672,0.0000021828, +0.0000021952,0.0000022001,0.0000022046,0.0000022149,0.0000022273, +0.0000022331,0.0000022314,0.0000022217,0.0000022079,0.0000021954, +0.0000021863,0.0000021790,0.0000021721,0.0000021671,0.0000021646, +0.0000021606,0.0000021529,0.0000021440,0.0000021362,0.0000021294, +0.0000021253,0.0000021255,0.0000021279,0.0000021298,0.0000021317, +0.0000021374,0.0000021487,0.0000021623,0.0000021732,0.0000021808, +0.0000021843,0.0000021855,0.0000021897,0.0000021984,0.0000022083, +0.0000022133,0.0000022123,0.0000022042,0.0000021915,0.0000021790, +0.0000021691,0.0000021615,0.0000021553,0.0000021499,0.0000021452, +0.0000021423,0.0000021417,0.0000021425,0.0000021443,0.0000021464, +0.0000021483,0.0000021501,0.0000021520,0.0000021535,0.0000021542, +0.0000021543,0.0000021539,0.0000021523,0.0000021495,0.0000021458, +0.0000021427,0.0000021411,0.0000021411,0.0000021420,0.0000021425, +0.0000021414,0.0000021389,0.0000021370,0.0000021362,0.0000021388, +0.0000021447,0.0000021516,0.0000021582,0.0000021624,0.0000021638, +0.0000021627,0.0000021610,0.0000021561,0.0000021446,0.0000021267, +0.0000021084,0.0000020963,0.0000020920,0.0000020922,0.0000020931, +0.0000020933,0.0000020941,0.0000021005,0.0000021166,0.0000021371, +0.0000021517,0.0000021581,0.0000021622,0.0000021696,0.0000021794, +0.0000021877,0.0000021938,0.0000021993,0.0000022062,0.0000022154, +0.0000022277,0.0000022431,0.0000022606,0.0000022792,0.0000022985, +0.0000023175,0.0000023339,0.0000023439,0.0000023456,0.0000023447, +0.0000023456,0.0000023539,0.0000023664,0.0000023780,0.0000023904, +0.0000024105,0.0000024382,0.0000024633,0.0000024759,0.0000024770, +0.0000024737,0.0000024726,0.0000024761,0.0000024807,0.0000024807, +0.0000024682,0.0000024461,0.0000024280,0.0000024197,0.0000024182, +0.0000024191,0.0000024241,0.0000024351,0.0000024495,0.0000024636, +0.0000024737,0.0000024755,0.0000024688,0.0000024567,0.0000024426, +0.0000024281,0.0000024164,0.0000024105,0.0000024100,0.0000024127, +0.0000024166,0.0000024186,0.0000024197,0.0000024184,0.0000024151, +0.0000024101,0.0000024049,0.0000024012,0.0000023999,0.0000024002, +0.0000024007,0.0000024014,0.0000024022,0.0000024029,0.0000024030, +0.0000024017,0.0000023994,0.0000023975,0.0000023962,0.0000023955, +0.0000023967,0.0000023997,0.0000024042,0.0000024097,0.0000024153, +0.0000024193,0.0000024216,0.0000024222,0.0000024191,0.0000024174, +0.0000024133,0.0000024079,0.0000024044,0.0000024036,0.0000024037, +0.0000024031,0.0000024022,0.0000024030,0.0000024055,0.0000024053, +0.0000024040,0.0000024017,0.0000023985,0.0000023952,0.0000023919, +0.0000023884,0.0000023845,0.0000023804,0.0000023762,0.0000023718, +0.0000023671,0.0000023618,0.0000023560,0.0000023493,0.0000023426, +0.0000023372,0.0000023338,0.0000023319,0.0000023315,0.0000023316, +0.0000023314,0.0000023309,0.0000023303,0.0000023292,0.0000023285, +0.0000023273,0.0000023248,0.0000023212,0.0000023175,0.0000023142, +0.0000023110,0.0000023076,0.0000023037,0.0000022994,0.0000022948, +0.0000022897,0.0000022843,0.0000022785,0.0000022725,0.0000022680, +0.0000022652,0.0000022633,0.0000022617,0.0000022588,0.0000022557, +0.0000022525,0.0000022506,0.0000022506,0.0000022532,0.0000022565, +0.0000022595,0.0000022640,0.0000022682,0.0000022722,0.0000022759, +0.0000022787,0.0000022803,0.0000022791,0.0000022777,0.0000022755, +0.0000022730,0.0000022709,0.0000022700,0.0000022709,0.0000022747, +0.0000022785,0.0000022792,0.0000022749,0.0000022592,0.0000022361, +0.0000022135,0.0000021984,0.0000021921,0.0000021892,0.0000021874, +0.0000021870,0.0000021878,0.0000021889,0.0000021893,0.0000021881, +0.0000021833,0.0000021746,0.0000021626,0.0000021495,0.0000021383, +0.0000021303,0.0000021281,0.0000021262,0.0000021271,0.0000021303, +0.0000021355,0.0000021412,0.0000021473,0.0000021547,0.0000021632, +0.0000021704,0.0000021755,0.0000021790,0.0000021814,0.0000021826, +0.0000021821,0.0000021807,0.0000021796,0.0000021781,0.0000021757, +0.0000021726,0.0000021695,0.0000021666,0.0000021639,0.0000021613, +0.0000021593,0.0000021568,0.0000021535,0.0000021511,0.0000021501, +0.0000021486,0.0000021457,0.0000021426,0.0000021395,0.0000021365, +0.0000021345,0.0000021328,0.0000021314,0.0000021308,0.0000021315, +0.0000021333,0.0000021360,0.0000021398,0.0000021444,0.0000021485, +0.0000021511,0.0000021530,0.0000021534,0.0000021513,0.0000021475, +0.0000021403,0.0000021314,0.0000021226,0.0000021168,0.0000021145, +0.0000021154,0.0000021170,0.0000021177,0.0000021173,0.0000021173, +0.0000021188,0.0000021213,0.0000021229,0.0000021225,0.0000021218, +0.0000021218,0.0000021221,0.0000021221,0.0000021214,0.0000021200, +0.0000021187,0.0000021173,0.0000021159,0.0000021150,0.0000021152, +0.0000021159,0.0000021163,0.0000021159,0.0000021152,0.0000021140, +0.0000021120,0.0000021097,0.0000021078,0.0000021066,0.0000021059, +0.0000021058,0.0000021073,0.0000021117,0.0000021173,0.0000021229, +0.0000021284,0.0000021338,0.0000021388,0.0000021423,0.0000021440, +0.0000021446,0.0000021439,0.0000021416,0.0000021383,0.0000021352, +0.0000021312,0.0000021278,0.0000021251,0.0000021226,0.0000021199, +0.0000021171,0.0000021143,0.0000021108,0.0000021076,0.0000021074, +0.0000021103,0.0000021150,0.0000021199,0.0000021269,0.0000021360, +0.0000021445,0.0000021509,0.0000021544,0.0000021546,0.0000021526, +0.0000021481,0.0000021429,0.0000021383,0.0000021351,0.0000021351, +0.0000021420,0.0000021532,0.0000021620,0.0000021670,0.0000021694, +0.0000021683,0.0000021604,0.0000021515,0.0000021497,0.0000021521, +0.0000021537,0.0000021530,0.0000021503,0.0000021455,0.0000021395, +0.0000021340,0.0000021288,0.0000021234,0.0000021188,0.0000021166, +0.0000021164,0.0000021180,0.0000021216,0.0000021264,0.0000021316, +0.0000021362,0.0000021402,0.0000021438,0.0000021455,0.0000021434, +0.0000021359,0.0000021300,0.0000021292,0.0000021292,0.0000021262, +0.0000021210,0.0000021195,0.0000021245,0.0000021343,0.0000021407, +0.0000021413,0.0000021370,0.0000021315,0.0000021293,0.0000021296, +0.0000021301,0.0000021304,0.0000021310,0.0000021319,0.0000021328, +0.0000021335,0.0000021336,0.0000021332,0.0000021324,0.0000021321, +0.0000021338,0.0000021373,0.0000021415,0.0000021454,0.0000021490, +0.0000021523,0.0000021545,0.0000021560,0.0000021580,0.0000021602, +0.0000021613,0.0000021610,0.0000021585,0.0000021536,0.0000021474, +0.0000021413,0.0000021370,0.0000021351,0.0000021352,0.0000021365, +0.0000021383,0.0000021389,0.0000021384,0.0000021373,0.0000021372, +0.0000021386,0.0000021406,0.0000021409,0.0000021373,0.0000021302, +0.0000021252,0.0000021266,0.0000021285,0.0000021216,0.0000021038, +0.0000020898,0.0000020866,0.0000020980,0.0000021319,0.0000021650, +0.0000021828,0.0000021924,0.0000022002,0.0000022069,0.0000022123, +0.0000022139,0.0000022122,0.0000022089,0.0000022059,0.0000022030, +0.0000022007,0.0000022008,0.0000022027,0.0000022052,0.0000022081, +0.0000022121,0.0000022163,0.0000022191,0.0000022202,0.0000022202, +0.0000022163,0.0000022021,0.0000021782,0.0000021558,0.0000021457, +0.0000021454,0.0000021463,0.0000021458,0.0000021467,0.0000021565, +0.0000021754,0.0000021929,0.0000022039,0.0000022112,0.0000022151, +0.0000022169,0.0000022214,0.0000022285,0.0000022322,0.0000022301, +0.0000022204,0.0000022072,0.0000021960,0.0000021926,0.0000021916, +0.0000021937,0.0000021780,0.0000021617,0.0000021626,0.0000021718, +0.0000021867,0.0000022153,0.0000022414,0.0000022469,0.0000022446, +0.0000022446,0.0000022502,0.0000022572,0.0000022623,0.0000022667, +0.0000022701,0.0000022717,0.0000022734,0.0000022792,0.0000022885, +0.0000022960,0.0000022988,0.0000022991,0.0000022988,0.0000022987, +0.0000022987,0.0000022988,0.0000022990,0.0000022993,0.0000022993, +0.0000022988,0.0000022982,0.0000022980,0.0000022983,0.0000022991, +0.0000023010,0.0000023031,0.0000023046,0.0000023048,0.0000023039, +0.0000023027,0.0000023014,0.0000022998,0.0000022983,0.0000022976, +0.0000022975,0.0000022973,0.0000022969,0.0000022958,0.0000022947, +0.0000022940,0.0000022936,0.0000022935,0.0000022943,0.0000022963, +0.0000022990,0.0000023015,0.0000023038,0.0000023062,0.0000023084, +0.0000023097,0.0000023097,0.0000023090,0.0000023079,0.0000023054, +0.0000023003,0.0000022939,0.0000022888,0.0000022864,0.0000022871, +0.0000022909,0.0000022948,0.0000022974,0.0000022983,0.0000022973, +0.0000022948,0.0000022932,0.0000022928,0.0000022927,0.0000022927, +0.0000022920,0.0000022908,0.0000022895,0.0000022866,0.0000022811, +0.0000022754,0.0000022721,0.0000022702,0.0000022681,0.0000022665, +0.0000022669,0.0000022674,0.0000022667,0.0000022649,0.0000022632, +0.0000022609,0.0000022574,0.0000022547,0.0000022533,0.0000022513, +0.0000022489,0.0000022473,0.0000022462,0.0000022451,0.0000022438, +0.0000022416,0.0000022388,0.0000022374,0.0000022374,0.0000022369, +0.0000022348,0.0000022321,0.0000022300,0.0000022280,0.0000022253, +0.0000022232,0.0000022242,0.0000022278,0.0000022324,0.0000022390, +0.0000022489,0.0000022606,0.0000022715,0.0000022804,0.0000022876, +0.0000022930,0.0000022955,0.0000022944,0.0000022913,0.0000022862, +0.0000022804,0.0000022756,0.0000022735,0.0000022738,0.0000022737, +0.0000022718,0.0000022704,0.0000022702,0.0000022709,0.0000022710, +0.0000022700,0.0000022691,0.0000022696,0.0000022715,0.0000022739, +0.0000022771,0.0000022806,0.0000022839,0.0000022872,0.0000022905, +0.0000022938,0.0000022986,0.0000023045,0.0000023094,0.0000023125, +0.0000023135,0.0000023125,0.0000023090,0.0000023027,0.0000022950, +0.0000022880,0.0000022840,0.0000022831,0.0000022856,0.0000022910, +0.0000022990,0.0000023074,0.0000023141,0.0000023183,0.0000023201, +0.0000023209,0.0000023212,0.0000023210,0.0000023203,0.0000023191, +0.0000023172,0.0000023153,0.0000023139,0.0000023137,0.0000023147, +0.0000023172,0.0000023216,0.0000023278,0.0000023348,0.0000023411, +0.0000023465,0.0000023490,0.0000023500,0.0000023492,0.0000023466, +0.0000023429,0.0000023383,0.0000023329,0.0000023271,0.0000023217, +0.0000023174,0.0000023145,0.0000023129,0.0000023122,0.0000023117, +0.0000023114,0.0000023117,0.0000023129,0.0000023153,0.0000023182, +0.0000023209,0.0000023225,0.0000023231,0.0000023229,0.0000023221, +0.0000023210,0.0000023190,0.0000023161,0.0000023130,0.0000023104, +0.0000023080,0.0000023060,0.0000023042,0.0000023028,0.0000023018, +0.0000023012,0.0000023000,0.0000022982,0.0000022953,0.0000022912, +0.0000022859,0.0000022800,0.0000022736,0.0000022674,0.0000022610, +0.0000022547,0.0000022486,0.0000022435,0.0000022399,0.0000022380, +0.0000022365,0.0000022365,0.0000022370,0.0000022384,0.0000022407, +0.0000022438,0.0000022467,0.0000022486,0.0000022494,0.0000022501, +0.0000022521,0.0000022557,0.0000022600,0.0000022640,0.0000022663, +0.0000022668,0.0000022646,0.0000022594,0.0000022513,0.0000022430, +0.0000022365,0.0000022327,0.0000022305,0.0000022282,0.0000022262, +0.0000022240,0.0000022214,0.0000022187,0.0000022156,0.0000022128, +0.0000022106,0.0000022093,0.0000022089,0.0000022089,0.0000022093, +0.0000022101,0.0000022112,0.0000022123,0.0000022136,0.0000022154, +0.0000022174,0.0000022198,0.0000022226,0.0000022260,0.0000022299, +0.0000022353,0.0000022418,0.0000022488,0.0000022554,0.0000022613, +0.0000022667,0.0000022709,0.0000022733,0.0000022741,0.0000022743, +0.0000022743,0.0000022742,0.0000022737,0.0000022727,0.0000022716, +0.0000022711,0.0000022713,0.0000022720,0.0000022732,0.0000022751, +0.0000022769,0.0000022783,0.0000022798,0.0000022814,0.0000022825, +0.0000022832,0.0000022833,0.0000022839,0.0000022851,0.0000022860, +0.0000022864,0.0000022862,0.0000022863,0.0000022869,0.0000022877, +0.0000022879,0.0000022875,0.0000022864,0.0000022854,0.0000022854, +0.0000022861,0.0000022868,0.0000022879,0.0000022890,0.0000022897, +0.0000022899,0.0000022893,0.0000022885,0.0000022879,0.0000022875, +0.0000022868,0.0000022859,0.0000022852,0.0000022847,0.0000022845, +0.0000022849,0.0000022862,0.0000022880,0.0000022907,0.0000022955, +0.0000023010,0.0000023063,0.0000023109,0.0000023141,0.0000023154, +0.0000023153,0.0000023139,0.0000023119,0.0000023092,0.0000023073, +0.0000023072,0.0000023075,0.0000023079,0.0000023079,0.0000023071, +0.0000023051,0.0000023020,0.0000022985,0.0000022954,0.0000022927, +0.0000022916,0.0000022922,0.0000022931,0.0000022932,0.0000022918, +0.0000022894,0.0000022868,0.0000022834,0.0000022778,0.0000022704, +0.0000022636,0.0000022584,0.0000022550,0.0000022546,0.0000022548, +0.0000022542,0.0000022526,0.0000022499,0.0000022465,0.0000022433, +0.0000022412,0.0000022398,0.0000022377,0.0000022342,0.0000022305, +0.0000022291,0.0000022305,0.0000022333,0.0000022368,0.0000022403, +0.0000022436,0.0000022466,0.0000022497,0.0000022535,0.0000022577, +0.0000022621,0.0000022656,0.0000022667,0.0000022664,0.0000022652, +0.0000022633,0.0000022620,0.0000022634,0.0000022688,0.0000022756, +0.0000022764,0.0000022724,0.0000022723,0.0000022822,0.0000022937, +0.0000023012,0.0000023122,0.0000023228,0.0000023223,0.0000023150, +0.0000023088,0.0000022954,0.0000022774,0.0000022739,0.0000022747, +0.0000022781,0.0000022849,0.0000022859,0.0000022792,0.0000022730, +0.0000022735,0.0000022756,0.0000022731,0.0000022732,0.0000022787, +0.0000022877,0.0000022964,0.0000023133,0.0000023357,0.0000023491, +0.0000023516,0.0000023528,0.0000023362,0.0000023186,0.0000023174, +0.0000023174,0.0000023163,0.0000023116,0.0000023036,0.0000022964, +0.0000022973,0.0000023063,0.0000023138,0.0000023143,0.0000023073, +0.0000022971,0.0000022926,0.0000022948,0.0000023014,0.0000023081, +0.0000023124,0.0000023132,0.0000023129,0.0000023115,0.0000023083, +0.0000023022,0.0000022941,0.0000022875,0.0000022822,0.0000022756, +0.0000022732,0.0000022771,0.0000022861,0.0000022930,0.0000022964, +0.0000022977,0.0000022961,0.0000022954,0.0000022949,0.0000022947, +0.0000022979,0.0000023034,0.0000023060,0.0000023054,0.0000022995, +0.0000022884,0.0000022830,0.0000022822,0.0000022757,0.0000022674, +0.0000022496,0.0000022219,0.0000022158,0.0000022292,0.0000022400, +0.0000022434,0.0000022449,0.0000022372,0.0000022073,0.0000021852, +0.0000021918,0.0000022127,0.0000022302,0.0000022414,0.0000022512, +0.0000022610,0.0000022703,0.0000022764,0.0000022777,0.0000022752, +0.0000022720,0.0000022689,0.0000022647,0.0000022576,0.0000022483, +0.0000022405,0.0000022416,0.0000022537,0.0000022679,0.0000022733, +0.0000022700,0.0000022565,0.0000022419,0.0000022271,0.0000022116, +0.0000022065,0.0000022114,0.0000022231,0.0000022347,0.0000022385, +0.0000022371,0.0000022331,0.0000022308,0.0000022305,0.0000022284, +0.0000022258,0.0000022269,0.0000022326,0.0000022428,0.0000022573, +0.0000022704,0.0000022765,0.0000022771,0.0000022767,0.0000022758, +0.0000022744,0.0000022734,0.0000022738,0.0000022743,0.0000022750, +0.0000022770,0.0000022798,0.0000022817,0.0000022840,0.0000022885, +0.0000022950,0.0000023018,0.0000023074,0.0000023129,0.0000023179, +0.0000023230,0.0000023284,0.0000023332,0.0000023371,0.0000023406, +0.0000023448,0.0000023493,0.0000023540,0.0000023591,0.0000023628, +0.0000023646,0.0000023653,0.0000023641,0.0000023609,0.0000023552, +0.0000023475,0.0000023389,0.0000023299,0.0000023211,0.0000023144, +0.0000023102,0.0000023075,0.0000023070,0.0000023088,0.0000023120, +0.0000023150,0.0000023172,0.0000023186,0.0000023200,0.0000023224, +0.0000023253,0.0000023290,0.0000023331,0.0000023364,0.0000023374, +0.0000023362,0.0000023331,0.0000023296,0.0000023261,0.0000023227, +0.0000023206,0.0000023212,0.0000023240,0.0000023280,0.0000023324, +0.0000023362,0.0000023391,0.0000023404,0.0000023402,0.0000023372, +0.0000023316,0.0000023247,0.0000023178,0.0000023118,0.0000023073, +0.0000023039,0.0000023016,0.0000023048,0.0000023125,0.0000023225, +0.0000023303,0.0000023327,0.0000023309,0.0000023261,0.0000023221, +0.0000023213,0.0000023249,0.0000023309,0.0000023354,0.0000023405, +0.0000023482,0.0000023576,0.0000023666,0.0000023730,0.0000023759, +0.0000023766,0.0000023777,0.0000023803,0.0000023824,0.0000023860, +0.0000023950,0.0000024042,0.0000024046,0.0000023975,0.0000023934, +0.0000023927,0.0000023897,0.0000023868,0.0000023860,0.0000023845, +0.0000023825,0.0000023814,0.0000023821,0.0000023833,0.0000023843, +0.0000023855,0.0000023871,0.0000023886,0.0000023896,0.0000023901, +0.0000023902,0.0000023895,0.0000023880,0.0000023858,0.0000023828, +0.0000023793,0.0000023754,0.0000023710,0.0000023671,0.0000023638, +0.0000023601,0.0000023556,0.0000023508,0.0000023467,0.0000023443, +0.0000023431,0.0000023422,0.0000023409,0.0000023391,0.0000023372, +0.0000023352,0.0000023333,0.0000023310,0.0000023278,0.0000023234, +0.0000023184,0.0000023132,0.0000023089,0.0000023053,0.0000023018, +0.0000022979,0.0000022942,0.0000022907,0.0000022874,0.0000022839, +0.0000022798,0.0000022756,0.0000022718,0.0000022684,0.0000022650, +0.0000022618,0.0000022590,0.0000022568,0.0000022553,0.0000022543, +0.0000022535,0.0000022528,0.0000022523,0.0000022528,0.0000022542, +0.0000022565,0.0000022590,0.0000022609,0.0000022617,0.0000022617, +0.0000022605,0.0000022579,0.0000022546,0.0000022511,0.0000022478, +0.0000022453,0.0000022446,0.0000022448,0.0000022448,0.0000022455, +0.0000022470,0.0000022499,0.0000022519,0.0000022535,0.0000022542, +0.0000022535,0.0000022521,0.0000022489,0.0000022456,0.0000022422, +0.0000022390,0.0000022367,0.0000022353,0.0000022351,0.0000022372, +0.0000022404,0.0000022432,0.0000022461,0.0000022491,0.0000022516, +0.0000022530,0.0000022540,0.0000022544,0.0000022538,0.0000022523, +0.0000022499,0.0000022462,0.0000022424,0.0000022392,0.0000022372, +0.0000022357,0.0000022348,0.0000022343,0.0000022333,0.0000022330, +0.0000022332,0.0000022337,0.0000022342,0.0000022351,0.0000022356, +0.0000022354,0.0000022357,0.0000022364,0.0000022381,0.0000022409, +0.0000022450,0.0000022516,0.0000022602,0.0000022690,0.0000022773, +0.0000022853,0.0000022920,0.0000022970,0.0000023001,0.0000023019, +0.0000023024,0.0000023019,0.0000023005,0.0000022984,0.0000022966, +0.0000022941,0.0000022922,0.0000022926,0.0000022959,0.0000023021, +0.0000023094,0.0000023148,0.0000023127,0.0000023013,0.0000022939, +0.0000022950,0.0000022964,0.0000023039,0.0000023262,0.0000023448, +0.0000023473,0.0000023376,0.0000023266,0.0000023257,0.0000023299, +0.0000023319,0.0000023305,0.0000023245,0.0000023156,0.0000023080, +0.0000023030,0.0000022978,0.0000022905,0.0000022830,0.0000022763, +0.0000022683,0.0000022593,0.0000022524,0.0000022484,0.0000022463, +0.0000022452,0.0000022452,0.0000022465,0.0000022490,0.0000022526, +0.0000022550,0.0000022551,0.0000022535,0.0000022499,0.0000022427, +0.0000022310,0.0000022162,0.0000022030,0.0000021966,0.0000021990, +0.0000022043,0.0000022133,0.0000022170,0.0000022132,0.0000022041, +0.0000021945,0.0000021865,0.0000021804,0.0000021768,0.0000021750, +0.0000021739,0.0000021750,0.0000021802,0.0000021898,0.0000022012, +0.0000022095,0.0000022146,0.0000022134,0.0000022075,0.0000021989, +0.0000021892,0.0000021804,0.0000021768,0.0000021763,0.0000021827, +0.0000022030,0.0000022399,0.0000022838,0.0000023093,0.0000023064, +0.0000022820,0.0000022522,0.0000022326,0.0000022245,0.0000022204, +0.0000022120,0.0000021992,0.0000021882,0.0000021804,0.0000021737, +0.0000021695,0.0000021688,0.0000021679,0.0000021630,0.0000021571, +0.0000021555,0.0000021579,0.0000021615,0.0000021667,0.0000021763, +0.0000021871,0.0000021937,0.0000021969,0.0000022028,0.0000022119, +0.0000022179,0.0000022171,0.0000022110,0.0000022018,0.0000021926, +0.0000021843,0.0000021766,0.0000021696,0.0000021649,0.0000021627, +0.0000021593,0.0000021526,0.0000021448,0.0000021378,0.0000021307, +0.0000021253,0.0000021240,0.0000021248,0.0000021265,0.0000021306, +0.0000021399,0.0000021531,0.0000021661,0.0000021766,0.0000021830, +0.0000021855,0.0000021879,0.0000021945,0.0000022045,0.0000022127, +0.0000022142,0.0000022083,0.0000021957,0.0000021823,0.0000021716, +0.0000021637,0.0000021578,0.0000021529,0.0000021495,0.0000021470, +0.0000021463,0.0000021470,0.0000021487,0.0000021508,0.0000021527, +0.0000021542,0.0000021559,0.0000021587,0.0000021621,0.0000021650, +0.0000021665,0.0000021661,0.0000021632,0.0000021582,0.0000021519, +0.0000021457,0.0000021414,0.0000021405,0.0000021413,0.0000021427, +0.0000021432,0.0000021421,0.0000021391,0.0000021357,0.0000021345, +0.0000021369,0.0000021426,0.0000021491,0.0000021551,0.0000021594, +0.0000021613,0.0000021605,0.0000021591,0.0000021547,0.0000021438, +0.0000021270,0.0000021109,0.0000021010,0.0000020968,0.0000020958, +0.0000020956,0.0000020948,0.0000020950,0.0000021015,0.0000021177, +0.0000021377,0.0000021516,0.0000021574,0.0000021608,0.0000021676, +0.0000021769,0.0000021857,0.0000021929,0.0000021998,0.0000022079, +0.0000022179,0.0000022299,0.0000022440,0.0000022609,0.0000022798, +0.0000022989,0.0000023173,0.0000023334,0.0000023431,0.0000023442, +0.0000023415,0.0000023407,0.0000023472,0.0000023589,0.0000023723, +0.0000023893,0.0000024141,0.0000024433,0.0000024654,0.0000024737, +0.0000024722,0.0000024692,0.0000024694,0.0000024743,0.0000024794, +0.0000024757,0.0000024587,0.0000024377,0.0000024242,0.0000024213, +0.0000024224,0.0000024245,0.0000024295,0.0000024390,0.0000024514, +0.0000024634,0.0000024700,0.0000024694,0.0000024616,0.0000024494, +0.0000024348,0.0000024199,0.0000024092,0.0000024053,0.0000024072, +0.0000024124,0.0000024176,0.0000024200,0.0000024198,0.0000024183, +0.0000024146,0.0000024096,0.0000024047,0.0000024015,0.0000024001, +0.0000023999,0.0000024004,0.0000024016,0.0000024029,0.0000024031, +0.0000024015,0.0000023993,0.0000023985,0.0000024000,0.0000024034, +0.0000024081,0.0000024134,0.0000024183,0.0000024219,0.0000024243, +0.0000024233,0.0000024214,0.0000024178,0.0000024127,0.0000024063, +0.0000023986,0.0000023911,0.0000023858,0.0000023835,0.0000023835, +0.0000023854,0.0000023892,0.0000023942,0.0000023987,0.0000024023, +0.0000024051,0.0000024058,0.0000024039,0.0000024048,0.0000024034, +0.0000024011,0.0000023978,0.0000023950,0.0000023921,0.0000023890, +0.0000023858,0.0000023822,0.0000023780,0.0000023729,0.0000023663, +0.0000023590,0.0000023515,0.0000023445,0.0000023386,0.0000023343, +0.0000023319,0.0000023308,0.0000023293,0.0000023273,0.0000023257, +0.0000023241,0.0000023220,0.0000023190,0.0000023149,0.0000023104, +0.0000023060,0.0000023019,0.0000022978,0.0000022929,0.0000022876, +0.0000022821,0.0000022768,0.0000022717,0.0000022669,0.0000022636, +0.0000022626,0.0000022631,0.0000022632,0.0000022623,0.0000022606, +0.0000022584,0.0000022564,0.0000022558,0.0000022565,0.0000022585, +0.0000022609,0.0000022634,0.0000022654,0.0000022677,0.0000022696, +0.0000022717,0.0000022739,0.0000022757,0.0000022766,0.0000022769, +0.0000022762,0.0000022757,0.0000022739,0.0000022719,0.0000022714, +0.0000022729,0.0000022753,0.0000022766,0.0000022727,0.0000022642, +0.0000022474,0.0000022260,0.0000022077,0.0000021964,0.0000021910, +0.0000021897,0.0000021904,0.0000021907,0.0000021907,0.0000021912, +0.0000021911,0.0000021906,0.0000021871,0.0000021796,0.0000021688, +0.0000021553,0.0000021420,0.0000021318,0.0000021262,0.0000021255, +0.0000021260,0.0000021280,0.0000021315,0.0000021367,0.0000021432, +0.0000021500,0.0000021563,0.0000021610,0.0000021640,0.0000021660, +0.0000021668,0.0000021664,0.0000021652,0.0000021636,0.0000021613, +0.0000021583,0.0000021556,0.0000021531,0.0000021512,0.0000021499, +0.0000021486,0.0000021479,0.0000021463,0.0000021446,0.0000021441, +0.0000021438,0.0000021425,0.0000021399,0.0000021367,0.0000021335, +0.0000021310,0.0000021285,0.0000021255,0.0000021233,0.0000021216, +0.0000021198,0.0000021180,0.0000021184,0.0000021206,0.0000021244, +0.0000021290,0.0000021344,0.0000021401,0.0000021452,0.0000021484, +0.0000021488,0.0000021452,0.0000021393,0.0000021294,0.0000021205, +0.0000021143,0.0000021119,0.0000021132,0.0000021150,0.0000021150, +0.0000021147,0.0000021159,0.0000021183,0.0000021194,0.0000021192, +0.0000021189,0.0000021187,0.0000021188,0.0000021188,0.0000021180, +0.0000021168,0.0000021157,0.0000021144,0.0000021133,0.0000021130, +0.0000021131,0.0000021136,0.0000021141,0.0000021142,0.0000021139, +0.0000021133,0.0000021120,0.0000021107,0.0000021093,0.0000021081, +0.0000021065,0.0000021051,0.0000021049,0.0000021070,0.0000021101, +0.0000021138,0.0000021183,0.0000021232,0.0000021274,0.0000021304, +0.0000021330,0.0000021349,0.0000021359,0.0000021363,0.0000021358, +0.0000021345,0.0000021319,0.0000021287,0.0000021249,0.0000021207, +0.0000021166,0.0000021142,0.0000021131,0.0000021114,0.0000021088, +0.0000021077,0.0000021094,0.0000021135,0.0000021191,0.0000021275, +0.0000021381,0.0000021477,0.0000021533,0.0000021542,0.0000021526, +0.0000021488,0.0000021439,0.0000021393,0.0000021352,0.0000021332, +0.0000021347,0.0000021430,0.0000021537,0.0000021617,0.0000021663, +0.0000021675,0.0000021649,0.0000021557,0.0000021484,0.0000021478, +0.0000021498,0.0000021503,0.0000021490,0.0000021451,0.0000021394, +0.0000021333,0.0000021284,0.0000021242,0.0000021201,0.0000021163, +0.0000021141,0.0000021140,0.0000021162,0.0000021205,0.0000021262, +0.0000021321,0.0000021367,0.0000021401,0.0000021429,0.0000021440, +0.0000021411,0.0000021341,0.0000021292,0.0000021285,0.0000021282, +0.0000021256,0.0000021207,0.0000021173,0.0000021200,0.0000021287, +0.0000021365,0.0000021382,0.0000021342,0.0000021273,0.0000021233, +0.0000021228,0.0000021227,0.0000021220,0.0000021214,0.0000021216, +0.0000021222,0.0000021225,0.0000021223,0.0000021215,0.0000021206, +0.0000021204,0.0000021218,0.0000021251,0.0000021293,0.0000021328, +0.0000021355,0.0000021380,0.0000021401,0.0000021415,0.0000021428, +0.0000021444,0.0000021452,0.0000021446,0.0000021420,0.0000021378, +0.0000021328,0.0000021282,0.0000021251,0.0000021242,0.0000021250, +0.0000021279,0.0000021322,0.0000021359,0.0000021371,0.0000021365, +0.0000021354,0.0000021351,0.0000021359,0.0000021376,0.0000021378, +0.0000021343,0.0000021275,0.0000021238,0.0000021258,0.0000021255, +0.0000021130,0.0000020945,0.0000020839,0.0000020850,0.0000021067, +0.0000021430,0.0000021708,0.0000021845,0.0000021936,0.0000022014, +0.0000022076,0.0000022118,0.0000022120,0.0000022092,0.0000022064, +0.0000022040,0.0000022016,0.0000022009,0.0000022026,0.0000022053, +0.0000022075,0.0000022099,0.0000022129,0.0000022154,0.0000022159, +0.0000022155,0.0000022123,0.0000022022,0.0000021824,0.0000021595, +0.0000021458,0.0000021435,0.0000021450,0.0000021456,0.0000021459, +0.0000021536,0.0000021715,0.0000021900,0.0000022019,0.0000022087, +0.0000022120,0.0000022127,0.0000022147,0.0000022207,0.0000022263, +0.0000022265,0.0000022195,0.0000022072,0.0000021947,0.0000021880, +0.0000021859,0.0000021884,0.0000021776,0.0000021591,0.0000021565, +0.0000021647,0.0000021796,0.0000022089,0.0000022367,0.0000022443, +0.0000022424,0.0000022435,0.0000022496,0.0000022560,0.0000022600, +0.0000022638,0.0000022673,0.0000022695,0.0000022726,0.0000022797, +0.0000022895,0.0000022976,0.0000023014,0.0000023020,0.0000023012, +0.0000023004,0.0000023000,0.0000022996,0.0000022988,0.0000022975, +0.0000022959,0.0000022942,0.0000022926,0.0000022911,0.0000022900, +0.0000022899,0.0000022914,0.0000022936,0.0000022955,0.0000022966, +0.0000022966,0.0000022961,0.0000022952,0.0000022940,0.0000022930, +0.0000022930,0.0000022936,0.0000022943,0.0000022947,0.0000022946, +0.0000022943,0.0000022942,0.0000022945,0.0000022950,0.0000022956, +0.0000022971,0.0000022994,0.0000023019,0.0000023040,0.0000023057, +0.0000023072,0.0000023079,0.0000023068,0.0000023037,0.0000022994, +0.0000022945,0.0000022884,0.0000022825,0.0000022783,0.0000022762, +0.0000022765,0.0000022794,0.0000022831,0.0000022851,0.0000022849, +0.0000022823,0.0000022782,0.0000022753,0.0000022743,0.0000022736, +0.0000022730,0.0000022730,0.0000022735,0.0000022745,0.0000022749, +0.0000022733,0.0000022691,0.0000022644,0.0000022603,0.0000022569, +0.0000022536,0.0000022509,0.0000022495,0.0000022484,0.0000022469, +0.0000022456,0.0000022444,0.0000022426,0.0000022406,0.0000022395, +0.0000022394,0.0000022388,0.0000022375,0.0000022362,0.0000022343, +0.0000022315,0.0000022281,0.0000022242,0.0000022202,0.0000022179, +0.0000022171,0.0000022165,0.0000022149,0.0000022126,0.0000022111, +0.0000022090,0.0000022062,0.0000022060,0.0000022082,0.0000022107, +0.0000022145,0.0000022207,0.0000022287,0.0000022387,0.0000022501, +0.0000022612,0.0000022717,0.0000022810,0.0000022875,0.0000022904, +0.0000022902,0.0000022877,0.0000022845,0.0000022803,0.0000022784, +0.0000022784,0.0000022777,0.0000022760,0.0000022741,0.0000022728, +0.0000022726,0.0000022721,0.0000022705,0.0000022692,0.0000022690, +0.0000022698,0.0000022716,0.0000022736,0.0000022758,0.0000022780, +0.0000022805,0.0000022832,0.0000022863,0.0000022909,0.0000022961, +0.0000023010,0.0000023055,0.0000023097,0.0000023119,0.0000023116, +0.0000023094,0.0000023059,0.0000023010,0.0000022948,0.0000022888, +0.0000022849,0.0000022824,0.0000022839,0.0000022881,0.0000022952, +0.0000023041,0.0000023121,0.0000023171,0.0000023189,0.0000023191, +0.0000023188,0.0000023180,0.0000023172,0.0000023150,0.0000023126, +0.0000023098,0.0000023078,0.0000023070,0.0000023080,0.0000023111, +0.0000023159,0.0000023222,0.0000023297,0.0000023366,0.0000023420, +0.0000023455,0.0000023466,0.0000023460,0.0000023451,0.0000023427, +0.0000023385,0.0000023332,0.0000023274,0.0000023220,0.0000023178, +0.0000023151,0.0000023136,0.0000023126,0.0000023116,0.0000023109, +0.0000023113,0.0000023128,0.0000023156,0.0000023189,0.0000023217, +0.0000023229,0.0000023234,0.0000023232,0.0000023213,0.0000023182, +0.0000023147,0.0000023117,0.0000023095,0.0000023081,0.0000023073, +0.0000023069,0.0000023068,0.0000023065,0.0000023053,0.0000023025, +0.0000022982,0.0000022924,0.0000022856,0.0000022783,0.0000022713, +0.0000022644,0.0000022580,0.0000022517,0.0000022466,0.0000022429, +0.0000022410,0.0000022406,0.0000022412,0.0000022425,0.0000022444, +0.0000022470,0.0000022501,0.0000022530,0.0000022547,0.0000022551, +0.0000022547,0.0000022546,0.0000022560,0.0000022592,0.0000022632, +0.0000022666,0.0000022686,0.0000022690,0.0000022665,0.0000022602, +0.0000022515,0.0000022433,0.0000022378,0.0000022351,0.0000022341, +0.0000022335,0.0000022326,0.0000022314,0.0000022292,0.0000022260, +0.0000022219,0.0000022173,0.0000022134,0.0000022107,0.0000022091, +0.0000022081,0.0000022081,0.0000022085,0.0000022087,0.0000022090, +0.0000022091,0.0000022089,0.0000022088,0.0000022088,0.0000022087, +0.0000022087,0.0000022085,0.0000022097,0.0000022123,0.0000022163, +0.0000022212,0.0000022269,0.0000022338,0.0000022412,0.0000022479, +0.0000022536,0.0000022588,0.0000022638,0.0000022679,0.0000022703, +0.0000022707,0.0000022699,0.0000022684,0.0000022667,0.0000022653, +0.0000022646,0.0000022645,0.0000022644,0.0000022643,0.0000022646, +0.0000022648,0.0000022648,0.0000022647,0.0000022642,0.0000022643, +0.0000022646,0.0000022657,0.0000022667,0.0000022667,0.0000022671, +0.0000022682,0.0000022697,0.0000022706,0.0000022704,0.0000022691, +0.0000022672,0.0000022663,0.0000022666,0.0000022670,0.0000022675, +0.0000022684,0.0000022691,0.0000022696,0.0000022696,0.0000022691, +0.0000022685,0.0000022682,0.0000022676,0.0000022668,0.0000022663, +0.0000022662,0.0000022663,0.0000022666,0.0000022682,0.0000022708, +0.0000022745,0.0000022802,0.0000022870,0.0000022942,0.0000023005, +0.0000023051,0.0000023077,0.0000023091,0.0000023090,0.0000023073, +0.0000023042,0.0000023006,0.0000022978,0.0000022962,0.0000022948, +0.0000022936,0.0000022927,0.0000022914,0.0000022894,0.0000022867, +0.0000022848,0.0000022839,0.0000022840,0.0000022855,0.0000022877, +0.0000022894,0.0000022898,0.0000022889,0.0000022872,0.0000022857, +0.0000022831,0.0000022783,0.0000022716,0.0000022649,0.0000022593, +0.0000022558,0.0000022554,0.0000022561,0.0000022569,0.0000022569, +0.0000022553,0.0000022513,0.0000022474,0.0000022446,0.0000022422, +0.0000022394,0.0000022367,0.0000022351,0.0000022350,0.0000022370, +0.0000022405,0.0000022440,0.0000022466,0.0000022482,0.0000022496, +0.0000022512,0.0000022530,0.0000022549,0.0000022567,0.0000022579, +0.0000022586,0.0000022594,0.0000022603,0.0000022602,0.0000022588, +0.0000022589,0.0000022669,0.0000022760,0.0000022753,0.0000022718, +0.0000022757,0.0000022885,0.0000022993,0.0000023070,0.0000023206, +0.0000023234,0.0000023165,0.0000023094,0.0000022940,0.0000022757, +0.0000022689,0.0000022681,0.0000022742,0.0000022842,0.0000022860, +0.0000022795,0.0000022737,0.0000022749,0.0000022780,0.0000022759, +0.0000022746,0.0000022773,0.0000022855,0.0000022942,0.0000023079, +0.0000023289,0.0000023465,0.0000023508,0.0000023545,0.0000023443, +0.0000023230,0.0000023186,0.0000023193,0.0000023187,0.0000023162, +0.0000023097,0.0000023003,0.0000022959,0.0000022990,0.0000023050, +0.0000023069,0.0000023035,0.0000022955,0.0000022904,0.0000022919, +0.0000022979,0.0000023042,0.0000023091,0.0000023111,0.0000023116, +0.0000023106,0.0000023071,0.0000022996,0.0000022903,0.0000022835, +0.0000022800,0.0000022759,0.0000022762,0.0000022829,0.0000022916, +0.0000022964,0.0000022973,0.0000022977,0.0000022965,0.0000022965, +0.0000022968,0.0000022966,0.0000022987,0.0000023044,0.0000023080, +0.0000023076,0.0000023034,0.0000022934,0.0000022844,0.0000022832, +0.0000022773,0.0000022681,0.0000022517,0.0000022234,0.0000022132, +0.0000022248,0.0000022348,0.0000022373,0.0000022397,0.0000022334, +0.0000022043,0.0000021814,0.0000021888,0.0000022106,0.0000022285, +0.0000022397,0.0000022498,0.0000022604,0.0000022695,0.0000022755, +0.0000022770,0.0000022746,0.0000022706,0.0000022667,0.0000022618, +0.0000022541,0.0000022443,0.0000022374,0.0000022386,0.0000022496, +0.0000022644,0.0000022733,0.0000022717,0.0000022597,0.0000022451, +0.0000022308,0.0000022131,0.0000022041,0.0000022061,0.0000022167, +0.0000022302,0.0000022377,0.0000022377,0.0000022350,0.0000022325, +0.0000022323,0.0000022317,0.0000022292,0.0000022289,0.0000022327, +0.0000022391,0.0000022502,0.0000022643,0.0000022726,0.0000022745, +0.0000022743,0.0000022730,0.0000022718,0.0000022707,0.0000022705, +0.0000022713,0.0000022714,0.0000022732,0.0000022766,0.0000022786, +0.0000022815,0.0000022892,0.0000022992,0.0000023075,0.0000023124, +0.0000023152,0.0000023178,0.0000023212,0.0000023255,0.0000023303, +0.0000023342,0.0000023378,0.0000023417,0.0000023464,0.0000023510, +0.0000023556,0.0000023601,0.0000023633,0.0000023652,0.0000023660, +0.0000023655,0.0000023640,0.0000023617,0.0000023576,0.0000023519, +0.0000023437,0.0000023336,0.0000023237,0.0000023154,0.0000023093, +0.0000023064,0.0000023065,0.0000023091,0.0000023123,0.0000023147, +0.0000023161,0.0000023173,0.0000023186,0.0000023206,0.0000023235, +0.0000023268,0.0000023299,0.0000023312,0.0000023307,0.0000023288, +0.0000023269,0.0000023243,0.0000023218,0.0000023219,0.0000023237, +0.0000023274,0.0000023306,0.0000023335,0.0000023365,0.0000023388, +0.0000023392,0.0000023377,0.0000023326,0.0000023256,0.0000023180, +0.0000023111,0.0000023054,0.0000023008,0.0000022968,0.0000022955, +0.0000023010,0.0000023118,0.0000023228,0.0000023294,0.0000023308, +0.0000023294,0.0000023264,0.0000023258,0.0000023278,0.0000023318, +0.0000023349,0.0000023368,0.0000023406,0.0000023488,0.0000023579, +0.0000023647,0.0000023682,0.0000023695,0.0000023703,0.0000023726, +0.0000023761,0.0000023791,0.0000023846,0.0000023946,0.0000024036, +0.0000024049,0.0000023991,0.0000023941,0.0000023935,0.0000023905, +0.0000023862,0.0000023854,0.0000023853,0.0000023825,0.0000023795, +0.0000023790,0.0000023800,0.0000023810,0.0000023817,0.0000023824, +0.0000023828,0.0000023828,0.0000023824,0.0000023812,0.0000023793, +0.0000023768,0.0000023739,0.0000023705,0.0000023664,0.0000023617, +0.0000023571,0.0000023530,0.0000023492,0.0000023453,0.0000023404, +0.0000023356,0.0000023329,0.0000023327,0.0000023337,0.0000023342, +0.0000023339,0.0000023328,0.0000023312,0.0000023292,0.0000023267, +0.0000023238,0.0000023203,0.0000023161,0.0000023117,0.0000023071, +0.0000023028,0.0000022985,0.0000022936,0.0000022883,0.0000022834, +0.0000022789,0.0000022747,0.0000022703,0.0000022662,0.0000022628, +0.0000022599,0.0000022573,0.0000022549,0.0000022527,0.0000022511, +0.0000022499,0.0000022491,0.0000022480,0.0000022466,0.0000022447, +0.0000022430,0.0000022423,0.0000022428,0.0000022439,0.0000022454, +0.0000022469,0.0000022479,0.0000022482,0.0000022483,0.0000022476, +0.0000022459,0.0000022435,0.0000022408,0.0000022391,0.0000022386, +0.0000022388,0.0000022392,0.0000022402,0.0000022425,0.0000022458, +0.0000022490,0.0000022521,0.0000022546,0.0000022564,0.0000022571, +0.0000022550,0.0000022534,0.0000022504,0.0000022470,0.0000022439, +0.0000022419,0.0000022412,0.0000022418,0.0000022441,0.0000022463, +0.0000022484,0.0000022512,0.0000022535,0.0000022550,0.0000022559, +0.0000022565,0.0000022566,0.0000022565,0.0000022552,0.0000022525, +0.0000022490,0.0000022453,0.0000022421,0.0000022399,0.0000022384, +0.0000022373,0.0000022360,0.0000022346,0.0000022344,0.0000022349, +0.0000022352,0.0000022353,0.0000022350,0.0000022336,0.0000022332, +0.0000022310,0.0000022308,0.0000022315,0.0000022329,0.0000022358, +0.0000022412,0.0000022478,0.0000022541,0.0000022602,0.0000022665, +0.0000022736,0.0000022810,0.0000022879,0.0000022930,0.0000022959, +0.0000022958,0.0000022938,0.0000022915,0.0000022893,0.0000022869, +0.0000022851,0.0000022850,0.0000022877,0.0000022927,0.0000022991, +0.0000023045,0.0000023029,0.0000022942,0.0000022920,0.0000022955, +0.0000022965,0.0000023072,0.0000023307,0.0000023455,0.0000023448, +0.0000023334,0.0000023237,0.0000023222,0.0000023239,0.0000023236, +0.0000023196,0.0000023139,0.0000023088,0.0000023051,0.0000023016, +0.0000022954,0.0000022873,0.0000022795,0.0000022705,0.0000022597, +0.0000022502,0.0000022436,0.0000022390,0.0000022353,0.0000022323, +0.0000022306,0.0000022302,0.0000022309,0.0000022310,0.0000022294, +0.0000022264,0.0000022215,0.0000022144,0.0000022051,0.0000021964, +0.0000021924,0.0000021957,0.0000022047,0.0000022113,0.0000022126, +0.0000022094,0.0000022012,0.0000021939,0.0000021898,0.0000021878, +0.0000021867,0.0000021852,0.0000021837,0.0000021809,0.0000021766, +0.0000021751,0.0000021755,0.0000021783,0.0000021851,0.0000021952, +0.0000022073,0.0000022156,0.0000022200,0.0000022187,0.0000022139, +0.0000022065,0.0000021968,0.0000021870,0.0000021846,0.0000021870, +0.0000022051,0.0000022446,0.0000022896,0.0000023075,0.0000022987, +0.0000022686,0.0000022413,0.0000022268,0.0000022215,0.0000022167, +0.0000022067,0.0000021945,0.0000021853,0.0000021780,0.0000021719, +0.0000021693,0.0000021692,0.0000021675,0.0000021627,0.0000021589, +0.0000021600,0.0000021644,0.0000021687,0.0000021737,0.0000021807, +0.0000021870,0.0000021908,0.0000021952,0.0000022022,0.0000022075, +0.0000022081,0.0000022051,0.0000021993,0.0000021913,0.0000021825, +0.0000021739,0.0000021665,0.0000021615,0.0000021593,0.0000021567, +0.0000021508,0.0000021441,0.0000021377,0.0000021301,0.0000021234, +0.0000021212,0.0000021218,0.0000021253,0.0000021329,0.0000021447, +0.0000021576,0.0000021696,0.0000021788,0.0000021837,0.0000021860, +0.0000021904,0.0000021991,0.0000022092,0.0000022152,0.0000022139, +0.0000022052,0.0000021927,0.0000021814,0.0000021725,0.0000021655, +0.0000021601,0.0000021562,0.0000021534,0.0000021518,0.0000021519, +0.0000021532,0.0000021552,0.0000021571,0.0000021587,0.0000021604, +0.0000021636,0.0000021687,0.0000021743,0.0000021785,0.0000021799, +0.0000021787,0.0000021745,0.0000021683,0.0000021610,0.0000021533, +0.0000021465,0.0000021422,0.0000021414,0.0000021421,0.0000021436, +0.0000021443,0.0000021429,0.0000021391,0.0000021351,0.0000021338, +0.0000021360,0.0000021408,0.0000021464,0.0000021521,0.0000021571, +0.0000021596,0.0000021590,0.0000021584,0.0000021549,0.0000021447, +0.0000021298,0.0000021157,0.0000021067,0.0000021021,0.0000020996, +0.0000020978,0.0000020959,0.0000020958,0.0000021023,0.0000021182, +0.0000021377,0.0000021509,0.0000021565,0.0000021602,0.0000021667, +0.0000021756,0.0000021844,0.0000021924,0.0000022005,0.0000022098, +0.0000022197,0.0000022304,0.0000022439,0.0000022609,0.0000022794, +0.0000022979,0.0000023161,0.0000023321,0.0000023412,0.0000023407, +0.0000023361,0.0000023335,0.0000023391,0.0000023512,0.0000023677, +0.0000023899,0.0000024186,0.0000024470,0.0000024646,0.0000024691, +0.0000024667,0.0000024643,0.0000024661,0.0000024721,0.0000024755, +0.0000024688,0.0000024522,0.0000024350,0.0000024264,0.0000024259, +0.0000024280,0.0000024295,0.0000024326,0.0000024395,0.0000024498, +0.0000024597,0.0000024644,0.0000024621,0.0000024542,0.0000024423, +0.0000024274,0.0000024130,0.0000024036,0.0000024019,0.0000024060, +0.0000024122,0.0000024166,0.0000024182,0.0000024179,0.0000024155, +0.0000024116,0.0000024066,0.0000024019,0.0000023989,0.0000023982, +0.0000023987,0.0000024007,0.0000024024,0.0000024025,0.0000024009, +0.0000023994,0.0000024010,0.0000024067,0.0000024140,0.0000024200, +0.0000024234,0.0000024244,0.0000024245,0.0000024217,0.0000024161, +0.0000024081,0.0000023992,0.0000023905,0.0000023813,0.0000023711, +0.0000023611,0.0000023524,0.0000023462,0.0000023434,0.0000023447, +0.0000023492,0.0000023566,0.0000023650,0.0000023741,0.0000023822, +0.0000023885,0.0000023942,0.0000023989,0.0000024029,0.0000024045, +0.0000024023,0.0000024030,0.0000024022,0.0000024012,0.0000023996, +0.0000023970,0.0000023940,0.0000023907,0.0000023867,0.0000023814, +0.0000023745,0.0000023658,0.0000023558,0.0000023461,0.0000023382, +0.0000023330,0.0000023294,0.0000023268,0.0000023243,0.0000023220, +0.0000023198,0.0000023173,0.0000023135,0.0000023081,0.0000023021, +0.0000022966,0.0000022918,0.0000022871,0.0000022817,0.0000022762, +0.0000022710,0.0000022661,0.0000022623,0.0000022603,0.0000022602, +0.0000022621,0.0000022640,0.0000022657,0.0000022657,0.0000022649, +0.0000022639,0.0000022640,0.0000022647,0.0000022656,0.0000022668, +0.0000022682,0.0000022696,0.0000022710,0.0000022719,0.0000022721, +0.0000022721,0.0000022727,0.0000022731,0.0000022730,0.0000022729, +0.0000022735,0.0000022747,0.0000022741,0.0000022728,0.0000022709, +0.0000022704,0.0000022708,0.0000022704,0.0000022687,0.0000022643, +0.0000022555,0.0000022407,0.0000022229,0.0000022070,0.0000021968, +0.0000021930,0.0000021931,0.0000021935,0.0000021938,0.0000021934, +0.0000021928,0.0000021925,0.0000021912,0.0000021890,0.0000021842, +0.0000021755,0.0000021638,0.0000021524,0.0000021418,0.0000021340, +0.0000021294,0.0000021292,0.0000021312,0.0000021343,0.0000021385, +0.0000021437,0.0000021488,0.0000021528,0.0000021554,0.0000021571, +0.0000021577,0.0000021575,0.0000021565,0.0000021551,0.0000021534, +0.0000021518,0.0000021501,0.0000021491,0.0000021490,0.0000021486, +0.0000021482,0.0000021472,0.0000021460,0.0000021454,0.0000021455, +0.0000021453,0.0000021436,0.0000021406,0.0000021374,0.0000021346, +0.0000021326,0.0000021294,0.0000021264,0.0000021240,0.0000021215, +0.0000021188,0.0000021161,0.0000021143,0.0000021131,0.0000021133, +0.0000021144,0.0000021170,0.0000021206,0.0000021248,0.0000021298, +0.0000021350,0.0000021390,0.0000021386,0.0000021343,0.0000021278, +0.0000021181,0.0000021112,0.0000021092,0.0000021102,0.0000021115, +0.0000021119,0.0000021128,0.0000021143,0.0000021152,0.0000021156, +0.0000021155,0.0000021152,0.0000021151,0.0000021147,0.0000021135, +0.0000021120,0.0000021107,0.0000021097,0.0000021087,0.0000021082, +0.0000021078,0.0000021082,0.0000021090,0.0000021094,0.0000021097, +0.0000021102,0.0000021105,0.0000021105,0.0000021102,0.0000021096, +0.0000021078,0.0000021056,0.0000021043,0.0000021041,0.0000021048, +0.0000021064,0.0000021095,0.0000021134,0.0000021168,0.0000021200, +0.0000021232,0.0000021261,0.0000021284,0.0000021300,0.0000021312, +0.0000021314,0.0000021304,0.0000021279,0.0000021237,0.0000021188, +0.0000021139,0.0000021112,0.0000021109,0.0000021109,0.0000021096, +0.0000021081,0.0000021088,0.0000021126,0.0000021187,0.0000021273, +0.0000021389,0.0000021496,0.0000021541,0.0000021533,0.0000021497, +0.0000021450,0.0000021405,0.0000021367,0.0000021340,0.0000021334, +0.0000021370,0.0000021457,0.0000021548,0.0000021617,0.0000021653, +0.0000021658,0.0000021612,0.0000021515,0.0000021455,0.0000021453, +0.0000021465,0.0000021466,0.0000021442,0.0000021396,0.0000021335, +0.0000021276,0.0000021237,0.0000021212,0.0000021181,0.0000021147, +0.0000021123,0.0000021124,0.0000021155,0.0000021208,0.0000021270, +0.0000021329,0.0000021370,0.0000021396,0.0000021418,0.0000021424, +0.0000021389,0.0000021324,0.0000021284,0.0000021275,0.0000021269, +0.0000021246,0.0000021201,0.0000021155,0.0000021155,0.0000021223, +0.0000021309,0.0000021346,0.0000021321,0.0000021249,0.0000021191, +0.0000021173,0.0000021163,0.0000021143,0.0000021125,0.0000021115, +0.0000021112,0.0000021112,0.0000021108,0.0000021100,0.0000021095, +0.0000021097,0.0000021113,0.0000021144,0.0000021185,0.0000021221, +0.0000021242,0.0000021256,0.0000021271,0.0000021285,0.0000021298, +0.0000021310,0.0000021312,0.0000021295,0.0000021260,0.0000021218, +0.0000021171,0.0000021126,0.0000021097,0.0000021092,0.0000021105, +0.0000021138,0.0000021190,0.0000021252,0.0000021301,0.0000021326, +0.0000021335,0.0000021335,0.0000021331,0.0000021331,0.0000021341, +0.0000021339,0.0000021305,0.0000021248,0.0000021228,0.0000021246, +0.0000021205,0.0000021041,0.0000020866,0.0000020791,0.0000020860, +0.0000021149,0.0000021517,0.0000021745,0.0000021860,0.0000021950, +0.0000022025,0.0000022081,0.0000022107,0.0000022096,0.0000022072, +0.0000022052,0.0000022031,0.0000022018,0.0000022025,0.0000022050, +0.0000022073,0.0000022086,0.0000022101,0.0000022118,0.0000022123, +0.0000022113,0.0000022081,0.0000022016,0.0000021883,0.0000021684, +0.0000021503,0.0000021422,0.0000021427,0.0000021448,0.0000021453, +0.0000021496,0.0000021644,0.0000021845,0.0000021984,0.0000022049, +0.0000022081,0.0000022095,0.0000022100,0.0000022126,0.0000022182, +0.0000022217,0.0000022192,0.0000022089,0.0000021953,0.0000021854, +0.0000021805,0.0000021847,0.0000021775,0.0000021574,0.0000021505, +0.0000021557,0.0000021687,0.0000021959,0.0000022275,0.0000022406, +0.0000022404,0.0000022419,0.0000022481,0.0000022543,0.0000022580, +0.0000022610,0.0000022639,0.0000022670,0.0000022721,0.0000022804, +0.0000022901,0.0000022980,0.0000023026,0.0000023036,0.0000023032, +0.0000023025,0.0000023026,0.0000023028,0.0000023022,0.0000023010, +0.0000022995,0.0000022976,0.0000022952,0.0000022925,0.0000022904, +0.0000022896,0.0000022900,0.0000022915,0.0000022934,0.0000022952, +0.0000022961,0.0000022960,0.0000022951,0.0000022936,0.0000022924, +0.0000022922,0.0000022927,0.0000022932,0.0000022939,0.0000022945, +0.0000022946,0.0000022944,0.0000022947,0.0000022956,0.0000022966, +0.0000022978,0.0000022997,0.0000023018,0.0000023035,0.0000023045, +0.0000023048,0.0000023040,0.0000023017,0.0000022974,0.0000022918, +0.0000022862,0.0000022808,0.0000022764,0.0000022734,0.0000022718, +0.0000022711,0.0000022713,0.0000022717,0.0000022706,0.0000022681, +0.0000022632,0.0000022576,0.0000022540,0.0000022530,0.0000022528, +0.0000022525,0.0000022534,0.0000022557,0.0000022581,0.0000022602, +0.0000022621,0.0000022624,0.0000022607,0.0000022572,0.0000022532, +0.0000022492,0.0000022452,0.0000022419,0.0000022396,0.0000022376, +0.0000022361,0.0000022350,0.0000022339,0.0000022327,0.0000022311, +0.0000022302,0.0000022295,0.0000022273,0.0000022237,0.0000022191, +0.0000022134,0.0000022067,0.0000022003,0.0000021950,0.0000021912, +0.0000021888,0.0000021877,0.0000021873,0.0000021860,0.0000021844, +0.0000021833,0.0000021810,0.0000021800,0.0000021819,0.0000021848, +0.0000021884,0.0000021950,0.0000022028,0.0000022099,0.0000022182, +0.0000022283,0.0000022393,0.0000022512,0.0000022626,0.0000022721, +0.0000022795,0.0000022840,0.0000022847,0.0000022827,0.0000022804, +0.0000022799,0.0000022802,0.0000022798,0.0000022784,0.0000022765, +0.0000022754,0.0000022750,0.0000022743,0.0000022727,0.0000022710, +0.0000022707,0.0000022712,0.0000022725,0.0000022744,0.0000022762, +0.0000022780,0.0000022800,0.0000022824,0.0000022855,0.0000022890, +0.0000022923,0.0000022952,0.0000022984,0.0000023011,0.0000023024, +0.0000023033,0.0000023046,0.0000023053,0.0000023066,0.0000023057, +0.0000023033,0.0000022984,0.0000022915,0.0000022844,0.0000022801, +0.0000022798,0.0000022838,0.0000022920,0.0000023016,0.0000023095, +0.0000023142,0.0000023166,0.0000023171,0.0000023165,0.0000023152, +0.0000023128,0.0000023093,0.0000023059,0.0000023024,0.0000023012, +0.0000023018,0.0000023041,0.0000023085,0.0000023143,0.0000023202, +0.0000023255,0.0000023302,0.0000023342,0.0000023373,0.0000023404, +0.0000023426,0.0000023419,0.0000023404,0.0000023366,0.0000023315, +0.0000023261,0.0000023212,0.0000023174,0.0000023148,0.0000023131, +0.0000023116,0.0000023107,0.0000023099,0.0000023107,0.0000023133, +0.0000023168,0.0000023202,0.0000023226,0.0000023230,0.0000023223, +0.0000023200,0.0000023172,0.0000023145,0.0000023126,0.0000023114, +0.0000023110,0.0000023109,0.0000023108,0.0000023103,0.0000023088, +0.0000023057,0.0000023005,0.0000022939,0.0000022869,0.0000022798, +0.0000022729,0.0000022666,0.0000022611,0.0000022563,0.0000022523, +0.0000022496,0.0000022485,0.0000022484,0.0000022493,0.0000022509, +0.0000022531,0.0000022556,0.0000022581,0.0000022599,0.0000022605, +0.0000022603,0.0000022598,0.0000022598,0.0000022610,0.0000022637, +0.0000022674,0.0000022707,0.0000022731,0.0000022741,0.0000022728, +0.0000022675,0.0000022593,0.0000022512,0.0000022459,0.0000022438, +0.0000022434,0.0000022435,0.0000022434,0.0000022429,0.0000022414, +0.0000022384,0.0000022342,0.0000022293,0.0000022251,0.0000022219, +0.0000022198,0.0000022180,0.0000022166,0.0000022156,0.0000022148, +0.0000022141,0.0000022131,0.0000022122,0.0000022113,0.0000022102, +0.0000022092,0.0000022079,0.0000022062,0.0000022051,0.0000022035, +0.0000022020,0.0000022011,0.0000022001,0.0000022007,0.0000022030, +0.0000022064,0.0000022106,0.0000022161,0.0000022231,0.0000022308, +0.0000022387,0.0000022462,0.0000022528,0.0000022576,0.0000022606, +0.0000022626,0.0000022632,0.0000022627,0.0000022615,0.0000022604, +0.0000022596,0.0000022586,0.0000022572,0.0000022559,0.0000022543, +0.0000022531,0.0000022518,0.0000022508,0.0000022493,0.0000022473, +0.0000022455,0.0000022453,0.0000022457,0.0000022459,0.0000022455, +0.0000022447,0.0000022442,0.0000022444,0.0000022449,0.0000022456, +0.0000022462,0.0000022471,0.0000022483,0.0000022495,0.0000022504, +0.0000022507,0.0000022506,0.0000022508,0.0000022512,0.0000022513, +0.0000022511,0.0000022510,0.0000022509,0.0000022506,0.0000022510, +0.0000022526,0.0000022556,0.0000022610,0.0000022680,0.0000022758, +0.0000022834,0.0000022892,0.0000022929,0.0000022949,0.0000022959, +0.0000022955,0.0000022939,0.0000022907,0.0000022874,0.0000022846, +0.0000022821,0.0000022793,0.0000022766,0.0000022745,0.0000022725, +0.0000022705,0.0000022692,0.0000022692,0.0000022705,0.0000022733, +0.0000022773,0.0000022817,0.0000022856,0.0000022874,0.0000022874, +0.0000022875,0.0000022872,0.0000022843,0.0000022787,0.0000022715, +0.0000022652,0.0000022606,0.0000022576,0.0000022564,0.0000022569, +0.0000022589,0.0000022606,0.0000022597,0.0000022560,0.0000022513, +0.0000022473,0.0000022443,0.0000022415,0.0000022401,0.0000022401, +0.0000022415,0.0000022454,0.0000022497,0.0000022530,0.0000022552, +0.0000022558,0.0000022554,0.0000022546,0.0000022537,0.0000022530, +0.0000022520,0.0000022506,0.0000022503,0.0000022522,0.0000022553, +0.0000022569,0.0000022559,0.0000022571,0.0000022688,0.0000022753, +0.0000022725,0.0000022719,0.0000022826,0.0000022971,0.0000023039, +0.0000023177,0.0000023238,0.0000023167,0.0000023088,0.0000022910, +0.0000022735,0.0000022644,0.0000022620,0.0000022710,0.0000022830, +0.0000022849,0.0000022785,0.0000022748,0.0000022777,0.0000022812, +0.0000022797,0.0000022776,0.0000022782,0.0000022846,0.0000022932, +0.0000023044,0.0000023230,0.0000023428,0.0000023502,0.0000023550, +0.0000023507,0.0000023299,0.0000023205,0.0000023220,0.0000023214, +0.0000023198,0.0000023156,0.0000023071,0.0000022988,0.0000022963, +0.0000022981,0.0000022989,0.0000022965,0.0000022916,0.0000022875, +0.0000022888,0.0000022945,0.0000023006,0.0000023058,0.0000023087, +0.0000023095,0.0000023079,0.0000023032,0.0000022952,0.0000022866, +0.0000022827,0.0000022818,0.0000022814,0.0000022832,0.0000022886, +0.0000022939,0.0000022957,0.0000022948,0.0000022954,0.0000022958, +0.0000022967,0.0000022974,0.0000022969,0.0000022982,0.0000023037, +0.0000023094,0.0000023101,0.0000023065,0.0000022984,0.0000022878, +0.0000022841,0.0000022790,0.0000022691,0.0000022538,0.0000022253, +0.0000022108,0.0000022209,0.0000022302,0.0000022312,0.0000022335, +0.0000022296,0.0000022023,0.0000021778,0.0000021844,0.0000022078, +0.0000022268,0.0000022377,0.0000022473,0.0000022584,0.0000022677, +0.0000022738,0.0000022756,0.0000022736,0.0000022696,0.0000022649, +0.0000022593,0.0000022513,0.0000022416,0.0000022354,0.0000022364, +0.0000022460,0.0000022610,0.0000022723,0.0000022737,0.0000022641, +0.0000022498,0.0000022363,0.0000022182,0.0000022039,0.0000022029, +0.0000022098,0.0000022227,0.0000022335,0.0000022363,0.0000022355, +0.0000022338,0.0000022333,0.0000022338,0.0000022328,0.0000022316, +0.0000022340,0.0000022387,0.0000022452,0.0000022562,0.0000022664, +0.0000022705,0.0000022709,0.0000022700,0.0000022682,0.0000022672, +0.0000022666,0.0000022671,0.0000022677,0.0000022686,0.0000022721, +0.0000022746,0.0000022770,0.0000022863,0.0000022998,0.0000023095, +0.0000023136,0.0000023148,0.0000023158,0.0000023176,0.0000023204, +0.0000023241,0.0000023281,0.0000023315,0.0000023348,0.0000023393, +0.0000023443,0.0000023487,0.0000023530,0.0000023569,0.0000023595, +0.0000023606,0.0000023609,0.0000023611,0.0000023610,0.0000023601, +0.0000023597,0.0000023586,0.0000023552,0.0000023486,0.0000023386, +0.0000023273,0.0000023167,0.0000023085,0.0000023051,0.0000023046, +0.0000023067,0.0000023095,0.0000023120,0.0000023140,0.0000023158, +0.0000023178,0.0000023197,0.0000023217,0.0000023234,0.0000023243, +0.0000023244,0.0000023239,0.0000023228,0.0000023212,0.0000023210, +0.0000023228,0.0000023259,0.0000023296,0.0000023315,0.0000023330, +0.0000023349,0.0000023364,0.0000023364,0.0000023339,0.0000023280, +0.0000023207,0.0000023135,0.0000023069,0.0000023010,0.0000022957, +0.0000022921,0.0000022931,0.0000023017,0.0000023135,0.0000023231, +0.0000023283,0.0000023305,0.0000023317,0.0000023333,0.0000023358, +0.0000023381,0.0000023388,0.0000023385,0.0000023395,0.0000023440, +0.0000023515,0.0000023581,0.0000023617,0.0000023632,0.0000023638, +0.0000023655,0.0000023689,0.0000023729,0.0000023769,0.0000023842, +0.0000023951,0.0000024040,0.0000024057,0.0000024008,0.0000023951, +0.0000023943,0.0000023929,0.0000023877,0.0000023851,0.0000023851, +0.0000023831,0.0000023793,0.0000023771,0.0000023771,0.0000023781, +0.0000023792,0.0000023795,0.0000023790,0.0000023782,0.0000023773, +0.0000023759,0.0000023735,0.0000023703,0.0000023669,0.0000023632, +0.0000023591,0.0000023546,0.0000023501,0.0000023466,0.0000023432, +0.0000023390,0.0000023339,0.0000023293,0.0000023276,0.0000023282, +0.0000023292,0.0000023292,0.0000023284,0.0000023271,0.0000023254, +0.0000023233,0.0000023209,0.0000023181,0.0000023147,0.0000023104, +0.0000023053,0.0000022994,0.0000022936,0.0000022882,0.0000022826, +0.0000022773,0.0000022727,0.0000022691,0.0000022654,0.0000022620, +0.0000022594,0.0000022576,0.0000022560,0.0000022543,0.0000022530, +0.0000022518,0.0000022512,0.0000022510,0.0000022506,0.0000022495, +0.0000022475,0.0000022448,0.0000022429,0.0000022418,0.0000022413, +0.0000022410,0.0000022412,0.0000022407,0.0000022407,0.0000022408, +0.0000022409,0.0000022408,0.0000022395,0.0000022374,0.0000022347, +0.0000022328,0.0000022313,0.0000022302,0.0000022293,0.0000022291, +0.0000022306,0.0000022335,0.0000022370,0.0000022404,0.0000022440, +0.0000022477,0.0000022506,0.0000022514,0.0000022504,0.0000022490, +0.0000022468,0.0000022445,0.0000022425,0.0000022412,0.0000022408, +0.0000022419,0.0000022439,0.0000022457,0.0000022476,0.0000022500, +0.0000022524,0.0000022540,0.0000022551,0.0000022561,0.0000022565, +0.0000022568,0.0000022560,0.0000022544,0.0000022520,0.0000022488, +0.0000022457,0.0000022437,0.0000022426,0.0000022413,0.0000022395, +0.0000022386,0.0000022388,0.0000022391,0.0000022390,0.0000022385, +0.0000022374,0.0000022357,0.0000022329,0.0000022305,0.0000022291, +0.0000022265,0.0000022251,0.0000022264,0.0000022308,0.0000022375, +0.0000022439,0.0000022482,0.0000022511,0.0000022561,0.0000022641, +0.0000022731,0.0000022815,0.0000022864,0.0000022875,0.0000022868, +0.0000022856,0.0000022845,0.0000022836,0.0000022827,0.0000022832, +0.0000022844,0.0000022865,0.0000022908,0.0000022959,0.0000022943, +0.0000022905,0.0000022927,0.0000022961,0.0000022970,0.0000023112, +0.0000023344,0.0000023459,0.0000023426,0.0000023294,0.0000023199, +0.0000023175,0.0000023168,0.0000023138,0.0000023092,0.0000023065, +0.0000023053,0.0000023038,0.0000022995,0.0000022916,0.0000022825, +0.0000022726,0.0000022608,0.0000022498,0.0000022411,0.0000022335, +0.0000022273,0.0000022225,0.0000022193,0.0000022175,0.0000022161, +0.0000022147,0.0000022124,0.0000022093,0.0000022051,0.0000022003, +0.0000021959,0.0000021953,0.0000021975,0.0000022040,0.0000022095, +0.0000022099,0.0000022044,0.0000021982,0.0000021947,0.0000021952, +0.0000021989,0.0000022023,0.0000022037,0.0000022036,0.0000022026, +0.0000022009,0.0000021977,0.0000021935,0.0000021897,0.0000021861, +0.0000021829,0.0000021829,0.0000021854,0.0000021918,0.0000022007, +0.0000022104,0.0000022177,0.0000022221,0.0000022232,0.0000022195, +0.0000022122,0.0000022021,0.0000021928,0.0000021922,0.0000022104, +0.0000022529,0.0000022970,0.0000023099,0.0000022883,0.0000022554, +0.0000022322,0.0000022222,0.0000022187,0.0000022131,0.0000022026, +0.0000021913,0.0000021820,0.0000021744,0.0000021697,0.0000021692, +0.0000021702,0.0000021681,0.0000021636,0.0000021624,0.0000021654, +0.0000021698,0.0000021732,0.0000021771,0.0000021813,0.0000021849, +0.0000021891,0.0000021950,0.0000022002,0.0000022019,0.0000022005, +0.0000021961,0.0000021883,0.0000021789,0.0000021698,0.0000021622, +0.0000021570,0.0000021546,0.0000021525,0.0000021477,0.0000021420, +0.0000021362,0.0000021287,0.0000021220,0.0000021206,0.0000021227, +0.0000021286,0.0000021378,0.0000021490,0.0000021610,0.0000021723, +0.0000021797,0.0000021830,0.0000021863,0.0000021929,0.0000022029, +0.0000022128,0.0000022169,0.0000022143,0.0000022062,0.0000021971, +0.0000021898,0.0000021840,0.0000021784,0.0000021730,0.0000021682, +0.0000021642,0.0000021615,0.0000021608,0.0000021616,0.0000021632, +0.0000021651,0.0000021675,0.0000021707,0.0000021755,0.0000021815, +0.0000021866,0.0000021895,0.0000021896,0.0000021868,0.0000021812, +0.0000021744,0.0000021672,0.0000021599,0.0000021531,0.0000021474, +0.0000021435,0.0000021419,0.0000021427,0.0000021445,0.0000021449, +0.0000021431,0.0000021393,0.0000021356,0.0000021345,0.0000021358, +0.0000021400,0.0000021448,0.0000021501,0.0000021549,0.0000021575, +0.0000021584,0.0000021583,0.0000021560,0.0000021476,0.0000021347, +0.0000021221,0.0000021128,0.0000021068,0.0000021028,0.0000020995, +0.0000020967,0.0000020961,0.0000021021,0.0000021176,0.0000021366, +0.0000021501,0.0000021565,0.0000021610,0.0000021673,0.0000021755, +0.0000021837,0.0000021919,0.0000022010,0.0000022106,0.0000022203, +0.0000022308,0.0000022440,0.0000022603,0.0000022780,0.0000022960, +0.0000023138,0.0000023291,0.0000023370,0.0000023347,0.0000023284, +0.0000023254,0.0000023309,0.0000023446,0.0000023651,0.0000023921, +0.0000024227,0.0000024483,0.0000024618,0.0000024639,0.0000024613, +0.0000024596,0.0000024627,0.0000024684,0.0000024710,0.0000024647, +0.0000024508,0.0000024368,0.0000024304,0.0000024313,0.0000024327, +0.0000024321,0.0000024324,0.0000024372,0.0000024459,0.0000024539, +0.0000024573,0.0000024548,0.0000024474,0.0000024358,0.0000024216, +0.0000024082,0.0000024011,0.0000024007,0.0000024047,0.0000024096, +0.0000024132,0.0000024147,0.0000024139,0.0000024112,0.0000024069, +0.0000024020,0.0000023979,0.0000023965,0.0000023973,0.0000023997, +0.0000024011,0.0000024011,0.0000024001,0.0000024002,0.0000024049, +0.0000024140,0.0000024221,0.0000024259,0.0000024255,0.0000024228, +0.0000024171,0.0000024089,0.0000023994,0.0000023892,0.0000023790, +0.0000023697,0.0000023604,0.0000023496,0.0000023376,0.0000023256, +0.0000023147,0.0000023066,0.0000023032,0.0000023043,0.0000023095, +0.0000023176,0.0000023271,0.0000023373,0.0000023473,0.0000023569, +0.0000023671,0.0000023773,0.0000023856,0.0000023923,0.0000023975, +0.0000024018,0.0000024046,0.0000024066,0.0000024077,0.0000024063, +0.0000024039,0.0000024007,0.0000023971,0.0000023924,0.0000023858, +0.0000023768,0.0000023662,0.0000023552,0.0000023447,0.0000023355, +0.0000023289,0.0000023247,0.0000023218,0.0000023190,0.0000023165, +0.0000023130,0.0000023077,0.0000023009,0.0000022943,0.0000022884, +0.0000022833,0.0000022786,0.0000022735,0.0000022681,0.0000022632, +0.0000022591,0.0000022569,0.0000022567,0.0000022581,0.0000022612, +0.0000022648,0.0000022670,0.0000022689,0.0000022699,0.0000022713, +0.0000022731,0.0000022746,0.0000022752,0.0000022753,0.0000022756, +0.0000022767,0.0000022775,0.0000022775,0.0000022767,0.0000022755, +0.0000022746,0.0000022733,0.0000022714,0.0000022690,0.0000022687, +0.0000022696,0.0000022703,0.0000022695,0.0000022683,0.0000022674, +0.0000022665,0.0000022651,0.0000022635,0.0000022624,0.0000022605, +0.0000022528,0.0000022390,0.0000022230,0.0000022094,0.0000022009, +0.0000021969,0.0000021959,0.0000021961,0.0000021958,0.0000021949, +0.0000021934,0.0000021915,0.0000021902,0.0000021881,0.0000021855, +0.0000021808,0.0000021755,0.0000021684,0.0000021608,0.0000021539, +0.0000021484,0.0000021450,0.0000021436,0.0000021441,0.0000021463, +0.0000021499,0.0000021527,0.0000021544,0.0000021552,0.0000021551, +0.0000021543,0.0000021532,0.0000021521,0.0000021511,0.0000021494, +0.0000021485,0.0000021486,0.0000021488,0.0000021486,0.0000021479, +0.0000021465,0.0000021451,0.0000021441,0.0000021436,0.0000021424, +0.0000021400,0.0000021368,0.0000021343,0.0000021329,0.0000021312, +0.0000021291,0.0000021270,0.0000021250,0.0000021230,0.0000021199, +0.0000021166,0.0000021141,0.0000021123,0.0000021106,0.0000021087, +0.0000021077,0.0000021071,0.0000021081,0.0000021112,0.0000021163, +0.0000021229,0.0000021285,0.0000021319,0.0000021302,0.0000021240, +0.0000021145,0.0000021075,0.0000021060,0.0000021072,0.0000021088, +0.0000021099,0.0000021106,0.0000021113,0.0000021119,0.0000021120, +0.0000021118,0.0000021115,0.0000021107,0.0000021093,0.0000021078, +0.0000021065,0.0000021051,0.0000021035,0.0000021020,0.0000021012, +0.0000021017,0.0000021026,0.0000021029,0.0000021032,0.0000021044, +0.0000021062,0.0000021082,0.0000021096,0.0000021099,0.0000021091, +0.0000021071,0.0000021051,0.0000021035,0.0000021023,0.0000021015, +0.0000021024,0.0000021044,0.0000021069,0.0000021101,0.0000021141, +0.0000021184,0.0000021218,0.0000021248,0.0000021270,0.0000021278, +0.0000021271,0.0000021249,0.0000021215,0.0000021169,0.0000021118, +0.0000021082,0.0000021077,0.0000021086,0.0000021087,0.0000021078, +0.0000021085,0.0000021120,0.0000021175,0.0000021258,0.0000021384, +0.0000021498,0.0000021532,0.0000021513,0.0000021469,0.0000021424, +0.0000021385,0.0000021359,0.0000021351,0.0000021366,0.0000021416, +0.0000021488,0.0000021562,0.0000021617,0.0000021642,0.0000021638, +0.0000021575,0.0000021479,0.0000021425,0.0000021420,0.0000021425, +0.0000021418,0.0000021391,0.0000021345,0.0000021282,0.0000021229, +0.0000021206,0.0000021194,0.0000021169,0.0000021137,0.0000021118, +0.0000021125,0.0000021163,0.0000021220,0.0000021282,0.0000021337, +0.0000021369,0.0000021385,0.0000021402,0.0000021405,0.0000021368, +0.0000021309,0.0000021274,0.0000021264,0.0000021254,0.0000021230, +0.0000021191,0.0000021145,0.0000021125,0.0000021162,0.0000021243, +0.0000021300,0.0000021296,0.0000021234,0.0000021168,0.0000021138, +0.0000021119,0.0000021086,0.0000021052,0.0000021030,0.0000021015, +0.0000021004,0.0000020995,0.0000020987,0.0000020983,0.0000020988, +0.0000021007,0.0000021037,0.0000021076,0.0000021112,0.0000021132, +0.0000021140,0.0000021148,0.0000021160,0.0000021176,0.0000021189, +0.0000021191,0.0000021170,0.0000021131,0.0000021090,0.0000021047, +0.0000021000,0.0000020964,0.0000020955,0.0000020966,0.0000020997, +0.0000021043,0.0000021102,0.0000021164,0.0000021216,0.0000021259, +0.0000021292,0.0000021308,0.0000021305,0.0000021301,0.0000021302, +0.0000021298,0.0000021271,0.0000021225,0.0000021215,0.0000021216, +0.0000021137,0.0000020952,0.0000020798,0.0000020764,0.0000020888, +0.0000021237,0.0000021578,0.0000021767,0.0000021876,0.0000021967, +0.0000022034,0.0000022077,0.0000022089,0.0000022081,0.0000022067, +0.0000022048,0.0000022030,0.0000022028,0.0000022048,0.0000022072, +0.0000022083,0.0000022087,0.0000022092,0.0000022095,0.0000022086, +0.0000022057,0.0000022008,0.0000021929,0.0000021793,0.0000021605, +0.0000021454,0.0000021414,0.0000021438,0.0000021454,0.0000021466, +0.0000021556,0.0000021739,0.0000021911,0.0000022002,0.0000022044, +0.0000022066,0.0000022067,0.0000022066,0.0000022092,0.0000022149, +0.0000022174,0.0000022113,0.0000021983,0.0000021848,0.0000021789, +0.0000021803,0.0000021787,0.0000021601,0.0000021441,0.0000021455, +0.0000021552,0.0000021766,0.0000022106,0.0000022342,0.0000022385, +0.0000022400,0.0000022452,0.0000022519,0.0000022562,0.0000022588, +0.0000022612,0.0000022649,0.0000022711,0.0000022798,0.0000022890, +0.0000022967,0.0000023013,0.0000023030,0.0000023030,0.0000023030, +0.0000023035,0.0000023039,0.0000023038,0.0000023033,0.0000023024, +0.0000023009,0.0000022987,0.0000022960,0.0000022933,0.0000022915, +0.0000022909,0.0000022914,0.0000022927,0.0000022944,0.0000022956, +0.0000022957,0.0000022952,0.0000022939,0.0000022926,0.0000022920, +0.0000022922,0.0000022925,0.0000022932,0.0000022938,0.0000022940, +0.0000022937,0.0000022935,0.0000022938,0.0000022945,0.0000022952, +0.0000022961,0.0000022970,0.0000022974,0.0000022973,0.0000022967, +0.0000022954,0.0000022929,0.0000022893,0.0000022852,0.0000022816, +0.0000022784,0.0000022758,0.0000022737,0.0000022715,0.0000022688, +0.0000022654,0.0000022611,0.0000022559,0.0000022500,0.0000022436, +0.0000022379,0.0000022344,0.0000022336,0.0000022337,0.0000022339, +0.0000022354,0.0000022391,0.0000022430,0.0000022459,0.0000022488, +0.0000022518,0.0000022536,0.0000022535,0.0000022514,0.0000022481, +0.0000022439,0.0000022394,0.0000022361,0.0000022337,0.0000022312, +0.0000022289,0.0000022265,0.0000022238,0.0000022206,0.0000022172, +0.0000022138,0.0000022098,0.0000022043,0.0000021976,0.0000021905, +0.0000021827,0.0000021746,0.0000021684,0.0000021653,0.0000021641, +0.0000021632,0.0000021629,0.0000021628,0.0000021620,0.0000021610, +0.0000021595,0.0000021569,0.0000021557,0.0000021567,0.0000021581, +0.0000021617,0.0000021693,0.0000021786,0.0000021874,0.0000021972, +0.0000022077,0.0000022182,0.0000022287,0.0000022391,0.0000022497, +0.0000022604,0.0000022688,0.0000022735,0.0000022753,0.0000022760, +0.0000022769,0.0000022780,0.0000022781,0.0000022769,0.0000022753, +0.0000022744,0.0000022737,0.0000022726,0.0000022710,0.0000022694, +0.0000022691,0.0000022698,0.0000022713,0.0000022734,0.0000022755, +0.0000022773,0.0000022797,0.0000022835,0.0000022879,0.0000022915, +0.0000022942,0.0000022966,0.0000022977,0.0000022972,0.0000022962, +0.0000022956,0.0000022963,0.0000022985,0.0000023019,0.0000023049, +0.0000023066,0.0000023068,0.0000023042,0.0000022980,0.0000022897, +0.0000022818,0.0000022774,0.0000022762,0.0000022798,0.0000022881, +0.0000022983,0.0000023074,0.0000023133,0.0000023155,0.0000023147, +0.0000023133,0.0000023105,0.0000023067,0.0000023026,0.0000023001, +0.0000022986,0.0000022994,0.0000023020,0.0000023057,0.0000023095, +0.0000023133,0.0000023170,0.0000023202,0.0000023231,0.0000023265, +0.0000023306,0.0000023344,0.0000023371,0.0000023363,0.0000023356, +0.0000023327,0.0000023284,0.0000023237,0.0000023193,0.0000023157, +0.0000023131,0.0000023112,0.0000023096,0.0000023089,0.0000023096, +0.0000023117,0.0000023150,0.0000023184,0.0000023207,0.0000023211, +0.0000023198,0.0000023181,0.0000023165,0.0000023153,0.0000023146, +0.0000023145,0.0000023147,0.0000023148,0.0000023144,0.0000023133, +0.0000023109,0.0000023065,0.0000023007,0.0000022943,0.0000022879, +0.0000022816,0.0000022757,0.0000022707,0.0000022668,0.0000022641, +0.0000022627,0.0000022620,0.0000022620,0.0000022628,0.0000022645, +0.0000022663,0.0000022683,0.0000022699,0.0000022707,0.0000022707, +0.0000022703,0.0000022698,0.0000022698,0.0000022706,0.0000022724, +0.0000022753,0.0000022781,0.0000022801,0.0000022815,0.0000022810, +0.0000022767,0.0000022695,0.0000022619,0.0000022562,0.0000022536, +0.0000022533,0.0000022536,0.0000022540,0.0000022539,0.0000022529, +0.0000022503,0.0000022465,0.0000022421,0.0000022384,0.0000022354, +0.0000022330,0.0000022311,0.0000022292,0.0000022276,0.0000022261, +0.0000022246,0.0000022232,0.0000022218,0.0000022204,0.0000022189, +0.0000022177,0.0000022161,0.0000022141,0.0000022120,0.0000022097, +0.0000022072,0.0000022040,0.0000021996,0.0000021963,0.0000021925, +0.0000021901,0.0000021875,0.0000021852,0.0000021854,0.0000021877, +0.0000021916,0.0000021969,0.0000022040,0.0000022118,0.0000022197, +0.0000022285,0.0000022369,0.0000022436,0.0000022488,0.0000022526, +0.0000022551,0.0000022562,0.0000022560,0.0000022549,0.0000022533, +0.0000022521,0.0000022508,0.0000022490,0.0000022465,0.0000022431, +0.0000022395,0.0000022370,0.0000022352,0.0000022329,0.0000022301, +0.0000022278,0.0000022266,0.0000022259,0.0000022251,0.0000022245, +0.0000022243,0.0000022243,0.0000022250,0.0000022264,0.0000022281, +0.0000022295,0.0000022304,0.0000022313,0.0000022326,0.0000022349, +0.0000022369,0.0000022384,0.0000022390,0.0000022390,0.0000022389, +0.0000022395,0.0000022416,0.0000022460,0.0000022523,0.0000022597, +0.0000022673,0.0000022739,0.0000022788,0.0000022820,0.0000022838, +0.0000022842,0.0000022835,0.0000022812,0.0000022779,0.0000022747, +0.0000022715,0.0000022679,0.0000022639,0.0000022602,0.0000022570, +0.0000022540,0.0000022515,0.0000022502,0.0000022506,0.0000022527, +0.0000022564,0.0000022617,0.0000022677,0.0000022734,0.0000022780, +0.0000022825,0.0000022861,0.0000022870,0.0000022850,0.0000022796, +0.0000022725,0.0000022665,0.0000022625,0.0000022594,0.0000022575, +0.0000022575,0.0000022598,0.0000022623,0.0000022623,0.0000022600, +0.0000022553,0.0000022497,0.0000022448,0.0000022415,0.0000022404, +0.0000022410,0.0000022436,0.0000022478,0.0000022526,0.0000022567, +0.0000022600,0.0000022612,0.0000022603,0.0000022562,0.0000022523, +0.0000022490,0.0000022455,0.0000022432,0.0000022443,0.0000022478, +0.0000022507,0.0000022528,0.0000022523,0.0000022588,0.0000022719, +0.0000022729,0.0000022709,0.0000022792,0.0000022949,0.0000023016, +0.0000023156,0.0000023228,0.0000023151,0.0000023064,0.0000022867, +0.0000022704,0.0000022593,0.0000022573,0.0000022685,0.0000022808, +0.0000022824,0.0000022776,0.0000022772,0.0000022817,0.0000022847, +0.0000022831,0.0000022810,0.0000022801,0.0000022845,0.0000022927, +0.0000023017,0.0000023177,0.0000023379,0.0000023494,0.0000023549, +0.0000023561,0.0000023387,0.0000023238,0.0000023241,0.0000023249, +0.0000023228,0.0000023202,0.0000023143,0.0000023060,0.0000022985, +0.0000022963,0.0000022944,0.0000022906,0.0000022865,0.0000022838, +0.0000022847,0.0000022896,0.0000022958,0.0000023011,0.0000023042, +0.0000023050,0.0000023036,0.0000022992,0.0000022927,0.0000022875, +0.0000022866,0.0000022882,0.0000022882,0.0000022883,0.0000022902, +0.0000022919,0.0000022914,0.0000022898,0.0000022912,0.0000022937, +0.0000022957,0.0000022964,0.0000022957,0.0000022962,0.0000023017, +0.0000023090,0.0000023119,0.0000023095,0.0000023024,0.0000022921, +0.0000022858,0.0000022814,0.0000022711,0.0000022569,0.0000022287, +0.0000022089,0.0000022165,0.0000022257,0.0000022259,0.0000022283, +0.0000022262,0.0000022021,0.0000021749,0.0000021785,0.0000022029, +0.0000022238,0.0000022351,0.0000022441,0.0000022552,0.0000022650, +0.0000022713,0.0000022734,0.0000022717,0.0000022678,0.0000022633, +0.0000022573,0.0000022489,0.0000022397,0.0000022342,0.0000022346, +0.0000022424,0.0000022569,0.0000022704,0.0000022753,0.0000022690, +0.0000022555,0.0000022430,0.0000022264,0.0000022081,0.0000022023, +0.0000022042,0.0000022133,0.0000022256,0.0000022324,0.0000022336, +0.0000022334,0.0000022333,0.0000022343,0.0000022352,0.0000022350, +0.0000022360,0.0000022397,0.0000022443,0.0000022502,0.0000022584, +0.0000022646,0.0000022668,0.0000022669,0.0000022648,0.0000022632, +0.0000022628,0.0000022627,0.0000022634,0.0000022639,0.0000022661, +0.0000022691,0.0000022710,0.0000022792,0.0000022955,0.0000023082, +0.0000023125,0.0000023132,0.0000023132,0.0000023138,0.0000023158, +0.0000023184,0.0000023216,0.0000023252,0.0000023284,0.0000023316, +0.0000023358,0.0000023402,0.0000023440,0.0000023479,0.0000023515, +0.0000023537,0.0000023549,0.0000023555,0.0000023556,0.0000023556, +0.0000023559,0.0000023570,0.0000023581,0.0000023584,0.0000023572, +0.0000023516,0.0000023419,0.0000023293,0.0000023165,0.0000023069, +0.0000023021,0.0000023007,0.0000023027,0.0000023055,0.0000023085, +0.0000023113,0.0000023139,0.0000023158,0.0000023172,0.0000023187, +0.0000023201,0.0000023208,0.0000023212,0.0000023211,0.0000023209, +0.0000023222,0.0000023244,0.0000023281,0.0000023316,0.0000023328, +0.0000023333,0.0000023342,0.0000023350,0.0000023346,0.0000023314, +0.0000023257,0.0000023189,0.0000023118,0.0000023050,0.0000022987, +0.0000022936,0.0000022915,0.0000022951,0.0000023050,0.0000023153, +0.0000023234,0.0000023294,0.0000023354,0.0000023408,0.0000023447, +0.0000023462,0.0000023455,0.0000023438,0.0000023427,0.0000023439, +0.0000023481,0.0000023528,0.0000023569,0.0000023586,0.0000023591, +0.0000023600,0.0000023628,0.0000023670,0.0000023711,0.0000023759, +0.0000023843,0.0000023955,0.0000024040,0.0000024061,0.0000024023, +0.0000023961,0.0000023945,0.0000023951,0.0000023921,0.0000023870, +0.0000023845,0.0000023835,0.0000023814,0.0000023787,0.0000023772, +0.0000023773,0.0000023780,0.0000023783,0.0000023778,0.0000023767, +0.0000023750,0.0000023732,0.0000023710,0.0000023685,0.0000023657, +0.0000023627,0.0000023591,0.0000023549,0.0000023510,0.0000023477, +0.0000023441,0.0000023390,0.0000023333,0.0000023292,0.0000023276, +0.0000023274,0.0000023272,0.0000023263,0.0000023250,0.0000023237, +0.0000023218,0.0000023193,0.0000023162,0.0000023123,0.0000023075, +0.0000023021,0.0000022964,0.0000022905,0.0000022851,0.0000022798, +0.0000022746,0.0000022701,0.0000022665,0.0000022640,0.0000022621, +0.0000022604,0.0000022593,0.0000022582,0.0000022570,0.0000022559, +0.0000022550,0.0000022544,0.0000022542,0.0000022541,0.0000022537, +0.0000022525,0.0000022505,0.0000022481,0.0000022462,0.0000022452, +0.0000022444,0.0000022435,0.0000022427,0.0000022419,0.0000022413, +0.0000022409,0.0000022404,0.0000022395,0.0000022379,0.0000022358, +0.0000022329,0.0000022306,0.0000022287,0.0000022267,0.0000022246, +0.0000022230,0.0000022228,0.0000022239,0.0000022261,0.0000022288, +0.0000022318,0.0000022353,0.0000022387,0.0000022407,0.0000022412, +0.0000022411,0.0000022403,0.0000022391,0.0000022379,0.0000022370, +0.0000022367,0.0000022375,0.0000022394,0.0000022416,0.0000022439, +0.0000022469,0.0000022500,0.0000022523,0.0000022536,0.0000022546, +0.0000022553,0.0000022559,0.0000022561,0.0000022559,0.0000022562, +0.0000022539,0.0000022513,0.0000022494,0.0000022484,0.0000022478, +0.0000022465,0.0000022455,0.0000022450,0.0000022451,0.0000022449, +0.0000022444,0.0000022434,0.0000022418,0.0000022393,0.0000022360, +0.0000022321,0.0000022281,0.0000022234,0.0000022193,0.0000022175, +0.0000022197,0.0000022266,0.0000022349,0.0000022395,0.0000022415, +0.0000022450,0.0000022520,0.0000022617,0.0000022695,0.0000022738, +0.0000022760,0.0000022769,0.0000022776,0.0000022790,0.0000022805, +0.0000022826,0.0000022838,0.0000022836,0.0000022830,0.0000022859, +0.0000022893,0.0000022889,0.0000022891,0.0000022940,0.0000022959, +0.0000022976,0.0000023154,0.0000023378,0.0000023450,0.0000023391, +0.0000023251,0.0000023159,0.0000023121,0.0000023088,0.0000023041, +0.0000023018,0.0000023027,0.0000023037,0.0000023014,0.0000022944, +0.0000022844,0.0000022730,0.0000022605,0.0000022495,0.0000022404, +0.0000022317,0.0000022241,0.0000022186,0.0000022148,0.0000022122, +0.0000022101,0.0000022081,0.0000022062,0.0000022043,0.0000022021, +0.0000022001,0.0000022003,0.0000022033,0.0000022080,0.0000022106, +0.0000022078,0.0000022012,0.0000021957,0.0000021957,0.0000022000, +0.0000022080,0.0000022144,0.0000022178,0.0000022189,0.0000022188, +0.0000022181,0.0000022169,0.0000022153,0.0000022128,0.0000022095, +0.0000022058,0.0000022016,0.0000021972,0.0000021935,0.0000021910, +0.0000021904,0.0000021916,0.0000021956,0.0000022025,0.0000022117, +0.0000022200,0.0000022246,0.0000022258,0.0000022214,0.0000022108, +0.0000021982,0.0000021961,0.0000022188,0.0000022656,0.0000023021, +0.0000023021,0.0000022752,0.0000022432,0.0000022247,0.0000022187, +0.0000022165,0.0000022103,0.0000021989,0.0000021868,0.0000021773, +0.0000021709,0.0000021689,0.0000021703,0.0000021709,0.0000021685, +0.0000021659,0.0000021663,0.0000021696,0.0000021733,0.0000021758, +0.0000021780,0.0000021807,0.0000021839,0.0000021881,0.0000021926, +0.0000021948,0.0000021941,0.0000021900,0.0000021827,0.0000021738, +0.0000021654,0.0000021587,0.0000021540,0.0000021516,0.0000021496, +0.0000021457,0.0000021409,0.0000021363,0.0000021303,0.0000021250, +0.0000021247,0.0000021290,0.0000021354,0.0000021430,0.0000021524, +0.0000021636,0.0000021736,0.0000021790,0.0000021819,0.0000021868, +0.0000021954,0.0000022064,0.0000022159,0.0000022189,0.0000022163, +0.0000022108,0.0000022062,0.0000022034,0.0000022011,0.0000021980, +0.0000021936,0.0000021881,0.0000021824,0.0000021778,0.0000021752, +0.0000021748,0.0000021758,0.0000021783,0.0000021817,0.0000021857, +0.0000021901,0.0000021941,0.0000021965,0.0000021967,0.0000021947, +0.0000021900,0.0000021833,0.0000021759,0.0000021685,0.0000021617, +0.0000021560,0.0000021511,0.0000021465,0.0000021425,0.0000021412, +0.0000021422,0.0000021445,0.0000021455,0.0000021441,0.0000021406, +0.0000021369,0.0000021353,0.0000021362,0.0000021394,0.0000021431, +0.0000021475,0.0000021517,0.0000021547,0.0000021571,0.0000021582, +0.0000021583,0.0000021525,0.0000021406,0.0000021281,0.0000021181, +0.0000021108,0.0000021050,0.0000021002,0.0000020968,0.0000020954, +0.0000021012,0.0000021163,0.0000021350,0.0000021493,0.0000021576, +0.0000021631,0.0000021692,0.0000021763,0.0000021834,0.0000021913, +0.0000022008,0.0000022109,0.0000022205,0.0000022308,0.0000022434, +0.0000022585,0.0000022753,0.0000022928,0.0000023101,0.0000023242, +0.0000023304,0.0000023271,0.0000023210,0.0000023176,0.0000023237, +0.0000023401,0.0000023647,0.0000023948,0.0000024249,0.0000024473, +0.0000024574,0.0000024582,0.0000024555,0.0000024551,0.0000024590, +0.0000024657,0.0000024682,0.0000024645,0.0000024530,0.0000024406, +0.0000024351,0.0000024354,0.0000024347,0.0000024319,0.0000024305, +0.0000024338,0.0000024399,0.0000024465,0.0000024497,0.0000024475, +0.0000024406,0.0000024300,0.0000024175,0.0000024068,0.0000024011, +0.0000024000,0.0000024019,0.0000024055,0.0000024086,0.0000024098, +0.0000024089,0.0000024063,0.0000024021,0.0000023979,0.0000023963, +0.0000023972,0.0000023991,0.0000023995,0.0000023989,0.0000023986, +0.0000024005,0.0000024079,0.0000024182,0.0000024245,0.0000024258, +0.0000024227,0.0000024144,0.0000024035,0.0000023929,0.0000023836, +0.0000023751,0.0000023673,0.0000023600,0.0000023518,0.0000023411, +0.0000023280,0.0000023137,0.0000022996,0.0000022876,0.0000022796, +0.0000022766,0.0000022776,0.0000022818,0.0000022881,0.0000022955, +0.0000023041,0.0000023131,0.0000023223,0.0000023322,0.0000023427, +0.0000023539,0.0000023659,0.0000023775,0.0000023889,0.0000023990, +0.0000024069,0.0000024101,0.0000024124,0.0000024117,0.0000024091, +0.0000024053,0.0000024001,0.0000023931,0.0000023847,0.0000023750, +0.0000023638,0.0000023518,0.0000023406,0.0000023318,0.0000023252, +0.0000023206,0.0000023171,0.0000023132,0.0000023083,0.0000023017, +0.0000022947,0.0000022877,0.0000022817,0.0000022770,0.0000022726, +0.0000022675,0.0000022628,0.0000022590,0.0000022556,0.0000022536, +0.0000022533,0.0000022551,0.0000022591,0.0000022638,0.0000022680, +0.0000022713,0.0000022753,0.0000022788,0.0000022816,0.0000022831, +0.0000022833,0.0000022826,0.0000022816,0.0000022810,0.0000022808, +0.0000022805,0.0000022798,0.0000022788,0.0000022777,0.0000022755, +0.0000022717,0.0000022674,0.0000022645,0.0000022629,0.0000022622, +0.0000022619,0.0000022620,0.0000022624,0.0000022621,0.0000022609, +0.0000022603,0.0000022613,0.0000022612,0.0000022591,0.0000022511, +0.0000022389,0.0000022255,0.0000022134,0.0000022051,0.0000022013, +0.0000021996,0.0000021983,0.0000021972,0.0000021955,0.0000021926, +0.0000021895,0.0000021874,0.0000021859,0.0000021845,0.0000021844, +0.0000021839,0.0000021819,0.0000021801,0.0000021785,0.0000021766, +0.0000021745,0.0000021730,0.0000021727,0.0000021728,0.0000021727, +0.0000021722,0.0000021711,0.0000021690,0.0000021667,0.0000021651, +0.0000021635,0.0000021620,0.0000021609,0.0000021606,0.0000021604, +0.0000021602,0.0000021594,0.0000021575,0.0000021548,0.0000021516, +0.0000021485,0.0000021459,0.0000021426,0.0000021386,0.0000021352, +0.0000021331,0.0000021317,0.0000021301,0.0000021282,0.0000021262, +0.0000021244,0.0000021223,0.0000021194,0.0000021167,0.0000021145, +0.0000021124,0.0000021099,0.0000021073,0.0000021041,0.0000021009, +0.0000020993,0.0000020996,0.0000021026,0.0000021072,0.0000021131, +0.0000021207,0.0000021265,0.0000021259,0.0000021199,0.0000021108, +0.0000021046,0.0000021035,0.0000021051,0.0000021069,0.0000021079, +0.0000021083,0.0000021086,0.0000021087,0.0000021081,0.0000021075, +0.0000021069,0.0000021058,0.0000021044,0.0000021025,0.0000021003, +0.0000020980,0.0000020962,0.0000020954,0.0000020955,0.0000020959, +0.0000020955,0.0000020954,0.0000020966,0.0000020993,0.0000021028, +0.0000021058,0.0000021078,0.0000021087,0.0000021077,0.0000021063, +0.0000021041,0.0000021017,0.0000020998,0.0000020985,0.0000020982, +0.0000020987,0.0000021009,0.0000021050,0.0000021100,0.0000021149, +0.0000021196,0.0000021233,0.0000021243,0.0000021233,0.0000021214, +0.0000021188,0.0000021146,0.0000021092,0.0000021048,0.0000021035, +0.0000021048,0.0000021064,0.0000021071,0.0000021079,0.0000021103, +0.0000021148,0.0000021234,0.0000021367,0.0000021484,0.0000021513, +0.0000021491,0.0000021448,0.0000021409,0.0000021380,0.0000021372, +0.0000021387,0.0000021424,0.0000021466,0.0000021515,0.0000021574, +0.0000021615,0.0000021629,0.0000021615,0.0000021541,0.0000021443, +0.0000021390,0.0000021381,0.0000021378,0.0000021365,0.0000021343, +0.0000021297,0.0000021232,0.0000021193,0.0000021189,0.0000021185, +0.0000021163,0.0000021138,0.0000021129,0.0000021140,0.0000021179, +0.0000021234,0.0000021291,0.0000021337,0.0000021360,0.0000021368, +0.0000021378,0.0000021380,0.0000021349,0.0000021298,0.0000021266, +0.0000021254,0.0000021235,0.0000021206,0.0000021175,0.0000021136, +0.0000021104,0.0000021113,0.0000021178,0.0000021247,0.0000021265, +0.0000021225,0.0000021160,0.0000021122,0.0000021096,0.0000021051, +0.0000021000,0.0000020962,0.0000020939,0.0000020922,0.0000020910, +0.0000020902,0.0000020899,0.0000020907,0.0000020926,0.0000020953, +0.0000020987,0.0000021021,0.0000021041,0.0000021047,0.0000021046, +0.0000021048,0.0000021055,0.0000021064,0.0000021065,0.0000021046, +0.0000021009,0.0000020972,0.0000020941,0.0000020906,0.0000020869, +0.0000020850,0.0000020859,0.0000020893,0.0000020936,0.0000020982, +0.0000021032,0.0000021084,0.0000021140,0.0000021200,0.0000021252, +0.0000021278,0.0000021278,0.0000021268,0.0000021265,0.0000021263, +0.0000021242,0.0000021207,0.0000021200,0.0000021188,0.0000021069, +0.0000020873,0.0000020754,0.0000020753,0.0000020952,0.0000021312, +0.0000021621,0.0000021789,0.0000021898,0.0000021982,0.0000022036, +0.0000022069,0.0000022081,0.0000022078,0.0000022063,0.0000022044, +0.0000022035,0.0000022045,0.0000022070,0.0000022088,0.0000022090, +0.0000022083,0.0000022075,0.0000022068,0.0000022051,0.0000022013, +0.0000021957,0.0000021879,0.0000021743,0.0000021561,0.0000021441, +0.0000021429,0.0000021448,0.0000021455,0.0000021482,0.0000021599, +0.0000021782,0.0000021929,0.0000022003,0.0000022035,0.0000022043, +0.0000022036,0.0000022030,0.0000022056,0.0000022110,0.0000022122, +0.0000022039,0.0000021889,0.0000021825,0.0000021767,0.0000021767, +0.0000021659,0.0000021446,0.0000021378,0.0000021415,0.0000021549, +0.0000021841,0.0000022187,0.0000022362,0.0000022390,0.0000022414, +0.0000022475,0.0000022533,0.0000022571,0.0000022598,0.0000022634, +0.0000022696,0.0000022780,0.0000022864,0.0000022932,0.0000022975, +0.0000022994,0.0000023001,0.0000023006,0.0000023013,0.0000023016, +0.0000023013,0.0000023005,0.0000022994,0.0000022976,0.0000022950, +0.0000022916,0.0000022885,0.0000022862,0.0000022845,0.0000022836, +0.0000022837,0.0000022848,0.0000022858,0.0000022860,0.0000022857, +0.0000022850,0.0000022841,0.0000022837,0.0000022838,0.0000022843, +0.0000022850,0.0000022856,0.0000022858,0.0000022857,0.0000022853, +0.0000022849,0.0000022846,0.0000022847,0.0000022849,0.0000022849, +0.0000022847,0.0000022844,0.0000022844,0.0000022844,0.0000022838, +0.0000022825,0.0000022811,0.0000022801,0.0000022786,0.0000022766, +0.0000022739,0.0000022699,0.0000022642,0.0000022571,0.0000022489, +0.0000022408,0.0000022334,0.0000022269,0.0000022223,0.0000022198, +0.0000022190,0.0000022186,0.0000022183,0.0000022195,0.0000022229, +0.0000022275,0.0000022314,0.0000022344,0.0000022377,0.0000022409, +0.0000022430,0.0000022435,0.0000022425,0.0000022397,0.0000022349, +0.0000022297,0.0000022260,0.0000022227,0.0000022189,0.0000022145, +0.0000022094,0.0000022040,0.0000021987,0.0000021931,0.0000021875, +0.0000021817,0.0000021749,0.0000021684,0.0000021625,0.0000021562, +0.0000021503,0.0000021477,0.0000021487,0.0000021506,0.0000021513, +0.0000021527,0.0000021532,0.0000021527,0.0000021518,0.0000021498, +0.0000021462,0.0000021444,0.0000021429,0.0000021419,0.0000021430, +0.0000021473,0.0000021535,0.0000021612,0.0000021714,0.0000021831, +0.0000021946,0.0000022053,0.0000022151,0.0000022251,0.0000022353, +0.0000022447,0.0000022521,0.0000022577,0.0000022624,0.0000022665, +0.0000022692,0.0000022705,0.0000022707,0.0000022704,0.0000022698, +0.0000022688,0.0000022676,0.0000022659,0.0000022640,0.0000022629, +0.0000022633,0.0000022651,0.0000022674,0.0000022694,0.0000022715, +0.0000022751,0.0000022805,0.0000022858,0.0000022906,0.0000022949, +0.0000022976,0.0000022983,0.0000022980,0.0000022972,0.0000022963, +0.0000022953,0.0000022951,0.0000022962,0.0000022976,0.0000023003, +0.0000023036,0.0000023049,0.0000023048,0.0000023024,0.0000022967, +0.0000022877,0.0000022787,0.0000022736,0.0000022723,0.0000022765, +0.0000022854,0.0000022968,0.0000023066,0.0000023119,0.0000023125, +0.0000023107,0.0000023081,0.0000023049,0.0000023021,0.0000022999, +0.0000022996,0.0000023003,0.0000023021,0.0000023043,0.0000023069, +0.0000023096,0.0000023118,0.0000023135,0.0000023155,0.0000023186, +0.0000023223,0.0000023259,0.0000023286,0.0000023308,0.0000023314, +0.0000023301,0.0000023278,0.0000023239,0.0000023197,0.0000023158, +0.0000023127,0.0000023106,0.0000023093,0.0000023091,0.0000023095, +0.0000023113,0.0000023142,0.0000023171,0.0000023188,0.0000023188, +0.0000023180,0.0000023174,0.0000023170,0.0000023167,0.0000023167, +0.0000023173,0.0000023180,0.0000023185,0.0000023182,0.0000023170, +0.0000023144,0.0000023105,0.0000023054,0.0000022998,0.0000022938, +0.0000022879,0.0000022828,0.0000022794,0.0000022782,0.0000022780, +0.0000022783,0.0000022788,0.0000022798,0.0000022814,0.0000022832, +0.0000022848,0.0000022860,0.0000022865,0.0000022865,0.0000022860, +0.0000022853,0.0000022847,0.0000022843,0.0000022847,0.0000022858, +0.0000022869,0.0000022872,0.0000022877,0.0000022865,0.0000022826, +0.0000022766,0.0000022698,0.0000022639,0.0000022605,0.0000022596, +0.0000022596,0.0000022599,0.0000022599,0.0000022592,0.0000022572, +0.0000022537,0.0000022494,0.0000022452,0.0000022419,0.0000022393, +0.0000022374,0.0000022359,0.0000022346,0.0000022335,0.0000022327, +0.0000022324,0.0000022323,0.0000022318,0.0000022312,0.0000022305, +0.0000022292,0.0000022276,0.0000022253,0.0000022229,0.0000022203, +0.0000022172,0.0000022132,0.0000022086,0.0000022040,0.0000021994, +0.0000021939,0.0000021874,0.0000021814,0.0000021783,0.0000021748, +0.0000021721,0.0000021708,0.0000021726,0.0000021758,0.0000021806, +0.0000021866,0.0000021932,0.0000022006,0.0000022079,0.0000022145, +0.0000022202,0.0000022250,0.0000022289,0.0000022324,0.0000022359, +0.0000022386,0.0000022403,0.0000022404,0.0000022392,0.0000022378, +0.0000022363,0.0000022344,0.0000022315,0.0000022285,0.0000022261, +0.0000022249,0.0000022237,0.0000022220,0.0000022199,0.0000022177, +0.0000022155,0.0000022141,0.0000022136,0.0000022142,0.0000022156, +0.0000022168,0.0000022179,0.0000022202,0.0000022231,0.0000022267, +0.0000022299,0.0000022321,0.0000022333,0.0000022340,0.0000022349, +0.0000022369,0.0000022405,0.0000022456,0.0000022519,0.0000022588, +0.0000022649,0.0000022697,0.0000022735,0.0000022765,0.0000022778, +0.0000022776,0.0000022760,0.0000022731,0.0000022696,0.0000022657, +0.0000022617,0.0000022578,0.0000022542,0.0000022506,0.0000022470, +0.0000022433,0.0000022412,0.0000022412,0.0000022428,0.0000022453, +0.0000022482,0.0000022514,0.0000022547,0.0000022588,0.0000022647, +0.0000022718,0.0000022785,0.0000022822,0.0000022822,0.0000022790, +0.0000022733,0.0000022676,0.0000022636,0.0000022609,0.0000022590, +0.0000022586,0.0000022602,0.0000022618,0.0000022619,0.0000022601, +0.0000022562,0.0000022512,0.0000022464,0.0000022427,0.0000022410, +0.0000022410,0.0000022428,0.0000022459,0.0000022501,0.0000022552, +0.0000022595,0.0000022618,0.0000022601,0.0000022549,0.0000022489, +0.0000022425,0.0000022376,0.0000022375,0.0000022416,0.0000022442, +0.0000022467,0.0000022472,0.0000022503,0.0000022672,0.0000022727, +0.0000022716,0.0000022788,0.0000022944,0.0000023014,0.0000023155, +0.0000023204,0.0000023114,0.0000023015,0.0000022810,0.0000022665, +0.0000022546,0.0000022544,0.0000022670,0.0000022782,0.0000022791, +0.0000022766,0.0000022804,0.0000022867,0.0000022889,0.0000022871, +0.0000022852,0.0000022836,0.0000022864,0.0000022940,0.0000023013, +0.0000023146,0.0000023332,0.0000023487,0.0000023547,0.0000023597, +0.0000023482,0.0000023299,0.0000023261,0.0000023284,0.0000023264, +0.0000023236,0.0000023198,0.0000023141,0.0000023058,0.0000022996, +0.0000022954,0.0000022899,0.0000022846,0.0000022819,0.0000022818, +0.0000022849,0.0000022902,0.0000022958,0.0000022997,0.0000023011, +0.0000023015,0.0000022994,0.0000022959,0.0000022932,0.0000022933, +0.0000022935,0.0000022906,0.0000022882,0.0000022874,0.0000022873, +0.0000022861,0.0000022847,0.0000022865,0.0000022905,0.0000022934, +0.0000022940,0.0000022928,0.0000022932,0.0000022986,0.0000023072, +0.0000023131,0.0000023127,0.0000023066,0.0000022973,0.0000022895, +0.0000022851,0.0000022744,0.0000022606,0.0000022351,0.0000022103, +0.0000022138,0.0000022236,0.0000022227,0.0000022225,0.0000022227, +0.0000022036,0.0000021734,0.0000021717,0.0000021948,0.0000022179, +0.0000022314,0.0000022404,0.0000022510,0.0000022614,0.0000022684, +0.0000022709,0.0000022694,0.0000022655,0.0000022611,0.0000022556, +0.0000022471,0.0000022382,0.0000022334,0.0000022333,0.0000022389, +0.0000022514,0.0000022666,0.0000022762,0.0000022737,0.0000022620, +0.0000022501,0.0000022365,0.0000022163,0.0000022029,0.0000022014, +0.0000022048,0.0000022152,0.0000022252,0.0000022291,0.0000022305, +0.0000022319,0.0000022333,0.0000022354,0.0000022371,0.0000022384, +0.0000022409,0.0000022450,0.0000022486,0.0000022526,0.0000022576, +0.0000022610,0.0000022628,0.0000022624,0.0000022595,0.0000022585, +0.0000022587,0.0000022593,0.0000022599,0.0000022604,0.0000022626, +0.0000022639,0.0000022690,0.0000022856,0.0000023030,0.0000023101, +0.0000023106,0.0000023101,0.0000023106,0.0000023126,0.0000023155, +0.0000023176,0.0000023198,0.0000023228,0.0000023256,0.0000023282, +0.0000023313,0.0000023342,0.0000023366,0.0000023396,0.0000023429, +0.0000023454,0.0000023475,0.0000023493,0.0000023504,0.0000023513, +0.0000023525,0.0000023539,0.0000023557,0.0000023574,0.0000023578, +0.0000023576,0.0000023528,0.0000023430,0.0000023298,0.0000023160, +0.0000023046,0.0000022990,0.0000022984,0.0000022996,0.0000023024, +0.0000023052,0.0000023074,0.0000023094,0.0000023115,0.0000023143, +0.0000023166,0.0000023183,0.0000023204,0.0000023219,0.0000023232, +0.0000023249,0.0000023276,0.0000023312,0.0000023344,0.0000023356, +0.0000023359,0.0000023361,0.0000023362,0.0000023352,0.0000023319, +0.0000023266,0.0000023197,0.0000023121,0.0000023043,0.0000022978, +0.0000022936,0.0000022942,0.0000022999,0.0000023090,0.0000023180, +0.0000023268,0.0000023361,0.0000023452,0.0000023512,0.0000023532, +0.0000023519,0.0000023498,0.0000023484,0.0000023479,0.0000023488, +0.0000023509,0.0000023533,0.0000023546,0.0000023553,0.0000023561, +0.0000023583,0.0000023621,0.0000023661,0.0000023698,0.0000023752, +0.0000023848,0.0000023962,0.0000024044,0.0000024064,0.0000024037, +0.0000023970,0.0000023938,0.0000023954,0.0000023955,0.0000023905, +0.0000023855,0.0000023839,0.0000023838,0.0000023828,0.0000023809, +0.0000023793,0.0000023785,0.0000023779,0.0000023775,0.0000023768, +0.0000023754,0.0000023732,0.0000023707,0.0000023683,0.0000023663, +0.0000023645,0.0000023622,0.0000023593,0.0000023562,0.0000023528, +0.0000023480,0.0000023419,0.0000023363,0.0000023323,0.0000023300, +0.0000023285,0.0000023267,0.0000023243,0.0000023214,0.0000023183, +0.0000023148,0.0000023113,0.0000023078,0.0000023044,0.0000023005, +0.0000022958,0.0000022904,0.0000022847,0.0000022789,0.0000022728, +0.0000022676,0.0000022643,0.0000022628,0.0000022622,0.0000022620, +0.0000022618,0.0000022608,0.0000022595,0.0000022578,0.0000022565, +0.0000022555,0.0000022550,0.0000022551,0.0000022548,0.0000022541, +0.0000022535,0.0000022525,0.0000022509,0.0000022491,0.0000022479, +0.0000022471,0.0000022461,0.0000022452,0.0000022448,0.0000022447, +0.0000022446,0.0000022442,0.0000022428,0.0000022406,0.0000022378, +0.0000022346,0.0000022317,0.0000022291,0.0000022264,0.0000022236, +0.0000022214,0.0000022197,0.0000022192,0.0000022198,0.0000022211, +0.0000022232,0.0000022254,0.0000022277,0.0000022298,0.0000022313, +0.0000022321,0.0000022325,0.0000022324,0.0000022324,0.0000022325, +0.0000022330,0.0000022339,0.0000022355,0.0000022377,0.0000022400, +0.0000022429,0.0000022456,0.0000022477,0.0000022489,0.0000022494, +0.0000022496,0.0000022499,0.0000022505,0.0000022514,0.0000022528, +0.0000022526,0.0000022512,0.0000022498,0.0000022489,0.0000022493, +0.0000022491,0.0000022503,0.0000022499,0.0000022508,0.0000022514, +0.0000022515,0.0000022516,0.0000022505,0.0000022484,0.0000022446, +0.0000022396,0.0000022340,0.0000022283,0.0000022221,0.0000022156, +0.0000022100,0.0000022090,0.0000022153,0.0000022245,0.0000022315, +0.0000022356,0.0000022403,0.0000022483,0.0000022560,0.0000022607, +0.0000022633,0.0000022649,0.0000022663,0.0000022684,0.0000022716, +0.0000022766,0.0000022819,0.0000022846,0.0000022839,0.0000022829, +0.0000022838,0.0000022858,0.0000022867,0.0000022894,0.0000022947, +0.0000022948,0.0000022990,0.0000023207,0.0000023404,0.0000023444, +0.0000023354,0.0000023206,0.0000023113,0.0000023058,0.0000023005, +0.0000022966,0.0000022978,0.0000023009,0.0000023002,0.0000022936, +0.0000022827,0.0000022700,0.0000022574,0.0000022462,0.0000022369, +0.0000022285,0.0000022212,0.0000022164,0.0000022133,0.0000022109, +0.0000022086,0.0000022066,0.0000022061,0.0000022062,0.0000022067, +0.0000022080,0.0000022106,0.0000022127,0.0000022125,0.0000022090, +0.0000022017,0.0000021957,0.0000021958,0.0000022034,0.0000022139, +0.0000022231,0.0000022287,0.0000022310,0.0000022311,0.0000022302, +0.0000022288,0.0000022274,0.0000022260,0.0000022242,0.0000022221, +0.0000022200,0.0000022176,0.0000022144,0.0000022107,0.0000022074, +0.0000022044,0.0000022004,0.0000021966,0.0000021947,0.0000021950, +0.0000021980,0.0000022038,0.0000022127,0.0000022216,0.0000022266, +0.0000022255,0.0000022149,0.0000022015,0.0000022009,0.0000022302, +0.0000022792,0.0000023034,0.0000022945,0.0000022616,0.0000022321, +0.0000022189,0.0000022168,0.0000022151,0.0000022067,0.0000021935, +0.0000021814,0.0000021730,0.0000021691,0.0000021695,0.0000021714, +0.0000021714,0.0000021693,0.0000021680,0.0000021696,0.0000021729, +0.0000021752,0.0000021768,0.0000021788,0.0000021807,0.0000021825, +0.0000021848,0.0000021868,0.0000021866,0.0000021831,0.0000021769, +0.0000021699,0.0000021632,0.0000021576,0.0000021536,0.0000021514, +0.0000021497,0.0000021470,0.0000021439,0.0000021408,0.0000021365, +0.0000021332,0.0000021338,0.0000021378,0.0000021425,0.0000021480, +0.0000021555,0.0000021649,0.0000021724,0.0000021766,0.0000021807, +0.0000021877,0.0000021980,0.0000022097,0.0000022186,0.0000022208, +0.0000022191,0.0000022165,0.0000022155,0.0000022162,0.0000022172, +0.0000022170,0.0000022147,0.0000022101,0.0000022042,0.0000021986, +0.0000021948,0.0000021937,0.0000021942,0.0000021965,0.0000021996, +0.0000022024,0.0000022044,0.0000022052,0.0000022042,0.0000022014, +0.0000021967,0.0000021901,0.0000021823,0.0000021742,0.0000021665, +0.0000021601,0.0000021550,0.0000021507,0.0000021466,0.0000021422, +0.0000021390,0.0000021386,0.0000021413,0.0000021451,0.0000021467, +0.0000021457,0.0000021424,0.0000021377,0.0000021354,0.0000021358, +0.0000021383,0.0000021410,0.0000021441,0.0000021474,0.0000021512, +0.0000021560,0.0000021601,0.0000021615,0.0000021570,0.0000021461, +0.0000021331,0.0000021222,0.0000021133,0.0000021059,0.0000021001, +0.0000020961,0.0000020948,0.0000021001,0.0000021142,0.0000021328, +0.0000021486,0.0000021588,0.0000021658,0.0000021722,0.0000021781, +0.0000021842,0.0000021918,0.0000022011,0.0000022107,0.0000022201, +0.0000022296,0.0000022409,0.0000022550,0.0000022714,0.0000022884, +0.0000023046,0.0000023177,0.0000023237,0.0000023205,0.0000023144, +0.0000023116,0.0000023189,0.0000023377,0.0000023647,0.0000023956, +0.0000024241,0.0000024437,0.0000024515,0.0000024514,0.0000024499, +0.0000024515,0.0000024581,0.0000024656,0.0000024687,0.0000024668, +0.0000024563,0.0000024442,0.0000024385,0.0000024371,0.0000024347, +0.0000024307,0.0000024282,0.0000024283,0.0000024327,0.0000024387, +0.0000024415,0.0000024395,0.0000024331,0.0000024255,0.0000024166, +0.0000024079,0.0000024018,0.0000023990,0.0000023992,0.0000024016, +0.0000024038,0.0000024049,0.0000024044,0.0000024023,0.0000023995, +0.0000023982,0.0000023986,0.0000023995,0.0000023990,0.0000023976, +0.0000023971,0.0000024004,0.0000024091,0.0000024190,0.0000024242, +0.0000024235,0.0000024163,0.0000024038,0.0000023914,0.0000023824, +0.0000023753,0.0000023684,0.0000023623,0.0000023567,0.0000023491, +0.0000023382,0.0000023247,0.0000023098,0.0000022950,0.0000022817, +0.0000022713,0.0000022649,0.0000022628,0.0000022639,0.0000022668, +0.0000022708,0.0000022761,0.0000022821,0.0000022880,0.0000022936, +0.0000022998,0.0000023082,0.0000023189,0.0000023312,0.0000023456, +0.0000023621,0.0000023785,0.0000023936,0.0000024053,0.0000024132, +0.0000024142,0.0000024149,0.0000024117,0.0000024063,0.0000023984, +0.0000023895,0.0000023798,0.0000023690,0.0000023576,0.0000023468, +0.0000023371,0.0000023292,0.0000023228,0.0000023169,0.0000023110, +0.0000023046,0.0000022973,0.0000022895,0.0000022825,0.0000022771, +0.0000022728,0.0000022680,0.0000022636,0.0000022602,0.0000022567, +0.0000022532,0.0000022511,0.0000022512,0.0000022537,0.0000022579, +0.0000022633,0.0000022692,0.0000022753,0.0000022810,0.0000022854, +0.0000022883,0.0000022897,0.0000022896,0.0000022875,0.0000022846, +0.0000022822,0.0000022809,0.0000022805,0.0000022799,0.0000022796, +0.0000022787,0.0000022765,0.0000022724,0.0000022672,0.0000022622, +0.0000022582,0.0000022549,0.0000022531,0.0000022533,0.0000022545, +0.0000022558,0.0000022565,0.0000022574,0.0000022590,0.0000022606, +0.0000022595,0.0000022564,0.0000022491,0.0000022386,0.0000022272, +0.0000022175,0.0000022109,0.0000022064,0.0000022030,0.0000022005, +0.0000021977,0.0000021940,0.0000021902,0.0000021875,0.0000021852, +0.0000021831,0.0000021828,0.0000021834,0.0000021844,0.0000021870, +0.0000021905,0.0000021941,0.0000021963,0.0000021975,0.0000021987, +0.0000022000,0.0000022005,0.0000022002,0.0000021993,0.0000021974, +0.0000021959,0.0000021941,0.0000021919,0.0000021899,0.0000021886, +0.0000021876,0.0000021864,0.0000021850,0.0000021826,0.0000021787, +0.0000021736,0.0000021680,0.0000021622,0.0000021560,0.0000021491, +0.0000021428,0.0000021381,0.0000021351,0.0000021330,0.0000021315, +0.0000021296,0.0000021275,0.0000021255,0.0000021229,0.0000021196, +0.0000021165,0.0000021137,0.0000021111,0.0000021085,0.0000021056, +0.0000021024,0.0000020992,0.0000020962,0.0000020943,0.0000020943, +0.0000020959,0.0000020993,0.0000021062,0.0000021149,0.0000021221, +0.0000021217,0.0000021159,0.0000021076,0.0000021023,0.0000021018, +0.0000021033,0.0000021048,0.0000021057,0.0000021061,0.0000021056, +0.0000021044,0.0000021036,0.0000021035,0.0000021027,0.0000021010, +0.0000020989,0.0000020966,0.0000020944,0.0000020926,0.0000020912, +0.0000020906,0.0000020899,0.0000020888,0.0000020881,0.0000020886, +0.0000020910,0.0000020945,0.0000020982,0.0000021018,0.0000021051, +0.0000021065,0.0000021061,0.0000021040,0.0000021021,0.0000021002, +0.0000020979,0.0000020961,0.0000020949,0.0000020954,0.0000020982, +0.0000021023,0.0000021072,0.0000021128,0.0000021174,0.0000021191, +0.0000021191,0.0000021181,0.0000021157,0.0000021113,0.0000021058, +0.0000021009,0.0000020991,0.0000021004,0.0000021037,0.0000021060, +0.0000021066,0.0000021077,0.0000021115,0.0000021202,0.0000021339, +0.0000021459,0.0000021492,0.0000021471,0.0000021432,0.0000021402, +0.0000021390,0.0000021406,0.0000021451,0.0000021487,0.0000021506, +0.0000021538,0.0000021583,0.0000021610,0.0000021616,0.0000021592, +0.0000021506,0.0000021410,0.0000021356,0.0000021337,0.0000021326, +0.0000021318,0.0000021300,0.0000021246,0.0000021187,0.0000021172, +0.0000021179,0.0000021179,0.0000021165,0.0000021151,0.0000021148, +0.0000021159,0.0000021195,0.0000021239,0.0000021283,0.0000021319, +0.0000021337,0.0000021342,0.0000021350,0.0000021354,0.0000021333, +0.0000021293,0.0000021262,0.0000021241,0.0000021211,0.0000021177, +0.0000021151,0.0000021121,0.0000021085,0.0000021076,0.0000021116, +0.0000021185,0.0000021227,0.0000021213,0.0000021163,0.0000021118, +0.0000021085,0.0000021035,0.0000020970,0.0000020916,0.0000020883, +0.0000020864,0.0000020854,0.0000020849,0.0000020849,0.0000020860, +0.0000020878,0.0000020900,0.0000020929,0.0000020959,0.0000020983, +0.0000020989,0.0000020981,0.0000020967,0.0000020955,0.0000020945, +0.0000020934,0.0000020911,0.0000020873,0.0000020834,0.0000020811, +0.0000020796,0.0000020780,0.0000020774,0.0000020786,0.0000020821, +0.0000020865,0.0000020907,0.0000020948,0.0000020992,0.0000021039, +0.0000021095,0.0000021156,0.0000021209,0.0000021238,0.0000021242, +0.0000021235,0.0000021231,0.0000021230,0.0000021210,0.0000021187, +0.0000021184,0.0000021155,0.0000021005,0.0000020815,0.0000020726, +0.0000020762,0.0000020998,0.0000021369,0.0000021657,0.0000021812, +0.0000021918,0.0000021991,0.0000022033,0.0000022063,0.0000022076, +0.0000022069,0.0000022056,0.0000022044,0.0000022045,0.0000022062, +0.0000022085,0.0000022097,0.0000022089,0.0000022069,0.0000022052, +0.0000022043,0.0000022027,0.0000021992,0.0000021943,0.0000021864, +0.0000021725,0.0000021552,0.0000021445,0.0000021430,0.0000021439, +0.0000021446,0.0000021489,0.0000021621,0.0000021798,0.0000021930, +0.0000021999,0.0000022027,0.0000022023,0.0000021996,0.0000021981, +0.0000022023,0.0000022092,0.0000022091,0.0000021977,0.0000021929, +0.0000021780,0.0000021738,0.0000021713,0.0000021540,0.0000021328, +0.0000021282,0.0000021363,0.0000021546,0.0000021878,0.0000022214, +0.0000022369,0.0000022394,0.0000022423,0.0000022479,0.0000022542, +0.0000022595,0.0000022638,0.0000022683,0.0000022734,0.0000022788, +0.0000022841,0.0000022886,0.0000022913,0.0000022926,0.0000022935, +0.0000022940,0.0000022941,0.0000022934,0.0000022917,0.0000022892, +0.0000022862,0.0000022825,0.0000022784,0.0000022748,0.0000022720, +0.0000022698,0.0000022686,0.0000022689,0.0000022701,0.0000022709, +0.0000022711,0.0000022708,0.0000022704,0.0000022700,0.0000022700, +0.0000022702,0.0000022707,0.0000022715,0.0000022721,0.0000022724, +0.0000022727,0.0000022729,0.0000022727,0.0000022723,0.0000022721, +0.0000022722,0.0000022723,0.0000022726,0.0000022733,0.0000022746, +0.0000022761,0.0000022773,0.0000022778,0.0000022779,0.0000022778, +0.0000022764,0.0000022730,0.0000022681,0.0000022620,0.0000022546, +0.0000022457,0.0000022357,0.0000022264,0.0000022189,0.0000022136, +0.0000022099,0.0000022076,0.0000022061,0.0000022046,0.0000022031, +0.0000022029,0.0000022049,0.0000022087,0.0000022130,0.0000022165, +0.0000022194,0.0000022223,0.0000022250,0.0000022273,0.0000022284, +0.0000022280,0.0000022251,0.0000022197,0.0000022139,0.0000022090, +0.0000022038,0.0000021981,0.0000021919,0.0000021853,0.0000021791, +0.0000021731,0.0000021673,0.0000021625,0.0000021580,0.0000021535, +0.0000021500,0.0000021468,0.0000021430,0.0000021408,0.0000021422, +0.0000021468,0.0000021506,0.0000021527,0.0000021542,0.0000021547, +0.0000021541,0.0000021526,0.0000021494,0.0000021459,0.0000021436, +0.0000021413,0.0000021395,0.0000021390,0.0000021397,0.0000021412, +0.0000021446,0.0000021502,0.0000021581,0.0000021675,0.0000021778, +0.0000021886,0.0000021993,0.0000022090,0.0000022179,0.0000022259, +0.0000022333,0.0000022403,0.0000022461,0.0000022506,0.0000022537, +0.0000022562,0.0000022582,0.0000022592,0.0000022592,0.0000022590, +0.0000022586,0.0000022579,0.0000022569,0.0000022569,0.0000022583, +0.0000022596,0.0000022606,0.0000022631,0.0000022673,0.0000022725, +0.0000022778,0.0000022833,0.0000022884,0.0000022919,0.0000022939, +0.0000022956,0.0000022972,0.0000022985,0.0000022988,0.0000022983, +0.0000022969,0.0000022952,0.0000022950,0.0000022964,0.0000022993, +0.0000023026,0.0000023045,0.0000023047,0.0000023018,0.0000022949, +0.0000022847,0.0000022745,0.0000022689,0.0000022685,0.0000022734, +0.0000022827,0.0000022938,0.0000023026,0.0000023071,0.0000023072, +0.0000023061,0.0000023052,0.0000023040,0.0000023030,0.0000023023, +0.0000023026,0.0000023032,0.0000023039,0.0000023050,0.0000023063, +0.0000023075,0.0000023092,0.0000023115,0.0000023143,0.0000023170, +0.0000023196,0.0000023222,0.0000023244,0.0000023261,0.0000023263, +0.0000023246,0.0000023219,0.0000023185,0.0000023151,0.0000023125, +0.0000023106,0.0000023096,0.0000023094,0.0000023104,0.0000023125, +0.0000023153,0.0000023177,0.0000023185,0.0000023184,0.0000023182, +0.0000023181,0.0000023183,0.0000023186,0.0000023192,0.0000023201, +0.0000023211,0.0000023216,0.0000023215,0.0000023205,0.0000023188, +0.0000023155,0.0000023112,0.0000023061,0.0000023007,0.0000022957, +0.0000022923,0.0000022912,0.0000022912,0.0000022916,0.0000022921, +0.0000022930,0.0000022945,0.0000022964,0.0000022980,0.0000022994, +0.0000023002,0.0000023004,0.0000023000,0.0000022990,0.0000022977, +0.0000022962,0.0000022949,0.0000022939,0.0000022927,0.0000022911, +0.0000022895,0.0000022874,0.0000022837,0.0000022788,0.0000022732, +0.0000022676,0.0000022637,0.0000022619,0.0000022616,0.0000022616, +0.0000022613,0.0000022604,0.0000022583,0.0000022547,0.0000022495, +0.0000022444,0.0000022406,0.0000022381,0.0000022364,0.0000022351, +0.0000022342,0.0000022338,0.0000022337,0.0000022348,0.0000022365, +0.0000022380,0.0000022390,0.0000022393,0.0000022397,0.0000022396, +0.0000022388,0.0000022372,0.0000022349,0.0000022318,0.0000022281, +0.0000022240,0.0000022194,0.0000022147,0.0000022095,0.0000022040, +0.0000021986,0.0000021926,0.0000021866,0.0000021806,0.0000021742, +0.0000021689,0.0000021676,0.0000021657,0.0000021657,0.0000021669, +0.0000021684,0.0000021708,0.0000021733,0.0000021749,0.0000021762, +0.0000021777,0.0000021792,0.0000021820,0.0000021856,0.0000021891, +0.0000021922,0.0000021953,0.0000021988,0.0000022027,0.0000022065, +0.0000022090,0.0000022111,0.0000022136,0.0000022158,0.0000022170, +0.0000022167,0.0000022153,0.0000022129,0.0000022100,0.0000022072, +0.0000022050,0.0000022039,0.0000022044,0.0000022054,0.0000022062, +0.0000022078,0.0000022106,0.0000022140,0.0000022179,0.0000022213, +0.0000022244,0.0000022272,0.0000022299,0.0000022332,0.0000022375, +0.0000022427,0.0000022486,0.0000022552,0.0000022613,0.0000022667, +0.0000022711,0.0000022746,0.0000022767,0.0000022770,0.0000022761, +0.0000022742,0.0000022714,0.0000022678,0.0000022643,0.0000022611, +0.0000022577,0.0000022538,0.0000022498,0.0000022458,0.0000022434, +0.0000022428,0.0000022436,0.0000022456,0.0000022478,0.0000022499, +0.0000022516,0.0000022536,0.0000022568,0.0000022608,0.0000022653, +0.0000022705,0.0000022749,0.0000022768,0.0000022755,0.0000022716, +0.0000022673,0.0000022647,0.0000022629,0.0000022610,0.0000022602, +0.0000022603,0.0000022609,0.0000022604,0.0000022586,0.0000022559, +0.0000022525,0.0000022486,0.0000022448,0.0000022429,0.0000022430, +0.0000022438,0.0000022453,0.0000022483,0.0000022523,0.0000022569, +0.0000022587,0.0000022564,0.0000022504,0.0000022420,0.0000022338, +0.0000022312,0.0000022346,0.0000022383,0.0000022405,0.0000022421, +0.0000022439,0.0000022632,0.0000022736,0.0000022736,0.0000022806, +0.0000022953,0.0000023025,0.0000023168,0.0000023176,0.0000023074, +0.0000022948,0.0000022751,0.0000022616,0.0000022522,0.0000022546, +0.0000022664,0.0000022743,0.0000022744,0.0000022753,0.0000022842, +0.0000022913,0.0000022926,0.0000022912,0.0000022895,0.0000022876, +0.0000022891,0.0000022957,0.0000023017,0.0000023123,0.0000023285, +0.0000023466,0.0000023544,0.0000023620,0.0000023563,0.0000023379, +0.0000023283,0.0000023308,0.0000023307,0.0000023270,0.0000023234, +0.0000023203,0.0000023145,0.0000023075,0.0000023018,0.0000022947, +0.0000022880,0.0000022847,0.0000022838,0.0000022847,0.0000022884, +0.0000022938,0.0000022987,0.0000023023,0.0000023039,0.0000023039, +0.0000023024,0.0000022999,0.0000022971,0.0000022942,0.0000022894, +0.0000022856,0.0000022843,0.0000022842,0.0000022836,0.0000022826, +0.0000022839,0.0000022877,0.0000022907,0.0000022911,0.0000022895, +0.0000022897,0.0000022947,0.0000023039,0.0000023122,0.0000023146, +0.0000023105,0.0000023027,0.0000022951,0.0000022904,0.0000022805, +0.0000022660,0.0000022438,0.0000022137,0.0000022114,0.0000022234, +0.0000022225,0.0000022190,0.0000022199,0.0000022058,0.0000021745, +0.0000021649,0.0000021848,0.0000022097,0.0000022261,0.0000022360, +0.0000022460,0.0000022566,0.0000022646,0.0000022681,0.0000022671, +0.0000022632,0.0000022585,0.0000022534,0.0000022459,0.0000022372, +0.0000022326,0.0000022323,0.0000022360,0.0000022457,0.0000022603, +0.0000022737,0.0000022771,0.0000022691,0.0000022572,0.0000022460, +0.0000022283,0.0000022088,0.0000022008,0.0000022004,0.0000022055, +0.0000022159,0.0000022224,0.0000022250,0.0000022281,0.0000022309, +0.0000022337,0.0000022365,0.0000022392,0.0000022418,0.0000022452, +0.0000022484,0.0000022503,0.0000022525,0.0000022549,0.0000022573, +0.0000022595,0.0000022579,0.0000022545,0.0000022541,0.0000022553, +0.0000022563,0.0000022565,0.0000022570,0.0000022578,0.0000022585, +0.0000022703,0.0000022920,0.0000023055,0.0000023073,0.0000023069, +0.0000023072,0.0000023095,0.0000023131,0.0000023159,0.0000023168, +0.0000023177,0.0000023197,0.0000023217,0.0000023232,0.0000023248, +0.0000023258,0.0000023264,0.0000023277,0.0000023299,0.0000023325, +0.0000023354,0.0000023385,0.0000023415,0.0000023447,0.0000023481, +0.0000023510,0.0000023533,0.0000023556,0.0000023577,0.0000023580, +0.0000023574,0.0000023525,0.0000023432,0.0000023300,0.0000023155, +0.0000023044,0.0000022989,0.0000022976,0.0000022981,0.0000022996, +0.0000023007,0.0000023019,0.0000023042,0.0000023078,0.0000023111, +0.0000023143,0.0000023182,0.0000023220,0.0000023248,0.0000023279, +0.0000023320,0.0000023358,0.0000023386,0.0000023405,0.0000023412, +0.0000023415,0.0000023411,0.0000023392,0.0000023352,0.0000023292, +0.0000023219,0.0000023138,0.0000023056,0.0000022994,0.0000022970, +0.0000022985,0.0000023048,0.0000023140,0.0000023247,0.0000023360, +0.0000023466,0.0000023539,0.0000023572,0.0000023570,0.0000023547, +0.0000023526,0.0000023517,0.0000023511,0.0000023511,0.0000023518, +0.0000023523,0.0000023522,0.0000023529,0.0000023546,0.0000023579, +0.0000023620,0.0000023659,0.0000023696,0.0000023757,0.0000023859, +0.0000023971,0.0000024042,0.0000024058,0.0000024039,0.0000023980, +0.0000023930,0.0000023939,0.0000023961,0.0000023943,0.0000023891, +0.0000023863,0.0000023863,0.0000023865,0.0000023858,0.0000023842, +0.0000023819,0.0000023797,0.0000023783,0.0000023773,0.0000023760, +0.0000023741,0.0000023716,0.0000023693,0.0000023675,0.0000023662, +0.0000023647,0.0000023623,0.0000023593,0.0000023552,0.0000023496, +0.0000023435,0.0000023382,0.0000023341,0.0000023306,0.0000023270, +0.0000023225,0.0000023172,0.0000023120,0.0000023081,0.0000023054, +0.0000023035,0.0000023014,0.0000022990,0.0000022954,0.0000022899, +0.0000022833,0.0000022765,0.0000022699,0.0000022645,0.0000022615, +0.0000022614,0.0000022618,0.0000022622,0.0000022617,0.0000022610, +0.0000022593,0.0000022576,0.0000022563,0.0000022554,0.0000022553, +0.0000022557,0.0000022566,0.0000022573,0.0000022576,0.0000022578, +0.0000022576,0.0000022568,0.0000022551,0.0000022531,0.0000022514, +0.0000022497,0.0000022482,0.0000022475,0.0000022475,0.0000022479, +0.0000022477,0.0000022468,0.0000022452,0.0000022429,0.0000022397, +0.0000022361,0.0000022325,0.0000022289,0.0000022253,0.0000022221, +0.0000022195,0.0000022179,0.0000022172,0.0000022172,0.0000022181, +0.0000022191,0.0000022202,0.0000022214,0.0000022226,0.0000022236, +0.0000022242,0.0000022247,0.0000022255,0.0000022264,0.0000022276, +0.0000022289,0.0000022307,0.0000022325,0.0000022345,0.0000022369, +0.0000022391,0.0000022409,0.0000022420,0.0000022426,0.0000022427, +0.0000022428,0.0000022431,0.0000022438,0.0000022448,0.0000022456, +0.0000022453,0.0000022440,0.0000022430,0.0000022432,0.0000022447, +0.0000022468,0.0000022482,0.0000022502,0.0000022519,0.0000022534, +0.0000022554,0.0000022569,0.0000022578,0.0000022554,0.0000022505, +0.0000022436,0.0000022362,0.0000022285,0.0000022210,0.0000022130, +0.0000022053,0.0000022023,0.0000022054,0.0000022134,0.0000022225, +0.0000022303,0.0000022390,0.0000022480,0.0000022545,0.0000022572, +0.0000022577,0.0000022583,0.0000022593,0.0000022613,0.0000022659, +0.0000022727,0.0000022804,0.0000022850,0.0000022854,0.0000022836, +0.0000022833,0.0000022847,0.0000022860,0.0000022901,0.0000022946, +0.0000022938,0.0000023019,0.0000023260,0.0000023419,0.0000023427, +0.0000023311,0.0000023158,0.0000023060,0.0000022993,0.0000022938, +0.0000022928,0.0000022959,0.0000022963,0.0000022897,0.0000022777, +0.0000022642,0.0000022518,0.0000022405,0.0000022300,0.0000022214, +0.0000022147,0.0000022110,0.0000022098,0.0000022091,0.0000022080, +0.0000022071,0.0000022083,0.0000022117,0.0000022147,0.0000022168, +0.0000022174,0.0000022142,0.0000022095,0.0000022032,0.0000021990, +0.0000021991,0.0000022067,0.0000022172,0.0000022268,0.0000022339, +0.0000022383,0.0000022396,0.0000022389,0.0000022369,0.0000022348, +0.0000022328,0.0000022312,0.0000022298,0.0000022280,0.0000022260, +0.0000022246,0.0000022234,0.0000022218,0.0000022202,0.0000022193, +0.0000022176,0.0000022134,0.0000022082,0.0000022030,0.0000021986, +0.0000021955,0.0000021943,0.0000021967,0.0000022049,0.0000022177, +0.0000022271,0.0000022267,0.0000022151,0.0000022029,0.0000022090, +0.0000022448,0.0000022912,0.0000023073,0.0000022845,0.0000022481, +0.0000022237,0.0000022160,0.0000022158,0.0000022120,0.0000022009, +0.0000021875,0.0000021769,0.0000021707,0.0000021691,0.0000021703, +0.0000021717,0.0000021714,0.0000021701,0.0000021701,0.0000021720, +0.0000021741,0.0000021762,0.0000021780,0.0000021791,0.0000021792, +0.0000021794,0.0000021804,0.0000021806,0.0000021784,0.0000021739, +0.0000021685,0.0000021630,0.0000021583,0.0000021550,0.0000021530, +0.0000021517,0.0000021504,0.0000021490,0.0000021469,0.0000021438, +0.0000021418,0.0000021422,0.0000021451,0.0000021483,0.0000021520, +0.0000021572,0.0000021635,0.0000021687,0.0000021732,0.0000021796, +0.0000021888,0.0000022005,0.0000022128,0.0000022209,0.0000022226, +0.0000022217,0.0000022210,0.0000022225,0.0000022259,0.0000022294, +0.0000022315,0.0000022311,0.0000022283,0.0000022241,0.0000022196, +0.0000022162,0.0000022148,0.0000022149,0.0000022161,0.0000022174, +0.0000022178,0.0000022166,0.0000022140,0.0000022098,0.0000022040, +0.0000021967,0.0000021884,0.0000021797,0.0000021710,0.0000021630, +0.0000021567,0.0000021521,0.0000021482,0.0000021442,0.0000021396, +0.0000021355,0.0000021340,0.0000021358,0.0000021410,0.0000021464, +0.0000021482,0.0000021471,0.0000021429,0.0000021374,0.0000021345, +0.0000021350,0.0000021369,0.0000021386,0.0000021402,0.0000021429, +0.0000021479,0.0000021548,0.0000021621,0.0000021654,0.0000021606, +0.0000021497,0.0000021361,0.0000021244,0.0000021144,0.0000021060, +0.0000020998,0.0000020958,0.0000020941,0.0000020979,0.0000021111, +0.0000021299,0.0000021473,0.0000021599,0.0000021691,0.0000021762, +0.0000021817,0.0000021872,0.0000021937,0.0000022017,0.0000022103, +0.0000022184,0.0000022265,0.0000022365,0.0000022500,0.0000022660, +0.0000022826,0.0000022988,0.0000023123,0.0000023178,0.0000023149, +0.0000023096,0.0000023070,0.0000023150,0.0000023350,0.0000023627, +0.0000023931,0.0000024200,0.0000024374,0.0000024441,0.0000024451, +0.0000024464,0.0000024512,0.0000024589,0.0000024668,0.0000024708, +0.0000024695,0.0000024588,0.0000024467,0.0000024397,0.0000024364, +0.0000024331,0.0000024284,0.0000024243,0.0000024227,0.0000024264, +0.0000024309,0.0000024329,0.0000024314,0.0000024275,0.0000024232, +0.0000024168,0.0000024099,0.0000024033,0.0000023993,0.0000023987, +0.0000023993,0.0000024010,0.0000024019,0.0000024024,0.0000024021, +0.0000024016,0.0000024015,0.0000024011,0.0000023998,0.0000023978, +0.0000023971,0.0000024008,0.0000024099,0.0000024192,0.0000024231, +0.0000024210,0.0000024112,0.0000023970,0.0000023856,0.0000023798, +0.0000023742,0.0000023671,0.0000023608,0.0000023545,0.0000023466, +0.0000023354,0.0000023217,0.0000023074,0.0000022934,0.0000022797, +0.0000022680,0.0000022592,0.0000022547,0.0000022542,0.0000022554, +0.0000022575,0.0000022602,0.0000022634,0.0000022668,0.0000022696, +0.0000022721,0.0000022758,0.0000022811,0.0000022879,0.0000022973, +0.0000023104,0.0000023266,0.0000023453,0.0000023661,0.0000023859, +0.0000024017,0.0000024111,0.0000024151,0.0000024138,0.0000024101, +0.0000024019,0.0000023921,0.0000023819,0.0000023714,0.0000023610, +0.0000023512,0.0000023422,0.0000023340,0.0000023262,0.0000023191, +0.0000023122,0.0000023047,0.0000022968,0.0000022890,0.0000022819, +0.0000022760,0.0000022710,0.0000022666,0.0000022629,0.0000022595, +0.0000022559,0.0000022531,0.0000022522,0.0000022529,0.0000022558, +0.0000022599,0.0000022663,0.0000022735,0.0000022804,0.0000022867, +0.0000022910,0.0000022935,0.0000022943,0.0000022932,0.0000022899, +0.0000022857,0.0000022818,0.0000022794,0.0000022783,0.0000022778, +0.0000022771,0.0000022761,0.0000022742,0.0000022708,0.0000022664, +0.0000022615,0.0000022560,0.0000022509,0.0000022469,0.0000022449, +0.0000022452,0.0000022468,0.0000022492,0.0000022524,0.0000022556, +0.0000022574,0.0000022576,0.0000022554,0.0000022516,0.0000022453, +0.0000022373,0.0000022291,0.0000022216,0.0000022150,0.0000022098, +0.0000022055,0.0000022008,0.0000021953,0.0000021906,0.0000021876, +0.0000021848,0.0000021819,0.0000021798,0.0000021793,0.0000021804, +0.0000021829,0.0000021860,0.0000021899,0.0000021935,0.0000021964, +0.0000021991,0.0000022012,0.0000022019,0.0000022017,0.0000022008, +0.0000021996,0.0000021980,0.0000021957,0.0000021930,0.0000021914, +0.0000021912,0.0000021916,0.0000021918,0.0000021914,0.0000021898, +0.0000021865,0.0000021827,0.0000021782,0.0000021719,0.0000021632, +0.0000021540,0.0000021457,0.0000021391,0.0000021344,0.0000021318, +0.0000021304,0.0000021290,0.0000021277,0.0000021264,0.0000021247, +0.0000021215,0.0000021173,0.0000021129,0.0000021090,0.0000021054, +0.0000021027,0.0000021004,0.0000020980,0.0000020952,0.0000020923, +0.0000020904,0.0000020893,0.0000020899,0.0000020936,0.0000021013, +0.0000021110,0.0000021178,0.0000021175,0.0000021129,0.0000021061, +0.0000021014,0.0000021000,0.0000021008,0.0000021024,0.0000021031, +0.0000021024,0.0000021011,0.0000021007,0.0000021006,0.0000020997, +0.0000020980,0.0000020959,0.0000020938,0.0000020919,0.0000020897, +0.0000020878,0.0000020865,0.0000020853,0.0000020838,0.0000020826, +0.0000020824,0.0000020836,0.0000020858,0.0000020887,0.0000020927, +0.0000020975,0.0000021011,0.0000021026,0.0000021025,0.0000021021, +0.0000021004,0.0000020984,0.0000020966,0.0000020951,0.0000020949, +0.0000020966,0.0000020986,0.0000021018,0.0000021057,0.0000021095, +0.0000021121,0.0000021137,0.0000021138,0.0000021115,0.0000021073, +0.0000021021,0.0000020971,0.0000020949,0.0000020962,0.0000021004, +0.0000021038,0.0000021046,0.0000021050,0.0000021076,0.0000021156, +0.0000021294,0.0000021425,0.0000021470,0.0000021456,0.0000021426, +0.0000021405,0.0000021410,0.0000021461,0.0000021519,0.0000021538, +0.0000021541,0.0000021562,0.0000021591,0.0000021608,0.0000021610, +0.0000021567,0.0000021471,0.0000021378,0.0000021321,0.0000021291, +0.0000021281,0.0000021280,0.0000021250,0.0000021191,0.0000021157, +0.0000021159,0.0000021175,0.0000021178,0.0000021170,0.0000021158, +0.0000021154,0.0000021163,0.0000021189,0.0000021217,0.0000021245, +0.0000021276,0.0000021296,0.0000021307,0.0000021319,0.0000021328, +0.0000021319,0.0000021289,0.0000021254,0.0000021222,0.0000021182, +0.0000021142,0.0000021117,0.0000021099,0.0000021069,0.0000021047, +0.0000021064,0.0000021117,0.0000021174,0.0000021190,0.0000021165, +0.0000021123,0.0000021085,0.0000021034,0.0000020961,0.0000020890, +0.0000020845,0.0000020823,0.0000020813,0.0000020812,0.0000020817, +0.0000020829,0.0000020847,0.0000020867,0.0000020892,0.0000020921, +0.0000020945,0.0000020951,0.0000020942,0.0000020919,0.0000020888, +0.0000020853,0.0000020819,0.0000020783,0.0000020740,0.0000020694, +0.0000020663,0.0000020652,0.0000020657,0.0000020676,0.0000020711, +0.0000020759,0.0000020809,0.0000020854,0.0000020896,0.0000020936, +0.0000020973,0.0000021011,0.0000021056,0.0000021109,0.0000021160, +0.0000021193,0.0000021199,0.0000021193,0.0000021188,0.0000021189, +0.0000021181,0.0000021178,0.0000021180,0.0000021125,0.0000020950, +0.0000020772,0.0000020706,0.0000020771,0.0000021037,0.0000021408, +0.0000021677,0.0000021829,0.0000021932,0.0000021995,0.0000022027, +0.0000022049,0.0000022060,0.0000022057,0.0000022051,0.0000022047, +0.0000022052,0.0000022068,0.0000022088,0.0000022093,0.0000022078, +0.0000022052,0.0000022031,0.0000022019,0.0000022010,0.0000021996, +0.0000021961,0.0000021877,0.0000021730,0.0000021555,0.0000021440, +0.0000021420,0.0000021429,0.0000021444,0.0000021496,0.0000021626, +0.0000021796,0.0000021925,0.0000021987,0.0000021999,0.0000021982, +0.0000021953,0.0000021950,0.0000022017,0.0000022104,0.0000022079, +0.0000022058,0.0000021887,0.0000021740,0.0000021707,0.0000021644, +0.0000021426,0.0000021239,0.0000021228,0.0000021327,0.0000021524, +0.0000021846,0.0000022170,0.0000022349,0.0000022409,0.0000022438, +0.0000022489,0.0000022561,0.0000022630,0.0000022679,0.0000022713, +0.0000022737,0.0000022758,0.0000022776,0.0000022788,0.0000022796, +0.0000022801,0.0000022801,0.0000022799,0.0000022794,0.0000022782, +0.0000022762,0.0000022736,0.0000022706,0.0000022678,0.0000022654, +0.0000022631,0.0000022610,0.0000022600,0.0000022604,0.0000022617, +0.0000022623,0.0000022618,0.0000022608,0.0000022599,0.0000022592, +0.0000022588,0.0000022587,0.0000022588,0.0000022592,0.0000022597, +0.0000022601,0.0000022609,0.0000022617,0.0000022622,0.0000022625, +0.0000022626,0.0000022627,0.0000022627,0.0000022631,0.0000022641, +0.0000022658,0.0000022673,0.0000022680,0.0000022681,0.0000022677, +0.0000022668,0.0000022643,0.0000022598,0.0000022538,0.0000022473, +0.0000022406,0.0000022330,0.0000022240,0.0000022145,0.0000022062, +0.0000022004,0.0000021965,0.0000021935,0.0000021907,0.0000021882, +0.0000021856,0.0000021838,0.0000021842,0.0000021867,0.0000021904, +0.0000021941,0.0000021971,0.0000021991,0.0000022011,0.0000022043, +0.0000022071,0.0000022084,0.0000022082,0.0000022053,0.0000022004, +0.0000021950,0.0000021891,0.0000021828,0.0000021764,0.0000021698, +0.0000021639,0.0000021585,0.0000021529,0.0000021486,0.0000021466, +0.0000021450,0.0000021438,0.0000021428,0.0000021414,0.0000021402, +0.0000021413,0.0000021460,0.0000021528,0.0000021582,0.0000021614, +0.0000021636,0.0000021645,0.0000021639,0.0000021619,0.0000021584, +0.0000021551,0.0000021519,0.0000021481,0.0000021443,0.0000021419, +0.0000021411,0.0000021420,0.0000021436,0.0000021460,0.0000021492, +0.0000021518,0.0000021549,0.0000021619,0.0000021701,0.0000021786, +0.0000021882,0.0000021984,0.0000022081,0.0000022166,0.0000022233, +0.0000022275,0.0000022303,0.0000022335,0.0000022366,0.0000022382, +0.0000022389,0.0000022404,0.0000022429,0.0000022457,0.0000022475, +0.0000022495,0.0000022518,0.0000022535,0.0000022549,0.0000022573, +0.0000022610,0.0000022654,0.0000022699,0.0000022747,0.0000022788, +0.0000022817,0.0000022841,0.0000022872,0.0000022910,0.0000022947, +0.0000022980,0.0000023001,0.0000023002,0.0000022986,0.0000022964, +0.0000022955,0.0000022958,0.0000022981,0.0000023014,0.0000023042, +0.0000023048,0.0000023034,0.0000022987,0.0000022904,0.0000022799, +0.0000022699,0.0000022644,0.0000022643,0.0000022687,0.0000022768, +0.0000022865,0.0000022952,0.0000023015,0.0000023051,0.0000023058, +0.0000023069,0.0000023069,0.0000023066,0.0000023059,0.0000023048, +0.0000023041,0.0000023035,0.0000023038,0.0000023048,0.0000023065, +0.0000023090,0.0000023117,0.0000023142,0.0000023163,0.0000023183, +0.0000023202,0.0000023215,0.0000023218,0.0000023210,0.0000023194, +0.0000023172,0.0000023150,0.0000023129,0.0000023111,0.0000023103, +0.0000023107,0.0000023124,0.0000023151,0.0000023180,0.0000023198, +0.0000023201,0.0000023198,0.0000023196,0.0000023199,0.0000023204, +0.0000023210,0.0000023219,0.0000023229,0.0000023237,0.0000023239, +0.0000023239,0.0000023235,0.0000023220,0.0000023192,0.0000023152, +0.0000023108,0.0000023068,0.0000023037,0.0000023017,0.0000023007, +0.0000023004,0.0000023005,0.0000023012,0.0000023023,0.0000023037, +0.0000023051,0.0000023063,0.0000023071,0.0000023073,0.0000023069, +0.0000023058,0.0000023041,0.0000023021,0.0000022998,0.0000022973, +0.0000022945,0.0000022912,0.0000022880,0.0000022852,0.0000022819, +0.0000022777,0.0000022733,0.0000022683,0.0000022643,0.0000022625, +0.0000022623,0.0000022621,0.0000022615,0.0000022600,0.0000022570, +0.0000022523,0.0000022464,0.0000022407,0.0000022364,0.0000022339, +0.0000022322,0.0000022310,0.0000022305,0.0000022306,0.0000022317, +0.0000022338,0.0000022364,0.0000022385,0.0000022397,0.0000022408, +0.0000022419,0.0000022429,0.0000022437,0.0000022437,0.0000022432, +0.0000022414,0.0000022387,0.0000022353,0.0000022312,0.0000022266, +0.0000022221,0.0000022178,0.0000022136,0.0000022088,0.0000022040, +0.0000021994,0.0000021943,0.0000021881,0.0000021816,0.0000021760, +0.0000021722,0.0000021702,0.0000021691,0.0000021685,0.0000021675, +0.0000021674,0.0000021645,0.0000021625,0.0000021591,0.0000021561, +0.0000021543,0.0000021523,0.0000021499,0.0000021479,0.0000021461, +0.0000021463,0.0000021477,0.0000021504,0.0000021543,0.0000021599, +0.0000021664,0.0000021727,0.0000021781,0.0000021827,0.0000021862, +0.0000021884,0.0000021895,0.0000021901,0.0000021908,0.0000021915, +0.0000021921,0.0000021927,0.0000021935,0.0000021946,0.0000021960, +0.0000021984,0.0000022015,0.0000022046,0.0000022086,0.0000022130, +0.0000022182,0.0000022238,0.0000022299,0.0000022365,0.0000022436, +0.0000022508,0.0000022579,0.0000022640,0.0000022686,0.0000022714, +0.0000022728,0.0000022731,0.0000022723,0.0000022702,0.0000022668, +0.0000022633,0.0000022596,0.0000022553,0.0000022504,0.0000022454, +0.0000022414,0.0000022387,0.0000022375,0.0000022378,0.0000022391, +0.0000022413,0.0000022441,0.0000022474,0.0000022512,0.0000022553, +0.0000022595,0.0000022631,0.0000022659,0.0000022674,0.0000022683, +0.0000022693,0.0000022696,0.0000022680,0.0000022661,0.0000022646, +0.0000022636,0.0000022627,0.0000022618,0.0000022615,0.0000022613, +0.0000022607,0.0000022598,0.0000022581,0.0000022555,0.0000022521, +0.0000022486,0.0000022466,0.0000022461,0.0000022458,0.0000022464, +0.0000022479,0.0000022517,0.0000022556,0.0000022557,0.0000022513, +0.0000022426,0.0000022313,0.0000022262,0.0000022290,0.0000022326, +0.0000022343,0.0000022364,0.0000022387,0.0000022608,0.0000022745, +0.0000022760,0.0000022840,0.0000022969,0.0000023048,0.0000023175, +0.0000023145,0.0000023029,0.0000022868,0.0000022694,0.0000022563, +0.0000022517,0.0000022567,0.0000022648,0.0000022687,0.0000022691, +0.0000022749,0.0000022872,0.0000022947,0.0000022950,0.0000022942, +0.0000022922,0.0000022898,0.0000022910,0.0000022969,0.0000023023, +0.0000023106,0.0000023237,0.0000023431,0.0000023537,0.0000023623, +0.0000023619,0.0000023457,0.0000023321,0.0000023315,0.0000023342, +0.0000023306,0.0000023260,0.0000023234,0.0000023209,0.0000023157, +0.0000023102,0.0000023037,0.0000022972,0.0000022939,0.0000022928, +0.0000022924,0.0000022943,0.0000022983,0.0000023029,0.0000023073, +0.0000023092,0.0000023091,0.0000023060,0.0000023021,0.0000022967, +0.0000022914,0.0000022869,0.0000022843,0.0000022841,0.0000022851, +0.0000022856,0.0000022851,0.0000022848,0.0000022867,0.0000022884, +0.0000022882,0.0000022870,0.0000022870,0.0000022908,0.0000022997, +0.0000023094,0.0000023147,0.0000023134,0.0000023074,0.0000023009, +0.0000022961,0.0000022879,0.0000022728,0.0000022533,0.0000022231, +0.0000022110,0.0000022218,0.0000022235,0.0000022177,0.0000022177, +0.0000022090,0.0000021782,0.0000021597,0.0000021742,0.0000021992, +0.0000022187,0.0000022307,0.0000022401,0.0000022502,0.0000022590, +0.0000022647,0.0000022646,0.0000022611,0.0000022559,0.0000022505, +0.0000022441,0.0000022365,0.0000022321,0.0000022316,0.0000022338, +0.0000022408,0.0000022530,0.0000022682,0.0000022778,0.0000022754, +0.0000022648,0.0000022538,0.0000022406,0.0000022203,0.0000022047, +0.0000022002,0.0000022005,0.0000022069,0.0000022150,0.0000022184, +0.0000022217,0.0000022264,0.0000022303,0.0000022342,0.0000022379, +0.0000022411,0.0000022448,0.0000022480,0.0000022497,0.0000022502, +0.0000022506,0.0000022516,0.0000022549,0.0000022565,0.0000022534, +0.0000022500,0.0000022505,0.0000022523,0.0000022530,0.0000022530, +0.0000022538,0.0000022534,0.0000022555,0.0000022729,0.0000022946, +0.0000023034,0.0000023039,0.0000023041,0.0000023058,0.0000023091, +0.0000023128,0.0000023150,0.0000023150,0.0000023147,0.0000023155, +0.0000023164,0.0000023169,0.0000023172,0.0000023169,0.0000023157, +0.0000023150,0.0000023156,0.0000023172,0.0000023199,0.0000023234, +0.0000023276,0.0000023328,0.0000023388,0.0000023443,0.0000023491, +0.0000023535,0.0000023567,0.0000023578,0.0000023579,0.0000023558, +0.0000023511,0.0000023426,0.0000023307,0.0000023182,0.0000023077, +0.0000023008,0.0000022978,0.0000022973,0.0000022973,0.0000022973, +0.0000022984,0.0000023011,0.0000023049,0.0000023090,0.0000023136, +0.0000023190,0.0000023243,0.0000023299,0.0000023354,0.0000023404, +0.0000023442,0.0000023472,0.0000023489,0.0000023493,0.0000023485, +0.0000023453,0.0000023398,0.0000023331,0.0000023252,0.0000023167, +0.0000023088,0.0000023035,0.0000023016,0.0000023038,0.0000023109, +0.0000023223,0.0000023354,0.0000023467,0.0000023545,0.0000023585, +0.0000023595,0.0000023583,0.0000023555,0.0000023533,0.0000023521, +0.0000023514,0.0000023510,0.0000023510,0.0000023515,0.0000023517, +0.0000023522,0.0000023544,0.0000023579,0.0000023620,0.0000023659, +0.0000023698,0.0000023762,0.0000023861,0.0000023963,0.0000024027, +0.0000024043,0.0000024032,0.0000023980,0.0000023918,0.0000023909, +0.0000023943,0.0000023966,0.0000023948,0.0000023914,0.0000023902, +0.0000023904,0.0000023903,0.0000023893,0.0000023875,0.0000023851, +0.0000023826,0.0000023800,0.0000023776,0.0000023753,0.0000023731, +0.0000023710,0.0000023692,0.0000023672,0.0000023645,0.0000023611, +0.0000023572,0.0000023523,0.0000023468,0.0000023419,0.0000023374, +0.0000023326,0.0000023275,0.0000023216,0.0000023148,0.0000023081, +0.0000023034,0.0000023011,0.0000023002,0.0000022991,0.0000022967, +0.0000022928,0.0000022874,0.0000022812,0.0000022746,0.0000022682, +0.0000022631,0.0000022607,0.0000022605,0.0000022615,0.0000022615, +0.0000022604,0.0000022584,0.0000022567,0.0000022565,0.0000022566, +0.0000022572,0.0000022581,0.0000022592,0.0000022606,0.0000022625, +0.0000022644,0.0000022656,0.0000022661,0.0000022661,0.0000022655, +0.0000022640,0.0000022617,0.0000022591,0.0000022567,0.0000022544, +0.0000022527,0.0000022520,0.0000022517,0.0000022514,0.0000022506, +0.0000022496,0.0000022481,0.0000022454,0.0000022418,0.0000022380, +0.0000022340,0.0000022297,0.0000022253,0.0000022215,0.0000022185, +0.0000022168,0.0000022160,0.0000022160,0.0000022165,0.0000022173, +0.0000022182,0.0000022192,0.0000022198,0.0000022200,0.0000022203, +0.0000022210,0.0000022220,0.0000022233,0.0000022251,0.0000022274, +0.0000022297,0.0000022319,0.0000022344,0.0000022367,0.0000022385, +0.0000022398,0.0000022407,0.0000022411,0.0000022411,0.0000022410, +0.0000022408,0.0000022409,0.0000022409,0.0000022404,0.0000022392, +0.0000022377,0.0000022369,0.0000022371,0.0000022390,0.0000022413, +0.0000022437,0.0000022461,0.0000022484,0.0000022516,0.0000022546, +0.0000022589,0.0000022605,0.0000022596,0.0000022557,0.0000022488, +0.0000022392,0.0000022291,0.0000022203,0.0000022120,0.0000022041, +0.0000021985,0.0000021975,0.0000022043,0.0000022140,0.0000022249, +0.0000022359,0.0000022464,0.0000022534,0.0000022556,0.0000022560, +0.0000022564,0.0000022574,0.0000022597,0.0000022637,0.0000022704, +0.0000022789,0.0000022852,0.0000022861,0.0000022846,0.0000022840, +0.0000022847,0.0000022860,0.0000022912,0.0000022936,0.0000022921, +0.0000023064,0.0000023305,0.0000023427,0.0000023405,0.0000023262, +0.0000023102,0.0000023004,0.0000022938,0.0000022899,0.0000022903, +0.0000022909,0.0000022849,0.0000022720,0.0000022577,0.0000022456, +0.0000022349,0.0000022243,0.0000022154,0.0000022092,0.0000022059, +0.0000022058,0.0000022073,0.0000022086,0.0000022096,0.0000022122, +0.0000022158,0.0000022181,0.0000022179,0.0000022160,0.0000022107, +0.0000022042,0.0000022005,0.0000022013,0.0000022092,0.0000022193, +0.0000022278,0.0000022343,0.0000022397,0.0000022432,0.0000022439, +0.0000022425,0.0000022401,0.0000022381,0.0000022360,0.0000022344, +0.0000022337,0.0000022334,0.0000022328,0.0000022319,0.0000022309, +0.0000022294,0.0000022276,0.0000022269,0.0000022273,0.0000022276, +0.0000022259,0.0000022218,0.0000022157,0.0000022087,0.0000022013, +0.0000021947,0.0000021904,0.0000021905,0.0000021989,0.0000022138, +0.0000022251,0.0000022258,0.0000022147,0.0000022060,0.0000022180, +0.0000022599,0.0000022985,0.0000023005,0.0000022717,0.0000022362, +0.0000022175,0.0000022139,0.0000022132,0.0000022070,0.0000021951, +0.0000021827,0.0000021736,0.0000021695,0.0000021693,0.0000021704, +0.0000021714,0.0000021715,0.0000021712,0.0000021713,0.0000021727, +0.0000021753,0.0000021775,0.0000021783,0.0000021776,0.0000021766, +0.0000021768,0.0000021772,0.0000021758,0.0000021726,0.0000021683, +0.0000021633,0.0000021591,0.0000021562,0.0000021539,0.0000021527, +0.0000021524,0.0000021517,0.0000021499,0.0000021476,0.0000021461, +0.0000021464,0.0000021483,0.0000021503,0.0000021529,0.0000021558, +0.0000021597,0.0000021642,0.0000021703,0.0000021789,0.0000021898, +0.0000022027,0.0000022150,0.0000022223,0.0000022238,0.0000022236, +0.0000022241,0.0000022273,0.0000022325,0.0000022377,0.0000022409, +0.0000022417,0.0000022410,0.0000022390,0.0000022367,0.0000022347, +0.0000022335,0.0000022331,0.0000022330,0.0000022324,0.0000022302, +0.0000022258,0.0000022197,0.0000022127,0.0000022047,0.0000021959, +0.0000021862,0.0000021759,0.0000021654,0.0000021562,0.0000021498, +0.0000021459,0.0000021432,0.0000021400,0.0000021359,0.0000021313, +0.0000021285,0.0000021292,0.0000021341,0.0000021416,0.0000021476, +0.0000021492,0.0000021476,0.0000021425,0.0000021361,0.0000021329, +0.0000021337,0.0000021353,0.0000021359,0.0000021365,0.0000021384, +0.0000021440,0.0000021533,0.0000021627,0.0000021667,0.0000021624, +0.0000021512,0.0000021376,0.0000021256,0.0000021148,0.0000021058, +0.0000020995,0.0000020948,0.0000020923,0.0000020950,0.0000021075, +0.0000021263,0.0000021452,0.0000021612,0.0000021730,0.0000021810, +0.0000021866,0.0000021911,0.0000021962,0.0000022025,0.0000022093, +0.0000022154,0.0000022213,0.0000022301,0.0000022435,0.0000022599, +0.0000022773,0.0000022941,0.0000023078,0.0000023135,0.0000023105, +0.0000023050,0.0000023025,0.0000023108,0.0000023307,0.0000023578, +0.0000023874,0.0000024132,0.0000024297,0.0000024376,0.0000024413, +0.0000024453,0.0000024516,0.0000024597,0.0000024680,0.0000024732, +0.0000024709,0.0000024602,0.0000024477,0.0000024390,0.0000024346, +0.0000024310,0.0000024257,0.0000024211,0.0000024202,0.0000024217, +0.0000024239,0.0000024252,0.0000024248,0.0000024230,0.0000024200, +0.0000024174,0.0000024119,0.0000024057,0.0000024015,0.0000023997, +0.0000023996,0.0000024007,0.0000024025,0.0000024045,0.0000024054, +0.0000024051,0.0000024034,0.0000024009,0.0000023982,0.0000023974, +0.0000024012,0.0000024107,0.0000024203,0.0000024237,0.0000024214, +0.0000024112,0.0000023971,0.0000023865,0.0000023816,0.0000023778, +0.0000023706,0.0000023617,0.0000023540,0.0000023453,0.0000023340, +0.0000023203,0.0000023064,0.0000022927,0.0000022790,0.0000022659, +0.0000022555,0.0000022498,0.0000022487,0.0000022494,0.0000022503, +0.0000022511,0.0000022519,0.0000022527,0.0000022534,0.0000022539, +0.0000022552,0.0000022573,0.0000022598,0.0000022636,0.0000022698, +0.0000022789,0.0000022912,0.0000023085,0.0000023307,0.0000023544, +0.0000023757,0.0000023933,0.0000024047,0.0000024108,0.0000024070, +0.0000024031,0.0000023943,0.0000023844,0.0000023734,0.0000023627, +0.0000023532,0.0000023446,0.0000023364,0.0000023287,0.0000023218, +0.0000023152,0.0000023086,0.0000023015,0.0000022941,0.0000022871, +0.0000022810,0.0000022754,0.0000022702,0.0000022657,0.0000022620, +0.0000022594,0.0000022582,0.0000022578,0.0000022583,0.0000022608, +0.0000022659,0.0000022723,0.0000022791,0.0000022858,0.0000022910, +0.0000022941,0.0000022956,0.0000022955,0.0000022937,0.0000022897, +0.0000022845,0.0000022798,0.0000022769,0.0000022751,0.0000022737, +0.0000022725,0.0000022712,0.0000022691,0.0000022666,0.0000022633, +0.0000022590,0.0000022543,0.0000022487,0.0000022438,0.0000022398, +0.0000022377,0.0000022382,0.0000022408,0.0000022450,0.0000022491, +0.0000022519,0.0000022527,0.0000022518,0.0000022487,0.0000022456, +0.0000022414,0.0000022358,0.0000022289,0.0000022217,0.0000022157, +0.0000022101,0.0000022039,0.0000021973,0.0000021913,0.0000021869, +0.0000021832,0.0000021808,0.0000021789,0.0000021781,0.0000021784, +0.0000021796,0.0000021808,0.0000021821,0.0000021832,0.0000021840, +0.0000021845,0.0000021849,0.0000021849,0.0000021850,0.0000021848, +0.0000021843,0.0000021835,0.0000021826,0.0000021822,0.0000021828, +0.0000021839,0.0000021843,0.0000021843,0.0000021841,0.0000021834, +0.0000021816,0.0000021789,0.0000021754,0.0000021693,0.0000021608, +0.0000021516,0.0000021432,0.0000021360,0.0000021308,0.0000021277, +0.0000021264,0.0000021259,0.0000021257,0.0000021253,0.0000021245, +0.0000021223,0.0000021184,0.0000021132,0.0000021077,0.0000021030, +0.0000020996,0.0000020976,0.0000020959,0.0000020938,0.0000020916, +0.0000020891,0.0000020866,0.0000020850,0.0000020856,0.0000020896, +0.0000020972,0.0000021061,0.0000021135,0.0000021154,0.0000021111, +0.0000021050,0.0000021008,0.0000020991,0.0000020990,0.0000020988, +0.0000020980,0.0000020964,0.0000020957,0.0000020950,0.0000020939, +0.0000020922,0.0000020901,0.0000020879,0.0000020861,0.0000020839, +0.0000020821,0.0000020810,0.0000020802,0.0000020795,0.0000020788, +0.0000020785,0.0000020787,0.0000020792,0.0000020803,0.0000020832, +0.0000020878,0.0000020920,0.0000020951,0.0000020975,0.0000020989, +0.0000020990,0.0000020985,0.0000020976,0.0000020967,0.0000020971, +0.0000020980,0.0000020992,0.0000021005,0.0000021013,0.0000021027, +0.0000021046,0.0000021066,0.0000021075,0.0000021062,0.0000021030, +0.0000020985,0.0000020937,0.0000020909,0.0000020918,0.0000020961, +0.0000021006,0.0000021021,0.0000021021,0.0000021034,0.0000021099, +0.0000021236,0.0000021385,0.0000021456,0.0000021452,0.0000021429, +0.0000021418,0.0000021443,0.0000021516,0.0000021569,0.0000021576, +0.0000021576,0.0000021586,0.0000021598,0.0000021609,0.0000021600, +0.0000021535,0.0000021433,0.0000021342,0.0000021280,0.0000021252, +0.0000021250,0.0000021237,0.0000021189,0.0000021148,0.0000021144, +0.0000021157,0.0000021172,0.0000021173,0.0000021159,0.0000021136, +0.0000021123,0.0000021126,0.0000021140,0.0000021158,0.0000021184, +0.0000021218,0.0000021250,0.0000021273,0.0000021290,0.0000021302, +0.0000021302,0.0000021278,0.0000021237,0.0000021192,0.0000021145, +0.0000021102,0.0000021080,0.0000021066,0.0000021041,0.0000021018, +0.0000021018,0.0000021053,0.0000021110,0.0000021154,0.0000021159, +0.0000021132,0.0000021093,0.0000021042,0.0000020964,0.0000020878, +0.0000020818,0.0000020793,0.0000020786,0.0000020784,0.0000020787, +0.0000020797,0.0000020813,0.0000020832,0.0000020858,0.0000020887, +0.0000020909,0.0000020916,0.0000020911,0.0000020890,0.0000020851, +0.0000020800,0.0000020746,0.0000020694,0.0000020639,0.0000020586, +0.0000020544,0.0000020524,0.0000020530,0.0000020561,0.0000020611, +0.0000020673,0.0000020737,0.0000020795,0.0000020846,0.0000020892, +0.0000020930,0.0000020960,0.0000020985,0.0000021019,0.0000021066, +0.0000021113,0.0000021139,0.0000021145,0.0000021144,0.0000021147, +0.0000021157,0.0000021166,0.0000021174,0.0000021171,0.0000021086, +0.0000020904,0.0000020738,0.0000020689,0.0000020772,0.0000021053, +0.0000021421,0.0000021689,0.0000021840,0.0000021937,0.0000021989, +0.0000022006,0.0000022020,0.0000022036,0.0000022046,0.0000022045, +0.0000022044,0.0000022049,0.0000022063,0.0000022079,0.0000022082, +0.0000022068,0.0000022042,0.0000022016,0.0000022004,0.0000022005, +0.0000022008,0.0000021987,0.0000021904,0.0000021750,0.0000021565, +0.0000021438,0.0000021413,0.0000021425,0.0000021442,0.0000021492, +0.0000021617,0.0000021780,0.0000021902,0.0000021955,0.0000021964, +0.0000021952,0.0000021927,0.0000021941,0.0000022030,0.0000022105, +0.0000022095,0.0000022038,0.0000021850,0.0000021703,0.0000021665, +0.0000021577,0.0000021356,0.0000021186,0.0000021179,0.0000021275, +0.0000021444,0.0000021712,0.0000022029,0.0000022285,0.0000022416, +0.0000022473,0.0000022528,0.0000022592,0.0000022649,0.0000022689, +0.0000022710,0.0000022720,0.0000022723,0.0000022721,0.0000022719, +0.0000022717,0.0000022715,0.0000022717,0.0000022723,0.0000022727, +0.0000022725,0.0000022715,0.0000022695,0.0000022668,0.0000022633, +0.0000022591,0.0000022547,0.0000022506,0.0000022477,0.0000022458, +0.0000022436,0.0000022405,0.0000022371,0.0000022342,0.0000022326, +0.0000022319,0.0000022317,0.0000022318,0.0000022324,0.0000022332, +0.0000022343,0.0000022358,0.0000022373,0.0000022386,0.0000022398, +0.0000022409,0.0000022416,0.0000022420,0.0000022425,0.0000022435, +0.0000022451,0.0000022464,0.0000022466,0.0000022462,0.0000022455, +0.0000022444,0.0000022420,0.0000022381,0.0000022332,0.0000022283, +0.0000022239,0.0000022189,0.0000022123,0.0000022037,0.0000021943, +0.0000021858,0.0000021795,0.0000021753,0.0000021720,0.0000021697, +0.0000021677,0.0000021655,0.0000021646,0.0000021658,0.0000021688, +0.0000021722,0.0000021755,0.0000021779,0.0000021789,0.0000021805, +0.0000021829,0.0000021849,0.0000021860,0.0000021857,0.0000021835, +0.0000021801,0.0000021758,0.0000021703,0.0000021645,0.0000021584, +0.0000021529,0.0000021486,0.0000021443,0.0000021400,0.0000021380, +0.0000021383,0.0000021391,0.0000021398,0.0000021404,0.0000021410, +0.0000021431,0.0000021480,0.0000021550,0.0000021620,0.0000021672, +0.0000021705,0.0000021728,0.0000021741,0.0000021743,0.0000021733, +0.0000021710,0.0000021682,0.0000021647,0.0000021604,0.0000021557, +0.0000021513,0.0000021484,0.0000021478,0.0000021481,0.0000021495, +0.0000021516,0.0000021523,0.0000021522,0.0000021526,0.0000021518, +0.0000021510,0.0000021562,0.0000021652,0.0000021758,0.0000021869, +0.0000021966,0.0000022034,0.0000022086,0.0000022136,0.0000022172, +0.0000022179,0.0000022175,0.0000022184,0.0000022209,0.0000022241, +0.0000022272,0.0000022312,0.0000022359,0.0000022402,0.0000022440, +0.0000022483,0.0000022538,0.0000022596,0.0000022647,0.0000022689, +0.0000022717,0.0000022734,0.0000022754,0.0000022783,0.0000022815, +0.0000022853,0.0000022900,0.0000022948,0.0000022983,0.0000022998, +0.0000023004,0.0000023003,0.0000022996,0.0000022992,0.0000022995, +0.0000023003,0.0000023016,0.0000023025,0.0000023019,0.0000022993, +0.0000022938,0.0000022852,0.0000022748,0.0000022654,0.0000022606, +0.0000022597,0.0000022629,0.0000022692,0.0000022780,0.0000022880, +0.0000022971,0.0000023042,0.0000023075,0.0000023089,0.0000023099, +0.0000023091,0.0000023074,0.0000023055,0.0000023040,0.0000023034, +0.0000023036,0.0000023051,0.0000023077,0.0000023103,0.0000023123, +0.0000023140,0.0000023154,0.0000023168,0.0000023179,0.0000023189, +0.0000023188,0.0000023184,0.0000023174,0.0000023159,0.0000023140, +0.0000023123,0.0000023118,0.0000023127,0.0000023146,0.0000023177, +0.0000023205,0.0000023219,0.0000023220,0.0000023216,0.0000023213, +0.0000023212,0.0000023214,0.0000023222,0.0000023232,0.0000023239, +0.0000023241,0.0000023242,0.0000023239,0.0000023232,0.0000023217, +0.0000023190,0.0000023159,0.0000023130,0.0000023107,0.0000023088, +0.0000023072,0.0000023063,0.0000023060,0.0000023060,0.0000023063, +0.0000023069,0.0000023076,0.0000023080,0.0000023083,0.0000023085, +0.0000023084,0.0000023078,0.0000023065,0.0000023046,0.0000023021, +0.0000022990,0.0000022951,0.0000022905,0.0000022857,0.0000022821, +0.0000022787,0.0000022750,0.0000022707,0.0000022666,0.0000022636, +0.0000022628,0.0000022628,0.0000022627,0.0000022622,0.0000022606, +0.0000022570,0.0000022518,0.0000022458,0.0000022404,0.0000022363, +0.0000022332,0.0000022312,0.0000022298,0.0000022293,0.0000022296, +0.0000022307,0.0000022328,0.0000022354,0.0000022374,0.0000022388, +0.0000022397,0.0000022405,0.0000022414,0.0000022424,0.0000022431, +0.0000022435,0.0000022427,0.0000022413,0.0000022397,0.0000022376, +0.0000022342,0.0000022302,0.0000022260,0.0000022218,0.0000022170, +0.0000022120,0.0000022078,0.0000022046,0.0000022012,0.0000021969, +0.0000021917,0.0000021858,0.0000021810,0.0000021779,0.0000021764, +0.0000021753,0.0000021739,0.0000021720,0.0000021697,0.0000021662, +0.0000021621,0.0000021575,0.0000021520,0.0000021461,0.0000021422, +0.0000021379,0.0000021334,0.0000021293,0.0000021263,0.0000021245, +0.0000021240,0.0000021238,0.0000021246,0.0000021264,0.0000021289, +0.0000021317,0.0000021350,0.0000021389,0.0000021438,0.0000021500, +0.0000021567,0.0000021635,0.0000021699,0.0000021758,0.0000021805, +0.0000021839,0.0000021861,0.0000021877,0.0000021896,0.0000021927, +0.0000021970,0.0000022016,0.0000022062,0.0000022107,0.0000022163, +0.0000022233,0.0000022314,0.0000022397,0.0000022474,0.0000022538, +0.0000022585,0.0000022620,0.0000022643,0.0000022647,0.0000022635, +0.0000022604,0.0000022562,0.0000022510,0.0000022450,0.0000022391, +0.0000022336,0.0000022287,0.0000022249,0.0000022224,0.0000022213, +0.0000022214,0.0000022228,0.0000022263,0.0000022321,0.0000022396, +0.0000022472,0.0000022551,0.0000022620,0.0000022661,0.0000022673, +0.0000022659,0.0000022629,0.0000022616,0.0000022622,0.0000022633, +0.0000022640,0.0000022638,0.0000022638,0.0000022641,0.0000022642, +0.0000022642,0.0000022640,0.0000022638,0.0000022631,0.0000022618, +0.0000022597,0.0000022566,0.0000022528,0.0000022500,0.0000022484, +0.0000022472,0.0000022474,0.0000022493,0.0000022532,0.0000022543, +0.0000022511,0.0000022423,0.0000022289,0.0000022216,0.0000022241, +0.0000022288,0.0000022305,0.0000022319,0.0000022359,0.0000022608, +0.0000022763,0.0000022791,0.0000022891,0.0000022988,0.0000023080, +0.0000023167,0.0000023093,0.0000022974,0.0000022782,0.0000022627, +0.0000022523,0.0000022522,0.0000022578,0.0000022616,0.0000022621, +0.0000022646,0.0000022766,0.0000022892,0.0000022961,0.0000022962, +0.0000022953,0.0000022934,0.0000022902,0.0000022913,0.0000022973, +0.0000023025,0.0000023092,0.0000023194,0.0000023381,0.0000023524, +0.0000023613,0.0000023642,0.0000023520,0.0000023375,0.0000023321, +0.0000023351,0.0000023340,0.0000023285,0.0000023248,0.0000023234, +0.0000023210,0.0000023167,0.0000023114,0.0000023064,0.0000023043, +0.0000023039,0.0000023036,0.0000023043,0.0000023062,0.0000023086, +0.0000023111,0.0000023122,0.0000023105,0.0000023057,0.0000022998, +0.0000022943,0.0000022896,0.0000022871,0.0000022869,0.0000022884, +0.0000022898,0.0000022900,0.0000022895,0.0000022882,0.0000022876, +0.0000022873,0.0000022864,0.0000022853,0.0000022860,0.0000022886, +0.0000022955,0.0000023052,0.0000023133,0.0000023149,0.0000023110, +0.0000023053,0.0000023009,0.0000022949,0.0000022808,0.0000022622, +0.0000022334,0.0000022131,0.0000022194,0.0000022246,0.0000022179, +0.0000022167,0.0000022134,0.0000021870,0.0000021606,0.0000021647, +0.0000021881,0.0000022094,0.0000022236,0.0000022337,0.0000022429, +0.0000022515,0.0000022591,0.0000022612,0.0000022585,0.0000022531, +0.0000022473,0.0000022415,0.0000022355,0.0000022317,0.0000022312, +0.0000022322,0.0000022367,0.0000022456,0.0000022589,0.0000022731, +0.0000022780,0.0000022728,0.0000022614,0.0000022508,0.0000022354, +0.0000022153,0.0000022036,0.0000022005,0.0000022012,0.0000022076, +0.0000022136,0.0000022157,0.0000022196,0.0000022252,0.0000022304, +0.0000022353,0.0000022392,0.0000022430,0.0000022472,0.0000022498, +0.0000022501,0.0000022490,0.0000022483,0.0000022495,0.0000022532, +0.0000022536,0.0000022483,0.0000022459,0.0000022473,0.0000022497, +0.0000022499,0.0000022501,0.0000022515,0.0000022504,0.0000022538, +0.0000022727,0.0000022928,0.0000023003,0.0000023016,0.0000023025, +0.0000023042,0.0000023070,0.0000023101,0.0000023120,0.0000023117, +0.0000023109,0.0000023108,0.0000023111,0.0000023113,0.0000023112, +0.0000023102,0.0000023088,0.0000023073,0.0000023060,0.0000023059, +0.0000023072,0.0000023094,0.0000023130,0.0000023183,0.0000023246, +0.0000023317,0.0000023393,0.0000023467,0.0000023531,0.0000023572, +0.0000023574,0.0000023565,0.0000023539,0.0000023492,0.0000023424, +0.0000023333,0.0000023225,0.0000023118,0.0000023035,0.0000022993, +0.0000022976,0.0000022968,0.0000022968,0.0000022981,0.0000023015, +0.0000023053,0.0000023095,0.0000023151,0.0000023220,0.0000023293, +0.0000023368,0.0000023435,0.0000023494,0.0000023541,0.0000023567, +0.0000023572,0.0000023559,0.0000023519,0.0000023454,0.0000023377, +0.0000023291,0.0000023207,0.0000023134,0.0000023084,0.0000023076, +0.0000023115,0.0000023209,0.0000023334,0.0000023453,0.0000023538, +0.0000023582,0.0000023599,0.0000023599,0.0000023576,0.0000023544, +0.0000023517,0.0000023504,0.0000023499,0.0000023500,0.0000023511, +0.0000023525,0.0000023533,0.0000023535,0.0000023549,0.0000023575, +0.0000023614,0.0000023659,0.0000023707,0.0000023769,0.0000023851, +0.0000023934,0.0000023992,0.0000024015,0.0000024013,0.0000023971, +0.0000023910,0.0000023878,0.0000023905,0.0000023963,0.0000023991, +0.0000023982,0.0000023958,0.0000023950,0.0000023948,0.0000023940, +0.0000023928,0.0000023915,0.0000023892,0.0000023856,0.0000023815, +0.0000023777,0.0000023746,0.0000023721,0.0000023696,0.0000023660, +0.0000023614,0.0000023566,0.0000023519,0.0000023469,0.0000023422, +0.0000023379,0.0000023329,0.0000023272,0.0000023212,0.0000023147, +0.0000023081,0.0000023027,0.0000022998,0.0000022984,0.0000022964, +0.0000022932,0.0000022893,0.0000022850,0.0000022803,0.0000022750, +0.0000022696,0.0000022655,0.0000022634,0.0000022625,0.0000022619, +0.0000022608,0.0000022587,0.0000022566,0.0000022558,0.0000022567, +0.0000022588,0.0000022612,0.0000022629,0.0000022640,0.0000022650, +0.0000022664,0.0000022685,0.0000022705,0.0000022716,0.0000022718, +0.0000022715,0.0000022706,0.0000022690,0.0000022664,0.0000022637, +0.0000022613,0.0000022592,0.0000022573,0.0000022560,0.0000022551, +0.0000022546,0.0000022539,0.0000022534,0.0000022527,0.0000022511, +0.0000022483,0.0000022452,0.0000022416,0.0000022368,0.0000022315, +0.0000022263,0.0000022216,0.0000022178,0.0000022155,0.0000022141, +0.0000022138,0.0000022141,0.0000022155,0.0000022171,0.0000022186, +0.0000022194,0.0000022200,0.0000022207,0.0000022216,0.0000022230, +0.0000022250,0.0000022276,0.0000022306,0.0000022333,0.0000022359, +0.0000022381,0.0000022399,0.0000022413,0.0000022422,0.0000022428, +0.0000022429,0.0000022425,0.0000022418,0.0000022411,0.0000022404, +0.0000022396,0.0000022381,0.0000022363,0.0000022347,0.0000022336, +0.0000022341,0.0000022356,0.0000022378,0.0000022404,0.0000022427, +0.0000022450,0.0000022477,0.0000022517,0.0000022564,0.0000022596, +0.0000022604,0.0000022592,0.0000022537,0.0000022434,0.0000022315, +0.0000022208,0.0000022115,0.0000022026,0.0000021955,0.0000021947, +0.0000021985,0.0000022078,0.0000022182,0.0000022301,0.0000022420, +0.0000022497,0.0000022532,0.0000022552,0.0000022571,0.0000022591, +0.0000022616,0.0000022649,0.0000022706,0.0000022785,0.0000022843, +0.0000022856,0.0000022849,0.0000022849,0.0000022850,0.0000022865, +0.0000022915,0.0000022914,0.0000022922,0.0000023113,0.0000023345, +0.0000023419,0.0000023372,0.0000023202,0.0000023043,0.0000022957, +0.0000022902,0.0000022867,0.0000022853,0.0000022801,0.0000022676, +0.0000022530,0.0000022413,0.0000022317,0.0000022228,0.0000022151, +0.0000022095,0.0000022060,0.0000022053,0.0000022074,0.0000022099, +0.0000022114,0.0000022131,0.0000022154,0.0000022150,0.0000022127, +0.0000022088,0.0000022042,0.0000022010,0.0000022012,0.0000022085, +0.0000022188,0.0000022269,0.0000022323,0.0000022375,0.0000022424, +0.0000022451,0.0000022452,0.0000022435,0.0000022411,0.0000022389, +0.0000022370,0.0000022351,0.0000022343,0.0000022347,0.0000022362, +0.0000022377,0.0000022393,0.0000022403,0.0000022397,0.0000022383, +0.0000022370,0.0000022362,0.0000022358,0.0000022354,0.0000022341, +0.0000022300,0.0000022223,0.0000022119,0.0000022014,0.0000021925, +0.0000021863,0.0000021850,0.0000021937,0.0000022110,0.0000022245, +0.0000022253,0.0000022151,0.0000022093,0.0000022286,0.0000022721, +0.0000023005,0.0000022926,0.0000022582,0.0000022269,0.0000022140, +0.0000022117,0.0000022093,0.0000022018,0.0000021899,0.0000021787, +0.0000021717,0.0000021689,0.0000021684,0.0000021695,0.0000021713, +0.0000021716,0.0000021711,0.0000021715,0.0000021739,0.0000021768, +0.0000021780,0.0000021769,0.0000021751,0.0000021744,0.0000021744, +0.0000021737,0.0000021714,0.0000021672,0.0000021621,0.0000021586, +0.0000021555,0.0000021529,0.0000021518,0.0000021518,0.0000021510, +0.0000021493,0.0000021473,0.0000021462,0.0000021462,0.0000021473, +0.0000021484,0.0000021495,0.0000021515,0.0000021550,0.0000021604, +0.0000021682,0.0000021784,0.0000021906,0.0000022042,0.0000022161, +0.0000022227,0.0000022241,0.0000022245,0.0000022263,0.0000022308, +0.0000022371,0.0000022429,0.0000022468,0.0000022489,0.0000022497, +0.0000022494,0.0000022487,0.0000022479,0.0000022472,0.0000022466, +0.0000022456,0.0000022436,0.0000022393,0.0000022317,0.0000022223, +0.0000022131,0.0000022043,0.0000021949,0.0000021838,0.0000021707, +0.0000021575,0.0000021468,0.0000021399,0.0000021364,0.0000021347, +0.0000021333,0.0000021309,0.0000021270,0.0000021234,0.0000021225, +0.0000021257,0.0000021331,0.0000021421,0.0000021485,0.0000021498, +0.0000021474,0.0000021410,0.0000021343,0.0000021314,0.0000021318, +0.0000021328,0.0000021329,0.0000021320,0.0000021331,0.0000021395, +0.0000021511,0.0000021625,0.0000021669,0.0000021630,0.0000021519, +0.0000021385,0.0000021258,0.0000021145,0.0000021051,0.0000020984, +0.0000020931,0.0000020910,0.0000020929,0.0000021035,0.0000021217, +0.0000021430,0.0000021622,0.0000021765,0.0000021857,0.0000021912, +0.0000021948,0.0000021984,0.0000022030,0.0000022076,0.0000022109, +0.0000022148,0.0000022231,0.0000022371,0.0000022545,0.0000022728, +0.0000022906,0.0000023044,0.0000023097,0.0000023063,0.0000023006, +0.0000022979,0.0000023055,0.0000023241,0.0000023504,0.0000023796, +0.0000024053,0.0000024231,0.0000024329,0.0000024388,0.0000024448, +0.0000024518,0.0000024596,0.0000024677,0.0000024726,0.0000024702, +0.0000024605,0.0000024479,0.0000024381,0.0000024329,0.0000024293, +0.0000024250,0.0000024213,0.0000024194,0.0000024190,0.0000024186, +0.0000024185,0.0000024183,0.0000024183,0.0000024183,0.0000024162, +0.0000024132,0.0000024088,0.0000024046,0.0000024022,0.0000024021, +0.0000024040,0.0000024068,0.0000024087,0.0000024084,0.0000024060, +0.0000024021,0.0000023984,0.0000023968,0.0000023998,0.0000024096, +0.0000024207,0.0000024258,0.0000024244,0.0000024162,0.0000024036, +0.0000023929,0.0000023878,0.0000023849,0.0000023784,0.0000023675, +0.0000023572,0.0000023474,0.0000023352,0.0000023211,0.0000023076, +0.0000022945,0.0000022803,0.0000022662,0.0000022549,0.0000022489, +0.0000022480,0.0000022490,0.0000022495,0.0000022490,0.0000022483, +0.0000022457,0.0000022430,0.0000022404,0.0000022392,0.0000022395, +0.0000022406,0.0000022421,0.0000022442,0.0000022475,0.0000022525, +0.0000022617,0.0000022771,0.0000022967,0.0000023181,0.0000023398, +0.0000023608,0.0000023787,0.0000023918,0.0000023982,0.0000023983, +0.0000023934,0.0000023864,0.0000023759,0.0000023649,0.0000023547, +0.0000023451,0.0000023362,0.0000023285,0.0000023226,0.0000023179, +0.0000023131,0.0000023076,0.0000023017,0.0000022959,0.0000022901, +0.0000022841,0.0000022784,0.0000022736,0.0000022698,0.0000022675, +0.0000022666,0.0000022661,0.0000022666,0.0000022691,0.0000022730, +0.0000022779,0.0000022830,0.0000022881,0.0000022919,0.0000022939, +0.0000022942,0.0000022933,0.0000022905,0.0000022857,0.0000022802, +0.0000022757,0.0000022726,0.0000022706,0.0000022697,0.0000022685, +0.0000022665,0.0000022638,0.0000022603,0.0000022568,0.0000022537, +0.0000022503,0.0000022458,0.0000022416,0.0000022373,0.0000022345, +0.0000022334,0.0000022348,0.0000022378,0.0000022408,0.0000022431, +0.0000022441,0.0000022439,0.0000022429,0.0000022413,0.0000022390, +0.0000022349,0.0000022295,0.0000022232,0.0000022174,0.0000022115, +0.0000022052,0.0000021981,0.0000021911,0.0000021852,0.0000021808, +0.0000021781,0.0000021767,0.0000021761,0.0000021762,0.0000021769, +0.0000021776,0.0000021780,0.0000021780,0.0000021776,0.0000021768, +0.0000021756,0.0000021742,0.0000021726,0.0000021709,0.0000021693, +0.0000021687,0.0000021693,0.0000021718,0.0000021748,0.0000021765, +0.0000021769,0.0000021771,0.0000021771,0.0000021761,0.0000021743, +0.0000021720,0.0000021682,0.0000021625,0.0000021542,0.0000021449, +0.0000021363,0.0000021292,0.0000021243,0.0000021216,0.0000021207, +0.0000021211,0.0000021218,0.0000021224,0.0000021225,0.0000021213, +0.0000021184,0.0000021136,0.0000021078,0.0000021021,0.0000020978, +0.0000020949,0.0000020927,0.0000020912,0.0000020899,0.0000020878, +0.0000020854,0.0000020833,0.0000020821,0.0000020828,0.0000020859, +0.0000020926,0.0000021014,0.0000021084,0.0000021109,0.0000021092, +0.0000021066,0.0000021028,0.0000020998,0.0000020978,0.0000020948, +0.0000020924,0.0000020898,0.0000020884,0.0000020870,0.0000020852, +0.0000020832,0.0000020814,0.0000020795,0.0000020771,0.0000020753, +0.0000020745,0.0000020739,0.0000020742,0.0000020748,0.0000020752, +0.0000020757,0.0000020755,0.0000020753,0.0000020766,0.0000020794, +0.0000020822,0.0000020851,0.0000020884,0.0000020915,0.0000020942, +0.0000020959,0.0000020968,0.0000020977,0.0000020991,0.0000021005, +0.0000021012,0.0000021008,0.0000020994,0.0000020979,0.0000020977, +0.0000020988,0.0000021001,0.0000021002,0.0000020984,0.0000020947, +0.0000020903,0.0000020872,0.0000020876,0.0000020915,0.0000020964, +0.0000020989,0.0000020989,0.0000020990,0.0000021037,0.0000021172, +0.0000021345,0.0000021445,0.0000021457,0.0000021438,0.0000021429, +0.0000021475,0.0000021558,0.0000021602,0.0000021604,0.0000021604, +0.0000021604,0.0000021609,0.0000021612,0.0000021582,0.0000021494, +0.0000021388,0.0000021300,0.0000021243,0.0000021228,0.0000021220, +0.0000021178,0.0000021138,0.0000021130,0.0000021141,0.0000021156, +0.0000021153,0.0000021129,0.0000021091,0.0000021059,0.0000021047, +0.0000021049,0.0000021062,0.0000021086,0.0000021122,0.0000021169, +0.0000021215,0.0000021246,0.0000021265,0.0000021278,0.0000021278, +0.0000021251,0.0000021202,0.0000021148,0.0000021100,0.0000021061, +0.0000021038,0.0000021024,0.0000021003,0.0000020983,0.0000020980, +0.0000021000,0.0000021048,0.0000021107,0.0000021140,0.0000021130, +0.0000021094,0.0000021046,0.0000020973,0.0000020876,0.0000020795, +0.0000020761,0.0000020757,0.0000020753,0.0000020749,0.0000020753, +0.0000020764,0.0000020781,0.0000020803,0.0000020835,0.0000020864, +0.0000020878,0.0000020880,0.0000020868,0.0000020833,0.0000020780, +0.0000020721,0.0000020659,0.0000020592,0.0000020528,0.0000020478, +0.0000020453,0.0000020451,0.0000020471,0.0000020516,0.0000020579, +0.0000020652,0.0000020720,0.0000020780,0.0000020834,0.0000020881, +0.0000020918,0.0000020942,0.0000020959,0.0000020985,0.0000021024, +0.0000021058,0.0000021075,0.0000021085,0.0000021098,0.0000021115, +0.0000021135,0.0000021150,0.0000021158,0.0000021146,0.0000021047, +0.0000020859,0.0000020707,0.0000020668,0.0000020757,0.0000021040, +0.0000021409,0.0000021680,0.0000021828,0.0000021921,0.0000021970, +0.0000021983,0.0000021993,0.0000022011,0.0000022027,0.0000022034, +0.0000022034,0.0000022036,0.0000022044,0.0000022058,0.0000022067, +0.0000022061,0.0000022040,0.0000022014,0.0000022003,0.0000022004, +0.0000022010,0.0000022001,0.0000021941,0.0000021788,0.0000021589, +0.0000021444,0.0000021405,0.0000021411,0.0000021428,0.0000021477, +0.0000021592,0.0000021743,0.0000021861,0.0000021922,0.0000021940, +0.0000021934,0.0000021924,0.0000021946,0.0000022038,0.0000022044, +0.0000022088,0.0000022014,0.0000021824,0.0000021679,0.0000021636, +0.0000021551,0.0000021334,0.0000021140,0.0000021108,0.0000021185, +0.0000021317,0.0000021528,0.0000021814,0.0000022094,0.0000022308, +0.0000022457,0.0000022557,0.0000022625,0.0000022668,0.0000022692, +0.0000022700,0.0000022702,0.0000022700,0.0000022697,0.0000022691, +0.0000022688,0.0000022687,0.0000022686,0.0000022680,0.0000022660, +0.0000022619,0.0000022563,0.0000022491,0.0000022401,0.0000022301, +0.0000022203,0.0000022119,0.0000022050,0.0000021999,0.0000021954, +0.0000021906,0.0000021858,0.0000021819,0.0000021796,0.0000021788, +0.0000021790,0.0000021798,0.0000021808,0.0000021824,0.0000021844, +0.0000021865,0.0000021888,0.0000021910,0.0000021932,0.0000021955, +0.0000021978,0.0000022000,0.0000022021,0.0000022046,0.0000022074, +0.0000022100,0.0000022118,0.0000022131,0.0000022141,0.0000022147, +0.0000022142,0.0000022123,0.0000022095,0.0000022067,0.0000022044, +0.0000022016,0.0000021967,0.0000021895,0.0000021807,0.0000021711, +0.0000021626,0.0000021567,0.0000021536,0.0000021524,0.0000021521, +0.0000021519,0.0000021515,0.0000021519,0.0000021543,0.0000021575, +0.0000021607,0.0000021640,0.0000021657,0.0000021658,0.0000021657, +0.0000021656,0.0000021656,0.0000021657,0.0000021648,0.0000021629, +0.0000021608,0.0000021579,0.0000021540,0.0000021495,0.0000021447, +0.0000021411,0.0000021386,0.0000021360,0.0000021340,0.0000021340, +0.0000021355,0.0000021370,0.0000021389,0.0000021415,0.0000021446, +0.0000021494,0.0000021554,0.0000021611,0.0000021661,0.0000021702, +0.0000021731,0.0000021753,0.0000021777,0.0000021797,0.0000021801, +0.0000021789,0.0000021771,0.0000021750,0.0000021719,0.0000021678, +0.0000021633,0.0000021598,0.0000021580,0.0000021572,0.0000021580, +0.0000021594,0.0000021595,0.0000021580,0.0000021553,0.0000021513, +0.0000021477,0.0000021465,0.0000021469,0.0000021482,0.0000021530, +0.0000021610,0.0000021691,0.0000021775,0.0000021868,0.0000021949, +0.0000021997,0.0000022020,0.0000022039,0.0000022064,0.0000022084, +0.0000022101,0.0000022128,0.0000022164,0.0000022197,0.0000022230, +0.0000022280,0.0000022352,0.0000022436,0.0000022517,0.0000022588, +0.0000022640,0.0000022677,0.0000022710,0.0000022736,0.0000022757, +0.0000022782,0.0000022817,0.0000022858,0.0000022902,0.0000022948, +0.0000022993,0.0000023025,0.0000023044,0.0000023044,0.0000023031, +0.0000023008,0.0000022991,0.0000022987,0.0000022988,0.0000022986, +0.0000022969,0.0000022935,0.0000022880,0.0000022806,0.0000022722, +0.0000022646,0.0000022610,0.0000022574,0.0000022590,0.0000022644, +0.0000022723,0.0000022815,0.0000022903,0.0000022982,0.0000023046, +0.0000023084,0.0000023081,0.0000023081,0.0000023074,0.0000023061, +0.0000023054,0.0000023057,0.0000023068,0.0000023080,0.0000023093, +0.0000023107,0.0000023119,0.0000023128,0.0000023137,0.0000023151, +0.0000023168,0.0000023182,0.0000023186,0.0000023183,0.0000023173, +0.0000023160,0.0000023148,0.0000023140,0.0000023146,0.0000023165, +0.0000023192,0.0000023216,0.0000023228,0.0000023229,0.0000023223, +0.0000023216,0.0000023209,0.0000023207,0.0000023207,0.0000023208, +0.0000023210,0.0000023212,0.0000023211,0.0000023205,0.0000023195, +0.0000023179,0.0000023157,0.0000023141,0.0000023131,0.0000023119, +0.0000023106,0.0000023096,0.0000023089,0.0000023082,0.0000023076, +0.0000023072,0.0000023070,0.0000023072,0.0000023076,0.0000023081, +0.0000023086,0.0000023088,0.0000023084,0.0000023070,0.0000023044, +0.0000023005,0.0000022958,0.0000022902,0.0000022846,0.0000022802, +0.0000022764,0.0000022724,0.0000022683,0.0000022650,0.0000022634, +0.0000022636,0.0000022647,0.0000022656,0.0000022655,0.0000022638, +0.0000022601,0.0000022552,0.0000022502,0.0000022462,0.0000022430, +0.0000022401,0.0000022374,0.0000022349,0.0000022334,0.0000022331, +0.0000022335,0.0000022351,0.0000022372,0.0000022390,0.0000022404, +0.0000022412,0.0000022417,0.0000022418,0.0000022418,0.0000022411, +0.0000022404,0.0000022396,0.0000022387,0.0000022384,0.0000022376, +0.0000022362,0.0000022339,0.0000022305,0.0000022266,0.0000022220, +0.0000022167,0.0000022117,0.0000022082,0.0000022052,0.0000022020, +0.0000021975,0.0000021916,0.0000021857,0.0000021812,0.0000021786, +0.0000021769,0.0000021757,0.0000021747,0.0000021732,0.0000021708, +0.0000021679,0.0000021637,0.0000021588,0.0000021539,0.0000021491, +0.0000021443,0.0000021395,0.0000021346,0.0000021297,0.0000021254, +0.0000021218,0.0000021202,0.0000021182,0.0000021167,0.0000021151, +0.0000021130,0.0000021108,0.0000021086,0.0000021065,0.0000021062, +0.0000021080,0.0000021126,0.0000021200,0.0000021296,0.0000021406, +0.0000021515,0.0000021613,0.0000021698,0.0000021770,0.0000021835, +0.0000021889,0.0000021938,0.0000021981,0.0000022014,0.0000022046, +0.0000022089,0.0000022147,0.0000022216,0.0000022287,0.0000022356, +0.0000022418,0.0000022475,0.0000022519,0.0000022540,0.0000022537, +0.0000022514,0.0000022474,0.0000022420,0.0000022360,0.0000022298, +0.0000022239,0.0000022176,0.0000022118,0.0000022068,0.0000022035, +0.0000022027,0.0000022040,0.0000022083,0.0000022157,0.0000022251, +0.0000022351,0.0000022458,0.0000022559,0.0000022635,0.0000022673, +0.0000022674,0.0000022631,0.0000022570,0.0000022531,0.0000022539, +0.0000022586,0.0000022625,0.0000022637,0.0000022639,0.0000022646, +0.0000022656,0.0000022661,0.0000022661,0.0000022659,0.0000022653, +0.0000022639,0.0000022615,0.0000022581,0.0000022543,0.0000022510, +0.0000022476,0.0000022467,0.0000022479,0.0000022521,0.0000022534, +0.0000022500,0.0000022409,0.0000022268,0.0000022186,0.0000022215, +0.0000022269,0.0000022294,0.0000022299,0.0000022360,0.0000022640, +0.0000022787,0.0000022830,0.0000022950,0.0000023026,0.0000023122, +0.0000023134,0.0000023045,0.0000022891,0.0000022697,0.0000022563, +0.0000022508,0.0000022528,0.0000022563,0.0000022569,0.0000022551, +0.0000022629,0.0000022790,0.0000022899,0.0000022963,0.0000022967, +0.0000022951,0.0000022923,0.0000022892,0.0000022902,0.0000022966, +0.0000023019,0.0000023077,0.0000023155,0.0000023326,0.0000023496, +0.0000023588,0.0000023648,0.0000023565,0.0000023424,0.0000023332, +0.0000023332,0.0000023348,0.0000023310,0.0000023260,0.0000023238, +0.0000023225,0.0000023198,0.0000023155,0.0000023114,0.0000023104, +0.0000023112,0.0000023115,0.0000023115,0.0000023112,0.0000023108, +0.0000023106,0.0000023107,0.0000023083,0.0000023037,0.0000022987, +0.0000022945,0.0000022920,0.0000022925,0.0000022940,0.0000022950, +0.0000022949,0.0000022938,0.0000022922,0.0000022902,0.0000022886, +0.0000022870,0.0000022860,0.0000022857,0.0000022865,0.0000022887, +0.0000022933,0.0000023012,0.0000023101,0.0000023147,0.0000023134, +0.0000023082,0.0000023044,0.0000023007,0.0000022890,0.0000022711, +0.0000022450,0.0000022152,0.0000022159,0.0000022250,0.0000022199, +0.0000022159,0.0000022169,0.0000021998,0.0000021661,0.0000021592, +0.0000021778,0.0000021992,0.0000022146,0.0000022262,0.0000022353, +0.0000022430,0.0000022514,0.0000022567,0.0000022555,0.0000022498, +0.0000022437,0.0000022383,0.0000022333,0.0000022305,0.0000022304, +0.0000022315,0.0000022338,0.0000022392,0.0000022485,0.0000022623, +0.0000022750,0.0000022775,0.0000022699,0.0000022588,0.0000022488, +0.0000022328,0.0000022139,0.0000022039,0.0000022008,0.0000022018, +0.0000022080,0.0000022127,0.0000022140,0.0000022181,0.0000022248, +0.0000022311,0.0000022361,0.0000022403,0.0000022451,0.0000022496, +0.0000022511,0.0000022502,0.0000022480,0.0000022470,0.0000022482, +0.0000022512,0.0000022497,0.0000022438,0.0000022420,0.0000022443, +0.0000022470,0.0000022469,0.0000022479,0.0000022497,0.0000022483, +0.0000022511,0.0000022684,0.0000022883,0.0000022981,0.0000023007, +0.0000023014,0.0000023021,0.0000023033,0.0000023049,0.0000023062, +0.0000023060,0.0000023052,0.0000023052,0.0000023061,0.0000023070, +0.0000023070,0.0000023068,0.0000023062,0.0000023050,0.0000023031, +0.0000023016,0.0000023008,0.0000023013,0.0000023031,0.0000023064, +0.0000023111,0.0000023174,0.0000023249,0.0000023338,0.0000023432, +0.0000023511,0.0000023553,0.0000023558,0.0000023540,0.0000023512, +0.0000023473,0.0000023427,0.0000023361,0.0000023271,0.0000023170, +0.0000023085,0.0000023033,0.0000022997,0.0000022982,0.0000022989, +0.0000023015,0.0000023045,0.0000023083,0.0000023133,0.0000023195, +0.0000023273,0.0000023364,0.0000023450,0.0000023523,0.0000023581, +0.0000023617,0.0000023622,0.0000023608,0.0000023569,0.0000023503, +0.0000023423,0.0000023339,0.0000023260,0.0000023188,0.0000023145, +0.0000023156,0.0000023228,0.0000023336,0.0000023439,0.0000023517, +0.0000023567,0.0000023590,0.0000023595,0.0000023579,0.0000023547, +0.0000023516,0.0000023499,0.0000023494,0.0000023498,0.0000023507, +0.0000023525,0.0000023546,0.0000023558,0.0000023556,0.0000023557, +0.0000023576,0.0000023613,0.0000023661,0.0000023712,0.0000023764, +0.0000023822,0.0000023886,0.0000023945,0.0000023981,0.0000023986, +0.0000023959,0.0000023907,0.0000023867,0.0000023870,0.0000023927, +0.0000023996,0.0000024023,0.0000024019,0.0000024005,0.0000023997, +0.0000023991,0.0000023982,0.0000023967,0.0000023942,0.0000023905, +0.0000023858,0.0000023807,0.0000023758,0.0000023719,0.0000023681, +0.0000023634,0.0000023582,0.0000023531,0.0000023483,0.0000023435, +0.0000023389,0.0000023340,0.0000023284,0.0000023221,0.0000023160, +0.0000023101,0.0000023054,0.0000023023,0.0000023000,0.0000022971, +0.0000022929,0.0000022883,0.0000022840,0.0000022803,0.0000022768, +0.0000022737,0.0000022704,0.0000022683,0.0000022673,0.0000022654, +0.0000022620,0.0000022591,0.0000022572,0.0000022578,0.0000022604, +0.0000022636,0.0000022659,0.0000022670,0.0000022677,0.0000022684, +0.0000022695,0.0000022713,0.0000022731,0.0000022742,0.0000022744, +0.0000022739,0.0000022726,0.0000022711,0.0000022690,0.0000022660, +0.0000022630,0.0000022605,0.0000022586,0.0000022573,0.0000022561, +0.0000022551,0.0000022546,0.0000022542,0.0000022541,0.0000022539, +0.0000022533,0.0000022523,0.0000022505,0.0000022480,0.0000022444, +0.0000022399,0.0000022349,0.0000022294,0.0000022239,0.0000022191, +0.0000022154,0.0000022128,0.0000022116,0.0000022115,0.0000022130, +0.0000022149,0.0000022168,0.0000022182,0.0000022193,0.0000022208, +0.0000022227,0.0000022249,0.0000022277,0.0000022310,0.0000022343, +0.0000022370,0.0000022392,0.0000022409,0.0000022422,0.0000022429, +0.0000022435,0.0000022438,0.0000022434,0.0000022425,0.0000022414, +0.0000022406,0.0000022398,0.0000022384,0.0000022367,0.0000022346, +0.0000022331,0.0000022323,0.0000022328,0.0000022344,0.0000022370, +0.0000022396,0.0000022416,0.0000022433,0.0000022455,0.0000022490, +0.0000022530,0.0000022567,0.0000022596,0.0000022604,0.0000022572, +0.0000022480,0.0000022352,0.0000022219,0.0000022101,0.0000022008, +0.0000021947,0.0000021925,0.0000021964,0.0000022030,0.0000022117, +0.0000022237,0.0000022357,0.0000022440,0.0000022492,0.0000022536, +0.0000022582,0.0000022618,0.0000022648,0.0000022683,0.0000022734, +0.0000022788,0.0000022830,0.0000022847,0.0000022850,0.0000022854, +0.0000022846,0.0000022865,0.0000022904,0.0000022885,0.0000022935, +0.0000023173,0.0000023373,0.0000023410,0.0000023325,0.0000023140, +0.0000022993,0.0000022920,0.0000022865,0.0000022814,0.0000022752, +0.0000022638,0.0000022503,0.0000022398,0.0000022317,0.0000022246, +0.0000022179,0.0000022131,0.0000022099,0.0000022080,0.0000022083, +0.0000022095,0.0000022097,0.0000022096,0.0000022095,0.0000022078, +0.0000022046,0.0000022013,0.0000021994,0.0000022002,0.0000022051, +0.0000022150,0.0000022241,0.0000022298,0.0000022343,0.0000022395, +0.0000022439,0.0000022462,0.0000022462,0.0000022441,0.0000022399, +0.0000022357,0.0000022325,0.0000022307,0.0000022301,0.0000022306, +0.0000022321,0.0000022343,0.0000022376,0.0000022415,0.0000022453, +0.0000022482,0.0000022500,0.0000022504,0.0000022494,0.0000022471, +0.0000022450,0.0000022435,0.0000022410,0.0000022358,0.0000022263, +0.0000022139,0.0000022013,0.0000021902,0.0000021824,0.0000021807, +0.0000021911,0.0000022108,0.0000022250,0.0000022242,0.0000022142, +0.0000022130,0.0000022383,0.0000022798,0.0000022983,0.0000022833, +0.0000022475,0.0000022207,0.0000022104,0.0000022085,0.0000022055, +0.0000021970,0.0000021856,0.0000021761,0.0000021696,0.0000021663, +0.0000021665,0.0000021688,0.0000021707,0.0000021708,0.0000021709, +0.0000021724,0.0000021753,0.0000021769,0.0000021762,0.0000021741, +0.0000021722,0.0000021713,0.0000021708,0.0000021689,0.0000021641, +0.0000021587,0.0000021551,0.0000021518,0.0000021482,0.0000021464, +0.0000021459,0.0000021451,0.0000021438,0.0000021423,0.0000021411, +0.0000021410,0.0000021419,0.0000021427,0.0000021443,0.0000021470, +0.0000021514,0.0000021580,0.0000021669,0.0000021779,0.0000021909, +0.0000022048,0.0000022161,0.0000022224,0.0000022242,0.0000022250, +0.0000022279,0.0000022333,0.0000022400,0.0000022459,0.0000022503, +0.0000022537,0.0000022559,0.0000022563,0.0000022560,0.0000022556, +0.0000022553,0.0000022548,0.0000022538,0.0000022512,0.0000022451, +0.0000022348,0.0000022226,0.0000022120,0.0000022032,0.0000021933, +0.0000021801,0.0000021645,0.0000021494,0.0000021377,0.0000021300, +0.0000021258,0.0000021243,0.0000021240,0.0000021235,0.0000021216, +0.0000021184,0.0000021164,0.0000021174,0.0000021227,0.0000021323, +0.0000021427,0.0000021493,0.0000021502,0.0000021467,0.0000021394, +0.0000021324,0.0000021291,0.0000021288,0.0000021294,0.0000021286, +0.0000021268,0.0000021278,0.0000021354,0.0000021489,0.0000021618, +0.0000021666,0.0000021630,0.0000021518,0.0000021380,0.0000021253, +0.0000021137,0.0000021042,0.0000020975,0.0000020928,0.0000020906, +0.0000020918,0.0000021001,0.0000021177,0.0000021406,0.0000021623, +0.0000021786,0.0000021888,0.0000021942,0.0000021971,0.0000021996, +0.0000022028,0.0000022051,0.0000022063,0.0000022091,0.0000022170, +0.0000022311,0.0000022496,0.0000022692,0.0000022874,0.0000023009, +0.0000023058,0.0000023023,0.0000022955,0.0000022926,0.0000022992, +0.0000023166,0.0000023423,0.0000023714,0.0000023979,0.0000024170, +0.0000024284,0.0000024363,0.0000024435,0.0000024506,0.0000024579, +0.0000024652,0.0000024698,0.0000024676,0.0000024598,0.0000024486, +0.0000024381,0.0000024318,0.0000024281,0.0000024255,0.0000024233, +0.0000024207,0.0000024177,0.0000024156,0.0000024134,0.0000024131, +0.0000024138,0.0000024147,0.0000024143,0.0000024124,0.0000024104, +0.0000024081,0.0000024070,0.0000024076,0.0000024095,0.0000024111, +0.0000024110,0.0000024086,0.0000024043,0.0000023994,0.0000023964, +0.0000023971,0.0000024053,0.0000024177,0.0000024260,0.0000024268, +0.0000024222,0.0000024125,0.0000024022,0.0000023956,0.0000023925, +0.0000023875,0.0000023770,0.0000023643,0.0000023529,0.0000023403, +0.0000023257,0.0000023117,0.0000022989,0.0000022856,0.0000022707, +0.0000022580,0.0000022519,0.0000022515,0.0000022537,0.0000022549, +0.0000022540,0.0000022508,0.0000022461,0.0000022407,0.0000022341, +0.0000022296,0.0000022267,0.0000022255,0.0000022254,0.0000022252, +0.0000022250,0.0000022261,0.0000022306,0.0000022406,0.0000022543, +0.0000022695,0.0000022857,0.0000023030,0.0000023211,0.0000023400, +0.0000023577,0.0000023724,0.0000023821,0.0000023861,0.0000023814, +0.0000023765,0.0000023677,0.0000023581,0.0000023471,0.0000023364, +0.0000023278,0.0000023221,0.0000023180,0.0000023142,0.0000023106, +0.0000023069,0.0000023028,0.0000022983,0.0000022934,0.0000022883, +0.0000022833,0.0000022793,0.0000022767,0.0000022755,0.0000022755, +0.0000022761,0.0000022770,0.0000022785,0.0000022810,0.0000022840, +0.0000022868,0.0000022887,0.0000022891,0.0000022885,0.0000022862, +0.0000022820,0.0000022766,0.0000022713,0.0000022670,0.0000022644, +0.0000022640,0.0000022644,0.0000022645,0.0000022630,0.0000022590, +0.0000022537,0.0000022492,0.0000022463,0.0000022440,0.0000022420, +0.0000022395,0.0000022365,0.0000022338,0.0000022326,0.0000022325, +0.0000022328,0.0000022335,0.0000022338,0.0000022343,0.0000022343, +0.0000022333,0.0000022325,0.0000022313,0.0000022287,0.0000022248, +0.0000022197,0.0000022147,0.0000022094,0.0000022034,0.0000021966, +0.0000021897,0.0000021835,0.0000021786,0.0000021748,0.0000021725, +0.0000021707,0.0000021700,0.0000021702,0.0000021713,0.0000021725, +0.0000021734,0.0000021740,0.0000021739,0.0000021729,0.0000021712, +0.0000021694,0.0000021679,0.0000021673,0.0000021679,0.0000021699, +0.0000021728,0.0000021753,0.0000021763,0.0000021762,0.0000021757, +0.0000021744,0.0000021719,0.0000021684,0.0000021640,0.0000021586, +0.0000021513,0.0000021426,0.0000021337,0.0000021260,0.0000021204, +0.0000021166,0.0000021147,0.0000021148,0.0000021162,0.0000021180, +0.0000021193,0.0000021196,0.0000021187,0.0000021165,0.0000021127, +0.0000021077,0.0000021022,0.0000020972,0.0000020932,0.0000020903, +0.0000020881,0.0000020865,0.0000020850,0.0000020833,0.0000020821, +0.0000020811,0.0000020804,0.0000020805,0.0000020825,0.0000020872, +0.0000020945,0.0000021016,0.0000021062,0.0000021075,0.0000021059, +0.0000021046,0.0000021016,0.0000020977,0.0000020944,0.0000020913, +0.0000020891,0.0000020873,0.0000020859,0.0000020845,0.0000020829, +0.0000020806,0.0000020776,0.0000020755,0.0000020730,0.0000020713, +0.0000020711,0.0000020703,0.0000020708,0.0000020722,0.0000020727, +0.0000020727,0.0000020736,0.0000020746,0.0000020752,0.0000020764, +0.0000020785,0.0000020816,0.0000020856,0.0000020897,0.0000020933, +0.0000020966,0.0000020997,0.0000021018,0.0000021023,0.0000021010, +0.0000020980,0.0000020945,0.0000020921,0.0000020920,0.0000020931, +0.0000020936,0.0000020926,0.0000020903,0.0000020872,0.0000020847, +0.0000020841,0.0000020866,0.0000020914,0.0000020950,0.0000020953, +0.0000020947,0.0000020978,0.0000021114,0.0000021307,0.0000021434, +0.0000021456,0.0000021439,0.0000021440,0.0000021504,0.0000021591, +0.0000021626,0.0000021626,0.0000021622,0.0000021618,0.0000021623, +0.0000021616,0.0000021552,0.0000021447,0.0000021344,0.0000021262, +0.0000021222,0.0000021207,0.0000021166,0.0000021122,0.0000021115, +0.0000021127,0.0000021136,0.0000021119,0.0000021074,0.0000021020, +0.0000020977,0.0000020958,0.0000020957,0.0000020966,0.0000020989, +0.0000021026,0.0000021078,0.0000021138,0.0000021188,0.0000021216, +0.0000021232,0.0000021243,0.0000021234,0.0000021198,0.0000021145, +0.0000021093,0.0000021048,0.0000021013,0.0000020988,0.0000020972, +0.0000020958,0.0000020950,0.0000020950,0.0000020963,0.0000020996, +0.0000021051,0.0000021099,0.0000021111,0.0000021085,0.0000021039, +0.0000020974,0.0000020875,0.0000020774,0.0000020720,0.0000020711, +0.0000020709,0.0000020699,0.0000020693,0.0000020700,0.0000020711, +0.0000020727,0.0000020755,0.0000020791,0.0000020817,0.0000020829, +0.0000020830,0.0000020809,0.0000020767,0.0000020713,0.0000020652, +0.0000020585,0.0000020517,0.0000020461,0.0000020427,0.0000020415, +0.0000020423,0.0000020454,0.0000020505,0.0000020572,0.0000020643, +0.0000020707,0.0000020765,0.0000020817,0.0000020859,0.0000020891, +0.0000020912,0.0000020926,0.0000020945,0.0000020971,0.0000020993, +0.0000021007,0.0000021028,0.0000021058,0.0000021086,0.0000021108, +0.0000021123,0.0000021130,0.0000021115,0.0000021009,0.0000020821, +0.0000020675,0.0000020644,0.0000020728,0.0000020995,0.0000021352, +0.0000021630,0.0000021783,0.0000021880,0.0000021945,0.0000021968, +0.0000021972,0.0000021983,0.0000022000,0.0000022012,0.0000022015, +0.0000022018,0.0000022025,0.0000022039,0.0000022056,0.0000022061, +0.0000022054,0.0000022036,0.0000022016,0.0000022002,0.0000021999, +0.0000022003,0.0000021966,0.0000021835,0.0000021636,0.0000021465, +0.0000021387,0.0000021380,0.0000021401,0.0000021454,0.0000021559, +0.0000021697,0.0000021818,0.0000021890,0.0000021918,0.0000021922, +0.0000021922,0.0000021956,0.0000021960,0.0000022032,0.0000022071, +0.0000022014,0.0000021838,0.0000021686,0.0000021619,0.0000021539, +0.0000021348,0.0000021138,0.0000021049,0.0000021085,0.0000021200, +0.0000021369,0.0000021573,0.0000021791,0.0000022003,0.0000022194, +0.0000022351,0.0000022468,0.0000022541,0.0000022578,0.0000022593, +0.0000022592,0.0000022578,0.0000022552,0.0000022518,0.0000022475, +0.0000022423,0.0000022361,0.0000022284,0.0000022190,0.0000022090, +0.0000021991,0.0000021882,0.0000021774,0.0000021683,0.0000021611, +0.0000021559,0.0000021522,0.0000021491,0.0000021457,0.0000021423, +0.0000021397,0.0000021380,0.0000021371,0.0000021370,0.0000021374, +0.0000021382,0.0000021394,0.0000021404,0.0000021415,0.0000021429, +0.0000021442,0.0000021458,0.0000021478,0.0000021505,0.0000021537, +0.0000021572,0.0000021610,0.0000021650,0.0000021689,0.0000021724, +0.0000021755,0.0000021785,0.0000021812,0.0000021829,0.0000021835, +0.0000021832,0.0000021825,0.0000021821,0.0000021810,0.0000021779, +0.0000021728,0.0000021665,0.0000021592,0.0000021519,0.0000021454, +0.0000021419,0.0000021413,0.0000021425,0.0000021448,0.0000021471, +0.0000021477,0.0000021495,0.0000021527,0.0000021561,0.0000021596, +0.0000021624,0.0000021630,0.0000021620,0.0000021600,0.0000021577, +0.0000021552,0.0000021528,0.0000021503,0.0000021482,0.0000021468, +0.0000021451,0.0000021432,0.0000021410,0.0000021386,0.0000021371, +0.0000021362,0.0000021352,0.0000021349,0.0000021360,0.0000021374, +0.0000021388,0.0000021413,0.0000021444,0.0000021479,0.0000021530, +0.0000021581,0.0000021623,0.0000021665,0.0000021703,0.0000021736, +0.0000021765,0.0000021790,0.0000021812,0.0000021824,0.0000021821, +0.0000021812,0.0000021802,0.0000021785,0.0000021757,0.0000021727, +0.0000021701,0.0000021685,0.0000021679,0.0000021688,0.0000021695, +0.0000021687,0.0000021668,0.0000021643,0.0000021610,0.0000021577, +0.0000021545,0.0000021506,0.0000021465,0.0000021443,0.0000021444, +0.0000021454,0.0000021481,0.0000021547,0.0000021620,0.0000021686, +0.0000021747,0.0000021814,0.0000021879,0.0000021935,0.0000021986, +0.0000022032,0.0000022070,0.0000022094,0.0000022104,0.0000022121, +0.0000022158,0.0000022211,0.0000022280,0.0000022358,0.0000022442, +0.0000022532,0.0000022620,0.0000022687,0.0000022732,0.0000022763, +0.0000022786,0.0000022803,0.0000022827,0.0000022868,0.0000022921, +0.0000022975,0.0000023024,0.0000023059,0.0000023072,0.0000023057, +0.0000023023,0.0000022990,0.0000022969,0.0000022956,0.0000022945, +0.0000022927,0.0000022910,0.0000022881,0.0000022845,0.0000022802, +0.0000022747,0.0000022686,0.0000022636,0.0000022629,0.0000022621, +0.0000022644,0.0000022686,0.0000022738,0.0000022802,0.0000022875, +0.0000022944,0.0000023002,0.0000023044,0.0000023062,0.0000023078, +0.0000023096,0.0000023099,0.0000023097,0.0000023095,0.0000023093, +0.0000023094,0.0000023097,0.0000023101,0.0000023111,0.0000023129, +0.0000023151,0.0000023169,0.0000023181,0.0000023184,0.0000023186, +0.0000023180,0.0000023171,0.0000023163,0.0000023166,0.0000023177, +0.0000023195,0.0000023211,0.0000023220,0.0000023219,0.0000023213, +0.0000023204,0.0000023193,0.0000023180,0.0000023170,0.0000023168, +0.0000023167,0.0000023165,0.0000023160,0.0000023154,0.0000023145, +0.0000023136,0.0000023128,0.0000023122,0.0000023114,0.0000023105, +0.0000023097,0.0000023089,0.0000023080,0.0000023070,0.0000023062, +0.0000023059,0.0000023062,0.0000023073,0.0000023085,0.0000023097, +0.0000023104,0.0000023102,0.0000023083,0.0000023046,0.0000022998, +0.0000022945,0.0000022890,0.0000022837,0.0000022792,0.0000022756, +0.0000022721,0.0000022690,0.0000022671,0.0000022672,0.0000022691, +0.0000022715,0.0000022726,0.0000022721,0.0000022694,0.0000022654, +0.0000022612,0.0000022580,0.0000022557,0.0000022536,0.0000022513, +0.0000022490,0.0000022468,0.0000022450,0.0000022438,0.0000022438, +0.0000022446,0.0000022456,0.0000022463,0.0000022468,0.0000022474, +0.0000022476,0.0000022471,0.0000022456,0.0000022431,0.0000022401, +0.0000022372,0.0000022352,0.0000022348,0.0000022350,0.0000022351, +0.0000022341,0.0000022324,0.0000022294,0.0000022256,0.0000022208, +0.0000022158,0.0000022115,0.0000022070,0.0000022012,0.0000021959, +0.0000021895,0.0000021836,0.0000021796,0.0000021774,0.0000021758, +0.0000021742,0.0000021723,0.0000021700,0.0000021673,0.0000021646, +0.0000021614,0.0000021581,0.0000021546,0.0000021515,0.0000021481, +0.0000021445,0.0000021408,0.0000021366,0.0000021321,0.0000021275, +0.0000021237,0.0000021204,0.0000021177,0.0000021154,0.0000021129, +0.0000021101,0.0000021072,0.0000021036,0.0000020996,0.0000020958, +0.0000020931,0.0000020923,0.0000020945,0.0000020997,0.0000021070, +0.0000021171,0.0000021310,0.0000021479,0.0000021645,0.0000021778, +0.0000021863,0.0000021918,0.0000021962,0.0000022000,0.0000022048, +0.0000022104,0.0000022158,0.0000022205,0.0000022250,0.0000022300, +0.0000022352,0.0000022400,0.0000022432,0.0000022440,0.0000022431, +0.0000022402,0.0000022358,0.0000022301,0.0000022233,0.0000022157, +0.0000022074,0.0000021998,0.0000021938,0.0000021907,0.0000021905, +0.0000021937,0.0000021999,0.0000022085,0.0000022187,0.0000022292, +0.0000022390,0.0000022487,0.0000022575,0.0000022639,0.0000022657, +0.0000022629,0.0000022560,0.0000022495,0.0000022473,0.0000022503, +0.0000022570,0.0000022620,0.0000022638,0.0000022644,0.0000022654, +0.0000022659,0.0000022658,0.0000022656,0.0000022653,0.0000022643, +0.0000022621,0.0000022588,0.0000022556,0.0000022519,0.0000022464, +0.0000022437,0.0000022456,0.0000022510,0.0000022524,0.0000022485, +0.0000022381,0.0000022237,0.0000022165,0.0000022206,0.0000022269, +0.0000022298,0.0000022299,0.0000022408,0.0000022699,0.0000022813, +0.0000022889,0.0000023010,0.0000023083,0.0000023161,0.0000023109, +0.0000022997,0.0000022792,0.0000022618,0.0000022524,0.0000022512, +0.0000022519,0.0000022530,0.0000022507,0.0000022503,0.0000022639, +0.0000022805,0.0000022902,0.0000022954,0.0000022963,0.0000022950, +0.0000022904,0.0000022865,0.0000022886,0.0000022952,0.0000023005, +0.0000023059,0.0000023120,0.0000023271,0.0000023455,0.0000023553, +0.0000023633,0.0000023595,0.0000023455,0.0000023353,0.0000023306, +0.0000023320,0.0000023317,0.0000023268,0.0000023235,0.0000023218, +0.0000023199,0.0000023164,0.0000023124,0.0000023117,0.0000023130, +0.0000023139,0.0000023136,0.0000023120,0.0000023099,0.0000023078, +0.0000023071,0.0000023056,0.0000023035,0.0000023010,0.0000022995, +0.0000022994,0.0000023009,0.0000023016,0.0000023001,0.0000022971, +0.0000022947,0.0000022922,0.0000022899,0.0000022885,0.0000022868, +0.0000022862,0.0000022872,0.0000022888,0.0000022905,0.0000022934, +0.0000022985,0.0000023066,0.0000023140,0.0000023150,0.0000023105, +0.0000023065,0.0000023045,0.0000022964,0.0000022796,0.0000022572, +0.0000022248,0.0000022140,0.0000022245,0.0000022234,0.0000022165, +0.0000022186,0.0000022128,0.0000021800,0.0000021597,0.0000021697, +0.0000021903,0.0000022057,0.0000022179,0.0000022277,0.0000022350, +0.0000022423,0.0000022503,0.0000022519,0.0000022470,0.0000022401, +0.0000022347,0.0000022305,0.0000022279,0.0000022285,0.0000022309, +0.0000022326,0.0000022348,0.0000022401,0.0000022498,0.0000022636, +0.0000022746,0.0000022757,0.0000022678,0.0000022578,0.0000022487, +0.0000022328,0.0000022143,0.0000022039,0.0000022007,0.0000022024, +0.0000022084,0.0000022120,0.0000022125,0.0000022170,0.0000022247, +0.0000022314,0.0000022367,0.0000022420,0.0000022478,0.0000022519, +0.0000022525,0.0000022509,0.0000022487,0.0000022468,0.0000022473, +0.0000022493,0.0000022463,0.0000022398,0.0000022384,0.0000022413, +0.0000022440,0.0000022439,0.0000022452,0.0000022473,0.0000022463, +0.0000022475,0.0000022611,0.0000022808,0.0000022943,0.0000022994, +0.0000023007,0.0000023006,0.0000022998,0.0000022993,0.0000022990, +0.0000022981,0.0000022974,0.0000022982,0.0000023004,0.0000023019, +0.0000023023,0.0000023027,0.0000023029,0.0000023026,0.0000023014, +0.0000022994,0.0000022980,0.0000022979,0.0000022987,0.0000023001, +0.0000023023,0.0000023059,0.0000023113,0.0000023184,0.0000023272, +0.0000023367,0.0000023450,0.0000023501,0.0000023519,0.0000023502, +0.0000023471,0.0000023450,0.0000023431,0.0000023388,0.0000023318, +0.0000023232,0.0000023153,0.0000023084,0.0000023044,0.0000023029, +0.0000023030,0.0000023054,0.0000023094,0.0000023131,0.0000023176, +0.0000023246,0.0000023336,0.0000023429,0.0000023514,0.0000023580, +0.0000023620,0.0000023631,0.0000023621,0.0000023593,0.0000023538, +0.0000023469,0.0000023396,0.0000023322,0.0000023255,0.0000023234, +0.0000023267,0.0000023355,0.0000023446,0.0000023509,0.0000023548, +0.0000023573,0.0000023582,0.0000023569,0.0000023537,0.0000023512, +0.0000023501,0.0000023500,0.0000023504,0.0000023515,0.0000023529, +0.0000023546,0.0000023564,0.0000023574,0.0000023571,0.0000023568, +0.0000023584,0.0000023616,0.0000023661,0.0000023705,0.0000023741, +0.0000023778,0.0000023826,0.0000023884,0.0000023930,0.0000023948, +0.0000023937,0.0000023896,0.0000023857,0.0000023848,0.0000023881, +0.0000023950,0.0000024009,0.0000024034,0.0000024037,0.0000024036, +0.0000024033,0.0000024025,0.0000024006,0.0000023972,0.0000023927, +0.0000023875,0.0000023816,0.0000023755,0.0000023700,0.0000023650, +0.0000023600,0.0000023550,0.0000023500,0.0000023453,0.0000023405, +0.0000023355,0.0000023300,0.0000023240,0.0000023179,0.0000023124, +0.0000023081,0.0000023055,0.0000023037,0.0000023007,0.0000022958, +0.0000022906,0.0000022865,0.0000022833,0.0000022802,0.0000022772, +0.0000022748,0.0000022739,0.0000022728,0.0000022701,0.0000022659, +0.0000022621,0.0000022605,0.0000022622,0.0000022657,0.0000022688, +0.0000022704,0.0000022707,0.0000022708,0.0000022716,0.0000022730, +0.0000022747,0.0000022760,0.0000022766,0.0000022757,0.0000022747, +0.0000022728,0.0000022704,0.0000022676,0.0000022645,0.0000022609, +0.0000022575,0.0000022546,0.0000022523,0.0000022510,0.0000022500, +0.0000022491,0.0000022488,0.0000022488,0.0000022493,0.0000022500, +0.0000022506,0.0000022507,0.0000022499,0.0000022482,0.0000022461, +0.0000022431,0.0000022393,0.0000022364,0.0000022313,0.0000022262, +0.0000022219,0.0000022175,0.0000022142,0.0000022126,0.0000022123, +0.0000022129,0.0000022145,0.0000022155,0.0000022169,0.0000022186, +0.0000022204,0.0000022227,0.0000022253,0.0000022285,0.0000022318, +0.0000022347,0.0000022370,0.0000022385,0.0000022396,0.0000022402, +0.0000022404,0.0000022405,0.0000022403,0.0000022397,0.0000022390, +0.0000022382,0.0000022377,0.0000022369,0.0000022357,0.0000022340, +0.0000022326,0.0000022315,0.0000022314,0.0000022324,0.0000022344, +0.0000022371,0.0000022390,0.0000022408,0.0000022425,0.0000022449, +0.0000022478,0.0000022505,0.0000022537,0.0000022576,0.0000022599, +0.0000022581,0.0000022509,0.0000022383,0.0000022223,0.0000022081, +0.0000021982,0.0000021932,0.0000021937,0.0000021956,0.0000021996, +0.0000022070,0.0000022181,0.0000022290,0.0000022368,0.0000022434, +0.0000022511,0.0000022585,0.0000022642,0.0000022686,0.0000022728, +0.0000022765,0.0000022794,0.0000022817,0.0000022833,0.0000022849, +0.0000022848,0.0000022837,0.0000022861,0.0000022881,0.0000022859, +0.0000022967,0.0000023235,0.0000023382,0.0000023383,0.0000023276, +0.0000023083,0.0000022950,0.0000022886,0.0000022815,0.0000022716, +0.0000022592,0.0000022474,0.0000022393,0.0000022334,0.0000022277, +0.0000022215,0.0000022170,0.0000022137,0.0000022102,0.0000022078, +0.0000022058,0.0000022030,0.0000022013,0.0000022005,0.0000021998, +0.0000021978,0.0000021961,0.0000021961,0.0000022005,0.0000022091, +0.0000022191,0.0000022261,0.0000022306,0.0000022355,0.0000022407, +0.0000022450,0.0000022480,0.0000022486,0.0000022452,0.0000022376, +0.0000022293,0.0000022238,0.0000022224,0.0000022230,0.0000022246, +0.0000022264,0.0000022284,0.0000022313,0.0000022359,0.0000022414, +0.0000022469,0.0000022525,0.0000022579,0.0000022615,0.0000022623, +0.0000022613,0.0000022588,0.0000022549,0.0000022502,0.0000022451, +0.0000022387,0.0000022293,0.0000022164,0.0000022017,0.0000021880, +0.0000021792,0.0000021782,0.0000021898,0.0000022113,0.0000022260, +0.0000022236,0.0000022138,0.0000022170,0.0000022458,0.0000022850, +0.0000022963,0.0000022749,0.0000022393,0.0000022153,0.0000022074, +0.0000022055,0.0000022014,0.0000021929,0.0000021825,0.0000021726, +0.0000021659,0.0000021640,0.0000021656,0.0000021686,0.0000021703, +0.0000021704,0.0000021712,0.0000021733,0.0000021753,0.0000021753, +0.0000021731,0.0000021698,0.0000021678,0.0000021666,0.0000021642, +0.0000021590,0.0000021528,0.0000021484,0.0000021445,0.0000021403, +0.0000021376,0.0000021362,0.0000021352,0.0000021344,0.0000021336, +0.0000021335,0.0000021345,0.0000021365,0.0000021387,0.0000021416, +0.0000021454,0.0000021503,0.0000021569,0.0000021659,0.0000021774, +0.0000021907,0.0000022042,0.0000022151,0.0000022215,0.0000022240, +0.0000022256,0.0000022292,0.0000022351,0.0000022418,0.0000022473, +0.0000022520,0.0000022567,0.0000022597,0.0000022602,0.0000022595, +0.0000022589,0.0000022588,0.0000022587,0.0000022583,0.0000022553, +0.0000022476,0.0000022350,0.0000022211,0.0000022100,0.0000022012, +0.0000021903,0.0000021753,0.0000021584,0.0000021429,0.0000021309, +0.0000021225,0.0000021170,0.0000021142,0.0000021138,0.0000021142, +0.0000021140,0.0000021126,0.0000021107,0.0000021102,0.0000021130, +0.0000021205,0.0000021318,0.0000021431,0.0000021498,0.0000021502, +0.0000021455,0.0000021372,0.0000021295,0.0000021255,0.0000021247, +0.0000021247,0.0000021234,0.0000021216,0.0000021231,0.0000021315, +0.0000021465,0.0000021606,0.0000021654,0.0000021621,0.0000021507, +0.0000021373,0.0000021249,0.0000021134,0.0000021041,0.0000020980, +0.0000020942,0.0000020909,0.0000020904,0.0000020975,0.0000021144, +0.0000021374,0.0000021603,0.0000021780,0.0000021891,0.0000021946, +0.0000021972,0.0000021994,0.0000022016,0.0000022029,0.0000022029, +0.0000022039,0.0000022109,0.0000022257,0.0000022450,0.0000022650, +0.0000022833,0.0000022967,0.0000023014,0.0000022974,0.0000022904, +0.0000022878,0.0000022938,0.0000023101,0.0000023348,0.0000023633, +0.0000023899,0.0000024099,0.0000024231,0.0000024325,0.0000024403, +0.0000024474,0.0000024545,0.0000024613,0.0000024655,0.0000024646, +0.0000024606,0.0000024497,0.0000024388,0.0000024315,0.0000024285, +0.0000024278,0.0000024267,0.0000024236,0.0000024189,0.0000024143, +0.0000024111,0.0000024101,0.0000024098,0.0000024102,0.0000024111, +0.0000024114,0.0000024107,0.0000024103,0.0000024107,0.0000024119, +0.0000024129,0.0000024129,0.0000024110,0.0000024070,0.0000024018, +0.0000023972,0.0000023961,0.0000024007,0.0000024122,0.0000024230, +0.0000024268,0.0000024258,0.0000024198,0.0000024110,0.0000024033, +0.0000023987,0.0000023950,0.0000023872,0.0000023748,0.0000023617, +0.0000023485,0.0000023336,0.0000023182,0.0000023050,0.0000022926, +0.0000022784,0.0000022649,0.0000022576,0.0000022576,0.0000022610, +0.0000022636,0.0000022631,0.0000022594,0.0000022526,0.0000022438, +0.0000022356,0.0000022283,0.0000022230,0.0000022182,0.0000022148, +0.0000022112,0.0000022071,0.0000022044,0.0000022061,0.0000022139, +0.0000022257,0.0000022381,0.0000022500,0.0000022615,0.0000022726, +0.0000022847,0.0000022990,0.0000023152,0.0000023322,0.0000023478, +0.0000023600,0.0000023672,0.0000023699,0.0000023651,0.0000023604, +0.0000023504,0.0000023405,0.0000023310,0.0000023230,0.0000023170, +0.0000023129,0.0000023098,0.0000023070,0.0000023042,0.0000023012, +0.0000022976,0.0000022936,0.0000022894,0.0000022858,0.0000022837, +0.0000022835,0.0000022840,0.0000022839,0.0000022833,0.0000022826, +0.0000022828,0.0000022827,0.0000022829,0.0000022824,0.0000022812, +0.0000022787,0.0000022742,0.0000022685,0.0000022626,0.0000022575, +0.0000022540,0.0000022525,0.0000022530,0.0000022553,0.0000022574, +0.0000022567,0.0000022528,0.0000022479,0.0000022436,0.0000022408, +0.0000022393,0.0000022387,0.0000022376,0.0000022358,0.0000022342, +0.0000022334,0.0000022320,0.0000022307,0.0000022292,0.0000022278, +0.0000022273,0.0000022259,0.0000022244,0.0000022238,0.0000022228, +0.0000022207,0.0000022175,0.0000022139,0.0000022098,0.0000022050, +0.0000021991,0.0000021933,0.0000021872,0.0000021814,0.0000021762, +0.0000021717,0.0000021681,0.0000021654,0.0000021649,0.0000021659, +0.0000021678,0.0000021697,0.0000021710,0.0000021717,0.0000021716, +0.0000021710,0.0000021705,0.0000021709,0.0000021719,0.0000021735, +0.0000021750,0.0000021757,0.0000021763,0.0000021763,0.0000021750, +0.0000021727,0.0000021698,0.0000021654,0.0000021598,0.0000021532, +0.0000021462,0.0000021388,0.0000021313,0.0000021241,0.0000021177, +0.0000021134,0.0000021108,0.0000021095,0.0000021093,0.0000021104, +0.0000021128,0.0000021152,0.0000021162,0.0000021160,0.0000021150, +0.0000021131,0.0000021100,0.0000021059,0.0000021015,0.0000020973, +0.0000020930,0.0000020893,0.0000020859,0.0000020829,0.0000020805, +0.0000020793,0.0000020792,0.0000020795,0.0000020796,0.0000020792, +0.0000020785,0.0000020790,0.0000020818,0.0000020864,0.0000020922, +0.0000020971,0.0000021002,0.0000021014,0.0000021004,0.0000020995, +0.0000020972,0.0000020941,0.0000020917,0.0000020901,0.0000020891, +0.0000020881,0.0000020869,0.0000020854,0.0000020834,0.0000020815, +0.0000020789,0.0000020760,0.0000020726,0.0000020690,0.0000020675, +0.0000020681,0.0000020688,0.0000020702,0.0000020720,0.0000020726, +0.0000020720,0.0000020713,0.0000020714,0.0000020730,0.0000020766, +0.0000020816,0.0000020871,0.0000020925,0.0000020974,0.0000021007, +0.0000021014,0.0000020999,0.0000020965,0.0000020920,0.0000020878, +0.0000020863,0.0000020864,0.0000020865,0.0000020863,0.0000020857, +0.0000020845,0.0000020828,0.0000020813,0.0000020823,0.0000020866, +0.0000020908,0.0000020916,0.0000020906,0.0000020928,0.0000021057, +0.0000021265,0.0000021416,0.0000021445,0.0000021435,0.0000021449, +0.0000021533,0.0000021619,0.0000021647,0.0000021644,0.0000021632, +0.0000021631,0.0000021634,0.0000021602,0.0000021509,0.0000021401, +0.0000021305,0.0000021239,0.0000021204,0.0000021156,0.0000021104, +0.0000021096,0.0000021113,0.0000021110,0.0000021069,0.0000020997, +0.0000020927,0.0000020881,0.0000020861,0.0000020859,0.0000020868, +0.0000020888,0.0000020926,0.0000020980,0.0000021044,0.0000021105, +0.0000021145,0.0000021165,0.0000021175,0.0000021177,0.0000021161, +0.0000021121,0.0000021069,0.0000021021,0.0000020980,0.0000020948, +0.0000020923,0.0000020910,0.0000020907,0.0000020910,0.0000020920, +0.0000020931,0.0000020953,0.0000020998,0.0000021051,0.0000021078, +0.0000021066,0.0000021024,0.0000020963,0.0000020872,0.0000020759, +0.0000020678,0.0000020657,0.0000020653,0.0000020641,0.0000020632, +0.0000020635,0.0000020641,0.0000020648,0.0000020669,0.0000020702, +0.0000020730,0.0000020748,0.0000020755,0.0000020749,0.0000020726, +0.0000020690,0.0000020639,0.0000020577,0.0000020515,0.0000020461, +0.0000020425,0.0000020408,0.0000020405,0.0000020414,0.0000020446, +0.0000020500,0.0000020567,0.0000020635,0.0000020697,0.0000020750, +0.0000020793,0.0000020827,0.0000020854,0.0000020871,0.0000020880, +0.0000020892,0.0000020909,0.0000020925,0.0000020946,0.0000020978, +0.0000021013,0.0000021042,0.0000021067,0.0000021085,0.0000021101, +0.0000021088,0.0000020980,0.0000020788,0.0000020646,0.0000020623, +0.0000020691,0.0000020909,0.0000021230,0.0000021516,0.0000021697, +0.0000021812,0.0000021897,0.0000021946,0.0000021962,0.0000021966, +0.0000021971,0.0000021980,0.0000021991,0.0000021998,0.0000022002, +0.0000022016,0.0000022041,0.0000022065,0.0000022075,0.0000022068, +0.0000022037,0.0000021994,0.0000021968,0.0000021971,0.0000021962, +0.0000021874,0.0000021689,0.0000021487,0.0000021372,0.0000021355, +0.0000021377,0.0000021430,0.0000021524,0.0000021650,0.0000021769, +0.0000021853,0.0000021903,0.0000021925,0.0000021932,0.0000021923, +0.0000021945,0.0000022001,0.0000022054,0.0000022022,0.0000021879, +0.0000021707,0.0000021595,0.0000021519,0.0000021391,0.0000021204, +0.0000021068,0.0000021043,0.0000021110,0.0000021236,0.0000021379, +0.0000021521,0.0000021662,0.0000021800,0.0000021927,0.0000022026, +0.0000022091,0.0000022121,0.0000022122,0.0000022101,0.0000022063, +0.0000022016,0.0000021963,0.0000021905,0.0000021844,0.0000021779, +0.0000021707,0.0000021638,0.0000021569,0.0000021507,0.0000021466, +0.0000021443,0.0000021422,0.0000021401,0.0000021394,0.0000021388, +0.0000021372,0.0000021355,0.0000021343,0.0000021331,0.0000021319, +0.0000021312,0.0000021304,0.0000021299,0.0000021298,0.0000021294, +0.0000021290,0.0000021287,0.0000021280,0.0000021276,0.0000021276, +0.0000021284,0.0000021288,0.0000021316,0.0000021349,0.0000021385, +0.0000021420,0.0000021449,0.0000021476,0.0000021507,0.0000021534, +0.0000021553,0.0000021571,0.0000021588,0.0000021605,0.0000021622, +0.0000021635,0.0000021632,0.0000021613,0.0000021584,0.0000021553, +0.0000021504,0.0000021455,0.0000021417,0.0000021405,0.0000021415, +0.0000021446,0.0000021478,0.0000021497,0.0000021516,0.0000021546, +0.0000021582,0.0000021617,0.0000021647,0.0000021666,0.0000021668, +0.0000021655,0.0000021627,0.0000021589,0.0000021548,0.0000021505, +0.0000021466,0.0000021442,0.0000021430,0.0000021423,0.0000021420, +0.0000021421,0.0000021427,0.0000021433,0.0000021437,0.0000021438, +0.0000021443,0.0000021449,0.0000021445,0.0000021437,0.0000021440, +0.0000021457,0.0000021490,0.0000021539,0.0000021583,0.0000021624, +0.0000021671,0.0000021712,0.0000021745,0.0000021772,0.0000021795, +0.0000021817,0.0000021826,0.0000021824,0.0000021817,0.0000021808, +0.0000021795,0.0000021778,0.0000021763,0.0000021749,0.0000021743, +0.0000021749,0.0000021773,0.0000021785,0.0000021780,0.0000021762, +0.0000021738,0.0000021716,0.0000021701,0.0000021677,0.0000021633, +0.0000021575,0.0000021520,0.0000021481,0.0000021457,0.0000021448, +0.0000021449,0.0000021452,0.0000021449,0.0000021478,0.0000021530, +0.0000021587,0.0000021653,0.0000021736,0.0000021822,0.0000021905, +0.0000021976,0.0000022027,0.0000022064,0.0000022095,0.0000022121, +0.0000022142,0.0000022169,0.0000022217,0.0000022298,0.0000022406, +0.0000022521,0.0000022630,0.0000022719,0.0000022775,0.0000022797, +0.0000022804,0.0000022819,0.0000022848,0.0000022889,0.0000022942, +0.0000023004,0.0000023057,0.0000023081,0.0000023076,0.0000023046, +0.0000023001,0.0000022958,0.0000022927,0.0000022904,0.0000022889, +0.0000022875,0.0000022863,0.0000022855,0.0000022843,0.0000022827, +0.0000022804,0.0000022777,0.0000022745,0.0000022714,0.0000022686, +0.0000022676,0.0000022666,0.0000022682,0.0000022718,0.0000022768, +0.0000022831,0.0000022905,0.0000022988,0.0000023063,0.0000023103, +0.0000023124,0.0000023125,0.0000023111,0.0000023097,0.0000023089, +0.0000023084,0.0000023086,0.0000023098,0.0000023116,0.0000023132, +0.0000023144,0.0000023156,0.0000023169,0.0000023180,0.0000023179, +0.0000023178,0.0000023176,0.0000023177,0.0000023185,0.0000023194, +0.0000023200,0.0000023200,0.0000023197,0.0000023191,0.0000023181, +0.0000023166,0.0000023153,0.0000023146,0.0000023140,0.0000023132, +0.0000023125,0.0000023118,0.0000023111,0.0000023104,0.0000023100, +0.0000023094,0.0000023087,0.0000023077,0.0000023068,0.0000023060, +0.0000023054,0.0000023051,0.0000023053,0.0000023059,0.0000023069, +0.0000023085,0.0000023102,0.0000023113,0.0000023112,0.0000023096, +0.0000023062,0.0000023013,0.0000022959,0.0000022911,0.0000022870, +0.0000022829,0.0000022793,0.0000022769,0.0000022750,0.0000022741, +0.0000022745,0.0000022764,0.0000022787,0.0000022800,0.0000022798, +0.0000022777,0.0000022740,0.0000022701,0.0000022671,0.0000022654, +0.0000022642,0.0000022626,0.0000022609,0.0000022599,0.0000022594, +0.0000022588,0.0000022583,0.0000022581,0.0000022584,0.0000022583, +0.0000022572,0.0000022555,0.0000022538,0.0000022525,0.0000022515, +0.0000022498,0.0000022467,0.0000022423,0.0000022373,0.0000022335, +0.0000022321,0.0000022321,0.0000022331,0.0000022333,0.0000022319, +0.0000022292,0.0000022257,0.0000022208,0.0000022156,0.0000022106, +0.0000022037,0.0000021962,0.0000021894,0.0000021840,0.0000021803, +0.0000021776,0.0000021755,0.0000021732,0.0000021703,0.0000021671, +0.0000021639,0.0000021609,0.0000021583,0.0000021559,0.0000021539, +0.0000021521,0.0000021503,0.0000021476,0.0000021444,0.0000021410, +0.0000021379,0.0000021346,0.0000021314,0.0000021286,0.0000021254, +0.0000021222,0.0000021193,0.0000021161,0.0000021126,0.0000021086, +0.0000021047,0.0000021007,0.0000020965,0.0000020926,0.0000020899, +0.0000020885,0.0000020885,0.0000020894,0.0000020927,0.0000021014, +0.0000021172,0.0000021394,0.0000021631,0.0000021801,0.0000021888, +0.0000021927,0.0000021963,0.0000022024,0.0000022097,0.0000022158, +0.0000022197,0.0000022226,0.0000022257,0.0000022296,0.0000022338, +0.0000022370,0.0000022380,0.0000022373,0.0000022346,0.0000022296, +0.0000022220,0.0000022128,0.0000022037,0.0000021959,0.0000021908, +0.0000021879,0.0000021874,0.0000021893,0.0000021946,0.0000022028, +0.0000022120,0.0000022218,0.0000022305,0.0000022380,0.0000022455, +0.0000022528,0.0000022585,0.0000022604,0.0000022587,0.0000022540, +0.0000022490,0.0000022464,0.0000022467,0.0000022513,0.0000022576, +0.0000022625,0.0000022652,0.0000022660,0.0000022656,0.0000022648, +0.0000022642,0.0000022635,0.0000022624,0.0000022599,0.0000022563, +0.0000022537,0.0000022497,0.0000022428,0.0000022402,0.0000022433, +0.0000022496,0.0000022509,0.0000022465,0.0000022350,0.0000022201, +0.0000022152,0.0000022209,0.0000022278,0.0000022309,0.0000022312, +0.0000022503,0.0000022766,0.0000022847,0.0000022958,0.0000023061, +0.0000023151,0.0000023177,0.0000023097,0.0000022942,0.0000022708, +0.0000022556,0.0000022516,0.0000022510,0.0000022487,0.0000022477, +0.0000022438,0.0000022489,0.0000022659,0.0000022807,0.0000022906, +0.0000022951,0.0000022961,0.0000022945,0.0000022887,0.0000022848, +0.0000022872,0.0000022935,0.0000022983,0.0000023035,0.0000023084, +0.0000023218,0.0000023405,0.0000023512,0.0000023597,0.0000023602, +0.0000023473,0.0000023369,0.0000023291,0.0000023265,0.0000023279, +0.0000023264,0.0000023225,0.0000023200,0.0000023181,0.0000023148, +0.0000023113,0.0000023104,0.0000023117,0.0000023131,0.0000023130, +0.0000023115,0.0000023089,0.0000023070,0.0000023062,0.0000023062, +0.0000023067,0.0000023071,0.0000023074,0.0000023074,0.0000023073, +0.0000023051,0.0000023013,0.0000022964,0.0000022928,0.0000022901, +0.0000022877,0.0000022870,0.0000022862,0.0000022865,0.0000022886, +0.0000022909,0.0000022925,0.0000022949,0.0000022980,0.0000023038, +0.0000023118,0.0000023157,0.0000023129,0.0000023082,0.0000023065, +0.0000023021,0.0000022877,0.0000022675,0.0000022371,0.0000022155, +0.0000022214,0.0000022265,0.0000022180,0.0000022179,0.0000022211, +0.0000021989,0.0000021657,0.0000021640,0.0000021823,0.0000021983, +0.0000022101,0.0000022203,0.0000022281,0.0000022341,0.0000022417, +0.0000022471,0.0000022452,0.0000022379,0.0000022311,0.0000022272, +0.0000022250,0.0000022251,0.0000022287,0.0000022320,0.0000022328, +0.0000022341,0.0000022395,0.0000022497,0.0000022627,0.0000022727, +0.0000022740,0.0000022671,0.0000022581,0.0000022492,0.0000022341, +0.0000022154,0.0000022037,0.0000022005,0.0000022024,0.0000022083, +0.0000022110,0.0000022113,0.0000022160,0.0000022241,0.0000022317, +0.0000022380,0.0000022442,0.0000022503,0.0000022538,0.0000022540, +0.0000022528,0.0000022504,0.0000022479,0.0000022475,0.0000022481, +0.0000022438,0.0000022363,0.0000022345,0.0000022377,0.0000022405, +0.0000022403,0.0000022414,0.0000022440,0.0000022441,0.0000022438, +0.0000022520,0.0000022688,0.0000022846,0.0000022939,0.0000022978, +0.0000022983,0.0000022972,0.0000022954,0.0000022937,0.0000022921, +0.0000022912,0.0000022924,0.0000022944,0.0000022955,0.0000022961, +0.0000022967,0.0000022969,0.0000022970,0.0000022960,0.0000022943, +0.0000022936,0.0000022943,0.0000022959,0.0000022970,0.0000022980, +0.0000022998,0.0000023028,0.0000023069,0.0000023122,0.0000023191, +0.0000023272,0.0000023351,0.0000023410,0.0000023436,0.0000023440, +0.0000023439,0.0000023438,0.0000023427,0.0000023406,0.0000023358, +0.0000023289,0.0000023213,0.0000023150,0.0000023105,0.0000023080, +0.0000023085,0.0000023109,0.0000023134,0.0000023164,0.0000023212, +0.0000023280,0.0000023366,0.0000023452,0.0000023525,0.0000023579, +0.0000023609,0.0000023614,0.0000023595,0.0000023560,0.0000023510, +0.0000023452,0.0000023386,0.0000023338,0.0000023341,0.0000023391, +0.0000023462,0.0000023513,0.0000023541,0.0000023558,0.0000023568, +0.0000023558,0.0000023527,0.0000023498,0.0000023493,0.0000023501, +0.0000023513,0.0000023526,0.0000023541,0.0000023555,0.0000023568, +0.0000023578,0.0000023585,0.0000023584,0.0000023582,0.0000023593, +0.0000023620,0.0000023652,0.0000023679,0.0000023700,0.0000023722, +0.0000023759,0.0000023815,0.0000023868,0.0000023898,0.0000023901, +0.0000023876,0.0000023842,0.0000023831,0.0000023844,0.0000023886, +0.0000023941,0.0000023990,0.0000024019,0.0000024033,0.0000024036, +0.0000024031,0.0000024011,0.0000023975,0.0000023928,0.0000023869, +0.0000023800,0.0000023730,0.0000023663,0.0000023604,0.0000023551, +0.0000023504,0.0000023461,0.0000023416,0.0000023368,0.0000023315, +0.0000023255,0.0000023193,0.0000023137,0.0000023094,0.0000023070, +0.0000023058,0.0000023041,0.0000023003,0.0000022952,0.0000022908, +0.0000022877,0.0000022849,0.0000022821,0.0000022799,0.0000022789, +0.0000022780,0.0000022754,0.0000022706,0.0000022666,0.0000022655, +0.0000022677,0.0000022716,0.0000022740,0.0000022741,0.0000022734, +0.0000022734,0.0000022750,0.0000022769,0.0000022781,0.0000022778, +0.0000022774,0.0000022757,0.0000022734,0.0000022703,0.0000022666, +0.0000022628,0.0000022591,0.0000022555,0.0000022519,0.0000022483, +0.0000022447,0.0000022414,0.0000022387,0.0000022369,0.0000022356, +0.0000022350,0.0000022350,0.0000022358,0.0000022373,0.0000022388, +0.0000022399,0.0000022405,0.0000022400,0.0000022385,0.0000022369, +0.0000022354,0.0000022338,0.0000022311,0.0000022281,0.0000022252, +0.0000022221,0.0000022200,0.0000022179,0.0000022168,0.0000022167, +0.0000022167,0.0000022170,0.0000022179,0.0000022189,0.0000022199, +0.0000022216,0.0000022234,0.0000022259,0.0000022286,0.0000022313, +0.0000022338,0.0000022354,0.0000022364,0.0000022369,0.0000022367, +0.0000022363,0.0000022356,0.0000022351,0.0000022346,0.0000022338, +0.0000022331,0.0000022325,0.0000022316,0.0000022303,0.0000022294, +0.0000022291,0.0000022293,0.0000022306,0.0000022326,0.0000022350, +0.0000022365,0.0000022378,0.0000022393,0.0000022415,0.0000022446, +0.0000022471,0.0000022490,0.0000022520,0.0000022553,0.0000022571, +0.0000022558,0.0000022515,0.0000022395,0.0000022222,0.0000022058, +0.0000021958,0.0000021939,0.0000021946,0.0000021958,0.0000021982, +0.0000022041,0.0000022132,0.0000022217,0.0000022286,0.0000022371, +0.0000022475,0.0000022570,0.0000022654,0.0000022723,0.0000022764, +0.0000022791,0.0000022805,0.0000022808,0.0000022817,0.0000022832, +0.0000022829,0.0000022828,0.0000022854,0.0000022846,0.0000022840, +0.0000023024,0.0000023276,0.0000023369,0.0000023358,0.0000023227, +0.0000023026,0.0000022913,0.0000022847,0.0000022721,0.0000022554, +0.0000022429,0.0000022374,0.0000022345,0.0000022310,0.0000022257, +0.0000022198,0.0000022154,0.0000022107,0.0000022053,0.0000022003, +0.0000021954,0.0000021929,0.0000021925,0.0000021924,0.0000021916, +0.0000021912,0.0000021937,0.0000022011,0.0000022120,0.0000022214, +0.0000022266,0.0000022303,0.0000022347,0.0000022399,0.0000022455, +0.0000022500,0.0000022515,0.0000022477,0.0000022368,0.0000022242, +0.0000022167,0.0000022156,0.0000022178,0.0000022213,0.0000022242, +0.0000022269,0.0000022298,0.0000022337,0.0000022380,0.0000022427, +0.0000022482,0.0000022549,0.0000022611,0.0000022664,0.0000022702, +0.0000022716,0.0000022716,0.0000022683,0.0000022620,0.0000022544, +0.0000022475,0.0000022410,0.0000022319,0.0000022178,0.0000022006, +0.0000021847,0.0000021752,0.0000021756,0.0000021894,0.0000022123, +0.0000022256,0.0000022221,0.0000022135,0.0000022208,0.0000022530, +0.0000022867,0.0000022909,0.0000022662,0.0000022305,0.0000022095, +0.0000022041,0.0000022028,0.0000021988,0.0000021901,0.0000021783, +0.0000021674,0.0000021622,0.0000021625,0.0000021655,0.0000021682, +0.0000021696,0.0000021702,0.0000021715,0.0000021736,0.0000021742, +0.0000021719,0.0000021678,0.0000021645,0.0000021620,0.0000021583, +0.0000021526,0.0000021464,0.0000021416,0.0000021375,0.0000021340, +0.0000021315,0.0000021290,0.0000021273,0.0000021269,0.0000021274, +0.0000021289,0.0000021319,0.0000021357,0.0000021391,0.0000021428, +0.0000021466,0.0000021507,0.0000021566,0.0000021652,0.0000021764, +0.0000021895,0.0000022023,0.0000022131,0.0000022200,0.0000022232, +0.0000022257,0.0000022297,0.0000022357,0.0000022420,0.0000022472, +0.0000022523,0.0000022578,0.0000022613,0.0000022619,0.0000022608, +0.0000022597,0.0000022596,0.0000022604,0.0000022604,0.0000022567, +0.0000022468,0.0000022321,0.0000022179,0.0000022074,0.0000021984, +0.0000021864,0.0000021705,0.0000021536,0.0000021385,0.0000021266, +0.0000021172,0.0000021099,0.0000021051,0.0000021037,0.0000021040, +0.0000021051,0.0000021056,0.0000021050,0.0000021042,0.0000021052, +0.0000021099,0.0000021190,0.0000021314,0.0000021432,0.0000021496, +0.0000021487,0.0000021434,0.0000021345,0.0000021261,0.0000021211, +0.0000021195,0.0000021189,0.0000021177,0.0000021165,0.0000021187, +0.0000021280,0.0000021439,0.0000021587,0.0000021636,0.0000021608, +0.0000021499,0.0000021373,0.0000021250,0.0000021138,0.0000021055, +0.0000021003,0.0000020961,0.0000020922,0.0000020919,0.0000020966, +0.0000021111,0.0000021325,0.0000021551,0.0000021739,0.0000021863, +0.0000021924,0.0000021950,0.0000021974,0.0000022000,0.0000022006, +0.0000021989,0.0000021990,0.0000022055,0.0000022198,0.0000022391, +0.0000022596,0.0000022779,0.0000022911,0.0000022957,0.0000022924, +0.0000022868,0.0000022847,0.0000022902,0.0000023053,0.0000023279, +0.0000023544,0.0000023800,0.0000024009,0.0000024159,0.0000024266, +0.0000024354,0.0000024430,0.0000024499,0.0000024564,0.0000024616, +0.0000024637,0.0000024597,0.0000024504,0.0000024406,0.0000024336, +0.0000024309,0.0000024309,0.0000024302,0.0000024275,0.0000024229, +0.0000024175,0.0000024126,0.0000024088,0.0000024075,0.0000024069, +0.0000024078,0.0000024083,0.0000024088,0.0000024100,0.0000024118, +0.0000024131,0.0000024133,0.0000024120,0.0000024090,0.0000024043, +0.0000023994,0.0000023969,0.0000023984,0.0000024069,0.0000024182, +0.0000024255,0.0000024266,0.0000024241,0.0000024184,0.0000024112, +0.0000024049,0.0000024003,0.0000023951,0.0000023859,0.0000023729, +0.0000023587,0.0000023437,0.0000023277,0.0000023127,0.0000022997, +0.0000022869,0.0000022739,0.0000022652,0.0000022640,0.0000022675, +0.0000022710,0.0000022715,0.0000022687,0.0000022617,0.0000022522, +0.0000022425,0.0000022336,0.0000022256,0.0000022189,0.0000022129, +0.0000022062,0.0000021980,0.0000021905,0.0000021884,0.0000021929, +0.0000022028,0.0000022145,0.0000022257,0.0000022357,0.0000022440, +0.0000022506,0.0000022569,0.0000022644,0.0000022739,0.0000022860, +0.0000023005,0.0000023165,0.0000023320,0.0000023449,0.0000023525, +0.0000023544,0.0000023494,0.0000023452,0.0000023366,0.0000023280, +0.0000023205,0.0000023140,0.0000023088,0.0000023048,0.0000023017, +0.0000022988,0.0000022958,0.0000022924,0.0000022894,0.0000022872, +0.0000022867,0.0000022877,0.0000022889,0.0000022890,0.0000022879, +0.0000022858,0.0000022835,0.0000022814,0.0000022778,0.0000022745, +0.0000022709,0.0000022659,0.0000022591,0.0000022522,0.0000022464, +0.0000022424,0.0000022391,0.0000022374,0.0000022385,0.0000022414, +0.0000022444,0.0000022452,0.0000022436,0.0000022413,0.0000022391, +0.0000022380,0.0000022377,0.0000022375,0.0000022364,0.0000022356, +0.0000022355,0.0000022345,0.0000022325,0.0000022302,0.0000022277, +0.0000022260,0.0000022239,0.0000022208,0.0000022189,0.0000022176, +0.0000022156,0.0000022127,0.0000022092,0.0000022057,0.0000022017, +0.0000021972,0.0000021926,0.0000021871,0.0000021812,0.0000021761, +0.0000021716,0.0000021672,0.0000021638,0.0000021624,0.0000021630, +0.0000021652,0.0000021678,0.0000021702,0.0000021723,0.0000021745, +0.0000021765,0.0000021779,0.0000021780,0.0000021775,0.0000021769, +0.0000021758,0.0000021740,0.0000021717,0.0000021689,0.0000021648, +0.0000021595,0.0000021537,0.0000021473,0.0000021407,0.0000021336, +0.0000021267,0.0000021198,0.0000021139,0.0000021092,0.0000021057, +0.0000021035,0.0000021027,0.0000021033,0.0000021045,0.0000021059, +0.0000021081,0.0000021108,0.0000021124,0.0000021127,0.0000021122, +0.0000021110,0.0000021090,0.0000021065,0.0000021032,0.0000020999, +0.0000020967,0.0000020933,0.0000020897,0.0000020856,0.0000020811, +0.0000020772,0.0000020750,0.0000020748,0.0000020758,0.0000020773, +0.0000020780,0.0000020779,0.0000020773,0.0000020770,0.0000020773, +0.0000020793,0.0000020820,0.0000020844,0.0000020861,0.0000020871, +0.0000020872,0.0000020864,0.0000020852,0.0000020839,0.0000020832, +0.0000020831,0.0000020824,0.0000020814,0.0000020812,0.0000020818, +0.0000020827,0.0000020822,0.0000020814,0.0000020782,0.0000020734, +0.0000020690,0.0000020664,0.0000020652,0.0000020667,0.0000020692, +0.0000020704,0.0000020703,0.0000020695,0.0000020687,0.0000020690, +0.0000020710,0.0000020748,0.0000020800,0.0000020855,0.0000020912, +0.0000020962,0.0000020985,0.0000020980,0.0000020946,0.0000020893, +0.0000020839,0.0000020809,0.0000020799,0.0000020799,0.0000020803, +0.0000020812,0.0000020819,0.0000020810,0.0000020794,0.0000020797, +0.0000020828,0.0000020868,0.0000020880,0.0000020867,0.0000020881, +0.0000021010,0.0000021239,0.0000021405,0.0000021434,0.0000021427, +0.0000021458,0.0000021559,0.0000021643,0.0000021660,0.0000021648, +0.0000021638,0.0000021644,0.0000021633,0.0000021562,0.0000021457, +0.0000021355,0.0000021274,0.0000021218,0.0000021152,0.0000021088, +0.0000021077,0.0000021098,0.0000021086,0.0000021007,0.0000020903, +0.0000020818,0.0000020770,0.0000020753,0.0000020749,0.0000020753, +0.0000020772,0.0000020808,0.0000020863,0.0000020929,0.0000020991, +0.0000021040,0.0000021069,0.0000021081,0.0000021086,0.0000021080, +0.0000021058,0.0000021021,0.0000020978,0.0000020933,0.0000020893, +0.0000020865,0.0000020849,0.0000020844,0.0000020850,0.0000020867, +0.0000020888,0.0000020904,0.0000020920,0.0000020953,0.0000021002, +0.0000021035,0.0000021034,0.0000021000,0.0000020943,0.0000020858, +0.0000020746,0.0000020645,0.0000020602,0.0000020597,0.0000020589, +0.0000020579,0.0000020578,0.0000020580,0.0000020583,0.0000020598, +0.0000020626,0.0000020652,0.0000020667,0.0000020670,0.0000020665, +0.0000020648,0.0000020621,0.0000020584,0.0000020540,0.0000020495, +0.0000020453,0.0000020425,0.0000020411,0.0000020403,0.0000020398, +0.0000020404,0.0000020436,0.0000020487,0.0000020551,0.0000020618, +0.0000020680,0.0000020728,0.0000020765,0.0000020791,0.0000020803, +0.0000020807,0.0000020812,0.0000020826,0.0000020844,0.0000020866, +0.0000020891,0.0000020921,0.0000020953,0.0000020985,0.0000021016, +0.0000021046,0.0000021074,0.0000021060,0.0000020950,0.0000020765, +0.0000020629,0.0000020602,0.0000020644,0.0000020792,0.0000021040, +0.0000021319,0.0000021548,0.0000021699,0.0000021805,0.0000021888, +0.0000021938,0.0000021953,0.0000021952,0.0000021958,0.0000021967, +0.0000021973,0.0000021979,0.0000021994,0.0000022025,0.0000022061, +0.0000022086,0.0000022087,0.0000022054,0.0000021986,0.0000021927, +0.0000021912,0.0000021917,0.0000021889,0.0000021754,0.0000021538, +0.0000021382,0.0000021344,0.0000021353,0.0000021398,0.0000021479, +0.0000021595,0.0000021721,0.0000021827,0.0000021891,0.0000021916, +0.0000021877,0.0000021900,0.0000021924,0.0000021967,0.0000022025, +0.0000022033,0.0000021930,0.0000021749,0.0000021590,0.0000021494, +0.0000021425,0.0000021333,0.0000021215,0.0000021136,0.0000021131, +0.0000021168,0.0000021250,0.0000021335,0.0000021414,0.0000021494, +0.0000021565,0.0000021616,0.0000021643,0.0000021643,0.0000021625, +0.0000021598,0.0000021574,0.0000021553,0.0000021532,0.0000021518, +0.0000021512,0.0000021507,0.0000021496,0.0000021485,0.0000021477, +0.0000021477,0.0000021487,0.0000021498,0.0000021511,0.0000021521, +0.0000021528,0.0000021523,0.0000021515,0.0000021507,0.0000021492, +0.0000021471,0.0000021453,0.0000021437,0.0000021420,0.0000021403, +0.0000021387,0.0000021373,0.0000021357,0.0000021337,0.0000021319, +0.0000021306,0.0000021301,0.0000021300,0.0000021309,0.0000021326, +0.0000021349,0.0000021373,0.0000021391,0.0000021407,0.0000021427, +0.0000021445,0.0000021454,0.0000021462,0.0000021473,0.0000021496, +0.0000021527,0.0000021558,0.0000021585,0.0000021591,0.0000021591, +0.0000021585,0.0000021569,0.0000021544,0.0000021515,0.0000021495, +0.0000021493,0.0000021510,0.0000021539,0.0000021561,0.0000021578, +0.0000021604,0.0000021638,0.0000021668,0.0000021694,0.0000021722, +0.0000021743,0.0000021755,0.0000021757,0.0000021734,0.0000021691, +0.0000021639,0.0000021585,0.0000021542,0.0000021522,0.0000021517, +0.0000021520,0.0000021534,0.0000021560,0.0000021584,0.0000021596, +0.0000021598,0.0000021595,0.0000021587,0.0000021565,0.0000021530, +0.0000021492,0.0000021471,0.0000021472,0.0000021505,0.0000021549, +0.0000021590,0.0000021635,0.0000021681,0.0000021717,0.0000021743, +0.0000021762,0.0000021779,0.0000021792,0.0000021800,0.0000021800, +0.0000021792,0.0000021781,0.0000021771,0.0000021758,0.0000021747, +0.0000021737,0.0000021738,0.0000021757,0.0000021794,0.0000021824, +0.0000021833,0.0000021833,0.0000021825,0.0000021817,0.0000021817, +0.0000021807,0.0000021769,0.0000021709,0.0000021646,0.0000021593, +0.0000021550,0.0000021518,0.0000021491,0.0000021461,0.0000021435, +0.0000021434,0.0000021441,0.0000021438,0.0000021445,0.0000021486, +0.0000021543,0.0000021618,0.0000021705,0.0000021793,0.0000021879, +0.0000021962,0.0000022033,0.0000022087,0.0000022124,0.0000022153, +0.0000022184,0.0000022229,0.0000022303,0.0000022413,0.0000022546, +0.0000022671,0.0000022759,0.0000022805,0.0000022821,0.0000022828, +0.0000022840,0.0000022866,0.0000022912,0.0000022973,0.0000023032, +0.0000023067,0.0000023070,0.0000023055,0.0000023016,0.0000022961, +0.0000022910,0.0000022875,0.0000022850,0.0000022841,0.0000022843, +0.0000022849,0.0000022856,0.0000022867,0.0000022872,0.0000022871, +0.0000022864,0.0000022846,0.0000022809,0.0000022757,0.0000022705, +0.0000022684,0.0000022666,0.0000022675,0.0000022711,0.0000022772, +0.0000022859,0.0000022959,0.0000023050,0.0000023109,0.0000023120, +0.0000023120,0.0000023110,0.0000023095,0.0000023087,0.0000023089, +0.0000023097,0.0000023109,0.0000023118,0.0000023123,0.0000023127, +0.0000023132,0.0000023139,0.0000023147,0.0000023154,0.0000023161, +0.0000023169,0.0000023176,0.0000023179,0.0000023178,0.0000023175, +0.0000023170,0.0000023163,0.0000023153,0.0000023145,0.0000023136, +0.0000023125,0.0000023111,0.0000023097,0.0000023085,0.0000023073, +0.0000023065,0.0000023062,0.0000023059,0.0000023052,0.0000023043, +0.0000023033,0.0000023027,0.0000023029,0.0000023039,0.0000023056, +0.0000023078,0.0000023100,0.0000023116,0.0000023122,0.0000023116, +0.0000023093,0.0000023054,0.0000023006,0.0000022955,0.0000022909, +0.0000022875,0.0000022847,0.0000022820,0.0000022801,0.0000022796, +0.0000022799,0.0000022808,0.0000022822,0.0000022836,0.0000022843, +0.0000022836,0.0000022816,0.0000022787,0.0000022753,0.0000022723, +0.0000022703,0.0000022691,0.0000022681,0.0000022670,0.0000022664, +0.0000022666,0.0000022672,0.0000022677,0.0000022679,0.0000022678, +0.0000022676,0.0000022666,0.0000022643,0.0000022612,0.0000022578, +0.0000022549,0.0000022527,0.0000022505,0.0000022473,0.0000022428, +0.0000022375,0.0000022333,0.0000022312,0.0000022305,0.0000022307, +0.0000022306,0.0000022294,0.0000022268,0.0000022227,0.0000022166, +0.0000022090,0.0000022010,0.0000021928,0.0000021864,0.0000021822, +0.0000021794,0.0000021769,0.0000021741,0.0000021714,0.0000021684, +0.0000021653,0.0000021622,0.0000021591,0.0000021567,0.0000021553, +0.0000021541,0.0000021528,0.0000021515,0.0000021498,0.0000021464, +0.0000021425,0.0000021391,0.0000021359,0.0000021333,0.0000021310, +0.0000021286,0.0000021266,0.0000021243,0.0000021216,0.0000021185, +0.0000021150,0.0000021113,0.0000021072,0.0000021023,0.0000020973, +0.0000020931,0.0000020902,0.0000020886,0.0000020884,0.0000020892, +0.0000020915,0.0000020972,0.0000021095,0.0000021318,0.0000021595, +0.0000021812,0.0000021915,0.0000021939,0.0000021952,0.0000022008, +0.0000022092,0.0000022160,0.0000022195,0.0000022215,0.0000022238, +0.0000022272,0.0000022305,0.0000022321,0.0000022315,0.0000022288, +0.0000022242,0.0000022174,0.0000022085,0.0000021998,0.0000021938, +0.0000021902,0.0000021891,0.0000021893,0.0000021934,0.0000022013, +0.0000022111,0.0000022200,0.0000022265,0.0000022313,0.0000022352, +0.0000022389,0.0000022436,0.0000022486,0.0000022523,0.0000022539, +0.0000022538,0.0000022520,0.0000022496,0.0000022482,0.0000022480, +0.0000022500,0.0000022550,0.0000022609,0.0000022657,0.0000022672, +0.0000022665,0.0000022650,0.0000022635,0.0000022616,0.0000022588, +0.0000022550,0.0000022516,0.0000022488,0.0000022434,0.0000022377, +0.0000022368,0.0000022415,0.0000022469,0.0000022479,0.0000022433, +0.0000022307,0.0000022172,0.0000022149,0.0000022220,0.0000022291, +0.0000022317,0.0000022356,0.0000022630,0.0000022817,0.0000022894, +0.0000023018,0.0000023116,0.0000023205,0.0000023175,0.0000023086, +0.0000022878,0.0000022659,0.0000022544,0.0000022523,0.0000022483, +0.0000022440,0.0000022399,0.0000022383,0.0000022493,0.0000022662, +0.0000022804,0.0000022907,0.0000022950,0.0000022968,0.0000022946, +0.0000022881,0.0000022845,0.0000022874,0.0000022927,0.0000022966, +0.0000023006,0.0000023043,0.0000023164,0.0000023344,0.0000023462, +0.0000023546,0.0000023575,0.0000023481,0.0000023370,0.0000023289, +0.0000023217,0.0000023203,0.0000023214,0.0000023201,0.0000023175, +0.0000023152,0.0000023121,0.0000023091,0.0000023084,0.0000023094, +0.0000023113,0.0000023122,0.0000023115,0.0000023103,0.0000023099, +0.0000023112,0.0000023127,0.0000023140,0.0000023146,0.0000023138, +0.0000023113,0.0000023087,0.0000023045,0.0000022994,0.0000022941, +0.0000022904,0.0000022877,0.0000022852,0.0000022849,0.0000022852, +0.0000022865,0.0000022893,0.0000022924,0.0000022941,0.0000022962, +0.0000022987,0.0000023025,0.0000023099,0.0000023156,0.0000023150, +0.0000023099,0.0000023076,0.0000023057,0.0000022949,0.0000022765, +0.0000022503,0.0000022187,0.0000022165,0.0000022268,0.0000022220, +0.0000022167,0.0000022240,0.0000022172,0.0000021824,0.0000021642, +0.0000021741,0.0000021912,0.0000022030,0.0000022129,0.0000022216, +0.0000022276,0.0000022332,0.0000022399,0.0000022422,0.0000022377, +0.0000022295,0.0000022238,0.0000022214,0.0000022214,0.0000022243, +0.0000022291,0.0000022316,0.0000022315,0.0000022326,0.0000022381, +0.0000022480,0.0000022599,0.0000022694,0.0000022716,0.0000022666, +0.0000022584,0.0000022497,0.0000022359,0.0000022174,0.0000022040, +0.0000021994,0.0000022013,0.0000022067,0.0000022100,0.0000022106, +0.0000022146,0.0000022233,0.0000022327,0.0000022402,0.0000022463, +0.0000022519,0.0000022555,0.0000022564,0.0000022554,0.0000022532, +0.0000022501,0.0000022481,0.0000022475,0.0000022417,0.0000022333, +0.0000022301,0.0000022330,0.0000022363,0.0000022364,0.0000022370, +0.0000022396,0.0000022412,0.0000022411,0.0000022445,0.0000022548, +0.0000022682,0.0000022794,0.0000022858,0.0000022887,0.0000022893, +0.0000022886,0.0000022875,0.0000022861,0.0000022853,0.0000022858, +0.0000022863,0.0000022864,0.0000022864,0.0000022863,0.0000022860, +0.0000022855,0.0000022843,0.0000022831,0.0000022832,0.0000022853, +0.0000022885,0.0000022913,0.0000022941,0.0000022967,0.0000022992, +0.0000023016,0.0000023037,0.0000023065,0.0000023103,0.0000023157, +0.0000023221,0.0000023281,0.0000023328,0.0000023367,0.0000023401, +0.0000023417,0.0000023417,0.0000023400,0.0000023378,0.0000023326, +0.0000023265,0.0000023209,0.0000023165,0.0000023143,0.0000023137, +0.0000023145,0.0000023166,0.0000023185,0.0000023220,0.0000023281, +0.0000023356,0.0000023430,0.0000023499,0.0000023552,0.0000023582, +0.0000023583,0.0000023565,0.0000023539,0.0000023497,0.0000023451, +0.0000023430,0.0000023450,0.0000023500,0.0000023537,0.0000023548, +0.0000023550,0.0000023553,0.0000023546,0.0000023519,0.0000023489, +0.0000023476,0.0000023485,0.0000023507,0.0000023530,0.0000023549, +0.0000023566,0.0000023579,0.0000023587,0.0000023594,0.0000023597, +0.0000023593,0.0000023588,0.0000023592,0.0000023609,0.0000023627, +0.0000023639,0.0000023648,0.0000023662,0.0000023695,0.0000023749, +0.0000023803,0.0000023839,0.0000023851,0.0000023843,0.0000023819, +0.0000023805,0.0000023811,0.0000023834,0.0000023870,0.0000023909, +0.0000023947,0.0000023972,0.0000023984,0.0000023984,0.0000023969, +0.0000023938,0.0000023893,0.0000023835,0.0000023765,0.0000023691, +0.0000023620,0.0000023555,0.0000023498,0.0000023450,0.0000023409, +0.0000023367,0.0000023318,0.0000023263,0.0000023205,0.0000023147, +0.0000023099,0.0000023069,0.0000023056,0.0000023048,0.0000023027, +0.0000022987,0.0000022945,0.0000022916,0.0000022894,0.0000022870, +0.0000022849,0.0000022838,0.0000022830,0.0000022809,0.0000022767, +0.0000022718,0.0000022703,0.0000022722,0.0000022762,0.0000022789, +0.0000022786,0.0000022768,0.0000022760,0.0000022771,0.0000022790, +0.0000022792,0.0000022786,0.0000022764,0.0000022732,0.0000022697, +0.0000022656,0.0000022613,0.0000022569,0.0000022525,0.0000022484, +0.0000022447,0.0000022415,0.0000022383,0.0000022348,0.0000022312, +0.0000022278,0.0000022249,0.0000022228,0.0000022212,0.0000022201, +0.0000022199,0.0000022207,0.0000022217,0.0000022230,0.0000022241, +0.0000022245,0.0000022237,0.0000022222,0.0000022214,0.0000022208, +0.0000022200,0.0000022193,0.0000022187,0.0000022182,0.0000022179, +0.0000022177,0.0000022182,0.0000022192,0.0000022189,0.0000022207, +0.0000022217,0.0000022220,0.0000022232,0.0000022239,0.0000022247, +0.0000022262,0.0000022282,0.0000022305,0.0000022326,0.0000022344, +0.0000022356,0.0000022363,0.0000022360,0.0000022350,0.0000022338, +0.0000022328,0.0000022319,0.0000022309,0.0000022297,0.0000022285, +0.0000022269,0.0000022252,0.0000022236,0.0000022232,0.0000022240, +0.0000022265,0.0000022298,0.0000022331,0.0000022349,0.0000022356, +0.0000022359,0.0000022372,0.0000022400,0.0000022434,0.0000022460, +0.0000022485,0.0000022511,0.0000022530,0.0000022540,0.0000022537, +0.0000022496,0.0000022385,0.0000022218,0.0000022046,0.0000021955, +0.0000021949,0.0000021960,0.0000021967,0.0000021977,0.0000022020, +0.0000022086,0.0000022146,0.0000022215,0.0000022314,0.0000022425, +0.0000022539,0.0000022649,0.0000022732,0.0000022789,0.0000022813, +0.0000022811,0.0000022796,0.0000022794,0.0000022803,0.0000022811, +0.0000022820,0.0000022829,0.0000022805,0.0000022846,0.0000023079, +0.0000023295,0.0000023356,0.0000023334,0.0000023167,0.0000022974, +0.0000022886,0.0000022771,0.0000022560,0.0000022384,0.0000022333, +0.0000022330,0.0000022325,0.0000022294,0.0000022232,0.0000022167, +0.0000022106,0.0000022037,0.0000021970,0.0000021915,0.0000021885, +0.0000021878,0.0000021873,0.0000021863,0.0000021873,0.0000021926, +0.0000022023,0.0000022135,0.0000022217,0.0000022256,0.0000022285, +0.0000022317,0.0000022371,0.0000022447,0.0000022512,0.0000022533, +0.0000022503,0.0000022387,0.0000022231,0.0000022131,0.0000022119, +0.0000022156,0.0000022213,0.0000022259,0.0000022298,0.0000022342, +0.0000022378,0.0000022398,0.0000022414,0.0000022439,0.0000022481, +0.0000022533,0.0000022590,0.0000022650,0.0000022704,0.0000022741, +0.0000022766,0.0000022765,0.0000022731,0.0000022662,0.0000022576, +0.0000022496,0.0000022420,0.0000022318,0.0000022165,0.0000021976, +0.0000021804,0.0000021708,0.0000021739,0.0000021912,0.0000022133, +0.0000022237,0.0000022208,0.0000022154,0.0000022239,0.0000022580, +0.0000022890,0.0000022891,0.0000022574,0.0000022232,0.0000022054, +0.0000022017,0.0000022011,0.0000021962,0.0000021853,0.0000021721, +0.0000021630,0.0000021606,0.0000021620,0.0000021652,0.0000021678, +0.0000021690,0.0000021700,0.0000021720,0.0000021728,0.0000021707, +0.0000021665,0.0000021625,0.0000021581,0.0000021531,0.0000021474, +0.0000021421,0.0000021379,0.0000021345,0.0000021324,0.0000021302, +0.0000021273,0.0000021255,0.0000021251,0.0000021260,0.0000021287, +0.0000021334,0.0000021378,0.0000021414,0.0000021449,0.0000021479, +0.0000021513,0.0000021569,0.0000021648,0.0000021751,0.0000021871, +0.0000021993,0.0000022103,0.0000022179,0.0000022221,0.0000022252, +0.0000022292,0.0000022350,0.0000022409,0.0000022459,0.0000022513, +0.0000022574,0.0000022615,0.0000022620,0.0000022606,0.0000022593, +0.0000022596,0.0000022609,0.0000022611,0.0000022560,0.0000022431, +0.0000022267,0.0000022134,0.0000022041,0.0000021948,0.0000021820, +0.0000021663,0.0000021500,0.0000021356,0.0000021233,0.0000021123, +0.0000021027,0.0000020956,0.0000020925,0.0000020926,0.0000020947, +0.0000020973,0.0000020987,0.0000020987,0.0000020991,0.0000021019, +0.0000021080,0.0000021178,0.0000021306,0.0000021421,0.0000021479, +0.0000021466,0.0000021408,0.0000021310,0.0000021218,0.0000021158, +0.0000021134,0.0000021126,0.0000021121,0.0000021122,0.0000021155, +0.0000021254,0.0000021414,0.0000021565,0.0000021619,0.0000021599, +0.0000021498,0.0000021376,0.0000021260,0.0000021161,0.0000021087, +0.0000021034,0.0000020992,0.0000020954,0.0000020942,0.0000020984, +0.0000021093,0.0000021264,0.0000021472,0.0000021669,0.0000021804, +0.0000021875,0.0000021912,0.0000021945,0.0000021969,0.0000021967, +0.0000021948,0.0000021945,0.0000021997,0.0000022130,0.0000022321, +0.0000022528,0.0000022710,0.0000022844,0.0000022901,0.0000022890, +0.0000022852,0.0000022841,0.0000022886,0.0000023012,0.0000023207, +0.0000023441,0.0000023683,0.0000023898,0.0000024066,0.0000024194, +0.0000024294,0.0000024374,0.0000024441,0.0000024505,0.0000024562, +0.0000024590,0.0000024559,0.0000024516,0.0000024447,0.0000024386, +0.0000024356,0.0000024345,0.0000024340,0.0000024326,0.0000024291, +0.0000024234,0.0000024170,0.0000024111,0.0000024071,0.0000024055, +0.0000024040,0.0000024043,0.0000024054,0.0000024075,0.0000024098, +0.0000024111,0.0000024109,0.0000024087,0.0000024049,0.0000024005, +0.0000023976,0.0000023978,0.0000024031,0.0000024128,0.0000024219, +0.0000024259,0.0000024260,0.0000024235,0.0000024185,0.0000024121, +0.0000024056,0.0000024000,0.0000023938,0.0000023837,0.0000023698, +0.0000023545,0.0000023390,0.0000023230,0.0000023078,0.0000022948, +0.0000022833,0.0000022743,0.0000022711,0.0000022732,0.0000022764, +0.0000022774,0.0000022758,0.0000022700,0.0000022609,0.0000022512, +0.0000022416,0.0000022324,0.0000022243,0.0000022166,0.0000022081, +0.0000021979,0.0000021881,0.0000021825,0.0000021825,0.0000021875, +0.0000021963,0.0000022057,0.0000022150,0.0000022237,0.0000022303, +0.0000022344,0.0000022369,0.0000022388,0.0000022414,0.0000022459, +0.0000022539,0.0000022666,0.0000022827,0.0000023000,0.0000023162, +0.0000023292,0.0000023377,0.0000023402,0.0000023362,0.0000023331, +0.0000023262,0.0000023193,0.0000023123,0.0000023060,0.0000023006, +0.0000022959,0.0000022923,0.0000022885,0.0000022860,0.0000022854, +0.0000022866,0.0000022889,0.0000022907,0.0000022918,0.0000022911, +0.0000022890,0.0000022854,0.0000022799,0.0000022737,0.0000022670, +0.0000022605,0.0000022530,0.0000022449,0.0000022376,0.0000022328, +0.0000022288,0.0000022250,0.0000022229,0.0000022236,0.0000022256, +0.0000022281,0.0000022295,0.0000022301,0.0000022307,0.0000022319, +0.0000022336,0.0000022356,0.0000022366,0.0000022358,0.0000022360, +0.0000022367,0.0000022358,0.0000022340,0.0000022318,0.0000022291, +0.0000022264,0.0000022225,0.0000022189,0.0000022169,0.0000022134, +0.0000022093,0.0000022047,0.0000022005,0.0000021961,0.0000021917, +0.0000021877,0.0000021837,0.0000021786,0.0000021744,0.0000021707, +0.0000021677,0.0000021653,0.0000021646,0.0000021656,0.0000021682, +0.0000021715,0.0000021749,0.0000021778,0.0000021800,0.0000021807, +0.0000021804,0.0000021788,0.0000021755,0.0000021708,0.0000021658, +0.0000021603,0.0000021544,0.0000021485,0.0000021422,0.0000021351, +0.0000021284,0.0000021227,0.0000021174,0.0000021128,0.0000021090, +0.0000021051,0.0000021014,0.0000020987,0.0000020970,0.0000020965, +0.0000020970,0.0000020985,0.0000021004,0.0000021023,0.0000021044, +0.0000021069,0.0000021087,0.0000021094,0.0000021093,0.0000021086, +0.0000021071,0.0000021054,0.0000021033,0.0000021007,0.0000020981, +0.0000020955,0.0000020933,0.0000020906,0.0000020866,0.0000020818, +0.0000020769,0.0000020735,0.0000020722,0.0000020720,0.0000020735, +0.0000020749,0.0000020760,0.0000020767,0.0000020767,0.0000020763, +0.0000020760,0.0000020755,0.0000020742,0.0000020732,0.0000020724, +0.0000020715,0.0000020704,0.0000020693,0.0000020686,0.0000020687, +0.0000020686,0.0000020682,0.0000020687,0.0000020698,0.0000020717, +0.0000020743,0.0000020773,0.0000020798,0.0000020805,0.0000020785, +0.0000020742,0.0000020695,0.0000020661,0.0000020658,0.0000020657, +0.0000020663,0.0000020673,0.0000020680,0.0000020683,0.0000020688, +0.0000020697,0.0000020714,0.0000020740,0.0000020775,0.0000020828, +0.0000020892,0.0000020938,0.0000020948,0.0000020921,0.0000020862, +0.0000020798,0.0000020757,0.0000020738,0.0000020736,0.0000020745, +0.0000020765,0.0000020785,0.0000020791,0.0000020784,0.0000020779, +0.0000020795,0.0000020828,0.0000020840,0.0000020827,0.0000020843, +0.0000020993,0.0000021239,0.0000021397,0.0000021419,0.0000021410, +0.0000021470,0.0000021586,0.0000021655,0.0000021658,0.0000021645, +0.0000021645,0.0000021646,0.0000021600,0.0000021504,0.0000021401, +0.0000021313,0.0000021243,0.0000021158,0.0000021076,0.0000021060, +0.0000021083,0.0000021058,0.0000020940,0.0000020801,0.0000020708, +0.0000020659,0.0000020641,0.0000020636,0.0000020634,0.0000020645, +0.0000020679,0.0000020731,0.0000020795,0.0000020857,0.0000020911, +0.0000020951,0.0000020969,0.0000020976,0.0000020975,0.0000020964, +0.0000020944,0.0000020916,0.0000020881,0.0000020840,0.0000020806, +0.0000020788,0.0000020781,0.0000020785,0.0000020803,0.0000020831, +0.0000020859,0.0000020879,0.0000020892,0.0000020917,0.0000020957, +0.0000020992,0.0000020996,0.0000020964,0.0000020908,0.0000020833, +0.0000020730,0.0000020623,0.0000020565,0.0000020556,0.0000020549, +0.0000020536,0.0000020531,0.0000020531,0.0000020533,0.0000020547, +0.0000020574,0.0000020599,0.0000020608,0.0000020605,0.0000020592, +0.0000020569,0.0000020535,0.0000020499,0.0000020465,0.0000020434, +0.0000020407,0.0000020390,0.0000020385,0.0000020385,0.0000020383, +0.0000020382,0.0000020392,0.0000020419,0.0000020463,0.0000020524, +0.0000020589,0.0000020644,0.0000020688,0.0000020718,0.0000020728, +0.0000020726,0.0000020724,0.0000020731,0.0000020754,0.0000020782, +0.0000020809,0.0000020833,0.0000020858,0.0000020885,0.0000020918, +0.0000020959,0.0000021001,0.0000021035,0.0000021022,0.0000020925, +0.0000020760,0.0000020622,0.0000020588,0.0000020603,0.0000020677, +0.0000020826,0.0000021048,0.0000021300,0.0000021511,0.0000021659, +0.0000021768,0.0000021855,0.0000021916,0.0000021946,0.0000021953, +0.0000021953,0.0000021954,0.0000021962,0.0000021981,0.0000022013, +0.0000022052,0.0000022085,0.0000022095,0.0000022072,0.0000021995, +0.0000021893,0.0000021844,0.0000021860,0.0000021891,0.0000021817, +0.0000021616,0.0000021417,0.0000021328,0.0000021323,0.0000021353, +0.0000021428,0.0000021546,0.0000021679,0.0000021788,0.0000021848, +0.0000021796,0.0000021833,0.0000021869,0.0000021900,0.0000021932, +0.0000021981,0.0000022005,0.0000021963,0.0000021817,0.0000021638, +0.0000021509,0.0000021451,0.0000021429,0.0000021404,0.0000021363, +0.0000021316,0.0000021287,0.0000021297,0.0000021315,0.0000021332, +0.0000021357,0.0000021382,0.0000021397,0.0000021403,0.0000021405, +0.0000021411,0.0000021424,0.0000021442,0.0000021465,0.0000021490, +0.0000021517,0.0000021557,0.0000021585,0.0000021602,0.0000021614, +0.0000021624,0.0000021630,0.0000021633,0.0000021637,0.0000021644, +0.0000021646,0.0000021652,0.0000021657,0.0000021659,0.0000021647, +0.0000021622,0.0000021597,0.0000021581,0.0000021572,0.0000021567, +0.0000021554,0.0000021536,0.0000021519,0.0000021500,0.0000021480, +0.0000021461,0.0000021448,0.0000021437,0.0000021430,0.0000021428, +0.0000021429,0.0000021432,0.0000021432,0.0000021434,0.0000021439, +0.0000021447,0.0000021454,0.0000021460,0.0000021470,0.0000021482, +0.0000021506,0.0000021540,0.0000021576,0.0000021602,0.0000021627, +0.0000021647,0.0000021657,0.0000021656,0.0000021644,0.0000021626, +0.0000021613,0.0000021611,0.0000021619,0.0000021629,0.0000021635, +0.0000021645,0.0000021665,0.0000021685,0.0000021705,0.0000021729, +0.0000021762,0.0000021791,0.0000021817,0.0000021837,0.0000021826, +0.0000021796,0.0000021758,0.0000021721,0.0000021698,0.0000021695, +0.0000021697,0.0000021704,0.0000021723,0.0000021746,0.0000021758, +0.0000021757,0.0000021746,0.0000021729,0.0000021702,0.0000021661, +0.0000021606,0.0000021554,0.0000021515,0.0000021500,0.0000021520, +0.0000021553,0.0000021588,0.0000021627,0.0000021665,0.0000021690, +0.0000021709,0.0000021730,0.0000021746,0.0000021756,0.0000021760, +0.0000021759,0.0000021751,0.0000021741,0.0000021732,0.0000021721, +0.0000021710,0.0000021698,0.0000021695,0.0000021711,0.0000021750, +0.0000021789,0.0000021817,0.0000021836,0.0000021856,0.0000021879, +0.0000021907,0.0000021914,0.0000021886,0.0000021831,0.0000021767, +0.0000021706,0.0000021653,0.0000021612,0.0000021576,0.0000021536, +0.0000021509,0.0000021491,0.0000021466,0.0000021438,0.0000021429, +0.0000021435,0.0000021440,0.0000021455,0.0000021495,0.0000021546, +0.0000021610,0.0000021687,0.0000021780,0.0000021886,0.0000021995, +0.0000022091,0.0000022164,0.0000022207,0.0000022230,0.0000022265, +0.0000022341,0.0000022461,0.0000022599,0.0000022718,0.0000022798, +0.0000022834,0.0000022842,0.0000022841,0.0000022847,0.0000022877, +0.0000022929,0.0000022984,0.0000023026,0.0000023045,0.0000023045, +0.0000023022,0.0000022974,0.0000022912,0.0000022859,0.0000022832, +0.0000022822,0.0000022826,0.0000022839,0.0000022859,0.0000022880, +0.0000022892,0.0000022904,0.0000022912,0.0000022907,0.0000022886, +0.0000022852,0.0000022812,0.0000022768,0.0000022727,0.0000022707, +0.0000022703,0.0000022717,0.0000022766,0.0000022839,0.0000022925, +0.0000023010,0.0000023080,0.0000023109,0.0000023124,0.0000023119, +0.0000023108,0.0000023104,0.0000023108,0.0000023112,0.0000023115, +0.0000023112,0.0000023102,0.0000023093,0.0000023088,0.0000023087, +0.0000023090,0.0000023095,0.0000023103,0.0000023109,0.0000023113, +0.0000023114,0.0000023115,0.0000023116,0.0000023116,0.0000023113, +0.0000023107,0.0000023097,0.0000023085,0.0000023072,0.0000023057, +0.0000023040,0.0000023028,0.0000023025,0.0000023024,0.0000023022, +0.0000023021,0.0000023021,0.0000023023,0.0000023032,0.0000023054, +0.0000023084,0.0000023112,0.0000023130,0.0000023133,0.0000023121, +0.0000023088,0.0000023040,0.0000022987,0.0000022935,0.0000022887, +0.0000022848,0.0000022823,0.0000022808,0.0000022799,0.0000022797, +0.0000022806,0.0000022820,0.0000022831,0.0000022837,0.0000022842, +0.0000022834,0.0000022819,0.0000022799,0.0000022774,0.0000022746, +0.0000022724,0.0000022711,0.0000022700,0.0000022690,0.0000022685, +0.0000022686,0.0000022687,0.0000022690,0.0000022694,0.0000022693, +0.0000022693,0.0000022688,0.0000022675,0.0000022657,0.0000022635, +0.0000022608,0.0000022575,0.0000022539,0.0000022502,0.0000022461, +0.0000022415,0.0000022365,0.0000022326,0.0000022305,0.0000022290, +0.0000022276,0.0000022259,0.0000022235,0.0000022194,0.0000022130, +0.0000022039,0.0000021937,0.0000021852,0.0000021796,0.0000021768, +0.0000021747,0.0000021721,0.0000021691,0.0000021669,0.0000021649, +0.0000021628,0.0000021605,0.0000021579,0.0000021554,0.0000021539, +0.0000021530,0.0000021519,0.0000021505,0.0000021483,0.0000021452, +0.0000021406,0.0000021355,0.0000021312,0.0000021279,0.0000021259, +0.0000021247,0.0000021239,0.0000021229,0.0000021215,0.0000021196, +0.0000021175,0.0000021152,0.0000021122,0.0000021077,0.0000021024, +0.0000020973,0.0000020939,0.0000020917,0.0000020902,0.0000020904, +0.0000020921,0.0000020954,0.0000021023,0.0000021178,0.0000021437, +0.0000021723,0.0000021915,0.0000021969,0.0000021967,0.0000021975, +0.0000022029,0.0000022100,0.0000022150,0.0000022174,0.0000022187, +0.0000022204,0.0000022223,0.0000022234,0.0000022231,0.0000022204, +0.0000022159,0.0000022103,0.0000022046,0.0000021994,0.0000021948, +0.0000021920,0.0000021920,0.0000021966,0.0000022057,0.0000022168, +0.0000022264,0.0000022322,0.0000022346,0.0000022347,0.0000022342, +0.0000022350,0.0000022367,0.0000022395,0.0000022432,0.0000022469, +0.0000022499,0.0000022519,0.0000022529,0.0000022529,0.0000022525, +0.0000022521,0.0000022527,0.0000022555,0.0000022606,0.0000022660, +0.0000022682,0.0000022675,0.0000022657,0.0000022630,0.0000022585, +0.0000022534,0.0000022490,0.0000022459,0.0000022418,0.0000022361, +0.0000022337,0.0000022350,0.0000022394,0.0000022431,0.0000022435, +0.0000022382,0.0000022248,0.0000022155,0.0000022168,0.0000022239, +0.0000022300,0.0000022315,0.0000022469,0.0000022738,0.0000022849, +0.0000022954,0.0000023067,0.0000023172,0.0000023211,0.0000023169, +0.0000023050,0.0000022819,0.0000022638,0.0000022565,0.0000022523, +0.0000022445,0.0000022383,0.0000022325,0.0000022369,0.0000022508, +0.0000022649,0.0000022799,0.0000022909,0.0000022955,0.0000022977, +0.0000022953,0.0000022885,0.0000022854,0.0000022883,0.0000022930, +0.0000022956,0.0000022979,0.0000023006,0.0000023113,0.0000023277, +0.0000023399,0.0000023484,0.0000023531,0.0000023473,0.0000023355, +0.0000023280,0.0000023188,0.0000023125,0.0000023124,0.0000023138, +0.0000023139,0.0000023120,0.0000023088,0.0000023062,0.0000023061, +0.0000023076,0.0000023100,0.0000023124,0.0000023138,0.0000023146, +0.0000023168,0.0000023200,0.0000023217,0.0000023211,0.0000023190, +0.0000023158,0.0000023115,0.0000023068,0.0000023023,0.0000022980, +0.0000022936,0.0000022901,0.0000022871,0.0000022844,0.0000022838, +0.0000022847,0.0000022861,0.0000022893,0.0000022932,0.0000022952, +0.0000022968,0.0000022994,0.0000023022,0.0000023084,0.0000023158, +0.0000023166,0.0000023115,0.0000023079,0.0000023072,0.0000023004, +0.0000022842,0.0000022630,0.0000022302,0.0000022140,0.0000022233, +0.0000022255,0.0000022175,0.0000022208,0.0000022268,0.0000022049, +0.0000021713,0.0000021684,0.0000021837,0.0000021966,0.0000022060, +0.0000022148,0.0000022219,0.0000022266,0.0000022317,0.0000022370, +0.0000022371,0.0000022310,0.0000022233,0.0000022188,0.0000022179, +0.0000022192,0.0000022232,0.0000022277,0.0000022301,0.0000022304, +0.0000022313,0.0000022358,0.0000022447,0.0000022555,0.0000022641, +0.0000022675,0.0000022648,0.0000022584,0.0000022505,0.0000022383, +0.0000022207,0.0000022048,0.0000021975,0.0000021983,0.0000022039, +0.0000022085,0.0000022097,0.0000022134,0.0000022229,0.0000022342, +0.0000022426,0.0000022480,0.0000022531,0.0000022575,0.0000022591, +0.0000022583,0.0000022564,0.0000022526,0.0000022488,0.0000022468, +0.0000022405,0.0000022308,0.0000022255,0.0000022273,0.0000022315, +0.0000022328,0.0000022328,0.0000022347,0.0000022380,0.0000022397, +0.0000022404,0.0000022441,0.0000022509,0.0000022582,0.0000022640, +0.0000022680,0.0000022704,0.0000022717,0.0000022723,0.0000022721, +0.0000022720,0.0000022720,0.0000022716,0.0000022709,0.0000022702, +0.0000022695,0.0000022686,0.0000022677,0.0000022663,0.0000022655, +0.0000022658,0.0000022680,0.0000022719,0.0000022768,0.0000022831, +0.0000022895,0.0000022946,0.0000022980,0.0000023000,0.0000023011, +0.0000023016,0.0000023027,0.0000023053,0.0000023092,0.0000023141, +0.0000023200,0.0000023264,0.0000023321,0.0000023361,0.0000023380, +0.0000023385,0.0000023364,0.0000023343,0.0000023302,0.0000023258, +0.0000023221,0.0000023195,0.0000023185,0.0000023188,0.0000023189, +0.0000023198,0.0000023217,0.0000023260,0.0000023321,0.0000023393, +0.0000023466,0.0000023521,0.0000023551,0.0000023556,0.0000023544, +0.0000023525,0.0000023503,0.0000023508,0.0000023543,0.0000023580, +0.0000023588,0.0000023574,0.0000023555,0.0000023538,0.0000023510, +0.0000023475,0.0000023458,0.0000023461,0.0000023481,0.0000023512, +0.0000023544,0.0000023568,0.0000023585,0.0000023597,0.0000023602, +0.0000023602,0.0000023599,0.0000023589,0.0000023576,0.0000023571, +0.0000023576,0.0000023586,0.0000023590,0.0000023594,0.0000023608, +0.0000023641,0.0000023688,0.0000023735,0.0000023766,0.0000023782, +0.0000023789,0.0000023784,0.0000023775,0.0000023776,0.0000023787, +0.0000023808,0.0000023832,0.0000023856,0.0000023875,0.0000023886, +0.0000023888,0.0000023881,0.0000023859,0.0000023823,0.0000023772, +0.0000023711,0.0000023645,0.0000023578,0.0000023514,0.0000023455, +0.0000023404,0.0000023358,0.0000023309,0.0000023256,0.0000023202, +0.0000023150,0.0000023105,0.0000023072,0.0000023053,0.0000023043, +0.0000023031,0.0000023006,0.0000022970,0.0000022938,0.0000022915, +0.0000022897,0.0000022882,0.0000022875,0.0000022873,0.0000022861, +0.0000022827,0.0000022783,0.0000022754,0.0000022763,0.0000022799, +0.0000022825,0.0000022829,0.0000022815,0.0000022801,0.0000022798, +0.0000022802,0.0000022797,0.0000022774,0.0000022739,0.0000022698, +0.0000022651,0.0000022601,0.0000022551,0.0000022502,0.0000022455, +0.0000022413,0.0000022376,0.0000022348,0.0000022329,0.0000022311, +0.0000022290,0.0000022266,0.0000022237,0.0000022205,0.0000022178, +0.0000022151,0.0000022124,0.0000022101,0.0000022086,0.0000022078, +0.0000022076,0.0000022082,0.0000022087,0.0000022082,0.0000022066, +0.0000022053,0.0000022048,0.0000022042,0.0000022038,0.0000022038, +0.0000022043,0.0000022051,0.0000022063,0.0000022082,0.0000022108, +0.0000022137,0.0000022169,0.0000022199,0.0000022220,0.0000022245, +0.0000022255,0.0000022261,0.0000022280,0.0000022300,0.0000022316, +0.0000022333,0.0000022349,0.0000022364,0.0000022374,0.0000022375, +0.0000022365,0.0000022351,0.0000022336,0.0000022322,0.0000022308, +0.0000022291,0.0000022273,0.0000022253,0.0000022227,0.0000022198, +0.0000022178,0.0000022173,0.0000022192,0.0000022235,0.0000022286, +0.0000022323,0.0000022343,0.0000022344,0.0000022339,0.0000022348, +0.0000022375,0.0000022411,0.0000022448,0.0000022480,0.0000022503, +0.0000022515,0.0000022512,0.0000022492,0.0000022443,0.0000022369, +0.0000022220,0.0000022055,0.0000021966,0.0000021961,0.0000021969, +0.0000021969,0.0000021976,0.0000022007,0.0000022048,0.0000022096, +0.0000022169,0.0000022267,0.0000022377,0.0000022495,0.0000022608, +0.0000022716,0.0000022797,0.0000022823,0.0000022815,0.0000022787, +0.0000022769,0.0000022778,0.0000022794,0.0000022801,0.0000022795, +0.0000022777,0.0000022868,0.0000023131,0.0000023305,0.0000023341, +0.0000023292,0.0000023106,0.0000022945,0.0000022839,0.0000022630, +0.0000022376,0.0000022272,0.0000022280,0.0000022307,0.0000022308, +0.0000022267,0.0000022198,0.0000022127,0.0000022055,0.0000021984, +0.0000021926,0.0000021890,0.0000021870,0.0000021847,0.0000021834, +0.0000021860,0.0000021939,0.0000022049,0.0000022143,0.0000022199, +0.0000022232,0.0000022241,0.0000022257,0.0000022314,0.0000022413, +0.0000022498,0.0000022531,0.0000022513,0.0000022417,0.0000022259, +0.0000022131,0.0000022102,0.0000022145,0.0000022227,0.0000022298, +0.0000022347,0.0000022395,0.0000022436,0.0000022448,0.0000022441, +0.0000022437,0.0000022452,0.0000022480,0.0000022510,0.0000022543, +0.0000022585,0.0000022639,0.0000022696,0.0000022742,0.0000022766, +0.0000022770,0.0000022743,0.0000022679,0.0000022590,0.0000022497, +0.0000022405,0.0000022295,0.0000022137,0.0000021940,0.0000021769, +0.0000021699,0.0000021739,0.0000021927,0.0000022155,0.0000022249, +0.0000022191,0.0000022138,0.0000022276,0.0000022628,0.0000022897, +0.0000022832,0.0000022500,0.0000022167,0.0000022017,0.0000022003, +0.0000021988,0.0000021914,0.0000021793,0.0000021674,0.0000021602, +0.0000021587,0.0000021617,0.0000021651,0.0000021672,0.0000021687, +0.0000021703,0.0000021708,0.0000021694,0.0000021662,0.0000021612, +0.0000021555,0.0000021498,0.0000021446,0.0000021402,0.0000021369, +0.0000021348,0.0000021342,0.0000021327,0.0000021295,0.0000021273, +0.0000021265,0.0000021274,0.0000021308,0.0000021358,0.0000021400, +0.0000021433,0.0000021462,0.0000021488,0.0000021524,0.0000021578, +0.0000021649,0.0000021738,0.0000021844,0.0000021959,0.0000022070, +0.0000022155,0.0000022205,0.0000022237,0.0000022276,0.0000022331, +0.0000022388,0.0000022438,0.0000022495,0.0000022561,0.0000022606, +0.0000022613,0.0000022594,0.0000022582,0.0000022588,0.0000022607, +0.0000022608,0.0000022541,0.0000022383,0.0000022209,0.0000022085, +0.0000022004,0.0000021909,0.0000021777,0.0000021621,0.0000021467, +0.0000021328,0.0000021200,0.0000021067,0.0000020941,0.0000020849, +0.0000020807,0.0000020804,0.0000020823,0.0000020862,0.0000020901, +0.0000020926,0.0000020939,0.0000020959,0.0000020998,0.0000021063, +0.0000021161,0.0000021288,0.0000021400,0.0000021453,0.0000021437, +0.0000021374,0.0000021269,0.0000021168,0.0000021101,0.0000021072, +0.0000021072,0.0000021081,0.0000021096,0.0000021135,0.0000021232, +0.0000021388,0.0000021543,0.0000021611,0.0000021593,0.0000021499, +0.0000021388,0.0000021287,0.0000021200,0.0000021127,0.0000021077, +0.0000021039,0.0000021009,0.0000020995,0.0000021009,0.0000021059, +0.0000021186,0.0000021378,0.0000021576,0.0000021725,0.0000021815, +0.0000021866,0.0000021899,0.0000021918,0.0000021918,0.0000021900, +0.0000021890,0.0000021933,0.0000022055,0.0000022244,0.0000022449, +0.0000022634,0.0000022779,0.0000022860,0.0000022869,0.0000022854, +0.0000022844,0.0000022875,0.0000022973,0.0000023131,0.0000023330, +0.0000023553,0.0000023771,0.0000023958,0.0000024104,0.0000024216, +0.0000024302,0.0000024372,0.0000024438,0.0000024496,0.0000024534, +0.0000024549,0.0000024534,0.0000024492,0.0000024460,0.0000024426, +0.0000024404,0.0000024393,0.0000024377,0.0000024348,0.0000024301, +0.0000024238,0.0000024168,0.0000024105,0.0000024058,0.0000024033, +0.0000024027,0.0000024027,0.0000024043,0.0000024058,0.0000024062, +0.0000024052,0.0000024026,0.0000023993,0.0000023970,0.0000023969, +0.0000024002,0.0000024076,0.0000024166,0.0000024234,0.0000024259, +0.0000024258,0.0000024235,0.0000024187,0.0000024117,0.0000024044, +0.0000023980,0.0000023908,0.0000023797,0.0000023652,0.0000023501, +0.0000023347,0.0000023183,0.0000023033,0.0000022917,0.0000022835, +0.0000022794,0.0000022791,0.0000022805,0.0000022816,0.0000022812, +0.0000022767,0.0000022682,0.0000022582,0.0000022482,0.0000022388, +0.0000022305,0.0000022223,0.0000022128,0.0000022016,0.0000021909, +0.0000021840,0.0000021817,0.0000021832,0.0000021872,0.0000021928, +0.0000021992,0.0000022063,0.0000022132,0.0000022181,0.0000022204, +0.0000022207,0.0000022194,0.0000022177,0.0000022174,0.0000022200, +0.0000022259,0.0000022352,0.0000022484,0.0000022651,0.0000022831, +0.0000022992,0.0000023122,0.0000023209,0.0000023251,0.0000023239, +0.0000023203,0.0000023163,0.0000023106,0.0000023043,0.0000022981, +0.0000022921,0.0000022874,0.0000022849,0.0000022854,0.0000022865, +0.0000022889,0.0000022911,0.0000022923,0.0000022929,0.0000022916, +0.0000022878,0.0000022806,0.0000022715,0.0000022619,0.0000022532, +0.0000022441,0.0000022354,0.0000022288,0.0000022238,0.0000022189, +0.0000022144,0.0000022117,0.0000022106,0.0000022110,0.0000022119, +0.0000022127,0.0000022141,0.0000022160,0.0000022191,0.0000022232, +0.0000022277,0.0000022311,0.0000022339,0.0000022367,0.0000022368, +0.0000022368,0.0000022361,0.0000022345,0.0000022323,0.0000022287, +0.0000022248,0.0000022213,0.0000022172,0.0000022119,0.0000022059, +0.0000022005,0.0000021952,0.0000021903,0.0000021862,0.0000021828, +0.0000021792,0.0000021754,0.0000021725,0.0000021702,0.0000021692, +0.0000021693,0.0000021703,0.0000021719,0.0000021736,0.0000021752, +0.0000021764,0.0000021761,0.0000021741,0.0000021703,0.0000021650, +0.0000021585,0.0000021507,0.0000021426,0.0000021350,0.0000021283, +0.0000021227,0.0000021180,0.0000021137,0.0000021102,0.0000021078, +0.0000021055,0.0000021032,0.0000021014,0.0000020992,0.0000020968, +0.0000020948,0.0000020931,0.0000020922,0.0000020925,0.0000020941, +0.0000020967,0.0000020992,0.0000021016,0.0000021037,0.0000021054, +0.0000021064,0.0000021067,0.0000021065,0.0000021055,0.0000021039, +0.0000021023,0.0000021006,0.0000020985,0.0000020963,0.0000020945, +0.0000020928,0.0000020908,0.0000020872,0.0000020830,0.0000020791, +0.0000020757,0.0000020732,0.0000020718,0.0000020714,0.0000020716, +0.0000020730,0.0000020744,0.0000020752,0.0000020758,0.0000020760, +0.0000020750,0.0000020732,0.0000020710,0.0000020688,0.0000020666, +0.0000020649,0.0000020638,0.0000020636,0.0000020638,0.0000020635, +0.0000020637,0.0000020643,0.0000020644,0.0000020645,0.0000020654, +0.0000020677,0.0000020712,0.0000020748,0.0000020777,0.0000020774, +0.0000020759,0.0000020725,0.0000020684,0.0000020649,0.0000020641, +0.0000020638,0.0000020649,0.0000020668,0.0000020687,0.0000020700, +0.0000020706,0.0000020708,0.0000020716,0.0000020748,0.0000020810, +0.0000020874,0.0000020902,0.0000020887,0.0000020827,0.0000020758, +0.0000020705,0.0000020679,0.0000020675,0.0000020688,0.0000020715, +0.0000020746,0.0000020769,0.0000020772,0.0000020761,0.0000020764, +0.0000020787,0.0000020797,0.0000020789,0.0000020820,0.0000021002, +0.0000021252,0.0000021385,0.0000021392,0.0000021402,0.0000021495, +0.0000021609,0.0000021653,0.0000021649,0.0000021645,0.0000021645, +0.0000021617,0.0000021536,0.0000021436,0.0000021347,0.0000021268, +0.0000021168,0.0000021069,0.0000021046,0.0000021067,0.0000021024, +0.0000020871,0.0000020708,0.0000020616,0.0000020574,0.0000020551, +0.0000020542,0.0000020537,0.0000020542,0.0000020568,0.0000020614, +0.0000020670,0.0000020725,0.0000020783,0.0000020835,0.0000020863, +0.0000020872,0.0000020875,0.0000020872,0.0000020862,0.0000020846, +0.0000020830,0.0000020804,0.0000020773,0.0000020750,0.0000020738, +0.0000020737,0.0000020749,0.0000020774,0.0000020807,0.0000020836, +0.0000020854,0.0000020866,0.0000020884,0.0000020916,0.0000020944, +0.0000020948,0.0000020917,0.0000020864,0.0000020799,0.0000020709, +0.0000020606,0.0000020544,0.0000020529,0.0000020521,0.0000020504, +0.0000020494,0.0000020494,0.0000020497,0.0000020512,0.0000020537, +0.0000020556,0.0000020560,0.0000020554,0.0000020539,0.0000020512, +0.0000020478,0.0000020442,0.0000020404,0.0000020369,0.0000020339, +0.0000020315,0.0000020304,0.0000020311,0.0000020327,0.0000020340, +0.0000020353,0.0000020370,0.0000020396,0.0000020437,0.0000020488, +0.0000020539,0.0000020584,0.0000020620,0.0000020638,0.0000020638, +0.0000020631,0.0000020628,0.0000020643,0.0000020678,0.0000020720, +0.0000020753,0.0000020776,0.0000020791,0.0000020806,0.0000020834, +0.0000020881,0.0000020937,0.0000020982,0.0000020976,0.0000020906, +0.0000020779,0.0000020648,0.0000020590,0.0000020584,0.0000020602, +0.0000020666,0.0000020792,0.0000020984,0.0000021215,0.0000021431, +0.0000021594,0.0000021708,0.0000021802,0.0000021881,0.0000021931, +0.0000021948,0.0000021952,0.0000021960,0.0000021978,0.0000022005, +0.0000022036,0.0000022067,0.0000022087,0.0000022077,0.0000021999, +0.0000021868,0.0000021779,0.0000021792,0.0000021857,0.0000021850, +0.0000021702,0.0000021476,0.0000021323,0.0000021287,0.0000021304, +0.0000021380,0.0000021497,0.0000021626,0.0000021733,0.0000021682, +0.0000021750,0.0000021790,0.0000021826,0.0000021863,0.0000021891, +0.0000021921,0.0000021948,0.0000021943,0.0000021873,0.0000021741, +0.0000021602,0.0000021514,0.0000021493,0.0000021502,0.0000021517, +0.0000021527,0.0000021531,0.0000021531,0.0000021530,0.0000021527, +0.0000021521,0.0000021511,0.0000021505,0.0000021510,0.0000021527, +0.0000021545,0.0000021564,0.0000021584,0.0000021611,0.0000021643, +0.0000021668,0.0000021685,0.0000021696,0.0000021704,0.0000021712, +0.0000021716,0.0000021718,0.0000021722,0.0000021732,0.0000021745, +0.0000021759,0.0000021781,0.0000021794,0.0000021788,0.0000021762, +0.0000021732,0.0000021715,0.0000021711,0.0000021713,0.0000021710, +0.0000021697,0.0000021682,0.0000021671,0.0000021663,0.0000021656, +0.0000021648,0.0000021643,0.0000021638,0.0000021631,0.0000021624, +0.0000021610,0.0000021586,0.0000021562,0.0000021541,0.0000021520, +0.0000021501,0.0000021489,0.0000021482,0.0000021479,0.0000021488, +0.0000021501,0.0000021530,0.0000021566,0.0000021606,0.0000021647, +0.0000021682,0.0000021700,0.0000021704,0.0000021704,0.0000021692, +0.0000021682,0.0000021677,0.0000021672,0.0000021665,0.0000021661, +0.0000021663,0.0000021673,0.0000021684,0.0000021700,0.0000021730, +0.0000021768,0.0000021801,0.0000021827,0.0000021840,0.0000021838, +0.0000021822,0.0000021810,0.0000021810,0.0000021817,0.0000021825, +0.0000021831,0.0000021838,0.0000021850,0.0000021857,0.0000021857, +0.0000021848,0.0000021834,0.0000021813,0.0000021780,0.0000021726, +0.0000021661,0.0000021599,0.0000021542,0.0000021515,0.0000021522, +0.0000021543,0.0000021570,0.0000021602,0.0000021632,0.0000021654, +0.0000021678,0.0000021706,0.0000021726,0.0000021734,0.0000021737, +0.0000021737,0.0000021734,0.0000021727,0.0000021719,0.0000021710, +0.0000021693,0.0000021672,0.0000021661,0.0000021666,0.0000021688, +0.0000021713,0.0000021739,0.0000021773,0.0000021824,0.0000021882, +0.0000021925,0.0000021937,0.0000021930,0.0000021907,0.0000021865, +0.0000021814,0.0000021763,0.0000021718,0.0000021673,0.0000021635, +0.0000021608,0.0000021583,0.0000021544,0.0000021502,0.0000021473, +0.0000021454,0.0000021445,0.0000021445,0.0000021455,0.0000021470, +0.0000021491,0.0000021514,0.0000021552,0.0000021623,0.0000021732, +0.0000021870,0.0000022014,0.0000022135,0.0000022215,0.0000022256, +0.0000022277,0.0000022311,0.0000022392,0.0000022522,0.0000022668, +0.0000022783,0.0000022840,0.0000022848,0.0000022840,0.0000022835, +0.0000022843,0.0000022874,0.0000022919,0.0000022962,0.0000022996, +0.0000023009,0.0000023003,0.0000022973,0.0000022930,0.0000022883, +0.0000022844,0.0000022826,0.0000022824,0.0000022836,0.0000022855, +0.0000022873,0.0000022889,0.0000022902,0.0000022911,0.0000022909, +0.0000022904,0.0000022895,0.0000022882,0.0000022865,0.0000022842, +0.0000022808,0.0000022769,0.0000022753,0.0000022741,0.0000022760, +0.0000022808,0.0000022888,0.0000022984,0.0000023073,0.0000023119, +0.0000023138,0.0000023136,0.0000023127,0.0000023120,0.0000023118, +0.0000023115,0.0000023105,0.0000023090,0.0000023075,0.0000023057, +0.0000023039,0.0000023027,0.0000023020,0.0000023017,0.0000023018, +0.0000023021,0.0000023030,0.0000023043,0.0000023055,0.0000023062, +0.0000023065,0.0000023064,0.0000023061,0.0000023055,0.0000023044, +0.0000023028,0.0000023014,0.0000023010,0.0000023010,0.0000023014, +0.0000023021,0.0000023034,0.0000023050,0.0000023068,0.0000023090, +0.0000023111,0.0000023123,0.0000023124,0.0000023106,0.0000023067, +0.0000023012,0.0000022947,0.0000022885,0.0000022831,0.0000022787, +0.0000022757,0.0000022747,0.0000022746,0.0000022752,0.0000022764, +0.0000022783,0.0000022798,0.0000022804,0.0000022802,0.0000022793, +0.0000022780,0.0000022768,0.0000022756,0.0000022743,0.0000022729, +0.0000022716,0.0000022706,0.0000022698,0.0000022690,0.0000022684, +0.0000022677,0.0000022669,0.0000022659,0.0000022653,0.0000022652, +0.0000022654,0.0000022657,0.0000022656,0.0000022653,0.0000022646, +0.0000022631,0.0000022603,0.0000022560,0.0000022508,0.0000022455, +0.0000022401,0.0000022349,0.0000022308,0.0000022283,0.0000022264, +0.0000022234,0.0000022194,0.0000022143,0.0000022071,0.0000021971, +0.0000021851,0.0000021749,0.0000021692,0.0000021668,0.0000021654, +0.0000021633,0.0000021610,0.0000021593,0.0000021580,0.0000021564, +0.0000021547,0.0000021525,0.0000021505,0.0000021495,0.0000021491, +0.0000021485,0.0000021467,0.0000021442,0.0000021411,0.0000021369, +0.0000021319,0.0000021268,0.0000021227,0.0000021198,0.0000021182, +0.0000021178,0.0000021179,0.0000021181,0.0000021179,0.0000021172, +0.0000021161,0.0000021141,0.0000021106,0.0000021062,0.0000021021, +0.0000020990,0.0000020963,0.0000020943,0.0000020942,0.0000020958, +0.0000020994,0.0000021058,0.0000021197,0.0000021441,0.0000021734, +0.0000021945,0.0000022016,0.0000022018,0.0000022017,0.0000022043, +0.0000022083,0.0000022111,0.0000022121,0.0000022120,0.0000022120, +0.0000022126,0.0000022134,0.0000022134,0.0000022120,0.0000022090, +0.0000022055,0.0000022027,0.0000022004,0.0000021978,0.0000021958, +0.0000021987,0.0000022081,0.0000022204,0.0000022302,0.0000022352, +0.0000022363,0.0000022356,0.0000022341,0.0000022313,0.0000022293, +0.0000022294,0.0000022316,0.0000022351,0.0000022399,0.0000022450, +0.0000022490,0.0000022522,0.0000022546,0.0000022558,0.0000022560, +0.0000022562,0.0000022567,0.0000022589,0.0000022634,0.0000022678, +0.0000022691,0.0000022672,0.0000022643,0.0000022592,0.0000022526, +0.0000022469,0.0000022432,0.0000022395,0.0000022350,0.0000022316, +0.0000022315,0.0000022338,0.0000022368,0.0000022385,0.0000022374, +0.0000022293,0.0000022186,0.0000022154,0.0000022198,0.0000022260, +0.0000022294,0.0000022350,0.0000022618,0.0000022799,0.0000022880, +0.0000022997,0.0000023110,0.0000023197,0.0000023188,0.0000023140, +0.0000022974,0.0000022778,0.0000022650,0.0000022583,0.0000022492, +0.0000022399,0.0000022313,0.0000022279,0.0000022378,0.0000022509, +0.0000022636,0.0000022793,0.0000022906,0.0000022963,0.0000022991, +0.0000022971,0.0000022907,0.0000022878,0.0000022899,0.0000022931, +0.0000022939,0.0000022952,0.0000022979,0.0000023072,0.0000023213, +0.0000023328,0.0000023410,0.0000023464,0.0000023443,0.0000023331, +0.0000023251,0.0000023166,0.0000023067,0.0000023029,0.0000023036, +0.0000023062,0.0000023074,0.0000023053,0.0000023028,0.0000023025, +0.0000023051,0.0000023089,0.0000023132,0.0000023171,0.0000023199, +0.0000023228,0.0000023256,0.0000023264,0.0000023237,0.0000023197, +0.0000023152,0.0000023098,0.0000023049,0.0000023013,0.0000022984, +0.0000022950,0.0000022916,0.0000022883,0.0000022854,0.0000022842, +0.0000022845,0.0000022862,0.0000022892,0.0000022933,0.0000022958, +0.0000022971,0.0000022996,0.0000023024,0.0000023073,0.0000023149, +0.0000023178,0.0000023133,0.0000023082,0.0000023072,0.0000023042, +0.0000022911,0.0000022726,0.0000022444,0.0000022154,0.0000022173, +0.0000022264,0.0000022203,0.0000022170,0.0000022281,0.0000022244, +0.0000021915,0.0000021704,0.0000021769,0.0000021907,0.0000022002, +0.0000022088,0.0000022165,0.0000022218,0.0000022253,0.0000022299, +0.0000022337,0.0000022324,0.0000022264,0.0000022200,0.0000022168, +0.0000022161,0.0000022172,0.0000022212,0.0000022264,0.0000022295, +0.0000022297,0.0000022297,0.0000022325,0.0000022402,0.0000022497, +0.0000022572,0.0000022614,0.0000022616,0.0000022576,0.0000022511, +0.0000022406,0.0000022241,0.0000022067,0.0000021966,0.0000021948, +0.0000022005,0.0000022067,0.0000022096,0.0000022135,0.0000022232, +0.0000022356,0.0000022447,0.0000022499,0.0000022548,0.0000022594, +0.0000022615,0.0000022611,0.0000022593,0.0000022552,0.0000022500, +0.0000022467,0.0000022401,0.0000022292,0.0000022216,0.0000022218, +0.0000022261,0.0000022290,0.0000022299,0.0000022311,0.0000022338, +0.0000022368,0.0000022383,0.0000022392,0.0000022403,0.0000022422, +0.0000022450,0.0000022479,0.0000022502,0.0000022523,0.0000022545, +0.0000022564,0.0000022581,0.0000022590,0.0000022588,0.0000022583, +0.0000022577,0.0000022565,0.0000022550,0.0000022533,0.0000022512, +0.0000022495,0.0000022484,0.0000022489,0.0000022513,0.0000022557, +0.0000022628,0.0000022717,0.0000022804,0.0000022877,0.0000022932, +0.0000022968,0.0000022984,0.0000022986,0.0000022981,0.0000022976, +0.0000022982,0.0000023007,0.0000023056,0.0000023122,0.0000023192, +0.0000023254,0.0000023305,0.0000023338,0.0000023350,0.0000023336, +0.0000023322,0.0000023297,0.0000023273,0.0000023251,0.0000023235, +0.0000023222,0.0000023208,0.0000023202,0.0000023205,0.0000023234, +0.0000023290,0.0000023363,0.0000023434,0.0000023490,0.0000023523, +0.0000023536,0.0000023529,0.0000023533,0.0000023556,0.0000023604, +0.0000023633,0.0000023632,0.0000023606,0.0000023568,0.0000023524, +0.0000023480,0.0000023440,0.0000023431,0.0000023439,0.0000023467, +0.0000023508,0.0000023548,0.0000023576,0.0000023594,0.0000023604, +0.0000023604,0.0000023598,0.0000023589,0.0000023575,0.0000023555, +0.0000023539,0.0000023536,0.0000023543,0.0000023549,0.0000023553, +0.0000023564,0.0000023590,0.0000023628,0.0000023666,0.0000023693, +0.0000023710,0.0000023725,0.0000023737,0.0000023741,0.0000023740, +0.0000023742,0.0000023750,0.0000023764,0.0000023780,0.0000023793, +0.0000023798,0.0000023796,0.0000023786,0.0000023767,0.0000023741, +0.0000023705,0.0000023659,0.0000023605,0.0000023549,0.0000023491, +0.0000023435,0.0000023380,0.0000023325,0.0000023268,0.0000023212, +0.0000023161,0.0000023121,0.0000023090,0.0000023068,0.0000023054, +0.0000023041,0.0000023020,0.0000022987,0.0000022954,0.0000022929, +0.0000022910,0.0000022894,0.0000022889,0.0000022893,0.0000022896, +0.0000022880,0.0000022844,0.0000022812,0.0000022805,0.0000022831, +0.0000022861,0.0000022869,0.0000022859,0.0000022844,0.0000022837, +0.0000022831,0.0000022810,0.0000022766,0.0000022711,0.0000022658, +0.0000022611,0.0000022560,0.0000022499,0.0000022439,0.0000022383, +0.0000022337,0.0000022304,0.0000022285,0.0000022276,0.0000022273, +0.0000022266,0.0000022252,0.0000022230,0.0000022203,0.0000022166, +0.0000022125,0.0000022086,0.0000022044,0.0000022001,0.0000021961, +0.0000021929,0.0000021905,0.0000021893,0.0000021889,0.0000021882, +0.0000021870,0.0000021859,0.0000021856,0.0000021855,0.0000021851, +0.0000021850,0.0000021854,0.0000021861,0.0000021871,0.0000021888, +0.0000021915,0.0000021953,0.0000021998,0.0000022046,0.0000022097, +0.0000022146,0.0000022190,0.0000022224,0.0000022254,0.0000022283, +0.0000022308,0.0000022330,0.0000022349,0.0000022365,0.0000022379, +0.0000022385,0.0000022381,0.0000022372,0.0000022354,0.0000022336, +0.0000022316,0.0000022298,0.0000022280,0.0000022258,0.0000022232, +0.0000022199,0.0000022166,0.0000022139,0.0000022135,0.0000022163, +0.0000022214,0.0000022266,0.0000022311,0.0000022332,0.0000022328, +0.0000022317,0.0000022317,0.0000022339,0.0000022381,0.0000022429, +0.0000022471,0.0000022498,0.0000022499,0.0000022473,0.0000022432, +0.0000022405,0.0000022352,0.0000022234,0.0000022077,0.0000021985, +0.0000021969,0.0000021971,0.0000021970,0.0000021976,0.0000021996, +0.0000022026,0.0000022074,0.0000022149,0.0000022240,0.0000022336, +0.0000022434,0.0000022549,0.0000022684,0.0000022788,0.0000022826, +0.0000022820,0.0000022782,0.0000022753,0.0000022758,0.0000022775, +0.0000022780,0.0000022762,0.0000022756,0.0000022912,0.0000023178, +0.0000023306,0.0000023321,0.0000023248,0.0000023065,0.0000022916, +0.0000022746,0.0000022451,0.0000022230,0.0000022210,0.0000022254, +0.0000022289,0.0000022281,0.0000022234,0.0000022174,0.0000022105, +0.0000022030,0.0000021971,0.0000021928,0.0000021893,0.0000021858, +0.0000021844,0.0000021879,0.0000021968,0.0000022073,0.0000022141, +0.0000022171,0.0000022180,0.0000022175,0.0000022176,0.0000022230, +0.0000022340,0.0000022444,0.0000022493,0.0000022490,0.0000022434, +0.0000022306,0.0000022164,0.0000022105,0.0000022130,0.0000022222, +0.0000022321,0.0000022388,0.0000022439,0.0000022483,0.0000022501, +0.0000022496,0.0000022482,0.0000022481,0.0000022490,0.0000022502, +0.0000022515,0.0000022530,0.0000022551,0.0000022580,0.0000022617, +0.0000022660,0.0000022706,0.0000022738,0.0000022743,0.0000022726, +0.0000022667,0.0000022576,0.0000022476,0.0000022379,0.0000022265, +0.0000022102,0.0000021905,0.0000021743,0.0000021692,0.0000021749, +0.0000021952,0.0000022175,0.0000022246,0.0000022178,0.0000022153, +0.0000022328,0.0000022648,0.0000022830,0.0000022756,0.0000022420, +0.0000022113,0.0000021997,0.0000021980,0.0000021949,0.0000021866, +0.0000021743,0.0000021631,0.0000021582,0.0000021586,0.0000021620, +0.0000021652,0.0000021673,0.0000021682,0.0000021683,0.0000021679, +0.0000021659,0.0000021607,0.0000021537,0.0000021477,0.0000021430, +0.0000021397,0.0000021376,0.0000021371,0.0000021377,0.0000021366, +0.0000021339,0.0000021317,0.0000021304,0.0000021309,0.0000021339, +0.0000021382,0.0000021416,0.0000021445,0.0000021471,0.0000021501, +0.0000021542,0.0000021593,0.0000021652,0.0000021726,0.0000021818, +0.0000021924,0.0000022035,0.0000022127,0.0000022182,0.0000022215, +0.0000022254,0.0000022307,0.0000022361,0.0000022413,0.0000022476, +0.0000022546,0.0000022593,0.0000022598,0.0000022577,0.0000022562, +0.0000022573,0.0000022600,0.0000022602,0.0000022522,0.0000022345, +0.0000022163,0.0000022049,0.0000021973,0.0000021875,0.0000021737, +0.0000021581,0.0000021433,0.0000021300,0.0000021162,0.0000021005, +0.0000020850,0.0000020741,0.0000020694,0.0000020688,0.0000020700, +0.0000020738,0.0000020793,0.0000020847,0.0000020884,0.0000020906, +0.0000020932,0.0000020976,0.0000021042,0.0000021138,0.0000021260, +0.0000021368,0.0000021422,0.0000021405,0.0000021337,0.0000021223, +0.0000021114,0.0000021053,0.0000021029,0.0000021035,0.0000021053, +0.0000021077,0.0000021119,0.0000021210,0.0000021360,0.0000021519, +0.0000021604,0.0000021581,0.0000021505,0.0000021413,0.0000021326, +0.0000021244,0.0000021179,0.0000021136,0.0000021106,0.0000021079, +0.0000021048,0.0000021027,0.0000021048,0.0000021138,0.0000021292, +0.0000021475,0.0000021634,0.0000021743,0.0000021803,0.0000021837, +0.0000021856,0.0000021854,0.0000021837,0.0000021823,0.0000021860, +0.0000021977,0.0000022161,0.0000022366,0.0000022561,0.0000022723, +0.0000022829,0.0000022864,0.0000022861,0.0000022852,0.0000022869, +0.0000022938,0.0000023059,0.0000023224,0.0000023422,0.0000023634, +0.0000023830,0.0000023992,0.0000024120,0.0000024219,0.0000024297, +0.0000024364,0.0000024426,0.0000024480,0.0000024515,0.0000024532, +0.0000024551,0.0000024534,0.0000024514,0.0000024485,0.0000024457, +0.0000024431,0.0000024404,0.0000024368,0.0000024313,0.0000024244, +0.0000024172,0.0000024112,0.0000024068,0.0000024042,0.0000024030, +0.0000024030,0.0000024028,0.0000024010,0.0000023991,0.0000023968, +0.0000023952,0.0000023953,0.0000023979,0.0000024033,0.0000024111, +0.0000024189,0.0000024243,0.0000024260,0.0000024256,0.0000024230, +0.0000024176,0.0000024099,0.0000024021,0.0000023954,0.0000023871, +0.0000023754,0.0000023615,0.0000023470,0.0000023311,0.0000023145, +0.0000023004,0.0000022914,0.0000022872,0.0000022855,0.0000022845, +0.0000022842,0.0000022840,0.0000022812,0.0000022741,0.0000022639, +0.0000022530,0.0000022431,0.0000022349,0.0000022266,0.0000022168, +0.0000022054,0.0000021948,0.0000021874,0.0000021841,0.0000021839, +0.0000021858,0.0000021882,0.0000021913,0.0000021953,0.0000021999, +0.0000022040,0.0000022064,0.0000022066,0.0000022051,0.0000022027, +0.0000022011,0.0000022005,0.0000022001,0.0000022002,0.0000022024, +0.0000022078,0.0000022175,0.0000022305,0.0000022458,0.0000022624, +0.0000022783,0.0000022915,0.0000023012,0.0000023075,0.0000023102, +0.0000023081,0.0000023052,0.0000023023,0.0000022982,0.0000022940, +0.0000022913,0.0000022893,0.0000022888,0.0000022901,0.0000022909, +0.0000022919,0.0000022926,0.0000022920,0.0000022889,0.0000022823, +0.0000022724,0.0000022611,0.0000022501,0.0000022400,0.0000022315, +0.0000022242,0.0000022186,0.0000022131,0.0000022081,0.0000022035, +0.0000022003,0.0000021988,0.0000021981,0.0000021979,0.0000021984, +0.0000021999,0.0000022026,0.0000022067,0.0000022122,0.0000022180, +0.0000022241,0.0000022296,0.0000022336,0.0000022363,0.0000022361, +0.0000022354,0.0000022340,0.0000022317,0.0000022288,0.0000022248, +0.0000022196,0.0000022132,0.0000022061,0.0000021995,0.0000021935, +0.0000021884,0.0000021842,0.0000021805,0.0000021769,0.0000021737, +0.0000021711,0.0000021695,0.0000021687,0.0000021680,0.0000021670, +0.0000021655,0.0000021633,0.0000021602,0.0000021563,0.0000021513, +0.0000021454,0.0000021388,0.0000021324,0.0000021264,0.0000021209, +0.0000021163,0.0000021130,0.0000021114,0.0000021107,0.0000021095, +0.0000021077,0.0000021061,0.0000021042,0.0000021020,0.0000020998, +0.0000020973,0.0000020945,0.0000020921,0.0000020899,0.0000020879, +0.0000020870,0.0000020877,0.0000020903,0.0000020934,0.0000020966, +0.0000020998,0.0000021023,0.0000021039,0.0000021046,0.0000021048, +0.0000021044,0.0000021032,0.0000021016,0.0000020998,0.0000020979, +0.0000020959,0.0000020941,0.0000020929,0.0000020914,0.0000020888, +0.0000020858,0.0000020827,0.0000020814,0.0000020799,0.0000020775, +0.0000020750,0.0000020727,0.0000020717,0.0000020713,0.0000020714, +0.0000020722,0.0000020735,0.0000020740,0.0000020737,0.0000020729, +0.0000020712,0.0000020690,0.0000020676,0.0000020670,0.0000020663, +0.0000020661,0.0000020660,0.0000020663,0.0000020669,0.0000020668, +0.0000020661,0.0000020651,0.0000020637,0.0000020632,0.0000020631, +0.0000020659,0.0000020707,0.0000020757,0.0000020788,0.0000020793, +0.0000020756,0.0000020704,0.0000020661,0.0000020628,0.0000020622, +0.0000020638,0.0000020660,0.0000020686,0.0000020704,0.0000020704, +0.0000020691,0.0000020690,0.0000020729,0.0000020798,0.0000020848, +0.0000020844,0.0000020792,0.0000020718,0.0000020655,0.0000020622, +0.0000020618,0.0000020634,0.0000020664,0.0000020706,0.0000020743, +0.0000020752,0.0000020737,0.0000020731,0.0000020747,0.0000020758, +0.0000020757,0.0000020819,0.0000021041,0.0000021282,0.0000021377, +0.0000021378,0.0000021416,0.0000021528,0.0000021622,0.0000021647, +0.0000021646,0.0000021644,0.0000021622,0.0000021555,0.0000021460, +0.0000021367,0.0000021282,0.0000021171,0.0000021066,0.0000021035, +0.0000021049,0.0000020982,0.0000020798,0.0000020629,0.0000020554, +0.0000020528,0.0000020505,0.0000020486,0.0000020477,0.0000020478, +0.0000020497,0.0000020536,0.0000020583,0.0000020630,0.0000020682, +0.0000020739,0.0000020778,0.0000020791,0.0000020796,0.0000020800, +0.0000020798,0.0000020792,0.0000020787,0.0000020780,0.0000020765, +0.0000020746,0.0000020729,0.0000020718,0.0000020719,0.0000020735, +0.0000020762,0.0000020791,0.0000020813,0.0000020826,0.0000020835, +0.0000020852,0.0000020875,0.0000020892,0.0000020890,0.0000020860, +0.0000020810,0.0000020756,0.0000020686,0.0000020600,0.0000020538, +0.0000020517,0.0000020501,0.0000020476,0.0000020464,0.0000020467, +0.0000020474,0.0000020487,0.0000020502,0.0000020511,0.0000020510, +0.0000020503,0.0000020490,0.0000020470,0.0000020446,0.0000020418, +0.0000020385,0.0000020348,0.0000020312,0.0000020275,0.0000020240, +0.0000020227,0.0000020234,0.0000020256,0.0000020282,0.0000020310, +0.0000020340,0.0000020372,0.0000020406,0.0000020440,0.0000020474, +0.0000020504,0.0000020524,0.0000020533,0.0000020533,0.0000020532, +0.0000020536,0.0000020558,0.0000020602,0.0000020656,0.0000020698, +0.0000020716,0.0000020716,0.0000020715,0.0000020734,0.0000020786, +0.0000020857,0.0000020915,0.0000020916,0.0000020890,0.0000020812, +0.0000020710,0.0000020616,0.0000020578,0.0000020569,0.0000020580, +0.0000020626,0.0000020726,0.0000020889,0.0000021096,0.0000021308, +0.0000021489,0.0000021626,0.0000021735,0.0000021829,0.0000021901, +0.0000021941,0.0000021960,0.0000021979,0.0000022001,0.0000022022, +0.0000022046,0.0000022070,0.0000022066,0.0000021994,0.0000021856, +0.0000021743,0.0000021729,0.0000021796,0.0000021840,0.0000021761, +0.0000021543,0.0000021337,0.0000021261,0.0000021266,0.0000021337, +0.0000021450,0.0000021576,0.0000021519,0.0000021625,0.0000021707, +0.0000021754,0.0000021780,0.0000021805,0.0000021830,0.0000021851, +0.0000021869,0.0000021876,0.0000021864,0.0000021806,0.0000021723, +0.0000021651,0.0000021610,0.0000021597,0.0000021601,0.0000021613, +0.0000021629,0.0000021646,0.0000021663,0.0000021672,0.0000021672, +0.0000021664,0.0000021655,0.0000021651,0.0000021650,0.0000021648, +0.0000021654,0.0000021681,0.0000021716,0.0000021747,0.0000021768, +0.0000021788,0.0000021805,0.0000021814,0.0000021813,0.0000021809, +0.0000021805,0.0000021796,0.0000021795,0.0000021803,0.0000021817, +0.0000021832,0.0000021830,0.0000021805,0.0000021772,0.0000021750, +0.0000021742,0.0000021741,0.0000021738,0.0000021728,0.0000021717, +0.0000021709,0.0000021707,0.0000021709,0.0000021715,0.0000021729, +0.0000021750,0.0000021765,0.0000021779,0.0000021781,0.0000021789, +0.0000021767,0.0000021741,0.0000021707,0.0000021670,0.0000021629, +0.0000021590,0.0000021555,0.0000021520,0.0000021499,0.0000021491, +0.0000021508,0.0000021527,0.0000021568,0.0000021618,0.0000021661, +0.0000021689,0.0000021701,0.0000021703,0.0000021698,0.0000021695, +0.0000021693,0.0000021686,0.0000021675,0.0000021666,0.0000021658, +0.0000021656,0.0000021663,0.0000021686,0.0000021725,0.0000021760, +0.0000021783,0.0000021801,0.0000021811,0.0000021809,0.0000021801, +0.0000021802,0.0000021819,0.0000021840,0.0000021853,0.0000021863, +0.0000021876,0.0000021885,0.0000021886,0.0000021883,0.0000021874, +0.0000021860,0.0000021835,0.0000021792,0.0000021734,0.0000021667, +0.0000021603,0.0000021550,0.0000021527,0.0000021529,0.0000021545, +0.0000021565,0.0000021591,0.0000021618,0.0000021642,0.0000021669, +0.0000021697,0.0000021713,0.0000021717,0.0000021721,0.0000021726, +0.0000021728,0.0000021723,0.0000021715,0.0000021703,0.0000021679, +0.0000021654,0.0000021640,0.0000021639,0.0000021643,0.0000021651, +0.0000021671,0.0000021708,0.0000021767,0.0000021833,0.0000021881, +0.0000021903,0.0000021907,0.0000021900,0.0000021882,0.0000021855, +0.0000021829,0.0000021800,0.0000021769,0.0000021742,0.0000021716, +0.0000021684,0.0000021637,0.0000021585,0.0000021542,0.0000021508, +0.0000021482,0.0000021468,0.0000021465,0.0000021474,0.0000021486, +0.0000021491,0.0000021496,0.0000021516,0.0000021566,0.0000021648, +0.0000021765,0.0000021912,0.0000022066,0.0000022198,0.0000022277, +0.0000022302,0.0000022308,0.0000022353,0.0000022465,0.0000022613, +0.0000022740,0.0000022814,0.0000022838,0.0000022835,0.0000022823, +0.0000022817,0.0000022824,0.0000022845,0.0000022876,0.0000022911, +0.0000022943,0.0000022961,0.0000022960,0.0000022941,0.0000022910, +0.0000022878,0.0000022853,0.0000022842,0.0000022843,0.0000022850, +0.0000022859,0.0000022868,0.0000022878,0.0000022885,0.0000022892, +0.0000022897,0.0000022901,0.0000022911,0.0000022919,0.0000022917, +0.0000022904,0.0000022874,0.0000022825,0.0000022772,0.0000022746, +0.0000022751,0.0000022801,0.0000022883,0.0000022982,0.0000023073, +0.0000023129,0.0000023145,0.0000023149,0.0000023140,0.0000023129, +0.0000023115,0.0000023101,0.0000023085,0.0000023067,0.0000023044, +0.0000023018,0.0000022999,0.0000022984,0.0000022978,0.0000022978, +0.0000022988,0.0000023006,0.0000023023,0.0000023037,0.0000023049, +0.0000023058,0.0000023060,0.0000023059,0.0000023051,0.0000023038, +0.0000023028,0.0000023026,0.0000023029,0.0000023037,0.0000023051, +0.0000023070,0.0000023085,0.0000023096,0.0000023101,0.0000023100, +0.0000023081,0.0000023046,0.0000022996,0.0000022937,0.0000022871, +0.0000022808,0.0000022756,0.0000022719,0.0000022693,0.0000022683, +0.0000022687,0.0000022701,0.0000022715,0.0000022731,0.0000022750, +0.0000022766,0.0000022772,0.0000022772,0.0000022762,0.0000022746, +0.0000022730,0.0000022720,0.0000022713,0.0000022707,0.0000022699, +0.0000022691,0.0000022681,0.0000022668,0.0000022653,0.0000022636, +0.0000022621,0.0000022609,0.0000022604,0.0000022606,0.0000022614, +0.0000022627,0.0000022640,0.0000022650,0.0000022652,0.0000022641, +0.0000022613,0.0000022567,0.0000022506,0.0000022443,0.0000022381, +0.0000022326,0.0000022282,0.0000022249,0.0000022218,0.0000022170, +0.0000022100,0.0000022016,0.0000021912,0.0000021786,0.0000021662, +0.0000021581,0.0000021545,0.0000021525,0.0000021510,0.0000021499, +0.0000021491,0.0000021477,0.0000021461,0.0000021448,0.0000021443, +0.0000021444,0.0000021450,0.0000021457,0.0000021461,0.0000021453, +0.0000021431,0.0000021401,0.0000021365,0.0000021324,0.0000021278, +0.0000021231,0.0000021191,0.0000021161,0.0000021145,0.0000021147, +0.0000021156,0.0000021162,0.0000021167,0.0000021163,0.0000021146, +0.0000021114,0.0000021078,0.0000021048,0.0000021029,0.0000021017, +0.0000020999,0.0000020995,0.0000021014,0.0000021057,0.0000021136, +0.0000021288,0.0000021539,0.0000021822,0.0000022010,0.0000022065, +0.0000022065,0.0000022063,0.0000022078,0.0000022092,0.0000022093, +0.0000022078,0.0000022054,0.0000022032,0.0000022028,0.0000022036, +0.0000022052,0.0000022060,0.0000022056,0.0000022044,0.0000022035, +0.0000022029,0.0000022017,0.0000022023,0.0000022085,0.0000022197, +0.0000022296,0.0000022342,0.0000022345,0.0000022335,0.0000022311, +0.0000022287,0.0000022261,0.0000022233,0.0000022220,0.0000022230, +0.0000022266,0.0000022318,0.0000022383,0.0000022445,0.0000022494, +0.0000022527,0.0000022552,0.0000022573,0.0000022589,0.0000022606, +0.0000022622,0.0000022644,0.0000022672,0.0000022685,0.0000022679, +0.0000022642,0.0000022584,0.0000022517,0.0000022456,0.0000022412, +0.0000022380,0.0000022346,0.0000022318,0.0000022306,0.0000022308, +0.0000022318,0.0000022326,0.0000022321,0.0000022272,0.0000022190, +0.0000022142,0.0000022164,0.0000022223,0.0000022268,0.0000022291, +0.0000022476,0.0000022727,0.0000022822,0.0000022910,0.0000023019, +0.0000023128,0.0000023164,0.0000023156,0.0000023061,0.0000022890, +0.0000022751,0.0000022668,0.0000022572,0.0000022447,0.0000022334, +0.0000022244,0.0000022274,0.0000022393,0.0000022495,0.0000022627, +0.0000022785,0.0000022898,0.0000022972,0.0000023005,0.0000022989, +0.0000022936,0.0000022910,0.0000022919,0.0000022928,0.0000022920, +0.0000022922,0.0000022950,0.0000023041,0.0000023161,0.0000023260, +0.0000023333,0.0000023378,0.0000023380,0.0000023295,0.0000023201, +0.0000023126,0.0000023023,0.0000022947,0.0000022931,0.0000022950, +0.0000022984,0.0000022995,0.0000022984,0.0000022981,0.0000023011, +0.0000023066,0.0000023123,0.0000023184,0.0000023222,0.0000023245, +0.0000023262,0.0000023255,0.0000023228,0.0000023180,0.0000023133, +0.0000023085,0.0000023045,0.0000023014,0.0000022988,0.0000022958, +0.0000022927,0.0000022896,0.0000022870,0.0000022854,0.0000022854, +0.0000022870,0.0000022896,0.0000022929,0.0000022955,0.0000022969, +0.0000022992,0.0000023024,0.0000023065,0.0000023134,0.0000023179, +0.0000023152,0.0000023089,0.0000023070,0.0000023059,0.0000022967, +0.0000022798,0.0000022579,0.0000022244,0.0000022129,0.0000022237, +0.0000022243,0.0000022161,0.0000022220,0.0000022319,0.0000022157, +0.0000021829,0.0000021744,0.0000021849,0.0000021961,0.0000022041, +0.0000022116,0.0000022172,0.0000022209,0.0000022237,0.0000022276, +0.0000022303,0.0000022291,0.0000022244,0.0000022196,0.0000022168, +0.0000022157,0.0000022162,0.0000022200,0.0000022257,0.0000022291, +0.0000022291,0.0000022283,0.0000022297,0.0000022351,0.0000022428, +0.0000022496,0.0000022539,0.0000022557,0.0000022546,0.0000022500, +0.0000022418,0.0000022278,0.0000022099,0.0000021960,0.0000021927, +0.0000021967,0.0000022050,0.0000022106,0.0000022149,0.0000022237, +0.0000022358,0.0000022459,0.0000022519,0.0000022568,0.0000022610, +0.0000022634,0.0000022634,0.0000022620,0.0000022580,0.0000022520, +0.0000022469,0.0000022401,0.0000022292,0.0000022195,0.0000022167, +0.0000022204,0.0000022255,0.0000022280,0.0000022288,0.0000022303, +0.0000022328,0.0000022350,0.0000022359,0.0000022356,0.0000022359, +0.0000022377,0.0000022397,0.0000022415,0.0000022443,0.0000022482, +0.0000022519,0.0000022549,0.0000022563,0.0000022565,0.0000022562, +0.0000022552,0.0000022531,0.0000022507,0.0000022480,0.0000022447, +0.0000022416,0.0000022386,0.0000022372,0.0000022372,0.0000022386, +0.0000022425,0.0000022491,0.0000022574,0.0000022664,0.0000022755, +0.0000022837,0.0000022900,0.0000022939,0.0000022950,0.0000022941, +0.0000022918,0.0000022898,0.0000022898,0.0000022925,0.0000022973, +0.0000023041,0.0000023122,0.0000023201,0.0000023263,0.0000023306, +0.0000023331,0.0000023334,0.0000023332,0.0000023312,0.0000023286, +0.0000023264,0.0000023244,0.0000023225,0.0000023209,0.0000023207, +0.0000023231,0.0000023280,0.0000023342,0.0000023406,0.0000023463, +0.0000023500,0.0000023517,0.0000023534,0.0000023576,0.0000023632, +0.0000023666,0.0000023663,0.0000023637,0.0000023590,0.0000023527, +0.0000023463,0.0000023419,0.0000023405,0.0000023413,0.0000023445, +0.0000023492,0.0000023538,0.0000023570,0.0000023588,0.0000023596, +0.0000023593,0.0000023585,0.0000023574,0.0000023562,0.0000023544, +0.0000023524,0.0000023513,0.0000023516,0.0000023523,0.0000023529, +0.0000023537,0.0000023553,0.0000023578,0.0000023607,0.0000023631, +0.0000023651,0.0000023669,0.0000023689,0.0000023703,0.0000023707, +0.0000023705,0.0000023705,0.0000023710,0.0000023722,0.0000023732, +0.0000023734,0.0000023730,0.0000023719,0.0000023702,0.0000023680, +0.0000023654,0.0000023621,0.0000023580,0.0000023533,0.0000023483, +0.0000023427,0.0000023367,0.0000023308,0.0000023252,0.0000023199, +0.0000023153,0.0000023121,0.0000023100,0.0000023084,0.0000023068, +0.0000023046,0.0000023011,0.0000022972,0.0000022939,0.0000022915, +0.0000022895,0.0000022885,0.0000022886,0.0000022897,0.0000022902, +0.0000022886,0.0000022859,0.0000022844,0.0000022854,0.0000022885, +0.0000022905,0.0000022903,0.0000022886,0.0000022872,0.0000022863, +0.0000022841,0.0000022791,0.0000022715,0.0000022641,0.0000022586, +0.0000022540,0.0000022480,0.0000022404,0.0000022328,0.0000022272, +0.0000022234,0.0000022216,0.0000022215,0.0000022215,0.0000022206, +0.0000022177,0.0000022135,0.0000022091,0.0000022049,0.0000022005, +0.0000021958,0.0000021912,0.0000021868,0.0000021821,0.0000021771, +0.0000021724,0.0000021682,0.0000021648,0.0000021624,0.0000021605, +0.0000021590,0.0000021581,0.0000021578,0.0000021583,0.0000021586, +0.0000021593,0.0000021604,0.0000021614,0.0000021622,0.0000021635, +0.0000021654,0.0000021686,0.0000021727,0.0000021776,0.0000021835, +0.0000021903,0.0000021976,0.0000022046,0.0000022108,0.0000022164, +0.0000022216,0.0000022259,0.0000022291,0.0000022316,0.0000022336, +0.0000022352,0.0000022359,0.0000022356,0.0000022345,0.0000022331, +0.0000022314,0.0000022298,0.0000022281,0.0000022262,0.0000022241, +0.0000022214,0.0000022181,0.0000022146,0.0000022124,0.0000022121, +0.0000022152,0.0000022199,0.0000022253,0.0000022300,0.0000022319, +0.0000022310,0.0000022291,0.0000022281,0.0000022297,0.0000022345, +0.0000022409,0.0000022461,0.0000022484,0.0000022473,0.0000022429, +0.0000022385,0.0000022368,0.0000022346,0.0000022250,0.0000022111, +0.0000022016,0.0000021977,0.0000021969,0.0000021967,0.0000021972, +0.0000021990,0.0000022021,0.0000022075,0.0000022147,0.0000022225, +0.0000022300,0.0000022377,0.0000022494,0.0000022641,0.0000022768, +0.0000022833,0.0000022831,0.0000022778,0.0000022739,0.0000022741, +0.0000022759,0.0000022757,0.0000022733,0.0000022759,0.0000022967, +0.0000023215,0.0000023294,0.0000023299,0.0000023209,0.0000023032, +0.0000022867,0.0000022610,0.0000022282,0.0000022156,0.0000022179, +0.0000022238,0.0000022261,0.0000022248,0.0000022213,0.0000022170, +0.0000022104,0.0000022044,0.0000022002,0.0000021962,0.0000021920, +0.0000021902,0.0000021932,0.0000022003,0.0000022075,0.0000022117, +0.0000022127,0.0000022124,0.0000022112,0.0000022104,0.0000022139, +0.0000022235,0.0000022339,0.0000022405,0.0000022425,0.0000022414, +0.0000022346,0.0000022223,0.0000022126,0.0000022124,0.0000022205, +0.0000022316,0.0000022405,0.0000022469,0.0000022522,0.0000022550, +0.0000022551,0.0000022543,0.0000022540,0.0000022543,0.0000022546, +0.0000022541,0.0000022535,0.0000022535,0.0000022541,0.0000022554, +0.0000022571,0.0000022592,0.0000022623,0.0000022659,0.0000022691, +0.0000022699,0.0000022685,0.0000022631,0.0000022545,0.0000022450, +0.0000022352,0.0000022234,0.0000022069,0.0000021877,0.0000021726, +0.0000021688,0.0000021774,0.0000021979,0.0000022182,0.0000022241, +0.0000022183,0.0000022154,0.0000022329,0.0000022643,0.0000022820, +0.0000022715,0.0000022358,0.0000022067,0.0000021967,0.0000021950, +0.0000021913,0.0000021824,0.0000021701,0.0000021603,0.0000021573, +0.0000021592,0.0000021636,0.0000021660,0.0000021658,0.0000021654, +0.0000021657,0.0000021645,0.0000021600,0.0000021529,0.0000021466, +0.0000021420,0.0000021391,0.0000021379,0.0000021389,0.0000021405, +0.0000021401,0.0000021386,0.0000021367,0.0000021352,0.0000021351, +0.0000021374,0.0000021407,0.0000021436,0.0000021460,0.0000021484, +0.0000021517,0.0000021560,0.0000021607,0.0000021656,0.0000021719, +0.0000021798,0.0000021891,0.0000021995,0.0000022089,0.0000022155, +0.0000022197,0.0000022237,0.0000022287,0.0000022339,0.0000022394, +0.0000022461,0.0000022535,0.0000022583,0.0000022586,0.0000022561, +0.0000022543,0.0000022556,0.0000022592,0.0000022599,0.0000022514, +0.0000022325,0.0000022139,0.0000022028,0.0000021951,0.0000021845, +0.0000021700,0.0000021544,0.0000021402,0.0000021271,0.0000021123, +0.0000020947,0.0000020773,0.0000020654,0.0000020601,0.0000020589, +0.0000020595,0.0000020624,0.0000020678,0.0000020748,0.0000020812, +0.0000020853,0.0000020877,0.0000020907,0.0000020954,0.0000021019, +0.0000021109,0.0000021228,0.0000021335,0.0000021389,0.0000021370, +0.0000021292,0.0000021175,0.0000021073,0.0000021019,0.0000020997, +0.0000021005,0.0000021030,0.0000021060,0.0000021101,0.0000021185, +0.0000021332,0.0000021491,0.0000021582,0.0000021579,0.0000021525, +0.0000021443,0.0000021365,0.0000021300,0.0000021248,0.0000021212, +0.0000021185,0.0000021152,0.0000021109,0.0000021069,0.0000021058, +0.0000021087,0.0000021200,0.0000021365,0.0000021531,0.0000021655, +0.0000021733,0.0000021774,0.0000021786,0.0000021778,0.0000021758, +0.0000021746,0.0000021784,0.0000021902,0.0000022078,0.0000022284, +0.0000022489,0.0000022671,0.0000022806,0.0000022872,0.0000022872, +0.0000022859,0.0000022861,0.0000022907,0.0000023001,0.0000023133, +0.0000023300,0.0000023490,0.0000023682,0.0000023858,0.0000024005, +0.0000024120,0.0000024204,0.0000024274,0.0000024341,0.0000024407, +0.0000024474,0.0000024534,0.0000024572,0.0000024597,0.0000024587, +0.0000024567,0.0000024531,0.0000024499,0.0000024465,0.0000024427, +0.0000024379,0.0000024320,0.0000024257,0.0000024197,0.0000024144, +0.0000024105,0.0000024078,0.0000024053,0.0000024024,0.0000023992, +0.0000023964,0.0000023946,0.0000023947,0.0000023964,0.0000024005, +0.0000024067,0.0000024143,0.0000024212,0.0000024253,0.0000024264, +0.0000024255,0.0000024222,0.0000024160,0.0000024083,0.0000024008, +0.0000023933,0.0000023840,0.0000023725,0.0000023593,0.0000023448, +0.0000023285,0.0000023123,0.0000023000,0.0000022939,0.0000022914, +0.0000022890,0.0000022863,0.0000022843,0.0000022817,0.0000022760, +0.0000022677,0.0000022570,0.0000022461,0.0000022369,0.0000022281, +0.0000022183,0.0000022076,0.0000021972,0.0000021891,0.0000021848, +0.0000021841,0.0000021852,0.0000021872,0.0000021893,0.0000021914, +0.0000021933,0.0000021949,0.0000021956,0.0000021951,0.0000021933, +0.0000021910,0.0000021896,0.0000021893,0.0000021890,0.0000021881, +0.0000021869,0.0000021861,0.0000021866,0.0000021889,0.0000021933, +0.0000022010,0.0000022118,0.0000022244,0.0000022379,0.0000022516, +0.0000022643,0.0000022760,0.0000022859,0.0000022938,0.0000022991, +0.0000022996,0.0000023021,0.0000023002,0.0000022984,0.0000022961, +0.0000022942,0.0000022926,0.0000022920,0.0000022911,0.0000022902, +0.0000022875,0.0000022825,0.0000022745,0.0000022640,0.0000022533, +0.0000022434,0.0000022332,0.0000022235,0.0000022156,0.0000022097, +0.0000022038,0.0000021979,0.0000021927,0.0000021895,0.0000021874, +0.0000021860,0.0000021852,0.0000021850,0.0000021858,0.0000021887, +0.0000021934,0.0000021991,0.0000022059,0.0000022136,0.0000022212, +0.0000022269,0.0000022299,0.0000022317,0.0000022324,0.0000022310, +0.0000022284,0.0000022244,0.0000022189,0.0000022117,0.0000022040, +0.0000021966,0.0000021904,0.0000021852,0.0000021798,0.0000021744, +0.0000021694,0.0000021641,0.0000021586,0.0000021536,0.0000021493, +0.0000021454,0.0000021417,0.0000021376,0.0000021338,0.0000021307, +0.0000021283,0.0000021264,0.0000021246,0.0000021227,0.0000021204, +0.0000021176,0.0000021150,0.0000021130,0.0000021117,0.0000021110, +0.0000021100,0.0000021084,0.0000021064,0.0000021040,0.0000021016, +0.0000020992,0.0000020964,0.0000020934,0.0000020904,0.0000020873, +0.0000020843,0.0000020821,0.0000020815,0.0000020828,0.0000020859, +0.0000020892,0.0000020927,0.0000020963,0.0000020998,0.0000021022, +0.0000021033,0.0000021034,0.0000021028,0.0000021014,0.0000020993, +0.0000020969,0.0000020943,0.0000020917,0.0000020897,0.0000020880, +0.0000020859,0.0000020833,0.0000020809,0.0000020800,0.0000020805, +0.0000020806,0.0000020796,0.0000020783,0.0000020766,0.0000020749, +0.0000020732,0.0000020716,0.0000020710,0.0000020706,0.0000020699, +0.0000020692,0.0000020685,0.0000020675,0.0000020665,0.0000020666, +0.0000020668,0.0000020672,0.0000020678,0.0000020683,0.0000020691, +0.0000020696,0.0000020693,0.0000020694,0.0000020687,0.0000020665, +0.0000020638,0.0000020615,0.0000020609,0.0000020632,0.0000020686, +0.0000020756,0.0000020803,0.0000020803,0.0000020778,0.0000020727, +0.0000020674,0.0000020639,0.0000020621,0.0000020619,0.0000020647, +0.0000020686,0.0000020700,0.0000020682,0.0000020654,0.0000020663, +0.0000020721,0.0000020783,0.0000020797,0.0000020757,0.0000020681, +0.0000020610,0.0000020571,0.0000020567,0.0000020583,0.0000020618, +0.0000020667,0.0000020709,0.0000020723,0.0000020709,0.0000020703, +0.0000020720,0.0000020733,0.0000020739,0.0000020858,0.0000021117, +0.0000021328,0.0000021377,0.0000021378,0.0000021444,0.0000021560, +0.0000021633,0.0000021643,0.0000021639,0.0000021619,0.0000021563, +0.0000021477,0.0000021379,0.0000021278,0.0000021157,0.0000021057, +0.0000021032,0.0000021027,0.0000020928,0.0000020724,0.0000020571, +0.0000020523,0.0000020512,0.0000020492,0.0000020467,0.0000020448, +0.0000020447,0.0000020460,0.0000020493,0.0000020535,0.0000020576, +0.0000020622,0.0000020674,0.0000020714,0.0000020732,0.0000020738, +0.0000020743,0.0000020749,0.0000020754,0.0000020757,0.0000020761, +0.0000020760,0.0000020753,0.0000020739,0.0000020723,0.0000020714, +0.0000020717,0.0000020730,0.0000020750,0.0000020770,0.0000020785, +0.0000020794,0.0000020803,0.0000020815,0.0000020828,0.0000020831, +0.0000020824,0.0000020794,0.0000020752,0.0000020714,0.0000020671, +0.0000020606,0.0000020545,0.0000020512,0.0000020482,0.0000020447, +0.0000020436,0.0000020445,0.0000020461,0.0000020470,0.0000020474, +0.0000020475,0.0000020471,0.0000020462,0.0000020451,0.0000020436, +0.0000020416,0.0000020395,0.0000020373,0.0000020346,0.0000020310, +0.0000020269,0.0000020227,0.0000020193,0.0000020177,0.0000020176, +0.0000020190,0.0000020221,0.0000020263,0.0000020306,0.0000020339, +0.0000020362,0.0000020380,0.0000020395,0.0000020405,0.0000020412, +0.0000020420,0.0000020430,0.0000020440,0.0000020450,0.0000020475, +0.0000020525,0.0000020586,0.0000020633,0.0000020651,0.0000020644, +0.0000020627,0.0000020633,0.0000020679,0.0000020754,0.0000020826, +0.0000020867,0.0000020864,0.0000020839,0.0000020779,0.0000020693, +0.0000020606,0.0000020567,0.0000020560,0.0000020567,0.0000020610, +0.0000020689,0.0000020802,0.0000020964,0.0000021169,0.0000021371, +0.0000021538,0.0000021670,0.0000021779,0.0000021866,0.0000021926, +0.0000021969,0.0000021996,0.0000022013,0.0000022032,0.0000022053, +0.0000022047,0.0000021982,0.0000021852,0.0000021729,0.0000021691, +0.0000021723,0.0000021791,0.0000021781,0.0000021622,0.0000021390, +0.0000021262,0.0000021256,0.0000021304,0.0000021404,0.0000021352, +0.0000021454,0.0000021565,0.0000021661,0.0000021717,0.0000021736, +0.0000021743,0.0000021759,0.0000021779,0.0000021791,0.0000021791, +0.0000021779,0.0000021758,0.0000021744,0.0000021744,0.0000021748, +0.0000021748,0.0000021742,0.0000021740,0.0000021739,0.0000021737, +0.0000021737,0.0000021740,0.0000021741,0.0000021737,0.0000021733, +0.0000021733,0.0000021736,0.0000021746,0.0000021761,0.0000021783, +0.0000021803,0.0000021822,0.0000021844,0.0000021864,0.0000021869, +0.0000021862,0.0000021847,0.0000021819,0.0000021777,0.0000021728, +0.0000021688,0.0000021665,0.0000021652,0.0000021641,0.0000021616, +0.0000021581,0.0000021549,0.0000021525,0.0000021505,0.0000021490, +0.0000021477,0.0000021467,0.0000021454,0.0000021442,0.0000021436, +0.0000021449,0.0000021483,0.0000021529,0.0000021581,0.0000021638, +0.0000021692,0.0000021739,0.0000021773,0.0000021798,0.0000021810, +0.0000021809,0.0000021801,0.0000021788,0.0000021750,0.0000021707, +0.0000021654,0.0000021599,0.0000021558,0.0000021535,0.0000021533, +0.0000021557,0.0000021594,0.0000021627,0.0000021655,0.0000021672, +0.0000021684,0.0000021691,0.0000021696,0.0000021698,0.0000021691, +0.0000021677,0.0000021659,0.0000021640,0.0000021632,0.0000021639, +0.0000021665,0.0000021703,0.0000021734,0.0000021752,0.0000021760, +0.0000021760,0.0000021752,0.0000021749,0.0000021762,0.0000021787, +0.0000021810,0.0000021830,0.0000021851,0.0000021865,0.0000021865, +0.0000021856,0.0000021847,0.0000021838,0.0000021823,0.0000021796, +0.0000021755,0.0000021707,0.0000021658,0.0000021608,0.0000021568, +0.0000021552,0.0000021553,0.0000021559,0.0000021571,0.0000021590, +0.0000021610,0.0000021630,0.0000021655,0.0000021674,0.0000021679, +0.0000021678,0.0000021682,0.0000021693,0.0000021698,0.0000021696, +0.0000021687,0.0000021672,0.0000021648,0.0000021624,0.0000021610, +0.0000021606,0.0000021605,0.0000021609,0.0000021625,0.0000021657, +0.0000021704,0.0000021757,0.0000021801,0.0000021827,0.0000021839, +0.0000021845,0.0000021843,0.0000021832,0.0000021817,0.0000021802, +0.0000021794,0.0000021792,0.0000021791,0.0000021777,0.0000021736, +0.0000021686,0.0000021635,0.0000021584,0.0000021541,0.0000021512, +0.0000021496,0.0000021492,0.0000021493,0.0000021494,0.0000021500, +0.0000021518,0.0000021548,0.0000021588,0.0000021637,0.0000021710, +0.0000021830,0.0000021995,0.0000022159,0.0000022269,0.0000022313, +0.0000022321,0.0000022339,0.0000022412,0.0000022538,0.0000022672, +0.0000022773,0.0000022820,0.0000022826,0.0000022816,0.0000022798, +0.0000022785,0.0000022782,0.0000022791,0.0000022818,0.0000022857, +0.0000022894,0.0000022918,0.0000022922,0.0000022916,0.0000022897, +0.0000022876,0.0000022861,0.0000022852,0.0000022847,0.0000022846, +0.0000022849,0.0000022857,0.0000022867,0.0000022878,0.0000022888, +0.0000022902,0.0000022920,0.0000022935,0.0000022951,0.0000022955, +0.0000022943,0.0000022910,0.0000022852,0.0000022792,0.0000022771, +0.0000022776,0.0000022820,0.0000022893,0.0000022978,0.0000023059, +0.0000023118,0.0000023138,0.0000023135,0.0000023130,0.0000023114, +0.0000023095,0.0000023078,0.0000023056,0.0000023030,0.0000023005, +0.0000022987,0.0000022978,0.0000022978,0.0000022989,0.0000023005, +0.0000023025,0.0000023044,0.0000023065,0.0000023081,0.0000023092, +0.0000023099,0.0000023097,0.0000023092,0.0000023086,0.0000023083, +0.0000023081,0.0000023079,0.0000023081,0.0000023079,0.0000023082, +0.0000023066,0.0000023037,0.0000022995,0.0000022940,0.0000022879, +0.0000022821,0.0000022771,0.0000022734,0.0000022707,0.0000022691, +0.0000022686,0.0000022678,0.0000022679,0.0000022696,0.0000022717, +0.0000022736,0.0000022752,0.0000022766,0.0000022781,0.0000022788, +0.0000022788,0.0000022776,0.0000022755,0.0000022731,0.0000022713, +0.0000022698,0.0000022690,0.0000022682,0.0000022668,0.0000022654, +0.0000022637,0.0000022621,0.0000022608,0.0000022598,0.0000022592, +0.0000022590,0.0000022591,0.0000022598,0.0000022610,0.0000022624, +0.0000022636,0.0000022640,0.0000022629,0.0000022595,0.0000022542, +0.0000022472,0.0000022399,0.0000022338,0.0000022291,0.0000022245, +0.0000022194,0.0000022142,0.0000022071,0.0000021971,0.0000021856, +0.0000021739,0.0000021618,0.0000021514,0.0000021443,0.0000021402, +0.0000021380,0.0000021372,0.0000021365,0.0000021351,0.0000021336, +0.0000021334,0.0000021356,0.0000021390,0.0000021425,0.0000021445, +0.0000021450,0.0000021446,0.0000021432,0.0000021410,0.0000021379, +0.0000021343,0.0000021305,0.0000021262,0.0000021215,0.0000021176, +0.0000021146,0.0000021132,0.0000021139,0.0000021152,0.0000021160, +0.0000021161,0.0000021150,0.0000021121,0.0000021090,0.0000021071, +0.0000021065,0.0000021066,0.0000021067,0.0000021067,0.0000021081, +0.0000021127,0.0000021228,0.0000021414,0.0000021676,0.0000021926, +0.0000022070,0.0000022104,0.0000022102,0.0000022097,0.0000022096, +0.0000022090,0.0000022064,0.0000022025,0.0000021991,0.0000021973, +0.0000021973,0.0000021986,0.0000022014,0.0000022044,0.0000022057, +0.0000022056,0.0000022053,0.0000022055,0.0000022065,0.0000022108, +0.0000022191,0.0000022269,0.0000022300,0.0000022299,0.0000022283, +0.0000022265,0.0000022250,0.0000022228,0.0000022201,0.0000022173, +0.0000022158,0.0000022162,0.0000022195,0.0000022255,0.0000022326, +0.0000022408,0.0000022480,0.0000022534,0.0000022567,0.0000022593, +0.0000022618,0.0000022638,0.0000022653,0.0000022661,0.0000022661, +0.0000022661,0.0000022647,0.0000022614,0.0000022563,0.0000022504, +0.0000022448,0.0000022404,0.0000022376,0.0000022353,0.0000022329, +0.0000022315,0.0000022304,0.0000022290,0.0000022269,0.0000022253, +0.0000022215,0.0000022150,0.0000022117,0.0000022131,0.0000022190, +0.0000022249,0.0000022265,0.0000022377,0.0000022632,0.0000022768, +0.0000022840,0.0000022925,0.0000023028,0.0000023092,0.0000023103, +0.0000023082,0.0000022954,0.0000022816,0.0000022735,0.0000022660, +0.0000022531,0.0000022396,0.0000022248,0.0000022207,0.0000022297, +0.0000022395,0.0000022480,0.0000022615,0.0000022765,0.0000022884, +0.0000022978,0.0000023019,0.0000023004,0.0000022961,0.0000022939, +0.0000022941,0.0000022932,0.0000022912,0.0000022904,0.0000022926, +0.0000023006,0.0000023111,0.0000023196,0.0000023261,0.0000023293, +0.0000023293,0.0000023245,0.0000023153,0.0000023081,0.0000023006, +0.0000022925,0.0000022881,0.0000022876,0.0000022894,0.0000022918, +0.0000022928,0.0000022934,0.0000022961,0.0000023018,0.0000023086, +0.0000023152,0.0000023197,0.0000023223,0.0000023229,0.0000023217, +0.0000023193,0.0000023158,0.0000023119,0.0000023078,0.0000023039, +0.0000023005,0.0000022973,0.0000022943,0.0000022918,0.0000022894, +0.0000022872,0.0000022860,0.0000022861,0.0000022878,0.0000022900, +0.0000022924,0.0000022947,0.0000022961,0.0000022980,0.0000023016, +0.0000023055,0.0000023119,0.0000023175,0.0000023169,0.0000023102, +0.0000023069,0.0000023068,0.0000023015,0.0000022862,0.0000022682, +0.0000022383,0.0000022135,0.0000022174,0.0000022256,0.0000022187, +0.0000022159,0.0000022285,0.0000022317,0.0000022063,0.0000021804, +0.0000021810,0.0000021922,0.0000022008,0.0000022074,0.0000022129, +0.0000022170,0.0000022198,0.0000022222,0.0000022255,0.0000022278, +0.0000022271,0.0000022238,0.0000022202,0.0000022178,0.0000022164, +0.0000022167,0.0000022199,0.0000022252,0.0000022289,0.0000022295, +0.0000022285,0.0000022279,0.0000022303,0.0000022360,0.0000022420, +0.0000022459,0.0000022480,0.0000022488,0.0000022471,0.0000022418, +0.0000022313,0.0000022146,0.0000021987,0.0000021925,0.0000021950, +0.0000022035,0.0000022114,0.0000022168,0.0000022239,0.0000022347, +0.0000022457,0.0000022537,0.0000022585,0.0000022621,0.0000022647, +0.0000022657,0.0000022649,0.0000022614,0.0000022549,0.0000022480, +0.0000022410,0.0000022313,0.0000022206,0.0000022154,0.0000022170, +0.0000022217,0.0000022256,0.0000022275,0.0000022282,0.0000022289, +0.0000022296,0.0000022299,0.0000022299,0.0000022309,0.0000022331, +0.0000022356,0.0000022383,0.0000022421,0.0000022468,0.0000022508, +0.0000022537,0.0000022553,0.0000022557,0.0000022551,0.0000022534, +0.0000022507,0.0000022476,0.0000022443,0.0000022407,0.0000022368, +0.0000022334,0.0000022317,0.0000022310,0.0000022304,0.0000022312, +0.0000022338,0.0000022379,0.0000022437,0.0000022511,0.0000022600, +0.0000022695,0.0000022779,0.0000022838,0.0000022868,0.0000022872, +0.0000022854,0.0000022837,0.0000022830,0.0000022838,0.0000022866, +0.0000022915,0.0000022986,0.0000023073,0.0000023167,0.0000023251, +0.0000023309,0.0000023337,0.0000023336,0.0000023326,0.0000023308, +0.0000023291,0.0000023273,0.0000023253,0.0000023236,0.0000023232, +0.0000023249,0.0000023275,0.0000023323,0.0000023383,0.0000023436, +0.0000023475,0.0000023514,0.0000023570,0.0000023634,0.0000023672, +0.0000023680,0.0000023663,0.0000023621,0.0000023550,0.0000023470, +0.0000023413,0.0000023391,0.0000023395,0.0000023422,0.0000023469, +0.0000023517,0.0000023549,0.0000023567,0.0000023575,0.0000023575, +0.0000023571,0.0000023566,0.0000023558,0.0000023544,0.0000023526, +0.0000023514,0.0000023512,0.0000023518,0.0000023526,0.0000023531, +0.0000023534,0.0000023543,0.0000023560,0.0000023581,0.0000023601, +0.0000023622,0.0000023645,0.0000023664,0.0000023675,0.0000023678, +0.0000023677,0.0000023676,0.0000023678,0.0000023683,0.0000023686, +0.0000023684,0.0000023676,0.0000023662,0.0000023643,0.0000023624, +0.0000023597,0.0000023561,0.0000023517,0.0000023464,0.0000023405, +0.0000023343,0.0000023286,0.0000023237,0.0000023197,0.0000023165, +0.0000023142,0.0000023125,0.0000023108,0.0000023083,0.0000023047, +0.0000023003,0.0000022960,0.0000022925,0.0000022896,0.0000022873, +0.0000022867,0.0000022877,0.0000022897,0.0000022905,0.0000022894, +0.0000022874,0.0000022869,0.0000022891,0.0000022922,0.0000022931, +0.0000022923,0.0000022906,0.0000022893,0.0000022875,0.0000022829, +0.0000022749,0.0000022661,0.0000022594,0.0000022548,0.0000022496, +0.0000022420,0.0000022328,0.0000022245,0.0000022193,0.0000022168, +0.0000022158,0.0000022146,0.0000022118,0.0000022067,0.0000021993, +0.0000021911,0.0000021838,0.0000021782,0.0000021743,0.0000021712, +0.0000021685,0.0000021662,0.0000021636,0.0000021600,0.0000021559, +0.0000021516,0.0000021471,0.0000021429,0.0000021396,0.0000021372, +0.0000021351,0.0000021337,0.0000021332,0.0000021334,0.0000021343, +0.0000021359,0.0000021370,0.0000021375,0.0000021381,0.0000021390, +0.0000021406,0.0000021431,0.0000021465,0.0000021511,0.0000021573, +0.0000021651,0.0000021739,0.0000021828,0.0000021917,0.0000022003, +0.0000022078,0.0000022139,0.0000022186,0.0000022221,0.0000022248, +0.0000022266,0.0000022273,0.0000022273,0.0000022269,0.0000022262, +0.0000022253,0.0000022243,0.0000022230,0.0000022222,0.0000022211, +0.0000022193,0.0000022165,0.0000022138,0.0000022118,0.0000022122, +0.0000022150,0.0000022193,0.0000022247,0.0000022292,0.0000022306, +0.0000022291,0.0000022261,0.0000022242,0.0000022258,0.0000022317, +0.0000022392,0.0000022442,0.0000022459,0.0000022438,0.0000022389, +0.0000022348,0.0000022345,0.0000022337,0.0000022266,0.0000022158, +0.0000022054,0.0000021990,0.0000021968,0.0000021968,0.0000021978, +0.0000021997,0.0000022032,0.0000022085,0.0000022147,0.0000022214, +0.0000022270,0.0000022335,0.0000022443,0.0000022594,0.0000022745, +0.0000022838,0.0000022835,0.0000022775,0.0000022731,0.0000022732, +0.0000022742,0.0000022732,0.0000022716,0.0000022781,0.0000023030, +0.0000023233,0.0000023278,0.0000023275,0.0000023180,0.0000022999, +0.0000022794,0.0000022465,0.0000022164,0.0000022110,0.0000022165, +0.0000022218,0.0000022228,0.0000022220,0.0000022209,0.0000022176, +0.0000022123,0.0000022081,0.0000022046,0.0000022009,0.0000021987, +0.0000021994,0.0000022026,0.0000022059,0.0000022079,0.0000022087, +0.0000022088,0.0000022078,0.0000022063,0.0000022071,0.0000022128, +0.0000022206,0.0000022273,0.0000022328,0.0000022363,0.0000022363, +0.0000022302,0.0000022199,0.0000022149,0.0000022184,0.0000022282, +0.0000022385,0.0000022466,0.0000022537,0.0000022584,0.0000022594, +0.0000022591,0.0000022589,0.0000022590,0.0000022591,0.0000022589, +0.0000022576,0.0000022553,0.0000022530,0.0000022517,0.0000022518, +0.0000022532,0.0000022546,0.0000022560,0.0000022579,0.0000022604, +0.0000022630,0.0000022642,0.0000022630,0.0000022585,0.0000022511, +0.0000022424,0.0000022327,0.0000022207,0.0000022045,0.0000021862, +0.0000021727,0.0000021702,0.0000021795,0.0000021987,0.0000022177, +0.0000022223,0.0000022172,0.0000022156,0.0000022336,0.0000022656, +0.0000022815,0.0000022666,0.0000022287,0.0000022012,0.0000021939, +0.0000021930,0.0000021887,0.0000021783,0.0000021659,0.0000021581, +0.0000021578,0.0000021615,0.0000021642,0.0000021639,0.0000021629, +0.0000021624,0.0000021616,0.0000021581,0.0000021522,0.0000021457, +0.0000021407,0.0000021377,0.0000021372,0.0000021395,0.0000021422, +0.0000021435,0.0000021438,0.0000021427,0.0000021411,0.0000021404, +0.0000021415,0.0000021439,0.0000021465,0.0000021484,0.0000021503, +0.0000021531,0.0000021571,0.0000021617,0.0000021664,0.0000021718, +0.0000021783,0.0000021860,0.0000021951,0.0000022043,0.0000022122, +0.0000022182,0.0000022231,0.0000022279,0.0000022328,0.0000022384, +0.0000022456,0.0000022532,0.0000022582,0.0000022587,0.0000022559, +0.0000022540,0.0000022552,0.0000022590,0.0000022600,0.0000022514, +0.0000022321,0.0000022133,0.0000022021,0.0000021936,0.0000021819, +0.0000021667,0.0000021511,0.0000021372,0.0000021240,0.0000021086, +0.0000020900,0.0000020724,0.0000020599,0.0000020534,0.0000020509, +0.0000020508,0.0000020526,0.0000020570,0.0000020638,0.0000020720, +0.0000020788,0.0000020827,0.0000020854,0.0000020890,0.0000020938, +0.0000020999,0.0000021083,0.0000021194,0.0000021299,0.0000021349, +0.0000021325,0.0000021250,0.0000021143,0.0000021048,0.0000020991, +0.0000020974,0.0000020982,0.0000021012,0.0000021045,0.0000021085, +0.0000021167,0.0000021308,0.0000021466,0.0000021573,0.0000021585, +0.0000021548,0.0000021479,0.0000021418,0.0000021371,0.0000021333, +0.0000021301,0.0000021271,0.0000021233,0.0000021178,0.0000021111, +0.0000021056,0.0000021062,0.0000021133,0.0000021265,0.0000021426, +0.0000021570,0.0000021668,0.0000021709,0.0000021713,0.0000021697, +0.0000021674,0.0000021668,0.0000021716,0.0000021828,0.0000021998, +0.0000022203,0.0000022422,0.0000022633,0.0000022795,0.0000022877, +0.0000022888,0.0000022863,0.0000022860,0.0000022887,0.0000022957, +0.0000023057,0.0000023188,0.0000023345,0.0000023519,0.0000023698, +0.0000023861,0.0000023989,0.0000024086,0.0000024166,0.0000024240, +0.0000024321,0.0000024412,0.0000024502,0.0000024570,0.0000024611, +0.0000024619,0.0000024623,0.0000024601,0.0000024570,0.0000024530, +0.0000024482,0.0000024432,0.0000024379,0.0000024330,0.0000024283, +0.0000024239,0.0000024202,0.0000024166,0.0000024123,0.0000024074, +0.0000024025,0.0000023987,0.0000023969,0.0000023974,0.0000024000, +0.0000024049,0.0000024109,0.0000024178,0.0000024236,0.0000024265, +0.0000024273,0.0000024260,0.0000024222,0.0000024160,0.0000024086, +0.0000024005,0.0000023916,0.0000023814,0.0000023699,0.0000023572, +0.0000023431,0.0000023274,0.0000023127,0.0000023023,0.0000022968, +0.0000022935,0.0000022897,0.0000022851,0.0000022801,0.0000022743, +0.0000022674,0.0000022585,0.0000022488,0.0000022386,0.0000022287, +0.0000022186,0.0000022084,0.0000021985,0.0000021895,0.0000021832, +0.0000021810,0.0000021816,0.0000021842,0.0000021872,0.0000021897, +0.0000021909,0.0000021908,0.0000021896,0.0000021874,0.0000021850, +0.0000021830,0.0000021816,0.0000021810,0.0000021808,0.0000021806, +0.0000021803,0.0000021800,0.0000021797,0.0000021790,0.0000021777, +0.0000021768,0.0000021774,0.0000021794,0.0000021827,0.0000021880, +0.0000021958,0.0000022066,0.0000022209,0.0000022379,0.0000022556, +0.0000022730,0.0000022878,0.0000022979,0.0000023018,0.0000023044, +0.0000023042,0.0000023019,0.0000022983,0.0000022948,0.0000022911, +0.0000022880,0.0000022845,0.0000022809,0.0000022755,0.0000022684, +0.0000022605,0.0000022509,0.0000022391,0.0000022271,0.0000022168, +0.0000022085,0.0000022009,0.0000021933,0.0000021882,0.0000021836, +0.0000021805,0.0000021776,0.0000021752,0.0000021734,0.0000021734, +0.0000021751,0.0000021779,0.0000021820,0.0000021878,0.0000021953, +0.0000022027,0.0000022086,0.0000022136,0.0000022174,0.0000022199, +0.0000022201,0.0000022182,0.0000022143,0.0000022082,0.0000022006, +0.0000021923,0.0000021842,0.0000021765,0.0000021684,0.0000021601, +0.0000021523,0.0000021448,0.0000021375,0.0000021309,0.0000021255, +0.0000021222,0.0000021211,0.0000021209,0.0000021209,0.0000021219, +0.0000021234,0.0000021241,0.0000021242,0.0000021235,0.0000021215, +0.0000021188,0.0000021161,0.0000021140,0.0000021125,0.0000021113, +0.0000021101,0.0000021087,0.0000021068,0.0000021042,0.0000021015, +0.0000020989,0.0000020962,0.0000020933,0.0000020902,0.0000020864, +0.0000020823,0.0000020784,0.0000020757,0.0000020753,0.0000020771, +0.0000020802,0.0000020837,0.0000020876,0.0000020920,0.0000020961, +0.0000020991,0.0000021006,0.0000021009,0.0000021001,0.0000020984, +0.0000020956,0.0000020923,0.0000020886,0.0000020848,0.0000020811, +0.0000020776,0.0000020740,0.0000020713,0.0000020700,0.0000020706, +0.0000020722,0.0000020739,0.0000020753,0.0000020762,0.0000020764, +0.0000020763,0.0000020747,0.0000020737,0.0000020720,0.0000020696, +0.0000020669,0.0000020644,0.0000020622,0.0000020609,0.0000020603, +0.0000020607,0.0000020620,0.0000020631,0.0000020637,0.0000020649, +0.0000020664,0.0000020670,0.0000020675,0.0000020687,0.0000020686, +0.0000020675,0.0000020655,0.0000020631,0.0000020607,0.0000020600, +0.0000020623,0.0000020679,0.0000020742,0.0000020783,0.0000020797, +0.0000020780,0.0000020746,0.0000020695,0.0000020636,0.0000020603, +0.0000020610,0.0000020648,0.0000020681,0.0000020673,0.0000020637, +0.0000020616,0.0000020652,0.0000020719,0.0000020749,0.0000020724, +0.0000020647,0.0000020569,0.0000020527,0.0000020521,0.0000020537, +0.0000020576,0.0000020626,0.0000020671,0.0000020691,0.0000020683, +0.0000020685,0.0000020707,0.0000020715,0.0000020752,0.0000020938, +0.0000021210,0.0000021363,0.0000021376,0.0000021388,0.0000021480, +0.0000021593,0.0000021634,0.0000021628,0.0000021606,0.0000021562, +0.0000021486,0.0000021383,0.0000021264,0.0000021130,0.0000021039, +0.0000021027,0.0000021013,0.0000020869,0.0000020654,0.0000020528, +0.0000020515,0.0000020514,0.0000020491,0.0000020458,0.0000020433, +0.0000020428,0.0000020439,0.0000020468,0.0000020509,0.0000020548, +0.0000020586,0.0000020629,0.0000020665,0.0000020684,0.0000020690, +0.0000020693,0.0000020701,0.0000020716,0.0000020729,0.0000020744, +0.0000020753,0.0000020756,0.0000020748,0.0000020733,0.0000020720, +0.0000020714,0.0000020712,0.0000020718,0.0000020730,0.0000020745, +0.0000020755,0.0000020762,0.0000020766,0.0000020771,0.0000020771, +0.0000020767,0.0000020755,0.0000020731,0.0000020702,0.0000020687, +0.0000020670,0.0000020621,0.0000020556,0.0000020505,0.0000020459, +0.0000020417,0.0000020407,0.0000020426,0.0000020451,0.0000020459, +0.0000020457,0.0000020451,0.0000020444,0.0000020437,0.0000020428, +0.0000020414,0.0000020395,0.0000020376,0.0000020360,0.0000020338, +0.0000020304,0.0000020265,0.0000020228,0.0000020198,0.0000020172, +0.0000020149,0.0000020136,0.0000020141,0.0000020165,0.0000020207, +0.0000020253,0.0000020286,0.0000020302,0.0000020306,0.0000020305, +0.0000020303,0.0000020307,0.0000020317,0.0000020333,0.0000020351, +0.0000020368,0.0000020395,0.0000020443,0.0000020507,0.0000020562, +0.0000020586,0.0000020578,0.0000020555,0.0000020544,0.0000020566, +0.0000020626,0.0000020708,0.0000020784,0.0000020833,0.0000020840, +0.0000020822,0.0000020777,0.0000020709,0.0000020630,0.0000020574, +0.0000020578,0.0000020597,0.0000020630,0.0000020679,0.0000020753, +0.0000020870,0.0000021051,0.0000021271,0.0000021469,0.0000021615, +0.0000021727,0.0000021827,0.0000021914,0.0000021973,0.0000022005, +0.0000022021,0.0000022030,0.0000022020,0.0000021960,0.0000021846, +0.0000021725,0.0000021654,0.0000021654,0.0000021717,0.0000021767, +0.0000021691,0.0000021484,0.0000021306,0.0000021254,0.0000021276, +0.0000021258,0.0000021309,0.0000021397,0.0000021500,0.0000021600, +0.0000021672,0.0000021706,0.0000021717,0.0000021723,0.0000021724, +0.0000021715,0.0000021692,0.0000021668,0.0000021656,0.0000021669, +0.0000021708,0.0000021749,0.0000021774,0.0000021798,0.0000021818, +0.0000021827,0.0000021823,0.0000021812,0.0000021799,0.0000021786, +0.0000021770,0.0000021757,0.0000021754,0.0000021755,0.0000021764, +0.0000021780,0.0000021806,0.0000021833,0.0000021856,0.0000021865, +0.0000021856,0.0000021808,0.0000021730,0.0000021633,0.0000021529, +0.0000021430,0.0000021352,0.0000021303,0.0000021280,0.0000021263, +0.0000021250,0.0000021234,0.0000021216,0.0000021197,0.0000021173, +0.0000021147,0.0000021127,0.0000021115,0.0000021103,0.0000021091, +0.0000021087,0.0000021099,0.0000021129,0.0000021167,0.0000021212, +0.0000021263,0.0000021321,0.0000021386,0.0000021454,0.0000021522, +0.0000021592,0.0000021663,0.0000021726,0.0000021777,0.0000021808, +0.0000021832,0.0000021819,0.0000021804,0.0000021754,0.0000021706, +0.0000021661,0.0000021628,0.0000021619,0.0000021625,0.0000021636, +0.0000021645,0.0000021657,0.0000021668,0.0000021679,0.0000021689, +0.0000021693,0.0000021686,0.0000021667,0.0000021642,0.0000021619, +0.0000021604,0.0000021607,0.0000021627,0.0000021656,0.0000021682, +0.0000021693,0.0000021691,0.0000021682,0.0000021672,0.0000021672, +0.0000021686,0.0000021709,0.0000021731,0.0000021754,0.0000021773, +0.0000021778,0.0000021771,0.0000021763,0.0000021762,0.0000021763, +0.0000021758,0.0000021743,0.0000021720,0.0000021691,0.0000021661, +0.0000021620,0.0000021584,0.0000021566,0.0000021562,0.0000021558, +0.0000021557,0.0000021562,0.0000021573,0.0000021591,0.0000021611, +0.0000021622,0.0000021620,0.0000021616,0.0000021620,0.0000021632, +0.0000021641,0.0000021642,0.0000021637,0.0000021623,0.0000021601, +0.0000021578,0.0000021566,0.0000021561,0.0000021559,0.0000021565, +0.0000021581,0.0000021606,0.0000021639,0.0000021677,0.0000021709, +0.0000021724,0.0000021736,0.0000021748,0.0000021757,0.0000021760, +0.0000021758,0.0000021762,0.0000021771,0.0000021782,0.0000021790, +0.0000021788,0.0000021775,0.0000021759,0.0000021736,0.0000021689, +0.0000021640,0.0000021591,0.0000021551,0.0000021526,0.0000021513, +0.0000021509,0.0000021512,0.0000021530,0.0000021562,0.0000021599, +0.0000021636,0.0000021668,0.0000021705,0.0000021787,0.0000021932, +0.0000022109,0.0000022253,0.0000022321,0.0000022330,0.0000022326, +0.0000022360,0.0000022460,0.0000022593,0.0000022712,0.0000022786, +0.0000022808,0.0000022803,0.0000022784,0.0000022766,0.0000022752, +0.0000022751,0.0000022758,0.0000022776,0.0000022809,0.0000022848, +0.0000022876,0.0000022882,0.0000022877,0.0000022872,0.0000022863, +0.0000022851,0.0000022841,0.0000022839,0.0000022842,0.0000022852, +0.0000022866,0.0000022880,0.0000022892,0.0000022906,0.0000022922, +0.0000022941,0.0000022959,0.0000022975,0.0000022984,0.0000022973, +0.0000022943,0.0000022896,0.0000022847,0.0000022824,0.0000022825, +0.0000022845,0.0000022892,0.0000022950,0.0000023007,0.0000023057, +0.0000023088,0.0000023096,0.0000023089,0.0000023072,0.0000023051, +0.0000023029,0.0000023006,0.0000022989,0.0000022981,0.0000022982, +0.0000022991,0.0000023008,0.0000023030,0.0000023053,0.0000023078, +0.0000023104,0.0000023123,0.0000023130,0.0000023129,0.0000023121, +0.0000023110,0.0000023096,0.0000023086,0.0000023062,0.0000023032, +0.0000022995,0.0000022952,0.0000022903,0.0000022851,0.0000022803, +0.0000022760,0.0000022730,0.0000022710,0.0000022704,0.0000022711, +0.0000022711,0.0000022727,0.0000022745,0.0000022761,0.0000022779, +0.0000022802,0.0000022823,0.0000022835,0.0000022840,0.0000022840, +0.0000022838,0.0000022835,0.0000022824,0.0000022805,0.0000022779, +0.0000022750,0.0000022722,0.0000022701,0.0000022687,0.0000022671, +0.0000022655,0.0000022642,0.0000022630,0.0000022618,0.0000022607, +0.0000022598,0.0000022590,0.0000022579,0.0000022572,0.0000022568, +0.0000022568,0.0000022570,0.0000022572,0.0000022570,0.0000022554, +0.0000022518,0.0000022464,0.0000022398,0.0000022332,0.0000022280, +0.0000022236,0.0000022178,0.0000022104,0.0000022028,0.0000021936, +0.0000021816,0.0000021694,0.0000021590,0.0000021498,0.0000021409, +0.0000021327,0.0000021276,0.0000021255,0.0000021241,0.0000021223, +0.0000021214,0.0000021229,0.0000021276,0.0000021340,0.0000021391, +0.0000021420,0.0000021426,0.0000021422,0.0000021410,0.0000021400, +0.0000021375,0.0000021342,0.0000021308,0.0000021272,0.0000021232, +0.0000021193,0.0000021160,0.0000021138,0.0000021133,0.0000021140, +0.0000021145,0.0000021149,0.0000021143,0.0000021121,0.0000021101, +0.0000021092,0.0000021100,0.0000021113,0.0000021125,0.0000021136, +0.0000021152,0.0000021198,0.0000021319,0.0000021535,0.0000021805, +0.0000022014,0.0000022103,0.0000022120,0.0000022118,0.0000022110, +0.0000022093,0.0000022062,0.0000022019,0.0000021972,0.0000021943, +0.0000021941,0.0000021956,0.0000021982,0.0000022019,0.0000022053, +0.0000022071,0.0000022083,0.0000022093,0.0000022097,0.0000022114, +0.0000022181,0.0000022258,0.0000022282,0.0000022263,0.0000022218, +0.0000022194,0.0000022193,0.0000022186,0.0000022162,0.0000022142, +0.0000022133,0.0000022137,0.0000022154,0.0000022195,0.0000022256, +0.0000022336,0.0000022424,0.0000022496,0.0000022550,0.0000022586, +0.0000022612,0.0000022633,0.0000022649,0.0000022656,0.0000022652, +0.0000022638,0.0000022612,0.0000022586,0.0000022560,0.0000022525, +0.0000022481,0.0000022436,0.0000022402,0.0000022379,0.0000022363, +0.0000022348,0.0000022326,0.0000022305,0.0000022274,0.0000022230, +0.0000022183,0.0000022140,0.0000022093,0.0000022072,0.0000022098, +0.0000022150,0.0000022222,0.0000022268,0.0000022347,0.0000022576, +0.0000022726,0.0000022780,0.0000022855,0.0000022935,0.0000023003, +0.0000023017,0.0000023021,0.0000022953,0.0000022840,0.0000022755, +0.0000022708,0.0000022609,0.0000022481,0.0000022321,0.0000022174, +0.0000022202,0.0000022323,0.0000022389,0.0000022471,0.0000022595, +0.0000022735,0.0000022865,0.0000022975,0.0000023024,0.0000023015, +0.0000022977,0.0000022964,0.0000022959,0.0000022939,0.0000022907, +0.0000022889,0.0000022906,0.0000022972,0.0000023065,0.0000023139, +0.0000023193,0.0000023223,0.0000023228,0.0000023209,0.0000023144, +0.0000023073,0.0000023019,0.0000022955,0.0000022888,0.0000022854, +0.0000022846,0.0000022858,0.0000022873,0.0000022884,0.0000022901, +0.0000022945,0.0000023012,0.0000023084,0.0000023138,0.0000023170, +0.0000023180,0.0000023173,0.0000023157,0.0000023132,0.0000023099, +0.0000023061,0.0000023016,0.0000022977,0.0000022944,0.0000022917, +0.0000022899,0.0000022879,0.0000022858,0.0000022847,0.0000022855, +0.0000022877,0.0000022895,0.0000022916,0.0000022934,0.0000022946, +0.0000022963,0.0000023001,0.0000023043,0.0000023101,0.0000023169, +0.0000023176,0.0000023116,0.0000023070,0.0000023069,0.0000023048, +0.0000022927,0.0000022751,0.0000022524,0.0000022200,0.0000022124, +0.0000022228,0.0000022226,0.0000022141,0.0000022191,0.0000022334, +0.0000022278,0.0000021986,0.0000021835,0.0000021885,0.0000021982, +0.0000022048,0.0000022096,0.0000022138,0.0000022168,0.0000022191, +0.0000022212,0.0000022239,0.0000022256,0.0000022250,0.0000022224, +0.0000022203,0.0000022189,0.0000022179,0.0000022182,0.0000022208, +0.0000022252,0.0000022290,0.0000022303,0.0000022295,0.0000022281, +0.0000022277,0.0000022300,0.0000022344,0.0000022374,0.0000022390, +0.0000022407,0.0000022417,0.0000022395,0.0000022339,0.0000022212, +0.0000022054,0.0000021956,0.0000021950,0.0000022021,0.0000022107, +0.0000022175,0.0000022238,0.0000022327,0.0000022437,0.0000022533, +0.0000022591,0.0000022628,0.0000022658,0.0000022679,0.0000022680, +0.0000022655,0.0000022590,0.0000022507,0.0000022433,0.0000022353, +0.0000022260,0.0000022190,0.0000022166,0.0000022182,0.0000022216, +0.0000022250,0.0000022262,0.0000022258,0.0000022247,0.0000022234, +0.0000022224,0.0000022227,0.0000022246,0.0000022273,0.0000022310, +0.0000022354,0.0000022400,0.0000022442,0.0000022477,0.0000022501, +0.0000022513,0.0000022511,0.0000022496,0.0000022469,0.0000022439, +0.0000022412,0.0000022375,0.0000022336,0.0000022303,0.0000022289, +0.0000022275,0.0000022264,0.0000022262,0.0000022271,0.0000022285, +0.0000022303,0.0000022332,0.0000022378,0.0000022444,0.0000022522, +0.0000022598,0.0000022664,0.0000022712,0.0000022741,0.0000022763, +0.0000022778,0.0000022789,0.0000022794,0.0000022805,0.0000022831, +0.0000022880,0.0000022959,0.0000023060,0.0000023163,0.0000023247, +0.0000023303,0.0000023332,0.0000023331,0.0000023326,0.0000023314, +0.0000023301,0.0000023288,0.0000023272,0.0000023260,0.0000023255, +0.0000023269,0.0000023307,0.0000023358,0.0000023412,0.0000023466, +0.0000023530,0.0000023601,0.0000023657,0.0000023681,0.0000023681, +0.0000023652,0.0000023583,0.0000023494,0.0000023422,0.0000023389, +0.0000023384,0.0000023401,0.0000023441,0.0000023487,0.0000023520, +0.0000023539,0.0000023550,0.0000023556,0.0000023560,0.0000023561, +0.0000023559,0.0000023552,0.0000023542,0.0000023533,0.0000023528, +0.0000023528,0.0000023534,0.0000023536,0.0000023530,0.0000023522, +0.0000023521,0.0000023529,0.0000023545,0.0000023569,0.0000023594, +0.0000023615,0.0000023632,0.0000023643,0.0000023646,0.0000023643, +0.0000023640,0.0000023640,0.0000023638,0.0000023635,0.0000023629, +0.0000023617,0.0000023602,0.0000023581,0.0000023552,0.0000023516, +0.0000023471,0.0000023419,0.0000023364,0.0000023311,0.0000023265, +0.0000023228,0.0000023200,0.0000023180,0.0000023165,0.0000023150, +0.0000023125,0.0000023085,0.0000023033,0.0000022986,0.0000022947, +0.0000022910,0.0000022876,0.0000022858,0.0000022856,0.0000022877, +0.0000022905,0.0000022917,0.0000022910,0.0000022896,0.0000022897, +0.0000022918,0.0000022940,0.0000022941,0.0000022927,0.0000022915, +0.0000022904,0.0000022872,0.0000022797,0.0000022698,0.0000022619, +0.0000022571,0.0000022533,0.0000022473,0.0000022384,0.0000022285, +0.0000022207,0.0000022162,0.0000022141,0.0000022109,0.0000022049, +0.0000021962,0.0000021863,0.0000021763,0.0000021674,0.0000021598, +0.0000021542,0.0000021511,0.0000021500,0.0000021497,0.0000021498, +0.0000021499,0.0000021490,0.0000021469,0.0000021440,0.0000021402, +0.0000021360,0.0000021322,0.0000021292,0.0000021265,0.0000021240, +0.0000021224,0.0000021221,0.0000021226,0.0000021240,0.0000021250, +0.0000021250,0.0000021248,0.0000021244,0.0000021239,0.0000021237, +0.0000021240,0.0000021251,0.0000021278,0.0000021328,0.0000021397, +0.0000021481,0.0000021578,0.0000021683,0.0000021788,0.0000021883, +0.0000021962,0.0000022023,0.0000022069,0.0000022104,0.0000022126, +0.0000022139,0.0000022147,0.0000022153,0.0000022158,0.0000022159, +0.0000022154,0.0000022152,0.0000022156,0.0000022157,0.0000022154, +0.0000022146,0.0000022129,0.0000022120,0.0000022131,0.0000022153, +0.0000022192,0.0000022245,0.0000022286,0.0000022293,0.0000022268, +0.0000022228,0.0000022209,0.0000022234,0.0000022303,0.0000022369, +0.0000022413,0.0000022428,0.0000022403,0.0000022354,0.0000022321, +0.0000022322,0.0000022317,0.0000022291,0.0000022207,0.0000022104, +0.0000022034,0.0000022005,0.0000021996,0.0000022002,0.0000022020, +0.0000022053,0.0000022094,0.0000022147,0.0000022200,0.0000022246, +0.0000022304,0.0000022400,0.0000022549,0.0000022722,0.0000022834, +0.0000022833,0.0000022777,0.0000022731,0.0000022720,0.0000022720, +0.0000022706,0.0000022705,0.0000022826,0.0000023082,0.0000023238, +0.0000023265,0.0000023261,0.0000023151,0.0000022961,0.0000022712, +0.0000022344,0.0000022101,0.0000022086,0.0000022148,0.0000022183, +0.0000022193,0.0000022209,0.0000022213,0.0000022186,0.0000022145, +0.0000022107,0.0000022073,0.0000022047,0.0000022036,0.0000022037, +0.0000022041,0.0000022050,0.0000022066,0.0000022078,0.0000022070, +0.0000022044,0.0000022034,0.0000022056,0.0000022100,0.0000022149, +0.0000022208,0.0000022281,0.0000022345,0.0000022361,0.0000022307, +0.0000022220,0.0000022191,0.0000022238,0.0000022330,0.0000022423, +0.0000022505,0.0000022574,0.0000022611,0.0000022612,0.0000022606, +0.0000022606,0.0000022607,0.0000022607,0.0000022603,0.0000022587, +0.0000022558,0.0000022521,0.0000022486,0.0000022466,0.0000022470, +0.0000022486,0.0000022502,0.0000022514,0.0000022525,0.0000022539, +0.0000022559,0.0000022577,0.0000022574,0.0000022548,0.0000022483, +0.0000022401,0.0000022308,0.0000022190,0.0000022032,0.0000021860, +0.0000021736,0.0000021713,0.0000021802,0.0000021989,0.0000022171, +0.0000022210,0.0000022167,0.0000022161,0.0000022336,0.0000022646, +0.0000022777,0.0000022593,0.0000022219,0.0000021968,0.0000021924, +0.0000021913,0.0000021854,0.0000021739,0.0000021629,0.0000021585, +0.0000021596,0.0000021622,0.0000021625,0.0000021610,0.0000021593, +0.0000021579,0.0000021557,0.0000021509,0.0000021446,0.0000021394, +0.0000021362,0.0000021359,0.0000021393,0.0000021437,0.0000021473, +0.0000021496,0.0000021497,0.0000021484,0.0000021471,0.0000021465, +0.0000021475,0.0000021494,0.0000021508,0.0000021521,0.0000021542, +0.0000021577,0.0000021624,0.0000021673,0.0000021723,0.0000021777, +0.0000021841,0.0000021916,0.0000022002,0.0000022090,0.0000022168, +0.0000022231,0.0000022284,0.0000022334,0.0000022391,0.0000022463, +0.0000022541,0.0000022592,0.0000022597,0.0000022571,0.0000022549, +0.0000022559,0.0000022594,0.0000022604,0.0000022522,0.0000022329, +0.0000022138,0.0000022022,0.0000021927,0.0000021798,0.0000021640, +0.0000021484,0.0000021346,0.0000021214,0.0000021058,0.0000020872, +0.0000020695,0.0000020571,0.0000020494,0.0000020450,0.0000020441, +0.0000020452,0.0000020482,0.0000020532,0.0000020610,0.0000020697, +0.0000020766,0.0000020810,0.0000020845,0.0000020885,0.0000020929, +0.0000020980,0.0000021056,0.0000021163,0.0000021260,0.0000021309, +0.0000021291,0.0000021228,0.0000021130,0.0000021034,0.0000020972, +0.0000020953,0.0000020965,0.0000020997,0.0000021035,0.0000021082, +0.0000021161,0.0000021292,0.0000021444,0.0000021557,0.0000021592, +0.0000021569,0.0000021523,0.0000021477,0.0000021445,0.0000021418, +0.0000021393,0.0000021361,0.0000021315,0.0000021244,0.0000021157, +0.0000021088,0.0000021066,0.0000021077,0.0000021175,0.0000021330, +0.0000021489,0.0000021601,0.0000021648,0.0000021648,0.0000021624, +0.0000021598,0.0000021597,0.0000021648,0.0000021757,0.0000021919, +0.0000022131,0.0000022372,0.0000022601,0.0000022778,0.0000022872, +0.0000022895,0.0000022881,0.0000022865,0.0000022876,0.0000022920, +0.0000022993,0.0000023088,0.0000023204,0.0000023348,0.0000023517, +0.0000023683,0.0000023824,0.0000023938,0.0000024034,0.0000024124, +0.0000024220,0.0000024324,0.0000024426,0.0000024514,0.0000024581, +0.0000024623,0.0000024638,0.0000024649,0.0000024626,0.0000024587, +0.0000024533,0.0000024475,0.0000024424,0.0000024384,0.0000024351, +0.0000024322,0.0000024294,0.0000024261,0.0000024218,0.0000024164, +0.0000024110,0.0000024066,0.0000024042,0.0000024041,0.0000024062, +0.0000024104,0.0000024165,0.0000024223,0.0000024265,0.0000024287, +0.0000024291,0.0000024277,0.0000024239,0.0000024178,0.0000024098, +0.0000024002,0.0000023895,0.0000023781,0.0000023666,0.0000023549, +0.0000023420,0.0000023284,0.0000023155,0.0000023053,0.0000022986, +0.0000022935,0.0000022877,0.0000022803,0.0000022719,0.0000022641, +0.0000022572,0.0000022499,0.0000022414,0.0000022313,0.0000022202, +0.0000022093,0.0000021992,0.0000021899,0.0000021821,0.0000021774, +0.0000021768,0.0000021787,0.0000021821,0.0000021854,0.0000021876, +0.0000021880,0.0000021866,0.0000021834,0.0000021802,0.0000021783, +0.0000021774,0.0000021767,0.0000021763,0.0000021760,0.0000021756, +0.0000021756,0.0000021759,0.0000021757,0.0000021747,0.0000021730, +0.0000021711,0.0000021685,0.0000021654,0.0000021624,0.0000021603, +0.0000021606,0.0000021648,0.0000021740,0.0000021884,0.0000022072, +0.0000022285,0.0000022504,0.0000022701,0.0000022860,0.0000022975, +0.0000023044,0.0000023042,0.0000023042,0.0000022999,0.0000022936, +0.0000022873,0.0000022821,0.0000022784,0.0000022753,0.0000022723, +0.0000022677,0.0000022597,0.0000022482,0.0000022344,0.0000022210, +0.0000022094,0.0000022000,0.0000021922,0.0000021856,0.0000021806, +0.0000021761,0.0000021716,0.0000021678,0.0000021661,0.0000021665, +0.0000021677,0.0000021696,0.0000021726,0.0000021773,0.0000021828, +0.0000021879,0.0000021927,0.0000021968,0.0000022003,0.0000022019, +0.0000022013,0.0000021979,0.0000021925,0.0000021851,0.0000021763, +0.0000021674,0.0000021592,0.0000021513,0.0000021433,0.0000021357, +0.0000021293,0.0000021239,0.0000021195,0.0000021162,0.0000021146, +0.0000021144,0.0000021152,0.0000021164,0.0000021183,0.0000021202, +0.0000021213,0.0000021214,0.0000021211,0.0000021201,0.0000021180, +0.0000021156,0.0000021137,0.0000021122,0.0000021108,0.0000021095, +0.0000021082,0.0000021064,0.0000021039,0.0000021008,0.0000020976, +0.0000020946,0.0000020916,0.0000020885,0.0000020847,0.0000020803, +0.0000020756,0.0000020713,0.0000020681,0.0000020674,0.0000020688, +0.0000020715,0.0000020752,0.0000020798,0.0000020850,0.0000020898, +0.0000020932,0.0000020950,0.0000020954,0.0000020948,0.0000020926, +0.0000020893,0.0000020852,0.0000020803,0.0000020749,0.0000020689, +0.0000020631,0.0000020585,0.0000020558,0.0000020552,0.0000020560, +0.0000020575,0.0000020597,0.0000020628,0.0000020658,0.0000020681, +0.0000020697,0.0000020710,0.0000020711,0.0000020702,0.0000020679, +0.0000020647,0.0000020613,0.0000020585,0.0000020567,0.0000020556, +0.0000020559,0.0000020565,0.0000020568,0.0000020576,0.0000020589, +0.0000020594,0.0000020599,0.0000020616,0.0000020634,0.0000020641, +0.0000020642,0.0000020642,0.0000020634,0.0000020616,0.0000020604, +0.0000020603,0.0000020626,0.0000020664,0.0000020702,0.0000020737, +0.0000020762,0.0000020771,0.0000020745,0.0000020691,0.0000020638, +0.0000020603,0.0000020612,0.0000020646,0.0000020666,0.0000020633, +0.0000020593,0.0000020601,0.0000020660,0.0000020709,0.0000020691, +0.0000020612,0.0000020531,0.0000020488,0.0000020480,0.0000020496, +0.0000020536,0.0000020588,0.0000020638,0.0000020659,0.0000020659, +0.0000020674,0.0000020698,0.0000020708,0.0000020797,0.0000021042, +0.0000021291,0.0000021374,0.0000021371,0.0000021408,0.0000021520, +0.0000021600,0.0000021608,0.0000021588,0.0000021551,0.0000021482, +0.0000021372,0.0000021236,0.0000021098,0.0000021026,0.0000021019, +0.0000020975,0.0000020792,0.0000020587,0.0000020504,0.0000020508, +0.0000020515,0.0000020491,0.0000020446,0.0000020413,0.0000020404, +0.0000020418,0.0000020450,0.0000020490,0.0000020529,0.0000020562, +0.0000020595,0.0000020624,0.0000020643,0.0000020649,0.0000020651, +0.0000020658,0.0000020678,0.0000020700,0.0000020724,0.0000020743, +0.0000020752,0.0000020751,0.0000020741,0.0000020727,0.0000020714, +0.0000020704,0.0000020701,0.0000020704,0.0000020713,0.0000020721, +0.0000020727,0.0000020729,0.0000020728,0.0000020724,0.0000020715, +0.0000020707,0.0000020700,0.0000020689,0.0000020681,0.0000020683, +0.0000020681,0.0000020638,0.0000020562,0.0000020490,0.0000020427, +0.0000020383,0.0000020380,0.0000020409,0.0000020440,0.0000020452, +0.0000020447,0.0000020435,0.0000020428,0.0000020424,0.0000020418, +0.0000020408,0.0000020392,0.0000020373,0.0000020352,0.0000020325, +0.0000020291,0.0000020256,0.0000020230,0.0000020210,0.0000020184, +0.0000020152,0.0000020124,0.0000020107,0.0000020104,0.0000020119, +0.0000020154,0.0000020198,0.0000020230,0.0000020240,0.0000020237, +0.0000020228,0.0000020220,0.0000020219,0.0000020226,0.0000020243, +0.0000020265,0.0000020288,0.0000020320,0.0000020370,0.0000020430, +0.0000020485,0.0000020519,0.0000020523,0.0000020504,0.0000020479, +0.0000020476,0.0000020502,0.0000020570,0.0000020667,0.0000020761, +0.0000020821,0.0000020834,0.0000020827,0.0000020797,0.0000020748, +0.0000020682,0.0000020629,0.0000020624,0.0000020643,0.0000020667, +0.0000020694,0.0000020737,0.0000020819,0.0000020966,0.0000021176, +0.0000021391,0.0000021565,0.0000021700,0.0000021816,0.0000021913, +0.0000021973,0.0000021999,0.0000022003,0.0000021985,0.0000021929, +0.0000021835,0.0000021729,0.0000021642,0.0000021606,0.0000021638, +0.0000021722,0.0000021731,0.0000021592,0.0000021385,0.0000021264, +0.0000021333,0.0000021277,0.0000021292,0.0000021350,0.0000021435, +0.0000021528,0.0000021616,0.0000021682,0.0000021713,0.0000021715, +0.0000021697,0.0000021662,0.0000021622,0.0000021592,0.0000021587, +0.0000021602,0.0000021627,0.0000021653,0.0000021679,0.0000021701, +0.0000021717,0.0000021726,0.0000021727,0.0000021716,0.0000021697, +0.0000021682,0.0000021683,0.0000021700,0.0000021725,0.0000021752, +0.0000021781,0.0000021808,0.0000021820,0.0000021793,0.0000021716, +0.0000021607,0.0000021483,0.0000021367,0.0000021270,0.0000021196, +0.0000021149,0.0000021130,0.0000021119,0.0000021112,0.0000021106, +0.0000021102,0.0000021104,0.0000021109,0.0000021107,0.0000021094, +0.0000021071,0.0000021046,0.0000021031,0.0000021022,0.0000021014, +0.0000021012,0.0000021023,0.0000021040,0.0000021062,0.0000021088, +0.0000021117,0.0000021147,0.0000021179,0.0000021193,0.0000021232, +0.0000021278,0.0000021331,0.0000021391,0.0000021468,0.0000021558, +0.0000021645,0.0000021722,0.0000021780,0.0000021809,0.0000021825, +0.0000021810,0.0000021804,0.0000021775,0.0000021751,0.0000021730, +0.0000021708,0.0000021692,0.0000021684,0.0000021682,0.0000021685, +0.0000021692,0.0000021695,0.0000021688,0.0000021667,0.0000021639, +0.0000021614,0.0000021598,0.0000021596,0.0000021607,0.0000021620, +0.0000021630,0.0000021631,0.0000021621,0.0000021605,0.0000021593, +0.0000021592,0.0000021607,0.0000021631,0.0000021654,0.0000021672, +0.0000021682,0.0000021683,0.0000021682,0.0000021688,0.0000021700, +0.0000021711,0.0000021713,0.0000021707,0.0000021694,0.0000021676, +0.0000021646,0.0000021604,0.0000021566,0.0000021546,0.0000021535, +0.0000021523,0.0000021512,0.0000021510,0.0000021519,0.0000021536, +0.0000021552,0.0000021562,0.0000021565,0.0000021562,0.0000021565, +0.0000021576,0.0000021585,0.0000021588,0.0000021585,0.0000021569, +0.0000021543,0.0000021522,0.0000021514,0.0000021511,0.0000021512, +0.0000021520,0.0000021533,0.0000021551,0.0000021578,0.0000021608, +0.0000021627,0.0000021634,0.0000021638,0.0000021645,0.0000021653, +0.0000021653,0.0000021654,0.0000021667,0.0000021687,0.0000021709, +0.0000021724,0.0000021732,0.0000021743,0.0000021759,0.0000021764, +0.0000021755,0.0000021741,0.0000021702,0.0000021655,0.0000021609, +0.0000021567,0.0000021535,0.0000021522,0.0000021535,0.0000021567, +0.0000021610,0.0000021651,0.0000021688,0.0000021715,0.0000021733, +0.0000021772,0.0000021885,0.0000022062,0.0000022229,0.0000022314, +0.0000022320,0.0000022307,0.0000022319,0.0000022391,0.0000022510, +0.0000022634,0.0000022730,0.0000022780,0.0000022789,0.0000022785, +0.0000022773,0.0000022760,0.0000022750,0.0000022741,0.0000022741, +0.0000022755,0.0000022775,0.0000022796,0.0000022815,0.0000022831, +0.0000022838,0.0000022837,0.0000022833,0.0000022831,0.0000022834, +0.0000022845,0.0000022863,0.0000022882,0.0000022897,0.0000022909, +0.0000022919,0.0000022933,0.0000022950,0.0000022968,0.0000022988, +0.0000023007,0.0000023024,0.0000023023,0.0000023004,0.0000022969, +0.0000022922,0.0000022880,0.0000022867,0.0000022863,0.0000022876, +0.0000022897,0.0000022921,0.0000022943,0.0000022960,0.0000022970, +0.0000022974,0.0000022971,0.0000022964,0.0000022960,0.0000022958, +0.0000022959,0.0000022966,0.0000022982,0.0000023002,0.0000023023, +0.0000023043,0.0000023060,0.0000023069,0.0000023067,0.0000023051, +0.0000023027,0.0000022999,0.0000022964,0.0000022921,0.0000022875, +0.0000022829,0.0000022784,0.0000022744,0.0000022716,0.0000022700, +0.0000022693,0.0000022700,0.0000022711,0.0000022735,0.0000022767, +0.0000022801,0.0000022834,0.0000022865,0.0000022891,0.0000022907, +0.0000022918,0.0000022929,0.0000022937,0.0000022937,0.0000022928, +0.0000022911,0.0000022895,0.0000022881,0.0000022865,0.0000022842, +0.0000022815,0.0000022784,0.0000022752,0.0000022722,0.0000022696, +0.0000022673,0.0000022652,0.0000022639,0.0000022625,0.0000022608, +0.0000022586,0.0000022562,0.0000022539,0.0000022517,0.0000022497, +0.0000022482,0.0000022471,0.0000022462,0.0000022453,0.0000022444, +0.0000022429,0.0000022402,0.0000022363,0.0000022314,0.0000022264, +0.0000022217,0.0000022161,0.0000022082,0.0000021984,0.0000021888, +0.0000021785,0.0000021669,0.0000021565,0.0000021486,0.0000021412, +0.0000021320,0.0000021230,0.0000021180,0.0000021150,0.0000021122, +0.0000021113,0.0000021140,0.0000021207,0.0000021282,0.0000021342, +0.0000021372,0.0000021381,0.0000021381,0.0000021373,0.0000021365, +0.0000021353,0.0000021332,0.0000021306,0.0000021274,0.0000021236, +0.0000021199,0.0000021170,0.0000021148,0.0000021131,0.0000021120, +0.0000021119,0.0000021123,0.0000021124,0.0000021110,0.0000021097, +0.0000021098,0.0000021120,0.0000021148,0.0000021165,0.0000021176, +0.0000021197,0.0000021256,0.0000021399,0.0000021637,0.0000021892, +0.0000022058,0.0000022109,0.0000022117,0.0000022113,0.0000022090, +0.0000022053,0.0000022004,0.0000021956,0.0000021923,0.0000021913, +0.0000021928,0.0000021958,0.0000021999,0.0000022040,0.0000022069, +0.0000022090,0.0000022116,0.0000022138,0.0000022152,0.0000022186, +0.0000022250,0.0000022284,0.0000022264,0.0000022206,0.0000022159, +0.0000022129,0.0000022112,0.0000022106,0.0000022106,0.0000022112, +0.0000022138,0.0000022178,0.0000022213,0.0000022238,0.0000022277, +0.0000022335,0.0000022406,0.0000022480,0.0000022533,0.0000022562, +0.0000022586,0.0000022609,0.0000022631,0.0000022639,0.0000022632, +0.0000022610,0.0000022573,0.0000022533,0.0000022503,0.0000022480, +0.0000022455,0.0000022427,0.0000022400,0.0000022381,0.0000022366, +0.0000022349,0.0000022330,0.0000022294,0.0000022247,0.0000022194, +0.0000022133,0.0000022070,0.0000022027,0.0000022019,0.0000022049, +0.0000022102,0.0000022172,0.0000022233,0.0000022328,0.0000022560, +0.0000022750,0.0000022781,0.0000022807,0.0000022864,0.0000022921, +0.0000022931,0.0000022934,0.0000022893,0.0000022808,0.0000022732, +0.0000022698,0.0000022647,0.0000022545,0.0000022411,0.0000022217, +0.0000022131,0.0000022216,0.0000022328,0.0000022391,0.0000022465, +0.0000022566,0.0000022701,0.0000022841,0.0000022957,0.0000023014, +0.0000023014,0.0000022982,0.0000022966,0.0000022961,0.0000022942, +0.0000022906,0.0000022877,0.0000022883,0.0000022933,0.0000023015, +0.0000023088,0.0000023139,0.0000023170,0.0000023184,0.0000023190, +0.0000023160,0.0000023093,0.0000023035,0.0000022997,0.0000022940, +0.0000022875,0.0000022840,0.0000022833,0.0000022839,0.0000022849, +0.0000022859,0.0000022885,0.0000022940,0.0000023014,0.0000023075, +0.0000023114,0.0000023131,0.0000023130,0.0000023118,0.0000023097, +0.0000023070,0.0000023034,0.0000022988,0.0000022951,0.0000022922, +0.0000022901,0.0000022887,0.0000022868,0.0000022843,0.0000022829, +0.0000022837,0.0000022865,0.0000022885,0.0000022903,0.0000022918, +0.0000022926,0.0000022941,0.0000022980,0.0000023028,0.0000023085, +0.0000023154,0.0000023178,0.0000023127,0.0000023066,0.0000023062, +0.0000023061,0.0000022983,0.0000022813,0.0000022631,0.0000022330, +0.0000022122,0.0000022167,0.0000022239,0.0000022158,0.0000022117, +0.0000022240,0.0000022343,0.0000022217,0.0000021948,0.0000021872, +0.0000021948,0.0000022032,0.0000022082,0.0000022122,0.0000022152, +0.0000022172,0.0000022186,0.0000022198,0.0000022212,0.0000022221, +0.0000022216,0.0000022205,0.0000022199,0.0000022193,0.0000022191, +0.0000022200,0.0000022224,0.0000022258,0.0000022294,0.0000022315, +0.0000022314,0.0000022292,0.0000022266,0.0000022254,0.0000022266, +0.0000022281,0.0000022293,0.0000022313,0.0000022341,0.0000022364, +0.0000022356,0.0000022290,0.0000022166,0.0000022039,0.0000021987, +0.0000022012,0.0000022076,0.0000022156,0.0000022226,0.0000022302, +0.0000022399,0.0000022502,0.0000022579,0.0000022628,0.0000022666, +0.0000022698,0.0000022711,0.0000022695,0.0000022638,0.0000022555, +0.0000022475,0.0000022405,0.0000022337,0.0000022266,0.0000022203, +0.0000022174,0.0000022182,0.0000022207,0.0000022226,0.0000022227, +0.0000022213,0.0000022192,0.0000022173,0.0000022166,0.0000022174, +0.0000022201,0.0000022235,0.0000022280,0.0000022329,0.0000022374, +0.0000022413,0.0000022446,0.0000022468,0.0000022474,0.0000022469, +0.0000022452,0.0000022430,0.0000022406,0.0000022375,0.0000022342, +0.0000022315,0.0000022296,0.0000022272,0.0000022248,0.0000022239, +0.0000022238,0.0000022244,0.0000022247,0.0000022251,0.0000022260, +0.0000022280,0.0000022308,0.0000022346,0.0000022393,0.0000022446, +0.0000022503,0.0000022558,0.0000022613,0.0000022666,0.0000022713, +0.0000022750,0.0000022771,0.0000022789,0.0000022818,0.0000022872, +0.0000022952,0.0000023051,0.0000023156,0.0000023248,0.0000023307, +0.0000023331,0.0000023330,0.0000023332,0.0000023329,0.0000023324, +0.0000023309,0.0000023285,0.0000023268,0.0000023273,0.0000023294, +0.0000023338,0.0000023397,0.0000023468,0.0000023547,0.0000023620, +0.0000023667,0.0000023682,0.0000023673,0.0000023621,0.0000023534, +0.0000023449,0.0000023398,0.0000023380,0.0000023382,0.0000023409, +0.0000023451,0.0000023487,0.0000023509,0.0000023525,0.0000023537, +0.0000023545,0.0000023550,0.0000023551,0.0000023550,0.0000023548, +0.0000023544,0.0000023539,0.0000023538,0.0000023541,0.0000023541, +0.0000023530,0.0000023511,0.0000023492,0.0000023479,0.0000023480, +0.0000023496,0.0000023524,0.0000023551,0.0000023570,0.0000023583, +0.0000023588,0.0000023587,0.0000023582,0.0000023573,0.0000023564, +0.0000023556,0.0000023547,0.0000023539,0.0000023522,0.0000023496, +0.0000023463,0.0000023425,0.0000023381,0.0000023339,0.0000023301, +0.0000023270,0.0000023244,0.0000023223,0.0000023206,0.0000023192, +0.0000023176,0.0000023155,0.0000023120,0.0000023069,0.0000023014, +0.0000022966,0.0000022929,0.0000022897,0.0000022868,0.0000022860, +0.0000022871,0.0000022900,0.0000022929,0.0000022937,0.0000022931, +0.0000022925,0.0000022929,0.0000022944,0.0000022951,0.0000022942, +0.0000022925,0.0000022916,0.0000022901,0.0000022844,0.0000022744, +0.0000022647,0.0000022591,0.0000022560,0.0000022520,0.0000022449, +0.0000022349,0.0000022254,0.0000022192,0.0000022152,0.0000022109, +0.0000022029,0.0000021910,0.0000021778,0.0000021662,0.0000021575, +0.0000021508,0.0000021450,0.0000021401,0.0000021365,0.0000021353, +0.0000021353,0.0000021363,0.0000021376,0.0000021388,0.0000021392, +0.0000021384,0.0000021364,0.0000021334,0.0000021300,0.0000021269, +0.0000021242,0.0000021214,0.0000021192,0.0000021186,0.0000021189, +0.0000021202,0.0000021216,0.0000021223,0.0000021223,0.0000021220, +0.0000021210,0.0000021195,0.0000021179,0.0000021159,0.0000021143, +0.0000021143,0.0000021162,0.0000021202,0.0000021264,0.0000021347, +0.0000021449,0.0000021556,0.0000021656,0.0000021740,0.0000021806, +0.0000021859,0.0000021901,0.0000021932,0.0000021954,0.0000021976, +0.0000021999,0.0000022021,0.0000022036,0.0000022049,0.0000022063, +0.0000022073,0.0000022085,0.0000022098,0.0000022106,0.0000022108, +0.0000022124,0.0000022138,0.0000022155,0.0000022189,0.0000022240, +0.0000022279,0.0000022277,0.0000022239,0.0000022195,0.0000022188, +0.0000022230,0.0000022292,0.0000022343,0.0000022378,0.0000022391, +0.0000022368,0.0000022329,0.0000022301,0.0000022297,0.0000022312, +0.0000022307,0.0000022263,0.0000022183,0.0000022128,0.0000022095, +0.0000022079,0.0000022071,0.0000022074,0.0000022085,0.0000022111, +0.0000022146,0.0000022185,0.0000022225,0.0000022279,0.0000022367, +0.0000022515,0.0000022700,0.0000022821,0.0000022831,0.0000022782, +0.0000022729,0.0000022706,0.0000022696,0.0000022692,0.0000022714, +0.0000022877,0.0000023121,0.0000023239,0.0000023258,0.0000023243, +0.0000023120,0.0000022925,0.0000022639,0.0000022258,0.0000022067, +0.0000022071,0.0000022116,0.0000022137,0.0000022168,0.0000022205, +0.0000022210,0.0000022186,0.0000022142,0.0000022100,0.0000022068, +0.0000022047,0.0000022039,0.0000022036,0.0000022044,0.0000022066, +0.0000022084,0.0000022079,0.0000022049,0.0000022022,0.0000022023, +0.0000022043,0.0000022072,0.0000022117,0.0000022193,0.0000022295, +0.0000022378,0.0000022393,0.0000022334,0.0000022253,0.0000022234, +0.0000022281,0.0000022366,0.0000022451,0.0000022526,0.0000022586, +0.0000022612,0.0000022610,0.0000022602,0.0000022600,0.0000022600, +0.0000022597,0.0000022591,0.0000022576,0.0000022545,0.0000022502, +0.0000022455,0.0000022416,0.0000022399,0.0000022406,0.0000022424, +0.0000022443,0.0000022453,0.0000022459,0.0000022469,0.0000022492, +0.0000022527,0.0000022540,0.0000022519,0.0000022460,0.0000022384, +0.0000022296,0.0000022180,0.0000022030,0.0000021869,0.0000021750, +0.0000021728,0.0000021812,0.0000021988,0.0000022161,0.0000022198, +0.0000022159,0.0000022157,0.0000022322,0.0000022617,0.0000022721, +0.0000022524,0.0000022152,0.0000021934,0.0000021909,0.0000021895, +0.0000021821,0.0000021706,0.0000021617,0.0000021592,0.0000021600, +0.0000021611,0.0000021598,0.0000021574,0.0000021552,0.0000021531, +0.0000021491,0.0000021436,0.0000021386,0.0000021354,0.0000021355, +0.0000021394,0.0000021451,0.0000021503,0.0000021542,0.0000021555, +0.0000021546,0.0000021531,0.0000021515,0.0000021512,0.0000021519, +0.0000021528,0.0000021539,0.0000021556,0.0000021591,0.0000021638, +0.0000021688,0.0000021739,0.0000021791,0.0000021846,0.0000021907, +0.0000021982,0.0000022070,0.0000022156,0.0000022233,0.0000022298, +0.0000022354,0.0000022411,0.0000022480,0.0000022553,0.0000022605, +0.0000022615,0.0000022592,0.0000022571,0.0000022578,0.0000022608, +0.0000022615,0.0000022536,0.0000022344,0.0000022147,0.0000022023, +0.0000021920,0.0000021784,0.0000021623,0.0000021466,0.0000021328, +0.0000021196,0.0000021042,0.0000020858,0.0000020686,0.0000020561, +0.0000020473,0.0000020417,0.0000020400,0.0000020408,0.0000020425, +0.0000020453,0.0000020504,0.0000020581,0.0000020672,0.0000020753, +0.0000020810,0.0000020848,0.0000020880,0.0000020916,0.0000020961, +0.0000021031,0.0000021129,0.0000021226,0.0000021286,0.0000021284, +0.0000021223,0.0000021120,0.0000021018,0.0000020954,0.0000020938, +0.0000020953,0.0000020991,0.0000021040,0.0000021091,0.0000021160, +0.0000021271,0.0000021413,0.0000021537,0.0000021588,0.0000021597, +0.0000021561,0.0000021531,0.0000021511,0.0000021496,0.0000021477, +0.0000021442,0.0000021386,0.0000021307,0.0000021218,0.0000021131, +0.0000021061,0.0000021051,0.0000021119,0.0000021256,0.0000021415, +0.0000021537,0.0000021593,0.0000021594,0.0000021563,0.0000021527, +0.0000021524,0.0000021578,0.0000021687,0.0000021858,0.0000022080, +0.0000022326,0.0000022558,0.0000022746,0.0000022868,0.0000022903, +0.0000022899,0.0000022876,0.0000022867,0.0000022887,0.0000022938, +0.0000023004,0.0000023082,0.0000023189,0.0000023326,0.0000023477, +0.0000023624,0.0000023759,0.0000023881,0.0000023992,0.0000024097, +0.0000024202,0.0000024308,0.0000024411,0.0000024499,0.0000024572, +0.0000024626,0.0000024651,0.0000024643,0.0000024619,0.0000024575, +0.0000024514,0.0000024461,0.0000024423,0.0000024397,0.0000024375, +0.0000024357,0.0000024337,0.0000024307,0.0000024266,0.0000024219, +0.0000024175,0.0000024146,0.0000024136,0.0000024148,0.0000024184, +0.0000024231,0.0000024275,0.0000024305,0.0000024317,0.0000024317, +0.0000024303,0.0000024264,0.0000024195,0.0000024100,0.0000023987, +0.0000023861,0.0000023737,0.0000023627,0.0000023526,0.0000023421, +0.0000023309,0.0000023192,0.0000023083,0.0000022992,0.0000022913, +0.0000022827,0.0000022726,0.0000022626,0.0000022542,0.0000022486, +0.0000022427,0.0000022352,0.0000022250,0.0000022131,0.0000022011, +0.0000021906,0.0000021819,0.0000021758,0.0000021734,0.0000021738, +0.0000021762,0.0000021790,0.0000021815,0.0000021831,0.0000021830, +0.0000021810,0.0000021783,0.0000021761,0.0000021745,0.0000021737, +0.0000021734,0.0000021732,0.0000021731,0.0000021735,0.0000021737, +0.0000021733,0.0000021722,0.0000021709,0.0000021695,0.0000021675, +0.0000021644,0.0000021602,0.0000021560,0.0000021529,0.0000021507, +0.0000021500,0.0000021525,0.0000021589,0.0000021696,0.0000021848, +0.0000022039,0.0000022250,0.0000022468,0.0000022670,0.0000022842, +0.0000022963,0.0000023019,0.0000022991,0.0000022962,0.0000022891, +0.0000022825,0.0000022779,0.0000022757,0.0000022749,0.0000022732, +0.0000022679,0.0000022575,0.0000022427,0.0000022269,0.0000022132, +0.0000022028,0.0000021941,0.0000021862,0.0000021790,0.0000021723, +0.0000021668,0.0000021627,0.0000021616,0.0000021625,0.0000021639, +0.0000021660,0.0000021698,0.0000021743,0.0000021784,0.0000021826, +0.0000021862,0.0000021890,0.0000021908,0.0000021907,0.0000021878, +0.0000021827,0.0000021760,0.0000021678,0.0000021586,0.0000021504, +0.0000021434,0.0000021368,0.0000021302,0.0000021241,0.0000021188, +0.0000021146,0.0000021111,0.0000021090,0.0000021079,0.0000021077, +0.0000021081,0.0000021100,0.0000021124,0.0000021143,0.0000021152, +0.0000021154,0.0000021154,0.0000021151,0.0000021138,0.0000021120, +0.0000021106,0.0000021095,0.0000021083,0.0000021072,0.0000021060, +0.0000021039,0.0000021012,0.0000020980,0.0000020947,0.0000020914, +0.0000020880,0.0000020841,0.0000020796,0.0000020748,0.0000020699, +0.0000020654,0.0000020617,0.0000020603,0.0000020602,0.0000020615, +0.0000020647,0.0000020695,0.0000020754,0.0000020808,0.0000020844, +0.0000020865,0.0000020873,0.0000020867,0.0000020844,0.0000020806, +0.0000020758,0.0000020704,0.0000020642,0.0000020571,0.0000020503, +0.0000020454,0.0000020433,0.0000020434,0.0000020441,0.0000020450, +0.0000020466,0.0000020488,0.0000020514,0.0000020541,0.0000020569, +0.0000020594,0.0000020612,0.0000020620,0.0000020613,0.0000020596, +0.0000020578,0.0000020561,0.0000020547,0.0000020544,0.0000020544, +0.0000020543,0.0000020546,0.0000020553,0.0000020552,0.0000020548, +0.0000020554,0.0000020565,0.0000020572,0.0000020578,0.0000020588, +0.0000020598,0.0000020601,0.0000020601,0.0000020601,0.0000020607, +0.0000020614,0.0000020620,0.0000020628,0.0000020649,0.0000020683, +0.0000020716,0.0000020734,0.0000020727,0.0000020699,0.0000020642, +0.0000020600,0.0000020611,0.0000020645,0.0000020631,0.0000020586, +0.0000020564,0.0000020610,0.0000020665,0.0000020655,0.0000020578, +0.0000020498,0.0000020452,0.0000020441,0.0000020458,0.0000020502, +0.0000020560,0.0000020609,0.0000020627,0.0000020636,0.0000020666, +0.0000020691,0.0000020719,0.0000020872,0.0000021150,0.0000021344, +0.0000021367,0.0000021363,0.0000021427,0.0000021520,0.0000021559, +0.0000021554,0.0000021523,0.0000021452,0.0000021333,0.0000021188, +0.0000021067,0.0000021021,0.0000021012,0.0000020920,0.0000020703, +0.0000020527,0.0000020489,0.0000020507,0.0000020517,0.0000020493, +0.0000020438,0.0000020387,0.0000020370,0.0000020383,0.0000020424, +0.0000020471,0.0000020512,0.0000020545,0.0000020574,0.0000020597, +0.0000020613,0.0000020621,0.0000020623,0.0000020628,0.0000020645, +0.0000020670,0.0000020698,0.0000020723,0.0000020738,0.0000020743, +0.0000020740,0.0000020730,0.0000020716,0.0000020704,0.0000020698, +0.0000020698,0.0000020700,0.0000020702,0.0000020703,0.0000020704, +0.0000020700,0.0000020693,0.0000020683,0.0000020673,0.0000020672, +0.0000020675,0.0000020678,0.0000020682,0.0000020697,0.0000020697, +0.0000020644,0.0000020550,0.0000020462,0.0000020393,0.0000020357, +0.0000020362,0.0000020397,0.0000020430,0.0000020443,0.0000020439, +0.0000020430,0.0000020424,0.0000020419,0.0000020414,0.0000020407, +0.0000020395,0.0000020378,0.0000020355,0.0000020326,0.0000020292, +0.0000020260,0.0000020235,0.0000020214,0.0000020188,0.0000020156, +0.0000020127,0.0000020108,0.0000020096,0.0000020091,0.0000020096, +0.0000020122,0.0000020159,0.0000020188,0.0000020196,0.0000020187, +0.0000020165,0.0000020147,0.0000020142,0.0000020149,0.0000020165, +0.0000020189,0.0000020220,0.0000020260,0.0000020310,0.0000020363, +0.0000020415,0.0000020454,0.0000020473,0.0000020468,0.0000020454, +0.0000020431,0.0000020427,0.0000020453,0.0000020528,0.0000020638, +0.0000020740,0.0000020800,0.0000020810,0.0000020819,0.0000020818, +0.0000020800,0.0000020756,0.0000020699,0.0000020672,0.0000020680, +0.0000020698,0.0000020715,0.0000020733,0.0000020772,0.0000020884, +0.0000021100,0.0000021353,0.0000021558,0.0000021704,0.0000021817, +0.0000021905,0.0000021956,0.0000021968,0.0000021951,0.0000021900, +0.0000021824,0.0000021736,0.0000021649,0.0000021587,0.0000021588, +0.0000021650,0.0000021709,0.0000021667,0.0000021502,0.0000021624, +0.0000021464,0.0000021333,0.0000021301,0.0000021324,0.0000021382, +0.0000021460,0.0000021546,0.0000021631,0.0000021694,0.0000021711, +0.0000021702,0.0000021670,0.0000021624,0.0000021588,0.0000021582, +0.0000021587,0.0000021600,0.0000021615,0.0000021630,0.0000021641, +0.0000021650,0.0000021660,0.0000021668,0.0000021671,0.0000021673, +0.0000021678,0.0000021696,0.0000021718,0.0000021725,0.0000021708, +0.0000021670,0.0000021602,0.0000021496,0.0000021375,0.0000021270, +0.0000021198,0.0000021162,0.0000021151,0.0000021146,0.0000021141, +0.0000021138,0.0000021133,0.0000021125,0.0000021114,0.0000021105, +0.0000021105,0.0000021116,0.0000021133,0.0000021141,0.0000021129, +0.0000021102,0.0000021083,0.0000021074,0.0000021071,0.0000021074, +0.0000021078,0.0000021083,0.0000021092,0.0000021109,0.0000021133, +0.0000021161,0.0000021185,0.0000021198,0.0000021204,0.0000021215, +0.0000021230,0.0000021242,0.0000021265,0.0000021294,0.0000021349, +0.0000021409,0.0000021477,0.0000021562,0.0000021649,0.0000021726, +0.0000021789,0.0000021827,0.0000021847,0.0000021842,0.0000021842, +0.0000021819,0.0000021797,0.0000021774,0.0000021751,0.0000021735, +0.0000021730,0.0000021728,0.0000021716,0.0000021694,0.0000021668, +0.0000021643,0.0000021628,0.0000021625,0.0000021626,0.0000021624, +0.0000021619,0.0000021608,0.0000021591,0.0000021572,0.0000021560, +0.0000021563,0.0000021580,0.0000021606,0.0000021626,0.0000021637, +0.0000021640,0.0000021640,0.0000021643,0.0000021650,0.0000021657, +0.0000021663,0.0000021663,0.0000021657,0.0000021645,0.0000021626, +0.0000021593,0.0000021548,0.0000021512,0.0000021499,0.0000021488, +0.0000021474,0.0000021467,0.0000021468,0.0000021478,0.0000021495, +0.0000021514,0.0000021530,0.0000021535,0.0000021532,0.0000021534, +0.0000021543,0.0000021549,0.0000021546,0.0000021534,0.0000021510, +0.0000021479,0.0000021458,0.0000021454,0.0000021456,0.0000021461, +0.0000021470,0.0000021477,0.0000021489,0.0000021513,0.0000021542, +0.0000021562,0.0000021568,0.0000021571,0.0000021576,0.0000021574, +0.0000021561,0.0000021555,0.0000021558,0.0000021574,0.0000021597, +0.0000021617,0.0000021633,0.0000021663,0.0000021701,0.0000021731, +0.0000021749,0.0000021757,0.0000021757,0.0000021752,0.0000021723, +0.0000021679,0.0000021623,0.0000021570,0.0000021548,0.0000021557, +0.0000021600,0.0000021653,0.0000021700,0.0000021735,0.0000021754, +0.0000021757,0.0000021772,0.0000021845,0.0000022010,0.0000022190, +0.0000022292,0.0000022310,0.0000022297,0.0000022292,0.0000022327, +0.0000022425,0.0000022553,0.0000022666,0.0000022740,0.0000022776, +0.0000022789,0.0000022791,0.0000022788,0.0000022778,0.0000022759, +0.0000022745,0.0000022736,0.0000022737,0.0000022744,0.0000022757, +0.0000022771,0.0000022785,0.0000022794,0.0000022802,0.0000022812, +0.0000022829,0.0000022853,0.0000022881,0.0000022904,0.0000022923, +0.0000022936,0.0000022948,0.0000022960,0.0000022974,0.0000022989, +0.0000023010,0.0000023034,0.0000023059,0.0000023074,0.0000023072, +0.0000023055,0.0000023023,0.0000022985,0.0000022946,0.0000022908, +0.0000022886,0.0000022855,0.0000022829,0.0000022811,0.0000022796, +0.0000022785,0.0000022779,0.0000022780,0.0000022784,0.0000022791, +0.0000022799,0.0000022808,0.0000022818,0.0000022830,0.0000022840, +0.0000022848,0.0000022850,0.0000022847,0.0000022835,0.0000022816, +0.0000022797,0.0000022778,0.0000022757,0.0000022734,0.0000022713, +0.0000022698,0.0000022693,0.0000022694,0.0000022695,0.0000022715, +0.0000022748,0.0000022790,0.0000022839,0.0000022890,0.0000022934, +0.0000022969,0.0000022994,0.0000023013,0.0000023023,0.0000023024, +0.0000023021,0.0000023019,0.0000023018,0.0000023013,0.0000023001, +0.0000022983,0.0000022961,0.0000022940,0.0000022915,0.0000022881, +0.0000022844,0.0000022804,0.0000022759,0.0000022717,0.0000022681, +0.0000022643,0.0000022608,0.0000022581,0.0000022553,0.0000022522, +0.0000022482,0.0000022443,0.0000022412,0.0000022388,0.0000022370, +0.0000022359,0.0000022351,0.0000022343,0.0000022335,0.0000022328, +0.0000022320,0.0000022306,0.0000022282,0.0000022246,0.0000022201, +0.0000022144,0.0000022069,0.0000021970,0.0000021858,0.0000021747, +0.0000021644,0.0000021553,0.0000021481,0.0000021416,0.0000021339, +0.0000021246,0.0000021167,0.0000021109,0.0000021059,0.0000021042, +0.0000021071,0.0000021143,0.0000021222,0.0000021281,0.0000021313, +0.0000021326,0.0000021331,0.0000021327,0.0000021319,0.0000021316, +0.0000021313,0.0000021304,0.0000021282,0.0000021247,0.0000021202, +0.0000021166,0.0000021142,0.0000021124,0.0000021108,0.0000021095, +0.0000021093,0.0000021096,0.0000021093,0.0000021084,0.0000021088, +0.0000021116,0.0000021161,0.0000021191,0.0000021203,0.0000021224, +0.0000021295,0.0000021451,0.0000021694,0.0000021930,0.0000022054, +0.0000022096,0.0000022100,0.0000022081,0.0000022043,0.0000021993, +0.0000021940,0.0000021896,0.0000021885,0.0000021892,0.0000021921, +0.0000021965,0.0000022011,0.0000022047,0.0000022073,0.0000022102, +0.0000022142,0.0000022171,0.0000022199,0.0000022251,0.0000022301, +0.0000022293,0.0000022228,0.0000022157,0.0000022120,0.0000022092, +0.0000022051,0.0000022037,0.0000022069,0.0000022132,0.0000022196, +0.0000022236,0.0000022255,0.0000022256,0.0000022253,0.0000022275, +0.0000022324,0.0000022383,0.0000022442,0.0000022491,0.0000022521, +0.0000022543,0.0000022564,0.0000022580,0.0000022583,0.0000022569, +0.0000022535,0.0000022491,0.0000022452,0.0000022426,0.0000022413, +0.0000022405,0.0000022391,0.0000022373,0.0000022349,0.0000022320, +0.0000022285,0.0000022249,0.0000022204,0.0000022143,0.0000022081, +0.0000022025,0.0000021982,0.0000021976,0.0000021999,0.0000022037, +0.0000022099,0.0000022170,0.0000022278,0.0000022525,0.0000022769, +0.0000022837,0.0000022843,0.0000022861,0.0000022882,0.0000022871, +0.0000022853,0.0000022815,0.0000022735,0.0000022668,0.0000022638, +0.0000022625,0.0000022568,0.0000022472,0.0000022297,0.0000022129, +0.0000022123,0.0000022233,0.0000022323,0.0000022400,0.0000022457, +0.0000022534,0.0000022666,0.0000022807,0.0000022925,0.0000022989, +0.0000022998,0.0000022978,0.0000022957,0.0000022944,0.0000022930, +0.0000022900,0.0000022867,0.0000022859,0.0000022892,0.0000022961, +0.0000023037,0.0000023088,0.0000023119,0.0000023146,0.0000023169, +0.0000023168,0.0000023122,0.0000023060,0.0000023021,0.0000022990, +0.0000022932,0.0000022867,0.0000022834,0.0000022827,0.0000022830, +0.0000022838,0.0000022854,0.0000022892,0.0000022955,0.0000023014, +0.0000023054,0.0000023076,0.0000023081,0.0000023075,0.0000023062, +0.0000023044,0.0000023013,0.0000022973,0.0000022944,0.0000022919, +0.0000022901,0.0000022889,0.0000022871,0.0000022841,0.0000022817, +0.0000022819,0.0000022844,0.0000022871,0.0000022890,0.0000022902, +0.0000022904,0.0000022913,0.0000022956,0.0000023010,0.0000023070, +0.0000023136,0.0000023173,0.0000023134,0.0000023058,0.0000023047, +0.0000023055,0.0000023021,0.0000022873,0.0000022705,0.0000022469, +0.0000022165,0.0000022117,0.0000022218,0.0000022199,0.0000022104, +0.0000022128,0.0000022277,0.0000022336,0.0000022159,0.0000021934, +0.0000021913,0.0000021999,0.0000022080,0.0000022123,0.0000022150, +0.0000022164,0.0000022169,0.0000022172,0.0000022174,0.0000022172, +0.0000022172,0.0000022173,0.0000022175,0.0000022179,0.0000022184, +0.0000022196,0.0000022215,0.0000022243,0.0000022274,0.0000022303, +0.0000022323,0.0000022324,0.0000022301,0.0000022262,0.0000022226, +0.0000022200,0.0000022192,0.0000022198,0.0000022215,0.0000022254, +0.0000022311,0.0000022354,0.0000022353,0.0000022285,0.0000022160, +0.0000022057,0.0000022022,0.0000022035,0.0000022105,0.0000022189, +0.0000022266,0.0000022350,0.0000022450,0.0000022544,0.0000022615, +0.0000022669,0.0000022709,0.0000022732,0.0000022725,0.0000022688, +0.0000022623,0.0000022542,0.0000022472,0.0000022416,0.0000022354, +0.0000022280,0.0000022219,0.0000022184,0.0000022182,0.0000022186, +0.0000022190,0.0000022182,0.0000022165,0.0000022146,0.0000022137, +0.0000022140,0.0000022161,0.0000022193,0.0000022240,0.0000022288, +0.0000022330,0.0000022368,0.0000022403,0.0000022424,0.0000022434, +0.0000022436,0.0000022430,0.0000022415,0.0000022395,0.0000022374, +0.0000022357,0.0000022345,0.0000022327,0.0000022300,0.0000022268, +0.0000022245,0.0000022233,0.0000022228,0.0000022224,0.0000022217, +0.0000022213,0.0000022213,0.0000022213,0.0000022212,0.0000022212, +0.0000022223,0.0000022250,0.0000022289,0.0000022341,0.0000022411, +0.0000022497,0.0000022585,0.0000022662,0.0000022721,0.0000022759, +0.0000022786,0.0000022816,0.0000022862,0.0000022941,0.0000023049, +0.0000023162,0.0000023255,0.0000023310,0.0000023332,0.0000023341, +0.0000023356,0.0000023358,0.0000023342,0.0000023313,0.0000023286, +0.0000023276,0.0000023286,0.0000023329,0.0000023396,0.0000023477, +0.0000023562,0.0000023634,0.0000023673,0.0000023679,0.0000023653, +0.0000023582,0.0000023494,0.0000023425,0.0000023388,0.0000023379, +0.0000023390,0.0000023422,0.0000023456,0.0000023482,0.0000023501, +0.0000023514,0.0000023522,0.0000023524,0.0000023521,0.0000023519, +0.0000023521,0.0000023525,0.0000023529,0.0000023530,0.0000023530, +0.0000023527,0.0000023516,0.0000023496,0.0000023471,0.0000023445, +0.0000023431,0.0000023430,0.0000023440,0.0000023461,0.0000023484, +0.0000023501,0.0000023507,0.0000023504,0.0000023494,0.0000023476, +0.0000023455,0.0000023438,0.0000023429,0.0000023418,0.0000023402, +0.0000023381,0.0000023354,0.0000023322,0.0000023289,0.0000023261, +0.0000023241,0.0000023228,0.0000023219,0.0000023212,0.0000023205, +0.0000023194,0.0000023173,0.0000023143,0.0000023101,0.0000023053, +0.0000023004,0.0000022960,0.0000022924,0.0000022898,0.0000022883, +0.0000022885,0.0000022909,0.0000022941,0.0000022961,0.0000022963, +0.0000022957,0.0000022958,0.0000022968,0.0000022978,0.0000022973, +0.0000022951,0.0000022929,0.0000022920,0.0000022887,0.0000022797, +0.0000022682,0.0000022603,0.0000022571,0.0000022549,0.0000022498, +0.0000022407,0.0000022297,0.0000022210,0.0000022157,0.0000022106, +0.0000022017,0.0000021889,0.0000021742,0.0000021611,0.0000021513, +0.0000021446,0.0000021397,0.0000021354,0.0000021316,0.0000021284, +0.0000021265,0.0000021262,0.0000021269,0.0000021283,0.0000021299, +0.0000021311,0.0000021317,0.0000021313,0.0000021297,0.0000021267, +0.0000021231,0.0000021195,0.0000021156,0.0000021122,0.0000021101, +0.0000021094,0.0000021100,0.0000021116,0.0000021131,0.0000021142, +0.0000021152,0.0000021159,0.0000021163,0.0000021164,0.0000021155, +0.0000021135,0.0000021117,0.0000021095,0.0000021084,0.0000021094, +0.0000021120,0.0000021176,0.0000021257,0.0000021347,0.0000021434, +0.0000021510,0.0000021569,0.0000021616,0.0000021657,0.0000021692, +0.0000021723,0.0000021752,0.0000021785,0.0000021822,0.0000021865, +0.0000021912,0.0000021952,0.0000021982,0.0000022006,0.0000022026, +0.0000022045,0.0000022076,0.0000022114,0.0000022139,0.0000022155, +0.0000022184,0.0000022232,0.0000022267,0.0000022255,0.0000022207, +0.0000022173,0.0000022184,0.0000022232,0.0000022280,0.0000022314, +0.0000022340,0.0000022354,0.0000022342,0.0000022314,0.0000022282, +0.0000022272,0.0000022303,0.0000022337,0.0000022316,0.0000022280, +0.0000022249,0.0000022227,0.0000022206,0.0000022182,0.0000022156, +0.0000022139,0.0000022137,0.0000022149,0.0000022167,0.0000022203, +0.0000022260,0.0000022347,0.0000022489,0.0000022670,0.0000022803, +0.0000022831,0.0000022789,0.0000022725,0.0000022692,0.0000022681, +0.0000022682,0.0000022738,0.0000022925,0.0000023150,0.0000023240, +0.0000023243,0.0000023216,0.0000023093,0.0000022897,0.0000022583, +0.0000022211,0.0000022050,0.0000022047,0.0000022071,0.0000022094, +0.0000022145,0.0000022191,0.0000022196,0.0000022161,0.0000022113, +0.0000022074,0.0000022050,0.0000022042,0.0000022043,0.0000022059, +0.0000022087,0.0000022106,0.0000022104,0.0000022071,0.0000022033, +0.0000022020,0.0000022022,0.0000022036,0.0000022069,0.0000022129, +0.0000022226,0.0000022345,0.0000022434,0.0000022445,0.0000022383, +0.0000022300,0.0000022276,0.0000022315,0.0000022386,0.0000022461, +0.0000022529,0.0000022586,0.0000022606,0.0000022599,0.0000022587, +0.0000022582,0.0000022577,0.0000022568,0.0000022558,0.0000022543, +0.0000022516,0.0000022470,0.0000022414,0.0000022361,0.0000022326, +0.0000022316,0.0000022324,0.0000022345,0.0000022366,0.0000022381, +0.0000022392,0.0000022409,0.0000022450,0.0000022499,0.0000022515, +0.0000022495,0.0000022438,0.0000022367,0.0000022288,0.0000022185, +0.0000022047,0.0000021892,0.0000021772,0.0000021742,0.0000021804, +0.0000021971,0.0000022140,0.0000022179,0.0000022137,0.0000022141, +0.0000022312,0.0000022593,0.0000022674,0.0000022466,0.0000022093, +0.0000021910,0.0000021901,0.0000021877,0.0000021789,0.0000021675, +0.0000021601,0.0000021585,0.0000021594,0.0000021590,0.0000021571, +0.0000021543,0.0000021511,0.0000021476,0.0000021433,0.0000021391, +0.0000021363,0.0000021365,0.0000021401,0.0000021458,0.0000021519, +0.0000021562,0.0000021576,0.0000021572,0.0000021563,0.0000021554, +0.0000021551,0.0000021553,0.0000021562,0.0000021576,0.0000021595, +0.0000021625,0.0000021668,0.0000021717,0.0000021768,0.0000021821, +0.0000021874,0.0000021929,0.0000021993,0.0000022070,0.0000022154, +0.0000022239,0.0000022313,0.0000022376,0.0000022433,0.0000022498, +0.0000022568,0.0000022620,0.0000022634,0.0000022620,0.0000022604, +0.0000022609,0.0000022634,0.0000022637,0.0000022553,0.0000022357, +0.0000022152,0.0000022020,0.0000021915,0.0000021775,0.0000021612, +0.0000021455,0.0000021315,0.0000021187,0.0000021038,0.0000020861, +0.0000020692,0.0000020560,0.0000020467,0.0000020406,0.0000020385, +0.0000020388,0.0000020398,0.0000020410,0.0000020430,0.0000020475, +0.0000020558,0.0000020660,0.0000020752,0.0000020813,0.0000020844, +0.0000020870,0.0000020902,0.0000020941,0.0000021005,0.0000021106, +0.0000021218,0.0000021284,0.0000021279,0.0000021215,0.0000021105, +0.0000021000,0.0000020940,0.0000020931,0.0000020950,0.0000020997, +0.0000021049,0.0000021097,0.0000021152,0.0000021242,0.0000021378, +0.0000021518,0.0000021598,0.0000021611,0.0000021602,0.0000021576, +0.0000021564,0.0000021558,0.0000021545,0.0000021514,0.0000021458, +0.0000021381,0.0000021292,0.0000021191,0.0000021100,0.0000021066, +0.0000021075,0.0000021188,0.0000021343,0.0000021474,0.0000021543, +0.0000021547,0.0000021505,0.0000021461,0.0000021457,0.0000021515, +0.0000021637,0.0000021816,0.0000022033,0.0000022275,0.0000022514, +0.0000022716,0.0000022856,0.0000022918,0.0000022917,0.0000022886, +0.0000022862,0.0000022863,0.0000022894,0.0000022938,0.0000022989, +0.0000023055,0.0000023148,0.0000023269,0.0000023411,0.0000023561, +0.0000023705,0.0000023832,0.0000023944,0.0000024052,0.0000024160, +0.0000024265,0.0000024372,0.0000024474,0.0000024558,0.0000024611, +0.0000024636,0.0000024623,0.0000024591,0.0000024546,0.0000024495, +0.0000024455,0.0000024424,0.0000024403,0.0000024391,0.0000024383, +0.0000024368,0.0000024343,0.0000024310,0.0000024275,0.0000024249, +0.0000024238,0.0000024246,0.0000024269,0.0000024303,0.0000024331, +0.0000024345,0.0000024346,0.0000024343,0.0000024324,0.0000024276, +0.0000024191,0.0000024081,0.0000023952,0.0000023812,0.0000023686, +0.0000023590,0.0000023515,0.0000023439,0.0000023345,0.0000023230, +0.0000023104,0.0000022981,0.0000022866,0.0000022754,0.0000022641, +0.0000022538,0.0000022468,0.0000022420,0.0000022368,0.0000022297, +0.0000022189,0.0000022059,0.0000021931,0.0000021826,0.0000021758, +0.0000021720,0.0000021713,0.0000021723,0.0000021739,0.0000021755, +0.0000021770,0.0000021778,0.0000021778,0.0000021769,0.0000021751, +0.0000021728,0.0000021710,0.0000021697,0.0000021690,0.0000021692, +0.0000021705,0.0000021718,0.0000021723,0.0000021716,0.0000021706, +0.0000021698,0.0000021683,0.0000021657,0.0000021618,0.0000021575, +0.0000021539,0.0000021513,0.0000021497,0.0000021489,0.0000021485, +0.0000021483,0.0000021511,0.0000021580,0.0000021690,0.0000021838, +0.0000022021,0.0000022231,0.0000022445,0.0000022639,0.0000022796, +0.0000022897,0.0000022922,0.0000022877,0.0000022846,0.0000022810, +0.0000022783,0.0000022773,0.0000022765,0.0000022731,0.0000022645, +0.0000022507,0.0000022351,0.0000022205,0.0000022082,0.0000021981, +0.0000021888,0.0000021795,0.0000021704,0.0000021631,0.0000021591, +0.0000021581,0.0000021586,0.0000021607,0.0000021645,0.0000021692, +0.0000021738,0.0000021783,0.0000021821,0.0000021850,0.0000021869, +0.0000021873,0.0000021851,0.0000021807,0.0000021749,0.0000021679, +0.0000021592,0.0000021498,0.0000021418,0.0000021346,0.0000021278, +0.0000021214,0.0000021152,0.0000021096,0.0000021056,0.0000021030, +0.0000021019,0.0000021020,0.0000021029,0.0000021050,0.0000021078, +0.0000021100,0.0000021114,0.0000021121,0.0000021128,0.0000021134, +0.0000021134,0.0000021125,0.0000021112,0.0000021102,0.0000021094, +0.0000021083,0.0000021070,0.0000021055,0.0000021034,0.0000021007, +0.0000020976,0.0000020943,0.0000020911,0.0000020871,0.0000020825, +0.0000020774,0.0000020725,0.0000020678,0.0000020634,0.0000020602, +0.0000020574,0.0000020555,0.0000020546,0.0000020566,0.0000020606, +0.0000020663,0.0000020717,0.0000020759,0.0000020789,0.0000020797, +0.0000020790,0.0000020763,0.0000020721,0.0000020674,0.0000020622, +0.0000020565,0.0000020500,0.0000020434,0.0000020387,0.0000020377, +0.0000020385,0.0000020395,0.0000020404,0.0000020411,0.0000020418, +0.0000020430,0.0000020446,0.0000020462,0.0000020477,0.0000020491, +0.0000020503,0.0000020512,0.0000020516,0.0000020519,0.0000020517, +0.0000020520,0.0000020527,0.0000020533,0.0000020543,0.0000020553, +0.0000020554,0.0000020549,0.0000020548,0.0000020548,0.0000020539, +0.0000020532,0.0000020533,0.0000020539,0.0000020542,0.0000020544, +0.0000020552,0.0000020567,0.0000020586,0.0000020603,0.0000020606, +0.0000020598,0.0000020591,0.0000020598,0.0000020622,0.0000020666, +0.0000020714,0.0000020727,0.0000020691,0.0000020615,0.0000020586, +0.0000020612,0.0000020628,0.0000020582,0.0000020540,0.0000020567, +0.0000020622,0.0000020620,0.0000020553,0.0000020471,0.0000020419, +0.0000020409,0.0000020428,0.0000020476,0.0000020535,0.0000020580, +0.0000020600,0.0000020622,0.0000020663,0.0000020686,0.0000020748, +0.0000020966,0.0000021242,0.0000021362,0.0000021353,0.0000021351, +0.0000021405,0.0000021463,0.0000021480,0.0000021459,0.0000021385, +0.0000021261,0.0000021131,0.0000021044,0.0000021020,0.0000020994, +0.0000020844,0.0000020617,0.0000020484,0.0000020478,0.0000020500, +0.0000020518,0.0000020499,0.0000020441,0.0000020370,0.0000020333, +0.0000020337,0.0000020382,0.0000020441,0.0000020492,0.0000020530, +0.0000020559,0.0000020583,0.0000020600,0.0000020608,0.0000020608, +0.0000020608,0.0000020618,0.0000020640,0.0000020669,0.0000020694, +0.0000020714,0.0000020726,0.0000020730,0.0000020730,0.0000020723, +0.0000020714,0.0000020708,0.0000020704,0.0000020700,0.0000020695, +0.0000020688,0.0000020682,0.0000020676,0.0000020669,0.0000020663, +0.0000020655,0.0000020654,0.0000020664,0.0000020677,0.0000020685, +0.0000020697,0.0000020713,0.0000020702,0.0000020629,0.0000020523, +0.0000020428,0.0000020363,0.0000020340,0.0000020351,0.0000020385, +0.0000020415,0.0000020432,0.0000020435,0.0000020433,0.0000020424, +0.0000020414,0.0000020406,0.0000020399,0.0000020391,0.0000020381, +0.0000020365,0.0000020343,0.0000020312,0.0000020274,0.0000020241, +0.0000020216,0.0000020193,0.0000020163,0.0000020134,0.0000020112, +0.0000020099,0.0000020088,0.0000020081,0.0000020083,0.0000020100, +0.0000020127,0.0000020147,0.0000020149,0.0000020130,0.0000020099, +0.0000020081,0.0000020081,0.0000020093,0.0000020111,0.0000020133, +0.0000020166,0.0000020214,0.0000020270,0.0000020323,0.0000020366, +0.0000020397,0.0000020421,0.0000020437,0.0000020437,0.0000020424, +0.0000020405,0.0000020399,0.0000020423,0.0000020489,0.0000020586, +0.0000020683,0.0000020753,0.0000020793,0.0000020817,0.0000020848, +0.0000020855,0.0000020823,0.0000020759,0.0000020711,0.0000020703, +0.0000020707,0.0000020710,0.0000020707,0.0000020722,0.0000020837, +0.0000021078,0.0000021364,0.0000021583,0.0000021715,0.0000021808, +0.0000021884,0.0000021918,0.0000021913,0.0000021870,0.0000021810, +0.0000021739,0.0000021668,0.0000021599,0.0000021558,0.0000021577, +0.0000021652,0.0000021687,0.0000021657,0.0000021683,0.0000021610, +0.0000021469,0.0000021356,0.0000021330,0.0000021355,0.0000021406, +0.0000021475,0.0000021555,0.0000021636,0.0000021692,0.0000021713, +0.0000021709,0.0000021686,0.0000021665,0.0000021655,0.0000021654, +0.0000021660,0.0000021667,0.0000021672,0.0000021675,0.0000021678, +0.0000021682,0.0000021686,0.0000021684,0.0000021672,0.0000021642, +0.0000021596,0.0000021526,0.0000021435,0.0000021342,0.0000021260, +0.0000021185,0.0000021126,0.0000021104,0.0000021111,0.0000021136, +0.0000021160,0.0000021171,0.0000021171,0.0000021168,0.0000021160, +0.0000021144,0.0000021124,0.0000021114,0.0000021115,0.0000021130, +0.0000021150,0.0000021158,0.0000021151,0.0000021134,0.0000021118, +0.0000021109,0.0000021107,0.0000021111,0.0000021112,0.0000021106, +0.0000021108,0.0000021120,0.0000021141,0.0000021168,0.0000021195, +0.0000021216,0.0000021228,0.0000021236,0.0000021251,0.0000021264, +0.0000021274,0.0000021278,0.0000021281,0.0000021288,0.0000021289, +0.0000021301,0.0000021353,0.0000021414,0.0000021497,0.0000021594, +0.0000021688,0.0000021766,0.0000021823,0.0000021859,0.0000021878, +0.0000021874,0.0000021873,0.0000021844,0.0000021819,0.0000021801, +0.0000021785,0.0000021766,0.0000021741,0.0000021716,0.0000021698, +0.0000021692,0.0000021690,0.0000021681,0.0000021663,0.0000021642, +0.0000021617,0.0000021591,0.0000021570,0.0000021563,0.0000021573, +0.0000021594,0.0000021615,0.0000021627,0.0000021628,0.0000021624, +0.0000021620,0.0000021616,0.0000021614,0.0000021611,0.0000021607, +0.0000021602,0.0000021592,0.0000021579,0.0000021557,0.0000021520, +0.0000021480,0.0000021459,0.0000021456,0.0000021449,0.0000021441, +0.0000021441,0.0000021445,0.0000021455,0.0000021473,0.0000021494, +0.0000021506,0.0000021505,0.0000021497,0.0000021494,0.0000021496, +0.0000021491,0.0000021476,0.0000021453,0.0000021424,0.0000021396, +0.0000021379,0.0000021376,0.0000021381,0.0000021389,0.0000021398, +0.0000021409,0.0000021423,0.0000021447,0.0000021475,0.0000021498, +0.0000021508,0.0000021516,0.0000021522,0.0000021516,0.0000021499, +0.0000021483,0.0000021472,0.0000021473,0.0000021486,0.0000021504, +0.0000021526,0.0000021563,0.0000021608,0.0000021649,0.0000021687, +0.0000021722,0.0000021752,0.0000021769,0.0000021774,0.0000021772, +0.0000021738,0.0000021681,0.0000021619,0.0000021580,0.0000021581, +0.0000021621,0.0000021685,0.0000021741,0.0000021773,0.0000021778, +0.0000021766,0.0000021760,0.0000021800,0.0000021960,0.0000022158, +0.0000022282,0.0000022304,0.0000022278,0.0000022260,0.0000022279, +0.0000022368,0.0000022488,0.0000022595,0.0000022677,0.0000022737, +0.0000022778,0.0000022801,0.0000022810,0.0000022806,0.0000022792, +0.0000022772,0.0000022753,0.0000022743,0.0000022737,0.0000022736, +0.0000022741,0.0000022750,0.0000022760,0.0000022774,0.0000022796, +0.0000022825,0.0000022860,0.0000022896,0.0000022927,0.0000022950, +0.0000022970,0.0000022988,0.0000023004,0.0000023017,0.0000023030, +0.0000023045,0.0000023063,0.0000023078,0.0000023089,0.0000023095, +0.0000023093,0.0000023086,0.0000023071,0.0000023043,0.0000023003, +0.0000022952,0.0000022892,0.0000022831,0.0000022775,0.0000022739, +0.0000022700,0.0000022673,0.0000022658,0.0000022649,0.0000022644, +0.0000022643,0.0000022643,0.0000022647,0.0000022655,0.0000022668, +0.0000022682,0.0000022693,0.0000022700,0.0000022709,0.0000022724, +0.0000022737,0.0000022735,0.0000022742,0.0000022752,0.0000022769, +0.0000022792,0.0000022817,0.0000022847,0.0000022883,0.0000022924, +0.0000022966,0.0000023009,0.0000023049,0.0000023080,0.0000023102, +0.0000023117,0.0000023125,0.0000023125,0.0000023118,0.0000023106, +0.0000023095,0.0000023086,0.0000023075,0.0000023057,0.0000023032, +0.0000023001,0.0000022963,0.0000022920,0.0000022874,0.0000022819, +0.0000022760,0.0000022700,0.0000022640,0.0000022583,0.0000022533, +0.0000022491,0.0000022454,0.0000022419,0.0000022383,0.0000022344, +0.0000022309,0.0000022283,0.0000022266,0.0000022260,0.0000022262, +0.0000022265,0.0000022265,0.0000022263,0.0000022260,0.0000022258, +0.0000022249,0.0000022226,0.0000022187,0.0000022133,0.0000022060, +0.0000021967,0.0000021857,0.0000021737,0.0000021622,0.0000021532, +0.0000021472,0.0000021425,0.0000021366,0.0000021286,0.0000021204, +0.0000021131,0.0000021055,0.0000021014,0.0000021028,0.0000021083, +0.0000021160,0.0000021218,0.0000021248,0.0000021261,0.0000021267, +0.0000021271,0.0000021273,0.0000021267,0.0000021267,0.0000021268, +0.0000021261,0.0000021239,0.0000021200,0.0000021153,0.0000021123, +0.0000021103,0.0000021090,0.0000021085,0.0000021083,0.0000021079, +0.0000021077,0.0000021071,0.0000021071,0.0000021096,0.0000021150, +0.0000021201,0.0000021223,0.0000021244,0.0000021312,0.0000021465, +0.0000021695,0.0000021916,0.0000022029,0.0000022064,0.0000022069, +0.0000022041,0.0000021995,0.0000021944,0.0000021894,0.0000021856, +0.0000021850,0.0000021873,0.0000021917,0.0000021965,0.0000022003, +0.0000022032,0.0000022059,0.0000022102,0.0000022154,0.0000022187, +0.0000022231,0.0000022295,0.0000022323,0.0000022276,0.0000022182, +0.0000022124,0.0000022094,0.0000022052,0.0000022013,0.0000022017, +0.0000022083,0.0000022177,0.0000022237,0.0000022253,0.0000022243, +0.0000022230,0.0000022206,0.0000022194,0.0000022202,0.0000022240, +0.0000022292,0.0000022342,0.0000022388,0.0000022425,0.0000022453, +0.0000022471,0.0000022476,0.0000022474,0.0000022455,0.0000022417, +0.0000022377,0.0000022347,0.0000022335,0.0000022339,0.0000022344, +0.0000022332,0.0000022304,0.0000022262,0.0000022215,0.0000022169, +0.0000022130,0.0000022089,0.0000022037,0.0000021992,0.0000021968, +0.0000021961,0.0000021968,0.0000021978,0.0000022009,0.0000022088, +0.0000022212,0.0000022473,0.0000022747,0.0000022864,0.0000022887, +0.0000022908,0.0000022919,0.0000022885,0.0000022830,0.0000022764, +0.0000022660,0.0000022576,0.0000022550,0.0000022553,0.0000022540, +0.0000022487,0.0000022363,0.0000022155,0.0000022071,0.0000022136, +0.0000022241,0.0000022333,0.0000022402,0.0000022443,0.0000022506, +0.0000022633,0.0000022767,0.0000022877,0.0000022946,0.0000022964, +0.0000022955,0.0000022937,0.0000022911,0.0000022896,0.0000022877, +0.0000022849,0.0000022838,0.0000022857,0.0000022908,0.0000022978, +0.0000023034,0.0000023067,0.0000023106,0.0000023144,0.0000023160, +0.0000023140,0.0000023090,0.0000023038,0.0000023008,0.0000022984, +0.0000022935,0.0000022880,0.0000022842,0.0000022829,0.0000022832, +0.0000022842,0.0000022865,0.0000022912,0.0000022960,0.0000022996, +0.0000023021,0.0000023036,0.0000023041,0.0000023042,0.0000023033, +0.0000023007,0.0000022977,0.0000022953,0.0000022932,0.0000022913, +0.0000022898,0.0000022880,0.0000022849,0.0000022818,0.0000022812, +0.0000022826,0.0000022853,0.0000022879,0.0000022889,0.0000022883, +0.0000022888,0.0000022927,0.0000022988,0.0000023052,0.0000023118, +0.0000023156,0.0000023134,0.0000023051,0.0000023026,0.0000023041, +0.0000023038,0.0000022927,0.0000022756,0.0000022583,0.0000022281, +0.0000022114,0.0000022172,0.0000022229,0.0000022132,0.0000022074, +0.0000022155,0.0000022295,0.0000022314,0.0000022113,0.0000021936, +0.0000021950,0.0000022046,0.0000022124,0.0000022157,0.0000022162, +0.0000022158,0.0000022154,0.0000022151,0.0000022141,0.0000022125, +0.0000022119,0.0000022120,0.0000022128,0.0000022142,0.0000022164, +0.0000022191,0.0000022221,0.0000022251,0.0000022280,0.0000022304, +0.0000022320,0.0000022319,0.0000022298,0.0000022261,0.0000022212, +0.0000022166,0.0000022129,0.0000022116,0.0000022126,0.0000022165, +0.0000022243,0.0000022331,0.0000022377,0.0000022372,0.0000022282, +0.0000022158,0.0000022054,0.0000022011,0.0000022039,0.0000022120, +0.0000022206,0.0000022289,0.0000022383,0.0000022488,0.0000022583, +0.0000022657,0.0000022708,0.0000022738,0.0000022748,0.0000022736, +0.0000022693,0.0000022629,0.0000022553,0.0000022488,0.0000022431, +0.0000022371,0.0000022303,0.0000022243,0.0000022200,0.0000022176, +0.0000022170,0.0000022152,0.0000022136,0.0000022120,0.0000022107, +0.0000022108,0.0000022126,0.0000022159,0.0000022203,0.0000022246, +0.0000022283,0.0000022316,0.0000022345,0.0000022364,0.0000022374, +0.0000022382,0.0000022383,0.0000022375,0.0000022364,0.0000022359, +0.0000022359,0.0000022360,0.0000022350,0.0000022331,0.0000022308, +0.0000022284,0.0000022262,0.0000022244,0.0000022226,0.0000022210, +0.0000022200,0.0000022195,0.0000022195,0.0000022185,0.0000022164, +0.0000022138,0.0000022122,0.0000022120,0.0000022133,0.0000022170, +0.0000022229,0.0000022314,0.0000022422,0.0000022530,0.0000022625, +0.0000022700,0.0000022744,0.0000022764,0.0000022789,0.0000022846, +0.0000022943,0.0000023061,0.0000023175,0.0000023264,0.0000023322, +0.0000023356,0.0000023372,0.0000023383,0.0000023370,0.0000023340, +0.0000023305,0.0000023286,0.0000023299,0.0000023337,0.0000023404, +0.0000023486,0.0000023572,0.0000023640,0.0000023670,0.0000023664, +0.0000023621,0.0000023543,0.0000023467,0.0000023419,0.0000023401, +0.0000023403,0.0000023420,0.0000023444,0.0000023464,0.0000023481, +0.0000023493,0.0000023494,0.0000023484,0.0000023472,0.0000023459, +0.0000023454,0.0000023463,0.0000023479,0.0000023490,0.0000023490, +0.0000023482,0.0000023468,0.0000023449,0.0000023427,0.0000023405, +0.0000023383,0.0000023364,0.0000023355,0.0000023359,0.0000023373, +0.0000023388,0.0000023394,0.0000023392,0.0000023382,0.0000023367, +0.0000023347,0.0000023331,0.0000023319,0.0000023311,0.0000023301, +0.0000023289,0.0000023274,0.0000023259,0.0000023243,0.0000023227, +0.0000023212,0.0000023202,0.0000023198,0.0000023195,0.0000023190, +0.0000023178,0.0000023157,0.0000023127,0.0000023090,0.0000023051, +0.0000023010,0.0000022972,0.0000022941,0.0000022922,0.0000022918, +0.0000022929,0.0000022957,0.0000022982,0.0000022992,0.0000022990, +0.0000022985,0.0000022991,0.0000023007,0.0000023012,0.0000022997, +0.0000022962,0.0000022937,0.0000022920,0.0000022860,0.0000022744, +0.0000022633,0.0000022576,0.0000022555,0.0000022527,0.0000022459, +0.0000022350,0.0000022238,0.0000022155,0.0000022092,0.0000022003, +0.0000021864,0.0000021709,0.0000021571,0.0000021468,0.0000021394, +0.0000021340,0.0000021301,0.0000021272,0.0000021254,0.0000021240, +0.0000021227,0.0000021220,0.0000021221,0.0000021223,0.0000021224, +0.0000021223,0.0000021218,0.0000021208,0.0000021187,0.0000021153, +0.0000021104,0.0000021050,0.0000020992,0.0000020938,0.0000020900, +0.0000020879,0.0000020874,0.0000020883,0.0000020897,0.0000020916, +0.0000020937,0.0000020958,0.0000020986,0.0000021020,0.0000021052, +0.0000021077,0.0000021090,0.0000021090,0.0000021074,0.0000021062, +0.0000021046,0.0000021044,0.0000021072,0.0000021120,0.0000021187, +0.0000021258,0.0000021315,0.0000021358,0.0000021395,0.0000021432, +0.0000021465,0.0000021489,0.0000021511,0.0000021538,0.0000021580, +0.0000021644,0.0000021723,0.0000021801,0.0000021863,0.0000021910, +0.0000021943,0.0000021978,0.0000022032,0.0000022090,0.0000022128, +0.0000022151,0.0000022177,0.0000022221,0.0000022247,0.0000022226, +0.0000022181,0.0000022163,0.0000022187,0.0000022234,0.0000022269, +0.0000022288,0.0000022305,0.0000022318,0.0000022319,0.0000022294, +0.0000022258,0.0000022252,0.0000022300,0.0000022343,0.0000022357, +0.0000022362,0.0000022363,0.0000022357,0.0000022336,0.0000022299, +0.0000022253,0.0000022209,0.0000022177,0.0000022154,0.0000022150, +0.0000022186,0.0000022250,0.0000022338,0.0000022463,0.0000022633, +0.0000022780,0.0000022821,0.0000022792,0.0000022723,0.0000022682, +0.0000022674,0.0000022685,0.0000022766,0.0000022967,0.0000023169, +0.0000023227,0.0000023224,0.0000023186,0.0000023072,0.0000022875, +0.0000022554,0.0000022199,0.0000022032,0.0000022028,0.0000022039, +0.0000022065,0.0000022117,0.0000022159,0.0000022159,0.0000022122, +0.0000022079,0.0000022052,0.0000022046,0.0000022054,0.0000022076, +0.0000022107,0.0000022131,0.0000022134,0.0000022112,0.0000022071, +0.0000022039,0.0000022025,0.0000022028,0.0000022051,0.0000022100, +0.0000022176,0.0000022281,0.0000022404,0.0000022495,0.0000022508, +0.0000022446,0.0000022356,0.0000022316,0.0000022330,0.0000022383, +0.0000022450,0.0000022516,0.0000022568,0.0000022585,0.0000022579, +0.0000022566,0.0000022558,0.0000022547,0.0000022531,0.0000022516, +0.0000022501,0.0000022474,0.0000022426,0.0000022360,0.0000022291, +0.0000022237,0.0000022208,0.0000022204,0.0000022216,0.0000022246, +0.0000022282,0.0000022311,0.0000022335,0.0000022372,0.0000022428, +0.0000022479,0.0000022490,0.0000022471,0.0000022420,0.0000022361, +0.0000022299,0.0000022208,0.0000022073,0.0000021913,0.0000021784, +0.0000021746,0.0000021787,0.0000021941,0.0000022108,0.0000022151, +0.0000022110,0.0000022125,0.0000022312,0.0000022601,0.0000022663, +0.0000022391,0.0000022038,0.0000021900,0.0000021890,0.0000021853, +0.0000021751,0.0000021645,0.0000021593,0.0000021584,0.0000021583, +0.0000021573,0.0000021545,0.0000021506,0.0000021471,0.0000021442, +0.0000021411,0.0000021387,0.0000021386,0.0000021422,0.0000021480, +0.0000021539,0.0000021576,0.0000021580,0.0000021577,0.0000021576, +0.0000021585,0.0000021598,0.0000021610,0.0000021627,0.0000021650, +0.0000021673,0.0000021700,0.0000021734,0.0000021771,0.0000021814, +0.0000021865,0.0000021918,0.0000021969,0.0000022024,0.0000022087, +0.0000022161,0.0000022241,0.0000022321,0.0000022391,0.0000022452, +0.0000022516,0.0000022585,0.0000022638,0.0000022657,0.0000022651, +0.0000022643,0.0000022649,0.0000022668,0.0000022663,0.0000022571, +0.0000022369,0.0000022157,0.0000022017,0.0000021909,0.0000021771, +0.0000021608,0.0000021448,0.0000021306,0.0000021180,0.0000021042, +0.0000020877,0.0000020709,0.0000020571,0.0000020470,0.0000020408, +0.0000020385,0.0000020384,0.0000020386,0.0000020389,0.0000020393, +0.0000020410,0.0000020457,0.0000020542,0.0000020650,0.0000020747, +0.0000020808,0.0000020836,0.0000020857,0.0000020883,0.0000020922, +0.0000020997,0.0000021108,0.0000021218,0.0000021279,0.0000021270, +0.0000021200,0.0000021084,0.0000020984,0.0000020934,0.0000020932, +0.0000020957,0.0000021001,0.0000021050,0.0000021094,0.0000021139, +0.0000021217,0.0000021344,0.0000021485,0.0000021593,0.0000021629, +0.0000021628,0.0000021614,0.0000021605,0.0000021605,0.0000021603, +0.0000021581,0.0000021533,0.0000021460,0.0000021366,0.0000021256, +0.0000021140,0.0000021056,0.0000021061,0.0000021134,0.0000021270, +0.0000021412,0.0000021495,0.0000021497,0.0000021454,0.0000021405, +0.0000021402,0.0000021462,0.0000021598,0.0000021778,0.0000021990, +0.0000022228,0.0000022465,0.0000022674,0.0000022829,0.0000022911, +0.0000022929,0.0000022905,0.0000022869,0.0000022850,0.0000022856, +0.0000022888,0.0000022922,0.0000022958,0.0000023009,0.0000023090, +0.0000023212,0.0000023359,0.0000023509,0.0000023646,0.0000023769, +0.0000023880,0.0000023984,0.0000024093,0.0000024212,0.0000024332, +0.0000024444,0.0000024537,0.0000024590,0.0000024605,0.0000024590, +0.0000024559,0.0000024521,0.0000024479,0.0000024443,0.0000024420, +0.0000024410,0.0000024404,0.0000024395,0.0000024379,0.0000024360, +0.0000024340,0.0000024324,0.0000024315,0.0000024318,0.0000024333, +0.0000024354,0.0000024370,0.0000024374,0.0000024372,0.0000024363, +0.0000024330,0.0000024263,0.0000024164,0.0000024040,0.0000023899, +0.0000023757,0.0000023644,0.0000023574,0.0000023530,0.0000023471, +0.0000023375,0.0000023247,0.0000023097,0.0000022941,0.0000022799, +0.0000022677,0.0000022569,0.0000022481,0.0000022417,0.0000022367, +0.0000022312,0.0000022233,0.0000022120,0.0000021987,0.0000021863, +0.0000021774,0.0000021725,0.0000021709,0.0000021705,0.0000021712, +0.0000021720,0.0000021727,0.0000021732,0.0000021735,0.0000021737, +0.0000021730,0.0000021713,0.0000021694,0.0000021675,0.0000021655, +0.0000021643,0.0000021648,0.0000021660,0.0000021675,0.0000021688, +0.0000021696,0.0000021702,0.0000021707,0.0000021698,0.0000021677, +0.0000021647,0.0000021610,0.0000021574,0.0000021539,0.0000021510, +0.0000021491,0.0000021477,0.0000021463,0.0000021452,0.0000021466, +0.0000021507,0.0000021579,0.0000021680,0.0000021812,0.0000021978, +0.0000022178,0.0000022388,0.0000022582,0.0000022723,0.0000022814, +0.0000022832,0.0000022841,0.0000022816,0.0000022801,0.0000022787, +0.0000022756,0.0000022690,0.0000022582,0.0000022442,0.0000022290, +0.0000022150,0.0000022033,0.0000021930,0.0000021825,0.0000021718, +0.0000021629,0.0000021577,0.0000021556,0.0000021562,0.0000021587, +0.0000021630,0.0000021682,0.0000021735,0.0000021781,0.0000021814, +0.0000021835,0.0000021842,0.0000021827,0.0000021789,0.0000021737, +0.0000021676,0.0000021601,0.0000021511,0.0000021418,0.0000021334, +0.0000021260,0.0000021198,0.0000021143,0.0000021092,0.0000021051, +0.0000021023,0.0000021013,0.0000021018,0.0000021033,0.0000021062, +0.0000021100,0.0000021132,0.0000021151,0.0000021161,0.0000021166, +0.0000021172,0.0000021177,0.0000021176,0.0000021167,0.0000021159, +0.0000021154,0.0000021145,0.0000021131,0.0000021113,0.0000021091, +0.0000021064,0.0000021031,0.0000020998,0.0000020965,0.0000020931, +0.0000020891,0.0000020843,0.0000020791,0.0000020741,0.0000020699, +0.0000020666,0.0000020631,0.0000020593,0.0000020557,0.0000020534, +0.0000020537,0.0000020555,0.0000020599,0.0000020655,0.0000020711, +0.0000020747,0.0000020756,0.0000020745,0.0000020716,0.0000020675, +0.0000020629,0.0000020582,0.0000020526,0.0000020462,0.0000020403, +0.0000020370,0.0000020371,0.0000020385,0.0000020401,0.0000020411, +0.0000020416,0.0000020418,0.0000020422,0.0000020426,0.0000020425, +0.0000020415,0.0000020415,0.0000020422,0.0000020432,0.0000020447, +0.0000020458,0.0000020471,0.0000020485,0.0000020502,0.0000020523, +0.0000020542,0.0000020554,0.0000020559,0.0000020565,0.0000020566, +0.0000020554,0.0000020537,0.0000020522,0.0000020510,0.0000020500, +0.0000020492,0.0000020491,0.0000020495,0.0000020504,0.0000020522, +0.0000020546,0.0000020567,0.0000020576,0.0000020573,0.0000020562, +0.0000020554,0.0000020583,0.0000020650,0.0000020716,0.0000020723, +0.0000020651,0.0000020573,0.0000020584,0.0000020613,0.0000020578, +0.0000020521,0.0000020527,0.0000020582,0.0000020592,0.0000020534, +0.0000020446,0.0000020390,0.0000020383,0.0000020407,0.0000020454, +0.0000020510,0.0000020554,0.0000020578,0.0000020615,0.0000020659, +0.0000020683,0.0000020795,0.0000021062,0.0000021295,0.0000021347, +0.0000021322,0.0000021312,0.0000021340,0.0000021367,0.0000021356, +0.0000021286,0.0000021179,0.0000021082,0.0000021041,0.0000021025, +0.0000020945,0.0000020744,0.0000020539,0.0000020459,0.0000020463, +0.0000020488,0.0000020512,0.0000020506,0.0000020454,0.0000020372, +0.0000020308,0.0000020295,0.0000020327,0.0000020395,0.0000020461, +0.0000020513,0.0000020548,0.0000020573,0.0000020594,0.0000020603, +0.0000020599,0.0000020593,0.0000020597,0.0000020613,0.0000020640, +0.0000020666,0.0000020688,0.0000020704,0.0000020715,0.0000020725, +0.0000020730,0.0000020730,0.0000020727,0.0000020717,0.0000020702, +0.0000020684,0.0000020666,0.0000020654,0.0000020645,0.0000020639, +0.0000020637,0.0000020640,0.0000020644,0.0000020655,0.0000020672, +0.0000020687,0.0000020700,0.0000020716,0.0000020723,0.0000020689, +0.0000020593,0.0000020483,0.0000020393,0.0000020335,0.0000020324, +0.0000020342,0.0000020374,0.0000020400,0.0000020420,0.0000020432, +0.0000020432,0.0000020421,0.0000020408,0.0000020397,0.0000020388, +0.0000020382,0.0000020378,0.0000020371,0.0000020356,0.0000020327, +0.0000020290,0.0000020254,0.0000020226,0.0000020202,0.0000020174, +0.0000020145,0.0000020120,0.0000020106,0.0000020097,0.0000020086, +0.0000020078,0.0000020074,0.0000020077,0.0000020087,0.0000020097, +0.0000020092,0.0000020069,0.0000020045,0.0000020037,0.0000020041, +0.0000020055,0.0000020072,0.0000020096,0.0000020135,0.0000020189, +0.0000020248,0.0000020298,0.0000020332,0.0000020356,0.0000020376, +0.0000020395,0.0000020411,0.0000020416,0.0000020410,0.0000020399, +0.0000020383,0.0000020385,0.0000020422,0.0000020507,0.0000020620, +0.0000020715,0.0000020780,0.0000020834,0.0000020881,0.0000020899, +0.0000020863,0.0000020782,0.0000020716,0.0000020691,0.0000020686, +0.0000020680,0.0000020673,0.0000020693,0.0000020839,0.0000021117, +0.0000021410,0.0000021602,0.0000021710,0.0000021794,0.0000021854, +0.0000021867,0.0000021847,0.0000021801,0.0000021745,0.0000021691, +0.0000021622,0.0000021551,0.0000021528,0.0000021573,0.0000021500, +0.0000021571,0.0000021661,0.0000021689,0.0000021633,0.0000021512, +0.0000021401,0.0000021365,0.0000021373,0.0000021413,0.0000021478, +0.0000021555,0.0000021631,0.0000021687,0.0000021711,0.0000021715, +0.0000021713,0.0000021709,0.0000021705,0.0000021702,0.0000021696, +0.0000021686,0.0000021676,0.0000021660,0.0000021637,0.0000021600, +0.0000021541,0.0000021457,0.0000021356,0.0000021252,0.0000021157, +0.0000021081,0.0000021031,0.0000021006,0.0000021003,0.0000021026, +0.0000021071,0.0000021123,0.0000021161,0.0000021180,0.0000021185, +0.0000021186,0.0000021184,0.0000021170,0.0000021150,0.0000021136, +0.0000021133,0.0000021142,0.0000021155,0.0000021161,0.0000021153, +0.0000021137,0.0000021122,0.0000021111,0.0000021107,0.0000021108, +0.0000021107,0.0000021101,0.0000021099,0.0000021105,0.0000021121, +0.0000021142,0.0000021163,0.0000021184,0.0000021204,0.0000021227, +0.0000021253,0.0000021278,0.0000021299,0.0000021313,0.0000021319, +0.0000021312,0.0000021297,0.0000021282,0.0000021275,0.0000021266, +0.0000021260,0.0000021301,0.0000021362,0.0000021447,0.0000021546, +0.0000021644,0.0000021734,0.0000021808,0.0000021855,0.0000021874, +0.0000021872,0.0000021857,0.0000021843,0.0000021831,0.0000021813, +0.0000021787,0.0000021765,0.0000021757,0.0000021761,0.0000021759, +0.0000021744,0.0000021716,0.0000021682,0.0000021645,0.0000021613, +0.0000021596,0.0000021597,0.0000021606,0.0000021619,0.0000021628, +0.0000021632,0.0000021629,0.0000021623,0.0000021616,0.0000021609, +0.0000021599,0.0000021589,0.0000021580,0.0000021571,0.0000021560, +0.0000021542,0.0000021512,0.0000021472,0.0000021438,0.0000021432, +0.0000021431,0.0000021424,0.0000021417,0.0000021417,0.0000021421, +0.0000021430,0.0000021442,0.0000021450,0.0000021446,0.0000021431, +0.0000021411,0.0000021397,0.0000021385,0.0000021367,0.0000021343, +0.0000021318,0.0000021299,0.0000021286,0.0000021281,0.0000021284, +0.0000021290,0.0000021296,0.0000021308,0.0000021326,0.0000021349, +0.0000021379,0.0000021413,0.0000021438,0.0000021450,0.0000021457, +0.0000021461,0.0000021456,0.0000021444,0.0000021426,0.0000021406, +0.0000021393,0.0000021392,0.0000021403,0.0000021428,0.0000021465, +0.0000021509,0.0000021552,0.0000021601,0.0000021658,0.0000021714, +0.0000021754,0.0000021773,0.0000021781,0.0000021782,0.0000021770, +0.0000021726,0.0000021665,0.0000021617,0.0000021607,0.0000021644, +0.0000021713,0.0000021772,0.0000021790,0.0000021779,0.0000021749, +0.0000021735,0.0000021764,0.0000021916,0.0000022121,0.0000022257, +0.0000022284,0.0000022260,0.0000022244,0.0000022266,0.0000022338, +0.0000022433,0.0000022522,0.0000022600,0.0000022670,0.0000022731, +0.0000022777,0.0000022803,0.0000022815,0.0000022813,0.0000022803, +0.0000022791,0.0000022778,0.0000022763,0.0000022752,0.0000022748, +0.0000022748,0.0000022754,0.0000022769,0.0000022792,0.0000022822, +0.0000022860,0.0000022901,0.0000022940,0.0000022974,0.0000023003, +0.0000023030,0.0000023055,0.0000023074,0.0000023085,0.0000023088, +0.0000023089,0.0000023092,0.0000023095,0.0000023098,0.0000023101, +0.0000023103,0.0000023096,0.0000023080,0.0000023054,0.0000023017, +0.0000022967,0.0000022910,0.0000022853,0.0000022803,0.0000022765, +0.0000022733,0.0000022707,0.0000022686,0.0000022673,0.0000022666, +0.0000022667,0.0000022676,0.0000022695,0.0000022721,0.0000022750, +0.0000022782,0.0000022817,0.0000022849,0.0000022878,0.0000022903, +0.0000022924,0.0000022944,0.0000022966,0.0000022989,0.0000023011, +0.0000023033,0.0000023055,0.0000023078,0.0000023104,0.0000023133, +0.0000023159,0.0000023181,0.0000023199,0.0000023209,0.0000023210, +0.0000023205,0.0000023188,0.0000023162,0.0000023136,0.0000023115, +0.0000023088,0.0000023056,0.0000023019,0.0000022966,0.0000022906, +0.0000022842,0.0000022775,0.0000022703,0.0000022634,0.0000022569, +0.0000022507,0.0000022454,0.0000022412,0.0000022378,0.0000022344, +0.0000022311,0.0000022279,0.0000022249,0.0000022223,0.0000022202, +0.0000022189,0.0000022188,0.0000022196,0.0000022207,0.0000022215, +0.0000022217,0.0000022212,0.0000022204,0.0000022192,0.0000022166, +0.0000022122,0.0000022057,0.0000021972,0.0000021868,0.0000021753, +0.0000021635,0.0000021531,0.0000021461,0.0000021420,0.0000021380, +0.0000021328,0.0000021262,0.0000021190,0.0000021109,0.0000021042, +0.0000021029,0.0000021063,0.0000021118,0.0000021165,0.0000021191, +0.0000021199,0.0000021204,0.0000021213,0.0000021229,0.0000021235, +0.0000021230,0.0000021219,0.0000021210,0.0000021198,0.0000021175, +0.0000021133,0.0000021092,0.0000021071,0.0000021063,0.0000021065, +0.0000021074,0.0000021082,0.0000021076,0.0000021065,0.0000021056, +0.0000021068,0.0000021123,0.0000021195,0.0000021237,0.0000021264, +0.0000021320,0.0000021441,0.0000021642,0.0000021854,0.0000021975, +0.0000022016,0.0000022021,0.0000021998,0.0000021956,0.0000021906, +0.0000021863,0.0000021833,0.0000021829,0.0000021855,0.0000021902, +0.0000021949,0.0000021981,0.0000021998,0.0000022025,0.0000022081, +0.0000022139,0.0000022180,0.0000022240,0.0000022310,0.0000022321, +0.0000022241,0.0000022140,0.0000022088,0.0000022058,0.0000022018, +0.0000021991,0.0000022023,0.0000022123,0.0000022212,0.0000022250, +0.0000022248,0.0000022229,0.0000022193,0.0000022150,0.0000022113, +0.0000022099,0.0000022109,0.0000022149,0.0000022202,0.0000022246, +0.0000022279,0.0000022308,0.0000022331,0.0000022340,0.0000022338, +0.0000022328,0.0000022307,0.0000022276,0.0000022250,0.0000022238, +0.0000022240,0.0000022247,0.0000022244,0.0000022223,0.0000022186, +0.0000022143,0.0000022102,0.0000022061,0.0000022034,0.0000022015, +0.0000021992,0.0000021974,0.0000021967,0.0000021956,0.0000021933, +0.0000021928,0.0000021989,0.0000022145,0.0000022429,0.0000022707, +0.0000022851,0.0000022904,0.0000022939,0.0000022961,0.0000022935, +0.0000022875,0.0000022781,0.0000022652,0.0000022523,0.0000022466, +0.0000022479,0.0000022487,0.0000022466,0.0000022397,0.0000022221, +0.0000022061,0.0000022066,0.0000022157,0.0000022259,0.0000022356, +0.0000022410,0.0000022433,0.0000022480,0.0000022596,0.0000022721, +0.0000022818,0.0000022889,0.0000022915,0.0000022916,0.0000022902, +0.0000022874,0.0000022854,0.0000022836,0.0000022820,0.0000022813, +0.0000022831,0.0000022867,0.0000022919,0.0000022972,0.0000023014, +0.0000023064,0.0000023112,0.0000023139,0.0000023137,0.0000023107, +0.0000023056,0.0000023016,0.0000023007,0.0000022994,0.0000022957, +0.0000022906,0.0000022871,0.0000022861,0.0000022858,0.0000022869, +0.0000022902,0.0000022939,0.0000022969,0.0000022994,0.0000023016, +0.0000023031,0.0000023040,0.0000023035,0.0000023014,0.0000022990, +0.0000022974,0.0000022958,0.0000022938,0.0000022916,0.0000022888, +0.0000022852,0.0000022822,0.0000022814,0.0000022819,0.0000022839, +0.0000022865,0.0000022880,0.0000022871,0.0000022868,0.0000022902, +0.0000022961,0.0000023029,0.0000023094,0.0000023132,0.0000023120, +0.0000023040,0.0000023005,0.0000023021,0.0000023039,0.0000022970, +0.0000022799,0.0000022658,0.0000022418,0.0000022154,0.0000022136, +0.0000022235,0.0000022201,0.0000022075,0.0000022073,0.0000022180, +0.0000022309,0.0000022292,0.0000022083,0.0000021953,0.0000021978, +0.0000022081,0.0000022152,0.0000022166,0.0000022158,0.0000022143, +0.0000022132,0.0000022121,0.0000022100,0.0000022077,0.0000022066, +0.0000022063,0.0000022073,0.0000022095,0.0000022129,0.0000022164, +0.0000022197,0.0000022227,0.0000022256,0.0000022279,0.0000022296, +0.0000022300,0.0000022286,0.0000022260,0.0000022215,0.0000022156, +0.0000022106,0.0000022069,0.0000022059,0.0000022088,0.0000022166, +0.0000022267,0.0000022363,0.0000022407,0.0000022380,0.0000022279, +0.0000022142,0.0000022027,0.0000021988,0.0000022028,0.0000022109, +0.0000022200,0.0000022304,0.0000022420,0.0000022532,0.0000022622, +0.0000022688,0.0000022734,0.0000022757,0.0000022769,0.0000022757, +0.0000022713,0.0000022645,0.0000022570,0.0000022508,0.0000022453, +0.0000022397,0.0000022337,0.0000022275,0.0000022221,0.0000022182, +0.0000022151,0.0000022125,0.0000022101,0.0000022086,0.0000022084, +0.0000022097,0.0000022129,0.0000022168,0.0000022205,0.0000022237, +0.0000022265,0.0000022291,0.0000022309,0.0000022321,0.0000022333, +0.0000022341,0.0000022342,0.0000022346,0.0000022353,0.0000022363, +0.0000022371,0.0000022370,0.0000022363,0.0000022352,0.0000022335, +0.0000022312,0.0000022286,0.0000022260,0.0000022237,0.0000022222, +0.0000022214,0.0000022204,0.0000022188,0.0000022163,0.0000022137, +0.0000022109,0.0000022091,0.0000022078,0.0000022066,0.0000022083, +0.0000022123,0.0000022184,0.0000022264,0.0000022366,0.0000022480, +0.0000022582,0.0000022651,0.0000022694,0.0000022727,0.0000022770, +0.0000022842,0.0000022949,0.0000023074,0.0000023191,0.0000023284, +0.0000023347,0.0000023380,0.0000023388,0.0000023384,0.0000023362, +0.0000023333,0.0000023315,0.0000023319,0.0000023349,0.0000023409, +0.0000023490,0.0000023572,0.0000023630,0.0000023649,0.0000023634, +0.0000023587,0.0000023517,0.0000023460,0.0000023432,0.0000023428, +0.0000023437,0.0000023452,0.0000023465,0.0000023476,0.0000023484, +0.0000023482,0.0000023464,0.0000023433,0.0000023393,0.0000023370, +0.0000023371,0.0000023390,0.0000023413,0.0000023422,0.0000023420, +0.0000023405,0.0000023388,0.0000023370,0.0000023348,0.0000023322, +0.0000023294,0.0000023272,0.0000023260,0.0000023260,0.0000023266, +0.0000023271,0.0000023273,0.0000023273,0.0000023273,0.0000023269, +0.0000023265,0.0000023264,0.0000023267,0.0000023266,0.0000023259, +0.0000023249,0.0000023240,0.0000023230,0.0000023217,0.0000023202, +0.0000023189,0.0000023181,0.0000023173,0.0000023163,0.0000023150, +0.0000023134,0.0000023113,0.0000023088,0.0000023058,0.0000023027, +0.0000022997,0.0000022973,0.0000022962,0.0000022964,0.0000022977, +0.0000022994,0.0000023006,0.0000023007,0.0000023006,0.0000023008, +0.0000023024,0.0000023043,0.0000023042,0.0000023011,0.0000022966, +0.0000022936,0.0000022903,0.0000022816,0.0000022693,0.0000022600, +0.0000022561,0.0000022538,0.0000022491,0.0000022402,0.0000022285, +0.0000022182,0.0000022104,0.0000022012,0.0000021873,0.0000021694, +0.0000021528,0.0000021409,0.0000021326,0.0000021265,0.0000021223, +0.0000021202,0.0000021197,0.0000021200,0.0000021202,0.0000021194, +0.0000021175,0.0000021155,0.0000021135,0.0000021113,0.0000021092, +0.0000021068,0.0000021038,0.0000021004,0.0000020964,0.0000020912, +0.0000020851,0.0000020783,0.0000020722,0.0000020682,0.0000020668, +0.0000020670,0.0000020676,0.0000020686,0.0000020705,0.0000020727, +0.0000020749,0.0000020772,0.0000020797,0.0000020840,0.0000020886, +0.0000020935,0.0000020981,0.0000021015,0.0000021032,0.0000021034, +0.0000021021,0.0000021016,0.0000021019,0.0000021043,0.0000021084, +0.0000021130,0.0000021166,0.0000021196,0.0000021229,0.0000021262, +0.0000021288,0.0000021303,0.0000021309,0.0000021320,0.0000021350, +0.0000021412,0.0000021503,0.0000021603,0.0000021697,0.0000021777, +0.0000021842,0.0000021910,0.0000021984,0.0000022054,0.0000022106, +0.0000022140,0.0000022168,0.0000022206,0.0000022223,0.0000022199, +0.0000022164,0.0000022159,0.0000022192,0.0000022237,0.0000022260, +0.0000022265,0.0000022273,0.0000022287,0.0000022293,0.0000022273, +0.0000022236,0.0000022234,0.0000022285,0.0000022343,0.0000022380, +0.0000022415,0.0000022442,0.0000022444,0.0000022426,0.0000022390, +0.0000022337,0.0000022281,0.0000022216,0.0000022162,0.0000022146, +0.0000022172,0.0000022248,0.0000022333,0.0000022437,0.0000022586, +0.0000022744,0.0000022819,0.0000022797,0.0000022726,0.0000022678, +0.0000022669,0.0000022690,0.0000022793,0.0000022998,0.0000023173, +0.0000023211,0.0000023198,0.0000023159,0.0000023056,0.0000022863, +0.0000022559,0.0000022221,0.0000022038,0.0000022022,0.0000022028, +0.0000022053,0.0000022088,0.0000022113,0.0000022106,0.0000022075, +0.0000022049,0.0000022044,0.0000022055,0.0000022081,0.0000022114, +0.0000022145,0.0000022159,0.0000022155,0.0000022129,0.0000022092, +0.0000022059,0.0000022044,0.0000022052,0.0000022089,0.0000022152, +0.0000022230,0.0000022326,0.0000022447,0.0000022541,0.0000022558, +0.0000022506,0.0000022411,0.0000022341,0.0000022331,0.0000022363, +0.0000022421,0.0000022486,0.0000022541,0.0000022562,0.0000022557, +0.0000022545,0.0000022536,0.0000022521,0.0000022501,0.0000022484, +0.0000022463,0.0000022427,0.0000022369,0.0000022289,0.0000022203, +0.0000022133,0.0000022086,0.0000022066,0.0000022070,0.0000022095, +0.0000022145,0.0000022200,0.0000022249,0.0000022296,0.0000022350, +0.0000022410,0.0000022459,0.0000022470,0.0000022453,0.0000022414, +0.0000022371,0.0000022320,0.0000022233,0.0000022094,0.0000021927, +0.0000021788,0.0000021726,0.0000021756,0.0000021903,0.0000022072, +0.0000022122,0.0000022089,0.0000022121,0.0000022334,0.0000022597, +0.0000022622,0.0000022322,0.0000021998,0.0000021888,0.0000021880, +0.0000021822,0.0000021711,0.0000021623,0.0000021588,0.0000021578, +0.0000021571,0.0000021551,0.0000021518,0.0000021486,0.0000021464, +0.0000021445,0.0000021430,0.0000021433,0.0000021472,0.0000021539, +0.0000021599,0.0000021630,0.0000021629,0.0000021617,0.0000021615, +0.0000021635,0.0000021665,0.0000021689,0.0000021713,0.0000021740, +0.0000021766,0.0000021793,0.0000021819,0.0000021844,0.0000021877, +0.0000021920,0.0000021966,0.0000022011,0.0000022054,0.0000022103, +0.0000022165,0.0000022241,0.0000022325,0.0000022402,0.0000022468, +0.0000022532,0.0000022600,0.0000022657,0.0000022684,0.0000022687, +0.0000022687,0.0000022695,0.0000022705,0.0000022693,0.0000022590, +0.0000022384,0.0000022168,0.0000022018,0.0000021908,0.0000021774, +0.0000021612,0.0000021449,0.0000021302,0.0000021176,0.0000021049, +0.0000020899,0.0000020737,0.0000020594,0.0000020486,0.0000020418, +0.0000020393,0.0000020389,0.0000020386,0.0000020386,0.0000020386, +0.0000020386,0.0000020399,0.0000020445,0.0000020530,0.0000020638, +0.0000020736,0.0000020795,0.0000020821,0.0000020839,0.0000020868, +0.0000020920,0.0000021003,0.0000021110,0.0000021212,0.0000021266, +0.0000021249,0.0000021179,0.0000021069,0.0000020979,0.0000020940, +0.0000020942,0.0000020961,0.0000020997,0.0000021041,0.0000021083, +0.0000021128,0.0000021199,0.0000021315,0.0000021459,0.0000021580, +0.0000021643,0.0000021659,0.0000021653,0.0000021643,0.0000021647, +0.0000021654,0.0000021643,0.0000021601,0.0000021532,0.0000021438, +0.0000021320,0.0000021190,0.0000021084,0.0000021038,0.0000021090, +0.0000021212,0.0000021355,0.0000021446,0.0000021451,0.0000021405, +0.0000021356,0.0000021344,0.0000021411,0.0000021561,0.0000021747, +0.0000021950,0.0000022174,0.0000022407,0.0000022620,0.0000022786, +0.0000022891,0.0000022931,0.0000022922,0.0000022878,0.0000022839, +0.0000022832,0.0000022848,0.0000022870,0.0000022889,0.0000022911, +0.0000022962,0.0000023054,0.0000023179,0.0000023317,0.0000023456, +0.0000023583,0.0000023693,0.0000023799,0.0000023909,0.0000024030, +0.0000024163,0.0000024305,0.0000024427,0.0000024514,0.0000024561, +0.0000024571,0.0000024555,0.0000024526,0.0000024491,0.0000024455, +0.0000024432,0.0000024418,0.0000024408,0.0000024397,0.0000024384, +0.0000024372,0.0000024361,0.0000024350,0.0000024341,0.0000024342, +0.0000024356,0.0000024374,0.0000024384,0.0000024391,0.0000024387, +0.0000024369,0.0000024320,0.0000024236,0.0000024121,0.0000023987, +0.0000023845,0.0000023715,0.0000023627,0.0000023587,0.0000023556, +0.0000023490,0.0000023379,0.0000023234,0.0000023064,0.0000022890, +0.0000022738,0.0000022618,0.0000022521,0.0000022444,0.0000022381, +0.0000022318,0.0000022247,0.0000022159,0.0000022049,0.0000021932, +0.0000021833,0.0000021766,0.0000021730,0.0000021710,0.0000021706, +0.0000021704,0.0000021706,0.0000021705,0.0000021700,0.0000021697, +0.0000021693,0.0000021684,0.0000021675,0.0000021664,0.0000021647, +0.0000021628,0.0000021611,0.0000021599,0.0000021601,0.0000021616, +0.0000021637,0.0000021663,0.0000021690,0.0000021711,0.0000021723, +0.0000021721,0.0000021706,0.0000021677,0.0000021641,0.0000021598, +0.0000021553,0.0000021512,0.0000021477,0.0000021450,0.0000021431, +0.0000021420,0.0000021424,0.0000021440,0.0000021467,0.0000021513, +0.0000021594,0.0000021724,0.0000021906,0.0000022127,0.0000022360, +0.0000022578,0.0000022737,0.0000022821,0.0000022815,0.0000022823, +0.0000022807,0.0000022777,0.0000022725,0.0000022639,0.0000022518, +0.0000022374,0.0000022230,0.0000022103,0.0000021991,0.0000021885, +0.0000021778,0.0000021676,0.0000021598,0.0000021557,0.0000021560, +0.0000021578,0.0000021619,0.0000021676,0.0000021729,0.0000021770, +0.0000021796,0.0000021804,0.0000021798,0.0000021770,0.0000021723, +0.0000021668,0.0000021606,0.0000021533,0.0000021447,0.0000021362, +0.0000021286,0.0000021225,0.0000021177,0.0000021138,0.0000021104, +0.0000021079,0.0000021074,0.0000021084,0.0000021104,0.0000021137, +0.0000021177,0.0000021217,0.0000021250,0.0000021269,0.0000021272, +0.0000021269,0.0000021267,0.0000021264,0.0000021255,0.0000021245, +0.0000021238,0.0000021230,0.0000021220,0.0000021203,0.0000021179, +0.0000021148,0.0000021113,0.0000021074,0.0000021035,0.0000020997, +0.0000020961,0.0000020925,0.0000020885,0.0000020837,0.0000020787, +0.0000020749,0.0000020718,0.0000020688,0.0000020649,0.0000020604, +0.0000020564,0.0000020542,0.0000020542,0.0000020561,0.0000020613, +0.0000020671,0.0000020713,0.0000020730,0.0000020723,0.0000020694, +0.0000020659,0.0000020617,0.0000020566,0.0000020503,0.0000020438, +0.0000020390,0.0000020376,0.0000020388,0.0000020409,0.0000020425, +0.0000020435,0.0000020438,0.0000020438,0.0000020440,0.0000020437, +0.0000020422,0.0000020407,0.0000020397,0.0000020398,0.0000020400, +0.0000020410,0.0000020424,0.0000020441,0.0000020462,0.0000020488, +0.0000020512,0.0000020532,0.0000020551,0.0000020569,0.0000020580, +0.0000020578,0.0000020566,0.0000020553,0.0000020533,0.0000020507, +0.0000020481,0.0000020457,0.0000020448,0.0000020445,0.0000020440, +0.0000020438,0.0000020449,0.0000020477,0.0000020514,0.0000020539, +0.0000020542,0.0000020530,0.0000020530,0.0000020572,0.0000020656, +0.0000020718,0.0000020679,0.0000020582,0.0000020559,0.0000020591, +0.0000020566,0.0000020500,0.0000020495,0.0000020551,0.0000020571, +0.0000020516,0.0000020422,0.0000020368,0.0000020362,0.0000020386, +0.0000020430,0.0000020486,0.0000020528,0.0000020559,0.0000020610, +0.0000020648,0.0000020684,0.0000020853,0.0000021132,0.0000021306, +0.0000021319,0.0000021278,0.0000021255,0.0000021255,0.0000021244, +0.0000021192,0.0000021117,0.0000021067,0.0000021047,0.0000021009, +0.0000020865,0.0000020634,0.0000020471,0.0000020434,0.0000020441, +0.0000020462,0.0000020495,0.0000020503,0.0000020471,0.0000020393, +0.0000020305,0.0000020264,0.0000020276,0.0000020335,0.0000020411, +0.0000020481,0.0000020535,0.0000020568,0.0000020590,0.0000020598, +0.0000020592,0.0000020581,0.0000020581,0.0000020591,0.0000020616, +0.0000020643,0.0000020668,0.0000020688,0.0000020702,0.0000020715, +0.0000020730,0.0000020739,0.0000020738,0.0000020723,0.0000020700, +0.0000020672,0.0000020640,0.0000020615,0.0000020604,0.0000020601, +0.0000020604,0.0000020616,0.0000020632,0.0000020649,0.0000020668, +0.0000020685,0.0000020701,0.0000020720,0.0000020735,0.0000020724, +0.0000020650,0.0000020537,0.0000020435,0.0000020358,0.0000020318, +0.0000020320,0.0000020346,0.0000020372,0.0000020392,0.0000020410, +0.0000020425,0.0000020427,0.0000020418,0.0000020406,0.0000020397, +0.0000020390,0.0000020388,0.0000020388,0.0000020383,0.0000020369, +0.0000020344,0.0000020308,0.0000020270,0.0000020237,0.0000020210, +0.0000020184,0.0000020156,0.0000020136,0.0000020127,0.0000020122, +0.0000020109,0.0000020088,0.0000020070,0.0000020055,0.0000020043, +0.0000020039,0.0000020041,0.0000020038,0.0000020028,0.0000020016, +0.0000020012,0.0000020018,0.0000020035,0.0000020060,0.0000020093, +0.0000020135,0.0000020182,0.0000020229,0.0000020270,0.0000020303, +0.0000020330,0.0000020347,0.0000020356,0.0000020368,0.0000020386, +0.0000020399,0.0000020400,0.0000020380,0.0000020349,0.0000020335, +0.0000020362,0.0000020456,0.0000020586,0.0000020702,0.0000020789, +0.0000020861,0.0000020915,0.0000020924,0.0000020863,0.0000020755, +0.0000020679,0.0000020659,0.0000020658,0.0000020660,0.0000020658, +0.0000020705,0.0000020884,0.0000021173,0.0000021445,0.0000021616, +0.0000021709,0.0000021776,0.0000021819,0.0000021826,0.0000021800, +0.0000021754,0.0000021706,0.0000021645,0.0000021564,0.0000021499, +0.0000021503,0.0000021461,0.0000021484,0.0000021570,0.0000021665, +0.0000021705,0.0000021667,0.0000021562,0.0000021454,0.0000021400, +0.0000021402,0.0000021437,0.0000021500,0.0000021569,0.0000021627, +0.0000021662,0.0000021677,0.0000021684,0.0000021683,0.0000021672, +0.0000021651,0.0000021627,0.0000021601,0.0000021571,0.0000021526, +0.0000021461,0.0000021374,0.0000021271,0.0000021165,0.0000021073, +0.0000021007,0.0000020964,0.0000020934,0.0000020924,0.0000020940, +0.0000020989,0.0000021056,0.0000021122,0.0000021168,0.0000021188, +0.0000021193,0.0000021194,0.0000021194,0.0000021186,0.0000021172, +0.0000021158,0.0000021149,0.0000021144,0.0000021141,0.0000021137, +0.0000021126,0.0000021110,0.0000021095,0.0000021086,0.0000021080, +0.0000021077,0.0000021074,0.0000021067,0.0000021064,0.0000021070, +0.0000021086,0.0000021107,0.0000021126,0.0000021145,0.0000021164, +0.0000021188,0.0000021218,0.0000021251,0.0000021282,0.0000021306, +0.0000021322,0.0000021328,0.0000021321,0.0000021307,0.0000021290, +0.0000021273,0.0000021258,0.0000021245,0.0000021232,0.0000021227, +0.0000021268,0.0000021328,0.0000021400,0.0000021487,0.0000021579, +0.0000021661,0.0000021727,0.0000021773,0.0000021801,0.0000021815, +0.0000021819,0.0000021812,0.0000021802,0.0000021796,0.0000021803, +0.0000021818,0.0000021811,0.0000021790,0.0000021758,0.0000021719, +0.0000021679,0.0000021649,0.0000021640,0.0000021645,0.0000021648, +0.0000021649,0.0000021652,0.0000021656,0.0000021655,0.0000021647, +0.0000021637,0.0000021624,0.0000021610,0.0000021597,0.0000021585, +0.0000021574,0.0000021555,0.0000021527,0.0000021488,0.0000021445, +0.0000021419,0.0000021413,0.0000021406,0.0000021395,0.0000021385, +0.0000021382,0.0000021383,0.0000021382,0.0000021378,0.0000021366, +0.0000021344,0.0000021315,0.0000021287,0.0000021264,0.0000021243, +0.0000021221,0.0000021198,0.0000021183,0.0000021180,0.0000021185, +0.0000021195,0.0000021207,0.0000021215,0.0000021222,0.0000021233, +0.0000021255,0.0000021285,0.0000021321,0.0000021355,0.0000021379, +0.0000021393,0.0000021403,0.0000021407,0.0000021400,0.0000021389, +0.0000021373,0.0000021353,0.0000021333,0.0000021320,0.0000021319, +0.0000021333,0.0000021365,0.0000021411,0.0000021465,0.0000021524, +0.0000021589,0.0000021656,0.0000021709,0.0000021739,0.0000021757, +0.0000021773,0.0000021778,0.0000021766,0.0000021743,0.0000021700, +0.0000021658,0.0000021643,0.0000021675,0.0000021738,0.0000021789, +0.0000021793,0.0000021761,0.0000021721,0.0000021700,0.0000021723, +0.0000021866,0.0000022074,0.0000022224,0.0000022267,0.0000022267, +0.0000022264,0.0000022279,0.0000022323,0.0000022387,0.0000022454, +0.0000022517,0.0000022583,0.0000022649,0.0000022709,0.0000022758, +0.0000022790,0.0000022805,0.0000022816,0.0000022822,0.0000022821, +0.0000022814,0.0000022801,0.0000022787,0.0000022777,0.0000022776, +0.0000022783,0.0000022797,0.0000022822,0.0000022856,0.0000022898, +0.0000022943,0.0000022987,0.0000023028,0.0000023067,0.0000023100, +0.0000023123,0.0000023134,0.0000023135,0.0000023127,0.0000023116, +0.0000023106,0.0000023101,0.0000023096,0.0000023090,0.0000023078, +0.0000023063,0.0000023046,0.0000023021,0.0000022992,0.0000022961, +0.0000022932,0.0000022904,0.0000022881,0.0000022863,0.0000022849, +0.0000022838,0.0000022835,0.0000022837,0.0000022844,0.0000022861, +0.0000022886,0.0000022920,0.0000022957,0.0000022990,0.0000023020, +0.0000023045,0.0000023066,0.0000023083,0.0000023098,0.0000023114, +0.0000023130,0.0000023145,0.0000023154,0.0000023163,0.0000023174, +0.0000023186,0.0000023201,0.0000023216,0.0000023231,0.0000023241, +0.0000023243,0.0000023236,0.0000023220,0.0000023193,0.0000023159, +0.0000023120,0.0000023074,0.0000023023,0.0000022963,0.0000022896, +0.0000022823,0.0000022750,0.0000022678,0.0000022610,0.0000022543, +0.0000022478,0.0000022417,0.0000022363,0.0000022319,0.0000022288, +0.0000022265,0.0000022238,0.0000022208,0.0000022179,0.0000022155, +0.0000022133,0.0000022113,0.0000022100,0.0000022098,0.0000022105, +0.0000022120,0.0000022136,0.0000022141,0.0000022133,0.0000022118, +0.0000022103,0.0000022080,0.0000022037,0.0000021972,0.0000021886, +0.0000021781,0.0000021667,0.0000021558,0.0000021470,0.0000021415, +0.0000021380,0.0000021342,0.0000021306,0.0000021260,0.0000021190, +0.0000021111,0.0000021071,0.0000021080,0.0000021113,0.0000021141, +0.0000021153,0.0000021153,0.0000021159,0.0000021170,0.0000021193, +0.0000021214,0.0000021219,0.0000021207,0.0000021180,0.0000021154, +0.0000021129,0.0000021094,0.0000021057,0.0000021028,0.0000021015, +0.0000021023,0.0000021043,0.0000021070,0.0000021083,0.0000021068, +0.0000021050,0.0000021051,0.0000021088,0.0000021173,0.0000021243, +0.0000021278,0.0000021324,0.0000021412,0.0000021554,0.0000021748, +0.0000021890,0.0000021945,0.0000021958,0.0000021944,0.0000021912, +0.0000021868,0.0000021827,0.0000021804,0.0000021801,0.0000021831, +0.0000021874,0.0000021915,0.0000021943,0.0000021951,0.0000021973, +0.0000022031,0.0000022094,0.0000022143,0.0000022218,0.0000022293, +0.0000022292,0.0000022207,0.0000022114,0.0000022065,0.0000022024, +0.0000021980,0.0000021971,0.0000022031,0.0000022139,0.0000022220, +0.0000022239,0.0000022233,0.0000022212,0.0000022171,0.0000022113, +0.0000022058,0.0000022021,0.0000022016,0.0000022051,0.0000022099, +0.0000022145,0.0000022175,0.0000022187,0.0000022191,0.0000022193, +0.0000022192,0.0000022189,0.0000022179,0.0000022164,0.0000022147, +0.0000022141,0.0000022141,0.0000022144,0.0000022142,0.0000022135, +0.0000022120,0.0000022097,0.0000022074,0.0000022053,0.0000022028, +0.0000022018,0.0000022012,0.0000022000,0.0000021978,0.0000021948, +0.0000021904,0.0000021876,0.0000021917,0.0000022088,0.0000022396, +0.0000022675,0.0000022826,0.0000022897,0.0000022951,0.0000022991, +0.0000022971,0.0000022922,0.0000022846,0.0000022707,0.0000022541, +0.0000022421,0.0000022407,0.0000022443,0.0000022450,0.0000022425, +0.0000022302,0.0000022106,0.0000022046,0.0000022094,0.0000022176, +0.0000022282,0.0000022370,0.0000022409,0.0000022428,0.0000022461, +0.0000022550,0.0000022667,0.0000022757,0.0000022828,0.0000022863, +0.0000022871,0.0000022861,0.0000022837,0.0000022815,0.0000022801, +0.0000022789,0.0000022785,0.0000022805,0.0000022838,0.0000022872, +0.0000022913,0.0000022965,0.0000023024,0.0000023076,0.0000023109, +0.0000023117,0.0000023103,0.0000023069,0.0000023035,0.0000023024, +0.0000023025,0.0000023013,0.0000022982,0.0000022950,0.0000022932, +0.0000022924,0.0000022926,0.0000022941,0.0000022965,0.0000022986, +0.0000023007,0.0000023028,0.0000023044,0.0000023051,0.0000023044, +0.0000023023,0.0000023004,0.0000022995,0.0000022978,0.0000022957, +0.0000022929,0.0000022890,0.0000022846,0.0000022819,0.0000022815, +0.0000022820,0.0000022833,0.0000022857,0.0000022877,0.0000022874, +0.0000022865,0.0000022884,0.0000022931,0.0000022997,0.0000023063, +0.0000023098,0.0000023090,0.0000023020,0.0000022982,0.0000022998, +0.0000023026,0.0000022997,0.0000022841,0.0000022698,0.0000022533, +0.0000022256,0.0000022135,0.0000022210,0.0000022261,0.0000022143, +0.0000022058,0.0000022093,0.0000022200,0.0000022310,0.0000022262, +0.0000022068,0.0000021962,0.0000022001,0.0000022090,0.0000022153, +0.0000022166,0.0000022150,0.0000022119,0.0000022094,0.0000022072, +0.0000022049,0.0000022030,0.0000022021,0.0000022014,0.0000022020, +0.0000022042,0.0000022074,0.0000022112,0.0000022147,0.0000022177, +0.0000022201,0.0000022222,0.0000022244,0.0000022263,0.0000022272, +0.0000022259,0.0000022219,0.0000022161,0.0000022101,0.0000022052, +0.0000022030,0.0000022042,0.0000022092,0.0000022182,0.0000022297, +0.0000022394,0.0000022427,0.0000022379,0.0000022256,0.0000022101, +0.0000021983,0.0000021949,0.0000021988,0.0000022079,0.0000022200, +0.0000022332,0.0000022457,0.0000022564,0.0000022649,0.0000022711, +0.0000022754,0.0000022782,0.0000022794,0.0000022781,0.0000022737, +0.0000022670,0.0000022600,0.0000022537,0.0000022480,0.0000022423, +0.0000022359,0.0000022296,0.0000022241,0.0000022192,0.0000022150, +0.0000022117,0.0000022099,0.0000022097,0.0000022106,0.0000022132, +0.0000022165,0.0000022193,0.0000022219,0.0000022243,0.0000022265, +0.0000022282,0.0000022295,0.0000022311,0.0000022326,0.0000022339, +0.0000022350,0.0000022360,0.0000022372,0.0000022380,0.0000022386, +0.0000022387,0.0000022386,0.0000022379,0.0000022362,0.0000022340, +0.0000022314,0.0000022294,0.0000022282,0.0000022272,0.0000022255, +0.0000022233,0.0000022207,0.0000022180,0.0000022148,0.0000022113, +0.0000022085,0.0000022070,0.0000022075,0.0000022081,0.0000022079, +0.0000022101,0.0000022144,0.0000022213,0.0000022304,0.0000022409, +0.0000022511,0.0000022594,0.0000022652,0.0000022699,0.0000022757, +0.0000022844,0.0000022960,0.0000023091,0.0000023210,0.0000023297, +0.0000023351,0.0000023379,0.0000023383,0.0000023382,0.0000023360, +0.0000023340,0.0000023335,0.0000023354,0.0000023403,0.0000023475, +0.0000023548,0.0000023602,0.0000023625,0.0000023613,0.0000023569, +0.0000023507,0.0000023460,0.0000023443,0.0000023447,0.0000023464, +0.0000023482,0.0000023491,0.0000023491,0.0000023487,0.0000023469, +0.0000023429,0.0000023368,0.0000023316,0.0000023293,0.0000023299, +0.0000023321,0.0000023341,0.0000023352,0.0000023353,0.0000023347, +0.0000023333,0.0000023311,0.0000023284,0.0000023257,0.0000023233, +0.0000023216,0.0000023204,0.0000023199,0.0000023200,0.0000023208, +0.0000023220,0.0000023232,0.0000023242,0.0000023251,0.0000023260, +0.0000023268,0.0000023270,0.0000023263,0.0000023251,0.0000023238, +0.0000023223,0.0000023206,0.0000023186,0.0000023167,0.0000023153, +0.0000023141,0.0000023130,0.0000023122,0.0000023115,0.0000023105, +0.0000023089,0.0000023069,0.0000023048,0.0000023027,0.0000023010, +0.0000023001,0.0000023000,0.0000023005,0.0000023008,0.0000023009, +0.0000023009,0.0000023013,0.0000023029,0.0000023054,0.0000023069, +0.0000023055,0.0000023013,0.0000022970,0.0000022933,0.0000022873, +0.0000022764,0.0000022649,0.0000022581,0.0000022552,0.0000022518, +0.0000022448,0.0000022340,0.0000022226,0.0000022138,0.0000022058, +0.0000021934,0.0000021748,0.0000021546,0.0000021376,0.0000021263, +0.0000021183,0.0000021128,0.0000021099,0.0000021097,0.0000021111, +0.0000021124,0.0000021126,0.0000021110,0.0000021078,0.0000021037, +0.0000020996,0.0000020960,0.0000020932,0.0000020907,0.0000020882, +0.0000020856,0.0000020828,0.0000020796,0.0000020752,0.0000020708, +0.0000020653,0.0000020618,0.0000020614,0.0000020632,0.0000020650, +0.0000020668,0.0000020687,0.0000020706,0.0000020718,0.0000020724, +0.0000020720,0.0000020748,0.0000020749,0.0000020782,0.0000020817, +0.0000020858,0.0000020902,0.0000020943,0.0000020973,0.0000020990, +0.0000021001,0.0000021006,0.0000021016,0.0000021032,0.0000021051, +0.0000021069,0.0000021088,0.0000021109,0.0000021133,0.0000021153, +0.0000021159,0.0000021158,0.0000021158,0.0000021173,0.0000021217, +0.0000021292,0.0000021386,0.0000021492,0.0000021604,0.0000021719, +0.0000021831,0.0000021929,0.0000022009,0.0000022075,0.0000022123, +0.0000022157,0.0000022184,0.0000022193,0.0000022173,0.0000022155, +0.0000022162,0.0000022201,0.0000022239,0.0000022251,0.0000022244, +0.0000022241,0.0000022254,0.0000022267,0.0000022249,0.0000022215, +0.0000022218,0.0000022275,0.0000022338,0.0000022389,0.0000022443, +0.0000022468,0.0000022474,0.0000022466,0.0000022436,0.0000022392, +0.0000022334,0.0000022264,0.0000022185,0.0000022147,0.0000022170, +0.0000022250,0.0000022330,0.0000022403,0.0000022528,0.0000022693, +0.0000022799,0.0000022789,0.0000022730,0.0000022677,0.0000022665, +0.0000022695,0.0000022817,0.0000023016,0.0000023163,0.0000023190, +0.0000023171,0.0000023137,0.0000023044,0.0000022865,0.0000022594, +0.0000022277,0.0000022069,0.0000022021,0.0000022041,0.0000022061, +0.0000022073,0.0000022076,0.0000022062,0.0000022040,0.0000022030, +0.0000022038,0.0000022067,0.0000022106,0.0000022146,0.0000022174, +0.0000022183,0.0000022177,0.0000022152,0.0000022117,0.0000022090, +0.0000022084,0.0000022101,0.0000022144,0.0000022206,0.0000022273, +0.0000022357,0.0000022471,0.0000022566,0.0000022592,0.0000022560, +0.0000022471,0.0000022372,0.0000022329,0.0000022339,0.0000022390, +0.0000022460,0.0000022521,0.0000022546,0.0000022541,0.0000022531, +0.0000022520,0.0000022501,0.0000022482,0.0000022465,0.0000022430, +0.0000022366,0.0000022282,0.0000022191,0.0000022100,0.0000022023, +0.0000021963,0.0000021926,0.0000021918,0.0000021934,0.0000021979, +0.0000022049,0.0000022129,0.0000022202,0.0000022266,0.0000022330, +0.0000022394,0.0000022441,0.0000022453,0.0000022447,0.0000022421, +0.0000022388,0.0000022340,0.0000022252,0.0000022107,0.0000021931, +0.0000021779,0.0000021708,0.0000021721,0.0000021865,0.0000022037, +0.0000022093,0.0000022076,0.0000022113,0.0000022344,0.0000022564, +0.0000022577,0.0000022271,0.0000021964,0.0000021876,0.0000021860, +0.0000021781,0.0000021671,0.0000021606,0.0000021581,0.0000021570, +0.0000021557,0.0000021537,0.0000021517,0.0000021503,0.0000021496, +0.0000021497,0.0000021514,0.0000021567,0.0000021646,0.0000021712, +0.0000021745,0.0000021744,0.0000021725,0.0000021716,0.0000021734, +0.0000021762,0.0000021778,0.0000021792,0.0000021812,0.0000021836, +0.0000021862,0.0000021886,0.0000021909,0.0000021934,0.0000021967, +0.0000022002,0.0000022036,0.0000022068,0.0000022106,0.0000022163, +0.0000022242,0.0000022331,0.0000022415,0.0000022482,0.0000022545, +0.0000022616,0.0000022681,0.0000022718,0.0000022729,0.0000022736, +0.0000022745,0.0000022748,0.0000022721,0.0000022608,0.0000022403, +0.0000022185,0.0000022030,0.0000021918,0.0000021789,0.0000021630, +0.0000021464,0.0000021309,0.0000021179,0.0000021061,0.0000020924, +0.0000020769,0.0000020625,0.0000020516,0.0000020442,0.0000020410, +0.0000020407,0.0000020404,0.0000020396,0.0000020388,0.0000020384, +0.0000020383,0.0000020395,0.0000020438,0.0000020520,0.0000020625, +0.0000020720,0.0000020777,0.0000020805,0.0000020829,0.0000020867, +0.0000020924,0.0000021003,0.0000021102,0.0000021194,0.0000021243, +0.0000021232,0.0000021167,0.0000021064,0.0000020985,0.0000020950, +0.0000020949,0.0000020959,0.0000020984,0.0000021024,0.0000021074, +0.0000021125,0.0000021190,0.0000021291,0.0000021427,0.0000021560, +0.0000021652,0.0000021682,0.0000021682,0.0000021678,0.0000021686, +0.0000021695,0.0000021692,0.0000021664,0.0000021600,0.0000021503, +0.0000021376,0.0000021232,0.0000021105,0.0000021052,0.0000021051, +0.0000021159,0.0000021299,0.0000021388,0.0000021398,0.0000021355, +0.0000021303,0.0000021284,0.0000021368,0.0000021532,0.0000021715, +0.0000021904,0.0000022115,0.0000022344,0.0000022557,0.0000022728, +0.0000022849,0.0000022915,0.0000022925,0.0000022896,0.0000022847, +0.0000022822,0.0000022812,0.0000022823,0.0000022836,0.0000022851, +0.0000022886,0.0000022951,0.0000023045,0.0000023161,0.0000023285, +0.0000023403,0.0000023514,0.0000023620,0.0000023725,0.0000023844, +0.0000023989,0.0000024147,0.0000024293,0.0000024413,0.0000024494, +0.0000024532,0.0000024534,0.0000024515,0.0000024486,0.0000024456, +0.0000024432,0.0000024418,0.0000024407,0.0000024393,0.0000024374, +0.0000024356,0.0000024341,0.0000024330,0.0000024325,0.0000024330, +0.0000024347,0.0000024367,0.0000024383,0.0000024392,0.0000024386, +0.0000024354,0.0000024292,0.0000024192,0.0000024065,0.0000023929, +0.0000023798,0.0000023691,0.0000023628,0.0000023602,0.0000023567, +0.0000023486,0.0000023359,0.0000023203,0.0000023028,0.0000022849, +0.0000022695,0.0000022575,0.0000022489,0.0000022421,0.0000022349, +0.0000022262,0.0000022173,0.0000022087,0.0000022002,0.0000021920, +0.0000021846,0.0000021790,0.0000021750,0.0000021724,0.0000021710, +0.0000021704,0.0000021701,0.0000021690,0.0000021676,0.0000021663, +0.0000021651,0.0000021643,0.0000021641,0.0000021638,0.0000021629, +0.0000021609,0.0000021585,0.0000021573,0.0000021574,0.0000021583, +0.0000021603,0.0000021636,0.0000021674,0.0000021706,0.0000021729, +0.0000021736,0.0000021737,0.0000021723,0.0000021697,0.0000021654, +0.0000021604,0.0000021550,0.0000021502,0.0000021459,0.0000021420, +0.0000021394,0.0000021369,0.0000021347,0.0000021328,0.0000021318, +0.0000021333,0.0000021387,0.0000021498,0.0000021674,0.0000021919, +0.0000022198,0.0000022459,0.0000022652,0.0000022772,0.0000022817, +0.0000022820,0.0000022798,0.0000022754,0.0000022683,0.0000022582, +0.0000022457,0.0000022320,0.0000022190,0.0000022075,0.0000021972, +0.0000021869,0.0000021763,0.0000021671,0.0000021610,0.0000021577, +0.0000021590,0.0000021624,0.0000021672,0.0000021721,0.0000021758, +0.0000021774,0.0000021775,0.0000021760,0.0000021726,0.0000021680, +0.0000021625,0.0000021564,0.0000021497,0.0000021426,0.0000021356, +0.0000021297,0.0000021256,0.0000021225,0.0000021203,0.0000021190, +0.0000021190,0.0000021200,0.0000021218,0.0000021250,0.0000021286, +0.0000021321,0.0000021351,0.0000021375,0.0000021386,0.0000021385, +0.0000021376,0.0000021364,0.0000021350,0.0000021332,0.0000021318, +0.0000021305,0.0000021292,0.0000021276,0.0000021255,0.0000021227, +0.0000021193,0.0000021155,0.0000021114,0.0000021071,0.0000021028, +0.0000020988,0.0000020954,0.0000020922,0.0000020888,0.0000020854, +0.0000020819,0.0000020781,0.0000020745,0.0000020710,0.0000020671, +0.0000020627,0.0000020582,0.0000020551,0.0000020551,0.0000020577, +0.0000020623,0.0000020665,0.0000020690,0.0000020691,0.0000020675, +0.0000020646,0.0000020607,0.0000020551,0.0000020487,0.0000020426, +0.0000020391,0.0000020395,0.0000020415,0.0000020437,0.0000020452, +0.0000020460,0.0000020462,0.0000020463,0.0000020464,0.0000020456, +0.0000020439,0.0000020426,0.0000020414,0.0000020405,0.0000020403, +0.0000020406,0.0000020412,0.0000020427,0.0000020452,0.0000020474, +0.0000020494,0.0000020519,0.0000020548,0.0000020570,0.0000020576, +0.0000020577,0.0000020575,0.0000020573,0.0000020554,0.0000020518, +0.0000020472,0.0000020438,0.0000020415,0.0000020401,0.0000020386, +0.0000020366,0.0000020356,0.0000020368,0.0000020400,0.0000020446, +0.0000020489,0.0000020510,0.0000020509,0.0000020518,0.0000020585, +0.0000020680,0.0000020677,0.0000020591,0.0000020538,0.0000020558, +0.0000020550,0.0000020485,0.0000020469,0.0000020528,0.0000020551, +0.0000020498,0.0000020405,0.0000020351,0.0000020342,0.0000020360, +0.0000020404,0.0000020461,0.0000020501,0.0000020545,0.0000020601, +0.0000020630,0.0000020692,0.0000020898,0.0000021160,0.0000021288, +0.0000021281,0.0000021233,0.0000021201,0.0000021179,0.0000021143, +0.0000021101,0.0000021074,0.0000021052,0.0000020958,0.0000020754, +0.0000020532,0.0000020418,0.0000020401,0.0000020397,0.0000020412, +0.0000020461,0.0000020496,0.0000020486,0.0000020424,0.0000020327, +0.0000020251,0.0000020239,0.0000020280,0.0000020355,0.0000020435, +0.0000020507,0.0000020559,0.0000020587,0.0000020592,0.0000020583, +0.0000020573,0.0000020570,0.0000020575,0.0000020594,0.0000020622, +0.0000020650,0.0000020675,0.0000020690,0.0000020701,0.0000020714, +0.0000020728,0.0000020730,0.0000020714,0.0000020688,0.0000020657, +0.0000020622,0.0000020584,0.0000020560,0.0000020556,0.0000020564, +0.0000020582,0.0000020610,0.0000020638,0.0000020661,0.0000020682, +0.0000020703,0.0000020723,0.0000020741,0.0000020742,0.0000020688, +0.0000020584,0.0000020478,0.0000020392,0.0000020331,0.0000020314, +0.0000020330,0.0000020359,0.0000020377,0.0000020390,0.0000020408, +0.0000020423,0.0000020426,0.0000020420,0.0000020412,0.0000020408, +0.0000020407,0.0000020409,0.0000020410,0.0000020401,0.0000020381, +0.0000020353,0.0000020318,0.0000020281,0.0000020248,0.0000020219, +0.0000020191,0.0000020165,0.0000020149,0.0000020142,0.0000020136, +0.0000020120,0.0000020095,0.0000020071,0.0000020045,0.0000020014, +0.0000019988,0.0000019980,0.0000019983,0.0000019990,0.0000019990, +0.0000019988,0.0000019993,0.0000020012,0.0000020044,0.0000020081, +0.0000020119,0.0000020158,0.0000020194,0.0000020225,0.0000020255, +0.0000020283,0.0000020306,0.0000020321,0.0000020331,0.0000020338, +0.0000020347,0.0000020357,0.0000020367,0.0000020365,0.0000020343, +0.0000020310,0.0000020300,0.0000020339,0.0000020448,0.0000020597, +0.0000020730,0.0000020821,0.0000020891,0.0000020929,0.0000020914, +0.0000020811,0.0000020692,0.0000020640,0.0000020638,0.0000020645, +0.0000020651,0.0000020659,0.0000020735,0.0000020938,0.0000021233, +0.0000021491,0.0000021634,0.0000021702,0.0000021758,0.0000021799, +0.0000021797,0.0000021761,0.0000021712,0.0000021661,0.0000021589, +0.0000021611,0.0000021532,0.0000021462,0.0000021441,0.0000021469, +0.0000021550,0.0000021642,0.0000021695,0.0000021689,0.0000021626, +0.0000021539,0.0000021479,0.0000021473,0.0000021497,0.0000021539, +0.0000021578,0.0000021602,0.0000021615,0.0000021619,0.0000021614, +0.0000021593,0.0000021556,0.0000021514,0.0000021472,0.0000021420, +0.0000021350,0.0000021262,0.0000021166,0.0000021074,0.0000021003, +0.0000020956,0.0000020926,0.0000020904,0.0000020900,0.0000020926, +0.0000020981,0.0000021058,0.0000021132,0.0000021178,0.0000021192, +0.0000021191,0.0000021186,0.0000021180,0.0000021171,0.0000021162, +0.0000021156,0.0000021147,0.0000021133,0.0000021115,0.0000021096, +0.0000021078,0.0000021059,0.0000021041,0.0000021031,0.0000021028, +0.0000021025,0.0000021023,0.0000021020,0.0000021019,0.0000021026, +0.0000021039,0.0000021059,0.0000021082,0.0000021106,0.0000021130, +0.0000021155,0.0000021181,0.0000021209,0.0000021237,0.0000021263, +0.0000021287,0.0000021305,0.0000021312,0.0000021308,0.0000021294, +0.0000021277,0.0000021262,0.0000021247,0.0000021234,0.0000021227, +0.0000021227,0.0000021230,0.0000021227,0.0000021229,0.0000021267, +0.0000021322,0.0000021388,0.0000021461,0.0000021530,0.0000021589, +0.0000021638,0.0000021677,0.0000021704,0.0000021732,0.0000021769, +0.0000021803,0.0000021819,0.0000021821,0.0000021804,0.0000021775, +0.0000021744,0.0000021707,0.0000021686,0.0000021683,0.0000021686, +0.0000021683,0.0000021679,0.0000021681,0.0000021683,0.0000021678, +0.0000021664,0.0000021648,0.0000021634,0.0000021619,0.0000021603, +0.0000021586,0.0000021564,0.0000021534,0.0000021496,0.0000021446, +0.0000021399,0.0000021374,0.0000021360,0.0000021346,0.0000021331, +0.0000021320,0.0000021316,0.0000021313,0.0000021306,0.0000021294, +0.0000021275,0.0000021250,0.0000021223,0.0000021197,0.0000021173, +0.0000021150,0.0000021127,0.0000021107,0.0000021099,0.0000021104, +0.0000021121,0.0000021143,0.0000021163,0.0000021177,0.0000021187, +0.0000021198,0.0000021216,0.0000021245,0.0000021275,0.0000021299, +0.0000021319,0.0000021339,0.0000021358,0.0000021368,0.0000021363, +0.0000021351,0.0000021334,0.0000021314,0.0000021294,0.0000021277, +0.0000021267,0.0000021267,0.0000021282,0.0000021317,0.0000021372, +0.0000021439,0.0000021514,0.0000021590,0.0000021653,0.0000021691, +0.0000021714,0.0000021735,0.0000021750,0.0000021755,0.0000021753, +0.0000021740,0.0000021723,0.0000021699,0.0000021688,0.0000021704, +0.0000021748,0.0000021781,0.0000021772,0.0000021727,0.0000021682, +0.0000021656,0.0000021678,0.0000021819,0.0000022034,0.0000022211, +0.0000022289,0.0000022298,0.0000022294,0.0000022293,0.0000022309, +0.0000022341,0.0000022384,0.0000022436,0.0000022493,0.0000022553, +0.0000022612,0.0000022668,0.0000022721,0.0000022769,0.0000022808, +0.0000022833,0.0000022850,0.0000022857,0.0000022857,0.0000022848, +0.0000022835,0.0000022822,0.0000022816,0.0000022821,0.0000022835, +0.0000022862,0.0000022897,0.0000022938,0.0000022986,0.0000023037, +0.0000023087,0.0000023126,0.0000023151,0.0000023168,0.0000023172, +0.0000023169,0.0000023156,0.0000023136,0.0000023114,0.0000023093, +0.0000023073,0.0000023054,0.0000023033,0.0000023014,0.0000022992, +0.0000022971,0.0000022953,0.0000022935,0.0000022919,0.0000022910, +0.0000022905,0.0000022904,0.0000022906,0.0000022913,0.0000022923, +0.0000022938,0.0000022961,0.0000022992,0.0000023022,0.0000023051, +0.0000023078,0.0000023102,0.0000023122,0.0000023138,0.0000023150, +0.0000023160,0.0000023171,0.0000023179,0.0000023181,0.0000023181, +0.0000023183,0.0000023192,0.0000023199,0.0000023207,0.0000023216, +0.0000023219,0.0000023217,0.0000023200,0.0000023168,0.0000023121, +0.0000023058,0.0000022985,0.0000022911,0.0000022840,0.0000022770, +0.0000022701,0.0000022631,0.0000022555,0.0000022478,0.0000022402, +0.0000022331,0.0000022266,0.0000022209,0.0000022160,0.0000022123, +0.0000022101,0.0000022087,0.0000022069,0.0000022050,0.0000022032, +0.0000022017,0.0000022002,0.0000021986,0.0000021972,0.0000021968, +0.0000021975,0.0000021993,0.0000022015,0.0000022025,0.0000022019, +0.0000022005,0.0000021993,0.0000021975,0.0000021941,0.0000021883, +0.0000021805,0.0000021708,0.0000021601,0.0000021502,0.0000021425, +0.0000021375,0.0000021344,0.0000021319,0.0000021302,0.0000021265, +0.0000021194,0.0000021131,0.0000021117,0.0000021131,0.0000021146, +0.0000021143,0.0000021128,0.0000021127,0.0000021140,0.0000021165, +0.0000021197,0.0000021214,0.0000021216,0.0000021196,0.0000021154, +0.0000021108,0.0000021060,0.0000021010,0.0000020972,0.0000020952, +0.0000020958,0.0000020988,0.0000021031,0.0000021071,0.0000021080, +0.0000021060,0.0000021047,0.0000021063,0.0000021130,0.0000021228, +0.0000021281,0.0000021310,0.0000021374,0.0000021482,0.0000021626, +0.0000021771,0.0000021848,0.0000021873,0.0000021877,0.0000021856, +0.0000021818,0.0000021778,0.0000021758,0.0000021757,0.0000021789, +0.0000021837,0.0000021871,0.0000021894,0.0000021900,0.0000021915, +0.0000021969,0.0000022028,0.0000022078,0.0000022161,0.0000022237, +0.0000022241,0.0000022166,0.0000022098,0.0000022054,0.0000021997, +0.0000021943,0.0000021937,0.0000022019,0.0000022132,0.0000022200, +0.0000022214,0.0000022205,0.0000022179,0.0000022143,0.0000022091, +0.0000022031,0.0000021983,0.0000021951,0.0000021956,0.0000021998, +0.0000022044,0.0000022077,0.0000022094,0.0000022090,0.0000022071, +0.0000022051,0.0000022041,0.0000022041,0.0000022037,0.0000022030, +0.0000022030,0.0000022040,0.0000022047,0.0000022055,0.0000022067, +0.0000022081,0.0000022095,0.0000022093,0.0000022090,0.0000022075, +0.0000022056,0.0000022047,0.0000022032,0.0000021998,0.0000021944, +0.0000021879,0.0000021861,0.0000021893,0.0000022085,0.0000022376, +0.0000022639,0.0000022799,0.0000022885,0.0000022958,0.0000023011, +0.0000023007,0.0000022960,0.0000022894,0.0000022781,0.0000022606, +0.0000022439,0.0000022373,0.0000022392,0.0000022419,0.0000022428, +0.0000022375,0.0000022193,0.0000022057,0.0000022066,0.0000022122, +0.0000022200,0.0000022301,0.0000022373,0.0000022404,0.0000022418, +0.0000022442,0.0000022507,0.0000022607,0.0000022696,0.0000022768, +0.0000022812,0.0000022825,0.0000022820,0.0000022800,0.0000022779, +0.0000022766,0.0000022760,0.0000022760,0.0000022778,0.0000022811, +0.0000022840,0.0000022874,0.0000022929,0.0000022993,0.0000023042, +0.0000023074,0.0000023091,0.0000023086,0.0000023069,0.0000023054, +0.0000023046,0.0000023047,0.0000023045,0.0000023035,0.0000023017, +0.0000023003,0.0000022997,0.0000022999,0.0000023008,0.0000023020, +0.0000023037,0.0000023055,0.0000023067,0.0000023069,0.0000023061, +0.0000023048,0.0000023027,0.0000023010,0.0000023002,0.0000022984, +0.0000022956,0.0000022927,0.0000022882,0.0000022837,0.0000022816, +0.0000022815,0.0000022820,0.0000022832,0.0000022856,0.0000022884, +0.0000022887,0.0000022879,0.0000022881,0.0000022903,0.0000022955, +0.0000023021,0.0000023054,0.0000023049,0.0000022986,0.0000022953, +0.0000022970,0.0000023008,0.0000023004,0.0000022879,0.0000022724, +0.0000022609,0.0000022374,0.0000022169,0.0000022179,0.0000022285, +0.0000022244,0.0000022091,0.0000022062,0.0000022115,0.0000022211, +0.0000022296,0.0000022243,0.0000022067,0.0000021975,0.0000022002, +0.0000022067,0.0000022129,0.0000022151,0.0000022127,0.0000022081, +0.0000022039,0.0000022007,0.0000021985,0.0000021977,0.0000021971, +0.0000021961,0.0000021963,0.0000021977,0.0000022007,0.0000022047, +0.0000022088,0.0000022120,0.0000022140,0.0000022157,0.0000022176, +0.0000022202,0.0000022228,0.0000022235,0.0000022212,0.0000022165, +0.0000022113,0.0000022068,0.0000022039,0.0000022037,0.0000022052, +0.0000022110,0.0000022211,0.0000022327,0.0000022412,0.0000022424, +0.0000022355,0.0000022205,0.0000022036,0.0000021920,0.0000021889, +0.0000021948,0.0000022064,0.0000022202,0.0000022345,0.0000022474, +0.0000022579,0.0000022659,0.0000022719,0.0000022769,0.0000022804, +0.0000022818,0.0000022804,0.0000022766,0.0000022704,0.0000022633, +0.0000022563,0.0000022494,0.0000022425,0.0000022361,0.0000022299, +0.0000022242,0.0000022192,0.0000022154,0.0000022138,0.0000022132, +0.0000022138,0.0000022155,0.0000022178,0.0000022203,0.0000022225, +0.0000022246,0.0000022264,0.0000022280,0.0000022295,0.0000022310, +0.0000022326,0.0000022342,0.0000022356,0.0000022365,0.0000022372, +0.0000022379,0.0000022383,0.0000022385,0.0000022389,0.0000022386, +0.0000022381,0.0000022376,0.0000022362,0.0000022353,0.0000022352, +0.0000022348,0.0000022338,0.0000022318,0.0000022289,0.0000022257, +0.0000022219,0.0000022176,0.0000022140,0.0000022116,0.0000022103, +0.0000022093,0.0000022081,0.0000022076,0.0000022071,0.0000022065, +0.0000022088,0.0000022143,0.0000022230,0.0000022341,0.0000022455, +0.0000022549,0.0000022620,0.0000022679,0.0000022747,0.0000022844, +0.0000022968,0.0000023097,0.0000023209,0.0000023292,0.0000023347, +0.0000023376,0.0000023378,0.0000023363,0.0000023347,0.0000023333, +0.0000023340,0.0000023379,0.0000023443,0.0000023515,0.0000023575, +0.0000023607,0.0000023597,0.0000023556,0.0000023495,0.0000023455, +0.0000023447,0.0000023466,0.0000023498,0.0000023518,0.0000023526, +0.0000023515,0.0000023495,0.0000023458,0.0000023398,0.0000023331, +0.0000023281,0.0000023261,0.0000023257,0.0000023268,0.0000023283, +0.0000023294,0.0000023298,0.0000023296,0.0000023282,0.0000023262, +0.0000023241,0.0000023225,0.0000023212,0.0000023199,0.0000023191, +0.0000023190,0.0000023197,0.0000023210,0.0000023227,0.0000023245, +0.0000023262,0.0000023275,0.0000023282,0.0000023281,0.0000023273, +0.0000023260,0.0000023241,0.0000023217,0.0000023191,0.0000023164, +0.0000023141,0.0000023123,0.0000023111,0.0000023106,0.0000023106, +0.0000023107,0.0000023105,0.0000023097,0.0000023084,0.0000023068, +0.0000023051,0.0000023033,0.0000023020,0.0000023012,0.0000023010, +0.0000023008,0.0000023005,0.0000023005,0.0000023017,0.0000023042, +0.0000023066,0.0000023069,0.0000023046,0.0000023007,0.0000022969, +0.0000022926,0.0000022840,0.0000022721,0.0000022624,0.0000022576, +0.0000022546,0.0000022499,0.0000022411,0.0000022295,0.0000022191, +0.0000022114,0.0000022020,0.0000021861,0.0000021648,0.0000021440, +0.0000021274,0.0000021157,0.0000021076,0.0000021026,0.0000021003, +0.0000021003,0.0000021014,0.0000021019,0.0000021008,0.0000020982, +0.0000020945,0.0000020906,0.0000020866,0.0000020835,0.0000020814, +0.0000020806,0.0000020802,0.0000020801,0.0000020804,0.0000020794, +0.0000020778,0.0000020752,0.0000020725,0.0000020708,0.0000020709, +0.0000020727,0.0000020749,0.0000020773,0.0000020789,0.0000020800, +0.0000020804,0.0000020805,0.0000020801,0.0000020793,0.0000020783, +0.0000020777,0.0000020774,0.0000020786,0.0000020787,0.0000020813, +0.0000020843,0.0000020882,0.0000020928,0.0000020970,0.0000020998, +0.0000021014,0.0000021024,0.0000021034,0.0000021035,0.0000021035, +0.0000021040,0.0000021045,0.0000021046,0.0000021044,0.0000021041, +0.0000021039,0.0000021042,0.0000021065,0.0000021113,0.0000021184, +0.0000021284,0.0000021418,0.0000021575,0.0000021729,0.0000021860, +0.0000021962,0.0000022043,0.0000022101,0.0000022137,0.0000022156, +0.0000022163,0.0000022153,0.0000022152,0.0000022173,0.0000022213, +0.0000022243,0.0000022242,0.0000022220,0.0000022205,0.0000022217, +0.0000022236,0.0000022221,0.0000022201,0.0000022216,0.0000022267, +0.0000022322,0.0000022385,0.0000022441,0.0000022464,0.0000022473, +0.0000022464,0.0000022441,0.0000022411,0.0000022379,0.0000022317, +0.0000022214,0.0000022151,0.0000022169,0.0000022251,0.0000022316, +0.0000022360,0.0000022462,0.0000022630,0.0000022759,0.0000022786, +0.0000022737,0.0000022677,0.0000022660,0.0000022701,0.0000022833, +0.0000023020,0.0000023147,0.0000023166,0.0000023147,0.0000023118, +0.0000023035,0.0000022880,0.0000022649,0.0000022364,0.0000022143, +0.0000022063,0.0000022071,0.0000022087,0.0000022086,0.0000022071, +0.0000022046,0.0000022027,0.0000022023,0.0000022042,0.0000022084, +0.0000022133,0.0000022170,0.0000022191,0.0000022194,0.0000022182, +0.0000022161,0.0000022140,0.0000022132,0.0000022139,0.0000022161, +0.0000022199,0.0000022253,0.0000022311,0.0000022377,0.0000022471, +0.0000022566,0.0000022605,0.0000022597,0.0000022526,0.0000022409, +0.0000022325,0.0000022322,0.0000022372,0.0000022452,0.0000022518, +0.0000022540,0.0000022536,0.0000022523,0.0000022504,0.0000022482, +0.0000022467,0.0000022445,0.0000022384,0.0000022281,0.0000022166, +0.0000022067,0.0000021985,0.0000021915,0.0000021852,0.0000021803, +0.0000021780,0.0000021786,0.0000021817,0.0000021879,0.0000021969, +0.0000022069,0.0000022160,0.0000022239,0.0000022313,0.0000022380, +0.0000022428,0.0000022451,0.0000022454,0.0000022435,0.0000022402, +0.0000022355,0.0000022264,0.0000022111,0.0000021925,0.0000021760, +0.0000021683,0.0000021685,0.0000021826,0.0000021999,0.0000022069, +0.0000022068,0.0000022128,0.0000022358,0.0000022582,0.0000022558, +0.0000022215,0.0000021929,0.0000021857,0.0000021828,0.0000021734, +0.0000021636,0.0000021595,0.0000021582,0.0000021568,0.0000021557, +0.0000021551,0.0000021551,0.0000021560,0.0000021579,0.0000021616, +0.0000021682,0.0000021766,0.0000021835,0.0000021871,0.0000021878, +0.0000021867,0.0000021862,0.0000021875,0.0000021883,0.0000021872, +0.0000021860,0.0000021860,0.0000021870,0.0000021888,0.0000021912, +0.0000021935,0.0000021959,0.0000021987,0.0000022017,0.0000022043, +0.0000022068,0.0000022102,0.0000022162,0.0000022248,0.0000022345, +0.0000022434,0.0000022502,0.0000022566,0.0000022642,0.0000022715, +0.0000022761,0.0000022779,0.0000022787,0.0000022793,0.0000022789, +0.0000022746,0.0000022626,0.0000022422,0.0000022205,0.0000022048, +0.0000021936,0.0000021815,0.0000021663,0.0000021497,0.0000021333, +0.0000021195,0.0000021080,0.0000020955,0.0000020807,0.0000020664, +0.0000020556,0.0000020484,0.0000020444,0.0000020435,0.0000020434, +0.0000020425,0.0000020406,0.0000020391,0.0000020383,0.0000020382, +0.0000020391,0.0000020430,0.0000020506,0.0000020603,0.0000020693, +0.0000020754,0.0000020790,0.0000020824,0.0000020867,0.0000020922, +0.0000020996,0.0000021088,0.0000021173,0.0000021226,0.0000021219, +0.0000021156,0.0000021069,0.0000020995,0.0000020959,0.0000020951, +0.0000020951,0.0000020969,0.0000021012,0.0000021069,0.0000021127, +0.0000021186,0.0000021271,0.0000021394,0.0000021531,0.0000021638, +0.0000021694,0.0000021711,0.0000021717,0.0000021721,0.0000021731, +0.0000021734,0.0000021709,0.0000021648,0.0000021549,0.0000021418, +0.0000021270,0.0000021124,0.0000021025,0.0000021016,0.0000021103, +0.0000021234,0.0000021323,0.0000021343,0.0000021302,0.0000021252, +0.0000021241,0.0000021335,0.0000021500,0.0000021680,0.0000021859, +0.0000022059,0.0000022277,0.0000022484,0.0000022655,0.0000022785, +0.0000022878,0.0000022918,0.0000022904,0.0000022857,0.0000022814, +0.0000022794,0.0000022790,0.0000022799,0.0000022818,0.0000022848, +0.0000022895,0.0000022961,0.0000023046,0.0000023145,0.0000023250, +0.0000023353,0.0000023452,0.0000023554,0.0000023675,0.0000023819, +0.0000023982,0.0000024147,0.0000024296,0.0000024409,0.0000024474, +0.0000024497,0.0000024490,0.0000024466,0.0000024441,0.0000024422, +0.0000024412,0.0000024401,0.0000024380,0.0000024350,0.0000024320, +0.0000024297,0.0000024283,0.0000024281,0.0000024293,0.0000024315, +0.0000024341,0.0000024367,0.0000024377,0.0000024361,0.0000024317, +0.0000024234,0.0000024122,0.0000023994,0.0000023867,0.0000023758, +0.0000023677,0.0000023631,0.0000023606,0.0000023560,0.0000023464, +0.0000023327,0.0000023169,0.0000022996,0.0000022822,0.0000022664, +0.0000022542,0.0000022461,0.0000022393,0.0000022305,0.0000022205, +0.0000022116,0.0000022049,0.0000021991,0.0000021932,0.0000021876, +0.0000021824,0.0000021780,0.0000021750,0.0000021730,0.0000021717, +0.0000021702,0.0000021679,0.0000021658,0.0000021637,0.0000021619, +0.0000021609,0.0000021608,0.0000021609,0.0000021604,0.0000021590, +0.0000021580,0.0000021579,0.0000021583,0.0000021592,0.0000021615, +0.0000021642,0.0000021668,0.0000021689,0.0000021707,0.0000021719, +0.0000021726,0.0000021720,0.0000021708,0.0000021678,0.0000021636, +0.0000021589,0.0000021541,0.0000021488,0.0000021434,0.0000021381, +0.0000021333,0.0000021277,0.0000021229,0.0000021191,0.0000021168, +0.0000021177,0.0000021223,0.0000021338,0.0000021528,0.0000021775, +0.0000022052,0.0000022326,0.0000022566,0.0000022732,0.0000022811, +0.0000022810,0.0000022778,0.0000022725,0.0000022641,0.0000022532, +0.0000022407,0.0000022283,0.0000022174,0.0000022075,0.0000021973, +0.0000021871,0.0000021782,0.0000021709,0.0000021661,0.0000021638, +0.0000021653,0.0000021674,0.0000021710,0.0000021739,0.0000021750, +0.0000021748,0.0000021733,0.0000021708,0.0000021670,0.0000021623, +0.0000021569,0.0000021511,0.0000021450,0.0000021394,0.0000021350, +0.0000021324,0.0000021313,0.0000021310,0.0000021311,0.0000021316, +0.0000021325,0.0000021345,0.0000021377,0.0000021408,0.0000021434, +0.0000021455,0.0000021467,0.0000021466,0.0000021454,0.0000021432, +0.0000021410,0.0000021383,0.0000021359,0.0000021343,0.0000021328, +0.0000021311,0.0000021292,0.0000021268,0.0000021236,0.0000021201, +0.0000021162,0.0000021124,0.0000021083,0.0000021039,0.0000020998, +0.0000020966,0.0000020940,0.0000020925,0.0000020912,0.0000020890, +0.0000020854,0.0000020810,0.0000020769,0.0000020733,0.0000020693, +0.0000020642,0.0000020592,0.0000020564,0.0000020566,0.0000020583, +0.0000020612,0.0000020633,0.0000020642,0.0000020638,0.0000020618, +0.0000020580,0.0000020531,0.0000020473,0.0000020419,0.0000020404, +0.0000020417,0.0000020440,0.0000020461,0.0000020476,0.0000020485, +0.0000020488,0.0000020488,0.0000020484,0.0000020473,0.0000020462, +0.0000020448,0.0000020433,0.0000020424,0.0000020416,0.0000020411, +0.0000020415,0.0000020429,0.0000020445,0.0000020459,0.0000020482, +0.0000020510,0.0000020533,0.0000020544,0.0000020551,0.0000020561, +0.0000020572,0.0000020576,0.0000020562,0.0000020530,0.0000020480, +0.0000020432,0.0000020390,0.0000020354,0.0000020330,0.0000020312, +0.0000020294,0.0000020279,0.0000020282,0.0000020320,0.0000020386, +0.0000020451,0.0000020481,0.0000020484,0.0000020518,0.0000020615, +0.0000020670,0.0000020597,0.0000020517,0.0000020530,0.0000020532, +0.0000020468,0.0000020448,0.0000020507,0.0000020535,0.0000020485, +0.0000020396,0.0000020335,0.0000020318,0.0000020332,0.0000020379, +0.0000020435,0.0000020478,0.0000020535,0.0000020585,0.0000020611, +0.0000020696,0.0000020911,0.0000021147,0.0000021253,0.0000021243, +0.0000021203,0.0000021171,0.0000021144,0.0000021116,0.0000021087, +0.0000021018,0.0000020858,0.0000020629,0.0000020447,0.0000020374, +0.0000020356,0.0000020345,0.0000020355,0.0000020406,0.0000020467, +0.0000020487,0.0000020457,0.0000020367,0.0000020266,0.0000020221, +0.0000020237,0.0000020302,0.0000020388,0.0000020470,0.0000020536, +0.0000020576,0.0000020584,0.0000020574,0.0000020565,0.0000020564, +0.0000020565,0.0000020574,0.0000020596,0.0000020624,0.0000020649, +0.0000020663,0.0000020670,0.0000020678,0.0000020686,0.0000020687, +0.0000020678,0.0000020659,0.0000020633,0.0000020601,0.0000020565, +0.0000020531,0.0000020520,0.0000020529,0.0000020548,0.0000020578, +0.0000020615,0.0000020648,0.0000020677,0.0000020705,0.0000020731, +0.0000020746,0.0000020745,0.0000020699,0.0000020608,0.0000020512, +0.0000020426,0.0000020353,0.0000020316,0.0000020319,0.0000020344, +0.0000020370,0.0000020387,0.0000020400,0.0000020418,0.0000020431, +0.0000020431,0.0000020426,0.0000020423,0.0000020425,0.0000020429, +0.0000020433,0.0000020431,0.0000020416,0.0000020389,0.0000020355, +0.0000020319,0.0000020284,0.0000020251,0.0000020219,0.0000020189, +0.0000020164,0.0000020149,0.0000020140,0.0000020129,0.0000020113, +0.0000020090,0.0000020061,0.0000020028,0.0000019992,0.0000019958, +0.0000019934,0.0000019927,0.0000019930,0.0000019940,0.0000019950, +0.0000019965,0.0000019991,0.0000020026,0.0000020066,0.0000020108, +0.0000020149,0.0000020189,0.0000020222,0.0000020245,0.0000020264, +0.0000020280,0.0000020294,0.0000020304,0.0000020313,0.0000020320, +0.0000020320,0.0000020316,0.0000020317,0.0000020323,0.0000020324, +0.0000020310,0.0000020289,0.0000020291,0.0000020356,0.0000020497, +0.0000020652,0.0000020768,0.0000020854,0.0000020919,0.0000020932, +0.0000020864,0.0000020739,0.0000020651,0.0000020627,0.0000020625, +0.0000020642,0.0000020663,0.0000020684,0.0000020777,0.0000020998, +0.0000021298,0.0000021532,0.0000021645,0.0000021707,0.0000021762, +0.0000021781,0.0000021759,0.0000021716,0.0000021669,0.0000021678, +0.0000021636,0.0000021576,0.0000021499,0.0000021435,0.0000021410, +0.0000021435,0.0000021514,0.0000021609,0.0000021675,0.0000021691, +0.0000021665,0.0000021614,0.0000021571,0.0000021551,0.0000021553, +0.0000021558,0.0000021569,0.0000021577,0.0000021574,0.0000021555, +0.0000021521,0.0000021481,0.0000021436,0.0000021379,0.0000021308, +0.0000021226,0.0000021143,0.0000021067,0.0000021007,0.0000020964, +0.0000020934,0.0000020910,0.0000020903,0.0000020923,0.0000020973, +0.0000021040,0.0000021110,0.0000021162,0.0000021184,0.0000021186, +0.0000021180,0.0000021167,0.0000021152,0.0000021140,0.0000021131, +0.0000021122,0.0000021106,0.0000021082,0.0000021055,0.0000021028, +0.0000021004,0.0000020982,0.0000020964,0.0000020956,0.0000020952, +0.0000020953,0.0000020959,0.0000020965,0.0000020973,0.0000020984, +0.0000021000,0.0000021022,0.0000021051,0.0000021085,0.0000021120, +0.0000021152,0.0000021181,0.0000021206,0.0000021226,0.0000021244, +0.0000021260,0.0000021276,0.0000021286,0.0000021285,0.0000021272, +0.0000021255,0.0000021237,0.0000021221,0.0000021215,0.0000021219, +0.0000021227,0.0000021229,0.0000021219,0.0000021207,0.0000021200, +0.0000021188,0.0000021196,0.0000021230,0.0000021268,0.0000021312, +0.0000021361,0.0000021411,0.0000021464,0.0000021529,0.0000021601, +0.0000021665,0.0000021717,0.0000021750,0.0000021759,0.0000021747, +0.0000021723,0.0000021698,0.0000021687,0.0000021689,0.0000021691, +0.0000021687,0.0000021682,0.0000021679,0.0000021673,0.0000021659, +0.0000021636,0.0000021613,0.0000021593,0.0000021572,0.0000021546, +0.0000021514,0.0000021476,0.0000021432,0.0000021379,0.0000021322, +0.0000021280,0.0000021255,0.0000021239,0.0000021229,0.0000021224, +0.0000021224,0.0000021227,0.0000021230,0.0000021228,0.0000021223, +0.0000021213,0.0000021198,0.0000021180,0.0000021160,0.0000021135, +0.0000021103,0.0000021072,0.0000021051,0.0000021044,0.0000021049, +0.0000021066,0.0000021092,0.0000021120,0.0000021149,0.0000021170, +0.0000021182,0.0000021196,0.0000021217,0.0000021237,0.0000021254, +0.0000021273,0.0000021297,0.0000021324,0.0000021340,0.0000021339, +0.0000021330,0.0000021314,0.0000021294,0.0000021273,0.0000021256, +0.0000021241,0.0000021232,0.0000021230,0.0000021245,0.0000021289, +0.0000021352,0.0000021427,0.0000021510,0.0000021584,0.0000021638, +0.0000021670,0.0000021691,0.0000021706,0.0000021718,0.0000021727, +0.0000021734,0.0000021737,0.0000021737,0.0000021736,0.0000021724, +0.0000021717,0.0000021734,0.0000021751,0.0000021735,0.0000021683, +0.0000021636,0.0000021619,0.0000021645,0.0000021794,0.0000022026, +0.0000022224,0.0000022313,0.0000022323,0.0000022313,0.0000022298, +0.0000022294,0.0000022300,0.0000022324,0.0000022364,0.0000022409, +0.0000022455,0.0000022508,0.0000022569,0.0000022636,0.0000022704, +0.0000022767,0.0000022818,0.0000022854,0.0000022875,0.0000022887, +0.0000022888,0.0000022886,0.0000022877,0.0000022868,0.0000022865, +0.0000022872,0.0000022886,0.0000022910,0.0000022943,0.0000022987, +0.0000023037,0.0000023085,0.0000023125,0.0000023158,0.0000023181, +0.0000023198,0.0000023204,0.0000023200,0.0000023186,0.0000023160, +0.0000023127,0.0000023091,0.0000023055,0.0000023021,0.0000022991, +0.0000022964,0.0000022941,0.0000022920,0.0000022902,0.0000022887, +0.0000022878,0.0000022876,0.0000022876,0.0000022881,0.0000022890, +0.0000022906,0.0000022930,0.0000022957,0.0000022986,0.0000023016, +0.0000023043,0.0000023067,0.0000023088,0.0000023103,0.0000023113, +0.0000023120,0.0000023124,0.0000023126,0.0000023125,0.0000023125, +0.0000023127,0.0000023130,0.0000023134,0.0000023136,0.0000023134, +0.0000023125,0.0000023100,0.0000023055,0.0000022993,0.0000022922, +0.0000022848,0.0000022773,0.0000022703,0.0000022639,0.0000022572, +0.0000022496,0.0000022408,0.0000022313,0.0000022218,0.0000022132, +0.0000022063,0.0000022012,0.0000021973,0.0000021941,0.0000021916, +0.0000021901,0.0000021893,0.0000021886,0.0000021881,0.0000021878, +0.0000021876,0.0000021872,0.0000021861,0.0000021850,0.0000021847, +0.0000021853,0.0000021867,0.0000021888,0.0000021901,0.0000021901, +0.0000021895,0.0000021888,0.0000021877,0.0000021849,0.0000021800, +0.0000021733,0.0000021645,0.0000021549,0.0000021460,0.0000021388, +0.0000021340,0.0000021319,0.0000021312,0.0000021301,0.0000021260, +0.0000021193,0.0000021159,0.0000021158,0.0000021162,0.0000021155, +0.0000021126,0.0000021105,0.0000021115,0.0000021134,0.0000021161, +0.0000021193,0.0000021210,0.0000021210,0.0000021188,0.0000021143, +0.0000021085,0.0000021012,0.0000020942,0.0000020899,0.0000020889, +0.0000020916,0.0000020964,0.0000021026,0.0000021074,0.0000021079, +0.0000021059,0.0000021052,0.0000021082,0.0000021173,0.0000021262, +0.0000021298,0.0000021329,0.0000021409,0.0000021516,0.0000021647, +0.0000021739,0.0000021770,0.0000021782,0.0000021778,0.0000021755, +0.0000021723,0.0000021702,0.0000021700,0.0000021724,0.0000021786, +0.0000021832,0.0000021849,0.0000021850,0.0000021858,0.0000021907, +0.0000021963,0.0000022009,0.0000022092,0.0000022174,0.0000022176, +0.0000022116,0.0000022074,0.0000022050,0.0000021978,0.0000021900, +0.0000021896,0.0000021988,0.0000022101,0.0000022166,0.0000022178, +0.0000022168,0.0000022132,0.0000022088,0.0000022050,0.0000022003, +0.0000021945,0.0000021898,0.0000021875,0.0000021890,0.0000021940, +0.0000021992,0.0000022027,0.0000022035,0.0000022019,0.0000021984, +0.0000021949,0.0000021932,0.0000021935,0.0000021936,0.0000021937, +0.0000021955,0.0000021984,0.0000022010,0.0000022039,0.0000022071, +0.0000022107,0.0000022134,0.0000022142,0.0000022136,0.0000022109, +0.0000022081,0.0000022053,0.0000022011,0.0000021959,0.0000021916, +0.0000021882,0.0000021955,0.0000022135,0.0000022384,0.0000022598, +0.0000022749,0.0000022859,0.0000022953,0.0000023021,0.0000023032, +0.0000023001,0.0000022939,0.0000022832,0.0000022670,0.0000022486, +0.0000022377,0.0000022360,0.0000022381,0.0000022402,0.0000022396, +0.0000022280,0.0000022095,0.0000022057,0.0000022101,0.0000022152, +0.0000022234,0.0000022315,0.0000022367,0.0000022390,0.0000022401, +0.0000022422,0.0000022479,0.0000022564,0.0000022647,0.0000022717, +0.0000022764,0.0000022777,0.0000022775,0.0000022762,0.0000022745, +0.0000022734,0.0000022732,0.0000022737,0.0000022752,0.0000022782, +0.0000022817,0.0000022855,0.0000022913,0.0000022972,0.0000023015, +0.0000023041,0.0000023060,0.0000023065,0.0000023061,0.0000023061, +0.0000023062,0.0000023062,0.0000023064,0.0000023065,0.0000023060, +0.0000023049,0.0000023044,0.0000023047,0.0000023055,0.0000023064, +0.0000023078,0.0000023093,0.0000023097,0.0000023083,0.0000023062, +0.0000023042,0.0000023022,0.0000023009,0.0000022999,0.0000022971, +0.0000022934,0.0000022901,0.0000022860,0.0000022828,0.0000022815, +0.0000022815,0.0000022821,0.0000022833,0.0000022863,0.0000022900, +0.0000022909,0.0000022900,0.0000022890,0.0000022888,0.0000022913, +0.0000022967,0.0000023000,0.0000022994,0.0000022943,0.0000022915, +0.0000022934,0.0000022977,0.0000022993,0.0000022902,0.0000022746, +0.0000022650,0.0000022475,0.0000022246,0.0000022174,0.0000022263, +0.0000022319,0.0000022188,0.0000022074,0.0000022083,0.0000022129, +0.0000022210,0.0000022281,0.0000022237,0.0000022093,0.0000021991, +0.0000021982,0.0000022018,0.0000022071,0.0000022092,0.0000022072, +0.0000022026,0.0000021977,0.0000021936,0.0000021914,0.0000021909, +0.0000021903,0.0000021895,0.0000021896,0.0000021908,0.0000021936, +0.0000021982,0.0000022033,0.0000022076,0.0000022104,0.0000022114, +0.0000022118,0.0000022128,0.0000022151,0.0000022173,0.0000022180, +0.0000022162,0.0000022131,0.0000022099,0.0000022071,0.0000022053, +0.0000022053,0.0000022076,0.0000022137,0.0000022236,0.0000022347, +0.0000022415,0.0000022409,0.0000022300,0.0000022126,0.0000021961, +0.0000021868,0.0000021860,0.0000021922,0.0000022035,0.0000022176, +0.0000022320,0.0000022451,0.0000022560,0.0000022649,0.0000022721, +0.0000022780,0.0000022819,0.0000022826,0.0000022822,0.0000022786, +0.0000022731,0.0000022658,0.0000022576,0.0000022496,0.0000022418, +0.0000022345,0.0000022278,0.0000022219,0.0000022181,0.0000022161, +0.0000022155,0.0000022163,0.0000022178,0.0000022196,0.0000022216, +0.0000022239,0.0000022264,0.0000022285,0.0000022300,0.0000022309, +0.0000022314,0.0000022320,0.0000022330,0.0000022339,0.0000022345, +0.0000022348,0.0000022350,0.0000022351,0.0000022349,0.0000022349, +0.0000022349,0.0000022357,0.0000022365,0.0000022370,0.0000022377, +0.0000022384,0.0000022405,0.0000022411,0.0000022403,0.0000022378, +0.0000022344,0.0000022306,0.0000022264,0.0000022228,0.0000022200, +0.0000022175,0.0000022152,0.0000022129,0.0000022106,0.0000022076, +0.0000022046,0.0000022031,0.0000022011,0.0000022027,0.0000022083, +0.0000022174,0.0000022288,0.0000022409,0.0000022514,0.0000022594, +0.0000022661,0.0000022738,0.0000022841,0.0000022966,0.0000023092, +0.0000023200,0.0000023280,0.0000023331,0.0000023350,0.0000023346, +0.0000023328,0.0000023314,0.0000023316,0.0000023346,0.0000023403, +0.0000023478,0.0000023546,0.0000023587,0.0000023583,0.0000023545, +0.0000023489,0.0000023452,0.0000023451,0.0000023477,0.0000023516, +0.0000023545,0.0000023553,0.0000023538,0.0000023505,0.0000023459, +0.0000023403,0.0000023345,0.0000023291,0.0000023254,0.0000023242, +0.0000023242,0.0000023244,0.0000023250,0.0000023250,0.0000023244, +0.0000023235,0.0000023225,0.0000023214,0.0000023202,0.0000023194, +0.0000023188,0.0000023186,0.0000023189,0.0000023199,0.0000023218, +0.0000023242,0.0000023264,0.0000023281,0.0000023289,0.0000023287, +0.0000023277,0.0000023262,0.0000023242,0.0000023217,0.0000023189, +0.0000023159,0.0000023132,0.0000023113,0.0000023103,0.0000023101, +0.0000023100,0.0000023103,0.0000023103,0.0000023098,0.0000023088, +0.0000023072,0.0000023055,0.0000023039,0.0000023026,0.0000023012, +0.0000023000,0.0000022992,0.0000022990,0.0000022994,0.0000023013, +0.0000023040,0.0000023054,0.0000023043,0.0000023012,0.0000022982, +0.0000022955,0.0000022900,0.0000022799,0.0000022687,0.0000022614, +0.0000022578,0.0000022545,0.0000022487,0.0000022392,0.0000022280, +0.0000022186,0.0000022105,0.0000021983,0.0000021794,0.0000021575, +0.0000021381,0.0000021230,0.0000021120,0.0000021043,0.0000020995, +0.0000020968,0.0000020948,0.0000020938,0.0000020924,0.0000020899, +0.0000020872,0.0000020846,0.0000020824,0.0000020807,0.0000020801, +0.0000020788,0.0000020789,0.0000020798,0.0000020811,0.0000020826, +0.0000020842,0.0000020858,0.0000020865,0.0000020860,0.0000020853, +0.0000020854,0.0000020866,0.0000020872,0.0000020875,0.0000020875, +0.0000020867,0.0000020862,0.0000020862,0.0000020862,0.0000020858, +0.0000020850,0.0000020836,0.0000020821,0.0000020812,0.0000020801, +0.0000020792,0.0000020785,0.0000020785,0.0000020812,0.0000020854, +0.0000020908,0.0000020965,0.0000021004,0.0000021032,0.0000021038, +0.0000021032,0.0000021027,0.0000021014,0.0000020994,0.0000020973, +0.0000020960,0.0000020951,0.0000020941,0.0000020934,0.0000020940, +0.0000020966,0.0000021017,0.0000021108,0.0000021249,0.0000021418, +0.0000021605,0.0000021780,0.0000021918,0.0000022011,0.0000022072, +0.0000022107,0.0000022127,0.0000022133,0.0000022134,0.0000022151, +0.0000022188,0.0000022230,0.0000022246,0.0000022229,0.0000022191, +0.0000022165,0.0000022176,0.0000022198,0.0000022199,0.0000022198, +0.0000022222,0.0000022264,0.0000022313,0.0000022377,0.0000022423, +0.0000022444,0.0000022453,0.0000022442,0.0000022422,0.0000022413, +0.0000022416,0.0000022365,0.0000022258,0.0000022173,0.0000022184, +0.0000022244,0.0000022287,0.0000022314,0.0000022395,0.0000022552, +0.0000022711,0.0000022770,0.0000022736,0.0000022675,0.0000022654, +0.0000022699,0.0000022837,0.0000023015,0.0000023125,0.0000023139, +0.0000023121,0.0000023091,0.0000023025,0.0000022902,0.0000022715, +0.0000022478,0.0000022261,0.0000022140,0.0000022108,0.0000022113, +0.0000022113,0.0000022093,0.0000022062,0.0000022040,0.0000022039, +0.0000022064,0.0000022108,0.0000022152,0.0000022181,0.0000022187, +0.0000022179,0.0000022169,0.0000022166,0.0000022170,0.0000022184, +0.0000022201,0.0000022215,0.0000022243,0.0000022294,0.0000022342, +0.0000022379,0.0000022445,0.0000022538,0.0000022603,0.0000022610, +0.0000022558,0.0000022438,0.0000022331,0.0000022315,0.0000022365, +0.0000022456,0.0000022527,0.0000022545,0.0000022537,0.0000022514, +0.0000022484,0.0000022466,0.0000022452,0.0000022405,0.0000022303, +0.0000022168,0.0000022037,0.0000021938,0.0000021871,0.0000021816, +0.0000021762,0.0000021710,0.0000021672,0.0000021663,0.0000021679, +0.0000021723,0.0000021798,0.0000021900,0.0000022014,0.0000022123, +0.0000022218,0.0000022299,0.0000022366,0.0000022422,0.0000022457, +0.0000022466,0.0000022447,0.0000022414,0.0000022364,0.0000022264, +0.0000022099,0.0000021905,0.0000021734,0.0000021649,0.0000021649, +0.0000021791,0.0000021969,0.0000022058,0.0000022067,0.0000022151, +0.0000022383,0.0000022561,0.0000022511,0.0000022157,0.0000021892, +0.0000021835,0.0000021788,0.0000021687,0.0000021613,0.0000021597, +0.0000021587,0.0000021580,0.0000021582,0.0000021597,0.0000021624, +0.0000021660,0.0000021710,0.0000021776,0.0000021849,0.0000021908, +0.0000021945,0.0000021964,0.0000021976,0.0000021996,0.0000022015, +0.0000022009,0.0000021970,0.0000021923,0.0000021891,0.0000021878, +0.0000021885,0.0000021904,0.0000021927,0.0000021953,0.0000021980, +0.0000022008,0.0000022035,0.0000022061,0.0000022101,0.0000022167, +0.0000022262,0.0000022369,0.0000022461,0.0000022533,0.0000022600, +0.0000022680,0.0000022760,0.0000022812,0.0000022833,0.0000022839, +0.0000022839,0.0000022822,0.0000022766,0.0000022641,0.0000022441, +0.0000022226,0.0000022065,0.0000021955,0.0000021845,0.0000021707, +0.0000021546,0.0000021376,0.0000021227,0.0000021108,0.0000020993, +0.0000020857,0.0000020717,0.0000020608,0.0000020539,0.0000020493, +0.0000020471,0.0000020470,0.0000020465,0.0000020444,0.0000020420, +0.0000020399,0.0000020384,0.0000020378,0.0000020383,0.0000020414, +0.0000020480,0.0000020572,0.0000020661,0.0000020727,0.0000020778, +0.0000020823,0.0000020866,0.0000020918,0.0000020986,0.0000021071, +0.0000021152,0.0000021202,0.0000021204,0.0000021150,0.0000021073, +0.0000021003,0.0000020962,0.0000020951,0.0000020946,0.0000020961, +0.0000021003,0.0000021065,0.0000021127,0.0000021181,0.0000021251, +0.0000021357,0.0000021489,0.0000021614,0.0000021700,0.0000021736, +0.0000021752,0.0000021752,0.0000021754,0.0000021753,0.0000021737, +0.0000021681,0.0000021578,0.0000021446,0.0000021294,0.0000021135, +0.0000021010,0.0000020988,0.0000021046,0.0000021164,0.0000021260, +0.0000021285,0.0000021252,0.0000021210,0.0000021211,0.0000021304, +0.0000021469,0.0000021646,0.0000021818,0.0000022004,0.0000022206, +0.0000022404,0.0000022572,0.0000022708,0.0000022813,0.0000022876, +0.0000022884,0.0000022864,0.0000022824,0.0000022791,0.0000022776, +0.0000022776,0.0000022796,0.0000022824,0.0000022859,0.0000022903, +0.0000022964,0.0000023040,0.0000023122,0.0000023208,0.0000023302, +0.0000023407,0.0000023525,0.0000023660,0.0000023820,0.0000023997, +0.0000024171,0.0000024313,0.0000024403,0.0000024445,0.0000024451, +0.0000024439,0.0000024421,0.0000024407,0.0000024395,0.0000024378, +0.0000024349,0.0000024313,0.0000024276,0.0000024246,0.0000024232, +0.0000024235,0.0000024253,0.0000024280,0.0000024315,0.0000024341, +0.0000024344,0.0000024314,0.0000024243,0.0000024151,0.0000024035, +0.0000023914,0.0000023811,0.0000023731,0.0000023669,0.0000023628, +0.0000023597,0.0000023537,0.0000023426,0.0000023284,0.0000023131, +0.0000022968,0.0000022796,0.0000022632,0.0000022505,0.0000022421, +0.0000022351,0.0000022270,0.0000022179,0.0000022097,0.0000022035, +0.0000021989,0.0000021950,0.0000021906,0.0000021858,0.0000021813, +0.0000021778,0.0000021751,0.0000021726,0.0000021695,0.0000021665, +0.0000021641,0.0000021614,0.0000021587,0.0000021573,0.0000021571, +0.0000021572,0.0000021572,0.0000021576,0.0000021586,0.0000021598, +0.0000021613,0.0000021632,0.0000021649,0.0000021661,0.0000021667, +0.0000021673,0.0000021677,0.0000021680,0.0000021685,0.0000021686, +0.0000021676,0.0000021657,0.0000021631,0.0000021600,0.0000021561, +0.0000021515,0.0000021459,0.0000021388,0.0000021312,0.0000021239, +0.0000021177,0.0000021121,0.0000021077,0.0000021052,0.0000021067, +0.0000021131,0.0000021245,0.0000021412,0.0000021639,0.0000021920, +0.0000022221,0.0000022500,0.0000022692,0.0000022793,0.0000022781, +0.0000022748,0.0000022687,0.0000022593,0.0000022483,0.0000022373, +0.0000022272,0.0000022178,0.0000022083,0.0000021992,0.0000021913, +0.0000021845,0.0000021784,0.0000021740,0.0000021718,0.0000021709, +0.0000021721,0.0000021722,0.0000021718,0.0000021716,0.0000021710, +0.0000021693,0.0000021668,0.0000021634,0.0000021589,0.0000021538, +0.0000021487,0.0000021441,0.0000021411,0.0000021396,0.0000021388, +0.0000021387,0.0000021393,0.0000021409,0.0000021438,0.0000021476, +0.0000021514,0.0000021543,0.0000021557,0.0000021558,0.0000021544, +0.0000021516,0.0000021477,0.0000021432,0.0000021393,0.0000021361, +0.0000021338,0.0000021319,0.0000021300,0.0000021280,0.0000021260, +0.0000021234,0.0000021202,0.0000021167,0.0000021132,0.0000021096, +0.0000021058,0.0000021019,0.0000020984,0.0000020955,0.0000020940, +0.0000020935,0.0000020936,0.0000020938,0.0000020920,0.0000020882, +0.0000020832,0.0000020784,0.0000020738,0.0000020693,0.0000020648, +0.0000020603,0.0000020571,0.0000020565,0.0000020564,0.0000020576, +0.0000020588,0.0000020588,0.0000020575,0.0000020547,0.0000020505, +0.0000020457,0.0000020422,0.0000020422,0.0000020441,0.0000020464, +0.0000020486,0.0000020503,0.0000020512,0.0000020515,0.0000020512, +0.0000020502,0.0000020491,0.0000020472,0.0000020450,0.0000020438, +0.0000020429,0.0000020416,0.0000020406,0.0000020409,0.0000020418, +0.0000020428,0.0000020446,0.0000020472,0.0000020492,0.0000020502, +0.0000020509,0.0000020520,0.0000020535,0.0000020547,0.0000020554, +0.0000020549,0.0000020526,0.0000020487,0.0000020434,0.0000020372, +0.0000020312,0.0000020277,0.0000020260,0.0000020246,0.0000020221, +0.0000020201,0.0000020209,0.0000020258,0.0000020343,0.0000020420, +0.0000020451,0.0000020467,0.0000020545,0.0000020627,0.0000020587, +0.0000020500,0.0000020498,0.0000020511,0.0000020452,0.0000020430, +0.0000020488,0.0000020523,0.0000020477,0.0000020387,0.0000020316, +0.0000020293,0.0000020308,0.0000020356,0.0000020410,0.0000020462, +0.0000020526,0.0000020565,0.0000020589,0.0000020683,0.0000020884, +0.0000021094,0.0000021195,0.0000021201,0.0000021180,0.0000021155, +0.0000021120,0.0000021056,0.0000020930,0.0000020725,0.0000020512, +0.0000020381,0.0000020330,0.0000020310,0.0000020308,0.0000020323, +0.0000020359,0.0000020419,0.0000020469,0.0000020477,0.0000020415, +0.0000020303,0.0000020221,0.0000020213,0.0000020258,0.0000020342, +0.0000020433,0.0000020507,0.0000020554,0.0000020568,0.0000020564, +0.0000020559,0.0000020558,0.0000020556,0.0000020555,0.0000020566, +0.0000020587,0.0000020607,0.0000020617,0.0000020618,0.0000020620, +0.0000020624,0.0000020625,0.0000020621,0.0000020609,0.0000020588, +0.0000020562,0.0000020537,0.0000020514,0.0000020500,0.0000020507, +0.0000020530,0.0000020558,0.0000020594,0.0000020635,0.0000020672, +0.0000020704,0.0000020727,0.0000020740,0.0000020734,0.0000020686, +0.0000020602,0.0000020519,0.0000020442,0.0000020367,0.0000020319, +0.0000020313,0.0000020332,0.0000020361,0.0000020387,0.0000020408, +0.0000020427,0.0000020439,0.0000020441,0.0000020437,0.0000020435, +0.0000020436,0.0000020438,0.0000020441,0.0000020444,0.0000020442, +0.0000020426,0.0000020397,0.0000020360,0.0000020322,0.0000020285, +0.0000020248,0.0000020211,0.0000020178,0.0000020156,0.0000020139, +0.0000020125,0.0000020111,0.0000020097,0.0000020079,0.0000020050, +0.0000020015,0.0000019982,0.0000019955,0.0000019931,0.0000019914, +0.0000019909,0.0000019919,0.0000019942,0.0000019968,0.0000019996, +0.0000020029,0.0000020066,0.0000020103,0.0000020141,0.0000020183, +0.0000020224,0.0000020254,0.0000020271,0.0000020282,0.0000020291, +0.0000020296,0.0000020299,0.0000020302,0.0000020303,0.0000020296, +0.0000020280,0.0000020267,0.0000020269,0.0000020285,0.0000020296, +0.0000020291,0.0000020289,0.0000020322,0.0000020422,0.0000020571, +0.0000020712,0.0000020818,0.0000020893,0.0000020923,0.0000020902, +0.0000020801,0.0000020681,0.0000020617,0.0000020607,0.0000020631, +0.0000020669,0.0000020689,0.0000020710,0.0000020820,0.0000021063, +0.0000021358,0.0000021568,0.0000021672,0.0000021722,0.0000021748, +0.0000021745,0.0000021716,0.0000021718,0.0000021698,0.0000021663, +0.0000021612,0.0000021542,0.0000021461,0.0000021397,0.0000021374, +0.0000021396,0.0000021464,0.0000021548,0.0000021619,0.0000021652, +0.0000021656,0.0000021638,0.0000021608,0.0000021582,0.0000021567, +0.0000021560,0.0000021555,0.0000021539,0.0000021510,0.0000021470, +0.0000021427,0.0000021375,0.0000021313,0.0000021243,0.0000021170, +0.0000021102,0.0000021047,0.0000021007,0.0000020972,0.0000020940, +0.0000020920,0.0000020924,0.0000020950,0.0000020994,0.0000021049, +0.0000021105,0.0000021147,0.0000021168,0.0000021166,0.0000021152, +0.0000021133,0.0000021112,0.0000021095,0.0000021079,0.0000021061, +0.0000021036,0.0000021005,0.0000020974,0.0000020947,0.0000020923, +0.0000020901,0.0000020886,0.0000020879,0.0000020881,0.0000020892, +0.0000020904,0.0000020917,0.0000020931,0.0000020948,0.0000020968, +0.0000020996,0.0000021030,0.0000021072,0.0000021117,0.0000021159, +0.0000021195,0.0000021220,0.0000021234,0.0000021240,0.0000021243, +0.0000021253,0.0000021258,0.0000021255,0.0000021245,0.0000021230, +0.0000021212,0.0000021195,0.0000021188,0.0000021192,0.0000021202, +0.0000021213,0.0000021220,0.0000021215,0.0000021198,0.0000021177, +0.0000021164,0.0000021157,0.0000021147,0.0000021140,0.0000021155, +0.0000021178,0.0000021215,0.0000021265,0.0000021330,0.0000021406, +0.0000021482,0.0000021545,0.0000021586,0.0000021604,0.0000021608, +0.0000021606,0.0000021606,0.0000021611,0.0000021616,0.0000021612, +0.0000021596,0.0000021580,0.0000021561,0.0000021530,0.0000021491, +0.0000021456,0.0000021426,0.0000021395,0.0000021361,0.0000021320, +0.0000021277,0.0000021231,0.0000021183,0.0000021140,0.0000021116, +0.0000021104,0.0000021102,0.0000021110,0.0000021123,0.0000021136, +0.0000021149,0.0000021159,0.0000021163,0.0000021162,0.0000021157, +0.0000021151,0.0000021139,0.0000021120,0.0000021090,0.0000021052, +0.0000021016,0.0000020992,0.0000020984,0.0000020987,0.0000021002, +0.0000021030,0.0000021064,0.0000021104,0.0000021137,0.0000021155, +0.0000021167,0.0000021182,0.0000021201,0.0000021221,0.0000021244, +0.0000021271,0.0000021300,0.0000021318,0.0000021321,0.0000021317, +0.0000021308,0.0000021290,0.0000021269,0.0000021250,0.0000021234, +0.0000021223,0.0000021214,0.0000021212,0.0000021238,0.0000021289, +0.0000021356,0.0000021430,0.0000021503,0.0000021568,0.0000021619, +0.0000021650,0.0000021666,0.0000021677,0.0000021691,0.0000021708, +0.0000021723,0.0000021741,0.0000021763,0.0000021768,0.0000021742, +0.0000021704,0.0000021703,0.0000021717,0.0000021697,0.0000021641, +0.0000021594,0.0000021585,0.0000021642,0.0000021805,0.0000022035, +0.0000022230,0.0000022324,0.0000022337,0.0000022321,0.0000022295, +0.0000022277,0.0000022272,0.0000022277,0.0000022296,0.0000022328, +0.0000022370,0.0000022424,0.0000022487,0.0000022556,0.0000022628, +0.0000022698,0.0000022760,0.0000022812,0.0000022854,0.0000022882, +0.0000022895,0.0000022903,0.0000022905,0.0000022904,0.0000022904, +0.0000022908,0.0000022920,0.0000022940,0.0000022968,0.0000023003, +0.0000023040,0.0000023079,0.0000023117,0.0000023152,0.0000023184, +0.0000023207,0.0000023223,0.0000023228,0.0000023226,0.0000023214, +0.0000023189,0.0000023153,0.0000023109,0.0000023062,0.0000023016, +0.0000022973,0.0000022936,0.0000022903,0.0000022876,0.0000022854, +0.0000022838,0.0000022826,0.0000022819,0.0000022817,0.0000022826, +0.0000022842,0.0000022864,0.0000022888,0.0000022916,0.0000022941, +0.0000022964,0.0000022983,0.0000022998,0.0000023009,0.0000023014, +0.0000023017,0.0000023019,0.0000023022,0.0000023025,0.0000023026, +0.0000023023,0.0000023012,0.0000022991,0.0000022963,0.0000022930, +0.0000022887,0.0000022836,0.0000022778,0.0000022720,0.0000022661, +0.0000022597,0.0000022526,0.0000022450,0.0000022360,0.0000022256, +0.0000022147,0.0000022048,0.0000021964,0.0000021895,0.0000021847, +0.0000021813,0.0000021785,0.0000021760,0.0000021743,0.0000021731, +0.0000021727,0.0000021727,0.0000021731,0.0000021741,0.0000021750, +0.0000021755,0.0000021755,0.0000021751,0.0000021749,0.0000021752, +0.0000021763,0.0000021778,0.0000021788,0.0000021794,0.0000021797, +0.0000021796,0.0000021787,0.0000021765,0.0000021725,0.0000021666, +0.0000021589,0.0000021503,0.0000021420,0.0000021353,0.0000021315, +0.0000021305,0.0000021304,0.0000021293,0.0000021246,0.0000021198, +0.0000021188,0.0000021188,0.0000021173,0.0000021138,0.0000021096, +0.0000021087,0.0000021103,0.0000021118,0.0000021139,0.0000021165, +0.0000021186,0.0000021190,0.0000021176,0.0000021136,0.0000021076, +0.0000020990,0.0000020896,0.0000020848,0.0000020847,0.0000020885, +0.0000020950,0.0000021025,0.0000021074,0.0000021076,0.0000021053, +0.0000021052,0.0000021099,0.0000021199,0.0000021274,0.0000021298, +0.0000021337,0.0000021425,0.0000021526,0.0000021627,0.0000021679, +0.0000021684,0.0000021680,0.0000021673,0.0000021655,0.0000021635, +0.0000021631,0.0000021651,0.0000021716,0.0000021795,0.0000021824, +0.0000021817,0.0000021814,0.0000021846,0.0000021903,0.0000021945, +0.0000022020,0.0000022106,0.0000022119,0.0000022065,0.0000022037, +0.0000022034,0.0000021968,0.0000021869,0.0000021856,0.0000021943, +0.0000022060,0.0000022119,0.0000022134,0.0000022129,0.0000022097, +0.0000022044,0.0000021995,0.0000021947,0.0000021887,0.0000021834, +0.0000021824,0.0000021839,0.0000021880,0.0000021936,0.0000021992, +0.0000022023,0.0000022026,0.0000021998,0.0000021952,0.0000021908, +0.0000021883,0.0000021882,0.0000021885,0.0000021901,0.0000021939, +0.0000021981,0.0000022023,0.0000022070,0.0000022114,0.0000022150, +0.0000022166,0.0000022158,0.0000022133,0.0000022095,0.0000022068, +0.0000022048,0.0000022010,0.0000022008,0.0000022044,0.0000022124, +0.0000022254,0.0000022415,0.0000022573,0.0000022704,0.0000022818, +0.0000022934,0.0000023017,0.0000023039,0.0000023027,0.0000022985, +0.0000022882,0.0000022723,0.0000022528,0.0000022403,0.0000022362, +0.0000022354,0.0000022365,0.0000022380,0.0000022330,0.0000022156, +0.0000022052,0.0000022086,0.0000022131,0.0000022190,0.0000022269, +0.0000022328,0.0000022361,0.0000022373,0.0000022381,0.0000022407, +0.0000022466,0.0000022540,0.0000022619,0.0000022686,0.0000022729, +0.0000022742,0.0000022738,0.0000022725,0.0000022709,0.0000022704, +0.0000022704,0.0000022721,0.0000022741,0.0000022764,0.0000022803, +0.0000022850,0.0000022906,0.0000022962,0.0000023000,0.0000023022, +0.0000023038,0.0000023049,0.0000023055,0.0000023064,0.0000023073, +0.0000023077,0.0000023081,0.0000023086,0.0000023086,0.0000023083, +0.0000023078,0.0000023078,0.0000023083,0.0000023089,0.0000023099, +0.0000023108,0.0000023103,0.0000023083,0.0000023053,0.0000023028, +0.0000023009,0.0000022996,0.0000022977,0.0000022942,0.0000022902, +0.0000022866,0.0000022833,0.0000022816,0.0000022813,0.0000022815, +0.0000022822,0.0000022840,0.0000022877,0.0000022919,0.0000022934, +0.0000022924,0.0000022900,0.0000022881,0.0000022882,0.0000022912, +0.0000022937,0.0000022927,0.0000022889,0.0000022874,0.0000022895, +0.0000022941,0.0000022969,0.0000022904,0.0000022761,0.0000022671, +0.0000022547,0.0000022328,0.0000022203,0.0000022232,0.0000022346, +0.0000022305,0.0000022135,0.0000022081,0.0000022103,0.0000022133, +0.0000022198,0.0000022266,0.0000022251,0.0000022128,0.0000022005, +0.0000021952,0.0000021954,0.0000021978,0.0000021990,0.0000021975, +0.0000021941,0.0000021895,0.0000021854,0.0000021829,0.0000021820, +0.0000021818,0.0000021816,0.0000021817,0.0000021829,0.0000021861, +0.0000021914,0.0000021982,0.0000022045,0.0000022086,0.0000022096, +0.0000022087,0.0000022071,0.0000022070,0.0000022087,0.0000022115, +0.0000022133,0.0000022124,0.0000022118,0.0000022112,0.0000022098, +0.0000022084,0.0000022080,0.0000022096,0.0000022154,0.0000022251, +0.0000022349,0.0000022393,0.0000022346,0.0000022223,0.0000022074, +0.0000021943,0.0000021858,0.0000021845,0.0000021887,0.0000021968, +0.0000022096,0.0000022241,0.0000022386,0.0000022516,0.0000022623, +0.0000022713,0.0000022778,0.0000022815,0.0000022828,0.0000022819, +0.0000022793,0.0000022741,0.0000022671,0.0000022590,0.0000022504, +0.0000022419,0.0000022339,0.0000022272,0.0000022226,0.0000022201, +0.0000022197,0.0000022206,0.0000022222,0.0000022239,0.0000022258, +0.0000022282,0.0000022306,0.0000022321,0.0000022327,0.0000022323, +0.0000022314,0.0000022305,0.0000022297,0.0000022292,0.0000022287, +0.0000022281,0.0000022278,0.0000022273,0.0000022266,0.0000022260, +0.0000022263,0.0000022278,0.0000022298,0.0000022320,0.0000022344, +0.0000022373,0.0000022402,0.0000022427,0.0000022433,0.0000022428, +0.0000022408,0.0000022377,0.0000022344,0.0000022316,0.0000022291, +0.0000022268,0.0000022245,0.0000022221,0.0000022184,0.0000022137, +0.0000022092,0.0000022053,0.0000022013,0.0000021982,0.0000021973, +0.0000021984,0.0000022036,0.0000022127,0.0000022247,0.0000022374, +0.0000022485,0.0000022570,0.0000022641,0.0000022723,0.0000022827, +0.0000022946,0.0000023065,0.0000023168,0.0000023245,0.0000023290, +0.0000023305,0.0000023298,0.0000023285,0.0000023279,0.0000023299, +0.0000023352,0.0000023425,0.0000023498,0.0000023549,0.0000023562, +0.0000023537,0.0000023492,0.0000023457,0.0000023453,0.0000023474, +0.0000023515,0.0000023553,0.0000023569,0.0000023558,0.0000023526, +0.0000023490,0.0000023449,0.0000023395,0.0000023334,0.0000023281, +0.0000023248,0.0000023233,0.0000023230,0.0000023228,0.0000023226, +0.0000023224,0.0000023218,0.0000023210,0.0000023202,0.0000023197, +0.0000023193,0.0000023190,0.0000023189,0.0000023192,0.0000023206, +0.0000023227,0.0000023249,0.0000023270,0.0000023283,0.0000023284, +0.0000023274,0.0000023258,0.0000023238,0.0000023213,0.0000023185, +0.0000023156,0.0000023131,0.0000023114,0.0000023105,0.0000023099, +0.0000023097,0.0000023095,0.0000023091,0.0000023084,0.0000023072, +0.0000023057,0.0000023041,0.0000023026,0.0000023011,0.0000022991, +0.0000022970,0.0000022959,0.0000022961,0.0000022976,0.0000022999, +0.0000023019,0.0000023020,0.0000022998,0.0000022968,0.0000022946, +0.0000022917,0.0000022848,0.0000022747,0.0000022656,0.0000022606, +0.0000022579,0.0000022544,0.0000022483,0.0000022389,0.0000022287, +0.0000022201,0.0000022103,0.0000021945,0.0000021732,0.0000021524, +0.0000021356,0.0000021225,0.0000021125,0.0000021061,0.0000021017, +0.0000020979,0.0000020942,0.0000020906,0.0000020871,0.0000020842, +0.0000020825,0.0000020818,0.0000020812,0.0000020819,0.0000020828, +0.0000020839,0.0000020851,0.0000020864,0.0000020878,0.0000020894, +0.0000020911,0.0000020928,0.0000020942,0.0000020948,0.0000020947, +0.0000020946,0.0000020955,0.0000020952,0.0000020938,0.0000020920, +0.0000020897,0.0000020876,0.0000020867,0.0000020866,0.0000020863, +0.0000020859,0.0000020849,0.0000020840,0.0000020839,0.0000020840, +0.0000020839,0.0000020834,0.0000020814,0.0000020798,0.0000020796, +0.0000020796,0.0000020846,0.0000020904,0.0000020962,0.0000021005, +0.0000021023,0.0000021030,0.0000021017,0.0000020993,0.0000020958, +0.0000020922,0.0000020891,0.0000020868,0.0000020847,0.0000020830, +0.0000020828,0.0000020843,0.0000020885,0.0000020975,0.0000021105, +0.0000021271,0.0000021477,0.0000021695,0.0000021869,0.0000021975, +0.0000022033,0.0000022069,0.0000022092,0.0000022102,0.0000022114, +0.0000022151,0.0000022206,0.0000022245,0.0000022249,0.0000022211, +0.0000022157,0.0000022121,0.0000022134,0.0000022161,0.0000022175, +0.0000022192,0.0000022228,0.0000022269,0.0000022321,0.0000022375, +0.0000022409,0.0000022427,0.0000022427,0.0000022409,0.0000022396, +0.0000022418,0.0000022442,0.0000022408,0.0000022307,0.0000022213, +0.0000022192,0.0000022220,0.0000022251,0.0000022270,0.0000022326, +0.0000022464,0.0000022640,0.0000022740,0.0000022728,0.0000022672, +0.0000022643,0.0000022691,0.0000022834,0.0000023003,0.0000023097, +0.0000023108,0.0000023090,0.0000023059,0.0000023019,0.0000022928, +0.0000022783,0.0000022597,0.0000022403,0.0000022253,0.0000022169, +0.0000022135,0.0000022123,0.0000022107,0.0000022085,0.0000022069, +0.0000022067,0.0000022085,0.0000022117,0.0000022145,0.0000022153, +0.0000022147,0.0000022147,0.0000022163,0.0000022187,0.0000022220, +0.0000022247,0.0000022255,0.0000022256,0.0000022276,0.0000022322, +0.0000022356,0.0000022369,0.0000022404,0.0000022485,0.0000022574, +0.0000022608,0.0000022575,0.0000022461,0.0000022339,0.0000022312, +0.0000022370,0.0000022474,0.0000022545,0.0000022554,0.0000022535, +0.0000022498,0.0000022468,0.0000022456,0.0000022424,0.0000022328, +0.0000022183,0.0000022036,0.0000021916,0.0000021829,0.0000021775, +0.0000021734,0.0000021690,0.0000021640,0.0000021593,0.0000021565, +0.0000021569,0.0000021597,0.0000021647,0.0000021730,0.0000021844, +0.0000021971,0.0000022091,0.0000022198,0.0000022287,0.0000022362, +0.0000022427,0.0000022469,0.0000022479,0.0000022454,0.0000022412, +0.0000022356,0.0000022248,0.0000022077,0.0000021881,0.0000021713, +0.0000021626,0.0000021625,0.0000021764,0.0000021950,0.0000022058, +0.0000022061,0.0000022148,0.0000022397,0.0000022585,0.0000022469, +0.0000022094,0.0000021855,0.0000021805,0.0000021744,0.0000021652, +0.0000021604,0.0000021602,0.0000021606,0.0000021617,0.0000021643, +0.0000021680,0.0000021722,0.0000021772,0.0000021827,0.0000021881, +0.0000021926,0.0000021961,0.0000021988,0.0000022024,0.0000022074, +0.0000022110,0.0000022106,0.0000022060,0.0000021987,0.0000021916, +0.0000021877,0.0000021870,0.0000021878,0.0000021895,0.0000021916, +0.0000021943,0.0000021980,0.0000022018,0.0000022059,0.0000022116, +0.0000022195,0.0000022297,0.0000022404,0.0000022497,0.0000022575, +0.0000022649,0.0000022732,0.0000022810,0.0000022862,0.0000022883, +0.0000022885,0.0000022877,0.0000022846,0.0000022780,0.0000022657, +0.0000022468,0.0000022255,0.0000022085,0.0000021972,0.0000021874, +0.0000021754,0.0000021606,0.0000021438,0.0000021278,0.0000021150, +0.0000021042,0.0000020920,0.0000020784,0.0000020671,0.0000020598, +0.0000020550,0.0000020518,0.0000020508,0.0000020507,0.0000020493, +0.0000020471,0.0000020442,0.0000020411,0.0000020388,0.0000020378, +0.0000020376,0.0000020397,0.0000020454,0.0000020538,0.0000020625, +0.0000020707,0.0000020773,0.0000020822,0.0000020865,0.0000020913, +0.0000020975,0.0000021049,0.0000021122,0.0000021173,0.0000021175, +0.0000021146,0.0000021072,0.0000021006,0.0000020966,0.0000020952, +0.0000020945,0.0000020954,0.0000020992,0.0000021055,0.0000021120, +0.0000021174,0.0000021233,0.0000021321,0.0000021445,0.0000021579, +0.0000021693,0.0000021757,0.0000021769,0.0000021771,0.0000021766, +0.0000021763,0.0000021747,0.0000021695,0.0000021597,0.0000021461, +0.0000021303,0.0000021137,0.0000021006,0.0000020946,0.0000020985, +0.0000021095,0.0000021192,0.0000021225,0.0000021204,0.0000021173, +0.0000021185,0.0000021280,0.0000021439,0.0000021615,0.0000021780, +0.0000021944,0.0000022127,0.0000022314,0.0000022481,0.0000022617, +0.0000022726,0.0000022809,0.0000022854,0.0000022849,0.0000022830, +0.0000022795,0.0000022769,0.0000022766,0.0000022778,0.0000022799, +0.0000022823,0.0000022856,0.0000022900,0.0000022951,0.0000023009, +0.0000023081,0.0000023173,0.0000023278,0.0000023390,0.0000023517, +0.0000023670,0.0000023853,0.0000024046,0.0000024211,0.0000024323, +0.0000024380,0.0000024403,0.0000024402,0.0000024392,0.0000024377, +0.0000024358,0.0000024331,0.0000024299,0.0000024264,0.0000024229, +0.0000024199,0.0000024187,0.0000024195,0.0000024219,0.0000024255, +0.0000024289,0.0000024301,0.0000024288,0.0000024236,0.0000024153, +0.0000024054,0.0000023945,0.0000023849,0.0000023777,0.0000023717, +0.0000023661,0.0000023618,0.0000023576,0.0000023498,0.0000023375, +0.0000023234,0.0000023092,0.0000022934,0.0000022760,0.0000022591, +0.0000022462,0.0000022383,0.0000022329,0.0000022264,0.0000022178, +0.0000022090,0.0000022025,0.0000021986,0.0000021957,0.0000021921, +0.0000021878,0.0000021830,0.0000021787,0.0000021747,0.0000021705, +0.0000021669,0.0000021641,0.0000021611,0.0000021578,0.0000021551, +0.0000021537,0.0000021530,0.0000021530,0.0000021540,0.0000021558, +0.0000021578,0.0000021602,0.0000021631,0.0000021654,0.0000021665, +0.0000021669,0.0000021668,0.0000021663,0.0000021653,0.0000021643, +0.0000021633,0.0000021620,0.0000021611,0.0000021606,0.0000021595, +0.0000021575,0.0000021546,0.0000021515,0.0000021463,0.0000021395, +0.0000021317,0.0000021239,0.0000021168,0.0000021098,0.0000021041, +0.0000021007,0.0000020997,0.0000021017,0.0000021072,0.0000021168, +0.0000021321,0.0000021542,0.0000021828,0.0000022143,0.0000022435, +0.0000022636,0.0000022742,0.0000022730,0.0000022707,0.0000022642, +0.0000022551,0.0000022454,0.0000022358,0.0000022269,0.0000022188, +0.0000022115,0.0000022050,0.0000021980,0.0000021911,0.0000021858, +0.0000021824,0.0000021799,0.0000021773,0.0000021745,0.0000021721, +0.0000021706,0.0000021693,0.0000021673,0.0000021649,0.0000021620, +0.0000021582,0.0000021542,0.0000021504,0.0000021477,0.0000021468, +0.0000021474,0.0000021488,0.0000021510,0.0000021544,0.0000021586, +0.0000021624,0.0000021653,0.0000021668,0.0000021666,0.0000021643, +0.0000021604,0.0000021562,0.0000021509,0.0000021451,0.0000021392, +0.0000021344,0.0000021309,0.0000021281,0.0000021255,0.0000021228, +0.0000021204,0.0000021182,0.0000021159,0.0000021131,0.0000021102, +0.0000021072,0.0000021039,0.0000021006,0.0000020974,0.0000020945, +0.0000020928,0.0000020924,0.0000020926,0.0000020937,0.0000020947, +0.0000020947,0.0000020932,0.0000020890,0.0000020832,0.0000020771, +0.0000020725,0.0000020689,0.0000020647,0.0000020597,0.0000020554, +0.0000020532,0.0000020531,0.0000020537,0.0000020538,0.0000020531, +0.0000020510,0.0000020478,0.0000020447,0.0000020434,0.0000020442, +0.0000020465,0.0000020490,0.0000020511,0.0000020527,0.0000020537, +0.0000020538,0.0000020533,0.0000020524,0.0000020503,0.0000020473, +0.0000020450,0.0000020436,0.0000020418,0.0000020397,0.0000020382, +0.0000020375,0.0000020377,0.0000020389,0.0000020412,0.0000020433, +0.0000020445,0.0000020455,0.0000020469,0.0000020487,0.0000020500, +0.0000020508,0.0000020513,0.0000020511,0.0000020500,0.0000020473, +0.0000020424,0.0000020358,0.0000020289,0.0000020236,0.0000020208, +0.0000020193,0.0000020174,0.0000020152,0.0000020132,0.0000020147, +0.0000020216,0.0000020325,0.0000020401,0.0000020424,0.0000020480, +0.0000020576,0.0000020573,0.0000020481,0.0000020470,0.0000020489, +0.0000020438,0.0000020416,0.0000020477,0.0000020517,0.0000020471, +0.0000020373,0.0000020294,0.0000020270,0.0000020288,0.0000020339, +0.0000020393,0.0000020451,0.0000020513,0.0000020539,0.0000020558, +0.0000020647,0.0000020822,0.0000020999,0.0000021094,0.0000021112, +0.0000021099,0.0000021048,0.0000020949,0.0000020791,0.0000020590, +0.0000020420,0.0000020325,0.0000020285,0.0000020276,0.0000020289, +0.0000020312,0.0000020342,0.0000020378,0.0000020428,0.0000020470, +0.0000020454,0.0000020358,0.0000020245,0.0000020204,0.0000020229, +0.0000020303,0.0000020394,0.0000020476,0.0000020529,0.0000020548, +0.0000020548,0.0000020551,0.0000020555,0.0000020548,0.0000020537, +0.0000020536,0.0000020546,0.0000020559,0.0000020567,0.0000020569, +0.0000020570,0.0000020576,0.0000020579,0.0000020574,0.0000020559, +0.0000020533,0.0000020504,0.0000020485,0.0000020480,0.0000020482, +0.0000020494,0.0000020521,0.0000020554,0.0000020587,0.0000020625, +0.0000020665,0.0000020695,0.0000020717,0.0000020721,0.0000020705, +0.0000020652,0.0000020576,0.0000020503,0.0000020435,0.0000020363, +0.0000020314,0.0000020307,0.0000020325,0.0000020356,0.0000020386, +0.0000020413,0.0000020437,0.0000020452,0.0000020455,0.0000020453, +0.0000020451,0.0000020448,0.0000020443,0.0000020441,0.0000020443, +0.0000020446,0.0000020444,0.0000020429,0.0000020402,0.0000020365, +0.0000020324,0.0000020283,0.0000020243,0.0000020205,0.0000020177, +0.0000020159,0.0000020142,0.0000020125,0.0000020108,0.0000020094, +0.0000020077,0.0000020053,0.0000020024,0.0000019998,0.0000019975, +0.0000019954,0.0000019939,0.0000019934,0.0000019944,0.0000019971, +0.0000020005,0.0000020036,0.0000020064,0.0000020093,0.0000020122, +0.0000020152,0.0000020185,0.0000020220,0.0000020251,0.0000020272, +0.0000020285,0.0000020292,0.0000020294,0.0000020290,0.0000020285, +0.0000020278,0.0000020270,0.0000020260,0.0000020244,0.0000020225, +0.0000020221,0.0000020243,0.0000020277,0.0000020298,0.0000020306, +0.0000020321,0.0000020377,0.0000020499,0.0000020652,0.0000020776, +0.0000020864,0.0000020915,0.0000020919,0.0000020856,0.0000020729, +0.0000020626,0.0000020611,0.0000020625,0.0000020667,0.0000020706, +0.0000020710,0.0000020729,0.0000020857,0.0000021117,0.0000021418, +0.0000021617,0.0000021691,0.0000021714,0.0000021723,0.0000021709, +0.0000021716,0.0000021710,0.0000021682,0.0000021636,0.0000021576, +0.0000021501,0.0000021421,0.0000021360,0.0000021333,0.0000021343, +0.0000021393,0.0000021460,0.0000021521,0.0000021565,0.0000021586, +0.0000021586,0.0000021569,0.0000021553,0.0000021539,0.0000021521, +0.0000021495,0.0000021461,0.0000021423,0.0000021379,0.0000021323, +0.0000021261,0.0000021200,0.0000021139,0.0000021085,0.0000021041, +0.0000021002,0.0000020960,0.0000020922,0.0000020906,0.0000020910, +0.0000020931,0.0000020969,0.0000021022,0.0000021080,0.0000021124, +0.0000021138,0.0000021131,0.0000021108,0.0000021079,0.0000021053, +0.0000021028,0.0000021006,0.0000020984,0.0000020958,0.0000020929, +0.0000020901,0.0000020876,0.0000020854,0.0000020838,0.0000020830, +0.0000020833,0.0000020844,0.0000020859,0.0000020875,0.0000020894, +0.0000020916,0.0000020939,0.0000020964,0.0000020992,0.0000021028, +0.0000021075,0.0000021130,0.0000021184,0.0000021227,0.0000021250, +0.0000021254,0.0000021249,0.0000021244,0.0000021241,0.0000021236, +0.0000021229,0.0000021215,0.0000021203,0.0000021193,0.0000021179, +0.0000021167,0.0000021161,0.0000021165,0.0000021180,0.0000021198, +0.0000021205,0.0000021197,0.0000021181,0.0000021166,0.0000021155, +0.0000021141,0.0000021122,0.0000021109,0.0000021104,0.0000021097, +0.0000021093,0.0000021123,0.0000021167,0.0000021220,0.0000021273, +0.0000021317,0.0000021347,0.0000021367,0.0000021379,0.0000021389, +0.0000021400,0.0000021404,0.0000021392,0.0000021370,0.0000021347, +0.0000021318,0.0000021279,0.0000021238,0.0000021206,0.0000021180, +0.0000021156,0.0000021131,0.0000021103,0.0000021074,0.0000021046, +0.0000021020,0.0000021003,0.0000020995,0.0000020997,0.0000021010, +0.0000021028,0.0000021045,0.0000021061,0.0000021078,0.0000021089, +0.0000021091,0.0000021088,0.0000021085,0.0000021081,0.0000021074, +0.0000021060,0.0000021036,0.0000021003,0.0000020969,0.0000020946, +0.0000020934,0.0000020936,0.0000020951,0.0000020975,0.0000021006, +0.0000021046,0.0000021083,0.0000021105,0.0000021119,0.0000021134, +0.0000021154,0.0000021181,0.0000021214,0.0000021250,0.0000021281, +0.0000021303,0.0000021316,0.0000021319,0.0000021312,0.0000021298, +0.0000021280,0.0000021262,0.0000021245,0.0000021229,0.0000021215, +0.0000021208,0.0000021214,0.0000021250,0.0000021307,0.0000021372, +0.0000021435,0.0000021494,0.0000021546,0.0000021590,0.0000021624, +0.0000021647,0.0000021664,0.0000021678,0.0000021693,0.0000021714, +0.0000021746,0.0000021778,0.0000021776,0.0000021727,0.0000021677, +0.0000021677,0.0000021697,0.0000021665,0.0000021603,0.0000021576, +0.0000021590,0.0000021665,0.0000021823,0.0000022035,0.0000022221, +0.0000022318,0.0000022333,0.0000022317,0.0000022289,0.0000022266, +0.0000022248,0.0000022237,0.0000022239,0.0000022262,0.0000022305, +0.0000022362,0.0000022423,0.0000022487,0.0000022552,0.0000022613, +0.0000022671,0.0000022728,0.0000022781,0.0000022824,0.0000022856, +0.0000022877,0.0000022892,0.0000022902,0.0000022913,0.0000022925, +0.0000022943,0.0000022966,0.0000022991,0.0000023019,0.0000023050, +0.0000023083,0.0000023117,0.0000023150,0.0000023181,0.0000023207, +0.0000023225,0.0000023235,0.0000023240,0.0000023238,0.0000023228, +0.0000023207,0.0000023176,0.0000023136,0.0000023092,0.0000023045, +0.0000022997,0.0000022950,0.0000022910,0.0000022873,0.0000022843, +0.0000022822,0.0000022809,0.0000022805,0.0000022806,0.0000022813, +0.0000022825,0.0000022840,0.0000022854,0.0000022866,0.0000022879, +0.0000022893,0.0000022907,0.0000022915,0.0000022917,0.0000022914, +0.0000022910,0.0000022901,0.0000022885,0.0000022860,0.0000022826, +0.0000022786,0.0000022750,0.0000022722,0.0000022697,0.0000022670, +0.0000022634,0.0000022585,0.0000022516,0.0000022429,0.0000022329, +0.0000022227,0.0000022128,0.0000022032,0.0000021945,0.0000021871, +0.0000021808,0.0000021748,0.0000021696,0.0000021653,0.0000021615, +0.0000021587,0.0000021571,0.0000021567,0.0000021573,0.0000021583, +0.0000021599,0.0000021619,0.0000021635,0.0000021646,0.0000021655, +0.0000021662,0.0000021665,0.0000021667,0.0000021673,0.0000021684, +0.0000021694,0.0000021702,0.0000021711,0.0000021714,0.0000021707, +0.0000021691,0.0000021658,0.0000021606,0.0000021540,0.0000021460, +0.0000021382,0.0000021326,0.0000021299,0.0000021296,0.0000021296, +0.0000021275,0.0000021230,0.0000021205,0.0000021207,0.0000021200, +0.0000021164,0.0000021110,0.0000021071,0.0000021069,0.0000021081, +0.0000021089,0.0000021101,0.0000021122,0.0000021144,0.0000021156, +0.0000021151,0.0000021122,0.0000021067,0.0000020975,0.0000020868, +0.0000020817,0.0000020816,0.0000020866,0.0000020940,0.0000021023, +0.0000021068,0.0000021063,0.0000021044,0.0000021048,0.0000021109, +0.0000021208,0.0000021268,0.0000021284,0.0000021331,0.0000021418, +0.0000021503,0.0000021574,0.0000021603,0.0000021604,0.0000021597, +0.0000021592,0.0000021577,0.0000021564,0.0000021577,0.0000021637, +0.0000021737,0.0000021812,0.0000021816,0.0000021791,0.0000021795, +0.0000021847,0.0000021888,0.0000021947,0.0000022030,0.0000022058, +0.0000022026,0.0000022008,0.0000022012,0.0000021959,0.0000021853, +0.0000021817,0.0000021897,0.0000022019,0.0000022074,0.0000022082, +0.0000022081,0.0000022065,0.0000022023,0.0000021959,0.0000021885, +0.0000021821,0.0000021783,0.0000021779,0.0000021811,0.0000021853, +0.0000021904,0.0000021963,0.0000022013,0.0000022031,0.0000022017, +0.0000021977,0.0000021928,0.0000021874,0.0000021842,0.0000021838, +0.0000021849,0.0000021882,0.0000021936,0.0000021988,0.0000022039, +0.0000022095,0.0000022135,0.0000022162,0.0000022169,0.0000022158, +0.0000022132,0.0000022108,0.0000022118,0.0000022149,0.0000022200, +0.0000022269,0.0000022344,0.0000022413,0.0000022491,0.0000022584, +0.0000022683,0.0000022792,0.0000022904,0.0000022995,0.0000023037, +0.0000023038,0.0000023016,0.0000022936,0.0000022777,0.0000022576, +0.0000022426,0.0000022375,0.0000022354,0.0000022340,0.0000022343, +0.0000022334,0.0000022216,0.0000022060,0.0000022052,0.0000022113, +0.0000022163,0.0000022234,0.0000022299,0.0000022340,0.0000022358, +0.0000022361,0.0000022365,0.0000022398,0.0000022458,0.0000022528, +0.0000022604,0.0000022671,0.0000022710,0.0000022722,0.0000022720, +0.0000022705,0.0000022687,0.0000022682,0.0000022689,0.0000022711, +0.0000022742,0.0000022767,0.0000022803,0.0000022851,0.0000022906, +0.0000022956,0.0000022993,0.0000023014,0.0000023029,0.0000023040, +0.0000023048,0.0000023060,0.0000023074,0.0000023083,0.0000023093, +0.0000023105,0.0000023107,0.0000023107,0.0000023108,0.0000023109, +0.0000023112,0.0000023111,0.0000023110,0.0000023108,0.0000023097, +0.0000023072,0.0000023042,0.0000023015,0.0000022993,0.0000022970, +0.0000022935,0.0000022897,0.0000022862,0.0000022830,0.0000022808, +0.0000022801,0.0000022805,0.0000022812,0.0000022825,0.0000022851, +0.0000022897,0.0000022939,0.0000022954,0.0000022940,0.0000022909, +0.0000022874,0.0000022860,0.0000022866,0.0000022870,0.0000022852, +0.0000022828,0.0000022826,0.0000022859,0.0000022908,0.0000022938, +0.0000022887,0.0000022762,0.0000022680,0.0000022592,0.0000022399, +0.0000022241,0.0000022224,0.0000022327,0.0000022383,0.0000022247, +0.0000022102,0.0000022092,0.0000022109,0.0000022127,0.0000022178, +0.0000022247,0.0000022258,0.0000022174,0.0000022039,0.0000021943, +0.0000021899,0.0000021873,0.0000021858,0.0000021839,0.0000021811, +0.0000021772,0.0000021735,0.0000021710,0.0000021703,0.0000021706, +0.0000021704,0.0000021703,0.0000021716,0.0000021748,0.0000021810, +0.0000021893,0.0000021978,0.0000022044,0.0000022078,0.0000022074, +0.0000022050,0.0000022023,0.0000022017,0.0000022034,0.0000022062, +0.0000022090,0.0000022118,0.0000022142,0.0000022149,0.0000022135, +0.0000022111,0.0000022094,0.0000022105,0.0000022160,0.0000022244, +0.0000022312,0.0000022329,0.0000022292,0.0000022203,0.0000022072, +0.0000021946,0.0000021862,0.0000021832,0.0000021815,0.0000021875, +0.0000021977,0.0000022127,0.0000022288,0.0000022443,0.0000022579, +0.0000022680,0.0000022749,0.0000022792,0.0000022809,0.0000022800, +0.0000022778,0.0000022735,0.0000022677,0.0000022605,0.0000022528, +0.0000022449,0.0000022382,0.0000022333,0.0000022304,0.0000022292, +0.0000022292,0.0000022301,0.0000022311,0.0000022322,0.0000022335, +0.0000022344,0.0000022346,0.0000022340,0.0000022323,0.0000022300, +0.0000022267,0.0000022231,0.0000022196,0.0000022167,0.0000022145, +0.0000022131,0.0000022120,0.0000022111,0.0000022109,0.0000022118, +0.0000022138,0.0000022162,0.0000022193,0.0000022233,0.0000022278, +0.0000022324,0.0000022369,0.0000022401,0.0000022415,0.0000022411, +0.0000022391,0.0000022368,0.0000022350,0.0000022342,0.0000022326, +0.0000022314,0.0000022299,0.0000022270,0.0000022231,0.0000022188, +0.0000022140,0.0000022084,0.0000022028,0.0000021983,0.0000021955, +0.0000021955,0.0000021960,0.0000022007,0.0000022094,0.0000022213, +0.0000022340,0.0000022452,0.0000022539,0.0000022613,0.0000022694, +0.0000022793,0.0000022908,0.0000023025,0.0000023126,0.0000023197, +0.0000023236,0.0000023246,0.0000023239,0.0000023233,0.0000023247, +0.0000023287,0.0000023353,0.0000023431,0.0000023500,0.0000023535, +0.0000023528,0.0000023501,0.0000023468,0.0000023454,0.0000023461, +0.0000023497,0.0000023539,0.0000023564,0.0000023566,0.0000023557, +0.0000023539,0.0000023510,0.0000023468,0.0000023413,0.0000023354, +0.0000023300,0.0000023262,0.0000023241,0.0000023233,0.0000023231, +0.0000023229,0.0000023226,0.0000023222,0.0000023219,0.0000023217, +0.0000023214,0.0000023211,0.0000023208,0.0000023209,0.0000023218, +0.0000023229,0.0000023241,0.0000023252,0.0000023255,0.0000023248, +0.0000023234,0.0000023214,0.0000023188,0.0000023158,0.0000023129, +0.0000023111,0.0000023101,0.0000023094,0.0000023088,0.0000023083, +0.0000023074,0.0000023063,0.0000023051,0.0000023036,0.0000023020, +0.0000023003,0.0000022987,0.0000022970,0.0000022952,0.0000022936, +0.0000022930,0.0000022939,0.0000022956,0.0000022972,0.0000022979, +0.0000022970,0.0000022949,0.0000022928,0.0000022907,0.0000022864, +0.0000022785,0.0000022698,0.0000022635,0.0000022600,0.0000022574, +0.0000022538,0.0000022475,0.0000022390,0.0000022307,0.0000022225, +0.0000022102,0.0000021913,0.0000021689,0.0000021495,0.0000021347, +0.0000021233,0.0000021151,0.0000021102,0.0000021066,0.0000021023, +0.0000020969,0.0000020910,0.0000020860,0.0000020833,0.0000020825, +0.0000020829,0.0000020849,0.0000020880,0.0000020918,0.0000020953, +0.0000020977,0.0000020990,0.0000020994,0.0000020996,0.0000020991, +0.0000020985,0.0000020980,0.0000020976,0.0000020972,0.0000020972, +0.0000020984,0.0000020991,0.0000020984,0.0000020966,0.0000020941, +0.0000020909,0.0000020881,0.0000020863,0.0000020857,0.0000020851, +0.0000020839,0.0000020827,0.0000020820,0.0000020825,0.0000020842, +0.0000020865,0.0000020879,0.0000020872,0.0000020850,0.0000020814, +0.0000020798,0.0000020807,0.0000020843,0.0000020894,0.0000020941, +0.0000020973,0.0000020984,0.0000020974,0.0000020945,0.0000020901, +0.0000020848,0.0000020804,0.0000020768,0.0000020739,0.0000020721, +0.0000020720,0.0000020736,0.0000020781,0.0000020873,0.0000020996, +0.0000021153,0.0000021364,0.0000021605,0.0000021806,0.0000021926, +0.0000021985,0.0000022025,0.0000022057,0.0000022072,0.0000022096, +0.0000022152,0.0000022222,0.0000022262,0.0000022254,0.0000022189, +0.0000022114,0.0000022083,0.0000022095,0.0000022118,0.0000022138, +0.0000022173,0.0000022223,0.0000022278,0.0000022335,0.0000022384, +0.0000022412,0.0000022417,0.0000022404,0.0000022381,0.0000022378, +0.0000022414,0.0000022446,0.0000022441,0.0000022355,0.0000022251, +0.0000022194,0.0000022191,0.0000022212,0.0000022226,0.0000022260, +0.0000022372,0.0000022548,0.0000022687,0.0000022706,0.0000022666, +0.0000022635,0.0000022678,0.0000022821,0.0000022981,0.0000023065, +0.0000023073,0.0000023055,0.0000023037,0.0000023007,0.0000022947, +0.0000022846,0.0000022711,0.0000022559,0.0000022410,0.0000022288, +0.0000022204,0.0000022149,0.0000022112,0.0000022085,0.0000022072, +0.0000022077,0.0000022083,0.0000022097,0.0000022105,0.0000022106, +0.0000022117,0.0000022151,0.0000022190,0.0000022245,0.0000022290, +0.0000022305,0.0000022294,0.0000022279,0.0000022291,0.0000022329, +0.0000022358,0.0000022360,0.0000022367,0.0000022424,0.0000022528, +0.0000022597,0.0000022577,0.0000022461,0.0000022329,0.0000022310, +0.0000022393,0.0000022508,0.0000022560,0.0000022556,0.0000022522, +0.0000022480,0.0000022459,0.0000022441,0.0000022362,0.0000022208, +0.0000022042,0.0000021911,0.0000021819,0.0000021751,0.0000021701, +0.0000021665,0.0000021626,0.0000021581,0.0000021535,0.0000021496, +0.0000021484,0.0000021498,0.0000021532,0.0000021592,0.0000021684, +0.0000021801,0.0000021934,0.0000022067,0.0000022186,0.0000022284, +0.0000022366,0.0000022436,0.0000022477,0.0000022479,0.0000022445, +0.0000022397,0.0000022336,0.0000022224,0.0000022053,0.0000021866, +0.0000021704,0.0000021619,0.0000021606,0.0000021739,0.0000021918, +0.0000022028,0.0000022050,0.0000022172,0.0000022427,0.0000022568, +0.0000022402,0.0000022026,0.0000021823,0.0000021775,0.0000021708, +0.0000021627,0.0000021608,0.0000021619,0.0000021652,0.0000021691, +0.0000021734,0.0000021775,0.0000021814,0.0000021854,0.0000021888, +0.0000021919,0.0000021954,0.0000021991,0.0000022040,0.0000022101, +0.0000022147,0.0000022153,0.0000022122,0.0000022046,0.0000021949, +0.0000021879,0.0000021860,0.0000021860,0.0000021867,0.0000021876, +0.0000021902,0.0000021950,0.0000022010,0.0000022080,0.0000022158, +0.0000022253,0.0000022358,0.0000022459,0.0000022547,0.0000022625, +0.0000022707,0.0000022789,0.0000022858,0.0000022903,0.0000022922, +0.0000022922,0.0000022904,0.0000022860,0.0000022787,0.0000022674, +0.0000022503,0.0000022294,0.0000022111,0.0000021989,0.0000021901, +0.0000021801,0.0000021671,0.0000021512,0.0000021346,0.0000021207, +0.0000021098,0.0000020988,0.0000020859,0.0000020742,0.0000020662, +0.0000020610,0.0000020572,0.0000020553,0.0000020548,0.0000020544, +0.0000020532,0.0000020503,0.0000020463,0.0000020426,0.0000020399, +0.0000020379,0.0000020369,0.0000020383,0.0000020428,0.0000020505, +0.0000020598,0.0000020689,0.0000020764,0.0000020819,0.0000020866, +0.0000020911,0.0000020960,0.0000021019,0.0000021084,0.0000021140, +0.0000021157,0.0000021128,0.0000021071,0.0000021009,0.0000020971, +0.0000020951,0.0000020944,0.0000020943,0.0000020974,0.0000021037, +0.0000021105,0.0000021160,0.0000021211,0.0000021284,0.0000021396, +0.0000021539,0.0000021670,0.0000021755,0.0000021779,0.0000021779, +0.0000021766,0.0000021758,0.0000021747,0.0000021699,0.0000021599, +0.0000021461,0.0000021302,0.0000021134,0.0000020983,0.0000020901, +0.0000020929,0.0000021025,0.0000021122,0.0000021166,0.0000021160, +0.0000021146,0.0000021168,0.0000021262,0.0000021415,0.0000021583, +0.0000021736,0.0000021879,0.0000022039,0.0000022214,0.0000022379, +0.0000022518,0.0000022633,0.0000022727,0.0000022793,0.0000022822, +0.0000022812,0.0000022794,0.0000022773,0.0000022763,0.0000022760, +0.0000022769,0.0000022783,0.0000022806,0.0000022837,0.0000022869, +0.0000022907,0.0000022964,0.0000023049,0.0000023155,0.0000023272, +0.0000023397,0.0000023542,0.0000023722,0.0000023922,0.0000024104, +0.0000024234,0.0000024310,0.0000024345,0.0000024353,0.0000024344, +0.0000024326,0.0000024299,0.0000024269,0.0000024238,0.0000024205, +0.0000024170,0.0000024145,0.0000024141,0.0000024159,0.0000024193, +0.0000024223,0.0000024237,0.0000024233,0.0000024198,0.0000024132, +0.0000024049,0.0000023961,0.0000023880,0.0000023814,0.0000023760, +0.0000023704,0.0000023645,0.0000023597,0.0000023542,0.0000023444, +0.0000023312,0.0000023181,0.0000023047,0.0000022890,0.0000022714, +0.0000022552,0.0000022436,0.0000022367,0.0000022319,0.0000022261, +0.0000022176,0.0000022081,0.0000022007,0.0000021966,0.0000021941, +0.0000021916,0.0000021873,0.0000021821,0.0000021766,0.0000021711, +0.0000021665,0.0000021626,0.0000021592,0.0000021558,0.0000021530, +0.0000021508,0.0000021494,0.0000021490,0.0000021495,0.0000021509, +0.0000021527,0.0000021551,0.0000021581,0.0000021613,0.0000021635, +0.0000021647,0.0000021653,0.0000021653,0.0000021646,0.0000021632, +0.0000021608,0.0000021575,0.0000021547,0.0000021537,0.0000021535, +0.0000021528,0.0000021516,0.0000021501,0.0000021478,0.0000021436, +0.0000021384,0.0000021326,0.0000021264,0.0000021198,0.0000021124, +0.0000021054,0.0000021001,0.0000020984,0.0000020971,0.0000020987, +0.0000021030,0.0000021114,0.0000021259,0.0000021475,0.0000021755, +0.0000022060,0.0000022346,0.0000022551,0.0000022669,0.0000022676, +0.0000022670,0.0000022605,0.0000022523,0.0000022433,0.0000022349, +0.0000022278,0.0000022219,0.0000022159,0.0000022093,0.0000022027, +0.0000021973,0.0000021930,0.0000021892,0.0000021855,0.0000021820, +0.0000021790,0.0000021766,0.0000021743,0.0000021720,0.0000021696, +0.0000021670,0.0000021643,0.0000021621,0.0000021605,0.0000021607, +0.0000021623,0.0000021643,0.0000021659,0.0000021675,0.0000021692, +0.0000021706,0.0000021714,0.0000021711,0.0000021696,0.0000021662, +0.0000021608,0.0000021544,0.0000021483,0.0000021422,0.0000021365, +0.0000021313,0.0000021273,0.0000021242,0.0000021213,0.0000021184, +0.0000021158,0.0000021133,0.0000021112,0.0000021089,0.0000021065, +0.0000021040,0.0000021010,0.0000020975,0.0000020942,0.0000020911, +0.0000020889,0.0000020882,0.0000020884,0.0000020892,0.0000020905, +0.0000020924,0.0000020936,0.0000020936,0.0000020915,0.0000020870, +0.0000020807,0.0000020750,0.0000020711,0.0000020674,0.0000020622, +0.0000020561,0.0000020519,0.0000020494,0.0000020489,0.0000020491, +0.0000020490,0.0000020478,0.0000020460,0.0000020448,0.0000020446, +0.0000020462,0.0000020491,0.0000020515,0.0000020533,0.0000020547, +0.0000020555,0.0000020555,0.0000020552,0.0000020537,0.0000020510, +0.0000020481,0.0000020460,0.0000020435,0.0000020408,0.0000020381, +0.0000020352,0.0000020331,0.0000020324,0.0000020334,0.0000020350, +0.0000020361,0.0000020373,0.0000020389,0.0000020410,0.0000020430, +0.0000020445,0.0000020455,0.0000020461,0.0000020462,0.0000020455, +0.0000020433,0.0000020394,0.0000020338,0.0000020278,0.0000020215, +0.0000020166,0.0000020136,0.0000020120,0.0000020108,0.0000020084, +0.0000020068,0.0000020103,0.0000020210,0.0000020325,0.0000020373, +0.0000020419,0.0000020525,0.0000020545,0.0000020465,0.0000020443, +0.0000020467,0.0000020425,0.0000020405,0.0000020471,0.0000020513, +0.0000020461,0.0000020351,0.0000020269,0.0000020250,0.0000020273, +0.0000020329,0.0000020382,0.0000020442,0.0000020494,0.0000020505, +0.0000020519,0.0000020598,0.0000020730,0.0000020850,0.0000020915, +0.0000020920,0.0000020874,0.0000020773,0.0000020635,0.0000020482, +0.0000020355,0.0000020282,0.0000020249,0.0000020260,0.0000020286, +0.0000020312,0.0000020343,0.0000020367,0.0000020391,0.0000020438, +0.0000020463,0.0000020413,0.0000020294,0.0000020212,0.0000020211, +0.0000020273,0.0000020358,0.0000020441,0.0000020503,0.0000020530, +0.0000020535,0.0000020540,0.0000020547,0.0000020543,0.0000020525, +0.0000020511,0.0000020511,0.0000020520,0.0000020529,0.0000020537, +0.0000020546,0.0000020555,0.0000020562,0.0000020557,0.0000020537, +0.0000020505,0.0000020466,0.0000020436,0.0000020428,0.0000020437, +0.0000020466,0.0000020503,0.0000020543,0.0000020584,0.0000020617, +0.0000020646,0.0000020674,0.0000020693,0.0000020693,0.0000020665, +0.0000020606,0.0000020538,0.0000020479,0.0000020421,0.0000020355, +0.0000020306,0.0000020298,0.0000020318,0.0000020351,0.0000020379, +0.0000020407,0.0000020434,0.0000020456,0.0000020467,0.0000020469, +0.0000020464,0.0000020458,0.0000020451,0.0000020441,0.0000020432, +0.0000020432,0.0000020434,0.0000020430,0.0000020418,0.0000020395, +0.0000020363,0.0000020324,0.0000020281,0.0000020242,0.0000020215, +0.0000020197,0.0000020183,0.0000020167,0.0000020149,0.0000020134, +0.0000020121,0.0000020104,0.0000020083,0.0000020064,0.0000020046, +0.0000020027,0.0000020012,0.0000020007,0.0000020007,0.0000020013, +0.0000020031,0.0000020060,0.0000020093,0.0000020122,0.0000020145, +0.0000020165,0.0000020184,0.0000020204,0.0000020228,0.0000020253, +0.0000020273,0.0000020284,0.0000020287,0.0000020285,0.0000020275, +0.0000020263,0.0000020252,0.0000020245,0.0000020237,0.0000020226, +0.0000020207,0.0000020191,0.0000020193,0.0000020216,0.0000020257, +0.0000020301,0.0000020326,0.0000020334,0.0000020357,0.0000020446, +0.0000020594,0.0000020731,0.0000020831,0.0000020901,0.0000020925, +0.0000020894,0.0000020780,0.0000020657,0.0000020622,0.0000020629, +0.0000020655,0.0000020701,0.0000020719,0.0000020706,0.0000020735, +0.0000020899,0.0000021194,0.0000021478,0.0000021636,0.0000021689, +0.0000021636,0.0000021692,0.0000021708,0.0000021705,0.0000021692, +0.0000021656,0.0000021604,0.0000021543,0.0000021472,0.0000021389, +0.0000021319,0.0000021276,0.0000021272,0.0000021302,0.0000021346, +0.0000021389,0.0000021423,0.0000021443,0.0000021445,0.0000021443, +0.0000021442,0.0000021434,0.0000021412,0.0000021376,0.0000021339, +0.0000021294,0.0000021236,0.0000021172,0.0000021116,0.0000021069, +0.0000021032,0.0000020995,0.0000020951,0.0000020902,0.0000020865, +0.0000020848,0.0000020850,0.0000020875,0.0000020924,0.0000020989, +0.0000021053,0.0000021093,0.0000021099,0.0000021081,0.0000021050, +0.0000021016,0.0000020986,0.0000020959,0.0000020935,0.0000020911, +0.0000020886,0.0000020861,0.0000020839,0.0000020821,0.0000020807, +0.0000020802,0.0000020808,0.0000020823,0.0000020842,0.0000020859, +0.0000020879,0.0000020905,0.0000020933,0.0000020959,0.0000020982, +0.0000021009,0.0000021043,0.0000021094,0.0000021156,0.0000021218, +0.0000021264,0.0000021286,0.0000021286,0.0000021272,0.0000021253, +0.0000021234,0.0000021221,0.0000021202,0.0000021188,0.0000021183, +0.0000021178,0.0000021165,0.0000021149,0.0000021138,0.0000021136, +0.0000021146,0.0000021159,0.0000021168,0.0000021168,0.0000021166, +0.0000021168,0.0000021167,0.0000021156,0.0000021141,0.0000021122, +0.0000021102,0.0000021085,0.0000021071,0.0000021066,0.0000021059, +0.0000021064,0.0000021085,0.0000021101,0.0000021112,0.0000021121, +0.0000021130,0.0000021140,0.0000021149,0.0000021149,0.0000021138, +0.0000021123,0.0000021106,0.0000021082,0.0000021052,0.0000021027, +0.0000021010,0.0000021000,0.0000020991,0.0000020981,0.0000020970, +0.0000020959,0.0000020952,0.0000020946,0.0000020943,0.0000020941, +0.0000020949,0.0000020961,0.0000020975,0.0000020991,0.0000021008, +0.0000021026,0.0000021035,0.0000021035,0.0000021032,0.0000021031, +0.0000021035,0.0000021037,0.0000021030,0.0000021014,0.0000020990, +0.0000020960,0.0000020936,0.0000020922,0.0000020923,0.0000020939, +0.0000020957,0.0000020977,0.0000021005,0.0000021031,0.0000021050, +0.0000021065,0.0000021082,0.0000021103,0.0000021135,0.0000021176, +0.0000021218,0.0000021255,0.0000021283,0.0000021302,0.0000021312, +0.0000021312,0.0000021303,0.0000021294,0.0000021284,0.0000021266, +0.0000021248,0.0000021230,0.0000021217,0.0000021218,0.0000021241, +0.0000021281,0.0000021335,0.0000021392,0.0000021440,0.0000021479, +0.0000021519,0.0000021562,0.0000021603,0.0000021634,0.0000021649, +0.0000021651,0.0000021661,0.0000021694,0.0000021742,0.0000021776, +0.0000021766,0.0000021708,0.0000021659,0.0000021660,0.0000021670, +0.0000021631,0.0000021583,0.0000021578,0.0000021613,0.0000021693, +0.0000021834,0.0000022023,0.0000022198,0.0000022295,0.0000022313, +0.0000022305,0.0000022284,0.0000022258,0.0000022230,0.0000022208, +0.0000022203,0.0000022221,0.0000022262,0.0000022314,0.0000022370, +0.0000022425,0.0000022477,0.0000022528,0.0000022577,0.0000022629, +0.0000022681,0.0000022727,0.0000022765,0.0000022798,0.0000022827, +0.0000022852,0.0000022875,0.0000022900,0.0000022927,0.0000022956, +0.0000022986,0.0000023016,0.0000023047,0.0000023076,0.0000023104, +0.0000023132,0.0000023158,0.0000023182,0.0000023201,0.0000023216, +0.0000023226,0.0000023227,0.0000023222,0.0000023211,0.0000023194, +0.0000023171,0.0000023142,0.0000023106,0.0000023064,0.0000023021, +0.0000022975,0.0000022927,0.0000022885,0.0000022851,0.0000022826, +0.0000022810,0.0000022800,0.0000022795,0.0000022794,0.0000022796, +0.0000022799,0.0000022804,0.0000022812,0.0000022817,0.0000022817, +0.0000022808,0.0000022790,0.0000022765,0.0000022733,0.0000022696, +0.0000022661,0.0000022630,0.0000022605,0.0000022590,0.0000022583, +0.0000022573,0.0000022548,0.0000022501,0.0000022429,0.0000022333, +0.0000022223,0.0000022115,0.0000022024,0.0000021954,0.0000021897, +0.0000021840,0.0000021777,0.0000021704,0.0000021625,0.0000021556, +0.0000021501,0.0000021460,0.0000021431,0.0000021416,0.0000021417, +0.0000021430,0.0000021452,0.0000021480,0.0000021508,0.0000021530, +0.0000021545,0.0000021558,0.0000021569,0.0000021578,0.0000021582, +0.0000021589,0.0000021601,0.0000021615,0.0000021627,0.0000021640, +0.0000021645,0.0000021642,0.0000021631,0.0000021603,0.0000021560, +0.0000021499,0.0000021426,0.0000021358,0.0000021310,0.0000021289, +0.0000021286,0.0000021277,0.0000021241,0.0000021209,0.0000021204, +0.0000021206,0.0000021190,0.0000021139,0.0000021078,0.0000021050, +0.0000021049,0.0000021048,0.0000021046,0.0000021052,0.0000021063, +0.0000021084,0.0000021103,0.0000021106,0.0000021087,0.0000021042, +0.0000020956,0.0000020854,0.0000020795,0.0000020795,0.0000020844, +0.0000020926,0.0000021017,0.0000021058,0.0000021047,0.0000021026, +0.0000021035,0.0000021106,0.0000021200,0.0000021245,0.0000021262, +0.0000021307,0.0000021386,0.0000021459,0.0000021516,0.0000021538, +0.0000021539,0.0000021537,0.0000021533,0.0000021528,0.0000021533, +0.0000021576,0.0000021663,0.0000021777,0.0000021833,0.0000021813, +0.0000021785,0.0000021808,0.0000021845,0.0000021886,0.0000021966, +0.0000022008,0.0000021996,0.0000021989,0.0000021998,0.0000021958, +0.0000021841,0.0000021782,0.0000021857,0.0000021980,0.0000022033, +0.0000022033,0.0000022024,0.0000022024,0.0000021996,0.0000021925, +0.0000021840,0.0000021780,0.0000021758,0.0000021756,0.0000021782, +0.0000021831,0.0000021888,0.0000021949,0.0000022003,0.0000022036, +0.0000022038,0.0000022012,0.0000021968,0.0000021921,0.0000021868, +0.0000021835,0.0000021833,0.0000021857,0.0000021909,0.0000021975, +0.0000022046,0.0000022115,0.0000022179,0.0000022228,0.0000022259, +0.0000022266,0.0000022264,0.0000022272,0.0000022295,0.0000022339, +0.0000022400,0.0000022461,0.0000022516,0.0000022555,0.0000022587, +0.0000022639,0.0000022716,0.0000022803,0.0000022894,0.0000022962, +0.0000023018,0.0000023044,0.0000023035,0.0000022976,0.0000022833, +0.0000022626,0.0000022468,0.0000022394,0.0000022364,0.0000022338, +0.0000022321,0.0000022312,0.0000022247,0.0000022085,0.0000022016, +0.0000022067,0.0000022130,0.0000022202,0.0000022273,0.0000022319, +0.0000022344,0.0000022355,0.0000022355,0.0000022356,0.0000022388, +0.0000022445,0.0000022508,0.0000022582,0.0000022649,0.0000022689, +0.0000022702,0.0000022707,0.0000022700,0.0000022686,0.0000022682, +0.0000022693,0.0000022715,0.0000022747,0.0000022776,0.0000022809, +0.0000022852,0.0000022903,0.0000022947,0.0000022985,0.0000023009, +0.0000023023,0.0000023030,0.0000023032,0.0000023040,0.0000023054, +0.0000023070,0.0000023087,0.0000023106,0.0000023119,0.0000023122, +0.0000023128,0.0000023137,0.0000023141,0.0000023134,0.0000023121, +0.0000023104,0.0000023082,0.0000023053,0.0000023023,0.0000022996, +0.0000022973,0.0000022934,0.0000022880,0.0000022842,0.0000022813, +0.0000022786,0.0000022773,0.0000022777,0.0000022791,0.0000022807, +0.0000022828,0.0000022863,0.0000022912,0.0000022954,0.0000022966, +0.0000022948,0.0000022912,0.0000022867,0.0000022838,0.0000022825, +0.0000022805,0.0000022778,0.0000022764,0.0000022779,0.0000022820, +0.0000022878,0.0000022907,0.0000022859,0.0000022747,0.0000022675, +0.0000022613,0.0000022448,0.0000022289,0.0000022233,0.0000022290, +0.0000022405,0.0000022365,0.0000022180,0.0000022096,0.0000022099, +0.0000022106,0.0000022116,0.0000022151,0.0000022220,0.0000022254, +0.0000022212,0.0000022094,0.0000021971,0.0000021869,0.0000021798, +0.0000021746,0.0000021708,0.0000021670,0.0000021628,0.0000021591, +0.0000021572,0.0000021572,0.0000021573,0.0000021568,0.0000021563, +0.0000021568,0.0000021595,0.0000021653,0.0000021739,0.0000021839, +0.0000021935,0.0000022008,0.0000022043,0.0000022032,0.0000022004, +0.0000021975,0.0000021961,0.0000021976,0.0000022018,0.0000022078, +0.0000022137,0.0000022168,0.0000022179,0.0000022160,0.0000022127, +0.0000022101,0.0000022101,0.0000022139,0.0000022199,0.0000022262, +0.0000022300,0.0000022278,0.0000022193,0.0000022077,0.0000021962, +0.0000021867,0.0000021802,0.0000021778,0.0000021782,0.0000021867, +0.0000022000,0.0000022175,0.0000022348,0.0000022496,0.0000022615, +0.0000022699,0.0000022747,0.0000022766,0.0000022763,0.0000022741, +0.0000022712,0.0000022665,0.0000022608,0.0000022547,0.0000022492, +0.0000022448,0.0000022415,0.0000022390,0.0000022377,0.0000022373, +0.0000022372,0.0000022370,0.0000022368,0.0000022361,0.0000022349, +0.0000022329,0.0000022285,0.0000022224,0.0000022157,0.0000022091, +0.0000022030,0.0000021981,0.0000021944,0.0000021923,0.0000021911, +0.0000021903,0.0000021902,0.0000021912,0.0000021931,0.0000021957, +0.0000021994,0.0000022040,0.0000022093,0.0000022153,0.0000022215, +0.0000022271,0.0000022313,0.0000022335,0.0000022341,0.0000022338, +0.0000022334,0.0000022330,0.0000022323,0.0000022323,0.0000022317, +0.0000022302,0.0000022288,0.0000022260,0.0000022223,0.0000022176, +0.0000022122,0.0000022065,0.0000022014,0.0000021976,0.0000021952, +0.0000021943,0.0000021938,0.0000021983,0.0000022068,0.0000022184, +0.0000022306,0.0000022415,0.0000022504,0.0000022582,0.0000022663, +0.0000022756,0.0000022862,0.0000022968,0.0000023059,0.0000023124, +0.0000023163,0.0000023182,0.0000023187,0.0000023192,0.0000023218, +0.0000023271,0.0000023348,0.0000023435,0.0000023502,0.0000023522, +0.0000023502,0.0000023474,0.0000023448,0.0000023442,0.0000023462, +0.0000023502,0.0000023539,0.0000023562,0.0000023570,0.0000023573, +0.0000023569,0.0000023547,0.0000023511,0.0000023461,0.0000023406, +0.0000023360,0.0000023326,0.0000023299,0.0000023280,0.0000023268, +0.0000023261,0.0000023255,0.0000023250,0.0000023246,0.0000023239, +0.0000023232,0.0000023227,0.0000023225,0.0000023223,0.0000023219, +0.0000023217,0.0000023213,0.0000023202,0.0000023183,0.0000023159, +0.0000023129,0.0000023096,0.0000023070,0.0000023055,0.0000023046, +0.0000023039,0.0000023043,0.0000023044,0.0000023038,0.0000023028, +0.0000023016,0.0000023001,0.0000022984,0.0000022966,0.0000022949, +0.0000022934,0.0000022925,0.0000022921,0.0000022919,0.0000022922, +0.0000022928,0.0000022928,0.0000022922,0.0000022910,0.0000022899, +0.0000022888,0.0000022861,0.0000022806,0.0000022731,0.0000022666, +0.0000022626,0.0000022599,0.0000022570,0.0000022522,0.0000022456, +0.0000022385,0.0000022321,0.0000022234,0.0000022090,0.0000021881, +0.0000021662,0.0000021480,0.0000021342,0.0000021243,0.0000021181, +0.0000021140,0.0000021110,0.0000021066,0.0000021002,0.0000020931, +0.0000020876,0.0000020852,0.0000020853,0.0000020875,0.0000020919, +0.0000020970,0.0000021023,0.0000021068,0.0000021096,0.0000021105, +0.0000021099,0.0000021085,0.0000021065,0.0000021044,0.0000021025, +0.0000021008,0.0000020995,0.0000020991,0.0000020999,0.0000021014, +0.0000021019,0.0000021011,0.0000020988,0.0000020947,0.0000020899, +0.0000020853,0.0000020821,0.0000020794,0.0000020772,0.0000020755, +0.0000020746,0.0000020751,0.0000020778,0.0000020825,0.0000020873, +0.0000020904,0.0000020923,0.0000020909,0.0000020875,0.0000020833, +0.0000020808,0.0000020812,0.0000020839,0.0000020871,0.0000020896, +0.0000020906,0.0000020897,0.0000020867,0.0000020815,0.0000020759, +0.0000020704,0.0000020656,0.0000020619,0.0000020603,0.0000020613, +0.0000020639,0.0000020695,0.0000020798,0.0000020923,0.0000021074, +0.0000021272,0.0000021508,0.0000021725,0.0000021863,0.0000021928, +0.0000021979,0.0000022024,0.0000022049,0.0000022080,0.0000022150, +0.0000022234,0.0000022280,0.0000022257,0.0000022168,0.0000022083, +0.0000022051,0.0000022054,0.0000022070,0.0000022090,0.0000022135, +0.0000022202,0.0000022275,0.0000022342,0.0000022391,0.0000022413, +0.0000022410,0.0000022391,0.0000022367,0.0000022371,0.0000022411, +0.0000022457,0.0000022457,0.0000022402,0.0000022292,0.0000022197, +0.0000022166,0.0000022170,0.0000022181,0.0000022196,0.0000022272, +0.0000022434,0.0000022601,0.0000022679,0.0000022660,0.0000022622, +0.0000022656,0.0000022792,0.0000022946,0.0000023026,0.0000023033, +0.0000023020,0.0000023006,0.0000022986,0.0000022954,0.0000022892, +0.0000022806,0.0000022702,0.0000022584,0.0000022466,0.0000022360, +0.0000022268,0.0000022192,0.0000022136,0.0000022103,0.0000022087, +0.0000022085,0.0000022095,0.0000022099,0.0000022113,0.0000022154, +0.0000022211,0.0000022277,0.0000022336,0.0000022360,0.0000022346, +0.0000022302,0.0000022278,0.0000022290,0.0000022328,0.0000022356, +0.0000022351,0.0000022339,0.0000022377,0.0000022489,0.0000022577, +0.0000022560,0.0000022431,0.0000022308,0.0000022320,0.0000022433, +0.0000022539,0.0000022564,0.0000022544,0.0000022500,0.0000022467, +0.0000022451,0.0000022390,0.0000022243,0.0000022061,0.0000021912, +0.0000021812,0.0000021745,0.0000021689,0.0000021637,0.0000021596, +0.0000021561,0.0000021524,0.0000021488,0.0000021452,0.0000021426, +0.0000021426,0.0000021445,0.0000021483,0.0000021550,0.0000021647, +0.0000021771,0.0000021910,0.0000022051,0.0000022182,0.0000022287, +0.0000022372,0.0000022440,0.0000022476,0.0000022470,0.0000022425, +0.0000022374,0.0000022313,0.0000022201,0.0000022035,0.0000021858, +0.0000021698,0.0000021608,0.0000021584,0.0000021706,0.0000021887, +0.0000022010,0.0000022062,0.0000022202,0.0000022444,0.0000022569, +0.0000022337,0.0000021968,0.0000021792,0.0000021745,0.0000021677, +0.0000021612,0.0000021616,0.0000021668,0.0000021728,0.0000021789, +0.0000021836,0.0000021868,0.0000021885,0.0000021903,0.0000021923, +0.0000021953,0.0000021996,0.0000022051,0.0000022110,0.0000022149, +0.0000022159,0.0000022147,0.0000022092,0.0000021997,0.0000021908, +0.0000021867,0.0000021864,0.0000021865,0.0000021863,0.0000021880, +0.0000021937,0.0000022032,0.0000022138,0.0000022244,0.0000022349, +0.0000022452,0.0000022542,0.0000022617,0.0000022688,0.0000022765, +0.0000022840,0.0000022897,0.0000022933,0.0000022946,0.0000022944, +0.0000022916,0.0000022861,0.0000022784,0.0000022686,0.0000022543, +0.0000022345,0.0000022147,0.0000022007,0.0000021923,0.0000021844, +0.0000021736,0.0000021590,0.0000021426,0.0000021275,0.0000021159, +0.0000021056,0.0000020939,0.0000020822,0.0000020733,0.0000020674, +0.0000020633,0.0000020605,0.0000020592,0.0000020592,0.0000020591, +0.0000020573,0.0000020534,0.0000020486,0.0000020444,0.0000020409, +0.0000020380,0.0000020367,0.0000020369,0.0000020409,0.0000020480, +0.0000020571,0.0000020668,0.0000020751,0.0000020818,0.0000020867, +0.0000020903,0.0000020937,0.0000020982,0.0000021042,0.0000021099, +0.0000021130,0.0000021113,0.0000021063,0.0000021014,0.0000020976, +0.0000020952,0.0000020938,0.0000020928,0.0000020950,0.0000021006, +0.0000021076,0.0000021135,0.0000021184,0.0000021248,0.0000021354, +0.0000021494,0.0000021636,0.0000021735,0.0000021775,0.0000021767, +0.0000021755,0.0000021746,0.0000021730,0.0000021690,0.0000021588, +0.0000021449,0.0000021292,0.0000021119,0.0000020955,0.0000020874, +0.0000020872,0.0000020957,0.0000021053,0.0000021106,0.0000021120, +0.0000021125,0.0000021163,0.0000021250,0.0000021387,0.0000021546, +0.0000021687,0.0000021810,0.0000021945,0.0000022106,0.0000022273, +0.0000022421,0.0000022541,0.0000022635,0.0000022708,0.0000022756, +0.0000022777,0.0000022779,0.0000022764,0.0000022750,0.0000022741, +0.0000022737,0.0000022740,0.0000022753,0.0000022769,0.0000022784, +0.0000022803,0.0000022844,0.0000022925,0.0000023044,0.0000023177, +0.0000023302,0.0000023434,0.0000023603,0.0000023804,0.0000023994, +0.0000024138,0.0000024229,0.0000024274,0.0000024283,0.0000024276, +0.0000024258,0.0000024232,0.0000024202,0.0000024168,0.0000024129, +0.0000024096,0.0000024082,0.0000024094,0.0000024121,0.0000024145, +0.0000024156,0.0000024153,0.0000024131,0.0000024087,0.0000024027, +0.0000023964,0.0000023903,0.0000023846,0.0000023798,0.0000023747, +0.0000023681,0.0000023616,0.0000023563,0.0000023490,0.0000023374, +0.0000023246,0.0000023127,0.0000022997,0.0000022840,0.0000022674, +0.0000022530,0.0000022422,0.0000022351,0.0000022305,0.0000022251, +0.0000022162,0.0000022056,0.0000021972,0.0000021927,0.0000021907, +0.0000021883,0.0000021842,0.0000021785,0.0000021724,0.0000021666, +0.0000021613,0.0000021562,0.0000021522,0.0000021492,0.0000021468, +0.0000021454,0.0000021450,0.0000021455,0.0000021468,0.0000021484, +0.0000021501,0.0000021521,0.0000021546,0.0000021570,0.0000021587, +0.0000021599,0.0000021610,0.0000021619,0.0000021617,0.0000021600, +0.0000021562,0.0000021520,0.0000021490,0.0000021473,0.0000021460, +0.0000021450,0.0000021441,0.0000021432,0.0000021416,0.0000021391, +0.0000021353,0.0000021317,0.0000021278,0.0000021229,0.0000021167, +0.0000021098,0.0000021038,0.0000020992,0.0000020970,0.0000020962, +0.0000020969,0.0000021000,0.0000021078,0.0000021213,0.0000021411, +0.0000021668,0.0000021952,0.0000022222,0.0000022434,0.0000022571, +0.0000022634,0.0000022595,0.0000022557,0.0000022498,0.0000022429, +0.0000022362,0.0000022298,0.0000022237,0.0000022178,0.0000022122, +0.0000022071,0.0000022025,0.0000021977,0.0000021928,0.0000021883, +0.0000021851,0.0000021831,0.0000021817,0.0000021805,0.0000021792, +0.0000021775,0.0000021759,0.0000021742,0.0000021727,0.0000021721, +0.0000021721,0.0000021722,0.0000021727,0.0000021734,0.0000021741, +0.0000021741,0.0000021728,0.0000021695,0.0000021637,0.0000021563, +0.0000021485,0.0000021414,0.0000021354,0.0000021296,0.0000021245, +0.0000021202,0.0000021175,0.0000021155,0.0000021133,0.0000021111, +0.0000021092,0.0000021075,0.0000021056,0.0000021035,0.0000021011, +0.0000020985,0.0000020955,0.0000020919,0.0000020881,0.0000020848, +0.0000020829,0.0000020824,0.0000020824,0.0000020830,0.0000020842, +0.0000020865,0.0000020888,0.0000020904,0.0000020902,0.0000020880, +0.0000020841,0.0000020779,0.0000020722,0.0000020679,0.0000020634, +0.0000020579,0.0000020518,0.0000020473,0.0000020449,0.0000020447, +0.0000020452,0.0000020454,0.0000020453,0.0000020452,0.0000020461, +0.0000020487,0.0000020518,0.0000020541,0.0000020558,0.0000020568, +0.0000020573,0.0000020573,0.0000020565,0.0000020548,0.0000020523, +0.0000020501,0.0000020477,0.0000020448,0.0000020413,0.0000020374, +0.0000020331,0.0000020294,0.0000020280,0.0000020278,0.0000020281, +0.0000020286,0.0000020296,0.0000020311,0.0000020328,0.0000020347, +0.0000020365,0.0000020380,0.0000020392,0.0000020399,0.0000020394, +0.0000020373,0.0000020344,0.0000020310,0.0000020261,0.0000020201, +0.0000020136,0.0000020083,0.0000020064,0.0000020060,0.0000020044, +0.0000020018,0.0000020019,0.0000020094,0.0000020227,0.0000020311, +0.0000020361,0.0000020470,0.0000020520,0.0000020445,0.0000020420, +0.0000020450,0.0000020412,0.0000020396,0.0000020467,0.0000020507, +0.0000020445,0.0000020326,0.0000020248,0.0000020234,0.0000020266, +0.0000020324,0.0000020376,0.0000020432,0.0000020471,0.0000020473, +0.0000020485,0.0000020542,0.0000020615,0.0000020672,0.0000020691, +0.0000020663,0.0000020591,0.0000020501,0.0000020404,0.0000020309, +0.0000020247,0.0000020240,0.0000020259,0.0000020289,0.0000020313, +0.0000020342,0.0000020371,0.0000020379,0.0000020401,0.0000020446, +0.0000020446,0.0000020351,0.0000020241,0.0000020213,0.0000020252, +0.0000020330,0.0000020409,0.0000020475,0.0000020515,0.0000020526, +0.0000020530,0.0000020537,0.0000020536,0.0000020521,0.0000020502, +0.0000020491,0.0000020494,0.0000020503,0.0000020513,0.0000020527, +0.0000020540,0.0000020547,0.0000020545,0.0000020528,0.0000020500, +0.0000020464,0.0000020422,0.0000020395,0.0000020390,0.0000020411, +0.0000020453,0.0000020506,0.0000020556,0.0000020596,0.0000020623, +0.0000020638,0.0000020650,0.0000020648,0.0000020617,0.0000020560, +0.0000020498,0.0000020448,0.0000020404,0.0000020350,0.0000020304, +0.0000020294,0.0000020311,0.0000020346,0.0000020375,0.0000020399, +0.0000020422,0.0000020444,0.0000020460,0.0000020468,0.0000020468, +0.0000020461,0.0000020451,0.0000020439,0.0000020423,0.0000020410, +0.0000020404,0.0000020403,0.0000020401,0.0000020393,0.0000020379, +0.0000020359,0.0000020331,0.0000020295,0.0000020265,0.0000020249, +0.0000020237,0.0000020221,0.0000020206,0.0000020193,0.0000020181, +0.0000020172,0.0000020160,0.0000020148,0.0000020134,0.0000020117, +0.0000020101,0.0000020092,0.0000020090,0.0000020091,0.0000020091, +0.0000020098,0.0000020115,0.0000020141,0.0000020166,0.0000020187, +0.0000020204,0.0000020220,0.0000020238,0.0000020258,0.0000020277, +0.0000020290,0.0000020293,0.0000020291,0.0000020284,0.0000020273, +0.0000020260,0.0000020245,0.0000020231,0.0000020218,0.0000020205, +0.0000020190,0.0000020181,0.0000020181,0.0000020187,0.0000020210, +0.0000020257,0.0000020312,0.0000020347,0.0000020348,0.0000020352, +0.0000020411,0.0000020544,0.0000020691,0.0000020805,0.0000020888, +0.0000020920,0.0000020907,0.0000020829,0.0000020705,0.0000020634, +0.0000020629,0.0000020637,0.0000020670,0.0000020706,0.0000020703, +0.0000020697,0.0000020766,0.0000020963,0.0000021241,0.0000021491, +0.0000021255,0.0000021479,0.0000021615,0.0000021673,0.0000021688, +0.0000021685,0.0000021667,0.0000021633,0.0000021588,0.0000021528, +0.0000021444,0.0000021345,0.0000021265,0.0000021211,0.0000021192, +0.0000021197,0.0000021211,0.0000021225,0.0000021232,0.0000021237, +0.0000021246,0.0000021253,0.0000021246,0.0000021223,0.0000021190, +0.0000021151,0.0000021104,0.0000021047,0.0000020995,0.0000020958, +0.0000020931,0.0000020904,0.0000020869,0.0000020827,0.0000020791, +0.0000020771,0.0000020771,0.0000020792,0.0000020840,0.0000020906, +0.0000020975,0.0000021029,0.0000021053,0.0000021050,0.0000021026, +0.0000020989,0.0000020949,0.0000020915,0.0000020888,0.0000020864, +0.0000020840,0.0000020815,0.0000020794,0.0000020781,0.0000020774, +0.0000020774,0.0000020782,0.0000020802,0.0000020828,0.0000020854, +0.0000020876,0.0000020902,0.0000020932,0.0000020962,0.0000020988, +0.0000021011,0.0000021037,0.0000021074,0.0000021124,0.0000021184, +0.0000021239,0.0000021280,0.0000021303,0.0000021305,0.0000021296, +0.0000021267,0.0000021235,0.0000021208,0.0000021185,0.0000021170, +0.0000021163,0.0000021158,0.0000021147,0.0000021134,0.0000021124, +0.0000021122,0.0000021124,0.0000021131,0.0000021137,0.0000021140, +0.0000021145,0.0000021152,0.0000021152,0.0000021147,0.0000021139, +0.0000021129,0.0000021116,0.0000021102,0.0000021083,0.0000021062, +0.0000021048,0.0000021042,0.0000021039,0.0000021029,0.0000021015, +0.0000021005,0.0000021001,0.0000021005,0.0000021007,0.0000021005, +0.0000021001,0.0000020999,0.0000020993,0.0000020979,0.0000020960, +0.0000020947,0.0000020941,0.0000020938,0.0000020938,0.0000020936, +0.0000020939,0.0000020945,0.0000020949,0.0000020948,0.0000020948, +0.0000020952,0.0000020961,0.0000020972,0.0000020986,0.0000021002, +0.0000021021,0.0000021034,0.0000021037,0.0000021035,0.0000021034, +0.0000021038,0.0000021046,0.0000021054,0.0000021057,0.0000021048, +0.0000021026,0.0000020997,0.0000020967,0.0000020949,0.0000020949, +0.0000020960,0.0000020973,0.0000020986,0.0000021000,0.0000021013, +0.0000021025,0.0000021037,0.0000021052,0.0000021075,0.0000021106, +0.0000021144,0.0000021184,0.0000021221,0.0000021251,0.0000021274, +0.0000021290,0.0000021295,0.0000021295,0.0000021295,0.0000021289, +0.0000021276,0.0000021262,0.0000021250,0.0000021240,0.0000021240, +0.0000021254,0.0000021283,0.0000021321,0.0000021369,0.0000021409, +0.0000021434,0.0000021455,0.0000021488,0.0000021533,0.0000021581, +0.0000021614,0.0000021620,0.0000021614,0.0000021629,0.0000021681, +0.0000021744,0.0000021776,0.0000021760,0.0000021690,0.0000021642, +0.0000021645,0.0000021657,0.0000021617,0.0000021579,0.0000021591, +0.0000021641,0.0000021717,0.0000021839,0.0000022001,0.0000022155, +0.0000022253,0.0000022291,0.0000022294,0.0000022285,0.0000022258, +0.0000022221,0.0000022195,0.0000022190,0.0000022204,0.0000022237, +0.0000022280,0.0000022323,0.0000022365,0.0000022406,0.0000022445, +0.0000022485,0.0000022528,0.0000022573,0.0000022615,0.0000022655, +0.0000022693,0.0000022729,0.0000022762,0.0000022793,0.0000022828, +0.0000022866,0.0000022904,0.0000022940,0.0000022975,0.0000023008, +0.0000023035,0.0000023057,0.0000023075,0.0000023092,0.0000023108, +0.0000023124,0.0000023140,0.0000023153,0.0000023160,0.0000023163, +0.0000023161,0.0000023152,0.0000023135,0.0000023111,0.0000023081, +0.0000023047,0.0000023005,0.0000022957,0.0000022909,0.0000022868, +0.0000022833,0.0000022803,0.0000022778,0.0000022758,0.0000022745, +0.0000022739,0.0000022737,0.0000022733,0.0000022724,0.0000022710, +0.0000022687,0.0000022657,0.0000022625,0.0000022592,0.0000022558, +0.0000022527,0.0000022504,0.0000022491,0.0000022484,0.0000022475, +0.0000022461,0.0000022430,0.0000022377,0.0000022306,0.0000022219, +0.0000022123,0.0000022028,0.0000021948,0.0000021889,0.0000021848, +0.0000021809,0.0000021755,0.0000021681,0.0000021597,0.0000021516, +0.0000021455,0.0000021409,0.0000021368,0.0000021333,0.0000021309, +0.0000021301,0.0000021308,0.0000021329,0.0000021360,0.0000021393, +0.0000021421,0.0000021441,0.0000021454,0.0000021464,0.0000021472, +0.0000021478,0.0000021491,0.0000021512,0.0000021534,0.0000021554, +0.0000021572,0.0000021583,0.0000021586,0.0000021581,0.0000021563, +0.0000021528,0.0000021473,0.0000021407,0.0000021345,0.0000021301, +0.0000021276,0.0000021262,0.0000021236,0.0000021197,0.0000021183, +0.0000021190,0.0000021186,0.0000021156,0.0000021096,0.0000021038, +0.0000021017,0.0000021013,0.0000021000,0.0000020990,0.0000020992, +0.0000020996,0.0000021007,0.0000021030,0.0000021044,0.0000021033, +0.0000021003,0.0000020937,0.0000020837,0.0000020778,0.0000020775, +0.0000020811,0.0000020900,0.0000021005,0.0000021044,0.0000021028, +0.0000021004,0.0000021015,0.0000021093,0.0000021182,0.0000021221, +0.0000021232,0.0000021272,0.0000021345,0.0000021415,0.0000021464, +0.0000021484,0.0000021488,0.0000021491,0.0000021495,0.0000021506, +0.0000021541,0.0000021606,0.0000021701,0.0000021806,0.0000021834, +0.0000021806,0.0000021793,0.0000021812,0.0000021832,0.0000021904, +0.0000021971,0.0000021977,0.0000021978,0.0000022005,0.0000021976, +0.0000021855,0.0000021773,0.0000021828,0.0000021950,0.0000022006, +0.0000021995,0.0000021973,0.0000021971,0.0000021952,0.0000021882, +0.0000021803,0.0000021764,0.0000021755,0.0000021757,0.0000021769, +0.0000021814,0.0000021882,0.0000021948,0.0000022012,0.0000022065, +0.0000022089,0.0000022087,0.0000022058,0.0000022018,0.0000021982, +0.0000021952,0.0000021944,0.0000021968,0.0000022016,0.0000022083, +0.0000022163,0.0000022246,0.0000022327,0.0000022393,0.0000022442, +0.0000022469,0.0000022471,0.0000022472,0.0000022483,0.0000022500, +0.0000022534,0.0000022579,0.0000022619,0.0000022656,0.0000022688, +0.0000022723,0.0000022779,0.0000022850,0.0000022907,0.0000022948, +0.0000022986,0.0000023034,0.0000023044,0.0000022996,0.0000022868, +0.0000022678,0.0000022516,0.0000022430,0.0000022383,0.0000022349, +0.0000022321,0.0000022294,0.0000022253,0.0000022119,0.0000022003, +0.0000022020,0.0000022076,0.0000022145,0.0000022233,0.0000022299, +0.0000022334,0.0000022350,0.0000022357,0.0000022354,0.0000022348, +0.0000022367,0.0000022416,0.0000022471,0.0000022536,0.0000022599, +0.0000022645,0.0000022670,0.0000022682,0.0000022686,0.0000022684, +0.0000022686,0.0000022700,0.0000022719,0.0000022746,0.0000022773, +0.0000022803,0.0000022841,0.0000022888,0.0000022929,0.0000022961, +0.0000022986,0.0000023003,0.0000023008,0.0000023005,0.0000023005, +0.0000023018,0.0000023037,0.0000023061,0.0000023090,0.0000023113, +0.0000023125,0.0000023134,0.0000023150,0.0000023158,0.0000023149, +0.0000023129,0.0000023104,0.0000023069,0.0000023032,0.0000022998, +0.0000022971,0.0000022942,0.0000022887,0.0000022825,0.0000022783, +0.0000022751,0.0000022724,0.0000022721,0.0000022741,0.0000022772, +0.0000022800,0.0000022829,0.0000022872,0.0000022922,0.0000022958, +0.0000022966,0.0000022947,0.0000022909,0.0000022861,0.0000022820, +0.0000022786,0.0000022748,0.0000022717,0.0000022715,0.0000022738, +0.0000022785,0.0000022844,0.0000022870,0.0000022821,0.0000022720, +0.0000022659,0.0000022612,0.0000022472,0.0000022320,0.0000022246, +0.0000022262,0.0000022383,0.0000022433,0.0000022298,0.0000022124, +0.0000022087,0.0000022097,0.0000022100,0.0000022102,0.0000022122, +0.0000022188,0.0000022238,0.0000022224,0.0000022142,0.0000022023, +0.0000021897,0.0000021789,0.0000021709,0.0000021657,0.0000021596, +0.0000021543,0.0000021514,0.0000021507,0.0000021509,0.0000021505, +0.0000021496,0.0000021484,0.0000021475,0.0000021489,0.0000021522, +0.0000021585,0.0000021671,0.0000021774,0.0000021872,0.0000021943, +0.0000021975,0.0000021972,0.0000021947,0.0000021920,0.0000021913, +0.0000021941,0.0000022002,0.0000022081,0.0000022152,0.0000022188, +0.0000022198,0.0000022180,0.0000022139,0.0000022095,0.0000022072, +0.0000022098,0.0000022166,0.0000022239,0.0000022272,0.0000022247, +0.0000022180,0.0000022101,0.0000022012,0.0000021911,0.0000021815, +0.0000021761,0.0000021769,0.0000021802,0.0000021916,0.0000022055, +0.0000022214,0.0000022365,0.0000022496,0.0000022592,0.0000022656, +0.0000022690,0.0000022702,0.0000022690,0.0000022658,0.0000022612, +0.0000022572,0.0000022530,0.0000022492,0.0000022458,0.0000022433, +0.0000022414,0.0000022393,0.0000022387,0.0000022376,0.0000022355, +0.0000022330,0.0000022292,0.0000022234,0.0000022157,0.0000022072, +0.0000021991,0.0000021922,0.0000021868,0.0000021824,0.0000021791, +0.0000021771,0.0000021763,0.0000021758,0.0000021753,0.0000021750, +0.0000021751,0.0000021763,0.0000021787,0.0000021820,0.0000021867, +0.0000021922,0.0000021984,0.0000022049,0.0000022110,0.0000022159, +0.0000022197,0.0000022225,0.0000022244,0.0000022256,0.0000022265, +0.0000022276,0.0000022283,0.0000022285,0.0000022276,0.0000022260, +0.0000022235,0.0000022210,0.0000022181,0.0000022144,0.0000022099, +0.0000022053,0.0000022011,0.0000021971,0.0000021944,0.0000021932, +0.0000021936,0.0000021975,0.0000022054,0.0000022159,0.0000022273, +0.0000022380,0.0000022472,0.0000022549,0.0000022621,0.0000022700, +0.0000022788,0.0000022882,0.0000022973,0.0000023049,0.0000023099, +0.0000023124,0.0000023136,0.0000023152,0.0000023190,0.0000023265, +0.0000023364,0.0000023449,0.0000023490,0.0000023490,0.0000023459, +0.0000023435,0.0000023420,0.0000023426,0.0000023457,0.0000023500, +0.0000023538,0.0000023568,0.0000023586,0.0000023591,0.0000023588, +0.0000023588,0.0000023572,0.0000023548,0.0000023514,0.0000023472, +0.0000023428,0.0000023390,0.0000023361,0.0000023336,0.0000023317, +0.0000023300,0.0000023282,0.0000023264,0.0000023250,0.0000023241, +0.0000023230,0.0000023218,0.0000023205,0.0000023188,0.0000023165, +0.0000023135,0.0000023101,0.0000023067,0.0000023033,0.0000023011, +0.0000022999,0.0000022990,0.0000022990,0.0000022999,0.0000023005, +0.0000023006,0.0000023002,0.0000022994,0.0000022982,0.0000022970, +0.0000022958,0.0000022945,0.0000022935,0.0000022928,0.0000022924, +0.0000022918,0.0000022909,0.0000022897,0.0000022883,0.0000022872, +0.0000022863,0.0000022856,0.0000022843,0.0000022809,0.0000022754, +0.0000022698,0.0000022656,0.0000022627,0.0000022602,0.0000022566, +0.0000022507,0.0000022437,0.0000022380,0.0000022322,0.0000022222, +0.0000022049,0.0000021834,0.0000021630,0.0000021462,0.0000021337, +0.0000021258,0.0000021212,0.0000021179,0.0000021143,0.0000021092, +0.0000021022,0.0000020953,0.0000020906,0.0000020892,0.0000020906, +0.0000020948,0.0000021003,0.0000021059,0.0000021105,0.0000021137, +0.0000021155,0.0000021156,0.0000021149,0.0000021137,0.0000021120, +0.0000021105,0.0000021093,0.0000021079,0.0000021062,0.0000021048, +0.0000021040,0.0000021043,0.0000021042,0.0000021026,0.0000021000, +0.0000020946,0.0000020882,0.0000020802,0.0000020727,0.0000020663, +0.0000020613,0.0000020584,0.0000020573,0.0000020580,0.0000020616, +0.0000020687,0.0000020778,0.0000020859,0.0000020915,0.0000020938, +0.0000020944,0.0000020919,0.0000020877,0.0000020836,0.0000020815, +0.0000020815,0.0000020824,0.0000020833,0.0000020836,0.0000020827, +0.0000020800,0.0000020753,0.0000020693,0.0000020626,0.0000020560, +0.0000020503,0.0000020488,0.0000020509,0.0000020549,0.0000020629, +0.0000020747,0.0000020882,0.0000021026,0.0000021195,0.0000021407, +0.0000021627,0.0000021783,0.0000021867,0.0000021936,0.0000021996, +0.0000022029,0.0000022067,0.0000022145,0.0000022243,0.0000022289, +0.0000022259,0.0000022157,0.0000022063,0.0000022020,0.0000022019, +0.0000022024,0.0000022037,0.0000022081,0.0000022154,0.0000022240, +0.0000022317,0.0000022367,0.0000022393,0.0000022397,0.0000022382, +0.0000022369,0.0000022377,0.0000022414,0.0000022453,0.0000022469, +0.0000022433,0.0000022331,0.0000022214,0.0000022147,0.0000022125, +0.0000022128,0.0000022133,0.0000022179,0.0000022304,0.0000022483, +0.0000022619,0.0000022632,0.0000022608,0.0000022625,0.0000022743, +0.0000022894,0.0000022984,0.0000022995,0.0000022982,0.0000022973, +0.0000022963,0.0000022942,0.0000022914,0.0000022869,0.0000022805, +0.0000022724,0.0000022637,0.0000022547,0.0000022460,0.0000022382, +0.0000022314,0.0000022261,0.0000022224,0.0000022204,0.0000022201, +0.0000022214,0.0000022243,0.0000022291,0.0000022348,0.0000022401, +0.0000022427,0.0000022407,0.0000022344,0.0000022282,0.0000022266, +0.0000022287,0.0000022332,0.0000022353,0.0000022338,0.0000022318, +0.0000022347,0.0000022466,0.0000022558,0.0000022517,0.0000022372, +0.0000022296,0.0000022353,0.0000022485,0.0000022555,0.0000022552, +0.0000022515,0.0000022475,0.0000022457,0.0000022407,0.0000022271, +0.0000022083,0.0000021922,0.0000021812,0.0000021732,0.0000021671, +0.0000021622,0.0000021576,0.0000021534,0.0000021497,0.0000021468, +0.0000021447,0.0000021425,0.0000021397,0.0000021379,0.0000021383, +0.0000021404,0.0000021450,0.0000021523,0.0000021624,0.0000021755, +0.0000021900,0.0000022046,0.0000022181,0.0000022291,0.0000022376, +0.0000022440,0.0000022462,0.0000022447,0.0000022400,0.0000022352, +0.0000022288,0.0000022175,0.0000022018,0.0000021849,0.0000021689, +0.0000021593,0.0000021562,0.0000021681,0.0000021872,0.0000022014, +0.0000022073,0.0000022229,0.0000022461,0.0000022522,0.0000022264, +0.0000021911,0.0000021762,0.0000021711,0.0000021649,0.0000021620, +0.0000021659,0.0000021742,0.0000021826,0.0000021895,0.0000021938, +0.0000021947,0.0000021944,0.0000021949,0.0000021971,0.0000022016, +0.0000022067,0.0000022114,0.0000022140,0.0000022149,0.0000022149, +0.0000022127,0.0000022061,0.0000021972,0.0000021908,0.0000021891, +0.0000021889,0.0000021878,0.0000021889,0.0000021953,0.0000022076, +0.0000022221,0.0000022346,0.0000022454,0.0000022553,0.0000022637, +0.0000022703,0.0000022764,0.0000022827,0.0000022883,0.0000022927, +0.0000022951,0.0000022958,0.0000022948,0.0000022911,0.0000022849, +0.0000022775,0.0000022694,0.0000022580,0.0000022401,0.0000022193, +0.0000022031,0.0000021939,0.0000021878,0.0000021795,0.0000021668, +0.0000021510,0.0000021351,0.0000021221,0.0000021120,0.0000021016, +0.0000020904,0.0000020810,0.0000020746,0.0000020699,0.0000020665, +0.0000020647,0.0000020642,0.0000020646,0.0000020641,0.0000020613, +0.0000020565,0.0000020509,0.0000020457,0.0000020411,0.0000020377, +0.0000020363,0.0000020365,0.0000020395,0.0000020456,0.0000020544, +0.0000020645,0.0000020738,0.0000020810,0.0000020859,0.0000020887, +0.0000020907,0.0000020941,0.0000020997,0.0000021056,0.0000021090, +0.0000021085,0.0000021058,0.0000021016,0.0000020981,0.0000020951, +0.0000020925,0.0000020907,0.0000020917,0.0000020969,0.0000021039, +0.0000021101,0.0000021154,0.0000021215,0.0000021309,0.0000021440, +0.0000021583,0.0000021693,0.0000021745,0.0000021751,0.0000021735, +0.0000021720,0.0000021705,0.0000021661,0.0000021565,0.0000021426, +0.0000021269,0.0000021097,0.0000020930,0.0000020836,0.0000020812, +0.0000020890,0.0000020982,0.0000021044,0.0000021081,0.0000021111, +0.0000021153,0.0000021230,0.0000021358,0.0000021507,0.0000021637, +0.0000021741,0.0000021854,0.0000021999,0.0000022168,0.0000022325, +0.0000022446,0.0000022537,0.0000022610,0.0000022670,0.0000022713, +0.0000022735,0.0000022738,0.0000022731,0.0000022717,0.0000022705, +0.0000022698,0.0000022694,0.0000022690,0.0000022688,0.0000022695, +0.0000022730,0.0000022814,0.0000022947,0.0000023097,0.0000023224, +0.0000023345,0.0000023502,0.0000023691,0.0000023876,0.0000024030, +0.0000024134,0.0000024184,0.0000024198,0.0000024195,0.0000024182, +0.0000024161,0.0000024130,0.0000024090,0.0000024051,0.0000024030, +0.0000024030,0.0000024045,0.0000024062,0.0000024071,0.0000024069, +0.0000024058,0.0000024034,0.0000024001,0.0000023966,0.0000023926, +0.0000023882,0.0000023837,0.0000023788,0.0000023722,0.0000023645, +0.0000023578,0.0000023515,0.0000023422,0.0000023299,0.0000023182, +0.0000023070,0.0000022939,0.0000022786,0.0000022639,0.0000022511, +0.0000022406,0.0000022338,0.0000022293,0.0000022231,0.0000022129, +0.0000022009,0.0000021914,0.0000021864,0.0000021848,0.0000021828, +0.0000021787,0.0000021733,0.0000021675,0.0000021612,0.0000021547, +0.0000021493,0.0000021454,0.0000021425,0.0000021405,0.0000021402, +0.0000021410,0.0000021431,0.0000021454,0.0000021473,0.0000021485, +0.0000021496,0.0000021508,0.0000021518,0.0000021526,0.0000021540, +0.0000021560,0.0000021574,0.0000021571,0.0000021549,0.0000021513, +0.0000021479,0.0000021448,0.0000021422,0.0000021402,0.0000021385, +0.0000021372,0.0000021360,0.0000021347,0.0000021332,0.0000021312, +0.0000021291,0.0000021261,0.0000021234,0.0000021196,0.0000021147, +0.0000021090,0.0000021033,0.0000020991,0.0000020964,0.0000020959, +0.0000020952,0.0000020974,0.0000021040,0.0000021157,0.0000021332, +0.0000021555,0.0000021804,0.0000022051,0.0000022270,0.0000022422, +0.0000022506,0.0000022529,0.0000022503,0.0000022471,0.0000022427, +0.0000022368,0.0000022308,0.0000022250,0.0000022195,0.0000022144, +0.0000022098,0.0000022053,0.0000022003,0.0000021952,0.0000021910, +0.0000021884,0.0000021870,0.0000021861,0.0000021849,0.0000021840, +0.0000021828,0.0000021815,0.0000021805,0.0000021801,0.0000021801, +0.0000021802,0.0000021799,0.0000021788,0.0000021766,0.0000021727, +0.0000021663,0.0000021581,0.0000021491,0.0000021404,0.0000021324, +0.0000021255,0.0000021195,0.0000021141,0.0000021098,0.0000021069, +0.0000021055,0.0000021046,0.0000021034,0.0000021023,0.0000021015, +0.0000021007,0.0000020997,0.0000020982,0.0000020961,0.0000020935, +0.0000020905,0.0000020870,0.0000020831,0.0000020799,0.0000020775, +0.0000020761,0.0000020752,0.0000020749,0.0000020757,0.0000020779, +0.0000020809,0.0000020837,0.0000020859,0.0000020866,0.0000020846, +0.0000020800,0.0000020734,0.0000020675,0.0000020632,0.0000020587, +0.0000020530,0.0000020469,0.0000020428,0.0000020411,0.0000020412, +0.0000020425,0.0000020439,0.0000020456,0.0000020479,0.0000020516, +0.0000020551,0.0000020575,0.0000020589,0.0000020596,0.0000020597, +0.0000020594,0.0000020585,0.0000020567,0.0000020543,0.0000020523, +0.0000020501,0.0000020470,0.0000020427,0.0000020374,0.0000020317, +0.0000020273,0.0000020240,0.0000020224,0.0000020218,0.0000020219, +0.0000020224,0.0000020231,0.0000020242,0.0000020255,0.0000020268, +0.0000020283,0.0000020302,0.0000020318,0.0000020320,0.0000020305, +0.0000020285,0.0000020264,0.0000020234,0.0000020179,0.0000020108, +0.0000020043,0.0000020013,0.0000020006,0.0000020001,0.0000019977, +0.0000019956,0.0000019992,0.0000020121,0.0000020239,0.0000020307, +0.0000020422,0.0000020484,0.0000020425,0.0000020401,0.0000020431, +0.0000020398,0.0000020387,0.0000020466,0.0000020498,0.0000020426, +0.0000020300,0.0000020230,0.0000020225,0.0000020266,0.0000020322, +0.0000020369,0.0000020419,0.0000020452,0.0000020451,0.0000020451, +0.0000020473,0.0000020502,0.0000020518,0.0000020508,0.0000020465, +0.0000020409,0.0000020343,0.0000020275,0.0000020237,0.0000020231, +0.0000020256,0.0000020290,0.0000020313,0.0000020337,0.0000020368, +0.0000020383,0.0000020383,0.0000020410,0.0000020441,0.0000020403, +0.0000020287,0.0000020222,0.0000020239,0.0000020308,0.0000020382, +0.0000020447,0.0000020496,0.0000020519,0.0000020526,0.0000020532, +0.0000020532,0.0000020521,0.0000020505,0.0000020491,0.0000020483, +0.0000020478,0.0000020480,0.0000020489,0.0000020502,0.0000020510, +0.0000020511,0.0000020502,0.0000020486,0.0000020461,0.0000020425, +0.0000020393,0.0000020377,0.0000020374,0.0000020394,0.0000020439, +0.0000020495,0.0000020543,0.0000020574,0.0000020588,0.0000020592, +0.0000020587,0.0000020559,0.0000020511,0.0000020458,0.0000020416, +0.0000020383,0.0000020343,0.0000020303,0.0000020288,0.0000020300, +0.0000020334,0.0000020369,0.0000020395,0.0000020415,0.0000020434, +0.0000020443,0.0000020443,0.0000020440,0.0000020435,0.0000020428, +0.0000020419,0.0000020403,0.0000020383,0.0000020366,0.0000020360, +0.0000020358,0.0000020357,0.0000020357,0.0000020359,0.0000020357, +0.0000020346,0.0000020328,0.0000020310,0.0000020298,0.0000020286, +0.0000020272,0.0000020259,0.0000020246,0.0000020228,0.0000020216, +0.0000020209,0.0000020203,0.0000020194,0.0000020182,0.0000020170, +0.0000020160,0.0000020155,0.0000020152,0.0000020153,0.0000020158, +0.0000020168,0.0000020179,0.0000020193,0.0000020214,0.0000020240, +0.0000020265,0.0000020285,0.0000020303,0.0000020317,0.0000020321, +0.0000020318,0.0000020308,0.0000020296,0.0000020281,0.0000020262, +0.0000020241,0.0000020220,0.0000020202,0.0000020186,0.0000020175, +0.0000020175,0.0000020179,0.0000020186,0.0000020199,0.0000020225, +0.0000020273,0.0000020329,0.0000020363,0.0000020364,0.0000020359, +0.0000020394,0.0000020512,0.0000020663,0.0000020780,0.0000020865, +0.0000020905,0.0000020904,0.0000020865,0.0000020761,0.0000020659, +0.0000020624,0.0000020615,0.0000020628,0.0000020663,0.0000020689, +0.0000020702,0.0000020736,0.0000020828,0.0000021009,0.0000020876, +0.0000021019,0.0000021222,0.0000021430,0.0000021572,0.0000021643, +0.0000021670,0.0000021668,0.0000021653,0.0000021624,0.0000021579, +0.0000021506,0.0000021408,0.0000021296,0.0000021201,0.0000021143, +0.0000021105,0.0000021081,0.0000021062,0.0000021052,0.0000021047, +0.0000021046,0.0000021039,0.0000021019,0.0000020989,0.0000020959, +0.0000020929,0.0000020898,0.0000020867,0.0000020841,0.0000020820, +0.0000020796,0.0000020764,0.0000020730,0.0000020706,0.0000020702, +0.0000020716,0.0000020750,0.0000020799,0.0000020861,0.0000020927, +0.0000020982,0.0000021015,0.0000021023,0.0000021013,0.0000020977, +0.0000020925,0.0000020877,0.0000020843,0.0000020818,0.0000020796, +0.0000020772,0.0000020748,0.0000020734,0.0000020732,0.0000020737, +0.0000020748,0.0000020770,0.0000020803,0.0000020838,0.0000020868, +0.0000020896,0.0000020927,0.0000020959,0.0000020990,0.0000021022, +0.0000021051,0.0000021080,0.0000021114,0.0000021158,0.0000021202, +0.0000021240,0.0000021271,0.0000021297,0.0000021310,0.0000021306, +0.0000021282,0.0000021245,0.0000021210,0.0000021178,0.0000021150, +0.0000021136,0.0000021134,0.0000021133,0.0000021129,0.0000021126, +0.0000021123,0.0000021125,0.0000021126,0.0000021126,0.0000021128, +0.0000021135,0.0000021138,0.0000021135,0.0000021127,0.0000021118, +0.0000021110,0.0000021102,0.0000021093,0.0000021080,0.0000021066, +0.0000021058,0.0000021051,0.0000021039,0.0000021022,0.0000021006, +0.0000020996,0.0000020994,0.0000020995,0.0000020993,0.0000020991, +0.0000020992,0.0000020992,0.0000020986,0.0000020973,0.0000020964, +0.0000020959,0.0000020956,0.0000020958,0.0000020964,0.0000020974, +0.0000020988,0.0000021000,0.0000021007,0.0000021012,0.0000021016, +0.0000021021,0.0000021029,0.0000021040,0.0000021053,0.0000021067, +0.0000021081,0.0000021085,0.0000021082,0.0000021078,0.0000021082, +0.0000021094,0.0000021112,0.0000021129,0.0000021133,0.0000021123, +0.0000021101,0.0000021070,0.0000021037,0.0000021014,0.0000021004, +0.0000021006,0.0000021012,0.0000021017,0.0000021023,0.0000021028, +0.0000021035,0.0000021046,0.0000021062,0.0000021081,0.0000021106, +0.0000021136,0.0000021170,0.0000021204,0.0000021231,0.0000021250, +0.0000021262,0.0000021267,0.0000021269,0.0000021269,0.0000021267, +0.0000021261,0.0000021258,0.0000021258,0.0000021261,0.0000021267, +0.0000021278,0.0000021298,0.0000021328,0.0000021363,0.0000021391, +0.0000021404,0.0000021413,0.0000021433,0.0000021467,0.0000021510, +0.0000021554,0.0000021582,0.0000021582,0.0000021579,0.0000021616, +0.0000021694,0.0000021765,0.0000021786,0.0000021747,0.0000021660, +0.0000021618,0.0000021651,0.0000021653,0.0000021604,0.0000021581, +0.0000021615,0.0000021670,0.0000021736,0.0000021831,0.0000021963, +0.0000022096,0.0000022199,0.0000022263,0.0000022287,0.0000022281, +0.0000022250,0.0000022216,0.0000022194,0.0000022190,0.0000022200, +0.0000022225,0.0000022257,0.0000022286,0.0000022312,0.0000022336, +0.0000022362,0.0000022392,0.0000022427,0.0000022465,0.0000022503, +0.0000022541,0.0000022576,0.0000022611,0.0000022646,0.0000022687, +0.0000022730,0.0000022773,0.0000022816,0.0000022861,0.0000022904, +0.0000022942,0.0000022971,0.0000022989,0.0000023000,0.0000023007, +0.0000023011,0.0000023016,0.0000023021,0.0000023025,0.0000023029, +0.0000023030,0.0000023028,0.0000023023,0.0000023013,0.0000022998, +0.0000022977,0.0000022946,0.0000022909,0.0000022869,0.0000022832, +0.0000022797,0.0000022763,0.0000022733,0.0000022708,0.0000022686, +0.0000022668,0.0000022649,0.0000022627,0.0000022599,0.0000022565, +0.0000022527,0.0000022489,0.0000022458,0.0000022436,0.0000022422, +0.0000022410,0.0000022398,0.0000022384,0.0000022362,0.0000022330, +0.0000022287,0.0000022228,0.0000022156,0.0000022079,0.0000022003, +0.0000021935,0.0000021879,0.0000021833,0.0000021793,0.0000021753, +0.0000021709,0.0000021652,0.0000021585,0.0000021519,0.0000021466, +0.0000021428,0.0000021390,0.0000021343,0.0000021293,0.0000021251, +0.0000021221,0.0000021214,0.0000021227,0.0000021252,0.0000021279, +0.0000021310,0.0000021337,0.0000021353,0.0000021360,0.0000021365, +0.0000021369,0.0000021386,0.0000021413,0.0000021441,0.0000021468, +0.0000021496,0.0000021520,0.0000021533,0.0000021536,0.0000021528, +0.0000021503,0.0000021456,0.0000021398,0.0000021342,0.0000021296, +0.0000021259,0.0000021226,0.0000021185,0.0000021157,0.0000021155, +0.0000021166,0.0000021156,0.0000021116,0.0000021053,0.0000021002, +0.0000020983,0.0000020970,0.0000020948,0.0000020931,0.0000020922, +0.0000020919,0.0000020926,0.0000020952,0.0000020976,0.0000020979, +0.0000020968,0.0000020920,0.0000020823,0.0000020759,0.0000020749, +0.0000020770,0.0000020860,0.0000020977,0.0000021016,0.0000020999, +0.0000020975,0.0000020993,0.0000021079,0.0000021170,0.0000021199, +0.0000021204,0.0000021234,0.0000021303,0.0000021368,0.0000021408, +0.0000021431,0.0000021448,0.0000021462,0.0000021477,0.0000021503, +0.0000021560,0.0000021629,0.0000021725,0.0000021816,0.0000021824, +0.0000021793,0.0000021789,0.0000021796,0.0000021838,0.0000021933, +0.0000021965,0.0000021968,0.0000021996,0.0000021991,0.0000021878, +0.0000021773,0.0000021806,0.0000021927,0.0000021986,0.0000021968, +0.0000021926,0.0000021917,0.0000021901,0.0000021835,0.0000021773, +0.0000021751,0.0000021753,0.0000021765,0.0000021791,0.0000021826, +0.0000021883,0.0000021961,0.0000022038,0.0000022108,0.0000022157, +0.0000022173,0.0000022162,0.0000022133,0.0000022105,0.0000022091, +0.0000022093,0.0000022118,0.0000022163,0.0000022221,0.0000022285, +0.0000022360,0.0000022437,0.0000022509,0.0000022561,0.0000022592, +0.0000022601,0.0000022599,0.0000022603,0.0000022614,0.0000022627, +0.0000022658,0.0000022699,0.0000022740,0.0000022779,0.0000022817, +0.0000022854,0.0000022890,0.0000022923,0.0000022950,0.0000022983, +0.0000023019,0.0000023035,0.0000022997,0.0000022870,0.0000022698, +0.0000022566,0.0000022480,0.0000022415,0.0000022372,0.0000022344, +0.0000022313,0.0000022266,0.0000022156,0.0000022005,0.0000021987, +0.0000022033,0.0000022079,0.0000022158,0.0000022241,0.0000022306, +0.0000022341,0.0000022354,0.0000022357,0.0000022345,0.0000022332, +0.0000022337,0.0000022370,0.0000022419,0.0000022473,0.0000022531, +0.0000022580,0.0000022616,0.0000022640,0.0000022652,0.0000022659, +0.0000022672,0.0000022691,0.0000022712,0.0000022732,0.0000022756, +0.0000022778,0.0000022809,0.0000022852,0.0000022891,0.0000022917, +0.0000022939,0.0000022953,0.0000022960,0.0000022958,0.0000022957, +0.0000022966,0.0000022986,0.0000023015,0.0000023051,0.0000023087, +0.0000023113,0.0000023129,0.0000023147,0.0000023158,0.0000023153, +0.0000023133,0.0000023100,0.0000023057,0.0000023015,0.0000022981, +0.0000022954,0.0000022908,0.0000022839,0.0000022776,0.0000022728, +0.0000022682,0.0000022655,0.0000022662,0.0000022700,0.0000022746, +0.0000022787,0.0000022826,0.0000022877,0.0000022925,0.0000022952, +0.0000022957,0.0000022937,0.0000022900,0.0000022855,0.0000022808, +0.0000022755,0.0000022705,0.0000022682,0.0000022684,0.0000022710, +0.0000022753,0.0000022803,0.0000022817,0.0000022769,0.0000022684, +0.0000022636,0.0000022596,0.0000022472,0.0000022331,0.0000022252, +0.0000022246,0.0000022335,0.0000022441,0.0000022403,0.0000022207, +0.0000022082,0.0000022078,0.0000022087,0.0000022088,0.0000022086, +0.0000022102,0.0000022148,0.0000022191,0.0000022197,0.0000022152, +0.0000022060,0.0000021948,0.0000021839,0.0000021752,0.0000021682, +0.0000021622,0.0000021578,0.0000021561,0.0000021562,0.0000021559, +0.0000021551,0.0000021534,0.0000021512,0.0000021498,0.0000021493, +0.0000021508,0.0000021530,0.0000021583,0.0000021652,0.0000021729, +0.0000021801,0.0000021858,0.0000021891,0.0000021897,0.0000021885, +0.0000021876,0.0000021887,0.0000021929,0.0000021999,0.0000022085, +0.0000022161,0.0000022210,0.0000022220,0.0000022192,0.0000022132, +0.0000022071,0.0000022059,0.0000022088,0.0000022144,0.0000022201, +0.0000022224,0.0000022207,0.0000022187,0.0000022132,0.0000022059, +0.0000021973,0.0000021889,0.0000021824,0.0000021801,0.0000021833, +0.0000021866,0.0000021947,0.0000022053,0.0000022178,0.0000022301, +0.0000022409,0.0000022491,0.0000022543,0.0000022569,0.0000022570, +0.0000022555,0.0000022526,0.0000022491,0.0000022454,0.0000022419, +0.0000022390,0.0000022363,0.0000022332,0.0000022299,0.0000022261, +0.0000022220,0.0000022176,0.0000022129,0.0000022077,0.0000022020, +0.0000021962,0.0000021912,0.0000021858,0.0000021824,0.0000021793, +0.0000021764,0.0000021747,0.0000021743,0.0000021741,0.0000021735, +0.0000021723,0.0000021706,0.0000021702,0.0000021705,0.0000021702, +0.0000021721,0.0000021746,0.0000021780,0.0000021821,0.0000021872, +0.0000021924,0.0000021979,0.0000022029,0.0000022071,0.0000022104, +0.0000022135,0.0000022165,0.0000022188,0.0000022201,0.0000022201, +0.0000022193,0.0000022185,0.0000022174,0.0000022158,0.0000022140, +0.0000022118,0.0000022094,0.0000022073,0.0000022037,0.0000022002, +0.0000021971,0.0000021949,0.0000021939,0.0000021953,0.0000021979, +0.0000022038,0.0000022125,0.0000022229,0.0000022335,0.0000022425, +0.0000022494,0.0000022549,0.0000022613,0.0000022699,0.0000022797, +0.0000022891,0.0000022971,0.0000023029,0.0000023064,0.0000023090, +0.0000023130,0.0000023200,0.0000023292,0.0000023376,0.0000023427, +0.0000023441,0.0000023428,0.0000023408,0.0000023395,0.0000023395, +0.0000023417,0.0000023453,0.0000023494,0.0000023534,0.0000023562, +0.0000023580,0.0000023596,0.0000023615,0.0000023630,0.0000023642, +0.0000023646,0.0000023619,0.0000023586,0.0000023551,0.0000023513, +0.0000023473,0.0000023435,0.0000023399,0.0000023365,0.0000023335, +0.0000023313,0.0000023295,0.0000023276,0.0000023255,0.0000023228, +0.0000023193,0.0000023155,0.0000023115,0.0000023075,0.0000023042, +0.0000023022,0.0000023009,0.0000023001,0.0000023005,0.0000023012, +0.0000023017,0.0000023019,0.0000023017,0.0000023010,0.0000023001, +0.0000022992,0.0000022983,0.0000022974,0.0000022964,0.0000022952, +0.0000022940,0.0000022927,0.0000022910,0.0000022891,0.0000022872, +0.0000022858,0.0000022847,0.0000022830,0.0000022803,0.0000022763, +0.0000022718,0.0000022681,0.0000022650,0.0000022624,0.0000022598, +0.0000022555,0.0000022492,0.0000022429,0.0000022382,0.0000022316, +0.0000022185,0.0000021986,0.0000021772,0.0000021584,0.0000021434, +0.0000021334,0.0000021278,0.0000021248,0.0000021218,0.0000021172, +0.0000021107,0.0000021032,0.0000020973,0.0000020939,0.0000020936, +0.0000020968,0.0000021022,0.0000021080,0.0000021127,0.0000021154, +0.0000021165,0.0000021166,0.0000021162,0.0000021159,0.0000021159, +0.0000021160,0.0000021163,0.0000021165,0.0000021159,0.0000021144, +0.0000021120,0.0000021093,0.0000021071,0.0000021045,0.0000021011, +0.0000020961,0.0000020893,0.0000020806,0.0000020704,0.0000020601, +0.0000020511,0.0000020435,0.0000020382,0.0000020354,0.0000020347, +0.0000020369,0.0000020438,0.0000020551,0.0000020687,0.0000020807, +0.0000020890,0.0000020934,0.0000020945,0.0000020936,0.0000020905, +0.0000020869,0.0000020836,0.0000020816,0.0000020808,0.0000020802, +0.0000020803,0.0000020798,0.0000020775,0.0000020732,0.0000020665, +0.0000020588,0.0000020494,0.0000020427,0.0000020397,0.0000020417, +0.0000020477,0.0000020579,0.0000020714,0.0000020857,0.0000020990, +0.0000021128,0.0000021307,0.0000021517,0.0000021689,0.0000021804, +0.0000021897,0.0000021969,0.0000022013,0.0000022058,0.0000022139, +0.0000022241,0.0000022291,0.0000022264,0.0000022159,0.0000022052, +0.0000022007,0.0000021989,0.0000021987,0.0000021992,0.0000022020, +0.0000022085,0.0000022170,0.0000022244,0.0000022297,0.0000022335, +0.0000022358,0.0000022365,0.0000022370,0.0000022388,0.0000022422, +0.0000022455,0.0000022468,0.0000022450,0.0000022367,0.0000022237, +0.0000022129,0.0000022083,0.0000022071,0.0000022076,0.0000022097, +0.0000022180,0.0000022345,0.0000022516,0.0000022595,0.0000022586, +0.0000022588,0.0000022677,0.0000022826,0.0000022932,0.0000022957, +0.0000022947,0.0000022934,0.0000022925,0.0000022918,0.0000022902, +0.0000022887,0.0000022852,0.0000022803,0.0000022743,0.0000022677, +0.0000022617,0.0000022561,0.0000022510,0.0000022464,0.0000022424, +0.0000022399,0.0000022393,0.0000022400,0.0000022420,0.0000022453, +0.0000022492,0.0000022512,0.0000022482,0.0000022400,0.0000022302, +0.0000022249,0.0000022252,0.0000022294,0.0000022340,0.0000022344, +0.0000022312,0.0000022285,0.0000022331,0.0000022467,0.0000022527, +0.0000022431,0.0000022294,0.0000022304,0.0000022424,0.0000022530, +0.0000022545,0.0000022519,0.0000022478,0.0000022456,0.0000022416, +0.0000022292,0.0000022102,0.0000021929,0.0000021811,0.0000021725, +0.0000021650,0.0000021589,0.0000021546,0.0000021514,0.0000021480, +0.0000021446,0.0000021419,0.0000021404,0.0000021396,0.0000021380, +0.0000021358,0.0000021348,0.0000021354,0.0000021383,0.0000021434, +0.0000021510,0.0000021620,0.0000021756,0.0000021902,0.0000022045, +0.0000022183,0.0000022297,0.0000022378,0.0000022433,0.0000022444, +0.0000022422,0.0000022373,0.0000022322,0.0000022258,0.0000022153, +0.0000022006,0.0000021845,0.0000021682,0.0000021569,0.0000021549, +0.0000021674,0.0000021870,0.0000022010,0.0000022069,0.0000022234, +0.0000022466,0.0000022508,0.0000022197,0.0000021860,0.0000021729, +0.0000021685,0.0000021652,0.0000021659,0.0000021722,0.0000021826, +0.0000021928,0.0000021998,0.0000022025,0.0000022017,0.0000022003, +0.0000022008,0.0000022041,0.0000022087,0.0000022123,0.0000022135, +0.0000022138,0.0000022145,0.0000022149,0.0000022129,0.0000022064, +0.0000021986,0.0000021940,0.0000021930,0.0000021923,0.0000021923, +0.0000021978,0.0000022107,0.0000022274,0.0000022406,0.0000022517, +0.0000022615,0.0000022703,0.0000022773,0.0000022831,0.0000022883, +0.0000022923,0.0000022950,0.0000022961,0.0000022957,0.0000022937, +0.0000022891,0.0000022826,0.0000022757,0.0000022693,0.0000022608, +0.0000022455,0.0000022246,0.0000022060,0.0000021952,0.0000021899, +0.0000021840,0.0000021737,0.0000021593,0.0000021431,0.0000021286, +0.0000021176,0.0000021080,0.0000020979,0.0000020889,0.0000020823, +0.0000020771,0.0000020732,0.0000020710,0.0000020700,0.0000020698, +0.0000020702,0.0000020690,0.0000020654,0.0000020596,0.0000020526, +0.0000020461,0.0000020409,0.0000020372,0.0000020362,0.0000020365, +0.0000020386,0.0000020437,0.0000020522,0.0000020622,0.0000020715, +0.0000020789,0.0000020838,0.0000020861,0.0000020874,0.0000020902, +0.0000020951,0.0000021008,0.0000021052,0.0000021064,0.0000021046, +0.0000021017,0.0000020981,0.0000020945,0.0000020907,0.0000020884, +0.0000020887,0.0000020928,0.0000020993,0.0000021062,0.0000021118, +0.0000021175,0.0000021259,0.0000021381,0.0000021520,0.0000021636, +0.0000021703,0.0000021716,0.0000021697,0.0000021681,0.0000021667, +0.0000021621,0.0000021527,0.0000021388,0.0000021234,0.0000021069, +0.0000020900,0.0000020778,0.0000020759,0.0000020815,0.0000020904, +0.0000020984,0.0000021041,0.0000021085,0.0000021130,0.0000021207, +0.0000021329,0.0000021469,0.0000021587,0.0000021676,0.0000021768, +0.0000021900,0.0000022066,0.0000022226,0.0000022354,0.0000022445, +0.0000022517,0.0000022577,0.0000022626,0.0000022665,0.0000022688, +0.0000022693,0.0000022684,0.0000022666,0.0000022649,0.0000022629, +0.0000022607,0.0000022593,0.0000022594,0.0000022624,0.0000022707, +0.0000022855,0.0000023021,0.0000023156,0.0000023276,0.0000023412, +0.0000023574,0.0000023749,0.0000023911,0.0000024026,0.0000024083, +0.0000024101,0.0000024102,0.0000024097,0.0000024084,0.0000024058, +0.0000024027,0.0000024003,0.0000023991,0.0000023991,0.0000023998, +0.0000024005,0.0000024007,0.0000024003,0.0000023994,0.0000023980, +0.0000023968,0.0000023952,0.0000023922,0.0000023877,0.0000023822, +0.0000023756,0.0000023679,0.0000023604,0.0000023536,0.0000023454, +0.0000023342,0.0000023224,0.0000023118,0.0000023004,0.0000022871, +0.0000022735,0.0000022605,0.0000022485,0.0000022389,0.0000022324, +0.0000022271,0.0000022191,0.0000022071,0.0000021939,0.0000021844, +0.0000021798,0.0000021782,0.0000021763,0.0000021728,0.0000021678, +0.0000021617,0.0000021551,0.0000021490,0.0000021441,0.0000021401, +0.0000021372,0.0000021359,0.0000021365,0.0000021389,0.0000021420, +0.0000021447,0.0000021464,0.0000021472,0.0000021475,0.0000021473, +0.0000021469,0.0000021473,0.0000021489,0.0000021508,0.0000021518, +0.0000021512,0.0000021492,0.0000021468,0.0000021440,0.0000021412, +0.0000021386,0.0000021362,0.0000021341,0.0000021321,0.0000021302, +0.0000021285,0.0000021271,0.0000021257,0.0000021243,0.0000021233, +0.0000021218,0.0000021206,0.0000021179,0.0000021135,0.0000021083, +0.0000021035,0.0000020996,0.0000020962,0.0000020947,0.0000020926, +0.0000020938,0.0000020993,0.0000021091,0.0000021230,0.0000021409, +0.0000021618,0.0000021838,0.0000022043,0.0000022212,0.0000022324, +0.0000022390,0.0000022428,0.0000022404,0.0000022380,0.0000022347, +0.0000022304,0.0000022250,0.0000022195,0.0000022149,0.0000022108, +0.0000022065,0.0000022026,0.0000021998,0.0000021984,0.0000021979, +0.0000021973,0.0000021971,0.0000021967,0.0000021959,0.0000021952, +0.0000021941,0.0000021920,0.0000021888,0.0000021847,0.0000021798, +0.0000021738,0.0000021662,0.0000021572,0.0000021477,0.0000021383, +0.0000021293,0.0000021210,0.0000021135,0.0000021076,0.0000021028, +0.0000020993,0.0000020971,0.0000020961,0.0000020957,0.0000020954, +0.0000020951,0.0000020950,0.0000020948,0.0000020949,0.0000020948, +0.0000020940,0.0000020923,0.0000020900,0.0000020870,0.0000020835, +0.0000020802,0.0000020767,0.0000020735,0.0000020705,0.0000020683, +0.0000020668,0.0000020665,0.0000020681,0.0000020711,0.0000020751, +0.0000020789,0.0000020816,0.0000020818,0.0000020792,0.0000020741, +0.0000020677,0.0000020622,0.0000020581,0.0000020539,0.0000020485, +0.0000020430,0.0000020389,0.0000020374,0.0000020384,0.0000020411, +0.0000020448,0.0000020492,0.0000020539,0.0000020577,0.0000020606, +0.0000020622,0.0000020629,0.0000020628,0.0000020624,0.0000020615, +0.0000020595,0.0000020573,0.0000020553,0.0000020530,0.0000020497, +0.0000020450,0.0000020392,0.0000020324,0.0000020257,0.0000020209, +0.0000020179,0.0000020163,0.0000020155,0.0000020153,0.0000020157, +0.0000020162,0.0000020168,0.0000020173,0.0000020183,0.0000020200, +0.0000020218,0.0000020230,0.0000020229,0.0000020220,0.0000020208, +0.0000020189,0.0000020150,0.0000020085,0.0000020015,0.0000019969, +0.0000019952,0.0000019950,0.0000019934,0.0000019902,0.0000019907, +0.0000020015,0.0000020160,0.0000020254,0.0000020372,0.0000020456, +0.0000020409,0.0000020380,0.0000020409,0.0000020383,0.0000020382, +0.0000020466,0.0000020491,0.0000020405,0.0000020279,0.0000020220, +0.0000020226,0.0000020271,0.0000020319,0.0000020360,0.0000020405, +0.0000020436,0.0000020431,0.0000020413,0.0000020410,0.0000020418, +0.0000020417,0.0000020395,0.0000020356,0.0000020305,0.0000020255, +0.0000020239,0.0000020240,0.0000020258,0.0000020283,0.0000020308, +0.0000020333,0.0000020360,0.0000020382,0.0000020385,0.0000020386, +0.0000020415,0.0000020423,0.0000020345,0.0000020247,0.0000020235, +0.0000020287,0.0000020360,0.0000020421,0.0000020471,0.0000020506, +0.0000020523,0.0000020534,0.0000020537,0.0000020529,0.0000020513, +0.0000020500,0.0000020484,0.0000020459,0.0000020437,0.0000020432, +0.0000020439,0.0000020448,0.0000020452,0.0000020446,0.0000020439, +0.0000020429,0.0000020408,0.0000020387,0.0000020376,0.0000020368, +0.0000020366,0.0000020383,0.0000020418,0.0000020459,0.0000020488, +0.0000020504,0.0000020511,0.0000020507,0.0000020488,0.0000020451, +0.0000020406,0.0000020371,0.0000020351,0.0000020331,0.0000020300, +0.0000020280,0.0000020282,0.0000020311,0.0000020351,0.0000020384, +0.0000020406,0.0000020419,0.0000020423,0.0000020421,0.0000020411, +0.0000020395,0.0000020382,0.0000020370,0.0000020355,0.0000020335, +0.0000020317,0.0000020308,0.0000020308,0.0000020311,0.0000020317, +0.0000020328,0.0000020343,0.0000020353,0.0000020353,0.0000020347, +0.0000020344,0.0000020338,0.0000020328,0.0000020316,0.0000020304, +0.0000020287,0.0000020264,0.0000020244,0.0000020230,0.0000020218, +0.0000020210,0.0000020205,0.0000020203,0.0000020202,0.0000020196, +0.0000020192,0.0000020193,0.0000020198,0.0000020204,0.0000020208, +0.0000020216,0.0000020233,0.0000020261,0.0000020293,0.0000020318, +0.0000020333,0.0000020341,0.0000020341,0.0000020334,0.0000020319, +0.0000020301,0.0000020280,0.0000020255,0.0000020225,0.0000020195, +0.0000020170,0.0000020156,0.0000020157,0.0000020168,0.0000020176, +0.0000020185,0.0000020201,0.0000020224,0.0000020253,0.0000020291, +0.0000020340,0.0000020374,0.0000020374,0.0000020363,0.0000020386, +0.0000020491,0.0000020638,0.0000020755,0.0000020840,0.0000020890, +0.0000020899,0.0000020883,0.0000020812,0.0000020698,0.0000020616, +0.0000020592,0.0000020587,0.0000020609,0.0000020662,0.0000020724, +0.0000020763,0.0000020801,0.0000020823,0.0000020846,0.0000020892, +0.0000021004,0.0000021183,0.0000021381,0.0000021530,0.0000021611, +0.0000021645,0.0000021647,0.0000021640,0.0000021617,0.0000021563, +0.0000021473,0.0000021355,0.0000021234,0.0000021134,0.0000021072, +0.0000021026,0.0000020988,0.0000020966,0.0000020950,0.0000020933, +0.0000020910,0.0000020881,0.0000020849,0.0000020820,0.0000020794, +0.0000020773,0.0000020750,0.0000020726,0.0000020701,0.0000020674, +0.0000020653,0.0000020645,0.0000020653,0.0000020681,0.0000020722, +0.0000020772,0.0000020829,0.0000020890,0.0000020945,0.0000020984, +0.0000021005,0.0000021005,0.0000020980,0.0000020929,0.0000020867, +0.0000020816,0.0000020785,0.0000020764,0.0000020739,0.0000020712, +0.0000020696,0.0000020695,0.0000020702,0.0000020716,0.0000020741, +0.0000020777,0.0000020815,0.0000020847,0.0000020876,0.0000020906, +0.0000020943,0.0000020982,0.0000021021,0.0000021062,0.0000021100, +0.0000021131,0.0000021157,0.0000021184,0.0000021206,0.0000021224, +0.0000021245,0.0000021275,0.0000021301,0.0000021307,0.0000021291, +0.0000021257,0.0000021216,0.0000021173,0.0000021138,0.0000021122, +0.0000021121,0.0000021126,0.0000021136,0.0000021144,0.0000021146, +0.0000021140,0.0000021129,0.0000021124,0.0000021127,0.0000021132, +0.0000021132,0.0000021126,0.0000021115,0.0000021103,0.0000021092, +0.0000021078,0.0000021065,0.0000021056,0.0000021053,0.0000021049, +0.0000021041,0.0000021029,0.0000021019,0.0000021013,0.0000021012, +0.0000021015,0.0000021019,0.0000021019,0.0000021022,0.0000021028, +0.0000021030,0.0000021025,0.0000021016,0.0000021008,0.0000021001, +0.0000020997,0.0000020998,0.0000021006,0.0000021021,0.0000021035, +0.0000021045,0.0000021051,0.0000021054,0.0000021057,0.0000021062, +0.0000021071,0.0000021081,0.0000021092,0.0000021105,0.0000021112, +0.0000021110,0.0000021107,0.0000021111,0.0000021134,0.0000021160, +0.0000021183,0.0000021201,0.0000021206,0.0000021200,0.0000021182, +0.0000021154,0.0000021118,0.0000021089,0.0000021071,0.0000021062, +0.0000021060,0.0000021057,0.0000021054,0.0000021056,0.0000021064, +0.0000021077,0.0000021090,0.0000021104,0.0000021123,0.0000021150, +0.0000021179,0.0000021209,0.0000021233,0.0000021248,0.0000021252, +0.0000021250,0.0000021238,0.0000021225,0.0000021215,0.0000021216, +0.0000021228,0.0000021249,0.0000021270,0.0000021285,0.0000021300, +0.0000021318,0.0000021342,0.0000021367,0.0000021383,0.0000021388, +0.0000021391,0.0000021402,0.0000021423,0.0000021450,0.0000021483, +0.0000021521,0.0000021548,0.0000021555,0.0000021576,0.0000021642, +0.0000021734,0.0000021795,0.0000021793,0.0000021722,0.0000021634, +0.0000021626,0.0000021659,0.0000021641,0.0000021590,0.0000021595, +0.0000021645,0.0000021696,0.0000021745,0.0000021817,0.0000021916, +0.0000022027,0.0000022136,0.0000022222,0.0000022263,0.0000022259, +0.0000022234,0.0000022210,0.0000022198,0.0000022197,0.0000022207, +0.0000022228,0.0000022248,0.0000022262,0.0000022270,0.0000022278, +0.0000022292,0.0000022313,0.0000022339,0.0000022369,0.0000022400, +0.0000022431,0.0000022461,0.0000022496,0.0000022536,0.0000022576, +0.0000022617,0.0000022660,0.0000022705,0.0000022754,0.0000022801, +0.0000022844,0.0000022877,0.0000022900,0.0000022913,0.0000022918, +0.0000022917,0.0000022912,0.0000022905,0.0000022897,0.0000022886, +0.0000022876,0.0000022867,0.0000022858,0.0000022846,0.0000022828, +0.0000022806,0.0000022779,0.0000022749,0.0000022719,0.0000022688, +0.0000022655,0.0000022621,0.0000022587,0.0000022556,0.0000022528, +0.0000022501,0.0000022475,0.0000022446,0.0000022414,0.0000022381, +0.0000022355,0.0000022337,0.0000022327,0.0000022321,0.0000022311, +0.0000022288,0.0000022250,0.0000022200,0.0000022143,0.0000022082, +0.0000022012,0.0000021938,0.0000021872,0.0000021823,0.0000021789, +0.0000021765,0.0000021739,0.0000021702,0.0000021653,0.0000021601, +0.0000021555,0.0000021516,0.0000021485,0.0000021459,0.0000021428, +0.0000021391,0.0000021341,0.0000021285,0.0000021234,0.0000021192, +0.0000021170,0.0000021168,0.0000021176,0.0000021193,0.0000021218, +0.0000021247,0.0000021269,0.0000021280,0.0000021281,0.0000021284, +0.0000021298,0.0000021325,0.0000021356,0.0000021386,0.0000021418, +0.0000021451,0.0000021473,0.0000021483,0.0000021482,0.0000021471, +0.0000021441,0.0000021389,0.0000021333,0.0000021280,0.0000021232, +0.0000021189,0.0000021147,0.0000021128,0.0000021133,0.0000021142, +0.0000021130,0.0000021093,0.0000021034,0.0000020984,0.0000020958, +0.0000020940,0.0000020912,0.0000020883,0.0000020859,0.0000020849, +0.0000020856,0.0000020889,0.0000020923,0.0000020941,0.0000020938, +0.0000020903,0.0000020812,0.0000020743,0.0000020723,0.0000020731, +0.0000020812,0.0000020936,0.0000020977,0.0000020961,0.0000020942, +0.0000020969,0.0000021064,0.0000021151,0.0000021177,0.0000021172, +0.0000021186,0.0000021249,0.0000021313,0.0000021353,0.0000021379, +0.0000021412,0.0000021437,0.0000021457,0.0000021497,0.0000021566, +0.0000021632,0.0000021730,0.0000021803,0.0000021796,0.0000021775, +0.0000021777,0.0000021790,0.0000021872,0.0000021953,0.0000021970, +0.0000021997,0.0000022000,0.0000021901,0.0000021787,0.0000021791, +0.0000021907,0.0000021971,0.0000021948,0.0000021896,0.0000021872, +0.0000021844,0.0000021795,0.0000021759,0.0000021751,0.0000021753, +0.0000021771,0.0000021817,0.0000021864,0.0000021916,0.0000021991, +0.0000022067,0.0000022127,0.0000022173,0.0000022202,0.0000022204, +0.0000022182,0.0000022161,0.0000022152,0.0000022158,0.0000022182, +0.0000022221,0.0000022279,0.0000022340,0.0000022398,0.0000022460, +0.0000022532,0.0000022595,0.0000022640,0.0000022669,0.0000022687, +0.0000022700,0.0000022716,0.0000022732,0.0000022748,0.0000022776, +0.0000022819,0.0000022861,0.0000022890,0.0000022907,0.0000022916, +0.0000022927,0.0000022951,0.0000022993,0.0000023025,0.0000023022, +0.0000022975,0.0000022847,0.0000022688,0.0000022585,0.0000022525, +0.0000022457,0.0000022395,0.0000022366,0.0000022344,0.0000022305, +0.0000022219,0.0000022052,0.0000021969,0.0000022001,0.0000022033, +0.0000022078,0.0000022149,0.0000022223,0.0000022293,0.0000022333, +0.0000022349,0.0000022344,0.0000022323,0.0000022309,0.0000022309, +0.0000022323,0.0000022360,0.0000022409,0.0000022460,0.0000022507, +0.0000022546,0.0000022579,0.0000022596,0.0000022604,0.0000022617, +0.0000022641,0.0000022668,0.0000022694,0.0000022718,0.0000022737, +0.0000022762,0.0000022798,0.0000022834,0.0000022860,0.0000022878, +0.0000022887,0.0000022889,0.0000022889,0.0000022891,0.0000022900, +0.0000022918,0.0000022952,0.0000022991,0.0000023035,0.0000023073, +0.0000023101,0.0000023125,0.0000023139,0.0000023140,0.0000023121, +0.0000023082,0.0000023034,0.0000022996,0.0000022972,0.0000022941, +0.0000022880,0.0000022804,0.0000022738,0.0000022675,0.0000022618, +0.0000022592,0.0000022612,0.0000022664,0.0000022717,0.0000022764, +0.0000022813,0.0000022871,0.0000022915,0.0000022940,0.0000022942, +0.0000022924,0.0000022889,0.0000022848,0.0000022800,0.0000022737, +0.0000022685,0.0000022672,0.0000022676,0.0000022697,0.0000022729, +0.0000022755,0.0000022749,0.0000022703,0.0000022638,0.0000022604, +0.0000022567,0.0000022453,0.0000022324,0.0000022249,0.0000022226, +0.0000022286,0.0000022416,0.0000022447,0.0000022314,0.0000022122, +0.0000022062,0.0000022062,0.0000022066,0.0000022069,0.0000022069, +0.0000022085,0.0000022110,0.0000022131,0.0000022132,0.0000022101, +0.0000022030,0.0000021952,0.0000021872,0.0000021809,0.0000021757, +0.0000021711,0.0000021685,0.0000021680,0.0000021675,0.0000021665, +0.0000021647,0.0000021621,0.0000021594,0.0000021577,0.0000021569, +0.0000021565,0.0000021572,0.0000021591,0.0000021618,0.0000021653, +0.0000021696,0.0000021743,0.0000021783,0.0000021809,0.0000021821, +0.0000021833,0.0000021851,0.0000021881,0.0000021932,0.0000022008, +0.0000022096,0.0000022172,0.0000022217,0.0000022225,0.0000022191, +0.0000022129,0.0000022082,0.0000022068,0.0000022066,0.0000022105, +0.0000022150,0.0000022180,0.0000022185,0.0000022159,0.0000022136, +0.0000022088,0.0000022038,0.0000021984,0.0000021935,0.0000021902, +0.0000021876,0.0000021863,0.0000021872,0.0000021925,0.0000022008, +0.0000022085,0.0000022168,0.0000022241,0.0000022287,0.0000022322, +0.0000022334,0.0000022327,0.0000022305,0.0000022271,0.0000022231, +0.0000022191,0.0000022155,0.0000022119,0.0000022085,0.0000022057, +0.0000022039,0.0000022030,0.0000022023,0.0000022017,0.0000022002, +0.0000021982,0.0000021952,0.0000021917,0.0000021879,0.0000021837, +0.0000021799,0.0000021776,0.0000021769,0.0000021770,0.0000021774, +0.0000021769,0.0000021759,0.0000021749,0.0000021738,0.0000021732, +0.0000021725,0.0000021723,0.0000021722,0.0000021738,0.0000021735, +0.0000021761,0.0000021795,0.0000021838,0.0000021883,0.0000021925, +0.0000021968,0.0000022011,0.0000022043,0.0000022062,0.0000022067, +0.0000022069,0.0000022069,0.0000022065,0.0000022056,0.0000022047, +0.0000022044,0.0000022046,0.0000022050,0.0000022048,0.0000022039, +0.0000022027,0.0000021999,0.0000021975,0.0000021963,0.0000021956, +0.0000021966,0.0000021970,0.0000022007,0.0000022076,0.0000022168, +0.0000022264,0.0000022345,0.0000022409,0.0000022473,0.0000022542, +0.0000022621,0.0000022713,0.0000022806,0.0000022889,0.0000022957, +0.0000023017,0.0000023080,0.0000023149,0.0000023221,0.0000023286, +0.0000023336,0.0000023362,0.0000023365,0.0000023358,0.0000023355, +0.0000023363,0.0000023380,0.0000023405,0.0000023439,0.0000023472, +0.0000023502,0.0000023531,0.0000023565,0.0000023602,0.0000023638, +0.0000023666,0.0000023677,0.0000023676,0.0000023674,0.0000023673, +0.0000023646,0.0000023612,0.0000023576,0.0000023540,0.0000023504, +0.0000023470,0.0000023442,0.0000023420,0.0000023397,0.0000023367, +0.0000023332,0.0000023292,0.0000023249,0.0000023209,0.0000023175, +0.0000023149,0.0000023129,0.0000023115,0.0000023112,0.0000023115, +0.0000023116,0.0000023112,0.0000023106,0.0000023096,0.0000023081, +0.0000023063,0.0000023044,0.0000023026,0.0000023007,0.0000022987, +0.0000022966,0.0000022946,0.0000022927,0.0000022906,0.0000022885, +0.0000022859,0.0000022835,0.0000022805,0.0000022768,0.0000022725, +0.0000022687,0.0000022657,0.0000022630,0.0000022602,0.0000022569, +0.0000022524,0.0000022471,0.0000022426,0.0000022382,0.0000022294, +0.0000022128,0.0000021912,0.0000021707,0.0000021538,0.0000021415, +0.0000021341,0.0000021310,0.0000021290,0.0000021257,0.0000021196, +0.0000021117,0.0000021044,0.0000020999,0.0000020981,0.0000020991, +0.0000021031,0.0000021090,0.0000021143,0.0000021177,0.0000021187, +0.0000021182,0.0000021170,0.0000021162,0.0000021159,0.0000021168, +0.0000021182,0.0000021199,0.0000021208,0.0000021200,0.0000021177, +0.0000021148,0.0000021110,0.0000021068,0.0000021015,0.0000020954, +0.0000020883,0.0000020801,0.0000020706,0.0000020603,0.0000020499, +0.0000020407,0.0000020324,0.0000020255,0.0000020208,0.0000020180, +0.0000020173,0.0000020198,0.0000020269,0.0000020395,0.0000020553, +0.0000020708,0.0000020830,0.0000020904,0.0000020931,0.0000020928, +0.0000020915,0.0000020889,0.0000020856,0.0000020822,0.0000020799, +0.0000020795,0.0000020795,0.0000020796,0.0000020782,0.0000020748, +0.0000020686,0.0000020596,0.0000020490,0.0000020397,0.0000020357, +0.0000020357,0.0000020424,0.0000020540,0.0000020685,0.0000020828, +0.0000020953,0.0000021067,0.0000021215,0.0000021403,0.0000021586, +0.0000021736,0.0000021855,0.0000021942,0.0000021999,0.0000022050, +0.0000022127,0.0000022223,0.0000022286,0.0000022265,0.0000022177, +0.0000022062,0.0000021989,0.0000021966,0.0000021960,0.0000021955, +0.0000021970,0.0000022019,0.0000022082,0.0000022140,0.0000022192, +0.0000022243,0.0000022284,0.0000022313,0.0000022341,0.0000022381, +0.0000022422,0.0000022449,0.0000022464,0.0000022458,0.0000022396, +0.0000022278,0.0000022142,0.0000022053,0.0000022016,0.0000022019, +0.0000022030,0.0000022075,0.0000022197,0.0000022372,0.0000022508, +0.0000022549,0.0000022553,0.0000022607,0.0000022734,0.0000022856, +0.0000022911,0.0000022911,0.0000022892,0.0000022881,0.0000022878, +0.0000022878,0.0000022872,0.0000022854,0.0000022830,0.0000022787, +0.0000022734,0.0000022682,0.0000022637,0.0000022599,0.0000022564, +0.0000022534,0.0000022517,0.0000022516,0.0000022527,0.0000022549, +0.0000022581,0.0000022599,0.0000022566,0.0000022469,0.0000022341, +0.0000022249,0.0000022228,0.0000022250,0.0000022304,0.0000022333, +0.0000022318,0.0000022262,0.0000022248,0.0000022349,0.0000022471, +0.0000022444,0.0000022310,0.0000022274,0.0000022375,0.0000022496, +0.0000022527,0.0000022513,0.0000022473,0.0000022447,0.0000022414, +0.0000022298,0.0000022106,0.0000021928,0.0000021805,0.0000021715, +0.0000021636,0.0000021567,0.0000021512,0.0000021472,0.0000021448, +0.0000021428,0.0000021406,0.0000021384,0.0000021367,0.0000021359, +0.0000021352,0.0000021340,0.0000021329,0.0000021328,0.0000021342, +0.0000021377,0.0000021434,0.0000021516,0.0000021632,0.0000021766, +0.0000021904,0.0000022048,0.0000022190,0.0000022302,0.0000022377, +0.0000022422,0.0000022422,0.0000022388,0.0000022338,0.0000022292, +0.0000022234,0.0000022137,0.0000022000,0.0000021841,0.0000021675, +0.0000021560,0.0000021546,0.0000021674,0.0000021860,0.0000021994, +0.0000022076,0.0000022271,0.0000022474,0.0000022464,0.0000022130, +0.0000021811,0.0000021703,0.0000021689,0.0000021682,0.0000021707, +0.0000021788,0.0000021906,0.0000022019,0.0000022078,0.0000022092, +0.0000022070,0.0000022054,0.0000022069,0.0000022105,0.0000022133, +0.0000022137,0.0000022135,0.0000022143,0.0000022162,0.0000022175, +0.0000022156,0.0000022092,0.0000022024,0.0000021987,0.0000021976, +0.0000021975,0.0000022003,0.0000022098,0.0000022257,0.0000022415, +0.0000022532,0.0000022629,0.0000022723,0.0000022801,0.0000022859, +0.0000022909,0.0000022944,0.0000022961,0.0000022962,0.0000022948, +0.0000022912,0.0000022858,0.0000022793,0.0000022729,0.0000022676, +0.0000022619,0.0000022499,0.0000022302,0.0000022096,0.0000021963, +0.0000021908,0.0000021867,0.0000021790,0.0000021667,0.0000021510, +0.0000021354,0.0000021227,0.0000021129,0.0000021039,0.0000020958, +0.0000020895,0.0000020845,0.0000020807,0.0000020781,0.0000020764, +0.0000020754,0.0000020754,0.0000020752,0.0000020734,0.0000020691, +0.0000020620,0.0000020541,0.0000020466,0.0000020404,0.0000020375, +0.0000020365,0.0000020367,0.0000020381,0.0000020427,0.0000020501, +0.0000020592,0.0000020680,0.0000020755,0.0000020805,0.0000020830, +0.0000020846,0.0000020870,0.0000020910,0.0000020961,0.0000021008, +0.0000021035,0.0000021026,0.0000021004,0.0000020972,0.0000020931, +0.0000020890,0.0000020863,0.0000020852,0.0000020881,0.0000020946, +0.0000021014,0.0000021072,0.0000021128,0.0000021205,0.0000021319, +0.0000021451,0.0000021570,0.0000021643,0.0000021662,0.0000021648, +0.0000021629,0.0000021611,0.0000021572,0.0000021475,0.0000021339, +0.0000021195,0.0000021037,0.0000020867,0.0000020737,0.0000020705, +0.0000020741,0.0000020831,0.0000020920,0.0000020996,0.0000021053, +0.0000021106,0.0000021184,0.0000021302,0.0000021430,0.0000021537, +0.0000021616,0.0000021697,0.0000021815,0.0000021971,0.0000022134, +0.0000022269,0.0000022364,0.0000022432,0.0000022484,0.0000022532, +0.0000022579,0.0000022618,0.0000022639,0.0000022636,0.0000022619, +0.0000022597,0.0000022565,0.0000022530,0.0000022505,0.0000022498, +0.0000022519,0.0000022606,0.0000022767,0.0000022949,0.0000023097, +0.0000023214,0.0000023322,0.0000023454,0.0000023621,0.0000023788, +0.0000023909,0.0000023968,0.0000023992,0.0000024004,0.0000024012, +0.0000024012,0.0000024004,0.0000023990,0.0000023978,0.0000023970, +0.0000023968,0.0000023969,0.0000023972,0.0000023974,0.0000023972, +0.0000023967,0.0000023966,0.0000023961,0.0000023943,0.0000023904, +0.0000023842,0.0000023771,0.0000023700,0.0000023630,0.0000023560, +0.0000023477,0.0000023372,0.0000023260,0.0000023156,0.0000023052, +0.0000022931,0.0000022803,0.0000022679,0.0000022559,0.0000022449, +0.0000022363,0.0000022298,0.0000022228,0.0000022127,0.0000021994, +0.0000021865,0.0000021781,0.0000021744,0.0000021732,0.0000021714, +0.0000021674,0.0000021620,0.0000021562,0.0000021503,0.0000021447, +0.0000021401,0.0000021367,0.0000021345,0.0000021341,0.0000021354, +0.0000021380,0.0000021410,0.0000021435,0.0000021450,0.0000021453, +0.0000021449,0.0000021438,0.0000021429,0.0000021431,0.0000021441, +0.0000021451,0.0000021453,0.0000021445,0.0000021434,0.0000021418, +0.0000021399,0.0000021377,0.0000021354,0.0000021333,0.0000021314, +0.0000021290,0.0000021263,0.0000021237,0.0000021217,0.0000021203, +0.0000021195,0.0000021193,0.0000021196,0.0000021194,0.0000021187, +0.0000021161,0.0000021125,0.0000021083,0.0000021038,0.0000020991, +0.0000020943,0.0000020917,0.0000020895,0.0000020905,0.0000020943, +0.0000021011,0.0000021111,0.0000021246,0.0000021410,0.0000021585, +0.0000021755,0.0000021911,0.0000022046,0.0000022153,0.0000022225, +0.0000022266,0.0000022285,0.0000022273,0.0000022226,0.0000022182, +0.0000022145,0.0000022116,0.0000022094,0.0000022076,0.0000022067, +0.0000022065,0.0000022066,0.0000022066,0.0000022065,0.0000022052, +0.0000022031,0.0000021999,0.0000021954,0.0000021897,0.0000021817, +0.0000021723,0.0000021622,0.0000021519,0.0000021420,0.0000021325, +0.0000021238,0.0000021159,0.0000021090,0.0000021031,0.0000020985, +0.0000020949,0.0000020923,0.0000020909,0.0000020905,0.0000020906, +0.0000020908,0.0000020909,0.0000020910,0.0000020911,0.0000020912, +0.0000020917,0.0000020922,0.0000020921,0.0000020908,0.0000020886, +0.0000020856,0.0000020828,0.0000020796,0.0000020756,0.0000020715, +0.0000020677,0.0000020642,0.0000020613,0.0000020591,0.0000020593, +0.0000020616,0.0000020659,0.0000020706,0.0000020741,0.0000020757, +0.0000020756,0.0000020728,0.0000020677,0.0000020618,0.0000020572, +0.0000020540,0.0000020503,0.0000020448,0.0000020391,0.0000020353, +0.0000020350,0.0000020375,0.0000020420,0.0000020479,0.0000020539, +0.0000020588,0.0000020622,0.0000020644,0.0000020660,0.0000020663, +0.0000020660,0.0000020647,0.0000020625,0.0000020603,0.0000020582, +0.0000020558,0.0000020527,0.0000020487,0.0000020433,0.0000020355, +0.0000020268,0.0000020197,0.0000020150,0.0000020115,0.0000020097, +0.0000020090,0.0000020088,0.0000020090,0.0000020091,0.0000020092, +0.0000020097,0.0000020103,0.0000020113,0.0000020128,0.0000020143, +0.0000020152,0.0000020150,0.0000020138,0.0000020113,0.0000020064, +0.0000019998,0.0000019942,0.0000019907,0.0000019899,0.0000019891, +0.0000019858,0.0000019835,0.0000019920,0.0000020081,0.0000020201, +0.0000020328,0.0000020428,0.0000020388,0.0000020358,0.0000020388, +0.0000020371,0.0000020380,0.0000020470,0.0000020492,0.0000020388, +0.0000020265,0.0000020219,0.0000020232,0.0000020274,0.0000020314, +0.0000020348,0.0000020389,0.0000020414,0.0000020405,0.0000020382, +0.0000020372,0.0000020369,0.0000020358,0.0000020333,0.0000020295, +0.0000020256,0.0000020242,0.0000020246,0.0000020260,0.0000020280, +0.0000020304,0.0000020331,0.0000020354,0.0000020374,0.0000020387, +0.0000020383,0.0000020386,0.0000020407,0.0000020382,0.0000020289, +0.0000020239,0.0000020268,0.0000020336,0.0000020398,0.0000020445, +0.0000020486,0.0000020516,0.0000020535,0.0000020547,0.0000020544, +0.0000020526,0.0000020508,0.0000020487,0.0000020448,0.0000020401, +0.0000020373,0.0000020374,0.0000020383,0.0000020389,0.0000020386, +0.0000020374,0.0000020365,0.0000020356,0.0000020348,0.0000020350, +0.0000020354,0.0000020353,0.0000020356,0.0000020366,0.0000020383, +0.0000020398,0.0000020408,0.0000020413,0.0000020412,0.0000020404, +0.0000020381,0.0000020346,0.0000020315,0.0000020302,0.0000020302, +0.0000020295,0.0000020275,0.0000020267,0.0000020278,0.0000020312, +0.0000020352,0.0000020384,0.0000020398,0.0000020400,0.0000020395, +0.0000020385,0.0000020369,0.0000020349,0.0000020328,0.0000020307, +0.0000020283,0.0000020263,0.0000020256,0.0000020258,0.0000020264, +0.0000020272,0.0000020285,0.0000020303,0.0000020322,0.0000020334, +0.0000020339,0.0000020344,0.0000020349,0.0000020349,0.0000020342, +0.0000020331,0.0000020317,0.0000020299,0.0000020280,0.0000020259, +0.0000020240,0.0000020218,0.0000020202,0.0000020197,0.0000020198, +0.0000020201,0.0000020204,0.0000020206,0.0000020208,0.0000020214, +0.0000020220,0.0000020225,0.0000020229,0.0000020236,0.0000020253, +0.0000020279,0.0000020309,0.0000020334,0.0000020345,0.0000020345, +0.0000020336,0.0000020318,0.0000020295,0.0000020270,0.0000020243, +0.0000020214,0.0000020182,0.0000020155,0.0000020140,0.0000020142, +0.0000020152,0.0000020162,0.0000020175,0.0000020195,0.0000020219, +0.0000020246,0.0000020271,0.0000020301,0.0000020340,0.0000020371, +0.0000020374,0.0000020364,0.0000020379,0.0000020470,0.0000020612, +0.0000020728,0.0000020815,0.0000020875,0.0000020891,0.0000020887, +0.0000020847,0.0000020748,0.0000020632,0.0000020571,0.0000020554, +0.0000020572,0.0000020634,0.0000020716,0.0000020783,0.0000020776, +0.0000020837,0.0000020861,0.0000020867,0.0000020896,0.0000020987, +0.0000021149,0.0000021337,0.0000021482,0.0000021568,0.0000021614, +0.0000021627,0.0000021624,0.0000021596,0.0000021525,0.0000021414, +0.0000021283,0.0000021163,0.0000021070,0.0000021005,0.0000020968, +0.0000020947,0.0000020928,0.0000020906,0.0000020876,0.0000020837, +0.0000020791,0.0000020750,0.0000020712,0.0000020679,0.0000020649, +0.0000020624,0.0000020607,0.0000020601,0.0000020605,0.0000020619, +0.0000020646,0.0000020686,0.0000020735,0.0000020791,0.0000020851, +0.0000020911,0.0000020959,0.0000020988,0.0000020993,0.0000020980, +0.0000020941,0.0000020881,0.0000020819,0.0000020774,0.0000020745, +0.0000020720,0.0000020694,0.0000020679,0.0000020679,0.0000020689, +0.0000020705,0.0000020731,0.0000020765,0.0000020801,0.0000020830, +0.0000020852,0.0000020877,0.0000020911,0.0000020956,0.0000021006, +0.0000021057,0.0000021108,0.0000021151,0.0000021178,0.0000021190, +0.0000021195,0.0000021196,0.0000021199,0.0000021213,0.0000021244, +0.0000021279,0.0000021297,0.0000021293,0.0000021267,0.0000021224, +0.0000021179,0.0000021142,0.0000021121,0.0000021117,0.0000021125, +0.0000021140,0.0000021155,0.0000021161,0.0000021154,0.0000021143, +0.0000021140,0.0000021141,0.0000021141,0.0000021136,0.0000021124, +0.0000021108,0.0000021095,0.0000021080,0.0000021065,0.0000021053, +0.0000021047,0.0000021041,0.0000021030,0.0000021016,0.0000021005, +0.0000021001,0.0000021000,0.0000021005,0.0000021013,0.0000021020, +0.0000021027,0.0000021035,0.0000021042,0.0000021041,0.0000021031, +0.0000021017,0.0000021004,0.0000020992,0.0000020983,0.0000020984, +0.0000020991,0.0000021002,0.0000021011,0.0000021014,0.0000021016, +0.0000021018,0.0000021020,0.0000021023,0.0000021030,0.0000021041, +0.0000021053,0.0000021063,0.0000021068,0.0000021076,0.0000021092, +0.0000021119,0.0000021149,0.0000021180,0.0000021209,0.0000021234, +0.0000021248,0.0000021255,0.0000021247,0.0000021224,0.0000021192, +0.0000021161,0.0000021136,0.0000021118,0.0000021105,0.0000021093, +0.0000021086,0.0000021090,0.0000021102,0.0000021116,0.0000021126, +0.0000021135,0.0000021149,0.0000021170,0.0000021195,0.0000021221, +0.0000021243,0.0000021255,0.0000021256,0.0000021244,0.0000021219, +0.0000021192,0.0000021170,0.0000021167,0.0000021187,0.0000021222, +0.0000021258,0.0000021288,0.0000021312,0.0000021333,0.0000021354, +0.0000021371,0.0000021381,0.0000021385,0.0000021387,0.0000021390, +0.0000021398,0.0000021412,0.0000021426,0.0000021451,0.0000021494, +0.0000021536,0.0000021563,0.0000021606,0.0000021691,0.0000021776, +0.0000021805,0.0000021779,0.0000021690,0.0000021622,0.0000021632, +0.0000021657,0.0000021626,0.0000021597,0.0000021622,0.0000021677, +0.0000021718,0.0000021751,0.0000021798,0.0000021868,0.0000021963, +0.0000022069,0.0000022156,0.0000022199,0.0000022205,0.0000022201, +0.0000022196,0.0000022197,0.0000022204,0.0000022220,0.0000022237, +0.0000022248,0.0000022250,0.0000022250,0.0000022250,0.0000022254, +0.0000022266,0.0000022284,0.0000022306,0.0000022329,0.0000022354, +0.0000022383,0.0000022419,0.0000022456,0.0000022492,0.0000022529, +0.0000022569,0.0000022613,0.0000022657,0.0000022699,0.0000022734, +0.0000022762,0.0000022783,0.0000022797,0.0000022803,0.0000022802, +0.0000022796,0.0000022786,0.0000022770,0.0000022751,0.0000022734, +0.0000022718,0.0000022698,0.0000022673,0.0000022646,0.0000022616, +0.0000022584,0.0000022552,0.0000022519,0.0000022481,0.0000022442, +0.0000022406,0.0000022376,0.0000022351,0.0000022334,0.0000022322, +0.0000022312,0.0000022299,0.0000022287,0.0000022278,0.0000022269, +0.0000022258,0.0000022240,0.0000022211,0.0000022166,0.0000022108, +0.0000022042,0.0000021973,0.0000021902,0.0000021828,0.0000021762, +0.0000021716,0.0000021693,0.0000021678,0.0000021661,0.0000021637, +0.0000021601,0.0000021551,0.0000021502,0.0000021471,0.0000021462, +0.0000021459,0.0000021451,0.0000021428,0.0000021395,0.0000021348, +0.0000021292,0.0000021239,0.0000021198,0.0000021168,0.0000021148, +0.0000021135,0.0000021134,0.0000021143,0.0000021168,0.0000021195, +0.0000021209,0.0000021215,0.0000021223,0.0000021239,0.0000021267, +0.0000021300,0.0000021329,0.0000021355,0.0000021384,0.0000021409, +0.0000021425,0.0000021433,0.0000021433,0.0000021416,0.0000021373, +0.0000021316,0.0000021256,0.0000021203,0.0000021158,0.0000021125, +0.0000021114,0.0000021121,0.0000021126,0.0000021117,0.0000021089, +0.0000021037,0.0000020985,0.0000020954,0.0000020928,0.0000020897, +0.0000020863,0.0000020825,0.0000020798,0.0000020801,0.0000020838, +0.0000020888,0.0000020913,0.0000020913,0.0000020890,0.0000020807, +0.0000020726,0.0000020698,0.0000020694,0.0000020767,0.0000020900, +0.0000020940,0.0000020922,0.0000020906,0.0000020941,0.0000021039, +0.0000021125,0.0000021147,0.0000021130,0.0000021127,0.0000021182, +0.0000021256,0.0000021301,0.0000021335,0.0000021374,0.0000021400, +0.0000021429,0.0000021493,0.0000021556,0.0000021617,0.0000021717, +0.0000021776,0.0000021761,0.0000021749,0.0000021753,0.0000021801, +0.0000021910,0.0000021962,0.0000022002,0.0000022016,0.0000021941, +0.0000021816,0.0000021801,0.0000021903,0.0000021974,0.0000021952, +0.0000021880,0.0000021838,0.0000021794,0.0000021753,0.0000021746, +0.0000021756,0.0000021761,0.0000021795,0.0000021850,0.0000021907, +0.0000021971,0.0000022038,0.0000022089,0.0000022119,0.0000022141, +0.0000022172,0.0000022194,0.0000022197,0.0000022188,0.0000022187, +0.0000022194,0.0000022216,0.0000022255,0.0000022310,0.0000022379, +0.0000022448,0.0000022508,0.0000022568,0.0000022634,0.0000022695, +0.0000022740,0.0000022768,0.0000022785,0.0000022799,0.0000022815, +0.0000022838,0.0000022864,0.0000022888,0.0000022911,0.0000022921, +0.0000022918,0.0000022919,0.0000022928,0.0000022958,0.0000023001, +0.0000023034,0.0000023027,0.0000022943,0.0000022799,0.0000022656, +0.0000022581,0.0000022548,0.0000022490,0.0000022416,0.0000022372, +0.0000022354,0.0000022327,0.0000022275,0.0000022145,0.0000022006, +0.0000021995,0.0000022029,0.0000022042,0.0000022068,0.0000022122, +0.0000022192,0.0000022270,0.0000022314,0.0000022331,0.0000022319, +0.0000022297,0.0000022285,0.0000022284,0.0000022288,0.0000022309, +0.0000022347,0.0000022393,0.0000022437,0.0000022475,0.0000022509, +0.0000022527,0.0000022531,0.0000022536,0.0000022555,0.0000022586, +0.0000022619,0.0000022647,0.0000022669,0.0000022693,0.0000022721, +0.0000022750,0.0000022773,0.0000022797,0.0000022808,0.0000022808, +0.0000022807,0.0000022810,0.0000022820,0.0000022841,0.0000022876, +0.0000022917,0.0000022962,0.0000023009,0.0000023048,0.0000023079, +0.0000023098,0.0000023100,0.0000023082,0.0000023041,0.0000023002, +0.0000022973,0.0000022952,0.0000022911,0.0000022844,0.0000022778, +0.0000022710,0.0000022629,0.0000022567,0.0000022550,0.0000022581, +0.0000022634,0.0000022689,0.0000022741,0.0000022795,0.0000022853, +0.0000022897,0.0000022917,0.0000022921,0.0000022908,0.0000022879, +0.0000022842,0.0000022794,0.0000022737,0.0000022693,0.0000022682, +0.0000022690,0.0000022700,0.0000022709,0.0000022707,0.0000022678, +0.0000022626,0.0000022584,0.0000022564,0.0000022522,0.0000022416, +0.0000022303,0.0000022234,0.0000022206,0.0000022239,0.0000022362, +0.0000022446,0.0000022400,0.0000022211,0.0000022068,0.0000022039, +0.0000022039,0.0000022042,0.0000022047,0.0000022056,0.0000022071, +0.0000022076,0.0000022071,0.0000022055,0.0000022021,0.0000021964, +0.0000021903,0.0000021854,0.0000021815,0.0000021780,0.0000021755, +0.0000021747,0.0000021744,0.0000021733,0.0000021713,0.0000021686, +0.0000021653,0.0000021626,0.0000021615,0.0000021609,0.0000021610, +0.0000021616,0.0000021623,0.0000021631,0.0000021642,0.0000021662, +0.0000021687,0.0000021710,0.0000021724,0.0000021738,0.0000021767, +0.0000021803,0.0000021844,0.0000021893,0.0000021950,0.0000022022, +0.0000022101,0.0000022170,0.0000022217,0.0000022229,0.0000022203, +0.0000022155,0.0000022097,0.0000022049,0.0000022037,0.0000022062, +0.0000022092,0.0000022118,0.0000022129,0.0000022120,0.0000022102, +0.0000022074,0.0000022074,0.0000022057,0.0000022030,0.0000022000, +0.0000021958,0.0000021920,0.0000021910,0.0000021907,0.0000021914, +0.0000021942,0.0000021974,0.0000022014,0.0000022037,0.0000022053, +0.0000022058,0.0000022049,0.0000022028,0.0000022008,0.0000021990, +0.0000021970,0.0000021964,0.0000021973,0.0000021987,0.0000022007, +0.0000022032,0.0000022054,0.0000022065,0.0000022059,0.0000022044, +0.0000022015,0.0000021967,0.0000021899,0.0000021847,0.0000021794, +0.0000021759,0.0000021743,0.0000021746,0.0000021758,0.0000021768, +0.0000021785,0.0000021786,0.0000021799,0.0000021801,0.0000021798, +0.0000021791,0.0000021783,0.0000021767,0.0000021751,0.0000021746, +0.0000021747,0.0000021773,0.0000021795,0.0000021825,0.0000021863, +0.0000021898,0.0000021923,0.0000021938,0.0000021940,0.0000021937, +0.0000021934,0.0000021930,0.0000021921,0.0000021909,0.0000021903, +0.0000021909,0.0000021928,0.0000021957,0.0000021985,0.0000022006, +0.0000022011,0.0000022003,0.0000021999,0.0000021985,0.0000021972, +0.0000021963,0.0000021957,0.0000021945,0.0000021956,0.0000022002, +0.0000022078,0.0000022173,0.0000022270,0.0000022351,0.0000022415, +0.0000022477,0.0000022546,0.0000022624,0.0000022711,0.0000022805, +0.0000022902,0.0000022995,0.0000023077,0.0000023145,0.0000023201, +0.0000023244,0.0000023269,0.0000023279,0.0000023284,0.0000023293, +0.0000023308,0.0000023330,0.0000023355,0.0000023379,0.0000023400, +0.0000023425,0.0000023454,0.0000023489,0.0000023532,0.0000023575, +0.0000023612,0.0000023639,0.0000023658,0.0000023671,0.0000023674, +0.0000023667,0.0000023652,0.0000023638,0.0000023619,0.0000023599, +0.0000023575,0.0000023550,0.0000023526,0.0000023501,0.0000023472, +0.0000023440,0.0000023406,0.0000023372,0.0000023341,0.0000023312, +0.0000023286,0.0000023263,0.0000023248,0.0000023242,0.0000023234, +0.0000023222,0.0000023206,0.0000023188,0.0000023167,0.0000023140, +0.0000023108,0.0000023075,0.0000023044,0.0000023014,0.0000022987, +0.0000022961,0.0000022933,0.0000022907,0.0000022879,0.0000022843, +0.0000022803,0.0000022765,0.0000022725,0.0000022685,0.0000022650, +0.0000022619,0.0000022589,0.0000022555,0.0000022516,0.0000022477, +0.0000022445,0.0000022418,0.0000022367,0.0000022247,0.0000022055, +0.0000021838,0.0000021649,0.0000021508,0.0000021420,0.0000021374, +0.0000021358,0.0000021341,0.0000021296,0.0000021214,0.0000021124, +0.0000021061,0.0000021037,0.0000021039,0.0000021064,0.0000021107, +0.0000021160,0.0000021203,0.0000021223,0.0000021220,0.0000021206, +0.0000021188,0.0000021174,0.0000021166,0.0000021166,0.0000021178, +0.0000021193,0.0000021195,0.0000021182,0.0000021154,0.0000021114, +0.0000021064,0.0000021008,0.0000020945,0.0000020877,0.0000020802, +0.0000020723,0.0000020639,0.0000020549,0.0000020462,0.0000020376, +0.0000020297,0.0000020223,0.0000020159,0.0000020117,0.0000020092, +0.0000020086,0.0000020099,0.0000020151,0.0000020254,0.0000020403, +0.0000020578,0.0000020740,0.0000020851,0.0000020902,0.0000020913, +0.0000020906,0.0000020890,0.0000020861,0.0000020825,0.0000020801, +0.0000020793,0.0000020799,0.0000020805,0.0000020800,0.0000020775, +0.0000020725,0.0000020645,0.0000020537,0.0000020426,0.0000020349, +0.0000020338,0.0000020387,0.0000020500,0.0000020644,0.0000020789, +0.0000020912,0.0000021016,0.0000021136,0.0000021293,0.0000021477, +0.0000021657,0.0000021805,0.0000021909,0.0000021983,0.0000022039, +0.0000022107,0.0000022194,0.0000022261,0.0000022278,0.0000022205, +0.0000022091,0.0000021991,0.0000021952,0.0000021935,0.0000021933, +0.0000021944,0.0000021972,0.0000022006,0.0000022043,0.0000022090, +0.0000022144,0.0000022192,0.0000022233,0.0000022281,0.0000022339, +0.0000022393,0.0000022429,0.0000022451,0.0000022448,0.0000022422, +0.0000022322,0.0000022173,0.0000022037,0.0000021974,0.0000021966, +0.0000021976,0.0000021996,0.0000022067,0.0000022211,0.0000022371, +0.0000022477,0.0000022511,0.0000022544,0.0000022632,0.0000022749, +0.0000022832,0.0000022856,0.0000022848,0.0000022836,0.0000022832, +0.0000022831,0.0000022832,0.0000022833,0.0000022819,0.0000022789, +0.0000022744,0.0000022695,0.0000022653,0.0000022614,0.0000022582, +0.0000022562,0.0000022560,0.0000022573,0.0000022601,0.0000022638, +0.0000022661,0.0000022633,0.0000022528,0.0000022382,0.0000022258, +0.0000022207,0.0000022210,0.0000022256,0.0000022303,0.0000022302, +0.0000022251,0.0000022205,0.0000022260,0.0000022404,0.0000022425, +0.0000022310,0.0000022253,0.0000022340,0.0000022468,0.0000022506, +0.0000022494,0.0000022458,0.0000022430,0.0000022393,0.0000022281, +0.0000022089,0.0000021903,0.0000021783,0.0000021702,0.0000021631, +0.0000021566,0.0000021511,0.0000021462,0.0000021420,0.0000021393, +0.0000021377,0.0000021363,0.0000021347,0.0000021333,0.0000021319, +0.0000021311,0.0000021305,0.0000021302,0.0000021304,0.0000021317, +0.0000021345,0.0000021388,0.0000021450,0.0000021537,0.0000021647, +0.0000021771,0.0000021909,0.0000022061,0.0000022202,0.0000022306, +0.0000022371,0.0000022402,0.0000022390,0.0000022351,0.0000022305, +0.0000022268,0.0000022217,0.0000022127,0.0000021996,0.0000021838, +0.0000021673,0.0000021558,0.0000021545,0.0000021670,0.0000021854, +0.0000021992,0.0000022095,0.0000022301,0.0000022477,0.0000022417, +0.0000022067,0.0000021779,0.0000021703,0.0000021711,0.0000021724, +0.0000021760,0.0000021852,0.0000021977,0.0000022086,0.0000022127, +0.0000022123,0.0000022097,0.0000022091,0.0000022113,0.0000022137, +0.0000022141,0.0000022138,0.0000022143,0.0000022165,0.0000022198, +0.0000022218,0.0000022202,0.0000022144,0.0000022077,0.0000022039, +0.0000022032,0.0000022037,0.0000022083,0.0000022189,0.0000022346, +0.0000022487,0.0000022591,0.0000022685,0.0000022771,0.0000022843, +0.0000022901,0.0000022940,0.0000022956,0.0000022952,0.0000022925, +0.0000022876,0.0000022815,0.0000022748,0.0000022689,0.0000022649, +0.0000022607,0.0000022526,0.0000022355,0.0000022141,0.0000021977, +0.0000021903,0.0000021872,0.0000021824,0.0000021729,0.0000021590, +0.0000021429,0.0000021282,0.0000021169,0.0000021083,0.0000021012, +0.0000020955,0.0000020914,0.0000020884,0.0000020860,0.0000020837, +0.0000020815,0.0000020801,0.0000020798,0.0000020792,0.0000020769, +0.0000020717,0.0000020643,0.0000020556,0.0000020471,0.0000020413, +0.0000020382,0.0000020371,0.0000020376,0.0000020388,0.0000020418, +0.0000020473,0.0000020549,0.0000020631,0.0000020707,0.0000020763, +0.0000020798,0.0000020821,0.0000020845,0.0000020877,0.0000020921, +0.0000020966,0.0000020996,0.0000021001,0.0000020987,0.0000020954, +0.0000020915,0.0000020873,0.0000020837,0.0000020821,0.0000020839, +0.0000020893,0.0000020958,0.0000021016,0.0000021072,0.0000021146, +0.0000021250,0.0000021375,0.0000021494,0.0000021574,0.0000021601, +0.0000021587,0.0000021566,0.0000021549,0.0000021507,0.0000021414, +0.0000021289,0.0000021154,0.0000021002,0.0000020832,0.0000020702, +0.0000020648,0.0000020683,0.0000020762,0.0000020863,0.0000020955, +0.0000021021,0.0000021078,0.0000021161,0.0000021273,0.0000021392, +0.0000021491,0.0000021566,0.0000021641,0.0000021747,0.0000021893, +0.0000022055,0.0000022194,0.0000022292,0.0000022355,0.0000022397, +0.0000022436,0.0000022483,0.0000022534,0.0000022570,0.0000022577, +0.0000022565,0.0000022541,0.0000022503,0.0000022455,0.0000022420, +0.0000022405,0.0000022423,0.0000022512,0.0000022682,0.0000022877, +0.0000023037,0.0000023147,0.0000023234,0.0000023346,0.0000023498, +0.0000023658,0.0000023781,0.0000023852,0.0000023889,0.0000023915, +0.0000023936,0.0000023952,0.0000023957,0.0000023955,0.0000023951, +0.0000023946,0.0000023945,0.0000023948,0.0000023952,0.0000023954, +0.0000023952,0.0000023949,0.0000023944,0.0000023929,0.0000023896, +0.0000023838,0.0000023768,0.0000023704,0.0000023643,0.0000023577, +0.0000023496,0.0000023396,0.0000023289,0.0000023192,0.0000023095, +0.0000022976,0.0000022843,0.0000022721,0.0000022609,0.0000022499, +0.0000022401,0.0000022321,0.0000022248,0.0000022159,0.0000022044, +0.0000021909,0.0000021793,0.0000021726,0.0000021704,0.0000021695, +0.0000021668,0.0000021622,0.0000021567,0.0000021511,0.0000021458, +0.0000021411,0.0000021375,0.0000021351,0.0000021338,0.0000021337, +0.0000021348,0.0000021368,0.0000021392,0.0000021411,0.0000021421, +0.0000021421,0.0000021414,0.0000021404,0.0000021397,0.0000021395, +0.0000021396,0.0000021395,0.0000021386,0.0000021380,0.0000021373, +0.0000021365,0.0000021352,0.0000021335,0.0000021321,0.0000021308, +0.0000021290,0.0000021264,0.0000021234,0.0000021206,0.0000021184, +0.0000021169,0.0000021156,0.0000021152,0.0000021159,0.0000021168, +0.0000021170,0.0000021156,0.0000021140,0.0000021112,0.0000021073, +0.0000021021,0.0000020964,0.0000020916,0.0000020890,0.0000020877, +0.0000020875,0.0000020890,0.0000020932,0.0000021003,0.0000021095, +0.0000021203,0.0000021325,0.0000021454,0.0000021583,0.0000021706, +0.0000021814,0.0000021904,0.0000021973,0.0000022018,0.0000022039, +0.0000022051,0.0000022061,0.0000022069,0.0000022070,0.0000022069, +0.0000022066,0.0000022060,0.0000022050,0.0000022037,0.0000022017, +0.0000021979,0.0000021925,0.0000021856,0.0000021772,0.0000021673, +0.0000021563,0.0000021450,0.0000021342,0.0000021246,0.0000021166, +0.0000021100,0.0000021048,0.0000021005,0.0000020969,0.0000020939, +0.0000020912,0.0000020889,0.0000020876,0.0000020871,0.0000020873, +0.0000020878,0.0000020881,0.0000020882,0.0000020883,0.0000020885, +0.0000020888,0.0000020893,0.0000020898,0.0000020899,0.0000020892, +0.0000020873,0.0000020851,0.0000020833,0.0000020809,0.0000020770, +0.0000020725,0.0000020680,0.0000020634,0.0000020591,0.0000020560, +0.0000020546,0.0000020553,0.0000020585,0.0000020624,0.0000020661, +0.0000020687,0.0000020699,0.0000020692,0.0000020663,0.0000020619, +0.0000020574,0.0000020540,0.0000020509,0.0000020467,0.0000020413, +0.0000020366,0.0000020345,0.0000020348,0.0000020384,0.0000020443, +0.0000020510,0.0000020568,0.0000020616,0.0000020652,0.0000020675, +0.0000020688,0.0000020686,0.0000020672,0.0000020651,0.0000020626, +0.0000020601,0.0000020575,0.0000020550,0.0000020521,0.0000020476, +0.0000020401,0.0000020308,0.0000020215,0.0000020141,0.0000020090, +0.0000020058,0.0000020042,0.0000020032,0.0000020029,0.0000020027, +0.0000020029,0.0000020030,0.0000020026,0.0000020022,0.0000020031, +0.0000020056,0.0000020082,0.0000020092,0.0000020088,0.0000020073, +0.0000020041,0.0000019985,0.0000019924,0.0000019873,0.0000019854, +0.0000019849,0.0000019820,0.0000019787,0.0000019841,0.0000020007, +0.0000020149,0.0000020282,0.0000020393,0.0000020367,0.0000020335, +0.0000020369,0.0000020364,0.0000020383,0.0000020473,0.0000020489, +0.0000020379,0.0000020260,0.0000020222,0.0000020237,0.0000020275, +0.0000020307,0.0000020335,0.0000020366,0.0000020384,0.0000020379, +0.0000020365,0.0000020354,0.0000020344,0.0000020326,0.0000020298, +0.0000020265,0.0000020246,0.0000020247,0.0000020263,0.0000020282, +0.0000020303,0.0000020330,0.0000020352,0.0000020366,0.0000020379, +0.0000020388,0.0000020379,0.0000020379,0.0000020379,0.0000020327, +0.0000020255,0.0000020251,0.0000020310,0.0000020376,0.0000020425, +0.0000020464,0.0000020501,0.0000020532,0.0000020553,0.0000020556, +0.0000020542,0.0000020517,0.0000020485,0.0000020439,0.0000020381, +0.0000020335,0.0000020326,0.0000020337,0.0000020346,0.0000020347, +0.0000020336,0.0000020318,0.0000020297,0.0000020283,0.0000020285, +0.0000020303,0.0000020319,0.0000020328,0.0000020337,0.0000020344, +0.0000020344,0.0000020337,0.0000020330,0.0000020323,0.0000020313, +0.0000020299,0.0000020278,0.0000020255,0.0000020244,0.0000020247, +0.0000020257,0.0000020258,0.0000020248,0.0000020246,0.0000020259, +0.0000020289,0.0000020328,0.0000020360,0.0000020375,0.0000020378, +0.0000020371,0.0000020356,0.0000020336,0.0000020311,0.0000020283, +0.0000020258,0.0000020236,0.0000020219,0.0000020213,0.0000020213, +0.0000020214,0.0000020221,0.0000020237,0.0000020260,0.0000020279, +0.0000020292,0.0000020302,0.0000020315,0.0000020330,0.0000020339, +0.0000020339,0.0000020329,0.0000020311,0.0000020292,0.0000020276, +0.0000020259,0.0000020238,0.0000020218,0.0000020198,0.0000020186, +0.0000020184,0.0000020185,0.0000020187,0.0000020194,0.0000020204, +0.0000020214,0.0000020222,0.0000020224,0.0000020226,0.0000020233, +0.0000020245,0.0000020259,0.0000020279,0.0000020306,0.0000020330, +0.0000020339,0.0000020336,0.0000020320,0.0000020294,0.0000020266, +0.0000020236,0.0000020205,0.0000020175,0.0000020149,0.0000020130, +0.0000020129,0.0000020136,0.0000020147,0.0000020160,0.0000020175, +0.0000020193,0.0000020219,0.0000020248,0.0000020274,0.0000020299, +0.0000020331,0.0000020357,0.0000020362,0.0000020355,0.0000020366, +0.0000020447,0.0000020582,0.0000020702,0.0000020792,0.0000020856, +0.0000020879,0.0000020877,0.0000020860,0.0000020791,0.0000020670, +0.0000020563,0.0000020542,0.0000020559,0.0000020618,0.0000020695, +0.0000020683,0.0000020752,0.0000020809,0.0000020854,0.0000020870, +0.0000020872,0.0000020900,0.0000020986,0.0000021127,0.0000021292, +0.0000021432,0.0000021522,0.0000021571,0.0000021590,0.0000021578, +0.0000021539,0.0000021450,0.0000021330,0.0000021206,0.0000021097, +0.0000021014,0.0000020963,0.0000020937,0.0000020921,0.0000020901, +0.0000020868,0.0000020824,0.0000020773,0.0000020724,0.0000020679, +0.0000020640,0.0000020613,0.0000020597,0.0000020593,0.0000020600, +0.0000020613,0.0000020631,0.0000020663,0.0000020706,0.0000020759, +0.0000020818,0.0000020879,0.0000020934,0.0000020970,0.0000020981, +0.0000020975,0.0000020945,0.0000020893,0.0000020831,0.0000020781, +0.0000020743,0.0000020713,0.0000020687,0.0000020672,0.0000020671, +0.0000020682,0.0000020703,0.0000020730,0.0000020764,0.0000020795, +0.0000020817,0.0000020833,0.0000020850,0.0000020879,0.0000020923, +0.0000020977,0.0000021037,0.0000021099,0.0000021153,0.0000021189, +0.0000021202,0.0000021198,0.0000021187,0.0000021175,0.0000021170, +0.0000021183,0.0000021220,0.0000021264,0.0000021290,0.0000021289, +0.0000021269,0.0000021236,0.0000021196,0.0000021159,0.0000021137, +0.0000021130,0.0000021132,0.0000021143,0.0000021157,0.0000021162, +0.0000021160,0.0000021158,0.0000021163,0.0000021168,0.0000021165, +0.0000021154,0.0000021135,0.0000021114,0.0000021097,0.0000021082, +0.0000021069,0.0000021060,0.0000021051,0.0000021040,0.0000021026, +0.0000021013,0.0000021003,0.0000020997,0.0000020995,0.0000021000, +0.0000021006,0.0000021015,0.0000021026,0.0000021032,0.0000021032, +0.0000021022,0.0000021005,0.0000020987,0.0000020968,0.0000020949, +0.0000020938,0.0000020936,0.0000020942,0.0000020948,0.0000020948, +0.0000020948,0.0000020952,0.0000020955,0.0000020956,0.0000020960, +0.0000020971,0.0000020985,0.0000020998,0.0000021009,0.0000021021, +0.0000021041,0.0000021073,0.0000021110,0.0000021147,0.0000021183, +0.0000021221,0.0000021262,0.0000021291,0.0000021301,0.0000021298, +0.0000021282,0.0000021257,0.0000021231,0.0000021204,0.0000021179, +0.0000021153,0.0000021132,0.0000021121,0.0000021123,0.0000021134, +0.0000021149,0.0000021162,0.0000021172,0.0000021182,0.0000021195, +0.0000021213,0.0000021234,0.0000021253,0.0000021260,0.0000021255, +0.0000021235,0.0000021207,0.0000021176,0.0000021152,0.0000021146, +0.0000021157,0.0000021188,0.0000021229,0.0000021270,0.0000021307, +0.0000021338,0.0000021361,0.0000021375,0.0000021383,0.0000021387, +0.0000021388,0.0000021386,0.0000021385,0.0000021386,0.0000021388, +0.0000021396,0.0000021433,0.0000021498,0.0000021556,0.0000021592, +0.0000021650,0.0000021742,0.0000021806,0.0000021812,0.0000021758, +0.0000021653,0.0000021608,0.0000021645,0.0000021659,0.0000021626, +0.0000021618,0.0000021659,0.0000021704,0.0000021731,0.0000021753, +0.0000021786,0.0000021838,0.0000021911,0.0000021990,0.0000022052, +0.0000022089,0.0000022110,0.0000022128,0.0000022147,0.0000022165, +0.0000022189,0.0000022216,0.0000022237,0.0000022246,0.0000022248, +0.0000022247,0.0000022246,0.0000022250,0.0000022261,0.0000022275, +0.0000022291,0.0000022308,0.0000022327,0.0000022354,0.0000022384, +0.0000022416,0.0000022448,0.0000022482,0.0000022519,0.0000022560, +0.0000022599,0.0000022632,0.0000022658,0.0000022677,0.0000022688, +0.0000022693,0.0000022693,0.0000022689,0.0000022681,0.0000022668, +0.0000022650,0.0000022630,0.0000022608,0.0000022583,0.0000022553, +0.0000022519,0.0000022483,0.0000022445,0.0000022408,0.0000022372, +0.0000022335,0.0000022300,0.0000022270,0.0000022246,0.0000022229, +0.0000022222,0.0000022223,0.0000022227,0.0000022229,0.0000022229, +0.0000022226,0.0000022214,0.0000022193,0.0000022159,0.0000022112, +0.0000022057,0.0000021993,0.0000021924,0.0000021849,0.0000021774, +0.0000021703,0.0000021649,0.0000021619,0.0000021604,0.0000021585, +0.0000021557,0.0000021524,0.0000021489,0.0000021448,0.0000021410, +0.0000021395,0.0000021400,0.0000021413,0.0000021418,0.0000021411, +0.0000021390,0.0000021356,0.0000021313,0.0000021271,0.0000021233, +0.0000021189,0.0000021143,0.0000021106,0.0000021082,0.0000021079, +0.0000021096,0.0000021118,0.0000021135,0.0000021151,0.0000021168, +0.0000021193,0.0000021227,0.0000021265,0.0000021293,0.0000021313, +0.0000021333,0.0000021358,0.0000021378,0.0000021391,0.0000021396, +0.0000021388,0.0000021356,0.0000021302,0.0000021240,0.0000021184, +0.0000021142,0.0000021119,0.0000021113,0.0000021115,0.0000021119, +0.0000021113,0.0000021091,0.0000021048,0.0000021006,0.0000020970, +0.0000020938,0.0000020908,0.0000020877,0.0000020826,0.0000020782, +0.0000020772,0.0000020799,0.0000020858,0.0000020891,0.0000020893, +0.0000020874,0.0000020792,0.0000020707,0.0000020672,0.0000020660, +0.0000020723,0.0000020860,0.0000020897,0.0000020878,0.0000020869, +0.0000020911,0.0000021010,0.0000021088,0.0000021107,0.0000021087, +0.0000021079,0.0000021124,0.0000021196,0.0000021251,0.0000021293, +0.0000021331,0.0000021357,0.0000021408,0.0000021487,0.0000021535, +0.0000021598,0.0000021706,0.0000021746,0.0000021725,0.0000021719, +0.0000021737,0.0000021835,0.0000021930,0.0000021983,0.0000022031, +0.0000021995,0.0000021872,0.0000021833,0.0000021932,0.0000022013, +0.0000021987,0.0000021899,0.0000021827,0.0000021764,0.0000021722, +0.0000021730,0.0000021753,0.0000021771,0.0000021827,0.0000021903, +0.0000021970,0.0000022044,0.0000022100,0.0000022107,0.0000022103, +0.0000022111,0.0000022138,0.0000022174,0.0000022202,0.0000022213, +0.0000022223,0.0000022236,0.0000022257,0.0000022293,0.0000022354, +0.0000022428,0.0000022509,0.0000022583,0.0000022646,0.0000022698, +0.0000022743,0.0000022783,0.0000022815,0.0000022833,0.0000022848, +0.0000022871,0.0000022899,0.0000022921,0.0000022928,0.0000022925, +0.0000022919,0.0000022907,0.0000022911,0.0000022934,0.0000022971, +0.0000023009,0.0000023022,0.0000023008,0.0000022905,0.0000022750, +0.0000022622,0.0000022566,0.0000022547,0.0000022503,0.0000022433, +0.0000022377,0.0000022347,0.0000022333,0.0000022306,0.0000022222, +0.0000022075,0.0000022030,0.0000022057,0.0000022052,0.0000022046, +0.0000022049,0.0000022081,0.0000022153,0.0000022233,0.0000022278, +0.0000022295,0.0000022290,0.0000022273,0.0000022262,0.0000022258, +0.0000022257,0.0000022266,0.0000022290,0.0000022327,0.0000022372, +0.0000022412,0.0000022443,0.0000022462,0.0000022466,0.0000022467, +0.0000022476,0.0000022500,0.0000022531,0.0000022555,0.0000022578, +0.0000022600,0.0000022620,0.0000022641,0.0000022660,0.0000022689, +0.0000022711,0.0000022718,0.0000022722,0.0000022730,0.0000022746, +0.0000022768,0.0000022799,0.0000022835,0.0000022879,0.0000022929, +0.0000022975,0.0000023010,0.0000023029,0.0000023030,0.0000023012, +0.0000022982,0.0000022962,0.0000022943,0.0000022908,0.0000022856, +0.0000022800,0.0000022746,0.0000022679,0.0000022597,0.0000022535, +0.0000022523,0.0000022559,0.0000022608,0.0000022661,0.0000022722, +0.0000022780,0.0000022828,0.0000022862,0.0000022885,0.0000022896, +0.0000022893,0.0000022873,0.0000022840,0.0000022796,0.0000022752, +0.0000022723,0.0000022716,0.0000022721,0.0000022717,0.0000022695, +0.0000022661,0.0000022613,0.0000022558,0.0000022524,0.0000022513, +0.0000022463,0.0000022361,0.0000022268,0.0000022207,0.0000022175, +0.0000022192,0.0000022297,0.0000022410,0.0000022433,0.0000022319, +0.0000022134,0.0000022039,0.0000022020,0.0000022017,0.0000022020, +0.0000022026,0.0000022044,0.0000022053,0.0000022049,0.0000022031, +0.0000022000,0.0000021954,0.0000021902,0.0000021857,0.0000021823, +0.0000021790,0.0000021766,0.0000021755,0.0000021755,0.0000021753, +0.0000021739,0.0000021713,0.0000021678,0.0000021640,0.0000021616, +0.0000021605,0.0000021604,0.0000021608,0.0000021613,0.0000021617, +0.0000021621,0.0000021631,0.0000021652,0.0000021677,0.0000021688, +0.0000021686,0.0000021689,0.0000021704,0.0000021740,0.0000021790, +0.0000021847,0.0000021902,0.0000021964,0.0000022034,0.0000022106, +0.0000022170,0.0000022221,0.0000022243,0.0000022230,0.0000022184, +0.0000022109,0.0000022046,0.0000022026,0.0000022007,0.0000022018, +0.0000022034,0.0000022044,0.0000022047,0.0000022048,0.0000022054, +0.0000022060,0.0000022072,0.0000022063,0.0000022065,0.0000022043, +0.0000022014,0.0000021982,0.0000021962,0.0000021946,0.0000021950, +0.0000021948,0.0000021949,0.0000021960,0.0000021966,0.0000021962, +0.0000021955,0.0000021962,0.0000021966,0.0000021972,0.0000021984, +0.0000022002,0.0000022032,0.0000022053,0.0000022065,0.0000022085, +0.0000022079,0.0000022054,0.0000022022,0.0000021974,0.0000021910, +0.0000021838,0.0000021767,0.0000021705,0.0000021661,0.0000021638, +0.0000021633,0.0000021643,0.0000021667,0.0000021702,0.0000021737, +0.0000021768,0.0000021793,0.0000021814,0.0000021828,0.0000021822, +0.0000021827,0.0000021812,0.0000021793,0.0000021783,0.0000021789, +0.0000021805,0.0000021827,0.0000021856,0.0000021881,0.0000021898, +0.0000021904,0.0000021897,0.0000021883,0.0000021874,0.0000021856, +0.0000021833,0.0000021809,0.0000021787,0.0000021777,0.0000021780, +0.0000021802,0.0000021839,0.0000021881,0.0000021924,0.0000021960, +0.0000021984,0.0000021992,0.0000021984,0.0000021976,0.0000021961, +0.0000021941,0.0000021922,0.0000021902,0.0000021888,0.0000021928, +0.0000022011,0.0000022114,0.0000022211,0.0000022292,0.0000022354, +0.0000022409,0.0000022465,0.0000022534,0.0000022620,0.0000022722, +0.0000022836,0.0000022948,0.0000023042,0.0000023109,0.0000023155, +0.0000023185,0.0000023203,0.0000023213,0.0000023221,0.0000023238, +0.0000023263,0.0000023288,0.0000023308,0.0000023326,0.0000023343, +0.0000023362,0.0000023387,0.0000023423,0.0000023463,0.0000023501, +0.0000023533,0.0000023560,0.0000023581,0.0000023595,0.0000023602, +0.0000023603,0.0000023598,0.0000023586,0.0000023568,0.0000023548, +0.0000023528,0.0000023507,0.0000023484,0.0000023458,0.0000023430, +0.0000023402,0.0000023376,0.0000023350,0.0000023326,0.0000023304, +0.0000023285,0.0000023277,0.0000023266,0.0000023249,0.0000023228, +0.0000023208,0.0000023188,0.0000023165,0.0000023135,0.0000023099, +0.0000023060,0.0000023022,0.0000022990,0.0000022955,0.0000022918, +0.0000022877,0.0000022832,0.0000022788,0.0000022745,0.0000022702, +0.0000022665,0.0000022632,0.0000022601,0.0000022570,0.0000022536, +0.0000022495,0.0000022457,0.0000022436,0.0000022425,0.0000022399, +0.0000022321,0.0000022170,0.0000021966,0.0000021763,0.0000021604, +0.0000021501,0.0000021446,0.0000021426,0.0000021420,0.0000021394, +0.0000021327,0.0000021223,0.0000021129,0.0000021083,0.0000021078, +0.0000021102,0.0000021144,0.0000021188,0.0000021232,0.0000021262, +0.0000021268,0.0000021256,0.0000021233,0.0000021211,0.0000021194, +0.0000021179,0.0000021165,0.0000021160,0.0000021146,0.0000021121, +0.0000021086,0.0000021043,0.0000020998,0.0000020952,0.0000020904, +0.0000020852,0.0000020799,0.0000020744,0.0000020684,0.0000020623, +0.0000020550,0.0000020473,0.0000020391,0.0000020313,0.0000020234, +0.0000020161,0.0000020106,0.0000020064,0.0000020044,0.0000020041, +0.0000020050,0.0000020083,0.0000020152,0.0000020271,0.0000020443, +0.0000020629,0.0000020778,0.0000020860,0.0000020883,0.0000020881, +0.0000020872,0.0000020854,0.0000020828,0.0000020806,0.0000020801, +0.0000020805,0.0000020811,0.0000020809,0.0000020795,0.0000020763, +0.0000020699,0.0000020601,0.0000020484,0.0000020389,0.0000020342, +0.0000020365,0.0000020455,0.0000020591,0.0000020740,0.0000020868, +0.0000020975,0.0000021074,0.0000021195,0.0000021365,0.0000021561, +0.0000021731,0.0000021862,0.0000021957,0.0000022023,0.0000022084, +0.0000022161,0.0000022239,0.0000022263,0.0000022237,0.0000022134, +0.0000022015,0.0000021940,0.0000021920,0.0000021921,0.0000021934, +0.0000021951,0.0000021966,0.0000021987,0.0000022028,0.0000022079, +0.0000022127,0.0000022168,0.0000022216,0.0000022274,0.0000022333, +0.0000022384,0.0000022424,0.0000022444,0.0000022427,0.0000022363, +0.0000022230,0.0000022074,0.0000021963,0.0000021924,0.0000021921, +0.0000021932,0.0000021964,0.0000022056,0.0000022204,0.0000022350, +0.0000022443,0.0000022490,0.0000022544,0.0000022628,0.0000022713, +0.0000022764,0.0000022782,0.0000022781,0.0000022775,0.0000022769, +0.0000022772,0.0000022782,0.0000022780,0.0000022762,0.0000022727, +0.0000022695,0.0000022658,0.0000022623,0.0000022599,0.0000022592, +0.0000022602,0.0000022628,0.0000022663,0.0000022684,0.0000022661, +0.0000022565,0.0000022404,0.0000022259,0.0000022184,0.0000022175, +0.0000022207,0.0000022257,0.0000022266,0.0000022225,0.0000022170, +0.0000022204,0.0000022344,0.0000022387,0.0000022294,0.0000022238, +0.0000022319,0.0000022450,0.0000022487,0.0000022472,0.0000022429, +0.0000022401,0.0000022359,0.0000022236,0.0000022046,0.0000021872, +0.0000021754,0.0000021682,0.0000021624,0.0000021574,0.0000021529, +0.0000021484,0.0000021439,0.0000021401,0.0000021364,0.0000021337, +0.0000021320,0.0000021305,0.0000021293,0.0000021277,0.0000021262, +0.0000021254,0.0000021256,0.0000021268,0.0000021293,0.0000021324, +0.0000021360,0.0000021411,0.0000021473,0.0000021553,0.0000021657, +0.0000021783,0.0000021931,0.0000022081,0.0000022212,0.0000022304, +0.0000022356,0.0000022377,0.0000022359,0.0000022316,0.0000022280, +0.0000022250,0.0000022204,0.0000022119,0.0000021994,0.0000021839, +0.0000021673,0.0000021558,0.0000021548,0.0000021667,0.0000021851, +0.0000021991,0.0000022113,0.0000022313,0.0000022447,0.0000022366, +0.0000022030,0.0000021780,0.0000021724,0.0000021737,0.0000021762, +0.0000021816,0.0000021918,0.0000022035,0.0000022122,0.0000022141, +0.0000022127,0.0000022107,0.0000022114,0.0000022131,0.0000022139, +0.0000022136,0.0000022136,0.0000022156,0.0000022197,0.0000022240, +0.0000022272,0.0000022259,0.0000022201,0.0000022135,0.0000022094, +0.0000022083,0.0000022093,0.0000022131,0.0000022239,0.0000022388, +0.0000022520,0.0000022615,0.0000022699,0.0000022779,0.0000022844, +0.0000022890,0.0000022913,0.0000022911,0.0000022883,0.0000022832, +0.0000022769,0.0000022702,0.0000022643,0.0000022605,0.0000022581, +0.0000022528,0.0000022399,0.0000022199,0.0000022007,0.0000021896, +0.0000021859,0.0000021832,0.0000021774,0.0000021666,0.0000021515, +0.0000021352,0.0000021217,0.0000021122,0.0000021054,0.0000021002, +0.0000020968,0.0000020951,0.0000020937,0.0000020914,0.0000020884, +0.0000020856,0.0000020842,0.0000020833,0.0000020822,0.0000020792, +0.0000020738,0.0000020660,0.0000020569,0.0000020488,0.0000020429, +0.0000020397,0.0000020386,0.0000020387,0.0000020385,0.0000020400, +0.0000020438,0.0000020496,0.0000020571,0.0000020647,0.0000020711, +0.0000020763,0.0000020803,0.0000020831,0.0000020854,0.0000020881, +0.0000020917,0.0000020950,0.0000020967,0.0000020958,0.0000020934, +0.0000020900,0.0000020858,0.0000020818,0.0000020789,0.0000020796, +0.0000020835,0.0000020892,0.0000020949,0.0000021006,0.0000021077, +0.0000021174,0.0000021292,0.0000021412,0.0000021501,0.0000021533, +0.0000021522,0.0000021499,0.0000021482,0.0000021439,0.0000021356, +0.0000021241,0.0000021112,0.0000020966,0.0000020807,0.0000020675, +0.0000020622,0.0000020632,0.0000020705,0.0000020811,0.0000020911, +0.0000020982,0.0000021046,0.0000021131,0.0000021241,0.0000021356, +0.0000021451,0.0000021523,0.0000021597,0.0000021697,0.0000021834, +0.0000021990,0.0000022126,0.0000022223,0.0000022278,0.0000022310, +0.0000022340,0.0000022383,0.0000022443,0.0000022495,0.0000022513, +0.0000022506,0.0000022479,0.0000022432,0.0000022382,0.0000022345, +0.0000022326,0.0000022338,0.0000022426,0.0000022599,0.0000022800, +0.0000022970,0.0000023081,0.0000023160,0.0000023248,0.0000023374, +0.0000023525,0.0000023659,0.0000023748,0.0000023801,0.0000023838, +0.0000023866,0.0000023885,0.0000023897,0.0000023903,0.0000023903, +0.0000023902,0.0000023906,0.0000023913,0.0000023916,0.0000023914, +0.0000023906,0.0000023891,0.0000023872,0.0000023846,0.0000023804, +0.0000023751,0.0000023697,0.0000023642,0.0000023580,0.0000023503, +0.0000023408,0.0000023310,0.0000023218,0.0000023124,0.0000023005, +0.0000022865,0.0000022734,0.0000022625,0.0000022525,0.0000022426, +0.0000022338,0.0000022258,0.0000022172,0.0000022073,0.0000021948, +0.0000021817,0.0000021719,0.0000021676,0.0000021665,0.0000021650, +0.0000021616,0.0000021565,0.0000021510,0.0000021462,0.0000021421, +0.0000021390,0.0000021369,0.0000021353,0.0000021341,0.0000021338, +0.0000021340,0.0000021349,0.0000021360,0.0000021370,0.0000021375, +0.0000021377,0.0000021376,0.0000021372,0.0000021367,0.0000021361, +0.0000021354,0.0000021340,0.0000021331,0.0000021320,0.0000021312, +0.0000021303,0.0000021296,0.0000021291,0.0000021287,0.0000021278, +0.0000021260,0.0000021238,0.0000021215,0.0000021193,0.0000021172, +0.0000021151,0.0000021127,0.0000021113,0.0000021113,0.0000021118, +0.0000021124,0.0000021127,0.0000021126,0.0000021113,0.0000021086, +0.0000021044,0.0000020992,0.0000020945,0.0000020909,0.0000020878, +0.0000020864,0.0000020855,0.0000020865,0.0000020888,0.0000020924, +0.0000020973,0.0000021039,0.0000021114,0.0000021195,0.0000021279, +0.0000021363,0.0000021439,0.0000021506,0.0000021567,0.0000021624, +0.0000021677,0.0000021728,0.0000021776,0.0000021813,0.0000021840, +0.0000021851,0.0000021845,0.0000021826,0.0000021799,0.0000021761, +0.0000021703,0.0000021630,0.0000021546,0.0000021454,0.0000021359, +0.0000021268,0.0000021187,0.0000021121,0.0000021069,0.0000021029, +0.0000020999,0.0000020975,0.0000020953,0.0000020929,0.0000020901, +0.0000020869,0.0000020842,0.0000020822,0.0000020809,0.0000020801, +0.0000020795,0.0000020792,0.0000020789,0.0000020789,0.0000020795, +0.0000020802,0.0000020808,0.0000020813,0.0000020816,0.0000020819, +0.0000020819,0.0000020817,0.0000020812,0.0000020796,0.0000020768, +0.0000020730,0.0000020693,0.0000020648,0.0000020601,0.0000020561, +0.0000020538,0.0000020536,0.0000020544,0.0000020569,0.0000020599, +0.0000020625,0.0000020641,0.0000020644,0.0000020635,0.0000020612, +0.0000020581,0.0000020544,0.0000020509,0.0000020475,0.0000020437, +0.0000020396,0.0000020363,0.0000020350,0.0000020363,0.0000020405, +0.0000020464,0.0000020527,0.0000020586,0.0000020634,0.0000020671, +0.0000020692,0.0000020695,0.0000020689,0.0000020672,0.0000020646, +0.0000020615,0.0000020583,0.0000020559,0.0000020536,0.0000020503, +0.0000020447,0.0000020364,0.0000020266,0.0000020168,0.0000020088, +0.0000020040,0.0000020016,0.0000019997,0.0000019985,0.0000019979, +0.0000019979,0.0000019978,0.0000019968,0.0000019957,0.0000019959, +0.0000019983,0.0000020014,0.0000020033,0.0000020037,0.0000020030, +0.0000020011,0.0000019970,0.0000019910,0.0000019851,0.0000019821, +0.0000019810,0.0000019789,0.0000019748,0.0000019775,0.0000019935, +0.0000020094,0.0000020238,0.0000020365,0.0000020351,0.0000020310, +0.0000020350,0.0000020360,0.0000020386,0.0000020477,0.0000020489, +0.0000020377,0.0000020258,0.0000020225,0.0000020241,0.0000020273, +0.0000020299,0.0000020318,0.0000020339,0.0000020354,0.0000020357, +0.0000020350,0.0000020339,0.0000020326,0.0000020303,0.0000020274, +0.0000020254,0.0000020251,0.0000020265,0.0000020287,0.0000020308, +0.0000020331,0.0000020354,0.0000020365,0.0000020369,0.0000020381, +0.0000020387,0.0000020368,0.0000020361,0.0000020344,0.0000020282, +0.0000020249,0.0000020282,0.0000020353,0.0000020409,0.0000020447, +0.0000020484,0.0000020521,0.0000020551,0.0000020563,0.0000020556, +0.0000020527,0.0000020483,0.0000020431,0.0000020372,0.0000020317, +0.0000020298,0.0000020309,0.0000020327,0.0000020334,0.0000020329, +0.0000020313,0.0000020286,0.0000020253,0.0000020230,0.0000020229, +0.0000020248,0.0000020270,0.0000020287,0.0000020305,0.0000020311, +0.0000020304,0.0000020286,0.0000020262,0.0000020239,0.0000020223, +0.0000020208,0.0000020190,0.0000020175,0.0000020173,0.0000020181, +0.0000020195,0.0000020206,0.0000020211,0.0000020217,0.0000020231, +0.0000020257,0.0000020291,0.0000020321,0.0000020339,0.0000020343, +0.0000020338,0.0000020327,0.0000020309,0.0000020282,0.0000020253, +0.0000020228,0.0000020206,0.0000020186,0.0000020174,0.0000020168, +0.0000020165,0.0000020168,0.0000020183,0.0000020204,0.0000020223, +0.0000020237,0.0000020254,0.0000020275,0.0000020296,0.0000020313, +0.0000020322,0.0000020321,0.0000020310,0.0000020292,0.0000020271, +0.0000020251,0.0000020234,0.0000020217,0.0000020205,0.0000020197, +0.0000020192,0.0000020186,0.0000020180,0.0000020179,0.0000020186, +0.0000020196,0.0000020204,0.0000020210,0.0000020218,0.0000020230, +0.0000020247,0.0000020263,0.0000020275,0.0000020289,0.0000020306, +0.0000020325,0.0000020333,0.0000020328,0.0000020307,0.0000020276, +0.0000020240,0.0000020200,0.0000020159,0.0000020122,0.0000020098, +0.0000020097,0.0000020106,0.0000020125,0.0000020143,0.0000020156, +0.0000020166,0.0000020183,0.0000020209,0.0000020237,0.0000020262, +0.0000020281,0.0000020305,0.0000020328,0.0000020341,0.0000020340, +0.0000020353,0.0000020426,0.0000020557,0.0000020681,0.0000020766, +0.0000020831,0.0000020866,0.0000020865,0.0000020854,0.0000020815, +0.0000020720,0.0000020603,0.0000020553,0.0000020570,0.0000020615, +0.0000020621,0.0000020668,0.0000020716,0.0000020760,0.0000020808, +0.0000020851,0.0000020877,0.0000020895,0.0000020927,0.0000020993, +0.0000021101,0.0000021241,0.0000021372,0.0000021462,0.0000021510, +0.0000021525,0.0000021501,0.0000021447,0.0000021356,0.0000021246, +0.0000021136,0.0000021046,0.0000020984,0.0000020949,0.0000020928, +0.0000020904,0.0000020871,0.0000020827,0.0000020773,0.0000020721, +0.0000020675,0.0000020637,0.0000020613,0.0000020605,0.0000020609, +0.0000020622,0.0000020637,0.0000020658,0.0000020690,0.0000020731, +0.0000020776,0.0000020828,0.0000020884,0.0000020929,0.0000020950, +0.0000020950,0.0000020934,0.0000020896,0.0000020842,0.0000020789, +0.0000020746,0.0000020711,0.0000020681,0.0000020661,0.0000020659, +0.0000020674,0.0000020700,0.0000020732,0.0000020765,0.0000020791, +0.0000020804,0.0000020811,0.0000020822,0.0000020850,0.0000020895, +0.0000020952,0.0000021016,0.0000021080,0.0000021138,0.0000021179, +0.0000021198,0.0000021198,0.0000021185,0.0000021168,0.0000021153, +0.0000021149,0.0000021166,0.0000021206,0.0000021252,0.0000021278, +0.0000021279,0.0000021263,0.0000021241,0.0000021211,0.0000021184, +0.0000021165,0.0000021155,0.0000021153,0.0000021156,0.0000021163, +0.0000021165,0.0000021164,0.0000021167,0.0000021175,0.0000021180, +0.0000021179,0.0000021170,0.0000021154,0.0000021138,0.0000021124, +0.0000021108,0.0000021089,0.0000021069,0.0000021052,0.0000021042, +0.0000021037,0.0000021034,0.0000021030,0.0000021028,0.0000021031, +0.0000021037,0.0000021044,0.0000021051,0.0000021054,0.0000021053, +0.0000021045,0.0000021030,0.0000021009,0.0000020982,0.0000020954, +0.0000020932,0.0000020921,0.0000020920,0.0000020921,0.0000020922, +0.0000020924,0.0000020931,0.0000020939,0.0000020944,0.0000020951, +0.0000020964,0.0000020980,0.0000020995,0.0000021005,0.0000021013, +0.0000021027,0.0000021053,0.0000021088,0.0000021123,0.0000021160, +0.0000021208,0.0000021257,0.0000021303,0.0000021335,0.0000021346, +0.0000021344,0.0000021333,0.0000021316,0.0000021297,0.0000021274, +0.0000021245,0.0000021212,0.0000021184,0.0000021166,0.0000021161, +0.0000021166,0.0000021181,0.0000021196,0.0000021207,0.0000021214, +0.0000021222,0.0000021233,0.0000021247,0.0000021256,0.0000021255, +0.0000021243,0.0000021220,0.0000021193,0.0000021169,0.0000021151, +0.0000021144,0.0000021148,0.0000021165,0.0000021196,0.0000021239, +0.0000021286,0.0000021327,0.0000021356,0.0000021375,0.0000021384, +0.0000021388,0.0000021388,0.0000021383,0.0000021373,0.0000021366, +0.0000021364,0.0000021366,0.0000021387,0.0000021451,0.0000021536, +0.0000021590,0.0000021627,0.0000021702,0.0000021790,0.0000021825, +0.0000021809,0.0000021717,0.0000021613,0.0000021614,0.0000021665, +0.0000021668,0.0000021643,0.0000021650,0.0000021688,0.0000021720, +0.0000021742,0.0000021765,0.0000021789,0.0000021818,0.0000021857, +0.0000021896,0.0000021926,0.0000021950,0.0000021978,0.0000022011, +0.0000022043,0.0000022080,0.0000022124,0.0000022166,0.0000022195, +0.0000022213,0.0000022223,0.0000022228,0.0000022233,0.0000022244, +0.0000022259,0.0000022276,0.0000022290,0.0000022304,0.0000022322, +0.0000022346,0.0000022370,0.0000022393,0.0000022418,0.0000022448, +0.0000022482,0.0000022521,0.0000022557,0.0000022588,0.0000022612, +0.0000022628,0.0000022636,0.0000022638,0.0000022635,0.0000022629, +0.0000022617,0.0000022602,0.0000022583,0.0000022562,0.0000022537, +0.0000022507,0.0000022473,0.0000022435,0.0000022396,0.0000022356, +0.0000022318,0.0000022282,0.0000022246,0.0000022218,0.0000022196, +0.0000022180,0.0000022172,0.0000022170,0.0000022172,0.0000022174, +0.0000022171,0.0000022159,0.0000022137,0.0000022104,0.0000022062, +0.0000022013,0.0000021959,0.0000021898,0.0000021830,0.0000021759, +0.0000021692,0.0000021637,0.0000021598,0.0000021572,0.0000021546, +0.0000021511,0.0000021467,0.0000021423,0.0000021385,0.0000021352, +0.0000021327,0.0000021319,0.0000021326,0.0000021345,0.0000021360, +0.0000021369,0.0000021370,0.0000021361,0.0000021337,0.0000021310, +0.0000021274,0.0000021218,0.0000021149,0.0000021094,0.0000021053, +0.0000021037,0.0000021041,0.0000021052,0.0000021067,0.0000021087, +0.0000021114,0.0000021150,0.0000021191,0.0000021229,0.0000021258, +0.0000021282,0.0000021301,0.0000021328,0.0000021354,0.0000021372, +0.0000021377,0.0000021373,0.0000021348,0.0000021300,0.0000021239, +0.0000021182,0.0000021144,0.0000021126,0.0000021122,0.0000021122, +0.0000021122,0.0000021116,0.0000021099,0.0000021067,0.0000021030, +0.0000021002,0.0000020967,0.0000020940,0.0000020921,0.0000020871, +0.0000020799,0.0000020766,0.0000020775,0.0000020832,0.0000020873, +0.0000020876,0.0000020856,0.0000020776,0.0000020688,0.0000020648, +0.0000020626,0.0000020681,0.0000020815,0.0000020850,0.0000020835, +0.0000020832,0.0000020884,0.0000020980,0.0000021054,0.0000021070, +0.0000021042,0.0000021031,0.0000021072,0.0000021145,0.0000021206, +0.0000021257,0.0000021292,0.0000021328,0.0000021400,0.0000021477, +0.0000021509,0.0000021593,0.0000021696,0.0000021707,0.0000021689, +0.0000021686,0.0000021748,0.0000021867,0.0000021948,0.0000022015, +0.0000022020,0.0000021928,0.0000021870,0.0000021956,0.0000022072, +0.0000022058,0.0000021949,0.0000021845,0.0000021753,0.0000021707, +0.0000021720,0.0000021746,0.0000021784,0.0000021863,0.0000021962, +0.0000022052,0.0000022133,0.0000022169,0.0000022146,0.0000022105, +0.0000022092,0.0000022113,0.0000022157,0.0000022202,0.0000022229, +0.0000022245,0.0000022268,0.0000022301,0.0000022337,0.0000022389, +0.0000022464,0.0000022544,0.0000022620,0.0000022682,0.0000022727, +0.0000022766,0.0000022796,0.0000022828,0.0000022860,0.0000022885, +0.0000022902,0.0000022916,0.0000022916,0.0000022915,0.0000022903, +0.0000022902,0.0000022912,0.0000022922,0.0000022946,0.0000022977, +0.0000023000,0.0000023007,0.0000022952,0.0000022842,0.0000022705, +0.0000022606,0.0000022567,0.0000022550,0.0000022505,0.0000022433, +0.0000022373,0.0000022340,0.0000022324,0.0000022306,0.0000022262, +0.0000022145,0.0000022063,0.0000022093,0.0000022108,0.0000022073, +0.0000022039,0.0000022017,0.0000022035,0.0000022105,0.0000022175, +0.0000022223,0.0000022248,0.0000022253,0.0000022244,0.0000022230, +0.0000022221,0.0000022214,0.0000022215,0.0000022232,0.0000022263, +0.0000022307,0.0000022357,0.0000022394,0.0000022416,0.0000022424, +0.0000022426,0.0000022429,0.0000022440,0.0000022461,0.0000022476, +0.0000022493,0.0000022511,0.0000022526,0.0000022539,0.0000022555, +0.0000022579,0.0000022610,0.0000022629,0.0000022643,0.0000022659, +0.0000022679,0.0000022703,0.0000022727,0.0000022755,0.0000022790, +0.0000022836,0.0000022881,0.0000022912,0.0000022930,0.0000022932, +0.0000022923,0.0000022913,0.0000022909,0.0000022890,0.0000022850, +0.0000022799,0.0000022754,0.0000022705,0.0000022639,0.0000022572, +0.0000022525,0.0000022509,0.0000022535,0.0000022583,0.0000022636, +0.0000022702,0.0000022764,0.0000022803,0.0000022825,0.0000022849, +0.0000022871,0.0000022880,0.0000022873,0.0000022843,0.0000022807, +0.0000022778,0.0000022760,0.0000022752,0.0000022750,0.0000022727, +0.0000022684,0.0000022624,0.0000022565,0.0000022507,0.0000022471, +0.0000022450,0.0000022392,0.0000022296,0.0000022221,0.0000022166, +0.0000022129,0.0000022143,0.0000022230,0.0000022344,0.0000022411, +0.0000022385,0.0000022245,0.0000022090,0.0000022020,0.0000022000, +0.0000021999,0.0000022003,0.0000022015,0.0000022030,0.0000022037, +0.0000022035,0.0000022013,0.0000021975,0.0000021928,0.0000021883, +0.0000021844,0.0000021808,0.0000021780,0.0000021764,0.0000021763, +0.0000021767,0.0000021765,0.0000021748,0.0000021717,0.0000021678, +0.0000021638,0.0000021610,0.0000021594,0.0000021588,0.0000021586, +0.0000021584,0.0000021579,0.0000021575,0.0000021584,0.0000021613, +0.0000021648,0.0000021676,0.0000021688,0.0000021684,0.0000021689, +0.0000021695,0.0000021724,0.0000021776,0.0000021840,0.0000021911, +0.0000021986,0.0000022055,0.0000022118,0.0000022186,0.0000022239, +0.0000022258,0.0000022257,0.0000022205,0.0000022119,0.0000022035, +0.0000021970,0.0000021934,0.0000021929,0.0000021938,0.0000021953, +0.0000021968,0.0000021984,0.0000022002,0.0000022021,0.0000022039, +0.0000022057,0.0000022070,0.0000022065,0.0000022064,0.0000022054, +0.0000022045,0.0000022032,0.0000022021,0.0000022012,0.0000022005, +0.0000022002,0.0000021998,0.0000021992,0.0000021987,0.0000021996, +0.0000021996,0.0000021991,0.0000021996,0.0000022004,0.0000022007, +0.0000022008,0.0000022001,0.0000021982,0.0000021949,0.0000021901, +0.0000021842,0.0000021773,0.0000021700,0.0000021629,0.0000021565, +0.0000021517,0.0000021489,0.0000021479,0.0000021482,0.0000021503, +0.0000021540,0.0000021583,0.0000021628,0.0000021673,0.0000021716, +0.0000021754,0.0000021784,0.0000021801,0.0000021806,0.0000021799, +0.0000021795,0.0000021801,0.0000021818,0.0000021841,0.0000021868, +0.0000021895,0.0000021910,0.0000021917,0.0000021918,0.0000021905, +0.0000021886,0.0000021870,0.0000021843,0.0000021811,0.0000021776, +0.0000021747,0.0000021721,0.0000021724,0.0000021720,0.0000021745, +0.0000021779,0.0000021821,0.0000021869,0.0000021912,0.0000021941, +0.0000021956,0.0000021953,0.0000021938,0.0000021918,0.0000021896, +0.0000021871,0.0000021860,0.0000021857,0.0000021891,0.0000021959, +0.0000022048,0.0000022145,0.0000022228,0.0000022290,0.0000022336, +0.0000022381,0.0000022439,0.0000022521,0.0000022630,0.0000022753, +0.0000022867,0.0000022963,0.0000023039,0.0000023096,0.0000023134, +0.0000023155,0.0000023167,0.0000023177,0.0000023190,0.0000023205, +0.0000023220,0.0000023237,0.0000023252,0.0000023268,0.0000023287, +0.0000023311,0.0000023338,0.0000023366,0.0000023393,0.0000023417, +0.0000023436,0.0000023447,0.0000023453,0.0000023453,0.0000023448, +0.0000023436,0.0000023422,0.0000023408,0.0000023391,0.0000023374, +0.0000023355,0.0000023333,0.0000023309,0.0000023286,0.0000023265, +0.0000023247,0.0000023233,0.0000023223,0.0000023222,0.0000023220, +0.0000023214,0.0000023203,0.0000023188,0.0000023169,0.0000023145, +0.0000023115,0.0000023079,0.0000023035,0.0000022988,0.0000022942, +0.0000022895,0.0000022848,0.0000022796,0.0000022745,0.0000022700, +0.0000022660,0.0000022621,0.0000022587,0.0000022560,0.0000022535, +0.0000022508,0.0000022474,0.0000022437,0.0000022414,0.0000022410, +0.0000022400,0.0000022349,0.0000022233,0.0000022057,0.0000021860, +0.0000021686,0.0000021568,0.0000021510,0.0000021490,0.0000021489, +0.0000021481,0.0000021435,0.0000021344,0.0000021225,0.0000021138, +0.0000021109,0.0000021120,0.0000021162,0.0000021213,0.0000021256, +0.0000021291,0.0000021308,0.0000021304,0.0000021282,0.0000021250, +0.0000021222,0.0000021203,0.0000021184,0.0000021166,0.0000021135, +0.0000021083,0.0000021019,0.0000020955,0.0000020900,0.0000020854, +0.0000020821,0.0000020793,0.0000020766,0.0000020737,0.0000020705, +0.0000020672,0.0000020632,0.0000020581,0.0000020523,0.0000020451, +0.0000020372,0.0000020292,0.0000020204,0.0000020122,0.0000020056, +0.0000020009,0.0000019994,0.0000019996,0.0000020012,0.0000020038, +0.0000020085,0.0000020177,0.0000020325,0.0000020509,0.0000020684, +0.0000020800,0.0000020845,0.0000020848,0.0000020845,0.0000020839, +0.0000020827,0.0000020814,0.0000020810,0.0000020815,0.0000020819, +0.0000020818,0.0000020812,0.0000020790,0.0000020743,0.0000020663, +0.0000020557,0.0000020447,0.0000020372,0.0000020358,0.0000020410, +0.0000020529,0.0000020678,0.0000020824,0.0000020945,0.0000021027, +0.0000021113,0.0000021252,0.0000021438,0.0000021627,0.0000021789, +0.0000021914,0.0000021998,0.0000022058,0.0000022123,0.0000022199, +0.0000022259,0.0000022261,0.0000022176,0.0000022055,0.0000021957, +0.0000021914,0.0000021909,0.0000021927,0.0000021945,0.0000021956, +0.0000021975,0.0000022012,0.0000022062,0.0000022108,0.0000022144, +0.0000022177,0.0000022215,0.0000022263,0.0000022321,0.0000022376, +0.0000022409,0.0000022413,0.0000022391,0.0000022298,0.0000022150, +0.0000022000,0.0000021903,0.0000021879,0.0000021871,0.0000021887, +0.0000021935,0.0000022035,0.0000022179,0.0000022317,0.0000022407, +0.0000022466,0.0000022525,0.0000022590,0.0000022645,0.0000022679, +0.0000022691,0.0000022688,0.0000022684,0.0000022687,0.0000022695, +0.0000022701,0.0000022699,0.0000022687,0.0000022670,0.0000022645, +0.0000022627,0.0000022622,0.0000022627,0.0000022644,0.0000022669, +0.0000022683,0.0000022663,0.0000022559,0.0000022393,0.0000022241, +0.0000022158,0.0000022139,0.0000022163,0.0000022208,0.0000022221, +0.0000022185,0.0000022130,0.0000022163,0.0000022301,0.0000022343, +0.0000022259,0.0000022223,0.0000022312,0.0000022437,0.0000022470, +0.0000022446,0.0000022395,0.0000022362,0.0000022310,0.0000022169, +0.0000021976,0.0000021821,0.0000021730,0.0000021665,0.0000021608, +0.0000021562,0.0000021525,0.0000021493,0.0000021459,0.0000021423, +0.0000021387,0.0000021349,0.0000021314,0.0000021289,0.0000021270, +0.0000021253,0.0000021233,0.0000021218,0.0000021208,0.0000021203, +0.0000021216,0.0000021254,0.0000021294,0.0000021335,0.0000021383, +0.0000021429,0.0000021488,0.0000021568,0.0000021672,0.0000021808, +0.0000021957,0.0000022097,0.0000022215,0.0000022299,0.0000022344, +0.0000022347,0.0000022326,0.0000022292,0.0000022262,0.0000022234, +0.0000022190,0.0000022114,0.0000021997,0.0000021842,0.0000021676, +0.0000021553,0.0000021547,0.0000021665,0.0000021852,0.0000021991, +0.0000022120,0.0000022321,0.0000022457,0.0000022339,0.0000022028, +0.0000021796,0.0000021752,0.0000021772,0.0000021805,0.0000021877, +0.0000021975,0.0000022070,0.0000022124,0.0000022131,0.0000022119, +0.0000022114,0.0000022121,0.0000022128,0.0000022127,0.0000022125, +0.0000022138,0.0000022179,0.0000022238,0.0000022295,0.0000022332, +0.0000022321,0.0000022264,0.0000022195,0.0000022146,0.0000022124, +0.0000022128,0.0000022164,0.0000022268,0.0000022410,0.0000022535, +0.0000022624,0.0000022696,0.0000022762,0.0000022812,0.0000022840, +0.0000022845,0.0000022827,0.0000022785,0.0000022728,0.0000022664, +0.0000022603,0.0000022561,0.0000022539,0.0000022505,0.0000022426, +0.0000022267,0.0000022072,0.0000021916,0.0000021850,0.0000021821, +0.0000021795,0.0000021729,0.0000021608,0.0000021448,0.0000021292, +0.0000021175,0.0000021098,0.0000021045,0.0000021014,0.0000021004, +0.0000021001,0.0000020988,0.0000020959,0.0000020920,0.0000020891, +0.0000020871,0.0000020857,0.0000020839,0.0000020805,0.0000020746, +0.0000020671,0.0000020591,0.0000020515,0.0000020455,0.0000020417, +0.0000020399,0.0000020390,0.0000020387,0.0000020386,0.0000020401, +0.0000020443,0.0000020509,0.0000020583,0.0000020660,0.0000020733, +0.0000020789,0.0000020816,0.0000020826,0.0000020841,0.0000020867, +0.0000020900,0.0000020924,0.0000020927,0.0000020913,0.0000020890, +0.0000020851,0.0000020799,0.0000020768,0.0000020748,0.0000020771, +0.0000020818,0.0000020872,0.0000020929,0.0000020997,0.0000021087, +0.0000021203,0.0000021328,0.0000021426,0.0000021468,0.0000021458, +0.0000021432,0.0000021412,0.0000021370,0.0000021301,0.0000021190, +0.0000021070,0.0000020939,0.0000020794,0.0000020663,0.0000020603, +0.0000020586,0.0000020650,0.0000020752,0.0000020853,0.0000020931, +0.0000021002,0.0000021091,0.0000021202,0.0000021315,0.0000021409, +0.0000021484,0.0000021562,0.0000021658,0.0000021785,0.0000021927, +0.0000022057,0.0000022148,0.0000022197,0.0000022227,0.0000022251, +0.0000022289,0.0000022355,0.0000022418,0.0000022446,0.0000022438, +0.0000022406,0.0000022361,0.0000022317,0.0000022283,0.0000022261, +0.0000022270,0.0000022351,0.0000022517,0.0000022721,0.0000022901, +0.0000023019,0.0000023088,0.0000023155,0.0000023262,0.0000023407, +0.0000023547,0.0000023652,0.0000023721,0.0000023762,0.0000023786, +0.0000023804,0.0000023819,0.0000023828,0.0000023831,0.0000023835, +0.0000023842,0.0000023844,0.0000023841,0.0000023831,0.0000023810, +0.0000023788,0.0000023768,0.0000023744,0.0000023713,0.0000023670, +0.0000023617,0.0000023555,0.0000023482,0.0000023398,0.0000023309, +0.0000023224,0.0000023130,0.0000023012,0.0000022870,0.0000022728, +0.0000022614,0.0000022521,0.0000022431,0.0000022344,0.0000022260, +0.0000022174,0.0000022081,0.0000021971,0.0000021840,0.0000021723, +0.0000021652,0.0000021629,0.0000021617,0.0000021593,0.0000021552, +0.0000021502,0.0000021459,0.0000021424,0.0000021400,0.0000021388, +0.0000021375,0.0000021357,0.0000021341,0.0000021331,0.0000021323, +0.0000021319,0.0000021318,0.0000021321,0.0000021325,0.0000021330, +0.0000021335,0.0000021336,0.0000021332,0.0000021323,0.0000021310, +0.0000021301,0.0000021288,0.0000021270,0.0000021252,0.0000021241, +0.0000021241,0.0000021244,0.0000021246,0.0000021243,0.0000021233, +0.0000021220,0.0000021209,0.0000021194,0.0000021170,0.0000021140, +0.0000021109,0.0000021081,0.0000021062,0.0000021055,0.0000021057, +0.0000021070,0.0000021085,0.0000021090,0.0000021072,0.0000021050, +0.0000021020,0.0000020984,0.0000020946,0.0000020910,0.0000020882, +0.0000020866,0.0000020866,0.0000020864,0.0000020867,0.0000020881, +0.0000020905,0.0000020934,0.0000020967,0.0000021006,0.0000021046, +0.0000021081,0.0000021115,0.0000021151,0.0000021191,0.0000021236, +0.0000021286,0.0000021336,0.0000021381,0.0000021415,0.0000021433, +0.0000021432,0.0000021422,0.0000021405,0.0000021378,0.0000021337, +0.0000021286,0.0000021231,0.0000021177,0.0000021128,0.0000021085, +0.0000021051,0.0000021022,0.0000020996,0.0000020973,0.0000020951, +0.0000020927,0.0000020896,0.0000020858,0.0000020812,0.0000020763, +0.0000020719,0.0000020682,0.0000020656,0.0000020638,0.0000020625, +0.0000020617,0.0000020612,0.0000020615,0.0000020624,0.0000020636, +0.0000020645,0.0000020653,0.0000020661,0.0000020672,0.0000020685, +0.0000020703,0.0000020712,0.0000020715,0.0000020708,0.0000020692, +0.0000020668,0.0000020636,0.0000020601,0.0000020571,0.0000020549, +0.0000020536,0.0000020534,0.0000020544,0.0000020563,0.0000020583, +0.0000020597,0.0000020602,0.0000020601,0.0000020595,0.0000020578, +0.0000020551,0.0000020514,0.0000020481,0.0000020452,0.0000020424, +0.0000020395,0.0000020373,0.0000020369,0.0000020388,0.0000020431, +0.0000020486,0.0000020545,0.0000020600,0.0000020647,0.0000020679, +0.0000020695,0.0000020695,0.0000020687,0.0000020665,0.0000020631, +0.0000020596,0.0000020565,0.0000020538,0.0000020513,0.0000020478, +0.0000020418,0.0000020328,0.0000020217,0.0000020113,0.0000020039, +0.0000020000,0.0000019978,0.0000019959,0.0000019943,0.0000019935, +0.0000019929,0.0000019920,0.0000019913,0.0000019916,0.0000019929, +0.0000019951,0.0000019974,0.0000019988,0.0000019989,0.0000019978, +0.0000019951,0.0000019901,0.0000019843,0.0000019800,0.0000019778, +0.0000019761,0.0000019721,0.0000019724,0.0000019864,0.0000020038, +0.0000020194,0.0000020337,0.0000020329,0.0000020286,0.0000020334, +0.0000020359,0.0000020394,0.0000020484,0.0000020495,0.0000020379, +0.0000020258,0.0000020226,0.0000020244,0.0000020273,0.0000020291, +0.0000020301,0.0000020314,0.0000020329,0.0000020337,0.0000020335, +0.0000020328,0.0000020313,0.0000020290,0.0000020270,0.0000020265, +0.0000020271,0.0000020287,0.0000020306,0.0000020331,0.0000020355, +0.0000020367,0.0000020367,0.0000020368,0.0000020383,0.0000020377, +0.0000020348,0.0000020333,0.0000020303,0.0000020260,0.0000020264, +0.0000020321,0.0000020388,0.0000020433,0.0000020468,0.0000020504, +0.0000020537,0.0000020559,0.0000020560,0.0000020537,0.0000020484, +0.0000020424,0.0000020369,0.0000020315,0.0000020284,0.0000020293, +0.0000020316,0.0000020336,0.0000020340,0.0000020331,0.0000020309, +0.0000020275,0.0000020233,0.0000020200,0.0000020188,0.0000020194, +0.0000020209,0.0000020230,0.0000020251,0.0000020262,0.0000020255, +0.0000020233,0.0000020202,0.0000020176,0.0000020156,0.0000020136, +0.0000020116,0.0000020102,0.0000020101,0.0000020111,0.0000020129, +0.0000020150,0.0000020170,0.0000020190,0.0000020209,0.0000020229, +0.0000020249,0.0000020266,0.0000020278,0.0000020284,0.0000020285, +0.0000020280,0.0000020264,0.0000020240,0.0000020217,0.0000020194, +0.0000020170,0.0000020149,0.0000020139,0.0000020135,0.0000020135, +0.0000020140,0.0000020154,0.0000020172,0.0000020188,0.0000020204, +0.0000020223,0.0000020245,0.0000020268,0.0000020286,0.0000020300, +0.0000020307,0.0000020306,0.0000020297,0.0000020281,0.0000020260, +0.0000020238,0.0000020218,0.0000020209,0.0000020208,0.0000020207, +0.0000020201,0.0000020195,0.0000020193,0.0000020195,0.0000020197, +0.0000020200,0.0000020207,0.0000020220,0.0000020235,0.0000020252, +0.0000020269,0.0000020280,0.0000020285,0.0000020289,0.0000020298, +0.0000020311,0.0000020317,0.0000020312,0.0000020291,0.0000020258, +0.0000020216,0.0000020166,0.0000020114,0.0000020075,0.0000020054, +0.0000020052,0.0000020070,0.0000020102,0.0000020129,0.0000020143, +0.0000020152,0.0000020165,0.0000020183,0.0000020202,0.0000020219, +0.0000020237,0.0000020264,0.0000020299,0.0000020325,0.0000020331, +0.0000020343,0.0000020406,0.0000020526,0.0000020650,0.0000020740, +0.0000020808,0.0000020851,0.0000020855,0.0000020845,0.0000020824, +0.0000020765,0.0000020689,0.0000020622,0.0000020600,0.0000020664, +0.0000020645,0.0000020650,0.0000020679,0.0000020714,0.0000020759, +0.0000020814,0.0000020866,0.0000020905,0.0000020928,0.0000020945, +0.0000020987,0.0000021068,0.0000021185,0.0000021303,0.0000021388, +0.0000021432,0.0000021433,0.0000021399,0.0000021342,0.0000021263, +0.0000021176,0.0000021098,0.0000021038,0.0000020997,0.0000020962, +0.0000020923,0.0000020877,0.0000020823,0.0000020766,0.0000020714, +0.0000020668,0.0000020632,0.0000020612,0.0000020608,0.0000020613, +0.0000020627,0.0000020645,0.0000020667,0.0000020697,0.0000020730, +0.0000020769,0.0000020819,0.0000020867,0.0000020897,0.0000020907, +0.0000020904,0.0000020886,0.0000020853,0.0000020808,0.0000020764, +0.0000020725,0.0000020688,0.0000020660,0.0000020654,0.0000020668, +0.0000020699,0.0000020739,0.0000020774,0.0000020793,0.0000020798, +0.0000020796,0.0000020801,0.0000020828,0.0000020876,0.0000020939, +0.0000021002,0.0000021059,0.0000021108,0.0000021148,0.0000021174, +0.0000021183,0.0000021180,0.0000021167,0.0000021154,0.0000021143, +0.0000021139,0.0000021157,0.0000021197,0.0000021237,0.0000021258, +0.0000021259,0.0000021248,0.0000021233,0.0000021218,0.0000021203, +0.0000021193,0.0000021185,0.0000021182,0.0000021181,0.0000021180, +0.0000021175,0.0000021170,0.0000021171,0.0000021176,0.0000021180, +0.0000021180,0.0000021179,0.0000021176,0.0000021170,0.0000021158, +0.0000021138,0.0000021112,0.0000021086,0.0000021069,0.0000021062, +0.0000021062,0.0000021065,0.0000021073,0.0000021082,0.0000021089, +0.0000021095,0.0000021101,0.0000021103,0.0000021100,0.0000021093, +0.0000021082,0.0000021064,0.0000021035,0.0000020998,0.0000020960, +0.0000020935,0.0000020924,0.0000020919,0.0000020918,0.0000020922, +0.0000020930,0.0000020943,0.0000020958,0.0000020976,0.0000020998, +0.0000021019,0.0000021037,0.0000021049,0.0000021055,0.0000021060, +0.0000021071,0.0000021094,0.0000021123,0.0000021160,0.0000021201, +0.0000021245,0.0000021290,0.0000021331,0.0000021361,0.0000021373, +0.0000021377,0.0000021373,0.0000021365,0.0000021354,0.0000021337, +0.0000021311,0.0000021278,0.0000021243,0.0000021215,0.0000021204, +0.0000021207,0.0000021218,0.0000021230,0.0000021238,0.0000021244, +0.0000021250,0.0000021253,0.0000021253,0.0000021250,0.0000021241, +0.0000021223,0.0000021199,0.0000021179,0.0000021165,0.0000021154, +0.0000021147,0.0000021147,0.0000021155,0.0000021175,0.0000021209, +0.0000021252,0.0000021298,0.0000021339,0.0000021366,0.0000021379, +0.0000021383,0.0000021381,0.0000021374,0.0000021360,0.0000021349, +0.0000021348,0.0000021355,0.0000021366,0.0000021412,0.0000021502, +0.0000021583,0.0000021620,0.0000021668,0.0000021761,0.0000021831, +0.0000021840,0.0000021781,0.0000021662,0.0000021602,0.0000021638, +0.0000021692,0.0000021690,0.0000021671,0.0000021681,0.0000021711, +0.0000021738,0.0000021761,0.0000021779,0.0000021789,0.0000021796, +0.0000021802,0.0000021803,0.0000021804,0.0000021812,0.0000021832, +0.0000021860,0.0000021895,0.0000021941,0.0000021995,0.0000022044, +0.0000022081,0.0000022106,0.0000022124,0.0000022137,0.0000022152, +0.0000022172,0.0000022193,0.0000022211,0.0000022227,0.0000022245, +0.0000022267,0.0000022290,0.0000022311,0.0000022332,0.0000022354, +0.0000022380,0.0000022411,0.0000022445,0.0000022478,0.0000022509, +0.0000022535,0.0000022556,0.0000022574,0.0000022587,0.0000022592, +0.0000022591,0.0000022584,0.0000022573,0.0000022557,0.0000022533, +0.0000022504,0.0000022473,0.0000022437,0.0000022397,0.0000022357, +0.0000022315,0.0000022273,0.0000022235,0.0000022200,0.0000022170, +0.0000022145,0.0000022123,0.0000022107,0.0000022095,0.0000022087, +0.0000022076,0.0000022057,0.0000022030,0.0000021994,0.0000021953, +0.0000021908,0.0000021858,0.0000021801,0.0000021741,0.0000021686, +0.0000021640,0.0000021606,0.0000021580,0.0000021550,0.0000021510, +0.0000021460,0.0000021405,0.0000021352,0.0000021305,0.0000021272, +0.0000021253,0.0000021247,0.0000021250,0.0000021262,0.0000021281, +0.0000021309,0.0000021338,0.0000021355,0.0000021353,0.0000021337, +0.0000021307,0.0000021255,0.0000021182,0.0000021109,0.0000021053, +0.0000021022,0.0000021013,0.0000021016,0.0000021026,0.0000021041, +0.0000021067,0.0000021104,0.0000021147,0.0000021192,0.0000021226, +0.0000021250,0.0000021278,0.0000021312,0.0000021349,0.0000021376, +0.0000021383,0.0000021379,0.0000021357,0.0000021314,0.0000021255, +0.0000021198,0.0000021158,0.0000021143,0.0000021142,0.0000021138, +0.0000021133,0.0000021130,0.0000021116,0.0000021089,0.0000021056, +0.0000021026,0.0000020998,0.0000020973,0.0000020967,0.0000020932, +0.0000020843,0.0000020770,0.0000020764,0.0000020811,0.0000020858, +0.0000020863,0.0000020845,0.0000020767,0.0000020675,0.0000020629, +0.0000020603,0.0000020656,0.0000020785,0.0000020819,0.0000020806, +0.0000020808,0.0000020870,0.0000020963,0.0000021023,0.0000021033, +0.0000020999,0.0000020990,0.0000021020,0.0000021099,0.0000021178, +0.0000021229,0.0000021262,0.0000021322,0.0000021409,0.0000021466, +0.0000021494,0.0000021600,0.0000021676,0.0000021666,0.0000021651, +0.0000021678,0.0000021794,0.0000021899,0.0000021988,0.0000022023, +0.0000021962,0.0000021904,0.0000021975,0.0000022112,0.0000022131, +0.0000022023,0.0000021886,0.0000021762,0.0000021699,0.0000021711, +0.0000021739,0.0000021797,0.0000021902,0.0000022013,0.0000022130, +0.0000022220,0.0000022234,0.0000022194,0.0000022140,0.0000022107, +0.0000022108,0.0000022139,0.0000022182,0.0000022221,0.0000022257, +0.0000022285,0.0000022321,0.0000022366,0.0000022412,0.0000022476, +0.0000022552,0.0000022622,0.0000022681,0.0000022729,0.0000022767, +0.0000022812,0.0000022848,0.0000022881,0.0000022900,0.0000022893, +0.0000022877,0.0000022858,0.0000022854,0.0000022866,0.0000022893, +0.0000022922,0.0000022951,0.0000022968,0.0000022964,0.0000022964, +0.0000022928,0.0000022857,0.0000022753,0.0000022656,0.0000022599, +0.0000022582,0.0000022566,0.0000022511,0.0000022433,0.0000022362, +0.0000022324,0.0000022313,0.0000022299,0.0000022265,0.0000022188, +0.0000022089,0.0000022087,0.0000022142,0.0000022126,0.0000022078, +0.0000022014,0.0000021975,0.0000021987,0.0000022048,0.0000022106, +0.0000022157,0.0000022193,0.0000022206,0.0000022204,0.0000022186, +0.0000022164,0.0000022149,0.0000022145,0.0000022166,0.0000022201, +0.0000022246,0.0000022302,0.0000022352,0.0000022385,0.0000022398, +0.0000022403,0.0000022404,0.0000022406,0.0000022416,0.0000022425, +0.0000022435,0.0000022451,0.0000022465,0.0000022475,0.0000022483, +0.0000022498,0.0000022525,0.0000022553,0.0000022575,0.0000022594, +0.0000022611,0.0000022632,0.0000022652,0.0000022671,0.0000022698, +0.0000022733,0.0000022766,0.0000022794,0.0000022816,0.0000022828, +0.0000022834,0.0000022837,0.0000022834,0.0000022815,0.0000022785, +0.0000022752,0.0000022713,0.0000022661,0.0000022601,0.0000022555, +0.0000022522,0.0000022505,0.0000022514,0.0000022557,0.0000022613, +0.0000022678,0.0000022737,0.0000022772,0.0000022792,0.0000022815, +0.0000022843,0.0000022869,0.0000022873,0.0000022851,0.0000022821, +0.0000022805,0.0000022789,0.0000022774,0.0000022762,0.0000022732, +0.0000022672,0.0000022601,0.0000022534,0.0000022477,0.0000022432, +0.0000022385,0.0000022310,0.0000022223,0.0000022166,0.0000022115, +0.0000022070,0.0000022083,0.0000022159,0.0000022268,0.0000022363, +0.0000022384,0.0000022324,0.0000022191,0.0000022067,0.0000022004, +0.0000021989,0.0000021988,0.0000021995,0.0000022012,0.0000022025, +0.0000022034,0.0000022032,0.0000022014,0.0000021980,0.0000021940, +0.0000021900,0.0000021857,0.0000021817,0.0000021788,0.0000021777, +0.0000021779,0.0000021782,0.0000021773,0.0000021748,0.0000021716, +0.0000021679,0.0000021641,0.0000021608,0.0000021586,0.0000021571, +0.0000021562,0.0000021550,0.0000021534,0.0000021520,0.0000021521, +0.0000021541,0.0000021580,0.0000021627,0.0000021667,0.0000021690, +0.0000021699,0.0000021696,0.0000021703,0.0000021729,0.0000021774, +0.0000021843,0.0000021927,0.0000022010,0.0000022085,0.0000022155, +0.0000022214,0.0000022255,0.0000022274,0.0000022259,0.0000022190, +0.0000022097,0.0000021996,0.0000021914,0.0000021871,0.0000021850, +0.0000021852,0.0000021874,0.0000021900,0.0000021924,0.0000021944, +0.0000021966,0.0000021991,0.0000022012,0.0000022030,0.0000022043, +0.0000022054,0.0000022058,0.0000022052,0.0000022044,0.0000022032, +0.0000022019,0.0000022004,0.0000021985,0.0000021964,0.0000021945, +0.0000021926,0.0000021908,0.0000021891,0.0000021877,0.0000021872, +0.0000021872,0.0000021870,0.0000021864,0.0000021847,0.0000021815, +0.0000021768,0.0000021707,0.0000021636,0.0000021563,0.0000021493, +0.0000021430,0.0000021383,0.0000021358,0.0000021351,0.0000021353, +0.0000021367,0.0000021390,0.0000021419,0.0000021455,0.0000021497, +0.0000021544,0.0000021592,0.0000021637,0.0000021676,0.0000021702, +0.0000021716,0.0000021728,0.0000021743,0.0000021762,0.0000021786, +0.0000021811,0.0000021838,0.0000021866,0.0000021890,0.0000021904, +0.0000021904,0.0000021904,0.0000021894,0.0000021870,0.0000021860, +0.0000021832,0.0000021799,0.0000021770,0.0000021747,0.0000021729, +0.0000021720,0.0000021716,0.0000021718,0.0000021741,0.0000021768, +0.0000021803,0.0000021843,0.0000021874,0.0000021890,0.0000021891, +0.0000021879,0.0000021865,0.0000021854,0.0000021851,0.0000021848, +0.0000021849,0.0000021854,0.0000021908,0.0000021984,0.0000022065, +0.0000022148,0.0000022212,0.0000022263,0.0000022310,0.0000022363, +0.0000022437,0.0000022535,0.0000022644,0.0000022752,0.0000022850, +0.0000022934,0.0000023001,0.0000023049,0.0000023080,0.0000023100, +0.0000023113,0.0000023124,0.0000023135,0.0000023150,0.0000023169, +0.0000023191,0.0000023211,0.0000023228,0.0000023246,0.0000023264, +0.0000023279,0.0000023289,0.0000023292,0.0000023291,0.0000023286, +0.0000023278,0.0000023266,0.0000023253,0.0000023241,0.0000023228, +0.0000023214,0.0000023200,0.0000023185,0.0000023167,0.0000023149, +0.0000023135,0.0000023123,0.0000023115,0.0000023111,0.0000023109, +0.0000023115,0.0000023118,0.0000023114,0.0000023100,0.0000023078, +0.0000023049,0.0000023014,0.0000022973,0.0000022925,0.0000022871, +0.0000022815,0.0000022761,0.0000022710,0.0000022662,0.0000022623, +0.0000022588,0.0000022555,0.0000022525,0.0000022500,0.0000022482, +0.0000022464,0.0000022443,0.0000022418,0.0000022396,0.0000022384, +0.0000022373,0.0000022332,0.0000022238,0.0000022088,0.0000021909, +0.0000021740,0.0000021613,0.0000021546,0.0000021530,0.0000021541, +0.0000021548,0.0000021526,0.0000021451,0.0000021342,0.0000021226, +0.0000021155,0.0000021142,0.0000021169,0.0000021218,0.0000021268, +0.0000021305,0.0000021331,0.0000021337,0.0000021325,0.0000021294, +0.0000021255,0.0000021221,0.0000021198,0.0000021176,0.0000021148, +0.0000021094,0.0000021016,0.0000020929,0.0000020851,0.0000020789, +0.0000020746,0.0000020722,0.0000020707,0.0000020696,0.0000020686, +0.0000020674,0.0000020664,0.0000020644,0.0000020618,0.0000020578, +0.0000020525,0.0000020457,0.0000020380,0.0000020291,0.0000020195, +0.0000020098,0.0000020011,0.0000019964,0.0000019943,0.0000019946, +0.0000019964,0.0000019993,0.0000020037,0.0000020113,0.0000020233, +0.0000020398,0.0000020581,0.0000020730,0.0000020802,0.0000020817, +0.0000020817,0.0000020819,0.0000020816,0.0000020813,0.0000020816, +0.0000020829,0.0000020837,0.0000020837,0.0000020828,0.0000020811, +0.0000020777,0.0000020716,0.0000020625,0.0000020517,0.0000020419, +0.0000020361,0.0000020372,0.0000020464,0.0000020612,0.0000020783, +0.0000020914,0.0000020991,0.0000021044,0.0000021139,0.0000021299, +0.0000021492,0.0000021679,0.0000021837,0.0000021949,0.0000022019, +0.0000022082,0.0000022159,0.0000022231,0.0000022241,0.0000022200, +0.0000022109,0.0000022002,0.0000021926,0.0000021911,0.0000021915, +0.0000021934,0.0000021953,0.0000021977,0.0000022014,0.0000022062, +0.0000022109,0.0000022143,0.0000022164,0.0000022183,0.0000022212, +0.0000022255,0.0000022308,0.0000022357,0.0000022390,0.0000022387, +0.0000022348,0.0000022238,0.0000022085,0.0000021949,0.0000021856, +0.0000021830,0.0000021821,0.0000021842,0.0000021896,0.0000021999, +0.0000022133,0.0000022260,0.0000022357,0.0000022429,0.0000022490, +0.0000022535,0.0000022563,0.0000022575,0.0000022574,0.0000022571, +0.0000022572,0.0000022581,0.0000022596,0.0000022610,0.0000022618, +0.0000022620,0.0000022619,0.0000022623,0.0000022631,0.0000022643, +0.0000022661,0.0000022665,0.0000022618,0.0000022498,0.0000022335, +0.0000022197,0.0000022122,0.0000022100,0.0000022118,0.0000022161, +0.0000022172,0.0000022131,0.0000022085,0.0000022138,0.0000022277, +0.0000022299,0.0000022217,0.0000022212,0.0000022319,0.0000022433, +0.0000022451,0.0000022416,0.0000022355,0.0000022318,0.0000022253, +0.0000022090,0.0000021890,0.0000021754,0.0000021688,0.0000021640, +0.0000021581,0.0000021522,0.0000021477,0.0000021445,0.0000021423, +0.0000021404,0.0000021384,0.0000021357,0.0000021329,0.0000021302, +0.0000021276,0.0000021254,0.0000021228,0.0000021204,0.0000021186, +0.0000021172,0.0000021158,0.0000021159,0.0000021193,0.0000021246, +0.0000021300,0.0000021354,0.0000021397,0.0000021442,0.0000021500, +0.0000021577,0.0000021695,0.0000021841,0.0000021979,0.0000022108, +0.0000022223,0.0000022298,0.0000022329,0.0000022321,0.0000022302, +0.0000022270,0.0000022242,0.0000022216,0.0000022180,0.0000022113, +0.0000022000,0.0000021842,0.0000021671,0.0000021548,0.0000021545, +0.0000021669,0.0000021854,0.0000021992,0.0000022134,0.0000022334, +0.0000022461,0.0000022342,0.0000022051,0.0000021824,0.0000021784, +0.0000021790,0.0000021848,0.0000021927,0.0000022012,0.0000022078, +0.0000022111,0.0000022118,0.0000022115,0.0000022112,0.0000022115, +0.0000022119,0.0000022122,0.0000022130,0.0000022160,0.0000022218, +0.0000022292,0.0000022355,0.0000022395,0.0000022384,0.0000022329, +0.0000022259,0.0000022196,0.0000022156,0.0000022155,0.0000022193, +0.0000022287,0.0000022423,0.0000022548,0.0000022629,0.0000022690, +0.0000022742,0.0000022771,0.0000022778,0.0000022768,0.0000022740, +0.0000022695,0.0000022640,0.0000022582,0.0000022537,0.0000022503, +0.0000022477,0.0000022429,0.0000022327,0.0000022166,0.0000021989, +0.0000021858,0.0000021812,0.0000021791,0.0000021760,0.0000021686, +0.0000021559,0.0000021402,0.0000021259,0.0000021154,0.0000021088, +0.0000021057,0.0000021050,0.0000021050,0.0000021045,0.0000021025, +0.0000020988,0.0000020948,0.0000020915,0.0000020890,0.0000020870, +0.0000020845,0.0000020804,0.0000020751,0.0000020688,0.0000020620, +0.0000020547,0.0000020481,0.0000020436,0.0000020413,0.0000020397, +0.0000020379,0.0000020370,0.0000020374,0.0000020400,0.0000020452, +0.0000020527,0.0000020616,0.0000020702,0.0000020763,0.0000020793, +0.0000020798,0.0000020801,0.0000020819,0.0000020849,0.0000020877, +0.0000020894,0.0000020896,0.0000020878,0.0000020836,0.0000020778, +0.0000020726,0.0000020704,0.0000020708,0.0000020741,0.0000020786, +0.0000020842,0.0000020910,0.0000020998,0.0000021115,0.0000021246, +0.0000021354,0.0000021402,0.0000021392,0.0000021363,0.0000021342, +0.0000021309,0.0000021242,0.0000021139,0.0000021033,0.0000020920, +0.0000020786,0.0000020653,0.0000020563,0.0000020549,0.0000020590, +0.0000020680,0.0000020782,0.0000020869,0.0000020948,0.0000021036, +0.0000021151,0.0000021271,0.0000021370,0.0000021452,0.0000021530, +0.0000021623,0.0000021736,0.0000021864,0.0000021986,0.0000022071, +0.0000022118,0.0000022146,0.0000022166,0.0000022205,0.0000022272, +0.0000022339,0.0000022372,0.0000022365,0.0000022336,0.0000022298, +0.0000022264,0.0000022242,0.0000022225,0.0000022225,0.0000022290, +0.0000022444,0.0000022646,0.0000022828,0.0000022949,0.0000023019, +0.0000023081,0.0000023175,0.0000023302,0.0000023437,0.0000023553, +0.0000023632,0.0000023674,0.0000023695,0.0000023712,0.0000023726, +0.0000023734,0.0000023738,0.0000023743,0.0000023744,0.0000023741, +0.0000023731,0.0000023714,0.0000023693,0.0000023674,0.0000023655, +0.0000023634,0.0000023599,0.0000023546,0.0000023483,0.0000023416, +0.0000023341,0.0000023260,0.0000023181,0.0000023091,0.0000022979, +0.0000022847,0.0000022709,0.0000022588,0.0000022491,0.0000022406, +0.0000022324,0.0000022241,0.0000022158,0.0000022074,0.0000021976, +0.0000021855,0.0000021732,0.0000021639,0.0000021598,0.0000021584, +0.0000021565,0.0000021532,0.0000021491,0.0000021452,0.0000021421, +0.0000021399,0.0000021393,0.0000021388,0.0000021372,0.0000021349, +0.0000021329,0.0000021310,0.0000021294,0.0000021281,0.0000021272, +0.0000021270,0.0000021273,0.0000021281,0.0000021288,0.0000021291, +0.0000021287,0.0000021281,0.0000021276,0.0000021268,0.0000021253, +0.0000021230,0.0000021209,0.0000021196,0.0000021191,0.0000021193, +0.0000021201,0.0000021210,0.0000021216,0.0000021215,0.0000021210, +0.0000021195,0.0000021169,0.0000021136,0.0000021097,0.0000021059, +0.0000021018,0.0000020990,0.0000020985,0.0000020996,0.0000021017, +0.0000021035,0.0000021043,0.0000021036,0.0000021032,0.0000021014, +0.0000020984,0.0000020953,0.0000020927,0.0000020906,0.0000020889, +0.0000020875,0.0000020870,0.0000020872,0.0000020872,0.0000020871, +0.0000020873,0.0000020878,0.0000020883,0.0000020885,0.0000020888, +0.0000020897,0.0000020912,0.0000020934,0.0000020965,0.0000021000, +0.0000021031,0.0000021055,0.0000021069,0.0000021080,0.0000021084, +0.0000021083,0.0000021083,0.0000021078,0.0000021068,0.0000021055, +0.0000021040,0.0000021022,0.0000021000,0.0000020975,0.0000020945, +0.0000020907,0.0000020866,0.0000020823,0.0000020780,0.0000020738, +0.0000020695,0.0000020648,0.0000020606,0.0000020573,0.0000020546, +0.0000020527,0.0000020515,0.0000020512,0.0000020509,0.0000020506, +0.0000020507,0.0000020519,0.0000020532,0.0000020542,0.0000020547, +0.0000020547,0.0000020550,0.0000020559,0.0000020571,0.0000020581, +0.0000020589,0.0000020594,0.0000020595,0.0000020588,0.0000020576, +0.0000020565,0.0000020553,0.0000020539,0.0000020529,0.0000020526, +0.0000020530,0.0000020541,0.0000020554,0.0000020567,0.0000020575, +0.0000020578,0.0000020577,0.0000020570,0.0000020553,0.0000020525, +0.0000020491,0.0000020461,0.0000020438,0.0000020419,0.0000020401, +0.0000020393,0.0000020400,0.0000020423,0.0000020462,0.0000020512, +0.0000020568,0.0000020618,0.0000020657,0.0000020681,0.0000020690, +0.0000020688,0.0000020672,0.0000020644,0.0000020612,0.0000020576, +0.0000020543,0.0000020516,0.0000020491,0.0000020450,0.0000020378, +0.0000020273,0.0000020155,0.0000020059,0.0000020000,0.0000019968, +0.0000019943,0.0000019920,0.0000019896,0.0000019883,0.0000019879, +0.0000019883,0.0000019889,0.0000019891,0.0000019900,0.0000019919, +0.0000019941,0.0000019951,0.0000019946,0.0000019930,0.0000019897, +0.0000019843,0.0000019787,0.0000019754,0.0000019737,0.0000019701, +0.0000019679,0.0000019797,0.0000019981,0.0000020147,0.0000020300, +0.0000020308,0.0000020269,0.0000020326,0.0000020365,0.0000020407, +0.0000020497,0.0000020505,0.0000020384,0.0000020263,0.0000020232, +0.0000020252,0.0000020276,0.0000020284,0.0000020287,0.0000020296, +0.0000020308,0.0000020318,0.0000020324,0.0000020321,0.0000020307, +0.0000020288,0.0000020279,0.0000020277,0.0000020282,0.0000020296, +0.0000020318,0.0000020347,0.0000020365,0.0000020367,0.0000020361, +0.0000020367,0.0000020377,0.0000020354,0.0000020317,0.0000020302, +0.0000020275,0.0000020262,0.0000020294,0.0000020356,0.0000020412, +0.0000020451,0.0000020484,0.0000020516,0.0000020545,0.0000020556, +0.0000020542,0.0000020491,0.0000020423,0.0000020368,0.0000020320, +0.0000020282,0.0000020281,0.0000020307,0.0000020344,0.0000020371, +0.0000020378,0.0000020368,0.0000020336,0.0000020288,0.0000020234, +0.0000020189,0.0000020166,0.0000020152,0.0000020153,0.0000020163, +0.0000020180,0.0000020190,0.0000020186,0.0000020169,0.0000020147, +0.0000020130,0.0000020110,0.0000020089,0.0000020072,0.0000020064, +0.0000020062,0.0000020065,0.0000020076,0.0000020096,0.0000020128, +0.0000020162,0.0000020188,0.0000020202,0.0000020210,0.0000020213, +0.0000020215,0.0000020216,0.0000020217,0.0000020211,0.0000020196, +0.0000020179,0.0000020164,0.0000020147,0.0000020128,0.0000020114, +0.0000020110,0.0000020113,0.0000020119,0.0000020129,0.0000020141, +0.0000020156,0.0000020171,0.0000020185,0.0000020201,0.0000020220, +0.0000020239,0.0000020254,0.0000020267,0.0000020277,0.0000020283, +0.0000020287,0.0000020287,0.0000020280,0.0000020266,0.0000020245, +0.0000020226,0.0000020216,0.0000020211,0.0000020211,0.0000020216, +0.0000020223,0.0000020225,0.0000020223,0.0000020220,0.0000020221, +0.0000020228,0.0000020237,0.0000020249,0.0000020262,0.0000020272, +0.0000020278,0.0000020280,0.0000020280,0.0000020279,0.0000020277, +0.0000020274,0.0000020269,0.0000020255,0.0000020231,0.0000020193, +0.0000020148,0.0000020099,0.0000020054,0.0000020025,0.0000020018, +0.0000020032,0.0000020060,0.0000020087,0.0000020107,0.0000020118, +0.0000020124,0.0000020130,0.0000020143,0.0000020163,0.0000020190, +0.0000020227,0.0000020275,0.0000020313,0.0000020326,0.0000020336, +0.0000020384,0.0000020489,0.0000020614,0.0000020708,0.0000020777, +0.0000020831,0.0000020844,0.0000020836,0.0000020819,0.0000020799, +0.0000020766,0.0000020718,0.0000020784,0.0000020747,0.0000020696, +0.0000020663,0.0000020654,0.0000020671,0.0000020711,0.0000020769, +0.0000020831,0.0000020891,0.0000020932,0.0000020946,0.0000020952, +0.0000020976,0.0000021036,0.0000021121,0.0000021214,0.0000021286, +0.0000021325,0.0000021325,0.0000021289,0.0000021243,0.0000021191, +0.0000021135,0.0000021090,0.0000021049,0.0000021003,0.0000020946, +0.0000020880,0.0000020809,0.0000020743,0.0000020687,0.0000020641, +0.0000020608,0.0000020594,0.0000020595,0.0000020607,0.0000020623, +0.0000020644,0.0000020670,0.0000020701,0.0000020737,0.0000020784, +0.0000020833,0.0000020867,0.0000020879,0.0000020881,0.0000020878, +0.0000020863,0.0000020833,0.0000020795,0.0000020757,0.0000020720, +0.0000020690,0.0000020679,0.0000020688,0.0000020714,0.0000020752, +0.0000020785,0.0000020798,0.0000020800,0.0000020794,0.0000020797, +0.0000020823,0.0000020876,0.0000020939,0.0000020993,0.0000021034, +0.0000021069,0.0000021104,0.0000021132,0.0000021151,0.0000021158, +0.0000021157,0.0000021153,0.0000021146,0.0000021134,0.0000021128, +0.0000021145,0.0000021182,0.0000021216,0.0000021230,0.0000021230, +0.0000021225,0.0000021219,0.0000021215,0.0000021214,0.0000021214, +0.0000021213,0.0000021210,0.0000021206,0.0000021198,0.0000021188, +0.0000021181,0.0000021180,0.0000021184,0.0000021190,0.0000021193, +0.0000021195,0.0000021193,0.0000021182,0.0000021167,0.0000021150, +0.0000021130,0.0000021112,0.0000021103,0.0000021101,0.0000021109, +0.0000021121,0.0000021130,0.0000021135,0.0000021139,0.0000021143, +0.0000021142,0.0000021138,0.0000021133,0.0000021124,0.0000021111, +0.0000021088,0.0000021052,0.0000021010,0.0000020973,0.0000020947, +0.0000020933,0.0000020926,0.0000020928,0.0000020936,0.0000020952, +0.0000020974,0.0000020998,0.0000021022,0.0000021047,0.0000021069, +0.0000021085,0.0000021093,0.0000021098,0.0000021101,0.0000021109, +0.0000021133,0.0000021161,0.0000021193,0.0000021230,0.0000021267, +0.0000021302,0.0000021335,0.0000021361,0.0000021378,0.0000021386, +0.0000021388,0.0000021388,0.0000021389,0.0000021380,0.0000021363, +0.0000021334,0.0000021296,0.0000021266,0.0000021256,0.0000021257, +0.0000021264,0.0000021268,0.0000021272,0.0000021274,0.0000021272, +0.0000021264,0.0000021253,0.0000021240,0.0000021221,0.0000021199, +0.0000021179,0.0000021167,0.0000021159,0.0000021151,0.0000021145, +0.0000021144,0.0000021151,0.0000021167,0.0000021192,0.0000021226, +0.0000021269,0.0000021312,0.0000021344,0.0000021361,0.0000021369, +0.0000021370,0.0000021362,0.0000021347,0.0000021335,0.0000021337, +0.0000021352,0.0000021362,0.0000021390,0.0000021468,0.0000021565, +0.0000021618,0.0000021648,0.0000021726,0.0000021817,0.0000021849, +0.0000021828,0.0000021730,0.0000021620,0.0000021608,0.0000021676, +0.0000021726,0.0000021720,0.0000021704,0.0000021711,0.0000021737, +0.0000021760,0.0000021778,0.0000021784,0.0000021780,0.0000021768, +0.0000021750,0.0000021727,0.0000021707,0.0000021701,0.0000021704, +0.0000021718,0.0000021746,0.0000021787,0.0000021835,0.0000021878, +0.0000021910,0.0000021934,0.0000021954,0.0000021973,0.0000021992, +0.0000022014,0.0000022034,0.0000022050,0.0000022065,0.0000022085, +0.0000022109,0.0000022133,0.0000022156,0.0000022178,0.0000022201, +0.0000022225,0.0000022255,0.0000022290,0.0000022324,0.0000022357, +0.0000022389,0.0000022418,0.0000022444,0.0000022466,0.0000022482, +0.0000022493,0.0000022501,0.0000022504,0.0000022500,0.0000022484, +0.0000022460,0.0000022428,0.0000022393,0.0000022355,0.0000022314, +0.0000022269,0.0000022223,0.0000022178,0.0000022133,0.0000022090, +0.0000022049,0.0000022010,0.0000021978,0.0000021954,0.0000021936, +0.0000021919,0.0000021896,0.0000021866,0.0000021833,0.0000021794, +0.0000021752,0.0000021709,0.0000021669,0.0000021636,0.0000021611, +0.0000021589,0.0000021565,0.0000021529,0.0000021480,0.0000021424, +0.0000021365,0.0000021307,0.0000021251,0.0000021208,0.0000021187, +0.0000021183,0.0000021182,0.0000021183,0.0000021198,0.0000021240, +0.0000021296,0.0000021338,0.0000021350,0.0000021347,0.0000021330, +0.0000021294,0.0000021231,0.0000021153,0.0000021084,0.0000021034, +0.0000021009,0.0000021003,0.0000021009,0.0000021021,0.0000021041, +0.0000021074,0.0000021115,0.0000021157,0.0000021193,0.0000021223, +0.0000021252,0.0000021293,0.0000021341,0.0000021381,0.0000021402, +0.0000021405,0.0000021388,0.0000021350,0.0000021295,0.0000021235, +0.0000021190,0.0000021169,0.0000021165,0.0000021161,0.0000021156, +0.0000021153,0.0000021138,0.0000021109,0.0000021076,0.0000021050, +0.0000021021,0.0000020998,0.0000020994,0.0000020973,0.0000020885, +0.0000020780,0.0000020752,0.0000020785,0.0000020832,0.0000020842, +0.0000020828,0.0000020757,0.0000020663,0.0000020615,0.0000020592, +0.0000020651,0.0000020772,0.0000020801,0.0000020791,0.0000020798, +0.0000020868,0.0000020951,0.0000020996,0.0000021000,0.0000020966, +0.0000020951,0.0000020973,0.0000021069,0.0000021164,0.0000021211, +0.0000021257,0.0000021343,0.0000021430,0.0000021460,0.0000021501, +0.0000021617,0.0000021655,0.0000021631,0.0000021628,0.0000021711, +0.0000021842,0.0000021944,0.0000022019,0.0000021995,0.0000021931, +0.0000021977,0.0000022138,0.0000022180,0.0000022102,0.0000021954, +0.0000021798,0.0000021709,0.0000021708,0.0000021730,0.0000021802, +0.0000021942,0.0000022069,0.0000022200,0.0000022297,0.0000022300, +0.0000022250,0.0000022197,0.0000022156,0.0000022135,0.0000022134, +0.0000022157,0.0000022198,0.0000022246,0.0000022296,0.0000022333, +0.0000022372,0.0000022418,0.0000022476,0.0000022547,0.0000022619, +0.0000022685,0.0000022741,0.0000022789,0.0000022827,0.0000022858, +0.0000022868,0.0000022871,0.0000022845,0.0000022807,0.0000022786, +0.0000022793,0.0000022827,0.0000022872,0.0000022918,0.0000022948, +0.0000022955,0.0000022932,0.0000022867,0.0000022794,0.0000022717, +0.0000022644,0.0000022597,0.0000022583,0.0000022588,0.0000022579, +0.0000022524,0.0000022432,0.0000022351,0.0000022300,0.0000022286, +0.0000022285,0.0000022260,0.0000022209,0.0000022109,0.0000022072, +0.0000022127,0.0000022149,0.0000022119,0.0000022056,0.0000021979, +0.0000021934,0.0000021938,0.0000021989,0.0000022046,0.0000022098, +0.0000022131,0.0000022147,0.0000022149,0.0000022131,0.0000022096, +0.0000022071,0.0000022067,0.0000022092,0.0000022136,0.0000022188, +0.0000022245,0.0000022303,0.0000022348,0.0000022373,0.0000022386, +0.0000022388,0.0000022388,0.0000022393,0.0000022399,0.0000022404, +0.0000022415,0.0000022431,0.0000022439,0.0000022440,0.0000022443, +0.0000022458,0.0000022487,0.0000022514,0.0000022533,0.0000022543, +0.0000022551,0.0000022561,0.0000022575,0.0000022595,0.0000022624, +0.0000022654,0.0000022682,0.0000022709,0.0000022733,0.0000022747, +0.0000022750,0.0000022747,0.0000022737,0.0000022723,0.0000022706, +0.0000022668,0.0000022614,0.0000022566,0.0000022536,0.0000022514, +0.0000022500,0.0000022501,0.0000022532,0.0000022587,0.0000022647, +0.0000022698,0.0000022734,0.0000022760,0.0000022785,0.0000022819, +0.0000022854,0.0000022866,0.0000022857,0.0000022838,0.0000022822, +0.0000022802,0.0000022781,0.0000022762,0.0000022722,0.0000022661, +0.0000022593,0.0000022521,0.0000022460,0.0000022405,0.0000022328, +0.0000022231,0.0000022151,0.0000022108,0.0000022057,0.0000022004, +0.0000022015,0.0000022081,0.0000022180,0.0000022288,0.0000022343, +0.0000022333,0.0000022266,0.0000022161,0.0000022063,0.0000022006, +0.0000021983,0.0000021984,0.0000022002,0.0000022018,0.0000022032, +0.0000022040,0.0000022042,0.0000022030,0.0000022003,0.0000021968, +0.0000021927,0.0000021879,0.0000021834,0.0000021801,0.0000021786, +0.0000021782,0.0000021776,0.0000021757,0.0000021728,0.0000021695, +0.0000021661,0.0000021624,0.0000021592,0.0000021567,0.0000021547, +0.0000021532,0.0000021514,0.0000021492,0.0000021473,0.0000021468, +0.0000021474,0.0000021498,0.0000021542,0.0000021603,0.0000021662, +0.0000021706,0.0000021725,0.0000021728,0.0000021730,0.0000021745, +0.0000021785,0.0000021856,0.0000021946,0.0000022041,0.0000022124, +0.0000022185,0.0000022225,0.0000022250,0.0000022247,0.0000022209, +0.0000022143,0.0000022047,0.0000021943,0.0000021861,0.0000021806, +0.0000021778,0.0000021788,0.0000021814,0.0000021841,0.0000021866, +0.0000021890,0.0000021917,0.0000021941,0.0000021962,0.0000021982, +0.0000021998,0.0000022007,0.0000022009,0.0000022006,0.0000021997, +0.0000021982,0.0000021961,0.0000021935,0.0000021904,0.0000021872, +0.0000021844,0.0000021819,0.0000021795,0.0000021779,0.0000021776, +0.0000021778,0.0000021780,0.0000021776,0.0000021759,0.0000021727, +0.0000021679,0.0000021616,0.0000021543,0.0000021468,0.0000021398, +0.0000021337,0.0000021295,0.0000021280,0.0000021281,0.0000021292, +0.0000021304,0.0000021314,0.0000021324,0.0000021339,0.0000021361, +0.0000021393,0.0000021431,0.0000021472,0.0000021513,0.0000021547, +0.0000021573,0.0000021595,0.0000021617,0.0000021637,0.0000021657, +0.0000021675,0.0000021695,0.0000021721,0.0000021749,0.0000021773, +0.0000021789,0.0000021800,0.0000021808,0.0000021815,0.0000021815, +0.0000021810,0.0000021801,0.0000021798,0.0000021789,0.0000021773, +0.0000021771,0.0000021754,0.0000021736,0.0000021720,0.0000021701, +0.0000021691,0.0000021702,0.0000021725,0.0000021754,0.0000021787, +0.0000021806,0.0000021815,0.0000021820,0.0000021826,0.0000021833, +0.0000021840,0.0000021839,0.0000021834,0.0000021830,0.0000021842, +0.0000021907,0.0000021982,0.0000022061,0.0000022139,0.0000022199, +0.0000022250,0.0000022308,0.0000022377,0.0000022456,0.0000022542, +0.0000022629,0.0000022708,0.0000022780,0.0000022843,0.0000022895, +0.0000022936,0.0000022966,0.0000022988,0.0000023012,0.0000023044, +0.0000023083,0.0000023118,0.0000023143,0.0000023162,0.0000023179, +0.0000023191,0.0000023197,0.0000023196,0.0000023191,0.0000023180, +0.0000023169,0.0000023156,0.0000023139,0.0000023121,0.0000023102, +0.0000023084,0.0000023066,0.0000023049,0.0000023030,0.0000023012, +0.0000022996,0.0000022979,0.0000022964,0.0000022953,0.0000022943, +0.0000022939,0.0000022936,0.0000022925,0.0000022910,0.0000022887, +0.0000022859,0.0000022826,0.0000022789,0.0000022750,0.0000022705, +0.0000022657,0.0000022608,0.0000022562,0.0000022527,0.0000022503, +0.0000022481,0.0000022459,0.0000022440,0.0000022428,0.0000022417, +0.0000022405,0.0000022390,0.0000022370,0.0000022345,0.0000022314, +0.0000022261,0.0000022170,0.0000022041,0.0000021890,0.0000021742, +0.0000021625,0.0000021558,0.0000021542,0.0000021557,0.0000021583, +0.0000021583,0.0000021537,0.0000021441,0.0000021321,0.0000021228, +0.0000021182,0.0000021186,0.0000021224,0.0000021270,0.0000021309, +0.0000021335,0.0000021351,0.0000021351,0.0000021335,0.0000021299, +0.0000021259,0.0000021223,0.0000021195,0.0000021162,0.0000021110, +0.0000021030,0.0000020939,0.0000020853,0.0000020780,0.0000020723, +0.0000020682,0.0000020659,0.0000020648,0.0000020641,0.0000020638, +0.0000020640,0.0000020647,0.0000020647,0.0000020640,0.0000020622, +0.0000020588,0.0000020539,0.0000020477,0.0000020397,0.0000020305, +0.0000020203,0.0000020089,0.0000019986,0.0000019927,0.0000019907, +0.0000019904,0.0000019918,0.0000019946,0.0000019993,0.0000020065, +0.0000020166,0.0000020305,0.0000020484,0.0000020652,0.0000020755, +0.0000020789,0.0000020792,0.0000020789,0.0000020791,0.0000020798, +0.0000020819,0.0000020842,0.0000020851,0.0000020851,0.0000020842, +0.0000020826,0.0000020801,0.0000020752,0.0000020676,0.0000020583, +0.0000020478,0.0000020381,0.0000020351,0.0000020402,0.0000020550, +0.0000020730,0.0000020879,0.0000020958,0.0000020990,0.0000021043, +0.0000021160,0.0000021331,0.0000021522,0.0000021708,0.0000021858, +0.0000021957,0.0000022033,0.0000022110,0.0000022177,0.0000022214, +0.0000022214,0.0000022157,0.0000022060,0.0000021976,0.0000021926, +0.0000021918,0.0000021927,0.0000021942,0.0000021964,0.0000021998, +0.0000022043,0.0000022090,0.0000022131,0.0000022158,0.0000022174, +0.0000022190,0.0000022212,0.0000022244,0.0000022287,0.0000022331, +0.0000022360,0.0000022355,0.0000022307,0.0000022198,0.0000022045, +0.0000021911,0.0000021807,0.0000021778,0.0000021766,0.0000021794, +0.0000021852,0.0000021943,0.0000022061,0.0000022180,0.0000022287, +0.0000022373,0.0000022434,0.0000022470,0.0000022485,0.0000022484, +0.0000022479,0.0000022478,0.0000022487,0.0000022507,0.0000022534, +0.0000022560,0.0000022581,0.0000022599,0.0000022614,0.0000022626, +0.0000022626,0.0000022596,0.0000022511,0.0000022374,0.0000022230, +0.0000022122,0.0000022067,0.0000022052,0.0000022070,0.0000022111, +0.0000022114,0.0000022062,0.0000022046,0.0000022132,0.0000022248, +0.0000022246,0.0000022182,0.0000022212,0.0000022343,0.0000022429, +0.0000022432,0.0000022382,0.0000022319,0.0000022275,0.0000022186, +0.0000021999,0.0000021801,0.0000021682,0.0000021629,0.0000021581, +0.0000021521,0.0000021454,0.0000021394,0.0000021354,0.0000021331, +0.0000021321,0.0000021316,0.0000021309,0.0000021296,0.0000021288, +0.0000021285,0.0000021272,0.0000021251,0.0000021225,0.0000021197, +0.0000021173,0.0000021154,0.0000021131,0.0000021119,0.0000021133, +0.0000021182,0.0000021246,0.0000021311,0.0000021363,0.0000021402, +0.0000021447,0.0000021503,0.0000021593,0.0000021730,0.0000021865, +0.0000021991,0.0000022126,0.0000022233,0.0000022292,0.0000022313, +0.0000022303,0.0000022276,0.0000022245,0.0000022221,0.0000022205, +0.0000022175,0.0000022111,0.0000021997,0.0000021836,0.0000021663, +0.0000021546,0.0000021537,0.0000021670,0.0000021852,0.0000021995, +0.0000022146,0.0000022345,0.0000022458,0.0000022368,0.0000022098, +0.0000021870,0.0000021805,0.0000021816,0.0000021876,0.0000021948, +0.0000022017,0.0000022068,0.0000022095,0.0000022105,0.0000022101, +0.0000022101,0.0000022109,0.0000022123,0.0000022135,0.0000022155, +0.0000022199,0.0000022270,0.0000022353,0.0000022416,0.0000022456, +0.0000022447,0.0000022398,0.0000022322,0.0000022241,0.0000022188, +0.0000022188,0.0000022218,0.0000022306,0.0000022438,0.0000022561, +0.0000022643,0.0000022693,0.0000022724,0.0000022732,0.0000022723, +0.0000022701,0.0000022668,0.0000022627,0.0000022578,0.0000022531, +0.0000022488,0.0000022453,0.0000022413,0.0000022358,0.0000022254, +0.0000022101,0.0000021940,0.0000021829,0.0000021786,0.0000021761, +0.0000021723,0.0000021649,0.0000021527,0.0000021381,0.0000021244, +0.0000021146,0.0000021096,0.0000021082,0.0000021081,0.0000021081, +0.0000021073,0.0000021046,0.0000021007,0.0000020967,0.0000020930, +0.0000020898,0.0000020871,0.0000020841,0.0000020804,0.0000020761, +0.0000020711,0.0000020647,0.0000020574,0.0000020505,0.0000020456, +0.0000020421,0.0000020393,0.0000020374,0.0000020361,0.0000020357, +0.0000020371,0.0000020413,0.0000020482,0.0000020570,0.0000020660, +0.0000020731,0.0000020763,0.0000020767,0.0000020767,0.0000020776, +0.0000020798,0.0000020831,0.0000020862,0.0000020873,0.0000020859, +0.0000020814,0.0000020755,0.0000020700,0.0000020663,0.0000020645, +0.0000020659,0.0000020698,0.0000020753,0.0000020823,0.0000020912, +0.0000021028,0.0000021163,0.0000021279,0.0000021333,0.0000021324, +0.0000021293,0.0000021270,0.0000021244,0.0000021177,0.0000021094, +0.0000021005,0.0000020901,0.0000020773,0.0000020640,0.0000020545, +0.0000020511,0.0000020529,0.0000020608,0.0000020710,0.0000020803, +0.0000020881,0.0000020976,0.0000021102,0.0000021234,0.0000021342, +0.0000021426,0.0000021504,0.0000021591,0.0000021691,0.0000021804, +0.0000021915,0.0000021992,0.0000022037,0.0000022068,0.0000022093, +0.0000022131,0.0000022194,0.0000022259,0.0000022295,0.0000022302, +0.0000022282,0.0000022253,0.0000022236,0.0000022222,0.0000022205, +0.0000022198,0.0000022249,0.0000022381,0.0000022567,0.0000022745, +0.0000022876,0.0000022961,0.0000023026,0.0000023101,0.0000023201, +0.0000023319,0.0000023435,0.0000023519,0.0000023566,0.0000023591, +0.0000023608,0.0000023621,0.0000023627,0.0000023629,0.0000023629, +0.0000023624,0.0000023616,0.0000023603,0.0000023584,0.0000023559, +0.0000023531,0.0000023503,0.0000023468,0.0000023420,0.0000023363, +0.0000023305,0.0000023240,0.0000023164,0.0000023085,0.0000023001, +0.0000022902,0.0000022790,0.0000022674,0.0000022560,0.0000022455, +0.0000022363,0.0000022282,0.0000022202,0.0000022125,0.0000022050, +0.0000021964,0.0000021858,0.0000021741,0.0000021639,0.0000021578, +0.0000021556,0.0000021539,0.0000021508,0.0000021468,0.0000021430, +0.0000021403,0.0000021388,0.0000021381,0.0000021380,0.0000021372, +0.0000021351,0.0000021327,0.0000021301,0.0000021277,0.0000021257, +0.0000021239,0.0000021224,0.0000021218,0.0000021220,0.0000021225, +0.0000021229,0.0000021232,0.0000021237,0.0000021241,0.0000021239, +0.0000021232,0.0000021220,0.0000021203,0.0000021185,0.0000021168, +0.0000021156,0.0000021154,0.0000021164,0.0000021183,0.0000021202, +0.0000021212,0.0000021210,0.0000021195,0.0000021167,0.0000021129, +0.0000021082,0.0000021028,0.0000020975,0.0000020934,0.0000020911, +0.0000020915,0.0000020938,0.0000020964,0.0000020987,0.0000021010, +0.0000021025,0.0000021020,0.0000021005,0.0000020987,0.0000020970, +0.0000020953,0.0000020934,0.0000020914,0.0000020899,0.0000020888, +0.0000020874,0.0000020865,0.0000020851,0.0000020835,0.0000020818, +0.0000020801,0.0000020787,0.0000020778,0.0000020778,0.0000020787, +0.0000020808,0.0000020832,0.0000020855,0.0000020873,0.0000020892, +0.0000020911,0.0000020923,0.0000020936,0.0000020949,0.0000020958, +0.0000020960,0.0000020957,0.0000020942,0.0000020916,0.0000020881, +0.0000020837,0.0000020790,0.0000020744,0.0000020704,0.0000020673, +0.0000020647,0.0000020624,0.0000020603,0.0000020579,0.0000020559, +0.0000020542,0.0000020528,0.0000020518,0.0000020516,0.0000020515, +0.0000020511,0.0000020509,0.0000020517,0.0000020531,0.0000020543, +0.0000020550,0.0000020551,0.0000020544,0.0000020533,0.0000020529, +0.0000020527,0.0000020520,0.0000020510,0.0000020504,0.0000020500, +0.0000020493,0.0000020490,0.0000020492,0.0000020493,0.0000020490, +0.0000020486,0.0000020487,0.0000020494,0.0000020506,0.0000020522, +0.0000020542,0.0000020558,0.0000020565,0.0000020565,0.0000020560, +0.0000020546,0.0000020526,0.0000020498,0.0000020468,0.0000020446, +0.0000020432,0.0000020423,0.0000020419,0.0000020420,0.0000020435, +0.0000020460,0.0000020499,0.0000020547,0.0000020594,0.0000020632, +0.0000020659,0.0000020672,0.0000020674,0.0000020661,0.0000020642, +0.0000020620,0.0000020590,0.0000020553,0.0000020518,0.0000020487, +0.0000020455,0.0000020408,0.0000020325,0.0000020209,0.0000020093, +0.0000020012,0.0000019968,0.0000019936,0.0000019899,0.0000019869, +0.0000019849,0.0000019847,0.0000019854,0.0000019861,0.0000019864, +0.0000019867,0.0000019879,0.0000019900,0.0000019915,0.0000019918, +0.0000019914,0.0000019897,0.0000019851,0.0000019788,0.0000019741, +0.0000019719,0.0000019681,0.0000019647,0.0000019737,0.0000019924, +0.0000020097,0.0000020261,0.0000020289,0.0000020264,0.0000020319, +0.0000020374,0.0000020422,0.0000020506,0.0000020512,0.0000020394, +0.0000020273,0.0000020243,0.0000020263,0.0000020282,0.0000020282, +0.0000020280,0.0000020283,0.0000020286,0.0000020295,0.0000020305, +0.0000020304,0.0000020291,0.0000020279,0.0000020274,0.0000020275, +0.0000020280,0.0000020298,0.0000020328,0.0000020356,0.0000020365, +0.0000020359,0.0000020354,0.0000020362,0.0000020361,0.0000020319, +0.0000020283,0.0000020272,0.0000020261,0.0000020275,0.0000020325, +0.0000020384,0.0000020429,0.0000020461,0.0000020491,0.0000020524, +0.0000020546,0.0000020542,0.0000020495,0.0000020428,0.0000020369, +0.0000020323,0.0000020286,0.0000020271,0.0000020295,0.0000020347, +0.0000020393,0.0000020425,0.0000020436,0.0000020419,0.0000020377, +0.0000020324,0.0000020261,0.0000020203,0.0000020162,0.0000020137, +0.0000020117,0.0000020106,0.0000020105,0.0000020106,0.0000020105, +0.0000020099,0.0000020093,0.0000020091,0.0000020083,0.0000020072, +0.0000020063,0.0000020058,0.0000020054,0.0000020048,0.0000020045, +0.0000020054,0.0000020080,0.0000020113,0.0000020140,0.0000020159, +0.0000020170,0.0000020174,0.0000020173,0.0000020172,0.0000020169, +0.0000020159,0.0000020147,0.0000020135,0.0000020126,0.0000020116, +0.0000020105,0.0000020099,0.0000020101,0.0000020109,0.0000020119, +0.0000020130,0.0000020142,0.0000020155,0.0000020166,0.0000020177, +0.0000020190,0.0000020202,0.0000020215,0.0000020227,0.0000020239, +0.0000020248,0.0000020256,0.0000020266,0.0000020278,0.0000020290, +0.0000020295,0.0000020294,0.0000020282,0.0000020263,0.0000020248, +0.0000020243,0.0000020246,0.0000020251,0.0000020253,0.0000020251, +0.0000020250,0.0000020249,0.0000020249,0.0000020250,0.0000020254, +0.0000020259,0.0000020266,0.0000020268,0.0000020268,0.0000020268, +0.0000020263,0.0000020251,0.0000020237,0.0000020226,0.0000020221, +0.0000020216,0.0000020204,0.0000020187,0.0000020155,0.0000020105, +0.0000020050,0.0000020010,0.0000019992,0.0000019990,0.0000019999, +0.0000020014,0.0000020030,0.0000020042,0.0000020051,0.0000020063, +0.0000020089,0.0000020127,0.0000020170,0.0000020213,0.0000020262, +0.0000020305,0.0000020326,0.0000020337,0.0000020370,0.0000020448, +0.0000020560,0.0000020663,0.0000020739,0.0000020798,0.0000020833, +0.0000020831,0.0000020822,0.0000020815,0.0000020806,0.0000020817, +0.0000020811,0.0000020793,0.0000020755,0.0000020699,0.0000020653, +0.0000020641,0.0000020673,0.0000020731,0.0000020800,0.0000020861, +0.0000020909,0.0000020945,0.0000020958,0.0000020962,0.0000020971, +0.0000021004,0.0000021053,0.0000021106,0.0000021152,0.0000021181, +0.0000021182,0.0000021168,0.0000021143,0.0000021108,0.0000021073, +0.0000021032,0.0000020986,0.0000020926,0.0000020852,0.0000020774, +0.0000020704,0.0000020650,0.0000020612,0.0000020592,0.0000020589, +0.0000020598,0.0000020613,0.0000020633,0.0000020663,0.0000020700, +0.0000020746,0.0000020798,0.0000020844,0.0000020870,0.0000020875, +0.0000020876,0.0000020876,0.0000020872,0.0000020853,0.0000020824, +0.0000020793,0.0000020762,0.0000020734,0.0000020720,0.0000020723, +0.0000020742,0.0000020766,0.0000020787,0.0000020796,0.0000020799, +0.0000020801,0.0000020814,0.0000020847,0.0000020893,0.0000020938, +0.0000020975,0.0000021002,0.0000021023,0.0000021048,0.0000021077, +0.0000021101,0.0000021117,0.0000021126,0.0000021131,0.0000021135, +0.0000021129,0.0000021114,0.0000021107,0.0000021123,0.0000021160, +0.0000021190,0.0000021198,0.0000021198,0.0000021200,0.0000021205, +0.0000021212,0.0000021219,0.0000021227,0.0000021232,0.0000021233, +0.0000021229,0.0000021217,0.0000021203,0.0000021195,0.0000021199, +0.0000021209,0.0000021219,0.0000021221,0.0000021218,0.0000021204, +0.0000021187,0.0000021168,0.0000021149,0.0000021131,0.0000021120, +0.0000021125,0.0000021145,0.0000021164,0.0000021176,0.0000021182, +0.0000021184,0.0000021184,0.0000021181,0.0000021170,0.0000021158, +0.0000021147,0.0000021135,0.0000021118,0.0000021092,0.0000021059, +0.0000021024,0.0000020992,0.0000020970,0.0000020958,0.0000020953, +0.0000020955,0.0000020966,0.0000020982,0.0000020999,0.0000021019, +0.0000021039,0.0000021060,0.0000021078,0.0000021089,0.0000021095, +0.0000021099,0.0000021109,0.0000021124,0.0000021145,0.0000021172, +0.0000021206,0.0000021241,0.0000021273,0.0000021302,0.0000021326, +0.0000021344,0.0000021357,0.0000021368,0.0000021379,0.0000021388, +0.0000021394,0.0000021395,0.0000021393,0.0000021370,0.0000021340, +0.0000021316,0.0000021308,0.0000021308,0.0000021311,0.0000021310, +0.0000021306,0.0000021297,0.0000021284,0.0000021269,0.0000021250, +0.0000021228,0.0000021203,0.0000021178,0.0000021162,0.0000021155, +0.0000021149,0.0000021139,0.0000021132,0.0000021132,0.0000021144, +0.0000021166,0.0000021193,0.0000021225,0.0000021258,0.0000021289, +0.0000021315,0.0000021335,0.0000021350,0.0000021357,0.0000021349, +0.0000021334,0.0000021323,0.0000021326,0.0000021345,0.0000021363, +0.0000021382,0.0000021440,0.0000021536,0.0000021610,0.0000021639, +0.0000021692,0.0000021789,0.0000021854,0.0000021854,0.0000021797, +0.0000021679,0.0000021610,0.0000021639,0.0000021724,0.0000021764, +0.0000021755,0.0000021741,0.0000021745,0.0000021761,0.0000021774, +0.0000021779,0.0000021777,0.0000021763,0.0000021740,0.0000021709, +0.0000021674,0.0000021645,0.0000021627,0.0000021624,0.0000021629, +0.0000021649,0.0000021681,0.0000021715,0.0000021742,0.0000021764, +0.0000021782,0.0000021797,0.0000021813,0.0000021832,0.0000021849, +0.0000021861,0.0000021872,0.0000021885,0.0000021904,0.0000021926, +0.0000021947,0.0000021967,0.0000021988,0.0000022009,0.0000022031, +0.0000022058,0.0000022088,0.0000022120,0.0000022153,0.0000022186, +0.0000022217,0.0000022244,0.0000022269,0.0000022292,0.0000022317, +0.0000022338,0.0000022353,0.0000022361,0.0000022360,0.0000022347, +0.0000022325,0.0000022300,0.0000022271,0.0000022236,0.0000022195, +0.0000022147,0.0000022097,0.0000022044,0.0000021989,0.0000021932, +0.0000021879,0.0000021836,0.0000021806,0.0000021785,0.0000021765, +0.0000021740,0.0000021714,0.0000021686,0.0000021660,0.0000021638, +0.0000021621,0.0000021607,0.0000021592,0.0000021571,0.0000021540, +0.0000021498,0.0000021447,0.0000021391,0.0000021334,0.0000021274, +0.0000021211,0.0000021157,0.0000021129,0.0000021126,0.0000021124, +0.0000021121,0.0000021129,0.0000021170,0.0000021240,0.0000021303, +0.0000021334,0.0000021343,0.0000021341,0.0000021321,0.0000021275, +0.0000021207,0.0000021138,0.0000021076,0.0000021026,0.0000021002, +0.0000020999,0.0000021005,0.0000021022,0.0000021057,0.0000021097, +0.0000021132,0.0000021164,0.0000021195,0.0000021225,0.0000021260, +0.0000021312,0.0000021365,0.0000021405,0.0000021424,0.0000021423, +0.0000021400,0.0000021352,0.0000021294,0.0000021243,0.0000021205, +0.0000021188,0.0000021182,0.0000021180,0.0000021177,0.0000021161, +0.0000021128,0.0000021093,0.0000021069,0.0000021041,0.0000021012, +0.0000021002,0.0000020985,0.0000020914,0.0000020793,0.0000020734, +0.0000020749,0.0000020791,0.0000020806,0.0000020798,0.0000020736, +0.0000020651,0.0000020609,0.0000020594,0.0000020661,0.0000020770, +0.0000020789,0.0000020788,0.0000020806,0.0000020879,0.0000020951, +0.0000020984,0.0000020977,0.0000020938,0.0000020922,0.0000020949, +0.0000021067,0.0000021159,0.0000021204,0.0000021275,0.0000021382, +0.0000021450,0.0000021460,0.0000021544,0.0000021636,0.0000021631, +0.0000021601,0.0000021633,0.0000021766,0.0000021888,0.0000021989, +0.0000022003,0.0000021953,0.0000021968,0.0000022131,0.0000022230, +0.0000022179,0.0000022028,0.0000021859,0.0000021741,0.0000021724, +0.0000021734,0.0000021805,0.0000021961,0.0000022112,0.0000022266, +0.0000022366,0.0000022365,0.0000022319,0.0000022277,0.0000022234, +0.0000022191,0.0000022163,0.0000022149,0.0000022163,0.0000022220, +0.0000022286,0.0000022344,0.0000022383,0.0000022426,0.0000022482, +0.0000022560,0.0000022644,0.0000022714,0.0000022772,0.0000022809, +0.0000022828,0.0000022830,0.0000022817,0.0000022784,0.0000022759, +0.0000022746,0.0000022748,0.0000022762,0.0000022792,0.0000022835, +0.0000022872,0.0000022898,0.0000022871,0.0000022804,0.0000022719, +0.0000022637,0.0000022579,0.0000022551,0.0000022544,0.0000022555, +0.0000022568,0.0000022563,0.0000022517,0.0000022433,0.0000022341, +0.0000022270,0.0000022241,0.0000022245,0.0000022236,0.0000022216, +0.0000022150,0.0000022072,0.0000022086,0.0000022136,0.0000022132, +0.0000022085,0.0000022015,0.0000021945,0.0000021902,0.0000021897, +0.0000021939,0.0000022000,0.0000022046,0.0000022068,0.0000022082, +0.0000022086,0.0000022072,0.0000022036,0.0000022002,0.0000021997, +0.0000022021,0.0000022067,0.0000022122,0.0000022181,0.0000022242, +0.0000022296,0.0000022336,0.0000022364,0.0000022374,0.0000022376, +0.0000022382,0.0000022390,0.0000022391,0.0000022394,0.0000022404, +0.0000022408,0.0000022403,0.0000022397,0.0000022403,0.0000022421, +0.0000022452,0.0000022471,0.0000022475,0.0000022471,0.0000022470, +0.0000022480,0.0000022500,0.0000022530,0.0000022563,0.0000022595, +0.0000022620,0.0000022637,0.0000022652,0.0000022659,0.0000022664, +0.0000022671,0.0000022672,0.0000022654,0.0000022614,0.0000022567, +0.0000022534,0.0000022513,0.0000022496,0.0000022489,0.0000022489, +0.0000022508,0.0000022555,0.0000022608,0.0000022653,0.0000022689, +0.0000022723,0.0000022757,0.0000022799,0.0000022836,0.0000022853, +0.0000022858,0.0000022851,0.0000022829,0.0000022802,0.0000022778, +0.0000022744,0.0000022697,0.0000022646,0.0000022589,0.0000022520, +0.0000022455,0.0000022387,0.0000022285,0.0000022172,0.0000022095, +0.0000022057,0.0000022000,0.0000021943,0.0000021950,0.0000022002, +0.0000022086,0.0000022192,0.0000022277,0.0000022292,0.0000022274, +0.0000022225,0.0000022153,0.0000022080,0.0000022024,0.0000021993, +0.0000021995,0.0000022012,0.0000022031,0.0000022043,0.0000022053, +0.0000022056,0.0000022049,0.0000022028,0.0000021998,0.0000021957, +0.0000021911,0.0000021863,0.0000021824,0.0000021797,0.0000021779, +0.0000021762,0.0000021736,0.0000021704,0.0000021668,0.0000021632, +0.0000021597,0.0000021567,0.0000021543,0.0000021525,0.0000021507, +0.0000021484,0.0000021457,0.0000021438,0.0000021430,0.0000021428, +0.0000021436,0.0000021466,0.0000021521,0.0000021592,0.0000021663, +0.0000021720,0.0000021748,0.0000021769,0.0000021773,0.0000021782, +0.0000021809,0.0000021873,0.0000021965,0.0000022060,0.0000022137, +0.0000022187,0.0000022210,0.0000022210,0.0000022185,0.0000022132, +0.0000022060,0.0000021964,0.0000021867,0.0000021789,0.0000021743, +0.0000021730,0.0000021742,0.0000021762,0.0000021782,0.0000021805, +0.0000021829,0.0000021854,0.0000021879,0.0000021903,0.0000021925, +0.0000021942,0.0000021954,0.0000021961,0.0000021960,0.0000021953, +0.0000021938,0.0000021914,0.0000021882,0.0000021851,0.0000021823, +0.0000021792,0.0000021764,0.0000021746,0.0000021739,0.0000021735, +0.0000021732,0.0000021721,0.0000021697,0.0000021660,0.0000021610, +0.0000021547,0.0000021473,0.0000021398,0.0000021328,0.0000021267, +0.0000021228,0.0000021219,0.0000021227,0.0000021248,0.0000021268, +0.0000021278,0.0000021280,0.0000021280,0.0000021287,0.0000021302, +0.0000021327,0.0000021358,0.0000021389,0.0000021419,0.0000021447, +0.0000021472,0.0000021494,0.0000021512,0.0000021525,0.0000021533, +0.0000021539,0.0000021549,0.0000021562,0.0000021575,0.0000021587, +0.0000021596,0.0000021605,0.0000021614,0.0000021623,0.0000021632, +0.0000021646,0.0000021668,0.0000021694,0.0000021718,0.0000021737, +0.0000021749,0.0000021752,0.0000021745,0.0000021717,0.0000021694, +0.0000021663,0.0000021639,0.0000021627,0.0000021638,0.0000021661, +0.0000021688,0.0000021720,0.0000021745,0.0000021767,0.0000021788, +0.0000021808,0.0000021821,0.0000021821,0.0000021811,0.0000021808, +0.0000021804,0.0000021830,0.0000021903,0.0000021983,0.0000022061, +0.0000022140,0.0000022210,0.0000022276,0.0000022340,0.0000022403, +0.0000022461,0.0000022513,0.0000022562,0.0000022607,0.0000022651, +0.0000022691,0.0000022727,0.0000022763,0.0000022806,0.0000022861, +0.0000022913,0.0000022953,0.0000022987,0.0000023014,0.0000023034, +0.0000023044,0.0000023046,0.0000023043,0.0000023035,0.0000023023, +0.0000023010,0.0000022992,0.0000022970,0.0000022943,0.0000022913, +0.0000022880,0.0000022848,0.0000022817,0.0000022788,0.0000022762, +0.0000022737,0.0000022714,0.0000022700,0.0000022690,0.0000022682, +0.0000022682,0.0000022680,0.0000022675,0.0000022664,0.0000022649, +0.0000022630,0.0000022608,0.0000022584,0.0000022556,0.0000022522, +0.0000022484,0.0000022445,0.0000022414,0.0000022392,0.0000022372, +0.0000022354,0.0000022342,0.0000022337,0.0000022326,0.0000022308, +0.0000022280,0.0000022241,0.0000022185,0.0000022115,0.0000022022, +0.0000021907,0.0000021788,0.0000021679,0.0000021596,0.0000021549, +0.0000021541,0.0000021553,0.0000021583,0.0000021601,0.0000021580, +0.0000021508,0.0000021392,0.0000021285,0.0000021229,0.0000021214, +0.0000021235,0.0000021275,0.0000021307,0.0000021331,0.0000021347, +0.0000021356,0.0000021355,0.0000021338,0.0000021308,0.0000021275, +0.0000021243,0.0000021209,0.0000021161,0.0000021076,0.0000020967, +0.0000020864,0.0000020784,0.0000020725,0.0000020676,0.0000020635, +0.0000020609,0.0000020597,0.0000020591,0.0000020590,0.0000020599, +0.0000020617,0.0000020636,0.0000020642,0.0000020638,0.0000020623, +0.0000020596,0.0000020550,0.0000020491,0.0000020414,0.0000020326, +0.0000020219,0.0000020092,0.0000019981,0.0000019917,0.0000019891, +0.0000019888,0.0000019892,0.0000019909,0.0000019948,0.0000020021, +0.0000020113,0.0000020232,0.0000020394,0.0000020571,0.0000020703, +0.0000020761,0.0000020765,0.0000020757,0.0000020758,0.0000020776, +0.0000020806,0.0000020833,0.0000020852,0.0000020852,0.0000020844, +0.0000020834,0.0000020812,0.0000020769,0.0000020708,0.0000020631, +0.0000020528,0.0000020413,0.0000020344,0.0000020358,0.0000020487, +0.0000020671,0.0000020833,0.0000020922,0.0000020947,0.0000020970, +0.0000021040,0.0000021165,0.0000021333,0.0000021526,0.0000021707, +0.0000021850,0.0000021960,0.0000022048,0.0000022114,0.0000022168, +0.0000022194,0.0000022177,0.0000022119,0.0000022047,0.0000021990, +0.0000021958,0.0000021940,0.0000021943,0.0000021944,0.0000021961, +0.0000021996,0.0000022042,0.0000022091,0.0000022131,0.0000022162, +0.0000022184,0.0000022198,0.0000022211,0.0000022230,0.0000022257, +0.0000022294,0.0000022321,0.0000022319,0.0000022277,0.0000022173, +0.0000022016,0.0000021872,0.0000021758,0.0000021727,0.0000021718, +0.0000021750,0.0000021801,0.0000021874,0.0000021967,0.0000022074, +0.0000022183,0.0000022276,0.0000022347,0.0000022393,0.0000022419, +0.0000022434,0.0000022443,0.0000022456,0.0000022478,0.0000022506, +0.0000022530,0.0000022548,0.0000022555,0.0000022546,0.0000022512, +0.0000022440,0.0000022332,0.0000022206,0.0000022096,0.0000022026, +0.0000021998,0.0000022003,0.0000022032,0.0000022055,0.0000022032, +0.0000021993,0.0000022026,0.0000022144,0.0000022207,0.0000022175, +0.0000022157,0.0000022230,0.0000022367,0.0000022422,0.0000022406, +0.0000022344,0.0000022289,0.0000022238,0.0000022111,0.0000021902, +0.0000021715,0.0000021614,0.0000021557,0.0000021495,0.0000021427, +0.0000021363,0.0000021308,0.0000021267,0.0000021241,0.0000021233, +0.0000021231,0.0000021234,0.0000021231,0.0000021223,0.0000021225, +0.0000021243,0.0000021257,0.0000021255,0.0000021234,0.0000021207, +0.0000021176,0.0000021145,0.0000021120,0.0000021106,0.0000021097, +0.0000021123,0.0000021179,0.0000021251,0.0000021317,0.0000021358, +0.0000021402,0.0000021448,0.0000021507,0.0000021621,0.0000021753, +0.0000021877,0.0000022014,0.0000022147,0.0000022244,0.0000022289, +0.0000022293,0.0000022276,0.0000022248,0.0000022225,0.0000022212, +0.0000022197,0.0000022167,0.0000022102,0.0000021989,0.0000021828, +0.0000021649,0.0000021536,0.0000021530,0.0000021668,0.0000021851, +0.0000021999,0.0000022149,0.0000022351,0.0000022449,0.0000022405, +0.0000022175,0.0000021941,0.0000021829,0.0000021838,0.0000021874, +0.0000021938,0.0000021996,0.0000022043,0.0000022071,0.0000022077, +0.0000022075,0.0000022085,0.0000022108,0.0000022131,0.0000022154, +0.0000022186,0.0000022241,0.0000022321,0.0000022408,0.0000022472, +0.0000022510,0.0000022510,0.0000022464,0.0000022381,0.0000022290, +0.0000022227,0.0000022220,0.0000022244,0.0000022327,0.0000022455, +0.0000022578,0.0000022657,0.0000022695,0.0000022707,0.0000022702, +0.0000022680,0.0000022652,0.0000022620,0.0000022581,0.0000022537, +0.0000022487,0.0000022441,0.0000022402,0.0000022363,0.0000022303, +0.0000022202,0.0000022063,0.0000021924,0.0000021824,0.0000021764, +0.0000021723,0.0000021685,0.0000021622,0.0000021514,0.0000021378, +0.0000021248,0.0000021155,0.0000021109,0.0000021098,0.0000021099, +0.0000021099,0.0000021085,0.0000021057,0.0000021022,0.0000020979, +0.0000020935,0.0000020896,0.0000020866,0.0000020839,0.0000020810, +0.0000020774,0.0000020729,0.0000020667,0.0000020594,0.0000020524, +0.0000020466,0.0000020422,0.0000020398,0.0000020378,0.0000020360, +0.0000020352,0.0000020356,0.0000020380,0.0000020438,0.0000020522, +0.0000020616,0.0000020689,0.0000020728,0.0000020742,0.0000020740, +0.0000020740,0.0000020760,0.0000020792,0.0000020826,0.0000020842, +0.0000020824,0.0000020793,0.0000020737,0.0000020673,0.0000020620, +0.0000020589,0.0000020591,0.0000020619,0.0000020669,0.0000020738, +0.0000020826,0.0000020941,0.0000021077,0.0000021199,0.0000021260, +0.0000021255,0.0000021223,0.0000021198,0.0000021171,0.0000021126, +0.0000021060,0.0000020977,0.0000020879,0.0000020758,0.0000020628, +0.0000020529,0.0000020479,0.0000020481,0.0000020548,0.0000020645, +0.0000020736,0.0000020821,0.0000020926,0.0000021062,0.0000021207, +0.0000021323,0.0000021409,0.0000021484,0.0000021562,0.0000021646, +0.0000021745,0.0000021839,0.0000021907,0.0000021958,0.0000021996, +0.0000022026,0.0000022067,0.0000022124,0.0000022183,0.0000022232, +0.0000022255,0.0000022248,0.0000022232,0.0000022221,0.0000022206, +0.0000022194,0.0000022187,0.0000022217,0.0000022319,0.0000022481, +0.0000022654,0.0000022802,0.0000022902,0.0000022968,0.0000023026, +0.0000023098,0.0000023195,0.0000023294,0.0000023372,0.0000023426, +0.0000023461,0.0000023485,0.0000023500,0.0000023505,0.0000023503, +0.0000023494,0.0000023484,0.0000023472,0.0000023451,0.0000023421, +0.0000023383,0.0000023345,0.0000023308,0.0000023269,0.0000023224, +0.0000023173,0.0000023117,0.0000023051,0.0000022975,0.0000022895, +0.0000022814,0.0000022724,0.0000022628,0.0000022529,0.0000022427, +0.0000022327,0.0000022241,0.0000022165,0.0000022094,0.0000022024, +0.0000021946,0.0000021851,0.0000021746,0.0000021646,0.0000021573, +0.0000021534,0.0000021509,0.0000021471,0.0000021425,0.0000021385, +0.0000021361,0.0000021351,0.0000021348,0.0000021348,0.0000021348, +0.0000021339,0.0000021321,0.0000021296,0.0000021266,0.0000021239, +0.0000021214,0.0000021188,0.0000021166,0.0000021156,0.0000021155, +0.0000021156,0.0000021160,0.0000021172,0.0000021186,0.0000021193, +0.0000021193,0.0000021191,0.0000021185,0.0000021175,0.0000021163, +0.0000021150,0.0000021139,0.0000021133,0.0000021140,0.0000021160, +0.0000021185,0.0000021202,0.0000021201,0.0000021188,0.0000021158, +0.0000021112,0.0000021055,0.0000020995,0.0000020937,0.0000020889, +0.0000020862,0.0000020860,0.0000020872,0.0000020893,0.0000020921, +0.0000020955,0.0000020983,0.0000020999,0.0000020997,0.0000020999, +0.0000020997,0.0000020989,0.0000020975,0.0000020958,0.0000020944, +0.0000020928,0.0000020905,0.0000020880,0.0000020856,0.0000020828, +0.0000020801,0.0000020776,0.0000020750,0.0000020727,0.0000020716, +0.0000020716,0.0000020725,0.0000020738,0.0000020754,0.0000020770, +0.0000020790,0.0000020808,0.0000020817,0.0000020824,0.0000020828, +0.0000020828,0.0000020820,0.0000020807,0.0000020790,0.0000020770, +0.0000020750,0.0000020730,0.0000020710,0.0000020688,0.0000020666, +0.0000020646,0.0000020628,0.0000020610,0.0000020592,0.0000020573, +0.0000020560,0.0000020551,0.0000020544,0.0000020543,0.0000020548, +0.0000020549,0.0000020543,0.0000020541,0.0000020550,0.0000020562, +0.0000020570,0.0000020575,0.0000020573,0.0000020562,0.0000020546, +0.0000020535,0.0000020524,0.0000020511,0.0000020497,0.0000020482, +0.0000020467,0.0000020449,0.0000020434,0.0000020429,0.0000020425, +0.0000020417,0.0000020410,0.0000020411,0.0000020422,0.0000020442, +0.0000020469,0.0000020500,0.0000020527,0.0000020544,0.0000020550, +0.0000020547,0.0000020536,0.0000020518,0.0000020496,0.0000020472, +0.0000020453,0.0000020441,0.0000020436,0.0000020435,0.0000020440, +0.0000020452,0.0000020473,0.0000020503,0.0000020541,0.0000020578, +0.0000020611,0.0000020637,0.0000020651,0.0000020652,0.0000020644, +0.0000020631,0.0000020615,0.0000020593,0.0000020558,0.0000020516, +0.0000020475,0.0000020445,0.0000020416,0.0000020364,0.0000020266, +0.0000020142,0.0000020036,0.0000019970,0.0000019926,0.0000019885, +0.0000019849,0.0000019831,0.0000019822,0.0000019823,0.0000019833, +0.0000019844,0.0000019850,0.0000019855,0.0000019866,0.0000019881, +0.0000019893,0.0000019900,0.0000019893,0.0000019863,0.0000019801, +0.0000019739,0.0000019707,0.0000019669,0.0000019627,0.0000019687, +0.0000019866,0.0000020044,0.0000020221,0.0000020279,0.0000020255, +0.0000020314,0.0000020384,0.0000020437,0.0000020516,0.0000020526, +0.0000020412,0.0000020289,0.0000020255,0.0000020272,0.0000020287, +0.0000020285,0.0000020278,0.0000020269,0.0000020262,0.0000020268, +0.0000020273,0.0000020268,0.0000020259,0.0000020257,0.0000020260, +0.0000020265,0.0000020275,0.0000020298,0.0000020331,0.0000020354, +0.0000020358,0.0000020351,0.0000020344,0.0000020348,0.0000020331, +0.0000020278,0.0000020251,0.0000020252,0.0000020260,0.0000020296, +0.0000020352,0.0000020404,0.0000020438,0.0000020464,0.0000020496, +0.0000020529,0.0000020532,0.0000020497,0.0000020434,0.0000020373, +0.0000020323,0.0000020289,0.0000020273,0.0000020285,0.0000020340, +0.0000020402,0.0000020449,0.0000020476,0.0000020478,0.0000020451, +0.0000020405,0.0000020351,0.0000020289,0.0000020230,0.0000020186, +0.0000020145,0.0000020107,0.0000020077,0.0000020054,0.0000020040, +0.0000020035,0.0000020035,0.0000020045,0.0000020058,0.0000020066, +0.0000020064,0.0000020062,0.0000020060,0.0000020052,0.0000020038, +0.0000020026,0.0000020023,0.0000020034,0.0000020053,0.0000020072, +0.0000020094,0.0000020113,0.0000020123,0.0000020128,0.0000020131, +0.0000020130,0.0000020127,0.0000020122,0.0000020116,0.0000020112, +0.0000020107,0.0000020104,0.0000020108,0.0000020121,0.0000020136, +0.0000020149,0.0000020161,0.0000020172,0.0000020180,0.0000020187, +0.0000020195,0.0000020204,0.0000020214,0.0000020221,0.0000020227, +0.0000020235,0.0000020241,0.0000020246,0.0000020252,0.0000020262, +0.0000020279,0.0000020299,0.0000020315,0.0000020327,0.0000020333, +0.0000020329,0.0000020318,0.0000020308,0.0000020298,0.0000020291, +0.0000020289,0.0000020292,0.0000020293,0.0000020290,0.0000020285, +0.0000020280,0.0000020275,0.0000020269,0.0000020262,0.0000020252, +0.0000020241,0.0000020232,0.0000020222,0.0000020209,0.0000020196, +0.0000020184,0.0000020173,0.0000020170,0.0000020174,0.0000020168, +0.0000020147,0.0000020110,0.0000020065,0.0000020017,0.0000019979, +0.0000019955,0.0000019942,0.0000019939,0.0000019943,0.0000019954, +0.0000019974,0.0000020004,0.0000020050,0.0000020107,0.0000020164, +0.0000020218,0.0000020266,0.0000020307,0.0000020334,0.0000020347, +0.0000020359,0.0000020405,0.0000020494,0.0000020602,0.0000020688, +0.0000020750,0.0000020800,0.0000020822,0.0000020833,0.0000020825, +0.0000020830,0.0000020816,0.0000020808,0.0000020798,0.0000020775, +0.0000020730,0.0000020681,0.0000020656,0.0000020666,0.0000020712, +0.0000020773,0.0000020828,0.0000020872,0.0000020918,0.0000020958, +0.0000020975,0.0000020979,0.0000020981,0.0000020982,0.0000020991, +0.0000021004,0.0000021012,0.0000021019,0.0000021021,0.0000021014, +0.0000020998,0.0000020973,0.0000020940,0.0000020901,0.0000020851, +0.0000020791,0.0000020728,0.0000020674,0.0000020636,0.0000020615, +0.0000020610,0.0000020616,0.0000020630,0.0000020653,0.0000020691, +0.0000020743,0.0000020802,0.0000020855,0.0000020890,0.0000020899, +0.0000020896,0.0000020889,0.0000020886,0.0000020883,0.0000020872, +0.0000020853,0.0000020828,0.0000020803,0.0000020782,0.0000020767, +0.0000020764,0.0000020771,0.0000020780,0.0000020787,0.0000020790, +0.0000020793,0.0000020808,0.0000020842,0.0000020882,0.0000020909, +0.0000020927,0.0000020940,0.0000020952,0.0000020965,0.0000020985, +0.0000021013,0.0000021038,0.0000021057,0.0000021071,0.0000021080, +0.0000021089,0.0000021094,0.0000021091,0.0000021079,0.0000021074, +0.0000021093,0.0000021132,0.0000021160,0.0000021167,0.0000021172, +0.0000021182,0.0000021195,0.0000021209,0.0000021223,0.0000021238, +0.0000021248,0.0000021250,0.0000021246,0.0000021232,0.0000021219, +0.0000021217,0.0000021225,0.0000021237,0.0000021244,0.0000021246, +0.0000021240,0.0000021228,0.0000021207,0.0000021176,0.0000021142, +0.0000021118,0.0000021117,0.0000021137,0.0000021163,0.0000021188, +0.0000021205,0.0000021218,0.0000021223,0.0000021221,0.0000021209, +0.0000021193,0.0000021177,0.0000021160,0.0000021142,0.0000021121, +0.0000021097,0.0000021069,0.0000021037,0.0000021007,0.0000020987, +0.0000020974,0.0000020967,0.0000020968,0.0000020976,0.0000020986, +0.0000020999,0.0000021015,0.0000021033,0.0000021053,0.0000021069, +0.0000021080,0.0000021090,0.0000021100,0.0000021111,0.0000021126, +0.0000021146,0.0000021173,0.0000021205,0.0000021239,0.0000021270, +0.0000021294,0.0000021310,0.0000021319,0.0000021323,0.0000021329, +0.0000021342,0.0000021361,0.0000021380,0.0000021395,0.0000021397, +0.0000021388,0.0000021371,0.0000021358,0.0000021354,0.0000021354, +0.0000021354,0.0000021348,0.0000021334,0.0000021314,0.0000021294, +0.0000021274,0.0000021250,0.0000021221,0.0000021190,0.0000021165, +0.0000021150,0.0000021141,0.0000021133,0.0000021123,0.0000021116, +0.0000021122,0.0000021141,0.0000021170,0.0000021203,0.0000021234, +0.0000021261,0.0000021281,0.0000021295,0.0000021309,0.0000021326, +0.0000021336,0.0000021333,0.0000021320,0.0000021309,0.0000021310, +0.0000021333,0.0000021359,0.0000021381,0.0000021422,0.0000021503, +0.0000021591,0.0000021635,0.0000021667,0.0000021754,0.0000021842, +0.0000021867,0.0000021847,0.0000021756,0.0000021647,0.0000021620, +0.0000021680,0.0000021771,0.0000021805,0.0000021799,0.0000021778, +0.0000021772,0.0000021776,0.0000021779,0.0000021773,0.0000021759, +0.0000021736,0.0000021705,0.0000021667,0.0000021631,0.0000021603, +0.0000021588,0.0000021587,0.0000021596,0.0000021616,0.0000021640, +0.0000021663,0.0000021682,0.0000021696,0.0000021704,0.0000021715, +0.0000021729,0.0000021741,0.0000021750,0.0000021757,0.0000021769, +0.0000021785,0.0000021803,0.0000021821,0.0000021839,0.0000021855, +0.0000021870,0.0000021883,0.0000021896,0.0000021912,0.0000021932, +0.0000021952,0.0000021972,0.0000021992,0.0000022012,0.0000022032, +0.0000022055,0.0000022082,0.0000022108,0.0000022131,0.0000022152, +0.0000022168,0.0000022177,0.0000022177,0.0000022170,0.0000022157, +0.0000022140,0.0000022117,0.0000022087,0.0000022051,0.0000022008, +0.0000021960,0.0000021903,0.0000021840,0.0000021780,0.0000021732, +0.0000021697,0.0000021670,0.0000021647,0.0000021628,0.0000021614, +0.0000021605,0.0000021599,0.0000021595,0.0000021587,0.0000021570, +0.0000021542,0.0000021501,0.0000021453,0.0000021403,0.0000021352, +0.0000021298,0.0000021239,0.0000021176,0.0000021117,0.0000021084, +0.0000021079,0.0000021079,0.0000021076,0.0000021078,0.0000021108, +0.0000021175,0.0000021250,0.0000021299,0.0000021324,0.0000021337, +0.0000021333,0.0000021302,0.0000021249,0.0000021191,0.0000021131, +0.0000021071,0.0000021024,0.0000020999,0.0000020992,0.0000020998, +0.0000021028,0.0000021069,0.0000021105,0.0000021137,0.0000021168, +0.0000021198,0.0000021230,0.0000021274,0.0000021327,0.0000021376, +0.0000021414,0.0000021432,0.0000021427,0.0000021397,0.0000021349, +0.0000021299,0.0000021251,0.0000021215,0.0000021198,0.0000021195, +0.0000021191,0.0000021177,0.0000021149,0.0000021117,0.0000021085, +0.0000021050,0.0000021021,0.0000021001,0.0000020981,0.0000020926, +0.0000020801,0.0000020711,0.0000020709,0.0000020741,0.0000020762, +0.0000020760,0.0000020711,0.0000020641,0.0000020610,0.0000020602, +0.0000020676,0.0000020778,0.0000020798,0.0000020802,0.0000020832, +0.0000020903,0.0000020961,0.0000020979,0.0000020959,0.0000020921, +0.0000020905,0.0000020949,0.0000021082,0.0000021160,0.0000021208, +0.0000021315,0.0000021424,0.0000021456,0.0000021477,0.0000021592, +0.0000021639,0.0000021602,0.0000021593,0.0000021675,0.0000021819, +0.0000021940,0.0000021997,0.0000021959,0.0000021951,0.0000022090, +0.0000022234,0.0000022234,0.0000022100,0.0000021924,0.0000021794, +0.0000021747,0.0000021748,0.0000021818,0.0000021977,0.0000022134, +0.0000022312,0.0000022420,0.0000022421,0.0000022390,0.0000022360, +0.0000022322,0.0000022271,0.0000022225,0.0000022187,0.0000022166, +0.0000022187,0.0000022250,0.0000022330,0.0000022401,0.0000022461, +0.0000022525,0.0000022601,0.0000022687,0.0000022761,0.0000022796, +0.0000022810,0.0000022803,0.0000022764,0.0000022726,0.0000022706, +0.0000022700,0.0000022710,0.0000022723,0.0000022743,0.0000022767, +0.0000022792,0.0000022800,0.0000022771,0.0000022709,0.0000022626, +0.0000022549,0.0000022501,0.0000022478,0.0000022484,0.0000022506, +0.0000022526,0.0000022535,0.0000022518,0.0000022474,0.0000022405, +0.0000022325,0.0000022247,0.0000022191,0.0000022185,0.0000022198, +0.0000022188,0.0000022163,0.0000022105,0.0000022077,0.0000022114, +0.0000022123,0.0000022093,0.0000022038,0.0000021973,0.0000021918, +0.0000021874,0.0000021862,0.0000021899,0.0000021960,0.0000021997, +0.0000022009,0.0000022015,0.0000022020,0.0000022013,0.0000021989, +0.0000021960,0.0000021952,0.0000021970,0.0000022009,0.0000022061, +0.0000022114,0.0000022176,0.0000022236,0.0000022288,0.0000022328, +0.0000022352,0.0000022363,0.0000022374,0.0000022386,0.0000022389, +0.0000022385,0.0000022382,0.0000022378,0.0000022368,0.0000022358, +0.0000022354,0.0000022367,0.0000022394,0.0000022418,0.0000022425, +0.0000022420,0.0000022416,0.0000022422,0.0000022440,0.0000022468, +0.0000022500,0.0000022528,0.0000022546,0.0000022553,0.0000022562, +0.0000022576,0.0000022597,0.0000022616,0.0000022621,0.0000022598, +0.0000022556,0.0000022522,0.0000022502,0.0000022489,0.0000022476, +0.0000022473,0.0000022474,0.0000022485,0.0000022520,0.0000022563, +0.0000022604,0.0000022642,0.0000022682,0.0000022728,0.0000022778, +0.0000022816,0.0000022838,0.0000022855,0.0000022855,0.0000022829, +0.0000022798,0.0000022767,0.0000022719,0.0000022667,0.0000022624, +0.0000022578,0.0000022519,0.0000022455,0.0000022377,0.0000022261, +0.0000022140,0.0000022068,0.0000022027,0.0000021957,0.0000021891, +0.0000021890,0.0000021927,0.0000021997,0.0000022088,0.0000022183, +0.0000022226,0.0000022229,0.0000022223,0.0000022203,0.0000022163, +0.0000022113,0.0000022065,0.0000022038,0.0000022033,0.0000022044, +0.0000022056,0.0000022065,0.0000022071,0.0000022072,0.0000022064, +0.0000022048,0.0000022022,0.0000021987,0.0000021946,0.0000021900, +0.0000021860,0.0000021822,0.0000021787,0.0000021755,0.0000021722, +0.0000021683,0.0000021643,0.0000021604,0.0000021569,0.0000021541, +0.0000021522,0.0000021509,0.0000021491,0.0000021465,0.0000021439, +0.0000021418,0.0000021406,0.0000021401,0.0000021402,0.0000021418, +0.0000021457,0.0000021517,0.0000021591,0.0000021666,0.0000021737, +0.0000021791,0.0000021816,0.0000021819,0.0000021823,0.0000021850, +0.0000021906,0.0000021980,0.0000022055,0.0000022118,0.0000022154, +0.0000022159,0.0000022140,0.0000022097,0.0000022031,0.0000021946, +0.0000021856,0.0000021778,0.0000021725,0.0000021696,0.0000021689, +0.0000021693,0.0000021702,0.0000021713,0.0000021725,0.0000021737, +0.0000021753,0.0000021775,0.0000021801,0.0000021830,0.0000021856, +0.0000021876,0.0000021888,0.0000021892,0.0000021885,0.0000021868, +0.0000021844,0.0000021812,0.0000021776,0.0000021739,0.0000021707, +0.0000021685,0.0000021670,0.0000021657,0.0000021646,0.0000021627, +0.0000021598,0.0000021558,0.0000021508,0.0000021445,0.0000021374, +0.0000021301,0.0000021230,0.0000021172,0.0000021137,0.0000021130, +0.0000021141,0.0000021168,0.0000021195,0.0000021212,0.0000021218, +0.0000021218,0.0000021220,0.0000021230,0.0000021250,0.0000021276, +0.0000021303,0.0000021331,0.0000021361,0.0000021390,0.0000021414, +0.0000021430,0.0000021438,0.0000021441,0.0000021438,0.0000021434, +0.0000021432,0.0000021429,0.0000021425,0.0000021418,0.0000021411, +0.0000021404,0.0000021401,0.0000021402,0.0000021411,0.0000021432, +0.0000021464,0.0000021500,0.0000021539,0.0000021578,0.0000021615, +0.0000021644,0.0000021661,0.0000021665,0.0000021652,0.0000021630, +0.0000021598,0.0000021574,0.0000021554,0.0000021550,0.0000021569, +0.0000021599,0.0000021639,0.0000021676,0.0000021710,0.0000021746, +0.0000021779,0.0000021801,0.0000021808,0.0000021798,0.0000021791, +0.0000021793,0.0000021813,0.0000021842,0.0000021918,0.0000022004, +0.0000022078,0.0000022154,0.0000022221,0.0000022281,0.0000022333, +0.0000022374,0.0000022407,0.0000022435,0.0000022462,0.0000022488, +0.0000022515,0.0000022551,0.0000022599,0.0000022651,0.0000022694, +0.0000022731,0.0000022762,0.0000022786,0.0000022802,0.0000022809, +0.0000022809,0.0000022804,0.0000022792,0.0000022776,0.0000022756, +0.0000022734,0.0000022708,0.0000022677,0.0000022640,0.0000022599, +0.0000022560,0.0000022524,0.0000022493,0.0000022469,0.0000022452, +0.0000022444,0.0000022445,0.0000022451,0.0000022461,0.0000022476, +0.0000022484,0.0000022486,0.0000022479,0.0000022465,0.0000022444, +0.0000022418,0.0000022388,0.0000022354,0.0000022314,0.0000022271, +0.0000022228,0.0000022192,0.0000022158,0.0000022127,0.0000022109, +0.0000022095,0.0000022076,0.0000022042,0.0000021996,0.0000021936, +0.0000021867,0.0000021794,0.0000021715,0.0000021639,0.0000021577, +0.0000021541,0.0000021525,0.0000021532,0.0000021554,0.0000021583, +0.0000021602,0.0000021596,0.0000021542,0.0000021441,0.0000021325, +0.0000021252,0.0000021229,0.0000021236,0.0000021268,0.0000021303, +0.0000021321,0.0000021334,0.0000021345,0.0000021356,0.0000021354, +0.0000021340,0.0000021321,0.0000021301,0.0000021275,0.0000021237, +0.0000021165,0.0000021054,0.0000020926,0.0000020812,0.0000020730, +0.0000020674,0.0000020629,0.0000020589,0.0000020559,0.0000020547, +0.0000020544,0.0000020547,0.0000020557,0.0000020577,0.0000020605, +0.0000020625,0.0000020634,0.0000020629,0.0000020613,0.0000020587, +0.0000020545,0.0000020492,0.0000020427,0.0000020343,0.0000020232, +0.0000020103,0.0000019995,0.0000019930,0.0000019901,0.0000019892, +0.0000019887,0.0000019879,0.0000019902,0.0000019973,0.0000020064, +0.0000020170,0.0000020314,0.0000020490,0.0000020644,0.0000020723, +0.0000020737,0.0000020730,0.0000020732,0.0000020750,0.0000020776, +0.0000020811,0.0000020839,0.0000020845,0.0000020843,0.0000020837, +0.0000020814,0.0000020773,0.0000020719,0.0000020656,0.0000020567, +0.0000020444,0.0000020347,0.0000020336,0.0000020431,0.0000020601, +0.0000020770,0.0000020875,0.0000020910,0.0000020923,0.0000020954, +0.0000021026,0.0000021144,0.0000021308,0.0000021496,0.0000021679, +0.0000021838,0.0000021954,0.0000022033,0.0000022097,0.0000022144, +0.0000022160,0.0000022147,0.0000022113,0.0000022074,0.0000022039, +0.0000022006,0.0000021973,0.0000021949,0.0000021951,0.0000021960, +0.0000021990,0.0000022034,0.0000022082,0.0000022130,0.0000022172, +0.0000022196,0.0000022202,0.0000022200,0.0000022200,0.0000022216, +0.0000022251,0.0000022282,0.0000022274,0.0000022249,0.0000022147, +0.0000021991,0.0000021839,0.0000021724,0.0000021695,0.0000021681, +0.0000021711,0.0000021747,0.0000021796,0.0000021863,0.0000021947, +0.0000022035,0.0000022118,0.0000022191,0.0000022252,0.0000022297, +0.0000022328,0.0000022352,0.0000022371,0.0000022381,0.0000022379, +0.0000022363,0.0000022326,0.0000022264,0.0000022183,0.0000022092, +0.0000022009,0.0000021954,0.0000021933,0.0000021941,0.0000021967, +0.0000021989,0.0000021980,0.0000021950,0.0000021962,0.0000022050, +0.0000022143,0.0000022151,0.0000022124,0.0000022156,0.0000022279, +0.0000022389,0.0000022410,0.0000022376,0.0000022311,0.0000022265, +0.0000022198,0.0000022024,0.0000021796,0.0000021638,0.0000021557, +0.0000021486,0.0000021399,0.0000021324,0.0000021273,0.0000021240, +0.0000021213,0.0000021193,0.0000021186,0.0000021188,0.0000021192, +0.0000021195,0.0000021191,0.0000021177,0.0000021170,0.0000021184, +0.0000021220,0.0000021247,0.0000021245,0.0000021224,0.0000021191, +0.0000021151,0.0000021125,0.0000021103,0.0000021087,0.0000021086, +0.0000021116,0.0000021184,0.0000021260,0.0000021309,0.0000021358, +0.0000021403,0.0000021437,0.0000021518,0.0000021644,0.0000021769, +0.0000021902,0.0000022049,0.0000022174,0.0000022253,0.0000022280, +0.0000022267,0.0000022251,0.0000022231,0.0000022215,0.0000022201, +0.0000022182,0.0000022148,0.0000022083,0.0000021971,0.0000021810, +0.0000021628,0.0000021526,0.0000021521,0.0000021662,0.0000021845, +0.0000021999,0.0000022150,0.0000022351,0.0000022481,0.0000022464, +0.0000022275,0.0000022044,0.0000021886,0.0000021867,0.0000021872, +0.0000021908,0.0000021953,0.0000021994,0.0000022015,0.0000022024, +0.0000022035,0.0000022059,0.0000022092,0.0000022126,0.0000022159, +0.0000022202,0.0000022268,0.0000022356,0.0000022448,0.0000022523, +0.0000022559,0.0000022565,0.0000022526,0.0000022444,0.0000022347, +0.0000022273,0.0000022250,0.0000022285,0.0000022357,0.0000022472, +0.0000022588,0.0000022663,0.0000022690,0.0000022693,0.0000022677, +0.0000022653,0.0000022622,0.0000022586,0.0000022546,0.0000022497, +0.0000022450,0.0000022408,0.0000022367,0.0000022319,0.0000022255, +0.0000022162,0.0000022049,0.0000021934,0.0000021835,0.0000021755, +0.0000021700,0.0000021657,0.0000021602,0.0000021514,0.0000021395, +0.0000021269,0.0000021169,0.0000021119,0.0000021106,0.0000021108, +0.0000021107,0.0000021092,0.0000021067,0.0000021029,0.0000020981, +0.0000020933,0.0000020895,0.0000020865,0.0000020838,0.0000020810, +0.0000020778,0.0000020735,0.0000020676,0.0000020605,0.0000020534, +0.0000020472,0.0000020430,0.0000020401,0.0000020378,0.0000020365, +0.0000020350,0.0000020341,0.0000020350,0.0000020397,0.0000020476, +0.0000020565,0.0000020643,0.0000020699,0.0000020722,0.0000020724, +0.0000020721,0.0000020732,0.0000020756,0.0000020785,0.0000020802, +0.0000020799,0.0000020771,0.0000020723,0.0000020658,0.0000020596, +0.0000020558,0.0000020542,0.0000020546,0.0000020586,0.0000020652, +0.0000020740,0.0000020853,0.0000020987,0.0000021112,0.0000021183, +0.0000021187,0.0000021156,0.0000021130,0.0000021113,0.0000021085, +0.0000021025,0.0000020954,0.0000020862,0.0000020746,0.0000020622, +0.0000020518,0.0000020460,0.0000020462,0.0000020503,0.0000020587, +0.0000020679,0.0000020770,0.0000020881,0.0000021029,0.0000021182, +0.0000021306,0.0000021395,0.0000021462,0.0000021525,0.0000021598, +0.0000021679,0.0000021755,0.0000021824,0.0000021881,0.0000021924, +0.0000021967,0.0000022016,0.0000022069,0.0000022125,0.0000022183, +0.0000022220,0.0000022228,0.0000022221,0.0000022212,0.0000022202, +0.0000022188,0.0000022178,0.0000022188,0.0000022258,0.0000022393, +0.0000022559,0.0000022712,0.0000022823,0.0000022893,0.0000022942, +0.0000022995,0.0000023061,0.0000023131,0.0000023196,0.0000023250, +0.0000023295,0.0000023330,0.0000023351,0.0000023353,0.0000023341, +0.0000023329,0.0000023317,0.0000023297,0.0000023269,0.0000023234, +0.0000023196,0.0000023159,0.0000023127,0.0000023093,0.0000023050, +0.0000023000,0.0000022945,0.0000022881,0.0000022810,0.0000022738, +0.0000022665,0.0000022583,0.0000022494,0.0000022400,0.0000022305, +0.0000022216,0.0000022143,0.0000022081,0.0000022019,0.0000021943, +0.0000021849,0.0000021742,0.0000021644,0.0000021569,0.0000021517, +0.0000021473,0.0000021421,0.0000021365,0.0000021320,0.0000021299, +0.0000021295,0.0000021296,0.0000021299,0.0000021304,0.0000021305, +0.0000021299,0.0000021286,0.0000021260,0.0000021228,0.0000021194, +0.0000021159,0.0000021122,0.0000021095,0.0000021083,0.0000021083, +0.0000021088,0.0000021100,0.0000021115,0.0000021128,0.0000021135, +0.0000021140,0.0000021142,0.0000021139,0.0000021136,0.0000021133, +0.0000021129,0.0000021124,0.0000021120,0.0000021125,0.0000021143, +0.0000021165,0.0000021181,0.0000021184,0.0000021167,0.0000021132, +0.0000021083,0.0000021026,0.0000020966,0.0000020911,0.0000020868, +0.0000020848,0.0000020840,0.0000020841,0.0000020847,0.0000020863, +0.0000020889,0.0000020918,0.0000020944,0.0000020965,0.0000020984, +0.0000020996,0.0000021000,0.0000020996,0.0000020991,0.0000020986, +0.0000020971,0.0000020947,0.0000020920,0.0000020888,0.0000020852, +0.0000020814,0.0000020776,0.0000020741,0.0000020714,0.0000020699, +0.0000020685,0.0000020676,0.0000020675,0.0000020678,0.0000020686, +0.0000020696,0.0000020705,0.0000020711,0.0000020720,0.0000020731, +0.0000020739,0.0000020744,0.0000020747,0.0000020748,0.0000020745, +0.0000020735,0.0000020720,0.0000020705,0.0000020684,0.0000020660, +0.0000020637,0.0000020619,0.0000020603,0.0000020588,0.0000020575, +0.0000020567,0.0000020562,0.0000020560,0.0000020563,0.0000020569, +0.0000020568,0.0000020560,0.0000020556,0.0000020559,0.0000020565, +0.0000020569,0.0000020568,0.0000020560,0.0000020546,0.0000020528, +0.0000020514,0.0000020502,0.0000020490,0.0000020478,0.0000020467, +0.0000020452,0.0000020434,0.0000020418,0.0000020406,0.0000020390, +0.0000020368,0.0000020344,0.0000020331,0.0000020332,0.0000020350, +0.0000020380,0.0000020418,0.0000020457,0.0000020489,0.0000020512, +0.0000020524,0.0000020521,0.0000020507,0.0000020487,0.0000020467, +0.0000020452,0.0000020446,0.0000020445,0.0000020449,0.0000020457, +0.0000020468,0.0000020485,0.0000020509,0.0000020539,0.0000020570, +0.0000020598,0.0000020621,0.0000020632,0.0000020633,0.0000020625, +0.0000020613,0.0000020599,0.0000020578,0.0000020544,0.0000020504, +0.0000020464,0.0000020433,0.0000020414,0.0000020383,0.0000020310, +0.0000020192,0.0000020067,0.0000019973,0.0000019915,0.0000019875, +0.0000019842,0.0000019820,0.0000019808,0.0000019805,0.0000019814, +0.0000019830,0.0000019840,0.0000019841,0.0000019842,0.0000019851, +0.0000019868,0.0000019885,0.0000019891,0.0000019872,0.0000019816, +0.0000019747,0.0000019703,0.0000019669,0.0000019615,0.0000019644, +0.0000019812,0.0000019994,0.0000020186,0.0000020273,0.0000020257, +0.0000020307,0.0000020390,0.0000020446,0.0000020523,0.0000020537, +0.0000020431,0.0000020305,0.0000020263,0.0000020273,0.0000020291, +0.0000020292,0.0000020278,0.0000020257,0.0000020241,0.0000020240, +0.0000020239,0.0000020232,0.0000020233,0.0000020242,0.0000020252, +0.0000020259,0.0000020270,0.0000020297,0.0000020330,0.0000020349, +0.0000020352,0.0000020344,0.0000020330,0.0000020327,0.0000020294, +0.0000020239,0.0000020226,0.0000020240,0.0000020267,0.0000020316, +0.0000020371,0.0000020413,0.0000020443,0.0000020466,0.0000020497, +0.0000020515,0.0000020493,0.0000020440,0.0000020382,0.0000020326, +0.0000020289,0.0000020275,0.0000020281,0.0000020328,0.0000020396, +0.0000020451,0.0000020484,0.0000020491,0.0000020481,0.0000020447, +0.0000020404,0.0000020354,0.0000020297,0.0000020250,0.0000020216, +0.0000020176,0.0000020132,0.0000020088,0.0000020050,0.0000020021, +0.0000020002,0.0000019996,0.0000020007,0.0000020029,0.0000020047, +0.0000020052,0.0000020053,0.0000020051,0.0000020042,0.0000020030, +0.0000020012,0.0000020000,0.0000020002,0.0000020008,0.0000020018, +0.0000020034,0.0000020051,0.0000020064,0.0000020073,0.0000020080, +0.0000020086,0.0000020091,0.0000020091,0.0000020089,0.0000020088, +0.0000020090,0.0000020097,0.0000020113,0.0000020136,0.0000020158, +0.0000020173,0.0000020185,0.0000020194,0.0000020200,0.0000020207, +0.0000020216,0.0000020225,0.0000020232,0.0000020238,0.0000020242, +0.0000020245,0.0000020248,0.0000020252,0.0000020257,0.0000020262, +0.0000020271,0.0000020286,0.0000020308,0.0000020335,0.0000020362, +0.0000020382,0.0000020396,0.0000020393,0.0000020383,0.0000020372, +0.0000020363,0.0000020358,0.0000020352,0.0000020344,0.0000020332, +0.0000020318,0.0000020305,0.0000020289,0.0000020271,0.0000020250, +0.0000020228,0.0000020204,0.0000020181,0.0000020167,0.0000020158, +0.0000020147,0.0000020133,0.0000020123,0.0000020118,0.0000020117, +0.0000020116,0.0000020113,0.0000020102,0.0000020078,0.0000020039, +0.0000019986,0.0000019942,0.0000019913,0.0000019899,0.0000019895, +0.0000019901,0.0000019922,0.0000019960,0.0000020017,0.0000020089, +0.0000020161,0.0000020223,0.0000020274,0.0000020314,0.0000020343, +0.0000020354,0.0000020360,0.0000020383,0.0000020438,0.0000020525, +0.0000020617,0.0000020693,0.0000020754,0.0000020808,0.0000020825, +0.0000020797,0.0000020814,0.0000020806,0.0000020797,0.0000020782, +0.0000020766,0.0000020742,0.0000020716,0.0000020697,0.0000020700, +0.0000020722,0.0000020761,0.0000020802,0.0000020843,0.0000020888, +0.0000020933,0.0000020972,0.0000020995,0.0000021000,0.0000020992, +0.0000020980,0.0000020959,0.0000020940,0.0000020932,0.0000020930, +0.0000020926,0.0000020914,0.0000020894,0.0000020870,0.0000020843, +0.0000020805,0.0000020765,0.0000020724,0.0000020691,0.0000020671, +0.0000020665,0.0000020669,0.0000020684,0.0000020712,0.0000020757, +0.0000020810,0.0000020863,0.0000020903,0.0000020923,0.0000020927, +0.0000020922,0.0000020919,0.0000020920,0.0000020918,0.0000020909, +0.0000020896,0.0000020879,0.0000020856,0.0000020835,0.0000020820, +0.0000020809,0.0000020800,0.0000020789,0.0000020785,0.0000020785, +0.0000020791,0.0000020816,0.0000020859,0.0000020895,0.0000020906, +0.0000020903,0.0000020897,0.0000020896,0.0000020907,0.0000020929, +0.0000020957,0.0000020986,0.0000021007,0.0000021021,0.0000021028, +0.0000021030,0.0000021034,0.0000021039,0.0000021040,0.0000021036, +0.0000021034,0.0000021053,0.0000021097,0.0000021133,0.0000021148, +0.0000021159,0.0000021175,0.0000021193,0.0000021213,0.0000021233, +0.0000021249,0.0000021260,0.0000021264,0.0000021260,0.0000021251, +0.0000021243,0.0000021243,0.0000021250,0.0000021255,0.0000021259, +0.0000021262,0.0000021261,0.0000021250,0.0000021222,0.0000021178, +0.0000021134,0.0000021114,0.0000021116,0.0000021135,0.0000021161, +0.0000021187,0.0000021211,0.0000021231,0.0000021242,0.0000021243, +0.0000021235,0.0000021222,0.0000021206,0.0000021186,0.0000021163, +0.0000021137,0.0000021107,0.0000021074,0.0000021037,0.0000021005, +0.0000020982,0.0000020964,0.0000020955,0.0000020953,0.0000020956, +0.0000020964,0.0000020977,0.0000020996,0.0000021018,0.0000021040, +0.0000021060,0.0000021078,0.0000021093,0.0000021106,0.0000021118, +0.0000021131,0.0000021151,0.0000021176,0.0000021205,0.0000021235, +0.0000021261,0.0000021280,0.0000021293,0.0000021297,0.0000021293, +0.0000021288,0.0000021293,0.0000021313,0.0000021344,0.0000021376, +0.0000021392,0.0000021393,0.0000021392,0.0000021391,0.0000021390, +0.0000021389,0.0000021387,0.0000021378,0.0000021358,0.0000021333, +0.0000021307,0.0000021280,0.0000021250,0.0000021216,0.0000021186, +0.0000021163,0.0000021145,0.0000021133,0.0000021123,0.0000021114, +0.0000021111,0.0000021119,0.0000021144,0.0000021180,0.0000021218, +0.0000021249,0.0000021271,0.0000021281,0.0000021285,0.0000021288, +0.0000021297,0.0000021308,0.0000021311,0.0000021303,0.0000021294, +0.0000021296,0.0000021316,0.0000021347,0.0000021377,0.0000021410, +0.0000021473,0.0000021564,0.0000021629,0.0000021659,0.0000021722, +0.0000021820,0.0000021873,0.0000021870,0.0000021821,0.0000021717, +0.0000021634,0.0000021641,0.0000021723,0.0000021816,0.0000021854, +0.0000021848,0.0000021819,0.0000021798,0.0000021785,0.0000021772, +0.0000021754,0.0000021731,0.0000021699,0.0000021659,0.0000021620, +0.0000021588,0.0000021568,0.0000021564,0.0000021572,0.0000021587, +0.0000021604,0.0000021624,0.0000021643,0.0000021654,0.0000021659, +0.0000021664,0.0000021672,0.0000021681,0.0000021686,0.0000021690, +0.0000021697,0.0000021711,0.0000021730,0.0000021749,0.0000021766, +0.0000021782,0.0000021795,0.0000021808,0.0000021819,0.0000021831, +0.0000021844,0.0000021854,0.0000021859,0.0000021861,0.0000021860, +0.0000021862,0.0000021870,0.0000021882,0.0000021896,0.0000021912, +0.0000021931,0.0000021951,0.0000021971,0.0000021987,0.0000021998, +0.0000022002,0.0000021999,0.0000021992,0.0000021980,0.0000021963, +0.0000021939,0.0000021911,0.0000021871,0.0000021818,0.0000021755, +0.0000021694,0.0000021646,0.0000021614,0.0000021595,0.0000021585, +0.0000021583,0.0000021585,0.0000021585,0.0000021580,0.0000021566, +0.0000021541,0.0000021504,0.0000021459,0.0000021407,0.0000021354, +0.0000021300,0.0000021244,0.0000021187,0.0000021131,0.0000021080, +0.0000021051,0.0000021044,0.0000021045,0.0000021043,0.0000021043, +0.0000021065,0.0000021118,0.0000021188,0.0000021248,0.0000021289, +0.0000021317,0.0000021328,0.0000021311,0.0000021277,0.0000021232, +0.0000021184,0.0000021132,0.0000021074,0.0000021026,0.0000020994, +0.0000020984,0.0000020993,0.0000021027,0.0000021065,0.0000021098, +0.0000021129,0.0000021160,0.0000021197,0.0000021237,0.0000021286, +0.0000021332,0.0000021377,0.0000021413,0.0000021425,0.0000021413, +0.0000021379,0.0000021337,0.0000021290,0.0000021246,0.0000021216, +0.0000021204,0.0000021196,0.0000021181,0.0000021160,0.0000021131, +0.0000021091,0.0000021053,0.0000021022,0.0000020995,0.0000020973, +0.0000020922,0.0000020804,0.0000020692,0.0000020675,0.0000020697, +0.0000020720,0.0000020720,0.0000020688,0.0000020639,0.0000020613, +0.0000020611,0.0000020700,0.0000020803,0.0000020826,0.0000020833, +0.0000020866,0.0000020931,0.0000020972,0.0000020977,0.0000020950, +0.0000020911,0.0000020899,0.0000020965,0.0000021092,0.0000021158, +0.0000021229,0.0000021360,0.0000021441,0.0000021450,0.0000021513, +0.0000021624,0.0000021626,0.0000021577,0.0000021599,0.0000021734, +0.0000021873,0.0000021967,0.0000021960,0.0000021926,0.0000022018, +0.0000022204,0.0000022246,0.0000022154,0.0000021984,0.0000021845, +0.0000021793,0.0000021778,0.0000021826,0.0000021980,0.0000022130, +0.0000022325,0.0000022457,0.0000022462,0.0000022447,0.0000022432, +0.0000022402,0.0000022355,0.0000022303,0.0000022250,0.0000022200, +0.0000022184,0.0000022224,0.0000022304,0.0000022407,0.0000022510, +0.0000022598,0.0000022668,0.0000022729,0.0000022779,0.0000022808, +0.0000022799,0.0000022754,0.0000022699,0.0000022666,0.0000022662, +0.0000022674,0.0000022689,0.0000022707,0.0000022721,0.0000022730, +0.0000022721,0.0000022681,0.0000022610,0.0000022536,0.0000022478, +0.0000022440,0.0000022425,0.0000022426,0.0000022439,0.0000022467, +0.0000022491,0.0000022495,0.0000022465,0.0000022409,0.0000022348, +0.0000022282,0.0000022212,0.0000022147,0.0000022117,0.0000022131, +0.0000022149,0.0000022151,0.0000022122,0.0000022082,0.0000022108, +0.0000022145,0.0000022108,0.0000022057,0.0000021998,0.0000021938, +0.0000021890,0.0000021847,0.0000021834,0.0000021869,0.0000021920, +0.0000021953,0.0000021962,0.0000021960,0.0000021966,0.0000021971, +0.0000021962,0.0000021945,0.0000021943,0.0000021954,0.0000021985, +0.0000022027,0.0000022073,0.0000022129,0.0000022187,0.0000022242, +0.0000022289,0.0000022327,0.0000022352,0.0000022370,0.0000022383, +0.0000022388,0.0000022385,0.0000022375,0.0000022364,0.0000022351, +0.0000022337,0.0000022329,0.0000022341,0.0000022365,0.0000022396, +0.0000022412,0.0000022415,0.0000022413,0.0000022419,0.0000022432, +0.0000022454,0.0000022479,0.0000022494,0.0000022502,0.0000022507, +0.0000022512,0.0000022523,0.0000022541,0.0000022559,0.0000022559, +0.0000022538,0.0000022505,0.0000022482,0.0000022468,0.0000022460, +0.0000022453,0.0000022454,0.0000022456,0.0000022463,0.0000022487, +0.0000022521,0.0000022555,0.0000022593,0.0000022638,0.0000022693, +0.0000022747,0.0000022787,0.0000022821,0.0000022849,0.0000022850, +0.0000022826,0.0000022796,0.0000022758,0.0000022694,0.0000022633, +0.0000022596,0.0000022560,0.0000022511,0.0000022452,0.0000022370, +0.0000022254,0.0000022133,0.0000022062,0.0000022021,0.0000021938, +0.0000021855,0.0000021841,0.0000021858,0.0000021910,0.0000021988, +0.0000022081,0.0000022144,0.0000022161,0.0000022175,0.0000022193, +0.0000022194,0.0000022178,0.0000022153,0.0000022131,0.0000022113, +0.0000022106,0.0000022107,0.0000022111,0.0000022114,0.0000022112, +0.0000022107,0.0000022097,0.0000022078,0.0000022051,0.0000022018, +0.0000021980,0.0000021944,0.0000021906,0.0000021861,0.0000021813, +0.0000021764,0.0000021715,0.0000021665,0.0000021619,0.0000021574, +0.0000021534,0.0000021506,0.0000021492,0.0000021483,0.0000021471, +0.0000021453,0.0000021430,0.0000021407,0.0000021391,0.0000021383, +0.0000021383,0.0000021397,0.0000021427,0.0000021474,0.0000021533, +0.0000021602,0.0000021683,0.0000021760,0.0000021819,0.0000021848, +0.0000021864,0.0000021879,0.0000021906,0.0000021933,0.0000021981, +0.0000022037,0.0000022076,0.0000022092,0.0000022081,0.0000022043, +0.0000021982,0.0000021904,0.0000021823,0.0000021753,0.0000021698, +0.0000021662,0.0000021641,0.0000021632,0.0000021628,0.0000021624, +0.0000021617,0.0000021609,0.0000021605,0.0000021608,0.0000021622, +0.0000021647,0.0000021676,0.0000021703,0.0000021726,0.0000021738, +0.0000021740,0.0000021731,0.0000021711,0.0000021684,0.0000021650, +0.0000021616,0.0000021587,0.0000021564,0.0000021544,0.0000021524, +0.0000021505,0.0000021481,0.0000021448,0.0000021407,0.0000021357, +0.0000021299,0.0000021238,0.0000021176,0.0000021120,0.0000021074, +0.0000021053,0.0000021054,0.0000021069,0.0000021094,0.0000021121, +0.0000021142,0.0000021154,0.0000021159,0.0000021159,0.0000021160, +0.0000021170,0.0000021191,0.0000021218,0.0000021245,0.0000021275, +0.0000021310,0.0000021340,0.0000021363,0.0000021377,0.0000021383, +0.0000021383,0.0000021379,0.0000021374,0.0000021366,0.0000021354, +0.0000021338,0.0000021319,0.0000021301,0.0000021286,0.0000021278, +0.0000021273,0.0000021277,0.0000021289,0.0000021307,0.0000021329, +0.0000021355,0.0000021386,0.0000021417,0.0000021447,0.0000021474, +0.0000021500,0.0000021522,0.0000021537,0.0000021537,0.0000021523, +0.0000021503,0.0000021483,0.0000021475,0.0000021490,0.0000021517, +0.0000021555,0.0000021601,0.0000021651,0.0000021703,0.0000021748, +0.0000021781,0.0000021800,0.0000021810,0.0000021815,0.0000021813, +0.0000021826,0.0000021860,0.0000021876,0.0000021932,0.0000021992, +0.0000022048,0.0000022103,0.0000022157,0.0000022204,0.0000022245, +0.0000022284,0.0000022320,0.0000022352,0.0000022386,0.0000022428, +0.0000022472,0.0000022511,0.0000022545,0.0000022572,0.0000022594, +0.0000022610,0.0000022619,0.0000022621,0.0000022618,0.0000022606, +0.0000022590,0.0000022570,0.0000022549,0.0000022529,0.0000022505, +0.0000022475,0.0000022439,0.0000022402,0.0000022364,0.0000022330, +0.0000022303,0.0000022282,0.0000022267,0.0000022260,0.0000022262, +0.0000022264,0.0000022266,0.0000022266,0.0000022258,0.0000022240, +0.0000022213,0.0000022177,0.0000022136,0.0000022092,0.0000022046, +0.0000022000,0.0000021952,0.0000021902,0.0000021855,0.0000021813, +0.0000021776,0.0000021754,0.0000021738,0.0000021721,0.0000021694, +0.0000021661,0.0000021623,0.0000021579,0.0000021547,0.0000021519, +0.0000021507,0.0000021511,0.0000021521,0.0000021541,0.0000021566, +0.0000021591,0.0000021607,0.0000021599,0.0000021555,0.0000021469, +0.0000021360,0.0000021271,0.0000021231,0.0000021227,0.0000021242, +0.0000021273,0.0000021300,0.0000021314,0.0000021326,0.0000021338, +0.0000021354,0.0000021359,0.0000021352,0.0000021341,0.0000021327, +0.0000021306,0.0000021255,0.0000021163,0.0000021034,0.0000020902, +0.0000020785,0.0000020695,0.0000020625,0.0000020576,0.0000020540, +0.0000020514,0.0000020503,0.0000020503,0.0000020509,0.0000020519, +0.0000020534,0.0000020558,0.0000020585,0.0000020605,0.0000020612, +0.0000020608,0.0000020590,0.0000020562,0.0000020526,0.0000020483, +0.0000020427,0.0000020345,0.0000020237,0.0000020117,0.0000020016, +0.0000019954,0.0000019925,0.0000019911,0.0000019888,0.0000019858, +0.0000019867,0.0000019925,0.0000020014,0.0000020113,0.0000020243, +0.0000020412,0.0000020573,0.0000020673,0.0000020709,0.0000020713, +0.0000020716,0.0000020725,0.0000020752,0.0000020792,0.0000020824, +0.0000020842,0.0000020846,0.0000020837,0.0000020814,0.0000020770, +0.0000020713,0.0000020658,0.0000020584,0.0000020478,0.0000020376, +0.0000020344,0.0000020381,0.0000020526,0.0000020692,0.0000020812, +0.0000020871,0.0000020889,0.0000020902,0.0000020929,0.0000020989, +0.0000021097,0.0000021255,0.0000021452,0.0000021647,0.0000021801, +0.0000021916,0.0000022005,0.0000022070,0.0000022113,0.0000022134, +0.0000022131,0.0000022132,0.0000022132,0.0000022107,0.0000022066, +0.0000022022,0.0000021989,0.0000021972,0.0000021986,0.0000022005, +0.0000022043,0.0000022098,0.0000022149,0.0000022186,0.0000022200, +0.0000022191,0.0000022178,0.0000022170,0.0000022177,0.0000022197, +0.0000022227,0.0000022244,0.0000022209,0.0000022120,0.0000021977, +0.0000021827,0.0000021709,0.0000021667,0.0000021658,0.0000021671, +0.0000021699,0.0000021732,0.0000021771,0.0000021814,0.0000021863, +0.0000021915,0.0000021965,0.0000022004,0.0000022031,0.0000022048, +0.0000022054,0.0000022047,0.0000022030,0.0000022003,0.0000021966, +0.0000021925,0.0000021893,0.0000021875,0.0000021874,0.0000021890, +0.0000021912,0.0000021927,0.0000021919,0.0000021905,0.0000021922, +0.0000021998,0.0000022083,0.0000022107,0.0000022088,0.0000022105, +0.0000022205,0.0000022333,0.0000022395,0.0000022392,0.0000022345, +0.0000022289,0.0000022249,0.0000022143,0.0000021923,0.0000021695, +0.0000021568,0.0000021499,0.0000021417,0.0000021325,0.0000021251, +0.0000021211,0.0000021193,0.0000021184,0.0000021172,0.0000021166, +0.0000021168,0.0000021172,0.0000021178,0.0000021184,0.0000021180, +0.0000021167,0.0000021152,0.0000021151,0.0000021176,0.0000021215, +0.0000021238,0.0000021236,0.0000021210,0.0000021171,0.0000021140, +0.0000021113,0.0000021090,0.0000021075,0.0000021081,0.0000021128, +0.0000021204,0.0000021263,0.0000021316,0.0000021364,0.0000021384, +0.0000021436,0.0000021545,0.0000021668,0.0000021800,0.0000021949, +0.0000022089,0.0000022193,0.0000022247,0.0000022259,0.0000022249, +0.0000022235,0.0000022217,0.0000022200,0.0000022181,0.0000022154, +0.0000022113,0.0000022050,0.0000021945,0.0000021787,0.0000021608, +0.0000021510,0.0000021511,0.0000021653,0.0000021839,0.0000021999, +0.0000022154,0.0000022340,0.0000022495,0.0000022520,0.0000022393, +0.0000022184,0.0000021998,0.0000021885,0.0000021881,0.0000021882, +0.0000021910,0.0000021931,0.0000021943,0.0000021953,0.0000021973, +0.0000022008,0.0000022051,0.0000022096,0.0000022143,0.0000022197, +0.0000022273,0.0000022374,0.0000022478,0.0000022558,0.0000022596, +0.0000022614,0.0000022587,0.0000022512,0.0000022413,0.0000022340, +0.0000022317,0.0000022344,0.0000022394,0.0000022489,0.0000022590, +0.0000022657,0.0000022681,0.0000022681,0.0000022669,0.0000022640, +0.0000022603,0.0000022562,0.0000022520,0.0000022480,0.0000022437, +0.0000022393,0.0000022344,0.0000022289,0.0000022223,0.0000022140, +0.0000022049,0.0000021954,0.0000021860,0.0000021773,0.0000021702, +0.0000021647,0.0000021593,0.0000021519,0.0000021415,0.0000021294, +0.0000021191,0.0000021132,0.0000021113,0.0000021116,0.0000021116, +0.0000021101,0.0000021072,0.0000021029,0.0000020980,0.0000020934, +0.0000020894,0.0000020858,0.0000020827,0.0000020802,0.0000020772, +0.0000020729,0.0000020671,0.0000020605,0.0000020535,0.0000020475, +0.0000020430,0.0000020396,0.0000020379,0.0000020363,0.0000020341, +0.0000020326,0.0000020328,0.0000020362,0.0000020428,0.0000020516, +0.0000020607,0.0000020675,0.0000020708,0.0000020711,0.0000020708, +0.0000020709,0.0000020720,0.0000020741,0.0000020762,0.0000020767, +0.0000020756,0.0000020713,0.0000020653,0.0000020587,0.0000020532, +0.0000020489,0.0000020473,0.0000020507,0.0000020571,0.0000020656, +0.0000020761,0.0000020890,0.0000021019,0.0000021104,0.0000021122, +0.0000021097,0.0000021073,0.0000021063,0.0000021035,0.0000021002, +0.0000020937,0.0000020849,0.0000020743,0.0000020630,0.0000020533, +0.0000020472,0.0000020450,0.0000020478,0.0000020549,0.0000020633, +0.0000020724,0.0000020842,0.0000020989,0.0000021149,0.0000021284, +0.0000021371,0.0000021428,0.0000021479,0.0000021542,0.0000021607, +0.0000021673,0.0000021741,0.0000021800,0.0000021856,0.0000021918, +0.0000021980,0.0000022032,0.0000022084,0.0000022140,0.0000022188, +0.0000022214,0.0000022216,0.0000022209,0.0000022198,0.0000022180, +0.0000022166,0.0000022160,0.0000022203,0.0000022306,0.0000022451, +0.0000022599,0.0000022716,0.0000022796,0.0000022846,0.0000022885, +0.0000022925,0.0000022968,0.0000023012,0.0000023056,0.0000023100, +0.0000023136,0.0000023154,0.0000023153,0.0000023146,0.0000023138, +0.0000023127,0.0000023111,0.0000023090,0.0000023062,0.0000023032, +0.0000023003,0.0000022973,0.0000022938,0.0000022895,0.0000022846, +0.0000022793,0.0000022732,0.0000022668,0.0000022605,0.0000022536, +0.0000022455,0.0000022368,0.0000022283,0.0000022202,0.0000022133, +0.0000022077,0.0000022022,0.0000021948,0.0000021849,0.0000021735, +0.0000021630,0.0000021550,0.0000021487,0.0000021427,0.0000021364, +0.0000021301,0.0000021252,0.0000021229,0.0000021227,0.0000021232, +0.0000021242,0.0000021253,0.0000021261,0.0000021262,0.0000021259, +0.0000021243,0.0000021214,0.0000021175,0.0000021133,0.0000021090, +0.0000021048,0.0000021019,0.0000021009,0.0000021013,0.0000021028, +0.0000021046,0.0000021057,0.0000021063,0.0000021072,0.0000021081, +0.0000021083,0.0000021083,0.0000021085,0.0000021090,0.0000021092, +0.0000021092,0.0000021097,0.0000021108,0.0000021124,0.0000021140, +0.0000021150,0.0000021149,0.0000021131,0.0000021097,0.0000021052, +0.0000021001,0.0000020949,0.0000020904,0.0000020872,0.0000020856, +0.0000020848,0.0000020840,0.0000020837,0.0000020835,0.0000020841, +0.0000020856,0.0000020877,0.0000020903,0.0000020932,0.0000020959, +0.0000020977,0.0000020992,0.0000020997,0.0000021001,0.0000020997, +0.0000020982,0.0000020956,0.0000020925,0.0000020890,0.0000020846, +0.0000020801,0.0000020763,0.0000020736,0.0000020714,0.0000020694, +0.0000020679,0.0000020671,0.0000020672,0.0000020677,0.0000020684, +0.0000020693,0.0000020703,0.0000020718,0.0000020730,0.0000020739, +0.0000020745,0.0000020746,0.0000020743,0.0000020736,0.0000020725, +0.0000020711,0.0000020697,0.0000020681,0.0000020663,0.0000020643, +0.0000020626,0.0000020613,0.0000020602,0.0000020593,0.0000020587, +0.0000020582,0.0000020577,0.0000020577,0.0000020577,0.0000020572, +0.0000020562,0.0000020555,0.0000020550,0.0000020545,0.0000020537, +0.0000020521,0.0000020500,0.0000020476,0.0000020452,0.0000020434, +0.0000020420,0.0000020411,0.0000020410,0.0000020410,0.0000020407, +0.0000020399,0.0000020391,0.0000020384,0.0000020370,0.0000020344, +0.0000020307,0.0000020276,0.0000020262,0.0000020263,0.0000020280, +0.0000020310,0.0000020350,0.0000020394,0.0000020436,0.0000020467, +0.0000020483,0.0000020482,0.0000020470,0.0000020456,0.0000020448, +0.0000020447,0.0000020452,0.0000020459,0.0000020468,0.0000020478, +0.0000020491,0.0000020511,0.0000020536,0.0000020562,0.0000020585, +0.0000020602,0.0000020610,0.0000020608,0.0000020597,0.0000020585, +0.0000020571,0.0000020549,0.0000020519,0.0000020486,0.0000020453, +0.0000020424,0.0000020405,0.0000020384,0.0000020331,0.0000020228, +0.0000020099,0.0000019987,0.0000019915,0.0000019870,0.0000019841, +0.0000019821,0.0000019807,0.0000019802,0.0000019810,0.0000019821, +0.0000019832,0.0000019833,0.0000019827,0.0000019825,0.0000019840, +0.0000019865,0.0000019882,0.0000019874,0.0000019828,0.0000019759, +0.0000019707,0.0000019672,0.0000019613,0.0000019620,0.0000019766, +0.0000019950,0.0000020147,0.0000020268,0.0000020257,0.0000020291, +0.0000020388,0.0000020452,0.0000020524,0.0000020542,0.0000020450, +0.0000020319,0.0000020264,0.0000020271,0.0000020292,0.0000020297, +0.0000020280,0.0000020253,0.0000020232,0.0000020225,0.0000020220, +0.0000020219,0.0000020227,0.0000020239,0.0000020248,0.0000020254, +0.0000020266,0.0000020294,0.0000020325,0.0000020344,0.0000020349, +0.0000020337,0.0000020314,0.0000020302,0.0000020258,0.0000020207, +0.0000020207,0.0000020237,0.0000020276,0.0000020328,0.0000020381, +0.0000020420,0.0000020445,0.0000020465,0.0000020483,0.0000020476, +0.0000020436,0.0000020389,0.0000020337,0.0000020291,0.0000020271, +0.0000020277,0.0000020313,0.0000020380,0.0000020442,0.0000020471, +0.0000020482,0.0000020475,0.0000020452,0.0000020419,0.0000020380, +0.0000020334,0.0000020284,0.0000020245,0.0000020222,0.0000020202, +0.0000020175,0.0000020140,0.0000020097,0.0000020051,0.0000020014, +0.0000019999,0.0000020002,0.0000020019,0.0000020034,0.0000020038, +0.0000020035,0.0000020031,0.0000020024,0.0000020009,0.0000019988, +0.0000019972,0.0000019969,0.0000019972,0.0000019978,0.0000019987, +0.0000019995,0.0000020005,0.0000020017,0.0000020028,0.0000020040, +0.0000020048,0.0000020051,0.0000020049,0.0000020052,0.0000020062, +0.0000020080,0.0000020103,0.0000020130,0.0000020153,0.0000020170, +0.0000020181,0.0000020188,0.0000020193,0.0000020200,0.0000020208, +0.0000020215,0.0000020220,0.0000020226,0.0000020231,0.0000020236, +0.0000020241,0.0000020248,0.0000020256,0.0000020265,0.0000020274, +0.0000020283,0.0000020297,0.0000020319,0.0000020347,0.0000020378, +0.0000020407,0.0000020429,0.0000020441,0.0000020451,0.0000020447, +0.0000020433,0.0000020417,0.0000020401,0.0000020382,0.0000020360, +0.0000020336,0.0000020313,0.0000020289,0.0000020263,0.0000020234, +0.0000020201,0.0000020166,0.0000020137,0.0000020110,0.0000020088, +0.0000020074,0.0000020068,0.0000020063,0.0000020056,0.0000020048, +0.0000020043,0.0000020046,0.0000020058,0.0000020062,0.0000020046, +0.0000020007,0.0000019960,0.0000019919,0.0000019894,0.0000019881, +0.0000019880,0.0000019890,0.0000019922,0.0000019980,0.0000020054, +0.0000020135,0.0000020208,0.0000020272,0.0000020321,0.0000020351, +0.0000020364,0.0000020372,0.0000020377,0.0000020400,0.0000020455, +0.0000020533,0.0000020611,0.0000020685,0.0000020748,0.0000020666, +0.0000020727,0.0000020771,0.0000020794,0.0000020786,0.0000020773, +0.0000020755,0.0000020742,0.0000020738,0.0000020739,0.0000020748, +0.0000020763,0.0000020785,0.0000020805,0.0000020832,0.0000020870, +0.0000020913,0.0000020951,0.0000020984,0.0000021006,0.0000021015, +0.0000021005,0.0000020985,0.0000020969,0.0000020958,0.0000020952, +0.0000020945,0.0000020934,0.0000020916,0.0000020894,0.0000020866, +0.0000020841,0.0000020818,0.0000020798,0.0000020784,0.0000020774, +0.0000020774,0.0000020785,0.0000020804,0.0000020830,0.0000020857, +0.0000020883,0.0000020904,0.0000020921,0.0000020927,0.0000020930, +0.0000020936,0.0000020947,0.0000020956,0.0000020951,0.0000020936, +0.0000020918,0.0000020896,0.0000020872,0.0000020852,0.0000020836, +0.0000020820,0.0000020798,0.0000020785,0.0000020789,0.0000020806, +0.0000020837,0.0000020865,0.0000020878,0.0000020878,0.0000020868, +0.0000020855,0.0000020855,0.0000020872,0.0000020899,0.0000020929, +0.0000020963,0.0000020991,0.0000021007,0.0000021010,0.0000021007, +0.0000020998,0.0000020992,0.0000020996,0.0000020996,0.0000020989, +0.0000020986,0.0000021009,0.0000021062,0.0000021108,0.0000021132, +0.0000021151,0.0000021175,0.0000021200,0.0000021225,0.0000021245, +0.0000021261,0.0000021272,0.0000021276,0.0000021274,0.0000021270, +0.0000021267,0.0000021267,0.0000021269,0.0000021272,0.0000021273, +0.0000021272,0.0000021265,0.0000021250,0.0000021220,0.0000021179, +0.0000021138,0.0000021115,0.0000021115,0.0000021129,0.0000021151, +0.0000021177,0.0000021204,0.0000021229,0.0000021247,0.0000021255, +0.0000021256,0.0000021248,0.0000021233,0.0000021212,0.0000021185, +0.0000021152,0.0000021115,0.0000021076,0.0000021037,0.0000021000, +0.0000020968,0.0000020946,0.0000020931,0.0000020923,0.0000020923, +0.0000020930,0.0000020945,0.0000020966,0.0000020990,0.0000021017, +0.0000021044,0.0000021068,0.0000021089,0.0000021106,0.0000021119, +0.0000021132,0.0000021152,0.0000021177,0.0000021204,0.0000021228, +0.0000021248,0.0000021264,0.0000021275,0.0000021279,0.0000021273, +0.0000021263,0.0000021259,0.0000021268,0.0000021297,0.0000021340, +0.0000021375,0.0000021391,0.0000021397,0.0000021403,0.0000021408, +0.0000021411,0.0000021408,0.0000021398,0.0000021381,0.0000021353, +0.0000021321,0.0000021287,0.0000021255,0.0000021223,0.0000021193, +0.0000021169,0.0000021149,0.0000021133,0.0000021122,0.0000021113, +0.0000021112,0.0000021124,0.0000021153,0.0000021193,0.0000021234, +0.0000021265,0.0000021282,0.0000021286,0.0000021282,0.0000021276, +0.0000021274,0.0000021279,0.0000021286,0.0000021286,0.0000021284, +0.0000021287,0.0000021301,0.0000021330,0.0000021370,0.0000021404, +0.0000021452,0.0000021535,0.0000021615,0.0000021656,0.0000021698, +0.0000021786,0.0000021863,0.0000021877,0.0000021864,0.0000021796, +0.0000021698,0.0000021652,0.0000021675,0.0000021763,0.0000021862, +0.0000021901,0.0000021896,0.0000021856,0.0000021815,0.0000021783, +0.0000021755,0.0000021727,0.0000021692,0.0000021650,0.0000021608, +0.0000021574,0.0000021549,0.0000021535,0.0000021536,0.0000021547, +0.0000021561,0.0000021577,0.0000021593,0.0000021603,0.0000021606, +0.0000021606,0.0000021609,0.0000021615,0.0000021618,0.0000021620, +0.0000021624,0.0000021634,0.0000021649,0.0000021667,0.0000021685, +0.0000021702,0.0000021718,0.0000021732,0.0000021745,0.0000021757, +0.0000021768,0.0000021776,0.0000021780,0.0000021779,0.0000021775, +0.0000021771,0.0000021766,0.0000021762,0.0000021758,0.0000021757, +0.0000021758,0.0000021764,0.0000021776,0.0000021791,0.0000021807, +0.0000021820,0.0000021830,0.0000021835,0.0000021836,0.0000021832, +0.0000021825,0.0000021816,0.0000021799,0.0000021766,0.0000021718, +0.0000021665,0.0000021618,0.0000021586,0.0000021571,0.0000021568, +0.0000021571,0.0000021574,0.0000021569,0.0000021557,0.0000021535, +0.0000021504,0.0000021466,0.0000021420,0.0000021369,0.0000021311, +0.0000021247,0.0000021181,0.0000021118,0.0000021065,0.0000021028, +0.0000021014,0.0000021015,0.0000021020,0.0000021021,0.0000021024, +0.0000021041,0.0000021079,0.0000021131,0.0000021185,0.0000021239, +0.0000021282,0.0000021304,0.0000021302,0.0000021285,0.0000021260, +0.0000021230,0.0000021194,0.0000021143,0.0000021086,0.0000021032, +0.0000020995,0.0000020984,0.0000020991,0.0000021019,0.0000021050, +0.0000021077,0.0000021105,0.0000021146,0.0000021190,0.0000021244, +0.0000021292,0.0000021334,0.0000021374,0.0000021399,0.0000021403, +0.0000021384,0.0000021353,0.0000021314,0.0000021271,0.0000021235, +0.0000021211,0.0000021194,0.0000021178,0.0000021153,0.0000021121, +0.0000021082,0.0000021046,0.0000021012,0.0000020984,0.0000020956, +0.0000020913,0.0000020804,0.0000020678,0.0000020647,0.0000020661, +0.0000020684,0.0000020688,0.0000020667,0.0000020636,0.0000020619, +0.0000020631,0.0000020734,0.0000020832,0.0000020855,0.0000020863, +0.0000020897,0.0000020950,0.0000020976,0.0000020975,0.0000020941, +0.0000020903,0.0000020900,0.0000020986,0.0000021097,0.0000021164, +0.0000021264,0.0000021388,0.0000021436,0.0000021453,0.0000021568, +0.0000021640,0.0000021603,0.0000021569,0.0000021639,0.0000021792, +0.0000021913,0.0000021945,0.0000021906,0.0000021941,0.0000022132, +0.0000022241,0.0000022192,0.0000022031,0.0000021883,0.0000021830, +0.0000021807,0.0000021833,0.0000021970,0.0000022104,0.0000022294, +0.0000022464,0.0000022489,0.0000022486,0.0000022483,0.0000022465, +0.0000022431,0.0000022386,0.0000022325,0.0000022259,0.0000022222, +0.0000022230,0.0000022307,0.0000022416,0.0000022543,0.0000022649, +0.0000022720,0.0000022757,0.0000022781,0.0000022789,0.0000022775, +0.0000022725,0.0000022670,0.0000022647,0.0000022651,0.0000022668, +0.0000022681,0.0000022691,0.0000022701,0.0000022675,0.0000022610, +0.0000022526,0.0000022454,0.0000022413,0.0000022396,0.0000022394, +0.0000022400,0.0000022414,0.0000022425,0.0000022436,0.0000022448, +0.0000022441,0.0000022406,0.0000022338,0.0000022266,0.0000022209, +0.0000022151,0.0000022090,0.0000022050,0.0000022051,0.0000022082, +0.0000022102,0.0000022106,0.0000022082,0.0000022083,0.0000022146, +0.0000022159,0.0000022103,0.0000022039,0.0000021976,0.0000021919, +0.0000021875,0.0000021834,0.0000021818,0.0000021845,0.0000021882, +0.0000021913,0.0000021929,0.0000021932,0.0000021937,0.0000021949, +0.0000021954,0.0000021948,0.0000021948,0.0000021956,0.0000021985, +0.0000022022,0.0000022068,0.0000022117,0.0000022168,0.0000022219, +0.0000022264,0.0000022308,0.0000022343,0.0000022367,0.0000022382, +0.0000022389,0.0000022388,0.0000022382,0.0000022370,0.0000022355, +0.0000022339,0.0000022329,0.0000022339,0.0000022364,0.0000022402, +0.0000022429,0.0000022448,0.0000022458,0.0000022464,0.0000022474, +0.0000022483,0.0000022498,0.0000022507,0.0000022510,0.0000022513, +0.0000022514,0.0000022514,0.0000022507,0.0000022499,0.0000022493, +0.0000022480,0.0000022466,0.0000022450,0.0000022434,0.0000022425, +0.0000022422,0.0000022424,0.0000022432,0.0000022443,0.0000022462, +0.0000022486,0.0000022510,0.0000022542,0.0000022591,0.0000022652, +0.0000022704,0.0000022747,0.0000022796,0.0000022834,0.0000022837, +0.0000022821,0.0000022796,0.0000022753,0.0000022673,0.0000022596, +0.0000022556,0.0000022528,0.0000022491,0.0000022440,0.0000022362, +0.0000022255,0.0000022141,0.0000022072,0.0000022033,0.0000021949, +0.0000021847,0.0000021805,0.0000021806,0.0000021827,0.0000021890, +0.0000021981,0.0000022065,0.0000022103,0.0000022121,0.0000022149, +0.0000022176,0.0000022185,0.0000022187,0.0000022192,0.0000022192, +0.0000022189,0.0000022185,0.0000022185,0.0000022185,0.0000022181, +0.0000022175,0.0000022167,0.0000022154,0.0000022131,0.0000022100, +0.0000022065,0.0000022032,0.0000022002,0.0000021967,0.0000021924, +0.0000021870,0.0000021808,0.0000021743,0.0000021678,0.0000021616, +0.0000021559,0.0000021512,0.0000021477,0.0000021462,0.0000021455, +0.0000021450,0.0000021437,0.0000021415,0.0000021389,0.0000021370, +0.0000021364,0.0000021372,0.0000021391,0.0000021420,0.0000021458, +0.0000021504,0.0000021560,0.0000021631,0.0000021707,0.0000021780, +0.0000021836,0.0000021880,0.0000021903,0.0000021921,0.0000021936, +0.0000021961,0.0000021991,0.0000022017,0.0000022028,0.0000022022, +0.0000021989,0.0000021932,0.0000021861,0.0000021785,0.0000021721, +0.0000021670,0.0000021631,0.0000021602,0.0000021583,0.0000021568, +0.0000021554,0.0000021535,0.0000021514,0.0000021491,0.0000021472, +0.0000021462,0.0000021463,0.0000021472,0.0000021489,0.0000021509, +0.0000021525,0.0000021532,0.0000021531,0.0000021521,0.0000021506, +0.0000021487,0.0000021466,0.0000021447,0.0000021428,0.0000021408, +0.0000021388,0.0000021369,0.0000021346,0.0000021316,0.0000021280, +0.0000021246,0.0000021200,0.0000021152,0.0000021122,0.0000021079, +0.0000021053,0.0000021048,0.0000021057,0.0000021075,0.0000021096, +0.0000021118,0.0000021137,0.0000021151,0.0000021156,0.0000021153, +0.0000021144,0.0000021142,0.0000021157,0.0000021159,0.0000021173, +0.0000021194,0.0000021216,0.0000021244,0.0000021272,0.0000021296, +0.0000021314,0.0000021324,0.0000021328,0.0000021330,0.0000021327, +0.0000021320,0.0000021305,0.0000021287,0.0000021271,0.0000021260, +0.0000021253,0.0000021247,0.0000021246,0.0000021251,0.0000021258, +0.0000021263,0.0000021263,0.0000021268,0.0000021274,0.0000021276, +0.0000021276,0.0000021279,0.0000021296,0.0000021326,0.0000021363, +0.0000021397,0.0000021424,0.0000021434,0.0000021429,0.0000021414, +0.0000021402,0.0000021406,0.0000021428,0.0000021468,0.0000021528, +0.0000021591,0.0000021654,0.0000021712,0.0000021765,0.0000021808, +0.0000021838,0.0000021851,0.0000021863,0.0000021867,0.0000021872, +0.0000021884,0.0000021895,0.0000021892,0.0000021919,0.0000021952, +0.0000021988,0.0000022024,0.0000022072,0.0000022123,0.0000022179, +0.0000022237,0.0000022294,0.0000022344,0.0000022386,0.0000022422, +0.0000022449,0.0000022468,0.0000022479,0.0000022483,0.0000022481, +0.0000022473,0.0000022459,0.0000022442,0.0000022422,0.0000022401, +0.0000022376,0.0000022347,0.0000022310,0.0000022267,0.0000022220, +0.0000022172,0.0000022125,0.0000022082,0.0000022042,0.0000022008, +0.0000021986,0.0000021966,0.0000021945,0.0000021930,0.0000021913, +0.0000021894,0.0000021870,0.0000021841,0.0000021809,0.0000021775, +0.0000021740,0.0000021707,0.0000021675,0.0000021644,0.0000021612, +0.0000021583,0.0000021565,0.0000021557,0.0000021554,0.0000021560, +0.0000021561,0.0000021550,0.0000021535,0.0000021512,0.0000021504, +0.0000021500,0.0000021515,0.0000021537,0.0000021564,0.0000021588, +0.0000021592,0.0000021603,0.0000021586,0.0000021539,0.0000021462, +0.0000021367,0.0000021279,0.0000021226,0.0000021210,0.0000021214, +0.0000021231,0.0000021254,0.0000021269,0.0000021285,0.0000021305, +0.0000021330,0.0000021357,0.0000021375,0.0000021379,0.0000021373, +0.0000021356,0.0000021321,0.0000021251,0.0000021138,0.0000021004, +0.0000020876,0.0000020764,0.0000020665,0.0000020580,0.0000020519, +0.0000020486,0.0000020467,0.0000020457,0.0000020456,0.0000020462, +0.0000020473,0.0000020484,0.0000020501,0.0000020527,0.0000020552, +0.0000020571,0.0000020579,0.0000020574,0.0000020555,0.0000020528, +0.0000020497,0.0000020459,0.0000020408,0.0000020331,0.0000020232, +0.0000020124,0.0000020036,0.0000019981,0.0000019953,0.0000019930, +0.0000019889,0.0000019844,0.0000019835,0.0000019880,0.0000019962, +0.0000020059,0.0000020180,0.0000020333,0.0000020495,0.0000020616, +0.0000020674,0.0000020694,0.0000020700,0.0000020714,0.0000020741, +0.0000020782,0.0000020826,0.0000020847,0.0000020853,0.0000020845, +0.0000020820,0.0000020767,0.0000020704,0.0000020647,0.0000020584, +0.0000020501,0.0000020409,0.0000020347,0.0000020362,0.0000020459, +0.0000020601,0.0000020734,0.0000020815,0.0000020851,0.0000020866, +0.0000020874,0.0000020889,0.0000020933,0.0000021035,0.0000021205, +0.0000021398,0.0000021578,0.0000021734,0.0000021859,0.0000021957, +0.0000022033,0.0000022088,0.0000022120,0.0000022155,0.0000022172, +0.0000022174,0.0000022161,0.0000022134,0.0000022096,0.0000022056, +0.0000022033,0.0000022028,0.0000022058,0.0000022092,0.0000022135, +0.0000022175,0.0000022194,0.0000022192,0.0000022175,0.0000022154, +0.0000022134,0.0000022128,0.0000022143,0.0000022168,0.0000022190, +0.0000022173,0.0000022106,0.0000021980,0.0000021832,0.0000021724, +0.0000021654,0.0000021656,0.0000021644,0.0000021666,0.0000021687, +0.0000021704,0.0000021723,0.0000021740,0.0000021757,0.0000021773, +0.0000021788,0.0000021799,0.0000021807,0.0000021812,0.0000021814, +0.0000021817,0.0000021825,0.0000021836,0.0000021850,0.0000021862, +0.0000021869,0.0000021872,0.0000021872,0.0000021882,0.0000021916, +0.0000021991,0.0000022055,0.0000022071,0.0000022058,0.0000022066, +0.0000022144,0.0000022273,0.0000022356,0.0000022381,0.0000022359, +0.0000022311,0.0000022271,0.0000022214,0.0000022060,0.0000021818, +0.0000021619,0.0000021519,0.0000021444,0.0000021351,0.0000021268, +0.0000021217,0.0000021188,0.0000021169,0.0000021159,0.0000021149, +0.0000021136,0.0000021132,0.0000021133,0.0000021138,0.0000021149, +0.0000021161,0.0000021165,0.0000021163,0.0000021158,0.0000021148, +0.0000021153,0.0000021177,0.0000021210,0.0000021229,0.0000021223, +0.0000021193,0.0000021158,0.0000021126,0.0000021098,0.0000021078, +0.0000021074,0.0000021094,0.0000021161,0.0000021225,0.0000021278, +0.0000021329,0.0000021347,0.0000021376,0.0000021462,0.0000021581, +0.0000021713,0.0000021856,0.0000021994,0.0000022113,0.0000022197, +0.0000022236,0.0000022243,0.0000022235,0.0000022218,0.0000022199, +0.0000022177,0.0000022147,0.0000022109,0.0000022069,0.0000022014, +0.0000021918,0.0000021764,0.0000021590,0.0000021501,0.0000021507, +0.0000021646,0.0000021831,0.0000021992,0.0000022133,0.0000022299, +0.0000022471,0.0000022533,0.0000022512,0.0000022355,0.0000022155, +0.0000021996,0.0000021905,0.0000021896,0.0000021889,0.0000021888, +0.0000021887,0.0000021895,0.0000021917,0.0000021957,0.0000022010, +0.0000022064,0.0000022116,0.0000022181,0.0000022273,0.0000022386, +0.0000022499,0.0000022585,0.0000022631,0.0000022666,0.0000022651, +0.0000022589,0.0000022500,0.0000022429,0.0000022394,0.0000022395, +0.0000022430,0.0000022496,0.0000022582,0.0000022649,0.0000022679, +0.0000022681,0.0000022665,0.0000022634,0.0000022595,0.0000022560, +0.0000022525,0.0000022483,0.0000022440,0.0000022394,0.0000022342, +0.0000022283,0.0000022213,0.0000022136,0.0000022060,0.0000021986, +0.0000021906,0.0000021820,0.0000021736,0.0000021662,0.0000021595, +0.0000021523,0.0000021436,0.0000021328,0.0000021225,0.0000021156, +0.0000021132,0.0000021134,0.0000021133,0.0000021114,0.0000021077, +0.0000021030,0.0000020979,0.0000020927,0.0000020881,0.0000020842, +0.0000020810,0.0000020783,0.0000020750,0.0000020705,0.0000020651, +0.0000020589,0.0000020527,0.0000020472,0.0000020424,0.0000020393, +0.0000020373,0.0000020352,0.0000020330,0.0000020313,0.0000020308, +0.0000020329,0.0000020391,0.0000020484,0.0000020576,0.0000020645, +0.0000020684,0.0000020696,0.0000020693,0.0000020684,0.0000020685, +0.0000020699,0.0000020719,0.0000020734,0.0000020726,0.0000020702, +0.0000020652,0.0000020581,0.0000020501,0.0000020440,0.0000020422, +0.0000020436,0.0000020492,0.0000020569,0.0000020666,0.0000020788, +0.0000020922,0.0000021023,0.0000021060,0.0000021044,0.0000021023, +0.0000021011,0.0000021004,0.0000020975,0.0000020926,0.0000020848, +0.0000020753,0.0000020651,0.0000020559,0.0000020491,0.0000020461, +0.0000020479,0.0000020519,0.0000020592,0.0000020682,0.0000020795, +0.0000020942,0.0000021109,0.0000021248,0.0000021333,0.0000021380, +0.0000021424,0.0000021480,0.0000021536,0.0000021595,0.0000021660, +0.0000021723,0.0000021794,0.0000021880,0.0000021954,0.0000022006, +0.0000022051,0.0000022104,0.0000022159,0.0000022199,0.0000022211, +0.0000022206,0.0000022192,0.0000022169,0.0000022151,0.0000022135, +0.0000022150,0.0000022216,0.0000022328,0.0000022460,0.0000022580, +0.0000022669,0.0000022727,0.0000022767,0.0000022794,0.0000022817, +0.0000022840,0.0000022866,0.0000022898,0.0000022926,0.0000022937, +0.0000022939,0.0000022940,0.0000022941,0.0000022939,0.0000022932, +0.0000022921,0.0000022903,0.0000022880,0.0000022854,0.0000022825, +0.0000022787,0.0000022741,0.0000022690,0.0000022636,0.0000022581, +0.0000022526,0.0000022469,0.0000022404,0.0000022328,0.0000022251, +0.0000022176,0.0000022106,0.0000022044,0.0000021984,0.0000021907, +0.0000021810,0.0000021702,0.0000021600,0.0000021516,0.0000021443, +0.0000021371,0.0000021303,0.0000021242,0.0000021190,0.0000021161, +0.0000021157,0.0000021166,0.0000021182,0.0000021196,0.0000021207, +0.0000021213,0.0000021212,0.0000021203,0.0000021179,0.0000021143, +0.0000021102,0.0000021061,0.0000021019,0.0000020980,0.0000020955, +0.0000020946,0.0000020953,0.0000020972,0.0000020987,0.0000020993, +0.0000020999,0.0000021009,0.0000021016,0.0000021020,0.0000021024, +0.0000021032,0.0000021035,0.0000021038,0.0000021047,0.0000021062, +0.0000021077,0.0000021092,0.0000021104,0.0000021108,0.0000021104, +0.0000021087,0.0000021058,0.0000021018,0.0000020976,0.0000020935, +0.0000020902,0.0000020881,0.0000020870,0.0000020865,0.0000020859, +0.0000020849,0.0000020834,0.0000020826,0.0000020827,0.0000020834, +0.0000020851,0.0000020874,0.0000020900,0.0000020927,0.0000020953, +0.0000020976,0.0000020992,0.0000020991,0.0000020982,0.0000020967, +0.0000020945,0.0000020912,0.0000020867,0.0000020826,0.0000020794, +0.0000020766,0.0000020744,0.0000020725,0.0000020711,0.0000020702, +0.0000020700,0.0000020702,0.0000020704,0.0000020710,0.0000020717, +0.0000020725,0.0000020730,0.0000020733,0.0000020735,0.0000020736, +0.0000020734,0.0000020732,0.0000020726,0.0000020717,0.0000020709, +0.0000020700,0.0000020688,0.0000020676,0.0000020663,0.0000020648, +0.0000020632,0.0000020620,0.0000020613,0.0000020605,0.0000020593, +0.0000020582,0.0000020575,0.0000020565,0.0000020554,0.0000020541, +0.0000020523,0.0000020501,0.0000020473,0.0000020440,0.0000020406, +0.0000020372,0.0000020340,0.0000020316,0.0000020298,0.0000020293, +0.0000020298,0.0000020307,0.0000020315,0.0000020319,0.0000020322, +0.0000020323,0.0000020316,0.0000020297,0.0000020267,0.0000020237, +0.0000020218,0.0000020208,0.0000020207,0.0000020216,0.0000020239, +0.0000020276,0.0000020321,0.0000020364,0.0000020398,0.0000020417, +0.0000020424,0.0000020426,0.0000020429,0.0000020435,0.0000020443, +0.0000020455,0.0000020468,0.0000020480,0.0000020494,0.0000020510, +0.0000020529,0.0000020547,0.0000020562,0.0000020572,0.0000020575, +0.0000020569,0.0000020558,0.0000020546,0.0000020530,0.0000020508, +0.0000020483,0.0000020458,0.0000020433,0.0000020410,0.0000020392, +0.0000020370,0.0000020328,0.0000020243,0.0000020125,0.0000020009, +0.0000019925,0.0000019874,0.0000019846,0.0000019828,0.0000019817, +0.0000019814,0.0000019814,0.0000019819,0.0000019823,0.0000019823, +0.0000019815,0.0000019807,0.0000019814,0.0000019840,0.0000019866, +0.0000019868,0.0000019835,0.0000019771,0.0000019714,0.0000019676, +0.0000019619,0.0000019594,0.0000019719,0.0000019904,0.0000020105, +0.0000020262,0.0000020257,0.0000020275,0.0000020382,0.0000020453, +0.0000020521,0.0000020544,0.0000020467,0.0000020332,0.0000020265, +0.0000020265,0.0000020286,0.0000020295,0.0000020285,0.0000020260, +0.0000020239,0.0000020227,0.0000020220,0.0000020222,0.0000020231, +0.0000020240,0.0000020244,0.0000020248,0.0000020262,0.0000020290, +0.0000020322,0.0000020344,0.0000020349,0.0000020329,0.0000020299, +0.0000020278,0.0000020228,0.0000020181,0.0000020191,0.0000020234, +0.0000020280,0.0000020336,0.0000020388,0.0000020422,0.0000020441, +0.0000020451,0.0000020448,0.0000020421,0.0000020384,0.0000020346, +0.0000020299,0.0000020271,0.0000020271,0.0000020300,0.0000020357, +0.0000020423,0.0000020461,0.0000020467,0.0000020454,0.0000020432, +0.0000020404,0.0000020370,0.0000020332,0.0000020294,0.0000020257, +0.0000020227,0.0000020209,0.0000020200,0.0000020189,0.0000020179, +0.0000020154,0.0000020114,0.0000020084,0.0000020063,0.0000020051, +0.0000020052,0.0000020053,0.0000020046,0.0000020035,0.0000020025, +0.0000020009,0.0000019987,0.0000019959,0.0000019934,0.0000019923, +0.0000019923,0.0000019927,0.0000019931,0.0000019932,0.0000019936, +0.0000019946,0.0000019958,0.0000019971,0.0000019981,0.0000019987, +0.0000019998,0.0000020016,0.0000020040,0.0000020070,0.0000020099, +0.0000020126,0.0000020151,0.0000020172,0.0000020189,0.0000020200, +0.0000020207,0.0000020211,0.0000020215,0.0000020216,0.0000020215, +0.0000020215,0.0000020215,0.0000020215,0.0000020217,0.0000020222, +0.0000020228,0.0000020239,0.0000020252,0.0000020264,0.0000020280, +0.0000020298,0.0000020319,0.0000020345,0.0000020373,0.0000020404, +0.0000020433,0.0000020457,0.0000020471,0.0000020473,0.0000020463, +0.0000020454,0.0000020435,0.0000020412,0.0000020383,0.0000020350, +0.0000020313,0.0000020275,0.0000020239,0.0000020203,0.0000020168, +0.0000020132,0.0000020094,0.0000020055,0.0000020023,0.0000019997, +0.0000019980,0.0000019974,0.0000019972,0.0000019969,0.0000019965, +0.0000019970,0.0000019984,0.0000020001,0.0000020012,0.0000020013, +0.0000019993,0.0000019953,0.0000019906,0.0000019872,0.0000019861, +0.0000019864,0.0000019889,0.0000019938,0.0000020003,0.0000020077, +0.0000020156,0.0000020234,0.0000020302,0.0000020349,0.0000020369, +0.0000020376,0.0000020377,0.0000020382,0.0000020408,0.0000020451, +0.0000020512,0.0000020589,0.0000020490,0.0000020564,0.0000020642, +0.0000020706,0.0000020748,0.0000020769,0.0000020764,0.0000020751, +0.0000020744,0.0000020749,0.0000020763,0.0000020786,0.0000020815, +0.0000020836,0.0000020848,0.0000020863,0.0000020885,0.0000020911, +0.0000020937,0.0000020966,0.0000020990,0.0000021001,0.0000021001, +0.0000021005,0.0000021007,0.0000021007,0.0000021006,0.0000021004, +0.0000021000,0.0000020989,0.0000020969,0.0000020945,0.0000020923, +0.0000020906,0.0000020890,0.0000020877,0.0000020867,0.0000020861, +0.0000020860,0.0000020858,0.0000020855,0.0000020860,0.0000020866, +0.0000020879,0.0000020897,0.0000020917,0.0000020934,0.0000020950, +0.0000020962,0.0000020962,0.0000020948,0.0000020926,0.0000020903, +0.0000020880,0.0000020860,0.0000020845,0.0000020831,0.0000020816, +0.0000020810,0.0000020823,0.0000020849,0.0000020865,0.0000020864, +0.0000020846,0.0000020828,0.0000020820,0.0000020819,0.0000020831, +0.0000020855,0.0000020883,0.0000020914,0.0000020951,0.0000020989, +0.0000021015,0.0000021023,0.0000021019,0.0000021008,0.0000020989, +0.0000020977,0.0000020968,0.0000020954,0.0000020941,0.0000020939, +0.0000020965,0.0000021022,0.0000021080,0.0000021113,0.0000021137, +0.0000021168,0.0000021202,0.0000021231,0.0000021255,0.0000021274, +0.0000021286,0.0000021291,0.0000021292,0.0000021292,0.0000021290, +0.0000021289,0.0000021288,0.0000021287,0.0000021284,0.0000021276, +0.0000021265,0.0000021249,0.0000021225,0.0000021189,0.0000021147, +0.0000021119,0.0000021115,0.0000021126,0.0000021145,0.0000021169, +0.0000021197,0.0000021226,0.0000021249,0.0000021261,0.0000021263, +0.0000021257,0.0000021245,0.0000021223,0.0000021196,0.0000021163, +0.0000021125,0.0000021084,0.0000021042,0.0000021001,0.0000020966, +0.0000020939,0.0000020920,0.0000020907,0.0000020902,0.0000020904, +0.0000020915,0.0000020930,0.0000020952,0.0000020977,0.0000021005, +0.0000021034,0.0000021060,0.0000021081,0.0000021095,0.0000021110, +0.0000021132,0.0000021160,0.0000021189,0.0000021214,0.0000021234, +0.0000021249,0.0000021259,0.0000021261,0.0000021257,0.0000021250, +0.0000021244,0.0000021240,0.0000021253,0.0000021292,0.0000021339, +0.0000021373,0.0000021390,0.0000021402,0.0000021411,0.0000021414, +0.0000021410,0.0000021403,0.0000021390,0.0000021366,0.0000021332, +0.0000021298,0.0000021270,0.0000021241,0.0000021210,0.0000021182, +0.0000021160,0.0000021143,0.0000021130,0.0000021121,0.0000021121, +0.0000021136,0.0000021165,0.0000021206,0.0000021247,0.0000021277, +0.0000021291,0.0000021291,0.0000021284,0.0000021272,0.0000021262, +0.0000021259,0.0000021264,0.0000021272,0.0000021279,0.0000021285, +0.0000021295,0.0000021320,0.0000021362,0.0000021402,0.0000021440, +0.0000021502,0.0000021590,0.0000021651,0.0000021684,0.0000021746, +0.0000021835,0.0000021881,0.0000021882,0.0000021857,0.0000021781, +0.0000021702,0.0000021677,0.0000021711,0.0000021802,0.0000021895, +0.0000021931,0.0000021925,0.0000021885,0.0000021832,0.0000021781, +0.0000021737,0.0000021695,0.0000021649,0.0000021605,0.0000021570, +0.0000021539,0.0000021515,0.0000021506,0.0000021510,0.0000021523, +0.0000021537,0.0000021549,0.0000021560,0.0000021564,0.0000021564, +0.0000021564,0.0000021568,0.0000021573,0.0000021578,0.0000021585, +0.0000021596,0.0000021608,0.0000021621,0.0000021636,0.0000021652, +0.0000021668,0.0000021683,0.0000021695,0.0000021704,0.0000021707, +0.0000021707,0.0000021704,0.0000021699,0.0000021695,0.0000021692, +0.0000021686,0.0000021678,0.0000021668,0.0000021658,0.0000021647, +0.0000021637,0.0000021631,0.0000021632,0.0000021638,0.0000021646, +0.0000021658,0.0000021670,0.0000021679,0.0000021685,0.0000021691, +0.0000021699,0.0000021700,0.0000021689,0.0000021664,0.0000021630, +0.0000021594,0.0000021568,0.0000021554,0.0000021551,0.0000021552, +0.0000021551,0.0000021540,0.0000021518,0.0000021488,0.0000021457, +0.0000021424,0.0000021384,0.0000021335,0.0000021277,0.0000021211, +0.0000021138,0.0000021067,0.0000021005,0.0000020971,0.0000020967, +0.0000020980,0.0000020996,0.0000021005,0.0000021014,0.0000021029, +0.0000021057,0.0000021094,0.0000021132,0.0000021181,0.0000021230, +0.0000021262,0.0000021274,0.0000021278,0.0000021275,0.0000021265, +0.0000021246,0.0000021209,0.0000021162,0.0000021107,0.0000021048, +0.0000021002,0.0000020987,0.0000020990,0.0000021005,0.0000021023, +0.0000021045,0.0000021082,0.0000021126,0.0000021185,0.0000021241, +0.0000021287,0.0000021326,0.0000021358,0.0000021372,0.0000021370, +0.0000021354,0.0000021324,0.0000021289,0.0000021251,0.0000021215, +0.0000021187,0.0000021162,0.0000021131,0.0000021097,0.0000021061, +0.0000021030,0.0000020994,0.0000020965,0.0000020935,0.0000020897, +0.0000020800,0.0000020666,0.0000020623,0.0000020631,0.0000020649, +0.0000020655,0.0000020647,0.0000020637,0.0000020636,0.0000020659, +0.0000020760,0.0000020847,0.0000020869,0.0000020879,0.0000020913, +0.0000020956,0.0000020974,0.0000020969,0.0000020930,0.0000020898, +0.0000020915,0.0000021013,0.0000021102,0.0000021177,0.0000021301, +0.0000021396,0.0000021423,0.0000021480,0.0000021612,0.0000021635, +0.0000021585,0.0000021580,0.0000021700,0.0000021842,0.0000021916, +0.0000021893,0.0000021881,0.0000022021,0.0000022190,0.0000022205, +0.0000022072,0.0000021914,0.0000021846,0.0000021834,0.0000021839, +0.0000021953,0.0000022068,0.0000022225,0.0000022432,0.0000022496, +0.0000022506,0.0000022516,0.0000022509,0.0000022493,0.0000022463, +0.0000022410,0.0000022344,0.0000022296,0.0000022292,0.0000022347, +0.0000022450,0.0000022560,0.0000022658,0.0000022723,0.0000022761, +0.0000022771,0.0000022764,0.0000022732,0.0000022700,0.0000022679, +0.0000022663,0.0000022655,0.0000022663,0.0000022680,0.0000022684, +0.0000022663,0.0000022595,0.0000022490,0.0000022397,0.0000022348, +0.0000022340,0.0000022358,0.0000022374,0.0000022386,0.0000022400, +0.0000022419,0.0000022429,0.0000022421,0.0000022393,0.0000022348, +0.0000022276,0.0000022186,0.0000022117,0.0000022063,0.0000022011, +0.0000021971,0.0000021965,0.0000021999,0.0000022036,0.0000022053, +0.0000022058,0.0000022045,0.0000022094,0.0000022170,0.0000022164, +0.0000022104,0.0000022036,0.0000021970,0.0000021914,0.0000021870, +0.0000021831,0.0000021814,0.0000021830,0.0000021852,0.0000021879, +0.0000021902,0.0000021911,0.0000021920,0.0000021938,0.0000021954, +0.0000021961,0.0000021967,0.0000021977,0.0000022002,0.0000022038, +0.0000022084,0.0000022129,0.0000022170,0.0000022215,0.0000022256, +0.0000022295,0.0000022331,0.0000022359,0.0000022375,0.0000022386, +0.0000022392,0.0000022394,0.0000022387,0.0000022373,0.0000022355, +0.0000022344,0.0000022356,0.0000022386,0.0000022435,0.0000022475, +0.0000022508,0.0000022528,0.0000022537,0.0000022549,0.0000022553, +0.0000022558,0.0000022564,0.0000022565,0.0000022561,0.0000022551, +0.0000022530,0.0000022495,0.0000022460,0.0000022442,0.0000022439, +0.0000022438,0.0000022429,0.0000022411,0.0000022393,0.0000022386, +0.0000022388,0.0000022400,0.0000022421,0.0000022442,0.0000022458, +0.0000022470,0.0000022491,0.0000022538,0.0000022601,0.0000022652, +0.0000022699,0.0000022762,0.0000022808,0.0000022812,0.0000022808, +0.0000022794,0.0000022749,0.0000022660,0.0000022566,0.0000022514, +0.0000022486,0.0000022458,0.0000022420,0.0000022354,0.0000022259, +0.0000022155,0.0000022087,0.0000022055,0.0000021985,0.0000021874, +0.0000021806,0.0000021779,0.0000021773,0.0000021801,0.0000021881, +0.0000021978,0.0000022052,0.0000022086,0.0000022109,0.0000022138, +0.0000022164,0.0000022182,0.0000022200,0.0000022219,0.0000022234, +0.0000022243,0.0000022244,0.0000022244,0.0000022239,0.0000022230, +0.0000022220,0.0000022209,0.0000022196,0.0000022174,0.0000022144, +0.0000022112,0.0000022084,0.0000022055,0.0000022025,0.0000021987, +0.0000021936,0.0000021874,0.0000021805,0.0000021734,0.0000021660, +0.0000021589,0.0000021527,0.0000021484,0.0000021465,0.0000021459, +0.0000021451,0.0000021434,0.0000021404,0.0000021374,0.0000021350, +0.0000021346,0.0000021359,0.0000021381,0.0000021409,0.0000021445, +0.0000021489,0.0000021540,0.0000021603,0.0000021670,0.0000021733, +0.0000021794,0.0000021849,0.0000021892,0.0000021922,0.0000021945, +0.0000021963,0.0000021981,0.0000021997,0.0000022003,0.0000021996, +0.0000021964,0.0000021911,0.0000021839,0.0000021766,0.0000021704, +0.0000021653,0.0000021612,0.0000021572,0.0000021545,0.0000021527, +0.0000021509,0.0000021492,0.0000021471,0.0000021443,0.0000021417, +0.0000021389,0.0000021368,0.0000021352,0.0000021342,0.0000021341, +0.0000021345,0.0000021351,0.0000021352,0.0000021351,0.0000021349, +0.0000021345,0.0000021340,0.0000021335,0.0000021332,0.0000021326, +0.0000021322,0.0000021324,0.0000021308,0.0000021289,0.0000021271, +0.0000021248,0.0000021216,0.0000021184,0.0000021158,0.0000021135, +0.0000021122,0.0000021119,0.0000021126,0.0000021139,0.0000021157, +0.0000021172,0.0000021186,0.0000021198,0.0000021208,0.0000021213, +0.0000021208,0.0000021198,0.0000021189,0.0000021182,0.0000021182, +0.0000021175,0.0000021180,0.0000021187,0.0000021200,0.0000021221, +0.0000021240,0.0000021251,0.0000021260,0.0000021268,0.0000021273, +0.0000021271,0.0000021260,0.0000021244,0.0000021229,0.0000021223, +0.0000021223,0.0000021226,0.0000021235,0.0000021248,0.0000021260, +0.0000021266,0.0000021267,0.0000021265,0.0000021258,0.0000021244, +0.0000021225,0.0000021202,0.0000021178,0.0000021166,0.0000021164, +0.0000021174,0.0000021203,0.0000021248,0.0000021294,0.0000021325, +0.0000021335,0.0000021331,0.0000021323,0.0000021320,0.0000021343, +0.0000021389,0.0000021457,0.0000021529,0.0000021603,0.0000021679, +0.0000021750,0.0000021806,0.0000021849,0.0000021880,0.0000021897, +0.0000021902,0.0000021903,0.0000021889,0.0000021870,0.0000021860, +0.0000021855,0.0000021843,0.0000021842,0.0000021872,0.0000021916, +0.0000021964,0.0000022016,0.0000022069,0.0000022122,0.0000022169, +0.0000022206,0.0000022233,0.0000022248,0.0000022255,0.0000022255, +0.0000022247,0.0000022233,0.0000022212,0.0000022186,0.0000022156, +0.0000022120,0.0000022078,0.0000022032,0.0000021982,0.0000021927, +0.0000021871,0.0000021817,0.0000021767,0.0000021724,0.0000021690, +0.0000021670,0.0000021661,0.0000021656,0.0000021657,0.0000021666, +0.0000021673,0.0000021678,0.0000021677,0.0000021672,0.0000021661, +0.0000021646,0.0000021628,0.0000021608,0.0000021589,0.0000021569, +0.0000021553,0.0000021545,0.0000021546,0.0000021548,0.0000021554, +0.0000021560,0.0000021558,0.0000021547,0.0000021532,0.0000021519, +0.0000021509,0.0000021519,0.0000021538,0.0000021553,0.0000021558, +0.0000021548,0.0000021522,0.0000021472,0.0000021405,0.0000021327, +0.0000021253,0.0000021200,0.0000021175,0.0000021170,0.0000021177, +0.0000021192,0.0000021207,0.0000021220,0.0000021243,0.0000021278, +0.0000021320,0.0000021363,0.0000021395,0.0000021409,0.0000021403, +0.0000021379,0.0000021319,0.0000021217,0.0000021090,0.0000020961, +0.0000020840,0.0000020730,0.0000020629,0.0000020539,0.0000020469, +0.0000020427,0.0000020406,0.0000020393,0.0000020386,0.0000020387, +0.0000020398,0.0000020413,0.0000020431,0.0000020455,0.0000020482, +0.0000020508,0.0000020528,0.0000020535,0.0000020528,0.0000020509, +0.0000020484,0.0000020455,0.0000020418,0.0000020375,0.0000020307, +0.0000020218,0.0000020125,0.0000020052,0.0000020002,0.0000019972, +0.0000019943,0.0000019884,0.0000019826,0.0000019808,0.0000019840, +0.0000019910,0.0000020003,0.0000020118,0.0000020262,0.0000020418, +0.0000020546,0.0000020624,0.0000020660,0.0000020681,0.0000020699, +0.0000020732,0.0000020786,0.0000020833,0.0000020857,0.0000020867, +0.0000020860,0.0000020832,0.0000020775,0.0000020701,0.0000020631, +0.0000020570,0.0000020510,0.0000020443,0.0000020383,0.0000020373, +0.0000020404,0.0000020516,0.0000020643,0.0000020740,0.0000020796, +0.0000020826,0.0000020837,0.0000020833,0.0000020834,0.0000020882, +0.0000020992,0.0000021142,0.0000021311,0.0000021477,0.0000021631, +0.0000021774,0.0000021901,0.0000022000,0.0000022073,0.0000022129, +0.0000022162,0.0000022188,0.0000022205,0.0000022211,0.0000022197, +0.0000022166,0.0000022134,0.0000022110,0.0000022106,0.0000022120, +0.0000022151,0.0000022177,0.0000022195,0.0000022198,0.0000022184, +0.0000022162,0.0000022132,0.0000022108,0.0000022093,0.0000022090, +0.0000022111,0.0000022142,0.0000022139,0.0000022090,0.0000022000, +0.0000021872,0.0000021770,0.0000021693,0.0000021650,0.0000021662, +0.0000021666,0.0000021662,0.0000021670,0.0000021679,0.0000021691, +0.0000021707,0.0000021728,0.0000021751,0.0000021769,0.0000021783, +0.0000021798,0.0000021813,0.0000021828,0.0000021839,0.0000021850, +0.0000021864,0.0000021870,0.0000021911,0.0000021970,0.0000022023, +0.0000022053,0.0000022054,0.0000022043,0.0000022058,0.0000022130, +0.0000022240,0.0000022317,0.0000022353,0.0000022346,0.0000022306, +0.0000022269,0.0000022233,0.0000022131,0.0000021929,0.0000021707, +0.0000021559,0.0000021477,0.0000021395,0.0000021305,0.0000021240, +0.0000021201,0.0000021177,0.0000021154,0.0000021129,0.0000021107, +0.0000021082,0.0000021065,0.0000021056,0.0000021061,0.0000021071, +0.0000021092,0.0000021113,0.0000021129,0.0000021147,0.0000021154, +0.0000021151,0.0000021149,0.0000021157,0.0000021176,0.0000021207, +0.0000021221,0.0000021208,0.0000021174,0.0000021138,0.0000021105, +0.0000021085,0.0000021071,0.0000021081,0.0000021133,0.0000021200, +0.0000021247,0.0000021298,0.0000021321,0.0000021337,0.0000021402, +0.0000021510,0.0000021633,0.0000021768,0.0000021902,0.0000022026, +0.0000022129,0.0000022196,0.0000022225,0.0000022229,0.0000022216, +0.0000022197,0.0000022173,0.0000022142,0.0000022102,0.0000022061, +0.0000022024,0.0000021978,0.0000021890,0.0000021746,0.0000021585, +0.0000021495,0.0000021498,0.0000021629,0.0000021812,0.0000021973, +0.0000022109,0.0000022252,0.0000022425,0.0000022569,0.0000022586, +0.0000022514,0.0000022360,0.0000022180,0.0000022035,0.0000021942, +0.0000021891,0.0000021876,0.0000021876,0.0000021886,0.0000021909, +0.0000021948,0.0000021995,0.0000022044,0.0000022098,0.0000022172, +0.0000022274,0.0000022397,0.0000022516,0.0000022611,0.0000022679, +0.0000022711,0.0000022716,0.0000022669,0.0000022591,0.0000022518, +0.0000022473,0.0000022451,0.0000022466,0.0000022502,0.0000022578, +0.0000022646,0.0000022678,0.0000022672,0.0000022660,0.0000022637, +0.0000022613,0.0000022583,0.0000022545,0.0000022505,0.0000022462, +0.0000022416,0.0000022362,0.0000022298,0.0000022225,0.0000022150, +0.0000022088,0.0000022032,0.0000021964,0.0000021882,0.0000021789, +0.0000021694,0.0000021608,0.0000021537,0.0000021463,0.0000021372, +0.0000021273,0.0000021199,0.0000021168,0.0000021165,0.0000021159, +0.0000021130,0.0000021082,0.0000021023,0.0000020961,0.0000020906, +0.0000020858,0.0000020816,0.0000020781,0.0000020748,0.0000020709, +0.0000020662,0.0000020612,0.0000020561,0.0000020512,0.0000020459, +0.0000020416,0.0000020382,0.0000020355,0.0000020336,0.0000020320, +0.0000020302,0.0000020294,0.0000020314,0.0000020373,0.0000020450, +0.0000020528,0.0000020596,0.0000020642,0.0000020664,0.0000020665, +0.0000020657,0.0000020653,0.0000020659,0.0000020676,0.0000020694, +0.0000020703,0.0000020693,0.0000020647,0.0000020572,0.0000020483, +0.0000020412,0.0000020366,0.0000020367,0.0000020414,0.0000020482, +0.0000020569,0.0000020685,0.0000020824,0.0000020941,0.0000020997, +0.0000021000,0.0000020979,0.0000020968,0.0000020966,0.0000020958, +0.0000020922,0.0000020861,0.0000020775,0.0000020685,0.0000020603, +0.0000020534,0.0000020492,0.0000020482,0.0000020504,0.0000020560, +0.0000020637,0.0000020746,0.0000020893,0.0000021059,0.0000021200, +0.0000021283,0.0000021324,0.0000021368,0.0000021420,0.0000021469, +0.0000021524,0.0000021585,0.0000021652,0.0000021743,0.0000021844, +0.0000021928,0.0000021985,0.0000022029,0.0000022076,0.0000022131, +0.0000022177,0.0000022201,0.0000022200,0.0000022179,0.0000022154, +0.0000022132,0.0000022104,0.0000022095,0.0000022125,0.0000022199, +0.0000022305,0.0000022414,0.0000022508,0.0000022580,0.0000022628, +0.0000022657,0.0000022674,0.0000022686,0.0000022702,0.0000022720, +0.0000022733,0.0000022739,0.0000022745,0.0000022752,0.0000022760, +0.0000022765,0.0000022766,0.0000022762,0.0000022750,0.0000022731, +0.0000022708,0.0000022677,0.0000022632,0.0000022578,0.0000022525, +0.0000022473,0.0000022424,0.0000022374,0.0000022319,0.0000022254, +0.0000022179,0.0000022099,0.0000022015,0.0000021937,0.0000021863, +0.0000021785,0.0000021700,0.0000021614,0.0000021534,0.0000021459, +0.0000021383,0.0000021307,0.0000021241,0.0000021187,0.0000021136, +0.0000021100,0.0000021090,0.0000021099,0.0000021119,0.0000021137, +0.0000021151,0.0000021158,0.0000021157,0.0000021149,0.0000021130, +0.0000021101,0.0000021066,0.0000021031,0.0000020996,0.0000020961, +0.0000020928,0.0000020903,0.0000020891,0.0000020895,0.0000020907, +0.0000020915,0.0000020922,0.0000020930,0.0000020938,0.0000020944, +0.0000020952,0.0000020964,0.0000020971,0.0000020973,0.0000020980, +0.0000020994,0.0000021011,0.0000021028,0.0000021044,0.0000021056, +0.0000021061,0.0000021057,0.0000021041,0.0000021013,0.0000020979, +0.0000020945,0.0000020915,0.0000020892,0.0000020878,0.0000020872, +0.0000020873,0.0000020873,0.0000020868,0.0000020854,0.0000020837, +0.0000020828,0.0000020824,0.0000020828,0.0000020840,0.0000020859, +0.0000020885,0.0000020913,0.0000020938,0.0000020954,0.0000020961, +0.0000020959,0.0000020950,0.0000020926,0.0000020895,0.0000020862, +0.0000020831,0.0000020803,0.0000020778,0.0000020757,0.0000020739, +0.0000020721,0.0000020711,0.0000020708,0.0000020705,0.0000020704, +0.0000020705,0.0000020707,0.0000020710,0.0000020713,0.0000020716, +0.0000020720,0.0000020723,0.0000020726,0.0000020730,0.0000020733, +0.0000020732,0.0000020729,0.0000020721,0.0000020709,0.0000020695, +0.0000020677,0.0000020654,0.0000020636,0.0000020623,0.0000020613, +0.0000020600,0.0000020582,0.0000020564,0.0000020545,0.0000020526, +0.0000020508,0.0000020485,0.0000020452,0.0000020413,0.0000020373, +0.0000020335,0.0000020298,0.0000020261,0.0000020228,0.0000020207, +0.0000020195,0.0000020192,0.0000020197,0.0000020207,0.0000020217, +0.0000020225,0.0000020232,0.0000020236,0.0000020231,0.0000020215, +0.0000020193,0.0000020172,0.0000020158,0.0000020152,0.0000020147, +0.0000020146,0.0000020151,0.0000020168,0.0000020199,0.0000020239, +0.0000020280,0.0000020313,0.0000020339,0.0000020358,0.0000020376, +0.0000020392,0.0000020407,0.0000020424,0.0000020445,0.0000020467, +0.0000020486,0.0000020502,0.0000020514,0.0000020523,0.0000020529, +0.0000020531,0.0000020527,0.0000020520,0.0000020509,0.0000020496, +0.0000020477,0.0000020455,0.0000020434,0.0000020416,0.0000020401, +0.0000020388,0.0000020374,0.0000020349,0.0000020306,0.0000020234, +0.0000020131,0.0000020023,0.0000019937,0.0000019884,0.0000019855, +0.0000019839,0.0000019832,0.0000019830,0.0000019825,0.0000019819, +0.0000019814,0.0000019810,0.0000019804,0.0000019795,0.0000019794, +0.0000019812,0.0000019842,0.0000019856,0.0000019838,0.0000019786, +0.0000019726,0.0000019683,0.0000019625,0.0000019591,0.0000019678, +0.0000019859,0.0000020061,0.0000020242,0.0000020258,0.0000020265, +0.0000020368,0.0000020450,0.0000020513,0.0000020548,0.0000020486, +0.0000020348,0.0000020267,0.0000020258,0.0000020274,0.0000020291, +0.0000020288,0.0000020272,0.0000020255,0.0000020238,0.0000020226, +0.0000020226,0.0000020233,0.0000020238,0.0000020237,0.0000020241, +0.0000020255,0.0000020287,0.0000020324,0.0000020345,0.0000020347, +0.0000020324,0.0000020288,0.0000020259,0.0000020205,0.0000020160, +0.0000020178,0.0000020227,0.0000020283,0.0000020344,0.0000020392, +0.0000020419,0.0000020429,0.0000020420,0.0000020398,0.0000020372, +0.0000020344,0.0000020307,0.0000020273,0.0000020266,0.0000020287, +0.0000020339,0.0000020400,0.0000020446,0.0000020458,0.0000020443, +0.0000020413,0.0000020379,0.0000020347,0.0000020311,0.0000020274, +0.0000020245,0.0000020218,0.0000020196,0.0000020181,0.0000020177, +0.0000020176,0.0000020172,0.0000020163,0.0000020152,0.0000020152, +0.0000020148,0.0000020140,0.0000020133,0.0000020125,0.0000020106, +0.0000020087,0.0000020064,0.0000020036,0.0000020002,0.0000019966, +0.0000019933,0.0000019909,0.0000019897,0.0000019894,0.0000019893, +0.0000019892,0.0000019891,0.0000019896,0.0000019904,0.0000019915, +0.0000019924,0.0000019942,0.0000019970,0.0000020004,0.0000020042, +0.0000020082,0.0000020120,0.0000020155,0.0000020186,0.0000020213, +0.0000020236,0.0000020255,0.0000020269,0.0000020276,0.0000020279, +0.0000020278,0.0000020273,0.0000020266,0.0000020259,0.0000020252, +0.0000020243,0.0000020232,0.0000020225,0.0000020223,0.0000020223, +0.0000020232,0.0000020241,0.0000020257,0.0000020276,0.0000020298, +0.0000020322,0.0000020348,0.0000020375,0.0000020402,0.0000020425, +0.0000020439,0.0000020449,0.0000020454,0.0000020452,0.0000020438, +0.0000020417,0.0000020391,0.0000020352,0.0000020308,0.0000020260, +0.0000020210,0.0000020161,0.0000020118,0.0000020076,0.0000020042, +0.0000020008,0.0000019973,0.0000019939,0.0000019908,0.0000019885, +0.0000019874,0.0000019875,0.0000019883,0.0000019891,0.0000019898, +0.0000019913,0.0000019940,0.0000019969,0.0000019979,0.0000019965, +0.0000019926,0.0000019881,0.0000019853,0.0000019847,0.0000019861, +0.0000019893,0.0000019941,0.0000020003,0.0000020078,0.0000020161, +0.0000020241,0.0000020305,0.0000020344,0.0000020363,0.0000020368, +0.0000020376,0.0000020386,0.0000020400,0.0000020434,0.0000020388, +0.0000020423,0.0000020477,0.0000020544,0.0000020614,0.0000020678, +0.0000020723,0.0000020747,0.0000020748,0.0000020756,0.0000020762, +0.0000020780,0.0000020814,0.0000020858,0.0000020896,0.0000020920, +0.0000020935,0.0000020944,0.0000020948,0.0000020959,0.0000020971, +0.0000020974,0.0000020976,0.0000020985,0.0000020993,0.0000021000, +0.0000021004,0.0000021008,0.0000021010,0.0000021009,0.0000021000, +0.0000020985,0.0000020961,0.0000020934,0.0000020911,0.0000020892, +0.0000020876,0.0000020859,0.0000020842,0.0000020826,0.0000020811, +0.0000020805,0.0000020811,0.0000020828,0.0000020851,0.0000020881, +0.0000020909,0.0000020931,0.0000020948,0.0000020956,0.0000020952, +0.0000020936,0.0000020917,0.0000020898,0.0000020885,0.0000020877, +0.0000020870,0.0000020869,0.0000020876,0.0000020889,0.0000020895, +0.0000020882,0.0000020850,0.0000020812,0.0000020785,0.0000020781, +0.0000020792,0.0000020811,0.0000020835,0.0000020863,0.0000020894, +0.0000020931,0.0000020973,0.0000021010,0.0000021031,0.0000021038, +0.0000021037,0.0000021021,0.0000020995,0.0000020968,0.0000020944, +0.0000020919,0.0000020900,0.0000020897,0.0000020916,0.0000020971, +0.0000021036,0.0000021081,0.0000021113,0.0000021151,0.0000021193, +0.0000021229,0.0000021260,0.0000021285,0.0000021301,0.0000021311, +0.0000021315,0.0000021314,0.0000021310,0.0000021304,0.0000021298, +0.0000021295,0.0000021295,0.0000021291,0.0000021278,0.0000021260, +0.0000021235,0.0000021200,0.0000021159,0.0000021128,0.0000021120, +0.0000021125,0.0000021142,0.0000021167,0.0000021196,0.0000021224, +0.0000021244,0.0000021254,0.0000021257,0.0000021251,0.0000021237, +0.0000021216,0.0000021191,0.0000021163,0.0000021126,0.0000021087, +0.0000021045,0.0000021005,0.0000020968,0.0000020939,0.0000020916, +0.0000020901,0.0000020892,0.0000020890,0.0000020893,0.0000020903, +0.0000020919,0.0000020938,0.0000020962,0.0000020991,0.0000021019, +0.0000021040,0.0000021055,0.0000021071,0.0000021092,0.0000021120, +0.0000021151,0.0000021180,0.0000021205,0.0000021225,0.0000021240, +0.0000021245,0.0000021243,0.0000021240,0.0000021234,0.0000021225, +0.0000021222,0.0000021241,0.0000021285,0.0000021333,0.0000021367, +0.0000021385,0.0000021396,0.0000021401,0.0000021400,0.0000021395, +0.0000021386,0.0000021369,0.0000021344,0.0000021317,0.0000021291, +0.0000021264,0.0000021233,0.0000021204,0.0000021177,0.0000021155, +0.0000021138,0.0000021128,0.0000021130,0.0000021145,0.0000021174, +0.0000021214,0.0000021254,0.0000021281,0.0000021292,0.0000021293, +0.0000021286,0.0000021272,0.0000021258,0.0000021251,0.0000021250, +0.0000021259,0.0000021273,0.0000021288,0.0000021299,0.0000021315, +0.0000021351,0.0000021396,0.0000021430,0.0000021474,0.0000021553, +0.0000021635,0.0000021675,0.0000021713,0.0000021791,0.0000021866, +0.0000021890,0.0000021890,0.0000021860,0.0000021785,0.0000021724, +0.0000021712,0.0000021743,0.0000021818,0.0000021899,0.0000021941, +0.0000021940,0.0000021906,0.0000021848,0.0000021783,0.0000021725, +0.0000021670,0.0000021619,0.0000021580,0.0000021546,0.0000021515, +0.0000021499,0.0000021501,0.0000021513,0.0000021528,0.0000021541, +0.0000021553,0.0000021560,0.0000021561,0.0000021562,0.0000021567, +0.0000021575,0.0000021585,0.0000021596,0.0000021608,0.0000021621, +0.0000021635,0.0000021649,0.0000021665,0.0000021682,0.0000021697, +0.0000021708,0.0000021713,0.0000021714,0.0000021708,0.0000021698, +0.0000021687,0.0000021675,0.0000021661,0.0000021645,0.0000021629, +0.0000021609,0.0000021589,0.0000021572,0.0000021554,0.0000021536, +0.0000021522,0.0000021511,0.0000021507,0.0000021510,0.0000021517, +0.0000021526,0.0000021536,0.0000021550,0.0000021573,0.0000021592, +0.0000021600,0.0000021595,0.0000021579,0.0000021557,0.0000021537, +0.0000021523,0.0000021517,0.0000021514,0.0000021508,0.0000021495, +0.0000021472,0.0000021441,0.0000021409,0.0000021379,0.0000021346, +0.0000021304,0.0000021254,0.0000021195,0.0000021127,0.0000021054, +0.0000020987,0.0000020941,0.0000020926,0.0000020943,0.0000020968, +0.0000020988,0.0000021004,0.0000021021,0.0000021043,0.0000021071, +0.0000021100,0.0000021131,0.0000021169,0.0000021203,0.0000021230, +0.0000021263,0.0000021281,0.0000021287,0.0000021285,0.0000021265, +0.0000021235,0.0000021192,0.0000021135,0.0000021070,0.0000021021, +0.0000020994,0.0000020985,0.0000020986,0.0000020996,0.0000021019, +0.0000021047,0.0000021097,0.0000021163,0.0000021221,0.0000021267, +0.0000021305,0.0000021329,0.0000021337,0.0000021331,0.0000021315, +0.0000021288,0.0000021254,0.0000021214,0.0000021178,0.0000021145, +0.0000021107,0.0000021070,0.0000021037,0.0000021010,0.0000020978, +0.0000020941,0.0000020908,0.0000020877,0.0000020791,0.0000020655, +0.0000020596,0.0000020599,0.0000020619,0.0000020628,0.0000020640, +0.0000020647,0.0000020650,0.0000020676,0.0000020769,0.0000020842, +0.0000020864,0.0000020876,0.0000020911,0.0000020949,0.0000020966, +0.0000020957,0.0000020918,0.0000020899,0.0000020943,0.0000021038, +0.0000021104,0.0000021202,0.0000021335,0.0000021400,0.0000021418, +0.0000021521,0.0000021630,0.0000021624,0.0000021582,0.0000021620, +0.0000021760,0.0000021868,0.0000021877,0.0000021837,0.0000021898, +0.0000022097,0.0000022182,0.0000022104,0.0000021943,0.0000021852, +0.0000021845,0.0000021840,0.0000021918,0.0000022039,0.0000022137, +0.0000022347,0.0000022462,0.0000022498,0.0000022529,0.0000022537, +0.0000022535,0.0000022525,0.0000022486,0.0000022432,0.0000022397, +0.0000022390,0.0000022415,0.0000022484,0.0000022575,0.0000022649, +0.0000022702,0.0000022734,0.0000022744,0.0000022735,0.0000022704, +0.0000022688,0.0000022690,0.0000022687,0.0000022676,0.0000022673, +0.0000022678,0.0000022675,0.0000022622,0.0000022507,0.0000022387, +0.0000022320,0.0000022305,0.0000022312,0.0000022328,0.0000022341, +0.0000022351,0.0000022372,0.0000022400,0.0000022417,0.0000022406, +0.0000022364,0.0000022303,0.0000022227,0.0000022132,0.0000022036, +0.0000021968,0.0000021915,0.0000021879,0.0000021870,0.0000021894, +0.0000021953,0.0000021993,0.0000022010,0.0000022013,0.0000022026, +0.0000022113,0.0000022190,0.0000022169,0.0000022114,0.0000022044, +0.0000021974,0.0000021915,0.0000021871,0.0000021832,0.0000021815, +0.0000021821,0.0000021833,0.0000021848,0.0000021865,0.0000021878, +0.0000021897,0.0000021925,0.0000021951,0.0000021972,0.0000021992, +0.0000022009,0.0000022030,0.0000022062,0.0000022104,0.0000022145, +0.0000022181,0.0000022217,0.0000022252,0.0000022285,0.0000022318, +0.0000022344,0.0000022361,0.0000022376,0.0000022392,0.0000022404, +0.0000022404,0.0000022394,0.0000022378,0.0000022368,0.0000022381, +0.0000022415,0.0000022471,0.0000022520,0.0000022563,0.0000022591, +0.0000022606,0.0000022623,0.0000022633,0.0000022634,0.0000022636, +0.0000022636,0.0000022623,0.0000022594,0.0000022553,0.0000022502, +0.0000022459,0.0000022434,0.0000022424,0.0000022425,0.0000022418, +0.0000022398,0.0000022375,0.0000022361,0.0000022357,0.0000022372, +0.0000022398,0.0000022420,0.0000022431,0.0000022434,0.0000022447, +0.0000022485,0.0000022539,0.0000022589,0.0000022645,0.0000022721, +0.0000022773,0.0000022781,0.0000022783,0.0000022781,0.0000022743, +0.0000022652,0.0000022550,0.0000022485,0.0000022448,0.0000022419, +0.0000022391,0.0000022343,0.0000022263,0.0000022166,0.0000022096, +0.0000022069,0.0000022027,0.0000021926,0.0000021833,0.0000021792, +0.0000021761,0.0000021751,0.0000021791,0.0000021880,0.0000021977, +0.0000022044,0.0000022079,0.0000022106,0.0000022133,0.0000022163, +0.0000022190,0.0000022213,0.0000022236,0.0000022259,0.0000022274, +0.0000022277,0.0000022271,0.0000022259,0.0000022241,0.0000022221, +0.0000022208,0.0000022190,0.0000022167,0.0000022138,0.0000022110, +0.0000022081,0.0000022052,0.0000022022,0.0000021990,0.0000021944, +0.0000021886,0.0000021830,0.0000021767,0.0000021700,0.0000021630, +0.0000021569,0.0000021526,0.0000021502,0.0000021489,0.0000021477, +0.0000021454,0.0000021420,0.0000021385,0.0000021356,0.0000021345, +0.0000021351,0.0000021362,0.0000021383,0.0000021417,0.0000021464, +0.0000021521,0.0000021585,0.0000021647,0.0000021704,0.0000021758, +0.0000021811,0.0000021862,0.0000021904,0.0000021931,0.0000021949, +0.0000021963,0.0000021977,0.0000021986,0.0000021982,0.0000021958, +0.0000021914,0.0000021859,0.0000021800,0.0000021739,0.0000021680, +0.0000021622,0.0000021570,0.0000021534,0.0000021510,0.0000021490, +0.0000021474,0.0000021457,0.0000021432,0.0000021405,0.0000021377, +0.0000021350,0.0000021325,0.0000021301,0.0000021277,0.0000021266, +0.0000021267,0.0000021268,0.0000021269,0.0000021272,0.0000021276, +0.0000021289,0.0000021310,0.0000021321,0.0000021339,0.0000021354, +0.0000021365,0.0000021369,0.0000021364,0.0000021349,0.0000021324, +0.0000021295,0.0000021263,0.0000021229,0.0000021200,0.0000021182, +0.0000021172,0.0000021165,0.0000021170,0.0000021179,0.0000021186, +0.0000021195,0.0000021208,0.0000021227,0.0000021246,0.0000021245, +0.0000021251,0.0000021259,0.0000021255,0.0000021244,0.0000021237, +0.0000021225,0.0000021214,0.0000021210,0.0000021214,0.0000021217, +0.0000021223,0.0000021231,0.0000021241,0.0000021241,0.0000021230, +0.0000021215,0.0000021193,0.0000021174,0.0000021163,0.0000021160, +0.0000021166,0.0000021184,0.0000021209,0.0000021234,0.0000021252, +0.0000021261,0.0000021262,0.0000021257,0.0000021244,0.0000021225, +0.0000021201,0.0000021176,0.0000021148,0.0000021113,0.0000021078, +0.0000021040,0.0000021040,0.0000021058,0.0000021092,0.0000021148, +0.0000021196,0.0000021226,0.0000021237,0.0000021240,0.0000021248, +0.0000021278,0.0000021321,0.0000021384,0.0000021467,0.0000021555, +0.0000021636,0.0000021710,0.0000021772,0.0000021822,0.0000021861, +0.0000021891,0.0000021906,0.0000021905,0.0000021894,0.0000021881, +0.0000021857,0.0000021836,0.0000021828,0.0000021834,0.0000021846, +0.0000021861,0.0000021875,0.0000021904,0.0000021937,0.0000021966, +0.0000021985,0.0000021991,0.0000021991,0.0000021985,0.0000021973, +0.0000021954,0.0000021927,0.0000021895,0.0000021859,0.0000021820, +0.0000021778,0.0000021734,0.0000021694,0.0000021654,0.0000021615, +0.0000021579,0.0000021551,0.0000021535,0.0000021526,0.0000021529, +0.0000021544,0.0000021561,0.0000021578,0.0000021602,0.0000021623, +0.0000021635,0.0000021639,0.0000021636,0.0000021625,0.0000021608, +0.0000021588,0.0000021562,0.0000021533,0.0000021505,0.0000021486, +0.0000021475,0.0000021471,0.0000021471,0.0000021471,0.0000021471, +0.0000021466,0.0000021456,0.0000021437,0.0000021415,0.0000021397, +0.0000021388,0.0000021389,0.0000021387,0.0000021379,0.0000021360, +0.0000021327,0.0000021283,0.0000021231,0.0000021182,0.0000021144, +0.0000021117,0.0000021106,0.0000021106,0.0000021117,0.0000021133, +0.0000021151,0.0000021171,0.0000021206,0.0000021254,0.0000021309, +0.0000021365,0.0000021406,0.0000021422,0.0000021413,0.0000021376, +0.0000021289,0.0000021164,0.0000021030,0.0000020904,0.0000020788, +0.0000020682,0.0000020585,0.0000020501,0.0000020431,0.0000020371, +0.0000020329,0.0000020305,0.0000020290,0.0000020284,0.0000020291, +0.0000020311,0.0000020338,0.0000020367,0.0000020397,0.0000020429, +0.0000020455,0.0000020475,0.0000020482,0.0000020474,0.0000020451, +0.0000020425,0.0000020398,0.0000020371,0.0000020329,0.0000020276, +0.0000020198,0.0000020120,0.0000020058,0.0000020012,0.0000019980, +0.0000019938,0.0000019863,0.0000019804,0.0000019784,0.0000019800, +0.0000019856,0.0000019948,0.0000020066,0.0000020200,0.0000020339, +0.0000020465,0.0000020554,0.0000020608,0.0000020639,0.0000020667, +0.0000020714,0.0000020775,0.0000020829,0.0000020864,0.0000020873, +0.0000020872,0.0000020846,0.0000020786,0.0000020704,0.0000020626, +0.0000020560,0.0000020512,0.0000020466,0.0000020414,0.0000020374, +0.0000020382,0.0000020454,0.0000020557,0.0000020652,0.0000020720, +0.0000020764,0.0000020789,0.0000020791,0.0000020785,0.0000020803, +0.0000020854,0.0000020940,0.0000021054,0.0000021190,0.0000021343, +0.0000021509,0.0000021679,0.0000021834,0.0000021962,0.0000022058, +0.0000022120,0.0000022163,0.0000022195,0.0000022219,0.0000022226, +0.0000022234,0.0000022225,0.0000022200,0.0000022179,0.0000022171, +0.0000022179,0.0000022195,0.0000022208,0.0000022211,0.0000022202, +0.0000022182,0.0000022156,0.0000022123,0.0000022081,0.0000022054, +0.0000022047,0.0000022064,0.0000022090,0.0000022094,0.0000022072, +0.0000022016,0.0000021941,0.0000021860,0.0000021799,0.0000021764, +0.0000021733,0.0000021712,0.0000021702,0.0000021699,0.0000021704, +0.0000021721,0.0000021744,0.0000021766,0.0000021788,0.0000021811, +0.0000021836,0.0000021870,0.0000021905,0.0000021940,0.0000021975, +0.0000022007,0.0000022036,0.0000022055,0.0000022058,0.0000022047, +0.0000022047,0.0000022077,0.0000022153,0.0000022242,0.0000022302, +0.0000022322,0.0000022315,0.0000022283,0.0000022246,0.0000022219, +0.0000022153,0.0000021989,0.0000021771,0.0000021600,0.0000021501, +0.0000021422,0.0000021340,0.0000021275,0.0000021236,0.0000021202, +0.0000021163,0.0000021125,0.0000021092,0.0000021050,0.0000021009, +0.0000020982,0.0000020967,0.0000020968,0.0000020980,0.0000020996, +0.0000021021,0.0000021051,0.0000021081,0.0000021110,0.0000021129, +0.0000021141,0.0000021148,0.0000021150,0.0000021154,0.0000021176, +0.0000021209,0.0000021214,0.0000021192,0.0000021152,0.0000021114, +0.0000021091,0.0000021077,0.0000021074,0.0000021113,0.0000021180, +0.0000021221,0.0000021272,0.0000021306,0.0000021314,0.0000021357, +0.0000021448,0.0000021560,0.0000021685,0.0000021817,0.0000021943, +0.0000022055,0.0000022140,0.0000022189,0.0000022209,0.0000022207, +0.0000022189,0.0000022166,0.0000022137,0.0000022100,0.0000022055, +0.0000022015,0.0000021981,0.0000021942,0.0000021865,0.0000021734, +0.0000021580,0.0000021481,0.0000021482,0.0000021599,0.0000021777, +0.0000021941,0.0000022076,0.0000022205,0.0000022346,0.0000022499, +0.0000022592,0.0000022602,0.0000022531,0.0000022400,0.0000022236, +0.0000022095,0.0000021995,0.0000021935,0.0000021913,0.0000021915, +0.0000021944,0.0000021972,0.0000022007,0.0000022045,0.0000022098, +0.0000022177,0.0000022286,0.0000022413,0.0000022534,0.0000022634, +0.0000022709,0.0000022751,0.0000022776,0.0000022742,0.0000022673, +0.0000022601,0.0000022545,0.0000022502,0.0000022488,0.0000022504, +0.0000022571,0.0000022633,0.0000022662,0.0000022663,0.0000022663, +0.0000022657,0.0000022642,0.0000022616,0.0000022583,0.0000022543, +0.0000022497,0.0000022446,0.0000022390,0.0000022324,0.0000022250, +0.0000022184,0.0000022129,0.0000022077,0.0000022017,0.0000021943, +0.0000021847,0.0000021739,0.0000021640,0.0000021562,0.0000021497, +0.0000021424,0.0000021336,0.0000021258,0.0000021214,0.0000021199, +0.0000021180,0.0000021138,0.0000021074,0.0000020999,0.0000020929, +0.0000020871,0.0000020819,0.0000020773,0.0000020735,0.0000020696, +0.0000020649,0.0000020602,0.0000020560,0.0000020524,0.0000020483, +0.0000020441,0.0000020400,0.0000020362,0.0000020335,0.0000020322, +0.0000020310,0.0000020296,0.0000020294,0.0000020308,0.0000020342, +0.0000020397,0.0000020463,0.0000020528,0.0000020582,0.0000020616, +0.0000020630,0.0000020630,0.0000020624,0.0000020627,0.0000020639, +0.0000020658,0.0000020674,0.0000020663,0.0000020630,0.0000020560, +0.0000020466,0.0000020377,0.0000020325,0.0000020316,0.0000020339, +0.0000020395,0.0000020473,0.0000020585,0.0000020725,0.0000020856, +0.0000020936,0.0000020956,0.0000020944,0.0000020936,0.0000020942, +0.0000020941,0.0000020927,0.0000020881,0.0000020811,0.0000020734, +0.0000020654,0.0000020581,0.0000020523,0.0000020494,0.0000020500, +0.0000020525,0.0000020592,0.0000020697,0.0000020838,0.0000021003, +0.0000021143,0.0000021224,0.0000021272,0.0000021316,0.0000021360, +0.0000021409,0.0000021464,0.0000021519,0.0000021592,0.0000021695, +0.0000021807,0.0000021901,0.0000021968,0.0000022015,0.0000022056, +0.0000022101,0.0000022149,0.0000022182,0.0000022182,0.0000022161, +0.0000022135,0.0000022103,0.0000022067,0.0000022041,0.0000022039, +0.0000022074,0.0000022141,0.0000022227,0.0000022314,0.0000022389, +0.0000022448,0.0000022488,0.0000022513,0.0000022529,0.0000022543, +0.0000022555,0.0000022565,0.0000022572,0.0000022581,0.0000022592, +0.0000022602,0.0000022609,0.0000022612,0.0000022608,0.0000022595, +0.0000022577,0.0000022551,0.0000022511,0.0000022456,0.0000022398, +0.0000022341,0.0000022287,0.0000022233,0.0000022177,0.0000022111, +0.0000022034,0.0000021944,0.0000021844,0.0000021749,0.0000021664, +0.0000021591,0.0000021528,0.0000021474,0.0000021422,0.0000021367, +0.0000021303,0.0000021235,0.0000021178,0.0000021131,0.0000021087, +0.0000021049,0.0000021030,0.0000021035,0.0000021058,0.0000021080, +0.0000021097,0.0000021105,0.0000021105,0.0000021096,0.0000021080, +0.0000021059,0.0000021032,0.0000021005,0.0000020977,0.0000020946, +0.0000020913,0.0000020882,0.0000020856,0.0000020839,0.0000020832, +0.0000020832,0.0000020836,0.0000020843,0.0000020849,0.0000020854, +0.0000020863,0.0000020876,0.0000020886,0.0000020890,0.0000020894, +0.0000020905,0.0000020922,0.0000020940,0.0000020959,0.0000020976, +0.0000020992,0.0000021002,0.0000021001,0.0000020989,0.0000020966, +0.0000020936,0.0000020910,0.0000020888,0.0000020871,0.0000020858, +0.0000020856,0.0000020864,0.0000020873,0.0000020876,0.0000020869, +0.0000020853,0.0000020839,0.0000020831,0.0000020831,0.0000020835, +0.0000020847,0.0000020865,0.0000020884,0.0000020901,0.0000020914, +0.0000020920,0.0000020918,0.0000020906,0.0000020883,0.0000020854, +0.0000020824,0.0000020797,0.0000020776,0.0000020759,0.0000020743, +0.0000020723,0.0000020705,0.0000020695,0.0000020690,0.0000020684, +0.0000020682,0.0000020683,0.0000020684,0.0000020686,0.0000020689, +0.0000020695,0.0000020703,0.0000020712,0.0000020724,0.0000020736, +0.0000020745,0.0000020746,0.0000020740,0.0000020727,0.0000020709, +0.0000020688,0.0000020661,0.0000020634,0.0000020609,0.0000020586, +0.0000020565,0.0000020544,0.0000020519,0.0000020490,0.0000020457, +0.0000020428,0.0000020402,0.0000020372,0.0000020335,0.0000020296, +0.0000020259,0.0000020227,0.0000020197,0.0000020168,0.0000020143, +0.0000020130,0.0000020125,0.0000020127,0.0000020135,0.0000020145, +0.0000020153,0.0000020159,0.0000020165,0.0000020167,0.0000020156, +0.0000020136,0.0000020109,0.0000020085,0.0000020069,0.0000020061, +0.0000020058,0.0000020058,0.0000020059,0.0000020069,0.0000020091, +0.0000020124,0.0000020162,0.0000020199,0.0000020234,0.0000020265, +0.0000020292,0.0000020315,0.0000020338,0.0000020364,0.0000020394, +0.0000020424,0.0000020449,0.0000020468,0.0000020480,0.0000020486, +0.0000020486,0.0000020483,0.0000020476,0.0000020467,0.0000020453, +0.0000020436,0.0000020416,0.0000020397,0.0000020380,0.0000020367, +0.0000020359,0.0000020353,0.0000020340,0.0000020314,0.0000020267, +0.0000020196,0.0000020110,0.0000020016,0.0000019941,0.0000019893, +0.0000019866,0.0000019851,0.0000019844,0.0000019839,0.0000019831, +0.0000019821,0.0000019810,0.0000019801,0.0000019794,0.0000019785, +0.0000019779,0.0000019788,0.0000019816,0.0000019842,0.0000019837, +0.0000019801,0.0000019742,0.0000019692,0.0000019639,0.0000019589, +0.0000019645,0.0000019816,0.0000020013,0.0000020214,0.0000020264, +0.0000020255,0.0000020345,0.0000020440,0.0000020503,0.0000020545, +0.0000020500,0.0000020366,0.0000020271,0.0000020252,0.0000020265, +0.0000020285,0.0000020289,0.0000020281,0.0000020266,0.0000020246, +0.0000020228,0.0000020225,0.0000020230,0.0000020231,0.0000020230, +0.0000020233,0.0000020248,0.0000020282,0.0000020321,0.0000020343, +0.0000020346,0.0000020321,0.0000020282,0.0000020245,0.0000020186, +0.0000020145,0.0000020164,0.0000020219,0.0000020286,0.0000020349, +0.0000020389,0.0000020408,0.0000020404,0.0000020377,0.0000020352, +0.0000020336,0.0000020308,0.0000020273,0.0000020258,0.0000020272, +0.0000020317,0.0000020382,0.0000020432,0.0000020452,0.0000020444, +0.0000020413,0.0000020372,0.0000020336,0.0000020304,0.0000020269, +0.0000020236,0.0000020208,0.0000020183,0.0000020164,0.0000020151, +0.0000020143,0.0000020139,0.0000020134,0.0000020135,0.0000020142, +0.0000020157,0.0000020176,0.0000020183,0.0000020191,0.0000020195, +0.0000020187,0.0000020171,0.0000020148,0.0000020117,0.0000020080, +0.0000020040,0.0000020001,0.0000019966,0.0000019940,0.0000019924, +0.0000019915,0.0000019911,0.0000019907,0.0000019907,0.0000019911, +0.0000019917,0.0000019926,0.0000019948,0.0000019980,0.0000020018, +0.0000020056,0.0000020095,0.0000020133,0.0000020170,0.0000020202, +0.0000020230,0.0000020253,0.0000020274,0.0000020292,0.0000020306, +0.0000020316,0.0000020321,0.0000020324,0.0000020326,0.0000020325, +0.0000020323,0.0000020322,0.0000020308,0.0000020291,0.0000020273, +0.0000020259,0.0000020248,0.0000020240,0.0000020236,0.0000020238, +0.0000020245,0.0000020259,0.0000020279,0.0000020300,0.0000020320, +0.0000020341,0.0000020360,0.0000020377,0.0000020394,0.0000020406, +0.0000020411,0.0000020410,0.0000020399,0.0000020376,0.0000020340, +0.0000020301,0.0000020246,0.0000020185,0.0000020124,0.0000020073, +0.0000020027,0.0000019990,0.0000019957,0.0000019928,0.0000019899, +0.0000019867,0.0000019833,0.0000019806,0.0000019790,0.0000019789, +0.0000019798,0.0000019814,0.0000019831,0.0000019854,0.0000019888, +0.0000019924,0.0000019942,0.0000019936,0.0000019904,0.0000019863, +0.0000019843,0.0000019840,0.0000019856,0.0000019891,0.0000019947, +0.0000020007,0.0000020074,0.0000020145,0.0000020215,0.0000020272, +0.0000020314,0.0000020343,0.0000020362,0.0000020372,0.0000020374, +0.0000020353,0.0000020370,0.0000020387,0.0000020411,0.0000020455, +0.0000020519,0.0000020587,0.0000020649,0.0000020699,0.0000020739, +0.0000020758,0.0000020781,0.0000020810,0.0000020851,0.0000020898, +0.0000020941,0.0000020978,0.0000021005,0.0000021026,0.0000021037, +0.0000021037,0.0000021023,0.0000021005,0.0000020990,0.0000020989, +0.0000020990,0.0000020991,0.0000020990,0.0000020990,0.0000020992, +0.0000020989,0.0000020980,0.0000020959,0.0000020930,0.0000020900, +0.0000020872,0.0000020842,0.0000020816,0.0000020791,0.0000020769, +0.0000020755,0.0000020751,0.0000020762,0.0000020782,0.0000020806, +0.0000020840,0.0000020881,0.0000020921,0.0000020953,0.0000020981, +0.0000020999,0.0000021008,0.0000021006,0.0000020996,0.0000020985, +0.0000020975,0.0000020963,0.0000020953,0.0000020947,0.0000020938, +0.0000020917,0.0000020878,0.0000020828,0.0000020785,0.0000020765, +0.0000020764,0.0000020774,0.0000020789,0.0000020804,0.0000020823, +0.0000020850,0.0000020885,0.0000020925,0.0000020967,0.0000021002, +0.0000021025,0.0000021038,0.0000021042,0.0000021026,0.0000020995, +0.0000020960,0.0000020925,0.0000020894,0.0000020870,0.0000020858, +0.0000020866,0.0000020909,0.0000020976,0.0000021036,0.0000021080, +0.0000021123,0.0000021172,0.0000021220,0.0000021261,0.0000021292, +0.0000021312,0.0000021326,0.0000021331,0.0000021329,0.0000021321, +0.0000021311,0.0000021305,0.0000021305,0.0000021310,0.0000021309, +0.0000021296,0.0000021273,0.0000021246,0.0000021213,0.0000021175, +0.0000021141,0.0000021126,0.0000021127,0.0000021140,0.0000021162, +0.0000021188,0.0000021211,0.0000021225,0.0000021232,0.0000021234, +0.0000021228,0.0000021215,0.0000021197,0.0000021173,0.0000021144, +0.0000021109,0.0000021070,0.0000021030,0.0000020989,0.0000020953, +0.0000020922,0.0000020898,0.0000020882,0.0000020872,0.0000020867, +0.0000020868,0.0000020878,0.0000020893,0.0000020913,0.0000020935, +0.0000020963,0.0000020990,0.0000021009,0.0000021023,0.0000021037, +0.0000021053,0.0000021072,0.0000021097,0.0000021126,0.0000021154, +0.0000021184,0.0000021210,0.0000021228,0.0000021233,0.0000021231, +0.0000021223,0.0000021213,0.0000021204,0.0000021203,0.0000021227, +0.0000021275,0.0000021322,0.0000021347,0.0000021360,0.0000021371, +0.0000021378,0.0000021380,0.0000021376,0.0000021367,0.0000021357, +0.0000021340,0.0000021318,0.0000021291,0.0000021262,0.0000021231, +0.0000021199,0.0000021169,0.0000021147,0.0000021137,0.0000021140, +0.0000021154,0.0000021181,0.0000021218,0.0000021254,0.0000021277, +0.0000021287,0.0000021288,0.0000021282,0.0000021270,0.0000021257, +0.0000021246,0.0000021239,0.0000021243,0.0000021260,0.0000021283, +0.0000021300,0.0000021312,0.0000021339,0.0000021383,0.0000021423, +0.0000021455,0.0000021514,0.0000021602,0.0000021664,0.0000021692, +0.0000021743,0.0000021826,0.0000021887,0.0000021911,0.0000021911, +0.0000021876,0.0000021806,0.0000021752,0.0000021742,0.0000021763, +0.0000021811,0.0000021874,0.0000021915,0.0000021923,0.0000021898, +0.0000021851,0.0000021794,0.0000021732,0.0000021674,0.0000021625, +0.0000021583,0.0000021551,0.0000021532,0.0000021527,0.0000021535, +0.0000021553,0.0000021571,0.0000021588,0.0000021600,0.0000021608, +0.0000021612,0.0000021620,0.0000021633,0.0000021650,0.0000021667, +0.0000021684,0.0000021698,0.0000021712,0.0000021726,0.0000021740, +0.0000021755,0.0000021767,0.0000021776,0.0000021779,0.0000021776, +0.0000021768,0.0000021757,0.0000021744,0.0000021727,0.0000021704, +0.0000021677,0.0000021647,0.0000021617,0.0000021588,0.0000021560, +0.0000021531,0.0000021502,0.0000021476,0.0000021445,0.0000021421, +0.0000021407,0.0000021401,0.0000021396,0.0000021398,0.0000021411, +0.0000021440,0.0000021472,0.0000021496,0.0000021510,0.0000021513, +0.0000021505,0.0000021491,0.0000021478,0.0000021470,0.0000021465, +0.0000021458,0.0000021446,0.0000021430,0.0000021404,0.0000021373, +0.0000021342,0.0000021313,0.0000021282,0.0000021245,0.0000021199, +0.0000021141,0.0000021074,0.0000021004,0.0000020943,0.0000020918, +0.0000020921,0.0000020943,0.0000020969,0.0000020991,0.0000021011, +0.0000021031,0.0000021053,0.0000021076,0.0000021092,0.0000021108, +0.0000021136,0.0000021178,0.0000021230,0.0000021273,0.0000021299, +0.0000021311,0.0000021309,0.0000021294,0.0000021266,0.0000021222, +0.0000021165,0.0000021108,0.0000021054,0.0000021012,0.0000020985, +0.0000020979,0.0000020980,0.0000020986,0.0000021009,0.0000021062, +0.0000021125,0.0000021184,0.0000021232,0.0000021267,0.0000021285, +0.0000021286,0.0000021277,0.0000021262,0.0000021237,0.0000021204, +0.0000021166,0.0000021127,0.0000021083,0.0000021044,0.0000021015, +0.0000020989,0.0000020961,0.0000020914,0.0000020874,0.0000020849, +0.0000020773,0.0000020642,0.0000020569,0.0000020570,0.0000020597, +0.0000020612,0.0000020633,0.0000020652,0.0000020657,0.0000020680, +0.0000020756,0.0000020819,0.0000020841,0.0000020857,0.0000020894, +0.0000020929,0.0000020949,0.0000020939,0.0000020902,0.0000020900, +0.0000020973,0.0000021053,0.0000021115,0.0000021252,0.0000021375, +0.0000021406,0.0000021432,0.0000021565,0.0000021636,0.0000021608, +0.0000021597,0.0000021675,0.0000021804,0.0000021860,0.0000021826, +0.0000021817,0.0000021968,0.0000022119,0.0000022118,0.0000021981, +0.0000021855,0.0000021840,0.0000021844,0.0000021876,0.0000022001, +0.0000022065,0.0000022229,0.0000022388,0.0000022449,0.0000022505, +0.0000022544,0.0000022560,0.0000022569,0.0000022549,0.0000022507, +0.0000022481,0.0000022484,0.0000022496,0.0000022515,0.0000022567, +0.0000022630,0.0000022671,0.0000022697,0.0000022700,0.0000022686, +0.0000022679,0.0000022683,0.0000022692,0.0000022700,0.0000022694, +0.0000022688,0.0000022687,0.0000022659,0.0000022573,0.0000022448, +0.0000022342,0.0000022301,0.0000022301,0.0000022308,0.0000022310, +0.0000022304,0.0000022296,0.0000022312,0.0000022341,0.0000022375, +0.0000022383,0.0000022347,0.0000022278,0.0000022194,0.0000022098, +0.0000021998,0.0000021905,0.0000021834,0.0000021784,0.0000021771, +0.0000021787,0.0000021835,0.0000021902,0.0000021944,0.0000021971, +0.0000021980,0.0000022018,0.0000022128,0.0000022200,0.0000022173, +0.0000022121,0.0000022054,0.0000021986,0.0000021925,0.0000021876, +0.0000021835,0.0000021815,0.0000021813,0.0000021817,0.0000021818, +0.0000021819,0.0000021828,0.0000021858,0.0000021897,0.0000021934, +0.0000021971,0.0000022009,0.0000022035,0.0000022058,0.0000022083, +0.0000022115,0.0000022152,0.0000022186,0.0000022216,0.0000022245, +0.0000022276,0.0000022307,0.0000022331,0.0000022350,0.0000022366, +0.0000022387,0.0000022403,0.0000022407,0.0000022402,0.0000022387, +0.0000022377,0.0000022389,0.0000022425,0.0000022482,0.0000022540, +0.0000022590,0.0000022622,0.0000022643,0.0000022667,0.0000022687, +0.0000022694,0.0000022690,0.0000022681,0.0000022663,0.0000022623, +0.0000022574,0.0000022521,0.0000022480,0.0000022451,0.0000022430, +0.0000022420,0.0000022407,0.0000022386,0.0000022366,0.0000022351, +0.0000022342,0.0000022353,0.0000022384,0.0000022404,0.0000022409, +0.0000022406,0.0000022412,0.0000022442,0.0000022480,0.0000022518, +0.0000022581,0.0000022667,0.0000022728,0.0000022745,0.0000022752, +0.0000022759,0.0000022739,0.0000022656,0.0000022545,0.0000022465, +0.0000022421,0.0000022388,0.0000022360,0.0000022329,0.0000022271, +0.0000022185,0.0000022101,0.0000022060,0.0000022045,0.0000021984, +0.0000021886,0.0000021819,0.0000021785,0.0000021748,0.0000021735, +0.0000021785,0.0000021874,0.0000021964,0.0000022029,0.0000022070, +0.0000022103,0.0000022136,0.0000022169,0.0000022199,0.0000022223, +0.0000022247,0.0000022271,0.0000022285,0.0000022285,0.0000022275, +0.0000022254,0.0000022228,0.0000022202,0.0000022172,0.0000022140, +0.0000022108,0.0000022077,0.0000022048,0.0000022016,0.0000021984, +0.0000021955,0.0000021920,0.0000021875,0.0000021828,0.0000021784, +0.0000021737,0.0000021681,0.0000021635,0.0000021593,0.0000021554, +0.0000021524,0.0000021506,0.0000021491,0.0000021473,0.0000021451, +0.0000021427,0.0000021402,0.0000021380,0.0000021366,0.0000021361, +0.0000021366,0.0000021388,0.0000021430,0.0000021488,0.0000021556, +0.0000021624,0.0000021688,0.0000021748,0.0000021803,0.0000021854, +0.0000021894,0.0000021916,0.0000021927,0.0000021932,0.0000021937, +0.0000021943,0.0000021943,0.0000021927,0.0000021904,0.0000021880, +0.0000021845,0.0000021801,0.0000021746,0.0000021687,0.0000021631, +0.0000021580,0.0000021540,0.0000021510,0.0000021489,0.0000021470, +0.0000021447,0.0000021421,0.0000021396,0.0000021370,0.0000021342, +0.0000021318,0.0000021300,0.0000021289,0.0000021283,0.0000021283, +0.0000021287,0.0000021296,0.0000021310,0.0000021333,0.0000021361, +0.0000021386,0.0000021409,0.0000021428,0.0000021431,0.0000021427, +0.0000021418,0.0000021391,0.0000021354,0.0000021315,0.0000021276, +0.0000021237,0.0000021205,0.0000021180,0.0000021160,0.0000021146, +0.0000021138,0.0000021133,0.0000021130,0.0000021131,0.0000021137, +0.0000021151,0.0000021171,0.0000021191,0.0000021213,0.0000021237, +0.0000021250,0.0000021265,0.0000021274,0.0000021262,0.0000021261, +0.0000021262,0.0000021258,0.0000021256,0.0000021264,0.0000021270, +0.0000021271,0.0000021264,0.0000021249,0.0000021223,0.0000021193, +0.0000021165,0.0000021137,0.0000021126,0.0000021110,0.0000021120, +0.0000021143,0.0000021168,0.0000021197,0.0000021219,0.0000021235, +0.0000021242,0.0000021238,0.0000021222,0.0000021199,0.0000021174, +0.0000021147,0.0000021114,0.0000021076,0.0000021034,0.0000020994, +0.0000020958,0.0000020915,0.0000020919,0.0000020945,0.0000020985, +0.0000021051,0.0000021104,0.0000021147,0.0000021176,0.0000021197, +0.0000021225,0.0000021271,0.0000021332,0.0000021402,0.0000021484, +0.0000021562,0.0000021632,0.0000021695,0.0000021750,0.0000021797, +0.0000021835,0.0000021858,0.0000021871,0.0000021873,0.0000021870, +0.0000021866,0.0000021868,0.0000021872,0.0000021875,0.0000021883, +0.0000021895,0.0000021910,0.0000021925,0.0000021932,0.0000021929, +0.0000021920,0.0000021909,0.0000021892,0.0000021869,0.0000021841, +0.0000021808,0.0000021773,0.0000021738,0.0000021701,0.0000021664, +0.0000021633,0.0000021603,0.0000021573,0.0000021541,0.0000021518, +0.0000021504,0.0000021493,0.0000021488,0.0000021493,0.0000021499, +0.0000021505,0.0000021513,0.0000021528,0.0000021536,0.0000021535, +0.0000021528,0.0000021516,0.0000021500,0.0000021479,0.0000021452, +0.0000021421,0.0000021390,0.0000021368,0.0000021352,0.0000021343, +0.0000021334,0.0000021323,0.0000021310,0.0000021294,0.0000021275, +0.0000021250,0.0000021223,0.0000021198,0.0000021176,0.0000021160, +0.0000021150,0.0000021143,0.0000021131,0.0000021115,0.0000021095, +0.0000021072,0.0000021052,0.0000021038,0.0000021026,0.0000021023, +0.0000021033,0.0000021053,0.0000021078,0.0000021106,0.0000021140, +0.0000021186,0.0000021244,0.0000021304,0.0000021363,0.0000021404, +0.0000021418,0.0000021403,0.0000021340,0.0000021231,0.0000021103, +0.0000020971,0.0000020844,0.0000020730,0.0000020627,0.0000020538, +0.0000020462,0.0000020392,0.0000020320,0.0000020253,0.0000020209, +0.0000020181,0.0000020165,0.0000020164,0.0000020180,0.0000020212, +0.0000020251,0.0000020289,0.0000020328,0.0000020364,0.0000020394, +0.0000020416,0.0000020425,0.0000020413,0.0000020385,0.0000020356, +0.0000020335,0.0000020317,0.0000020290,0.0000020240,0.0000020173, +0.0000020108,0.0000020053,0.0000020009,0.0000019975,0.0000019915, +0.0000019832,0.0000019777,0.0000019758,0.0000019764,0.0000019812, +0.0000019900,0.0000020016,0.0000020138,0.0000020258,0.0000020372, +0.0000020467,0.0000020534,0.0000020576,0.0000020615,0.0000020671, +0.0000020740,0.0000020804,0.0000020850,0.0000020872,0.0000020869, +0.0000020846,0.0000020793,0.0000020722,0.0000020640,0.0000020563, +0.0000020506,0.0000020472,0.0000020436,0.0000020397,0.0000020395, +0.0000020431,0.0000020494,0.0000020569,0.0000020631,0.0000020680, +0.0000020717,0.0000020738,0.0000020753,0.0000020765,0.0000020782, +0.0000020815,0.0000020872,0.0000020954,0.0000021063,0.0000021203, +0.0000021375,0.0000021565,0.0000021753,0.0000021914,0.0000022031, +0.0000022105,0.0000022149,0.0000022181,0.0000022211,0.0000022240, +0.0000022243,0.0000022241,0.0000022225,0.0000022208,0.0000022202, +0.0000022207,0.0000022217,0.0000022223,0.0000022218,0.0000022207, +0.0000022187,0.0000022153,0.0000022109,0.0000022064,0.0000022030, +0.0000022017,0.0000022020,0.0000022033,0.0000022045,0.0000022033, +0.0000022021,0.0000021995,0.0000021960,0.0000021934,0.0000021907, +0.0000021886,0.0000021872,0.0000021867,0.0000021874,0.0000021890, +0.0000021914,0.0000021937,0.0000021965,0.0000021989,0.0000022016, +0.0000022042,0.0000022061,0.0000022069,0.0000022070,0.0000022066, +0.0000022062,0.0000022063,0.0000022086,0.0000022134,0.0000022195, +0.0000022249,0.0000022287,0.0000022295,0.0000022281,0.0000022242, +0.0000022206,0.0000022180,0.0000022130,0.0000022006,0.0000021812, +0.0000021628,0.0000021517,0.0000021440,0.0000021359,0.0000021289, +0.0000021253,0.0000021228,0.0000021192,0.0000021140,0.0000021083, +0.0000021034,0.0000020990,0.0000020944,0.0000020914,0.0000020901, +0.0000020904,0.0000020919,0.0000020933,0.0000020946,0.0000020965, +0.0000020990,0.0000021022,0.0000021058,0.0000021084,0.0000021108, +0.0000021135,0.0000021145,0.0000021144,0.0000021153,0.0000021184, +0.0000021210,0.0000021209,0.0000021175,0.0000021130,0.0000021102, +0.0000021083,0.0000021074,0.0000021098,0.0000021161,0.0000021199, +0.0000021250,0.0000021294,0.0000021298,0.0000021322,0.0000021394, +0.0000021493,0.0000021607,0.0000021736,0.0000021865,0.0000021982, +0.0000022076,0.0000022139,0.0000022173,0.0000022184,0.0000022175, +0.0000022154,0.0000022128,0.0000022098,0.0000022059,0.0000022013, +0.0000021970,0.0000021937,0.0000021902,0.0000021835,0.0000021721, +0.0000021583,0.0000021477,0.0000021474,0.0000021560,0.0000021722, +0.0000021894,0.0000022029,0.0000022140,0.0000022257,0.0000022384, +0.0000022505,0.0000022611,0.0000022618,0.0000022567,0.0000022466, +0.0000022335,0.0000022207,0.0000022104,0.0000022036,0.0000022002, +0.0000021998,0.0000022012,0.0000022046,0.0000022084,0.0000022140, +0.0000022222,0.0000022327,0.0000022445,0.0000022559,0.0000022659, +0.0000022742,0.0000022797,0.0000022830,0.0000022806,0.0000022745, +0.0000022673,0.0000022601,0.0000022533,0.0000022491,0.0000022500, +0.0000022551,0.0000022606,0.0000022640,0.0000022659,0.0000022666, +0.0000022672,0.0000022670,0.0000022655,0.0000022624,0.0000022580, +0.0000022529,0.0000022475,0.0000022414,0.0000022348,0.0000022280, +0.0000022220,0.0000022165,0.0000022114,0.0000022060,0.0000021993, +0.0000021903,0.0000021794,0.0000021686,0.0000021602,0.0000021542, +0.0000021482,0.0000021400,0.0000021314,0.0000021254,0.0000021220, +0.0000021187,0.0000021133,0.0000021054,0.0000020962,0.0000020881, +0.0000020816,0.0000020762,0.0000020716,0.0000020673,0.0000020630, +0.0000020581,0.0000020539,0.0000020507,0.0000020478,0.0000020447, +0.0000020415,0.0000020379,0.0000020343,0.0000020318,0.0000020309, +0.0000020305,0.0000020300,0.0000020291,0.0000020287,0.0000020301, +0.0000020337,0.0000020390,0.0000020452,0.0000020512,0.0000020557, +0.0000020584,0.0000020594,0.0000020597,0.0000020597,0.0000020602, +0.0000020616,0.0000020630,0.0000020632,0.0000020606,0.0000020540, +0.0000020449,0.0000020356,0.0000020292,0.0000020253,0.0000020268, +0.0000020313,0.0000020386,0.0000020493,0.0000020630,0.0000020766, +0.0000020868,0.0000020915,0.0000020919,0.0000020914,0.0000020920, +0.0000020931,0.0000020935,0.0000020904,0.0000020853,0.0000020780, +0.0000020702,0.0000020628,0.0000020563,0.0000020514,0.0000020487, +0.0000020498,0.0000020551,0.0000020646,0.0000020783,0.0000020942, +0.0000021078,0.0000021169,0.0000021227,0.0000021267,0.0000021308, +0.0000021360,0.0000021412,0.0000021464,0.0000021546,0.0000021656, +0.0000021769,0.0000021869,0.0000021949,0.0000022003,0.0000022037, +0.0000022072,0.0000022114,0.0000022148,0.0000022155,0.0000022138, +0.0000022108,0.0000022066,0.0000022025,0.0000021987,0.0000021963, +0.0000021962,0.0000021989,0.0000022038,0.0000022099,0.0000022162, +0.0000022220,0.0000022267,0.0000022303,0.0000022330,0.0000022354, +0.0000022372,0.0000022385,0.0000022395,0.0000022406,0.0000022416, +0.0000022423,0.0000022425,0.0000022422,0.0000022411,0.0000022394, +0.0000022370,0.0000022335,0.0000022285,0.0000022227,0.0000022166, +0.0000022105,0.0000022044,0.0000021980,0.0000021909,0.0000021831, +0.0000021742,0.0000021644,0.0000021548,0.0000021461,0.0000021390, +0.0000021341,0.0000021310,0.0000021284,0.0000021251,0.0000021208, +0.0000021161,0.0000021119,0.0000021081,0.0000021044,0.0000021011, +0.0000020989,0.0000020987,0.0000021004,0.0000021027,0.0000021045, +0.0000021054,0.0000021057,0.0000021053,0.0000021042,0.0000021027, +0.0000021007,0.0000020984,0.0000020961,0.0000020935,0.0000020904, +0.0000020872,0.0000020842,0.0000020817,0.0000020795,0.0000020777, +0.0000020767,0.0000020765,0.0000020765,0.0000020769,0.0000020778, +0.0000020789,0.0000020795,0.0000020796,0.0000020795,0.0000020798, +0.0000020810,0.0000020827,0.0000020848,0.0000020869,0.0000020888, +0.0000020905,0.0000020917,0.0000020924,0.0000020921,0.0000020907, +0.0000020889,0.0000020870,0.0000020850,0.0000020831,0.0000020823, +0.0000020827,0.0000020839,0.0000020854,0.0000020863,0.0000020860, +0.0000020854,0.0000020849,0.0000020845,0.0000020844,0.0000020846, +0.0000020850,0.0000020858,0.0000020868,0.0000020877,0.0000020880, +0.0000020878,0.0000020871,0.0000020858,0.0000020835,0.0000020803, +0.0000020770,0.0000020742,0.0000020723,0.0000020709,0.0000020694, +0.0000020678,0.0000020668,0.0000020662,0.0000020659,0.0000020660, +0.0000020664,0.0000020668,0.0000020672,0.0000020677,0.0000020686, +0.0000020697,0.0000020711,0.0000020727,0.0000020741,0.0000020749, +0.0000020750,0.0000020744,0.0000020730,0.0000020709,0.0000020681, +0.0000020645,0.0000020604,0.0000020565,0.0000020527,0.0000020493, +0.0000020464,0.0000020437,0.0000020409,0.0000020376,0.0000020338, +0.0000020304,0.0000020275,0.0000020245,0.0000020212,0.0000020182, +0.0000020158,0.0000020138,0.0000020120,0.0000020101,0.0000020085, +0.0000020076,0.0000020072,0.0000020077,0.0000020087,0.0000020100, +0.0000020110,0.0000020118,0.0000020126,0.0000020127,0.0000020115, +0.0000020092,0.0000020064,0.0000020032,0.0000020001,0.0000019976, +0.0000019960,0.0000019950,0.0000019943,0.0000019949,0.0000019969, +0.0000020001,0.0000020040,0.0000020083,0.0000020127,0.0000020168, +0.0000020200,0.0000020227,0.0000020254,0.0000020285,0.0000020317, +0.0000020349,0.0000020378,0.0000020402,0.0000020418,0.0000020426, +0.0000020429,0.0000020426,0.0000020420,0.0000020409,0.0000020392, +0.0000020372,0.0000020356,0.0000020342,0.0000020330,0.0000020319, +0.0000020312,0.0000020303,0.0000020283,0.0000020250,0.0000020203, +0.0000020140,0.0000020065,0.0000019990,0.0000019933,0.0000019897, +0.0000019873,0.0000019857,0.0000019847,0.0000019840,0.0000019834, +0.0000019825,0.0000019811,0.0000019795,0.0000019783,0.0000019775, +0.0000019768,0.0000019769,0.0000019790,0.0000019822,0.0000019835, +0.0000019814,0.0000019761,0.0000019708,0.0000019658,0.0000019598, +0.0000019622,0.0000019773,0.0000019963,0.0000020178,0.0000020267, +0.0000020249,0.0000020313,0.0000020424,0.0000020491,0.0000020533, +0.0000020510,0.0000020389,0.0000020280,0.0000020252,0.0000020263, +0.0000020281,0.0000020285,0.0000020282,0.0000020271,0.0000020250, +0.0000020232,0.0000020228,0.0000020230,0.0000020227,0.0000020225, +0.0000020227,0.0000020237,0.0000020268,0.0000020310,0.0000020338, +0.0000020346,0.0000020326,0.0000020282,0.0000020233,0.0000020172, +0.0000020132,0.0000020150,0.0000020211,0.0000020285,0.0000020345, +0.0000020377,0.0000020383,0.0000020366,0.0000020335,0.0000020316, +0.0000020304,0.0000020276,0.0000020252,0.0000020254,0.0000020290, +0.0000020352,0.0000020415,0.0000020447,0.0000020447,0.0000020423, +0.0000020384,0.0000020346,0.0000020316,0.0000020287,0.0000020255, +0.0000020225,0.0000020199,0.0000020176,0.0000020156,0.0000020138, +0.0000020122,0.0000020108,0.0000020100,0.0000020095,0.0000020099, +0.0000020118,0.0000020143,0.0000020167,0.0000020182,0.0000020195, +0.0000020200,0.0000020196,0.0000020184,0.0000020163,0.0000020135, +0.0000020102,0.0000020068,0.0000020031,0.0000019995,0.0000019970, +0.0000019953,0.0000019942,0.0000019933,0.0000019927,0.0000019922, +0.0000019919,0.0000019922,0.0000019936,0.0000019959,0.0000019985, +0.0000020011,0.0000020037,0.0000020063,0.0000020089,0.0000020113, +0.0000020133,0.0000020151,0.0000020168,0.0000020186,0.0000020204, +0.0000020221,0.0000020238,0.0000020254,0.0000020270,0.0000020285, +0.0000020301,0.0000020314,0.0000020324,0.0000020327,0.0000020324, +0.0000020315,0.0000020305,0.0000020301,0.0000020285,0.0000020270, +0.0000020257,0.0000020249,0.0000020249,0.0000020253,0.0000020254, +0.0000020268,0.0000020285,0.0000020302,0.0000020317,0.0000020329, +0.0000020340,0.0000020346,0.0000020347,0.0000020341,0.0000020327, +0.0000020304,0.0000020271,0.0000020233,0.0000020188,0.0000020131, +0.0000020069,0.0000020012,0.0000019962,0.0000019922,0.0000019890, +0.0000019863,0.0000019834,0.0000019805,0.0000019779,0.0000019753, +0.0000019733,0.0000019730,0.0000019742,0.0000019764,0.0000019786, +0.0000019810,0.0000019842,0.0000019881,0.0000019909,0.0000019912, +0.0000019891,0.0000019860,0.0000019845,0.0000019844,0.0000019868, +0.0000019906,0.0000019944,0.0000019986,0.0000020039,0.0000020098, +0.0000020159,0.0000020215,0.0000020268,0.0000020312,0.0000020336, +0.0000020271,0.0000020316,0.0000020342,0.0000020354,0.0000020366, +0.0000020388,0.0000020428,0.0000020482,0.0000020548,0.0000020620, +0.0000020686,0.0000020748,0.0000020803,0.0000020844,0.0000020894, +0.0000020936,0.0000020976,0.0000021011,0.0000021046,0.0000021082, +0.0000021108,0.0000021117,0.0000021114,0.0000021101,0.0000021083, +0.0000021067,0.0000021055,0.0000021046,0.0000021036,0.0000021029, +0.0000021022,0.0000021009,0.0000020986,0.0000020952,0.0000020916, +0.0000020883,0.0000020849,0.0000020817,0.0000020785,0.0000020758, +0.0000020739,0.0000020735,0.0000020748,0.0000020773,0.0000020803, +0.0000020851,0.0000020917,0.0000020982,0.0000021035,0.0000021075, +0.0000021101,0.0000021113,0.0000021113,0.0000021103,0.0000021085, +0.0000021062,0.0000021035,0.0000021005,0.0000020974,0.0000020942, +0.0000020906,0.0000020862,0.0000020812,0.0000020773,0.0000020758, +0.0000020757,0.0000020760,0.0000020761,0.0000020759,0.0000020762, +0.0000020778,0.0000020807,0.0000020845,0.0000020885,0.0000020928, +0.0000020968,0.0000020999,0.0000021021,0.0000021027,0.0000021014, +0.0000020988,0.0000020954,0.0000020916,0.0000020882,0.0000020855, +0.0000020836,0.0000020829,0.0000020849,0.0000020910,0.0000020981, +0.0000021041,0.0000021094,0.0000021149,0.0000021200,0.0000021246, +0.0000021284,0.0000021312,0.0000021330,0.0000021335,0.0000021333, +0.0000021326,0.0000021318,0.0000021315,0.0000021317,0.0000021322, +0.0000021321,0.0000021310,0.0000021289,0.0000021265,0.0000021237, +0.0000021203,0.0000021166,0.0000021142,0.0000021136,0.0000021143, +0.0000021155,0.0000021171,0.0000021185,0.0000021195,0.0000021200, +0.0000021200,0.0000021193,0.0000021182,0.0000021165,0.0000021141, +0.0000021113,0.0000021078,0.0000021041,0.0000021000,0.0000020958, +0.0000020920,0.0000020888,0.0000020862,0.0000020844,0.0000020834, +0.0000020830,0.0000020836,0.0000020848,0.0000020868,0.0000020890, +0.0000020916,0.0000020945,0.0000020973,0.0000020993,0.0000021010, +0.0000021023,0.0000021031,0.0000021042,0.0000021058,0.0000021078, +0.0000021102,0.0000021132,0.0000021167,0.0000021200,0.0000021221, +0.0000021223,0.0000021213,0.0000021200,0.0000021188,0.0000021179, +0.0000021180,0.0000021209,0.0000021258,0.0000021294,0.0000021311, +0.0000021326,0.0000021346,0.0000021358,0.0000021362,0.0000021366, +0.0000021369,0.0000021365,0.0000021349,0.0000021322,0.0000021294, +0.0000021263,0.0000021228,0.0000021191,0.0000021161,0.0000021147, +0.0000021147,0.0000021158,0.0000021183,0.0000021217,0.0000021247, +0.0000021266,0.0000021274,0.0000021275,0.0000021272,0.0000021265, +0.0000021255,0.0000021241,0.0000021230,0.0000021227,0.0000021239, +0.0000021266,0.0000021292,0.0000021308,0.0000021328,0.0000021369, +0.0000021416,0.0000021447,0.0000021484,0.0000021558,0.0000021639, +0.0000021681,0.0000021708,0.0000021773,0.0000021860,0.0000021917, +0.0000021942,0.0000021944,0.0000021902,0.0000021833,0.0000021780, +0.0000021762,0.0000021764,0.0000021785,0.0000021823,0.0000021855, +0.0000021865,0.0000021856,0.0000021828,0.0000021791,0.0000021749, +0.0000021703,0.0000021663,0.0000021637,0.0000021622,0.0000021615, +0.0000021620,0.0000021636,0.0000021655,0.0000021673,0.0000021686, +0.0000021694,0.0000021697,0.0000021703,0.0000021710,0.0000021719, +0.0000021732,0.0000021748,0.0000021761,0.0000021773,0.0000021786, +0.0000021798,0.0000021810,0.0000021822,0.0000021830,0.0000021833, +0.0000021835,0.0000021838,0.0000021833,0.0000021824,0.0000021810, +0.0000021789,0.0000021761,0.0000021728,0.0000021692,0.0000021654, +0.0000021615,0.0000021575,0.0000021532,0.0000021491,0.0000021450, +0.0000021409,0.0000021375,0.0000021352,0.0000021321,0.0000021304, +0.0000021302,0.0000021318,0.0000021347,0.0000021380,0.0000021408, +0.0000021429,0.0000021439,0.0000021437,0.0000021427,0.0000021418, +0.0000021414,0.0000021413,0.0000021405,0.0000021394,0.0000021376, +0.0000021350,0.0000021320,0.0000021294,0.0000021271,0.0000021246, +0.0000021213,0.0000021166,0.0000021107,0.0000021046,0.0000020985, +0.0000020939,0.0000020924,0.0000020934,0.0000020952,0.0000020977, +0.0000021000,0.0000021020,0.0000021036,0.0000021050,0.0000021058, +0.0000021058,0.0000021077,0.0000021124,0.0000021186,0.0000021250, +0.0000021300,0.0000021328,0.0000021342,0.0000021341,0.0000021325, +0.0000021292,0.0000021245,0.0000021199,0.0000021150,0.0000021096, +0.0000021046,0.0000021007,0.0000020981,0.0000020968,0.0000020966, +0.0000020983,0.0000021023,0.0000021079,0.0000021137,0.0000021184, +0.0000021216,0.0000021229,0.0000021228,0.0000021219,0.0000021202, +0.0000021179,0.0000021149,0.0000021111,0.0000021065,0.0000021023, +0.0000020994,0.0000020970,0.0000020940,0.0000020885,0.0000020837, +0.0000020815,0.0000020747,0.0000020626,0.0000020542,0.0000020540, +0.0000020574,0.0000020587,0.0000020618,0.0000020648,0.0000020656, +0.0000020672,0.0000020728,0.0000020781,0.0000020808,0.0000020827, +0.0000020867,0.0000020903,0.0000020927,0.0000020915,0.0000020888, +0.0000020913,0.0000020996,0.0000021071,0.0000021159,0.0000021319, +0.0000021408,0.0000021414,0.0000021473,0.0000021608,0.0000021632, +0.0000021600,0.0000021621,0.0000021731,0.0000021825,0.0000021828, +0.0000021780,0.0000021838,0.0000022032,0.0000022097,0.0000022013, +0.0000021867,0.0000021815,0.0000021833,0.0000021846,0.0000021945, +0.0000022019,0.0000022099,0.0000022283,0.0000022370,0.0000022437, +0.0000022511,0.0000022559,0.0000022590,0.0000022595,0.0000022569, +0.0000022544,0.0000022546,0.0000022555,0.0000022553,0.0000022555, +0.0000022591,0.0000022632,0.0000022645,0.0000022644,0.0000022638, +0.0000022641,0.0000022662,0.0000022686,0.0000022696,0.0000022704, +0.0000022705,0.0000022689,0.0000022640,0.0000022530,0.0000022408, +0.0000022333,0.0000022307,0.0000022305,0.0000022305,0.0000022296, +0.0000022273,0.0000022262,0.0000022257,0.0000022275,0.0000022299, +0.0000022312,0.0000022295,0.0000022243,0.0000022163,0.0000022074, +0.0000021978,0.0000021879,0.0000021789,0.0000021721,0.0000021677, +0.0000021681,0.0000021712,0.0000021780,0.0000021851,0.0000021902, +0.0000021942,0.0000021964,0.0000022014,0.0000022132,0.0000022200, +0.0000022175,0.0000022122,0.0000022058,0.0000021993,0.0000021935, +0.0000021883,0.0000021840,0.0000021813,0.0000021799,0.0000021792, +0.0000021784,0.0000021775,0.0000021776,0.0000021801,0.0000021846, +0.0000021897,0.0000021954,0.0000022007,0.0000022044,0.0000022070, +0.0000022091,0.0000022117,0.0000022147,0.0000022179,0.0000022209, +0.0000022237,0.0000022265,0.0000022296,0.0000022320,0.0000022341, +0.0000022356,0.0000022373,0.0000022385,0.0000022393,0.0000022389, +0.0000022375,0.0000022361,0.0000022372,0.0000022406,0.0000022464, +0.0000022526,0.0000022580,0.0000022614,0.0000022639,0.0000022666, +0.0000022689,0.0000022704,0.0000022701,0.0000022686,0.0000022667, +0.0000022634,0.0000022593,0.0000022551,0.0000022514,0.0000022482, +0.0000022453,0.0000022420,0.0000022397,0.0000022376,0.0000022360, +0.0000022346,0.0000022338,0.0000022347,0.0000022376,0.0000022395, +0.0000022398,0.0000022395,0.0000022396,0.0000022412,0.0000022433, +0.0000022456,0.0000022512,0.0000022599,0.0000022665,0.0000022693, +0.0000022712,0.0000022730,0.0000022728,0.0000022673,0.0000022567, +0.0000022464,0.0000022399,0.0000022362,0.0000022335,0.0000022312, +0.0000022277,0.0000022214,0.0000022127,0.0000022051,0.0000022020, +0.0000022004,0.0000021945,0.0000021861,0.0000021805,0.0000021769, +0.0000021733,0.0000021727,0.0000021770,0.0000021850,0.0000021934, +0.0000022004,0.0000022056,0.0000022097,0.0000022134,0.0000022166, +0.0000022190,0.0000022211,0.0000022236,0.0000022258,0.0000022268, +0.0000022268,0.0000022255,0.0000022232,0.0000022202,0.0000022166, +0.0000022125,0.0000022082,0.0000022038,0.0000021997,0.0000021955, +0.0000021913,0.0000021874,0.0000021838,0.0000021798,0.0000021755, +0.0000021716,0.0000021686,0.0000021659,0.0000021635,0.0000021614, +0.0000021585,0.0000021554,0.0000021525,0.0000021501,0.0000021483, +0.0000021471,0.0000021464,0.0000021460,0.0000021449,0.0000021431, +0.0000021413,0.0000021400,0.0000021391,0.0000021394,0.0000021417, +0.0000021457,0.0000021516,0.0000021589,0.0000021669,0.0000021745, +0.0000021810,0.0000021859,0.0000021895,0.0000021917,0.0000021923, +0.0000021918,0.0000021908,0.0000021901,0.0000021891,0.0000021876, +0.0000021866,0.0000021854,0.0000021838,0.0000021808,0.0000021781, +0.0000021741,0.0000021698,0.0000021653,0.0000021611,0.0000021574, +0.0000021545,0.0000021521,0.0000021498,0.0000021475,0.0000021451, +0.0000021426,0.0000021403,0.0000021386,0.0000021370,0.0000021355, +0.0000021347,0.0000021349,0.0000021356,0.0000021365,0.0000021375, +0.0000021394,0.0000021413,0.0000021417,0.0000021433,0.0000021434, +0.0000021426,0.0000021413,0.0000021391,0.0000021360,0.0000021326, +0.0000021292,0.0000021258,0.0000021224,0.0000021194,0.0000021168, +0.0000021147,0.0000021129,0.0000021116,0.0000021104,0.0000021086, +0.0000021073,0.0000021068,0.0000021069,0.0000021073,0.0000021084, +0.0000021097,0.0000021117,0.0000021143,0.0000021166,0.0000021186, +0.0000021202,0.0000021218,0.0000021234,0.0000021247,0.0000021271, +0.0000021301,0.0000021309,0.0000021334,0.0000021333,0.0000021317, +0.0000021299,0.0000021269,0.0000021232,0.0000021198,0.0000021163, +0.0000021136,0.0000021123,0.0000021120,0.0000021138,0.0000021152, +0.0000021176,0.0000021200,0.0000021217,0.0000021226,0.0000021220, +0.0000021206,0.0000021187,0.0000021165,0.0000021140,0.0000021108, +0.0000021071,0.0000021026,0.0000020974,0.0000020918,0.0000020865, +0.0000020828,0.0000020784,0.0000020798,0.0000020845,0.0000020913, +0.0000021001,0.0000021067,0.0000021120,0.0000021161,0.0000021193, +0.0000021229,0.0000021275,0.0000021326,0.0000021383,0.0000021451, +0.0000021512,0.0000021572,0.0000021631,0.0000021682,0.0000021724, +0.0000021759,0.0000021789,0.0000021815,0.0000021839,0.0000021857, +0.0000021871,0.0000021886,0.0000021902,0.0000021920,0.0000021934, +0.0000021943,0.0000021948,0.0000021944,0.0000021937,0.0000021921, +0.0000021900,0.0000021874,0.0000021845,0.0000021811,0.0000021773, +0.0000021732,0.0000021689,0.0000021651,0.0000021611,0.0000021571, +0.0000021534,0.0000021503,0.0000021471,0.0000021441,0.0000021416, +0.0000021401,0.0000021393,0.0000021387,0.0000021385,0.0000021398, +0.0000021410,0.0000021414,0.0000021413,0.0000021407,0.0000021396, +0.0000021381,0.0000021360,0.0000021337,0.0000021312,0.0000021288, +0.0000021270,0.0000021257,0.0000021245,0.0000021227,0.0000021206, +0.0000021180,0.0000021152,0.0000021120,0.0000021092,0.0000021066, +0.0000021042,0.0000021021,0.0000021006,0.0000020995,0.0000020986, +0.0000020977,0.0000020969,0.0000020959,0.0000020952,0.0000020946, +0.0000020943,0.0000020949,0.0000020975,0.0000021010,0.0000021049, +0.0000021094,0.0000021138,0.0000021193,0.0000021251,0.0000021309, +0.0000021360,0.0000021393,0.0000021395,0.0000021361,0.0000021276, +0.0000021160,0.0000021039,0.0000020914,0.0000020788,0.0000020674, +0.0000020577,0.0000020493,0.0000020415,0.0000020340,0.0000020263, +0.0000020185,0.0000020123,0.0000020078,0.0000020045,0.0000020030, +0.0000020033,0.0000020061,0.0000020107,0.0000020154,0.0000020202, +0.0000020252,0.0000020295,0.0000020331,0.0000020359,0.0000020367, +0.0000020350,0.0000020318,0.0000020290,0.0000020278,0.0000020270, +0.0000020246,0.0000020200,0.0000020139,0.0000020083,0.0000020035, +0.0000019994,0.0000019948,0.0000019871,0.0000019793,0.0000019755, +0.0000019738,0.0000019738,0.0000019772,0.0000019850,0.0000019963, +0.0000020076,0.0000020178,0.0000020275,0.0000020369,0.0000020445, +0.0000020498,0.0000020547,0.0000020608,0.0000020681,0.0000020755, +0.0000020815,0.0000020847,0.0000020851,0.0000020833,0.0000020799, +0.0000020743,0.0000020665,0.0000020578,0.0000020510,0.0000020472, +0.0000020439,0.0000020417,0.0000020417,0.0000020433,0.0000020467, +0.0000020510,0.0000020551,0.0000020588,0.0000020626,0.0000020667, +0.0000020704,0.0000020725,0.0000020736,0.0000020750,0.0000020771, +0.0000020805,0.0000020857,0.0000020940,0.0000021068,0.0000021244, +0.0000021452,0.0000021664,0.0000021847,0.0000021984,0.0000022073, +0.0000022129,0.0000022166,0.0000022193,0.0000022214,0.0000022225, +0.0000022222,0.0000022208,0.0000022205,0.0000022204,0.0000022211, +0.0000022218,0.0000022220,0.0000022220,0.0000022205,0.0000022179, +0.0000022144,0.0000022100,0.0000022060,0.0000022023,0.0000022002, +0.0000021992,0.0000021988,0.0000021989,0.0000021989,0.0000021984, +0.0000021981,0.0000021969,0.0000021966,0.0000021961,0.0000021951, +0.0000021949,0.0000021956,0.0000021970,0.0000021988,0.0000022007, +0.0000022024,0.0000022038,0.0000022054,0.0000022069,0.0000022079, +0.0000022086,0.0000022101,0.0000022126,0.0000022158,0.0000022192, +0.0000022225,0.0000022250,0.0000022255,0.0000022253,0.0000022226, +0.0000022187,0.0000022153,0.0000022129,0.0000022083,0.0000021974, +0.0000021805,0.0000021636,0.0000021523,0.0000021452,0.0000021379, +0.0000021303,0.0000021253,0.0000021228,0.0000021203,0.0000021157, +0.0000021098,0.0000021034,0.0000020977,0.0000020933,0.0000020899, +0.0000020870,0.0000020859,0.0000020860,0.0000020872,0.0000020894, +0.0000020911,0.0000020923,0.0000020932,0.0000020940,0.0000020960, +0.0000020993,0.0000021030,0.0000021063,0.0000021106,0.0000021136, +0.0000021139,0.0000021139,0.0000021161,0.0000021209,0.0000021229, +0.0000021201,0.0000021154,0.0000021121,0.0000021096,0.0000021073, +0.0000021085,0.0000021142,0.0000021183,0.0000021232,0.0000021280, +0.0000021284,0.0000021292,0.0000021343,0.0000021430,0.0000021537, +0.0000021661,0.0000021791,0.0000021912,0.0000022010,0.0000022079, +0.0000022124,0.0000022146,0.0000022148,0.0000022136,0.0000022114, +0.0000022088,0.0000022060,0.0000022017,0.0000021964,0.0000021920, +0.0000021887,0.0000021851,0.0000021802,0.0000021711,0.0000021594, +0.0000021491,0.0000021459,0.0000021522,0.0000021661,0.0000021827, +0.0000021967,0.0000022070,0.0000022154,0.0000022251,0.0000022367, +0.0000022489,0.0000022592,0.0000022618,0.0000022621,0.0000022562, +0.0000022467,0.0000022353,0.0000022253,0.0000022178,0.0000022135, +0.0000022122,0.0000022140,0.0000022177,0.0000022235,0.0000022318, +0.0000022405,0.0000022505,0.0000022604,0.0000022698,0.0000022785, +0.0000022847,0.0000022881,0.0000022858,0.0000022798,0.0000022719, +0.0000022634,0.0000022549,0.0000022487,0.0000022479,0.0000022517, +0.0000022571,0.0000022615,0.0000022644,0.0000022665,0.0000022681, +0.0000022686,0.0000022679,0.0000022652,0.0000022610,0.0000022557, +0.0000022498,0.0000022434,0.0000022367,0.0000022305,0.0000022247, +0.0000022192,0.0000022141,0.0000022091,0.0000022034,0.0000021957, +0.0000021856,0.0000021744,0.0000021650,0.0000021588,0.0000021529, +0.0000021449,0.0000021354,0.0000021275,0.0000021223,0.0000021179, +0.0000021113,0.0000021014,0.0000020909,0.0000020817,0.0000020748, +0.0000020695,0.0000020646,0.0000020601,0.0000020553,0.0000020507, +0.0000020474,0.0000020451,0.0000020429,0.0000020409,0.0000020387, +0.0000020360,0.0000020326,0.0000020303,0.0000020296,0.0000020296, +0.0000020289,0.0000020275,0.0000020257,0.0000020255,0.0000020275, +0.0000020319,0.0000020377,0.0000020435,0.0000020485,0.0000020523, +0.0000020547,0.0000020558,0.0000020560,0.0000020563,0.0000020571, +0.0000020586,0.0000020589,0.0000020559,0.0000020516,0.0000020432, +0.0000020337,0.0000020255,0.0000020224,0.0000020215,0.0000020243, +0.0000020309,0.0000020407,0.0000020531,0.0000020670,0.0000020794, +0.0000020872,0.0000020901,0.0000020902,0.0000020906,0.0000020921, +0.0000020927,0.0000020920,0.0000020881,0.0000020814,0.0000020739, +0.0000020667,0.0000020594,0.0000020522,0.0000020479,0.0000020468, +0.0000020511,0.0000020598,0.0000020728,0.0000020877,0.0000021014, +0.0000021122,0.0000021188,0.0000021226,0.0000021266,0.0000021317, +0.0000021366,0.0000021426,0.0000021514,0.0000021619,0.0000021725, +0.0000021829,0.0000021922,0.0000021989,0.0000022024,0.0000022046, +0.0000022073,0.0000022102,0.0000022118,0.0000022108,0.0000022069, +0.0000022026,0.0000021978,0.0000021934,0.0000021899,0.0000021877, +0.0000021868,0.0000021876,0.0000021899,0.0000021932,0.0000021973, +0.0000022014,0.0000022051,0.0000022086,0.0000022114,0.0000022131, +0.0000022147,0.0000022161,0.0000022171,0.0000022177,0.0000022178, +0.0000022174,0.0000022161,0.0000022144,0.0000022123,0.0000022093, +0.0000022052,0.0000022001,0.0000021945,0.0000021889,0.0000021831, +0.0000021770,0.0000021703,0.0000021631,0.0000021553,0.0000021470, +0.0000021389,0.0000021312,0.0000021242,0.0000021192,0.0000021167, +0.0000021153,0.0000021135,0.0000021113,0.0000021087,0.0000021063, +0.0000021039,0.0000021012,0.0000020988,0.0000020969,0.0000020959, +0.0000020962,0.0000020975,0.0000020991,0.0000021003,0.0000021009, +0.0000021015,0.0000021016,0.0000021009,0.0000020994,0.0000020972, +0.0000020950,0.0000020926,0.0000020899,0.0000020870,0.0000020841, +0.0000020817,0.0000020794,0.0000020771,0.0000020748,0.0000020731, +0.0000020718,0.0000020714,0.0000020719,0.0000020727,0.0000020730, +0.0000020727,0.0000020720,0.0000020714,0.0000020714,0.0000020721, +0.0000020734,0.0000020750,0.0000020769,0.0000020785,0.0000020800, +0.0000020811,0.0000020823,0.0000020833,0.0000020834,0.0000020828, +0.0000020814,0.0000020797,0.0000020785,0.0000020782,0.0000020786, +0.0000020800,0.0000020816,0.0000020830,0.0000020835,0.0000020837, +0.0000020840,0.0000020846,0.0000020850,0.0000020853,0.0000020855, +0.0000020858,0.0000020862,0.0000020858,0.0000020849,0.0000020841, +0.0000020833,0.0000020816,0.0000020789,0.0000020757,0.0000020724, +0.0000020698,0.0000020679,0.0000020666,0.0000020656,0.0000020650, +0.0000020649,0.0000020650,0.0000020656,0.0000020665,0.0000020673, +0.0000020682,0.0000020690,0.0000020700,0.0000020711,0.0000020722, +0.0000020730,0.0000020737,0.0000020739,0.0000020737,0.0000020726, +0.0000020703,0.0000020670,0.0000020631,0.0000020589,0.0000020543, +0.0000020497,0.0000020452,0.0000020411,0.0000020376,0.0000020348, +0.0000020323,0.0000020298,0.0000020268,0.0000020234,0.0000020203, +0.0000020174,0.0000020143,0.0000020116,0.0000020096,0.0000020081, +0.0000020068,0.0000020055,0.0000020045,0.0000020036,0.0000020032, +0.0000020030,0.0000020033,0.0000020039,0.0000020050,0.0000020063, +0.0000020078,0.0000020090,0.0000020093,0.0000020084,0.0000020066, +0.0000020040,0.0000020011,0.0000019978,0.0000019946,0.0000019916, +0.0000019884,0.0000019853,0.0000019842,0.0000019840,0.0000019853, +0.0000019887,0.0000019935,0.0000019990,0.0000020045,0.0000020094, +0.0000020134,0.0000020168,0.0000020202,0.0000020235,0.0000020266, +0.0000020292,0.0000020315,0.0000020335,0.0000020348,0.0000020355, +0.0000020357,0.0000020354,0.0000020345,0.0000020330,0.0000020314, +0.0000020303,0.0000020293,0.0000020281,0.0000020268,0.0000020252, +0.0000020229,0.0000020199,0.0000020161,0.0000020117,0.0000020064, +0.0000020006,0.0000019952,0.0000019913,0.0000019888,0.0000019868, +0.0000019852,0.0000019842,0.0000019839,0.0000019835,0.0000019825, +0.0000019809,0.0000019788,0.0000019770,0.0000019760,0.0000019756, +0.0000019755,0.0000019766,0.0000019798,0.0000019826,0.0000019821, +0.0000019783,0.0000019732,0.0000019681,0.0000019618,0.0000019609, +0.0000019734,0.0000019916,0.0000020126,0.0000020259,0.0000020244, +0.0000020280,0.0000020403,0.0000020479,0.0000020520,0.0000020515, +0.0000020419,0.0000020302,0.0000020258,0.0000020263,0.0000020277, +0.0000020283,0.0000020284,0.0000020279,0.0000020263,0.0000020246, +0.0000020239,0.0000020235,0.0000020231,0.0000020228,0.0000020224, +0.0000020223,0.0000020247,0.0000020294,0.0000020332,0.0000020348, +0.0000020334,0.0000020282,0.0000020223,0.0000020163,0.0000020125, +0.0000020136,0.0000020200,0.0000020279,0.0000020334,0.0000020356, +0.0000020351,0.0000020326,0.0000020298,0.0000020287,0.0000020273, +0.0000020252,0.0000020243,0.0000020261,0.0000020312,0.0000020380, +0.0000020433,0.0000020446,0.0000020431,0.0000020395,0.0000020361, +0.0000020334,0.0000020312,0.0000020290,0.0000020264,0.0000020242, +0.0000020220,0.0000020202,0.0000020181,0.0000020160,0.0000020141, +0.0000020121,0.0000020100,0.0000020083,0.0000020075,0.0000020077, +0.0000020090,0.0000020107,0.0000020121,0.0000020138,0.0000020148, +0.0000020151,0.0000020147,0.0000020138,0.0000020120,0.0000020093, +0.0000020059,0.0000020022,0.0000019987,0.0000019960,0.0000019942, +0.0000019928,0.0000019915,0.0000019902,0.0000019890,0.0000019880, +0.0000019875,0.0000019877,0.0000019885,0.0000019895,0.0000019908, +0.0000019921,0.0000019936,0.0000019953,0.0000019966,0.0000019977, +0.0000019988,0.0000020000,0.0000020012,0.0000020027,0.0000020042, +0.0000020058,0.0000020073,0.0000020090,0.0000020109,0.0000020131, +0.0000020158,0.0000020186,0.0000020215,0.0000020241,0.0000020264, +0.0000020282,0.0000020297,0.0000020304,0.0000020301,0.0000020292, +0.0000020281,0.0000020273,0.0000020270,0.0000020263,0.0000020258, +0.0000020257,0.0000020259,0.0000020261,0.0000020266,0.0000020269, +0.0000020272,0.0000020273,0.0000020272,0.0000020268,0.0000020262, +0.0000020250,0.0000020233,0.0000020209,0.0000020178,0.0000020142, +0.0000020098,0.0000020041,0.0000019979,0.0000019921,0.0000019874, +0.0000019841,0.0000019820,0.0000019808,0.0000019794,0.0000019772, +0.0000019747,0.0000019725,0.0000019713,0.0000019713,0.0000019727, +0.0000019747,0.0000019770,0.0000019806,0.0000019855,0.0000019892, +0.0000019904,0.0000019890,0.0000019867,0.0000019856,0.0000019857, +0.0000019870,0.0000019888,0.0000019911,0.0000019945,0.0000019985, +0.0000020036,0.0000020096,0.0000020159,0.0000020219,0.0000020107, +0.0000020175,0.0000020235,0.0000020281,0.0000020308,0.0000020321, +0.0000020329,0.0000020347,0.0000020383,0.0000020439,0.0000020514, +0.0000020607,0.0000020700,0.0000020784,0.0000020861,0.0000020923, +0.0000020970,0.0000021006,0.0000021041,0.0000021074,0.0000021105, +0.0000021128,0.0000021148,0.0000021163,0.0000021170,0.0000021171, +0.0000021172,0.0000021174,0.0000021172,0.0000021169,0.0000021165, +0.0000021154,0.0000021129,0.0000021093,0.0000021051,0.0000021009, +0.0000020966,0.0000020920,0.0000020875,0.0000020835,0.0000020809, +0.0000020804,0.0000020821,0.0000020858,0.0000020905,0.0000020959, +0.0000021018,0.0000021070,0.0000021107,0.0000021133,0.0000021148, +0.0000021148,0.0000021139,0.0000021125,0.0000021106,0.0000021085, +0.0000021054,0.0000021017,0.0000020975,0.0000020934,0.0000020894, +0.0000020856,0.0000020814,0.0000020775,0.0000020754,0.0000020746, +0.0000020741,0.0000020731,0.0000020714,0.0000020700,0.0000020699, +0.0000020716,0.0000020748,0.0000020786,0.0000020829,0.0000020874, +0.0000020918,0.0000020959,0.0000020990,0.0000021000,0.0000020994, +0.0000020976,0.0000020951,0.0000020919,0.0000020886,0.0000020856, +0.0000020826,0.0000020807,0.0000020811,0.0000020857,0.0000020930, +0.0000021002,0.0000021062,0.0000021114,0.0000021164,0.0000021213, +0.0000021257,0.0000021294,0.0000021320,0.0000021331,0.0000021331, +0.0000021326,0.0000021324,0.0000021323,0.0000021324,0.0000021327, +0.0000021328,0.0000021321,0.0000021306,0.0000021286,0.0000021263, +0.0000021236,0.0000021204,0.0000021174,0.0000021155,0.0000021150, +0.0000021153,0.0000021156,0.0000021160,0.0000021163,0.0000021163, +0.0000021161,0.0000021155,0.0000021145,0.0000021129,0.0000021106, +0.0000021077,0.0000021044,0.0000021007,0.0000020968,0.0000020928, +0.0000020892,0.0000020859,0.0000020830,0.0000020806,0.0000020797, +0.0000020797,0.0000020804,0.0000020820,0.0000020843,0.0000020868, +0.0000020897,0.0000020927,0.0000020955,0.0000020980,0.0000021000, +0.0000021014,0.0000021022,0.0000021030,0.0000021040,0.0000021055, +0.0000021073,0.0000021096,0.0000021125,0.0000021163,0.0000021197, +0.0000021211,0.0000021206,0.0000021189,0.0000021174,0.0000021161, +0.0000021148,0.0000021152,0.0000021186,0.0000021230,0.0000021257, +0.0000021278,0.0000021308,0.0000021336,0.0000021354,0.0000021367, +0.0000021379,0.0000021385,0.0000021380,0.0000021357,0.0000021327, +0.0000021296,0.0000021261,0.0000021221,0.0000021182,0.0000021156, +0.0000021149,0.0000021156,0.0000021176,0.0000021206,0.0000021232, +0.0000021249,0.0000021257,0.0000021260,0.0000021258,0.0000021252, +0.0000021242,0.0000021229,0.0000021218,0.0000021211,0.0000021216, +0.0000021239,0.0000021272,0.0000021299,0.0000021319,0.0000021353, +0.0000021400,0.0000021441,0.0000021467,0.0000021515,0.0000021594, +0.0000021661,0.0000021693,0.0000021732,0.0000021812,0.0000021899, +0.0000021955,0.0000021974,0.0000021973,0.0000021927,0.0000021860, +0.0000021803,0.0000021770,0.0000021757,0.0000021755,0.0000021760, +0.0000021772,0.0000021781,0.0000021781,0.0000021770,0.0000021751, +0.0000021728,0.0000021707,0.0000021695,0.0000021690,0.0000021688, +0.0000021691,0.0000021699,0.0000021707,0.0000021714,0.0000021717, +0.0000021715,0.0000021711,0.0000021710,0.0000021711,0.0000021714, +0.0000021722,0.0000021735,0.0000021749,0.0000021763,0.0000021777, +0.0000021791,0.0000021805,0.0000021818,0.0000021828,0.0000021832, +0.0000021836,0.0000021840,0.0000021842,0.0000021841,0.0000021835, +0.0000021823,0.0000021808,0.0000021796,0.0000021774,0.0000021741, +0.0000021702,0.0000021659,0.0000021614,0.0000021565,0.0000021513, +0.0000021460,0.0000021409,0.0000021363,0.0000021319,0.0000021281, +0.0000021260,0.0000021242,0.0000021254,0.0000021274,0.0000021304, +0.0000021335,0.0000021358,0.0000021372,0.0000021374,0.0000021370, +0.0000021370,0.0000021374,0.0000021374,0.0000021367,0.0000021354, +0.0000021335,0.0000021313,0.0000021291,0.0000021269,0.0000021247, +0.0000021224,0.0000021191,0.0000021141,0.0000021089,0.0000021039, +0.0000020993,0.0000020956,0.0000020938,0.0000020943,0.0000020963, +0.0000020986,0.0000021006,0.0000021020,0.0000021028,0.0000021029, +0.0000021026,0.0000021036,0.0000021076,0.0000021144,0.0000021220, +0.0000021289,0.0000021333,0.0000021360,0.0000021371,0.0000021365, +0.0000021342,0.0000021302,0.0000021257,0.0000021220,0.0000021181, +0.0000021137,0.0000021082,0.0000021031,0.0000020995,0.0000020970, +0.0000020965,0.0000020974,0.0000020996,0.0000021037,0.0000021087, +0.0000021131,0.0000021160,0.0000021172,0.0000021173,0.0000021164, +0.0000021145,0.0000021122,0.0000021093,0.0000021053,0.0000021012, +0.0000020980,0.0000020950,0.0000020918,0.0000020859,0.0000020803, +0.0000020778,0.0000020715,0.0000020601,0.0000020508,0.0000020507, +0.0000020546,0.0000020558,0.0000020596,0.0000020633,0.0000020647, +0.0000020658,0.0000020690,0.0000020731,0.0000020766,0.0000020795, +0.0000020840,0.0000020878,0.0000020902,0.0000020890,0.0000020879, +0.0000020934,0.0000021038,0.0000021105,0.0000021212,0.0000021378, +0.0000021434,0.0000021435,0.0000021531,0.0000021638,0.0000021628, +0.0000021604,0.0000021665,0.0000021778,0.0000021827,0.0000021788, +0.0000021766,0.0000021909,0.0000022058,0.0000022042,0.0000021898, +0.0000021792,0.0000021802,0.0000021821,0.0000021874,0.0000021987, +0.0000022013,0.0000022148,0.0000022281,0.0000022333,0.0000022427, +0.0000022511,0.0000022572,0.0000022607,0.0000022606,0.0000022592, +0.0000022589,0.0000022591,0.0000022580,0.0000022561,0.0000022558, +0.0000022578,0.0000022591,0.0000022583,0.0000022585,0.0000022603, +0.0000022627,0.0000022655,0.0000022679,0.0000022694,0.0000022706, +0.0000022688,0.0000022609,0.0000022497,0.0000022391,0.0000022337, +0.0000022324,0.0000022312,0.0000022299,0.0000022281,0.0000022252, +0.0000022234,0.0000022233,0.0000022234,0.0000022234,0.0000022226, +0.0000022202,0.0000022164,0.0000022112,0.0000022037,0.0000021957, +0.0000021869,0.0000021772,0.0000021684,0.0000021625,0.0000021592, +0.0000021598,0.0000021638,0.0000021719,0.0000021808,0.0000021874, +0.0000021928,0.0000021961,0.0000022010,0.0000022119,0.0000022191, +0.0000022166,0.0000022114,0.0000022054,0.0000021992,0.0000021936, +0.0000021885,0.0000021838,0.0000021801,0.0000021775,0.0000021760, +0.0000021753,0.0000021743,0.0000021739,0.0000021744,0.0000021776, +0.0000021832,0.0000021908,0.0000021982,0.0000022033,0.0000022062, +0.0000022084,0.0000022107,0.0000022131,0.0000022159,0.0000022190, +0.0000022223,0.0000022251,0.0000022279,0.0000022303,0.0000022320, +0.0000022333,0.0000022347,0.0000022354,0.0000022356,0.0000022353, +0.0000022341,0.0000022326,0.0000022333,0.0000022362,0.0000022415, +0.0000022482,0.0000022535,0.0000022567,0.0000022591,0.0000022620, +0.0000022647,0.0000022666,0.0000022671,0.0000022661,0.0000022649, +0.0000022633,0.0000022613,0.0000022580,0.0000022544,0.0000022514, +0.0000022482,0.0000022438,0.0000022398,0.0000022374,0.0000022360, +0.0000022347,0.0000022339,0.0000022347,0.0000022367,0.0000022383, +0.0000022387,0.0000022388,0.0000022392,0.0000022399,0.0000022403, +0.0000022409,0.0000022447,0.0000022524,0.0000022590,0.0000022621, +0.0000022646,0.0000022678,0.0000022692,0.0000022675,0.0000022601, +0.0000022497,0.0000022408,0.0000022351,0.0000022317,0.0000022293, +0.0000022277,0.0000022242,0.0000022174,0.0000022086,0.0000022012, +0.0000021975,0.0000021956,0.0000021909,0.0000021839,0.0000021779, +0.0000021738,0.0000021713,0.0000021713,0.0000021747,0.0000021815, +0.0000021893,0.0000021963,0.0000022020,0.0000022068,0.0000022108, +0.0000022135,0.0000022152,0.0000022173,0.0000022195,0.0000022212, +0.0000022220,0.0000022220,0.0000022209,0.0000022190,0.0000022161, +0.0000022126,0.0000022085,0.0000022039,0.0000021992,0.0000021945, +0.0000021896,0.0000021847,0.0000021801,0.0000021756,0.0000021705, +0.0000021655,0.0000021618,0.0000021597,0.0000021585,0.0000021577, +0.0000021571,0.0000021561,0.0000021542,0.0000021520,0.0000021497, +0.0000021478,0.0000021470,0.0000021473,0.0000021476,0.0000021471, +0.0000021461,0.0000021455,0.0000021456,0.0000021455,0.0000021450, +0.0000021449,0.0000021467,0.0000021493,0.0000021546,0.0000021626, +0.0000021712,0.0000021788,0.0000021848,0.0000021892,0.0000021921, +0.0000021926,0.0000021918,0.0000021899,0.0000021883,0.0000021870, +0.0000021854,0.0000021836,0.0000021820,0.0000021804,0.0000021785, +0.0000021762,0.0000021740,0.0000021712,0.0000021681,0.0000021647, +0.0000021614,0.0000021581,0.0000021553,0.0000021529,0.0000021507, +0.0000021484,0.0000021460,0.0000021438,0.0000021420,0.0000021400, +0.0000021381,0.0000021370,0.0000021370,0.0000021370,0.0000021370, +0.0000021371,0.0000021378,0.0000021380,0.0000021379,0.0000021378, +0.0000021378,0.0000021373,0.0000021365,0.0000021351,0.0000021332, +0.0000021308,0.0000021283,0.0000021259,0.0000021235,0.0000021212, +0.0000021192,0.0000021174,0.0000021156,0.0000021136,0.0000021113, +0.0000021090,0.0000021072,0.0000021061,0.0000021050,0.0000021044, +0.0000021032,0.0000021027,0.0000021024,0.0000021028,0.0000021036, +0.0000021046,0.0000021060,0.0000021077,0.0000021101,0.0000021134, +0.0000021175,0.0000021218,0.0000021260,0.0000021301,0.0000021324, +0.0000021340,0.0000021341,0.0000021337,0.0000021326,0.0000021301, +0.0000021277,0.0000021249,0.0000021219,0.0000021194,0.0000021177, +0.0000021175,0.0000021182,0.0000021193,0.0000021209,0.0000021225, +0.0000021234,0.0000021237,0.0000021233,0.0000021224,0.0000021209, +0.0000021185,0.0000021152,0.0000021112,0.0000021061,0.0000020999, +0.0000020932,0.0000020863,0.0000020795,0.0000020738,0.0000020715, +0.0000020693,0.0000020743,0.0000020804,0.0000020887,0.0000020978, +0.0000021049,0.0000021106,0.0000021152,0.0000021185,0.0000021213, +0.0000021247,0.0000021276,0.0000021312,0.0000021360,0.0000021414, +0.0000021468,0.0000021520,0.0000021572,0.0000021622,0.0000021670, +0.0000021712,0.0000021748,0.0000021781,0.0000021815,0.0000021848, +0.0000021877,0.0000021900,0.0000021920,0.0000021931,0.0000021932, +0.0000021926,0.0000021911,0.0000021888,0.0000021861,0.0000021830, +0.0000021793,0.0000021750,0.0000021704,0.0000021659,0.0000021612, +0.0000021565,0.0000021521,0.0000021482,0.0000021445,0.0000021406, +0.0000021371,0.0000021344,0.0000021328,0.0000021315,0.0000021305, +0.0000021304,0.0000021312,0.0000021312,0.0000021307,0.0000021298, +0.0000021286,0.0000021271,0.0000021253,0.0000021237,0.0000021222, +0.0000021201,0.0000021182,0.0000021170,0.0000021159,0.0000021142, +0.0000021122,0.0000021099,0.0000021074,0.0000021044,0.0000021021, +0.0000021003,0.0000020987,0.0000020975,0.0000020963,0.0000020947, +0.0000020932,0.0000020922,0.0000020912,0.0000020905,0.0000020903, +0.0000020903,0.0000020909,0.0000020925,0.0000020959,0.0000021008, +0.0000021061,0.0000021117,0.0000021175,0.0000021232,0.0000021285, +0.0000021322,0.0000021352,0.0000021363,0.0000021340,0.0000021282, +0.0000021191,0.0000021083,0.0000020968,0.0000020849,0.0000020731, +0.0000020624,0.0000020528,0.0000020441,0.0000020357,0.0000020274, +0.0000020194,0.0000020114,0.0000020041,0.0000019983,0.0000019937, +0.0000019908,0.0000019899,0.0000019914,0.0000019956,0.0000020009, +0.0000020064,0.0000020123,0.0000020180,0.0000020228,0.0000020272, +0.0000020304,0.0000020308,0.0000020287,0.0000020254,0.0000020230, +0.0000020222,0.0000020218,0.0000020196,0.0000020148,0.0000020096, +0.0000020050,0.0000020007,0.0000019961,0.0000019896,0.0000019814, +0.0000019762,0.0000019739,0.0000019724,0.0000019714,0.0000019732, +0.0000019798,0.0000019907,0.0000020017,0.0000020103,0.0000020181, +0.0000020265,0.0000020344,0.0000020409,0.0000020464,0.0000020530, +0.0000020607,0.0000020687,0.0000020754,0.0000020800,0.0000020820, +0.0000020815,0.0000020791,0.0000020752,0.0000020691,0.0000020610, +0.0000020530,0.0000020464,0.0000020428,0.0000020420,0.0000020430, +0.0000020450,0.0000020471,0.0000020486,0.0000020504,0.0000020516, +0.0000020546,0.0000020592,0.0000020633,0.0000020662,0.0000020680, +0.0000020693,0.0000020706,0.0000020720,0.0000020739,0.0000020774, +0.0000020846,0.0000020968,0.0000021140,0.0000021345,0.0000021558, +0.0000021755,0.0000021916,0.0000022028,0.0000022095,0.0000022134, +0.0000022156,0.0000022168,0.0000022177,0.0000022177,0.0000022172, +0.0000022170,0.0000022173,0.0000022184,0.0000022197,0.0000022204, +0.0000022196,0.0000022181,0.0000022161,0.0000022133,0.0000022105, +0.0000022071,0.0000022039,0.0000022011,0.0000021989,0.0000021973, +0.0000021968,0.0000021958,0.0000021955,0.0000021950,0.0000021944, +0.0000021941,0.0000021940,0.0000021943,0.0000021951,0.0000021967, +0.0000021990,0.0000022016,0.0000022042,0.0000022069,0.0000022097, +0.0000022125,0.0000022150,0.0000022174,0.0000022196,0.0000022212, +0.0000022216,0.0000022222,0.0000022205,0.0000022175,0.0000022138, +0.0000022102,0.0000022077,0.0000022057,0.0000022011,0.0000021911, +0.0000021762,0.0000021614,0.0000021510,0.0000021446,0.0000021383, +0.0000021315,0.0000021259,0.0000021225,0.0000021199,0.0000021159, +0.0000021104,0.0000021039,0.0000020980,0.0000020929,0.0000020889, +0.0000020860,0.0000020837,0.0000020819,0.0000020816,0.0000020819, +0.0000020831,0.0000020853,0.0000020874,0.0000020893,0.0000020900, +0.0000020899,0.0000020904,0.0000020926,0.0000020970,0.0000021014, +0.0000021067,0.0000021118,0.0000021133,0.0000021134,0.0000021149, +0.0000021204,0.0000021243,0.0000021225,0.0000021180,0.0000021143, +0.0000021110,0.0000021076,0.0000021081,0.0000021129,0.0000021172, +0.0000021221,0.0000021265,0.0000021266,0.0000021260,0.0000021292, +0.0000021370,0.0000021476,0.0000021596,0.0000021722,0.0000021841, +0.0000021939,0.0000022012,0.0000022064,0.0000022096,0.0000022109, +0.0000022105,0.0000022090,0.0000022071,0.0000022048,0.0000022019, +0.0000021968,0.0000021908,0.0000021858,0.0000021826,0.0000021799, +0.0000021769,0.0000021702,0.0000021602,0.0000021508,0.0000021472, +0.0000021484,0.0000021580,0.0000021729,0.0000021882,0.0000021997, +0.0000022077,0.0000022140,0.0000022219,0.0000022317,0.0000022438, +0.0000022546,0.0000022634,0.0000022631,0.0000022632,0.0000022592, +0.0000022523,0.0000022447,0.0000022387,0.0000022349,0.0000022336, +0.0000022350,0.0000022386,0.0000022442,0.0000022516,0.0000022596, +0.0000022675,0.0000022759,0.0000022839,0.0000022897,0.0000022922, +0.0000022895,0.0000022824,0.0000022734,0.0000022638,0.0000022539, +0.0000022464,0.0000022441,0.0000022473,0.0000022531,0.0000022583, +0.0000022619,0.0000022648,0.0000022672,0.0000022688,0.0000022687, +0.0000022669,0.0000022632,0.0000022580,0.0000022518,0.0000022448, +0.0000022380,0.0000022319,0.0000022263,0.0000022209,0.0000022159, +0.0000022113,0.0000022067,0.0000022007,0.0000021915,0.0000021800, +0.0000021696,0.0000021621,0.0000021560,0.0000021476,0.0000021369, +0.0000021275,0.0000021211,0.0000021153,0.0000021069,0.0000020956, +0.0000020838,0.0000020744,0.0000020677,0.0000020617,0.0000020568, +0.0000020520,0.0000020473,0.0000020434,0.0000020410,0.0000020393, +0.0000020381,0.0000020375,0.0000020367,0.0000020343,0.0000020308, +0.0000020282,0.0000020273,0.0000020271,0.0000020265,0.0000020248, +0.0000020226,0.0000020213,0.0000020221,0.0000020254,0.0000020301, +0.0000020353,0.0000020404,0.0000020448,0.0000020481,0.0000020501, +0.0000020512,0.0000020516,0.0000020525,0.0000020535,0.0000020538, +0.0000020527,0.0000020480,0.0000020410,0.0000020324,0.0000020243, +0.0000020192,0.0000020163,0.0000020184,0.0000020240,0.0000020324, +0.0000020434,0.0000020571,0.0000020716,0.0000020825,0.0000020882, +0.0000020894,0.0000020895,0.0000020905,0.0000020920,0.0000020924, +0.0000020892,0.0000020835,0.0000020769,0.0000020700,0.0000020622, +0.0000020541,0.0000020473,0.0000020461,0.0000020476,0.0000020552, +0.0000020674,0.0000020817,0.0000020962,0.0000021083,0.0000021155, +0.0000021195,0.0000021233,0.0000021277,0.0000021329,0.0000021400, +0.0000021487,0.0000021580,0.0000021677,0.0000021783,0.0000021891, +0.0000021971,0.0000022007,0.0000022017,0.0000022027,0.0000022048, +0.0000022066,0.0000022060,0.0000022028,0.0000021981,0.0000021930, +0.0000021886,0.0000021851,0.0000021819,0.0000021787,0.0000021763, +0.0000021752,0.0000021755,0.0000021772,0.0000021796,0.0000021823, +0.0000021846,0.0000021864,0.0000021881,0.0000021898,0.0000021912, +0.0000021919,0.0000021922,0.0000021919,0.0000021906,0.0000021890, +0.0000021874,0.0000021852,0.0000021817,0.0000021772,0.0000021720, +0.0000021670,0.0000021621,0.0000021572,0.0000021519,0.0000021460, +0.0000021394,0.0000021324,0.0000021255,0.0000021191,0.0000021133, +0.0000021090,0.0000021067,0.0000021055,0.0000021045,0.0000021032, +0.0000021019,0.0000021007,0.0000020995,0.0000020980,0.0000020966, +0.0000020950,0.0000020935,0.0000020925,0.0000020921,0.0000020927, +0.0000020940,0.0000020956,0.0000020974,0.0000020990,0.0000020995, +0.0000020989,0.0000020973,0.0000020950,0.0000020922,0.0000020895, +0.0000020869,0.0000020843,0.0000020821,0.0000020805,0.0000020788, +0.0000020766,0.0000020741,0.0000020716,0.0000020696,0.0000020688, +0.0000020689,0.0000020691,0.0000020688,0.0000020684,0.0000020677, +0.0000020670,0.0000020666,0.0000020664,0.0000020665,0.0000020668, +0.0000020676,0.0000020684,0.0000020692,0.0000020704,0.0000020721, +0.0000020740,0.0000020752,0.0000020752,0.0000020746,0.0000020739, +0.0000020734,0.0000020734,0.0000020738,0.0000020749,0.0000020768, +0.0000020787,0.0000020799,0.0000020806,0.0000020815,0.0000020826, +0.0000020837,0.0000020844,0.0000020849,0.0000020852,0.0000020848, +0.0000020835,0.0000020824,0.0000020812,0.0000020795,0.0000020770, +0.0000020738,0.0000020706,0.0000020680,0.0000020662,0.0000020651, +0.0000020644,0.0000020643,0.0000020646,0.0000020651,0.0000020662, +0.0000020676,0.0000020688,0.0000020700,0.0000020711,0.0000020718, +0.0000020722,0.0000020722,0.0000020720,0.0000020718,0.0000020713, +0.0000020702,0.0000020681,0.0000020650,0.0000020610,0.0000020565, +0.0000020519,0.0000020474,0.0000020429,0.0000020387,0.0000020347, +0.0000020311,0.0000020281,0.0000020256,0.0000020232,0.0000020208, +0.0000020181,0.0000020155,0.0000020129,0.0000020100,0.0000020069, +0.0000020044,0.0000020027,0.0000020015,0.0000020002,0.0000019990, +0.0000019983,0.0000019981,0.0000019982,0.0000019984,0.0000019986, +0.0000019991,0.0000020000,0.0000020013,0.0000020028,0.0000020042, +0.0000020046,0.0000020042,0.0000020027,0.0000020007,0.0000019986, +0.0000019961,0.0000019933,0.0000019901,0.0000019865,0.0000019831, +0.0000019801,0.0000019771,0.0000019750,0.0000019753,0.0000019775, +0.0000019814,0.0000019872,0.0000019937,0.0000019998,0.0000020053, +0.0000020102,0.0000020145,0.0000020181,0.0000020209,0.0000020233, +0.0000020252,0.0000020267,0.0000020278,0.0000020284,0.0000020287, +0.0000020282,0.0000020270,0.0000020258,0.0000020247,0.0000020233, +0.0000020216,0.0000020195,0.0000020166,0.0000020129,0.0000020092, +0.0000020057,0.0000020021,0.0000019981,0.0000019941,0.0000019908, +0.0000019884,0.0000019867,0.0000019853,0.0000019841,0.0000019834, +0.0000019832,0.0000019828,0.0000019816,0.0000019799,0.0000019777, +0.0000019755,0.0000019745,0.0000019743,0.0000019743,0.0000019749, +0.0000019775,0.0000019810,0.0000019822,0.0000019803,0.0000019755, +0.0000019703,0.0000019642,0.0000019613,0.0000019700,0.0000019870, +0.0000020071,0.0000020242,0.0000020244,0.0000020254,0.0000020373, +0.0000020462,0.0000020508,0.0000020516,0.0000020452,0.0000020337, +0.0000020270,0.0000020264,0.0000020276,0.0000020287,0.0000020294, +0.0000020294,0.0000020285,0.0000020272,0.0000020261,0.0000020251, +0.0000020244,0.0000020238,0.0000020227,0.0000020217,0.0000020229, +0.0000020275,0.0000020323,0.0000020348,0.0000020338,0.0000020284, +0.0000020218,0.0000020160,0.0000020119,0.0000020122,0.0000020182, +0.0000020264,0.0000020315,0.0000020325,0.0000020316,0.0000020291, +0.0000020271,0.0000020262,0.0000020248,0.0000020236,0.0000020244, +0.0000020275,0.0000020333,0.0000020401,0.0000020439,0.0000020438, +0.0000020404,0.0000020368,0.0000020346,0.0000020331,0.0000020317, +0.0000020303,0.0000020284,0.0000020263,0.0000020246,0.0000020233, +0.0000020221,0.0000020209,0.0000020193,0.0000020170,0.0000020141, +0.0000020116,0.0000020100,0.0000020087,0.0000020083,0.0000020085, +0.0000020086,0.0000020094,0.0000020096,0.0000020093,0.0000020087, +0.0000020078,0.0000020063,0.0000020041,0.0000020013,0.0000019979, +0.0000019944,0.0000019918,0.0000019900,0.0000019886,0.0000019873, +0.0000019862,0.0000019851,0.0000019844,0.0000019842,0.0000019840, +0.0000019843,0.0000019850,0.0000019862,0.0000019876,0.0000019892, +0.0000019906,0.0000019918,0.0000019929,0.0000019940,0.0000019948, +0.0000019954,0.0000019961,0.0000019965,0.0000019968,0.0000019969, +0.0000019968,0.0000019965,0.0000019968,0.0000019979,0.0000019997, +0.0000020021,0.0000020047,0.0000020076,0.0000020108,0.0000020141, +0.0000020174,0.0000020202,0.0000020225,0.0000020241,0.0000020255, +0.0000020265,0.0000020272,0.0000020274,0.0000020272,0.0000020268, +0.0000020263,0.0000020257,0.0000020250,0.0000020241,0.0000020230, +0.0000020220,0.0000020212,0.0000020205,0.0000020198,0.0000020189, +0.0000020177,0.0000020163,0.0000020147,0.0000020126,0.0000020098, +0.0000020063,0.0000020016,0.0000019959,0.0000019904,0.0000019859, +0.0000019832,0.0000019821,0.0000019816,0.0000019809,0.0000019789, +0.0000019756,0.0000019720,0.0000019695,0.0000019688,0.0000019695, +0.0000019718,0.0000019747,0.0000019786,0.0000019835,0.0000019878, +0.0000019890,0.0000019880,0.0000019858,0.0000019844,0.0000019842, +0.0000019851,0.0000019862,0.0000019876,0.0000019897,0.0000019931, +0.0000019981,0.0000020042,0.0000019945,0.0000020002,0.0000020066, +0.0000020131,0.0000020188,0.0000020229,0.0000020249,0.0000020259, +0.0000020275,0.0000020302,0.0000020346,0.0000020416,0.0000020507, +0.0000020608,0.0000020710,0.0000020804,0.0000020886,0.0000020954, +0.0000021010,0.0000021054,0.0000021089,0.0000021117,0.0000021138, +0.0000021156,0.0000021172,0.0000021184,0.0000021197,0.0000021211, +0.0000021225,0.0000021239,0.0000021249,0.0000021255,0.0000021252, +0.0000021239,0.0000021217,0.0000021189,0.0000021155,0.0000021115, +0.0000021070,0.0000021025,0.0000020988,0.0000020968,0.0000020969, +0.0000020980,0.0000021001,0.0000021025,0.0000021052,0.0000021080, +0.0000021105,0.0000021126,0.0000021138,0.0000021141,0.0000021134, +0.0000021122,0.0000021106,0.0000021085,0.0000021056,0.0000021021, +0.0000020979,0.0000020936,0.0000020896,0.0000020859,0.0000020819, +0.0000020777,0.0000020745,0.0000020725,0.0000020712,0.0000020699, +0.0000020678,0.0000020653,0.0000020633,0.0000020631,0.0000020651, +0.0000020686,0.0000020728,0.0000020771,0.0000020816,0.0000020866, +0.0000020914,0.0000020950,0.0000020968,0.0000020973,0.0000020965, +0.0000020946,0.0000020922,0.0000020895,0.0000020867,0.0000020834, +0.0000020808,0.0000020802,0.0000020824,0.0000020885,0.0000020955, +0.0000021016,0.0000021067,0.0000021117,0.0000021165,0.0000021214, +0.0000021259,0.0000021293,0.0000021312,0.0000021320,0.0000021323, +0.0000021324,0.0000021326,0.0000021328,0.0000021329,0.0000021330, +0.0000021327,0.0000021317,0.0000021301,0.0000021282,0.0000021262, +0.0000021238,0.0000021210,0.0000021185,0.0000021169,0.0000021160, +0.0000021154,0.0000021148,0.0000021143,0.0000021136,0.0000021129, +0.0000021120,0.0000021108,0.0000021092,0.0000021072,0.0000021048, +0.0000021017,0.0000020983,0.0000020949,0.0000020915,0.0000020881, +0.0000020845,0.0000020813,0.0000020789,0.0000020779,0.0000020774, +0.0000020779,0.0000020795,0.0000020819,0.0000020847,0.0000020876, +0.0000020905,0.0000020933,0.0000020961,0.0000020985,0.0000021002, +0.0000021012,0.0000021020,0.0000021029,0.0000021044,0.0000021065, +0.0000021085,0.0000021105,0.0000021132,0.0000021163,0.0000021187, +0.0000021193,0.0000021182,0.0000021162,0.0000021146,0.0000021127, +0.0000021113,0.0000021121,0.0000021160,0.0000021201,0.0000021232, +0.0000021270,0.0000021315,0.0000021348,0.0000021367,0.0000021385, +0.0000021400,0.0000021406,0.0000021396,0.0000021366,0.0000021331, +0.0000021295,0.0000021255,0.0000021211,0.0000021174,0.0000021154, +0.0000021155,0.0000021169,0.0000021193,0.0000021216,0.0000021231, +0.0000021237,0.0000021239,0.0000021237,0.0000021230,0.0000021220, +0.0000021209,0.0000021200,0.0000021194,0.0000021195,0.0000021210, +0.0000021242,0.0000021278,0.0000021310,0.0000021335,0.0000021374, +0.0000021425,0.0000021461,0.0000021487,0.0000021540,0.0000021614, +0.0000021675,0.0000021714,0.0000021766,0.0000021855,0.0000021942, +0.0000021991,0.0000022005,0.0000022000,0.0000021953,0.0000021882, +0.0000021816,0.0000021771,0.0000021746,0.0000021727,0.0000021710, +0.0000021691,0.0000021682,0.0000021676,0.0000021675,0.0000021674, +0.0000021673,0.0000021676,0.0000021680,0.0000021682,0.0000021685, +0.0000021687,0.0000021686,0.0000021680,0.0000021672,0.0000021662, +0.0000021654,0.0000021652,0.0000021651,0.0000021654,0.0000021663, +0.0000021678,0.0000021700,0.0000021720,0.0000021739,0.0000021757, +0.0000021773,0.0000021786,0.0000021794,0.0000021797,0.0000021800, +0.0000021802,0.0000021805,0.0000021806,0.0000021804,0.0000021802, +0.0000021798,0.0000021791,0.0000021778,0.0000021760,0.0000021734, +0.0000021706,0.0000021682,0.0000021643,0.0000021595,0.0000021544, +0.0000021490,0.0000021434,0.0000021378,0.0000021323,0.0000021276, +0.0000021243,0.0000021229,0.0000021225,0.0000021232,0.0000021255, +0.0000021278,0.0000021298,0.0000021310,0.0000021318,0.0000021326, +0.0000021336,0.0000021344,0.0000021347,0.0000021344,0.0000021335, +0.0000021320,0.0000021300,0.0000021278,0.0000021254,0.0000021230, +0.0000021204,0.0000021164,0.0000021115,0.0000021069,0.0000021028, +0.0000020993,0.0000020959,0.0000020947,0.0000020957,0.0000020977, +0.0000020998,0.0000021012,0.0000021019,0.0000021018,0.0000021011, +0.0000021010,0.0000021041,0.0000021108,0.0000021192,0.0000021274, +0.0000021330,0.0000021364,0.0000021382,0.0000021383,0.0000021371, +0.0000021341,0.0000021296,0.0000021254,0.0000021223,0.0000021192, +0.0000021148,0.0000021099,0.0000021048,0.0000021010,0.0000020990, +0.0000020980,0.0000020980,0.0000020992,0.0000021017,0.0000021056, +0.0000021092,0.0000021117,0.0000021128,0.0000021129,0.0000021118, +0.0000021099,0.0000021076,0.0000021046,0.0000021011,0.0000020974, +0.0000020931,0.0000020892,0.0000020831,0.0000020767,0.0000020733, +0.0000020674,0.0000020567,0.0000020469,0.0000020469,0.0000020515, +0.0000020526,0.0000020566,0.0000020611,0.0000020632,0.0000020637, +0.0000020649,0.0000020679,0.0000020720,0.0000020763,0.0000020814, +0.0000020853,0.0000020873,0.0000020864,0.0000020879,0.0000020977, +0.0000021083,0.0000021140,0.0000021269,0.0000021428,0.0000021457, +0.0000021464,0.0000021590,0.0000021657,0.0000021619,0.0000021615, +0.0000021710,0.0000021807,0.0000021812,0.0000021758,0.0000021791, +0.0000021983,0.0000022052,0.0000021964,0.0000021811,0.0000021764, +0.0000021793,0.0000021816,0.0000021922,0.0000021983,0.0000022016, +0.0000022175,0.0000022239,0.0000022297,0.0000022411,0.0000022505, +0.0000022570,0.0000022603,0.0000022608,0.0000022608,0.0000022610, +0.0000022600,0.0000022576,0.0000022549,0.0000022534,0.0000022531, +0.0000022534,0.0000022544,0.0000022562,0.0000022583,0.0000022607, +0.0000022634,0.0000022660,0.0000022677,0.0000022660,0.0000022583, +0.0000022470,0.0000022381,0.0000022347,0.0000022334,0.0000022322, +0.0000022294,0.0000022257,0.0000022233,0.0000022215,0.0000022207, +0.0000022202,0.0000022190,0.0000022157,0.0000022112,0.0000022067, +0.0000022023,0.0000021976,0.0000021915,0.0000021846,0.0000021764, +0.0000021671,0.0000021591,0.0000021546,0.0000021524,0.0000021525, +0.0000021565,0.0000021653,0.0000021765,0.0000021855,0.0000021919, +0.0000021956,0.0000021998,0.0000022089,0.0000022166,0.0000022150, +0.0000022095,0.0000022039,0.0000021983,0.0000021927,0.0000021879, +0.0000021828,0.0000021782,0.0000021746,0.0000021729,0.0000021728, +0.0000021722,0.0000021713,0.0000021703,0.0000021708,0.0000021745, +0.0000021823,0.0000021916,0.0000021987,0.0000022022,0.0000022044, +0.0000022069,0.0000022095,0.0000022123,0.0000022154,0.0000022191, +0.0000022222,0.0000022249,0.0000022271,0.0000022286,0.0000022295, +0.0000022310,0.0000022319,0.0000022315,0.0000022308,0.0000022298, +0.0000022283,0.0000022289,0.0000022308,0.0000022349,0.0000022413, +0.0000022466,0.0000022496,0.0000022516,0.0000022541,0.0000022566, +0.0000022590,0.0000022609,0.0000022619,0.0000022623,0.0000022625, +0.0000022622,0.0000022600,0.0000022564,0.0000022531,0.0000022503, +0.0000022457,0.0000022413,0.0000022387,0.0000022367,0.0000022353, +0.0000022347,0.0000022349,0.0000022355,0.0000022363,0.0000022364, +0.0000022366,0.0000022375,0.0000022386,0.0000022385,0.0000022380, +0.0000022395,0.0000022450,0.0000022512,0.0000022545,0.0000022564, +0.0000022595,0.0000022629,0.0000022640,0.0000022611,0.0000022537, +0.0000022443,0.0000022369,0.0000022323,0.0000022288,0.0000022271, +0.0000022258,0.0000022223,0.0000022156,0.0000022069,0.0000021988, +0.0000021941,0.0000021913,0.0000021879,0.0000021819,0.0000021753, +0.0000021706,0.0000021686,0.0000021689,0.0000021715,0.0000021768, +0.0000021833,0.0000021896,0.0000021952,0.0000022005,0.0000022047, +0.0000022074,0.0000022092,0.0000022112,0.0000022133,0.0000022150, +0.0000022160,0.0000022161,0.0000022155,0.0000022140,0.0000022117, +0.0000022087,0.0000022052,0.0000022013,0.0000021971,0.0000021927, +0.0000021881,0.0000021834,0.0000021787,0.0000021734,0.0000021674, +0.0000021621,0.0000021581,0.0000021561,0.0000021543,0.0000021528, +0.0000021520,0.0000021517,0.0000021512,0.0000021502,0.0000021490, +0.0000021487,0.0000021493,0.0000021501,0.0000021503,0.0000021493, +0.0000021485,0.0000021486,0.0000021496,0.0000021508,0.0000021517, +0.0000021521,0.0000021519,0.0000021518,0.0000021538,0.0000021582, +0.0000021649,0.0000021725,0.0000021798,0.0000021854,0.0000021893, +0.0000021912,0.0000021910,0.0000021893,0.0000021882,0.0000021872, +0.0000021857,0.0000021838,0.0000021818,0.0000021796,0.0000021773, +0.0000021752,0.0000021732,0.0000021708,0.0000021680,0.0000021651, +0.0000021619,0.0000021584,0.0000021551,0.0000021523,0.0000021497, +0.0000021473,0.0000021450,0.0000021425,0.0000021402,0.0000021380, +0.0000021361,0.0000021343,0.0000021331,0.0000021326,0.0000021322, +0.0000021320,0.0000021318,0.0000021318,0.0000021324,0.0000021336, +0.0000021342,0.0000021348,0.0000021353,0.0000021351,0.0000021341, +0.0000021327,0.0000021308,0.0000021288,0.0000021268,0.0000021248, +0.0000021230,0.0000021214,0.0000021196,0.0000021171,0.0000021142, +0.0000021116,0.0000021098,0.0000021084,0.0000021067,0.0000021048, +0.0000021030,0.0000021017,0.0000021000,0.0000020981,0.0000020970, +0.0000020965,0.0000020964,0.0000020970,0.0000020985,0.0000021008, +0.0000021035,0.0000021064,0.0000021099,0.0000021139,0.0000021183, +0.0000021223,0.0000021258,0.0000021291,0.0000021314,0.0000021331, +0.0000021329,0.0000021342,0.0000021330,0.0000021303,0.0000021278, +0.0000021257,0.0000021243,0.0000021236,0.0000021239,0.0000021248, +0.0000021262,0.0000021275,0.0000021286,0.0000021293,0.0000021297, +0.0000021288,0.0000021268,0.0000021238,0.0000021193,0.0000021136, +0.0000021069,0.0000020998,0.0000020922,0.0000020845,0.0000020773, +0.0000020717,0.0000020683,0.0000020674,0.0000020679,0.0000020719, +0.0000020782,0.0000020855,0.0000020948,0.0000021025,0.0000021085, +0.0000021129,0.0000021152,0.0000021164,0.0000021177,0.0000021194, +0.0000021222,0.0000021253,0.0000021301,0.0000021351,0.0000021403, +0.0000021455,0.0000021502,0.0000021549,0.0000021598,0.0000021646, +0.0000021690,0.0000021730,0.0000021771,0.0000021806,0.0000021831, +0.0000021845,0.0000021850,0.0000021844,0.0000021829,0.0000021806, +0.0000021775,0.0000021736,0.0000021694,0.0000021649,0.0000021601, +0.0000021552,0.0000021505,0.0000021464,0.0000021424,0.0000021379, +0.0000021334,0.0000021293,0.0000021264,0.0000021237,0.0000021209, +0.0000021187,0.0000021177,0.0000021164,0.0000021148,0.0000021130, +0.0000021112,0.0000021096,0.0000021083,0.0000021074,0.0000021069, +0.0000021065,0.0000021055,0.0000021051,0.0000021046,0.0000021044, +0.0000021035,0.0000021019,0.0000021007,0.0000020988,0.0000020983, +0.0000020980,0.0000020972,0.0000020968,0.0000020964,0.0000020953, +0.0000020943,0.0000020936,0.0000020930,0.0000020927,0.0000020927, +0.0000020930,0.0000020941,0.0000020964,0.0000021010,0.0000021065, +0.0000021127,0.0000021188,0.0000021240,0.0000021285,0.0000021316, +0.0000021328,0.0000021327,0.0000021301,0.0000021244,0.0000021169, +0.0000021083,0.0000020987,0.0000020879,0.0000020771,0.0000020667, +0.0000020569,0.0000020471,0.0000020375,0.0000020285,0.0000020198, +0.0000020114,0.0000020033,0.0000019958,0.0000019897,0.0000019852, +0.0000019819,0.0000019801,0.0000019801,0.0000019829,0.0000019877, +0.0000019932,0.0000019994,0.0000020059,0.0000020116,0.0000020169, +0.0000020218,0.0000020249,0.0000020250,0.0000020225,0.0000020188, +0.0000020165,0.0000020161,0.0000020159,0.0000020135,0.0000020093, +0.0000020049,0.0000020010,0.0000019964,0.0000019902,0.0000019825, +0.0000019769,0.0000019744,0.0000019727,0.0000019707,0.0000019688, +0.0000019695,0.0000019751,0.0000019856,0.0000019965,0.0000020039, +0.0000020094,0.0000020161,0.0000020238,0.0000020304,0.0000020365, +0.0000020431,0.0000020507,0.0000020594,0.0000020680,0.0000020746, +0.0000020778,0.0000020783,0.0000020770,0.0000020750,0.0000020714, +0.0000020648,0.0000020557,0.0000020470,0.0000020416,0.0000020404, +0.0000020425,0.0000020459,0.0000020480,0.0000020498,0.0000020494, +0.0000020500,0.0000020512,0.0000020537,0.0000020572,0.0000020593, +0.0000020609,0.0000020620,0.0000020631,0.0000020643,0.0000020656, +0.0000020675,0.0000020716,0.0000020790,0.0000020905,0.0000021056, +0.0000021237,0.0000021439,0.0000021642,0.0000021820,0.0000021956, +0.0000022044,0.0000022089,0.0000022110,0.0000022115,0.0000022111, +0.0000022108,0.0000022105,0.0000022104,0.0000022112,0.0000022128, +0.0000022145,0.0000022156,0.0000022159,0.0000022151,0.0000022138, +0.0000022125,0.0000022103,0.0000022079,0.0000022060,0.0000022041, +0.0000022023,0.0000022010,0.0000021999,0.0000021990,0.0000021983, +0.0000021979,0.0000021977,0.0000021977,0.0000021980,0.0000021987, +0.0000022001,0.0000022019,0.0000022043,0.0000022069,0.0000022096, +0.0000022122,0.0000022144,0.0000022154,0.0000022155,0.0000022147, +0.0000022128,0.0000022102,0.0000022069,0.0000022035,0.0000022010, +0.0000021988,0.0000021962,0.0000021910,0.0000021810,0.0000021677, +0.0000021556,0.0000021475,0.0000021422,0.0000021370,0.0000021308, +0.0000021257,0.0000021224,0.0000021193,0.0000021153,0.0000021100, +0.0000021043,0.0000020987,0.0000020936,0.0000020893,0.0000020856, +0.0000020829,0.0000020812,0.0000020800,0.0000020796,0.0000020799, +0.0000020804,0.0000020810,0.0000020818,0.0000020828,0.0000020840, +0.0000020852,0.0000020856,0.0000020854,0.0000020862,0.0000020909, +0.0000020966,0.0000021027,0.0000021093,0.0000021123,0.0000021132, +0.0000021146,0.0000021202,0.0000021252,0.0000021245,0.0000021207, +0.0000021168,0.0000021131,0.0000021088,0.0000021083,0.0000021124, +0.0000021164,0.0000021209,0.0000021247,0.0000021245,0.0000021227, +0.0000021245,0.0000021314,0.0000021423,0.0000021542,0.0000021660, +0.0000021770,0.0000021865,0.0000021941,0.0000021996,0.0000022035, +0.0000022056,0.0000022061,0.0000022055,0.0000022045,0.0000022032, +0.0000022006,0.0000021967,0.0000021906,0.0000021841,0.0000021791, +0.0000021765,0.0000021753,0.0000021729,0.0000021686,0.0000021615, +0.0000021532,0.0000021461,0.0000021448,0.0000021506,0.0000021622, +0.0000021770,0.0000021907,0.0000022000,0.0000022062,0.0000022107, +0.0000022163,0.0000022246,0.0000022353,0.0000022464,0.0000022574, +0.0000022656,0.0000022678,0.0000022679,0.0000022659,0.0000022640, +0.0000022610,0.0000022582,0.0000022571,0.0000022580,0.0000022605, +0.0000022648,0.0000022702,0.0000022771,0.0000022838,0.0000022903, +0.0000022941,0.0000022945,0.0000022902,0.0000022817,0.0000022716, +0.0000022611,0.0000022503,0.0000022417,0.0000022387,0.0000022420, +0.0000022482,0.0000022538,0.0000022580,0.0000022616,0.0000022650, +0.0000022673,0.0000022679,0.0000022670,0.0000022640,0.0000022592, +0.0000022528,0.0000022457,0.0000022388,0.0000022327,0.0000022272, +0.0000022220,0.0000022172,0.0000022132,0.0000022097,0.0000022049, +0.0000021966,0.0000021850,0.0000021732,0.0000021644,0.0000021576, +0.0000021485,0.0000021369,0.0000021263,0.0000021185,0.0000021110, +0.0000021007,0.0000020879,0.0000020756,0.0000020662,0.0000020593, +0.0000020534,0.0000020484,0.0000020436,0.0000020396,0.0000020366, +0.0000020346,0.0000020333,0.0000020337,0.0000020350,0.0000020343, +0.0000020318,0.0000020285,0.0000020255,0.0000020237,0.0000020231, +0.0000020228,0.0000020214,0.0000020193,0.0000020173,0.0000020171, +0.0000020188,0.0000020222,0.0000020268,0.0000020315,0.0000020361, +0.0000020400,0.0000020430,0.0000020451,0.0000020463,0.0000020473, +0.0000020482,0.0000020488,0.0000020473,0.0000020443,0.0000020390, +0.0000020318,0.0000020239,0.0000020170,0.0000020146,0.0000020143, +0.0000020180,0.0000020247,0.0000020344,0.0000020478,0.0000020630, +0.0000020769,0.0000020852,0.0000020887,0.0000020888,0.0000020893, +0.0000020904,0.0000020907,0.0000020893,0.0000020851,0.0000020794, +0.0000020726,0.0000020647,0.0000020557,0.0000020485,0.0000020446, +0.0000020451,0.0000020516,0.0000020629,0.0000020772,0.0000020921, +0.0000021043,0.0000021120,0.0000021165,0.0000021201,0.0000021241, +0.0000021299,0.0000021375,0.0000021456,0.0000021538,0.0000021628, +0.0000021735,0.0000021849,0.0000021937,0.0000021979,0.0000021986, +0.0000021982,0.0000021989,0.0000022002,0.0000022001,0.0000021976, +0.0000021931,0.0000021883,0.0000021849,0.0000021818,0.0000021782, +0.0000021743,0.0000021706,0.0000021677,0.0000021666,0.0000021665, +0.0000021669,0.0000021675,0.0000021684,0.0000021697,0.0000021710, +0.0000021722,0.0000021730,0.0000021734,0.0000021734,0.0000021726, +0.0000021714,0.0000021703,0.0000021689,0.0000021662,0.0000021621, +0.0000021569,0.0000021516,0.0000021463,0.0000021415,0.0000021370, +0.0000021321,0.0000021265,0.0000021202,0.0000021138,0.0000021082, +0.0000021035,0.0000021004,0.0000020991,0.0000020987,0.0000020984, +0.0000020980,0.0000020975,0.0000020968,0.0000020959,0.0000020947, +0.0000020934,0.0000020919,0.0000020901,0.0000020884,0.0000020870, +0.0000020865,0.0000020871,0.0000020893,0.0000020923,0.0000020954, +0.0000020977,0.0000020984,0.0000020979,0.0000020960,0.0000020930, +0.0000020900,0.0000020873,0.0000020848,0.0000020825,0.0000020813, +0.0000020805,0.0000020792,0.0000020769,0.0000020741,0.0000020710, +0.0000020686,0.0000020670,0.0000020661,0.0000020660,0.0000020661, +0.0000020661,0.0000020658,0.0000020653,0.0000020643,0.0000020630, +0.0000020617,0.0000020606,0.0000020598,0.0000020594,0.0000020598, +0.0000020609,0.0000020629,0.0000020653,0.0000020671,0.0000020681, +0.0000020687,0.0000020689,0.0000020691,0.0000020691,0.0000020692, +0.0000020702,0.0000020724,0.0000020750,0.0000020769,0.0000020780, +0.0000020792,0.0000020802,0.0000020810,0.0000020816,0.0000020820, +0.0000020819,0.0000020812,0.0000020801,0.0000020791,0.0000020776, +0.0000020751,0.0000020716,0.0000020679,0.0000020649,0.0000020628, +0.0000020615,0.0000020608,0.0000020609,0.0000020615,0.0000020624, +0.0000020637,0.0000020654,0.0000020668,0.0000020680,0.0000020688, +0.0000020694,0.0000020695,0.0000020692,0.0000020681,0.0000020667, +0.0000020651,0.0000020630,0.0000020601,0.0000020566,0.0000020527, +0.0000020487,0.0000020448,0.0000020409,0.0000020372,0.0000020336, +0.0000020301,0.0000020265,0.0000020233,0.0000020205,0.0000020179, +0.0000020155,0.0000020129,0.0000020102,0.0000020077,0.0000020052, +0.0000020024,0.0000019996,0.0000019974,0.0000019960,0.0000019949, +0.0000019938,0.0000019929,0.0000019924,0.0000019925,0.0000019928, +0.0000019932,0.0000019937,0.0000019945,0.0000019957,0.0000019969, +0.0000019980,0.0000019990,0.0000019995,0.0000019990,0.0000019977, +0.0000019961,0.0000019945,0.0000019928,0.0000019909,0.0000019886, +0.0000019857,0.0000019826,0.0000019792,0.0000019759,0.0000019730, +0.0000019708,0.0000019682,0.0000019680,0.0000019706,0.0000019754, +0.0000019817,0.0000019883,0.0000019947,0.0000020007,0.0000020058, +0.0000020100,0.0000020134,0.0000020161,0.0000020181,0.0000020197, +0.0000020208,0.0000020212,0.0000020207,0.0000020195,0.0000020180, +0.0000020162,0.0000020140,0.0000020117,0.0000020090,0.0000020055, +0.0000020017,0.0000019984,0.0000019957,0.0000019931,0.0000019905, +0.0000019881,0.0000019862,0.0000019847,0.0000019835,0.0000019827, +0.0000019823,0.0000019818,0.0000019813,0.0000019807,0.0000019798, +0.0000019782,0.0000019762,0.0000019742,0.0000019731,0.0000019730, +0.0000019732,0.0000019737,0.0000019758,0.0000019794,0.0000019820, +0.0000019814,0.0000019774,0.0000019723,0.0000019667,0.0000019617, +0.0000019669,0.0000019824,0.0000020011,0.0000020207,0.0000020250, +0.0000020243,0.0000020336,0.0000020444,0.0000020495,0.0000020516, +0.0000020484,0.0000020382,0.0000020293,0.0000020268,0.0000020278, +0.0000020294,0.0000020306,0.0000020313,0.0000020311,0.0000020303, +0.0000020293,0.0000020280,0.0000020268,0.0000020257,0.0000020238, +0.0000020220,0.0000020218,0.0000020258,0.0000020309,0.0000020339, +0.0000020337,0.0000020290,0.0000020220,0.0000020160,0.0000020118, +0.0000020110,0.0000020159,0.0000020238,0.0000020290,0.0000020297, +0.0000020285,0.0000020265,0.0000020251,0.0000020242,0.0000020231, +0.0000020231,0.0000020253,0.0000020291,0.0000020350,0.0000020412, +0.0000020438,0.0000020424,0.0000020383,0.0000020349,0.0000020334, +0.0000020327,0.0000020323,0.0000020315,0.0000020297,0.0000020281, +0.0000020265,0.0000020257,0.0000020250,0.0000020245,0.0000020237, +0.0000020221,0.0000020201,0.0000020182,0.0000020167,0.0000020151, +0.0000020135,0.0000020122,0.0000020117,0.0000020113,0.0000020104, +0.0000020092,0.0000020078,0.0000020063,0.0000020045,0.0000020023, +0.0000019996,0.0000019964,0.0000019936,0.0000019915,0.0000019899, +0.0000019888,0.0000019878,0.0000019868,0.0000019860,0.0000019856, +0.0000019857,0.0000019862,0.0000019871,0.0000019881,0.0000019895, +0.0000019911,0.0000019927,0.0000019943,0.0000019957,0.0000019971, +0.0000019982,0.0000019989,0.0000019993,0.0000019996,0.0000019995, +0.0000019991,0.0000019985,0.0000019977,0.0000019969,0.0000019962, +0.0000019958,0.0000019957,0.0000019959,0.0000019960,0.0000019962, +0.0000019964,0.0000019964,0.0000019982,0.0000020005,0.0000020033, +0.0000020066,0.0000020099,0.0000020132,0.0000020166,0.0000020195, +0.0000020219,0.0000020238,0.0000020251,0.0000020258,0.0000020258, +0.0000020249,0.0000020234,0.0000020222,0.0000020205,0.0000020189, +0.0000020176,0.0000020164,0.0000020152,0.0000020139,0.0000020129, +0.0000020117,0.0000020102,0.0000020085,0.0000020067,0.0000020043, +0.0000020011,0.0000019968,0.0000019916,0.0000019867,0.0000019834, +0.0000019817,0.0000019809,0.0000019800,0.0000019779,0.0000019745, +0.0000019702,0.0000019670,0.0000019658,0.0000019669,0.0000019692, +0.0000019717,0.0000019751,0.0000019796,0.0000019836,0.0000019852, +0.0000019840,0.0000019822,0.0000019807,0.0000019802,0.0000019810, +0.0000019822,0.0000019833,0.0000019855,0.0000019894,0.0000019838, +0.0000019879,0.0000019924,0.0000019973,0.0000020025,0.0000020074, +0.0000020112,0.0000020144,0.0000020174,0.0000020207,0.0000020242, +0.0000020285,0.0000020347,0.0000020423,0.0000020508,0.0000020601, +0.0000020694,0.0000020783,0.0000020862,0.0000020931,0.0000020994, +0.0000021046,0.0000021087,0.0000021120,0.0000021146,0.0000021165, +0.0000021184,0.0000021202,0.0000021218,0.0000021234,0.0000021253, +0.0000021266,0.0000021273,0.0000021271,0.0000021264,0.0000021252, +0.0000021232,0.0000021204,0.0000021168,0.0000021125,0.0000021082, +0.0000021047,0.0000021026,0.0000021014,0.0000021012,0.0000021022, +0.0000021037,0.0000021057,0.0000021082,0.0000021104,0.0000021120, +0.0000021129,0.0000021130,0.0000021124,0.0000021109,0.0000021085, +0.0000021056,0.0000021021,0.0000020979,0.0000020935,0.0000020894, +0.0000020852,0.0000020809,0.0000020768,0.0000020726,0.0000020693, +0.0000020674,0.0000020661,0.0000020646,0.0000020618,0.0000020585, +0.0000020564,0.0000020566,0.0000020593,0.0000020633,0.0000020671, +0.0000020711,0.0000020758,0.0000020812,0.0000020861,0.0000020901, +0.0000020930,0.0000020948,0.0000020949,0.0000020938,0.0000020921, +0.0000020904,0.0000020881,0.0000020848,0.0000020815,0.0000020803, +0.0000020810,0.0000020848,0.0000020906,0.0000020965,0.0000021020, +0.0000021069,0.0000021113,0.0000021159,0.0000021207,0.0000021251, +0.0000021285,0.0000021303,0.0000021313,0.0000021320,0.0000021328, +0.0000021332,0.0000021333,0.0000021332,0.0000021330,0.0000021324, +0.0000021312,0.0000021296,0.0000021278,0.0000021260,0.0000021239, +0.0000021216,0.0000021197,0.0000021182,0.0000021167,0.0000021153, +0.0000021141,0.0000021129,0.0000021116,0.0000021102,0.0000021086, +0.0000021069,0.0000021051,0.0000021028,0.0000021001,0.0000020973, +0.0000020947,0.0000020918,0.0000020886,0.0000020850,0.0000020816, +0.0000020789,0.0000020771,0.0000020761,0.0000020761,0.0000020775, +0.0000020801,0.0000020828,0.0000020855,0.0000020882,0.0000020907, +0.0000020934,0.0000020961,0.0000020983,0.0000020996,0.0000021005, +0.0000021016,0.0000021037,0.0000021063,0.0000021087,0.0000021106, +0.0000021121,0.0000021136,0.0000021156,0.0000021171,0.0000021170, +0.0000021154,0.0000021132,0.0000021110,0.0000021087,0.0000021075, +0.0000021093,0.0000021140,0.0000021188,0.0000021236,0.0000021294, +0.0000021342,0.0000021370,0.0000021390,0.0000021409,0.0000021427, +0.0000021431,0.0000021410,0.0000021370,0.0000021328,0.0000021288, +0.0000021246,0.0000021203,0.0000021172,0.0000021162,0.0000021167, +0.0000021183,0.0000021200,0.0000021211,0.0000021216,0.0000021217, +0.0000021215,0.0000021209,0.0000021200,0.0000021187,0.0000021176, +0.0000021172,0.0000021174,0.0000021182,0.0000021205,0.0000021247, +0.0000021289,0.0000021317,0.0000021345,0.0000021395,0.0000021448, +0.0000021477,0.0000021503,0.0000021557,0.0000021635,0.0000021700, +0.0000021746,0.0000021808,0.0000021896,0.0000021974,0.0000022017, +0.0000022029,0.0000022020,0.0000021971,0.0000021900,0.0000021830, +0.0000021774,0.0000021733,0.0000021699,0.0000021665,0.0000021636, +0.0000021612,0.0000021598,0.0000021592,0.0000021592,0.0000021598, +0.0000021606,0.0000021612,0.0000021616,0.0000021618,0.0000021615, +0.0000021607,0.0000021599,0.0000021590,0.0000021587,0.0000021589, +0.0000021594,0.0000021601,0.0000021614,0.0000021630,0.0000021649, +0.0000021670,0.0000021689,0.0000021707,0.0000021723,0.0000021734, +0.0000021739,0.0000021740,0.0000021737,0.0000021734,0.0000021730, +0.0000021726,0.0000021723,0.0000021723,0.0000021723,0.0000021721, +0.0000021716,0.0000021709,0.0000021699,0.0000021686,0.0000021671, +0.0000021654,0.0000021628,0.0000021601,0.0000021569,0.0000021521, +0.0000021467,0.0000021409,0.0000021354,0.0000021306,0.0000021268, +0.0000021242,0.0000021227,0.0000021225,0.0000021226,0.0000021241, +0.0000021253,0.0000021262,0.0000021276,0.0000021294,0.0000021309, +0.0000021322,0.0000021335,0.0000021341,0.0000021336,0.0000021322, +0.0000021301,0.0000021269,0.0000021237,0.0000021208,0.0000021172, +0.0000021130,0.0000021085,0.0000021045,0.0000021016,0.0000020982, +0.0000020959,0.0000020958,0.0000020972,0.0000020990,0.0000021005, +0.0000021011,0.0000021008,0.0000021001,0.0000021000,0.0000021019, +0.0000021079,0.0000021168,0.0000021254,0.0000021318,0.0000021356, +0.0000021376,0.0000021381,0.0000021374,0.0000021357,0.0000021324, +0.0000021282,0.0000021247,0.0000021214,0.0000021178,0.0000021133, +0.0000021083,0.0000021043,0.0000021021,0.0000021007,0.0000020997, +0.0000020995,0.0000021005,0.0000021022,0.0000021050,0.0000021076, +0.0000021095,0.0000021104,0.0000021099,0.0000021085,0.0000021067, +0.0000021045,0.0000021011,0.0000020968,0.0000020914,0.0000020865, +0.0000020797,0.0000020724,0.0000020683,0.0000020625,0.0000020528, +0.0000020426,0.0000020427,0.0000020480,0.0000020489,0.0000020528, +0.0000020581,0.0000020611,0.0000020613,0.0000020610,0.0000020633, +0.0000020684,0.0000020738,0.0000020792,0.0000020828,0.0000020847, +0.0000020845,0.0000020901,0.0000021023,0.0000021122,0.0000021177, +0.0000021327,0.0000021465,0.0000021480,0.0000021503,0.0000021631, +0.0000021654,0.0000021610,0.0000021630,0.0000021745,0.0000021814, +0.0000021787,0.0000021745,0.0000021857,0.0000022026,0.0000022029, +0.0000021887,0.0000021763,0.0000021759,0.0000021780,0.0000021831, +0.0000021952,0.0000021965,0.0000022029,0.0000022167,0.0000022186, +0.0000022260,0.0000022393,0.0000022491,0.0000022549,0.0000022582, +0.0000022599,0.0000022607,0.0000022604,0.0000022583,0.0000022545, +0.0000022515,0.0000022502,0.0000022502,0.0000022522,0.0000022543, +0.0000022556,0.0000022567,0.0000022588,0.0000022613,0.0000022625, +0.0000022604,0.0000022537,0.0000022444,0.0000022369,0.0000022347, +0.0000022347,0.0000022327,0.0000022292,0.0000022243,0.0000022202, +0.0000022188,0.0000022178,0.0000022171,0.0000022150,0.0000022109, +0.0000022050,0.0000021987,0.0000021932,0.0000021881,0.0000021831, +0.0000021784,0.0000021729,0.0000021656,0.0000021572,0.0000021500, +0.0000021467,0.0000021455,0.0000021452,0.0000021484,0.0000021571, +0.0000021708,0.0000021825,0.0000021904,0.0000021946,0.0000021977, +0.0000022035,0.0000022118,0.0000022129,0.0000022073,0.0000022006, +0.0000021955,0.0000021911,0.0000021869,0.0000021818,0.0000021764, +0.0000021716,0.0000021693,0.0000021697,0.0000021698,0.0000021689, +0.0000021673,0.0000021660,0.0000021668,0.0000021721,0.0000021816, +0.0000021904,0.0000021950,0.0000021972,0.0000021998,0.0000022029, +0.0000022062,0.0000022092,0.0000022131,0.0000022166,0.0000022197, +0.0000022222,0.0000022241,0.0000022252,0.0000022266,0.0000022279, +0.0000022275,0.0000022264,0.0000022248,0.0000022232,0.0000022233, +0.0000022243,0.0000022272,0.0000022326,0.0000022376,0.0000022408, +0.0000022429,0.0000022455,0.0000022478,0.0000022503,0.0000022536, +0.0000022567,0.0000022590,0.0000022603,0.0000022612,0.0000022602, +0.0000022575,0.0000022543,0.0000022519,0.0000022480,0.0000022438, +0.0000022408,0.0000022383,0.0000022365,0.0000022359,0.0000022351, +0.0000022343,0.0000022333,0.0000022324,0.0000022325,0.0000022336, +0.0000022353,0.0000022362,0.0000022362,0.0000022365,0.0000022395, +0.0000022444,0.0000022480,0.0000022495,0.0000022511,0.0000022542, +0.0000022573,0.0000022581,0.0000022554,0.0000022489,0.0000022412, +0.0000022351,0.0000022307,0.0000022277,0.0000022266,0.0000022252, +0.0000022225,0.0000022172,0.0000022092,0.0000022004,0.0000021934, +0.0000021894,0.0000021855,0.0000021800,0.0000021738,0.0000021688, +0.0000021664,0.0000021658,0.0000021674,0.0000021711,0.0000021761, +0.0000021812,0.0000021865,0.0000021915,0.0000021958,0.0000021991, +0.0000022017,0.0000022041,0.0000022065,0.0000022085,0.0000022097, +0.0000022100,0.0000022097,0.0000022088,0.0000022073,0.0000022053, +0.0000022029,0.0000022000,0.0000021972,0.0000021938,0.0000021898, +0.0000021855,0.0000021810,0.0000021755,0.0000021695,0.0000021642, +0.0000021604,0.0000021576,0.0000021547,0.0000021518,0.0000021496, +0.0000021479,0.0000021469,0.0000021465,0.0000021472,0.0000021489, +0.0000021512,0.0000021535,0.0000021547,0.0000021549,0.0000021544, +0.0000021539,0.0000021538,0.0000021545,0.0000021560,0.0000021582, +0.0000021598,0.0000021598,0.0000021592,0.0000021595,0.0000021620, +0.0000021665,0.0000021715,0.0000021763,0.0000021806,0.0000021840, +0.0000021858,0.0000021868,0.0000021874,0.0000021871,0.0000021861, +0.0000021847,0.0000021830,0.0000021810,0.0000021787,0.0000021767, +0.0000021749,0.0000021726,0.0000021698,0.0000021666,0.0000021633, +0.0000021596,0.0000021560,0.0000021528,0.0000021500,0.0000021473, +0.0000021445,0.0000021419,0.0000021395,0.0000021374,0.0000021354, +0.0000021334,0.0000021318,0.0000021311,0.0000021310,0.0000021308, +0.0000021308,0.0000021312,0.0000021327,0.0000021343,0.0000021355, +0.0000021366,0.0000021374,0.0000021375,0.0000021369,0.0000021356, +0.0000021340,0.0000021321,0.0000021301,0.0000021281,0.0000021263, +0.0000021247,0.0000021228,0.0000021200,0.0000021170,0.0000021145, +0.0000021130,0.0000021118,0.0000021099,0.0000021074,0.0000021046, +0.0000021021,0.0000020994,0.0000020971,0.0000020946,0.0000020933, +0.0000020930,0.0000020932,0.0000020939,0.0000020948,0.0000020955, +0.0000020962,0.0000020970,0.0000020985,0.0000021008,0.0000021039, +0.0000021076,0.0000021121,0.0000021173,0.0000021223,0.0000021266, +0.0000021307,0.0000021327,0.0000021331,0.0000021319,0.0000021303, +0.0000021299,0.0000021287,0.0000021281,0.0000021279,0.0000021285, +0.0000021291,0.0000021306,0.0000021320,0.0000021334,0.0000021346, +0.0000021344,0.0000021333,0.0000021310,0.0000021272,0.0000021219, +0.0000021159,0.0000021087,0.0000021013,0.0000020941,0.0000020876, +0.0000020818,0.0000020764,0.0000020715,0.0000020677,0.0000020659, +0.0000020670,0.0000020684,0.0000020746,0.0000020809,0.0000020898, +0.0000020978,0.0000021029,0.0000021066,0.0000021091,0.0000021108, +0.0000021122,0.0000021149,0.0000021171,0.0000021193,0.0000021222, +0.0000021248,0.0000021273,0.0000021306,0.0000021344,0.0000021384, +0.0000021431,0.0000021476,0.0000021524,0.0000021569,0.0000021607, +0.0000021634,0.0000021647,0.0000021649,0.0000021640,0.0000021623, +0.0000021598,0.0000021567,0.0000021525,0.0000021478,0.0000021429, +0.0000021381,0.0000021333,0.0000021283,0.0000021230,0.0000021174, +0.0000021123,0.0000021085,0.0000021052,0.0000021018,0.0000020992, +0.0000020975,0.0000020959,0.0000020947,0.0000020939,0.0000020926, +0.0000020924,0.0000020929,0.0000020936,0.0000020947,0.0000020966, +0.0000020991,0.0000020999,0.0000021005,0.0000021019,0.0000021024, +0.0000021021,0.0000021020,0.0000021017,0.0000021020,0.0000021026, +0.0000021032,0.0000021035,0.0000021035,0.0000021035,0.0000021034, +0.0000021034,0.0000021034,0.0000021033,0.0000021033,0.0000021039, +0.0000021054,0.0000021076,0.0000021114,0.0000021161,0.0000021207, +0.0000021253,0.0000021281,0.0000021302,0.0000021311,0.0000021296, +0.0000021258,0.0000021196,0.0000021114,0.0000021033,0.0000020954, +0.0000020867,0.0000020773,0.0000020681,0.0000020592,0.0000020499, +0.0000020398,0.0000020295,0.0000020199,0.0000020111,0.0000020029, +0.0000019952,0.0000019884,0.0000019833,0.0000019799,0.0000019772, +0.0000019749,0.0000019736,0.0000019744,0.0000019775,0.0000019822, +0.0000019881,0.0000019946,0.0000020007,0.0000020062,0.0000020120, +0.0000020172,0.0000020197,0.0000020189,0.0000020156,0.0000020118, +0.0000020101,0.0000020102,0.0000020099,0.0000020075,0.0000020038, +0.0000019998,0.0000019957,0.0000019900,0.0000019824,0.0000019766, +0.0000019743,0.0000019731,0.0000019713,0.0000019685,0.0000019663, +0.0000019665,0.0000019711,0.0000019811,0.0000019918,0.0000019983, +0.0000020022,0.0000020072,0.0000020132,0.0000020190,0.0000020242, +0.0000020300,0.0000020381,0.0000020485,0.0000020591,0.0000020674, +0.0000020722,0.0000020738,0.0000020741,0.0000020738,0.0000020722, +0.0000020675,0.0000020592,0.0000020495,0.0000020414,0.0000020381, +0.0000020401,0.0000020443,0.0000020488,0.0000020506,0.0000020517, +0.0000020523,0.0000020526,0.0000020543,0.0000020560,0.0000020560, +0.0000020558,0.0000020545,0.0000020544,0.0000020551,0.0000020558, +0.0000020577,0.0000020616,0.0000020679,0.0000020762,0.0000020861, +0.0000020981,0.0000021130,0.0000021309,0.0000021507,0.0000021700, +0.0000021861,0.0000021975,0.0000022035,0.0000022054,0.0000022051, +0.0000022042,0.0000022028,0.0000022019,0.0000022017,0.0000022024, +0.0000022042,0.0000022063,0.0000022080,0.0000022091,0.0000022095, +0.0000022092,0.0000022084,0.0000022077,0.0000022063,0.0000022058, +0.0000022044,0.0000022037,0.0000022030,0.0000022022,0.0000022013, +0.0000022004,0.0000021996,0.0000021987,0.0000021984,0.0000021978, +0.0000021977,0.0000021981,0.0000021990,0.0000022002,0.0000022011, +0.0000022015,0.0000022015,0.0000022012,0.0000022001,0.0000021983, +0.0000021963,0.0000021945,0.0000021926,0.0000021896,0.0000021850, +0.0000021774,0.0000021670,0.0000021558,0.0000021464,0.0000021409, +0.0000021374,0.0000021331,0.0000021280,0.0000021237,0.0000021207, +0.0000021182,0.0000021141,0.0000021091,0.0000021038,0.0000020988, +0.0000020944,0.0000020901,0.0000020858,0.0000020823,0.0000020803, +0.0000020798,0.0000020800,0.0000020801,0.0000020803,0.0000020811, +0.0000020818,0.0000020819,0.0000020815,0.0000020800,0.0000020784, +0.0000020791,0.0000020804,0.0000020804,0.0000020808,0.0000020851, +0.0000020917,0.0000020987,0.0000021064,0.0000021113,0.0000021132, +0.0000021152,0.0000021207,0.0000021261,0.0000021264,0.0000021232, +0.0000021195,0.0000021154,0.0000021104,0.0000021095,0.0000021124, +0.0000021158,0.0000021198,0.0000021230,0.0000021225,0.0000021201, +0.0000021203,0.0000021262,0.0000021370,0.0000021489,0.0000021599, +0.0000021701,0.0000021793,0.0000021869,0.0000021925,0.0000021966, +0.0000021991,0.0000022001,0.0000022003,0.0000022001,0.0000021994, +0.0000021981,0.0000021948,0.0000021900,0.0000021832,0.0000021766, +0.0000021720,0.0000021700,0.0000021696,0.0000021689,0.0000021671, +0.0000021622,0.0000021546,0.0000021474,0.0000021445,0.0000021434, +0.0000021510,0.0000021633,0.0000021776,0.0000021909,0.0000021998, +0.0000022040,0.0000022073,0.0000022114,0.0000022174,0.0000022255, +0.0000022362,0.0000022476,0.0000022555,0.0000022640,0.0000022712, +0.0000022730,0.0000022752,0.0000022751,0.0000022759,0.0000022766, +0.0000022775,0.0000022795,0.0000022827,0.0000022869,0.0000022913, +0.0000022947,0.0000022964,0.0000022945,0.0000022875,0.0000022772, +0.0000022665,0.0000022554,0.0000022437,0.0000022354,0.0000022320, +0.0000022357,0.0000022425,0.0000022487,0.0000022533,0.0000022573, +0.0000022609,0.0000022640,0.0000022656,0.0000022648,0.0000022628, +0.0000022587,0.0000022528,0.0000022458,0.0000022389,0.0000022331, +0.0000022279,0.0000022231,0.0000022187,0.0000022153,0.0000022125, +0.0000022088,0.0000022013,0.0000021893,0.0000021762,0.0000021666, +0.0000021590,0.0000021491,0.0000021362,0.0000021243,0.0000021153, +0.0000021055,0.0000020927,0.0000020784,0.0000020660,0.0000020573, +0.0000020503,0.0000020448,0.0000020398,0.0000020356,0.0000020322, +0.0000020299,0.0000020282,0.0000020280,0.0000020299,0.0000020314, +0.0000020312,0.0000020290,0.0000020254,0.0000020217,0.0000020189, +0.0000020182,0.0000020182,0.0000020175,0.0000020158,0.0000020136, +0.0000020122,0.0000020126,0.0000020148,0.0000020183,0.0000020226, +0.0000020271,0.0000020313,0.0000020351,0.0000020380,0.0000020399, +0.0000020414,0.0000020428,0.0000020434,0.0000020427,0.0000020404, +0.0000020369,0.0000020313,0.0000020240,0.0000020168,0.0000020123, +0.0000020105,0.0000020132,0.0000020183,0.0000020266,0.0000020388, +0.0000020544,0.0000020695,0.0000020812,0.0000020868,0.0000020879, +0.0000020873,0.0000020878,0.0000020888,0.0000020885,0.0000020859, +0.0000020809,0.0000020745,0.0000020667,0.0000020575,0.0000020489, +0.0000020441,0.0000020440,0.0000020495,0.0000020599,0.0000020737, +0.0000020878,0.0000020996,0.0000021081,0.0000021136,0.0000021172, +0.0000021213,0.0000021271,0.0000021343,0.0000021420,0.0000021499, +0.0000021582,0.0000021682,0.0000021791,0.0000021883,0.0000021935, +0.0000021944,0.0000021936,0.0000021928,0.0000021928,0.0000021927, +0.0000021909,0.0000021874,0.0000021844,0.0000021819,0.0000021790, +0.0000021753,0.0000021713,0.0000021678,0.0000021656,0.0000021645, +0.0000021632,0.0000021623,0.0000021621,0.0000021624,0.0000021630, +0.0000021636,0.0000021640,0.0000021643,0.0000021644,0.0000021642, +0.0000021636,0.0000021629,0.0000021622,0.0000021607,0.0000021578, +0.0000021534,0.0000021481,0.0000021420,0.0000021358,0.0000021306, +0.0000021260,0.0000021208,0.0000021147,0.0000021084,0.0000021028, +0.0000020984,0.0000020952,0.0000020941,0.0000020946,0.0000020954, +0.0000020962,0.0000020966,0.0000020961,0.0000020952,0.0000020931, +0.0000020907,0.0000020883,0.0000020860,0.0000020842,0.0000020829, +0.0000020823,0.0000020824,0.0000020841,0.0000020871,0.0000020910, +0.0000020946,0.0000020970,0.0000020980,0.0000020975,0.0000020952, +0.0000020922,0.0000020893,0.0000020863,0.0000020836,0.0000020818, +0.0000020808,0.0000020798,0.0000020787,0.0000020765,0.0000020736, +0.0000020704,0.0000020675,0.0000020650,0.0000020636,0.0000020632, +0.0000020634,0.0000020637,0.0000020638,0.0000020634,0.0000020621, +0.0000020599,0.0000020575,0.0000020553,0.0000020535,0.0000020525, +0.0000020523,0.0000020530,0.0000020551,0.0000020578,0.0000020603, +0.0000020622,0.0000020638,0.0000020650,0.0000020656,0.0000020656, +0.0000020660,0.0000020674,0.0000020699,0.0000020725,0.0000020746, +0.0000020762,0.0000020774,0.0000020779,0.0000020782,0.0000020786, +0.0000020784,0.0000020774,0.0000020760,0.0000020749,0.0000020738, +0.0000020720,0.0000020694,0.0000020663,0.0000020629,0.0000020597, +0.0000020571,0.0000020554,0.0000020550,0.0000020552,0.0000020560, +0.0000020571,0.0000020583,0.0000020595,0.0000020608,0.0000020617, +0.0000020623,0.0000020625,0.0000020624,0.0000020617,0.0000020603, +0.0000020585,0.0000020561,0.0000020529,0.0000020489,0.0000020446, +0.0000020405,0.0000020367,0.0000020333,0.0000020305,0.0000020280, +0.0000020255,0.0000020227,0.0000020195,0.0000020163,0.0000020129, +0.0000020101,0.0000020073,0.0000020043,0.0000020013,0.0000019984, +0.0000019957,0.0000019932,0.0000019911,0.0000019896,0.0000019886, +0.0000019881,0.0000019879,0.0000019879,0.0000019880,0.0000019884, +0.0000019887,0.0000019890,0.0000019894,0.0000019902,0.0000019916, +0.0000019929,0.0000019938,0.0000019945,0.0000019947,0.0000019940, +0.0000019925,0.0000019908,0.0000019894,0.0000019883,0.0000019872, +0.0000019858,0.0000019838,0.0000019812,0.0000019783,0.0000019757, +0.0000019729,0.0000019698,0.0000019667,0.0000019642,0.0000019628, +0.0000019637,0.0000019669,0.0000019714,0.0000019767,0.0000019826, +0.0000019884,0.0000019938,0.0000019985,0.0000020024,0.0000020055, +0.0000020077,0.0000020091,0.0000020094,0.0000020087,0.0000020071, +0.0000020050,0.0000020026,0.0000020003,0.0000019983,0.0000019961, +0.0000019937,0.0000019914,0.0000019894,0.0000019876,0.0000019859, +0.0000019842,0.0000019828,0.0000019817,0.0000019805,0.0000019797, +0.0000019794,0.0000019793,0.0000019788,0.0000019780,0.0000019775, +0.0000019770,0.0000019759,0.0000019743,0.0000019728,0.0000019720, +0.0000019716,0.0000019718,0.0000019726,0.0000019744,0.0000019777, +0.0000019809,0.0000019817,0.0000019791,0.0000019741,0.0000019686, +0.0000019627,0.0000019643,0.0000019775,0.0000019947,0.0000020152, +0.0000020254,0.0000020235,0.0000020294,0.0000020421,0.0000020483, +0.0000020512,0.0000020507,0.0000020431,0.0000020331,0.0000020282, +0.0000020284,0.0000020301,0.0000020318,0.0000020328,0.0000020331, +0.0000020328,0.0000020321,0.0000020310,0.0000020294,0.0000020280, +0.0000020260,0.0000020232,0.0000020216,0.0000020236,0.0000020285, +0.0000020323,0.0000020332,0.0000020300,0.0000020227,0.0000020162, +0.0000020121,0.0000020109,0.0000020136,0.0000020206,0.0000020260, +0.0000020271,0.0000020264,0.0000020251,0.0000020240,0.0000020227, +0.0000020219,0.0000020228,0.0000020261,0.0000020306,0.0000020363, +0.0000020417,0.0000020433,0.0000020412,0.0000020367,0.0000020335, +0.0000020322,0.0000020323,0.0000020326,0.0000020320,0.0000020308, +0.0000020295,0.0000020285,0.0000020277,0.0000020269,0.0000020266, +0.0000020262,0.0000020253,0.0000020243,0.0000020235,0.0000020232, +0.0000020227,0.0000020217,0.0000020205,0.0000020196,0.0000020187, +0.0000020170,0.0000020147,0.0000020124,0.0000020101,0.0000020075, +0.0000020049,0.0000020023,0.0000019997,0.0000019976,0.0000019961, +0.0000019949,0.0000019941,0.0000019934,0.0000019926,0.0000019919, +0.0000019914,0.0000019915,0.0000019922,0.0000019932,0.0000019945, +0.0000019960,0.0000019979,0.0000020002,0.0000020024,0.0000020045, +0.0000020063,0.0000020076,0.0000020084,0.0000020088,0.0000020090, +0.0000020087,0.0000020080,0.0000020070,0.0000020059,0.0000020050, +0.0000020042,0.0000020035,0.0000020026,0.0000020016,0.0000020007, +0.0000019998,0.0000019986,0.0000019973,0.0000019957,0.0000019944, +0.0000019938,0.0000019943,0.0000019947,0.0000019948,0.0000019977, +0.0000020012,0.0000020051,0.0000020088,0.0000020124,0.0000020162, +0.0000020193,0.0000020215,0.0000020228,0.0000020233,0.0000020228, +0.0000020214,0.0000020197,0.0000020184,0.0000020166,0.0000020150, +0.0000020137,0.0000020127,0.0000020117,0.0000020105,0.0000020089, +0.0000020070,0.0000020049,0.0000020028,0.0000020001,0.0000019963, +0.0000019910,0.0000019853,0.0000019807,0.0000019782,0.0000019777, +0.0000019774,0.0000019758,0.0000019725,0.0000019682,0.0000019647, +0.0000019626,0.0000019622,0.0000019637,0.0000019661,0.0000019688, +0.0000019722,0.0000019756,0.0000019778,0.0000019771,0.0000019750, +0.0000019741,0.0000019747,0.0000019763,0.0000019784,0.0000019807, +0.0000019770,0.0000019798,0.0000019826,0.0000019858,0.0000019895, +0.0000019931,0.0000019961,0.0000019991,0.0000020031,0.0000020084, +0.0000020142,0.0000020196,0.0000020250,0.0000020309,0.0000020371, +0.0000020438,0.0000020509,0.0000020580,0.0000020647,0.0000020714, +0.0000020783,0.0000020851,0.0000020914,0.0000020970,0.0000021018, +0.0000021058,0.0000021093,0.0000021127,0.0000021158,0.0000021189, +0.0000021221,0.0000021247,0.0000021262,0.0000021267,0.0000021265, +0.0000021256,0.0000021241,0.0000021218,0.0000021186,0.0000021147, +0.0000021104,0.0000021064,0.0000021035,0.0000021019,0.0000021008, +0.0000021009,0.0000021019,0.0000021037,0.0000021060,0.0000021083, +0.0000021100,0.0000021109,0.0000021110,0.0000021101,0.0000021082, +0.0000021052,0.0000021019,0.0000020986,0.0000020948,0.0000020905, +0.0000020862,0.0000020819,0.0000020778,0.0000020739,0.0000020697, +0.0000020659,0.0000020630,0.0000020613,0.0000020601,0.0000020579, +0.0000020544,0.0000020514,0.0000020506,0.0000020520,0.0000020555, +0.0000020593,0.0000020626,0.0000020666,0.0000020712,0.0000020759, +0.0000020806,0.0000020851,0.0000020887,0.0000020913,0.0000020925, +0.0000020927,0.0000020921,0.0000020908,0.0000020886,0.0000020856, +0.0000020825,0.0000020805,0.0000020805,0.0000020823,0.0000020865, +0.0000020920,0.0000020974,0.0000021020,0.0000021060,0.0000021100, +0.0000021147,0.0000021198,0.0000021244,0.0000021275,0.0000021296, +0.0000021312,0.0000021326,0.0000021333,0.0000021336,0.0000021337, +0.0000021335,0.0000021331,0.0000021321,0.0000021307,0.0000021291, +0.0000021274,0.0000021255,0.0000021235,0.0000021217,0.0000021200, +0.0000021184,0.0000021167,0.0000021150,0.0000021133,0.0000021117, +0.0000021099,0.0000021081,0.0000021061,0.0000021040,0.0000021016, +0.0000020991,0.0000020969,0.0000020950,0.0000020927,0.0000020898, +0.0000020863,0.0000020830,0.0000020802,0.0000020777,0.0000020760, +0.0000020757,0.0000020769,0.0000020789,0.0000020813,0.0000020838, +0.0000020860,0.0000020881,0.0000020904,0.0000020932,0.0000020956, +0.0000020973,0.0000020988,0.0000021006,0.0000021028,0.0000021057, +0.0000021087,0.0000021111,0.0000021122,0.0000021125,0.0000021129, +0.0000021140,0.0000021147,0.0000021141,0.0000021120,0.0000021094, +0.0000021068,0.0000021044,0.0000021042,0.0000021079,0.0000021143, +0.0000021207,0.0000021273,0.0000021333,0.0000021371,0.0000021394, +0.0000021414,0.0000021435,0.0000021448,0.0000021445,0.0000021414, +0.0000021366,0.0000021319,0.0000021276,0.0000021236,0.0000021201, +0.0000021177,0.0000021170,0.0000021178,0.0000021190,0.0000021196, +0.0000021199,0.0000021199,0.0000021198,0.0000021195,0.0000021188, +0.0000021174,0.0000021161,0.0000021154,0.0000021152,0.0000021156, +0.0000021171,0.0000021205,0.0000021251,0.0000021292,0.0000021321, +0.0000021360,0.0000021416,0.0000021465,0.0000021492,0.0000021519, +0.0000021575,0.0000021655,0.0000021728,0.0000021782,0.0000021844, +0.0000021922,0.0000021993,0.0000022034,0.0000022044,0.0000022030, +0.0000021988,0.0000021922,0.0000021848,0.0000021780,0.0000021724, +0.0000021678,0.0000021640,0.0000021609,0.0000021586,0.0000021568, +0.0000021555,0.0000021549,0.0000021550,0.0000021553,0.0000021558, +0.0000021561,0.0000021561,0.0000021559,0.0000021556,0.0000021554, +0.0000021555,0.0000021560,0.0000021567,0.0000021576,0.0000021586, +0.0000021597,0.0000021609,0.0000021623,0.0000021638,0.0000021653, +0.0000021667,0.0000021676,0.0000021680,0.0000021678,0.0000021674, +0.0000021668,0.0000021661,0.0000021652,0.0000021644,0.0000021638, +0.0000021631,0.0000021624,0.0000021614,0.0000021605,0.0000021597, +0.0000021592,0.0000021590,0.0000021590,0.0000021591,0.0000021590, +0.0000021585,0.0000021565,0.0000021547,0.0000021498,0.0000021448, +0.0000021401,0.0000021358,0.0000021318,0.0000021282,0.0000021253, +0.0000021232,0.0000021228,0.0000021228,0.0000021231,0.0000021241, +0.0000021256,0.0000021273,0.0000021296,0.0000021322,0.0000021345, +0.0000021352,0.0000021344,0.0000021322,0.0000021283,0.0000021240, +0.0000021202,0.0000021168,0.0000021133,0.0000021096,0.0000021057, +0.0000021027,0.0000020998,0.0000020969,0.0000020956,0.0000020960, +0.0000020974,0.0000020988,0.0000020998,0.0000020999,0.0000020999, +0.0000021001,0.0000021016,0.0000021066,0.0000021146,0.0000021225, +0.0000021287,0.0000021329,0.0000021352,0.0000021364,0.0000021364, +0.0000021356,0.0000021338,0.0000021309,0.0000021273,0.0000021237, +0.0000021193,0.0000021145,0.0000021095,0.0000021053,0.0000021029, +0.0000021017,0.0000021009,0.0000021005,0.0000021008,0.0000021016, +0.0000021032,0.0000021053,0.0000021071,0.0000021081,0.0000021081, +0.0000021075,0.0000021061,0.0000021040,0.0000021005,0.0000020956, +0.0000020894,0.0000020840,0.0000020761,0.0000020675,0.0000020627, +0.0000020571,0.0000020481,0.0000020376,0.0000020377,0.0000020436, +0.0000020445,0.0000020482,0.0000020544,0.0000020586,0.0000020589, +0.0000020582,0.0000020603,0.0000020660,0.0000020718,0.0000020770, +0.0000020802,0.0000020819,0.0000020838,0.0000020922,0.0000021059, +0.0000021153,0.0000021208,0.0000021372,0.0000021493,0.0000021496, +0.0000021532,0.0000021645,0.0000021643,0.0000021602,0.0000021644, +0.0000021761,0.0000021803,0.0000021755,0.0000021750,0.0000021922, +0.0000022032,0.0000021981,0.0000021824,0.0000021747,0.0000021761, +0.0000021769,0.0000021858,0.0000021950,0.0000021945,0.0000022032, +0.0000022130,0.0000022136,0.0000022222,0.0000022367,0.0000022465, +0.0000022515,0.0000022553,0.0000022578,0.0000022584,0.0000022573, +0.0000022543,0.0000022506,0.0000022484,0.0000022490,0.0000022514, +0.0000022540,0.0000022546,0.0000022544,0.0000022554,0.0000022572, +0.0000022579,0.0000022551,0.0000022481,0.0000022399,0.0000022346, +0.0000022330,0.0000022333,0.0000022326,0.0000022292,0.0000022245, +0.0000022197,0.0000022159,0.0000022144,0.0000022132,0.0000022107, +0.0000022062,0.0000022008,0.0000021940,0.0000021873,0.0000021803, +0.0000021739,0.0000021679,0.0000021637,0.0000021594,0.0000021534, +0.0000021464,0.0000021404,0.0000021380,0.0000021371,0.0000021364, +0.0000021386,0.0000021466,0.0000021619,0.0000021773,0.0000021879, +0.0000021934,0.0000021957,0.0000021977,0.0000022026,0.0000022066, +0.0000022048,0.0000021975,0.0000021909,0.0000021873,0.0000021848, +0.0000021810,0.0000021757,0.0000021700,0.0000021659,0.0000021654, +0.0000021659,0.0000021658,0.0000021647,0.0000021629,0.0000021615, +0.0000021633,0.0000021704,0.0000021800,0.0000021858,0.0000021877, +0.0000021902,0.0000021938,0.0000021974,0.0000022003,0.0000022041, +0.0000022078,0.0000022115,0.0000022147,0.0000022174,0.0000022192, +0.0000022205,0.0000022216,0.0000022214,0.0000022201,0.0000022180, +0.0000022161,0.0000022155,0.0000022159,0.0000022185,0.0000022232, +0.0000022278,0.0000022313,0.0000022342,0.0000022375,0.0000022402, +0.0000022424,0.0000022457,0.0000022500,0.0000022537,0.0000022559, +0.0000022579,0.0000022583,0.0000022570,0.0000022545,0.0000022533, +0.0000022506,0.0000022465,0.0000022427,0.0000022400,0.0000022378, +0.0000022367,0.0000022356,0.0000022328,0.0000022301,0.0000022281, +0.0000022275,0.0000022283,0.0000022299,0.0000022317,0.0000022329, +0.0000022337,0.0000022356,0.0000022393,0.0000022430,0.0000022448, +0.0000022453,0.0000022465,0.0000022491,0.0000022519,0.0000022528, +0.0000022509,0.0000022460,0.0000022402,0.0000022350,0.0000022310, +0.0000022288,0.0000022272,0.0000022258,0.0000022244,0.0000022211, +0.0000022150,0.0000022067,0.0000021980,0.0000021907,0.0000021844, +0.0000021783,0.0000021730,0.0000021689,0.0000021654,0.0000021630, +0.0000021626,0.0000021646,0.0000021678,0.0000021718,0.0000021763, +0.0000021812,0.0000021863,0.0000021903,0.0000021936,0.0000021964, +0.0000021989,0.0000022012,0.0000022027,0.0000022032,0.0000022033, +0.0000022031,0.0000022028,0.0000022022,0.0000022012,0.0000021998, +0.0000021982,0.0000021957,0.0000021923,0.0000021886,0.0000021844, +0.0000021797,0.0000021751,0.0000021712,0.0000021682,0.0000021652, +0.0000021616,0.0000021573,0.0000021527,0.0000021487,0.0000021458, +0.0000021450,0.0000021452,0.0000021471,0.0000021505,0.0000021543, +0.0000021577,0.0000021603,0.0000021620,0.0000021623,0.0000021616, +0.0000021607,0.0000021607,0.0000021626,0.0000021654,0.0000021674, +0.0000021682,0.0000021681,0.0000021675,0.0000021665,0.0000021667, +0.0000021680,0.0000021704,0.0000021730,0.0000021761,0.0000021792, +0.0000021816,0.0000021829,0.0000021831,0.0000021827,0.0000021819, +0.0000021804,0.0000021786,0.0000021770,0.0000021760,0.0000021743, +0.0000021723,0.0000021693,0.0000021662,0.0000021627,0.0000021593, +0.0000021563,0.0000021536,0.0000021508,0.0000021479,0.0000021453, +0.0000021432,0.0000021414,0.0000021396,0.0000021376,0.0000021358, +0.0000021350,0.0000021349,0.0000021349,0.0000021349,0.0000021353, +0.0000021363,0.0000021377,0.0000021389,0.0000021399,0.0000021403, +0.0000021400,0.0000021388,0.0000021374,0.0000021359,0.0000021343, +0.0000021326,0.0000021306,0.0000021287,0.0000021268,0.0000021247, +0.0000021221,0.0000021193,0.0000021172,0.0000021161,0.0000021153, +0.0000021138,0.0000021115,0.0000021085,0.0000021050,0.0000021013, +0.0000020975,0.0000020943,0.0000020923,0.0000020912,0.0000020911, +0.0000020911,0.0000020914,0.0000020915,0.0000020916,0.0000020913, +0.0000020911,0.0000020912,0.0000020921,0.0000020937,0.0000020965, +0.0000021007,0.0000021055,0.0000021107,0.0000021161,0.0000021204, +0.0000021234,0.0000021252,0.0000021264,0.0000021271,0.0000021275, +0.0000021278,0.0000021279,0.0000021281,0.0000021286,0.0000021295, +0.0000021309,0.0000021323,0.0000021336,0.0000021347,0.0000021353, +0.0000021345,0.0000021330,0.0000021302,0.0000021262,0.0000021214, +0.0000021157,0.0000021100,0.0000021051,0.0000021005,0.0000020954, +0.0000020898,0.0000020837,0.0000020773,0.0000020712,0.0000020665, +0.0000020638,0.0000020623,0.0000020635,0.0000020693,0.0000020747, +0.0000020814,0.0000020886,0.0000020948,0.0000021009,0.0000021066, +0.0000021110,0.0000021134,0.0000021153,0.0000021160,0.0000021157, +0.0000021145,0.0000021142,0.0000021149,0.0000021164,0.0000021179, +0.0000021200,0.0000021231,0.0000021260,0.0000021289,0.0000021308, +0.0000021316,0.0000021316,0.0000021308,0.0000021290,0.0000021263, +0.0000021228,0.0000021188,0.0000021147,0.0000021106,0.0000021063, +0.0000021019,0.0000020980,0.0000020942,0.0000020900,0.0000020876, +0.0000020859,0.0000020841,0.0000020840,0.0000020854,0.0000020851, +0.0000020856,0.0000020872,0.0000020880,0.0000020898,0.0000020920, +0.0000020941,0.0000020967,0.0000020993,0.0000021023,0.0000021050, +0.0000021069,0.0000021079,0.0000021088,0.0000021097,0.0000021103, +0.0000021111,0.0000021120,0.0000021129,0.0000021138,0.0000021143, +0.0000021148,0.0000021152,0.0000021154,0.0000021152,0.0000021147, +0.0000021138,0.0000021131,0.0000021130,0.0000021133,0.0000021140, +0.0000021161,0.0000021197,0.0000021227,0.0000021248,0.0000021256, +0.0000021249,0.0000021226,0.0000021183,0.0000021118,0.0000021038, +0.0000020952,0.0000020874,0.0000020802,0.0000020728,0.0000020653, +0.0000020580,0.0000020499,0.0000020410,0.0000020311,0.0000020207, +0.0000020109,0.0000020025,0.0000019955,0.0000019891,0.0000019840, +0.0000019803,0.0000019778,0.0000019757,0.0000019734,0.0000019713, +0.0000019703,0.0000019713,0.0000019744,0.0000019792,0.0000019852, +0.0000019912,0.0000019967,0.0000020025,0.0000020087,0.0000020133, +0.0000020144,0.0000020127,0.0000020085,0.0000020048,0.0000020042, +0.0000020044,0.0000020039,0.0000020013,0.0000019973,0.0000019932, +0.0000019885,0.0000019816,0.0000019753,0.0000019730,0.0000019726, +0.0000019716,0.0000019696,0.0000019665,0.0000019641,0.0000019640, +0.0000019681,0.0000019772,0.0000019871,0.0000019935,0.0000019972, +0.0000020010,0.0000020048,0.0000020078,0.0000020110,0.0000020164, +0.0000020252,0.0000020365,0.0000020482,0.0000020579,0.0000020642, +0.0000020677,0.0000020697,0.0000020711,0.0000020710,0.0000020679, +0.0000020615,0.0000020521,0.0000020428,0.0000020374,0.0000020370, +0.0000020405,0.0000020458,0.0000020505,0.0000020538,0.0000020563, +0.0000020584,0.0000020595,0.0000020595,0.0000020583,0.0000020550, +0.0000020516,0.0000020493,0.0000020470,0.0000020459,0.0000020467, +0.0000020503,0.0000020569,0.0000020649,0.0000020732,0.0000020814, +0.0000020905,0.0000021021,0.0000021175,0.0000021361,0.0000021564, +0.0000021748,0.0000021883,0.0000021960,0.0000021989,0.0000021987, +0.0000021973,0.0000021954,0.0000021935,0.0000021926,0.0000021929, +0.0000021941,0.0000021957,0.0000021972,0.0000021983,0.0000021989, +0.0000021993,0.0000021995,0.0000021994,0.0000021990,0.0000021985, +0.0000021980,0.0000021973,0.0000021963,0.0000021952,0.0000021940, +0.0000021924,0.0000021909,0.0000021896,0.0000021886,0.0000021879, +0.0000021877,0.0000021877,0.0000021877,0.0000021879,0.0000021881, +0.0000021880,0.0000021872,0.0000021857,0.0000021834,0.0000021801, +0.0000021751,0.0000021679,0.0000021591,0.0000021496,0.0000021409, +0.0000021348,0.0000021316,0.0000021295,0.0000021265,0.0000021225, +0.0000021190,0.0000021170,0.0000021149,0.0000021115,0.0000021068, +0.0000021020,0.0000020983,0.0000020948,0.0000020908,0.0000020861, +0.0000020821,0.0000020795,0.0000020783,0.0000020783,0.0000020789, +0.0000020794,0.0000020802,0.0000020809,0.0000020820,0.0000020827, +0.0000020831,0.0000020820,0.0000020787,0.0000020746,0.0000020734, +0.0000020748,0.0000020756,0.0000020758,0.0000020794,0.0000020864, +0.0000020945,0.0000021036,0.0000021101,0.0000021134,0.0000021161, +0.0000021214,0.0000021270,0.0000021280,0.0000021253,0.0000021220, +0.0000021179,0.0000021127,0.0000021109,0.0000021133,0.0000021156, +0.0000021188,0.0000021214,0.0000021205,0.0000021175,0.0000021167, +0.0000021212,0.0000021312,0.0000021429,0.0000021537,0.0000021633, +0.0000021720,0.0000021795,0.0000021851,0.0000021890,0.0000021913, +0.0000021925,0.0000021930,0.0000021931,0.0000021929,0.0000021925, +0.0000021911,0.0000021876,0.0000021818,0.0000021750,0.0000021690, +0.0000021645,0.0000021627,0.0000021631,0.0000021639,0.0000021626, +0.0000021604,0.0000021550,0.0000021485,0.0000021422,0.0000021396, +0.0000021423,0.0000021502,0.0000021631,0.0000021778,0.0000021902, +0.0000021995,0.0000022045,0.0000022049,0.0000022058,0.0000022091, +0.0000022145,0.0000022213,0.0000022305,0.0000022421,0.0000022532, +0.0000022612,0.0000022690,0.0000022762,0.0000022815,0.0000022838, +0.0000022861,0.0000022881,0.0000022904,0.0000022925,0.0000022952, +0.0000022963,0.0000022952,0.0000022899,0.0000022798,0.0000022686, +0.0000022579,0.0000022464,0.0000022347,0.0000022269,0.0000022248, +0.0000022292,0.0000022366,0.0000022433,0.0000022482,0.0000022519, +0.0000022556,0.0000022591,0.0000022614,0.0000022617,0.0000022599, +0.0000022570,0.0000022515,0.0000022451,0.0000022388,0.0000022333, +0.0000022283,0.0000022241,0.0000022206,0.0000022179,0.0000022159, +0.0000022128,0.0000022054,0.0000021927,0.0000021792,0.0000021691, +0.0000021607,0.0000021491,0.0000021349,0.0000021221,0.0000021111, +0.0000020986,0.0000020832,0.0000020679,0.0000020559,0.0000020480, +0.0000020415,0.0000020362,0.0000020317,0.0000020280,0.0000020258, +0.0000020239,0.0000020225,0.0000020230,0.0000020254,0.0000020274, +0.0000020274,0.0000020252,0.0000020217,0.0000020174,0.0000020143, +0.0000020128,0.0000020131,0.0000020131,0.0000020120,0.0000020103, +0.0000020087,0.0000020082,0.0000020091,0.0000020115,0.0000020150, +0.0000020189,0.0000020231,0.0000020271,0.0000020304,0.0000020329, +0.0000020355,0.0000020374,0.0000020382,0.0000020383,0.0000020372, +0.0000020351,0.0000020307,0.0000020242,0.0000020170,0.0000020112, +0.0000020099,0.0000020106,0.0000020136,0.0000020203,0.0000020310, +0.0000020454,0.0000020615,0.0000020755,0.0000020838,0.0000020865, +0.0000020856,0.0000020855,0.0000020865,0.0000020869,0.0000020852, +0.0000020811,0.0000020753,0.0000020679,0.0000020595,0.0000020511, +0.0000020453,0.0000020451,0.0000020487,0.0000020577,0.0000020702, +0.0000020829,0.0000020946,0.0000021038,0.0000021101,0.0000021147, +0.0000021191,0.0000021243,0.0000021308,0.0000021384,0.0000021460, +0.0000021536,0.0000021621,0.0000021717,0.0000021807,0.0000021867, +0.0000021891,0.0000021886,0.0000021868,0.0000021854,0.0000021841, +0.0000021825,0.0000021812,0.0000021802,0.0000021788,0.0000021764, +0.0000021738,0.0000021707,0.0000021680,0.0000021659,0.0000021640, +0.0000021627,0.0000021620,0.0000021620,0.0000021622,0.0000021624, +0.0000021626,0.0000021629,0.0000021627,0.0000021625,0.0000021620, +0.0000021614,0.0000021611,0.0000021605,0.0000021583,0.0000021547, +0.0000021499,0.0000021443,0.0000021384,0.0000021331,0.0000021279, +0.0000021223,0.0000021161,0.0000021097,0.0000021038,0.0000020991, +0.0000020953,0.0000020935,0.0000020939,0.0000020953,0.0000020967, +0.0000020976,0.0000020977,0.0000020966,0.0000020943,0.0000020907, +0.0000020872,0.0000020840,0.0000020818,0.0000020807,0.0000020805, +0.0000020807,0.0000020815,0.0000020833,0.0000020865,0.0000020906, +0.0000020942,0.0000020968,0.0000020977,0.0000020970,0.0000020946, +0.0000020917,0.0000020884,0.0000020849,0.0000020822,0.0000020804, +0.0000020791,0.0000020784,0.0000020772,0.0000020753,0.0000020727, +0.0000020698,0.0000020667,0.0000020638,0.0000020616,0.0000020602, +0.0000020597,0.0000020598,0.0000020600,0.0000020597,0.0000020584, +0.0000020560,0.0000020535,0.0000020511,0.0000020490,0.0000020475, +0.0000020469,0.0000020474,0.0000020491,0.0000020517,0.0000020542, +0.0000020565,0.0000020587,0.0000020607,0.0000020619,0.0000020629, +0.0000020640,0.0000020656,0.0000020680,0.0000020707,0.0000020730, +0.0000020747,0.0000020755,0.0000020756,0.0000020759,0.0000020759, +0.0000020749,0.0000020730,0.0000020708,0.0000020689,0.0000020670, +0.0000020650,0.0000020631,0.0000020609,0.0000020578,0.0000020544, +0.0000020515,0.0000020500,0.0000020494,0.0000020494,0.0000020496, +0.0000020497,0.0000020503,0.0000020513,0.0000020524,0.0000020532, +0.0000020535,0.0000020533,0.0000020528,0.0000020518,0.0000020503, +0.0000020481,0.0000020451,0.0000020414,0.0000020371,0.0000020325, +0.0000020283,0.0000020248,0.0000020223,0.0000020206,0.0000020193, +0.0000020177,0.0000020156,0.0000020129,0.0000020097,0.0000020064, +0.0000020034,0.0000020002,0.0000019968,0.0000019932,0.0000019896, +0.0000019864,0.0000019838,0.0000019821,0.0000019812,0.0000019810, +0.0000019813,0.0000019820,0.0000019829,0.0000019840,0.0000019853, +0.0000019861,0.0000019864,0.0000019866,0.0000019871,0.0000019881, +0.0000019891,0.0000019897,0.0000019901,0.0000019900,0.0000019892, +0.0000019878,0.0000019861,0.0000019847,0.0000019837,0.0000019832, +0.0000019822,0.0000019807,0.0000019787,0.0000019766,0.0000019743, +0.0000019719,0.0000019691,0.0000019660,0.0000019632,0.0000019611, +0.0000019603,0.0000019607,0.0000019624,0.0000019649,0.0000019683, +0.0000019724,0.0000019768,0.0000019811,0.0000019852,0.0000019884, +0.0000019907,0.0000019920,0.0000019923,0.0000019915,0.0000019897, +0.0000019876,0.0000019858,0.0000019847,0.0000019842,0.0000019840, +0.0000019838,0.0000019833,0.0000019827,0.0000019817,0.0000019805, +0.0000019793,0.0000019783,0.0000019773,0.0000019764,0.0000019755, +0.0000019752,0.0000019751,0.0000019747,0.0000019742,0.0000019737, +0.0000019734,0.0000019728,0.0000019717,0.0000019709,0.0000019704, +0.0000019701,0.0000019703,0.0000019714,0.0000019732,0.0000019760, +0.0000019793,0.0000019812,0.0000019802,0.0000019759,0.0000019704, +0.0000019641,0.0000019628,0.0000019726,0.0000019884,0.0000020076, +0.0000020233,0.0000020237,0.0000020258,0.0000020384,0.0000020470, +0.0000020505,0.0000020512,0.0000020471,0.0000020379,0.0000020309, +0.0000020296,0.0000020310,0.0000020327,0.0000020339,0.0000020344, +0.0000020346,0.0000020345,0.0000020340,0.0000020326,0.0000020306, +0.0000020286,0.0000020255,0.0000020222,0.0000020219,0.0000020255, +0.0000020298,0.0000020324,0.0000020309,0.0000020242,0.0000020168, +0.0000020126,0.0000020111,0.0000020123,0.0000020174,0.0000020226, +0.0000020244,0.0000020246,0.0000020242,0.0000020232,0.0000020216, +0.0000020208,0.0000020224,0.0000020263,0.0000020313,0.0000020370, +0.0000020418,0.0000020427,0.0000020400,0.0000020353,0.0000020326, +0.0000020321,0.0000020326,0.0000020334,0.0000020333,0.0000020321, +0.0000020306,0.0000020295,0.0000020286,0.0000020278,0.0000020274, +0.0000020270,0.0000020267,0.0000020266,0.0000020264,0.0000020263, +0.0000020267,0.0000020271,0.0000020273,0.0000020271,0.0000020267, +0.0000020256,0.0000020237,0.0000020213,0.0000020186,0.0000020158, +0.0000020128,0.0000020101,0.0000020079,0.0000020064,0.0000020052, +0.0000020043,0.0000020038,0.0000020033,0.0000020027,0.0000020022, +0.0000020017,0.0000020014,0.0000020017,0.0000020024,0.0000020034, +0.0000020046,0.0000020063,0.0000020083,0.0000020105,0.0000020126, +0.0000020144,0.0000020156,0.0000020163,0.0000020165,0.0000020162, +0.0000020157,0.0000020148,0.0000020138,0.0000020128,0.0000020119, +0.0000020111,0.0000020104,0.0000020096,0.0000020092,0.0000020088, +0.0000020081,0.0000020072,0.0000020060,0.0000020045,0.0000020028, +0.0000020009,0.0000019987,0.0000019965,0.0000019946,0.0000019931, +0.0000019924,0.0000019932,0.0000019944,0.0000019949,0.0000019984, +0.0000020026,0.0000020070,0.0000020110,0.0000020143,0.0000020168, +0.0000020183,0.0000020191,0.0000020191,0.0000020185,0.0000020170, +0.0000020156,0.0000020147,0.0000020136,0.0000020124,0.0000020112, +0.0000020096,0.0000020077,0.0000020051,0.0000020022,0.0000019994, +0.0000019961,0.0000019918,0.0000019862,0.0000019802,0.0000019761, +0.0000019745,0.0000019745,0.0000019747,0.0000019735,0.0000019700, +0.0000019649,0.0000019604,0.0000019570,0.0000019557,0.0000019562, +0.0000019577,0.0000019599,0.0000019634,0.0000019669,0.0000019688, +0.0000019688,0.0000019681,0.0000019687,0.0000019709,0.0000019739, +0.0000019695,0.0000019727,0.0000019755,0.0000019778,0.0000019801, +0.0000019826,0.0000019849,0.0000019870,0.0000019902,0.0000019952, +0.0000020015,0.0000020084,0.0000020150,0.0000020213,0.0000020277, +0.0000020337,0.0000020395,0.0000020448,0.0000020495,0.0000020540, +0.0000020586,0.0000020636,0.0000020688,0.0000020742,0.0000020796, +0.0000020845,0.0000020892,0.0000020940,0.0000020987,0.0000021034, +0.0000021081,0.0000021125,0.0000021160,0.0000021184,0.0000021198, +0.0000021205,0.0000021205,0.0000021195,0.0000021174,0.0000021143, +0.0000021105,0.0000021066,0.0000021033,0.0000021010,0.0000020994, +0.0000020986,0.0000020987,0.0000020994,0.0000021009,0.0000021028, +0.0000021044,0.0000021050,0.0000021045,0.0000021031,0.0000021008, +0.0000020975,0.0000020939,0.0000020903,0.0000020871,0.0000020837, +0.0000020801,0.0000020762,0.0000020726,0.0000020692,0.0000020659, +0.0000020624,0.0000020589,0.0000020562,0.0000020547,0.0000020535, +0.0000020509,0.0000020478,0.0000020461,0.0000020465,0.0000020492, +0.0000020528,0.0000020562,0.0000020598,0.0000020637,0.0000020674, +0.0000020714,0.0000020761,0.0000020807,0.0000020844,0.0000020875, +0.0000020900,0.0000020914,0.0000020915,0.0000020904,0.0000020884, +0.0000020856,0.0000020827,0.0000020805,0.0000020798,0.0000020804, +0.0000020834,0.0000020880,0.0000020928,0.0000020971,0.0000021009, +0.0000021045,0.0000021087,0.0000021137,0.0000021189,0.0000021234, +0.0000021271,0.0000021299,0.0000021318,0.0000021331,0.0000021340, +0.0000021345,0.0000021344,0.0000021340,0.0000021332,0.0000021318, +0.0000021299,0.0000021280,0.0000021260,0.0000021240,0.0000021219, +0.0000021198,0.0000021179,0.0000021163,0.0000021146,0.0000021129, +0.0000021110,0.0000021092,0.0000021074,0.0000021054,0.0000021032, +0.0000021013,0.0000020992,0.0000020973,0.0000020954,0.0000020932, +0.0000020906,0.0000020878,0.0000020851,0.0000020821,0.0000020794, +0.0000020775,0.0000020769,0.0000020772,0.0000020784,0.0000020799, +0.0000020819,0.0000020836,0.0000020853,0.0000020873,0.0000020899, +0.0000020924,0.0000020945,0.0000020967,0.0000020991,0.0000021015, +0.0000021046,0.0000021083,0.0000021112,0.0000021124,0.0000021122, +0.0000021115,0.0000021111,0.0000021115,0.0000021117,0.0000021106, +0.0000021080,0.0000021053,0.0000021026,0.0000021012,0.0000021028, +0.0000021093,0.0000021174,0.0000021248,0.0000021314,0.0000021364, +0.0000021395,0.0000021415,0.0000021434,0.0000021451,0.0000021459, +0.0000021446,0.0000021404,0.0000021348,0.0000021297,0.0000021260, +0.0000021230,0.0000021203,0.0000021186,0.0000021184,0.0000021189, +0.0000021191,0.0000021190,0.0000021189,0.0000021189,0.0000021190, +0.0000021184,0.0000021172,0.0000021159,0.0000021148,0.0000021142, +0.0000021140,0.0000021146,0.0000021164,0.0000021200,0.0000021249, +0.0000021294,0.0000021331,0.0000021374,0.0000021428,0.0000021475, +0.0000021504,0.0000021532,0.0000021592,0.0000021675,0.0000021752, +0.0000021810,0.0000021868,0.0000021934,0.0000021994,0.0000022032, +0.0000022041,0.0000022028,0.0000021997,0.0000021939,0.0000021871, +0.0000021801,0.0000021738,0.0000021681,0.0000021638,0.0000021604, +0.0000021581,0.0000021560,0.0000021543,0.0000021534,0.0000021530, +0.0000021531,0.0000021533,0.0000021532,0.0000021529,0.0000021527, +0.0000021528,0.0000021529,0.0000021536,0.0000021545,0.0000021555, +0.0000021564,0.0000021574,0.0000021585,0.0000021596,0.0000021608, +0.0000021621,0.0000021633,0.0000021643,0.0000021649,0.0000021649, +0.0000021647,0.0000021645,0.0000021640,0.0000021630,0.0000021620, +0.0000021610,0.0000021596,0.0000021577,0.0000021556,0.0000021531, +0.0000021507,0.0000021487,0.0000021473,0.0000021472,0.0000021484, +0.0000021505,0.0000021528,0.0000021548,0.0000021560,0.0000021547, +0.0000021535,0.0000021492,0.0000021449,0.0000021413,0.0000021377, +0.0000021339,0.0000021297,0.0000021262,0.0000021242,0.0000021234, +0.0000021236,0.0000021245,0.0000021256,0.0000021278,0.0000021310, +0.0000021342,0.0000021359,0.0000021358,0.0000021337,0.0000021291, +0.0000021238,0.0000021192,0.0000021158,0.0000021136,0.0000021110, +0.0000021076,0.0000021045,0.0000021017,0.0000020988,0.0000020967, +0.0000020960,0.0000020966,0.0000020977,0.0000020988,0.0000020998, +0.0000021008,0.0000021016,0.0000021032,0.0000021073,0.0000021130, +0.0000021192,0.0000021243,0.0000021285,0.0000021315,0.0000021333, +0.0000021342,0.0000021344,0.0000021341,0.0000021321,0.0000021292, +0.0000021253,0.0000021203,0.0000021151,0.0000021099,0.0000021055, +0.0000021029,0.0000021013,0.0000021003,0.0000021000,0.0000021001, +0.0000021004,0.0000021012,0.0000021030,0.0000021046,0.0000021053, +0.0000021056,0.0000021055,0.0000021046,0.0000021025,0.0000020989, +0.0000020938,0.0000020874,0.0000020813,0.0000020723,0.0000020624, +0.0000020568,0.0000020513,0.0000020430,0.0000020321,0.0000020324, +0.0000020387,0.0000020395,0.0000020427,0.0000020499,0.0000020557, +0.0000020571,0.0000020563,0.0000020579,0.0000020635,0.0000020698, +0.0000020751,0.0000020778,0.0000020793,0.0000020828,0.0000020933, +0.0000021081,0.0000021174,0.0000021229,0.0000021401,0.0000021508, +0.0000021496,0.0000021546,0.0000021639,0.0000021621,0.0000021591, +0.0000021649,0.0000021760,0.0000021776,0.0000021724,0.0000021769, +0.0000021961,0.0000022014,0.0000021922,0.0000021781,0.0000021748, +0.0000021760,0.0000021767,0.0000021883,0.0000021930,0.0000021919, +0.0000022024,0.0000022088,0.0000022092,0.0000022184,0.0000022337, +0.0000022430,0.0000022481,0.0000022521,0.0000022542,0.0000022542, +0.0000022528,0.0000022504,0.0000022475,0.0000022474,0.0000022503, +0.0000022537,0.0000022553,0.0000022548,0.0000022546,0.0000022553, +0.0000022551,0.0000022518,0.0000022444,0.0000022359,0.0000022294, +0.0000022278,0.0000022286,0.0000022291,0.0000022278,0.0000022247, +0.0000022204,0.0000022166,0.0000022128,0.0000022101,0.0000022073, +0.0000022028,0.0000021971,0.0000021911,0.0000021843,0.0000021761, +0.0000021672,0.0000021597,0.0000021537,0.0000021492,0.0000021453, +0.0000021400,0.0000021338,0.0000021289,0.0000021278,0.0000021272, +0.0000021263,0.0000021280,0.0000021348,0.0000021494,0.0000021682, +0.0000021830,0.0000021910,0.0000021934,0.0000021934,0.0000021933, +0.0000021951,0.0000021968,0.0000021938,0.0000021874,0.0000021826, +0.0000021806,0.0000021783,0.0000021745,0.0000021694,0.0000021646, +0.0000021620,0.0000021613,0.0000021615,0.0000021613,0.0000021603, +0.0000021581,0.0000021572,0.0000021605,0.0000021687,0.0000021765, +0.0000021788,0.0000021794,0.0000021826,0.0000021870,0.0000021901, +0.0000021933,0.0000021966,0.0000022000,0.0000022034,0.0000022067, +0.0000022093,0.0000022106,0.0000022117,0.0000022117,0.0000022107, +0.0000022085,0.0000022070,0.0000022064,0.0000022068,0.0000022100, +0.0000022151,0.0000022194,0.0000022231,0.0000022265,0.0000022303, +0.0000022332,0.0000022353,0.0000022377,0.0000022415,0.0000022456, +0.0000022491,0.0000022517,0.0000022536,0.0000022540,0.0000022529, +0.0000022528,0.0000022516,0.0000022482,0.0000022441,0.0000022409, +0.0000022388,0.0000022367,0.0000022346,0.0000022308,0.0000022269, +0.0000022243,0.0000022225,0.0000022223,0.0000022234,0.0000022255, +0.0000022273,0.0000022289,0.0000022308,0.0000022339,0.0000022375, +0.0000022400,0.0000022409,0.0000022410,0.0000022420,0.0000022440, +0.0000022464,0.0000022476,0.0000022468,0.0000022437,0.0000022399, +0.0000022362,0.0000022331,0.0000022306,0.0000022285,0.0000022271, +0.0000022263,0.0000022248,0.0000022212,0.0000022150,0.0000022070, +0.0000021981,0.0000021888,0.0000021805,0.0000021746,0.0000021697, +0.0000021653,0.0000021617,0.0000021595,0.0000021587,0.0000021598, +0.0000021621,0.0000021656,0.0000021709,0.0000021765,0.0000021812, +0.0000021850,0.0000021883,0.0000021910,0.0000021935,0.0000021953, +0.0000021962,0.0000021965,0.0000021968,0.0000021974,0.0000021981, +0.0000021985,0.0000021986,0.0000021978,0.0000021964,0.0000021942, +0.0000021914,0.0000021881,0.0000021849,0.0000021817,0.0000021791, +0.0000021770,0.0000021746,0.0000021715,0.0000021672,0.0000021619, +0.0000021560,0.0000021507,0.0000021471,0.0000021455,0.0000021461, +0.0000021483,0.0000021523,0.0000021568,0.0000021616,0.0000021658, +0.0000021688,0.0000021702,0.0000021700,0.0000021694,0.0000021692, +0.0000021704,0.0000021726,0.0000021753,0.0000021770,0.0000021765, +0.0000021743,0.0000021712,0.0000021688,0.0000021686,0.0000021677, +0.0000021695,0.0000021710,0.0000021731,0.0000021743,0.0000021757, +0.0000021760,0.0000021759,0.0000021754,0.0000021745,0.0000021737, +0.0000021733,0.0000021730,0.0000021718,0.0000021696,0.0000021675, +0.0000021647,0.0000021622,0.0000021597,0.0000021576,0.0000021552, +0.0000021528,0.0000021505,0.0000021486,0.0000021470,0.0000021454, +0.0000021435,0.0000021419,0.0000021411,0.0000021407,0.0000021407, +0.0000021408,0.0000021409,0.0000021412,0.0000021418,0.0000021427, +0.0000021433,0.0000021433,0.0000021425,0.0000021409,0.0000021391, +0.0000021374,0.0000021357,0.0000021341,0.0000021323,0.0000021301, +0.0000021278,0.0000021255,0.0000021232,0.0000021209,0.0000021191, +0.0000021181,0.0000021178,0.0000021173,0.0000021160,0.0000021136, +0.0000021102,0.0000021063,0.0000021023,0.0000020986,0.0000020950, +0.0000020923,0.0000020903,0.0000020896,0.0000020884,0.0000020881, +0.0000020872,0.0000020865,0.0000020858,0.0000020856,0.0000020859, +0.0000020867,0.0000020883,0.0000020912,0.0000020945,0.0000020982, +0.0000021020,0.0000021053,0.0000021080,0.0000021103,0.0000021124, +0.0000021146,0.0000021169,0.0000021191,0.0000021210,0.0000021228, +0.0000021245,0.0000021258,0.0000021269,0.0000021280,0.0000021293, +0.0000021306,0.0000021315,0.0000021320,0.0000021315,0.0000021300, +0.0000021276,0.0000021245,0.0000021217,0.0000021183,0.0000021156, +0.0000021135,0.0000021103,0.0000021062,0.0000021014,0.0000020958, +0.0000020902,0.0000020838,0.0000020770,0.0000020701,0.0000020644, +0.0000020615,0.0000020606,0.0000020606,0.0000020615,0.0000020663, +0.0000020730,0.0000020809,0.0000020901,0.0000020977,0.0000021035, +0.0000021085,0.0000021121,0.0000021131,0.0000021131,0.0000021122, +0.0000021110,0.0000021103,0.0000021089,0.0000021097,0.0000021096, +0.0000021097,0.0000021092,0.0000021083,0.0000021075,0.0000021062, +0.0000021044,0.0000021019,0.0000020991,0.0000020963,0.0000020941, +0.0000020931,0.0000020913,0.0000020886,0.0000020870,0.0000020863, +0.0000020843,0.0000020842,0.0000020851,0.0000020860,0.0000020878, +0.0000020897,0.0000020921,0.0000020948,0.0000020972,0.0000020988, +0.0000021010,0.0000021026,0.0000021041,0.0000021062,0.0000021067, +0.0000021075,0.0000021101,0.0000021116,0.0000021115,0.0000021113, +0.0000021114,0.0000021115,0.0000021117,0.0000021118,0.0000021121, +0.0000021124,0.0000021126,0.0000021129,0.0000021132,0.0000021131, +0.0000021125,0.0000021114,0.0000021099,0.0000021085,0.0000021080, +0.0000021078,0.0000021080,0.0000021089,0.0000021102,0.0000021115, +0.0000021116,0.0000021102,0.0000021072,0.0000021028,0.0000020973, +0.0000020905,0.0000020832,0.0000020759,0.0000020695,0.0000020636, +0.0000020578,0.0000020521,0.0000020458,0.0000020385,0.0000020301, +0.0000020210,0.0000020118,0.0000020031,0.0000019960,0.0000019908, +0.0000019862,0.0000019827,0.0000019799,0.0000019776,0.0000019756, +0.0000019734,0.0000019712,0.0000019696,0.0000019689,0.0000019700, +0.0000019729,0.0000019775,0.0000019829,0.0000019883,0.0000019939, +0.0000020003,0.0000020060,0.0000020090,0.0000020089,0.0000020055, +0.0000020003,0.0000019977,0.0000019979,0.0000019982,0.0000019969, +0.0000019938,0.0000019895,0.0000019853,0.0000019800,0.0000019738, +0.0000019708,0.0000019709,0.0000019707,0.0000019701,0.0000019681, +0.0000019644,0.0000019619,0.0000019618,0.0000019657,0.0000019736, +0.0000019824,0.0000019894,0.0000019944,0.0000019977,0.0000019992, +0.0000020000,0.0000020020,0.0000020067,0.0000020147,0.0000020252, +0.0000020366,0.0000020463,0.0000020536,0.0000020591,0.0000020635, +0.0000020669,0.0000020680,0.0000020657,0.0000020616,0.0000020543, +0.0000020451,0.0000020378,0.0000020349,0.0000020359,0.0000020405, +0.0000020468,0.0000020529,0.0000020589,0.0000020634,0.0000020663, +0.0000020667,0.0000020650,0.0000020611,0.0000020559,0.0000020502, +0.0000020449,0.0000020415,0.0000020387,0.0000020402,0.0000020453, +0.0000020525,0.0000020608,0.0000020685,0.0000020754,0.0000020822, +0.0000020909,0.0000021039,0.0000021219,0.0000021424,0.0000021617, +0.0000021764,0.0000021853,0.0000021896,0.0000021906,0.0000021896, +0.0000021876,0.0000021857,0.0000021844,0.0000021838,0.0000021839, +0.0000021844,0.0000021850,0.0000021856,0.0000021864,0.0000021867, +0.0000021867,0.0000021863,0.0000021858,0.0000021849,0.0000021839, +0.0000021825,0.0000021807,0.0000021786,0.0000021764,0.0000021743, +0.0000021725,0.0000021709,0.0000021695,0.0000021684,0.0000021674, +0.0000021662,0.0000021649,0.0000021633,0.0000021611,0.0000021582, +0.0000021540,0.0000021489,0.0000021429,0.0000021365,0.0000021306, +0.0000021257,0.0000021224,0.0000021203,0.0000021186,0.0000021165, +0.0000021140,0.0000021120,0.0000021107,0.0000021094,0.0000021066, +0.0000021027,0.0000020989,0.0000020962,0.0000020943,0.0000020918, +0.0000020877,0.0000020829,0.0000020793,0.0000020772,0.0000020760, +0.0000020751,0.0000020748,0.0000020753,0.0000020763,0.0000020778, +0.0000020794,0.0000020809,0.0000020817,0.0000020822,0.0000020815, +0.0000020779,0.0000020722,0.0000020687,0.0000020693,0.0000020708, +0.0000020711,0.0000020739,0.0000020814,0.0000020905,0.0000021008, +0.0000021086,0.0000021132,0.0000021165,0.0000021220,0.0000021282, +0.0000021289,0.0000021267,0.0000021242,0.0000021204,0.0000021152, +0.0000021132,0.0000021144,0.0000021156,0.0000021178,0.0000021193, +0.0000021179,0.0000021150,0.0000021140,0.0000021172,0.0000021255, +0.0000021363,0.0000021470,0.0000021563,0.0000021644,0.0000021716, +0.0000021771,0.0000021808,0.0000021830,0.0000021840,0.0000021842, +0.0000021841,0.0000021842,0.0000021844,0.0000021842,0.0000021825, +0.0000021786,0.0000021728,0.0000021665,0.0000021608,0.0000021566, +0.0000021547,0.0000021553,0.0000021570,0.0000021580,0.0000021562, +0.0000021541,0.0000021492,0.0000021435,0.0000021388,0.0000021368, +0.0000021405,0.0000021488,0.0000021611,0.0000021756,0.0000021886, +0.0000021967,0.0000022018,0.0000022032,0.0000022021,0.0000022031, +0.0000022049,0.0000022089,0.0000022160,0.0000022242,0.0000022332, +0.0000022441,0.0000022555,0.0000022654,0.0000022728,0.0000022799, +0.0000022851,0.0000022894,0.0000022927,0.0000022939,0.0000022929, +0.0000022878,0.0000022776,0.0000022671,0.0000022567,0.0000022471, +0.0000022360,0.0000022256,0.0000022181,0.0000022177,0.0000022231, +0.0000022312,0.0000022383,0.0000022430,0.0000022464,0.0000022501, +0.0000022536,0.0000022564,0.0000022576,0.0000022567,0.0000022538, +0.0000022492,0.0000022436,0.0000022377,0.0000022323,0.0000022280, +0.0000022250,0.0000022226,0.0000022208,0.0000022195,0.0000022167, +0.0000022089,0.0000021956,0.0000021817,0.0000021713,0.0000021616, +0.0000021483,0.0000021328,0.0000021189,0.0000021060,0.0000020907, +0.0000020735,0.0000020580,0.0000020469,0.0000020395,0.0000020336, +0.0000020287,0.0000020243,0.0000020215,0.0000020198,0.0000020180, +0.0000020168,0.0000020178,0.0000020206,0.0000020230,0.0000020234, +0.0000020214,0.0000020180,0.0000020136,0.0000020095,0.0000020078, +0.0000020078,0.0000020087,0.0000020089,0.0000020079,0.0000020063, +0.0000020047,0.0000020042,0.0000020053,0.0000020076,0.0000020110, +0.0000020152,0.0000020195,0.0000020230,0.0000020262,0.0000020293, +0.0000020320,0.0000020341,0.0000020346,0.0000020342,0.0000020322, +0.0000020296,0.0000020243,0.0000020177,0.0000020124,0.0000020099, +0.0000020092,0.0000020110,0.0000020157,0.0000020245,0.0000020374, +0.0000020533,0.0000020686,0.0000020797,0.0000020840,0.0000020841, +0.0000020831,0.0000020833,0.0000020838,0.0000020827,0.0000020801, +0.0000020753,0.0000020692,0.0000020616,0.0000020538,0.0000020484, +0.0000020464,0.0000020490,0.0000020562,0.0000020664,0.0000020780, +0.0000020891,0.0000020986,0.0000021060,0.0000021118,0.0000021165, +0.0000021213,0.0000021273,0.0000021345,0.0000021416,0.0000021484, +0.0000021551,0.0000021630,0.0000021712,0.0000021781,0.0000021820, +0.0000021827,0.0000021812,0.0000021788,0.0000021765,0.0000021751, +0.0000021746,0.0000021743,0.0000021741,0.0000021740,0.0000021725, +0.0000021711,0.0000021695,0.0000021677,0.0000021659,0.0000021648, +0.0000021643,0.0000021641,0.0000021641,0.0000021641,0.0000021638, +0.0000021634,0.0000021630,0.0000021623,0.0000021615,0.0000021611, +0.0000021606,0.0000021591,0.0000021564,0.0000021526,0.0000021478, +0.0000021427,0.0000021375,0.0000021321,0.0000021262,0.0000021201, +0.0000021138,0.0000021076,0.0000021024,0.0000020981,0.0000020953, +0.0000020948,0.0000020958,0.0000020973,0.0000020984,0.0000020989, +0.0000020983,0.0000020966,0.0000020933,0.0000020891,0.0000020852, +0.0000020822,0.0000020805,0.0000020803,0.0000020806,0.0000020809, +0.0000020813,0.0000020827,0.0000020859,0.0000020900,0.0000020936, +0.0000020959,0.0000020965,0.0000020953,0.0000020925,0.0000020892, +0.0000020856,0.0000020821,0.0000020793,0.0000020771,0.0000020760, +0.0000020757,0.0000020751,0.0000020740,0.0000020723,0.0000020700, +0.0000020670,0.0000020638,0.0000020604,0.0000020576,0.0000020556, +0.0000020546,0.0000020545,0.0000020545,0.0000020537,0.0000020521, +0.0000020500,0.0000020477,0.0000020456,0.0000020442,0.0000020435, +0.0000020437,0.0000020450,0.0000020472,0.0000020496,0.0000020519, +0.0000020542,0.0000020561,0.0000020582,0.0000020603,0.0000020620, +0.0000020641,0.0000020666,0.0000020693,0.0000020716,0.0000020730, +0.0000020736,0.0000020737,0.0000020736,0.0000020730,0.0000020716, +0.0000020693,0.0000020664,0.0000020640,0.0000020619,0.0000020600, +0.0000020579,0.0000020554,0.0000020525,0.0000020498,0.0000020480, +0.0000020468,0.0000020457,0.0000020447,0.0000020438,0.0000020433, +0.0000020433,0.0000020435,0.0000020438,0.0000020438,0.0000020434, +0.0000020426,0.0000020412,0.0000020395,0.0000020369,0.0000020336, +0.0000020299,0.0000020260,0.0000020217,0.0000020174,0.0000020138, +0.0000020113,0.0000020097,0.0000020090,0.0000020087,0.0000020084, +0.0000020075,0.0000020057,0.0000020033,0.0000020008,0.0000019982, +0.0000019954,0.0000019920,0.0000019882,0.0000019843,0.0000019807, +0.0000019775,0.0000019753,0.0000019744,0.0000019742,0.0000019748, +0.0000019757,0.0000019771,0.0000019791,0.0000019814,0.0000019833, +0.0000019845,0.0000019851,0.0000019853,0.0000019856,0.0000019859, +0.0000019859,0.0000019857,0.0000019853,0.0000019846,0.0000019835, +0.0000019821,0.0000019808,0.0000019801,0.0000019796,0.0000019788, +0.0000019776,0.0000019762,0.0000019745,0.0000019725,0.0000019702, +0.0000019676,0.0000019647,0.0000019619,0.0000019599,0.0000019588, +0.0000019585,0.0000019590,0.0000019600,0.0000019614,0.0000019635, +0.0000019660,0.0000019688,0.0000019716,0.0000019739,0.0000019753, +0.0000019759,0.0000019757,0.0000019746,0.0000019730,0.0000019716, +0.0000019709,0.0000019714,0.0000019729,0.0000019749,0.0000019766, +0.0000019775,0.0000019775,0.0000019769,0.0000019760,0.0000019749, +0.0000019739,0.0000019731,0.0000019720,0.0000019709,0.0000019704, +0.0000019702,0.0000019700,0.0000019697,0.0000019693,0.0000019689, +0.0000019685,0.0000019681,0.0000019680,0.0000019682,0.0000019685, +0.0000019689,0.0000019700,0.0000019718,0.0000019742,0.0000019771, +0.0000019799,0.0000019805,0.0000019777,0.0000019724,0.0000019661, +0.0000019627,0.0000019680,0.0000019825,0.0000019999,0.0000020193, +0.0000020245,0.0000020242,0.0000020334,0.0000020450,0.0000020496, +0.0000020514,0.0000020500,0.0000020429,0.0000020351,0.0000020319, +0.0000020324,0.0000020339,0.0000020353,0.0000020361,0.0000020367, +0.0000020372,0.0000020375,0.0000020365,0.0000020339,0.0000020313, +0.0000020286,0.0000020245,0.0000020218,0.0000020227,0.0000020268, +0.0000020308,0.0000020314,0.0000020263,0.0000020182,0.0000020133, +0.0000020119,0.0000020121,0.0000020152,0.0000020198,0.0000020223, +0.0000020232,0.0000020233,0.0000020227,0.0000020209,0.0000020198, +0.0000020216,0.0000020259,0.0000020311,0.0000020368,0.0000020413, +0.0000020420,0.0000020390,0.0000020343,0.0000020324,0.0000020326, +0.0000020338,0.0000020347,0.0000020341,0.0000020326,0.0000020312, +0.0000020298,0.0000020286,0.0000020274,0.0000020264,0.0000020265, +0.0000020265,0.0000020268,0.0000020269,0.0000020270,0.0000020272, +0.0000020278,0.0000020288,0.0000020296,0.0000020297,0.0000020293, +0.0000020283,0.0000020269,0.0000020250,0.0000020225,0.0000020198, +0.0000020175,0.0000020159,0.0000020147,0.0000020137,0.0000020130, +0.0000020123,0.0000020115,0.0000020108,0.0000020100,0.0000020090, +0.0000020081,0.0000020076,0.0000020077,0.0000020080,0.0000020085, +0.0000020093,0.0000020104,0.0000020117,0.0000020131,0.0000020143, +0.0000020152,0.0000020157,0.0000020158,0.0000020156,0.0000020151, +0.0000020143,0.0000020135,0.0000020127,0.0000020120,0.0000020111, +0.0000020102,0.0000020095,0.0000020092,0.0000020092,0.0000020093, +0.0000020093,0.0000020092,0.0000020088,0.0000020084,0.0000020081, +0.0000020075,0.0000020064,0.0000020046,0.0000020025,0.0000020003, +0.0000019983,0.0000019966,0.0000019951,0.0000019940,0.0000019937, +0.0000019947,0.0000019957,0.0000019975,0.0000020008,0.0000020044, +0.0000020077,0.0000020106,0.0000020128,0.0000020142,0.0000020148, +0.0000020147,0.0000020140,0.0000020126,0.0000020111,0.0000020097, +0.0000020080,0.0000020061,0.0000020037,0.0000020007,0.0000019971, +0.0000019935,0.0000019897,0.0000019855,0.0000019805,0.0000019756, +0.0000019723,0.0000019713,0.0000019713,0.0000019709,0.0000019689, +0.0000019649,0.0000019593,0.0000019540,0.0000019496,0.0000019475, +0.0000019473,0.0000019488,0.0000019513,0.0000019554,0.0000019603, +0.0000019634,0.0000019645,0.0000019652,0.0000019668,0.0000019647, +0.0000019660,0.0000019680,0.0000019706,0.0000019730,0.0000019748, +0.0000019765,0.0000019787,0.0000019819,0.0000019865,0.0000019917, +0.0000019972,0.0000020033,0.0000020094,0.0000020161,0.0000020225, +0.0000020284,0.0000020340,0.0000020388,0.0000020429,0.0000020465, +0.0000020499,0.0000020533,0.0000020568,0.0000020605,0.0000020643, +0.0000020681,0.0000020723,0.0000020769,0.0000020816,0.0000020865, +0.0000020912,0.0000020954,0.0000020992,0.0000021019,0.0000021041, +0.0000021057,0.0000021063,0.0000021058,0.0000021042,0.0000021019, +0.0000020990,0.0000020961,0.0000020936,0.0000020917,0.0000020904, +0.0000020902,0.0000020904,0.0000020913,0.0000020929,0.0000020942, +0.0000020945,0.0000020939,0.0000020922,0.0000020897,0.0000020865, +0.0000020831,0.0000020794,0.0000020759,0.0000020731,0.0000020703, +0.0000020675,0.0000020649,0.0000020622,0.0000020599,0.0000020575, +0.0000020547,0.0000020516,0.0000020495,0.0000020484,0.0000020469, +0.0000020441,0.0000020416,0.0000020410,0.0000020428,0.0000020461, +0.0000020497,0.0000020534,0.0000020574,0.0000020610,0.0000020643, +0.0000020680,0.0000020722,0.0000020767,0.0000020810,0.0000020845, +0.0000020871,0.0000020890,0.0000020898,0.0000020895,0.0000020878, +0.0000020851,0.0000020818,0.0000020793,0.0000020783,0.0000020784, +0.0000020804,0.0000020839,0.0000020879,0.0000020919,0.0000020957, +0.0000020991,0.0000021027,0.0000021073,0.0000021126,0.0000021179, +0.0000021227,0.0000021263,0.0000021290,0.0000021309,0.0000021324, +0.0000021335,0.0000021340,0.0000021337,0.0000021328,0.0000021313, +0.0000021292,0.0000021270,0.0000021248,0.0000021228,0.0000021207, +0.0000021185,0.0000021162,0.0000021139,0.0000021118,0.0000021097, +0.0000021077,0.0000021059,0.0000021044,0.0000021032,0.0000021021, +0.0000021010,0.0000020996,0.0000020983,0.0000020961,0.0000020937, +0.0000020912,0.0000020890,0.0000020869,0.0000020845,0.0000020820, +0.0000020799,0.0000020785,0.0000020780,0.0000020782,0.0000020790, +0.0000020801,0.0000020814,0.0000020827,0.0000020845,0.0000020866, +0.0000020887,0.0000020910,0.0000020940,0.0000020969,0.0000020996, +0.0000021031,0.0000021073,0.0000021106,0.0000021119,0.0000021117, +0.0000021106,0.0000021092,0.0000021085,0.0000021085,0.0000021082, +0.0000021066,0.0000021039,0.0000021014,0.0000020995,0.0000020998, +0.0000021046,0.0000021134,0.0000021216,0.0000021282,0.0000021341, +0.0000021386,0.0000021411,0.0000021426,0.0000021441,0.0000021452, +0.0000021452,0.0000021427,0.0000021376,0.0000021317,0.0000021272, +0.0000021246,0.0000021228,0.0000021212,0.0000021204,0.0000021202, +0.0000021200,0.0000021196,0.0000021193,0.0000021193,0.0000021193, +0.0000021188,0.0000021178,0.0000021166,0.0000021153,0.0000021144, +0.0000021140,0.0000021140,0.0000021143,0.0000021159,0.0000021198, +0.0000021248,0.0000021296,0.0000021335,0.0000021376,0.0000021429, +0.0000021482,0.0000021520,0.0000021555,0.0000021609,0.0000021685, +0.0000021760,0.0000021821,0.0000021873,0.0000021926,0.0000021977, +0.0000022015,0.0000022028,0.0000022021,0.0000021995,0.0000021950, +0.0000021894,0.0000021831,0.0000021769,0.0000021713,0.0000021664, +0.0000021624,0.0000021588,0.0000021559,0.0000021537,0.0000021526, +0.0000021522,0.0000021521,0.0000021516,0.0000021509,0.0000021500, +0.0000021498,0.0000021500,0.0000021507,0.0000021516,0.0000021525, +0.0000021534,0.0000021546,0.0000021560,0.0000021571,0.0000021584, +0.0000021599,0.0000021614,0.0000021628,0.0000021637,0.0000021641, +0.0000021643,0.0000021644,0.0000021639,0.0000021629,0.0000021618, +0.0000021607,0.0000021592,0.0000021572,0.0000021549,0.0000021521, +0.0000021489,0.0000021454,0.0000021421,0.0000021388,0.0000021368, +0.0000021381,0.0000021417,0.0000021461,0.0000021505,0.0000021539, +0.0000021560,0.0000021557,0.0000021542,0.0000021500,0.0000021462, +0.0000021431,0.0000021396,0.0000021353,0.0000021311,0.0000021278, +0.0000021263,0.0000021259,0.0000021261,0.0000021278,0.0000021304, +0.0000021337,0.0000021362,0.0000021363,0.0000021343,0.0000021295, +0.0000021239,0.0000021192,0.0000021161,0.0000021147,0.0000021136, +0.0000021117,0.0000021090,0.0000021061,0.0000021034,0.0000021009, +0.0000020990,0.0000020986,0.0000020991,0.0000020999,0.0000021015, +0.0000021034,0.0000021050,0.0000021070,0.0000021097,0.0000021129, +0.0000021162,0.0000021195,0.0000021231,0.0000021265,0.0000021289, +0.0000021304,0.0000021314,0.0000021319,0.0000021311,0.0000021287, +0.0000021251,0.0000021202,0.0000021147,0.0000021092,0.0000021045, +0.0000021017,0.0000020999,0.0000020988,0.0000020981,0.0000020977, +0.0000020975,0.0000020978,0.0000020993,0.0000021010,0.0000021014, +0.0000021014,0.0000021018,0.0000021013,0.0000020996,0.0000020964, +0.0000020915,0.0000020851,0.0000020782,0.0000020682,0.0000020571, +0.0000020504,0.0000020453,0.0000020380,0.0000020268,0.0000020269, +0.0000020335,0.0000020343,0.0000020367,0.0000020451,0.0000020528, +0.0000020551,0.0000020542,0.0000020555,0.0000020608,0.0000020675, +0.0000020730,0.0000020754,0.0000020769,0.0000020816,0.0000020936, +0.0000021092,0.0000021182,0.0000021238,0.0000021414,0.0000021510, +0.0000021487,0.0000021547,0.0000021624,0.0000021595,0.0000021578, +0.0000021652,0.0000021750,0.0000021739,0.0000021694,0.0000021797, +0.0000021970,0.0000021977,0.0000021858,0.0000021755,0.0000021749, +0.0000021755,0.0000021771,0.0000021897,0.0000021899,0.0000021888, +0.0000022006,0.0000022054,0.0000022058,0.0000022151,0.0000022309, +0.0000022400,0.0000022448,0.0000022490,0.0000022505,0.0000022500, +0.0000022488,0.0000022473,0.0000022467,0.0000022486,0.0000022517, +0.0000022540,0.0000022553,0.0000022561,0.0000022562,0.0000022557, +0.0000022525,0.0000022446,0.0000022351,0.0000022267,0.0000022215, +0.0000022207,0.0000022224,0.0000022233,0.0000022225,0.0000022205, +0.0000022174,0.0000022136,0.0000022093,0.0000022049,0.0000022003, +0.0000021947,0.0000021890,0.0000021821,0.0000021741,0.0000021644, +0.0000021549,0.0000021470,0.0000021409,0.0000021366,0.0000021324, +0.0000021273,0.0000021216,0.0000021170,0.0000021169,0.0000021172, +0.0000021171,0.0000021193,0.0000021246,0.0000021354,0.0000021531, +0.0000021715,0.0000021847,0.0000021901,0.0000021906,0.0000021885, +0.0000021859,0.0000021848,0.0000021840,0.0000021816,0.0000021785, +0.0000021771,0.0000021746,0.0000021710,0.0000021669,0.0000021631, +0.0000021601,0.0000021582,0.0000021570,0.0000021565,0.0000021562, +0.0000021551,0.0000021536,0.0000021536,0.0000021580,0.0000021655, +0.0000021707,0.0000021712,0.0000021716,0.0000021753,0.0000021797, +0.0000021829,0.0000021853,0.0000021875,0.0000021896,0.0000021921, +0.0000021948,0.0000021970,0.0000021985,0.0000021993,0.0000021994, +0.0000021986,0.0000021979,0.0000021976,0.0000021982,0.0000022014, +0.0000022069,0.0000022116,0.0000022151,0.0000022184,0.0000022225, +0.0000022253,0.0000022273,0.0000022291,0.0000022318,0.0000022360, +0.0000022400,0.0000022430,0.0000022461,0.0000022484,0.0000022491, +0.0000022498,0.0000022497,0.0000022473,0.0000022433,0.0000022399, +0.0000022377,0.0000022349,0.0000022319,0.0000022278,0.0000022234, +0.0000022208,0.0000022183,0.0000022168,0.0000022170,0.0000022183, +0.0000022201,0.0000022220,0.0000022236,0.0000022261,0.0000022292, +0.0000022321,0.0000022341,0.0000022348,0.0000022352,0.0000022360, +0.0000022378,0.0000022400,0.0000022413,0.0000022417,0.0000022408, +0.0000022391,0.0000022375,0.0000022351,0.0000022329,0.0000022310, +0.0000022295,0.0000022283,0.0000022269,0.0000022246,0.0000022207, +0.0000022154,0.0000022080,0.0000021991,0.0000021902,0.0000021817, +0.0000021739,0.0000021674,0.0000021620,0.0000021580,0.0000021561, +0.0000021551,0.0000021553,0.0000021573,0.0000021617,0.0000021666, +0.0000021714,0.0000021760,0.0000021800,0.0000021835,0.0000021865, +0.0000021887,0.0000021898,0.0000021902,0.0000021909,0.0000021921, +0.0000021937,0.0000021952,0.0000021967,0.0000021970,0.0000021961, +0.0000021949,0.0000021931,0.0000021913,0.0000021892,0.0000021870, +0.0000021853,0.0000021841,0.0000021827,0.0000021809,0.0000021777, +0.0000021729,0.0000021665,0.0000021597,0.0000021540,0.0000021501, +0.0000021478,0.0000021482,0.0000021503,0.0000021537,0.0000021585, +0.0000021641,0.0000021695,0.0000021736,0.0000021770,0.0000021784, +0.0000021785,0.0000021787,0.0000021795,0.0000021811,0.0000021828, +0.0000021838,0.0000021833,0.0000021812,0.0000021784,0.0000021756, +0.0000021737,0.0000021724,0.0000021716,0.0000021713,0.0000021716, +0.0000021712,0.0000021711,0.0000021705,0.0000021697,0.0000021688, +0.0000021682,0.0000021678,0.0000021679,0.0000021677,0.0000021665, +0.0000021649,0.0000021635,0.0000021618,0.0000021601,0.0000021590, +0.0000021577,0.0000021559,0.0000021540,0.0000021521,0.0000021505, +0.0000021490,0.0000021480,0.0000021474,0.0000021471,0.0000021473, +0.0000021476,0.0000021480,0.0000021482,0.0000021482,0.0000021481, +0.0000021483,0.0000021484,0.0000021478,0.0000021466,0.0000021448, +0.0000021424,0.0000021399,0.0000021376,0.0000021356,0.0000021337, +0.0000021315,0.0000021290,0.0000021269,0.0000021250,0.0000021232, +0.0000021214,0.0000021205,0.0000021206,0.0000021209,0.0000021206, +0.0000021192,0.0000021168,0.0000021140,0.0000021109,0.0000021073, +0.0000021032,0.0000020988,0.0000020948,0.0000020915,0.0000020891, +0.0000020868,0.0000020852,0.0000020826,0.0000020810,0.0000020799, +0.0000020795,0.0000020801,0.0000020819,0.0000020850,0.0000020883, +0.0000020917,0.0000020944,0.0000020960,0.0000020971,0.0000020977, +0.0000020982,0.0000020993,0.0000021011,0.0000021034,0.0000021064, +0.0000021103,0.0000021143,0.0000021179,0.0000021205,0.0000021224, +0.0000021239,0.0000021250,0.0000021255,0.0000021259,0.0000021259, +0.0000021254,0.0000021239,0.0000021222,0.0000021204,0.0000021185, +0.0000021173,0.0000021169,0.0000021164,0.0000021146,0.0000021120, +0.0000021088,0.0000021050,0.0000021006,0.0000020954,0.0000020889, +0.0000020821,0.0000020757,0.0000020699,0.0000020645,0.0000020600, +0.0000020576,0.0000020578,0.0000020585,0.0000020617,0.0000020673, +0.0000020738,0.0000020804,0.0000020881,0.0000020953,0.0000021002, +0.0000021039,0.0000021054,0.0000021077,0.0000021086,0.0000021108, +0.0000021110,0.0000021096,0.0000021110,0.0000021096,0.0000021077, +0.0000021059,0.0000021042,0.0000021016,0.0000020993,0.0000020977, +0.0000020969,0.0000020965,0.0000020962,0.0000020959,0.0000020958, +0.0000020960,0.0000020957,0.0000020958,0.0000020976,0.0000020995, +0.0000021001,0.0000021008,0.0000021018,0.0000021040,0.0000021053, +0.0000021044,0.0000021046,0.0000021040,0.0000021031,0.0000021026, +0.0000021016,0.0000021010,0.0000021004,0.0000020997,0.0000020989, +0.0000020979,0.0000020966,0.0000020953,0.0000020941,0.0000020929, +0.0000020918,0.0000020911,0.0000020905,0.0000020904,0.0000020902, +0.0000020897,0.0000020890,0.0000020878,0.0000020862,0.0000020847, +0.0000020835,0.0000020826,0.0000020824,0.0000020831,0.0000020842, +0.0000020849,0.0000020847,0.0000020829,0.0000020797,0.0000020755, +0.0000020709,0.0000020659,0.0000020606,0.0000020556,0.0000020511, +0.0000020468,0.0000020423,0.0000020375,0.0000020319,0.0000020253, +0.0000020182,0.0000020109,0.0000020041,0.0000019977,0.0000019926, +0.0000019889,0.0000019856,0.0000019827,0.0000019801,0.0000019778, +0.0000019758,0.0000019738,0.0000019717,0.0000019698,0.0000019683, +0.0000019676,0.0000019683,0.0000019707,0.0000019748,0.0000019798, +0.0000019853,0.0000019918,0.0000019979,0.0000020020,0.0000020033, +0.0000020016,0.0000019966,0.0000019918,0.0000019905,0.0000019910, +0.0000019907,0.0000019890,0.0000019856,0.0000019814,0.0000019775, +0.0000019724,0.0000019687,0.0000019683,0.0000019688,0.0000019690, +0.0000019689,0.0000019664,0.0000019619,0.0000019596,0.0000019601, +0.0000019640,0.0000019707,0.0000019783,0.0000019858,0.0000019921, +0.0000019953,0.0000019964,0.0000019971,0.0000019989,0.0000020024, +0.0000020085,0.0000020171,0.0000020263,0.0000020344,0.0000020417, +0.0000020485,0.0000020548,0.0000020602,0.0000020631,0.0000020629, +0.0000020599,0.0000020546,0.0000020469,0.0000020395,0.0000020351, +0.0000020341,0.0000020361,0.0000020410,0.0000020480,0.0000020565, +0.0000020640,0.0000020692,0.0000020718,0.0000020722,0.0000020692, +0.0000020641,0.0000020576,0.0000020502,0.0000020431,0.0000020381, +0.0000020370,0.0000020375,0.0000020413,0.0000020477,0.0000020548, +0.0000020617,0.0000020672,0.0000020725,0.0000020803,0.0000020925, +0.0000021093,0.0000021285,0.0000021464,0.0000021603,0.0000021696, +0.0000021746,0.0000021764,0.0000021761,0.0000021749,0.0000021731, +0.0000021711,0.0000021692,0.0000021674,0.0000021658,0.0000021647, +0.0000021639,0.0000021628,0.0000021612,0.0000021593,0.0000021570, +0.0000021545,0.0000021516,0.0000021485,0.0000021453,0.0000021422, +0.0000021393,0.0000021367,0.0000021341,0.0000021317,0.0000021298, +0.0000021285,0.0000021273,0.0000021261,0.0000021247,0.0000021231, +0.0000021214,0.0000021192,0.0000021166,0.0000021140,0.0000021120, +0.0000021105,0.0000021092,0.0000021077,0.0000021061,0.0000021046, +0.0000021035,0.0000021028,0.0000021024,0.0000021019,0.0000021002, +0.0000020975,0.0000020948,0.0000020931,0.0000020925,0.0000020917, +0.0000020893,0.0000020856,0.0000020819,0.0000020787,0.0000020760, +0.0000020735,0.0000020711,0.0000020698,0.0000020698,0.0000020706, +0.0000020725,0.0000020748,0.0000020771,0.0000020787,0.0000020792, +0.0000020796,0.0000020792,0.0000020763,0.0000020701,0.0000020652, +0.0000020650,0.0000020666,0.0000020670,0.0000020693,0.0000020767, +0.0000020867,0.0000020980,0.0000021068,0.0000021122,0.0000021161, +0.0000021221,0.0000021284,0.0000021292,0.0000021278,0.0000021262, +0.0000021228,0.0000021176,0.0000021155,0.0000021157,0.0000021155, +0.0000021163,0.0000021166,0.0000021149,0.0000021126,0.0000021124, +0.0000021149,0.0000021212,0.0000021301,0.0000021401,0.0000021489, +0.0000021565,0.0000021630,0.0000021683,0.0000021720,0.0000021744, +0.0000021753,0.0000021752,0.0000021750,0.0000021752,0.0000021757, +0.0000021761,0.0000021758,0.0000021737,0.0000021696,0.0000021643, +0.0000021585,0.0000021536,0.0000021491,0.0000021469,0.0000021474, +0.0000021492,0.0000021510,0.0000021517,0.0000021503,0.0000021482, +0.0000021441,0.0000021395,0.0000021357,0.0000021343,0.0000021370, +0.0000021447,0.0000021565,0.0000021702,0.0000021840,0.0000021937, +0.0000022000,0.0000022021,0.0000022019,0.0000022017,0.0000022009, +0.0000022018,0.0000022033,0.0000022075,0.0000022144,0.0000022226, +0.0000022319,0.0000022419,0.0000022515,0.0000022599,0.0000022667, +0.0000022718,0.0000022744,0.0000022734,0.0000022688,0.0000022612, +0.0000022531,0.0000022448,0.0000022356,0.0000022253,0.0000022156, +0.0000022102,0.0000022116,0.0000022184,0.0000022270,0.0000022339, +0.0000022382,0.0000022414,0.0000022450,0.0000022485,0.0000022512, +0.0000022528,0.0000022522,0.0000022494,0.0000022457,0.0000022405, +0.0000022349,0.0000022303,0.0000022274,0.0000022259,0.0000022247, +0.0000022237,0.0000022230,0.0000022201,0.0000022113,0.0000021972, +0.0000021833,0.0000021726,0.0000021613,0.0000021460,0.0000021296, +0.0000021150,0.0000021003,0.0000020828,0.0000020645,0.0000020496, +0.0000020393,0.0000020322,0.0000020269,0.0000020212,0.0000020173, +0.0000020152,0.0000020138,0.0000020120,0.0000020108,0.0000020123, +0.0000020155,0.0000020183,0.0000020188,0.0000020174,0.0000020145, +0.0000020101,0.0000020061,0.0000020034,0.0000020032,0.0000020043, +0.0000020053,0.0000020052,0.0000020035,0.0000020014,0.0000019997, +0.0000019995,0.0000020007,0.0000020037,0.0000020079,0.0000020122, +0.0000020159,0.0000020195,0.0000020235,0.0000020277,0.0000020302, +0.0000020312,0.0000020311,0.0000020304,0.0000020282,0.0000020240, +0.0000020188,0.0000020139,0.0000020105,0.0000020095,0.0000020097, +0.0000020130,0.0000020195,0.0000020303,0.0000020451,0.0000020611, +0.0000020742,0.0000020814,0.0000020821,0.0000020807,0.0000020793, +0.0000020793,0.0000020797,0.0000020783,0.0000020748,0.0000020699, +0.0000020640,0.0000020579,0.0000020516,0.0000020490,0.0000020507, +0.0000020546,0.0000020624,0.0000020725,0.0000020828,0.0000020924, +0.0000021008,0.0000021076,0.0000021130,0.0000021179,0.0000021236, +0.0000021301,0.0000021366,0.0000021420,0.0000021472,0.0000021537, +0.0000021612,0.0000021681,0.0000021733,0.0000021757,0.0000021756, +0.0000021737,0.0000021715,0.0000021696,0.0000021681,0.0000021675, +0.0000021682,0.0000021693,0.0000021699,0.0000021705,0.0000021700, +0.0000021692,0.0000021684,0.0000021675,0.0000021668,0.0000021663, +0.0000021659,0.0000021654,0.0000021647,0.0000021640,0.0000021629, +0.0000021618,0.0000021611,0.0000021605,0.0000021592,0.0000021568, +0.0000021534,0.0000021492,0.0000021445,0.0000021393,0.0000021339, +0.0000021282,0.0000021223,0.0000021161,0.0000021097,0.0000021038, +0.0000020993,0.0000020961,0.0000020948,0.0000020951,0.0000020961, +0.0000020970,0.0000020975,0.0000020974,0.0000020964,0.0000020945, +0.0000020912,0.0000020872,0.0000020837,0.0000020813,0.0000020804, +0.0000020801,0.0000020799,0.0000020797,0.0000020799,0.0000020817, +0.0000020855,0.0000020896,0.0000020925,0.0000020936,0.0000020931, +0.0000020910,0.0000020878,0.0000020842,0.0000020805,0.0000020771, +0.0000020745,0.0000020729,0.0000020726,0.0000020729,0.0000020733, +0.0000020731,0.0000020722,0.0000020705,0.0000020681,0.0000020645, +0.0000020602,0.0000020558,0.0000020518,0.0000020496,0.0000020494, +0.0000020499,0.0000020500,0.0000020493,0.0000020472,0.0000020445, +0.0000020422,0.0000020403,0.0000020389,0.0000020384,0.0000020391, +0.0000020413,0.0000020441,0.0000020464,0.0000020487,0.0000020513, +0.0000020539,0.0000020563,0.0000020590,0.0000020618,0.0000020646, +0.0000020675,0.0000020700,0.0000020718,0.0000020727,0.0000020728, +0.0000020723,0.0000020712,0.0000020694,0.0000020670,0.0000020643, +0.0000020620,0.0000020595,0.0000020570,0.0000020547,0.0000020525, +0.0000020504,0.0000020485,0.0000020470,0.0000020455,0.0000020439, +0.0000020426,0.0000020416,0.0000020405,0.0000020394,0.0000020387, +0.0000020382,0.0000020376,0.0000020365,0.0000020347,0.0000020327, +0.0000020301,0.0000020267,0.0000020226,0.0000020183,0.0000020137, +0.0000020091,0.0000020050,0.0000020018,0.0000019996,0.0000019983, +0.0000019977,0.0000019976,0.0000019977,0.0000019975,0.0000019968, +0.0000019957,0.0000019944,0.0000019928,0.0000019906,0.0000019878, +0.0000019846,0.0000019812,0.0000019781,0.0000019752,0.0000019728, +0.0000019711,0.0000019700,0.0000019696,0.0000019701,0.0000019713, +0.0000019732,0.0000019758,0.0000019786,0.0000019811,0.0000019827, +0.0000019836,0.0000019839,0.0000019837,0.0000019831,0.0000019821, +0.0000019810,0.0000019802,0.0000019794,0.0000019786,0.0000019780, +0.0000019774,0.0000019770,0.0000019764,0.0000019756,0.0000019743, +0.0000019729,0.0000019712,0.0000019691,0.0000019665,0.0000019637, +0.0000019608,0.0000019584,0.0000019566,0.0000019557,0.0000019555, +0.0000019561,0.0000019573,0.0000019590,0.0000019608,0.0000019628, +0.0000019646,0.0000019660,0.0000019666,0.0000019666,0.0000019658, +0.0000019645,0.0000019631,0.0000019622,0.0000019621,0.0000019631, +0.0000019654,0.0000019682,0.0000019707,0.0000019721,0.0000019724, +0.0000019721,0.0000019713,0.0000019703,0.0000019693,0.0000019682, +0.0000019670,0.0000019659,0.0000019653,0.0000019652,0.0000019652, +0.0000019649,0.0000019642,0.0000019637,0.0000019635,0.0000019638, +0.0000019644,0.0000019654,0.0000019664,0.0000019673,0.0000019683, +0.0000019699,0.0000019720,0.0000019748,0.0000019780,0.0000019800, +0.0000019790,0.0000019743,0.0000019682,0.0000019625,0.0000019642, +0.0000019767,0.0000019926,0.0000020124,0.0000020254,0.0000020238, +0.0000020278,0.0000020416,0.0000020488,0.0000020512,0.0000020516, +0.0000020479,0.0000020406,0.0000020355,0.0000020347,0.0000020356, +0.0000020370,0.0000020381,0.0000020390,0.0000020400,0.0000020408, +0.0000020405,0.0000020383,0.0000020350,0.0000020320,0.0000020277, +0.0000020231,0.0000020217,0.0000020236,0.0000020280,0.0000020308, +0.0000020286,0.0000020209,0.0000020144,0.0000020123,0.0000020124, +0.0000020143,0.0000020181,0.0000020210,0.0000020222,0.0000020224, +0.0000020217,0.0000020198,0.0000020189,0.0000020207,0.0000020248, +0.0000020298,0.0000020355,0.0000020401,0.0000020411,0.0000020384, +0.0000020339,0.0000020320,0.0000020329,0.0000020349,0.0000020360, +0.0000020350,0.0000020329,0.0000020308,0.0000020292,0.0000020278, +0.0000020262,0.0000020253,0.0000020248,0.0000020245,0.0000020250, +0.0000020255,0.0000020257,0.0000020255,0.0000020258,0.0000020266, +0.0000020274,0.0000020278,0.0000020278,0.0000020273,0.0000020263, +0.0000020247,0.0000020225,0.0000020201,0.0000020182,0.0000020166, +0.0000020152,0.0000020139,0.0000020128,0.0000020117,0.0000020107, +0.0000020097,0.0000020087,0.0000020077,0.0000020065,0.0000020055, +0.0000020047,0.0000020042,0.0000020040,0.0000020041,0.0000020045, +0.0000020050,0.0000020057,0.0000020066,0.0000020074,0.0000020079, +0.0000020082,0.0000020085,0.0000020085,0.0000020085,0.0000020084, +0.0000020083,0.0000020080,0.0000020075,0.0000020069,0.0000020064, +0.0000020062,0.0000020062,0.0000020063,0.0000020064,0.0000020066, +0.0000020068,0.0000020070,0.0000020072,0.0000020074,0.0000020073, +0.0000020070,0.0000020065,0.0000020059,0.0000020055,0.0000020051, +0.0000020043,0.0000020027,0.0000020007,0.0000019986,0.0000019968, +0.0000019952,0.0000019940,0.0000019938,0.0000019946,0.0000019949, +0.0000019973,0.0000020003,0.0000020033,0.0000020061,0.0000020082, +0.0000020091,0.0000020090,0.0000020078,0.0000020058,0.0000020036, +0.0000020014,0.0000019994,0.0000019971,0.0000019942,0.0000019906, +0.0000019868,0.0000019834,0.0000019799,0.0000019758,0.0000019715, +0.0000019680,0.0000019666,0.0000019665,0.0000019656,0.0000019629, +0.0000019578,0.0000019514,0.0000019463,0.0000019420,0.0000019402, +0.0000019403,0.0000019427,0.0000019475,0.0000019540,0.0000019600, +0.0000019633,0.0000019641,0.0000019646,0.0000019650,0.0000019650, +0.0000019655,0.0000019672,0.0000019693,0.0000019711,0.0000019729, +0.0000019757,0.0000019797,0.0000019843,0.0000019888,0.0000019935, +0.0000019987,0.0000020041,0.0000020099,0.0000020154,0.0000020209, +0.0000020261,0.0000020308,0.0000020349,0.0000020388,0.0000020425, +0.0000020459,0.0000020488,0.0000020515,0.0000020542,0.0000020571, +0.0000020605,0.0000020642,0.0000020680,0.0000020715,0.0000020747, +0.0000020778,0.0000020805,0.0000020830,0.0000020854,0.0000020868, +0.0000020871,0.0000020865,0.0000020853,0.0000020837,0.0000020819, +0.0000020799,0.0000020780,0.0000020768,0.0000020767,0.0000020775, +0.0000020788,0.0000020807,0.0000020822,0.0000020825,0.0000020818, +0.0000020802,0.0000020777,0.0000020746,0.0000020713,0.0000020676, +0.0000020636,0.0000020601,0.0000020578,0.0000020563,0.0000020552, +0.0000020535,0.0000020521,0.0000020509,0.0000020492,0.0000020465, +0.0000020441,0.0000020432,0.0000020423,0.0000020402,0.0000020376, +0.0000020364,0.0000020372,0.0000020403,0.0000020436,0.0000020471, +0.0000020508,0.0000020549,0.0000020587,0.0000020618,0.0000020647, +0.0000020683,0.0000020730,0.0000020775,0.0000020808,0.0000020834, +0.0000020854,0.0000020867,0.0000020869,0.0000020859,0.0000020834, +0.0000020801,0.0000020776,0.0000020763,0.0000020761,0.0000020772, +0.0000020794,0.0000020825,0.0000020861,0.0000020895,0.0000020926, +0.0000020959,0.0000021002,0.0000021053,0.0000021108,0.0000021158, +0.0000021202,0.0000021235,0.0000021260,0.0000021280,0.0000021295, +0.0000021303,0.0000021304,0.0000021299,0.0000021286,0.0000021266, +0.0000021242,0.0000021218,0.0000021197,0.0000021177,0.0000021154, +0.0000021129,0.0000021103,0.0000021076,0.0000021049,0.0000021026, +0.0000021007,0.0000020992,0.0000020984,0.0000020982,0.0000020982, +0.0000020981,0.0000020978,0.0000020967,0.0000020953,0.0000020929, +0.0000020904,0.0000020883,0.0000020864,0.0000020846,0.0000020825, +0.0000020802,0.0000020785,0.0000020780,0.0000020781,0.0000020785, +0.0000020794,0.0000020805,0.0000020820,0.0000020835,0.0000020850, +0.0000020872,0.0000020904,0.0000020938,0.0000020970,0.0000021009, +0.0000021053,0.0000021088,0.0000021106,0.0000021106,0.0000021096, +0.0000021079,0.0000021061,0.0000021051,0.0000021051,0.0000021047, +0.0000021028,0.0000021005,0.0000020988,0.0000020985,0.0000021015, +0.0000021091,0.0000021175,0.0000021241,0.0000021301,0.0000021355, +0.0000021392,0.0000021410,0.0000021420,0.0000021430,0.0000021435, +0.0000021426,0.0000021392,0.0000021340,0.0000021287,0.0000021253, +0.0000021238,0.0000021232,0.0000021228,0.0000021225,0.0000021223, +0.0000021220,0.0000021215,0.0000021211,0.0000021206,0.0000021199, +0.0000021189,0.0000021178,0.0000021167,0.0000021156,0.0000021149, +0.0000021146,0.0000021144,0.0000021147,0.0000021160,0.0000021192, +0.0000021239,0.0000021287,0.0000021328,0.0000021371,0.0000021429, +0.0000021491,0.0000021538,0.0000021576,0.0000021622,0.0000021682, +0.0000021748,0.0000021808,0.0000021858,0.0000021902,0.0000021945, +0.0000021982,0.0000022001,0.0000022000,0.0000021982,0.0000021954, +0.0000021911,0.0000021864,0.0000021812,0.0000021761,0.0000021711, +0.0000021661,0.0000021615,0.0000021575,0.0000021548,0.0000021534, +0.0000021527,0.0000021517,0.0000021506,0.0000021495,0.0000021488, +0.0000021488,0.0000021493,0.0000021502,0.0000021510,0.0000021518, +0.0000021530,0.0000021545,0.0000021559,0.0000021571,0.0000021586, +0.0000021602,0.0000021616,0.0000021627,0.0000021634,0.0000021640, +0.0000021640,0.0000021636,0.0000021626,0.0000021615,0.0000021605, +0.0000021590,0.0000021572,0.0000021550,0.0000021525,0.0000021496, +0.0000021463,0.0000021423,0.0000021379,0.0000021337,0.0000021318, +0.0000021309,0.0000021344,0.0000021402,0.0000021468,0.0000021524, +0.0000021565,0.0000021588,0.0000021592,0.0000021550,0.0000021504, +0.0000021471,0.0000021443,0.0000021411,0.0000021373,0.0000021338, +0.0000021313,0.0000021297,0.0000021295,0.0000021312,0.0000021342, +0.0000021360,0.0000021362,0.0000021341,0.0000021295,0.0000021245, +0.0000021203,0.0000021180,0.0000021177,0.0000021187,0.0000021187, +0.0000021170,0.0000021143,0.0000021117,0.0000021092,0.0000021066, +0.0000021049,0.0000021044,0.0000021048,0.0000021059,0.0000021077, +0.0000021093,0.0000021108,0.0000021122,0.0000021132,0.0000021142, +0.0000021154,0.0000021177,0.0000021209,0.0000021239,0.0000021257, +0.0000021269,0.0000021277,0.0000021272,0.0000021254,0.0000021224, +0.0000021182,0.0000021130,0.0000021071,0.0000021013,0.0000020977, +0.0000020957,0.0000020948,0.0000020943,0.0000020938,0.0000020933, +0.0000020932,0.0000020940,0.0000020955,0.0000020959,0.0000020957, +0.0000020959,0.0000020955,0.0000020944,0.0000020923,0.0000020884, +0.0000020824,0.0000020751,0.0000020642,0.0000020517,0.0000020439, +0.0000020393,0.0000020332,0.0000020218,0.0000020216,0.0000020282, +0.0000020292,0.0000020310,0.0000020397,0.0000020491,0.0000020526, +0.0000020517,0.0000020527,0.0000020579,0.0000020643,0.0000020700, +0.0000020723,0.0000020744,0.0000020804,0.0000020938,0.0000021097, +0.0000021181,0.0000021238,0.0000021412,0.0000021497,0.0000021471, +0.0000021540,0.0000021604,0.0000021569,0.0000021565,0.0000021648, +0.0000021727,0.0000021695,0.0000021670,0.0000021821,0.0000021957, +0.0000021928,0.0000021806,0.0000021738,0.0000021746,0.0000021749, +0.0000021780,0.0000021896,0.0000021873,0.0000021862,0.0000021988, +0.0000022036,0.0000022041,0.0000022129,0.0000022290,0.0000022383, +0.0000022430,0.0000022467,0.0000022477,0.0000022475,0.0000022465, +0.0000022463,0.0000022475,0.0000022498,0.0000022515,0.0000022528, +0.0000022553,0.0000022575,0.0000022576,0.0000022553,0.0000022491, +0.0000022389,0.0000022282,0.0000022189,0.0000022137,0.0000022130, +0.0000022144,0.0000022167,0.0000022181,0.0000022178,0.0000022152, +0.0000022108,0.0000022057,0.0000021995,0.0000021931,0.0000021871, +0.0000021801,0.0000021714,0.0000021619,0.0000021519,0.0000021434, +0.0000021369,0.0000021310,0.0000021262,0.0000021219,0.0000021171, +0.0000021116,0.0000021068,0.0000021069,0.0000021083,0.0000021099, +0.0000021126,0.0000021179,0.0000021253,0.0000021373,0.0000021537, +0.0000021700,0.0000021816,0.0000021867,0.0000021864,0.0000021825, +0.0000021777,0.0000021738,0.0000021709,0.0000021693,0.0000021707, +0.0000021706,0.0000021681,0.0000021639,0.0000021596,0.0000021565, +0.0000021548,0.0000021535,0.0000021523,0.0000021513,0.0000021507, +0.0000021499,0.0000021495,0.0000021511,0.0000021549,0.0000021598, +0.0000021631,0.0000021638,0.0000021650,0.0000021689,0.0000021734, +0.0000021757,0.0000021766,0.0000021769,0.0000021773,0.0000021788, +0.0000021815,0.0000021840,0.0000021861,0.0000021878,0.0000021893, +0.0000021897,0.0000021899,0.0000021904,0.0000021929,0.0000021974, +0.0000022019,0.0000022054,0.0000022083,0.0000022124,0.0000022153, +0.0000022173,0.0000022193,0.0000022215,0.0000022251,0.0000022293, +0.0000022328,0.0000022369,0.0000022405,0.0000022429,0.0000022444, +0.0000022450,0.0000022436,0.0000022398,0.0000022365,0.0000022341, +0.0000022315,0.0000022280,0.0000022243,0.0000022205,0.0000022174, +0.0000022151,0.0000022129,0.0000022120,0.0000022118,0.0000022126, +0.0000022137,0.0000022146,0.0000022161,0.0000022180,0.0000022203, +0.0000022225,0.0000022244,0.0000022255,0.0000022266,0.0000022278, +0.0000022296,0.0000022316,0.0000022333,0.0000022344,0.0000022356, +0.0000022367,0.0000022365,0.0000022358,0.0000022352,0.0000022341, +0.0000022324,0.0000022304,0.0000022282,0.0000022257,0.0000022228, +0.0000022193,0.0000022146,0.0000022088,0.0000022019,0.0000021934, +0.0000021839,0.0000021746,0.0000021665,0.0000021601,0.0000021560, +0.0000021542,0.0000021535,0.0000021542,0.0000021567,0.0000021597, +0.0000021636,0.0000021677,0.0000021718,0.0000021755,0.0000021785, +0.0000021808,0.0000021825,0.0000021839,0.0000021853,0.0000021870, +0.0000021889,0.0000021914,0.0000021936,0.0000021946,0.0000021944, +0.0000021934,0.0000021922,0.0000021909,0.0000021897,0.0000021886, +0.0000021881,0.0000021882,0.0000021881,0.0000021873,0.0000021854, +0.0000021817,0.0000021765,0.0000021703,0.0000021642,0.0000021588, +0.0000021543,0.0000021513,0.0000021511,0.0000021520,0.0000021548, +0.0000021591,0.0000021650,0.0000021715,0.0000021775,0.0000021816, +0.0000021849,0.0000021867,0.0000021873,0.0000021883,0.0000021889, +0.0000021896,0.0000021902,0.0000021902,0.0000021893,0.0000021880, +0.0000021861,0.0000021839,0.0000021816,0.0000021798,0.0000021778, +0.0000021757,0.0000021736,0.0000021717,0.0000021700,0.0000021683, +0.0000021665,0.0000021659,0.0000021651,0.0000021640,0.0000021628, +0.0000021617,0.0000021606,0.0000021596,0.0000021589,0.0000021585, +0.0000021576,0.0000021563,0.0000021546,0.0000021526,0.0000021509, +0.0000021499,0.0000021498,0.0000021504,0.0000021519,0.0000021533, +0.0000021545,0.0000021558,0.0000021566,0.0000021566,0.0000021562, +0.0000021556,0.0000021547,0.0000021533,0.0000021516,0.0000021494, +0.0000021466,0.0000021434,0.0000021406,0.0000021382,0.0000021361, +0.0000021341,0.0000021321,0.0000021303,0.0000021288,0.0000021274, +0.0000021261,0.0000021254,0.0000021255,0.0000021260,0.0000021261, +0.0000021257,0.0000021249,0.0000021236,0.0000021215,0.0000021184, +0.0000021146,0.0000021102,0.0000021054,0.0000021004,0.0000020954, +0.0000020909,0.0000020868,0.0000020834,0.0000020803,0.0000020776, +0.0000020756,0.0000020746,0.0000020758,0.0000020784,0.0000020819, +0.0000020852,0.0000020880,0.0000020899,0.0000020908,0.0000020908, +0.0000020901,0.0000020893,0.0000020889,0.0000020890,0.0000020907, +0.0000020941,0.0000020988,0.0000021038,0.0000021083,0.0000021121, +0.0000021152,0.0000021175,0.0000021187,0.0000021193,0.0000021196, +0.0000021192,0.0000021178,0.0000021163,0.0000021152,0.0000021143, +0.0000021142,0.0000021149,0.0000021153,0.0000021151,0.0000021145, +0.0000021145,0.0000021127,0.0000021103,0.0000021068,0.0000021021, +0.0000020967,0.0000020913,0.0000020861,0.0000020810,0.0000020758, +0.0000020709,0.0000020666,0.0000020629,0.0000020606,0.0000020594, +0.0000020598,0.0000020610,0.0000020610,0.0000020656,0.0000020694, +0.0000020732,0.0000020771,0.0000020820,0.0000020877,0.0000020922, +0.0000020960,0.0000020992,0.0000021021,0.0000021030,0.0000021030, +0.0000021026,0.0000021016,0.0000020999,0.0000020986,0.0000020980, +0.0000020980,0.0000020983,0.0000020983,0.0000020980,0.0000020978, +0.0000020976,0.0000020965,0.0000020956,0.0000020957,0.0000020955, +0.0000020945,0.0000020941,0.0000020930,0.0000020919,0.0000020902, +0.0000020880,0.0000020855,0.0000020831,0.0000020809,0.0000020787, +0.0000020770,0.0000020753,0.0000020739,0.0000020728,0.0000020719, +0.0000020710,0.0000020700,0.0000020686,0.0000020671,0.0000020657, +0.0000020643,0.0000020630,0.0000020618,0.0000020607,0.0000020597, +0.0000020587,0.0000020574,0.0000020558,0.0000020542,0.0000020525, +0.0000020510,0.0000020498,0.0000020498,0.0000020510,0.0000020526, +0.0000020539,0.0000020544,0.0000020537,0.0000020517,0.0000020490, +0.0000020460,0.0000020426,0.0000020392,0.0000020362,0.0000020336, +0.0000020308,0.0000020273,0.0000020231,0.0000020184,0.0000020132, +0.0000020080,0.0000020030,0.0000019988,0.0000019951,0.0000019915, +0.0000019883,0.0000019853,0.0000019827,0.0000019803,0.0000019781, +0.0000019763,0.0000019743,0.0000019721,0.0000019697,0.0000019675, +0.0000019657,0.0000019647,0.0000019647,0.0000019668,0.0000019711, +0.0000019765,0.0000019830,0.0000019896,0.0000019944,0.0000019968, +0.0000019966,0.0000019931,0.0000019875,0.0000019838,0.0000019836, +0.0000019838,0.0000019834,0.0000019816,0.0000019782,0.0000019748, +0.0000019709,0.0000019671,0.0000019657,0.0000019662,0.0000019669, +0.0000019678,0.0000019675,0.0000019640,0.0000019595,0.0000019573, +0.0000019585,0.0000019628,0.0000019687,0.0000019752,0.0000019825, +0.0000019883,0.0000019919,0.0000019945,0.0000019968,0.0000019987, +0.0000020013,0.0000020061,0.0000020127,0.0000020192,0.0000020250, +0.0000020307,0.0000020369,0.0000020440,0.0000020511,0.0000020558, +0.0000020577,0.0000020566,0.0000020526,0.0000020473,0.0000020420, +0.0000020376,0.0000020353,0.0000020356,0.0000020372,0.0000020421, +0.0000020499,0.0000020580,0.0000020652,0.0000020708,0.0000020731, +0.0000020723,0.0000020691,0.0000020645,0.0000020581,0.0000020506, +0.0000020448,0.0000020404,0.0000020373,0.0000020374,0.0000020389, +0.0000020426,0.0000020475,0.0000020528,0.0000020577,0.0000020633, +0.0000020711,0.0000020827,0.0000020976,0.0000021138,0.0000021287, +0.0000021402,0.0000021477,0.0000021519,0.0000021534,0.0000021527, +0.0000021506,0.0000021473,0.0000021430,0.0000021382,0.0000021332, +0.0000021288,0.0000021251,0.0000021218,0.0000021187,0.0000021156, +0.0000021125,0.0000021094,0.0000021063,0.0000021035,0.0000021010, +0.0000020987,0.0000020965,0.0000020946,0.0000020930,0.0000020918, +0.0000020912,0.0000020911,0.0000020914,0.0000020918,0.0000020924, +0.0000020930,0.0000020932,0.0000020931,0.0000020927,0.0000020925, +0.0000020924,0.0000020924,0.0000020922,0.0000020921,0.0000020921, +0.0000020925,0.0000020929,0.0000020928,0.0000020920,0.0000020907, +0.0000020896,0.0000020894,0.0000020896,0.0000020895,0.0000020886, +0.0000020867,0.0000020844,0.0000020819,0.0000020790,0.0000020753, +0.0000020713,0.0000020681,0.0000020664,0.0000020663,0.0000020674, +0.0000020687,0.0000020706,0.0000020730,0.0000020753,0.0000020767, +0.0000020769,0.0000020766,0.0000020762,0.0000020741,0.0000020685, +0.0000020629,0.0000020619,0.0000020633,0.0000020636,0.0000020656, +0.0000020726,0.0000020831,0.0000020953,0.0000021047,0.0000021104, +0.0000021148,0.0000021215,0.0000021280,0.0000021289,0.0000021284, +0.0000021276,0.0000021245,0.0000021198,0.0000021177,0.0000021168, +0.0000021151,0.0000021142,0.0000021135,0.0000021119,0.0000021108, +0.0000021114,0.0000021139,0.0000021184,0.0000021250,0.0000021333, +0.0000021411,0.0000021479,0.0000021539,0.0000021589,0.0000021628, +0.0000021655,0.0000021668,0.0000021670,0.0000021669,0.0000021671, +0.0000021675,0.0000021682,0.0000021686,0.0000021677,0.0000021654, +0.0000021617,0.0000021571,0.0000021522,0.0000021473,0.0000021434, +0.0000021408,0.0000021402,0.0000021411,0.0000021429,0.0000021446, +0.0000021454,0.0000021451,0.0000021431,0.0000021397,0.0000021358, +0.0000021320,0.0000021305,0.0000021330,0.0000021398,0.0000021508, +0.0000021641,0.0000021778,0.0000021890,0.0000021979,0.0000022017, +0.0000022033,0.0000022026,0.0000022005,0.0000021991,0.0000021980, +0.0000021986,0.0000022000,0.0000022037,0.0000022099,0.0000022163, +0.0000022229,0.0000022297,0.0000022360,0.0000022408,0.0000022431, +0.0000022426,0.0000022402,0.0000022363,0.0000022306,0.0000022228, +0.0000022134,0.0000022058,0.0000022036,0.0000022071,0.0000022150, +0.0000022238,0.0000022301,0.0000022340,0.0000022372,0.0000022405, +0.0000022436,0.0000022461,0.0000022474,0.0000022468,0.0000022445, +0.0000022402,0.0000022355,0.0000022308,0.0000022277,0.0000022265, +0.0000022265,0.0000022262,0.0000022260,0.0000022255,0.0000022218, +0.0000022114,0.0000021966,0.0000021832,0.0000021723,0.0000021592, +0.0000021425,0.0000021259,0.0000021108,0.0000020943,0.0000020749, +0.0000020564,0.0000020423,0.0000020329,0.0000020262,0.0000020200, +0.0000020148,0.0000020111,0.0000020095,0.0000020081,0.0000020061, +0.0000020051,0.0000020070,0.0000020108,0.0000020136,0.0000020142, +0.0000020133,0.0000020106,0.0000020069,0.0000020028,0.0000020001, +0.0000019986,0.0000019994,0.0000020008,0.0000020012,0.0000020003, +0.0000019979,0.0000019957,0.0000019942,0.0000019945,0.0000019969, +0.0000020009,0.0000020053,0.0000020093,0.0000020136,0.0000020188, +0.0000020236,0.0000020269,0.0000020284,0.0000020287,0.0000020280, +0.0000020263,0.0000020238,0.0000020198,0.0000020156,0.0000020126, +0.0000020106,0.0000020106,0.0000020120,0.0000020161,0.0000020242, +0.0000020369,0.0000020527,0.0000020677,0.0000020770,0.0000020797, +0.0000020771,0.0000020745,0.0000020743,0.0000020758,0.0000020755, +0.0000020735,0.0000020705,0.0000020672,0.0000020617,0.0000020562, +0.0000020529,0.0000020519,0.0000020535,0.0000020590,0.0000020666, +0.0000020757,0.0000020852,0.0000020941,0.0000021019,0.0000021081, +0.0000021138,0.0000021197,0.0000021255,0.0000021305,0.0000021346, +0.0000021391,0.0000021448,0.0000021514,0.0000021579,0.0000021635, +0.0000021675,0.0000021694,0.0000021693,0.0000021677,0.0000021656, +0.0000021633,0.0000021621,0.0000021620,0.0000021634,0.0000021649, +0.0000021667,0.0000021675,0.0000021682,0.0000021679,0.0000021677, +0.0000021670,0.0000021663,0.0000021655,0.0000021646,0.0000021636, +0.0000021624,0.0000021612,0.0000021599,0.0000021589,0.0000021577, +0.0000021559,0.0000021531,0.0000021495,0.0000021448,0.0000021396, +0.0000021342,0.0000021283,0.0000021221,0.0000021157,0.0000021091, +0.0000021028,0.0000020979,0.0000020946,0.0000020931,0.0000020930, +0.0000020934,0.0000020938,0.0000020938,0.0000020937,0.0000020930, +0.0000020917,0.0000020896,0.0000020867,0.0000020833,0.0000020805, +0.0000020786,0.0000020776,0.0000020769,0.0000020765,0.0000020771, +0.0000020787,0.0000020816,0.0000020855,0.0000020886,0.0000020896, +0.0000020891,0.0000020871,0.0000020844,0.0000020813,0.0000020781, +0.0000020748,0.0000020721,0.0000020704,0.0000020697,0.0000020701, +0.0000020714,0.0000020724,0.0000020726,0.0000020723,0.0000020710, +0.0000020686,0.0000020650,0.0000020601,0.0000020543,0.0000020493, +0.0000020467,0.0000020464,0.0000020473,0.0000020476,0.0000020467, +0.0000020443,0.0000020409,0.0000020372,0.0000020338,0.0000020309, +0.0000020287,0.0000020286,0.0000020296,0.0000020313,0.0000020340, +0.0000020376,0.0000020410,0.0000020440,0.0000020472,0.0000020506, +0.0000020537,0.0000020573,0.0000020612,0.0000020650,0.0000020681, +0.0000020703,0.0000020716,0.0000020716,0.0000020702,0.0000020684, +0.0000020665,0.0000020641,0.0000020618,0.0000020596,0.0000020575, +0.0000020557,0.0000020538,0.0000020517,0.0000020495,0.0000020476, +0.0000020459,0.0000020445,0.0000020431,0.0000020416,0.0000020398, +0.0000020381,0.0000020368,0.0000020358,0.0000020345,0.0000020327, +0.0000020305,0.0000020278,0.0000020246,0.0000020207,0.0000020165, +0.0000020122,0.0000020078,0.0000020036,0.0000019998,0.0000019968, +0.0000019947,0.0000019931,0.0000019918,0.0000019905,0.0000019892, +0.0000019884,0.0000019879,0.0000019874,0.0000019866,0.0000019854, +0.0000019839,0.0000019819,0.0000019797,0.0000019775,0.0000019756, +0.0000019738,0.0000019721,0.0000019707,0.0000019692,0.0000019679, +0.0000019671,0.0000019668,0.0000019677,0.0000019697,0.0000019724, +0.0000019754,0.0000019781,0.0000019803,0.0000019814,0.0000019817, +0.0000019812,0.0000019799,0.0000019784,0.0000019772,0.0000019764, +0.0000019759,0.0000019754,0.0000019751,0.0000019750,0.0000019748, +0.0000019744,0.0000019735,0.0000019723,0.0000019708,0.0000019689, +0.0000019666,0.0000019638,0.0000019608,0.0000019580,0.0000019554, +0.0000019535,0.0000019521,0.0000019520,0.0000019527,0.0000019542, +0.0000019560,0.0000019580,0.0000019597,0.0000019609,0.0000019617, +0.0000019619,0.0000019615,0.0000019605,0.0000019593,0.0000019583, +0.0000019580,0.0000019583,0.0000019599,0.0000019621,0.0000019644, +0.0000019660,0.0000019665,0.0000019664,0.0000019658,0.0000019650, +0.0000019640,0.0000019627,0.0000019615,0.0000019606,0.0000019603, +0.0000019603,0.0000019604,0.0000019600,0.0000019592,0.0000019585, +0.0000019585,0.0000019590,0.0000019600,0.0000019614,0.0000019632, +0.0000019648,0.0000019661,0.0000019675,0.0000019695,0.0000019721, +0.0000019755,0.0000019786,0.0000019793,0.0000019759,0.0000019698, +0.0000019633,0.0000019616,0.0000019706,0.0000019857,0.0000020038, +0.0000020226,0.0000020250,0.0000020244,0.0000020357,0.0000020472, +0.0000020507,0.0000020524,0.0000020519,0.0000020466,0.0000020406, +0.0000020379,0.0000020380,0.0000020388,0.0000020400,0.0000020413, +0.0000020425,0.0000020434,0.0000020439,0.0000020433,0.0000020403, +0.0000020362,0.0000020316,0.0000020262,0.0000020220,0.0000020214, +0.0000020246,0.0000020291,0.0000020298,0.0000020243,0.0000020165, +0.0000020129,0.0000020129,0.0000020142,0.0000020173,0.0000020204, +0.0000020219,0.0000020219,0.0000020208,0.0000020187,0.0000020175, +0.0000020191,0.0000020231,0.0000020277,0.0000020331,0.0000020384, +0.0000020404,0.0000020381,0.0000020335,0.0000020314,0.0000020325, +0.0000020353,0.0000020366,0.0000020357,0.0000020333,0.0000020311, +0.0000020293,0.0000020274,0.0000020259,0.0000020250,0.0000020241, +0.0000020235,0.0000020236,0.0000020240,0.0000020242,0.0000020240, +0.0000020240,0.0000020240,0.0000020239,0.0000020239,0.0000020235, +0.0000020226,0.0000020218,0.0000020207,0.0000020190,0.0000020173, +0.0000020159,0.0000020144,0.0000020129,0.0000020114,0.0000020099, +0.0000020084,0.0000020071,0.0000020059,0.0000020048,0.0000020038, +0.0000020029,0.0000020023,0.0000020020,0.0000020017,0.0000020013, +0.0000020011,0.0000020010,0.0000020009,0.0000020011,0.0000020015, +0.0000020021,0.0000020027,0.0000020033,0.0000020038,0.0000020041, +0.0000020044,0.0000020046,0.0000020047,0.0000020046,0.0000020044, +0.0000020040,0.0000020035,0.0000020032,0.0000020028,0.0000020024, +0.0000020021,0.0000020020,0.0000020022,0.0000020024,0.0000020028, +0.0000020031,0.0000020034,0.0000020039,0.0000020044,0.0000020047, +0.0000020050,0.0000020051,0.0000020051,0.0000020050,0.0000020046, +0.0000020040,0.0000020033,0.0000020024,0.0000020006,0.0000019981, +0.0000019953,0.0000019925,0.0000019902,0.0000019889,0.0000019878, +0.0000019885,0.0000019910,0.0000019943,0.0000019975,0.0000019998, +0.0000020007,0.0000020004,0.0000019984,0.0000019956,0.0000019929, +0.0000019904,0.0000019882,0.0000019861,0.0000019837,0.0000019809, +0.0000019779,0.0000019750,0.0000019709,0.0000019665,0.0000019631, +0.0000019615,0.0000019608,0.0000019591,0.0000019551,0.0000019497, +0.0000019440,0.0000019396,0.0000019373,0.0000019373,0.0000019398, +0.0000019446,0.0000019510,0.0000019576,0.0000019625,0.0000019629, +0.0000019666,0.0000019677,0.0000019668,0.0000019664,0.0000019673, +0.0000019688,0.0000019713,0.0000019737,0.0000019762,0.0000019793, +0.0000019829,0.0000019867,0.0000019908,0.0000019954,0.0000020005, +0.0000020055,0.0000020100,0.0000020144,0.0000020185,0.0000020223, +0.0000020262,0.0000020300,0.0000020337,0.0000020371,0.0000020402, +0.0000020430,0.0000020459,0.0000020488,0.0000020517,0.0000020543, +0.0000020567,0.0000020590,0.0000020613,0.0000020635,0.0000020655, +0.0000020672,0.0000020684,0.0000020686,0.0000020681,0.0000020673, +0.0000020665,0.0000020654,0.0000020638,0.0000020622,0.0000020614, +0.0000020614,0.0000020631,0.0000020656,0.0000020683,0.0000020704, +0.0000020709,0.0000020701,0.0000020684,0.0000020661,0.0000020632, +0.0000020598,0.0000020562,0.0000020523,0.0000020487,0.0000020464, +0.0000020453,0.0000020452,0.0000020447,0.0000020440,0.0000020434, +0.0000020427,0.0000020411,0.0000020392,0.0000020384,0.0000020380, +0.0000020366,0.0000020348,0.0000020333,0.0000020337,0.0000020364, +0.0000020398,0.0000020426,0.0000020455,0.0000020488,0.0000020526, +0.0000020560,0.0000020587,0.0000020611,0.0000020645,0.0000020686, +0.0000020727,0.0000020760,0.0000020785,0.0000020803,0.0000020814, +0.0000020816,0.0000020814,0.0000020802,0.0000020779,0.0000020758, +0.0000020746,0.0000020740,0.0000020740,0.0000020749,0.0000020769, +0.0000020796,0.0000020822,0.0000020850,0.0000020881,0.0000020921, +0.0000020970,0.0000021022,0.0000021073,0.0000021117,0.0000021152, +0.0000021182,0.0000021206,0.0000021223,0.0000021234,0.0000021239, +0.0000021239,0.0000021230,0.0000021214,0.0000021193,0.0000021172, +0.0000021151,0.0000021129,0.0000021104,0.0000021079,0.0000021053, +0.0000021026,0.0000020999,0.0000020975,0.0000020953,0.0000020936, +0.0000020927,0.0000020927,0.0000020932,0.0000020941,0.0000020952, +0.0000020961,0.0000020960,0.0000020947,0.0000020924,0.0000020899, +0.0000020879,0.0000020865,0.0000020846,0.0000020819,0.0000020794, +0.0000020779,0.0000020772,0.0000020771,0.0000020774,0.0000020784, +0.0000020798,0.0000020809,0.0000020817,0.0000020833,0.0000020863, +0.0000020899,0.0000020938,0.0000020980,0.0000021022,0.0000021056, +0.0000021075,0.0000021081,0.0000021079,0.0000021067,0.0000021046, +0.0000021025,0.0000021019,0.0000021019,0.0000021013,0.0000020997, +0.0000020984,0.0000020981,0.0000020997,0.0000021050,0.0000021127, +0.0000021195,0.0000021251,0.0000021307,0.0000021356,0.0000021383, +0.0000021393,0.0000021397,0.0000021401,0.0000021400,0.0000021384, +0.0000021351,0.0000021306,0.0000021266,0.0000021241,0.0000021236, +0.0000021239,0.0000021246,0.0000021254,0.0000021256,0.0000021250, +0.0000021242,0.0000021232,0.0000021220,0.0000021207,0.0000021195, +0.0000021186,0.0000021177,0.0000021168,0.0000021162,0.0000021158, +0.0000021155,0.0000021155,0.0000021163,0.0000021185,0.0000021226, +0.0000021271,0.0000021317,0.0000021368,0.0000021427,0.0000021491, +0.0000021549,0.0000021593,0.0000021631,0.0000021671,0.0000021721, +0.0000021774,0.0000021822,0.0000021864,0.0000021902,0.0000021934, +0.0000021959,0.0000021969,0.0000021964,0.0000021945,0.0000021924, +0.0000021890,0.0000021851,0.0000021807,0.0000021757,0.0000021705, +0.0000021656,0.0000021614,0.0000021586,0.0000021567,0.0000021550, +0.0000021532,0.0000021517,0.0000021505,0.0000021499,0.0000021499, +0.0000021504,0.0000021512,0.0000021521,0.0000021532,0.0000021544, +0.0000021558,0.0000021572,0.0000021586,0.0000021600,0.0000021613, +0.0000021624,0.0000021633,0.0000021638,0.0000021638,0.0000021632, +0.0000021622,0.0000021610,0.0000021598,0.0000021584,0.0000021567, +0.0000021546,0.0000021523,0.0000021497,0.0000021470,0.0000021439, +0.0000021402,0.0000021363,0.0000021324,0.0000021291,0.0000021280, +0.0000021297,0.0000021364,0.0000021450,0.0000021520,0.0000021573, +0.0000021609,0.0000021615,0.0000021599,0.0000021545,0.0000021503, +0.0000021484,0.0000021465,0.0000021434,0.0000021395,0.0000021362, +0.0000021340,0.0000021338,0.0000021353,0.0000021365,0.0000021359, +0.0000021334,0.0000021296,0.0000021257,0.0000021228,0.0000021223, +0.0000021237,0.0000021260,0.0000021268,0.0000021258,0.0000021235, +0.0000021209,0.0000021183,0.0000021156,0.0000021134,0.0000021123, +0.0000021119,0.0000021118,0.0000021125,0.0000021131,0.0000021134, +0.0000021136,0.0000021130,0.0000021127,0.0000021128,0.0000021136, +0.0000021157,0.0000021185,0.0000021202,0.0000021214,0.0000021220, +0.0000021216,0.0000021201,0.0000021176,0.0000021143,0.0000021098, +0.0000021041,0.0000020977,0.0000020928,0.0000020897,0.0000020881, +0.0000020875,0.0000020875,0.0000020876,0.0000020876,0.0000020876, +0.0000020883,0.0000020887,0.0000020884,0.0000020884,0.0000020878, +0.0000020872,0.0000020865,0.0000020843,0.0000020793,0.0000020720, +0.0000020609,0.0000020471,0.0000020384,0.0000020339,0.0000020290, +0.0000020171,0.0000020165,0.0000020232,0.0000020248,0.0000020258, +0.0000020338,0.0000020444,0.0000020494,0.0000020490,0.0000020496, +0.0000020550,0.0000020611,0.0000020671,0.0000020697,0.0000020720, +0.0000020789,0.0000020934,0.0000021095,0.0000021176,0.0000021230, +0.0000021402,0.0000021482,0.0000021455,0.0000021529,0.0000021582, +0.0000021551,0.0000021551,0.0000021643,0.0000021698,0.0000021658, +0.0000021654,0.0000021831,0.0000021929,0.0000021879,0.0000021769, +0.0000021723,0.0000021742,0.0000021740,0.0000021785,0.0000021890, +0.0000021860,0.0000021851,0.0000021981,0.0000022037,0.0000022040, +0.0000022111,0.0000022269,0.0000022378,0.0000022427,0.0000022462, +0.0000022468,0.0000022464,0.0000022461,0.0000022466,0.0000022482, +0.0000022499,0.0000022505,0.0000022520,0.0000022554,0.0000022578, +0.0000022574,0.0000022531,0.0000022443,0.0000022334,0.0000022214, +0.0000022109,0.0000022060,0.0000022053,0.0000022068,0.0000022108, +0.0000022149,0.0000022160,0.0000022134,0.0000022077,0.0000022007, +0.0000021926,0.0000021844,0.0000021773,0.0000021693,0.0000021600, +0.0000021504,0.0000021413,0.0000021340,0.0000021285,0.0000021236, +0.0000021190,0.0000021146,0.0000021099,0.0000021045,0.0000020994, +0.0000020991,0.0000021006,0.0000021037,0.0000021075,0.0000021134, +0.0000021198,0.0000021276,0.0000021378,0.0000021497,0.0000021625, +0.0000021737,0.0000021802,0.0000021808,0.0000021769,0.0000021710, +0.0000021653,0.0000021610,0.0000021604,0.0000021610,0.0000021606, +0.0000021587,0.0000021554,0.0000021522,0.0000021499,0.0000021485, +0.0000021478,0.0000021472,0.0000021467,0.0000021460,0.0000021457, +0.0000021473,0.0000021493,0.0000021506,0.0000021529,0.0000021556, +0.0000021575,0.0000021592,0.0000021631,0.0000021674,0.0000021688, +0.0000021678,0.0000021658,0.0000021657,0.0000021675,0.0000021701, +0.0000021729,0.0000021759,0.0000021787,0.0000021807,0.0000021818, +0.0000021828,0.0000021851,0.0000021886,0.0000021921,0.0000021952, +0.0000021979,0.0000022014,0.0000022045,0.0000022067,0.0000022086, +0.0000022104,0.0000022131,0.0000022171,0.0000022216,0.0000022263, +0.0000022308,0.0000022342,0.0000022366,0.0000022380,0.0000022377, +0.0000022349,0.0000022317,0.0000022296,0.0000022269,0.0000022238, +0.0000022207,0.0000022174,0.0000022141,0.0000022120,0.0000022099, +0.0000022082,0.0000022067,0.0000022064,0.0000022063,0.0000022064, +0.0000022069,0.0000022073,0.0000022081,0.0000022092,0.0000022104, +0.0000022119,0.0000022135,0.0000022151,0.0000022169,0.0000022191, +0.0000022213,0.0000022235,0.0000022257,0.0000022281,0.0000022306, +0.0000022324,0.0000022342,0.0000022352,0.0000022349,0.0000022340, +0.0000022324,0.0000022298,0.0000022266,0.0000022232,0.0000022197, +0.0000022164,0.0000022129,0.0000022085,0.0000022026,0.0000021947, +0.0000021856,0.0000021764,0.0000021681,0.0000021613,0.0000021569, +0.0000021548,0.0000021549,0.0000021562,0.0000021582,0.0000021607, +0.0000021633,0.0000021659,0.0000021682,0.0000021704,0.0000021725, +0.0000021749,0.0000021772,0.0000021792,0.0000021811,0.0000021833, +0.0000021858,0.0000021878,0.0000021890,0.0000021893,0.0000021889, +0.0000021881,0.0000021877,0.0000021872,0.0000021872,0.0000021877, +0.0000021887,0.0000021889,0.0000021885,0.0000021875,0.0000021854, +0.0000021823,0.0000021782,0.0000021735,0.0000021688,0.0000021640, +0.0000021592,0.0000021557,0.0000021539,0.0000021542,0.0000021555, +0.0000021598,0.0000021661,0.0000021728,0.0000021794,0.0000021849, +0.0000021881,0.0000021908,0.0000021930,0.0000021943,0.0000021952, +0.0000021963,0.0000021973,0.0000021981,0.0000021984,0.0000021978, +0.0000021964,0.0000021946,0.0000021923,0.0000021894,0.0000021861, +0.0000021829,0.0000021800,0.0000021774,0.0000021747,0.0000021721, +0.0000021702,0.0000021686,0.0000021669,0.0000021649,0.0000021631, +0.0000021618,0.0000021606,0.0000021596,0.0000021586,0.0000021573, +0.0000021557,0.0000021538,0.0000021519,0.0000021501,0.0000021491, +0.0000021495,0.0000021510,0.0000021534,0.0000021554,0.0000021582, +0.0000021601,0.0000021614,0.0000021622,0.0000021618,0.0000021608, +0.0000021592,0.0000021572,0.0000021550,0.0000021526,0.0000021499, +0.0000021469,0.0000021442,0.0000021419,0.0000021400,0.0000021385, +0.0000021369,0.0000021353,0.0000021338,0.0000021327,0.0000021318, +0.0000021309,0.0000021304,0.0000021306,0.0000021311,0.0000021315, +0.0000021316,0.0000021313,0.0000021303,0.0000021284,0.0000021256, +0.0000021223,0.0000021182,0.0000021130,0.0000021069,0.0000021005, +0.0000020948,0.0000020899,0.0000020853,0.0000020809,0.0000020770, +0.0000020747,0.0000020743,0.0000020763,0.0000020774,0.0000020796, +0.0000020816,0.0000020831,0.0000020844,0.0000020850,0.0000020849, +0.0000020840,0.0000020823,0.0000020811,0.0000020811,0.0000020826, +0.0000020854,0.0000020888,0.0000020924,0.0000020964,0.0000021004, +0.0000021043,0.0000021077,0.0000021105,0.0000021122,0.0000021129, +0.0000021120,0.0000021104,0.0000021092,0.0000021085,0.0000021084, +0.0000021093,0.0000021105,0.0000021119,0.0000021133,0.0000021144, +0.0000021140,0.0000021128,0.0000021113,0.0000021083,0.0000021045, +0.0000021000,0.0000020955,0.0000020915,0.0000020875,0.0000020839, +0.0000020808,0.0000020780,0.0000020755,0.0000020725,0.0000020692, +0.0000020656,0.0000020625,0.0000020608,0.0000020593,0.0000020583, +0.0000020585,0.0000020573,0.0000020604,0.0000020625,0.0000020654, +0.0000020684,0.0000020699,0.0000020719,0.0000020732,0.0000020736, +0.0000020733,0.0000020726,0.0000020721,0.0000020723,0.0000020729, +0.0000020733,0.0000020735,0.0000020733,0.0000020730,0.0000020725, +0.0000020715,0.0000020705,0.0000020694,0.0000020682,0.0000020669, +0.0000020651,0.0000020631,0.0000020610,0.0000020593,0.0000020572, +0.0000020550,0.0000020528,0.0000020508,0.0000020492,0.0000020481, +0.0000020470,0.0000020464,0.0000020461,0.0000020461,0.0000020463, +0.0000020464,0.0000020459,0.0000020453,0.0000020445,0.0000020437, +0.0000020426,0.0000020411,0.0000020392,0.0000020374,0.0000020354, +0.0000020332,0.0000020310,0.0000020287,0.0000020266,0.0000020250, +0.0000020238,0.0000020240,0.0000020255,0.0000020275,0.0000020293, +0.0000020303,0.0000020303,0.0000020295,0.0000020280,0.0000020261, +0.0000020237,0.0000020212,0.0000020195,0.0000020180,0.0000020165, +0.0000020143,0.0000020113,0.0000020081,0.0000020046,0.0000020012, +0.0000019981,0.0000019956,0.0000019933,0.0000019906,0.0000019876, +0.0000019849,0.0000019826,0.0000019806,0.0000019787,0.0000019771, +0.0000019750,0.0000019725,0.0000019697,0.0000019671,0.0000019651, +0.0000019629,0.0000019613,0.0000019613,0.0000019641,0.0000019692, +0.0000019756,0.0000019824,0.0000019879,0.0000019911,0.0000019919, +0.0000019902,0.0000019852,0.0000019797,0.0000019775,0.0000019777, +0.0000019780,0.0000019773,0.0000019752,0.0000019724,0.0000019693, +0.0000019659,0.0000019638,0.0000019637,0.0000019644,0.0000019654, +0.0000019666,0.0000019655,0.0000019610,0.0000019565,0.0000019550, +0.0000019571,0.0000019621,0.0000019681,0.0000019739,0.0000019792, +0.0000019836,0.0000019879,0.0000019921,0.0000019952,0.0000019974, +0.0000020002,0.0000020048,0.0000020103,0.0000020151,0.0000020188, +0.0000020220,0.0000020262,0.0000020325,0.0000020397,0.0000020456, +0.0000020492,0.0000020504,0.0000020489,0.0000020459,0.0000020432, +0.0000020406,0.0000020381,0.0000020367,0.0000020368,0.0000020390, +0.0000020434,0.0000020492,0.0000020560,0.0000020621,0.0000020663, +0.0000020675,0.0000020668,0.0000020637,0.0000020604,0.0000020558, +0.0000020517,0.0000020479,0.0000020443,0.0000020417,0.0000020392, +0.0000020382,0.0000020385,0.0000020406,0.0000020435,0.0000020480, +0.0000020539,0.0000020619,0.0000020727,0.0000020855,0.0000020986, +0.0000021097,0.0000021180,0.0000021233,0.0000021258,0.0000021257, +0.0000021238,0.0000021201,0.0000021152,0.0000021094,0.0000021034, +0.0000020980,0.0000020933,0.0000020895,0.0000020862,0.0000020831, +0.0000020800,0.0000020769,0.0000020738,0.0000020708,0.0000020681, +0.0000020659,0.0000020641,0.0000020630,0.0000020625,0.0000020624, +0.0000020629,0.0000020640,0.0000020656,0.0000020674,0.0000020693, +0.0000020711,0.0000020729,0.0000020746,0.0000020759,0.0000020768, +0.0000020778,0.0000020790,0.0000020804,0.0000020813,0.0000020818, +0.0000020821,0.0000020824,0.0000020829,0.0000020837,0.0000020847, +0.0000020858,0.0000020860,0.0000020856,0.0000020847,0.0000020840, +0.0000020833,0.0000020817,0.0000020784,0.0000020738,0.0000020691, +0.0000020658,0.0000020643,0.0000020643,0.0000020656,0.0000020674, +0.0000020688,0.0000020703,0.0000020722,0.0000020740,0.0000020752, +0.0000020753,0.0000020744,0.0000020736,0.0000020721,0.0000020672, +0.0000020615,0.0000020596,0.0000020605,0.0000020608,0.0000020626, +0.0000020690,0.0000020798,0.0000020927,0.0000021021,0.0000021078, +0.0000021127,0.0000021202,0.0000021269,0.0000021283,0.0000021283, +0.0000021280,0.0000021255,0.0000021216,0.0000021195,0.0000021173, +0.0000021142,0.0000021117,0.0000021101,0.0000021090,0.0000021089, +0.0000021104,0.0000021130,0.0000021163,0.0000021210,0.0000021270, +0.0000021332,0.0000021391,0.0000021445,0.0000021491,0.0000021530, +0.0000021559,0.0000021577,0.0000021586,0.0000021588,0.0000021590, +0.0000021593,0.0000021601,0.0000021610,0.0000021611,0.0000021601, +0.0000021579,0.0000021547,0.0000021507,0.0000021469,0.0000021427, +0.0000021388,0.0000021356,0.0000021341,0.0000021341,0.0000021353, +0.0000021373,0.0000021394,0.0000021405,0.0000021406,0.0000021390, +0.0000021363,0.0000021329,0.0000021296,0.0000021279,0.0000021284, +0.0000021339,0.0000021431,0.0000021558,0.0000021698,0.0000021837, +0.0000021939,0.0000022018,0.0000022036,0.0000022053,0.0000022037, +0.0000022019,0.0000021976,0.0000021960,0.0000021971,0.0000021949, +0.0000021967,0.0000021987,0.0000022019,0.0000022068,0.0000022110, +0.0000022144,0.0000022166,0.0000022174,0.0000022163,0.0000022127, +0.0000022067,0.0000022006,0.0000021977,0.0000021988,0.0000022046, +0.0000022136,0.0000022218,0.0000022271,0.0000022306,0.0000022335, +0.0000022364,0.0000022388,0.0000022403,0.0000022406,0.0000022399, +0.0000022374,0.0000022335,0.0000022294,0.0000022264,0.0000022254, +0.0000022256,0.0000022262,0.0000022264,0.0000022262,0.0000022258, +0.0000022203,0.0000022081,0.0000021937,0.0000021817,0.0000021704, +0.0000021559,0.0000021386,0.0000021223,0.0000021061,0.0000020873, +0.0000020669,0.0000020491,0.0000020363,0.0000020277,0.0000020207, +0.0000020143,0.0000020093,0.0000020056,0.0000020042,0.0000020025, +0.0000020001,0.0000019994,0.0000020019,0.0000020057,0.0000020082, +0.0000020090,0.0000020086,0.0000020070,0.0000020041,0.0000020000, +0.0000019964,0.0000019941,0.0000019942,0.0000019955,0.0000019967, +0.0000019962,0.0000019944,0.0000019915,0.0000019894,0.0000019890, +0.0000019910,0.0000019948,0.0000019994,0.0000020041,0.0000020091, +0.0000020144,0.0000020196,0.0000020238,0.0000020257,0.0000020260, +0.0000020256,0.0000020247,0.0000020229,0.0000020202,0.0000020171, +0.0000020142,0.0000020124,0.0000020118,0.0000020126,0.0000020139, +0.0000020188,0.0000020289,0.0000020440,0.0000020601,0.0000020718, +0.0000020755,0.0000020731,0.0000020699,0.0000020692,0.0000020705, +0.0000020722,0.0000020718,0.0000020718,0.0000020698,0.0000020660, +0.0000020614,0.0000020570,0.0000020542,0.0000020543,0.0000020560, +0.0000020612,0.0000020684,0.0000020770,0.0000020863,0.0000020947, +0.0000021020,0.0000021089,0.0000021152,0.0000021205,0.0000021246, +0.0000021279,0.0000021315,0.0000021364,0.0000021420,0.0000021477, +0.0000021533,0.0000021583,0.0000021618,0.0000021635,0.0000021636, +0.0000021622,0.0000021604,0.0000021586,0.0000021580,0.0000021578, +0.0000021587,0.0000021603,0.0000021617,0.0000021627,0.0000021635, +0.0000021638,0.0000021634,0.0000021626,0.0000021616,0.0000021603, +0.0000021589,0.0000021577,0.0000021564,0.0000021552,0.0000021541, +0.0000021528,0.0000021508,0.0000021477,0.0000021435,0.0000021382, +0.0000021320,0.0000021253,0.0000021184,0.0000021114,0.0000021046, +0.0000020982,0.0000020932,0.0000020902,0.0000020892,0.0000020894, +0.0000020900,0.0000020904,0.0000020904,0.0000020901,0.0000020896, +0.0000020887,0.0000020872,0.0000020849,0.0000020822,0.0000020792, +0.0000020766,0.0000020746,0.0000020734,0.0000020726,0.0000020732, +0.0000020751,0.0000020776,0.0000020805,0.0000020832,0.0000020844, +0.0000020844,0.0000020832,0.0000020813,0.0000020792,0.0000020767, +0.0000020740,0.0000020716,0.0000020695,0.0000020681,0.0000020681, +0.0000020695,0.0000020711,0.0000020722,0.0000020728,0.0000020725, +0.0000020710,0.0000020683,0.0000020643,0.0000020592,0.0000020538, +0.0000020490,0.0000020462,0.0000020455,0.0000020458,0.0000020459, +0.0000020445,0.0000020414,0.0000020376,0.0000020332,0.0000020285, +0.0000020241,0.0000020201,0.0000020169,0.0000020152,0.0000020154, +0.0000020175,0.0000020207,0.0000020243,0.0000020282,0.0000020318, +0.0000020351,0.0000020387,0.0000020427,0.0000020471,0.0000020515, +0.0000020555,0.0000020592,0.0000020623,0.0000020647,0.0000020660, +0.0000020664,0.0000020652,0.0000020637,0.0000020629,0.0000020620, +0.0000020607,0.0000020589,0.0000020566,0.0000020540,0.0000020516, +0.0000020495,0.0000020474,0.0000020454,0.0000020433,0.0000020411, +0.0000020387,0.0000020366,0.0000020349,0.0000020330,0.0000020308, +0.0000020280,0.0000020246,0.0000020211,0.0000020177,0.0000020141, +0.0000020104,0.0000020069,0.0000020035,0.0000020000,0.0000019971, +0.0000019950,0.0000019933,0.0000019918,0.0000019901,0.0000019881, +0.0000019859,0.0000019837,0.0000019820,0.0000019805,0.0000019789, +0.0000019775,0.0000019761,0.0000019745,0.0000019729,0.0000019719, +0.0000019715,0.0000019714,0.0000019712,0.0000019708,0.0000019699, +0.0000019686,0.0000019667,0.0000019651,0.0000019644,0.0000019645, +0.0000019659,0.0000019684,0.0000019714,0.0000019746,0.0000019770, +0.0000019786,0.0000019792,0.0000019787,0.0000019775,0.0000019763, +0.0000019752,0.0000019745,0.0000019739,0.0000019734,0.0000019733, +0.0000019734,0.0000019734,0.0000019732,0.0000019726,0.0000019715, +0.0000019698,0.0000019677,0.0000019651,0.0000019622,0.0000019591, +0.0000019559,0.0000019530,0.0000019510,0.0000019498,0.0000019491, +0.0000019497,0.0000019510,0.0000019526,0.0000019540,0.0000019551, +0.0000019561,0.0000019569,0.0000019573,0.0000019571,0.0000019564, +0.0000019554,0.0000019547,0.0000019546,0.0000019553,0.0000019567, +0.0000019583,0.0000019597,0.0000019605,0.0000019605,0.0000019601, +0.0000019594,0.0000019586,0.0000019574,0.0000019563,0.0000019555, +0.0000019554,0.0000019558,0.0000019562,0.0000019559,0.0000019551, +0.0000019544,0.0000019542,0.0000019543,0.0000019551,0.0000019566, +0.0000019587,0.0000019611,0.0000019630,0.0000019646,0.0000019665, +0.0000019690,0.0000019724,0.0000019762,0.0000019785,0.0000019768, +0.0000019710,0.0000019645,0.0000019603,0.0000019647,0.0000019791, +0.0000019952,0.0000020153,0.0000020263,0.0000020240,0.0000020289, +0.0000020434,0.0000020504,0.0000020516,0.0000020531,0.0000020517, +0.0000020463,0.0000020419,0.0000020405,0.0000020407,0.0000020416, +0.0000020429,0.0000020439,0.0000020447,0.0000020455,0.0000020460, +0.0000020457,0.0000020420,0.0000020363,0.0000020303,0.0000020245, +0.0000020212,0.0000020217,0.0000020257,0.0000020286,0.0000020269, +0.0000020203,0.0000020146,0.0000020133,0.0000020144,0.0000020167, +0.0000020198,0.0000020217,0.0000020219,0.0000020206,0.0000020181, +0.0000020165,0.0000020173,0.0000020208,0.0000020250,0.0000020302, +0.0000020359,0.0000020391,0.0000020378,0.0000020335,0.0000020310, +0.0000020317,0.0000020347,0.0000020366,0.0000020364,0.0000020341, +0.0000020319,0.0000020302,0.0000020287,0.0000020274,0.0000020261, +0.0000020247,0.0000020239,0.0000020238,0.0000020239,0.0000020236, +0.0000020239,0.0000020240,0.0000020237,0.0000020232,0.0000020224, +0.0000020214,0.0000020203,0.0000020191,0.0000020178,0.0000020163, +0.0000020153,0.0000020143,0.0000020133,0.0000020120,0.0000020106, +0.0000020091,0.0000020077,0.0000020065,0.0000020053,0.0000020042, +0.0000020033,0.0000020027,0.0000020021,0.0000020016,0.0000020013, +0.0000020010,0.0000020008,0.0000020005,0.0000020002,0.0000020000, +0.0000019998,0.0000019998,0.0000019999,0.0000020002,0.0000020005, +0.0000020010,0.0000020016,0.0000020021,0.0000020023,0.0000020025, +0.0000020026,0.0000020024,0.0000020020,0.0000020015,0.0000020009, +0.0000020001,0.0000019992,0.0000019984,0.0000019979,0.0000019975, +0.0000019973,0.0000019973,0.0000019978,0.0000019984,0.0000019991, +0.0000019999,0.0000020005,0.0000020011,0.0000020014,0.0000020018, +0.0000020022,0.0000020025,0.0000020025,0.0000020023,0.0000020019, +0.0000020010,0.0000019996,0.0000019973,0.0000019944,0.0000019907, +0.0000019869,0.0000019834,0.0000019810,0.0000019795,0.0000019795, +0.0000019817,0.0000019848,0.0000019881,0.0000019907,0.0000019914, +0.0000019899,0.0000019866,0.0000019831,0.0000019807,0.0000019794, +0.0000019786,0.0000019775,0.0000019756,0.0000019730,0.0000019697, +0.0000019652,0.0000019601,0.0000019564,0.0000019549,0.0000019541, +0.0000019522,0.0000019483,0.0000019438,0.0000019404,0.0000019391, +0.0000019400,0.0000019432,0.0000019469,0.0000019520,0.0000019575, +0.0000019599,0.0000019649,0.0000019694,0.0000019719,0.0000019722, +0.0000019715,0.0000019713,0.0000019725,0.0000019748,0.0000019771, +0.0000019794,0.0000019820,0.0000019848,0.0000019881,0.0000019914, +0.0000019955,0.0000019997,0.0000020033,0.0000020065,0.0000020095, +0.0000020124,0.0000020153,0.0000020182,0.0000020211,0.0000020239, +0.0000020269,0.0000020298,0.0000020328,0.0000020360,0.0000020389, +0.0000020413,0.0000020432,0.0000020452,0.0000020473,0.0000020493, +0.0000020509,0.0000020522,0.0000020529,0.0000020528,0.0000020521, +0.0000020515,0.0000020509,0.0000020497,0.0000020478,0.0000020463, +0.0000020459,0.0000020469,0.0000020492,0.0000020525,0.0000020558, +0.0000020582,0.0000020591,0.0000020587,0.0000020573,0.0000020550, +0.0000020519,0.0000020484,0.0000020448,0.0000020414,0.0000020387, +0.0000020368,0.0000020360,0.0000020361,0.0000020360,0.0000020358, +0.0000020358,0.0000020360,0.0000020355,0.0000020346,0.0000020344, +0.0000020340,0.0000020331,0.0000020321,0.0000020316,0.0000020320, +0.0000020343,0.0000020374,0.0000020399,0.0000020420,0.0000020443, +0.0000020472,0.0000020500,0.0000020527,0.0000020550,0.0000020572, +0.0000020601,0.0000020636,0.0000020673,0.0000020706,0.0000020729, +0.0000020744,0.0000020750,0.0000020750,0.0000020750,0.0000020746, +0.0000020740,0.0000020732,0.0000020725,0.0000020718,0.0000020713, +0.0000020711,0.0000020716,0.0000020731,0.0000020750,0.0000020774, +0.0000020802,0.0000020841,0.0000020890,0.0000020941,0.0000020987, +0.0000021026,0.0000021060,0.0000021092,0.0000021117,0.0000021133, +0.0000021145,0.0000021152,0.0000021153,0.0000021145,0.0000021131, +0.0000021116,0.0000021097,0.0000021075,0.0000021050,0.0000021024, +0.0000020998,0.0000020974,0.0000020951,0.0000020930,0.0000020912, +0.0000020894,0.0000020880,0.0000020877,0.0000020881,0.0000020889, +0.0000020902,0.0000020920,0.0000020937,0.0000020948,0.0000020949, +0.0000020939,0.0000020915,0.0000020890,0.0000020873,0.0000020853, +0.0000020823,0.0000020794,0.0000020774,0.0000020762,0.0000020757, +0.0000020760,0.0000020770,0.0000020781,0.0000020785,0.0000020789, +0.0000020805,0.0000020836,0.0000020876,0.0000020922,0.0000020964, +0.0000020998,0.0000021022,0.0000021037,0.0000021045,0.0000021047, +0.0000021040,0.0000021020,0.0000020998,0.0000020989,0.0000020990, +0.0000020991,0.0000020982,0.0000020975,0.0000020978,0.0000020997, +0.0000021040,0.0000021106,0.0000021170,0.0000021224,0.0000021276, +0.0000021323,0.0000021350,0.0000021358,0.0000021360,0.0000021358, +0.0000021354,0.0000021346,0.0000021327,0.0000021298,0.0000021265, +0.0000021243,0.0000021239,0.0000021247,0.0000021266,0.0000021285, +0.0000021296,0.0000021294,0.0000021284,0.0000021267,0.0000021246, +0.0000021227,0.0000021213,0.0000021203,0.0000021195,0.0000021186, +0.0000021180,0.0000021175,0.0000021169,0.0000021165,0.0000021166, +0.0000021175,0.0000021195,0.0000021236,0.0000021287,0.0000021338, +0.0000021391,0.0000021453,0.0000021520,0.0000021578,0.0000021618, +0.0000021646,0.0000021674,0.0000021710,0.0000021752,0.0000021793, +0.0000021830,0.0000021864,0.0000021892,0.0000021916,0.0000021931, +0.0000021934,0.0000021925,0.0000021908,0.0000021886,0.0000021852, +0.0000021809,0.0000021762,0.0000021715,0.0000021674,0.0000021643, +0.0000021616,0.0000021590,0.0000021569,0.0000021552,0.0000021537, +0.0000021527,0.0000021522,0.0000021523,0.0000021528,0.0000021534, +0.0000021541,0.0000021551,0.0000021564,0.0000021578,0.0000021591, +0.0000021605,0.0000021619,0.0000021631,0.0000021639,0.0000021643, +0.0000021639,0.0000021630,0.0000021619,0.0000021606,0.0000021592, +0.0000021577,0.0000021557,0.0000021534,0.0000021509,0.0000021483, +0.0000021458,0.0000021431,0.0000021401,0.0000021368,0.0000021333, +0.0000021300,0.0000021273,0.0000021280,0.0000021328,0.0000021414, +0.0000021500,0.0000021561,0.0000021605,0.0000021638,0.0000021637, +0.0000021596,0.0000021543,0.0000021516,0.0000021503,0.0000021482, +0.0000021448,0.0000021410,0.0000021384,0.0000021378,0.0000021376, +0.0000021365,0.0000021338,0.0000021307,0.0000021281,0.0000021272, +0.0000021285,0.0000021306,0.0000021322,0.0000021328,0.0000021321, +0.0000021304,0.0000021277,0.0000021245,0.0000021216,0.0000021195, +0.0000021181,0.0000021173,0.0000021165,0.0000021160,0.0000021156, +0.0000021149,0.0000021142,0.0000021129,0.0000021115,0.0000021109, +0.0000021108,0.0000021114,0.0000021130,0.0000021139,0.0000021145, +0.0000021152,0.0000021154,0.0000021146,0.0000021127,0.0000021104, +0.0000021071,0.0000021027,0.0000020969,0.0000020908,0.0000020862, +0.0000020826,0.0000020805,0.0000020799,0.0000020801,0.0000020805, +0.0000020806,0.0000020804,0.0000020803,0.0000020798,0.0000020794, +0.0000020792,0.0000020794,0.0000020803,0.0000020800,0.0000020769, +0.0000020704,0.0000020597,0.0000020456,0.0000020354,0.0000020300, +0.0000020264,0.0000020148,0.0000020115,0.0000020185,0.0000020211, +0.0000020214,0.0000020271,0.0000020381,0.0000020455,0.0000020464, +0.0000020465,0.0000020518,0.0000020581,0.0000020643,0.0000020676, +0.0000020698,0.0000020767,0.0000020914,0.0000021079,0.0000021168, +0.0000021210,0.0000021377,0.0000021471,0.0000021444,0.0000021510, +0.0000021566,0.0000021540,0.0000021551,0.0000021630,0.0000021672, +0.0000021631,0.0000021640,0.0000021824,0.0000021899,0.0000021843, +0.0000021740,0.0000021710,0.0000021736,0.0000021731,0.0000021785, +0.0000021890,0.0000021866,0.0000021854,0.0000021976,0.0000022048, +0.0000022047,0.0000022094,0.0000022237,0.0000022368,0.0000022430, +0.0000022466,0.0000022469,0.0000022463,0.0000022466,0.0000022475, +0.0000022481,0.0000022490,0.0000022500,0.0000022518,0.0000022548, +0.0000022563,0.0000022548,0.0000022488,0.0000022385,0.0000022262, +0.0000022131,0.0000022028,0.0000021991,0.0000021991,0.0000022020, +0.0000022078,0.0000022121,0.0000022126,0.0000022097,0.0000022033, +0.0000021944,0.0000021844,0.0000021747,0.0000021661,0.0000021580, +0.0000021502,0.0000021424,0.0000021341,0.0000021272,0.0000021216, +0.0000021169,0.0000021130,0.0000021094,0.0000021049,0.0000020997, +0.0000020944,0.0000020929,0.0000020938,0.0000020970,0.0000021021, +0.0000021092,0.0000021163,0.0000021233,0.0000021296,0.0000021360, +0.0000021440,0.0000021538,0.0000021631,0.0000021695,0.0000021719, +0.0000021703,0.0000021649,0.0000021604,0.0000021564,0.0000021541, +0.0000021516,0.0000021484,0.0000021453,0.0000021434,0.0000021425, +0.0000021416,0.0000021413,0.0000021413,0.0000021419,0.0000021425, +0.0000021429,0.0000021447,0.0000021471,0.0000021474,0.0000021468, +0.0000021477,0.0000021498,0.0000021516,0.0000021545,0.0000021589, +0.0000021622,0.0000021624,0.0000021596,0.0000021576,0.0000021577, +0.0000021596,0.0000021624,0.0000021649,0.0000021675,0.0000021699, +0.0000021720,0.0000021746,0.0000021780,0.0000021818,0.0000021850, +0.0000021876,0.0000021897,0.0000021925,0.0000021954,0.0000021977, +0.0000021993,0.0000022003,0.0000022023,0.0000022060,0.0000022108, +0.0000022157,0.0000022205,0.0000022242,0.0000022272,0.0000022296, +0.0000022299,0.0000022280,0.0000022262,0.0000022246,0.0000022219, +0.0000022191,0.0000022165,0.0000022137,0.0000022105,0.0000022087, +0.0000022067,0.0000022045,0.0000022024,0.0000022012,0.0000022003, +0.0000022000,0.0000022002,0.0000021997,0.0000021994,0.0000021993, +0.0000021988,0.0000021993,0.0000022000,0.0000022013,0.0000022029, +0.0000022049,0.0000022072,0.0000022102,0.0000022132,0.0000022162, +0.0000022194,0.0000022227,0.0000022258,0.0000022289,0.0000022310, +0.0000022322,0.0000022328,0.0000022310,0.0000022291,0.0000022260, +0.0000022222,0.0000022187,0.0000022153,0.0000022120,0.0000022084, +0.0000022038,0.0000021977,0.0000021907,0.0000021833,0.0000021758, +0.0000021691,0.0000021642,0.0000021609,0.0000021592,0.0000021593, +0.0000021603,0.0000021620,0.0000021635,0.0000021649,0.0000021663, +0.0000021681,0.0000021703,0.0000021727,0.0000021750,0.0000021774, +0.0000021797,0.0000021817,0.0000021833,0.0000021847,0.0000021856, +0.0000021858,0.0000021856,0.0000021854,0.0000021855,0.0000021859, +0.0000021870,0.0000021879,0.0000021885,0.0000021882,0.0000021875, +0.0000021859,0.0000021839,0.0000021817,0.0000021792,0.0000021766, +0.0000021740,0.0000021707,0.0000021666,0.0000021626,0.0000021590, +0.0000021566,0.0000021573,0.0000021606,0.0000021654,0.0000021714, +0.0000021776,0.0000021821,0.0000021863,0.0000021902,0.0000021935, +0.0000021960,0.0000021982,0.0000022007,0.0000022029,0.0000022053, +0.0000022065,0.0000022070,0.0000022061,0.0000022043,0.0000022016, +0.0000021983,0.0000021944,0.0000021906,0.0000021873,0.0000021842, +0.0000021813,0.0000021789,0.0000021773,0.0000021759,0.0000021743, +0.0000021728,0.0000021713,0.0000021695,0.0000021675,0.0000021654, +0.0000021630,0.0000021603,0.0000021574,0.0000021544,0.0000021516, +0.0000021494,0.0000021491,0.0000021497,0.0000021512,0.0000021537, +0.0000021565,0.0000021589,0.0000021610,0.0000021629,0.0000021629, +0.0000021627,0.0000021616,0.0000021599,0.0000021576,0.0000021553, +0.0000021532,0.0000021510,0.0000021489,0.0000021473,0.0000021458, +0.0000021446,0.0000021434,0.0000021418,0.0000021400,0.0000021384, +0.0000021371,0.0000021356,0.0000021340,0.0000021333,0.0000021335, +0.0000021337,0.0000021337,0.0000021335,0.0000021336,0.0000021334, +0.0000021321,0.0000021303,0.0000021278,0.0000021243,0.0000021195, +0.0000021135,0.0000021071,0.0000021012,0.0000020958,0.0000020906, +0.0000020851,0.0000020809,0.0000020793,0.0000020794,0.0000020794, +0.0000020796,0.0000020796,0.0000020801,0.0000020798,0.0000020799, +0.0000020805,0.0000020797,0.0000020782,0.0000020773,0.0000020772, +0.0000020778,0.0000020787,0.0000020797,0.0000020806,0.0000020821, +0.0000020843,0.0000020876,0.0000020919,0.0000020962,0.0000020998, +0.0000021025,0.0000021038,0.0000021040,0.0000021038,0.0000021035, +0.0000021032,0.0000021036,0.0000021047,0.0000021065,0.0000021084, +0.0000021103,0.0000021114,0.0000021115,0.0000021107,0.0000021090, +0.0000021064,0.0000021030,0.0000021000,0.0000020968,0.0000020935, +0.0000020906,0.0000020882,0.0000020863,0.0000020846,0.0000020826, +0.0000020806,0.0000020782,0.0000020757,0.0000020730,0.0000020700, +0.0000020667,0.0000020633,0.0000020609,0.0000020594,0.0000020577, +0.0000020568,0.0000020565,0.0000020545,0.0000020533,0.0000020502, +0.0000020487,0.0000020474,0.0000020458,0.0000020442,0.0000020440, +0.0000020438,0.0000020439,0.0000020443,0.0000020448,0.0000020453, +0.0000020454,0.0000020451,0.0000020451,0.0000020449,0.0000020446, +0.0000020439,0.0000020427,0.0000020413,0.0000020398,0.0000020387, +0.0000020377,0.0000020366,0.0000020353,0.0000020342,0.0000020333, +0.0000020326,0.0000020321,0.0000020318,0.0000020320,0.0000020325, +0.0000020332,0.0000020340,0.0000020345,0.0000020346,0.0000020345, +0.0000020343,0.0000020334,0.0000020318,0.0000020298,0.0000020275, +0.0000020248,0.0000020215,0.0000020177,0.0000020140,0.0000020113, +0.0000020093,0.0000020080,0.0000020082,0.0000020096,0.0000020115, +0.0000020131,0.0000020141,0.0000020143,0.0000020139,0.0000020131, +0.0000020118,0.0000020101,0.0000020083,0.0000020072,0.0000020064, +0.0000020056,0.0000020046,0.0000020029,0.0000020010,0.0000019989, +0.0000019968,0.0000019946,0.0000019925,0.0000019909,0.0000019891, +0.0000019867,0.0000019844,0.0000019827,0.0000019813,0.0000019797, +0.0000019782,0.0000019759,0.0000019731,0.0000019704,0.0000019678, +0.0000019657,0.0000019634,0.0000019609,0.0000019599,0.0000019608, +0.0000019651,0.0000019712,0.0000019777,0.0000019833,0.0000019870, +0.0000019885,0.0000019877,0.0000019838,0.0000019777,0.0000019734, +0.0000019727,0.0000019731,0.0000019730,0.0000019717,0.0000019697, +0.0000019670,0.0000019640,0.0000019619,0.0000019615,0.0000019620, +0.0000019627,0.0000019642,0.0000019648,0.0000019619,0.0000019568, +0.0000019534,0.0000019532,0.0000019568,0.0000019634,0.0000019696, +0.0000019741,0.0000019774,0.0000019815,0.0000019861,0.0000019898, +0.0000019926,0.0000019948,0.0000019980,0.0000020030,0.0000020084, +0.0000020125,0.0000020148,0.0000020159,0.0000020180,0.0000020226, +0.0000020286,0.0000020344,0.0000020390,0.0000020421,0.0000020436, +0.0000020436,0.0000020422,0.0000020410,0.0000020395,0.0000020380, +0.0000020379,0.0000020388,0.0000020403,0.0000020433,0.0000020478, +0.0000020525,0.0000020559,0.0000020574,0.0000020575,0.0000020561, +0.0000020544,0.0000020528,0.0000020511,0.0000020508,0.0000020507, +0.0000020493,0.0000020459,0.0000020419,0.0000020381,0.0000020366, +0.0000020347,0.0000020358,0.0000020388,0.0000020449,0.0000020538, +0.0000020645,0.0000020756,0.0000020854,0.0000020931,0.0000020984, +0.0000021014,0.0000021022,0.0000021012,0.0000020986,0.0000020950, +0.0000020907,0.0000020860,0.0000020813,0.0000020770,0.0000020731, +0.0000020692,0.0000020654,0.0000020614,0.0000020574,0.0000020536, +0.0000020503,0.0000020475,0.0000020454,0.0000020441,0.0000020435, +0.0000020434,0.0000020437,0.0000020448,0.0000020468,0.0000020494, +0.0000020522,0.0000020549,0.0000020578,0.0000020606,0.0000020632, +0.0000020650,0.0000020662,0.0000020677,0.0000020692,0.0000020705, +0.0000020715,0.0000020726,0.0000020745,0.0000020772,0.0000020797, +0.0000020814,0.0000020821,0.0000020821,0.0000020819,0.0000020820, +0.0000020822,0.0000020819,0.0000020797,0.0000020755,0.0000020706, +0.0000020665,0.0000020640,0.0000020631,0.0000020635,0.0000020649, +0.0000020669,0.0000020687,0.0000020703,0.0000020719,0.0000020731, +0.0000020739,0.0000020742,0.0000020738,0.0000020723,0.0000020711, +0.0000020691,0.0000020633,0.0000020587,0.0000020584,0.0000020589, +0.0000020593,0.0000020626,0.0000020705,0.0000020832,0.0000020951, +0.0000021022,0.0000021071,0.0000021141,0.0000021227,0.0000021265, +0.0000021271,0.0000021280,0.0000021274,0.0000021241,0.0000021216, +0.0000021193,0.0000021149,0.0000021103,0.0000021073,0.0000021059, +0.0000021058,0.0000021071,0.0000021097,0.0000021126,0.0000021158, +0.0000021197,0.0000021241,0.0000021287,0.0000021334,0.0000021378, +0.0000021415,0.0000021445,0.0000021469,0.0000021485,0.0000021493, +0.0000021497,0.0000021500,0.0000021508,0.0000021521,0.0000021532, +0.0000021533,0.0000021525,0.0000021509,0.0000021487,0.0000021461, +0.0000021432,0.0000021394,0.0000021358,0.0000021326,0.0000021300, +0.0000021285,0.0000021285,0.0000021301,0.0000021325,0.0000021348, +0.0000021365,0.0000021377,0.0000021371,0.0000021354,0.0000021320, +0.0000021281,0.0000021259,0.0000021248,0.0000021264,0.0000021325, +0.0000021429,0.0000021566,0.0000021712,0.0000021851,0.0000021957, +0.0000022030,0.0000022056,0.0000022064,0.0000022055,0.0000022040, +0.0000022015,0.0000021996,0.0000021971,0.0000021953,0.0000021971, +0.0000021967,0.0000021969,0.0000021988,0.0000022000,0.0000022003, +0.0000022003,0.0000021987,0.0000021959,0.0000021938,0.0000021936, +0.0000021964,0.0000022031,0.0000022116,0.0000022188,0.0000022235, +0.0000022268,0.0000022296,0.0000022318,0.0000022330,0.0000022334, +0.0000022333,0.0000022319,0.0000022296,0.0000022266,0.0000022237, +0.0000022222,0.0000022222,0.0000022232,0.0000022241,0.0000022250, +0.0000022253,0.0000022233,0.0000022170,0.0000022052,0.0000021925, +0.0000021817,0.0000021707,0.0000021557,0.0000021386,0.0000021219, +0.0000021047,0.0000020848,0.0000020640,0.0000020464,0.0000020338, +0.0000020251,0.0000020177,0.0000020108,0.0000020047,0.0000020012, +0.0000019994,0.0000019973,0.0000019947,0.0000019938,0.0000019961, +0.0000019996,0.0000020022,0.0000020034,0.0000020037,0.0000020031, +0.0000020009,0.0000019973,0.0000019934,0.0000019904,0.0000019890, +0.0000019897,0.0000019910,0.0000019917,0.0000019908,0.0000019886, +0.0000019861,0.0000019848,0.0000019858,0.0000019891,0.0000019938, +0.0000019991,0.0000020041,0.0000020092,0.0000020147,0.0000020195, +0.0000020223,0.0000020237,0.0000020239,0.0000020230,0.0000020217, +0.0000020201,0.0000020177,0.0000020155,0.0000020140,0.0000020133, +0.0000020128,0.0000020124,0.0000020134,0.0000020203,0.0000020338, +0.0000020501,0.0000020638,0.0000020702,0.0000020694,0.0000020661, +0.0000020639,0.0000020652,0.0000020682,0.0000020712,0.0000020722, +0.0000020726,0.0000020709,0.0000020673,0.0000020623,0.0000020578, +0.0000020550,0.0000020551,0.0000020566,0.0000020612,0.0000020685, +0.0000020771,0.0000020858,0.0000020943,0.0000021023,0.0000021096, +0.0000021154,0.0000021194,0.0000021222,0.0000021250,0.0000021287, +0.0000021329,0.0000021377,0.0000021431,0.0000021484,0.0000021529, +0.0000021560,0.0000021574,0.0000021575,0.0000021568,0.0000021556, +0.0000021543,0.0000021534,0.0000021534,0.0000021539,0.0000021546, +0.0000021555,0.0000021565,0.0000021569,0.0000021567,0.0000021562, +0.0000021550,0.0000021536,0.0000021524,0.0000021514,0.0000021500, +0.0000021486,0.0000021468,0.0000021445,0.0000021410,0.0000021361, +0.0000021302,0.0000021234,0.0000021160,0.0000021084,0.0000021011, +0.0000020943,0.0000020885,0.0000020843,0.0000020821,0.0000020818, +0.0000020826,0.0000020837,0.0000020847,0.0000020853,0.0000020856, +0.0000020859,0.0000020860,0.0000020857,0.0000020845,0.0000020829, +0.0000020806,0.0000020777,0.0000020750,0.0000020730,0.0000020718, +0.0000020716,0.0000020730,0.0000020746,0.0000020764,0.0000020782, +0.0000020796,0.0000020803,0.0000020805,0.0000020800,0.0000020788, +0.0000020766,0.0000020745,0.0000020723,0.0000020700,0.0000020681, +0.0000020676,0.0000020683,0.0000020699,0.0000020715,0.0000020726, +0.0000020729,0.0000020723,0.0000020702,0.0000020668,0.0000020626, +0.0000020581,0.0000020536,0.0000020496,0.0000020468,0.0000020457, +0.0000020454,0.0000020445,0.0000020425,0.0000020396,0.0000020360, +0.0000020317,0.0000020267,0.0000020210,0.0000020158,0.0000020109, +0.0000020072,0.0000020052,0.0000020052,0.0000020069,0.0000020101, +0.0000020140,0.0000020177,0.0000020209,0.0000020240,0.0000020274, +0.0000020310,0.0000020344,0.0000020376,0.0000020408,0.0000020443, +0.0000020480,0.0000020517,0.0000020549,0.0000020573,0.0000020595, +0.0000020612,0.0000020612,0.0000020600,0.0000020583,0.0000020564, +0.0000020539,0.0000020509,0.0000020479,0.0000020452,0.0000020422, +0.0000020391,0.0000020360,0.0000020331,0.0000020303,0.0000020279, +0.0000020250,0.0000020215,0.0000020176,0.0000020137,0.0000020101, +0.0000020068,0.0000020037,0.0000020010,0.0000019986,0.0000019964, +0.0000019943,0.0000019929,0.0000019920,0.0000019912,0.0000019902, +0.0000019886,0.0000019866,0.0000019838,0.0000019808,0.0000019778, +0.0000019752,0.0000019729,0.0000019710,0.0000019691,0.0000019671, +0.0000019657,0.0000019653,0.0000019657,0.0000019669,0.0000019681, +0.0000019689,0.0000019691,0.0000019683,0.0000019667,0.0000019646, +0.0000019628,0.0000019618,0.0000019614,0.0000019626,0.0000019651, +0.0000019683,0.0000019716,0.0000019743,0.0000019760,0.0000019767, +0.0000019765,0.0000019758,0.0000019751,0.0000019742,0.0000019733, +0.0000019727,0.0000019723,0.0000019722,0.0000019723,0.0000019726, +0.0000019724,0.0000019717,0.0000019703,0.0000019684,0.0000019660, +0.0000019632,0.0000019601,0.0000019567,0.0000019535,0.0000019509, +0.0000019489,0.0000019478,0.0000019477,0.0000019483,0.0000019492, +0.0000019500,0.0000019505,0.0000019512,0.0000019520,0.0000019526, +0.0000019528,0.0000019524,0.0000019519,0.0000019516,0.0000019519, +0.0000019525,0.0000019533,0.0000019544,0.0000019553,0.0000019557, +0.0000019555,0.0000019549,0.0000019542,0.0000019535,0.0000019525, +0.0000019516,0.0000019512,0.0000019517,0.0000019525,0.0000019530, +0.0000019528,0.0000019523,0.0000019517,0.0000019511,0.0000019509, +0.0000019512,0.0000019525,0.0000019548,0.0000019578,0.0000019604, +0.0000019625,0.0000019646,0.0000019675,0.0000019712,0.0000019751, +0.0000019772,0.0000019750,0.0000019687,0.0000019621,0.0000019592, +0.0000019656,0.0000019806,0.0000019973,0.0000020178,0.0000020275, +0.0000020246,0.0000020301,0.0000020446,0.0000020512,0.0000020517, +0.0000020532,0.0000020530,0.0000020488,0.0000020445,0.0000020427, +0.0000020426,0.0000020432,0.0000020442,0.0000020448,0.0000020451, +0.0000020458,0.0000020471,0.0000020473,0.0000020451,0.0000020388, +0.0000020316,0.0000020252,0.0000020212,0.0000020212,0.0000020244, +0.0000020271,0.0000020258,0.0000020204,0.0000020156,0.0000020145, +0.0000020156,0.0000020178,0.0000020204,0.0000020219,0.0000020215, +0.0000020195,0.0000020170,0.0000020161,0.0000020175,0.0000020210, +0.0000020253,0.0000020305,0.0000020355,0.0000020371,0.0000020347, +0.0000020314,0.0000020307,0.0000020326,0.0000020356,0.0000020367, +0.0000020352,0.0000020333,0.0000020323,0.0000020313,0.0000020302, +0.0000020285,0.0000020270,0.0000020258,0.0000020249,0.0000020242, +0.0000020235,0.0000020234,0.0000020235,0.0000020234,0.0000020230, +0.0000020224,0.0000020216,0.0000020205,0.0000020194,0.0000020183, +0.0000020175,0.0000020170,0.0000020164,0.0000020156,0.0000020147, +0.0000020135,0.0000020122,0.0000020111,0.0000020099,0.0000020087, +0.0000020077,0.0000020067,0.0000020057,0.0000020046,0.0000020035, +0.0000020026,0.0000020019,0.0000020012,0.0000020005,0.0000019997, +0.0000019991,0.0000019985,0.0000019978,0.0000019972,0.0000019966, +0.0000019963,0.0000019961,0.0000019960,0.0000019963,0.0000019967, +0.0000019971,0.0000019976,0.0000019978,0.0000019976,0.0000019972, +0.0000019968,0.0000019963,0.0000019956,0.0000019948,0.0000019939, +0.0000019930,0.0000019924,0.0000019922,0.0000019924,0.0000019928, +0.0000019935,0.0000019942,0.0000019949,0.0000019956,0.0000019963, +0.0000019970,0.0000019977,0.0000019982,0.0000019984,0.0000019983, +0.0000019980,0.0000019975,0.0000019969,0.0000019959,0.0000019945, +0.0000019925,0.0000019899,0.0000019867,0.0000019830,0.0000019790, +0.0000019750,0.0000019719,0.0000019701,0.0000019701,0.0000019725, +0.0000019760,0.0000019792,0.0000019807,0.0000019804,0.0000019775, +0.0000019741,0.0000019718,0.0000019713,0.0000019714,0.0000019710, +0.0000019696,0.0000019670,0.0000019627,0.0000019571,0.0000019520, +0.0000019495,0.0000019492,0.0000019493,0.0000019486,0.0000019461, +0.0000019446,0.0000019454,0.0000019471,0.0000019495,0.0000019523, +0.0000019562,0.0000019604,0.0000019634,0.0000019676,0.0000019725, +0.0000019769,0.0000019793,0.0000019800,0.0000019798,0.0000019802, +0.0000019815,0.0000019833,0.0000019854,0.0000019875,0.0000019900, +0.0000019924,0.0000019948,0.0000019981,0.0000020008,0.0000020032, +0.0000020054,0.0000020074,0.0000020093,0.0000020113,0.0000020129, +0.0000020144,0.0000020159,0.0000020179,0.0000020200,0.0000020222, +0.0000020243,0.0000020264,0.0000020284,0.0000020306,0.0000020331, +0.0000020354,0.0000020372,0.0000020383,0.0000020387,0.0000020384, +0.0000020378,0.0000020371,0.0000020365,0.0000020354,0.0000020340, +0.0000020328,0.0000020331,0.0000020354,0.0000020385,0.0000020422, +0.0000020456,0.0000020481,0.0000020498,0.0000020499,0.0000020487, +0.0000020464,0.0000020429,0.0000020392,0.0000020354,0.0000020321, +0.0000020297,0.0000020283,0.0000020277,0.0000020280,0.0000020280, +0.0000020281,0.0000020286,0.0000020295,0.0000020298,0.0000020295, +0.0000020296,0.0000020297,0.0000020294,0.0000020296,0.0000020301, +0.0000020308,0.0000020326,0.0000020349,0.0000020371,0.0000020388, +0.0000020403,0.0000020420,0.0000020441,0.0000020462,0.0000020483, +0.0000020503,0.0000020523,0.0000020551,0.0000020585,0.0000020618, +0.0000020648,0.0000020671,0.0000020683,0.0000020686,0.0000020686, +0.0000020686,0.0000020688,0.0000020693,0.0000020693,0.0000020691, +0.0000020687,0.0000020679,0.0000020671,0.0000020669,0.0000020673, +0.0000020684,0.0000020702,0.0000020728,0.0000020765,0.0000020811, +0.0000020860,0.0000020902,0.0000020938,0.0000020972,0.0000021003, +0.0000021027,0.0000021040,0.0000021047,0.0000021048,0.0000021044, +0.0000021034,0.0000021023,0.0000021007,0.0000020985,0.0000020960, +0.0000020932,0.0000020906,0.0000020884,0.0000020867,0.0000020852, +0.0000020842,0.0000020835,0.0000020831,0.0000020833,0.0000020841, +0.0000020850,0.0000020860,0.0000020878,0.0000020900,0.0000020925, +0.0000020945,0.0000020953,0.0000020948,0.0000020920,0.0000020891, +0.0000020868,0.0000020841,0.0000020808,0.0000020779,0.0000020759, +0.0000020746,0.0000020743,0.0000020747,0.0000020756,0.0000020759, +0.0000020759,0.0000020769,0.0000020794,0.0000020833,0.0000020880, +0.0000020925,0.0000020958,0.0000020979,0.0000020990,0.0000020998, +0.0000021005,0.0000021007,0.0000021001,0.0000020983,0.0000020965, +0.0000020962,0.0000020969,0.0000020971,0.0000020969,0.0000020971, +0.0000020983,0.0000021005,0.0000021048,0.0000021109,0.0000021168, +0.0000021218,0.0000021260,0.0000021293,0.0000021311,0.0000021316, +0.0000021312,0.0000021305,0.0000021298,0.0000021294,0.0000021285, +0.0000021270,0.0000021253,0.0000021248,0.0000021254,0.0000021272, +0.0000021297,0.0000021322,0.0000021336,0.0000021335,0.0000021321, +0.0000021295,0.0000021267,0.0000021242,0.0000021225,0.0000021216, +0.0000021207,0.0000021201,0.0000021195,0.0000021187,0.0000021181, +0.0000021176,0.0000021175,0.0000021178,0.0000021195,0.0000021232, +0.0000021280,0.0000021331,0.0000021385,0.0000021445,0.0000021510, +0.0000021568,0.0000021610,0.0000021639,0.0000021660,0.0000021680, +0.0000021705,0.0000021736,0.0000021768,0.0000021798,0.0000021825, +0.0000021856,0.0000021879,0.0000021894,0.0000021898,0.0000021891, +0.0000021873,0.0000021843,0.0000021812,0.0000021772,0.0000021735, +0.0000021702,0.0000021672,0.0000021642,0.0000021619,0.0000021597, +0.0000021580,0.0000021567,0.0000021556,0.0000021550,0.0000021549, +0.0000021548,0.0000021550,0.0000021554,0.0000021562,0.0000021571, +0.0000021583,0.0000021594,0.0000021608,0.0000021622,0.0000021633, +0.0000021638,0.0000021637,0.0000021632,0.0000021624,0.0000021613, +0.0000021598,0.0000021583,0.0000021564,0.0000021541,0.0000021516, +0.0000021491,0.0000021465,0.0000021436,0.0000021406,0.0000021379, +0.0000021353,0.0000021328,0.0000021301,0.0000021284,0.0000021295, +0.0000021356,0.0000021450,0.0000021528,0.0000021579,0.0000021624, +0.0000021657,0.0000021654,0.0000021603,0.0000021550,0.0000021524, +0.0000021512,0.0000021489,0.0000021451,0.0000021421,0.0000021403, +0.0000021383,0.0000021358,0.0000021325,0.0000021305,0.0000021312, +0.0000021344,0.0000021365,0.0000021367,0.0000021361,0.0000021355, +0.0000021340,0.0000021315,0.0000021282,0.0000021248,0.0000021220, +0.0000021204,0.0000021198,0.0000021192,0.0000021182,0.0000021170, +0.0000021161,0.0000021147,0.0000021133,0.0000021116,0.0000021100, +0.0000021090,0.0000021082,0.0000021080,0.0000021078,0.0000021073, +0.0000021074,0.0000021083,0.0000021087,0.0000021080,0.0000021065, +0.0000021047,0.0000021020,0.0000020979,0.0000020923,0.0000020866, +0.0000020820,0.0000020778,0.0000020746,0.0000020732,0.0000020729, +0.0000020732,0.0000020731,0.0000020723,0.0000020711,0.0000020705, +0.0000020704,0.0000020707,0.0000020727,0.0000020747,0.0000020744, +0.0000020705,0.0000020613,0.0000020475,0.0000020350,0.0000020279, +0.0000020255,0.0000020156,0.0000020071,0.0000020127,0.0000020173, +0.0000020177,0.0000020207,0.0000020306,0.0000020407,0.0000020441, +0.0000020440,0.0000020480,0.0000020548,0.0000020611,0.0000020655, +0.0000020681,0.0000020739,0.0000020878,0.0000021053,0.0000021154, +0.0000021190,0.0000021333,0.0000021457,0.0000021438,0.0000021488, +0.0000021557,0.0000021538,0.0000021545,0.0000021614,0.0000021654, +0.0000021613,0.0000021625,0.0000021803,0.0000021874,0.0000021821, +0.0000021725,0.0000021702,0.0000021733,0.0000021729,0.0000021785, +0.0000021897,0.0000021886,0.0000021864,0.0000021962,0.0000022066, +0.0000022067,0.0000022089,0.0000022198,0.0000022344,0.0000022426, +0.0000022468,0.0000022472,0.0000022462,0.0000022469,0.0000022478, +0.0000022474,0.0000022478,0.0000022497,0.0000022520,0.0000022532, +0.0000022529,0.0000022499,0.0000022427,0.0000022316,0.0000022181, +0.0000022052,0.0000021969,0.0000021945,0.0000021957,0.0000021999, +0.0000022057,0.0000022084,0.0000022081,0.0000022046,0.0000021978, +0.0000021877,0.0000021761,0.0000021657,0.0000021569,0.0000021498, +0.0000021442,0.0000021383,0.0000021312,0.0000021246,0.0000021179, +0.0000021118,0.0000021072,0.0000021040,0.0000021011,0.0000020971, +0.0000020920,0.0000020893,0.0000020889,0.0000020906,0.0000020952, +0.0000021023,0.0000021110,0.0000021182,0.0000021240,0.0000021288, +0.0000021340,0.0000021403,0.0000021457,0.0000021507,0.0000021554, +0.0000021588,0.0000021592,0.0000021583,0.0000021558,0.0000021526, +0.0000021482,0.0000021424,0.0000021369,0.0000021335,0.0000021317, +0.0000021309,0.0000021312,0.0000021325,0.0000021346,0.0000021374, +0.0000021405,0.0000021436,0.0000021458,0.0000021464,0.0000021454, +0.0000021440,0.0000021438,0.0000021452,0.0000021478,0.0000021513, +0.0000021549,0.0000021570,0.0000021562,0.0000021538,0.0000021519, +0.0000021524,0.0000021545,0.0000021563,0.0000021581,0.0000021600, +0.0000021626,0.0000021662,0.0000021705,0.0000021749,0.0000021785, +0.0000021811,0.0000021833,0.0000021858,0.0000021882,0.0000021903, +0.0000021910,0.0000021921,0.0000021937,0.0000021967,0.0000022011, +0.0000022057,0.0000022101,0.0000022137,0.0000022172,0.0000022199, +0.0000022204,0.0000022198,0.0000022199,0.0000022184,0.0000022159, +0.0000022137,0.0000022116,0.0000022089,0.0000022062,0.0000022047, +0.0000022024,0.0000021997,0.0000021972,0.0000021952,0.0000021938, +0.0000021937,0.0000021935,0.0000021927,0.0000021923,0.0000021916, +0.0000021906,0.0000021902,0.0000021897,0.0000021899,0.0000021904, +0.0000021913,0.0000021928,0.0000021954,0.0000021985,0.0000022019, +0.0000022058,0.0000022099,0.0000022137,0.0000022173,0.0000022203, +0.0000022229,0.0000022250,0.0000022260,0.0000022261,0.0000022250, +0.0000022220,0.0000022189,0.0000022158,0.0000022122,0.0000022084, +0.0000022046,0.0000022004,0.0000021953,0.0000021900,0.0000021847, +0.0000021800,0.0000021758,0.0000021721,0.0000021697,0.0000021678, +0.0000021660,0.0000021649,0.0000021649,0.0000021656,0.0000021672, +0.0000021694,0.0000021720,0.0000021748,0.0000021776,0.0000021800, +0.0000021819,0.0000021834,0.0000021845,0.0000021855,0.0000021863, +0.0000021864,0.0000021861,0.0000021861,0.0000021865,0.0000021875, +0.0000021888,0.0000021897,0.0000021900,0.0000021893,0.0000021878, +0.0000021855,0.0000021830,0.0000021808,0.0000021792,0.0000021777, +0.0000021765,0.0000021753,0.0000021733,0.0000021703,0.0000021668, +0.0000021636,0.0000021624,0.0000021633,0.0000021666,0.0000021702, +0.0000021739,0.0000021775,0.0000021809,0.0000021845,0.0000021879, +0.0000021913,0.0000021951,0.0000021991,0.0000022036,0.0000022071, +0.0000022101,0.0000022127,0.0000022130,0.0000022121,0.0000022103, +0.0000022069,0.0000022025,0.0000021979,0.0000021936,0.0000021897, +0.0000021861,0.0000021835,0.0000021823,0.0000021817,0.0000021813, +0.0000021809,0.0000021801,0.0000021788,0.0000021770,0.0000021748, +0.0000021721,0.0000021689,0.0000021654,0.0000021615,0.0000021575, +0.0000021542,0.0000021523,0.0000021512,0.0000021519,0.0000021530, +0.0000021547,0.0000021569,0.0000021592,0.0000021612,0.0000021624, +0.0000021624,0.0000021619,0.0000021606,0.0000021585,0.0000021569, +0.0000021555,0.0000021542,0.0000021533,0.0000021526,0.0000021521, +0.0000021514,0.0000021504,0.0000021488,0.0000021469,0.0000021450, +0.0000021429,0.0000021406,0.0000021384,0.0000021368,0.0000021356, +0.0000021346,0.0000021339,0.0000021335,0.0000021334,0.0000021333, +0.0000021323,0.0000021309,0.0000021290,0.0000021263,0.0000021225, +0.0000021176,0.0000021121,0.0000021068,0.0000021019,0.0000020964, +0.0000020912,0.0000020883,0.0000020876,0.0000020872,0.0000020865, +0.0000020854,0.0000020835,0.0000020821,0.0000020808,0.0000020801, +0.0000020789,0.0000020770,0.0000020761,0.0000020762,0.0000020765, +0.0000020766,0.0000020767,0.0000020762,0.0000020759,0.0000020757, +0.0000020765,0.0000020787,0.0000020818,0.0000020848,0.0000020877, +0.0000020903,0.0000020925,0.0000020945,0.0000020962,0.0000020975, +0.0000020984,0.0000020996,0.0000021011,0.0000021026,0.0000021043, +0.0000021059,0.0000021068,0.0000021069,0.0000021063,0.0000021047, +0.0000021025,0.0000021000,0.0000020975,0.0000020952,0.0000020930, +0.0000020916,0.0000020904,0.0000020888,0.0000020869,0.0000020850, +0.0000020832,0.0000020814,0.0000020795,0.0000020775,0.0000020753, +0.0000020731,0.0000020712,0.0000020690,0.0000020668,0.0000020646, +0.0000020621,0.0000020593,0.0000020562,0.0000020530,0.0000020496, +0.0000020464,0.0000020436,0.0000020412,0.0000020399,0.0000020390, +0.0000020385,0.0000020386,0.0000020392,0.0000020399,0.0000020404, +0.0000020406,0.0000020411,0.0000020414,0.0000020414,0.0000020411, +0.0000020402,0.0000020390,0.0000020375,0.0000020361,0.0000020352, +0.0000020347,0.0000020339,0.0000020333,0.0000020326,0.0000020319, +0.0000020311,0.0000020305,0.0000020304,0.0000020308,0.0000020316, +0.0000020324,0.0000020330,0.0000020334,0.0000020337,0.0000020337, +0.0000020331,0.0000020316,0.0000020296,0.0000020271,0.0000020239, +0.0000020197,0.0000020147,0.0000020102,0.0000020071,0.0000020039, +0.0000020018,0.0000020017,0.0000020023,0.0000020033,0.0000020043, +0.0000020050,0.0000020050,0.0000020044,0.0000020038,0.0000020030, +0.0000020019,0.0000020006,0.0000019997,0.0000019989,0.0000019979, +0.0000019970,0.0000019959,0.0000019947,0.0000019937,0.0000019926, +0.0000019911,0.0000019894,0.0000019883,0.0000019875,0.0000019863, +0.0000019846,0.0000019833,0.0000019824,0.0000019812,0.0000019797, +0.0000019772,0.0000019746,0.0000019725,0.0000019702,0.0000019681, +0.0000019656,0.0000019624,0.0000019604,0.0000019604,0.0000019633, +0.0000019687,0.0000019745,0.0000019798,0.0000019837,0.0000019857, +0.0000019852,0.0000019821,0.0000019762,0.0000019706,0.0000019686, +0.0000019684,0.0000019685,0.0000019675,0.0000019661,0.0000019640, +0.0000019613,0.0000019594,0.0000019591,0.0000019596,0.0000019600, +0.0000019611,0.0000019624,0.0000019612,0.0000019566,0.0000019525, +0.0000019514,0.0000019533,0.0000019594,0.0000019669,0.0000019718, +0.0000019752,0.0000019792,0.0000019833,0.0000019867,0.0000019892, +0.0000019907,0.0000019925,0.0000019960,0.0000020009,0.0000020056, +0.0000020092,0.0000020105,0.0000020104,0.0000020112,0.0000020140, +0.0000020184,0.0000020234,0.0000020284,0.0000020332,0.0000020373, +0.0000020397,0.0000020403,0.0000020399,0.0000020387,0.0000020384, +0.0000020383,0.0000020384,0.0000020390,0.0000020407,0.0000020437, +0.0000020465,0.0000020480,0.0000020480,0.0000020470,0.0000020456, +0.0000020446,0.0000020444,0.0000020455,0.0000020489,0.0000020516, +0.0000020519,0.0000020505,0.0000020471,0.0000020424,0.0000020361, +0.0000020318,0.0000020282,0.0000020278,0.0000020309,0.0000020375, +0.0000020467,0.0000020563,0.0000020651,0.0000020722,0.0000020771, +0.0000020799,0.0000020808,0.0000020801,0.0000020785,0.0000020759, +0.0000020727,0.0000020693,0.0000020659,0.0000020623,0.0000020588, +0.0000020554,0.0000020520,0.0000020487,0.0000020455,0.0000020426, +0.0000020401,0.0000020381,0.0000020363,0.0000020349,0.0000020340, +0.0000020338,0.0000020343,0.0000020357,0.0000020378,0.0000020406, +0.0000020434,0.0000020461,0.0000020489,0.0000020516,0.0000020537, +0.0000020555,0.0000020578,0.0000020604,0.0000020631,0.0000020656, +0.0000020680,0.0000020710,0.0000020738,0.0000020757,0.0000020768, +0.0000020777,0.0000020790,0.0000020804,0.0000020810,0.0000020806, +0.0000020785,0.0000020748,0.0000020706,0.0000020672,0.0000020649, +0.0000020637,0.0000020637,0.0000020649,0.0000020666,0.0000020685, +0.0000020703,0.0000020722,0.0000020740,0.0000020747,0.0000020742, +0.0000020737,0.0000020734,0.0000020722,0.0000020705,0.0000020689, +0.0000020638,0.0000020585,0.0000020577,0.0000020581,0.0000020583, +0.0000020606,0.0000020676,0.0000020802,0.0000020922,0.0000020990, +0.0000021040,0.0000021118,0.0000021206,0.0000021241,0.0000021251, +0.0000021270,0.0000021265,0.0000021239,0.0000021218,0.0000021187, +0.0000021133,0.0000021072,0.0000021032,0.0000021016,0.0000021018, +0.0000021034,0.0000021065,0.0000021099,0.0000021133,0.0000021167, +0.0000021200,0.0000021231,0.0000021266,0.0000021299,0.0000021327, +0.0000021350,0.0000021368,0.0000021381,0.0000021390,0.0000021398, +0.0000021407,0.0000021419,0.0000021433,0.0000021443,0.0000021446, +0.0000021443,0.0000021434,0.0000021422,0.0000021404,0.0000021381, +0.0000021354,0.0000021327,0.0000021301,0.0000021275,0.0000021252, +0.0000021239,0.0000021240,0.0000021253,0.0000021274,0.0000021302, +0.0000021330,0.0000021351,0.0000021356,0.0000021349,0.0000021328, +0.0000021298,0.0000021263,0.0000021227,0.0000021223,0.0000021235, +0.0000021293,0.0000021389,0.0000021516,0.0000021660,0.0000021799, +0.0000021915,0.0000021994,0.0000022053,0.0000022070,0.0000022082, +0.0000022081,0.0000022072,0.0000022060,0.0000022043,0.0000022030, +0.0000022019,0.0000022011,0.0000021996,0.0000021987,0.0000021979, +0.0000021962,0.0000021944,0.0000021936,0.0000021943,0.0000021983, +0.0000022037,0.0000022106,0.0000022165,0.0000022206,0.0000022237, +0.0000022261,0.0000022276,0.0000022278,0.0000022275,0.0000022264, +0.0000022246,0.0000022225,0.0000022201,0.0000022181,0.0000022172, +0.0000022175,0.0000022187,0.0000022202,0.0000022214,0.0000022216, +0.0000022193,0.0000022120,0.0000022022,0.0000021915,0.0000021821, +0.0000021719,0.0000021579,0.0000021413,0.0000021247,0.0000021073, +0.0000020871,0.0000020659,0.0000020476,0.0000020342,0.0000020248, +0.0000020171,0.0000020095,0.0000020026,0.0000019983,0.0000019953, +0.0000019929,0.0000019899,0.0000019885,0.0000019899,0.0000019928, +0.0000019953,0.0000019967,0.0000019975,0.0000019977,0.0000019970, +0.0000019947,0.0000019913,0.0000019875,0.0000019846,0.0000019835, +0.0000019847,0.0000019868,0.0000019877,0.0000019863,0.0000019839, +0.0000019818,0.0000019815,0.0000019835,0.0000019878,0.0000019933, +0.0000019986,0.0000020035,0.0000020084,0.0000020138,0.0000020183, +0.0000020212,0.0000020218,0.0000020213,0.0000020204,0.0000020191, +0.0000020175,0.0000020159,0.0000020152,0.0000020149,0.0000020137, +0.0000020113,0.0000020097,0.0000020128,0.0000020227,0.0000020378, +0.0000020532,0.0000020632,0.0000020659,0.0000020629,0.0000020598, +0.0000020594,0.0000020628,0.0000020682,0.0000020725,0.0000020742, +0.0000020750,0.0000020723,0.0000020678,0.0000020626,0.0000020583, +0.0000020550,0.0000020546,0.0000020557,0.0000020604,0.0000020675, +0.0000020758,0.0000020848,0.0000020940,0.0000021025,0.0000021098, +0.0000021149,0.0000021181,0.0000021201,0.0000021220,0.0000021245, +0.0000021281,0.0000021329,0.0000021381,0.0000021429,0.0000021468, +0.0000021491,0.0000021503,0.0000021504,0.0000021499,0.0000021489, +0.0000021480,0.0000021477,0.0000021475,0.0000021477,0.0000021482, +0.0000021486,0.0000021491,0.0000021491,0.0000021487,0.0000021474, +0.0000021460,0.0000021445,0.0000021422,0.0000021394,0.0000021360, +0.0000021321,0.0000021276,0.0000021221,0.0000021158,0.0000021090, +0.0000021020,0.0000020949,0.0000020879,0.0000020819,0.0000020775, +0.0000020747,0.0000020734,0.0000020738,0.0000020750,0.0000020764, +0.0000020778,0.0000020790,0.0000020799,0.0000020805,0.0000020813, +0.0000020820,0.0000020823,0.0000020825,0.0000020819,0.0000020803, +0.0000020784,0.0000020769,0.0000020754,0.0000020748,0.0000020751, +0.0000020755,0.0000020763,0.0000020775,0.0000020785,0.0000020795, +0.0000020803,0.0000020805,0.0000020794,0.0000020774,0.0000020755, +0.0000020733,0.0000020709,0.0000020691,0.0000020679,0.0000020679, +0.0000020691,0.0000020707,0.0000020719,0.0000020723,0.0000020721, +0.0000020709,0.0000020687,0.0000020654,0.0000020615,0.0000020574, +0.0000020532,0.0000020496,0.0000020473,0.0000020460,0.0000020452, +0.0000020443,0.0000020428,0.0000020405,0.0000020375,0.0000020334, +0.0000020278,0.0000020214,0.0000020150,0.0000020092,0.0000020048, +0.0000020010,0.0000019989,0.0000019991,0.0000020013,0.0000020046, +0.0000020079,0.0000020109,0.0000020139,0.0000020167,0.0000020191, +0.0000020211,0.0000020228,0.0000020247,0.0000020270,0.0000020299, +0.0000020335,0.0000020377,0.0000020423,0.0000020466,0.0000020497, +0.0000020515,0.0000020520,0.0000020517,0.0000020501,0.0000020472, +0.0000020434,0.0000020392,0.0000020349,0.0000020307,0.0000020268, +0.0000020232,0.0000020201,0.0000020171,0.0000020138,0.0000020104, +0.0000020068,0.0000020032,0.0000019998,0.0000019968,0.0000019943, +0.0000019923,0.0000019907,0.0000019893,0.0000019883,0.0000019877, +0.0000019876,0.0000019877,0.0000019876,0.0000019872,0.0000019859, +0.0000019834,0.0000019801,0.0000019764,0.0000019728,0.0000019699, +0.0000019675,0.0000019652,0.0000019629,0.0000019609,0.0000019598, +0.0000019595,0.0000019602,0.0000019616,0.0000019636,0.0000019652, +0.0000019661,0.0000019661,0.0000019651,0.0000019634,0.0000019615, +0.0000019596,0.0000019585,0.0000019584,0.0000019601,0.0000019628, +0.0000019660,0.0000019692,0.0000019717,0.0000019734,0.0000019744, +0.0000019748,0.0000019746,0.0000019738,0.0000019731,0.0000019722, +0.0000019715,0.0000019712,0.0000019713,0.0000019716,0.0000019716, +0.0000019711,0.0000019702,0.0000019686,0.0000019664,0.0000019636, +0.0000019603,0.0000019571,0.0000019539,0.0000019510,0.0000019489, +0.0000019477,0.0000019475,0.0000019479,0.0000019482,0.0000019485, +0.0000019487,0.0000019492,0.0000019497,0.0000019500,0.0000019499, +0.0000019497,0.0000019498,0.0000019502,0.0000019507,0.0000019513, +0.0000019518,0.0000019523,0.0000019524,0.0000019521,0.0000019514, +0.0000019507,0.0000019501,0.0000019495,0.0000019489,0.0000019486, +0.0000019490,0.0000019501,0.0000019512,0.0000019516,0.0000019514, +0.0000019507,0.0000019498,0.0000019489,0.0000019481,0.0000019482, +0.0000019497,0.0000019528,0.0000019564,0.0000019593,0.0000019616, +0.0000019644,0.0000019680,0.0000019722,0.0000019756,0.0000019749, +0.0000019693,0.0000019624,0.0000019585,0.0000019617,0.0000019752, +0.0000019916,0.0000020112,0.0000020262,0.0000020260,0.0000020267, +0.0000020400,0.0000020509,0.0000020521,0.0000020523,0.0000020541, +0.0000020533,0.0000020493,0.0000020459,0.0000020443,0.0000020439, +0.0000020442,0.0000020446,0.0000020445,0.0000020449,0.0000020461, +0.0000020480,0.0000020482,0.0000020450,0.0000020371,0.0000020290, +0.0000020230,0.0000020206,0.0000020221,0.0000020252,0.0000020258, +0.0000020231,0.0000020186,0.0000020162,0.0000020162,0.0000020177, +0.0000020200,0.0000020213,0.0000020210,0.0000020193,0.0000020172, +0.0000020164,0.0000020176,0.0000020201,0.0000020237,0.0000020287, +0.0000020332,0.0000020344,0.0000020324,0.0000020301,0.0000020299, +0.0000020326,0.0000020352,0.0000020361,0.0000020352,0.0000020338, +0.0000020334,0.0000020332,0.0000020322,0.0000020309,0.0000020293, +0.0000020277,0.0000020262,0.0000020248,0.0000020237,0.0000020230, +0.0000020225,0.0000020222,0.0000020220,0.0000020216,0.0000020209, +0.0000020201,0.0000020196,0.0000020194,0.0000020192,0.0000020190, +0.0000020186,0.0000020184,0.0000020180,0.0000020173,0.0000020165, +0.0000020159,0.0000020151,0.0000020142,0.0000020133,0.0000020125, +0.0000020115,0.0000020102,0.0000020087,0.0000020074,0.0000020062, +0.0000020051,0.0000020039,0.0000020028,0.0000020018,0.0000020007, +0.0000019997,0.0000019987,0.0000019977,0.0000019966,0.0000019955, +0.0000019943,0.0000019933,0.0000019928,0.0000019926,0.0000019924, +0.0000019919,0.0000019915,0.0000019912,0.0000019910,0.0000019906, +0.0000019901,0.0000019892,0.0000019883,0.0000019874,0.0000019868, +0.0000019865,0.0000019866,0.0000019871,0.0000019878,0.0000019887, +0.0000019897,0.0000019908,0.0000019918,0.0000019927,0.0000019936, +0.0000019943,0.0000019945,0.0000019943,0.0000019936,0.0000019927, +0.0000019915,0.0000019904,0.0000019891,0.0000019874,0.0000019854, +0.0000019831,0.0000019807,0.0000019775,0.0000019736,0.0000019694, +0.0000019654,0.0000019624,0.0000019607,0.0000019612,0.0000019638, +0.0000019670,0.0000019696,0.0000019704,0.0000019690,0.0000019663, +0.0000019642,0.0000019633,0.0000019635,0.0000019634,0.0000019623, +0.0000019592,0.0000019545,0.0000019498,0.0000019470,0.0000019469, +0.0000019488,0.0000019507,0.0000019516,0.0000019517,0.0000019523, +0.0000019542,0.0000019564,0.0000019584,0.0000019631,0.0000019650, +0.0000019673,0.0000019707,0.0000019755,0.0000019806,0.0000019849, +0.0000019876,0.0000019886,0.0000019892,0.0000019899,0.0000019911, +0.0000019927,0.0000019947,0.0000019966,0.0000019981,0.0000019998, +0.0000020017,0.0000020032,0.0000020047,0.0000020059,0.0000020072, +0.0000020083,0.0000020091,0.0000020096,0.0000020101,0.0000020110, +0.0000020121,0.0000020129,0.0000020137,0.0000020147,0.0000020160, +0.0000020178,0.0000020201,0.0000020225,0.0000020244,0.0000020254, +0.0000020257,0.0000020254,0.0000020245,0.0000020232,0.0000020219, +0.0000020211,0.0000020204,0.0000020205,0.0000020223,0.0000020258, +0.0000020297,0.0000020339,0.0000020375,0.0000020404,0.0000020428, +0.0000020437,0.0000020433,0.0000020415,0.0000020388,0.0000020355, +0.0000020318,0.0000020280,0.0000020249,0.0000020231,0.0000020221, +0.0000020220,0.0000020220,0.0000020220,0.0000020224,0.0000020231, +0.0000020234,0.0000020233,0.0000020237,0.0000020248,0.0000020257, +0.0000020265,0.0000020274,0.0000020285,0.0000020301,0.0000020317, +0.0000020333,0.0000020350,0.0000020365,0.0000020376,0.0000020386, +0.0000020399,0.0000020416,0.0000020433,0.0000020449,0.0000020473, +0.0000020500,0.0000020528,0.0000020559,0.0000020588,0.0000020610, +0.0000020622,0.0000020628,0.0000020630,0.0000020634,0.0000020642, +0.0000020648,0.0000020649,0.0000020648,0.0000020647,0.0000020642, +0.0000020636,0.0000020630,0.0000020625,0.0000020626,0.0000020636, +0.0000020656,0.0000020689,0.0000020731,0.0000020773,0.0000020811, +0.0000020846,0.0000020879,0.0000020906,0.0000020926,0.0000020935, +0.0000020936,0.0000020933,0.0000020924,0.0000020914,0.0000020902, +0.0000020883,0.0000020858,0.0000020831,0.0000020807,0.0000020788, +0.0000020774,0.0000020765,0.0000020761,0.0000020764,0.0000020773, +0.0000020783,0.0000020799,0.0000020816,0.0000020831,0.0000020848, +0.0000020868,0.0000020894,0.0000020924,0.0000020949,0.0000020959, +0.0000020949,0.0000020915,0.0000020880,0.0000020848,0.0000020816, +0.0000020786,0.0000020760,0.0000020740,0.0000020730,0.0000020728, +0.0000020732,0.0000020734,0.0000020733,0.0000020738,0.0000020757, +0.0000020794,0.0000020842,0.0000020889,0.0000020923,0.0000020943, +0.0000020951,0.0000020952,0.0000020954,0.0000020960,0.0000020966, +0.0000020962,0.0000020946,0.0000020935,0.0000020939,0.0000020951, +0.0000020957,0.0000020960,0.0000020970,0.0000020987,0.0000021010, +0.0000021052,0.0000021110,0.0000021164,0.0000021204,0.0000021233, +0.0000021256,0.0000021266,0.0000021265,0.0000021257,0.0000021246, +0.0000021240,0.0000021240,0.0000021242,0.0000021247,0.0000021254, +0.0000021266,0.0000021281,0.0000021302,0.0000021328,0.0000021351, +0.0000021363,0.0000021361,0.0000021346,0.0000021319,0.0000021288, +0.0000021259,0.0000021239,0.0000021225,0.0000021218,0.0000021211, +0.0000021205,0.0000021196,0.0000021188,0.0000021183,0.0000021183, +0.0000021188,0.0000021202,0.0000021231,0.0000021271,0.0000021321, +0.0000021376,0.0000021432,0.0000021489,0.0000021542,0.0000021590, +0.0000021624,0.0000021646,0.0000021659,0.0000021670,0.0000021685, +0.0000021703,0.0000021727,0.0000021755,0.0000021781,0.0000021807, +0.0000021828,0.0000021842,0.0000021845,0.0000021834,0.0000021815, +0.0000021788,0.0000021761,0.0000021736,0.0000021712,0.0000021686, +0.0000021662,0.0000021639,0.0000021622,0.0000021608,0.0000021594, +0.0000021586,0.0000021579,0.0000021573,0.0000021571,0.0000021569, +0.0000021569,0.0000021571,0.0000021576,0.0000021581,0.0000021592, +0.0000021604,0.0000021614,0.0000021622,0.0000021625,0.0000021625, +0.0000021621,0.0000021613,0.0000021601,0.0000021587,0.0000021572, +0.0000021553,0.0000021532,0.0000021507,0.0000021481,0.0000021453, +0.0000021424,0.0000021393,0.0000021367,0.0000021352,0.0000021330, +0.0000021305,0.0000021295,0.0000021318,0.0000021395,0.0000021487, +0.0000021552,0.0000021596,0.0000021640,0.0000021673,0.0000021659, +0.0000021592,0.0000021539,0.0000021520,0.0000021503,0.0000021477, +0.0000021446,0.0000021409,0.0000021378,0.0000021348,0.0000021327, +0.0000021341,0.0000021390,0.0000021415,0.0000021404,0.0000021383, +0.0000021368,0.0000021355,0.0000021332,0.0000021301,0.0000021265, +0.0000021230,0.0000021209,0.0000021202,0.0000021199,0.0000021192, +0.0000021179,0.0000021168,0.0000021153,0.0000021136,0.0000021120, +0.0000021098,0.0000021077,0.0000021058,0.0000021037,0.0000021019, +0.0000021007,0.0000021000,0.0000021004,0.0000021016,0.0000021021, +0.0000021015,0.0000021006,0.0000020993,0.0000020971,0.0000020933, +0.0000020880,0.0000020827,0.0000020781,0.0000020733,0.0000020694, +0.0000020672,0.0000020666,0.0000020666,0.0000020656,0.0000020639, +0.0000020624,0.0000020619,0.0000020620,0.0000020642,0.0000020679, +0.0000020698,0.0000020689,0.0000020623,0.0000020498,0.0000020362, +0.0000020271,0.0000020241,0.0000020179,0.0000020065,0.0000020071, +0.0000020130,0.0000020141,0.0000020156,0.0000020241,0.0000020355, +0.0000020415,0.0000020418,0.0000020444,0.0000020513,0.0000020580, +0.0000020631,0.0000020663,0.0000020714,0.0000020836,0.0000021016, +0.0000021135,0.0000021170,0.0000021284,0.0000021440,0.0000021440, +0.0000021473,0.0000021553,0.0000021542,0.0000021541,0.0000021601, +0.0000021644,0.0000021602,0.0000021614,0.0000021786,0.0000021857, +0.0000021807,0.0000021725,0.0000021703,0.0000021737,0.0000021736, +0.0000021782,0.0000021903,0.0000021909,0.0000021886,0.0000021945, +0.0000022071,0.0000022096,0.0000022098,0.0000022166,0.0000022301, +0.0000022406,0.0000022461,0.0000022471,0.0000022461,0.0000022462, +0.0000022471,0.0000022464,0.0000022467,0.0000022489,0.0000022512, +0.0000022514,0.0000022496,0.0000022447,0.0000022365,0.0000022248, +0.0000022104,0.0000021989,0.0000021938,0.0000021931,0.0000021948, +0.0000021992,0.0000022031,0.0000022046,0.0000022035,0.0000021991, +0.0000021916,0.0000021814,0.0000021694,0.0000021589,0.0000021512, +0.0000021458,0.0000021417,0.0000021372,0.0000021316,0.0000021252, +0.0000021177,0.0000021105,0.0000021044,0.0000021003,0.0000020980, +0.0000020957,0.0000020916,0.0000020884,0.0000020866,0.0000020868, +0.0000020892,0.0000020938,0.0000021018,0.0000021096,0.0000021163, +0.0000021216,0.0000021275,0.0000021329,0.0000021352,0.0000021367, +0.0000021391,0.0000021411,0.0000021429,0.0000021450,0.0000021459, +0.0000021453,0.0000021433,0.0000021395,0.0000021345,0.0000021301, +0.0000021260,0.0000021225,0.0000021203,0.0000021202,0.0000021227, +0.0000021280,0.0000021349,0.0000021407,0.0000021443,0.0000021457, +0.0000021451,0.0000021435,0.0000021421,0.0000021417,0.0000021428, +0.0000021453,0.0000021479,0.0000021508,0.0000021528,0.0000021522, +0.0000021498,0.0000021482,0.0000021486,0.0000021497,0.0000021512, +0.0000021533,0.0000021560,0.0000021591,0.0000021629,0.0000021668, +0.0000021705,0.0000021737,0.0000021764,0.0000021786,0.0000021809, +0.0000021827,0.0000021840,0.0000021852,0.0000021862,0.0000021880, +0.0000021915,0.0000021954,0.0000021989,0.0000022024,0.0000022060, +0.0000022083,0.0000022089,0.0000022098,0.0000022102,0.0000022087, +0.0000022069,0.0000022053,0.0000022034,0.0000022010,0.0000021992, +0.0000021975,0.0000021951,0.0000021923,0.0000021899,0.0000021876, +0.0000021862,0.0000021861,0.0000021852,0.0000021846,0.0000021840, +0.0000021835,0.0000021828,0.0000021820,0.0000021812,0.0000021805, +0.0000021800,0.0000021797,0.0000021800,0.0000021812,0.0000021835, +0.0000021865,0.0000021899,0.0000021936,0.0000021975,0.0000022014, +0.0000022046,0.0000022075,0.0000022105,0.0000022134,0.0000022158, +0.0000022172,0.0000022171,0.0000022159,0.0000022142,0.0000022111, +0.0000022075,0.0000022046,0.0000022012,0.0000021968,0.0000021925, +0.0000021889,0.0000021858,0.0000021833,0.0000021815,0.0000021804, +0.0000021789,0.0000021765,0.0000021739,0.0000021722,0.0000021717, +0.0000021725,0.0000021747,0.0000021777,0.0000021804,0.0000021834, +0.0000021861,0.0000021876,0.0000021884,0.0000021888,0.0000021892, +0.0000021897,0.0000021899,0.0000021900,0.0000021907,0.0000021919, +0.0000021930,0.0000021944,0.0000021953,0.0000021951,0.0000021939, +0.0000021914,0.0000021881,0.0000021845,0.0000021819,0.0000021799, +0.0000021780,0.0000021765,0.0000021756,0.0000021749,0.0000021737, +0.0000021721,0.0000021703,0.0000021694,0.0000021702,0.0000021721, +0.0000021737,0.0000021753,0.0000021772,0.0000021792,0.0000021810, +0.0000021824,0.0000021850,0.0000021878,0.0000021922,0.0000021974, +0.0000022027,0.0000022076,0.0000022116,0.0000022139,0.0000022149, +0.0000022150,0.0000022127,0.0000022088,0.0000022043,0.0000021996, +0.0000021946,0.0000021898,0.0000021865,0.0000021849,0.0000021839, +0.0000021835,0.0000021833,0.0000021830,0.0000021823,0.0000021813, +0.0000021800,0.0000021783,0.0000021758,0.0000021729,0.0000021697, +0.0000021659,0.0000021624,0.0000021594,0.0000021571,0.0000021556, +0.0000021550,0.0000021554,0.0000021568,0.0000021583,0.0000021603, +0.0000021617,0.0000021620,0.0000021619,0.0000021611,0.0000021600, +0.0000021592,0.0000021586,0.0000021584,0.0000021585,0.0000021590, +0.0000021594,0.0000021593,0.0000021588,0.0000021578,0.0000021564, +0.0000021545,0.0000021521,0.0000021492,0.0000021460,0.0000021428, +0.0000021400,0.0000021379,0.0000021363,0.0000021348,0.0000021339, +0.0000021331,0.0000021319,0.0000021301,0.0000021277,0.0000021248, +0.0000021212,0.0000021170,0.0000021126,0.0000021083,0.0000021038, +0.0000020993,0.0000020961,0.0000020950,0.0000020950,0.0000020948, +0.0000020942,0.0000020927,0.0000020907,0.0000020888,0.0000020867, +0.0000020847,0.0000020825,0.0000020807,0.0000020794,0.0000020783, +0.0000020773,0.0000020763,0.0000020755,0.0000020749,0.0000020741, +0.0000020738,0.0000020741,0.0000020753,0.0000020765,0.0000020778, +0.0000020792,0.0000020807,0.0000020824,0.0000020845,0.0000020869, +0.0000020892,0.0000020917,0.0000020942,0.0000020965,0.0000020984, +0.0000021002,0.0000021015,0.0000021022,0.0000021022,0.0000021013, +0.0000020997,0.0000020978,0.0000020959,0.0000020939,0.0000020922, +0.0000020911,0.0000020904,0.0000020895,0.0000020882,0.0000020867, +0.0000020856,0.0000020841,0.0000020820,0.0000020797,0.0000020773, +0.0000020753,0.0000020735,0.0000020718,0.0000020699,0.0000020679, +0.0000020656,0.0000020631,0.0000020603,0.0000020574,0.0000020546, +0.0000020512,0.0000020483,0.0000020461,0.0000020444,0.0000020434, +0.0000020431,0.0000020433,0.0000020439,0.0000020447,0.0000020454, +0.0000020460,0.0000020464,0.0000020466,0.0000020464,0.0000020458, +0.0000020447,0.0000020430,0.0000020411,0.0000020390,0.0000020372, +0.0000020362,0.0000020355,0.0000020351,0.0000020348,0.0000020341, +0.0000020332,0.0000020322,0.0000020315,0.0000020316,0.0000020323, +0.0000020331,0.0000020338,0.0000020343,0.0000020351,0.0000020357, +0.0000020356,0.0000020349,0.0000020333,0.0000020308,0.0000020272, +0.0000020227,0.0000020177,0.0000020129,0.0000020087,0.0000020053, +0.0000020030,0.0000020022,0.0000020017,0.0000020019,0.0000020018, +0.0000020016,0.0000020007,0.0000019996,0.0000019985,0.0000019975, +0.0000019965,0.0000019955,0.0000019943,0.0000019930,0.0000019914, +0.0000019898,0.0000019890,0.0000019885,0.0000019885,0.0000019886, +0.0000019881,0.0000019876,0.0000019872,0.0000019871,0.0000019866, +0.0000019854,0.0000019842,0.0000019835,0.0000019829,0.0000019812, +0.0000019787,0.0000019767,0.0000019754,0.0000019737,0.0000019715, +0.0000019685,0.0000019646,0.0000019616,0.0000019605,0.0000019620, +0.0000019663,0.0000019713,0.0000019761,0.0000019803,0.0000019825, +0.0000019823,0.0000019798,0.0000019744,0.0000019683,0.0000019647, +0.0000019638,0.0000019637,0.0000019631,0.0000019622,0.0000019606, +0.0000019583,0.0000019568,0.0000019565,0.0000019569,0.0000019570, +0.0000019577,0.0000019591,0.0000019591,0.0000019560,0.0000019521, +0.0000019507,0.0000019517,0.0000019566,0.0000019638,0.0000019696, +0.0000019740,0.0000019784,0.0000019828,0.0000019861,0.0000019884, +0.0000019896,0.0000019901,0.0000019913,0.0000019941,0.0000019974, +0.0000020012,0.0000020040,0.0000020053,0.0000020049,0.0000020046, +0.0000020055,0.0000020083,0.0000020122,0.0000020172,0.0000020236, +0.0000020299,0.0000020346,0.0000020368,0.0000020374,0.0000020371, +0.0000020370,0.0000020369,0.0000020369,0.0000020374,0.0000020394, +0.0000020420,0.0000020435,0.0000020436,0.0000020423,0.0000020401, +0.0000020378,0.0000020356,0.0000020356,0.0000020383,0.0000020424, +0.0000020466,0.0000020503,0.0000020514,0.0000020509,0.0000020471, +0.0000020409,0.0000020334,0.0000020262,0.0000020222,0.0000020203, +0.0000020226,0.0000020283,0.0000020361,0.0000020440,0.0000020509, +0.0000020559,0.0000020588,0.0000020600,0.0000020596,0.0000020586, +0.0000020572,0.0000020555,0.0000020536,0.0000020517,0.0000020497, +0.0000020478,0.0000020459,0.0000020438,0.0000020416,0.0000020393, +0.0000020373,0.0000020355,0.0000020338,0.0000020325,0.0000020316, +0.0000020314,0.0000020318,0.0000020326,0.0000020339,0.0000020358, +0.0000020381,0.0000020404,0.0000020426,0.0000020446,0.0000020468, +0.0000020494,0.0000020525,0.0000020560,0.0000020591,0.0000020615, +0.0000020636,0.0000020658,0.0000020682,0.0000020706,0.0000020730, +0.0000020755,0.0000020778,0.0000020789,0.0000020785,0.0000020764, +0.0000020731,0.0000020698,0.0000020674,0.0000020661,0.0000020659, +0.0000020669,0.0000020689,0.0000020709,0.0000020727,0.0000020741, +0.0000020753,0.0000020763,0.0000020776,0.0000020782,0.0000020771, +0.0000020749,0.0000020739,0.0000020731,0.0000020709,0.0000020693, +0.0000020650,0.0000020595,0.0000020581,0.0000020582,0.0000020577, +0.0000020594,0.0000020656,0.0000020781,0.0000020899,0.0000020961, +0.0000021010,0.0000021092,0.0000021181,0.0000021214,0.0000021230, +0.0000021254,0.0000021253,0.0000021230,0.0000021207,0.0000021172, +0.0000021108,0.0000021035,0.0000020983,0.0000020963,0.0000020966, +0.0000020988,0.0000021030,0.0000021074,0.0000021114,0.0000021147, +0.0000021173,0.0000021193,0.0000021213,0.0000021233,0.0000021250, +0.0000021264,0.0000021276,0.0000021285,0.0000021295,0.0000021307, +0.0000021320,0.0000021333,0.0000021345,0.0000021354,0.0000021358, +0.0000021360,0.0000021358,0.0000021353,0.0000021339,0.0000021318, +0.0000021295,0.0000021276,0.0000021259,0.0000021242,0.0000021223, +0.0000021205,0.0000021195,0.0000021195,0.0000021207,0.0000021230, +0.0000021261,0.0000021293,0.0000021319,0.0000021335,0.0000021335, +0.0000021331,0.0000021309,0.0000021281,0.0000021247,0.0000021217, +0.0000021214,0.0000021211,0.0000021258,0.0000021343,0.0000021459, +0.0000021594,0.0000021728,0.0000021847,0.0000021945,0.0000022017, +0.0000022068,0.0000022105,0.0000022106,0.0000022127,0.0000022126, +0.0000022131,0.0000022131,0.0000022122,0.0000022110,0.0000022092, +0.0000022069,0.0000022049,0.0000022037,0.0000022040,0.0000022061, +0.0000022100,0.0000022144,0.0000022182,0.0000022214,0.0000022232, +0.0000022247,0.0000022254,0.0000022251,0.0000022236,0.0000022213, +0.0000022188,0.0000022162,0.0000022138,0.0000022118,0.0000022110, +0.0000022113,0.0000022125,0.0000022140,0.0000022148,0.0000022143, +0.0000022110,0.0000022042,0.0000021954,0.0000021865,0.0000021792, +0.0000021703,0.0000021576,0.0000021422,0.0000021262,0.0000021090, +0.0000020889,0.0000020675,0.0000020487,0.0000020347,0.0000020248, +0.0000020170,0.0000020092,0.0000020015,0.0000019955,0.0000019915, +0.0000019885,0.0000019855,0.0000019837,0.0000019840,0.0000019862, +0.0000019882,0.0000019894,0.0000019903,0.0000019911,0.0000019915, +0.0000019908,0.0000019886,0.0000019846,0.0000019809,0.0000019789, +0.0000019795,0.0000019820,0.0000019839,0.0000019841,0.0000019822, +0.0000019800,0.0000019782,0.0000019788,0.0000019823,0.0000019877, +0.0000019934,0.0000019983,0.0000020029,0.0000020080,0.0000020133, +0.0000020173,0.0000020194,0.0000020195,0.0000020187,0.0000020175, +0.0000020162,0.0000020154,0.0000020156,0.0000020159,0.0000020149, +0.0000020120,0.0000020087,0.0000020086,0.0000020136,0.0000020254, +0.0000020412,0.0000020546,0.0000020608,0.0000020599,0.0000020565, +0.0000020537,0.0000020561,0.0000020624,0.0000020695,0.0000020747, +0.0000020759,0.0000020758,0.0000020725,0.0000020678,0.0000020625, +0.0000020578,0.0000020539,0.0000020535,0.0000020547,0.0000020593, +0.0000020661,0.0000020748,0.0000020844,0.0000020942,0.0000021031, +0.0000021100,0.0000021141,0.0000021161,0.0000021168,0.0000021175, +0.0000021195,0.0000021228,0.0000021274,0.0000021322,0.0000021362, +0.0000021392,0.0000021406,0.0000021411,0.0000021405,0.0000021398, +0.0000021393,0.0000021391,0.0000021391,0.0000021388,0.0000021384, +0.0000021385,0.0000021385,0.0000021381,0.0000021369,0.0000021351, +0.0000021327,0.0000021295,0.0000021257,0.0000021214,0.0000021168, +0.0000021124,0.0000021075,0.0000021019,0.0000020960,0.0000020902, +0.0000020848,0.0000020797,0.0000020755,0.0000020732,0.0000020718, +0.0000020714,0.0000020721,0.0000020737,0.0000020753,0.0000020768, +0.0000020780,0.0000020786,0.0000020790,0.0000020787,0.0000020787, +0.0000020787,0.0000020793,0.0000020799,0.0000020800,0.0000020796, +0.0000020795,0.0000020794,0.0000020800,0.0000020805,0.0000020804, +0.0000020806,0.0000020812,0.0000020813,0.0000020817,0.0000020824, +0.0000020820,0.0000020807,0.0000020787,0.0000020764,0.0000020740, +0.0000020719,0.0000020702,0.0000020691,0.0000020687,0.0000020691, +0.0000020701,0.0000020708,0.0000020711,0.0000020711,0.0000020707, +0.0000020697,0.0000020679,0.0000020652,0.0000020615,0.0000020571, +0.0000020528,0.0000020495,0.0000020477,0.0000020473,0.0000020470, +0.0000020462,0.0000020450,0.0000020432,0.0000020400,0.0000020353, +0.0000020293,0.0000020225,0.0000020159,0.0000020094,0.0000020035, +0.0000019987,0.0000019950,0.0000019935,0.0000019940,0.0000019959, +0.0000019990,0.0000020024,0.0000020053,0.0000020078,0.0000020098, +0.0000020115,0.0000020127,0.0000020140,0.0000020156,0.0000020176, +0.0000020204,0.0000020241,0.0000020277,0.0000020308,0.0000020334, +0.0000020351,0.0000020360,0.0000020358,0.0000020343,0.0000020315, +0.0000020275,0.0000020231,0.0000020186,0.0000020144,0.0000020108, +0.0000020079,0.0000020051,0.0000020022,0.0000019994,0.0000019967, +0.0000019939,0.0000019913,0.0000019891,0.0000019873,0.0000019857, +0.0000019843,0.0000019832,0.0000019822,0.0000019815,0.0000019812, +0.0000019814,0.0000019821,0.0000019826,0.0000019824,0.0000019812, +0.0000019788,0.0000019753,0.0000019716,0.0000019681,0.0000019650, +0.0000019622,0.0000019596,0.0000019572,0.0000019555,0.0000019545, +0.0000019543,0.0000019548,0.0000019562,0.0000019581,0.0000019600, +0.0000019615,0.0000019624,0.0000019627,0.0000019619,0.0000019600, +0.0000019580,0.0000019562,0.0000019553,0.0000019556,0.0000019573, +0.0000019598,0.0000019626,0.0000019656,0.0000019683,0.0000019706, +0.0000019720,0.0000019725,0.0000019725,0.0000019720,0.0000019713, +0.0000019705,0.0000019701,0.0000019700,0.0000019703,0.0000019706, +0.0000019705,0.0000019700,0.0000019688,0.0000019669,0.0000019644, +0.0000019613,0.0000019581,0.0000019550,0.0000019522,0.0000019500, +0.0000019487,0.0000019482,0.0000019484,0.0000019486,0.0000019489, +0.0000019494,0.0000019497,0.0000019496,0.0000019494,0.0000019493, +0.0000019494,0.0000019499,0.0000019504,0.0000019508,0.0000019510, +0.0000019511,0.0000019507,0.0000019502,0.0000019494,0.0000019486, +0.0000019480,0.0000019476,0.0000019472,0.0000019469,0.0000019473, +0.0000019486,0.0000019501,0.0000019511,0.0000019512,0.0000019505, +0.0000019495,0.0000019482,0.0000019466,0.0000019453,0.0000019454, +0.0000019477,0.0000019518,0.0000019557,0.0000019585,0.0000019613, +0.0000019647,0.0000019688,0.0000019729,0.0000019740,0.0000019697, +0.0000019628,0.0000019578,0.0000019582,0.0000019695,0.0000019861, +0.0000020045,0.0000020232,0.0000020280,0.0000020258,0.0000020334, +0.0000020482,0.0000020531,0.0000020523,0.0000020535,0.0000020557, +0.0000020547,0.0000020509,0.0000020474,0.0000020455,0.0000020447, +0.0000020443,0.0000020439,0.0000020439,0.0000020448,0.0000020468, +0.0000020493,0.0000020495,0.0000020442,0.0000020347,0.0000020264, +0.0000020216,0.0000020207,0.0000020227,0.0000020250,0.0000020248, +0.0000020223,0.0000020193,0.0000020180,0.0000020180,0.0000020191, +0.0000020203,0.0000020204,0.0000020192,0.0000020175,0.0000020171, +0.0000020181,0.0000020195,0.0000020221,0.0000020269,0.0000020308, +0.0000020314,0.0000020295,0.0000020281,0.0000020289,0.0000020319, +0.0000020349,0.0000020363,0.0000020358,0.0000020348,0.0000020343, +0.0000020342,0.0000020342,0.0000020331,0.0000020311,0.0000020292, +0.0000020276,0.0000020260,0.0000020243,0.0000020229,0.0000020220, +0.0000020216,0.0000020212,0.0000020207,0.0000020201,0.0000020195, +0.0000020191,0.0000020188,0.0000020184,0.0000020177,0.0000020173, +0.0000020171,0.0000020168,0.0000020163,0.0000020159,0.0000020156, +0.0000020152,0.0000020147,0.0000020142,0.0000020136,0.0000020128, +0.0000020119,0.0000020108,0.0000020097,0.0000020088,0.0000020080, +0.0000020071,0.0000020060,0.0000020049,0.0000020041,0.0000020034, +0.0000020027,0.0000020017,0.0000020006,0.0000019991,0.0000019974, +0.0000019956,0.0000019940,0.0000019925,0.0000019912,0.0000019900, +0.0000019890,0.0000019883,0.0000019875,0.0000019866,0.0000019856, +0.0000019845,0.0000019834,0.0000019825,0.0000019817,0.0000019811, +0.0000019810,0.0000019814,0.0000019823,0.0000019833,0.0000019845, +0.0000019856,0.0000019866,0.0000019876,0.0000019887,0.0000019896, +0.0000019902,0.0000019904,0.0000019901,0.0000019892,0.0000019880, +0.0000019863,0.0000019843,0.0000019819,0.0000019793,0.0000019767, +0.0000019746,0.0000019725,0.0000019700,0.0000019670,0.0000019635, +0.0000019594,0.0000019555,0.0000019528,0.0000019514,0.0000019532, +0.0000019569,0.0000019610,0.0000019632,0.0000019630,0.0000019606, +0.0000019580,0.0000019565,0.0000019561,0.0000019562,0.0000019553, +0.0000019534,0.0000019510,0.0000019488,0.0000019486,0.0000019501, +0.0000019539,0.0000019570,0.0000019581,0.0000019582,0.0000019591, +0.0000019611,0.0000019645,0.0000019665,0.0000019690,0.0000019712, +0.0000019738,0.0000019775,0.0000019823,0.0000019876,0.0000019913, +0.0000019949,0.0000019969,0.0000019984,0.0000019996,0.0000020006, +0.0000020013,0.0000020021,0.0000020031,0.0000020045,0.0000020057, +0.0000020064,0.0000020067,0.0000020072,0.0000020077,0.0000020080, +0.0000020080,0.0000020082,0.0000020085,0.0000020092,0.0000020097, +0.0000020103,0.0000020109,0.0000020114,0.0000020122,0.0000020135, +0.0000020150,0.0000020161,0.0000020164,0.0000020161,0.0000020153, +0.0000020134,0.0000020107,0.0000020081,0.0000020064,0.0000020059, +0.0000020069,0.0000020103,0.0000020149,0.0000020198,0.0000020246, +0.0000020287,0.0000020324,0.0000020359,0.0000020384,0.0000020394, +0.0000020390,0.0000020377,0.0000020353,0.0000020320,0.0000020281, +0.0000020243,0.0000020211,0.0000020195,0.0000020188,0.0000020179, +0.0000020172,0.0000020169,0.0000020166,0.0000020163,0.0000020162, +0.0000020174,0.0000020195,0.0000020209,0.0000020218,0.0000020229, +0.0000020248,0.0000020266,0.0000020281,0.0000020296,0.0000020312, +0.0000020330,0.0000020340,0.0000020345,0.0000020350,0.0000020360, +0.0000020372,0.0000020386,0.0000020403,0.0000020426,0.0000020451, +0.0000020478,0.0000020507,0.0000020535,0.0000020555,0.0000020566, +0.0000020571,0.0000020578,0.0000020587,0.0000020596,0.0000020601, +0.0000020603,0.0000020604,0.0000020605,0.0000020603,0.0000020597, +0.0000020588,0.0000020580,0.0000020580,0.0000020588,0.0000020603, +0.0000020625,0.0000020654,0.0000020688,0.0000020722,0.0000020750, +0.0000020777,0.0000020801,0.0000020817,0.0000020823,0.0000020821, +0.0000020815,0.0000020807,0.0000020798,0.0000020782,0.0000020761, +0.0000020737,0.0000020718,0.0000020704,0.0000020697,0.0000020693, +0.0000020693,0.0000020699,0.0000020710,0.0000020727,0.0000020750, +0.0000020779,0.0000020803,0.0000020821,0.0000020839,0.0000020865, +0.0000020895,0.0000020929,0.0000020958,0.0000020963,0.0000020941, +0.0000020895,0.0000020850,0.0000020817,0.0000020789,0.0000020762, +0.0000020735,0.0000020716,0.0000020707,0.0000020707,0.0000020705, +0.0000020704,0.0000020707,0.0000020723,0.0000020759,0.0000020806, +0.0000020850,0.0000020883,0.0000020907,0.0000020916,0.0000020916, +0.0000020914,0.0000020917,0.0000020924,0.0000020927,0.0000020921, +0.0000020910,0.0000020906,0.0000020918,0.0000020936,0.0000020948, +0.0000020958,0.0000020972,0.0000020989,0.0000021010,0.0000021051, +0.0000021106,0.0000021151,0.0000021178,0.0000021197,0.0000021209, +0.0000021214,0.0000021211,0.0000021201,0.0000021188,0.0000021181, +0.0000021185,0.0000021204,0.0000021234,0.0000021262,0.0000021284, +0.0000021306,0.0000021331,0.0000021354,0.0000021371,0.0000021380, +0.0000021379,0.0000021365,0.0000021338,0.0000021305,0.0000021275, +0.0000021251,0.0000021235,0.0000021224,0.0000021217,0.0000021208, +0.0000021197,0.0000021191,0.0000021189,0.0000021192,0.0000021199, +0.0000021211,0.0000021230,0.0000021262,0.0000021310,0.0000021364, +0.0000021414,0.0000021461,0.0000021511,0.0000021557,0.0000021595, +0.0000021623,0.0000021639,0.0000021646,0.0000021651,0.0000021662, +0.0000021676,0.0000021691,0.0000021708,0.0000021724,0.0000021740, +0.0000021754,0.0000021762,0.0000021761,0.0000021753,0.0000021741, +0.0000021725,0.0000021707,0.0000021690,0.0000021670,0.0000021650, +0.0000021636,0.0000021622,0.0000021608,0.0000021597,0.0000021588, +0.0000021581,0.0000021577,0.0000021575,0.0000021573,0.0000021570, +0.0000021569,0.0000021570,0.0000021576,0.0000021586,0.0000021592, +0.0000021597,0.0000021602,0.0000021607,0.0000021609,0.0000021605, +0.0000021596,0.0000021585,0.0000021576,0.0000021564,0.0000021545, +0.0000021525,0.0000021503,0.0000021481,0.0000021454,0.0000021416, +0.0000021381,0.0000021362,0.0000021351,0.0000021322,0.0000021296, +0.0000021299,0.0000021348,0.0000021438,0.0000021522,0.0000021566, +0.0000021610,0.0000021664,0.0000021680,0.0000021636,0.0000021564, +0.0000021523,0.0000021506,0.0000021489,0.0000021454,0.0000021404, +0.0000021370,0.0000021350,0.0000021366,0.0000021426,0.0000021453, +0.0000021436,0.0000021402,0.0000021374,0.0000021355,0.0000021333, +0.0000021303,0.0000021269,0.0000021231,0.0000021202,0.0000021194, +0.0000021193,0.0000021191,0.0000021182,0.0000021169,0.0000021154, +0.0000021138,0.0000021119,0.0000021099,0.0000021070,0.0000021039, +0.0000021005,0.0000020968,0.0000020944,0.0000020935,0.0000020933, +0.0000020940,0.0000020951,0.0000020953,0.0000020945,0.0000020940, +0.0000020933,0.0000020914,0.0000020878,0.0000020827,0.0000020778, +0.0000020728,0.0000020677,0.0000020637,0.0000020618,0.0000020614, +0.0000020602,0.0000020584,0.0000020564,0.0000020549,0.0000020544, +0.0000020555,0.0000020595,0.0000020640,0.0000020653,0.0000020624, +0.0000020520,0.0000020383,0.0000020276,0.0000020228,0.0000020204, +0.0000020087,0.0000020044,0.0000020087,0.0000020110,0.0000020122, +0.0000020191,0.0000020309,0.0000020390,0.0000020405,0.0000020417, +0.0000020477,0.0000020548,0.0000020606,0.0000020645,0.0000020689, +0.0000020792,0.0000020966,0.0000021106,0.0000021150,0.0000021230, +0.0000021412,0.0000021445,0.0000021461,0.0000021551,0.0000021547, +0.0000021543,0.0000021593,0.0000021642,0.0000021602,0.0000021603, +0.0000021766,0.0000021844,0.0000021801,0.0000021729,0.0000021706, +0.0000021741,0.0000021745,0.0000021775,0.0000021901,0.0000021932, +0.0000021919,0.0000021934,0.0000022047,0.0000022122,0.0000022124, +0.0000022152,0.0000022255,0.0000022369,0.0000022439,0.0000022459, +0.0000022448,0.0000022444,0.0000022453,0.0000022452,0.0000022460, +0.0000022478,0.0000022493,0.0000022492,0.0000022466,0.0000022404, +0.0000022308,0.0000022178,0.0000022038,0.0000021945,0.0000021919, +0.0000021922,0.0000021949,0.0000021987,0.0000022010,0.0000022013, +0.0000021988,0.0000021930,0.0000021842,0.0000021738,0.0000021629, +0.0000021542,0.0000021480,0.0000021440,0.0000021405,0.0000021372, +0.0000021333,0.0000021280,0.0000021204,0.0000021125,0.0000021057, +0.0000021002,0.0000020974,0.0000020950,0.0000020920,0.0000020888, +0.0000020867,0.0000020860,0.0000020860,0.0000020873,0.0000020925, +0.0000020994,0.0000021060,0.0000021129,0.0000021195,0.0000021250, +0.0000021275,0.0000021283,0.0000021296,0.0000021293,0.0000021299, +0.0000021306,0.0000021299,0.0000021288,0.0000021275,0.0000021253, +0.0000021232,0.0000021220,0.0000021211,0.0000021195,0.0000021161, +0.0000021129,0.0000021119,0.0000021154,0.0000021226,0.0000021313, +0.0000021385,0.0000021430,0.0000021445,0.0000021440,0.0000021432, +0.0000021419,0.0000021413,0.0000021416,0.0000021425,0.0000021444, +0.0000021471,0.0000021487,0.0000021482,0.0000021471,0.0000021464, +0.0000021462,0.0000021469,0.0000021489,0.0000021515,0.0000021543, +0.0000021575,0.0000021601,0.0000021628,0.0000021656,0.0000021682, +0.0000021702,0.0000021726,0.0000021750,0.0000021769,0.0000021781, +0.0000021789,0.0000021801,0.0000021827,0.0000021863,0.0000021891, +0.0000021919,0.0000021945,0.0000021956,0.0000021962,0.0000021972, +0.0000021967,0.0000021947,0.0000021931,0.0000021916,0.0000021900, +0.0000021885,0.0000021874,0.0000021860,0.0000021842,0.0000021823, +0.0000021807,0.0000021789,0.0000021781,0.0000021778,0.0000021770, +0.0000021765,0.0000021758,0.0000021757,0.0000021757,0.0000021750, +0.0000021742,0.0000021730,0.0000021720,0.0000021715,0.0000021713, +0.0000021717,0.0000021731,0.0000021750,0.0000021770,0.0000021793, +0.0000021818,0.0000021845,0.0000021870,0.0000021893,0.0000021920, +0.0000021951,0.0000021981,0.0000022009,0.0000022032,0.0000022050, +0.0000022059,0.0000022058,0.0000022050,0.0000022036,0.0000022009, +0.0000021982,0.0000021945,0.0000021911,0.0000021881,0.0000021861, +0.0000021851,0.0000021847,0.0000021846,0.0000021841,0.0000021832, +0.0000021821,0.0000021815,0.0000021822,0.0000021844,0.0000021867, +0.0000021892,0.0000021924,0.0000021950,0.0000021967,0.0000021975, +0.0000021975,0.0000021974,0.0000021975,0.0000021978,0.0000021986, +0.0000022004,0.0000022021,0.0000022032,0.0000022044,0.0000022050, +0.0000022045,0.0000022027,0.0000021996,0.0000021957,0.0000021912, +0.0000021874,0.0000021837,0.0000021801,0.0000021771,0.0000021753, +0.0000021744,0.0000021740,0.0000021739,0.0000021734,0.0000021738, +0.0000021755,0.0000021776,0.0000021791,0.0000021803,0.0000021811, +0.0000021817,0.0000021819,0.0000021826,0.0000021832,0.0000021845, +0.0000021872,0.0000021906,0.0000021950,0.0000021993,0.0000022038, +0.0000022078,0.0000022112,0.0000022131,0.0000022124,0.0000022106, +0.0000022081,0.0000022043,0.0000021995,0.0000021947,0.0000021911, +0.0000021884,0.0000021863,0.0000021848,0.0000021838,0.0000021829, +0.0000021819,0.0000021810,0.0000021799,0.0000021784,0.0000021766, +0.0000021752,0.0000021728,0.0000021706,0.0000021683,0.0000021658, +0.0000021639,0.0000021617,0.0000021604,0.0000021594,0.0000021593, +0.0000021601,0.0000021613,0.0000021617,0.0000021620,0.0000021618, +0.0000021615,0.0000021613,0.0000021611,0.0000021613,0.0000021619, +0.0000021631,0.0000021644,0.0000021654,0.0000021661,0.0000021665, +0.0000021666,0.0000021661,0.0000021646,0.0000021622,0.0000021588, +0.0000021548,0.0000021505,0.0000021468,0.0000021436,0.0000021408, +0.0000021383,0.0000021363,0.0000021346,0.0000021326,0.0000021301, +0.0000021269,0.0000021232,0.0000021193,0.0000021154,0.0000021113, +0.0000021071,0.0000021033,0.0000021005,0.0000020993,0.0000020993, +0.0000020996,0.0000020999,0.0000021002,0.0000020997,0.0000020984, +0.0000020966,0.0000020946,0.0000020926,0.0000020905,0.0000020884, +0.0000020864,0.0000020840,0.0000020813,0.0000020787,0.0000020768, +0.0000020754,0.0000020743,0.0000020739,0.0000020744,0.0000020751, +0.0000020758,0.0000020763,0.0000020764,0.0000020762,0.0000020766, +0.0000020774,0.0000020789,0.0000020811,0.0000020839,0.0000020868, +0.0000020897,0.0000020923,0.0000020947,0.0000020966,0.0000020978, +0.0000020982,0.0000020975,0.0000020963,0.0000020947,0.0000020930, +0.0000020911,0.0000020895,0.0000020883,0.0000020872,0.0000020861, +0.0000020851,0.0000020846,0.0000020841,0.0000020830,0.0000020811, +0.0000020791,0.0000020772,0.0000020755,0.0000020739,0.0000020722, +0.0000020702,0.0000020679,0.0000020652,0.0000020621,0.0000020589, +0.0000020558,0.0000020525,0.0000020494,0.0000020468,0.0000020452, +0.0000020438,0.0000020435,0.0000020436,0.0000020443,0.0000020452, +0.0000020461,0.0000020469,0.0000020477,0.0000020480,0.0000020477, +0.0000020472,0.0000020460,0.0000020442,0.0000020418,0.0000020392, +0.0000020370,0.0000020353,0.0000020343,0.0000020339,0.0000020335, +0.0000020329,0.0000020322,0.0000020314,0.0000020306,0.0000020304, +0.0000020308,0.0000020317,0.0000020326,0.0000020335,0.0000020347, +0.0000020359,0.0000020365,0.0000020365,0.0000020357,0.0000020336, +0.0000020302,0.0000020262,0.0000020219,0.0000020177,0.0000020136, +0.0000020099,0.0000020074,0.0000020058,0.0000020047,0.0000020037, +0.0000020027,0.0000020016,0.0000019998,0.0000019981,0.0000019959, +0.0000019943,0.0000019927,0.0000019914,0.0000019900,0.0000019881, +0.0000019861,0.0000019845,0.0000019837,0.0000019840,0.0000019853, +0.0000019865,0.0000019874,0.0000019877,0.0000019879,0.0000019881, +0.0000019877,0.0000019866,0.0000019853,0.0000019846,0.0000019842, +0.0000019823,0.0000019802,0.0000019790,0.0000019785,0.0000019774, +0.0000019746,0.0000019707,0.0000019661,0.0000019625,0.0000019607, +0.0000019610,0.0000019640,0.0000019682,0.0000019725,0.0000019766, +0.0000019786,0.0000019786,0.0000019766,0.0000019723,0.0000019666, +0.0000019621,0.0000019600,0.0000019594,0.0000019593,0.0000019586, +0.0000019573,0.0000019557,0.0000019546,0.0000019542,0.0000019544, +0.0000019542,0.0000019545,0.0000019558,0.0000019566,0.0000019550, +0.0000019519,0.0000019505,0.0000019515,0.0000019558,0.0000019619, +0.0000019676,0.0000019726,0.0000019774,0.0000019822,0.0000019860, +0.0000019885,0.0000019897,0.0000019898,0.0000019897,0.0000019905, +0.0000019915,0.0000019931,0.0000019954,0.0000019981,0.0000019998, +0.0000019993,0.0000019976,0.0000019970,0.0000019984,0.0000020011, +0.0000020060,0.0000020132,0.0000020212,0.0000020275,0.0000020313, +0.0000020333,0.0000020341,0.0000020341,0.0000020337,0.0000020334, +0.0000020344,0.0000020367,0.0000020390,0.0000020403,0.0000020403, +0.0000020390,0.0000020368,0.0000020337,0.0000020317,0.0000020315, +0.0000020326,0.0000020353,0.0000020395,0.0000020439,0.0000020478, +0.0000020491,0.0000020492,0.0000020457,0.0000020395,0.0000020309, +0.0000020227,0.0000020175,0.0000020140,0.0000020148,0.0000020181, +0.0000020234,0.0000020292,0.0000020342,0.0000020384,0.0000020415, +0.0000020434,0.0000020442,0.0000020443,0.0000020439,0.0000020432, +0.0000020423,0.0000020416,0.0000020409,0.0000020400,0.0000020389, +0.0000020377,0.0000020365,0.0000020353,0.0000020343,0.0000020334, +0.0000020328,0.0000020328,0.0000020331,0.0000020337,0.0000020347, +0.0000020363,0.0000020379,0.0000020394,0.0000020406,0.0000020415, +0.0000020431,0.0000020452,0.0000020477,0.0000020507,0.0000020535, +0.0000020557,0.0000020578,0.0000020605,0.0000020639,0.0000020677, +0.0000020711,0.0000020736,0.0000020748,0.0000020746,0.0000020729, +0.0000020703,0.0000020682,0.0000020674,0.0000020675,0.0000020691, +0.0000020717,0.0000020746,0.0000020772,0.0000020792,0.0000020808, +0.0000020822,0.0000020829,0.0000020828,0.0000020826,0.0000020825, +0.0000020813,0.0000020778,0.0000020755,0.0000020747,0.0000020720, +0.0000020700,0.0000020663,0.0000020608,0.0000020590,0.0000020586, +0.0000020579,0.0000020588,0.0000020645,0.0000020766,0.0000020874, +0.0000020929,0.0000020977,0.0000021065,0.0000021152,0.0000021183, +0.0000021205,0.0000021231,0.0000021229,0.0000021209,0.0000021188, +0.0000021146,0.0000021073,0.0000020986,0.0000020925,0.0000020904, +0.0000020910,0.0000020947,0.0000021001,0.0000021054,0.0000021097, +0.0000021130,0.0000021152,0.0000021162,0.0000021170,0.0000021177, +0.0000021184,0.0000021192,0.0000021200,0.0000021207,0.0000021217, +0.0000021227,0.0000021238,0.0000021250,0.0000021261,0.0000021269, +0.0000021274,0.0000021281,0.0000021288,0.0000021291,0.0000021282, +0.0000021265,0.0000021245,0.0000021230,0.0000021216,0.0000021203, +0.0000021188,0.0000021173,0.0000021160,0.0000021154,0.0000021157, +0.0000021170,0.0000021192,0.0000021220,0.0000021251,0.0000021281, +0.0000021305,0.0000021317,0.0000021317,0.0000021319,0.0000021303, +0.0000021278,0.0000021243,0.0000021207,0.0000021201,0.0000021189, +0.0000021224,0.0000021289,0.0000021388,0.0000021507,0.0000021637, +0.0000021766,0.0000021883,0.0000021978,0.0000022051,0.0000022099, +0.0000022142,0.0000022174,0.0000022182,0.0000022214,0.0000022217, +0.0000022221,0.0000022220,0.0000022209,0.0000022202,0.0000022200, +0.0000022203,0.0000022214,0.0000022230,0.0000022241,0.0000022247, +0.0000022253,0.0000022256,0.0000022254,0.0000022241,0.0000022214, +0.0000022181,0.0000022143,0.0000022107,0.0000022076,0.0000022051, +0.0000022039,0.0000022037,0.0000022044,0.0000022051,0.0000022048, +0.0000022025,0.0000021981,0.0000021920,0.0000021854,0.0000021794, +0.0000021736,0.0000021653,0.0000021544,0.0000021406,0.0000021260, +0.0000021094,0.0000020896,0.0000020683,0.0000020493,0.0000020347, +0.0000020246,0.0000020168,0.0000020093,0.0000020013,0.0000019939, +0.0000019885,0.0000019848,0.0000019815,0.0000019793,0.0000019789, +0.0000019801,0.0000019813,0.0000019820,0.0000019825,0.0000019835, +0.0000019848,0.0000019856,0.0000019845,0.0000019816,0.0000019783, +0.0000019757,0.0000019754,0.0000019774,0.0000019801,0.0000019814, +0.0000019802,0.0000019775,0.0000019753,0.0000019753,0.0000019779, +0.0000019828,0.0000019885,0.0000019937,0.0000019981,0.0000020025, +0.0000020076,0.0000020128,0.0000020163,0.0000020172,0.0000020168, +0.0000020159,0.0000020148,0.0000020146,0.0000020151,0.0000020159, +0.0000020159,0.0000020136,0.0000020099,0.0000020067,0.0000020058, +0.0000020146,0.0000020290,0.0000020442,0.0000020539,0.0000020563, +0.0000020528,0.0000020493,0.0000020496,0.0000020548,0.0000020629, +0.0000020707,0.0000020755,0.0000020762,0.0000020756,0.0000020723, +0.0000020675,0.0000020617,0.0000020567,0.0000020530,0.0000020527, +0.0000020537,0.0000020582,0.0000020654,0.0000020747,0.0000020848, +0.0000020946,0.0000021029,0.0000021088,0.0000021119,0.0000021127, +0.0000021124,0.0000021122,0.0000021138,0.0000021168,0.0000021205, +0.0000021246,0.0000021278,0.0000021296,0.0000021298,0.0000021292, +0.0000021282,0.0000021276,0.0000021273,0.0000021269,0.0000021258, +0.0000021248,0.0000021241,0.0000021233,0.0000021219,0.0000021196, +0.0000021170,0.0000021144,0.0000021115,0.0000021083,0.0000021048, +0.0000021014,0.0000020976,0.0000020933,0.0000020889,0.0000020848, +0.0000020814,0.0000020783,0.0000020760,0.0000020749,0.0000020744, +0.0000020749,0.0000020769,0.0000020788,0.0000020804,0.0000020818, +0.0000020824,0.0000020826,0.0000020824,0.0000020820,0.0000020811, +0.0000020800,0.0000020794,0.0000020791,0.0000020790,0.0000020784, +0.0000020783,0.0000020792,0.0000020808,0.0000020820,0.0000020832, +0.0000020840,0.0000020846,0.0000020849,0.0000020846,0.0000020843, +0.0000020832,0.0000020815,0.0000020792,0.0000020766,0.0000020743, +0.0000020725,0.0000020711,0.0000020701,0.0000020698,0.0000020700, +0.0000020701,0.0000020703,0.0000020706,0.0000020706,0.0000020703, +0.0000020697,0.0000020690,0.0000020676,0.0000020650,0.0000020611, +0.0000020568,0.0000020530,0.0000020504,0.0000020490,0.0000020483, +0.0000020481,0.0000020481,0.0000020471,0.0000020446,0.0000020405, +0.0000020350,0.0000020285,0.0000020217,0.0000020148,0.0000020079, +0.0000020015,0.0000019958,0.0000019913,0.0000019879,0.0000019865, +0.0000019872,0.0000019896,0.0000019925,0.0000019953,0.0000019980, +0.0000020003,0.0000020021,0.0000020039,0.0000020060,0.0000020081, +0.0000020105,0.0000020133,0.0000020161,0.0000020185,0.0000020200, +0.0000020207,0.0000020208,0.0000020202,0.0000020189,0.0000020168, +0.0000020138,0.0000020102,0.0000020065,0.0000020029,0.0000020001, +0.0000019977,0.0000019955,0.0000019932,0.0000019912,0.0000019895, +0.0000019876,0.0000019858,0.0000019842,0.0000019826,0.0000019812, +0.0000019799,0.0000019787,0.0000019773,0.0000019760,0.0000019753, +0.0000019751,0.0000019755,0.0000019760,0.0000019761,0.0000019757, +0.0000019746,0.0000019726,0.0000019700,0.0000019670,0.0000019638, +0.0000019606,0.0000019574,0.0000019544,0.0000019518,0.0000019499, +0.0000019490,0.0000019489,0.0000019494,0.0000019506,0.0000019520, +0.0000019537,0.0000019557,0.0000019576,0.0000019589,0.0000019590, +0.0000019580,0.0000019562,0.0000019548,0.0000019537,0.0000019529, +0.0000019530,0.0000019542,0.0000019561,0.0000019588,0.0000019618, +0.0000019645,0.0000019666,0.0000019682,0.0000019691,0.0000019693, +0.0000019691,0.0000019688,0.0000019686,0.0000019689,0.0000019695, +0.0000019699,0.0000019700,0.0000019698,0.0000019691,0.0000019675, +0.0000019651,0.0000019622,0.0000019591,0.0000019562,0.0000019535, +0.0000019514,0.0000019501,0.0000019496,0.0000019496,0.0000019502, +0.0000019507,0.0000019509,0.0000019508,0.0000019505,0.0000019503, +0.0000019503,0.0000019506,0.0000019512,0.0000019515,0.0000019514, +0.0000019511,0.0000019505,0.0000019497,0.0000019488,0.0000019478, +0.0000019471,0.0000019464,0.0000019458,0.0000019457,0.0000019461, +0.0000019475,0.0000019492,0.0000019507,0.0000019513,0.0000019511, +0.0000019501,0.0000019485,0.0000019463,0.0000019439,0.0000019425, +0.0000019433,0.0000019468,0.0000019514,0.0000019551,0.0000019581, +0.0000019612,0.0000019649,0.0000019692,0.0000019718,0.0000019701, +0.0000019636,0.0000019574,0.0000019562,0.0000019639,0.0000019808, +0.0000019983,0.0000020179,0.0000020302,0.0000020281,0.0000020284, +0.0000020420,0.0000020534,0.0000020540,0.0000020530,0.0000020551, +0.0000020570,0.0000020559,0.0000020524,0.0000020490,0.0000020468, +0.0000020454,0.0000020443,0.0000020440,0.0000020442,0.0000020458, +0.0000020481,0.0000020504,0.0000020496,0.0000020422,0.0000020318, +0.0000020239,0.0000020205,0.0000020206,0.0000020229,0.0000020248, +0.0000020247,0.0000020231,0.0000020211,0.0000020198,0.0000020194, +0.0000020197,0.0000020197,0.0000020190,0.0000020180,0.0000020179, +0.0000020185,0.0000020190,0.0000020210,0.0000020254,0.0000020289, +0.0000020287,0.0000020264,0.0000020257,0.0000020272,0.0000020310, +0.0000020347,0.0000020366,0.0000020364,0.0000020354,0.0000020351, +0.0000020353,0.0000020354,0.0000020347,0.0000020332,0.0000020313, +0.0000020293,0.0000020272,0.0000020253,0.0000020236,0.0000020220, +0.0000020210,0.0000020206,0.0000020202,0.0000020194,0.0000020187, +0.0000020180,0.0000020171,0.0000020157,0.0000020143,0.0000020132, +0.0000020124,0.0000020117,0.0000020114,0.0000020113,0.0000020110, +0.0000020106,0.0000020101,0.0000020095,0.0000020086,0.0000020077, +0.0000020068,0.0000020061,0.0000020054,0.0000020047,0.0000020039, +0.0000020033,0.0000020027,0.0000020023,0.0000020018,0.0000020013, +0.0000020008,0.0000020002,0.0000019994,0.0000019984,0.0000019973, +0.0000019959,0.0000019945,0.0000019929,0.0000019912,0.0000019896, +0.0000019882,0.0000019869,0.0000019854,0.0000019839,0.0000019823, +0.0000019808,0.0000019795,0.0000019784,0.0000019775,0.0000019769, +0.0000019767,0.0000019769,0.0000019775,0.0000019783,0.0000019793, +0.0000019805,0.0000019818,0.0000019828,0.0000019834,0.0000019840, +0.0000019843,0.0000019843,0.0000019841,0.0000019837,0.0000019829, +0.0000019817,0.0000019799,0.0000019775,0.0000019744,0.0000019710, +0.0000019680,0.0000019655,0.0000019634,0.0000019617,0.0000019596, +0.0000019567,0.0000019534,0.0000019500,0.0000019474,0.0000019470, +0.0000019489,0.0000019525,0.0000019565,0.0000019587,0.0000019583, +0.0000019559,0.0000019529,0.0000019511,0.0000019509,0.0000019522, +0.0000019537,0.0000019544,0.0000019541,0.0000019530,0.0000019536, +0.0000019562,0.0000019600,0.0000019624,0.0000019630,0.0000019633, +0.0000019672,0.0000019672,0.0000019683,0.0000019707,0.0000019736, +0.0000019763,0.0000019789,0.0000019827,0.0000019872,0.0000019922, +0.0000019972,0.0000020010,0.0000020043,0.0000020062,0.0000020065, +0.0000020066,0.0000020066,0.0000020070,0.0000020078,0.0000020083, +0.0000020086,0.0000020087,0.0000020088,0.0000020085,0.0000020082, +0.0000020078,0.0000020076,0.0000020080,0.0000020086,0.0000020094, +0.0000020103,0.0000020110,0.0000020116,0.0000020123,0.0000020131, +0.0000020135,0.0000020130,0.0000020115,0.0000020093,0.0000020061, +0.0000020019,0.0000019979,0.0000019955,0.0000019948,0.0000019964, +0.0000020009,0.0000020064,0.0000020123,0.0000020179,0.0000020227, +0.0000020273,0.0000020321,0.0000020358,0.0000020381,0.0000020387, +0.0000020381,0.0000020361,0.0000020330,0.0000020290,0.0000020242, +0.0000020196,0.0000020166,0.0000020152,0.0000020136,0.0000020123, +0.0000020115,0.0000020106,0.0000020097,0.0000020097,0.0000020114, +0.0000020136,0.0000020149,0.0000020156,0.0000020175,0.0000020203, +0.0000020229,0.0000020250,0.0000020268,0.0000020285,0.0000020300, +0.0000020311,0.0000020315,0.0000020317,0.0000020319,0.0000020328, +0.0000020340,0.0000020354,0.0000020372,0.0000020395,0.0000020421, +0.0000020447,0.0000020472,0.0000020492,0.0000020504,0.0000020513, +0.0000020523,0.0000020532,0.0000020538,0.0000020544,0.0000020548, +0.0000020552,0.0000020555,0.0000020556,0.0000020554,0.0000020551, +0.0000020546,0.0000020541,0.0000020539,0.0000020541,0.0000020547, +0.0000020558,0.0000020578,0.0000020602,0.0000020626,0.0000020649, +0.0000020671,0.0000020689,0.0000020702,0.0000020708,0.0000020706, +0.0000020700,0.0000020694,0.0000020684,0.0000020671,0.0000020657, +0.0000020648,0.0000020642,0.0000020639,0.0000020641,0.0000020643, +0.0000020647,0.0000020654,0.0000020668,0.0000020694,0.0000020732, +0.0000020767,0.0000020790,0.0000020811,0.0000020838,0.0000020868, +0.0000020904,0.0000020943,0.0000020961,0.0000020953,0.0000020911, +0.0000020856,0.0000020817,0.0000020788,0.0000020760,0.0000020729, +0.0000020703,0.0000020687,0.0000020681,0.0000020679,0.0000020678, +0.0000020677,0.0000020692,0.0000020726,0.0000020770,0.0000020810, +0.0000020843,0.0000020868,0.0000020882,0.0000020885,0.0000020884, +0.0000020884,0.0000020884,0.0000020881,0.0000020876,0.0000020872, +0.0000020870,0.0000020877,0.0000020899,0.0000020925,0.0000020945, +0.0000020959,0.0000020973,0.0000020987,0.0000021010,0.0000021048, +0.0000021091,0.0000021124,0.0000021144,0.0000021155,0.0000021162, +0.0000021164,0.0000021157,0.0000021144,0.0000021132,0.0000021131, +0.0000021145,0.0000021176,0.0000021216,0.0000021255,0.0000021292, +0.0000021326,0.0000021355,0.0000021375,0.0000021389,0.0000021395, +0.0000021390,0.0000021374,0.0000021349,0.0000021320,0.0000021290, +0.0000021262,0.0000021240,0.0000021226,0.0000021215,0.0000021205, +0.0000021196,0.0000021191,0.0000021192,0.0000021197,0.0000021204, +0.0000021214,0.0000021228,0.0000021257,0.0000021301,0.0000021348, +0.0000021393,0.0000021436,0.0000021480,0.0000021521,0.0000021559, +0.0000021590,0.0000021612,0.0000021629,0.0000021640,0.0000021646, +0.0000021651,0.0000021654,0.0000021653,0.0000021653,0.0000021654, +0.0000021657,0.0000021659,0.0000021660,0.0000021659,0.0000021654, +0.0000021647,0.0000021640,0.0000021629,0.0000021617,0.0000021607, +0.0000021598,0.0000021588,0.0000021577,0.0000021566,0.0000021557, +0.0000021551,0.0000021551,0.0000021552,0.0000021551,0.0000021550, +0.0000021550,0.0000021555,0.0000021563,0.0000021567,0.0000021571, +0.0000021575,0.0000021581,0.0000021588,0.0000021589,0.0000021583, +0.0000021578,0.0000021575,0.0000021569,0.0000021558,0.0000021543, +0.0000021524,0.0000021507,0.0000021483,0.0000021444,0.0000021395, +0.0000021370,0.0000021358,0.0000021331,0.0000021295,0.0000021286, +0.0000021313,0.0000021389,0.0000021483,0.0000021537,0.0000021583, +0.0000021643,0.0000021684,0.0000021674,0.0000021600,0.0000021534, +0.0000021506,0.0000021489,0.0000021447,0.0000021395,0.0000021372, +0.0000021386,0.0000021451,0.0000021484,0.0000021464,0.0000021420, +0.0000021380,0.0000021347,0.0000021326,0.0000021297,0.0000021266, +0.0000021230,0.0000021198,0.0000021183,0.0000021182,0.0000021182, +0.0000021177,0.0000021168,0.0000021149,0.0000021132,0.0000021114, +0.0000021092,0.0000021065,0.0000021026,0.0000020985,0.0000020941, +0.0000020901,0.0000020877,0.0000020869,0.0000020870,0.0000020875, +0.0000020884,0.0000020884,0.0000020877,0.0000020878,0.0000020876, +0.0000020858,0.0000020820,0.0000020769,0.0000020716,0.0000020663, +0.0000020610,0.0000020576,0.0000020566,0.0000020558,0.0000020543, +0.0000020519,0.0000020494,0.0000020479,0.0000020480,0.0000020511, +0.0000020565,0.0000020609,0.0000020613,0.0000020543,0.0000020415, +0.0000020294,0.0000020230,0.0000020220,0.0000020128,0.0000020032, +0.0000020049,0.0000020080,0.0000020098,0.0000020149,0.0000020266, +0.0000020365,0.0000020395,0.0000020398,0.0000020445,0.0000020519, +0.0000020582,0.0000020622,0.0000020662,0.0000020747,0.0000020911, +0.0000021069,0.0000021131,0.0000021178,0.0000021368,0.0000021449, +0.0000021452,0.0000021549,0.0000021557,0.0000021544,0.0000021588, +0.0000021644,0.0000021616,0.0000021608,0.0000021744,0.0000021831, +0.0000021797,0.0000021734,0.0000021706,0.0000021745,0.0000021753, +0.0000021771,0.0000021890,0.0000021951,0.0000021953,0.0000021943, +0.0000022000,0.0000022114,0.0000022150,0.0000022160,0.0000022218, +0.0000022317,0.0000022399,0.0000022434,0.0000022427,0.0000022418, +0.0000022425,0.0000022434,0.0000022448,0.0000022461,0.0000022465, +0.0000022464,0.0000022429,0.0000022358,0.0000022244,0.0000022106, +0.0000021986,0.0000021926,0.0000021910,0.0000021916,0.0000021945, +0.0000021974,0.0000021987,0.0000021977,0.0000021932,0.0000021856, +0.0000021755,0.0000021649,0.0000021559,0.0000021498,0.0000021457, +0.0000021425,0.0000021400,0.0000021383,0.0000021356,0.0000021315, +0.0000021253,0.0000021182,0.0000021115,0.0000021053,0.0000021004, +0.0000020966,0.0000020931,0.0000020904,0.0000020877,0.0000020858, +0.0000020842,0.0000020833,0.0000020858,0.0000020904,0.0000020957, +0.0000021034,0.0000021099,0.0000021153,0.0000021186,0.0000021200, +0.0000021212,0.0000021216,0.0000021222,0.0000021224,0.0000021197, +0.0000021163,0.0000021124,0.0000021077,0.0000021047,0.0000021041, +0.0000021055,0.0000021077,0.0000021082,0.0000021079,0.0000021077, +0.0000021091,0.0000021122,0.0000021180,0.0000021258,0.0000021334, +0.0000021392,0.0000021428,0.0000021436,0.0000021432,0.0000021422, +0.0000021414,0.0000021409,0.0000021408,0.0000021417,0.0000021432, +0.0000021441,0.0000021448,0.0000021452,0.0000021449,0.0000021449, +0.0000021461,0.0000021480,0.0000021502,0.0000021529,0.0000021550, +0.0000021570,0.0000021588,0.0000021604,0.0000021619,0.0000021645, +0.0000021669,0.0000021687,0.0000021701,0.0000021712,0.0000021724, +0.0000021750,0.0000021781,0.0000021806,0.0000021831,0.0000021845, +0.0000021847,0.0000021855,0.0000021854,0.0000021835,0.0000021813, +0.0000021786,0.0000021769,0.0000021755,0.0000021747,0.0000021740, +0.0000021729,0.0000021716,0.0000021704,0.0000021691,0.0000021676, +0.0000021671,0.0000021663,0.0000021656,0.0000021649,0.0000021644, +0.0000021646,0.0000021651,0.0000021652,0.0000021648,0.0000021635, +0.0000021629,0.0000021629,0.0000021634,0.0000021643,0.0000021658, +0.0000021677,0.0000021695,0.0000021711,0.0000021724,0.0000021737, +0.0000021749,0.0000021758,0.0000021769,0.0000021780,0.0000021791, +0.0000021804,0.0000021826,0.0000021855,0.0000021885,0.0000021917, +0.0000021951,0.0000021975,0.0000021986,0.0000021976,0.0000021956, +0.0000021933,0.0000021904,0.0000021881,0.0000021863,0.0000021851, +0.0000021851,0.0000021857,0.0000021864,0.0000021874,0.0000021892, +0.0000021913,0.0000021937,0.0000021962,0.0000021993,0.0000022024, +0.0000022051,0.0000022071,0.0000022081,0.0000022082,0.0000022078, +0.0000022074,0.0000022071,0.0000022080,0.0000022098,0.0000022114, +0.0000022125,0.0000022132,0.0000022135,0.0000022130,0.0000022115, +0.0000022092,0.0000022057,0.0000022015,0.0000021969,0.0000021915, +0.0000021855,0.0000021802,0.0000021762,0.0000021741,0.0000021740, +0.0000021745,0.0000021747,0.0000021755,0.0000021772,0.0000021794, +0.0000021821,0.0000021842,0.0000021853,0.0000021857,0.0000021858, +0.0000021858,0.0000021862,0.0000021869,0.0000021880,0.0000021899, +0.0000021918,0.0000021940,0.0000021964,0.0000021994,0.0000022023, +0.0000022051,0.0000022069,0.0000022074,0.0000022068,0.0000022044, +0.0000022014,0.0000021982,0.0000021952,0.0000021926,0.0000021901, +0.0000021878,0.0000021857,0.0000021838,0.0000021819,0.0000021800, +0.0000021781,0.0000021763,0.0000021748,0.0000021730,0.0000021713, +0.0000021700,0.0000021683,0.0000021674,0.0000021665,0.0000021656, +0.0000021649,0.0000021639,0.0000021637,0.0000021639,0.0000021639, +0.0000021636,0.0000021634,0.0000021631,0.0000021630,0.0000021629, +0.0000021631,0.0000021636,0.0000021648,0.0000021662,0.0000021675, +0.0000021687,0.0000021701,0.0000021714,0.0000021722,0.0000021723, +0.0000021715,0.0000021694,0.0000021663,0.0000021622,0.0000021577, +0.0000021534,0.0000021494,0.0000021459,0.0000021429,0.0000021402, +0.0000021374,0.0000021347,0.0000021315,0.0000021277,0.0000021236, +0.0000021196,0.0000021155,0.0000021112,0.0000021072,0.0000021041, +0.0000021023,0.0000021019,0.0000021019,0.0000021023,0.0000021035, +0.0000021047,0.0000021049,0.0000021043,0.0000021032,0.0000021020, +0.0000021003,0.0000020986,0.0000020968,0.0000020947,0.0000020919, +0.0000020888,0.0000020858,0.0000020830,0.0000020805,0.0000020787, +0.0000020777,0.0000020772,0.0000020770,0.0000020770,0.0000020770, +0.0000020766,0.0000020761,0.0000020755,0.0000020756,0.0000020755, +0.0000020767,0.0000020782,0.0000020803,0.0000020827,0.0000020853, +0.0000020879,0.0000020904,0.0000020925,0.0000020939,0.0000020943, +0.0000020938,0.0000020929,0.0000020913,0.0000020893,0.0000020872, +0.0000020854,0.0000020836,0.0000020820,0.0000020810,0.0000020806, +0.0000020802,0.0000020794,0.0000020783,0.0000020773,0.0000020763, +0.0000020755,0.0000020750,0.0000020739,0.0000020724,0.0000020703, +0.0000020677,0.0000020647,0.0000020614,0.0000020580,0.0000020543, +0.0000020508,0.0000020480,0.0000020461,0.0000020450,0.0000020443, +0.0000020443,0.0000020449,0.0000020455,0.0000020464,0.0000020473, +0.0000020478,0.0000020478,0.0000020474,0.0000020465,0.0000020448, +0.0000020424,0.0000020395,0.0000020368,0.0000020347,0.0000020332, +0.0000020324,0.0000020319,0.0000020314,0.0000020308,0.0000020301, +0.0000020294,0.0000020293,0.0000020297,0.0000020307,0.0000020318, +0.0000020332,0.0000020349,0.0000020365,0.0000020375,0.0000020376, +0.0000020369,0.0000020349,0.0000020319,0.0000020282,0.0000020243, +0.0000020203,0.0000020164,0.0000020131,0.0000020107,0.0000020092, +0.0000020081,0.0000020071,0.0000020059,0.0000020043,0.0000020021, +0.0000019995,0.0000019968,0.0000019945,0.0000019920,0.0000019902, +0.0000019888,0.0000019865,0.0000019842,0.0000019828,0.0000019825, +0.0000019831,0.0000019851,0.0000019869,0.0000019883,0.0000019895, +0.0000019904,0.0000019906,0.0000019901,0.0000019888,0.0000019871, +0.0000019858,0.0000019851,0.0000019833,0.0000019816,0.0000019814, +0.0000019814,0.0000019804,0.0000019771,0.0000019722,0.0000019671, +0.0000019633,0.0000019611,0.0000019609,0.0000019626,0.0000019656, +0.0000019694,0.0000019727,0.0000019742,0.0000019745,0.0000019733, +0.0000019705,0.0000019660,0.0000019612,0.0000019579,0.0000019567, +0.0000019568,0.0000019563,0.0000019552,0.0000019540,0.0000019532, +0.0000019526,0.0000019524,0.0000019522,0.0000019523,0.0000019535, +0.0000019548,0.0000019542,0.0000019520,0.0000019509,0.0000019519, +0.0000019562,0.0000019618,0.0000019666,0.0000019718,0.0000019766, +0.0000019812,0.0000019851,0.0000019880,0.0000019895,0.0000019896, +0.0000019892,0.0000019890,0.0000019890,0.0000019888,0.0000019887, +0.0000019897,0.0000019925,0.0000019943,0.0000019929,0.0000019900, +0.0000019885,0.0000019887,0.0000019906,0.0000019952,0.0000020028, +0.0000020111,0.0000020181,0.0000020233,0.0000020273,0.0000020294, +0.0000020296,0.0000020288,0.0000020283,0.0000020292,0.0000020310, +0.0000020330,0.0000020345,0.0000020357,0.0000020360,0.0000020348, +0.0000020333,0.0000020321,0.0000020311,0.0000020306,0.0000020312, +0.0000020334,0.0000020368,0.0000020403,0.0000020436,0.0000020463, +0.0000020455,0.0000020429,0.0000020374,0.0000020296,0.0000020216, +0.0000020147,0.0000020123,0.0000020093,0.0000020106,0.0000020134, +0.0000020173,0.0000020217,0.0000020257,0.0000020289,0.0000020314, +0.0000020332,0.0000020342,0.0000020349,0.0000020354,0.0000020359, +0.0000020364,0.0000020366,0.0000020366,0.0000020363,0.0000020358, +0.0000020353,0.0000020349,0.0000020345,0.0000020343,0.0000020343, +0.0000020347,0.0000020357,0.0000020372,0.0000020384,0.0000020391, +0.0000020394,0.0000020398,0.0000020407,0.0000020418,0.0000020434, +0.0000020455,0.0000020481,0.0000020509,0.0000020539,0.0000020574, +0.0000020613,0.0000020650,0.0000020676,0.0000020687,0.0000020686, +0.0000020678,0.0000020669,0.0000020665,0.0000020672,0.0000020695, +0.0000020727,0.0000020761,0.0000020791,0.0000020815,0.0000020836, +0.0000020853,0.0000020868,0.0000020884,0.0000020897,0.0000020896, +0.0000020879,0.0000020866,0.0000020855,0.0000020815,0.0000020780, +0.0000020768,0.0000020736,0.0000020710,0.0000020674,0.0000020621, +0.0000020600,0.0000020592,0.0000020582,0.0000020589,0.0000020640, +0.0000020753,0.0000020851,0.0000020899,0.0000020950,0.0000021041, +0.0000021121,0.0000021149,0.0000021177,0.0000021203,0.0000021200, +0.0000021180,0.0000021158,0.0000021111,0.0000021025,0.0000020926, +0.0000020862,0.0000020850,0.0000020866,0.0000020914,0.0000020977, +0.0000021033,0.0000021076,0.0000021107,0.0000021125,0.0000021131, +0.0000021132,0.0000021131,0.0000021131,0.0000021133,0.0000021136, +0.0000021139,0.0000021143,0.0000021147,0.0000021152,0.0000021159, +0.0000021165,0.0000021172,0.0000021179,0.0000021189,0.0000021201, +0.0000021212,0.0000021216,0.0000021210,0.0000021200,0.0000021189, +0.0000021178,0.0000021167,0.0000021154,0.0000021142,0.0000021132, +0.0000021126,0.0000021126,0.0000021131,0.0000021141,0.0000021158, +0.0000021180,0.0000021206,0.0000021234,0.0000021261,0.0000021286, +0.0000021305,0.0000021313,0.0000021310,0.0000021295,0.0000021266, +0.0000021227,0.0000021190,0.0000021173,0.0000021152,0.0000021174, +0.0000021226,0.0000021315,0.0000021432,0.0000021566,0.0000021702, +0.0000021827,0.0000021936,0.0000022027,0.0000022097,0.0000022151, +0.0000022191,0.0000022222,0.0000022260,0.0000022264,0.0000022293, +0.0000022303,0.0000022307,0.0000022315,0.0000022316,0.0000022313, +0.0000022308,0.0000022299,0.0000022287,0.0000022277,0.0000022263, +0.0000022238,0.0000022200,0.0000022151,0.0000022101,0.0000022055, +0.0000022015,0.0000021985,0.0000021966,0.0000021955,0.0000021946, +0.0000021933,0.0000021908,0.0000021868,0.0000021821,0.0000021776, +0.0000021736,0.0000021699,0.0000021653,0.0000021584,0.0000021483, +0.0000021368,0.0000021239,0.0000021082,0.0000020890,0.0000020681, +0.0000020489,0.0000020340,0.0000020235,0.0000020160,0.0000020093, +0.0000020016,0.0000019934,0.0000019865,0.0000019817,0.0000019782, +0.0000019756,0.0000019744,0.0000019746,0.0000019750,0.0000019750, +0.0000019750,0.0000019757,0.0000019775,0.0000019794,0.0000019801, +0.0000019790,0.0000019764,0.0000019737,0.0000019721,0.0000019733, +0.0000019758,0.0000019775,0.0000019773,0.0000019753,0.0000019734, +0.0000019728,0.0000019744,0.0000019784,0.0000019838,0.0000019892, +0.0000019939,0.0000019978,0.0000020024,0.0000020076,0.0000020120, +0.0000020146,0.0000020152,0.0000020142,0.0000020136,0.0000020135, +0.0000020141,0.0000020153,0.0000020158,0.0000020145,0.0000020102, +0.0000020045,0.0000020024,0.0000020063,0.0000020174,0.0000020322, +0.0000020448,0.0000020504,0.0000020496,0.0000020460,0.0000020442, +0.0000020468,0.0000020534,0.0000020624,0.0000020705,0.0000020752, +0.0000020756,0.0000020750,0.0000020714,0.0000020662,0.0000020605, +0.0000020558,0.0000020522,0.0000020519,0.0000020534,0.0000020582, +0.0000020657,0.0000020749,0.0000020846,0.0000020938,0.0000021012, +0.0000021062,0.0000021083,0.0000021081,0.0000021071,0.0000021064, +0.0000021068,0.0000021091,0.0000021121,0.0000021152,0.0000021172, +0.0000021177,0.0000021168,0.0000021159,0.0000021150,0.0000021142, +0.0000021130,0.0000021114,0.0000021102,0.0000021092,0.0000021083, +0.0000021063,0.0000021044,0.0000021028,0.0000021014,0.0000020998, +0.0000020975,0.0000020949,0.0000020920,0.0000020894,0.0000020867, +0.0000020841,0.0000020818,0.0000020800,0.0000020789,0.0000020785, +0.0000020787,0.0000020796,0.0000020811,0.0000020820,0.0000020833, +0.0000020837,0.0000020838,0.0000020839,0.0000020839,0.0000020840, +0.0000020835,0.0000020828,0.0000020822,0.0000020818,0.0000020806, +0.0000020798,0.0000020787,0.0000020784,0.0000020788,0.0000020800, +0.0000020815,0.0000020827,0.0000020837,0.0000020844,0.0000020845, +0.0000020841,0.0000020831,0.0000020814,0.0000020791,0.0000020767, +0.0000020746,0.0000020727,0.0000020710,0.0000020701,0.0000020699, +0.0000020702,0.0000020702,0.0000020703,0.0000020704,0.0000020703, +0.0000020697,0.0000020693,0.0000020688,0.0000020676,0.0000020656, +0.0000020631,0.0000020604,0.0000020573,0.0000020539,0.0000020508, +0.0000020489,0.0000020484,0.0000020487,0.0000020486,0.0000020469, +0.0000020436,0.0000020388,0.0000020325,0.0000020257,0.0000020188, +0.0000020118,0.0000020050,0.0000019986,0.0000019925,0.0000019868, +0.0000019817,0.0000019784,0.0000019775,0.0000019780,0.0000019799, +0.0000019828,0.0000019858,0.0000019885,0.0000019911,0.0000019941, +0.0000019973,0.0000020005,0.0000020038,0.0000020070,0.0000020096, +0.0000020113,0.0000020121,0.0000020120,0.0000020108,0.0000020087, +0.0000020058,0.0000020023,0.0000019987,0.0000019956,0.0000019931, +0.0000019913,0.0000019897,0.0000019879,0.0000019860,0.0000019845, +0.0000019834,0.0000019823,0.0000019810,0.0000019794,0.0000019778, +0.0000019764,0.0000019752,0.0000019737,0.0000019721,0.0000019709, +0.0000019701,0.0000019696,0.0000019692,0.0000019687,0.0000019683, +0.0000019678,0.0000019673,0.0000019666,0.0000019655,0.0000019636, +0.0000019614,0.0000019588,0.0000019559,0.0000019528,0.0000019496, +0.0000019466,0.0000019444,0.0000019434,0.0000019431,0.0000019436, +0.0000019444,0.0000019456,0.0000019472,0.0000019492,0.0000019513, +0.0000019532,0.0000019544,0.0000019550,0.0000019546,0.0000019535, +0.0000019524,0.0000019516,0.0000019510,0.0000019508,0.0000019519, +0.0000019537,0.0000019557,0.0000019578,0.0000019601,0.0000019621, +0.0000019636,0.0000019647,0.0000019654,0.0000019661,0.0000019669, +0.0000019678,0.0000019688,0.0000019695,0.0000019698,0.0000019697, +0.0000019692,0.0000019678,0.0000019656,0.0000019628,0.0000019598, +0.0000019570,0.0000019546,0.0000019528,0.0000019516,0.0000019512, +0.0000019514,0.0000019520,0.0000019525,0.0000019526,0.0000019525, +0.0000019523,0.0000019522,0.0000019524,0.0000019529,0.0000019532, +0.0000019532,0.0000019528,0.0000019519,0.0000019508,0.0000019496, +0.0000019484,0.0000019472,0.0000019461,0.0000019453,0.0000019450, +0.0000019453,0.0000019468,0.0000019488,0.0000019507,0.0000019519, +0.0000019522,0.0000019514,0.0000019494,0.0000019467,0.0000019435, +0.0000019409,0.0000019399,0.0000019418,0.0000019464,0.0000019512, +0.0000019548,0.0000019576,0.0000019606,0.0000019649,0.0000019691, +0.0000019695,0.0000019644,0.0000019580,0.0000019558,0.0000019598, +0.0000019752,0.0000019928,0.0000020107,0.0000020283,0.0000020320, +0.0000020274,0.0000020335,0.0000020485,0.0000020550,0.0000020539, +0.0000020535,0.0000020558,0.0000020574,0.0000020566,0.0000020540, +0.0000020512,0.0000020488,0.0000020469,0.0000020459,0.0000020457, +0.0000020459,0.0000020471,0.0000020493,0.0000020504,0.0000020485, +0.0000020397,0.0000020287,0.0000020217,0.0000020200,0.0000020209, +0.0000020232,0.0000020250,0.0000020253,0.0000020245,0.0000020233, +0.0000020216,0.0000020204,0.0000020199,0.0000020194,0.0000020188, +0.0000020189,0.0000020192,0.0000020191,0.0000020206,0.0000020245, +0.0000020271,0.0000020265,0.0000020240,0.0000020231,0.0000020250, +0.0000020293,0.0000020339,0.0000020364,0.0000020367,0.0000020360, +0.0000020353,0.0000020356,0.0000020361,0.0000020361,0.0000020352, +0.0000020333,0.0000020308,0.0000020283,0.0000020261,0.0000020242, +0.0000020225,0.0000020214,0.0000020207,0.0000020199,0.0000020190, +0.0000020182,0.0000020172,0.0000020158,0.0000020137,0.0000020117, +0.0000020097,0.0000020079,0.0000020068,0.0000020062,0.0000020058, +0.0000020052,0.0000020046,0.0000020037,0.0000020025,0.0000020013, +0.0000020003,0.0000019996,0.0000019989,0.0000019982,0.0000019972, +0.0000019963,0.0000019956,0.0000019951,0.0000019946,0.0000019940, +0.0000019934,0.0000019930,0.0000019927,0.0000019924,0.0000019921, +0.0000019918,0.0000019912,0.0000019904,0.0000019895,0.0000019886, +0.0000019874,0.0000019860,0.0000019844,0.0000019827,0.0000019810, +0.0000019794,0.0000019780,0.0000019768,0.0000019757,0.0000019748, +0.0000019741,0.0000019739,0.0000019739,0.0000019742,0.0000019748, +0.0000019756,0.0000019766,0.0000019775,0.0000019783,0.0000019789, +0.0000019791,0.0000019790,0.0000019787,0.0000019781,0.0000019773, +0.0000019763,0.0000019750,0.0000019735,0.0000019717,0.0000019694, +0.0000019665,0.0000019634,0.0000019606,0.0000019581,0.0000019563, +0.0000019552,0.0000019544,0.0000019536,0.0000019525,0.0000019505, +0.0000019484,0.0000019474,0.0000019483,0.0000019504,0.0000019531, +0.0000019547,0.0000019540,0.0000019515,0.0000019488,0.0000019479, +0.0000019494,0.0000019528,0.0000019560,0.0000019579,0.0000019581, +0.0000019577,0.0000019584,0.0000019611,0.0000019647,0.0000019669, +0.0000019691,0.0000019705,0.0000019702,0.0000019700,0.0000019708, +0.0000019734,0.0000019766,0.0000019796,0.0000019827,0.0000019862, +0.0000019904,0.0000019953,0.0000020002,0.0000020047,0.0000020075, +0.0000020087,0.0000020100,0.0000020101,0.0000020097,0.0000020096, +0.0000020097,0.0000020097,0.0000020095,0.0000020090,0.0000020084, +0.0000020078,0.0000020072,0.0000020069,0.0000020070,0.0000020076, +0.0000020087,0.0000020100,0.0000020110,0.0000020117,0.0000020122, +0.0000020122,0.0000020113,0.0000020091,0.0000020059,0.0000020021, +0.0000019978,0.0000019941,0.0000019919,0.0000019913,0.0000019932, +0.0000019981,0.0000020046,0.0000020113,0.0000020171,0.0000020223, +0.0000020274,0.0000020328,0.0000020369,0.0000020392,0.0000020397, +0.0000020388,0.0000020365,0.0000020331,0.0000020290,0.0000020239, +0.0000020183,0.0000020138,0.0000020112,0.0000020094,0.0000020083, +0.0000020075,0.0000020063,0.0000020053,0.0000020051,0.0000020065, +0.0000020079,0.0000020092,0.0000020108,0.0000020132,0.0000020165, +0.0000020198,0.0000020221,0.0000020241,0.0000020258,0.0000020268, +0.0000020273,0.0000020277,0.0000020281,0.0000020284,0.0000020290, +0.0000020301,0.0000020315,0.0000020332,0.0000020355,0.0000020383, +0.0000020411,0.0000020434,0.0000020450,0.0000020463,0.0000020475, +0.0000020489,0.0000020499,0.0000020504,0.0000020507,0.0000020509, +0.0000020509,0.0000020511,0.0000020510,0.0000020509,0.0000020506, +0.0000020502,0.0000020497,0.0000020491,0.0000020484,0.0000020479, +0.0000020481,0.0000020489,0.0000020499,0.0000020513,0.0000020532, +0.0000020550,0.0000020566,0.0000020582,0.0000020597,0.0000020606, +0.0000020608,0.0000020606,0.0000020602,0.0000020598,0.0000020595, +0.0000020595,0.0000020595,0.0000020598,0.0000020601,0.0000020606, +0.0000020610,0.0000020614,0.0000020623,0.0000020644,0.0000020681, +0.0000020723,0.0000020757,0.0000020782,0.0000020811,0.0000020846, +0.0000020882,0.0000020925,0.0000020957,0.0000020958,0.0000020925, +0.0000020866,0.0000020818,0.0000020787,0.0000020756,0.0000020721, +0.0000020691,0.0000020669,0.0000020656,0.0000020652,0.0000020649, +0.0000020646,0.0000020657,0.0000020691,0.0000020730,0.0000020768, +0.0000020801,0.0000020826,0.0000020842,0.0000020849,0.0000020852, +0.0000020856,0.0000020854,0.0000020839,0.0000020825,0.0000020821, +0.0000020823,0.0000020834,0.0000020857,0.0000020891,0.0000020927, +0.0000020951,0.0000020966,0.0000020979,0.0000020992,0.0000021011, +0.0000021038,0.0000021067,0.0000021092,0.0000021106,0.0000021112, +0.0000021114,0.0000021112,0.0000021102,0.0000021092,0.0000021089, +0.0000021098,0.0000021121,0.0000021154,0.0000021196,0.0000021243, +0.0000021291,0.0000021333,0.0000021367,0.0000021390,0.0000021401, +0.0000021403,0.0000021398,0.0000021381,0.0000021356,0.0000021327, +0.0000021294,0.0000021264,0.0000021241,0.0000021225,0.0000021212, +0.0000021200,0.0000021190,0.0000021185,0.0000021186,0.0000021191, +0.0000021200,0.0000021209,0.0000021223,0.0000021249,0.0000021287, +0.0000021331,0.0000021373,0.0000021414,0.0000021455,0.0000021493, +0.0000021527,0.0000021560,0.0000021589,0.0000021611,0.0000021627, +0.0000021637,0.0000021641,0.0000021638,0.0000021630,0.0000021618, +0.0000021605,0.0000021590,0.0000021576,0.0000021567,0.0000021558, +0.0000021550,0.0000021544,0.0000021537,0.0000021533,0.0000021529, +0.0000021526,0.0000021521,0.0000021514,0.0000021505,0.0000021498, +0.0000021493,0.0000021494,0.0000021498,0.0000021502,0.0000021505, +0.0000021510,0.0000021519,0.0000021530,0.0000021537,0.0000021543, +0.0000021544,0.0000021549,0.0000021559,0.0000021566,0.0000021570, +0.0000021571,0.0000021573,0.0000021572,0.0000021566,0.0000021554, +0.0000021540,0.0000021525,0.0000021503,0.0000021463,0.0000021410, +0.0000021373,0.0000021354,0.0000021326,0.0000021287,0.0000021271, +0.0000021287,0.0000021342,0.0000021441,0.0000021512,0.0000021560, +0.0000021616,0.0000021669,0.0000021687,0.0000021635,0.0000021553, +0.0000021508,0.0000021485,0.0000021438,0.0000021402,0.0000021409, +0.0000021467,0.0000021507,0.0000021490,0.0000021437,0.0000021385, +0.0000021342,0.0000021316,0.0000021289,0.0000021259,0.0000021227, +0.0000021191,0.0000021168,0.0000021161,0.0000021162,0.0000021161, +0.0000021156,0.0000021140,0.0000021121,0.0000021103,0.0000021083, +0.0000021056,0.0000021021,0.0000020981,0.0000020935,0.0000020886, +0.0000020843,0.0000020814,0.0000020801,0.0000020798,0.0000020806, +0.0000020818,0.0000020821,0.0000020825,0.0000020837,0.0000020837, +0.0000020812,0.0000020770,0.0000020717,0.0000020660,0.0000020601, +0.0000020547,0.0000020517,0.0000020507,0.0000020499,0.0000020479, +0.0000020450,0.0000020428,0.0000020422,0.0000020434,0.0000020484, +0.0000020554,0.0000020585,0.0000020559,0.0000020456,0.0000020330, +0.0000020245,0.0000020223,0.0000020174,0.0000020055,0.0000020027, +0.0000020051,0.0000020078,0.0000020115,0.0000020216,0.0000020336, +0.0000020384,0.0000020384,0.0000020414,0.0000020487,0.0000020560, +0.0000020603,0.0000020641,0.0000020713,0.0000020855,0.0000021029, +0.0000021119,0.0000021144,0.0000021315,0.0000021441,0.0000021449, +0.0000021544,0.0000021571,0.0000021552,0.0000021585,0.0000021649, +0.0000021633,0.0000021610,0.0000021721,0.0000021820,0.0000021798, +0.0000021741,0.0000021704,0.0000021743,0.0000021767,0.0000021772, +0.0000021874,0.0000021964,0.0000021985,0.0000021974,0.0000021976, +0.0000022053,0.0000022147,0.0000022176,0.0000022204,0.0000022265, +0.0000022343,0.0000022389,0.0000022399,0.0000022394,0.0000022397, +0.0000022410,0.0000022426,0.0000022437,0.0000022438,0.0000022429, +0.0000022386,0.0000022300,0.0000022170,0.0000022038,0.0000021950, +0.0000021918,0.0000021911,0.0000021919,0.0000021936,0.0000021948, +0.0000021946,0.0000021917,0.0000021853,0.0000021762,0.0000021661, +0.0000021568,0.0000021501,0.0000021457,0.0000021432,0.0000021411, +0.0000021397,0.0000021392,0.0000021379,0.0000021353,0.0000021312, +0.0000021261,0.0000021207,0.0000021147,0.0000021085,0.0000021026, +0.0000020974,0.0000020933,0.0000020896,0.0000020862,0.0000020832, +0.0000020809,0.0000020811,0.0000020830,0.0000020874,0.0000020938, +0.0000021003,0.0000021053,0.0000021084,0.0000021099,0.0000021110, +0.0000021125,0.0000021143,0.0000021144,0.0000021120,0.0000021081, +0.0000021032,0.0000020975,0.0000020935,0.0000020911,0.0000020902, +0.0000020901,0.0000020906,0.0000020928,0.0000020966,0.0000021018, +0.0000021069,0.0000021113,0.0000021155,0.0000021206,0.0000021268, +0.0000021337,0.0000021391,0.0000021422,0.0000021428,0.0000021427, +0.0000021420,0.0000021410,0.0000021401,0.0000021397,0.0000021399, +0.0000021406,0.0000021418,0.0000021425,0.0000021432,0.0000021444, +0.0000021457,0.0000021468,0.0000021486,0.0000021503,0.0000021517, +0.0000021528,0.0000021537,0.0000021551,0.0000021575,0.0000021594, +0.0000021611,0.0000021627,0.0000021641,0.0000021654,0.0000021677, +0.0000021703,0.0000021727,0.0000021751,0.0000021760,0.0000021765, +0.0000021772,0.0000021762,0.0000021738,0.0000021710,0.0000021680, +0.0000021658,0.0000021644,0.0000021637,0.0000021624,0.0000021613, +0.0000021596,0.0000021581,0.0000021563,0.0000021547,0.0000021537, +0.0000021523,0.0000021512,0.0000021501,0.0000021494,0.0000021493, +0.0000021495,0.0000021499,0.0000021496,0.0000021482,0.0000021475, +0.0000021476,0.0000021484,0.0000021497,0.0000021517,0.0000021548, +0.0000021579,0.0000021602,0.0000021624,0.0000021643,0.0000021661, +0.0000021672,0.0000021680,0.0000021680,0.0000021674,0.0000021664, +0.0000021658,0.0000021661,0.0000021677,0.0000021713,0.0000021770, +0.0000021832,0.0000021884,0.0000021918,0.0000021936,0.0000021931, +0.0000021915,0.0000021902,0.0000021878,0.0000021856,0.0000021845, +0.0000021848,0.0000021863,0.0000021888,0.0000021918,0.0000021951, +0.0000021986,0.0000022025,0.0000022062,0.0000022094,0.0000022122, +0.0000022141,0.0000022153,0.0000022156,0.0000022151,0.0000022141, +0.0000022130,0.0000022136,0.0000022147,0.0000022158,0.0000022163, +0.0000022167,0.0000022168,0.0000022168,0.0000022163,0.0000022153, +0.0000022133,0.0000022105,0.0000022065,0.0000022009,0.0000021940, +0.0000021868,0.0000021805,0.0000021764,0.0000021750,0.0000021752, +0.0000021757,0.0000021766,0.0000021781,0.0000021803,0.0000021832, +0.0000021857,0.0000021876,0.0000021886,0.0000021890,0.0000021895, +0.0000021906,0.0000021916,0.0000021925,0.0000021934,0.0000021939, +0.0000021942,0.0000021950,0.0000021954,0.0000021959,0.0000021971, +0.0000021983,0.0000021993,0.0000021998,0.0000021996,0.0000021984, +0.0000021970,0.0000021951,0.0000021941,0.0000021921,0.0000021901, +0.0000021875,0.0000021852,0.0000021827,0.0000021802,0.0000021774, +0.0000021749,0.0000021724,0.0000021702,0.0000021681,0.0000021661, +0.0000021653,0.0000021649,0.0000021651,0.0000021655,0.0000021654, +0.0000021659,0.0000021663,0.0000021665,0.0000021668,0.0000021668, +0.0000021666,0.0000021666,0.0000021666,0.0000021666,0.0000021668, +0.0000021676,0.0000021688,0.0000021698,0.0000021705,0.0000021713, +0.0000021724,0.0000021734,0.0000021742,0.0000021744,0.0000021740, +0.0000021726,0.0000021700,0.0000021666,0.0000021627,0.0000021586, +0.0000021546,0.0000021512,0.0000021483,0.0000021453,0.0000021420, +0.0000021386,0.0000021350,0.0000021310,0.0000021267,0.0000021226, +0.0000021183,0.0000021142,0.0000021105,0.0000021077,0.0000021062, +0.0000021054,0.0000021054,0.0000021060,0.0000021071,0.0000021080, +0.0000021084,0.0000021085,0.0000021083,0.0000021076,0.0000021065, +0.0000021053,0.0000021039,0.0000021021,0.0000021002,0.0000020977, +0.0000020953,0.0000020931,0.0000020910,0.0000020888,0.0000020870, +0.0000020853,0.0000020838,0.0000020826,0.0000020813,0.0000020800, +0.0000020789,0.0000020779,0.0000020770,0.0000020766,0.0000020764, +0.0000020771,0.0000020776,0.0000020787,0.0000020799,0.0000020815, +0.0000020838,0.0000020862,0.0000020880,0.0000020891,0.0000020898, +0.0000020898,0.0000020889,0.0000020872,0.0000020853,0.0000020832, +0.0000020809,0.0000020790,0.0000020775,0.0000020765,0.0000020756, +0.0000020749,0.0000020744,0.0000020741,0.0000020742,0.0000020746, +0.0000020748,0.0000020746,0.0000020738,0.0000020725,0.0000020705, +0.0000020683,0.0000020658,0.0000020627,0.0000020594,0.0000020562, +0.0000020539,0.0000020521,0.0000020508,0.0000020499,0.0000020497, +0.0000020501,0.0000020509,0.0000020519,0.0000020527,0.0000020530, +0.0000020529,0.0000020523,0.0000020509,0.0000020486,0.0000020455, +0.0000020421,0.0000020392,0.0000020372,0.0000020360,0.0000020350, +0.0000020341,0.0000020333,0.0000020325,0.0000020319,0.0000020319, +0.0000020325,0.0000020335,0.0000020347,0.0000020365,0.0000020388, +0.0000020410,0.0000020423,0.0000020424,0.0000020416,0.0000020396, +0.0000020365,0.0000020324,0.0000020276,0.0000020228,0.0000020182, +0.0000020145,0.0000020119,0.0000020103,0.0000020096,0.0000020094, +0.0000020088,0.0000020077,0.0000020062,0.0000020039,0.0000020014, +0.0000019986,0.0000019955,0.0000019929,0.0000019905,0.0000019878, +0.0000019854,0.0000019841,0.0000019839,0.0000019851,0.0000019874, +0.0000019897,0.0000019915,0.0000019930,0.0000019941,0.0000019944, +0.0000019937,0.0000019920,0.0000019895,0.0000019873,0.0000019861, +0.0000019847,0.0000019835,0.0000019836,0.0000019838,0.0000019827, +0.0000019788,0.0000019733,0.0000019683,0.0000019646,0.0000019623, +0.0000019615,0.0000019620,0.0000019635,0.0000019659,0.0000019681, +0.0000019695,0.0000019703,0.0000019704,0.0000019691,0.0000019656, +0.0000019612,0.0000019574,0.0000019553,0.0000019554,0.0000019552, +0.0000019542,0.0000019532,0.0000019526,0.0000019519,0.0000019512, +0.0000019512,0.0000019514,0.0000019523,0.0000019539,0.0000019542, +0.0000019527,0.0000019517,0.0000019527,0.0000019571,0.0000019626, +0.0000019669,0.0000019719,0.0000019766,0.0000019808,0.0000019845, +0.0000019875,0.0000019894,0.0000019896,0.0000019889,0.0000019882, +0.0000019876,0.0000019871,0.0000019860,0.0000019843,0.0000019844, +0.0000019869,0.0000019880,0.0000019855,0.0000019819,0.0000019797, +0.0000019793,0.0000019810,0.0000019856,0.0000019923,0.0000019996, +0.0000020066,0.0000020136,0.0000020191,0.0000020221,0.0000020230, +0.0000020226,0.0000020223,0.0000020229,0.0000020240,0.0000020255, +0.0000020277,0.0000020301,0.0000020320,0.0000020333,0.0000020335, +0.0000020336,0.0000020328,0.0000020318,0.0000020317,0.0000020317, +0.0000020318,0.0000020331,0.0000020360,0.0000020386,0.0000020411, +0.0000020413,0.0000020394,0.0000020353,0.0000020300,0.0000020236, +0.0000020174,0.0000020136,0.0000020120,0.0000020121,0.0000020125, +0.0000020144,0.0000020170,0.0000020197,0.0000020224,0.0000020249, +0.0000020268,0.0000020283,0.0000020298,0.0000020312,0.0000020326, +0.0000020336,0.0000020341,0.0000020341,0.0000020340,0.0000020339, +0.0000020337,0.0000020334,0.0000020334,0.0000020339,0.0000020352, +0.0000020370,0.0000020384,0.0000020390,0.0000020393,0.0000020397, +0.0000020402,0.0000020412,0.0000020426,0.0000020445,0.0000020469, +0.0000020495,0.0000020524,0.0000020555,0.0000020584,0.0000020605, +0.0000020616,0.0000020621,0.0000020625,0.0000020636,0.0000020652, +0.0000020678,0.0000020715,0.0000020755,0.0000020790,0.0000020820, +0.0000020846,0.0000020867,0.0000020886,0.0000020900,0.0000020911, +0.0000020923,0.0000020938,0.0000020941,0.0000020925,0.0000020901, +0.0000020889,0.0000020850,0.0000020807,0.0000020789,0.0000020750, +0.0000020720,0.0000020683,0.0000020633,0.0000020613,0.0000020600, +0.0000020589,0.0000020595,0.0000020642,0.0000020746,0.0000020835, +0.0000020877,0.0000020932,0.0000021024,0.0000021093,0.0000021117, +0.0000021149,0.0000021174,0.0000021167,0.0000021144,0.0000021115, +0.0000021059,0.0000020962,0.0000020860,0.0000020808,0.0000020809, +0.0000020836,0.0000020888,0.0000020949,0.0000021005,0.0000021046, +0.0000021075,0.0000021091,0.0000021097,0.0000021095,0.0000021086, +0.0000021078,0.0000021071,0.0000021065,0.0000021058,0.0000021052, +0.0000021046,0.0000021038,0.0000021031,0.0000021030,0.0000021035, +0.0000021042,0.0000021052,0.0000021067,0.0000021084,0.0000021098, +0.0000021107,0.0000021110,0.0000021110,0.0000021107,0.0000021104, +0.0000021097,0.0000021090,0.0000021085,0.0000021082,0.0000021083, +0.0000021088,0.0000021100,0.0000021113,0.0000021128,0.0000021143, +0.0000021162,0.0000021186,0.0000021216,0.0000021246,0.0000021272, +0.0000021289,0.0000021298,0.0000021285,0.0000021267,0.0000021231, +0.0000021190,0.0000021153,0.0000021132,0.0000021118,0.0000021137, +0.0000021186,0.0000021269,0.0000021376,0.0000021503,0.0000021641, +0.0000021776,0.0000021895,0.0000021991,0.0000022070,0.0000022134, +0.0000022189,0.0000022233,0.0000022268,0.0000022294,0.0000022322, +0.0000022339,0.0000022338,0.0000022342,0.0000022338,0.0000022324, +0.0000022305,0.0000022285,0.0000022260,0.0000022224,0.0000022174, +0.0000022115,0.0000022057,0.0000022005,0.0000021962,0.0000021930, +0.0000021902,0.0000021871,0.0000021833,0.0000021789,0.0000021741, +0.0000021695,0.0000021660,0.0000021634,0.0000021613,0.0000021588, +0.0000021551,0.0000021491,0.0000021410,0.0000021310,0.0000021196, +0.0000021050,0.0000020866,0.0000020665,0.0000020477,0.0000020324, +0.0000020214,0.0000020142,0.0000020085,0.0000020017,0.0000019935, +0.0000019856,0.0000019796,0.0000019755,0.0000019724,0.0000019707, +0.0000019700,0.0000019697,0.0000019691,0.0000019684,0.0000019688, +0.0000019706,0.0000019731,0.0000019753,0.0000019758,0.0000019742, +0.0000019713,0.0000019693,0.0000019693,0.0000019713,0.0000019734, +0.0000019740,0.0000019731,0.0000019715,0.0000019705,0.0000019715, +0.0000019746,0.0000019793,0.0000019848,0.0000019900,0.0000019939, +0.0000019977,0.0000020023,0.0000020074,0.0000020114,0.0000020129, +0.0000020131,0.0000020128,0.0000020127,0.0000020132,0.0000020142, +0.0000020151,0.0000020152,0.0000020124,0.0000020066,0.0000020015, +0.0000020008,0.0000020072,0.0000020201,0.0000020335,0.0000020425, +0.0000020450,0.0000020432,0.0000020404,0.0000020392,0.0000020431, +0.0000020513,0.0000020609,0.0000020694,0.0000020743,0.0000020743, +0.0000020733,0.0000020696,0.0000020648,0.0000020594,0.0000020549, +0.0000020520,0.0000020521,0.0000020538,0.0000020587,0.0000020657, +0.0000020741,0.0000020829,0.0000020911,0.0000020977,0.0000021018, +0.0000021032,0.0000021021,0.0000021001,0.0000020986,0.0000020982, +0.0000020997,0.0000021019,0.0000021038,0.0000021044,0.0000021043, +0.0000021038,0.0000021029,0.0000021017,0.0000021004,0.0000020994, +0.0000020991,0.0000020992,0.0000020986,0.0000020977,0.0000020966, +0.0000020956,0.0000020945,0.0000020927,0.0000020906,0.0000020886, +0.0000020874,0.0000020862,0.0000020845,0.0000020829,0.0000020815, +0.0000020807,0.0000020800,0.0000020796,0.0000020801,0.0000020796, +0.0000020789,0.0000020782,0.0000020770,0.0000020759,0.0000020754, +0.0000020754,0.0000020757,0.0000020761,0.0000020768,0.0000020777, +0.0000020789,0.0000020794,0.0000020802,0.0000020794,0.0000020785, +0.0000020784,0.0000020792,0.0000020798,0.0000020805,0.0000020813, +0.0000020820,0.0000020826,0.0000020825,0.0000020821,0.0000020809, +0.0000020790,0.0000020770,0.0000020748,0.0000020723,0.0000020703, +0.0000020691,0.0000020684,0.0000020683,0.0000020685,0.0000020682, +0.0000020679,0.0000020675,0.0000020668,0.0000020661,0.0000020655, +0.0000020647,0.0000020637,0.0000020626,0.0000020612,0.0000020595, +0.0000020570,0.0000020538,0.0000020507,0.0000020486,0.0000020477, +0.0000020477,0.0000020470,0.0000020450,0.0000020408,0.0000020350, +0.0000020287,0.0000020222,0.0000020153,0.0000020082,0.0000020013, +0.0000019942,0.0000019868,0.0000019796,0.0000019729,0.0000019677, +0.0000019643,0.0000019634,0.0000019643,0.0000019666,0.0000019695, +0.0000019727,0.0000019765,0.0000019808,0.0000019852,0.0000019896, +0.0000019937,0.0000019973,0.0000020000,0.0000020019,0.0000020025, +0.0000020020,0.0000020001,0.0000019970,0.0000019931,0.0000019891, +0.0000019857,0.0000019833,0.0000019815,0.0000019798,0.0000019779, +0.0000019763,0.0000019752,0.0000019743,0.0000019733,0.0000019720, +0.0000019708,0.0000019697,0.0000019685,0.0000019670,0.0000019651, +0.0000019638,0.0000019630,0.0000019624,0.0000019617,0.0000019608, +0.0000019599,0.0000019590,0.0000019581,0.0000019574,0.0000019572, +0.0000019569,0.0000019564,0.0000019555,0.0000019540,0.0000019521, +0.0000019498,0.0000019471,0.0000019441,0.0000019411,0.0000019387, +0.0000019373,0.0000019368,0.0000019370,0.0000019377,0.0000019388, +0.0000019402,0.0000019420,0.0000019441,0.0000019465,0.0000019488, +0.0000019505,0.0000019514,0.0000019516,0.0000019513,0.0000019509, +0.0000019506,0.0000019506,0.0000019509,0.0000019507,0.0000019512, +0.0000019525,0.0000019539,0.0000019557,0.0000019574,0.0000019591, +0.0000019607,0.0000019624,0.0000019642,0.0000019661,0.0000019679, +0.0000019691,0.0000019695,0.0000019693,0.0000019688,0.0000019679, +0.0000019659,0.0000019633,0.0000019603,0.0000019576,0.0000019553, +0.0000019538,0.0000019529,0.0000019526,0.0000019527,0.0000019532, +0.0000019536,0.0000019540,0.0000019541,0.0000019541,0.0000019542, +0.0000019547,0.0000019551,0.0000019553,0.0000019551,0.0000019544, +0.0000019534,0.0000019521,0.0000019506,0.0000019488,0.0000019472, +0.0000019459,0.0000019452,0.0000019453,0.0000019467,0.0000019488, +0.0000019509,0.0000019526,0.0000019532,0.0000019526,0.0000019506, +0.0000019475,0.0000019438,0.0000019402,0.0000019379,0.0000019378, +0.0000019413,0.0000019465,0.0000019510,0.0000019540,0.0000019564, +0.0000019601,0.0000019650,0.0000019679,0.0000019654,0.0000019595, +0.0000019559,0.0000019571,0.0000019691,0.0000019872,0.0000020039, +0.0000020220,0.0000020334,0.0000020311,0.0000020297,0.0000020398, +0.0000020532,0.0000020562,0.0000020544,0.0000020538,0.0000020556, +0.0000020570,0.0000020568,0.0000020555,0.0000020533,0.0000020509, +0.0000020494,0.0000020488,0.0000020483,0.0000020482,0.0000020488, +0.0000020504,0.0000020508,0.0000020473,0.0000020368,0.0000020258, +0.0000020205,0.0000020198,0.0000020213,0.0000020237,0.0000020255, +0.0000020265,0.0000020267,0.0000020256,0.0000020235,0.0000020216, +0.0000020208,0.0000020204,0.0000020203,0.0000020200,0.0000020197, +0.0000020210,0.0000020243,0.0000020266,0.0000020257,0.0000020230, +0.0000020220,0.0000020233,0.0000020273,0.0000020322,0.0000020354, +0.0000020365,0.0000020362,0.0000020355,0.0000020355,0.0000020362, +0.0000020367,0.0000020361,0.0000020345,0.0000020321,0.0000020292, +0.0000020267,0.0000020246,0.0000020230,0.0000020216,0.0000020205, +0.0000020196,0.0000020187,0.0000020179,0.0000020171,0.0000020156, +0.0000020133,0.0000020106,0.0000020080,0.0000020057,0.0000020041, +0.0000020028,0.0000020016,0.0000020010,0.0000020005,0.0000019997, +0.0000019986,0.0000019978,0.0000019970,0.0000019964,0.0000019956, +0.0000019945,0.0000019931,0.0000019918,0.0000019907,0.0000019897, +0.0000019888,0.0000019880,0.0000019874,0.0000019869,0.0000019864, +0.0000019862,0.0000019860,0.0000019858,0.0000019854,0.0000019850, +0.0000019846,0.0000019841,0.0000019835,0.0000019827,0.0000019815, +0.0000019800,0.0000019784,0.0000019769,0.0000019755,0.0000019744, +0.0000019735,0.0000019729,0.0000019725,0.0000019725,0.0000019727, +0.0000019731,0.0000019737,0.0000019744,0.0000019751,0.0000019759, +0.0000019764,0.0000019767,0.0000019767,0.0000019762,0.0000019755, +0.0000019744,0.0000019731,0.0000019715,0.0000019696,0.0000019676, +0.0000019656,0.0000019638,0.0000019622,0.0000019610,0.0000019598, +0.0000019583,0.0000019569,0.0000019557,0.0000019553,0.0000019553, +0.0000019554,0.0000019549,0.0000019532,0.0000019506,0.0000019485, +0.0000019473,0.0000019480,0.0000019492,0.0000019504,0.0000019500, +0.0000019485,0.0000019470,0.0000019472,0.0000019501,0.0000019550, +0.0000019592,0.0000019617,0.0000019619,0.0000019617,0.0000019629, +0.0000019659,0.0000019658,0.0000019688,0.0000019714,0.0000019725, +0.0000019721,0.0000019723,0.0000019731,0.0000019750,0.0000019779, +0.0000019813,0.0000019848,0.0000019883,0.0000019921,0.0000019963, +0.0000020006,0.0000020044,0.0000020078,0.0000020102,0.0000020106, +0.0000020114,0.0000020113,0.0000020105,0.0000020096,0.0000020088, +0.0000020080,0.0000020074,0.0000020066,0.0000020059,0.0000020054, +0.0000020055,0.0000020060,0.0000020069,0.0000020082,0.0000020094, +0.0000020102,0.0000020103,0.0000020094,0.0000020071,0.0000020037, +0.0000020001,0.0000019966,0.0000019937,0.0000019924,0.0000019926, +0.0000019951,0.0000020006,0.0000020075,0.0000020142,0.0000020200, +0.0000020253,0.0000020305,0.0000020357,0.0000020393,0.0000020409, +0.0000020409,0.0000020395,0.0000020369,0.0000020335,0.0000020294, +0.0000020245,0.0000020190,0.0000020140,0.0000020109,0.0000020089, +0.0000020078,0.0000020064,0.0000020047,0.0000020031,0.0000020021, +0.0000020024,0.0000020038,0.0000020058,0.0000020079,0.0000020102, +0.0000020134,0.0000020163,0.0000020184,0.0000020203,0.0000020215, +0.0000020218,0.0000020218,0.0000020218,0.0000020221,0.0000020229, +0.0000020239,0.0000020249,0.0000020261,0.0000020279,0.0000020303, +0.0000020330,0.0000020358,0.0000020382,0.0000020400,0.0000020414, +0.0000020431,0.0000020452,0.0000020468,0.0000020478,0.0000020484, +0.0000020489,0.0000020493,0.0000020496,0.0000020499,0.0000020496, +0.0000020488,0.0000020477,0.0000020466,0.0000020455,0.0000020443, +0.0000020429,0.0000020421,0.0000020420,0.0000020422,0.0000020426, +0.0000020437,0.0000020450,0.0000020464,0.0000020479,0.0000020496, +0.0000020512,0.0000020524,0.0000020530,0.0000020535,0.0000020541, +0.0000020544,0.0000020548,0.0000020558,0.0000020564,0.0000020570, +0.0000020576,0.0000020582,0.0000020586,0.0000020592,0.0000020609, +0.0000020642,0.0000020683,0.0000020720,0.0000020750,0.0000020784, +0.0000020824,0.0000020862,0.0000020905,0.0000020942,0.0000020952, +0.0000020933,0.0000020879,0.0000020823,0.0000020786,0.0000020751, +0.0000020713,0.0000020681,0.0000020654,0.0000020632,0.0000020623, +0.0000020617,0.0000020613,0.0000020623,0.0000020655,0.0000020691, +0.0000020723,0.0000020754,0.0000020778,0.0000020794,0.0000020804, +0.0000020816,0.0000020828,0.0000020827,0.0000020810,0.0000020786, +0.0000020771,0.0000020772,0.0000020786,0.0000020813,0.0000020852, +0.0000020898,0.0000020936,0.0000020959,0.0000020972,0.0000020983, +0.0000020993,0.0000021005,0.0000021019,0.0000021038,0.0000021054, +0.0000021065,0.0000021068,0.0000021068,0.0000021062,0.0000021055, +0.0000021053,0.0000021063,0.0000021083,0.0000021111,0.0000021146, +0.0000021189,0.0000021235,0.0000021282,0.0000021326,0.0000021363, +0.0000021389,0.0000021402,0.0000021404,0.0000021398,0.0000021381, +0.0000021356,0.0000021325,0.0000021293,0.0000021264,0.0000021241, +0.0000021223,0.0000021206,0.0000021191,0.0000021179,0.0000021172, +0.0000021173,0.0000021178,0.0000021185,0.0000021194,0.0000021207, +0.0000021231,0.0000021265,0.0000021304,0.0000021344,0.0000021386, +0.0000021427,0.0000021465,0.0000021503,0.0000021536,0.0000021564, +0.0000021588,0.0000021607,0.0000021621,0.0000021627,0.0000021625, +0.0000021615,0.0000021599,0.0000021580,0.0000021560,0.0000021540, +0.0000021520,0.0000021501,0.0000021485,0.0000021470,0.0000021459, +0.0000021453,0.0000021448,0.0000021443,0.0000021436,0.0000021430, +0.0000021425,0.0000021424,0.0000021427,0.0000021432,0.0000021438, +0.0000021446,0.0000021456,0.0000021471,0.0000021485,0.0000021496, +0.0000021505,0.0000021510,0.0000021514,0.0000021526,0.0000021541, +0.0000021555,0.0000021564,0.0000021568,0.0000021569,0.0000021566, +0.0000021557,0.0000021546,0.0000021532,0.0000021511,0.0000021471, +0.0000021417,0.0000021370,0.0000021342,0.0000021316,0.0000021273, +0.0000021250,0.0000021258,0.0000021298,0.0000021399,0.0000021486, +0.0000021539,0.0000021588,0.0000021650,0.0000021695,0.0000021664, +0.0000021577,0.0000021519,0.0000021487,0.0000021451,0.0000021447, +0.0000021484,0.0000021523,0.0000021515,0.0000021456,0.0000021389, +0.0000021338,0.0000021307,0.0000021281,0.0000021248,0.0000021215, +0.0000021179,0.0000021146,0.0000021128,0.0000021124,0.0000021126, +0.0000021126,0.0000021120,0.0000021105,0.0000021089,0.0000021074, +0.0000021055,0.0000021025,0.0000020990,0.0000020947,0.0000020893, +0.0000020839,0.0000020786,0.0000020746,0.0000020729,0.0000020732, +0.0000020747,0.0000020765,0.0000020775,0.0000020792,0.0000020810, +0.0000020807,0.0000020778,0.0000020731,0.0000020673,0.0000020613, +0.0000020548,0.0000020490,0.0000020455,0.0000020441,0.0000020427, +0.0000020406,0.0000020385,0.0000020375,0.0000020376,0.0000020411, +0.0000020491,0.0000020550,0.0000020556,0.0000020496,0.0000020377, +0.0000020274,0.0000020228,0.0000020215,0.0000020107,0.0000020024, +0.0000020029,0.0000020055,0.0000020090,0.0000020165,0.0000020293, +0.0000020367,0.0000020372,0.0000020381,0.0000020443,0.0000020523, +0.0000020582,0.0000020624,0.0000020688,0.0000020804,0.0000020976, +0.0000021100,0.0000021129,0.0000021259,0.0000021426,0.0000021450, +0.0000021530,0.0000021585,0.0000021567,0.0000021588,0.0000021656, +0.0000021655,0.0000021617,0.0000021700,0.0000021812,0.0000021804, +0.0000021753,0.0000021706,0.0000021740,0.0000021784,0.0000021786, +0.0000021854,0.0000021967,0.0000022007,0.0000022013,0.0000021991, +0.0000021997,0.0000022081,0.0000022162,0.0000022201,0.0000022232, +0.0000022281,0.0000022328,0.0000022359,0.0000022370,0.0000022373, +0.0000022384,0.0000022397,0.0000022405,0.0000022407,0.0000022391, +0.0000022332,0.0000022226,0.0000022090,0.0000021984,0.0000021934, +0.0000021919,0.0000021917,0.0000021921,0.0000021925,0.0000021917, +0.0000021891,0.0000021831,0.0000021746,0.0000021653,0.0000021570, +0.0000021510,0.0000021462,0.0000021431,0.0000021415,0.0000021405, +0.0000021398,0.0000021398,0.0000021398,0.0000021388,0.0000021371, +0.0000021342,0.0000021310,0.0000021263,0.0000021199,0.0000021131, +0.0000021063,0.0000020997,0.0000020938,0.0000020884,0.0000020839, +0.0000020802,0.0000020783,0.0000020779,0.0000020805,0.0000020855, +0.0000020913,0.0000020955,0.0000020974,0.0000020985,0.0000020991, +0.0000021005,0.0000021023,0.0000021030,0.0000021016,0.0000020985, +0.0000020946,0.0000020909,0.0000020885,0.0000020862,0.0000020837, +0.0000020803,0.0000020776,0.0000020772,0.0000020797,0.0000020856, +0.0000020937,0.0000021019,0.0000021086,0.0000021135,0.0000021177, +0.0000021220,0.0000021268,0.0000021320,0.0000021372,0.0000021409, +0.0000021422,0.0000021418,0.0000021415,0.0000021400,0.0000021390, +0.0000021384,0.0000021386,0.0000021391,0.0000021401,0.0000021416, +0.0000021431,0.0000021445,0.0000021458,0.0000021469,0.0000021477, +0.0000021482,0.0000021486,0.0000021494,0.0000021506,0.0000021525, +0.0000021537,0.0000021555,0.0000021571,0.0000021588,0.0000021609, +0.0000021632,0.0000021658,0.0000021681,0.0000021692,0.0000021705, +0.0000021711,0.0000021698,0.0000021675,0.0000021641,0.0000021618, +0.0000021601,0.0000021591,0.0000021583,0.0000021572,0.0000021558, +0.0000021538,0.0000021520,0.0000021504,0.0000021484,0.0000021471, +0.0000021453,0.0000021439,0.0000021431,0.0000021420,0.0000021412, +0.0000021408,0.0000021409,0.0000021404,0.0000021388,0.0000021372, +0.0000021361,0.0000021357,0.0000021358,0.0000021365,0.0000021386, +0.0000021411,0.0000021435,0.0000021458,0.0000021484,0.0000021513, +0.0000021540,0.0000021565,0.0000021581,0.0000021589,0.0000021586, +0.0000021574,0.0000021558,0.0000021550,0.0000021561,0.0000021598, +0.0000021649,0.0000021707,0.0000021766,0.0000021819,0.0000021859, +0.0000021883,0.0000021890,0.0000021873,0.0000021852,0.0000021841, +0.0000021842,0.0000021860,0.0000021886,0.0000021918,0.0000021954, +0.0000021997,0.0000022045,0.0000022082,0.0000022115,0.0000022140, +0.0000022158,0.0000022170,0.0000022175,0.0000022170,0.0000022156, +0.0000022149,0.0000022150,0.0000022157,0.0000022162,0.0000022163, +0.0000022162,0.0000022165,0.0000022169,0.0000022169,0.0000022165, +0.0000022156,0.0000022147,0.0000022124,0.0000022084,0.0000022023, +0.0000021951,0.0000021883,0.0000021826,0.0000021789,0.0000021772, +0.0000021769,0.0000021775,0.0000021791,0.0000021813,0.0000021842, +0.0000021872,0.0000021896,0.0000021914,0.0000021928,0.0000021942, +0.0000021955,0.0000021966,0.0000021973,0.0000021977,0.0000021981, +0.0000021980,0.0000021975,0.0000021963,0.0000021951,0.0000021939, +0.0000021926,0.0000021918,0.0000021912,0.0000021910,0.0000021907, +0.0000021906,0.0000021911,0.0000021912,0.0000021904,0.0000021888, +0.0000021869,0.0000021848,0.0000021829,0.0000021806,0.0000021776, +0.0000021746,0.0000021715,0.0000021686,0.0000021659,0.0000021633, +0.0000021616,0.0000021612,0.0000021615,0.0000021622,0.0000021633, +0.0000021644,0.0000021655,0.0000021669,0.0000021678,0.0000021688, +0.0000021697,0.0000021705,0.0000021710,0.0000021713,0.0000021719, +0.0000021730,0.0000021740,0.0000021746,0.0000021748,0.0000021748, +0.0000021748,0.0000021749,0.0000021750,0.0000021749,0.0000021744, +0.0000021732,0.0000021713,0.0000021687,0.0000021655,0.0000021620, +0.0000021586,0.0000021560,0.0000021539,0.0000021511,0.0000021476, +0.0000021439,0.0000021401,0.0000021362,0.0000021321,0.0000021281, +0.0000021241,0.0000021204,0.0000021173,0.0000021149,0.0000021131, +0.0000021120,0.0000021116,0.0000021115,0.0000021115,0.0000021116, +0.0000021118,0.0000021122,0.0000021124,0.0000021120,0.0000021114, +0.0000021104,0.0000021095,0.0000021085,0.0000021073,0.0000021061, +0.0000021052,0.0000021045,0.0000021034,0.0000021020,0.0000021001, +0.0000020980,0.0000020957,0.0000020933,0.0000020907,0.0000020883, +0.0000020863,0.0000020844,0.0000020824,0.0000020805,0.0000020793, +0.0000020786,0.0000020778,0.0000020771,0.0000020763,0.0000020767, +0.0000020781,0.0000020798,0.0000020812,0.0000020825,0.0000020836, +0.0000020843,0.0000020842,0.0000020833,0.0000020820,0.0000020804, +0.0000020786,0.0000020770,0.0000020754,0.0000020738,0.0000020723, +0.0000020714,0.0000020712,0.0000020715,0.0000020722,0.0000020732, +0.0000020740,0.0000020740,0.0000020734,0.0000020726,0.0000020714, +0.0000020698,0.0000020678,0.0000020654,0.0000020628,0.0000020606, +0.0000020591,0.0000020578,0.0000020568,0.0000020564,0.0000020567, +0.0000020578,0.0000020594,0.0000020607,0.0000020616,0.0000020618, +0.0000020615,0.0000020604,0.0000020585,0.0000020555,0.0000020518, +0.0000020482,0.0000020454,0.0000020434,0.0000020418,0.0000020405, +0.0000020396,0.0000020390,0.0000020385,0.0000020384,0.0000020389, +0.0000020397,0.0000020408,0.0000020429,0.0000020456,0.0000020482, +0.0000020498,0.0000020503,0.0000020497,0.0000020477,0.0000020443, +0.0000020397,0.0000020342,0.0000020284,0.0000020227,0.0000020178, +0.0000020142,0.0000020118,0.0000020108,0.0000020108,0.0000020107, +0.0000020100,0.0000020090,0.0000020078,0.0000020062,0.0000020039, +0.0000020012,0.0000019984,0.0000019956,0.0000019930,0.0000019907, +0.0000019892,0.0000019890,0.0000019902,0.0000019926,0.0000019950, +0.0000019966,0.0000019977,0.0000019984,0.0000019984,0.0000019974, +0.0000019950,0.0000019916,0.0000019889,0.0000019875,0.0000019866, +0.0000019858,0.0000019856,0.0000019857,0.0000019845,0.0000019804, +0.0000019747,0.0000019699,0.0000019663,0.0000019638,0.0000019624, +0.0000019618,0.0000019614,0.0000019618,0.0000019632,0.0000019649, +0.0000019662,0.0000019672,0.0000019670,0.0000019647,0.0000019609, +0.0000019570,0.0000019547,0.0000019546,0.0000019545,0.0000019533, +0.0000019525,0.0000019520,0.0000019512,0.0000019506,0.0000019507, +0.0000019512,0.0000019521,0.0000019535,0.0000019543,0.0000019534, +0.0000019525,0.0000019535,0.0000019579,0.0000019638,0.0000019681, +0.0000019730,0.0000019776,0.0000019814,0.0000019850,0.0000019882, +0.0000019902,0.0000019905,0.0000019895,0.0000019879,0.0000019864, +0.0000019857,0.0000019849,0.0000019825,0.0000019794,0.0000019796, +0.0000019819,0.0000019815,0.0000019780,0.0000019738,0.0000019716, +0.0000019714,0.0000019732,0.0000019771,0.0000019823,0.0000019885, +0.0000019958,0.0000020032,0.0000020090,0.0000020129,0.0000020148, +0.0000020155,0.0000020160,0.0000020166,0.0000020175,0.0000020191, +0.0000020213,0.0000020243,0.0000020272,0.0000020301,0.0000020326, +0.0000020337,0.0000020341,0.0000020342,0.0000020337,0.0000020324, +0.0000020317,0.0000020311,0.0000020315,0.0000020322,0.0000020337, +0.0000020351,0.0000020363,0.0000020353,0.0000020330,0.0000020298, +0.0000020267,0.0000020237,0.0000020215,0.0000020198,0.0000020196, +0.0000020200,0.0000020208,0.0000020225,0.0000020242,0.0000020256, +0.0000020269,0.0000020281,0.0000020294,0.0000020306,0.0000020316, +0.0000020323,0.0000020326,0.0000020327,0.0000020325,0.0000020323, +0.0000020319,0.0000020318,0.0000020321,0.0000020334,0.0000020356, +0.0000020378,0.0000020395,0.0000020405,0.0000020410,0.0000020416, +0.0000020428,0.0000020446,0.0000020468,0.0000020491,0.0000020512, +0.0000020532,0.0000020548,0.0000020560,0.0000020569,0.0000020577, +0.0000020592,0.0000020616,0.0000020647,0.0000020685,0.0000020726, +0.0000020766,0.0000020804,0.0000020842,0.0000020877,0.0000020906, +0.0000020926,0.0000020940,0.0000020948,0.0000020950,0.0000020952, +0.0000020963,0.0000020973,0.0000020959,0.0000020931,0.0000020917, +0.0000020880,0.0000020834,0.0000020809,0.0000020762,0.0000020730, +0.0000020692,0.0000020647,0.0000020630,0.0000020614,0.0000020602, +0.0000020609,0.0000020650,0.0000020745,0.0000020824,0.0000020865, +0.0000020923,0.0000021013,0.0000021071,0.0000021091,0.0000021123, +0.0000021143,0.0000021130,0.0000021099,0.0000021060,0.0000020992, +0.0000020895,0.0000020812,0.0000020780,0.0000020787,0.0000020817, +0.0000020860,0.0000020913,0.0000020963,0.0000021002,0.0000021031, +0.0000021048,0.0000021052,0.0000021047,0.0000021030,0.0000021007, +0.0000020983,0.0000020960,0.0000020940,0.0000020924,0.0000020908, +0.0000020889,0.0000020871,0.0000020862,0.0000020864,0.0000020872, +0.0000020884,0.0000020900,0.0000020919,0.0000020937,0.0000020954, +0.0000020968,0.0000020977,0.0000020984,0.0000020989,0.0000020989, +0.0000020989,0.0000020989,0.0000020988,0.0000020991,0.0000021002, +0.0000021021,0.0000021043,0.0000021061,0.0000021076,0.0000021094, +0.0000021116,0.0000021143,0.0000021174,0.0000021203,0.0000021229, +0.0000021247,0.0000021256,0.0000021252,0.0000021230,0.0000021207, +0.0000021174,0.0000021144,0.0000021121,0.0000021108,0.0000021099, +0.0000021113,0.0000021147,0.0000021218,0.0000021324,0.0000021453, +0.0000021593,0.0000021730,0.0000021854,0.0000021961,0.0000022051, +0.0000022122,0.0000022178,0.0000022223,0.0000022259,0.0000022285, +0.0000022304,0.0000022312,0.0000022309,0.0000022298,0.0000022280, +0.0000022257,0.0000022225,0.0000022182,0.0000022128,0.0000022069, +0.0000022013,0.0000021964,0.0000021922,0.0000021883,0.0000021837, +0.0000021773,0.0000021698,0.0000021626,0.0000021569,0.0000021532, +0.0000021514,0.0000021503,0.0000021490,0.0000021468,0.0000021435, +0.0000021386,0.0000021319,0.0000021237,0.0000021132,0.0000020996, +0.0000020827,0.0000020638,0.0000020455,0.0000020301,0.0000020188, +0.0000020116,0.0000020067,0.0000020012,0.0000019938,0.0000019857, +0.0000019786,0.0000019736,0.0000019703,0.0000019676,0.0000019664, +0.0000019656,0.0000019644,0.0000019632,0.0000019629,0.0000019640, +0.0000019668,0.0000019700,0.0000019718,0.0000019713,0.0000019690, +0.0000019665,0.0000019658,0.0000019670,0.0000019690,0.0000019705, +0.0000019705,0.0000019693,0.0000019685,0.0000019691,0.0000019714, +0.0000019754,0.0000019805,0.0000019860,0.0000019903,0.0000019938, +0.0000019977,0.0000020026,0.0000020074,0.0000020111,0.0000020125, +0.0000020125,0.0000020123,0.0000020124,0.0000020134,0.0000020149, +0.0000020159,0.0000020151,0.0000020099,0.0000020027,0.0000019992, +0.0000019992,0.0000020085,0.0000020210,0.0000020321,0.0000020387, +0.0000020398,0.0000020371,0.0000020345,0.0000020349,0.0000020396, +0.0000020483,0.0000020586,0.0000020671,0.0000020716,0.0000020721, +0.0000020712,0.0000020679,0.0000020634,0.0000020588,0.0000020549, +0.0000020526,0.0000020529,0.0000020544,0.0000020585,0.0000020642, +0.0000020712,0.0000020790,0.0000020863,0.0000020921,0.0000020953, +0.0000020959,0.0000020941,0.0000020913,0.0000020892,0.0000020883, +0.0000020890,0.0000020904,0.0000020912,0.0000020916,0.0000020915, +0.0000020913,0.0000020911,0.0000020913,0.0000020920,0.0000020929, +0.0000020937,0.0000020937,0.0000020932,0.0000020922,0.0000020913, +0.0000020899,0.0000020885,0.0000020873,0.0000020864,0.0000020854, +0.0000020840,0.0000020828,0.0000020815,0.0000020803,0.0000020789, +0.0000020772,0.0000020746,0.0000020709,0.0000020668,0.0000020630, +0.0000020600,0.0000020582,0.0000020574,0.0000020571,0.0000020577, +0.0000020588,0.0000020601,0.0000020617,0.0000020638,0.0000020661, +0.0000020686,0.0000020709,0.0000020726,0.0000020742,0.0000020760, +0.0000020775,0.0000020786,0.0000020796,0.0000020803,0.0000020808, +0.0000020810,0.0000020810,0.0000020802,0.0000020788,0.0000020769, +0.0000020746,0.0000020719,0.0000020693,0.0000020671,0.0000020650, +0.0000020633,0.0000020625,0.0000020618,0.0000020610,0.0000020605, +0.0000020598,0.0000020593,0.0000020591,0.0000020593,0.0000020599, +0.0000020601,0.0000020601,0.0000020594,0.0000020580,0.0000020558, +0.0000020529,0.0000020495,0.0000020466,0.0000020452,0.0000020449, +0.0000020438,0.0000020404,0.0000020358,0.0000020305,0.0000020247, +0.0000020182,0.0000020111,0.0000020035,0.0000019953,0.0000019866, +0.0000019778,0.0000019691,0.0000019614,0.0000019550,0.0000019503, +0.0000019480,0.0000019480,0.0000019496,0.0000019521,0.0000019555, +0.0000019596,0.0000019641,0.0000019689,0.0000019739,0.0000019785, +0.0000019822,0.0000019849,0.0000019866,0.0000019869,0.0000019860, +0.0000019837,0.0000019805,0.0000019769,0.0000019740,0.0000019715, +0.0000019691,0.0000019666,0.0000019641,0.0000019619,0.0000019602, +0.0000019587,0.0000019574,0.0000019561,0.0000019551,0.0000019542, +0.0000019532,0.0000019523,0.0000019516,0.0000019513,0.0000019512, +0.0000019513,0.0000019510,0.0000019503,0.0000019493,0.0000019483, +0.0000019473,0.0000019464,0.0000019457,0.0000019454,0.0000019454, +0.0000019455,0.0000019452,0.0000019445,0.0000019435,0.0000019419, +0.0000019397,0.0000019369,0.0000019343,0.0000019319,0.0000019302, +0.0000019294,0.0000019296,0.0000019305,0.0000019318,0.0000019334, +0.0000019352,0.0000019373,0.0000019396,0.0000019420,0.0000019444, +0.0000019464,0.0000019481,0.0000019494,0.0000019503,0.0000019508, +0.0000019508,0.0000019505,0.0000019498,0.0000019492,0.0000019487, +0.0000019493,0.0000019503,0.0000019517,0.0000019534,0.0000019553, +0.0000019577,0.0000019605,0.0000019634,0.0000019660,0.0000019677, +0.0000019684,0.0000019685,0.0000019682,0.0000019675,0.0000019663, +0.0000019640,0.0000019614,0.0000019587,0.0000019567,0.0000019553, +0.0000019543,0.0000019537,0.0000019536,0.0000019540,0.0000019544, +0.0000019548,0.0000019548,0.0000019551,0.0000019555,0.0000019559, +0.0000019563,0.0000019567,0.0000019567,0.0000019562,0.0000019552, +0.0000019536,0.0000019517,0.0000019497,0.0000019478,0.0000019464, +0.0000019462,0.0000019471,0.0000019490,0.0000019514,0.0000019535, +0.0000019544,0.0000019540,0.0000019521,0.0000019489,0.0000019451, +0.0000019408,0.0000019373,0.0000019358,0.0000019371,0.0000019416, +0.0000019468,0.0000019506,0.0000019531,0.0000019560,0.0000019607, +0.0000019654,0.0000019663,0.0000019617,0.0000019569,0.0000019563, +0.0000019634,0.0000019807,0.0000019978,0.0000020141,0.0000020298, +0.0000020342,0.0000020303,0.0000020318,0.0000020446,0.0000020552, +0.0000020566,0.0000020542,0.0000020536,0.0000020547,0.0000020558, +0.0000020558,0.0000020552,0.0000020536,0.0000020521,0.0000020514, +0.0000020511,0.0000020508,0.0000020505,0.0000020505,0.0000020511, +0.0000020507,0.0000020454,0.0000020342,0.0000020238,0.0000020202, +0.0000020204,0.0000020221,0.0000020246,0.0000020266,0.0000020282, +0.0000020285,0.0000020273,0.0000020250,0.0000020234,0.0000020225, +0.0000020219,0.0000020212,0.0000020209,0.0000020222,0.0000020251, +0.0000020270,0.0000020260,0.0000020232,0.0000020218,0.0000020225, +0.0000020257,0.0000020305,0.0000020344,0.0000020360,0.0000020363, +0.0000020358,0.0000020354,0.0000020355,0.0000020359,0.0000020357, +0.0000020347,0.0000020330,0.0000020306,0.0000020280,0.0000020253, +0.0000020231,0.0000020211,0.0000020196,0.0000020185,0.0000020176, +0.0000020170,0.0000020165,0.0000020155,0.0000020137,0.0000020113, +0.0000020086,0.0000020061,0.0000020037,0.0000020015,0.0000020000, +0.0000019993,0.0000019987,0.0000019981,0.0000019976,0.0000019971, +0.0000019966,0.0000019959,0.0000019951,0.0000019938,0.0000019925, +0.0000019911,0.0000019897,0.0000019883,0.0000019872,0.0000019862, +0.0000019853,0.0000019843,0.0000019833,0.0000019824,0.0000019815, +0.0000019806,0.0000019798,0.0000019791,0.0000019785,0.0000019780, +0.0000019776,0.0000019773,0.0000019768,0.0000019761,0.0000019752, +0.0000019741,0.0000019729,0.0000019719,0.0000019712,0.0000019709, +0.0000019708,0.0000019712,0.0000019719,0.0000019727,0.0000019734, +0.0000019743,0.0000019751,0.0000019758,0.0000019764,0.0000019766, +0.0000019765,0.0000019758,0.0000019748,0.0000019734,0.0000019718, +0.0000019702,0.0000019684,0.0000019663,0.0000019643,0.0000019624, +0.0000019612,0.0000019609,0.0000019612,0.0000019616,0.0000019617, +0.0000019613,0.0000019602,0.0000019591,0.0000019583,0.0000019578, +0.0000019570,0.0000019552,0.0000019519,0.0000019482,0.0000019459, +0.0000019454,0.0000019457,0.0000019470,0.0000019475,0.0000019472, +0.0000019466,0.0000019482,0.0000019523,0.0000019576,0.0000019622, +0.0000019644,0.0000019646,0.0000019647,0.0000019654,0.0000019658, +0.0000019676,0.0000019707,0.0000019730,0.0000019745,0.0000019745, +0.0000019745,0.0000019751,0.0000019766,0.0000019791,0.0000019820, +0.0000019854,0.0000019891,0.0000019927,0.0000019963,0.0000019996, +0.0000020029,0.0000020055,0.0000020079,0.0000020097,0.0000020103, +0.0000020096,0.0000020088,0.0000020078,0.0000020068,0.0000020059, +0.0000020052,0.0000020046,0.0000020043,0.0000020041,0.0000020039, +0.0000020042,0.0000020050,0.0000020060,0.0000020066,0.0000020065, +0.0000020054,0.0000020028,0.0000019997,0.0000019971,0.0000019957, +0.0000019955,0.0000019968,0.0000020006,0.0000020065,0.0000020129, +0.0000020188,0.0000020239,0.0000020285,0.0000020330,0.0000020372, +0.0000020402,0.0000020418,0.0000020420,0.0000020411,0.0000020391, +0.0000020363,0.0000020329,0.0000020286,0.0000020237,0.0000020188, +0.0000020152,0.0000020126,0.0000020103,0.0000020075,0.0000020043, +0.0000020015,0.0000020000,0.0000020000,0.0000020014,0.0000020033, +0.0000020054,0.0000020075,0.0000020097,0.0000020120,0.0000020137, +0.0000020153,0.0000020159,0.0000020158,0.0000020155,0.0000020157, +0.0000020161,0.0000020168,0.0000020177,0.0000020189,0.0000020202, +0.0000020218,0.0000020237,0.0000020259,0.0000020285,0.0000020306, +0.0000020324,0.0000020338,0.0000020356,0.0000020376,0.0000020395, +0.0000020410,0.0000020421,0.0000020432,0.0000020445,0.0000020459, +0.0000020472,0.0000020480,0.0000020478,0.0000020470,0.0000020461, +0.0000020449,0.0000020436,0.0000020421,0.0000020403,0.0000020389, +0.0000020381,0.0000020376,0.0000020376,0.0000020384,0.0000020396, +0.0000020410,0.0000020426,0.0000020441,0.0000020456,0.0000020469, +0.0000020480,0.0000020491,0.0000020496,0.0000020505,0.0000020518, +0.0000020529,0.0000020539,0.0000020548,0.0000020556,0.0000020562, +0.0000020569,0.0000020587,0.0000020618,0.0000020654,0.0000020685, +0.0000020714,0.0000020754,0.0000020800,0.0000020843,0.0000020887, +0.0000020926,0.0000020942,0.0000020933,0.0000020887,0.0000020828, +0.0000020784,0.0000020744,0.0000020704,0.0000020670,0.0000020640, +0.0000020610,0.0000020593,0.0000020583,0.0000020578,0.0000020587, +0.0000020618,0.0000020648,0.0000020674,0.0000020701,0.0000020724, +0.0000020740,0.0000020756,0.0000020777,0.0000020795,0.0000020799, +0.0000020786,0.0000020760,0.0000020737,0.0000020728,0.0000020737, +0.0000020766,0.0000020810,0.0000020856,0.0000020901,0.0000020939, +0.0000020963,0.0000020975,0.0000020983,0.0000020988,0.0000020991, +0.0000020996,0.0000021004,0.0000021014,0.0000021022,0.0000021026, +0.0000021025,0.0000021021,0.0000021023,0.0000021035,0.0000021056, +0.0000021083,0.0000021117,0.0000021155,0.0000021196,0.0000021237, +0.0000021278,0.0000021315,0.0000021348,0.0000021373,0.0000021389, +0.0000021393,0.0000021390,0.0000021376,0.0000021354,0.0000021324, +0.0000021292,0.0000021261,0.0000021235,0.0000021214,0.0000021196, +0.0000021179,0.0000021165,0.0000021159,0.0000021157,0.0000021159, +0.0000021165,0.0000021170,0.0000021180,0.0000021198,0.0000021225, +0.0000021258,0.0000021295,0.0000021337,0.0000021382,0.0000021426, +0.0000021466,0.0000021503,0.0000021533,0.0000021560,0.0000021583, +0.0000021597,0.0000021602,0.0000021600,0.0000021591,0.0000021576, +0.0000021559,0.0000021542,0.0000021521,0.0000021501,0.0000021480, +0.0000021462,0.0000021448,0.0000021434,0.0000021422,0.0000021410, +0.0000021398,0.0000021387,0.0000021379,0.0000021375,0.0000021376, +0.0000021381,0.0000021390,0.0000021401,0.0000021413,0.0000021427, +0.0000021442,0.0000021455,0.0000021466,0.0000021473,0.0000021481, +0.0000021494,0.0000021518,0.0000021540,0.0000021554,0.0000021561, +0.0000021562,0.0000021559,0.0000021551,0.0000021542,0.0000021529, +0.0000021506,0.0000021468,0.0000021413,0.0000021360,0.0000021329, +0.0000021302,0.0000021252,0.0000021221,0.0000021223,0.0000021256, +0.0000021367,0.0000021460,0.0000021514,0.0000021567,0.0000021638, +0.0000021695,0.0000021682,0.0000021607,0.0000021546,0.0000021512, +0.0000021497,0.0000021512,0.0000021539,0.0000021535,0.0000021480, +0.0000021398,0.0000021335,0.0000021297,0.0000021269,0.0000021236, +0.0000021195,0.0000021155,0.0000021116,0.0000021087,0.0000021077, +0.0000021078,0.0000021084,0.0000021089,0.0000021087,0.0000021080, +0.0000021069,0.0000021055,0.0000021033,0.0000021001,0.0000020961, +0.0000020909,0.0000020850,0.0000020789,0.0000020725,0.0000020681, +0.0000020669,0.0000020679,0.0000020703,0.0000020725,0.0000020743, +0.0000020768,0.0000020784,0.0000020777,0.0000020746,0.0000020695, +0.0000020637,0.0000020575,0.0000020503,0.0000020437,0.0000020393, +0.0000020366,0.0000020350,0.0000020340,0.0000020335,0.0000020338, +0.0000020359,0.0000020426,0.0000020506,0.0000020544,0.0000020522, +0.0000020426,0.0000020316,0.0000020247,0.0000020239,0.0000020176, +0.0000020056,0.0000020023,0.0000020035,0.0000020064,0.0000020120, +0.0000020237,0.0000020343,0.0000020361,0.0000020356,0.0000020393, +0.0000020468,0.0000020546,0.0000020603,0.0000020671,0.0000020765, +0.0000020919,0.0000021063,0.0000021116,0.0000021205,0.0000021398, +0.0000021451,0.0000021512,0.0000021593,0.0000021586,0.0000021594, +0.0000021659,0.0000021675,0.0000021636,0.0000021682,0.0000021802, +0.0000021813,0.0000021771,0.0000021723,0.0000021741,0.0000021803, +0.0000021810,0.0000021842,0.0000021958,0.0000022021,0.0000022041, +0.0000022033,0.0000022001,0.0000022011,0.0000022079,0.0000022158, +0.0000022210,0.0000022235,0.0000022269,0.0000022309,0.0000022338, +0.0000022348,0.0000022357,0.0000022369,0.0000022370,0.0000022365, +0.0000022334,0.0000022253,0.0000022132,0.0000022003,0.0000021941, +0.0000021931,0.0000021929,0.0000021921,0.0000021916,0.0000021911, +0.0000021887,0.0000021823,0.0000021733,0.0000021636,0.0000021554, +0.0000021505,0.0000021475,0.0000021451,0.0000021427,0.0000021415, +0.0000021408,0.0000021402,0.0000021405,0.0000021405,0.0000021409, +0.0000021403,0.0000021393,0.0000021383,0.0000021360,0.0000021316, +0.0000021254,0.0000021186,0.0000021101,0.0000021016,0.0000020935, +0.0000020873,0.0000020824,0.0000020787,0.0000020762,0.0000020763, +0.0000020792,0.0000020827,0.0000020860,0.0000020867,0.0000020869, +0.0000020865,0.0000020870,0.0000020884,0.0000020897,0.0000020894, +0.0000020874,0.0000020847,0.0000020836,0.0000020837,0.0000020828, +0.0000020810,0.0000020776,0.0000020750,0.0000020724,0.0000020713, +0.0000020732,0.0000020779,0.0000020851,0.0000020930,0.0000021009, +0.0000021084,0.0000021140,0.0000021176,0.0000021206,0.0000021250, +0.0000021300,0.0000021344,0.0000021378,0.0000021401,0.0000021401, +0.0000021392,0.0000021382,0.0000021379,0.0000021379,0.0000021383, +0.0000021393,0.0000021408,0.0000021424,0.0000021440,0.0000021454, +0.0000021461,0.0000021462,0.0000021461,0.0000021461,0.0000021462, +0.0000021469,0.0000021473,0.0000021486,0.0000021498,0.0000021516, +0.0000021536,0.0000021558,0.0000021585,0.0000021610,0.0000021624, +0.0000021640,0.0000021645,0.0000021635,0.0000021616,0.0000021592, +0.0000021579,0.0000021576,0.0000021578,0.0000021574,0.0000021567, +0.0000021554,0.0000021537,0.0000021519,0.0000021504,0.0000021484, +0.0000021471,0.0000021451,0.0000021440,0.0000021429,0.0000021421, +0.0000021414,0.0000021412,0.0000021410,0.0000021402,0.0000021388, +0.0000021370,0.0000021356,0.0000021343,0.0000021336,0.0000021329, +0.0000021329,0.0000021337,0.0000021346,0.0000021354,0.0000021369, +0.0000021387,0.0000021405,0.0000021423,0.0000021439,0.0000021453, +0.0000021466,0.0000021470,0.0000021471,0.0000021477,0.0000021489, +0.0000021511,0.0000021538,0.0000021566,0.0000021598,0.0000021640, +0.0000021689,0.0000021740,0.0000021779,0.0000021804,0.0000021816, +0.0000021823,0.0000021835,0.0000021852,0.0000021873,0.0000021899, +0.0000021934,0.0000021977,0.0000022021,0.0000022060,0.0000022093, +0.0000022119,0.0000022138,0.0000022149,0.0000022154,0.0000022152, +0.0000022141,0.0000022133,0.0000022135,0.0000022139,0.0000022138, +0.0000022128,0.0000022120,0.0000022121,0.0000022130,0.0000022136, +0.0000022136,0.0000022137,0.0000022137,0.0000022125,0.0000022104, +0.0000022068,0.0000022018,0.0000021962,0.0000021908,0.0000021858, +0.0000021821,0.0000021801,0.0000021793,0.0000021801,0.0000021825, +0.0000021851,0.0000021888,0.0000021924,0.0000021953,0.0000021977, +0.0000021996,0.0000022010,0.0000022015,0.0000022016,0.0000022019, +0.0000022023,0.0000022023,0.0000022016,0.0000021999,0.0000021975, +0.0000021946,0.0000021915,0.0000021887,0.0000021861,0.0000021842, +0.0000021830,0.0000021829,0.0000021839,0.0000021847,0.0000021847, +0.0000021841,0.0000021832,0.0000021822,0.0000021813,0.0000021797, +0.0000021778,0.0000021753,0.0000021725,0.0000021693,0.0000021659, +0.0000021626,0.0000021604,0.0000021590,0.0000021583,0.0000021585, +0.0000021591,0.0000021602,0.0000021619,0.0000021642,0.0000021665, +0.0000021688,0.0000021709,0.0000021725,0.0000021739,0.0000021753, +0.0000021765,0.0000021777,0.0000021786,0.0000021790,0.0000021789, +0.0000021784,0.0000021778,0.0000021774,0.0000021770,0.0000021765, +0.0000021757,0.0000021745,0.0000021728,0.0000021705,0.0000021675, +0.0000021644,0.0000021619,0.0000021603,0.0000021588,0.0000021565, +0.0000021533,0.0000021494,0.0000021458,0.0000021425,0.0000021393, +0.0000021360,0.0000021326,0.0000021298,0.0000021274,0.0000021252, +0.0000021231,0.0000021216,0.0000021204,0.0000021192,0.0000021182, +0.0000021174,0.0000021169,0.0000021166,0.0000021164,0.0000021161, +0.0000021156,0.0000021153,0.0000021151,0.0000021147,0.0000021143, +0.0000021143,0.0000021145,0.0000021149,0.0000021149,0.0000021143, +0.0000021134,0.0000021120,0.0000021101,0.0000021076,0.0000021046, +0.0000021014,0.0000020983,0.0000020948,0.0000020910,0.0000020876, +0.0000020848,0.0000020821,0.0000020791,0.0000020763,0.0000020750, +0.0000020739,0.0000020741,0.0000020747,0.0000020753,0.0000020762, +0.0000020771,0.0000020775,0.0000020774,0.0000020770,0.0000020764, +0.0000020760,0.0000020758,0.0000020751,0.0000020737,0.0000020719, +0.0000020705,0.0000020700,0.0000020700,0.0000020704,0.0000020713, +0.0000020723,0.0000020730,0.0000020731,0.0000020727,0.0000020719, +0.0000020709,0.0000020696,0.0000020679,0.0000020659,0.0000020640, +0.0000020626,0.0000020617,0.0000020612,0.0000020610,0.0000020615, +0.0000020629,0.0000020649,0.0000020668,0.0000020683,0.0000020690, +0.0000020689,0.0000020681,0.0000020667,0.0000020644,0.0000020611, +0.0000020573,0.0000020540,0.0000020516,0.0000020497,0.0000020481, +0.0000020470,0.0000020465,0.0000020462,0.0000020461,0.0000020464, +0.0000020470,0.0000020479,0.0000020498,0.0000020523,0.0000020547, +0.0000020569,0.0000020582,0.0000020581,0.0000020562,0.0000020526, +0.0000020478,0.0000020420,0.0000020356,0.0000020293,0.0000020236, +0.0000020188,0.0000020155,0.0000020140,0.0000020137,0.0000020133, +0.0000020124,0.0000020114,0.0000020105,0.0000020095,0.0000020081, +0.0000020065,0.0000020050,0.0000020032,0.0000020016,0.0000019999, +0.0000019982,0.0000019975,0.0000019979,0.0000019995,0.0000020014, +0.0000020025,0.0000020028,0.0000020027,0.0000020020,0.0000020003, +0.0000019973,0.0000019937,0.0000019908,0.0000019893,0.0000019887, +0.0000019880,0.0000019873,0.0000019872,0.0000019860,0.0000019820, +0.0000019763,0.0000019716,0.0000019680,0.0000019651,0.0000019633, +0.0000019616,0.0000019596,0.0000019585,0.0000019590,0.0000019606, +0.0000019619,0.0000019629,0.0000019631,0.0000019619,0.0000019588, +0.0000019557,0.0000019536,0.0000019532,0.0000019530,0.0000019519, +0.0000019509,0.0000019506,0.0000019500,0.0000019495,0.0000019500, +0.0000019510,0.0000019523,0.0000019535,0.0000019542,0.0000019535, +0.0000019529,0.0000019540,0.0000019582,0.0000019644,0.0000019695, +0.0000019745,0.0000019791,0.0000019829,0.0000019866,0.0000019899, +0.0000019919,0.0000019922,0.0000019908,0.0000019882,0.0000019859, +0.0000019845,0.0000019838,0.0000019817,0.0000019774,0.0000019752, +0.0000019766,0.0000019780,0.0000019757,0.0000019706,0.0000019666, +0.0000019648,0.0000019649,0.0000019665,0.0000019695,0.0000019738, +0.0000019798,0.0000019867,0.0000019934,0.0000019991,0.0000020033, +0.0000020059,0.0000020075,0.0000020089,0.0000020101,0.0000020113, +0.0000020130,0.0000020153,0.0000020182,0.0000020218,0.0000020255, +0.0000020289,0.0000020318,0.0000020342,0.0000020354,0.0000020358, +0.0000020351,0.0000020341,0.0000020327,0.0000020309,0.0000020305, +0.0000020305,0.0000020307,0.0000020315,0.0000020323,0.0000020320, +0.0000020314,0.0000020304,0.0000020293,0.0000020288,0.0000020287, +0.0000020291,0.0000020299,0.0000020309,0.0000020319,0.0000020328, +0.0000020337,0.0000020343,0.0000020345,0.0000020346,0.0000020346, +0.0000020346,0.0000020344,0.0000020340,0.0000020336,0.0000020332, +0.0000020326,0.0000020321,0.0000020321,0.0000020325,0.0000020340, +0.0000020367,0.0000020395,0.0000020418,0.0000020434,0.0000020446, +0.0000020461,0.0000020481,0.0000020504,0.0000020524,0.0000020537, +0.0000020545,0.0000020552,0.0000020561,0.0000020572,0.0000020594, +0.0000020625,0.0000020659,0.0000020693,0.0000020728,0.0000020770, +0.0000020817,0.0000020865,0.0000020909,0.0000020942,0.0000020963, +0.0000020975,0.0000020984,0.0000020987,0.0000020984,0.0000020979, +0.0000020983,0.0000020993,0.0000020983,0.0000020954,0.0000020940, +0.0000020903,0.0000020857,0.0000020827,0.0000020773,0.0000020738, +0.0000020699,0.0000020663,0.0000020651,0.0000020633,0.0000020621, +0.0000020623,0.0000020663,0.0000020750,0.0000020819,0.0000020856, +0.0000020920,0.0000021006,0.0000021053,0.0000021069,0.0000021098, +0.0000021108,0.0000021089,0.0000021051,0.0000021003,0.0000020931, +0.0000020849,0.0000020788,0.0000020769,0.0000020775,0.0000020793, +0.0000020824,0.0000020867,0.0000020909,0.0000020945,0.0000020973, +0.0000020987,0.0000020987,0.0000020970,0.0000020938,0.0000020899, +0.0000020859,0.0000020823,0.0000020797,0.0000020778,0.0000020761, +0.0000020741,0.0000020722,0.0000020712,0.0000020714,0.0000020723, +0.0000020738,0.0000020755,0.0000020771,0.0000020787,0.0000020803, +0.0000020816,0.0000020825,0.0000020831,0.0000020836,0.0000020841, +0.0000020846,0.0000020848,0.0000020848,0.0000020851,0.0000020863, +0.0000020886,0.0000020913,0.0000020939,0.0000020965,0.0000020992, +0.0000021023,0.0000021056,0.0000021090,0.0000021123,0.0000021152, +0.0000021175,0.0000021193,0.0000021200,0.0000021196,0.0000021182, +0.0000021166,0.0000021143,0.0000021128,0.0000021111,0.0000021097, +0.0000021085,0.0000021074,0.0000021085,0.0000021122,0.0000021191, +0.0000021291,0.0000021415,0.0000021554,0.0000021695,0.0000021827, +0.0000021942,0.0000022033,0.0000022103,0.0000022154,0.0000022191, +0.0000022217,0.0000022232,0.0000022234,0.0000022226,0.0000022210, +0.0000022186,0.0000022154,0.0000022115,0.0000022069,0.0000022023, +0.0000021978,0.0000021934,0.0000021886,0.0000021828,0.0000021748, +0.0000021646,0.0000021544,0.0000021465,0.0000021418,0.0000021396, +0.0000021388,0.0000021381,0.0000021367,0.0000021344,0.0000021311, +0.0000021271,0.0000021218,0.0000021147,0.0000021048,0.0000020929, +0.0000020773,0.0000020601,0.0000020430,0.0000020277,0.0000020160, +0.0000020087,0.0000020043,0.0000020002,0.0000019942,0.0000019863, +0.0000019787,0.0000019725,0.0000019679,0.0000019649,0.0000019631, +0.0000019618,0.0000019604,0.0000019590,0.0000019580,0.0000019582, +0.0000019606,0.0000019644,0.0000019674,0.0000019681,0.0000019664, +0.0000019640,0.0000019626,0.0000019631,0.0000019651,0.0000019670, +0.0000019677,0.0000019671,0.0000019665,0.0000019669,0.0000019688, +0.0000019721,0.0000019764,0.0000019816,0.0000019866,0.0000019905, +0.0000019942,0.0000019985,0.0000020039,0.0000020088,0.0000020116, +0.0000020122,0.0000020122,0.0000020124,0.0000020133,0.0000020152, +0.0000020171,0.0000020170,0.0000020133,0.0000020056,0.0000019976, +0.0000019954,0.0000019997,0.0000020088,0.0000020201,0.0000020294, +0.0000020341,0.0000020340,0.0000020314,0.0000020289,0.0000020297, +0.0000020352,0.0000020442,0.0000020542,0.0000020628,0.0000020683, +0.0000020700,0.0000020686,0.0000020665,0.0000020628,0.0000020589, +0.0000020557,0.0000020536,0.0000020534,0.0000020537,0.0000020560, +0.0000020606,0.0000020666,0.0000020731,0.0000020792,0.0000020840, +0.0000020867,0.0000020867,0.0000020847,0.0000020816,0.0000020794, +0.0000020788,0.0000020786,0.0000020788,0.0000020794,0.0000020803, +0.0000020817,0.0000020836,0.0000020856,0.0000020874,0.0000020890, +0.0000020902,0.0000020906,0.0000020902,0.0000020895,0.0000020888, +0.0000020879,0.0000020870,0.0000020857,0.0000020842,0.0000020826, +0.0000020814,0.0000020799,0.0000020776,0.0000020746,0.0000020703, +0.0000020646,0.0000020574,0.0000020506,0.0000020457,0.0000020430, +0.0000020418,0.0000020417,0.0000020418,0.0000020426,0.0000020435, +0.0000020442,0.0000020449,0.0000020458,0.0000020473,0.0000020488, +0.0000020510,0.0000020537,0.0000020567,0.0000020605,0.0000020643, +0.0000020679,0.0000020714,0.0000020743,0.0000020764,0.0000020777, +0.0000020783,0.0000020779,0.0000020767,0.0000020751,0.0000020727, +0.0000020695,0.0000020659,0.0000020625,0.0000020590,0.0000020557, +0.0000020536,0.0000020523,0.0000020512,0.0000020504,0.0000020501, +0.0000020503,0.0000020512,0.0000020527,0.0000020542,0.0000020558, +0.0000020571,0.0000020575,0.0000020570,0.0000020557,0.0000020531, +0.0000020498,0.0000020462,0.0000020431,0.0000020410,0.0000020395, +0.0000020377,0.0000020347,0.0000020302,0.0000020253,0.0000020196, +0.0000020129,0.0000020048,0.0000019958,0.0000019862,0.0000019765, +0.0000019671,0.0000019589,0.0000019518,0.0000019453,0.0000019403, +0.0000019374,0.0000019367,0.0000019379,0.0000019401,0.0000019429, +0.0000019460,0.0000019496,0.0000019537,0.0000019580,0.0000019616, +0.0000019643,0.0000019661,0.0000019669,0.0000019665,0.0000019649, +0.0000019623,0.0000019596,0.0000019573,0.0000019553,0.0000019531, +0.0000019507,0.0000019482,0.0000019456,0.0000019432,0.0000019413, +0.0000019399,0.0000019390,0.0000019380,0.0000019373,0.0000019371, +0.0000019373,0.0000019378,0.0000019386,0.0000019398,0.0000019410, +0.0000019416,0.0000019415,0.0000019408,0.0000019398,0.0000019387, +0.0000019374,0.0000019361,0.0000019350,0.0000019346,0.0000019346, +0.0000019348,0.0000019349,0.0000019347,0.0000019340,0.0000019327, +0.0000019310,0.0000019289,0.0000019264,0.0000019240,0.0000019222, +0.0000019215,0.0000019217,0.0000019228,0.0000019246,0.0000019269, +0.0000019291,0.0000019310,0.0000019330,0.0000019351,0.0000019376, +0.0000019405,0.0000019434,0.0000019461,0.0000019485,0.0000019500, +0.0000019505,0.0000019501,0.0000019491,0.0000019479,0.0000019469, +0.0000019462,0.0000019462,0.0000019471,0.0000019484,0.0000019503, +0.0000019528,0.0000019560,0.0000019595,0.0000019626,0.0000019648, +0.0000019662,0.0000019670,0.0000019674,0.0000019672,0.0000019666, +0.0000019652,0.0000019631,0.0000019608,0.0000019588,0.0000019571, +0.0000019557,0.0000019548,0.0000019544,0.0000019544,0.0000019546, +0.0000019548,0.0000019550,0.0000019553,0.0000019559,0.0000019565, +0.0000019571,0.0000019576,0.0000019578,0.0000019574,0.0000019560, +0.0000019543,0.0000019523,0.0000019503,0.0000019486,0.0000019477, +0.0000019479,0.0000019493,0.0000019517,0.0000019541,0.0000019553, +0.0000019553,0.0000019537,0.0000019510,0.0000019473,0.0000019429, +0.0000019384,0.0000019350,0.0000019345,0.0000019374,0.0000019427, +0.0000019476,0.0000019505,0.0000019528,0.0000019565,0.0000019620, +0.0000019655,0.0000019639,0.0000019590,0.0000019567,0.0000019596, +0.0000019732,0.0000019911,0.0000020065,0.0000020223,0.0000020337, +0.0000020337,0.0000020297,0.0000020343,0.0000020472,0.0000020558, +0.0000020563,0.0000020537,0.0000020526,0.0000020531,0.0000020540, +0.0000020541,0.0000020533,0.0000020523,0.0000020515,0.0000020514, +0.0000020519,0.0000020524,0.0000020523,0.0000020518,0.0000020513, +0.0000020498,0.0000020436,0.0000020326,0.0000020233,0.0000020206, +0.0000020216,0.0000020237,0.0000020260,0.0000020281,0.0000020294, +0.0000020294,0.0000020279,0.0000020260,0.0000020246,0.0000020234, +0.0000020223,0.0000020219,0.0000020233,0.0000020263,0.0000020281, +0.0000020272,0.0000020242,0.0000020222,0.0000020226,0.0000020252, +0.0000020293,0.0000020333,0.0000020356,0.0000020363,0.0000020361, +0.0000020356,0.0000020351,0.0000020349,0.0000020345,0.0000020338, +0.0000020327,0.0000020312,0.0000020292,0.0000020268,0.0000020239, +0.0000020211,0.0000020186,0.0000020168,0.0000020155,0.0000020149, +0.0000020148,0.0000020144,0.0000020134,0.0000020121,0.0000020104, +0.0000020083,0.0000020058,0.0000020034,0.0000020014,0.0000019998, +0.0000019987,0.0000019980,0.0000019976,0.0000019973,0.0000019968, +0.0000019964,0.0000019957,0.0000019949,0.0000019939,0.0000019928, +0.0000019915,0.0000019900,0.0000019884,0.0000019867,0.0000019850, +0.0000019834,0.0000019817,0.0000019799,0.0000019779,0.0000019755, +0.0000019729,0.0000019703,0.0000019681,0.0000019666,0.0000019657, +0.0000019652,0.0000019650,0.0000019652,0.0000019654,0.0000019656, +0.0000019658,0.0000019660,0.0000019662,0.0000019663,0.0000019667, +0.0000019673,0.0000019682,0.0000019695,0.0000019711,0.0000019727, +0.0000019742,0.0000019755,0.0000019765,0.0000019772,0.0000019774, +0.0000019773,0.0000019767,0.0000019753,0.0000019737,0.0000019721, +0.0000019707,0.0000019694,0.0000019679,0.0000019661,0.0000019648, +0.0000019644,0.0000019648,0.0000019659,0.0000019672,0.0000019681, +0.0000019678,0.0000019663,0.0000019639,0.0000019615,0.0000019596, +0.0000019583,0.0000019561,0.0000019520,0.0000019475,0.0000019448, +0.0000019442,0.0000019453,0.0000019469,0.0000019475,0.0000019471, +0.0000019472,0.0000019492,0.0000019533,0.0000019584,0.0000019626, +0.0000019646,0.0000019612,0.0000019641,0.0000019657,0.0000019670, +0.0000019688,0.0000019717,0.0000019747,0.0000019769,0.0000019776, +0.0000019777,0.0000019782,0.0000019789,0.0000019805,0.0000019830, +0.0000019860,0.0000019893,0.0000019922,0.0000019948,0.0000019970, +0.0000019992,0.0000020011,0.0000020030,0.0000020047,0.0000020059, +0.0000020067,0.0000020067,0.0000020057,0.0000020053,0.0000020050, +0.0000020044,0.0000020039,0.0000020030,0.0000020019,0.0000020011, +0.0000020009,0.0000020008,0.0000020007,0.0000020004,0.0000019997, +0.0000019985,0.0000019972,0.0000019975,0.0000019986,0.0000020009, +0.0000020053,0.0000020110,0.0000020164,0.0000020214,0.0000020255, +0.0000020295,0.0000020334,0.0000020370,0.0000020397,0.0000020414, +0.0000020420,0.0000020412,0.0000020397,0.0000020377,0.0000020352, +0.0000020317,0.0000020273,0.0000020226,0.0000020186,0.0000020153, +0.0000020118,0.0000020078,0.0000020039,0.0000020008,0.0000019991, +0.0000019986,0.0000019992,0.0000020004,0.0000020020,0.0000020033, +0.0000020047,0.0000020061,0.0000020075,0.0000020082,0.0000020080, +0.0000020077,0.0000020075,0.0000020084,0.0000020094,0.0000020104, +0.0000020114,0.0000020128,0.0000020143,0.0000020154,0.0000020168, +0.0000020190,0.0000020213,0.0000020230,0.0000020246,0.0000020262, +0.0000020280,0.0000020297,0.0000020312,0.0000020323,0.0000020332, +0.0000020344,0.0000020359,0.0000020371,0.0000020385,0.0000020402, +0.0000020416,0.0000020423,0.0000020425,0.0000020425,0.0000020421, +0.0000020415,0.0000020402,0.0000020386,0.0000020373,0.0000020362, +0.0000020353,0.0000020350,0.0000020356,0.0000020368,0.0000020380, +0.0000020390,0.0000020401,0.0000020410,0.0000020419,0.0000020427, +0.0000020434,0.0000020444,0.0000020457,0.0000020473,0.0000020489, +0.0000020507,0.0000020520,0.0000020528,0.0000020542,0.0000020566, +0.0000020599,0.0000020632,0.0000020663,0.0000020689,0.0000020729, +0.0000020779,0.0000020826,0.0000020869,0.0000020909,0.0000020931, +0.0000020926,0.0000020887,0.0000020828,0.0000020780,0.0000020737, +0.0000020693,0.0000020657,0.0000020623,0.0000020587,0.0000020561, +0.0000020545,0.0000020539,0.0000020548,0.0000020575,0.0000020600, +0.0000020621,0.0000020645,0.0000020668,0.0000020686,0.0000020708, +0.0000020734,0.0000020757,0.0000020765,0.0000020760,0.0000020741, +0.0000020718,0.0000020701,0.0000020698,0.0000020718,0.0000020759, +0.0000020806,0.0000020853,0.0000020899,0.0000020937,0.0000020958, +0.0000020970,0.0000020975,0.0000020975,0.0000020972,0.0000020970, +0.0000020973,0.0000020977,0.0000020983,0.0000020985,0.0000020987, +0.0000020993,0.0000021009,0.0000021031,0.0000021059,0.0000021094, +0.0000021134,0.0000021174,0.0000021213,0.0000021248,0.0000021280, +0.0000021308,0.0000021332,0.0000021353,0.0000021369,0.0000021377, +0.0000021376,0.0000021363,0.0000021343,0.0000021317,0.0000021285, +0.0000021251,0.0000021223,0.0000021201,0.0000021179,0.0000021161, +0.0000021149,0.0000021141,0.0000021138,0.0000021138,0.0000021139, +0.0000021141,0.0000021146,0.0000021158,0.0000021176,0.0000021199, +0.0000021232,0.0000021271,0.0000021313,0.0000021358,0.0000021405, +0.0000021445,0.0000021483,0.0000021516,0.0000021543,0.0000021559, +0.0000021565,0.0000021561,0.0000021549,0.0000021536,0.0000021523, +0.0000021507,0.0000021490,0.0000021474,0.0000021459,0.0000021446, +0.0000021434,0.0000021422,0.0000021409,0.0000021395,0.0000021381, +0.0000021370,0.0000021363,0.0000021360,0.0000021361,0.0000021367, +0.0000021376,0.0000021388,0.0000021401,0.0000021416,0.0000021428, +0.0000021439,0.0000021448,0.0000021457,0.0000021473,0.0000021499, +0.0000021525,0.0000021541,0.0000021548,0.0000021550,0.0000021546, +0.0000021538,0.0000021529,0.0000021516,0.0000021493,0.0000021452, +0.0000021398,0.0000021343,0.0000021311,0.0000021278,0.0000021223, +0.0000021187,0.0000021184,0.0000021224,0.0000021341,0.0000021437, +0.0000021494,0.0000021558,0.0000021633,0.0000021693,0.0000021700, +0.0000021647,0.0000021585,0.0000021555,0.0000021553,0.0000021561, +0.0000021551,0.0000021502,0.0000021415,0.0000021336,0.0000021290, +0.0000021257,0.0000021221,0.0000021175,0.0000021124,0.0000021081, +0.0000021048,0.0000021031,0.0000021030,0.0000021042,0.0000021058, +0.0000021068,0.0000021069,0.0000021064,0.0000021053,0.0000021033, +0.0000021005,0.0000020966,0.0000020915,0.0000020858,0.0000020802, +0.0000020737,0.0000020671,0.0000020629,0.0000020619,0.0000020635, +0.0000020665,0.0000020688,0.0000020712,0.0000020741,0.0000020750, +0.0000020739,0.0000020706,0.0000020656,0.0000020605,0.0000020538, +0.0000020459,0.0000020387,0.0000020328,0.0000020292,0.0000020285, +0.0000020293,0.0000020310,0.0000020324,0.0000020366,0.0000020452, +0.0000020517,0.0000020525,0.0000020468,0.0000020372,0.0000020288, +0.0000020255,0.0000020237,0.0000020122,0.0000020035,0.0000020027, +0.0000020041,0.0000020081,0.0000020174,0.0000020303,0.0000020353, +0.0000020338,0.0000020347,0.0000020406,0.0000020490,0.0000020565, +0.0000020647,0.0000020738,0.0000020868,0.0000021017,0.0000021096, +0.0000021156,0.0000021357,0.0000021447,0.0000021490,0.0000021590, +0.0000021601,0.0000021603,0.0000021660,0.0000021697,0.0000021657, +0.0000021670,0.0000021794,0.0000021827,0.0000021792,0.0000021750, +0.0000021748,0.0000021813,0.0000021839,0.0000021847,0.0000021937, +0.0000022027,0.0000022053,0.0000022065,0.0000022042,0.0000022008, +0.0000022008,0.0000022058,0.0000022143,0.0000022197,0.0000022230, +0.0000022268,0.0000022301,0.0000022323,0.0000022335,0.0000022340, +0.0000022333,0.0000022310,0.0000022255,0.0000022154,0.0000022024, +0.0000021920,0.0000021898,0.0000021913,0.0000021928,0.0000021929, +0.0000021912,0.0000021892,0.0000021840,0.0000021747,0.0000021641, +0.0000021554,0.0000021502,0.0000021484,0.0000021475,0.0000021460, +0.0000021442,0.0000021429,0.0000021417,0.0000021404,0.0000021402, +0.0000021405,0.0000021411,0.0000021409,0.0000021406,0.0000021412, +0.0000021412,0.0000021396,0.0000021357,0.0000021305,0.0000021227, +0.0000021125,0.0000021020,0.0000020932,0.0000020873,0.0000020825, +0.0000020780,0.0000020762,0.0000020765,0.0000020774,0.0000020784, +0.0000020785,0.0000020778,0.0000020759,0.0000020755,0.0000020759, +0.0000020774,0.0000020780,0.0000020769,0.0000020755,0.0000020766, +0.0000020787,0.0000020794,0.0000020790,0.0000020774,0.0000020756, +0.0000020729,0.0000020709,0.0000020710,0.0000020713,0.0000020734, +0.0000020773,0.0000020827,0.0000020897,0.0000020977,0.0000021051, +0.0000021109,0.0000021161,0.0000021195,0.0000021221,0.0000021249, +0.0000021280,0.0000021312,0.0000021335,0.0000021349,0.0000021360, +0.0000021372,0.0000021382,0.0000021391,0.0000021406,0.0000021422, +0.0000021438,0.0000021449,0.0000021454,0.0000021457,0.0000021456, +0.0000021456,0.0000021448,0.0000021439,0.0000021436,0.0000021438, +0.0000021446,0.0000021457,0.0000021473,0.0000021493,0.0000021518, +0.0000021536,0.0000021549,0.0000021557,0.0000021555,0.0000021543, +0.0000021522,0.0000021507,0.0000021510,0.0000021525,0.0000021535, +0.0000021541,0.0000021540,0.0000021531,0.0000021518,0.0000021506, +0.0000021489,0.0000021467,0.0000021449,0.0000021431,0.0000021423, +0.0000021412,0.0000021408,0.0000021406,0.0000021405,0.0000021403, +0.0000021402,0.0000021392,0.0000021381,0.0000021369,0.0000021359, +0.0000021355,0.0000021347,0.0000021344,0.0000021351,0.0000021356, +0.0000021359,0.0000021365,0.0000021373,0.0000021374,0.0000021366, +0.0000021363,0.0000021358,0.0000021356,0.0000021355,0.0000021358, +0.0000021371,0.0000021393,0.0000021426,0.0000021459,0.0000021482, +0.0000021502,0.0000021517,0.0000021535,0.0000021560,0.0000021589, +0.0000021628,0.0000021673,0.0000021723,0.0000021771,0.0000021809, +0.0000021840,0.0000021872,0.0000021908,0.0000021943,0.0000021977, +0.0000022009,0.0000022036,0.0000022059,0.0000022076,0.0000022087, +0.0000022096,0.0000022099,0.0000022091,0.0000022086,0.0000022087, +0.0000022088,0.0000022087,0.0000022076,0.0000022061,0.0000022057, +0.0000022065,0.0000022067,0.0000022070,0.0000022077,0.0000022080, +0.0000022081,0.0000022076,0.0000022058,0.0000022036,0.0000022007, +0.0000021969,0.0000021927,0.0000021885,0.0000021854,0.0000021834, +0.0000021829,0.0000021847,0.0000021875,0.0000021916,0.0000021956, +0.0000021991,0.0000022019,0.0000022039,0.0000022050,0.0000022052, +0.0000022048,0.0000022049,0.0000022052,0.0000022055,0.0000022052, +0.0000022040,0.0000022016,0.0000021983,0.0000021941,0.0000021897, +0.0000021855,0.0000021821,0.0000021795,0.0000021785,0.0000021785, +0.0000021785,0.0000021781,0.0000021778,0.0000021775,0.0000021775, +0.0000021776,0.0000021777,0.0000021770,0.0000021763,0.0000021747, +0.0000021721,0.0000021687,0.0000021651,0.0000021619,0.0000021592, +0.0000021574,0.0000021565,0.0000021561,0.0000021564,0.0000021575, +0.0000021597,0.0000021627,0.0000021661,0.0000021692,0.0000021722, +0.0000021748,0.0000021768,0.0000021788,0.0000021804,0.0000021814, +0.0000021818,0.0000021815,0.0000021808,0.0000021802,0.0000021797, +0.0000021793,0.0000021789,0.0000021782,0.0000021771,0.0000021754, +0.0000021730,0.0000021701,0.0000021677,0.0000021661,0.0000021650, +0.0000021638,0.0000021620,0.0000021589,0.0000021551,0.0000021518, +0.0000021492,0.0000021471,0.0000021448,0.0000021427,0.0000021409, +0.0000021393,0.0000021373,0.0000021353,0.0000021336,0.0000021318, +0.0000021299,0.0000021280,0.0000021261,0.0000021244,0.0000021230, +0.0000021221,0.0000021213,0.0000021212,0.0000021215,0.0000021216, +0.0000021218,0.0000021220,0.0000021223,0.0000021229,0.0000021235, +0.0000021240,0.0000021243,0.0000021243,0.0000021239,0.0000021230, +0.0000021213,0.0000021187,0.0000021156,0.0000021119,0.0000021074, +0.0000021025,0.0000020978,0.0000020932,0.0000020883,0.0000020833, +0.0000020787,0.0000020754,0.0000020733,0.0000020729,0.0000020721, +0.0000020720,0.0000020720,0.0000020715,0.0000020708,0.0000020701, +0.0000020696,0.0000020700,0.0000020709,0.0000020717,0.0000020718, +0.0000020712,0.0000020706,0.0000020702,0.0000020703,0.0000020703, +0.0000020706,0.0000020711,0.0000020717,0.0000020721,0.0000020722, +0.0000020718,0.0000020712,0.0000020702,0.0000020690,0.0000020673, +0.0000020657,0.0000020644,0.0000020635,0.0000020632,0.0000020634, +0.0000020642,0.0000020656,0.0000020675,0.0000020697,0.0000020716, +0.0000020728,0.0000020734,0.0000020731,0.0000020721,0.0000020706, +0.0000020683,0.0000020652,0.0000020622,0.0000020600,0.0000020581, +0.0000020563,0.0000020548,0.0000020538,0.0000020532,0.0000020530, +0.0000020530,0.0000020533,0.0000020539,0.0000020552,0.0000020571, +0.0000020593,0.0000020619,0.0000020638,0.0000020641,0.0000020626, +0.0000020589,0.0000020538,0.0000020479,0.0000020414,0.0000020350, +0.0000020289,0.0000020232,0.0000020193,0.0000020174,0.0000020169, +0.0000020166,0.0000020161,0.0000020154,0.0000020145,0.0000020136, +0.0000020126,0.0000020120,0.0000020118,0.0000020115,0.0000020112, +0.0000020104,0.0000020091,0.0000020078,0.0000020068,0.0000020067, +0.0000020071,0.0000020074,0.0000020071,0.0000020064,0.0000020049, +0.0000020025,0.0000019994,0.0000019959,0.0000019932,0.0000019917, +0.0000019909,0.0000019899,0.0000019888,0.0000019885,0.0000019874, +0.0000019833,0.0000019776,0.0000019729,0.0000019692,0.0000019660, +0.0000019637,0.0000019612,0.0000019587,0.0000019570,0.0000019562, +0.0000019564,0.0000019570,0.0000019573,0.0000019573,0.0000019565, +0.0000019544,0.0000019526,0.0000019513,0.0000019507,0.0000019504, +0.0000019493,0.0000019481,0.0000019478,0.0000019476,0.0000019476, +0.0000019486,0.0000019504,0.0000019523,0.0000019535,0.0000019539, +0.0000019533,0.0000019529,0.0000019541,0.0000019580,0.0000019642, +0.0000019705,0.0000019762,0.0000019811,0.0000019852,0.0000019890, +0.0000019919,0.0000019937,0.0000019939,0.0000019917,0.0000019885, +0.0000019856,0.0000019837,0.0000019825,0.0000019801,0.0000019761, +0.0000019738,0.0000019744,0.0000019759,0.0000019744,0.0000019691, +0.0000019636,0.0000019604,0.0000019591,0.0000019592,0.0000019604, +0.0000019632,0.0000019679,0.0000019740,0.0000019799,0.0000019855, +0.0000019904,0.0000019941,0.0000019969,0.0000019992,0.0000020009, +0.0000020025,0.0000020041,0.0000020060,0.0000020085,0.0000020119, +0.0000020158,0.0000020197,0.0000020240,0.0000020283,0.0000020322, +0.0000020351,0.0000020366,0.0000020377,0.0000020379,0.0000020372, +0.0000020358,0.0000020342,0.0000020323,0.0000020319,0.0000020321, +0.0000020318,0.0000020318,0.0000020313,0.0000020306,0.0000020302, +0.0000020299,0.0000020303,0.0000020315,0.0000020330,0.0000020353, +0.0000020378,0.0000020407,0.0000020433,0.0000020445,0.0000020444, +0.0000020438,0.0000020428,0.0000020413,0.0000020397,0.0000020380, +0.0000020369,0.0000020359,0.0000020350,0.0000020344,0.0000020344, +0.0000020352,0.0000020376,0.0000020405,0.0000020435,0.0000020459, +0.0000020479,0.0000020497,0.0000020518,0.0000020540,0.0000020559, +0.0000020571,0.0000020582,0.0000020597,0.0000020617,0.0000020641, +0.0000020666,0.0000020688,0.0000020708,0.0000020736,0.0000020779, +0.0000020833,0.0000020886,0.0000020928,0.0000020956,0.0000020973, +0.0000020984,0.0000020993,0.0000021003,0.0000021009,0.0000021007, +0.0000021001,0.0000021002,0.0000021010,0.0000021000,0.0000020972, +0.0000020958,0.0000020920,0.0000020874,0.0000020840,0.0000020783, +0.0000020746,0.0000020708,0.0000020682,0.0000020676,0.0000020659, +0.0000020645,0.0000020645,0.0000020680,0.0000020757,0.0000020816, +0.0000020853,0.0000020922,0.0000021002,0.0000021037,0.0000021049, +0.0000021072,0.0000021075,0.0000021055,0.0000021015,0.0000020961, +0.0000020893,0.0000020826,0.0000020783,0.0000020763,0.0000020754, +0.0000020760,0.0000020779,0.0000020809,0.0000020841,0.0000020874, +0.0000020897,0.0000020903,0.0000020889,0.0000020855,0.0000020812, +0.0000020771,0.0000020731,0.0000020698,0.0000020676,0.0000020660, +0.0000020647,0.0000020631,0.0000020618,0.0000020614,0.0000020618, +0.0000020627,0.0000020640,0.0000020652,0.0000020660,0.0000020668, +0.0000020675,0.0000020677,0.0000020677,0.0000020675,0.0000020673, +0.0000020674,0.0000020677,0.0000020680,0.0000020682,0.0000020689, +0.0000020702,0.0000020722,0.0000020746,0.0000020773,0.0000020804, +0.0000020839,0.0000020880,0.0000020925,0.0000020970,0.0000021010, +0.0000021047,0.0000021079,0.0000021106,0.0000021125,0.0000021134, +0.0000021135,0.0000021129,0.0000021121,0.0000021111,0.0000021102, +0.0000021092,0.0000021079,0.0000021070,0.0000021069,0.0000021063, +0.0000021072,0.0000021104,0.0000021166,0.0000021260,0.0000021382, +0.0000021521,0.0000021666,0.0000021800,0.0000021912,0.0000022000, +0.0000022064,0.0000022108,0.0000022133,0.0000022144,0.0000022140, +0.0000022130,0.0000022111,0.0000022086,0.0000022057,0.0000022025, +0.0000021991,0.0000021951,0.0000021902,0.0000021835,0.0000021740, +0.0000021621,0.0000021498,0.0000021397,0.0000021332,0.0000021300, +0.0000021286,0.0000021278,0.0000021266,0.0000021249,0.0000021225, +0.0000021194,0.0000021156,0.0000021108,0.0000021047,0.0000020961, +0.0000020844,0.0000020711,0.0000020560,0.0000020403,0.0000020255, +0.0000020136,0.0000020060,0.0000020019,0.0000019987,0.0000019940, +0.0000019870,0.0000019792,0.0000019720,0.0000019664,0.0000019626, +0.0000019598,0.0000019583,0.0000019570,0.0000019555,0.0000019539, +0.0000019534,0.0000019553,0.0000019592,0.0000019629,0.0000019645, +0.0000019636,0.0000019615,0.0000019600,0.0000019601,0.0000019617, +0.0000019635,0.0000019645,0.0000019647,0.0000019647,0.0000019652, +0.0000019669,0.0000019693,0.0000019727,0.0000019776,0.0000019829, +0.0000019874,0.0000019916,0.0000019955,0.0000020006,0.0000020063, +0.0000020105,0.0000020122,0.0000020126,0.0000020130,0.0000020140, +0.0000020157,0.0000020177,0.0000020192,0.0000020170,0.0000020101, +0.0000020011,0.0000019946,0.0000019931,0.0000019981,0.0000020076, +0.0000020176,0.0000020251,0.0000020285,0.0000020276,0.0000020249, +0.0000020232,0.0000020242,0.0000020293,0.0000020381,0.0000020487, +0.0000020582,0.0000020646,0.0000020679,0.0000020671,0.0000020655, +0.0000020625,0.0000020594,0.0000020564,0.0000020538,0.0000020525, +0.0000020512,0.0000020525,0.0000020557,0.0000020600,0.0000020652, +0.0000020706,0.0000020750,0.0000020772,0.0000020770,0.0000020751, +0.0000020729,0.0000020709,0.0000020696,0.0000020692,0.0000020700, +0.0000020721,0.0000020754,0.0000020788,0.0000020814,0.0000020835, +0.0000020853,0.0000020867,0.0000020876,0.0000020875,0.0000020870, +0.0000020862,0.0000020852,0.0000020840,0.0000020827,0.0000020812, +0.0000020795,0.0000020772,0.0000020734,0.0000020681,0.0000020612, +0.0000020528,0.0000020440,0.0000020370,0.0000020332,0.0000020320, +0.0000020321,0.0000020328,0.0000020335,0.0000020347,0.0000020357, +0.0000020362,0.0000020364,0.0000020364,0.0000020361,0.0000020354, +0.0000020351,0.0000020353,0.0000020363,0.0000020386,0.0000020420, +0.0000020461,0.0000020512,0.0000020570,0.0000020621,0.0000020662, +0.0000020691,0.0000020702,0.0000020699,0.0000020688,0.0000020663, +0.0000020627,0.0000020584,0.0000020544,0.0000020505,0.0000020466, +0.0000020436,0.0000020413,0.0000020393,0.0000020380,0.0000020374, +0.0000020375,0.0000020387,0.0000020406,0.0000020427,0.0000020452, +0.0000020478,0.0000020498,0.0000020509,0.0000020510,0.0000020499, +0.0000020479,0.0000020449,0.0000020412,0.0000020373,0.0000020343, +0.0000020324,0.0000020303,0.0000020273,0.0000020234,0.0000020186, +0.0000020121,0.0000020044,0.0000019955,0.0000019859,0.0000019762, +0.0000019671,0.0000019591,0.0000019519,0.0000019454,0.0000019395, +0.0000019354,0.0000019329,0.0000019323,0.0000019329,0.0000019345, +0.0000019364,0.0000019387,0.0000019414,0.0000019443,0.0000019469, +0.0000019488,0.0000019500,0.0000019504,0.0000019500,0.0000019490, +0.0000019474,0.0000019455,0.0000019436,0.0000019421,0.0000019405, +0.0000019388,0.0000019369,0.0000019349,0.0000019329,0.0000019315, +0.0000019305,0.0000019296,0.0000019285,0.0000019279,0.0000019278, +0.0000019279,0.0000019283,0.0000019296,0.0000019316,0.0000019337, +0.0000019353,0.0000019360,0.0000019359,0.0000019351,0.0000019339, +0.0000019325,0.0000019309,0.0000019292,0.0000019278,0.0000019271, +0.0000019270,0.0000019271,0.0000019269,0.0000019264,0.0000019255, +0.0000019243,0.0000019227,0.0000019207,0.0000019184,0.0000019162, +0.0000019147,0.0000019138,0.0000019140,0.0000019152,0.0000019173, +0.0000019197,0.0000019221,0.0000019242,0.0000019262,0.0000019285, +0.0000019311,0.0000019341,0.0000019376,0.0000019414,0.0000019448, +0.0000019474,0.0000019490,0.0000019493,0.0000019486,0.0000019475, +0.0000019457,0.0000019446,0.0000019443,0.0000019441,0.0000019448, +0.0000019462,0.0000019484,0.0000019514,0.0000019548,0.0000019582, +0.0000019610,0.0000019632,0.0000019648,0.0000019661,0.0000019668, +0.0000019668,0.0000019662,0.0000019647,0.0000019628,0.0000019608, +0.0000019589,0.0000019570,0.0000019555,0.0000019546,0.0000019542, +0.0000019540,0.0000019542,0.0000019546,0.0000019553,0.0000019561, +0.0000019570,0.0000019578,0.0000019583,0.0000019582,0.0000019575, +0.0000019562,0.0000019545,0.0000019525,0.0000019507,0.0000019493, +0.0000019490,0.0000019496,0.0000019515,0.0000019538,0.0000019555, +0.0000019558,0.0000019551,0.0000019531,0.0000019502,0.0000019460, +0.0000019410,0.0000019362,0.0000019339,0.0000019347,0.0000019388, +0.0000019443,0.0000019481,0.0000019504,0.0000019532,0.0000019583, +0.0000019640,0.0000019653,0.0000019619,0.0000019579,0.0000019578, +0.0000019662,0.0000019828,0.0000019990,0.0000020133,0.0000020276, +0.0000020346,0.0000020322,0.0000020301,0.0000020360,0.0000020481, +0.0000020552,0.0000020556,0.0000020531,0.0000020517,0.0000020516, +0.0000020515,0.0000020512,0.0000020506,0.0000020500,0.0000020499, +0.0000020505,0.0000020518,0.0000020531,0.0000020537,0.0000020532, +0.0000020519,0.0000020493,0.0000020428,0.0000020324,0.0000020240, +0.0000020222,0.0000020235,0.0000020255,0.0000020273,0.0000020289, +0.0000020294,0.0000020290,0.0000020275,0.0000020259,0.0000020244, +0.0000020230,0.0000020226,0.0000020240,0.0000020272,0.0000020293, +0.0000020287,0.0000020258,0.0000020234,0.0000020233,0.0000020253, +0.0000020289,0.0000020326,0.0000020353,0.0000020366,0.0000020369, +0.0000020366,0.0000020359,0.0000020351,0.0000020342,0.0000020331, +0.0000020320,0.0000020309,0.0000020297,0.0000020281,0.0000020256, +0.0000020225,0.0000020191,0.0000020161,0.0000020138,0.0000020126, +0.0000020122,0.0000020121,0.0000020119,0.0000020113,0.0000020104, +0.0000020092,0.0000020078,0.0000020061,0.0000020041,0.0000020022, +0.0000020005,0.0000019993,0.0000019984,0.0000019979,0.0000019976, +0.0000019973,0.0000019969,0.0000019965,0.0000019959,0.0000019952, +0.0000019944,0.0000019934,0.0000019919,0.0000019901,0.0000019879, +0.0000019856,0.0000019831,0.0000019803,0.0000019772,0.0000019737, +0.0000019699,0.0000019658,0.0000019620,0.0000019590,0.0000019566, +0.0000019544,0.0000019528,0.0000019522,0.0000019522,0.0000019528, +0.0000019538,0.0000019549,0.0000019561,0.0000019572,0.0000019583, +0.0000019596,0.0000019611,0.0000019629,0.0000019649,0.0000019671, +0.0000019694,0.0000019717,0.0000019737,0.0000019755,0.0000019769, +0.0000019777,0.0000019778,0.0000019776,0.0000019771,0.0000019759, +0.0000019748,0.0000019739,0.0000019733,0.0000019730,0.0000019729, +0.0000019727,0.0000019723,0.0000019722,0.0000019725,0.0000019730, +0.0000019733,0.0000019732,0.0000019714,0.0000019677,0.0000019636, +0.0000019605,0.0000019585,0.0000019562,0.0000019523,0.0000019483, +0.0000019461,0.0000019457,0.0000019458,0.0000019463,0.0000019464, +0.0000019459,0.0000019464,0.0000019487,0.0000019523,0.0000019568, +0.0000019509,0.0000019551,0.0000019591,0.0000019625,0.0000019650, +0.0000019672,0.0000019700,0.0000019734,0.0000019768,0.0000019788, +0.0000019805,0.0000019812,0.0000019814,0.0000019822,0.0000019829, +0.0000019844,0.0000019860,0.0000019875,0.0000019893,0.0000019912, +0.0000019928,0.0000019941,0.0000019955,0.0000019966,0.0000019981, +0.0000020003,0.0000020021,0.0000020037,0.0000020047,0.0000020045, +0.0000020040,0.0000020029,0.0000020014,0.0000019999,0.0000019985, +0.0000019972,0.0000019959,0.0000019948,0.0000019942,0.0000019940, +0.0000019945,0.0000019962,0.0000019987,0.0000020016,0.0000020060, +0.0000020111,0.0000020159,0.0000020202,0.0000020240,0.0000020272, +0.0000020301,0.0000020328,0.0000020347,0.0000020360,0.0000020366, +0.0000020363,0.0000020351,0.0000020333,0.0000020312,0.0000020284, +0.0000020248,0.0000020207,0.0000020170,0.0000020137,0.0000020099, +0.0000020058,0.0000020017,0.0000019984,0.0000019961,0.0000019951, +0.0000019950,0.0000019951,0.0000019954,0.0000019959,0.0000019967, +0.0000019980,0.0000019988,0.0000019986,0.0000019983,0.0000019977, +0.0000019973,0.0000019980,0.0000019996,0.0000020011,0.0000020023, +0.0000020035,0.0000020049,0.0000020059,0.0000020075,0.0000020098, +0.0000020120,0.0000020137,0.0000020152,0.0000020168,0.0000020185, +0.0000020203,0.0000020219,0.0000020229,0.0000020236,0.0000020242, +0.0000020252,0.0000020263,0.0000020273,0.0000020288,0.0000020309, +0.0000020326,0.0000020337,0.0000020346,0.0000020358,0.0000020365, +0.0000020364,0.0000020354,0.0000020342,0.0000020330,0.0000020317, +0.0000020306,0.0000020304,0.0000020308,0.0000020312,0.0000020317, +0.0000020319,0.0000020321,0.0000020327,0.0000020332,0.0000020339, +0.0000020349,0.0000020361,0.0000020379,0.0000020404,0.0000020431, +0.0000020454,0.0000020475,0.0000020502,0.0000020536,0.0000020575, +0.0000020612,0.0000020644,0.0000020671,0.0000020711,0.0000020764, +0.0000020811,0.0000020854,0.0000020891,0.0000020913,0.0000020912, +0.0000020879,0.0000020822,0.0000020773,0.0000020725,0.0000020677, +0.0000020640,0.0000020602,0.0000020560,0.0000020526,0.0000020505, +0.0000020497,0.0000020506,0.0000020530,0.0000020551,0.0000020567, +0.0000020588,0.0000020611,0.0000020635,0.0000020662,0.0000020694, +0.0000020722,0.0000020735,0.0000020735,0.0000020723,0.0000020705, +0.0000020686,0.0000020675,0.0000020680,0.0000020707,0.0000020747, +0.0000020793,0.0000020841,0.0000020886,0.0000020920,0.0000020942, +0.0000020954,0.0000020958,0.0000020959,0.0000020955,0.0000020950, +0.0000020947,0.0000020946,0.0000020947,0.0000020952,0.0000020962, +0.0000020979,0.0000021002,0.0000021031,0.0000021069,0.0000021111, +0.0000021152,0.0000021192,0.0000021227,0.0000021257,0.0000021282, +0.0000021302,0.0000021321,0.0000021336,0.0000021349,0.0000021354, +0.0000021350,0.0000021337,0.0000021320,0.0000021298,0.0000021272, +0.0000021244,0.0000021215,0.0000021187,0.0000021164,0.0000021145, +0.0000021132,0.0000021122,0.0000021116,0.0000021112,0.0000021110, +0.0000021110,0.0000021113,0.0000021120,0.0000021133,0.0000021152, +0.0000021175,0.0000021203,0.0000021239,0.0000021280,0.0000021322, +0.0000021365,0.0000021408,0.0000021448,0.0000021479,0.0000021499, +0.0000021506,0.0000021502,0.0000021492,0.0000021479,0.0000021462, +0.0000021445,0.0000021431,0.0000021419,0.0000021409,0.0000021401, +0.0000021394,0.0000021388,0.0000021379,0.0000021370,0.0000021363, +0.0000021359,0.0000021356,0.0000021355,0.0000021357,0.0000021363, +0.0000021374,0.0000021388,0.0000021402,0.0000021414,0.0000021426, +0.0000021435,0.0000021444,0.0000021458,0.0000021481,0.0000021507, +0.0000021521,0.0000021528,0.0000021529,0.0000021524,0.0000021518, +0.0000021512,0.0000021498,0.0000021470,0.0000021425,0.0000021368, +0.0000021317,0.0000021284,0.0000021246,0.0000021187,0.0000021151, +0.0000021152,0.0000021199,0.0000021326,0.0000021422,0.0000021488, +0.0000021559,0.0000021638,0.0000021705,0.0000021718,0.0000021677, +0.0000021625,0.0000021601,0.0000021590,0.0000021568,0.0000021521, +0.0000021437,0.0000021343,0.0000021284,0.0000021247,0.0000021207, +0.0000021155,0.0000021094,0.0000021043,0.0000021012,0.0000020996, +0.0000020992,0.0000021000,0.0000021019,0.0000021037,0.0000021046, +0.0000021044,0.0000021036,0.0000021021,0.0000020998,0.0000020963, +0.0000020916,0.0000020862,0.0000020810,0.0000020752,0.0000020685, +0.0000020622,0.0000020581,0.0000020576,0.0000020598,0.0000020628, +0.0000020655,0.0000020684,0.0000020707,0.0000020710,0.0000020693, +0.0000020661,0.0000020621,0.0000020568,0.0000020496,0.0000020414, +0.0000020334,0.0000020268,0.0000020238,0.0000020242,0.0000020273, +0.0000020298,0.0000020326,0.0000020395,0.0000020478,0.0000020517, +0.0000020501,0.0000020432,0.0000020344,0.0000020281,0.0000020272, +0.0000020205,0.0000020084,0.0000020036,0.0000020034,0.0000020051, +0.0000020112,0.0000020243,0.0000020340,0.0000020337,0.0000020314, +0.0000020344,0.0000020422,0.0000020513,0.0000020614,0.0000020714, +0.0000020824,0.0000020963,0.0000021065,0.0000021113,0.0000021301, +0.0000021430,0.0000021463,0.0000021580,0.0000021620,0.0000021620, +0.0000021658,0.0000021708,0.0000021681,0.0000021675,0.0000021778, +0.0000021844,0.0000021819,0.0000021787,0.0000021760,0.0000021805, +0.0000021861,0.0000021867,0.0000021911,0.0000022013,0.0000022058, +0.0000022077,0.0000022078,0.0000022047,0.0000022008,0.0000021990, +0.0000022032,0.0000022106,0.0000022169,0.0000022222,0.0000022264, +0.0000022294,0.0000022312,0.0000022312,0.0000022294,0.0000022242, +0.0000022163,0.0000022052,0.0000021931,0.0000021858,0.0000021862, +0.0000021889,0.0000021915,0.0000021926,0.0000021908,0.0000021862, +0.0000021782,0.0000021674,0.0000021571,0.0000021513,0.0000021498, +0.0000021496,0.0000021493,0.0000021484,0.0000021467,0.0000021452, +0.0000021437,0.0000021417,0.0000021409,0.0000021408,0.0000021409, +0.0000021408,0.0000021407,0.0000021416,0.0000021429,0.0000021429, +0.0000021415,0.0000021387,0.0000021333,0.0000021245,0.0000021130, +0.0000021015,0.0000020937,0.0000020881,0.0000020829,0.0000020798, +0.0000020785,0.0000020772,0.0000020767,0.0000020755,0.0000020743, +0.0000020716,0.0000020705,0.0000020701,0.0000020708,0.0000020714, +0.0000020704,0.0000020701,0.0000020726,0.0000020754,0.0000020775, +0.0000020787,0.0000020786,0.0000020776,0.0000020756,0.0000020738, +0.0000020725,0.0000020714,0.0000020715,0.0000020713,0.0000020727, +0.0000020755,0.0000020800,0.0000020857,0.0000020927,0.0000021003, +0.0000021065,0.0000021107,0.0000021136,0.0000021155,0.0000021174, +0.0000021193,0.0000021211,0.0000021232,0.0000021265,0.0000021300, +0.0000021332,0.0000021365,0.0000021397,0.0000021422,0.0000021442, +0.0000021454,0.0000021457,0.0000021456,0.0000021455,0.0000021448, +0.0000021436,0.0000021428,0.0000021420,0.0000021420,0.0000021423, +0.0000021431,0.0000021449,0.0000021464,0.0000021475,0.0000021481, +0.0000021479,0.0000021468,0.0000021447,0.0000021424,0.0000021414, +0.0000021427,0.0000021445,0.0000021459,0.0000021467,0.0000021466, +0.0000021460,0.0000021450,0.0000021438,0.0000021417,0.0000021394, +0.0000021375,0.0000021362,0.0000021351,0.0000021341,0.0000021343, +0.0000021344,0.0000021342,0.0000021345,0.0000021349,0.0000021349, +0.0000021343,0.0000021332,0.0000021326,0.0000021327,0.0000021324, +0.0000021326,0.0000021341,0.0000021356,0.0000021369,0.0000021380, +0.0000021392,0.0000021394,0.0000021383,0.0000021375,0.0000021363, +0.0000021347,0.0000021331,0.0000021318,0.0000021309,0.0000021310, +0.0000021327,0.0000021347,0.0000021371,0.0000021397,0.0000021418, +0.0000021439,0.0000021444,0.0000021448,0.0000021457,0.0000021484, +0.0000021537,0.0000021603,0.0000021670,0.0000021734,0.0000021794, +0.0000021844,0.0000021886,0.0000021920,0.0000021949,0.0000021973, +0.0000021994,0.0000022010,0.0000022019,0.0000022028,0.0000022036, +0.0000022033,0.0000022030,0.0000022034,0.0000022032,0.0000022031, +0.0000022023,0.0000022012,0.0000022010,0.0000022013,0.0000022010, +0.0000022008,0.0000022011,0.0000022013,0.0000022018,0.0000022017, +0.0000022016,0.0000022012,0.0000022000,0.0000021979,0.0000021955, +0.0000021927,0.0000021901,0.0000021886,0.0000021885,0.0000021898, +0.0000021921,0.0000021953,0.0000021987,0.0000022019,0.0000022044, +0.0000022059,0.0000022066,0.0000022065,0.0000022058,0.0000022060, +0.0000022062,0.0000022068,0.0000022071,0.0000022068,0.0000022053, +0.0000022026,0.0000021987,0.0000021938,0.0000021887,0.0000021841, +0.0000021808,0.0000021787,0.0000021774,0.0000021758,0.0000021743, +0.0000021730,0.0000021723,0.0000021722,0.0000021727,0.0000021739, +0.0000021752,0.0000021759,0.0000021755,0.0000021745,0.0000021724, +0.0000021696,0.0000021664,0.0000021632,0.0000021604,0.0000021582, +0.0000021567,0.0000021558,0.0000021558,0.0000021568,0.0000021591, +0.0000021622,0.0000021657,0.0000021695,0.0000021731,0.0000021764, +0.0000021791,0.0000021812,0.0000021824,0.0000021829,0.0000021826, +0.0000021818,0.0000021810,0.0000021805,0.0000021804,0.0000021806, +0.0000021803,0.0000021796,0.0000021781,0.0000021760,0.0000021739, +0.0000021724,0.0000021714,0.0000021706,0.0000021697,0.0000021680, +0.0000021652,0.0000021618,0.0000021585,0.0000021563,0.0000021547, +0.0000021533,0.0000021522,0.0000021516,0.0000021510,0.0000021499, +0.0000021487,0.0000021473,0.0000021457,0.0000021435,0.0000021407, +0.0000021378,0.0000021351,0.0000021327,0.0000021310,0.0000021302, +0.0000021299,0.0000021298,0.0000021298,0.0000021298,0.0000021297, +0.0000021297,0.0000021300,0.0000021304,0.0000021308,0.0000021312, +0.0000021314,0.0000021317,0.0000021317,0.0000021308,0.0000021291, +0.0000021267,0.0000021232,0.0000021188,0.0000021139,0.0000021088, +0.0000021033,0.0000020974,0.0000020914,0.0000020856,0.0000020808, +0.0000020774,0.0000020752,0.0000020738,0.0000020723,0.0000020702, +0.0000020687,0.0000020658,0.0000020643,0.0000020636,0.0000020642, +0.0000020652,0.0000020664,0.0000020675,0.0000020686,0.0000020695, +0.0000020704,0.0000020709,0.0000020710,0.0000020711,0.0000020713, +0.0000020716,0.0000020716,0.0000020714,0.0000020709,0.0000020701, +0.0000020690,0.0000020676,0.0000020661,0.0000020647,0.0000020636, +0.0000020631,0.0000020633,0.0000020640,0.0000020652,0.0000020669, +0.0000020690,0.0000020713,0.0000020731,0.0000020745,0.0000020754, +0.0000020754,0.0000020744,0.0000020732,0.0000020715,0.0000020695, +0.0000020678,0.0000020660,0.0000020639,0.0000020617,0.0000020598, +0.0000020583,0.0000020572,0.0000020567,0.0000020567,0.0000020569, +0.0000020575,0.0000020587,0.0000020609,0.0000020634,0.0000020654, +0.0000020663,0.0000020654,0.0000020622,0.0000020572,0.0000020512, +0.0000020447,0.0000020381,0.0000020314,0.0000020252,0.0000020208, +0.0000020185,0.0000020179,0.0000020181,0.0000020190,0.0000020197, +0.0000020198,0.0000020195,0.0000020190,0.0000020186,0.0000020185, +0.0000020186,0.0000020187,0.0000020185,0.0000020179,0.0000020168, +0.0000020152,0.0000020134,0.0000020122,0.0000020113,0.0000020106, +0.0000020094,0.0000020074,0.0000020046,0.0000020016,0.0000019987, +0.0000019965,0.0000019950,0.0000019937,0.0000019922,0.0000019907, +0.0000019901,0.0000019890,0.0000019849,0.0000019788,0.0000019736, +0.0000019698,0.0000019664,0.0000019636,0.0000019610,0.0000019590, +0.0000019571,0.0000019550,0.0000019530,0.0000019521,0.0000019513, +0.0000019505,0.0000019497,0.0000019485,0.0000019478,0.0000019473, +0.0000019468,0.0000019463,0.0000019456,0.0000019445,0.0000019440, +0.0000019444,0.0000019451,0.0000019468,0.0000019496,0.0000019522, +0.0000019534,0.0000019533,0.0000019524,0.0000019521,0.0000019536, +0.0000019575,0.0000019639,0.0000019713,0.0000019776,0.0000019833, +0.0000019879,0.0000019915,0.0000019938,0.0000019951,0.0000019945, +0.0000019918,0.0000019883,0.0000019851,0.0000019827,0.0000019807, +0.0000019778,0.0000019750,0.0000019739,0.0000019748,0.0000019756, +0.0000019737,0.0000019679,0.0000019618,0.0000019578,0.0000019558, +0.0000019546,0.0000019541,0.0000019555,0.0000019595,0.0000019652, +0.0000019705,0.0000019753,0.0000019795,0.0000019832,0.0000019865, +0.0000019892,0.0000019911,0.0000019929,0.0000019945,0.0000019961, +0.0000019982,0.0000020012,0.0000020049,0.0000020090,0.0000020137, +0.0000020190,0.0000020242,0.0000020290,0.0000020330,0.0000020362, +0.0000020390,0.0000020403,0.0000020411,0.0000020408,0.0000020398, +0.0000020387,0.0000020376,0.0000020366,0.0000020359,0.0000020348, +0.0000020335,0.0000020321,0.0000020306,0.0000020296,0.0000020285, +0.0000020284,0.0000020298,0.0000020325,0.0000020367,0.0000020420, +0.0000020458,0.0000020494,0.0000020516,0.0000020515,0.0000020502, +0.0000020482,0.0000020459,0.0000020436,0.0000020417,0.0000020398, +0.0000020386,0.0000020383,0.0000020390,0.0000020411,0.0000020443, +0.0000020477,0.0000020507,0.0000020535,0.0000020559,0.0000020583, +0.0000020604,0.0000020623,0.0000020641,0.0000020662,0.0000020684, +0.0000020703,0.0000020715,0.0000020722,0.0000020733,0.0000020757, +0.0000020799,0.0000020849,0.0000020895,0.0000020927,0.0000020949, +0.0000020965,0.0000020977,0.0000020985,0.0000020993,0.0000021005, +0.0000021016,0.0000021019,0.0000021018,0.0000021020,0.0000021026, +0.0000021013,0.0000020988,0.0000020975,0.0000020932,0.0000020888, +0.0000020851,0.0000020794,0.0000020754,0.0000020716,0.0000020700, +0.0000020699,0.0000020686,0.0000020674,0.0000020672,0.0000020700, +0.0000020766,0.0000020817,0.0000020859,0.0000020930,0.0000021000, +0.0000021025,0.0000021034,0.0000021051,0.0000021054,0.0000021035, +0.0000020991,0.0000020936,0.0000020877,0.0000020824,0.0000020783, +0.0000020752,0.0000020727,0.0000020719,0.0000020726,0.0000020742, +0.0000020764,0.0000020788,0.0000020799,0.0000020791,0.0000020762, +0.0000020727,0.0000020695,0.0000020666,0.0000020641,0.0000020621, +0.0000020604,0.0000020589,0.0000020574,0.0000020560,0.0000020554, +0.0000020555,0.0000020561,0.0000020569,0.0000020575,0.0000020578, +0.0000020578,0.0000020577,0.0000020574,0.0000020565,0.0000020554, +0.0000020541,0.0000020526,0.0000020515,0.0000020510,0.0000020509, +0.0000020513,0.0000020521,0.0000020535,0.0000020554,0.0000020576, +0.0000020603,0.0000020634,0.0000020670,0.0000020713,0.0000020760, +0.0000020808,0.0000020853,0.0000020896,0.0000020937,0.0000020975, +0.0000021010,0.0000021039,0.0000021060,0.0000021071,0.0000021076, +0.0000021078,0.0000021076,0.0000021070,0.0000021063,0.0000021059, +0.0000021055,0.0000021049,0.0000021041,0.0000021037,0.0000021047, +0.0000021080,0.0000021140,0.0000021232,0.0000021353,0.0000021492, +0.0000021635,0.0000021765,0.0000021870,0.0000021949,0.0000022002, +0.0000022034,0.0000022049,0.0000022051,0.0000022046,0.0000022035, +0.0000022018,0.0000021995,0.0000021963,0.0000021917,0.0000021844, +0.0000021738,0.0000021608,0.0000021473,0.0000021360,0.0000021282, +0.0000021237,0.0000021211,0.0000021193,0.0000021179,0.0000021163, +0.0000021143,0.0000021117,0.0000021083,0.0000021042,0.0000020993, +0.0000020934,0.0000020858,0.0000020759,0.0000020649,0.0000020517, +0.0000020376,0.0000020239,0.0000020121,0.0000020039,0.0000019995, +0.0000019968,0.0000019932,0.0000019872,0.0000019796,0.0000019719, +0.0000019650,0.0000019599,0.0000019565,0.0000019547,0.0000019536, +0.0000019522,0.0000019506,0.0000019499,0.0000019512,0.0000019546, +0.0000019584,0.0000019608,0.0000019611,0.0000019596,0.0000019579, +0.0000019574,0.0000019583,0.0000019599,0.0000019613,0.0000019622, +0.0000019629,0.0000019638,0.0000019652,0.0000019672,0.0000019700, +0.0000019740,0.0000019791,0.0000019845,0.0000019895,0.0000019936, +0.0000019984,0.0000020041,0.0000020092,0.0000020123,0.0000020133, +0.0000020140,0.0000020149,0.0000020163,0.0000020185,0.0000020197, +0.0000020191,0.0000020142,0.0000020051,0.0000019955,0.0000019913, +0.0000019899,0.0000019960,0.0000020050,0.0000020137,0.0000020197, +0.0000020220,0.0000020211,0.0000020187,0.0000020170,0.0000020177, +0.0000020226,0.0000020316,0.0000020427,0.0000020535,0.0000020616, +0.0000020657,0.0000020658,0.0000020650,0.0000020628,0.0000020600, +0.0000020563,0.0000020526,0.0000020496,0.0000020484,0.0000020482, +0.0000020498,0.0000020532,0.0000020576,0.0000020621,0.0000020658, +0.0000020677,0.0000020677,0.0000020666,0.0000020654,0.0000020643, +0.0000020641,0.0000020653,0.0000020684,0.0000020720,0.0000020751, +0.0000020774,0.0000020792,0.0000020808,0.0000020823,0.0000020831, +0.0000020833,0.0000020831,0.0000020827,0.0000020823,0.0000020815, +0.0000020800,0.0000020774,0.0000020735,0.0000020675,0.0000020597, +0.0000020505,0.0000020411,0.0000020333,0.0000020283,0.0000020262, +0.0000020262,0.0000020272,0.0000020286,0.0000020302,0.0000020319, +0.0000020336,0.0000020350,0.0000020356,0.0000020355,0.0000020347, +0.0000020326,0.0000020305,0.0000020281,0.0000020260,0.0000020250, +0.0000020247,0.0000020257,0.0000020286,0.0000020334,0.0000020391, +0.0000020446,0.0000020495,0.0000020526,0.0000020542,0.0000020546, +0.0000020531,0.0000020499,0.0000020458,0.0000020419,0.0000020381, +0.0000020341,0.0000020303,0.0000020270,0.0000020238,0.0000020209, +0.0000020189,0.0000020183,0.0000020189,0.0000020209,0.0000020235, +0.0000020266,0.0000020297,0.0000020329,0.0000020359,0.0000020380, +0.0000020389,0.0000020390,0.0000020382,0.0000020357,0.0000020319, +0.0000020278,0.0000020246,0.0000020222,0.0000020199,0.0000020170, +0.0000020133,0.0000020081,0.0000020014,0.0000019935,0.0000019851, +0.0000019764,0.0000019683,0.0000019611,0.0000019545,0.0000019481, +0.0000019420,0.0000019367,0.0000019331,0.0000019311,0.0000019300, +0.0000019299,0.0000019308,0.0000019321,0.0000019337,0.0000019355, +0.0000019371,0.0000019384,0.0000019390,0.0000019389,0.0000019382, +0.0000019375,0.0000019365,0.0000019351,0.0000019338,0.0000019329, +0.0000019322,0.0000019313,0.0000019298,0.0000019280,0.0000019266, +0.0000019256,0.0000019246,0.0000019233,0.0000019219,0.0000019207, +0.0000019198,0.0000019191,0.0000019190,0.0000019200,0.0000019221, +0.0000019247,0.0000019270,0.0000019287,0.0000019298,0.0000019299, +0.0000019294,0.0000019284,0.0000019272,0.0000019257,0.0000019243, +0.0000019233,0.0000019228,0.0000019226,0.0000019224,0.0000019217, +0.0000019207,0.0000019195,0.0000019181,0.0000019165,0.0000019144, +0.0000019122,0.0000019102,0.0000019087,0.0000019077,0.0000019075, +0.0000019083,0.0000019098,0.0000019117,0.0000019139,0.0000019162, +0.0000019188,0.0000019214,0.0000019241,0.0000019272,0.0000019312, +0.0000019357,0.0000019402,0.0000019439,0.0000019466,0.0000019478, +0.0000019477,0.0000019466,0.0000019456,0.0000019442,0.0000019432, +0.0000019427,0.0000019426,0.0000019432,0.0000019446,0.0000019470, +0.0000019500,0.0000019535,0.0000019567,0.0000019596,0.0000019622, +0.0000019645,0.0000019659,0.0000019664,0.0000019661,0.0000019653, +0.0000019642,0.0000019623,0.0000019600,0.0000019577,0.0000019557, +0.0000019544,0.0000019535,0.0000019532,0.0000019535,0.0000019542, +0.0000019552,0.0000019563,0.0000019574,0.0000019581,0.0000019583, +0.0000019580,0.0000019573,0.0000019562,0.0000019547,0.0000019530, +0.0000019514,0.0000019505,0.0000019503,0.0000019512,0.0000019528, +0.0000019546,0.0000019556,0.0000019555,0.0000019547,0.0000019530, +0.0000019498,0.0000019450,0.0000019392,0.0000019348,0.0000019336, +0.0000019356,0.0000019406,0.0000019456,0.0000019486,0.0000019509, +0.0000019548,0.0000019609,0.0000019654,0.0000019644,0.0000019595, +0.0000019573,0.0000019608,0.0000019735,0.0000019903,0.0000020044, +0.0000020179,0.0000020304,0.0000020341,0.0000020312,0.0000020305, +0.0000020366,0.0000020477,0.0000020540,0.0000020548,0.0000020529, +0.0000020511,0.0000020498,0.0000020490,0.0000020485,0.0000020480, +0.0000020473,0.0000020473,0.0000020484,0.0000020509,0.0000020535, +0.0000020548,0.0000020544,0.0000020524,0.0000020490,0.0000020426, +0.0000020333,0.0000020258,0.0000020243,0.0000020254,0.0000020269, +0.0000020281,0.0000020289,0.0000020288,0.0000020278,0.0000020263, +0.0000020248,0.0000020236,0.0000020232,0.0000020244,0.0000020278, +0.0000020305,0.0000020303,0.0000020275,0.0000020248,0.0000020242, +0.0000020257,0.0000020287,0.0000020324,0.0000020354,0.0000020374, +0.0000020384,0.0000020386,0.0000020382,0.0000020371,0.0000020359, +0.0000020344,0.0000020328,0.0000020315,0.0000020305,0.0000020293, +0.0000020275,0.0000020249,0.0000020214,0.0000020175,0.0000020140, +0.0000020116,0.0000020104,0.0000020099,0.0000020097,0.0000020094, +0.0000020090,0.0000020087,0.0000020082,0.0000020073,0.0000020059, +0.0000020041,0.0000020022,0.0000020005,0.0000019991,0.0000019981, +0.0000019975,0.0000019971,0.0000019968,0.0000019965,0.0000019962, +0.0000019959,0.0000019955,0.0000019952,0.0000019945,0.0000019934, +0.0000019918,0.0000019897,0.0000019872,0.0000019842,0.0000019808, +0.0000019768,0.0000019724,0.0000019677,0.0000019631,0.0000019590, +0.0000019555,0.0000019525,0.0000019503,0.0000019488,0.0000019481, +0.0000019479,0.0000019479,0.0000019482,0.0000019488,0.0000019496, +0.0000019505,0.0000019515,0.0000019527,0.0000019542,0.0000019562, +0.0000019587,0.0000019614,0.0000019643,0.0000019673,0.0000019703, +0.0000019732,0.0000019755,0.0000019772,0.0000019784,0.0000019789, +0.0000019790,0.0000019791,0.0000019786,0.0000019786,0.0000019792, +0.0000019800,0.0000019804,0.0000019802,0.0000019797,0.0000019789, +0.0000019781,0.0000019777,0.0000019775,0.0000019771,0.0000019748, +0.0000019702,0.0000019647,0.0000019605,0.0000019581,0.0000019562, +0.0000019528,0.0000019491,0.0000019466,0.0000019452,0.0000019444, +0.0000019441,0.0000019441,0.0000019445,0.0000019456,0.0000019478, +0.0000019444,0.0000019465,0.0000019500,0.0000019538,0.0000019575, +0.0000019610,0.0000019642,0.0000019676,0.0000019710,0.0000019746, +0.0000019781,0.0000019812,0.0000019830,0.0000019844,0.0000019847, +0.0000019848,0.0000019850,0.0000019846,0.0000019843,0.0000019843, +0.0000019846,0.0000019855,0.0000019867,0.0000019879,0.0000019888, +0.0000019903,0.0000019922,0.0000019943,0.0000019967,0.0000019987, +0.0000020004,0.0000020013,0.0000020011,0.0000019998,0.0000019986, +0.0000019967,0.0000019948,0.0000019931,0.0000019918,0.0000019910, +0.0000019913,0.0000019926,0.0000019949,0.0000019978,0.0000020012, +0.0000020048,0.0000020085,0.0000020120,0.0000020149,0.0000020172, +0.0000020188,0.0000020204,0.0000020215,0.0000020222,0.0000020227, +0.0000020225,0.0000020215,0.0000020202,0.0000020184,0.0000020163, +0.0000020136,0.0000020106,0.0000020078,0.0000020052,0.0000020017, +0.0000019976,0.0000019938,0.0000019906,0.0000019885,0.0000019874, +0.0000019870,0.0000019870,0.0000019868,0.0000019867,0.0000019869, +0.0000019875,0.0000019880,0.0000019883,0.0000019881,0.0000019876, +0.0000019871,0.0000019876,0.0000019890,0.0000019904,0.0000019915, +0.0000019925,0.0000019939,0.0000019954,0.0000019974,0.0000019998, +0.0000020021,0.0000020043,0.0000020064,0.0000020086,0.0000020106, +0.0000020125,0.0000020142,0.0000020155,0.0000020161,0.0000020159, +0.0000020156,0.0000020159,0.0000020162,0.0000020171,0.0000020187, +0.0000020209,0.0000020227,0.0000020243,0.0000020264,0.0000020280, +0.0000020287,0.0000020286,0.0000020277,0.0000020266,0.0000020253, +0.0000020240,0.0000020232,0.0000020231,0.0000020232,0.0000020233, +0.0000020232,0.0000020235,0.0000020240,0.0000020247,0.0000020255, +0.0000020263,0.0000020273,0.0000020288,0.0000020309,0.0000020333, +0.0000020361,0.0000020398,0.0000020440,0.0000020491,0.0000020542, +0.0000020585,0.0000020622,0.0000020657,0.0000020702,0.0000020753, +0.0000020800,0.0000020840,0.0000020871,0.0000020892,0.0000020892, +0.0000020862,0.0000020811,0.0000020763,0.0000020709,0.0000020658, +0.0000020619,0.0000020578,0.0000020531,0.0000020493,0.0000020467, +0.0000020457,0.0000020464,0.0000020484,0.0000020499,0.0000020514, +0.0000020535,0.0000020560,0.0000020591,0.0000020626,0.0000020662, +0.0000020693,0.0000020710,0.0000020714,0.0000020709,0.0000020697, +0.0000020680,0.0000020664,0.0000020660,0.0000020672,0.0000020696, +0.0000020730,0.0000020771,0.0000020815,0.0000020857,0.0000020890, +0.0000020915,0.0000020933,0.0000020941,0.0000020943,0.0000020939, +0.0000020932,0.0000020926,0.0000020924,0.0000020926,0.0000020934, +0.0000020949,0.0000020970,0.0000020996,0.0000021032,0.0000021075, +0.0000021117,0.0000021158,0.0000021194,0.0000021228,0.0000021256, +0.0000021277,0.0000021295,0.0000021309,0.0000021319,0.0000021323, +0.0000021321,0.0000021315,0.0000021305,0.0000021291,0.0000021273, +0.0000021254,0.0000021232,0.0000021208,0.0000021184,0.0000021157, +0.0000021134,0.0000021117,0.0000021105,0.0000021094,0.0000021087, +0.0000021083,0.0000021081,0.0000021082,0.0000021091,0.0000021105, +0.0000021120,0.0000021138,0.0000021160,0.0000021186,0.0000021217, +0.0000021250,0.0000021286,0.0000021323,0.0000021355,0.0000021383, +0.0000021404,0.0000021416,0.0000021421,0.0000021418,0.0000021407, +0.0000021390,0.0000021372,0.0000021354,0.0000021339,0.0000021328, +0.0000021321,0.0000021317,0.0000021315,0.0000021316,0.0000021320, +0.0000021325,0.0000021328,0.0000021331,0.0000021337,0.0000021345, +0.0000021357,0.0000021371,0.0000021386,0.0000021401,0.0000021413, +0.0000021422,0.0000021430,0.0000021443,0.0000021462,0.0000021482, +0.0000021494,0.0000021500,0.0000021501,0.0000021498,0.0000021494, +0.0000021487,0.0000021470,0.0000021437,0.0000021389,0.0000021333, +0.0000021284,0.0000021250,0.0000021205,0.0000021149,0.0000021126, +0.0000021126,0.0000021188,0.0000021324,0.0000021415,0.0000021489, +0.0000021576,0.0000021660,0.0000021719,0.0000021729,0.0000021698, +0.0000021657,0.0000021626,0.0000021588,0.0000021539,0.0000021460, +0.0000021355,0.0000021279,0.0000021234,0.0000021191,0.0000021134, +0.0000021068,0.0000021014,0.0000020983,0.0000020968,0.0000020961, +0.0000020960,0.0000020969,0.0000020986,0.0000021002,0.0000021008, +0.0000021004,0.0000020995,0.0000020982,0.0000020956,0.0000020916, +0.0000020868,0.0000020816,0.0000020760,0.0000020700,0.0000020633, +0.0000020569,0.0000020537,0.0000020540,0.0000020567,0.0000020601, +0.0000020630,0.0000020659,0.0000020674,0.0000020668,0.0000020647, +0.0000020617,0.0000020580,0.0000020523,0.0000020447,0.0000020364, +0.0000020287,0.0000020236,0.0000020214,0.0000020226,0.0000020266, +0.0000020302,0.0000020351,0.0000020431,0.0000020496,0.0000020512, +0.0000020482,0.0000020406,0.0000020325,0.0000020291,0.0000020273, +0.0000020167,0.0000020067,0.0000020038,0.0000020037,0.0000020066, +0.0000020170,0.0000020302,0.0000020336,0.0000020302,0.0000020297, +0.0000020353,0.0000020451,0.0000020572,0.0000020691,0.0000020789, +0.0000020904,0.0000021015,0.0000021069,0.0000021236,0.0000021395, +0.0000021433,0.0000021552,0.0000021630,0.0000021635,0.0000021655, +0.0000021709,0.0000021704,0.0000021688,0.0000021760,0.0000021850, +0.0000021847,0.0000021823,0.0000021787,0.0000021794,0.0000021867, +0.0000021891,0.0000021898,0.0000021970,0.0000022050,0.0000022079, +0.0000022090,0.0000022080,0.0000022043,0.0000021995,0.0000021976, +0.0000021998,0.0000022053,0.0000022124,0.0000022189,0.0000022234, +0.0000022265,0.0000022265,0.0000022242,0.0000022174,0.0000022079, +0.0000021965,0.0000021865,0.0000021818,0.0000021826,0.0000021867, +0.0000021898,0.0000021910,0.0000021896,0.0000021840,0.0000021739, +0.0000021626,0.0000021541,0.0000021512,0.0000021515,0.0000021526, +0.0000021531,0.0000021525,0.0000021503,0.0000021477,0.0000021462, +0.0000021440,0.0000021429,0.0000021424,0.0000021419,0.0000021413, +0.0000021412,0.0000021422,0.0000021436,0.0000021443,0.0000021442, +0.0000021429,0.0000021395,0.0000021335,0.0000021239,0.0000021121, +0.0000021023,0.0000020947,0.0000020888,0.0000020856,0.0000020836, +0.0000020810,0.0000020788,0.0000020769,0.0000020748,0.0000020722, +0.0000020710,0.0000020705,0.0000020707,0.0000020711,0.0000020705, +0.0000020703,0.0000020727,0.0000020755,0.0000020778,0.0000020791, +0.0000020798,0.0000020794,0.0000020784,0.0000020771,0.0000020760, +0.0000020748,0.0000020737,0.0000020723,0.0000020722,0.0000020727, +0.0000020733,0.0000020744,0.0000020773,0.0000020816,0.0000020863, +0.0000020911,0.0000020956,0.0000020998,0.0000021035,0.0000021062, +0.0000021079,0.0000021093,0.0000021116,0.0000021147,0.0000021181, +0.0000021219,0.0000021263,0.0000021303,0.0000021341,0.0000021374, +0.0000021399,0.0000021418,0.0000021433,0.0000021437,0.0000021435, +0.0000021426,0.0000021418,0.0000021417,0.0000021415,0.0000021421, +0.0000021433,0.0000021442,0.0000021449,0.0000021449,0.0000021439, +0.0000021421,0.0000021393,0.0000021370,0.0000021365,0.0000021378, +0.0000021395,0.0000021409,0.0000021414,0.0000021413,0.0000021408, +0.0000021397,0.0000021381,0.0000021364,0.0000021347,0.0000021332, +0.0000021319,0.0000021307,0.0000021302,0.0000021305,0.0000021307, +0.0000021308,0.0000021311,0.0000021315,0.0000021317,0.0000021315, +0.0000021305,0.0000021295,0.0000021289,0.0000021282,0.0000021277, +0.0000021284,0.0000021301,0.0000021320,0.0000021340,0.0000021362, +0.0000021374,0.0000021379,0.0000021381,0.0000021388,0.0000021383, +0.0000021370,0.0000021355,0.0000021334,0.0000021317,0.0000021310, +0.0000021300,0.0000021294,0.0000021299,0.0000021311,0.0000021322, +0.0000021330,0.0000021337,0.0000021345,0.0000021361,0.0000021392, +0.0000021433,0.0000021482,0.0000021546,0.0000021616,0.0000021681, +0.0000021740,0.0000021793,0.0000021834,0.0000021868,0.0000021895, +0.0000021917,0.0000021932,0.0000021946,0.0000021957,0.0000021958, +0.0000021961,0.0000021968,0.0000021966,0.0000021964,0.0000021966, +0.0000021964,0.0000021965,0.0000021969,0.0000021968,0.0000021964, +0.0000021962,0.0000021966,0.0000021971,0.0000021970,0.0000021971, +0.0000021971,0.0000021968,0.0000021960,0.0000021948,0.0000021932, +0.0000021920,0.0000021914,0.0000021920,0.0000021933,0.0000021953, +0.0000021978,0.0000022005,0.0000022032,0.0000022054,0.0000022067, +0.0000022068,0.0000022062,0.0000022059,0.0000022061,0.0000022065, +0.0000022071,0.0000022076,0.0000022081,0.0000022081,0.0000022067, +0.0000022036,0.0000021991,0.0000021940,0.0000021893,0.0000021855, +0.0000021822,0.0000021792,0.0000021766,0.0000021739,0.0000021716, +0.0000021702,0.0000021693,0.0000021693,0.0000021700,0.0000021714, +0.0000021728,0.0000021739,0.0000021744,0.0000021744,0.0000021737, +0.0000021719,0.0000021696,0.0000021670,0.0000021644,0.0000021620, +0.0000021600,0.0000021586,0.0000021581,0.0000021596,0.0000021611, +0.0000021637,0.0000021670,0.0000021709,0.0000021747,0.0000021780, +0.0000021806,0.0000021823,0.0000021830,0.0000021829,0.0000021820, +0.0000021811,0.0000021808,0.0000021810,0.0000021815,0.0000021817, +0.0000021815,0.0000021805,0.0000021791,0.0000021777,0.0000021767, +0.0000021763,0.0000021760,0.0000021755,0.0000021742,0.0000021721, +0.0000021691,0.0000021661,0.0000021638,0.0000021620,0.0000021607, +0.0000021602,0.0000021606,0.0000021613,0.0000021616,0.0000021618, +0.0000021615,0.0000021604,0.0000021583,0.0000021554,0.0000021521, +0.0000021489,0.0000021459,0.0000021443,0.0000021430,0.0000021418, +0.0000021406,0.0000021398,0.0000021390,0.0000021381,0.0000021373, +0.0000021368,0.0000021365,0.0000021362,0.0000021359,0.0000021357, +0.0000021359,0.0000021361,0.0000021357,0.0000021344,0.0000021324, +0.0000021292,0.0000021255,0.0000021212,0.0000021165,0.0000021113, +0.0000021060,0.0000021005,0.0000020951,0.0000020906,0.0000020870, +0.0000020841,0.0000020812,0.0000020779,0.0000020738,0.0000020693, +0.0000020653,0.0000020621,0.0000020616,0.0000020607,0.0000020615, +0.0000020629,0.0000020644,0.0000020663,0.0000020683,0.0000020697, +0.0000020705,0.0000020708,0.0000020709,0.0000020709,0.0000020707, +0.0000020704,0.0000020698,0.0000020688,0.0000020676,0.0000020662, +0.0000020647,0.0000020630,0.0000020613,0.0000020603,0.0000020599, +0.0000020602,0.0000020609,0.0000020622,0.0000020642,0.0000020667, +0.0000020692,0.0000020716,0.0000020737,0.0000020748,0.0000020749, +0.0000020746,0.0000020737,0.0000020724,0.0000020711,0.0000020698, +0.0000020676,0.0000020649,0.0000020621,0.0000020600,0.0000020584, +0.0000020572,0.0000020567,0.0000020566,0.0000020569,0.0000020581, +0.0000020601,0.0000020625,0.0000020645,0.0000020657,0.0000020654, +0.0000020631,0.0000020590,0.0000020532,0.0000020467,0.0000020396, +0.0000020322,0.0000020252,0.0000020203,0.0000020175,0.0000020166, +0.0000020173,0.0000020193,0.0000020216,0.0000020232,0.0000020243, +0.0000020248,0.0000020247,0.0000020241,0.0000020235,0.0000020233, +0.0000020230,0.0000020225,0.0000020219,0.0000020208,0.0000020191, +0.0000020172,0.0000020155,0.0000020141,0.0000020125,0.0000020103, +0.0000020074,0.0000020048,0.0000020024,0.0000020006,0.0000019991, +0.0000019975,0.0000019957,0.0000019939,0.0000019927,0.0000019914, +0.0000019879,0.0000019815,0.0000019752,0.0000019707,0.0000019669, +0.0000019638,0.0000019617,0.0000019605,0.0000019587,0.0000019557, +0.0000019521,0.0000019491,0.0000019468,0.0000019448,0.0000019432, +0.0000019420,0.0000019417,0.0000019420,0.0000019416,0.0000019409, +0.0000019406,0.0000019402,0.0000019400,0.0000019408,0.0000019423, +0.0000019448,0.0000019482,0.0000019514,0.0000019528,0.0000019523, +0.0000019508,0.0000019505,0.0000019525,0.0000019569,0.0000019639, +0.0000019719,0.0000019789,0.0000019849,0.0000019898,0.0000019931, +0.0000019947,0.0000019953,0.0000019941,0.0000019911,0.0000019878, +0.0000019845,0.0000019810,0.0000019780,0.0000019757,0.0000019747, +0.0000019751,0.0000019764,0.0000019761,0.0000019729,0.0000019670, +0.0000019610,0.0000019569,0.0000019546,0.0000019526,0.0000019509, +0.0000019505,0.0000019530,0.0000019584,0.0000019640,0.0000019686, +0.0000019724,0.0000019757,0.0000019787,0.0000019812,0.0000019831, +0.0000019848,0.0000019862,0.0000019874,0.0000019888,0.0000019908, +0.0000019936,0.0000019974,0.0000020021,0.0000020076,0.0000020136, +0.0000020196,0.0000020249,0.0000020296,0.0000020339,0.0000020378, +0.0000020411,0.0000020431,0.0000020445,0.0000020448,0.0000020446, +0.0000020441,0.0000020432,0.0000020419,0.0000020404,0.0000020387, +0.0000020368,0.0000020345,0.0000020315,0.0000020286,0.0000020270, +0.0000020269,0.0000020281,0.0000020318,0.0000020369,0.0000020428, +0.0000020484,0.0000020520,0.0000020537,0.0000020543,0.0000020535, +0.0000020518,0.0000020496,0.0000020471,0.0000020451,0.0000020439, +0.0000020440,0.0000020456,0.0000020487,0.0000020524,0.0000020562, +0.0000020597,0.0000020627,0.0000020654,0.0000020676,0.0000020694, +0.0000020712,0.0000020730,0.0000020744,0.0000020753,0.0000020760, +0.0000020772,0.0000020796,0.0000020829,0.0000020865,0.0000020894, +0.0000020914,0.0000020931,0.0000020947,0.0000020963,0.0000020978, +0.0000020991,0.0000021000,0.0000021009,0.0000021020,0.0000021027, +0.0000021029,0.0000021034,0.0000021036,0.0000021021,0.0000021002, +0.0000020988,0.0000020938,0.0000020896,0.0000020856,0.0000020804, +0.0000020761,0.0000020723,0.0000020717,0.0000020718,0.0000020711, +0.0000020702,0.0000020697,0.0000020718,0.0000020774,0.0000020823, +0.0000020868,0.0000020937,0.0000020996,0.0000021016,0.0000021024, +0.0000021039,0.0000021041,0.0000021020,0.0000020977,0.0000020930, +0.0000020881,0.0000020831,0.0000020780,0.0000020735,0.0000020700, +0.0000020675,0.0000020665,0.0000020672,0.0000020686,0.0000020692, +0.0000020684,0.0000020662,0.0000020641,0.0000020627,0.0000020617, +0.0000020607,0.0000020595,0.0000020582,0.0000020566,0.0000020548, +0.0000020532,0.0000020520,0.0000020514,0.0000020516,0.0000020523, +0.0000020530,0.0000020535,0.0000020534,0.0000020530,0.0000020524, +0.0000020515,0.0000020501,0.0000020483,0.0000020461,0.0000020438, +0.0000020415,0.0000020395,0.0000020381,0.0000020376,0.0000020380, +0.0000020390,0.0000020408,0.0000020430,0.0000020454,0.0000020483, +0.0000020516,0.0000020552,0.0000020593,0.0000020636,0.0000020678, +0.0000020720,0.0000020762,0.0000020804,0.0000020847,0.0000020888, +0.0000020926,0.0000020961,0.0000020992,0.0000021016,0.0000021030, +0.0000021035,0.0000021033,0.0000021030,0.0000021025,0.0000021019, +0.0000021014,0.0000021010,0.0000021010,0.0000021014,0.0000021025, +0.0000021054,0.0000021113,0.0000021205,0.0000021324,0.0000021459, +0.0000021591,0.0000021706,0.0000021799,0.0000021865,0.0000021907, +0.0000021933,0.0000021948,0.0000021953,0.0000021948,0.0000021929, +0.0000021893,0.0000021828,0.0000021726,0.0000021596,0.0000021461, +0.0000021345,0.0000021261,0.0000021205,0.0000021164,0.0000021131, +0.0000021107,0.0000021087,0.0000021067,0.0000021043,0.0000021012, +0.0000020973,0.0000020929,0.0000020880,0.0000020826,0.0000020764, +0.0000020685,0.0000020589,0.0000020477,0.0000020354,0.0000020228, +0.0000020113,0.0000020026,0.0000019977,0.0000019951,0.0000019920, +0.0000019868,0.0000019797,0.0000019718,0.0000019641,0.0000019576, +0.0000019533,0.0000019510,0.0000019500,0.0000019491,0.0000019480, +0.0000019473,0.0000019480,0.0000019509,0.0000019549,0.0000019579, +0.0000019588,0.0000019577,0.0000019558,0.0000019546,0.0000019550, +0.0000019565,0.0000019582,0.0000019599,0.0000019614,0.0000019626, +0.0000019640,0.0000019658,0.0000019679,0.0000019710,0.0000019757, +0.0000019816,0.0000019878,0.0000019927,0.0000019972,0.0000020024, +0.0000020080,0.0000020122,0.0000020143,0.0000020153,0.0000020158, +0.0000020168,0.0000020184,0.0000020197,0.0000020199,0.0000020173, +0.0000020093,0.0000019986,0.0000019895,0.0000019867,0.0000019875, +0.0000019933,0.0000020014,0.0000020087,0.0000020136,0.0000020155, +0.0000020146,0.0000020121,0.0000020102,0.0000020107,0.0000020156, +0.0000020250,0.0000020373,0.0000020494,0.0000020589,0.0000020640, +0.0000020647,0.0000020650,0.0000020631,0.0000020596,0.0000020549, +0.0000020506,0.0000020468,0.0000020448,0.0000020436,0.0000020446, +0.0000020469,0.0000020502,0.0000020536,0.0000020561,0.0000020580, +0.0000020595,0.0000020604,0.0000020609,0.0000020619,0.0000020642, +0.0000020671,0.0000020701,0.0000020725,0.0000020742,0.0000020755, +0.0000020769,0.0000020783,0.0000020794,0.0000020802,0.0000020805, +0.0000020803,0.0000020794,0.0000020771,0.0000020731,0.0000020670, +0.0000020585,0.0000020489,0.0000020393,0.0000020314,0.0000020263, +0.0000020239,0.0000020235,0.0000020243,0.0000020259,0.0000020279, +0.0000020300,0.0000020319,0.0000020340,0.0000020355,0.0000020362, +0.0000020362,0.0000020351,0.0000020331,0.0000020311,0.0000020283, +0.0000020253,0.0000020225,0.0000020193,0.0000020167,0.0000020154, +0.0000020161,0.0000020186,0.0000020223,0.0000020262,0.0000020295, +0.0000020316,0.0000020331,0.0000020327,0.0000020305,0.0000020275, +0.0000020241,0.0000020205,0.0000020169,0.0000020131,0.0000020097, +0.0000020061,0.0000020025,0.0000019998,0.0000019989,0.0000019993, +0.0000020015,0.0000020047,0.0000020080,0.0000020110,0.0000020141, +0.0000020174,0.0000020202,0.0000020221,0.0000020234,0.0000020237, +0.0000020228,0.0000020203,0.0000020166,0.0000020126,0.0000020096, +0.0000020073,0.0000020052,0.0000020028,0.0000019996,0.0000019951, +0.0000019894,0.0000019830,0.0000019763,0.0000019695,0.0000019630, +0.0000019568,0.0000019505,0.0000019442,0.0000019386,0.0000019344, +0.0000019312,0.0000019286,0.0000019269,0.0000019264,0.0000019265, +0.0000019268,0.0000019271,0.0000019276,0.0000019280,0.0000019280, +0.0000019273,0.0000019264,0.0000019253,0.0000019239,0.0000019223, +0.0000019209,0.0000019199,0.0000019192,0.0000019185,0.0000019173, +0.0000019158,0.0000019148,0.0000019142,0.0000019135,0.0000019127, +0.0000019118,0.0000019108,0.0000019097,0.0000019086,0.0000019080, +0.0000019082,0.0000019095,0.0000019115,0.0000019137,0.0000019157, +0.0000019175,0.0000019188,0.0000019195,0.0000019196,0.0000019192, +0.0000019184,0.0000019178,0.0000019174,0.0000019172,0.0000019174, +0.0000019175,0.0000019173,0.0000019166,0.0000019155,0.0000019143, +0.0000019129,0.0000019111,0.0000019094,0.0000019077,0.0000019061, +0.0000019046,0.0000019036,0.0000019031,0.0000019032,0.0000019037, +0.0000019046,0.0000019061,0.0000019082,0.0000019107,0.0000019135, +0.0000019167,0.0000019205,0.0000019251,0.0000019299,0.0000019347, +0.0000019390,0.0000019425,0.0000019447,0.0000019457,0.0000019457, +0.0000019449,0.0000019440,0.0000019427,0.0000019418,0.0000019413, +0.0000019409,0.0000019415,0.0000019431,0.0000019457,0.0000019488, +0.0000019524,0.0000019563,0.0000019598,0.0000019624,0.0000019640, +0.0000019649,0.0000019650,0.0000019645,0.0000019633,0.0000019615, +0.0000019597,0.0000019574,0.0000019553,0.0000019536,0.0000019525, +0.0000019521,0.0000019525,0.0000019536,0.0000019549,0.0000019561, +0.0000019571,0.0000019577,0.0000019578,0.0000019576,0.0000019572, +0.0000019564,0.0000019552,0.0000019538,0.0000019525,0.0000019516, +0.0000019514,0.0000019520,0.0000019532,0.0000019543,0.0000019551, +0.0000019553,0.0000019548,0.0000019529,0.0000019492,0.0000019437, +0.0000019377,0.0000019337,0.0000019334,0.0000019369,0.0000019424, +0.0000019467,0.0000019493,0.0000019521,0.0000019571,0.0000019633, +0.0000019652,0.0000019619,0.0000019578,0.0000019575,0.0000019649, +0.0000019797,0.0000019950,0.0000020077,0.0000020209,0.0000020312, +0.0000020330,0.0000020308,0.0000020302,0.0000020361,0.0000020461, +0.0000020530,0.0000020542,0.0000020528,0.0000020502,0.0000020484, +0.0000020473,0.0000020466,0.0000020457,0.0000020447,0.0000020446, +0.0000020459,0.0000020493,0.0000020532,0.0000020554,0.0000020553, +0.0000020529,0.0000020488,0.0000020431,0.0000020353,0.0000020283, +0.0000020262,0.0000020269,0.0000020278,0.0000020282,0.0000020283, +0.0000020277,0.0000020265,0.0000020251,0.0000020241,0.0000020237, +0.0000020251,0.0000020283,0.0000020315,0.0000020321,0.0000020299, +0.0000020269,0.0000020259,0.0000020267,0.0000020292,0.0000020326, +0.0000020361,0.0000020390,0.0000020409,0.0000020415,0.0000020414, +0.0000020404,0.0000020390,0.0000020372,0.0000020355,0.0000020339, +0.0000020327,0.0000020317,0.0000020303,0.0000020279,0.0000020245, +0.0000020204,0.0000020161,0.0000020124,0.0000020101,0.0000020093, +0.0000020090,0.0000020087,0.0000020087,0.0000020087,0.0000020086, +0.0000020081,0.0000020070,0.0000020055,0.0000020037,0.0000020019, +0.0000020001,0.0000019986,0.0000019973,0.0000019965,0.0000019959, +0.0000019955,0.0000019953,0.0000019952,0.0000019952,0.0000019950, +0.0000019946,0.0000019941,0.0000019934,0.0000019921,0.0000019902, +0.0000019876,0.0000019846,0.0000019811,0.0000019771,0.0000019728, +0.0000019683,0.0000019639,0.0000019597,0.0000019559,0.0000019527, +0.0000019502,0.0000019486,0.0000019476,0.0000019472,0.0000019471, +0.0000019472,0.0000019475,0.0000019478,0.0000019483,0.0000019486, +0.0000019491,0.0000019501,0.0000019516,0.0000019536,0.0000019562, +0.0000019592,0.0000019625,0.0000019660,0.0000019695,0.0000019729, +0.0000019758,0.0000019780,0.0000019796,0.0000019808,0.0000019816, +0.0000019822,0.0000019834,0.0000019842,0.0000019850,0.0000019854, +0.0000019852,0.0000019845,0.0000019834,0.0000019822,0.0000019811, +0.0000019804,0.0000019795,0.0000019768,0.0000019715,0.0000019648, +0.0000019603,0.0000019581,0.0000019561,0.0000019523,0.0000019481, +0.0000019451,0.0000019433,0.0000019424,0.0000019425,0.0000019430, +0.0000019435,0.0000019421,0.0000019429,0.0000019444,0.0000019468, +0.0000019497,0.0000019529,0.0000019562,0.0000019596,0.0000019632, +0.0000019665,0.0000019702,0.0000019740,0.0000019780,0.0000019816, +0.0000019843,0.0000019854,0.0000019864,0.0000019861,0.0000019851, +0.0000019835,0.0000019821,0.0000019801,0.0000019792,0.0000019790, +0.0000019796,0.0000019810,0.0000019831,0.0000019852,0.0000019872, +0.0000019889,0.0000019909,0.0000019932,0.0000019953,0.0000019968, +0.0000019974,0.0000019966,0.0000019952,0.0000019939,0.0000019926, +0.0000019915,0.0000019912,0.0000019915,0.0000019925,0.0000019944, +0.0000019965,0.0000019984,0.0000020005,0.0000020024,0.0000020039, +0.0000020046,0.0000020046,0.0000020047,0.0000020051,0.0000020053, +0.0000020055,0.0000020053,0.0000020045,0.0000020034,0.0000020019, +0.0000020000,0.0000019976,0.0000019951,0.0000019928,0.0000019906, +0.0000019877,0.0000019844,0.0000019813,0.0000019791,0.0000019779, +0.0000019773,0.0000019774,0.0000019775,0.0000019773,0.0000019771, +0.0000019769,0.0000019771,0.0000019776,0.0000019779,0.0000019777, +0.0000019773,0.0000019767,0.0000019770,0.0000019779,0.0000019785, +0.0000019793,0.0000019802,0.0000019817,0.0000019836,0.0000019860, +0.0000019885,0.0000019908,0.0000019932,0.0000019961,0.0000019991, +0.0000020018,0.0000020039,0.0000020058,0.0000020070,0.0000020077, +0.0000020078,0.0000020077,0.0000020075,0.0000020075,0.0000020078, +0.0000020088,0.0000020104,0.0000020120,0.0000020135,0.0000020157, +0.0000020179,0.0000020193,0.0000020198,0.0000020198,0.0000020192, +0.0000020184,0.0000020175,0.0000020168,0.0000020168,0.0000020170, +0.0000020169,0.0000020169,0.0000020172,0.0000020175,0.0000020180, +0.0000020188,0.0000020197,0.0000020209,0.0000020223,0.0000020237, +0.0000020255,0.0000020279,0.0000020314,0.0000020362,0.0000020429, +0.0000020495,0.0000020550,0.0000020597,0.0000020646,0.0000020697, +0.0000020744,0.0000020788,0.0000020825,0.0000020849,0.0000020865, +0.0000020866,0.0000020840,0.0000020793,0.0000020743,0.0000020686, +0.0000020634,0.0000020594,0.0000020550,0.0000020502,0.0000020462, +0.0000020434,0.0000020420,0.0000020423,0.0000020436,0.0000020449, +0.0000020464,0.0000020490,0.0000020523,0.0000020559,0.0000020597, +0.0000020634,0.0000020666,0.0000020687,0.0000020697,0.0000020697, +0.0000020690,0.0000020677,0.0000020664,0.0000020658,0.0000020660, +0.0000020669,0.0000020684,0.0000020707,0.0000020740,0.0000020778, +0.0000020818,0.0000020854,0.0000020885,0.0000020906,0.0000020916, +0.0000020919,0.0000020918,0.0000020914,0.0000020911,0.0000020913, +0.0000020919,0.0000020929,0.0000020944,0.0000020965,0.0000020996, +0.0000021033,0.0000021071,0.0000021110,0.0000021147,0.0000021182, +0.0000021214,0.0000021239,0.0000021260,0.0000021277,0.0000021286, +0.0000021291,0.0000021293,0.0000021290,0.0000021281,0.0000021269, +0.0000021256,0.0000021243,0.0000021228,0.0000021213,0.0000021197, +0.0000021177,0.0000021155,0.0000021133,0.0000021111,0.0000021094, +0.0000021081,0.0000021072,0.0000021063,0.0000021058,0.0000021062, +0.0000021072,0.0000021086,0.0000021104,0.0000021124,0.0000021146, +0.0000021168,0.0000021190,0.0000021210,0.0000021230,0.0000021248, +0.0000021267,0.0000021284,0.0000021299,0.0000021311,0.0000021318, +0.0000021318,0.0000021312,0.0000021300,0.0000021285,0.0000021270, +0.0000021256,0.0000021246,0.0000021239,0.0000021238,0.0000021242, +0.0000021250,0.0000021257,0.0000021267,0.0000021278,0.0000021292, +0.0000021310,0.0000021326,0.0000021341,0.0000021358,0.0000021377, +0.0000021390,0.0000021401,0.0000021411,0.0000021422,0.0000021436, +0.0000021452,0.0000021463,0.0000021468,0.0000021470,0.0000021469, +0.0000021465,0.0000021454,0.0000021434,0.0000021399,0.0000021349, +0.0000021292,0.0000021246,0.0000021209,0.0000021160,0.0000021120, +0.0000021111,0.0000021115,0.0000021198,0.0000021337,0.0000021424, +0.0000021512,0.0000021606,0.0000021684,0.0000021733,0.0000021738, +0.0000021709,0.0000021666,0.0000021614,0.0000021556,0.0000021483, +0.0000021377,0.0000021281,0.0000021222,0.0000021175,0.0000021114, +0.0000021046,0.0000020995,0.0000020964,0.0000020945,0.0000020931, +0.0000020923,0.0000020922,0.0000020929,0.0000020945,0.0000020962, +0.0000020967,0.0000020964,0.0000020958,0.0000020945,0.0000020915, +0.0000020874,0.0000020829,0.0000020774,0.0000020714,0.0000020649, +0.0000020578,0.0000020519,0.0000020500,0.0000020513,0.0000020549, +0.0000020583,0.0000020613,0.0000020636,0.0000020639,0.0000020625, +0.0000020603,0.0000020571,0.0000020531,0.0000020470,0.0000020399, +0.0000020329,0.0000020269,0.0000020221,0.0000020198,0.0000020219, +0.0000020266,0.0000020314,0.0000020382,0.0000020463,0.0000020512, +0.0000020516,0.0000020469,0.0000020388,0.0000020324,0.0000020311, +0.0000020255,0.0000020132,0.0000020054,0.0000020031,0.0000020039, +0.0000020103,0.0000020242,0.0000020327,0.0000020307,0.0000020271, +0.0000020295,0.0000020381,0.0000020518,0.0000020665,0.0000020764, +0.0000020850,0.0000020952,0.0000021019,0.0000021161,0.0000021347, +0.0000021404,0.0000021510,0.0000021622,0.0000021644,0.0000021653, +0.0000021703,0.0000021717,0.0000021700,0.0000021740,0.0000021844, +0.0000021868,0.0000021852,0.0000021823,0.0000021800,0.0000021852, +0.0000021904,0.0000021911,0.0000021934,0.0000022014,0.0000022076, +0.0000022091,0.0000022088,0.0000022067,0.0000022024,0.0000021986, +0.0000021964,0.0000021963,0.0000021997,0.0000022061,0.0000022120, +0.0000022166,0.0000022178,0.0000022162,0.0000022106,0.0000022018, +0.0000021916,0.0000021842,0.0000021803,0.0000021805,0.0000021846, +0.0000021881,0.0000021890,0.0000021871,0.0000021812,0.0000021711, +0.0000021603,0.0000021546,0.0000021538,0.0000021547,0.0000021565, +0.0000021578,0.0000021577,0.0000021558,0.0000021522,0.0000021494, +0.0000021474,0.0000021461,0.0000021453,0.0000021444,0.0000021432, +0.0000021430,0.0000021435,0.0000021445,0.0000021455,0.0000021461, +0.0000021453,0.0000021426,0.0000021385,0.0000021317,0.0000021224, +0.0000021132,0.0000021041,0.0000020966,0.0000020922,0.0000020900, +0.0000020870,0.0000020838,0.0000020811,0.0000020787,0.0000020764, +0.0000020748,0.0000020744,0.0000020744,0.0000020746,0.0000020744, +0.0000020746,0.0000020759,0.0000020773,0.0000020789,0.0000020798, +0.0000020799,0.0000020794,0.0000020787,0.0000020780,0.0000020774, +0.0000020771,0.0000020766,0.0000020758,0.0000020757,0.0000020751, +0.0000020738,0.0000020732,0.0000020738,0.0000020735,0.0000020737, +0.0000020744,0.0000020761,0.0000020790,0.0000020824,0.0000020860, +0.0000020895,0.0000020929,0.0000020970,0.0000021011,0.0000021051, +0.0000021084,0.0000021118,0.0000021147,0.0000021174,0.0000021200, +0.0000021228,0.0000021254,0.0000021276,0.0000021294,0.0000021308, +0.0000021321,0.0000021331,0.0000021340,0.0000021347,0.0000021360, +0.0000021382,0.0000021400,0.0000021411,0.0000021414,0.0000021406, +0.0000021388,0.0000021362,0.0000021347,0.0000021345,0.0000021355, +0.0000021371,0.0000021386,0.0000021395,0.0000021396,0.0000021391, +0.0000021381,0.0000021367,0.0000021356,0.0000021342,0.0000021330, +0.0000021320,0.0000021310,0.0000021305,0.0000021305,0.0000021310, +0.0000021315,0.0000021317,0.0000021323,0.0000021326,0.0000021325, +0.0000021316,0.0000021303,0.0000021291,0.0000021279,0.0000021266, +0.0000021260,0.0000021270,0.0000021284,0.0000021301,0.0000021320, +0.0000021334,0.0000021339,0.0000021344,0.0000021359,0.0000021369, +0.0000021375,0.0000021373,0.0000021371,0.0000021360,0.0000021344, +0.0000021325,0.0000021303,0.0000021287,0.0000021271,0.0000021254, +0.0000021243,0.0000021239,0.0000021246,0.0000021262,0.0000021290, +0.0000021324,0.0000021359,0.0000021402,0.0000021447,0.0000021491, +0.0000021536,0.0000021581,0.0000021623,0.0000021661,0.0000021696, +0.0000021729,0.0000021760,0.0000021786,0.0000021808,0.0000021822, +0.0000021832,0.0000021846,0.0000021854,0.0000021860,0.0000021871, +0.0000021879,0.0000021887,0.0000021901,0.0000021913,0.0000021916, +0.0000021918,0.0000021925,0.0000021933,0.0000021937,0.0000021936, +0.0000021931,0.0000021925,0.0000021917,0.0000021914,0.0000021906, +0.0000021899,0.0000021902,0.0000021909,0.0000021924,0.0000021940, +0.0000021956,0.0000021974,0.0000021994,0.0000022011,0.0000022023, +0.0000022026,0.0000022026,0.0000022035,0.0000022044,0.0000022051, +0.0000022060,0.0000022072,0.0000022086,0.0000022097,0.0000022099, +0.0000022085,0.0000022051,0.0000022007,0.0000021965,0.0000021922, +0.0000021879,0.0000021840,0.0000021804,0.0000021769,0.0000021738, +0.0000021714,0.0000021696,0.0000021686,0.0000021681,0.0000021686, +0.0000021696,0.0000021711,0.0000021729,0.0000021745,0.0000021749, +0.0000021748,0.0000021741,0.0000021730,0.0000021715,0.0000021697, +0.0000021676,0.0000021657,0.0000021645,0.0000021642,0.0000021647, +0.0000021658,0.0000021684,0.0000021716,0.0000021751,0.0000021778, +0.0000021803,0.0000021819,0.0000021829,0.0000021831,0.0000021825, +0.0000021820,0.0000021819,0.0000021821,0.0000021827,0.0000021831, +0.0000021831,0.0000021827,0.0000021817,0.0000021804,0.0000021798, +0.0000021799,0.0000021802,0.0000021801,0.0000021796,0.0000021781, +0.0000021756,0.0000021726,0.0000021698,0.0000021676,0.0000021662, +0.0000021661,0.0000021672,0.0000021690,0.0000021708,0.0000021726, +0.0000021736,0.0000021737,0.0000021726,0.0000021704,0.0000021675, +0.0000021643,0.0000021618,0.0000021601,0.0000021582,0.0000021560, +0.0000021541,0.0000021524,0.0000021507,0.0000021489,0.0000021472, +0.0000021456,0.0000021440,0.0000021424,0.0000021409,0.0000021395, +0.0000021386,0.0000021381,0.0000021371,0.0000021355,0.0000021332, +0.0000021303,0.0000021268,0.0000021229,0.0000021188,0.0000021146, +0.0000021105,0.0000021065,0.0000021030,0.0000020999,0.0000020974, +0.0000020951,0.0000020924,0.0000020886,0.0000020836,0.0000020777, +0.0000020719,0.0000020674,0.0000020647,0.0000020636,0.0000020634, +0.0000020636,0.0000020648,0.0000020669,0.0000020675,0.0000020685, +0.0000020694,0.0000020695,0.0000020693,0.0000020689,0.0000020684, +0.0000020676,0.0000020665,0.0000020649,0.0000020631,0.0000020613, +0.0000020596,0.0000020576,0.0000020558,0.0000020544,0.0000020536, +0.0000020535,0.0000020540,0.0000020551,0.0000020571,0.0000020594, +0.0000020620,0.0000020645,0.0000020667,0.0000020683,0.0000020692, +0.0000020694,0.0000020691,0.0000020689,0.0000020680,0.0000020663, +0.0000020638,0.0000020608,0.0000020580,0.0000020558,0.0000020547, +0.0000020541,0.0000020539,0.0000020540,0.0000020551,0.0000020569, +0.0000020591,0.0000020611,0.0000020628,0.0000020637,0.0000020629, +0.0000020596,0.0000020550,0.0000020490,0.0000020419,0.0000020340, +0.0000020260,0.0000020199,0.0000020159,0.0000020142,0.0000020148, +0.0000020171,0.0000020204,0.0000020228,0.0000020251,0.0000020264, +0.0000020275,0.0000020272,0.0000020267,0.0000020260,0.0000020249, +0.0000020239,0.0000020230,0.0000020227,0.0000020221,0.0000020211, +0.0000020196,0.0000020181,0.0000020164,0.0000020143,0.0000020120, +0.0000020098,0.0000020076,0.0000020059,0.0000020043,0.0000020025, +0.0000020006,0.0000019985,0.0000019965,0.0000019949,0.0000019922, +0.0000019868,0.0000019797,0.0000019734,0.0000019687,0.0000019650, +0.0000019631,0.0000019628,0.0000019618,0.0000019590,0.0000019546, +0.0000019496,0.0000019455,0.0000019413,0.0000019380,0.0000019357, +0.0000019350,0.0000019356,0.0000019356,0.0000019350,0.0000019349, +0.0000019349,0.0000019353,0.0000019365,0.0000019386,0.0000019417, +0.0000019454,0.0000019487,0.0000019505,0.0000019501,0.0000019488, +0.0000019486,0.0000019510,0.0000019563,0.0000019640,0.0000019722, +0.0000019793,0.0000019854,0.0000019902,0.0000019930,0.0000019945, +0.0000019945,0.0000019927,0.0000019898,0.0000019869,0.0000019831, +0.0000019786,0.0000019755,0.0000019746,0.0000019750,0.0000019766, +0.0000019769,0.0000019755,0.0000019717,0.0000019665,0.0000019617, +0.0000019579,0.0000019548,0.0000019523,0.0000019502,0.0000019485, +0.0000019491,0.0000019530,0.0000019585,0.0000019636,0.0000019679, +0.0000019713,0.0000019740,0.0000019762,0.0000019781,0.0000019796, +0.0000019808,0.0000019818,0.0000019825,0.0000019835,0.0000019850, +0.0000019875,0.0000019910,0.0000019958,0.0000020016,0.0000020081, +0.0000020142,0.0000020198,0.0000020249,0.0000020300,0.0000020349, +0.0000020394,0.0000020431,0.0000020459,0.0000020471,0.0000020482, +0.0000020485,0.0000020480,0.0000020469,0.0000020455,0.0000020438, +0.0000020419,0.0000020393,0.0000020360,0.0000020326,0.0000020293, +0.0000020280,0.0000020275,0.0000020291,0.0000020327,0.0000020375, +0.0000020425,0.0000020473,0.0000020518,0.0000020538,0.0000020553, +0.0000020558,0.0000020550,0.0000020539,0.0000020529,0.0000020524, +0.0000020527,0.0000020544,0.0000020572,0.0000020605,0.0000020638, +0.0000020670,0.0000020698,0.0000020721,0.0000020739,0.0000020756, +0.0000020772,0.0000020786,0.0000020802,0.0000020821,0.0000020842, +0.0000020863,0.0000020878,0.0000020888,0.0000020899,0.0000020912, +0.0000020929,0.0000020953,0.0000020980,0.0000021003,0.0000021019, +0.0000021023,0.0000021023,0.0000021028,0.0000021035,0.0000021037, +0.0000021042,0.0000021042,0.0000021025,0.0000021014,0.0000020995, +0.0000020939,0.0000020900,0.0000020857,0.0000020811,0.0000020767, +0.0000020733,0.0000020733,0.0000020738,0.0000020734,0.0000020727, +0.0000020719,0.0000020734,0.0000020783,0.0000020831,0.0000020878, +0.0000020942,0.0000020996,0.0000021016,0.0000021025,0.0000021035, +0.0000021036,0.0000021014,0.0000020978,0.0000020939,0.0000020891, +0.0000020834,0.0000020773,0.0000020720,0.0000020673,0.0000020627, +0.0000020603,0.0000020604,0.0000020607,0.0000020595,0.0000020574, +0.0000020560,0.0000020560,0.0000020570,0.0000020577,0.0000020576, +0.0000020569,0.0000020556,0.0000020541,0.0000020526,0.0000020511, +0.0000020497,0.0000020491,0.0000020492,0.0000020497,0.0000020504, +0.0000020510,0.0000020512,0.0000020510,0.0000020505,0.0000020495, +0.0000020481,0.0000020462,0.0000020438,0.0000020412,0.0000020383, +0.0000020350,0.0000020326,0.0000020311,0.0000020304,0.0000020305, +0.0000020313,0.0000020328,0.0000020347,0.0000020370,0.0000020397, +0.0000020424,0.0000020454,0.0000020489,0.0000020525,0.0000020561, +0.0000020596,0.0000020631,0.0000020667,0.0000020703,0.0000020743, +0.0000020790,0.0000020842,0.0000020891,0.0000020933,0.0000020964, +0.0000020984,0.0000020990,0.0000020987,0.0000020981,0.0000020976, +0.0000020975,0.0000020976,0.0000020978,0.0000020978,0.0000020980, +0.0000020991,0.0000021019,0.0000021077,0.0000021166,0.0000021277, +0.0000021398,0.0000021517,0.0000021617,0.0000021692,0.0000021746, +0.0000021780,0.0000021798,0.0000021799,0.0000021785,0.0000021746, +0.0000021674,0.0000021570,0.0000021453,0.0000021345,0.0000021261, +0.0000021197,0.0000021143,0.0000021092,0.0000021049,0.0000021019, +0.0000020996,0.0000020970,0.0000020940,0.0000020904,0.0000020865, +0.0000020824,0.0000020783,0.0000020738,0.0000020685,0.0000020620, +0.0000020541,0.0000020445,0.0000020336,0.0000020220,0.0000020108, +0.0000020018,0.0000019964,0.0000019935,0.0000019908,0.0000019863, +0.0000019797,0.0000019719,0.0000019636,0.0000019560,0.0000019507, +0.0000019480,0.0000019469,0.0000019466,0.0000019461,0.0000019458, +0.0000019464,0.0000019487,0.0000019521,0.0000019553,0.0000019566, +0.0000019558,0.0000019539,0.0000019523,0.0000019521,0.0000019535, +0.0000019557,0.0000019579,0.0000019599,0.0000019616,0.0000019631, +0.0000019645,0.0000019660,0.0000019684,0.0000019725,0.0000019787, +0.0000019862,0.0000019921,0.0000019964,0.0000020010,0.0000020067, +0.0000020121,0.0000020153,0.0000020162,0.0000020167,0.0000020172, +0.0000020181,0.0000020193,0.0000020203,0.0000020187,0.0000020129, +0.0000020028,0.0000019922,0.0000019844,0.0000019823,0.0000019843, +0.0000019897,0.0000019968,0.0000020030,0.0000020070,0.0000020084, +0.0000020074,0.0000020047,0.0000020030,0.0000020040,0.0000020094, +0.0000020197,0.0000020330,0.0000020461,0.0000020565,0.0000020626, +0.0000020648,0.0000020640,0.0000020620,0.0000020579,0.0000020532, +0.0000020482,0.0000020441,0.0000020418,0.0000020406,0.0000020404, +0.0000020413,0.0000020425,0.0000020447,0.0000020476,0.0000020505, +0.0000020530,0.0000020554,0.0000020581,0.0000020610,0.0000020642, +0.0000020672,0.0000020695,0.0000020711,0.0000020724,0.0000020737, +0.0000020750,0.0000020758,0.0000020758,0.0000020748,0.0000020725, +0.0000020685,0.0000020628,0.0000020549,0.0000020456,0.0000020366, +0.0000020294,0.0000020247,0.0000020224,0.0000020221,0.0000020233, +0.0000020249,0.0000020271,0.0000020294,0.0000020314,0.0000020327, +0.0000020338,0.0000020343,0.0000020342,0.0000020337,0.0000020328, +0.0000020317,0.0000020303,0.0000020284,0.0000020261,0.0000020229, +0.0000020197,0.0000020159,0.0000020126,0.0000020099,0.0000020085, +0.0000020086,0.0000020098,0.0000020114,0.0000020127,0.0000020136, +0.0000020131,0.0000020113,0.0000020092,0.0000020068,0.0000020042, +0.0000020016,0.0000019992,0.0000019969,0.0000019941,0.0000019910, +0.0000019888,0.0000019879,0.0000019882,0.0000019904,0.0000019939, +0.0000019974,0.0000020003,0.0000020031,0.0000020057,0.0000020078, +0.0000020092,0.0000020096,0.0000020089,0.0000020074,0.0000020050, +0.0000020015,0.0000019975,0.0000019938,0.0000019913,0.0000019900, +0.0000019891,0.0000019881,0.0000019860,0.0000019828,0.0000019791, +0.0000019746,0.0000019694,0.0000019637,0.0000019576,0.0000019513, +0.0000019451,0.0000019395,0.0000019351,0.0000019316,0.0000019284, +0.0000019260,0.0000019245,0.0000019236,0.0000019230,0.0000019224, +0.0000019216,0.0000019207,0.0000019199,0.0000019191,0.0000019181, +0.0000019166,0.0000019149,0.0000019132,0.0000019115,0.0000019097, +0.0000019080,0.0000019068,0.0000019057,0.0000019049,0.0000019047, +0.0000019049,0.0000019054,0.0000019059,0.0000019061,0.0000019059, +0.0000019051,0.0000019037,0.0000019025,0.0000019022,0.0000019027, +0.0000019035,0.0000019043,0.0000019052,0.0000019062,0.0000019072, +0.0000019079,0.0000019080,0.0000019078,0.0000019072,0.0000019068, +0.0000019069,0.0000019071,0.0000019075,0.0000019078,0.0000019080, +0.0000019077,0.0000019071,0.0000019063,0.0000019053,0.0000019043, +0.0000019033,0.0000019025,0.0000019017,0.0000019009,0.0000019005, +0.0000019002,0.0000019000,0.0000018997,0.0000018996,0.0000018999, +0.0000019007,0.0000019021,0.0000019042,0.0000019072,0.0000019109, +0.0000019150,0.0000019191,0.0000019234,0.0000019280,0.0000019326, +0.0000019367,0.0000019399,0.0000019420,0.0000019431,0.0000019433, +0.0000019427,0.0000019420,0.0000019413,0.0000019402,0.0000019395, +0.0000019391,0.0000019399,0.0000019416,0.0000019446,0.0000019487, +0.0000019528,0.0000019562,0.0000019589,0.0000019606,0.0000019615, +0.0000019617,0.0000019615,0.0000019607,0.0000019593,0.0000019575, +0.0000019556,0.0000019536,0.0000019519,0.0000019509,0.0000019509, +0.0000019517,0.0000019529,0.0000019542,0.0000019554,0.0000019563, +0.0000019569,0.0000019572,0.0000019573,0.0000019571,0.0000019566, +0.0000019558,0.0000019545,0.0000019532,0.0000019523,0.0000019519, +0.0000019521,0.0000019528,0.0000019537,0.0000019546,0.0000019549, +0.0000019545,0.0000019525,0.0000019483,0.0000019420,0.0000019357, +0.0000019327,0.0000019338,0.0000019386,0.0000019439,0.0000019475, +0.0000019502,0.0000019539,0.0000019596,0.0000019644,0.0000019639, +0.0000019585,0.0000019555,0.0000019583,0.0000019688,0.0000019841, +0.0000019979,0.0000020099,0.0000020226,0.0000020313,0.0000020319, +0.0000020298,0.0000020296,0.0000020350,0.0000020441,0.0000020514, +0.0000020531,0.0000020521,0.0000020498,0.0000020475,0.0000020461, +0.0000020448,0.0000020436,0.0000020423,0.0000020422,0.0000020437, +0.0000020477,0.0000020526,0.0000020555,0.0000020558,0.0000020532, +0.0000020492,0.0000020443,0.0000020378,0.0000020309,0.0000020278, +0.0000020278,0.0000020282,0.0000020281,0.0000020277,0.0000020268, +0.0000020257,0.0000020248,0.0000020246,0.0000020259,0.0000020290, +0.0000020324,0.0000020339,0.0000020328,0.0000020300,0.0000020281, +0.0000020283,0.0000020303,0.0000020333,0.0000020368,0.0000020399, +0.0000020422,0.0000020435,0.0000020438,0.0000020434,0.0000020424, +0.0000020409,0.0000020392,0.0000020376,0.0000020366,0.0000020357, +0.0000020343,0.0000020319,0.0000020287,0.0000020247,0.0000020204, +0.0000020163,0.0000020134,0.0000020118,0.0000020109,0.0000020106, +0.0000020108,0.0000020111,0.0000020111,0.0000020106,0.0000020097, +0.0000020083,0.0000020066,0.0000020044,0.0000020022,0.0000020001, +0.0000019983,0.0000019969,0.0000019959,0.0000019953,0.0000019950, +0.0000019949,0.0000019949,0.0000019948,0.0000019946,0.0000019943, +0.0000019938,0.0000019931,0.0000019917,0.0000019897,0.0000019872, +0.0000019844,0.0000019812,0.0000019778,0.0000019740,0.0000019700, +0.0000019659,0.0000019616,0.0000019576,0.0000019539,0.0000019510, +0.0000019489,0.0000019475,0.0000019469,0.0000019467,0.0000019465, +0.0000019464,0.0000019466,0.0000019469,0.0000019473,0.0000019479, +0.0000019488,0.0000019500,0.0000019517,0.0000019536,0.0000019559, +0.0000019585,0.0000019618,0.0000019655,0.0000019693,0.0000019729, +0.0000019762,0.0000019792,0.0000019818,0.0000019839,0.0000019853, +0.0000019863,0.0000019872,0.0000019879,0.0000019883,0.0000019878, +0.0000019866,0.0000019853,0.0000019839,0.0000019828,0.0000019818, +0.0000019804,0.0000019775,0.0000019719,0.0000019649,0.0000019598, +0.0000019571,0.0000019545,0.0000019502,0.0000019460,0.0000019434, +0.0000019421,0.0000019417,0.0000019418,0.0000019415,0.0000019415, +0.0000019420,0.0000019430,0.0000019443,0.0000019459,0.0000019482, +0.0000019512,0.0000019547,0.0000019585,0.0000019622,0.0000019656, +0.0000019689,0.0000019723,0.0000019759,0.0000019796,0.0000019828, +0.0000019849,0.0000019854,0.0000019853,0.0000019840,0.0000019814, +0.0000019785,0.0000019761,0.0000019738,0.0000019731,0.0000019738, +0.0000019759,0.0000019786,0.0000019813,0.0000019835,0.0000019857, +0.0000019875,0.0000019892,0.0000019907,0.0000019919,0.0000019925, +0.0000019926,0.0000019926,0.0000019921,0.0000019922,0.0000019925, +0.0000019929,0.0000019939,0.0000019954,0.0000019966,0.0000019978, +0.0000019985,0.0000019984,0.0000019977,0.0000019964,0.0000019955, +0.0000019951,0.0000019947,0.0000019945,0.0000019940,0.0000019930, +0.0000019917,0.0000019902,0.0000019883,0.0000019860,0.0000019834, +0.0000019807,0.0000019781,0.0000019754,0.0000019725,0.0000019701, +0.0000019685,0.0000019681,0.0000019684,0.0000019688,0.0000019691, +0.0000019693,0.0000019693,0.0000019692,0.0000019695,0.0000019702, +0.0000019708,0.0000019707,0.0000019700,0.0000019692,0.0000019690, +0.0000019693,0.0000019691,0.0000019693,0.0000019698,0.0000019712, +0.0000019734,0.0000019761,0.0000019789,0.0000019814,0.0000019842, +0.0000019873,0.0000019902,0.0000019929,0.0000019955,0.0000019972, +0.0000019980,0.0000019984,0.0000019986,0.0000019982,0.0000019976, +0.0000019971,0.0000019974,0.0000019986,0.0000020006,0.0000020030, +0.0000020053,0.0000020075,0.0000020094,0.0000020104,0.0000020108, +0.0000020110,0.0000020107,0.0000020101,0.0000020094,0.0000020088, +0.0000020086,0.0000020083,0.0000020080,0.0000020078,0.0000020080, +0.0000020080,0.0000020081,0.0000020087,0.0000020101,0.0000020126, +0.0000020155,0.0000020182,0.0000020206,0.0000020225,0.0000020249, +0.0000020288,0.0000020356,0.0000020433,0.0000020505,0.0000020570, +0.0000020633,0.0000020688,0.0000020732,0.0000020775,0.0000020808, +0.0000020826,0.0000020836,0.0000020836,0.0000020811,0.0000020768, +0.0000020715,0.0000020656,0.0000020606,0.0000020564,0.0000020520, +0.0000020472,0.0000020433,0.0000020405,0.0000020387,0.0000020383, +0.0000020391,0.0000020404,0.0000020424,0.0000020457,0.0000020495, +0.0000020532,0.0000020571,0.0000020609,0.0000020643,0.0000020667, +0.0000020680,0.0000020684,0.0000020681,0.0000020673,0.0000020665, +0.0000020661,0.0000020660,0.0000020661,0.0000020663,0.0000020670, +0.0000020686,0.0000020709,0.0000020740,0.0000020777,0.0000020813, +0.0000020842,0.0000020863,0.0000020876,0.0000020884,0.0000020889, +0.0000020894,0.0000020900,0.0000020906,0.0000020917,0.0000020928, +0.0000020945,0.0000020970,0.0000021000,0.0000021031,0.0000021065, +0.0000021098,0.0000021129,0.0000021157,0.0000021183,0.0000021206, +0.0000021227,0.0000021241,0.0000021252,0.0000021258,0.0000021257, +0.0000021249,0.0000021238,0.0000021227,0.0000021219,0.0000021209, +0.0000021198,0.0000021187,0.0000021173,0.0000021159,0.0000021146, +0.0000021130,0.0000021114,0.0000021099,0.0000021083,0.0000021067, +0.0000021057,0.0000021055,0.0000021058,0.0000021068,0.0000021083, +0.0000021101,0.0000021122,0.0000021146,0.0000021168,0.0000021184, +0.0000021195,0.0000021203,0.0000021209,0.0000021214,0.0000021218, +0.0000021220,0.0000021221,0.0000021220,0.0000021215,0.0000021207, +0.0000021198,0.0000021188,0.0000021177,0.0000021171,0.0000021168, +0.0000021172,0.0000021179,0.0000021186,0.0000021193,0.0000021200, +0.0000021212,0.0000021228,0.0000021251,0.0000021274,0.0000021296, +0.0000021319,0.0000021341,0.0000021358,0.0000021371,0.0000021383, +0.0000021393,0.0000021405,0.0000021420,0.0000021430,0.0000021436, +0.0000021438,0.0000021436,0.0000021431,0.0000021417,0.0000021392, +0.0000021354,0.0000021303,0.0000021248,0.0000021204,0.0000021165, +0.0000021129,0.0000021108,0.0000021103,0.0000021119,0.0000021227, +0.0000021357,0.0000021440,0.0000021542,0.0000021638,0.0000021708, +0.0000021743,0.0000021742,0.0000021708,0.0000021648,0.0000021577, +0.0000021503,0.0000021405,0.0000021297,0.0000021218,0.0000021162, +0.0000021099,0.0000021030,0.0000020983,0.0000020955,0.0000020929, +0.0000020905,0.0000020892,0.0000020889,0.0000020893,0.0000020905, +0.0000020922,0.0000020933,0.0000020937,0.0000020936,0.0000020930, +0.0000020914,0.0000020883,0.0000020842,0.0000020794,0.0000020737, +0.0000020672,0.0000020597,0.0000020523,0.0000020477,0.0000020472, +0.0000020497,0.0000020534,0.0000020566,0.0000020595,0.0000020609, +0.0000020603,0.0000020587,0.0000020560,0.0000020526,0.0000020482, +0.0000020423,0.0000020366,0.0000020316,0.0000020264,0.0000020213, +0.0000020195,0.0000020216,0.0000020267,0.0000020337,0.0000020421, +0.0000020493,0.0000020526,0.0000020516,0.0000020459,0.0000020383, +0.0000020337,0.0000020320,0.0000020221,0.0000020097,0.0000020037, +0.0000020028,0.0000020053,0.0000020171,0.0000020303,0.0000020319, +0.0000020273,0.0000020266,0.0000020317,0.0000020454,0.0000020631, +0.0000020748,0.0000020811,0.0000020886,0.0000020959,0.0000021083, +0.0000021289,0.0000021370,0.0000021457,0.0000021599,0.0000021647, +0.0000021653,0.0000021690,0.0000021723,0.0000021710,0.0000021724, +0.0000021825,0.0000021887,0.0000021876,0.0000021855,0.0000021817, +0.0000021829,0.0000021899,0.0000021928,0.0000021935,0.0000021970, +0.0000022047,0.0000022090,0.0000022089,0.0000022072,0.0000022043, +0.0000022005,0.0000021975,0.0000021957,0.0000021940,0.0000021957, +0.0000021995,0.0000022042,0.0000022076,0.0000022074,0.0000022042, +0.0000021981,0.0000021907,0.0000021850,0.0000021814,0.0000021805, +0.0000021829,0.0000021860,0.0000021871,0.0000021847,0.0000021776, +0.0000021680,0.0000021592,0.0000021558,0.0000021565,0.0000021580, +0.0000021605,0.0000021624,0.0000021630,0.0000021620,0.0000021587, +0.0000021543,0.0000021511,0.0000021494,0.0000021477,0.0000021461, +0.0000021449,0.0000021444,0.0000021446,0.0000021454,0.0000021466, +0.0000021476,0.0000021472,0.0000021451,0.0000021415,0.0000021362, +0.0000021299,0.0000021240,0.0000021163,0.0000021080,0.0000021015, +0.0000020982,0.0000020952,0.0000020911,0.0000020874,0.0000020849, +0.0000020837,0.0000020819,0.0000020809,0.0000020803,0.0000020799, +0.0000020799,0.0000020801,0.0000020801,0.0000020803,0.0000020809, +0.0000020807,0.0000020798,0.0000020783,0.0000020770,0.0000020760, +0.0000020757,0.0000020757,0.0000020760,0.0000020766,0.0000020776, +0.0000020779,0.0000020769,0.0000020760,0.0000020751,0.0000020734, +0.0000020716,0.0000020693,0.0000020674,0.0000020665,0.0000020664, +0.0000020673,0.0000020692,0.0000020718,0.0000020754,0.0000020804, +0.0000020860,0.0000020917,0.0000020971,0.0000021018,0.0000021052, +0.0000021076,0.0000021092,0.0000021100,0.0000021102,0.0000021104, +0.0000021106,0.0000021114,0.0000021121,0.0000021128,0.0000021139, +0.0000021160,0.0000021191,0.0000021219,0.0000021240,0.0000021247, +0.0000021245,0.0000021231,0.0000021217,0.0000021217,0.0000021220, +0.0000021232,0.0000021249,0.0000021269,0.0000021291,0.0000021302, +0.0000021304,0.0000021304,0.0000021303,0.0000021301,0.0000021298, +0.0000021295,0.0000021289,0.0000021279,0.0000021279,0.0000021282, +0.0000021287,0.0000021292,0.0000021295,0.0000021303,0.0000021309, +0.0000021309,0.0000021306,0.0000021299,0.0000021289,0.0000021276, +0.0000021262,0.0000021252,0.0000021258,0.0000021274,0.0000021298, +0.0000021317,0.0000021328,0.0000021331,0.0000021333,0.0000021337, +0.0000021347,0.0000021349,0.0000021353,0.0000021358,0.0000021355, +0.0000021347,0.0000021337,0.0000021320,0.0000021301,0.0000021284, +0.0000021262,0.0000021241,0.0000021229,0.0000021221,0.0000021221, +0.0000021232,0.0000021248,0.0000021275,0.0000021309,0.0000021341, +0.0000021371,0.0000021399,0.0000021423,0.0000021444,0.0000021461, +0.0000021478,0.0000021499,0.0000021525,0.0000021552,0.0000021578, +0.0000021599,0.0000021620,0.0000021640,0.0000021665,0.0000021690, +0.0000021714,0.0000021738,0.0000021760,0.0000021783,0.0000021808, +0.0000021829,0.0000021843,0.0000021856,0.0000021871,0.0000021884, +0.0000021886,0.0000021882,0.0000021873,0.0000021868,0.0000021865, +0.0000021860,0.0000021858,0.0000021860,0.0000021863,0.0000021873, +0.0000021881,0.0000021886,0.0000021894,0.0000021901,0.0000021906, +0.0000021911,0.0000021915,0.0000021929,0.0000021950,0.0000021969, +0.0000021984,0.0000022001,0.0000022025,0.0000022054,0.0000022082, +0.0000022102,0.0000022100,0.0000022085,0.0000022060,0.0000022031, +0.0000021994,0.0000021955,0.0000021917,0.0000021878,0.0000021838, +0.0000021798,0.0000021762,0.0000021730,0.0000021706,0.0000021695, +0.0000021690,0.0000021695,0.0000021703,0.0000021718,0.0000021731, +0.0000021739,0.0000021745,0.0000021747,0.0000021753,0.0000021758, +0.0000021755,0.0000021745,0.0000021735,0.0000021727,0.0000021725, +0.0000021726,0.0000021730,0.0000021744,0.0000021767,0.0000021788, +0.0000021805,0.0000021818,0.0000021828,0.0000021834,0.0000021836, +0.0000021834,0.0000021832,0.0000021831,0.0000021832,0.0000021834, +0.0000021837,0.0000021838,0.0000021838,0.0000021830,0.0000021821, +0.0000021817,0.0000021821,0.0000021828,0.0000021832,0.0000021829, +0.0000021815,0.0000021791,0.0000021760,0.0000021728,0.0000021702, +0.0000021687,0.0000021688,0.0000021701,0.0000021725,0.0000021760, +0.0000021792,0.0000021816,0.0000021830,0.0000021834,0.0000021825, +0.0000021805,0.0000021785,0.0000021768,0.0000021752,0.0000021733, +0.0000021713,0.0000021694,0.0000021675,0.0000021652,0.0000021628, +0.0000021604,0.0000021576,0.0000021546,0.0000021518,0.0000021488, +0.0000021457,0.0000021432,0.0000021409,0.0000021384,0.0000021357, +0.0000021326,0.0000021289,0.0000021248,0.0000021207,0.0000021170, +0.0000021137,0.0000021107,0.0000021081,0.0000021059,0.0000021044, +0.0000021036,0.0000021029,0.0000021019,0.0000020996,0.0000020957, +0.0000020907,0.0000020856,0.0000020813,0.0000020783,0.0000020759, +0.0000020740,0.0000020726,0.0000020718,0.0000020712,0.0000020709, +0.0000020707,0.0000020700,0.0000020691,0.0000020683,0.0000020674, +0.0000020657,0.0000020643,0.0000020626,0.0000020605,0.0000020584, +0.0000020564,0.0000020544,0.0000020522,0.0000020500,0.0000020480, +0.0000020464,0.0000020450,0.0000020441,0.0000020442,0.0000020453, +0.0000020470,0.0000020490,0.0000020511,0.0000020534,0.0000020558, +0.0000020576,0.0000020588,0.0000020598,0.0000020602,0.0000020598, +0.0000020583,0.0000020558,0.0000020529,0.0000020507,0.0000020497, +0.0000020495,0.0000020494,0.0000020494,0.0000020503,0.0000020519, +0.0000020541,0.0000020562,0.0000020582,0.0000020597,0.0000020601, +0.0000020586,0.0000020554,0.0000020507,0.0000020448,0.0000020374, +0.0000020295,0.0000020225,0.0000020175,0.0000020145,0.0000020136, +0.0000020143,0.0000020166,0.0000020193,0.0000020217,0.0000020240, +0.0000020261,0.0000020270,0.0000020274,0.0000020267,0.0000020254, +0.0000020241,0.0000020230,0.0000020226,0.0000020225,0.0000020225, +0.0000020221,0.0000020215,0.0000020203,0.0000020188,0.0000020172, +0.0000020158,0.0000020144,0.0000020127,0.0000020108,0.0000020088, +0.0000020067,0.0000020044,0.0000020018,0.0000019994,0.0000019970, +0.0000019933,0.0000019872,0.0000019794,0.0000019726,0.0000019676, +0.0000019652,0.0000019652,0.0000019652,0.0000019634,0.0000019594, +0.0000019531,0.0000019463,0.0000019403,0.0000019352,0.0000019313, +0.0000019296,0.0000019296,0.0000019297,0.0000019294,0.0000019292, +0.0000019291,0.0000019296,0.0000019310,0.0000019334,0.0000019369, +0.0000019407,0.0000019441,0.0000019461,0.0000019466,0.0000019466, +0.0000019473,0.0000019503,0.0000019560,0.0000019636,0.0000019716, +0.0000019785,0.0000019841,0.0000019888,0.0000019915,0.0000019928, +0.0000019924,0.0000019903,0.0000019876,0.0000019848,0.0000019808, +0.0000019767,0.0000019748,0.0000019744,0.0000019751,0.0000019757, +0.0000019750,0.0000019730,0.0000019698,0.0000019663,0.0000019630, +0.0000019593,0.0000019554,0.0000019523,0.0000019497,0.0000019482, +0.0000019481,0.0000019508,0.0000019553,0.0000019602,0.0000019650, +0.0000019688,0.0000019717,0.0000019742,0.0000019764,0.0000019780, +0.0000019792,0.0000019801,0.0000019808,0.0000019815,0.0000019818, +0.0000019828,0.0000019844,0.0000019872,0.0000019914,0.0000019969, +0.0000020029,0.0000020087,0.0000020140,0.0000020191,0.0000020243, +0.0000020298,0.0000020353,0.0000020402,0.0000020441,0.0000020472, +0.0000020493,0.0000020497,0.0000020496,0.0000020488,0.0000020477, +0.0000020464,0.0000020448,0.0000020428,0.0000020403,0.0000020373, +0.0000020344,0.0000020319,0.0000020306,0.0000020312,0.0000020326, +0.0000020350,0.0000020384,0.0000020424,0.0000020464,0.0000020506, +0.0000020546,0.0000020571,0.0000020592,0.0000020606,0.0000020614, +0.0000020624,0.0000020641,0.0000020661,0.0000020682,0.0000020705, +0.0000020730,0.0000020755,0.0000020779,0.0000020801,0.0000020821, +0.0000020840,0.0000020857,0.0000020872,0.0000020883,0.0000020889, +0.0000020890,0.0000020889,0.0000020890,0.0000020897,0.0000020914, +0.0000020938,0.0000020969,0.0000021005,0.0000021037,0.0000021053, +0.0000021050,0.0000021039,0.0000021037,0.0000021039,0.0000021043, +0.0000021050,0.0000021044,0.0000021027,0.0000021022,0.0000020995, +0.0000020939,0.0000020904,0.0000020857,0.0000020814,0.0000020772, +0.0000020745,0.0000020752,0.0000020757,0.0000020756,0.0000020750, +0.0000020739,0.0000020749,0.0000020794,0.0000020842,0.0000020888, +0.0000020951,0.0000021004,0.0000021026,0.0000021032,0.0000021038, +0.0000021035,0.0000021015,0.0000020985,0.0000020946,0.0000020894, +0.0000020833,0.0000020770,0.0000020708,0.0000020644,0.0000020588, +0.0000020557,0.0000020546,0.0000020532,0.0000020508,0.0000020494, +0.0000020499,0.0000020519,0.0000020543,0.0000020556,0.0000020554, +0.0000020544,0.0000020530,0.0000020519,0.0000020509,0.0000020496, +0.0000020485,0.0000020480,0.0000020480,0.0000020482,0.0000020488, +0.0000020494,0.0000020498,0.0000020497,0.0000020491,0.0000020482, +0.0000020469,0.0000020452,0.0000020432,0.0000020404,0.0000020374, +0.0000020344,0.0000020319,0.0000020300,0.0000020290,0.0000020278, +0.0000020276,0.0000020280,0.0000020290,0.0000020305,0.0000020322, +0.0000020340,0.0000020358,0.0000020381,0.0000020407,0.0000020435, +0.0000020462,0.0000020487,0.0000020511,0.0000020534,0.0000020564, +0.0000020606,0.0000020658,0.0000020716,0.0000020776,0.0000020833, +0.0000020879,0.0000020913,0.0000020933,0.0000020942,0.0000020941, +0.0000020936,0.0000020933,0.0000020932,0.0000020933,0.0000020934, +0.0000020931,0.0000020930,0.0000020940,0.0000020968,0.0000021024, +0.0000021108,0.0000021212,0.0000021322,0.0000021424,0.0000021507, +0.0000021564,0.0000021597,0.0000021612,0.0000021604,0.0000021573, +0.0000021517,0.0000021439,0.0000021354,0.0000021274,0.0000021203, +0.0000021136,0.0000021070,0.0000021007,0.0000020958,0.0000020924, +0.0000020897,0.0000020866,0.0000020833,0.0000020800,0.0000020769, +0.0000020741,0.0000020711,0.0000020676,0.0000020632,0.0000020578, +0.0000020509,0.0000020422,0.0000020320,0.0000020211,0.0000020104, +0.0000020014,0.0000019956,0.0000019922,0.0000019894,0.0000019854, +0.0000019794,0.0000019718,0.0000019635,0.0000019555,0.0000019495, +0.0000019462,0.0000019450,0.0000019451,0.0000019454,0.0000019455, +0.0000019458,0.0000019473,0.0000019502,0.0000019532,0.0000019547, +0.0000019543,0.0000019525,0.0000019508,0.0000019501,0.0000019514, +0.0000019537,0.0000019564,0.0000019588,0.0000019608,0.0000019622, +0.0000019632,0.0000019643,0.0000019661,0.0000019696,0.0000019757, +0.0000019841,0.0000019909,0.0000019955,0.0000019996,0.0000020051, +0.0000020110,0.0000020151,0.0000020168,0.0000020170,0.0000020171, +0.0000020173,0.0000020181,0.0000020187,0.0000020177,0.0000020145, +0.0000020063,0.0000019954,0.0000019859,0.0000019803,0.0000019778, +0.0000019805,0.0000019852,0.0000019911,0.0000019963,0.0000019996, +0.0000020006,0.0000019996,0.0000019976,0.0000019966,0.0000019986, +0.0000020048,0.0000020159,0.0000020296,0.0000020434,0.0000020542, +0.0000020606,0.0000020635,0.0000020624,0.0000020603,0.0000020565, +0.0000020516,0.0000020464,0.0000020425,0.0000020395,0.0000020382, +0.0000020363,0.0000020360,0.0000020367,0.0000020381,0.0000020401, +0.0000020428,0.0000020456,0.0000020486,0.0000020518,0.0000020551, +0.0000020582,0.0000020608,0.0000020626,0.0000020637,0.0000020642, +0.0000020641,0.0000020631,0.0000020610,0.0000020576,0.0000020526, +0.0000020464,0.0000020390,0.0000020320,0.0000020266,0.0000020230, +0.0000020214,0.0000020211,0.0000020222,0.0000020242,0.0000020271, +0.0000020299,0.0000020321,0.0000020330,0.0000020328,0.0000020315, +0.0000020296,0.0000020280,0.0000020264,0.0000020253,0.0000020248, +0.0000020243,0.0000020239,0.0000020231,0.0000020214,0.0000020193, +0.0000020162,0.0000020127,0.0000020094,0.0000020069,0.0000020044, +0.0000020027,0.0000020026,0.0000020028,0.0000020024,0.0000020011, +0.0000019990,0.0000019970,0.0000019957,0.0000019944,0.0000019934, +0.0000019925,0.0000019911,0.0000019892,0.0000019867,0.0000019843, +0.0000019828,0.0000019827,0.0000019843,0.0000019875,0.0000019912, +0.0000019946,0.0000019976,0.0000020003,0.0000020022,0.0000020032, +0.0000020030,0.0000020010,0.0000019978,0.0000019939,0.0000019894, +0.0000019845,0.0000019798,0.0000019765,0.0000019751,0.0000019751, +0.0000019756,0.0000019755,0.0000019746,0.0000019732,0.0000019710, +0.0000019673,0.0000019623,0.0000019565,0.0000019507,0.0000019447, +0.0000019393,0.0000019352,0.0000019323,0.0000019297,0.0000019272, +0.0000019250,0.0000019234,0.0000019223,0.0000019211,0.0000019197, +0.0000019184,0.0000019170,0.0000019159,0.0000019151,0.0000019142, +0.0000019131,0.0000019115,0.0000019093,0.0000019067,0.0000019042, +0.0000019023,0.0000019010,0.0000019002,0.0000019001,0.0000019009, +0.0000019022,0.0000019033,0.0000019038,0.0000019035,0.0000019025, +0.0000019011,0.0000019000,0.0000018996,0.0000018999,0.0000019006, +0.0000019010,0.0000019012,0.0000019015,0.0000019019,0.0000019020, +0.0000019018,0.0000019009,0.0000018998,0.0000018989,0.0000018986, +0.0000018985,0.0000018982,0.0000018978,0.0000018973,0.0000018967, +0.0000018958,0.0000018949,0.0000018939,0.0000018931,0.0000018924, +0.0000018921,0.0000018919,0.0000018919,0.0000018922,0.0000018931, +0.0000018940,0.0000018947,0.0000018953,0.0000018959,0.0000018965, +0.0000018973,0.0000018989,0.0000019012,0.0000019044,0.0000019077, +0.0000019110,0.0000019142,0.0000019175,0.0000019211,0.0000019251, +0.0000019291,0.0000019329,0.0000019360,0.0000019383,0.0000019397, +0.0000019405,0.0000019407,0.0000019401,0.0000019391,0.0000019382, +0.0000019372,0.0000019372,0.0000019385,0.0000019412,0.0000019447, +0.0000019483,0.0000019515,0.0000019540,0.0000019557,0.0000019567, +0.0000019571,0.0000019570,0.0000019563,0.0000019553,0.0000019540, +0.0000019526,0.0000019512,0.0000019501,0.0000019498,0.0000019500, +0.0000019507,0.0000019518,0.0000019529,0.0000019539,0.0000019548, +0.0000019556,0.0000019561,0.0000019564,0.0000019566,0.0000019564, +0.0000019557,0.0000019547,0.0000019534,0.0000019523,0.0000019517, +0.0000019516,0.0000019520,0.0000019530,0.0000019541,0.0000019544, +0.0000019539,0.0000019517,0.0000019468,0.0000019398,0.0000019338, +0.0000019321,0.0000019346,0.0000019399,0.0000019448,0.0000019481, +0.0000019510,0.0000019553,0.0000019612,0.0000019640,0.0000019607, +0.0000019555,0.0000019546,0.0000019597,0.0000019720,0.0000019869, +0.0000019996,0.0000020112,0.0000020230,0.0000020305,0.0000020310, +0.0000020292,0.0000020289,0.0000020331,0.0000020412,0.0000020487, +0.0000020514,0.0000020514,0.0000020495,0.0000020473,0.0000020454, +0.0000020436,0.0000020418,0.0000020402,0.0000020400,0.0000020417, +0.0000020459,0.0000020512,0.0000020549,0.0000020557,0.0000020539, +0.0000020504,0.0000020461,0.0000020407,0.0000020341,0.0000020294, +0.0000020283,0.0000020283,0.0000020281,0.0000020274,0.0000020265, +0.0000020259,0.0000020259,0.0000020270,0.0000020295,0.0000020328, +0.0000020350,0.0000020351,0.0000020334,0.0000020313,0.0000020306, +0.0000020315,0.0000020339,0.0000020367,0.0000020395,0.0000020419, +0.0000020436,0.0000020446,0.0000020449,0.0000020446,0.0000020438, +0.0000020427,0.0000020417,0.0000020410,0.0000020403,0.0000020392, +0.0000020371,0.0000020338,0.0000020300,0.0000020260,0.0000020223, +0.0000020195,0.0000020179,0.0000020170,0.0000020166,0.0000020165, +0.0000020164,0.0000020158,0.0000020148,0.0000020133,0.0000020115, +0.0000020094,0.0000020071,0.0000020048,0.0000020025,0.0000020006, +0.0000019991,0.0000019980,0.0000019972,0.0000019967,0.0000019965, +0.0000019964,0.0000019961,0.0000019957,0.0000019952,0.0000019945, +0.0000019936,0.0000019925,0.0000019908,0.0000019888,0.0000019866, +0.0000019844,0.0000019820,0.0000019794,0.0000019762,0.0000019728, +0.0000019691,0.0000019650,0.0000019608,0.0000019565,0.0000019528, +0.0000019499,0.0000019480,0.0000019468,0.0000019462,0.0000019461, +0.0000019462,0.0000019462,0.0000019461,0.0000019461,0.0000019464, +0.0000019472,0.0000019486,0.0000019504,0.0000019523,0.0000019542, +0.0000019562,0.0000019588,0.0000019621,0.0000019660,0.0000019700, +0.0000019741,0.0000019780,0.0000019815,0.0000019843,0.0000019863, +0.0000019879,0.0000019891,0.0000019897,0.0000019894,0.0000019882, +0.0000019862,0.0000019843,0.0000019831,0.0000019824,0.0000019814, +0.0000019804,0.0000019773,0.0000019711,0.0000019636,0.0000019580, +0.0000019549,0.0000019522,0.0000019480,0.0000019442,0.0000019422, +0.0000019417,0.0000019418,0.0000019417,0.0000019417,0.0000019420, +0.0000019426,0.0000019435,0.0000019442,0.0000019450,0.0000019467, +0.0000019496,0.0000019538,0.0000019587,0.0000019628,0.0000019657, +0.0000019681,0.0000019707,0.0000019732,0.0000019758,0.0000019785, +0.0000019807,0.0000019821,0.0000019818,0.0000019804,0.0000019780, +0.0000019748,0.0000019721,0.0000019707,0.0000019702,0.0000019709, +0.0000019728,0.0000019755,0.0000019787,0.0000019818,0.0000019842, +0.0000019858,0.0000019870,0.0000019875,0.0000019876,0.0000019881, +0.0000019885,0.0000019891,0.0000019899,0.0000019907,0.0000019918, +0.0000019933,0.0000019945,0.0000019952,0.0000019953,0.0000019946, +0.0000019933,0.0000019913,0.0000019898,0.0000019888,0.0000019881, +0.0000019875,0.0000019866,0.0000019856,0.0000019845,0.0000019832, +0.0000019818,0.0000019802,0.0000019784,0.0000019763,0.0000019739, +0.0000019714,0.0000019688,0.0000019666,0.0000019654,0.0000019654, +0.0000019661,0.0000019666,0.0000019670,0.0000019673,0.0000019677, +0.0000019683,0.0000019690,0.0000019696,0.0000019697,0.0000019697, +0.0000019693,0.0000019685,0.0000019681,0.0000019677,0.0000019670, +0.0000019663,0.0000019666,0.0000019680,0.0000019701,0.0000019728, +0.0000019756,0.0000019780,0.0000019809,0.0000019838,0.0000019866, +0.0000019892,0.0000019912,0.0000019926,0.0000019934,0.0000019936, +0.0000019934,0.0000019925,0.0000019912,0.0000019897,0.0000019885, +0.0000019882,0.0000019896,0.0000019922,0.0000019954,0.0000019987, +0.0000020014,0.0000020030,0.0000020040,0.0000020045,0.0000020042, +0.0000020034,0.0000020022,0.0000020013,0.0000020004,0.0000019995, +0.0000019985,0.0000019978,0.0000019973,0.0000019968,0.0000019962, +0.0000019966,0.0000019985,0.0000020020,0.0000020068,0.0000020114, +0.0000020157,0.0000020185,0.0000020205,0.0000020234,0.0000020288, +0.0000020369,0.0000020455,0.0000020538,0.0000020613,0.0000020671, +0.0000020716,0.0000020759,0.0000020787,0.0000020799,0.0000020803, +0.0000020801,0.0000020777,0.0000020735,0.0000020681,0.0000020625, +0.0000020574,0.0000020531,0.0000020487,0.0000020441,0.0000020406, +0.0000020379,0.0000020359,0.0000020349,0.0000020351,0.0000020365, +0.0000020390,0.0000020426,0.0000020468,0.0000020510,0.0000020551, +0.0000020589,0.0000020623,0.0000020647,0.0000020662,0.0000020668, +0.0000020669,0.0000020665,0.0000020661,0.0000020660,0.0000020661, +0.0000020663,0.0000020662,0.0000020661,0.0000020663,0.0000020671, +0.0000020686,0.0000020711,0.0000020739,0.0000020765,0.0000020788, +0.0000020807,0.0000020822,0.0000020836,0.0000020850,0.0000020863, +0.0000020876,0.0000020891,0.0000020904,0.0000020921,0.0000020944, +0.0000020969,0.0000020997,0.0000021027,0.0000021056,0.0000021083, +0.0000021106,0.0000021128,0.0000021149,0.0000021170,0.0000021188, +0.0000021201,0.0000021208,0.0000021210,0.0000021207,0.0000021200, +0.0000021192,0.0000021184,0.0000021175,0.0000021167,0.0000021157, +0.0000021147,0.0000021140,0.0000021134,0.0000021126,0.0000021120, +0.0000021112,0.0000021102,0.0000021090,0.0000021079,0.0000021073, +0.0000021071,0.0000021075,0.0000021085,0.0000021097,0.0000021113, +0.0000021133,0.0000021152,0.0000021168,0.0000021180,0.0000021189, +0.0000021195,0.0000021196,0.0000021193,0.0000021186,0.0000021177, +0.0000021166,0.0000021155,0.0000021141,0.0000021126,0.0000021112, +0.0000021100,0.0000021094,0.0000021095,0.0000021102,0.0000021114, +0.0000021126,0.0000021138,0.0000021149,0.0000021159,0.0000021169, +0.0000021186,0.0000021210,0.0000021239,0.0000021271,0.0000021301, +0.0000021324,0.0000021340,0.0000021352,0.0000021364,0.0000021376, +0.0000021389,0.0000021398,0.0000021404,0.0000021406,0.0000021402, +0.0000021395,0.0000021376,0.0000021345,0.0000021302,0.0000021250, +0.0000021202,0.0000021165,0.0000021136,0.0000021111,0.0000021105, +0.0000021104,0.0000021141,0.0000021268,0.0000021379,0.0000021466, +0.0000021579,0.0000021669,0.0000021724,0.0000021745,0.0000021733, +0.0000021687,0.0000021610,0.0000021524,0.0000021430,0.0000021320, +0.0000021224,0.0000021155,0.0000021088,0.0000021015,0.0000020970, +0.0000020947,0.0000020919,0.0000020887,0.0000020869,0.0000020868, +0.0000020875,0.0000020885,0.0000020898,0.0000020910,0.0000020915, +0.0000020916,0.0000020914,0.0000020907,0.0000020888,0.0000020856, +0.0000020812,0.0000020759,0.0000020696,0.0000020622,0.0000020543, +0.0000020481,0.0000020453,0.0000020455,0.0000020483,0.0000020517, +0.0000020550,0.0000020573,0.0000020576,0.0000020572,0.0000020554, +0.0000020525,0.0000020485,0.0000020433,0.0000020386,0.0000020347, +0.0000020310,0.0000020260,0.0000020210,0.0000020192,0.0000020211, +0.0000020282,0.0000020374,0.0000020461,0.0000020521,0.0000020537, +0.0000020518,0.0000020458,0.0000020390,0.0000020362,0.0000020307, +0.0000020171,0.0000020060,0.0000020021,0.0000020023,0.0000020100, +0.0000020254,0.0000020323,0.0000020294,0.0000020266,0.0000020280, +0.0000020390,0.0000020586,0.0000020730,0.0000020786,0.0000020830, +0.0000020895,0.0000021004,0.0000021219,0.0000021329,0.0000021399, +0.0000021560,0.0000021640,0.0000021652,0.0000021672,0.0000021713, +0.0000021714,0.0000021719,0.0000021794,0.0000021884,0.0000021894, +0.0000021880,0.0000021848,0.0000021824,0.0000021867,0.0000021929, +0.0000021952,0.0000021962,0.0000021994,0.0000022062,0.0000022090, +0.0000022076,0.0000022046,0.0000022013,0.0000021982,0.0000021966, +0.0000021942,0.0000021928,0.0000021938,0.0000021959,0.0000021996, +0.0000022021,0.0000022013,0.0000021980,0.0000021922,0.0000021876, +0.0000021842,0.0000021824,0.0000021828,0.0000021841,0.0000021844, +0.0000021818,0.0000021744,0.0000021656,0.0000021591,0.0000021576, +0.0000021587,0.0000021611,0.0000021639,0.0000021663,0.0000021674, +0.0000021669,0.0000021647,0.0000021601,0.0000021553,0.0000021519, +0.0000021489,0.0000021462,0.0000021441,0.0000021431,0.0000021429, +0.0000021439,0.0000021457,0.0000021472,0.0000021475,0.0000021465, +0.0000021438,0.0000021392,0.0000021344,0.0000021312,0.0000021265, +0.0000021200,0.0000021133,0.0000021082,0.0000021046,0.0000021005, +0.0000020964,0.0000020937,0.0000020925,0.0000020912,0.0000020900, +0.0000020888,0.0000020877,0.0000020871,0.0000020868,0.0000020856, +0.0000020848,0.0000020840,0.0000020829,0.0000020809,0.0000020786, +0.0000020763,0.0000020742,0.0000020729,0.0000020720,0.0000020719, +0.0000020727,0.0000020746,0.0000020762,0.0000020768,0.0000020766, +0.0000020761,0.0000020750,0.0000020725,0.0000020694,0.0000020664, +0.0000020636,0.0000020608,0.0000020591,0.0000020593,0.0000020599, +0.0000020609,0.0000020633,0.0000020669,0.0000020714,0.0000020769, +0.0000020822,0.0000020870,0.0000020914,0.0000020951,0.0000020972, +0.0000020982,0.0000020986,0.0000020988,0.0000020983,0.0000020976, +0.0000020973,0.0000020972,0.0000020980,0.0000020995,0.0000021015, +0.0000021029,0.0000021024,0.0000021014,0.0000020996,0.0000020984, +0.0000020981,0.0000020982,0.0000020992,0.0000021006,0.0000021029, +0.0000021055,0.0000021071,0.0000021083,0.0000021099,0.0000021114, +0.0000021126,0.0000021135,0.0000021142,0.0000021149,0.0000021152, +0.0000021157,0.0000021164,0.0000021171,0.0000021179,0.0000021187, +0.0000021199,0.0000021211,0.0000021216,0.0000021218,0.0000021218, +0.0000021214,0.0000021206,0.0000021194,0.0000021186,0.0000021196, +0.0000021222,0.0000021257,0.0000021282,0.0000021311,0.0000021329, +0.0000021333,0.0000021343,0.0000021352,0.0000021356,0.0000021358, +0.0000021355,0.0000021348,0.0000021337,0.0000021324,0.0000021306, +0.0000021290,0.0000021277,0.0000021266,0.0000021258,0.0000021253, +0.0000021251,0.0000021254,0.0000021254,0.0000021255,0.0000021265, +0.0000021275,0.0000021291,0.0000021305,0.0000021319,0.0000021333, +0.0000021344,0.0000021351,0.0000021355,0.0000021362,0.0000021375, +0.0000021389,0.0000021404,0.0000021417,0.0000021434,0.0000021456, +0.0000021482,0.0000021510,0.0000021540,0.0000021569,0.0000021597, +0.0000021625,0.0000021659,0.0000021696,0.0000021724,0.0000021748, +0.0000021770,0.0000021791,0.0000021802,0.0000021804,0.0000021804, +0.0000021801,0.0000021799,0.0000021798,0.0000021802,0.0000021802, +0.0000021801,0.0000021805,0.0000021805,0.0000021801,0.0000021796, +0.0000021790,0.0000021784,0.0000021779,0.0000021785,0.0000021802, +0.0000021825,0.0000021848,0.0000021870,0.0000021895,0.0000021926, +0.0000021965,0.0000022007,0.0000022040,0.0000022059,0.0000022062, +0.0000022058,0.0000022044,0.0000022029,0.0000022011,0.0000021987, +0.0000021964,0.0000021931,0.0000021891,0.0000021847,0.0000021803, +0.0000021769,0.0000021746,0.0000021730,0.0000021721,0.0000021719, +0.0000021723,0.0000021729,0.0000021731,0.0000021731,0.0000021736, +0.0000021751,0.0000021766,0.0000021778,0.0000021785,0.0000021787, +0.0000021789,0.0000021796,0.0000021805,0.0000021815,0.0000021832, +0.0000021848,0.0000021860,0.0000021866,0.0000021868,0.0000021864, +0.0000021858,0.0000021853,0.0000021847,0.0000021840,0.0000021833, +0.0000021830,0.0000021829,0.0000021830,0.0000021834,0.0000021836, +0.0000021834,0.0000021830,0.0000021832,0.0000021838,0.0000021842, +0.0000021842,0.0000021838,0.0000021824,0.0000021800,0.0000021768, +0.0000021735,0.0000021705,0.0000021688,0.0000021687,0.0000021700, +0.0000021730,0.0000021773,0.0000021813,0.0000021843,0.0000021872, +0.0000021889,0.0000021893,0.0000021889,0.0000021882,0.0000021872, +0.0000021860,0.0000021847,0.0000021835,0.0000021823,0.0000021809, +0.0000021791,0.0000021769,0.0000021742,0.0000021709,0.0000021673, +0.0000021638,0.0000021599,0.0000021557,0.0000021518,0.0000021479, +0.0000021438,0.0000021393,0.0000021344,0.0000021291,0.0000021236, +0.0000021188,0.0000021151,0.0000021120,0.0000021094,0.0000021072, +0.0000021056,0.0000021050,0.0000021050,0.0000021056,0.0000021060, +0.0000021059,0.0000021046,0.0000021028,0.0000021008,0.0000020988, +0.0000020966,0.0000020942,0.0000020917,0.0000020893,0.0000020871, +0.0000020849,0.0000020826,0.0000020801,0.0000020774,0.0000020745, +0.0000020715,0.0000020685,0.0000020658,0.0000020634,0.0000020609, +0.0000020585,0.0000020562,0.0000020539,0.0000020515,0.0000020491, +0.0000020467,0.0000020436,0.0000020401,0.0000020372,0.0000020351, +0.0000020336,0.0000020337,0.0000020346,0.0000020361,0.0000020386, +0.0000020416,0.0000020448,0.0000020478,0.0000020503,0.0000020522, +0.0000020532,0.0000020531,0.0000020517,0.0000020495,0.0000020476, +0.0000020465,0.0000020461,0.0000020459,0.0000020458,0.0000020457, +0.0000020464,0.0000020480,0.0000020499,0.0000020517,0.0000020530, +0.0000020536,0.0000020533,0.0000020517,0.0000020489,0.0000020443, +0.0000020387,0.0000020325,0.0000020270,0.0000020229,0.0000020195, +0.0000020168,0.0000020153,0.0000020151,0.0000020158,0.0000020168, +0.0000020183,0.0000020201,0.0000020219,0.0000020232,0.0000020236, +0.0000020235,0.0000020232,0.0000020228,0.0000020225,0.0000020225, +0.0000020227,0.0000020231,0.0000020236,0.0000020237,0.0000020230, +0.0000020219,0.0000020210,0.0000020203,0.0000020194,0.0000020179, +0.0000020159,0.0000020138,0.0000020115,0.0000020086,0.0000020053, +0.0000020021,0.0000019989,0.0000019947,0.0000019877,0.0000019794, +0.0000019721,0.0000019679,0.0000019672,0.0000019678,0.0000019673, +0.0000019646,0.0000019582,0.0000019501,0.0000019427,0.0000019359, +0.0000019306,0.0000019280,0.0000019264,0.0000019260,0.0000019258, +0.0000019253,0.0000019248,0.0000019247,0.0000019257,0.0000019279, +0.0000019316,0.0000019358,0.0000019391,0.0000019413,0.0000019430, +0.0000019447,0.0000019470,0.0000019504,0.0000019557,0.0000019624, +0.0000019697,0.0000019763,0.0000019815,0.0000019857,0.0000019884, +0.0000019896,0.0000019890,0.0000019870,0.0000019846,0.0000019819, +0.0000019789,0.0000019765,0.0000019753,0.0000019744,0.0000019735, +0.0000019723,0.0000019707,0.0000019692,0.0000019676,0.0000019655, +0.0000019629,0.0000019594,0.0000019554,0.0000019521,0.0000019499, +0.0000019493,0.0000019500,0.0000019530,0.0000019567,0.0000019608, +0.0000019652,0.0000019685,0.0000019715,0.0000019743,0.0000019766, +0.0000019784,0.0000019798,0.0000019811,0.0000019821,0.0000019828, +0.0000019830,0.0000019833,0.0000019838,0.0000019845,0.0000019865, +0.0000019897,0.0000019941,0.0000019990,0.0000020038,0.0000020084, +0.0000020130,0.0000020181,0.0000020235,0.0000020290,0.0000020343, +0.0000020390,0.0000020432,0.0000020465,0.0000020484,0.0000020491, +0.0000020485,0.0000020475,0.0000020461,0.0000020451,0.0000020441, +0.0000020430,0.0000020414,0.0000020395,0.0000020376,0.0000020361, +0.0000020354,0.0000020356,0.0000020367,0.0000020381,0.0000020396, +0.0000020422,0.0000020460,0.0000020507,0.0000020560,0.0000020610, +0.0000020646,0.0000020684,0.0000020720,0.0000020749,0.0000020773, +0.0000020795,0.0000020817,0.0000020839,0.0000020861,0.0000020881, +0.0000020897,0.0000020909,0.0000020917,0.0000020918,0.0000020913, +0.0000020905,0.0000020897,0.0000020891,0.0000020888,0.0000020890, +0.0000020902,0.0000020926,0.0000020960,0.0000021004,0.0000021048, +0.0000021073,0.0000021069,0.0000021052,0.0000021044,0.0000021044, +0.0000021050,0.0000021055,0.0000021043,0.0000021028,0.0000021026, +0.0000020990,0.0000020939,0.0000020905,0.0000020856,0.0000020816, +0.0000020776,0.0000020760,0.0000020769,0.0000020774,0.0000020776, +0.0000020768,0.0000020755,0.0000020763,0.0000020805,0.0000020855, +0.0000020903,0.0000020966,0.0000021018,0.0000021041,0.0000021044, +0.0000021044,0.0000021036,0.0000021016,0.0000020987,0.0000020945, +0.0000020892,0.0000020833,0.0000020768,0.0000020695,0.0000020621, +0.0000020567,0.0000020539,0.0000020514,0.0000020480,0.0000020454, +0.0000020451,0.0000020468,0.0000020497,0.0000020523,0.0000020534, +0.0000020530,0.0000020516,0.0000020503,0.0000020496,0.0000020488, +0.0000020478,0.0000020472,0.0000020471,0.0000020472,0.0000020475, +0.0000020479,0.0000020482,0.0000020482,0.0000020477,0.0000020468, +0.0000020456,0.0000020444,0.0000020429,0.0000020410,0.0000020388, +0.0000020362,0.0000020339,0.0000020318,0.0000020302,0.0000020289, +0.0000020279,0.0000020273,0.0000020275,0.0000020275,0.0000020282, +0.0000020292,0.0000020300,0.0000020308,0.0000020318,0.0000020331, +0.0000020346,0.0000020362,0.0000020378,0.0000020392,0.0000020406, +0.0000020426,0.0000020457,0.0000020497,0.0000020544,0.0000020599, +0.0000020659,0.0000020721,0.0000020780,0.0000020830,0.0000020866, +0.0000020888,0.0000020896,0.0000020892,0.0000020886,0.0000020880, +0.0000020876,0.0000020875,0.0000020874,0.0000020870,0.0000020870, +0.0000020880,0.0000020909,0.0000020965,0.0000021046,0.0000021142, +0.0000021239,0.0000021323,0.0000021387,0.0000021426,0.0000021440, +0.0000021431,0.0000021402,0.0000021352,0.0000021287,0.0000021213, +0.0000021132,0.0000021052,0.0000020977,0.0000020909,0.0000020855, +0.0000020815,0.0000020783,0.0000020755,0.0000020731,0.0000020711, +0.0000020695,0.0000020681,0.0000020663,0.0000020636,0.0000020599, +0.0000020550,0.0000020487,0.0000020404,0.0000020305,0.0000020200, +0.0000020098,0.0000020012,0.0000019949,0.0000019908,0.0000019876, +0.0000019838,0.0000019783,0.0000019711,0.0000019630,0.0000019552, +0.0000019490,0.0000019453,0.0000019444,0.0000019446,0.0000019452, +0.0000019455,0.0000019457,0.0000019467,0.0000019490,0.0000019516, +0.0000019534,0.0000019533,0.0000019518,0.0000019499,0.0000019492, +0.0000019502,0.0000019525,0.0000019553,0.0000019579,0.0000019599, +0.0000019613,0.0000019621,0.0000019627,0.0000019640,0.0000019669, +0.0000019729,0.0000019816,0.0000019891,0.0000019941,0.0000019981, +0.0000020033,0.0000020093,0.0000020142,0.0000020164,0.0000020170, +0.0000020164,0.0000020159,0.0000020159,0.0000020165,0.0000020165, +0.0000020147,0.0000020090,0.0000019991,0.0000019880,0.0000019794, +0.0000019755,0.0000019733,0.0000019756,0.0000019796,0.0000019846, +0.0000019891,0.0000019920,0.0000019931,0.0000019926,0.0000019918, +0.0000019920,0.0000019950,0.0000020021,0.0000020133,0.0000020269, +0.0000020403,0.0000020510,0.0000020580,0.0000020612,0.0000020607, +0.0000020589,0.0000020549,0.0000020501,0.0000020453,0.0000020410, +0.0000020379,0.0000020353,0.0000020340,0.0000020321,0.0000020316, +0.0000020316,0.0000020325,0.0000020337,0.0000020352,0.0000020370, +0.0000020390,0.0000020411,0.0000020430,0.0000020441,0.0000020443, +0.0000020437,0.0000020425,0.0000020405,0.0000020376,0.0000020338, +0.0000020295,0.0000020253,0.0000020222,0.0000020207,0.0000020201, +0.0000020204,0.0000020215,0.0000020235,0.0000020265,0.0000020301, +0.0000020330,0.0000020344,0.0000020340,0.0000020317,0.0000020279, +0.0000020241,0.0000020210,0.0000020186,0.0000020169,0.0000020161, +0.0000020161,0.0000020165,0.0000020169,0.0000020168,0.0000020161, +0.0000020145,0.0000020122,0.0000020095,0.0000020072,0.0000020042, +0.0000020017,0.0000020003,0.0000019990,0.0000019975,0.0000019953, +0.0000019927,0.0000019906,0.0000019894,0.0000019891,0.0000019892, +0.0000019890,0.0000019878,0.0000019861,0.0000019833,0.0000019802, +0.0000019783,0.0000019775,0.0000019781,0.0000019806,0.0000019842, +0.0000019879,0.0000019916,0.0000019947,0.0000019971,0.0000019985, +0.0000019985,0.0000019967,0.0000019932,0.0000019888,0.0000019835, +0.0000019775,0.0000019718,0.0000019672,0.0000019647,0.0000019642, +0.0000019645,0.0000019649,0.0000019654,0.0000019656,0.0000019649, +0.0000019624,0.0000019586,0.0000019539,0.0000019489,0.0000019439, +0.0000019391,0.0000019355,0.0000019332,0.0000019312,0.0000019289, +0.0000019264,0.0000019238,0.0000019216,0.0000019199,0.0000019184, +0.0000019166,0.0000019147,0.0000019130,0.0000019119,0.0000019114, +0.0000019107,0.0000019092,0.0000019067,0.0000019037,0.0000019008, +0.0000018981,0.0000018957,0.0000018942,0.0000018937,0.0000018939, +0.0000018947,0.0000018954,0.0000018956,0.0000018953,0.0000018946, +0.0000018935,0.0000018923,0.0000018918,0.0000018921,0.0000018929, +0.0000018936,0.0000018942,0.0000018950,0.0000018960,0.0000018969, +0.0000018973,0.0000018972,0.0000018966,0.0000018961,0.0000018957, +0.0000018954,0.0000018950,0.0000018942,0.0000018929,0.0000018913, +0.0000018896,0.0000018878,0.0000018862,0.0000018847,0.0000018834, +0.0000018823,0.0000018815,0.0000018809,0.0000018808,0.0000018814, +0.0000018825,0.0000018840,0.0000018858,0.0000018878,0.0000018897, +0.0000018918,0.0000018942,0.0000018970,0.0000019000,0.0000019031, +0.0000019062,0.0000019088,0.0000019109,0.0000019128,0.0000019150, +0.0000019178,0.0000019212,0.0000019247,0.0000019281,0.0000019313, +0.0000019342,0.0000019364,0.0000019379,0.0000019383,0.0000019377, +0.0000019367,0.0000019357,0.0000019354,0.0000019363,0.0000019381, +0.0000019404,0.0000019432,0.0000019460,0.0000019483,0.0000019500, +0.0000019510,0.0000019513,0.0000019513,0.0000019509,0.0000019503, +0.0000019497,0.0000019490,0.0000019484,0.0000019482,0.0000019482, +0.0000019485,0.0000019490,0.0000019497,0.0000019507,0.0000019518, +0.0000019528,0.0000019536,0.0000019543,0.0000019550,0.0000019554, +0.0000019555,0.0000019549,0.0000019539,0.0000019528,0.0000019517, +0.0000019509,0.0000019507,0.0000019511,0.0000019522,0.0000019533, +0.0000019536,0.0000019531,0.0000019505,0.0000019449,0.0000019375, +0.0000019321,0.0000019314,0.0000019353,0.0000019409,0.0000019452, +0.0000019482,0.0000019513,0.0000019562,0.0000019611,0.0000019613, +0.0000019567,0.0000019523,0.0000019530,0.0000019610,0.0000019743, +0.0000019883,0.0000020000,0.0000020112,0.0000020225,0.0000020296, +0.0000020298,0.0000020284,0.0000020276,0.0000020309,0.0000020378, +0.0000020452,0.0000020498,0.0000020501,0.0000020493,0.0000020474, +0.0000020452,0.0000020429,0.0000020404,0.0000020384,0.0000020380, +0.0000020396,0.0000020439,0.0000020495,0.0000020540,0.0000020559, +0.0000020553,0.0000020526,0.0000020487,0.0000020438,0.0000020375, +0.0000020317,0.0000020289,0.0000020286,0.0000020285,0.0000020281, +0.0000020278,0.0000020279,0.0000020285,0.0000020302,0.0000020330, +0.0000020354,0.0000020363,0.0000020358,0.0000020345,0.0000020332, +0.0000020329,0.0000020338,0.0000020357,0.0000020379,0.0000020402, +0.0000020420,0.0000020435,0.0000020446,0.0000020450,0.0000020450, +0.0000020449,0.0000020448,0.0000020448,0.0000020446,0.0000020438, +0.0000020420,0.0000020391,0.0000020356,0.0000020320,0.0000020287, +0.0000020262,0.0000020248,0.0000020242,0.0000020238,0.0000020232, +0.0000020225,0.0000020212,0.0000020193,0.0000020168,0.0000020143, +0.0000020118,0.0000020094,0.0000020074,0.0000020057,0.0000020044, +0.0000020034,0.0000020027,0.0000020020,0.0000020013,0.0000020004, +0.0000019993,0.0000019983,0.0000019973,0.0000019963,0.0000019952, +0.0000019942,0.0000019930,0.0000019918,0.0000019905,0.0000019891, +0.0000019877,0.0000019863,0.0000019847,0.0000019827,0.0000019803, +0.0000019773,0.0000019737,0.0000019695,0.0000019649,0.0000019602, +0.0000019558,0.0000019518,0.0000019488,0.0000019470,0.0000019464, +0.0000019464,0.0000019464,0.0000019464,0.0000019461,0.0000019456, +0.0000019453,0.0000019454,0.0000019461,0.0000019476,0.0000019495, +0.0000019516,0.0000019540,0.0000019566,0.0000019597,0.0000019635, +0.0000019677,0.0000019720,0.0000019763,0.0000019802,0.0000019835, +0.0000019862,0.0000019882,0.0000019895,0.0000019899,0.0000019888, +0.0000019870,0.0000019843,0.0000019820,0.0000019807,0.0000019805, +0.0000019805,0.0000019788,0.0000019758,0.0000019695,0.0000019614, +0.0000019556,0.0000019524,0.0000019495,0.0000019456,0.0000019426, +0.0000019439,0.0000019422,0.0000019422,0.0000019429,0.0000019434, +0.0000019437,0.0000019442,0.0000019446,0.0000019448,0.0000019451, +0.0000019463,0.0000019490,0.0000019529,0.0000019573,0.0000019613, +0.0000019648,0.0000019675,0.0000019690,0.0000019699,0.0000019708, +0.0000019722,0.0000019736,0.0000019749,0.0000019756,0.0000019750, +0.0000019732,0.0000019719,0.0000019704,0.0000019695,0.0000019694, +0.0000019701,0.0000019718,0.0000019746,0.0000019776,0.0000019805, +0.0000019828,0.0000019843,0.0000019851,0.0000019855,0.0000019854, +0.0000019852,0.0000019852,0.0000019854,0.0000019858,0.0000019864, +0.0000019868,0.0000019868,0.0000019863,0.0000019852,0.0000019835, +0.0000019812,0.0000019793,0.0000019781,0.0000019770,0.0000019759, +0.0000019748,0.0000019738,0.0000019730,0.0000019724,0.0000019721, +0.0000019717,0.0000019713,0.0000019704,0.0000019691,0.0000019677, +0.0000019663,0.0000019654,0.0000019651,0.0000019654,0.0000019668, +0.0000019679,0.0000019684,0.0000019689,0.0000019697,0.0000019705, +0.0000019708,0.0000019711,0.0000019710,0.0000019707,0.0000019701, +0.0000019692,0.0000019684,0.0000019674,0.0000019661,0.0000019647, +0.0000019645,0.0000019653,0.0000019668,0.0000019689,0.0000019713, +0.0000019733,0.0000019754,0.0000019780,0.0000019806,0.0000019827, +0.0000019843,0.0000019853,0.0000019861,0.0000019868,0.0000019870, +0.0000019867,0.0000019862,0.0000019856,0.0000019845,0.0000019837, +0.0000019843,0.0000019855,0.0000019876,0.0000019899,0.0000019922, +0.0000019941,0.0000019956,0.0000019965,0.0000019966,0.0000019962, +0.0000019952,0.0000019940,0.0000019926,0.0000019913,0.0000019900, +0.0000019888,0.0000019876,0.0000019867,0.0000019859,0.0000019863, +0.0000019884,0.0000019922,0.0000019974,0.0000020030,0.0000020086, +0.0000020134,0.0000020169,0.0000020198,0.0000020244,0.0000020317, +0.0000020406,0.0000020500,0.0000020582,0.0000020643,0.0000020693, +0.0000020735,0.0000020759,0.0000020766,0.0000020766,0.0000020761, +0.0000020736,0.0000020695,0.0000020645,0.0000020592,0.0000020542, +0.0000020495,0.0000020452,0.0000020412,0.0000020382,0.0000020357, +0.0000020336,0.0000020322,0.0000020321,0.0000020334,0.0000020358, +0.0000020397,0.0000020444,0.0000020492,0.0000020533,0.0000020570, +0.0000020603,0.0000020627,0.0000020642,0.0000020648,0.0000020650, +0.0000020649,0.0000020649,0.0000020652,0.0000020657,0.0000020662, +0.0000020662,0.0000020660,0.0000020659,0.0000020660,0.0000020665, +0.0000020676,0.0000020691,0.0000020707,0.0000020723,0.0000020736, +0.0000020748,0.0000020764,0.0000020781,0.0000020799,0.0000020819, +0.0000020836,0.0000020851,0.0000020869,0.0000020892,0.0000020917, +0.0000020945,0.0000020975,0.0000021002,0.0000021029,0.0000021053, +0.0000021077,0.0000021098,0.0000021119,0.0000021138,0.0000021152, +0.0000021159,0.0000021161,0.0000021159,0.0000021155,0.0000021150, +0.0000021143,0.0000021134,0.0000021125,0.0000021115,0.0000021106, +0.0000021102,0.0000021102,0.0000021102,0.0000021102,0.0000021102, +0.0000021098,0.0000021095,0.0000021095,0.0000021099,0.0000021104, +0.0000021109,0.0000021115,0.0000021122,0.0000021130,0.0000021142, +0.0000021154,0.0000021165,0.0000021175,0.0000021182,0.0000021187, +0.0000021188,0.0000021186,0.0000021179,0.0000021170,0.0000021159, +0.0000021145,0.0000021128,0.0000021108,0.0000021088,0.0000021070, +0.0000021056,0.0000021045,0.0000021043,0.0000021049,0.0000021062, +0.0000021079,0.0000021099,0.0000021114,0.0000021124,0.0000021133, +0.0000021149,0.0000021177,0.0000021217,0.0000021258,0.0000021290, +0.0000021310,0.0000021324,0.0000021339,0.0000021352,0.0000021361, +0.0000021368,0.0000021375,0.0000021375,0.0000021371,0.0000021358, +0.0000021331,0.0000021291,0.0000021245,0.0000021198,0.0000021161, +0.0000021136,0.0000021115,0.0000021106,0.0000021107,0.0000021110, +0.0000021179,0.0000021312,0.0000021404,0.0000021498,0.0000021613, +0.0000021692,0.0000021730,0.0000021736,0.0000021711,0.0000021647, +0.0000021558,0.0000021455,0.0000021349,0.0000021245,0.0000021160, +0.0000021083,0.0000021004,0.0000020959,0.0000020939,0.0000020910, +0.0000020874,0.0000020853,0.0000020852,0.0000020865,0.0000020879, +0.0000020888,0.0000020895,0.0000020899,0.0000020898,0.0000020896, +0.0000020892,0.0000020883,0.0000020861,0.0000020826,0.0000020780, +0.0000020723,0.0000020650,0.0000020568,0.0000020498,0.0000020450, +0.0000020429,0.0000020435,0.0000020464,0.0000020500,0.0000020529, +0.0000020547,0.0000020552,0.0000020545,0.0000020526,0.0000020492, +0.0000020445,0.0000020397,0.0000020360,0.0000020335,0.0000020303, +0.0000020254,0.0000020206,0.0000020188,0.0000020220,0.0000020306, +0.0000020411,0.0000020499,0.0000020545,0.0000020550,0.0000020525, +0.0000020464,0.0000020403,0.0000020369,0.0000020266,0.0000020113, +0.0000020026,0.0000020010,0.0000020044,0.0000020193,0.0000020317, +0.0000020318,0.0000020282,0.0000020278,0.0000020346,0.0000020536, +0.0000020706,0.0000020770,0.0000020789,0.0000020837,0.0000020933, +0.0000021147,0.0000021285,0.0000021342,0.0000021503,0.0000021618, +0.0000021646,0.0000021656,0.0000021698,0.0000021713,0.0000021717, +0.0000021763,0.0000021862,0.0000021911,0.0000021898,0.0000021880, +0.0000021839,0.0000021834,0.0000021891,0.0000021955,0.0000021975, +0.0000021986,0.0000022024,0.0000022069,0.0000022073,0.0000022051, +0.0000022018,0.0000021984,0.0000021962,0.0000021943,0.0000021928, +0.0000021934,0.0000021941,0.0000021958,0.0000021993,0.0000022011, +0.0000022000,0.0000021964,0.0000021919,0.0000021876,0.0000021849, +0.0000021838,0.0000021829,0.0000021815,0.0000021778,0.0000021714, +0.0000021640,0.0000021595,0.0000021593,0.0000021608,0.0000021636, +0.0000021668,0.0000021694,0.0000021709,0.0000021707,0.0000021690, +0.0000021649,0.0000021595,0.0000021548,0.0000021504,0.0000021466, +0.0000021441,0.0000021422,0.0000021413,0.0000021413,0.0000021420, +0.0000021429,0.0000021432,0.0000021431,0.0000021424,0.0000021393, +0.0000021363,0.0000021345,0.0000021317,0.0000021278,0.0000021231, +0.0000021191,0.0000021156,0.0000021117,0.0000021075,0.0000021043, +0.0000021022,0.0000021005,0.0000020994,0.0000020982,0.0000020964, +0.0000020948,0.0000020937,0.0000020922,0.0000020905,0.0000020886, +0.0000020867,0.0000020845,0.0000020813,0.0000020775,0.0000020743, +0.0000020721,0.0000020700,0.0000020688,0.0000020687,0.0000020696, +0.0000020712,0.0000020721,0.0000020725,0.0000020728,0.0000020726, +0.0000020715,0.0000020691,0.0000020661,0.0000020633,0.0000020603, +0.0000020581,0.0000020568,0.0000020563,0.0000020563,0.0000020571, +0.0000020585,0.0000020608,0.0000020642,0.0000020675,0.0000020707, +0.0000020739,0.0000020768,0.0000020791,0.0000020807,0.0000020820, +0.0000020833,0.0000020838,0.0000020845,0.0000020853,0.0000020861, +0.0000020874,0.0000020892,0.0000020910,0.0000020917,0.0000020907, +0.0000020888,0.0000020866,0.0000020850,0.0000020835,0.0000020827, +0.0000020828,0.0000020837,0.0000020848,0.0000020856,0.0000020858, +0.0000020861,0.0000020874,0.0000020892,0.0000020910,0.0000020924, +0.0000020941,0.0000020957,0.0000020970,0.0000020982,0.0000020996, +0.0000021008,0.0000021021,0.0000021039,0.0000021058,0.0000021075, +0.0000021083,0.0000021091,0.0000021093,0.0000021091,0.0000021080, +0.0000021071,0.0000021069,0.0000021078,0.0000021105,0.0000021144, +0.0000021182,0.0000021218,0.0000021247,0.0000021271,0.0000021297, +0.0000021326,0.0000021348,0.0000021358,0.0000021355,0.0000021353, +0.0000021344,0.0000021331,0.0000021312,0.0000021292,0.0000021275, +0.0000021265,0.0000021262,0.0000021260,0.0000021265,0.0000021271, +0.0000021276,0.0000021284,0.0000021290,0.0000021296,0.0000021301, +0.0000021307,0.0000021311,0.0000021312,0.0000021312,0.0000021309, +0.0000021305,0.0000021303,0.0000021306,0.0000021310,0.0000021317, +0.0000021327,0.0000021347,0.0000021368,0.0000021390,0.0000021413, +0.0000021436,0.0000021460,0.0000021480,0.0000021505,0.0000021534, +0.0000021569,0.0000021601,0.0000021626,0.0000021648,0.0000021668, +0.0000021683,0.0000021697,0.0000021705,0.0000021709,0.0000021710, +0.0000021713,0.0000021718,0.0000021720,0.0000021719,0.0000021718, +0.0000021714,0.0000021706,0.0000021694,0.0000021682,0.0000021670, +0.0000021666,0.0000021672,0.0000021683,0.0000021700,0.0000021723, +0.0000021747,0.0000021775,0.0000021809,0.0000021851,0.0000021896, +0.0000021934,0.0000021959,0.0000021976,0.0000021988,0.0000021996, +0.0000022000,0.0000022001,0.0000021995,0.0000021996,0.0000021986, +0.0000021967,0.0000021939,0.0000021904,0.0000021871,0.0000021841, +0.0000021811,0.0000021782,0.0000021759,0.0000021746,0.0000021740, +0.0000021733,0.0000021728,0.0000021733,0.0000021749,0.0000021767, +0.0000021787,0.0000021804,0.0000021816,0.0000021826,0.0000021841, +0.0000021858,0.0000021878,0.0000021898,0.0000021916,0.0000021928, +0.0000021934,0.0000021930,0.0000021917,0.0000021902,0.0000021886, +0.0000021868,0.0000021848,0.0000021830,0.0000021821,0.0000021819, +0.0000021822,0.0000021827,0.0000021829,0.0000021828,0.0000021831, +0.0000021839,0.0000021844,0.0000021843,0.0000021840,0.0000021834, +0.0000021820,0.0000021798,0.0000021767,0.0000021734,0.0000021703, +0.0000021684,0.0000021678,0.0000021687,0.0000021714,0.0000021754, +0.0000021798,0.0000021840,0.0000021876,0.0000021902,0.0000021915, +0.0000021925,0.0000021927,0.0000021922,0.0000021913,0.0000021904, +0.0000021897,0.0000021891,0.0000021887,0.0000021879,0.0000021863, +0.0000021842,0.0000021814,0.0000021780,0.0000021746,0.0000021708, +0.0000021666,0.0000021628,0.0000021586,0.0000021537,0.0000021480, +0.0000021417,0.0000021349,0.0000021283,0.0000021225,0.0000021179, +0.0000021141,0.0000021110,0.0000021085,0.0000021065,0.0000021053, +0.0000021055,0.0000021060,0.0000021069,0.0000021077,0.0000021087, +0.0000021096,0.0000021103,0.0000021106,0.0000021106,0.0000021099, +0.0000021087,0.0000021071,0.0000021053,0.0000021029,0.0000020997, +0.0000020959,0.0000020916,0.0000020870,0.0000020820,0.0000020771, +0.0000020727,0.0000020688,0.0000020655,0.0000020624,0.0000020593, +0.0000020560,0.0000020527,0.0000020494,0.0000020461,0.0000020424, +0.0000020384,0.0000020348,0.0000020312,0.0000020299,0.0000020286, +0.0000020287,0.0000020305,0.0000020332,0.0000020364,0.0000020400, +0.0000020438,0.0000020471,0.0000020495,0.0000020507,0.0000020505, +0.0000020493,0.0000020478,0.0000020470,0.0000020465,0.0000020460, +0.0000020455,0.0000020443,0.0000020438,0.0000020438,0.0000020443, +0.0000020450,0.0000020456,0.0000020456,0.0000020450,0.0000020436, +0.0000020412,0.0000020379,0.0000020341,0.0000020306,0.0000020277, +0.0000020257,0.0000020249,0.0000020230,0.0000020207,0.0000020185, +0.0000020169,0.0000020156,0.0000020148,0.0000020146,0.0000020150, +0.0000020159,0.0000020165,0.0000020171,0.0000020183,0.0000020198, +0.0000020208,0.0000020216,0.0000020222,0.0000020230,0.0000020242, +0.0000020256,0.0000020264,0.0000020259,0.0000020250,0.0000020243, +0.0000020239,0.0000020232,0.0000020221,0.0000020204,0.0000020184, +0.0000020159,0.0000020127,0.0000020087,0.0000020048,0.0000020012, +0.0000019962,0.0000019886,0.0000019798,0.0000019725,0.0000019693, +0.0000019693,0.0000019697,0.0000019687,0.0000019637,0.0000019557, +0.0000019478,0.0000019404,0.0000019338,0.0000019293,0.0000019268, +0.0000019255,0.0000019249,0.0000019243,0.0000019236,0.0000019231, +0.0000019229,0.0000019246,0.0000019281,0.0000019324,0.0000019360, +0.0000019386,0.0000019410,0.0000019438,0.0000019470,0.0000019505, +0.0000019551,0.0000019606,0.0000019669,0.0000019728,0.0000019777, +0.0000019811,0.0000019837,0.0000019849,0.0000019843,0.0000019827, +0.0000019809,0.0000019794,0.0000019781,0.0000019771,0.0000019758, +0.0000019736,0.0000019709,0.0000019687,0.0000019672,0.0000019663, +0.0000019654,0.0000019640,0.0000019621,0.0000019593,0.0000019563, +0.0000019542,0.0000019535,0.0000019543,0.0000019564,0.0000019595, +0.0000019626,0.0000019655,0.0000019681,0.0000019706,0.0000019733, +0.0000019759,0.0000019782,0.0000019801,0.0000019819,0.0000019837, +0.0000019851,0.0000019861,0.0000019867,0.0000019868,0.0000019865, +0.0000019865,0.0000019870,0.0000019890,0.0000019910,0.0000019940, +0.0000019974,0.0000020010,0.0000020048,0.0000020086,0.0000020128, +0.0000020174,0.0000020221,0.0000020269,0.0000020317,0.0000020363, +0.0000020404,0.0000020436,0.0000020455,0.0000020461,0.0000020459, +0.0000020453,0.0000020449,0.0000020444,0.0000020442,0.0000020438, +0.0000020429,0.0000020417,0.0000020406,0.0000020398,0.0000020397, +0.0000020396,0.0000020399,0.0000020400,0.0000020411,0.0000020438, +0.0000020481,0.0000020534,0.0000020593,0.0000020659,0.0000020722, +0.0000020768,0.0000020805,0.0000020840,0.0000020868,0.0000020891, +0.0000020910,0.0000020925,0.0000020936,0.0000020941,0.0000020941, +0.0000020935,0.0000020920,0.0000020904,0.0000020887,0.0000020869, +0.0000020852,0.0000020843,0.0000020847,0.0000020867,0.0000020904, +0.0000020966,0.0000021038,0.0000021076,0.0000021074,0.0000021057, +0.0000021051,0.0000021052,0.0000021059,0.0000021059,0.0000021041, +0.0000021031,0.0000021027,0.0000020982,0.0000020940,0.0000020903, +0.0000020852,0.0000020816,0.0000020781,0.0000020772,0.0000020781, +0.0000020785,0.0000020787,0.0000020779,0.0000020765,0.0000020771, +0.0000020813,0.0000020869,0.0000020921,0.0000020981,0.0000021032, +0.0000021055,0.0000021056,0.0000021048,0.0000021033,0.0000021010, +0.0000020980,0.0000020940,0.0000020889,0.0000020832,0.0000020763, +0.0000020687,0.0000020619,0.0000020574,0.0000020542,0.0000020504, +0.0000020461,0.0000020439,0.0000020438,0.0000020455,0.0000020477, +0.0000020495,0.0000020501,0.0000020496,0.0000020485,0.0000020473, +0.0000020466,0.0000020457,0.0000020451,0.0000020451,0.0000020455, +0.0000020461,0.0000020467,0.0000020470,0.0000020471,0.0000020465, +0.0000020454,0.0000020439,0.0000020423,0.0000020407,0.0000020391, +0.0000020374,0.0000020356,0.0000020337,0.0000020319,0.0000020305, +0.0000020296,0.0000020289,0.0000020283,0.0000020280,0.0000020280, +0.0000020282,0.0000020286,0.0000020291,0.0000020296,0.0000020298, +0.0000020297,0.0000020296,0.0000020298,0.0000020301,0.0000020303, +0.0000020308,0.0000020315,0.0000020331,0.0000020353,0.0000020380, +0.0000020411,0.0000020448,0.0000020496,0.0000020552,0.0000020614, +0.0000020677,0.0000020735,0.0000020784,0.0000020816,0.0000020834, +0.0000020838,0.0000020831,0.0000020822,0.0000020816,0.0000020813, +0.0000020812,0.0000020812,0.0000020810,0.0000020810,0.0000020821, +0.0000020851,0.0000020905,0.0000020981,0.0000021066,0.0000021148, +0.0000021216,0.0000021263,0.0000021285,0.0000021280,0.0000021249, +0.0000021192,0.0000021115,0.0000021028,0.0000020942,0.0000020864, +0.0000020794,0.0000020733,0.0000020687,0.0000020659,0.0000020645, +0.0000020639,0.0000020638,0.0000020637,0.0000020634,0.0000020625, +0.0000020605,0.0000020569,0.0000020527,0.0000020467,0.0000020385, +0.0000020287,0.0000020186,0.0000020090,0.0000020007,0.0000019939, +0.0000019891,0.0000019855,0.0000019817,0.0000019763,0.0000019693, +0.0000019615,0.0000019544,0.0000019488,0.0000019454,0.0000019443, +0.0000019447,0.0000019455,0.0000019458,0.0000019460,0.0000019469, +0.0000019486,0.0000019507,0.0000019526,0.0000019528,0.0000019518, +0.0000019501,0.0000019493,0.0000019499,0.0000019519,0.0000019546, +0.0000019571,0.0000019591,0.0000019604,0.0000019610,0.0000019613, +0.0000019622,0.0000019647,0.0000019703,0.0000019787,0.0000019865, +0.0000019921,0.0000019964,0.0000020011,0.0000020068,0.0000020120, +0.0000020153,0.0000020158,0.0000020147,0.0000020137,0.0000020131, +0.0000020132,0.0000020136,0.0000020134,0.0000020094,0.0000020016, +0.0000019912,0.0000019810,0.0000019738,0.0000019707,0.0000019687, +0.0000019705,0.0000019737,0.0000019781,0.0000019822,0.0000019850, +0.0000019864,0.0000019870,0.0000019876,0.0000019892,0.0000019931, +0.0000020005,0.0000020111,0.0000020237,0.0000020367,0.0000020476, +0.0000020552,0.0000020587,0.0000020578,0.0000020569,0.0000020534, +0.0000020491,0.0000020447,0.0000020407,0.0000020372,0.0000020339, +0.0000020312,0.0000020289,0.0000020276,0.0000020255,0.0000020246, +0.0000020233,0.0000020225,0.0000020223,0.0000020224,0.0000020227, +0.0000020228,0.0000020223,0.0000020217,0.0000020210,0.0000020200, +0.0000020186,0.0000020173,0.0000020165,0.0000020166,0.0000020176, +0.0000020188,0.0000020205,0.0000020227,0.0000020258,0.0000020293, +0.0000020328,0.0000020353,0.0000020358,0.0000020341,0.0000020302, +0.0000020256,0.0000020213,0.0000020178,0.0000020149,0.0000020122, +0.0000020105,0.0000020101,0.0000020104,0.0000020110,0.0000020116, +0.0000020116,0.0000020113,0.0000020103,0.0000020088,0.0000020071, +0.0000020046,0.0000020022,0.0000020003,0.0000019981,0.0000019956, +0.0000019928,0.0000019900,0.0000019873,0.0000019858,0.0000019853, +0.0000019854,0.0000019852,0.0000019842,0.0000019824,0.0000019795, +0.0000019758,0.0000019734,0.0000019720,0.0000019717,0.0000019733, +0.0000019763,0.0000019799,0.0000019837,0.0000019871,0.0000019898, +0.0000019913,0.0000019917,0.0000019908,0.0000019881,0.0000019841, +0.0000019792,0.0000019736,0.0000019680,0.0000019633,0.0000019600, +0.0000019582,0.0000019572,0.0000019568,0.0000019571,0.0000019576, +0.0000019574,0.0000019561,0.0000019539,0.0000019506,0.0000019468, +0.0000019429,0.0000019392,0.0000019360,0.0000019336,0.0000019314, +0.0000019289,0.0000019261,0.0000019229,0.0000019199,0.0000019170, +0.0000019142,0.0000019116,0.0000019090,0.0000019067,0.0000019051, +0.0000019041,0.0000019030,0.0000019016,0.0000018997,0.0000018971, +0.0000018941,0.0000018910,0.0000018883,0.0000018867,0.0000018858, +0.0000018854,0.0000018853,0.0000018854,0.0000018853,0.0000018850, +0.0000018844,0.0000018836,0.0000018828,0.0000018822,0.0000018821, +0.0000018823,0.0000018827,0.0000018830,0.0000018836,0.0000018848, +0.0000018863,0.0000018876,0.0000018887,0.0000018898,0.0000018908, +0.0000018915,0.0000018919,0.0000018920,0.0000018918,0.0000018911, +0.0000018898,0.0000018880,0.0000018862,0.0000018843,0.0000018824, +0.0000018806,0.0000018787,0.0000018770,0.0000018754,0.0000018742, +0.0000018733,0.0000018729,0.0000018733,0.0000018744,0.0000018760, +0.0000018783,0.0000018814,0.0000018849,0.0000018887,0.0000018927, +0.0000018967,0.0000019005,0.0000019039,0.0000019064,0.0000019082, +0.0000019093,0.0000019104,0.0000019119,0.0000019140,0.0000019165, +0.0000019196,0.0000019232,0.0000019271,0.0000019306,0.0000019333, +0.0000019347,0.0000019351,0.0000019348,0.0000019344,0.0000019343, +0.0000019346,0.0000019354,0.0000019368,0.0000019387,0.0000019407, +0.0000019425,0.0000019439,0.0000019448,0.0000019453,0.0000019454, +0.0000019452,0.0000019450,0.0000019448,0.0000019448,0.0000019449, +0.0000019452,0.0000019457,0.0000019461,0.0000019466,0.0000019474, +0.0000019484,0.0000019495,0.0000019504,0.0000019512,0.0000019518, +0.0000019525,0.0000019533,0.0000019537,0.0000019536,0.0000019528, +0.0000019517,0.0000019507,0.0000019500,0.0000019496,0.0000019499, +0.0000019511,0.0000019523,0.0000019526,0.0000019521,0.0000019492, +0.0000019427,0.0000019347,0.0000019301,0.0000019311,0.0000019362, +0.0000019416,0.0000019453,0.0000019481,0.0000019514,0.0000019562, +0.0000019594,0.0000019576,0.0000019524,0.0000019495,0.0000019526, +0.0000019622,0.0000019755,0.0000019883,0.0000019991,0.0000020098, +0.0000020208,0.0000020279,0.0000020283,0.0000020271,0.0000020262, +0.0000020287,0.0000020345,0.0000020411,0.0000020468,0.0000020487, +0.0000020490,0.0000020476,0.0000020454,0.0000020426,0.0000020394, +0.0000020373,0.0000020366,0.0000020380,0.0000020418,0.0000020474, +0.0000020528,0.0000020559,0.0000020566,0.0000020552,0.0000020515, +0.0000020464,0.0000020406,0.0000020348,0.0000020309,0.0000020294, +0.0000020294,0.0000020296,0.0000020299,0.0000020304,0.0000020315, +0.0000020333,0.0000020352,0.0000020365,0.0000020368,0.0000020365, +0.0000020355,0.0000020345,0.0000020342,0.0000020346,0.0000020358, +0.0000020374,0.0000020392,0.0000020410,0.0000020427,0.0000020439, +0.0000020449,0.0000020458,0.0000020467,0.0000020474,0.0000020475, +0.0000020470,0.0000020455,0.0000020430,0.0000020401,0.0000020371, +0.0000020343,0.0000020320,0.0000020305,0.0000020298,0.0000020290, +0.0000020279,0.0000020262,0.0000020241,0.0000020214,0.0000020186, +0.0000020161,0.0000020141,0.0000020127,0.0000020117,0.0000020109, +0.0000020103,0.0000020097,0.0000020087,0.0000020076,0.0000020062, +0.0000020047,0.0000020032,0.0000020017,0.0000020003,0.0000019989, +0.0000019978,0.0000019968,0.0000019958,0.0000019947,0.0000019936, +0.0000019924,0.0000019913,0.0000019902,0.0000019890,0.0000019876, +0.0000019859,0.0000019838,0.0000019812,0.0000019780,0.0000019739, +0.0000019694,0.0000019646,0.0000019595,0.0000019546,0.0000019509, +0.0000019486,0.0000019475,0.0000019471,0.0000019471,0.0000019468, +0.0000019460,0.0000019447,0.0000019434,0.0000019426,0.0000019422, +0.0000019430,0.0000019449,0.0000019476,0.0000019506,0.0000019538, +0.0000019571,0.0000019609,0.0000019654,0.0000019700,0.0000019743, +0.0000019782,0.0000019816,0.0000019844,0.0000019867,0.0000019883, +0.0000019887,0.0000019873,0.0000019846,0.0000019809,0.0000019783, +0.0000019773,0.0000019778,0.0000019781,0.0000019770,0.0000019736, +0.0000019669,0.0000019588,0.0000019528,0.0000019500,0.0000019472, +0.0000019476,0.0000019458,0.0000019439,0.0000019433,0.0000019439, +0.0000019455,0.0000019465,0.0000019466,0.0000019462,0.0000019461, +0.0000019461,0.0000019464,0.0000019471,0.0000019486,0.0000019508, +0.0000019539,0.0000019578,0.0000019619,0.0000019648,0.0000019661, +0.0000019661,0.0000019652,0.0000019646,0.0000019649,0.0000019658, +0.0000019672,0.0000019686,0.0000019697,0.0000019697,0.0000019701, +0.0000019700,0.0000019704,0.0000019717,0.0000019735,0.0000019754, +0.0000019773,0.0000019790,0.0000019804,0.0000019815,0.0000019820, +0.0000019821,0.0000019822,0.0000019823,0.0000019821,0.0000019816, +0.0000019810,0.0000019800,0.0000019788,0.0000019771,0.0000019751, +0.0000019728,0.0000019709,0.0000019694,0.0000019679,0.0000019668, +0.0000019659,0.0000019652,0.0000019646,0.0000019642,0.0000019638, +0.0000019632,0.0000019623,0.0000019611,0.0000019596,0.0000019584, +0.0000019577,0.0000019578,0.0000019587,0.0000019606,0.0000019630, +0.0000019649,0.0000019663,0.0000019676,0.0000019684,0.0000019693, +0.0000019696,0.0000019695,0.0000019688,0.0000019678,0.0000019665, +0.0000019651,0.0000019636,0.0000019614,0.0000019591,0.0000019572, +0.0000019564,0.0000019566,0.0000019576,0.0000019593,0.0000019610, +0.0000019629,0.0000019651,0.0000019677,0.0000019700,0.0000019718, +0.0000019732,0.0000019739,0.0000019745,0.0000019753,0.0000019759, +0.0000019761,0.0000019767,0.0000019775,0.0000019784,0.0000019798, +0.0000019817,0.0000019836,0.0000019854,0.0000019870,0.0000019882, +0.0000019891,0.0000019893,0.0000019892,0.0000019887,0.0000019878, +0.0000019862,0.0000019843,0.0000019824,0.0000019805,0.0000019789, +0.0000019773,0.0000019762,0.0000019753,0.0000019751,0.0000019768, +0.0000019798,0.0000019844,0.0000019895,0.0000019947,0.0000020007, +0.0000020068,0.0000020124,0.0000020172,0.0000020224,0.0000020285, +0.0000020364,0.0000020453,0.0000020537,0.0000020603,0.0000020659, +0.0000020702,0.0000020723,0.0000020725,0.0000020724,0.0000020716, +0.0000020688,0.0000020650,0.0000020606,0.0000020559,0.0000020509, +0.0000020460,0.0000020417,0.0000020382,0.0000020356,0.0000020335, +0.0000020317,0.0000020305,0.0000020302,0.0000020310,0.0000020334, +0.0000020375,0.0000020426,0.0000020474,0.0000020514,0.0000020550, +0.0000020581,0.0000020606,0.0000020622,0.0000020629,0.0000020631, +0.0000020632,0.0000020633,0.0000020636,0.0000020643,0.0000020649, +0.0000020652,0.0000020651,0.0000020652,0.0000020654,0.0000020657, +0.0000020663,0.0000020672,0.0000020681,0.0000020689,0.0000020693, +0.0000020698,0.0000020708,0.0000020721,0.0000020740,0.0000020758, +0.0000020773,0.0000020786,0.0000020800,0.0000020820,0.0000020842, +0.0000020868,0.0000020894,0.0000020920,0.0000020948,0.0000020977, +0.0000021005,0.0000021031,0.0000021058,0.0000021083,0.0000021104, +0.0000021114,0.0000021118,0.0000021118,0.0000021117,0.0000021112, +0.0000021104,0.0000021094,0.0000021082,0.0000021071,0.0000021063, +0.0000021059,0.0000021059,0.0000021062,0.0000021067,0.0000021071, +0.0000021073,0.0000021079,0.0000021089,0.0000021101,0.0000021115, +0.0000021130,0.0000021147,0.0000021161,0.0000021172,0.0000021180, +0.0000021186,0.0000021191,0.0000021193,0.0000021193,0.0000021191, +0.0000021187,0.0000021182,0.0000021176,0.0000021169,0.0000021160, +0.0000021148,0.0000021132,0.0000021113,0.0000021092,0.0000021072, +0.0000021053,0.0000021035,0.0000021021,0.0000021012,0.0000021014, +0.0000021028,0.0000021048,0.0000021068,0.0000021083,0.0000021089, +0.0000021098,0.0000021122,0.0000021164,0.0000021215,0.0000021257, +0.0000021284,0.0000021304,0.0000021321,0.0000021333,0.0000021339, +0.0000021345,0.0000021347,0.0000021345,0.0000021337,0.0000021317, +0.0000021279,0.0000021233,0.0000021186,0.0000021151,0.0000021128, +0.0000021111,0.0000021106,0.0000021108,0.0000021109,0.0000021128, +0.0000021232,0.0000021352,0.0000021429,0.0000021530,0.0000021638, +0.0000021704,0.0000021726,0.0000021717,0.0000021672,0.0000021592, +0.0000021490,0.0000021379,0.0000021271,0.0000021179,0.0000021093, +0.0000021002,0.0000020948,0.0000020930,0.0000020904,0.0000020867, +0.0000020843,0.0000020839,0.0000020853,0.0000020874,0.0000020884, +0.0000020885,0.0000020883,0.0000020880,0.0000020875,0.0000020872, +0.0000020867,0.0000020856,0.0000020834,0.0000020796,0.0000020746, +0.0000020681,0.0000020599,0.0000020521,0.0000020463,0.0000020421, +0.0000020403,0.0000020414,0.0000020447,0.0000020481,0.0000020508, +0.0000020520,0.0000020525,0.0000020520,0.0000020501,0.0000020464, +0.0000020417,0.0000020374,0.0000020346,0.0000020322,0.0000020289, +0.0000020247,0.0000020210,0.0000020198,0.0000020234,0.0000020332, +0.0000020447,0.0000020530,0.0000020565,0.0000020561,0.0000020525, +0.0000020461,0.0000020418,0.0000020355,0.0000020201,0.0000020053, +0.0000019995,0.0000019999,0.0000020119,0.0000020289,0.0000020342, +0.0000020312,0.0000020291,0.0000020321,0.0000020485,0.0000020679, +0.0000020758,0.0000020761,0.0000020789,0.0000020868,0.0000021071, +0.0000021235,0.0000021289,0.0000021430,0.0000021579,0.0000021631, +0.0000021643,0.0000021679,0.0000021707,0.0000021713,0.0000021743, +0.0000021828,0.0000021904,0.0000021912,0.0000021897,0.0000021868, +0.0000021828,0.0000021841,0.0000021926,0.0000021983,0.0000021997, +0.0000022006,0.0000022028,0.0000022049,0.0000022044,0.0000022021, +0.0000021990,0.0000021956,0.0000021933,0.0000021920,0.0000021927, +0.0000021941,0.0000021948,0.0000021970,0.0000021998,0.0000022003, +0.0000021991,0.0000021957,0.0000021913,0.0000021874,0.0000021847, +0.0000021817,0.0000021774,0.0000021723,0.0000021669,0.0000021617, +0.0000021594,0.0000021601,0.0000021623,0.0000021654,0.0000021687, +0.0000021714,0.0000021733,0.0000021739,0.0000021723,0.0000021680, +0.0000021631,0.0000021586,0.0000021544,0.0000021506,0.0000021473, +0.0000021448,0.0000021430,0.0000021417,0.0000021415,0.0000021411, +0.0000021395,0.0000021372,0.0000021353,0.0000021333,0.0000021316, +0.0000021317,0.0000021312,0.0000021288,0.0000021266,0.0000021247, +0.0000021229,0.0000021209,0.0000021184,0.0000021157,0.0000021131, +0.0000021113,0.0000021099,0.0000021085,0.0000021063,0.0000021041, +0.0000021022,0.0000021004,0.0000020979,0.0000020950,0.0000020925, +0.0000020895,0.0000020856,0.0000020810,0.0000020771,0.0000020740, +0.0000020714,0.0000020693,0.0000020684,0.0000020683,0.0000020688, +0.0000020687,0.0000020687,0.0000020685,0.0000020682,0.0000020676, +0.0000020658,0.0000020637,0.0000020617,0.0000020598,0.0000020579, +0.0000020564,0.0000020549,0.0000020540,0.0000020540,0.0000020547, +0.0000020563,0.0000020585,0.0000020609,0.0000020629,0.0000020647, +0.0000020657,0.0000020665,0.0000020669,0.0000020673,0.0000020675, +0.0000020677,0.0000020681,0.0000020684,0.0000020695,0.0000020712, +0.0000020739,0.0000020764,0.0000020776,0.0000020769,0.0000020757, +0.0000020747,0.0000020738,0.0000020728,0.0000020724,0.0000020730, +0.0000020737,0.0000020742,0.0000020743,0.0000020734,0.0000020724, +0.0000020724,0.0000020732,0.0000020746,0.0000020760,0.0000020778, +0.0000020800,0.0000020817,0.0000020831,0.0000020848,0.0000020864, +0.0000020882,0.0000020906,0.0000020933,0.0000020954,0.0000020961, +0.0000020971,0.0000020970,0.0000020964,0.0000020956,0.0000020948, +0.0000020948,0.0000020957,0.0000020984,0.0000021021,0.0000021057, +0.0000021090,0.0000021118,0.0000021146,0.0000021177,0.0000021212, +0.0000021242,0.0000021258,0.0000021278,0.0000021290,0.0000021298, +0.0000021300,0.0000021297,0.0000021287,0.0000021283,0.0000021285, +0.0000021284,0.0000021281,0.0000021283,0.0000021283,0.0000021285, +0.0000021290,0.0000021293,0.0000021292,0.0000021294,0.0000021302, +0.0000021307,0.0000021311,0.0000021311,0.0000021308,0.0000021303, +0.0000021298,0.0000021295,0.0000021292,0.0000021289,0.0000021294, +0.0000021309,0.0000021326,0.0000021343,0.0000021361,0.0000021380, +0.0000021401,0.0000021420,0.0000021441,0.0000021465,0.0000021493, +0.0000021521,0.0000021541,0.0000021557,0.0000021570,0.0000021583, +0.0000021591,0.0000021599,0.0000021605,0.0000021607,0.0000021609, +0.0000021614,0.0000021615,0.0000021612,0.0000021606,0.0000021600, +0.0000021594,0.0000021582,0.0000021570,0.0000021560,0.0000021558, +0.0000021561,0.0000021567,0.0000021581,0.0000021601,0.0000021623, +0.0000021652,0.0000021689,0.0000021732,0.0000021774,0.0000021809, +0.0000021834,0.0000021856,0.0000021877,0.0000021897,0.0000021916, +0.0000021935,0.0000021950,0.0000021962,0.0000021974,0.0000021973, +0.0000021972,0.0000021966,0.0000021956,0.0000021941,0.0000021912, +0.0000021874,0.0000021835,0.0000021803,0.0000021775,0.0000021753, +0.0000021740,0.0000021744,0.0000021757,0.0000021777,0.0000021800, +0.0000021824,0.0000021842,0.0000021859,0.0000021877,0.0000021897, +0.0000021916,0.0000021936,0.0000021953,0.0000021968,0.0000021977, +0.0000021976,0.0000021964,0.0000021946,0.0000021923,0.0000021895, +0.0000021865,0.0000021840,0.0000021825,0.0000021821,0.0000021823, +0.0000021823,0.0000021816,0.0000021810,0.0000021815,0.0000021826, +0.0000021833,0.0000021833,0.0000021830,0.0000021822,0.0000021809, +0.0000021789,0.0000021763,0.0000021733,0.0000021704,0.0000021682, +0.0000021673,0.0000021676,0.0000021696,0.0000021727,0.0000021764, +0.0000021807,0.0000021849,0.0000021886,0.0000021912,0.0000021930, +0.0000021934,0.0000021935,0.0000021930,0.0000021920,0.0000021910, +0.0000021903,0.0000021901,0.0000021892,0.0000021886,0.0000021876, +0.0000021851,0.0000021822,0.0000021796,0.0000021764,0.0000021732, +0.0000021701,0.0000021668,0.0000021625,0.0000021575,0.0000021519, +0.0000021458,0.0000021398,0.0000021339,0.0000021286,0.0000021241, +0.0000021203,0.0000021167,0.0000021132,0.0000021105,0.0000021088, +0.0000021082,0.0000021084,0.0000021091,0.0000021101,0.0000021115, +0.0000021131,0.0000021149,0.0000021165,0.0000021175,0.0000021180, +0.0000021182,0.0000021178,0.0000021165,0.0000021142,0.0000021109, +0.0000021069,0.0000021023,0.0000020971,0.0000020917,0.0000020865, +0.0000020817,0.0000020771,0.0000020725,0.0000020679,0.0000020632, +0.0000020589,0.0000020549,0.0000020511,0.0000020470,0.0000020427, +0.0000020383,0.0000020345,0.0000020313,0.0000020296,0.0000020294, +0.0000020310,0.0000020327,0.0000020352,0.0000020383,0.0000020418, +0.0000020450,0.0000020474,0.0000020485,0.0000020484,0.0000020476, +0.0000020476,0.0000020475,0.0000020476,0.0000020473,0.0000020460, +0.0000020448,0.0000020437,0.0000020426,0.0000020415,0.0000020405, +0.0000020393,0.0000020377,0.0000020354,0.0000020323,0.0000020291, +0.0000020264,0.0000020243,0.0000020236,0.0000020240,0.0000020247, +0.0000020250,0.0000020236,0.0000020221,0.0000020201,0.0000020177, +0.0000020155,0.0000020137,0.0000020127,0.0000020121,0.0000020119, +0.0000020118,0.0000020129,0.0000020143,0.0000020160,0.0000020174, +0.0000020186,0.0000020200,0.0000020219,0.0000020243,0.0000020265, +0.0000020271,0.0000020268,0.0000020263,0.0000020261,0.0000020259, +0.0000020257,0.0000020248,0.0000020232,0.0000020215,0.0000020193, +0.0000020160,0.0000020119,0.0000020081,0.0000020040,0.0000019984, +0.0000019904,0.0000019811,0.0000019739,0.0000019708,0.0000019707, +0.0000019709,0.0000019684,0.0000019620,0.0000019545,0.0000019471, +0.0000019403,0.0000019345,0.0000019308,0.0000019283,0.0000019269, +0.0000019257,0.0000019243,0.0000019234,0.0000019231,0.0000019241, +0.0000019271,0.0000019312,0.0000019352,0.0000019383,0.0000019410, +0.0000019441,0.0000019474,0.0000019504,0.0000019541,0.0000019588, +0.0000019640,0.0000019688,0.0000019730,0.0000019759,0.0000019776, +0.0000019787,0.0000019786,0.0000019777,0.0000019771,0.0000019772, +0.0000019774,0.0000019768,0.0000019748,0.0000019719,0.0000019691, +0.0000019676,0.0000019664,0.0000019657,0.0000019651,0.0000019640, +0.0000019628,0.0000019615,0.0000019602,0.0000019596,0.0000019600, +0.0000019616,0.0000019637,0.0000019665,0.0000019691,0.0000019712, +0.0000019732,0.0000019755,0.0000019779,0.0000019805,0.0000019828, +0.0000019849,0.0000019868,0.0000019885,0.0000019901,0.0000019915, +0.0000019924,0.0000019927,0.0000019927,0.0000019924,0.0000019924, +0.0000019927,0.0000019932,0.0000019945,0.0000019966,0.0000019986, +0.0000020013,0.0000020043,0.0000020070,0.0000020099,0.0000020132, +0.0000020167,0.0000020204,0.0000020244,0.0000020288,0.0000020330, +0.0000020367,0.0000020394,0.0000020411,0.0000020421,0.0000020426, +0.0000020430,0.0000020436,0.0000020441,0.0000020444,0.0000020442, +0.0000020437,0.0000020432,0.0000020429,0.0000020427,0.0000020426, +0.0000020425,0.0000020426,0.0000020439,0.0000020458,0.0000020487, +0.0000020532,0.0000020589,0.0000020649,0.0000020709,0.0000020766, +0.0000020815,0.0000020856,0.0000020888,0.0000020911,0.0000020928, +0.0000020937,0.0000020939,0.0000020932,0.0000020915,0.0000020891, +0.0000020864,0.0000020837,0.0000020813,0.0000020795,0.0000020788, +0.0000020793,0.0000020809,0.0000020843,0.0000020920,0.0000021020, +0.0000021075,0.0000021075,0.0000021062,0.0000021060,0.0000021066, +0.0000021074,0.0000021062,0.0000021039,0.0000021035,0.0000021022, +0.0000020973,0.0000020939,0.0000020895,0.0000020845,0.0000020813, +0.0000020783,0.0000020778,0.0000020786,0.0000020789,0.0000020794, +0.0000020787,0.0000020771,0.0000020774,0.0000020815,0.0000020878, +0.0000020937,0.0000020993,0.0000021040,0.0000021060,0.0000021061, +0.0000021048,0.0000021027,0.0000021000,0.0000020970,0.0000020932, +0.0000020883,0.0000020825,0.0000020760,0.0000020695,0.0000020642, +0.0000020601,0.0000020562,0.0000020515,0.0000020470,0.0000020445, +0.0000020444,0.0000020454,0.0000020463,0.0000020467,0.0000020465, +0.0000020458,0.0000020447,0.0000020435,0.0000020425,0.0000020418, +0.0000020417,0.0000020422,0.0000020432,0.0000020444,0.0000020455, +0.0000020461,0.0000020461,0.0000020453,0.0000020439,0.0000020422, +0.0000020403,0.0000020381,0.0000020361,0.0000020344,0.0000020328, +0.0000020313,0.0000020300,0.0000020293,0.0000020290,0.0000020288, +0.0000020287,0.0000020287,0.0000020292,0.0000020297,0.0000020301, +0.0000020302,0.0000020302,0.0000020301,0.0000020296,0.0000020292, +0.0000020285,0.0000020277,0.0000020269,0.0000020263,0.0000020263, +0.0000020271,0.0000020285,0.0000020300,0.0000020318,0.0000020340, +0.0000020370,0.0000020409,0.0000020457,0.0000020514,0.0000020575, +0.0000020636,0.0000020689,0.0000020730,0.0000020755,0.0000020768, +0.0000020771,0.0000020767,0.0000020760,0.0000020758,0.0000020759, +0.0000020760,0.0000020759,0.0000020755,0.0000020755,0.0000020768, +0.0000020795,0.0000020841,0.0000020904,0.0000020971,0.0000021030, +0.0000021069,0.0000021083,0.0000021068,0.0000021024,0.0000020958, +0.0000020879,0.0000020798,0.0000020722,0.0000020649,0.0000020587, +0.0000020547,0.0000020536,0.0000020540,0.0000020556,0.0000020572, +0.0000020584,0.0000020588,0.0000020583,0.0000020567,0.0000020540, +0.0000020499,0.0000020440,0.0000020361,0.0000020266,0.0000020169, +0.0000020078,0.0000019996,0.0000019925,0.0000019872,0.0000019831, +0.0000019788,0.0000019733,0.0000019664,0.0000019593,0.0000019533, +0.0000019489,0.0000019462,0.0000019452,0.0000019455,0.0000019462, +0.0000019465,0.0000019469,0.0000019477,0.0000019487,0.0000019504, +0.0000019520,0.0000019527,0.0000019523,0.0000019511,0.0000019500, +0.0000019499,0.0000019515,0.0000019539,0.0000019563,0.0000019582, +0.0000019594,0.0000019600,0.0000019600,0.0000019605,0.0000019626, +0.0000019678,0.0000019755,0.0000019834,0.0000019897,0.0000019943, +0.0000019986,0.0000020037,0.0000020090,0.0000020125,0.0000020133, +0.0000020124,0.0000020109,0.0000020097,0.0000020092,0.0000020097, +0.0000020095,0.0000020069,0.0000020028,0.0000019941,0.0000019842, +0.0000019754,0.0000019691,0.0000019663,0.0000019638,0.0000019648, +0.0000019677,0.0000019715,0.0000019754,0.0000019787,0.0000019812, +0.0000019834,0.0000019856,0.0000019881,0.0000019922,0.0000019991, +0.0000020087,0.0000020202,0.0000020324,0.0000020432,0.0000020511, +0.0000020556,0.0000020560,0.0000020551,0.0000020526,0.0000020491, +0.0000020452,0.0000020411,0.0000020368,0.0000020329,0.0000020293, +0.0000020259,0.0000020229,0.0000020201,0.0000020178,0.0000020148, +0.0000020123,0.0000020116,0.0000020107,0.0000020097,0.0000020093, +0.0000020094,0.0000020098,0.0000020101,0.0000020109,0.0000020122, +0.0000020140,0.0000020160,0.0000020184,0.0000020209,0.0000020241, +0.0000020280,0.0000020317,0.0000020350,0.0000020366,0.0000020363, +0.0000020338,0.0000020297,0.0000020254,0.0000020215,0.0000020180, +0.0000020146,0.0000020114,0.0000020087,0.0000020071,0.0000020062, +0.0000020060,0.0000020064,0.0000020070,0.0000020078,0.0000020081, +0.0000020077,0.0000020068,0.0000020046,0.0000020028,0.0000020008, +0.0000019982,0.0000019956,0.0000019927,0.0000019899,0.0000019870, +0.0000019846,0.0000019825,0.0000019819,0.0000019817,0.0000019808, +0.0000019793,0.0000019765,0.0000019729,0.0000019699,0.0000019677, +0.0000019666,0.0000019672,0.0000019694,0.0000019726,0.0000019759, +0.0000019790,0.0000019813,0.0000019826,0.0000019831,0.0000019826, +0.0000019801,0.0000019766,0.0000019726,0.0000019680,0.0000019633, +0.0000019594,0.0000019563,0.0000019544,0.0000019532,0.0000019523, +0.0000019520,0.0000019519,0.0000019515,0.0000019509,0.0000019497, +0.0000019476,0.0000019448,0.0000019418,0.0000019386,0.0000019357, +0.0000019330,0.0000019300,0.0000019269,0.0000019236,0.0000019202, +0.0000019167,0.0000019131,0.0000019095,0.0000019061,0.0000019028, +0.0000019002,0.0000018983,0.0000018967,0.0000018951,0.0000018936, +0.0000018921,0.0000018903,0.0000018879,0.0000018853,0.0000018831, +0.0000018816,0.0000018807,0.0000018802,0.0000018799,0.0000018796, +0.0000018790,0.0000018782,0.0000018777,0.0000018773,0.0000018769, +0.0000018767,0.0000018764,0.0000018762,0.0000018757,0.0000018752, +0.0000018748,0.0000018748,0.0000018752,0.0000018760,0.0000018774, +0.0000018791,0.0000018808,0.0000018822,0.0000018833,0.0000018842, +0.0000018847,0.0000018850,0.0000018847,0.0000018838,0.0000018824, +0.0000018810,0.0000018797,0.0000018784,0.0000018769,0.0000018753, +0.0000018740,0.0000018728,0.0000018718,0.0000018707,0.0000018697, +0.0000018688,0.0000018685,0.0000018693,0.0000018712,0.0000018739, +0.0000018773,0.0000018812,0.0000018856,0.0000018901,0.0000018946, +0.0000018987,0.0000019021,0.0000019044,0.0000019056,0.0000019063, +0.0000019068,0.0000019076,0.0000019092,0.0000019118,0.0000019155, +0.0000019197,0.0000019236,0.0000019270,0.0000019295,0.0000019312, +0.0000019322,0.0000019326,0.0000019327,0.0000019327,0.0000019330, +0.0000019337,0.0000019347,0.0000019358,0.0000019370,0.0000019380, +0.0000019388,0.0000019392,0.0000019395,0.0000019396,0.0000019397, +0.0000019397,0.0000019400,0.0000019406,0.0000019415,0.0000019426, +0.0000019435,0.0000019444,0.0000019454,0.0000019463,0.0000019470, +0.0000019475,0.0000019480,0.0000019484,0.0000019493,0.0000019505, +0.0000019516,0.0000019519,0.0000019514,0.0000019504,0.0000019494, +0.0000019484,0.0000019480,0.0000019484,0.0000019497,0.0000019510, +0.0000019514,0.0000019509,0.0000019472,0.0000019397,0.0000019317, +0.0000019283,0.0000019312,0.0000019370,0.0000019417,0.0000019448, +0.0000019474,0.0000019508,0.0000019553,0.0000019572,0.0000019540, +0.0000019491,0.0000019482,0.0000019524,0.0000019625,0.0000019750, +0.0000019866,0.0000019967,0.0000020071,0.0000020179,0.0000020256, +0.0000020266,0.0000020257,0.0000020250,0.0000020268,0.0000020313, +0.0000020373,0.0000020428,0.0000020468,0.0000020473,0.0000020470, +0.0000020452,0.0000020423,0.0000020391,0.0000020368,0.0000020359, +0.0000020368,0.0000020401,0.0000020452,0.0000020509,0.0000020557, +0.0000020582,0.0000020578,0.0000020546,0.0000020496,0.0000020442, +0.0000020388,0.0000020342,0.0000020314,0.0000020308,0.0000020309, +0.0000020313,0.0000020322,0.0000020334,0.0000020349,0.0000020361, +0.0000020367,0.0000020370,0.0000020369,0.0000020363,0.0000020354, +0.0000020348,0.0000020347,0.0000020353,0.0000020365,0.0000020381, +0.0000020400,0.0000020420,0.0000020437,0.0000020454,0.0000020468, +0.0000020477,0.0000020480,0.0000020477,0.0000020467,0.0000020449, +0.0000020428,0.0000020406,0.0000020383,0.0000020363,0.0000020347, +0.0000020333,0.0000020316,0.0000020295,0.0000020269,0.0000020240, +0.0000020213,0.0000020191,0.0000020175,0.0000020166,0.0000020162, +0.0000020163,0.0000020162,0.0000020158,0.0000020149,0.0000020135, +0.0000020118,0.0000020101,0.0000020085,0.0000020070,0.0000020057, +0.0000020044,0.0000020032,0.0000020021,0.0000020009,0.0000019996, +0.0000019984,0.0000019972,0.0000019960,0.0000019946,0.0000019932, +0.0000019919,0.0000019906,0.0000019893,0.0000019877,0.0000019856, +0.0000019832,0.0000019803,0.0000019771,0.0000019733,0.0000019688, +0.0000019641,0.0000019596,0.0000019552,0.0000019516,0.0000019493, +0.0000019481,0.0000019474,0.0000019465,0.0000019448,0.0000019424, +0.0000019401,0.0000019386,0.0000019376,0.0000019382,0.0000019401, +0.0000019429,0.0000019459,0.0000019493,0.0000019533,0.0000019576, +0.0000019624,0.0000019670,0.0000019711,0.0000019749,0.0000019783, +0.0000019812,0.0000019837,0.0000019855,0.0000019859,0.0000019843, +0.0000019814,0.0000019773,0.0000019743,0.0000019735,0.0000019744, +0.0000019751,0.0000019745,0.0000019714,0.0000019643,0.0000019561, +0.0000019503,0.0000019542,0.0000019487,0.0000019468,0.0000019462, +0.0000019455,0.0000019455,0.0000019469,0.0000019486,0.0000019497, +0.0000019495,0.0000019488,0.0000019483,0.0000019481,0.0000019482, +0.0000019487,0.0000019492,0.0000019498,0.0000019510,0.0000019535, +0.0000019562,0.0000019587,0.0000019599,0.0000019597,0.0000019584, +0.0000019569,0.0000019565,0.0000019577,0.0000019606,0.0000019639, +0.0000019671,0.0000019695,0.0000019706,0.0000019721,0.0000019736, +0.0000019749,0.0000019758,0.0000019765,0.0000019771,0.0000019773, +0.0000019771,0.0000019771,0.0000019769,0.0000019765,0.0000019759, +0.0000019750,0.0000019738,0.0000019725,0.0000019710,0.0000019692, +0.0000019674,0.0000019653,0.0000019636,0.0000019625,0.0000019617, +0.0000019613,0.0000019608,0.0000019603,0.0000019598,0.0000019596, +0.0000019595,0.0000019590,0.0000019580,0.0000019566,0.0000019550, +0.0000019533,0.0000019519,0.0000019512,0.0000019515,0.0000019529, +0.0000019548,0.0000019566,0.0000019583,0.0000019597,0.0000019608, +0.0000019617,0.0000019621,0.0000019619,0.0000019610,0.0000019600, +0.0000019589,0.0000019577,0.0000019560,0.0000019539,0.0000019521, +0.0000019502,0.0000019492,0.0000019498,0.0000019508,0.0000019519, +0.0000019537,0.0000019558,0.0000019580,0.0000019601,0.0000019621, +0.0000019635,0.0000019644,0.0000019647,0.0000019652,0.0000019661, +0.0000019667,0.0000019668,0.0000019673,0.0000019686,0.0000019703, +0.0000019725,0.0000019755,0.0000019788,0.0000019820,0.0000019848, +0.0000019868,0.0000019879,0.0000019877,0.0000019868,0.0000019853, +0.0000019834,0.0000019808,0.0000019776,0.0000019743,0.0000019714, +0.0000019687,0.0000019666,0.0000019647,0.0000019631,0.0000019634, +0.0000019662,0.0000019706,0.0000019765,0.0000019823,0.0000019877, +0.0000019934,0.0000019999,0.0000020069,0.0000020143,0.0000020209, +0.0000020268,0.0000020335,0.0000020408,0.0000020479,0.0000020547, +0.0000020610,0.0000020654,0.0000020675,0.0000020677,0.0000020675, +0.0000020665,0.0000020637,0.0000020601,0.0000020565,0.0000020525, +0.0000020477,0.0000020428,0.0000020383,0.0000020349,0.0000020327, +0.0000020312,0.0000020300,0.0000020294,0.0000020294,0.0000020299, +0.0000020321,0.0000020363,0.0000020414,0.0000020458,0.0000020494, +0.0000020527,0.0000020557,0.0000020581,0.0000020599,0.0000020610, +0.0000020613,0.0000020616,0.0000020615,0.0000020614,0.0000020618, +0.0000020622,0.0000020623,0.0000020622,0.0000020624,0.0000020628, +0.0000020633,0.0000020642,0.0000020653,0.0000020664,0.0000020671, +0.0000020676,0.0000020679,0.0000020686,0.0000020698,0.0000020713, +0.0000020727,0.0000020738,0.0000020747,0.0000020756,0.0000020767, +0.0000020782,0.0000020801,0.0000020819,0.0000020837,0.0000020858, +0.0000020884,0.0000020912,0.0000020940,0.0000020969,0.0000021000, +0.0000021028,0.0000021048,0.0000021063,0.0000021074,0.0000021079, +0.0000021079,0.0000021074,0.0000021063,0.0000021049,0.0000021037, +0.0000021030,0.0000021025,0.0000021023,0.0000021024,0.0000021028, +0.0000021034,0.0000021042,0.0000021055,0.0000021071,0.0000021087, +0.0000021107,0.0000021129,0.0000021151,0.0000021173,0.0000021194, +0.0000021213,0.0000021230,0.0000021240,0.0000021241,0.0000021237, +0.0000021225,0.0000021212,0.0000021198,0.0000021185,0.0000021173, +0.0000021162,0.0000021150,0.0000021136,0.0000021119,0.0000021100, +0.0000021083,0.0000021063,0.0000021042,0.0000021022,0.0000021007, +0.0000020999,0.0000020999,0.0000021008,0.0000021025,0.0000021040, +0.0000021050,0.0000021056,0.0000021075,0.0000021120,0.0000021177, +0.0000021227,0.0000021264,0.0000021290,0.0000021308,0.0000021316, +0.0000021320,0.0000021321,0.0000021318,0.0000021312,0.0000021298, +0.0000021265,0.0000021217,0.0000021171,0.0000021136,0.0000021113, +0.0000021098,0.0000021097,0.0000021103,0.0000021109,0.0000021114, +0.0000021163,0.0000021285,0.0000021385,0.0000021457,0.0000021557, +0.0000021656,0.0000021705,0.0000021709,0.0000021682,0.0000021619, +0.0000021521,0.0000021414,0.0000021301,0.0000021203,0.0000021116, +0.0000021014,0.0000020943,0.0000020921,0.0000020898,0.0000020865, +0.0000020839,0.0000020831,0.0000020840,0.0000020864,0.0000020880, +0.0000020882,0.0000020876,0.0000020868,0.0000020861,0.0000020855, +0.0000020850,0.0000020844,0.0000020834,0.0000020809,0.0000020766, +0.0000020709,0.0000020632,0.0000020549,0.0000020483,0.0000020431, +0.0000020391,0.0000020379,0.0000020397,0.0000020433,0.0000020466, +0.0000020486,0.0000020496,0.0000020502,0.0000020499,0.0000020482, +0.0000020447,0.0000020402,0.0000020362,0.0000020331,0.0000020302, +0.0000020274,0.0000020248,0.0000020223,0.0000020212,0.0000020252, +0.0000020354,0.0000020468,0.0000020543,0.0000020567,0.0000020558, +0.0000020519,0.0000020465,0.0000020420,0.0000020301,0.0000020120, +0.0000020008,0.0000019988,0.0000020053,0.0000020233,0.0000020347, +0.0000020343,0.0000020314,0.0000020312,0.0000020436,0.0000020645, +0.0000020750,0.0000020749,0.0000020754,0.0000020813,0.0000020995, +0.0000021176,0.0000021239,0.0000021350,0.0000021524,0.0000021605, +0.0000021627,0.0000021657,0.0000021698,0.0000021709,0.0000021731, +0.0000021791,0.0000021877,0.0000021915,0.0000021900,0.0000021883, +0.0000021848,0.0000021822,0.0000021861,0.0000021953,0.0000022004, +0.0000022012,0.0000022010,0.0000022015,0.0000022018,0.0000022011, +0.0000021990,0.0000021959,0.0000021925,0.0000021905,0.0000021900, +0.0000021917,0.0000021934,0.0000021947,0.0000021966,0.0000021977, +0.0000021978,0.0000021961,0.0000021925,0.0000021879,0.0000021838, +0.0000021794,0.0000021734,0.0000021675,0.0000021622,0.0000021592, +0.0000021591,0.0000021606,0.0000021632,0.0000021667,0.0000021698, +0.0000021725,0.0000021748,0.0000021757,0.0000021742,0.0000021702, +0.0000021659,0.0000021624,0.0000021593,0.0000021567,0.0000021542, +0.0000021512,0.0000021483,0.0000021456,0.0000021434,0.0000021418, +0.0000021394,0.0000021358,0.0000021311,0.0000021269,0.0000021237, +0.0000021232,0.0000021226,0.0000021218,0.0000021214,0.0000021214, +0.0000021216,0.0000021215,0.0000021211,0.0000021206,0.0000021201, +0.0000021197,0.0000021191,0.0000021181,0.0000021167,0.0000021153, +0.0000021137,0.0000021119,0.0000021099,0.0000021067,0.0000021035, +0.0000020996,0.0000020950,0.0000020900,0.0000020859,0.0000020826, +0.0000020797,0.0000020768,0.0000020742,0.0000020729,0.0000020724, +0.0000020716,0.0000020711,0.0000020707,0.0000020702,0.0000020690, +0.0000020668,0.0000020644,0.0000020621,0.0000020600,0.0000020580, +0.0000020563,0.0000020546,0.0000020528,0.0000020512,0.0000020506, +0.0000020512,0.0000020523,0.0000020541,0.0000020556,0.0000020570, +0.0000020581,0.0000020585,0.0000020592,0.0000020597,0.0000020597, +0.0000020596,0.0000020594,0.0000020595,0.0000020600,0.0000020609, +0.0000020625,0.0000020635,0.0000020640,0.0000020633,0.0000020623, +0.0000020620,0.0000020616,0.0000020613,0.0000020616,0.0000020629, +0.0000020637,0.0000020640,0.0000020640,0.0000020631,0.0000020617, +0.0000020607,0.0000020606,0.0000020613,0.0000020624,0.0000020647, +0.0000020673,0.0000020694,0.0000020715,0.0000020737,0.0000020757, +0.0000020780,0.0000020807,0.0000020831,0.0000020847,0.0000020854, +0.0000020857,0.0000020854,0.0000020847,0.0000020837,0.0000020825, +0.0000020823,0.0000020840,0.0000020867,0.0000020902,0.0000020938, +0.0000020971,0.0000021000,0.0000021025,0.0000021048,0.0000021071, +0.0000021092,0.0000021109,0.0000021123,0.0000021135,0.0000021147, +0.0000021155,0.0000021166,0.0000021184,0.0000021211,0.0000021236, +0.0000021258,0.0000021278,0.0000021287,0.0000021300,0.0000021313, +0.0000021316,0.0000021312,0.0000021302,0.0000021292,0.0000021286, +0.0000021282,0.0000021278,0.0000021273,0.0000021270,0.0000021266, +0.0000021262,0.0000021262,0.0000021263,0.0000021265,0.0000021273, +0.0000021289,0.0000021308,0.0000021326,0.0000021341,0.0000021356, +0.0000021371,0.0000021386,0.0000021401,0.0000021420,0.0000021444, +0.0000021467,0.0000021486,0.0000021500,0.0000021514,0.0000021523, +0.0000021528,0.0000021529,0.0000021528,0.0000021527,0.0000021522, +0.0000021518,0.0000021510,0.0000021499,0.0000021487,0.0000021475, +0.0000021468,0.0000021461,0.0000021452,0.0000021446,0.0000021444, +0.0000021445,0.0000021451,0.0000021464,0.0000021478,0.0000021496, +0.0000021526,0.0000021565,0.0000021603,0.0000021642,0.0000021675, +0.0000021700,0.0000021723,0.0000021749,0.0000021776,0.0000021806, +0.0000021833,0.0000021858,0.0000021883,0.0000021912,0.0000021935, +0.0000021954,0.0000021968,0.0000021976,0.0000021982,0.0000021975, +0.0000021957,0.0000021929,0.0000021894,0.0000021855,0.0000021817, +0.0000021791,0.0000021779,0.0000021782,0.0000021798,0.0000021821, +0.0000021847,0.0000021873,0.0000021898,0.0000021921,0.0000021940, +0.0000021955,0.0000021969,0.0000021980,0.0000021988,0.0000021995, +0.0000021996,0.0000021988,0.0000021973,0.0000021951,0.0000021922, +0.0000021894,0.0000021870,0.0000021854,0.0000021845,0.0000021840, +0.0000021828,0.0000021810,0.0000021794,0.0000021787,0.0000021792, +0.0000021799,0.0000021799,0.0000021796,0.0000021793,0.0000021786, +0.0000021775,0.0000021755,0.0000021731,0.0000021703,0.0000021681, +0.0000021670,0.0000021671,0.0000021684,0.0000021704,0.0000021732, +0.0000021770,0.0000021813,0.0000021853,0.0000021886,0.0000021911, +0.0000021927,0.0000021934,0.0000021930,0.0000021920,0.0000021907, +0.0000021894,0.0000021883,0.0000021875,0.0000021867,0.0000021851, +0.0000021831,0.0000021806,0.0000021782,0.0000021753,0.0000021726, +0.0000021699,0.0000021675,0.0000021648,0.0000021612,0.0000021581, +0.0000021547,0.0000021512,0.0000021471,0.0000021432,0.0000021395, +0.0000021359,0.0000021318,0.0000021275,0.0000021236,0.0000021207, +0.0000021187,0.0000021174,0.0000021163,0.0000021157,0.0000021159, +0.0000021168,0.0000021178,0.0000021189,0.0000021199,0.0000021208, +0.0000021216,0.0000021219,0.0000021216,0.0000021207,0.0000021190, +0.0000021165,0.0000021135,0.0000021098,0.0000021057,0.0000021012, +0.0000020964,0.0000020913,0.0000020856,0.0000020796,0.0000020737, +0.0000020684,0.0000020637,0.0000020594,0.0000020551,0.0000020507, +0.0000020461,0.0000020415,0.0000020373,0.0000020342,0.0000020328, +0.0000020329,0.0000020339,0.0000020349,0.0000020365,0.0000020384, +0.0000020405,0.0000020422,0.0000020429,0.0000020431,0.0000020436, +0.0000020446,0.0000020457,0.0000020464,0.0000020462,0.0000020459, +0.0000020445,0.0000020431,0.0000020411,0.0000020386,0.0000020359, +0.0000020332,0.0000020302,0.0000020269,0.0000020238,0.0000020215, +0.0000020203,0.0000020199,0.0000020204,0.0000020214,0.0000020220, +0.0000020220,0.0000020212,0.0000020198,0.0000020179,0.0000020160, +0.0000020139,0.0000020126,0.0000020119,0.0000020117,0.0000020116, +0.0000020119,0.0000020124,0.0000020134,0.0000020140,0.0000020147, +0.0000020154,0.0000020166,0.0000020186,0.0000020211,0.0000020232, +0.0000020243,0.0000020248,0.0000020253,0.0000020260,0.0000020264, +0.0000020261,0.0000020252,0.0000020239,0.0000020225,0.0000020207, +0.0000020179,0.0000020147,0.0000020111,0.0000020071,0.0000020015, +0.0000019931,0.0000019835,0.0000019758,0.0000019719,0.0000019713, +0.0000019706,0.0000019672,0.0000019611,0.0000019544,0.0000019480, +0.0000019425,0.0000019384,0.0000019351,0.0000019324,0.0000019299, +0.0000019273,0.0000019253,0.0000019244,0.0000019249,0.0000019274, +0.0000019314,0.0000019357,0.0000019391,0.0000019422,0.0000019456, +0.0000019485,0.0000019506,0.0000019533,0.0000019574,0.0000019616, +0.0000019652,0.0000019681,0.0000019703,0.0000019714,0.0000019717, +0.0000019721,0.0000019726,0.0000019736,0.0000019749,0.0000019753, +0.0000019742,0.0000019721,0.0000019704,0.0000019695,0.0000019693, +0.0000019691,0.0000019686,0.0000019679,0.0000019670,0.0000019662, +0.0000019657,0.0000019655,0.0000019658,0.0000019667,0.0000019683, +0.0000019702,0.0000019728,0.0000019754,0.0000019779,0.0000019804, +0.0000019828,0.0000019851,0.0000019874,0.0000019896,0.0000019916, +0.0000019934,0.0000019950,0.0000019965,0.0000019981,0.0000019995, +0.0000020004,0.0000020008,0.0000020011,0.0000020013,0.0000020013, +0.0000020010,0.0000020006,0.0000020007,0.0000020012,0.0000020025, +0.0000020046,0.0000020063,0.0000020077,0.0000020096,0.0000020116, +0.0000020136,0.0000020161,0.0000020192,0.0000020228,0.0000020266, +0.0000020300,0.0000020328,0.0000020350,0.0000020367,0.0000020380, +0.0000020393,0.0000020410,0.0000020426,0.0000020440,0.0000020445, +0.0000020446,0.0000020447,0.0000020448,0.0000020449,0.0000020450, +0.0000020454,0.0000020464,0.0000020478,0.0000020500,0.0000020533, +0.0000020569,0.0000020606,0.0000020649,0.0000020697,0.0000020745, +0.0000020789,0.0000020827,0.0000020857,0.0000020879,0.0000020890, +0.0000020889,0.0000020877,0.0000020858,0.0000020835,0.0000020813, +0.0000020794,0.0000020780,0.0000020773,0.0000020772,0.0000020778, +0.0000020784,0.0000020808,0.0000020895,0.0000021011,0.0000021072, +0.0000021074,0.0000021069,0.0000021074,0.0000021086,0.0000021088, +0.0000021066,0.0000021044,0.0000021042,0.0000021016,0.0000020966, +0.0000020936,0.0000020885,0.0000020838,0.0000020808,0.0000020780, +0.0000020778,0.0000020786,0.0000020790,0.0000020799,0.0000020792, +0.0000020776,0.0000020776,0.0000020810,0.0000020876,0.0000020945, +0.0000021001,0.0000021041,0.0000021060,0.0000021058,0.0000021044, +0.0000021020,0.0000020989,0.0000020955,0.0000020918,0.0000020871, +0.0000020818,0.0000020766,0.0000020716,0.0000020672,0.0000020633, +0.0000020589,0.0000020541,0.0000020498,0.0000020471,0.0000020462, +0.0000020461,0.0000020459,0.0000020454,0.0000020444,0.0000020429, +0.0000020411,0.0000020393,0.0000020382,0.0000020379,0.0000020381, +0.0000020390,0.0000020404,0.0000020419,0.0000020433,0.0000020444, +0.0000020447,0.0000020442,0.0000020429,0.0000020411,0.0000020392, +0.0000020371,0.0000020351,0.0000020337,0.0000020324,0.0000020312, +0.0000020304,0.0000020302,0.0000020302,0.0000020303,0.0000020303, +0.0000020305,0.0000020310,0.0000020318,0.0000020323,0.0000020324, +0.0000020322,0.0000020319,0.0000020314,0.0000020306,0.0000020297, +0.0000020286,0.0000020271,0.0000020256,0.0000020249,0.0000020242, +0.0000020241,0.0000020245,0.0000020250,0.0000020260,0.0000020275, +0.0000020298,0.0000020328,0.0000020369,0.0000020420,0.0000020477, +0.0000020534,0.0000020587,0.0000020633,0.0000020671,0.0000020698, +0.0000020712,0.0000020716,0.0000020713,0.0000020709,0.0000020709, +0.0000020711,0.0000020713,0.0000020715,0.0000020712,0.0000020707, +0.0000020712,0.0000020732,0.0000020760,0.0000020793,0.0000020821, +0.0000020835,0.0000020829,0.0000020800,0.0000020750,0.0000020687, +0.0000020618,0.0000020549,0.0000020485,0.0000020438,0.0000020419, +0.0000020423,0.0000020445,0.0000020477,0.0000020506,0.0000020526, +0.0000020533,0.0000020531,0.0000020522,0.0000020500,0.0000020461, +0.0000020408,0.0000020333,0.0000020244,0.0000020151,0.0000020062, +0.0000019981,0.0000019909,0.0000019852,0.0000019803,0.0000019753, +0.0000019696,0.0000019632,0.0000019573,0.0000019528,0.0000019498, +0.0000019478,0.0000019470,0.0000019469,0.0000019473,0.0000019475, +0.0000019479,0.0000019486,0.0000019495,0.0000019505,0.0000019517, +0.0000019527,0.0000019528,0.0000019519,0.0000019507,0.0000019503, +0.0000019512,0.0000019531,0.0000019552,0.0000019569,0.0000019581, +0.0000019586,0.0000019586,0.0000019590,0.0000019606,0.0000019654, +0.0000019724,0.0000019801,0.0000019870,0.0000019920,0.0000019958, +0.0000020000,0.0000020049,0.0000020088,0.0000020102,0.0000020095, +0.0000020076,0.0000020058,0.0000020048,0.0000020048,0.0000020052, +0.0000020050,0.0000020022,0.0000019958,0.0000019870,0.0000019782, +0.0000019704,0.0000019647,0.0000019613,0.0000019582,0.0000019583, +0.0000019608,0.0000019647,0.0000019693,0.0000019742,0.0000019787, +0.0000019823,0.0000019853,0.0000019881,0.0000019918,0.0000019974, +0.0000020054,0.0000020156,0.0000020272,0.0000020389,0.0000020477, +0.0000020525,0.0000020546,0.0000020537,0.0000020519,0.0000020489, +0.0000020454,0.0000020413,0.0000020367,0.0000020320,0.0000020275, +0.0000020234,0.0000020196,0.0000020162,0.0000020129,0.0000020108, +0.0000020088,0.0000020074,0.0000020069,0.0000020072,0.0000020076, +0.0000020083,0.0000020097,0.0000020116,0.0000020140,0.0000020165, +0.0000020194,0.0000020225,0.0000020263,0.0000020303,0.0000020340, +0.0000020367,0.0000020373,0.0000020363,0.0000020337,0.0000020303, +0.0000020268,0.0000020233,0.0000020198,0.0000020161,0.0000020122, +0.0000020085,0.0000020047,0.0000020013,0.0000019994,0.0000019992, +0.0000020001,0.0000020018,0.0000020037,0.0000020052,0.0000020057, +0.0000020045,0.0000020029,0.0000020012,0.0000019988,0.0000019962, +0.0000019937,0.0000019912,0.0000019880,0.0000019847,0.0000019819, +0.0000019806,0.0000019799,0.0000019790,0.0000019776,0.0000019753, +0.0000019720,0.0000019686,0.0000019659,0.0000019640,0.0000019636, +0.0000019650,0.0000019676,0.0000019703,0.0000019730,0.0000019748, +0.0000019755,0.0000019751,0.0000019737,0.0000019709,0.0000019675, +0.0000019639,0.0000019600,0.0000019561,0.0000019528,0.0000019504, +0.0000019491,0.0000019484,0.0000019479,0.0000019475,0.0000019474, +0.0000019472,0.0000019466,0.0000019457,0.0000019443,0.0000019422, +0.0000019396,0.0000019367,0.0000019335,0.0000019301,0.0000019265, +0.0000019230,0.0000019196,0.0000019164,0.0000019134,0.0000019104, +0.0000019071,0.0000019035,0.0000018998,0.0000018968,0.0000018943, +0.0000018921,0.0000018900,0.0000018880,0.0000018863,0.0000018846, +0.0000018828,0.0000018810,0.0000018791,0.0000018773,0.0000018762, +0.0000018756,0.0000018752,0.0000018748,0.0000018741,0.0000018736, +0.0000018732,0.0000018730,0.0000018728,0.0000018728,0.0000018729, +0.0000018728,0.0000018723,0.0000018717,0.0000018709,0.0000018700, +0.0000018694,0.0000018691,0.0000018694,0.0000018701,0.0000018710, +0.0000018721,0.0000018732,0.0000018741,0.0000018749,0.0000018753, +0.0000018755,0.0000018750,0.0000018741,0.0000018730,0.0000018722, +0.0000018713,0.0000018704,0.0000018696,0.0000018692,0.0000018693, +0.0000018696,0.0000018695,0.0000018690,0.0000018680,0.0000018672, +0.0000018668,0.0000018672,0.0000018680,0.0000018694,0.0000018716, +0.0000018745,0.0000018780,0.0000018820,0.0000018864,0.0000018908, +0.0000018947,0.0000018978,0.0000018999,0.0000019010,0.0000019015, +0.0000019020,0.0000019032,0.0000019055,0.0000019087,0.0000019126, +0.0000019165,0.0000019201,0.0000019234,0.0000019261,0.0000019279, +0.0000019290,0.0000019295,0.0000019297,0.0000019299,0.0000019302, +0.0000019307,0.0000019313,0.0000019320,0.0000019324,0.0000019328, +0.0000019333,0.0000019339,0.0000019343,0.0000019346,0.0000019348, +0.0000019353,0.0000019362,0.0000019376,0.0000019392,0.0000019407, +0.0000019422,0.0000019432,0.0000019439,0.0000019443,0.0000019443, +0.0000019442,0.0000019445,0.0000019456,0.0000019473,0.0000019488, +0.0000019495,0.0000019495,0.0000019488,0.0000019477,0.0000019465, +0.0000019461,0.0000019466,0.0000019482,0.0000019496,0.0000019498, +0.0000019491,0.0000019445,0.0000019362,0.0000019285,0.0000019273, +0.0000019316,0.0000019372,0.0000019411,0.0000019437,0.0000019463, +0.0000019500,0.0000019541,0.0000019545,0.0000019506,0.0000019466, +0.0000019462,0.0000019518,0.0000019618,0.0000019734,0.0000019839, +0.0000019934,0.0000020038,0.0000020148,0.0000020232,0.0000020255, +0.0000020251,0.0000020243,0.0000020252,0.0000020285,0.0000020332, +0.0000020383,0.0000020427,0.0000020456,0.0000020457,0.0000020442, +0.0000020418,0.0000020390,0.0000020367,0.0000020356,0.0000020360, +0.0000020386,0.0000020433,0.0000020492,0.0000020551,0.0000020586, +0.0000020594,0.0000020576,0.0000020532,0.0000020478,0.0000020428, +0.0000020383,0.0000020348,0.0000020325,0.0000020319,0.0000020322, +0.0000020328,0.0000020337,0.0000020347,0.0000020356,0.0000020364, +0.0000020369,0.0000020372,0.0000020372,0.0000020365,0.0000020356, +0.0000020351,0.0000020352,0.0000020361,0.0000020376,0.0000020395, +0.0000020415,0.0000020432,0.0000020447,0.0000020459,0.0000020466, +0.0000020466,0.0000020459,0.0000020447,0.0000020433,0.0000020419, +0.0000020405,0.0000020390,0.0000020372,0.0000020351,0.0000020325, +0.0000020295,0.0000020264,0.0000020238,0.0000020220,0.0000020210, +0.0000020206,0.0000020205,0.0000020205,0.0000020204,0.0000020199, +0.0000020188,0.0000020173,0.0000020156,0.0000020140,0.0000020124, +0.0000020112,0.0000020100,0.0000020087,0.0000020074,0.0000020061, +0.0000020047,0.0000020031,0.0000020014,0.0000019996,0.0000019979, +0.0000019962,0.0000019947,0.0000019932,0.0000019918,0.0000019905, +0.0000019889,0.0000019871,0.0000019851,0.0000019831,0.0000019808, +0.0000019786,0.0000019764,0.0000019743,0.0000019717,0.0000019680, +0.0000019638,0.0000019592,0.0000019550,0.0000019514,0.0000019490, +0.0000019473,0.0000019454,0.0000019425,0.0000019392,0.0000019362, +0.0000019341,0.0000019330,0.0000019333,0.0000019350,0.0000019378, +0.0000019409,0.0000019442,0.0000019480,0.0000019524,0.0000019571, +0.0000019624,0.0000019669,0.0000019707,0.0000019738,0.0000019765, +0.0000019792,0.0000019814,0.0000019825,0.0000019813,0.0000019779, +0.0000019734,0.0000019700,0.0000019690,0.0000019703,0.0000019721, +0.0000019721,0.0000019688,0.0000019621,0.0000019665,0.0000019609, +0.0000019538,0.0000019489,0.0000019473,0.0000019473,0.0000019478, +0.0000019482,0.0000019495,0.0000019515,0.0000019529,0.0000019527, +0.0000019513,0.0000019499,0.0000019495,0.0000019498,0.0000019499, +0.0000019495,0.0000019486,0.0000019482,0.0000019481,0.0000019487, +0.0000019497,0.0000019506,0.0000019507,0.0000019504,0.0000019506, +0.0000019520,0.0000019544,0.0000019578,0.0000019616,0.0000019652, +0.0000019684,0.0000019716,0.0000019739,0.0000019756,0.0000019765, +0.0000019768,0.0000019765,0.0000019759,0.0000019753,0.0000019743, +0.0000019730,0.0000019714,0.0000019697,0.0000019677,0.0000019658, +0.0000019642,0.0000019627,0.0000019613,0.0000019597,0.0000019587, +0.0000019583,0.0000019581,0.0000019577,0.0000019571,0.0000019565, +0.0000019562,0.0000019560,0.0000019558,0.0000019551,0.0000019540, +0.0000019527,0.0000019512,0.0000019496,0.0000019485,0.0000019481, +0.0000019485,0.0000019498,0.0000019513,0.0000019527,0.0000019539, +0.0000019551,0.0000019563,0.0000019570,0.0000019574,0.0000019570, +0.0000019562,0.0000019555,0.0000019548,0.0000019537,0.0000019521, +0.0000019503,0.0000019486,0.0000019467,0.0000019457,0.0000019459, +0.0000019465,0.0000019474,0.0000019490,0.0000019506,0.0000019517, +0.0000019530,0.0000019542,0.0000019549,0.0000019554,0.0000019558, +0.0000019564,0.0000019574,0.0000019583,0.0000019594,0.0000019612, +0.0000019631,0.0000019649,0.0000019672,0.0000019697,0.0000019726, +0.0000019757,0.0000019787,0.0000019812,0.0000019831,0.0000019838, +0.0000019836,0.0000019828,0.0000019813,0.0000019787,0.0000019750, +0.0000019709,0.0000019670,0.0000019637,0.0000019605,0.0000019569, +0.0000019544,0.0000019543,0.0000019566,0.0000019615,0.0000019679, +0.0000019744,0.0000019810,0.0000019873,0.0000019939,0.0000020016, +0.0000020103,0.0000020184,0.0000020257,0.0000020316,0.0000020370, +0.0000020425,0.0000020484,0.0000020542,0.0000020589,0.0000020615, +0.0000020620,0.0000020620,0.0000020609,0.0000020581,0.0000020548, +0.0000020518,0.0000020487,0.0000020446,0.0000020397,0.0000020352, +0.0000020318,0.0000020298,0.0000020287,0.0000020281,0.0000020285, +0.0000020291,0.0000020297,0.0000020319,0.0000020359,0.0000020404, +0.0000020445,0.0000020478,0.0000020505,0.0000020532,0.0000020554, +0.0000020572,0.0000020584,0.0000020592,0.0000020597,0.0000020598, +0.0000020594,0.0000020592,0.0000020592,0.0000020588,0.0000020583, +0.0000020579,0.0000020578,0.0000020580,0.0000020587,0.0000020599, +0.0000020614,0.0000020629,0.0000020641,0.0000020653,0.0000020666, +0.0000020681,0.0000020696,0.0000020709,0.0000020720,0.0000020730, +0.0000020737,0.0000020743,0.0000020754,0.0000020766,0.0000020776, +0.0000020786,0.0000020798,0.0000020814,0.0000020834,0.0000020858, +0.0000020883,0.0000020908,0.0000020932,0.0000020956,0.0000020978, +0.0000020998,0.0000021013,0.0000021023,0.0000021028,0.0000021025, +0.0000021019,0.0000021015,0.0000021012,0.0000021009,0.0000021007, +0.0000021007,0.0000021010,0.0000021016,0.0000021027,0.0000021040, +0.0000021055,0.0000021071,0.0000021092,0.0000021116,0.0000021141, +0.0000021168,0.0000021195,0.0000021221,0.0000021246,0.0000021266, +0.0000021280,0.0000021285,0.0000021281,0.0000021268,0.0000021249, +0.0000021228,0.0000021205,0.0000021183,0.0000021163,0.0000021144, +0.0000021123,0.0000021105,0.0000021088,0.0000021070,0.0000021052, +0.0000021034,0.0000021016,0.0000020998,0.0000020985,0.0000020981, +0.0000020987,0.0000020999,0.0000021012,0.0000021018,0.0000021039, +0.0000021086,0.0000021146,0.0000021203,0.0000021248,0.0000021276, +0.0000021290,0.0000021297,0.0000021298,0.0000021292,0.0000021286, +0.0000021274,0.0000021250,0.0000021205,0.0000021156,0.0000021118, +0.0000021092,0.0000021079,0.0000021079,0.0000021088,0.0000021101, +0.0000021112,0.0000021126,0.0000021205,0.0000021329,0.0000021410, +0.0000021479,0.0000021577,0.0000021656,0.0000021682,0.0000021673, +0.0000021630,0.0000021546,0.0000021443,0.0000021335,0.0000021229, +0.0000021143,0.0000021040,0.0000020950,0.0000020915,0.0000020894, +0.0000020864,0.0000020839,0.0000020827,0.0000020830,0.0000020854, +0.0000020876,0.0000020883,0.0000020879,0.0000020869,0.0000020859, +0.0000020849,0.0000020841,0.0000020836,0.0000020831,0.0000020817, +0.0000020784,0.0000020734,0.0000020665,0.0000020581,0.0000020507, +0.0000020447,0.0000020395,0.0000020362,0.0000020360,0.0000020388, +0.0000020425,0.0000020452,0.0000020467,0.0000020476,0.0000020483, +0.0000020485,0.0000020470,0.0000020436,0.0000020394,0.0000020354, +0.0000020317,0.0000020286,0.0000020264,0.0000020250,0.0000020235, +0.0000020229,0.0000020269,0.0000020367,0.0000020476,0.0000020544, +0.0000020560,0.0000020549,0.0000020509,0.0000020465,0.0000020390, +0.0000020221,0.0000020051,0.0000019986,0.0000020003,0.0000020156, +0.0000020331,0.0000020365,0.0000020340,0.0000020328,0.0000020395, +0.0000020598,0.0000020747,0.0000020754,0.0000020737,0.0000020768, +0.0000020922,0.0000021110,0.0000021190,0.0000021269,0.0000021450, +0.0000021565,0.0000021608,0.0000021635,0.0000021682,0.0000021707, +0.0000021721,0.0000021761,0.0000021832,0.0000021895,0.0000021900, +0.0000021878,0.0000021860,0.0000021828,0.0000021820,0.0000021877, +0.0000021971,0.0000022014,0.0000022014,0.0000022000,0.0000021993, +0.0000021991,0.0000021980,0.0000021960,0.0000021928,0.0000021893, +0.0000021872,0.0000021876,0.0000021889,0.0000021902,0.0000021916, +0.0000021923,0.0000021921,0.0000021915,0.0000021885,0.0000021836, +0.0000021786,0.0000021737,0.0000021685,0.0000021634,0.0000021594, +0.0000021581,0.0000021589,0.0000021610,0.0000021642,0.0000021681, +0.0000021713,0.0000021736,0.0000021755,0.0000021762,0.0000021749, +0.0000021712,0.0000021675,0.0000021645,0.0000021627,0.0000021619, +0.0000021605,0.0000021580,0.0000021551,0.0000021516,0.0000021475, +0.0000021432,0.0000021396,0.0000021354,0.0000021301,0.0000021243, +0.0000021195,0.0000021172,0.0000021151,0.0000021132,0.0000021119, +0.0000021112,0.0000021119,0.0000021132,0.0000021142,0.0000021153, +0.0000021171,0.0000021187,0.0000021196,0.0000021195,0.0000021194, +0.0000021193,0.0000021190,0.0000021181,0.0000021165,0.0000021139, +0.0000021110,0.0000021068,0.0000021021,0.0000020978,0.0000020941, +0.0000020911,0.0000020881,0.0000020854,0.0000020833,0.0000020824, +0.0000020817,0.0000020809,0.0000020812,0.0000020816,0.0000020813, +0.0000020802,0.0000020784,0.0000020764,0.0000020743,0.0000020713, +0.0000020681,0.0000020644,0.0000020609,0.0000020576,0.0000020543, +0.0000020516,0.0000020508,0.0000020504,0.0000020499,0.0000020497, +0.0000020496,0.0000020497,0.0000020498,0.0000020504,0.0000020511, +0.0000020517,0.0000020524,0.0000020531,0.0000020537,0.0000020543, +0.0000020551,0.0000020559,0.0000020565,0.0000020560,0.0000020550, +0.0000020546,0.0000020544,0.0000020544,0.0000020545,0.0000020558, +0.0000020569,0.0000020574,0.0000020573,0.0000020565,0.0000020553, +0.0000020536,0.0000020524,0.0000020515,0.0000020515,0.0000020526, +0.0000020549,0.0000020574,0.0000020597,0.0000020625,0.0000020652, +0.0000020680,0.0000020705,0.0000020732,0.0000020749,0.0000020755, +0.0000020757,0.0000020757,0.0000020754,0.0000020748,0.0000020737, +0.0000020719,0.0000020715,0.0000020731,0.0000020754,0.0000020786, +0.0000020819,0.0000020846,0.0000020869,0.0000020891,0.0000020909, +0.0000020921,0.0000020938,0.0000020952,0.0000020961,0.0000020970, +0.0000020975,0.0000020977,0.0000020982,0.0000021000,0.0000021034, +0.0000021068,0.0000021104,0.0000021146,0.0000021191,0.0000021234, +0.0000021272,0.0000021299,0.0000021310,0.0000021310,0.0000021309, +0.0000021304,0.0000021294,0.0000021279,0.0000021267,0.0000021252, +0.0000021235,0.0000021219,0.0000021206,0.0000021197,0.0000021194, +0.0000021199,0.0000021215,0.0000021238,0.0000021266,0.0000021294, +0.0000021321,0.0000021346,0.0000021368,0.0000021386,0.0000021404, +0.0000021423,0.0000021442,0.0000021456,0.0000021468,0.0000021481, +0.0000021492,0.0000021498,0.0000021496,0.0000021489,0.0000021480, +0.0000021468,0.0000021453,0.0000021436,0.0000021416,0.0000021393, +0.0000021375,0.0000021360,0.0000021346,0.0000021336,0.0000021334, +0.0000021333,0.0000021333,0.0000021339,0.0000021347,0.0000021356, +0.0000021374,0.0000021404,0.0000021437,0.0000021473,0.0000021510, +0.0000021541,0.0000021567,0.0000021595,0.0000021624,0.0000021657, +0.0000021690,0.0000021722,0.0000021753,0.0000021787,0.0000021823, +0.0000021861,0.0000021894,0.0000021924,0.0000021949,0.0000021969, +0.0000021980,0.0000021983,0.0000021982,0.0000021970,0.0000021949, +0.0000021918,0.0000021888,0.0000021864,0.0000021850,0.0000021847, +0.0000021853,0.0000021871,0.0000021898,0.0000021928,0.0000021956, +0.0000021979,0.0000021995,0.0000022005,0.0000022008,0.0000022008, +0.0000022008,0.0000022006,0.0000022000,0.0000021988,0.0000021971, +0.0000021949,0.0000021925,0.0000021906,0.0000021894,0.0000021885, +0.0000021874,0.0000021856,0.0000021828,0.0000021798,0.0000021779, +0.0000021772,0.0000021764,0.0000021760,0.0000021754,0.0000021753, +0.0000021755,0.0000021752,0.0000021742,0.0000021724,0.0000021701, +0.0000021680,0.0000021669,0.0000021668,0.0000021676,0.0000021691, +0.0000021715,0.0000021747,0.0000021784,0.0000021821,0.0000021854, +0.0000021882,0.0000021905,0.0000021919,0.0000021923,0.0000021917, +0.0000021905,0.0000021889,0.0000021871,0.0000021853,0.0000021835, +0.0000021813,0.0000021788,0.0000021761,0.0000021732,0.0000021700, +0.0000021675,0.0000021654,0.0000021631,0.0000021608,0.0000021589, +0.0000021574,0.0000021555,0.0000021553,0.0000021536,0.0000021524, +0.0000021508,0.0000021482,0.0000021454,0.0000021423,0.0000021395, +0.0000021372,0.0000021350,0.0000021326,0.0000021306,0.0000021294, +0.0000021289,0.0000021284,0.0000021276,0.0000021270,0.0000021264, +0.0000021258,0.0000021251,0.0000021245,0.0000021238,0.0000021228, +0.0000021212,0.0000021195,0.0000021174,0.0000021151,0.0000021125, +0.0000021096,0.0000021061,0.0000021017,0.0000020964,0.0000020904, +0.0000020844,0.0000020787,0.0000020736,0.0000020691,0.0000020647, +0.0000020602,0.0000020553,0.0000020501,0.0000020450,0.0000020410, +0.0000020384,0.0000020367,0.0000020357,0.0000020349,0.0000020346, +0.0000020350,0.0000020352,0.0000020353,0.0000020352,0.0000020354, +0.0000020362,0.0000020376,0.0000020395,0.0000020412,0.0000020425, +0.0000020428,0.0000020421,0.0000020403,0.0000020373,0.0000020337, +0.0000020301,0.0000020268,0.0000020238,0.0000020215,0.0000020204, +0.0000020201,0.0000020202,0.0000020202,0.0000020206,0.0000020204, +0.0000020200,0.0000020191,0.0000020175,0.0000020158,0.0000020138, +0.0000020118,0.0000020104,0.0000020102,0.0000020105,0.0000020114, +0.0000020125,0.0000020136,0.0000020146,0.0000020152,0.0000020154, +0.0000020149,0.0000020147,0.0000020147,0.0000020159,0.0000020166, +0.0000020175,0.0000020184,0.0000020195,0.0000020208,0.0000020225, +0.0000020239,0.0000020243,0.0000020239,0.0000020228,0.0000020216, +0.0000020203,0.0000020184,0.0000020161,0.0000020135,0.0000020103, +0.0000020049,0.0000019966,0.0000019867,0.0000019778,0.0000019725, +0.0000019707,0.0000019695,0.0000019661,0.0000019609,0.0000019552, +0.0000019506,0.0000019478,0.0000019448,0.0000019412,0.0000019373, +0.0000019331,0.0000019293,0.0000019268,0.0000019261,0.0000019278, +0.0000019317,0.0000019363,0.0000019402,0.0000019437,0.0000019474, +0.0000019500,0.0000019514,0.0000019534,0.0000019567,0.0000019598, +0.0000019622,0.0000019638,0.0000019649,0.0000019654,0.0000019654, +0.0000019658,0.0000019678,0.0000019705,0.0000019721,0.0000019720, +0.0000019704,0.0000019695,0.0000019702,0.0000019720,0.0000019732, +0.0000019733,0.0000019724,0.0000019712,0.0000019703,0.0000019700, +0.0000019705,0.0000019716,0.0000019727,0.0000019740,0.0000019756, +0.0000019775,0.0000019798,0.0000019823,0.0000019847,0.0000019872, +0.0000019893,0.0000019912,0.0000019930,0.0000019947,0.0000019963, +0.0000019977,0.0000019992,0.0000020007,0.0000020024,0.0000020043, +0.0000020060,0.0000020070,0.0000020079,0.0000020089,0.0000020097, +0.0000020101,0.0000020101,0.0000020099,0.0000020095,0.0000020092, +0.0000020090,0.0000020091,0.0000020093,0.0000020100,0.0000020109, +0.0000020115,0.0000020126,0.0000020141,0.0000020164,0.0000020195, +0.0000020225,0.0000020254,0.0000020280,0.0000020301,0.0000020319, +0.0000020335,0.0000020354,0.0000020378,0.0000020404,0.0000020427, +0.0000020442,0.0000020450,0.0000020454,0.0000020456,0.0000020458, +0.0000020464,0.0000020476,0.0000020496,0.0000020522,0.0000020552, +0.0000020581,0.0000020610,0.0000020641,0.0000020676,0.0000020712, +0.0000020747,0.0000020778,0.0000020806,0.0000020828,0.0000020839, +0.0000020839,0.0000020831,0.0000020819,0.0000020806,0.0000020794, +0.0000020783,0.0000020776,0.0000020774,0.0000020776,0.0000020778, +0.0000020779,0.0000020797,0.0000020893,0.0000021016,0.0000021072, +0.0000021074,0.0000021077,0.0000021090,0.0000021103,0.0000021097, +0.0000021071,0.0000021058,0.0000021055,0.0000021010,0.0000020961, +0.0000020930,0.0000020873,0.0000020833,0.0000020801,0.0000020775, +0.0000020776,0.0000020783,0.0000020789,0.0000020802,0.0000020799, +0.0000020785,0.0000020784,0.0000020803,0.0000020863,0.0000020938, +0.0000020998,0.0000021036,0.0000021052,0.0000021049,0.0000021034, +0.0000021007,0.0000020973,0.0000020937,0.0000020898,0.0000020859, +0.0000020818,0.0000020776,0.0000020734,0.0000020695,0.0000020656, +0.0000020615,0.0000020573,0.0000020535,0.0000020507,0.0000020490, +0.0000020480,0.0000020469,0.0000020456,0.0000020439,0.0000020416, +0.0000020390,0.0000020366,0.0000020352,0.0000020351,0.0000020354, +0.0000020363,0.0000020375,0.0000020387,0.0000020399,0.0000020411, +0.0000020417,0.0000020416,0.0000020407,0.0000020392,0.0000020376, +0.0000020361,0.0000020346,0.0000020337,0.0000020332,0.0000020330, +0.0000020331,0.0000020336,0.0000020340,0.0000020343,0.0000020344, +0.0000020344,0.0000020349,0.0000020358,0.0000020365,0.0000020368, +0.0000020368,0.0000020365,0.0000020359,0.0000020350,0.0000020338, +0.0000020322,0.0000020300,0.0000020275,0.0000020253,0.0000020235, +0.0000020226,0.0000020214,0.0000020207,0.0000020205,0.0000020208, +0.0000020216,0.0000020232,0.0000020255,0.0000020290,0.0000020335, +0.0000020386,0.0000020442,0.0000020498,0.0000020551,0.0000020595, +0.0000020627,0.0000020648,0.0000020659,0.0000020662,0.0000020661, +0.0000020663,0.0000020669,0.0000020677,0.0000020680,0.0000020676, +0.0000020670,0.0000020661,0.0000020652,0.0000020647,0.0000020642, +0.0000020635,0.0000020620,0.0000020590,0.0000020548,0.0000020499, +0.0000020444,0.0000020390,0.0000020346,0.0000020321,0.0000020318, +0.0000020334,0.0000020367,0.0000020405,0.0000020440,0.0000020463, +0.0000020473,0.0000020474,0.0000020470,0.0000020454,0.0000020421, +0.0000020370,0.0000020302,0.0000020220,0.0000020131,0.0000020045, +0.0000019965,0.0000019895,0.0000019832,0.0000019773,0.0000019716, +0.0000019660,0.0000019606,0.0000019561,0.0000019531,0.0000019513, +0.0000019503,0.0000019496,0.0000019491,0.0000019489,0.0000019487, +0.0000019489,0.0000019496,0.0000019503,0.0000019511,0.0000019518, +0.0000019527,0.0000019532,0.0000019529,0.0000019519,0.0000019510, +0.0000019510,0.0000019523,0.0000019540,0.0000019554,0.0000019565, +0.0000019571,0.0000019571,0.0000019573,0.0000019587,0.0000019631, +0.0000019695,0.0000019771,0.0000019840,0.0000019891,0.0000019926, +0.0000019963,0.0000020007,0.0000020046,0.0000020065,0.0000020060, +0.0000020040,0.0000020019,0.0000020003,0.0000019998,0.0000020003, +0.0000020008,0.0000019996,0.0000019951,0.0000019885,0.0000019805, +0.0000019727,0.0000019656,0.0000019594,0.0000019547,0.0000019509, +0.0000019507,0.0000019536,0.0000019592,0.0000019660,0.0000019728, +0.0000019783,0.0000019824,0.0000019854,0.0000019878,0.0000019904, +0.0000019945,0.0000020014,0.0000020116,0.0000020236,0.0000020352, +0.0000020443,0.0000020500,0.0000020525,0.0000020516,0.0000020511, +0.0000020488,0.0000020454,0.0000020413,0.0000020366,0.0000020319, +0.0000020275,0.0000020235,0.0000020199,0.0000020165,0.0000020138, +0.0000020120,0.0000020108,0.0000020103,0.0000020103,0.0000020110, +0.0000020125,0.0000020149,0.0000020176,0.0000020204,0.0000020232, +0.0000020264,0.0000020298,0.0000020333,0.0000020362,0.0000020378, +0.0000020377,0.0000020363,0.0000020342,0.0000020317,0.0000020289, +0.0000020255,0.0000020218,0.0000020178,0.0000020129,0.0000020072, +0.0000020007,0.0000019944,0.0000019902,0.0000019884,0.0000019888, +0.0000019906,0.0000019939,0.0000019975,0.0000020007,0.0000020023, +0.0000020023,0.0000020011,0.0000019989,0.0000019964,0.0000019941, +0.0000019918,0.0000019886,0.0000019853,0.0000019824,0.0000019810, +0.0000019800,0.0000019788,0.0000019773,0.0000019750,0.0000019719, +0.0000019682,0.0000019654,0.0000019631,0.0000019616,0.0000019623, +0.0000019642,0.0000019670,0.0000019693,0.0000019707,0.0000019707, +0.0000019695,0.0000019670,0.0000019636,0.0000019597,0.0000019554, +0.0000019513,0.0000019477,0.0000019450,0.0000019431,0.0000019423, +0.0000019421,0.0000019420,0.0000019416,0.0000019414,0.0000019412, +0.0000019405,0.0000019399,0.0000019389,0.0000019372,0.0000019348, +0.0000019317,0.0000019281,0.0000019247,0.0000019215,0.0000019185, +0.0000019159,0.0000019134,0.0000019108,0.0000019083,0.0000019055, +0.0000019021,0.0000018984,0.0000018949,0.0000018918,0.0000018891, +0.0000018863,0.0000018834,0.0000018808,0.0000018786,0.0000018766, +0.0000018748,0.0000018729,0.0000018711,0.0000018697,0.0000018690, +0.0000018686,0.0000018681,0.0000018679,0.0000018680,0.0000018682, +0.0000018683,0.0000018681,0.0000018681,0.0000018683,0.0000018683, +0.0000018681,0.0000018680,0.0000018676,0.0000018670,0.0000018662, +0.0000018654,0.0000018646,0.0000018641,0.0000018640,0.0000018641, +0.0000018645,0.0000018649,0.0000018652,0.0000018655,0.0000018656, +0.0000018653,0.0000018646,0.0000018636,0.0000018626,0.0000018615, +0.0000018605,0.0000018603,0.0000018608,0.0000018621,0.0000018635, +0.0000018647,0.0000018655,0.0000018657,0.0000018658,0.0000018661, +0.0000018666,0.0000018669,0.0000018671,0.0000018677,0.0000018686, +0.0000018700,0.0000018719,0.0000018746,0.0000018779,0.0000018816, +0.0000018854,0.0000018889,0.0000018918,0.0000018939,0.0000018952, +0.0000018962,0.0000018975,0.0000018996,0.0000019024,0.0000019058, +0.0000019096,0.0000019133,0.0000019169,0.0000019199,0.0000019223, +0.0000019240,0.0000019251,0.0000019256,0.0000019259,0.0000019261, +0.0000019263,0.0000019267,0.0000019270,0.0000019273,0.0000019278, +0.0000019285,0.0000019291,0.0000019297,0.0000019300,0.0000019303, +0.0000019310,0.0000019321,0.0000019335,0.0000019353,0.0000019373, +0.0000019391,0.0000019405,0.0000019413,0.0000019413,0.0000019407, +0.0000019402,0.0000019402,0.0000019414,0.0000019433,0.0000019452, +0.0000019466,0.0000019473,0.0000019470,0.0000019458,0.0000019443, +0.0000019438,0.0000019444,0.0000019459,0.0000019475,0.0000019477, +0.0000019466,0.0000019408,0.0000019319,0.0000019259,0.0000019264, +0.0000019316,0.0000019365,0.0000019398,0.0000019425,0.0000019454, +0.0000019491,0.0000019523,0.0000019516,0.0000019474,0.0000019440, +0.0000019446,0.0000019506,0.0000019600,0.0000019705,0.0000019803, +0.0000019896,0.0000019999,0.0000020111,0.0000020203,0.0000020244, +0.0000020242,0.0000020239,0.0000020241,0.0000020257,0.0000020293, +0.0000020339,0.0000020383,0.0000020416,0.0000020430,0.0000020420, +0.0000020403,0.0000020382,0.0000020362,0.0000020350,0.0000020353, +0.0000020376,0.0000020420,0.0000020476,0.0000020534,0.0000020579, +0.0000020599,0.0000020596,0.0000020568,0.0000020521,0.0000020470, +0.0000020426,0.0000020389,0.0000020359,0.0000020339,0.0000020331, +0.0000020330,0.0000020333,0.0000020340,0.0000020349,0.0000020360, +0.0000020372,0.0000020381,0.0000020384,0.0000020381,0.0000020374, +0.0000020366,0.0000020364,0.0000020367,0.0000020378,0.0000020392, +0.0000020406,0.0000020418,0.0000020427,0.0000020433,0.0000020434, +0.0000020432,0.0000020428,0.0000020422,0.0000020415,0.0000020406, +0.0000020395,0.0000020378,0.0000020353,0.0000020320,0.0000020286, +0.0000020259,0.0000020243,0.0000020238,0.0000020240,0.0000020245, +0.0000020249,0.0000020248,0.0000020241,0.0000020229,0.0000020214, +0.0000020196,0.0000020179,0.0000020163,0.0000020148,0.0000020136, +0.0000020123,0.0000020109,0.0000020091,0.0000020071,0.0000020052, +0.0000020031,0.0000020010,0.0000019987,0.0000019965,0.0000019942, +0.0000019920,0.0000019900,0.0000019884,0.0000019867,0.0000019849, +0.0000019829,0.0000019808,0.0000019787,0.0000019767,0.0000019751, +0.0000019740,0.0000019730,0.0000019719,0.0000019701,0.0000019677, +0.0000019653,0.0000019613,0.0000019568,0.0000019524,0.0000019488, +0.0000019458,0.0000019430,0.0000019397,0.0000019359,0.0000019324, +0.0000019299,0.0000019289,0.0000019288,0.0000019302,0.0000019325, +0.0000019353,0.0000019386,0.0000019420,0.0000019460,0.0000019510, +0.0000019566,0.0000019616,0.0000019655,0.0000019683,0.0000019709, +0.0000019741,0.0000019774,0.0000019786,0.0000019776,0.0000019741, +0.0000019694,0.0000019658,0.0000019651,0.0000019665,0.0000019685, +0.0000019689,0.0000019654,0.0000019664,0.0000019648,0.0000019607, +0.0000019546,0.0000019499,0.0000019485,0.0000019491,0.0000019502, +0.0000019511,0.0000019523,0.0000019542,0.0000019555,0.0000019553, +0.0000019532,0.0000019512,0.0000019507,0.0000019507,0.0000019502, +0.0000019488,0.0000019471,0.0000019448,0.0000019430,0.0000019414, +0.0000019403,0.0000019404,0.0000019419,0.0000019444,0.0000019472, +0.0000019503,0.0000019536,0.0000019568,0.0000019599,0.0000019634, +0.0000019671,0.0000019701,0.0000019725,0.0000019740,0.0000019747, +0.0000019748,0.0000019744,0.0000019734,0.0000019720,0.0000019703, +0.0000019683,0.0000019662,0.0000019641,0.0000019625,0.0000019614, +0.0000019605,0.0000019598,0.0000019596,0.0000019596,0.0000019593, +0.0000019588,0.0000019584,0.0000019580,0.0000019576,0.0000019568, +0.0000019556,0.0000019542,0.0000019521,0.0000019499,0.0000019475, +0.0000019452,0.0000019438,0.0000019434,0.0000019440,0.0000019454, +0.0000019470,0.0000019489,0.0000019504,0.0000019520,0.0000019529, +0.0000019532,0.0000019532,0.0000019528,0.0000019519,0.0000019510, +0.0000019500,0.0000019487,0.0000019472,0.0000019454,0.0000019437, +0.0000019421,0.0000019414,0.0000019412,0.0000019414,0.0000019427, +0.0000019441,0.0000019450,0.0000019458,0.0000019468,0.0000019475, +0.0000019480,0.0000019485,0.0000019488,0.0000019488,0.0000019492, +0.0000019503,0.0000019520,0.0000019540,0.0000019562,0.0000019588, +0.0000019623,0.0000019657,0.0000019688,0.0000019712,0.0000019727, +0.0000019740,0.0000019750,0.0000019756,0.0000019758,0.0000019758, +0.0000019750,0.0000019731,0.0000019702,0.0000019666,0.0000019629, +0.0000019598,0.0000019561,0.0000019521,0.0000019498,0.0000019497, +0.0000019514,0.0000019553,0.0000019606,0.0000019667,0.0000019737, +0.0000019810,0.0000019884,0.0000019967,0.0000020055,0.0000020148, +0.0000020234,0.0000020294,0.0000020338,0.0000020377,0.0000020418, +0.0000020465,0.0000020512,0.0000020542,0.0000020554,0.0000020555, +0.0000020545,0.0000020522,0.0000020494,0.0000020468,0.0000020446, +0.0000020412,0.0000020369,0.0000020326,0.0000020293,0.0000020272, +0.0000020261,0.0000020259,0.0000020270,0.0000020284,0.0000020296, +0.0000020319,0.0000020354,0.0000020394,0.0000020432,0.0000020466, +0.0000020492,0.0000020513,0.0000020527,0.0000020540,0.0000020551, +0.0000020561,0.0000020571,0.0000020576,0.0000020575,0.0000020571, +0.0000020565,0.0000020558,0.0000020547,0.0000020536,0.0000020526, +0.0000020518,0.0000020516,0.0000020522,0.0000020536,0.0000020553, +0.0000020571,0.0000020588,0.0000020607,0.0000020626,0.0000020645, +0.0000020663,0.0000020677,0.0000020689,0.0000020697,0.0000020705, +0.0000020716,0.0000020728,0.0000020736,0.0000020744,0.0000020755, +0.0000020767,0.0000020782,0.0000020801,0.0000020823,0.0000020842, +0.0000020858,0.0000020876,0.0000020893,0.0000020909,0.0000020924, +0.0000020937,0.0000020947,0.0000020954,0.0000020962,0.0000020974, +0.0000020983,0.0000020990,0.0000020993,0.0000020998,0.0000021004, +0.0000021014,0.0000021026,0.0000021039,0.0000021053,0.0000021069, +0.0000021086,0.0000021108,0.0000021132,0.0000021159,0.0000021189, +0.0000021217,0.0000021244,0.0000021269,0.0000021288,0.0000021303, +0.0000021311,0.0000021312,0.0000021305,0.0000021287,0.0000021262, +0.0000021230,0.0000021197,0.0000021165,0.0000021137,0.0000021113, +0.0000021093,0.0000021074,0.0000021057,0.0000021041,0.0000021023, +0.0000021000,0.0000020976,0.0000020959,0.0000020955,0.0000020963, +0.0000020975,0.0000020987,0.0000021015,0.0000021062,0.0000021121, +0.0000021185,0.0000021233,0.0000021258,0.0000021269,0.0000021272, +0.0000021270,0.0000021262,0.0000021251,0.0000021235,0.0000021200, +0.0000021148,0.0000021103,0.0000021072,0.0000021058,0.0000021058, +0.0000021068,0.0000021084,0.0000021103,0.0000021112,0.0000021143, +0.0000021246,0.0000021360,0.0000021427,0.0000021495,0.0000021579, +0.0000021633,0.0000021641,0.0000021620,0.0000021557,0.0000021466, +0.0000021362,0.0000021257,0.0000021168,0.0000021071,0.0000020969, +0.0000020917,0.0000020894,0.0000020865,0.0000020840,0.0000020825, +0.0000020822,0.0000020839,0.0000020870,0.0000020889,0.0000020891, +0.0000020884,0.0000020870,0.0000020854,0.0000020839,0.0000020829, +0.0000020822,0.0000020814,0.0000020794,0.0000020757,0.0000020696, +0.0000020616,0.0000020535,0.0000020468,0.0000020410,0.0000020361, +0.0000020338,0.0000020353,0.0000020385,0.0000020416,0.0000020438, +0.0000020450,0.0000020459,0.0000020470,0.0000020475,0.0000020463, +0.0000020430,0.0000020390,0.0000020348,0.0000020305,0.0000020268, +0.0000020250,0.0000020248,0.0000020250,0.0000020251,0.0000020281, +0.0000020367,0.0000020468,0.0000020534,0.0000020547,0.0000020537, +0.0000020498,0.0000020452,0.0000020330,0.0000020133,0.0000020005, +0.0000019981,0.0000020073,0.0000020276,0.0000020377,0.0000020364, +0.0000020342,0.0000020369,0.0000020544,0.0000020732,0.0000020765, +0.0000020733,0.0000020739,0.0000020857,0.0000021045,0.0000021141, +0.0000021199,0.0000021362,0.0000021516,0.0000021586,0.0000021619, +0.0000021668,0.0000021704,0.0000021714,0.0000021740,0.0000021784, +0.0000021850,0.0000021887,0.0000021870,0.0000021850,0.0000021834, +0.0000021806,0.0000021809,0.0000021885,0.0000021979,0.0000022013, +0.0000022003,0.0000021985,0.0000021976,0.0000021966,0.0000021950, +0.0000021928,0.0000021893,0.0000021855,0.0000021838,0.0000021832, +0.0000021833,0.0000021836,0.0000021837,0.0000021829,0.0000021816, +0.0000021790,0.0000021743,0.0000021696,0.0000021654,0.0000021622, +0.0000021594,0.0000021575,0.0000021573,0.0000021588,0.0000021612, +0.0000021645,0.0000021684,0.0000021719,0.0000021742,0.0000021754, +0.0000021760,0.0000021748,0.0000021714,0.0000021681,0.0000021657, +0.0000021650,0.0000021655,0.0000021652,0.0000021636,0.0000021614, +0.0000021579,0.0000021532,0.0000021475,0.0000021421,0.0000021367, +0.0000021307,0.0000021241,0.0000021181,0.0000021140,0.0000021105, +0.0000021073,0.0000021047,0.0000021027,0.0000021022,0.0000021024, +0.0000021029,0.0000021037,0.0000021055,0.0000021078,0.0000021101, +0.0000021115,0.0000021121,0.0000021124,0.0000021124,0.0000021122, +0.0000021113,0.0000021092,0.0000021062,0.0000021026,0.0000020984, +0.0000020949,0.0000020917,0.0000020888,0.0000020868,0.0000020851, +0.0000020838,0.0000020836,0.0000020834,0.0000020834,0.0000020846, +0.0000020861,0.0000020872,0.0000020875,0.0000020874,0.0000020872, +0.0000020865,0.0000020851,0.0000020831,0.0000020803,0.0000020771, +0.0000020740,0.0000020709,0.0000020671,0.0000020636,0.0000020603, +0.0000020573,0.0000020544,0.0000020516,0.0000020491,0.0000020482, +0.0000020477,0.0000020474,0.0000020473,0.0000020475,0.0000020483, +0.0000020485,0.0000020487,0.0000020496,0.0000020501,0.0000020500, +0.0000020494,0.0000020489,0.0000020489,0.0000020491,0.0000020492, +0.0000020504,0.0000020521,0.0000020532,0.0000020533,0.0000020529, +0.0000020514,0.0000020495,0.0000020474,0.0000020460,0.0000020451, +0.0000020450,0.0000020468,0.0000020496,0.0000020523,0.0000020553, +0.0000020585,0.0000020614,0.0000020645,0.0000020670,0.0000020690, +0.0000020696,0.0000020698,0.0000020697,0.0000020693,0.0000020689, +0.0000020684,0.0000020675,0.0000020659,0.0000020660,0.0000020677, +0.0000020699,0.0000020724,0.0000020748,0.0000020766,0.0000020780, +0.0000020793,0.0000020802,0.0000020804,0.0000020802,0.0000020798, +0.0000020796,0.0000020796,0.0000020794,0.0000020794,0.0000020797, +0.0000020816,0.0000020847,0.0000020879,0.0000020912,0.0000020953, +0.0000021000,0.0000021054,0.0000021107,0.0000021154,0.0000021191, +0.0000021220,0.0000021241,0.0000021257,0.0000021264,0.0000021264, +0.0000021260,0.0000021246,0.0000021234,0.0000021220,0.0000021200, +0.0000021182,0.0000021170,0.0000021165,0.0000021167,0.0000021175, +0.0000021188,0.0000021209,0.0000021235,0.0000021263,0.0000021293, +0.0000021326,0.0000021362,0.0000021396,0.0000021426,0.0000021448, +0.0000021465,0.0000021479,0.0000021489,0.0000021493,0.0000021489, +0.0000021479,0.0000021465,0.0000021447,0.0000021424,0.0000021395, +0.0000021367,0.0000021340,0.0000021315,0.0000021288,0.0000021264, +0.0000021248,0.0000021241,0.0000021239,0.0000021238,0.0000021241, +0.0000021247,0.0000021257,0.0000021272,0.0000021292,0.0000021315, +0.0000021346,0.0000021381,0.0000021413,0.0000021445,0.0000021477, +0.0000021512,0.0000021549,0.0000021585,0.0000021618,0.0000021654, +0.0000021688,0.0000021724,0.0000021763,0.0000021802,0.0000021842, +0.0000021882,0.0000021915,0.0000021942,0.0000021966,0.0000021983, +0.0000021987,0.0000021993,0.0000021989,0.0000021978,0.0000021966, +0.0000021951,0.0000021937,0.0000021926,0.0000021925,0.0000021937, +0.0000021956,0.0000021978,0.0000021998,0.0000022015,0.0000022025, +0.0000022030,0.0000022031,0.0000022028,0.0000022020,0.0000022009, +0.0000021997,0.0000021984,0.0000021967,0.0000021948,0.0000021933, +0.0000021925,0.0000021918,0.0000021909,0.0000021895,0.0000021870, +0.0000021838,0.0000021808,0.0000021780,0.0000021758,0.0000021746, +0.0000021737,0.0000021735,0.0000021734,0.0000021734,0.0000021728, +0.0000021718,0.0000021702,0.0000021685,0.0000021672,0.0000021669, +0.0000021671,0.0000021684,0.0000021704,0.0000021732,0.0000021765, +0.0000021799,0.0000021829,0.0000021857,0.0000021882,0.0000021902, +0.0000021913,0.0000021913,0.0000021910,0.0000021897,0.0000021875, +0.0000021851,0.0000021823,0.0000021792,0.0000021760,0.0000021729, +0.0000021695,0.0000021655,0.0000021622,0.0000021594,0.0000021571, +0.0000021550,0.0000021533,0.0000021526,0.0000021527,0.0000021528, +0.0000021530,0.0000021532,0.0000021519,0.0000021515,0.0000021503, +0.0000021487,0.0000021476,0.0000021467,0.0000021457,0.0000021445, +0.0000021443,0.0000021446,0.0000021441,0.0000021436,0.0000021431, +0.0000021420,0.0000021401,0.0000021380,0.0000021362,0.0000021345, +0.0000021325,0.0000021299,0.0000021266,0.0000021232,0.0000021201, +0.0000021173,0.0000021146,0.0000021118,0.0000021087,0.0000021050, +0.0000021007,0.0000020959,0.0000020910,0.0000020866,0.0000020827, +0.0000020791,0.0000020754,0.0000020713,0.0000020663,0.0000020609, +0.0000020558,0.0000020512,0.0000020472,0.0000020433,0.0000020397, +0.0000020368,0.0000020350,0.0000020334,0.0000020319,0.0000020302, +0.0000020291,0.0000020284,0.0000020290,0.0000020311,0.0000020339, +0.0000020366,0.0000020383,0.0000020388,0.0000020381,0.0000020357, +0.0000020319,0.0000020278,0.0000020238,0.0000020207,0.0000020191, +0.0000020191,0.0000020198,0.0000020208,0.0000020215,0.0000020219, +0.0000020215,0.0000020207,0.0000020194,0.0000020175,0.0000020152, +0.0000020127,0.0000020101,0.0000020077,0.0000020069,0.0000020070, +0.0000020081,0.0000020101,0.0000020128,0.0000020153,0.0000020172, +0.0000020182,0.0000020185,0.0000020180,0.0000020170,0.0000020162, +0.0000020148,0.0000020142,0.0000020135,0.0000020129,0.0000020133, +0.0000020143,0.0000020160,0.0000020176,0.0000020188,0.0000020195, +0.0000020200,0.0000020198,0.0000020188,0.0000020175,0.0000020162, +0.0000020149,0.0000020128,0.0000020081,0.0000020004,0.0000019903, +0.0000019803,0.0000019733,0.0000019700,0.0000019679,0.0000019650, +0.0000019606,0.0000019568,0.0000019551,0.0000019538,0.0000019508, +0.0000019463,0.0000019412,0.0000019357,0.0000019312,0.0000019285, +0.0000019287,0.0000019317,0.0000019363,0.0000019407,0.0000019446, +0.0000019483,0.0000019511,0.0000019527,0.0000019545,0.0000019569, +0.0000019589,0.0000019600,0.0000019603,0.0000019601,0.0000019597, +0.0000019596,0.0000019607,0.0000019637,0.0000019672,0.0000019686, +0.0000019681,0.0000019673,0.0000019681,0.0000019713,0.0000019746, +0.0000019755,0.0000019749,0.0000019736,0.0000019726,0.0000019729, +0.0000019744,0.0000019766,0.0000019788,0.0000019805,0.0000019817, +0.0000019828,0.0000019841,0.0000019856,0.0000019871,0.0000019890, +0.0000019911,0.0000019932,0.0000019951,0.0000019967,0.0000019982, +0.0000019995,0.0000020007,0.0000020017,0.0000020029,0.0000020043, +0.0000020061,0.0000020081,0.0000020096,0.0000020110,0.0000020124, +0.0000020140,0.0000020154,0.0000020166,0.0000020174,0.0000020177, +0.0000020174,0.0000020168,0.0000020159,0.0000020150,0.0000020141, +0.0000020133,0.0000020127,0.0000020126,0.0000020128,0.0000020139, +0.0000020157,0.0000020182,0.0000020208,0.0000020232,0.0000020254, +0.0000020273,0.0000020292,0.0000020310,0.0000020331,0.0000020355, +0.0000020382,0.0000020407,0.0000020427,0.0000020441,0.0000020451, +0.0000020457,0.0000020463,0.0000020474,0.0000020493,0.0000020521, +0.0000020555,0.0000020588,0.0000020620,0.0000020651,0.0000020684, +0.0000020715,0.0000020743,0.0000020768,0.0000020789,0.0000020806, +0.0000020815,0.0000020815,0.0000020810,0.0000020800,0.0000020789, +0.0000020779,0.0000020771,0.0000020769,0.0000020771,0.0000020776, +0.0000020774,0.0000020769,0.0000020796,0.0000020908,0.0000021029, +0.0000021074,0.0000021078,0.0000021088,0.0000021106,0.0000021117, +0.0000021103,0.0000021079,0.0000021075,0.0000021061,0.0000021006, +0.0000020961,0.0000020920,0.0000020860,0.0000020826,0.0000020794, +0.0000020769,0.0000020773,0.0000020780,0.0000020790,0.0000020806, +0.0000020808,0.0000020798,0.0000020789,0.0000020797,0.0000020840, +0.0000020910,0.0000020974,0.0000021013,0.0000021028,0.0000021026, +0.0000021010,0.0000020984,0.0000020948,0.0000020912,0.0000020876, +0.0000020841,0.0000020805,0.0000020764,0.0000020724,0.0000020687, +0.0000020651,0.0000020619,0.0000020589,0.0000020560,0.0000020536, +0.0000020518,0.0000020502,0.0000020485,0.0000020466,0.0000020442, +0.0000020413,0.0000020382,0.0000020357,0.0000020345,0.0000020341, +0.0000020343,0.0000020350,0.0000020358,0.0000020365,0.0000020370, +0.0000020374,0.0000020376,0.0000020373,0.0000020363,0.0000020351, +0.0000020339,0.0000020330,0.0000020324,0.0000020324,0.0000020328, +0.0000020336,0.0000020349,0.0000020364,0.0000020380,0.0000020391, +0.0000020399,0.0000020404,0.0000020412,0.0000020420,0.0000020428, +0.0000020432,0.0000020433,0.0000020429,0.0000020422,0.0000020411, +0.0000020394,0.0000020371,0.0000020342,0.0000020310,0.0000020280, +0.0000020253,0.0000020233,0.0000020213,0.0000020199,0.0000020180, +0.0000020170,0.0000020162,0.0000020161,0.0000020168,0.0000020186, +0.0000020216,0.0000020257,0.0000020309,0.0000020366,0.0000020423, +0.0000020474,0.0000020517,0.0000020552,0.0000020580,0.0000020599, +0.0000020610,0.0000020619,0.0000020625,0.0000020631,0.0000020640, +0.0000020647,0.0000020650,0.0000020642,0.0000020627,0.0000020605, +0.0000020576,0.0000020543,0.0000020508,0.0000020471,0.0000020428, +0.0000020382,0.0000020337,0.0000020295,0.0000020265,0.0000020253, +0.0000020257,0.0000020275,0.0000020308,0.0000020345,0.0000020380, +0.0000020404,0.0000020417,0.0000020422,0.0000020420,0.0000020407, +0.0000020378,0.0000020333,0.0000020272,0.0000020197,0.0000020113, +0.0000020030,0.0000019953,0.0000019882,0.0000019814,0.0000019746, +0.0000019683,0.0000019630,0.0000019588,0.0000019559,0.0000019544, +0.0000019538,0.0000019537,0.0000019533,0.0000019525,0.0000019514, +0.0000019504,0.0000019500,0.0000019505,0.0000019512,0.0000019516, +0.0000019520,0.0000019528,0.0000019538,0.0000019540,0.0000019531, +0.0000019518,0.0000019512,0.0000019514,0.0000019526,0.0000019537, +0.0000019547,0.0000019553,0.0000019555,0.0000019559,0.0000019573, +0.0000019611,0.0000019668,0.0000019737,0.0000019804,0.0000019856, +0.0000019890,0.0000019922,0.0000019960,0.0000019998,0.0000020021, +0.0000020023,0.0000020006,0.0000019981,0.0000019959,0.0000019947, +0.0000019949,0.0000019955,0.0000019952,0.0000019924,0.0000019884, +0.0000019814,0.0000019740,0.0000019669,0.0000019597,0.0000019525, +0.0000019467,0.0000019429,0.0000019436,0.0000019485,0.0000019563, +0.0000019646,0.0000019721,0.0000019781,0.0000019823,0.0000019849, +0.0000019865,0.0000019883,0.0000019920,0.0000019989,0.0000020085, +0.0000020199,0.0000020314,0.0000020409,0.0000020473,0.0000020503, +0.0000020505,0.0000020497,0.0000020478,0.0000020449,0.0000020413, +0.0000020374,0.0000020336,0.0000020301,0.0000020269,0.0000020241, +0.0000020220,0.0000020206,0.0000020198,0.0000020196,0.0000020201, +0.0000020212,0.0000020230,0.0000020249,0.0000020269,0.0000020289, +0.0000020311,0.0000020334,0.0000020356,0.0000020372,0.0000020379, +0.0000020375,0.0000020363,0.0000020349,0.0000020329,0.0000020303, +0.0000020266,0.0000020225,0.0000020180,0.0000020120,0.0000020040, +0.0000019949,0.0000019863,0.0000019797,0.0000019759,0.0000019748, +0.0000019759,0.0000019790,0.0000019835,0.0000019886,0.0000019933, +0.0000019967,0.0000019982,0.0000019979,0.0000019960,0.0000019935, +0.0000019909,0.0000019879,0.0000019850,0.0000019825,0.0000019811, +0.0000019800,0.0000019783,0.0000019764,0.0000019738,0.0000019701, +0.0000019661,0.0000019627,0.0000019596,0.0000019570,0.0000019566, +0.0000019579,0.0000019604,0.0000019627,0.0000019642,0.0000019646, +0.0000019635,0.0000019612,0.0000019579,0.0000019537,0.0000019495, +0.0000019452,0.0000019411,0.0000019380,0.0000019359,0.0000019352, +0.0000019353,0.0000019356,0.0000019355,0.0000019352,0.0000019345, +0.0000019335,0.0000019326,0.0000019317,0.0000019301,0.0000019279, +0.0000019250,0.0000019218,0.0000019189,0.0000019166,0.0000019147, +0.0000019132,0.0000019114,0.0000019090,0.0000019061,0.0000019030, +0.0000018997,0.0000018962,0.0000018926,0.0000018892,0.0000018863, +0.0000018831,0.0000018796,0.0000018761,0.0000018732,0.0000018706, +0.0000018681,0.0000018657,0.0000018636,0.0000018620,0.0000018609, +0.0000018604,0.0000018603,0.0000018608,0.0000018616,0.0000018624, +0.0000018626,0.0000018627,0.0000018629,0.0000018631,0.0000018631, +0.0000018630,0.0000018629,0.0000018627,0.0000018624,0.0000018619, +0.0000018608,0.0000018597,0.0000018587,0.0000018579,0.0000018575, +0.0000018572,0.0000018568,0.0000018564,0.0000018564,0.0000018564, +0.0000018564,0.0000018560,0.0000018551,0.0000018539,0.0000018524, +0.0000018515,0.0000018516,0.0000018528,0.0000018549,0.0000018572, +0.0000018592,0.0000018607,0.0000018617,0.0000018626,0.0000018634, +0.0000018643,0.0000018650,0.0000018655,0.0000018659,0.0000018663, +0.0000018667,0.0000018671,0.0000018679,0.0000018693,0.0000018711, +0.0000018735,0.0000018763,0.0000018792,0.0000018822,0.0000018848, +0.0000018869,0.0000018886,0.0000018903,0.0000018924,0.0000018952, +0.0000018986,0.0000019024,0.0000019064,0.0000019102,0.0000019135, +0.0000019163,0.0000019184,0.0000019201,0.0000019212,0.0000019218, +0.0000019222,0.0000019224,0.0000019226,0.0000019229,0.0000019232, +0.0000019238,0.0000019246,0.0000019254,0.0000019258,0.0000019260, +0.0000019264,0.0000019271,0.0000019282,0.0000019296,0.0000019312, +0.0000019331,0.0000019351,0.0000019370,0.0000019379,0.0000019378, +0.0000019367,0.0000019358,0.0000019358,0.0000019369,0.0000019389, +0.0000019413,0.0000019437,0.0000019450,0.0000019447,0.0000019434, +0.0000019418,0.0000019410,0.0000019417,0.0000019434,0.0000019452, +0.0000019453,0.0000019433,0.0000019365,0.0000019277,0.0000019232, +0.0000019255,0.0000019307,0.0000019353,0.0000019386,0.0000019416, +0.0000019446,0.0000019480,0.0000019502,0.0000019491,0.0000019445, +0.0000019412,0.0000019426,0.0000019484,0.0000019571,0.0000019666, +0.0000019759,0.0000019850,0.0000019953,0.0000020067,0.0000020168, +0.0000020229,0.0000020232,0.0000020231,0.0000020231,0.0000020242, +0.0000020268,0.0000020305,0.0000020343,0.0000020372,0.0000020387, +0.0000020386,0.0000020373,0.0000020358,0.0000020344,0.0000020338, +0.0000020344,0.0000020369,0.0000020411,0.0000020461,0.0000020511, +0.0000020560,0.0000020592,0.0000020609,0.0000020598,0.0000020567, +0.0000020520,0.0000020470,0.0000020426,0.0000020391,0.0000020366, +0.0000020348,0.0000020338,0.0000020337,0.0000020341,0.0000020351, +0.0000020364,0.0000020377,0.0000020387,0.0000020393,0.0000020393, +0.0000020388,0.0000020380,0.0000020374,0.0000020373,0.0000020379, +0.0000020388,0.0000020396,0.0000020402,0.0000020405,0.0000020405, +0.0000020404,0.0000020402,0.0000020402,0.0000020402,0.0000020398, +0.0000020390,0.0000020374,0.0000020347,0.0000020312,0.0000020279, +0.0000020258,0.0000020252,0.0000020255,0.0000020265,0.0000020277, +0.0000020283,0.0000020280,0.0000020268,0.0000020252,0.0000020235, +0.0000020218,0.0000020203,0.0000020190,0.0000020178,0.0000020168, +0.0000020155,0.0000020138,0.0000020118,0.0000020094,0.0000020069, +0.0000020043,0.0000020016,0.0000019991,0.0000019966,0.0000019940, +0.0000019914,0.0000019891,0.0000019867,0.0000019843,0.0000019820, +0.0000019797,0.0000019774,0.0000019749,0.0000019727,0.0000019706, +0.0000019692,0.0000019681,0.0000019670,0.0000019662,0.0000019650, +0.0000019634,0.0000019611,0.0000019579,0.0000019541,0.0000019504, +0.0000019464,0.0000019431,0.0000019400,0.0000019367,0.0000019330, +0.0000019295,0.0000019271,0.0000019261,0.0000019254,0.0000019262, +0.0000019280,0.0000019306,0.0000019333,0.0000019361,0.0000019396, +0.0000019444,0.0000019500,0.0000019552,0.0000019596,0.0000019626, +0.0000019656,0.0000019691,0.0000019725,0.0000019743,0.0000019737, +0.0000019707,0.0000019666,0.0000019631,0.0000019621,0.0000019631, +0.0000019599,0.0000019606,0.0000019625,0.0000019637,0.0000019635, +0.0000019611,0.0000019564,0.0000019522,0.0000019507,0.0000019513, +0.0000019527,0.0000019540,0.0000019553,0.0000019569,0.0000019580, +0.0000019576,0.0000019553,0.0000019528,0.0000019512,0.0000019504, +0.0000019493,0.0000019472,0.0000019445,0.0000019413,0.0000019380, +0.0000019349,0.0000019335,0.0000019341,0.0000019365,0.0000019403, +0.0000019446,0.0000019485,0.0000019520,0.0000019554,0.0000019590, +0.0000019625,0.0000019652,0.0000019673,0.0000019689,0.0000019698, +0.0000019700,0.0000019695,0.0000019687,0.0000019674,0.0000019657, +0.0000019640,0.0000019626,0.0000019616,0.0000019610,0.0000019607, +0.0000019608,0.0000019609,0.0000019610,0.0000019610,0.0000019609, +0.0000019608,0.0000019605,0.0000019601,0.0000019592,0.0000019576, +0.0000019555,0.0000019530,0.0000019502,0.0000019469,0.0000019439, +0.0000019419,0.0000019408,0.0000019403,0.0000019405,0.0000019417, +0.0000019432,0.0000019449,0.0000019461,0.0000019470,0.0000019471, +0.0000019469,0.0000019468,0.0000019464,0.0000019456,0.0000019445, +0.0000019435,0.0000019421,0.0000019403,0.0000019391,0.0000019384, +0.0000019381,0.0000019378,0.0000019385,0.0000019400,0.0000019414, +0.0000019425,0.0000019433,0.0000019440,0.0000019445,0.0000019453, +0.0000019460,0.0000019461,0.0000019459,0.0000019462,0.0000019473, +0.0000019484,0.0000019493,0.0000019504,0.0000019523,0.0000019554, +0.0000019587,0.0000019621,0.0000019648,0.0000019669,0.0000019682, +0.0000019686,0.0000019684,0.0000019677,0.0000019666,0.0000019651, +0.0000019629,0.0000019602,0.0000019570,0.0000019544,0.0000019523, +0.0000019496,0.0000019475,0.0000019471,0.0000019477,0.0000019499, +0.0000019534,0.0000019572,0.0000019616,0.0000019672,0.0000019742, +0.0000019826,0.0000019916,0.0000020005,0.0000020099,0.0000020187, +0.0000020256,0.0000020305,0.0000020335,0.0000020358,0.0000020392, +0.0000020433,0.0000020461,0.0000020475,0.0000020478,0.0000020473, +0.0000020457,0.0000020435,0.0000020418,0.0000020400,0.0000020373, +0.0000020338,0.0000020303,0.0000020271,0.0000020246,0.0000020234, +0.0000020236,0.0000020250,0.0000020270,0.0000020291,0.0000020318, +0.0000020349,0.0000020383,0.0000020421,0.0000020458,0.0000020486, +0.0000020500,0.0000020507,0.0000020514,0.0000020521,0.0000020528, +0.0000020538,0.0000020546,0.0000020548,0.0000020547,0.0000020539, +0.0000020528,0.0000020515,0.0000020502,0.0000020489,0.0000020477, +0.0000020468,0.0000020469,0.0000020480,0.0000020495,0.0000020510, +0.0000020525,0.0000020541,0.0000020557,0.0000020574,0.0000020592, +0.0000020606,0.0000020619,0.0000020628,0.0000020636,0.0000020648, +0.0000020659,0.0000020667,0.0000020677,0.0000020688,0.0000020701, +0.0000020715,0.0000020734,0.0000020758,0.0000020780,0.0000020800, +0.0000020819,0.0000020836,0.0000020849,0.0000020860,0.0000020868, +0.0000020873,0.0000020878,0.0000020887,0.0000020900,0.0000020916, +0.0000020931,0.0000020945,0.0000020961,0.0000020981,0.0000021003, +0.0000021023,0.0000021041,0.0000021057,0.0000021074,0.0000021089, +0.0000021110,0.0000021132,0.0000021159,0.0000021187,0.0000021216, +0.0000021241,0.0000021266,0.0000021287,0.0000021303,0.0000021317, +0.0000021326,0.0000021328,0.0000021323,0.0000021308,0.0000021279, +0.0000021243,0.0000021206,0.0000021167,0.0000021132,0.0000021102, +0.0000021076,0.0000021055,0.0000021039,0.0000021022,0.0000020997, +0.0000020966,0.0000020938,0.0000020928,0.0000020931,0.0000020941, +0.0000020961,0.0000020997,0.0000021044,0.0000021105,0.0000021170, +0.0000021212,0.0000021234,0.0000021243,0.0000021245,0.0000021240, +0.0000021229,0.0000021216,0.0000021193,0.0000021147,0.0000021093, +0.0000021055,0.0000021037,0.0000021035,0.0000021047,0.0000021064, +0.0000021085,0.0000021102,0.0000021111,0.0000021162,0.0000021276, +0.0000021379,0.0000021441,0.0000021502,0.0000021562,0.0000021590, +0.0000021586,0.0000021547,0.0000021479,0.0000021386,0.0000021281, +0.0000021189,0.0000021103,0.0000021000,0.0000020929,0.0000020897, +0.0000020868,0.0000020841,0.0000020824,0.0000020818,0.0000020823, +0.0000020854,0.0000020893,0.0000020912,0.0000020913,0.0000020898, +0.0000020870,0.0000020843,0.0000020824,0.0000020811,0.0000020801, +0.0000020789,0.0000020765,0.0000020720,0.0000020651,0.0000020571, +0.0000020497,0.0000020434,0.0000020377,0.0000020337,0.0000020333, +0.0000020353,0.0000020381,0.0000020408,0.0000020425,0.0000020433, +0.0000020445,0.0000020461,0.0000020468,0.0000020457,0.0000020424, +0.0000020384,0.0000020340,0.0000020289,0.0000020247,0.0000020232, +0.0000020245,0.0000020262,0.0000020263,0.0000020282,0.0000020354, +0.0000020453,0.0000020522,0.0000020535,0.0000020519,0.0000020489, +0.0000020418,0.0000020248,0.0000020061,0.0000019975,0.0000020003, +0.0000020184,0.0000020359,0.0000020383,0.0000020358,0.0000020354, +0.0000020486,0.0000020695,0.0000020780,0.0000020746,0.0000020730, +0.0000020803,0.0000020979,0.0000021094,0.0000021146,0.0000021276, +0.0000021458,0.0000021562,0.0000021607,0.0000021648,0.0000021697, +0.0000021712,0.0000021719,0.0000021747,0.0000021793,0.0000021845, +0.0000021856,0.0000021838,0.0000021824,0.0000021808,0.0000021789, +0.0000021807,0.0000021888,0.0000021977,0.0000022000,0.0000021989, +0.0000021971,0.0000021959,0.0000021938,0.0000021917,0.0000021891, +0.0000021851,0.0000021817,0.0000021790,0.0000021770,0.0000021755, +0.0000021739,0.0000021719,0.0000021695,0.0000021666,0.0000021626, +0.0000021594,0.0000021571,0.0000021559,0.0000021557,0.0000021558, +0.0000021562,0.0000021577,0.0000021605,0.0000021637,0.0000021674, +0.0000021707,0.0000021734,0.0000021746,0.0000021742,0.0000021730, +0.0000021706,0.0000021676,0.0000021661,0.0000021661,0.0000021671, +0.0000021681,0.0000021679,0.0000021657,0.0000021624,0.0000021583, +0.0000021530,0.0000021468,0.0000021403,0.0000021331,0.0000021260, +0.0000021191,0.0000021137,0.0000021089,0.0000021044,0.0000021004, +0.0000020971,0.0000020947,0.0000020936,0.0000020934,0.0000020934, +0.0000020943,0.0000020970,0.0000020993,0.0000021007,0.0000021014, +0.0000021016,0.0000021015,0.0000021009,0.0000020995,0.0000020969, +0.0000020943,0.0000020911,0.0000020875,0.0000020840,0.0000020811, +0.0000020794,0.0000020785,0.0000020776,0.0000020768,0.0000020766, +0.0000020764,0.0000020767,0.0000020785,0.0000020810,0.0000020835, +0.0000020854,0.0000020872,0.0000020879,0.0000020880,0.0000020877, +0.0000020869,0.0000020855,0.0000020839,0.0000020823,0.0000020809, +0.0000020789,0.0000020768,0.0000020743,0.0000020714,0.0000020682, +0.0000020646,0.0000020611,0.0000020590,0.0000020574,0.0000020563, +0.0000020555,0.0000020550,0.0000020546,0.0000020539,0.0000020530, +0.0000020523,0.0000020520,0.0000020516,0.0000020509,0.0000020501, +0.0000020501,0.0000020500,0.0000020507,0.0000020522,0.0000020535, +0.0000020546,0.0000020544,0.0000020534,0.0000020516,0.0000020492, +0.0000020466,0.0000020446,0.0000020431,0.0000020432,0.0000020453, +0.0000020482,0.0000020514,0.0000020551,0.0000020590,0.0000020624, +0.0000020649,0.0000020667,0.0000020679,0.0000020683,0.0000020682, +0.0000020673,0.0000020668,0.0000020663,0.0000020661,0.0000020654, +0.0000020647,0.0000020659,0.0000020681,0.0000020701,0.0000020721, +0.0000020742,0.0000020760,0.0000020773,0.0000020783,0.0000020788, +0.0000020786,0.0000020773,0.0000020755,0.0000020735,0.0000020711, +0.0000020686,0.0000020662,0.0000020648,0.0000020654,0.0000020671, +0.0000020695,0.0000020725,0.0000020763,0.0000020810,0.0000020865, +0.0000020920,0.0000020969,0.0000021011,0.0000021048,0.0000021079, +0.0000021103,0.0000021122,0.0000021135,0.0000021146,0.0000021156, +0.0000021166,0.0000021174,0.0000021176,0.0000021171,0.0000021165, +0.0000021164,0.0000021164,0.0000021163,0.0000021165,0.0000021175, +0.0000021186,0.0000021199,0.0000021213,0.0000021233,0.0000021265, +0.0000021305,0.0000021347,0.0000021385,0.0000021419,0.0000021448, +0.0000021473,0.0000021488,0.0000021484,0.0000021479,0.0000021468, +0.0000021449,0.0000021422,0.0000021392,0.0000021361,0.0000021327, +0.0000021292,0.0000021261,0.0000021234,0.0000021204,0.0000021182, +0.0000021171,0.0000021166,0.0000021166,0.0000021173,0.0000021185, +0.0000021198,0.0000021210,0.0000021226,0.0000021249,0.0000021278, +0.0000021310,0.0000021342,0.0000021375,0.0000021410,0.0000021447, +0.0000021482,0.0000021519,0.0000021555,0.0000021589,0.0000021622, +0.0000021656,0.0000021693,0.0000021737,0.0000021785,0.0000021830, +0.0000021871,0.0000021909,0.0000021939,0.0000021962,0.0000021981, +0.0000021995,0.0000022003,0.0000022016,0.0000022021,0.0000022021, +0.0000022019,0.0000022015,0.0000022017,0.0000022022,0.0000022026, +0.0000022031,0.0000022034,0.0000022038,0.0000022042,0.0000022043, +0.0000022039,0.0000022030,0.0000022016,0.0000022001,0.0000021989, +0.0000021974,0.0000021958,0.0000021944,0.0000021937,0.0000021933, +0.0000021932,0.0000021927,0.0000021915,0.0000021895,0.0000021865, +0.0000021832,0.0000021801,0.0000021775,0.0000021756,0.0000021743, +0.0000021737,0.0000021732,0.0000021727,0.0000021719,0.0000021707, +0.0000021691,0.0000021676,0.0000021667,0.0000021664,0.0000021672, +0.0000021691,0.0000021717,0.0000021749,0.0000021780,0.0000021809, +0.0000021836,0.0000021862,0.0000021885,0.0000021903,0.0000021915, +0.0000021918,0.0000021909,0.0000021891,0.0000021867,0.0000021838, +0.0000021803,0.0000021764,0.0000021727,0.0000021686,0.0000021641, +0.0000021600,0.0000021565,0.0000021537,0.0000021513,0.0000021499, +0.0000021491,0.0000021490,0.0000021493,0.0000021496,0.0000021500, +0.0000021501,0.0000021496,0.0000021488,0.0000021480,0.0000021473, +0.0000021468,0.0000021465,0.0000021471,0.0000021480,0.0000021483, +0.0000021502,0.0000021526,0.0000021529,0.0000021522,0.0000021517, +0.0000021511,0.0000021501,0.0000021486,0.0000021458,0.0000021426, +0.0000021387,0.0000021341,0.0000021294,0.0000021250,0.0000021208, +0.0000021163,0.0000021115,0.0000021066,0.0000021015,0.0000020967, +0.0000020928,0.0000020902,0.0000020881,0.0000020865,0.0000020847, +0.0000020822,0.0000020785,0.0000020744,0.0000020701,0.0000020652, +0.0000020597,0.0000020537,0.0000020479,0.0000020427,0.0000020382, +0.0000020344,0.0000020312,0.0000020285,0.0000020265,0.0000020264, +0.0000020281,0.0000020304,0.0000020332,0.0000020357,0.0000020374, +0.0000020372,0.0000020357,0.0000020323,0.0000020280,0.0000020234, +0.0000020196,0.0000020180,0.0000020181,0.0000020183,0.0000020195, +0.0000020209,0.0000020216,0.0000020216,0.0000020210,0.0000020198, +0.0000020181,0.0000020158,0.0000020131,0.0000020101,0.0000020073, +0.0000020056,0.0000020048,0.0000020051,0.0000020066,0.0000020096, +0.0000020132,0.0000020165,0.0000020192,0.0000020209,0.0000020216, +0.0000020213,0.0000020200,0.0000020180,0.0000020160,0.0000020141, +0.0000020118,0.0000020109,0.0000020093,0.0000020087,0.0000020092, +0.0000020100,0.0000020112,0.0000020128,0.0000020143,0.0000020154, +0.0000020159,0.0000020158,0.0000020157,0.0000020152,0.0000020142, +0.0000020107,0.0000020041,0.0000019946,0.0000019841,0.0000019755, +0.0000019697,0.0000019660,0.0000019632,0.0000019603,0.0000019585, +0.0000019583,0.0000019575,0.0000019542,0.0000019491,0.0000019428, +0.0000019368,0.0000019322,0.0000019303,0.0000019317,0.0000019355, +0.0000019401,0.0000019442,0.0000019480,0.0000019512,0.0000019537, +0.0000019560,0.0000019579,0.0000019590,0.0000019591,0.0000019581, +0.0000019564,0.0000019550,0.0000019546,0.0000019565,0.0000019605, +0.0000019636,0.0000019639,0.0000019638,0.0000019649,0.0000019681, +0.0000019723,0.0000019750,0.0000019751,0.0000019741,0.0000019733, +0.0000019740,0.0000019765,0.0000019796,0.0000019823,0.0000019841, +0.0000019853,0.0000019863,0.0000019872,0.0000019883,0.0000019896, +0.0000019911,0.0000019928,0.0000019950,0.0000019973,0.0000019993, +0.0000020010,0.0000020024,0.0000020037,0.0000020045,0.0000020049, +0.0000020054,0.0000020063,0.0000020076,0.0000020092,0.0000020108, +0.0000020125,0.0000020141,0.0000020158,0.0000020175,0.0000020193, +0.0000020209,0.0000020220,0.0000020225,0.0000020225,0.0000020219, +0.0000020210,0.0000020198,0.0000020183,0.0000020169,0.0000020156, +0.0000020147,0.0000020144,0.0000020152,0.0000020166,0.0000020185, +0.0000020205,0.0000020225,0.0000020245,0.0000020265,0.0000020284, +0.0000020303,0.0000020324,0.0000020345,0.0000020368,0.0000020390, +0.0000020411,0.0000020429,0.0000020442,0.0000020452,0.0000020465, +0.0000020484,0.0000020509,0.0000020541,0.0000020575,0.0000020609, +0.0000020644,0.0000020678,0.0000020711,0.0000020741,0.0000020767, +0.0000020786,0.0000020796,0.0000020800,0.0000020798,0.0000020791, +0.0000020781,0.0000020769,0.0000020758,0.0000020754,0.0000020757, +0.0000020767,0.0000020772,0.0000020764,0.0000020759,0.0000020809, +0.0000020939,0.0000021045,0.0000021077,0.0000021084,0.0000021099, +0.0000021120,0.0000021124,0.0000021106,0.0000021090,0.0000021089, +0.0000021062,0.0000021004,0.0000020962,0.0000020911,0.0000020850, +0.0000020821,0.0000020789,0.0000020764,0.0000020770,0.0000020780, +0.0000020792,0.0000020810,0.0000020821,0.0000020814,0.0000020802, +0.0000020803,0.0000020821,0.0000020868,0.0000020921,0.0000020959, +0.0000020976,0.0000020975,0.0000020959,0.0000020930,0.0000020895, +0.0000020860,0.0000020825,0.0000020789,0.0000020751,0.0000020714, +0.0000020678,0.0000020645,0.0000020616,0.0000020593,0.0000020573, +0.0000020553,0.0000020540,0.0000020525,0.0000020507,0.0000020484, +0.0000020460,0.0000020432,0.0000020402,0.0000020375,0.0000020356, +0.0000020346,0.0000020344,0.0000020347,0.0000020353,0.0000020360, +0.0000020361,0.0000020358,0.0000020352,0.0000020344,0.0000020333, +0.0000020321,0.0000020308,0.0000020296,0.0000020289,0.0000020289, +0.0000020295,0.0000020307,0.0000020325,0.0000020347,0.0000020373, +0.0000020395,0.0000020418,0.0000020437,0.0000020453,0.0000020466, +0.0000020478,0.0000020487,0.0000020493,0.0000020495,0.0000020493, +0.0000020487,0.0000020477,0.0000020459,0.0000020433,0.0000020401, +0.0000020365,0.0000020328,0.0000020296,0.0000020266,0.0000020238, +0.0000020211,0.0000020186,0.0000020159,0.0000020137,0.0000020120, +0.0000020109,0.0000020110,0.0000020124,0.0000020149,0.0000020187, +0.0000020236,0.0000020291,0.0000020347,0.0000020400,0.0000020447, +0.0000020486,0.0000020518,0.0000020542,0.0000020558,0.0000020570, +0.0000020580,0.0000020591,0.0000020604,0.0000020616,0.0000020619, +0.0000020610,0.0000020591,0.0000020563,0.0000020524,0.0000020483, +0.0000020436,0.0000020387,0.0000020343,0.0000020300,0.0000020261, +0.0000020241,0.0000020226,0.0000020227,0.0000020242,0.0000020269, +0.0000020302,0.0000020333,0.0000020356,0.0000020371,0.0000020378, +0.0000020377,0.0000020365,0.0000020337,0.0000020292,0.0000020240, +0.0000020172,0.0000020094,0.0000020016,0.0000019943,0.0000019872, +0.0000019797,0.0000019721,0.0000019656,0.0000019609,0.0000019581, +0.0000019567,0.0000019564,0.0000019571,0.0000019579,0.0000019580, +0.0000019570,0.0000019551,0.0000019529,0.0000019515,0.0000019515, +0.0000019521,0.0000019523,0.0000019526,0.0000019535,0.0000019545, +0.0000019551,0.0000019545,0.0000019527,0.0000019512,0.0000019508, +0.0000019512,0.0000019519,0.0000019528,0.0000019536,0.0000019542, +0.0000019545,0.0000019556,0.0000019590,0.0000019639,0.0000019698, +0.0000019759,0.0000019810,0.0000019846,0.0000019874,0.0000019908, +0.0000019946,0.0000019976,0.0000019985,0.0000019970,0.0000019942, +0.0000019914,0.0000019897,0.0000019894,0.0000019899,0.0000019905, +0.0000019895,0.0000019855,0.0000019798,0.0000019734,0.0000019672, +0.0000019604,0.0000019526,0.0000019446,0.0000019388,0.0000019356, +0.0000019388,0.0000019456,0.0000019545,0.0000019634,0.0000019714, +0.0000019777,0.0000019818,0.0000019839,0.0000019851,0.0000019867, +0.0000019899,0.0000019959,0.0000020051,0.0000020164,0.0000020280, +0.0000020380,0.0000020445,0.0000020476,0.0000020486,0.0000020470, +0.0000020461,0.0000020440,0.0000020415,0.0000020388,0.0000020363, +0.0000020340,0.0000020323,0.0000020311,0.0000020302,0.0000020300, +0.0000020303,0.0000020308,0.0000020315,0.0000020321,0.0000020327, +0.0000020332,0.0000020339,0.0000020347,0.0000020358,0.0000020367, +0.0000020369,0.0000020367,0.0000020362,0.0000020351,0.0000020332, +0.0000020304,0.0000020263,0.0000020217,0.0000020161,0.0000020087, +0.0000019992,0.0000019885,0.0000019784,0.0000019704,0.0000019653, +0.0000019629,0.0000019627,0.0000019643,0.0000019674,0.0000019720, +0.0000019777,0.0000019837,0.0000019886,0.0000019918,0.0000019924, +0.0000019910,0.0000019886,0.0000019857,0.0000019828,0.0000019805, +0.0000019789,0.0000019773,0.0000019750,0.0000019723,0.0000019686, +0.0000019636,0.0000019585,0.0000019539,0.0000019493,0.0000019456, +0.0000019441,0.0000019448,0.0000019468,0.0000019489,0.0000019508, +0.0000019519,0.0000019520,0.0000019512,0.0000019493,0.0000019468, +0.0000019438,0.0000019402,0.0000019365,0.0000019332,0.0000019305, +0.0000019290,0.0000019286,0.0000019288,0.0000019292,0.0000019294, +0.0000019290,0.0000019281,0.0000019270,0.0000019256,0.0000019240, +0.0000019221,0.0000019198,0.0000019172,0.0000019148,0.0000019130, +0.0000019117,0.0000019106,0.0000019092,0.0000019069,0.0000019039, +0.0000019005,0.0000018971,0.0000018936,0.0000018899,0.0000018863, +0.0000018831,0.0000018798,0.0000018761,0.0000018723,0.0000018687, +0.0000018654,0.0000018621,0.0000018591,0.0000018566,0.0000018545, +0.0000018530,0.0000018525,0.0000018529,0.0000018537,0.0000018548, +0.0000018559,0.0000018564,0.0000018568,0.0000018573,0.0000018577, +0.0000018578,0.0000018576,0.0000018574,0.0000018571,0.0000018567, +0.0000018561,0.0000018551,0.0000018538,0.0000018525,0.0000018515, +0.0000018509,0.0000018504,0.0000018498,0.0000018491,0.0000018489, +0.0000018489,0.0000018488,0.0000018483,0.0000018474,0.0000018465, +0.0000018457,0.0000018454,0.0000018458,0.0000018472,0.0000018496, +0.0000018524,0.0000018551,0.0000018571,0.0000018587,0.0000018600, +0.0000018610,0.0000018617,0.0000018624,0.0000018629,0.0000018634, +0.0000018640,0.0000018644,0.0000018646,0.0000018648,0.0000018651, +0.0000018656,0.0000018662,0.0000018672,0.0000018687,0.0000018707, +0.0000018729,0.0000018752,0.0000018772,0.0000018791,0.0000018810, +0.0000018833,0.0000018861,0.0000018897,0.0000018938,0.0000018980, +0.0000019021,0.0000019059,0.0000019092,0.0000019123,0.0000019148, +0.0000019168,0.0000019181,0.0000019188,0.0000019189,0.0000019190, +0.0000019194,0.0000019201,0.0000019210,0.0000019218,0.0000019224, +0.0000019229,0.0000019232,0.0000019234,0.0000019236,0.0000019243, +0.0000019254,0.0000019267,0.0000019283,0.0000019303,0.0000019323, +0.0000019334,0.0000019334,0.0000019326,0.0000019316,0.0000019314, +0.0000019321,0.0000019343,0.0000019374,0.0000019404,0.0000019420, +0.0000019421,0.0000019409,0.0000019392,0.0000019382,0.0000019388, +0.0000019408,0.0000019427,0.0000019426,0.0000019393,0.0000019316, +0.0000019238,0.0000019211,0.0000019241,0.0000019296,0.0000019342, +0.0000019377,0.0000019407,0.0000019438,0.0000019471,0.0000019482, +0.0000019461,0.0000019417,0.0000019388,0.0000019403,0.0000019457, +0.0000019535,0.0000019623,0.0000019711,0.0000019802,0.0000019904, +0.0000020018,0.0000020126,0.0000020202,0.0000020227,0.0000020227, +0.0000020225,0.0000020232,0.0000020250,0.0000020280,0.0000020313, +0.0000020337,0.0000020348,0.0000020345,0.0000020335,0.0000020322, +0.0000020310,0.0000020309,0.0000020321,0.0000020352,0.0000020397, +0.0000020448,0.0000020499,0.0000020545,0.0000020581,0.0000020599, +0.0000020603,0.0000020592,0.0000020561,0.0000020517,0.0000020468, +0.0000020424,0.0000020390,0.0000020367,0.0000020353,0.0000020351, +0.0000020355,0.0000020363,0.0000020373,0.0000020383,0.0000020390, +0.0000020393,0.0000020392,0.0000020388,0.0000020382,0.0000020378, +0.0000020378,0.0000020382,0.0000020388,0.0000020392,0.0000020395, +0.0000020396,0.0000020396,0.0000020397,0.0000020398,0.0000020398, +0.0000020395,0.0000020388,0.0000020374,0.0000020349,0.0000020316, +0.0000020285,0.0000020269,0.0000020267,0.0000020275,0.0000020291, +0.0000020306,0.0000020314,0.0000020310,0.0000020298,0.0000020280, +0.0000020261,0.0000020245,0.0000020231,0.0000020218,0.0000020207, +0.0000020197,0.0000020186,0.0000020173,0.0000020158,0.0000020138, +0.0000020114,0.0000020087,0.0000020058,0.0000020030,0.0000020003, +0.0000019976,0.0000019952,0.0000019927,0.0000019899,0.0000019869, +0.0000019840,0.0000019813,0.0000019787,0.0000019761,0.0000019738, +0.0000019715,0.0000019693,0.0000019670,0.0000019647,0.0000019622, +0.0000019599,0.0000019579,0.0000019554,0.0000019531,0.0000019505, +0.0000019476,0.0000019446,0.0000019416,0.0000019390,0.0000019362, +0.0000019336,0.0000019304,0.0000019273,0.0000019248,0.0000019239, +0.0000019237,0.0000019242,0.0000019247,0.0000019258,0.0000019277, +0.0000019302,0.0000019333,0.0000019375,0.0000019429,0.0000019485, +0.0000019535,0.0000019574,0.0000019606,0.0000019643,0.0000019679, +0.0000019703,0.0000019704,0.0000019678,0.0000019642,0.0000019610, +0.0000019627,0.0000019601,0.0000019586,0.0000019587,0.0000019601, +0.0000019620,0.0000019630,0.0000019619,0.0000019587,0.0000019550, +0.0000019532,0.0000019538,0.0000019555,0.0000019569,0.0000019579, +0.0000019590,0.0000019597,0.0000019593,0.0000019566,0.0000019530, +0.0000019504,0.0000019486,0.0000019467,0.0000019443,0.0000019411, +0.0000019376,0.0000019340,0.0000019320,0.0000019313,0.0000019326, +0.0000019352,0.0000019386,0.0000019426,0.0000019463,0.0000019499, +0.0000019534,0.0000019565,0.0000019590,0.0000019609,0.0000019622, +0.0000019630,0.0000019632,0.0000019629,0.0000019620,0.0000019607, +0.0000019595,0.0000019589,0.0000019587,0.0000019586,0.0000019585, +0.0000019588,0.0000019592,0.0000019594,0.0000019596,0.0000019599, +0.0000019603,0.0000019604,0.0000019601,0.0000019594,0.0000019582, +0.0000019564,0.0000019544,0.0000019518,0.0000019486,0.0000019457, +0.0000019434,0.0000019415,0.0000019403,0.0000019401,0.0000019405, +0.0000019412,0.0000019424,0.0000019433,0.0000019439,0.0000019443, +0.0000019443,0.0000019439,0.0000019434,0.0000019424,0.0000019408, +0.0000019392,0.0000019374,0.0000019357,0.0000019349,0.0000019344, +0.0000019342,0.0000019345,0.0000019359,0.0000019374,0.0000019388, +0.0000019398,0.0000019403,0.0000019408,0.0000019417,0.0000019426, +0.0000019430,0.0000019431,0.0000019432,0.0000019442,0.0000019455, +0.0000019467,0.0000019476,0.0000019485,0.0000019498,0.0000019510, +0.0000019518,0.0000019532,0.0000019549,0.0000019568,0.0000019585, +0.0000019599,0.0000019606,0.0000019601,0.0000019588,0.0000019566, +0.0000019535,0.0000019500,0.0000019466,0.0000019438,0.0000019418, +0.0000019405,0.0000019408,0.0000019427,0.0000019453,0.0000019493, +0.0000019533,0.0000019568,0.0000019600,0.0000019635,0.0000019687, +0.0000019764,0.0000019853,0.0000019945,0.0000020038,0.0000020126, +0.0000020199,0.0000020256,0.0000020290,0.0000020312,0.0000020336, +0.0000020361,0.0000020383,0.0000020395,0.0000020399,0.0000020398, +0.0000020388,0.0000020374,0.0000020363,0.0000020351,0.0000020332, +0.0000020306,0.0000020275,0.0000020248,0.0000020226,0.0000020213, +0.0000020213,0.0000020225,0.0000020247,0.0000020275,0.0000020308, +0.0000020341,0.0000020374,0.0000020410,0.0000020448,0.0000020476, +0.0000020491,0.0000020497,0.0000020500,0.0000020503,0.0000020504, +0.0000020507,0.0000020511,0.0000020513,0.0000020512,0.0000020506, +0.0000020496,0.0000020485,0.0000020474,0.0000020465,0.0000020457, +0.0000020454,0.0000020457,0.0000020466,0.0000020480,0.0000020493, +0.0000020504,0.0000020515,0.0000020525,0.0000020537,0.0000020547, +0.0000020557,0.0000020565,0.0000020572,0.0000020577,0.0000020585, +0.0000020593,0.0000020600,0.0000020609,0.0000020618,0.0000020628, +0.0000020638,0.0000020653,0.0000020675,0.0000020698,0.0000020723, +0.0000020751,0.0000020776,0.0000020794,0.0000020809,0.0000020820, +0.0000020826,0.0000020829,0.0000020833,0.0000020839,0.0000020848, +0.0000020858,0.0000020872,0.0000020895,0.0000020922,0.0000020952, +0.0000020982,0.0000021010,0.0000021036,0.0000021062,0.0000021085, +0.0000021110,0.0000021135,0.0000021162,0.0000021191,0.0000021219, +0.0000021244,0.0000021266,0.0000021285,0.0000021300,0.0000021314, +0.0000021324,0.0000021328,0.0000021328,0.0000021322,0.0000021309, +0.0000021285,0.0000021249,0.0000021203,0.0000021156,0.0000021113, +0.0000021076,0.0000021048,0.0000021030,0.0000021014,0.0000020988, +0.0000020951,0.0000020917,0.0000020900,0.0000020898,0.0000020911, +0.0000020943,0.0000020982,0.0000021029,0.0000021093,0.0000021152, +0.0000021188,0.0000021210,0.0000021219,0.0000021221,0.0000021211, +0.0000021194,0.0000021179,0.0000021146,0.0000021092,0.0000021044, +0.0000021019,0.0000021014,0.0000021025,0.0000021046,0.0000021068, +0.0000021087,0.0000021098,0.0000021112,0.0000021179,0.0000021294, +0.0000021389,0.0000021448,0.0000021495,0.0000021528,0.0000021535, +0.0000021518,0.0000021472,0.0000021398,0.0000021303,0.0000021211, +0.0000021129,0.0000021035,0.0000020953,0.0000020909,0.0000020876, +0.0000020845,0.0000020824,0.0000020812,0.0000020812,0.0000020834, +0.0000020882,0.0000020927,0.0000020942,0.0000020932,0.0000020897, +0.0000020858,0.0000020827,0.0000020806,0.0000020790,0.0000020777, +0.0000020759,0.0000020727,0.0000020674,0.0000020605,0.0000020532, +0.0000020466,0.0000020406,0.0000020356,0.0000020331,0.0000020336, +0.0000020357,0.0000020381,0.0000020399,0.0000020410,0.0000020417, +0.0000020431,0.0000020450,0.0000020460,0.0000020449,0.0000020417, +0.0000020376,0.0000020324,0.0000020268,0.0000020222,0.0000020209, +0.0000020232,0.0000020259,0.0000020266,0.0000020280,0.0000020344, +0.0000020442,0.0000020512,0.0000020523,0.0000020508,0.0000020475, +0.0000020362,0.0000020160,0.0000020009,0.0000019978,0.0000020086, +0.0000020302,0.0000020389,0.0000020373,0.0000020361,0.0000020432, +0.0000020636,0.0000020774,0.0000020764,0.0000020733,0.0000020769, +0.0000020914,0.0000021043,0.0000021102,0.0000021198,0.0000021389, +0.0000021528,0.0000021597,0.0000021634,0.0000021681,0.0000021709, +0.0000021707,0.0000021718,0.0000021746,0.0000021785,0.0000021826, +0.0000021833,0.0000021816,0.0000021800,0.0000021787,0.0000021784, +0.0000021807,0.0000021889,0.0000021968,0.0000021985,0.0000021972, +0.0000021952,0.0000021932,0.0000021907,0.0000021880,0.0000021851, +0.0000021817,0.0000021781,0.0000021747,0.0000021716,0.0000021682, +0.0000021645,0.0000021606,0.0000021568,0.0000021532,0.0000021507, +0.0000021504,0.0000021516,0.0000021535,0.0000021551,0.0000021560, +0.0000021568,0.0000021587,0.0000021612,0.0000021639,0.0000021670, +0.0000021698,0.0000021704,0.0000021693,0.0000021675,0.0000021657, +0.0000021643,0.0000021644,0.0000021652,0.0000021668,0.0000021686, +0.0000021695,0.0000021684,0.0000021660,0.0000021626,0.0000021577, +0.0000021510,0.0000021438,0.0000021362,0.0000021279,0.0000021199, +0.0000021137,0.0000021082,0.0000021030,0.0000020983,0.0000020936, +0.0000020899,0.0000020876,0.0000020861,0.0000020847,0.0000020855, +0.0000020880,0.0000020904,0.0000020920,0.0000020931,0.0000020934, +0.0000020922,0.0000020913,0.0000020889,0.0000020860,0.0000020837, +0.0000020803,0.0000020769,0.0000020733,0.0000020711,0.0000020704, +0.0000020698,0.0000020698,0.0000020694,0.0000020691,0.0000020687, +0.0000020691,0.0000020706,0.0000020729,0.0000020757,0.0000020792, +0.0000020823,0.0000020844,0.0000020860,0.0000020867,0.0000020860, +0.0000020851,0.0000020839,0.0000020825,0.0000020815,0.0000020805, +0.0000020793,0.0000020778,0.0000020755,0.0000020729,0.0000020705, +0.0000020681,0.0000020667,0.0000020656,0.0000020642,0.0000020639, +0.0000020633,0.0000020632,0.0000020630,0.0000020624,0.0000020622, +0.0000020617,0.0000020616,0.0000020609,0.0000020601,0.0000020594, +0.0000020593,0.0000020602,0.0000020607,0.0000020613,0.0000020617, +0.0000020610,0.0000020593,0.0000020573,0.0000020544,0.0000020508, +0.0000020476,0.0000020457,0.0000020461,0.0000020479,0.0000020500, +0.0000020535,0.0000020576,0.0000020615,0.0000020643,0.0000020664, +0.0000020677,0.0000020680,0.0000020679,0.0000020675,0.0000020667, +0.0000020661,0.0000020659,0.0000020659,0.0000020652,0.0000020654, +0.0000020674,0.0000020701,0.0000020720,0.0000020736,0.0000020756, +0.0000020776,0.0000020791,0.0000020805,0.0000020813,0.0000020814, +0.0000020807,0.0000020790,0.0000020764,0.0000020732,0.0000020696, +0.0000020659,0.0000020637,0.0000020630,0.0000020631,0.0000020635, +0.0000020646,0.0000020663,0.0000020690,0.0000020723,0.0000020760, +0.0000020799,0.0000020836,0.0000020869,0.0000020900,0.0000020925, +0.0000020947,0.0000020964,0.0000020979,0.0000020996,0.0000021014, +0.0000021035,0.0000021057,0.0000021075,0.0000021093,0.0000021114, +0.0000021132,0.0000021144,0.0000021153,0.0000021161,0.0000021172, +0.0000021181,0.0000021188,0.0000021195,0.0000021209,0.0000021235, +0.0000021268,0.0000021301,0.0000021334,0.0000021367,0.0000021395, +0.0000021416,0.0000021429,0.0000021436,0.0000021436,0.0000021428, +0.0000021410,0.0000021395,0.0000021375,0.0000021346,0.0000021312, +0.0000021282,0.0000021248,0.0000021212,0.0000021179,0.0000021156, +0.0000021141,0.0000021123,0.0000021118,0.0000021124,0.0000021135, +0.0000021146,0.0000021159,0.0000021178,0.0000021203,0.0000021233, +0.0000021264,0.0000021295,0.0000021324,0.0000021354,0.0000021386, +0.0000021419,0.0000021451,0.0000021482,0.0000021514,0.0000021546, +0.0000021578,0.0000021620,0.0000021671,0.0000021723,0.0000021774, +0.0000021821,0.0000021859,0.0000021893,0.0000021924,0.0000021952, +0.0000021977,0.0000022001,0.0000022023,0.0000022039,0.0000022057, +0.0000022074,0.0000022087,0.0000022103,0.0000022104,0.0000022101, +0.0000022096,0.0000022089,0.0000022081,0.0000022072,0.0000022061, +0.0000022048,0.0000022030,0.0000022011,0.0000021995,0.0000021982, +0.0000021968,0.0000021957,0.0000021949,0.0000021948,0.0000021952, +0.0000021957,0.0000021958,0.0000021950,0.0000021932,0.0000021905, +0.0000021871,0.0000021838,0.0000021809,0.0000021786,0.0000021769, +0.0000021755,0.0000021742,0.0000021728,0.0000021712,0.0000021694, +0.0000021676,0.0000021661,0.0000021655,0.0000021658,0.0000021672, +0.0000021696,0.0000021727,0.0000021757,0.0000021784,0.0000021810, +0.0000021835,0.0000021862,0.0000021888,0.0000021907,0.0000021915, +0.0000021908,0.0000021898,0.0000021878,0.0000021850,0.0000021817, +0.0000021781,0.0000021742,0.0000021698,0.0000021652,0.0000021607, +0.0000021566,0.0000021535,0.0000021514,0.0000021498,0.0000021487, +0.0000021483,0.0000021485,0.0000021486,0.0000021485,0.0000021483, +0.0000021476,0.0000021464,0.0000021449,0.0000021435,0.0000021425, +0.0000021422,0.0000021426,0.0000021437,0.0000021457,0.0000021482, +0.0000021500,0.0000021510,0.0000021520,0.0000021532,0.0000021541, +0.0000021536,0.0000021528,0.0000021522,0.0000021502,0.0000021474, +0.0000021442,0.0000021407,0.0000021368,0.0000021323,0.0000021271, +0.0000021209,0.0000021139,0.0000021070,0.0000021009,0.0000020962, +0.0000020928,0.0000020908,0.0000020898,0.0000020892,0.0000020885, +0.0000020872,0.0000020856,0.0000020832,0.0000020794,0.0000020739, +0.0000020672,0.0000020597,0.0000020523,0.0000020456,0.0000020399, +0.0000020350,0.0000020316,0.0000020300,0.0000020303,0.0000020319, +0.0000020341,0.0000020362,0.0000020379,0.0000020385,0.0000020378, +0.0000020355,0.0000020320,0.0000020278,0.0000020242,0.0000020219, +0.0000020205,0.0000020199,0.0000020202,0.0000020210,0.0000020213, +0.0000020213,0.0000020209,0.0000020198,0.0000020181,0.0000020156, +0.0000020129,0.0000020101,0.0000020074,0.0000020053,0.0000020040, +0.0000020035,0.0000020043,0.0000020067,0.0000020102,0.0000020140, +0.0000020177,0.0000020204,0.0000020224,0.0000020231,0.0000020228, +0.0000020215,0.0000020195,0.0000020172,0.0000020147,0.0000020123, +0.0000020100,0.0000020077,0.0000020068,0.0000020052,0.0000020043, +0.0000020045,0.0000020057,0.0000020073,0.0000020090,0.0000020105, +0.0000020117,0.0000020131,0.0000020142,0.0000020140,0.0000020122, +0.0000020075,0.0000019996,0.0000019894,0.0000019788,0.0000019698, +0.0000019645,0.0000019612,0.0000019590,0.0000019584,0.0000019590, +0.0000019583,0.0000019549,0.0000019490,0.0000019422,0.0000019360, +0.0000019320,0.0000019315,0.0000019340,0.0000019381,0.0000019423, +0.0000019462,0.0000019500,0.0000019537,0.0000019568,0.0000019589, +0.0000019596,0.0000019592,0.0000019573,0.0000019543,0.0000019518, +0.0000019512,0.0000019534,0.0000019573,0.0000019596,0.0000019597, +0.0000019601,0.0000019631,0.0000019681,0.0000019717,0.0000019729, +0.0000019728,0.0000019728,0.0000019740,0.0000019770,0.0000019805, +0.0000019832,0.0000019847,0.0000019857,0.0000019867,0.0000019881, +0.0000019899,0.0000019921,0.0000019941,0.0000019959,0.0000019975, +0.0000019991,0.0000020010,0.0000020025,0.0000020039,0.0000020051, +0.0000020060,0.0000020064,0.0000020067,0.0000020069,0.0000020074, +0.0000020084,0.0000020097,0.0000020111,0.0000020128,0.0000020149, +0.0000020167,0.0000020184,0.0000020203,0.0000020220,0.0000020235, +0.0000020246,0.0000020252,0.0000020251,0.0000020245,0.0000020233, +0.0000020220,0.0000020207,0.0000020195,0.0000020184,0.0000020176, +0.0000020174,0.0000020180,0.0000020191,0.0000020205,0.0000020220, +0.0000020237,0.0000020256,0.0000020278,0.0000020300,0.0000020320, +0.0000020338,0.0000020356,0.0000020373,0.0000020390,0.0000020408, +0.0000020426,0.0000020444,0.0000020463,0.0000020485,0.0000020507, +0.0000020531,0.0000020558,0.0000020589,0.0000020622,0.0000020654, +0.0000020688,0.0000020719,0.0000020745,0.0000020764,0.0000020774, +0.0000020778,0.0000020776,0.0000020768,0.0000020757,0.0000020746, +0.0000020739,0.0000020741,0.0000020751,0.0000020765,0.0000020767, +0.0000020754,0.0000020762,0.0000020848,0.0000020979,0.0000021058, +0.0000021078,0.0000021092,0.0000021112,0.0000021131,0.0000021130, +0.0000021109,0.0000021102,0.0000021098,0.0000021057,0.0000021003, +0.0000020961,0.0000020900,0.0000020842,0.0000020819,0.0000020786, +0.0000020763,0.0000020772,0.0000020785,0.0000020793,0.0000020813, +0.0000020832,0.0000020833,0.0000020821,0.0000020811,0.0000020813, +0.0000020831,0.0000020856,0.0000020878,0.0000020888,0.0000020882, +0.0000020861,0.0000020828,0.0000020793,0.0000020759,0.0000020720, +0.0000020681,0.0000020644,0.0000020613,0.0000020588,0.0000020568, +0.0000020552,0.0000020539,0.0000020527,0.0000020519,0.0000020512, +0.0000020499,0.0000020478,0.0000020453,0.0000020427,0.0000020400, +0.0000020376,0.0000020359,0.0000020350,0.0000020346,0.0000020347, +0.0000020352,0.0000020359,0.0000020361,0.0000020359,0.0000020353, +0.0000020344,0.0000020330,0.0000020315,0.0000020302,0.0000020289, +0.0000020279,0.0000020275,0.0000020275,0.0000020281,0.0000020292, +0.0000020307,0.0000020330,0.0000020359,0.0000020388,0.0000020417, +0.0000020443,0.0000020466,0.0000020485,0.0000020503,0.0000020515, +0.0000020523,0.0000020528,0.0000020531,0.0000020530,0.0000020525, +0.0000020514,0.0000020493,0.0000020466,0.0000020431,0.0000020394, +0.0000020354,0.0000020314,0.0000020278,0.0000020243,0.0000020210, +0.0000020174,0.0000020140,0.0000020106,0.0000020078,0.0000020062, +0.0000020057,0.0000020062,0.0000020083,0.0000020119,0.0000020168, +0.0000020224,0.0000020283,0.0000020340,0.0000020390,0.0000020429, +0.0000020457,0.0000020479,0.0000020498,0.0000020516,0.0000020534, +0.0000020552,0.0000020569,0.0000020582,0.0000020587,0.0000020581, +0.0000020562,0.0000020530,0.0000020486,0.0000020439,0.0000020394, +0.0000020349,0.0000020305,0.0000020264,0.0000020235,0.0000020220, +0.0000020215,0.0000020223,0.0000020245,0.0000020271,0.0000020297, +0.0000020318,0.0000020332,0.0000020338,0.0000020337,0.0000020322, +0.0000020294,0.0000020255,0.0000020203,0.0000020142,0.0000020073, +0.0000020001,0.0000019931,0.0000019859,0.0000019780,0.0000019702, +0.0000019639,0.0000019600,0.0000019583,0.0000019581,0.0000019588, +0.0000019607,0.0000019626,0.0000019633,0.0000019624,0.0000019598, +0.0000019564,0.0000019537,0.0000019527,0.0000019529,0.0000019532, +0.0000019535,0.0000019543,0.0000019553,0.0000019562,0.0000019558, +0.0000019539,0.0000019516,0.0000019503,0.0000019498,0.0000019501, +0.0000019508,0.0000019518,0.0000019524,0.0000019525,0.0000019535, +0.0000019566,0.0000019607,0.0000019654,0.0000019707,0.0000019756, +0.0000019794,0.0000019823,0.0000019855,0.0000019892,0.0000019927, +0.0000019941,0.0000019929,0.0000019900,0.0000019867,0.0000019845, +0.0000019837,0.0000019840,0.0000019845,0.0000019840,0.0000019811, +0.0000019760,0.0000019709,0.0000019656,0.0000019600,0.0000019531, +0.0000019445,0.0000019362,0.0000019326,0.0000019313,0.0000019358, +0.0000019434,0.0000019528,0.0000019627,0.0000019714,0.0000019775, +0.0000019812,0.0000019829,0.0000019835,0.0000019845,0.0000019874, +0.0000019933,0.0000020022,0.0000020134,0.0000020247,0.0000020340, +0.0000020405,0.0000020439,0.0000020452,0.0000020450,0.0000020434, +0.0000020424,0.0000020409,0.0000020394,0.0000020381,0.0000020371, +0.0000020364,0.0000020360,0.0000020361,0.0000020362,0.0000020361, +0.0000020358,0.0000020352,0.0000020345,0.0000020342,0.0000020342, +0.0000020346,0.0000020351,0.0000020355,0.0000020356,0.0000020354, +0.0000020344,0.0000020322,0.0000020288,0.0000020241,0.0000020186, +0.0000020122,0.0000020040,0.0000019941,0.0000019830,0.0000019724, +0.0000019639,0.0000019581,0.0000019552,0.0000019543,0.0000019543, +0.0000019552,0.0000019573,0.0000019613,0.0000019668,0.0000019730, +0.0000019785,0.0000019825,0.0000019842,0.0000019836,0.0000019815, +0.0000019787,0.0000019759,0.0000019738,0.0000019714,0.0000019681, +0.0000019639,0.0000019587,0.0000019525,0.0000019460,0.0000019397, +0.0000019342,0.0000019300,0.0000019281,0.0000019280,0.0000019293, +0.0000019309,0.0000019322,0.0000019334,0.0000019344,0.0000019349, +0.0000019347,0.0000019341,0.0000019328,0.0000019310,0.0000019293, +0.0000019278,0.0000019263,0.0000019249,0.0000019239,0.0000019233, +0.0000019232,0.0000019234,0.0000019234,0.0000019231,0.0000019223, +0.0000019211,0.0000019197,0.0000019180,0.0000019160,0.0000019138, +0.0000019115,0.0000019098,0.0000019085,0.0000019074,0.0000019060, +0.0000019042,0.0000019017,0.0000018986,0.0000018950,0.0000018910, +0.0000018867,0.0000018827,0.0000018789,0.0000018752,0.0000018713, +0.0000018672,0.0000018631,0.0000018591,0.0000018555,0.0000018525, +0.0000018498,0.0000018474,0.0000018459,0.0000018457,0.0000018460, +0.0000018467,0.0000018479,0.0000018490,0.0000018496,0.0000018501, +0.0000018506,0.0000018511,0.0000018514,0.0000018515,0.0000018514, +0.0000018510,0.0000018505,0.0000018498,0.0000018490,0.0000018479, +0.0000018465,0.0000018452,0.0000018444,0.0000018439,0.0000018436, +0.0000018434,0.0000018434,0.0000018435,0.0000018435,0.0000018429, +0.0000018420,0.0000018413,0.0000018411,0.0000018415,0.0000018423, +0.0000018437,0.0000018459,0.0000018486,0.0000018514,0.0000018539, +0.0000018560,0.0000018579,0.0000018594,0.0000018604,0.0000018610, +0.0000018613,0.0000018614,0.0000018615,0.0000018617,0.0000018619, +0.0000018620,0.0000018620,0.0000018621,0.0000018622,0.0000018624, +0.0000018627,0.0000018633,0.0000018643,0.0000018656,0.0000018668, +0.0000018681,0.0000018695,0.0000018710,0.0000018729,0.0000018755, +0.0000018789,0.0000018829,0.0000018872,0.0000018916,0.0000018959, +0.0000019002,0.0000019042,0.0000019080,0.0000019111,0.0000019134, +0.0000019147,0.0000019154,0.0000019161,0.0000019168,0.0000019177, +0.0000019187,0.0000019196,0.0000019204,0.0000019211,0.0000019214, +0.0000019210,0.0000019204,0.0000019204,0.0000019211,0.0000019221, +0.0000019235,0.0000019250,0.0000019266,0.0000019279,0.0000019283, +0.0000019280,0.0000019275,0.0000019273,0.0000019277,0.0000019299, +0.0000019334,0.0000019369,0.0000019392,0.0000019396,0.0000019384, +0.0000019365,0.0000019353,0.0000019360,0.0000019380,0.0000019398, +0.0000019392,0.0000019347,0.0000019267,0.0000019204,0.0000019189, +0.0000019231,0.0000019289,0.0000019335,0.0000019369,0.0000019400, +0.0000019430,0.0000019457,0.0000019463,0.0000019438,0.0000019394, +0.0000019366,0.0000019378,0.0000019426,0.0000019496,0.0000019576, +0.0000019660,0.0000019749,0.0000019849,0.0000019961,0.0000020077, +0.0000020168,0.0000020218,0.0000020223,0.0000020222,0.0000020225, +0.0000020241,0.0000020268,0.0000020298,0.0000020318,0.0000020323, +0.0000020317,0.0000020302,0.0000020284,0.0000020270,0.0000020271, +0.0000020290,0.0000020328,0.0000020380,0.0000020435,0.0000020485, +0.0000020527,0.0000020559,0.0000020582,0.0000020590,0.0000020592, +0.0000020578,0.0000020550,0.0000020511,0.0000020466,0.0000020423, +0.0000020388,0.0000020367,0.0000020363,0.0000020369,0.0000020375, +0.0000020382,0.0000020388,0.0000020391,0.0000020391,0.0000020389, +0.0000020385,0.0000020381,0.0000020381,0.0000020382,0.0000020385, +0.0000020388,0.0000020393,0.0000020398,0.0000020404,0.0000020410, +0.0000020412,0.0000020413,0.0000020411,0.0000020404,0.0000020391, +0.0000020367,0.0000020333,0.0000020302,0.0000020287,0.0000020288, +0.0000020301,0.0000020320,0.0000020336,0.0000020341,0.0000020337, +0.0000020324,0.0000020304,0.0000020284,0.0000020267,0.0000020257, +0.0000020249,0.0000020241,0.0000020232,0.0000020221,0.0000020210, +0.0000020198,0.0000020183,0.0000020166,0.0000020146,0.0000020121, +0.0000020094,0.0000020065,0.0000020037,0.0000020009,0.0000019980, +0.0000019948,0.0000019915,0.0000019883,0.0000019854,0.0000019827, +0.0000019802,0.0000019778,0.0000019758,0.0000019738,0.0000019714, +0.0000019684,0.0000019647,0.0000019605,0.0000019560,0.0000019517, +0.0000019479,0.0000019447,0.0000019420,0.0000019392,0.0000019374, +0.0000019358,0.0000019342,0.0000019326,0.0000019304,0.0000019277, +0.0000019251,0.0000019233,0.0000019226,0.0000019225,0.0000019223, +0.0000019217,0.0000019216,0.0000019227,0.0000019247,0.0000019275, +0.0000019313,0.0000019361,0.0000019419,0.0000019479,0.0000019526, +0.0000019564,0.0000019603,0.0000019642,0.0000019668,0.0000019672, +0.0000019653,0.0000019638,0.0000019633,0.0000019611,0.0000019590, +0.0000019575,0.0000019572,0.0000019584,0.0000019607,0.0000019628, +0.0000019629,0.0000019614,0.0000019583,0.0000019562,0.0000019563, +0.0000019577,0.0000019589,0.0000019597,0.0000019601,0.0000019603, +0.0000019595,0.0000019562,0.0000019516,0.0000019477,0.0000019452, +0.0000019430,0.0000019410,0.0000019385,0.0000019358,0.0000019338, +0.0000019331,0.0000019337,0.0000019351,0.0000019376,0.0000019404, +0.0000019434,0.0000019462,0.0000019487,0.0000019509,0.0000019526, +0.0000019538,0.0000019545,0.0000019547,0.0000019544,0.0000019537, +0.0000019527,0.0000019520,0.0000019519,0.0000019520,0.0000019518, +0.0000019514,0.0000019514,0.0000019518,0.0000019519,0.0000019523, +0.0000019531,0.0000019539,0.0000019547,0.0000019553,0.0000019555, +0.0000019553,0.0000019547,0.0000019540,0.0000019528,0.0000019514, +0.0000019499,0.0000019482,0.0000019462,0.0000019449,0.0000019446, +0.0000019444,0.0000019445,0.0000019450,0.0000019457,0.0000019461, +0.0000019460,0.0000019457,0.0000019450,0.0000019437,0.0000019421, +0.0000019398,0.0000019375,0.0000019353,0.0000019334,0.0000019321, +0.0000019315,0.0000019314,0.0000019325,0.0000019337,0.0000019344, +0.0000019350,0.0000019356,0.0000019361,0.0000019371,0.0000019382, +0.0000019390,0.0000019394,0.0000019398,0.0000019404,0.0000019414, +0.0000019426,0.0000019436,0.0000019449,0.0000019466,0.0000019480, +0.0000019483,0.0000019480,0.0000019479,0.0000019477,0.0000019473, +0.0000019474,0.0000019479,0.0000019484,0.0000019484,0.0000019478, +0.0000019465,0.0000019445,0.0000019419,0.0000019388,0.0000019360, +0.0000019337,0.0000019330,0.0000019342,0.0000019370,0.0000019411, +0.0000019470,0.0000019527,0.0000019571,0.0000019601,0.0000019629, +0.0000019663,0.0000019713,0.0000019784,0.0000019869,0.0000019961, +0.0000020046,0.0000020120,0.0000020183,0.0000020228,0.0000020264, +0.0000020292,0.0000020308,0.0000020321,0.0000020327,0.0000020327, +0.0000020325,0.0000020318,0.0000020312,0.0000020309,0.0000020302, +0.0000020288,0.0000020268,0.0000020246,0.0000020223,0.0000020204, +0.0000020193,0.0000020191,0.0000020200,0.0000020218,0.0000020245, +0.0000020281,0.0000020322,0.0000020361,0.0000020397,0.0000020433, +0.0000020462,0.0000020481,0.0000020489,0.0000020493,0.0000020493, +0.0000020489,0.0000020486,0.0000020484,0.0000020479,0.0000020475, +0.0000020470,0.0000020463,0.0000020457,0.0000020452,0.0000020447, +0.0000020444,0.0000020447,0.0000020455,0.0000020468,0.0000020483, +0.0000020496,0.0000020507,0.0000020517,0.0000020526,0.0000020533, +0.0000020539,0.0000020543,0.0000020547,0.0000020549,0.0000020552, +0.0000020555,0.0000020561,0.0000020567,0.0000020575,0.0000020583, +0.0000020590,0.0000020597,0.0000020606,0.0000020619,0.0000020634, +0.0000020656,0.0000020683,0.0000020708,0.0000020730,0.0000020746, +0.0000020758,0.0000020768,0.0000020777,0.0000020783,0.0000020788, +0.0000020794,0.0000020802,0.0000020815,0.0000020835,0.0000020859, +0.0000020884,0.0000020912,0.0000020941,0.0000020971,0.0000021004, +0.0000021038,0.0000021074,0.0000021113,0.0000021151,0.0000021187, +0.0000021218,0.0000021246,0.0000021268,0.0000021286,0.0000021300, +0.0000021311,0.0000021319,0.0000021323,0.0000021323,0.0000021321, +0.0000021316,0.0000021303,0.0000021276,0.0000021233,0.0000021179, +0.0000021122,0.0000021072,0.0000021037,0.0000021017,0.0000021000, +0.0000020973,0.0000020931,0.0000020890,0.0000020870,0.0000020868, +0.0000020890,0.0000020929,0.0000020968,0.0000021019,0.0000021083, +0.0000021136,0.0000021170,0.0000021193,0.0000021202,0.0000021199, +0.0000021180,0.0000021160,0.0000021138,0.0000021094,0.0000021041, +0.0000021004,0.0000020992,0.0000021000,0.0000021025,0.0000021052, +0.0000021071,0.0000021085,0.0000021092,0.0000021114,0.0000021192, +0.0000021302,0.0000021390,0.0000021444,0.0000021475,0.0000021486, +0.0000021481,0.0000021450,0.0000021391,0.0000021309,0.0000021226, +0.0000021154,0.0000021070,0.0000020986,0.0000020930,0.0000020891, +0.0000020853,0.0000020824,0.0000020806,0.0000020802,0.0000020814, +0.0000020859,0.0000020920,0.0000020955,0.0000020956,0.0000020928, +0.0000020884,0.0000020842,0.0000020812,0.0000020792,0.0000020776, +0.0000020757,0.0000020728,0.0000020684,0.0000020627,0.0000020564, +0.0000020500,0.0000020441,0.0000020390,0.0000020352,0.0000020337, +0.0000020346,0.0000020364,0.0000020378,0.0000020387,0.0000020395, +0.0000020401,0.0000020415,0.0000020436,0.0000020447,0.0000020438, +0.0000020406,0.0000020358,0.0000020300,0.0000020241,0.0000020198, +0.0000020186,0.0000020209,0.0000020246,0.0000020264,0.0000020277, +0.0000020338,0.0000020434,0.0000020503,0.0000020514,0.0000020503, +0.0000020446,0.0000020285,0.0000020080,0.0000019971,0.0000020003, +0.0000020200,0.0000020369,0.0000020390,0.0000020370,0.0000020395, +0.0000020560,0.0000020749,0.0000020782,0.0000020746,0.0000020751, +0.0000020863,0.0000020993,0.0000021060,0.0000021133,0.0000021308, +0.0000021480,0.0000021575,0.0000021625,0.0000021666,0.0000021702, +0.0000021703,0.0000021698,0.0000021713,0.0000021732,0.0000021768, +0.0000021808,0.0000021815,0.0000021797,0.0000021782,0.0000021779, +0.0000021780,0.0000021811,0.0000021890,0.0000021958,0.0000021969, +0.0000021950,0.0000021926,0.0000021905,0.0000021876,0.0000021844, +0.0000021815,0.0000021783,0.0000021750,0.0000021718,0.0000021681, +0.0000021635,0.0000021587,0.0000021541,0.0000021499,0.0000021471, +0.0000021468,0.0000021486,0.0000021515,0.0000021543,0.0000021560, +0.0000021567,0.0000021573,0.0000021582,0.0000021598,0.0000021622, +0.0000021638,0.0000021637,0.0000021622,0.0000021596,0.0000021576, +0.0000021576,0.0000021590,0.0000021614,0.0000021639,0.0000021667, +0.0000021685,0.0000021687,0.0000021677,0.0000021651,0.0000021608, +0.0000021544,0.0000021467,0.0000021386,0.0000021298,0.0000021210, +0.0000021136,0.0000021070,0.0000021005,0.0000020946,0.0000020897, +0.0000020858,0.0000020829,0.0000020808,0.0000020787,0.0000020794, +0.0000020815,0.0000020835,0.0000020848,0.0000020859,0.0000020860, +0.0000020849,0.0000020827,0.0000020794,0.0000020759,0.0000020734, +0.0000020697,0.0000020662,0.0000020630,0.0000020614,0.0000020608, +0.0000020602,0.0000020601,0.0000020598,0.0000020592,0.0000020588, +0.0000020594,0.0000020606,0.0000020627,0.0000020656,0.0000020695, +0.0000020736,0.0000020773,0.0000020807,0.0000020831,0.0000020845, +0.0000020846,0.0000020845,0.0000020837,0.0000020828,0.0000020821, +0.0000020810,0.0000020794,0.0000020773,0.0000020753,0.0000020733, +0.0000020713,0.0000020695,0.0000020679,0.0000020662,0.0000020655, +0.0000020651,0.0000020650,0.0000020648,0.0000020652,0.0000020652, +0.0000020655,0.0000020654,0.0000020655,0.0000020652,0.0000020650, +0.0000020661,0.0000020669,0.0000020676,0.0000020677,0.0000020677, +0.0000020669,0.0000020649,0.0000020624,0.0000020592,0.0000020560, +0.0000020530,0.0000020521,0.0000020528,0.0000020542,0.0000020565, +0.0000020596,0.0000020629,0.0000020655,0.0000020672,0.0000020684, +0.0000020684,0.0000020679,0.0000020674,0.0000020672,0.0000020669, +0.0000020666,0.0000020664,0.0000020655,0.0000020648,0.0000020655, +0.0000020675,0.0000020699,0.0000020718,0.0000020734,0.0000020754, +0.0000020773,0.0000020792,0.0000020806,0.0000020815,0.0000020818, +0.0000020816,0.0000020806,0.0000020785,0.0000020763,0.0000020735, +0.0000020711,0.0000020699,0.0000020698,0.0000020702,0.0000020707, +0.0000020709,0.0000020709,0.0000020718,0.0000020729,0.0000020746, +0.0000020757,0.0000020769,0.0000020782,0.0000020794,0.0000020801, +0.0000020805,0.0000020809,0.0000020816,0.0000020826,0.0000020841, +0.0000020862,0.0000020888,0.0000020916,0.0000020949,0.0000020987, +0.0000021023,0.0000021058,0.0000021087,0.0000021111,0.0000021133, +0.0000021153,0.0000021168,0.0000021179,0.0000021190,0.0000021205, +0.0000021226,0.0000021250,0.0000021276,0.0000021301,0.0000021323, +0.0000021339,0.0000021348,0.0000021351,0.0000021349,0.0000021347, +0.0000021344,0.0000021340,0.0000021333,0.0000021323,0.0000021310, +0.0000021290,0.0000021271,0.0000021246,0.0000021218,0.0000021191, +0.0000021166,0.0000021140,0.0000021121,0.0000021115,0.0000021113, +0.0000021110,0.0000021112,0.0000021122,0.0000021139,0.0000021161, +0.0000021187,0.0000021214,0.0000021240,0.0000021268,0.0000021297, +0.0000021324,0.0000021347,0.0000021373,0.0000021401,0.0000021428, +0.0000021459,0.0000021501,0.0000021551,0.0000021605,0.0000021660, +0.0000021709,0.0000021753,0.0000021794,0.0000021833,0.0000021867, +0.0000021902,0.0000021937,0.0000021970,0.0000022000,0.0000022028, +0.0000022058,0.0000022096,0.0000022123,0.0000022147,0.0000022164, +0.0000022167,0.0000022166,0.0000022155,0.0000022139,0.0000022122, +0.0000022104,0.0000022081,0.0000022056,0.0000022037,0.0000022023, +0.0000022011,0.0000022002,0.0000021996,0.0000021994,0.0000021998, +0.0000022004,0.0000022005,0.0000021998,0.0000021983,0.0000021962, +0.0000021935,0.0000021904,0.0000021873,0.0000021846,0.0000021821, +0.0000021797,0.0000021774,0.0000021750,0.0000021727,0.0000021704, +0.0000021682,0.0000021663,0.0000021651,0.0000021647,0.0000021656, +0.0000021676,0.0000021702,0.0000021729,0.0000021753,0.0000021778, +0.0000021805,0.0000021833,0.0000021859,0.0000021879,0.0000021890, +0.0000021888,0.0000021877,0.0000021857,0.0000021832,0.0000021801, +0.0000021771,0.0000021736,0.0000021697,0.0000021656,0.0000021613, +0.0000021576,0.0000021549,0.0000021529,0.0000021513,0.0000021503, +0.0000021500,0.0000021500,0.0000021497,0.0000021491,0.0000021481, +0.0000021465,0.0000021445,0.0000021422,0.0000021402,0.0000021386, +0.0000021375,0.0000021375,0.0000021385,0.0000021402,0.0000021416, +0.0000021427,0.0000021438,0.0000021452,0.0000021466,0.0000021475, +0.0000021479,0.0000021477,0.0000021472,0.0000021462,0.0000021451, +0.0000021441,0.0000021417,0.0000021402,0.0000021383,0.0000021342, +0.0000021294,0.0000021238,0.0000021173,0.0000021110,0.0000021052, +0.0000021000,0.0000020961,0.0000020933,0.0000020916,0.0000020908, +0.0000020904,0.0000020906,0.0000020898,0.0000020880,0.0000020845, +0.0000020789,0.0000020718,0.0000020641,0.0000020567,0.0000020500, +0.0000020446,0.0000020413,0.0000020400,0.0000020397,0.0000020398, +0.0000020401,0.0000020404,0.0000020404,0.0000020400,0.0000020390, +0.0000020371,0.0000020345,0.0000020319,0.0000020298,0.0000020279, +0.0000020265,0.0000020261,0.0000020260,0.0000020259,0.0000020256, +0.0000020250,0.0000020239,0.0000020221,0.0000020195,0.0000020163, +0.0000020130,0.0000020099,0.0000020071,0.0000020049,0.0000020037, +0.0000020041,0.0000020059,0.0000020092,0.0000020124,0.0000020156, +0.0000020191,0.0000020214,0.0000020226,0.0000020232,0.0000020227, +0.0000020212,0.0000020192,0.0000020169,0.0000020146,0.0000020122, +0.0000020100,0.0000020079,0.0000020059,0.0000020034,0.0000020022, +0.0000020011,0.0000020008,0.0000020014,0.0000020025,0.0000020036, +0.0000020052,0.0000020076,0.0000020104,0.0000020119,0.0000020116, +0.0000020097,0.0000020041,0.0000019950,0.0000019832,0.0000019722, +0.0000019642,0.0000019592,0.0000019574,0.0000019568,0.0000019575, +0.0000019566,0.0000019536,0.0000019474,0.0000019401,0.0000019340, +0.0000019311,0.0000019316,0.0000019347,0.0000019390,0.0000019433, +0.0000019475,0.0000019519,0.0000019563,0.0000019592,0.0000019601, +0.0000019596,0.0000019574,0.0000019541,0.0000019508,0.0000019498, +0.0000019512,0.0000019540,0.0000019552,0.0000019553,0.0000019574, +0.0000019623,0.0000019671,0.0000019691,0.0000019693,0.0000019697, +0.0000019716,0.0000019750,0.0000019794,0.0000019825,0.0000019840, +0.0000019849,0.0000019860,0.0000019878,0.0000019901,0.0000019929, +0.0000019957,0.0000019977,0.0000019989,0.0000019997,0.0000020001, +0.0000020010,0.0000020020,0.0000020033,0.0000020044,0.0000020051, +0.0000020055,0.0000020058,0.0000020063,0.0000020067,0.0000020075, +0.0000020086,0.0000020099,0.0000020117,0.0000020138,0.0000020159, +0.0000020179,0.0000020196,0.0000020215,0.0000020233,0.0000020247, +0.0000020261,0.0000020268,0.0000020266,0.0000020257,0.0000020245, +0.0000020231,0.0000020219,0.0000020210,0.0000020206,0.0000020206, +0.0000020212,0.0000020221,0.0000020233,0.0000020246,0.0000020262, +0.0000020279,0.0000020298,0.0000020318,0.0000020337,0.0000020356, +0.0000020372,0.0000020387,0.0000020401,0.0000020416,0.0000020432, +0.0000020451,0.0000020473,0.0000020495,0.0000020516,0.0000020537, +0.0000020557,0.0000020580,0.0000020606,0.0000020633,0.0000020659, +0.0000020683,0.0000020705,0.0000020724,0.0000020737,0.0000020744, +0.0000020743,0.0000020737,0.0000020729,0.0000020723,0.0000020725, +0.0000020736,0.0000020754,0.0000020766,0.0000020759,0.0000020751, +0.0000020789,0.0000020904,0.0000021016,0.0000021065,0.0000021081, +0.0000021101,0.0000021123,0.0000021137,0.0000021131,0.0000021116, +0.0000021114,0.0000021097,0.0000021049,0.0000021000,0.0000020955, +0.0000020888,0.0000020838,0.0000020820,0.0000020787,0.0000020764, +0.0000020773,0.0000020787,0.0000020795,0.0000020814,0.0000020835, +0.0000020844,0.0000020838,0.0000020828,0.0000020819,0.0000020814, +0.0000020808,0.0000020802,0.0000020790,0.0000020768,0.0000020737, +0.0000020704,0.0000020674,0.0000020641,0.0000020604,0.0000020567, +0.0000020537,0.0000020516,0.0000020502,0.0000020493,0.0000020487, +0.0000020479,0.0000020468,0.0000020461,0.0000020454,0.0000020441, +0.0000020419,0.0000020395,0.0000020371,0.0000020351,0.0000020340, +0.0000020336,0.0000020336,0.0000020337,0.0000020339,0.0000020343, +0.0000020347,0.0000020346,0.0000020344,0.0000020339,0.0000020329, +0.0000020318,0.0000020307,0.0000020298,0.0000020291,0.0000020285, +0.0000020282,0.0000020282,0.0000020287,0.0000020294,0.0000020303, +0.0000020321,0.0000020347,0.0000020374,0.0000020403,0.0000020431, +0.0000020457,0.0000020479,0.0000020498,0.0000020513,0.0000020523, +0.0000020530,0.0000020534,0.0000020535,0.0000020533,0.0000020530, +0.0000020519,0.0000020503,0.0000020481,0.0000020452,0.0000020414, +0.0000020372,0.0000020329,0.0000020287,0.0000020248,0.0000020206, +0.0000020164,0.0000020119,0.0000020078,0.0000020048,0.0000020019, +0.0000020007,0.0000020011,0.0000020030,0.0000020063,0.0000020108, +0.0000020164,0.0000020226,0.0000020287,0.0000020339,0.0000020377, +0.0000020404,0.0000020426,0.0000020446,0.0000020467,0.0000020489, +0.0000020512,0.0000020534,0.0000020552,0.0000020560,0.0000020551, +0.0000020531,0.0000020498,0.0000020460,0.0000020419,0.0000020375, +0.0000020328,0.0000020282,0.0000020244,0.0000020219,0.0000020212, +0.0000020215,0.0000020228,0.0000020247,0.0000020266,0.0000020282, +0.0000020293,0.0000020297,0.0000020292,0.0000020274,0.0000020243, +0.0000020204,0.0000020158,0.0000020101,0.0000020040,0.0000019977, +0.0000019912,0.0000019842,0.0000019767,0.0000019694,0.0000019636, +0.0000019604,0.0000019594,0.0000019597,0.0000019615,0.0000019643, +0.0000019671,0.0000019684,0.0000019677,0.0000019650,0.0000019608, +0.0000019566,0.0000019544,0.0000019539,0.0000019542,0.0000019544, +0.0000019551,0.0000019563,0.0000019574,0.0000019575,0.0000019553, +0.0000019520,0.0000019497,0.0000019488,0.0000019481,0.0000019484, +0.0000019495,0.0000019503,0.0000019506,0.0000019513,0.0000019538, +0.0000019570,0.0000019608,0.0000019654,0.0000019701,0.0000019740, +0.0000019769,0.0000019801,0.0000019839,0.0000019874,0.0000019891, +0.0000019881,0.0000019853,0.0000019819,0.0000019792,0.0000019779, +0.0000019777,0.0000019779,0.0000019774,0.0000019753,0.0000019715, +0.0000019664,0.0000019617,0.0000019574,0.0000019526,0.0000019452, +0.0000019368,0.0000019301,0.0000019278,0.0000019283,0.0000019332, +0.0000019418,0.0000019525,0.0000019630,0.0000019716,0.0000019775, +0.0000019806,0.0000019816,0.0000019819,0.0000019828,0.0000019854, +0.0000019910,0.0000019996,0.0000020097,0.0000020199,0.0000020285, +0.0000020349,0.0000020388,0.0000020408,0.0000020411,0.0000020410, +0.0000020401,0.0000020391,0.0000020389,0.0000020385,0.0000020383, +0.0000020381,0.0000020378,0.0000020374,0.0000020367,0.0000020356, +0.0000020345,0.0000020338,0.0000020334,0.0000020335,0.0000020340, +0.0000020343,0.0000020342,0.0000020336,0.0000020319,0.0000020291, +0.0000020252,0.0000020200,0.0000020141,0.0000020075,0.0000019994, +0.0000019897,0.0000019791,0.0000019686,0.0000019600,0.0000019539, +0.0000019509,0.0000019497,0.0000019490,0.0000019486,0.0000019487, +0.0000019499,0.0000019526,0.0000019568,0.0000019617,0.0000019669, +0.0000019711,0.0000019731,0.0000019731,0.0000019714,0.0000019688, +0.0000019661,0.0000019628,0.0000019585,0.0000019529,0.0000019465, +0.0000019394,0.0000019324,0.0000019260,0.0000019205,0.0000019166, +0.0000019145,0.0000019137,0.0000019140,0.0000019150,0.0000019156, +0.0000019160,0.0000019165,0.0000019169,0.0000019169,0.0000019166, +0.0000019162,0.0000019159,0.0000019161,0.0000019174,0.0000019185, +0.0000019192,0.0000019194,0.0000019191,0.0000019187,0.0000019184, +0.0000019183,0.0000019177,0.0000019166,0.0000019156,0.0000019148, +0.0000019136,0.0000019118,0.0000019098,0.0000019077,0.0000019060, +0.0000019046,0.0000019036,0.0000019025,0.0000019009,0.0000018990, +0.0000018962,0.0000018922,0.0000018874,0.0000018824,0.0000018777, +0.0000018730,0.0000018684,0.0000018641,0.0000018599,0.0000018556, +0.0000018516,0.0000018482,0.0000018453,0.0000018428,0.0000018410, +0.0000018401,0.0000018399,0.0000018398,0.0000018400,0.0000018407, +0.0000018415,0.0000018421,0.0000018426,0.0000018432,0.0000018437, +0.0000018441,0.0000018445,0.0000018447,0.0000018445,0.0000018441, +0.0000018436,0.0000018431,0.0000018422,0.0000018409,0.0000018395, +0.0000018384,0.0000018379,0.0000018379,0.0000018382,0.0000018385, +0.0000018391,0.0000018394,0.0000018393,0.0000018388,0.0000018383, +0.0000018384,0.0000018391,0.0000018402,0.0000018416,0.0000018435, +0.0000018457,0.0000018481,0.0000018504,0.0000018524,0.0000018544, +0.0000018561,0.0000018574,0.0000018583,0.0000018590,0.0000018593, +0.0000018593,0.0000018592,0.0000018592,0.0000018594,0.0000018595, +0.0000018594,0.0000018592,0.0000018590,0.0000018588,0.0000018589, +0.0000018594,0.0000018600,0.0000018606,0.0000018611,0.0000018615, +0.0000018621,0.0000018628,0.0000018639,0.0000018656,0.0000018679, +0.0000018710,0.0000018748,0.0000018791,0.0000018835,0.0000018881, +0.0000018930,0.0000018978,0.0000019022,0.0000019058,0.0000019086, +0.0000019109,0.0000019128,0.0000019143,0.0000019155,0.0000019167, +0.0000019179,0.0000019191,0.0000019199,0.0000019200,0.0000019193, +0.0000019182,0.0000019173,0.0000019170,0.0000019177,0.0000019188, +0.0000019197,0.0000019206,0.0000019216,0.0000019226,0.0000019232, +0.0000019232,0.0000019232,0.0000019240,0.0000019262,0.0000019297, +0.0000019336,0.0000019363,0.0000019368,0.0000019357,0.0000019338, +0.0000019324,0.0000019330,0.0000019350,0.0000019365,0.0000019350, +0.0000019296,0.0000019220,0.0000019173,0.0000019176,0.0000019229, +0.0000019287,0.0000019331,0.0000019364,0.0000019395,0.0000019423, +0.0000019445,0.0000019447,0.0000019420,0.0000019374,0.0000019347, +0.0000019353,0.0000019392,0.0000019451,0.0000019523,0.0000019603, +0.0000019690,0.0000019788,0.0000019900,0.0000020020,0.0000020128, +0.0000020197,0.0000020218,0.0000020220,0.0000020223,0.0000020239, +0.0000020264,0.0000020289,0.0000020306,0.0000020307,0.0000020298, +0.0000020278,0.0000020259,0.0000020243,0.0000020243,0.0000020264, +0.0000020304,0.0000020355,0.0000020408,0.0000020457,0.0000020500, +0.0000020533,0.0000020555,0.0000020568,0.0000020568,0.0000020563, +0.0000020550,0.0000020526,0.0000020496,0.0000020462,0.0000020429, +0.0000020402,0.0000020385,0.0000020380,0.0000020380,0.0000020381, +0.0000020384,0.0000020387,0.0000020388,0.0000020387,0.0000020385, +0.0000020382,0.0000020380,0.0000020381,0.0000020384,0.0000020391, +0.0000020401,0.0000020411,0.0000020420,0.0000020426,0.0000020428, +0.0000020428,0.0000020424,0.0000020412,0.0000020388,0.0000020353, +0.0000020321,0.0000020307,0.0000020309,0.0000020324,0.0000020345, +0.0000020362,0.0000020367,0.0000020362,0.0000020347,0.0000020326, +0.0000020304,0.0000020287,0.0000020277,0.0000020272,0.0000020268, +0.0000020263,0.0000020257,0.0000020248,0.0000020237,0.0000020225, +0.0000020213,0.0000020199,0.0000020181,0.0000020159,0.0000020131, +0.0000020101,0.0000020068,0.0000020032,0.0000019994,0.0000019956, +0.0000019919,0.0000019886,0.0000019858,0.0000019832,0.0000019809, +0.0000019789,0.0000019771,0.0000019753,0.0000019731,0.0000019702, +0.0000019661,0.0000019606,0.0000019546,0.0000019487,0.0000019436, +0.0000019392,0.0000019357,0.0000019331,0.0000019315,0.0000019303, +0.0000019298,0.0000019285,0.0000019268,0.0000019246,0.0000019224, +0.0000019212,0.0000019211,0.0000019214,0.0000019212,0.0000019200, +0.0000019190,0.0000019186,0.0000019199,0.0000019226,0.0000019265, +0.0000019317,0.0000019375,0.0000019431,0.0000019483,0.0000019528, +0.0000019569,0.0000019604,0.0000019628,0.0000019563,0.0000019590, +0.0000019606,0.0000019609,0.0000019595,0.0000019577,0.0000019564, +0.0000019564,0.0000019578,0.0000019603,0.0000019633,0.0000019647, +0.0000019638,0.0000019608,0.0000019585,0.0000019580,0.0000019589, +0.0000019598,0.0000019599,0.0000019596,0.0000019590,0.0000019574, +0.0000019534,0.0000019484,0.0000019443,0.0000019417,0.0000019402, +0.0000019391,0.0000019382,0.0000019375,0.0000019369,0.0000019373, +0.0000019387,0.0000019404,0.0000019426,0.0000019446,0.0000019463, +0.0000019479,0.0000019491,0.0000019500,0.0000019503,0.0000019500, +0.0000019493,0.0000019482,0.0000019470,0.0000019461,0.0000019457, +0.0000019453,0.0000019449,0.0000019443,0.0000019438,0.0000019438, +0.0000019441,0.0000019446,0.0000019451,0.0000019458,0.0000019464, +0.0000019471,0.0000019479,0.0000019485,0.0000019492,0.0000019502, +0.0000019512,0.0000019519,0.0000019521,0.0000019519,0.0000019515, +0.0000019514,0.0000019520,0.0000019522,0.0000019521,0.0000019521, +0.0000019522,0.0000019523,0.0000019515,0.0000019502,0.0000019485, +0.0000019464,0.0000019438,0.0000019409,0.0000019380,0.0000019352, +0.0000019328,0.0000019312,0.0000019303,0.0000019303,0.0000019309, +0.0000019313,0.0000019312,0.0000019313,0.0000019315,0.0000019321, +0.0000019333,0.0000019344,0.0000019355,0.0000019365,0.0000019378, +0.0000019388,0.0000019399,0.0000019408,0.0000019414,0.0000019423, +0.0000019435,0.0000019442,0.0000019444,0.0000019444,0.0000019443, +0.0000019436,0.0000019424,0.0000019410,0.0000019394,0.0000019376, +0.0000019358,0.0000019341,0.0000019329,0.0000019320,0.0000019309, +0.0000019296,0.0000019287,0.0000019281,0.0000019283,0.0000019298, +0.0000019323,0.0000019366,0.0000019427,0.0000019493,0.0000019551, +0.0000019596,0.0000019633,0.0000019665,0.0000019697,0.0000019739, +0.0000019800,0.0000019874,0.0000019950,0.0000020024,0.0000020093, +0.0000020150,0.0000020200,0.0000020239,0.0000020260,0.0000020269, +0.0000020270,0.0000020266,0.0000020260,0.0000020255,0.0000020255, +0.0000020255,0.0000020248,0.0000020239,0.0000020228,0.0000020214, +0.0000020198,0.0000020183,0.0000020172,0.0000020170,0.0000020176, +0.0000020189,0.0000020211,0.0000020244,0.0000020289,0.0000020334, +0.0000020375,0.0000020411,0.0000020442,0.0000020462,0.0000020474, +0.0000020483,0.0000020484,0.0000020480,0.0000020474,0.0000020466, +0.0000020455,0.0000020446,0.0000020438,0.0000020432,0.0000020428, +0.0000020429,0.0000020430,0.0000020430,0.0000020434,0.0000020446, +0.0000020465,0.0000020484,0.0000020501,0.0000020516,0.0000020529, +0.0000020540,0.0000020546,0.0000020548,0.0000020548,0.0000020548, +0.0000020548,0.0000020548,0.0000020549,0.0000020554,0.0000020561, +0.0000020568,0.0000020574,0.0000020581,0.0000020587,0.0000020592, +0.0000020601,0.0000020612,0.0000020629,0.0000020651,0.0000020672, +0.0000020692,0.0000020704,0.0000020713,0.0000020720,0.0000020725, +0.0000020729,0.0000020733,0.0000020739,0.0000020746,0.0000020759, +0.0000020777,0.0000020800,0.0000020824,0.0000020848,0.0000020874, +0.0000020902,0.0000020933,0.0000020966,0.0000021005,0.0000021051, +0.0000021101,0.0000021149,0.0000021192,0.0000021228,0.0000021259, +0.0000021282,0.0000021296,0.0000021305,0.0000021311,0.0000021314, +0.0000021316,0.0000021317,0.0000021313,0.0000021302,0.0000021282, +0.0000021248,0.0000021193,0.0000021126,0.0000021066,0.0000021025, +0.0000021000,0.0000020981,0.0000020951,0.0000020903,0.0000020858, +0.0000020839,0.0000020843,0.0000020875,0.0000020914,0.0000020956, +0.0000021014,0.0000021076,0.0000021124,0.0000021162,0.0000021183, +0.0000021186,0.0000021174,0.0000021148,0.0000021124,0.0000021093, +0.0000021044,0.0000020997,0.0000020974,0.0000020974,0.0000020998, +0.0000021031,0.0000021054,0.0000021068,0.0000021078,0.0000021086, +0.0000021118,0.0000021195,0.0000021296,0.0000021378,0.0000021425, +0.0000021444,0.0000021442,0.0000021418,0.0000021368,0.0000021298, +0.0000021226,0.0000021167,0.0000021099,0.0000021022,0.0000020959, +0.0000020913,0.0000020870,0.0000020831,0.0000020805,0.0000020791, +0.0000020793,0.0000020830,0.0000020895,0.0000020947,0.0000020962, +0.0000020952,0.0000020915,0.0000020871,0.0000020834,0.0000020809, +0.0000020791,0.0000020771,0.0000020741,0.0000020697,0.0000020642, +0.0000020584,0.0000020524,0.0000020470,0.0000020425,0.0000020388, +0.0000020359,0.0000020349,0.0000020357,0.0000020369,0.0000020375, +0.0000020379,0.0000020383,0.0000020386,0.0000020397,0.0000020415, +0.0000020426,0.0000020418,0.0000020386,0.0000020335,0.0000020273, +0.0000020214,0.0000020172,0.0000020160,0.0000020180,0.0000020227, +0.0000020257,0.0000020278,0.0000020338,0.0000020430,0.0000020497, +0.0000020507,0.0000020493,0.0000020402,0.0000020197,0.0000020015, +0.0000019971,0.0000020085,0.0000020305,0.0000020394,0.0000020387, +0.0000020385,0.0000020484,0.0000020686,0.0000020786,0.0000020763, +0.0000020751,0.0000020826,0.0000020950,0.0000021023,0.0000021081, +0.0000021220,0.0000021417,0.0000021542,0.0000021613,0.0000021654, +0.0000021693,0.0000021709,0.0000021693,0.0000021691,0.0000021704, +0.0000021718,0.0000021755,0.0000021794,0.0000021800,0.0000021780, +0.0000021774,0.0000021778,0.0000021784,0.0000021818,0.0000021885, +0.0000021941,0.0000021947,0.0000021929,0.0000021904,0.0000021874, +0.0000021842,0.0000021811,0.0000021781,0.0000021754,0.0000021730, +0.0000021703,0.0000021663,0.0000021611,0.0000021559,0.0000021514, +0.0000021479,0.0000021467,0.0000021474,0.0000021497,0.0000021529, +0.0000021554,0.0000021563,0.0000021567,0.0000021567,0.0000021571, +0.0000021580,0.0000021583,0.0000021576,0.0000021556,0.0000021526, +0.0000021498,0.0000021499,0.0000021518,0.0000021551,0.0000021584, +0.0000021615,0.0000021640,0.0000021658,0.0000021657,0.0000021639, +0.0000021604,0.0000021555,0.0000021486,0.0000021406,0.0000021320, +0.0000021230,0.0000021147,0.0000021070,0.0000020995,0.0000020924, +0.0000020865,0.0000020819,0.0000020785,0.0000020764,0.0000020748, +0.0000020760,0.0000020783,0.0000020802,0.0000020812,0.0000020813, +0.0000020806,0.0000020790,0.0000020765,0.0000020727,0.0000020698, +0.0000020668,0.0000020639,0.0000020606,0.0000020578,0.0000020562, +0.0000020558,0.0000020554,0.0000020550,0.0000020541,0.0000020525, +0.0000020514,0.0000020513,0.0000020518,0.0000020533,0.0000020553, +0.0000020577,0.0000020604,0.0000020635,0.0000020666,0.0000020695, +0.0000020725,0.0000020755,0.0000020781,0.0000020797,0.0000020808, +0.0000020817,0.0000020815,0.0000020808,0.0000020800,0.0000020792, +0.0000020783,0.0000020765,0.0000020745,0.0000020730,0.0000020714, +0.0000020695,0.0000020684,0.0000020676,0.0000020670,0.0000020668, +0.0000020672,0.0000020670,0.0000020671,0.0000020674,0.0000020674, +0.0000020682,0.0000020693,0.0000020704,0.0000020716,0.0000020723, +0.0000020723,0.0000020717,0.0000020700,0.0000020671,0.0000020641, +0.0000020618,0.0000020604,0.0000020607,0.0000020624,0.0000020650, +0.0000020678,0.0000020703,0.0000020723,0.0000020734,0.0000020740, +0.0000020739,0.0000020731,0.0000020725,0.0000020724,0.0000020720, +0.0000020717,0.0000020711,0.0000020698,0.0000020679,0.0000020670, +0.0000020673,0.0000020689,0.0000020704,0.0000020720,0.0000020734, +0.0000020748,0.0000020761,0.0000020774,0.0000020782,0.0000020783, +0.0000020781,0.0000020774,0.0000020766,0.0000020753,0.0000020735, +0.0000020716,0.0000020709,0.0000020715,0.0000020731,0.0000020751, +0.0000020773,0.0000020793,0.0000020808,0.0000020825,0.0000020841, +0.0000020851,0.0000020852,0.0000020851,0.0000020847,0.0000020840, +0.0000020826,0.0000020804,0.0000020792,0.0000020776,0.0000020763, +0.0000020757,0.0000020759,0.0000020766,0.0000020780,0.0000020802, +0.0000020834,0.0000020873,0.0000020915,0.0000020959,0.0000021001, +0.0000021042,0.0000021077,0.0000021108,0.0000021136,0.0000021158, +0.0000021176,0.0000021194,0.0000021211,0.0000021227,0.0000021243, +0.0000021260,0.0000021277,0.0000021287,0.0000021288,0.0000021282, +0.0000021274,0.0000021266,0.0000021259,0.0000021255,0.0000021255, +0.0000021251,0.0000021242,0.0000021233,0.0000021221,0.0000021210, +0.0000021196,0.0000021181,0.0000021169,0.0000021159,0.0000021150, +0.0000021140,0.0000021131,0.0000021124,0.0000021120,0.0000021124, +0.0000021132,0.0000021140,0.0000021154,0.0000021170,0.0000021191, +0.0000021214,0.0000021232,0.0000021248,0.0000021266,0.0000021286, +0.0000021311,0.0000021342,0.0000021381,0.0000021425,0.0000021476, +0.0000021529,0.0000021580,0.0000021630,0.0000021677,0.0000021718, +0.0000021757,0.0000021797,0.0000021838,0.0000021876,0.0000021910, +0.0000021943,0.0000021981,0.0000022024,0.0000022071,0.0000022115, +0.0000022153,0.0000022180,0.0000022189,0.0000022191,0.0000022191, +0.0000022178,0.0000022166,0.0000022149,0.0000022130,0.0000022115, +0.0000022102,0.0000022093,0.0000022083,0.0000022074,0.0000022071, +0.0000022069,0.0000022065,0.0000022056,0.0000022042,0.0000022026, +0.0000022009,0.0000021987,0.0000021961,0.0000021934,0.0000021908, +0.0000021881,0.0000021851,0.0000021821,0.0000021792,0.0000021763, +0.0000021736,0.0000021708,0.0000021680,0.0000021659,0.0000021648, +0.0000021652,0.0000021665,0.0000021684,0.0000021707,0.0000021730, +0.0000021755,0.0000021777,0.0000021799,0.0000021819,0.0000021834, +0.0000021842,0.0000021838,0.0000021824,0.0000021804,0.0000021783, +0.0000021758,0.0000021731,0.0000021701,0.0000021669,0.0000021631, +0.0000021597,0.0000021567,0.0000021542,0.0000021523,0.0000021511, +0.0000021507,0.0000021507,0.0000021506,0.0000021501,0.0000021491, +0.0000021475,0.0000021453,0.0000021425,0.0000021395,0.0000021367, +0.0000021346,0.0000021336,0.0000021337,0.0000021343,0.0000021350, +0.0000021356,0.0000021365,0.0000021375,0.0000021387,0.0000021395, +0.0000021399,0.0000021396,0.0000021388,0.0000021376,0.0000021362, +0.0000021354,0.0000021352,0.0000021349,0.0000021342,0.0000021328, +0.0000021310,0.0000021289,0.0000021248,0.0000021221,0.0000021177, +0.0000021136,0.0000021093,0.0000021047,0.0000021005,0.0000020973, +0.0000020946,0.0000020931,0.0000020918,0.0000020907,0.0000020895, +0.0000020878,0.0000020848,0.0000020802,0.0000020746,0.0000020686, +0.0000020625,0.0000020574,0.0000020539,0.0000020515,0.0000020495, +0.0000020477,0.0000020457,0.0000020437,0.0000020421,0.0000020410, +0.0000020400,0.0000020387,0.0000020374,0.0000020362,0.0000020348, +0.0000020335,0.0000020329,0.0000020328,0.0000020330,0.0000020329, +0.0000020328,0.0000020324,0.0000020314,0.0000020298,0.0000020274, +0.0000020243,0.0000020208,0.0000020174,0.0000020141,0.0000020116, +0.0000020109,0.0000020115,0.0000020133,0.0000020155,0.0000020179, +0.0000020204,0.0000020223,0.0000020234,0.0000020239,0.0000020235, +0.0000020221,0.0000020200,0.0000020175,0.0000020151,0.0000020130, +0.0000020113,0.0000020098,0.0000020082,0.0000020060,0.0000020035, +0.0000020015,0.0000019996,0.0000019989,0.0000019984,0.0000019982, +0.0000019978,0.0000019987,0.0000020009,0.0000020040,0.0000020074, +0.0000020090,0.0000020083,0.0000020062,0.0000019995,0.0000019886, +0.0000019765,0.0000019658,0.0000019586,0.0000019549,0.0000019535, +0.0000019542,0.0000019540,0.0000019509,0.0000019450,0.0000019377, +0.0000019318,0.0000019298,0.0000019306,0.0000019341,0.0000019388, +0.0000019436,0.0000019486,0.0000019538,0.0000019581,0.0000019602, +0.0000019599,0.0000019581,0.0000019547,0.0000019515,0.0000019502, +0.0000019501,0.0000019507,0.0000019506,0.0000019509,0.0000019544, +0.0000019607,0.0000019655,0.0000019663,0.0000019657,0.0000019660, +0.0000019691,0.0000019744,0.0000019796,0.0000019826,0.0000019838, +0.0000019845,0.0000019861,0.0000019890,0.0000019923,0.0000019952, +0.0000019973,0.0000019984,0.0000019989,0.0000019988,0.0000019984, +0.0000019983,0.0000019988,0.0000019999,0.0000020009,0.0000020014, +0.0000020021,0.0000020028,0.0000020037,0.0000020045,0.0000020053, +0.0000020063,0.0000020076,0.0000020094,0.0000020114,0.0000020134, +0.0000020156,0.0000020177,0.0000020198,0.0000020217,0.0000020236, +0.0000020253,0.0000020266,0.0000020273,0.0000020275,0.0000020269, +0.0000020259,0.0000020247,0.0000020238,0.0000020236,0.0000020237, +0.0000020243,0.0000020251,0.0000020264,0.0000020282,0.0000020304, +0.0000020326,0.0000020348,0.0000020367,0.0000020386,0.0000020403, +0.0000020420,0.0000020435,0.0000020448,0.0000020458,0.0000020470, +0.0000020487,0.0000020505,0.0000020522,0.0000020538,0.0000020553, +0.0000020568,0.0000020586,0.0000020607,0.0000020626,0.0000020642, +0.0000020655,0.0000020667,0.0000020680,0.0000020693,0.0000020702, +0.0000020706,0.0000020705,0.0000020705,0.0000020711,0.0000020723, +0.0000020742,0.0000020762,0.0000020765,0.0000020754,0.0000020766, +0.0000020848,0.0000020965,0.0000021042,0.0000021069,0.0000021087, +0.0000021110,0.0000021133,0.0000021141,0.0000021131,0.0000021124, +0.0000021122,0.0000021090,0.0000021042,0.0000020995,0.0000020943, +0.0000020877,0.0000020837,0.0000020825,0.0000020792,0.0000020764, +0.0000020769,0.0000020787,0.0000020798,0.0000020814,0.0000020834, +0.0000020845,0.0000020846,0.0000020841,0.0000020829,0.0000020812, +0.0000020789,0.0000020758,0.0000020723,0.0000020684,0.0000020647, +0.0000020616,0.0000020590,0.0000020560,0.0000020524,0.0000020490, +0.0000020465,0.0000020448,0.0000020436,0.0000020430,0.0000020422, +0.0000020411,0.0000020396,0.0000020384,0.0000020374,0.0000020360, +0.0000020343,0.0000020323,0.0000020307,0.0000020298,0.0000020296, +0.0000020297,0.0000020298,0.0000020298,0.0000020296,0.0000020295, +0.0000020296,0.0000020296,0.0000020297,0.0000020296,0.0000020295, +0.0000020294,0.0000020295,0.0000020296,0.0000020295,0.0000020294, +0.0000020294,0.0000020295,0.0000020299,0.0000020303,0.0000020312, +0.0000020329,0.0000020350,0.0000020374,0.0000020401,0.0000020425, +0.0000020445,0.0000020463,0.0000020480,0.0000020494,0.0000020504, +0.0000020510,0.0000020512,0.0000020512,0.0000020512,0.0000020508, +0.0000020503,0.0000020498,0.0000020484,0.0000020472,0.0000020451, +0.0000020419,0.0000020381,0.0000020339,0.0000020294,0.0000020248, +0.0000020202,0.0000020154,0.0000020106,0.0000020060,0.0000020019, +0.0000019996,0.0000019975,0.0000019972,0.0000019986,0.0000020012, +0.0000020054,0.0000020110,0.0000020179,0.0000020246,0.0000020303, +0.0000020345,0.0000020372,0.0000020390,0.0000020407,0.0000020424, +0.0000020444,0.0000020468,0.0000020494,0.0000020516,0.0000020526, +0.0000020519,0.0000020501,0.0000020473,0.0000020441,0.0000020401, +0.0000020354,0.0000020304,0.0000020259,0.0000020227,0.0000020212, +0.0000020208,0.0000020212,0.0000020223,0.0000020234,0.0000020243, +0.0000020248,0.0000020248,0.0000020237,0.0000020210,0.0000020173, +0.0000020135,0.0000020094,0.0000020047,0.0000019995,0.0000019944, +0.0000019888,0.0000019826,0.0000019762,0.0000019699,0.0000019649, +0.0000019619,0.0000019612,0.0000019619,0.0000019642,0.0000019676, +0.0000019708,0.0000019727,0.0000019724,0.0000019700,0.0000019654, +0.0000019601,0.0000019565,0.0000019551,0.0000019550,0.0000019554, +0.0000019561,0.0000019574,0.0000019588,0.0000019592,0.0000019569, +0.0000019531,0.0000019497,0.0000019474,0.0000019460,0.0000019460, +0.0000019472,0.0000019484,0.0000019487,0.0000019491,0.0000019507, +0.0000019535,0.0000019566,0.0000019604,0.0000019646,0.0000019683, +0.0000019714,0.0000019745,0.0000019783,0.0000019819,0.0000019836, +0.0000019832,0.0000019804,0.0000019768,0.0000019738,0.0000019721, +0.0000019715,0.0000019712,0.0000019706,0.0000019690,0.0000019658, +0.0000019614,0.0000019571,0.0000019539,0.0000019505,0.0000019453, +0.0000019377,0.0000019305,0.0000019252,0.0000019236,0.0000019259, +0.0000019321,0.0000019419,0.0000019531,0.0000019638,0.0000019722, +0.0000019776,0.0000019801,0.0000019806,0.0000019803,0.0000019807, +0.0000019833,0.0000019885,0.0000019960,0.0000020048,0.0000020136, +0.0000020214,0.0000020275,0.0000020318,0.0000020345,0.0000020358, +0.0000020367,0.0000020373,0.0000020378,0.0000020382,0.0000020381, +0.0000020376,0.0000020370,0.0000020362,0.0000020351,0.0000020340, +0.0000020330,0.0000020324,0.0000020322,0.0000020324,0.0000020324, +0.0000020316,0.0000020299,0.0000020273,0.0000020240,0.0000020198, +0.0000020149,0.0000020096,0.0000020036,0.0000019961,0.0000019868, +0.0000019768,0.0000019668,0.0000019583,0.0000019522,0.0000019486, +0.0000019465,0.0000019454,0.0000019453,0.0000019451,0.0000019449, +0.0000019448,0.0000019457,0.0000019478,0.0000019512,0.0000019550, +0.0000019581,0.0000019599,0.0000019599,0.0000019583,0.0000019557, +0.0000019522,0.0000019476,0.0000019416,0.0000019349,0.0000019280, +0.0000019217,0.0000019165,0.0000019117,0.0000019080,0.0000019055, +0.0000019039,0.0000019033,0.0000019035,0.0000019033,0.0000019030, +0.0000019028,0.0000019025,0.0000019018,0.0000019007,0.0000018996, +0.0000018991,0.0000018997,0.0000019020,0.0000019048,0.0000019076, +0.0000019102,0.0000019120,0.0000019133,0.0000019139,0.0000019137, +0.0000019127,0.0000019110,0.0000019093,0.0000019083,0.0000019076, +0.0000019063,0.0000019048,0.0000019033,0.0000019018,0.0000019005, +0.0000018996,0.0000018987,0.0000018974,0.0000018954,0.0000018923, +0.0000018878,0.0000018821,0.0000018762,0.0000018706,0.0000018653, +0.0000018602,0.0000018554,0.0000018512,0.0000018472,0.0000018435, +0.0000018404,0.0000018381,0.0000018367,0.0000018357,0.0000018351, +0.0000018346,0.0000018340,0.0000018333,0.0000018331,0.0000018334, +0.0000018343,0.0000018354,0.0000018365,0.0000018375,0.0000018382, +0.0000018389,0.0000018394,0.0000018395,0.0000018392,0.0000018390, +0.0000018387,0.0000018379,0.0000018366,0.0000018351,0.0000018338, +0.0000018330,0.0000018329,0.0000018332,0.0000018336,0.0000018342, +0.0000018350,0.0000018357,0.0000018360,0.0000018363,0.0000018369, +0.0000018377,0.0000018387,0.0000018401,0.0000018418,0.0000018436, +0.0000018453,0.0000018469,0.0000018486,0.0000018500,0.0000018512, +0.0000018522,0.0000018530,0.0000018539,0.0000018547,0.0000018552, +0.0000018552,0.0000018553,0.0000018557,0.0000018562,0.0000018566, +0.0000018567,0.0000018564,0.0000018561,0.0000018560,0.0000018562, +0.0000018564,0.0000018566,0.0000018567,0.0000018569,0.0000018572, +0.0000018577,0.0000018582,0.0000018586,0.0000018591,0.0000018601, +0.0000018618,0.0000018642,0.0000018672,0.0000018708,0.0000018752, +0.0000018801,0.0000018851,0.0000018898,0.0000018944,0.0000018989, +0.0000019034,0.0000019074,0.0000019105,0.0000019129,0.0000019149, +0.0000019167,0.0000019183,0.0000019193,0.0000019193,0.0000019184, +0.0000019167,0.0000019148,0.0000019137,0.0000019135,0.0000019138, +0.0000019141,0.0000019145,0.0000019152,0.0000019164,0.0000019177, +0.0000019188,0.0000019197,0.0000019211,0.0000019233,0.0000019266, +0.0000019303,0.0000019331,0.0000019338,0.0000019328,0.0000019309, +0.0000019295,0.0000019300,0.0000019317,0.0000019326,0.0000019307, +0.0000019253,0.0000019190,0.0000019165,0.0000019181,0.0000019231, +0.0000019285,0.0000019326,0.0000019358,0.0000019390,0.0000019417, +0.0000019436,0.0000019433,0.0000019402,0.0000019357,0.0000019331, +0.0000019329,0.0000019354,0.0000019403,0.0000019468,0.0000019545, +0.0000019631,0.0000019726,0.0000019835,0.0000019956,0.0000020075, +0.0000020164,0.0000020210,0.0000020222,0.0000020226,0.0000020238, +0.0000020256,0.0000020274,0.0000020287,0.0000020288,0.0000020280, +0.0000020262,0.0000020240,0.0000020227,0.0000020227,0.0000020245, +0.0000020278,0.0000020320,0.0000020368,0.0000020416,0.0000020460, +0.0000020494,0.0000020518,0.0000020532,0.0000020537,0.0000020535, +0.0000020526,0.0000020516,0.0000020500,0.0000020480,0.0000020458, +0.0000020437,0.0000020421,0.0000020406,0.0000020395,0.0000020388, +0.0000020387,0.0000020385,0.0000020385,0.0000020384,0.0000020383, +0.0000020382,0.0000020382,0.0000020386,0.0000020393,0.0000020404, +0.0000020417,0.0000020428,0.0000020435,0.0000020438,0.0000020438, +0.0000020434,0.0000020422,0.0000020398,0.0000020365,0.0000020336, +0.0000020325,0.0000020326,0.0000020342,0.0000020363,0.0000020378, +0.0000020381,0.0000020374,0.0000020357,0.0000020335,0.0000020314, +0.0000020298,0.0000020288,0.0000020284,0.0000020282,0.0000020282, +0.0000020281,0.0000020275,0.0000020267,0.0000020258,0.0000020248, +0.0000020237,0.0000020223,0.0000020204,0.0000020179,0.0000020148, +0.0000020111,0.0000020071,0.0000020028,0.0000019985,0.0000019942, +0.0000019901,0.0000019867,0.0000019839,0.0000019815,0.0000019792, +0.0000019772,0.0000019755,0.0000019740,0.0000019724,0.0000019700, +0.0000019660,0.0000019606,0.0000019543,0.0000019480,0.0000019423, +0.0000019374,0.0000019338,0.0000019310,0.0000019289,0.0000019271, +0.0000019259,0.0000019252,0.0000019236,0.0000019215,0.0000019198, +0.0000019192,0.0000019197,0.0000019203,0.0000019201,0.0000019190, +0.0000019174,0.0000019168,0.0000019174,0.0000019202,0.0000019241, +0.0000019286,0.0000019337,0.0000019391,0.0000019443,0.0000019489, +0.0000019530,0.0000019445,0.0000019484,0.0000019521,0.0000019554, +0.0000019576,0.0000019582,0.0000019575,0.0000019565,0.0000019561, +0.0000019564,0.0000019580,0.0000019611,0.0000019643,0.0000019657, +0.0000019653,0.0000019622,0.0000019592,0.0000019582,0.0000019586, +0.0000019589,0.0000019584,0.0000019574,0.0000019563,0.0000019543, +0.0000019506,0.0000019463,0.0000019428,0.0000019408,0.0000019402, +0.0000019403,0.0000019409,0.0000019417,0.0000019429,0.0000019442, +0.0000019454,0.0000019464,0.0000019473,0.0000019480,0.0000019486, +0.0000019490,0.0000019493,0.0000019492,0.0000019486,0.0000019479, +0.0000019468,0.0000019460,0.0000019458,0.0000019453,0.0000019450, +0.0000019443,0.0000019438,0.0000019441,0.0000019446,0.0000019448, +0.0000019450,0.0000019451,0.0000019451,0.0000019451,0.0000019450, +0.0000019451,0.0000019455,0.0000019462,0.0000019473,0.0000019486, +0.0000019500,0.0000019509,0.0000019518,0.0000019529,0.0000019545, +0.0000019555,0.0000019561,0.0000019565,0.0000019565,0.0000019561, +0.0000019551,0.0000019534,0.0000019510,0.0000019482,0.0000019451, +0.0000019416,0.0000019379,0.0000019347,0.0000019319,0.0000019301, +0.0000019291,0.0000019291,0.0000019295,0.0000019296,0.0000019295, +0.0000019293,0.0000019294,0.0000019300,0.0000019310,0.0000019321, +0.0000019333,0.0000019346,0.0000019361,0.0000019374,0.0000019386, +0.0000019396,0.0000019403,0.0000019407,0.0000019406,0.0000019404, +0.0000019404,0.0000019401,0.0000019395,0.0000019390,0.0000019382, +0.0000019368,0.0000019347,0.0000019319,0.0000019288,0.0000019260, +0.0000019236,0.0000019217,0.0000019200,0.0000019191,0.0000019194, +0.0000019203,0.0000019225,0.0000019255,0.0000019287,0.0000019331, +0.0000019385,0.0000019444,0.0000019502,0.0000019561,0.0000019618, +0.0000019662,0.0000019695,0.0000019727,0.0000019762,0.0000019803, +0.0000019853,0.0000019918,0.0000019989,0.0000020052,0.0000020110, +0.0000020161,0.0000020191,0.0000020207,0.0000020214,0.0000020215, +0.0000020209,0.0000020204,0.0000020203,0.0000020202,0.0000020196, +0.0000020190,0.0000020186,0.0000020181,0.0000020170,0.0000020161, +0.0000020154,0.0000020150,0.0000020153,0.0000020163,0.0000020179, +0.0000020206,0.0000020247,0.0000020294,0.0000020340,0.0000020379, +0.0000020410,0.0000020431,0.0000020447,0.0000020460,0.0000020466, +0.0000020465,0.0000020461,0.0000020451,0.0000020437,0.0000020425, +0.0000020415,0.0000020406,0.0000020401,0.0000020403,0.0000020409, +0.0000020415,0.0000020421,0.0000020432,0.0000020453,0.0000020477, +0.0000020500,0.0000020520,0.0000020536,0.0000020552,0.0000020562, +0.0000020568,0.0000020567,0.0000020562,0.0000020557,0.0000020554, +0.0000020555,0.0000020560,0.0000020565,0.0000020569,0.0000020574, +0.0000020579,0.0000020582,0.0000020587,0.0000020594,0.0000020604, +0.0000020620,0.0000020639,0.0000020661,0.0000020681,0.0000020695, +0.0000020704,0.0000020708,0.0000020709,0.0000020710,0.0000020711, +0.0000020712,0.0000020714,0.0000020720,0.0000020731,0.0000020747, +0.0000020765,0.0000020786,0.0000020811,0.0000020839,0.0000020869, +0.0000020902,0.0000020939,0.0000020983,0.0000021032,0.0000021083, +0.0000021132,0.0000021179,0.0000021223,0.0000021259,0.0000021281, +0.0000021294,0.0000021301,0.0000021305,0.0000021308,0.0000021307, +0.0000021303,0.0000021293,0.0000021276,0.0000021246,0.0000021193, +0.0000021122,0.0000021055,0.0000021007,0.0000020978,0.0000020957, +0.0000020922,0.0000020867,0.0000020821,0.0000020809,0.0000020825, +0.0000020861,0.0000020902,0.0000020952,0.0000021014,0.0000021072, +0.0000021121,0.0000021156,0.0000021168,0.0000021166,0.0000021145, +0.0000021113,0.0000021083,0.0000021046,0.0000020999,0.0000020963, +0.0000020949,0.0000020963,0.0000020998,0.0000021031,0.0000021049, +0.0000021060,0.0000021069,0.0000021083,0.0000021120,0.0000021189, +0.0000021272,0.0000021340,0.0000021378,0.0000021385,0.0000021373, +0.0000021333,0.0000021276,0.0000021216,0.0000021164,0.0000021110, +0.0000021048,0.0000020991,0.0000020941,0.0000020892,0.0000020846, +0.0000020812,0.0000020789,0.0000020782,0.0000020799,0.0000020856, +0.0000020920,0.0000020953,0.0000020956,0.0000020935,0.0000020901, +0.0000020865,0.0000020835,0.0000020813,0.0000020795,0.0000020771, +0.0000020730,0.0000020672,0.0000020610,0.0000020546,0.0000020488, +0.0000020445,0.0000020415,0.0000020390,0.0000020370,0.0000020363, +0.0000020369,0.0000020376,0.0000020376,0.0000020375,0.0000020374, +0.0000020373,0.0000020378,0.0000020392,0.0000020401,0.0000020393, +0.0000020365,0.0000020313,0.0000020245,0.0000020181,0.0000020141, +0.0000020130,0.0000020151,0.0000020205,0.0000020251,0.0000020280, +0.0000020340,0.0000020433,0.0000020495,0.0000020503,0.0000020473, +0.0000020330,0.0000020110,0.0000019976,0.0000019999,0.0000020195, +0.0000020367,0.0000020397,0.0000020391,0.0000020429,0.0000020595, +0.0000020760,0.0000020782,0.0000020756,0.0000020802,0.0000020916, +0.0000020993,0.0000021040,0.0000021139,0.0000021335,0.0000021500, +0.0000021592,0.0000021645,0.0000021684,0.0000021715,0.0000021712, +0.0000021690,0.0000021689,0.0000021700,0.0000021717,0.0000021748, +0.0000021782,0.0000021785,0.0000021772,0.0000021775,0.0000021785, +0.0000021793,0.0000021820,0.0000021878,0.0000021928,0.0000021934, +0.0000021910,0.0000021877,0.0000021845,0.0000021814,0.0000021780, +0.0000021752,0.0000021733,0.0000021716,0.0000021693,0.0000021657, +0.0000021609,0.0000021558,0.0000021515,0.0000021491,0.0000021489, +0.0000021504,0.0000021532,0.0000021554,0.0000021560,0.0000021566, +0.0000021570,0.0000021570,0.0000021562,0.0000021549,0.0000021534, +0.0000021509,0.0000021468,0.0000021427,0.0000021421,0.0000021438, +0.0000021473,0.0000021514,0.0000021547,0.0000021574,0.0000021592, +0.0000021598,0.0000021593,0.0000021571,0.0000021534,0.0000021480, +0.0000021412,0.0000021336,0.0000021252,0.0000021162,0.0000021077, +0.0000020995,0.0000020921,0.0000020859,0.0000020803,0.0000020755, +0.0000020733,0.0000020731,0.0000020748,0.0000020775,0.0000020796, +0.0000020809,0.0000020811,0.0000020802,0.0000020782,0.0000020755, +0.0000020728,0.0000020698,0.0000020670,0.0000020652,0.0000020624, +0.0000020599,0.0000020586,0.0000020583,0.0000020580,0.0000020569, +0.0000020553,0.0000020532,0.0000020512,0.0000020503,0.0000020504, +0.0000020511,0.0000020520,0.0000020532,0.0000020545,0.0000020559, +0.0000020573,0.0000020587,0.0000020605,0.0000020628,0.0000020652, +0.0000020672,0.0000020691,0.0000020711,0.0000020725,0.0000020735, +0.0000020746,0.0000020752,0.0000020752,0.0000020746,0.0000020739, +0.0000020730,0.0000020717,0.0000020701,0.0000020689,0.0000020682, +0.0000020675,0.0000020672,0.0000020672,0.0000020673,0.0000020678, +0.0000020680,0.0000020681,0.0000020686,0.0000020692,0.0000020706, +0.0000020719,0.0000020728,0.0000020728,0.0000020719,0.0000020700, +0.0000020676,0.0000020662,0.0000020658,0.0000020659,0.0000020672, +0.0000020702,0.0000020738,0.0000020769,0.0000020790,0.0000020799, +0.0000020801,0.0000020800,0.0000020802,0.0000020806,0.0000020809, +0.0000020809,0.0000020811,0.0000020808,0.0000020799,0.0000020785, +0.0000020765,0.0000020755,0.0000020754,0.0000020762,0.0000020771, +0.0000020781,0.0000020789,0.0000020792,0.0000020793,0.0000020794, +0.0000020794,0.0000020788,0.0000020778,0.0000020764,0.0000020749, +0.0000020732,0.0000020716,0.0000020702,0.0000020701,0.0000020713, +0.0000020730,0.0000020752,0.0000020780,0.0000020807,0.0000020832, +0.0000020862,0.0000020890,0.0000020913,0.0000020927,0.0000020935, +0.0000020937,0.0000020930,0.0000020912,0.0000020888,0.0000020860, +0.0000020834,0.0000020810,0.0000020790,0.0000020776,0.0000020767, +0.0000020769,0.0000020768,0.0000020774,0.0000020791,0.0000020813, +0.0000020840,0.0000020874,0.0000020912,0.0000020953,0.0000020994, +0.0000021034,0.0000021073,0.0000021109,0.0000021138,0.0000021163, +0.0000021181,0.0000021193,0.0000021202,0.0000021212,0.0000021218, +0.0000021221,0.0000021219,0.0000021212,0.0000021205,0.0000021203, +0.0000021204,0.0000021203,0.0000021198,0.0000021190,0.0000021179, +0.0000021167,0.0000021157,0.0000021147,0.0000021138,0.0000021136, +0.0000021139,0.0000021145,0.0000021148,0.0000021151,0.0000021154, +0.0000021154,0.0000021155,0.0000021157,0.0000021155,0.0000021154, +0.0000021159,0.0000021163,0.0000021168,0.0000021172,0.0000021177, +0.0000021184,0.0000021194,0.0000021212,0.0000021237,0.0000021270, +0.0000021307,0.0000021348,0.0000021393,0.0000021440,0.0000021490, +0.0000021540,0.0000021587,0.0000021631,0.0000021675,0.0000021717, +0.0000021757,0.0000021794,0.0000021831,0.0000021869,0.0000021915, +0.0000021965,0.0000022013,0.0000022062,0.0000022104,0.0000022132, +0.0000022152,0.0000022163,0.0000022168,0.0000022168,0.0000022166, +0.0000022167,0.0000022165,0.0000022162,0.0000022156,0.0000022149, +0.0000022143,0.0000022138,0.0000022131,0.0000022120,0.0000022105, +0.0000022087,0.0000022067,0.0000022047,0.0000022027,0.0000022005, +0.0000021982,0.0000021957,0.0000021931,0.0000021902,0.0000021872, +0.0000021840,0.0000021809,0.0000021776,0.0000021741,0.0000021709, +0.0000021681,0.0000021661,0.0000021657,0.0000021664,0.0000021679, +0.0000021699,0.0000021721,0.0000021740,0.0000021754,0.0000021765, +0.0000021776,0.0000021783,0.0000021782,0.0000021775,0.0000021759, +0.0000021739,0.0000021717,0.0000021695,0.0000021670,0.0000021644, +0.0000021617,0.0000021589,0.0000021560,0.0000021532,0.0000021509, +0.0000021494,0.0000021488,0.0000021487,0.0000021487,0.0000021485, +0.0000021480,0.0000021470,0.0000021454,0.0000021429,0.0000021396, +0.0000021360,0.0000021327,0.0000021305,0.0000021296,0.0000021292, +0.0000021291,0.0000021294,0.0000021301,0.0000021311,0.0000021319, +0.0000021326,0.0000021332,0.0000021333,0.0000021326,0.0000021311, +0.0000021293,0.0000021278,0.0000021271,0.0000021267,0.0000021261, +0.0000021250,0.0000021236,0.0000021221,0.0000021204,0.0000021186, +0.0000021168,0.0000021152,0.0000021136,0.0000021102,0.0000021090, +0.0000021058,0.0000021033,0.0000021005,0.0000020973,0.0000020943, +0.0000020916,0.0000020894,0.0000020876,0.0000020858,0.0000020835, +0.0000020807,0.0000020769,0.0000020723,0.0000020678,0.0000020640, +0.0000020606,0.0000020574,0.0000020540,0.0000020503,0.0000020471, +0.0000020448,0.0000020431,0.0000020418,0.0000020406,0.0000020396, +0.0000020385,0.0000020373,0.0000020363,0.0000020361,0.0000020364, +0.0000020368,0.0000020373,0.0000020379,0.0000020386,0.0000020388, +0.0000020382,0.0000020368,0.0000020344,0.0000020315,0.0000020285, +0.0000020257,0.0000020238,0.0000020234,0.0000020240,0.0000020251, +0.0000020262,0.0000020275,0.0000020288,0.0000020294,0.0000020295, +0.0000020289,0.0000020272,0.0000020245,0.0000020209,0.0000020172, +0.0000020142,0.0000020118,0.0000020103,0.0000020093,0.0000020081, +0.0000020061,0.0000020036,0.0000020012,0.0000019995,0.0000019984, +0.0000019977,0.0000019964,0.0000019959,0.0000019950,0.0000019957, +0.0000019976,0.0000020003,0.0000020028,0.0000020048,0.0000020045, +0.0000020007,0.0000019929,0.0000019819,0.0000019700,0.0000019592, +0.0000019528,0.0000019503,0.0000019493,0.0000019494,0.0000019479, +0.0000019429,0.0000019360,0.0000019305,0.0000019282,0.0000019289, +0.0000019325,0.0000019377,0.0000019432,0.0000019491,0.0000019546, +0.0000019583,0.0000019595,0.0000019584,0.0000019560,0.0000019533, +0.0000019514,0.0000019504,0.0000019487,0.0000019469,0.0000019467, +0.0000019508,0.0000019577,0.0000019626,0.0000019635,0.0000019629, +0.0000019630,0.0000019659,0.0000019715,0.0000019774,0.0000019815, +0.0000019831,0.0000019838,0.0000019859,0.0000019898,0.0000019938, +0.0000019964,0.0000019974,0.0000019977,0.0000019977,0.0000019972, +0.0000019963,0.0000019955,0.0000019954,0.0000019959,0.0000019962, +0.0000019964,0.0000019971,0.0000019982,0.0000019996,0.0000020007, +0.0000020019,0.0000020031,0.0000020046,0.0000020063,0.0000020081, +0.0000020099,0.0000020121,0.0000020145,0.0000020170,0.0000020192, +0.0000020212,0.0000020230,0.0000020245,0.0000020260,0.0000020271, +0.0000020278,0.0000020279,0.0000020277,0.0000020277,0.0000020280, +0.0000020282,0.0000020283,0.0000020287,0.0000020294,0.0000020310, +0.0000020333,0.0000020360,0.0000020387,0.0000020409,0.0000020430, +0.0000020452,0.0000020476,0.0000020497,0.0000020511,0.0000020519, +0.0000020530,0.0000020544,0.0000020556,0.0000020564,0.0000020571, +0.0000020578,0.0000020587,0.0000020600,0.0000020614,0.0000020625, +0.0000020631,0.0000020632,0.0000020633,0.0000020640,0.0000020650, +0.0000020661,0.0000020671,0.0000020679,0.0000020691,0.0000020707, +0.0000020729,0.0000020752,0.0000020762,0.0000020756,0.0000020758, +0.0000020815,0.0000020923,0.0000021016,0.0000021058,0.0000021074, +0.0000021095,0.0000021121,0.0000021145,0.0000021145,0.0000021132, +0.0000021130,0.0000021119,0.0000021080,0.0000021034,0.0000020984, +0.0000020927,0.0000020868,0.0000020837,0.0000020828,0.0000020796, +0.0000020763,0.0000020762,0.0000020782,0.0000020800,0.0000020813, +0.0000020826,0.0000020837,0.0000020842,0.0000020838,0.0000020826, +0.0000020805,0.0000020774,0.0000020733,0.0000020685,0.0000020637, +0.0000020594,0.0000020563,0.0000020534,0.0000020501,0.0000020463, +0.0000020428,0.0000020402,0.0000020383,0.0000020370,0.0000020359, +0.0000020347,0.0000020333,0.0000020319,0.0000020305,0.0000020293, +0.0000020280,0.0000020267,0.0000020255,0.0000020248,0.0000020246, +0.0000020246,0.0000020247,0.0000020249,0.0000020248,0.0000020248, +0.0000020248,0.0000020251,0.0000020256,0.0000020262,0.0000020267, +0.0000020274,0.0000020283,0.0000020292,0.0000020300,0.0000020304, +0.0000020306,0.0000020306,0.0000020308,0.0000020312,0.0000020318, +0.0000020328,0.0000020341,0.0000020358,0.0000020379,0.0000020400, +0.0000020418,0.0000020432,0.0000020445,0.0000020457,0.0000020467, +0.0000020475,0.0000020478,0.0000020479,0.0000020475,0.0000020470, +0.0000020465,0.0000020461,0.0000020461,0.0000020459,0.0000020456, +0.0000020442,0.0000020430,0.0000020406,0.0000020377,0.0000020341, +0.0000020298,0.0000020251,0.0000020201,0.0000020152,0.0000020102, +0.0000020054,0.0000020010,0.0000019972,0.0000019961,0.0000019949, +0.0000019953,0.0000019976,0.0000020017,0.0000020078,0.0000020151, +0.0000020224,0.0000020287,0.0000020329,0.0000020354,0.0000020366, +0.0000020374,0.0000020381,0.0000020395,0.0000020418,0.0000020445, +0.0000020469,0.0000020481,0.0000020479,0.0000020464,0.0000020445, +0.0000020412,0.0000020371,0.0000020321,0.0000020273,0.0000020235, +0.0000020211,0.0000020198,0.0000020193,0.0000020194,0.0000020196, +0.0000020195,0.0000020191,0.0000020180,0.0000020161,0.0000020129, +0.0000020090,0.0000020054,0.0000020020,0.0000019984,0.0000019947, +0.0000019909,0.0000019865,0.0000019819,0.0000019769,0.0000019717, +0.0000019672,0.0000019643,0.0000019637,0.0000019647,0.0000019671, +0.0000019704,0.0000019733,0.0000019756,0.0000019762,0.0000019745, +0.0000019699,0.0000019640,0.0000019592,0.0000019566,0.0000019558, +0.0000019562,0.0000019571,0.0000019585,0.0000019600,0.0000019607, +0.0000019586,0.0000019543,0.0000019496,0.0000019461,0.0000019442, +0.0000019438,0.0000019450,0.0000019464,0.0000019469,0.0000019470, +0.0000019479,0.0000019501,0.0000019527,0.0000019556,0.0000019592, +0.0000019626,0.0000019654,0.0000019687,0.0000019726,0.0000019762, +0.0000019781,0.0000019779,0.0000019754,0.0000019718,0.0000019688, +0.0000019669,0.0000019659,0.0000019649,0.0000019637,0.0000019623, +0.0000019600,0.0000019560,0.0000019519,0.0000019494,0.0000019475, +0.0000019440,0.0000019381,0.0000019308,0.0000019246,0.0000019219, +0.0000019210,0.0000019248,0.0000019323,0.0000019428,0.0000019545, +0.0000019652,0.0000019731,0.0000019776,0.0000019790,0.0000019787, +0.0000019780,0.0000019785,0.0000019809,0.0000019857,0.0000019922, +0.0000019997,0.0000020072,0.0000020139,0.0000020193,0.0000020234, +0.0000020263,0.0000020290,0.0000020314,0.0000020332,0.0000020340, +0.0000020342,0.0000020338,0.0000020331,0.0000020320,0.0000020308, +0.0000020297,0.0000020287,0.0000020281,0.0000020279,0.0000020276, +0.0000020265,0.0000020244,0.0000020214,0.0000020178,0.0000020140, +0.0000020101,0.0000020060,0.0000020007,0.0000019938,0.0000019850, +0.0000019755,0.0000019661,0.0000019580,0.0000019518,0.0000019470, +0.0000019441,0.0000019427,0.0000019426,0.0000019431,0.0000019432, +0.0000019422,0.0000019407,0.0000019400,0.0000019404,0.0000019418, +0.0000019438,0.0000019457,0.0000019466,0.0000019459,0.0000019440, +0.0000019411,0.0000019369,0.0000019319,0.0000019264,0.0000019206, +0.0000019155,0.0000019114,0.0000019072,0.0000019030,0.0000018999, +0.0000018970,0.0000018946,0.0000018935,0.0000018930,0.0000018927, +0.0000018922,0.0000018916,0.0000018904,0.0000018885,0.0000018865, +0.0000018853,0.0000018856,0.0000018874,0.0000018897,0.0000018929, +0.0000018965,0.0000019001,0.0000019037,0.0000019063,0.0000019075, +0.0000019072,0.0000019057,0.0000019036,0.0000019017,0.0000019004, +0.0000018993,0.0000018983,0.0000018975,0.0000018967,0.0000018957, +0.0000018950,0.0000018942,0.0000018929,0.0000018904,0.0000018866, +0.0000018814,0.0000018753,0.0000018689,0.0000018629,0.0000018573, +0.0000018519,0.0000018468,0.0000018426,0.0000018389,0.0000018359, +0.0000018337,0.0000018323,0.0000018314,0.0000018305,0.0000018296, +0.0000018287,0.0000018278,0.0000018268,0.0000018265,0.0000018269, +0.0000018285,0.0000018305,0.0000018324,0.0000018341,0.0000018353, +0.0000018363,0.0000018370,0.0000018373,0.0000018371,0.0000018368, +0.0000018365,0.0000018358,0.0000018345,0.0000018329,0.0000018315, +0.0000018303,0.0000018300,0.0000018300,0.0000018301,0.0000018304, +0.0000018311,0.0000018322,0.0000018331,0.0000018341,0.0000018353, +0.0000018364,0.0000018376,0.0000018390,0.0000018406,0.0000018422, +0.0000018436,0.0000018449,0.0000018463,0.0000018474,0.0000018482, +0.0000018486,0.0000018489,0.0000018492,0.0000018497,0.0000018501, +0.0000018502,0.0000018502,0.0000018504,0.0000018507,0.0000018514, +0.0000018522,0.0000018528,0.0000018531,0.0000018533,0.0000018534, +0.0000018536,0.0000018536,0.0000018534,0.0000018532,0.0000018534, +0.0000018539,0.0000018547,0.0000018555,0.0000018562,0.0000018566, +0.0000018569,0.0000018574,0.0000018582,0.0000018597,0.0000018619, +0.0000018649,0.0000018684,0.0000018723,0.0000018765,0.0000018813, +0.0000018868,0.0000018931,0.0000018993,0.0000019046,0.0000019089, +0.0000019122,0.0000019150,0.0000019172,0.0000019186,0.0000019187, +0.0000019176,0.0000019156,0.0000019133,0.0000019113,0.0000019099, +0.0000019091,0.0000019087,0.0000019086,0.0000019089,0.0000019102, +0.0000019124,0.0000019145,0.0000019166,0.0000019187,0.0000019210, +0.0000019238,0.0000019272,0.0000019299,0.0000019308,0.0000019299, +0.0000019280,0.0000019265,0.0000019270,0.0000019288,0.0000019291, +0.0000019275,0.0000019230,0.0000019181,0.0000019161,0.0000019182, +0.0000019228,0.0000019277,0.0000019316,0.0000019349,0.0000019382, +0.0000019408,0.0000019422,0.0000019417,0.0000019387,0.0000019342, +0.0000019313,0.0000019299,0.0000019318,0.0000019360,0.0000019420, +0.0000019493,0.0000019572,0.0000019662,0.0000019769,0.0000019890, +0.0000020013,0.0000020120,0.0000020192,0.0000020223,0.0000020230, +0.0000020234,0.0000020243,0.0000020256,0.0000020265,0.0000020266, +0.0000020255,0.0000020238,0.0000020220,0.0000020211,0.0000020211, +0.0000020225,0.0000020248,0.0000020282,0.0000020322,0.0000020364, +0.0000020404,0.0000020440,0.0000020466,0.0000020483,0.0000020492, +0.0000020493,0.0000020492,0.0000020488,0.0000020479,0.0000020470, +0.0000020459,0.0000020451,0.0000020442,0.0000020431,0.0000020422, +0.0000020413,0.0000020406,0.0000020401,0.0000020398,0.0000020397, +0.0000020398,0.0000020401,0.0000020406,0.0000020413,0.0000020422, +0.0000020432,0.0000020440,0.0000020445,0.0000020447,0.0000020445, +0.0000020437,0.0000020419,0.0000020392,0.0000020363,0.0000020344, +0.0000020340,0.0000020348,0.0000020363,0.0000020378,0.0000020383, +0.0000020379,0.0000020365,0.0000020344,0.0000020324,0.0000020307, +0.0000020295,0.0000020287,0.0000020284,0.0000020285,0.0000020290, +0.0000020292,0.0000020291,0.0000020289,0.0000020284,0.0000020274, +0.0000020262,0.0000020248,0.0000020228,0.0000020203,0.0000020171, +0.0000020133,0.0000020091,0.0000020043,0.0000019994,0.0000019945, +0.0000019900,0.0000019863,0.0000019833,0.0000019806,0.0000019780, +0.0000019755,0.0000019737,0.0000019723,0.0000019710,0.0000019696, +0.0000019673,0.0000019643,0.0000019596,0.0000019537,0.0000019476, +0.0000019420,0.0000019380,0.0000019349,0.0000019321,0.0000019289, +0.0000019266,0.0000019251,0.0000019236,0.0000019216,0.0000019193, +0.0000019177,0.0000019176,0.0000019185,0.0000019196,0.0000019199, +0.0000019191,0.0000019172,0.0000019158,0.0000019158,0.0000019179, +0.0000019218,0.0000019262,0.0000019306,0.0000019352,0.0000019400, +0.0000019317,0.0000019356,0.0000019397,0.0000019442,0.0000019484, +0.0000019517,0.0000019542,0.0000019554,0.0000019556,0.0000019554, +0.0000019555,0.0000019567,0.0000019590,0.0000019619,0.0000019649, +0.0000019664,0.0000019654,0.0000019621,0.0000019586,0.0000019572, +0.0000019573,0.0000019572,0.0000019562,0.0000019547,0.0000019532, +0.0000019513,0.0000019489,0.0000019460,0.0000019437,0.0000019427, +0.0000019427,0.0000019438,0.0000019456,0.0000019479,0.0000019498, +0.0000019510,0.0000019515,0.0000019512,0.0000019506,0.0000019497, +0.0000019488,0.0000019480,0.0000019472,0.0000019466,0.0000019458, +0.0000019454,0.0000019455,0.0000019454,0.0000019456,0.0000019457, +0.0000019458,0.0000019467,0.0000019473,0.0000019479,0.0000019486, +0.0000019492,0.0000019495,0.0000019493,0.0000019489,0.0000019482, +0.0000019478,0.0000019476,0.0000019478,0.0000019483,0.0000019486, +0.0000019490,0.0000019497,0.0000019507,0.0000019521,0.0000019531, +0.0000019540,0.0000019546,0.0000019548,0.0000019544,0.0000019537, +0.0000019522,0.0000019500,0.0000019474,0.0000019441,0.0000019404, +0.0000019365,0.0000019333,0.0000019305,0.0000019285,0.0000019276, +0.0000019283,0.0000019289,0.0000019292,0.0000019292,0.0000019293, +0.0000019296,0.0000019304,0.0000019314,0.0000019324,0.0000019335, +0.0000019345,0.0000019353,0.0000019362,0.0000019368,0.0000019374, +0.0000019379,0.0000019380,0.0000019376,0.0000019371,0.0000019365, +0.0000019351,0.0000019336,0.0000019328,0.0000019320,0.0000019310, +0.0000019298,0.0000019281,0.0000019259,0.0000019234,0.0000019209, +0.0000019185,0.0000019163,0.0000019149,0.0000019141,0.0000019142, +0.0000019161,0.0000019191,0.0000019228,0.0000019279,0.0000019336, +0.0000019391,0.0000019446,0.0000019506,0.0000019568,0.0000019623, +0.0000019674,0.0000019718,0.0000019749,0.0000019767,0.0000019786, +0.0000019823,0.0000019877,0.0000019934,0.0000019997,0.0000020056, +0.0000020097,0.0000020124,0.0000020142,0.0000020152,0.0000020154, +0.0000020155,0.0000020155,0.0000020153,0.0000020148,0.0000020145, +0.0000020146,0.0000020146,0.0000020141,0.0000020138,0.0000020133, +0.0000020130,0.0000020131,0.0000020138,0.0000020151,0.0000020174, +0.0000020209,0.0000020251,0.0000020295,0.0000020333,0.0000020364, +0.0000020387,0.0000020406,0.0000020421,0.0000020430,0.0000020434, +0.0000020434,0.0000020428,0.0000020416,0.0000020404,0.0000020395, +0.0000020385,0.0000020377,0.0000020376,0.0000020385,0.0000020396, +0.0000020408,0.0000020421,0.0000020441,0.0000020465,0.0000020489, +0.0000020512,0.0000020533,0.0000020553,0.0000020568,0.0000020580, +0.0000020583,0.0000020581,0.0000020575,0.0000020569,0.0000020570, +0.0000020572,0.0000020573,0.0000020574,0.0000020579,0.0000020583, +0.0000020583,0.0000020584,0.0000020587,0.0000020593,0.0000020605, +0.0000020622,0.0000020642,0.0000020663,0.0000020682,0.0000020696, +0.0000020704,0.0000020708,0.0000020710,0.0000020711,0.0000020711, +0.0000020711,0.0000020714,0.0000020720,0.0000020728,0.0000020739, +0.0000020753,0.0000020771,0.0000020791,0.0000020817,0.0000020848, +0.0000020881,0.0000020922,0.0000020969,0.0000021017,0.0000021065, +0.0000021113,0.0000021161,0.0000021206,0.0000021243,0.0000021270, +0.0000021286,0.0000021293,0.0000021295,0.0000021295,0.0000021289, +0.0000021278,0.0000021260,0.0000021231,0.0000021181,0.0000021109, +0.0000021037,0.0000020984,0.0000020951,0.0000020926,0.0000020884, +0.0000020824,0.0000020784,0.0000020783,0.0000020810,0.0000020849, +0.0000020895,0.0000020953,0.0000021016,0.0000021071,0.0000021115, +0.0000021138,0.0000021143,0.0000021137,0.0000021109,0.0000021071, +0.0000021037,0.0000021002,0.0000020963,0.0000020937,0.0000020933, +0.0000020957,0.0000020995,0.0000021025,0.0000021038,0.0000021047, +0.0000021060,0.0000021082,0.0000021121,0.0000021174,0.0000021234, +0.0000021283,0.0000021308,0.0000021311,0.0000021289,0.0000021251, +0.0000021207,0.0000021159,0.0000021108,0.0000021054,0.0000021007, +0.0000020970,0.0000020922,0.0000020867,0.0000020825,0.0000020796, +0.0000020775,0.0000020772,0.0000020811,0.0000020876,0.0000020925, +0.0000020943,0.0000020940,0.0000020920,0.0000020891,0.0000020860, +0.0000020835,0.0000020817,0.0000020800,0.0000020770,0.0000020722, +0.0000020659,0.0000020589,0.0000020520,0.0000020464,0.0000020427, +0.0000020405,0.0000020390,0.0000020378,0.0000020374,0.0000020380, +0.0000020386,0.0000020385,0.0000020376,0.0000020369,0.0000020363, +0.0000020363,0.0000020372,0.0000020380,0.0000020373,0.0000020346, +0.0000020291,0.0000020215,0.0000020145,0.0000020112,0.0000020104, +0.0000020126,0.0000020188,0.0000020247,0.0000020286,0.0000020354, +0.0000020444,0.0000020496,0.0000020500,0.0000020437,0.0000020239, +0.0000020035,0.0000019975,0.0000020078,0.0000020297,0.0000020400, +0.0000020400,0.0000020405,0.0000020505,0.0000020688,0.0000020777, +0.0000020763,0.0000020780,0.0000020882,0.0000020972,0.0000021012, +0.0000021076,0.0000021238,0.0000021441,0.0000021565,0.0000021635, +0.0000021679,0.0000021715,0.0000021733,0.0000021716,0.0000021695, +0.0000021698,0.0000021712,0.0000021725,0.0000021747,0.0000021770, +0.0000021774,0.0000021774,0.0000021782,0.0000021789,0.0000021795, +0.0000021818,0.0000021868,0.0000021912,0.0000021916,0.0000021891, +0.0000021858,0.0000021823,0.0000021786,0.0000021753,0.0000021729, +0.0000021711,0.0000021695,0.0000021675,0.0000021646,0.0000021607, +0.0000021565,0.0000021532,0.0000021519,0.0000021530,0.0000021554, +0.0000021572,0.0000021575,0.0000021578,0.0000021583,0.0000021583, +0.0000021575,0.0000021560,0.0000021539,0.0000021504,0.0000021453, +0.0000021390,0.0000021356,0.0000021357,0.0000021380,0.0000021421, +0.0000021461,0.0000021494,0.0000021517,0.0000021532,0.0000021536, +0.0000021526,0.0000021497,0.0000021454,0.0000021399,0.0000021333, +0.0000021259,0.0000021182,0.0000021099,0.0000021013,0.0000020934, +0.0000020868,0.0000020810,0.0000020757,0.0000020724,0.0000020720, +0.0000020735,0.0000020760,0.0000020784,0.0000020801,0.0000020804, +0.0000020798,0.0000020784,0.0000020767,0.0000020748,0.0000020730, +0.0000020716,0.0000020701,0.0000020678,0.0000020655,0.0000020648, +0.0000020644,0.0000020637,0.0000020628,0.0000020614,0.0000020590, +0.0000020567,0.0000020551,0.0000020541,0.0000020538,0.0000020541, +0.0000020544,0.0000020551,0.0000020559,0.0000020569,0.0000020577, +0.0000020587,0.0000020596,0.0000020603,0.0000020608,0.0000020612, +0.0000020615,0.0000020621,0.0000020631,0.0000020640,0.0000020648, +0.0000020653,0.0000020659,0.0000020656,0.0000020651,0.0000020642, +0.0000020628,0.0000020620,0.0000020622,0.0000020622,0.0000020621, +0.0000020622,0.0000020630,0.0000020639,0.0000020645,0.0000020651, +0.0000020652,0.0000020663,0.0000020677,0.0000020688,0.0000020693, +0.0000020690,0.0000020680,0.0000020672,0.0000020663,0.0000020665, +0.0000020669,0.0000020682,0.0000020709,0.0000020745,0.0000020777, +0.0000020801,0.0000020812,0.0000020812,0.0000020805,0.0000020808, +0.0000020823,0.0000020836,0.0000020845,0.0000020849,0.0000020855, +0.0000020859,0.0000020857,0.0000020849,0.0000020836,0.0000020830, +0.0000020832,0.0000020838,0.0000020845,0.0000020851,0.0000020854, +0.0000020853,0.0000020848,0.0000020843,0.0000020837,0.0000020829, +0.0000020817,0.0000020803,0.0000020790,0.0000020777,0.0000020764, +0.0000020757,0.0000020760,0.0000020771,0.0000020786,0.0000020801, +0.0000020821,0.0000020847,0.0000020871,0.0000020896,0.0000020920, +0.0000020938,0.0000020950,0.0000020961,0.0000020964,0.0000020957, +0.0000020940,0.0000020917,0.0000020890,0.0000020865,0.0000020844, +0.0000020826,0.0000020810,0.0000020804,0.0000020801,0.0000020797, +0.0000020797,0.0000020800,0.0000020810,0.0000020825,0.0000020835, +0.0000020850,0.0000020869,0.0000020892,0.0000020918,0.0000020948, +0.0000020984,0.0000021024,0.0000021062,0.0000021096,0.0000021122, +0.0000021139,0.0000021149,0.0000021155,0.0000021159,0.0000021158, +0.0000021154,0.0000021155,0.0000021157,0.0000021156,0.0000021154, +0.0000021149,0.0000021142,0.0000021133,0.0000021122,0.0000021111, +0.0000021100,0.0000021091,0.0000021088,0.0000021092,0.0000021101, +0.0000021111,0.0000021125,0.0000021137,0.0000021149,0.0000021163, +0.0000021173,0.0000021185,0.0000021190,0.0000021190,0.0000021187, +0.0000021180,0.0000021170,0.0000021165,0.0000021157,0.0000021154, +0.0000021160,0.0000021177,0.0000021200,0.0000021225,0.0000021253, +0.0000021286,0.0000021322,0.0000021360,0.0000021402,0.0000021446, +0.0000021491,0.0000021538,0.0000021586,0.0000021631,0.0000021672, +0.0000021711,0.0000021756,0.0000021802,0.0000021846,0.0000021890, +0.0000021935,0.0000021977,0.0000022010,0.0000022034,0.0000022054, +0.0000022074,0.0000022093,0.0000022113,0.0000022130,0.0000022145, +0.0000022158,0.0000022161,0.0000022161,0.0000022160,0.0000022159, +0.0000022155,0.0000022144,0.0000022130,0.0000022110,0.0000022089, +0.0000022067,0.0000022045,0.0000022023,0.0000021999,0.0000021975, +0.0000021950,0.0000021925,0.0000021898,0.0000021869,0.0000021837, +0.0000021803,0.0000021770,0.0000021739,0.0000021710,0.0000021689, +0.0000021678,0.0000021678,0.0000021688,0.0000021700,0.0000021717, +0.0000021729,0.0000021734,0.0000021736,0.0000021736,0.0000021734, +0.0000021729,0.0000021717,0.0000021698,0.0000021676,0.0000021654, +0.0000021631,0.0000021608,0.0000021586,0.0000021564,0.0000021537, +0.0000021507,0.0000021479,0.0000021457,0.0000021446,0.0000021443, +0.0000021444,0.0000021445,0.0000021445,0.0000021442,0.0000021435, +0.0000021422,0.0000021400,0.0000021368,0.0000021331,0.0000021298, +0.0000021272,0.0000021256,0.0000021245,0.0000021240,0.0000021244, +0.0000021251,0.0000021256,0.0000021257,0.0000021259,0.0000021260, +0.0000021257,0.0000021247,0.0000021233,0.0000021220,0.0000021209, +0.0000021205,0.0000021200,0.0000021191,0.0000021178,0.0000021162, +0.0000021140,0.0000021116,0.0000021094,0.0000021076,0.0000021063, +0.0000021052,0.0000021044,0.0000021036,0.0000021033,0.0000021030, +0.0000021009,0.0000021005,0.0000020981,0.0000020949,0.0000020916, +0.0000020888,0.0000020863,0.0000020842,0.0000020821,0.0000020794, +0.0000020761,0.0000020726,0.0000020694,0.0000020663,0.0000020630, +0.0000020595,0.0000020558,0.0000020523,0.0000020495,0.0000020472, +0.0000020451,0.0000020434,0.0000020418,0.0000020400,0.0000020384, +0.0000020375,0.0000020373,0.0000020374,0.0000020377,0.0000020385, +0.0000020397,0.0000020408,0.0000020410,0.0000020409,0.0000020406, +0.0000020388,0.0000020367,0.0000020347,0.0000020329,0.0000020319, +0.0000020317,0.0000020321,0.0000020329,0.0000020339,0.0000020349, +0.0000020356,0.0000020364,0.0000020369,0.0000020360,0.0000020337, +0.0000020304,0.0000020262,0.0000020217,0.0000020175,0.0000020139, +0.0000020116,0.0000020100,0.0000020081,0.0000020055,0.0000020027, +0.0000020005,0.0000019991,0.0000019985,0.0000019980,0.0000019971, +0.0000019959,0.0000019945,0.0000019942,0.0000019933,0.0000019936, +0.0000019953,0.0000019974,0.0000019990,0.0000019984,0.0000019940, +0.0000019864,0.0000019755,0.0000019639,0.0000019538,0.0000019469, +0.0000019457,0.0000019449,0.0000019440,0.0000019409,0.0000019355, +0.0000019302,0.0000019275,0.0000019280,0.0000019310,0.0000019360, +0.0000019422,0.0000019483,0.0000019533,0.0000019564,0.0000019576, +0.0000019569,0.0000019555,0.0000019538,0.0000019517,0.0000019486, +0.0000019452,0.0000019443,0.0000019474,0.0000019539,0.0000019590, +0.0000019604,0.0000019600,0.0000019604,0.0000019631,0.0000019682, +0.0000019746,0.0000019800,0.0000019828,0.0000019838,0.0000019858, +0.0000019902,0.0000019947,0.0000019974,0.0000019980,0.0000019978, +0.0000019974,0.0000019966,0.0000019956,0.0000019945,0.0000019938, +0.0000019934,0.0000019928,0.0000019922,0.0000019924,0.0000019935, +0.0000019950,0.0000019964,0.0000019976,0.0000019989,0.0000020005, +0.0000020021,0.0000020037,0.0000020055,0.0000020076,0.0000020102, +0.0000020129,0.0000020156,0.0000020180,0.0000020200,0.0000020218, +0.0000020237,0.0000020255,0.0000020272,0.0000020282,0.0000020291, +0.0000020300,0.0000020310,0.0000020317,0.0000020321,0.0000020324, +0.0000020328,0.0000020337,0.0000020356,0.0000020380,0.0000020403, +0.0000020425,0.0000020450,0.0000020479,0.0000020509,0.0000020538, +0.0000020558,0.0000020571,0.0000020585,0.0000020597,0.0000020602, +0.0000020604,0.0000020606,0.0000020608,0.0000020611,0.0000020615, +0.0000020617,0.0000020618,0.0000020615,0.0000020609,0.0000020605, +0.0000020608,0.0000020618,0.0000020632,0.0000020647,0.0000020663, +0.0000020684,0.0000020711,0.0000020740,0.0000020755,0.0000020753, +0.0000020752,0.0000020794,0.0000020892,0.0000020995,0.0000021051, +0.0000021069,0.0000021084,0.0000021108,0.0000021137,0.0000021154, +0.0000021145,0.0000021135,0.0000021131,0.0000021106,0.0000021068, +0.0000021023,0.0000020967,0.0000020911,0.0000020861,0.0000020835, +0.0000020828,0.0000020801,0.0000020766,0.0000020759,0.0000020774, +0.0000020794,0.0000020807,0.0000020818,0.0000020824,0.0000020825, +0.0000020819,0.0000020803,0.0000020777,0.0000020741,0.0000020694, +0.0000020642,0.0000020589,0.0000020544,0.0000020508,0.0000020475, +0.0000020441,0.0000020404,0.0000020372,0.0000020349,0.0000020333, +0.0000020320,0.0000020310,0.0000020300,0.0000020289,0.0000020276, +0.0000020263,0.0000020250,0.0000020238,0.0000020229,0.0000020223, +0.0000020221,0.0000020220,0.0000020220,0.0000020222,0.0000020224, +0.0000020227,0.0000020230,0.0000020235,0.0000020243,0.0000020250, +0.0000020257,0.0000020266,0.0000020277,0.0000020288,0.0000020298, +0.0000020305,0.0000020311,0.0000020312,0.0000020314,0.0000020319, +0.0000020328,0.0000020335,0.0000020341,0.0000020350,0.0000020363, +0.0000020376,0.0000020390,0.0000020402,0.0000020410,0.0000020417, +0.0000020424,0.0000020429,0.0000020433,0.0000020435,0.0000020435, +0.0000020430,0.0000020423,0.0000020416,0.0000020413,0.0000020413, +0.0000020412,0.0000020410,0.0000020408,0.0000020402,0.0000020395, +0.0000020379,0.0000020359,0.0000020334,0.0000020298,0.0000020253, +0.0000020207,0.0000020158,0.0000020106,0.0000020054,0.0000020007, +0.0000019973,0.0000019945,0.0000019942,0.0000019945,0.0000019963, +0.0000020002,0.0000020062,0.0000020136,0.0000020210,0.0000020270, +0.0000020312,0.0000020337,0.0000020346,0.0000020346,0.0000020346, +0.0000020351,0.0000020367,0.0000020386,0.0000020406,0.0000020421, +0.0000020427,0.0000020418,0.0000020397,0.0000020359,0.0000020316, +0.0000020267,0.0000020228,0.0000020199,0.0000020177,0.0000020161, +0.0000020148,0.0000020137,0.0000020123,0.0000020109,0.0000020096, +0.0000020074,0.0000020042,0.0000020006,0.0000019977,0.0000019954, +0.0000019934,0.0000019913,0.0000019888,0.0000019860,0.0000019826, +0.0000019787,0.0000019744,0.0000019702,0.0000019674,0.0000019666, +0.0000019675,0.0000019695,0.0000019722,0.0000019753,0.0000019774, +0.0000019789,0.0000019781,0.0000019742,0.0000019681,0.0000019623, +0.0000019583,0.0000019566,0.0000019569,0.0000019578,0.0000019593, +0.0000019611,0.0000019619,0.0000019601,0.0000019555,0.0000019498, +0.0000019451,0.0000019424,0.0000019414,0.0000019426,0.0000019442, +0.0000019450,0.0000019450,0.0000019455,0.0000019469,0.0000019489, +0.0000019511,0.0000019538,0.0000019567,0.0000019596,0.0000019629, +0.0000019667,0.0000019704,0.0000019725,0.0000019726,0.0000019704, +0.0000019674,0.0000019646,0.0000019628,0.0000019612,0.0000019592, +0.0000019576,0.0000019564,0.0000019545,0.0000019508,0.0000019468, +0.0000019447,0.0000019440,0.0000019422,0.0000019379,0.0000019308, +0.0000019242,0.0000019202,0.0000019192,0.0000019199,0.0000019245, +0.0000019332,0.0000019445,0.0000019563,0.0000019664,0.0000019732, +0.0000019766,0.0000019773,0.0000019765,0.0000019759,0.0000019766, +0.0000019792,0.0000019834,0.0000019890,0.0000019952,0.0000020013, +0.0000020067,0.0000020111,0.0000020150,0.0000020190,0.0000020224, +0.0000020249,0.0000020265,0.0000020271,0.0000020271,0.0000020264, +0.0000020254,0.0000020242,0.0000020229,0.0000020219,0.0000020212, +0.0000020207,0.0000020197,0.0000020179,0.0000020153,0.0000020121, +0.0000020090,0.0000020062,0.0000020029,0.0000019982,0.0000019916, +0.0000019833,0.0000019742,0.0000019654,0.0000019577,0.0000019512, +0.0000019459,0.0000019426,0.0000019408,0.0000019402,0.0000019408, +0.0000019416,0.0000019412,0.0000019394,0.0000019371,0.0000019353, +0.0000019340,0.0000019343,0.0000019351,0.0000019356,0.0000019354, +0.0000019341,0.0000019317,0.0000019287,0.0000019249,0.0000019208, +0.0000019165,0.0000019126,0.0000019089,0.0000019045,0.0000018995, +0.0000018952,0.0000018906,0.0000018865,0.0000018841,0.0000018833, +0.0000018828,0.0000018819,0.0000018809,0.0000018796,0.0000018777, +0.0000018755,0.0000018744,0.0000018747,0.0000018757,0.0000018771, +0.0000018796,0.0000018830,0.0000018868,0.0000018907,0.0000018944, +0.0000018975,0.0000018992,0.0000018993,0.0000018980,0.0000018959, +0.0000018938,0.0000018920,0.0000018905,0.0000018898,0.0000018897, +0.0000018893,0.0000018888,0.0000018880,0.0000018864,0.0000018836, +0.0000018794,0.0000018741,0.0000018680,0.0000018616,0.0000018558, +0.0000018503,0.0000018449,0.0000018398,0.0000018354,0.0000018320, +0.0000018296,0.0000018280,0.0000018266,0.0000018252,0.0000018243, +0.0000018234,0.0000018227,0.0000018223,0.0000018224,0.0000018228, +0.0000018241,0.0000018261,0.0000018285,0.0000018308,0.0000018326, +0.0000018340,0.0000018351,0.0000018358,0.0000018361,0.0000018361, +0.0000018358,0.0000018354,0.0000018348,0.0000018338,0.0000018325, +0.0000018312,0.0000018302,0.0000018298,0.0000018297,0.0000018297, +0.0000018297,0.0000018299,0.0000018307,0.0000018317,0.0000018331, +0.0000018346,0.0000018361,0.0000018378,0.0000018397,0.0000018415, +0.0000018430,0.0000018444,0.0000018457,0.0000018468,0.0000018478, +0.0000018485,0.0000018488,0.0000018488,0.0000018488,0.0000018487, +0.0000018484,0.0000018477,0.0000018471,0.0000018466,0.0000018464, +0.0000018464,0.0000018467,0.0000018472,0.0000018479,0.0000018484, +0.0000018489,0.0000018495,0.0000018499,0.0000018501,0.0000018500, +0.0000018500,0.0000018501,0.0000018506,0.0000018515,0.0000018527, +0.0000018539,0.0000018548,0.0000018555,0.0000018563,0.0000018569, +0.0000018574,0.0000018585,0.0000018599,0.0000018616,0.0000018637, +0.0000018666,0.0000018706,0.0000018759,0.0000018824,0.0000018893, +0.0000018960,0.0000019024,0.0000019077,0.0000019118,0.0000019150, +0.0000019168,0.0000019173,0.0000019166,0.0000019147,0.0000019122, +0.0000019093,0.0000019071,0.0000019056,0.0000019046,0.0000019037, +0.0000019037,0.0000019050,0.0000019077,0.0000019108,0.0000019139, +0.0000019167,0.0000019189,0.0000019214,0.0000019243,0.0000019270, +0.0000019280,0.0000019272,0.0000019254,0.0000019240,0.0000019246, +0.0000019263,0.0000019269,0.0000019259,0.0000019220,0.0000019177, +0.0000019160,0.0000019181,0.0000019221,0.0000019265,0.0000019303, +0.0000019339,0.0000019372,0.0000019397,0.0000019408,0.0000019400, +0.0000019369,0.0000019325,0.0000019289,0.0000019276,0.0000019288, +0.0000019325,0.0000019378,0.0000019443,0.0000019517,0.0000019603, +0.0000019704,0.0000019819,0.0000019942,0.0000020060,0.0000020156, +0.0000020213,0.0000020231,0.0000020232,0.0000020234,0.0000020239, +0.0000020243,0.0000020240,0.0000020230,0.0000020217,0.0000020206, +0.0000020200,0.0000020197,0.0000020202,0.0000020216,0.0000020237, +0.0000020265,0.0000020297,0.0000020333,0.0000020367,0.0000020398, +0.0000020422,0.0000020436,0.0000020443,0.0000020446,0.0000020447, +0.0000020446,0.0000020444,0.0000020442,0.0000020439,0.0000020433, +0.0000020425,0.0000020419,0.0000020417,0.0000020417,0.0000020418, +0.0000020422,0.0000020427,0.0000020433,0.0000020438,0.0000020443, +0.0000020447,0.0000020450,0.0000020451,0.0000020451,0.0000020448, +0.0000020441,0.0000020423,0.0000020400,0.0000020378,0.0000020362, +0.0000020356,0.0000020360,0.0000020370,0.0000020378,0.0000020380, +0.0000020372,0.0000020354,0.0000020331,0.0000020310,0.0000020295, +0.0000020284,0.0000020275,0.0000020272,0.0000020272,0.0000020277, +0.0000020286,0.0000020293,0.0000020297,0.0000020300,0.0000020299, +0.0000020291,0.0000020279,0.0000020264,0.0000020244,0.0000020220, +0.0000020190,0.0000020154,0.0000020112,0.0000020063,0.0000020009, +0.0000019953,0.0000019899,0.0000019853,0.0000019818,0.0000019791, +0.0000019764,0.0000019737,0.0000019714,0.0000019693,0.0000019679, +0.0000019670,0.0000019656,0.0000019637,0.0000019610,0.0000019569, +0.0000019516,0.0000019461,0.0000019417,0.0000019389,0.0000019363, +0.0000019339,0.0000019314,0.0000019288,0.0000019263,0.0000019240, +0.0000019214,0.0000019188,0.0000019170,0.0000019171,0.0000019186, +0.0000019201,0.0000019202,0.0000019190,0.0000019168,0.0000019149, +0.0000019147,0.0000019165,0.0000019200,0.0000019239,0.0000019279, +0.0000019218,0.0000019252,0.0000019283,0.0000019315,0.0000019356, +0.0000019400,0.0000019442,0.0000019479,0.0000019509,0.0000019527, +0.0000019536,0.0000019543,0.0000019555,0.0000019574,0.0000019598, +0.0000019626,0.0000019651,0.0000019662,0.0000019647,0.0000019610, +0.0000019571,0.0000019558,0.0000019555,0.0000019545,0.0000019528, +0.0000019511,0.0000019501,0.0000019492,0.0000019482,0.0000019470, +0.0000019459,0.0000019456,0.0000019465,0.0000019488,0.0000019513, +0.0000019533,0.0000019547,0.0000019553,0.0000019547,0.0000019533, +0.0000019514,0.0000019491,0.0000019470,0.0000019454,0.0000019439, +0.0000019429,0.0000019424,0.0000019423,0.0000019425,0.0000019429, +0.0000019436,0.0000019447,0.0000019460,0.0000019474,0.0000019487, +0.0000019499,0.0000019508,0.0000019513,0.0000019515,0.0000019514, +0.0000019514,0.0000019514,0.0000019519,0.0000019523,0.0000019523, +0.0000019519,0.0000019517,0.0000019517,0.0000019520,0.0000019521, +0.0000019519,0.0000019516,0.0000019510,0.0000019498,0.0000019484, +0.0000019468,0.0000019448,0.0000019423,0.0000019391,0.0000019355, +0.0000019320,0.0000019293,0.0000019271,0.0000019255,0.0000019254, +0.0000019264,0.0000019273,0.0000019278,0.0000019284,0.0000019290, +0.0000019298,0.0000019311,0.0000019326,0.0000019339,0.0000019350, +0.0000019359,0.0000019365,0.0000019365,0.0000019361,0.0000019356, +0.0000019347,0.0000019341,0.0000019335,0.0000019330,0.0000019319, +0.0000019302,0.0000019281,0.0000019264,0.0000019246,0.0000019230, +0.0000019220,0.0000019218,0.0000019217,0.0000019209,0.0000019195, +0.0000019179,0.0000019165,0.0000019155,0.0000019146,0.0000019144, +0.0000019152,0.0000019163,0.0000019185,0.0000019220,0.0000019267, +0.0000019319,0.0000019376,0.0000019438,0.0000019498,0.0000019556, +0.0000019619,0.0000019680,0.0000019725,0.0000019748,0.0000019757, +0.0000019769,0.0000019792,0.0000019824,0.0000019870,0.0000019926, +0.0000019975,0.0000020013,0.0000020044,0.0000020066,0.0000020082, +0.0000020092,0.0000020097,0.0000020099,0.0000020099,0.0000020100, +0.0000020105,0.0000020110,0.0000020109,0.0000020108,0.0000020105, +0.0000020105,0.0000020106,0.0000020110,0.0000020123,0.0000020141, +0.0000020168,0.0000020203,0.0000020240,0.0000020275,0.0000020303, +0.0000020328,0.0000020349,0.0000020365,0.0000020377,0.0000020384, +0.0000020387,0.0000020386,0.0000020379,0.0000020372,0.0000020368, +0.0000020362,0.0000020356,0.0000020354,0.0000020360,0.0000020373, +0.0000020390,0.0000020407,0.0000020430,0.0000020454,0.0000020477, +0.0000020500,0.0000020521,0.0000020542,0.0000020562,0.0000020578, +0.0000020585,0.0000020589,0.0000020586,0.0000020585,0.0000020586, +0.0000020587,0.0000020587,0.0000020587,0.0000020590,0.0000020593, +0.0000020591,0.0000020588,0.0000020584,0.0000020583,0.0000020588, +0.0000020598,0.0000020610,0.0000020626,0.0000020646,0.0000020665, +0.0000020681,0.0000020692,0.0000020700,0.0000020705,0.0000020707, +0.0000020708,0.0000020711,0.0000020717,0.0000020725,0.0000020735, +0.0000020746,0.0000020759,0.0000020774,0.0000020793,0.0000020816, +0.0000020842,0.0000020875,0.0000020914,0.0000020957,0.0000021004, +0.0000021051,0.0000021097,0.0000021141,0.0000021185,0.0000021228, +0.0000021257,0.0000021271,0.0000021277,0.0000021277,0.0000021271, +0.0000021257,0.0000021238,0.0000021209,0.0000021160,0.0000021085, +0.0000021010,0.0000020954,0.0000020920,0.0000020890,0.0000020838, +0.0000020778,0.0000020751,0.0000020762,0.0000020797,0.0000020840, +0.0000020893,0.0000020954,0.0000021014,0.0000021062,0.0000021091, +0.0000021105,0.0000021108,0.0000021099,0.0000021065,0.0000021026, +0.0000020998,0.0000020968,0.0000020934,0.0000020915,0.0000020919, +0.0000020950,0.0000020987,0.0000021013,0.0000021025,0.0000021035, +0.0000021052,0.0000021078,0.0000021114,0.0000021154,0.0000021197, +0.0000021230,0.0000021244,0.0000021241,0.0000021224,0.0000021198, +0.0000021158,0.0000021108,0.0000021053,0.0000021010,0.0000020981, +0.0000020948,0.0000020895,0.0000020842,0.0000020805,0.0000020779, +0.0000020760,0.0000020769,0.0000020819,0.0000020876,0.0000020912, +0.0000020923,0.0000020921,0.0000020905,0.0000020880,0.0000020852, +0.0000020834,0.0000020822,0.0000020803,0.0000020768,0.0000020718, +0.0000020655,0.0000020584,0.0000020513,0.0000020455,0.0000020419, +0.0000020399,0.0000020388,0.0000020383,0.0000020382,0.0000020388, +0.0000020393,0.0000020390,0.0000020379,0.0000020367,0.0000020358, +0.0000020356,0.0000020360,0.0000020365,0.0000020357,0.0000020326, +0.0000020265,0.0000020182,0.0000020110,0.0000020076,0.0000020074, +0.0000020106,0.0000020177,0.0000020250,0.0000020304,0.0000020374, +0.0000020457,0.0000020496,0.0000020489,0.0000020368,0.0000020145, +0.0000019987,0.0000019989,0.0000020177,0.0000020370,0.0000020415, +0.0000020408,0.0000020444,0.0000020588,0.0000020737,0.0000020760, +0.0000020762,0.0000020840,0.0000020946,0.0000020996,0.0000021034, +0.0000021143,0.0000021347,0.0000021522,0.0000021618,0.0000021675, +0.0000021714,0.0000021746,0.0000021749,0.0000021725,0.0000021710, +0.0000021719,0.0000021730,0.0000021732,0.0000021743,0.0000021765, +0.0000021781,0.0000021787,0.0000021791,0.0000021794,0.0000021795, +0.0000021812,0.0000021856,0.0000021895,0.0000021900,0.0000021881, +0.0000021846,0.0000021804,0.0000021765,0.0000021732,0.0000021708, +0.0000021685,0.0000021664,0.0000021645,0.0000021621,0.0000021594, +0.0000021567,0.0000021550,0.0000021553,0.0000021573,0.0000021593, +0.0000021604,0.0000021608,0.0000021611,0.0000021612,0.0000021608, +0.0000021600,0.0000021585,0.0000021553,0.0000021496,0.0000021421, +0.0000021358,0.0000021327,0.0000021317,0.0000021325,0.0000021351, +0.0000021385,0.0000021419,0.0000021448,0.0000021466,0.0000021464, +0.0000021447,0.0000021418,0.0000021373,0.0000021317,0.0000021255, +0.0000021190,0.0000021114,0.0000021033,0.0000020950,0.0000020878, +0.0000020816,0.0000020759,0.0000020718,0.0000020700,0.0000020705, +0.0000020720,0.0000020738,0.0000020756,0.0000020766,0.0000020767, +0.0000020764,0.0000020754,0.0000020741,0.0000020739,0.0000020732, +0.0000020722,0.0000020707,0.0000020700,0.0000020701,0.0000020706, +0.0000020706,0.0000020709,0.0000020706,0.0000020699,0.0000020691, +0.0000020680,0.0000020670,0.0000020665,0.0000020665,0.0000020662, +0.0000020661,0.0000020662,0.0000020661,0.0000020657,0.0000020654, +0.0000020652,0.0000020647,0.0000020638,0.0000020624,0.0000020615, +0.0000020615,0.0000020619,0.0000020622,0.0000020623,0.0000020624, +0.0000020624,0.0000020621,0.0000020615,0.0000020605,0.0000020594, +0.0000020590,0.0000020588,0.0000020588,0.0000020586,0.0000020587, +0.0000020594,0.0000020605,0.0000020613,0.0000020621,0.0000020634, +0.0000020646,0.0000020653,0.0000020657,0.0000020660,0.0000020660, +0.0000020660,0.0000020659,0.0000020664,0.0000020670,0.0000020681, +0.0000020704,0.0000020737,0.0000020768,0.0000020788,0.0000020797, +0.0000020794,0.0000020780,0.0000020777,0.0000020785,0.0000020804, +0.0000020818,0.0000020824,0.0000020836,0.0000020853,0.0000020862, +0.0000020865,0.0000020862,0.0000020854,0.0000020851,0.0000020856, +0.0000020863,0.0000020870,0.0000020874,0.0000020873,0.0000020867, +0.0000020859,0.0000020849,0.0000020838,0.0000020828,0.0000020820, +0.0000020813,0.0000020810,0.0000020809,0.0000020813,0.0000020825, +0.0000020845,0.0000020865,0.0000020884,0.0000020902,0.0000020923, +0.0000020951,0.0000020978,0.0000021002,0.0000021023,0.0000021038, +0.0000021046,0.0000021050,0.0000021049,0.0000021037,0.0000021016, +0.0000020990,0.0000020960,0.0000020927,0.0000020894,0.0000020864, +0.0000020842,0.0000020827,0.0000020816,0.0000020808,0.0000020808, +0.0000020812,0.0000020820,0.0000020832,0.0000020843,0.0000020853, +0.0000020863,0.0000020875,0.0000020881,0.0000020886,0.0000020895, +0.0000020909,0.0000020930,0.0000020959,0.0000020991,0.0000021022, +0.0000021051,0.0000021075,0.0000021093,0.0000021104,0.0000021115, +0.0000021122,0.0000021126,0.0000021124,0.0000021120,0.0000021115, +0.0000021107,0.0000021097,0.0000021087,0.0000021075,0.0000021063, +0.0000021055,0.0000021052,0.0000021053,0.0000021059,0.0000021070, +0.0000021085,0.0000021099,0.0000021113,0.0000021130,0.0000021150, +0.0000021171,0.0000021189,0.0000021200,0.0000021214,0.0000021216, +0.0000021208,0.0000021193,0.0000021175,0.0000021164,0.0000021165, +0.0000021177,0.0000021188,0.0000021204,0.0000021221,0.0000021241, +0.0000021261,0.0000021283,0.0000021309,0.0000021339,0.0000021372, +0.0000021410,0.0000021454,0.0000021501,0.0000021549,0.0000021601, +0.0000021652,0.0000021697,0.0000021736,0.0000021776,0.0000021816, +0.0000021851,0.0000021879,0.0000021903,0.0000021925,0.0000021948, +0.0000021974,0.0000022004,0.0000022034,0.0000022062,0.0000022088, +0.0000022107,0.0000022120,0.0000022129,0.0000022135,0.0000022135, +0.0000022128,0.0000022117,0.0000022100,0.0000022078,0.0000022056, +0.0000022033,0.0000022010,0.0000021987,0.0000021964,0.0000021941, +0.0000021917,0.0000021894,0.0000021869,0.0000021841,0.0000021815, +0.0000021790,0.0000021767,0.0000021746,0.0000021728,0.0000021715, +0.0000021709,0.0000021709,0.0000021714,0.0000021721,0.0000021725, +0.0000021721,0.0000021715,0.0000021708,0.0000021698,0.0000021686, +0.0000021670,0.0000021649,0.0000021627,0.0000021606,0.0000021586, +0.0000021568,0.0000021551,0.0000021528,0.0000021499,0.0000021468, +0.0000021441,0.0000021418,0.0000021404,0.0000021399,0.0000021399, +0.0000021402,0.0000021404,0.0000021406,0.0000021406,0.0000021400, +0.0000021381,0.0000021353,0.0000021317,0.0000021281,0.0000021254, +0.0000021236,0.0000021222,0.0000021220,0.0000021222,0.0000021223, +0.0000021221,0.0000021216,0.0000021210,0.0000021202,0.0000021189, +0.0000021174,0.0000021158,0.0000021144,0.0000021136,0.0000021131, +0.0000021127,0.0000021122,0.0000021112,0.0000021093,0.0000021066, +0.0000021037,0.0000021009,0.0000020987,0.0000020969,0.0000020952, +0.0000020938,0.0000020932,0.0000020935,0.0000020946,0.0000020960, +0.0000020969,0.0000020968,0.0000020944,0.0000020936,0.0000020913, +0.0000020888,0.0000020859,0.0000020827,0.0000020792,0.0000020757, +0.0000020725,0.0000020699,0.0000020677,0.0000020654,0.0000020628, +0.0000020599,0.0000020571,0.0000020544,0.0000020515,0.0000020487, +0.0000020462,0.0000020438,0.0000020414,0.0000020399,0.0000020391, +0.0000020386,0.0000020381,0.0000020382,0.0000020389,0.0000020396, +0.0000020399,0.0000020400,0.0000020397,0.0000020387,0.0000020375, +0.0000020359,0.0000020343,0.0000020334,0.0000020329,0.0000020330, +0.0000020335,0.0000020342,0.0000020350,0.0000020358,0.0000020373, +0.0000020389,0.0000020391,0.0000020394,0.0000020381,0.0000020358, +0.0000020326,0.0000020285,0.0000020242,0.0000020203,0.0000020169, +0.0000020135,0.0000020096,0.0000020058,0.0000020025,0.0000020001, +0.0000019988,0.0000019987,0.0000019988,0.0000019984,0.0000019975, +0.0000019959,0.0000019940,0.0000019918,0.0000019902,0.0000019887, +0.0000019894,0.0000019906,0.0000019916,0.0000019915,0.0000019877, +0.0000019804,0.0000019695,0.0000019580,0.0000019490,0.0000019423, +0.0000019413,0.0000019401,0.0000019388,0.0000019361,0.0000019325, +0.0000019296,0.0000019286,0.0000019313,0.0000019355,0.0000019408, +0.0000019462,0.0000019509,0.0000019546,0.0000019567,0.0000019571, +0.0000019564,0.0000019541,0.0000019501,0.0000019457,0.0000019437, +0.0000019450,0.0000019501,0.0000019552,0.0000019573,0.0000019572, +0.0000019576,0.0000019601,0.0000019646,0.0000019707,0.0000019772, +0.0000019819,0.0000019840,0.0000019858,0.0000019895,0.0000019943, +0.0000019980,0.0000019999,0.0000020000,0.0000019994,0.0000019985, +0.0000019973,0.0000019958,0.0000019943,0.0000019929,0.0000019917, +0.0000019909,0.0000019906,0.0000019906,0.0000019913,0.0000019923, +0.0000019933,0.0000019943,0.0000019956,0.0000019971,0.0000019988, +0.0000020007,0.0000020029,0.0000020054,0.0000020082,0.0000020113, +0.0000020143,0.0000020169,0.0000020195,0.0000020220,0.0000020244, +0.0000020265,0.0000020280,0.0000020292,0.0000020304,0.0000020316, +0.0000020328,0.0000020336,0.0000020342,0.0000020347,0.0000020355, +0.0000020369,0.0000020388,0.0000020409,0.0000020433,0.0000020460, +0.0000020486,0.0000020514,0.0000020544,0.0000020567,0.0000020589, +0.0000020607,0.0000020619,0.0000020624,0.0000020627,0.0000020629, +0.0000020630,0.0000020628,0.0000020622,0.0000020616,0.0000020608, +0.0000020597,0.0000020585,0.0000020581,0.0000020584,0.0000020597, +0.0000020615,0.0000020637,0.0000020662,0.0000020695,0.0000020729, +0.0000020749,0.0000020750,0.0000020750,0.0000020784,0.0000020871, +0.0000020977,0.0000021051,0.0000021074,0.0000021083,0.0000021101, +0.0000021127,0.0000021153,0.0000021158,0.0000021145,0.0000021138, +0.0000021122,0.0000021089,0.0000021055,0.0000021006,0.0000020946, +0.0000020897,0.0000020855,0.0000020832,0.0000020825,0.0000020806, +0.0000020776,0.0000020763,0.0000020766,0.0000020779,0.0000020794, +0.0000020805,0.0000020808,0.0000020803,0.0000020788,0.0000020765, +0.0000020732,0.0000020690,0.0000020640,0.0000020588,0.0000020539, +0.0000020496,0.0000020461,0.0000020430,0.0000020398,0.0000020369, +0.0000020345,0.0000020329,0.0000020317,0.0000020306,0.0000020298, +0.0000020288,0.0000020275,0.0000020262,0.0000020247,0.0000020233, +0.0000020221,0.0000020213,0.0000020206,0.0000020200,0.0000020194, +0.0000020191,0.0000020189,0.0000020189,0.0000020190,0.0000020195, +0.0000020203,0.0000020211,0.0000020218,0.0000020224,0.0000020232, +0.0000020241,0.0000020250,0.0000020260,0.0000020271,0.0000020278, +0.0000020285,0.0000020293,0.0000020304,0.0000020314,0.0000020323, +0.0000020331,0.0000020339,0.0000020347,0.0000020357,0.0000020367, +0.0000020374,0.0000020379,0.0000020382,0.0000020385,0.0000020386, +0.0000020386,0.0000020383,0.0000020379,0.0000020371,0.0000020363, +0.0000020356,0.0000020355,0.0000020353,0.0000020353,0.0000020354, +0.0000020356,0.0000020358,0.0000020357,0.0000020353,0.0000020350, +0.0000020339,0.0000020317,0.0000020290,0.0000020255,0.0000020212, +0.0000020161,0.0000020109,0.0000020058,0.0000020013,0.0000019975, +0.0000019953,0.0000019945,0.0000019943,0.0000019958,0.0000019995, +0.0000020050,0.0000020117,0.0000020186,0.0000020247,0.0000020294, +0.0000020321,0.0000020331,0.0000020327,0.0000020319,0.0000020314, +0.0000020314,0.0000020325,0.0000020340,0.0000020351,0.0000020352, +0.0000020340,0.0000020312,0.0000020273,0.0000020232,0.0000020190, +0.0000020154,0.0000020121,0.0000020092,0.0000020068,0.0000020047, +0.0000020033,0.0000020024,0.0000020014,0.0000020000,0.0000019977, +0.0000019954,0.0000019936,0.0000019924,0.0000019918,0.0000019909, +0.0000019895,0.0000019872,0.0000019847,0.0000019814,0.0000019775, +0.0000019736,0.0000019707,0.0000019693,0.0000019695,0.0000019708, +0.0000019732,0.0000019761,0.0000019788,0.0000019802,0.0000019803, +0.0000019776,0.0000019720,0.0000019655,0.0000019602,0.0000019574, +0.0000019571,0.0000019581,0.0000019598,0.0000019617,0.0000019626, +0.0000019613,0.0000019565,0.0000019498,0.0000019438,0.0000019403, +0.0000019388,0.0000019399,0.0000019418,0.0000019428,0.0000019429, +0.0000019434,0.0000019444,0.0000019452,0.0000019465,0.0000019486, +0.0000019511,0.0000019538,0.0000019570,0.0000019609,0.0000019647, +0.0000019670,0.0000019672,0.0000019657,0.0000019633,0.0000019611, +0.0000019592,0.0000019573,0.0000019549,0.0000019530,0.0000019516, +0.0000019496,0.0000019459,0.0000019423,0.0000019409,0.0000019411, +0.0000019402,0.0000019367,0.0000019303,0.0000019241,0.0000019199, +0.0000019177,0.0000019164,0.0000019188,0.0000019252,0.0000019348, +0.0000019463,0.0000019575,0.0000019665,0.0000019723,0.0000019748, +0.0000019751,0.0000019745,0.0000019743,0.0000019751,0.0000019775, +0.0000019813,0.0000019860,0.0000019911,0.0000019961,0.0000020007, +0.0000020051,0.0000020095,0.0000020135,0.0000020166,0.0000020188, +0.0000020201,0.0000020207,0.0000020205,0.0000020197,0.0000020187, +0.0000020176,0.0000020164,0.0000020154,0.0000020142,0.0000020126, +0.0000020106,0.0000020082,0.0000020057,0.0000020031,0.0000019999, +0.0000019952,0.0000019888,0.0000019810,0.0000019723,0.0000019639, +0.0000019564,0.0000019501,0.0000019449,0.0000019416,0.0000019395, +0.0000019385,0.0000019385,0.0000019389,0.0000019392,0.0000019383, +0.0000019360,0.0000019333,0.0000019304,0.0000019292,0.0000019288, +0.0000019285,0.0000019281,0.0000019269,0.0000019247,0.0000019225, +0.0000019200,0.0000019172,0.0000019139,0.0000019105,0.0000019068, +0.0000019019,0.0000018961,0.0000018902,0.0000018845,0.0000018798, +0.0000018765,0.0000018744,0.0000018734,0.0000018715,0.0000018698, +0.0000018678,0.0000018657,0.0000018638,0.0000018630,0.0000018636, +0.0000018646,0.0000018661,0.0000018684,0.0000018715,0.0000018748, +0.0000018782,0.0000018814,0.0000018849,0.0000018880,0.0000018902, +0.0000018908,0.0000018900,0.0000018881,0.0000018856,0.0000018835, +0.0000018820,0.0000018815,0.0000018814,0.0000018811,0.0000018804, +0.0000018787,0.0000018760,0.0000018720,0.0000018671,0.0000018614, +0.0000018555,0.0000018501,0.0000018448,0.0000018393,0.0000018341, +0.0000018296,0.0000018264,0.0000018240,0.0000018220,0.0000018203, +0.0000018192,0.0000018186,0.0000018185,0.0000018188,0.0000018195, +0.0000018205,0.0000018217,0.0000018234,0.0000018255,0.0000018277, +0.0000018296,0.0000018311,0.0000018323,0.0000018332,0.0000018340, +0.0000018344,0.0000018346,0.0000018346,0.0000018345,0.0000018342, +0.0000018337,0.0000018331,0.0000018324,0.0000018319,0.0000018317, +0.0000018315,0.0000018314,0.0000018312,0.0000018313,0.0000018319, +0.0000018330,0.0000018346,0.0000018364,0.0000018384,0.0000018406, +0.0000018427,0.0000018445,0.0000018461,0.0000018475,0.0000018488, +0.0000018497,0.0000018504,0.0000018509,0.0000018511,0.0000018509, +0.0000018506,0.0000018501,0.0000018494,0.0000018484,0.0000018473, +0.0000018464,0.0000018456,0.0000018448,0.0000018442,0.0000018438, +0.0000018435,0.0000018436,0.0000018438,0.0000018444,0.0000018450, +0.0000018454,0.0000018457,0.0000018461,0.0000018464,0.0000018467, +0.0000018472,0.0000018482,0.0000018495,0.0000018508,0.0000018523, +0.0000018539,0.0000018551,0.0000018561,0.0000018569,0.0000018578, +0.0000018585,0.0000018592,0.0000018605,0.0000018625,0.0000018656, +0.0000018697,0.0000018746,0.0000018802,0.0000018868,0.0000018941, +0.0000019010,0.0000019068,0.0000019112,0.0000019139,0.0000019149, +0.0000019146,0.0000019132,0.0000019108,0.0000019082,0.0000019056, +0.0000019035,0.0000019017,0.0000019003,0.0000019001,0.0000019014, +0.0000019042,0.0000019080,0.0000019118,0.0000019149,0.0000019170, +0.0000019191,0.0000019219,0.0000019244,0.0000019255,0.0000019247, +0.0000019231,0.0000019218,0.0000019224,0.0000019245,0.0000019259, +0.0000019252,0.0000019215,0.0000019177,0.0000019163,0.0000019180, +0.0000019215,0.0000019254,0.0000019292,0.0000019329,0.0000019364, +0.0000019386,0.0000019391,0.0000019381,0.0000019352,0.0000019313, +0.0000019274,0.0000019258,0.0000019268,0.0000019298,0.0000019343, +0.0000019400,0.0000019469,0.0000019547,0.0000019638,0.0000019744, +0.0000019865,0.0000019988,0.0000020099,0.0000020181,0.0000020223, +0.0000020231,0.0000020228,0.0000020226,0.0000020225,0.0000020221, +0.0000020215,0.0000020209,0.0000020200,0.0000020193,0.0000020189, +0.0000020185,0.0000020187,0.0000020194,0.0000020206,0.0000020226, +0.0000020252,0.0000020283,0.0000020315,0.0000020343,0.0000020364, +0.0000020378,0.0000020386,0.0000020392,0.0000020395,0.0000020398, +0.0000020402,0.0000020404,0.0000020402,0.0000020400,0.0000020399, +0.0000020399,0.0000020402,0.0000020409,0.0000020419,0.0000020429, +0.0000020436,0.0000020441,0.0000020442,0.0000020441,0.0000020438, +0.0000020432,0.0000020424,0.0000020411,0.0000020399,0.0000020388, +0.0000020380,0.0000020376,0.0000020375,0.0000020376,0.0000020372, +0.0000020361,0.0000020341,0.0000020319,0.0000020299,0.0000020283, +0.0000020272,0.0000020264,0.0000020259,0.0000020256,0.0000020256, +0.0000020259,0.0000020266,0.0000020278,0.0000020287,0.0000020296, +0.0000020302,0.0000020302,0.0000020298,0.0000020290,0.0000020279, +0.0000020263,0.0000020243,0.0000020218,0.0000020187,0.0000020150, +0.0000020104,0.0000020051,0.0000019993,0.0000019931,0.0000019871, +0.0000019822,0.0000019785,0.0000019755,0.0000019728,0.0000019703, +0.0000019679,0.0000019658,0.0000019640,0.0000019625,0.0000019610, +0.0000019592,0.0000019569,0.0000019533,0.0000019487,0.0000019445, +0.0000019413,0.0000019390,0.0000019375,0.0000019360,0.0000019341, +0.0000019316,0.0000019287,0.0000019263,0.0000019236,0.0000019207, +0.0000019189,0.0000019189,0.0000019199,0.0000019206,0.0000019201, +0.0000019185,0.0000019161,0.0000019139,0.0000019135,0.0000019149, +0.0000019182,0.0000019134,0.0000019164,0.0000019199,0.0000019228, +0.0000019254,0.0000019281,0.0000019315,0.0000019356,0.0000019402, +0.0000019443,0.0000019476,0.0000019502,0.0000019521,0.0000019536, +0.0000019556,0.0000019579,0.0000019601,0.0000019622,0.0000019642, +0.0000019648,0.0000019628,0.0000019586,0.0000019549,0.0000019533, +0.0000019525,0.0000019511,0.0000019495,0.0000019485,0.0000019484, +0.0000019487,0.0000019484,0.0000019479,0.0000019478,0.0000019490, +0.0000019511,0.0000019531,0.0000019549,0.0000019563,0.0000019568, +0.0000019560,0.0000019546,0.0000019525,0.0000019500,0.0000019477, +0.0000019455,0.0000019438,0.0000019427,0.0000019422,0.0000019419, +0.0000019418,0.0000019420,0.0000019429,0.0000019443,0.0000019461, +0.0000019479,0.0000019493,0.0000019503,0.0000019509,0.0000019514, +0.0000019516,0.0000019515,0.0000019518,0.0000019525,0.0000019532, +0.0000019539,0.0000019543,0.0000019543,0.0000019542,0.0000019542, +0.0000019541,0.0000019535,0.0000019525,0.0000019512,0.0000019494, +0.0000019472,0.0000019450,0.0000019425,0.0000019397,0.0000019364, +0.0000019328,0.0000019295,0.0000019267,0.0000019245,0.0000019229, +0.0000019232,0.0000019241,0.0000019249,0.0000019258,0.0000019268, +0.0000019279,0.0000019290,0.0000019307,0.0000019322,0.0000019337, +0.0000019350,0.0000019360,0.0000019368,0.0000019367,0.0000019360, +0.0000019345,0.0000019326,0.0000019307,0.0000019289,0.0000019277, +0.0000019264,0.0000019253,0.0000019238,0.0000019217,0.0000019186, +0.0000019152,0.0000019124,0.0000019115,0.0000019115,0.0000019120, +0.0000019130,0.0000019142,0.0000019153,0.0000019158,0.0000019163, +0.0000019169,0.0000019177,0.0000019184,0.0000019192,0.0000019206, +0.0000019223,0.0000019249,0.0000019292,0.0000019350,0.0000019413, +0.0000019478,0.0000019546,0.0000019614,0.0000019670,0.0000019709, +0.0000019733,0.0000019747,0.0000019752,0.0000019753,0.0000019767, +0.0000019799,0.0000019837,0.0000019878,0.0000019916,0.0000019949, +0.0000019979,0.0000020001,0.0000020015,0.0000020025,0.0000020033, +0.0000020041,0.0000020051,0.0000020058,0.0000020062,0.0000020063, +0.0000020063,0.0000020064,0.0000020064,0.0000020071,0.0000020078, +0.0000020092,0.0000020114,0.0000020141,0.0000020170,0.0000020201, +0.0000020227,0.0000020253,0.0000020276,0.0000020294,0.0000020308, +0.0000020316,0.0000020322,0.0000020324,0.0000020322,0.0000020322, +0.0000020324,0.0000020325,0.0000020326,0.0000020329,0.0000020335, +0.0000020350,0.0000020368,0.0000020389,0.0000020414,0.0000020441, +0.0000020466,0.0000020489,0.0000020508,0.0000020526,0.0000020544, +0.0000020562,0.0000020576,0.0000020583,0.0000020587,0.0000020588, +0.0000020593,0.0000020596,0.0000020597,0.0000020599,0.0000020601, +0.0000020603,0.0000020600,0.0000020594,0.0000020587,0.0000020579, +0.0000020577,0.0000020578,0.0000020583,0.0000020592,0.0000020606, +0.0000020622,0.0000020638,0.0000020653,0.0000020666,0.0000020675, +0.0000020681,0.0000020684,0.0000020689,0.0000020698,0.0000020709, +0.0000020721,0.0000020734,0.0000020748,0.0000020764,0.0000020782, +0.0000020803,0.0000020827,0.0000020854,0.0000020884,0.0000020917, +0.0000020955,0.0000020997,0.0000021039,0.0000021082,0.0000021126, +0.0000021172,0.0000021214,0.0000021239,0.0000021250,0.0000021252, +0.0000021245,0.0000021231,0.0000021211,0.0000021182,0.0000021131, +0.0000021053,0.0000020975,0.0000020918,0.0000020883,0.0000020847, +0.0000020786,0.0000020731,0.0000020721,0.0000020744,0.0000020787, +0.0000020835,0.0000020890,0.0000020950,0.0000021000,0.0000021034, +0.0000021053,0.0000021065,0.0000021068,0.0000021055,0.0000021021, +0.0000020986,0.0000020963,0.0000020939,0.0000020912,0.0000020896, +0.0000020904,0.0000020937,0.0000020973,0.0000021000,0.0000021014, +0.0000021024,0.0000021040,0.0000021065,0.0000021097,0.0000021131, +0.0000021165,0.0000021188,0.0000021198,0.0000021195,0.0000021182, +0.0000021153,0.0000021108,0.0000021056,0.0000021009,0.0000020981, +0.0000020959,0.0000020921,0.0000020866,0.0000020818,0.0000020786, +0.0000020760,0.0000020748,0.0000020765,0.0000020814,0.0000020860, +0.0000020889,0.0000020903,0.0000020903,0.0000020888,0.0000020865, +0.0000020847,0.0000020839,0.0000020832,0.0000020811,0.0000020770, +0.0000020717,0.0000020658,0.0000020593,0.0000020525,0.0000020467, +0.0000020425,0.0000020399,0.0000020387,0.0000020382,0.0000020384, +0.0000020390,0.0000020392,0.0000020388,0.0000020377,0.0000020364, +0.0000020351,0.0000020348,0.0000020352,0.0000020354,0.0000020342, +0.0000020303,0.0000020235,0.0000020151,0.0000020080,0.0000020048, +0.0000020053,0.0000020096,0.0000020181,0.0000020265,0.0000020325, +0.0000020397,0.0000020470,0.0000020496,0.0000020458,0.0000020279, +0.0000020058,0.0000019968,0.0000020054,0.0000020281,0.0000020415, +0.0000020424,0.0000020423,0.0000020499,0.0000020653,0.0000020744, +0.0000020746,0.0000020791,0.0000020905,0.0000020982,0.0000021008, +0.0000021069,0.0000021229,0.0000021444,0.0000021585,0.0000021661, +0.0000021712,0.0000021750,0.0000021776,0.0000021767,0.0000021738, +0.0000021728,0.0000021739,0.0000021743,0.0000021735,0.0000021742, +0.0000021770,0.0000021791,0.0000021794,0.0000021793,0.0000021791, +0.0000021792,0.0000021806,0.0000021841,0.0000021878,0.0000021884, +0.0000021869,0.0000021833,0.0000021791,0.0000021750,0.0000021720, +0.0000021693,0.0000021664,0.0000021638,0.0000021610,0.0000021586, +0.0000021567,0.0000021554,0.0000021554,0.0000021569,0.0000021591, +0.0000021608,0.0000021620,0.0000021634,0.0000021644,0.0000021653, +0.0000021653,0.0000021643,0.0000021615,0.0000021571,0.0000021510, +0.0000021445,0.0000021384,0.0000021335,0.0000021309,0.0000021287, +0.0000021294,0.0000021308,0.0000021331,0.0000021356,0.0000021370, +0.0000021370,0.0000021358,0.0000021329,0.0000021283,0.0000021226, +0.0000021161,0.0000021088,0.0000021008,0.0000020929,0.0000020856, +0.0000020796,0.0000020742,0.0000020700,0.0000020678,0.0000020678, +0.0000020689,0.0000020705,0.0000020720,0.0000020734,0.0000020747, +0.0000020752,0.0000020752,0.0000020755,0.0000020759,0.0000020761, +0.0000020763,0.0000020767,0.0000020773,0.0000020784,0.0000020795, +0.0000020803,0.0000020811,0.0000020816,0.0000020816,0.0000020812, +0.0000020810,0.0000020807,0.0000020808,0.0000020809,0.0000020810, +0.0000020811,0.0000020814,0.0000020817,0.0000020817,0.0000020813, +0.0000020806,0.0000020796,0.0000020781,0.0000020764,0.0000020750, +0.0000020742,0.0000020734,0.0000020723,0.0000020716,0.0000020708, +0.0000020703,0.0000020701,0.0000020697,0.0000020686,0.0000020679, +0.0000020671,0.0000020665,0.0000020655,0.0000020646,0.0000020644, +0.0000020648,0.0000020654,0.0000020661,0.0000020675,0.0000020691, +0.0000020700,0.0000020702,0.0000020705,0.0000020710,0.0000020713, +0.0000020712,0.0000020718,0.0000020728,0.0000020741,0.0000020757, +0.0000020782,0.0000020804,0.0000020817,0.0000020820,0.0000020811, +0.0000020792,0.0000020776,0.0000020770,0.0000020770,0.0000020776, +0.0000020778,0.0000020782,0.0000020796,0.0000020814,0.0000020827, +0.0000020831,0.0000020827,0.0000020824,0.0000020820,0.0000020821, +0.0000020827,0.0000020832,0.0000020832,0.0000020827,0.0000020817, +0.0000020803,0.0000020788,0.0000020772,0.0000020759,0.0000020754, +0.0000020754,0.0000020758,0.0000020774,0.0000020799,0.0000020829, +0.0000020861,0.0000020894,0.0000020925,0.0000020952,0.0000020982, +0.0000021017,0.0000021053,0.0000021088,0.0000021120,0.0000021147, +0.0000021165,0.0000021178,0.0000021183,0.0000021180,0.0000021168, +0.0000021147,0.0000021122,0.0000021090,0.0000021053,0.0000021016, +0.0000020980,0.0000020947,0.0000020917,0.0000020892,0.0000020868, +0.0000020851,0.0000020840,0.0000020834,0.0000020840,0.0000020845, +0.0000020854,0.0000020863,0.0000020873,0.0000020879,0.0000020880, +0.0000020877,0.0000020873,0.0000020875,0.0000020882,0.0000020895, +0.0000020917,0.0000020945,0.0000020979,0.0000021011,0.0000021038, +0.0000021059,0.0000021073,0.0000021081,0.0000021085,0.0000021086, +0.0000021082,0.0000021074,0.0000021065,0.0000021055,0.0000021047, +0.0000021039,0.0000021034,0.0000021034,0.0000021037,0.0000021046, +0.0000021057,0.0000021069,0.0000021081,0.0000021095,0.0000021112, +0.0000021129,0.0000021146,0.0000021167,0.0000021191,0.0000021213, +0.0000021217,0.0000021216,0.0000021205,0.0000021201,0.0000021204, +0.0000021209,0.0000021216,0.0000021225,0.0000021234,0.0000021246, +0.0000021259,0.0000021270,0.0000021278,0.0000021291,0.0000021308, +0.0000021328,0.0000021355,0.0000021393,0.0000021440,0.0000021496, +0.0000021549,0.0000021597,0.0000021640,0.0000021679,0.0000021714, +0.0000021743,0.0000021766,0.0000021787,0.0000021808,0.0000021831, +0.0000021860,0.0000021892,0.0000021924,0.0000021956,0.0000021987, +0.0000022014,0.0000022035,0.0000022052,0.0000022065,0.0000022073, +0.0000022071,0.0000022066,0.0000022055,0.0000022039,0.0000022019, +0.0000021998,0.0000021979,0.0000021959,0.0000021939,0.0000021919, +0.0000021899,0.0000021877,0.0000021852,0.0000021831,0.0000021814, +0.0000021799,0.0000021784,0.0000021774,0.0000021764,0.0000021755, +0.0000021748,0.0000021743,0.0000021740,0.0000021736,0.0000021730, +0.0000021720,0.0000021708,0.0000021694,0.0000021677,0.0000021660, +0.0000021642,0.0000021621,0.0000021603,0.0000021586,0.0000021571, +0.0000021557,0.0000021540,0.0000021515,0.0000021486,0.0000021458, +0.0000021430,0.0000021403,0.0000021385,0.0000021368,0.0000021361, +0.0000021359,0.0000021363,0.0000021370,0.0000021376,0.0000021374, +0.0000021361,0.0000021335,0.0000021302,0.0000021269,0.0000021245, +0.0000021227,0.0000021220,0.0000021218,0.0000021218,0.0000021216, +0.0000021211,0.0000021204,0.0000021193,0.0000021173,0.0000021149, +0.0000021122,0.0000021097,0.0000021079,0.0000021071,0.0000021067, +0.0000021065,0.0000021059,0.0000021045,0.0000021021,0.0000020989, +0.0000020954,0.0000020922,0.0000020896,0.0000020874,0.0000020851, +0.0000020830,0.0000020816,0.0000020812,0.0000020819,0.0000020833, +0.0000020854,0.0000020875,0.0000020891,0.0000020905,0.0000020912, +0.0000020897,0.0000020875,0.0000020838,0.0000020797,0.0000020754, +0.0000020716,0.0000020687,0.0000020663,0.0000020644,0.0000020625, +0.0000020606,0.0000020585,0.0000020557,0.0000020527,0.0000020499, +0.0000020471,0.0000020446,0.0000020429,0.0000020418,0.0000020410, +0.0000020402,0.0000020395,0.0000020392,0.0000020390,0.0000020390, +0.0000020383,0.0000020377,0.0000020372,0.0000020365,0.0000020353, +0.0000020340,0.0000020332,0.0000020328,0.0000020326,0.0000020326, +0.0000020327,0.0000020327,0.0000020329,0.0000020335,0.0000020348, +0.0000020363,0.0000020377,0.0000020384,0.0000020383,0.0000020374, +0.0000020361,0.0000020340,0.0000020311,0.0000020276,0.0000020235, +0.0000020186,0.0000020133,0.0000020084,0.0000020043,0.0000020011, +0.0000019995,0.0000019990,0.0000019992,0.0000019993,0.0000019988, +0.0000019975,0.0000019952,0.0000019920,0.0000019883,0.0000019850, +0.0000019823,0.0000019824,0.0000019831,0.0000019846,0.0000019849, +0.0000019821,0.0000019752,0.0000019645,0.0000019532,0.0000019449, +0.0000019386,0.0000019379,0.0000019374,0.0000019369,0.0000019356, +0.0000019337,0.0000019329,0.0000019336,0.0000019365,0.0000019402, +0.0000019445,0.0000019496,0.0000019543,0.0000019571,0.0000019576, +0.0000019564,0.0000019530,0.0000019483,0.0000019450,0.0000019450, +0.0000019473,0.0000019512,0.0000019535,0.0000019536,0.0000019539, +0.0000019561,0.0000019602,0.0000019658,0.0000019725,0.0000019785, +0.0000019826,0.0000019849,0.0000019874,0.0000019915,0.0000019963, +0.0000020006,0.0000020027,0.0000020027,0.0000020020,0.0000020009, +0.0000019995,0.0000019977,0.0000019955,0.0000019935,0.0000019921, +0.0000019913,0.0000019904,0.0000019900,0.0000019894,0.0000019896, +0.0000019901,0.0000019909,0.0000019920,0.0000019937,0.0000019960, +0.0000019986,0.0000020012,0.0000020040,0.0000020071,0.0000020104, +0.0000020137,0.0000020170,0.0000020203,0.0000020234,0.0000020261, +0.0000020282,0.0000020298,0.0000020311,0.0000020323,0.0000020334, +0.0000020342,0.0000020347,0.0000020350,0.0000020357,0.0000020367, +0.0000020382,0.0000020404,0.0000020430,0.0000020454,0.0000020476, +0.0000020499,0.0000020525,0.0000020548,0.0000020572,0.0000020593, +0.0000020607,0.0000020617,0.0000020624,0.0000020629,0.0000020631, +0.0000020626,0.0000020616,0.0000020604,0.0000020590,0.0000020573, +0.0000020558,0.0000020555,0.0000020565,0.0000020587,0.0000020616, +0.0000020647,0.0000020682,0.0000020718,0.0000020740,0.0000020743, +0.0000020747,0.0000020782,0.0000020861,0.0000020965,0.0000021052, +0.0000021088,0.0000021092,0.0000021102,0.0000021124,0.0000021151, +0.0000021163,0.0000021156,0.0000021147,0.0000021137,0.0000021107, +0.0000021072,0.0000021036,0.0000020981,0.0000020926,0.0000020887, +0.0000020851,0.0000020828,0.0000020819,0.0000020808,0.0000020788, +0.0000020769,0.0000020761,0.0000020764,0.0000020773,0.0000020783, +0.0000020784,0.0000020774,0.0000020755,0.0000020727,0.0000020687, +0.0000020639,0.0000020590,0.0000020543,0.0000020501,0.0000020464, +0.0000020432,0.0000020403,0.0000020376,0.0000020353,0.0000020335, +0.0000020319,0.0000020306,0.0000020294,0.0000020280,0.0000020263, +0.0000020243,0.0000020223,0.0000020204,0.0000020187,0.0000020174, +0.0000020162,0.0000020150,0.0000020140,0.0000020133,0.0000020129, +0.0000020128,0.0000020128,0.0000020130,0.0000020133,0.0000020138, +0.0000020143,0.0000020148,0.0000020154,0.0000020161,0.0000020168, +0.0000020176,0.0000020186,0.0000020197,0.0000020209,0.0000020223, +0.0000020237,0.0000020250,0.0000020262,0.0000020271,0.0000020280, +0.0000020288,0.0000020295,0.0000020304,0.0000020313,0.0000020321, +0.0000020326,0.0000020331,0.0000020336,0.0000020338,0.0000020336, +0.0000020331,0.0000020322,0.0000020312,0.0000020301,0.0000020292, +0.0000020287,0.0000020285,0.0000020286,0.0000020290,0.0000020297, +0.0000020304,0.0000020311,0.0000020316,0.0000020319,0.0000020317, +0.0000020308,0.0000020299,0.0000020279,0.0000020249,0.0000020208, +0.0000020161,0.0000020113,0.0000020069,0.0000020027,0.0000019990, +0.0000019963,0.0000019945,0.0000019945,0.0000019955,0.0000019984, +0.0000020031,0.0000020093,0.0000020160,0.0000020223,0.0000020274, +0.0000020305,0.0000020316,0.0000020311,0.0000020297,0.0000020287, +0.0000020280,0.0000020279,0.0000020275,0.0000020271,0.0000020256, +0.0000020232,0.0000020199,0.0000020156,0.0000020111,0.0000020068, +0.0000020029,0.0000019996,0.0000019971,0.0000019961,0.0000019960, +0.0000019963,0.0000019968,0.0000019970,0.0000019962,0.0000019950, +0.0000019940,0.0000019934,0.0000019932,0.0000019930,0.0000019923, +0.0000019903,0.0000019875,0.0000019844,0.0000019808,0.0000019768, +0.0000019732,0.0000019710,0.0000019704,0.0000019711,0.0000019731, +0.0000019761,0.0000019788,0.0000019810,0.0000019820,0.0000019803, +0.0000019754,0.0000019686,0.0000019621,0.0000019580,0.0000019569, +0.0000019581,0.0000019601,0.0000019621,0.0000019630,0.0000019620, +0.0000019572,0.0000019498,0.0000019425,0.0000019378,0.0000019361, +0.0000019372,0.0000019391,0.0000019404,0.0000019407,0.0000019411, +0.0000019420,0.0000019423,0.0000019422,0.0000019435,0.0000019457, +0.0000019480,0.0000019512,0.0000019552,0.0000019590,0.0000019614, +0.0000019619,0.0000019611,0.0000019596,0.0000019578,0.0000019563, +0.0000019545,0.0000019522,0.0000019498,0.0000019478,0.0000019452, +0.0000019414,0.0000019386,0.0000019381,0.0000019388,0.0000019382, +0.0000019348,0.0000019289,0.0000019231,0.0000019187,0.0000019155, +0.0000019138,0.0000019147,0.0000019187,0.0000019260,0.0000019359, +0.0000019469,0.0000019573,0.0000019654,0.0000019704,0.0000019724, +0.0000019727,0.0000019725,0.0000019727,0.0000019736,0.0000019758, +0.0000019790,0.0000019831,0.0000019874,0.0000019921,0.0000019971, +0.0000020019,0.0000020060,0.0000020095,0.0000020122,0.0000020142, +0.0000020154,0.0000020161,0.0000020162,0.0000020156,0.0000020145, +0.0000020131,0.0000020114,0.0000020095,0.0000020075,0.0000020054, +0.0000020030,0.0000020000,0.0000019962,0.0000019915,0.0000019855, +0.0000019782,0.0000019702,0.0000019622,0.0000019552,0.0000019495, +0.0000019446,0.0000019411,0.0000019389,0.0000019376,0.0000019366, +0.0000019361,0.0000019361,0.0000019358,0.0000019344,0.0000019321, +0.0000019290,0.0000019266,0.0000019252,0.0000019240,0.0000019228, +0.0000019211,0.0000019188,0.0000019171,0.0000019159,0.0000019142, +0.0000019115,0.0000019080,0.0000019042,0.0000018988,0.0000018921, +0.0000018856,0.0000018797,0.0000018747,0.0000018707,0.0000018679, +0.0000018652,0.0000018621,0.0000018594,0.0000018566,0.0000018539, +0.0000018519,0.0000018512,0.0000018515,0.0000018527,0.0000018546, +0.0000018573,0.0000018604,0.0000018636,0.0000018668,0.0000018699, +0.0000018729,0.0000018759,0.0000018789,0.0000018814,0.0000018828, +0.0000018824,0.0000018805,0.0000018780,0.0000018759,0.0000018745, +0.0000018738,0.0000018735,0.0000018730,0.0000018715,0.0000018690, +0.0000018655,0.0000018610,0.0000018558,0.0000018503,0.0000018449, +0.0000018396,0.0000018344,0.0000018295,0.0000018250,0.0000018213, +0.0000018184,0.0000018163,0.0000018153,0.0000018151,0.0000018155, +0.0000018162,0.0000018172,0.0000018185,0.0000018198,0.0000018211, +0.0000018227,0.0000018244,0.0000018262,0.0000018276,0.0000018289, +0.0000018302,0.0000018310,0.0000018317,0.0000018323,0.0000018328, +0.0000018331,0.0000018334,0.0000018335,0.0000018335,0.0000018334, +0.0000018333,0.0000018333,0.0000018331,0.0000018328,0.0000018325, +0.0000018323,0.0000018322,0.0000018326,0.0000018335,0.0000018350, +0.0000018370,0.0000018393,0.0000018416,0.0000018436,0.0000018454, +0.0000018470,0.0000018485,0.0000018497,0.0000018505,0.0000018510, +0.0000018513,0.0000018514,0.0000018513,0.0000018510,0.0000018505, +0.0000018496,0.0000018486,0.0000018477,0.0000018467,0.0000018457, +0.0000018447,0.0000018436,0.0000018424,0.0000018413,0.0000018405, +0.0000018401,0.0000018400,0.0000018403,0.0000018406,0.0000018408, +0.0000018411,0.0000018415,0.0000018421,0.0000018427,0.0000018436, +0.0000018447,0.0000018459,0.0000018475,0.0000018494,0.0000018512, +0.0000018529,0.0000018542,0.0000018554,0.0000018564,0.0000018572, +0.0000018582,0.0000018598,0.0000018620,0.0000018648,0.0000018681, +0.0000018715,0.0000018751,0.0000018799,0.0000018861,0.0000018932, +0.0000019001,0.0000019057,0.0000019091,0.0000019109,0.0000019116, +0.0000019110,0.0000019097,0.0000019075,0.0000019048,0.0000019021, +0.0000018998,0.0000018984,0.0000018981,0.0000018992,0.0000019020, +0.0000019061,0.0000019101,0.0000019132,0.0000019154,0.0000019174, +0.0000019197,0.0000019220,0.0000019232,0.0000019226,0.0000019211, +0.0000019202,0.0000019215,0.0000019242,0.0000019257,0.0000019247, +0.0000019212,0.0000019176,0.0000019162,0.0000019174,0.0000019202, +0.0000019238,0.0000019278,0.0000019318,0.0000019352,0.0000019372, +0.0000019373,0.0000019364,0.0000019338,0.0000019302,0.0000019270, +0.0000019258,0.0000019259,0.0000019280,0.0000019318,0.0000019369, +0.0000019429,0.0000019499,0.0000019579,0.0000019676,0.0000019789, +0.0000019908,0.0000020023,0.0000020120,0.0000020186,0.0000020219, +0.0000020221,0.0000020219,0.0000020211,0.0000020206,0.0000020203, +0.0000020199,0.0000020194,0.0000020187,0.0000020179,0.0000020171, +0.0000020163,0.0000020156,0.0000020154,0.0000020159,0.0000020173, +0.0000020196,0.0000020224,0.0000020253,0.0000020278,0.0000020296, +0.0000020310,0.0000020320,0.0000020329,0.0000020337,0.0000020346, +0.0000020351,0.0000020352,0.0000020353,0.0000020356,0.0000020363, +0.0000020372,0.0000020383,0.0000020394,0.0000020403,0.0000020410, +0.0000020415,0.0000020416,0.0000020415,0.0000020411,0.0000020406, +0.0000020401,0.0000020393,0.0000020389,0.0000020384,0.0000020378, +0.0000020367,0.0000020349,0.0000020326,0.0000020301,0.0000020279, +0.0000020264,0.0000020254,0.0000020248,0.0000020246,0.0000020246, +0.0000020246,0.0000020249,0.0000020253,0.0000020258,0.0000020264, +0.0000020273,0.0000020282,0.0000020290,0.0000020296,0.0000020298, +0.0000020296,0.0000020292,0.0000020284,0.0000020273,0.0000020260, +0.0000020242,0.0000020218,0.0000020188,0.0000020151,0.0000020104, +0.0000020048,0.0000019983,0.0000019918,0.0000019856,0.0000019805, +0.0000019764,0.0000019732,0.0000019708,0.0000019683,0.0000019658, +0.0000019631,0.0000019605,0.0000019582,0.0000019563,0.0000019546, +0.0000019523,0.0000019492,0.0000019459,0.0000019430,0.0000019407, +0.0000019390,0.0000019378,0.0000019367,0.0000019353,0.0000019340, +0.0000019320,0.0000019295,0.0000019265,0.0000019234,0.0000019214, +0.0000019204,0.0000019204,0.0000019201,0.0000019192,0.0000019172, +0.0000019147,0.0000019129,0.0000019126,0.0000019114,0.0000019108, +0.0000019119,0.0000019149,0.0000019182,0.0000019209,0.0000019227, +0.0000019246,0.0000019275,0.0000019315,0.0000019362,0.0000019409, +0.0000019450,0.0000019483,0.0000019510,0.0000019533,0.0000019554, +0.0000019572,0.0000019589,0.0000019608,0.0000019625,0.0000019627, +0.0000019600,0.0000019554,0.0000019518,0.0000019501,0.0000019493, +0.0000019485,0.0000019477,0.0000019475,0.0000019480,0.0000019484, +0.0000019484,0.0000019487,0.0000019497,0.0000019509,0.0000019523, +0.0000019540,0.0000019553,0.0000019555,0.0000019548,0.0000019536, +0.0000019522,0.0000019504,0.0000019488,0.0000019474,0.0000019464, +0.0000019458,0.0000019454,0.0000019452,0.0000019451,0.0000019456, +0.0000019468,0.0000019483,0.0000019496,0.0000019508,0.0000019516, +0.0000019521,0.0000019523,0.0000019521,0.0000019515,0.0000019516, +0.0000019518,0.0000019518,0.0000019519,0.0000019521,0.0000019521, +0.0000019521,0.0000019521,0.0000019520,0.0000019519,0.0000019512, +0.0000019500,0.0000019484,0.0000019463,0.0000019440,0.0000019415, +0.0000019387,0.0000019356,0.0000019323,0.0000019291,0.0000019262, +0.0000019238,0.0000019228,0.0000019231,0.0000019238,0.0000019245, +0.0000019253,0.0000019266,0.0000019278,0.0000019291,0.0000019307, +0.0000019322,0.0000019333,0.0000019341,0.0000019348,0.0000019353, +0.0000019352,0.0000019344,0.0000019330,0.0000019309,0.0000019284, +0.0000019258,0.0000019231,0.0000019209,0.0000019195,0.0000019186, +0.0000019174,0.0000019151,0.0000019115,0.0000019073,0.0000019034, +0.0000019005,0.0000018998,0.0000019008,0.0000019037,0.0000019072, +0.0000019103,0.0000019135,0.0000019163,0.0000019186,0.0000019202, +0.0000019212,0.0000019216,0.0000019219,0.0000019224,0.0000019241, +0.0000019271,0.0000019316,0.0000019377,0.0000019450,0.0000019525, +0.0000019587,0.0000019636,0.0000019677,0.0000019707,0.0000019719, +0.0000019718,0.0000019716,0.0000019717,0.0000019727,0.0000019749, +0.0000019776,0.0000019806,0.0000019842,0.0000019873,0.0000019898, +0.0000019921,0.0000019941,0.0000019959,0.0000019973,0.0000019982, +0.0000019991,0.0000019995,0.0000019996,0.0000019998,0.0000020003, +0.0000020008,0.0000020012,0.0000020023,0.0000020042,0.0000020061, +0.0000020085,0.0000020110,0.0000020135,0.0000020159,0.0000020182, +0.0000020202,0.0000020217,0.0000020228,0.0000020239,0.0000020245, +0.0000020248,0.0000020253,0.0000020261,0.0000020270,0.0000020282, +0.0000020294,0.0000020306,0.0000020324,0.0000020344,0.0000020368, +0.0000020395,0.0000020423,0.0000020452,0.0000020477,0.0000020496, +0.0000020513,0.0000020531,0.0000020547,0.0000020558,0.0000020567, +0.0000020575,0.0000020583,0.0000020591,0.0000020596,0.0000020599, +0.0000020602,0.0000020603,0.0000020604,0.0000020601,0.0000020597, +0.0000020588,0.0000020578,0.0000020570,0.0000020568,0.0000020569, +0.0000020572,0.0000020578,0.0000020587,0.0000020598,0.0000020611, +0.0000020624,0.0000020634,0.0000020641,0.0000020646,0.0000020654, +0.0000020664,0.0000020678,0.0000020692,0.0000020706,0.0000020722, +0.0000020739,0.0000020758,0.0000020782,0.0000020809,0.0000020839, +0.0000020869,0.0000020898,0.0000020926,0.0000020956,0.0000020991, +0.0000021029,0.0000021069,0.0000021113,0.0000021159,0.0000021198, +0.0000021218,0.0000021220,0.0000021214,0.0000021200,0.0000021180, +0.0000021150,0.0000021094,0.0000021011,0.0000020933,0.0000020878, +0.0000020842,0.0000020794,0.0000020730,0.0000020691,0.0000020695, +0.0000020730,0.0000020778,0.0000020829,0.0000020883,0.0000020933, +0.0000020971,0.0000020997,0.0000021012,0.0000021019,0.0000021020, +0.0000021009,0.0000020978,0.0000020946,0.0000020929,0.0000020914, +0.0000020893,0.0000020878,0.0000020886,0.0000020918,0.0000020956, +0.0000020985,0.0000021003,0.0000021015,0.0000021028,0.0000021047, +0.0000021072,0.0000021101,0.0000021128,0.0000021149,0.0000021157, +0.0000021154,0.0000021134,0.0000021100,0.0000021056,0.0000021010, +0.0000020979,0.0000020960,0.0000020934,0.0000020891,0.0000020839, +0.0000020796,0.0000020765,0.0000020739,0.0000020731,0.0000020751, +0.0000020795,0.0000020834,0.0000020862,0.0000020881,0.0000020884, +0.0000020870,0.0000020854,0.0000020847,0.0000020847,0.0000020846, +0.0000020825,0.0000020782,0.0000020725,0.0000020668,0.0000020612, +0.0000020553,0.0000020497,0.0000020445,0.0000020407,0.0000020386, +0.0000020379,0.0000020383,0.0000020387,0.0000020387,0.0000020380, +0.0000020367,0.0000020352,0.0000020338,0.0000020335,0.0000020340, +0.0000020341,0.0000020327,0.0000020285,0.0000020215,0.0000020129, +0.0000020059,0.0000020035,0.0000020044,0.0000020101,0.0000020195, +0.0000020283,0.0000020346,0.0000020420,0.0000020482,0.0000020491, +0.0000020398,0.0000020180,0.0000019994,0.0000019971,0.0000020147, +0.0000020365,0.0000020429,0.0000020427,0.0000020453,0.0000020561, +0.0000020695,0.0000020737,0.0000020750,0.0000020848,0.0000020956, +0.0000020996,0.0000021022,0.0000021120,0.0000021322,0.0000021520, +0.0000021629,0.0000021696,0.0000021745,0.0000021779,0.0000021794, +0.0000021779,0.0000021752,0.0000021746,0.0000021755,0.0000021750, +0.0000021732,0.0000021737,0.0000021770,0.0000021794,0.0000021794, +0.0000021788,0.0000021787,0.0000021791,0.0000021805,0.0000021832, +0.0000021854,0.0000021859,0.0000021847,0.0000021815,0.0000021775, +0.0000021741,0.0000021714,0.0000021688,0.0000021659,0.0000021623, +0.0000021588,0.0000021564,0.0000021546,0.0000021538,0.0000021542, +0.0000021556,0.0000021572,0.0000021586,0.0000021606,0.0000021631, +0.0000021656,0.0000021672,0.0000021679,0.0000021667,0.0000021636, +0.0000021590,0.0000021543,0.0000021496,0.0000021441,0.0000021383, +0.0000021332,0.0000021292,0.0000021269,0.0000021259,0.0000021262, +0.0000021266,0.0000021270,0.0000021268,0.0000021250,0.0000021219, +0.0000021174,0.0000021113,0.0000021042,0.0000020964,0.0000020888, +0.0000020820,0.0000020764,0.0000020718,0.0000020687,0.0000020679, +0.0000020682,0.0000020693,0.0000020714,0.0000020738,0.0000020760, +0.0000020777,0.0000020786,0.0000020792,0.0000020798,0.0000020807, +0.0000020815,0.0000020827,0.0000020835,0.0000020841,0.0000020849, +0.0000020856,0.0000020863,0.0000020867,0.0000020872,0.0000020870, +0.0000020867,0.0000020867,0.0000020868,0.0000020868,0.0000020867, +0.0000020869,0.0000020873,0.0000020880,0.0000020888,0.0000020897, +0.0000020906,0.0000020910,0.0000020913,0.0000020913,0.0000020909, +0.0000020904,0.0000020900,0.0000020895,0.0000020889,0.0000020883, +0.0000020880,0.0000020879,0.0000020878,0.0000020880,0.0000020878, +0.0000020868,0.0000020860,0.0000020849,0.0000020834,0.0000020817, +0.0000020812,0.0000020811,0.0000020810,0.0000020812,0.0000020826, +0.0000020840,0.0000020849,0.0000020852,0.0000020852,0.0000020851, +0.0000020849,0.0000020854,0.0000020867,0.0000020879,0.0000020893, +0.0000020912,0.0000020930,0.0000020939,0.0000020938,0.0000020925, +0.0000020904,0.0000020883,0.0000020860,0.0000020835,0.0000020821, +0.0000020812,0.0000020803,0.0000020799,0.0000020805,0.0000020813, +0.0000020817,0.0000020813,0.0000020801,0.0000020792,0.0000020785, +0.0000020782,0.0000020784,0.0000020781,0.0000020777,0.0000020766, +0.0000020749,0.0000020732,0.0000020714,0.0000020695,0.0000020677, +0.0000020671,0.0000020676,0.0000020693,0.0000020720,0.0000020754, +0.0000020792,0.0000020830,0.0000020870,0.0000020911,0.0000020946, +0.0000020979,0.0000021015,0.0000021053,0.0000021092,0.0000021128, +0.0000021161,0.0000021190,0.0000021216,0.0000021236,0.0000021249, +0.0000021255,0.0000021254,0.0000021246,0.0000021231,0.0000021212, +0.0000021188,0.0000021161,0.0000021132,0.0000021104,0.0000021075, +0.0000021043,0.0000021006,0.0000020971,0.0000020937,0.0000020900, +0.0000020869,0.0000020851,0.0000020849,0.0000020842,0.0000020847, +0.0000020853,0.0000020855,0.0000020855,0.0000020855,0.0000020853, +0.0000020853,0.0000020861,0.0000020874,0.0000020890,0.0000020909, +0.0000020929,0.0000020948,0.0000020965,0.0000020982,0.0000020998, +0.0000021011,0.0000021019,0.0000021022,0.0000021022,0.0000021022, +0.0000021021,0.0000021017,0.0000021015,0.0000021017,0.0000021026, +0.0000021039,0.0000021052,0.0000021062,0.0000021069,0.0000021076, +0.0000021082,0.0000021089,0.0000021097,0.0000021111,0.0000021132, +0.0000021156,0.0000021179,0.0000021199,0.0000021208,0.0000021217, +0.0000021234,0.0000021248,0.0000021261,0.0000021271,0.0000021276, +0.0000021278,0.0000021282,0.0000021283,0.0000021284,0.0000021290, +0.0000021296,0.0000021302,0.0000021314,0.0000021338,0.0000021371, +0.0000021415,0.0000021462,0.0000021507,0.0000021552,0.0000021593, +0.0000021627,0.0000021653,0.0000021672,0.0000021690,0.0000021708, +0.0000021731,0.0000021758,0.0000021787,0.0000021816,0.0000021847, +0.0000021877,0.0000021904,0.0000021929,0.0000021950,0.0000021968, +0.0000021980,0.0000021985,0.0000021982,0.0000021974,0.0000021961, +0.0000021943,0.0000021924,0.0000021906,0.0000021888,0.0000021871, +0.0000021855,0.0000021839,0.0000021823,0.0000021808,0.0000021796, +0.0000021787,0.0000021778,0.0000021776,0.0000021775,0.0000021767, +0.0000021765,0.0000021764,0.0000021758,0.0000021749,0.0000021739, +0.0000021728,0.0000021714,0.0000021697,0.0000021679,0.0000021661, +0.0000021644,0.0000021626,0.0000021608,0.0000021593,0.0000021582, +0.0000021574,0.0000021562,0.0000021545,0.0000021523,0.0000021499, +0.0000021473,0.0000021445,0.0000021415,0.0000021386,0.0000021359, +0.0000021342,0.0000021327,0.0000021324,0.0000021326,0.0000021329, +0.0000021328,0.0000021318,0.0000021296,0.0000021269,0.0000021243, +0.0000021226,0.0000021215,0.0000021211,0.0000021209,0.0000021209, +0.0000021209,0.0000021205,0.0000021193,0.0000021175,0.0000021146, +0.0000021109,0.0000021071,0.0000021040,0.0000021024,0.0000021017, +0.0000021016,0.0000021013,0.0000021005,0.0000020988,0.0000020959, +0.0000020920,0.0000020875,0.0000020834,0.0000020800,0.0000020769, +0.0000020739,0.0000020711,0.0000020691,0.0000020678,0.0000020675, +0.0000020685,0.0000020705,0.0000020734,0.0000020770,0.0000020808, +0.0000020838,0.0000020852,0.0000020851,0.0000020828,0.0000020806, +0.0000020770,0.0000020736,0.0000020702,0.0000020670,0.0000020642, +0.0000020620,0.0000020595,0.0000020566,0.0000020536,0.0000020508, +0.0000020481,0.0000020457,0.0000020438,0.0000020429,0.0000020425, +0.0000020420,0.0000020416,0.0000020412,0.0000020408,0.0000020402, +0.0000020394,0.0000020386,0.0000020378,0.0000020369,0.0000020358, +0.0000020347,0.0000020337,0.0000020333,0.0000020333,0.0000020332, +0.0000020328,0.0000020321,0.0000020314,0.0000020308,0.0000020310, +0.0000020320,0.0000020336,0.0000020351,0.0000020365,0.0000020374, +0.0000020377,0.0000020379,0.0000020372,0.0000020356,0.0000020330, +0.0000020291,0.0000020238,0.0000020179,0.0000020125,0.0000020077, +0.0000020039,0.0000020013,0.0000020003,0.0000020001,0.0000020001, +0.0000019996,0.0000019984,0.0000019964,0.0000019930,0.0000019886, +0.0000019836,0.0000019794,0.0000019768,0.0000019759,0.0000019768, +0.0000019790,0.0000019793,0.0000019767,0.0000019699,0.0000019600, +0.0000019495,0.0000019419,0.0000019373,0.0000019372,0.0000019384, +0.0000019389,0.0000019384,0.0000019379,0.0000019378,0.0000019383, +0.0000019399,0.0000019437,0.0000019488,0.0000019537,0.0000019567, +0.0000019570,0.0000019557,0.0000019521,0.0000019484,0.0000019465, +0.0000019473,0.0000019489,0.0000019503,0.0000019501,0.0000019496, +0.0000019507,0.0000019538,0.0000019586,0.0000019648,0.0000019716, +0.0000019777,0.0000019820,0.0000019847,0.0000019875,0.0000019914, +0.0000019964,0.0000020008,0.0000020035,0.0000020043,0.0000020038, +0.0000020028,0.0000020015,0.0000019999,0.0000019980,0.0000019961, +0.0000019946,0.0000019929,0.0000019911,0.0000019892,0.0000019879, +0.0000019873,0.0000019872,0.0000019876,0.0000019887,0.0000019911, +0.0000019943,0.0000019977,0.0000020006,0.0000020036,0.0000020068, +0.0000020102,0.0000020138,0.0000020176,0.0000020216,0.0000020254, +0.0000020285,0.0000020311,0.0000020329,0.0000020343,0.0000020354, +0.0000020360,0.0000020362,0.0000020364,0.0000020367,0.0000020372, +0.0000020384,0.0000020398,0.0000020415,0.0000020433,0.0000020451, +0.0000020471,0.0000020493,0.0000020514,0.0000020536,0.0000020555, +0.0000020570,0.0000020581,0.0000020591,0.0000020598,0.0000020599, +0.0000020593,0.0000020581,0.0000020567,0.0000020549,0.0000020532, +0.0000020523,0.0000020530,0.0000020556,0.0000020594,0.0000020634, +0.0000020675,0.0000020711,0.0000020732,0.0000020738,0.0000020747, +0.0000020788,0.0000020866,0.0000020965,0.0000021055,0.0000021103, +0.0000021110,0.0000021113,0.0000021128,0.0000021152,0.0000021170, +0.0000021165,0.0000021153,0.0000021147,0.0000021127,0.0000021089, +0.0000021053,0.0000021010,0.0000020954,0.0000020909,0.0000020879, +0.0000020847,0.0000020821,0.0000020810,0.0000020804,0.0000020796, +0.0000020781,0.0000020766,0.0000020756,0.0000020754,0.0000020756, +0.0000020751,0.0000020737,0.0000020715,0.0000020682,0.0000020638, +0.0000020592,0.0000020547,0.0000020506,0.0000020470,0.0000020437, +0.0000020406,0.0000020377,0.0000020353,0.0000020331,0.0000020312, +0.0000020293,0.0000020273,0.0000020254,0.0000020233,0.0000020210, +0.0000020186,0.0000020163,0.0000020143,0.0000020127,0.0000020114, +0.0000020104,0.0000020096,0.0000020092,0.0000020092,0.0000020094, +0.0000020097,0.0000020099,0.0000020101,0.0000020101,0.0000020103, +0.0000020106,0.0000020111,0.0000020115,0.0000020118,0.0000020121, +0.0000020127,0.0000020136,0.0000020148,0.0000020161,0.0000020175, +0.0000020190,0.0000020203,0.0000020214,0.0000020225,0.0000020234, +0.0000020243,0.0000020251,0.0000020258,0.0000020264,0.0000020268, +0.0000020273,0.0000020279,0.0000020282,0.0000020283,0.0000020282, +0.0000020276,0.0000020268,0.0000020258,0.0000020246,0.0000020237, +0.0000020230,0.0000020226,0.0000020224,0.0000020226,0.0000020233, +0.0000020243,0.0000020256,0.0000020267,0.0000020277,0.0000020283, +0.0000020286,0.0000020285,0.0000020275,0.0000020262,0.0000020238, +0.0000020205,0.0000020168,0.0000020129,0.0000020087,0.0000020045, +0.0000020006,0.0000019974,0.0000019953,0.0000019952,0.0000019954, +0.0000019973,0.0000020014,0.0000020069,0.0000020135,0.0000020198, +0.0000020249,0.0000020283,0.0000020300,0.0000020298,0.0000020289, +0.0000020278,0.0000020260,0.0000020247,0.0000020219,0.0000020194, +0.0000020164,0.0000020123,0.0000020077,0.0000020028,0.0000019984, +0.0000019948,0.0000019922,0.0000019915,0.0000019920,0.0000019932, +0.0000019953,0.0000019972,0.0000019982,0.0000019983,0.0000019980, +0.0000019976,0.0000019971,0.0000019968,0.0000019967,0.0000019960, +0.0000019939,0.0000019908,0.0000019874,0.0000019833,0.0000019787, +0.0000019743,0.0000019713,0.0000019698,0.0000019700,0.0000019720, +0.0000019750,0.0000019782,0.0000019811,0.0000019824,0.0000019819, +0.0000019781,0.0000019714,0.0000019639,0.0000019584,0.0000019569, +0.0000019579,0.0000019602,0.0000019624,0.0000019633,0.0000019626, +0.0000019579,0.0000019498,0.0000019413,0.0000019354,0.0000019335, +0.0000019343,0.0000019363,0.0000019378,0.0000019383,0.0000019387, +0.0000019394,0.0000019394,0.0000019386,0.0000019386,0.0000019404, +0.0000019425,0.0000019455,0.0000019495,0.0000019536,0.0000019562, +0.0000019571,0.0000019567,0.0000019558,0.0000019549,0.0000019541, +0.0000019526,0.0000019502,0.0000019475,0.0000019446,0.0000019410, +0.0000019373,0.0000019354,0.0000019357,0.0000019366,0.0000019358, +0.0000019322,0.0000019266,0.0000019214,0.0000019170,0.0000019133, +0.0000019108,0.0000019106,0.0000019132,0.0000019184,0.0000019261, +0.0000019359,0.0000019466,0.0000019563,0.0000019634,0.0000019676, +0.0000019696,0.0000019704,0.0000019706,0.0000019710,0.0000019721, +0.0000019740,0.0000019769,0.0000019806,0.0000019854,0.0000019907, +0.0000019955,0.0000019996,0.0000020028,0.0000020055,0.0000020081, +0.0000020102,0.0000020116,0.0000020120,0.0000020116,0.0000020106, +0.0000020088,0.0000020067,0.0000020044,0.0000020018,0.0000019989, +0.0000019954,0.0000019913,0.0000019867,0.0000019816,0.0000019752, +0.0000019679,0.0000019609,0.0000019548,0.0000019497,0.0000019448, +0.0000019412,0.0000019391,0.0000019375,0.0000019359,0.0000019342, +0.0000019333,0.0000019328,0.0000019317,0.0000019302,0.0000019278, +0.0000019253,0.0000019231,0.0000019209,0.0000019186,0.0000019160, +0.0000019134,0.0000019121,0.0000019116,0.0000019105,0.0000019083, +0.0000019050,0.0000019013,0.0000018954,0.0000018885,0.0000018820, +0.0000018763,0.0000018716,0.0000018678,0.0000018640,0.0000018594, +0.0000018553,0.0000018517,0.0000018483,0.0000018452,0.0000018427, +0.0000018416,0.0000018414,0.0000018420,0.0000018437,0.0000018462, +0.0000018494,0.0000018526,0.0000018558,0.0000018589,0.0000018620, +0.0000018651,0.0000018680,0.0000018707,0.0000018736,0.0000018756, +0.0000018753,0.0000018735,0.0000018713,0.0000018695,0.0000018681, +0.0000018674,0.0000018669,0.0000018656,0.0000018633,0.0000018599, +0.0000018556,0.0000018506,0.0000018453,0.0000018400,0.0000018350, +0.0000018303,0.0000018255,0.0000018208,0.0000018169,0.0000018144, +0.0000018134,0.0000018135,0.0000018141,0.0000018149,0.0000018158, +0.0000018165,0.0000018175,0.0000018186,0.0000018197,0.0000018209, +0.0000018223,0.0000018240,0.0000018253,0.0000018264,0.0000018273, +0.0000018277,0.0000018279,0.0000018280,0.0000018282,0.0000018283, +0.0000018285,0.0000018284,0.0000018282,0.0000018280,0.0000018276, +0.0000018271,0.0000018265,0.0000018259,0.0000018251,0.0000018241, +0.0000018233,0.0000018230,0.0000018231,0.0000018238,0.0000018255, +0.0000018277,0.0000018298,0.0000018317,0.0000018335,0.0000018354, +0.0000018371,0.0000018385,0.0000018395,0.0000018403,0.0000018410, +0.0000018415,0.0000018420,0.0000018422,0.0000018422,0.0000018421, +0.0000018419,0.0000018415,0.0000018408,0.0000018401,0.0000018392, +0.0000018381,0.0000018368,0.0000018354,0.0000018342,0.0000018334, +0.0000018329,0.0000018327,0.0000018328,0.0000018330,0.0000018334, +0.0000018341,0.0000018350,0.0000018360,0.0000018373,0.0000018388, +0.0000018403,0.0000018420,0.0000018438,0.0000018458,0.0000018478, +0.0000018498,0.0000018516,0.0000018531,0.0000018540,0.0000018551, +0.0000018566,0.0000018587,0.0000018615,0.0000018649,0.0000018684, +0.0000018713,0.0000018739,0.0000018770,0.0000018813,0.0000018869, +0.0000018932,0.0000018990,0.0000019032,0.0000019060,0.0000019076, +0.0000019082,0.0000019076,0.0000019062,0.0000019037,0.0000019012, +0.0000018990,0.0000018976,0.0000018973,0.0000018980,0.0000019006, +0.0000019046,0.0000019088,0.0000019122,0.0000019143,0.0000019162, +0.0000019184,0.0000019205,0.0000019216,0.0000019209,0.0000019199, +0.0000019198,0.0000019217,0.0000019242,0.0000019255,0.0000019242, +0.0000019207,0.0000019171,0.0000019157,0.0000019163,0.0000019185, +0.0000019217,0.0000019258,0.0000019301,0.0000019335,0.0000019356, +0.0000019357,0.0000019347,0.0000019327,0.0000019300,0.0000019274, +0.0000019257,0.0000019259,0.0000019274,0.0000019305,0.0000019349, +0.0000019402,0.0000019465,0.0000019539,0.0000019625,0.0000019723, +0.0000019830,0.0000019937,0.0000020036,0.0000020118,0.0000020177, +0.0000020206,0.0000020204,0.0000020202,0.0000020194,0.0000020187, +0.0000020183,0.0000020177,0.0000020169,0.0000020159,0.0000020146, +0.0000020131,0.0000020116,0.0000020102,0.0000020095,0.0000020098, +0.0000020113,0.0000020138,0.0000020165,0.0000020191,0.0000020212, +0.0000020227,0.0000020239,0.0000020251,0.0000020265,0.0000020275, +0.0000020280,0.0000020284,0.0000020292,0.0000020303,0.0000020315, +0.0000020328,0.0000020340,0.0000020351,0.0000020360,0.0000020369, +0.0000020374,0.0000020377,0.0000020376,0.0000020374,0.0000020369, +0.0000020363,0.0000020353,0.0000020340,0.0000020325,0.0000020307, +0.0000020288,0.0000020271,0.0000020256,0.0000020246,0.0000020239, +0.0000020235,0.0000020236,0.0000020239,0.0000020243,0.0000020245, +0.0000020248,0.0000020252,0.0000020255,0.0000020258,0.0000020260, +0.0000020265,0.0000020270,0.0000020275,0.0000020278,0.0000020279, +0.0000020279,0.0000020275,0.0000020270,0.0000020263,0.0000020253, +0.0000020238,0.0000020214,0.0000020185,0.0000020147,0.0000020096, +0.0000020031,0.0000019961,0.0000019895,0.0000019836,0.0000019787, +0.0000019748,0.0000019719,0.0000019693,0.0000019667,0.0000019636, +0.0000019602,0.0000019569,0.0000019540,0.0000019515,0.0000019493, +0.0000019470,0.0000019449,0.0000019432,0.0000019417,0.0000019402, +0.0000019385,0.0000019372,0.0000019368,0.0000019363,0.0000019359, +0.0000019347,0.0000019328,0.0000019301,0.0000019264,0.0000019230, +0.0000019209,0.0000019199,0.0000019191,0.0000019175,0.0000019153, +0.0000019130,0.0000019130,0.0000019109,0.0000019093,0.0000019088, +0.0000019103,0.0000019132,0.0000019161,0.0000019184,0.0000019197, +0.0000019211,0.0000019236,0.0000019279,0.0000019330,0.0000019384, +0.0000019434,0.0000019475,0.0000019503,0.0000019524,0.0000019543, +0.0000019559,0.0000019574,0.0000019590,0.0000019599,0.0000019592, +0.0000019560,0.0000019516,0.0000019485,0.0000019475,0.0000019474, +0.0000019474,0.0000019470,0.0000019470,0.0000019473,0.0000019478, +0.0000019483,0.0000019485,0.0000019486,0.0000019489,0.0000019495, +0.0000019500,0.0000019500,0.0000019497,0.0000019491,0.0000019484, +0.0000019475,0.0000019466,0.0000019459,0.0000019454,0.0000019452, +0.0000019452,0.0000019454,0.0000019462,0.0000019477,0.0000019491, +0.0000019504,0.0000019514,0.0000019521,0.0000019527,0.0000019529, +0.0000019529,0.0000019523,0.0000019519,0.0000019516,0.0000019513, +0.0000019509,0.0000019502,0.0000019492,0.0000019481,0.0000019473, +0.0000019464,0.0000019457,0.0000019448,0.0000019433,0.0000019416, +0.0000019395,0.0000019371,0.0000019346,0.0000019319,0.0000019290, +0.0000019261,0.0000019232,0.0000019203,0.0000019181,0.0000019181, +0.0000019185,0.0000019193,0.0000019202,0.0000019215,0.0000019234, +0.0000019256,0.0000019276,0.0000019297,0.0000019315,0.0000019328, +0.0000019334,0.0000019337,0.0000019339,0.0000019335,0.0000019324, +0.0000019305,0.0000019284,0.0000019262,0.0000019237,0.0000019208, +0.0000019179,0.0000019154,0.0000019133,0.0000019122,0.0000019115, +0.0000019102,0.0000019078,0.0000019030,0.0000018974,0.0000018930, +0.0000018921,0.0000018939,0.0000018970,0.0000019005,0.0000019044, +0.0000019086,0.0000019129,0.0000019162,0.0000019186,0.0000019202, +0.0000019207,0.0000019215,0.0000019226,0.0000019236,0.0000019251, +0.0000019281,0.0000019332,0.0000019401,0.0000019470,0.0000019533, +0.0000019585,0.0000019623,0.0000019650,0.0000019667,0.0000019677, +0.0000019678,0.0000019673,0.0000019670,0.0000019674,0.0000019685, +0.0000019705,0.0000019732,0.0000019758,0.0000019786,0.0000019815, +0.0000019842,0.0000019863,0.0000019879,0.0000019892,0.0000019900, +0.0000019902,0.0000019907,0.0000019914,0.0000019920,0.0000019924, +0.0000019931,0.0000019945,0.0000019961,0.0000019977,0.0000019998, +0.0000020018,0.0000020039,0.0000020060,0.0000020080,0.0000020096, +0.0000020111,0.0000020127,0.0000020138,0.0000020149,0.0000020160, +0.0000020175,0.0000020195,0.0000020217,0.0000020239,0.0000020259, +0.0000020284,0.0000020312,0.0000020339,0.0000020369,0.0000020400, +0.0000020431,0.0000020458,0.0000020480,0.0000020501,0.0000020520, +0.0000020535,0.0000020545,0.0000020554,0.0000020564,0.0000020573, +0.0000020581,0.0000020584,0.0000020589,0.0000020593,0.0000020594, +0.0000020595,0.0000020595,0.0000020591,0.0000020583,0.0000020572, +0.0000020561,0.0000020557,0.0000020557,0.0000020560,0.0000020564, +0.0000020567,0.0000020572,0.0000020580,0.0000020588,0.0000020597, +0.0000020605,0.0000020612,0.0000020621,0.0000020632,0.0000020645, +0.0000020660,0.0000020674,0.0000020688,0.0000020705,0.0000020723, +0.0000020745,0.0000020771,0.0000020803,0.0000020838,0.0000020872, +0.0000020902,0.0000020928,0.0000020955,0.0000020983,0.0000021016, +0.0000021054,0.0000021103,0.0000021152,0.0000021180,0.0000021185, +0.0000021179,0.0000021165,0.0000021146,0.0000021113,0.0000021048, +0.0000020962,0.0000020886,0.0000020834,0.0000020794,0.0000020737, +0.0000020678,0.0000020660,0.0000020677,0.0000020718,0.0000020768, +0.0000020818,0.0000020865,0.0000020904,0.0000020936,0.0000020958, +0.0000020967,0.0000020969,0.0000020970,0.0000020963,0.0000020935, +0.0000020909,0.0000020898,0.0000020891,0.0000020876,0.0000020863, +0.0000020866,0.0000020896,0.0000020936,0.0000020971,0.0000020995, +0.0000021010,0.0000021021,0.0000021032,0.0000021047,0.0000021066, +0.0000021087,0.0000021102,0.0000021108,0.0000021102,0.0000021080, +0.0000021048,0.0000021012,0.0000020979,0.0000020956,0.0000020936, +0.0000020907,0.0000020863,0.0000020817,0.0000020778,0.0000020744, +0.0000020716,0.0000020707,0.0000020729,0.0000020766,0.0000020800, +0.0000020833,0.0000020858,0.0000020862,0.0000020856,0.0000020849, +0.0000020848,0.0000020855,0.0000020856,0.0000020840,0.0000020798, +0.0000020743,0.0000020691,0.0000020645,0.0000020601,0.0000020551, +0.0000020492,0.0000020437,0.0000020398,0.0000020378,0.0000020373, +0.0000020374,0.0000020375,0.0000020369,0.0000020356,0.0000020338, +0.0000020324,0.0000020320,0.0000020323,0.0000020324,0.0000020312, +0.0000020271,0.0000020199,0.0000020111,0.0000020046,0.0000020029, +0.0000020049,0.0000020113,0.0000020213,0.0000020301,0.0000020367, +0.0000020439,0.0000020485,0.0000020467,0.0000020316,0.0000020085, +0.0000019954,0.0000020019,0.0000020253,0.0000020420,0.0000020441, +0.0000020443,0.0000020493,0.0000020615,0.0000020711,0.0000020734, +0.0000020789,0.0000020909,0.0000020987,0.0000021008,0.0000021050, +0.0000021189,0.0000021406,0.0000021570,0.0000021662,0.0000021727, +0.0000021769,0.0000021799,0.0000021809,0.0000021791,0.0000021766, +0.0000021762,0.0000021763,0.0000021748,0.0000021724,0.0000021727, +0.0000021759,0.0000021779,0.0000021778,0.0000021776,0.0000021782, +0.0000021793,0.0000021804,0.0000021812,0.0000021816,0.0000021816, +0.0000021805,0.0000021780,0.0000021755,0.0000021731,0.0000021708, +0.0000021685,0.0000021659,0.0000021631,0.0000021604,0.0000021579, +0.0000021558,0.0000021543,0.0000021539,0.0000021535,0.0000021535, +0.0000021541,0.0000021560,0.0000021586,0.0000021613,0.0000021638, +0.0000021654,0.0000021647,0.0000021632,0.0000021604,0.0000021574, +0.0000021535,0.0000021485,0.0000021433,0.0000021384,0.0000021337, +0.0000021295,0.0000021263,0.0000021246,0.0000021230,0.0000021214, +0.0000021196,0.0000021170,0.0000021134,0.0000021085,0.0000021022, +0.0000020951,0.0000020877,0.0000020808,0.0000020752,0.0000020717, +0.0000020710,0.0000020715,0.0000020724,0.0000020740,0.0000020763, +0.0000020789,0.0000020815,0.0000020831,0.0000020842,0.0000020849, +0.0000020851,0.0000020853,0.0000020853,0.0000020857,0.0000020860, +0.0000020863,0.0000020871,0.0000020879,0.0000020884,0.0000020885, +0.0000020886,0.0000020886,0.0000020889,0.0000020889,0.0000020889, +0.0000020890,0.0000020890,0.0000020887,0.0000020889,0.0000020897, +0.0000020907,0.0000020918,0.0000020931,0.0000020940,0.0000020950, +0.0000020959,0.0000020967,0.0000020973,0.0000020982,0.0000020993, +0.0000020998,0.0000021001,0.0000021006,0.0000021014,0.0000021019, +0.0000021023,0.0000021022,0.0000021015,0.0000021008,0.0000020996, +0.0000020985,0.0000020973,0.0000020968,0.0000020964,0.0000020963, +0.0000020967,0.0000020979,0.0000020989,0.0000020995,0.0000020995, +0.0000020989,0.0000020982,0.0000020982,0.0000020991,0.0000021000, +0.0000021013,0.0000021032,0.0000021049,0.0000021060,0.0000021061, +0.0000021052,0.0000021039,0.0000021026,0.0000021004,0.0000020975, +0.0000020950,0.0000020933,0.0000020925,0.0000020911,0.0000020901, +0.0000020896,0.0000020894,0.0000020888,0.0000020877,0.0000020858, +0.0000020841,0.0000020826,0.0000020814,0.0000020809,0.0000020801, +0.0000020789,0.0000020773,0.0000020753,0.0000020734,0.0000020714, +0.0000020693,0.0000020677,0.0000020671,0.0000020675,0.0000020691, +0.0000020715,0.0000020746,0.0000020782,0.0000020817,0.0000020856, +0.0000020895,0.0000020932,0.0000020963,0.0000020994,0.0000021030, +0.0000021065,0.0000021096,0.0000021128,0.0000021161,0.0000021192, +0.0000021218,0.0000021239,0.0000021256,0.0000021266,0.0000021271, +0.0000021271,0.0000021268,0.0000021260,0.0000021248,0.0000021235, +0.0000021222,0.0000021210,0.0000021194,0.0000021170,0.0000021143, +0.0000021113,0.0000021071,0.0000021021,0.0000020972,0.0000020928, +0.0000020887,0.0000020854,0.0000020842,0.0000020821,0.0000020813, +0.0000020816,0.0000020826,0.0000020841,0.0000020858,0.0000020872, +0.0000020880,0.0000020887,0.0000020892,0.0000020894,0.0000020894, +0.0000020895,0.0000020900,0.0000020906,0.0000020913,0.0000020922, +0.0000020932,0.0000020943,0.0000020953,0.0000020959,0.0000020962, +0.0000020970,0.0000020989,0.0000021013,0.0000021036,0.0000021054, +0.0000021066,0.0000021071,0.0000021071,0.0000021072,0.0000021070, +0.0000021068,0.0000021071,0.0000021087,0.0000021113,0.0000021142, +0.0000021168,0.0000021197,0.0000021232,0.0000021260,0.0000021284, +0.0000021306,0.0000021316,0.0000021320,0.0000021321,0.0000021317, +0.0000021313,0.0000021310,0.0000021309,0.0000021308,0.0000021320, +0.0000021334,0.0000021354,0.0000021381,0.0000021412,0.0000021446, +0.0000021485,0.0000021523,0.0000021555,0.0000021580,0.0000021599, +0.0000021615,0.0000021632,0.0000021652,0.0000021674,0.0000021695, +0.0000021717,0.0000021741,0.0000021764,0.0000021789,0.0000021812, +0.0000021833,0.0000021850,0.0000021863,0.0000021868,0.0000021866, +0.0000021857,0.0000021840,0.0000021819,0.0000021798,0.0000021777, +0.0000021758,0.0000021741,0.0000021725,0.0000021711,0.0000021702, +0.0000021697,0.0000021693,0.0000021691,0.0000021694,0.0000021700, +0.0000021706,0.0000021712,0.0000021718,0.0000021720,0.0000021717, +0.0000021711,0.0000021702,0.0000021691,0.0000021677,0.0000021661, +0.0000021644,0.0000021627,0.0000021614,0.0000021601,0.0000021589, +0.0000021581,0.0000021578,0.0000021571,0.0000021562,0.0000021550, +0.0000021535,0.0000021516,0.0000021495,0.0000021471,0.0000021443, +0.0000021411,0.0000021375,0.0000021342,0.0000021315,0.0000021299, +0.0000021285,0.0000021274,0.0000021264,0.0000021249,0.0000021230, +0.0000021209,0.0000021193,0.0000021186,0.0000021182,0.0000021179, +0.0000021177,0.0000021179,0.0000021180,0.0000021172,0.0000021154, +0.0000021125,0.0000021084,0.0000021036,0.0000020990,0.0000020960, +0.0000020942,0.0000020936,0.0000020934,0.0000020933,0.0000020928, +0.0000020915,0.0000020886,0.0000020847,0.0000020802,0.0000020755, +0.0000020709,0.0000020664,0.0000020624,0.0000020589,0.0000020560, +0.0000020542,0.0000020535,0.0000020540,0.0000020559,0.0000020590, +0.0000020628,0.0000020667,0.0000020706,0.0000020742,0.0000020769, +0.0000020783,0.0000020785,0.0000020768,0.0000020758,0.0000020736, +0.0000020710,0.0000020681,0.0000020649,0.0000020612,0.0000020572, +0.0000020532,0.0000020496,0.0000020462,0.0000020437,0.0000020423, +0.0000020418,0.0000020417,0.0000020419,0.0000020423,0.0000020427, +0.0000020429,0.0000020427,0.0000020421,0.0000020411,0.0000020399, +0.0000020387,0.0000020375,0.0000020362,0.0000020353,0.0000020351, +0.0000020349,0.0000020342,0.0000020330,0.0000020318,0.0000020307, +0.0000020297,0.0000020296,0.0000020303,0.0000020316,0.0000020336, +0.0000020359,0.0000020380,0.0000020391,0.0000020398,0.0000020400, +0.0000020393,0.0000020375,0.0000020339,0.0000020287,0.0000020231, +0.0000020176,0.0000020123,0.0000020077,0.0000020044,0.0000020025, +0.0000020019,0.0000020016,0.0000020010,0.0000019997,0.0000019975, +0.0000019940,0.0000019892,0.0000019841,0.0000019789,0.0000019750, +0.0000019724,0.0000019715,0.0000019722,0.0000019734,0.0000019728, +0.0000019701,0.0000019649,0.0000019565,0.0000019482,0.0000019423, +0.0000019397,0.0000019395,0.0000019406,0.0000019413,0.0000019411, +0.0000019404,0.0000019397,0.0000019404,0.0000019426,0.0000019466, +0.0000019513,0.0000019547,0.0000019558,0.0000019544,0.0000019520, +0.0000019500,0.0000019493,0.0000019498,0.0000019502,0.0000019494, +0.0000019484,0.0000019469,0.0000019477,0.0000019505,0.0000019548, +0.0000019607,0.0000019675,0.0000019741,0.0000019795,0.0000019833, +0.0000019863,0.0000019897,0.0000019937,0.0000019982,0.0000020016, +0.0000020040,0.0000020041,0.0000020038,0.0000020033,0.0000020024, +0.0000020008,0.0000019989,0.0000019967,0.0000019942,0.0000019913, +0.0000019882,0.0000019861,0.0000019846,0.0000019842,0.0000019848, +0.0000019867,0.0000019900,0.0000019940,0.0000019977,0.0000020010, +0.0000020042,0.0000020075,0.0000020109,0.0000020145,0.0000020187, +0.0000020234,0.0000020281,0.0000020320,0.0000020351,0.0000020372, +0.0000020387,0.0000020397,0.0000020402,0.0000020405,0.0000020405, +0.0000020404,0.0000020405,0.0000020408,0.0000020415,0.0000020420, +0.0000020428,0.0000020442,0.0000020461,0.0000020484,0.0000020505, +0.0000020521,0.0000020535,0.0000020544,0.0000020550,0.0000020553, +0.0000020553,0.0000020547,0.0000020535,0.0000020521,0.0000020507, +0.0000020500,0.0000020505,0.0000020531,0.0000020571,0.0000020618, +0.0000020664,0.0000020700,0.0000020722,0.0000020733,0.0000020752, +0.0000020801,0.0000020880,0.0000020975,0.0000021063,0.0000021116, +0.0000021126,0.0000021127,0.0000021136,0.0000021155,0.0000021174, +0.0000021174,0.0000021159,0.0000021149,0.0000021139,0.0000021109, +0.0000021070,0.0000021030,0.0000020980,0.0000020928,0.0000020894, +0.0000020869,0.0000020840,0.0000020813,0.0000020799,0.0000020796, +0.0000020794,0.0000020788,0.0000020774,0.0000020758,0.0000020746, +0.0000020737,0.0000020723,0.0000020703,0.0000020675,0.0000020639, +0.0000020597,0.0000020554,0.0000020515,0.0000020479,0.0000020446, +0.0000020413,0.0000020382,0.0000020355,0.0000020330,0.0000020307, +0.0000020283,0.0000020258,0.0000020235,0.0000020213,0.0000020190, +0.0000020167,0.0000020145,0.0000020124,0.0000020108,0.0000020096, +0.0000020087,0.0000020082,0.0000020081,0.0000020083,0.0000020087, +0.0000020087,0.0000020085,0.0000020079,0.0000020072,0.0000020063, +0.0000020054,0.0000020046,0.0000020037,0.0000020029,0.0000020023, +0.0000020022,0.0000020025,0.0000020032,0.0000020042,0.0000020054, +0.0000020066,0.0000020078,0.0000020090,0.0000020102,0.0000020114, +0.0000020127,0.0000020142,0.0000020158,0.0000020174,0.0000020190, +0.0000020207,0.0000020225,0.0000020238,0.0000020246,0.0000020247, +0.0000020243,0.0000020236,0.0000020226,0.0000020216,0.0000020206, +0.0000020198,0.0000020190,0.0000020183,0.0000020177,0.0000020172, +0.0000020172,0.0000020179,0.0000020189,0.0000020204,0.0000020218, +0.0000020232,0.0000020243,0.0000020251,0.0000020255,0.0000020255, +0.0000020250,0.0000020233,0.0000020208,0.0000020178,0.0000020142, +0.0000020103,0.0000020062,0.0000020022,0.0000019987,0.0000019965, +0.0000019950,0.0000019949,0.0000019966,0.0000019999,0.0000020047, +0.0000020105,0.0000020165,0.0000020220,0.0000020265,0.0000020291, +0.0000020296,0.0000020292,0.0000020275,0.0000020248,0.0000020218, +0.0000020181,0.0000020136,0.0000020089,0.0000020039,0.0000019991, +0.0000019952,0.0000019922,0.0000019911,0.0000019915,0.0000019929, +0.0000019956,0.0000019983,0.0000020005,0.0000020021,0.0000020028, +0.0000020031,0.0000020028,0.0000020021,0.0000020014,0.0000020008, +0.0000019996,0.0000019972,0.0000019934,0.0000019893,0.0000019845, +0.0000019792,0.0000019741,0.0000019702,0.0000019682,0.0000019682, +0.0000019704,0.0000019736,0.0000019773,0.0000019807,0.0000019828, +0.0000019831,0.0000019803,0.0000019737,0.0000019655,0.0000019590, +0.0000019569,0.0000019575,0.0000019600,0.0000019625,0.0000019637, +0.0000019632,0.0000019585,0.0000019500,0.0000019404,0.0000019334, +0.0000019311,0.0000019318,0.0000019335,0.0000019349,0.0000019355, +0.0000019359,0.0000019366,0.0000019364,0.0000019353,0.0000019347, +0.0000019353,0.0000019372,0.0000019401,0.0000019445,0.0000019490, +0.0000019519,0.0000019528,0.0000019528,0.0000019526,0.0000019525, +0.0000019523,0.0000019509,0.0000019483,0.0000019449,0.0000019410, +0.0000019364,0.0000019329,0.0000019322,0.0000019333,0.0000019340, +0.0000019326,0.0000019286,0.0000019237,0.0000019192,0.0000019146, +0.0000019101,0.0000019071,0.0000019065,0.0000019083,0.0000019119, +0.0000019176,0.0000019255,0.0000019352,0.0000019452,0.0000019539, +0.0000019603,0.0000019644,0.0000019666,0.0000019676,0.0000019682, +0.0000019690,0.0000019704,0.0000019725,0.0000019759,0.0000019805, +0.0000019855,0.0000019900,0.0000019937,0.0000019968,0.0000020000, +0.0000020029,0.0000020051,0.0000020064,0.0000020067,0.0000020062, +0.0000020048,0.0000020025,0.0000019995,0.0000019962,0.0000019928, +0.0000019890,0.0000019850,0.0000019809,0.0000019766,0.0000019715, +0.0000019655,0.0000019597,0.0000019547,0.0000019502,0.0000019457, +0.0000019422,0.0000019400,0.0000019381,0.0000019359,0.0000019336, +0.0000019317,0.0000019299,0.0000019284,0.0000019273,0.0000019258, +0.0000019240,0.0000019219,0.0000019191,0.0000019158,0.0000019122, +0.0000019089,0.0000019070,0.0000019062,0.0000019054,0.0000019040, +0.0000019014,0.0000018982,0.0000018928,0.0000018861,0.0000018799, +0.0000018746,0.0000018701,0.0000018662,0.0000018618,0.0000018571, +0.0000018527,0.0000018485,0.0000018443,0.0000018408,0.0000018383, +0.0000018371,0.0000018365,0.0000018365,0.0000018371,0.0000018383, +0.0000018402,0.0000018426,0.0000018452,0.0000018481,0.0000018514, +0.0000018548,0.0000018579,0.0000018605,0.0000018634,0.0000018668, +0.0000018690,0.0000018687,0.0000018671,0.0000018656,0.0000018642, +0.0000018629,0.0000018621,0.0000018608,0.0000018584,0.0000018547, +0.0000018503,0.0000018454,0.0000018404,0.0000018358,0.0000018315, +0.0000018271,0.0000018221,0.0000018174,0.0000018147,0.0000018137, +0.0000018137,0.0000018141,0.0000018148,0.0000018156,0.0000018160, +0.0000018161,0.0000018163,0.0000018168,0.0000018176,0.0000018185, +0.0000018196,0.0000018206,0.0000018209,0.0000018206,0.0000018196, +0.0000018183,0.0000018168,0.0000018154,0.0000018141,0.0000018132, +0.0000018121,0.0000018107,0.0000018092,0.0000018076,0.0000018057, +0.0000018039,0.0000018023,0.0000018008,0.0000017991,0.0000017973, +0.0000017959,0.0000017950,0.0000017945,0.0000017949,0.0000017961, +0.0000017980,0.0000018000,0.0000018019,0.0000018039,0.0000018059, +0.0000018078,0.0000018095,0.0000018111,0.0000018126,0.0000018142, +0.0000018157,0.0000018170,0.0000018182,0.0000018194,0.0000018206, +0.0000018217,0.0000018225,0.0000018230,0.0000018232,0.0000018232, +0.0000018230,0.0000018225,0.0000018217,0.0000018208,0.0000018199, +0.0000018192,0.0000018187,0.0000018186,0.0000018188,0.0000018193, +0.0000018202,0.0000018217,0.0000018234,0.0000018255,0.0000018281, +0.0000018307,0.0000018332,0.0000018356,0.0000018379,0.0000018402, +0.0000018425,0.0000018449,0.0000018472,0.0000018491,0.0000018508, +0.0000018526,0.0000018546,0.0000018570,0.0000018602,0.0000018639, +0.0000018676,0.0000018711,0.0000018743,0.0000018771,0.0000018799, +0.0000018836,0.0000018883,0.0000018933,0.0000018980,0.0000019011, +0.0000019030,0.0000019041,0.0000019044,0.0000019037,0.0000019026, +0.0000019007,0.0000018989,0.0000018974,0.0000018967,0.0000018972, +0.0000018996,0.0000019038,0.0000019083,0.0000019119,0.0000019142, +0.0000019159,0.0000019177,0.0000019194,0.0000019201,0.0000019198, +0.0000019197,0.0000019203,0.0000019221,0.0000019242,0.0000019248, +0.0000019233,0.0000019197,0.0000019162,0.0000019147,0.0000019149, +0.0000019162,0.0000019191,0.0000019232,0.0000019277,0.0000019313, +0.0000019338,0.0000019339,0.0000019332,0.0000019320,0.0000019303, +0.0000019285,0.0000019270,0.0000019273,0.0000019282,0.0000019307, +0.0000019345,0.0000019394,0.0000019453,0.0000019519,0.0000019592, +0.0000019672,0.0000019759,0.0000019851,0.0000019941,0.0000020024, +0.0000020094,0.0000020147,0.0000020177,0.0000020184,0.0000020180, +0.0000020175,0.0000020165,0.0000020156,0.0000020146,0.0000020132, +0.0000020116,0.0000020096,0.0000020076,0.0000020056,0.0000020040, +0.0000020035,0.0000020042,0.0000020060,0.0000020084,0.0000020107, +0.0000020126,0.0000020142,0.0000020158,0.0000020175,0.0000020189, +0.0000020198,0.0000020206,0.0000020217,0.0000020231,0.0000020245, +0.0000020259,0.0000020271,0.0000020281,0.0000020289,0.0000020296, +0.0000020302,0.0000020304,0.0000020304,0.0000020301,0.0000020296, +0.0000020289,0.0000020281,0.0000020273,0.0000020265,0.0000020256, +0.0000020246,0.0000020237,0.0000020231,0.0000020228,0.0000020227, +0.0000020228,0.0000020231,0.0000020233,0.0000020233,0.0000020232, +0.0000020229,0.0000020227,0.0000020225,0.0000020223,0.0000020222, +0.0000020223,0.0000020228,0.0000020235,0.0000020242,0.0000020253, +0.0000020259,0.0000020265,0.0000020267,0.0000020266,0.0000020263, +0.0000020253,0.0000020235,0.0000020208,0.0000020172,0.0000020126, +0.0000020065,0.0000019992,0.0000019921,0.0000019858,0.0000019808, +0.0000019764,0.0000019729,0.0000019698,0.0000019671,0.0000019640, +0.0000019602,0.0000019562,0.0000019524,0.0000019490,0.0000019459, +0.0000019432,0.0000019415,0.0000019408,0.0000019408,0.0000019402, +0.0000019388,0.0000019376,0.0000019367,0.0000019365,0.0000019366, +0.0000019368,0.0000019363,0.0000019356,0.0000019330,0.0000019289, +0.0000019243,0.0000019210,0.0000019188,0.0000019172,0.0000019153, +0.0000019149,0.0000019128,0.0000019108,0.0000019083,0.0000019066, +0.0000019060,0.0000019074,0.0000019102,0.0000019133,0.0000019153, +0.0000019164,0.0000019177,0.0000019204,0.0000019250,0.0000019310, +0.0000019372,0.0000019424,0.0000019463,0.0000019490,0.0000019509, +0.0000019526,0.0000019542,0.0000019553,0.0000019564,0.0000019569, +0.0000019553,0.0000019519,0.0000019480,0.0000019457,0.0000019454, +0.0000019461,0.0000019464,0.0000019461,0.0000019458,0.0000019460, +0.0000019464,0.0000019465,0.0000019462,0.0000019456,0.0000019448, +0.0000019438,0.0000019427,0.0000019418,0.0000019411,0.0000019405, +0.0000019399,0.0000019393,0.0000019389,0.0000019390,0.0000019391, +0.0000019392,0.0000019399,0.0000019416,0.0000019435,0.0000019450, +0.0000019461,0.0000019471,0.0000019482,0.0000019494,0.0000019505, +0.0000019511,0.0000019513,0.0000019511,0.0000019508,0.0000019504, +0.0000019496,0.0000019482,0.0000019466,0.0000019450,0.0000019434, +0.0000019413,0.0000019393,0.0000019370,0.0000019345,0.0000019319, +0.0000019289,0.0000019258,0.0000019225,0.0000019191,0.0000019158, +0.0000019126,0.0000019094,0.0000019074,0.0000019073,0.0000019076, +0.0000019084,0.0000019096,0.0000019112,0.0000019134,0.0000019161, +0.0000019191,0.0000019220,0.0000019246,0.0000019268,0.0000019285, +0.0000019296,0.0000019306,0.0000019309,0.0000019301,0.0000019282, +0.0000019261,0.0000019237,0.0000019214,0.0000019191,0.0000019166, +0.0000019140,0.0000019114,0.0000019096,0.0000019090,0.0000019094, +0.0000019093,0.0000019074,0.0000019021,0.0000018950,0.0000018910, +0.0000018905,0.0000018920,0.0000018949,0.0000018981,0.0000019014, +0.0000019050,0.0000019079,0.0000019100,0.0000019114,0.0000019128, +0.0000019146,0.0000019179,0.0000019202,0.0000019216,0.0000019228, +0.0000019246,0.0000019281,0.0000019331,0.0000019394,0.0000019455, +0.0000019508,0.0000019549,0.0000019581,0.0000019608,0.0000019629, +0.0000019638,0.0000019637,0.0000019634,0.0000019627,0.0000019626, +0.0000019634,0.0000019644,0.0000019660,0.0000019681,0.0000019706, +0.0000019730,0.0000019749,0.0000019767,0.0000019778,0.0000019785, +0.0000019792,0.0000019799,0.0000019806,0.0000019810,0.0000019814, +0.0000019823,0.0000019834,0.0000019846,0.0000019859,0.0000019874, +0.0000019892,0.0000019910,0.0000019929,0.0000019945,0.0000019962, +0.0000019980,0.0000019998,0.0000020014,0.0000020032,0.0000020055, +0.0000020084,0.0000020114,0.0000020144,0.0000020174,0.0000020207, +0.0000020243,0.0000020280,0.0000020317,0.0000020354,0.0000020389, +0.0000020421,0.0000020450,0.0000020476,0.0000020499,0.0000020517, +0.0000020531,0.0000020543,0.0000020555,0.0000020564,0.0000020568, +0.0000020569,0.0000020573,0.0000020573,0.0000020573,0.0000020575, +0.0000020576,0.0000020571,0.0000020564,0.0000020554,0.0000020543, +0.0000020537,0.0000020537,0.0000020540,0.0000020546,0.0000020550, +0.0000020553,0.0000020557,0.0000020562,0.0000020568,0.0000020575, +0.0000020582,0.0000020592,0.0000020603,0.0000020616,0.0000020631, +0.0000020646,0.0000020660,0.0000020675,0.0000020691,0.0000020708, +0.0000020727,0.0000020753,0.0000020785,0.0000020823,0.0000020862, +0.0000020897,0.0000020925,0.0000020946,0.0000020969,0.0000021001, +0.0000021048,0.0000021103,0.0000021140,0.0000021149,0.0000021144, +0.0000021129,0.0000021108,0.0000021068,0.0000020997,0.0000020909, +0.0000020836,0.0000020787,0.0000020741,0.0000020681,0.0000020636, +0.0000020631,0.0000020660,0.0000020705,0.0000020752,0.0000020796, +0.0000020833,0.0000020866,0.0000020897,0.0000020917,0.0000020920, +0.0000020918,0.0000020918,0.0000020912,0.0000020893,0.0000020873, +0.0000020866,0.0000020865,0.0000020860,0.0000020848,0.0000020850, +0.0000020874,0.0000020912,0.0000020950,0.0000020981,0.0000021002, +0.0000021014,0.0000021021,0.0000021029,0.0000021038,0.0000021047, +0.0000021055,0.0000021058,0.0000021049,0.0000021031,0.0000021007, +0.0000020979,0.0000020953,0.0000020934,0.0000020912,0.0000020880, +0.0000020840,0.0000020800,0.0000020762,0.0000020723,0.0000020690, +0.0000020680,0.0000020696,0.0000020726,0.0000020762,0.0000020802, +0.0000020834,0.0000020845,0.0000020844,0.0000020844,0.0000020849, +0.0000020855,0.0000020856,0.0000020842,0.0000020808,0.0000020766, +0.0000020726,0.0000020691,0.0000020659,0.0000020620,0.0000020570, +0.0000020510,0.0000020447,0.0000020392,0.0000020360,0.0000020351, +0.0000020352,0.0000020354,0.0000020345,0.0000020328,0.0000020311, +0.0000020302,0.0000020302,0.0000020305,0.0000020295,0.0000020255, +0.0000020184,0.0000020099,0.0000020042,0.0000020033,0.0000020058, +0.0000020127,0.0000020230,0.0000020317,0.0000020385,0.0000020451, +0.0000020478,0.0000020419,0.0000020221,0.0000020007,0.0000019960, +0.0000020103,0.0000020349,0.0000020458,0.0000020455,0.0000020463, +0.0000020537,0.0000020652,0.0000020717,0.0000020744,0.0000020842, +0.0000020961,0.0000021008,0.0000021024,0.0000021093,0.0000021262, +0.0000021468,0.0000021606,0.0000021690,0.0000021748,0.0000021789, +0.0000021820,0.0000021824,0.0000021802,0.0000021776,0.0000021768, +0.0000021765,0.0000021742,0.0000021710,0.0000021704,0.0000021726, +0.0000021747,0.0000021754,0.0000021760,0.0000021776,0.0000021789, +0.0000021791,0.0000021784,0.0000021776,0.0000021766,0.0000021750, +0.0000021733,0.0000021716,0.0000021701,0.0000021683,0.0000021670, +0.0000021663,0.0000021653,0.0000021638,0.0000021623,0.0000021607, +0.0000021587,0.0000021565,0.0000021546,0.0000021535,0.0000021533, +0.0000021537,0.0000021546,0.0000021560,0.0000021573,0.0000021580, +0.0000021585,0.0000021579,0.0000021572,0.0000021553,0.0000021528, +0.0000021489,0.0000021449,0.0000021414,0.0000021376,0.0000021340, +0.0000021309,0.0000021278,0.0000021249,0.0000021223,0.0000021195, +0.0000021160,0.0000021111,0.0000021051,0.0000020986,0.0000020917, +0.0000020848,0.0000020795,0.0000020771,0.0000020771,0.0000020783, +0.0000020799,0.0000020817,0.0000020840,0.0000020866,0.0000020891, +0.0000020907,0.0000020916,0.0000020918,0.0000020914,0.0000020906, +0.0000020896,0.0000020887,0.0000020888,0.0000020892,0.0000020897, +0.0000020904,0.0000020907,0.0000020907,0.0000020906,0.0000020909, +0.0000020909,0.0000020907,0.0000020906,0.0000020907,0.0000020907, +0.0000020904,0.0000020901,0.0000020905,0.0000020913,0.0000020924, +0.0000020938,0.0000020954,0.0000020972,0.0000020991,0.0000021008, +0.0000021020,0.0000021036,0.0000021057,0.0000021075,0.0000021088, +0.0000021099,0.0000021108,0.0000021112,0.0000021115,0.0000021112, +0.0000021103,0.0000021092,0.0000021087,0.0000021077,0.0000021071, +0.0000021069,0.0000021068,0.0000021070,0.0000021076,0.0000021086, +0.0000021094,0.0000021096,0.0000021093,0.0000021085,0.0000021082, +0.0000021081,0.0000021082,0.0000021089,0.0000021104,0.0000021119, +0.0000021128,0.0000021128,0.0000021121,0.0000021110,0.0000021101, +0.0000021080,0.0000021055,0.0000021033,0.0000021015,0.0000021003, +0.0000020996,0.0000020989,0.0000020986,0.0000020987,0.0000020985, +0.0000020981,0.0000020971,0.0000020955,0.0000020938,0.0000020922, +0.0000020911,0.0000020900,0.0000020886,0.0000020870,0.0000020853, +0.0000020835,0.0000020819,0.0000020801,0.0000020784,0.0000020770, +0.0000020760,0.0000020758,0.0000020765,0.0000020782,0.0000020805, +0.0000020834,0.0000020865,0.0000020895,0.0000020926,0.0000020952, +0.0000020976,0.0000021001,0.0000021030,0.0000021057,0.0000021081, +0.0000021107,0.0000021134,0.0000021159,0.0000021183,0.0000021209, +0.0000021232,0.0000021250,0.0000021262,0.0000021270,0.0000021273, +0.0000021272,0.0000021266,0.0000021259,0.0000021254,0.0000021249, +0.0000021241,0.0000021230,0.0000021218,0.0000021207,0.0000021190, +0.0000021161,0.0000021124,0.0000021086,0.0000021041,0.0000020990, +0.0000020939,0.0000020887,0.0000020841,0.0000020815,0.0000020801, +0.0000020802,0.0000020814,0.0000020830,0.0000020845,0.0000020861, +0.0000020875,0.0000020882,0.0000020881,0.0000020879,0.0000020877, +0.0000020873,0.0000020869,0.0000020868,0.0000020868,0.0000020870, +0.0000020873,0.0000020874,0.0000020876,0.0000020889,0.0000020914, +0.0000020944,0.0000020974,0.0000021003,0.0000021026,0.0000021039, +0.0000021048,0.0000021055,0.0000021057,0.0000021053,0.0000021046, +0.0000021046,0.0000021053,0.0000021071,0.0000021098,0.0000021135, +0.0000021182,0.0000021227,0.0000021267,0.0000021300,0.0000021323, +0.0000021335,0.0000021345,0.0000021347,0.0000021344,0.0000021340, +0.0000021337,0.0000021337,0.0000021346,0.0000021356,0.0000021371, +0.0000021390,0.0000021409,0.0000021429,0.0000021453,0.0000021479, +0.0000021503,0.0000021525,0.0000021544,0.0000021562,0.0000021580, +0.0000021599,0.0000021616,0.0000021630,0.0000021643,0.0000021656, +0.0000021669,0.0000021685,0.0000021702,0.0000021717,0.0000021729, +0.0000021737,0.0000021739,0.0000021734,0.0000021721,0.0000021701, +0.0000021676,0.0000021650,0.0000021627,0.0000021607,0.0000021589, +0.0000021573,0.0000021562,0.0000021554,0.0000021548,0.0000021544, +0.0000021545,0.0000021550,0.0000021556,0.0000021563,0.0000021570, +0.0000021576,0.0000021579,0.0000021579,0.0000021578,0.0000021576, +0.0000021573,0.0000021569,0.0000021562,0.0000021555,0.0000021549, +0.0000021543,0.0000021538,0.0000021536,0.0000021541,0.0000021547, +0.0000021549,0.0000021546,0.0000021541,0.0000021530,0.0000021517, +0.0000021502,0.0000021484,0.0000021463,0.0000021436,0.0000021401, +0.0000021361,0.0000021322,0.0000021287,0.0000021259,0.0000021227, +0.0000021198,0.0000021173,0.0000021150,0.0000021132,0.0000021129, +0.0000021131,0.0000021132,0.0000021130,0.0000021130,0.0000021129, +0.0000021124,0.0000021108,0.0000021081,0.0000021040,0.0000020988, +0.0000020932,0.0000020884,0.0000020846,0.0000020822,0.0000020812, +0.0000020808,0.0000020807,0.0000020803,0.0000020792,0.0000020770, +0.0000020741,0.0000020704,0.0000020659,0.0000020609,0.0000020560, +0.0000020514,0.0000020474,0.0000020443,0.0000020420,0.0000020410, +0.0000020414,0.0000020432,0.0000020459,0.0000020492,0.0000020527, +0.0000020565,0.0000020606,0.0000020645,0.0000020681,0.0000020709, +0.0000020725,0.0000020735,0.0000020739,0.0000020728,0.0000020714, +0.0000020693,0.0000020664,0.0000020622,0.0000020576,0.0000020530, +0.0000020486,0.0000020452,0.0000020433,0.0000020424,0.0000020422, +0.0000020425,0.0000020431,0.0000020440,0.0000020448,0.0000020450, +0.0000020445,0.0000020436,0.0000020425,0.0000020413,0.0000020398, +0.0000020384,0.0000020377,0.0000020372,0.0000020364,0.0000020352, +0.0000020336,0.0000020318,0.0000020303,0.0000020294,0.0000020290, +0.0000020293,0.0000020307,0.0000020331,0.0000020361,0.0000020386, +0.0000020406,0.0000020417,0.0000020426,0.0000020427,0.0000020415, +0.0000020388,0.0000020347,0.0000020296,0.0000020238,0.0000020179, +0.0000020128,0.0000020087,0.0000020060,0.0000020048,0.0000020040, +0.0000020028,0.0000020008,0.0000019978,0.0000019936,0.0000019889, +0.0000019845,0.0000019803,0.0000019766,0.0000019732,0.0000019706, +0.0000019688,0.0000019668,0.0000019671,0.0000019667,0.0000019637, +0.0000019606,0.0000019553,0.0000019500,0.0000019451,0.0000019424, +0.0000019415,0.0000019421,0.0000019422,0.0000019414,0.0000019404, +0.0000019399,0.0000019406,0.0000019437,0.0000019477,0.0000019512, +0.0000019526,0.0000019526,0.0000019522,0.0000019519,0.0000019526, +0.0000019533,0.0000019527,0.0000019507,0.0000019482,0.0000019467, +0.0000019462,0.0000019474,0.0000019502,0.0000019548,0.0000019610, +0.0000019679,0.0000019743,0.0000019794,0.0000019834,0.0000019866, +0.0000019897,0.0000019932,0.0000019972,0.0000020008,0.0000020040, +0.0000020050,0.0000020049,0.0000020040,0.0000020024,0.0000020004, +0.0000019980,0.0000019949,0.0000019909,0.0000019867,0.0000019838, +0.0000019821,0.0000019821,0.0000019832,0.0000019858,0.0000019898, +0.0000019945,0.0000019990,0.0000020029,0.0000020061,0.0000020089, +0.0000020122,0.0000020161,0.0000020210,0.0000020266,0.0000020320, +0.0000020366,0.0000020403,0.0000020429,0.0000020447,0.0000020458, +0.0000020461,0.0000020459,0.0000020454,0.0000020449,0.0000020442, +0.0000020434,0.0000020425,0.0000020424,0.0000020427,0.0000020442, +0.0000020464,0.0000020484,0.0000020501,0.0000020515,0.0000020523, +0.0000020526,0.0000020527,0.0000020527,0.0000020522,0.0000020514, +0.0000020506,0.0000020501,0.0000020507,0.0000020528,0.0000020563, +0.0000020606,0.0000020646,0.0000020679,0.0000020706,0.0000020728, +0.0000020762,0.0000020822,0.0000020903,0.0000020995,0.0000021077, +0.0000021129,0.0000021142,0.0000021141,0.0000021146,0.0000021161, +0.0000021176,0.0000021178,0.0000021164,0.0000021149,0.0000021140, +0.0000021122,0.0000021089,0.0000021048,0.0000021001,0.0000020948, +0.0000020904,0.0000020877,0.0000020855,0.0000020829,0.0000020803, +0.0000020785,0.0000020781,0.0000020783,0.0000020781,0.0000020770, +0.0000020756,0.0000020744,0.0000020730,0.0000020710,0.0000020684, +0.0000020652,0.0000020615,0.0000020575,0.0000020536,0.0000020497, +0.0000020461,0.0000020428,0.0000020394,0.0000020361,0.0000020332, +0.0000020305,0.0000020278,0.0000020252,0.0000020227,0.0000020203, +0.0000020179,0.0000020152,0.0000020126,0.0000020100,0.0000020076, +0.0000020056,0.0000020040,0.0000020028,0.0000020020,0.0000020019, +0.0000020018,0.0000020017,0.0000020014,0.0000020006,0.0000019996, +0.0000019985,0.0000019973,0.0000019960,0.0000019947,0.0000019936, +0.0000019928,0.0000019925,0.0000019927,0.0000019933,0.0000019942, +0.0000019954,0.0000019964,0.0000019973,0.0000019979,0.0000019983, +0.0000019986,0.0000019990,0.0000019995,0.0000020001,0.0000020009, +0.0000020020,0.0000020039,0.0000020065,0.0000020097,0.0000020128, +0.0000020156,0.0000020180,0.0000020196,0.0000020204,0.0000020204, +0.0000020200,0.0000020193,0.0000020183,0.0000020171,0.0000020160, +0.0000020149,0.0000020137,0.0000020128,0.0000020125,0.0000020127, +0.0000020136,0.0000020149,0.0000020165,0.0000020182,0.0000020200, +0.0000020215,0.0000020227,0.0000020234,0.0000020227,0.0000020221, +0.0000020207,0.0000020181,0.0000020150,0.0000020114,0.0000020075, +0.0000020035,0.0000019999,0.0000019973,0.0000019959,0.0000019962, +0.0000019964,0.0000019981,0.0000020020,0.0000020074,0.0000020140, +0.0000020208,0.0000020259,0.0000020289,0.0000020294,0.0000020290, +0.0000020271,0.0000020243,0.0000020205,0.0000020159,0.0000020109, +0.0000020060,0.0000020016,0.0000019979,0.0000019957,0.0000019951, +0.0000019959,0.0000019982,0.0000020007,0.0000020033,0.0000020055, +0.0000020070,0.0000020078,0.0000020082,0.0000020078,0.0000020069, +0.0000020056,0.0000020042,0.0000020023,0.0000019993,0.0000019949, +0.0000019902,0.0000019847,0.0000019786,0.0000019729,0.0000019686, +0.0000019663,0.0000019665,0.0000019688,0.0000019725,0.0000019764, +0.0000019801,0.0000019830,0.0000019842,0.0000019820,0.0000019756, +0.0000019670,0.0000019596,0.0000019565,0.0000019569,0.0000019596, +0.0000019625,0.0000019640,0.0000019636,0.0000019591,0.0000019502, +0.0000019396,0.0000019321,0.0000019296,0.0000019294,0.0000019307, +0.0000019320,0.0000019326,0.0000019329,0.0000019335,0.0000019336, +0.0000019324,0.0000019312,0.0000019309,0.0000019324,0.0000019356, +0.0000019403,0.0000019451,0.0000019483,0.0000019496,0.0000019498, +0.0000019499,0.0000019501,0.0000019501,0.0000019487,0.0000019456, +0.0000019413,0.0000019361,0.0000019309,0.0000019282,0.0000019285, +0.0000019300,0.0000019305,0.0000019285,0.0000019246,0.0000019210, +0.0000019172,0.0000019122,0.0000019069,0.0000019035,0.0000019027, +0.0000019038,0.0000019064,0.0000019103,0.0000019161,0.0000019239, +0.0000019330,0.0000019421,0.0000019501,0.0000019561,0.0000019600, +0.0000019623,0.0000019639,0.0000019652,0.0000019667,0.0000019690, +0.0000019725,0.0000019769,0.0000019814,0.0000019856,0.0000019893, +0.0000019929,0.0000019963,0.0000019991,0.0000020011,0.0000020019, +0.0000020018,0.0000020006,0.0000019981,0.0000019946,0.0000019908, +0.0000019870,0.0000019831,0.0000019793,0.0000019756,0.0000019719, +0.0000019677,0.0000019628,0.0000019583,0.0000019543,0.0000019509, +0.0000019473,0.0000019439,0.0000019413,0.0000019388,0.0000019362, +0.0000019335,0.0000019305,0.0000019272,0.0000019245,0.0000019229, +0.0000019220,0.0000019213,0.0000019200,0.0000019177,0.0000019144, +0.0000019102,0.0000019059,0.0000019025,0.0000019008,0.0000018999, +0.0000018993,0.0000018979,0.0000018956,0.0000018909,0.0000018847, +0.0000018788,0.0000018734,0.0000018686,0.0000018647,0.0000018611, +0.0000018569,0.0000018524,0.0000018477,0.0000018433,0.0000018397, +0.0000018371,0.0000018358,0.0000018352,0.0000018350,0.0000018347, +0.0000018346,0.0000018346,0.0000018351,0.0000018359,0.0000018379, +0.0000018410,0.0000018443,0.0000018475,0.0000018507,0.0000018536, +0.0000018572,0.0000018610,0.0000018628,0.0000018625,0.0000018617, +0.0000018605,0.0000018589,0.0000018574,0.0000018559,0.0000018535, +0.0000018497,0.0000018450,0.0000018403,0.0000018361,0.0000018324, +0.0000018285,0.0000018242,0.0000018199,0.0000018167,0.0000018152, +0.0000018149,0.0000018151,0.0000018157,0.0000018162,0.0000018164, +0.0000018161,0.0000018156,0.0000018151,0.0000018148,0.0000018145, +0.0000018138,0.0000018126,0.0000018110,0.0000018087,0.0000018055, +0.0000018017,0.0000017978,0.0000017943,0.0000017912,0.0000017888, +0.0000017866,0.0000017844,0.0000017822,0.0000017798,0.0000017773, +0.0000017749,0.0000017725,0.0000017706,0.0000017690,0.0000017676, +0.0000017661,0.0000017651,0.0000017647,0.0000017648,0.0000017655, +0.0000017667,0.0000017685,0.0000017704,0.0000017723,0.0000017741, +0.0000017757,0.0000017773,0.0000017788,0.0000017804,0.0000017822, +0.0000017842,0.0000017861,0.0000017881,0.0000017901,0.0000017921, +0.0000017942,0.0000017963,0.0000017982,0.0000017998,0.0000018011, +0.0000018020,0.0000018027,0.0000018031,0.0000018032,0.0000018031, +0.0000018028,0.0000018023,0.0000018016,0.0000018009,0.0000018006, +0.0000018006,0.0000018011,0.0000018024,0.0000018042,0.0000018066, +0.0000018098,0.0000018133,0.0000018169,0.0000018205,0.0000018241, +0.0000018277,0.0000018310,0.0000018340,0.0000018371,0.0000018399, +0.0000018428,0.0000018458,0.0000018486,0.0000018511,0.0000018540, +0.0000018574,0.0000018610,0.0000018647,0.0000018689,0.0000018732, +0.0000018766,0.0000018796,0.0000018825,0.0000018858,0.0000018898, +0.0000018937,0.0000018966,0.0000018986,0.0000018998,0.0000019008, +0.0000019014,0.0000019009,0.0000019002,0.0000018988,0.0000018974, +0.0000018965,0.0000018969,0.0000018994,0.0000019036,0.0000019083, +0.0000019122,0.0000019145,0.0000019159,0.0000019172,0.0000019183, +0.0000019191,0.0000019195,0.0000019200,0.0000019209,0.0000019224, +0.0000019239,0.0000019240,0.0000019218,0.0000019182,0.0000019149, +0.0000019131,0.0000019127,0.0000019136,0.0000019161,0.0000019201, +0.0000019249,0.0000019291,0.0000019321,0.0000019325,0.0000019326, +0.0000019320,0.0000019312,0.0000019300,0.0000019292,0.0000019289, +0.0000019299,0.0000019320,0.0000019355,0.0000019402,0.0000019452, +0.0000019507,0.0000019565,0.0000019628,0.0000019696,0.0000019768, +0.0000019843,0.0000019918,0.0000019989,0.0000020052,0.0000020103, +0.0000020139,0.0000020157,0.0000020156,0.0000020146,0.0000020134, +0.0000020120,0.0000020105,0.0000020086,0.0000020066,0.0000020042, +0.0000020020,0.0000020000,0.0000019988,0.0000019987,0.0000019998, +0.0000020012,0.0000020028,0.0000020043,0.0000020060,0.0000020079, +0.0000020098,0.0000020113,0.0000020128,0.0000020145,0.0000020164, +0.0000020182,0.0000020198,0.0000020210,0.0000020220,0.0000020227, +0.0000020233,0.0000020238,0.0000020239,0.0000020239,0.0000020238, +0.0000020236,0.0000020234,0.0000020234,0.0000020232,0.0000020231, +0.0000020228,0.0000020225,0.0000020221,0.0000020217,0.0000020211, +0.0000020204,0.0000020195,0.0000020187,0.0000020179,0.0000020174, +0.0000020173,0.0000020169,0.0000020168,0.0000020169,0.0000020173, +0.0000020178,0.0000020183,0.0000020191,0.0000020204,0.0000020220, +0.0000020234,0.0000020248,0.0000020260,0.0000020267,0.0000020269, +0.0000020267,0.0000020259,0.0000020241,0.0000020215,0.0000020179, +0.0000020131,0.0000020073,0.0000020003,0.0000019931,0.0000019867, +0.0000019816,0.0000019771,0.0000019731,0.0000019693,0.0000019658, +0.0000019626,0.0000019588,0.0000019544,0.0000019500,0.0000019461, +0.0000019426,0.0000019392,0.0000019366,0.0000019363,0.0000019370, +0.0000019375,0.0000019377,0.0000019373,0.0000019364,0.0000019358, +0.0000019356,0.0000019357,0.0000019365,0.0000019371,0.0000019363, +0.0000019346,0.0000019305,0.0000019252,0.0000019206,0.0000019173, +0.0000019195,0.0000019153,0.0000019124,0.0000019101,0.0000019077, +0.0000019051,0.0000019031,0.0000019024,0.0000019038,0.0000019067, +0.0000019097,0.0000019117,0.0000019129,0.0000019146,0.0000019180, +0.0000019233,0.0000019297,0.0000019360,0.0000019413,0.0000019448, +0.0000019472,0.0000019492,0.0000019508,0.0000019516,0.0000019523, +0.0000019528,0.0000019529,0.0000019512,0.0000019476,0.0000019440, +0.0000019427,0.0000019434,0.0000019444,0.0000019445,0.0000019442, +0.0000019438,0.0000019435,0.0000019436,0.0000019435,0.0000019429, +0.0000019418,0.0000019400,0.0000019386,0.0000019377,0.0000019371, +0.0000019368,0.0000019363,0.0000019356,0.0000019353,0.0000019354, +0.0000019354,0.0000019355,0.0000019358,0.0000019365,0.0000019372, +0.0000019379,0.0000019385,0.0000019388,0.0000019396,0.0000019412, +0.0000019430,0.0000019444,0.0000019454,0.0000019461,0.0000019461, +0.0000019460,0.0000019453,0.0000019442,0.0000019426,0.0000019408, +0.0000019386,0.0000019362,0.0000019335,0.0000019303,0.0000019271, +0.0000019238,0.0000019202,0.0000019167,0.0000019127,0.0000019087, +0.0000019048,0.0000019010,0.0000018990,0.0000018985,0.0000018985, +0.0000018988,0.0000018997,0.0000019009,0.0000019026,0.0000019052, +0.0000019080,0.0000019106,0.0000019131,0.0000019154,0.0000019175, +0.0000019191,0.0000019209,0.0000019225,0.0000019234,0.0000019235, +0.0000019229,0.0000019215,0.0000019199,0.0000019181,0.0000019161, +0.0000019141,0.0000019119,0.0000019100,0.0000019091,0.0000019092, +0.0000019094,0.0000019095,0.0000019086,0.0000019046,0.0000018982, +0.0000018929,0.0000018924,0.0000018940,0.0000018966,0.0000018997, +0.0000019023,0.0000019036,0.0000019033,0.0000019024,0.0000019020, +0.0000019029,0.0000019059,0.0000019100,0.0000019135,0.0000019163, +0.0000019187,0.0000019211,0.0000019235,0.0000019269,0.0000019311, +0.0000019363,0.0000019414,0.0000019463,0.0000019506,0.0000019542, +0.0000019568,0.0000019589,0.0000019603,0.0000019606,0.0000019605, +0.0000019603,0.0000019597,0.0000019594,0.0000019597,0.0000019608, +0.0000019624,0.0000019639,0.0000019652,0.0000019660,0.0000019668, +0.0000019677,0.0000019686,0.0000019694,0.0000019699,0.0000019700, +0.0000019705,0.0000019712,0.0000019721,0.0000019729,0.0000019740, +0.0000019755,0.0000019770,0.0000019786,0.0000019801,0.0000019816, +0.0000019835,0.0000019854,0.0000019872,0.0000019895,0.0000019922, +0.0000019953,0.0000019984,0.0000020014,0.0000020047,0.0000020083, +0.0000020124,0.0000020168,0.0000020213,0.0000020258,0.0000020301, +0.0000020342,0.0000020379,0.0000020413,0.0000020445,0.0000020473, +0.0000020496,0.0000020517,0.0000020535,0.0000020547,0.0000020554, +0.0000020558,0.0000020558,0.0000020555,0.0000020551,0.0000020550, +0.0000020550,0.0000020545,0.0000020537,0.0000020526,0.0000020515, +0.0000020506,0.0000020503,0.0000020507,0.0000020514,0.0000020521, +0.0000020527,0.0000020531,0.0000020535,0.0000020540,0.0000020545, +0.0000020552,0.0000020560,0.0000020571,0.0000020585,0.0000020601, +0.0000020618,0.0000020635,0.0000020652,0.0000020666,0.0000020678, +0.0000020690,0.0000020705,0.0000020727,0.0000020760,0.0000020803, +0.0000020851,0.0000020889,0.0000020913,0.0000020930,0.0000020955, +0.0000020998,0.0000021056,0.0000021100,0.0000021111,0.0000021106, +0.0000021091,0.0000021067,0.0000021019,0.0000020941,0.0000020853, +0.0000020785,0.0000020739,0.0000020689,0.0000020634,0.0000020607, +0.0000020613,0.0000020643,0.0000020686,0.0000020728,0.0000020763, +0.0000020792,0.0000020824,0.0000020853,0.0000020871,0.0000020872, +0.0000020865,0.0000020860,0.0000020855,0.0000020846,0.0000020833, +0.0000020828,0.0000020832,0.0000020836,0.0000020835,0.0000020840, +0.0000020856,0.0000020885,0.0000020920,0.0000020954,0.0000020980, +0.0000020996,0.0000021006,0.0000021012,0.0000021014,0.0000021017, +0.0000021017,0.0000021012,0.0000021002,0.0000020988,0.0000020968, +0.0000020945,0.0000020928,0.0000020911,0.0000020886,0.0000020853, +0.0000020818,0.0000020784,0.0000020748,0.0000020705,0.0000020665, +0.0000020650,0.0000020655,0.0000020676,0.0000020716,0.0000020766, +0.0000020807,0.0000020826,0.0000020833,0.0000020839,0.0000020844, +0.0000020848,0.0000020847,0.0000020834,0.0000020809,0.0000020780, +0.0000020751,0.0000020728,0.0000020709,0.0000020685,0.0000020652, +0.0000020603,0.0000020532,0.0000020449,0.0000020376,0.0000020332, +0.0000020321,0.0000020325,0.0000020329,0.0000020322,0.0000020302, +0.0000020286,0.0000020281,0.0000020285,0.0000020277,0.0000020239, +0.0000020170,0.0000020097,0.0000020050,0.0000020043,0.0000020065, +0.0000020139,0.0000020246,0.0000020332,0.0000020399,0.0000020454, +0.0000020459,0.0000020346,0.0000020127,0.0000019965,0.0000019987, +0.0000020202,0.0000020420,0.0000020477,0.0000020467,0.0000020494, +0.0000020578,0.0000020675,0.0000020718,0.0000020775,0.0000020901, +0.0000021001,0.0000021027,0.0000021051,0.0000021147,0.0000021333, +0.0000021519,0.0000021635,0.0000021710,0.0000021766,0.0000021809, +0.0000021839,0.0000021837,0.0000021803,0.0000021773,0.0000021764, +0.0000021757,0.0000021729,0.0000021687,0.0000021670,0.0000021681, +0.0000021705,0.0000021726,0.0000021744,0.0000021761,0.0000021773, +0.0000021772,0.0000021760,0.0000021742,0.0000021722,0.0000021698, +0.0000021675,0.0000021658,0.0000021643,0.0000021639,0.0000021647, +0.0000021655,0.0000021662,0.0000021665,0.0000021660,0.0000021647, +0.0000021629,0.0000021612,0.0000021597,0.0000021588,0.0000021579, +0.0000021571,0.0000021563,0.0000021558,0.0000021544,0.0000021528, +0.0000021505,0.0000021493,0.0000021490,0.0000021485,0.0000021473, +0.0000021450,0.0000021421,0.0000021393,0.0000021364,0.0000021340, +0.0000021318,0.0000021298,0.0000021278,0.0000021255,0.0000021225, +0.0000021186,0.0000021138,0.0000021083,0.0000021023,0.0000020965, +0.0000020919,0.0000020893,0.0000020883,0.0000020885,0.0000020895, +0.0000020910,0.0000020930,0.0000020953,0.0000020975,0.0000020991, +0.0000020999,0.0000021000,0.0000020994,0.0000020982,0.0000020969, +0.0000020952,0.0000020947,0.0000020947,0.0000020948,0.0000020951, +0.0000020952,0.0000020953,0.0000020950,0.0000020943,0.0000020939, +0.0000020937,0.0000020935,0.0000020933,0.0000020929,0.0000020926, +0.0000020921,0.0000020920,0.0000020924,0.0000020932,0.0000020944, +0.0000020961,0.0000020983,0.0000021006,0.0000021030,0.0000021054, +0.0000021079,0.0000021106,0.0000021131,0.0000021149,0.0000021164, +0.0000021173,0.0000021179,0.0000021179,0.0000021172,0.0000021163, +0.0000021156,0.0000021142,0.0000021131,0.0000021131,0.0000021132, +0.0000021133,0.0000021138,0.0000021144,0.0000021149,0.0000021150, +0.0000021147,0.0000021145,0.0000021144,0.0000021140,0.0000021136, +0.0000021132,0.0000021135,0.0000021146,0.0000021152,0.0000021152, +0.0000021146,0.0000021136,0.0000021126,0.0000021110,0.0000021089, +0.0000021066,0.0000021046,0.0000021027,0.0000021011,0.0000020999, +0.0000020994,0.0000020996,0.0000021001,0.0000021005,0.0000021005, +0.0000021000,0.0000020994,0.0000020986,0.0000020980,0.0000020975, +0.0000020966,0.0000020954,0.0000020943,0.0000020931,0.0000020920, +0.0000020911,0.0000020900,0.0000020889,0.0000020876,0.0000020865, +0.0000020859,0.0000020863,0.0000020878,0.0000020902,0.0000020931, +0.0000020961,0.0000020988,0.0000021012,0.0000021032,0.0000021048, +0.0000021068,0.0000021087,0.0000021103,0.0000021119,0.0000021137, +0.0000021153,0.0000021169,0.0000021189,0.0000021214,0.0000021235, +0.0000021254,0.0000021266,0.0000021276,0.0000021283,0.0000021285, +0.0000021280,0.0000021270,0.0000021264,0.0000021260,0.0000021250, +0.0000021237,0.0000021225,0.0000021216,0.0000021206,0.0000021190, +0.0000021171,0.0000021153,0.0000021130,0.0000021101,0.0000021071, +0.0000021030,0.0000020982,0.0000020933,0.0000020890,0.0000020855, +0.0000020830,0.0000020821,0.0000020807,0.0000020803,0.0000020802, +0.0000020803,0.0000020806,0.0000020817,0.0000020832,0.0000020846, +0.0000020858,0.0000020863,0.0000020864,0.0000020865,0.0000020862, +0.0000020856,0.0000020847,0.0000020847,0.0000020853,0.0000020865, +0.0000020881,0.0000020902,0.0000020927,0.0000020952,0.0000020976, +0.0000020996,0.0000021009,0.0000021020,0.0000021027,0.0000021029, +0.0000021029,0.0000021033,0.0000021048,0.0000021077,0.0000021116, +0.0000021161,0.0000021206,0.0000021248,0.0000021283,0.0000021310, +0.0000021331,0.0000021344,0.0000021348,0.0000021351,0.0000021355, +0.0000021367,0.0000021378,0.0000021386,0.0000021400,0.0000021417, +0.0000021432,0.0000021445,0.0000021461,0.0000021474,0.0000021486, +0.0000021497,0.0000021511,0.0000021528,0.0000021547,0.0000021566, +0.0000021583,0.0000021596,0.0000021605,0.0000021611,0.0000021614, +0.0000021617,0.0000021622,0.0000021625,0.0000021627,0.0000021626, +0.0000021622,0.0000021612,0.0000021596,0.0000021573,0.0000021545, +0.0000021517,0.0000021495,0.0000021474,0.0000021455,0.0000021440, +0.0000021427,0.0000021415,0.0000021405,0.0000021398,0.0000021395, +0.0000021395,0.0000021398,0.0000021399,0.0000021397,0.0000021394, +0.0000021393,0.0000021393,0.0000021397,0.0000021403,0.0000021411, +0.0000021418,0.0000021425,0.0000021431,0.0000021434,0.0000021436, +0.0000021440,0.0000021450,0.0000021466,0.0000021484,0.0000021497, +0.0000021506,0.0000021510,0.0000021508,0.0000021499,0.0000021488, +0.0000021474,0.0000021461,0.0000021443,0.0000021415,0.0000021374, +0.0000021328,0.0000021283,0.0000021237,0.0000021193,0.0000021143, +0.0000021103,0.0000021072,0.0000021057,0.0000021062,0.0000021072, +0.0000021077,0.0000021077,0.0000021074,0.0000021066,0.0000021051, +0.0000021026,0.0000020990,0.0000020943,0.0000020885,0.0000020825, +0.0000020769,0.0000020724,0.0000020694,0.0000020677,0.0000020665, +0.0000020658,0.0000020650,0.0000020639,0.0000020623,0.0000020600, +0.0000020568,0.0000020526,0.0000020480,0.0000020436,0.0000020397, +0.0000020365,0.0000020338,0.0000020318,0.0000020310,0.0000020315, +0.0000020332,0.0000020356,0.0000020384,0.0000020413,0.0000020446, +0.0000020484,0.0000020523,0.0000020561,0.0000020596,0.0000020627, +0.0000020655,0.0000020679,0.0000020691,0.0000020698,0.0000020698, +0.0000020678,0.0000020651,0.0000020619,0.0000020582,0.0000020541, +0.0000020509,0.0000020488,0.0000020474,0.0000020468,0.0000020465, +0.0000020467,0.0000020472,0.0000020476,0.0000020475,0.0000020470, +0.0000020462,0.0000020451,0.0000020437,0.0000020425,0.0000020415, +0.0000020406,0.0000020397,0.0000020387,0.0000020373,0.0000020354, +0.0000020334,0.0000020316,0.0000020305,0.0000020299,0.0000020301, +0.0000020310,0.0000020331,0.0000020358,0.0000020384,0.0000020406, +0.0000020422,0.0000020435,0.0000020437,0.0000020439,0.0000020426, +0.0000020402,0.0000020360,0.0000020312,0.0000020259,0.0000020205, +0.0000020153,0.0000020110,0.0000020082,0.0000020062,0.0000020042, +0.0000020016,0.0000019977,0.0000019931,0.0000019888,0.0000019851, +0.0000019821,0.0000019794,0.0000019767,0.0000019727,0.0000019684, +0.0000019645,0.0000019625,0.0000019611,0.0000019604,0.0000019606, +0.0000019596,0.0000019564,0.0000019522,0.0000019479,0.0000019451, +0.0000019430,0.0000019416,0.0000019405,0.0000019393,0.0000019388, +0.0000019395,0.0000019414,0.0000019442,0.0000019470,0.0000019491, +0.0000019502,0.0000019513,0.0000019532,0.0000019551,0.0000019564, +0.0000019556,0.0000019537,0.0000019509,0.0000019486,0.0000019470, +0.0000019478,0.0000019480,0.0000019507,0.0000019551,0.0000019608, +0.0000019670,0.0000019730,0.0000019781,0.0000019818,0.0000019842, +0.0000019866,0.0000019911,0.0000019969,0.0000020023,0.0000020052, +0.0000020058,0.0000020051,0.0000020035,0.0000020015,0.0000019987, +0.0000019948,0.0000019899,0.0000019853,0.0000019819,0.0000019804, +0.0000019806,0.0000019824,0.0000019858,0.0000019906,0.0000019960, +0.0000020013,0.0000020057,0.0000020091,0.0000020122,0.0000020156, +0.0000020202,0.0000020255,0.0000020314,0.0000020372,0.0000020424, +0.0000020466,0.0000020495,0.0000020512,0.0000020517,0.0000020515, +0.0000020509,0.0000020500,0.0000020487,0.0000020470,0.0000020452, +0.0000020439,0.0000020436,0.0000020444,0.0000020460,0.0000020477, +0.0000020493,0.0000020508,0.0000020517,0.0000020522,0.0000020525, +0.0000020526,0.0000020526,0.0000020526,0.0000020527,0.0000020536, +0.0000020554,0.0000020579,0.0000020608,0.0000020638,0.0000020669, +0.0000020699,0.0000020734,0.0000020783,0.0000020851,0.0000020934, +0.0000021021,0.0000021096,0.0000021141,0.0000021154,0.0000021154, +0.0000021158,0.0000021168,0.0000021176,0.0000021177,0.0000021163, +0.0000021145,0.0000021135,0.0000021123,0.0000021100,0.0000021063, +0.0000021016,0.0000020963,0.0000020915,0.0000020880,0.0000020859, +0.0000020841,0.0000020819,0.0000020792,0.0000020768,0.0000020757, +0.0000020756,0.0000020754,0.0000020747,0.0000020738,0.0000020729, +0.0000020716,0.0000020694,0.0000020665,0.0000020631,0.0000020594, +0.0000020553,0.0000020512,0.0000020471,0.0000020433,0.0000020397, +0.0000020360,0.0000020325,0.0000020291,0.0000020260,0.0000020232, +0.0000020203,0.0000020171,0.0000020137,0.0000020101,0.0000020063, +0.0000020028,0.0000019994,0.0000019966,0.0000019945,0.0000019931, +0.0000019925,0.0000019926,0.0000019932,0.0000019940,0.0000019947, +0.0000019953,0.0000019954,0.0000019954,0.0000019950,0.0000019944, +0.0000019937,0.0000019931,0.0000019927,0.0000019928,0.0000019932, +0.0000019938,0.0000019945,0.0000019953,0.0000019962,0.0000019970, +0.0000019973,0.0000019973,0.0000019972,0.0000019968,0.0000019962, +0.0000019954,0.0000019943,0.0000019934,0.0000019928,0.0000019929, +0.0000019939,0.0000019956,0.0000019979,0.0000020007,0.0000020039, +0.0000020073,0.0000020105,0.0000020131,0.0000020151,0.0000020163, +0.0000020167,0.0000020162,0.0000020150,0.0000020138,0.0000020126, +0.0000020114,0.0000020099,0.0000020090,0.0000020086,0.0000020090, +0.0000020101,0.0000020117,0.0000020134,0.0000020152,0.0000020171, +0.0000020188,0.0000020201,0.0000020210,0.0000020204,0.0000020195, +0.0000020178,0.0000020152,0.0000020118,0.0000020080,0.0000020045, +0.0000020016,0.0000019993,0.0000019976,0.0000019957,0.0000019954, +0.0000019968,0.0000020004,0.0000020063,0.0000020135,0.0000020202, +0.0000020252,0.0000020279,0.0000020287,0.0000020280,0.0000020264, +0.0000020236,0.0000020198,0.0000020155,0.0000020113,0.0000020072, +0.0000020040,0.0000020022,0.0000020018,0.0000020029,0.0000020045, +0.0000020064,0.0000020082,0.0000020097,0.0000020107,0.0000020113, +0.0000020114,0.0000020110,0.0000020098,0.0000020081,0.0000020060, +0.0000020035,0.0000020000,0.0000019953,0.0000019902,0.0000019843, +0.0000019779,0.0000019720,0.0000019677,0.0000019656,0.0000019656, +0.0000019679,0.0000019715,0.0000019754,0.0000019792,0.0000019826, +0.0000019840,0.0000019825,0.0000019768,0.0000019681,0.0000019601, +0.0000019562,0.0000019565,0.0000019591,0.0000019623,0.0000019641, +0.0000019637,0.0000019595,0.0000019505,0.0000019394,0.0000019312, +0.0000019281,0.0000019273,0.0000019283,0.0000019294,0.0000019297, +0.0000019300,0.0000019307,0.0000019309,0.0000019299,0.0000019283, +0.0000019276,0.0000019284,0.0000019317,0.0000019366,0.0000019420, +0.0000019458,0.0000019473,0.0000019473,0.0000019473,0.0000019477, +0.0000019474,0.0000019456,0.0000019418,0.0000019364,0.0000019299, +0.0000019246,0.0000019232,0.0000019243,0.0000019261,0.0000019261, +0.0000019239,0.0000019213,0.0000019187,0.0000019152,0.0000019098, +0.0000019042,0.0000019007,0.0000018991,0.0000018993,0.0000019007, +0.0000019035,0.0000019074,0.0000019130,0.0000019202,0.0000019285, +0.0000019370,0.0000019444,0.0000019501,0.0000019544,0.0000019574, +0.0000019595,0.0000019619,0.0000019650,0.0000019690,0.0000019735, +0.0000019781,0.0000019825,0.0000019866,0.0000019904,0.0000019936, +0.0000019961,0.0000019976,0.0000019979,0.0000019969,0.0000019946, +0.0000019913,0.0000019875,0.0000019836,0.0000019797,0.0000019759, +0.0000019722,0.0000019685,0.0000019645,0.0000019604,0.0000019566, +0.0000019536,0.0000019511,0.0000019483,0.0000019455,0.0000019425, +0.0000019394,0.0000019364,0.0000019332,0.0000019294,0.0000019247, +0.0000019203,0.0000019177,0.0000019167,0.0000019166,0.0000019163, +0.0000019151,0.0000019129,0.0000019092,0.0000019045,0.0000019000, +0.0000018970,0.0000018960,0.0000018959,0.0000018950,0.0000018932, +0.0000018890,0.0000018830,0.0000018773,0.0000018720,0.0000018672, +0.0000018635,0.0000018603,0.0000018564,0.0000018524,0.0000018479, +0.0000018432,0.0000018393,0.0000018368,0.0000018358,0.0000018353, +0.0000018349,0.0000018345,0.0000018339,0.0000018324,0.0000018308, +0.0000018299,0.0000018302,0.0000018318,0.0000018340,0.0000018369, +0.0000018405,0.0000018441,0.0000018479,0.0000018520,0.0000018554, +0.0000018570,0.0000018571,0.0000018564,0.0000018547,0.0000018526, +0.0000018507,0.0000018482,0.0000018445,0.0000018404,0.0000018363, +0.0000018329,0.0000018295,0.0000018257,0.0000018220,0.0000018196, +0.0000018181,0.0000018173,0.0000018169,0.0000018168,0.0000018168, +0.0000018167,0.0000018163,0.0000018156,0.0000018144,0.0000018126, +0.0000018099,0.0000018062,0.0000018018,0.0000017970,0.0000017918, +0.0000017864,0.0000017806,0.0000017750,0.0000017698,0.0000017658, +0.0000017629,0.0000017608,0.0000017591,0.0000017579,0.0000017569, +0.0000017561,0.0000017554,0.0000017544,0.0000017534,0.0000017528, +0.0000017531,0.0000017532,0.0000017531,0.0000017535,0.0000017542, +0.0000017553,0.0000017567,0.0000017582,0.0000017599,0.0000017618, +0.0000017635,0.0000017649,0.0000017659,0.0000017670,0.0000017679, +0.0000017688,0.0000017699,0.0000017712,0.0000017726,0.0000017742, +0.0000017761,0.0000017781,0.0000017803,0.0000017824,0.0000017844, +0.0000017860,0.0000017873,0.0000017883,0.0000017891,0.0000017897, +0.0000017901,0.0000017905,0.0000017906,0.0000017902,0.0000017894, +0.0000017885,0.0000017874,0.0000017864,0.0000017857,0.0000017858, +0.0000017864,0.0000017877,0.0000017899,0.0000017929,0.0000017962, +0.0000017998,0.0000018037,0.0000018080,0.0000018124,0.0000018164, +0.0000018203,0.0000018243,0.0000018281,0.0000018322,0.0000018365, +0.0000018404,0.0000018441,0.0000018479,0.0000018519,0.0000018558, +0.0000018598,0.0000018646,0.0000018695,0.0000018741,0.0000018783, +0.0000018815,0.0000018845,0.0000018875,0.0000018904,0.0000018930, +0.0000018950,0.0000018963,0.0000018973,0.0000018985,0.0000018992, +0.0000018990,0.0000018986,0.0000018974,0.0000018967,0.0000018970, +0.0000018993,0.0000019037,0.0000019085,0.0000019124,0.0000019146, +0.0000019158,0.0000019168,0.0000019178,0.0000019187,0.0000019195, +0.0000019203,0.0000019213,0.0000019225,0.0000019231,0.0000019223, +0.0000019197,0.0000019162,0.0000019130,0.0000019110,0.0000019103, +0.0000019108,0.0000019129,0.0000019168,0.0000019219,0.0000019269, +0.0000019306,0.0000019322,0.0000019325,0.0000019326,0.0000019323, +0.0000019319,0.0000019314,0.0000019314,0.0000019324,0.0000019342, +0.0000019371,0.0000019409,0.0000019451,0.0000019494,0.0000019540, +0.0000019589,0.0000019642,0.0000019697,0.0000019755,0.0000019816, +0.0000019876,0.0000019937,0.0000019995,0.0000020047,0.0000020087, +0.0000020111,0.0000020119,0.0000020109,0.0000020092,0.0000020076, +0.0000020060,0.0000020040,0.0000020018,0.0000019993,0.0000019974, +0.0000019957,0.0000019950,0.0000019951,0.0000019959,0.0000019969, +0.0000019981,0.0000019996,0.0000020012,0.0000020028,0.0000020046, +0.0000020067,0.0000020090,0.0000020113,0.0000020132,0.0000020149, +0.0000020163,0.0000020173,0.0000020181,0.0000020186,0.0000020191, +0.0000020195,0.0000020197,0.0000020198,0.0000020198,0.0000020199, +0.0000020199,0.0000020196,0.0000020191,0.0000020183,0.0000020172, +0.0000020160,0.0000020146,0.0000020134,0.0000020124,0.0000020119, +0.0000020117,0.0000020121,0.0000020125,0.0000020129,0.0000020135, +0.0000020144,0.0000020155,0.0000020165,0.0000020173,0.0000020181, +0.0000020195,0.0000020210,0.0000020225,0.0000020239,0.0000020249, +0.0000020255,0.0000020255,0.0000020250,0.0000020239,0.0000020219, +0.0000020190,0.0000020152,0.0000020103,0.0000020044,0.0000019983, +0.0000019918,0.0000019859,0.0000019808,0.0000019762,0.0000019718, +0.0000019675,0.0000019631,0.0000019591,0.0000019550,0.0000019504, +0.0000019457,0.0000019413,0.0000019375,0.0000019342,0.0000019314, +0.0000019300,0.0000019301,0.0000019314,0.0000019333,0.0000019343, +0.0000019347,0.0000019345,0.0000019340,0.0000019337,0.0000019342, +0.0000019351,0.0000019361,0.0000019363,0.0000019344,0.0000019309, +0.0000019252,0.0000019299,0.0000019238,0.0000019174,0.0000019125, +0.0000019090,0.0000019065,0.0000019040,0.0000019012,0.0000018992, +0.0000018982,0.0000018996,0.0000019028,0.0000019061,0.0000019083, +0.0000019098,0.0000019122,0.0000019163,0.0000019221,0.0000019288, +0.0000019349,0.0000019397,0.0000019430,0.0000019451,0.0000019465, +0.0000019472,0.0000019475,0.0000019478,0.0000019482,0.0000019484, +0.0000019463,0.0000019429,0.0000019403,0.0000019395,0.0000019402, +0.0000019415,0.0000019419,0.0000019416,0.0000019411,0.0000019408, +0.0000019406,0.0000019402,0.0000019394,0.0000019393,0.0000019394, +0.0000019395,0.0000019394,0.0000019391,0.0000019387,0.0000019383, +0.0000019381,0.0000019377,0.0000019374,0.0000019372,0.0000019369, +0.0000019363,0.0000019358,0.0000019351,0.0000019341,0.0000019331, +0.0000019326,0.0000019328,0.0000019335,0.0000019345,0.0000019355, +0.0000019363,0.0000019367,0.0000019369,0.0000019369,0.0000019365, +0.0000019353,0.0000019338,0.0000019318,0.0000019294,0.0000019266, +0.0000019236,0.0000019206,0.0000019171,0.0000019133,0.0000019092, +0.0000019048,0.0000019004,0.0000018964,0.0000018943,0.0000018933, +0.0000018927,0.0000018924,0.0000018927,0.0000018935,0.0000018947, +0.0000018968,0.0000018989,0.0000019009,0.0000019025,0.0000019043, +0.0000019058,0.0000019068,0.0000019080,0.0000019095,0.0000019111, +0.0000019127,0.0000019141,0.0000019154,0.0000019163,0.0000019167, +0.0000019161,0.0000019151,0.0000019137,0.0000019123,0.0000019113, +0.0000019103,0.0000019097,0.0000019098,0.0000019107,0.0000019113, +0.0000019094,0.0000019038,0.0000018976,0.0000018953,0.0000018964, +0.0000018991,0.0000019015,0.0000019022,0.0000019011,0.0000018985, +0.0000018961,0.0000018949,0.0000018952,0.0000018971,0.0000019003, +0.0000019039,0.0000019080,0.0000019121,0.0000019157,0.0000019184, +0.0000019207,0.0000019234,0.0000019272,0.0000019318,0.0000019371, +0.0000019420,0.0000019465,0.0000019507,0.0000019540,0.0000019564, +0.0000019580,0.0000019585,0.0000019580,0.0000019572,0.0000019569, +0.0000019573,0.0000019581,0.0000019590,0.0000019594,0.0000019597, +0.0000019602,0.0000019611,0.0000019622,0.0000019632,0.0000019638, +0.0000019637,0.0000019638,0.0000019643,0.0000019650,0.0000019658, +0.0000019667,0.0000019678,0.0000019688,0.0000019700,0.0000019712, +0.0000019726,0.0000019744,0.0000019762,0.0000019780,0.0000019803, +0.0000019828,0.0000019855,0.0000019881,0.0000019906,0.0000019934, +0.0000019965,0.0000020001,0.0000020042,0.0000020085,0.0000020130, +0.0000020175,0.0000020220,0.0000020262,0.0000020303,0.0000020342, +0.0000020380,0.0000020414,0.0000020446,0.0000020475,0.0000020498, +0.0000020516,0.0000020530,0.0000020534,0.0000020533,0.0000020530, +0.0000020527,0.0000020525,0.0000020520,0.0000020512,0.0000020501, +0.0000020487,0.0000020473,0.0000020466,0.0000020467,0.0000020473, +0.0000020482,0.0000020489,0.0000020496,0.0000020502,0.0000020508, +0.0000020512,0.0000020516,0.0000020523,0.0000020532,0.0000020546, +0.0000020562,0.0000020583,0.0000020606,0.0000020626,0.0000020642, +0.0000020653,0.0000020661,0.0000020667,0.0000020678,0.0000020699, +0.0000020737,0.0000020791,0.0000020842,0.0000020878,0.0000020898, +0.0000020915,0.0000020951,0.0000021010,0.0000021058,0.0000021070, +0.0000021065,0.0000021049,0.0000021022,0.0000020967,0.0000020881, +0.0000020796,0.0000020735,0.0000020689,0.0000020640,0.0000020598, +0.0000020585,0.0000020594,0.0000020623,0.0000020661,0.0000020693, +0.0000020720,0.0000020746,0.0000020772,0.0000020798,0.0000020816, +0.0000020817,0.0000020806,0.0000020796,0.0000020790,0.0000020787, +0.0000020783,0.0000020782,0.0000020787,0.0000020798,0.0000020810, +0.0000020824,0.0000020839,0.0000020859,0.0000020886,0.0000020916, +0.0000020941,0.0000020959,0.0000020973,0.0000020982,0.0000020987, +0.0000020989,0.0000020985,0.0000020975,0.0000020962,0.0000020947, +0.0000020929,0.0000020915,0.0000020904,0.0000020888,0.0000020860, +0.0000020829,0.0000020798,0.0000020769,0.0000020736,0.0000020691, +0.0000020647,0.0000020621,0.0000020613,0.0000020621,0.0000020661, +0.0000020721,0.0000020774,0.0000020804,0.0000020819,0.0000020828, +0.0000020834,0.0000020837,0.0000020834,0.0000020824,0.0000020806, +0.0000020784,0.0000020760,0.0000020743,0.0000020731,0.0000020719, +0.0000020703,0.0000020672,0.0000020617,0.0000020535,0.0000020436, +0.0000020347,0.0000020298,0.0000020294,0.0000020310,0.0000020313, +0.0000020295,0.0000020271,0.0000020261,0.0000020264,0.0000020257, +0.0000020222,0.0000020163,0.0000020098,0.0000020055,0.0000020048, +0.0000020068,0.0000020150,0.0000020262,0.0000020344,0.0000020406, +0.0000020448,0.0000020422,0.0000020267,0.0000020052,0.0000019968, +0.0000020052,0.0000020293,0.0000020464,0.0000020482,0.0000020485, +0.0000020529,0.0000020614,0.0000020686,0.0000020725,0.0000020819, +0.0000020958,0.0000021035,0.0000021056,0.0000021094,0.0000021212, +0.0000021402,0.0000021560,0.0000021655,0.0000021726,0.0000021782, +0.0000021824,0.0000021847,0.0000021835,0.0000021794,0.0000021760, +0.0000021749,0.0000021736,0.0000021702,0.0000021655,0.0000021623, +0.0000021626,0.0000021657,0.0000021693,0.0000021721,0.0000021737, +0.0000021745,0.0000021742,0.0000021730,0.0000021711,0.0000021686, +0.0000021655,0.0000021629,0.0000021607,0.0000021600,0.0000021606, +0.0000021618,0.0000021634,0.0000021649,0.0000021659,0.0000021655, +0.0000021650,0.0000021643,0.0000021638,0.0000021638,0.0000021637, +0.0000021634,0.0000021624,0.0000021611,0.0000021593,0.0000021563, +0.0000021522,0.0000021487,0.0000021464,0.0000021439,0.0000021416, +0.0000021393,0.0000021367,0.0000021340,0.0000021317,0.0000021301, +0.0000021294,0.0000021287,0.0000021277,0.0000021258,0.0000021237, +0.0000021210,0.0000021175,0.0000021133,0.0000021086,0.0000021042, +0.0000021008,0.0000020984,0.0000020969,0.0000020967,0.0000020971, +0.0000020983,0.0000020998,0.0000021017,0.0000021035,0.0000021052, +0.0000021062,0.0000021068,0.0000021069,0.0000021065,0.0000021053, +0.0000021035,0.0000021021,0.0000021017,0.0000021017,0.0000021016, +0.0000021012,0.0000021009,0.0000021005,0.0000020997,0.0000020992, +0.0000020986,0.0000020978,0.0000020970,0.0000020961,0.0000020953, +0.0000020946,0.0000020941,0.0000020938,0.0000020941,0.0000020950, +0.0000020964,0.0000020986,0.0000021008,0.0000021032,0.0000021058, +0.0000021083,0.0000021110,0.0000021136,0.0000021161,0.0000021178, +0.0000021189,0.0000021198,0.0000021200,0.0000021196,0.0000021189, +0.0000021172,0.0000021156,0.0000021151,0.0000021151,0.0000021152, +0.0000021158,0.0000021164,0.0000021169,0.0000021170,0.0000021172, +0.0000021172,0.0000021171,0.0000021170,0.0000021169,0.0000021165, +0.0000021159,0.0000021158,0.0000021161,0.0000021162,0.0000021160, +0.0000021152,0.0000021141,0.0000021126,0.0000021110,0.0000021092, +0.0000021070,0.0000021047,0.0000021024,0.0000021003,0.0000020989, +0.0000020981,0.0000020979,0.0000020982,0.0000020985,0.0000020988, +0.0000020990,0.0000020987,0.0000020980,0.0000020977,0.0000020973, +0.0000020964,0.0000020957,0.0000020952,0.0000020946,0.0000020941, +0.0000020933,0.0000020924,0.0000020910,0.0000020894,0.0000020882, +0.0000020875,0.0000020879,0.0000020897,0.0000020925,0.0000020958, +0.0000020992,0.0000021026,0.0000021055,0.0000021079,0.0000021102, +0.0000021126,0.0000021148,0.0000021165,0.0000021181,0.0000021198, +0.0000021211,0.0000021226,0.0000021248,0.0000021271,0.0000021291, +0.0000021306,0.0000021317,0.0000021324,0.0000021327,0.0000021326, +0.0000021318,0.0000021306,0.0000021297,0.0000021286,0.0000021269, +0.0000021249,0.0000021231,0.0000021216,0.0000021200,0.0000021181, +0.0000021161,0.0000021145,0.0000021128,0.0000021109,0.0000021093, +0.0000021075,0.0000021051,0.0000021024,0.0000020998,0.0000020972, +0.0000020944,0.0000020915,0.0000020884,0.0000020850,0.0000020815, +0.0000020789,0.0000020760,0.0000020746,0.0000020743,0.0000020747, +0.0000020759,0.0000020782,0.0000020810,0.0000020839,0.0000020859, +0.0000020867,0.0000020868,0.0000020862,0.0000020856,0.0000020851, +0.0000020844,0.0000020839,0.0000020838,0.0000020845,0.0000020864, +0.0000020886,0.0000020905,0.0000020923,0.0000020946,0.0000020972, +0.0000020995,0.0000021015,0.0000021036,0.0000021058,0.0000021083, +0.0000021112,0.0000021145,0.0000021180,0.0000021216,0.0000021248, +0.0000021272,0.0000021292,0.0000021310,0.0000021326,0.0000021347, +0.0000021369,0.0000021386,0.0000021401,0.0000021419,0.0000021439, +0.0000021456,0.0000021470,0.0000021483,0.0000021493,0.0000021498, +0.0000021506,0.0000021516,0.0000021528,0.0000021540,0.0000021554, +0.0000021569,0.0000021581,0.0000021590,0.0000021594,0.0000021592, +0.0000021587,0.0000021578,0.0000021567,0.0000021554,0.0000021541, +0.0000021526,0.0000021507,0.0000021485,0.0000021458,0.0000021428, +0.0000021401,0.0000021378,0.0000021358,0.0000021340,0.0000021324, +0.0000021312,0.0000021302,0.0000021293,0.0000021287,0.0000021285, +0.0000021285,0.0000021284,0.0000021279,0.0000021269,0.0000021260, +0.0000021253,0.0000021253,0.0000021257,0.0000021267,0.0000021279, +0.0000021293,0.0000021305,0.0000021315,0.0000021321,0.0000021328, +0.0000021339,0.0000021356,0.0000021380,0.0000021408,0.0000021433, +0.0000021451,0.0000021462,0.0000021466,0.0000021464,0.0000021460, +0.0000021455,0.0000021448,0.0000021431,0.0000021408,0.0000021371, +0.0000021322,0.0000021270,0.0000021214,0.0000021155,0.0000021100, +0.0000021046,0.0000021007,0.0000020998,0.0000021007,0.0000021019, +0.0000021024,0.0000021021,0.0000021011,0.0000020992,0.0000020967, +0.0000020935,0.0000020895,0.0000020843,0.0000020781,0.0000020719, +0.0000020661,0.0000020611,0.0000020574,0.0000020548,0.0000020530, +0.0000020519,0.0000020511,0.0000020500,0.0000020485,0.0000020460, +0.0000020424,0.0000020382,0.0000020341,0.0000020305,0.0000020277, +0.0000020255,0.0000020237,0.0000020227,0.0000020226,0.0000020237, +0.0000020257,0.0000020280,0.0000020303,0.0000020330,0.0000020360, +0.0000020392,0.0000020424,0.0000020457,0.0000020490,0.0000020522, +0.0000020554,0.0000020583,0.0000020606,0.0000020622,0.0000020632, +0.0000020629,0.0000020623,0.0000020608,0.0000020576,0.0000020560, +0.0000020545,0.0000020530,0.0000020520,0.0000020519,0.0000020520, +0.0000020522,0.0000020527,0.0000020529,0.0000020528,0.0000020522, +0.0000020511,0.0000020498,0.0000020487,0.0000020478,0.0000020469, +0.0000020458,0.0000020447,0.0000020434,0.0000020417,0.0000020395, +0.0000020374,0.0000020356,0.0000020340,0.0000020325,0.0000020318, +0.0000020324,0.0000020333,0.0000020353,0.0000020376,0.0000020397, +0.0000020414,0.0000020427,0.0000020436,0.0000020441,0.0000020443, +0.0000020430,0.0000020408,0.0000020379,0.0000020340,0.0000020290, +0.0000020232,0.0000020176,0.0000020131,0.0000020096,0.0000020064, +0.0000020026,0.0000019981,0.0000019934,0.0000019892,0.0000019856, +0.0000019833,0.0000019819,0.0000019802,0.0000019766,0.0000019719, +0.0000019661,0.0000019611,0.0000019577,0.0000019567,0.0000019575, +0.0000019583,0.0000019578,0.0000019567,0.0000019535,0.0000019497, +0.0000019457,0.0000019428,0.0000019403,0.0000019387,0.0000019386, +0.0000019387,0.0000019399,0.0000019418,0.0000019439,0.0000019458, +0.0000019474,0.0000019496,0.0000019527,0.0000019555,0.0000019570, +0.0000019579,0.0000019568,0.0000019553,0.0000019534,0.0000019518, +0.0000019508,0.0000019503,0.0000019519,0.0000019529,0.0000019560, +0.0000019603,0.0000019656,0.0000019708,0.0000019746,0.0000019774, +0.0000019809,0.0000019858,0.0000019919,0.0000019981,0.0000020034, +0.0000020053,0.0000020056,0.0000020044,0.0000020020,0.0000019985, +0.0000019941,0.0000019891,0.0000019843,0.0000019809,0.0000019799, +0.0000019803,0.0000019826,0.0000019869,0.0000019925,0.0000019989, +0.0000020051,0.0000020100,0.0000020139,0.0000020174,0.0000020212, +0.0000020264,0.0000020318,0.0000020377,0.0000020435,0.0000020483, +0.0000020522,0.0000020547,0.0000020560,0.0000020564,0.0000020559, +0.0000020548,0.0000020530,0.0000020508,0.0000020488,0.0000020475, +0.0000020466,0.0000020464,0.0000020469,0.0000020481,0.0000020493, +0.0000020506,0.0000020516,0.0000020526,0.0000020536,0.0000020547, +0.0000020557,0.0000020565,0.0000020573,0.0000020584,0.0000020597, +0.0000020614,0.0000020639,0.0000020671,0.0000020711,0.0000020760, +0.0000020819,0.0000020893,0.0000020975,0.0000021055,0.0000021119, +0.0000021154,0.0000021163,0.0000021166,0.0000021172,0.0000021177, +0.0000021177,0.0000021170,0.0000021154,0.0000021135,0.0000021122, +0.0000021112,0.0000021096,0.0000021068,0.0000021023,0.0000020968, +0.0000020917,0.0000020878,0.0000020854,0.0000020841,0.0000020827, +0.0000020804,0.0000020773,0.0000020743,0.0000020723,0.0000020714, +0.0000020707,0.0000020700,0.0000020690,0.0000020681,0.0000020666, +0.0000020643,0.0000020614,0.0000020581,0.0000020545,0.0000020505, +0.0000020462,0.0000020419,0.0000020379,0.0000020338,0.0000020297, +0.0000020254,0.0000020212,0.0000020173,0.0000020137,0.0000020100, +0.0000020060,0.0000020022,0.0000019988,0.0000019959,0.0000019934, +0.0000019914,0.0000019898,0.0000019890,0.0000019890,0.0000019898, +0.0000019912,0.0000019929,0.0000019944,0.0000019956,0.0000019963, +0.0000019964,0.0000019959,0.0000019950,0.0000019942,0.0000019936, +0.0000019933,0.0000019934,0.0000019936,0.0000019938,0.0000019939, +0.0000019941,0.0000019945,0.0000019950,0.0000019954,0.0000019954, +0.0000019954,0.0000019952,0.0000019949,0.0000019942,0.0000019932, +0.0000019920,0.0000019909,0.0000019902,0.0000019897,0.0000019897, +0.0000019899,0.0000019904,0.0000019913,0.0000019927,0.0000019947, +0.0000019971,0.0000019999,0.0000020028,0.0000020055,0.0000020078, +0.0000020097,0.0000020109,0.0000020116,0.0000020117,0.0000020106, +0.0000020090,0.0000020078,0.0000020070,0.0000020064,0.0000020062, +0.0000020065,0.0000020074,0.0000020087,0.0000020106,0.0000020127, +0.0000020150,0.0000020171,0.0000020183,0.0000020187,0.0000020182, +0.0000020169,0.0000020146,0.0000020119,0.0000020092,0.0000020065, +0.0000020039,0.0000020013,0.0000019985,0.0000019964,0.0000019965, +0.0000019972,0.0000020004,0.0000020061,0.0000020129,0.0000020190, +0.0000020235,0.0000020261,0.0000020269,0.0000020258,0.0000020243, +0.0000020214,0.0000020185,0.0000020152,0.0000020118,0.0000020096, +0.0000020082,0.0000020079,0.0000020084,0.0000020092,0.0000020101, +0.0000020110,0.0000020116,0.0000020121,0.0000020124,0.0000020124, +0.0000020120,0.0000020106,0.0000020087,0.0000020062,0.0000020033, +0.0000019998,0.0000019952,0.0000019902,0.0000019843,0.0000019780, +0.0000019722,0.0000019676,0.0000019651,0.0000019649,0.0000019669, +0.0000019704,0.0000019742,0.0000019779,0.0000019814,0.0000019834, +0.0000019826,0.0000019773,0.0000019687,0.0000019603,0.0000019560, +0.0000019561,0.0000019587,0.0000019621,0.0000019641,0.0000019638, +0.0000019599,0.0000019508,0.0000019393,0.0000019305,0.0000019266, +0.0000019260,0.0000019266,0.0000019273,0.0000019275,0.0000019274, +0.0000019278,0.0000019283,0.0000019275,0.0000019260,0.0000019250, +0.0000019254,0.0000019281,0.0000019335,0.0000019395,0.0000019439, +0.0000019454,0.0000019452,0.0000019449,0.0000019450,0.0000019446, +0.0000019421,0.0000019373,0.0000019304,0.0000019232,0.0000019187, +0.0000019182,0.0000019200,0.0000019213,0.0000019206,0.0000019192, +0.0000019182,0.0000019162,0.0000019126,0.0000019068,0.0000019015, +0.0000018977,0.0000018950,0.0000018940,0.0000018947,0.0000018964, +0.0000018991,0.0000019027,0.0000019078,0.0000019144,0.0000019221, +0.0000019301,0.0000019376,0.0000019436,0.0000019482,0.0000019520, +0.0000019558,0.0000019599,0.0000019644,0.0000019693,0.0000019742, +0.0000019789,0.0000019834,0.0000019872,0.0000019904,0.0000019928, +0.0000019940,0.0000019938,0.0000019925,0.0000019899,0.0000019865, +0.0000019828,0.0000019788,0.0000019748,0.0000019707,0.0000019667, +0.0000019627,0.0000019589,0.0000019555,0.0000019532,0.0000019510, +0.0000019488,0.0000019464,0.0000019433,0.0000019395,0.0000019360, +0.0000019324,0.0000019279,0.0000019225,0.0000019168,0.0000019126, +0.0000019108,0.0000019108,0.0000019113,0.0000019111,0.0000019101, +0.0000019079,0.0000019042,0.0000018996,0.0000018960,0.0000018943, +0.0000018938,0.0000018925,0.0000018904,0.0000018866,0.0000018813, +0.0000018758,0.0000018704,0.0000018657,0.0000018620,0.0000018585, +0.0000018548,0.0000018513,0.0000018473,0.0000018431,0.0000018395, +0.0000018372,0.0000018363,0.0000018356,0.0000018351,0.0000018346, +0.0000018336,0.0000018318,0.0000018295,0.0000018277,0.0000018266, +0.0000018262,0.0000018263,0.0000018274,0.0000018299,0.0000018339, +0.0000018385,0.0000018429,0.0000018471,0.0000018502,0.0000018517, +0.0000018515,0.0000018500,0.0000018477,0.0000018455,0.0000018429, +0.0000018397,0.0000018366,0.0000018338,0.0000018310,0.0000018275, +0.0000018239,0.0000018217,0.0000018207,0.0000018202,0.0000018197, +0.0000018190,0.0000018182,0.0000018174,0.0000018164,0.0000018152, +0.0000018131,0.0000018095,0.0000018044,0.0000017979,0.0000017906, +0.0000017828,0.0000017750,0.0000017675,0.0000017603,0.0000017539, +0.0000017486,0.0000017446,0.0000017421,0.0000017416,0.0000017421, +0.0000017434,0.0000017452,0.0000017475,0.0000017496,0.0000017513, +0.0000017521,0.0000017527,0.0000017534,0.0000017541,0.0000017546, +0.0000017551,0.0000017559,0.0000017572,0.0000017586,0.0000017602, +0.0000017619,0.0000017636,0.0000017652,0.0000017667,0.0000017678, +0.0000017686,0.0000017692,0.0000017696,0.0000017703,0.0000017712, +0.0000017725,0.0000017739,0.0000017753,0.0000017770,0.0000017790, +0.0000017811,0.0000017832,0.0000017851,0.0000017867,0.0000017878, +0.0000017887,0.0000017893,0.0000017895,0.0000017894,0.0000017892, +0.0000017889,0.0000017884,0.0000017876,0.0000017866,0.0000017853, +0.0000017839,0.0000017823,0.0000017810,0.0000017797,0.0000017791, +0.0000017786,0.0000017798,0.0000017816,0.0000017835,0.0000017859, +0.0000017888,0.0000017921,0.0000017955,0.0000017991,0.0000018028, +0.0000018064,0.0000018110,0.0000018167,0.0000018227,0.0000018286, +0.0000018340,0.0000018392,0.0000018438,0.0000018485,0.0000018536, +0.0000018592,0.0000018646,0.0000018702,0.0000018753,0.0000018798, +0.0000018833,0.0000018862,0.0000018888,0.0000018911,0.0000018928, +0.0000018939,0.0000018947,0.0000018957,0.0000018972,0.0000018980, +0.0000018980,0.0000018976,0.0000018971,0.0000018972,0.0000018994, +0.0000019035,0.0000019083,0.0000019121,0.0000019143,0.0000019156, +0.0000019166,0.0000019176,0.0000019186,0.0000019195,0.0000019205, +0.0000019214,0.0000019219,0.0000019216,0.0000019201,0.0000019174, +0.0000019138,0.0000019107,0.0000019087,0.0000019077,0.0000019080, +0.0000019100,0.0000019138,0.0000019193,0.0000019251,0.0000019295, +0.0000019324,0.0000019328,0.0000019334,0.0000019335,0.0000019335, +0.0000019336,0.0000019340,0.0000019349,0.0000019363,0.0000019386, +0.0000019415,0.0000019447,0.0000019482,0.0000019517,0.0000019554, +0.0000019595,0.0000019639,0.0000019684,0.0000019730,0.0000019777, +0.0000019827,0.0000019878,0.0000019930,0.0000019978,0.0000020018, +0.0000020042,0.0000020052,0.0000020051,0.0000020042,0.0000020025, +0.0000020005,0.0000019984,0.0000019961,0.0000019942,0.0000019929, +0.0000019923,0.0000019921,0.0000019925,0.0000019934,0.0000019946, +0.0000019961,0.0000019977,0.0000019996,0.0000020017,0.0000020039, +0.0000020059,0.0000020077,0.0000020092,0.0000020104,0.0000020113, +0.0000020120,0.0000020125,0.0000020128,0.0000020131,0.0000020133, +0.0000020135,0.0000020136,0.0000020136,0.0000020134,0.0000020129, +0.0000020122,0.0000020113,0.0000020106,0.0000020100,0.0000020096, +0.0000020092,0.0000020091,0.0000020092,0.0000020093,0.0000020096, +0.0000020101,0.0000020106,0.0000020111,0.0000020119,0.0000020129, +0.0000020139,0.0000020148,0.0000020156,0.0000020165,0.0000020174, +0.0000020185,0.0000020195,0.0000020201,0.0000020202,0.0000020199, +0.0000020190,0.0000020175,0.0000020154,0.0000020126,0.0000020091, +0.0000020048,0.0000019999,0.0000019943,0.0000019887,0.0000019833, +0.0000019781,0.0000019732,0.0000019681,0.0000019632,0.0000019583, +0.0000019535,0.0000019488,0.0000019440,0.0000019390,0.0000019340, +0.0000019299,0.0000019266,0.0000019245,0.0000019233,0.0000019228, +0.0000019233,0.0000019252,0.0000019279,0.0000019303,0.0000019314, +0.0000019314,0.0000019310,0.0000019308,0.0000019316,0.0000019329, +0.0000019342,0.0000019345,0.0000019332,0.0000019321,0.0000019312, +0.0000019280,0.0000019218,0.0000019147,0.0000019090,0.0000019053, +0.0000019026,0.0000018998,0.0000018967,0.0000018945,0.0000018939, +0.0000018959,0.0000018992,0.0000019024,0.0000019049,0.0000019073, +0.0000019104,0.0000019152,0.0000019213,0.0000019278,0.0000019335, +0.0000019376,0.0000019402,0.0000019417,0.0000019423,0.0000019422, +0.0000019421,0.0000019429,0.0000019437,0.0000019436,0.0000019415, +0.0000019389,0.0000019368,0.0000019363,0.0000019374,0.0000019386, +0.0000019394,0.0000019398,0.0000019401,0.0000019406,0.0000019413, +0.0000019421,0.0000019426,0.0000019429,0.0000019431,0.0000019429, +0.0000019426,0.0000019426,0.0000019425,0.0000019420,0.0000019413, +0.0000019408,0.0000019403,0.0000019393,0.0000019380,0.0000019364, +0.0000019347,0.0000019329,0.0000019309,0.0000019291,0.0000019279, +0.0000019271,0.0000019266,0.0000019262,0.0000019261,0.0000019263, +0.0000019266,0.0000019269,0.0000019267,0.0000019258,0.0000019245, +0.0000019226,0.0000019203,0.0000019178,0.0000019152,0.0000019125, +0.0000019094,0.0000019059,0.0000019020,0.0000018978,0.0000018940, +0.0000018913,0.0000018897,0.0000018886,0.0000018879,0.0000018874, +0.0000018876,0.0000018885,0.0000018898,0.0000018912,0.0000018926, +0.0000018938,0.0000018949,0.0000018956,0.0000018961,0.0000018968, +0.0000018976,0.0000018985,0.0000018995,0.0000019009,0.0000019032, +0.0000019061,0.0000019093,0.0000019123,0.0000019142,0.0000019142, +0.0000019139,0.0000019133,0.0000019124,0.0000019114,0.0000019109, +0.0000019112,0.0000019127,0.0000019145,0.0000019142,0.0000019097, +0.0000019026,0.0000018981,0.0000018979,0.0000018991,0.0000018999, +0.0000018991,0.0000018962,0.0000018932,0.0000018916,0.0000018904, +0.0000018902,0.0000018911,0.0000018925,0.0000018949,0.0000018984, +0.0000019027,0.0000019071,0.0000019109,0.0000019137,0.0000019164, +0.0000019196,0.0000019236,0.0000019282,0.0000019335,0.0000019391, +0.0000019442,0.0000019486,0.0000019518,0.0000019535,0.0000019541, +0.0000019546,0.0000019550,0.0000019559,0.0000019571,0.0000019580, +0.0000019582,0.0000019584,0.0000019588,0.0000019598,0.0000019610, +0.0000019621,0.0000019626,0.0000019625,0.0000019623,0.0000019626, +0.0000019633,0.0000019640,0.0000019647,0.0000019654,0.0000019661, +0.0000019670,0.0000019681,0.0000019695,0.0000019711,0.0000019727, +0.0000019745,0.0000019766,0.0000019791,0.0000019815,0.0000019837, +0.0000019857,0.0000019878,0.0000019902,0.0000019931,0.0000019964, +0.0000019998,0.0000020034,0.0000020071,0.0000020111,0.0000020149, +0.0000020186,0.0000020225,0.0000020264,0.0000020300,0.0000020335, +0.0000020368,0.0000020400,0.0000020428,0.0000020452,0.0000020468, +0.0000020478,0.0000020483,0.0000020487,0.0000020488,0.0000020488, +0.0000020484,0.0000020474,0.0000020458,0.0000020441,0.0000020430, +0.0000020429,0.0000020434,0.0000020443,0.0000020452,0.0000020460, +0.0000020467,0.0000020473,0.0000020475,0.0000020478,0.0000020483, +0.0000020490,0.0000020500,0.0000020517,0.0000020541,0.0000020567, +0.0000020590,0.0000020610,0.0000020625,0.0000020634,0.0000020637, +0.0000020638,0.0000020647,0.0000020675,0.0000020726,0.0000020788, +0.0000020840,0.0000020866,0.0000020878,0.0000020907,0.0000020966, +0.0000021014,0.0000021026,0.0000021021,0.0000021005,0.0000020974, +0.0000020910,0.0000020820,0.0000020740,0.0000020685,0.0000020643, +0.0000020602,0.0000020573,0.0000020567,0.0000020575,0.0000020600, +0.0000020628,0.0000020651,0.0000020673,0.0000020693,0.0000020712, +0.0000020732,0.0000020746,0.0000020746,0.0000020737,0.0000020725, +0.0000020717,0.0000020715,0.0000020717,0.0000020720,0.0000020725, +0.0000020739,0.0000020761,0.0000020787,0.0000020809,0.0000020828, +0.0000020851,0.0000020876,0.0000020897,0.0000020913,0.0000020927, +0.0000020938,0.0000020948,0.0000020952,0.0000020951,0.0000020943, +0.0000020930,0.0000020913,0.0000020895,0.0000020883,0.0000020875, +0.0000020860,0.0000020837,0.0000020810,0.0000020782,0.0000020755, +0.0000020723,0.0000020679,0.0000020634,0.0000020598,0.0000020574, +0.0000020569,0.0000020602,0.0000020666,0.0000020730,0.0000020771, +0.0000020794,0.0000020809,0.0000020818,0.0000020823,0.0000020821, +0.0000020814,0.0000020804,0.0000020787,0.0000020766,0.0000020744, +0.0000020725,0.0000020712,0.0000020703,0.0000020689,0.0000020665, +0.0000020610,0.0000020517,0.0000020404,0.0000020312,0.0000020277, +0.0000020284,0.0000020295,0.0000020283,0.0000020258,0.0000020245, +0.0000020243,0.0000020236,0.0000020210,0.0000020158,0.0000020099, +0.0000020060,0.0000020046,0.0000020070,0.0000020162,0.0000020273, +0.0000020350,0.0000020407,0.0000020426,0.0000020368,0.0000020190, +0.0000020005,0.0000019975,0.0000020117,0.0000020367,0.0000020493, +0.0000020499,0.0000020510,0.0000020565,0.0000020640,0.0000020691, +0.0000020746,0.0000020876,0.0000021013,0.0000021071,0.0000021091, +0.0000021145,0.0000021282,0.0000021461,0.0000021590,0.0000021671, +0.0000021738,0.0000021789,0.0000021829,0.0000021837,0.0000021818, +0.0000021775,0.0000021738,0.0000021720,0.0000021702,0.0000021665, +0.0000021617,0.0000021577,0.0000021571,0.0000021599,0.0000021637, +0.0000021670,0.0000021691,0.0000021698,0.0000021696,0.0000021692, +0.0000021681,0.0000021662,0.0000021642,0.0000021622,0.0000021606, +0.0000021601,0.0000021606,0.0000021610,0.0000021613,0.0000021615, +0.0000021614,0.0000021611,0.0000021607,0.0000021609,0.0000021619, +0.0000021633,0.0000021640,0.0000021641,0.0000021643,0.0000021640, +0.0000021627,0.0000021604,0.0000021574,0.0000021537,0.0000021495, +0.0000021449,0.0000021399,0.0000021354,0.0000021305,0.0000021258, +0.0000021221,0.0000021203,0.0000021201,0.0000021201,0.0000021198, +0.0000021190,0.0000021172,0.0000021146,0.0000021115,0.0000021083, +0.0000021055,0.0000021030,0.0000021009,0.0000020991,0.0000020985, +0.0000020989,0.0000021000,0.0000021017,0.0000021034,0.0000021051, +0.0000021068,0.0000021083,0.0000021094,0.0000021105,0.0000021110, +0.0000021108,0.0000021098,0.0000021088,0.0000021084,0.0000021083, +0.0000021083,0.0000021079,0.0000021074,0.0000021070,0.0000021067, +0.0000021061,0.0000021051,0.0000021039,0.0000021025,0.0000021009, +0.0000020994,0.0000020979,0.0000020964,0.0000020951,0.0000020946, +0.0000020950,0.0000020959,0.0000020976,0.0000020996,0.0000021018, +0.0000021044,0.0000021065,0.0000021084,0.0000021105,0.0000021125, +0.0000021141,0.0000021159,0.0000021175,0.0000021179,0.0000021171, +0.0000021157,0.0000021139,0.0000021129,0.0000021127,0.0000021127, +0.0000021128,0.0000021134,0.0000021142,0.0000021148,0.0000021153, +0.0000021158,0.0000021161,0.0000021163,0.0000021165,0.0000021168, +0.0000021170,0.0000021169,0.0000021167,0.0000021171,0.0000021173, +0.0000021172,0.0000021166,0.0000021156,0.0000021144,0.0000021131, +0.0000021114,0.0000021091,0.0000021066,0.0000021040,0.0000021016, +0.0000020996,0.0000020983,0.0000020977,0.0000020974,0.0000020973, +0.0000020975,0.0000020977,0.0000020975,0.0000020967,0.0000020961, +0.0000020959,0.0000020957,0.0000020957,0.0000020956,0.0000020954, +0.0000020949,0.0000020940,0.0000020927,0.0000020909,0.0000020889, +0.0000020870,0.0000020860,0.0000020863,0.0000020875,0.0000020896, +0.0000020924,0.0000020954,0.0000020987,0.0000021018,0.0000021042, +0.0000021066,0.0000021096,0.0000021124,0.0000021148,0.0000021169, +0.0000021189,0.0000021208,0.0000021233,0.0000021266,0.0000021298, +0.0000021327,0.0000021350,0.0000021367,0.0000021377,0.0000021383, +0.0000021387,0.0000021384,0.0000021373,0.0000021359,0.0000021339, +0.0000021311,0.0000021282,0.0000021254,0.0000021229,0.0000021207, +0.0000021182,0.0000021155,0.0000021133,0.0000021115,0.0000021093, +0.0000021071,0.0000021052,0.0000021035,0.0000021018,0.0000021001, +0.0000020988,0.0000020975,0.0000020960,0.0000020943,0.0000020922, +0.0000020893,0.0000020861,0.0000020829,0.0000020799,0.0000020769, +0.0000020741,0.0000020723,0.0000020717,0.0000020724,0.0000020740, +0.0000020760,0.0000020787,0.0000020815,0.0000020837,0.0000020851, +0.0000020854,0.0000020853,0.0000020841,0.0000020824,0.0000020808, +0.0000020797,0.0000020791,0.0000020792,0.0000020796,0.0000020809, +0.0000020838,0.0000020881,0.0000020931,0.0000020981,0.0000021024, +0.0000021060,0.0000021089,0.0000021117,0.0000021144,0.0000021169, +0.0000021188,0.0000021204,0.0000021220,0.0000021239,0.0000021264, +0.0000021295,0.0000021326,0.0000021352,0.0000021381,0.0000021411, +0.0000021440,0.0000021464,0.0000021482,0.0000021496,0.0000021507, +0.0000021523,0.0000021538,0.0000021550,0.0000021558,0.0000021564, +0.0000021568,0.0000021576,0.0000021584,0.0000021585,0.0000021585, +0.0000021582,0.0000021573,0.0000021558,0.0000021537,0.0000021513, +0.0000021489,0.0000021461,0.0000021433,0.0000021402,0.0000021372, +0.0000021344,0.0000021323,0.0000021306,0.0000021289,0.0000021273, +0.0000021260,0.0000021253,0.0000021248,0.0000021245,0.0000021243, +0.0000021243,0.0000021243,0.0000021240,0.0000021232,0.0000021221, +0.0000021209,0.0000021200,0.0000021196,0.0000021198,0.0000021203, +0.0000021212,0.0000021223,0.0000021232,0.0000021238,0.0000021243, +0.0000021251,0.0000021263,0.0000021281,0.0000021307,0.0000021338, +0.0000021367,0.0000021389,0.0000021405,0.0000021415,0.0000021422, +0.0000021425,0.0000021427,0.0000021424,0.0000021413,0.0000021387, +0.0000021349,0.0000021301,0.0000021244,0.0000021183,0.0000021120, +0.0000021056,0.0000021000,0.0000020962,0.0000020957,0.0000020968, +0.0000020975,0.0000020974,0.0000020962,0.0000020939,0.0000020909, +0.0000020875,0.0000020837,0.0000020793,0.0000020738,0.0000020676, +0.0000020614,0.0000020553,0.0000020500,0.0000020456,0.0000020424, +0.0000020405,0.0000020397,0.0000020393,0.0000020386,0.0000020369, +0.0000020339,0.0000020299,0.0000020257,0.0000020220,0.0000020192, +0.0000020172,0.0000020156,0.0000020145,0.0000020143,0.0000020150, +0.0000020168,0.0000020190,0.0000020212,0.0000020236,0.0000020262, +0.0000020288,0.0000020316,0.0000020343,0.0000020371,0.0000020399, +0.0000020427,0.0000020455,0.0000020480,0.0000020502,0.0000020521, +0.0000020535,0.0000020542,0.0000020542,0.0000020536,0.0000020526, +0.0000020517,0.0000020511,0.0000020509,0.0000020516,0.0000020526, +0.0000020539,0.0000020549,0.0000020567,0.0000020576,0.0000020580, +0.0000020578,0.0000020570,0.0000020563,0.0000020557,0.0000020553, +0.0000020545,0.0000020534,0.0000020523,0.0000020509,0.0000020487, +0.0000020464,0.0000020440,0.0000020414,0.0000020386,0.0000020359, +0.0000020341,0.0000020333,0.0000020342,0.0000020353,0.0000020371, +0.0000020392,0.0000020412,0.0000020426,0.0000020438,0.0000020443, +0.0000020441,0.0000020430,0.0000020420,0.0000020406,0.0000020385, +0.0000020352,0.0000020305,0.0000020253,0.0000020202,0.0000020155, +0.0000020106,0.0000020053,0.0000019999,0.0000019946,0.0000019899, +0.0000019864,0.0000019845,0.0000019837,0.0000019826,0.0000019801, +0.0000019757,0.0000019700,0.0000019638,0.0000019590,0.0000019556, +0.0000019545,0.0000019548,0.0000019556,0.0000019564,0.0000019559, +0.0000019535,0.0000019499,0.0000019456,0.0000019419,0.0000019393, +0.0000019380,0.0000019387,0.0000019397,0.0000019412,0.0000019430, +0.0000019445,0.0000019460,0.0000019480,0.0000019507,0.0000019538, +0.0000019560,0.0000019574,0.0000019574,0.0000019581,0.0000019580, +0.0000019578,0.0000019571,0.0000019566,0.0000019558,0.0000019554, +0.0000019572,0.0000019580,0.0000019606,0.0000019641,0.0000019680, +0.0000019721,0.0000019762,0.0000019806,0.0000019859,0.0000019925, +0.0000019988,0.0000020040,0.0000020048,0.0000020043,0.0000020017, +0.0000019978,0.0000019933,0.0000019885,0.0000019842,0.0000019813, +0.0000019802,0.0000019813,0.0000019844,0.0000019894,0.0000019959, +0.0000020031,0.0000020096,0.0000020151,0.0000020193,0.0000020238, +0.0000020285,0.0000020337,0.0000020388,0.0000020438,0.0000020487, +0.0000020530,0.0000020564,0.0000020585,0.0000020596,0.0000020597, +0.0000020587,0.0000020567,0.0000020543,0.0000020525,0.0000020514, +0.0000020503,0.0000020494,0.0000020491,0.0000020493,0.0000020498, +0.0000020509,0.0000020520,0.0000020535,0.0000020554,0.0000020573, +0.0000020587,0.0000020597,0.0000020606,0.0000020615,0.0000020629, +0.0000020654,0.0000020693,0.0000020742,0.0000020801,0.0000020866, +0.0000020941,0.0000021020,0.0000021090,0.0000021140,0.0000021165, +0.0000021172,0.0000021177,0.0000021184,0.0000021186,0.0000021178, +0.0000021160,0.0000021136,0.0000021115,0.0000021103,0.0000021092, +0.0000021077,0.0000021055,0.0000021018,0.0000020965,0.0000020910, +0.0000020864,0.0000020837,0.0000020823,0.0000020814,0.0000020796, +0.0000020766,0.0000020732,0.0000020700,0.0000020677,0.0000020662, +0.0000020649,0.0000020636,0.0000020623,0.0000020610,0.0000020592, +0.0000020568,0.0000020540,0.0000020509,0.0000020473,0.0000020431, +0.0000020383,0.0000020334,0.0000020284,0.0000020233,0.0000020185, +0.0000020138,0.0000020094,0.0000020059,0.0000020032,0.0000020007, +0.0000019984,0.0000019967,0.0000019956,0.0000019944,0.0000019936, +0.0000019927,0.0000019917,0.0000019909,0.0000019905,0.0000019908, +0.0000019919,0.0000019929,0.0000019933,0.0000019933,0.0000019931, +0.0000019925,0.0000019917,0.0000019910,0.0000019904,0.0000019900, +0.0000019898,0.0000019894,0.0000019889,0.0000019883,0.0000019879, +0.0000019873,0.0000019867,0.0000019864,0.0000019861,0.0000019857, +0.0000019852,0.0000019850,0.0000019847,0.0000019842,0.0000019836, +0.0000019831,0.0000019829,0.0000019830,0.0000019837,0.0000019847, +0.0000019858,0.0000019870,0.0000019881,0.0000019889,0.0000019895, +0.0000019901,0.0000019910,0.0000019920,0.0000019933,0.0000019950, +0.0000019971,0.0000019994,0.0000020018,0.0000020038,0.0000020049, +0.0000020054,0.0000020061,0.0000020065,0.0000020056,0.0000020050, +0.0000020046,0.0000020045,0.0000020048,0.0000020056,0.0000020069, +0.0000020090,0.0000020114,0.0000020136,0.0000020154,0.0000020165, +0.0000020162,0.0000020156,0.0000020147,0.0000020130,0.0000020110, +0.0000020086,0.0000020058,0.0000020026,0.0000019998,0.0000019980, +0.0000019971,0.0000019975,0.0000020007,0.0000020059,0.0000020116, +0.0000020168,0.0000020209,0.0000020232,0.0000020237,0.0000020226, +0.0000020207,0.0000020189,0.0000020161,0.0000020140,0.0000020122, +0.0000020113,0.0000020113,0.0000020114,0.0000020116,0.0000020117, +0.0000020118,0.0000020117,0.0000020118,0.0000020120,0.0000020120, +0.0000020115,0.0000020102,0.0000020080,0.0000020054,0.0000020025, +0.0000019993,0.0000019952,0.0000019905,0.0000019848,0.0000019785, +0.0000019725,0.0000019676,0.0000019646,0.0000019638,0.0000019654, +0.0000019686,0.0000019723,0.0000019759,0.0000019796,0.0000019822, +0.0000019818,0.0000019770,0.0000019685,0.0000019601,0.0000019557, +0.0000019556,0.0000019585,0.0000019620,0.0000019640,0.0000019639, +0.0000019600,0.0000019509,0.0000019394,0.0000019303,0.0000019261, +0.0000019253,0.0000019254,0.0000019257,0.0000019254,0.0000019248, +0.0000019248,0.0000019255,0.0000019254,0.0000019242,0.0000019231, +0.0000019230,0.0000019252,0.0000019306,0.0000019372,0.0000019420, +0.0000019436,0.0000019433,0.0000019427,0.0000019424,0.0000019414, +0.0000019385,0.0000019326,0.0000019243,0.0000019170,0.0000019132, +0.0000019136,0.0000019152,0.0000019154,0.0000019149,0.0000019152, +0.0000019151,0.0000019129,0.0000019082,0.0000019031,0.0000018983, +0.0000018940,0.0000018902,0.0000018882,0.0000018880,0.0000018894, +0.0000018913,0.0000018936,0.0000018968,0.0000019014,0.0000019076, +0.0000019151,0.0000019230,0.0000019304,0.0000019371,0.0000019430, +0.0000019483,0.0000019535,0.0000019586,0.0000019638,0.0000019688, +0.0000019736,0.0000019781,0.0000019822,0.0000019857,0.0000019883, +0.0000019897,0.0000019899,0.0000019886,0.0000019861,0.0000019826, +0.0000019787,0.0000019745,0.0000019703,0.0000019661,0.0000019621, +0.0000019584,0.0000019554,0.0000019533,0.0000019513,0.0000019493, +0.0000019470,0.0000019436,0.0000019392,0.0000019347,0.0000019305, +0.0000019261,0.0000019206,0.0000019141,0.0000019085,0.0000019051, +0.0000019045,0.0000019052,0.0000019060,0.0000019062,0.0000019054, +0.0000019035,0.0000018999,0.0000018961,0.0000018936,0.0000018921, +0.0000018900,0.0000018874,0.0000018842,0.0000018796,0.0000018742, +0.0000018688,0.0000018640,0.0000018596,0.0000018556,0.0000018522, +0.0000018493,0.0000018461,0.0000018429,0.0000018402,0.0000018378, +0.0000018365,0.0000018358,0.0000018356,0.0000018350,0.0000018338, +0.0000018318,0.0000018296,0.0000018277,0.0000018262,0.0000018248, +0.0000018232,0.0000018221,0.0000018221,0.0000018243,0.0000018287, +0.0000018338,0.0000018385,0.0000018425,0.0000018454,0.0000018461, +0.0000018451,0.0000018431,0.0000018408,0.0000018383,0.0000018359, +0.0000018341,0.0000018323,0.0000018297,0.0000018264,0.0000018238, +0.0000018229,0.0000018225,0.0000018223,0.0000018216,0.0000018205, +0.0000018190,0.0000018174,0.0000018152,0.0000018118,0.0000018063, +0.0000017988,0.0000017902,0.0000017812,0.0000017720,0.0000017626, +0.0000017537,0.0000017460,0.0000017399,0.0000017358,0.0000017333, +0.0000017317,0.0000017325,0.0000017352,0.0000017386,0.0000017425, +0.0000017462,0.0000017497,0.0000017528,0.0000017551,0.0000017568, +0.0000017580,0.0000017590,0.0000017601,0.0000017610,0.0000017619, +0.0000017632,0.0000017649,0.0000017665,0.0000017680,0.0000017696, +0.0000017711,0.0000017723,0.0000017734,0.0000017741,0.0000017743, +0.0000017743,0.0000017742,0.0000017742,0.0000017745,0.0000017751, +0.0000017761,0.0000017773,0.0000017789,0.0000017809,0.0000017830, +0.0000017851,0.0000017872,0.0000017891,0.0000017907,0.0000017920, +0.0000017930,0.0000017934,0.0000017941,0.0000017937,0.0000017931, +0.0000017925,0.0000017916,0.0000017904,0.0000017890,0.0000017874, +0.0000017856,0.0000017836,0.0000017818,0.0000017804,0.0000017791, +0.0000017786,0.0000017787,0.0000017786,0.0000017787,0.0000017795, +0.0000017811,0.0000017827,0.0000017845,0.0000017861,0.0000017876, +0.0000017897,0.0000017929,0.0000017981,0.0000018052,0.0000018129, +0.0000018204,0.0000018268,0.0000018326,0.0000018383,0.0000018448, +0.0000018512,0.0000018576,0.0000018640,0.0000018702,0.0000018760, +0.0000018807,0.0000018844,0.0000018875,0.0000018899,0.0000018915, +0.0000018924,0.0000018931,0.0000018941,0.0000018956,0.0000018971, +0.0000018980,0.0000018980,0.0000018974,0.0000018974,0.0000018992, +0.0000019029,0.0000019072,0.0000019109,0.0000019135,0.0000019152, +0.0000019165,0.0000019176,0.0000019186,0.0000019196,0.0000019203, +0.0000019208,0.0000019207,0.0000019198,0.0000019179,0.0000019148, +0.0000019113,0.0000019082,0.0000019066,0.0000019057,0.0000019060, +0.0000019081,0.0000019119,0.0000019175,0.0000019236,0.0000019284, +0.0000019319,0.0000019335,0.0000019340,0.0000019345,0.0000019348, +0.0000019352,0.0000019358,0.0000019367,0.0000019380,0.0000019398, +0.0000019420,0.0000019444,0.0000019469,0.0000019496,0.0000019527, +0.0000019561,0.0000019596,0.0000019632,0.0000019668,0.0000019702, +0.0000019737,0.0000019771,0.0000019808,0.0000019847,0.0000019883, +0.0000019915,0.0000019938,0.0000019952,0.0000019957,0.0000019953, +0.0000019942,0.0000019925,0.0000019907,0.0000019891,0.0000019878, +0.0000019870,0.0000019871,0.0000019879,0.0000019893,0.0000019911, +0.0000019931,0.0000019953,0.0000019976,0.0000019999,0.0000020021, +0.0000020042,0.0000020060,0.0000020074,0.0000020083,0.0000020090, +0.0000020092,0.0000020092,0.0000020092,0.0000020094,0.0000020097, +0.0000020099,0.0000020098,0.0000020094,0.0000020086,0.0000020080, +0.0000020075,0.0000020068,0.0000020061,0.0000020051,0.0000020037, +0.0000020022,0.0000020009,0.0000019999,0.0000019995,0.0000019996, +0.0000019998,0.0000020004,0.0000020013,0.0000020027,0.0000020042, +0.0000020057,0.0000020070,0.0000020081,0.0000020088,0.0000020096, +0.0000020103,0.0000020109,0.0000020111,0.0000020108,0.0000020102, +0.0000020090,0.0000020073,0.0000020049,0.0000020020,0.0000019984, +0.0000019942,0.0000019893,0.0000019840,0.0000019785,0.0000019730, +0.0000019673,0.0000019615,0.0000019557,0.0000019502,0.0000019451, +0.0000019403,0.0000019354,0.0000019303,0.0000019253,0.0000019209, +0.0000019173,0.0000019154,0.0000019150,0.0000019151,0.0000019153, +0.0000019163,0.0000019186,0.0000019217,0.0000019247,0.0000019266, +0.0000019272,0.0000019271,0.0000019271,0.0000019279,0.0000019295, +0.0000019310,0.0000019257,0.0000019278,0.0000019295,0.0000019291, +0.0000019255,0.0000019186,0.0000019112,0.0000019053,0.0000019013, +0.0000018983,0.0000018954,0.0000018927,0.0000018908,0.0000018901, +0.0000018921,0.0000018958,0.0000018995,0.0000019024,0.0000019052, +0.0000019089,0.0000019140,0.0000019203,0.0000019266,0.0000019318, +0.0000019351,0.0000019368,0.0000019374,0.0000019370,0.0000019368, +0.0000019374,0.0000019388,0.0000019396,0.0000019395,0.0000019379, +0.0000019357,0.0000019343,0.0000019340,0.0000019348,0.0000019369, +0.0000019396,0.0000019419,0.0000019439,0.0000019456,0.0000019469, +0.0000019476,0.0000019477,0.0000019473,0.0000019466,0.0000019460, +0.0000019456,0.0000019450,0.0000019441,0.0000019431,0.0000019421, +0.0000019410,0.0000019396,0.0000019382,0.0000019365,0.0000019346, +0.0000019323,0.0000019299,0.0000019278,0.0000019261,0.0000019242, +0.0000019225,0.0000019207,0.0000019192,0.0000019184,0.0000019179, +0.0000019174,0.0000019167,0.0000019158,0.0000019147,0.0000019132, +0.0000019115,0.0000019097,0.0000019080,0.0000019060,0.0000019034, +0.0000019002,0.0000018968,0.0000018934,0.0000018903,0.0000018878, +0.0000018859,0.0000018843,0.0000018829,0.0000018822,0.0000018824, +0.0000018831,0.0000018841,0.0000018850,0.0000018857,0.0000018862, +0.0000018863,0.0000018864,0.0000018868,0.0000018870,0.0000018872, +0.0000018875,0.0000018886,0.0000018904,0.0000018933,0.0000018972, +0.0000019018,0.0000019063,0.0000019099,0.0000019123,0.0000019132, +0.0000019135,0.0000019133,0.0000019129,0.0000019130,0.0000019137, +0.0000019153,0.0000019175,0.0000019177,0.0000019141,0.0000019064, +0.0000018997,0.0000018968,0.0000018960,0.0000018952,0.0000018930, +0.0000018904,0.0000018891,0.0000018883,0.0000018876,0.0000018874, +0.0000018871,0.0000018869,0.0000018876,0.0000018896,0.0000018926, +0.0000018960,0.0000018999,0.0000019042,0.0000019091,0.0000019137, +0.0000019179,0.0000019224,0.0000019271,0.0000019323,0.0000019370, +0.0000019411,0.0000019441,0.0000019462,0.0000019480,0.0000019498, +0.0000019519,0.0000019541,0.0000019558,0.0000019566,0.0000019574, +0.0000019583,0.0000019596,0.0000019611,0.0000019623,0.0000019628, +0.0000019625,0.0000019623,0.0000019626,0.0000019633,0.0000019638, +0.0000019643,0.0000019647,0.0000019652,0.0000019660,0.0000019670, +0.0000019682,0.0000019696,0.0000019711,0.0000019730,0.0000019752, +0.0000019778,0.0000019803,0.0000019825,0.0000019846,0.0000019867, +0.0000019890,0.0000019915,0.0000019942,0.0000019970,0.0000019997, +0.0000020026,0.0000020058,0.0000020090,0.0000020119,0.0000020149, +0.0000020181,0.0000020209,0.0000020236,0.0000020262,0.0000020289, +0.0000020317,0.0000020342,0.0000020363,0.0000020379,0.0000020392, +0.0000020403,0.0000020413,0.0000020421,0.0000020424,0.0000020422, +0.0000020412,0.0000020399,0.0000020390,0.0000020389,0.0000020397, +0.0000020410,0.0000020421,0.0000020430,0.0000020436,0.0000020440, +0.0000020442,0.0000020443,0.0000020446,0.0000020450,0.0000020458, +0.0000020474,0.0000020497,0.0000020522,0.0000020546,0.0000020569, +0.0000020589,0.0000020603,0.0000020608,0.0000020606,0.0000020606, +0.0000020622,0.0000020665,0.0000020732,0.0000020796,0.0000020831, +0.0000020842,0.0000020867,0.0000020924,0.0000020970,0.0000020981, +0.0000020975,0.0000020958,0.0000020922,0.0000020849,0.0000020759, +0.0000020687,0.0000020640,0.0000020604,0.0000020573,0.0000020552, +0.0000020549,0.0000020555,0.0000020572,0.0000020590,0.0000020608, +0.0000020624,0.0000020636,0.0000020647,0.0000020658,0.0000020664, +0.0000020662,0.0000020655,0.0000020647,0.0000020640,0.0000020636, +0.0000020635,0.0000020638,0.0000020646,0.0000020661,0.0000020687, +0.0000020720,0.0000020752,0.0000020780,0.0000020805,0.0000020828, +0.0000020849,0.0000020864,0.0000020877,0.0000020888,0.0000020896, +0.0000020903,0.0000020907,0.0000020905,0.0000020897,0.0000020880, +0.0000020862,0.0000020849,0.0000020839,0.0000020829,0.0000020815, +0.0000020795,0.0000020769,0.0000020742,0.0000020710,0.0000020668, +0.0000020623,0.0000020583,0.0000020547,0.0000020529,0.0000020545, +0.0000020604,0.0000020675,0.0000020726,0.0000020757,0.0000020778, +0.0000020794,0.0000020802,0.0000020803,0.0000020800,0.0000020795, +0.0000020785,0.0000020770,0.0000020748,0.0000020721,0.0000020695, +0.0000020676,0.0000020670,0.0000020668,0.0000020647,0.0000020583, +0.0000020471,0.0000020349,0.0000020274,0.0000020263,0.0000020276, +0.0000020271,0.0000020246,0.0000020230,0.0000020227,0.0000020226, +0.0000020202,0.0000020154,0.0000020099,0.0000020058,0.0000020042, +0.0000020071,0.0000020172,0.0000020282,0.0000020355,0.0000020402, +0.0000020407,0.0000020312,0.0000020122,0.0000019976,0.0000019991, +0.0000020191,0.0000020424,0.0000020511,0.0000020512,0.0000020539, +0.0000020597,0.0000020656,0.0000020699,0.0000020786,0.0000020944, +0.0000021067,0.0000021107,0.0000021127,0.0000021200,0.0000021349, +0.0000021507,0.0000021610,0.0000021681,0.0000021741,0.0000021788, +0.0000021818,0.0000021820,0.0000021796,0.0000021748,0.0000021704, +0.0000021677,0.0000021655,0.0000021623,0.0000021578,0.0000021540, +0.0000021524,0.0000021530,0.0000021553,0.0000021583,0.0000021610, +0.0000021633,0.0000021651,0.0000021659,0.0000021657,0.0000021645, +0.0000021636,0.0000021628,0.0000021623,0.0000021622,0.0000021619, +0.0000021612,0.0000021602,0.0000021590,0.0000021573,0.0000021555, +0.0000021542,0.0000021541,0.0000021549,0.0000021562,0.0000021576, +0.0000021592,0.0000021607,0.0000021620,0.0000021616,0.0000021608, +0.0000021596,0.0000021578,0.0000021547,0.0000021501,0.0000021447, +0.0000021386,0.0000021319,0.0000021252,0.0000021200,0.0000021166, +0.0000021143,0.0000021126,0.0000021110,0.0000021089,0.0000021067, +0.0000021047,0.0000021031,0.0000021016,0.0000021000,0.0000020983, +0.0000020967,0.0000020963,0.0000020968,0.0000020980,0.0000020996, +0.0000021016,0.0000021037,0.0000021056,0.0000021073,0.0000021088, +0.0000021104,0.0000021117,0.0000021124,0.0000021124,0.0000021125, +0.0000021130,0.0000021131,0.0000021133,0.0000021132,0.0000021131, +0.0000021129,0.0000021127,0.0000021125,0.0000021119,0.0000021110, +0.0000021095,0.0000021076,0.0000021053,0.0000021031,0.0000021006, +0.0000020983,0.0000020966,0.0000020959,0.0000020961,0.0000020972, +0.0000020988,0.0000021008,0.0000021032,0.0000021053,0.0000021070, +0.0000021084,0.0000021094,0.0000021101,0.0000021106,0.0000021109, +0.0000021108,0.0000021099,0.0000021085,0.0000021069,0.0000021055, +0.0000021050,0.0000021048,0.0000021049,0.0000021053,0.0000021057, +0.0000021061,0.0000021067,0.0000021074,0.0000021081,0.0000021088, +0.0000021095,0.0000021105,0.0000021113,0.0000021120,0.0000021128, +0.0000021138,0.0000021149,0.0000021158,0.0000021161,0.0000021158, +0.0000021151,0.0000021142,0.0000021130,0.0000021109,0.0000021085, +0.0000021062,0.0000021037,0.0000021018,0.0000021005,0.0000020996, +0.0000020991,0.0000020992,0.0000020993,0.0000020993,0.0000020990, +0.0000020984,0.0000020977,0.0000020976,0.0000020978,0.0000020981, +0.0000020984,0.0000020985,0.0000020983,0.0000020973,0.0000020954, +0.0000020931,0.0000020904,0.0000020881,0.0000020870,0.0000020867, +0.0000020872,0.0000020884,0.0000020902,0.0000020921,0.0000020941, +0.0000020961,0.0000020978,0.0000020994,0.0000021017,0.0000021040, +0.0000021062,0.0000021083,0.0000021102,0.0000021126,0.0000021161, +0.0000021202,0.0000021242,0.0000021278,0.0000021312,0.0000021342, +0.0000021364,0.0000021381,0.0000021394,0.0000021402,0.0000021402, +0.0000021396,0.0000021379,0.0000021351,0.0000021320,0.0000021288, +0.0000021257,0.0000021227,0.0000021196,0.0000021163,0.0000021134, +0.0000021115,0.0000021094,0.0000021069,0.0000021046,0.0000021025, +0.0000021002,0.0000020980,0.0000020961,0.0000020943,0.0000020924, +0.0000020908,0.0000020895,0.0000020881,0.0000020865,0.0000020855, +0.0000020844,0.0000020830,0.0000020814,0.0000020796,0.0000020775, +0.0000020756,0.0000020742,0.0000020727,0.0000020722,0.0000020726, +0.0000020736,0.0000020752,0.0000020771,0.0000020789,0.0000020802, +0.0000020803,0.0000020795,0.0000020778,0.0000020762,0.0000020748, +0.0000020729,0.0000020715,0.0000020719,0.0000020744,0.0000020786, +0.0000020840,0.0000020899,0.0000020959,0.0000021017,0.0000021068, +0.0000021110,0.0000021142,0.0000021159,0.0000021168,0.0000021175, +0.0000021184,0.0000021200,0.0000021227,0.0000021258,0.0000021291, +0.0000021328,0.0000021366,0.0000021401,0.0000021431,0.0000021454, +0.0000021473,0.0000021498,0.0000021530,0.0000021556,0.0000021578, +0.0000021597,0.0000021608,0.0000021609,0.0000021608,0.0000021604, +0.0000021596,0.0000021585,0.0000021576,0.0000021563,0.0000021545, +0.0000021521,0.0000021494,0.0000021466,0.0000021432,0.0000021397, +0.0000021366,0.0000021340,0.0000021321,0.0000021310,0.0000021298, +0.0000021282,0.0000021267,0.0000021255,0.0000021249,0.0000021246, +0.0000021242,0.0000021240,0.0000021239,0.0000021237,0.0000021231, +0.0000021222,0.0000021212,0.0000021200,0.0000021190,0.0000021184, +0.0000021179,0.0000021178,0.0000021181,0.0000021186,0.0000021190, +0.0000021192,0.0000021194,0.0000021200,0.0000021209,0.0000021222, +0.0000021244,0.0000021271,0.0000021298,0.0000021320,0.0000021340, +0.0000021356,0.0000021369,0.0000021380,0.0000021389,0.0000021390, +0.0000021381,0.0000021357,0.0000021316,0.0000021266,0.0000021209, +0.0000021147,0.0000021084,0.0000021019,0.0000020962,0.0000020932, +0.0000020926,0.0000020931,0.0000020931,0.0000020921,0.0000020899, +0.0000020865,0.0000020826,0.0000020785,0.0000020741,0.0000020692, +0.0000020635,0.0000020572,0.0000020511,0.0000020452,0.0000020395, +0.0000020347,0.0000020313,0.0000020294,0.0000020287,0.0000020282, +0.0000020273,0.0000020254,0.0000020225,0.0000020188,0.0000020153, +0.0000020124,0.0000020103,0.0000020088,0.0000020076,0.0000020071, +0.0000020074,0.0000020088,0.0000020106,0.0000020126,0.0000020148, +0.0000020170,0.0000020194,0.0000020217,0.0000020240,0.0000020261, +0.0000020283,0.0000020306,0.0000020329,0.0000020352,0.0000020376, +0.0000020399,0.0000020416,0.0000020428,0.0000020433,0.0000020433, +0.0000020430,0.0000020426,0.0000020425,0.0000020428,0.0000020439, +0.0000020456,0.0000020479,0.0000020508,0.0000020537,0.0000020559, +0.0000020578,0.0000020591,0.0000020593,0.0000020595,0.0000020600, +0.0000020606,0.0000020610,0.0000020611,0.0000020607,0.0000020599, +0.0000020582,0.0000020562,0.0000020537,0.0000020507,0.0000020472, +0.0000020435,0.0000020400,0.0000020373,0.0000020357,0.0000020349, +0.0000020358,0.0000020376,0.0000020398,0.0000020420,0.0000020438, +0.0000020448,0.0000020447,0.0000020436,0.0000020421,0.0000020406, +0.0000020397,0.0000020386,0.0000020374,0.0000020345,0.0000020310, +0.0000020270,0.0000020225,0.0000020171,0.0000020108,0.0000020040, +0.0000019975,0.0000019920,0.0000019882,0.0000019862,0.0000019852, +0.0000019839,0.0000019818,0.0000019784,0.0000019740,0.0000019689, +0.0000019636,0.0000019583,0.0000019545,0.0000019530,0.0000019521, +0.0000019527,0.0000019532,0.0000019526,0.0000019519,0.0000019492, +0.0000019456,0.0000019423,0.0000019406,0.0000019400,0.0000019406, +0.0000019417,0.0000019432,0.0000019447,0.0000019459,0.0000019474, +0.0000019492,0.0000019510,0.0000019525,0.0000019539,0.0000019555, +0.0000019575,0.0000019593,0.0000019606,0.0000019619,0.0000019622, +0.0000019621,0.0000019616,0.0000019606,0.0000019598,0.0000019613, +0.0000019629,0.0000019654,0.0000019686,0.0000019719,0.0000019755, +0.0000019800,0.0000019860,0.0000019932,0.0000019994,0.0000020037, +0.0000020034,0.0000020010,0.0000019971,0.0000019931,0.0000019893, +0.0000019858,0.0000019833,0.0000019824,0.0000019836,0.0000019869, +0.0000019924,0.0000019992,0.0000020063,0.0000020131,0.0000020193, +0.0000020252,0.0000020301,0.0000020355,0.0000020401,0.0000020445, +0.0000020488,0.0000020530,0.0000020566,0.0000020590,0.0000020608, +0.0000020615,0.0000020610,0.0000020594,0.0000020576,0.0000020563, +0.0000020553,0.0000020543,0.0000020533,0.0000020526,0.0000020522, +0.0000020523,0.0000020531,0.0000020544,0.0000020559,0.0000020578, +0.0000020598,0.0000020615,0.0000020631,0.0000020648,0.0000020669, +0.0000020697,0.0000020740,0.0000020794,0.0000020855,0.0000020920, +0.0000020990,0.0000021061,0.0000021119,0.0000021154,0.0000021172, +0.0000021182,0.0000021188,0.0000021192,0.0000021188,0.0000021173, +0.0000021147,0.0000021117,0.0000021091,0.0000021075,0.0000021062, +0.0000021047,0.0000021027,0.0000020997,0.0000020952,0.0000020897, +0.0000020845,0.0000020807,0.0000020786,0.0000020774,0.0000020758, +0.0000020731,0.0000020697,0.0000020664,0.0000020636,0.0000020615, +0.0000020599,0.0000020581,0.0000020565,0.0000020550,0.0000020533, +0.0000020511,0.0000020486,0.0000020455,0.0000020418,0.0000020374, +0.0000020322,0.0000020266,0.0000020211,0.0000020159,0.0000020115, +0.0000020080,0.0000020053,0.0000020034,0.0000020023,0.0000020012, +0.0000020005,0.0000019999,0.0000019993,0.0000019988,0.0000019978, +0.0000019961,0.0000019939,0.0000019915,0.0000019893,0.0000019876, +0.0000019870,0.0000019872,0.0000019876,0.0000019880,0.0000019885, +0.0000019888,0.0000019887,0.0000019879,0.0000019867,0.0000019850, +0.0000019828,0.0000019804,0.0000019780,0.0000019758,0.0000019739, +0.0000019721,0.0000019702,0.0000019685,0.0000019671,0.0000019659, +0.0000019647,0.0000019640,0.0000019636,0.0000019634,0.0000019634, +0.0000019635,0.0000019639,0.0000019649,0.0000019666,0.0000019691, +0.0000019721,0.0000019753,0.0000019782,0.0000019809,0.0000019832, +0.0000019851,0.0000019867,0.0000019877,0.0000019879,0.0000019876, +0.0000019875,0.0000019878,0.0000019885,0.0000019897,0.0000019913, +0.0000019931,0.0000019952,0.0000019975,0.0000019997,0.0000020014, +0.0000020029,0.0000020039,0.0000020040,0.0000020037,0.0000020034, +0.0000020033,0.0000020040,0.0000020056,0.0000020078,0.0000020104, +0.0000020126,0.0000020141,0.0000020152,0.0000020152,0.0000020149, +0.0000020140,0.0000020122,0.0000020095,0.0000020065,0.0000020036, +0.0000020011,0.0000019991,0.0000019981,0.0000019988,0.0000020014, +0.0000020049,0.0000020093,0.0000020136,0.0000020169,0.0000020187, +0.0000020194,0.0000020192,0.0000020173,0.0000020158,0.0000020143, +0.0000020133,0.0000020133,0.0000020133,0.0000020131,0.0000020129, +0.0000020125,0.0000020119,0.0000020113,0.0000020108,0.0000020108, +0.0000020108,0.0000020104,0.0000020091,0.0000020070,0.0000020045, +0.0000020020,0.0000019990,0.0000019954,0.0000019908,0.0000019850, +0.0000019786,0.0000019724,0.0000019672,0.0000019635,0.0000019619, +0.0000019630,0.0000019658,0.0000019693,0.0000019730,0.0000019769, +0.0000019800,0.0000019796,0.0000019754,0.0000019675,0.0000019595, +0.0000019553,0.0000019554,0.0000019581,0.0000019618,0.0000019640, +0.0000019639,0.0000019599,0.0000019511,0.0000019397,0.0000019303, +0.0000019258,0.0000019250,0.0000019248,0.0000019245,0.0000019236, +0.0000019225,0.0000019223,0.0000019232,0.0000019237,0.0000019230, +0.0000019219,0.0000019215,0.0000019230,0.0000019278,0.0000019345, +0.0000019397,0.0000019418,0.0000019415,0.0000019405,0.0000019397, +0.0000019384,0.0000019349,0.0000019279,0.0000019184,0.0000019114, +0.0000019082,0.0000019089,0.0000019093,0.0000019092,0.0000019099, +0.0000019110,0.0000019106,0.0000019075,0.0000019031,0.0000018988, +0.0000018946,0.0000018896,0.0000018849,0.0000018821,0.0000018818, +0.0000018830,0.0000018846,0.0000018862,0.0000018879,0.0000018906, +0.0000018948,0.0000019007,0.0000019082,0.0000019165,0.0000019247, +0.0000019321,0.0000019391,0.0000019456,0.0000019515,0.0000019569, +0.0000019618,0.0000019665,0.0000019710,0.0000019752,0.0000019792, +0.0000019826,0.0000019846,0.0000019852,0.0000019844,0.0000019820, +0.0000019784,0.0000019745,0.0000019703,0.0000019661,0.0000019619, +0.0000019583,0.0000019557,0.0000019537,0.0000019518,0.0000019499, +0.0000019473,0.0000019433,0.0000019381,0.0000019328,0.0000019280, +0.0000019236,0.0000019183,0.0000019116,0.0000019048,0.0000018999, +0.0000018981,0.0000018987,0.0000019003,0.0000019014,0.0000019013, +0.0000019007,0.0000018986,0.0000018955,0.0000018925,0.0000018902, +0.0000018876,0.0000018846,0.0000018816,0.0000018774,0.0000018721, +0.0000018670,0.0000018617,0.0000018565,0.0000018523,0.0000018492, +0.0000018468,0.0000018446,0.0000018422,0.0000018401,0.0000018384, +0.0000018374,0.0000018363,0.0000018358,0.0000018357,0.0000018348, +0.0000018330,0.0000018310,0.0000018291,0.0000018273,0.0000018253, +0.0000018233,0.0000018212,0.0000018193,0.0000018187,0.0000018207, +0.0000018249,0.0000018300,0.0000018348,0.0000018385,0.0000018405, +0.0000018403,0.0000018385,0.0000018363,0.0000018345,0.0000018335, +0.0000018328,0.0000018314,0.0000018288,0.0000018263,0.0000018252, +0.0000018249,0.0000018245,0.0000018238,0.0000018227,0.0000018211, +0.0000018191,0.0000018163,0.0000018116,0.0000018047,0.0000017957, +0.0000017856,0.0000017752,0.0000017649,0.0000017549,0.0000017458, +0.0000017386,0.0000017337,0.0000017316,0.0000017311,0.0000017313, +0.0000017321,0.0000017345,0.0000017386,0.0000017431,0.0000017473, +0.0000017511,0.0000017545,0.0000017573,0.0000017594,0.0000017610, +0.0000017622,0.0000017633,0.0000017643,0.0000017654,0.0000017666, +0.0000017680,0.0000017698,0.0000017712,0.0000017723,0.0000017733, +0.0000017743,0.0000017750,0.0000017755,0.0000017758,0.0000017757, +0.0000017752,0.0000017747,0.0000017742,0.0000017739,0.0000017739, +0.0000017741,0.0000017745,0.0000017755,0.0000017770,0.0000017787, +0.0000017806,0.0000017825,0.0000017845,0.0000017865,0.0000017884, +0.0000017903,0.0000017920,0.0000017933,0.0000017941,0.0000017947, +0.0000017953,0.0000017956,0.0000017951,0.0000017945,0.0000017936, +0.0000017918,0.0000017897,0.0000017878,0.0000017860,0.0000017842, +0.0000017826,0.0000017811,0.0000017799,0.0000017790,0.0000017790, +0.0000017796,0.0000017800,0.0000017806,0.0000017810,0.0000017809, +0.0000017803,0.0000017798,0.0000017801,0.0000017824,0.0000017873, +0.0000017945,0.0000018023,0.0000018101,0.0000018174,0.0000018247, +0.0000018323,0.0000018397,0.0000018473,0.0000018549,0.0000018624, +0.0000018695,0.0000018757,0.0000018810,0.0000018851,0.0000018879, +0.0000018897,0.0000018910,0.0000018921,0.0000018933,0.0000018951, +0.0000018972,0.0000018984,0.0000018983,0.0000018976,0.0000018973, +0.0000018985,0.0000019014,0.0000019051,0.0000019088,0.0000019119, +0.0000019141,0.0000019161,0.0000019176,0.0000019186,0.0000019192, +0.0000019195,0.0000019195,0.0000019190,0.0000019177,0.0000019156, +0.0000019123,0.0000019088,0.0000019062,0.0000019049,0.0000019044, +0.0000019053,0.0000019076,0.0000019114,0.0000019161,0.0000019216, +0.0000019271,0.0000019308,0.0000019337,0.0000019347,0.0000019351, +0.0000019357,0.0000019360,0.0000019367,0.0000019378,0.0000019392, +0.0000019406,0.0000019421,0.0000019438,0.0000019459,0.0000019484, +0.0000019511,0.0000019539,0.0000019568,0.0000019595,0.0000019622, +0.0000019644,0.0000019663,0.0000019684,0.0000019704,0.0000019725, +0.0000019748,0.0000019771,0.0000019792,0.0000019808,0.0000019817, +0.0000019817,0.0000019808,0.0000019794,0.0000019779,0.0000019763, +0.0000019752,0.0000019748,0.0000019752,0.0000019762,0.0000019777, +0.0000019796,0.0000019818,0.0000019843,0.0000019871,0.0000019899, +0.0000019928,0.0000019954,0.0000019976,0.0000019993,0.0000020006, +0.0000020012,0.0000020017,0.0000020022,0.0000020028,0.0000020031, +0.0000020030,0.0000020023,0.0000020013,0.0000020002,0.0000019989, +0.0000019971,0.0000019948,0.0000019918,0.0000019885,0.0000019849, +0.0000019816,0.0000019786,0.0000019765,0.0000019754,0.0000019753, +0.0000019762,0.0000019778,0.0000019799,0.0000019828,0.0000019857, +0.0000019884,0.0000019909,0.0000019931,0.0000019947,0.0000019957, +0.0000019964,0.0000019970,0.0000019975,0.0000019978,0.0000019977, +0.0000019972,0.0000019963,0.0000019947,0.0000019925,0.0000019893, +0.0000019854,0.0000019809,0.0000019757,0.0000019700,0.0000019640, +0.0000019577,0.0000019512,0.0000019449,0.0000019392,0.0000019341, +0.0000019295,0.0000019250,0.0000019204,0.0000019158,0.0000019115, +0.0000019080,0.0000019059,0.0000019056,0.0000019063,0.0000019072, +0.0000019081,0.0000019096,0.0000019121,0.0000019156,0.0000019189, +0.0000019211,0.0000019220,0.0000019220,0.0000019223,0.0000019235, +0.0000019165,0.0000019185,0.0000019216,0.0000019248,0.0000019269, +0.0000019261,0.0000019222,0.0000019151,0.0000019075,0.0000019015, +0.0000018975,0.0000018944,0.0000018916,0.0000018888,0.0000018870, +0.0000018871,0.0000018898,0.0000018936,0.0000018973,0.0000019004, +0.0000019033,0.0000019073,0.0000019130,0.0000019195,0.0000019253, +0.0000019294,0.0000019319,0.0000019324,0.0000019318,0.0000019313, +0.0000019317,0.0000019329,0.0000019346,0.0000019357,0.0000019358, +0.0000019353,0.0000019347,0.0000019346,0.0000019351,0.0000019373, +0.0000019401,0.0000019432,0.0000019462,0.0000019485,0.0000019503, +0.0000019516,0.0000019520,0.0000019520,0.0000019513,0.0000019505, +0.0000019495,0.0000019482,0.0000019466,0.0000019447,0.0000019427, +0.0000019406,0.0000019386,0.0000019367,0.0000019347,0.0000019325, +0.0000019303,0.0000019283,0.0000019265,0.0000019246,0.0000019227, +0.0000019206,0.0000019182,0.0000019160,0.0000019140,0.0000019122, +0.0000019103,0.0000019087,0.0000019076,0.0000019066,0.0000019057, +0.0000019048,0.0000019042,0.0000019036,0.0000019023,0.0000019001, +0.0000018977,0.0000018951,0.0000018925,0.0000018897,0.0000018872, +0.0000018849,0.0000018825,0.0000018808,0.0000018797,0.0000018794, +0.0000018796,0.0000018799,0.0000018803,0.0000018803,0.0000018800, +0.0000018794,0.0000018788,0.0000018780,0.0000018772,0.0000018770, +0.0000018777,0.0000018796,0.0000018824,0.0000018859,0.0000018899, +0.0000018943,0.0000018989,0.0000019034,0.0000019078,0.0000019114, +0.0000019131,0.0000019141,0.0000019153,0.0000019159,0.0000019168, +0.0000019180,0.0000019196,0.0000019197,0.0000019166,0.0000019089, +0.0000018998,0.0000018940,0.0000018910,0.0000018888,0.0000018873, +0.0000018864,0.0000018856,0.0000018849,0.0000018845,0.0000018843, +0.0000018837,0.0000018833,0.0000018834,0.0000018837,0.0000018847, +0.0000018866,0.0000018898,0.0000018948,0.0000019008,0.0000019067, +0.0000019122,0.0000019171,0.0000019216,0.0000019254,0.0000019290, +0.0000019320,0.0000019346,0.0000019376,0.0000019406,0.0000019437, +0.0000019467,0.0000019492,0.0000019510,0.0000019527,0.0000019547, +0.0000019568,0.0000019587,0.0000019602,0.0000019608,0.0000019606, +0.0000019603,0.0000019605,0.0000019608,0.0000019609,0.0000019609, +0.0000019611,0.0000019615,0.0000019621,0.0000019627,0.0000019636, +0.0000019649,0.0000019663,0.0000019682,0.0000019708,0.0000019738, +0.0000019768,0.0000019795,0.0000019824,0.0000019854,0.0000019883, +0.0000019912,0.0000019942,0.0000019970,0.0000019996,0.0000020020, +0.0000020049,0.0000020078,0.0000020102,0.0000020125,0.0000020148, +0.0000020169,0.0000020186,0.0000020200,0.0000020217,0.0000020235, +0.0000020254,0.0000020268,0.0000020280,0.0000020290,0.0000020301, +0.0000020313,0.0000020324,0.0000020332,0.0000020336,0.0000020335, +0.0000020331,0.0000020329,0.0000020335,0.0000020350,0.0000020368, +0.0000020385,0.0000020397,0.0000020405,0.0000020410,0.0000020413, +0.0000020414,0.0000020416,0.0000020418,0.0000020425,0.0000020437, +0.0000020457,0.0000020480,0.0000020504,0.0000020527,0.0000020549, +0.0000020567,0.0000020575,0.0000020572,0.0000020567,0.0000020574, +0.0000020611,0.0000020677,0.0000020749,0.0000020794,0.0000020808, +0.0000020831,0.0000020885,0.0000020927,0.0000020933,0.0000020927, +0.0000020910,0.0000020866,0.0000020787,0.0000020703,0.0000020640, +0.0000020599,0.0000020571,0.0000020549,0.0000020534,0.0000020530, +0.0000020534,0.0000020544,0.0000020557,0.0000020570,0.0000020583, +0.0000020591,0.0000020597,0.0000020598,0.0000020597,0.0000020592, +0.0000020584,0.0000020575,0.0000020565,0.0000020555,0.0000020547, +0.0000020546,0.0000020553,0.0000020565,0.0000020591,0.0000020626, +0.0000020664,0.0000020700,0.0000020733,0.0000020760,0.0000020782, +0.0000020800,0.0000020815,0.0000020827,0.0000020835,0.0000020842, +0.0000020847,0.0000020850,0.0000020847,0.0000020837,0.0000020825, +0.0000020813,0.0000020803,0.0000020798,0.0000020791,0.0000020777, +0.0000020756,0.0000020730,0.0000020697,0.0000020658,0.0000020616, +0.0000020574,0.0000020529,0.0000020499,0.0000020499,0.0000020541, +0.0000020608,0.0000020668,0.0000020706,0.0000020732,0.0000020754, +0.0000020769,0.0000020775,0.0000020774,0.0000020771,0.0000020765, +0.0000020755,0.0000020739,0.0000020714,0.0000020681,0.0000020653, +0.0000020639,0.0000020643,0.0000020648,0.0000020619,0.0000020529, +0.0000020397,0.0000020287,0.0000020250,0.0000020255,0.0000020256, +0.0000020236,0.0000020218,0.0000020220,0.0000020219,0.0000020196, +0.0000020151,0.0000020096,0.0000020052,0.0000020036,0.0000020072, +0.0000020181,0.0000020290,0.0000020358,0.0000020392,0.0000020374, +0.0000020257,0.0000020073,0.0000019969,0.0000020029,0.0000020253, +0.0000020461,0.0000020521,0.0000020531,0.0000020567,0.0000020624, +0.0000020672,0.0000020723,0.0000020847,0.0000021014,0.0000021113, +0.0000021138,0.0000021162,0.0000021255,0.0000021404,0.0000021536, +0.0000021617,0.0000021681,0.0000021736,0.0000021773,0.0000021796, +0.0000021796,0.0000021764,0.0000021711,0.0000021659,0.0000021625, +0.0000021604,0.0000021581,0.0000021549,0.0000021516,0.0000021485, +0.0000021470,0.0000021475,0.0000021494,0.0000021521,0.0000021552, +0.0000021581,0.0000021599,0.0000021608,0.0000021615,0.0000021622, +0.0000021625,0.0000021626,0.0000021624,0.0000021619,0.0000021610, +0.0000021594,0.0000021572,0.0000021549,0.0000021526,0.0000021508, +0.0000021498,0.0000021491,0.0000021485,0.0000021481,0.0000021482, +0.0000021494,0.0000021515,0.0000021535,0.0000021554,0.0000021568, +0.0000021564,0.0000021548,0.0000021522,0.0000021490,0.0000021448, +0.0000021397,0.0000021340,0.0000021283,0.0000021230,0.0000021182, +0.0000021142,0.0000021106,0.0000021076,0.0000021051,0.0000021032, +0.0000021014,0.0000020992,0.0000020970,0.0000020953,0.0000020941, +0.0000020933,0.0000020931,0.0000020936,0.0000020941,0.0000020946, +0.0000020962,0.0000020980,0.0000021003,0.0000021029,0.0000021056, +0.0000021079,0.0000021098,0.0000021116,0.0000021133,0.0000021145, +0.0000021158,0.0000021166,0.0000021170,0.0000021179,0.0000021187, +0.0000021187,0.0000021185,0.0000021182,0.0000021172,0.0000021154, +0.0000021131,0.0000021106,0.0000021075,0.0000021042,0.0000021017, +0.0000021000,0.0000020992,0.0000020992,0.0000020999,0.0000021011, +0.0000021026,0.0000021041,0.0000021053,0.0000021061,0.0000021064, +0.0000021065,0.0000021061,0.0000021054,0.0000021046,0.0000021033, +0.0000021013,0.0000020990,0.0000020974,0.0000020962,0.0000020955, +0.0000020954,0.0000020954,0.0000020955,0.0000020956,0.0000020959, +0.0000020964,0.0000020970,0.0000020976,0.0000020983,0.0000020991, +0.0000021000,0.0000021010,0.0000021023,0.0000021041,0.0000021062, +0.0000021084,0.0000021099,0.0000021107,0.0000021110,0.0000021107, +0.0000021098,0.0000021082,0.0000021062,0.0000021039,0.0000021016, +0.0000020999,0.0000020989,0.0000020982,0.0000020981,0.0000020985, +0.0000020991,0.0000020996,0.0000020999,0.0000020998,0.0000020997, +0.0000020997,0.0000020999,0.0000021003,0.0000021006,0.0000021007, +0.0000021003,0.0000020989,0.0000020968,0.0000020942,0.0000020913, +0.0000020892,0.0000020876,0.0000020870,0.0000020873,0.0000020882, +0.0000020893,0.0000020900,0.0000020906,0.0000020915,0.0000020924, +0.0000020933,0.0000020946,0.0000020961,0.0000020977,0.0000020997, +0.0000021019,0.0000021044,0.0000021078,0.0000021114,0.0000021146, +0.0000021178,0.0000021211,0.0000021241,0.0000021267,0.0000021292, +0.0000021314,0.0000021332,0.0000021343,0.0000021348,0.0000021345, +0.0000021335,0.0000021315,0.0000021289,0.0000021265,0.0000021243, +0.0000021213,0.0000021178,0.0000021145,0.0000021122,0.0000021102, +0.0000021082,0.0000021062,0.0000021041,0.0000021018,0.0000020994, +0.0000020969,0.0000020939,0.0000020909,0.0000020879,0.0000020854, +0.0000020830,0.0000020811,0.0000020799,0.0000020796,0.0000020797, +0.0000020803,0.0000020808,0.0000020811,0.0000020809,0.0000020800, +0.0000020784,0.0000020763,0.0000020743,0.0000020727,0.0000020712, +0.0000020701,0.0000020694,0.0000020692,0.0000020695,0.0000020700, +0.0000020703,0.0000020704,0.0000020701,0.0000020695,0.0000020688, +0.0000020686,0.0000020691,0.0000020705,0.0000020731,0.0000020766, +0.0000020812,0.0000020868,0.0000020931,0.0000020996,0.0000021056, +0.0000021103,0.0000021131,0.0000021146,0.0000021159,0.0000021170, +0.0000021183,0.0000021201,0.0000021225,0.0000021259,0.0000021298, +0.0000021339,0.0000021375,0.0000021402,0.0000021427,0.0000021457, +0.0000021492,0.0000021527,0.0000021562,0.0000021599,0.0000021621, +0.0000021639,0.0000021647,0.0000021644,0.0000021631,0.0000021610, +0.0000021588,0.0000021563,0.0000021536,0.0000021509,0.0000021481, +0.0000021450,0.0000021415,0.0000021383,0.0000021357,0.0000021343, +0.0000021335,0.0000021327,0.0000021315,0.0000021297,0.0000021278, +0.0000021260,0.0000021245,0.0000021232,0.0000021222,0.0000021216, +0.0000021212,0.0000021209,0.0000021204,0.0000021196,0.0000021187, +0.0000021177,0.0000021167,0.0000021157,0.0000021150,0.0000021146, +0.0000021145,0.0000021147,0.0000021147,0.0000021145,0.0000021146, +0.0000021149,0.0000021154,0.0000021161,0.0000021176,0.0000021197, +0.0000021219,0.0000021241,0.0000021264,0.0000021285,0.0000021304, +0.0000021323,0.0000021338,0.0000021344,0.0000021337,0.0000021314, +0.0000021276,0.0000021223,0.0000021165,0.0000021106,0.0000021043, +0.0000020979,0.0000020930,0.0000020901,0.0000020891,0.0000020888, +0.0000020880,0.0000020862,0.0000020833,0.0000020794,0.0000020749, +0.0000020703,0.0000020655,0.0000020600,0.0000020539,0.0000020477, +0.0000020418,0.0000020362,0.0000020308,0.0000020261,0.0000020228, +0.0000020207,0.0000020193,0.0000020179,0.0000020163,0.0000020142, +0.0000020116,0.0000020089,0.0000020065,0.0000020047,0.0000020032, +0.0000020021,0.0000020015,0.0000020016,0.0000020026,0.0000020041, +0.0000020058,0.0000020078,0.0000020101,0.0000020124,0.0000020144, +0.0000020162,0.0000020177,0.0000020192,0.0000020209,0.0000020226, +0.0000020242,0.0000020260,0.0000020280,0.0000020296,0.0000020306, +0.0000020312,0.0000020313,0.0000020311,0.0000020305,0.0000020301, +0.0000020306,0.0000020317,0.0000020334,0.0000020357,0.0000020390, +0.0000020427,0.0000020464,0.0000020496,0.0000020523,0.0000020545, +0.0000020561,0.0000020575,0.0000020593,0.0000020614,0.0000020629, +0.0000020630,0.0000020633,0.0000020629,0.0000020617,0.0000020599, +0.0000020573,0.0000020544,0.0000020512,0.0000020479,0.0000020446, +0.0000020414,0.0000020385,0.0000020370,0.0000020371,0.0000020385, +0.0000020408,0.0000020431,0.0000020450,0.0000020457,0.0000020452, +0.0000020436,0.0000020414,0.0000020396,0.0000020386,0.0000020375, +0.0000020361,0.0000020344,0.0000020328,0.0000020308,0.0000020279, +0.0000020235,0.0000020173,0.0000020101,0.0000020030,0.0000019969, +0.0000019925,0.0000019896,0.0000019873,0.0000019850,0.0000019825, +0.0000019797,0.0000019766,0.0000019730,0.0000019685,0.0000019634, +0.0000019581,0.0000019538,0.0000019507,0.0000019500,0.0000019500, +0.0000019507,0.0000019512,0.0000019503,0.0000019484,0.0000019464, +0.0000019443,0.0000019431,0.0000019426,0.0000019429,0.0000019441, +0.0000019452,0.0000019458,0.0000019466,0.0000019475,0.0000019482, +0.0000019489,0.0000019501,0.0000019518,0.0000019542,0.0000019570, +0.0000019597,0.0000019624,0.0000019640,0.0000019656,0.0000019658, +0.0000019650,0.0000019645,0.0000019644,0.0000019646,0.0000019654, +0.0000019668,0.0000019688,0.0000019713,0.0000019747,0.0000019796, +0.0000019863,0.0000019935,0.0000019994,0.0000020009,0.0000020003, +0.0000019978,0.0000019947,0.0000019913,0.0000019883,0.0000019861, +0.0000019852,0.0000019860,0.0000019889,0.0000019940,0.0000020009, +0.0000020084,0.0000020160,0.0000020232,0.0000020295,0.0000020355, +0.0000020407,0.0000020451,0.0000020491,0.0000020529,0.0000020562, +0.0000020588,0.0000020604,0.0000020613,0.0000020612,0.0000020606, +0.0000020599,0.0000020594,0.0000020592,0.0000020589,0.0000020584, +0.0000020578,0.0000020574,0.0000020576,0.0000020584,0.0000020594, +0.0000020608,0.0000020629,0.0000020655,0.0000020681,0.0000020706, +0.0000020733,0.0000020766,0.0000020807,0.0000020858,0.0000020917, +0.0000020979,0.0000021040,0.0000021096,0.0000021138,0.0000021164, +0.0000021178,0.0000021189,0.0000021196,0.0000021193,0.0000021179, +0.0000021152,0.0000021121,0.0000021093,0.0000021067,0.0000021046, +0.0000021028,0.0000021007,0.0000020986,0.0000020961,0.0000020925, +0.0000020878,0.0000020825,0.0000020775,0.0000020738,0.0000020714, +0.0000020693,0.0000020668,0.0000020637,0.0000020607,0.0000020580, +0.0000020555,0.0000020535,0.0000020516,0.0000020495,0.0000020475, +0.0000020456,0.0000020434,0.0000020407,0.0000020375,0.0000020337, +0.0000020294,0.0000020250,0.0000020204,0.0000020163,0.0000020128, +0.0000020100,0.0000020080,0.0000020067,0.0000020064,0.0000020060, +0.0000020055,0.0000020048,0.0000020036,0.0000020018,0.0000019997, +0.0000019975,0.0000019948,0.0000019922,0.0000019897,0.0000019876, +0.0000019861,0.0000019854,0.0000019856,0.0000019862,0.0000019867, +0.0000019866,0.0000019856,0.0000019836,0.0000019807,0.0000019773, +0.0000019738,0.0000019703,0.0000019672,0.0000019644,0.0000019621, +0.0000019603,0.0000019587,0.0000019569,0.0000019550,0.0000019530, +0.0000019511,0.0000019491,0.0000019475,0.0000019464,0.0000019452, +0.0000019439,0.0000019428,0.0000019421,0.0000019420,0.0000019425, +0.0000019440,0.0000019470,0.0000019512,0.0000019559,0.0000019609, +0.0000019657,0.0000019703,0.0000019745,0.0000019781,0.0000019807, +0.0000019824,0.0000019835,0.0000019840,0.0000019840,0.0000019838, +0.0000019836,0.0000019835,0.0000019838,0.0000019845,0.0000019861, +0.0000019886,0.0000019916,0.0000019949,0.0000019980,0.0000020002, +0.0000020016,0.0000020022,0.0000020019,0.0000020016,0.0000020018, +0.0000020030,0.0000020051,0.0000020076,0.0000020102,0.0000020125, +0.0000020140,0.0000020150,0.0000020151,0.0000020143,0.0000020122, +0.0000020094,0.0000020066,0.0000020043,0.0000020022,0.0000020006, +0.0000020000,0.0000020004,0.0000020010,0.0000020029,0.0000020059, +0.0000020088,0.0000020117,0.0000020143,0.0000020156,0.0000020156, +0.0000020149,0.0000020142,0.0000020143,0.0000020150,0.0000020151, +0.0000020147,0.0000020142,0.0000020133,0.0000020121,0.0000020109, +0.0000020101,0.0000020097,0.0000020096,0.0000020093,0.0000020081, +0.0000020062,0.0000020041,0.0000020018,0.0000019988,0.0000019954, +0.0000019909,0.0000019849,0.0000019782,0.0000019719,0.0000019663, +0.0000019618,0.0000019596,0.0000019596,0.0000019619,0.0000019653, +0.0000019691,0.0000019732,0.0000019766,0.0000019769,0.0000019732, +0.0000019661,0.0000019587,0.0000019548,0.0000019547,0.0000019578, +0.0000019618,0.0000019640,0.0000019639,0.0000019600,0.0000019514, +0.0000019401,0.0000019306,0.0000019259,0.0000019248,0.0000019243, +0.0000019235,0.0000019223,0.0000019209,0.0000019203,0.0000019214, +0.0000019224,0.0000019223,0.0000019214,0.0000019205,0.0000019213, +0.0000019252,0.0000019316,0.0000019371,0.0000019397,0.0000019394, +0.0000019383,0.0000019372,0.0000019355,0.0000019316,0.0000019231, +0.0000019129,0.0000019062,0.0000019039,0.0000019038,0.0000019034, +0.0000019035,0.0000019048,0.0000019060,0.0000019046,0.0000019011, +0.0000018976,0.0000018943,0.0000018898,0.0000018842,0.0000018793, +0.0000018768,0.0000018769,0.0000018780,0.0000018792,0.0000018800, +0.0000018806,0.0000018817,0.0000018842,0.0000018887,0.0000018951, +0.0000019028,0.0000019112,0.0000019197,0.0000019282,0.0000019360, +0.0000019431,0.0000019492,0.0000019545,0.0000019590,0.0000019632, +0.0000019675,0.0000019718,0.0000019754,0.0000019780,0.0000019794, +0.0000019791,0.0000019773,0.0000019741,0.0000019701,0.0000019661, +0.0000019618,0.0000019583,0.0000019558,0.0000019538,0.0000019520, +0.0000019502,0.0000019473,0.0000019426,0.0000019366,0.0000019307, +0.0000019255,0.0000019207,0.0000019151,0.0000019081,0.0000019012, +0.0000018958,0.0000018930,0.0000018929,0.0000018942,0.0000018956, +0.0000018962,0.0000018960,0.0000018950,0.0000018930,0.0000018903, +0.0000018874,0.0000018844,0.0000018812,0.0000018779,0.0000018738, +0.0000018690,0.0000018642,0.0000018590,0.0000018535,0.0000018488, +0.0000018460,0.0000018439,0.0000018423,0.0000018405,0.0000018394, +0.0000018387,0.0000018376,0.0000018366,0.0000018363,0.0000018362, +0.0000018358,0.0000018349,0.0000018329,0.0000018307,0.0000018292, +0.0000018274,0.0000018251,0.0000018225,0.0000018196,0.0000018172, +0.0000018168,0.0000018186,0.0000018227,0.0000018276,0.0000018320, +0.0000018353,0.0000018363,0.0000018352,0.0000018335,0.0000018326, +0.0000018324,0.0000018322,0.0000018308,0.0000018287,0.0000018275, +0.0000018273,0.0000018268,0.0000018261,0.0000018249,0.0000018233, +0.0000018211,0.0000018179,0.0000018125,0.0000018047,0.0000017950, +0.0000017845,0.0000017734,0.0000017622,0.0000017517,0.0000017431, +0.0000017372,0.0000017338,0.0000017326,0.0000017328,0.0000017342, +0.0000017365,0.0000017392,0.0000017424,0.0000017459,0.0000017494, +0.0000017526,0.0000017553,0.0000017576,0.0000017595,0.0000017610, +0.0000017624,0.0000017635,0.0000017644,0.0000017654,0.0000017664, +0.0000017674,0.0000017685,0.0000017700,0.0000017712,0.0000017718, +0.0000017723,0.0000017724,0.0000017722,0.0000017718,0.0000017715, +0.0000017709,0.0000017701,0.0000017692,0.0000017685,0.0000017680, +0.0000017683,0.0000017684,0.0000017684,0.0000017688,0.0000017699, +0.0000017711,0.0000017725,0.0000017736,0.0000017739,0.0000017751, +0.0000017764,0.0000017778,0.0000017794,0.0000017813,0.0000017834, +0.0000017850,0.0000017868,0.0000017889,0.0000017909,0.0000017926, +0.0000017937,0.0000017937,0.0000017931,0.0000017921,0.0000017918, +0.0000017906,0.0000017887,0.0000017871,0.0000017854,0.0000017835, +0.0000017817,0.0000017807,0.0000017803,0.0000017804,0.0000017805, +0.0000017801,0.0000017796,0.0000017787,0.0000017779,0.0000017767, +0.0000017762,0.0000017771,0.0000017802,0.0000017854,0.0000017921, +0.0000018000,0.0000018084,0.0000018168,0.0000018252,0.0000018338, +0.0000018428,0.0000018519,0.0000018605,0.0000018686,0.0000018755, +0.0000018808,0.0000018844,0.0000018870,0.0000018894,0.0000018913, +0.0000018932,0.0000018957,0.0000018976,0.0000018985,0.0000018984, +0.0000018975,0.0000018969,0.0000018973,0.0000018991,0.0000019022, +0.0000019058,0.0000019094,0.0000019126,0.0000019154,0.0000019174, +0.0000019182,0.0000019183,0.0000019181,0.0000019177,0.0000019169, +0.0000019157,0.0000019135,0.0000019104,0.0000019072,0.0000019050, +0.0000019043,0.0000019046,0.0000019061,0.0000019082,0.0000019112, +0.0000019151,0.0000019197,0.0000019250,0.0000019294,0.0000019321, +0.0000019346,0.0000019356,0.0000019360,0.0000019362,0.0000019368, +0.0000019379,0.0000019393,0.0000019406,0.0000019419,0.0000019437, +0.0000019458,0.0000019479,0.0000019501,0.0000019522,0.0000019544, +0.0000019565,0.0000019582,0.0000019597,0.0000019610,0.0000019620, +0.0000019629,0.0000019637,0.0000019643,0.0000019648,0.0000019652, +0.0000019654,0.0000019650,0.0000019640,0.0000019625,0.0000019610, +0.0000019593,0.0000019579,0.0000019569,0.0000019564,0.0000019565, +0.0000019570,0.0000019580,0.0000019596,0.0000019619,0.0000019645, +0.0000019671,0.0000019697,0.0000019723,0.0000019746,0.0000019768, +0.0000019785,0.0000019798,0.0000019808,0.0000019817,0.0000019822, +0.0000019820,0.0000019815,0.0000019805,0.0000019790,0.0000019772, +0.0000019748,0.0000019717,0.0000019681,0.0000019642,0.0000019603, +0.0000019563,0.0000019526,0.0000019496,0.0000019479,0.0000019473, +0.0000019478,0.0000019493,0.0000019514,0.0000019539,0.0000019570, +0.0000019603,0.0000019636,0.0000019666,0.0000019695,0.0000019718, +0.0000019734,0.0000019744,0.0000019752,0.0000019759,0.0000019767, +0.0000019775,0.0000019778,0.0000019779,0.0000019775,0.0000019763, +0.0000019741,0.0000019709,0.0000019669,0.0000019621,0.0000019569, +0.0000019512,0.0000019450,0.0000019386,0.0000019324,0.0000019266, +0.0000019218,0.0000019175,0.0000019134,0.0000019096,0.0000019061, +0.0000019028,0.0000018998,0.0000018978,0.0000018975,0.0000018979, +0.0000018990,0.0000019004,0.0000019017,0.0000019034,0.0000019058, +0.0000019090,0.0000019119,0.0000019141,0.0000019152,0.0000019157, +0.0000019073,0.0000019085,0.0000019105,0.0000019138,0.0000019181, +0.0000019218,0.0000019239,0.0000019230,0.0000019185,0.0000019110, +0.0000019032,0.0000018975,0.0000018939,0.0000018912,0.0000018885, +0.0000018860,0.0000018851,0.0000018858,0.0000018889,0.0000018927, +0.0000018958,0.0000018984,0.0000019017,0.0000019065,0.0000019125, +0.0000019185,0.0000019236,0.0000019267,0.0000019275,0.0000019269, +0.0000019260,0.0000019262,0.0000019274,0.0000019293,0.0000019313, +0.0000019341,0.0000019363,0.0000019375,0.0000019382,0.0000019394, +0.0000019411,0.0000019430,0.0000019451,0.0000019474,0.0000019495, +0.0000019512,0.0000019527,0.0000019535,0.0000019536,0.0000019534, +0.0000019527,0.0000019517,0.0000019503,0.0000019486,0.0000019465, +0.0000019440,0.0000019412,0.0000019383,0.0000019354,0.0000019325, +0.0000019297,0.0000019273,0.0000019255,0.0000019239,0.0000019223, +0.0000019209,0.0000019190,0.0000019168,0.0000019146,0.0000019123, +0.0000019100,0.0000019076,0.0000019053,0.0000019032,0.0000019016, +0.0000019003,0.0000018995,0.0000018990,0.0000018983,0.0000018973, +0.0000018962,0.0000018947,0.0000018935,0.0000018918,0.0000018896, +0.0000018875,0.0000018856,0.0000018835,0.0000018817,0.0000018805, +0.0000018796,0.0000018791,0.0000018786,0.0000018782,0.0000018776, +0.0000018766,0.0000018754,0.0000018739,0.0000018725,0.0000018713, +0.0000018709,0.0000018716,0.0000018735,0.0000018763,0.0000018793, +0.0000018827,0.0000018867,0.0000018912,0.0000018962,0.0000019019, +0.0000019076,0.0000019124,0.0000019154,0.0000019174,0.0000019185, +0.0000019193,0.0000019200,0.0000019207,0.0000019207,0.0000019176, +0.0000019097,0.0000018990,0.0000018906,0.0000018858,0.0000018837, +0.0000018827,0.0000018821,0.0000018813,0.0000018808,0.0000018807, +0.0000018810,0.0000018813,0.0000018811,0.0000018811,0.0000018813, +0.0000018817,0.0000018826,0.0000018848,0.0000018883,0.0000018930, +0.0000018987,0.0000019044,0.0000019097,0.0000019144,0.0000019184, +0.0000019213,0.0000019235,0.0000019260,0.0000019288,0.0000019321, +0.0000019353,0.0000019382,0.0000019407,0.0000019432,0.0000019461, +0.0000019489,0.0000019513,0.0000019530,0.0000019537,0.0000019535, +0.0000019532,0.0000019531,0.0000019528,0.0000019522,0.0000019516, +0.0000019515,0.0000019515,0.0000019516,0.0000019519,0.0000019525, +0.0000019535,0.0000019549,0.0000019569,0.0000019597,0.0000019631, +0.0000019667,0.0000019702,0.0000019740,0.0000019780,0.0000019818, +0.0000019858,0.0000019898,0.0000019934,0.0000019967,0.0000019996, +0.0000020030,0.0000020062,0.0000020089,0.0000020113,0.0000020135, +0.0000020154,0.0000020168,0.0000020179,0.0000020189,0.0000020201, +0.0000020212,0.0000020218,0.0000020221,0.0000020224,0.0000020228, +0.0000020234,0.0000020241,0.0000020247,0.0000020250,0.0000020250, +0.0000020251,0.0000020256,0.0000020267,0.0000020285,0.0000020308, +0.0000020331,0.0000020351,0.0000020366,0.0000020375,0.0000020381, +0.0000020386,0.0000020390,0.0000020393,0.0000020399,0.0000020410, +0.0000020427,0.0000020448,0.0000020470,0.0000020491,0.0000020510, +0.0000020528,0.0000020537,0.0000020535,0.0000020528,0.0000020531, +0.0000020561,0.0000020625,0.0000020703,0.0000020756,0.0000020773, +0.0000020794,0.0000020845,0.0000020883,0.0000020888,0.0000020880, +0.0000020860,0.0000020809,0.0000020730,0.0000020655,0.0000020600, +0.0000020565,0.0000020544,0.0000020530,0.0000020519,0.0000020515, +0.0000020517,0.0000020524,0.0000020535,0.0000020550,0.0000020564, +0.0000020573,0.0000020576,0.0000020576,0.0000020572,0.0000020564, +0.0000020550,0.0000020534,0.0000020517,0.0000020498,0.0000020481, +0.0000020470,0.0000020465,0.0000020470,0.0000020489,0.0000020519, +0.0000020553,0.0000020592,0.0000020630,0.0000020663,0.0000020689, +0.0000020711,0.0000020734,0.0000020754,0.0000020768,0.0000020778, +0.0000020783,0.0000020784,0.0000020784,0.0000020784,0.0000020781, +0.0000020776,0.0000020770,0.0000020764,0.0000020758,0.0000020749, +0.0000020736,0.0000020713,0.0000020681,0.0000020644,0.0000020608, +0.0000020569,0.0000020526,0.0000020482,0.0000020465,0.0000020481, +0.0000020534,0.0000020594,0.0000020640,0.0000020672,0.0000020698, +0.0000020720,0.0000020734,0.0000020739,0.0000020737,0.0000020730, +0.0000020722,0.0000020710,0.0000020691,0.0000020666,0.0000020638, +0.0000020614,0.0000020610,0.0000020626,0.0000020628,0.0000020565, +0.0000020437,0.0000020304,0.0000020239,0.0000020237,0.0000020241, +0.0000020227,0.0000020219,0.0000020220,0.0000020218,0.0000020196, +0.0000020149,0.0000020092,0.0000020045,0.0000020035,0.0000020078, +0.0000020192,0.0000020298,0.0000020357,0.0000020373,0.0000020337, +0.0000020208,0.0000020037,0.0000019970,0.0000020070,0.0000020304, +0.0000020492,0.0000020541,0.0000020555,0.0000020597,0.0000020651, +0.0000020694,0.0000020767,0.0000020917,0.0000021074,0.0000021146, +0.0000021162,0.0000021200,0.0000021305,0.0000021444,0.0000021547, +0.0000021611,0.0000021669,0.0000021717,0.0000021748,0.0000021767, +0.0000021762,0.0000021726,0.0000021669,0.0000021616,0.0000021580, +0.0000021560,0.0000021545,0.0000021526,0.0000021498,0.0000021468, +0.0000021450,0.0000021437,0.0000021435,0.0000021447,0.0000021464, +0.0000021481,0.0000021499,0.0000021522,0.0000021549,0.0000021571, +0.0000021587,0.0000021598,0.0000021605,0.0000021604,0.0000021594, +0.0000021574,0.0000021553,0.0000021530,0.0000021507,0.0000021489, +0.0000021477,0.0000021463,0.0000021444,0.0000021424,0.0000021409, +0.0000021401,0.0000021401,0.0000021413,0.0000021434,0.0000021456, +0.0000021472,0.0000021481,0.0000021481,0.0000021468,0.0000021448, +0.0000021422,0.0000021393,0.0000021361,0.0000021327,0.0000021293, +0.0000021261,0.0000021231,0.0000021203,0.0000021177,0.0000021152, +0.0000021125,0.0000021099,0.0000021072,0.0000021046,0.0000021021, +0.0000020997,0.0000020976,0.0000020958,0.0000020942,0.0000020928, +0.0000020920,0.0000020917,0.0000020921,0.0000020931,0.0000020940, +0.0000020959,0.0000020990,0.0000021023,0.0000021055,0.0000021086, +0.0000021114,0.0000021142,0.0000021166,0.0000021189,0.0000021207, +0.0000021218,0.0000021226,0.0000021225,0.0000021213,0.0000021197, +0.0000021182,0.0000021154,0.0000021122,0.0000021089,0.0000021061, +0.0000021044,0.0000021037,0.0000021036,0.0000021038,0.0000021042, +0.0000021048,0.0000021055,0.0000021058,0.0000021058,0.0000021055, +0.0000021049,0.0000021037,0.0000021021,0.0000021001,0.0000020977, +0.0000020957,0.0000020940,0.0000020922,0.0000020909,0.0000020901, +0.0000020899,0.0000020899,0.0000020901,0.0000020903,0.0000020907, +0.0000020909,0.0000020913,0.0000020916,0.0000020916,0.0000020918, +0.0000020922,0.0000020929,0.0000020943,0.0000020962,0.0000020987, +0.0000021007,0.0000021021,0.0000021030,0.0000021032,0.0000021028, +0.0000021015,0.0000020995,0.0000020972,0.0000020947,0.0000020928, +0.0000020917,0.0000020910,0.0000020909,0.0000020915,0.0000020926, +0.0000020937,0.0000020946,0.0000020953,0.0000020960,0.0000020968, +0.0000020970,0.0000020973,0.0000020975,0.0000020972,0.0000020963, +0.0000020947,0.0000020925,0.0000020899,0.0000020878,0.0000020854, +0.0000020837,0.0000020832,0.0000020838,0.0000020846,0.0000020851, +0.0000020851,0.0000020849,0.0000020848,0.0000020849,0.0000020856, +0.0000020865,0.0000020878,0.0000020897,0.0000020923,0.0000020950, +0.0000020978,0.0000021009,0.0000021039,0.0000021065,0.0000021092, +0.0000021119,0.0000021144,0.0000021167,0.0000021187,0.0000021205, +0.0000021218,0.0000021225,0.0000021227,0.0000021226,0.0000021224, +0.0000021219,0.0000021211,0.0000021202,0.0000021198,0.0000021187, +0.0000021166,0.0000021146,0.0000021131,0.0000021117,0.0000021100, +0.0000021081,0.0000021062,0.0000021041,0.0000021019,0.0000020992, +0.0000020959,0.0000020922,0.0000020886,0.0000020854,0.0000020823, +0.0000020795,0.0000020773,0.0000020759,0.0000020751,0.0000020750, +0.0000020753,0.0000020762,0.0000020771,0.0000020779,0.0000020781, +0.0000020780,0.0000020776,0.0000020768,0.0000020752,0.0000020729, +0.0000020702,0.0000020676,0.0000020653,0.0000020636,0.0000020622, +0.0000020609,0.0000020602,0.0000020603,0.0000020610,0.0000020623, +0.0000020640,0.0000020663,0.0000020689,0.0000020713,0.0000020737, +0.0000020765,0.0000020800,0.0000020845,0.0000020901,0.0000020961, +0.0000021018,0.0000021068,0.0000021110,0.0000021140,0.0000021160, +0.0000021172,0.0000021184,0.0000021202,0.0000021233,0.0000021272, +0.0000021308,0.0000021340,0.0000021372,0.0000021405,0.0000021437, +0.0000021468,0.0000021501,0.0000021540,0.0000021580,0.0000021616, +0.0000021645,0.0000021649,0.0000021655,0.0000021646,0.0000021622, +0.0000021591,0.0000021555,0.0000021518,0.0000021481,0.0000021443, +0.0000021405,0.0000021373,0.0000021354,0.0000021344,0.0000021335, +0.0000021324,0.0000021309,0.0000021287,0.0000021261,0.0000021231, +0.0000021204,0.0000021180,0.0000021161,0.0000021149,0.0000021143, +0.0000021138,0.0000021132,0.0000021126,0.0000021122,0.0000021115, +0.0000021109,0.0000021105,0.0000021101,0.0000021099,0.0000021098, +0.0000021097,0.0000021095,0.0000021094,0.0000021094,0.0000021095, +0.0000021096,0.0000021099,0.0000021108,0.0000021122,0.0000021140, +0.0000021161,0.0000021184,0.0000021209,0.0000021232,0.0000021255, +0.0000021274,0.0000021281,0.0000021276,0.0000021256,0.0000021220, +0.0000021168,0.0000021109,0.0000021047,0.0000020984,0.0000020927, +0.0000020882,0.0000020854,0.0000020840,0.0000020833,0.0000020822, +0.0000020801,0.0000020770,0.0000020730,0.0000020684,0.0000020636, +0.0000020584,0.0000020525,0.0000020461,0.0000020397,0.0000020338, +0.0000020287,0.0000020240,0.0000020202,0.0000020173,0.0000020149, +0.0000020125,0.0000020100,0.0000020077,0.0000020054,0.0000020032, +0.0000020015,0.0000020003,0.0000019994,0.0000019986,0.0000019981, +0.0000019982,0.0000019989,0.0000020000,0.0000020014,0.0000020032, +0.0000020057,0.0000020084,0.0000020106,0.0000020122,0.0000020135, +0.0000020147,0.0000020161,0.0000020174,0.0000020184,0.0000020193, +0.0000020204,0.0000020213,0.0000020220,0.0000020222,0.0000020220, +0.0000020215,0.0000020206,0.0000020198,0.0000020196,0.0000020200, +0.0000020208,0.0000020223,0.0000020247,0.0000020279,0.0000020314, +0.0000020350,0.0000020384,0.0000020412,0.0000020436,0.0000020461, +0.0000020494,0.0000020531,0.0000020562,0.0000020586,0.0000020599, +0.0000020602,0.0000020598,0.0000020589,0.0000020572,0.0000020552, +0.0000020529,0.0000020503,0.0000020486,0.0000020462,0.0000020435, +0.0000020408,0.0000020392,0.0000020391,0.0000020402,0.0000020420, +0.0000020439,0.0000020453,0.0000020458,0.0000020453,0.0000020438, +0.0000020421,0.0000020404,0.0000020384,0.0000020365,0.0000020346, +0.0000020330,0.0000020320,0.0000020310,0.0000020294,0.0000020260, +0.0000020210,0.0000020152,0.0000020094,0.0000020041,0.0000019994, +0.0000019952,0.0000019914,0.0000019876,0.0000019840,0.0000019806, +0.0000019776,0.0000019747,0.0000019715,0.0000019676,0.0000019630, +0.0000019584,0.0000019544,0.0000019516,0.0000019497,0.0000019490, +0.0000019486,0.0000019484,0.0000019478,0.0000019474,0.0000019467, +0.0000019460,0.0000019457,0.0000019459,0.0000019462,0.0000019462, +0.0000019460,0.0000019464,0.0000019466,0.0000019465,0.0000019464, +0.0000019469,0.0000019483,0.0000019503,0.0000019529,0.0000019560, +0.0000019594,0.0000019622,0.0000019645,0.0000019659,0.0000019665, +0.0000019673,0.0000019672,0.0000019670,0.0000019668,0.0000019666, +0.0000019670,0.0000019682,0.0000019704,0.0000019740,0.0000019796, +0.0000019870,0.0000019936,0.0000019988,0.0000019993,0.0000019987, +0.0000019966,0.0000019939,0.0000019913,0.0000019891,0.0000019876, +0.0000019881,0.0000019902,0.0000019952,0.0000020022,0.0000020102, +0.0000020180,0.0000020253,0.0000020324,0.0000020387,0.0000020440, +0.0000020483,0.0000020521,0.0000020554,0.0000020577,0.0000020589, +0.0000020595,0.0000020598,0.0000020599,0.0000020600,0.0000020608, +0.0000020617,0.0000020627,0.0000020634,0.0000020637,0.0000020640, +0.0000020647,0.0000020657,0.0000020670,0.0000020690,0.0000020717, +0.0000020748,0.0000020777,0.0000020808,0.0000020844,0.0000020883, +0.0000020926,0.0000020976,0.0000021030,0.0000021079,0.0000021118, +0.0000021146,0.0000021168,0.0000021183,0.0000021192,0.0000021194, +0.0000021186,0.0000021159,0.0000021122,0.0000021085,0.0000021057, +0.0000021035,0.0000021011,0.0000020988,0.0000020963,0.0000020936, +0.0000020913,0.0000020887,0.0000020848,0.0000020798,0.0000020743, +0.0000020691,0.0000020649,0.0000020617,0.0000020589,0.0000020560, +0.0000020532,0.0000020506,0.0000020480,0.0000020454,0.0000020427, +0.0000020400,0.0000020373,0.0000020350,0.0000020330,0.0000020309, +0.0000020284,0.0000020257,0.0000020228,0.0000020203,0.0000020181, +0.0000020164,0.0000020149,0.0000020139,0.0000020129,0.0000020121, +0.0000020115,0.0000020103,0.0000020085,0.0000020059,0.0000020032, +0.0000019998,0.0000019969,0.0000019944,0.0000019923,0.0000019909, +0.0000019900,0.0000019892,0.0000019889,0.0000019886,0.0000019881, +0.0000019872,0.0000019853,0.0000019821,0.0000019780,0.0000019737, +0.0000019699,0.0000019670,0.0000019650,0.0000019634,0.0000019621, +0.0000019610,0.0000019600,0.0000019586,0.0000019571,0.0000019553, +0.0000019532,0.0000019508,0.0000019484,0.0000019459,0.0000019431, +0.0000019406,0.0000019387,0.0000019366,0.0000019343,0.0000019319, +0.0000019298,0.0000019281,0.0000019272,0.0000019275,0.0000019290, +0.0000019318,0.0000019354,0.0000019396,0.0000019444,0.0000019498, +0.0000019555,0.0000019610,0.0000019659,0.0000019700,0.0000019734, +0.0000019759,0.0000019775,0.0000019785,0.0000019790,0.0000019793, +0.0000019794,0.0000019795,0.0000019800,0.0000019810,0.0000019824, +0.0000019846,0.0000019875,0.0000019907,0.0000019939,0.0000019967, +0.0000019985,0.0000019993,0.0000019996,0.0000020000,0.0000020010, +0.0000020028,0.0000020053,0.0000020081,0.0000020108,0.0000020131, +0.0000020145,0.0000020142,0.0000020131,0.0000020110,0.0000020087, +0.0000020064,0.0000020046,0.0000020032,0.0000020021,0.0000020011, +0.0000020001,0.0000019996,0.0000020003,0.0000020017,0.0000020043, +0.0000020073,0.0000020099,0.0000020116,0.0000020124,0.0000020131, +0.0000020145,0.0000020154,0.0000020154,0.0000020153,0.0000020147, +0.0000020134,0.0000020119,0.0000020103,0.0000020093,0.0000020086, +0.0000020083,0.0000020081,0.0000020072,0.0000020057,0.0000020036, +0.0000020013,0.0000019984,0.0000019953,0.0000019908,0.0000019846, +0.0000019779,0.0000019714,0.0000019652,0.0000019601,0.0000019569, +0.0000019561,0.0000019577,0.0000019608,0.0000019644,0.0000019687, +0.0000019725,0.0000019735,0.0000019707,0.0000019644,0.0000019576, +0.0000019541,0.0000019544,0.0000019577,0.0000019618,0.0000019641, +0.0000019639,0.0000019601,0.0000019517,0.0000019407,0.0000019312, +0.0000019261,0.0000019246,0.0000019240,0.0000019231,0.0000019214, +0.0000019197,0.0000019190,0.0000019198,0.0000019210,0.0000019214, +0.0000019207,0.0000019200,0.0000019198,0.0000019227,0.0000019283, +0.0000019339,0.0000019369,0.0000019371,0.0000019360,0.0000019348, +0.0000019328,0.0000019279,0.0000019183,0.0000019080,0.0000019024, +0.0000019000,0.0000018989,0.0000018976,0.0000018978,0.0000018995, +0.0000018997,0.0000018975,0.0000018944,0.0000018918,0.0000018886, +0.0000018838,0.0000018785,0.0000018747,0.0000018732,0.0000018734, +0.0000018741,0.0000018747,0.0000018749,0.0000018749,0.0000018752, +0.0000018764,0.0000018791,0.0000018837,0.0000018903,0.0000018983, +0.0000019071,0.0000019163,0.0000019254,0.0000019339,0.0000019412, +0.0000019471,0.0000019520,0.0000019563,0.0000019605,0.0000019643, +0.0000019680,0.0000019709,0.0000019726,0.0000019729,0.0000019715, +0.0000019687,0.0000019650,0.0000019610,0.0000019577,0.0000019555, +0.0000019536,0.0000019519,0.0000019500,0.0000019469,0.0000019416, +0.0000019347,0.0000019282,0.0000019228,0.0000019176,0.0000019113, +0.0000019038,0.0000018971,0.0000018921,0.0000018888,0.0000018874, +0.0000018876,0.0000018885,0.0000018895,0.0000018898,0.0000018894, +0.0000018883,0.0000018861,0.0000018830,0.0000018797,0.0000018764, +0.0000018730,0.0000018692,0.0000018650,0.0000018605,0.0000018554, +0.0000018500,0.0000018454,0.0000018428,0.0000018412,0.0000018402, +0.0000018394,0.0000018385,0.0000018376,0.0000018369,0.0000018365, +0.0000018363,0.0000018361,0.0000018359,0.0000018357,0.0000018344, +0.0000018323,0.0000018311,0.0000018298,0.0000018277,0.0000018251, +0.0000018220,0.0000018186,0.0000018166,0.0000018164,0.0000018182, +0.0000018220,0.0000018266,0.0000018308,0.0000018330,0.0000018329, +0.0000018323,0.0000018322,0.0000018323,0.0000018320,0.0000018306, +0.0000018291,0.0000018287,0.0000018288,0.0000018284,0.0000018274, +0.0000018259,0.0000018235,0.0000018200,0.0000018142,0.0000018059, +0.0000017961,0.0000017856,0.0000017744,0.0000017628,0.0000017522, +0.0000017443,0.0000017393,0.0000017366,0.0000017360,0.0000017372, +0.0000017398,0.0000017429,0.0000017459,0.0000017484,0.0000017504, +0.0000017523,0.0000017544,0.0000017566,0.0000017586,0.0000017598, +0.0000017605,0.0000017610,0.0000017614,0.0000017618,0.0000017626, +0.0000017635,0.0000017645,0.0000017656,0.0000017665,0.0000017676, +0.0000017680,0.0000017679,0.0000017674,0.0000017668,0.0000017668, +0.0000017669,0.0000017668,0.0000017667,0.0000017669,0.0000017674, +0.0000017685,0.0000017697,0.0000017711,0.0000017724,0.0000017734, +0.0000017743,0.0000017753,0.0000017763,0.0000017771,0.0000017776, +0.0000017777,0.0000017773,0.0000017767,0.0000017759,0.0000017752, +0.0000017749,0.0000017749,0.0000017746,0.0000017751,0.0000017750, +0.0000017764,0.0000017784,0.0000017814,0.0000017841,0.0000017863, +0.0000017884,0.0000017906,0.0000017918,0.0000017922,0.0000017918, +0.0000017921,0.0000017904,0.0000017884,0.0000017864,0.0000017845, +0.0000017827,0.0000017812,0.0000017799,0.0000017790,0.0000017784, +0.0000017777,0.0000017768,0.0000017756,0.0000017749,0.0000017743, +0.0000017743,0.0000017755,0.0000017789,0.0000017846,0.0000017916, +0.0000017995,0.0000018080,0.0000018173,0.0000018277,0.0000018385, +0.0000018491,0.0000018590,0.0000018676,0.0000018742,0.0000018792, +0.0000018834,0.0000018870,0.0000018903,0.0000018933,0.0000018959, +0.0000018977,0.0000018986,0.0000018985,0.0000018975,0.0000018965, +0.0000018957,0.0000018962,0.0000018986,0.0000019021,0.0000019063, +0.0000019105,0.0000019142,0.0000019165,0.0000019174,0.0000019172, +0.0000019165,0.0000019158,0.0000019150,0.0000019140,0.0000019122, +0.0000019097,0.0000019068,0.0000019052,0.0000019052,0.0000019060, +0.0000019071,0.0000019089,0.0000019113,0.0000019144,0.0000019181, +0.0000019219,0.0000019260,0.0000019296,0.0000019322,0.0000019343, +0.0000019356,0.0000019361,0.0000019365,0.0000019373,0.0000019383, +0.0000019399,0.0000019420,0.0000019440,0.0000019459,0.0000019474, +0.0000019491,0.0000019509,0.0000019525,0.0000019538,0.0000019551, +0.0000019560,0.0000019565,0.0000019570,0.0000019572,0.0000019571, +0.0000019568,0.0000019561,0.0000019552,0.0000019537,0.0000019518, +0.0000019497,0.0000019475,0.0000019455,0.0000019439,0.0000019424, +0.0000019412,0.0000019404,0.0000019398,0.0000019396,0.0000019401, +0.0000019413,0.0000019427,0.0000019441,0.0000019456,0.0000019474, +0.0000019492,0.0000019509,0.0000019526,0.0000019540,0.0000019550, +0.0000019555,0.0000019554,0.0000019551,0.0000019543,0.0000019530, +0.0000019512,0.0000019490,0.0000019465,0.0000019436,0.0000019408, +0.0000019378,0.0000019347,0.0000019313,0.0000019284,0.0000019264, +0.0000019253,0.0000019253,0.0000019261,0.0000019275,0.0000019294, +0.0000019317,0.0000019344,0.0000019372,0.0000019399,0.0000019426, +0.0000019451,0.0000019473,0.0000019489,0.0000019502,0.0000019511, +0.0000019520,0.0000019531,0.0000019544,0.0000019555,0.0000019561, +0.0000019564,0.0000019561,0.0000019549,0.0000019529,0.0000019496, +0.0000019457,0.0000019414,0.0000019368,0.0000019316,0.0000019260, +0.0000019203,0.0000019148,0.0000019101,0.0000019060,0.0000019024, +0.0000018992,0.0000018967,0.0000018946,0.0000018926,0.0000018912, +0.0000018905,0.0000018906,0.0000018913,0.0000018924,0.0000018938, +0.0000018952,0.0000018966,0.0000018986,0.0000019012,0.0000019037, +0.0000019058,0.0000018950,0.0000018973,0.0000018996,0.0000019022, +0.0000019057,0.0000019101,0.0000019152,0.0000019192,0.0000019208, +0.0000019191,0.0000019139,0.0000019058,0.0000018984,0.0000018938, +0.0000018912,0.0000018891,0.0000018868,0.0000018850,0.0000018844, +0.0000018857,0.0000018891,0.0000018927,0.0000018956,0.0000018980, +0.0000019013,0.0000019062,0.0000019122,0.0000019178,0.0000019218, +0.0000019232,0.0000019227,0.0000019218,0.0000019223,0.0000019238, +0.0000019259,0.0000019292,0.0000019330,0.0000019366,0.0000019395, +0.0000019420,0.0000019443,0.0000019463,0.0000019479,0.0000019493, +0.0000019506,0.0000019516,0.0000019524,0.0000019530,0.0000019532, +0.0000019531,0.0000019528,0.0000019520,0.0000019509,0.0000019495, +0.0000019479,0.0000019461,0.0000019438,0.0000019412,0.0000019385, +0.0000019352,0.0000019317,0.0000019284,0.0000019256,0.0000019234, +0.0000019214,0.0000019197,0.0000019181,0.0000019164,0.0000019147, +0.0000019131,0.0000019115,0.0000019096,0.0000019075,0.0000019052, +0.0000019028,0.0000019006,0.0000018989,0.0000018976,0.0000018961, +0.0000018945,0.0000018927,0.0000018909,0.0000018896,0.0000018885, +0.0000018873,0.0000018861,0.0000018850,0.0000018841,0.0000018832, +0.0000018824,0.0000018817,0.0000018808,0.0000018800,0.0000018794, +0.0000018787,0.0000018774,0.0000018757,0.0000018740,0.0000018724, +0.0000018711,0.0000018700,0.0000018695,0.0000018695,0.0000018702, +0.0000018714,0.0000018733,0.0000018761,0.0000018795,0.0000018835, +0.0000018889,0.0000018957,0.0000019033,0.0000019105,0.0000019158, +0.0000019187,0.0000019202,0.0000019211,0.0000019215,0.0000019211, +0.0000019201,0.0000019166,0.0000019092,0.0000018986,0.0000018882, +0.0000018825,0.0000018795,0.0000018780,0.0000018769,0.0000018762, +0.0000018762,0.0000018771,0.0000018783,0.0000018794,0.0000018804, +0.0000018815,0.0000018821,0.0000018827,0.0000018830,0.0000018835, +0.0000018852,0.0000018877,0.0000018909,0.0000018950,0.0000019002, +0.0000019054,0.0000019092,0.0000019123,0.0000019152,0.0000019178, +0.0000019206,0.0000019234,0.0000019260,0.0000019287,0.0000019314, +0.0000019346,0.0000019377,0.0000019402,0.0000019419,0.0000019426, +0.0000019424,0.0000019420,0.0000019415,0.0000019406,0.0000019394, +0.0000019386,0.0000019378,0.0000019372,0.0000019368,0.0000019368, +0.0000019371,0.0000019377,0.0000019388,0.0000019408,0.0000019436, +0.0000019470,0.0000019507,0.0000019545,0.0000019586,0.0000019628, +0.0000019670,0.0000019716,0.0000019764,0.0000019810,0.0000019852, +0.0000019892,0.0000019936,0.0000019979,0.0000020017,0.0000020051, +0.0000020082,0.0000020109,0.0000020131,0.0000020149,0.0000020165, +0.0000020181,0.0000020193,0.0000020198,0.0000020198,0.0000020198, +0.0000020197,0.0000020198,0.0000020198,0.0000020197,0.0000020195, +0.0000020193,0.0000020193,0.0000020196,0.0000020204,0.0000020220, +0.0000020242,0.0000020268,0.0000020293,0.0000020315,0.0000020332, +0.0000020344,0.0000020354,0.0000020363,0.0000020370,0.0000020379, +0.0000020390,0.0000020405,0.0000020423,0.0000020443,0.0000020462, +0.0000020477,0.0000020491,0.0000020498,0.0000020495,0.0000020487, +0.0000020488,0.0000020516,0.0000020578,0.0000020657,0.0000020714, +0.0000020734,0.0000020754,0.0000020802,0.0000020838,0.0000020842, +0.0000020833,0.0000020809,0.0000020755,0.0000020682,0.0000020615, +0.0000020566,0.0000020536,0.0000020523,0.0000020515,0.0000020508, +0.0000020505,0.0000020508,0.0000020516,0.0000020531,0.0000020550, +0.0000020567,0.0000020577,0.0000020583,0.0000020585,0.0000020584, +0.0000020574,0.0000020555,0.0000020533,0.0000020509,0.0000020485, +0.0000020460,0.0000020436,0.0000020420,0.0000020412,0.0000020418, +0.0000020434,0.0000020456,0.0000020482,0.0000020512,0.0000020541, +0.0000020567,0.0000020595,0.0000020626,0.0000020658,0.0000020686, +0.0000020707,0.0000020717,0.0000020721,0.0000020726,0.0000020730, +0.0000020733,0.0000020735,0.0000020735,0.0000020729,0.0000020720, +0.0000020711,0.0000020701,0.0000020683,0.0000020655,0.0000020622, +0.0000020592,0.0000020564,0.0000020526,0.0000020480,0.0000020449, +0.0000020443,0.0000020465,0.0000020509,0.0000020558,0.0000020597, +0.0000020628,0.0000020655,0.0000020678,0.0000020693,0.0000020697, +0.0000020694,0.0000020686,0.0000020675,0.0000020662,0.0000020645, +0.0000020620,0.0000020594,0.0000020586,0.0000020599,0.0000020612, +0.0000020581,0.0000020464,0.0000020319,0.0000020234,0.0000020222, +0.0000020228,0.0000020226,0.0000020222,0.0000020224,0.0000020222, +0.0000020198,0.0000020146,0.0000020084,0.0000020038,0.0000020029, +0.0000020083,0.0000020207,0.0000020308,0.0000020351,0.0000020354, +0.0000020304,0.0000020170,0.0000020010,0.0000019977,0.0000020103, +0.0000020350,0.0000020521,0.0000020564,0.0000020582,0.0000020630, +0.0000020682,0.0000020728,0.0000020823,0.0000020982,0.0000021118, +0.0000021168,0.0000021181,0.0000021228,0.0000021341,0.0000021466, +0.0000021545,0.0000021593,0.0000021643,0.0000021687,0.0000021715, +0.0000021730,0.0000021721,0.0000021686,0.0000021634,0.0000021581, +0.0000021542,0.0000021521,0.0000021510,0.0000021497,0.0000021484, +0.0000021469,0.0000021448,0.0000021431,0.0000021421,0.0000021412, +0.0000021405,0.0000021405,0.0000021415,0.0000021435,0.0000021459, +0.0000021483,0.0000021506,0.0000021524,0.0000021537,0.0000021543, +0.0000021542,0.0000021533,0.0000021518,0.0000021498,0.0000021478, +0.0000021465,0.0000021453,0.0000021438,0.0000021422,0.0000021404, +0.0000021383,0.0000021366,0.0000021353,0.0000021346,0.0000021344, +0.0000021348,0.0000021353,0.0000021362,0.0000021373,0.0000021378, +0.0000021376,0.0000021370,0.0000021362,0.0000021351,0.0000021338, +0.0000021325,0.0000021311,0.0000021296,0.0000021281,0.0000021266, +0.0000021253,0.0000021245,0.0000021231,0.0000021214,0.0000021195, +0.0000021175,0.0000021154,0.0000021129,0.0000021103,0.0000021072, +0.0000021041,0.0000021014,0.0000020991,0.0000020966,0.0000020950, +0.0000020944,0.0000020947,0.0000020954,0.0000020965,0.0000020979, +0.0000021003,0.0000021032,0.0000021062,0.0000021091,0.0000021122, +0.0000021148,0.0000021170,0.0000021183,0.0000021190,0.0000021191, +0.0000021183,0.0000021169,0.0000021152,0.0000021132,0.0000021111, +0.0000021094,0.0000021086,0.0000021085,0.0000021080,0.0000021076, +0.0000021072,0.0000021071,0.0000021069,0.0000021066,0.0000021062, +0.0000021055,0.0000021042,0.0000021025,0.0000021005,0.0000020987, +0.0000020969,0.0000020951,0.0000020931,0.0000020914,0.0000020905, +0.0000020904,0.0000020906,0.0000020910,0.0000020914,0.0000020917, +0.0000020920,0.0000020924,0.0000020924,0.0000020922,0.0000020918, +0.0000020913,0.0000020911,0.0000020911,0.0000020918,0.0000020927, +0.0000020941,0.0000020953,0.0000020962,0.0000020964,0.0000020961, +0.0000020950,0.0000020931,0.0000020909,0.0000020883,0.0000020863, +0.0000020851,0.0000020844,0.0000020840,0.0000020839,0.0000020842, +0.0000020846,0.0000020852,0.0000020859,0.0000020870,0.0000020881, +0.0000020885,0.0000020886,0.0000020886,0.0000020881,0.0000020871, +0.0000020856,0.0000020834,0.0000020818,0.0000020801,0.0000020782, +0.0000020770,0.0000020772,0.0000020781,0.0000020791,0.0000020796, +0.0000020797,0.0000020794,0.0000020789,0.0000020789,0.0000020799, +0.0000020811,0.0000020828,0.0000020854,0.0000020883,0.0000020911, +0.0000020937,0.0000020964,0.0000020989,0.0000021014,0.0000021037, +0.0000021058,0.0000021076,0.0000021095,0.0000021113,0.0000021128, +0.0000021137,0.0000021138,0.0000021132,0.0000021122,0.0000021109, +0.0000021094,0.0000021081,0.0000021074,0.0000021073,0.0000021076, +0.0000021081,0.0000021087,0.0000021094,0.0000021099,0.0000021097, +0.0000021092,0.0000021078,0.0000021058,0.0000021037,0.0000021012, +0.0000020982,0.0000020948,0.0000020913,0.0000020880,0.0000020849, +0.0000020817,0.0000020788,0.0000020765,0.0000020750,0.0000020741, +0.0000020735,0.0000020732,0.0000020728,0.0000020720,0.0000020717, +0.0000020718,0.0000020724,0.0000020731,0.0000020735,0.0000020735, +0.0000020730,0.0000020716,0.0000020693,0.0000020663,0.0000020631, +0.0000020600,0.0000020569,0.0000020544,0.0000020531,0.0000020529, +0.0000020539,0.0000020565,0.0000020597,0.0000020632,0.0000020665, +0.0000020697,0.0000020725,0.0000020752,0.0000020783,0.0000020823, +0.0000020871,0.0000020929,0.0000020987,0.0000021043,0.0000021091, +0.0000021127,0.0000021153,0.0000021175,0.0000021199,0.0000021225, +0.0000021251,0.0000021278,0.0000021310,0.0000021344,0.0000021375, +0.0000021404,0.0000021431,0.0000021462,0.0000021500,0.0000021541, +0.0000021578,0.0000021607,0.0000021627,0.0000021637,0.0000021624, +0.0000021609,0.0000021583,0.0000021546,0.0000021503,0.0000021458, +0.0000021415,0.0000021380,0.0000021356,0.0000021341,0.0000021328, +0.0000021315,0.0000021294,0.0000021268,0.0000021236,0.0000021202, +0.0000021169,0.0000021138,0.0000021113,0.0000021096,0.0000021083, +0.0000021073,0.0000021066,0.0000021061,0.0000021058,0.0000021057, +0.0000021057,0.0000021059,0.0000021060,0.0000021059,0.0000021057, +0.0000021053,0.0000021051,0.0000021049,0.0000021045,0.0000021042, +0.0000021040,0.0000021042,0.0000021048,0.0000021058,0.0000021071, +0.0000021088,0.0000021109,0.0000021131,0.0000021154,0.0000021174, +0.0000021188,0.0000021191,0.0000021185,0.0000021165,0.0000021130, +0.0000021079,0.0000021019,0.0000020955,0.0000020897,0.0000020848, +0.0000020810,0.0000020788,0.0000020780,0.0000020775,0.0000020765, +0.0000020746,0.0000020718,0.0000020681,0.0000020638,0.0000020591, +0.0000020535,0.0000020471,0.0000020404,0.0000020337,0.0000020279, +0.0000020235,0.0000020199,0.0000020169,0.0000020140,0.0000020111, +0.0000020083,0.0000020054,0.0000020028,0.0000020005,0.0000019985, +0.0000019973,0.0000019970,0.0000019969,0.0000019970,0.0000019973, +0.0000019981,0.0000019991,0.0000020001,0.0000020014,0.0000020033, +0.0000020058,0.0000020082,0.0000020103,0.0000020117,0.0000020129, +0.0000020143,0.0000020158,0.0000020168,0.0000020175,0.0000020179, +0.0000020182,0.0000020185,0.0000020186,0.0000020183,0.0000020177, +0.0000020170,0.0000020163,0.0000020157,0.0000020153,0.0000020153, +0.0000020160,0.0000020170,0.0000020184,0.0000020202,0.0000020223, +0.0000020245,0.0000020267,0.0000020288,0.0000020313,0.0000020346, +0.0000020389,0.0000020431,0.0000020465,0.0000020489,0.0000020503, +0.0000020511,0.0000020510,0.0000020502,0.0000020490,0.0000020477, +0.0000020464,0.0000020454,0.0000020445,0.0000020434,0.0000020419, +0.0000020404,0.0000020398,0.0000020401,0.0000020415,0.0000020431, +0.0000020445,0.0000020453,0.0000020455,0.0000020455,0.0000020446, +0.0000020429,0.0000020411,0.0000020391,0.0000020369,0.0000020347, +0.0000020330,0.0000020315,0.0000020298,0.0000020275,0.0000020246, +0.0000020214,0.0000020181,0.0000020145,0.0000020107,0.0000020069, +0.0000020030,0.0000019985,0.0000019932,0.0000019876,0.0000019825, +0.0000019782,0.0000019749,0.0000019720,0.0000019694,0.0000019668, +0.0000019639,0.0000019607,0.0000019571,0.0000019534,0.0000019508, +0.0000019484,0.0000019470,0.0000019458,0.0000019457,0.0000019457, +0.0000019464,0.0000019473,0.0000019485,0.0000019491,0.0000019489, +0.0000019487,0.0000019483,0.0000019473,0.0000019460,0.0000019457, +0.0000019457,0.0000019460,0.0000019469,0.0000019488,0.0000019512, +0.0000019539,0.0000019565,0.0000019592,0.0000019622,0.0000019645, +0.0000019661,0.0000019673,0.0000019670,0.0000019670,0.0000019664, +0.0000019659,0.0000019661,0.0000019674,0.0000019700,0.0000019742, +0.0000019801,0.0000019871,0.0000019929,0.0000019980,0.0000019996, +0.0000019988,0.0000019966,0.0000019939,0.0000019914,0.0000019897, +0.0000019902,0.0000019917,0.0000019961,0.0000020032,0.0000020115, +0.0000020197,0.0000020274,0.0000020341,0.0000020399,0.0000020450, +0.0000020493,0.0000020530,0.0000020555,0.0000020567,0.0000020569, +0.0000020569,0.0000020572,0.0000020582,0.0000020599,0.0000020620, +0.0000020639,0.0000020661,0.0000020681,0.0000020699,0.0000020717, +0.0000020736,0.0000020759,0.0000020786,0.0000020817,0.0000020850, +0.0000020883,0.0000020918,0.0000020953,0.0000020987,0.0000021023, +0.0000021061,0.0000021097,0.0000021124,0.0000021144,0.0000021161, +0.0000021176,0.0000021185,0.0000021181,0.0000021161,0.0000021128, +0.0000021090,0.0000021050,0.0000021016,0.0000020989,0.0000020962, +0.0000020936,0.0000020910,0.0000020881,0.0000020856,0.0000020837, +0.0000020809,0.0000020765,0.0000020708,0.0000020647,0.0000020589, +0.0000020541,0.0000020505,0.0000020476,0.0000020447,0.0000020418, +0.0000020389,0.0000020359,0.0000020327,0.0000020296,0.0000020267, +0.0000020245,0.0000020232,0.0000020225,0.0000020218,0.0000020212, +0.0000020205,0.0000020200,0.0000020196,0.0000020195,0.0000020194, +0.0000020189,0.0000020176,0.0000020157,0.0000020132,0.0000020105, +0.0000020068,0.0000020033,0.0000019999,0.0000019968,0.0000019946, +0.0000019933,0.0000019927,0.0000019924,0.0000019928,0.0000019931, +0.0000019932,0.0000019927,0.0000019907,0.0000019867,0.0000019812, +0.0000019753,0.0000019699,0.0000019663,0.0000019646,0.0000019642, +0.0000019644,0.0000019643,0.0000019642,0.0000019638,0.0000019629, +0.0000019614,0.0000019594,0.0000019571,0.0000019544,0.0000019512, +0.0000019476,0.0000019442,0.0000019411,0.0000019379,0.0000019352, +0.0000019328,0.0000019305,0.0000019279,0.0000019253,0.0000019229, +0.0000019207,0.0000019192,0.0000019189,0.0000019195,0.0000019208, +0.0000019225,0.0000019245,0.0000019270,0.0000019303,0.0000019345, +0.0000019394,0.0000019445,0.0000019498,0.0000019549,0.0000019596, +0.0000019635,0.0000019668,0.0000019694,0.0000019715,0.0000019732, +0.0000019746,0.0000019760,0.0000019772,0.0000019781,0.0000019789, +0.0000019796,0.0000019810,0.0000019833,0.0000019866,0.0000019900, +0.0000019929,0.0000019953,0.0000019970,0.0000019983,0.0000019995, +0.0000020011,0.0000020035,0.0000020063,0.0000020092,0.0000020116, +0.0000020127,0.0000020124,0.0000020113,0.0000020097,0.0000020078, +0.0000020061,0.0000020048,0.0000020037,0.0000020024,0.0000020007, +0.0000019989,0.0000019978,0.0000019974,0.0000019983,0.0000020006, +0.0000020035,0.0000020058,0.0000020075,0.0000020096,0.0000020117, +0.0000020130,0.0000020135,0.0000020134,0.0000020127,0.0000020114, +0.0000020098,0.0000020081,0.0000020066,0.0000020057,0.0000020055, +0.0000020058,0.0000020055,0.0000020042,0.0000020023,0.0000019999, +0.0000019976,0.0000019947,0.0000019903,0.0000019842,0.0000019774, +0.0000019706,0.0000019639,0.0000019583,0.0000019547,0.0000019529, +0.0000019538,0.0000019562,0.0000019596,0.0000019638,0.0000019680, +0.0000019698,0.0000019676,0.0000019625,0.0000019566,0.0000019537, +0.0000019540,0.0000019575,0.0000019616,0.0000019638,0.0000019636, +0.0000019596,0.0000019515,0.0000019409,0.0000019317,0.0000019266, +0.0000019250,0.0000019243,0.0000019230,0.0000019208,0.0000019188, +0.0000019178,0.0000019178,0.0000019189,0.0000019200,0.0000019200, +0.0000019193,0.0000019187,0.0000019202,0.0000019246,0.0000019303, +0.0000019339,0.0000019345,0.0000019333,0.0000019321,0.0000019298, +0.0000019241,0.0000019142,0.0000019043,0.0000018991,0.0000018964, +0.0000018939,0.0000018920,0.0000018924,0.0000018935,0.0000018928, +0.0000018905,0.0000018882,0.0000018856,0.0000018822,0.0000018780, +0.0000018741,0.0000018718,0.0000018709,0.0000018708,0.0000018710, +0.0000018711,0.0000018711,0.0000018709,0.0000018704,0.0000018704, +0.0000018717,0.0000018751,0.0000018804,0.0000018874,0.0000018957, +0.0000019050,0.0000019147,0.0000019241,0.0000019326,0.0000019397, +0.0000019456,0.0000019504,0.0000019545,0.0000019583,0.0000019617, +0.0000019643,0.0000019657,0.0000019658,0.0000019645,0.0000019618, +0.0000019586,0.0000019560,0.0000019544,0.0000019530,0.0000019514, +0.0000019495,0.0000019460,0.0000019398,0.0000019321,0.0000019251, +0.0000019196,0.0000019139,0.0000019065,0.0000018986,0.0000018920, +0.0000018872,0.0000018838,0.0000018815,0.0000018804,0.0000018805, +0.0000018811,0.0000018817,0.0000018819,0.0000018813,0.0000018797, +0.0000018769,0.0000018736,0.0000018706,0.0000018676,0.0000018640, +0.0000018600,0.0000018559,0.0000018513,0.0000018462,0.0000018420, +0.0000018395,0.0000018383,0.0000018381,0.0000018371,0.0000018358, +0.0000018349,0.0000018349,0.0000018355,0.0000018358,0.0000018356, +0.0000018351,0.0000018350,0.0000018346,0.0000018333,0.0000018321, +0.0000018314,0.0000018301,0.0000018280,0.0000018251,0.0000018218, +0.0000018186,0.0000018169,0.0000018170,0.0000018190,0.0000018228, +0.0000018272,0.0000018301,0.0000018311,0.0000018314,0.0000018320, +0.0000018323,0.0000018318,0.0000018308,0.0000018300,0.0000018297, +0.0000018298,0.0000018295,0.0000018286,0.0000018266,0.0000018229, +0.0000018167,0.0000018080,0.0000017979,0.0000017874,0.0000017765, +0.0000017650,0.0000017545,0.0000017470,0.0000017426,0.0000017403, +0.0000017401,0.0000017423,0.0000017463,0.0000017500,0.0000017523, +0.0000017536,0.0000017547,0.0000017560,0.0000017574,0.0000017589, +0.0000017603,0.0000017610,0.0000017610,0.0000017606,0.0000017603, +0.0000017602,0.0000017606,0.0000017614,0.0000017622,0.0000017628, +0.0000017631,0.0000017631,0.0000017632,0.0000017636,0.0000017639, +0.0000017645,0.0000017659,0.0000017683,0.0000017714,0.0000017749, +0.0000017787,0.0000017824,0.0000017860,0.0000017893,0.0000017923, +0.0000017949,0.0000017971,0.0000017986,0.0000017997,0.0000018005, +0.0000018013,0.0000018018,0.0000018019,0.0000018014,0.0000018005, +0.0000017991,0.0000017971,0.0000017946,0.0000017915,0.0000017883, +0.0000017850,0.0000017817,0.0000017784,0.0000017754,0.0000017735, +0.0000017736,0.0000017743,0.0000017745,0.0000017754,0.0000017788, +0.0000017825,0.0000017860,0.0000017899,0.0000017931,0.0000017942, +0.0000017942,0.0000017940,0.0000017923,0.0000017900,0.0000017873, +0.0000017843,0.0000017816,0.0000017794,0.0000017775,0.0000017763, +0.0000017750,0.0000017743,0.0000017737,0.0000017728,0.0000017718, +0.0000017716,0.0000017728,0.0000017752,0.0000017791,0.0000017843, +0.0000017910,0.0000017998,0.0000018105,0.0000018223,0.0000018346, +0.0000018466,0.0000018568,0.0000018652,0.0000018722,0.0000018782, +0.0000018834,0.0000018880,0.0000018920,0.0000018951,0.0000018973, +0.0000018983,0.0000018980,0.0000018972,0.0000018954,0.0000018937, +0.0000018930,0.0000018944,0.0000018977,0.0000019023,0.0000019075, +0.0000019120,0.0000019151,0.0000019163,0.0000019158,0.0000019149, +0.0000019140,0.0000019134,0.0000019129,0.0000019118,0.0000019102, +0.0000019083,0.0000019071,0.0000019065,0.0000019071,0.0000019080, +0.0000019096,0.0000019114,0.0000019136,0.0000019160,0.0000019186, +0.0000019215,0.0000019252,0.0000019287,0.0000019315,0.0000019336, +0.0000019352,0.0000019359,0.0000019364,0.0000019378,0.0000019397, +0.0000019420,0.0000019441,0.0000019457,0.0000019472,0.0000019484, +0.0000019495,0.0000019507,0.0000019517,0.0000019522,0.0000019523, +0.0000019523,0.0000019523,0.0000019519,0.0000019515,0.0000019511, +0.0000019503,0.0000019489,0.0000019467,0.0000019442,0.0000019416, +0.0000019392,0.0000019370,0.0000019349,0.0000019329,0.0000019311, +0.0000019292,0.0000019278,0.0000019269,0.0000019267,0.0000019268, +0.0000019270,0.0000019275,0.0000019281,0.0000019289,0.0000019298, +0.0000019308,0.0000019317,0.0000019320,0.0000019320,0.0000019319, +0.0000019314,0.0000019305,0.0000019292,0.0000019276,0.0000019258, +0.0000019238,0.0000019216,0.0000019195,0.0000019173,0.0000019151, +0.0000019127,0.0000019108,0.0000019094,0.0000019088,0.0000019090, +0.0000019097,0.0000019109,0.0000019124,0.0000019143,0.0000019163, +0.0000019184,0.0000019205,0.0000019224,0.0000019242,0.0000019260, +0.0000019275,0.0000019286,0.0000019294,0.0000019305,0.0000019318, +0.0000019332,0.0000019346,0.0000019358,0.0000019365,0.0000019366, +0.0000019361,0.0000019347,0.0000019324,0.0000019295,0.0000019264, +0.0000019230,0.0000019192,0.0000019147,0.0000019097,0.0000019047, +0.0000019000,0.0000018960,0.0000018927,0.0000018900,0.0000018879, +0.0000018864,0.0000018853,0.0000018845,0.0000018841,0.0000018840, +0.0000018840,0.0000018843,0.0000018853,0.0000018866,0.0000018878, +0.0000018889,0.0000018905,0.0000018926,0.0000018831,0.0000018851, +0.0000018876,0.0000018904,0.0000018938,0.0000018976,0.0000019021, +0.0000019073,0.0000019128,0.0000019165,0.0000019176,0.0000019144, +0.0000019086,0.0000019008,0.0000018945,0.0000018910,0.0000018895, +0.0000018881,0.0000018864,0.0000018851,0.0000018855,0.0000018876, +0.0000018910,0.0000018938,0.0000018958,0.0000018979,0.0000019014, +0.0000019067,0.0000019127,0.0000019177,0.0000019202,0.0000019205, +0.0000019203,0.0000019206,0.0000019214,0.0000019237,0.0000019275, +0.0000019317,0.0000019361,0.0000019402,0.0000019439,0.0000019471, +0.0000019498,0.0000019520,0.0000019536,0.0000019547,0.0000019552, +0.0000019552,0.0000019547,0.0000019540,0.0000019532,0.0000019523, +0.0000019510,0.0000019494,0.0000019476,0.0000019458,0.0000019437, +0.0000019415,0.0000019393,0.0000019369,0.0000019341,0.0000019314, +0.0000019286,0.0000019260,0.0000019235,0.0000019211,0.0000019187, +0.0000019163,0.0000019143,0.0000019126,0.0000019113,0.0000019099, +0.0000019085,0.0000019074,0.0000019059,0.0000019040,0.0000019024, +0.0000019012,0.0000018997,0.0000018976,0.0000018951,0.0000018922, +0.0000018892,0.0000018865,0.0000018837,0.0000018816,0.0000018800, +0.0000018790,0.0000018791,0.0000018798,0.0000018805,0.0000018804, +0.0000018805,0.0000018809,0.0000018811,0.0000018806,0.0000018792, +0.0000018774,0.0000018754,0.0000018735,0.0000018719,0.0000018707, +0.0000018700,0.0000018694,0.0000018690,0.0000018690,0.0000018695, +0.0000018708,0.0000018732,0.0000018771,0.0000018828,0.0000018899, +0.0000018984,0.0000019070,0.0000019140,0.0000019188,0.0000019211, +0.0000019220,0.0000019220,0.0000019206,0.0000019183,0.0000019147, +0.0000019085,0.0000018989,0.0000018884,0.0000018799,0.0000018753, +0.0000018727,0.0000018715,0.0000018717,0.0000018730,0.0000018752, +0.0000018774,0.0000018796,0.0000018817,0.0000018831,0.0000018840, +0.0000018840,0.0000018838,0.0000018839,0.0000018840,0.0000018846, +0.0000018864,0.0000018892,0.0000018924,0.0000018954,0.0000018986, +0.0000019019,0.0000019053,0.0000019085,0.0000019114,0.0000019143, +0.0000019172,0.0000019202,0.0000019235,0.0000019266,0.0000019290, +0.0000019305,0.0000019310,0.0000019308,0.0000019301,0.0000019291, +0.0000019279,0.0000019267,0.0000019255,0.0000019244,0.0000019234, +0.0000019226,0.0000019224,0.0000019226,0.0000019230,0.0000019238, +0.0000019255,0.0000019281,0.0000019311,0.0000019344,0.0000019379, +0.0000019415,0.0000019450,0.0000019486,0.0000019529,0.0000019576, +0.0000019621,0.0000019665,0.0000019709,0.0000019757,0.0000019805, +0.0000019853,0.0000019900,0.0000019943,0.0000019984,0.0000020021, +0.0000020055,0.0000020087,0.0000020117,0.0000020141,0.0000020157, +0.0000020168,0.0000020176,0.0000020180,0.0000020181,0.0000020179, +0.0000020176,0.0000020171,0.0000020167,0.0000020164,0.0000020163, +0.0000020165,0.0000020172,0.0000020188,0.0000020210,0.0000020234, +0.0000020257,0.0000020279,0.0000020298,0.0000020315,0.0000020330, +0.0000020345,0.0000020359,0.0000020372,0.0000020386,0.0000020402, +0.0000020421,0.0000020438,0.0000020451,0.0000020460,0.0000020464, +0.0000020459,0.0000020450,0.0000020450,0.0000020475,0.0000020534, +0.0000020612,0.0000020671,0.0000020693,0.0000020711,0.0000020758, +0.0000020793,0.0000020797,0.0000020786,0.0000020760,0.0000020709, +0.0000020643,0.0000020582,0.0000020538,0.0000020514,0.0000020505, +0.0000020502,0.0000020500,0.0000020502,0.0000020509,0.0000020523, +0.0000020544,0.0000020569,0.0000020591,0.0000020608,0.0000020622, +0.0000020630,0.0000020630,0.0000020620,0.0000020601,0.0000020576, +0.0000020547,0.0000020514,0.0000020478,0.0000020443,0.0000020416, +0.0000020401,0.0000020397,0.0000020400,0.0000020406,0.0000020412, +0.0000020420,0.0000020431,0.0000020447,0.0000020468,0.0000020498, +0.0000020535,0.0000020572,0.0000020606,0.0000020633,0.0000020655, +0.0000020671,0.0000020681,0.0000020690,0.0000020698,0.0000020700, +0.0000020694,0.0000020682,0.0000020668,0.0000020654,0.0000020636, +0.0000020610,0.0000020585,0.0000020567,0.0000020549,0.0000020523, +0.0000020486,0.0000020447,0.0000020423,0.0000020419,0.0000020434, +0.0000020468,0.0000020507,0.0000020543,0.0000020573,0.0000020602, +0.0000020626,0.0000020638,0.0000020641,0.0000020640,0.0000020636, +0.0000020631,0.0000020617,0.0000020596,0.0000020571,0.0000020560, +0.0000020574,0.0000020599,0.0000020582,0.0000020479,0.0000020327, +0.0000020226,0.0000020206,0.0000020220,0.0000020225,0.0000020226, +0.0000020232,0.0000020229,0.0000020199,0.0000020140,0.0000020074, +0.0000020028,0.0000020021,0.0000020096,0.0000020228,0.0000020319, +0.0000020341,0.0000020334,0.0000020278,0.0000020131,0.0000019984, +0.0000019974,0.0000020147,0.0000020399,0.0000020553,0.0000020590, +0.0000020616,0.0000020669,0.0000020717,0.0000020769,0.0000020879, +0.0000021036,0.0000021147,0.0000021179,0.0000021189,0.0000021248, +0.0000021366,0.0000021475,0.0000021533,0.0000021568,0.0000021611, +0.0000021651,0.0000021675,0.0000021684,0.0000021676,0.0000021646, +0.0000021600,0.0000021551,0.0000021514,0.0000021489,0.0000021473, +0.0000021467,0.0000021464,0.0000021456,0.0000021447,0.0000021434, +0.0000021419,0.0000021402,0.0000021386,0.0000021378,0.0000021381, +0.0000021392,0.0000021405,0.0000021419,0.0000021432,0.0000021443, +0.0000021450,0.0000021453,0.0000021454,0.0000021450,0.0000021442, +0.0000021431,0.0000021422,0.0000021416,0.0000021410,0.0000021402, +0.0000021388,0.0000021370,0.0000021353,0.0000021338,0.0000021328, +0.0000021325,0.0000021323,0.0000021315,0.0000021306,0.0000021301, +0.0000021296,0.0000021289,0.0000021282,0.0000021280,0.0000021280, +0.0000021278,0.0000021274,0.0000021270,0.0000021265,0.0000021258, +0.0000021250,0.0000021246,0.0000021243,0.0000021237,0.0000021230, +0.0000021225,0.0000021220,0.0000021214,0.0000021208,0.0000021198, +0.0000021185,0.0000021171,0.0000021161,0.0000021146,0.0000021125, +0.0000021106,0.0000021090,0.0000021077,0.0000021067,0.0000021058, +0.0000021050,0.0000021050,0.0000021059,0.0000021073,0.0000021088, +0.0000021099,0.0000021107,0.0000021114,0.0000021121,0.0000021129, +0.0000021129,0.0000021118,0.0000021106,0.0000021096,0.0000021087, +0.0000021078,0.0000021076,0.0000021077,0.0000021079,0.0000021079, +0.0000021078,0.0000021075,0.0000021070,0.0000021064,0.0000021057, +0.0000021049,0.0000021041,0.0000021033,0.0000021028,0.0000021022, +0.0000021012,0.0000021003,0.0000020995,0.0000020981,0.0000020965, +0.0000020957,0.0000020957,0.0000020962,0.0000020969,0.0000020978, +0.0000020984,0.0000020990,0.0000020994,0.0000020993,0.0000020988, +0.0000020979,0.0000020966,0.0000020950,0.0000020935,0.0000020925, +0.0000020920,0.0000020919,0.0000020919,0.0000020921,0.0000020919, +0.0000020913,0.0000020901,0.0000020882,0.0000020860,0.0000020837, +0.0000020817,0.0000020807,0.0000020801,0.0000020794,0.0000020785, +0.0000020776,0.0000020768,0.0000020763,0.0000020765,0.0000020773, +0.0000020783,0.0000020787,0.0000020788,0.0000020789,0.0000020785, +0.0000020776,0.0000020763,0.0000020751,0.0000020738,0.0000020722, +0.0000020706,0.0000020700,0.0000020705,0.0000020716,0.0000020725, +0.0000020732,0.0000020736,0.0000020735,0.0000020735,0.0000020742, +0.0000020761,0.0000020783,0.0000020808,0.0000020836,0.0000020865, +0.0000020896,0.0000020927,0.0000020954,0.0000020980,0.0000021004, +0.0000021023,0.0000021037,0.0000021049,0.0000021060,0.0000021071, +0.0000021081,0.0000021086,0.0000021085,0.0000021077,0.0000021063, +0.0000021044,0.0000021021,0.0000021001,0.0000020985,0.0000020971, +0.0000020964,0.0000020966,0.0000020974,0.0000020988,0.0000021006, +0.0000021023,0.0000021038,0.0000021043,0.0000021039,0.0000021029, +0.0000021018,0.0000020999,0.0000020973,0.0000020945,0.0000020918, +0.0000020891,0.0000020862,0.0000020831,0.0000020802,0.0000020779, +0.0000020764,0.0000020754,0.0000020744,0.0000020730,0.0000020712, +0.0000020694,0.0000020682,0.0000020671,0.0000020664,0.0000020669, +0.0000020679,0.0000020689,0.0000020691,0.0000020685,0.0000020673, +0.0000020656,0.0000020633,0.0000020605,0.0000020573,0.0000020543, +0.0000020521,0.0000020509,0.0000020509,0.0000020517,0.0000020534, +0.0000020558,0.0000020588,0.0000020620,0.0000020649,0.0000020680, +0.0000020718,0.0000020761,0.0000020807,0.0000020854,0.0000020907, +0.0000020960,0.0000021014,0.0000021069,0.0000021120,0.0000021162, +0.0000021195,0.0000021218,0.0000021238,0.0000021259,0.0000021283, +0.0000021309,0.0000021335,0.0000021359,0.0000021384,0.0000021414, +0.0000021448,0.0000021483,0.0000021515,0.0000021542,0.0000021563, +0.0000021572,0.0000021572,0.0000021562,0.0000021534,0.0000021506, +0.0000021471,0.0000021436,0.0000021406,0.0000021381,0.0000021361, +0.0000021346,0.0000021328,0.0000021305,0.0000021276,0.0000021241, +0.0000021203,0.0000021165,0.0000021130,0.0000021101,0.0000021078, +0.0000021060,0.0000021045,0.0000021034,0.0000021029,0.0000021028, +0.0000021029,0.0000021032,0.0000021033,0.0000021030,0.0000021022, +0.0000021014,0.0000021006,0.0000020999,0.0000020992,0.0000020983, +0.0000020975,0.0000020972,0.0000020974,0.0000020980,0.0000020986, +0.0000020994,0.0000021008,0.0000021026,0.0000021044,0.0000021061, +0.0000021072,0.0000021076,0.0000021074,0.0000021063,0.0000021043, +0.0000021009,0.0000020961,0.0000020905,0.0000020849,0.0000020802, +0.0000020762,0.0000020737,0.0000020725,0.0000020723,0.0000020721, +0.0000020715,0.0000020701,0.0000020679,0.0000020646,0.0000020604, +0.0000020555,0.0000020496,0.0000020431,0.0000020363,0.0000020298, +0.0000020244,0.0000020207,0.0000020175,0.0000020145,0.0000020115, +0.0000020086,0.0000020058,0.0000020032,0.0000020005,0.0000019976, +0.0000019953,0.0000019943,0.0000019946,0.0000019954,0.0000019967, +0.0000019980,0.0000019995,0.0000020009,0.0000020020,0.0000020031, +0.0000020045,0.0000020065,0.0000020088,0.0000020108,0.0000020122, +0.0000020136,0.0000020152,0.0000020165,0.0000020174,0.0000020179, +0.0000020179,0.0000020181,0.0000020182,0.0000020180,0.0000020175, +0.0000020169,0.0000020163,0.0000020159,0.0000020158,0.0000020161, +0.0000020169,0.0000020177,0.0000020182,0.0000020187,0.0000020194, +0.0000020204,0.0000020209,0.0000020219,0.0000020235,0.0000020256, +0.0000020284,0.0000020322,0.0000020356,0.0000020384,0.0000020404, +0.0000020416,0.0000020421,0.0000020418,0.0000020409,0.0000020397, +0.0000020385,0.0000020379,0.0000020377,0.0000020376,0.0000020371, +0.0000020365,0.0000020363,0.0000020368,0.0000020386,0.0000020409, +0.0000020428,0.0000020443,0.0000020455,0.0000020459,0.0000020456, +0.0000020443,0.0000020427,0.0000020412,0.0000020396,0.0000020381, +0.0000020363,0.0000020341,0.0000020317,0.0000020291,0.0000020264, +0.0000020236,0.0000020211,0.0000020188,0.0000020166,0.0000020147, +0.0000020128,0.0000020102,0.0000020062,0.0000020006,0.0000019939, +0.0000019871,0.0000019808,0.0000019756,0.0000019718,0.0000019692, +0.0000019678,0.0000019667,0.0000019655,0.0000019635,0.0000019607, +0.0000019569,0.0000019522,0.0000019486,0.0000019457,0.0000019442, +0.0000019434,0.0000019445,0.0000019458,0.0000019476,0.0000019496, +0.0000019508,0.0000019522,0.0000019526,0.0000019516,0.0000019501, +0.0000019491,0.0000019480,0.0000019472,0.0000019473,0.0000019483, +0.0000019489,0.0000019496,0.0000019510,0.0000019533,0.0000019561, +0.0000019587,0.0000019613,0.0000019632,0.0000019645,0.0000019650, +0.0000019650,0.0000019649,0.0000019651,0.0000019659,0.0000019671, +0.0000019693,0.0000019730,0.0000019787,0.0000019861,0.0000019934, +0.0000019988,0.0000020005,0.0000019992,0.0000019966,0.0000019938, +0.0000019919,0.0000019916,0.0000019931,0.0000019974,0.0000020046, +0.0000020131,0.0000020213,0.0000020280,0.0000020339,0.0000020391, +0.0000020438,0.0000020480,0.0000020512,0.0000020529,0.0000020535, +0.0000020536,0.0000020539,0.0000020550,0.0000020570,0.0000020597, +0.0000020629,0.0000020664,0.0000020696,0.0000020728,0.0000020757, +0.0000020789,0.0000020823,0.0000020857,0.0000020893,0.0000020929, +0.0000020962,0.0000020993,0.0000021019,0.0000021043,0.0000021068, +0.0000021093,0.0000021115,0.0000021132,0.0000021143,0.0000021152, +0.0000021154,0.0000021143,0.0000021119,0.0000021086,0.0000021050, +0.0000021013,0.0000020975,0.0000020939,0.0000020905,0.0000020875, +0.0000020849,0.0000020824,0.0000020798,0.0000020778,0.0000020758, +0.0000020721,0.0000020666,0.0000020602,0.0000020537,0.0000020475, +0.0000020426,0.0000020389,0.0000020357,0.0000020324,0.0000020290, +0.0000020259,0.0000020231,0.0000020205,0.0000020185,0.0000020172, +0.0000020170,0.0000020177,0.0000020188,0.0000020200,0.0000020209, +0.0000020215,0.0000020218,0.0000020218,0.0000020213,0.0000020200, +0.0000020174,0.0000020138,0.0000020099,0.0000020061,0.0000020026, +0.0000020002,0.0000019986,0.0000019976,0.0000019964,0.0000019959, +0.0000019957,0.0000019957,0.0000019959,0.0000019963,0.0000019961, +0.0000019945,0.0000019908,0.0000019847,0.0000019773,0.0000019707, +0.0000019663,0.0000019645,0.0000019645,0.0000019652,0.0000019661, +0.0000019668,0.0000019670,0.0000019665,0.0000019655,0.0000019639, +0.0000019616,0.0000019589,0.0000019559,0.0000019524,0.0000019484, +0.0000019443,0.0000019406,0.0000019374,0.0000019344,0.0000019318, +0.0000019293,0.0000019266,0.0000019240,0.0000019216,0.0000019191, +0.0000019169,0.0000019153,0.0000019146,0.0000019147,0.0000019152, +0.0000019160,0.0000019168,0.0000019177,0.0000019187,0.0000019202, +0.0000019223,0.0000019249,0.0000019283,0.0000019326,0.0000019375, +0.0000019427,0.0000019475,0.0000019520,0.0000019561,0.0000019600, +0.0000019639,0.0000019676,0.0000019710,0.0000019736,0.0000019752, +0.0000019759,0.0000019762,0.0000019766,0.0000019777,0.0000019798, +0.0000019829,0.0000019867,0.0000019905,0.0000019937,0.0000019959, +0.0000019977,0.0000019997,0.0000020021,0.0000020047,0.0000020073, +0.0000020092,0.0000020101,0.0000020104,0.0000020097,0.0000020085, +0.0000020069,0.0000020054,0.0000020042,0.0000020029,0.0000020011, +0.0000019991,0.0000019971,0.0000019959,0.0000019954,0.0000019967, +0.0000019987,0.0000020006,0.0000020025,0.0000020049,0.0000020068, +0.0000020079,0.0000020084,0.0000020084,0.0000020076,0.0000020061, +0.0000020042,0.0000020023,0.0000020006,0.0000019997,0.0000020000, +0.0000020010,0.0000020014,0.0000020007,0.0000019993,0.0000019975, +0.0000019956,0.0000019930,0.0000019888,0.0000019829,0.0000019762, +0.0000019692,0.0000019622,0.0000019564,0.0000019523,0.0000019501, +0.0000019503,0.0000019520,0.0000019549,0.0000019590,0.0000019633, +0.0000019658,0.0000019644,0.0000019604,0.0000019556,0.0000019531, +0.0000019536,0.0000019571,0.0000019610,0.0000019631,0.0000019623, +0.0000019583,0.0000019505,0.0000019409,0.0000019325,0.0000019276, +0.0000019256,0.0000019245,0.0000019227,0.0000019203,0.0000019180, +0.0000019164,0.0000019157,0.0000019168,0.0000019186,0.0000019193, +0.0000019183,0.0000019171,0.0000019177,0.0000019214,0.0000019268, +0.0000019308,0.0000019317,0.0000019307,0.0000019293,0.0000019271, +0.0000019210,0.0000019107,0.0000019014,0.0000018964,0.0000018932, +0.0000018895,0.0000018874,0.0000018876,0.0000018876,0.0000018862, +0.0000018843,0.0000018822,0.0000018796,0.0000018764,0.0000018735, +0.0000018713,0.0000018700,0.0000018691,0.0000018685,0.0000018684, +0.0000018684,0.0000018682,0.0000018676,0.0000018666,0.0000018661, +0.0000018668,0.0000018692,0.0000018734,0.0000018792,0.0000018865, +0.0000018951,0.0000019046,0.0000019146,0.0000019241,0.0000019323, +0.0000019390,0.0000019446,0.0000019493,0.0000019532,0.0000019560, +0.0000019576,0.0000019583,0.0000019581,0.0000019569,0.0000019548, +0.0000019530,0.0000019521,0.0000019512,0.0000019499,0.0000019477, +0.0000019435,0.0000019367,0.0000019286,0.0000019213,0.0000019152, +0.0000019085,0.0000019004,0.0000018924,0.0000018860,0.0000018810, +0.0000018773,0.0000018748,0.0000018730,0.0000018720,0.0000018720, +0.0000018724,0.0000018728,0.0000018727,0.0000018716,0.0000018693, +0.0000018664,0.0000018639,0.0000018619,0.0000018588,0.0000018548, +0.0000018508,0.0000018465,0.0000018419,0.0000018381,0.0000018360, +0.0000018356,0.0000018349,0.0000018336,0.0000018324,0.0000018316, +0.0000018317,0.0000018326,0.0000018340,0.0000018345,0.0000018340, +0.0000018334,0.0000018333,0.0000018332,0.0000018322,0.0000018316, +0.0000018312,0.0000018301,0.0000018279,0.0000018249,0.0000018216, +0.0000018190,0.0000018179,0.0000018186,0.0000018211,0.0000018246, +0.0000018276,0.0000018295,0.0000018306,0.0000018314,0.0000018317, +0.0000018317,0.0000018315,0.0000018312,0.0000018309,0.0000018309, +0.0000018307,0.0000018297,0.0000018267,0.0000018209,0.0000018119, +0.0000018010,0.0000017900,0.0000017791,0.0000017677,0.0000017573, +0.0000017501,0.0000017460,0.0000017440,0.0000017439,0.0000017463, +0.0000017508,0.0000017551,0.0000017575,0.0000017583,0.0000017589, +0.0000017599,0.0000017610,0.0000017619,0.0000017623,0.0000017623, +0.0000017619,0.0000017617,0.0000017617,0.0000017620,0.0000017622, +0.0000017622,0.0000017619,0.0000017617,0.0000017613,0.0000017609, +0.0000017610,0.0000017627,0.0000017656,0.0000017697,0.0000017751, +0.0000017812,0.0000017878,0.0000017945,0.0000018006,0.0000018059, +0.0000018101,0.0000018133,0.0000018159,0.0000018177,0.0000018191, +0.0000018202,0.0000018208,0.0000018212,0.0000018215,0.0000018220, +0.0000018223,0.0000018222,0.0000018217,0.0000018208,0.0000018196, +0.0000018180,0.0000018160,0.0000018135,0.0000018106,0.0000018073, +0.0000018038,0.0000018000,0.0000017957,0.0000017912,0.0000017865, +0.0000017819,0.0000017772,0.0000017733,0.0000017725,0.0000017734, +0.0000017744,0.0000017790,0.0000017841,0.0000017889,0.0000017929, +0.0000017960,0.0000017967,0.0000017963,0.0000017953,0.0000017927, +0.0000017895,0.0000017863,0.0000017829,0.0000017798,0.0000017771, +0.0000017747,0.0000017731,0.0000017717,0.0000017706,0.0000017700, +0.0000017697,0.0000017698,0.0000017708,0.0000017725,0.0000017748, +0.0000017788,0.0000017851,0.0000017940,0.0000018050,0.0000018179, +0.0000018311,0.0000018433,0.0000018539,0.0000018632,0.0000018711, +0.0000018779,0.0000018838,0.0000018888,0.0000018929,0.0000018957, +0.0000018973,0.0000018975,0.0000018966,0.0000018944,0.0000018922, +0.0000018904,0.0000018904,0.0000018931,0.0000018977,0.0000019033, +0.0000019089,0.0000019129,0.0000019148,0.0000019141,0.0000019133, +0.0000019125,0.0000019123,0.0000019125,0.0000019128,0.0000019123, +0.0000019108,0.0000019090,0.0000019079,0.0000019081,0.0000019087, +0.0000019098,0.0000019111,0.0000019123,0.0000019135,0.0000019149, +0.0000019168,0.0000019197,0.0000019234,0.0000019274,0.0000019307, +0.0000019331,0.0000019351,0.0000019367,0.0000019383,0.0000019400, +0.0000019418,0.0000019436,0.0000019452,0.0000019464,0.0000019473, +0.0000019481,0.0000019488,0.0000019492,0.0000019493,0.0000019490, +0.0000019483,0.0000019475,0.0000019467,0.0000019461,0.0000019456, +0.0000019443,0.0000019425,0.0000019402,0.0000019377,0.0000019352, +0.0000019326,0.0000019298,0.0000019269,0.0000019240,0.0000019212, +0.0000019188,0.0000019171,0.0000019160,0.0000019155,0.0000019153, +0.0000019152,0.0000019153,0.0000019155,0.0000019158,0.0000019161, +0.0000019164,0.0000019165,0.0000019165,0.0000019163,0.0000019158, +0.0000019151,0.0000019142,0.0000019131,0.0000019117,0.0000019102, +0.0000019087,0.0000019074,0.0000019060,0.0000019045,0.0000019028, +0.0000019012,0.0000019000,0.0000018996,0.0000018995,0.0000018998, +0.0000019003,0.0000019011,0.0000019022,0.0000019033,0.0000019045, +0.0000019056,0.0000019066,0.0000019075,0.0000019084,0.0000019093, +0.0000019099,0.0000019105,0.0000019113,0.0000019122,0.0000019134, +0.0000019147,0.0000019159,0.0000019170,0.0000019178,0.0000019179, +0.0000019173,0.0000019160,0.0000019141,0.0000019122,0.0000019101, +0.0000019075,0.0000019040,0.0000018999,0.0000018954,0.0000018910, +0.0000018872,0.0000018842,0.0000018815,0.0000018792,0.0000018777, +0.0000018768,0.0000018764,0.0000018764,0.0000018764,0.0000018762, +0.0000018763,0.0000018768,0.0000018779,0.0000018792,0.0000018804, +0.0000018815,0.0000018749,0.0000018762,0.0000018779,0.0000018799, +0.0000018826,0.0000018860,0.0000018900,0.0000018945,0.0000018998, +0.0000019054,0.0000019107,0.0000019140,0.0000019138,0.0000019102, +0.0000019034,0.0000018961,0.0000018913,0.0000018892,0.0000018888, +0.0000018884,0.0000018873,0.0000018867,0.0000018876,0.0000018902, +0.0000018933,0.0000018952,0.0000018962,0.0000018982,0.0000019023, +0.0000019082,0.0000019139,0.0000019175,0.0000019190,0.0000019195, +0.0000019200,0.0000019209,0.0000019228,0.0000019259,0.0000019299, +0.0000019347,0.0000019395,0.0000019440,0.0000019480,0.0000019511, +0.0000019535,0.0000019553,0.0000019565,0.0000019570,0.0000019570, +0.0000019564,0.0000019554,0.0000019541,0.0000019526,0.0000019507, +0.0000019485,0.0000019461,0.0000019437,0.0000019414,0.0000019391, +0.0000019368,0.0000019344,0.0000019323,0.0000019304,0.0000019287, +0.0000019272,0.0000019255,0.0000019233,0.0000019209,0.0000019183, +0.0000019158,0.0000019136,0.0000019115,0.0000019097,0.0000019081, +0.0000019068,0.0000019055,0.0000019046,0.0000019040,0.0000019037, +0.0000019030,0.0000019016,0.0000018994,0.0000018961,0.0000018920, +0.0000018876,0.0000018832,0.0000018793,0.0000018758,0.0000018735, +0.0000018731,0.0000018740,0.0000018754,0.0000018770,0.0000018791, +0.0000018810,0.0000018821,0.0000018825,0.0000018822,0.0000018810, +0.0000018790,0.0000018766,0.0000018743,0.0000018726,0.0000018712, +0.0000018701,0.0000018693,0.0000018684,0.0000018679,0.0000018682, +0.0000018697,0.0000018729,0.0000018778,0.0000018844,0.0000018927, +0.0000019016,0.0000019100,0.0000019167,0.0000019209,0.0000019215, +0.0000019208,0.0000019189,0.0000019164,0.0000019129,0.0000019074, +0.0000018994,0.0000018895,0.0000018796,0.0000018725,0.0000018688, +0.0000018683,0.0000018698,0.0000018727,0.0000018757,0.0000018785, +0.0000018810,0.0000018831,0.0000018843,0.0000018848,0.0000018847, +0.0000018843,0.0000018842,0.0000018843,0.0000018848,0.0000018857, +0.0000018864,0.0000018870,0.0000018882,0.0000018901,0.0000018927, +0.0000018957,0.0000018988,0.0000019021,0.0000019054,0.0000019089, +0.0000019125,0.0000019158,0.0000019181,0.0000019194,0.0000019198, +0.0000019196,0.0000019191,0.0000019184,0.0000019178,0.0000019168, +0.0000019158,0.0000019149,0.0000019138,0.0000019130,0.0000019129, +0.0000019131,0.0000019133,0.0000019140,0.0000019157,0.0000019180, +0.0000019205,0.0000019233,0.0000019264,0.0000019290,0.0000019314, +0.0000019340,0.0000019372,0.0000019408,0.0000019445,0.0000019480, +0.0000019517,0.0000019557,0.0000019599,0.0000019644,0.0000019689, +0.0000019735,0.0000019781,0.0000019828,0.0000019874,0.0000019921, +0.0000019968,0.0000020010,0.0000020048,0.0000020080,0.0000020107, +0.0000020128,0.0000020143,0.0000020151,0.0000020154,0.0000020155, +0.0000020154,0.0000020151,0.0000020147,0.0000020144,0.0000020146, +0.0000020155,0.0000020170,0.0000020187,0.0000020205,0.0000020225, +0.0000020246,0.0000020266,0.0000020287,0.0000020309,0.0000020329, +0.0000020347,0.0000020363,0.0000020380,0.0000020398,0.0000020416, +0.0000020428,0.0000020434,0.0000020435,0.0000020430,0.0000020421, +0.0000020418,0.0000020435,0.0000020491,0.0000020567,0.0000020627, +0.0000020650,0.0000020668,0.0000020711,0.0000020747,0.0000020752, +0.0000020742,0.0000020717,0.0000020672,0.0000020614,0.0000020559, +0.0000020519,0.0000020496,0.0000020489,0.0000020490,0.0000020495, +0.0000020504,0.0000020519,0.0000020541,0.0000020570,0.0000020601, +0.0000020627,0.0000020649,0.0000020665,0.0000020674,0.0000020673, +0.0000020663,0.0000020645,0.0000020622,0.0000020596,0.0000020564, +0.0000020525,0.0000020484,0.0000020451,0.0000020426,0.0000020409, +0.0000020402,0.0000020398,0.0000020390,0.0000020381,0.0000020376, +0.0000020377,0.0000020383,0.0000020397,0.0000020420,0.0000020451, +0.0000020488,0.0000020530,0.0000020571,0.0000020603,0.0000020628, +0.0000020648,0.0000020662,0.0000020666,0.0000020659,0.0000020643, +0.0000020622,0.0000020601,0.0000020577,0.0000020553,0.0000020532, +0.0000020521,0.0000020516,0.0000020505,0.0000020480,0.0000020448, +0.0000020418,0.0000020400,0.0000020393,0.0000020403,0.0000020426, +0.0000020455,0.0000020484,0.0000020512,0.0000020538,0.0000020556, +0.0000020567,0.0000020574,0.0000020581,0.0000020587,0.0000020584, +0.0000020568,0.0000020547,0.0000020538,0.0000020552,0.0000020585, +0.0000020579,0.0000020481,0.0000020326,0.0000020217,0.0000020195, +0.0000020214,0.0000020227,0.0000020233,0.0000020237,0.0000020231, +0.0000020196,0.0000020131,0.0000020064,0.0000020017,0.0000020019, +0.0000020119,0.0000020255,0.0000020326,0.0000020333,0.0000020319, +0.0000020250,0.0000020095,0.0000019961,0.0000019989,0.0000020195, +0.0000020449,0.0000020587,0.0000020622,0.0000020656,0.0000020708, +0.0000020753,0.0000020810,0.0000020928,0.0000021074,0.0000021162, +0.0000021178,0.0000021190,0.0000021260,0.0000021378,0.0000021473, +0.0000021515,0.0000021539,0.0000021574,0.0000021608,0.0000021627, +0.0000021631,0.0000021621,0.0000021597,0.0000021562,0.0000021523, +0.0000021488,0.0000021461,0.0000021445,0.0000021435,0.0000021431, +0.0000021428,0.0000021420,0.0000021408,0.0000021396,0.0000021383, +0.0000021375,0.0000021375,0.0000021383,0.0000021392,0.0000021399, +0.0000021402,0.0000021401,0.0000021396,0.0000021389,0.0000021380, +0.0000021370,0.0000021362,0.0000021354,0.0000021348,0.0000021348, +0.0000021351,0.0000021351,0.0000021343,0.0000021326,0.0000021310, +0.0000021298,0.0000021293,0.0000021292,0.0000021295,0.0000021299, +0.0000021299,0.0000021295,0.0000021288,0.0000021278,0.0000021264, +0.0000021253,0.0000021244,0.0000021236,0.0000021229,0.0000021221, +0.0000021212,0.0000021204,0.0000021198,0.0000021196,0.0000021192, +0.0000021187,0.0000021183,0.0000021181,0.0000021178,0.0000021175, +0.0000021171,0.0000021168,0.0000021165,0.0000021161,0.0000021155, +0.0000021151,0.0000021147,0.0000021148,0.0000021150,0.0000021149, +0.0000021147,0.0000021145,0.0000021149,0.0000021155,0.0000021165, +0.0000021176,0.0000021191,0.0000021195,0.0000021194,0.0000021189, +0.0000021180,0.0000021170,0.0000021156,0.0000021135,0.0000021109, +0.0000021084,0.0000021060,0.0000021036,0.0000021022,0.0000021015, +0.0000021010,0.0000021005,0.0000021002,0.0000020997,0.0000020990, +0.0000020983,0.0000020974,0.0000020967,0.0000020966,0.0000020967, +0.0000020972,0.0000020977,0.0000020980,0.0000020984,0.0000020988, +0.0000020989,0.0000020987,0.0000020992,0.0000020999,0.0000021006, +0.0000021018,0.0000021033,0.0000021043,0.0000021047,0.0000021053, +0.0000021052,0.0000021045,0.0000021040,0.0000021026,0.0000021004, +0.0000020979,0.0000020952,0.0000020929,0.0000020913,0.0000020901, +0.0000020890,0.0000020878,0.0000020864,0.0000020847,0.0000020824, +0.0000020796,0.0000020769,0.0000020749,0.0000020736,0.0000020727, +0.0000020716,0.0000020703,0.0000020689,0.0000020675,0.0000020669, +0.0000020671,0.0000020677,0.0000020686,0.0000020693,0.0000020700, +0.0000020707,0.0000020707,0.0000020700,0.0000020692,0.0000020681, +0.0000020665,0.0000020647,0.0000020633,0.0000020629,0.0000020633, +0.0000020643,0.0000020653,0.0000020661,0.0000020664,0.0000020664, +0.0000020663,0.0000020674,0.0000020697,0.0000020725,0.0000020756, +0.0000020785,0.0000020816,0.0000020849,0.0000020882,0.0000020914, +0.0000020945,0.0000020971,0.0000020991,0.0000021005,0.0000021015, +0.0000021024,0.0000021030,0.0000021034,0.0000021034,0.0000021031, +0.0000021022,0.0000021009,0.0000020992,0.0000020975,0.0000020959, +0.0000020943,0.0000020926,0.0000020913,0.0000020909,0.0000020910, +0.0000020914,0.0000020918,0.0000020925,0.0000020937,0.0000020948, +0.0000020954,0.0000020960,0.0000020966,0.0000020967,0.0000020958, +0.0000020943,0.0000020929,0.0000020914,0.0000020896,0.0000020876, +0.0000020853,0.0000020831,0.0000020814,0.0000020803,0.0000020789, +0.0000020768,0.0000020743,0.0000020715,0.0000020688,0.0000020667, +0.0000020655,0.0000020652,0.0000020654,0.0000020655,0.0000020655, +0.0000020651,0.0000020643,0.0000020634,0.0000020621,0.0000020606, +0.0000020591,0.0000020578,0.0000020567,0.0000020553,0.0000020539, +0.0000020530,0.0000020527,0.0000020525,0.0000020530,0.0000020541, +0.0000020554,0.0000020574,0.0000020604,0.0000020645,0.0000020687, +0.0000020730,0.0000020777,0.0000020823,0.0000020874,0.0000020933, +0.0000020999,0.0000021063,0.0000021121,0.0000021166,0.0000021197, +0.0000021219,0.0000021237,0.0000021254,0.0000021272,0.0000021290, +0.0000021309,0.0000021330,0.0000021354,0.0000021382,0.0000021410, +0.0000021436,0.0000021461,0.0000021477,0.0000021484,0.0000021483, +0.0000021476,0.0000021461,0.0000021441,0.0000021422,0.0000021402, +0.0000021384,0.0000021372,0.0000021361,0.0000021345,0.0000021322, +0.0000021290,0.0000021250,0.0000021205,0.0000021159,0.0000021118, +0.0000021083,0.0000021053,0.0000021029,0.0000021010,0.0000020998, +0.0000020995,0.0000020996,0.0000020998,0.0000020998,0.0000020992, +0.0000020979,0.0000020963,0.0000020948,0.0000020934,0.0000020924, +0.0000020914,0.0000020902,0.0000020891,0.0000020887,0.0000020890, +0.0000020894,0.0000020899,0.0000020907,0.0000020919,0.0000020936, +0.0000020954,0.0000020966,0.0000020968,0.0000020965,0.0000020955, +0.0000020941,0.0000020919,0.0000020886,0.0000020845,0.0000020799, +0.0000020757,0.0000020720,0.0000020694,0.0000020679,0.0000020671, +0.0000020669,0.0000020668,0.0000020663,0.0000020654,0.0000020636, +0.0000020607,0.0000020567,0.0000020517,0.0000020460,0.0000020399, +0.0000020338,0.0000020279,0.0000020230,0.0000020193,0.0000020160, +0.0000020128,0.0000020098,0.0000020072,0.0000020047,0.0000020019, +0.0000019984,0.0000019951,0.0000019925,0.0000019917,0.0000019924, +0.0000019943,0.0000019967,0.0000019992,0.0000020014,0.0000020032, +0.0000020044,0.0000020052,0.0000020062,0.0000020076,0.0000020096, +0.0000020114,0.0000020131,0.0000020149,0.0000020164,0.0000020178, +0.0000020188,0.0000020193,0.0000020195,0.0000020195,0.0000020194, +0.0000020190,0.0000020183,0.0000020176,0.0000020172,0.0000020172, +0.0000020179,0.0000020192,0.0000020206,0.0000020217,0.0000020220, +0.0000020219,0.0000020220,0.0000020223,0.0000020228,0.0000020236, +0.0000020244,0.0000020258,0.0000020279,0.0000020308,0.0000020335, +0.0000020358,0.0000020372,0.0000020377,0.0000020373,0.0000020363, +0.0000020350,0.0000020339,0.0000020331,0.0000020324,0.0000020317, +0.0000020309,0.0000020301,0.0000020295,0.0000020297,0.0000020312, +0.0000020340,0.0000020370,0.0000020401,0.0000020430,0.0000020448, +0.0000020455,0.0000020445,0.0000020436,0.0000020424,0.0000020412, +0.0000020400,0.0000020384,0.0000020365,0.0000020346,0.0000020326, +0.0000020301,0.0000020273,0.0000020247,0.0000020223,0.0000020200, +0.0000020182,0.0000020170,0.0000020160,0.0000020145,0.0000020117, +0.0000020074,0.0000020013,0.0000019941,0.0000019866,0.0000019794, +0.0000019733,0.0000019691,0.0000019674,0.0000019672,0.0000019675, +0.0000019680,0.0000019670,0.0000019645,0.0000019605,0.0000019556, +0.0000019501,0.0000019465,0.0000019440,0.0000019430,0.0000019429, +0.0000019451,0.0000019470,0.0000019503,0.0000019533,0.0000019545, +0.0000019556,0.0000019555,0.0000019554,0.0000019548,0.0000019538, +0.0000019534,0.0000019528,0.0000019517,0.0000019505,0.0000019515, +0.0000019516,0.0000019523,0.0000019536,0.0000019556,0.0000019575, +0.0000019590,0.0000019602,0.0000019612,0.0000019624,0.0000019638, +0.0000019647,0.0000019650,0.0000019655,0.0000019670,0.0000019708, +0.0000019780,0.0000019872,0.0000019959,0.0000019996,0.0000020008, +0.0000019989,0.0000019959,0.0000019940,0.0000019934,0.0000019948, +0.0000019993,0.0000020062,0.0000020142,0.0000020215,0.0000020275, +0.0000020324,0.0000020365,0.0000020404,0.0000020437,0.0000020463, +0.0000020480,0.0000020490,0.0000020498,0.0000020512,0.0000020536, +0.0000020567,0.0000020604,0.0000020647,0.0000020689,0.0000020729, +0.0000020768,0.0000020807,0.0000020845,0.0000020884,0.0000020922, +0.0000020957,0.0000020987,0.0000021012,0.0000021032,0.0000021054, +0.0000021073,0.0000021091,0.0000021101,0.0000021101,0.0000021098, +0.0000021090,0.0000021078,0.0000021057,0.0000021030,0.0000021000, +0.0000020967,0.0000020930,0.0000020890,0.0000020849,0.0000020814, +0.0000020786,0.0000020764,0.0000020741,0.0000020719,0.0000020699, +0.0000020668,0.0000020618,0.0000020556,0.0000020489,0.0000020422, +0.0000020360,0.0000020309,0.0000020268,0.0000020232,0.0000020200, +0.0000020174,0.0000020156,0.0000020144,0.0000020138,0.0000020137, +0.0000020142,0.0000020156,0.0000020174,0.0000020193,0.0000020207, +0.0000020214,0.0000020212,0.0000020199,0.0000020176,0.0000020146, +0.0000020108,0.0000020070,0.0000020039,0.0000020019,0.0000020009, +0.0000020006,0.0000020005,0.0000020010,0.0000020010,0.0000020004, +0.0000019996,0.0000019988,0.0000019982,0.0000019978,0.0000019969, +0.0000019943,0.0000019891,0.0000019820,0.0000019748,0.0000019693, +0.0000019664,0.0000019654,0.0000019655,0.0000019662,0.0000019673, +0.0000019683,0.0000019686,0.0000019682,0.0000019674,0.0000019660, +0.0000019640,0.0000019614,0.0000019585,0.0000019553,0.0000019518, +0.0000019480,0.0000019441,0.0000019405,0.0000019374,0.0000019344, +0.0000019314,0.0000019285,0.0000019257,0.0000019233,0.0000019212, +0.0000019191,0.0000019170,0.0000019151,0.0000019139,0.0000019129, +0.0000019125,0.0000019125,0.0000019128,0.0000019130,0.0000019131, +0.0000019131,0.0000019131,0.0000019131,0.0000019137,0.0000019153, +0.0000019179,0.0000019213,0.0000019252,0.0000019296,0.0000019345, +0.0000019398,0.0000019457,0.0000019520,0.0000019581,0.0000019636, +0.0000019681,0.0000019713,0.0000019729,0.0000019734,0.0000019733, +0.0000019734,0.0000019744,0.0000019768,0.0000019805,0.0000019848, +0.0000019887,0.0000019921,0.0000019953,0.0000019982,0.0000020008, +0.0000020032,0.0000020052,0.0000020068,0.0000020079,0.0000020085, +0.0000020080,0.0000020070,0.0000020056,0.0000020039,0.0000020023, +0.0000020006,0.0000019986,0.0000019968,0.0000019953,0.0000019945, +0.0000019952,0.0000019966,0.0000019980,0.0000019997,0.0000020015, +0.0000020026,0.0000020032,0.0000020033,0.0000020027,0.0000020012, +0.0000019992,0.0000019969,0.0000019945,0.0000019926,0.0000019920, +0.0000019927,0.0000019941,0.0000019952,0.0000019954,0.0000019946, +0.0000019934,0.0000019922,0.0000019900,0.0000019862,0.0000019808, +0.0000019743,0.0000019670,0.0000019599,0.0000019540,0.0000019498, +0.0000019472,0.0000019469,0.0000019482,0.0000019508,0.0000019547, +0.0000019591,0.0000019621,0.0000019618,0.0000019585,0.0000019544, +0.0000019523,0.0000019531,0.0000019564,0.0000019599,0.0000019616, +0.0000019603,0.0000019566,0.0000019496,0.0000019411,0.0000019334, +0.0000019282,0.0000019257,0.0000019244,0.0000019225,0.0000019197, +0.0000019169,0.0000019149,0.0000019138,0.0000019146,0.0000019164, +0.0000019175,0.0000019169,0.0000019159,0.0000019158,0.0000019188, +0.0000019239,0.0000019280,0.0000019292,0.0000019285,0.0000019274, +0.0000019250,0.0000019182,0.0000019080,0.0000018995,0.0000018946, +0.0000018901,0.0000018860,0.0000018837,0.0000018833,0.0000018821, +0.0000018802,0.0000018783,0.0000018760,0.0000018735,0.0000018715, +0.0000018701,0.0000018690,0.0000018678,0.0000018669,0.0000018665, +0.0000018665,0.0000018665,0.0000018664,0.0000018657,0.0000018646, +0.0000018639,0.0000018643,0.0000018659,0.0000018690,0.0000018735, +0.0000018794,0.0000018867,0.0000018959,0.0000019063,0.0000019161, +0.0000019245,0.0000019317,0.0000019379,0.0000019430,0.0000019468, +0.0000019490,0.0000019503,0.0000019510,0.0000019510,0.0000019503, +0.0000019493,0.0000019486,0.0000019478,0.0000019465,0.0000019440, +0.0000019393,0.0000019323,0.0000019241,0.0000019166,0.0000019095, +0.0000019014,0.0000018932,0.0000018854,0.0000018789,0.0000018738, +0.0000018698,0.0000018671,0.0000018648,0.0000018630,0.0000018623, +0.0000018624,0.0000018626,0.0000018627,0.0000018622,0.0000018604, +0.0000018584,0.0000018568,0.0000018555,0.0000018530,0.0000018494, +0.0000018456,0.0000018413,0.0000018371,0.0000018345,0.0000018329, +0.0000018320,0.0000018311,0.0000018303,0.0000018292,0.0000018283, +0.0000018277,0.0000018277,0.0000018292,0.0000018312,0.0000018321, +0.0000018319,0.0000018314,0.0000018316,0.0000018316,0.0000018311, +0.0000018309,0.0000018307,0.0000018295,0.0000018271,0.0000018241, +0.0000018214,0.0000018198,0.0000018197,0.0000018212,0.0000018234, +0.0000018258,0.0000018281,0.0000018296,0.0000018304,0.0000018311, +0.0000018317,0.0000018321,0.0000018323,0.0000018324,0.0000018324, +0.0000018323,0.0000018307,0.0000018262,0.0000018180,0.0000018069, +0.0000017948,0.0000017830,0.0000017711,0.0000017602,0.0000017528, +0.0000017491,0.0000017474,0.0000017473,0.0000017496,0.0000017538, +0.0000017578,0.0000017602,0.0000017614,0.0000017623,0.0000017635, +0.0000017647,0.0000017654,0.0000017652,0.0000017646,0.0000017640, +0.0000017641,0.0000017650,0.0000017662,0.0000017665,0.0000017656, +0.0000017638,0.0000017623,0.0000017619,0.0000017624,0.0000017643, +0.0000017682,0.0000017743,0.0000017820,0.0000017908,0.0000017996, +0.0000018078,0.0000018146,0.0000018201,0.0000018243,0.0000018274, +0.0000018296,0.0000018312,0.0000018327,0.0000018340,0.0000018351, +0.0000018362,0.0000018370,0.0000018375,0.0000018381,0.0000018388, +0.0000018393,0.0000018393,0.0000018387,0.0000018377,0.0000018361, +0.0000018339,0.0000018312,0.0000018280,0.0000018246,0.0000018211, +0.0000018178,0.0000018147,0.0000018119,0.0000018089,0.0000018054, +0.0000018012,0.0000017961,0.0000017905,0.0000017849,0.0000017800, +0.0000017762,0.0000017744,0.0000017758,0.0000017792,0.0000017837, +0.0000017889,0.0000017933,0.0000017963,0.0000017980,0.0000017978, +0.0000017969,0.0000017946,0.0000017915,0.0000017881,0.0000017847, +0.0000017811,0.0000017775,0.0000017741,0.0000017715,0.0000017699, +0.0000017687,0.0000017677,0.0000017674,0.0000017680,0.0000017690, +0.0000017702,0.0000017721,0.0000017755,0.0000017812,0.0000017897, +0.0000018009,0.0000018140,0.0000018274,0.0000018402,0.0000018514, +0.0000018611,0.0000018697,0.0000018771,0.0000018835,0.0000018888, +0.0000018929,0.0000018957,0.0000018964,0.0000018954,0.0000018936, +0.0000018906,0.0000018884,0.0000018876,0.0000018888,0.0000018928, +0.0000018984,0.0000019046,0.0000019097,0.0000019125,0.0000019126, +0.0000019119,0.0000019121,0.0000019125,0.0000019136,0.0000019144, +0.0000019143,0.0000019129,0.0000019109,0.0000019092,0.0000019086, +0.0000019086,0.0000019090,0.0000019098,0.0000019103,0.0000019106, +0.0000019110,0.0000019122,0.0000019145,0.0000019180,0.0000019224, +0.0000019268,0.0000019309,0.0000019344,0.0000019374,0.0000019392, +0.0000019406,0.0000019418,0.0000019431,0.0000019442,0.0000019450, +0.0000019457,0.0000019460,0.0000019464,0.0000019465,0.0000019461, +0.0000019455,0.0000019445,0.0000019435,0.0000019423,0.0000019411, +0.0000019394,0.0000019375,0.0000019352,0.0000019328,0.0000019302, +0.0000019273,0.0000019243,0.0000019212,0.0000019181,0.0000019152, +0.0000019125,0.0000019103,0.0000019089,0.0000019082,0.0000019080, +0.0000019080,0.0000019080,0.0000019079,0.0000019078,0.0000019078, +0.0000019078,0.0000019079,0.0000019080,0.0000019080,0.0000019079, +0.0000019076,0.0000019070,0.0000019061,0.0000019050,0.0000019039, +0.0000019027,0.0000019013,0.0000018997,0.0000018980,0.0000018961, +0.0000018945,0.0000018934,0.0000018929,0.0000018926,0.0000018926, +0.0000018927,0.0000018928,0.0000018932,0.0000018936,0.0000018942, +0.0000018947,0.0000018949,0.0000018950,0.0000018952,0.0000018953, +0.0000018954,0.0000018954,0.0000018955,0.0000018959,0.0000018963, +0.0000018967,0.0000018973,0.0000018981,0.0000018989,0.0000018994, +0.0000018993,0.0000018987,0.0000018978,0.0000018970,0.0000018961, +0.0000018946,0.0000018923,0.0000018892,0.0000018856,0.0000018821, +0.0000018788,0.0000018757,0.0000018730,0.0000018707,0.0000018689, +0.0000018679,0.0000018675,0.0000018677,0.0000018681,0.0000018686, +0.0000018691,0.0000018699,0.0000018710,0.0000018724,0.0000018737, +0.0000018684,0.0000018697,0.0000018711,0.0000018727,0.0000018744, +0.0000018765,0.0000018794,0.0000018830,0.0000018872,0.0000018922, +0.0000018980,0.0000019040,0.0000019088,0.0000019112,0.0000019099, +0.0000019056,0.0000018989,0.0000018927,0.0000018896,0.0000018895, +0.0000018898,0.0000018896,0.0000018887,0.0000018885,0.0000018900, +0.0000018929,0.0000018950,0.0000018958,0.0000018966,0.0000018991, +0.0000019037,0.0000019092,0.0000019140,0.0000019172,0.0000019188, +0.0000019199,0.0000019212,0.0000019231,0.0000019257,0.0000019290, +0.0000019329,0.0000019373,0.0000019418,0.0000019461,0.0000019498, +0.0000019528,0.0000019549,0.0000019562,0.0000019568,0.0000019567, +0.0000019562,0.0000019553,0.0000019539,0.0000019520,0.0000019498, +0.0000019471,0.0000019444,0.0000019418,0.0000019396,0.0000019375, +0.0000019354,0.0000019335,0.0000019320,0.0000019309,0.0000019297, +0.0000019285,0.0000019272,0.0000019257,0.0000019240,0.0000019221, +0.0000019201,0.0000019182,0.0000019161,0.0000019137,0.0000019115, +0.0000019094,0.0000019075,0.0000019062,0.0000019054,0.0000019047, +0.0000019038,0.0000019025,0.0000019007,0.0000018982,0.0000018953, +0.0000018915,0.0000018868,0.0000018812,0.0000018756,0.0000018720, +0.0000018695,0.0000018688,0.0000018693,0.0000018714,0.0000018753, +0.0000018794,0.0000018825,0.0000018843,0.0000018853,0.0000018852, +0.0000018837,0.0000018809,0.0000018778,0.0000018751,0.0000018730, +0.0000018713,0.0000018697,0.0000018686,0.0000018680,0.0000018677, +0.0000018681,0.0000018700,0.0000018735,0.0000018790,0.0000018861, +0.0000018949,0.0000019044,0.0000019125,0.0000019178,0.0000019200, +0.0000019191,0.0000019172,0.0000019145,0.0000019108,0.0000019061, +0.0000018997,0.0000018911,0.0000018815,0.0000018730,0.0000018686, +0.0000018689,0.0000018709,0.0000018737,0.0000018768,0.0000018798, +0.0000018823,0.0000018837,0.0000018844,0.0000018845,0.0000018844, +0.0000018842,0.0000018846,0.0000018851,0.0000018857,0.0000018856, +0.0000018851,0.0000018847,0.0000018848,0.0000018860,0.0000018880, +0.0000018905,0.0000018934,0.0000018966,0.0000019002,0.0000019040, +0.0000019073,0.0000019097,0.0000019112,0.0000019118,0.0000019120, +0.0000019119,0.0000019120,0.0000019119,0.0000019112,0.0000019104, +0.0000019095,0.0000019085,0.0000019076,0.0000019074,0.0000019074, +0.0000019076,0.0000019084,0.0000019102,0.0000019124,0.0000019146, +0.0000019170,0.0000019194,0.0000019215,0.0000019231,0.0000019250, +0.0000019273,0.0000019300,0.0000019326,0.0000019350,0.0000019377, +0.0000019406,0.0000019438,0.0000019470,0.0000019502,0.0000019536, +0.0000019574,0.0000019615,0.0000019659,0.0000019706,0.0000019755, +0.0000019806,0.0000019858,0.0000019909,0.0000019957,0.0000020001, +0.0000020037,0.0000020065,0.0000020088,0.0000020105,0.0000020117, +0.0000020122,0.0000020123,0.0000020122,0.0000020124,0.0000020133, +0.0000020144,0.0000020156,0.0000020167,0.0000020182,0.0000020199, +0.0000020218,0.0000020239,0.0000020261,0.0000020285,0.0000020306, +0.0000020327,0.0000020347,0.0000020368,0.0000020389,0.0000020403, +0.0000020409,0.0000020411,0.0000020407,0.0000020395,0.0000020388, +0.0000020400,0.0000020450,0.0000020524,0.0000020583,0.0000020608, +0.0000020622,0.0000020659,0.0000020697,0.0000020707,0.0000020702, +0.0000020680,0.0000020642,0.0000020594,0.0000020545,0.0000020504, +0.0000020481,0.0000020475,0.0000020480,0.0000020491,0.0000020506, +0.0000020526,0.0000020555,0.0000020588,0.0000020619,0.0000020646, +0.0000020669,0.0000020686,0.0000020696,0.0000020697,0.0000020692, +0.0000020678,0.0000020661,0.0000020641,0.0000020616,0.0000020583, +0.0000020546,0.0000020514,0.0000020487,0.0000020465,0.0000020446, +0.0000020429,0.0000020410,0.0000020390,0.0000020375,0.0000020364, +0.0000020355,0.0000020352,0.0000020357,0.0000020371,0.0000020399, +0.0000020438,0.0000020483,0.0000020525,0.0000020563,0.0000020598, +0.0000020622,0.0000020629,0.0000020623,0.0000020606,0.0000020580, +0.0000020551,0.0000020521,0.0000020493,0.0000020475,0.0000020467, +0.0000020467,0.0000020465,0.0000020454,0.0000020433,0.0000020410, +0.0000020392,0.0000020381,0.0000020378,0.0000020383,0.0000020396, +0.0000020411,0.0000020430,0.0000020450,0.0000020468,0.0000020482, +0.0000020497,0.0000020515,0.0000020535,0.0000020544,0.0000020537, +0.0000020518,0.0000020510,0.0000020531,0.0000020572,0.0000020571, +0.0000020473,0.0000020317,0.0000020207,0.0000020188,0.0000020211, +0.0000020229,0.0000020236,0.0000020237,0.0000020229,0.0000020189, +0.0000020119,0.0000020048,0.0000020009,0.0000020032,0.0000020150, +0.0000020283,0.0000020330,0.0000020323,0.0000020303,0.0000020222, +0.0000020058,0.0000019964,0.0000020026,0.0000020254,0.0000020505, +0.0000020629,0.0000020659,0.0000020693,0.0000020741,0.0000020782, +0.0000020846,0.0000020966,0.0000021097,0.0000021167,0.0000021178, +0.0000021193,0.0000021266,0.0000021377,0.0000021462,0.0000021496, +0.0000021509,0.0000021531,0.0000021557,0.0000021571,0.0000021568, +0.0000021559,0.0000021542,0.0000021517,0.0000021487,0.0000021464, +0.0000021444,0.0000021426,0.0000021413,0.0000021403,0.0000021390, +0.0000021373,0.0000021358,0.0000021345,0.0000021338,0.0000021342, +0.0000021357,0.0000021376,0.0000021392,0.0000021399,0.0000021398, +0.0000021391,0.0000021380,0.0000021362,0.0000021342,0.0000021323, +0.0000021302,0.0000021286,0.0000021280,0.0000021282,0.0000021284, +0.0000021282,0.0000021273,0.0000021259,0.0000021247,0.0000021239, +0.0000021233,0.0000021231,0.0000021233,0.0000021239,0.0000021246, +0.0000021250,0.0000021251,0.0000021250,0.0000021247,0.0000021241, +0.0000021236,0.0000021230,0.0000021223,0.0000021212,0.0000021201, +0.0000021191,0.0000021185,0.0000021175,0.0000021161,0.0000021148, +0.0000021138,0.0000021127,0.0000021117,0.0000021108,0.0000021099, +0.0000021091,0.0000021084,0.0000021079,0.0000021076,0.0000021081, +0.0000021089,0.0000021099,0.0000021108,0.0000021112,0.0000021118, +0.0000021129,0.0000021142,0.0000021156,0.0000021172,0.0000021188, +0.0000021206,0.0000021221,0.0000021229,0.0000021229,0.0000021226, +0.0000021219,0.0000021203,0.0000021182,0.0000021158,0.0000021124, +0.0000021086,0.0000021054,0.0000021031,0.0000021013,0.0000020995, +0.0000020973,0.0000020947,0.0000020925,0.0000020909,0.0000020894, +0.0000020872,0.0000020857,0.0000020852,0.0000020850,0.0000020852, +0.0000020858,0.0000020866,0.0000020878,0.0000020892,0.0000020906, +0.0000020920,0.0000020935,0.0000020953,0.0000020973,0.0000020991, +0.0000021007,0.0000021019,0.0000021027,0.0000021030,0.0000021030, +0.0000021023,0.0000021011,0.0000020991,0.0000020964,0.0000020932, +0.0000020900,0.0000020871,0.0000020845,0.0000020822,0.0000020801, +0.0000020780,0.0000020758,0.0000020731,0.0000020700,0.0000020673, +0.0000020654,0.0000020639,0.0000020626,0.0000020613,0.0000020600, +0.0000020587,0.0000020581,0.0000020584,0.0000020593,0.0000020602, +0.0000020611,0.0000020621,0.0000020634,0.0000020646,0.0000020650, +0.0000020649,0.0000020646,0.0000020634,0.0000020616,0.0000020597, +0.0000020584,0.0000020580,0.0000020582,0.0000020588,0.0000020595, +0.0000020599,0.0000020598,0.0000020593,0.0000020590,0.0000020598, +0.0000020612,0.0000020633,0.0000020661,0.0000020692,0.0000020723, +0.0000020755,0.0000020787,0.0000020820,0.0000020854,0.0000020884, +0.0000020907,0.0000020925,0.0000020937,0.0000020946,0.0000020952, +0.0000020956,0.0000020956,0.0000020951,0.0000020944,0.0000020934, +0.0000020924,0.0000020913,0.0000020902,0.0000020890,0.0000020878, +0.0000020869,0.0000020867,0.0000020870,0.0000020874,0.0000020876, +0.0000020875,0.0000020875,0.0000020876,0.0000020874,0.0000020875, +0.0000020881,0.0000020887,0.0000020889,0.0000020888,0.0000020885, +0.0000020881,0.0000020876,0.0000020871,0.0000020866,0.0000020860, +0.0000020853,0.0000020849,0.0000020841,0.0000020827,0.0000020804, +0.0000020774,0.0000020740,0.0000020708,0.0000020684,0.0000020670, +0.0000020663,0.0000020659,0.0000020657,0.0000020653,0.0000020643, +0.0000020628,0.0000020610,0.0000020594,0.0000020584,0.0000020579, +0.0000020578,0.0000020574,0.0000020569,0.0000020564,0.0000020559, +0.0000020551,0.0000020541,0.0000020537,0.0000020532,0.0000020532, +0.0000020542,0.0000020561,0.0000020585,0.0000020613,0.0000020645, +0.0000020683,0.0000020728,0.0000020783,0.0000020848,0.0000020918, +0.0000020990,0.0000021055,0.0000021106,0.0000021142,0.0000021170, +0.0000021194,0.0000021214,0.0000021230,0.0000021243,0.0000021255, +0.0000021268,0.0000021285,0.0000021306,0.0000021329,0.0000021354, +0.0000021372,0.0000021382,0.0000021388,0.0000021386,0.0000021378, +0.0000021368,0.0000021356,0.0000021344,0.0000021336,0.0000021334, +0.0000021328,0.0000021315,0.0000021290,0.0000021255,0.0000021209, +0.0000021159,0.0000021108,0.0000021062,0.0000021021,0.0000020987, +0.0000020963,0.0000020951,0.0000020948,0.0000020951,0.0000020955, +0.0000020957,0.0000020955,0.0000020944,0.0000020925,0.0000020903, +0.0000020884,0.0000020869,0.0000020858,0.0000020847,0.0000020833, +0.0000020822,0.0000020818,0.0000020819,0.0000020821,0.0000020823, +0.0000020828,0.0000020839,0.0000020857,0.0000020873,0.0000020880, +0.0000020879,0.0000020869,0.0000020853,0.0000020833,0.0000020807, +0.0000020778,0.0000020747,0.0000020713,0.0000020679,0.0000020652, +0.0000020632,0.0000020617,0.0000020608,0.0000020603,0.0000020600, +0.0000020596,0.0000020589,0.0000020576,0.0000020554,0.0000020519, +0.0000020474,0.0000020426,0.0000020374,0.0000020321,0.0000020269, +0.0000020222,0.0000020183,0.0000020149,0.0000020119,0.0000020092, +0.0000020066,0.0000020040,0.0000020007,0.0000019969,0.0000019932, +0.0000019912,0.0000019907,0.0000019920,0.0000019941,0.0000019969, +0.0000020001,0.0000020028,0.0000020047,0.0000020060,0.0000020067, +0.0000020073,0.0000020084,0.0000020100,0.0000020116,0.0000020133, +0.0000020151,0.0000020169,0.0000020185,0.0000020196,0.0000020201, +0.0000020205,0.0000020206,0.0000020208,0.0000020207,0.0000020204, +0.0000020200,0.0000020198,0.0000020200,0.0000020210,0.0000020225, +0.0000020238,0.0000020244,0.0000020243,0.0000020240,0.0000020240, +0.0000020243,0.0000020246,0.0000020247,0.0000020250,0.0000020262, +0.0000020281,0.0000020305,0.0000020331,0.0000020348,0.0000020356, +0.0000020355,0.0000020350,0.0000020341,0.0000020331,0.0000020320, +0.0000020308,0.0000020296,0.0000020281,0.0000020264,0.0000020249, +0.0000020239,0.0000020242,0.0000020257,0.0000020283,0.0000020317, +0.0000020352,0.0000020384,0.0000020409,0.0000020421,0.0000020425, +0.0000020426,0.0000020417,0.0000020409,0.0000020397,0.0000020383, +0.0000020366,0.0000020349,0.0000020329,0.0000020307,0.0000020287, +0.0000020269,0.0000020252,0.0000020232,0.0000020213,0.0000020198, +0.0000020185,0.0000020171,0.0000020151,0.0000020118,0.0000020071, +0.0000020010,0.0000019936,0.0000019856,0.0000019780,0.0000019723, +0.0000019686,0.0000019677,0.0000019679,0.0000019690,0.0000019695, +0.0000019696,0.0000019676,0.0000019641,0.0000019598,0.0000019551, +0.0000019502,0.0000019473,0.0000019452,0.0000019452,0.0000019453, +0.0000019479,0.0000019502,0.0000019525,0.0000019548,0.0000019569, +0.0000019576,0.0000019591,0.0000019598,0.0000019604,0.0000019601, +0.0000019591,0.0000019578,0.0000019563,0.0000019547,0.0000019532, +0.0000019535,0.0000019532,0.0000019532,0.0000019537,0.0000019546, +0.0000019563,0.0000019587,0.0000019609,0.0000019623,0.0000019628, +0.0000019626,0.0000019630,0.0000019657,0.0000019720,0.0000019816, +0.0000019913,0.0000019988,0.0000020017,0.0000020012,0.0000019986, +0.0000019964,0.0000019960,0.0000019975,0.0000020014,0.0000020073, +0.0000020142,0.0000020207,0.0000020257,0.0000020294,0.0000020321, +0.0000020347,0.0000020372,0.0000020395,0.0000020415,0.0000020434, +0.0000020457,0.0000020487,0.0000020525,0.0000020570,0.0000020619, +0.0000020667,0.0000020714,0.0000020759,0.0000020801,0.0000020842, +0.0000020882,0.0000020920,0.0000020952,0.0000020978,0.0000020998, +0.0000021014,0.0000021028,0.0000021039,0.0000021042,0.0000021035, +0.0000021020,0.0000021005,0.0000020993,0.0000020980,0.0000020961, +0.0000020938,0.0000020911,0.0000020876,0.0000020836,0.0000020795, +0.0000020756,0.0000020725,0.0000020703,0.0000020682,0.0000020661, +0.0000020639,0.0000020611,0.0000020569,0.0000020512,0.0000020447, +0.0000020375,0.0000020305,0.0000020246,0.0000020197,0.0000020158, +0.0000020131,0.0000020115,0.0000020110,0.0000020111,0.0000020119, +0.0000020127,0.0000020133,0.0000020141,0.0000020152,0.0000020161, +0.0000020165,0.0000020161,0.0000020147,0.0000020122,0.0000020088, +0.0000020054,0.0000020025,0.0000020005,0.0000019998,0.0000020005, +0.0000020018,0.0000020034,0.0000020046,0.0000020054,0.0000020051, +0.0000020038,0.0000020021,0.0000020008,0.0000019998,0.0000019987, +0.0000019969,0.0000019931,0.0000019871,0.0000019799,0.0000019736, +0.0000019695,0.0000019677,0.0000019673,0.0000019676,0.0000019685, +0.0000019697,0.0000019706,0.0000019708,0.0000019704,0.0000019694, +0.0000019681,0.0000019666,0.0000019648,0.0000019625,0.0000019597, +0.0000019567,0.0000019534,0.0000019498,0.0000019462,0.0000019427, +0.0000019395,0.0000019364,0.0000019333,0.0000019301,0.0000019271, +0.0000019247,0.0000019226,0.0000019206,0.0000019188,0.0000019170, +0.0000019153,0.0000019137,0.0000019123,0.0000019114,0.0000019107, +0.0000019104,0.0000019101,0.0000019099,0.0000019091,0.0000019081, +0.0000019071,0.0000019065,0.0000019065,0.0000019070,0.0000019084, +0.0000019109,0.0000019143,0.0000019187,0.0000019243,0.0000019312, +0.0000019389,0.0000019467,0.0000019541,0.0000019605,0.0000019655, +0.0000019688,0.0000019704,0.0000019705,0.0000019702,0.0000019704, +0.0000019720,0.0000019747,0.0000019783,0.0000019826,0.0000019873, +0.0000019919,0.0000019959,0.0000019992,0.0000020017,0.0000020035, +0.0000020049,0.0000020061,0.0000020066,0.0000020064,0.0000020052, +0.0000020035,0.0000020015,0.0000019994,0.0000019973,0.0000019955, +0.0000019941,0.0000019939,0.0000019946,0.0000019958,0.0000019972, +0.0000019988,0.0000020000,0.0000020007,0.0000020009,0.0000020004, +0.0000019989,0.0000019967,0.0000019941,0.0000019909,0.0000019879, +0.0000019861,0.0000019855,0.0000019860,0.0000019874,0.0000019888, +0.0000019895,0.0000019894,0.0000019889,0.0000019883,0.0000019866, +0.0000019835,0.0000019787,0.0000019722,0.0000019647,0.0000019575, +0.0000019513,0.0000019470,0.0000019441,0.0000019437,0.0000019448, +0.0000019473,0.0000019510,0.0000019556,0.0000019590,0.0000019590, +0.0000019564,0.0000019530,0.0000019515,0.0000019525,0.0000019554, +0.0000019584,0.0000019597,0.0000019583,0.0000019551,0.0000019487, +0.0000019408,0.0000019336,0.0000019285,0.0000019258,0.0000019242, +0.0000019220,0.0000019188,0.0000019156,0.0000019132,0.0000019119, +0.0000019123,0.0000019140,0.0000019155,0.0000019158,0.0000019147, +0.0000019143,0.0000019167,0.0000019213,0.0000019254,0.0000019271, +0.0000019268,0.0000019257,0.0000019232,0.0000019160,0.0000019061, +0.0000018985,0.0000018931,0.0000018874,0.0000018830,0.0000018810, +0.0000018794,0.0000018771,0.0000018746,0.0000018721,0.0000018697, +0.0000018684,0.0000018678,0.0000018674,0.0000018668,0.0000018662, +0.0000018660,0.0000018660,0.0000018662,0.0000018665,0.0000018663, +0.0000018654,0.0000018643,0.0000018637,0.0000018640,0.0000018647, +0.0000018666,0.0000018696,0.0000018739,0.0000018803,0.0000018890, +0.0000018988,0.0000019082,0.0000019166,0.0000019238,0.0000019298, +0.0000019347,0.0000019384,0.0000019410,0.0000019428,0.0000019439, +0.0000019443,0.0000019442,0.0000019438,0.0000019429,0.0000019414, +0.0000019385,0.0000019335,0.0000019266,0.0000019187,0.0000019110, +0.0000019028,0.0000018937,0.0000018853,0.0000018777,0.0000018709, +0.0000018656,0.0000018615,0.0000018583,0.0000018559,0.0000018537, +0.0000018523,0.0000018518,0.0000018519,0.0000018519,0.0000018518, +0.0000018507,0.0000018496,0.0000018489,0.0000018479,0.0000018461, +0.0000018434,0.0000018399,0.0000018361,0.0000018328,0.0000018307, +0.0000018290,0.0000018282,0.0000018280,0.0000018279,0.0000018273, +0.0000018259,0.0000018244,0.0000018230,0.0000018231,0.0000018248, +0.0000018278,0.0000018298,0.0000018297,0.0000018292,0.0000018297, +0.0000018300,0.0000018299,0.0000018304,0.0000018300,0.0000018287, +0.0000018264,0.0000018241,0.0000018224,0.0000018216,0.0000018219, +0.0000018232,0.0000018249,0.0000018270,0.0000018288,0.0000018298, +0.0000018308,0.0000018320,0.0000018332,0.0000018341,0.0000018347, +0.0000018348,0.0000018341,0.0000018312,0.0000018248,0.0000018148, +0.0000018027,0.0000017899,0.0000017768,0.0000017649,0.0000017563, +0.0000017518,0.0000017501,0.0000017501,0.0000017523,0.0000017566, +0.0000017602,0.0000017621,0.0000017631,0.0000017643,0.0000017657, +0.0000017670,0.0000017678,0.0000017680,0.0000017677,0.0000017676, +0.0000017683,0.0000017699,0.0000017712,0.0000017716,0.0000017701, +0.0000017675,0.0000017656,0.0000017654,0.0000017672,0.0000017714, +0.0000017780,0.0000017868,0.0000017972,0.0000018077,0.0000018170, +0.0000018244,0.0000018295,0.0000018328,0.0000018355,0.0000018382, +0.0000018410,0.0000018437,0.0000018463,0.0000018489,0.0000018513, +0.0000018536,0.0000018559,0.0000018580,0.0000018599,0.0000018618, +0.0000018637,0.0000018650,0.0000018657,0.0000018656,0.0000018647, +0.0000018629,0.0000018602,0.0000018567,0.0000018524,0.0000018477, +0.0000018426,0.0000018373,0.0000018318,0.0000018263,0.0000018207, +0.0000018155,0.0000018109,0.0000018072,0.0000018041,0.0000018010, +0.0000017973,0.0000017931,0.0000017882,0.0000017840,0.0000017810, +0.0000017796,0.0000017810,0.0000017835,0.0000017877,0.0000017923, +0.0000017959,0.0000017982,0.0000017990,0.0000017982,0.0000017963, +0.0000017935,0.0000017899,0.0000017858,0.0000017815,0.0000017778, +0.0000017746,0.0000017717,0.0000017688,0.0000017669,0.0000017654, +0.0000017654,0.0000017665,0.0000017676,0.0000017687,0.0000017703, +0.0000017732,0.0000017785,0.0000017868,0.0000017978,0.0000018106, +0.0000018238,0.0000018362,0.0000018477,0.0000018581,0.0000018675, +0.0000018758,0.0000018830,0.0000018887,0.0000018924,0.0000018945, +0.0000018944,0.0000018930,0.0000018904,0.0000018876,0.0000018863, +0.0000018860,0.0000018883,0.0000018932,0.0000018993,0.0000019052, +0.0000019092,0.0000019119,0.0000019119,0.0000019126,0.0000019133, +0.0000019146,0.0000019155,0.0000019156,0.0000019144,0.0000019122, +0.0000019100,0.0000019083,0.0000019078,0.0000019076,0.0000019075, +0.0000019074,0.0000019072,0.0000019073,0.0000019082,0.0000019103, +0.0000019132,0.0000019174,0.0000019228,0.0000019285,0.0000019332, +0.0000019370,0.0000019398,0.0000019411,0.0000019421,0.0000019426, +0.0000019430,0.0000019430,0.0000019431,0.0000019432,0.0000019432, +0.0000019430,0.0000019425,0.0000019420,0.0000019412,0.0000019401, +0.0000019388,0.0000019370,0.0000019348,0.0000019323,0.0000019297, +0.0000019269,0.0000019240,0.0000019210,0.0000019181,0.0000019151, +0.0000019122,0.0000019092,0.0000019071,0.0000019055,0.0000019047, +0.0000019044,0.0000019041,0.0000019038,0.0000019034,0.0000019031, +0.0000019029,0.0000019028,0.0000019028,0.0000019029,0.0000019030, +0.0000019028,0.0000019025,0.0000019019,0.0000019010,0.0000019001, +0.0000018989,0.0000018973,0.0000018953,0.0000018932,0.0000018910, +0.0000018891,0.0000018879,0.0000018873,0.0000018872,0.0000018873, +0.0000018875,0.0000018876,0.0000018876,0.0000018874,0.0000018874, +0.0000018875,0.0000018875,0.0000018873,0.0000018870,0.0000018868, +0.0000018865,0.0000018862,0.0000018858,0.0000018856,0.0000018853, +0.0000018849,0.0000018844,0.0000018839,0.0000018838,0.0000018838, +0.0000018837,0.0000018833,0.0000018826,0.0000018820,0.0000018817, +0.0000018814,0.0000018808,0.0000018794,0.0000018773,0.0000018749, +0.0000018724,0.0000018698,0.0000018674,0.0000018652,0.0000018633, +0.0000018618,0.0000018607,0.0000018602,0.0000018605,0.0000018610, +0.0000018617,0.0000018627,0.0000018640,0.0000018655,0.0000018670, +0.0000018622,0.0000018640,0.0000018655,0.0000018671,0.0000018688, +0.0000018705,0.0000018722,0.0000018742,0.0000018768,0.0000018802, +0.0000018846,0.0000018902,0.0000018967,0.0000019031,0.0000019071, +0.0000019083,0.0000019064,0.0000019019,0.0000018956,0.0000018911, +0.0000018897,0.0000018904,0.0000018911,0.0000018908,0.0000018901, +0.0000018905,0.0000018925,0.0000018949,0.0000018959,0.0000018961, +0.0000018967,0.0000018992,0.0000019038,0.0000019092,0.0000019137, +0.0000019170,0.0000019195,0.0000019216,0.0000019240,0.0000019266, +0.0000019294,0.0000019325,0.0000019355,0.0000019386,0.0000019419, +0.0000019454,0.0000019486,0.0000019512,0.0000019533,0.0000019546, +0.0000019552,0.0000019549,0.0000019538,0.0000019522,0.0000019503, +0.0000019480,0.0000019452,0.0000019423,0.0000019395,0.0000019372, +0.0000019355,0.0000019343,0.0000019338,0.0000019334,0.0000019326, +0.0000019316,0.0000019304,0.0000019293,0.0000019282,0.0000019269, +0.0000019256,0.0000019242,0.0000019228,0.0000019214,0.0000019196, +0.0000019175,0.0000019152,0.0000019130,0.0000019110,0.0000019091, +0.0000019070,0.0000019048,0.0000019023,0.0000018999,0.0000018975, +0.0000018952,0.0000018924,0.0000018887,0.0000018841,0.0000018789, +0.0000018737,0.0000018692,0.0000018665,0.0000018658,0.0000018674, +0.0000018713,0.0000018764,0.0000018816,0.0000018855,0.0000018875, +0.0000018879,0.0000018871,0.0000018848,0.0000018814,0.0000018780, +0.0000018750,0.0000018725,0.0000018706,0.0000018692,0.0000018683, +0.0000018674,0.0000018670,0.0000018679,0.0000018703,0.0000018742, +0.0000018801,0.0000018880,0.0000018970,0.0000019056,0.0000019124, +0.0000019162,0.0000019164,0.0000019147,0.0000019120,0.0000019087, +0.0000019047,0.0000018997,0.0000018931,0.0000018853,0.0000018785, +0.0000018741,0.0000018719,0.0000018731,0.0000018750,0.0000018780, +0.0000018808,0.0000018823,0.0000018830,0.0000018835,0.0000018835, +0.0000018835,0.0000018841,0.0000018849,0.0000018854,0.0000018852, +0.0000018846,0.0000018839,0.0000018836,0.0000018843,0.0000018858, +0.0000018879,0.0000018904,0.0000018932,0.0000018965,0.0000019000, +0.0000019030,0.0000019054,0.0000019069,0.0000019077,0.0000019078, +0.0000019076,0.0000019077,0.0000019073,0.0000019064,0.0000019054, +0.0000019043,0.0000019032,0.0000019024,0.0000019020,0.0000019020, +0.0000019023,0.0000019034,0.0000019052,0.0000019074,0.0000019095, +0.0000019117,0.0000019138,0.0000019156,0.0000019171,0.0000019187, +0.0000019206,0.0000019227,0.0000019248,0.0000019266,0.0000019288, +0.0000019311,0.0000019333,0.0000019354,0.0000019375,0.0000019398, +0.0000019424,0.0000019452,0.0000019482,0.0000019514,0.0000019549, +0.0000019590,0.0000019638,0.0000019689,0.0000019742,0.0000019796, +0.0000019847,0.0000019896,0.0000019941,0.0000019979,0.0000020010, +0.0000020033,0.0000020051,0.0000020064,0.0000020078,0.0000020093, +0.0000020108,0.0000020123,0.0000020137,0.0000020152,0.0000020168, +0.0000020184,0.0000020200,0.0000020218,0.0000020238,0.0000020259, +0.0000020280,0.0000020302,0.0000020326,0.0000020350,0.0000020370, +0.0000020381,0.0000020387,0.0000020385,0.0000020372,0.0000020359, +0.0000020365,0.0000020411,0.0000020483,0.0000020542,0.0000020566, +0.0000020575,0.0000020606,0.0000020647,0.0000020667,0.0000020665, +0.0000020647,0.0000020618,0.0000020581,0.0000020537,0.0000020497, +0.0000020473,0.0000020469,0.0000020474,0.0000020488,0.0000020507, +0.0000020532,0.0000020563,0.0000020598,0.0000020630,0.0000020658, +0.0000020684,0.0000020704,0.0000020718,0.0000020722,0.0000020719, +0.0000020709,0.0000020696,0.0000020679,0.0000020657,0.0000020629, +0.0000020599,0.0000020572,0.0000020547,0.0000020526,0.0000020507, +0.0000020488,0.0000020469,0.0000020449,0.0000020426,0.0000020402, +0.0000020380,0.0000020363,0.0000020357,0.0000020360,0.0000020370, +0.0000020393,0.0000020424,0.0000020460,0.0000020500,0.0000020541, +0.0000020572,0.0000020589,0.0000020591,0.0000020579,0.0000020555, +0.0000020522,0.0000020487,0.0000020454,0.0000020429,0.0000020417, +0.0000020414,0.0000020411,0.0000020404,0.0000020392,0.0000020380, +0.0000020372,0.0000020369,0.0000020370,0.0000020372,0.0000020376, +0.0000020378,0.0000020380,0.0000020384,0.0000020391,0.0000020403, +0.0000020421,0.0000020449,0.0000020482,0.0000020504,0.0000020503, +0.0000020488,0.0000020482,0.0000020509,0.0000020556,0.0000020556, +0.0000020457,0.0000020301,0.0000020197,0.0000020181,0.0000020206, +0.0000020226,0.0000020232,0.0000020232,0.0000020220,0.0000020174, +0.0000020099,0.0000020030,0.0000020004,0.0000020049,0.0000020186, +0.0000020302,0.0000020322,0.0000020312,0.0000020290,0.0000020196, +0.0000020034,0.0000019958,0.0000020067,0.0000020326,0.0000020563, +0.0000020663,0.0000020688,0.0000020727,0.0000020771,0.0000020808, +0.0000020876,0.0000020990,0.0000021108,0.0000021167,0.0000021177, +0.0000021194,0.0000021264,0.0000021365,0.0000021443,0.0000021473, +0.0000021477,0.0000021487,0.0000021503,0.0000021512,0.0000021509, +0.0000021500,0.0000021486,0.0000021469,0.0000021454,0.0000021441, +0.0000021425,0.0000021412,0.0000021400,0.0000021384,0.0000021362, +0.0000021338,0.0000021315,0.0000021298,0.0000021295,0.0000021304, +0.0000021321,0.0000021340,0.0000021355,0.0000021365,0.0000021370, +0.0000021370,0.0000021360,0.0000021342,0.0000021319,0.0000021294, +0.0000021268,0.0000021249,0.0000021237,0.0000021230,0.0000021223, +0.0000021214,0.0000021203,0.0000021193,0.0000021186,0.0000021180, +0.0000021170,0.0000021159,0.0000021151,0.0000021150,0.0000021155, +0.0000021163,0.0000021174,0.0000021184,0.0000021193,0.0000021198, +0.0000021201,0.0000021202,0.0000021198,0.0000021191,0.0000021181, +0.0000021172,0.0000021161,0.0000021148,0.0000021134,0.0000021119, +0.0000021102,0.0000021084,0.0000021066,0.0000021049,0.0000021032, +0.0000021016,0.0000021003,0.0000020994,0.0000020992,0.0000020996, +0.0000021003,0.0000021008,0.0000021013,0.0000021019,0.0000021028, +0.0000021039,0.0000021050,0.0000021065,0.0000021085,0.0000021108, +0.0000021128,0.0000021145,0.0000021160,0.0000021171,0.0000021177, +0.0000021177,0.0000021173,0.0000021162,0.0000021143,0.0000021117, +0.0000021091,0.0000021071,0.0000021056,0.0000021043,0.0000021023, +0.0000020998,0.0000020967,0.0000020934,0.0000020902,0.0000020874, +0.0000020849,0.0000020826,0.0000020805,0.0000020792,0.0000020784, +0.0000020783,0.0000020783,0.0000020790,0.0000020798,0.0000020803, +0.0000020817,0.0000020834,0.0000020851,0.0000020870,0.0000020891, +0.0000020909,0.0000020921,0.0000020929,0.0000020935,0.0000020936, +0.0000020929,0.0000020913,0.0000020889,0.0000020857,0.0000020822, +0.0000020786,0.0000020754,0.0000020728,0.0000020706,0.0000020685, +0.0000020664,0.0000020640,0.0000020617,0.0000020600,0.0000020593, +0.0000020583,0.0000020571,0.0000020559,0.0000020547,0.0000020539, +0.0000020540,0.0000020550,0.0000020560,0.0000020568,0.0000020576, +0.0000020584,0.0000020595,0.0000020606,0.0000020611,0.0000020619, +0.0000020616,0.0000020604,0.0000020586,0.0000020570,0.0000020560, +0.0000020559,0.0000020559,0.0000020562,0.0000020565,0.0000020565, +0.0000020559,0.0000020550,0.0000020546,0.0000020550,0.0000020554, +0.0000020562,0.0000020580,0.0000020605,0.0000020632,0.0000020661, +0.0000020689,0.0000020720,0.0000020754,0.0000020785,0.0000020810, +0.0000020829,0.0000020840,0.0000020847,0.0000020853,0.0000020857, +0.0000020857,0.0000020852,0.0000020844,0.0000020837,0.0000020834, +0.0000020834,0.0000020832,0.0000020826,0.0000020818,0.0000020812, +0.0000020810,0.0000020812,0.0000020816,0.0000020823,0.0000020828, +0.0000020833,0.0000020834,0.0000020831,0.0000020828,0.0000020827, +0.0000020828,0.0000020829,0.0000020829,0.0000020826,0.0000020820, +0.0000020816,0.0000020816,0.0000020822,0.0000020831,0.0000020839, +0.0000020845,0.0000020851,0.0000020852,0.0000020841,0.0000020828, +0.0000020813,0.0000020793,0.0000020772,0.0000020750,0.0000020730, +0.0000020710,0.0000020693,0.0000020680,0.0000020669,0.0000020657, +0.0000020644,0.0000020633,0.0000020626,0.0000020621,0.0000020615, +0.0000020607,0.0000020597,0.0000020589,0.0000020582,0.0000020576, +0.0000020569,0.0000020559,0.0000020549,0.0000020541,0.0000020542, +0.0000020542,0.0000020544,0.0000020547,0.0000020555,0.0000020569, +0.0000020592,0.0000020629,0.0000020682,0.0000020752,0.0000020830, +0.0000020907,0.0000020973,0.0000021023,0.0000021062,0.0000021095, +0.0000021125,0.0000021151,0.0000021171,0.0000021184,0.0000021192, +0.0000021199,0.0000021210,0.0000021225,0.0000021246,0.0000021266, +0.0000021282,0.0000021290,0.0000021290,0.0000021287,0.0000021280, +0.0000021271,0.0000021263,0.0000021260,0.0000021260,0.0000021256, +0.0000021244,0.0000021220,0.0000021183,0.0000021136,0.0000021083, +0.0000021032,0.0000020988,0.0000020952,0.0000020928,0.0000020918, +0.0000020919,0.0000020927,0.0000020936,0.0000020942,0.0000020943, +0.0000020938,0.0000020922,0.0000020898,0.0000020874,0.0000020851, +0.0000020831,0.0000020815,0.0000020799,0.0000020783,0.0000020772, +0.0000020768,0.0000020766,0.0000020762,0.0000020759,0.0000020760, +0.0000020768,0.0000020780,0.0000020787,0.0000020788,0.0000020780, +0.0000020762,0.0000020741,0.0000020720,0.0000020697,0.0000020673, +0.0000020648,0.0000020624,0.0000020597,0.0000020574,0.0000020555, +0.0000020539,0.0000020530,0.0000020526,0.0000020525,0.0000020523, +0.0000020521,0.0000020515,0.0000020501,0.0000020476,0.0000020441, +0.0000020400,0.0000020357,0.0000020310,0.0000020260,0.0000020216, +0.0000020178,0.0000020147,0.0000020120,0.0000020094,0.0000020069, +0.0000020044,0.0000020010,0.0000019970,0.0000019936,0.0000019918, +0.0000019918,0.0000019930,0.0000019949,0.0000019974,0.0000020003, +0.0000020031,0.0000020051,0.0000020064,0.0000020071,0.0000020079, +0.0000020089,0.0000020101,0.0000020114,0.0000020129,0.0000020145, +0.0000020161,0.0000020172,0.0000020179,0.0000020181,0.0000020182, +0.0000020184,0.0000020190,0.0000020195,0.0000020199,0.0000020205, +0.0000020211,0.0000020221,0.0000020235,0.0000020248,0.0000020255, +0.0000020253,0.0000020247,0.0000020242,0.0000020243,0.0000020240, +0.0000020232,0.0000020225,0.0000020227,0.0000020239,0.0000020261, +0.0000020287,0.0000020308,0.0000020320,0.0000020325,0.0000020324, +0.0000020318,0.0000020312,0.0000020306,0.0000020300,0.0000020292, +0.0000020278,0.0000020260,0.0000020240,0.0000020223,0.0000020211, +0.0000020207,0.0000020215,0.0000020234,0.0000020259,0.0000020287, +0.0000020316,0.0000020342,0.0000020362,0.0000020379,0.0000020392, +0.0000020402,0.0000020403,0.0000020404,0.0000020395,0.0000020375, +0.0000020350,0.0000020325,0.0000020304,0.0000020292,0.0000020286, +0.0000020279,0.0000020267,0.0000020255,0.0000020243,0.0000020229, +0.0000020209,0.0000020179,0.0000020143,0.0000020101,0.0000020051, +0.0000019989,0.0000019920,0.0000019850,0.0000019783,0.0000019729, +0.0000019696,0.0000019682,0.0000019687,0.0000019699,0.0000019705, +0.0000019708,0.0000019699,0.0000019681,0.0000019654,0.0000019620, +0.0000019581,0.0000019541,0.0000019515,0.0000019497,0.0000019488, +0.0000019498,0.0000019501,0.0000019516,0.0000019531,0.0000019551, +0.0000019576,0.0000019598,0.0000019621,0.0000019630,0.0000019637, +0.0000019632,0.0000019622,0.0000019602,0.0000019580,0.0000019560, +0.0000019542,0.0000019526,0.0000019521,0.0000019520,0.0000019529, +0.0000019548,0.0000019569,0.0000019587,0.0000019600,0.0000019607, +0.0000019615,0.0000019638,0.0000019688,0.0000019767,0.0000019865, +0.0000019955,0.0000020011,0.0000020023,0.0000020010,0.0000019994, +0.0000019986,0.0000019996,0.0000020026,0.0000020073,0.0000020130, +0.0000020184,0.0000020224,0.0000020248,0.0000020264,0.0000020279, +0.0000020297,0.0000020319,0.0000020344,0.0000020374,0.0000020408, +0.0000020451,0.0000020505,0.0000020563,0.0000020620,0.0000020673, +0.0000020723,0.0000020766,0.0000020808,0.0000020848,0.0000020883, +0.0000020909,0.0000020927,0.0000020939,0.0000020947,0.0000020953, +0.0000020954,0.0000020947,0.0000020929,0.0000020911,0.0000020898, +0.0000020890,0.0000020881,0.0000020867,0.0000020845,0.0000020816, +0.0000020781,0.0000020743,0.0000020703,0.0000020667,0.0000020640, +0.0000020620,0.0000020599,0.0000020574,0.0000020546,0.0000020510, +0.0000020463,0.0000020404,0.0000020336,0.0000020264,0.0000020200, +0.0000020152,0.0000020117,0.0000020095,0.0000020087,0.0000020090, +0.0000020099,0.0000020111,0.0000020122,0.0000020125,0.0000020120, +0.0000020108,0.0000020095,0.0000020081,0.0000020066,0.0000020045, +0.0000020020,0.0000019995,0.0000019975,0.0000019967,0.0000019970, +0.0000019988,0.0000020012,0.0000020043,0.0000020067,0.0000020079, +0.0000020080,0.0000020070,0.0000020051,0.0000020031,0.0000020018, +0.0000020008,0.0000019995,0.0000019969,0.0000019922,0.0000019857, +0.0000019787,0.0000019732,0.0000019701,0.0000019691,0.0000019693, +0.0000019701,0.0000019711,0.0000019723,0.0000019732,0.0000019733, +0.0000019727,0.0000019718,0.0000019707,0.0000019693,0.0000019677, +0.0000019663,0.0000019648,0.0000019626,0.0000019597,0.0000019564, +0.0000019532,0.0000019497,0.0000019463,0.0000019432,0.0000019401, +0.0000019367,0.0000019330,0.0000019294,0.0000019264,0.0000019239, +0.0000019218,0.0000019199,0.0000019183,0.0000019168,0.0000019153, +0.0000019137,0.0000019121,0.0000019108,0.0000019099,0.0000019092, +0.0000019084,0.0000019075,0.0000019063,0.0000019049,0.0000019035, +0.0000019022,0.0000019010,0.0000019005,0.0000019008,0.0000019019, +0.0000019041,0.0000019076,0.0000019124,0.0000019189,0.0000019266, +0.0000019351,0.0000019437,0.0000019519,0.0000019588,0.0000019640, +0.0000019668,0.0000019677,0.0000019680,0.0000019679,0.0000019683, +0.0000019697,0.0000019725,0.0000019769,0.0000019824,0.0000019879, +0.0000019930,0.0000019970,0.0000020000,0.0000020020,0.0000020034, +0.0000020044,0.0000020047,0.0000020041,0.0000020027,0.0000020006, +0.0000019980,0.0000019954,0.0000019932,0.0000019920,0.0000019921, +0.0000019931,0.0000019946,0.0000019964,0.0000019981,0.0000019992, +0.0000019998,0.0000019998,0.0000019989,0.0000019970,0.0000019945, +0.0000019910,0.0000019874,0.0000019850,0.0000019828,0.0000019820, +0.0000019818,0.0000019826,0.0000019838,0.0000019847,0.0000019852, +0.0000019852,0.0000019851,0.0000019840,0.0000019813,0.0000019768, +0.0000019704,0.0000019629,0.0000019554,0.0000019488,0.0000019439, +0.0000019411,0.0000019404,0.0000019414,0.0000019439,0.0000019478, +0.0000019524,0.0000019558,0.0000019562,0.0000019543,0.0000019517, +0.0000019507,0.0000019518,0.0000019542,0.0000019566,0.0000019576, +0.0000019564,0.0000019533,0.0000019472,0.0000019400,0.0000019337, +0.0000019290,0.0000019259,0.0000019237,0.0000019212,0.0000019176, +0.0000019138,0.0000019113,0.0000019098,0.0000019097,0.0000019113, +0.0000019132,0.0000019140,0.0000019134,0.0000019132,0.0000019149, +0.0000019186,0.0000019226,0.0000019247,0.0000019249,0.0000019242, +0.0000019214,0.0000019139,0.0000019048,0.0000018978,0.0000018917, +0.0000018854,0.0000018812,0.0000018789,0.0000018760,0.0000018725, +0.0000018692,0.0000018664,0.0000018652,0.0000018653,0.0000018657, +0.0000018658,0.0000018659,0.0000018662,0.0000018666,0.0000018672, +0.0000018679,0.0000018683,0.0000018681,0.0000018671,0.0000018659, +0.0000018649,0.0000018644,0.0000018648,0.0000018655,0.0000018671, +0.0000018703,0.0000018757,0.0000018834,0.0000018924,0.0000019012, +0.0000019090,0.0000019154,0.0000019209,0.0000019258,0.0000019298, +0.0000019328,0.0000019347,0.0000019360,0.0000019368,0.0000019370, +0.0000019364,0.0000019348,0.0000019317,0.0000019266,0.0000019200, +0.0000019127,0.0000019049,0.0000018956,0.0000018859,0.0000018773, +0.0000018692,0.0000018619,0.0000018563,0.0000018521,0.0000018489, +0.0000018465,0.0000018444,0.0000018425,0.0000018414,0.0000018411, +0.0000018410,0.0000018408,0.0000018402,0.0000018398,0.0000018397, +0.0000018393,0.0000018384,0.0000018369,0.0000018342,0.0000018307, +0.0000018278,0.0000018260,0.0000018250,0.0000018249,0.0000018258, +0.0000018267,0.0000018265,0.0000018253,0.0000018234,0.0000018205, +0.0000018183,0.0000018179,0.0000018204,0.0000018244,0.0000018271, +0.0000018275,0.0000018273,0.0000018281,0.0000018285,0.0000018292, +0.0000018297,0.0000018293,0.0000018281,0.0000018264,0.0000018247, +0.0000018235,0.0000018233,0.0000018236,0.0000018244,0.0000018260, +0.0000018278,0.0000018291,0.0000018307,0.0000018327,0.0000018348, +0.0000018365,0.0000018374,0.0000018374,0.0000018358,0.0000018312, +0.0000018228,0.0000018118,0.0000017994,0.0000017856,0.0000017721, +0.0000017618,0.0000017560,0.0000017533,0.0000017527,0.0000017543, +0.0000017585,0.0000017628,0.0000017646,0.0000017651,0.0000017660, +0.0000017676,0.0000017690,0.0000017696,0.0000017698,0.0000017700, +0.0000017709,0.0000017728,0.0000017750,0.0000017762,0.0000017758, +0.0000017741,0.0000017716,0.0000017699,0.0000017701,0.0000017730, +0.0000017791,0.0000017883,0.0000017996,0.0000018112,0.0000018211, +0.0000018286,0.0000018335,0.0000018371,0.0000018408,0.0000018450, +0.0000018494,0.0000018537,0.0000018574,0.0000018603,0.0000018631, +0.0000018664,0.0000018705,0.0000018755,0.0000018806,0.0000018853, +0.0000018893,0.0000018923,0.0000018946,0.0000018962,0.0000018973, +0.0000018975,0.0000018973,0.0000018961,0.0000018943,0.0000018914, +0.0000018873,0.0000018822,0.0000018761,0.0000018692,0.0000018616, +0.0000018532,0.0000018443,0.0000018351,0.0000018259,0.0000018175, +0.0000018103,0.0000018057,0.0000018035,0.0000018026,0.0000018028, +0.0000018012,0.0000017977,0.0000017929,0.0000017878,0.0000017840, +0.0000017823,0.0000017834,0.0000017865,0.0000017898,0.0000017937, +0.0000017964,0.0000017980,0.0000017984,0.0000017974,0.0000017947, +0.0000017909,0.0000017863,0.0000017816,0.0000017773,0.0000017738, +0.0000017706,0.0000017672,0.0000017652,0.0000017641,0.0000017646, +0.0000017656,0.0000017667,0.0000017677,0.0000017692,0.0000017723, +0.0000017777,0.0000017855,0.0000017956,0.0000018072,0.0000018193, +0.0000018317,0.0000018437,0.0000018551,0.0000018655,0.0000018745, +0.0000018819,0.0000018874,0.0000018911,0.0000018924,0.0000018918, +0.0000018907,0.0000018880,0.0000018852,0.0000018840,0.0000018849, +0.0000018881,0.0000018934,0.0000019000,0.0000019062,0.0000019108, +0.0000019126,0.0000019133,0.0000019143,0.0000019152,0.0000019159, +0.0000019158,0.0000019147,0.0000019126,0.0000019102,0.0000019079, +0.0000019063,0.0000019051,0.0000019044,0.0000019039,0.0000019037, +0.0000019041,0.0000019050,0.0000019068,0.0000019099,0.0000019142, +0.0000019193,0.0000019250,0.0000019310,0.0000019357,0.0000019392, +0.0000019416,0.0000019419,0.0000019419,0.0000019413,0.0000019406, +0.0000019402,0.0000019399,0.0000019396,0.0000019391,0.0000019385, +0.0000019380,0.0000019374,0.0000019366,0.0000019353,0.0000019335, +0.0000019315,0.0000019291,0.0000019265,0.0000019237,0.0000019208, +0.0000019178,0.0000019148,0.0000019118,0.0000019090,0.0000019067, +0.0000019052,0.0000019042,0.0000019036,0.0000019031,0.0000019025, +0.0000019019,0.0000019014,0.0000019010,0.0000019005,0.0000019001, +0.0000018997,0.0000018992,0.0000018988,0.0000018982,0.0000018973, +0.0000018963,0.0000018953,0.0000018941,0.0000018923,0.0000018903, +0.0000018883,0.0000018863,0.0000018849,0.0000018842,0.0000018842, +0.0000018844,0.0000018848,0.0000018851,0.0000018851,0.0000018849, +0.0000018845,0.0000018840,0.0000018838,0.0000018835,0.0000018829, +0.0000018823,0.0000018817,0.0000018810,0.0000018805,0.0000018801, +0.0000018797,0.0000018792,0.0000018785,0.0000018775,0.0000018766, +0.0000018761,0.0000018755,0.0000018747,0.0000018736,0.0000018724, +0.0000018716,0.0000018713,0.0000018709,0.0000018704,0.0000018693, +0.0000018677,0.0000018659,0.0000018641,0.0000018624,0.0000018609, +0.0000018596,0.0000018587,0.0000018578,0.0000018571,0.0000018567, +0.0000018566,0.0000018567,0.0000018571,0.0000018578,0.0000018590, +0.0000018605,0.0000018561,0.0000018575,0.0000018593,0.0000018613, +0.0000018632,0.0000018652,0.0000018671,0.0000018686,0.0000018700, +0.0000018716,0.0000018738,0.0000018772,0.0000018820,0.0000018884, +0.0000018955,0.0000019019,0.0000019057,0.0000019064,0.0000019039, +0.0000018987,0.0000018933,0.0000018904,0.0000018906,0.0000018919, +0.0000018923,0.0000018916,0.0000018912,0.0000018924,0.0000018946, +0.0000018962,0.0000018961,0.0000018958,0.0000018964,0.0000018992, +0.0000019037,0.0000019090,0.0000019138,0.0000019177,0.0000019210, +0.0000019239,0.0000019269,0.0000019300,0.0000019326,0.0000019348, +0.0000019370,0.0000019391,0.0000019412,0.0000019431,0.0000019448, +0.0000019466,0.0000019482,0.0000019495,0.0000019504,0.0000019506, +0.0000019499,0.0000019480,0.0000019455,0.0000019426,0.0000019395, +0.0000019368,0.0000019347,0.0000019337,0.0000019337,0.0000019340, +0.0000019341,0.0000019337,0.0000019330,0.0000019324,0.0000019318, +0.0000019312,0.0000019304,0.0000019294,0.0000019283,0.0000019274, +0.0000019265,0.0000019253,0.0000019237,0.0000019218,0.0000019199, +0.0000019179,0.0000019155,0.0000019123,0.0000019086,0.0000019048, +0.0000019007,0.0000018968,0.0000018935,0.0000018906,0.0000018879, +0.0000018851,0.0000018817,0.0000018775,0.0000018727,0.0000018680, +0.0000018661,0.0000018663,0.0000018690,0.0000018735,0.0000018789, +0.0000018838,0.0000018874,0.0000018889,0.0000018889,0.0000018874, +0.0000018846,0.0000018809,0.0000018771,0.0000018737,0.0000018711, +0.0000018692,0.0000018679,0.0000018665,0.0000018659,0.0000018663, +0.0000018677,0.0000018706,0.0000018749,0.0000018806,0.0000018879, +0.0000018961,0.0000019038,0.0000019094,0.0000019120,0.0000019110, +0.0000019089,0.0000019063,0.0000019032,0.0000018997,0.0000018954, +0.0000018909,0.0000018861,0.0000018815,0.0000018780,0.0000018761, +0.0000018775,0.0000018788,0.0000018805,0.0000018817,0.0000018822, +0.0000018821,0.0000018820,0.0000018825,0.0000018833,0.0000018840, +0.0000018840,0.0000018836,0.0000018831,0.0000018830,0.0000018835, +0.0000018849,0.0000018868,0.0000018892,0.0000018919,0.0000018945, +0.0000018973,0.0000018998,0.0000019018,0.0000019030,0.0000019036, +0.0000019032,0.0000019029,0.0000019025,0.0000019018,0.0000019008, +0.0000018996,0.0000018983,0.0000018972,0.0000018965,0.0000018961, +0.0000018961,0.0000018966,0.0000018976,0.0000018992,0.0000019012, +0.0000019033,0.0000019052,0.0000019071,0.0000019089,0.0000019104, +0.0000019120,0.0000019137,0.0000019157,0.0000019177,0.0000019196, +0.0000019215,0.0000019234,0.0000019252,0.0000019269,0.0000019286, +0.0000019304,0.0000019325,0.0000019345,0.0000019364,0.0000019380, +0.0000019399,0.0000019424,0.0000019456,0.0000019491,0.0000019529, +0.0000019573,0.0000019622,0.0000019672,0.0000019723,0.0000019771, +0.0000019817,0.0000019858,0.0000019898,0.0000019936,0.0000019971, +0.0000020003,0.0000020034,0.0000020062,0.0000020089,0.0000020114, +0.0000020138,0.0000020159,0.0000020176,0.0000020191,0.0000020207, +0.0000020222,0.0000020238,0.0000020255,0.0000020275,0.0000020299, +0.0000020325,0.0000020346,0.0000020358,0.0000020358,0.0000020347, +0.0000020330,0.0000020331,0.0000020373,0.0000020443,0.0000020503, +0.0000020526,0.0000020530,0.0000020554,0.0000020597,0.0000020626, +0.0000020630,0.0000020616,0.0000020595,0.0000020570,0.0000020535, +0.0000020496,0.0000020472,0.0000020469,0.0000020474,0.0000020490, +0.0000020514,0.0000020544,0.0000020576,0.0000020610,0.0000020642, +0.0000020672,0.0000020697,0.0000020717,0.0000020729,0.0000020732, +0.0000020727,0.0000020720,0.0000020707,0.0000020690,0.0000020667, +0.0000020641,0.0000020617,0.0000020592,0.0000020569,0.0000020549, +0.0000020532,0.0000020516,0.0000020503,0.0000020490,0.0000020475, +0.0000020457,0.0000020437,0.0000020421,0.0000020411,0.0000020403, +0.0000020401,0.0000020409,0.0000020422,0.0000020441,0.0000020467, +0.0000020496,0.0000020522,0.0000020543,0.0000020555,0.0000020554, +0.0000020540,0.0000020514,0.0000020478,0.0000020441,0.0000020409, +0.0000020386,0.0000020371,0.0000020360,0.0000020349,0.0000020335, +0.0000020324,0.0000020323,0.0000020331,0.0000020346,0.0000020360, +0.0000020369,0.0000020368,0.0000020361,0.0000020351,0.0000020345, +0.0000020349,0.0000020364,0.0000020394,0.0000020436,0.0000020470, +0.0000020476,0.0000020464,0.0000020458,0.0000020490,0.0000020539, +0.0000020538,0.0000020436,0.0000020281,0.0000020188,0.0000020176, +0.0000020198,0.0000020218,0.0000020222,0.0000020220,0.0000020202, +0.0000020152,0.0000020076,0.0000020014,0.0000020003,0.0000020074, +0.0000020220,0.0000020314,0.0000020321,0.0000020307,0.0000020281, +0.0000020173,0.0000020015,0.0000019988,0.0000020130,0.0000020396, +0.0000020611,0.0000020694,0.0000020720,0.0000020759,0.0000020797, +0.0000020832,0.0000020897,0.0000021001,0.0000021106,0.0000021162, +0.0000021176,0.0000021193,0.0000021251,0.0000021341,0.0000021416, +0.0000021448,0.0000021448,0.0000021448,0.0000021454,0.0000021460, +0.0000021460,0.0000021453,0.0000021442,0.0000021432,0.0000021422, +0.0000021412,0.0000021402,0.0000021394,0.0000021381,0.0000021364, +0.0000021344,0.0000021321,0.0000021297,0.0000021282,0.0000021280, +0.0000021285,0.0000021294,0.0000021303,0.0000021310,0.0000021311, +0.0000021310,0.0000021304,0.0000021296,0.0000021283,0.0000021267, +0.0000021252,0.0000021240,0.0000021229,0.0000021215,0.0000021198, +0.0000021178,0.0000021156,0.0000021136,0.0000021120,0.0000021107, +0.0000021096,0.0000021084,0.0000021073,0.0000021063,0.0000021058, +0.0000021062,0.0000021074,0.0000021088,0.0000021102,0.0000021112, +0.0000021118,0.0000021122,0.0000021122,0.0000021120,0.0000021115, +0.0000021106,0.0000021098,0.0000021090,0.0000021082,0.0000021070, +0.0000021055,0.0000021039,0.0000021022,0.0000021008,0.0000020994, +0.0000020980,0.0000020968,0.0000020955,0.0000020945,0.0000020939, +0.0000020936,0.0000020934,0.0000020933,0.0000020933,0.0000020931, +0.0000020930,0.0000020929,0.0000020933,0.0000020942,0.0000020957, +0.0000020973,0.0000020988,0.0000021006,0.0000021026,0.0000021043, +0.0000021057,0.0000021068,0.0000021074,0.0000021073,0.0000021064, +0.0000021050,0.0000021037,0.0000021028,0.0000021022,0.0000021014, +0.0000021002,0.0000020982,0.0000020962,0.0000020944,0.0000020926, +0.0000020905,0.0000020882,0.0000020858,0.0000020837,0.0000020826, +0.0000020819,0.0000020813,0.0000020811,0.0000020810,0.0000020810, +0.0000020811,0.0000020817,0.0000020826,0.0000020839,0.0000020856, +0.0000020870,0.0000020879,0.0000020888,0.0000020895,0.0000020897, +0.0000020891,0.0000020875,0.0000020850,0.0000020820,0.0000020787, +0.0000020752,0.0000020720,0.0000020695,0.0000020676,0.0000020660, +0.0000020645,0.0000020632,0.0000020622,0.0000020613,0.0000020609, +0.0000020603,0.0000020595,0.0000020583,0.0000020570,0.0000020563, +0.0000020560,0.0000020563,0.0000020569,0.0000020574,0.0000020576, +0.0000020579,0.0000020583,0.0000020585,0.0000020592,0.0000020594, +0.0000020588,0.0000020575,0.0000020559,0.0000020546,0.0000020544, +0.0000020545,0.0000020549,0.0000020555,0.0000020560,0.0000020561, +0.0000020555,0.0000020548,0.0000020549,0.0000020553,0.0000020555, +0.0000020557,0.0000020567,0.0000020584,0.0000020605,0.0000020629, +0.0000020651,0.0000020674,0.0000020703,0.0000020731,0.0000020753, +0.0000020766,0.0000020769,0.0000020766,0.0000020764,0.0000020762, +0.0000020758,0.0000020753,0.0000020747,0.0000020743,0.0000020743, +0.0000020747,0.0000020752,0.0000020752,0.0000020750,0.0000020750, +0.0000020750,0.0000020748,0.0000020747,0.0000020749,0.0000020757, +0.0000020766,0.0000020773,0.0000020779,0.0000020785,0.0000020789, +0.0000020789,0.0000020788,0.0000020784,0.0000020780,0.0000020773, +0.0000020768,0.0000020767,0.0000020770,0.0000020778,0.0000020787, +0.0000020796,0.0000020805,0.0000020813,0.0000020817,0.0000020819, +0.0000020823,0.0000020831,0.0000020835,0.0000020833,0.0000020831, +0.0000020815,0.0000020794,0.0000020769,0.0000020742,0.0000020717, +0.0000020695,0.0000020677,0.0000020667,0.0000020663,0.0000020661, +0.0000020659,0.0000020655,0.0000020647,0.0000020638,0.0000020628, +0.0000020616,0.0000020603,0.0000020590,0.0000020578,0.0000020567, +0.0000020555,0.0000020541,0.0000020533,0.0000020522,0.0000020513, +0.0000020509,0.0000020517,0.0000020545,0.0000020594,0.0000020659, +0.0000020734,0.0000020807,0.0000020874,0.0000020930,0.0000020974, +0.0000021011,0.0000021042,0.0000021069,0.0000021089,0.0000021102, +0.0000021110,0.0000021117,0.0000021126,0.0000021142,0.0000021161, +0.0000021179,0.0000021189,0.0000021192,0.0000021193,0.0000021189, +0.0000021185,0.0000021184,0.0000021186,0.0000021190,0.0000021191, +0.0000021184,0.0000021164,0.0000021128,0.0000021083,0.0000021035, +0.0000020990,0.0000020952,0.0000020926,0.0000020915,0.0000020915, +0.0000020922,0.0000020935,0.0000020945,0.0000020948,0.0000020945, +0.0000020934,0.0000020914,0.0000020888,0.0000020859,0.0000020833, +0.0000020807,0.0000020782,0.0000020757,0.0000020737,0.0000020726, +0.0000020723,0.0000020718,0.0000020712,0.0000020705,0.0000020702, +0.0000020703,0.0000020705,0.0000020702,0.0000020693,0.0000020675, +0.0000020651,0.0000020628,0.0000020603,0.0000020580,0.0000020560, +0.0000020548,0.0000020531,0.0000020512,0.0000020493,0.0000020477, +0.0000020466,0.0000020464,0.0000020465,0.0000020468,0.0000020471, +0.0000020473,0.0000020471,0.0000020464,0.0000020445,0.0000020419, +0.0000020387,0.0000020347,0.0000020301,0.0000020255,0.0000020218, +0.0000020183,0.0000020154,0.0000020131,0.0000020111,0.0000020091, +0.0000020068,0.0000020035,0.0000019998,0.0000019968,0.0000019951, +0.0000019946,0.0000019950,0.0000019966,0.0000019982,0.0000020002, +0.0000020022,0.0000020038,0.0000020050,0.0000020061,0.0000020073, +0.0000020089,0.0000020105,0.0000020120,0.0000020136,0.0000020150, +0.0000020160,0.0000020163,0.0000020159,0.0000020151,0.0000020142, +0.0000020138,0.0000020137,0.0000020141,0.0000020154,0.0000020173, +0.0000020192,0.0000020213,0.0000020233,0.0000020248,0.0000020252, +0.0000020248,0.0000020242,0.0000020240,0.0000020234,0.0000020222, +0.0000020209,0.0000020202,0.0000020204,0.0000020218,0.0000020241, +0.0000020261,0.0000020273,0.0000020278,0.0000020278,0.0000020276, +0.0000020273,0.0000020272,0.0000020272,0.0000020270,0.0000020265, +0.0000020253,0.0000020237,0.0000020218,0.0000020200,0.0000020186, +0.0000020179,0.0000020182,0.0000020191,0.0000020206,0.0000020225, +0.0000020244,0.0000020263,0.0000020284,0.0000020312,0.0000020345, +0.0000020375,0.0000020398,0.0000020405,0.0000020405,0.0000020385, +0.0000020358,0.0000020331,0.0000020310,0.0000020302,0.0000020300, +0.0000020299,0.0000020299,0.0000020299,0.0000020295,0.0000020284, +0.0000020257,0.0000020217,0.0000020171,0.0000020122,0.0000020071, +0.0000020019,0.0000019965,0.0000019906,0.0000019846,0.0000019793, +0.0000019749,0.0000019721,0.0000019704,0.0000019702,0.0000019698, +0.0000019707,0.0000019711,0.0000019716,0.0000019717,0.0000019710, +0.0000019695,0.0000019671,0.0000019642,0.0000019611,0.0000019581, +0.0000019556,0.0000019535,0.0000019519,0.0000019528,0.0000019527, +0.0000019540,0.0000019561,0.0000019583,0.0000019603,0.0000019618, +0.0000019628,0.0000019624,0.0000019618,0.0000019601,0.0000019583, +0.0000019564,0.0000019547,0.0000019532,0.0000019523,0.0000019526, +0.0000019533,0.0000019542,0.0000019555,0.0000019571,0.0000019587, +0.0000019608,0.0000019638,0.0000019679,0.0000019739,0.0000019823, +0.0000019912,0.0000019986,0.0000020019,0.0000020033,0.0000020021, +0.0000020007,0.0000020006,0.0000020023,0.0000020059,0.0000020105, +0.0000020149,0.0000020179,0.0000020196,0.0000020204,0.0000020213, +0.0000020228,0.0000020252,0.0000020281,0.0000020314,0.0000020358, +0.0000020413,0.0000020474,0.0000020535,0.0000020592,0.0000020645, +0.0000020691,0.0000020733,0.0000020769,0.0000020799,0.0000020820, +0.0000020833,0.0000020840,0.0000020844,0.0000020849,0.0000020847, +0.0000020839,0.0000020822,0.0000020805,0.0000020794,0.0000020788, +0.0000020784,0.0000020774,0.0000020755,0.0000020729,0.0000020698, +0.0000020661,0.0000020620,0.0000020582,0.0000020552,0.0000020526, +0.0000020500,0.0000020471,0.0000020438,0.0000020397,0.0000020349, +0.0000020292,0.0000020230,0.0000020173,0.0000020130,0.0000020101, +0.0000020086,0.0000020085,0.0000020089,0.0000020098,0.0000020103, +0.0000020104,0.0000020095,0.0000020075,0.0000020044,0.0000020009, +0.0000019979,0.0000019956,0.0000019941,0.0000019928,0.0000019922, +0.0000019923,0.0000019936,0.0000019960,0.0000019990,0.0000020027, +0.0000020061,0.0000020083,0.0000020088,0.0000020083,0.0000020067, +0.0000020047,0.0000020030,0.0000020020,0.0000020014,0.0000020000, +0.0000019968,0.0000019915,0.0000019847,0.0000019780,0.0000019730, +0.0000019705,0.0000019700,0.0000019704,0.0000019710,0.0000019718, +0.0000019727,0.0000019735,0.0000019738,0.0000019734,0.0000019724, +0.0000019715,0.0000019707,0.0000019697,0.0000019687,0.0000019679, +0.0000019669,0.0000019653,0.0000019630,0.0000019601,0.0000019568, +0.0000019536,0.0000019506,0.0000019479,0.0000019446,0.0000019409, +0.0000019366,0.0000019322,0.0000019282,0.0000019250,0.0000019223, +0.0000019200,0.0000019181,0.0000019167,0.0000019156,0.0000019146, +0.0000019135,0.0000019122,0.0000019110,0.0000019098,0.0000019086, +0.0000019073,0.0000019056,0.0000019039,0.0000019025,0.0000019010, +0.0000018994,0.0000018977,0.0000018968,0.0000018969,0.0000018975, +0.0000018987,0.0000019009,0.0000019045,0.0000019100,0.0000019172, +0.0000019255,0.0000019344,0.0000019434,0.0000019515,0.0000019578, +0.0000019623,0.0000019649,0.0000019659,0.0000019661,0.0000019661, +0.0000019670,0.0000019696,0.0000019736,0.0000019787,0.0000019843, +0.0000019897,0.0000019942,0.0000019975,0.0000019998,0.0000020015, +0.0000020022,0.0000020021,0.0000020012,0.0000019992,0.0000019964, +0.0000019936,0.0000019911,0.0000019896,0.0000019893,0.0000019905, +0.0000019922,0.0000019943,0.0000019963,0.0000019976,0.0000019984, +0.0000019984,0.0000019974,0.0000019955,0.0000019928,0.0000019895, +0.0000019864,0.0000019839,0.0000019822,0.0000019808,0.0000019801, +0.0000019803,0.0000019809,0.0000019818,0.0000019824,0.0000019828, +0.0000019829,0.0000019820,0.0000019796,0.0000019754,0.0000019692, +0.0000019618,0.0000019539,0.0000019468,0.0000019413,0.0000019381, +0.0000019370,0.0000019380,0.0000019406,0.0000019445,0.0000019491, +0.0000019525,0.0000019536,0.0000019522,0.0000019505,0.0000019500, +0.0000019509,0.0000019528,0.0000019548,0.0000019556,0.0000019544, +0.0000019510,0.0000019454,0.0000019393,0.0000019339,0.0000019293, +0.0000019257,0.0000019231,0.0000019201,0.0000019161,0.0000019120, +0.0000019093,0.0000019073,0.0000019068,0.0000019078,0.0000019098, +0.0000019115,0.0000019122,0.0000019122,0.0000019131,0.0000019160, +0.0000019196,0.0000019221,0.0000019231,0.0000019225,0.0000019194, +0.0000019121,0.0000019039,0.0000018972,0.0000018905,0.0000018842, +0.0000018802,0.0000018768,0.0000018727,0.0000018686,0.0000018647, +0.0000018626,0.0000018625,0.0000018634,0.0000018645,0.0000018655, +0.0000018663,0.0000018674,0.0000018687,0.0000018697,0.0000018706, +0.0000018709,0.0000018706,0.0000018695,0.0000018679,0.0000018664, +0.0000018654,0.0000018649,0.0000018649,0.0000018659,0.0000018684, +0.0000018729,0.0000018797,0.0000018877,0.0000018953,0.0000019019, +0.0000019075,0.0000019126,0.0000019172,0.0000019208,0.0000019235, +0.0000019256,0.0000019273,0.0000019282,0.0000019281,0.0000019266, +0.0000019238,0.0000019191,0.0000019132,0.0000019064,0.0000018982, +0.0000018885,0.0000018787,0.0000018695,0.0000018605,0.0000018526, +0.0000018468,0.0000018427,0.0000018398,0.0000018376,0.0000018358, +0.0000018339,0.0000018321,0.0000018312,0.0000018307,0.0000018302, +0.0000018298,0.0000018298,0.0000018303,0.0000018310,0.0000018311, +0.0000018304,0.0000018280,0.0000018246,0.0000018223,0.0000018216, +0.0000018220,0.0000018230,0.0000018246,0.0000018260,0.0000018264, +0.0000018257,0.0000018239,0.0000018203,0.0000018168,0.0000018140, +0.0000018138,0.0000018159,0.0000018202,0.0000018244,0.0000018253, +0.0000018254,0.0000018264,0.0000018274,0.0000018289,0.0000018292, +0.0000018289,0.0000018282,0.0000018270,0.0000018255,0.0000018246, +0.0000018243,0.0000018246,0.0000018256,0.0000018273,0.0000018291, +0.0000018314,0.0000018339,0.0000018363,0.0000018381,0.0000018392, +0.0000018390,0.0000018364,0.0000018300,0.0000018206,0.0000018093, +0.0000017962,0.0000017819,0.0000017695,0.0000017620,0.0000017583, +0.0000017567,0.0000017574,0.0000017607,0.0000017649,0.0000017673, +0.0000017679,0.0000017684,0.0000017696,0.0000017710,0.0000017717, +0.0000017717,0.0000017719,0.0000017733,0.0000017761,0.0000017792, +0.0000017803,0.0000017791,0.0000017768,0.0000017746,0.0000017735, +0.0000017741,0.0000017782,0.0000017863,0.0000017977,0.0000018105, +0.0000018213,0.0000018285,0.0000018331,0.0000018376,0.0000018434, +0.0000018501,0.0000018561,0.0000018601,0.0000018624,0.0000018646, +0.0000018686,0.0000018751,0.0000018835,0.0000018924,0.0000019002, +0.0000019066,0.0000019116,0.0000019149,0.0000019146,0.0000019147, +0.0000019152,0.0000019156,0.0000019164,0.0000019171,0.0000019177, +0.0000019175,0.0000019179,0.0000019184,0.0000019159,0.0000019119, +0.0000019069,0.0000019016,0.0000018957,0.0000018876,0.0000018771, +0.0000018654,0.0000018527,0.0000018400,0.0000018278,0.0000018169, +0.0000018083,0.0000018039,0.0000018040,0.0000018062,0.0000018078, +0.0000018086,0.0000018058,0.0000018004,0.0000017941,0.0000017892, +0.0000017865,0.0000017856,0.0000017862,0.0000017878,0.0000017900, +0.0000017921,0.0000017939,0.0000017949,0.0000017949,0.0000017937, +0.0000017907,0.0000017860,0.0000017806,0.0000017757,0.0000017719, +0.0000017688,0.0000017659,0.0000017644,0.0000017637,0.0000017644, +0.0000017656,0.0000017665,0.0000017677,0.0000017697,0.0000017728, +0.0000017777,0.0000017846,0.0000017934,0.0000018037,0.0000018152, +0.0000018274,0.0000018397,0.0000018517,0.0000018625,0.0000018718, +0.0000018796,0.0000018853,0.0000018892,0.0000018903,0.0000018898, +0.0000018883,0.0000018856,0.0000018838,0.0000018822,0.0000018839, +0.0000018886,0.0000018955,0.0000019030,0.0000019085,0.0000019125, +0.0000019142,0.0000019147,0.0000019149,0.0000019151,0.0000019148, +0.0000019143,0.0000019125,0.0000019099,0.0000019069,0.0000019041, +0.0000019022,0.0000019008,0.0000019001,0.0000019001,0.0000019009, +0.0000019025,0.0000019049,0.0000019080,0.0000019119,0.0000019165, +0.0000019218,0.0000019277,0.0000019336,0.0000019378,0.0000019404, +0.0000019412,0.0000019410,0.0000019399,0.0000019386,0.0000019374, +0.0000019364,0.0000019355,0.0000019346,0.0000019339,0.0000019332, +0.0000019326,0.0000019318,0.0000019308,0.0000019295,0.0000019277, +0.0000019257,0.0000019236,0.0000019213,0.0000019188,0.0000019163, +0.0000019137,0.0000019111,0.0000019088,0.0000019071,0.0000019059, +0.0000019051,0.0000019044,0.0000019039,0.0000019032,0.0000019026, +0.0000019018,0.0000019009,0.0000018999,0.0000018989,0.0000018981, +0.0000018971,0.0000018961,0.0000018950,0.0000018940,0.0000018931, +0.0000018922,0.0000018905,0.0000018888,0.0000018871,0.0000018856, +0.0000018846,0.0000018841,0.0000018840,0.0000018839,0.0000018840, +0.0000018841,0.0000018840,0.0000018837,0.0000018832,0.0000018826, +0.0000018821,0.0000018815,0.0000018807,0.0000018798,0.0000018788, +0.0000018777,0.0000018767,0.0000018757,0.0000018749,0.0000018740, +0.0000018730,0.0000018720,0.0000018714,0.0000018709,0.0000018704, +0.0000018695,0.0000018684,0.0000018674,0.0000018666,0.0000018663, +0.0000018660,0.0000018654,0.0000018644,0.0000018631,0.0000018615, +0.0000018599,0.0000018585,0.0000018575,0.0000018568,0.0000018565, +0.0000018563,0.0000018561,0.0000018560,0.0000018560,0.0000018559, +0.0000018556,0.0000018555,0.0000018555,0.0000018539,0.0000018533, +0.0000018534,0.0000018544,0.0000018563,0.0000018587,0.0000018612, +0.0000018633,0.0000018648,0.0000018658,0.0000018668,0.0000018682, +0.0000018706,0.0000018742,0.0000018796,0.0000018867,0.0000018946, +0.0000019010,0.0000019045,0.0000019045,0.0000019016,0.0000018965, +0.0000018924,0.0000018913,0.0000018924,0.0000018935,0.0000018931, +0.0000018924,0.0000018926,0.0000018942,0.0000018961,0.0000018965, +0.0000018959,0.0000018955,0.0000018964,0.0000018994,0.0000019041, +0.0000019093,0.0000019141,0.0000019183,0.0000019222,0.0000019258, +0.0000019291,0.0000019318,0.0000019341,0.0000019360,0.0000019375, +0.0000019385,0.0000019391,0.0000019396,0.0000019402,0.0000019409, +0.0000019415,0.0000019423,0.0000019431,0.0000019437,0.0000019434, +0.0000019418,0.0000019393,0.0000019366,0.0000019344,0.0000019330, +0.0000019329,0.0000019334,0.0000019339,0.0000019337,0.0000019333, +0.0000019330,0.0000019329,0.0000019328,0.0000019325,0.0000019321, +0.0000019320,0.0000019319,0.0000019316,0.0000019313,0.0000019307, +0.0000019297,0.0000019286,0.0000019269,0.0000019249,0.0000019223, +0.0000019189,0.0000019147,0.0000019097,0.0000019042,0.0000018989, +0.0000018938,0.0000018896,0.0000018864,0.0000018841,0.0000018822, +0.0000018799,0.0000018766,0.0000018728,0.0000018696,0.0000018687, +0.0000018693,0.0000018718,0.0000018756,0.0000018802,0.0000018848, +0.0000018884,0.0000018897,0.0000018890,0.0000018868,0.0000018833, +0.0000018790,0.0000018746,0.0000018710,0.0000018685,0.0000018668, +0.0000018653,0.0000018645,0.0000018645,0.0000018658,0.0000018677, +0.0000018700,0.0000018732,0.0000018781,0.0000018849,0.0000018925, +0.0000018993,0.0000019039,0.0000019062,0.0000019054,0.0000019036, +0.0000019021,0.0000019002,0.0000018984,0.0000018959,0.0000018929, +0.0000018892,0.0000018853,0.0000018822,0.0000018802,0.0000018805, +0.0000018805,0.0000018805,0.0000018803,0.0000018801,0.0000018803, +0.0000018810,0.0000018817,0.0000018819,0.0000018818,0.0000018818, +0.0000018818,0.0000018824,0.0000018837,0.0000018855,0.0000018878, +0.0000018901,0.0000018921,0.0000018941,0.0000018961,0.0000018976, +0.0000018986,0.0000018989,0.0000018986,0.0000018982,0.0000018976, +0.0000018970,0.0000018958,0.0000018942,0.0000018926,0.0000018911, +0.0000018900,0.0000018894,0.0000018893,0.0000018895,0.0000018901, +0.0000018912,0.0000018929,0.0000018947,0.0000018963,0.0000018981, +0.0000018999,0.0000019015,0.0000019030,0.0000019048,0.0000019069, +0.0000019092,0.0000019113,0.0000019131,0.0000019149,0.0000019166, +0.0000019184,0.0000019202,0.0000019221,0.0000019243,0.0000019262, +0.0000019278,0.0000019289,0.0000019301,0.0000019316,0.0000019333, +0.0000019351,0.0000019372,0.0000019399,0.0000019431,0.0000019465, +0.0000019502,0.0000019540,0.0000019581,0.0000019625,0.0000019674, +0.0000019727,0.0000019782,0.0000019837,0.0000019891,0.0000019944, +0.0000019994,0.0000020041,0.0000020083,0.0000020118,0.0000020147, +0.0000020169,0.0000020188,0.0000020202,0.0000020212,0.0000020221, +0.0000020231,0.0000020248,0.0000020273,0.0000020299,0.0000020320, +0.0000020326,0.0000020319,0.0000020301,0.0000020298,0.0000020331, +0.0000020401,0.0000020463,0.0000020489,0.0000020492,0.0000020506, +0.0000020546,0.0000020586,0.0000020596,0.0000020587,0.0000020573, +0.0000020557,0.0000020531,0.0000020500,0.0000020477,0.0000020472, +0.0000020477,0.0000020496,0.0000020523,0.0000020554,0.0000020585, +0.0000020616,0.0000020645,0.0000020673,0.0000020697,0.0000020713, +0.0000020721,0.0000020721,0.0000020717,0.0000020709,0.0000020698, +0.0000020681,0.0000020659,0.0000020636,0.0000020614,0.0000020590, +0.0000020567,0.0000020547,0.0000020527,0.0000020510,0.0000020497, +0.0000020487,0.0000020478,0.0000020469,0.0000020461,0.0000020458, +0.0000020456,0.0000020454,0.0000020454,0.0000020456,0.0000020460, +0.0000020468,0.0000020481,0.0000020494,0.0000020503,0.0000020512, +0.0000020519,0.0000020521,0.0000020517,0.0000020505,0.0000020481, +0.0000020448,0.0000020412,0.0000020380,0.0000020353,0.0000020328, +0.0000020305,0.0000020285,0.0000020270,0.0000020264,0.0000020273, +0.0000020297,0.0000020326,0.0000020350,0.0000020357,0.0000020352, +0.0000020338,0.0000020326,0.0000020325,0.0000020333,0.0000020358, +0.0000020403,0.0000020446,0.0000020459,0.0000020446,0.0000020439, +0.0000020473,0.0000020521,0.0000020515,0.0000020412,0.0000020260, +0.0000020174,0.0000020163,0.0000020185,0.0000020205,0.0000020207, +0.0000020200,0.0000020181,0.0000020127,0.0000020051,0.0000020001, +0.0000020004,0.0000020104,0.0000020256,0.0000020327,0.0000020321, +0.0000020307,0.0000020276,0.0000020156,0.0000020021,0.0000020020, +0.0000020199,0.0000020463,0.0000020662,0.0000020727,0.0000020748, +0.0000020787,0.0000020822,0.0000020853,0.0000020910,0.0000021002, +0.0000021097,0.0000021159,0.0000021178,0.0000021190,0.0000021234, +0.0000021310,0.0000021380,0.0000021417,0.0000021423,0.0000021418, +0.0000021416,0.0000021419,0.0000021421,0.0000021420,0.0000021416, +0.0000021409,0.0000021399,0.0000021391,0.0000021382,0.0000021371, +0.0000021357,0.0000021343,0.0000021326,0.0000021308,0.0000021294, +0.0000021286,0.0000021285,0.0000021287,0.0000021289,0.0000021290, +0.0000021286,0.0000021276,0.0000021259,0.0000021235,0.0000021210, +0.0000021189,0.0000021178,0.0000021176,0.0000021176,0.0000021176, +0.0000021172,0.0000021162,0.0000021143,0.0000021118,0.0000021089, +0.0000021060,0.0000021035,0.0000021013,0.0000020996,0.0000020983, +0.0000020974,0.0000020973,0.0000020982,0.0000020997,0.0000021011, +0.0000021022,0.0000021033,0.0000021042,0.0000021045,0.0000021044, +0.0000021040,0.0000021033,0.0000021026,0.0000021019,0.0000021015, +0.0000021008,0.0000020999,0.0000020988,0.0000020977,0.0000020964, +0.0000020951,0.0000020941,0.0000020934,0.0000020925,0.0000020915, +0.0000020907,0.0000020902,0.0000020899,0.0000020898,0.0000020894, +0.0000020887,0.0000020876,0.0000020865,0.0000020857,0.0000020851, +0.0000020845,0.0000020842,0.0000020842,0.0000020849,0.0000020860, +0.0000020872,0.0000020885,0.0000020898,0.0000020911,0.0000020918, +0.0000020920,0.0000020920,0.0000020920,0.0000020922,0.0000020926, +0.0000020933,0.0000020939,0.0000020941,0.0000020938,0.0000020929, +0.0000020918,0.0000020907,0.0000020894,0.0000020879,0.0000020870, +0.0000020870,0.0000020874,0.0000020876,0.0000020879,0.0000020880, +0.0000020882,0.0000020884,0.0000020887,0.0000020892,0.0000020898, +0.0000020907,0.0000020917,0.0000020924,0.0000020927,0.0000020927, +0.0000020923,0.0000020915,0.0000020898,0.0000020873,0.0000020844, +0.0000020813,0.0000020782,0.0000020751,0.0000020726,0.0000020709, +0.0000020697,0.0000020692,0.0000020691,0.0000020691,0.0000020692, +0.0000020692,0.0000020688,0.0000020681,0.0000020668,0.0000020652, +0.0000020636,0.0000020622,0.0000020610,0.0000020601,0.0000020593, +0.0000020584,0.0000020580,0.0000020575,0.0000020571,0.0000020569, +0.0000020563,0.0000020552,0.0000020537,0.0000020524,0.0000020518, +0.0000020519,0.0000020525,0.0000020537,0.0000020550,0.0000020560, +0.0000020567,0.0000020568,0.0000020573,0.0000020579,0.0000020588, +0.0000020594,0.0000020597,0.0000020601,0.0000020611,0.0000020626, +0.0000020645,0.0000020664,0.0000020686,0.0000020711,0.0000020733, +0.0000020749,0.0000020755,0.0000020752,0.0000020742,0.0000020729, +0.0000020714,0.0000020696,0.0000020685,0.0000020679,0.0000020673, +0.0000020668,0.0000020668,0.0000020670,0.0000020672,0.0000020676, +0.0000020682,0.0000020687,0.0000020686,0.0000020681,0.0000020679, +0.0000020682,0.0000020690,0.0000020698,0.0000020708,0.0000020720, +0.0000020732,0.0000020739,0.0000020741,0.0000020741,0.0000020738, +0.0000020733,0.0000020730,0.0000020730,0.0000020733,0.0000020739, +0.0000020745,0.0000020748,0.0000020750,0.0000020752,0.0000020754, +0.0000020756,0.0000020765,0.0000020785,0.0000020808,0.0000020826, +0.0000020840,0.0000020850,0.0000020854,0.0000020849,0.0000020839, +0.0000020829,0.0000020809,0.0000020781,0.0000020751,0.0000020725, +0.0000020706,0.0000020689,0.0000020676,0.0000020669,0.0000020668, +0.0000020668,0.0000020664,0.0000020655,0.0000020643,0.0000020628, +0.0000020611,0.0000020594,0.0000020573,0.0000020550,0.0000020526, +0.0000020502,0.0000020489,0.0000020474,0.0000020471,0.0000020489, +0.0000020528,0.0000020580,0.0000020640,0.0000020703,0.0000020767, +0.0000020827,0.0000020881,0.0000020923,0.0000020954,0.0000020976, +0.0000020992,0.0000021003,0.0000021012,0.0000021021,0.0000021034, +0.0000021054,0.0000021075,0.0000021089,0.0000021097,0.0000021100, +0.0000021099,0.0000021098,0.0000021100,0.0000021108,0.0000021119, +0.0000021127,0.0000021128,0.0000021117,0.0000021091,0.0000021054, +0.0000021014,0.0000020976,0.0000020946,0.0000020928,0.0000020923, +0.0000020927,0.0000020937,0.0000020949,0.0000020956,0.0000020957, +0.0000020950,0.0000020936,0.0000020913,0.0000020883,0.0000020850, +0.0000020819,0.0000020789,0.0000020758,0.0000020732,0.0000020712, +0.0000020703,0.0000020699,0.0000020694,0.0000020688,0.0000020681, +0.0000020674,0.0000020668,0.0000020664,0.0000020653,0.0000020633, +0.0000020605,0.0000020571,0.0000020540,0.0000020514,0.0000020493, +0.0000020481,0.0000020473,0.0000020460,0.0000020445,0.0000020430, +0.0000020419,0.0000020415,0.0000020419,0.0000020425,0.0000020430, +0.0000020434,0.0000020437,0.0000020437,0.0000020432,0.0000020420, +0.0000020397,0.0000020367,0.0000020331,0.0000020292,0.0000020255, +0.0000020222,0.0000020191,0.0000020169,0.0000020153,0.0000020140, +0.0000020126,0.0000020107,0.0000020082,0.0000020055,0.0000020032, +0.0000020013,0.0000020000,0.0000019993,0.0000019993,0.0000019997, +0.0000020009,0.0000020018,0.0000020024,0.0000020031,0.0000020043, +0.0000020062,0.0000020086,0.0000020111,0.0000020133,0.0000020154, +0.0000020169,0.0000020176,0.0000020174,0.0000020164,0.0000020147, +0.0000020128,0.0000020116,0.0000020101,0.0000020097,0.0000020104, +0.0000020118,0.0000020138,0.0000020162,0.0000020185,0.0000020201, +0.0000020208,0.0000020211,0.0000020215,0.0000020214,0.0000020207, +0.0000020197,0.0000020190,0.0000020189,0.0000020200,0.0000020219, +0.0000020237,0.0000020248,0.0000020253,0.0000020254,0.0000020253, +0.0000020252,0.0000020250,0.0000020249,0.0000020247,0.0000020241, +0.0000020232,0.0000020216,0.0000020199,0.0000020183,0.0000020170, +0.0000020159,0.0000020150,0.0000020147,0.0000020149,0.0000020154, +0.0000020159,0.0000020169,0.0000020187,0.0000020217,0.0000020257, +0.0000020300,0.0000020342,0.0000020376,0.0000020395,0.0000020395, +0.0000020387,0.0000020367,0.0000020345,0.0000020332,0.0000020328, +0.0000020327,0.0000020328,0.0000020333,0.0000020339,0.0000020342, +0.0000020334,0.0000020308,0.0000020268,0.0000020218,0.0000020159, +0.0000020099,0.0000020042,0.0000019988,0.0000019938,0.0000019893, +0.0000019852,0.0000019812,0.0000019776,0.0000019743,0.0000019721, +0.0000019710,0.0000019708,0.0000019706,0.0000019716,0.0000019730, +0.0000019741,0.0000019758,0.0000019758,0.0000019751,0.0000019734, +0.0000019710,0.0000019677,0.0000019641,0.0000019608,0.0000019580, +0.0000019560,0.0000019545,0.0000019549,0.0000019552,0.0000019558, +0.0000019567,0.0000019577,0.0000019584,0.0000019583,0.0000019576, +0.0000019566,0.0000019553,0.0000019545,0.0000019539,0.0000019542, +0.0000019544,0.0000019541,0.0000019539,0.0000019538,0.0000019546, +0.0000019568,0.0000019603,0.0000019642,0.0000019682,0.0000019729, +0.0000019791,0.0000019874,0.0000019959,0.0000020023,0.0000020044, +0.0000020038,0.0000020017,0.0000020004,0.0000020010,0.0000020035, +0.0000020070,0.0000020105,0.0000020130,0.0000020144,0.0000020151, +0.0000020161,0.0000020178,0.0000020204,0.0000020239,0.0000020280, +0.0000020329,0.0000020383,0.0000020439,0.0000020495,0.0000020548, +0.0000020596,0.0000020636,0.0000020670,0.0000020696,0.0000020716, +0.0000020728,0.0000020736,0.0000020744,0.0000020751,0.0000020750, +0.0000020739,0.0000020722,0.0000020703,0.0000020693,0.0000020690, +0.0000020691,0.0000020688,0.0000020676,0.0000020654,0.0000020623, +0.0000020581,0.0000020534,0.0000020490,0.0000020451,0.0000020416, +0.0000020385,0.0000020355,0.0000020321,0.0000020284,0.0000020241, +0.0000020195,0.0000020152,0.0000020119,0.0000020100,0.0000020091, +0.0000020090,0.0000020093,0.0000020096,0.0000020094,0.0000020077, +0.0000020048,0.0000020009,0.0000019968,0.0000019924,0.0000019885, +0.0000019859,0.0000019850,0.0000019851,0.0000019863,0.0000019884, +0.0000019914,0.0000019950,0.0000019989,0.0000020028,0.0000020058, +0.0000020077,0.0000020079,0.0000020064,0.0000020044,0.0000020026, +0.0000020016,0.0000020013,0.0000020011,0.0000019999,0.0000019965, +0.0000019909,0.0000019841,0.0000019775,0.0000019725,0.0000019699, +0.0000019693,0.0000019697,0.0000019702,0.0000019707,0.0000019714, +0.0000019722,0.0000019725,0.0000019722,0.0000019714,0.0000019704, +0.0000019694,0.0000019689,0.0000019687,0.0000019685,0.0000019681, +0.0000019678,0.0000019672,0.0000019661,0.0000019641,0.0000019613, +0.0000019584,0.0000019556,0.0000019525,0.0000019489,0.0000019447, +0.0000019402,0.0000019353,0.0000019305,0.0000019263,0.0000019229, +0.0000019200,0.0000019177,0.0000019158,0.0000019148,0.0000019142, +0.0000019135,0.0000019128,0.0000019120,0.0000019111,0.0000019099, +0.0000019084,0.0000019065,0.0000019044,0.0000019025,0.0000019005, +0.0000018984,0.0000018965,0.0000018951,0.0000018946,0.0000018945, +0.0000018946,0.0000018952,0.0000018965,0.0000018995,0.0000019043, +0.0000019106,0.0000019180,0.0000019264,0.0000019351,0.0000019435, +0.0000019510,0.0000019570,0.0000019612,0.0000019636,0.0000019647, +0.0000019658,0.0000019674,0.0000019697,0.0000019730,0.0000019772, +0.0000019817,0.0000019862,0.0000019903,0.0000019938,0.0000019966, +0.0000019985,0.0000019993,0.0000019990,0.0000019974,0.0000019950, +0.0000019922,0.0000019895,0.0000019878,0.0000019870,0.0000019876, +0.0000019890,0.0000019911,0.0000019930,0.0000019946,0.0000019956, +0.0000019958,0.0000019950,0.0000019934,0.0000019910,0.0000019884, +0.0000019860,0.0000019841,0.0000019825,0.0000019811,0.0000019800, +0.0000019795,0.0000019797,0.0000019804,0.0000019810,0.0000019813, +0.0000019814,0.0000019805,0.0000019784,0.0000019745,0.0000019687, +0.0000019614,0.0000019533,0.0000019454,0.0000019392,0.0000019354, +0.0000019337,0.0000019343,0.0000019367,0.0000019407,0.0000019453, +0.0000019491,0.0000019507,0.0000019503,0.0000019492,0.0000019489, +0.0000019497,0.0000019514,0.0000019530,0.0000019535,0.0000019520, +0.0000019486,0.0000019436,0.0000019384,0.0000019336,0.0000019291, +0.0000019252,0.0000019222,0.0000019191,0.0000019151,0.0000019107, +0.0000019070,0.0000019045,0.0000019034,0.0000019041,0.0000019065, +0.0000019096,0.0000019113,0.0000019115,0.0000019119,0.0000019140, +0.0000019171,0.0000019199,0.0000019214,0.0000019206,0.0000019176, +0.0000019109,0.0000019036,0.0000018968,0.0000018899,0.0000018841, +0.0000018798,0.0000018752,0.0000018698,0.0000018649,0.0000018612, +0.0000018597,0.0000018604,0.0000018621,0.0000018641,0.0000018660, +0.0000018679,0.0000018698,0.0000018712,0.0000018721,0.0000018726, +0.0000018727,0.0000018720,0.0000018704,0.0000018686,0.0000018670, +0.0000018658,0.0000018651,0.0000018652,0.0000018658,0.0000018679, +0.0000018720,0.0000018778,0.0000018842,0.0000018901,0.0000018952, +0.0000018997,0.0000019040,0.0000019079,0.0000019113,0.0000019142, +0.0000019165,0.0000019179,0.0000019181,0.0000019172,0.0000019150, +0.0000019115,0.0000019066,0.0000018998,0.0000018913,0.0000018816, +0.0000018720,0.0000018619,0.0000018521,0.0000018441,0.0000018387, +0.0000018353,0.0000018330,0.0000018311,0.0000018293,0.0000018273, +0.0000018252,0.0000018236,0.0000018225,0.0000018217,0.0000018216, +0.0000018219,0.0000018227,0.0000018239,0.0000018246,0.0000018243, +0.0000018225,0.0000018198,0.0000018186,0.0000018189,0.0000018202, +0.0000018220,0.0000018239,0.0000018258,0.0000018267,0.0000018266, +0.0000018250,0.0000018215,0.0000018175,0.0000018132,0.0000018103, +0.0000018093,0.0000018108,0.0000018163,0.0000018217,0.0000018232, +0.0000018234,0.0000018246,0.0000018269,0.0000018286,0.0000018290, +0.0000018291,0.0000018286,0.0000018273,0.0000018261,0.0000018252, +0.0000018249,0.0000018255,0.0000018273,0.0000018298,0.0000018326, +0.0000018352,0.0000018373,0.0000018390,0.0000018397,0.0000018390, +0.0000018351,0.0000018277,0.0000018179,0.0000018062,0.0000017925, +0.0000017791,0.0000017694,0.0000017641,0.0000017616,0.0000017616, +0.0000017645,0.0000017684,0.0000017707,0.0000017711,0.0000017713, +0.0000017722,0.0000017733,0.0000017739,0.0000017736,0.0000017734, +0.0000017746,0.0000017780,0.0000017815,0.0000017829,0.0000017816, +0.0000017788,0.0000017761,0.0000017753,0.0000017768,0.0000017824, +0.0000017925,0.0000018054,0.0000018173,0.0000018254,0.0000018302, +0.0000018351,0.0000018425,0.0000018513,0.0000018581,0.0000018614, +0.0000018631,0.0000018662,0.0000018723,0.0000018816,0.0000018928, +0.0000019035,0.0000019118,0.0000019160,0.0000019165,0.0000019163, +0.0000019152,0.0000019130,0.0000019109,0.0000019096,0.0000019091, +0.0000019092,0.0000019099,0.0000019109,0.0000019120,0.0000019134, +0.0000019149,0.0000019164,0.0000019174,0.0000019179,0.0000019178, +0.0000019174,0.0000019157,0.0000019131,0.0000019055,0.0000018967, +0.0000018849,0.0000018698,0.0000018538,0.0000018382,0.0000018240, +0.0000018125,0.0000018059,0.0000018049,0.0000018075,0.0000018115, +0.0000018134,0.0000018137,0.0000018111,0.0000018070,0.0000018029, +0.0000017992,0.0000017959,0.0000017932,0.0000017918,0.0000017907, +0.0000017896,0.0000017891,0.0000017893,0.0000017899,0.0000017902, +0.0000017897,0.0000017875,0.0000017835,0.0000017784,0.0000017734, +0.0000017697,0.0000017672,0.0000017654,0.0000017649,0.0000017648, +0.0000017652,0.0000017662,0.0000017675,0.0000017691,0.0000017709, +0.0000017737,0.0000017780,0.0000017839,0.0000017915,0.0000018006, +0.0000018110,0.0000018225,0.0000018345,0.0000018466,0.0000018580, +0.0000018682,0.0000018768,0.0000018830,0.0000018871,0.0000018880, +0.0000018873,0.0000018858,0.0000018833,0.0000018819,0.0000018822, +0.0000018853,0.0000018915,0.0000018988,0.0000019058,0.0000019109, +0.0000019138,0.0000019141,0.0000019140,0.0000019138,0.0000019136, +0.0000019129,0.0000019113,0.0000019087,0.0000019054,0.0000019020, +0.0000018992,0.0000018975,0.0000018966,0.0000018969,0.0000018982, +0.0000019006,0.0000019034,0.0000019064,0.0000019099,0.0000019143, +0.0000019194,0.0000019249,0.0000019303,0.0000019350,0.0000019381, +0.0000019397,0.0000019388,0.0000019382,0.0000019367,0.0000019348, +0.0000019332,0.0000019314,0.0000019301,0.0000019289,0.0000019279, +0.0000019269,0.0000019257,0.0000019245,0.0000019232,0.0000019217, +0.0000019201,0.0000019183,0.0000019163,0.0000019144,0.0000019122, +0.0000019099,0.0000019078,0.0000019061,0.0000019051,0.0000019045, +0.0000019041,0.0000019036,0.0000019031,0.0000019027,0.0000019021, +0.0000019013,0.0000019005,0.0000018995,0.0000018984,0.0000018972, +0.0000018961,0.0000018950,0.0000018939,0.0000018930,0.0000018919, +0.0000018903,0.0000018884,0.0000018866,0.0000018852,0.0000018842, +0.0000018833,0.0000018826,0.0000018821,0.0000018819,0.0000018818, +0.0000018818,0.0000018817,0.0000018813,0.0000018809,0.0000018805, +0.0000018800,0.0000018792,0.0000018782,0.0000018771,0.0000018759, +0.0000018746,0.0000018733,0.0000018718,0.0000018702,0.0000018688, +0.0000018678,0.0000018670,0.0000018664,0.0000018657,0.0000018648, +0.0000018638,0.0000018629,0.0000018623,0.0000018622,0.0000018622, +0.0000018618,0.0000018613,0.0000018605,0.0000018595,0.0000018583, +0.0000018571,0.0000018562,0.0000018558,0.0000018556,0.0000018556, +0.0000018559,0.0000018562,0.0000018564,0.0000018562,0.0000018556, +0.0000018548,0.0000018550,0.0000018535,0.0000018519,0.0000018506, +0.0000018502,0.0000018512,0.0000018534,0.0000018561,0.0000018584, +0.0000018600,0.0000018609,0.0000018617,0.0000018629,0.0000018645, +0.0000018670,0.0000018709,0.0000018771,0.0000018853,0.0000018941, +0.0000019006,0.0000019036,0.0000019034,0.0000019001,0.0000018953, +0.0000018927,0.0000018927,0.0000018936,0.0000018937,0.0000018929, +0.0000018926,0.0000018935,0.0000018955,0.0000018968,0.0000018966, +0.0000018959,0.0000018958,0.0000018973,0.0000019006,0.0000019051, +0.0000019098,0.0000019144,0.0000019187,0.0000019227,0.0000019261, +0.0000019290,0.0000019315,0.0000019334,0.0000019348,0.0000019356, +0.0000019359,0.0000019358,0.0000019355,0.0000019350,0.0000019343, +0.0000019339,0.0000019337,0.0000019340,0.0000019344,0.0000019347, +0.0000019346,0.0000019339,0.0000019329,0.0000019328,0.0000019328, +0.0000019329,0.0000019329,0.0000019327,0.0000019326,0.0000019326, +0.0000019325,0.0000019321,0.0000019320,0.0000019322,0.0000019325, +0.0000019329,0.0000019334,0.0000019338,0.0000019341,0.0000019339, +0.0000019333,0.0000019324,0.0000019308,0.0000019285,0.0000019251, +0.0000019207,0.0000019156,0.0000019098,0.0000019036,0.0000018972, +0.0000018914,0.0000018867,0.0000018837,0.0000018820,0.0000018806, +0.0000018790,0.0000018772,0.0000018752,0.0000018732,0.0000018725, +0.0000018725,0.0000018739,0.0000018772,0.0000018816,0.0000018858, +0.0000018884,0.0000018888,0.0000018876,0.0000018846,0.0000018801, +0.0000018751,0.0000018707,0.0000018674,0.0000018654,0.0000018637, +0.0000018628,0.0000018631,0.0000018640,0.0000018647,0.0000018652, +0.0000018663,0.0000018689,0.0000018735,0.0000018796,0.0000018867, +0.0000018930,0.0000018976,0.0000019006,0.0000019016,0.0000019007, +0.0000019006,0.0000019000,0.0000018994,0.0000018983,0.0000018962, +0.0000018929,0.0000018891,0.0000018854,0.0000018820,0.0000018802, +0.0000018788,0.0000018783,0.0000018784,0.0000018788,0.0000018792, +0.0000018792,0.0000018791,0.0000018793,0.0000018798,0.0000018806, +0.0000018821,0.0000018840,0.0000018863,0.0000018883,0.0000018899, +0.0000018914,0.0000018929,0.0000018940,0.0000018947,0.0000018948, +0.0000018946,0.0000018940,0.0000018932,0.0000018922,0.0000018906, +0.0000018886,0.0000018866,0.0000018846,0.0000018831,0.0000018822, +0.0000018817,0.0000018815,0.0000018816,0.0000018823,0.0000018834, +0.0000018846,0.0000018859,0.0000018874,0.0000018890,0.0000018905, +0.0000018920,0.0000018936,0.0000018957,0.0000018979,0.0000019000, +0.0000019019,0.0000019038,0.0000019058,0.0000019077,0.0000019099, +0.0000019124,0.0000019149,0.0000019172,0.0000019192,0.0000019208, +0.0000019222,0.0000019235,0.0000019246,0.0000019256,0.0000019269, +0.0000019284,0.0000019301,0.0000019317,0.0000019334,0.0000019353, +0.0000019376,0.0000019407,0.0000019445,0.0000019491,0.0000019546, +0.0000019610,0.0000019681,0.0000019757,0.0000019833,0.0000019909, +0.0000019979,0.0000020040,0.0000020090,0.0000020131,0.0000020161, +0.0000020184,0.0000020198,0.0000020202,0.0000020202,0.0000020209, +0.0000020225,0.0000020249,0.0000020273,0.0000020288,0.0000020287, +0.0000020272,0.0000020266,0.0000020288,0.0000020351,0.0000020418, +0.0000020453,0.0000020458,0.0000020463,0.0000020495,0.0000020539, +0.0000020561,0.0000020558,0.0000020549,0.0000020537,0.0000020519, +0.0000020497,0.0000020480,0.0000020476,0.0000020482,0.0000020500, +0.0000020525,0.0000020553,0.0000020580,0.0000020606,0.0000020631, +0.0000020656,0.0000020677,0.0000020691,0.0000020699,0.0000020701, +0.0000020699,0.0000020694,0.0000020686,0.0000020674,0.0000020655, +0.0000020635,0.0000020614,0.0000020593,0.0000020572,0.0000020551, +0.0000020530,0.0000020509,0.0000020494,0.0000020484,0.0000020475, +0.0000020468,0.0000020467,0.0000020468,0.0000020471,0.0000020474, +0.0000020479,0.0000020484,0.0000020492,0.0000020502,0.0000020513, +0.0000020520,0.0000020521,0.0000020519,0.0000020516,0.0000020507, +0.0000020498,0.0000020487,0.0000020471,0.0000020447,0.0000020418, +0.0000020386,0.0000020351,0.0000020317,0.0000020287,0.0000020260, +0.0000020239,0.0000020228,0.0000020228,0.0000020249,0.0000020282, +0.0000020316,0.0000020335,0.0000020336,0.0000020329,0.0000020320, +0.0000020318,0.0000020321,0.0000020338,0.0000020379,0.0000020427, +0.0000020443,0.0000020430,0.0000020422,0.0000020460,0.0000020509, +0.0000020496,0.0000020383,0.0000020234,0.0000020155,0.0000020148, +0.0000020172,0.0000020189,0.0000020186,0.0000020179,0.0000020159, +0.0000020101,0.0000020027,0.0000019991,0.0000020017,0.0000020142, +0.0000020291,0.0000020339,0.0000020325,0.0000020312,0.0000020274, +0.0000020150,0.0000020030,0.0000020060,0.0000020266,0.0000020535, +0.0000020705,0.0000020750,0.0000020773,0.0000020812,0.0000020842, +0.0000020869,0.0000020917,0.0000020994,0.0000021083,0.0000021152, +0.0000021181,0.0000021192,0.0000021221,0.0000021278,0.0000021339, +0.0000021381,0.0000021397,0.0000021397,0.0000021393,0.0000021389, +0.0000021390,0.0000021393,0.0000021393,0.0000021390,0.0000021386, +0.0000021381,0.0000021371,0.0000021359,0.0000021345,0.0000021331, +0.0000021316,0.0000021303,0.0000021295,0.0000021292,0.0000021291, +0.0000021290,0.0000021288,0.0000021282,0.0000021272,0.0000021254, +0.0000021228,0.0000021196,0.0000021161,0.0000021132,0.0000021113, +0.0000021101,0.0000021092,0.0000021085,0.0000021079,0.0000021073, +0.0000021063,0.0000021049,0.0000021029,0.0000021005,0.0000020980, +0.0000020955,0.0000020934,0.0000020920,0.0000020917,0.0000020920, +0.0000020928,0.0000020936,0.0000020946,0.0000020958,0.0000020971, +0.0000020983,0.0000020990,0.0000020992,0.0000020991,0.0000020987, +0.0000020984,0.0000020982,0.0000020980,0.0000020976,0.0000020970, +0.0000020960,0.0000020950,0.0000020939,0.0000020931,0.0000020923, +0.0000020914,0.0000020906,0.0000020899,0.0000020896,0.0000020895, +0.0000020892,0.0000020886,0.0000020876,0.0000020865,0.0000020854, +0.0000020842,0.0000020827,0.0000020811,0.0000020796,0.0000020785, +0.0000020778,0.0000020772,0.0000020765,0.0000020762,0.0000020764, +0.0000020767,0.0000020766,0.0000020767,0.0000020772,0.0000020781, +0.0000020789,0.0000020800,0.0000020814,0.0000020828,0.0000020839, +0.0000020847,0.0000020851,0.0000020851,0.0000020849,0.0000020847, +0.0000020850,0.0000020857,0.0000020866,0.0000020875,0.0000020886, +0.0000020895,0.0000020904,0.0000020916,0.0000020924,0.0000020931, +0.0000020936,0.0000020941,0.0000020944,0.0000020946,0.0000020945, +0.0000020945,0.0000020941,0.0000020934,0.0000020922,0.0000020903, +0.0000020877,0.0000020849,0.0000020821,0.0000020793,0.0000020764, +0.0000020739,0.0000020723,0.0000020715,0.0000020713,0.0000020715, +0.0000020723,0.0000020730,0.0000020731,0.0000020730,0.0000020729, +0.0000020716,0.0000020703,0.0000020682,0.0000020658,0.0000020633, +0.0000020611,0.0000020592,0.0000020577,0.0000020565,0.0000020552, +0.0000020543,0.0000020531,0.0000020517,0.0000020502,0.0000020489, +0.0000020483,0.0000020482,0.0000020488,0.0000020503,0.0000020524, +0.0000020543,0.0000020560,0.0000020573,0.0000020585,0.0000020596, +0.0000020608,0.0000020622,0.0000020633,0.0000020639,0.0000020643, +0.0000020648,0.0000020656,0.0000020669,0.0000020685,0.0000020703, +0.0000020722,0.0000020739,0.0000020751,0.0000020756,0.0000020754, +0.0000020743,0.0000020726,0.0000020706,0.0000020687,0.0000020673, +0.0000020663,0.0000020653,0.0000020645,0.0000020638,0.0000020631, +0.0000020621,0.0000020615,0.0000020620,0.0000020626,0.0000020628, +0.0000020628,0.0000020629,0.0000020633,0.0000020638,0.0000020643, +0.0000020651,0.0000020660,0.0000020668,0.0000020675,0.0000020679, +0.0000020682,0.0000020684,0.0000020686,0.0000020691,0.0000020698, +0.0000020703,0.0000020706,0.0000020708,0.0000020709,0.0000020705, +0.0000020700,0.0000020695,0.0000020693,0.0000020696,0.0000020710, +0.0000020730,0.0000020749,0.0000020768,0.0000020786,0.0000020804, +0.0000020820,0.0000020834,0.0000020847,0.0000020857,0.0000020861, +0.0000020856,0.0000020847,0.0000020828,0.0000020800,0.0000020764, +0.0000020729,0.0000020702,0.0000020685,0.0000020676,0.0000020672, +0.0000020669,0.0000020662,0.0000020649,0.0000020632,0.0000020610, +0.0000020586,0.0000020560,0.0000020533,0.0000020506,0.0000020479, +0.0000020463,0.0000020456,0.0000020467,0.0000020491,0.0000020526, +0.0000020565,0.0000020612,0.0000020665,0.0000020723,0.0000020780, +0.0000020827,0.0000020862,0.0000020883,0.0000020896,0.0000020904, +0.0000020909,0.0000020920,0.0000020941,0.0000020963,0.0000020982, +0.0000020998,0.0000021007,0.0000021009,0.0000021012,0.0000021019, +0.0000021030,0.0000021042,0.0000021050,0.0000021055,0.0000021052, +0.0000021038,0.0000021019,0.0000020991,0.0000020969,0.0000020954, +0.0000020947,0.0000020945,0.0000020949,0.0000020959,0.0000020968, +0.0000020970,0.0000020967,0.0000020956,0.0000020941,0.0000020919, +0.0000020891,0.0000020860,0.0000020831,0.0000020799,0.0000020766, +0.0000020737,0.0000020720,0.0000020711,0.0000020705,0.0000020699, +0.0000020693,0.0000020686,0.0000020677,0.0000020668,0.0000020657, +0.0000020640,0.0000020613,0.0000020577,0.0000020540,0.0000020508, +0.0000020485,0.0000020463,0.0000020455,0.0000020445,0.0000020432, +0.0000020419,0.0000020403,0.0000020393,0.0000020394,0.0000020401, +0.0000020407,0.0000020411,0.0000020413,0.0000020413,0.0000020411, +0.0000020404,0.0000020391,0.0000020369,0.0000020340,0.0000020308, +0.0000020275,0.0000020248,0.0000020220,0.0000020195,0.0000020180, +0.0000020172,0.0000020167,0.0000020161,0.0000020153,0.0000020143, +0.0000020129,0.0000020112,0.0000020093,0.0000020074,0.0000020058, +0.0000020047,0.0000020042,0.0000020038,0.0000020031,0.0000020027, +0.0000020032,0.0000020046,0.0000020067,0.0000020094,0.0000020124, +0.0000020152,0.0000020177,0.0000020196,0.0000020206,0.0000020205, +0.0000020194,0.0000020175,0.0000020150,0.0000020123,0.0000020100, +0.0000020089,0.0000020079,0.0000020082,0.0000020091,0.0000020107, +0.0000020122,0.0000020133,0.0000020144,0.0000020154,0.0000020159, +0.0000020161,0.0000020160,0.0000020160,0.0000020165,0.0000020177, +0.0000020196,0.0000020218,0.0000020235,0.0000020248,0.0000020255, +0.0000020259,0.0000020262,0.0000020261,0.0000020257,0.0000020250, +0.0000020239,0.0000020223,0.0000020207,0.0000020186,0.0000020166, +0.0000020152,0.0000020139,0.0000020127,0.0000020117,0.0000020109, +0.0000020103,0.0000020097,0.0000020098,0.0000020108,0.0000020129, +0.0000020163,0.0000020207,0.0000020255,0.0000020301,0.0000020340, +0.0000020367,0.0000020377,0.0000020372,0.0000020355,0.0000020347, +0.0000020347,0.0000020351,0.0000020357,0.0000020365,0.0000020374, +0.0000020381,0.0000020383,0.0000020374,0.0000020353,0.0000020319, +0.0000020273,0.0000020215,0.0000020152,0.0000020086,0.0000020023, +0.0000019966,0.0000019918,0.0000019879,0.0000019846,0.0000019819, +0.0000019794,0.0000019773,0.0000019751,0.0000019736,0.0000019725, +0.0000019723,0.0000019725,0.0000019742,0.0000019760,0.0000019775, +0.0000019787,0.0000019800,0.0000019797,0.0000019787,0.0000019764, +0.0000019733,0.0000019697,0.0000019657,0.0000019621,0.0000019590, +0.0000019562,0.0000019553,0.0000019535,0.0000019529,0.0000019530, +0.0000019528,0.0000019524,0.0000019520,0.0000019516,0.0000019519, +0.0000019529,0.0000019541,0.0000019543,0.0000019544,0.0000019539, +0.0000019535,0.0000019539,0.0000019562,0.0000019600,0.0000019644, +0.0000019685,0.0000019724,0.0000019774,0.0000019845,0.0000019926, +0.0000020000,0.0000020036,0.0000020035,0.0000020018,0.0000019998, +0.0000019990,0.0000020001,0.0000020026,0.0000020055,0.0000020079, +0.0000020096,0.0000020108,0.0000020124,0.0000020150,0.0000020185, +0.0000020225,0.0000020268,0.0000020313,0.0000020362,0.0000020415, +0.0000020467,0.0000020513,0.0000020553,0.0000020585,0.0000020611, +0.0000020629,0.0000020641,0.0000020651,0.0000020661,0.0000020666, +0.0000020662,0.0000020649,0.0000020631,0.0000020616,0.0000020607, +0.0000020606,0.0000020610,0.0000020611,0.0000020602,0.0000020579, +0.0000020543,0.0000020493,0.0000020439,0.0000020388,0.0000020342, +0.0000020304,0.0000020274,0.0000020247,0.0000020220,0.0000020193, +0.0000020163,0.0000020133,0.0000020108,0.0000020097,0.0000020094, +0.0000020094,0.0000020093,0.0000020090,0.0000020076,0.0000020047, +0.0000020002,0.0000019949,0.0000019898,0.0000019852,0.0000019812, +0.0000019786,0.0000019779,0.0000019787,0.0000019812,0.0000019847, +0.0000019888,0.0000019930,0.0000019971,0.0000020009,0.0000020034, +0.0000020044,0.0000020041,0.0000020021,0.0000020000,0.0000019988, +0.0000019986,0.0000019991,0.0000019994,0.0000019985,0.0000019955, +0.0000019903,0.0000019839,0.0000019775,0.0000019721,0.0000019685, +0.0000019668,0.0000019665,0.0000019667,0.0000019670,0.0000019673, +0.0000019679,0.0000019684,0.0000019684,0.0000019679,0.0000019674, +0.0000019668,0.0000019664,0.0000019663,0.0000019665,0.0000019667, +0.0000019671,0.0000019676,0.0000019676,0.0000019671,0.0000019662, +0.0000019647,0.0000019625,0.0000019602,0.0000019569,0.0000019528, +0.0000019483,0.0000019435,0.0000019383,0.0000019330,0.0000019281, +0.0000019240,0.0000019204,0.0000019174,0.0000019150,0.0000019138, +0.0000019132,0.0000019126,0.0000019122,0.0000019119,0.0000019115, +0.0000019108,0.0000019099,0.0000019083,0.0000019061,0.0000019038, +0.0000019012,0.0000018984,0.0000018958,0.0000018943,0.0000018933, +0.0000018923,0.0000018916,0.0000018912,0.0000018913,0.0000018926, +0.0000018957,0.0000019002,0.0000019059,0.0000019124,0.0000019197, +0.0000019277,0.0000019360,0.0000019439,0.0000019509,0.0000019564, +0.0000019606,0.0000019638,0.0000019666,0.0000019693,0.0000019721, +0.0000019746,0.0000019772,0.0000019800,0.0000019831,0.0000019864, +0.0000019897,0.0000019927,0.0000019948,0.0000019955,0.0000019948, +0.0000019930,0.0000019907,0.0000019883,0.0000019865,0.0000019853, +0.0000019854,0.0000019863,0.0000019877,0.0000019892,0.0000019906, +0.0000019916,0.0000019918,0.0000019913,0.0000019901,0.0000019885, +0.0000019867,0.0000019850,0.0000019838,0.0000019826,0.0000019812, +0.0000019800,0.0000019792,0.0000019792,0.0000019797,0.0000019800, +0.0000019803,0.0000019803,0.0000019795,0.0000019776,0.0000019743, +0.0000019690,0.0000019619,0.0000019535,0.0000019449,0.0000019376, +0.0000019329,0.0000019303,0.0000019303,0.0000019324,0.0000019363, +0.0000019410,0.0000019454,0.0000019478,0.0000019479,0.0000019475, +0.0000019474,0.0000019484,0.0000019499,0.0000019510,0.0000019511, +0.0000019494,0.0000019462,0.0000019416,0.0000019370,0.0000019329, +0.0000019288,0.0000019248,0.0000019217,0.0000019188,0.0000019147, +0.0000019096,0.0000019048,0.0000019020,0.0000019005,0.0000019013, +0.0000019044,0.0000019082,0.0000019106,0.0000019112,0.0000019114, +0.0000019127,0.0000019154,0.0000019183,0.0000019199,0.0000019195, +0.0000019164,0.0000019102,0.0000019035,0.0000018967,0.0000018900, +0.0000018845,0.0000018796,0.0000018736,0.0000018672,0.0000018614, +0.0000018580,0.0000018577,0.0000018590,0.0000018616,0.0000018646, +0.0000018676,0.0000018702,0.0000018719,0.0000018727,0.0000018729, +0.0000018729,0.0000018723,0.0000018710,0.0000018694,0.0000018681, +0.0000018670,0.0000018659,0.0000018654,0.0000018654,0.0000018662, +0.0000018684,0.0000018719,0.0000018763,0.0000018807,0.0000018844, +0.0000018878,0.0000018913,0.0000018949,0.0000018988,0.0000019025, +0.0000019053,0.0000019071,0.0000019078,0.0000019075,0.0000019062, +0.0000019041,0.0000019000,0.0000018931,0.0000018844,0.0000018750, +0.0000018652,0.0000018543,0.0000018444,0.0000018378,0.0000018340, +0.0000018313,0.0000018289,0.0000018267,0.0000018251,0.0000018235, +0.0000018214,0.0000018194,0.0000018177,0.0000018166,0.0000018165, +0.0000018170,0.0000018179,0.0000018189,0.0000018198,0.0000018202, +0.0000018191,0.0000018171,0.0000018166,0.0000018173,0.0000018191, +0.0000018215,0.0000018239,0.0000018264,0.0000018280,0.0000018281, +0.0000018268,0.0000018239,0.0000018196,0.0000018142,0.0000018096, +0.0000018062,0.0000018046,0.0000018063,0.0000018127,0.0000018193, +0.0000018211,0.0000018217,0.0000018239,0.0000018268,0.0000018285, +0.0000018292,0.0000018293,0.0000018285,0.0000018273,0.0000018261, +0.0000018254,0.0000018258,0.0000018276,0.0000018305,0.0000018333, +0.0000018358,0.0000018379,0.0000018392,0.0000018395,0.0000018375, +0.0000018323,0.0000018245,0.0000018144,0.0000018019,0.0000017885, +0.0000017778,0.0000017709,0.0000017672,0.0000017663,0.0000017684, +0.0000017724,0.0000017751,0.0000017753,0.0000017747,0.0000017750, +0.0000017757,0.0000017762,0.0000017758,0.0000017752,0.0000017755, +0.0000017781,0.0000017817,0.0000017833,0.0000017828,0.0000017802, +0.0000017772,0.0000017761,0.0000017785,0.0000017862,0.0000017982, +0.0000018110,0.0000018202,0.0000018253,0.0000018301,0.0000018382, +0.0000018485,0.0000018560,0.0000018589,0.0000018610,0.0000018650, +0.0000018721,0.0000018820,0.0000018942,0.0000019061,0.0000019142, +0.0000019165,0.0000019162,0.0000019134,0.0000019090,0.0000019050, +0.0000019016,0.0000018991,0.0000018977,0.0000018973,0.0000018975, +0.0000018982,0.0000018995,0.0000019010,0.0000019025,0.0000019040, +0.0000019053,0.0000019063,0.0000019074,0.0000019085,0.0000019097, +0.0000019116,0.0000019140,0.0000019156,0.0000019162,0.0000019149, +0.0000019097,0.0000018977,0.0000018823,0.0000018641,0.0000018465, +0.0000018305,0.0000018171,0.0000018082,0.0000018060,0.0000018087, +0.0000018129,0.0000018158,0.0000018165,0.0000018164,0.0000018155, +0.0000018142,0.0000018129,0.0000018113,0.0000018094,0.0000018071, +0.0000018041,0.0000018007,0.0000017966,0.0000017922,0.0000017889, +0.0000017863,0.0000017850,0.0000017844,0.0000017830,0.0000017797, +0.0000017751,0.0000017711,0.0000017689,0.0000017679,0.0000017671, +0.0000017665,0.0000017668,0.0000017673,0.0000017683,0.0000017694, +0.0000017704,0.0000017719,0.0000017744,0.0000017780,0.0000017828, +0.0000017889,0.0000017966,0.0000018060,0.0000018168,0.0000018286, +0.0000018407,0.0000018526,0.0000018635,0.0000018728,0.0000018796, +0.0000018838,0.0000018854,0.0000018851,0.0000018839,0.0000018822, +0.0000018820,0.0000018838,0.0000018879,0.0000018944,0.0000019019, +0.0000019078,0.0000019114,0.0000019130,0.0000019125,0.0000019120, +0.0000019115,0.0000019106,0.0000019093,0.0000019070,0.0000019036, +0.0000019001,0.0000018969,0.0000018950,0.0000018940,0.0000018947, +0.0000018961,0.0000018984,0.0000019016,0.0000019050,0.0000019085, +0.0000019124,0.0000019168,0.0000019215,0.0000019261,0.0000019303, +0.0000019336,0.0000019357,0.0000019367,0.0000019353,0.0000019347, +0.0000019325,0.0000019298,0.0000019277,0.0000019254,0.0000019236, +0.0000019219,0.0000019202,0.0000019186,0.0000019170,0.0000019155, +0.0000019137,0.0000019118,0.0000019098,0.0000019076,0.0000019054, +0.0000019031,0.0000019011,0.0000018996,0.0000018987,0.0000018983, +0.0000018983,0.0000018984,0.0000018987,0.0000018987,0.0000018984, +0.0000018979,0.0000018973,0.0000018965,0.0000018955,0.0000018944, +0.0000018932,0.0000018919,0.0000018907,0.0000018895,0.0000018880, +0.0000018859,0.0000018837,0.0000018818,0.0000018803,0.0000018790, +0.0000018780,0.0000018771,0.0000018764,0.0000018759,0.0000018757, +0.0000018755,0.0000018753,0.0000018752,0.0000018749,0.0000018747, +0.0000018745,0.0000018741,0.0000018735,0.0000018728,0.0000018721, +0.0000018712,0.0000018700,0.0000018685,0.0000018670,0.0000018656, +0.0000018647,0.0000018639,0.0000018633,0.0000018624,0.0000018613, +0.0000018601,0.0000018592,0.0000018587,0.0000018584,0.0000018582, +0.0000018579,0.0000018576,0.0000018571,0.0000018567,0.0000018562, +0.0000018555,0.0000018550,0.0000018547,0.0000018548,0.0000018552, +0.0000018558,0.0000018564,0.0000018567,0.0000018567,0.0000018561, +0.0000018561,0.0000018548,0.0000018530,0.0000018511,0.0000018491, +0.0000018477,0.0000018474,0.0000018483,0.0000018502,0.0000018523, +0.0000018540,0.0000018550,0.0000018557,0.0000018567,0.0000018581, +0.0000018599,0.0000018626,0.0000018672,0.0000018748,0.0000018845, +0.0000018943,0.0000019012,0.0000019037,0.0000019026,0.0000018987, +0.0000018946,0.0000018929,0.0000018931,0.0000018934,0.0000018932, +0.0000018927,0.0000018929,0.0000018944,0.0000018963,0.0000018974, +0.0000018972,0.0000018969,0.0000018973,0.0000018990,0.0000019019, +0.0000019058,0.0000019101,0.0000019143,0.0000019179,0.0000019211, +0.0000019239,0.0000019263,0.0000019284,0.0000019301,0.0000019312, +0.0000019315,0.0000019311,0.0000019302,0.0000019291,0.0000019280, +0.0000019268,0.0000019255,0.0000019245,0.0000019241,0.0000019248, +0.0000019265,0.0000019289,0.0000019311,0.0000019321,0.0000019325, +0.0000019324,0.0000019323,0.0000019322,0.0000019321,0.0000019317, +0.0000019311,0.0000019308,0.0000019308,0.0000019313,0.0000019320, +0.0000019330,0.0000019340,0.0000019346,0.0000019353,0.0000019358, +0.0000019357,0.0000019353,0.0000019342,0.0000019322,0.0000019294, +0.0000019255,0.0000019206,0.0000019149,0.0000019086,0.0000019022, +0.0000018958,0.0000018902,0.0000018857,0.0000018825,0.0000018807, +0.0000018800,0.0000018797,0.0000018792,0.0000018782,0.0000018763, +0.0000018749,0.0000018747,0.0000018757,0.0000018784,0.0000018818, +0.0000018852,0.0000018869,0.0000018866,0.0000018842,0.0000018801, +0.0000018749,0.0000018700,0.0000018662,0.0000018635,0.0000018619, +0.0000018613,0.0000018615,0.0000018616,0.0000018614,0.0000018607, +0.0000018604,0.0000018611,0.0000018635,0.0000018678,0.0000018734, +0.0000018798,0.0000018865,0.0000018921,0.0000018963,0.0000018993, +0.0000019001,0.0000019003,0.0000019014,0.0000019020,0.0000019011, +0.0000018988,0.0000018951,0.0000018902,0.0000018847,0.0000018801, +0.0000018781,0.0000018770,0.0000018769,0.0000018769,0.0000018766, +0.0000018762,0.0000018761,0.0000018764,0.0000018773,0.0000018790, +0.0000018811,0.0000018833,0.0000018852,0.0000018866,0.0000018877, +0.0000018887,0.0000018894,0.0000018896,0.0000018895,0.0000018890, +0.0000018882,0.0000018872,0.0000018859,0.0000018842,0.0000018821, +0.0000018802,0.0000018784,0.0000018769,0.0000018758,0.0000018751, +0.0000018746,0.0000018743,0.0000018744,0.0000018747,0.0000018751, +0.0000018757,0.0000018765,0.0000018774,0.0000018783,0.0000018791, +0.0000018802,0.0000018816,0.0000018832,0.0000018848,0.0000018866, +0.0000018884,0.0000018902,0.0000018922,0.0000018945,0.0000018973, +0.0000019002,0.0000019032,0.0000019060,0.0000019087,0.0000019112, +0.0000019134,0.0000019153,0.0000019171,0.0000019188,0.0000019202, +0.0000019212,0.0000019219,0.0000019224,0.0000019230,0.0000019239, +0.0000019254,0.0000019273,0.0000019300,0.0000019339,0.0000019392, +0.0000019459,0.0000019537,0.0000019622,0.0000019716,0.0000019814, +0.0000019907,0.0000019989,0.0000020057,0.0000020111,0.0000020150, +0.0000020176,0.0000020186,0.0000020184,0.0000020182,0.0000020187, +0.0000020202,0.0000020224,0.0000020244,0.0000020250,0.0000020242, +0.0000020230,0.0000020241,0.0000020293,0.0000020363,0.0000020412, +0.0000020424,0.0000020429,0.0000020449,0.0000020485,0.0000020516, +0.0000020526,0.0000020523,0.0000020514,0.0000020500,0.0000020483, +0.0000020472,0.0000020471,0.0000020480,0.0000020498,0.0000020521, +0.0000020545,0.0000020569,0.0000020593,0.0000020616,0.0000020638, +0.0000020656,0.0000020671,0.0000020681,0.0000020685,0.0000020685, +0.0000020683,0.0000020678,0.0000020668,0.0000020655,0.0000020640, +0.0000020622,0.0000020604,0.0000020585,0.0000020566,0.0000020546, +0.0000020526,0.0000020510,0.0000020500,0.0000020494,0.0000020491, +0.0000020491,0.0000020493,0.0000020498,0.0000020502,0.0000020506, +0.0000020511,0.0000020518,0.0000020528,0.0000020537,0.0000020543, +0.0000020544,0.0000020542,0.0000020534,0.0000020521,0.0000020504, +0.0000020484,0.0000020463,0.0000020439,0.0000020414,0.0000020386, +0.0000020353,0.0000020318,0.0000020284,0.0000020255,0.0000020232, +0.0000020216,0.0000020212,0.0000020225,0.0000020253,0.0000020285, +0.0000020308,0.0000020317,0.0000020317,0.0000020314,0.0000020314, +0.0000020317,0.0000020326,0.0000020358,0.0000020408,0.0000020426, +0.0000020413,0.0000020405,0.0000020449,0.0000020505,0.0000020482, +0.0000020353,0.0000020207,0.0000020135,0.0000020132,0.0000020156, +0.0000020168,0.0000020166,0.0000020161,0.0000020135,0.0000020070, +0.0000020007,0.0000019993,0.0000020039,0.0000020184,0.0000020321, +0.0000020348,0.0000020331,0.0000020322,0.0000020280,0.0000020142, +0.0000020052,0.0000020123,0.0000020342,0.0000020598,0.0000020744, +0.0000020776,0.0000020798,0.0000020834,0.0000020860,0.0000020882, +0.0000020920,0.0000020983,0.0000021065,0.0000021141,0.0000021184, +0.0000021201,0.0000021219,0.0000021254,0.0000021298,0.0000021338, +0.0000021364,0.0000021374,0.0000021373,0.0000021368,0.0000021367, +0.0000021369,0.0000021368,0.0000021367,0.0000021369,0.0000021367, +0.0000021362,0.0000021357,0.0000021351,0.0000021342,0.0000021333, +0.0000021326,0.0000021321,0.0000021315,0.0000021306,0.0000021296, +0.0000021284,0.0000021269,0.0000021248,0.0000021224,0.0000021198, +0.0000021168,0.0000021139,0.0000021114,0.0000021090,0.0000021068, +0.0000021048,0.0000021027,0.0000021005,0.0000020985,0.0000020967, +0.0000020949,0.0000020929,0.0000020910,0.0000020892,0.0000020876, +0.0000020867,0.0000020868,0.0000020877,0.0000020889,0.0000020901, +0.0000020910,0.0000020921,0.0000020932,0.0000020942,0.0000020950, +0.0000020956,0.0000020959,0.0000020961,0.0000020962,0.0000020964, +0.0000020966,0.0000020966,0.0000020964,0.0000020958,0.0000020950, +0.0000020942,0.0000020936,0.0000020931,0.0000020925,0.0000020919, +0.0000020915,0.0000020913,0.0000020911,0.0000020906,0.0000020896, +0.0000020885,0.0000020875,0.0000020866,0.0000020855,0.0000020841, +0.0000020824,0.0000020808,0.0000020794,0.0000020784,0.0000020775, +0.0000020767,0.0000020762,0.0000020759,0.0000020754,0.0000020744, +0.0000020734,0.0000020726,0.0000020720,0.0000020716,0.0000020715, +0.0000020716,0.0000020715,0.0000020725,0.0000020735,0.0000020743, +0.0000020750,0.0000020757,0.0000020768,0.0000020783,0.0000020802, +0.0000020823,0.0000020845,0.0000020867,0.0000020886,0.0000020902, +0.0000020918,0.0000020929,0.0000020937,0.0000020942,0.0000020945, +0.0000020946,0.0000020945,0.0000020944,0.0000020940,0.0000020933, +0.0000020920,0.0000020903,0.0000020881,0.0000020858,0.0000020832, +0.0000020808,0.0000020779,0.0000020748,0.0000020724,0.0000020700, +0.0000020687,0.0000020681,0.0000020683,0.0000020688,0.0000020694, +0.0000020700,0.0000020705,0.0000020707,0.0000020702,0.0000020691, +0.0000020673,0.0000020649,0.0000020624,0.0000020600,0.0000020581, +0.0000020565,0.0000020548,0.0000020534,0.0000020519,0.0000020502, +0.0000020484,0.0000020466,0.0000020454,0.0000020452,0.0000020453, +0.0000020465,0.0000020485,0.0000020510,0.0000020535,0.0000020556, +0.0000020574,0.0000020589,0.0000020601,0.0000020614,0.0000020629, +0.0000020640,0.0000020648,0.0000020654,0.0000020658,0.0000020661, +0.0000020667,0.0000020679,0.0000020695,0.0000020711,0.0000020725, +0.0000020737,0.0000020744,0.0000020745,0.0000020741,0.0000020730, +0.0000020716,0.0000020702,0.0000020692,0.0000020683,0.0000020674, +0.0000020664,0.0000020652,0.0000020635,0.0000020614,0.0000020597, +0.0000020590,0.0000020587,0.0000020583,0.0000020588,0.0000020596, +0.0000020603,0.0000020609,0.0000020614,0.0000020621,0.0000020629, +0.0000020633,0.0000020635,0.0000020636,0.0000020636,0.0000020639, +0.0000020645,0.0000020654,0.0000020664,0.0000020671,0.0000020676, +0.0000020676,0.0000020674,0.0000020668,0.0000020659,0.0000020649, +0.0000020643,0.0000020641,0.0000020647,0.0000020659,0.0000020673, +0.0000020686,0.0000020698,0.0000020711,0.0000020727,0.0000020744, +0.0000020764,0.0000020790,0.0000020817,0.0000020841,0.0000020857, +0.0000020867,0.0000020870,0.0000020867,0.0000020854,0.0000020829, +0.0000020794,0.0000020753,0.0000020715,0.0000020686,0.0000020666, +0.0000020651,0.0000020639,0.0000020626,0.0000020611,0.0000020590, +0.0000020564,0.0000020536,0.0000020509,0.0000020487,0.0000020471, +0.0000020465,0.0000020467,0.0000020479,0.0000020494,0.0000020514, +0.0000020543,0.0000020581,0.0000020627,0.0000020678,0.0000020725, +0.0000020762,0.0000020789,0.0000020804,0.0000020811,0.0000020819, +0.0000020834,0.0000020849,0.0000020868,0.0000020887,0.0000020900, +0.0000020909,0.0000020921,0.0000020938,0.0000020957,0.0000020969, +0.0000020975,0.0000020975,0.0000020972,0.0000020964,0.0000020959, +0.0000020955,0.0000020956,0.0000020956,0.0000020959,0.0000020964, +0.0000020974,0.0000020985,0.0000020991,0.0000020989,0.0000020979, +0.0000020964,0.0000020948,0.0000020929,0.0000020908,0.0000020887, +0.0000020863,0.0000020834,0.0000020802,0.0000020776,0.0000020759, +0.0000020749,0.0000020741,0.0000020732,0.0000020724,0.0000020714, +0.0000020702,0.0000020688,0.0000020673,0.0000020654,0.0000020627, +0.0000020594,0.0000020560,0.0000020527,0.0000020498,0.0000020480, +0.0000020466,0.0000020454,0.0000020441,0.0000020425,0.0000020409, +0.0000020403,0.0000020407,0.0000020416,0.0000020423,0.0000020424, +0.0000020422,0.0000020417,0.0000020409,0.0000020396,0.0000020378, +0.0000020354,0.0000020326,0.0000020294,0.0000020271,0.0000020246, +0.0000020221,0.0000020201,0.0000020189,0.0000020185,0.0000020186, +0.0000020191,0.0000020195,0.0000020196,0.0000020193,0.0000020184, +0.0000020169,0.0000020151,0.0000020135,0.0000020122,0.0000020110, +0.0000020097,0.0000020083,0.0000020073,0.0000020071,0.0000020081, +0.0000020099,0.0000020124,0.0000020152,0.0000020182,0.0000020209, +0.0000020228,0.0000020238,0.0000020237,0.0000020228,0.0000020209, +0.0000020183,0.0000020153,0.0000020124,0.0000020100,0.0000020083, +0.0000020078,0.0000020078,0.0000020083,0.0000020087,0.0000020093, +0.0000020100,0.0000020107,0.0000020112,0.0000020119,0.0000020126, +0.0000020133,0.0000020143,0.0000020160,0.0000020184,0.0000020211, +0.0000020236,0.0000020256,0.0000020269,0.0000020280,0.0000020283, +0.0000020281,0.0000020275,0.0000020264,0.0000020248,0.0000020227, +0.0000020202,0.0000020176,0.0000020153,0.0000020133,0.0000020120, +0.0000020103,0.0000020089,0.0000020075,0.0000020063,0.0000020054, +0.0000020051,0.0000020056,0.0000020074,0.0000020103,0.0000020142, +0.0000020190,0.0000020242,0.0000020291,0.0000020325,0.0000020339, +0.0000020338,0.0000020335,0.0000020334,0.0000020341,0.0000020354, +0.0000020371,0.0000020385,0.0000020399,0.0000020408,0.0000020409, +0.0000020402,0.0000020385,0.0000020360,0.0000020324,0.0000020278, +0.0000020221,0.0000020152,0.0000020076,0.0000020000,0.0000019933, +0.0000019883,0.0000019852,0.0000019835,0.0000019824,0.0000019815, +0.0000019807,0.0000019796,0.0000019777,0.0000019758,0.0000019746, +0.0000019743,0.0000019741,0.0000019758,0.0000019775,0.0000019795, +0.0000019816,0.0000019825,0.0000019832,0.0000019827,0.0000019805, +0.0000019772,0.0000019727,0.0000019677,0.0000019626,0.0000019578, +0.0000019541,0.0000019519,0.0000019510,0.0000019500,0.0000019491, +0.0000019486,0.0000019484,0.0000019486,0.0000019495,0.0000019506, +0.0000019517,0.0000019528,0.0000019532,0.0000019535,0.0000019545, +0.0000019568,0.0000019601,0.0000019642,0.0000019682,0.0000019720, +0.0000019764,0.0000019822,0.0000019895,0.0000019966,0.0000020017, +0.0000020020,0.0000020008,0.0000019984,0.0000019963,0.0000019964, +0.0000019979,0.0000020004,0.0000020029,0.0000020053,0.0000020078, +0.0000020107,0.0000020142,0.0000020182,0.0000020223,0.0000020264, +0.0000020306,0.0000020354,0.0000020403,0.0000020448,0.0000020488, +0.0000020521,0.0000020545,0.0000020561,0.0000020571,0.0000020578, +0.0000020587,0.0000020591,0.0000020587,0.0000020577,0.0000020565, +0.0000020555,0.0000020547,0.0000020544,0.0000020544,0.0000020543, +0.0000020530,0.0000020503,0.0000020463,0.0000020410,0.0000020352, +0.0000020298,0.0000020251,0.0000020217,0.0000020193,0.0000020175, +0.0000020158,0.0000020141,0.0000020122,0.0000020103,0.0000020092, +0.0000020092,0.0000020094,0.0000020090,0.0000020077,0.0000020052, +0.0000020013,0.0000019962,0.0000019905,0.0000019851,0.0000019804, +0.0000019766,0.0000019740,0.0000019733,0.0000019743,0.0000019771, +0.0000019812,0.0000019856,0.0000019898,0.0000019936,0.0000019966, +0.0000019982,0.0000019984,0.0000019974,0.0000019954,0.0000019936, +0.0000019930,0.0000019935,0.0000019947,0.0000019957,0.0000019955, +0.0000019933,0.0000019890,0.0000019833,0.0000019773,0.0000019717, +0.0000019671,0.0000019638,0.0000019618,0.0000019609,0.0000019608, +0.0000019610,0.0000019614,0.0000019615,0.0000019613,0.0000019611, +0.0000019610,0.0000019612,0.0000019615,0.0000019618,0.0000019624, +0.0000019629,0.0000019635,0.0000019644,0.0000019651,0.0000019650, +0.0000019647,0.0000019643,0.0000019637,0.0000019630,0.0000019619, +0.0000019593,0.0000019552,0.0000019504,0.0000019453,0.0000019401, +0.0000019347,0.0000019297,0.0000019249,0.0000019205,0.0000019171, +0.0000019148,0.0000019136,0.0000019128,0.0000019120,0.0000019115, +0.0000019113,0.0000019112,0.0000019110,0.0000019105,0.0000019094, +0.0000019076,0.0000019055,0.0000019028,0.0000018998,0.0000018968, +0.0000018945,0.0000018924,0.0000018909,0.0000018891,0.0000018876, +0.0000018866,0.0000018868,0.0000018889,0.0000018928,0.0000018974, +0.0000019025,0.0000019083,0.0000019147,0.0000019216,0.0000019290, +0.0000019366,0.0000019438,0.0000019504,0.0000019563,0.0000019619, +0.0000019669,0.0000019710,0.0000019741,0.0000019762,0.0000019780, +0.0000019795,0.0000019811,0.0000019834,0.0000019858,0.0000019882, +0.0000019897,0.0000019902,0.0000019898,0.0000019886,0.0000019867, +0.0000019854,0.0000019846,0.0000019844,0.0000019848,0.0000019856, +0.0000019865,0.0000019872,0.0000019875,0.0000019875,0.0000019869, +0.0000019862,0.0000019854,0.0000019844,0.0000019833,0.0000019824, +0.0000019814,0.0000019803,0.0000019791,0.0000019784,0.0000019782, +0.0000019785,0.0000019788,0.0000019792,0.0000019793,0.0000019785, +0.0000019773,0.0000019746,0.0000019698,0.0000019631,0.0000019546, +0.0000019454,0.0000019370,0.0000019307,0.0000019272,0.0000019264, +0.0000019277,0.0000019312,0.0000019361,0.0000019410,0.0000019440, +0.0000019450,0.0000019451,0.0000019457,0.0000019469,0.0000019480, +0.0000019486,0.0000019484,0.0000019468,0.0000019436,0.0000019393, +0.0000019354,0.0000019320,0.0000019284,0.0000019247,0.0000019217, +0.0000019186,0.0000019141,0.0000019084,0.0000019031,0.0000018999, +0.0000018982,0.0000018992,0.0000019026,0.0000019067,0.0000019098, +0.0000019111,0.0000019112,0.0000019119,0.0000019142,0.0000019171, +0.0000019189,0.0000019186,0.0000019154,0.0000019096,0.0000019031, +0.0000018966,0.0000018904,0.0000018849,0.0000018790,0.0000018716, +0.0000018639,0.0000018581,0.0000018558,0.0000018562,0.0000018586, +0.0000018622,0.0000018661,0.0000018696,0.0000018717,0.0000018724, +0.0000018723,0.0000018719,0.0000018712,0.0000018702,0.0000018688, +0.0000018677,0.0000018669,0.0000018661,0.0000018657,0.0000018655, +0.0000018659,0.0000018671,0.0000018692,0.0000018717,0.0000018743, +0.0000018764,0.0000018783,0.0000018804,0.0000018832,0.0000018867, +0.0000018906,0.0000018941,0.0000018964,0.0000018978,0.0000018983, +0.0000018980,0.0000018966,0.0000018930,0.0000018863,0.0000018778, +0.0000018687,0.0000018587,0.0000018476,0.0000018389,0.0000018341, +0.0000018311,0.0000018280,0.0000018250,0.0000018226,0.0000018213, +0.0000018200,0.0000018183,0.0000018165,0.0000018150,0.0000018143, +0.0000018144,0.0000018150,0.0000018161,0.0000018170,0.0000018176, +0.0000018177,0.0000018168,0.0000018156,0.0000018156,0.0000018165, +0.0000018185,0.0000018216,0.0000018250,0.0000018280,0.0000018300, +0.0000018306,0.0000018298,0.0000018270,0.0000018222,0.0000018158, +0.0000018098,0.0000018051,0.0000018013,0.0000017997,0.0000018019, +0.0000018099,0.0000018176,0.0000018198,0.0000018209,0.0000018241, +0.0000018274,0.0000018289,0.0000018291,0.0000018286,0.0000018276, +0.0000018266,0.0000018262,0.0000018265,0.0000018282,0.0000018308, +0.0000018335,0.0000018360,0.0000018381,0.0000018392,0.0000018385, +0.0000018351,0.0000018288,0.0000018204,0.0000018095,0.0000017967, +0.0000017855,0.0000017781,0.0000017733,0.0000017713,0.0000017721, +0.0000017759,0.0000017791,0.0000017798,0.0000017789,0.0000017782, +0.0000017782,0.0000017782,0.0000017775,0.0000017770,0.0000017771, +0.0000017786,0.0000017810,0.0000017824,0.0000017820,0.0000017798, +0.0000017775,0.0000017768,0.0000017800,0.0000017894,0.0000018028, +0.0000018143,0.0000018207,0.0000018242,0.0000018306,0.0000018417, +0.0000018518,0.0000018560,0.0000018574,0.0000018608,0.0000018678, +0.0000018768,0.0000018880,0.0000019011,0.0000019114,0.0000019152, +0.0000019148,0.0000019117,0.0000019068,0.0000019014,0.0000018967, +0.0000018933,0.0000018914,0.0000018913,0.0000018922,0.0000018937, +0.0000018958,0.0000018978,0.0000019002,0.0000019024,0.0000019043, +0.0000019058,0.0000019069,0.0000019076,0.0000019080,0.0000019081, +0.0000019080,0.0000019079,0.0000019079,0.0000019090,0.0000019107, +0.0000019133,0.0000019149,0.0000019138,0.0000019063,0.0000018892, +0.0000018695,0.0000018508,0.0000018347,0.0000018203,0.0000018101, +0.0000018076,0.0000018102,0.0000018138,0.0000018163,0.0000018173, +0.0000018178,0.0000018182,0.0000018186,0.0000018187,0.0000018186, +0.0000018180,0.0000018169,0.0000018152,0.0000018127,0.0000018091, +0.0000018040,0.0000017970,0.0000017891,0.0000017837,0.0000017812, +0.0000017803,0.0000017791,0.0000017765,0.0000017734,0.0000017714, +0.0000017707,0.0000017701,0.0000017694,0.0000017688,0.0000017690, +0.0000017699,0.0000017707,0.0000017715,0.0000017723,0.0000017733, +0.0000017749,0.0000017772,0.0000017807,0.0000017859,0.0000017929, +0.0000018015,0.0000018114,0.0000018224,0.0000018342,0.0000018460, +0.0000018571,0.0000018669,0.0000018748,0.0000018802,0.0000018834, +0.0000018828,0.0000018830,0.0000018829,0.0000018831,0.0000018858, +0.0000018908,0.0000018974,0.0000019039,0.0000019083,0.0000019106, +0.0000019106,0.0000019098,0.0000019089,0.0000019080,0.0000019067, +0.0000019046,0.0000019019,0.0000018986,0.0000018956,0.0000018936, +0.0000018930,0.0000018933,0.0000018948,0.0000018971,0.0000019000, +0.0000019030,0.0000019063,0.0000019098,0.0000019133,0.0000019170, +0.0000019208,0.0000019243,0.0000019277,0.0000019303,0.0000019321, +0.0000019327,0.0000019308,0.0000019294,0.0000019267,0.0000019236, +0.0000019209,0.0000019183,0.0000019158,0.0000019137,0.0000019119, +0.0000019100,0.0000019080,0.0000019059,0.0000019035,0.0000019011, +0.0000018987,0.0000018965,0.0000018945,0.0000018929,0.0000018923, +0.0000018922,0.0000018925,0.0000018928,0.0000018933,0.0000018934, +0.0000018931,0.0000018927,0.0000018922,0.0000018914,0.0000018903, +0.0000018890,0.0000018876,0.0000018861,0.0000018847,0.0000018832, +0.0000018814,0.0000018795,0.0000018779,0.0000018767,0.0000018758, +0.0000018750,0.0000018743,0.0000018737,0.0000018729,0.0000018721, +0.0000018715,0.0000018711,0.0000018706,0.0000018700,0.0000018694, +0.0000018688,0.0000018680,0.0000018672,0.0000018665,0.0000018658, +0.0000018651,0.0000018643,0.0000018632,0.0000018619,0.0000018607, +0.0000018599,0.0000018594,0.0000018591,0.0000018587,0.0000018582, +0.0000018576,0.0000018570,0.0000018566,0.0000018563,0.0000018561, +0.0000018560,0.0000018557,0.0000018553,0.0000018547,0.0000018542, +0.0000018537,0.0000018530,0.0000018527,0.0000018528,0.0000018533, +0.0000018541,0.0000018550,0.0000018560,0.0000018565,0.0000018567, +0.0000018563,0.0000018560,0.0000018547,0.0000018526,0.0000018503, +0.0000018481,0.0000018462,0.0000018449,0.0000018445,0.0000018451, +0.0000018463,0.0000018475,0.0000018485,0.0000018491,0.0000018498, +0.0000018511,0.0000018527,0.0000018546,0.0000018579,0.0000018641, +0.0000018738,0.0000018853,0.0000018958,0.0000019023,0.0000019034, +0.0000019016,0.0000018974,0.0000018937,0.0000018924,0.0000018925, +0.0000018927,0.0000018923,0.0000018921,0.0000018928,0.0000018948, +0.0000018968,0.0000018980,0.0000018983,0.0000018984,0.0000018988, +0.0000019002,0.0000019027,0.0000019061,0.0000019097,0.0000019129, +0.0000019157,0.0000019180,0.0000019200,0.0000019218,0.0000019234, +0.0000019245,0.0000019249,0.0000019248,0.0000019241,0.0000019229, +0.0000019214,0.0000019198,0.0000019183,0.0000019169,0.0000019161, +0.0000019163,0.0000019189,0.0000019223,0.0000019255,0.0000019280, +0.0000019298,0.0000019307,0.0000019311,0.0000019311,0.0000019306, +0.0000019296,0.0000019289,0.0000019284,0.0000019287,0.0000019297, +0.0000019311,0.0000019324,0.0000019335,0.0000019346,0.0000019355, +0.0000019359,0.0000019359,0.0000019356,0.0000019349,0.0000019335, +0.0000019313,0.0000019281,0.0000019239,0.0000019188,0.0000019133, +0.0000019074,0.0000019011,0.0000018949,0.0000018892,0.0000018847, +0.0000018818,0.0000018807,0.0000018807,0.0000018809,0.0000018808, +0.0000018798,0.0000018779,0.0000018764,0.0000018756,0.0000018761, +0.0000018780,0.0000018807,0.0000018832,0.0000018833,0.0000018817, +0.0000018783,0.0000018737,0.0000018689,0.0000018649,0.0000018620, +0.0000018606,0.0000018600,0.0000018596,0.0000018592,0.0000018583, +0.0000018572,0.0000018563,0.0000018559,0.0000018563,0.0000018580, +0.0000018614,0.0000018665,0.0000018730,0.0000018802,0.0000018868, +0.0000018922,0.0000018969,0.0000019009,0.0000019025,0.0000019032, +0.0000019035,0.0000019023,0.0000018991,0.0000018941,0.0000018881, +0.0000018825,0.0000018783,0.0000018766,0.0000018755,0.0000018748, +0.0000018739,0.0000018732,0.0000018732,0.0000018738,0.0000018751, +0.0000018768,0.0000018787,0.0000018802,0.0000018813,0.0000018821, +0.0000018826,0.0000018828,0.0000018825,0.0000018823,0.0000018818, +0.0000018810,0.0000018801,0.0000018789,0.0000018776,0.0000018764, +0.0000018752,0.0000018740,0.0000018729,0.0000018720,0.0000018712, +0.0000018704,0.0000018696,0.0000018689,0.0000018682,0.0000018674, +0.0000018668,0.0000018663,0.0000018658,0.0000018653,0.0000018650, +0.0000018648,0.0000018647,0.0000018651,0.0000018660,0.0000018671, +0.0000018682,0.0000018695,0.0000018709,0.0000018729,0.0000018752, +0.0000018779,0.0000018809,0.0000018840,0.0000018876,0.0000018913, +0.0000018952,0.0000018991,0.0000019029,0.0000019062,0.0000019088, +0.0000019109,0.0000019124,0.0000019134,0.0000019142,0.0000019150, +0.0000019160,0.0000019170,0.0000019184,0.0000019206,0.0000019240, +0.0000019286,0.0000019342,0.0000019413,0.0000019503,0.0000019608, +0.0000019721,0.0000019833,0.0000019938,0.0000020024,0.0000020090, +0.0000020133,0.0000020157,0.0000020164,0.0000020163,0.0000020161, +0.0000020164,0.0000020177,0.0000020196,0.0000020210,0.0000020211, +0.0000020200,0.0000020199,0.0000020233,0.0000020301,0.0000020361, +0.0000020391,0.0000020400,0.0000020409,0.0000020431,0.0000020461, +0.0000020483,0.0000020490,0.0000020486,0.0000020474,0.0000020460, +0.0000020454,0.0000020456,0.0000020467,0.0000020485,0.0000020507, +0.0000020531,0.0000020555,0.0000020578,0.0000020600,0.0000020618, +0.0000020633,0.0000020644,0.0000020652,0.0000020656,0.0000020658, +0.0000020658,0.0000020656,0.0000020651,0.0000020642,0.0000020631, +0.0000020617,0.0000020602,0.0000020587,0.0000020569,0.0000020551, +0.0000020533,0.0000020518,0.0000020511,0.0000020509,0.0000020509, +0.0000020511,0.0000020515,0.0000020521,0.0000020528,0.0000020534, +0.0000020543,0.0000020553,0.0000020562,0.0000020569,0.0000020572, +0.0000020571,0.0000020564,0.0000020555,0.0000020541,0.0000020523, +0.0000020500,0.0000020474,0.0000020447,0.0000020420,0.0000020391, +0.0000020360,0.0000020327,0.0000020293,0.0000020264,0.0000020241, +0.0000020224,0.0000020219,0.0000020227,0.0000020246,0.0000020267, +0.0000020283,0.0000020292,0.0000020298,0.0000020303,0.0000020308, +0.0000020307,0.0000020311,0.0000020341,0.0000020390,0.0000020410, +0.0000020396,0.0000020392,0.0000020443,0.0000020498,0.0000020459, +0.0000020321,0.0000020184,0.0000020120,0.0000020118,0.0000020140, +0.0000020150,0.0000020149,0.0000020143,0.0000020108,0.0000020042, +0.0000019996,0.0000019994,0.0000020068,0.0000020229,0.0000020350, +0.0000020366,0.0000020346,0.0000020341,0.0000020281,0.0000020141, +0.0000020073,0.0000020170,0.0000020416,0.0000020659,0.0000020772, +0.0000020795,0.0000020819,0.0000020852,0.0000020873,0.0000020893, +0.0000020925,0.0000020975,0.0000021045,0.0000021122,0.0000021182, +0.0000021210,0.0000021225,0.0000021241,0.0000021266,0.0000021298, +0.0000021328,0.0000021347,0.0000021356,0.0000021358,0.0000021358, +0.0000021356,0.0000021351,0.0000021349,0.0000021348,0.0000021346, +0.0000021345,0.0000021346,0.0000021346,0.0000021347,0.0000021350, +0.0000021353,0.0000021352,0.0000021349,0.0000021342,0.0000021326, +0.0000021297,0.0000021261,0.0000021225,0.0000021193,0.0000021163, +0.0000021138,0.0000021119,0.0000021100,0.0000021079,0.0000021058, +0.0000021037,0.0000021014,0.0000020988,0.0000020960,0.0000020932, +0.0000020905,0.0000020877,0.0000020852,0.0000020833,0.0000020824, +0.0000020826,0.0000020837,0.0000020853,0.0000020870,0.0000020887, +0.0000020903,0.0000020919,0.0000020932,0.0000020943,0.0000020952, +0.0000020959,0.0000020963,0.0000020966,0.0000020970,0.0000020973, +0.0000020976,0.0000020976,0.0000020972,0.0000020966,0.0000020962, +0.0000020959,0.0000020956,0.0000020953,0.0000020949,0.0000020946, +0.0000020944,0.0000020940,0.0000020931,0.0000020918,0.0000020904, +0.0000020893,0.0000020881,0.0000020868,0.0000020852,0.0000020837, +0.0000020824,0.0000020815,0.0000020810,0.0000020805,0.0000020801, +0.0000020798,0.0000020796,0.0000020793,0.0000020787,0.0000020777, +0.0000020766,0.0000020757,0.0000020747,0.0000020734,0.0000020723, +0.0000020716,0.0000020711,0.0000020706,0.0000020702,0.0000020702, +0.0000020704,0.0000020712,0.0000020725,0.0000020744,0.0000020764, +0.0000020791,0.0000020820,0.0000020848,0.0000020872,0.0000020890, +0.0000020905,0.0000020915,0.0000020922,0.0000020928,0.0000020931, +0.0000020932,0.0000020929,0.0000020926,0.0000020920,0.0000020909, +0.0000020893,0.0000020874,0.0000020859,0.0000020844,0.0000020823, +0.0000020795,0.0000020761,0.0000020727,0.0000020698,0.0000020674, +0.0000020659,0.0000020653,0.0000020648,0.0000020650,0.0000020652, +0.0000020655,0.0000020657,0.0000020657,0.0000020654,0.0000020645, +0.0000020629,0.0000020610,0.0000020594,0.0000020582,0.0000020567, +0.0000020554,0.0000020539,0.0000020521,0.0000020501,0.0000020479, +0.0000020460,0.0000020449,0.0000020445,0.0000020448,0.0000020461, +0.0000020481,0.0000020503,0.0000020528,0.0000020552,0.0000020574, +0.0000020590,0.0000020603,0.0000020617,0.0000020631,0.0000020644, +0.0000020654,0.0000020663,0.0000020668,0.0000020668,0.0000020670, +0.0000020676,0.0000020689,0.0000020704,0.0000020718,0.0000020732, +0.0000020740,0.0000020742,0.0000020742,0.0000020738,0.0000020733, +0.0000020728,0.0000020723,0.0000020718,0.0000020712,0.0000020704, +0.0000020693,0.0000020675,0.0000020649,0.0000020623,0.0000020601, +0.0000020584,0.0000020573,0.0000020570,0.0000020573,0.0000020576, +0.0000020581,0.0000020587,0.0000020597,0.0000020608,0.0000020617, +0.0000020622,0.0000020623,0.0000020626,0.0000020628,0.0000020631, +0.0000020636,0.0000020642,0.0000020649,0.0000020653,0.0000020654, +0.0000020652,0.0000020646,0.0000020635,0.0000020622,0.0000020609, +0.0000020601,0.0000020599,0.0000020603,0.0000020613,0.0000020623, +0.0000020632,0.0000020640,0.0000020646,0.0000020654,0.0000020668, +0.0000020688,0.0000020715,0.0000020743,0.0000020771,0.0000020796, +0.0000020821,0.0000020846,0.0000020867,0.0000020884,0.0000020883, +0.0000020868,0.0000020837,0.0000020793,0.0000020743,0.0000020693, +0.0000020652,0.0000020624,0.0000020608,0.0000020598,0.0000020585, +0.0000020565,0.0000020541,0.0000020518,0.0000020500,0.0000020490, +0.0000020486,0.0000020482,0.0000020484,0.0000020484,0.0000020488, +0.0000020498,0.0000020518,0.0000020549,0.0000020586,0.0000020623, +0.0000020657,0.0000020687,0.0000020709,0.0000020727,0.0000020743, +0.0000020756,0.0000020769,0.0000020782,0.0000020791,0.0000020800, +0.0000020817,0.0000020844,0.0000020870,0.0000020888,0.0000020897, +0.0000020899,0.0000020896,0.0000020892,0.0000020898,0.0000020910, +0.0000020925,0.0000020942,0.0000020958,0.0000020972,0.0000020986, +0.0000020998,0.0000021003,0.0000020999,0.0000020985,0.0000020965, +0.0000020946,0.0000020930,0.0000020918,0.0000020908,0.0000020894, +0.0000020874,0.0000020851,0.0000020829,0.0000020811,0.0000020798, +0.0000020789,0.0000020778,0.0000020765,0.0000020750,0.0000020735, +0.0000020718,0.0000020700,0.0000020683,0.0000020662,0.0000020639, +0.0000020612,0.0000020581,0.0000020552,0.0000020533,0.0000020519, +0.0000020505,0.0000020488,0.0000020469,0.0000020454,0.0000020449, +0.0000020455,0.0000020464,0.0000020470,0.0000020470,0.0000020467, +0.0000020457,0.0000020443,0.0000020425,0.0000020404,0.0000020378, +0.0000020347,0.0000020323,0.0000020299,0.0000020273,0.0000020248, +0.0000020227,0.0000020215,0.0000020212,0.0000020215,0.0000020224, +0.0000020233,0.0000020241,0.0000020246,0.0000020243,0.0000020234, +0.0000020222,0.0000020208,0.0000020195,0.0000020184,0.0000020172, +0.0000020155,0.0000020144,0.0000020143,0.0000020148,0.0000020157, +0.0000020174,0.0000020198,0.0000020223,0.0000020243,0.0000020258, +0.0000020264,0.0000020262,0.0000020254,0.0000020239,0.0000020216, +0.0000020189,0.0000020161,0.0000020136,0.0000020113,0.0000020098, +0.0000020090,0.0000020084,0.0000020084,0.0000020083,0.0000020085, +0.0000020090,0.0000020099,0.0000020108,0.0000020115,0.0000020120, +0.0000020129,0.0000020147,0.0000020174,0.0000020204,0.0000020232, +0.0000020255,0.0000020271,0.0000020280,0.0000020283,0.0000020283, +0.0000020274,0.0000020270,0.0000020257,0.0000020238,0.0000020213, +0.0000020187,0.0000020164,0.0000020142,0.0000020120,0.0000020097, +0.0000020076,0.0000020056,0.0000020038,0.0000020025,0.0000020017, +0.0000020016,0.0000020025,0.0000020046,0.0000020078,0.0000020121, +0.0000020169,0.0000020215,0.0000020252,0.0000020277,0.0000020292, +0.0000020301,0.0000020312,0.0000020326,0.0000020342,0.0000020362, +0.0000020381,0.0000020399,0.0000020411,0.0000020411,0.0000020410, +0.0000020401,0.0000020384,0.0000020362,0.0000020330,0.0000020282, +0.0000020216,0.0000020133,0.0000020044,0.0000019961,0.0000019895, +0.0000019852,0.0000019831,0.0000019826,0.0000019826,0.0000019833, +0.0000019840,0.0000019833,0.0000019822,0.0000019802,0.0000019780, +0.0000019763,0.0000019757,0.0000019753,0.0000019770,0.0000019788, +0.0000019810,0.0000019832,0.0000019840,0.0000019851,0.0000019835, +0.0000019807,0.0000019765,0.0000019709,0.0000019650,0.0000019597, +0.0000019557,0.0000019527,0.0000019506,0.0000019492,0.0000019479, +0.0000019476,0.0000019467,0.0000019465,0.0000019467,0.0000019474, +0.0000019486,0.0000019502,0.0000019523,0.0000019548,0.0000019577, +0.0000019608,0.0000019642,0.0000019677,0.0000019716,0.0000019757, +0.0000019804,0.0000019861,0.0000019925,0.0000019975,0.0000019999, +0.0000019992,0.0000019964,0.0000019935,0.0000019921,0.0000019927, +0.0000019949,0.0000019983,0.0000020024,0.0000020064,0.0000020102, +0.0000020143,0.0000020184,0.0000020223,0.0000020261,0.0000020301, +0.0000020343,0.0000020385,0.0000020425,0.0000020459,0.0000020484, +0.0000020499,0.0000020507,0.0000020514,0.0000020523,0.0000020531, +0.0000020534,0.0000020531,0.0000020525,0.0000020518,0.0000020510, +0.0000020503,0.0000020498,0.0000020491,0.0000020474,0.0000020445, +0.0000020404,0.0000020356,0.0000020302,0.0000020250,0.0000020206, +0.0000020177,0.0000020159,0.0000020147,0.0000020138,0.0000020126, +0.0000020111,0.0000020098,0.0000020093,0.0000020092,0.0000020086, +0.0000020066,0.0000020030,0.0000019981,0.0000019927,0.0000019872, +0.0000019821,0.0000019778,0.0000019743,0.0000019719,0.0000019712, +0.0000019719,0.0000019746,0.0000019786,0.0000019828,0.0000019865, +0.0000019891,0.0000019907,0.0000019913,0.0000019906,0.0000019890, +0.0000019874,0.0000019862,0.0000019859,0.0000019869,0.0000019886, +0.0000019902,0.0000019907,0.0000019899,0.0000019870,0.0000019822, +0.0000019764,0.0000019708,0.0000019660,0.0000019618,0.0000019583, +0.0000019561,0.0000019550,0.0000019545,0.0000019544,0.0000019542, +0.0000019537,0.0000019530,0.0000019524,0.0000019524,0.0000019528, +0.0000019533,0.0000019542,0.0000019551,0.0000019560,0.0000019569, +0.0000019579,0.0000019583,0.0000019580,0.0000019575,0.0000019572, +0.0000019573,0.0000019581,0.0000019584,0.0000019571,0.0000019538, +0.0000019495,0.0000019445,0.0000019391,0.0000019337,0.0000019288, +0.0000019240,0.0000019199,0.0000019169,0.0000019149,0.0000019140, +0.0000019134,0.0000019125,0.0000019117,0.0000019115,0.0000019115, +0.0000019113,0.0000019108,0.0000019099,0.0000019087,0.0000019074, +0.0000019052,0.0000019023,0.0000018991,0.0000018961,0.0000018934, +0.0000018905,0.0000018876,0.0000018848,0.0000018824,0.0000018815, +0.0000018829,0.0000018860,0.0000018902,0.0000018951,0.0000019004, +0.0000019058,0.0000019110,0.0000019165,0.0000019226,0.0000019292, +0.0000019360,0.0000019432,0.0000019506,0.0000019578,0.0000019644, +0.0000019698,0.0000019741,0.0000019771,0.0000019788,0.0000019798, +0.0000019801,0.0000019810,0.0000019821,0.0000019831,0.0000019839, +0.0000019845,0.0000019847,0.0000019844,0.0000019840,0.0000019840, +0.0000019840,0.0000019843,0.0000019850,0.0000019854,0.0000019855, +0.0000019851,0.0000019843,0.0000019835,0.0000019828,0.0000019824, +0.0000019816,0.0000019807,0.0000019799,0.0000019790,0.0000019780, +0.0000019770,0.0000019761,0.0000019758,0.0000019758,0.0000019764, +0.0000019771,0.0000019775,0.0000019776,0.0000019767,0.0000019746, +0.0000019707,0.0000019644,0.0000019562,0.0000019468,0.0000019375, +0.0000019298,0.0000019252,0.0000019228,0.0000019232,0.0000019260, +0.0000019307,0.0000019358,0.0000019395,0.0000019414,0.0000019424, +0.0000019435,0.0000019447,0.0000019455,0.0000019457,0.0000019453, +0.0000019437,0.0000019405,0.0000019367,0.0000019334,0.0000019307, +0.0000019278,0.0000019243,0.0000019209,0.0000019176,0.0000019132, +0.0000019073,0.0000019015,0.0000018977,0.0000018960,0.0000018972, +0.0000019007,0.0000019052,0.0000019089,0.0000019106,0.0000019110, +0.0000019115,0.0000019135,0.0000019163,0.0000019180,0.0000019177, +0.0000019143,0.0000019087,0.0000019025,0.0000018963,0.0000018905, +0.0000018847,0.0000018776,0.0000018689,0.0000018607,0.0000018556, +0.0000018544,0.0000018557,0.0000018589,0.0000018632,0.0000018671, +0.0000018697,0.0000018707,0.0000018707,0.0000018701,0.0000018693, +0.0000018681,0.0000018668,0.0000018657,0.0000018653,0.0000018653, +0.0000018654,0.0000018654,0.0000018657,0.0000018665,0.0000018678, +0.0000018693,0.0000018706,0.0000018714,0.0000018720,0.0000018727, +0.0000018739,0.0000018763,0.0000018797,0.0000018832,0.0000018859, +0.0000018879,0.0000018892,0.0000018894,0.0000018886,0.0000018855, +0.0000018794,0.0000018713,0.0000018627,0.0000018531,0.0000018428, +0.0000018357,0.0000018315,0.0000018275,0.0000018235,0.0000018205, +0.0000018188,0.0000018176,0.0000018165,0.0000018156,0.0000018149, +0.0000018143,0.0000018141,0.0000018143,0.0000018150,0.0000018158, +0.0000018163,0.0000018167,0.0000018166,0.0000018161,0.0000018154, +0.0000018155,0.0000018166,0.0000018189,0.0000018225,0.0000018268, +0.0000018305,0.0000018327,0.0000018335,0.0000018327,0.0000018297, +0.0000018247,0.0000018180,0.0000018107,0.0000018046,0.0000017993, +0.0000017957,0.0000017951,0.0000017988,0.0000018078,0.0000018162, +0.0000018190,0.0000018213,0.0000018252,0.0000018280,0.0000018288, +0.0000018286,0.0000018278,0.0000018267,0.0000018264,0.0000018271, +0.0000018286,0.0000018308,0.0000018335,0.0000018362,0.0000018381, +0.0000018387,0.0000018370,0.0000018324,0.0000018253,0.0000018158, +0.0000018039,0.0000017923,0.0000017841,0.0000017791,0.0000017760, +0.0000017761,0.0000017789,0.0000017825,0.0000017838,0.0000017835, +0.0000017825,0.0000017817,0.0000017809,0.0000017797,0.0000017787, +0.0000017787,0.0000017798,0.0000017806,0.0000017809,0.0000017800, +0.0000017779,0.0000017764,0.0000017770,0.0000017820,0.0000017924, +0.0000018053,0.0000018151,0.0000018194,0.0000018232,0.0000018317, +0.0000018436,0.0000018515,0.0000018536,0.0000018552,0.0000018609, +0.0000018691,0.0000018781,0.0000018897,0.0000019029,0.0000019106, +0.0000019120,0.0000019106,0.0000019071,0.0000019021,0.0000018968, +0.0000018923,0.0000018893,0.0000018888,0.0000018901,0.0000018934, +0.0000018975,0.0000019015,0.0000019048,0.0000019073,0.0000019098, +0.0000019118,0.0000019131,0.0000019141,0.0000019150,0.0000019155, +0.0000019156,0.0000019152,0.0000019144,0.0000019137,0.0000019122, +0.0000019105,0.0000019095,0.0000019091,0.0000019097,0.0000019116, +0.0000019128,0.0000019094,0.0000018930,0.0000018700,0.0000018510, +0.0000018366,0.0000018227,0.0000018125,0.0000018101,0.0000018125, +0.0000018151,0.0000018168,0.0000018178,0.0000018186,0.0000018193, +0.0000018195,0.0000018193,0.0000018188,0.0000018181,0.0000018173, +0.0000018164,0.0000018152,0.0000018133,0.0000018104,0.0000018054, +0.0000017975,0.0000017875,0.0000017808,0.0000017786,0.0000017785, +0.0000017777,0.0000017761,0.0000017747,0.0000017740,0.0000017734, +0.0000017728,0.0000017724,0.0000017725,0.0000017729,0.0000017734, +0.0000017738,0.0000017737,0.0000017743,0.0000017741,0.0000017744, +0.0000017761,0.0000017794,0.0000017841,0.0000017902,0.0000017975, +0.0000018063,0.0000018162,0.0000018269,0.0000018381,0.0000018495, +0.0000018605,0.0000018701,0.0000018769,0.0000018817,0.0000018827, +0.0000018826,0.0000018833,0.0000018846,0.0000018879,0.0000018933, +0.0000018993,0.0000019042,0.0000019073,0.0000019083,0.0000019072, +0.0000019060,0.0000019048,0.0000019037,0.0000019021,0.0000019002, +0.0000018978,0.0000018954,0.0000018937,0.0000018931,0.0000018933, +0.0000018943,0.0000018960,0.0000018982,0.0000019007,0.0000019033, +0.0000019060,0.0000019089,0.0000019117,0.0000019146,0.0000019175, +0.0000019205,0.0000019234,0.0000019256,0.0000019269,0.0000019269, +0.0000019247,0.0000019229,0.0000019200,0.0000019168,0.0000019136, +0.0000019110,0.0000019085,0.0000019063,0.0000019041,0.0000019019, +0.0000018998,0.0000018975,0.0000018954,0.0000018935,0.0000018919, +0.0000018909,0.0000018906,0.0000018907,0.0000018910,0.0000018913, +0.0000018916,0.0000018917,0.0000018915,0.0000018910,0.0000018902, +0.0000018891,0.0000018879,0.0000018866,0.0000018851,0.0000018835, +0.0000018819,0.0000018803,0.0000018788,0.0000018775,0.0000018766, +0.0000018759,0.0000018754,0.0000018748,0.0000018744,0.0000018738, +0.0000018729,0.0000018719,0.0000018710,0.0000018704,0.0000018697, +0.0000018688,0.0000018677,0.0000018665,0.0000018650,0.0000018635, +0.0000018622,0.0000018610,0.0000018599,0.0000018586,0.0000018571, +0.0000018555,0.0000018541,0.0000018532,0.0000018528,0.0000018526, +0.0000018525,0.0000018523,0.0000018522,0.0000018520,0.0000018519, +0.0000018522,0.0000018527,0.0000018532,0.0000018537,0.0000018538, +0.0000018537,0.0000018532,0.0000018525,0.0000018518,0.0000018513, +0.0000018511,0.0000018515,0.0000018522,0.0000018534,0.0000018548, +0.0000018559,0.0000018545,0.0000018555,0.0000018557,0.0000018549, +0.0000018530,0.0000018504,0.0000018477,0.0000018454,0.0000018437, +0.0000018425,0.0000018419,0.0000018418,0.0000018421,0.0000018425, +0.0000018428,0.0000018432,0.0000018439,0.0000018451,0.0000018466, +0.0000018491,0.0000018540,0.0000018626,0.0000018743,0.0000018867, +0.0000018968,0.0000019017,0.0000019022,0.0000018994,0.0000018954, +0.0000018926,0.0000018914,0.0000018912,0.0000018910,0.0000018905, +0.0000018906,0.0000018922,0.0000018947,0.0000018971,0.0000018984, +0.0000018991,0.0000018995,0.0000019000,0.0000019012,0.0000019031, +0.0000019055,0.0000019080,0.0000019104,0.0000019124,0.0000019140, +0.0000019153,0.0000019163,0.0000019170,0.0000019175,0.0000019174, +0.0000019168,0.0000019158,0.0000019147,0.0000019134,0.0000019119, +0.0000019107,0.0000019103,0.0000019117,0.0000019138,0.0000019163, +0.0000019189,0.0000019215,0.0000019236,0.0000019253,0.0000019266, +0.0000019273,0.0000019273,0.0000019268,0.0000019262,0.0000019261, +0.0000019266,0.0000019274,0.0000019285,0.0000019296,0.0000019308, +0.0000019318,0.0000019328,0.0000019335,0.0000019341,0.0000019342, +0.0000019336,0.0000019326,0.0000019311,0.0000019287,0.0000019255, +0.0000019215,0.0000019167,0.0000019113,0.0000019055,0.0000018995, +0.0000018937,0.0000018884,0.0000018843,0.0000018817,0.0000018810, +0.0000018813,0.0000018817,0.0000018814,0.0000018803,0.0000018783, +0.0000018764,0.0000018749,0.0000018748,0.0000018761,0.0000018777, +0.0000018788,0.0000018776,0.0000018751,0.0000018716,0.0000018675, +0.0000018640,0.0000018615,0.0000018600,0.0000018591,0.0000018582, +0.0000018573,0.0000018563,0.0000018552,0.0000018539,0.0000018525, +0.0000018515,0.0000018511,0.0000018522,0.0000018554,0.0000018605, +0.0000018668,0.0000018736,0.0000018814,0.0000018894,0.0000018960, +0.0000019007,0.0000019037,0.0000019036,0.0000019034,0.0000019012, +0.0000018971,0.0000018918,0.0000018862,0.0000018810,0.0000018770, +0.0000018742,0.0000018728,0.0000018717,0.0000018713,0.0000018716, +0.0000018723,0.0000018734,0.0000018746,0.0000018755,0.0000018762, +0.0000018767,0.0000018768,0.0000018766,0.0000018763,0.0000018762, +0.0000018758,0.0000018753,0.0000018748,0.0000018743,0.0000018738, +0.0000018733,0.0000018730,0.0000018725,0.0000018718,0.0000018710, +0.0000018701,0.0000018688,0.0000018674,0.0000018661,0.0000018647, +0.0000018631,0.0000018614,0.0000018596,0.0000018577,0.0000018555, +0.0000018535,0.0000018515,0.0000018497,0.0000018485,0.0000018481, +0.0000018482,0.0000018484,0.0000018489,0.0000018496,0.0000018506, +0.0000018519,0.0000018536,0.0000018556,0.0000018579,0.0000018608, +0.0000018643,0.0000018687,0.0000018736,0.0000018786,0.0000018833, +0.0000018876,0.0000018916,0.0000018951,0.0000018981,0.0000019009, +0.0000019037,0.0000019066,0.0000019090,0.0000019111,0.0000019133, +0.0000019157,0.0000019184,0.0000019216,0.0000019260,0.0000019325, +0.0000019411,0.0000019519,0.0000019642,0.0000019772,0.0000019893, +0.0000019992,0.0000020064,0.0000020109,0.0000020131,0.0000020140, +0.0000020139,0.0000020135,0.0000020136,0.0000020148,0.0000020167, +0.0000020176,0.0000020171,0.0000020165,0.0000020181,0.0000020234, +0.0000020299,0.0000020348,0.0000020371,0.0000020379,0.0000020388, +0.0000020406,0.0000020426,0.0000020440,0.0000020444,0.0000020440, +0.0000020432,0.0000020427,0.0000020429,0.0000020438,0.0000020454, +0.0000020474,0.0000020496,0.0000020520,0.0000020542,0.0000020562, +0.0000020577,0.0000020586,0.0000020594,0.0000020600,0.0000020604, +0.0000020606,0.0000020607,0.0000020608,0.0000020608,0.0000020606, +0.0000020600,0.0000020591,0.0000020579,0.0000020566,0.0000020549, +0.0000020532,0.0000020514,0.0000020502,0.0000020497,0.0000020498, +0.0000020502,0.0000020505,0.0000020510,0.0000020516,0.0000020526, +0.0000020539,0.0000020553,0.0000020568,0.0000020582,0.0000020592, +0.0000020596,0.0000020593,0.0000020586,0.0000020576,0.0000020562, +0.0000020544,0.0000020521,0.0000020493,0.0000020464,0.0000020435, +0.0000020407,0.0000020378,0.0000020346,0.0000020313,0.0000020285, +0.0000020263,0.0000020249,0.0000020242,0.0000020244,0.0000020250, +0.0000020257,0.0000020261,0.0000020266,0.0000020274,0.0000020286, +0.0000020294,0.0000020292,0.0000020293,0.0000020321,0.0000020371, +0.0000020392,0.0000020379,0.0000020384,0.0000020438,0.0000020470, +0.0000020422,0.0000020288,0.0000020167,0.0000020115,0.0000020113, +0.0000020129,0.0000020136,0.0000020136,0.0000020129,0.0000020085, +0.0000020022,0.0000019992,0.0000020003,0.0000020104,0.0000020277, +0.0000020374,0.0000020378,0.0000020369,0.0000020363,0.0000020270, +0.0000020126,0.0000020102,0.0000020238,0.0000020489,0.0000020707, +0.0000020795,0.0000020813,0.0000020836,0.0000020865,0.0000020884, +0.0000020904,0.0000020933,0.0000020970,0.0000021024,0.0000021095, +0.0000021165,0.0000021213,0.0000021232,0.0000021240,0.0000021252, +0.0000021274,0.0000021303,0.0000021329,0.0000021348,0.0000021358, +0.0000021361,0.0000021358,0.0000021354,0.0000021347,0.0000021342, +0.0000021335,0.0000021331,0.0000021330,0.0000021333,0.0000021338, +0.0000021346,0.0000021352,0.0000021357,0.0000021360,0.0000021356, +0.0000021337,0.0000021310,0.0000021275,0.0000021234,0.0000021190, +0.0000021150,0.0000021120,0.0000021098,0.0000021080,0.0000021063, +0.0000021048,0.0000021031,0.0000021015,0.0000020996,0.0000020974, +0.0000020948,0.0000020920,0.0000020895,0.0000020875,0.0000020865, +0.0000020863,0.0000020869,0.0000020880,0.0000020895,0.0000020911, +0.0000020928,0.0000020945,0.0000020961,0.0000020975,0.0000020987, +0.0000020995,0.0000021000,0.0000021002,0.0000021003,0.0000021004, +0.0000021004,0.0000021004,0.0000021000,0.0000020995,0.0000020990, +0.0000020987,0.0000020985,0.0000020982,0.0000020976,0.0000020972, +0.0000020969,0.0000020963,0.0000020952,0.0000020938,0.0000020924, +0.0000020910,0.0000020897,0.0000020883,0.0000020867,0.0000020849, +0.0000020834,0.0000020824,0.0000020819,0.0000020815,0.0000020814, +0.0000020813,0.0000020812,0.0000020810,0.0000020809,0.0000020807, +0.0000020805,0.0000020802,0.0000020797,0.0000020791,0.0000020785, +0.0000020780,0.0000020774,0.0000020768,0.0000020764,0.0000020760, +0.0000020756,0.0000020753,0.0000020755,0.0000020764,0.0000020775, +0.0000020794,0.0000020812,0.0000020831,0.0000020845,0.0000020858, +0.0000020872,0.0000020877,0.0000020881,0.0000020889,0.0000020893, +0.0000020895,0.0000020897,0.0000020898,0.0000020895,0.0000020891, +0.0000020886,0.0000020881,0.0000020878,0.0000020870,0.0000020856, +0.0000020833,0.0000020802,0.0000020767,0.0000020734,0.0000020702, +0.0000020678,0.0000020662,0.0000020652,0.0000020646,0.0000020640, +0.0000020632,0.0000020624,0.0000020617,0.0000020612,0.0000020605, +0.0000020597,0.0000020591,0.0000020587,0.0000020581,0.0000020574, +0.0000020566,0.0000020555,0.0000020537,0.0000020517,0.0000020495, +0.0000020476,0.0000020464,0.0000020459,0.0000020465,0.0000020479, +0.0000020497,0.0000020517,0.0000020538,0.0000020565,0.0000020588, +0.0000020606,0.0000020621,0.0000020637,0.0000020652,0.0000020665, +0.0000020677,0.0000020687,0.0000020694,0.0000020695,0.0000020694, +0.0000020695,0.0000020701,0.0000020711,0.0000020723,0.0000020735, +0.0000020743,0.0000020748,0.0000020750,0.0000020751,0.0000020754, +0.0000020758,0.0000020762,0.0000020760,0.0000020757,0.0000020753, +0.0000020744,0.0000020730,0.0000020709,0.0000020685,0.0000020661, +0.0000020638,0.0000020617,0.0000020601,0.0000020589,0.0000020579, +0.0000020574,0.0000020577,0.0000020584,0.0000020595,0.0000020603, +0.0000020609,0.0000020614,0.0000020619,0.0000020625,0.0000020629, +0.0000020635,0.0000020642,0.0000020647,0.0000020649,0.0000020650, +0.0000020648,0.0000020640,0.0000020627,0.0000020611,0.0000020596, +0.0000020580,0.0000020567,0.0000020562,0.0000020567,0.0000020577, +0.0000020584,0.0000020587,0.0000020589,0.0000020594,0.0000020604, +0.0000020617,0.0000020633,0.0000020654,0.0000020677,0.0000020702, +0.0000020726,0.0000020752,0.0000020784,0.0000020820,0.0000020853, +0.0000020869,0.0000020879,0.0000020870,0.0000020845,0.0000020808, +0.0000020758,0.0000020703,0.0000020653,0.0000020614,0.0000020588, +0.0000020573,0.0000020561,0.0000020548,0.0000020533,0.0000020519, +0.0000020508,0.0000020502,0.0000020497,0.0000020489,0.0000020484, +0.0000020477,0.0000020474,0.0000020480,0.0000020493,0.0000020510, +0.0000020532,0.0000020558,0.0000020586,0.0000020614,0.0000020645, +0.0000020669,0.0000020687,0.0000020699,0.0000020704,0.0000020709, +0.0000020725,0.0000020750,0.0000020775,0.0000020794,0.0000020809, +0.0000020817,0.0000020822,0.0000020830,0.0000020846,0.0000020865, +0.0000020889,0.0000020919,0.0000020945,0.0000020964,0.0000020980, +0.0000020994,0.0000020998,0.0000020991,0.0000020973,0.0000020950, +0.0000020929,0.0000020916,0.0000020911,0.0000020906,0.0000020906, +0.0000020903,0.0000020893,0.0000020876,0.0000020862,0.0000020853, +0.0000020842,0.0000020827,0.0000020808,0.0000020787,0.0000020764, +0.0000020742,0.0000020722,0.0000020706,0.0000020695,0.0000020684, +0.0000020665,0.0000020639,0.0000020617,0.0000020599,0.0000020583, +0.0000020565,0.0000020543,0.0000020521,0.0000020505,0.0000020500, +0.0000020505,0.0000020512,0.0000020516,0.0000020515,0.0000020509, +0.0000020499,0.0000020485,0.0000020468,0.0000020446,0.0000020417, +0.0000020394,0.0000020372,0.0000020347,0.0000020322,0.0000020297, +0.0000020278,0.0000020268,0.0000020266,0.0000020271,0.0000020278, +0.0000020287,0.0000020293,0.0000020294,0.0000020293,0.0000020287, +0.0000020277,0.0000020268,0.0000020259,0.0000020245,0.0000020228, +0.0000020214,0.0000020206,0.0000020204,0.0000020205,0.0000020211, +0.0000020226,0.0000020244,0.0000020261,0.0000020276,0.0000020287, +0.0000020292,0.0000020291,0.0000020285,0.0000020273,0.0000020254, +0.0000020232,0.0000020209,0.0000020185,0.0000020160,0.0000020135, +0.0000020113,0.0000020096,0.0000020085,0.0000020081,0.0000020081, +0.0000020083,0.0000020086,0.0000020086,0.0000020085,0.0000020087, +0.0000020097,0.0000020115,0.0000020137,0.0000020159,0.0000020177, +0.0000020193,0.0000020203,0.0000020211,0.0000020219,0.0000020225, +0.0000020230,0.0000020230,0.0000020225,0.0000020215,0.0000020198, +0.0000020186,0.0000020173,0.0000020155,0.0000020133,0.0000020109, +0.0000020083,0.0000020057,0.0000020033,0.0000020012,0.0000020004, +0.0000020004,0.0000020012,0.0000020029,0.0000020049,0.0000020073, +0.0000020100,0.0000020130,0.0000020161,0.0000020191,0.0000020220, +0.0000020248,0.0000020275,0.0000020300,0.0000020325,0.0000020350, +0.0000020372,0.0000020388,0.0000020397,0.0000020401,0.0000020401, +0.0000020394,0.0000020387,0.0000020374,0.0000020351,0.0000020312, +0.0000020254,0.0000020179,0.0000020094,0.0000020009,0.0000019933, +0.0000019876,0.0000019836,0.0000019820,0.0000019814,0.0000019822, +0.0000019841,0.0000019858,0.0000019873,0.0000019866,0.0000019847, +0.0000019819,0.0000019791,0.0000019773,0.0000019770,0.0000019766, +0.0000019782,0.0000019799,0.0000019818,0.0000019830,0.0000019829, +0.0000019831,0.0000019805,0.0000019770,0.0000019728,0.0000019681, +0.0000019635,0.0000019593,0.0000019559,0.0000019530,0.0000019506, +0.0000019485,0.0000019467,0.0000019456,0.0000019438,0.0000019433, +0.0000019436,0.0000019456,0.0000019494,0.0000019537,0.0000019578, +0.0000019614,0.0000019644,0.0000019675,0.0000019708,0.0000019741, +0.0000019778,0.0000019823,0.0000019876,0.0000019925,0.0000019959, +0.0000019957,0.0000019941,0.0000019911,0.0000019884,0.0000019882, +0.0000019908,0.0000019959,0.0000020014,0.0000020061,0.0000020103, +0.0000020145,0.0000020185,0.0000020221,0.0000020254,0.0000020285, +0.0000020320,0.0000020356,0.0000020391,0.0000020419,0.0000020438, +0.0000020450,0.0000020459,0.0000020473,0.0000020487,0.0000020497, +0.0000020501,0.0000020500,0.0000020497,0.0000020492,0.0000020484, +0.0000020475,0.0000020464,0.0000020447,0.0000020419,0.0000020381, +0.0000020336,0.0000020288,0.0000020240,0.0000020201,0.0000020175, +0.0000020160,0.0000020150,0.0000020142,0.0000020131,0.0000020118, +0.0000020108,0.0000020099,0.0000020087,0.0000020063,0.0000020021, +0.0000019966,0.0000019909,0.0000019855,0.0000019807,0.0000019765, +0.0000019734,0.0000019716,0.0000019710,0.0000019712,0.0000019734, +0.0000019769,0.0000019806,0.0000019836,0.0000019853,0.0000019858, +0.0000019853,0.0000019835,0.0000019811,0.0000019793,0.0000019786, +0.0000019787,0.0000019799,0.0000019819,0.0000019839,0.0000019851, +0.0000019853,0.0000019841,0.0000019810,0.0000019760,0.0000019705, +0.0000019658,0.0000019617,0.0000019581,0.0000019551,0.0000019530, +0.0000019516,0.0000019505,0.0000019494,0.0000019482,0.0000019470, +0.0000019458,0.0000019448,0.0000019441,0.0000019438,0.0000019439, +0.0000019446,0.0000019455,0.0000019464,0.0000019473,0.0000019483, +0.0000019488,0.0000019486,0.0000019483,0.0000019480,0.0000019480, +0.0000019484,0.0000019488,0.0000019486,0.0000019472,0.0000019445, +0.0000019407,0.0000019357,0.0000019305,0.0000019257,0.0000019216, +0.0000019187,0.0000019165,0.0000019149,0.0000019141,0.0000019137, +0.0000019130,0.0000019124,0.0000019122,0.0000019122,0.0000019119, +0.0000019113,0.0000019106,0.0000019098,0.0000019087,0.0000019068, +0.0000019041,0.0000019013,0.0000018984,0.0000018953,0.0000018915, +0.0000018874,0.0000018830,0.0000018796,0.0000018773,0.0000018775, +0.0000018796,0.0000018835,0.0000018887,0.0000018944,0.0000018996, +0.0000019041,0.0000019082,0.0000019122,0.0000019167,0.0000019219, +0.0000019279,0.0000019349,0.0000019427,0.0000019507,0.0000019583, +0.0000019653,0.0000019713,0.0000019761,0.0000019785,0.0000019795, +0.0000019795,0.0000019791,0.0000019787,0.0000019781,0.0000019782, +0.0000019785,0.0000019796,0.0000019808,0.0000019819,0.0000019828, +0.0000019839,0.0000019849,0.0000019853,0.0000019855,0.0000019847, +0.0000019836,0.0000019821,0.0000019814,0.0000019800,0.0000019793, +0.0000019780,0.0000019770,0.0000019760,0.0000019748,0.0000019737, +0.0000019726,0.0000019720,0.0000019718,0.0000019724,0.0000019735, +0.0000019747,0.0000019755,0.0000019754,0.0000019740,0.0000019707, +0.0000019655,0.0000019578,0.0000019487,0.0000019389,0.0000019299, +0.0000019234,0.0000019199,0.0000019188,0.0000019206,0.0000019248, +0.0000019301,0.0000019344,0.0000019373,0.0000019391,0.0000019405, +0.0000019418,0.0000019421,0.0000019420,0.0000019416,0.0000019401, +0.0000019371,0.0000019337,0.0000019310,0.0000019289,0.0000019268, +0.0000019234,0.0000019196,0.0000019163,0.0000019119,0.0000019060, +0.0000018999,0.0000018956,0.0000018940,0.0000018952,0.0000018987, +0.0000019033,0.0000019075,0.0000019100,0.0000019106,0.0000019111, +0.0000019129,0.0000019155,0.0000019172,0.0000019165,0.0000019129, +0.0000019073,0.0000019014,0.0000018955,0.0000018899,0.0000018837, +0.0000018756,0.0000018657,0.0000018575,0.0000018533,0.0000018532, +0.0000018550,0.0000018588,0.0000018629,0.0000018660,0.0000018676, +0.0000018681,0.0000018679,0.0000018672,0.0000018658,0.0000018641, +0.0000018627,0.0000018624,0.0000018628,0.0000018633,0.0000018638, +0.0000018644,0.0000018652,0.0000018661,0.0000018670,0.0000018677, +0.0000018682,0.0000018682,0.0000018681,0.0000018683,0.0000018694, +0.0000018714,0.0000018740,0.0000018764,0.0000018784,0.0000018798, +0.0000018803,0.0000018799,0.0000018775,0.0000018724,0.0000018650, +0.0000018573,0.0000018482,0.0000018388,0.0000018329,0.0000018283, +0.0000018234,0.0000018201,0.0000018184,0.0000018172,0.0000018163, +0.0000018158,0.0000018156,0.0000018153,0.0000018150,0.0000018150, +0.0000018150,0.0000018153,0.0000018158,0.0000018163,0.0000018166, +0.0000018167,0.0000018166,0.0000018167,0.0000018172,0.0000018185, +0.0000018211,0.0000018253,0.0000018298,0.0000018332,0.0000018353, +0.0000018363,0.0000018355,0.0000018325,0.0000018277,0.0000018209, +0.0000018131,0.0000018055,0.0000017988,0.0000017932,0.0000017908, +0.0000017917,0.0000017962,0.0000018056,0.0000018145,0.0000018189, +0.0000018225,0.0000018260,0.0000018282,0.0000018288,0.0000018285, +0.0000018275,0.0000018270,0.0000018276,0.0000018291,0.0000018312, +0.0000018337,0.0000018360,0.0000018374,0.0000018372,0.0000018346, +0.0000018294,0.0000018214,0.0000018106,0.0000017989,0.0000017897, +0.0000017840,0.0000017806,0.0000017798,0.0000017821,0.0000017855, +0.0000017871,0.0000017871,0.0000017862,0.0000017852,0.0000017840, +0.0000017825,0.0000017813,0.0000017808,0.0000017811,0.0000017812, +0.0000017797,0.0000017773,0.0000017751,0.0000017743,0.0000017763, +0.0000017831,0.0000017950,0.0000018066,0.0000018137,0.0000018173, +0.0000018219,0.0000018320,0.0000018439,0.0000018494,0.0000018500, +0.0000018528,0.0000018600,0.0000018682,0.0000018763,0.0000018878, +0.0000019005,0.0000019076,0.0000019081,0.0000019064,0.0000019033, +0.0000018990,0.0000018942,0.0000018903,0.0000018886,0.0000018893, +0.0000018930,0.0000018986,0.0000019043,0.0000019088,0.0000019113, +0.0000019119,0.0000019125,0.0000019131,0.0000019131,0.0000019129, +0.0000019128,0.0000019127,0.0000019124,0.0000019119,0.0000019114, +0.0000019115,0.0000019127,0.0000019119,0.0000019124,0.0000019116, +0.0000019100,0.0000019090,0.0000019083,0.0000019085,0.0000019103, +0.0000019072,0.0000018927,0.0000018670,0.0000018487,0.0000018373, +0.0000018245,0.0000018153,0.0000018136,0.0000018154,0.0000018175, +0.0000018190,0.0000018203,0.0000018212,0.0000018214,0.0000018211, +0.0000018204,0.0000018194,0.0000018181,0.0000018169,0.0000018157, +0.0000018148,0.0000018144,0.0000018135,0.0000018109,0.0000018048, +0.0000017945,0.0000017839,0.0000017790,0.0000017788,0.0000017795, +0.0000017794,0.0000017788,0.0000017781,0.0000017775,0.0000017770, +0.0000017766,0.0000017766,0.0000017769,0.0000017771,0.0000017770, +0.0000017764,0.0000017755,0.0000017745,0.0000017752,0.0000017752, +0.0000017765,0.0000017792,0.0000017830,0.0000017881,0.0000017944, +0.0000018017,0.0000018101,0.0000018198,0.0000018310,0.0000018430, +0.0000018551,0.0000018661,0.0000018741,0.0000018796,0.0000018829, +0.0000018831,0.0000018835,0.0000018856,0.0000018893,0.0000018945, +0.0000018999,0.0000019034,0.0000019048,0.0000019042,0.0000019030, +0.0000019017,0.0000019008,0.0000018997,0.0000018989,0.0000018976, +0.0000018959,0.0000018945,0.0000018936,0.0000018937,0.0000018941, +0.0000018950,0.0000018963,0.0000018978,0.0000018995,0.0000019015, +0.0000019035,0.0000019055,0.0000019076,0.0000019098,0.0000019123, +0.0000019149,0.0000019173,0.0000019192,0.0000019202,0.0000019199, +0.0000019180,0.0000019156,0.0000019129,0.0000019103,0.0000019075, +0.0000019048,0.0000019021,0.0000018998,0.0000018976,0.0000018954, +0.0000018935,0.0000018920,0.0000018909,0.0000018904,0.0000018904, +0.0000018907,0.0000018912,0.0000018918,0.0000018922,0.0000018924, +0.0000018922,0.0000018917,0.0000018908,0.0000018897,0.0000018885, +0.0000018871,0.0000018856,0.0000018839,0.0000018822,0.0000018807, +0.0000018795,0.0000018787,0.0000018782,0.0000018779,0.0000018775, +0.0000018772,0.0000018768,0.0000018762,0.0000018753,0.0000018742, +0.0000018731,0.0000018721,0.0000018710,0.0000018699,0.0000018684, +0.0000018666,0.0000018646,0.0000018627,0.0000018608,0.0000018593, +0.0000018577,0.0000018559,0.0000018540,0.0000018520,0.0000018502, +0.0000018490,0.0000018484,0.0000018479,0.0000018475,0.0000018475, +0.0000018475,0.0000018475,0.0000018475,0.0000018477,0.0000018484, +0.0000018491,0.0000018499,0.0000018507,0.0000018513,0.0000018517, +0.0000018516,0.0000018514,0.0000018510,0.0000018507,0.0000018506, +0.0000018510,0.0000018518,0.0000018530,0.0000018519,0.0000018530, +0.0000018542,0.0000018548,0.0000018547,0.0000018536,0.0000018516, +0.0000018488,0.0000018457,0.0000018431,0.0000018415,0.0000018401, +0.0000018390,0.0000018383,0.0000018379,0.0000018376,0.0000018374, +0.0000018373,0.0000018377,0.0000018388,0.0000018411,0.0000018452, +0.0000018521,0.0000018623,0.0000018751,0.0000018876,0.0000018969, +0.0000019001,0.0000018998,0.0000018967,0.0000018929,0.0000018903, +0.0000018892,0.0000018888,0.0000018884,0.0000018883,0.0000018891, +0.0000018911,0.0000018938,0.0000018966,0.0000018987,0.0000018996, +0.0000019001,0.0000019005,0.0000019012,0.0000019023,0.0000019037, +0.0000019053,0.0000019068,0.0000019080,0.0000019091,0.0000019099, +0.0000019102,0.0000019099,0.0000019095,0.0000019093,0.0000019091, +0.0000019084,0.0000019075,0.0000019065,0.0000019061,0.0000019071, +0.0000019087,0.0000019106,0.0000019125,0.0000019142,0.0000019157, +0.0000019170,0.0000019184,0.0000019199,0.0000019211,0.0000019218, +0.0000019224,0.0000019231,0.0000019238,0.0000019243,0.0000019249, +0.0000019254,0.0000019259,0.0000019265,0.0000019273,0.0000019281, +0.0000019289,0.0000019295,0.0000019300,0.0000019302,0.0000019302, +0.0000019291,0.0000019278,0.0000019256,0.0000019224,0.0000019183, +0.0000019136,0.0000019085,0.0000019030,0.0000018975,0.0000018920, +0.0000018870,0.0000018834,0.0000018816,0.0000018811,0.0000018812, +0.0000018813,0.0000018808,0.0000018794,0.0000018767,0.0000018744, +0.0000018723,0.0000018718,0.0000018723,0.0000018730,0.0000018727, +0.0000018710,0.0000018686,0.0000018658,0.0000018634,0.0000018617, +0.0000018603,0.0000018590,0.0000018576,0.0000018562,0.0000018548, +0.0000018533,0.0000018516,0.0000018498,0.0000018480,0.0000018468, +0.0000018467,0.0000018479,0.0000018505,0.0000018545,0.0000018606, +0.0000018687,0.0000018776,0.0000018865,0.0000018942,0.0000018996, +0.0000019029,0.0000019022,0.0000019017,0.0000018995,0.0000018956, +0.0000018906,0.0000018850,0.0000018796,0.0000018752,0.0000018720, +0.0000018709,0.0000018708,0.0000018710,0.0000018714,0.0000018721, +0.0000018727,0.0000018732,0.0000018734,0.0000018733,0.0000018730, +0.0000018730,0.0000018730,0.0000018730,0.0000018730,0.0000018730, +0.0000018730,0.0000018730,0.0000018732,0.0000018733,0.0000018732, +0.0000018727,0.0000018718,0.0000018707,0.0000018691,0.0000018674, +0.0000018658,0.0000018642,0.0000018623,0.0000018603,0.0000018582, +0.0000018560,0.0000018528,0.0000018497,0.0000018462,0.0000018426, +0.0000018399,0.0000018377,0.0000018362,0.0000018354,0.0000018351, +0.0000018351,0.0000018354,0.0000018360,0.0000018366,0.0000018372, +0.0000018379,0.0000018389,0.0000018409,0.0000018439,0.0000018475, +0.0000018513,0.0000018554,0.0000018596,0.0000018638,0.0000018681, +0.0000018725,0.0000018774,0.0000018830,0.0000018886,0.0000018939, +0.0000018990,0.0000019038,0.0000019081,0.0000019116,0.0000019145, +0.0000019174,0.0000019214,0.0000019269,0.0000019349,0.0000019454, +0.0000019583,0.0000019721,0.0000019851,0.0000019958,0.0000020032, +0.0000020076,0.0000020101,0.0000020111,0.0000020108,0.0000020102, +0.0000020106,0.0000020120,0.0000020136,0.0000020139,0.0000020133, +0.0000020135,0.0000020168,0.0000020228,0.0000020289,0.0000020331, +0.0000020352,0.0000020360,0.0000020365,0.0000020372,0.0000020379, +0.0000020386,0.0000020388,0.0000020388,0.0000020388,0.0000020390, +0.0000020396,0.0000020406,0.0000020420,0.0000020439,0.0000020460, +0.0000020481,0.0000020498,0.0000020509,0.0000020515,0.0000020521, +0.0000020525,0.0000020529,0.0000020532,0.0000020536,0.0000020542, +0.0000020547,0.0000020551,0.0000020549,0.0000020544,0.0000020537, +0.0000020526,0.0000020511,0.0000020493,0.0000020476,0.0000020463, +0.0000020457,0.0000020459,0.0000020463,0.0000020468,0.0000020473, +0.0000020480,0.0000020491,0.0000020508,0.0000020529,0.0000020551, +0.0000020570,0.0000020585,0.0000020593,0.0000020592,0.0000020586, +0.0000020578,0.0000020569,0.0000020555,0.0000020537,0.0000020514, +0.0000020487,0.0000020454,0.0000020422,0.0000020392,0.0000020364, +0.0000020334,0.0000020307,0.0000020287,0.0000020273,0.0000020263, +0.0000020256,0.0000020251,0.0000020245,0.0000020240,0.0000020241, +0.0000020250,0.0000020264,0.0000020273,0.0000020270,0.0000020271, +0.0000020301,0.0000020352,0.0000020373,0.0000020355,0.0000020367, +0.0000020433,0.0000020465,0.0000020389,0.0000020257,0.0000020160, +0.0000020120,0.0000020116,0.0000020128,0.0000020133,0.0000020131, +0.0000020114,0.0000020063,0.0000020008,0.0000019993,0.0000020020, +0.0000020151,0.0000020326,0.0000020408,0.0000020401,0.0000020392, +0.0000020368,0.0000020254,0.0000020127,0.0000020130,0.0000020301, +0.0000020553,0.0000020750,0.0000020816,0.0000020825,0.0000020848, +0.0000020874,0.0000020890,0.0000020910,0.0000020938,0.0000020968, +0.0000021006,0.0000021062,0.0000021129,0.0000021190,0.0000021230, +0.0000021245,0.0000021253,0.0000021269,0.0000021292,0.0000021320, +0.0000021345,0.0000021360,0.0000021366,0.0000021370,0.0000021367, +0.0000021361,0.0000021354,0.0000021347,0.0000021340,0.0000021335, +0.0000021334,0.0000021335,0.0000021339,0.0000021344,0.0000021348, +0.0000021347,0.0000021338,0.0000021323,0.0000021303,0.0000021278, +0.0000021247,0.0000021212,0.0000021172,0.0000021133,0.0000021099, +0.0000021073,0.0000021051,0.0000021032,0.0000021016,0.0000021000, +0.0000020983,0.0000020964,0.0000020944,0.0000020926,0.0000020916, +0.0000020914,0.0000020917,0.0000020925,0.0000020935,0.0000020946, +0.0000020959,0.0000020974,0.0000020989,0.0000021003,0.0000021015, +0.0000021025,0.0000021030,0.0000021030,0.0000021029,0.0000021027, +0.0000021025,0.0000021024,0.0000021023,0.0000021019,0.0000021013, +0.0000021009,0.0000021004,0.0000020997,0.0000020990,0.0000020981, +0.0000020973,0.0000020967,0.0000020958,0.0000020945,0.0000020929, +0.0000020914,0.0000020902,0.0000020890,0.0000020876,0.0000020860, +0.0000020845,0.0000020834,0.0000020828,0.0000020824,0.0000020821, +0.0000020820,0.0000020820,0.0000020819,0.0000020819,0.0000020818, +0.0000020817,0.0000020815,0.0000020811,0.0000020806,0.0000020800, +0.0000020798,0.0000020799,0.0000020798,0.0000020801,0.0000020808, +0.0000020814,0.0000020818,0.0000020829,0.0000020838,0.0000020845, +0.0000020854,0.0000020866,0.0000020877,0.0000020885,0.0000020891, +0.0000020897,0.0000020899,0.0000020897,0.0000020897,0.0000020897, +0.0000020893,0.0000020891,0.0000020889,0.0000020884,0.0000020882, +0.0000020884,0.0000020888,0.0000020890,0.0000020888,0.0000020881, +0.0000020868,0.0000020849,0.0000020823,0.0000020793,0.0000020761, +0.0000020731,0.0000020708,0.0000020688,0.0000020670,0.0000020654, +0.0000020640,0.0000020624,0.0000020606,0.0000020585,0.0000020569, +0.0000020555,0.0000020547,0.0000020546,0.0000020548,0.0000020549, +0.0000020551,0.0000020552,0.0000020548,0.0000020537,0.0000020522, +0.0000020509,0.0000020496,0.0000020489,0.0000020489,0.0000020498, +0.0000020513,0.0000020528,0.0000020544,0.0000020561,0.0000020582, +0.0000020601,0.0000020619,0.0000020636,0.0000020651,0.0000020665, +0.0000020677,0.0000020687,0.0000020696,0.0000020702,0.0000020704, +0.0000020703,0.0000020703,0.0000020703,0.0000020704,0.0000020705, +0.0000020710,0.0000020716,0.0000020723,0.0000020729,0.0000020734, +0.0000020742,0.0000020753,0.0000020762,0.0000020769,0.0000020773, +0.0000020774,0.0000020770,0.0000020761,0.0000020750,0.0000020742, +0.0000020729,0.0000020715,0.0000020697,0.0000020678,0.0000020661, +0.0000020642,0.0000020626,0.0000020619,0.0000020619,0.0000020620, +0.0000020621,0.0000020625,0.0000020631,0.0000020635,0.0000020637, +0.0000020640,0.0000020645,0.0000020654,0.0000020662,0.0000020666, +0.0000020667,0.0000020663,0.0000020653,0.0000020637,0.0000020620, +0.0000020602,0.0000020581,0.0000020560,0.0000020548,0.0000020548, +0.0000020550,0.0000020550,0.0000020551,0.0000020554,0.0000020558, +0.0000020563,0.0000020572,0.0000020583,0.0000020594,0.0000020609, +0.0000020629,0.0000020652,0.0000020675,0.0000020701,0.0000020729, +0.0000020758,0.0000020787,0.0000020814,0.0000020838,0.0000020846, +0.0000020851,0.0000020838,0.0000020808,0.0000020764,0.0000020712, +0.0000020657,0.0000020607,0.0000020571,0.0000020554,0.0000020547, +0.0000020540,0.0000020528,0.0000020513,0.0000020502,0.0000020494, +0.0000020487,0.0000020478,0.0000020471,0.0000020463,0.0000020457, +0.0000020454,0.0000020457,0.0000020464,0.0000020477,0.0000020499, +0.0000020529,0.0000020562,0.0000020588,0.0000020610,0.0000020629, +0.0000020646,0.0000020666,0.0000020686,0.0000020705,0.0000020719, +0.0000020729,0.0000020737,0.0000020747,0.0000020764,0.0000020790, +0.0000020823,0.0000020861,0.0000020897,0.0000020925,0.0000020947, +0.0000020965,0.0000020977,0.0000020980,0.0000020971,0.0000020951, +0.0000020926,0.0000020903,0.0000020889,0.0000020886,0.0000020891, +0.0000020904,0.0000020914,0.0000020916,0.0000020912,0.0000020909, +0.0000020905,0.0000020897,0.0000020880,0.0000020853,0.0000020821, +0.0000020789,0.0000020758,0.0000020732,0.0000020715,0.0000020708, +0.0000020703,0.0000020693,0.0000020679,0.0000020666,0.0000020650, +0.0000020633,0.0000020612,0.0000020588,0.0000020565,0.0000020549, +0.0000020541,0.0000020543,0.0000020546,0.0000020546,0.0000020542, +0.0000020533,0.0000020520,0.0000020506,0.0000020487,0.0000020462, +0.0000020442,0.0000020425,0.0000020407,0.0000020386,0.0000020364, +0.0000020344,0.0000020331,0.0000020328,0.0000020330,0.0000020335, +0.0000020339,0.0000020341,0.0000020338,0.0000020333,0.0000020329, +0.0000020326,0.0000020319,0.0000020308,0.0000020293,0.0000020275, +0.0000020259,0.0000020248,0.0000020243,0.0000020241,0.0000020244, +0.0000020254,0.0000020269,0.0000020282,0.0000020297,0.0000020312, +0.0000020322,0.0000020327,0.0000020326,0.0000020321,0.0000020310, +0.0000020294,0.0000020274,0.0000020250,0.0000020223,0.0000020190, +0.0000020155,0.0000020121,0.0000020093,0.0000020074,0.0000020062, +0.0000020055,0.0000020048,0.0000020038,0.0000020027,0.0000020022, +0.0000020025,0.0000020036,0.0000020048,0.0000020055,0.0000020060, +0.0000020064,0.0000020067,0.0000020071,0.0000020076,0.0000020081, +0.0000020089,0.0000020100,0.0000020112,0.0000020122,0.0000020131, +0.0000020137,0.0000020140,0.0000020139,0.0000020133,0.0000020118, +0.0000020108,0.0000020089,0.0000020066,0.0000020039,0.0000020018, +0.0000020009,0.0000020014,0.0000020027,0.0000020042,0.0000020054, +0.0000020061,0.0000020067,0.0000020074,0.0000020086,0.0000020105, +0.0000020132,0.0000020167,0.0000020206,0.0000020247,0.0000020288, +0.0000020325,0.0000020352,0.0000020373,0.0000020387,0.0000020393, +0.0000020392,0.0000020387,0.0000020377,0.0000020364,0.0000020342, +0.0000020307,0.0000020258,0.0000020197,0.0000020126,0.0000020054, +0.0000019984,0.0000019920,0.0000019868,0.0000019826,0.0000019810, +0.0000019801,0.0000019814,0.0000019843,0.0000019867,0.0000019875, +0.0000019888,0.0000019882,0.0000019859,0.0000019834,0.0000019812, +0.0000019795,0.0000019786,0.0000019785,0.0000019785,0.0000019787, +0.0000019793,0.0000019794,0.0000019789,0.0000019791,0.0000019777, +0.0000019753,0.0000019722,0.0000019681,0.0000019637,0.0000019596, +0.0000019558,0.0000019524,0.0000019492,0.0000019460,0.0000019427, +0.0000019406,0.0000019399,0.0000019415,0.0000019457,0.0000019513, +0.0000019566,0.0000019609,0.0000019644,0.0000019670,0.0000019693, +0.0000019719,0.0000019748,0.0000019785,0.0000019827,0.0000019873, +0.0000019911,0.0000019925,0.0000019909,0.0000019879,0.0000019853, +0.0000019855,0.0000019893,0.0000019952,0.0000020011,0.0000020062, +0.0000020108,0.0000020149,0.0000020185,0.0000020215,0.0000020239, +0.0000020263,0.0000020289,0.0000020317,0.0000020345,0.0000020370, +0.0000020392,0.0000020412,0.0000020433,0.0000020454,0.0000020469, +0.0000020478,0.0000020483,0.0000020486,0.0000020485,0.0000020477, +0.0000020469,0.0000020458,0.0000020442,0.0000020416,0.0000020384, +0.0000020347,0.0000020305,0.0000020264,0.0000020231,0.0000020206, +0.0000020188,0.0000020176,0.0000020165,0.0000020153,0.0000020139, +0.0000020122,0.0000020101,0.0000020070,0.0000020026,0.0000019970, +0.0000019912,0.0000019860,0.0000019813,0.0000019771,0.0000019739, +0.0000019721,0.0000019716,0.0000019719,0.0000019736,0.0000019763, +0.0000019792,0.0000019815,0.0000019829,0.0000019832,0.0000019821, +0.0000019795,0.0000019759,0.0000019730,0.0000019719,0.0000019723, +0.0000019735,0.0000019753,0.0000019774,0.0000019791,0.0000019799, +0.0000019799,0.0000019787,0.0000019757,0.0000019716,0.0000019675, +0.0000019638,0.0000019604,0.0000019574,0.0000019549,0.0000019529, +0.0000019511,0.0000019495,0.0000019475,0.0000019456,0.0000019439, +0.0000019424,0.0000019408,0.0000019391,0.0000019379,0.0000019376, +0.0000019379,0.0000019383,0.0000019388,0.0000019394,0.0000019401, +0.0000019405,0.0000019406,0.0000019404,0.0000019399,0.0000019394, +0.0000019384,0.0000019376,0.0000019371,0.0000019365,0.0000019353, +0.0000019332,0.0000019296,0.0000019254,0.0000019216,0.0000019187, +0.0000019169,0.0000019154,0.0000019143,0.0000019137,0.0000019133, +0.0000019128,0.0000019124,0.0000019123,0.0000019124,0.0000019125, +0.0000019120,0.0000019113,0.0000019103,0.0000019088,0.0000019069, +0.0000019048,0.0000019025,0.0000018999,0.0000018969,0.0000018931, +0.0000018883,0.0000018830,0.0000018779,0.0000018747,0.0000018732, +0.0000018742,0.0000018777,0.0000018831,0.0000018889,0.0000018943, +0.0000018990,0.0000019025,0.0000019054,0.0000019082,0.0000019111, +0.0000019149,0.0000019200,0.0000019262,0.0000019334,0.0000019411, +0.0000019493,0.0000019578,0.0000019656,0.0000019718,0.0000019762, +0.0000019783,0.0000019782,0.0000019775,0.0000019758,0.0000019734, +0.0000019730,0.0000019737,0.0000019750,0.0000019769,0.0000019792, +0.0000019816,0.0000019837,0.0000019853,0.0000019860,0.0000019860, +0.0000019850,0.0000019835,0.0000019816,0.0000019799,0.0000019778, +0.0000019765,0.0000019744,0.0000019732,0.0000019716,0.0000019702, +0.0000019688,0.0000019676,0.0000019670,0.0000019675,0.0000019687, +0.0000019703,0.0000019719,0.0000019727,0.0000019720,0.0000019699, +0.0000019655,0.0000019591,0.0000019505,0.0000019407,0.0000019308, +0.0000019226,0.0000019175,0.0000019151,0.0000019156,0.0000019191, +0.0000019240,0.0000019290,0.0000019326,0.0000019348,0.0000019364, +0.0000019373,0.0000019374,0.0000019372,0.0000019369,0.0000019359, +0.0000019335,0.0000019306,0.0000019285,0.0000019273,0.0000019256, +0.0000019223,0.0000019186,0.0000019150,0.0000019107,0.0000019050, +0.0000018988,0.0000018939,0.0000018919,0.0000018929,0.0000018963, +0.0000019012,0.0000019058,0.0000019087,0.0000019098,0.0000019107, +0.0000019124,0.0000019147,0.0000019162,0.0000019152,0.0000019112, +0.0000019056,0.0000018999,0.0000018942,0.0000018887,0.0000018822, +0.0000018728,0.0000018619,0.0000018538,0.0000018504,0.0000018505, +0.0000018530,0.0000018572,0.0000018613,0.0000018638,0.0000018649, +0.0000018652,0.0000018649,0.0000018638,0.0000018618,0.0000018600, +0.0000018594,0.0000018595,0.0000018600,0.0000018605,0.0000018613, +0.0000018622,0.0000018630,0.0000018634,0.0000018639,0.0000018645, +0.0000018649,0.0000018650,0.0000018653,0.0000018658,0.0000018666, +0.0000018678,0.0000018691,0.0000018701,0.0000018707,0.0000018708, +0.0000018707,0.0000018693,0.0000018652,0.0000018588,0.0000018523, +0.0000018435,0.0000018351,0.0000018296,0.0000018240,0.0000018198, +0.0000018181,0.0000018173,0.0000018167,0.0000018164,0.0000018165, +0.0000018167,0.0000018167,0.0000018169,0.0000018171,0.0000018170, +0.0000018171,0.0000018174,0.0000018178,0.0000018183,0.0000018185, +0.0000018188,0.0000018194,0.0000018204,0.0000018219,0.0000018249, +0.0000018287,0.0000018327,0.0000018358,0.0000018378,0.0000018388, +0.0000018380,0.0000018350,0.0000018302,0.0000018238,0.0000018161, +0.0000018080,0.0000018001,0.0000017927,0.0000017876,0.0000017867, +0.0000017884,0.0000017934,0.0000018031,0.0000018137,0.0000018198, +0.0000018234,0.0000018261,0.0000018279,0.0000018286,0.0000018285, +0.0000018280,0.0000018284,0.0000018297,0.0000018317,0.0000018338, +0.0000018352,0.0000018353,0.0000018340,0.0000018308,0.0000018249, +0.0000018159,0.0000018049,0.0000017952,0.0000017887,0.0000017846, +0.0000017833,0.0000017848,0.0000017886,0.0000017906,0.0000017904, +0.0000017890,0.0000017873,0.0000017854,0.0000017840,0.0000017830, +0.0000017829,0.0000017829,0.0000017821,0.0000017798,0.0000017756, +0.0000017720,0.0000017717,0.0000017750,0.0000017837,0.0000017962, +0.0000018068,0.0000018116,0.0000018140,0.0000018196,0.0000018310, +0.0000018428,0.0000018469,0.0000018470,0.0000018499,0.0000018576, +0.0000018657,0.0000018727,0.0000018831,0.0000018954,0.0000019031, +0.0000019042,0.0000019028,0.0000019004,0.0000018968,0.0000018924, +0.0000018890,0.0000018887,0.0000018917,0.0000018974,0.0000019037, +0.0000019087,0.0000019108,0.0000019107,0.0000019086,0.0000019054, +0.0000019022,0.0000018999,0.0000018982,0.0000018968,0.0000018957, +0.0000018948,0.0000018940,0.0000018941,0.0000018948,0.0000018957, +0.0000018973,0.0000018991,0.0000019013,0.0000019039,0.0000019076, +0.0000019099,0.0000019089,0.0000019068,0.0000019054,0.0000019081, +0.0000019060,0.0000018875,0.0000018605,0.0000018462,0.0000018379, +0.0000018266,0.0000018192,0.0000018183,0.0000018195,0.0000018213, +0.0000018232,0.0000018250,0.0000018263,0.0000018272,0.0000018277, +0.0000018276,0.0000018267,0.0000018247,0.0000018218,0.0000018187, +0.0000018165,0.0000018159,0.0000018160,0.0000018147,0.0000018099, +0.0000018000,0.0000017875,0.0000017800,0.0000017795,0.0000017816, +0.0000017830,0.0000017831,0.0000017828,0.0000017822,0.0000017813, +0.0000017805,0.0000017801,0.0000017801,0.0000017800,0.0000017797, +0.0000017793,0.0000017787,0.0000017779,0.0000017770,0.0000017767, +0.0000017776,0.0000017783,0.0000017802,0.0000017833,0.0000017873, +0.0000017922,0.0000017982,0.0000018057,0.0000018149,0.0000018259, +0.0000018379,0.0000018501,0.0000018619,0.0000018715,0.0000018779, +0.0000018817,0.0000018832,0.0000018842,0.0000018864,0.0000018902, +0.0000018950,0.0000018989,0.0000019010,0.0000019015,0.0000019003, +0.0000018991,0.0000018984,0.0000018982,0.0000018977,0.0000018971, +0.0000018961,0.0000018950,0.0000018943,0.0000018938,0.0000018934, +0.0000018935,0.0000018939,0.0000018946,0.0000018954,0.0000018963, +0.0000018973,0.0000018984,0.0000018996,0.0000019011,0.0000019029, +0.0000019053,0.0000019078,0.0000019100,0.0000019118,0.0000019123, +0.0000019119,0.0000019113,0.0000019091,0.0000019073,0.0000019051, +0.0000019026,0.0000019001,0.0000018976,0.0000018955,0.0000018937, +0.0000018923,0.0000018913,0.0000018910,0.0000018913,0.0000018918, +0.0000018924,0.0000018930,0.0000018934,0.0000018938,0.0000018937, +0.0000018933,0.0000018926,0.0000018915,0.0000018904,0.0000018889, +0.0000018874,0.0000018858,0.0000018844,0.0000018833,0.0000018825, +0.0000018821,0.0000018819,0.0000018817,0.0000018817,0.0000018817, +0.0000018814,0.0000018808,0.0000018799,0.0000018788,0.0000018776, +0.0000018762,0.0000018747,0.0000018730,0.0000018711,0.0000018689, +0.0000018665,0.0000018642,0.0000018620,0.0000018598,0.0000018577, +0.0000018555,0.0000018532,0.0000018510,0.0000018492,0.0000018480, +0.0000018471,0.0000018466,0.0000018464,0.0000018464,0.0000018464, +0.0000018464,0.0000018464,0.0000018466,0.0000018468,0.0000018470, +0.0000018475,0.0000018481,0.0000018486,0.0000018491,0.0000018495, +0.0000018497,0.0000018498,0.0000018499,0.0000018501,0.0000018505, +0.0000018511,0.0000018502,0.0000018512,0.0000018522,0.0000018532, +0.0000018540,0.0000018542,0.0000018540,0.0000018530,0.0000018509, +0.0000018480,0.0000018446,0.0000018413,0.0000018390,0.0000018374, +0.0000018358,0.0000018347,0.0000018340,0.0000018333,0.0000018323, +0.0000018317,0.0000018321,0.0000018341,0.0000018374,0.0000018424, +0.0000018503,0.0000018618,0.0000018751,0.0000018873,0.0000018956, +0.0000018973,0.0000018965,0.0000018932,0.0000018896,0.0000018872, +0.0000018861,0.0000018857,0.0000018855,0.0000018858,0.0000018869, +0.0000018893,0.0000018924,0.0000018956,0.0000018981,0.0000018996, +0.0000018999,0.0000018999,0.0000019000,0.0000019003,0.0000019007, +0.0000019012,0.0000019019,0.0000019029,0.0000019035,0.0000019036, +0.0000019034,0.0000019031,0.0000019028,0.0000019025,0.0000019025, +0.0000019024,0.0000019028,0.0000019036,0.0000019050,0.0000019066, +0.0000019083,0.0000019099,0.0000019112,0.0000019121,0.0000019128, +0.0000019135,0.0000019142,0.0000019149,0.0000019160,0.0000019172, +0.0000019185,0.0000019197,0.0000019207,0.0000019215,0.0000019221, +0.0000019227,0.0000019232,0.0000019235,0.0000019237,0.0000019239, +0.0000019239,0.0000019240,0.0000019244,0.0000019248,0.0000019251, +0.0000019250,0.0000019235,0.0000019213,0.0000019182,0.0000019144, +0.0000019099,0.0000019050,0.0000018997,0.0000018943,0.0000018893, +0.0000018853,0.0000018824,0.0000018808,0.0000018799,0.0000018797, +0.0000018794,0.0000018785,0.0000018764,0.0000018731,0.0000018702, +0.0000018683,0.0000018676,0.0000018675,0.0000018672,0.0000018665, +0.0000018650,0.0000018641,0.0000018633,0.0000018624,0.0000018612, +0.0000018596,0.0000018579,0.0000018559,0.0000018538,0.0000018516, +0.0000018493,0.0000018472,0.0000018454,0.0000018442,0.0000018436, +0.0000018432,0.0000018437,0.0000018459,0.0000018501,0.0000018564, +0.0000018645,0.0000018739,0.0000018834,0.0000018916,0.0000018973, +0.0000019009,0.0000019005,0.0000019002,0.0000018980,0.0000018942, +0.0000018892,0.0000018837,0.0000018787,0.0000018750,0.0000018727, +0.0000018713,0.0000018712,0.0000018715,0.0000018718,0.0000018720, +0.0000018720,0.0000018720,0.0000018719,0.0000018719,0.0000018719, +0.0000018722,0.0000018727,0.0000018729,0.0000018730,0.0000018732, +0.0000018737,0.0000018741,0.0000018742,0.0000018739,0.0000018732, +0.0000018721,0.0000018706,0.0000018688,0.0000018672,0.0000018657, +0.0000018640,0.0000018622,0.0000018607,0.0000018589,0.0000018563, +0.0000018530,0.0000018491,0.0000018448,0.0000018406,0.0000018364, +0.0000018337,0.0000018317,0.0000018304,0.0000018293,0.0000018289, +0.0000018289,0.0000018289,0.0000018287,0.0000018282,0.0000018278, +0.0000018280,0.0000018289,0.0000018303,0.0000018320,0.0000018340, +0.0000018363,0.0000018388,0.0000018417,0.0000018455,0.0000018504, +0.0000018560,0.0000018621,0.0000018688,0.0000018761,0.0000018839, +0.0000018917,0.0000018989,0.0000019051,0.0000019102,0.0000019145, +0.0000019185,0.0000019235,0.0000019307,0.0000019407,0.0000019533, +0.0000019673,0.0000019807,0.0000019917,0.0000019993,0.0000020041, +0.0000020068,0.0000020075,0.0000020072,0.0000020071,0.0000020077, +0.0000020090,0.0000020101,0.0000020100,0.0000020099,0.0000020113, +0.0000020156,0.0000020216,0.0000020271,0.0000020311,0.0000020333, +0.0000020340,0.0000020338,0.0000020333,0.0000020331,0.0000020330, +0.0000020330,0.0000020331,0.0000020333,0.0000020336,0.0000020341, +0.0000020349,0.0000020361,0.0000020376,0.0000020392,0.0000020404, +0.0000020413,0.0000020418,0.0000020421,0.0000020425,0.0000020428, +0.0000020434,0.0000020441,0.0000020449,0.0000020458,0.0000020466, +0.0000020471,0.0000020473,0.0000020471,0.0000020465,0.0000020454, +0.0000020441,0.0000020425,0.0000020411,0.0000020402,0.0000020402, +0.0000020407,0.0000020413,0.0000020420,0.0000020429,0.0000020441, +0.0000020457,0.0000020475,0.0000020497,0.0000020520,0.0000020538, +0.0000020550,0.0000020555,0.0000020555,0.0000020553,0.0000020550, +0.0000020542,0.0000020533,0.0000020522,0.0000020503,0.0000020475, +0.0000020442,0.0000020406,0.0000020373,0.0000020343,0.0000020318, +0.0000020299,0.0000020284,0.0000020270,0.0000020257,0.0000020244, +0.0000020230,0.0000020220,0.0000020219,0.0000020228,0.0000020241, +0.0000020248,0.0000020245,0.0000020247,0.0000020280,0.0000020330, +0.0000020346,0.0000020337,0.0000020360,0.0000020422,0.0000020431, +0.0000020348,0.0000020234,0.0000020161,0.0000020132,0.0000020130, +0.0000020136,0.0000020133,0.0000020124,0.0000020097,0.0000020043, +0.0000019998,0.0000019991,0.0000020046,0.0000020205,0.0000020374, +0.0000020429,0.0000020419,0.0000020413,0.0000020369,0.0000020228, +0.0000020126,0.0000020178,0.0000020364,0.0000020609,0.0000020780, +0.0000020825,0.0000020833,0.0000020856,0.0000020879,0.0000020892, +0.0000020910,0.0000020937,0.0000020965,0.0000020993,0.0000021030, +0.0000021082,0.0000021142,0.0000021193,0.0000021230,0.0000021255, +0.0000021274,0.0000021292,0.0000021311,0.0000021328,0.0000021342, +0.0000021355,0.0000021364,0.0000021363,0.0000021362,0.0000021361, +0.0000021360,0.0000021357,0.0000021352,0.0000021348,0.0000021346, +0.0000021345,0.0000021343,0.0000021339,0.0000021330,0.0000021319, +0.0000021303,0.0000021284,0.0000021263,0.0000021239,0.0000021212, +0.0000021181,0.0000021148,0.0000021117,0.0000021087,0.0000021058, +0.0000021032,0.0000021008,0.0000020987,0.0000020966,0.0000020944, +0.0000020923,0.0000020911,0.0000020910,0.0000020914,0.0000020921, +0.0000020931,0.0000020942,0.0000020952,0.0000020964,0.0000020976, +0.0000020989,0.0000021001,0.0000021010,0.0000021014,0.0000021014, +0.0000021012,0.0000021009,0.0000021007,0.0000021007,0.0000021007, +0.0000021005,0.0000021002,0.0000020999,0.0000020995,0.0000020986, +0.0000020974,0.0000020963,0.0000020951,0.0000020938,0.0000020923, +0.0000020904,0.0000020883,0.0000020865,0.0000020850,0.0000020835, +0.0000020818,0.0000020799,0.0000020785,0.0000020777,0.0000020775, +0.0000020776,0.0000020780,0.0000020784,0.0000020789,0.0000020794, +0.0000020798,0.0000020802,0.0000020804,0.0000020803,0.0000020798, +0.0000020792,0.0000020787,0.0000020784,0.0000020784,0.0000020785, +0.0000020788,0.0000020792,0.0000020799,0.0000020810,0.0000020823, +0.0000020838,0.0000020855,0.0000020873,0.0000020893,0.0000020911, +0.0000020924,0.0000020938,0.0000020946,0.0000020948,0.0000020960, +0.0000020960,0.0000020959,0.0000020955,0.0000020947,0.0000020939, +0.0000020938,0.0000020939,0.0000020941,0.0000020943,0.0000020941, +0.0000020934,0.0000020921,0.0000020902,0.0000020879,0.0000020852, +0.0000020821,0.0000020788,0.0000020760,0.0000020737,0.0000020714, +0.0000020691,0.0000020667,0.0000020645,0.0000020622,0.0000020597, +0.0000020570,0.0000020544,0.0000020522,0.0000020504,0.0000020493, +0.0000020490,0.0000020492,0.0000020498,0.0000020505,0.0000020512, +0.0000020514,0.0000020513,0.0000020511,0.0000020511,0.0000020511, +0.0000020515,0.0000020525,0.0000020535,0.0000020545,0.0000020554, +0.0000020563,0.0000020574,0.0000020586,0.0000020599,0.0000020613, +0.0000020626,0.0000020638,0.0000020648,0.0000020656,0.0000020663, +0.0000020667,0.0000020669,0.0000020668,0.0000020663,0.0000020659, +0.0000020651,0.0000020642,0.0000020636,0.0000020633,0.0000020637, +0.0000020645,0.0000020656,0.0000020666,0.0000020678,0.0000020691, +0.0000020704,0.0000020718,0.0000020730,0.0000020736,0.0000020738, +0.0000020736,0.0000020734,0.0000020734,0.0000020731,0.0000020725, +0.0000020718,0.0000020712,0.0000020704,0.0000020694,0.0000020688, +0.0000020685,0.0000020682,0.0000020679,0.0000020679,0.0000020684, +0.0000020688,0.0000020690,0.0000020690,0.0000020692,0.0000020698, +0.0000020704,0.0000020708,0.0000020709,0.0000020706,0.0000020695, +0.0000020678,0.0000020658,0.0000020637,0.0000020615,0.0000020592, +0.0000020574,0.0000020563,0.0000020556,0.0000020551,0.0000020547, +0.0000020545,0.0000020541,0.0000020538,0.0000020539,0.0000020543, +0.0000020548,0.0000020558,0.0000020573,0.0000020592,0.0000020617, +0.0000020645,0.0000020671,0.0000020694,0.0000020713,0.0000020733, +0.0000020754,0.0000020774,0.0000020796,0.0000020815,0.0000020819, +0.0000020817,0.0000020799,0.0000020762,0.0000020709,0.0000020649, +0.0000020597,0.0000020560,0.0000020540,0.0000020530,0.0000020519, +0.0000020505,0.0000020490,0.0000020478,0.0000020472,0.0000020468, +0.0000020461,0.0000020451,0.0000020437,0.0000020426,0.0000020420, +0.0000020418,0.0000020422,0.0000020432,0.0000020450,0.0000020473, +0.0000020504,0.0000020540,0.0000020575,0.0000020607,0.0000020635, +0.0000020654,0.0000020663,0.0000020670,0.0000020675,0.0000020685, +0.0000020709,0.0000020747,0.0000020794,0.0000020837,0.0000020872, +0.0000020899,0.0000020921,0.0000020940,0.0000020953,0.0000020956, +0.0000020947,0.0000020925,0.0000020897,0.0000020871,0.0000020855, +0.0000020852,0.0000020864,0.0000020886,0.0000020907,0.0000020918, +0.0000020926,0.0000020937,0.0000020945,0.0000020942,0.0000020924, +0.0000020894,0.0000020859,0.0000020819,0.0000020777,0.0000020739, +0.0000020714,0.0000020705,0.0000020700,0.0000020698,0.0000020698, +0.0000020694,0.0000020682,0.0000020666,0.0000020647,0.0000020626, +0.0000020608,0.0000020594,0.0000020585,0.0000020578,0.0000020571, +0.0000020561,0.0000020546,0.0000020523,0.0000020501,0.0000020477, +0.0000020454,0.0000020434,0.0000020416,0.0000020401,0.0000020385, +0.0000020368,0.0000020351,0.0000020339,0.0000020335,0.0000020337, +0.0000020341,0.0000020344,0.0000020348,0.0000020346,0.0000020338, +0.0000020337,0.0000020337,0.0000020330,0.0000020318,0.0000020303, +0.0000020285,0.0000020267,0.0000020256,0.0000020252,0.0000020250, +0.0000020255,0.0000020264,0.0000020278,0.0000020293,0.0000020306, +0.0000020320,0.0000020331,0.0000020339,0.0000020342,0.0000020342, +0.0000020338,0.0000020327,0.0000020308,0.0000020285,0.0000020256, +0.0000020220,0.0000020178,0.0000020132,0.0000020089,0.0000020050, +0.0000020020,0.0000020000,0.0000019989,0.0000019978,0.0000019966, +0.0000019961,0.0000019965,0.0000019975,0.0000019979,0.0000019978, +0.0000019972,0.0000019965,0.0000019959,0.0000019951,0.0000019942, +0.0000019936,0.0000019936,0.0000019943,0.0000019956,0.0000019973, +0.0000019991,0.0000020009,0.0000020026,0.0000020038,0.0000020048, +0.0000020058,0.0000020066,0.0000020070,0.0000020067,0.0000020048, +0.0000020035,0.0000020025,0.0000020025,0.0000020035,0.0000020049, +0.0000020061,0.0000020068,0.0000020068,0.0000020064,0.0000020062, +0.0000020055,0.0000020057,0.0000020067,0.0000020087,0.0000020117, +0.0000020159,0.0000020206,0.0000020253,0.0000020297,0.0000020336, +0.0000020365,0.0000020382,0.0000020384,0.0000020375,0.0000020363, +0.0000020349,0.0000020322,0.0000020283,0.0000020235,0.0000020181, +0.0000020126,0.0000020072,0.0000020019,0.0000019967,0.0000019917, +0.0000019869,0.0000019825,0.0000019800,0.0000019791,0.0000019804, +0.0000019825,0.0000019855,0.0000019884,0.0000019888,0.0000019897, +0.0000019895,0.0000019878,0.0000019856,0.0000019831,0.0000019806, +0.0000019786,0.0000019776,0.0000019761,0.0000019767,0.0000019772, +0.0000019777,0.0000019779,0.0000019786,0.0000019776,0.0000019751, +0.0000019715,0.0000019670,0.0000019624,0.0000019580,0.0000019537, +0.0000019489,0.0000019439,0.0000019395,0.0000019382,0.0000019395, +0.0000019430,0.0000019484,0.0000019543,0.0000019593,0.0000019630, +0.0000019658,0.0000019679,0.0000019698,0.0000019720,0.0000019747, +0.0000019781,0.0000019821,0.0000019852,0.0000019869,0.0000019866, +0.0000019850,0.0000019841,0.0000019856,0.0000019896,0.0000019953, +0.0000020013,0.0000020068,0.0000020115,0.0000020155,0.0000020186, +0.0000020207,0.0000020221,0.0000020233,0.0000020248,0.0000020268, +0.0000020294,0.0000020324,0.0000020358,0.0000020391,0.0000020420, +0.0000020441,0.0000020456,0.0000020468,0.0000020476,0.0000020478, +0.0000020473,0.0000020467,0.0000020460,0.0000020449,0.0000020430, +0.0000020405,0.0000020375,0.0000020340,0.0000020304,0.0000020275, +0.0000020250,0.0000020230,0.0000020214,0.0000020198,0.0000020181, +0.0000020159,0.0000020130,0.0000020091,0.0000020042,0.0000019987, +0.0000019931,0.0000019879,0.0000019831,0.0000019787,0.0000019751, +0.0000019729,0.0000019723,0.0000019727,0.0000019742,0.0000019764, +0.0000019785,0.0000019802,0.0000019814,0.0000019817,0.0000019809, +0.0000019783,0.0000019743,0.0000019702,0.0000019676,0.0000019671, +0.0000019680,0.0000019695,0.0000019712,0.0000019730,0.0000019744, +0.0000019749,0.0000019748,0.0000019739,0.0000019722,0.0000019697, +0.0000019674,0.0000019649,0.0000019623,0.0000019598,0.0000019572, +0.0000019549,0.0000019530,0.0000019509,0.0000019488,0.0000019468, +0.0000019450,0.0000019432,0.0000019411,0.0000019389,0.0000019371, +0.0000019362,0.0000019354,0.0000019349,0.0000019344,0.0000019342, +0.0000019342,0.0000019342,0.0000019342,0.0000019340,0.0000019334, +0.0000019322,0.0000019302,0.0000019281,0.0000019266,0.0000019258, +0.0000019248,0.0000019231,0.0000019209,0.0000019185,0.0000019162, +0.0000019144,0.0000019134,0.0000019129,0.0000019128,0.0000019126, +0.0000019122,0.0000019116,0.0000019114,0.0000019115,0.0000019119, +0.0000019120,0.0000019117,0.0000019111,0.0000019102,0.0000019088, +0.0000019072,0.0000019053,0.0000019026,0.0000018998,0.0000018973, +0.0000018943,0.0000018898,0.0000018841,0.0000018782,0.0000018733, +0.0000018708,0.0000018702,0.0000018730,0.0000018779,0.0000018835, +0.0000018891,0.0000018941,0.0000018981,0.0000019009,0.0000019029, +0.0000019045,0.0000019064,0.0000019092,0.0000019130,0.0000019178, +0.0000019235,0.0000019305,0.0000019388,0.0000019478,0.0000019570, +0.0000019652,0.0000019719,0.0000019760,0.0000019766,0.0000019750, +0.0000019732,0.0000019713,0.0000019699,0.0000019699,0.0000019706, +0.0000019730,0.0000019762,0.0000019798,0.0000019831,0.0000019856, +0.0000019865,0.0000019872,0.0000019867,0.0000019847,0.0000019821, +0.0000019793,0.0000019763,0.0000019738,0.0000019713,0.0000019695, +0.0000019674,0.0000019654,0.0000019636,0.0000019626,0.0000019624, +0.0000019634,0.0000019651,0.0000019671,0.0000019686,0.0000019688, +0.0000019673,0.0000019643,0.0000019591,0.0000019517,0.0000019423, +0.0000019320,0.0000019226,0.0000019156,0.0000019117,0.0000019110, +0.0000019132,0.0000019181,0.0000019234,0.0000019272,0.0000019294, +0.0000019308,0.0000019316,0.0000019317,0.0000019317,0.0000019319, +0.0000019315,0.0000019299,0.0000019276,0.0000019261,0.0000019255, +0.0000019244,0.0000019216,0.0000019179,0.0000019140,0.0000019098, +0.0000019042,0.0000018977,0.0000018921,0.0000018896,0.0000018902, +0.0000018934,0.0000018983,0.0000019034,0.0000019072,0.0000019092, +0.0000019105,0.0000019120,0.0000019141,0.0000019152,0.0000019137, +0.0000019095,0.0000019039,0.0000018980,0.0000018925,0.0000018872, +0.0000018802,0.0000018695,0.0000018578,0.0000018499,0.0000018467, +0.0000018470,0.0000018504,0.0000018554,0.0000018595,0.0000018615, +0.0000018622,0.0000018623,0.0000018618,0.0000018601,0.0000018581, +0.0000018571,0.0000018569,0.0000018569,0.0000018569,0.0000018573, +0.0000018579,0.0000018584,0.0000018587,0.0000018592,0.0000018599, +0.0000018607,0.0000018615,0.0000018624,0.0000018631,0.0000018635, +0.0000018639,0.0000018640,0.0000018637,0.0000018629,0.0000018622, +0.0000018620,0.0000018613,0.0000018582,0.0000018532,0.0000018476, +0.0000018390,0.0000018317,0.0000018259,0.0000018199,0.0000018171, +0.0000018164,0.0000018163,0.0000018168,0.0000018175,0.0000018181, +0.0000018183,0.0000018184,0.0000018189,0.0000018195,0.0000018197, +0.0000018199,0.0000018203,0.0000018208,0.0000018213,0.0000018218, +0.0000018223,0.0000018233,0.0000018246,0.0000018266,0.0000018293, +0.0000018326,0.0000018356,0.0000018381,0.0000018400,0.0000018408, +0.0000018399,0.0000018367,0.0000018319,0.0000018257,0.0000018189, +0.0000018112,0.0000018031,0.0000017943,0.0000017872,0.0000017829, +0.0000017826,0.0000017853,0.0000017911,0.0000018015,0.0000018126, +0.0000018198,0.0000018233,0.0000018252,0.0000018268,0.0000018282, +0.0000018289,0.0000018293,0.0000018302,0.0000018312,0.0000018322, +0.0000018325,0.0000018316,0.0000018294,0.0000018252,0.0000018179, +0.0000018084,0.0000017993,0.0000017927,0.0000017884,0.0000017863, +0.0000017872,0.0000017908,0.0000017943,0.0000017946,0.0000017928, +0.0000017901,0.0000017870,0.0000017843,0.0000017832,0.0000017832, +0.0000017836,0.0000017830,0.0000017799,0.0000017752,0.0000017711, +0.0000017702,0.0000017739,0.0000017839,0.0000017963,0.0000018055, +0.0000018094,0.0000018112,0.0000018170,0.0000018291,0.0000018409, +0.0000018444,0.0000018444,0.0000018472,0.0000018546,0.0000018624, +0.0000018684,0.0000018774,0.0000018890,0.0000018978,0.0000019003, +0.0000018998,0.0000018981,0.0000018950,0.0000018907,0.0000018878, +0.0000018888,0.0000018938,0.0000019005,0.0000019065,0.0000019097, +0.0000019095,0.0000019054,0.0000018987,0.0000018922,0.0000018872, +0.0000018841,0.0000018825,0.0000018817,0.0000018812,0.0000018814, +0.0000018836,0.0000018847,0.0000018870,0.0000018881,0.0000018880, +0.0000018876,0.0000018882,0.0000018898,0.0000018936,0.0000018983, +0.0000019028,0.0000019074,0.0000019082,0.0000019050,0.0000019031, +0.0000019068,0.0000019030,0.0000018773,0.0000018533,0.0000018456, +0.0000018392,0.0000018306,0.0000018262,0.0000018260,0.0000018276, +0.0000018303,0.0000018333,0.0000018358,0.0000018379,0.0000018394, +0.0000018399,0.0000018395,0.0000018379,0.0000018352,0.0000018315, +0.0000018273,0.0000018230,0.0000018195,0.0000018180,0.0000018172, +0.0000018132,0.0000018030,0.0000017894,0.0000017812,0.0000017807, +0.0000017837,0.0000017863,0.0000017875,0.0000017878,0.0000017871, +0.0000017857,0.0000017844,0.0000017835,0.0000017829,0.0000017824, +0.0000017822,0.0000017820,0.0000017819,0.0000017815,0.0000017810, +0.0000017807,0.0000017803,0.0000017805,0.0000017818,0.0000017829, +0.0000017850,0.0000017880,0.0000017919,0.0000017970,0.0000018038, +0.0000018121,0.0000018220,0.0000018335,0.0000018461,0.0000018586, +0.0000018691,0.0000018762,0.0000018803,0.0000018823,0.0000018838, +0.0000018865,0.0000018903,0.0000018945,0.0000018974,0.0000018984, +0.0000018980,0.0000018973,0.0000018969,0.0000018966,0.0000018964, +0.0000018960,0.0000018957,0.0000018950,0.0000018942,0.0000018932, +0.0000018923,0.0000018915,0.0000018910,0.0000018908,0.0000018907, +0.0000018906,0.0000018905,0.0000018905,0.0000018907,0.0000018915, +0.0000018930,0.0000018950,0.0000018973,0.0000018994,0.0000019014, +0.0000019030,0.0000019041,0.0000019045,0.0000019042,0.0000019036, +0.0000019018,0.0000019003,0.0000018988,0.0000018972,0.0000018958, +0.0000018947,0.0000018944,0.0000018945,0.0000018951,0.0000018957, +0.0000018962,0.0000018968,0.0000018975,0.0000018980,0.0000018981, +0.0000018978,0.0000018972,0.0000018962,0.0000018951,0.0000018939, +0.0000018924,0.0000018911,0.0000018900,0.0000018892,0.0000018888, +0.0000018886,0.0000018886,0.0000018885,0.0000018884,0.0000018882, +0.0000018878,0.0000018873,0.0000018865,0.0000018854,0.0000018841, +0.0000018824,0.0000018804,0.0000018782,0.0000018757,0.0000018732, +0.0000018707,0.0000018682,0.0000018658,0.0000018634,0.0000018610, +0.0000018586,0.0000018564,0.0000018544,0.0000018528,0.0000018515, +0.0000018505,0.0000018500,0.0000018498,0.0000018497,0.0000018497, +0.0000018496,0.0000018496,0.0000018495,0.0000018493,0.0000018491, +0.0000018489,0.0000018486,0.0000018486,0.0000018487,0.0000018486, +0.0000018485,0.0000018483,0.0000018482,0.0000018486,0.0000018492, +0.0000018472,0.0000018480,0.0000018491,0.0000018505,0.0000018520, +0.0000018534,0.0000018542,0.0000018545,0.0000018540,0.0000018528, +0.0000018508,0.0000018477,0.0000018436,0.0000018394,0.0000018362, +0.0000018343,0.0000018327,0.0000018316,0.0000018305,0.0000018291, +0.0000018278,0.0000018274,0.0000018283,0.0000018304,0.0000018339, +0.0000018396,0.0000018484,0.0000018606,0.0000018742,0.0000018859, +0.0000018932,0.0000018936,0.0000018923,0.0000018890,0.0000018858, +0.0000018836,0.0000018826,0.0000018823,0.0000018822,0.0000018827, +0.0000018843,0.0000018871,0.0000018906,0.0000018939,0.0000018964, +0.0000018980,0.0000018986,0.0000018984,0.0000018978,0.0000018970, +0.0000018965,0.0000018962,0.0000018963,0.0000018970,0.0000018978, +0.0000018981,0.0000018977,0.0000018971,0.0000018968,0.0000018971, +0.0000018983,0.0000019002,0.0000019022,0.0000019039,0.0000019053, +0.0000019065,0.0000019077,0.0000019087,0.0000019095,0.0000019101, +0.0000019104,0.0000019109,0.0000019114,0.0000019120,0.0000019129, +0.0000019138,0.0000019147,0.0000019158,0.0000019171,0.0000019184, +0.0000019194,0.0000019200,0.0000019203,0.0000019201,0.0000019196, +0.0000019191,0.0000019187,0.0000019185,0.0000019187,0.0000019191, +0.0000019192,0.0000019192,0.0000019180,0.0000019163,0.0000019136, +0.0000019097,0.0000019051,0.0000019002,0.0000018954,0.0000018907, +0.0000018865,0.0000018830,0.0000018802,0.0000018783,0.0000018773, +0.0000018769,0.0000018764,0.0000018746,0.0000018718,0.0000018683, +0.0000018658,0.0000018639,0.0000018626,0.0000018619,0.0000018619, +0.0000018624,0.0000018630,0.0000018629,0.0000018625,0.0000018616, +0.0000018601,0.0000018581,0.0000018558,0.0000018532,0.0000018505, +0.0000018478,0.0000018454,0.0000018437,0.0000018424,0.0000018411, +0.0000018403,0.0000018401,0.0000018406,0.0000018426,0.0000018466, +0.0000018528,0.0000018610,0.0000018704,0.0000018799,0.0000018883, +0.0000018944,0.0000018983,0.0000018984,0.0000018978,0.0000018956, +0.0000018922,0.0000018882,0.0000018842,0.0000018807,0.0000018778, +0.0000018759,0.0000018746,0.0000018736,0.0000018731,0.0000018727, +0.0000018724,0.0000018723,0.0000018723,0.0000018725,0.0000018730, +0.0000018735,0.0000018739,0.0000018742,0.0000018747,0.0000018752, +0.0000018754,0.0000018753,0.0000018748,0.0000018739,0.0000018726, +0.0000018710,0.0000018692,0.0000018676,0.0000018662,0.0000018649, +0.0000018638,0.0000018631,0.0000018626,0.0000018617,0.0000018600, +0.0000018577,0.0000018543,0.0000018501,0.0000018451,0.0000018401, +0.0000018357,0.0000018321,0.0000018291,0.0000018280,0.0000018275, +0.0000018272,0.0000018265,0.0000018256,0.0000018243,0.0000018231, +0.0000018225,0.0000018224,0.0000018224,0.0000018225,0.0000018230, +0.0000018239,0.0000018253,0.0000018276,0.0000018305,0.0000018339, +0.0000018380,0.0000018431,0.0000018494,0.0000018570,0.0000018658, +0.0000018756,0.0000018858,0.0000018956,0.0000019041,0.0000019109, +0.0000019163,0.0000019214,0.0000019278,0.0000019368,0.0000019485, +0.0000019621,0.0000019757,0.0000019869,0.0000019949,0.0000020000, +0.0000020025,0.0000020035,0.0000020035,0.0000020036,0.0000020044, +0.0000020056,0.0000020062,0.0000020061,0.0000020067,0.0000020092, +0.0000020138,0.0000020195,0.0000020248,0.0000020286,0.0000020308, +0.0000020313,0.0000020309,0.0000020301,0.0000020294,0.0000020289, +0.0000020284,0.0000020281,0.0000020282,0.0000020286,0.0000020290, +0.0000020297,0.0000020305,0.0000020314,0.0000020322,0.0000020329, +0.0000020334,0.0000020338,0.0000020340,0.0000020345,0.0000020351, +0.0000020358,0.0000020365,0.0000020372,0.0000020378,0.0000020382, +0.0000020384,0.0000020384,0.0000020381,0.0000020374,0.0000020363, +0.0000020348,0.0000020334,0.0000020325,0.0000020323,0.0000020328, +0.0000020336,0.0000020347,0.0000020357,0.0000020369,0.0000020382, +0.0000020398,0.0000020416,0.0000020434,0.0000020450,0.0000020463, +0.0000020473,0.0000020481,0.0000020485,0.0000020490,0.0000020497, +0.0000020505,0.0000020507,0.0000020500,0.0000020484,0.0000020458, +0.0000020425,0.0000020387,0.0000020350,0.0000020320,0.0000020298, +0.0000020282,0.0000020269,0.0000020252,0.0000020232,0.0000020214, +0.0000020203,0.0000020202,0.0000020207,0.0000020216,0.0000020219, +0.0000020217,0.0000020222,0.0000020259,0.0000020308,0.0000020317, +0.0000020310,0.0000020350,0.0000020417,0.0000020409,0.0000020315, +0.0000020220,0.0000020175,0.0000020157,0.0000020152,0.0000020145, +0.0000020131,0.0000020115,0.0000020079,0.0000020023,0.0000019988, +0.0000019994,0.0000020081,0.0000020262,0.0000020413,0.0000020445, +0.0000020438,0.0000020426,0.0000020346,0.0000020203,0.0000020145, +0.0000020219,0.0000020420,0.0000020650,0.0000020797,0.0000020827, +0.0000020836,0.0000020859,0.0000020881,0.0000020891,0.0000020902, +0.0000020925,0.0000020952,0.0000020980,0.0000021007,0.0000021041, +0.0000021083,0.0000021131,0.0000021179,0.0000021222,0.0000021255, +0.0000021278,0.0000021291,0.0000021298,0.0000021305,0.0000021312, +0.0000021317,0.0000021318,0.0000021321,0.0000021327,0.0000021333, +0.0000021337,0.0000021342,0.0000021344,0.0000021343,0.0000021339, +0.0000021333,0.0000021326,0.0000021318,0.0000021305,0.0000021285, +0.0000021263,0.0000021241,0.0000021219,0.0000021197,0.0000021173, +0.0000021147,0.0000021119,0.0000021090,0.0000021063,0.0000021038, +0.0000021014,0.0000020989,0.0000020963,0.0000020937,0.0000020915, +0.0000020904,0.0000020900,0.0000020901,0.0000020906,0.0000020911, +0.0000020915,0.0000020920,0.0000020927,0.0000020936,0.0000020943, +0.0000020948,0.0000020950,0.0000020950,0.0000020949,0.0000020949, +0.0000020950,0.0000020953,0.0000020954,0.0000020953,0.0000020952, +0.0000020951,0.0000020947,0.0000020937,0.0000020925,0.0000020913, +0.0000020901,0.0000020886,0.0000020868,0.0000020847,0.0000020828, +0.0000020812,0.0000020795,0.0000020777,0.0000020754,0.0000020729, +0.0000020705,0.0000020686,0.0000020675,0.0000020672,0.0000020672, +0.0000020675,0.0000020677,0.0000020681,0.0000020687,0.0000020694, +0.0000020699,0.0000020702,0.0000020703,0.0000020702,0.0000020702, +0.0000020704,0.0000020707,0.0000020711,0.0000020714,0.0000020718, +0.0000020725,0.0000020736,0.0000020748,0.0000020762,0.0000020781, +0.0000020803,0.0000020826,0.0000020849,0.0000020870,0.0000020889, +0.0000020907,0.0000020923,0.0000020936,0.0000020948,0.0000020960, +0.0000020968,0.0000020969,0.0000020981,0.0000020991,0.0000021014, +0.0000021026,0.0000021030,0.0000021030,0.0000021024,0.0000021011, +0.0000020994,0.0000020971,0.0000020941,0.0000020909,0.0000020875, +0.0000020846,0.0000020819,0.0000020792,0.0000020763,0.0000020732, +0.0000020699,0.0000020667,0.0000020633,0.0000020597,0.0000020563, +0.0000020534,0.0000020509,0.0000020487,0.0000020470,0.0000020464, +0.0000020464,0.0000020470,0.0000020478,0.0000020486,0.0000020498, +0.0000020508,0.0000020516,0.0000020523,0.0000020530,0.0000020536, +0.0000020544,0.0000020547,0.0000020548,0.0000020548,0.0000020550, +0.0000020555,0.0000020562,0.0000020572,0.0000020584,0.0000020594, +0.0000020602,0.0000020608,0.0000020610,0.0000020612,0.0000020611, +0.0000020606,0.0000020595,0.0000020582,0.0000020567,0.0000020551, +0.0000020536,0.0000020528,0.0000020528,0.0000020537,0.0000020551, +0.0000020565,0.0000020577,0.0000020588,0.0000020599,0.0000020612, +0.0000020627,0.0000020640,0.0000020650,0.0000020656,0.0000020663, +0.0000020671,0.0000020680,0.0000020686,0.0000020691,0.0000020694, +0.0000020695,0.0000020695,0.0000020697,0.0000020702,0.0000020704, +0.0000020705,0.0000020707,0.0000020715,0.0000020723,0.0000020728, +0.0000020731,0.0000020736,0.0000020739,0.0000020741,0.0000020742, +0.0000020743,0.0000020743,0.0000020740,0.0000020726,0.0000020707, +0.0000020687,0.0000020665,0.0000020643,0.0000020627,0.0000020618, +0.0000020610,0.0000020603,0.0000020596,0.0000020587,0.0000020576, +0.0000020565,0.0000020555,0.0000020547,0.0000020542,0.0000020541, +0.0000020543,0.0000020551,0.0000020565,0.0000020587,0.0000020614, +0.0000020641,0.0000020668,0.0000020689,0.0000020703,0.0000020713, +0.0000020722,0.0000020735,0.0000020752,0.0000020772,0.0000020789, +0.0000020790,0.0000020778,0.0000020743,0.0000020695,0.0000020637, +0.0000020580,0.0000020537,0.0000020515,0.0000020503,0.0000020489, +0.0000020470,0.0000020454,0.0000020447,0.0000020445,0.0000020442, +0.0000020431,0.0000020416,0.0000020404,0.0000020395,0.0000020388, +0.0000020380,0.0000020378,0.0000020385,0.0000020408,0.0000020444, +0.0000020483,0.0000020524,0.0000020561,0.0000020587,0.0000020602, +0.0000020613,0.0000020624,0.0000020642,0.0000020680,0.0000020731, +0.0000020782,0.0000020823,0.0000020855,0.0000020880,0.0000020900, +0.0000020918,0.0000020929,0.0000020929,0.0000020915,0.0000020888, +0.0000020854,0.0000020822,0.0000020805,0.0000020805,0.0000020820, +0.0000020844,0.0000020870,0.0000020895,0.0000020919,0.0000020944, +0.0000020954,0.0000020955,0.0000020943,0.0000020917,0.0000020882, +0.0000020840,0.0000020792,0.0000020746,0.0000020712,0.0000020693, +0.0000020686,0.0000020690,0.0000020697,0.0000020697,0.0000020693, +0.0000020684,0.0000020672,0.0000020661,0.0000020649,0.0000020638, +0.0000020623,0.0000020604,0.0000020579,0.0000020548,0.0000020514, +0.0000020478,0.0000020443,0.0000020413,0.0000020386,0.0000020359, +0.0000020338,0.0000020321,0.0000020304,0.0000020286,0.0000020272, +0.0000020265,0.0000020264,0.0000020268,0.0000020276,0.0000020284, +0.0000020286,0.0000020284,0.0000020288,0.0000020291,0.0000020287, +0.0000020278,0.0000020264,0.0000020244,0.0000020220,0.0000020206, +0.0000020202,0.0000020205,0.0000020215,0.0000020230,0.0000020246, +0.0000020259,0.0000020278,0.0000020294,0.0000020306,0.0000020315, +0.0000020320,0.0000020323,0.0000020323,0.0000020316,0.0000020301, +0.0000020281,0.0000020256,0.0000020221,0.0000020177,0.0000020128, +0.0000020078,0.0000020029,0.0000019983,0.0000019947,0.0000019924, +0.0000019911,0.0000019903,0.0000019905,0.0000019919,0.0000019935, +0.0000019943,0.0000019941,0.0000019933,0.0000019924,0.0000019913, +0.0000019897,0.0000019879,0.0000019863,0.0000019853,0.0000019849, +0.0000019851,0.0000019859,0.0000019874,0.0000019892,0.0000019911, +0.0000019926,0.0000019939,0.0000019954,0.0000019971,0.0000019989, +0.0000020003,0.0000020010,0.0000020011,0.0000020013,0.0000020020, +0.0000020031,0.0000020047,0.0000020061,0.0000020070,0.0000020073, +0.0000020076,0.0000020075,0.0000020071,0.0000020062,0.0000020055, +0.0000020054,0.0000020049,0.0000020057,0.0000020078,0.0000020109, +0.0000020152,0.0000020203,0.0000020253,0.0000020298,0.0000020331, +0.0000020347,0.0000020353,0.0000020347,0.0000020330,0.0000020301, +0.0000020259,0.0000020210,0.0000020160,0.0000020112,0.0000020069, +0.0000020032,0.0000019998,0.0000019962,0.0000019919,0.0000019874, +0.0000019835,0.0000019806,0.0000019797,0.0000019792,0.0000019802, +0.0000019827,0.0000019858,0.0000019887,0.0000019897,0.0000019911, +0.0000019906,0.0000019890,0.0000019867,0.0000019836,0.0000019807, +0.0000019787,0.0000019771,0.0000019768,0.0000019766,0.0000019770, +0.0000019778,0.0000019776,0.0000019773,0.0000019758,0.0000019728, +0.0000019690,0.0000019645,0.0000019593,0.0000019532,0.0000019469, +0.0000019420,0.0000019391,0.0000019389,0.0000019422,0.0000019467, +0.0000019515,0.0000019563,0.0000019603,0.0000019635,0.0000019660, +0.0000019679,0.0000019697,0.0000019716,0.0000019739,0.0000019767, +0.0000019795,0.0000019813,0.0000019821,0.0000019830,0.0000019845, +0.0000019871,0.0000019910,0.0000019960,0.0000020017,0.0000020074, +0.0000020124,0.0000020161,0.0000020185,0.0000020195,0.0000020198, +0.0000020199,0.0000020205,0.0000020222,0.0000020251,0.0000020292, +0.0000020336,0.0000020375,0.0000020405,0.0000020428,0.0000020447, +0.0000020460,0.0000020466,0.0000020465,0.0000020464,0.0000020461, +0.0000020456,0.0000020444,0.0000020426,0.0000020402,0.0000020373, +0.0000020343,0.0000020318,0.0000020295,0.0000020272,0.0000020250, +0.0000020227,0.0000020199,0.0000020164,0.0000020119,0.0000020064, +0.0000020007,0.0000019953,0.0000019902,0.0000019853,0.0000019807, +0.0000019766,0.0000019738,0.0000019725,0.0000019725,0.0000019737, +0.0000019756,0.0000019774,0.0000019788,0.0000019800,0.0000019805, +0.0000019803,0.0000019784,0.0000019747,0.0000019702,0.0000019664, +0.0000019641,0.0000019637,0.0000019642,0.0000019653,0.0000019665, +0.0000019680,0.0000019691,0.0000019696,0.0000019700,0.0000019700, +0.0000019696,0.0000019690,0.0000019682,0.0000019670,0.0000019655, +0.0000019636,0.0000019615,0.0000019594,0.0000019576,0.0000019555, +0.0000019534,0.0000019516,0.0000019495,0.0000019470,0.0000019444, +0.0000019418,0.0000019395,0.0000019371,0.0000019347,0.0000019327, +0.0000019312,0.0000019302,0.0000019294,0.0000019287,0.0000019285, +0.0000019283,0.0000019276,0.0000019259,0.0000019234,0.0000019207, +0.0000019182,0.0000019165,0.0000019150,0.0000019137,0.0000019123, +0.0000019108,0.0000019092,0.0000019082,0.0000019080,0.0000019086, +0.0000019097,0.0000019104,0.0000019102,0.0000019095,0.0000019093, +0.0000019096,0.0000019099,0.0000019099,0.0000019098,0.0000019099, +0.0000019096,0.0000019090,0.0000019080,0.0000019060,0.0000019029, +0.0000019000,0.0000018973,0.0000018943,0.0000018905,0.0000018854, +0.0000018796,0.0000018741,0.0000018698,0.0000018684,0.0000018697, +0.0000018734,0.0000018782,0.0000018836,0.0000018889,0.0000018937, +0.0000018971,0.0000018993,0.0000019004,0.0000019012,0.0000019024, +0.0000019041,0.0000019064,0.0000019095,0.0000019140,0.0000019201, +0.0000019278,0.0000019370,0.0000019472,0.0000019573,0.0000019655, +0.0000019706,0.0000019735,0.0000019728,0.0000019717,0.0000019704, +0.0000019680,0.0000019674,0.0000019680,0.0000019694,0.0000019734, +0.0000019779,0.0000019823,0.0000019858,0.0000019883,0.0000019895, +0.0000019887,0.0000019866,0.0000019835,0.0000019798,0.0000019760, +0.0000019723,0.0000019690,0.0000019660,0.0000019634,0.0000019613, +0.0000019592,0.0000019587,0.0000019590,0.0000019602,0.0000019620, +0.0000019636,0.0000019645,0.0000019640,0.0000019614,0.0000019577, +0.0000019516,0.0000019432,0.0000019332,0.0000019231,0.0000019146, +0.0000019094,0.0000019071,0.0000019083,0.0000019125,0.0000019173, +0.0000019208,0.0000019228,0.0000019243,0.0000019252,0.0000019257, +0.0000019262,0.0000019270,0.0000019273,0.0000019264,0.0000019246, +0.0000019237,0.0000019237,0.0000019228,0.0000019207,0.0000019170, +0.0000019131,0.0000019090,0.0000019034,0.0000018966,0.0000018905, +0.0000018872,0.0000018873,0.0000018899,0.0000018948,0.0000019009, +0.0000019060,0.0000019089,0.0000019103,0.0000019117,0.0000019134, +0.0000019139,0.0000019121,0.0000019078,0.0000019020,0.0000018961, +0.0000018911,0.0000018861,0.0000018785,0.0000018666,0.0000018542, +0.0000018460,0.0000018427,0.0000018438,0.0000018482,0.0000018538, +0.0000018577,0.0000018593,0.0000018596,0.0000018595,0.0000018586, +0.0000018568,0.0000018556,0.0000018552,0.0000018549,0.0000018543, +0.0000018536,0.0000018533,0.0000018535,0.0000018539,0.0000018546, +0.0000018552,0.0000018559,0.0000018569,0.0000018581,0.0000018591, +0.0000018598,0.0000018601,0.0000018600,0.0000018590,0.0000018571, +0.0000018553,0.0000018544,0.0000018539,0.0000018518,0.0000018481, +0.0000018427,0.0000018346,0.0000018281,0.0000018218,0.0000018167, +0.0000018150,0.0000018149,0.0000018167,0.0000018190,0.0000018208, +0.0000018218,0.0000018221,0.0000018220,0.0000018221,0.0000018226, +0.0000018227,0.0000018230,0.0000018235,0.0000018241,0.0000018247, +0.0000018255,0.0000018265,0.0000018277,0.0000018296,0.0000018320, +0.0000018344,0.0000018367,0.0000018389,0.0000018410,0.0000018423, +0.0000018424,0.0000018409,0.0000018376,0.0000018328,0.0000018270, +0.0000018209,0.0000018141,0.0000018062,0.0000017973,0.0000017888, +0.0000017821,0.0000017785,0.0000017793,0.0000017836,0.0000017902, +0.0000017999,0.0000018104,0.0000018179,0.0000018217,0.0000018238, +0.0000018254,0.0000018267,0.0000018275,0.0000018282,0.0000018285, +0.0000018286,0.0000018279,0.0000018261,0.0000018228,0.0000018173, +0.0000018094,0.0000018010,0.0000017948,0.0000017910,0.0000017886, +0.0000017891,0.0000017927,0.0000017966,0.0000017980,0.0000017971, +0.0000017942,0.0000017902,0.0000017860,0.0000017832,0.0000017828, +0.0000017834,0.0000017831,0.0000017801,0.0000017746,0.0000017705, +0.0000017701,0.0000017747,0.0000017850,0.0000017963,0.0000018035, +0.0000018065,0.0000018086,0.0000018143,0.0000018269,0.0000018389, +0.0000018424,0.0000018424,0.0000018445,0.0000018513,0.0000018588, +0.0000018640,0.0000018712,0.0000018816,0.0000018911,0.0000018958, +0.0000018965,0.0000018958,0.0000018932,0.0000018893,0.0000018870, +0.0000018884,0.0000018945,0.0000019014,0.0000019069,0.0000019093, +0.0000019076,0.0000018997,0.0000018896,0.0000018821,0.0000018783, +0.0000018766,0.0000018764,0.0000018772,0.0000018781,0.0000018801, +0.0000018834,0.0000018867,0.0000018887,0.0000018886,0.0000018871, +0.0000018856,0.0000018847,0.0000018846,0.0000018853,0.0000018867, +0.0000018888,0.0000018935,0.0000019010,0.0000019078,0.0000019078, +0.0000019020,0.0000019022,0.0000019057,0.0000018931,0.0000018636, +0.0000018495,0.0000018470,0.0000018426,0.0000018387,0.0000018382, +0.0000018398,0.0000018428,0.0000018459,0.0000018480,0.0000018492, +0.0000018494,0.0000018489,0.0000018477,0.0000018464,0.0000018447, +0.0000018423,0.0000018395,0.0000018357,0.0000018298,0.0000018233, +0.0000018200,0.0000018191,0.0000018151,0.0000018042,0.0000017904, +0.0000017825,0.0000017820,0.0000017845,0.0000017881,0.0000017897, +0.0000017909,0.0000017907,0.0000017896,0.0000017886,0.0000017876, +0.0000017867,0.0000017858,0.0000017853,0.0000017852,0.0000017854, +0.0000017855,0.0000017855,0.0000017852,0.0000017849,0.0000017849, +0.0000017849,0.0000017855,0.0000017870,0.0000017879,0.0000017900, +0.0000017934,0.0000017977,0.0000018030,0.0000018098,0.0000018189, +0.0000018303,0.0000018429,0.0000018553,0.0000018659,0.0000018736, +0.0000018781,0.0000018808,0.0000018831,0.0000018864,0.0000018904, +0.0000018936,0.0000018957,0.0000018965,0.0000018960,0.0000018954, +0.0000018952,0.0000018949,0.0000018947,0.0000018945,0.0000018938, +0.0000018931,0.0000018917,0.0000018901,0.0000018886,0.0000018873, +0.0000018863,0.0000018852,0.0000018840,0.0000018829,0.0000018820, +0.0000018816,0.0000018818,0.0000018826,0.0000018840,0.0000018858, +0.0000018880,0.0000018902,0.0000018923,0.0000018940,0.0000018954, +0.0000018962,0.0000018962,0.0000018959,0.0000018955,0.0000018951, +0.0000018950,0.0000018950,0.0000018953,0.0000018963,0.0000018971, +0.0000018977,0.0000018989,0.0000019000,0.0000019008,0.0000019015, +0.0000019019,0.0000019017,0.0000019009,0.0000019002,0.0000018993, +0.0000018982,0.0000018968,0.0000018955,0.0000018945,0.0000018938, +0.0000018935,0.0000018931,0.0000018926,0.0000018919,0.0000018912, +0.0000018906,0.0000018902,0.0000018898,0.0000018891,0.0000018881, +0.0000018869,0.0000018852,0.0000018832,0.0000018809,0.0000018784, +0.0000018761,0.0000018738,0.0000018716,0.0000018693,0.0000018669, +0.0000018645,0.0000018624,0.0000018606,0.0000018590,0.0000018575, +0.0000018564,0.0000018558,0.0000018555,0.0000018553,0.0000018552, +0.0000018551,0.0000018551,0.0000018553,0.0000018554,0.0000018554, +0.0000018552,0.0000018548,0.0000018542,0.0000018534,0.0000018523, +0.0000018511,0.0000018498,0.0000018485,0.0000018478,0.0000018470, +0.0000018482,0.0000018472,0.0000018464,0.0000018466,0.0000018476, +0.0000018492,0.0000018514,0.0000018536,0.0000018546,0.0000018549, +0.0000018544,0.0000018529,0.0000018505,0.0000018470,0.0000018422, +0.0000018372,0.0000018332,0.0000018313,0.0000018298,0.0000018285, +0.0000018275,0.0000018262,0.0000018248,0.0000018243,0.0000018250, +0.0000018270,0.0000018307,0.0000018371,0.0000018467,0.0000018593, +0.0000018727,0.0000018834,0.0000018897,0.0000018896,0.0000018877, +0.0000018844,0.0000018815,0.0000018796,0.0000018788,0.0000018785, +0.0000018786,0.0000018795,0.0000018814,0.0000018844,0.0000018879, +0.0000018913,0.0000018941,0.0000018957,0.0000018963,0.0000018956, +0.0000018942,0.0000018925,0.0000018912,0.0000018908,0.0000018910, +0.0000018916,0.0000018921,0.0000018923,0.0000018921,0.0000018920, +0.0000018927,0.0000018950,0.0000018980,0.0000019007,0.0000019029, +0.0000019045,0.0000019058,0.0000019068,0.0000019074,0.0000019078, +0.0000019082,0.0000019086,0.0000019089,0.0000019092,0.0000019097, +0.0000019102,0.0000019106,0.0000019112,0.0000019120,0.0000019131, +0.0000019143,0.0000019155,0.0000019163,0.0000019169,0.0000019169, +0.0000019165,0.0000019159,0.0000019151,0.0000019141,0.0000019133, +0.0000019131,0.0000019133,0.0000019135,0.0000019135,0.0000019124, +0.0000019104,0.0000019075,0.0000019037,0.0000018995,0.0000018951, +0.0000018907,0.0000018867,0.0000018829,0.0000018796,0.0000018769, +0.0000018750,0.0000018739,0.0000018731,0.0000018719,0.0000018697, +0.0000018669,0.0000018636,0.0000018611,0.0000018593,0.0000018586, +0.0000018591,0.0000018601,0.0000018609,0.0000018616,0.0000018614, +0.0000018610,0.0000018598,0.0000018580,0.0000018557,0.0000018530, +0.0000018501,0.0000018473,0.0000018447,0.0000018425,0.0000018406, +0.0000018392,0.0000018382,0.0000018374,0.0000018370,0.0000018376, +0.0000018397,0.0000018436,0.0000018494,0.0000018572,0.0000018663, +0.0000018754,0.0000018836,0.0000018899,0.0000018935,0.0000018950, +0.0000018937,0.0000018926,0.0000018911,0.0000018891,0.0000018869, +0.0000018849,0.0000018830,0.0000018814,0.0000018803,0.0000018795, +0.0000018789,0.0000018788,0.0000018790,0.0000018796,0.0000018804, +0.0000018811,0.0000018818,0.0000018824,0.0000018830,0.0000018832, +0.0000018830,0.0000018823,0.0000018811,0.0000018793,0.0000018771, +0.0000018743,0.0000018714,0.0000018688,0.0000018665,0.0000018646, +0.0000018637,0.0000018632,0.0000018632,0.0000018635,0.0000018635, +0.0000018634,0.0000018624,0.0000018603,0.0000018571,0.0000018531, +0.0000018483,0.0000018431,0.0000018378,0.0000018333,0.0000018299, +0.0000018274,0.0000018259,0.0000018246,0.0000018231,0.0000018217, +0.0000018207,0.0000018196,0.0000018182,0.0000018170,0.0000018165, +0.0000018168,0.0000018175,0.0000018187,0.0000018201,0.0000018218, +0.0000018239,0.0000018265,0.0000018300,0.0000018348,0.0000018412, +0.0000018495,0.0000018597,0.0000018717,0.0000018846,0.0000018969, +0.0000019071,0.0000019145,0.0000019198,0.0000019251,0.0000019326, +0.0000019433,0.0000019565,0.0000019698,0.0000019811,0.0000019895, +0.0000019949,0.0000019976,0.0000019988,0.0000019993,0.0000019998, +0.0000020007,0.0000020017,0.0000020023,0.0000020028,0.0000020040, +0.0000020068,0.0000020113,0.0000020165,0.0000020214,0.0000020250, +0.0000020272,0.0000020281,0.0000020282,0.0000020280,0.0000020275, +0.0000020269,0.0000020265,0.0000020265,0.0000020268,0.0000020271, +0.0000020274,0.0000020277,0.0000020281,0.0000020285,0.0000020290, +0.0000020293,0.0000020294,0.0000020296,0.0000020300,0.0000020306, +0.0000020314,0.0000020320,0.0000020326,0.0000020329,0.0000020329, +0.0000020326,0.0000020320,0.0000020313,0.0000020303,0.0000020289, +0.0000020273,0.0000020259,0.0000020248,0.0000020244,0.0000020247, +0.0000020255,0.0000020264,0.0000020274,0.0000020285,0.0000020298, +0.0000020310,0.0000020322,0.0000020332,0.0000020341,0.0000020351, +0.0000020361,0.0000020372,0.0000020382,0.0000020397,0.0000020418, +0.0000020441,0.0000020459,0.0000020470,0.0000020466,0.0000020455, +0.0000020435,0.0000020404,0.0000020367,0.0000020327,0.0000020295, +0.0000020274,0.0000020258,0.0000020238,0.0000020215,0.0000020195, +0.0000020187,0.0000020185,0.0000020186,0.0000020189,0.0000020191, +0.0000020188,0.0000020196,0.0000020239,0.0000020286,0.0000020292, +0.0000020292,0.0000020347,0.0000020408,0.0000020379,0.0000020290, +0.0000020223,0.0000020198,0.0000020186,0.0000020172,0.0000020150, +0.0000020127,0.0000020103,0.0000020059,0.0000020005,0.0000019985, +0.0000020007,0.0000020126,0.0000020318,0.0000020445,0.0000020462, +0.0000020451,0.0000020424,0.0000020316,0.0000020177,0.0000020150, +0.0000020261,0.0000020462,0.0000020676,0.0000020806,0.0000020826, +0.0000020835,0.0000020858,0.0000020882,0.0000020889,0.0000020891, +0.0000020904,0.0000020928,0.0000020958,0.0000020989,0.0000021016, +0.0000021042,0.0000021074,0.0000021110,0.0000021150,0.0000021188, +0.0000021219,0.0000021240,0.0000021252,0.0000021259,0.0000021261, +0.0000021258,0.0000021253,0.0000021251,0.0000021254,0.0000021260, +0.0000021267,0.0000021277,0.0000021287,0.0000021294,0.0000021298, +0.0000021300,0.0000021299,0.0000021291,0.0000021276,0.0000021256, +0.0000021235,0.0000021216,0.0000021200,0.0000021180,0.0000021157, +0.0000021131,0.0000021104,0.0000021076,0.0000021050,0.0000021025, +0.0000021000,0.0000020974,0.0000020947,0.0000020923,0.0000020907, +0.0000020897,0.0000020893,0.0000020891,0.0000020889,0.0000020888, +0.0000020889,0.0000020893,0.0000020899,0.0000020903,0.0000020907, +0.0000020910,0.0000020912,0.0000020915,0.0000020920,0.0000020926, +0.0000020932,0.0000020934,0.0000020933,0.0000020932,0.0000020930, +0.0000020925,0.0000020914,0.0000020902,0.0000020889,0.0000020875, +0.0000020858,0.0000020839,0.0000020819,0.0000020805,0.0000020794, +0.0000020781,0.0000020763,0.0000020740,0.0000020712,0.0000020681, +0.0000020650,0.0000020625,0.0000020608,0.0000020590,0.0000020581, +0.0000020572,0.0000020564,0.0000020558,0.0000020556,0.0000020556, +0.0000020555,0.0000020554,0.0000020553,0.0000020554,0.0000020555, +0.0000020557,0.0000020561,0.0000020567,0.0000020574,0.0000020582, +0.0000020594,0.0000020609,0.0000020626,0.0000020645,0.0000020668, +0.0000020693,0.0000020717,0.0000020739,0.0000020759,0.0000020778, +0.0000020796,0.0000020813,0.0000020830,0.0000020847,0.0000020864, +0.0000020886,0.0000020916,0.0000020953,0.0000020987,0.0000021013, +0.0000021031,0.0000021045,0.0000021051,0.0000021054,0.0000021048, +0.0000021030,0.0000021024,0.0000021005,0.0000020983,0.0000020960, +0.0000020938,0.0000020914,0.0000020889,0.0000020860,0.0000020826, +0.0000020789,0.0000020751,0.0000020713,0.0000020677,0.0000020642, +0.0000020609,0.0000020576,0.0000020544,0.0000020518,0.0000020501, +0.0000020491,0.0000020488,0.0000020493,0.0000020504,0.0000020516, +0.0000020526,0.0000020537,0.0000020544,0.0000020550,0.0000020553, +0.0000020552,0.0000020548,0.0000020544,0.0000020542,0.0000020543, +0.0000020549,0.0000020559,0.0000020569,0.0000020577,0.0000020583, +0.0000020585,0.0000020585,0.0000020580,0.0000020573,0.0000020563, +0.0000020546,0.0000020523,0.0000020501,0.0000020479,0.0000020462, +0.0000020453,0.0000020454,0.0000020465,0.0000020483,0.0000020501, +0.0000020517,0.0000020529,0.0000020537,0.0000020542,0.0000020546, +0.0000020553,0.0000020562,0.0000020570,0.0000020578,0.0000020588, +0.0000020598,0.0000020608,0.0000020618,0.0000020631,0.0000020644, +0.0000020652,0.0000020656,0.0000020664,0.0000020674,0.0000020680, +0.0000020686,0.0000020695,0.0000020705,0.0000020713,0.0000020719, +0.0000020725,0.0000020731,0.0000020734,0.0000020735,0.0000020736, +0.0000020738,0.0000020736,0.0000020726,0.0000020710,0.0000020695, +0.0000020679,0.0000020660,0.0000020648,0.0000020642,0.0000020639, +0.0000020637,0.0000020637,0.0000020636,0.0000020634,0.0000020631, +0.0000020625,0.0000020616,0.0000020606,0.0000020595,0.0000020585, +0.0000020577,0.0000020574,0.0000020577,0.0000020584,0.0000020600, +0.0000020620,0.0000020640,0.0000020658,0.0000020673,0.0000020683, +0.0000020689,0.0000020691,0.0000020695,0.0000020707,0.0000020725, +0.0000020748,0.0000020757,0.0000020756,0.0000020729,0.0000020676, +0.0000020610,0.0000020548,0.0000020505,0.0000020482,0.0000020469, +0.0000020453,0.0000020435,0.0000020421,0.0000020412,0.0000020407, +0.0000020403,0.0000020398,0.0000020390,0.0000020380,0.0000020367, +0.0000020351,0.0000020341,0.0000020347,0.0000020369,0.0000020400, +0.0000020435,0.0000020470,0.0000020501,0.0000020524,0.0000020544, +0.0000020564,0.0000020600,0.0000020654,0.0000020714,0.0000020769, +0.0000020814,0.0000020848,0.0000020873,0.0000020893,0.0000020907, +0.0000020912,0.0000020909,0.0000020893,0.0000020859,0.0000020816, +0.0000020778,0.0000020753,0.0000020744,0.0000020751,0.0000020772, +0.0000020803,0.0000020838,0.0000020874,0.0000020906,0.0000020926, +0.0000020933,0.0000020926,0.0000020904,0.0000020873,0.0000020835, +0.0000020790,0.0000020743,0.0000020702,0.0000020673,0.0000020659, +0.0000020663,0.0000020671,0.0000020679,0.0000020684,0.0000020684, +0.0000020684,0.0000020681,0.0000020675,0.0000020663,0.0000020645, +0.0000020616,0.0000020574,0.0000020526,0.0000020481,0.0000020444, +0.0000020412,0.0000020381,0.0000020349,0.0000020320,0.0000020299, +0.0000020278,0.0000020256,0.0000020234,0.0000020218,0.0000020209, +0.0000020204,0.0000020206,0.0000020211,0.0000020217,0.0000020223, +0.0000020230,0.0000020234,0.0000020232,0.0000020226,0.0000020218, +0.0000020198,0.0000020168,0.0000020139,0.0000020123,0.0000020120, +0.0000020127,0.0000020146,0.0000020169,0.0000020188,0.0000020207, +0.0000020227,0.0000020243,0.0000020255,0.0000020264,0.0000020268, +0.0000020269,0.0000020267,0.0000020259,0.0000020246,0.0000020228, +0.0000020202,0.0000020166,0.0000020125,0.0000020080,0.0000020033, +0.0000019986,0.0000019939,0.0000019905,0.0000019877,0.0000019862, +0.0000019863,0.0000019878,0.0000019898,0.0000019910,0.0000019912, +0.0000019907,0.0000019897,0.0000019887,0.0000019874,0.0000019859, +0.0000019842,0.0000019827,0.0000019816,0.0000019810,0.0000019811, +0.0000019819,0.0000019834,0.0000019848,0.0000019857,0.0000019866, +0.0000019876,0.0000019888,0.0000019903,0.0000019919,0.0000019933, +0.0000019944,0.0000019956,0.0000019973,0.0000019994,0.0000020016, +0.0000020037,0.0000020055,0.0000020068,0.0000020078,0.0000020085, +0.0000020089,0.0000020089,0.0000020086,0.0000020079,0.0000020067, +0.0000020056,0.0000020053,0.0000020048,0.0000020057,0.0000020081, +0.0000020110,0.0000020149,0.0000020191,0.0000020226,0.0000020256, +0.0000020279,0.0000020288,0.0000020282,0.0000020259,0.0000020230, +0.0000020190,0.0000020148,0.0000020109,0.0000020073,0.0000020043, +0.0000020019,0.0000019996,0.0000019966,0.0000019931,0.0000019890, +0.0000019850,0.0000019812,0.0000019785,0.0000019777,0.0000019785, +0.0000019799,0.0000019827,0.0000019863,0.0000019891,0.0000019908, +0.0000019923,0.0000019918,0.0000019903,0.0000019882,0.0000019853, +0.0000019823,0.0000019795,0.0000019772,0.0000019766,0.0000019764, +0.0000019763,0.0000019764,0.0000019757,0.0000019747,0.0000019730, +0.0000019698,0.0000019647,0.0000019583,0.0000019515,0.0000019456, +0.0000019422,0.0000019422,0.0000019429,0.0000019458,0.0000019491, +0.0000019527,0.0000019565,0.0000019602,0.0000019637,0.0000019665, +0.0000019681,0.0000019690,0.0000019702,0.0000019720,0.0000019740, +0.0000019761,0.0000019785,0.0000019812,0.0000019844,0.0000019880, +0.0000019922,0.0000019971,0.0000020025,0.0000020081,0.0000020129, +0.0000020162,0.0000020178,0.0000020179,0.0000020172,0.0000020166, +0.0000020169,0.0000020186,0.0000020223,0.0000020270,0.0000020316, +0.0000020355,0.0000020387,0.0000020415,0.0000020437,0.0000020450, +0.0000020455,0.0000020458,0.0000020458,0.0000020457,0.0000020452, +0.0000020441,0.0000020425,0.0000020404,0.0000020382,0.0000020360, +0.0000020336,0.0000020308,0.0000020276,0.0000020240,0.0000020197, +0.0000020146,0.0000020087,0.0000020027,0.0000019972,0.0000019922, +0.0000019873,0.0000019825,0.0000019781,0.0000019746,0.0000019725, +0.0000019720,0.0000019725,0.0000019739,0.0000019754,0.0000019765, +0.0000019776,0.0000019785,0.0000019787,0.0000019782,0.0000019760, +0.0000019723,0.0000019680,0.0000019642,0.0000019615,0.0000019602, +0.0000019600,0.0000019603,0.0000019610,0.0000019622,0.0000019636, +0.0000019649,0.0000019662,0.0000019672,0.0000019682,0.0000019690, +0.0000019694,0.0000019696,0.0000019694,0.0000019685,0.0000019670, +0.0000019654,0.0000019636,0.0000019616,0.0000019595,0.0000019574, +0.0000019549,0.0000019519,0.0000019486,0.0000019456,0.0000019425, +0.0000019387,0.0000019345,0.0000019307,0.0000019277,0.0000019254, +0.0000019235,0.0000019219,0.0000019211,0.0000019207,0.0000019202, +0.0000019193,0.0000019175,0.0000019146,0.0000019112,0.0000019082, +0.0000019062,0.0000019055,0.0000019052,0.0000019043,0.0000019029, +0.0000019021,0.0000019022,0.0000019031,0.0000019047,0.0000019063, +0.0000019071,0.0000019070,0.0000019068,0.0000019068,0.0000019069, +0.0000019067,0.0000019067,0.0000019073,0.0000019080,0.0000019081, +0.0000019076,0.0000019066,0.0000019044,0.0000019013,0.0000018976, +0.0000018941,0.0000018906,0.0000018864,0.0000018814,0.0000018760, +0.0000018711,0.0000018683,0.0000018681,0.0000018705,0.0000018740, +0.0000018785,0.0000018837,0.0000018888,0.0000018930,0.0000018957, +0.0000018970,0.0000018977,0.0000018980,0.0000018982,0.0000018986, +0.0000018996,0.0000019018,0.0000019052,0.0000019103,0.0000019178, +0.0000019269,0.0000019370,0.0000019471,0.0000019563,0.0000019641, +0.0000019687,0.0000019716,0.0000019718,0.0000019696,0.0000019681, +0.0000019659,0.0000019659,0.0000019681,0.0000019715,0.0000019763, +0.0000019814,0.0000019859,0.0000019893,0.0000019901,0.0000019899, +0.0000019888,0.0000019856,0.0000019815,0.0000019771,0.0000019725, +0.0000019685,0.0000019646,0.0000019611,0.0000019585,0.0000019576, +0.0000019564,0.0000019569,0.0000019576,0.0000019587,0.0000019597, +0.0000019596,0.0000019583,0.0000019553,0.0000019504,0.0000019435, +0.0000019345,0.0000019244,0.0000019147,0.0000019076,0.0000019041, +0.0000019040,0.0000019069,0.0000019109,0.0000019142,0.0000019164, +0.0000019180,0.0000019193,0.0000019204,0.0000019214,0.0000019224, +0.0000019231,0.0000019227,0.0000019215,0.0000019209,0.0000019213, +0.0000019212,0.0000019196,0.0000019165,0.0000019126,0.0000019084, +0.0000019030,0.0000018960,0.0000018892,0.0000018859,0.0000018845, +0.0000018863,0.0000018915,0.0000018983,0.0000019045,0.0000019083, +0.0000019100,0.0000019110,0.0000019121,0.0000019124,0.0000019107, +0.0000019064,0.0000019007,0.0000018954,0.0000018909,0.0000018859, +0.0000018773,0.0000018643,0.0000018512,0.0000018424,0.0000018393, +0.0000018412,0.0000018465,0.0000018523,0.0000018558,0.0000018571, +0.0000018575,0.0000018572,0.0000018560,0.0000018549,0.0000018544, +0.0000018540,0.0000018530,0.0000018514,0.0000018498,0.0000018492, +0.0000018495,0.0000018501,0.0000018506,0.0000018509,0.0000018516, +0.0000018526,0.0000018539,0.0000018549,0.0000018556,0.0000018557, +0.0000018549,0.0000018526,0.0000018498,0.0000018483,0.0000018477, +0.0000018461,0.0000018431,0.0000018375,0.0000018304,0.0000018244, +0.0000018179,0.0000018142,0.0000018136,0.0000018152,0.0000018190, +0.0000018225,0.0000018247,0.0000018259,0.0000018265,0.0000018267, +0.0000018271,0.0000018277,0.0000018280,0.0000018281,0.0000018283, +0.0000018286,0.0000018292,0.0000018301,0.0000018312,0.0000018330, +0.0000018349,0.0000018370,0.0000018391,0.0000018411,0.0000018429, +0.0000018441,0.0000018443,0.0000018434,0.0000018412,0.0000018377, +0.0000018328,0.0000018273,0.0000018217,0.0000018156,0.0000018083, +0.0000018003,0.0000017916,0.0000017835,0.0000017779,0.0000017761, +0.0000017782,0.0000017831,0.0000017895,0.0000017974,0.0000018060, +0.0000018131,0.0000018177,0.0000018203,0.0000018222,0.0000018234, +0.0000018239,0.0000018237,0.0000018229,0.0000018211,0.0000018181, +0.0000018138,0.0000018078,0.0000018013,0.0000017957,0.0000017922, +0.0000017901,0.0000017900,0.0000017935,0.0000017981,0.0000018004, +0.0000018003,0.0000017979,0.0000017941,0.0000017893,0.0000017850, +0.0000017831,0.0000017831,0.0000017827,0.0000017798,0.0000017740, +0.0000017693,0.0000017694,0.0000017751,0.0000017863,0.0000017966, +0.0000018018,0.0000018039,0.0000018060,0.0000018120,0.0000018249, +0.0000018371,0.0000018410,0.0000018411,0.0000018424,0.0000018476, +0.0000018552,0.0000018599,0.0000018651,0.0000018736,0.0000018832, +0.0000018897,0.0000018924,0.0000018929,0.0000018915,0.0000018881, +0.0000018857,0.0000018871,0.0000018933,0.0000019004,0.0000019056, +0.0000019084,0.0000019066,0.0000018972,0.0000018858,0.0000018787, +0.0000018765,0.0000018764,0.0000018764,0.0000018769,0.0000018787, +0.0000018824,0.0000018867,0.0000018891,0.0000018889,0.0000018867, +0.0000018843,0.0000018827,0.0000018816,0.0000018809,0.0000018804, +0.0000018807,0.0000018824,0.0000018849,0.0000018879,0.0000018934, +0.0000019022,0.0000019084,0.0000019047,0.0000019000,0.0000019063, +0.0000019044,0.0000018771,0.0000018549,0.0000018516,0.0000018508, +0.0000018494,0.0000018495,0.0000018515,0.0000018541,0.0000018562, +0.0000018574,0.0000018578,0.0000018572,0.0000018552,0.0000018525, +0.0000018502,0.0000018484,0.0000018470,0.0000018459,0.0000018447, +0.0000018410,0.0000018328,0.0000018247,0.0000018215,0.0000018206, +0.0000018159,0.0000018046,0.0000017916,0.0000017842,0.0000017828, +0.0000017841,0.0000017863,0.0000017886,0.0000017902,0.0000017902, +0.0000017905,0.0000017908,0.0000017909,0.0000017906,0.0000017901, +0.0000017898,0.0000017898,0.0000017899,0.0000017901,0.0000017902, +0.0000017901,0.0000017901,0.0000017902,0.0000017901,0.0000017899, +0.0000017896,0.0000017906,0.0000017922,0.0000017935,0.0000017954, +0.0000017982,0.0000018022,0.0000018081,0.0000018164,0.0000018270, +0.0000018395,0.0000018520,0.0000018629,0.0000018709,0.0000018760, +0.0000018797,0.0000018830,0.0000018867,0.0000018905,0.0000018934, +0.0000018948,0.0000018949,0.0000018944,0.0000018936,0.0000018928, +0.0000018923,0.0000018921,0.0000018917,0.0000018906,0.0000018892, +0.0000018872,0.0000018849,0.0000018827,0.0000018806,0.0000018786, +0.0000018767,0.0000018750,0.0000018736,0.0000018725,0.0000018720, +0.0000018721,0.0000018730,0.0000018745,0.0000018764,0.0000018786, +0.0000018808,0.0000018827,0.0000018841,0.0000018851,0.0000018857, +0.0000018862,0.0000018869,0.0000018880,0.0000018892,0.0000018907, +0.0000018922,0.0000018934,0.0000018947,0.0000018961,0.0000018974, +0.0000018986,0.0000018995,0.0000018998,0.0000018997,0.0000018994, +0.0000018988,0.0000018979,0.0000018968,0.0000018954,0.0000018942, +0.0000018934,0.0000018928,0.0000018923,0.0000018917,0.0000018908, +0.0000018897,0.0000018888,0.0000018882,0.0000018877,0.0000018873, +0.0000018867,0.0000018858,0.0000018846,0.0000018831,0.0000018813, +0.0000018790,0.0000018769,0.0000018750,0.0000018731,0.0000018712, +0.0000018693,0.0000018674,0.0000018655,0.0000018638,0.0000018623, +0.0000018609,0.0000018599,0.0000018592,0.0000018586,0.0000018581, +0.0000018577,0.0000018575,0.0000018575,0.0000018578,0.0000018583, +0.0000018588,0.0000018591,0.0000018595,0.0000018597,0.0000018598, +0.0000018596,0.0000018588,0.0000018574,0.0000018555,0.0000018532, +0.0000018506,0.0000018571,0.0000018541,0.0000018509,0.0000018481, +0.0000018468,0.0000018460,0.0000018464,0.0000018481,0.0000018506, +0.0000018534,0.0000018549,0.0000018554,0.0000018548,0.0000018530, +0.0000018500,0.0000018457,0.0000018403,0.0000018349,0.0000018305, +0.0000018283,0.0000018271,0.0000018261,0.0000018248,0.0000018234, +0.0000018217,0.0000018209,0.0000018215,0.0000018237,0.0000018280, +0.0000018350,0.0000018449,0.0000018572,0.0000018697,0.0000018795, +0.0000018849,0.0000018844,0.0000018826,0.0000018797,0.0000018773, +0.0000018757,0.0000018749,0.0000018747,0.0000018751,0.0000018762, +0.0000018783,0.0000018814,0.0000018850,0.0000018884,0.0000018908, +0.0000018921,0.0000018923,0.0000018913,0.0000018897,0.0000018880, +0.0000018863,0.0000018853,0.0000018851,0.0000018855,0.0000018863, +0.0000018871,0.0000018880,0.0000018897,0.0000018924,0.0000018955, +0.0000018985,0.0000019012,0.0000019036,0.0000019054,0.0000019066, +0.0000019073,0.0000019076,0.0000019078,0.0000019078,0.0000019079, +0.0000019080,0.0000019083,0.0000019084,0.0000019087,0.0000019092, +0.0000019099,0.0000019106,0.0000019115,0.0000019123,0.0000019129, +0.0000019132,0.0000019133,0.0000019132,0.0000019127,0.0000019119, +0.0000019109,0.0000019099,0.0000019091,0.0000019086,0.0000019084, +0.0000019081,0.0000019075,0.0000019062,0.0000019039,0.0000019010, +0.0000018973,0.0000018933,0.0000018893,0.0000018856,0.0000018822, +0.0000018788,0.0000018755,0.0000018730,0.0000018709,0.0000018695, +0.0000018684,0.0000018671,0.0000018649,0.0000018623,0.0000018598, +0.0000018583,0.0000018574,0.0000018575,0.0000018580,0.0000018589, +0.0000018595,0.0000018598,0.0000018594,0.0000018585,0.0000018571, +0.0000018552,0.0000018529,0.0000018502,0.0000018473,0.0000018444, +0.0000018416,0.0000018394,0.0000018376,0.0000018362,0.0000018352, +0.0000018344,0.0000018341,0.0000018349,0.0000018369,0.0000018405, +0.0000018457,0.0000018524,0.0000018603,0.0000018687,0.0000018761, +0.0000018821,0.0000018860,0.0000018886,0.0000018906,0.0000018898, +0.0000018897,0.0000018895,0.0000018890,0.0000018885,0.0000018880, +0.0000018874,0.0000018872,0.0000018875,0.0000018883,0.0000018893, +0.0000018901,0.0000018908,0.0000018914,0.0000018921,0.0000018926, +0.0000018927,0.0000018923,0.0000018915,0.0000018903,0.0000018883, +0.0000018858,0.0000018827,0.0000018791,0.0000018756,0.0000018721, +0.0000018687,0.0000018661,0.0000018643,0.0000018633,0.0000018633, +0.0000018634,0.0000018638,0.0000018642,0.0000018644,0.0000018640, +0.0000018629,0.0000018606,0.0000018571,0.0000018525,0.0000018471, +0.0000018414,0.0000018358,0.0000018307,0.0000018266,0.0000018233, +0.0000018212,0.0000018200,0.0000018187,0.0000018170,0.0000018153, +0.0000018139,0.0000018133,0.0000018135,0.0000018142,0.0000018153, +0.0000018164,0.0000018177,0.0000018191,0.0000018208,0.0000018232, +0.0000018265,0.0000018312,0.0000018379,0.0000018472,0.0000018596, +0.0000018742,0.0000018891,0.0000019021,0.0000019114,0.0000019173, +0.0000019220,0.0000019283,0.0000019376,0.0000019495,0.0000019622, +0.0000019739,0.0000019828,0.0000019886,0.0000019918,0.0000019935, +0.0000019946,0.0000019956,0.0000019968,0.0000019980,0.0000019987, +0.0000019994,0.0000020009,0.0000020039,0.0000020079,0.0000020125, +0.0000020167,0.0000020201,0.0000020226,0.0000020244,0.0000020255, +0.0000020260,0.0000020261,0.0000020261,0.0000020262,0.0000020264, +0.0000020265,0.0000020266,0.0000020264,0.0000020259,0.0000020255, +0.0000020249,0.0000020243,0.0000020237,0.0000020235,0.0000020237, +0.0000020245,0.0000020255,0.0000020266,0.0000020277,0.0000020286, +0.0000020290,0.0000020290,0.0000020286,0.0000020278,0.0000020266, +0.0000020251,0.0000020236,0.0000020221,0.0000020209,0.0000020204, +0.0000020205,0.0000020211,0.0000020217,0.0000020225,0.0000020236, +0.0000020246,0.0000020252,0.0000020256,0.0000020258,0.0000020258, +0.0000020257,0.0000020259,0.0000020264,0.0000020276,0.0000020296, +0.0000020323,0.0000020352,0.0000020381,0.0000020406,0.0000020424, +0.0000020431,0.0000020425,0.0000020412,0.0000020384,0.0000020343, +0.0000020301,0.0000020267,0.0000020242,0.0000020217,0.0000020192, +0.0000020174,0.0000020166,0.0000020162,0.0000020162,0.0000020165, +0.0000020164,0.0000020161,0.0000020173,0.0000020223,0.0000020262, +0.0000020258,0.0000020270,0.0000020345,0.0000020390,0.0000020357, +0.0000020277,0.0000020236,0.0000020227,0.0000020213,0.0000020185, +0.0000020150,0.0000020121,0.0000020092,0.0000020041,0.0000019991, +0.0000019980,0.0000020028,0.0000020178,0.0000020369,0.0000020465, +0.0000020470,0.0000020459,0.0000020405,0.0000020272,0.0000020164, +0.0000020175,0.0000020294,0.0000020487,0.0000020690,0.0000020810, +0.0000020825,0.0000020833,0.0000020852,0.0000020877,0.0000020884, +0.0000020880,0.0000020879,0.0000020892,0.0000020919,0.0000020953, +0.0000020986,0.0000021015,0.0000021039,0.0000021060,0.0000021082, +0.0000021106,0.0000021128,0.0000021148,0.0000021167,0.0000021183, +0.0000021193,0.0000021198,0.0000021200,0.0000021202,0.0000021205, +0.0000021206,0.0000021205,0.0000021205,0.0000021208,0.0000021215, +0.0000021225,0.0000021234,0.0000021239,0.0000021239,0.0000021233, +0.0000021221,0.0000021208,0.0000021195,0.0000021177,0.0000021156, +0.0000021134,0.0000021110,0.0000021084,0.0000021055,0.0000021025, +0.0000020997,0.0000020969,0.0000020942,0.0000020918,0.0000020902, +0.0000020896,0.0000020894,0.0000020893,0.0000020891,0.0000020891, +0.0000020893,0.0000020897,0.0000020904,0.0000020912,0.0000020918, +0.0000020924,0.0000020930,0.0000020938,0.0000020950,0.0000020961, +0.0000020970,0.0000020975,0.0000020975,0.0000020975,0.0000020972, +0.0000020965,0.0000020952,0.0000020936,0.0000020919,0.0000020899, +0.0000020876,0.0000020850,0.0000020828,0.0000020812,0.0000020801, +0.0000020789,0.0000020774,0.0000020755,0.0000020730,0.0000020700, +0.0000020667,0.0000020636,0.0000020609,0.0000020585,0.0000020565, +0.0000020545,0.0000020524,0.0000020505,0.0000020489,0.0000020477, +0.0000020466,0.0000020456,0.0000020448,0.0000020440,0.0000020431, +0.0000020426,0.0000020425,0.0000020426,0.0000020430,0.0000020436, +0.0000020445,0.0000020457,0.0000020473,0.0000020491,0.0000020511, +0.0000020534,0.0000020559,0.0000020580,0.0000020599,0.0000020617, +0.0000020635,0.0000020651,0.0000020665,0.0000020681,0.0000020701, +0.0000020730,0.0000020767,0.0000020808,0.0000020847,0.0000020881, +0.0000020911,0.0000020936,0.0000020955,0.0000020971,0.0000020982, +0.0000020989,0.0000020991,0.0000020991,0.0000020987,0.0000020983, +0.0000020974,0.0000020964,0.0000020952,0.0000020933,0.0000020916, +0.0000020897,0.0000020870,0.0000020845,0.0000020818,0.0000020791, +0.0000020762,0.0000020733,0.0000020701,0.0000020667,0.0000020635, +0.0000020608,0.0000020588,0.0000020574,0.0000020568,0.0000020565, +0.0000020563,0.0000020563,0.0000020565,0.0000020567,0.0000020567, +0.0000020565,0.0000020560,0.0000020555,0.0000020553,0.0000020554, +0.0000020561,0.0000020569,0.0000020578,0.0000020585,0.0000020589, +0.0000020589,0.0000020586,0.0000020579,0.0000020567,0.0000020551, +0.0000020528,0.0000020500,0.0000020473,0.0000020449,0.0000020429, +0.0000020421,0.0000020424,0.0000020436,0.0000020455,0.0000020475, +0.0000020495,0.0000020511,0.0000020520,0.0000020521,0.0000020521, +0.0000020521,0.0000020521,0.0000020523,0.0000020527,0.0000020535, +0.0000020545,0.0000020555,0.0000020568,0.0000020586,0.0000020603, +0.0000020612,0.0000020616,0.0000020622,0.0000020629,0.0000020637, +0.0000020643,0.0000020650,0.0000020658,0.0000020665,0.0000020671, +0.0000020677,0.0000020681,0.0000020683,0.0000020682,0.0000020680, +0.0000020679,0.0000020677,0.0000020669,0.0000020657,0.0000020648, +0.0000020640,0.0000020631,0.0000020622,0.0000020617,0.0000020615, +0.0000020614,0.0000020617,0.0000020621,0.0000020626,0.0000020630, +0.0000020633,0.0000020636,0.0000020640,0.0000020644,0.0000020646, +0.0000020647,0.0000020646,0.0000020642,0.0000020637,0.0000020633, +0.0000020631,0.0000020632,0.0000020632,0.0000020636,0.0000020644, +0.0000020652,0.0000020656,0.0000020656,0.0000020654,0.0000020657, +0.0000020669,0.0000020693,0.0000020727,0.0000020747,0.0000020744, +0.0000020706,0.0000020640,0.0000020566,0.0000020506,0.0000020473, +0.0000020457,0.0000020442,0.0000020421,0.0000020399,0.0000020381, +0.0000020376,0.0000020380,0.0000020381,0.0000020377,0.0000020365, +0.0000020349,0.0000020335,0.0000020328,0.0000020334,0.0000020351, +0.0000020374,0.0000020400,0.0000020423,0.0000020444,0.0000020466, +0.0000020498,0.0000020552,0.0000020616,0.0000020680,0.0000020740, +0.0000020791,0.0000020830,0.0000020861,0.0000020884,0.0000020899, +0.0000020903,0.0000020897,0.0000020878,0.0000020842,0.0000020797, +0.0000020752,0.0000020714,0.0000020691,0.0000020688,0.0000020707, +0.0000020742,0.0000020785,0.0000020826,0.0000020858,0.0000020880, +0.0000020890,0.0000020888,0.0000020873,0.0000020850,0.0000020820, +0.0000020781,0.0000020739,0.0000020697,0.0000020661,0.0000020644, +0.0000020638,0.0000020642,0.0000020651,0.0000020662,0.0000020673, +0.0000020681,0.0000020681,0.0000020676,0.0000020666,0.0000020647, +0.0000020615,0.0000020572,0.0000020527,0.0000020487,0.0000020459, +0.0000020430,0.0000020400,0.0000020370,0.0000020344,0.0000020321, +0.0000020297,0.0000020272,0.0000020248,0.0000020227,0.0000020212, +0.0000020201,0.0000020198,0.0000020199,0.0000020202,0.0000020208, +0.0000020208,0.0000020204,0.0000020200,0.0000020194,0.0000020179, +0.0000020153,0.0000020122,0.0000020093,0.0000020074,0.0000020069, +0.0000020073,0.0000020087,0.0000020106,0.0000020126,0.0000020150, +0.0000020171,0.0000020188,0.0000020203,0.0000020213,0.0000020216, +0.0000020216,0.0000020211,0.0000020202,0.0000020189,0.0000020171, +0.0000020148,0.0000020120,0.0000020088,0.0000020050,0.0000020009, +0.0000019966,0.0000019924,0.0000019886,0.0000019859,0.0000019854, +0.0000019858,0.0000019871,0.0000019879,0.0000019878,0.0000019869, +0.0000019854,0.0000019840,0.0000019828,0.0000019819,0.0000019808, +0.0000019795,0.0000019785,0.0000019782,0.0000019782,0.0000019790, +0.0000019799,0.0000019808,0.0000019815,0.0000019821,0.0000019827, +0.0000019833,0.0000019843,0.0000019855,0.0000019866,0.0000019876, +0.0000019889,0.0000019908,0.0000019933,0.0000019963,0.0000019993, +0.0000020020,0.0000020044,0.0000020062,0.0000020076,0.0000020085, +0.0000020089,0.0000020092,0.0000020091,0.0000020085,0.0000020077, +0.0000020066,0.0000020055,0.0000020050,0.0000020048,0.0000020048, +0.0000020053,0.0000020067,0.0000020087,0.0000020108,0.0000020130, +0.0000020148,0.0000020163,0.0000020174,0.0000020175,0.0000020166, +0.0000020151,0.0000020131,0.0000020105,0.0000020082,0.0000020064, +0.0000020048,0.0000020033,0.0000020011,0.0000019982,0.0000019947, +0.0000019909,0.0000019868,0.0000019830,0.0000019796,0.0000019779, +0.0000019766,0.0000019779,0.0000019799,0.0000019828,0.0000019868, +0.0000019906,0.0000019924,0.0000019945,0.0000019945,0.0000019924, +0.0000019895,0.0000019857,0.0000019821,0.0000019792,0.0000019765, +0.0000019753,0.0000019744,0.0000019740,0.0000019742,0.0000019738, +0.0000019716,0.0000019678,0.0000019625,0.0000019566,0.0000019515, +0.0000019480,0.0000019464,0.0000019457,0.0000019465,0.0000019477, +0.0000019498,0.0000019529,0.0000019569,0.0000019612,0.0000019643, +0.0000019660,0.0000019666,0.0000019670,0.0000019678,0.0000019693, +0.0000019720,0.0000019756,0.0000019792,0.0000019828,0.0000019872, +0.0000019922,0.0000019977,0.0000020032,0.0000020083,0.0000020126, +0.0000020154,0.0000020166,0.0000020162,0.0000020151,0.0000020142, +0.0000020145,0.0000020165,0.0000020203,0.0000020248,0.0000020290, +0.0000020328,0.0000020366,0.0000020400,0.0000020424,0.0000020439, +0.0000020449,0.0000020453,0.0000020455,0.0000020453,0.0000020450, +0.0000020444,0.0000020431,0.0000020414,0.0000020392,0.0000020364, +0.0000020328,0.0000020285,0.0000020234,0.0000020175,0.0000020112, +0.0000020049,0.0000019993,0.0000019941,0.0000019891,0.0000019841, +0.0000019793,0.0000019753,0.0000019725,0.0000019710,0.0000019706, +0.0000019714,0.0000019727,0.0000019737,0.0000019746,0.0000019755, +0.0000019762,0.0000019764,0.0000019761,0.0000019744,0.0000019714, +0.0000019674,0.0000019633,0.0000019601,0.0000019578,0.0000019565, +0.0000019562,0.0000019568,0.0000019583,0.0000019602,0.0000019622, +0.0000019642,0.0000019663,0.0000019682,0.0000019698,0.0000019711, +0.0000019723,0.0000019730,0.0000019730,0.0000019722,0.0000019711, +0.0000019697,0.0000019679,0.0000019656,0.0000019630,0.0000019599, +0.0000019564,0.0000019526,0.0000019486,0.0000019443,0.0000019393, +0.0000019342,0.0000019292,0.0000019246,0.0000019204,0.0000019165, +0.0000019134,0.0000019114,0.0000019104,0.0000019101,0.0000019101, +0.0000019098,0.0000019083,0.0000019052,0.0000019014,0.0000018987, +0.0000018979,0.0000018981,0.0000018984,0.0000018983,0.0000018979, +0.0000018974,0.0000018974,0.0000018986,0.0000019008,0.0000019027, +0.0000019037,0.0000019040,0.0000019042,0.0000019041,0.0000019037, +0.0000019036,0.0000019043,0.0000019050,0.0000019055,0.0000019063, +0.0000019065,0.0000019057,0.0000019032,0.0000018994,0.0000018953, +0.0000018914,0.0000018876,0.0000018834,0.0000018783,0.0000018730, +0.0000018691,0.0000018684,0.0000018694,0.0000018717,0.0000018750, +0.0000018792,0.0000018839,0.0000018883,0.0000018915,0.0000018936, +0.0000018945,0.0000018946,0.0000018941,0.0000018934,0.0000018932, +0.0000018936,0.0000018949,0.0000018978,0.0000019027,0.0000019091, +0.0000019170,0.0000019260,0.0000019359,0.0000019465,0.0000019561, +0.0000019640,0.0000019679,0.0000019696,0.0000019699,0.0000019675, +0.0000019667,0.0000019664,0.0000019675,0.0000019707,0.0000019749, +0.0000019798,0.0000019849,0.0000019884,0.0000019912,0.0000019921, +0.0000019904,0.0000019878,0.0000019843,0.0000019800,0.0000019754, +0.0000019704,0.0000019658,0.0000019619,0.0000019588,0.0000019568, +0.0000019562,0.0000019549,0.0000019551,0.0000019554,0.0000019552, +0.0000019542,0.0000019520,0.0000019484,0.0000019429,0.0000019356, +0.0000019260,0.0000019156,0.0000019070,0.0000019023,0.0000019008, +0.0000019025,0.0000019055,0.0000019087,0.0000019108,0.0000019125, +0.0000019141,0.0000019156,0.0000019167,0.0000019178,0.0000019188, +0.0000019190,0.0000019184,0.0000019183,0.0000019190,0.0000019198, +0.0000019190,0.0000019164,0.0000019127,0.0000019085,0.0000019031, +0.0000018960,0.0000018888,0.0000018838,0.0000018814,0.0000018826, +0.0000018876,0.0000018952,0.0000019027,0.0000019074,0.0000019091, +0.0000019098,0.0000019108,0.0000019112,0.0000019098,0.0000019060, +0.0000019009,0.0000018960,0.0000018915,0.0000018861,0.0000018770, +0.0000018635,0.0000018495,0.0000018401,0.0000018372,0.0000018396, +0.0000018452,0.0000018509,0.0000018544,0.0000018558,0.0000018561, +0.0000018557,0.0000018549,0.0000018545,0.0000018540,0.0000018528, +0.0000018508,0.0000018483,0.0000018466,0.0000018460,0.0000018463, +0.0000018465,0.0000018464,0.0000018464,0.0000018472,0.0000018486, +0.0000018498,0.0000018505,0.0000018509,0.0000018506,0.0000018484, +0.0000018453,0.0000018434,0.0000018427,0.0000018412,0.0000018379, +0.0000018323,0.0000018266,0.0000018209,0.0000018149,0.0000018125, +0.0000018129,0.0000018168,0.0000018214,0.0000018246,0.0000018266, +0.0000018279,0.0000018288,0.0000018295,0.0000018305,0.0000018316, +0.0000018321,0.0000018327,0.0000018333,0.0000018340,0.0000018348, +0.0000018357,0.0000018371,0.0000018385,0.0000018399,0.0000018415, +0.0000018434,0.0000018450,0.0000018460,0.0000018461,0.0000018453, +0.0000018432,0.0000018401,0.0000018360,0.0000018309,0.0000018257, +0.0000018205,0.0000018149,0.0000018085,0.0000018014,0.0000017937, +0.0000017855,0.0000017791,0.0000017757,0.0000017755,0.0000017778, +0.0000017824,0.0000017879,0.0000017937,0.0000017998,0.0000018054, +0.0000018097,0.0000018128,0.0000018150,0.0000018158,0.0000018154, +0.0000018139,0.0000018113,0.0000018077,0.0000018034,0.0000017986, +0.0000017946,0.0000017920,0.0000017905,0.0000017905,0.0000017936, +0.0000017983,0.0000018014,0.0000018017,0.0000018003,0.0000017973, +0.0000017929,0.0000017882,0.0000017847,0.0000017838,0.0000017828, +0.0000017794,0.0000017734,0.0000017684,0.0000017684,0.0000017746, +0.0000017862,0.0000017959,0.0000018001,0.0000018016,0.0000018039, +0.0000018103,0.0000018235,0.0000018362,0.0000018405,0.0000018406, +0.0000018411,0.0000018443,0.0000018513,0.0000018567,0.0000018600, +0.0000018661,0.0000018748,0.0000018826,0.0000018873,0.0000018896, +0.0000018895,0.0000018870,0.0000018842,0.0000018850,0.0000018907, +0.0000018979,0.0000019031,0.0000019068,0.0000019062,0.0000018981, +0.0000018865,0.0000018794,0.0000018770,0.0000018769,0.0000018777, +0.0000018789,0.0000018811,0.0000018845,0.0000018880,0.0000018889, +0.0000018873,0.0000018844,0.0000018830,0.0000018828,0.0000018830, +0.0000018825,0.0000018808,0.0000018786,0.0000018777,0.0000018790, +0.0000018821,0.0000018856,0.0000018887,0.0000018963,0.0000019070, +0.0000019074,0.0000018996,0.0000019030,0.0000019071,0.0000018880, +0.0000018614,0.0000018540,0.0000018552,0.0000018565,0.0000018576, +0.0000018596,0.0000018617,0.0000018631,0.0000018639,0.0000018643, +0.0000018638,0.0000018617,0.0000018582,0.0000018543,0.0000018512, +0.0000018496,0.0000018495,0.0000018497,0.0000018486,0.0000018426, +0.0000018319,0.0000018241,0.0000018223,0.0000018216,0.0000018163, +0.0000018056,0.0000017945,0.0000017862,0.0000017836,0.0000017821, +0.0000017822,0.0000017833,0.0000017843,0.0000017854,0.0000017868, +0.0000017883,0.0000017895,0.0000017903,0.0000017907,0.0000017915, +0.0000017922,0.0000017933,0.0000017942,0.0000017948,0.0000017953, +0.0000017958,0.0000017959,0.0000017955,0.0000017948,0.0000017943, +0.0000017943,0.0000017940,0.0000017954,0.0000017956,0.0000017963, +0.0000017979,0.0000018009,0.0000018057,0.0000018132,0.0000018237, +0.0000018363,0.0000018492,0.0000018606,0.0000018693,0.0000018753, +0.0000018798,0.0000018838,0.0000018878,0.0000018912,0.0000018932, +0.0000018937,0.0000018928,0.0000018913,0.0000018902,0.0000018894, +0.0000018889,0.0000018884,0.0000018875,0.0000018855,0.0000018830, +0.0000018803,0.0000018772,0.0000018743,0.0000018715,0.0000018691, +0.0000018669,0.0000018651,0.0000018638,0.0000018629,0.0000018627, +0.0000018631,0.0000018640,0.0000018656,0.0000018674,0.0000018693, +0.0000018710,0.0000018723,0.0000018734,0.0000018744,0.0000018757, +0.0000018773,0.0000018792,0.0000018811,0.0000018830,0.0000018845, +0.0000018861,0.0000018877,0.0000018892,0.0000018905,0.0000018914, +0.0000018919,0.0000018920,0.0000018916,0.0000018910,0.0000018901, +0.0000018889,0.0000018877,0.0000018868,0.0000018862,0.0000018856, +0.0000018851,0.0000018843,0.0000018832,0.0000018821,0.0000018811, +0.0000018803,0.0000018797,0.0000018793,0.0000018788,0.0000018780, +0.0000018770,0.0000018756,0.0000018740,0.0000018724,0.0000018711, +0.0000018700,0.0000018688,0.0000018677,0.0000018665,0.0000018653, +0.0000018640,0.0000018626,0.0000018615,0.0000018609,0.0000018606, +0.0000018600,0.0000018594,0.0000018588,0.0000018583,0.0000018580, +0.0000018580,0.0000018583,0.0000018589,0.0000018593,0.0000018597, +0.0000018603,0.0000018608,0.0000018616,0.0000018623,0.0000018626, +0.0000018623,0.0000018614,0.0000018596,0.0000018625,0.0000018614, +0.0000018596,0.0000018570,0.0000018539,0.0000018506,0.0000018479, +0.0000018468,0.0000018465,0.0000018476,0.0000018501,0.0000018530, +0.0000018548,0.0000018555,0.0000018546,0.0000018523,0.0000018486, +0.0000018439,0.0000018383,0.0000018327,0.0000018283,0.0000018258, +0.0000018246,0.0000018234,0.0000018219,0.0000018200,0.0000018181, +0.0000018173,0.0000018181,0.0000018207,0.0000018253,0.0000018325, +0.0000018422,0.0000018539,0.0000018657,0.0000018746,0.0000018794, +0.0000018792,0.0000018772,0.0000018753,0.0000018733,0.0000018719, +0.0000018712,0.0000018711,0.0000018716,0.0000018730,0.0000018751, +0.0000018780,0.0000018811,0.0000018841,0.0000018864,0.0000018877, +0.0000018880,0.0000018870,0.0000018849,0.0000018826,0.0000018803, +0.0000018788,0.0000018789,0.0000018798,0.0000018816,0.0000018841, +0.0000018867,0.0000018896,0.0000018925,0.0000018956,0.0000018986, +0.0000019015,0.0000019039,0.0000019059,0.0000019071,0.0000019078, +0.0000019081,0.0000019082,0.0000019081,0.0000019080,0.0000019078, +0.0000019077,0.0000019078,0.0000019080,0.0000019086,0.0000019094, +0.0000019102,0.0000019107,0.0000019109,0.0000019108,0.0000019107, +0.0000019104,0.0000019101,0.0000019095,0.0000019086,0.0000019073, +0.0000019062,0.0000019053,0.0000019045,0.0000019038,0.0000019029, +0.0000019017,0.0000018997,0.0000018971,0.0000018939,0.0000018902, +0.0000018866,0.0000018834,0.0000018805,0.0000018773,0.0000018740, +0.0000018705,0.0000018678,0.0000018661,0.0000018657,0.0000018652, +0.0000018639,0.0000018619,0.0000018599,0.0000018583,0.0000018574, +0.0000018570,0.0000018570,0.0000018572,0.0000018574,0.0000018574, +0.0000018571,0.0000018564,0.0000018553,0.0000018541,0.0000018523, +0.0000018499,0.0000018470,0.0000018440,0.0000018411,0.0000018385, +0.0000018362,0.0000018346,0.0000018331,0.0000018322,0.0000018318, +0.0000018320,0.0000018328,0.0000018342,0.0000018366,0.0000018406, +0.0000018461,0.0000018523,0.0000018587,0.0000018649,0.0000018706, +0.0000018758,0.0000018798,0.0000018828,0.0000018850,0.0000018868, +0.0000018880,0.0000018884,0.0000018881,0.0000018886,0.0000018893, +0.0000018903,0.0000018912,0.0000018917,0.0000018917,0.0000018922, +0.0000018921,0.0000018920,0.0000018918,0.0000018915,0.0000018911, +0.0000018901,0.0000018888,0.0000018874,0.0000018857,0.0000018835, +0.0000018812,0.0000018789,0.0000018761,0.0000018731,0.0000018704, +0.0000018682,0.0000018666,0.0000018654,0.0000018647,0.0000018645, +0.0000018648,0.0000018652,0.0000018656,0.0000018658,0.0000018652, +0.0000018635,0.0000018607,0.0000018565,0.0000018508,0.0000018441, +0.0000018372,0.0000018309,0.0000018261,0.0000018229,0.0000018203, +0.0000018179,0.0000018156,0.0000018137,0.0000018127,0.0000018122, +0.0000018122,0.0000018127,0.0000018135,0.0000018145,0.0000018157, +0.0000018170,0.0000018185,0.0000018204,0.0000018229,0.0000018261, +0.0000018310,0.0000018388,0.0000018500,0.0000018644,0.0000018805, +0.0000018957,0.0000019072,0.0000019145,0.0000019189,0.0000019236, +0.0000019308,0.0000019411,0.0000019532,0.0000019649,0.0000019745, +0.0000019812,0.0000019853,0.0000019877,0.0000019895,0.0000019912, +0.0000019927,0.0000019939,0.0000019948,0.0000019958,0.0000019976, +0.0000020002,0.0000020037,0.0000020075,0.0000020115,0.0000020150, +0.0000020179,0.0000020200,0.0000020215,0.0000020223,0.0000020227, +0.0000020229,0.0000020230,0.0000020229,0.0000020225,0.0000020216, +0.0000020203,0.0000020188,0.0000020171,0.0000020154,0.0000020139, +0.0000020131,0.0000020131,0.0000020136,0.0000020146,0.0000020159, +0.0000020176,0.0000020192,0.0000020204,0.0000020215,0.0000020221, +0.0000020222,0.0000020217,0.0000020209,0.0000020200,0.0000020191, +0.0000020182,0.0000020178,0.0000020180,0.0000020186,0.0000020193, +0.0000020203,0.0000020214,0.0000020223,0.0000020230,0.0000020232, +0.0000020229,0.0000020220,0.0000020209,0.0000020201,0.0000020198, +0.0000020202,0.0000020215,0.0000020234,0.0000020260,0.0000020291, +0.0000020325,0.0000020357,0.0000020382,0.0000020398,0.0000020399, +0.0000020386,0.0000020356,0.0000020313,0.0000020268,0.0000020227, +0.0000020194,0.0000020168,0.0000020152,0.0000020143,0.0000020140, +0.0000020142,0.0000020143,0.0000020139,0.0000020136,0.0000020154, +0.0000020207,0.0000020237,0.0000020233,0.0000020260,0.0000020346, +0.0000020383,0.0000020335,0.0000020274,0.0000020255,0.0000020251, +0.0000020232,0.0000020190,0.0000020144,0.0000020115,0.0000020081, +0.0000020022,0.0000019979,0.0000019985,0.0000020061,0.0000020234, +0.0000020412,0.0000020477,0.0000020474,0.0000020451,0.0000020368, +0.0000020232,0.0000020158,0.0000020188,0.0000020313,0.0000020496, +0.0000020688,0.0000020804,0.0000020824,0.0000020822,0.0000020837, +0.0000020860,0.0000020872,0.0000020867,0.0000020856,0.0000020851, +0.0000020862,0.0000020888,0.0000020925,0.0000020964,0.0000020999, +0.0000021024,0.0000021040,0.0000021050,0.0000021058,0.0000021065, +0.0000021072,0.0000021080,0.0000021089,0.0000021101,0.0000021118, +0.0000021137,0.0000021154,0.0000021163,0.0000021165,0.0000021163, +0.0000021161,0.0000021160,0.0000021159,0.0000021158,0.0000021157, +0.0000021155,0.0000021155,0.0000021159,0.0000021161,0.0000021159, +0.0000021149,0.0000021135,0.0000021117,0.0000021095,0.0000021070, +0.0000021044,0.0000021019,0.0000020989,0.0000020961,0.0000020935, +0.0000020917,0.0000020911,0.0000020912,0.0000020915,0.0000020917, +0.0000020919,0.0000020923,0.0000020929,0.0000020934,0.0000020943, +0.0000020952,0.0000020958,0.0000020964,0.0000020974,0.0000020984, +0.0000020994,0.0000021002,0.0000021007,0.0000021007,0.0000021006, +0.0000021000,0.0000020989,0.0000020973,0.0000020955,0.0000020936, +0.0000020913,0.0000020887,0.0000020858,0.0000020834,0.0000020816, +0.0000020802,0.0000020789,0.0000020774,0.0000020757,0.0000020735, +0.0000020707,0.0000020679,0.0000020652,0.0000020630,0.0000020606, +0.0000020581,0.0000020553,0.0000020526,0.0000020501,0.0000020482, +0.0000020464,0.0000020446,0.0000020430,0.0000020413,0.0000020396, +0.0000020380,0.0000020367,0.0000020359,0.0000020357,0.0000020358, +0.0000020360,0.0000020363,0.0000020369,0.0000020378,0.0000020389, +0.0000020404,0.0000020422,0.0000020441,0.0000020457,0.0000020472, +0.0000020487,0.0000020502,0.0000020514,0.0000020527,0.0000020542, +0.0000020565,0.0000020593,0.0000020623,0.0000020654,0.0000020685, +0.0000020714,0.0000020741,0.0000020766,0.0000020787,0.0000020805, +0.0000020822,0.0000020837,0.0000020851,0.0000020862,0.0000020873, +0.0000020883,0.0000020890,0.0000020892,0.0000020893,0.0000020891, +0.0000020886,0.0000020878,0.0000020872,0.0000020865,0.0000020856, +0.0000020841,0.0000020826,0.0000020812,0.0000020789,0.0000020777, +0.0000020753,0.0000020729,0.0000020704,0.0000020680,0.0000020660, +0.0000020642,0.0000020624,0.0000020610,0.0000020599,0.0000020592, +0.0000020586,0.0000020581,0.0000020576,0.0000020573,0.0000020573, +0.0000020577,0.0000020584,0.0000020592,0.0000020600,0.0000020606, +0.0000020608,0.0000020606,0.0000020601,0.0000020592,0.0000020578, +0.0000020558,0.0000020532,0.0000020501,0.0000020468,0.0000020440, +0.0000020420,0.0000020410,0.0000020410,0.0000020418,0.0000020433, +0.0000020453,0.0000020475,0.0000020495,0.0000020506,0.0000020511, +0.0000020512,0.0000020512,0.0000020509,0.0000020504,0.0000020501, +0.0000020505,0.0000020517,0.0000020535,0.0000020558,0.0000020577, +0.0000020592,0.0000020602,0.0000020607,0.0000020610,0.0000020614, +0.0000020617,0.0000020619,0.0000020624,0.0000020632,0.0000020640, +0.0000020649,0.0000020653,0.0000020654,0.0000020650,0.0000020641, +0.0000020630,0.0000020619,0.0000020603,0.0000020587,0.0000020569, +0.0000020557,0.0000020549,0.0000020541,0.0000020532,0.0000020524, +0.0000020519,0.0000020516,0.0000020518,0.0000020525,0.0000020534, +0.0000020544,0.0000020555,0.0000020566,0.0000020581,0.0000020601, +0.0000020624,0.0000020646,0.0000020661,0.0000020678,0.0000020688, +0.0000020692,0.0000020691,0.0000020684,0.0000020670,0.0000020652, +0.0000020638,0.0000020629,0.0000020627,0.0000020628,0.0000020631, +0.0000020631,0.0000020629,0.0000020631,0.0000020649,0.0000020684, +0.0000020722,0.0000020736,0.0000020719,0.0000020667,0.0000020597, +0.0000020528,0.0000020480,0.0000020454,0.0000020439,0.0000020417, +0.0000020389,0.0000020368,0.0000020357,0.0000020355,0.0000020355, +0.0000020351,0.0000020344,0.0000020335,0.0000020329,0.0000020327, +0.0000020332,0.0000020344,0.0000020358,0.0000020369,0.0000020382, +0.0000020402,0.0000020443,0.0000020506,0.0000020572,0.0000020636, +0.0000020697,0.0000020749,0.0000020792,0.0000020825,0.0000020851, +0.0000020869,0.0000020876,0.0000020872,0.0000020854,0.0000020823, +0.0000020780,0.0000020732,0.0000020689,0.0000020656,0.0000020647, +0.0000020660,0.0000020698,0.0000020747,0.0000020790,0.0000020823, +0.0000020847,0.0000020861,0.0000020863,0.0000020854,0.0000020835, +0.0000020812,0.0000020782,0.0000020748,0.0000020713,0.0000020679, +0.0000020652,0.0000020636,0.0000020630,0.0000020633,0.0000020642, +0.0000020652,0.0000020660,0.0000020662,0.0000020658,0.0000020649, +0.0000020631,0.0000020605,0.0000020574,0.0000020542,0.0000020519, +0.0000020496,0.0000020473,0.0000020449,0.0000020423,0.0000020400, +0.0000020377,0.0000020352,0.0000020323,0.0000020295,0.0000020272, +0.0000020250,0.0000020228,0.0000020211,0.0000020204,0.0000020205, +0.0000020200,0.0000020192,0.0000020186,0.0000020179,0.0000020164, +0.0000020143,0.0000020117,0.0000020087,0.0000020060,0.0000020042, +0.0000020031,0.0000020029,0.0000020035,0.0000020049,0.0000020072, +0.0000020096,0.0000020117,0.0000020138,0.0000020157,0.0000020168, +0.0000020169,0.0000020167,0.0000020160,0.0000020148,0.0000020133, +0.0000020116,0.0000020099,0.0000020077,0.0000020048,0.0000020014, +0.0000019982,0.0000019950,0.0000019916,0.0000019885,0.0000019867, +0.0000019865,0.0000019870,0.0000019872,0.0000019867,0.0000019847, +0.0000019821,0.0000019794,0.0000019772,0.0000019757,0.0000019746, +0.0000019736,0.0000019728,0.0000019726,0.0000019730,0.0000019741, +0.0000019750,0.0000019757,0.0000019764,0.0000019769,0.0000019772, +0.0000019773,0.0000019778,0.0000019787,0.0000019798,0.0000019812, +0.0000019827,0.0000019847,0.0000019874,0.0000019906,0.0000019939, +0.0000019973,0.0000020006,0.0000020035,0.0000020057,0.0000020070, +0.0000020076,0.0000020077,0.0000020076,0.0000020071,0.0000020063, +0.0000020055,0.0000020048,0.0000020044,0.0000020040,0.0000020038, +0.0000020034,0.0000020031,0.0000020029,0.0000020025,0.0000020021, +0.0000020017,0.0000020016,0.0000020020,0.0000020027,0.0000020039, +0.0000020056,0.0000020069,0.0000020078,0.0000020081,0.0000020074, +0.0000020067,0.0000020062,0.0000020058,0.0000020044,0.0000020025, +0.0000020002,0.0000019973,0.0000019937,0.0000019895,0.0000019850, +0.0000019811,0.0000019782,0.0000019771,0.0000019760,0.0000019782, +0.0000019821,0.0000019867,0.0000019915,0.0000019952,0.0000019965, +0.0000019964,0.0000019950,0.0000019924,0.0000019888,0.0000019846, +0.0000019805,0.0000019769,0.0000019739,0.0000019722,0.0000019714, +0.0000019707,0.0000019691,0.0000019676,0.0000019653,0.0000019621, +0.0000019587,0.0000019553,0.0000019523,0.0000019502,0.0000019484, +0.0000019484,0.0000019484,0.0000019504,0.0000019542,0.0000019581, +0.0000019613,0.0000019633,0.0000019640,0.0000019640,0.0000019642, +0.0000019659,0.0000019691,0.0000019727,0.0000019764,0.0000019805, +0.0000019854,0.0000019911,0.0000019969,0.0000020025,0.0000020074, +0.0000020114,0.0000020140,0.0000020151,0.0000020147,0.0000020137, +0.0000020130,0.0000020133,0.0000020152,0.0000020184,0.0000020221, +0.0000020260,0.0000020302,0.0000020342,0.0000020377,0.0000020405, +0.0000020425,0.0000020436,0.0000020442,0.0000020447,0.0000020450, +0.0000020446,0.0000020438,0.0000020424,0.0000020400,0.0000020366, +0.0000020321,0.0000020267,0.0000020206,0.0000020138,0.0000020074, +0.0000020019,0.0000019968,0.0000019916,0.0000019861,0.0000019808, +0.0000019760,0.0000019725,0.0000019704,0.0000019692,0.0000019688, +0.0000019695,0.0000019704,0.0000019712,0.0000019719,0.0000019727, +0.0000019733,0.0000019738,0.0000019738,0.0000019730,0.0000019711, +0.0000019682,0.0000019645,0.0000019608,0.0000019575,0.0000019556, +0.0000019550,0.0000019553,0.0000019568,0.0000019590,0.0000019612, +0.0000019637,0.0000019663,0.0000019688,0.0000019708,0.0000019726, +0.0000019742,0.0000019752,0.0000019755,0.0000019754,0.0000019751, +0.0000019743,0.0000019729,0.0000019709,0.0000019681,0.0000019647, +0.0000019607,0.0000019564,0.0000019516,0.0000019462,0.0000019407, +0.0000019353,0.0000019295,0.0000019234,0.0000019176,0.0000019123, +0.0000019077,0.0000019038,0.0000019007,0.0000018993,0.0000018995, +0.0000019005,0.0000019009,0.0000018998,0.0000018970,0.0000018938, +0.0000018917,0.0000018913,0.0000018919,0.0000018931,0.0000018940, +0.0000018937,0.0000018930,0.0000018934,0.0000018952,0.0000018975, +0.0000018996,0.0000019011,0.0000019016,0.0000019015,0.0000019012, +0.0000019013,0.0000019017,0.0000019022,0.0000019030,0.0000019046, +0.0000019062,0.0000019062,0.0000019047,0.0000019018,0.0000018979, +0.0000018936,0.0000018894,0.0000018853,0.0000018805,0.0000018751, +0.0000018706,0.0000018690,0.0000018698,0.0000018713,0.0000018735, +0.0000018764,0.0000018801,0.0000018840,0.0000018874,0.0000018900, +0.0000018913,0.0000018915,0.0000018909,0.0000018900,0.0000018892, +0.0000018885,0.0000018887,0.0000018901,0.0000018927,0.0000018965, +0.0000019013,0.0000019076,0.0000019157,0.0000019257,0.0000019367, +0.0000019471,0.0000019557,0.0000019626,0.0000019658,0.0000019676, +0.0000019670,0.0000019665,0.0000019677,0.0000019683,0.0000019701, +0.0000019734,0.0000019781,0.0000019832,0.0000019878,0.0000019905, +0.0000019910,0.0000019920,0.0000019908,0.0000019877,0.0000019840, +0.0000019795,0.0000019747,0.0000019698,0.0000019652,0.0000019611, +0.0000019575,0.0000019549,0.0000019541,0.0000019523,0.0000019512, +0.0000019500,0.0000019482,0.0000019452,0.0000019416,0.0000019360, +0.0000019275,0.0000019170,0.0000019074,0.0000019014,0.0000018996, +0.0000018999,0.0000019021,0.0000019046,0.0000019064,0.0000019079, +0.0000019097,0.0000019112,0.0000019124,0.0000019137,0.0000019152, +0.0000019160,0.0000019162,0.0000019164,0.0000019176,0.0000019189, +0.0000019188,0.0000019169,0.0000019133,0.0000019089,0.0000019035, +0.0000018963,0.0000018886,0.0000018821,0.0000018785,0.0000018789, +0.0000018836,0.0000018918,0.0000019002,0.0000019058,0.0000019080, +0.0000019088,0.0000019099,0.0000019104,0.0000019096,0.0000019064, +0.0000019019,0.0000018971,0.0000018926,0.0000018872,0.0000018782, +0.0000018643,0.0000018494,0.0000018392,0.0000018369,0.0000018391, +0.0000018445,0.0000018502,0.0000018536,0.0000018549,0.0000018551, +0.0000018552,0.0000018552,0.0000018547,0.0000018533,0.0000018512, +0.0000018486,0.0000018462,0.0000018444,0.0000018440,0.0000018440, +0.0000018437,0.0000018435,0.0000018437,0.0000018445,0.0000018452, +0.0000018458,0.0000018461,0.0000018460,0.0000018442,0.0000018412, +0.0000018392,0.0000018383,0.0000018365,0.0000018328,0.0000018277, +0.0000018232,0.0000018176,0.0000018127,0.0000018116,0.0000018131, +0.0000018181,0.0000018223,0.0000018255,0.0000018281,0.0000018305, +0.0000018321,0.0000018329,0.0000018335,0.0000018336,0.0000018338, +0.0000018342,0.0000018349,0.0000018357,0.0000018367,0.0000018379, +0.0000018393,0.0000018407,0.0000018418,0.0000018432,0.0000018445, +0.0000018455,0.0000018458,0.0000018450,0.0000018431,0.0000018401, +0.0000018362,0.0000018316,0.0000018266,0.0000018217,0.0000018167, +0.0000018115,0.0000018060,0.0000017998,0.0000017934,0.0000017863, +0.0000017801,0.0000017762,0.0000017746,0.0000017750,0.0000017774, +0.0000017814,0.0000017856,0.0000017895,0.0000017931,0.0000017962, +0.0000017986,0.0000018009,0.0000018024,0.0000018027,0.0000018018, +0.0000017999,0.0000017975,0.0000017944,0.0000017917,0.0000017898, +0.0000017891,0.0000017896,0.0000017929,0.0000017977,0.0000018012, +0.0000018021,0.0000018013,0.0000017991,0.0000017954,0.0000017912, +0.0000017875,0.0000017854,0.0000017838,0.0000017800,0.0000017732, +0.0000017675,0.0000017672,0.0000017739,0.0000017860,0.0000017955, +0.0000017989,0.0000017998,0.0000018019,0.0000018087,0.0000018219, +0.0000018349,0.0000018404,0.0000018406,0.0000018407,0.0000018417, +0.0000018470,0.0000018534,0.0000018562,0.0000018599,0.0000018670, +0.0000018752,0.0000018814,0.0000018856,0.0000018870,0.0000018858, +0.0000018833,0.0000018828,0.0000018871,0.0000018942,0.0000018999, +0.0000019039,0.0000019051,0.0000019006,0.0000018903,0.0000018820, +0.0000018786,0.0000018783,0.0000018795,0.0000018817,0.0000018843, +0.0000018869,0.0000018885,0.0000018884,0.0000018864,0.0000018842, +0.0000018837,0.0000018852,0.0000018869,0.0000018873,0.0000018856, +0.0000018823,0.0000018787,0.0000018765,0.0000018769,0.0000018803, +0.0000018848,0.0000018876,0.0000018929,0.0000019039,0.0000019080, +0.0000019002,0.0000019005,0.0000019092,0.0000018961,0.0000018684, +0.0000018567,0.0000018577,0.0000018603,0.0000018624,0.0000018643, +0.0000018655,0.0000018660,0.0000018662,0.0000018663,0.0000018662, +0.0000018652,0.0000018629,0.0000018591,0.0000018551,0.0000018528, +0.0000018528,0.0000018536,0.0000018535,0.0000018497,0.0000018392, +0.0000018278,0.0000018234,0.0000018232,0.0000018222,0.0000018170, +0.0000018085,0.0000017994,0.0000017921,0.0000017865,0.0000017826, +0.0000017817,0.0000017805,0.0000017802,0.0000017811,0.0000017820, +0.0000017828,0.0000017840,0.0000017853,0.0000017868,0.0000017883, +0.0000017902,0.0000017920,0.0000017936,0.0000017954,0.0000017971, +0.0000017984,0.0000017994,0.0000017998,0.0000017996,0.0000017990, +0.0000017981,0.0000017973,0.0000017962,0.0000017963,0.0000017958, +0.0000017955,0.0000017960,0.0000017979,0.0000018023,0.0000018101, +0.0000018215,0.0000018353,0.0000018491,0.0000018608,0.0000018698, +0.0000018763,0.0000018813,0.0000018856,0.0000018891,0.0000018913, +0.0000018916,0.0000018902,0.0000018885,0.0000018869,0.0000018858, +0.0000018850,0.0000018842,0.0000018829,0.0000018810,0.0000018785, +0.0000018751,0.0000018715,0.0000018680,0.0000018644,0.0000018613, +0.0000018588,0.0000018569,0.0000018557,0.0000018551,0.0000018548, +0.0000018550,0.0000018555,0.0000018565,0.0000018577,0.0000018590, +0.0000018602,0.0000018613,0.0000018625,0.0000018641,0.0000018661, +0.0000018682,0.0000018703,0.0000018720,0.0000018736,0.0000018754, +0.0000018772,0.0000018787,0.0000018801,0.0000018809,0.0000018813, +0.0000018812,0.0000018808,0.0000018801,0.0000018793,0.0000018784, +0.0000018776,0.0000018771,0.0000018767,0.0000018763,0.0000018759, +0.0000018753,0.0000018744,0.0000018735,0.0000018725,0.0000018716, +0.0000018707,0.0000018700,0.0000018694,0.0000018687,0.0000018679, +0.0000018667,0.0000018655,0.0000018644,0.0000018634,0.0000018625, +0.0000018617,0.0000018610,0.0000018605,0.0000018601,0.0000018595, +0.0000018590,0.0000018589,0.0000018588,0.0000018587,0.0000018584, +0.0000018580,0.0000018576,0.0000018573,0.0000018571,0.0000018573, +0.0000018578,0.0000018584,0.0000018589,0.0000018593,0.0000018598, +0.0000018604,0.0000018612,0.0000018620,0.0000018626,0.0000018629, +0.0000018630,0.0000018615,0.0000018614,0.0000018608,0.0000018607, +0.0000018598,0.0000018580,0.0000018557,0.0000018531,0.0000018505, +0.0000018481,0.0000018474,0.0000018480,0.0000018500,0.0000018524, +0.0000018541,0.0000018544,0.0000018536,0.0000018510,0.0000018471, +0.0000018420,0.0000018363,0.0000018307,0.0000018262,0.0000018232, +0.0000018217,0.0000018205,0.0000018186,0.0000018162,0.0000018141, +0.0000018134,0.0000018144,0.0000018172,0.0000018220,0.0000018292, +0.0000018388,0.0000018500,0.0000018607,0.0000018687,0.0000018734, +0.0000018745,0.0000018726,0.0000018709,0.0000018692,0.0000018681, +0.0000018677,0.0000018678,0.0000018684,0.0000018695,0.0000018711, +0.0000018734,0.0000018762,0.0000018790,0.0000018814,0.0000018827, +0.0000018827,0.0000018813,0.0000018789,0.0000018765,0.0000018742, +0.0000018731,0.0000018736,0.0000018757,0.0000018788,0.0000018823, +0.0000018859,0.0000018891,0.0000018922,0.0000018953,0.0000018982, +0.0000019010,0.0000019034,0.0000019054,0.0000019070,0.0000019080, +0.0000019081,0.0000019080,0.0000019078,0.0000019075,0.0000019073, +0.0000019074,0.0000019078,0.0000019086,0.0000019094,0.0000019100, +0.0000019104,0.0000019104,0.0000019101,0.0000019096,0.0000019091, +0.0000019085,0.0000019076,0.0000019064,0.0000019050,0.0000019036, +0.0000019024,0.0000019013,0.0000019001,0.0000018988,0.0000018971, +0.0000018951,0.0000018927,0.0000018896,0.0000018862,0.0000018829, +0.0000018801,0.0000018777,0.0000018753,0.0000018723,0.0000018692, +0.0000018665,0.0000018650,0.0000018643,0.0000018638,0.0000018630, +0.0000018620,0.0000018609,0.0000018597,0.0000018585,0.0000018574, +0.0000018569,0.0000018562,0.0000018557,0.0000018552,0.0000018547, +0.0000018541,0.0000018535,0.0000018525,0.0000018511,0.0000018489, +0.0000018461,0.0000018434,0.0000018405,0.0000018377,0.0000018352, +0.0000018331,0.0000018317,0.0000018309,0.0000018305,0.0000018305, +0.0000018302,0.0000018302,0.0000018307,0.0000018322,0.0000018346, +0.0000018378,0.0000018417,0.0000018464,0.0000018516,0.0000018568, +0.0000018615,0.0000018659,0.0000018697,0.0000018725,0.0000018745, +0.0000018758,0.0000018767,0.0000018776,0.0000018782,0.0000018781, +0.0000018775,0.0000018766,0.0000018755,0.0000018744,0.0000018735, +0.0000018730,0.0000018727,0.0000018725,0.0000018727,0.0000018731, +0.0000018735,0.0000018739,0.0000018742,0.0000018746,0.0000018750, +0.0000018750,0.0000018736,0.0000018726,0.0000018718,0.0000018712, +0.0000018705,0.0000018694,0.0000018682,0.0000018673,0.0000018669, +0.0000018670,0.0000018671,0.0000018674,0.0000018675,0.0000018672, +0.0000018659,0.0000018631,0.0000018586,0.0000018525,0.0000018455, +0.0000018387,0.0000018327,0.0000018275,0.0000018230,0.0000018194, +0.0000018165,0.0000018144,0.0000018131,0.0000018122,0.0000018122, +0.0000018120,0.0000018122,0.0000018129,0.0000018140,0.0000018155, +0.0000018175,0.0000018196,0.0000018218,0.0000018242,0.0000018278, +0.0000018336,0.0000018430,0.0000018562,0.0000018724,0.0000018887, +0.0000019019,0.0000019103,0.0000019150,0.0000019185,0.0000019239, +0.0000019322,0.0000019430,0.0000019544,0.0000019646,0.0000019725, +0.0000019779,0.0000019814,0.0000019840,0.0000019861,0.0000019878, +0.0000019891,0.0000019902,0.0000019916,0.0000019934,0.0000019957, +0.0000019988,0.0000020027,0.0000020066,0.0000020100,0.0000020126, +0.0000020146,0.0000020159,0.0000020165,0.0000020167,0.0000020165, +0.0000020161,0.0000020154,0.0000020141,0.0000020124,0.0000020104, +0.0000020081,0.0000020058,0.0000020038,0.0000020024,0.0000020018, +0.0000020020,0.0000020027,0.0000020038,0.0000020052,0.0000020067, +0.0000020081,0.0000020095,0.0000020104,0.0000020108,0.0000020108, +0.0000020106,0.0000020102,0.0000020098,0.0000020093,0.0000020090, +0.0000020093,0.0000020101,0.0000020111,0.0000020123,0.0000020139, +0.0000020156,0.0000020171,0.0000020182,0.0000020186,0.0000020184, +0.0000020177,0.0000020171,0.0000020167,0.0000020167,0.0000020169, +0.0000020175,0.0000020187,0.0000020210,0.0000020243,0.0000020281, +0.0000020317,0.0000020347,0.0000020369,0.0000020372,0.0000020358, +0.0000020324,0.0000020274,0.0000020221,0.0000020179,0.0000020150, +0.0000020131,0.0000020123,0.0000020123,0.0000020126,0.0000020125, +0.0000020115,0.0000020109,0.0000020136,0.0000020194,0.0000020216, +0.0000020210,0.0000020263,0.0000020350,0.0000020370,0.0000020324, +0.0000020276,0.0000020269,0.0000020269,0.0000020240,0.0000020184, +0.0000020136,0.0000020108,0.0000020065,0.0000020004,0.0000019980, +0.0000020001,0.0000020104,0.0000020288,0.0000020441,0.0000020475, +0.0000020468,0.0000020427,0.0000020320,0.0000020193,0.0000020155, +0.0000020198,0.0000020316,0.0000020483,0.0000020665,0.0000020785, +0.0000020816,0.0000020811,0.0000020813,0.0000020832,0.0000020849, +0.0000020849,0.0000020835,0.0000020816,0.0000020805,0.0000020811, +0.0000020835,0.0000020870,0.0000020908,0.0000020943,0.0000020970, +0.0000020989,0.0000021000,0.0000021007,0.0000021010,0.0000021010, +0.0000021010,0.0000021016,0.0000021028,0.0000021042,0.0000021058, +0.0000021073,0.0000021088,0.0000021104,0.0000021117,0.0000021120, +0.0000021118,0.0000021110,0.0000021100,0.0000021091,0.0000021086, +0.0000021084,0.0000021084,0.0000021083,0.0000021080,0.0000021072, +0.0000021060,0.0000021047,0.0000021034,0.0000021018,0.0000020998, +0.0000020974,0.0000020949,0.0000020929,0.0000020918,0.0000020915, +0.0000020915,0.0000020915,0.0000020915,0.0000020916,0.0000020918, +0.0000020922,0.0000020926,0.0000020929,0.0000020932,0.0000020936, +0.0000020938,0.0000020940,0.0000020943,0.0000020948,0.0000020954, +0.0000020957,0.0000020955,0.0000020945,0.0000020931,0.0000020918, +0.0000020904,0.0000020887,0.0000020868,0.0000020847,0.0000020823, +0.0000020800,0.0000020783,0.0000020770,0.0000020758,0.0000020745, +0.0000020730,0.0000020711,0.0000020687,0.0000020661,0.0000020640, +0.0000020622,0.0000020603,0.0000020578,0.0000020546,0.0000020513, +0.0000020482,0.0000020454,0.0000020429,0.0000020407,0.0000020386, +0.0000020362,0.0000020337,0.0000020313,0.0000020295,0.0000020282, +0.0000020274,0.0000020270,0.0000020268,0.0000020268,0.0000020270, +0.0000020277,0.0000020287,0.0000020300,0.0000020317,0.0000020335, +0.0000020351,0.0000020367,0.0000020383,0.0000020397,0.0000020412, +0.0000020429,0.0000020451,0.0000020475,0.0000020500,0.0000020525, +0.0000020548,0.0000020569,0.0000020588,0.0000020606,0.0000020625, +0.0000020642,0.0000020657,0.0000020670,0.0000020684,0.0000020698, +0.0000020711,0.0000020723,0.0000020734,0.0000020743,0.0000020749, +0.0000020753,0.0000020757,0.0000020760,0.0000020765,0.0000020771, +0.0000020777,0.0000020780,0.0000020780,0.0000020777,0.0000020773, +0.0000020766,0.0000020758,0.0000020750,0.0000020741,0.0000020728, +0.0000020713,0.0000020698,0.0000020683,0.0000020666,0.0000020655, +0.0000020639,0.0000020624,0.0000020612,0.0000020603,0.0000020597, +0.0000020593,0.0000020594,0.0000020598,0.0000020606,0.0000020614, +0.0000020621,0.0000020626,0.0000020626,0.0000020622,0.0000020613, +0.0000020604,0.0000020590,0.0000020570,0.0000020542,0.0000020510, +0.0000020475,0.0000020445,0.0000020421,0.0000020404,0.0000020395, +0.0000020392,0.0000020398,0.0000020412,0.0000020432,0.0000020455, +0.0000020475,0.0000020487,0.0000020496,0.0000020502,0.0000020504, +0.0000020500,0.0000020496,0.0000020496,0.0000020508,0.0000020534, +0.0000020564,0.0000020588,0.0000020604,0.0000020612,0.0000020614, +0.0000020617,0.0000020618,0.0000020618,0.0000020618,0.0000020623, +0.0000020632,0.0000020644,0.0000020654,0.0000020663,0.0000020668, +0.0000020668,0.0000020658,0.0000020640,0.0000020620,0.0000020595, +0.0000020566,0.0000020537,0.0000020514,0.0000020496,0.0000020476, +0.0000020452,0.0000020432,0.0000020414,0.0000020400,0.0000020393, +0.0000020392,0.0000020395,0.0000020401,0.0000020409,0.0000020420, +0.0000020436,0.0000020460,0.0000020492,0.0000020529,0.0000020567, +0.0000020605,0.0000020639,0.0000020668,0.0000020688,0.0000020699, +0.0000020705,0.0000020698,0.0000020680,0.0000020658,0.0000020638, +0.0000020624,0.0000020614,0.0000020609,0.0000020606,0.0000020601, +0.0000020603,0.0000020616,0.0000020645,0.0000020688,0.0000020718, +0.0000020725,0.0000020696,0.0000020635,0.0000020563,0.0000020504, +0.0000020468,0.0000020447,0.0000020427,0.0000020398,0.0000020367, +0.0000020340,0.0000020324,0.0000020319,0.0000020318,0.0000020318, +0.0000020318,0.0000020318,0.0000020321,0.0000020326,0.0000020332, +0.0000020338,0.0000020347,0.0000020365,0.0000020409,0.0000020470, +0.0000020531,0.0000020589,0.0000020643,0.0000020692,0.0000020735, +0.0000020771,0.0000020800,0.0000020821,0.0000020831,0.0000020829, +0.0000020816,0.0000020789,0.0000020751,0.0000020705,0.0000020658, +0.0000020619,0.0000020600,0.0000020606,0.0000020636,0.0000020684, +0.0000020727,0.0000020764,0.0000020794,0.0000020813,0.0000020821, +0.0000020820,0.0000020813,0.0000020795,0.0000020776,0.0000020753, +0.0000020726,0.0000020697,0.0000020666,0.0000020640,0.0000020622, +0.0000020613,0.0000020611,0.0000020615,0.0000020617,0.0000020616, +0.0000020613,0.0000020608,0.0000020599,0.0000020582,0.0000020567, +0.0000020556,0.0000020543,0.0000020528,0.0000020512,0.0000020491, +0.0000020470,0.0000020449,0.0000020425,0.0000020396,0.0000020364, +0.0000020332,0.0000020303,0.0000020276,0.0000020248,0.0000020224, +0.0000020214,0.0000020205,0.0000020195,0.0000020188,0.0000020181, +0.0000020166,0.0000020145,0.0000020119,0.0000020089,0.0000020059, +0.0000020031,0.0000020007,0.0000019990,0.0000019982,0.0000019982, +0.0000019991,0.0000020008,0.0000020027,0.0000020050,0.0000020076, +0.0000020097,0.0000020106,0.0000020107,0.0000020104,0.0000020096, +0.0000020085,0.0000020074,0.0000020061,0.0000020045,0.0000020023, +0.0000020002,0.0000019981,0.0000019960,0.0000019941,0.0000019920, +0.0000019903,0.0000019895,0.0000019895,0.0000019894,0.0000019886, +0.0000019867,0.0000019836,0.0000019798,0.0000019761,0.0000019736, +0.0000019711,0.0000019693,0.0000019681,0.0000019676,0.0000019680, +0.0000019691,0.0000019702,0.0000019712,0.0000019718,0.0000019721, +0.0000019719,0.0000019711,0.0000019705,0.0000019706,0.0000019712, +0.0000019722,0.0000019735,0.0000019757,0.0000019790,0.0000019831, +0.0000019874,0.0000019916,0.0000019958,0.0000019996,0.0000020025, +0.0000020047,0.0000020060,0.0000020065,0.0000020062,0.0000020053, +0.0000020036,0.0000020018,0.0000020003,0.0000019995,0.0000019992, +0.0000019995,0.0000020001,0.0000020005,0.0000020007,0.0000020004, +0.0000019993,0.0000019974,0.0000019950,0.0000019926,0.0000019906, +0.0000019897,0.0000019906,0.0000019928,0.0000019955,0.0000019980, +0.0000020001,0.0000020018,0.0000020033,0.0000020044,0.0000020052, +0.0000020046,0.0000020039,0.0000020030,0.0000020013,0.0000019991, +0.0000019961,0.0000019924,0.0000019883,0.0000019843,0.0000019810, +0.0000019791,0.0000019802,0.0000019811,0.0000019847,0.0000019892, +0.0000019926,0.0000019949,0.0000019966,0.0000019973,0.0000019963, +0.0000019945,0.0000019914,0.0000019869,0.0000019816,0.0000019764, +0.0000019719,0.0000019695,0.0000019671,0.0000019658,0.0000019657, +0.0000019654,0.0000019649,0.0000019637,0.0000019615,0.0000019584, +0.0000019552,0.0000019523,0.0000019498,0.0000019498,0.0000019500, +0.0000019520,0.0000019551,0.0000019578,0.0000019598,0.0000019606, +0.0000019607,0.0000019613,0.0000019633,0.0000019664,0.0000019699, +0.0000019739,0.0000019784,0.0000019834,0.0000019887,0.0000019944, +0.0000020000,0.0000020051,0.0000020094,0.0000020124,0.0000020137, +0.0000020136,0.0000020131,0.0000020125,0.0000020127,0.0000020140, +0.0000020165,0.0000020196,0.0000020231,0.0000020269,0.0000020306, +0.0000020344,0.0000020374,0.0000020395,0.0000020409,0.0000020422, +0.0000020430,0.0000020430,0.0000020424,0.0000020408,0.0000020378, +0.0000020337,0.0000020285,0.0000020223,0.0000020156,0.0000020092, +0.0000020038,0.0000019994,0.0000019948,0.0000019895,0.0000019836, +0.0000019782,0.0000019734,0.0000019700,0.0000019681,0.0000019671, +0.0000019665,0.0000019668,0.0000019674,0.0000019680,0.0000019687, +0.0000019695,0.0000019704,0.0000019712,0.0000019718,0.0000019717, +0.0000019712,0.0000019700,0.0000019678,0.0000019647,0.0000019610, +0.0000019578,0.0000019562,0.0000019561,0.0000019577,0.0000019596, +0.0000019614,0.0000019637,0.0000019663,0.0000019688,0.0000019710, +0.0000019729,0.0000019745,0.0000019753,0.0000019756,0.0000019758, +0.0000019761,0.0000019760,0.0000019754,0.0000019741,0.0000019719, +0.0000019687,0.0000019647,0.0000019600,0.0000019548,0.0000019491, +0.0000019434,0.0000019376,0.0000019314,0.0000019248,0.0000019180, +0.0000019116,0.0000019055,0.0000018998,0.0000018952,0.0000018920, +0.0000018909,0.0000018917,0.0000018934,0.0000018943,0.0000018937, +0.0000018912,0.0000018883,0.0000018863,0.0000018858,0.0000018867, +0.0000018888,0.0000018901,0.0000018904,0.0000018903,0.0000018908, +0.0000018925,0.0000018952,0.0000018978,0.0000018991,0.0000018995, +0.0000018996,0.0000018997,0.0000018998,0.0000018999,0.0000019008, +0.0000019028,0.0000019048,0.0000019056,0.0000019052,0.0000019037, +0.0000019007,0.0000018965,0.0000018920,0.0000018877,0.0000018830, +0.0000018776,0.0000018725,0.0000018701,0.0000018706,0.0000018718, +0.0000018734,0.0000018755,0.0000018783,0.0000018813,0.0000018842, +0.0000018865,0.0000018878,0.0000018883,0.0000018882,0.0000018875, +0.0000018864,0.0000018856,0.0000018853,0.0000018859,0.0000018872, +0.0000018888,0.0000018913,0.0000018947,0.0000018999,0.0000019074, +0.0000019163,0.0000019262,0.0000019363,0.0000019456,0.0000019532, +0.0000019593,0.0000019627,0.0000019664,0.0000019677,0.0000019681, +0.0000019684,0.0000019697,0.0000019724,0.0000019761,0.0000019808, +0.0000019851,0.0000019888,0.0000019918,0.0000019918,0.0000019922, +0.0000019912,0.0000019883,0.0000019849,0.0000019805,0.0000019754, +0.0000019696,0.0000019637,0.0000019585,0.0000019542,0.0000019506, +0.0000019485,0.0000019465,0.0000019444,0.0000019422,0.0000019398, +0.0000019357,0.0000019284,0.0000019186,0.0000019091,0.0000019026, +0.0000018995,0.0000018992,0.0000019002,0.0000019019,0.0000019032, +0.0000019045,0.0000019061,0.0000019076,0.0000019090,0.0000019106, +0.0000019126,0.0000019141,0.0000019148,0.0000019153,0.0000019166, +0.0000019182,0.0000019183,0.0000019170,0.0000019137,0.0000019092, +0.0000019038,0.0000018970,0.0000018888,0.0000018809,0.0000018770, +0.0000018762,0.0000018799,0.0000018879,0.0000018972,0.0000019038, +0.0000019068,0.0000019080,0.0000019090,0.0000019100,0.0000019097, +0.0000019072,0.0000019031,0.0000018985,0.0000018941,0.0000018889, +0.0000018800,0.0000018658,0.0000018502,0.0000018398,0.0000018380, +0.0000018396,0.0000018445,0.0000018498,0.0000018529,0.0000018541, +0.0000018551,0.0000018556,0.0000018554,0.0000018541,0.0000018520, +0.0000018496,0.0000018472,0.0000018450,0.0000018438,0.0000018432, +0.0000018428,0.0000018424,0.0000018421,0.0000018421,0.0000018421, +0.0000018421,0.0000018417,0.0000018412,0.0000018395,0.0000018370, +0.0000018350,0.0000018337,0.0000018318,0.0000018281,0.0000018238, +0.0000018201,0.0000018149,0.0000018111,0.0000018108,0.0000018136, +0.0000018186,0.0000018226,0.0000018264,0.0000018301,0.0000018337, +0.0000018360,0.0000018371,0.0000018373,0.0000018372,0.0000018372, +0.0000018367,0.0000018364,0.0000018363,0.0000018367,0.0000018372, +0.0000018381,0.0000018389,0.0000018397,0.0000018407,0.0000018414, +0.0000018417,0.0000018415,0.0000018405,0.0000018387,0.0000018361, +0.0000018326,0.0000018282,0.0000018237,0.0000018187,0.0000018134, +0.0000018082,0.0000018027,0.0000017970,0.0000017914,0.0000017856, +0.0000017803,0.0000017763,0.0000017741,0.0000017735,0.0000017745, +0.0000017767,0.0000017797,0.0000017826,0.0000017851,0.0000017866, +0.0000017872,0.0000017879,0.0000017890,0.0000017901,0.0000017906, +0.0000017906,0.0000017897,0.0000017885,0.0000017873,0.0000017866, +0.0000017873,0.0000017905,0.0000017959,0.0000017999,0.0000018016, +0.0000018015,0.0000017996,0.0000017963,0.0000017926,0.0000017896, +0.0000017875,0.0000017858,0.0000017817,0.0000017738,0.0000017665, +0.0000017652,0.0000017713,0.0000017843,0.0000017947,0.0000017980, +0.0000017988,0.0000018010,0.0000018075,0.0000018201,0.0000018335, +0.0000018398,0.0000018405,0.0000018405,0.0000018402,0.0000018426, +0.0000018493,0.0000018531,0.0000018551,0.0000018601,0.0000018679, +0.0000018755,0.0000018812,0.0000018842,0.0000018841,0.0000018822, +0.0000018808,0.0000018829,0.0000018895,0.0000018958,0.0000019000, +0.0000019025,0.0000019020,0.0000018954,0.0000018867,0.0000018819, +0.0000018805,0.0000018810,0.0000018832,0.0000018860,0.0000018883, +0.0000018890,0.0000018886,0.0000018869,0.0000018851,0.0000018851, +0.0000018872,0.0000018896,0.0000018906,0.0000018896,0.0000018863, +0.0000018819,0.0000018778,0.0000018758,0.0000018766,0.0000018801, +0.0000018844,0.0000018879,0.0000018914,0.0000019005,0.0000019068, +0.0000019019,0.0000019000,0.0000019083,0.0000019014,0.0000018757, +0.0000018592,0.0000018581,0.0000018612,0.0000018637,0.0000018651, +0.0000018655,0.0000018654,0.0000018652,0.0000018651,0.0000018652, +0.0000018651,0.0000018646,0.0000018624,0.0000018587,0.0000018561, +0.0000018558,0.0000018558,0.0000018552,0.0000018530,0.0000018448, +0.0000018322,0.0000018243,0.0000018233,0.0000018232,0.0000018222, +0.0000018188,0.0000018135,0.0000018076,0.0000018018,0.0000017968, +0.0000017927,0.0000017899,0.0000017884,0.0000017878,0.0000017874, +0.0000017871,0.0000017871,0.0000017870,0.0000017871,0.0000017881, +0.0000017890,0.0000017900,0.0000017905,0.0000017913,0.0000017925, +0.0000017944,0.0000017964,0.0000017984,0.0000018002,0.0000018007, +0.0000018013,0.0000018009,0.0000017997,0.0000017981,0.0000017964, +0.0000017952,0.0000017945,0.0000017937,0.0000017934,0.0000017955, +0.0000018011,0.0000018103,0.0000018228,0.0000018370,0.0000018508, +0.0000018623,0.0000018711,0.0000018777,0.0000018828,0.0000018865, +0.0000018885,0.0000018885,0.0000018871,0.0000018852,0.0000018832, +0.0000018815,0.0000018804,0.0000018794,0.0000018782,0.0000018763, +0.0000018736,0.0000018701,0.0000018661,0.0000018617,0.0000018579, +0.0000018538,0.0000018510,0.0000018491,0.0000018481,0.0000018477, +0.0000018477,0.0000018481,0.0000018487,0.0000018495,0.0000018502, +0.0000018508,0.0000018516,0.0000018527,0.0000018541,0.0000018558, +0.0000018578,0.0000018596,0.0000018612,0.0000018630,0.0000018650, +0.0000018670,0.0000018687,0.0000018699,0.0000018707,0.0000018709, +0.0000018708,0.0000018703,0.0000018697,0.0000018690,0.0000018682, +0.0000018675,0.0000018668,0.0000018662,0.0000018656,0.0000018651, +0.0000018644,0.0000018634,0.0000018621,0.0000018606,0.0000018590, +0.0000018576,0.0000018563,0.0000018554,0.0000018546,0.0000018539, +0.0000018534,0.0000018531,0.0000018531,0.0000018531,0.0000018530, +0.0000018531,0.0000018536,0.0000018541,0.0000018543,0.0000018545, +0.0000018548,0.0000018552,0.0000018555,0.0000018554,0.0000018552, +0.0000018550,0.0000018548,0.0000018548,0.0000018549,0.0000018553, +0.0000018560,0.0000018569,0.0000018575,0.0000018581,0.0000018588, +0.0000018596,0.0000018603,0.0000018609,0.0000018613,0.0000018615, +0.0000018600,0.0000018596,0.0000018590,0.0000018585,0.0000018585, +0.0000018585,0.0000018581,0.0000018577,0.0000018567,0.0000018551, +0.0000018529,0.0000018506,0.0000018491,0.0000018493,0.0000018502, +0.0000018514,0.0000018524,0.0000018523,0.0000018516,0.0000018494, +0.0000018455,0.0000018402,0.0000018342,0.0000018286,0.0000018241, +0.0000018211,0.0000018191,0.0000018171,0.0000018146,0.0000018120, +0.0000018098,0.0000018092,0.0000018103,0.0000018133,0.0000018184, +0.0000018257,0.0000018349,0.0000018450,0.0000018550,0.0000018630, +0.0000018678,0.0000018696,0.0000018684,0.0000018667,0.0000018655, +0.0000018647,0.0000018646,0.0000018647,0.0000018650,0.0000018654, +0.0000018662,0.0000018677,0.0000018701,0.0000018730,0.0000018754, +0.0000018768,0.0000018769,0.0000018756,0.0000018733,0.0000018709, +0.0000018693,0.0000018691,0.0000018700,0.0000018724,0.0000018762, +0.0000018805,0.0000018846,0.0000018882,0.0000018915,0.0000018944, +0.0000018970,0.0000018996,0.0000019019,0.0000019038,0.0000019052, +0.0000019061,0.0000019067,0.0000019069,0.0000019071,0.0000019076, +0.0000019083,0.0000019090,0.0000019094,0.0000019099,0.0000019102, +0.0000019103,0.0000019103,0.0000019101,0.0000019097,0.0000019088, +0.0000019076,0.0000019061,0.0000019045,0.0000019028,0.0000019010, +0.0000018994,0.0000018978,0.0000018962,0.0000018945,0.0000018925, +0.0000018904,0.0000018879,0.0000018850,0.0000018819,0.0000018790, +0.0000018768,0.0000018753,0.0000018739,0.0000018718,0.0000018693, +0.0000018668,0.0000018648,0.0000018636,0.0000018631,0.0000018629, +0.0000018629,0.0000018626,0.0000018617,0.0000018603,0.0000018587, +0.0000018572,0.0000018558,0.0000018547,0.0000018536,0.0000018527, +0.0000018519,0.0000018511,0.0000018502,0.0000018488,0.0000018469, +0.0000018447,0.0000018420,0.0000018394,0.0000018370,0.0000018347, +0.0000018328,0.0000018316,0.0000018307,0.0000018300,0.0000018293, +0.0000018285,0.0000018280,0.0000018275,0.0000018271,0.0000018273, +0.0000018279,0.0000018294,0.0000018319,0.0000018349,0.0000018384, +0.0000018420,0.0000018453,0.0000018482,0.0000018507,0.0000018525, +0.0000018539,0.0000018547,0.0000018549,0.0000018546,0.0000018541, +0.0000018534,0.0000018527,0.0000018519,0.0000018515,0.0000018513, +0.0000018512,0.0000018511,0.0000018511,0.0000018513,0.0000018517, +0.0000018522,0.0000018531,0.0000018543,0.0000018558,0.0000018576, +0.0000018599,0.0000018622,0.0000018645,0.0000018669,0.0000018690, +0.0000018695,0.0000018692,0.0000018692,0.0000018695,0.0000018697, +0.0000018697,0.0000018696,0.0000018696,0.0000018695,0.0000018693, +0.0000018685,0.0000018668,0.0000018637,0.0000018592,0.0000018537, +0.0000018476,0.0000018410,0.0000018346,0.0000018288,0.0000018239, +0.0000018200,0.0000018171,0.0000018150,0.0000018133,0.0000018118, +0.0000018110,0.0000018107,0.0000018108,0.0000018121,0.0000018143, +0.0000018170,0.0000018195,0.0000018217,0.0000018240,0.0000018269, +0.0000018312,0.0000018382,0.0000018492,0.0000018638,0.0000018797, +0.0000018939,0.0000019042,0.0000019101,0.0000019135,0.0000019171, +0.0000019231,0.0000019319,0.0000019425,0.0000019532,0.0000019624, +0.0000019692,0.0000019741,0.0000019774,0.0000019798,0.0000019816, +0.0000019831,0.0000019846,0.0000019863,0.0000019881,0.0000019906, +0.0000019940,0.0000019977,0.0000020012,0.0000020041,0.0000020065, +0.0000020082,0.0000020090,0.0000020092,0.0000020089,0.0000020083, +0.0000020073,0.0000020058,0.0000020041,0.0000020020,0.0000019998, +0.0000019975,0.0000019954,0.0000019937,0.0000019928,0.0000019928, +0.0000019933,0.0000019941,0.0000019951,0.0000019961,0.0000019971, +0.0000019978,0.0000019980,0.0000019977,0.0000019973,0.0000019968, +0.0000019961,0.0000019953,0.0000019945,0.0000019939,0.0000019941, +0.0000019947,0.0000019957,0.0000019970,0.0000019988,0.0000020010, +0.0000020032,0.0000020051,0.0000020068,0.0000020083,0.0000020096, +0.0000020110,0.0000020124,0.0000020135,0.0000020142,0.0000020146, +0.0000020149,0.0000020159,0.0000020179,0.0000020211,0.0000020249, +0.0000020288,0.0000020322,0.0000020343,0.0000020344,0.0000020322, +0.0000020279,0.0000020226,0.0000020175,0.0000020137,0.0000020117, +0.0000020110,0.0000020111,0.0000020113,0.0000020107,0.0000020090, +0.0000020084,0.0000020123,0.0000020182,0.0000020193,0.0000020195, +0.0000020271,0.0000020361,0.0000020367,0.0000020313,0.0000020280, +0.0000020285,0.0000020282,0.0000020239,0.0000020173,0.0000020128, +0.0000020100,0.0000020047,0.0000019991,0.0000019981,0.0000020027, +0.0000020151,0.0000020333,0.0000020454,0.0000020470,0.0000020450, +0.0000020389,0.0000020273,0.0000020168,0.0000020146,0.0000020194, +0.0000020303,0.0000020452,0.0000020622,0.0000020752,0.0000020801, +0.0000020797,0.0000020790,0.0000020797,0.0000020812,0.0000020818, +0.0000020807,0.0000020789,0.0000020765,0.0000020750,0.0000020750, +0.0000020761,0.0000020782,0.0000020808,0.0000020832,0.0000020854, +0.0000020875,0.0000020896,0.0000020915,0.0000020932,0.0000020948, +0.0000020963,0.0000020974,0.0000020981,0.0000020984,0.0000020986, +0.0000020993,0.0000021006,0.0000021021,0.0000021033,0.0000021042, +0.0000021048,0.0000021049,0.0000021046,0.0000021039,0.0000021028, +0.0000021016,0.0000021001,0.0000020983,0.0000020965,0.0000020949, +0.0000020937,0.0000020927,0.0000020915,0.0000020898,0.0000020876, +0.0000020854,0.0000020837,0.0000020828,0.0000020823,0.0000020818, +0.0000020814,0.0000020812,0.0000020812,0.0000020814,0.0000020815, +0.0000020817,0.0000020819,0.0000020821,0.0000020820,0.0000020818, +0.0000020819,0.0000020825,0.0000020835,0.0000020844,0.0000020845, +0.0000020841,0.0000020834,0.0000020828,0.0000020820,0.0000020808, +0.0000020794,0.0000020778,0.0000020758,0.0000020738,0.0000020720, +0.0000020707,0.0000020695,0.0000020681,0.0000020665,0.0000020644, +0.0000020619,0.0000020594,0.0000020571,0.0000020553,0.0000020533, +0.0000020504,0.0000020467,0.0000020427,0.0000020387,0.0000020349, +0.0000020317,0.0000020289,0.0000020261,0.0000020232,0.0000020201, +0.0000020174,0.0000020152,0.0000020135,0.0000020121,0.0000020110, +0.0000020103,0.0000020099,0.0000020098,0.0000020100,0.0000020106, +0.0000020116,0.0000020130,0.0000020145,0.0000020162,0.0000020181, +0.0000020200,0.0000020221,0.0000020245,0.0000020273,0.0000020304, +0.0000020335,0.0000020365,0.0000020395,0.0000020424,0.0000020450, +0.0000020473,0.0000020493,0.0000020512,0.0000020530,0.0000020546, +0.0000020562,0.0000020578,0.0000020593,0.0000020606,0.0000020616, +0.0000020624,0.0000020629,0.0000020631,0.0000020633,0.0000020637, +0.0000020641,0.0000020645,0.0000020650,0.0000020656,0.0000020661, +0.0000020663,0.0000020663,0.0000020662,0.0000020660,0.0000020657, +0.0000020656,0.0000020656,0.0000020655,0.0000020654,0.0000020653, +0.0000020650,0.0000020647,0.0000020642,0.0000020633,0.0000020623, +0.0000020614,0.0000020607,0.0000020600,0.0000020597,0.0000020598, +0.0000020603,0.0000020611,0.0000020619,0.0000020625,0.0000020628, +0.0000020627,0.0000020623,0.0000020614,0.0000020603,0.0000020588, +0.0000020567,0.0000020539,0.0000020509,0.0000020478,0.0000020450, +0.0000020424,0.0000020399,0.0000020378,0.0000020363,0.0000020358, +0.0000020360,0.0000020369,0.0000020386,0.0000020407,0.0000020430, +0.0000020452,0.0000020473,0.0000020490,0.0000020498,0.0000020501, +0.0000020510,0.0000020523,0.0000020548,0.0000020578,0.0000020602, +0.0000020617,0.0000020626,0.0000020628,0.0000020626,0.0000020625, +0.0000020620,0.0000020617,0.0000020620,0.0000020628,0.0000020642, +0.0000020659,0.0000020673,0.0000020685,0.0000020693,0.0000020695, +0.0000020688,0.0000020672,0.0000020649,0.0000020619,0.0000020585, +0.0000020554,0.0000020526,0.0000020494,0.0000020459,0.0000020427, +0.0000020399,0.0000020375,0.0000020355,0.0000020341,0.0000020332, +0.0000020327,0.0000020325,0.0000020326,0.0000020333,0.0000020347, +0.0000020368,0.0000020395,0.0000020424,0.0000020455,0.0000020490, +0.0000020530,0.0000020573,0.0000020615,0.0000020652,0.0000020677, +0.0000020684,0.0000020684,0.0000020671,0.0000020647,0.0000020620, +0.0000020597,0.0000020583,0.0000020577,0.0000020576,0.0000020580, +0.0000020591,0.0000020615,0.0000020653,0.0000020699,0.0000020724, +0.0000020717,0.0000020673,0.0000020604,0.0000020536,0.0000020485, +0.0000020457,0.0000020437,0.0000020406,0.0000020361,0.0000020322, +0.0000020298,0.0000020286,0.0000020285,0.0000020288,0.0000020289, +0.0000020290,0.0000020293,0.0000020301,0.0000020310,0.0000020324, +0.0000020345,0.0000020386,0.0000020441,0.0000020495,0.0000020545, +0.0000020590,0.0000020633,0.0000020674,0.0000020711,0.0000020744, +0.0000020770,0.0000020786,0.0000020789,0.0000020780,0.0000020756, +0.0000020719,0.0000020676,0.0000020631,0.0000020593,0.0000020562, +0.0000020552,0.0000020565,0.0000020599,0.0000020637,0.0000020673, +0.0000020702,0.0000020723,0.0000020735,0.0000020741,0.0000020743, +0.0000020742,0.0000020736,0.0000020724,0.0000020707,0.0000020684, +0.0000020656,0.0000020627,0.0000020600,0.0000020578,0.0000020565, +0.0000020560,0.0000020557,0.0000020554,0.0000020553,0.0000020554, +0.0000020555,0.0000020556,0.0000020558,0.0000020555,0.0000020551, +0.0000020543,0.0000020532,0.0000020518,0.0000020499,0.0000020475, +0.0000020448,0.0000020415,0.0000020379,0.0000020344,0.0000020313, +0.0000020286,0.0000020259,0.0000020243,0.0000020233,0.0000020223, +0.0000020218,0.0000020215,0.0000020203,0.0000020183,0.0000020154, +0.0000020122,0.0000020087,0.0000020053,0.0000020020,0.0000019992, +0.0000019973,0.0000019955,0.0000019943,0.0000019945,0.0000019950, +0.0000019960,0.0000019977,0.0000019999,0.0000020014,0.0000020022, +0.0000020023,0.0000020021,0.0000020016,0.0000020011,0.0000020001, +0.0000019987,0.0000019971,0.0000019959,0.0000019950,0.0000019942, +0.0000019936,0.0000019927,0.0000019923,0.0000019918,0.0000019915, +0.0000019912,0.0000019908,0.0000019898,0.0000019877,0.0000019842, +0.0000019799,0.0000019757,0.0000019720,0.0000019688,0.0000019665, +0.0000019652,0.0000019651,0.0000019660,0.0000019674,0.0000019688, +0.0000019697,0.0000019701,0.0000019697,0.0000019684,0.0000019668, +0.0000019657,0.0000019649,0.0000019642,0.0000019641,0.0000019649, +0.0000019674,0.0000019715,0.0000019763,0.0000019814,0.0000019868, +0.0000019922,0.0000019970,0.0000020006,0.0000020030,0.0000020044, +0.0000020046,0.0000020037,0.0000020019,0.0000019992,0.0000019961, +0.0000019934,0.0000019916,0.0000019911,0.0000019915,0.0000019929, +0.0000019945,0.0000019958,0.0000019961,0.0000019953,0.0000019934, +0.0000019907,0.0000019874,0.0000019843,0.0000019828,0.0000019825, +0.0000019834,0.0000019849,0.0000019868,0.0000019889,0.0000019910, +0.0000019934,0.0000019960,0.0000019984,0.0000020001,0.0000020011, +0.0000020017,0.0000020008,0.0000020007,0.0000019992,0.0000019975, +0.0000019950,0.0000019924,0.0000019897,0.0000019874,0.0000019858, +0.0000019861,0.0000019882,0.0000019890,0.0000019911,0.0000019928, +0.0000019942,0.0000019958,0.0000019966,0.0000019977,0.0000019965, +0.0000019930,0.0000019878,0.0000019812,0.0000019744,0.0000019684, +0.0000019647,0.0000019626,0.0000019626,0.0000019637,0.0000019651, +0.0000019659,0.0000019654,0.0000019636,0.0000019606,0.0000019570, +0.0000019538,0.0000019516,0.0000019515,0.0000019513,0.0000019526, +0.0000019542,0.0000019555,0.0000019566,0.0000019573,0.0000019587, +0.0000019608,0.0000019638,0.0000019675,0.0000019718,0.0000019765, +0.0000019813,0.0000019859,0.0000019907,0.0000019961,0.0000020017, +0.0000020067,0.0000020105,0.0000020127,0.0000020132,0.0000020129, +0.0000020124,0.0000020124,0.0000020135,0.0000020153,0.0000020175, +0.0000020201,0.0000020232,0.0000020268,0.0000020300,0.0000020328, +0.0000020353,0.0000020373,0.0000020386,0.0000020387,0.0000020381, +0.0000020360,0.0000020324,0.0000020276,0.0000020221,0.0000020160, +0.0000020099,0.0000020046,0.0000020007,0.0000019972,0.0000019930, +0.0000019877,0.0000019819,0.0000019764,0.0000019716,0.0000019684, +0.0000019664,0.0000019651,0.0000019642,0.0000019640,0.0000019644, +0.0000019650,0.0000019657,0.0000019666,0.0000019678,0.0000019691, +0.0000019700,0.0000019706,0.0000019710,0.0000019715,0.0000019712, +0.0000019697,0.0000019673,0.0000019648,0.0000019629,0.0000019619, +0.0000019619,0.0000019623,0.0000019631,0.0000019647,0.0000019665, +0.0000019685,0.0000019703,0.0000019718,0.0000019731,0.0000019739, +0.0000019742,0.0000019746,0.0000019751,0.0000019753,0.0000019748, +0.0000019739,0.0000019722,0.0000019698,0.0000019665,0.0000019624, +0.0000019574,0.0000019518,0.0000019459,0.0000019396,0.0000019330, +0.0000019263,0.0000019193,0.0000019121,0.0000019054,0.0000018994, +0.0000018938,0.0000018896,0.0000018871,0.0000018861,0.0000018867, +0.0000018883,0.0000018893,0.0000018887,0.0000018865,0.0000018838, +0.0000018820,0.0000018818,0.0000018833,0.0000018858,0.0000018875, +0.0000018878,0.0000018879,0.0000018889,0.0000018918,0.0000018949, +0.0000018969,0.0000018980,0.0000018983,0.0000018982,0.0000018977, +0.0000018977,0.0000018985,0.0000019003,0.0000019024,0.0000019041, +0.0000019048,0.0000019045,0.0000019028,0.0000018993,0.0000018950, +0.0000018907,0.0000018860,0.0000018805,0.0000018751,0.0000018719, +0.0000018714,0.0000018723,0.0000018736,0.0000018756,0.0000018778, +0.0000018802,0.0000018821,0.0000018837,0.0000018847,0.0000018852, +0.0000018852,0.0000018848,0.0000018839,0.0000018831,0.0000018829, +0.0000018834,0.0000018841,0.0000018848,0.0000018858,0.0000018873, +0.0000018901,0.0000018945,0.0000019002,0.0000019074,0.0000019157, +0.0000019245,0.0000019333,0.0000019419,0.0000019501,0.0000019570, +0.0000019624,0.0000019657,0.0000019675,0.0000019688,0.0000019696, +0.0000019719,0.0000019747,0.0000019780,0.0000019823,0.0000019865, +0.0000019898,0.0000019928,0.0000019929,0.0000019934,0.0000019929, +0.0000019902,0.0000019861,0.0000019803,0.0000019733,0.0000019658, +0.0000019584,0.0000019521,0.0000019473,0.0000019439,0.0000019410, +0.0000019391,0.0000019374,0.0000019343,0.0000019286,0.0000019204, +0.0000019121,0.0000019055,0.0000019013,0.0000018995,0.0000018997, +0.0000019005,0.0000019012,0.0000019020,0.0000019033,0.0000019048, +0.0000019064,0.0000019084,0.0000019107,0.0000019126,0.0000019138, +0.0000019145,0.0000019158,0.0000019173,0.0000019179,0.0000019169, +0.0000019139,0.0000019094,0.0000019041,0.0000018976,0.0000018891, +0.0000018803,0.0000018753,0.0000018734,0.0000018762,0.0000018840, +0.0000018938,0.0000019017,0.0000019056,0.0000019070,0.0000019080, +0.0000019094,0.0000019094,0.0000019077,0.0000019043,0.0000018998, +0.0000018952,0.0000018901,0.0000018816,0.0000018679,0.0000018524, +0.0000018418,0.0000018390,0.0000018404,0.0000018450,0.0000018498, +0.0000018528,0.0000018542,0.0000018551,0.0000018553,0.0000018548, +0.0000018531,0.0000018509,0.0000018490,0.0000018468,0.0000018448, +0.0000018436,0.0000018427,0.0000018422,0.0000018416,0.0000018409, +0.0000018401,0.0000018393,0.0000018383,0.0000018368,0.0000018351, +0.0000018329,0.0000018307,0.0000018290,0.0000018268,0.0000018237, +0.0000018205,0.0000018175,0.0000018129,0.0000018101,0.0000018104, +0.0000018141,0.0000018186,0.0000018225,0.0000018269,0.0000018316, +0.0000018353,0.0000018369,0.0000018369,0.0000018369,0.0000018372, +0.0000018375,0.0000018380,0.0000018385,0.0000018387,0.0000018387, +0.0000018387,0.0000018387,0.0000018387,0.0000018392,0.0000018397, +0.0000018400,0.0000018400,0.0000018397,0.0000018390,0.0000018374, +0.0000018351,0.0000018317,0.0000018276,0.0000018229,0.0000018179, +0.0000018124,0.0000018072,0.0000018019,0.0000017964,0.0000017908, +0.0000017855,0.0000017807,0.0000017764,0.0000017738,0.0000017725, +0.0000017726,0.0000017736,0.0000017755,0.0000017775,0.0000017796, +0.0000017806,0.0000017806,0.0000017805,0.0000017812,0.0000017822, +0.0000017834,0.0000017844,0.0000017849,0.0000017849,0.0000017849, +0.0000017858,0.0000017885,0.0000017935,0.0000017981,0.0000018006, +0.0000018011,0.0000018002,0.0000017974,0.0000017936,0.0000017904, +0.0000017886,0.0000017875,0.0000017845,0.0000017764,0.0000017668, +0.0000017631,0.0000017670,0.0000017799,0.0000017920,0.0000017966, +0.0000017976,0.0000017998,0.0000018061,0.0000018183,0.0000018321, +0.0000018393,0.0000018405,0.0000018405,0.0000018396,0.0000018394, +0.0000018439,0.0000018497,0.0000018517,0.0000018548,0.0000018614, +0.0000018696,0.0000018766,0.0000018810,0.0000018822,0.0000018810, +0.0000018790,0.0000018791,0.0000018835,0.0000018902,0.0000018952, +0.0000018988,0.0000019004,0.0000018989,0.0000018925,0.0000018866, +0.0000018838,0.0000018834,0.0000018841,0.0000018861,0.0000018884, +0.0000018894,0.0000018891,0.0000018880,0.0000018867,0.0000018868, +0.0000018888,0.0000018913,0.0000018927,0.0000018920,0.0000018886, +0.0000018845,0.0000018798,0.0000018757,0.0000018748,0.0000018773, +0.0000018808,0.0000018847,0.0000018884,0.0000018908,0.0000018996, +0.0000019076,0.0000019021,0.0000018990,0.0000019076,0.0000019047, +0.0000018821,0.0000018633,0.0000018599,0.0000018606,0.0000018620, +0.0000018631,0.0000018635,0.0000018636,0.0000018636,0.0000018635, +0.0000018634,0.0000018637,0.0000018640,0.0000018633,0.0000018609, +0.0000018585,0.0000018575,0.0000018558,0.0000018541,0.0000018531, +0.0000018482,0.0000018363,0.0000018259,0.0000018223,0.0000018223, +0.0000018222,0.0000018220,0.0000018207,0.0000018187,0.0000018159, +0.0000018127,0.0000018097,0.0000018071,0.0000018054,0.0000018045, +0.0000018039,0.0000018035,0.0000018028,0.0000018019,0.0000018010, +0.0000018003,0.0000017998,0.0000017993,0.0000017983,0.0000017968, +0.0000017956,0.0000017948,0.0000017957,0.0000017950,0.0000017956, +0.0000017966,0.0000017981,0.0000017994,0.0000017997,0.0000017995, +0.0000017982,0.0000017969,0.0000017952,0.0000017933,0.0000017926, +0.0000017924,0.0000017930,0.0000017959,0.0000018022,0.0000018122, +0.0000018253,0.0000018396,0.0000018529,0.0000018639,0.0000018725, +0.0000018789,0.0000018830,0.0000018850,0.0000018850,0.0000018835, +0.0000018814,0.0000018789,0.0000018770,0.0000018756,0.0000018745, +0.0000018734,0.0000018716,0.0000018689,0.0000018653,0.0000018610, +0.0000018560,0.0000018511,0.0000018472,0.0000018434,0.0000018410, +0.0000018398,0.0000018397,0.0000018401,0.0000018410,0.0000018420, +0.0000018427,0.0000018434,0.0000018442,0.0000018451,0.0000018461, +0.0000018474,0.0000018488,0.0000018501,0.0000018515,0.0000018531, +0.0000018548,0.0000018562,0.0000018573,0.0000018579,0.0000018580, +0.0000018577,0.0000018570,0.0000018562,0.0000018551,0.0000018539, +0.0000018527,0.0000018517,0.0000018507,0.0000018497,0.0000018487, +0.0000018476,0.0000018464,0.0000018449,0.0000018432,0.0000018415, +0.0000018398,0.0000018381,0.0000018366,0.0000018353,0.0000018342, +0.0000018336,0.0000018335,0.0000018340,0.0000018348,0.0000018356, +0.0000018367,0.0000018383,0.0000018401,0.0000018419,0.0000018436, +0.0000018454,0.0000018472,0.0000018486,0.0000018497,0.0000018502, +0.0000018505,0.0000018508,0.0000018509,0.0000018509,0.0000018510, +0.0000018514,0.0000018523,0.0000018534,0.0000018545,0.0000018556, +0.0000018569,0.0000018582,0.0000018592,0.0000018599,0.0000018601, +0.0000018563,0.0000018569,0.0000018569,0.0000018566,0.0000018560, +0.0000018554,0.0000018551,0.0000018553,0.0000018560,0.0000018560, +0.0000018567,0.0000018562,0.0000018546,0.0000018530,0.0000018514, +0.0000018502,0.0000018498,0.0000018498,0.0000018502,0.0000018502, +0.0000018495,0.0000018471,0.0000018431,0.0000018377,0.0000018317, +0.0000018263,0.0000018219,0.0000018187,0.0000018159,0.0000018130, +0.0000018100,0.0000018076,0.0000018053,0.0000018049,0.0000018063, +0.0000018098,0.0000018151,0.0000018220,0.0000018307,0.0000018404, +0.0000018499,0.0000018576,0.0000018624,0.0000018643,0.0000018641, +0.0000018629,0.0000018619,0.0000018613,0.0000018611,0.0000018608, +0.0000018603,0.0000018600,0.0000018602,0.0000018615,0.0000018640, +0.0000018669,0.0000018695,0.0000018712,0.0000018716,0.0000018707, +0.0000018692,0.0000018673,0.0000018656,0.0000018653,0.0000018665, +0.0000018696,0.0000018738,0.0000018785,0.0000018830,0.0000018867, +0.0000018898,0.0000018925,0.0000018949,0.0000018969,0.0000018986, +0.0000019000,0.0000019016,0.0000019033,0.0000019051,0.0000019068, +0.0000019083,0.0000019092,0.0000019098,0.0000019103,0.0000019107, +0.0000019107,0.0000019107,0.0000019106,0.0000019104,0.0000019099, +0.0000019090,0.0000019075,0.0000019055,0.0000019030,0.0000019005, +0.0000018982,0.0000018961,0.0000018939,0.0000018918,0.0000018899, +0.0000018880,0.0000018860,0.0000018836,0.0000018808,0.0000018781, +0.0000018758,0.0000018743,0.0000018735,0.0000018728,0.0000018717, +0.0000018698,0.0000018674,0.0000018652,0.0000018637,0.0000018633, +0.0000018636,0.0000018640,0.0000018640,0.0000018632,0.0000018617, +0.0000018600,0.0000018580,0.0000018560,0.0000018541,0.0000018524, +0.0000018512,0.0000018500,0.0000018488,0.0000018474,0.0000018458, +0.0000018440,0.0000018421,0.0000018400,0.0000018381,0.0000018363, +0.0000018349,0.0000018339,0.0000018328,0.0000018316,0.0000018302, +0.0000018289,0.0000018277,0.0000018266,0.0000018255,0.0000018246, +0.0000018237,0.0000018231,0.0000018232,0.0000018239,0.0000018251, +0.0000018268,0.0000018289,0.0000018311,0.0000018332,0.0000018353, +0.0000018371,0.0000018383,0.0000018392,0.0000018401,0.0000018408, +0.0000018414,0.0000018419,0.0000018424,0.0000018429,0.0000018432, +0.0000018433,0.0000018429,0.0000018424,0.0000018418,0.0000018411, +0.0000018402,0.0000018394,0.0000018388,0.0000018385,0.0000018391, +0.0000018406,0.0000018429,0.0000018461,0.0000018498,0.0000018537, +0.0000018572,0.0000018601,0.0000018626,0.0000018653,0.0000018680, +0.0000018699,0.0000018704,0.0000018711,0.0000018715,0.0000018713, +0.0000018707,0.0000018698,0.0000018684,0.0000018663,0.0000018636, +0.0000018600,0.0000018553,0.0000018496,0.0000018434,0.0000018371, +0.0000018313,0.0000018262,0.0000018217,0.0000018176,0.0000018140, +0.0000018112,0.0000018099,0.0000018088,0.0000018089,0.0000018105, +0.0000018131,0.0000018161,0.0000018193,0.0000018221,0.0000018244, +0.0000018266,0.0000018294,0.0000018342,0.0000018424,0.0000018542, +0.0000018686,0.0000018831,0.0000018950,0.0000019031,0.0000019077, +0.0000019108,0.0000019149,0.0000019214,0.0000019303,0.0000019404, +0.0000019503,0.0000019587,0.0000019650,0.0000019692,0.0000019721, +0.0000019743,0.0000019762,0.0000019779,0.0000019797,0.0000019821, +0.0000019850,0.0000019881,0.0000019912,0.0000019940,0.0000019965, +0.0000019984,0.0000019996,0.0000019999,0.0000019997,0.0000019991, +0.0000019980,0.0000019965,0.0000019947,0.0000019928,0.0000019910, +0.0000019893,0.0000019875,0.0000019859,0.0000019851,0.0000019852, +0.0000019857,0.0000019866,0.0000019875,0.0000019883,0.0000019887, +0.0000019887,0.0000019881,0.0000019871,0.0000019860,0.0000019848, +0.0000019835,0.0000019819,0.0000019803,0.0000019790,0.0000019784, +0.0000019785,0.0000019792,0.0000019804,0.0000019818,0.0000019834, +0.0000019853,0.0000019875,0.0000019898,0.0000019925,0.0000019959, +0.0000019995,0.0000020030,0.0000020064,0.0000020094,0.0000020116, +0.0000020129,0.0000020136,0.0000020145,0.0000020163,0.0000020193, +0.0000020231,0.0000020269,0.0000020301,0.0000020317,0.0000020309, +0.0000020282,0.0000020236,0.0000020180,0.0000020132,0.0000020108, +0.0000020101,0.0000020101,0.0000020100,0.0000020087,0.0000020065, +0.0000020066,0.0000020117,0.0000020171,0.0000020171,0.0000020191, +0.0000020287,0.0000020367,0.0000020354,0.0000020306,0.0000020288, +0.0000020296,0.0000020284,0.0000020228,0.0000020159,0.0000020120, +0.0000020089,0.0000020027,0.0000019981,0.0000019993,0.0000020060, +0.0000020195,0.0000020366,0.0000020458,0.0000020458,0.0000020423, +0.0000020347,0.0000020230,0.0000020141,0.0000020129,0.0000020186, +0.0000020280,0.0000020405,0.0000020557,0.0000020692,0.0000020765, +0.0000020779,0.0000020772,0.0000020765,0.0000020767,0.0000020771, +0.0000020769,0.0000020757,0.0000020737,0.0000020716,0.0000020700, +0.0000020688,0.0000020683,0.0000020683,0.0000020685,0.0000020691, +0.0000020703,0.0000020720,0.0000020743,0.0000020771,0.0000020806, +0.0000020842,0.0000020875,0.0000020901,0.0000020920,0.0000020934, +0.0000020940,0.0000020941,0.0000020938,0.0000020936,0.0000020936, +0.0000020937,0.0000020941,0.0000020947,0.0000020951,0.0000020949, +0.0000020940,0.0000020923,0.0000020902,0.0000020878,0.0000020855, +0.0000020833,0.0000020811,0.0000020790,0.0000020767,0.0000020743, +0.0000020723,0.0000020709,0.0000020699,0.0000020691,0.0000020686, +0.0000020686,0.0000020689,0.0000020694,0.0000020698,0.0000020703, +0.0000020707,0.0000020710,0.0000020710,0.0000020710,0.0000020713, +0.0000020721,0.0000020732,0.0000020742,0.0000020748,0.0000020749, +0.0000020749,0.0000020747,0.0000020741,0.0000020729,0.0000020714, +0.0000020695,0.0000020672,0.0000020647,0.0000020624,0.0000020605, +0.0000020588,0.0000020570,0.0000020547,0.0000020521,0.0000020493, +0.0000020468,0.0000020446,0.0000020425,0.0000020400,0.0000020368, +0.0000020332,0.0000020296,0.0000020260,0.0000020225,0.0000020193, +0.0000020162,0.0000020131,0.0000020101,0.0000020069,0.0000020039, +0.0000020015,0.0000019996,0.0000019979,0.0000019963,0.0000019947, +0.0000019932,0.0000019918,0.0000019907,0.0000019900,0.0000019898, +0.0000019901,0.0000019907,0.0000019918,0.0000019934,0.0000019953, +0.0000019975,0.0000020002,0.0000020032,0.0000020063,0.0000020093, +0.0000020122,0.0000020154,0.0000020188,0.0000020223,0.0000020257, +0.0000020287,0.0000020317,0.0000020345,0.0000020375,0.0000020408, +0.0000020441,0.0000020472,0.0000020498,0.0000020520,0.0000020537, +0.0000020551,0.0000020559,0.0000020564,0.0000020569,0.0000020576, +0.0000020581,0.0000020584,0.0000020586,0.0000020587,0.0000020586, +0.0000020582,0.0000020578,0.0000020570,0.0000020563,0.0000020557, +0.0000020549,0.0000020546,0.0000020546,0.0000020546,0.0000020549, +0.0000020553,0.0000020554,0.0000020552,0.0000020550,0.0000020548, +0.0000020545,0.0000020543,0.0000020544,0.0000020550,0.0000020559, +0.0000020568,0.0000020577,0.0000020583,0.0000020586,0.0000020586, +0.0000020586,0.0000020583,0.0000020575,0.0000020563,0.0000020546, +0.0000020522,0.0000020496,0.0000020471,0.0000020446,0.0000020420, +0.0000020391,0.0000020363,0.0000020339,0.0000020325,0.0000020317, +0.0000020313,0.0000020313,0.0000020323,0.0000020344,0.0000020372, +0.0000020406,0.0000020441,0.0000020473,0.0000020499,0.0000020517, +0.0000020535,0.0000020561,0.0000020589,0.0000020613,0.0000020628, +0.0000020636,0.0000020639,0.0000020634,0.0000020627,0.0000020619, +0.0000020610,0.0000020606,0.0000020609,0.0000020619,0.0000020636, +0.0000020652,0.0000020669,0.0000020684,0.0000020696,0.0000020700, +0.0000020698,0.0000020689,0.0000020673,0.0000020646,0.0000020619, +0.0000020592,0.0000020562,0.0000020527,0.0000020491,0.0000020457, +0.0000020426,0.0000020399,0.0000020377,0.0000020358,0.0000020343, +0.0000020334,0.0000020331,0.0000020333,0.0000020338,0.0000020348, +0.0000020363,0.0000020382,0.0000020400,0.0000020415,0.0000020431, +0.0000020454,0.0000020484,0.0000020517,0.0000020552,0.0000020587, +0.0000020619,0.0000020639,0.0000020636,0.0000020624,0.0000020601, +0.0000020578,0.0000020561,0.0000020553,0.0000020554,0.0000020559, +0.0000020567,0.0000020586,0.0000020623,0.0000020675,0.0000020711, +0.0000020725,0.0000020702,0.0000020642,0.0000020570,0.0000020510, +0.0000020470,0.0000020439,0.0000020405,0.0000020360,0.0000020310, +0.0000020275,0.0000020255,0.0000020252,0.0000020252,0.0000020251, +0.0000020251,0.0000020254,0.0000020263,0.0000020281,0.0000020309, +0.0000020348,0.0000020398,0.0000020452,0.0000020500,0.0000020544, +0.0000020584,0.0000020624,0.0000020662,0.0000020696,0.0000020723, +0.0000020741,0.0000020750,0.0000020747,0.0000020728,0.0000020698, +0.0000020660,0.0000020621,0.0000020582,0.0000020549,0.0000020528, +0.0000020522,0.0000020531,0.0000020554,0.0000020582,0.0000020606, +0.0000020624,0.0000020637,0.0000020648,0.0000020657,0.0000020663, +0.0000020668,0.0000020668,0.0000020663,0.0000020649,0.0000020627, +0.0000020600,0.0000020572,0.0000020545,0.0000020523,0.0000020506, +0.0000020495,0.0000020490,0.0000020490,0.0000020494,0.0000020502, +0.0000020517,0.0000020531,0.0000020538,0.0000020538,0.0000020536, +0.0000020527,0.0000020513,0.0000020492,0.0000020465,0.0000020436, +0.0000020407,0.0000020379,0.0000020350,0.0000020324,0.0000020297, +0.0000020280,0.0000020271,0.0000020265,0.0000020263,0.0000020264, +0.0000020259,0.0000020245,0.0000020222,0.0000020191,0.0000020156, +0.0000020118,0.0000020081,0.0000020045,0.0000020011,0.0000019981, +0.0000019955,0.0000019940,0.0000019935,0.0000019927,0.0000019923, +0.0000019928,0.0000019934,0.0000019937,0.0000019938,0.0000019939, +0.0000019938,0.0000019936,0.0000019928,0.0000019915,0.0000019902, +0.0000019895,0.0000019890,0.0000019890,0.0000019895,0.0000019901, +0.0000019907,0.0000019910,0.0000019909,0.0000019906,0.0000019905, +0.0000019903,0.0000019892,0.0000019872,0.0000019839,0.0000019795, +0.0000019748,0.0000019703,0.0000019663,0.0000019633,0.0000019615, +0.0000019615,0.0000019626,0.0000019643,0.0000019662,0.0000019675, +0.0000019678,0.0000019670,0.0000019660,0.0000019648,0.0000019633, +0.0000019616,0.0000019601,0.0000019593,0.0000019598,0.0000019617, +0.0000019649,0.0000019690,0.0000019740,0.0000019799,0.0000019860, +0.0000019915,0.0000019958,0.0000019988,0.0000020003,0.0000020003, +0.0000019993,0.0000019969,0.0000019934,0.0000019893,0.0000019856, +0.0000019827,0.0000019812,0.0000019817,0.0000019838,0.0000019861, +0.0000019881,0.0000019892,0.0000019891,0.0000019881,0.0000019863, +0.0000019841,0.0000019820,0.0000019804,0.0000019794,0.0000019788, +0.0000019786,0.0000019787,0.0000019791,0.0000019798,0.0000019812, +0.0000019833,0.0000019858,0.0000019887,0.0000019917,0.0000019943, +0.0000019962,0.0000019975,0.0000019982,0.0000019975,0.0000019982, +0.0000019977,0.0000019973,0.0000019964,0.0000019955,0.0000019945, +0.0000019937,0.0000019931,0.0000019923,0.0000019926,0.0000019931, +0.0000019941,0.0000019961,0.0000019978,0.0000019982,0.0000019967, +0.0000019927,0.0000019863,0.0000019786,0.0000019712,0.0000019652, +0.0000019617,0.0000019598,0.0000019603,0.0000019622,0.0000019646, +0.0000019656,0.0000019662,0.0000019648,0.0000019618,0.0000019585, +0.0000019557,0.0000019537,0.0000019521,0.0000019515,0.0000019513, +0.0000019515,0.0000019525,0.0000019537,0.0000019554,0.0000019580, +0.0000019613,0.0000019652,0.0000019697,0.0000019744,0.0000019790, +0.0000019832,0.0000019873,0.0000019921,0.0000019977,0.0000020034, +0.0000020083,0.0000020115,0.0000020129,0.0000020127,0.0000020125, +0.0000020128,0.0000020135,0.0000020146,0.0000020162,0.0000020183, +0.0000020206,0.0000020229,0.0000020255,0.0000020283,0.0000020306, +0.0000020321,0.0000020324,0.0000020318,0.0000020296,0.0000020257, +0.0000020208,0.0000020155,0.0000020100,0.0000020048,0.0000020008, +0.0000019979,0.0000019950,0.0000019913,0.0000019865,0.0000019810, +0.0000019756,0.0000019710,0.0000019677,0.0000019656,0.0000019642, +0.0000019629,0.0000019622,0.0000019624,0.0000019632,0.0000019640, +0.0000019650,0.0000019663,0.0000019673,0.0000019679,0.0000019688, +0.0000019702,0.0000019718,0.0000019732,0.0000019740,0.0000019741, +0.0000019736,0.0000019728,0.0000019718,0.0000019707,0.0000019695, +0.0000019685,0.0000019682,0.0000019685,0.0000019692,0.0000019703, +0.0000019712,0.0000019719,0.0000019723,0.0000019723,0.0000019725, +0.0000019729,0.0000019730,0.0000019726,0.0000019715,0.0000019704, +0.0000019690,0.0000019665,0.0000019627,0.0000019578,0.0000019521, +0.0000019459,0.0000019397,0.0000019337,0.0000019272,0.0000019203, +0.0000019137,0.0000019075,0.0000019012,0.0000018950,0.0000018899, +0.0000018860,0.0000018834,0.0000018821,0.0000018822,0.0000018836, +0.0000018847,0.0000018845,0.0000018825,0.0000018804,0.0000018793, +0.0000018796,0.0000018814,0.0000018835,0.0000018850,0.0000018858, +0.0000018867,0.0000018890,0.0000018919,0.0000018946,0.0000018966, +0.0000018973,0.0000018967,0.0000018955,0.0000018951,0.0000018955, +0.0000018969,0.0000018992,0.0000019017,0.0000019034,0.0000019040, +0.0000019032,0.0000019009,0.0000018974,0.0000018936,0.0000018893, +0.0000018840,0.0000018786,0.0000018745,0.0000018727,0.0000018728, +0.0000018737,0.0000018752,0.0000018775,0.0000018796,0.0000018811, +0.0000018819,0.0000018822,0.0000018821,0.0000018820,0.0000018816, +0.0000018810,0.0000018804,0.0000018803,0.0000018810,0.0000018815, +0.0000018821,0.0000018827,0.0000018835,0.0000018851,0.0000018874, +0.0000018904,0.0000018944,0.0000018995,0.0000019056,0.0000019127, +0.0000019210,0.0000019301,0.0000019392,0.0000019478,0.0000019553, +0.0000019613,0.0000019650,0.0000019680,0.0000019698,0.0000019711, +0.0000019730,0.0000019759,0.0000019797,0.0000019839,0.0000019881, +0.0000019913,0.0000019945,0.0000019950,0.0000019954,0.0000019941, +0.0000019897,0.0000019835,0.0000019754,0.0000019662,0.0000019571, +0.0000019489,0.0000019427,0.0000019388,0.0000019364,0.0000019346, +0.0000019323,0.0000019284,0.0000019224,0.0000019156,0.0000019093, +0.0000019043,0.0000019014,0.0000019003,0.0000019004,0.0000019000, +0.0000019004,0.0000019015,0.0000019029,0.0000019045,0.0000019066, +0.0000019091,0.0000019115,0.0000019130,0.0000019140,0.0000019152, +0.0000019165,0.0000019172,0.0000019166,0.0000019138,0.0000019093, +0.0000019043,0.0000018979,0.0000018893,0.0000018803,0.0000018736, +0.0000018705,0.0000018728,0.0000018803,0.0000018905,0.0000018992, +0.0000019041,0.0000019058,0.0000019070,0.0000019083,0.0000019085, +0.0000019075,0.0000019047,0.0000019005,0.0000018958,0.0000018908, +0.0000018833,0.0000018707,0.0000018557,0.0000018445,0.0000018401, +0.0000018413,0.0000018458,0.0000018506,0.0000018532,0.0000018540, +0.0000018545,0.0000018546,0.0000018540,0.0000018526,0.0000018508, +0.0000018488,0.0000018467,0.0000018446,0.0000018430,0.0000018421, +0.0000018415,0.0000018405,0.0000018391,0.0000018376,0.0000018358, +0.0000018336,0.0000018314,0.0000018291,0.0000018267,0.0000018245, +0.0000018223,0.0000018200,0.0000018179,0.0000018154,0.0000018114, +0.0000018094,0.0000018106,0.0000018146,0.0000018185,0.0000018226, +0.0000018273,0.0000018324,0.0000018349,0.0000018331,0.0000018291, +0.0000018265,0.0000018260,0.0000018268,0.0000018285,0.0000018306, +0.0000018326,0.0000018342,0.0000018356,0.0000018363,0.0000018370, +0.0000018377,0.0000018382,0.0000018382,0.0000018379,0.0000018372, +0.0000018360,0.0000018344,0.0000018321,0.0000018290,0.0000018248, +0.0000018201,0.0000018152,0.0000018103,0.0000018056,0.0000018009, +0.0000017966,0.0000017921,0.0000017876,0.0000017831,0.0000017790, +0.0000017760,0.0000017740,0.0000017732,0.0000017732,0.0000017739, +0.0000017753,0.0000017761,0.0000017765,0.0000017764,0.0000017765, +0.0000017770,0.0000017780,0.0000017793,0.0000017809,0.0000017824, +0.0000017837,0.0000017855,0.0000017886,0.0000017929,0.0000017969, +0.0000017996,0.0000018004,0.0000018000,0.0000017982,0.0000017951, +0.0000017918,0.0000017895,0.0000017882,0.0000017866,0.0000017803, +0.0000017695,0.0000017627,0.0000017632,0.0000017737,0.0000017877, +0.0000017947,0.0000017964,0.0000017984,0.0000018040,0.0000018156, +0.0000018297,0.0000018384,0.0000018402,0.0000018404,0.0000018393, +0.0000018376,0.0000018388,0.0000018447,0.0000018486,0.0000018507, +0.0000018560,0.0000018641,0.0000018720,0.0000018775,0.0000018801, +0.0000018800,0.0000018779,0.0000018766,0.0000018782,0.0000018834, +0.0000018891,0.0000018933,0.0000018968,0.0000018980,0.0000018964, +0.0000018913,0.0000018877,0.0000018865,0.0000018865,0.0000018869, +0.0000018883,0.0000018894,0.0000018897,0.0000018890,0.0000018882, +0.0000018886,0.0000018904,0.0000018927,0.0000018944,0.0000018939, +0.0000018903,0.0000018854,0.0000018812,0.0000018769,0.0000018740, +0.0000018749,0.0000018786,0.0000018814,0.0000018852,0.0000018885, +0.0000018908,0.0000019000,0.0000019065,0.0000019008,0.0000018979, +0.0000019080,0.0000019087,0.0000018884,0.0000018690,0.0000018626, +0.0000018622,0.0000018628,0.0000018638,0.0000018645,0.0000018646, +0.0000018640,0.0000018632,0.0000018621,0.0000018619,0.0000018627, +0.0000018630,0.0000018617,0.0000018599,0.0000018580,0.0000018537, +0.0000018503,0.0000018505,0.0000018492,0.0000018403,0.0000018283, +0.0000018220,0.0000018203,0.0000018203,0.0000018205,0.0000018209, +0.0000018204,0.0000018200,0.0000018189,0.0000018174,0.0000018157, +0.0000018144,0.0000018139,0.0000018138,0.0000018137,0.0000018134, +0.0000018131,0.0000018127,0.0000018125,0.0000018125,0.0000018125, +0.0000018120,0.0000018106,0.0000018085,0.0000018061,0.0000018037, +0.0000018013,0.0000017991,0.0000017968,0.0000017969,0.0000017955, +0.0000017947,0.0000017950,0.0000017957,0.0000017963,0.0000017963, +0.0000017953,0.0000017941,0.0000017930,0.0000017927,0.0000017922, +0.0000017931,0.0000017966,0.0000018041,0.0000018150,0.0000018284, +0.0000018424,0.0000018551,0.0000018656,0.0000018732,0.0000018781, +0.0000018805,0.0000018808,0.0000018794,0.0000018770,0.0000018745, +0.0000018723,0.0000018708,0.0000018698,0.0000018687,0.0000018670, +0.0000018643,0.0000018606,0.0000018558,0.0000018505,0.0000018450, +0.0000018400,0.0000018361,0.0000018330,0.0000018310,0.0000018304, +0.0000018307,0.0000018312,0.0000018320,0.0000018330,0.0000018340, +0.0000018350,0.0000018359,0.0000018366,0.0000018373,0.0000018379, +0.0000018385,0.0000018390,0.0000018393,0.0000018395,0.0000018395, +0.0000018391,0.0000018384,0.0000018374,0.0000018364,0.0000018352, +0.0000018341,0.0000018332,0.0000018326,0.0000018320,0.0000018314, +0.0000018305,0.0000018296,0.0000018286,0.0000018275,0.0000018265, +0.0000018253,0.0000018240,0.0000018224,0.0000018206,0.0000018189, +0.0000018173,0.0000018161,0.0000018153,0.0000018154,0.0000018162, +0.0000018172,0.0000018183,0.0000018198,0.0000018217,0.0000018237, +0.0000018260,0.0000018286,0.0000018311,0.0000018335,0.0000018357, +0.0000018375,0.0000018390,0.0000018402,0.0000018409,0.0000018413, +0.0000018415,0.0000018415,0.0000018417,0.0000018423,0.0000018436, +0.0000018451,0.0000018470,0.0000018492,0.0000018515,0.0000018535, +0.0000018551,0.0000018459,0.0000018475,0.0000018487,0.0000018495, +0.0000018501,0.0000018506,0.0000018509,0.0000018511,0.0000018513, +0.0000018519,0.0000018529,0.0000018545,0.0000018554,0.0000018558, +0.0000018554,0.0000018540,0.0000018523,0.0000018505,0.0000018493, +0.0000018486,0.0000018481,0.0000018473,0.0000018459,0.0000018436, +0.0000018398,0.0000018347,0.0000018291,0.0000018238,0.0000018194, +0.0000018155,0.0000018119,0.0000018085,0.0000018052,0.0000018029, +0.0000018009,0.0000018012,0.0000018032,0.0000018071,0.0000018123, +0.0000018192,0.0000018275,0.0000018365,0.0000018449,0.0000018517, +0.0000018563,0.0000018586,0.0000018590,0.0000018583,0.0000018576, +0.0000018570,0.0000018564,0.0000018556,0.0000018550,0.0000018548, +0.0000018551,0.0000018561,0.0000018579,0.0000018606,0.0000018638, +0.0000018664,0.0000018677,0.0000018670,0.0000018657,0.0000018644, +0.0000018632,0.0000018632,0.0000018650,0.0000018682,0.0000018722, +0.0000018763,0.0000018800,0.0000018832,0.0000018861,0.0000018886, +0.0000018907,0.0000018924,0.0000018943,0.0000018964,0.0000018986, +0.0000019012,0.0000019039,0.0000019066,0.0000019088,0.0000019102, +0.0000019108,0.0000019113,0.0000019114,0.0000019113,0.0000019110, +0.0000019108,0.0000019103,0.0000019092,0.0000019072,0.0000019045, +0.0000019015,0.0000018984,0.0000018953,0.0000018926,0.0000018901, +0.0000018878,0.0000018857,0.0000018837,0.0000018818,0.0000018798, +0.0000018776,0.0000018753,0.0000018734,0.0000018722,0.0000018718, +0.0000018715,0.0000018712,0.0000018701,0.0000018682,0.0000018662, +0.0000018649,0.0000018645,0.0000018647,0.0000018650,0.0000018648, +0.0000018640,0.0000018626,0.0000018608,0.0000018586,0.0000018562, +0.0000018539,0.0000018518,0.0000018500,0.0000018482,0.0000018463, +0.0000018443,0.0000018424,0.0000018406,0.0000018390,0.0000018376, +0.0000018367,0.0000018362,0.0000018358,0.0000018351,0.0000018342, +0.0000018328,0.0000018311,0.0000018293,0.0000018275,0.0000018257, +0.0000018242,0.0000018229,0.0000018220,0.0000018216,0.0000018215, +0.0000018216,0.0000018223,0.0000018239,0.0000018261,0.0000018287, +0.0000018312,0.0000018333,0.0000018349,0.0000018365,0.0000018381, +0.0000018395,0.0000018405,0.0000018415,0.0000018422,0.0000018429, +0.0000018431,0.0000018431,0.0000018427,0.0000018419,0.0000018411, +0.0000018399,0.0000018385,0.0000018368,0.0000018349,0.0000018331, +0.0000018318,0.0000018313,0.0000018316,0.0000018327,0.0000018347, +0.0000018373,0.0000018402,0.0000018433,0.0000018467,0.0000018508, +0.0000018556,0.0000018604,0.0000018644,0.0000018677,0.0000018702, +0.0000018711,0.0000018706,0.0000018700,0.0000018698,0.0000018688, +0.0000018676,0.0000018661,0.0000018639,0.0000018609,0.0000018569, +0.0000018519,0.0000018463,0.0000018404,0.0000018340,0.0000018274, +0.0000018208,0.0000018149,0.0000018105,0.0000018080,0.0000018067, +0.0000018071,0.0000018088,0.0000018119,0.0000018155,0.0000018188, +0.0000018217,0.0000018242,0.0000018263,0.0000018281,0.0000018307, +0.0000018358,0.0000018443,0.0000018560,0.0000018695,0.0000018825, +0.0000018930,0.0000019002,0.0000019048,0.0000019082,0.0000019123, +0.0000019185,0.0000019268,0.0000019361,0.0000019451,0.0000019527, +0.0000019587,0.0000019629,0.0000019659,0.0000019682,0.0000019703, +0.0000019725,0.0000019750,0.0000019776,0.0000019802,0.0000019826, +0.0000019847,0.0000019863,0.0000019874,0.0000019879,0.0000019878, +0.0000019874,0.0000019864,0.0000019852,0.0000019837,0.0000019823, +0.0000019811,0.0000019800,0.0000019788,0.0000019778,0.0000019772, +0.0000019774,0.0000019782,0.0000019795,0.0000019805,0.0000019813, +0.0000019817,0.0000019814,0.0000019805,0.0000019790,0.0000019772, +0.0000019753,0.0000019731,0.0000019707,0.0000019684,0.0000019664, +0.0000019650,0.0000019645,0.0000019648,0.0000019655,0.0000019661, +0.0000019669,0.0000019681,0.0000019697,0.0000019719,0.0000019752, +0.0000019795,0.0000019844,0.0000019897,0.0000019952,0.0000020007, +0.0000020054,0.0000020091,0.0000020115,0.0000020129,0.0000020140, +0.0000020156,0.0000020183,0.0000020218,0.0000020254,0.0000020281, +0.0000020290,0.0000020275,0.0000020239,0.0000020186,0.0000020134, +0.0000020101,0.0000020093,0.0000020092,0.0000020085,0.0000020065, +0.0000020042,0.0000020055,0.0000020118,0.0000020157,0.0000020152, +0.0000020193,0.0000020303,0.0000020363,0.0000020348,0.0000020305, +0.0000020295,0.0000020300,0.0000020279,0.0000020211,0.0000020145, +0.0000020113,0.0000020074,0.0000020010,0.0000019986,0.0000020016, +0.0000020093,0.0000020234,0.0000020387,0.0000020450,0.0000020437, +0.0000020391,0.0000020304,0.0000020193,0.0000020122,0.0000020116, +0.0000020168,0.0000020246,0.0000020343,0.0000020471,0.0000020604, +0.0000020702,0.0000020746,0.0000020748,0.0000020734,0.0000020721, +0.0000020714,0.0000020710,0.0000020704,0.0000020694,0.0000020680, +0.0000020664,0.0000020646,0.0000020629,0.0000020614,0.0000020603, +0.0000020597,0.0000020592,0.0000020590,0.0000020593,0.0000020604, +0.0000020625,0.0000020656,0.0000020693,0.0000020734,0.0000020776, +0.0000020814,0.0000020844,0.0000020866,0.0000020876,0.0000020876, +0.0000020868,0.0000020856,0.0000020846,0.0000020838,0.0000020831, +0.0000020823,0.0000020813,0.0000020800,0.0000020785,0.0000020770, +0.0000020752,0.0000020733,0.0000020712,0.0000020690,0.0000020666, +0.0000020645,0.0000020630,0.0000020619,0.0000020611,0.0000020608, +0.0000020607,0.0000020610,0.0000020613,0.0000020616,0.0000020619, +0.0000020620,0.0000020619,0.0000020616,0.0000020615,0.0000020616, +0.0000020622,0.0000020629,0.0000020635,0.0000020639,0.0000020640, +0.0000020639,0.0000020634,0.0000020625,0.0000020611,0.0000020591, +0.0000020565,0.0000020536,0.0000020505,0.0000020479,0.0000020460, +0.0000020444,0.0000020427,0.0000020407,0.0000020386,0.0000020365, +0.0000020348,0.0000020335,0.0000020320,0.0000020299,0.0000020272, +0.0000020243,0.0000020215,0.0000020188,0.0000020157,0.0000020122, +0.0000020085,0.0000020047,0.0000020013,0.0000019979,0.0000019947, +0.0000019920,0.0000019899,0.0000019880,0.0000019858,0.0000019834, +0.0000019810,0.0000019787,0.0000019766,0.0000019750,0.0000019739, +0.0000019733,0.0000019731,0.0000019735,0.0000019745,0.0000019761, +0.0000019782,0.0000019805,0.0000019829,0.0000019851,0.0000019870, +0.0000019888,0.0000019906,0.0000019928,0.0000019952,0.0000019977, +0.0000020000,0.0000020025,0.0000020053,0.0000020086,0.0000020126, +0.0000020171,0.0000020216,0.0000020261,0.0000020303,0.0000020343, +0.0000020380,0.0000020412,0.0000020440,0.0000020467,0.0000020492, +0.0000020515,0.0000020533,0.0000020546,0.0000020556,0.0000020561, +0.0000020565,0.0000020562,0.0000020552,0.0000020549,0.0000020534, +0.0000020516,0.0000020506,0.0000020495,0.0000020487,0.0000020484, +0.0000020476,0.0000020470,0.0000020463,0.0000020459,0.0000020454, +0.0000020449,0.0000020448,0.0000020451,0.0000020460,0.0000020469, +0.0000020477,0.0000020484,0.0000020489,0.0000020491,0.0000020490, +0.0000020492,0.0000020496,0.0000020496,0.0000020493,0.0000020488, +0.0000020479,0.0000020468,0.0000020454,0.0000020434,0.0000020411, +0.0000020384,0.0000020355,0.0000020329,0.0000020310,0.0000020297, +0.0000020283,0.0000020273,0.0000020268,0.0000020274,0.0000020291, +0.0000020318,0.0000020358,0.0000020409,0.0000020457,0.0000020493, +0.0000020523,0.0000020553,0.0000020582,0.0000020607,0.0000020624, +0.0000020635,0.0000020638,0.0000020633,0.0000020623,0.0000020615, +0.0000020602,0.0000020591,0.0000020588,0.0000020589,0.0000020597, +0.0000020610,0.0000020624,0.0000020640,0.0000020658,0.0000020670, +0.0000020675,0.0000020676,0.0000020668,0.0000020652,0.0000020632, +0.0000020614,0.0000020593,0.0000020569,0.0000020541,0.0000020512, +0.0000020485,0.0000020459,0.0000020436,0.0000020419,0.0000020405, +0.0000020393,0.0000020383,0.0000020379,0.0000020379,0.0000020384, +0.0000020395,0.0000020410,0.0000020421,0.0000020424,0.0000020427, +0.0000020427,0.0000020432,0.0000020443,0.0000020457,0.0000020474, +0.0000020494,0.0000020517,0.0000020540,0.0000020557,0.0000020565, +0.0000020564,0.0000020553,0.0000020541,0.0000020530,0.0000020528, +0.0000020532,0.0000020544,0.0000020567,0.0000020600,0.0000020648, +0.0000020700,0.0000020728,0.0000020722,0.0000020676,0.0000020604, +0.0000020531,0.0000020471,0.0000020428,0.0000020390,0.0000020348, +0.0000020301,0.0000020261,0.0000020240,0.0000020225,0.0000020220, +0.0000020216,0.0000020214,0.0000020217,0.0000020230,0.0000020251, +0.0000020280,0.0000020322,0.0000020369,0.0000020416,0.0000020463, +0.0000020510,0.0000020559,0.0000020604,0.0000020644,0.0000020677, +0.0000020702,0.0000020716,0.0000020717,0.0000020705,0.0000020682, +0.0000020654,0.0000020622,0.0000020590,0.0000020556,0.0000020525, +0.0000020506,0.0000020493,0.0000020496,0.0000020510,0.0000020526, +0.0000020539,0.0000020553,0.0000020567,0.0000020580,0.0000020592, +0.0000020603,0.0000020611,0.0000020613,0.0000020608,0.0000020596, +0.0000020576,0.0000020550,0.0000020522,0.0000020495,0.0000020468, +0.0000020449,0.0000020436,0.0000020428,0.0000020426,0.0000020435, +0.0000020455,0.0000020476,0.0000020489,0.0000020495,0.0000020494, +0.0000020489,0.0000020478,0.0000020459,0.0000020435,0.0000020412, +0.0000020395,0.0000020379,0.0000020364,0.0000020347,0.0000020332, +0.0000020320,0.0000020310,0.0000020305,0.0000020304,0.0000020301, +0.0000020293,0.0000020276,0.0000020252,0.0000020222,0.0000020188, +0.0000020151,0.0000020115,0.0000020079,0.0000020044,0.0000020009, +0.0000019981,0.0000019960,0.0000019941,0.0000019924,0.0000019912, +0.0000019902,0.0000019892,0.0000019882,0.0000019874,0.0000019868, +0.0000019863,0.0000019857,0.0000019847,0.0000019837,0.0000019829, +0.0000019825,0.0000019826,0.0000019834,0.0000019845,0.0000019859, +0.0000019871,0.0000019877,0.0000019879,0.0000019878,0.0000019877, +0.0000019875,0.0000019867,0.0000019846,0.0000019817,0.0000019774, +0.0000019726,0.0000019675,0.0000019628,0.0000019589,0.0000019563, +0.0000019555,0.0000019560,0.0000019578,0.0000019598,0.0000019610, +0.0000019611,0.0000019610,0.0000019610,0.0000019606,0.0000019597, +0.0000019586,0.0000019579,0.0000019577,0.0000019585,0.0000019602, +0.0000019624,0.0000019654,0.0000019692,0.0000019739,0.0000019789, +0.0000019839,0.0000019883,0.0000019913,0.0000019929,0.0000019930, +0.0000019918,0.0000019891,0.0000019851,0.0000019805,0.0000019763, +0.0000019732,0.0000019718,0.0000019724,0.0000019741,0.0000019766, +0.0000019789,0.0000019805,0.0000019814,0.0000019822,0.0000019822, +0.0000019812,0.0000019799,0.0000019784,0.0000019772,0.0000019764, +0.0000019759,0.0000019753,0.0000019745,0.0000019733,0.0000019725, +0.0000019726,0.0000019735,0.0000019757,0.0000019789,0.0000019824, +0.0000019858,0.0000019890,0.0000019918,0.0000019943,0.0000019968, +0.0000019993,0.0000020000,0.0000020012,0.0000020014,0.0000020010, +0.0000020000,0.0000019982,0.0000019964,0.0000019948,0.0000019940, +0.0000019947,0.0000019958,0.0000019966,0.0000019974,0.0000019970, +0.0000019948,0.0000019906,0.0000019844,0.0000019767,0.0000019691, +0.0000019625,0.0000019590,0.0000019568,0.0000019578,0.0000019609, +0.0000019643,0.0000019660,0.0000019666,0.0000019654,0.0000019631, +0.0000019604,0.0000019574,0.0000019545,0.0000019515,0.0000019501, +0.0000019488,0.0000019489,0.0000019499,0.0000019520,0.0000019548, +0.0000019583,0.0000019624,0.0000019672,0.0000019722,0.0000019769, +0.0000019812,0.0000019850,0.0000019890,0.0000019938,0.0000019994, +0.0000020048,0.0000020089,0.0000020114,0.0000020127,0.0000020130, +0.0000020132,0.0000020136,0.0000020147,0.0000020163,0.0000020175, +0.0000020187,0.0000020205,0.0000020224,0.0000020241,0.0000020253, +0.0000020257,0.0000020252,0.0000020232,0.0000020197,0.0000020152, +0.0000020104,0.0000020055,0.0000020012,0.0000019979,0.0000019956, +0.0000019932,0.0000019900,0.0000019857,0.0000019807,0.0000019757, +0.0000019714,0.0000019683,0.0000019660,0.0000019642,0.0000019627, +0.0000019619,0.0000019619,0.0000019626,0.0000019638,0.0000019649, +0.0000019658,0.0000019663,0.0000019666,0.0000019673,0.0000019691, +0.0000019714,0.0000019739,0.0000019762,0.0000019785,0.0000019799, +0.0000019805,0.0000019805,0.0000019798,0.0000019783,0.0000019767, +0.0000019753,0.0000019743,0.0000019735,0.0000019730,0.0000019727, +0.0000019723,0.0000019718,0.0000019715,0.0000019712,0.0000019708, +0.0000019703,0.0000019698,0.0000019691,0.0000019684,0.0000019674, +0.0000019650,0.0000019613,0.0000019564,0.0000019505,0.0000019445, +0.0000019389,0.0000019332,0.0000019276,0.0000019220,0.0000019155, +0.0000019092,0.0000019033,0.0000018973,0.0000018917,0.0000018868, +0.0000018828,0.0000018794,0.0000018773,0.0000018773,0.0000018789, +0.0000018807,0.0000018810,0.0000018801,0.0000018791,0.0000018784, +0.0000018787,0.0000018802,0.0000018823,0.0000018838,0.0000018846, +0.0000018862,0.0000018890,0.0000018924,0.0000018953,0.0000018962, +0.0000018954,0.0000018937,0.0000018924,0.0000018922,0.0000018933, +0.0000018957,0.0000018981,0.0000019002,0.0000019017,0.0000019021, +0.0000019007,0.0000018986,0.0000018957,0.0000018921,0.0000018875, +0.0000018825,0.0000018780,0.0000018751,0.0000018738,0.0000018737, +0.0000018744,0.0000018762,0.0000018783,0.0000018797,0.0000018801, +0.0000018797,0.0000018792,0.0000018788,0.0000018784,0.0000018775, +0.0000018769,0.0000018770,0.0000018774,0.0000018782,0.0000018788, +0.0000018796,0.0000018808,0.0000018823,0.0000018837,0.0000018852, +0.0000018870,0.0000018895,0.0000018928,0.0000018972,0.0000019030, +0.0000019100,0.0000019179,0.0000019270,0.0000019365,0.0000019454, +0.0000019535,0.0000019601,0.0000019647,0.0000019678,0.0000019701, +0.0000019721,0.0000019745,0.0000019778,0.0000019817,0.0000019860, +0.0000019901,0.0000019934,0.0000019965,0.0000019966,0.0000019948, +0.0000019913,0.0000019849,0.0000019757,0.0000019650,0.0000019543, +0.0000019449,0.0000019381,0.0000019344,0.0000019319,0.0000019300, +0.0000019273,0.0000019234,0.0000019185,0.0000019131,0.0000019081, +0.0000019045,0.0000019023,0.0000019007,0.0000018999,0.0000018999, +0.0000019008,0.0000019019,0.0000019033,0.0000019055,0.0000019081, +0.0000019106,0.0000019124,0.0000019135,0.0000019145,0.0000019156, +0.0000019164,0.0000019158,0.0000019131,0.0000019090,0.0000019041, +0.0000018980,0.0000018899,0.0000018807,0.0000018727,0.0000018694, +0.0000018705,0.0000018772,0.0000018870,0.0000018963,0.0000019022, +0.0000019046,0.0000019057,0.0000019068,0.0000019075,0.0000019071, +0.0000019048,0.0000019007,0.0000018961,0.0000018915,0.0000018851, +0.0000018740,0.0000018597,0.0000018477,0.0000018420,0.0000018428, +0.0000018473,0.0000018516,0.0000018534,0.0000018535,0.0000018539, +0.0000018542,0.0000018542,0.0000018528,0.0000018509,0.0000018489, +0.0000018465,0.0000018440,0.0000018424,0.0000018415,0.0000018404, +0.0000018388,0.0000018370,0.0000018348,0.0000018319,0.0000018291, +0.0000018264,0.0000018238,0.0000018213,0.0000018193,0.0000018175, +0.0000018159,0.0000018135,0.0000018103,0.0000018092,0.0000018110, +0.0000018148,0.0000018186,0.0000018230,0.0000018275,0.0000018325, +0.0000018330,0.0000018261,0.0000018189,0.0000018147,0.0000018131, +0.0000018125,0.0000018127,0.0000018140,0.0000018155,0.0000018170, +0.0000018184,0.0000018198,0.0000018212,0.0000018225,0.0000018232, +0.0000018236,0.0000018235,0.0000018230,0.0000018224,0.0000018216, +0.0000018202,0.0000018179,0.0000018146,0.0000018103,0.0000018057, +0.0000018017,0.0000017982,0.0000017952,0.0000017930,0.0000017907, +0.0000017880,0.0000017851,0.0000017825,0.0000017805,0.0000017791, +0.0000017784,0.0000017778,0.0000017773,0.0000017772,0.0000017771, +0.0000017767,0.0000017765,0.0000017766,0.0000017770,0.0000017778, +0.0000017794,0.0000017815,0.0000017839,0.0000017867,0.0000017901, +0.0000017938,0.0000017972,0.0000017995,0.0000018003,0.0000018001, +0.0000017990,0.0000017968,0.0000017939,0.0000017913,0.0000017897, +0.0000017882,0.0000017837,0.0000017739,0.0000017644,0.0000017621, +0.0000017683,0.0000017820,0.0000017916,0.0000017947,0.0000017968, +0.0000018015,0.0000018117,0.0000018257,0.0000018364,0.0000018394, +0.0000018397,0.0000018389,0.0000018364,0.0000018353,0.0000018388, +0.0000018443,0.0000018472,0.0000018516,0.0000018589,0.0000018674, +0.0000018740,0.0000018779,0.0000018789,0.0000018777,0.0000018754, +0.0000018749,0.0000018771,0.0000018820,0.0000018867,0.0000018906, +0.0000018941,0.0000018955,0.0000018945,0.0000018910,0.0000018891, +0.0000018891,0.0000018895,0.0000018898,0.0000018905,0.0000018910, +0.0000018906,0.0000018902,0.0000018906,0.0000018921,0.0000018941, +0.0000018959,0.0000018957,0.0000018918,0.0000018853,0.0000018803, +0.0000018774,0.0000018741,0.0000018731,0.0000018760,0.0000018793, +0.0000018817,0.0000018854,0.0000018877,0.0000018909,0.0000019012, +0.0000019053,0.0000018975,0.0000018966,0.0000019086,0.0000019108, +0.0000018934,0.0000018755,0.0000018690,0.0000018691,0.0000018702, +0.0000018713,0.0000018716,0.0000018701,0.0000018669,0.0000018636, +0.0000018613,0.0000018604,0.0000018611,0.0000018621,0.0000018616, +0.0000018604,0.0000018567,0.0000018495,0.0000018453,0.0000018471, +0.0000018487,0.0000018439,0.0000018330,0.0000018234,0.0000018197, +0.0000018180,0.0000018177,0.0000018177,0.0000018177,0.0000018174, +0.0000018168,0.0000018157,0.0000018144,0.0000018134,0.0000018126, +0.0000018125,0.0000018126,0.0000018126,0.0000018127,0.0000018130, +0.0000018137,0.0000018149,0.0000018157,0.0000018169,0.0000018174, +0.0000018172,0.0000018165,0.0000018153,0.0000018134,0.0000018105, +0.0000018068,0.0000018031,0.0000017987,0.0000017945,0.0000017934, +0.0000017916,0.0000017914,0.0000017926,0.0000017943,0.0000017950, +0.0000017951,0.0000017942,0.0000017927,0.0000017923,0.0000017914, +0.0000017930,0.0000017979,0.0000018067,0.0000018185,0.0000018319, +0.0000018452,0.0000018566,0.0000018654,0.0000018714,0.0000018748, +0.0000018758,0.0000018748,0.0000018727,0.0000018701,0.0000018678, +0.0000018662,0.0000018651,0.0000018640,0.0000018623,0.0000018595, +0.0000018554,0.0000018504,0.0000018449,0.0000018393,0.0000018339, +0.0000018294,0.0000018254,0.0000018226,0.0000018205,0.0000018193, +0.0000018189,0.0000018191,0.0000018195,0.0000018198,0.0000018199, +0.0000018199,0.0000018199,0.0000018197,0.0000018193,0.0000018188, +0.0000018182,0.0000018177,0.0000018173,0.0000018168,0.0000018162, +0.0000018156,0.0000018151,0.0000018148,0.0000018147,0.0000018149, +0.0000018150,0.0000018149,0.0000018146,0.0000018141,0.0000018135, +0.0000018130,0.0000018125,0.0000018118,0.0000018108,0.0000018095, +0.0000018078,0.0000018060,0.0000018041,0.0000018024,0.0000018011, +0.0000018005,0.0000018010,0.0000018020,0.0000018034,0.0000018050, +0.0000018068,0.0000018086,0.0000018108,0.0000018133,0.0000018157, +0.0000018181,0.0000018207,0.0000018230,0.0000018252,0.0000018270, +0.0000018284,0.0000018295,0.0000018303,0.0000018307,0.0000018308, +0.0000018308,0.0000018312,0.0000018321,0.0000018338,0.0000018361, +0.0000018389,0.0000018416,0.0000018440,0.0000018369,0.0000018388, +0.0000018399,0.0000018404,0.0000018404,0.0000018405,0.0000018409, +0.0000018418,0.0000018432,0.0000018448,0.0000018463,0.0000018479, +0.0000018496,0.0000018515,0.0000018534,0.0000018545,0.0000018544, +0.0000018539,0.0000018525,0.0000018510,0.0000018491,0.0000018470, +0.0000018452,0.0000018434,0.0000018416,0.0000018394,0.0000018360, +0.0000018314,0.0000018262,0.0000018210,0.0000018163,0.0000018122, +0.0000018083,0.0000018045,0.0000018012,0.0000017993,0.0000017986, +0.0000017996,0.0000018018,0.0000018056,0.0000018108,0.0000018172, +0.0000018244,0.0000018320,0.0000018392,0.0000018452,0.0000018495, +0.0000018518,0.0000018527,0.0000018527,0.0000018523,0.0000018518, +0.0000018515,0.0000018513,0.0000018509,0.0000018505,0.0000018502, +0.0000018507,0.0000018525,0.0000018555,0.0000018590,0.0000018621, +0.0000018641,0.0000018642,0.0000018640,0.0000018635,0.0000018635, +0.0000018641,0.0000018653,0.0000018672,0.0000018697,0.0000018724, +0.0000018754,0.0000018785,0.0000018814,0.0000018840,0.0000018864, +0.0000018883,0.0000018902,0.0000018924,0.0000018954,0.0000018989, +0.0000019024,0.0000019056,0.0000019083,0.0000019103,0.0000019113, +0.0000019117,0.0000019121,0.0000019120,0.0000019114,0.0000019101, +0.0000019082,0.0000019057,0.0000019027,0.0000018993,0.0000018958, +0.0000018925,0.0000018894,0.0000018866,0.0000018840,0.0000018815, +0.0000018798,0.0000018784,0.0000018769,0.0000018750,0.0000018730, +0.0000018712,0.0000018701,0.0000018699,0.0000018704,0.0000018704, +0.0000018700,0.0000018691,0.0000018680,0.0000018670,0.0000018664, +0.0000018662,0.0000018660,0.0000018653,0.0000018641,0.0000018626, +0.0000018607,0.0000018584,0.0000018559,0.0000018535,0.0000018513, +0.0000018490,0.0000018466,0.0000018439,0.0000018414,0.0000018392, +0.0000018375,0.0000018363,0.0000018357,0.0000018358,0.0000018358, +0.0000018363,0.0000018363,0.0000018357,0.0000018343,0.0000018322, +0.0000018298,0.0000018274,0.0000018252,0.0000018234,0.0000018221, +0.0000018215,0.0000018213,0.0000018215,0.0000018225,0.0000018244, +0.0000018270,0.0000018298,0.0000018324,0.0000018344,0.0000018361, +0.0000018377,0.0000018393,0.0000018406,0.0000018416,0.0000018424, +0.0000018429,0.0000018433,0.0000018433,0.0000018432,0.0000018427, +0.0000018420,0.0000018410,0.0000018398,0.0000018383,0.0000018365, +0.0000018345,0.0000018324,0.0000018309,0.0000018296,0.0000018289, +0.0000018289,0.0000018294,0.0000018303,0.0000018314,0.0000018328, +0.0000018345,0.0000018373,0.0000018412,0.0000018459,0.0000018510, +0.0000018558,0.0000018603,0.0000018638,0.0000018660,0.0000018677, +0.0000018688,0.0000018683,0.0000018674,0.0000018668,0.0000018663, +0.0000018653,0.0000018637,0.0000018614,0.0000018582,0.0000018540, +0.0000018486,0.0000018416,0.0000018333,0.0000018245,0.0000018164, +0.0000018102,0.0000018063,0.0000018048,0.0000018054,0.0000018076, +0.0000018107,0.0000018141,0.0000018176,0.0000018211,0.0000018240, +0.0000018258,0.0000018266,0.0000018274,0.0000018297,0.0000018347, +0.0000018431,0.0000018543,0.0000018668,0.0000018791,0.0000018892, +0.0000018964,0.0000019011,0.0000019045,0.0000019085,0.0000019139, +0.0000019210,0.0000019293,0.0000019376,0.0000019450,0.0000019509, +0.0000019555,0.0000019590,0.0000019617,0.0000019642,0.0000019665, +0.0000019686,0.0000019705,0.0000019721,0.0000019733,0.0000019741, +0.0000019746,0.0000019745,0.0000019741,0.0000019735,0.0000019727, +0.0000019717,0.0000019708,0.0000019700,0.0000019694,0.0000019688, +0.0000019682,0.0000019679,0.0000019682,0.0000019693,0.0000019708, +0.0000019723,0.0000019734,0.0000019741,0.0000019740,0.0000019732, +0.0000019716,0.0000019694,0.0000019669,0.0000019641,0.0000019613, +0.0000019587,0.0000019563,0.0000019544,0.0000019534,0.0000019532, +0.0000019533,0.0000019530,0.0000019530,0.0000019532,0.0000019539, +0.0000019556,0.0000019587,0.0000019630,0.0000019685,0.0000019750, +0.0000019821,0.0000019891,0.0000019959,0.0000020021,0.0000020073, +0.0000020108,0.0000020128,0.0000020137,0.0000020148,0.0000020173, +0.0000020209,0.0000020243,0.0000020260,0.0000020256,0.0000020233, +0.0000020191,0.0000020138,0.0000020099,0.0000020085,0.0000020081, +0.0000020068,0.0000020043,0.0000020026,0.0000020055,0.0000020124, +0.0000020148,0.0000020142,0.0000020202,0.0000020315,0.0000020360, +0.0000020340,0.0000020305,0.0000020297,0.0000020298,0.0000020265, +0.0000020192,0.0000020132,0.0000020103,0.0000020058,0.0000020001, +0.0000019995,0.0000020039,0.0000020124,0.0000020262,0.0000020394, +0.0000020431,0.0000020412,0.0000020354,0.0000020264,0.0000020163, +0.0000020100,0.0000020094,0.0000020139,0.0000020202,0.0000020273, +0.0000020370,0.0000020489,0.0000020600,0.0000020674,0.0000020703, +0.0000020698,0.0000020679,0.0000020658,0.0000020642,0.0000020631, +0.0000020623,0.0000020616,0.0000020607,0.0000020596,0.0000020584, +0.0000020574,0.0000020565,0.0000020558,0.0000020552,0.0000020545, +0.0000020537,0.0000020530,0.0000020527,0.0000020528,0.0000020535, +0.0000020552,0.0000020578,0.0000020613,0.0000020653,0.0000020693, +0.0000020728,0.0000020754,0.0000020769,0.0000020774,0.0000020770, +0.0000020759,0.0000020742,0.0000020721,0.0000020698,0.0000020675, +0.0000020654,0.0000020635,0.0000020617,0.0000020600,0.0000020583, +0.0000020564,0.0000020547,0.0000020535,0.0000020526,0.0000020520, +0.0000020518,0.0000020517,0.0000020517,0.0000020517,0.0000020518, +0.0000020517,0.0000020514,0.0000020509,0.0000020505,0.0000020503, +0.0000020503,0.0000020506,0.0000020510,0.0000020513,0.0000020513, +0.0000020512,0.0000020507,0.0000020501,0.0000020491,0.0000020477, +0.0000020457,0.0000020431,0.0000020402,0.0000020373,0.0000020351, +0.0000020339,0.0000020330,0.0000020321,0.0000020311,0.0000020301, +0.0000020291,0.0000020283,0.0000020276,0.0000020264,0.0000020243, +0.0000020214,0.0000020183,0.0000020154,0.0000020123,0.0000020089, +0.0000020048,0.0000020003,0.0000019957,0.0000019917,0.0000019884, +0.0000019857,0.0000019836,0.0000019819,0.0000019802,0.0000019783, +0.0000019763,0.0000019742,0.0000019723,0.0000019704,0.0000019686, +0.0000019672,0.0000019662,0.0000019655,0.0000019654,0.0000019658, +0.0000019671,0.0000019690,0.0000019711,0.0000019730,0.0000019746, +0.0000019760,0.0000019771,0.0000019780,0.0000019789,0.0000019798, +0.0000019803,0.0000019807,0.0000019812,0.0000019820,0.0000019833, +0.0000019852,0.0000019877,0.0000019909,0.0000019946,0.0000019985, +0.0000020028,0.0000020073,0.0000020120,0.0000020167,0.0000020215, +0.0000020264,0.0000020312,0.0000020358,0.0000020398,0.0000020431, +0.0000020462,0.0000020489,0.0000020509,0.0000020523,0.0000020532, +0.0000020527,0.0000020519,0.0000020516,0.0000020505,0.0000020492, +0.0000020486,0.0000020480,0.0000020471,0.0000020459,0.0000020446, +0.0000020430,0.0000020419,0.0000020415,0.0000020418,0.0000020421, +0.0000020425,0.0000020429,0.0000020432,0.0000020433,0.0000020428, +0.0000020410,0.0000020404,0.0000020406,0.0000020408,0.0000020412, +0.0000020417,0.0000020421,0.0000020423,0.0000020420,0.0000020410, +0.0000020395,0.0000020375,0.0000020352,0.0000020328,0.0000020308, +0.0000020292,0.0000020277,0.0000020263,0.0000020253,0.0000020248, +0.0000020248,0.0000020260,0.0000020291,0.0000020337,0.0000020390, +0.0000020441,0.0000020485,0.0000020523,0.0000020557,0.0000020586, +0.0000020607,0.0000020620,0.0000020626,0.0000020624,0.0000020616, +0.0000020608,0.0000020598,0.0000020586,0.0000020578,0.0000020574, +0.0000020573,0.0000020578,0.0000020584,0.0000020594,0.0000020608, +0.0000020620,0.0000020629,0.0000020636,0.0000020638,0.0000020635, +0.0000020622,0.0000020603,0.0000020582,0.0000020559,0.0000020532, +0.0000020507,0.0000020484,0.0000020465,0.0000020447,0.0000020435, +0.0000020429,0.0000020426,0.0000020424,0.0000020425,0.0000020430, +0.0000020440,0.0000020452,0.0000020464,0.0000020473,0.0000020474, +0.0000020467,0.0000020455,0.0000020441,0.0000020434,0.0000020430, +0.0000020429,0.0000020429,0.0000020428,0.0000020433,0.0000020442, +0.0000020457,0.0000020482,0.0000020507,0.0000020520,0.0000020519, +0.0000020512,0.0000020509,0.0000020517,0.0000020531,0.0000020549, +0.0000020577,0.0000020617,0.0000020668,0.0000020709,0.0000020717, +0.0000020690,0.0000020624,0.0000020544,0.0000020469,0.0000020413, +0.0000020374,0.0000020340,0.0000020302,0.0000020262,0.0000020229, +0.0000020214,0.0000020203,0.0000020196,0.0000020196,0.0000020200, +0.0000020209,0.0000020221,0.0000020240,0.0000020264,0.0000020297, +0.0000020337,0.0000020386,0.0000020440,0.0000020496,0.0000020548, +0.0000020594,0.0000020633,0.0000020659,0.0000020672,0.0000020672, +0.0000020662,0.0000020643,0.0000020625,0.0000020603,0.0000020576, +0.0000020544,0.0000020514,0.0000020488,0.0000020474,0.0000020471, +0.0000020476,0.0000020485,0.0000020497,0.0000020509,0.0000020522, +0.0000020534,0.0000020546,0.0000020555,0.0000020563,0.0000020568, +0.0000020567,0.0000020555,0.0000020536,0.0000020512,0.0000020480, +0.0000020448,0.0000020424,0.0000020401,0.0000020382,0.0000020370, +0.0000020370,0.0000020383,0.0000020403,0.0000020418,0.0000020428, +0.0000020433,0.0000020434,0.0000020431,0.0000020423,0.0000020410, +0.0000020398,0.0000020390,0.0000020388,0.0000020386,0.0000020383, +0.0000020377,0.0000020362,0.0000020347,0.0000020335,0.0000020327, +0.0000020317,0.0000020304,0.0000020283,0.0000020259,0.0000020231, +0.0000020199,0.0000020163,0.0000020129,0.0000020095,0.0000020058, +0.0000020024,0.0000019996,0.0000019969,0.0000019943,0.0000019920, +0.0000019902,0.0000019883,0.0000019862,0.0000019842,0.0000019822, +0.0000019802,0.0000019785,0.0000019771,0.0000019762,0.0000019754, +0.0000019749,0.0000019749,0.0000019757,0.0000019769,0.0000019784, +0.0000019801,0.0000019816,0.0000019826,0.0000019832,0.0000019833, +0.0000019831,0.0000019827,0.0000019821,0.0000019807,0.0000019777, +0.0000019741,0.0000019694,0.0000019641,0.0000019588,0.0000019542, +0.0000019505,0.0000019484,0.0000019480,0.0000019489,0.0000019503, +0.0000019512,0.0000019516,0.0000019523,0.0000019530,0.0000019533, +0.0000019533,0.0000019531,0.0000019532,0.0000019542,0.0000019560, +0.0000019583,0.0000019608,0.0000019638,0.0000019669,0.0000019703, +0.0000019739,0.0000019776,0.0000019805,0.0000019823,0.0000019828, +0.0000019823,0.0000019804,0.0000019775,0.0000019738,0.0000019697, +0.0000019660,0.0000019638,0.0000019630,0.0000019635,0.0000019651, +0.0000019673,0.0000019694,0.0000019716,0.0000019739,0.0000019759, +0.0000019771,0.0000019772,0.0000019762,0.0000019749,0.0000019741, +0.0000019738,0.0000019739,0.0000019741,0.0000019734,0.0000019722, +0.0000019705,0.0000019688,0.0000019675,0.0000019667,0.0000019675, +0.0000019698,0.0000019733,0.0000019774,0.0000019820,0.0000019868, +0.0000019913,0.0000019951,0.0000019982,0.0000020004,0.0000020019, +0.0000020016,0.0000020017,0.0000020003,0.0000019993,0.0000019981, +0.0000019975,0.0000019969,0.0000019962,0.0000019958,0.0000019956, +0.0000019957,0.0000019953,0.0000019929,0.0000019884,0.0000019819, +0.0000019741,0.0000019660,0.0000019589,0.0000019562,0.0000019552, +0.0000019571,0.0000019606,0.0000019637,0.0000019661,0.0000019665, +0.0000019659,0.0000019641,0.0000019612,0.0000019574,0.0000019536, +0.0000019501,0.0000019477,0.0000019459,0.0000019462,0.0000019481, +0.0000019510,0.0000019546,0.0000019590,0.0000019642,0.0000019700, +0.0000019755,0.0000019803,0.0000019840,0.0000019867,0.0000019898, +0.0000019940,0.0000019990,0.0000020040,0.0000020081,0.0000020106, +0.0000020116,0.0000020124,0.0000020138,0.0000020154,0.0000020163, +0.0000020170,0.0000020181,0.0000020190,0.0000020196,0.0000020200, +0.0000020200,0.0000020193,0.0000020175,0.0000020144,0.0000020106, +0.0000020064,0.0000020022,0.0000019988,0.0000019961,0.0000019940, +0.0000019918,0.0000019891,0.0000019856,0.0000019813,0.0000019770, +0.0000019730,0.0000019698,0.0000019675,0.0000019657,0.0000019641, +0.0000019629,0.0000019625,0.0000019631,0.0000019641,0.0000019652, +0.0000019658,0.0000019660,0.0000019659,0.0000019664,0.0000019678, +0.0000019701,0.0000019730,0.0000019765,0.0000019797,0.0000019816, +0.0000019831,0.0000019840,0.0000019842,0.0000019835,0.0000019825, +0.0000019815,0.0000019806,0.0000019795,0.0000019784,0.0000019770, +0.0000019751,0.0000019732,0.0000019718,0.0000019704,0.0000019695, +0.0000019688,0.0000019682,0.0000019679,0.0000019675,0.0000019665, +0.0000019639,0.0000019591,0.0000019532,0.0000019473,0.0000019419, +0.0000019371,0.0000019328,0.0000019282,0.0000019228,0.0000019168, +0.0000019110,0.0000019053,0.0000018991,0.0000018934,0.0000018882, +0.0000018830,0.0000018781,0.0000018741,0.0000018722,0.0000018725, +0.0000018747,0.0000018776,0.0000018795,0.0000018799,0.0000018794, +0.0000018785,0.0000018785,0.0000018799,0.0000018811,0.0000018821, +0.0000018834,0.0000018857,0.0000018893,0.0000018928,0.0000018945, +0.0000018941,0.0000018923,0.0000018899,0.0000018887,0.0000018893, +0.0000018912,0.0000018934,0.0000018959,0.0000018983,0.0000018993, +0.0000018990,0.0000018975,0.0000018959,0.0000018934,0.0000018902, +0.0000018860,0.0000018817,0.0000018783,0.0000018759,0.0000018742, +0.0000018736,0.0000018741,0.0000018755,0.0000018767,0.0000018771, +0.0000018769,0.0000018764,0.0000018758,0.0000018748,0.0000018736, +0.0000018729,0.0000018728,0.0000018731,0.0000018737,0.0000018743, +0.0000018755,0.0000018773,0.0000018791,0.0000018807,0.0000018819, +0.0000018831,0.0000018845,0.0000018860,0.0000018881,0.0000018912, +0.0000018952,0.0000019003,0.0000019067,0.0000019147,0.0000019238, +0.0000019336,0.0000019432,0.0000019518,0.0000019590,0.0000019645, +0.0000019683,0.0000019713,0.0000019740,0.0000019769,0.0000019803, +0.0000019841,0.0000019883,0.0000019923,0.0000019947,0.0000019950, +0.0000019950,0.0000019917,0.0000019845,0.0000019746,0.0000019627, +0.0000019506,0.0000019404,0.0000019334,0.0000019298,0.0000019274, +0.0000019253,0.0000019232,0.0000019201,0.0000019161,0.0000019119, +0.0000019084,0.0000019053,0.0000019026,0.0000019008,0.0000019005, +0.0000019011,0.0000019019,0.0000019035,0.0000019054,0.0000019078, +0.0000019100,0.0000019117,0.0000019126,0.0000019135,0.0000019144, +0.0000019149,0.0000019141,0.0000019121,0.0000019084,0.0000019037, +0.0000018980,0.0000018906,0.0000018816,0.0000018731,0.0000018690, +0.0000018696,0.0000018745,0.0000018836,0.0000018932,0.0000019000, +0.0000019032,0.0000019044,0.0000019053,0.0000019062,0.0000019056, +0.0000019040,0.0000019005,0.0000018962,0.0000018921,0.0000018869, +0.0000018775,0.0000018639,0.0000018512,0.0000018444,0.0000018447, +0.0000018487,0.0000018523,0.0000018532,0.0000018532,0.0000018537, +0.0000018548,0.0000018546,0.0000018530,0.0000018509,0.0000018485, +0.0000018458,0.0000018433,0.0000018416,0.0000018404,0.0000018387, +0.0000018366,0.0000018342,0.0000018313,0.0000018281,0.0000018250, +0.0000018221,0.0000018197,0.0000018178,0.0000018162,0.0000018145, +0.0000018122,0.0000018097,0.0000018092,0.0000018114,0.0000018151, +0.0000018189,0.0000018230,0.0000018273,0.0000018321,0.0000018307, +0.0000018205,0.0000018126,0.0000018088,0.0000018069,0.0000018064, +0.0000018065,0.0000018067,0.0000018067,0.0000018065,0.0000018063, +0.0000018066,0.0000018070,0.0000018078,0.0000018086,0.0000018092, +0.0000018095,0.0000018095,0.0000018093,0.0000018090,0.0000018083, +0.0000018067,0.0000018043,0.0000018009,0.0000017970,0.0000017933, +0.0000017901,0.0000017876,0.0000017857,0.0000017843,0.0000017834, +0.0000017826,0.0000017818,0.0000017814,0.0000017815,0.0000017822, +0.0000017831,0.0000017841,0.0000017845,0.0000017844,0.0000017840, +0.0000017835,0.0000017833,0.0000017834,0.0000017840,0.0000017854, +0.0000017874,0.0000017899,0.0000017926,0.0000017955,0.0000017982, +0.0000017999,0.0000018008,0.0000018008,0.0000018001,0.0000017987, +0.0000017963,0.0000017939,0.0000017925,0.0000017913,0.0000017877, +0.0000017791,0.0000017681,0.0000017628,0.0000017647,0.0000017763, +0.0000017881,0.0000017928,0.0000017949,0.0000017988,0.0000018076, +0.0000018211,0.0000018333,0.0000018381,0.0000018384,0.0000018380, +0.0000018358,0.0000018332,0.0000018337,0.0000018389,0.0000018437, +0.0000018479,0.0000018547,0.0000018632,0.0000018707,0.0000018757, +0.0000018781,0.0000018780,0.0000018759,0.0000018737,0.0000018733, +0.0000018753,0.0000018795,0.0000018834,0.0000018873,0.0000018911, +0.0000018932,0.0000018929,0.0000018910,0.0000018904,0.0000018910, +0.0000018921,0.0000018928,0.0000018935,0.0000018935,0.0000018933, +0.0000018936,0.0000018947,0.0000018961,0.0000018972,0.0000018969, +0.0000018929,0.0000018849,0.0000018784,0.0000018760,0.0000018739, +0.0000018719,0.0000018736,0.0000018775,0.0000018789,0.0000018809, +0.0000018843,0.0000018855,0.0000018921,0.0000019046,0.0000019041, +0.0000018946,0.0000018963,0.0000019087,0.0000019113,0.0000018985, +0.0000018830,0.0000018757,0.0000018744,0.0000018749,0.0000018756, +0.0000018759,0.0000018739,0.0000018691,0.0000018638,0.0000018603, +0.0000018591,0.0000018596,0.0000018606,0.0000018609,0.0000018595, +0.0000018532,0.0000018447,0.0000018415,0.0000018439,0.0000018474, +0.0000018468,0.0000018400,0.0000018307,0.0000018231,0.0000018181, +0.0000018168,0.0000018156,0.0000018140,0.0000018127,0.0000018116, +0.0000018105,0.0000018094,0.0000018086,0.0000018084,0.0000018088, +0.0000018095,0.0000018100,0.0000018106,0.0000018116,0.0000018128, +0.0000018143,0.0000018159,0.0000018171,0.0000018182,0.0000018189, +0.0000018192,0.0000018193,0.0000018191,0.0000018182,0.0000018163, +0.0000018136,0.0000018093,0.0000018039,0.0000017987,0.0000017932, +0.0000017904,0.0000017881,0.0000017889,0.0000017915,0.0000017941, +0.0000017950,0.0000017947,0.0000017931,0.0000017911,0.0000017902, +0.0000017907,0.0000017942,0.0000018012,0.0000018108,0.0000018222, +0.0000018346,0.0000018464,0.0000018562,0.0000018635,0.0000018680, +0.0000018699,0.0000018695,0.0000018678,0.0000018655,0.0000018633, +0.0000018617,0.0000018605,0.0000018592,0.0000018572,0.0000018541, +0.0000018499,0.0000018448,0.0000018392,0.0000018336,0.0000018282, +0.0000018231,0.0000018190,0.0000018149,0.0000018118,0.0000018094, +0.0000018080,0.0000018068,0.0000018057,0.0000018046,0.0000018039, +0.0000018033,0.0000018027,0.0000018020,0.0000018013,0.0000018008, +0.0000018005,0.0000018004,0.0000018003,0.0000018002,0.0000018004, +0.0000018007,0.0000018012,0.0000018017,0.0000018020,0.0000018021, +0.0000018021,0.0000018019,0.0000018017,0.0000018015,0.0000018013, +0.0000018009,0.0000018002,0.0000017991,0.0000017976,0.0000017958, +0.0000017937,0.0000017914,0.0000017893,0.0000017878,0.0000017873, +0.0000017876,0.0000017888,0.0000017906,0.0000017929,0.0000017954, +0.0000017980,0.0000018008,0.0000018034,0.0000018060,0.0000018087, +0.0000018114,0.0000018139,0.0000018161,0.0000018180,0.0000018196, +0.0000018209,0.0000018220,0.0000018227,0.0000018230,0.0000018230, +0.0000018233,0.0000018242,0.0000018259,0.0000018283,0.0000018312, +0.0000018343,0.0000018273,0.0000018306,0.0000018332,0.0000018347, +0.0000018351,0.0000018346,0.0000018335,0.0000018325,0.0000018321, +0.0000018327,0.0000018342,0.0000018364,0.0000018392,0.0000018423, +0.0000018452,0.0000018479,0.0000018502,0.0000018521,0.0000018529, +0.0000018530,0.0000018525,0.0000018506,0.0000018479,0.0000018448, +0.0000018416,0.0000018392,0.0000018371,0.0000018348,0.0000018318, +0.0000018281,0.0000018236,0.0000018190,0.0000018146,0.0000018106, +0.0000018066,0.0000018026,0.0000017996,0.0000017980,0.0000017980, +0.0000017993,0.0000018016,0.0000018051,0.0000018095,0.0000018150, +0.0000018213,0.0000018277,0.0000018335,0.0000018383,0.0000018421, +0.0000018449,0.0000018466,0.0000018474,0.0000018477,0.0000018478, +0.0000018479,0.0000018478,0.0000018472,0.0000018465,0.0000018462, +0.0000018467,0.0000018485,0.0000018513,0.0000018548,0.0000018583, +0.0000018615,0.0000018634,0.0000018642,0.0000018649,0.0000018650, +0.0000018650,0.0000018654,0.0000018662,0.0000018674,0.0000018693, +0.0000018716,0.0000018743,0.0000018770,0.0000018793,0.0000018813, +0.0000018837,0.0000018865,0.0000018896,0.0000018929,0.0000018963, +0.0000019000,0.0000019036,0.0000019068,0.0000019096,0.0000019117, +0.0000019121,0.0000019119,0.0000019109,0.0000019090,0.0000019063, +0.0000019033,0.0000019001,0.0000018967,0.0000018931,0.0000018895, +0.0000018862,0.0000018831,0.0000018806,0.0000018783,0.0000018766, +0.0000018753,0.0000018740,0.0000018726,0.0000018708,0.0000018691, +0.0000018681,0.0000018682,0.0000018690,0.0000018698,0.0000018703, +0.0000018702,0.0000018697,0.0000018690,0.0000018683,0.0000018676, +0.0000018666,0.0000018652,0.0000018635,0.0000018616,0.0000018595, +0.0000018572,0.0000018547,0.0000018525,0.0000018504,0.0000018479, +0.0000018449,0.0000018417,0.0000018389,0.0000018369,0.0000018356, +0.0000018346,0.0000018343,0.0000018346,0.0000018356,0.0000018364, +0.0000018372,0.0000018369,0.0000018357,0.0000018337,0.0000018310, +0.0000018282,0.0000018255,0.0000018233,0.0000018220,0.0000018218, +0.0000018222,0.0000018234,0.0000018254,0.0000018281,0.0000018310, +0.0000018335,0.0000018356,0.0000018372,0.0000018386,0.0000018398, +0.0000018408,0.0000018415,0.0000018419,0.0000018420,0.0000018420, +0.0000018418,0.0000018417,0.0000018414,0.0000018408,0.0000018398, +0.0000018385,0.0000018371,0.0000018353,0.0000018334,0.0000018314, +0.0000018296,0.0000018283,0.0000018276,0.0000018277,0.0000018279, +0.0000018283,0.0000018288,0.0000018293,0.0000018300,0.0000018314, +0.0000018338,0.0000018370,0.0000018405,0.0000018443,0.0000018480, +0.0000018516,0.0000018551,0.0000018583,0.0000018612,0.0000018633, +0.0000018646,0.0000018655,0.0000018659,0.0000018652,0.0000018643, +0.0000018635,0.0000018624,0.0000018608,0.0000018582,0.0000018538, +0.0000018471,0.0000018383,0.0000018286,0.0000018191,0.0000018113, +0.0000018061,0.0000018043,0.0000018043,0.0000018061,0.0000018090, +0.0000018125,0.0000018163,0.0000018199,0.0000018228,0.0000018245, +0.0000018247,0.0000018246,0.0000018251,0.0000018273,0.0000018321, +0.0000018399,0.0000018501,0.0000018617,0.0000018732,0.0000018833, +0.0000018911,0.0000018966,0.0000019005,0.0000019041,0.0000019083, +0.0000019139,0.0000019206,0.0000019278,0.0000019349,0.0000019411, +0.0000019464,0.0000019506,0.0000019538,0.0000019562,0.0000019581, +0.0000019593,0.0000019602,0.0000019608,0.0000019610,0.0000019609, +0.0000019604,0.0000019599,0.0000019593,0.0000019586,0.0000019578, +0.0000019571,0.0000019569,0.0000019567,0.0000019564,0.0000019563, +0.0000019569,0.0000019582,0.0000019601,0.0000019620,0.0000019637, +0.0000019649,0.0000019652,0.0000019649,0.0000019638,0.0000019619, +0.0000019595,0.0000019567,0.0000019539,0.0000019513,0.0000019489, +0.0000019468,0.0000019452,0.0000019442,0.0000019431,0.0000019419, +0.0000019408,0.0000019401,0.0000019403,0.0000019416,0.0000019441, +0.0000019480,0.0000019535,0.0000019604,0.0000019680,0.0000019761, +0.0000019845,0.0000019928,0.0000020004,0.0000020068,0.0000020109, +0.0000020124,0.0000020127,0.0000020139,0.0000020168,0.0000020202, +0.0000020223,0.0000020228,0.0000020219,0.0000020190,0.0000020140, +0.0000020097,0.0000020078,0.0000020068,0.0000020050,0.0000020021, +0.0000020014,0.0000020065,0.0000020132,0.0000020133,0.0000020131, +0.0000020213,0.0000020323,0.0000020356,0.0000020332,0.0000020301, +0.0000020294,0.0000020289,0.0000020248,0.0000020174,0.0000020120, +0.0000020092,0.0000020044,0.0000019998,0.0000020010,0.0000020064, +0.0000020149,0.0000020278,0.0000020388,0.0000020414,0.0000020382, +0.0000020319,0.0000020232,0.0000020139,0.0000020079,0.0000020065, +0.0000020100,0.0000020151,0.0000020205,0.0000020269,0.0000020356, +0.0000020455,0.0000020542,0.0000020599,0.0000020624,0.0000020620, +0.0000020601,0.0000020578,0.0000020557,0.0000020542,0.0000020531, +0.0000020524,0.0000020520,0.0000020518,0.0000020518,0.0000020520, +0.0000020524,0.0000020527,0.0000020528,0.0000020525,0.0000020517, +0.0000020504,0.0000020488,0.0000020471,0.0000020457,0.0000020449, +0.0000020454,0.0000020469,0.0000020490,0.0000020515,0.0000020544, +0.0000020573,0.0000020599,0.0000020620,0.0000020632,0.0000020634, +0.0000020626,0.0000020610,0.0000020588,0.0000020564,0.0000020538, +0.0000020516,0.0000020497,0.0000020480,0.0000020467,0.0000020457, +0.0000020449,0.0000020443,0.0000020439,0.0000020437,0.0000020435, +0.0000020432,0.0000020431,0.0000020429,0.0000020425,0.0000020420, +0.0000020416,0.0000020415,0.0000020416,0.0000020420,0.0000020423, +0.0000020424,0.0000020423,0.0000020420,0.0000020416,0.0000020410, +0.0000020401,0.0000020386,0.0000020366,0.0000020343,0.0000020317, +0.0000020290,0.0000020269,0.0000020255,0.0000020244,0.0000020233, +0.0000020222,0.0000020211,0.0000020201,0.0000020192,0.0000020183, +0.0000020168,0.0000020143,0.0000020111,0.0000020078,0.0000020047, +0.0000020018,0.0000019987,0.0000019952,0.0000019912,0.0000019872, +0.0000019836,0.0000019810,0.0000019794,0.0000019783,0.0000019774, +0.0000019765,0.0000019755,0.0000019743,0.0000019728,0.0000019713, +0.0000019696,0.0000019677,0.0000019660,0.0000019643,0.0000019633, +0.0000019626,0.0000019623,0.0000019628,0.0000019640,0.0000019657, +0.0000019674,0.0000019690,0.0000019704,0.0000019717,0.0000019728, +0.0000019739,0.0000019746,0.0000019747,0.0000019747,0.0000019745, +0.0000019743,0.0000019740,0.0000019739,0.0000019741,0.0000019747, +0.0000019758,0.0000019774,0.0000019793,0.0000019817,0.0000019847, +0.0000019881,0.0000019919,0.0000019964,0.0000020014,0.0000020066, +0.0000020117,0.0000020163,0.0000020207,0.0000020251,0.0000020293, +0.0000020331,0.0000020364,0.0000020390,0.0000020410,0.0000020429, +0.0000020443,0.0000020450,0.0000020455,0.0000020462,0.0000020464, +0.0000020457,0.0000020447,0.0000020438,0.0000020434,0.0000020430, +0.0000020432,0.0000020436,0.0000020439,0.0000020446,0.0000020448, +0.0000020448,0.0000020436,0.0000020413,0.0000020401,0.0000020391, +0.0000020384,0.0000020384,0.0000020386,0.0000020391,0.0000020396, +0.0000020396,0.0000020391,0.0000020382,0.0000020367,0.0000020350, +0.0000020333,0.0000020317,0.0000020302,0.0000020285,0.0000020269, +0.0000020256,0.0000020250,0.0000020248,0.0000020255,0.0000020277, +0.0000020307,0.0000020349,0.0000020397,0.0000020445,0.0000020486, +0.0000020525,0.0000020560,0.0000020588,0.0000020607,0.0000020616, +0.0000020617,0.0000020610,0.0000020603,0.0000020597,0.0000020588, +0.0000020579,0.0000020573,0.0000020570,0.0000020570,0.0000020570, +0.0000020569,0.0000020575,0.0000020583,0.0000020592,0.0000020602, +0.0000020611,0.0000020615,0.0000020611,0.0000020595,0.0000020571, +0.0000020542,0.0000020511,0.0000020481,0.0000020456,0.0000020438, +0.0000020427,0.0000020422,0.0000020422,0.0000020424,0.0000020427, +0.0000020434,0.0000020447,0.0000020463,0.0000020479,0.0000020494, +0.0000020506,0.0000020511,0.0000020509,0.0000020503,0.0000020487, +0.0000020463,0.0000020441,0.0000020427,0.0000020415,0.0000020403, +0.0000020393,0.0000020387,0.0000020388,0.0000020396,0.0000020411, +0.0000020434,0.0000020460,0.0000020481,0.0000020494,0.0000020500, +0.0000020504,0.0000020512,0.0000020526,0.0000020548,0.0000020582, +0.0000020626,0.0000020675,0.0000020698,0.0000020689,0.0000020638, +0.0000020561,0.0000020482,0.0000020415,0.0000020367,0.0000020332, +0.0000020301,0.0000020271,0.0000020240,0.0000020210,0.0000020197, +0.0000020198,0.0000020199,0.0000020199,0.0000020200,0.0000020202, +0.0000020207,0.0000020218,0.0000020237,0.0000020265,0.0000020305, +0.0000020352,0.0000020399,0.0000020445,0.0000020488,0.0000020524, +0.0000020551,0.0000020570,0.0000020582,0.0000020587,0.0000020588, +0.0000020585,0.0000020565,0.0000020542,0.0000020517,0.0000020490, +0.0000020468,0.0000020457,0.0000020455,0.0000020459,0.0000020467, +0.0000020480,0.0000020492,0.0000020501,0.0000020509,0.0000020519, +0.0000020530,0.0000020539,0.0000020545,0.0000020542,0.0000020531, +0.0000020512,0.0000020485,0.0000020451,0.0000020417,0.0000020386, +0.0000020363,0.0000020344,0.0000020334,0.0000020336,0.0000020344, +0.0000020359,0.0000020376,0.0000020391,0.0000020402,0.0000020408, +0.0000020410,0.0000020410,0.0000020409,0.0000020410,0.0000020411, +0.0000020412,0.0000020412,0.0000020404,0.0000020386,0.0000020366, +0.0000020349,0.0000020331,0.0000020313,0.0000020293,0.0000020269, +0.0000020243,0.0000020214,0.0000020181,0.0000020149,0.0000020115, +0.0000020081,0.0000020046,0.0000020016,0.0000019985,0.0000019956, +0.0000019930,0.0000019908,0.0000019886,0.0000019862,0.0000019839, +0.0000019814,0.0000019784,0.0000019751,0.0000019722,0.0000019699, +0.0000019685,0.0000019677,0.0000019675,0.0000019679,0.0000019691, +0.0000019705,0.0000019722,0.0000019742,0.0000019761,0.0000019775, +0.0000019784,0.0000019787,0.0000019784,0.0000019780,0.0000019773, +0.0000019761,0.0000019737,0.0000019700,0.0000019654,0.0000019601, +0.0000019546,0.0000019493,0.0000019445,0.0000019414,0.0000019397, +0.0000019394,0.0000019399,0.0000019407,0.0000019418,0.0000019430, +0.0000019441,0.0000019450,0.0000019454,0.0000019454,0.0000019460, +0.0000019476,0.0000019501,0.0000019531,0.0000019563,0.0000019596, +0.0000019628,0.0000019660,0.0000019691,0.0000019717,0.0000019732, +0.0000019735,0.0000019725,0.0000019707,0.0000019677,0.0000019640, +0.0000019600,0.0000019567,0.0000019547,0.0000019539,0.0000019539, +0.0000019548,0.0000019566,0.0000019587,0.0000019612,0.0000019634, +0.0000019657,0.0000019680,0.0000019697,0.0000019705,0.0000019704, +0.0000019702,0.0000019702,0.0000019704,0.0000019711,0.0000019718, +0.0000019723,0.0000019722,0.0000019713,0.0000019693,0.0000019663, +0.0000019645,0.0000019621,0.0000019620,0.0000019638,0.0000019671, +0.0000019718,0.0000019771,0.0000019826,0.0000019876,0.0000019917, +0.0000019945,0.0000019964,0.0000019973,0.0000019978,0.0000019980, +0.0000019984,0.0000019984,0.0000019990,0.0000019984,0.0000019973, +0.0000019960,0.0000019952,0.0000019946,0.0000019937,0.0000019925, +0.0000019897,0.0000019854,0.0000019789,0.0000019706,0.0000019625, +0.0000019563,0.0000019546,0.0000019542,0.0000019560,0.0000019596, +0.0000019629,0.0000019653,0.0000019656,0.0000019654,0.0000019636, +0.0000019604,0.0000019564,0.0000019520,0.0000019477,0.0000019450, +0.0000019435,0.0000019442,0.0000019467,0.0000019506,0.0000019558, +0.0000019618,0.0000019685,0.0000019749,0.0000019796,0.0000019826, +0.0000019842,0.0000019852,0.0000019874,0.0000019917,0.0000019967, +0.0000020010,0.0000020042,0.0000020071,0.0000020101,0.0000020129, +0.0000020146,0.0000020157,0.0000020165,0.0000020169,0.0000020169, +0.0000020166,0.0000020161,0.0000020149,0.0000020128,0.0000020096, +0.0000020058,0.0000020021,0.0000019987,0.0000019961,0.0000019941, +0.0000019923,0.0000019904,0.0000019880,0.0000019856,0.0000019828, +0.0000019795,0.0000019758,0.0000019725,0.0000019698,0.0000019680, +0.0000019665,0.0000019652,0.0000019643,0.0000019642,0.0000019647, +0.0000019651,0.0000019651,0.0000019648,0.0000019644,0.0000019645, +0.0000019657,0.0000019677,0.0000019706,0.0000019742,0.0000019776, +0.0000019801,0.0000019820,0.0000019832,0.0000019837,0.0000019834, +0.0000019830,0.0000019829,0.0000019829,0.0000019826,0.0000019819, +0.0000019803,0.0000019777,0.0000019751,0.0000019730,0.0000019709, +0.0000019694,0.0000019684,0.0000019679,0.0000019678,0.0000019676, +0.0000019656,0.0000019610,0.0000019549,0.0000019486,0.0000019430, +0.0000019385,0.0000019350,0.0000019316,0.0000019281,0.0000019239, +0.0000019185,0.0000019126,0.0000019067,0.0000019009,0.0000018953, +0.0000018894,0.0000018833,0.0000018773,0.0000018719,0.0000018686, +0.0000018676,0.0000018687,0.0000018723,0.0000018769,0.0000018801, +0.0000018808,0.0000018797,0.0000018783,0.0000018777,0.0000018781, +0.0000018794,0.0000018807,0.0000018825,0.0000018855,0.0000018892, +0.0000018922,0.0000018927,0.0000018908,0.0000018879,0.0000018853, +0.0000018849,0.0000018861,0.0000018882,0.0000018911,0.0000018937, +0.0000018950,0.0000018953,0.0000018951,0.0000018945,0.0000018932, +0.0000018913,0.0000018882,0.0000018846,0.0000018813,0.0000018785, +0.0000018758,0.0000018734,0.0000018723,0.0000018721,0.0000018724, +0.0000018728,0.0000018728,0.0000018726,0.0000018719,0.0000018707, +0.0000018695,0.0000018687,0.0000018685,0.0000018688,0.0000018690, +0.0000018694,0.0000018706,0.0000018725,0.0000018746,0.0000018766, +0.0000018783,0.0000018796,0.0000018809,0.0000018820,0.0000018832, +0.0000018848,0.0000018868,0.0000018892,0.0000018925,0.0000018972, +0.0000019037,0.0000019118,0.0000019212,0.0000019314,0.0000019417, +0.0000019511,0.0000019590,0.0000019652,0.0000019698,0.0000019735, +0.0000019766,0.0000019794,0.0000019828,0.0000019867,0.0000019904, +0.0000019934,0.0000019951,0.0000019945,0.0000019906,0.0000019833, +0.0000019723,0.0000019592,0.0000019461,0.0000019356,0.0000019289, +0.0000019255,0.0000019236,0.0000019218,0.0000019201,0.0000019177, +0.0000019149,0.0000019121,0.0000019091,0.0000019059,0.0000019033, +0.0000019020,0.0000019021,0.0000019031,0.0000019046,0.0000019062, +0.0000019080,0.0000019097,0.0000019109,0.0000019117,0.0000019123, +0.0000019129,0.0000019132,0.0000019126,0.0000019109,0.0000019077, +0.0000019031,0.0000018978,0.0000018914,0.0000018830,0.0000018744, +0.0000018690,0.0000018685,0.0000018724,0.0000018803,0.0000018898, +0.0000018975,0.0000019019,0.0000019035,0.0000019041,0.0000019044, +0.0000019042,0.0000019030,0.0000019001,0.0000018962,0.0000018927, +0.0000018887,0.0000018808,0.0000018681,0.0000018551,0.0000018473, +0.0000018472,0.0000018497,0.0000018524,0.0000018530,0.0000018529, +0.0000018540,0.0000018547,0.0000018544,0.0000018527,0.0000018502, +0.0000018475,0.0000018447,0.0000018423,0.0000018405,0.0000018385, +0.0000018361,0.0000018335,0.0000018308,0.0000018278,0.0000018245, +0.0000018212,0.0000018186,0.0000018168,0.0000018154,0.0000018138, +0.0000018115,0.0000018095,0.0000018094,0.0000018121,0.0000018157, +0.0000018191,0.0000018226,0.0000018266,0.0000018313,0.0000018294, +0.0000018179,0.0000018096,0.0000018066,0.0000018064,0.0000018075, +0.0000018090,0.0000018092,0.0000018085,0.0000018075,0.0000018067, +0.0000018060,0.0000018057,0.0000018057,0.0000018058,0.0000018057, +0.0000018056,0.0000018052,0.0000018044,0.0000018032,0.0000018020, +0.0000018004,0.0000017983,0.0000017958,0.0000017928,0.0000017896, +0.0000017868,0.0000017846,0.0000017823,0.0000017798,0.0000017782, +0.0000017772,0.0000017769,0.0000017773,0.0000017784,0.0000017803, +0.0000017825,0.0000017847,0.0000017867,0.0000017883,0.0000017890, +0.0000017897,0.0000017905,0.0000017908,0.0000017911,0.0000017917, +0.0000017927,0.0000017940,0.0000017959,0.0000017982,0.0000018001, +0.0000018012,0.0000018016,0.0000018013,0.0000018002,0.0000017986, +0.0000017966,0.0000017954,0.0000017949,0.0000017932,0.0000017865, +0.0000017750,0.0000017653,0.0000017633,0.0000017711,0.0000017842, +0.0000017918,0.0000017937,0.0000017962,0.0000018031,0.0000018155, +0.0000018293,0.0000018369,0.0000018381,0.0000018376,0.0000018360, +0.0000018328,0.0000018316,0.0000018344,0.0000018404,0.0000018452, +0.0000018514,0.0000018599,0.0000018679,0.0000018739,0.0000018771, +0.0000018780,0.0000018771,0.0000018748,0.0000018726,0.0000018717, +0.0000018731,0.0000018762,0.0000018795,0.0000018835,0.0000018877, +0.0000018905,0.0000018915,0.0000018912,0.0000018914,0.0000018925, +0.0000018941,0.0000018956,0.0000018964,0.0000018968,0.0000018973, +0.0000018981,0.0000018987,0.0000018991,0.0000018978,0.0000018933, +0.0000018837,0.0000018757,0.0000018736,0.0000018731,0.0000018710, +0.0000018711,0.0000018758,0.0000018774,0.0000018770,0.0000018793, +0.0000018819,0.0000018843,0.0000018962,0.0000019064,0.0000018996, +0.0000018910,0.0000018967,0.0000019092,0.0000019118,0.0000019038, +0.0000018921,0.0000018852,0.0000018818,0.0000018790,0.0000018771, +0.0000018768,0.0000018750,0.0000018693,0.0000018627,0.0000018587, +0.0000018576,0.0000018579,0.0000018591,0.0000018596,0.0000018568, +0.0000018486,0.0000018415,0.0000018401,0.0000018421,0.0000018454, +0.0000018470,0.0000018455,0.0000018407,0.0000018346,0.0000018290, +0.0000018245,0.0000018207,0.0000018177,0.0000018155,0.0000018141, +0.0000018133,0.0000018129,0.0000018132,0.0000018143,0.0000018158, +0.0000018172,0.0000018183,0.0000018194,0.0000018205,0.0000018217, +0.0000018228,0.0000018237,0.0000018244,0.0000018248,0.0000018249, +0.0000018246,0.0000018242,0.0000018234,0.0000018222,0.0000018207, +0.0000018189,0.0000018164,0.0000018129,0.0000018085,0.0000018026, +0.0000017963,0.0000017909,0.0000017887,0.0000017876,0.0000017891, +0.0000017916,0.0000017935,0.0000017933,0.0000017922,0.0000017905, +0.0000017899,0.0000017903,0.0000017932,0.0000017980,0.0000018051, +0.0000018143,0.0000018249,0.0000018360,0.0000018460,0.0000018539, +0.0000018595,0.0000018627,0.0000018638,0.0000018630,0.0000018611, +0.0000018591,0.0000018573,0.0000018557,0.0000018539,0.0000018515, +0.0000018480,0.0000018436,0.0000018388,0.0000018335,0.0000018279, +0.0000018224,0.0000018173,0.0000018128,0.0000018088,0.0000018060, +0.0000018033,0.0000018011,0.0000017992,0.0000017979,0.0000017969, +0.0000017961,0.0000017956,0.0000017950,0.0000017944,0.0000017938, +0.0000017936,0.0000017934,0.0000017935,0.0000017937,0.0000017940, +0.0000017944,0.0000017948,0.0000017951,0.0000017953,0.0000017954, +0.0000017956,0.0000017957,0.0000017957,0.0000017958,0.0000017959, +0.0000017959,0.0000017954,0.0000017943,0.0000017929,0.0000017909, +0.0000017884,0.0000017857,0.0000017833,0.0000017814,0.0000017801, +0.0000017797,0.0000017799,0.0000017813,0.0000017834,0.0000017858, +0.0000017887,0.0000017916,0.0000017946,0.0000017977,0.0000018009, +0.0000018039,0.0000018067,0.0000018091,0.0000018112,0.0000018130, +0.0000018143,0.0000018154,0.0000018163,0.0000018167,0.0000018169, +0.0000018171,0.0000018177,0.0000018190,0.0000018209,0.0000018238, +0.0000018163,0.0000018192,0.0000018225,0.0000018255,0.0000018278, +0.0000018290,0.0000018290,0.0000018281,0.0000018266,0.0000018252, +0.0000018243,0.0000018242,0.0000018252,0.0000018274,0.0000018306, +0.0000018347,0.0000018389,0.0000018431,0.0000018467,0.0000018492, +0.0000018510,0.0000018512,0.0000018507,0.0000018491,0.0000018460, +0.0000018423,0.0000018387,0.0000018356,0.0000018331,0.0000018311, +0.0000018292,0.0000018267,0.0000018234,0.0000018197,0.0000018158, +0.0000018117,0.0000018072,0.0000018029,0.0000017997,0.0000017984, +0.0000017987,0.0000018000,0.0000018019,0.0000018049,0.0000018091, +0.0000018142,0.0000018196,0.0000018246,0.0000018290,0.0000018330, +0.0000018363,0.0000018391,0.0000018412,0.0000018426,0.0000018435, +0.0000018440,0.0000018442,0.0000018441,0.0000018438,0.0000018435, +0.0000018434,0.0000018438,0.0000018450,0.0000018474,0.0000018510, +0.0000018552,0.0000018592,0.0000018627,0.0000018648,0.0000018653, +0.0000018658,0.0000018660,0.0000018658,0.0000018657,0.0000018659, +0.0000018669,0.0000018685,0.0000018705,0.0000018727,0.0000018752, +0.0000018780,0.0000018812,0.0000018843,0.0000018876,0.0000018910, +0.0000018944,0.0000018979,0.0000019013,0.0000019049,0.0000019081, +0.0000019104,0.0000019106,0.0000019095,0.0000019072,0.0000019042, +0.0000019008,0.0000018972,0.0000018934,0.0000018897,0.0000018862, +0.0000018834,0.0000018806,0.0000018779,0.0000018755,0.0000018736, +0.0000018726,0.0000018718,0.0000018706,0.0000018689,0.0000018674, +0.0000018667,0.0000018669,0.0000018678,0.0000018692,0.0000018704, +0.0000018711,0.0000018711,0.0000018705,0.0000018696,0.0000018685, +0.0000018669,0.0000018649,0.0000018626,0.0000018603,0.0000018578, +0.0000018552,0.0000018530,0.0000018510,0.0000018489,0.0000018461, +0.0000018430,0.0000018402,0.0000018377,0.0000018358,0.0000018343, +0.0000018335,0.0000018334,0.0000018339,0.0000018351,0.0000018366, +0.0000018373,0.0000018377,0.0000018372,0.0000018355,0.0000018331, +0.0000018302,0.0000018274,0.0000018255,0.0000018245,0.0000018244, +0.0000018249,0.0000018265,0.0000018288,0.0000018310,0.0000018332, +0.0000018351,0.0000018367,0.0000018380,0.0000018390,0.0000018397, +0.0000018403,0.0000018407,0.0000018409,0.0000018410,0.0000018410, +0.0000018411,0.0000018411,0.0000018404,0.0000018394,0.0000018380, +0.0000018365,0.0000018347,0.0000018327,0.0000018304,0.0000018286, +0.0000018271,0.0000018260,0.0000018256,0.0000018256,0.0000018259, +0.0000018263,0.0000018268,0.0000018275,0.0000018289,0.0000018310, +0.0000018334,0.0000018359,0.0000018383,0.0000018406,0.0000018429, +0.0000018452,0.0000018477,0.0000018503,0.0000018532,0.0000018560, +0.0000018585,0.0000018604,0.0000018617,0.0000018624,0.0000018626, +0.0000018621,0.0000018615,0.0000018609,0.0000018592,0.0000018557, +0.0000018501,0.0000018424,0.0000018330,0.0000018235,0.0000018144, +0.0000018073,0.0000018045,0.0000018032,0.0000018042,0.0000018067, +0.0000018101,0.0000018138,0.0000018176,0.0000018209,0.0000018230, +0.0000018234,0.0000018232,0.0000018227,0.0000018229,0.0000018246, +0.0000018284,0.0000018347,0.0000018436,0.0000018542,0.0000018656, +0.0000018764,0.0000018853,0.0000018917,0.0000018959,0.0000018989, +0.0000019019,0.0000019057,0.0000019107,0.0000019167,0.0000019229, +0.0000019287,0.0000019339,0.0000019380,0.0000019411,0.0000019432, +0.0000019446,0.0000019457,0.0000019463,0.0000019463,0.0000019460, +0.0000019457,0.0000019451,0.0000019445,0.0000019438,0.0000019434, +0.0000019432,0.0000019432,0.0000019433,0.0000019435,0.0000019444, +0.0000019460,0.0000019481,0.0000019504,0.0000019528,0.0000019547, +0.0000019558,0.0000019560,0.0000019556,0.0000019543,0.0000019523, +0.0000019498,0.0000019471,0.0000019445,0.0000019420,0.0000019395, +0.0000019371,0.0000019349,0.0000019327,0.0000019304,0.0000019284, +0.0000019271,0.0000019271,0.0000019284,0.0000019306,0.0000019342, +0.0000019396,0.0000019463,0.0000019539,0.0000019626,0.0000019722, +0.0000019822,0.0000019919,0.0000020005,0.0000020070,0.0000020105, +0.0000020112,0.0000020113,0.0000020132,0.0000020161,0.0000020184, +0.0000020198,0.0000020202,0.0000020184,0.0000020139,0.0000020098, +0.0000020072,0.0000020055,0.0000020030,0.0000020002,0.0000020012, +0.0000020083,0.0000020128,0.0000020116,0.0000020129,0.0000020225, +0.0000020327,0.0000020349,0.0000020324,0.0000020294,0.0000020285, +0.0000020275,0.0000020229,0.0000020158,0.0000020109,0.0000020080, +0.0000020032,0.0000020005,0.0000020028,0.0000020085,0.0000020165, +0.0000020279,0.0000020371,0.0000020387,0.0000020352,0.0000020289, +0.0000020210,0.0000020124,0.0000020055,0.0000020033,0.0000020053, +0.0000020096,0.0000020139,0.0000020177,0.0000020223,0.0000020284, +0.0000020354,0.0000020419,0.0000020468,0.0000020499,0.0000020510, +0.0000020506,0.0000020491,0.0000020473,0.0000020459,0.0000020448, +0.0000020443,0.0000020441,0.0000020444,0.0000020450,0.0000020457, +0.0000020464,0.0000020472,0.0000020480,0.0000020486,0.0000020484, +0.0000020473,0.0000020456,0.0000020434,0.0000020413,0.0000020393, +0.0000020376,0.0000020359,0.0000020354,0.0000020357,0.0000020367, +0.0000020384,0.0000020406,0.0000020425,0.0000020435,0.0000020439, +0.0000020440,0.0000020432,0.0000020418,0.0000020404,0.0000020394, +0.0000020385,0.0000020378,0.0000020374,0.0000020371,0.0000020366, +0.0000020360,0.0000020354,0.0000020346,0.0000020339,0.0000020335, +0.0000020332,0.0000020329,0.0000020325,0.0000020322,0.0000020321, +0.0000020322,0.0000020325,0.0000020328,0.0000020330,0.0000020330, +0.0000020327,0.0000020323,0.0000020315,0.0000020301,0.0000020281, +0.0000020257,0.0000020232,0.0000020206,0.0000020176,0.0000020147, +0.0000020123,0.0000020102,0.0000020083,0.0000020067,0.0000020054, +0.0000020045,0.0000020041,0.0000020037,0.0000020028,0.0000020013, +0.0000019994,0.0000019973,0.0000019952,0.0000019934,0.0000019915, +0.0000019892,0.0000019863,0.0000019832,0.0000019803,0.0000019783, +0.0000019771,0.0000019765,0.0000019761,0.0000019758,0.0000019753, +0.0000019744,0.0000019732,0.0000019718,0.0000019700,0.0000019681, +0.0000019659,0.0000019639,0.0000019624,0.0000019610,0.0000019598, +0.0000019589,0.0000019587,0.0000019592,0.0000019600,0.0000019611, +0.0000019622,0.0000019634,0.0000019646,0.0000019660,0.0000019673, +0.0000019682,0.0000019691,0.0000019699,0.0000019704,0.0000019708, +0.0000019711,0.0000019713,0.0000019716,0.0000019720,0.0000019725, +0.0000019730,0.0000019736,0.0000019745,0.0000019755,0.0000019770, +0.0000019791,0.0000019819,0.0000019854,0.0000019892,0.0000019927, +0.0000019961,0.0000019997,0.0000020032,0.0000020068,0.0000020103, +0.0000020135,0.0000020165,0.0000020194,0.0000020223,0.0000020248, +0.0000020272,0.0000020291,0.0000020306,0.0000020318,0.0000020328, +0.0000020334,0.0000020342,0.0000020355,0.0000020371,0.0000020387, +0.0000020402,0.0000020417,0.0000020430,0.0000020443,0.0000020441, +0.0000020433,0.0000020426,0.0000020412,0.0000020404,0.0000020397, +0.0000020399,0.0000020402,0.0000020405,0.0000020404,0.0000020401, +0.0000020391,0.0000020381,0.0000020370,0.0000020358,0.0000020347, +0.0000020336,0.0000020323,0.0000020309,0.0000020297,0.0000020289, +0.0000020285,0.0000020287,0.0000020303,0.0000020326,0.0000020357, +0.0000020396,0.0000020437,0.0000020474,0.0000020510,0.0000020545, +0.0000020575,0.0000020599,0.0000020614,0.0000020620,0.0000020616, +0.0000020611,0.0000020607,0.0000020600,0.0000020592,0.0000020587, +0.0000020583,0.0000020578,0.0000020574,0.0000020570,0.0000020569, +0.0000020574,0.0000020580,0.0000020586,0.0000020592,0.0000020597, +0.0000020597,0.0000020587,0.0000020565,0.0000020535,0.0000020501, +0.0000020467,0.0000020438,0.0000020417,0.0000020405,0.0000020402, +0.0000020403,0.0000020408,0.0000020420,0.0000020434,0.0000020449, +0.0000020465,0.0000020481,0.0000020497,0.0000020510,0.0000020515, +0.0000020516,0.0000020516,0.0000020511,0.0000020495,0.0000020473, +0.0000020451,0.0000020431,0.0000020408,0.0000020388,0.0000020373, +0.0000020365,0.0000020361,0.0000020358,0.0000020358,0.0000020368, +0.0000020394,0.0000020429,0.0000020462,0.0000020483,0.0000020493, +0.0000020499,0.0000020507,0.0000020523,0.0000020549,0.0000020587, +0.0000020631,0.0000020664,0.0000020668,0.0000020642,0.0000020582, +0.0000020504,0.0000020430,0.0000020371,0.0000020330,0.0000020302, +0.0000020278,0.0000020255,0.0000020237,0.0000020224,0.0000020213, +0.0000020208,0.0000020208,0.0000020209,0.0000020209,0.0000020207, +0.0000020208,0.0000020216,0.0000020234,0.0000020258,0.0000020285, +0.0000020312,0.0000020336,0.0000020360,0.0000020382,0.0000020401, +0.0000020418,0.0000020436,0.0000020455,0.0000020470,0.0000020473, +0.0000020469,0.0000020456,0.0000020438,0.0000020419,0.0000020404, +0.0000020396,0.0000020399,0.0000020410,0.0000020427,0.0000020445, +0.0000020463,0.0000020480,0.0000020495,0.0000020512,0.0000020528, +0.0000020539,0.0000020539,0.0000020534,0.0000020520,0.0000020498, +0.0000020469,0.0000020434,0.0000020398,0.0000020367,0.0000020343, +0.0000020330,0.0000020318,0.0000020317,0.0000020332,0.0000020356, +0.0000020377,0.0000020391,0.0000020403,0.0000020416,0.0000020429, +0.0000020435,0.0000020435,0.0000020432,0.0000020430,0.0000020424, +0.0000020411,0.0000020392,0.0000020369,0.0000020343,0.0000020318, +0.0000020294,0.0000020270,0.0000020243,0.0000020212,0.0000020179, +0.0000020148,0.0000020117,0.0000020086,0.0000020056,0.0000020029, +0.0000019999,0.0000019969,0.0000019942,0.0000019920,0.0000019897, +0.0000019874,0.0000019853,0.0000019828,0.0000019796,0.0000019760, +0.0000019724,0.0000019691,0.0000019663,0.0000019643,0.0000019630, +0.0000019627,0.0000019633,0.0000019646,0.0000019661,0.0000019679, +0.0000019698,0.0000019716,0.0000019731,0.0000019741,0.0000019745, +0.0000019742,0.0000019735,0.0000019725,0.0000019709,0.0000019683, +0.0000019645,0.0000019597,0.0000019543,0.0000019485,0.0000019424, +0.0000019370,0.0000019329,0.0000019301,0.0000019288,0.0000019291, +0.0000019303,0.0000019320,0.0000019339,0.0000019359,0.0000019374, +0.0000019381,0.0000019384,0.0000019393,0.0000019411,0.0000019435, +0.0000019463,0.0000019493,0.0000019523,0.0000019555,0.0000019585, +0.0000019610,0.0000019629,0.0000019638,0.0000019639,0.0000019626, +0.0000019599,0.0000019560,0.0000019512,0.0000019466,0.0000019438, +0.0000019428,0.0000019427,0.0000019436,0.0000019455,0.0000019482, +0.0000019511,0.0000019534,0.0000019552,0.0000019569,0.0000019587, +0.0000019601,0.0000019613,0.0000019625,0.0000019637,0.0000019649, +0.0000019661,0.0000019671,0.0000019679,0.0000019688,0.0000019697, +0.0000019700,0.0000019693,0.0000019679,0.0000019657,0.0000019633, +0.0000019614,0.0000019606,0.0000019614,0.0000019639,0.0000019678, +0.0000019728,0.0000019778,0.0000019821,0.0000019851,0.0000019871, +0.0000019883,0.0000019892,0.0000019905,0.0000019926,0.0000019947, +0.0000019965,0.0000019977,0.0000019979,0.0000019968,0.0000019949, +0.0000019930,0.0000019915,0.0000019903,0.0000019884,0.0000019863, +0.0000019821,0.0000019748,0.0000019668,0.0000019600,0.0000019549, +0.0000019537,0.0000019534,0.0000019550,0.0000019584,0.0000019614, +0.0000019634,0.0000019641,0.0000019637,0.0000019619,0.0000019584, +0.0000019541,0.0000019493,0.0000019452,0.0000019429,0.0000019424, +0.0000019441,0.0000019478,0.0000019532,0.0000019599,0.0000019667, +0.0000019730,0.0000019776,0.0000019800,0.0000019806,0.0000019806, +0.0000019816,0.0000019838,0.0000019867,0.0000019901,0.0000019939, +0.0000019986,0.0000020035,0.0000020075,0.0000020105,0.0000020124, +0.0000020138,0.0000020143,0.0000020140,0.0000020132,0.0000020116, +0.0000020091,0.0000020055,0.0000020014,0.0000019974,0.0000019941, +0.0000019915,0.0000019898,0.0000019884,0.0000019869,0.0000019855, +0.0000019843,0.0000019830,0.0000019810,0.0000019784,0.0000019753, +0.0000019727,0.0000019709,0.0000019698,0.0000019687,0.0000019675, +0.0000019665,0.0000019660,0.0000019655,0.0000019647,0.0000019633, +0.0000019621,0.0000019617,0.0000019625,0.0000019643,0.0000019671, +0.0000019706,0.0000019738,0.0000019762,0.0000019779,0.0000019790, +0.0000019797,0.0000019801,0.0000019803,0.0000019810,0.0000019817, +0.0000019821,0.0000019818,0.0000019810,0.0000019792,0.0000019767, +0.0000019737,0.0000019710,0.0000019692,0.0000019685,0.0000019683, +0.0000019676,0.0000019657,0.0000019617,0.0000019558,0.0000019492, +0.0000019434,0.0000019392,0.0000019357,0.0000019328,0.0000019305, +0.0000019280,0.0000019241,0.0000019191,0.0000019137,0.0000019084, +0.0000019025,0.0000018959,0.0000018892,0.0000018827,0.0000018763, +0.0000018705,0.0000018663,0.0000018640,0.0000018641,0.0000018670, +0.0000018723,0.0000018779,0.0000018808,0.0000018806,0.0000018787, +0.0000018764,0.0000018754,0.0000018762,0.0000018782,0.0000018799, +0.0000018819,0.0000018850,0.0000018881,0.0000018896,0.0000018888, +0.0000018858,0.0000018825,0.0000018811,0.0000018815,0.0000018830, +0.0000018856,0.0000018881,0.0000018897,0.0000018907,0.0000018915, +0.0000018919,0.0000018919,0.0000018908,0.0000018886,0.0000018857, +0.0000018831,0.0000018805,0.0000018775,0.0000018742,0.0000018714, +0.0000018697,0.0000018681,0.0000018675,0.0000018673,0.0000018673, +0.0000018668,0.0000018658,0.0000018647,0.0000018641,0.0000018641, +0.0000018642,0.0000018644,0.0000018647,0.0000018656,0.0000018671, +0.0000018691,0.0000018713,0.0000018732,0.0000018749,0.0000018766, +0.0000018780,0.0000018790,0.0000018803,0.0000018816,0.0000018829, +0.0000018843,0.0000018866,0.0000018901,0.0000018949,0.0000019014, +0.0000019097,0.0000019197,0.0000019305,0.0000019413,0.0000019511, +0.0000019596,0.0000019668,0.0000019720,0.0000019758,0.0000019792, +0.0000019827,0.0000019862,0.0000019895,0.0000019922,0.0000019937, +0.0000019931,0.0000019888,0.0000019810,0.0000019688,0.0000019548, +0.0000019414,0.0000019312,0.0000019247,0.0000019218,0.0000019200, +0.0000019188,0.0000019176,0.0000019160,0.0000019148,0.0000019129, +0.0000019100,0.0000019070,0.0000019051,0.0000019047,0.0000019053, +0.0000019064,0.0000019075,0.0000019087,0.0000019098,0.0000019104, +0.0000019107,0.0000019110,0.0000019114,0.0000019115,0.0000019112, +0.0000019100,0.0000019071,0.0000019027,0.0000018979,0.0000018922, +0.0000018845,0.0000018759,0.0000018699,0.0000018682,0.0000018706, +0.0000018772,0.0000018863,0.0000018950,0.0000019007,0.0000019028, +0.0000019030,0.0000019029,0.0000019028,0.0000019019,0.0000018996, +0.0000018964,0.0000018935,0.0000018904,0.0000018842,0.0000018728, +0.0000018594,0.0000018502,0.0000018484,0.0000018500,0.0000018519, +0.0000018522,0.0000018525,0.0000018533,0.0000018539,0.0000018534, +0.0000018516,0.0000018491,0.0000018461,0.0000018432,0.0000018406, +0.0000018380,0.0000018352,0.0000018325,0.0000018297,0.0000018272, +0.0000018241,0.0000018209,0.0000018183,0.0000018166,0.0000018153, +0.0000018138,0.0000018117,0.0000018103,0.0000018106,0.0000018133, +0.0000018165,0.0000018195,0.0000018223,0.0000018255,0.0000018302, +0.0000018290,0.0000018174,0.0000018086,0.0000018062,0.0000018083, +0.0000018120,0.0000018138,0.0000018139,0.0000018130,0.0000018119, +0.0000018110,0.0000018103,0.0000018094,0.0000018085,0.0000018079, +0.0000018074,0.0000018066,0.0000018056,0.0000018043,0.0000018027, +0.0000018006,0.0000017982,0.0000017957,0.0000017932,0.0000017904, +0.0000017876,0.0000017851,0.0000017831,0.0000017811,0.0000017790, +0.0000017770,0.0000017754,0.0000017743,0.0000017739,0.0000017739, +0.0000017754,0.0000017777,0.0000017803,0.0000017830,0.0000017855, +0.0000017876,0.0000017893,0.0000017907,0.0000017915,0.0000017919, +0.0000017920,0.0000017929,0.0000017944,0.0000017967,0.0000017992, +0.0000018010,0.0000018019,0.0000018022,0.0000018017,0.0000018005, +0.0000017989,0.0000017977,0.0000017975,0.0000017973,0.0000017942, +0.0000017848,0.0000017724,0.0000017655,0.0000017672,0.0000017794, +0.0000017908,0.0000017952,0.0000017965,0.0000018002,0.0000018097, +0.0000018236,0.0000018350,0.0000018386,0.0000018387,0.0000018377, +0.0000018349,0.0000018323,0.0000018327,0.0000018379,0.0000018439, +0.0000018497,0.0000018575,0.0000018657,0.0000018720,0.0000018759, +0.0000018775,0.0000018775,0.0000018762,0.0000018738,0.0000018714, +0.0000018703,0.0000018710,0.0000018732,0.0000018760,0.0000018796, +0.0000018838,0.0000018874,0.0000018898,0.0000018913,0.0000018924, +0.0000018940,0.0000018959,0.0000018977,0.0000018991,0.0000019001, +0.0000019008,0.0000019011,0.0000019009,0.0000018992,0.0000018931, +0.0000018820,0.0000018726,0.0000018703,0.0000018715,0.0000018707, +0.0000018690,0.0000018729,0.0000018767,0.0000018750,0.0000018750, +0.0000018779,0.0000018800,0.0000018876,0.0000019005,0.0000019023, +0.0000018932,0.0000018903,0.0000018983,0.0000019095,0.0000019125, +0.0000019080,0.0000019013,0.0000018968,0.0000018917,0.0000018840, +0.0000018780,0.0000018765,0.0000018740,0.0000018671,0.0000018601, +0.0000018565,0.0000018558,0.0000018562,0.0000018573,0.0000018573, +0.0000018527,0.0000018447,0.0000018401,0.0000018401,0.0000018420, +0.0000018441,0.0000018456,0.0000018455,0.0000018451,0.0000018434, +0.0000018406,0.0000018376,0.0000018350,0.0000018327,0.0000018308, +0.0000018294,0.0000018284,0.0000018279,0.0000018280,0.0000018287, +0.0000018297,0.0000018308,0.0000018317,0.0000018327,0.0000018336, +0.0000018343,0.0000018349,0.0000018353,0.0000018357,0.0000018358, +0.0000018355,0.0000018348,0.0000018335,0.0000018316,0.0000018292, +0.0000018268,0.0000018243,0.0000018218,0.0000018189,0.0000018156, +0.0000018114,0.0000018065,0.0000018009,0.0000017952,0.0000017903, +0.0000017890,0.0000017881,0.0000017890,0.0000017906,0.0000017918, +0.0000017914,0.0000017908,0.0000017909,0.0000017916,0.0000017936, +0.0000017966,0.0000018012,0.0000018078,0.0000018162,0.0000018256, +0.0000018350,0.0000018436,0.0000018508,0.0000018558,0.0000018582, +0.0000018583,0.0000018569,0.0000018547,0.0000018524,0.0000018501, +0.0000018477,0.0000018446,0.0000018409,0.0000018372,0.0000018322, +0.0000018270,0.0000018218,0.0000018167,0.0000018121,0.0000018081, +0.0000018046,0.0000018018,0.0000017998,0.0000017984,0.0000017974, +0.0000017965,0.0000017959,0.0000017954,0.0000017947,0.0000017940, +0.0000017934,0.0000017930,0.0000017928,0.0000017926,0.0000017925, +0.0000017925,0.0000017926,0.0000017927,0.0000017930,0.0000017932, +0.0000017935,0.0000017938,0.0000017942,0.0000017945,0.0000017950, +0.0000017956,0.0000017958,0.0000017955,0.0000017946,0.0000017930, +0.0000017909,0.0000017885,0.0000017859,0.0000017836,0.0000017814, +0.0000017796,0.0000017786,0.0000017784,0.0000017789,0.0000017799, +0.0000017815,0.0000017835,0.0000017858,0.0000017882,0.0000017910, +0.0000017940,0.0000017971,0.0000018000,0.0000018028,0.0000018053, +0.0000018076,0.0000018094,0.0000018109,0.0000018121,0.0000018128, +0.0000018130,0.0000018130,0.0000018131,0.0000018135,0.0000018145, +0.0000018117,0.0000018123,0.0000018138,0.0000018161,0.0000018183, +0.0000018202,0.0000018214,0.0000018217,0.0000018213,0.0000018202, +0.0000018188,0.0000018174,0.0000018163,0.0000018159,0.0000018166, +0.0000018186,0.0000018218,0.0000018263,0.0000018317,0.0000018372, +0.0000018422,0.0000018459,0.0000018481,0.0000018494,0.0000018496, +0.0000018484,0.0000018457,0.0000018419,0.0000018378,0.0000018342, +0.0000018319,0.0000018307,0.0000018299,0.0000018285,0.0000018263, +0.0000018231,0.0000018191,0.0000018144,0.0000018093,0.0000018045, +0.0000018012,0.0000017998,0.0000018006,0.0000018018,0.0000018039, +0.0000018071,0.0000018111,0.0000018151,0.0000018187,0.0000018221, +0.0000018253,0.0000018283,0.0000018312,0.0000018336,0.0000018355, +0.0000018369,0.0000018381,0.0000018391,0.0000018399,0.0000018404, +0.0000018406,0.0000018407,0.0000018408,0.0000018412,0.0000018424, +0.0000018447,0.0000018479,0.0000018517,0.0000018557,0.0000018594, +0.0000018625,0.0000018646,0.0000018654,0.0000018653,0.0000018647, +0.0000018645,0.0000018645,0.0000018652,0.0000018663,0.0000018679, +0.0000018703,0.0000018736,0.0000018773,0.0000018810,0.0000018844, +0.0000018874,0.0000018899,0.0000018923,0.0000018952,0.0000018988, +0.0000019026,0.0000019057,0.0000019074,0.0000019069,0.0000019050, +0.0000019018,0.0000018979,0.0000018938,0.0000018899,0.0000018865, +0.0000018837,0.0000018812,0.0000018783,0.0000018752,0.0000018731, +0.0000018718,0.0000018711,0.0000018702,0.0000018689,0.0000018674, +0.0000018664,0.0000018657,0.0000018658,0.0000018670,0.0000018689, +0.0000018706,0.0000018713,0.0000018714,0.0000018710,0.0000018702, +0.0000018688,0.0000018669,0.0000018644,0.0000018617,0.0000018589, +0.0000018559,0.0000018532,0.0000018510,0.0000018488,0.0000018465, +0.0000018441,0.0000018416,0.0000018393,0.0000018372,0.0000018353, +0.0000018341,0.0000018333,0.0000018332,0.0000018337,0.0000018347, +0.0000018359,0.0000018372,0.0000018376,0.0000018377,0.0000018370, +0.0000018354,0.0000018337,0.0000018321,0.0000018308,0.0000018301, +0.0000018300,0.0000018304,0.0000018313,0.0000018325,0.0000018341, +0.0000018358,0.0000018374,0.0000018388,0.0000018399,0.0000018407, +0.0000018415,0.0000018421,0.0000018426,0.0000018428,0.0000018431, +0.0000018434,0.0000018434,0.0000018430,0.0000018420,0.0000018406, +0.0000018390,0.0000018371,0.0000018348,0.0000018322,0.0000018299, +0.0000018280,0.0000018264,0.0000018252,0.0000018249,0.0000018246, +0.0000018244,0.0000018245,0.0000018250,0.0000018263,0.0000018282, +0.0000018303,0.0000018326,0.0000018346,0.0000018365,0.0000018383, +0.0000018399,0.0000018412,0.0000018425,0.0000018442,0.0000018463, +0.0000018486,0.0000018511,0.0000018534,0.0000018555,0.0000018570, +0.0000018583,0.0000018593,0.0000018599,0.0000018589,0.0000018576, +0.0000018551,0.0000018510,0.0000018454,0.0000018378,0.0000018283, +0.0000018182,0.0000018096,0.0000018037,0.0000018015,0.0000018016, +0.0000018033,0.0000018063,0.0000018101,0.0000018142,0.0000018181, +0.0000018207,0.0000018223,0.0000018222,0.0000018215,0.0000018203, +0.0000018197,0.0000018207,0.0000018234,0.0000018287,0.0000018367, +0.0000018466,0.0000018574,0.0000018679,0.0000018771,0.0000018843, +0.0000018895,0.0000018932,0.0000018962,0.0000018989,0.0000019019, +0.0000019052,0.0000019088,0.0000019125,0.0000019158,0.0000019187, +0.0000019214,0.0000019237,0.0000019255,0.0000019266,0.0000019274, +0.0000019279,0.0000019281,0.0000019280,0.0000019279,0.0000019280, +0.0000019282,0.0000019287,0.0000019293,0.0000019299,0.0000019310, +0.0000019328,0.0000019350,0.0000019376,0.0000019403,0.0000019426, +0.0000019443,0.0000019452,0.0000019452,0.0000019443,0.0000019425, +0.0000019403,0.0000019378,0.0000019351,0.0000019325,0.0000019298, +0.0000019268,0.0000019238,0.0000019209,0.0000019181,0.0000019156, +0.0000019141,0.0000019138,0.0000019147,0.0000019166,0.0000019203, +0.0000019259,0.0000019326,0.0000019404,0.0000019494,0.0000019597, +0.0000019711,0.0000019824,0.0000019927,0.0000020012,0.0000020070, +0.0000020092,0.0000020092,0.0000020100,0.0000020122,0.0000020146, +0.0000020169,0.0000020181,0.0000020170,0.0000020136,0.0000020100, +0.0000020071,0.0000020043,0.0000020010,0.0000019990,0.0000020021, +0.0000020096,0.0000020121,0.0000020101,0.0000020124,0.0000020232, +0.0000020329,0.0000020345,0.0000020315,0.0000020285,0.0000020273, +0.0000020257,0.0000020209,0.0000020142,0.0000020097,0.0000020067, +0.0000020024,0.0000020003,0.0000020039,0.0000020098,0.0000020167, +0.0000020262,0.0000020343,0.0000020358,0.0000020325,0.0000020267, +0.0000020197,0.0000020117,0.0000020044,0.0000020005,0.0000020006, +0.0000020037,0.0000020074,0.0000020101,0.0000020119,0.0000020141, +0.0000020173,0.0000020213,0.0000020256,0.0000020298,0.0000020334, +0.0000020360,0.0000020379,0.0000020391,0.0000020398,0.0000020400, +0.0000020398,0.0000020395,0.0000020391,0.0000020388,0.0000020386, +0.0000020385,0.0000020385,0.0000020389,0.0000020398,0.0000020413, +0.0000020425,0.0000020426,0.0000020418,0.0000020399,0.0000020374, +0.0000020347,0.0000020318,0.0000020296,0.0000020273,0.0000020257, +0.0000020244,0.0000020233,0.0000020225,0.0000020220,0.0000020216, +0.0000020209,0.0000020200,0.0000020191,0.0000020186,0.0000020185, +0.0000020186,0.0000020189,0.0000020192,0.0000020193,0.0000020188, +0.0000020182,0.0000020176,0.0000020167,0.0000020158,0.0000020153, +0.0000020151,0.0000020150,0.0000020149,0.0000020149,0.0000020151, +0.0000020152,0.0000020153,0.0000020155,0.0000020156,0.0000020157, +0.0000020153,0.0000020143,0.0000020127,0.0000020106,0.0000020083, +0.0000020060,0.0000020036,0.0000020008,0.0000019980,0.0000019955, +0.0000019936,0.0000019921,0.0000019909,0.0000019904,0.0000019904, +0.0000019911,0.0000019919,0.0000019923,0.0000019923,0.0000019921, +0.0000019916,0.0000019909,0.0000019900,0.0000019888,0.0000019871, +0.0000019847,0.0000019821,0.0000019796,0.0000019778,0.0000019764, +0.0000019755,0.0000019751,0.0000019751,0.0000019751,0.0000019745, +0.0000019740,0.0000019727,0.0000019711,0.0000019694,0.0000019673, +0.0000019650,0.0000019627,0.0000019605,0.0000019583,0.0000019563, +0.0000019546,0.0000019535,0.0000019528,0.0000019529,0.0000019532, +0.0000019537,0.0000019545,0.0000019555,0.0000019566,0.0000019577, +0.0000019590,0.0000019603,0.0000019615,0.0000019628,0.0000019640, +0.0000019653,0.0000019666,0.0000019679,0.0000019692,0.0000019703, +0.0000019714,0.0000019723,0.0000019728,0.0000019736,0.0000019745, +0.0000019759,0.0000019780,0.0000019804,0.0000019828,0.0000019851, +0.0000019875,0.0000019898,0.0000019921,0.0000019943,0.0000019964, +0.0000019981,0.0000020000,0.0000020021,0.0000020038,0.0000020056, +0.0000020072,0.0000020084,0.0000020095,0.0000020106,0.0000020115, +0.0000020126,0.0000020143,0.0000020163,0.0000020185,0.0000020209, +0.0000020234,0.0000020256,0.0000020281,0.0000020304,0.0000020321, +0.0000020334,0.0000020344,0.0000020352,0.0000020359,0.0000020369, +0.0000020379,0.0000020391,0.0000020398,0.0000020401,0.0000020401, +0.0000020398,0.0000020393,0.0000020394,0.0000020390,0.0000020386, +0.0000020383,0.0000020377,0.0000020369,0.0000020363,0.0000020356, +0.0000020354,0.0000020364,0.0000020380,0.0000020403,0.0000020434, +0.0000020464,0.0000020492,0.0000020521,0.0000020550,0.0000020575, +0.0000020597,0.0000020614,0.0000020625,0.0000020626,0.0000020627, +0.0000020626,0.0000020621,0.0000020613,0.0000020611,0.0000020610, +0.0000020607,0.0000020602,0.0000020597,0.0000020592,0.0000020590, +0.0000020588,0.0000020587,0.0000020585,0.0000020582,0.0000020580, +0.0000020573,0.0000020554,0.0000020528,0.0000020498,0.0000020466, +0.0000020435,0.0000020411,0.0000020395,0.0000020391,0.0000020393, +0.0000020403,0.0000020420,0.0000020440,0.0000020458,0.0000020470, +0.0000020480,0.0000020487,0.0000020494,0.0000020498,0.0000020499, +0.0000020498,0.0000020496,0.0000020487,0.0000020473,0.0000020456, +0.0000020443,0.0000020424,0.0000020399,0.0000020376,0.0000020361, +0.0000020353,0.0000020349,0.0000020342,0.0000020334,0.0000020335, +0.0000020347,0.0000020373,0.0000020409,0.0000020447,0.0000020473, +0.0000020485,0.0000020489,0.0000020498,0.0000020519,0.0000020549, +0.0000020582,0.0000020620,0.0000020635,0.0000020632,0.0000020596, +0.0000020531,0.0000020457,0.0000020390,0.0000020342,0.0000020309, +0.0000020290,0.0000020282,0.0000020278,0.0000020272,0.0000020262, +0.0000020247,0.0000020233,0.0000020220,0.0000020214,0.0000020215, +0.0000020214,0.0000020219,0.0000020228,0.0000020241,0.0000020250, +0.0000020255,0.0000020260,0.0000020264,0.0000020267,0.0000020274, +0.0000020288,0.0000020305,0.0000020321,0.0000020335,0.0000020342, +0.0000020340,0.0000020329,0.0000020314,0.0000020300,0.0000020291, +0.0000020290,0.0000020298,0.0000020314,0.0000020334,0.0000020358, +0.0000020384,0.0000020411,0.0000020442,0.0000020473,0.0000020497, +0.0000020513,0.0000020520,0.0000020512,0.0000020505,0.0000020484, +0.0000020454,0.0000020420,0.0000020386,0.0000020358,0.0000020334, +0.0000020318,0.0000020314,0.0000020324,0.0000020342,0.0000020361, +0.0000020378,0.0000020396,0.0000020415,0.0000020432,0.0000020441, +0.0000020442,0.0000020442,0.0000020434,0.0000020422,0.0000020406, +0.0000020386,0.0000020359,0.0000020328,0.0000020300,0.0000020274, +0.0000020247,0.0000020215,0.0000020180,0.0000020146,0.0000020115, +0.0000020086,0.0000020059,0.0000020035,0.0000020008,0.0000019979, +0.0000019950,0.0000019927,0.0000019905,0.0000019883,0.0000019862, +0.0000019839,0.0000019807,0.0000019771,0.0000019736,0.0000019699, +0.0000019664,0.0000019635,0.0000019610,0.0000019591,0.0000019582, +0.0000019581,0.0000019589,0.0000019602,0.0000019619,0.0000019635, +0.0000019650,0.0000019664,0.0000019676,0.0000019681,0.0000019681, +0.0000019674,0.0000019659,0.0000019637,0.0000019604,0.0000019561, +0.0000019513,0.0000019460,0.0000019400,0.0000019336,0.0000019279, +0.0000019231,0.0000019198,0.0000019181,0.0000019180,0.0000019190, +0.0000019207,0.0000019232,0.0000019261,0.0000019285,0.0000019301, +0.0000019312,0.0000019328,0.0000019350,0.0000019374,0.0000019398, +0.0000019422,0.0000019447,0.0000019470,0.0000019489,0.0000019503, +0.0000019511,0.0000019514,0.0000019513,0.0000019504,0.0000019481, +0.0000019443,0.0000019396,0.0000019358,0.0000019334,0.0000019318, +0.0000019315,0.0000019327,0.0000019355,0.0000019392,0.0000019423, +0.0000019445,0.0000019461,0.0000019475,0.0000019487,0.0000019500, +0.0000019512,0.0000019526,0.0000019542,0.0000019562,0.0000019584, +0.0000019605,0.0000019622,0.0000019636,0.0000019650,0.0000019662, +0.0000019672,0.0000019671,0.0000019673,0.0000019665,0.0000019647, +0.0000019629,0.0000019613,0.0000019603,0.0000019613,0.0000019640, +0.0000019674,0.0000019710,0.0000019739,0.0000019760,0.0000019773, +0.0000019786,0.0000019806,0.0000019832,0.0000019866,0.0000019907, +0.0000019939,0.0000019953,0.0000019946,0.0000019924,0.0000019904, +0.0000019884,0.0000019867,0.0000019861,0.0000019841,0.0000019819, +0.0000019776,0.0000019714,0.0000019648,0.0000019589,0.0000019541, +0.0000019530,0.0000019524,0.0000019536,0.0000019563,0.0000019588, +0.0000019608,0.0000019617,0.0000019610,0.0000019589,0.0000019556, +0.0000019518,0.0000019477,0.0000019446,0.0000019433,0.0000019438, +0.0000019465,0.0000019511,0.0000019572,0.0000019634,0.0000019690, +0.0000019736,0.0000019761,0.0000019769,0.0000019770,0.0000019766, +0.0000019761,0.0000019766,0.0000019782,0.0000019818,0.0000019868, +0.0000019918,0.0000019964,0.0000020003,0.0000020037,0.0000020063, +0.0000020077,0.0000020079,0.0000020072,0.0000020052,0.0000020021, +0.0000019981,0.0000019938,0.0000019899,0.0000019868,0.0000019847, +0.0000019831,0.0000019819,0.0000019811,0.0000019811,0.0000019810, +0.0000019803,0.0000019792,0.0000019774,0.0000019757,0.0000019745, +0.0000019738,0.0000019729,0.0000019713,0.0000019696,0.0000019681, +0.0000019668,0.0000019649,0.0000019626,0.0000019603,0.0000019589, +0.0000019588,0.0000019599,0.0000019623,0.0000019655,0.0000019686, +0.0000019710,0.0000019727,0.0000019740,0.0000019748,0.0000019755, +0.0000019765,0.0000019777,0.0000019789,0.0000019798,0.0000019802, +0.0000019802,0.0000019791,0.0000019760,0.0000019722,0.0000019695, +0.0000019683,0.0000019678,0.0000019672,0.0000019651,0.0000019614, +0.0000019562,0.0000019500,0.0000019443,0.0000019398,0.0000019365, +0.0000019336,0.0000019312,0.0000019294,0.0000019270,0.0000019241, +0.0000019201,0.0000019150,0.0000019092,0.0000019028,0.0000018957, +0.0000018885,0.0000018817,0.0000018751,0.0000018692,0.0000018647, +0.0000018617,0.0000018614,0.0000018633,0.0000018669,0.0000018720, +0.0000018771,0.0000018793,0.0000018782,0.0000018757,0.0000018734, +0.0000018733,0.0000018752,0.0000018772,0.0000018789,0.0000018805, +0.0000018826,0.0000018850,0.0000018858,0.0000018834,0.0000018802, +0.0000018781,0.0000018775,0.0000018781,0.0000018798,0.0000018819, +0.0000018839,0.0000018857,0.0000018872,0.0000018884,0.0000018895, +0.0000018892,0.0000018871,0.0000018849,0.0000018831,0.0000018811, +0.0000018784,0.0000018749,0.0000018715,0.0000018681,0.0000018651, +0.0000018631,0.0000018620,0.0000018615,0.0000018608,0.0000018596, +0.0000018587,0.0000018585,0.0000018586,0.0000018591,0.0000018594, +0.0000018599,0.0000018606,0.0000018617,0.0000018633,0.0000018652, +0.0000018673,0.0000018694,0.0000018714,0.0000018729,0.0000018739, +0.0000018750,0.0000018763,0.0000018775,0.0000018787,0.0000018803, +0.0000018822,0.0000018848,0.0000018884,0.0000018934,0.0000019003, +0.0000019091,0.0000019192,0.0000019300,0.0000019412,0.0000019521, +0.0000019615,0.0000019690,0.0000019750,0.0000019797,0.0000019833, +0.0000019862,0.0000019888,0.0000019910,0.0000019919,0.0000019911, +0.0000019863,0.0000019775,0.0000019646,0.0000019503,0.0000019368, +0.0000019265,0.0000019205,0.0000019180,0.0000019168,0.0000019159, +0.0000019159,0.0000019159,0.0000019153,0.0000019137,0.0000019116, +0.0000019096,0.0000019085,0.0000019084,0.0000019089,0.0000019095, +0.0000019099,0.0000019101,0.0000019100,0.0000019099,0.0000019100, +0.0000019103,0.0000019105,0.0000019104,0.0000019095,0.0000019068, +0.0000019028,0.0000018983,0.0000018932,0.0000018865,0.0000018784, +0.0000018715,0.0000018691,0.0000018702,0.0000018752,0.0000018835, +0.0000018926,0.0000018993,0.0000019022,0.0000019024,0.0000019018, +0.0000019012,0.0000019002,0.0000018989,0.0000018967,0.0000018944, +0.0000018923,0.0000018874,0.0000018769,0.0000018629,0.0000018521, +0.0000018483,0.0000018489,0.0000018504,0.0000018510,0.0000018512, +0.0000018518,0.0000018524,0.0000018520,0.0000018504,0.0000018477, +0.0000018444,0.0000018408,0.0000018375,0.0000018343,0.0000018312, +0.0000018284,0.0000018260,0.0000018235,0.0000018213,0.0000018193, +0.0000018176,0.0000018163,0.0000018150,0.0000018133,0.0000018123, +0.0000018129,0.0000018152,0.0000018178,0.0000018204,0.0000018225, +0.0000018245,0.0000018288,0.0000018290,0.0000018183,0.0000018085, +0.0000018065,0.0000018105,0.0000018151,0.0000018157,0.0000018150, +0.0000018138,0.0000018126,0.0000018115,0.0000018105,0.0000018099, +0.0000018089,0.0000018078,0.0000018069,0.0000018060,0.0000018051, +0.0000018042,0.0000018030,0.0000018009,0.0000017984,0.0000017957, +0.0000017927,0.0000017897,0.0000017869,0.0000017840,0.0000017817, +0.0000017800,0.0000017787,0.0000017774,0.0000017762,0.0000017751, +0.0000017744,0.0000017739,0.0000017740,0.0000017751,0.0000017764, +0.0000017785,0.0000017809,0.0000017834,0.0000017858,0.0000017878, +0.0000017892,0.0000017900,0.0000017907,0.0000017920,0.0000017943, +0.0000017970,0.0000017996,0.0000018014,0.0000018023,0.0000018024, +0.0000018017,0.0000018007,0.0000017996,0.0000017993,0.0000017997, +0.0000017992,0.0000017940,0.0000017829,0.0000017718,0.0000017683, +0.0000017744,0.0000017879,0.0000017968,0.0000017995,0.0000018013, +0.0000018071,0.0000018187,0.0000018321,0.0000018395,0.0000018407, +0.0000018404,0.0000018388,0.0000018360,0.0000018350,0.0000018375, +0.0000018430,0.0000018491,0.0000018559,0.0000018636,0.0000018702, +0.0000018743,0.0000018764,0.0000018771,0.0000018768,0.0000018751, +0.0000018725,0.0000018702,0.0000018692,0.0000018696,0.0000018711, +0.0000018733,0.0000018765,0.0000018801,0.0000018838,0.0000018876, +0.0000018908,0.0000018933,0.0000018955,0.0000018979,0.0000018998, +0.0000019011,0.0000019019,0.0000019020,0.0000019017,0.0000018998, +0.0000018923,0.0000018800,0.0000018701,0.0000018675,0.0000018695, +0.0000018705,0.0000018685,0.0000018697,0.0000018752,0.0000018747, +0.0000018727,0.0000018747,0.0000018769,0.0000018818,0.0000018958, +0.0000019035,0.0000018965,0.0000018884,0.0000018900,0.0000018999, +0.0000019095,0.0000019118,0.0000019096,0.0000019062,0.0000019031, +0.0000018956,0.0000018840,0.0000018770,0.0000018754,0.0000018708, +0.0000018629,0.0000018567,0.0000018541,0.0000018539,0.0000018543, +0.0000018547,0.0000018536,0.0000018486,0.0000018422,0.0000018396, +0.0000018402,0.0000018419,0.0000018436,0.0000018447,0.0000018454, +0.0000018454,0.0000018452,0.0000018446,0.0000018438,0.0000018428, +0.0000018416,0.0000018404,0.0000018393,0.0000018383,0.0000018377, +0.0000018374,0.0000018375,0.0000018378,0.0000018382,0.0000018386, +0.0000018390,0.0000018393,0.0000018397,0.0000018403,0.0000018412, +0.0000018422,0.0000018431,0.0000018434,0.0000018433,0.0000018423, +0.0000018404,0.0000018380,0.0000018350,0.0000018317,0.0000018283, +0.0000018251,0.0000018220,0.0000018187,0.0000018148,0.0000018102, +0.0000018050,0.0000017995,0.0000017943,0.0000017896,0.0000017875, +0.0000017870,0.0000017881,0.0000017899,0.0000017913,0.0000017916, +0.0000017923,0.0000017931,0.0000017942,0.0000017960,0.0000017987, +0.0000018031,0.0000018094,0.0000018171,0.0000018259,0.0000018350, +0.0000018429,0.0000018489,0.0000018521,0.0000018528,0.0000018516, +0.0000018492,0.0000018464,0.0000018434,0.0000018404,0.0000018373, +0.0000018336,0.0000018291,0.0000018248,0.0000018201,0.0000018156, +0.0000018114,0.0000018074,0.0000018040,0.0000018014,0.0000017996, +0.0000017984,0.0000017973,0.0000017966,0.0000017961,0.0000017956, +0.0000017950,0.0000017941,0.0000017935,0.0000017925,0.0000017917, +0.0000017909,0.0000017902,0.0000017900,0.0000017900,0.0000017903, +0.0000017906,0.0000017910,0.0000017914,0.0000017919,0.0000017924, +0.0000017929,0.0000017936,0.0000017943,0.0000017947,0.0000017945, +0.0000017936,0.0000017924,0.0000017906,0.0000017885,0.0000017866, +0.0000017847,0.0000017827,0.0000017810,0.0000017802,0.0000017801, +0.0000017805,0.0000017814,0.0000017826,0.0000017839,0.0000017851, +0.0000017864,0.0000017881,0.0000017903,0.0000017927,0.0000017951, +0.0000017976,0.0000018002,0.0000018028,0.0000018052,0.0000018072, +0.0000018089,0.0000018101,0.0000018110,0.0000018114,0.0000018115, +0.0000018116,0.0000018106,0.0000018107,0.0000018109,0.0000018116, +0.0000018127,0.0000018138,0.0000018147,0.0000018153,0.0000018153, +0.0000018147,0.0000018134,0.0000018117,0.0000018099,0.0000018082, +0.0000018073,0.0000018073,0.0000018085,0.0000018110,0.0000018146, +0.0000018193,0.0000018252,0.0000018319,0.0000018383,0.0000018436, +0.0000018473,0.0000018495,0.0000018500,0.0000018491,0.0000018468, +0.0000018434,0.0000018397,0.0000018367,0.0000018346,0.0000018332, +0.0000018323,0.0000018312,0.0000018294,0.0000018264,0.0000018222, +0.0000018169,0.0000018112,0.0000018062,0.0000018029,0.0000018018, +0.0000018028,0.0000018044,0.0000018068,0.0000018098,0.0000018126, +0.0000018151,0.0000018176,0.0000018202,0.0000018229,0.0000018251, +0.0000018266,0.0000018277,0.0000018287,0.0000018301,0.0000018319, +0.0000018336,0.0000018351,0.0000018363,0.0000018373,0.0000018381, +0.0000018388,0.0000018396,0.0000018405,0.0000018417,0.0000018437, +0.0000018465,0.0000018499,0.0000018537,0.0000018570,0.0000018595, +0.0000018610,0.0000018618,0.0000018620,0.0000018621,0.0000018624, +0.0000018629,0.0000018644,0.0000018674,0.0000018714,0.0000018754, +0.0000018791,0.0000018822,0.0000018846,0.0000018866,0.0000018885, +0.0000018906,0.0000018933,0.0000018963,0.0000018993,0.0000019017, +0.0000019025,0.0000019013,0.0000018987,0.0000018947,0.0000018905, +0.0000018868,0.0000018840,0.0000018815,0.0000018788,0.0000018759, +0.0000018737,0.0000018721,0.0000018711,0.0000018702,0.0000018691, +0.0000018678,0.0000018665,0.0000018656,0.0000018650,0.0000018654, +0.0000018670,0.0000018691,0.0000018705,0.0000018712,0.0000018711, +0.0000018708,0.0000018699,0.0000018683,0.0000018661,0.0000018636, +0.0000018608,0.0000018575,0.0000018544,0.0000018515,0.0000018488, +0.0000018464,0.0000018443,0.0000018423,0.0000018402,0.0000018382, +0.0000018366,0.0000018354,0.0000018344,0.0000018337,0.0000018335, +0.0000018336,0.0000018340,0.0000018351,0.0000018361,0.0000018372, +0.0000018374,0.0000018378,0.0000018377,0.0000018375,0.0000018374, +0.0000018374,0.0000018374,0.0000018375,0.0000018377,0.0000018382, +0.0000018392,0.0000018406,0.0000018419,0.0000018432,0.0000018443, +0.0000018450,0.0000018454,0.0000018457,0.0000018457,0.0000018455, +0.0000018454,0.0000018454,0.0000018452,0.0000018447,0.0000018438, +0.0000018427,0.0000018413,0.0000018395,0.0000018376,0.0000018354, +0.0000018333,0.0000018316,0.0000018299,0.0000018283,0.0000018271, +0.0000018262,0.0000018256,0.0000018251,0.0000018250,0.0000018257, +0.0000018269,0.0000018283,0.0000018296,0.0000018310,0.0000018326, +0.0000018343,0.0000018359,0.0000018371,0.0000018380,0.0000018389, +0.0000018401,0.0000018415,0.0000018431,0.0000018450,0.0000018469, +0.0000018488,0.0000018509,0.0000018530,0.0000018549,0.0000018559, +0.0000018559,0.0000018544,0.0000018533,0.0000018510,0.0000018473, +0.0000018412,0.0000018327,0.0000018226,0.0000018130,0.0000018050, +0.0000018014,0.0000017993,0.0000017996,0.0000018015,0.0000018049, +0.0000018090,0.0000018133,0.0000018173,0.0000018197,0.0000018202, +0.0000018195,0.0000018182,0.0000018168,0.0000018161,0.0000018169, +0.0000018192,0.0000018236,0.0000018301,0.0000018383,0.0000018477, +0.0000018574,0.0000018666,0.0000018748,0.0000018814,0.0000018863, +0.0000018895,0.0000018917,0.0000018932,0.0000018942,0.0000018950, +0.0000018960,0.0000018971,0.0000018984,0.0000018998,0.0000019012, +0.0000019027,0.0000019040,0.0000019051,0.0000019058,0.0000019065, +0.0000019074,0.0000019087,0.0000019100,0.0000019113,0.0000019125, +0.0000019142,0.0000019164,0.0000019189,0.0000019217,0.0000019244, +0.0000019269,0.0000019289,0.0000019303,0.0000019308,0.0000019303, +0.0000019291,0.0000019273,0.0000019250,0.0000019226,0.0000019203, +0.0000019178,0.0000019149,0.0000019118,0.0000019088,0.0000019060, +0.0000019035,0.0000019017,0.0000019007,0.0000019007,0.0000019022, +0.0000019057,0.0000019113,0.0000019186,0.0000019271,0.0000019368, +0.0000019479,0.0000019601,0.0000019726,0.0000019840,0.0000019940, +0.0000020019,0.0000020063,0.0000020069,0.0000020069,0.0000020085, +0.0000020111,0.0000020138,0.0000020157,0.0000020153,0.0000020133, +0.0000020105,0.0000020072,0.0000020033,0.0000019994,0.0000019984, +0.0000020037,0.0000020105,0.0000020106,0.0000020084,0.0000020121, +0.0000020236,0.0000020327,0.0000020335,0.0000020305,0.0000020273, +0.0000020254,0.0000020234,0.0000020188,0.0000020125,0.0000020083, +0.0000020054,0.0000020016,0.0000020003,0.0000020041,0.0000020098, +0.0000020155,0.0000020234,0.0000020308,0.0000020328,0.0000020300, +0.0000020251,0.0000020190,0.0000020121,0.0000020049,0.0000019996, +0.0000019977,0.0000019986,0.0000020011,0.0000020036,0.0000020053, +0.0000020060,0.0000020065,0.0000020074,0.0000020089,0.0000020110, +0.0000020135,0.0000020163,0.0000020195,0.0000020228,0.0000020260, +0.0000020287,0.0000020311,0.0000020332,0.0000020349,0.0000020359, +0.0000020359,0.0000020352,0.0000020340,0.0000020329,0.0000020321, +0.0000020319,0.0000020326,0.0000020340,0.0000020349,0.0000020349, +0.0000020338,0.0000020317,0.0000020292,0.0000020266,0.0000020241, +0.0000020217,0.0000020192,0.0000020165,0.0000020141,0.0000020119, +0.0000020098,0.0000020080,0.0000020064,0.0000020051,0.0000020043, +0.0000020040,0.0000020039,0.0000020039,0.0000020037,0.0000020032, +0.0000020028,0.0000020025,0.0000020018,0.0000020005,0.0000019993, +0.0000019987,0.0000019985,0.0000019984,0.0000019985,0.0000019987, +0.0000019986,0.0000019982,0.0000019981,0.0000019983,0.0000019985, +0.0000019984,0.0000019978,0.0000019967,0.0000019953,0.0000019940, +0.0000019925,0.0000019911,0.0000019895,0.0000019876,0.0000019860, +0.0000019849,0.0000019841,0.0000019835,0.0000019833,0.0000019836, +0.0000019847,0.0000019859,0.0000019869,0.0000019877,0.0000019884, +0.0000019887,0.0000019885,0.0000019878,0.0000019867,0.0000019851, +0.0000019832,0.0000019810,0.0000019789,0.0000019770,0.0000019753, +0.0000019740,0.0000019731,0.0000019729,0.0000019730,0.0000019731, +0.0000019729,0.0000019723,0.0000019712,0.0000019697,0.0000019677, +0.0000019652,0.0000019625,0.0000019598,0.0000019571,0.0000019546, +0.0000019523,0.0000019502,0.0000019488,0.0000019481,0.0000019479, +0.0000019479,0.0000019482,0.0000019488,0.0000019494,0.0000019502, +0.0000019511,0.0000019520,0.0000019530,0.0000019542,0.0000019554, +0.0000019568,0.0000019583,0.0000019599,0.0000019614,0.0000019631, +0.0000019647,0.0000019663,0.0000019674,0.0000019686,0.0000019699, +0.0000019712,0.0000019728,0.0000019748,0.0000019771,0.0000019793, +0.0000019814,0.0000019835,0.0000019856,0.0000019876,0.0000019893, +0.0000019909,0.0000019923,0.0000019937,0.0000019948,0.0000019957, +0.0000019965,0.0000019970,0.0000019973,0.0000019973,0.0000019973, +0.0000019975,0.0000019983,0.0000019991,0.0000020003,0.0000020015, +0.0000020029,0.0000020041,0.0000020056,0.0000020076,0.0000020097, +0.0000020116,0.0000020132,0.0000020146,0.0000020164,0.0000020186, +0.0000020210,0.0000020236,0.0000020260,0.0000020285,0.0000020310, +0.0000020335,0.0000020355,0.0000020368,0.0000020378,0.0000020391, +0.0000020402,0.0000020404,0.0000020403,0.0000020404,0.0000020399, +0.0000020398,0.0000020408,0.0000020422,0.0000020444,0.0000020471, +0.0000020496,0.0000020516,0.0000020537,0.0000020560,0.0000020579, +0.0000020594,0.0000020607,0.0000020618,0.0000020625,0.0000020630, +0.0000020634,0.0000020629,0.0000020623,0.0000020625,0.0000020633, +0.0000020641,0.0000020642,0.0000020638,0.0000020631,0.0000020623, +0.0000020613,0.0000020604,0.0000020594,0.0000020582,0.0000020572, +0.0000020560,0.0000020542,0.0000020517,0.0000020491,0.0000020462, +0.0000020433,0.0000020409,0.0000020393,0.0000020390,0.0000020397, +0.0000020409,0.0000020427,0.0000020449,0.0000020467,0.0000020477, +0.0000020483,0.0000020485,0.0000020485,0.0000020482,0.0000020477, +0.0000020471,0.0000020463,0.0000020453,0.0000020440,0.0000020428, +0.0000020420,0.0000020412,0.0000020404,0.0000020389,0.0000020371, +0.0000020358,0.0000020349,0.0000020341,0.0000020332,0.0000020325, +0.0000020314,0.0000020312,0.0000020324,0.0000020350,0.0000020386, +0.0000020424,0.0000020453,0.0000020471,0.0000020483,0.0000020495, +0.0000020514,0.0000020544,0.0000020576,0.0000020606,0.0000020616, +0.0000020604,0.0000020561,0.0000020499,0.0000020433,0.0000020375, +0.0000020336,0.0000020319,0.0000020319,0.0000020323,0.0000020321, +0.0000020311,0.0000020291,0.0000020267,0.0000020245,0.0000020227, +0.0000020222,0.0000020219,0.0000020219,0.0000020226,0.0000020230, +0.0000020231,0.0000020227,0.0000020221,0.0000020215,0.0000020212, +0.0000020213,0.0000020216,0.0000020226,0.0000020239,0.0000020249, +0.0000020251,0.0000020247,0.0000020240,0.0000020229,0.0000020217, +0.0000020210,0.0000020209,0.0000020214,0.0000020223,0.0000020235, +0.0000020252,0.0000020277,0.0000020310,0.0000020346,0.0000020381, +0.0000020412,0.0000020437,0.0000020457,0.0000020465,0.0000020459, +0.0000020436,0.0000020412,0.0000020380,0.0000020352,0.0000020330, +0.0000020314,0.0000020308,0.0000020308,0.0000020313,0.0000020326, +0.0000020345,0.0000020363,0.0000020383,0.0000020406,0.0000020424, +0.0000020433,0.0000020433,0.0000020425,0.0000020411,0.0000020393, +0.0000020372,0.0000020345,0.0000020314,0.0000020284,0.0000020254, +0.0000020221,0.0000020185,0.0000020147,0.0000020108,0.0000020072, +0.0000020043,0.0000020019,0.0000019994,0.0000019965,0.0000019935, +0.0000019909,0.0000019885,0.0000019863,0.0000019843,0.0000019820, +0.0000019789,0.0000019755,0.0000019720,0.0000019683,0.0000019645, +0.0000019611,0.0000019581,0.0000019555,0.0000019534,0.0000019519, +0.0000019513,0.0000019515,0.0000019523,0.0000019537,0.0000019553, +0.0000019571,0.0000019587,0.0000019601,0.0000019610,0.0000019611, +0.0000019607,0.0000019594,0.0000019567,0.0000019528,0.0000019484, +0.0000019439,0.0000019388,0.0000019330,0.0000019270,0.0000019216, +0.0000019175,0.0000019136,0.0000019108,0.0000019090,0.0000019087, +0.0000019101,0.0000019125,0.0000019154,0.0000019180,0.0000019199, +0.0000019217,0.0000019241,0.0000019269,0.0000019297,0.0000019324, +0.0000019349,0.0000019373,0.0000019392,0.0000019401,0.0000019400, +0.0000019392,0.0000019381,0.0000019368,0.0000019351,0.0000019328, +0.0000019302,0.0000019281,0.0000019264,0.0000019246,0.0000019231, +0.0000019228,0.0000019241,0.0000019264,0.0000019290,0.0000019314, +0.0000019335,0.0000019353,0.0000019371,0.0000019386,0.0000019396, +0.0000019403,0.0000019411,0.0000019425,0.0000019446,0.0000019474, +0.0000019505,0.0000019536,0.0000019566,0.0000019591,0.0000019611, +0.0000019628,0.0000019644,0.0000019657,0.0000019664,0.0000019671, +0.0000019661,0.0000019640,0.0000019615,0.0000019602,0.0000019587, +0.0000019588,0.0000019602,0.0000019622,0.0000019641,0.0000019663, +0.0000019685,0.0000019711,0.0000019743,0.0000019781,0.0000019824, +0.0000019862,0.0000019884,0.0000019886,0.0000019875,0.0000019854, +0.0000019832,0.0000019816,0.0000019809,0.0000019807,0.0000019791, +0.0000019779,0.0000019745,0.0000019694,0.0000019635,0.0000019582, +0.0000019537,0.0000019516,0.0000019506,0.0000019514,0.0000019534, +0.0000019556,0.0000019573,0.0000019579,0.0000019569,0.0000019557, +0.0000019534,0.0000019502,0.0000019477,0.0000019457,0.0000019458, +0.0000019468,0.0000019494,0.0000019534,0.0000019582,0.0000019632, +0.0000019678,0.0000019712,0.0000019729,0.0000019730,0.0000019722, +0.0000019708,0.0000019699,0.0000019703,0.0000019720,0.0000019747, +0.0000019779,0.0000019817,0.0000019856,0.0000019894,0.0000019926, +0.0000019948,0.0000019962,0.0000019967,0.0000019961,0.0000019941, +0.0000019910,0.0000019874,0.0000019840,0.0000019814,0.0000019796, +0.0000019784,0.0000019780,0.0000019782,0.0000019789,0.0000019794, +0.0000019792,0.0000019788,0.0000019783,0.0000019779,0.0000019775, +0.0000019767,0.0000019750,0.0000019726,0.0000019702,0.0000019678, +0.0000019649,0.0000019618,0.0000019588,0.0000019567,0.0000019554, +0.0000019553,0.0000019567,0.0000019590,0.0000019619,0.0000019648, +0.0000019671,0.0000019688,0.0000019702,0.0000019714,0.0000019727, +0.0000019742,0.0000019758,0.0000019771,0.0000019782,0.0000019784, +0.0000019765,0.0000019726,0.0000019686,0.0000019660,0.0000019649, +0.0000019644,0.0000019631,0.0000019603,0.0000019558,0.0000019504, +0.0000019448,0.0000019402,0.0000019367,0.0000019339,0.0000019314, +0.0000019296,0.0000019277,0.0000019255,0.0000019230,0.0000019193, +0.0000019143,0.0000019087,0.0000019026,0.0000018955,0.0000018878, +0.0000018806,0.0000018741,0.0000018681,0.0000018634,0.0000018605, +0.0000018596,0.0000018601,0.0000018615,0.0000018646,0.0000018698, +0.0000018747,0.0000018762,0.0000018746,0.0000018720,0.0000018707, +0.0000018717,0.0000018739,0.0000018757,0.0000018764,0.0000018774, +0.0000018797,0.0000018814,0.0000018805,0.0000018781,0.0000018753, +0.0000018737,0.0000018735,0.0000018743,0.0000018761,0.0000018782, +0.0000018805,0.0000018825,0.0000018844,0.0000018860,0.0000018860, +0.0000018844,0.0000018831,0.0000018819,0.0000018800,0.0000018778, +0.0000018748,0.0000018713,0.0000018674,0.0000018634,0.0000018601, +0.0000018579,0.0000018565,0.0000018551,0.0000018535,0.0000018527, +0.0000018523,0.0000018525,0.0000018530,0.0000018535,0.0000018541, +0.0000018547,0.0000018556,0.0000018570,0.0000018591,0.0000018612, +0.0000018634,0.0000018655,0.0000018670,0.0000018678,0.0000018689, +0.0000018701,0.0000018712,0.0000018726,0.0000018745,0.0000018765, +0.0000018787,0.0000018810,0.0000018840,0.0000018881,0.0000018933, +0.0000019000,0.0000019084,0.0000019189,0.0000019307,0.0000019429, +0.0000019545,0.0000019650,0.0000019735,0.0000019797,0.0000019837, +0.0000019864,0.0000019883,0.0000019898,0.0000019897,0.0000019883, +0.0000019830,0.0000019736,0.0000019604,0.0000019455,0.0000019320, +0.0000019222,0.0000019169,0.0000019145,0.0000019136,0.0000019140, +0.0000019153,0.0000019160,0.0000019165,0.0000019157,0.0000019142, +0.0000019128,0.0000019121,0.0000019119,0.0000019118,0.0000019115, +0.0000019107,0.0000019099,0.0000019095,0.0000019094,0.0000019098, +0.0000019103,0.0000019103,0.0000019094,0.0000019071,0.0000019035, +0.0000018993,0.0000018948,0.0000018890,0.0000018817,0.0000018747, +0.0000018705,0.0000018703,0.0000018738,0.0000018812,0.0000018903, +0.0000018978,0.0000019016,0.0000019017,0.0000019007,0.0000018996, +0.0000018991,0.0000018985,0.0000018970,0.0000018952,0.0000018935, +0.0000018894,0.0000018795,0.0000018652,0.0000018528,0.0000018474, +0.0000018470,0.0000018486,0.0000018491,0.0000018491,0.0000018498, +0.0000018506,0.0000018502,0.0000018490,0.0000018463,0.0000018423, +0.0000018381,0.0000018341,0.0000018305,0.0000018272,0.0000018245, +0.0000018226,0.0000018215,0.0000018205,0.0000018194,0.0000018184, +0.0000018174,0.0000018161,0.0000018154,0.0000018158,0.0000018175, +0.0000018197,0.0000018219,0.0000018233,0.0000018241,0.0000018276, +0.0000018286,0.0000018200,0.0000018094,0.0000018067,0.0000018112, +0.0000018160,0.0000018163,0.0000018153,0.0000018143,0.0000018134, +0.0000018124,0.0000018113,0.0000018099,0.0000018082,0.0000018065, +0.0000018053,0.0000018041,0.0000018030,0.0000018020,0.0000018009, +0.0000017996,0.0000017980,0.0000017960,0.0000017936,0.0000017909, +0.0000017879,0.0000017846,0.0000017818,0.0000017800,0.0000017792, +0.0000017787,0.0000017783,0.0000017780,0.0000017774,0.0000017767, +0.0000017761,0.0000017760,0.0000017764,0.0000017775,0.0000017788, +0.0000017803,0.0000017825,0.0000017847,0.0000017867,0.0000017886, +0.0000017904,0.0000017927,0.0000017954,0.0000017980,0.0000018001, +0.0000018015,0.0000018021,0.0000018022,0.0000018016,0.0000018011, +0.0000018010,0.0000018015,0.0000018019,0.0000018002,0.0000017929, +0.0000017812,0.0000017728,0.0000017722,0.0000017823,0.0000017955, +0.0000018025,0.0000018046,0.0000018074,0.0000018157,0.0000018285, +0.0000018398,0.0000018440,0.0000018438,0.0000018428,0.0000018410, +0.0000018391,0.0000018395,0.0000018434,0.0000018489,0.0000018548, +0.0000018615,0.0000018680,0.0000018727,0.0000018750,0.0000018759, +0.0000018762,0.0000018755,0.0000018734,0.0000018709,0.0000018693, +0.0000018686,0.0000018688,0.0000018695,0.0000018710,0.0000018735, +0.0000018767,0.0000018808,0.0000018856,0.0000018900,0.0000018936, +0.0000018967,0.0000018991,0.0000019007,0.0000019017,0.0000019019, +0.0000019015,0.0000018985,0.0000018897,0.0000018771,0.0000018679, +0.0000018656,0.0000018679,0.0000018700,0.0000018684,0.0000018673, +0.0000018733,0.0000018749,0.0000018719,0.0000018726,0.0000018752, +0.0000018776,0.0000018901,0.0000019032,0.0000018996,0.0000018887, +0.0000018863,0.0000018917,0.0000019010,0.0000019083,0.0000019101, +0.0000019083,0.0000019058,0.0000019015,0.0000018905,0.0000018790, +0.0000018751,0.0000018726,0.0000018656,0.0000018578,0.0000018533, +0.0000018519,0.0000018518,0.0000018517,0.0000018514,0.0000018496, +0.0000018454,0.0000018409,0.0000018389,0.0000018391,0.0000018404, +0.0000018418,0.0000018431,0.0000018440,0.0000018447,0.0000018452, +0.0000018456,0.0000018457,0.0000018454,0.0000018450,0.0000018443, +0.0000018435,0.0000018426,0.0000018416,0.0000018405,0.0000018396, +0.0000018390,0.0000018389,0.0000018392,0.0000018401,0.0000018418, +0.0000018438,0.0000018459,0.0000018475,0.0000018486,0.0000018494, +0.0000018498,0.0000018496,0.0000018487,0.0000018472,0.0000018450, +0.0000018424,0.0000018395,0.0000018363,0.0000018327,0.0000018291, +0.0000018255,0.0000018217,0.0000018179,0.0000018138,0.0000018088, +0.0000018033,0.0000017973,0.0000017914,0.0000017869,0.0000017853, +0.0000017865,0.0000017888,0.0000017911,0.0000017928,0.0000017936, +0.0000017943,0.0000017951,0.0000017965,0.0000017988,0.0000018017, +0.0000018059,0.0000018118,0.0000018192,0.0000018272,0.0000018347, +0.0000018406,0.0000018443,0.0000018456,0.0000018447,0.0000018424, +0.0000018394,0.0000018361,0.0000018326,0.0000018290,0.0000018252, +0.0000018212,0.0000018172,0.0000018134,0.0000018097,0.0000018063, +0.0000018033,0.0000018008,0.0000017988,0.0000017972,0.0000017960, +0.0000017952,0.0000017946,0.0000017938,0.0000017927,0.0000017915, +0.0000017899,0.0000017883,0.0000017867,0.0000017855,0.0000017848, +0.0000017848,0.0000017852,0.0000017858,0.0000017865,0.0000017871, +0.0000017876,0.0000017880,0.0000017883,0.0000017888,0.0000017896, +0.0000017903,0.0000017906,0.0000017906,0.0000017902,0.0000017892, +0.0000017879,0.0000017865,0.0000017852,0.0000017837,0.0000017823, +0.0000017816,0.0000017813,0.0000017817,0.0000017828,0.0000017842, +0.0000017853,0.0000017862,0.0000017869,0.0000017877,0.0000017890, +0.0000017903,0.0000017917,0.0000017933,0.0000017951,0.0000017971, +0.0000017993,0.0000018013,0.0000018031,0.0000018049,0.0000018069, +0.0000018086,0.0000018097,0.0000018103,0.0000018082,0.0000018090, +0.0000018095,0.0000018100,0.0000018105,0.0000018109,0.0000018110, +0.0000018111,0.0000018110,0.0000018107,0.0000018098,0.0000018082, +0.0000018059,0.0000018036,0.0000018013,0.0000018000,0.0000017998, +0.0000018009,0.0000018032,0.0000018064,0.0000018107,0.0000018160, +0.0000018222,0.0000018289,0.0000018359,0.0000018422,0.0000018473, +0.0000018504,0.0000018512,0.0000018510,0.0000018497,0.0000018470, +0.0000018435,0.0000018400,0.0000018372,0.0000018352,0.0000018341, +0.0000018333,0.0000018317,0.0000018288,0.0000018243,0.0000018188, +0.0000018129,0.0000018080,0.0000018049,0.0000018043,0.0000018053, +0.0000018070,0.0000018093,0.0000018114,0.0000018133,0.0000018154, +0.0000018178,0.0000018200,0.0000018215,0.0000018219,0.0000018218, +0.0000018217,0.0000018221,0.0000018231,0.0000018247,0.0000018268, +0.0000018291,0.0000018316,0.0000018338,0.0000018356,0.0000018367, +0.0000018372,0.0000018373,0.0000018377,0.0000018386,0.0000018403, +0.0000018427,0.0000018457,0.0000018487,0.0000018515,0.0000018536, +0.0000018548,0.0000018557,0.0000018568,0.0000018585,0.0000018610, +0.0000018642,0.0000018681,0.0000018723,0.0000018761,0.0000018795, +0.0000018824,0.0000018846,0.0000018863,0.0000018877,0.0000018892, +0.0000018908,0.0000018928,0.0000018950,0.0000018969,0.0000018970, +0.0000018948,0.0000018916,0.0000018878,0.0000018843,0.0000018814, +0.0000018788,0.0000018768,0.0000018750,0.0000018735,0.0000018721, +0.0000018709,0.0000018698,0.0000018687,0.0000018674,0.0000018661, +0.0000018650,0.0000018649,0.0000018658,0.0000018674,0.0000018690, +0.0000018699,0.0000018703,0.0000018702,0.0000018696,0.0000018686, +0.0000018671,0.0000018650,0.0000018624,0.0000018594,0.0000018562, +0.0000018531,0.0000018499,0.0000018470,0.0000018445,0.0000018424, +0.0000018403,0.0000018384,0.0000018371,0.0000018365,0.0000018358, +0.0000018350,0.0000018342,0.0000018335,0.0000018333,0.0000018336, +0.0000018343,0.0000018353,0.0000018364,0.0000018375,0.0000018382, +0.0000018390,0.0000018400,0.0000018410,0.0000018419,0.0000018425, +0.0000018430,0.0000018435,0.0000018441,0.0000018448,0.0000018457, +0.0000018465,0.0000018470,0.0000018470,0.0000018469,0.0000018466, +0.0000018460,0.0000018453,0.0000018447,0.0000018443,0.0000018439, +0.0000018433,0.0000018425,0.0000018415,0.0000018404,0.0000018389, +0.0000018373,0.0000018359,0.0000018348,0.0000018337,0.0000018326, +0.0000018314,0.0000018303,0.0000018296,0.0000018291,0.0000018287, +0.0000018284,0.0000018285,0.0000018288,0.0000018291,0.0000018294, +0.0000018296,0.0000018301,0.0000018310,0.0000018321,0.0000018330, +0.0000018339,0.0000018347,0.0000018356,0.0000018367,0.0000018379, +0.0000018391,0.0000018404,0.0000018419,0.0000018437,0.0000018458, +0.0000018480,0.0000018499,0.0000018511,0.0000018518,0.0000018519, +0.0000018509,0.0000018500,0.0000018476,0.0000018432,0.0000018365, +0.0000018277,0.0000018179,0.0000018089,0.0000018010,0.0000017974, +0.0000017953,0.0000017957,0.0000017979,0.0000018021,0.0000018070, +0.0000018113,0.0000018144,0.0000018161,0.0000018162,0.0000018154, +0.0000018142,0.0000018131,0.0000018126,0.0000018134,0.0000018156, +0.0000018194,0.0000018245,0.0000018310,0.0000018384,0.0000018464, +0.0000018544,0.0000018618,0.0000018685,0.0000018741,0.0000018785, +0.0000018815,0.0000018834,0.0000018842,0.0000018844,0.0000018842, +0.0000018840,0.0000018839,0.0000018841,0.0000018843,0.0000018845, +0.0000018847,0.0000018852,0.0000018861,0.0000018875,0.0000018890, +0.0000018904,0.0000018921,0.0000018943,0.0000018966,0.0000018994, +0.0000019023,0.0000019053,0.0000019078,0.0000019101,0.0000019119, +0.0000019129,0.0000019131,0.0000019127,0.0000019117,0.0000019102, +0.0000019086,0.0000019069,0.0000019048,0.0000019021,0.0000018991, +0.0000018962,0.0000018937,0.0000018915,0.0000018895,0.0000018879, +0.0000018873,0.0000018880,0.0000018910,0.0000018964,0.0000019040, +0.0000019135,0.0000019246,0.0000019368,0.0000019497,0.0000019629, +0.0000019754,0.0000019865,0.0000019959,0.0000020022,0.0000020041, +0.0000020039,0.0000020050,0.0000020078,0.0000020109,0.0000020133, +0.0000020139,0.0000020131,0.0000020110,0.0000020073,0.0000020024, +0.0000019982,0.0000019988,0.0000020056,0.0000020102,0.0000020089, +0.0000020068,0.0000020115,0.0000020234,0.0000020320,0.0000020324, +0.0000020294,0.0000020259,0.0000020234,0.0000020208,0.0000020164, +0.0000020108,0.0000020071,0.0000020045,0.0000020009,0.0000019996, +0.0000020032,0.0000020089,0.0000020139,0.0000020202,0.0000020268, +0.0000020292,0.0000020278,0.0000020239,0.0000020191,0.0000020138, +0.0000020081,0.0000020022,0.0000019976,0.0000019959,0.0000019964, +0.0000019983,0.0000020004,0.0000020020,0.0000020030,0.0000020035, +0.0000020037,0.0000020038,0.0000020043,0.0000020050,0.0000020059, +0.0000020071,0.0000020086,0.0000020106,0.0000020133,0.0000020170, +0.0000020214,0.0000020259,0.0000020297,0.0000020318,0.0000020322, +0.0000020318,0.0000020305,0.0000020289,0.0000020271,0.0000020260, +0.0000020253,0.0000020250,0.0000020247,0.0000020241,0.0000020230, +0.0000020215,0.0000020197,0.0000020178,0.0000020156,0.0000020133, +0.0000020109,0.0000020086,0.0000020068,0.0000020053,0.0000020038, +0.0000020024,0.0000020015,0.0000020007,0.0000019998,0.0000019989, +0.0000019979,0.0000019972,0.0000019967,0.0000019959,0.0000019945, +0.0000019931,0.0000019921,0.0000019916,0.0000019914,0.0000019914, +0.0000019915,0.0000019913,0.0000019909,0.0000019906,0.0000019906, +0.0000019909,0.0000019911,0.0000019911,0.0000019907,0.0000019905, +0.0000019900,0.0000019891,0.0000019885,0.0000019877,0.0000019864, +0.0000019852,0.0000019844,0.0000019837,0.0000019828,0.0000019822, +0.0000019821,0.0000019828,0.0000019837,0.0000019845,0.0000019853, +0.0000019858,0.0000019861,0.0000019858,0.0000019849,0.0000019836, +0.0000019821,0.0000019805,0.0000019784,0.0000019762,0.0000019741, +0.0000019720,0.0000019702,0.0000019686,0.0000019676,0.0000019673, +0.0000019675,0.0000019678,0.0000019678,0.0000019673,0.0000019663, +0.0000019648,0.0000019628,0.0000019606,0.0000019581,0.0000019557, +0.0000019534,0.0000019512,0.0000019490,0.0000019474,0.0000019464, +0.0000019458,0.0000019457,0.0000019460,0.0000019465,0.0000019471, +0.0000019478,0.0000019486,0.0000019495,0.0000019504,0.0000019512, +0.0000019521,0.0000019531,0.0000019543,0.0000019555,0.0000019564, +0.0000019575,0.0000019586,0.0000019596,0.0000019607,0.0000019620, +0.0000019635,0.0000019649,0.0000019665,0.0000019682,0.0000019702, +0.0000019724,0.0000019743,0.0000019761,0.0000019779,0.0000019796, +0.0000019814,0.0000019831,0.0000019847,0.0000019863,0.0000019877, +0.0000019890,0.0000019901,0.0000019911,0.0000019919,0.0000019924, +0.0000019927,0.0000019931,0.0000019937,0.0000019943,0.0000019951, +0.0000019957,0.0000019963,0.0000019966,0.0000019968,0.0000019970, +0.0000019974,0.0000019977,0.0000019975,0.0000019972,0.0000019972, +0.0000019977,0.0000019983,0.0000019998,0.0000020020,0.0000020047, +0.0000020080,0.0000020116,0.0000020152,0.0000020188,0.0000020226, +0.0000020266,0.0000020298,0.0000020322,0.0000020342,0.0000020358, +0.0000020369,0.0000020379,0.0000020394,0.0000020413,0.0000020438, +0.0000020468,0.0000020493,0.0000020514,0.0000020533,0.0000020550, +0.0000020561,0.0000020569,0.0000020575,0.0000020582,0.0000020589, +0.0000020598,0.0000020607,0.0000020610,0.0000020611,0.0000020620, +0.0000020634,0.0000020646,0.0000020651,0.0000020650,0.0000020644, +0.0000020635,0.0000020625,0.0000020615,0.0000020603,0.0000020590, +0.0000020576,0.0000020559,0.0000020537,0.0000020513,0.0000020489, +0.0000020462,0.0000020434,0.0000020412,0.0000020400,0.0000020400, +0.0000020407,0.0000020419,0.0000020436,0.0000020458,0.0000020477, +0.0000020487,0.0000020492,0.0000020492,0.0000020482,0.0000020466, +0.0000020448,0.0000020432,0.0000020418,0.0000020404,0.0000020388, +0.0000020375,0.0000020364,0.0000020359,0.0000020360,0.0000020364, +0.0000020364,0.0000020359,0.0000020352,0.0000020341,0.0000020330, +0.0000020318,0.0000020304,0.0000020294,0.0000020285,0.0000020283, +0.0000020294,0.0000020318,0.0000020352,0.0000020397,0.0000020437, +0.0000020460,0.0000020473,0.0000020487,0.0000020510,0.0000020538, +0.0000020567,0.0000020589,0.0000020592,0.0000020582,0.0000020544, +0.0000020488,0.0000020435,0.0000020396,0.0000020375,0.0000020367, +0.0000020363,0.0000020357,0.0000020344,0.0000020328,0.0000020312, +0.0000020292,0.0000020269,0.0000020248,0.0000020233,0.0000020230, +0.0000020227,0.0000020220,0.0000020209,0.0000020200,0.0000020192, +0.0000020185,0.0000020179,0.0000020179,0.0000020185,0.0000020195, +0.0000020205,0.0000020212,0.0000020216,0.0000020215,0.0000020209, +0.0000020202,0.0000020191,0.0000020179,0.0000020171,0.0000020168, +0.0000020168,0.0000020169,0.0000020181,0.0000020203,0.0000020230, +0.0000020258,0.0000020288,0.0000020317,0.0000020344,0.0000020363, +0.0000020368,0.0000020362,0.0000020346,0.0000020323,0.0000020301, +0.0000020281,0.0000020266,0.0000020259,0.0000020258,0.0000020261, +0.0000020271,0.0000020287,0.0000020309,0.0000020336,0.0000020366, +0.0000020392,0.0000020405,0.0000020406,0.0000020402,0.0000020391, +0.0000020374,0.0000020356,0.0000020330,0.0000020297,0.0000020260, +0.0000020218,0.0000020175,0.0000020130,0.0000020083,0.0000020036, +0.0000019996,0.0000019966,0.0000019943,0.0000019917,0.0000019889, +0.0000019864,0.0000019839,0.0000019818,0.0000019800,0.0000019781, +0.0000019758,0.0000019731,0.0000019702,0.0000019670,0.0000019634, +0.0000019598,0.0000019567,0.0000019542,0.0000019521,0.0000019503, +0.0000019486,0.0000019477,0.0000019472,0.0000019473,0.0000019482, +0.0000019497,0.0000019516,0.0000019536,0.0000019552,0.0000019561, +0.0000019562,0.0000019557,0.0000019539,0.0000019508,0.0000019468, +0.0000019427,0.0000019383,0.0000019339,0.0000019294,0.0000019248, +0.0000019201,0.0000019157,0.0000019117,0.0000019080,0.0000019061, +0.0000019047,0.0000019048,0.0000019060,0.0000019077,0.0000019094, +0.0000019108,0.0000019126,0.0000019151,0.0000019178,0.0000019207, +0.0000019236,0.0000019266,0.0000019292,0.0000019311,0.0000019316, +0.0000019307,0.0000019286,0.0000019257,0.0000019224,0.0000019191, +0.0000019165,0.0000019156,0.0000019155,0.0000019154,0.0000019150, +0.0000019149,0.0000019161,0.0000019175,0.0000019188,0.0000019200, +0.0000019211,0.0000019223,0.0000019237,0.0000019252,0.0000019266, +0.0000019277,0.0000019285,0.0000019291,0.0000019300,0.0000019316, +0.0000019342,0.0000019378,0.0000019422,0.0000019469,0.0000019510, +0.0000019543,0.0000019569,0.0000019587,0.0000019607,0.0000019630, +0.0000019649,0.0000019657,0.0000019654,0.0000019634,0.0000019603, +0.0000019565,0.0000019534,0.0000019518,0.0000019519,0.0000019532, +0.0000019562,0.0000019599,0.0000019635,0.0000019668,0.0000019703, +0.0000019741,0.0000019773,0.0000019793,0.0000019800,0.0000019793, +0.0000019774,0.0000019753,0.0000019740,0.0000019737,0.0000019741, +0.0000019749,0.0000019756,0.0000019745,0.0000019718,0.0000019679, +0.0000019629,0.0000019574,0.0000019526,0.0000019494,0.0000019478, +0.0000019483,0.0000019500,0.0000019518,0.0000019529,0.0000019535, +0.0000019535,0.0000019525,0.0000019515,0.0000019505,0.0000019492, +0.0000019480,0.0000019475,0.0000019474,0.0000019488,0.0000019520, +0.0000019566,0.0000019611,0.0000019649,0.0000019678,0.0000019691, +0.0000019690,0.0000019683,0.0000019672,0.0000019665,0.0000019663, +0.0000019666,0.0000019675,0.0000019693,0.0000019717,0.0000019743, +0.0000019767,0.0000019790,0.0000019813,0.0000019835,0.0000019848, +0.0000019847,0.0000019833,0.0000019813,0.0000019795,0.0000019783, +0.0000019776,0.0000019772,0.0000019776,0.0000019786,0.0000019796, +0.0000019802,0.0000019805,0.0000019806,0.0000019804,0.0000019799, +0.0000019789,0.0000019771,0.0000019744,0.0000019711,0.0000019676, +0.0000019638,0.0000019601,0.0000019569,0.0000019546,0.0000019526, +0.0000019514,0.0000019516,0.0000019528,0.0000019548,0.0000019575, +0.0000019604,0.0000019629,0.0000019649,0.0000019668,0.0000019687, +0.0000019708,0.0000019730,0.0000019748,0.0000019756,0.0000019749, +0.0000019716,0.0000019667,0.0000019624,0.0000019601,0.0000019590, +0.0000019584,0.0000019573,0.0000019545,0.0000019500,0.0000019450, +0.0000019404,0.0000019366,0.0000019334,0.0000019305,0.0000019282, +0.0000019267,0.0000019248,0.0000019226,0.0000019200,0.0000019165, +0.0000019122,0.0000019069,0.0000019011,0.0000018945,0.0000018868, +0.0000018793,0.0000018730,0.0000018674,0.0000018629,0.0000018599, +0.0000018581,0.0000018569,0.0000018570,0.0000018582,0.0000018613, +0.0000018666,0.0000018716,0.0000018727,0.0000018709,0.0000018689, +0.0000018684,0.0000018697,0.0000018719,0.0000018729,0.0000018732, +0.0000018746,0.0000018762,0.0000018768,0.0000018755,0.0000018725, +0.0000018702,0.0000018692,0.0000018697,0.0000018709,0.0000018729, +0.0000018753,0.0000018774,0.0000018797,0.0000018813,0.0000018811, +0.0000018803,0.0000018798,0.0000018788,0.0000018775,0.0000018757, +0.0000018733,0.0000018705,0.0000018665,0.0000018622,0.0000018582, +0.0000018552,0.0000018529,0.0000018509,0.0000018493,0.0000018480, +0.0000018471,0.0000018468,0.0000018468,0.0000018468,0.0000018471, +0.0000018478,0.0000018489,0.0000018505,0.0000018523,0.0000018544, +0.0000018568,0.0000018590,0.0000018604,0.0000018616,0.0000018628, +0.0000018638,0.0000018649,0.0000018663,0.0000018682,0.0000018705, +0.0000018730,0.0000018757,0.0000018785,0.0000018812,0.0000018840, +0.0000018876,0.0000018925,0.0000018994,0.0000019087,0.0000019200, +0.0000019331,0.0000019470,0.0000019602,0.0000019711,0.0000019790, +0.0000019838,0.0000019864,0.0000019876,0.0000019882,0.0000019874, +0.0000019855,0.0000019797,0.0000019696,0.0000019558,0.0000019409, +0.0000019278,0.0000019186,0.0000019133,0.0000019112,0.0000019114, +0.0000019131,0.0000019156,0.0000019171,0.0000019181,0.0000019178, +0.0000019168,0.0000019158,0.0000019152,0.0000019146,0.0000019136, +0.0000019122,0.0000019106,0.0000019094,0.0000019095,0.0000019101, +0.0000019106,0.0000019107,0.0000019099,0.0000019079,0.0000019047, +0.0000019009,0.0000018968,0.0000018920,0.0000018856,0.0000018785, +0.0000018729,0.0000018718,0.0000018734,0.0000018793,0.0000018879, +0.0000018958,0.0000019004,0.0000019010,0.0000019001,0.0000018986, +0.0000018978,0.0000018974,0.0000018965,0.0000018951,0.0000018936, +0.0000018899,0.0000018807,0.0000018663,0.0000018527,0.0000018461, +0.0000018449,0.0000018462,0.0000018467,0.0000018466,0.0000018472, +0.0000018483,0.0000018486,0.0000018476,0.0000018449,0.0000018405, +0.0000018355,0.0000018310,0.0000018271,0.0000018241,0.0000018222, +0.0000018213,0.0000018210,0.0000018210,0.0000018209,0.0000018207, +0.0000018198,0.0000018191,0.0000018193,0.0000018204,0.0000018221, +0.0000018238,0.0000018243,0.0000018244,0.0000018267,0.0000018281, +0.0000018220,0.0000018109,0.0000018067,0.0000018106,0.0000018160, +0.0000018167,0.0000018162,0.0000018154,0.0000018144,0.0000018130, +0.0000018108,0.0000018082,0.0000018059,0.0000018041,0.0000018028, +0.0000018017,0.0000018007,0.0000017997,0.0000017984,0.0000017973, +0.0000017963,0.0000017950,0.0000017935,0.0000017919,0.0000017897, +0.0000017870,0.0000017844,0.0000017824,0.0000017814,0.0000017809, +0.0000017807,0.0000017808,0.0000017808,0.0000017806,0.0000017803, +0.0000017798,0.0000017794,0.0000017793,0.0000017795,0.0000017802, +0.0000017814,0.0000017829,0.0000017851,0.0000017879,0.0000017907, +0.0000017936,0.0000017965,0.0000017990,0.0000018007,0.0000018017, +0.0000018022,0.0000018022,0.0000018020,0.0000018019,0.0000018026, +0.0000018036,0.0000018036,0.0000018002,0.0000017911,0.0000017802, +0.0000017745,0.0000017769,0.0000017894,0.0000018018,0.0000018078, +0.0000018103,0.0000018147,0.0000018247,0.0000018376,0.0000018462, +0.0000018482,0.0000018475,0.0000018462,0.0000018444,0.0000018436, +0.0000018453,0.0000018498,0.0000018549,0.0000018601,0.0000018657, +0.0000018705,0.0000018734,0.0000018745,0.0000018747,0.0000018745, +0.0000018732,0.0000018711,0.0000018695,0.0000018685,0.0000018679, +0.0000018676,0.0000018676,0.0000018685,0.0000018708,0.0000018745, +0.0000018792,0.0000018844,0.0000018892,0.0000018933,0.0000018964, +0.0000018986,0.0000019000,0.0000019005,0.0000018995,0.0000018950, +0.0000018853,0.0000018733,0.0000018656,0.0000018641,0.0000018666, +0.0000018696,0.0000018691,0.0000018656,0.0000018696,0.0000018750, +0.0000018719,0.0000018714,0.0000018740,0.0000018755,0.0000018862, +0.0000019018,0.0000019023,0.0000018899,0.0000018837,0.0000018869, +0.0000018938,0.0000019012,0.0000019065,0.0000019078,0.0000019063, +0.0000019033,0.0000018946,0.0000018816,0.0000018745,0.0000018724, +0.0000018670,0.0000018590,0.0000018532,0.0000018506,0.0000018499, +0.0000018496,0.0000018487,0.0000018475,0.0000018457,0.0000018427, +0.0000018399,0.0000018384,0.0000018383,0.0000018390,0.0000018401, +0.0000018415,0.0000018430,0.0000018441,0.0000018448,0.0000018451, +0.0000018450,0.0000018445,0.0000018438,0.0000018429,0.0000018419, +0.0000018409,0.0000018398,0.0000018392,0.0000018392,0.0000018396, +0.0000018414,0.0000018442,0.0000018472,0.0000018501,0.0000018524, +0.0000018538,0.0000018545,0.0000018549,0.0000018549,0.0000018544, +0.0000018533,0.0000018521,0.0000018505,0.0000018487,0.0000018468, +0.0000018444,0.0000018417,0.0000018387,0.0000018358,0.0000018325, +0.0000018289,0.0000018250,0.0000018209,0.0000018165,0.0000018119, +0.0000018064,0.0000018001,0.0000017936,0.0000017882,0.0000017863, +0.0000017858,0.0000017880,0.0000017910,0.0000017933,0.0000017949, +0.0000017960,0.0000017974,0.0000017991,0.0000018007,0.0000018024, +0.0000018050,0.0000018085,0.0000018135,0.0000018197,0.0000018259, +0.0000018313,0.0000018351,0.0000018368,0.0000018364,0.0000018345, +0.0000018317,0.0000018283,0.0000018246,0.0000018208,0.0000018172, +0.0000018135,0.0000018101,0.0000018070,0.0000018041,0.0000018016, +0.0000017993,0.0000017970,0.0000017950,0.0000017935,0.0000017923, +0.0000017911,0.0000017895,0.0000017879,0.0000017860,0.0000017841, +0.0000017822,0.0000017806,0.0000017796,0.0000017795,0.0000017801, +0.0000017809,0.0000017819,0.0000017827,0.0000017834,0.0000017837, +0.0000017839,0.0000017842,0.0000017847,0.0000017856,0.0000017865, +0.0000017871,0.0000017874,0.0000017872,0.0000017867,0.0000017860, +0.0000017851,0.0000017838,0.0000017827,0.0000017818,0.0000017813, +0.0000017813,0.0000017824,0.0000017840,0.0000017856,0.0000017870, +0.0000017881,0.0000017889,0.0000017896,0.0000017903,0.0000017913, +0.0000017924,0.0000017936,0.0000017948,0.0000017961,0.0000017974, +0.0000017989,0.0000018003,0.0000018018,0.0000018037,0.0000018056, +0.0000018071,0.0000018044,0.0000018055,0.0000018064,0.0000018074, +0.0000018083,0.0000018090,0.0000018092,0.0000018091,0.0000018087, +0.0000018083,0.0000018080,0.0000018072,0.0000018056,0.0000018035, +0.0000018009,0.0000017984,0.0000017970,0.0000017962,0.0000017965, +0.0000017983,0.0000018010,0.0000018048,0.0000018096,0.0000018150, +0.0000018210,0.0000018274,0.0000018340,0.0000018405,0.0000018464, +0.0000018509,0.0000018522,0.0000018532,0.0000018523,0.0000018500, +0.0000018464,0.0000018425,0.0000018392,0.0000018369,0.0000018357, +0.0000018347,0.0000018331,0.0000018303,0.0000018259,0.0000018204, +0.0000018146,0.0000018099,0.0000018069,0.0000018067,0.0000018073, +0.0000018090,0.0000018109,0.0000018128,0.0000018149,0.0000018169, +0.0000018188,0.0000018199,0.0000018198,0.0000018188,0.0000018174, +0.0000018161,0.0000018154,0.0000018159,0.0000018174,0.0000018199, +0.0000018233,0.0000018269,0.0000018301,0.0000018321,0.0000018332, +0.0000018333,0.0000018330,0.0000018325,0.0000018325,0.0000018332, +0.0000018349,0.0000018375,0.0000018402,0.0000018426,0.0000018447, +0.0000018468,0.0000018492,0.0000018519,0.0000018548,0.0000018581, +0.0000018619,0.0000018661,0.0000018704,0.0000018747,0.0000018787, +0.0000018821,0.0000018847,0.0000018862,0.0000018867,0.0000018867, +0.0000018872,0.0000018886,0.0000018904,0.0000018916,0.0000018908, +0.0000018885,0.0000018851,0.0000018816,0.0000018786,0.0000018769, +0.0000018760,0.0000018751,0.0000018739,0.0000018724,0.0000018713, +0.0000018701,0.0000018686,0.0000018671,0.0000018658,0.0000018651, +0.0000018654,0.0000018662,0.0000018673,0.0000018681,0.0000018686, +0.0000018687,0.0000018685,0.0000018680,0.0000018671,0.0000018655, +0.0000018633,0.0000018606,0.0000018578,0.0000018549,0.0000018517, +0.0000018486,0.0000018456,0.0000018429,0.0000018404,0.0000018384, +0.0000018372,0.0000018367,0.0000018364,0.0000018358,0.0000018351, +0.0000018343,0.0000018337,0.0000018336,0.0000018337,0.0000018342, +0.0000018351,0.0000018362,0.0000018372,0.0000018384,0.0000018397, +0.0000018411,0.0000018424,0.0000018433,0.0000018441,0.0000018446, +0.0000018450,0.0000018454,0.0000018459,0.0000018462,0.0000018462, +0.0000018461,0.0000018457,0.0000018451,0.0000018443,0.0000018433, +0.0000018425,0.0000018419,0.0000018413,0.0000018405,0.0000018398, +0.0000018389,0.0000018379,0.0000018366,0.0000018353,0.0000018344, +0.0000018337,0.0000018330,0.0000018324,0.0000018315,0.0000018310, +0.0000018310,0.0000018313,0.0000018317,0.0000018320,0.0000018324, +0.0000018327,0.0000018325,0.0000018319,0.0000018311,0.0000018304, +0.0000018304,0.0000018302,0.0000018305,0.0000018308,0.0000018311, +0.0000018316,0.0000018323,0.0000018333,0.0000018342,0.0000018352, +0.0000018365,0.0000018382,0.0000018400,0.0000018419,0.0000018437, +0.0000018456,0.0000018470,0.0000018479,0.0000018484,0.0000018486, +0.0000018476,0.0000018465,0.0000018438,0.0000018392,0.0000018325, +0.0000018236,0.0000018136,0.0000018045,0.0000017968,0.0000017934, +0.0000017912,0.0000017921,0.0000017946,0.0000017984,0.0000018027, +0.0000018064,0.0000018092,0.0000018110,0.0000018115,0.0000018109, +0.0000018099,0.0000018091,0.0000018092,0.0000018103,0.0000018124, +0.0000018156,0.0000018197,0.0000018243,0.0000018294,0.0000018348, +0.0000018404,0.0000018461,0.0000018516,0.0000018569,0.0000018618, +0.0000018660,0.0000018694,0.0000018720,0.0000018741,0.0000018756, +0.0000018764,0.0000018765,0.0000018762,0.0000018756,0.0000018752, +0.0000018750,0.0000018751,0.0000018755,0.0000018762,0.0000018772, +0.0000018783,0.0000018797,0.0000018817,0.0000018842,0.0000018867, +0.0000018890,0.0000018911,0.0000018928,0.0000018938,0.0000018943, +0.0000018945,0.0000018943,0.0000018940,0.0000018934,0.0000018924, +0.0000018907,0.0000018883,0.0000018856,0.0000018832,0.0000018814, +0.0000018799,0.0000018783,0.0000018766,0.0000018754,0.0000018754, +0.0000018775,0.0000018822,0.0000018898,0.0000019001,0.0000019128, +0.0000019263,0.0000019398,0.0000019535,0.0000019668,0.0000019790, +0.0000019896,0.0000019977,0.0000020007,0.0000020007,0.0000020017, +0.0000020049,0.0000020083,0.0000020110,0.0000020126,0.0000020128, +0.0000020113,0.0000020073,0.0000020016,0.0000019978,0.0000020001, +0.0000020070,0.0000020095,0.0000020070,0.0000020051,0.0000020106, +0.0000020227,0.0000020308,0.0000020310,0.0000020282,0.0000020245, +0.0000020212,0.0000020182,0.0000020141,0.0000020095,0.0000020066, +0.0000020042,0.0000020006,0.0000019989,0.0000020020,0.0000020077, +0.0000020124,0.0000020168,0.0000020219,0.0000020255,0.0000020251, +0.0000020228,0.0000020195,0.0000020161,0.0000020122,0.0000020071, +0.0000020016,0.0000019973,0.0000019962,0.0000019964,0.0000019977, +0.0000019994,0.0000020009,0.0000020021,0.0000020029,0.0000020034, +0.0000020036,0.0000020037,0.0000020032,0.0000020026,0.0000020021, +0.0000020019,0.0000020019,0.0000020024,0.0000020044,0.0000020082, +0.0000020134,0.0000020192,0.0000020243,0.0000020275,0.0000020285, +0.0000020284,0.0000020269,0.0000020246,0.0000020225,0.0000020199, +0.0000020179,0.0000020170,0.0000020165,0.0000020153,0.0000020144, +0.0000020134,0.0000020122,0.0000020103,0.0000020085,0.0000020069, +0.0000020056,0.0000020043,0.0000020030,0.0000020020,0.0000020011, +0.0000020002,0.0000019992,0.0000019981,0.0000019972,0.0000019964, +0.0000019957,0.0000019946,0.0000019933,0.0000019921,0.0000019915, +0.0000019913,0.0000019914,0.0000019915,0.0000019915,0.0000019913, +0.0000019909,0.0000019906,0.0000019906,0.0000019909,0.0000019913, +0.0000019913,0.0000019911,0.0000019908,0.0000019906,0.0000019903, +0.0000019896,0.0000019885,0.0000019872,0.0000019861,0.0000019846, +0.0000019834,0.0000019826,0.0000019823,0.0000019826,0.0000019832, +0.0000019837,0.0000019840,0.0000019841,0.0000019839,0.0000019833, +0.0000019822,0.0000019807,0.0000019789,0.0000019767,0.0000019743, +0.0000019716,0.0000019690,0.0000019665,0.0000019642,0.0000019622, +0.0000019607,0.0000019599,0.0000019598,0.0000019601,0.0000019604, +0.0000019607,0.0000019606,0.0000019601,0.0000019590,0.0000019575, +0.0000019557,0.0000019537,0.0000019516,0.0000019496,0.0000019476, +0.0000019461,0.0000019448,0.0000019436,0.0000019429,0.0000019429, +0.0000019434,0.0000019441,0.0000019450,0.0000019461,0.0000019474, +0.0000019486,0.0000019497,0.0000019508,0.0000019521,0.0000019535, +0.0000019545,0.0000019551,0.0000019557,0.0000019562,0.0000019567, +0.0000019572,0.0000019581,0.0000019594,0.0000019609,0.0000019624, +0.0000019640,0.0000019659,0.0000019680,0.0000019698,0.0000019713, +0.0000019725,0.0000019735,0.0000019745,0.0000019754,0.0000019762, +0.0000019772,0.0000019782,0.0000019791,0.0000019801,0.0000019810, +0.0000019820,0.0000019831,0.0000019840,0.0000019850,0.0000019863, +0.0000019879,0.0000019895,0.0000019911,0.0000019927,0.0000019941, +0.0000019952,0.0000019958,0.0000019960,0.0000019959,0.0000019952, +0.0000019938,0.0000019925,0.0000019911,0.0000019894,0.0000019880, +0.0000019879,0.0000019880,0.0000019884,0.0000019895,0.0000019912, +0.0000019941,0.0000019982,0.0000020026,0.0000020068,0.0000020107, +0.0000020144,0.0000020178,0.0000020206,0.0000020231,0.0000020257, +0.0000020287,0.0000020321,0.0000020358,0.0000020392,0.0000020422, +0.0000020448,0.0000020469,0.0000020482,0.0000020490,0.0000020494, +0.0000020497,0.0000020501,0.0000020509,0.0000020521,0.0000020531, +0.0000020542,0.0000020561,0.0000020583,0.0000020600,0.0000020611, +0.0000020616,0.0000020617,0.0000020616,0.0000020610,0.0000020599, +0.0000020587,0.0000020576,0.0000020565,0.0000020551,0.0000020532, +0.0000020512,0.0000020495,0.0000020476,0.0000020453,0.0000020436, +0.0000020424,0.0000020420,0.0000020421,0.0000020427,0.0000020437, +0.0000020451,0.0000020463,0.0000020470,0.0000020471,0.0000020466, +0.0000020451,0.0000020422,0.0000020388,0.0000020359,0.0000020334, +0.0000020315,0.0000020298,0.0000020285,0.0000020268,0.0000020256, +0.0000020257,0.0000020265,0.0000020282,0.0000020304,0.0000020321, +0.0000020328,0.0000020319,0.0000020308,0.0000020295,0.0000020282, +0.0000020269,0.0000020261,0.0000020253,0.0000020247,0.0000020256, +0.0000020285,0.0000020326,0.0000020372,0.0000020414,0.0000020444, +0.0000020462,0.0000020477,0.0000020499,0.0000020526,0.0000020555, +0.0000020576,0.0000020581,0.0000020573,0.0000020547,0.0000020513, +0.0000020480,0.0000020451,0.0000020427,0.0000020409,0.0000020392, +0.0000020380,0.0000020367,0.0000020351,0.0000020331,0.0000020309, +0.0000020287,0.0000020272,0.0000020256,0.0000020235,0.0000020214, +0.0000020194,0.0000020183,0.0000020168,0.0000020154,0.0000020154, +0.0000020161,0.0000020171,0.0000020184,0.0000020197,0.0000020207, +0.0000020209,0.0000020209,0.0000020202,0.0000020189,0.0000020172, +0.0000020160,0.0000020147,0.0000020139,0.0000020135,0.0000020138, +0.0000020148,0.0000020165,0.0000020183,0.0000020204,0.0000020229, +0.0000020253,0.0000020270,0.0000020277,0.0000020275,0.0000020265, +0.0000020249,0.0000020227,0.0000020205,0.0000020191,0.0000020188, +0.0000020195,0.0000020202,0.0000020211,0.0000020230,0.0000020256, +0.0000020285,0.0000020315,0.0000020340,0.0000020358,0.0000020364, +0.0000020363,0.0000020355,0.0000020344,0.0000020327,0.0000020298, +0.0000020259,0.0000020212,0.0000020161,0.0000020108,0.0000020058, +0.0000020007,0.0000019959,0.0000019921,0.0000019894,0.0000019874, +0.0000019858,0.0000019842,0.0000019823,0.0000019803,0.0000019789, +0.0000019773,0.0000019756,0.0000019740,0.0000019720,0.0000019695, +0.0000019666,0.0000019636,0.0000019608,0.0000019581,0.0000019557, +0.0000019537,0.0000019519,0.0000019503,0.0000019489,0.0000019478, +0.0000019473,0.0000019477,0.0000019484,0.0000019498,0.0000019511, +0.0000019523,0.0000019530,0.0000019529,0.0000019514,0.0000019489, +0.0000019455,0.0000019415,0.0000019373,0.0000019334,0.0000019300, +0.0000019265,0.0000019230,0.0000019194,0.0000019161,0.0000019129, +0.0000019095,0.0000019064,0.0000019044,0.0000019040,0.0000019041, +0.0000019045,0.0000019049,0.0000019056,0.0000019067,0.0000019083, +0.0000019105,0.0000019130,0.0000019157,0.0000019184,0.0000019207, +0.0000019220,0.0000019221,0.0000019207,0.0000019180,0.0000019143, +0.0000019101,0.0000019060,0.0000019034,0.0000019026,0.0000019028, +0.0000019034,0.0000019045,0.0000019067,0.0000019088,0.0000019103, +0.0000019113,0.0000019122,0.0000019129,0.0000019132,0.0000019133, +0.0000019137,0.0000019141,0.0000019147,0.0000019155,0.0000019164, +0.0000019174,0.0000019188,0.0000019209,0.0000019241,0.0000019288, +0.0000019345,0.0000019403,0.0000019452,0.0000019486,0.0000019515, +0.0000019542,0.0000019567,0.0000019593,0.0000019614,0.0000019626, +0.0000019615,0.0000019596,0.0000019560,0.0000019514,0.0000019479, +0.0000019452,0.0000019452,0.0000019480,0.0000019523,0.0000019566, +0.0000019605,0.0000019642,0.0000019672,0.0000019691,0.0000019701, +0.0000019702,0.0000019691,0.0000019674,0.0000019658,0.0000019649, +0.0000019649,0.0000019662,0.0000019684,0.0000019702,0.0000019714, +0.0000019704,0.0000019697,0.0000019668,0.0000019617,0.0000019559, +0.0000019503,0.0000019465,0.0000019452,0.0000019455,0.0000019465, +0.0000019471,0.0000019480,0.0000019488,0.0000019500,0.0000019513, +0.0000019519,0.0000019517,0.0000019501,0.0000019476,0.0000019458, +0.0000019451,0.0000019465,0.0000019496,0.0000019537,0.0000019578, +0.0000019616,0.0000019645,0.0000019657,0.0000019657,0.0000019653, +0.0000019648,0.0000019640,0.0000019633,0.0000019628,0.0000019626, +0.0000019630,0.0000019638,0.0000019650,0.0000019669,0.0000019697, +0.0000019725,0.0000019746,0.0000019753,0.0000019753,0.0000019754, +0.0000019761,0.0000019768,0.0000019773,0.0000019780,0.0000019790, +0.0000019802,0.0000019814,0.0000019821,0.0000019822,0.0000019814, +0.0000019801,0.0000019786,0.0000019765,0.0000019739,0.0000019702, +0.0000019660,0.0000019616,0.0000019576,0.0000019545,0.0000019523, +0.0000019503,0.0000019486,0.0000019477,0.0000019479,0.0000019486, +0.0000019503,0.0000019528,0.0000019558,0.0000019587,0.0000019617, +0.0000019646,0.0000019675,0.0000019704,0.0000019720,0.0000019718, +0.0000019688,0.0000019640,0.0000019590,0.0000019552,0.0000019532, +0.0000019524,0.0000019521,0.0000019510,0.0000019486,0.0000019448, +0.0000019407,0.0000019367,0.0000019329,0.0000019295,0.0000019266, +0.0000019244,0.0000019232,0.0000019216,0.0000019191,0.0000019160, +0.0000019127,0.0000019088,0.0000019040,0.0000018983,0.0000018917, +0.0000018844,0.0000018774,0.0000018715,0.0000018665,0.0000018622, +0.0000018592,0.0000018567,0.0000018547,0.0000018536,0.0000018531, +0.0000018541,0.0000018582,0.0000018644,0.0000018687,0.0000018692, +0.0000018677,0.0000018658,0.0000018658,0.0000018677,0.0000018693, +0.0000018695,0.0000018697,0.0000018711,0.0000018727,0.0000018721, +0.0000018697,0.0000018670,0.0000018656,0.0000018655,0.0000018663, +0.0000018678,0.0000018699,0.0000018722,0.0000018744,0.0000018754, +0.0000018752,0.0000018750,0.0000018748,0.0000018741,0.0000018733, +0.0000018721,0.0000018707,0.0000018683,0.0000018649,0.0000018608, +0.0000018566,0.0000018531,0.0000018503,0.0000018484,0.0000018466, +0.0000018447,0.0000018433,0.0000018424,0.0000018416,0.0000018410, +0.0000018410,0.0000018416,0.0000018426,0.0000018439,0.0000018455, +0.0000018474,0.0000018497,0.0000018518,0.0000018534,0.0000018548, +0.0000018562,0.0000018575,0.0000018587,0.0000018601,0.0000018620, +0.0000018643,0.0000018669,0.0000018698,0.0000018729,0.0000018758, +0.0000018784,0.0000018807,0.0000018833,0.0000018868,0.0000018920, +0.0000018998,0.0000019107,0.0000019245,0.0000019399,0.0000019551, +0.0000019684,0.0000019780,0.0000019835,0.0000019861,0.0000019869, +0.0000019866,0.0000019855,0.0000019827,0.0000019762,0.0000019654, +0.0000019516,0.0000019372,0.0000019249,0.0000019159,0.0000019108, +0.0000019092,0.0000019106,0.0000019133,0.0000019163,0.0000019187, +0.0000019197,0.0000019197,0.0000019191,0.0000019183,0.0000019175, +0.0000019165,0.0000019147,0.0000019123,0.0000019106,0.0000019103, +0.0000019107,0.0000019113,0.0000019113,0.0000019106,0.0000019090, +0.0000019063,0.0000019029,0.0000018993,0.0000018950,0.0000018892, +0.0000018823,0.0000018760,0.0000018726,0.0000018735,0.0000018781, +0.0000018856,0.0000018937,0.0000018993,0.0000019009,0.0000018999, +0.0000018977,0.0000018962,0.0000018958,0.0000018951,0.0000018939, +0.0000018924,0.0000018890,0.0000018805,0.0000018665,0.0000018524, +0.0000018442,0.0000018424,0.0000018433,0.0000018437,0.0000018436, +0.0000018441,0.0000018453,0.0000018466,0.0000018462,0.0000018438, +0.0000018393,0.0000018342,0.0000018297,0.0000018262,0.0000018236, +0.0000018220,0.0000018214,0.0000018217,0.0000018225,0.0000018233, +0.0000018235,0.0000018232,0.0000018233,0.0000018239,0.0000018248, +0.0000018255,0.0000018251,0.0000018245,0.0000018260,0.0000018279, +0.0000018236,0.0000018129,0.0000018069,0.0000018094,0.0000018149, +0.0000018168,0.0000018170,0.0000018165,0.0000018153,0.0000018131, +0.0000018100,0.0000018068,0.0000018045,0.0000018026,0.0000018009, +0.0000017999,0.0000017991,0.0000017983,0.0000017973,0.0000017959, +0.0000017946,0.0000017935,0.0000017925,0.0000017915,0.0000017903, +0.0000017888,0.0000017871,0.0000017853,0.0000017838,0.0000017832, +0.0000017833,0.0000017835,0.0000017835,0.0000017835,0.0000017833, +0.0000017830,0.0000017826,0.0000017824,0.0000017823,0.0000017821, +0.0000017826,0.0000017838,0.0000017855,0.0000017880,0.0000017908, +0.0000017940,0.0000017972,0.0000017998,0.0000018015,0.0000018025, +0.0000018028,0.0000018029,0.0000018030,0.0000018033,0.0000018041, +0.0000018046,0.0000018039,0.0000017987,0.0000017891,0.0000017797, +0.0000017769,0.0000017821,0.0000017958,0.0000018071,0.0000018125, +0.0000018158,0.0000018218,0.0000018330,0.0000018451,0.0000018514, +0.0000018520,0.0000018510,0.0000018501,0.0000018494,0.0000018496, +0.0000018521,0.0000018561,0.0000018599,0.0000018639,0.0000018681, +0.0000018712,0.0000018726,0.0000018727,0.0000018725,0.0000018717, +0.0000018704,0.0000018691,0.0000018680,0.0000018671,0.0000018663, +0.0000018654,0.0000018652,0.0000018662,0.0000018696,0.0000018743, +0.0000018795,0.0000018844,0.0000018889,0.0000018925,0.0000018953, +0.0000018971,0.0000018976,0.0000018956,0.0000018896,0.0000018797, +0.0000018695,0.0000018637,0.0000018629,0.0000018653,0.0000018694, +0.0000018700,0.0000018654,0.0000018659,0.0000018734,0.0000018727, +0.0000018702,0.0000018729,0.0000018753,0.0000018841,0.0000019004, +0.0000019032,0.0000018920,0.0000018828,0.0000018839,0.0000018896, +0.0000018956,0.0000019013,0.0000019053,0.0000019058,0.0000019036, +0.0000018961,0.0000018826,0.0000018731,0.0000018707,0.0000018665, +0.0000018592,0.0000018530,0.0000018497,0.0000018486,0.0000018484, +0.0000018476,0.0000018461,0.0000018448,0.0000018431,0.0000018413, +0.0000018400,0.0000018397,0.0000018402,0.0000018411,0.0000018424, +0.0000018438,0.0000018447,0.0000018449,0.0000018447,0.0000018438, +0.0000018424,0.0000018411,0.0000018399,0.0000018389,0.0000018384, +0.0000018385,0.0000018398,0.0000018422,0.0000018455,0.0000018493, +0.0000018531,0.0000018562,0.0000018583,0.0000018596,0.0000018605, +0.0000018611,0.0000018615,0.0000018616,0.0000018608,0.0000018589, +0.0000018564,0.0000018538,0.0000018514,0.0000018493,0.0000018473, +0.0000018452,0.0000018433,0.0000018415,0.0000018395,0.0000018372, +0.0000018346,0.0000018315,0.0000018278,0.0000018235,0.0000018190, +0.0000018144,0.0000018092,0.0000018030,0.0000017961,0.0000017896, +0.0000017858,0.0000017860,0.0000017880,0.0000017913,0.0000017944, +0.0000017965,0.0000017982,0.0000018001,0.0000018019,0.0000018034, +0.0000018047,0.0000018052,0.0000018068,0.0000018089,0.0000018126, +0.0000018170,0.0000018213,0.0000018247,0.0000018265,0.0000018267, +0.0000018255,0.0000018232,0.0000018201,0.0000018167,0.0000018131, +0.0000018096,0.0000018064,0.0000018035,0.0000018010,0.0000017987, +0.0000017962,0.0000017938,0.0000017916,0.0000017896,0.0000017879, +0.0000017861,0.0000017843,0.0000017826,0.0000017808,0.0000017792, +0.0000017777,0.0000017766,0.0000017762,0.0000017765,0.0000017774, +0.0000017785,0.0000017794,0.0000017802,0.0000017806,0.0000017809, +0.0000017812,0.0000017816,0.0000017822,0.0000017832,0.0000017842, +0.0000017851,0.0000017857,0.0000017860,0.0000017858,0.0000017854, +0.0000017846,0.0000017837,0.0000017828,0.0000017819,0.0000017816, +0.0000017822,0.0000017836,0.0000017851,0.0000017869,0.0000017885, +0.0000017898,0.0000017907,0.0000017913,0.0000017920,0.0000017927, +0.0000017935,0.0000017946,0.0000017955,0.0000017963,0.0000017974, +0.0000017982,0.0000017991,0.0000018005,0.0000018018,0.0000018030, +0.0000018027,0.0000018032,0.0000018039,0.0000018045,0.0000018052, +0.0000018061,0.0000018069,0.0000018073,0.0000018072,0.0000018068, +0.0000018068,0.0000018068,0.0000018064,0.0000018055,0.0000018042, +0.0000018021,0.0000017998,0.0000017976,0.0000017957,0.0000017952, +0.0000017957,0.0000017975,0.0000018008,0.0000018048,0.0000018093, +0.0000018142,0.0000018195,0.0000018253,0.0000018316,0.0000018382, +0.0000018445,0.0000018499,0.0000018538,0.0000018550,0.0000018541, +0.0000018517,0.0000018482,0.0000018441,0.0000018406,0.0000018381, +0.0000018366,0.0000018353,0.0000018337,0.0000018311,0.0000018271, +0.0000018219,0.0000018163,0.0000018119,0.0000018091,0.0000018089, +0.0000018095,0.0000018109,0.0000018126,0.0000018145,0.0000018164, +0.0000018181,0.0000018191,0.0000018189,0.0000018177,0.0000018157, +0.0000018139,0.0000018118,0.0000018104,0.0000018105,0.0000018121, +0.0000018149,0.0000018184,0.0000018218,0.0000018247,0.0000018266, +0.0000018276,0.0000018275,0.0000018267,0.0000018262,0.0000018264, +0.0000018276,0.0000018292,0.0000018310,0.0000018329,0.0000018352, +0.0000018379,0.0000018411,0.0000018444,0.0000018476,0.0000018509, +0.0000018544,0.0000018583,0.0000018626,0.0000018673,0.0000018725, +0.0000018776,0.0000018818,0.0000018842,0.0000018843,0.0000018834, +0.0000018825,0.0000018827,0.0000018844,0.0000018863,0.0000018867, +0.0000018852,0.0000018824,0.0000018792,0.0000018771,0.0000018764, +0.0000018761,0.0000018755,0.0000018743,0.0000018730,0.0000018716, +0.0000018700,0.0000018682,0.0000018666,0.0000018657,0.0000018653, +0.0000018653,0.0000018658,0.0000018665,0.0000018670,0.0000018670, +0.0000018669,0.0000018667,0.0000018663,0.0000018651,0.0000018633, +0.0000018610,0.0000018586,0.0000018561,0.0000018534,0.0000018504, +0.0000018471,0.0000018439,0.0000018411,0.0000018388,0.0000018373, +0.0000018367,0.0000018363,0.0000018359,0.0000018353,0.0000018348, +0.0000018343,0.0000018340,0.0000018339,0.0000018341,0.0000018346, +0.0000018354,0.0000018362,0.0000018373,0.0000018387,0.0000018401, +0.0000018414,0.0000018426,0.0000018435,0.0000018441,0.0000018445, +0.0000018448,0.0000018449,0.0000018450,0.0000018449,0.0000018447, +0.0000018444,0.0000018439,0.0000018432,0.0000018422,0.0000018413, +0.0000018405,0.0000018398,0.0000018391,0.0000018383,0.0000018375, +0.0000018364,0.0000018352,0.0000018342,0.0000018334,0.0000018328, +0.0000018320,0.0000018312,0.0000018305,0.0000018301,0.0000018306, +0.0000018315,0.0000018325,0.0000018335,0.0000018346,0.0000018353, +0.0000018356,0.0000018352,0.0000018342,0.0000018329,0.0000018317, +0.0000018309,0.0000018305,0.0000018303,0.0000018300,0.0000018296, +0.0000018296,0.0000018296,0.0000018298,0.0000018303,0.0000018313, +0.0000018328,0.0000018344,0.0000018362,0.0000018383,0.0000018403, +0.0000018419,0.0000018431,0.0000018440,0.0000018448,0.0000018453, +0.0000018453,0.0000018441,0.0000018431,0.0000018406,0.0000018360, +0.0000018291,0.0000018203,0.0000018107,0.0000018021,0.0000017946, +0.0000017914,0.0000017892,0.0000017885,0.0000017900,0.0000017929, +0.0000017966,0.0000018005,0.0000018037,0.0000018058,0.0000018066, +0.0000018062,0.0000018054,0.0000018046,0.0000018046,0.0000018057, +0.0000018076,0.0000018102,0.0000018133,0.0000018167,0.0000018202, +0.0000018237,0.0000018272,0.0000018309,0.0000018347,0.0000018386, +0.0000018427,0.0000018471,0.0000018517,0.0000018561,0.0000018602, +0.0000018637,0.0000018665,0.0000018686,0.0000018702,0.0000018714, +0.0000018723,0.0000018727,0.0000018728,0.0000018727,0.0000018722, +0.0000018718,0.0000018720,0.0000018727,0.0000018737,0.0000018750, +0.0000018763,0.0000018773,0.0000018779,0.0000018782,0.0000018783, +0.0000018786,0.0000018789,0.0000018789,0.0000018785,0.0000018776, +0.0000018760,0.0000018741,0.0000018724,0.0000018714,0.0000018708, +0.0000018698,0.0000018681,0.0000018663,0.0000018654,0.0000018665, +0.0000018704,0.0000018775,0.0000018881,0.0000019016,0.0000019162, +0.0000019302,0.0000019443,0.0000019587,0.0000019720,0.0000019837, +0.0000019929,0.0000019972,0.0000019972,0.0000019985,0.0000020021, +0.0000020056,0.0000020087,0.0000020114,0.0000020124,0.0000020111, +0.0000020068,0.0000020005,0.0000019975,0.0000020016,0.0000020075, +0.0000020082,0.0000020049,0.0000020033,0.0000020093,0.0000020213, +0.0000020292,0.0000020295,0.0000020271,0.0000020234,0.0000020196, +0.0000020160,0.0000020123,0.0000020090,0.0000020067,0.0000020045, +0.0000020012,0.0000019993,0.0000020010,0.0000020062,0.0000020106, +0.0000020135,0.0000020168,0.0000020202,0.0000020218,0.0000020209, +0.0000020193,0.0000020177,0.0000020157,0.0000020127,0.0000020088, +0.0000020050,0.0000020020,0.0000020000,0.0000019993,0.0000019996, +0.0000019996,0.0000020001,0.0000020009,0.0000020016,0.0000020022, +0.0000020026,0.0000020026,0.0000020023,0.0000020018,0.0000020011, +0.0000020003,0.0000019993,0.0000019986,0.0000019986,0.0000019998, +0.0000020029,0.0000020077,0.0000020132,0.0000020181,0.0000020214, +0.0000020228,0.0000020231,0.0000020220,0.0000020204,0.0000020185, +0.0000020173,0.0000020159,0.0000020147,0.0000020138,0.0000020130, +0.0000020122,0.0000020112,0.0000020103,0.0000020096,0.0000020088, +0.0000020079,0.0000020071,0.0000020064,0.0000020058,0.0000020049, +0.0000020037,0.0000020025,0.0000020016,0.0000020006,0.0000019994, +0.0000019976,0.0000019959,0.0000019946,0.0000019934,0.0000019933, +0.0000019934,0.0000019933,0.0000019930,0.0000019925,0.0000019916, +0.0000019910,0.0000019909,0.0000019911,0.0000019912,0.0000019911, +0.0000019909,0.0000019908,0.0000019904,0.0000019897,0.0000019886, +0.0000019872,0.0000019854,0.0000019836,0.0000019820,0.0000019810, +0.0000019808,0.0000019809,0.0000019812,0.0000019815,0.0000019816, +0.0000019815,0.0000019811,0.0000019801,0.0000019788,0.0000019772, +0.0000019753,0.0000019729,0.0000019702,0.0000019675,0.0000019650, +0.0000019626,0.0000019603,0.0000019583,0.0000019565,0.0000019553, +0.0000019546,0.0000019546,0.0000019550,0.0000019556,0.0000019560, +0.0000019559,0.0000019553,0.0000019541,0.0000019524,0.0000019503, +0.0000019480,0.0000019459,0.0000019441,0.0000019423,0.0000019406, +0.0000019388,0.0000019374,0.0000019367,0.0000019365,0.0000019368, +0.0000019376,0.0000019388,0.0000019402,0.0000019418,0.0000019434, +0.0000019452,0.0000019470,0.0000019486,0.0000019499,0.0000019507, +0.0000019513,0.0000019520,0.0000019525,0.0000019531,0.0000019538, +0.0000019551,0.0000019567,0.0000019585,0.0000019606,0.0000019628, +0.0000019653,0.0000019678,0.0000019698,0.0000019713,0.0000019723, +0.0000019730,0.0000019735,0.0000019739,0.0000019742,0.0000019742, +0.0000019739,0.0000019734,0.0000019731,0.0000019733,0.0000019736, +0.0000019736,0.0000019736,0.0000019744,0.0000019756,0.0000019771, +0.0000019791,0.0000019813,0.0000019837,0.0000019861,0.0000019881, +0.0000019897,0.0000019910,0.0000019916,0.0000019913,0.0000019905, +0.0000019893,0.0000019879,0.0000019866,0.0000019856,0.0000019845, +0.0000019833,0.0000019821,0.0000019814,0.0000019819,0.0000019835, +0.0000019855,0.0000019878,0.0000019906,0.0000019935,0.0000019964, +0.0000019993,0.0000020021,0.0000020050,0.0000020081,0.0000020118, +0.0000020156,0.0000020195,0.0000020230,0.0000020262,0.0000020291, +0.0000020312,0.0000020325,0.0000020333,0.0000020338,0.0000020340, +0.0000020348,0.0000020362,0.0000020376,0.0000020395,0.0000020423, +0.0000020452,0.0000020479,0.0000020500,0.0000020512,0.0000020519, +0.0000020523,0.0000020524,0.0000020519,0.0000020510,0.0000020503, +0.0000020500,0.0000020499,0.0000020495,0.0000020489,0.0000020480, +0.0000020467,0.0000020452,0.0000020438,0.0000020427,0.0000020417, +0.0000020407,0.0000020399,0.0000020395,0.0000020394,0.0000020395, +0.0000020391,0.0000020386,0.0000020381,0.0000020371,0.0000020346, +0.0000020308,0.0000020266,0.0000020228,0.0000020198,0.0000020174, +0.0000020156,0.0000020139,0.0000020125,0.0000020119,0.0000020125, +0.0000020140,0.0000020161,0.0000020189,0.0000020219,0.0000020245, +0.0000020265,0.0000020275,0.0000020267,0.0000020257,0.0000020249, +0.0000020237,0.0000020225,0.0000020212,0.0000020212,0.0000020225, +0.0000020251,0.0000020291,0.0000020340,0.0000020389,0.0000020427, +0.0000020452,0.0000020474,0.0000020499,0.0000020527,0.0000020554, +0.0000020572,0.0000020580,0.0000020588,0.0000020581,0.0000020560, +0.0000020531,0.0000020499,0.0000020468,0.0000020442,0.0000020417, +0.0000020392,0.0000020367,0.0000020342,0.0000020320,0.0000020306, +0.0000020292,0.0000020275,0.0000020257,0.0000020239,0.0000020217, +0.0000020192,0.0000020175,0.0000020165,0.0000020165,0.0000020173, +0.0000020186,0.0000020200,0.0000020209,0.0000020217,0.0000020224, +0.0000020223,0.0000020209,0.0000020189,0.0000020163,0.0000020143, +0.0000020134,0.0000020126,0.0000020121,0.0000020122,0.0000020129, +0.0000020140,0.0000020154,0.0000020173,0.0000020192,0.0000020208, +0.0000020217,0.0000020218,0.0000020211,0.0000020196,0.0000020175, +0.0000020155,0.0000020142,0.0000020141,0.0000020145,0.0000020152, +0.0000020160,0.0000020177,0.0000020200,0.0000020221,0.0000020244, +0.0000020270,0.0000020291,0.0000020302,0.0000020303,0.0000020297, +0.0000020289,0.0000020275,0.0000020248,0.0000020213,0.0000020167, +0.0000020116,0.0000020063,0.0000020012,0.0000019964,0.0000019925, +0.0000019897,0.0000019876,0.0000019864,0.0000019858,0.0000019849, +0.0000019838,0.0000019829,0.0000019819,0.0000019809,0.0000019803, +0.0000019793,0.0000019777,0.0000019758,0.0000019736,0.0000019711, +0.0000019684,0.0000019656,0.0000019629,0.0000019605,0.0000019581, +0.0000019557,0.0000019537,0.0000019523,0.0000019512,0.0000019502, +0.0000019496,0.0000019500,0.0000019504,0.0000019509,0.0000019511, +0.0000019504,0.0000019485,0.0000019457,0.0000019422,0.0000019383, +0.0000019342,0.0000019303,0.0000019270,0.0000019241,0.0000019213, +0.0000019187,0.0000019162,0.0000019131,0.0000019097,0.0000019069, +0.0000019052,0.0000019044,0.0000019040,0.0000019039,0.0000019039, +0.0000019037,0.0000019037,0.0000019044,0.0000019058,0.0000019077, +0.0000019098,0.0000019117,0.0000019129,0.0000019134,0.0000019128, +0.0000019109,0.0000019080,0.0000019044,0.0000019001,0.0000018963, +0.0000018940,0.0000018931,0.0000018929,0.0000018939,0.0000018961, +0.0000018983,0.0000019002,0.0000019017,0.0000019032,0.0000019046, +0.0000019053,0.0000019053,0.0000019048,0.0000019041,0.0000019037, +0.0000019036,0.0000019035,0.0000019038,0.0000019046,0.0000019058, +0.0000019078,0.0000019112,0.0000019159,0.0000019217,0.0000019275, +0.0000019331,0.0000019386,0.0000019432,0.0000019465,0.0000019491, +0.0000019515,0.0000019538,0.0000019557,0.0000019566,0.0000019561, +0.0000019537,0.0000019500,0.0000019458,0.0000019425,0.0000019413, +0.0000019425,0.0000019456,0.0000019498,0.0000019542,0.0000019581, +0.0000019606,0.0000019616,0.0000019616,0.0000019606,0.0000019592, +0.0000019578,0.0000019567,0.0000019564,0.0000019570,0.0000019585, +0.0000019607,0.0000019631,0.0000019654,0.0000019676,0.0000019685, +0.0000019681,0.0000019652,0.0000019596,0.0000019529,0.0000019474, +0.0000019440,0.0000019427,0.0000019418,0.0000019420,0.0000019424, +0.0000019431,0.0000019451,0.0000019480,0.0000019507,0.0000019510, +0.0000019505,0.0000019481,0.0000019449,0.0000019430,0.0000019426, +0.0000019436,0.0000019464,0.0000019507,0.0000019551,0.0000019584, +0.0000019605,0.0000019619,0.0000019625,0.0000019625,0.0000019619, +0.0000019612,0.0000019603,0.0000019595,0.0000019591,0.0000019593, +0.0000019602,0.0000019622,0.0000019647,0.0000019667,0.0000019677, +0.0000019681,0.0000019691,0.0000019710,0.0000019731,0.0000019747, +0.0000019761,0.0000019776,0.0000019792,0.0000019808,0.0000019819, +0.0000019817,0.0000019806,0.0000019790,0.0000019769,0.0000019744, +0.0000019716,0.0000019679,0.0000019633,0.0000019586,0.0000019544, +0.0000019515,0.0000019493,0.0000019473,0.0000019456,0.0000019442, +0.0000019436,0.0000019436,0.0000019444,0.0000019464,0.0000019496, +0.0000019534,0.0000019575,0.0000019615,0.0000019652,0.0000019680, +0.0000019684,0.0000019660,0.0000019610,0.0000019553,0.0000019507, +0.0000019481,0.0000019473,0.0000019472,0.0000019466,0.0000019450, +0.0000019429,0.0000019400,0.0000019365,0.0000019328,0.0000019293, +0.0000019257,0.0000019227,0.0000019212,0.0000019199,0.0000019182, +0.0000019157,0.0000019124,0.0000019085,0.0000019047,0.0000019002, +0.0000018946,0.0000018883,0.0000018816,0.0000018751,0.0000018694, +0.0000018647,0.0000018611,0.0000018582,0.0000018555,0.0000018530, +0.0000018509,0.0000018494,0.0000018491,0.0000018512,0.0000018563, +0.0000018622,0.0000018658,0.0000018658,0.0000018638,0.0000018624, +0.0000018630,0.0000018649,0.0000018657,0.0000018658,0.0000018668, +0.0000018682,0.0000018685,0.0000018669,0.0000018643,0.0000018624, +0.0000018617,0.0000018617,0.0000018629,0.0000018647,0.0000018668, +0.0000018685,0.0000018691,0.0000018692,0.0000018694,0.0000018691, +0.0000018686,0.0000018681,0.0000018673,0.0000018666,0.0000018653, +0.0000018623,0.0000018585,0.0000018544,0.0000018507,0.0000018480, +0.0000018460,0.0000018439,0.0000018418,0.0000018403,0.0000018388, +0.0000018375,0.0000018368,0.0000018367,0.0000018371,0.0000018376, +0.0000018387,0.0000018398,0.0000018413,0.0000018431,0.0000018447, +0.0000018459,0.0000018471,0.0000018486,0.0000018502,0.0000018517, +0.0000018535,0.0000018558,0.0000018580,0.0000018603,0.0000018631, +0.0000018664,0.0000018697,0.0000018728,0.0000018755,0.0000018778, +0.0000018798,0.0000018824,0.0000018867,0.0000018934,0.0000019035, +0.0000019172,0.0000019337,0.0000019508,0.0000019656,0.0000019765, +0.0000019828,0.0000019857,0.0000019855,0.0000019844,0.0000019831, +0.0000019795,0.0000019723,0.0000019615,0.0000019485,0.0000019353, +0.0000019236,0.0000019149,0.0000019101,0.0000019094,0.0000019108, +0.0000019138,0.0000019172,0.0000019195,0.0000019207,0.0000019210, +0.0000019207,0.0000019202,0.0000019192,0.0000019174,0.0000019151, +0.0000019129,0.0000019115,0.0000019113,0.0000019117,0.0000019119, +0.0000019116,0.0000019103,0.0000019080,0.0000019051,0.0000019016, +0.0000018973,0.0000018921,0.0000018858,0.0000018794,0.0000018751, +0.0000018748,0.0000018775,0.0000018843,0.0000018920,0.0000018978, +0.0000019000,0.0000018989,0.0000018965,0.0000018944,0.0000018936, +0.0000018933,0.0000018923,0.0000018900,0.0000018867,0.0000018792, +0.0000018663,0.0000018522,0.0000018427,0.0000018397,0.0000018402, +0.0000018406,0.0000018403,0.0000018406,0.0000018425,0.0000018448, +0.0000018458,0.0000018441,0.0000018402,0.0000018355,0.0000018314, +0.0000018280,0.0000018254,0.0000018235,0.0000018229,0.0000018233, +0.0000018244,0.0000018254,0.0000018258,0.0000018261,0.0000018262, +0.0000018264,0.0000018262,0.0000018253,0.0000018245,0.0000018255, +0.0000018274,0.0000018247,0.0000018150,0.0000018078,0.0000018082, +0.0000018134,0.0000018165,0.0000018174,0.0000018174,0.0000018166, +0.0000018147,0.0000018114,0.0000018079,0.0000018049,0.0000018024, +0.0000018005,0.0000017993,0.0000017984,0.0000017977,0.0000017968, +0.0000017954,0.0000017938,0.0000017924,0.0000017915,0.0000017907, +0.0000017899,0.0000017892,0.0000017884,0.0000017875,0.0000017869, +0.0000017862,0.0000017857,0.0000017853,0.0000017851,0.0000017849, +0.0000017846,0.0000017844,0.0000017843,0.0000017844,0.0000017846, +0.0000017850,0.0000017857,0.0000017865,0.0000017876,0.0000017895, +0.0000017919,0.0000017947,0.0000017977,0.0000018004,0.0000018023, +0.0000018034,0.0000018039,0.0000018041,0.0000018044,0.0000018047, +0.0000018048,0.0000018045,0.0000018023,0.0000017959,0.0000017866, +0.0000017799,0.0000017791,0.0000017876,0.0000018017,0.0000018119, +0.0000018169,0.0000018207,0.0000018280,0.0000018398,0.0000018510, +0.0000018559,0.0000018560,0.0000018550,0.0000018549,0.0000018550, +0.0000018558,0.0000018580,0.0000018606,0.0000018633,0.0000018663, +0.0000018690,0.0000018704,0.0000018706,0.0000018702,0.0000018695, +0.0000018686,0.0000018677,0.0000018666,0.0000018653,0.0000018641, +0.0000018628,0.0000018621,0.0000018626,0.0000018657,0.0000018707, +0.0000018759,0.0000018810,0.0000018856,0.0000018895,0.0000018923, +0.0000018938,0.0000018933,0.0000018899,0.0000018829,0.0000018741, +0.0000018665,0.0000018625,0.0000018620,0.0000018641,0.0000018684, +0.0000018707,0.0000018667,0.0000018632,0.0000018708,0.0000018732, +0.0000018698,0.0000018711,0.0000018746,0.0000018820,0.0000018985, +0.0000019041,0.0000018952,0.0000018842,0.0000018825,0.0000018867, +0.0000018920,0.0000018971,0.0000019019,0.0000019041,0.0000019031, +0.0000018963,0.0000018826,0.0000018714,0.0000018680,0.0000018646, +0.0000018580,0.0000018522,0.0000018488,0.0000018477,0.0000018478, +0.0000018479,0.0000018473,0.0000018466,0.0000018461,0.0000018459, +0.0000018460,0.0000018464,0.0000018470,0.0000018475,0.0000018480, +0.0000018485,0.0000018486,0.0000018483,0.0000018475,0.0000018462, +0.0000018447,0.0000018433,0.0000018422,0.0000018410,0.0000018402, +0.0000018400,0.0000018410,0.0000018438,0.0000018481,0.0000018532, +0.0000018582,0.0000018623,0.0000018651,0.0000018667,0.0000018677, +0.0000018685,0.0000018692,0.0000018695,0.0000018692,0.0000018676, +0.0000018647,0.0000018609,0.0000018569,0.0000018532,0.0000018500, +0.0000018473,0.0000018449,0.0000018429,0.0000018413,0.0000018399, +0.0000018385,0.0000018370,0.0000018352,0.0000018326,0.0000018293, +0.0000018253,0.0000018210,0.0000018164,0.0000018115,0.0000018053, +0.0000017984,0.0000017924,0.0000017878,0.0000017864,0.0000017885, +0.0000017920,0.0000017954,0.0000017981,0.0000018005,0.0000018030, +0.0000018049,0.0000018062,0.0000018067,0.0000018055,0.0000018055, +0.0000018057,0.0000018065,0.0000018089,0.0000018115,0.0000018137, +0.0000018152,0.0000018156,0.0000018149,0.0000018132,0.0000018109, +0.0000018081,0.0000018050,0.0000018021,0.0000017995,0.0000017972, +0.0000017948,0.0000017922,0.0000017896,0.0000017870,0.0000017846, +0.0000017828,0.0000017813,0.0000017800,0.0000017788,0.0000017776, +0.0000017765,0.0000017755,0.0000017750,0.0000017748,0.0000017751, +0.0000017757,0.0000017766,0.0000017775,0.0000017782,0.0000017787, +0.0000017791,0.0000017794,0.0000017796,0.0000017802,0.0000017810, +0.0000017819,0.0000017828,0.0000017837,0.0000017843,0.0000017846, +0.0000017847,0.0000017844,0.0000017838,0.0000017831,0.0000017827, +0.0000017833,0.0000017845,0.0000017859,0.0000017877,0.0000017897, +0.0000017914,0.0000017927,0.0000017938,0.0000017946,0.0000017953, +0.0000017958,0.0000017964,0.0000017971,0.0000017979,0.0000017986, +0.0000017991,0.0000017995,0.0000018002,0.0000018013,0.0000018021, +0.0000018044,0.0000018047,0.0000018053,0.0000018054,0.0000018054, +0.0000018055,0.0000018061,0.0000018067,0.0000018069,0.0000018067, +0.0000018068,0.0000018068,0.0000018067,0.0000018064,0.0000018060, +0.0000018052,0.0000018040,0.0000018022,0.0000018000,0.0000017981, +0.0000017970,0.0000017963,0.0000017967,0.0000017983,0.0000018010, +0.0000018045,0.0000018083,0.0000018125,0.0000018171,0.0000018225, +0.0000018285,0.0000018349,0.0000018418,0.0000018482,0.0000018530, +0.0000018541,0.0000018541,0.0000018523,0.0000018487,0.0000018448, +0.0000018414,0.0000018388,0.0000018369,0.0000018354,0.0000018338, +0.0000018314,0.0000018279,0.0000018234,0.0000018185,0.0000018144, +0.0000018117,0.0000018109,0.0000018114,0.0000018124,0.0000018138, +0.0000018155,0.0000018172,0.0000018183,0.0000018184,0.0000018178, +0.0000018165,0.0000018145,0.0000018121,0.0000018098,0.0000018088, +0.0000018089,0.0000018096,0.0000018113,0.0000018135,0.0000018160, +0.0000018184,0.0000018202,0.0000018211,0.0000018215,0.0000018216, +0.0000018220,0.0000018224,0.0000018230,0.0000018241,0.0000018255, +0.0000018276,0.0000018304,0.0000018338,0.0000018375,0.0000018413, +0.0000018450,0.0000018484,0.0000018516,0.0000018549,0.0000018590, +0.0000018643,0.0000018703,0.0000018760,0.0000018799,0.0000018810, +0.0000018800,0.0000018784,0.0000018781,0.0000018791,0.0000018809, +0.0000018824,0.0000018821,0.0000018803,0.0000018781,0.0000018768, +0.0000018764,0.0000018762,0.0000018756,0.0000018744,0.0000018728, +0.0000018709,0.0000018689,0.0000018672,0.0000018661,0.0000018652, +0.0000018647,0.0000018647,0.0000018650,0.0000018654,0.0000018655, +0.0000018654,0.0000018652,0.0000018649,0.0000018642,0.0000018627, +0.0000018609,0.0000018589,0.0000018567,0.0000018543,0.0000018515, +0.0000018483,0.0000018449,0.0000018418,0.0000018392,0.0000018375, +0.0000018366,0.0000018361,0.0000018356,0.0000018351,0.0000018346, +0.0000018343,0.0000018342,0.0000018342,0.0000018343,0.0000018346, +0.0000018352,0.0000018359,0.0000018368,0.0000018380,0.0000018395, +0.0000018408,0.0000018421,0.0000018431,0.0000018439,0.0000018443, +0.0000018445,0.0000018445,0.0000018445,0.0000018443,0.0000018439, +0.0000018435,0.0000018430,0.0000018422,0.0000018412,0.0000018402, +0.0000018395,0.0000018387,0.0000018379,0.0000018371,0.0000018362, +0.0000018353,0.0000018345,0.0000018337,0.0000018331,0.0000018324, +0.0000018315,0.0000018307,0.0000018301,0.0000018301,0.0000018304, +0.0000018315,0.0000018328,0.0000018339,0.0000018350,0.0000018360, +0.0000018369,0.0000018371,0.0000018366,0.0000018354,0.0000018340, +0.0000018328,0.0000018319,0.0000018313,0.0000018307,0.0000018302, +0.0000018295,0.0000018289,0.0000018282,0.0000018277,0.0000018277, +0.0000018282,0.0000018290,0.0000018306,0.0000018326,0.0000018346, +0.0000018365,0.0000018381,0.0000018394,0.0000018407,0.0000018416, +0.0000018420,0.0000018420,0.0000018420,0.0000018410,0.0000018401, +0.0000018373,0.0000018327,0.0000018265,0.0000018186,0.0000018106, +0.0000018033,0.0000017966,0.0000017906,0.0000017891,0.0000017871, +0.0000017863,0.0000017881,0.0000017913,0.0000017949,0.0000017980, +0.0000018002,0.0000018011,0.0000018010,0.0000018004,0.0000017998, +0.0000017996,0.0000018000,0.0000018010,0.0000018027,0.0000018051, +0.0000018078,0.0000018106,0.0000018134,0.0000018161,0.0000018185, +0.0000018211,0.0000018239,0.0000018271,0.0000018309,0.0000018349, +0.0000018392,0.0000018437,0.0000018483,0.0000018530,0.0000018576, +0.0000018618,0.0000018653,0.0000018679,0.0000018695,0.0000018699, +0.0000018696,0.0000018691,0.0000018684,0.0000018678,0.0000018676, +0.0000018678,0.0000018679,0.0000018679,0.0000018678,0.0000018679, +0.0000018683,0.0000018688,0.0000018690,0.0000018689,0.0000018686, +0.0000018678,0.0000018667,0.0000018658,0.0000018654,0.0000018651, +0.0000018643,0.0000018625,0.0000018602,0.0000018589,0.0000018592, +0.0000018620,0.0000018679,0.0000018778,0.0000018916,0.0000019068, +0.0000019215,0.0000019360,0.0000019511,0.0000019655,0.0000019780, +0.0000019882,0.0000019934,0.0000019937,0.0000019953,0.0000019992, +0.0000020028,0.0000020066,0.0000020104,0.0000020116,0.0000020104, +0.0000020055,0.0000019991,0.0000019977,0.0000020028,0.0000020074, +0.0000020067,0.0000020029,0.0000020014,0.0000020078,0.0000020195, +0.0000020274,0.0000020281,0.0000020261,0.0000020227,0.0000020184, +0.0000020144,0.0000020111,0.0000020088,0.0000020070,0.0000020055, +0.0000020030,0.0000020002,0.0000020003,0.0000020039,0.0000020083, +0.0000020109,0.0000020126,0.0000020150,0.0000020177,0.0000020190, +0.0000020187,0.0000020185,0.0000020179,0.0000020166,0.0000020150, +0.0000020132,0.0000020111,0.0000020088,0.0000020067,0.0000020046, +0.0000020026,0.0000020012,0.0000020004,0.0000019993,0.0000019986, +0.0000019981,0.0000019977,0.0000019975,0.0000019976,0.0000019980, +0.0000019981,0.0000019980,0.0000019977,0.0000019970,0.0000019961, +0.0000019957,0.0000019961,0.0000019981,0.0000020014,0.0000020054, +0.0000020091,0.0000020120,0.0000020141,0.0000020155,0.0000020161, +0.0000020164,0.0000020164,0.0000020160,0.0000020152,0.0000020146, +0.0000020140,0.0000020134,0.0000020129,0.0000020123,0.0000020117, +0.0000020111,0.0000020103,0.0000020092,0.0000020076,0.0000020058, +0.0000020041,0.0000020026,0.0000020009,0.0000019989,0.0000019966, +0.0000019941,0.0000019921,0.0000019904,0.0000019892,0.0000019883, +0.0000019876,0.0000019870,0.0000019861,0.0000019852,0.0000019842, +0.0000019837,0.0000019836,0.0000019839,0.0000019843,0.0000019845, +0.0000019846,0.0000019845,0.0000019841,0.0000019834,0.0000019821, +0.0000019804,0.0000019787,0.0000019774,0.0000019768,0.0000019769, +0.0000019770,0.0000019774,0.0000019779,0.0000019782,0.0000019782, +0.0000019778,0.0000019771,0.0000019761,0.0000019750,0.0000019734, +0.0000019716,0.0000019692,0.0000019670,0.0000019647,0.0000019623, +0.0000019602,0.0000019583,0.0000019564,0.0000019547,0.0000019534, +0.0000019526,0.0000019522,0.0000019522,0.0000019521,0.0000019518, +0.0000019509,0.0000019495,0.0000019476,0.0000019453,0.0000019430, +0.0000019410,0.0000019390,0.0000019370,0.0000019354,0.0000019337, +0.0000019322,0.0000019309,0.0000019299,0.0000019293,0.0000019295, +0.0000019300,0.0000019310,0.0000019324,0.0000019341,0.0000019361, +0.0000019380,0.0000019397,0.0000019411,0.0000019421,0.0000019427, +0.0000019434,0.0000019439,0.0000019445,0.0000019452,0.0000019464, +0.0000019481,0.0000019502,0.0000019527,0.0000019554,0.0000019585, +0.0000019620,0.0000019653,0.0000019679,0.0000019700,0.0000019717, +0.0000019730,0.0000019739,0.0000019742,0.0000019742,0.0000019742, +0.0000019733,0.0000019729,0.0000019724,0.0000019717,0.0000019705, +0.0000019697,0.0000019692,0.0000019681,0.0000019685,0.0000019694, +0.0000019705,0.0000019721,0.0000019739,0.0000019759,0.0000019780, +0.0000019799,0.0000019815,0.0000019826,0.0000019830,0.0000019830, +0.0000019826,0.0000019821,0.0000019817,0.0000019814,0.0000019809, +0.0000019805,0.0000019804,0.0000019807,0.0000019811,0.0000019815, +0.0000019822,0.0000019834,0.0000019847,0.0000019863,0.0000019881, +0.0000019902,0.0000019923,0.0000019947,0.0000019970,0.0000019993, +0.0000020018,0.0000020044,0.0000020070,0.0000020094,0.0000020115, +0.0000020131,0.0000020140,0.0000020144,0.0000020145,0.0000020149, +0.0000020159,0.0000020172,0.0000020193,0.0000020222,0.0000020255, +0.0000020288,0.0000020319,0.0000020340,0.0000020352,0.0000020360, +0.0000020365,0.0000020365,0.0000020364,0.0000020363,0.0000020363, +0.0000020365,0.0000020368,0.0000020372,0.0000020376,0.0000020380, +0.0000020379,0.0000020375,0.0000020369,0.0000020358,0.0000020344, +0.0000020331,0.0000020318,0.0000020310,0.0000020306,0.0000020299, +0.0000020290,0.0000020286,0.0000020284,0.0000020272,0.0000020246, +0.0000020211,0.0000020172,0.0000020135,0.0000020101,0.0000020075, +0.0000020052,0.0000020030,0.0000020013,0.0000020005,0.0000020004, +0.0000020010,0.0000020022,0.0000020040,0.0000020064,0.0000020096, +0.0000020133,0.0000020171,0.0000020204,0.0000020226,0.0000020222, +0.0000020209,0.0000020199,0.0000020185,0.0000020175,0.0000020170, +0.0000020181,0.0000020211,0.0000020256,0.0000020313,0.0000020373, +0.0000020426,0.0000020465,0.0000020492,0.0000020515,0.0000020535, +0.0000020559,0.0000020584,0.0000020601,0.0000020609,0.0000020608, +0.0000020592,0.0000020566,0.0000020532,0.0000020493,0.0000020452, +0.0000020412,0.0000020376,0.0000020347,0.0000020326,0.0000020309, +0.0000020296,0.0000020285,0.0000020273,0.0000020263,0.0000020256, +0.0000020250,0.0000020243,0.0000020236,0.0000020232,0.0000020232, +0.0000020233,0.0000020238,0.0000020247,0.0000020253,0.0000020253, +0.0000020242,0.0000020221,0.0000020196,0.0000020172,0.0000020154, +0.0000020145,0.0000020138,0.0000020130,0.0000020132,0.0000020136, +0.0000020136,0.0000020141,0.0000020151,0.0000020159,0.0000020161, +0.0000020159,0.0000020153,0.0000020145,0.0000020134,0.0000020126, +0.0000020121,0.0000020116,0.0000020114,0.0000020113,0.0000020113, +0.0000020117,0.0000020127,0.0000020138,0.0000020157,0.0000020182, +0.0000020207,0.0000020223,0.0000020229,0.0000020232,0.0000020235, +0.0000020231,0.0000020217,0.0000020191,0.0000020154,0.0000020111, +0.0000020066,0.0000020024,0.0000019991,0.0000019965,0.0000019945, +0.0000019933,0.0000019923,0.0000019917,0.0000019911,0.0000019904, +0.0000019891,0.0000019879,0.0000019872,0.0000019865,0.0000019853, +0.0000019836,0.0000019817,0.0000019794,0.0000019768,0.0000019741, +0.0000019714,0.0000019686,0.0000019659,0.0000019635,0.0000019613, +0.0000019596,0.0000019581,0.0000019564,0.0000019545,0.0000019529, +0.0000019519,0.0000019514,0.0000019509,0.0000019503,0.0000019493, +0.0000019478,0.0000019458,0.0000019430,0.0000019396,0.0000019358, +0.0000019321,0.0000019286,0.0000019254,0.0000019224,0.0000019193, +0.0000019157,0.0000019122,0.0000019093,0.0000019072,0.0000019059, +0.0000019051,0.0000019046,0.0000019046,0.0000019046,0.0000019041, +0.0000019035,0.0000019035,0.0000019041,0.0000019051,0.0000019062, +0.0000019073,0.0000019077,0.0000019075,0.0000019061,0.0000019037, +0.0000019006,0.0000018969,0.0000018932,0.0000018902,0.0000018882, +0.0000018871,0.0000018873,0.0000018886,0.0000018901,0.0000018913, +0.0000018924,0.0000018937,0.0000018951,0.0000018965,0.0000018974, +0.0000018978,0.0000018978,0.0000018972,0.0000018960,0.0000018946, +0.0000018935,0.0000018931,0.0000018934,0.0000018944,0.0000018966, +0.0000019000,0.0000019040,0.0000019088,0.0000019145,0.0000019209, +0.0000019270,0.0000019321,0.0000019362,0.0000019394,0.0000019420, +0.0000019443,0.0000019465,0.0000019481,0.0000019487,0.0000019481, +0.0000019464,0.0000019444,0.0000019426,0.0000019407,0.0000019401, +0.0000019413,0.0000019437,0.0000019475,0.0000019510,0.0000019534, +0.0000019542,0.0000019537,0.0000019525,0.0000019512,0.0000019502, +0.0000019500,0.0000019502,0.0000019508,0.0000019519,0.0000019532, +0.0000019552,0.0000019579,0.0000019612,0.0000019642,0.0000019661, +0.0000019654,0.0000019620,0.0000019560,0.0000019495,0.0000019441, +0.0000019405,0.0000019393,0.0000019382,0.0000019379,0.0000019379, +0.0000019390,0.0000019416,0.0000019451,0.0000019480,0.0000019480, +0.0000019474,0.0000019455,0.0000019428,0.0000019412,0.0000019405, +0.0000019419,0.0000019450,0.0000019485,0.0000019515,0.0000019539, +0.0000019563,0.0000019578,0.0000019581,0.0000019576,0.0000019566, +0.0000019559,0.0000019561,0.0000019566,0.0000019573,0.0000019587, +0.0000019608,0.0000019627,0.0000019635,0.0000019636,0.0000019645, +0.0000019662,0.0000019679,0.0000019693,0.0000019707,0.0000019722, +0.0000019741,0.0000019761,0.0000019778,0.0000019783,0.0000019779, +0.0000019764,0.0000019741,0.0000019715,0.0000019686,0.0000019650, +0.0000019603,0.0000019553,0.0000019510,0.0000019484,0.0000019458, +0.0000019436,0.0000019418,0.0000019407,0.0000019402,0.0000019404, +0.0000019417,0.0000019440,0.0000019472,0.0000019511,0.0000019554, +0.0000019597,0.0000019632,0.0000019641,0.0000019622,0.0000019575, +0.0000019517,0.0000019465,0.0000019434,0.0000019427,0.0000019428, +0.0000019431,0.0000019425,0.0000019404,0.0000019379,0.0000019349, +0.0000019315,0.0000019283,0.0000019251,0.0000019217,0.0000019196, +0.0000019183,0.0000019165,0.0000019146,0.0000019122,0.0000019086, +0.0000019041,0.0000018997,0.0000018955,0.0000018909,0.0000018855, +0.0000018790,0.0000018723,0.0000018665,0.0000018625,0.0000018598, +0.0000018571,0.0000018541,0.0000018512,0.0000018487,0.0000018469, +0.0000018456,0.0000018459,0.0000018490,0.0000018549,0.0000018608, +0.0000018631,0.0000018617,0.0000018595,0.0000018584,0.0000018596, +0.0000018614,0.0000018626,0.0000018635,0.0000018645,0.0000018650, +0.0000018641,0.0000018621,0.0000018599,0.0000018582,0.0000018576, +0.0000018579,0.0000018592,0.0000018608,0.0000018624,0.0000018631, +0.0000018634,0.0000018637,0.0000018635,0.0000018631,0.0000018625, +0.0000018623,0.0000018622,0.0000018613,0.0000018588,0.0000018553, +0.0000018516,0.0000018484,0.0000018455,0.0000018431,0.0000018408, +0.0000018388,0.0000018370,0.0000018351,0.0000018335,0.0000018328, +0.0000018329,0.0000018333,0.0000018340,0.0000018349,0.0000018356, +0.0000018366,0.0000018380,0.0000018391,0.0000018397,0.0000018404, +0.0000018415,0.0000018427,0.0000018443,0.0000018464,0.0000018488, +0.0000018509,0.0000018532,0.0000018559,0.0000018590,0.0000018624, +0.0000018659,0.0000018693,0.0000018725,0.0000018750,0.0000018773, +0.0000018796,0.0000018827,0.0000018883,0.0000018978,0.0000019116, +0.0000019287,0.0000019465,0.0000019625,0.0000019745,0.0000019816, +0.0000019844,0.0000019834,0.0000019828,0.0000019806,0.0000019759, +0.0000019685,0.0000019585,0.0000019470,0.0000019350,0.0000019241, +0.0000019160,0.0000019115,0.0000019111,0.0000019123,0.0000019146, +0.0000019175,0.0000019200,0.0000019212,0.0000019215,0.0000019214, +0.0000019210,0.0000019200,0.0000019181,0.0000019156,0.0000019133, +0.0000019122,0.0000019122,0.0000019126,0.0000019125,0.0000019116, +0.0000019099,0.0000019073,0.0000019035,0.0000018990,0.0000018943, +0.0000018890,0.0000018832,0.0000018783,0.0000018767,0.0000018785, +0.0000018833,0.0000018899,0.0000018954,0.0000018980,0.0000018975, +0.0000018949,0.0000018922,0.0000018908,0.0000018906,0.0000018895, +0.0000018870,0.0000018840,0.0000018776,0.0000018664,0.0000018527, +0.0000018420,0.0000018374,0.0000018369,0.0000018372,0.0000018372, +0.0000018377,0.0000018405,0.0000018442,0.0000018466,0.0000018461, +0.0000018432,0.0000018391,0.0000018349,0.0000018315,0.0000018288, +0.0000018269,0.0000018260,0.0000018260,0.0000018263,0.0000018267, +0.0000018268,0.0000018268,0.0000018266,0.0000018259,0.0000018249, +0.0000018244,0.0000018253,0.0000018268,0.0000018251,0.0000018168, +0.0000018092,0.0000018079,0.0000018115,0.0000018154,0.0000018173, +0.0000018180,0.0000018179,0.0000018172,0.0000018149,0.0000018113, +0.0000018077,0.0000018040,0.0000018009,0.0000017991,0.0000017979, +0.0000017969,0.0000017959,0.0000017949,0.0000017937,0.0000017926, +0.0000017917,0.0000017910,0.0000017906,0.0000017904,0.0000017902, +0.0000017903,0.0000017903,0.0000017899,0.0000017895,0.0000017888, +0.0000017879,0.0000017868,0.0000017856,0.0000017848,0.0000017844, +0.0000017844,0.0000017850,0.0000017859,0.0000017869,0.0000017881, +0.0000017892,0.0000017907,0.0000017927,0.0000017950,0.0000017976, +0.0000018002,0.0000018022,0.0000018034,0.0000018039,0.0000018040, +0.0000018042,0.0000018040,0.0000018030,0.0000018008,0.0000017967, +0.0000017905,0.0000017840,0.0000017806,0.0000017826,0.0000017932, +0.0000018067,0.0000018161,0.0000018209,0.0000018252,0.0000018333, +0.0000018451,0.0000018557,0.0000018599,0.0000018597,0.0000018590, +0.0000018592,0.0000018597,0.0000018605,0.0000018619,0.0000018635, +0.0000018653,0.0000018673,0.0000018685,0.0000018685,0.0000018679, +0.0000018670,0.0000018662,0.0000018655,0.0000018646,0.0000018631, +0.0000018611,0.0000018593,0.0000018581,0.0000018587,0.0000018617, +0.0000018672,0.0000018730,0.0000018784,0.0000018833,0.0000018872, +0.0000018895,0.0000018897,0.0000018877,0.0000018828,0.0000018761, +0.0000018694,0.0000018643,0.0000018617,0.0000018611,0.0000018626, +0.0000018670,0.0000018706,0.0000018684,0.0000018626,0.0000018668, +0.0000018732,0.0000018697,0.0000018693,0.0000018729,0.0000018789, +0.0000018954,0.0000019047,0.0000018980,0.0000018867,0.0000018830, +0.0000018853,0.0000018898,0.0000018943,0.0000018990,0.0000019017, +0.0000019014,0.0000018955,0.0000018817,0.0000018695,0.0000018650, +0.0000018616,0.0000018558,0.0000018507,0.0000018479,0.0000018469, +0.0000018472,0.0000018480,0.0000018487,0.0000018492,0.0000018495, +0.0000018496,0.0000018496,0.0000018495,0.0000018489,0.0000018485, +0.0000018486,0.0000018490,0.0000018492,0.0000018490,0.0000018492, +0.0000018488,0.0000018478,0.0000018467,0.0000018456,0.0000018445, +0.0000018437,0.0000018432,0.0000018433,0.0000018441,0.0000018468, +0.0000018500,0.0000018538,0.0000018583,0.0000018626,0.0000018665, +0.0000018688,0.0000018714,0.0000018732,0.0000018743,0.0000018749, +0.0000018747,0.0000018733,0.0000018708,0.0000018669,0.0000018623, +0.0000018577,0.0000018537,0.0000018502,0.0000018472,0.0000018449, +0.0000018431,0.0000018411,0.0000018386,0.0000018369,0.0000018357, +0.0000018343,0.0000018324,0.0000018298,0.0000018264,0.0000018223, +0.0000018179,0.0000018132,0.0000018080,0.0000018016,0.0000017948, +0.0000017896,0.0000017885,0.0000017888,0.0000017923,0.0000017961, +0.0000017996,0.0000018028,0.0000018059,0.0000018078,0.0000018088, +0.0000018084,0.0000018069,0.0000018042,0.0000018036,0.0000018024, +0.0000018018,0.0000018027,0.0000018032,0.0000018036,0.0000018037, +0.0000018032,0.0000018023,0.0000018007,0.0000017986,0.0000017966, +0.0000017947,0.0000017927,0.0000017904,0.0000017879,0.0000017854, +0.0000017828,0.0000017806,0.0000017792,0.0000017783,0.0000017776, +0.0000017769,0.0000017762,0.0000017754,0.0000017747,0.0000017741, +0.0000017737,0.0000017736,0.0000017739,0.0000017747,0.0000017756, +0.0000017763,0.0000017767,0.0000017770,0.0000017772,0.0000017774, +0.0000017778,0.0000017783,0.0000017791,0.0000017802,0.0000017815, +0.0000017827,0.0000017839,0.0000017845,0.0000017847,0.0000017845, +0.0000017842,0.0000017846,0.0000017855,0.0000017867,0.0000017883, +0.0000017903,0.0000017923,0.0000017943,0.0000017960,0.0000017974, +0.0000017984,0.0000017991,0.0000017999,0.0000018010,0.0000018021, +0.0000018030,0.0000018037,0.0000018041,0.0000018043,0.0000018044, +0.0000018044,0.0000018084,0.0000018082,0.0000018084,0.0000018085, +0.0000018084,0.0000018082,0.0000018081,0.0000018084,0.0000018088, +0.0000018089,0.0000018089,0.0000018090,0.0000018089,0.0000018084, +0.0000018076,0.0000018068,0.0000018059,0.0000018050,0.0000018039, +0.0000018028,0.0000018015,0.0000018003,0.0000017991,0.0000017984, +0.0000017992,0.0000018001,0.0000018014,0.0000018037,0.0000018066, +0.0000018101,0.0000018140,0.0000018186,0.0000018244,0.0000018313, +0.0000018385,0.0000018450,0.0000018504,0.0000018534,0.0000018531, +0.0000018516,0.0000018486,0.0000018451,0.0000018417,0.0000018389, +0.0000018367,0.0000018350,0.0000018335,0.0000018317,0.0000018289, +0.0000018252,0.0000018207,0.0000018168,0.0000018140,0.0000018126, +0.0000018129,0.0000018136,0.0000018146,0.0000018159,0.0000018170, +0.0000018178,0.0000018181,0.0000018179,0.0000018171,0.0000018156, +0.0000018137,0.0000018119,0.0000018102,0.0000018097,0.0000018090, +0.0000018090,0.0000018099,0.0000018114,0.0000018133,0.0000018151, +0.0000018166,0.0000018179,0.0000018183,0.0000018184,0.0000018183, +0.0000018186,0.0000018192,0.0000018209,0.0000018236,0.0000018273, +0.0000018318,0.0000018365,0.0000018407,0.0000018441,0.0000018467, +0.0000018490,0.0000018517,0.0000018558,0.0000018613,0.0000018676, +0.0000018732,0.0000018766,0.0000018769,0.0000018758,0.0000018743, +0.0000018743,0.0000018758,0.0000018779,0.0000018789,0.0000018783, +0.0000018774,0.0000018767,0.0000018763,0.0000018759,0.0000018750, +0.0000018734,0.0000018714,0.0000018692,0.0000018672,0.0000018658, +0.0000018648,0.0000018641,0.0000018638,0.0000018636,0.0000018636, +0.0000018637,0.0000018637,0.0000018635,0.0000018632,0.0000018627, +0.0000018618,0.0000018603,0.0000018586,0.0000018566,0.0000018545, +0.0000018519,0.0000018489,0.0000018455,0.0000018421,0.0000018392, +0.0000018372,0.0000018361,0.0000018354,0.0000018348,0.0000018344, +0.0000018340,0.0000018338,0.0000018338,0.0000018339,0.0000018341, +0.0000018343,0.0000018348,0.0000018355,0.0000018363,0.0000018374, +0.0000018388,0.0000018402,0.0000018413,0.0000018424,0.0000018431, +0.0000018436,0.0000018438,0.0000018436,0.0000018433,0.0000018426, +0.0000018418,0.0000018409,0.0000018400,0.0000018389,0.0000018376, +0.0000018363,0.0000018349,0.0000018330,0.0000018310,0.0000018291, +0.0000018275,0.0000018264,0.0000018257,0.0000018256,0.0000018257, +0.0000018257,0.0000018256,0.0000018256,0.0000018257,0.0000018262, +0.0000018270,0.0000018285,0.0000018303,0.0000018324,0.0000018343, +0.0000018360,0.0000018371,0.0000018372,0.0000018372,0.0000018367, +0.0000018355,0.0000018343,0.0000018332,0.0000018324,0.0000018318, +0.0000018313,0.0000018307,0.0000018299,0.0000018289,0.0000018280, +0.0000018273,0.0000018271,0.0000018270,0.0000018272,0.0000018280, +0.0000018292,0.0000018308,0.0000018324,0.0000018341,0.0000018359, +0.0000018374,0.0000018385,0.0000018389,0.0000018390,0.0000018390, +0.0000018386,0.0000018369,0.0000018359,0.0000018336,0.0000018298, +0.0000018254,0.0000018200,0.0000018139,0.0000018074,0.0000018014, +0.0000017951,0.0000017895,0.0000017879,0.0000017865,0.0000017859, +0.0000017872,0.0000017897,0.0000017923,0.0000017945,0.0000017961, +0.0000017966,0.0000017962,0.0000017951,0.0000017937,0.0000017929, +0.0000017929,0.0000017940,0.0000017962,0.0000017991,0.0000018023, +0.0000018051,0.0000018077,0.0000018102,0.0000018126,0.0000018150, +0.0000018175,0.0000018201,0.0000018230,0.0000018263,0.0000018302, +0.0000018347,0.0000018395,0.0000018445,0.0000018494,0.0000018538, +0.0000018576,0.0000018607,0.0000018628,0.0000018638,0.0000018640, +0.0000018639,0.0000018635,0.0000018630,0.0000018624,0.0000018619, +0.0000018621,0.0000018627,0.0000018631,0.0000018632,0.0000018633, +0.0000018633,0.0000018629,0.0000018623,0.0000018618,0.0000018616, +0.0000018613,0.0000018601,0.0000018580,0.0000018557,0.0000018546, +0.0000018550,0.0000018571,0.0000018616,0.0000018702,0.0000018833, +0.0000018986,0.0000019140,0.0000019290,0.0000019447,0.0000019597, +0.0000019727,0.0000019836,0.0000019893,0.0000019897,0.0000019919, +0.0000019964,0.0000020001,0.0000020047,0.0000020093,0.0000020106, +0.0000020091,0.0000020036,0.0000019975,0.0000019980,0.0000020033, +0.0000020064,0.0000020048,0.0000020010,0.0000020000,0.0000020060, +0.0000020170,0.0000020251,0.0000020264,0.0000020248,0.0000020219, +0.0000020179,0.0000020138,0.0000020105,0.0000020082,0.0000020071, +0.0000020067,0.0000020051,0.0000020022,0.0000020006,0.0000020019, +0.0000020057,0.0000020087,0.0000020104,0.0000020119,0.0000020140, +0.0000020160,0.0000020175,0.0000020179,0.0000020175,0.0000020170, +0.0000020167,0.0000020162,0.0000020152,0.0000020138,0.0000020123, +0.0000020103,0.0000020080,0.0000020056,0.0000020031,0.0000020007, +0.0000019986,0.0000019966,0.0000019945,0.0000019925,0.0000019910, +0.0000019904,0.0000019904,0.0000019910,0.0000019918,0.0000019925, +0.0000019927,0.0000019926,0.0000019920,0.0000019916,0.0000019916, +0.0000019924,0.0000019940,0.0000019963,0.0000019987,0.0000020009, +0.0000020030,0.0000020048,0.0000020060,0.0000020066,0.0000020070, +0.0000020073,0.0000020074,0.0000020070,0.0000020061,0.0000020050, +0.0000020034,0.0000020015,0.0000019995,0.0000019974,0.0000019952, +0.0000019930,0.0000019910,0.0000019889,0.0000019867,0.0000019845, +0.0000019823,0.0000019801,0.0000019781,0.0000019764,0.0000019751, +0.0000019741,0.0000019733,0.0000019725,0.0000019716,0.0000019707, +0.0000019702,0.0000019704,0.0000019713,0.0000019725,0.0000019734, +0.0000019742,0.0000019748,0.0000019755,0.0000019758,0.0000019756, +0.0000019748,0.0000019740,0.0000019734,0.0000019733,0.0000019736, +0.0000019739,0.0000019745,0.0000019751,0.0000019758,0.0000019762, +0.0000019764,0.0000019762,0.0000019758,0.0000019752,0.0000019743, +0.0000019730,0.0000019712,0.0000019691,0.0000019668,0.0000019641, +0.0000019615,0.0000019593,0.0000019565,0.0000019543,0.0000019522, +0.0000019503,0.0000019487,0.0000019475,0.0000019466,0.0000019457, +0.0000019447,0.0000019434,0.0000019418,0.0000019402,0.0000019388, +0.0000019371,0.0000019356,0.0000019344,0.0000019334,0.0000019322, +0.0000019311,0.0000019297,0.0000019281,0.0000019271,0.0000019262, +0.0000019257,0.0000019257,0.0000019263,0.0000019275,0.0000019290, +0.0000019305,0.0000019319,0.0000019332,0.0000019340,0.0000019344, +0.0000019347,0.0000019349,0.0000019352,0.0000019354,0.0000019361, +0.0000019374,0.0000019391,0.0000019413,0.0000019438,0.0000019469, +0.0000019506,0.0000019544,0.0000019578,0.0000019609,0.0000019639, +0.0000019663,0.0000019682,0.0000019700,0.0000019718,0.0000019725, +0.0000019732,0.0000019739,0.0000019731,0.0000019734,0.0000019728, +0.0000019714,0.0000019702,0.0000019688,0.0000019681,0.0000019677, +0.0000019680,0.0000019684,0.0000019682,0.0000019687,0.0000019696, +0.0000019705,0.0000019715,0.0000019726,0.0000019736,0.0000019742, +0.0000019746,0.0000019749,0.0000019752,0.0000019754,0.0000019756, +0.0000019759,0.0000019766,0.0000019775,0.0000019784,0.0000019791, +0.0000019799,0.0000019808,0.0000019819,0.0000019833,0.0000019849, +0.0000019871,0.0000019895,0.0000019919,0.0000019938,0.0000019952, +0.0000019967,0.0000019984,0.0000019999,0.0000020013,0.0000020024, +0.0000020032,0.0000020036,0.0000020035,0.0000020029,0.0000020024, +0.0000020025,0.0000020031,0.0000020046,0.0000020068,0.0000020094, +0.0000020121,0.0000020148,0.0000020170,0.0000020186,0.0000020195, +0.0000020199,0.0000020202,0.0000020206,0.0000020208,0.0000020207, +0.0000020206,0.0000020206,0.0000020209,0.0000020218,0.0000020232, +0.0000020250,0.0000020266,0.0000020278,0.0000020282,0.0000020278, +0.0000020272,0.0000020266,0.0000020262,0.0000020258,0.0000020254, +0.0000020246,0.0000020238,0.0000020234,0.0000020227,0.0000020217, +0.0000020199,0.0000020172,0.0000020137,0.0000020100,0.0000020071, +0.0000020042,0.0000020015,0.0000019993,0.0000019973,0.0000019955, +0.0000019937,0.0000019925,0.0000019918,0.0000019917,0.0000019923, +0.0000019940,0.0000019972,0.0000020018,0.0000020071,0.0000020120, +0.0000020160,0.0000020178,0.0000020171,0.0000020155,0.0000020143, +0.0000020133,0.0000020133,0.0000020154,0.0000020194,0.0000020250, +0.0000020315,0.0000020383,0.0000020441,0.0000020484,0.0000020513, +0.0000020535,0.0000020558,0.0000020580,0.0000020601,0.0000020609, +0.0000020611,0.0000020606,0.0000020592,0.0000020567,0.0000020531, +0.0000020489,0.0000020445,0.0000020403,0.0000020369,0.0000020342, +0.0000020323,0.0000020308,0.0000020300,0.0000020298,0.0000020302, +0.0000020304,0.0000020304,0.0000020305,0.0000020307,0.0000020309, +0.0000020314,0.0000020319,0.0000020321,0.0000020320,0.0000020312, +0.0000020296,0.0000020273,0.0000020243,0.0000020214,0.0000020197, +0.0000020189,0.0000020183,0.0000020178,0.0000020175,0.0000020171, +0.0000020167,0.0000020162,0.0000020155,0.0000020149,0.0000020131, +0.0000020115,0.0000020106,0.0000020101,0.0000020099,0.0000020100, +0.0000020099,0.0000020095,0.0000020089,0.0000020078,0.0000020065, +0.0000020053,0.0000020049,0.0000020053,0.0000020069,0.0000020099, +0.0000020130,0.0000020155,0.0000020175,0.0000020195,0.0000020212, +0.0000020222,0.0000020221,0.0000020208,0.0000020184,0.0000020154, +0.0000020120,0.0000020090,0.0000020064,0.0000020041,0.0000020023, +0.0000020007,0.0000019991,0.0000019978,0.0000019965,0.0000019946, +0.0000019927,0.0000019913,0.0000019900,0.0000019887,0.0000019870, +0.0000019852,0.0000019831,0.0000019808,0.0000019787,0.0000019767, +0.0000019746,0.0000019726,0.0000019709,0.0000019695,0.0000019684, +0.0000019678,0.0000019670,0.0000019658,0.0000019643,0.0000019627, +0.0000019612,0.0000019598,0.0000019586,0.0000019574,0.0000019563, +0.0000019551,0.0000019535,0.0000019516,0.0000019491,0.0000019461, +0.0000019425,0.0000019383,0.0000019341,0.0000019295,0.0000019244, +0.0000019194,0.0000019148,0.0000019111,0.0000019088,0.0000019071, +0.0000019059,0.0000019055,0.0000019058,0.0000019060,0.0000019057, +0.0000019053,0.0000019048,0.0000019047,0.0000019053,0.0000019058, +0.0000019063,0.0000019062,0.0000019052,0.0000019033,0.0000019005, +0.0000018970,0.0000018931,0.0000018895,0.0000018870,0.0000018855, +0.0000018848,0.0000018851,0.0000018858,0.0000018864,0.0000018870, +0.0000018877,0.0000018884,0.0000018891,0.0000018899,0.0000018908, +0.0000018915,0.0000018916,0.0000018910,0.0000018897,0.0000018882, +0.0000018869,0.0000018858,0.0000018855,0.0000018864,0.0000018878, +0.0000018898,0.0000018928,0.0000018973,0.0000019028,0.0000019085, +0.0000019140,0.0000019192,0.0000019236,0.0000019274,0.0000019309, +0.0000019343,0.0000019369,0.0000019384,0.0000019394,0.0000019402, +0.0000019410,0.0000019415,0.0000019410,0.0000019403,0.0000019398, +0.0000019395,0.0000019400,0.0000019416,0.0000019438,0.0000019457, +0.0000019467,0.0000019466,0.0000019459,0.0000019453,0.0000019452, +0.0000019454,0.0000019459,0.0000019462,0.0000019463,0.0000019467, +0.0000019478,0.0000019501,0.0000019532,0.0000019571,0.0000019609, +0.0000019630,0.0000019622,0.0000019584,0.0000019520,0.0000019457, +0.0000019405,0.0000019375,0.0000019363,0.0000019351,0.0000019333, +0.0000019330,0.0000019340,0.0000019368,0.0000019408,0.0000019444, +0.0000019458,0.0000019450,0.0000019438,0.0000019418,0.0000019408, +0.0000019409,0.0000019418,0.0000019436,0.0000019456,0.0000019481, +0.0000019500,0.0000019509,0.0000019511,0.0000019505,0.0000019502, +0.0000019506,0.0000019514,0.0000019524,0.0000019537,0.0000019555, +0.0000019573,0.0000019580,0.0000019583,0.0000019597,0.0000019617, +0.0000019634,0.0000019644,0.0000019650,0.0000019658,0.0000019671, +0.0000019690,0.0000019709,0.0000019726,0.0000019732,0.0000019725, +0.0000019706,0.0000019679,0.0000019647,0.0000019608,0.0000019561, +0.0000019510,0.0000019473,0.0000019452,0.0000019428,0.0000019405, +0.0000019390,0.0000019385,0.0000019386,0.0000019394,0.0000019411, +0.0000019438,0.0000019471,0.0000019508,0.0000019548,0.0000019581, +0.0000019591,0.0000019576,0.0000019529,0.0000019473,0.0000019425, +0.0000019396,0.0000019386,0.0000019386,0.0000019388,0.0000019390, +0.0000019382,0.0000019362,0.0000019332,0.0000019296,0.0000019259, +0.0000019232,0.0000019209,0.0000019183,0.0000019164,0.0000019147, +0.0000019124,0.0000019107,0.0000019085,0.0000019046,0.0000018993, +0.0000018948,0.0000018911,0.0000018875,0.0000018832,0.0000018771, +0.0000018703,0.0000018643,0.0000018601,0.0000018575,0.0000018555, +0.0000018525,0.0000018496,0.0000018472,0.0000018450,0.0000018435, +0.0000018427,0.0000018441,0.0000018491,0.0000018556,0.0000018595, +0.0000018592,0.0000018565,0.0000018542,0.0000018545,0.0000018568, +0.0000018595,0.0000018610,0.0000018616,0.0000018620,0.0000018615, +0.0000018602,0.0000018580,0.0000018554,0.0000018536,0.0000018528, +0.0000018530,0.0000018542,0.0000018558,0.0000018569,0.0000018578, +0.0000018582,0.0000018580,0.0000018577,0.0000018578,0.0000018582, +0.0000018582,0.0000018570,0.0000018545,0.0000018515,0.0000018485, +0.0000018453,0.0000018424,0.0000018400,0.0000018379,0.0000018357, +0.0000018333,0.0000018310,0.0000018292,0.0000018285,0.0000018286, +0.0000018290,0.0000018298,0.0000018307,0.0000018315,0.0000018324, +0.0000018337,0.0000018346,0.0000018351,0.0000018356,0.0000018363, +0.0000018370,0.0000018380,0.0000018394,0.0000018411,0.0000018431, +0.0000018454,0.0000018480,0.0000018509,0.0000018542,0.0000018578, +0.0000018618,0.0000018656,0.0000018692,0.0000018723,0.0000018747, +0.0000018766,0.0000018792,0.0000018845,0.0000018936,0.0000019070, +0.0000019238,0.0000019418,0.0000019585,0.0000019715,0.0000019793, +0.0000019827,0.0000019819,0.0000019808,0.0000019776,0.0000019723, +0.0000019651,0.0000019564,0.0000019464,0.0000019360,0.0000019265, +0.0000019192,0.0000019147,0.0000019132,0.0000019136,0.0000019149, +0.0000019177,0.0000019199,0.0000019213,0.0000019217,0.0000019219, +0.0000019217,0.0000019206,0.0000019183,0.0000019157,0.0000019137, +0.0000019129,0.0000019131,0.0000019133,0.0000019131,0.0000019119, +0.0000019092,0.0000019053,0.0000019008,0.0000018964,0.0000018919, +0.0000018868,0.0000018821,0.0000018791,0.0000018791,0.0000018825, +0.0000018874,0.0000018922,0.0000018952,0.0000018950,0.0000018928, +0.0000018897,0.0000018880,0.0000018874,0.0000018862,0.0000018839, +0.0000018811,0.0000018762,0.0000018669,0.0000018540,0.0000018420, +0.0000018360,0.0000018340,0.0000018349,0.0000018358,0.0000018370, +0.0000018401,0.0000018446,0.0000018479,0.0000018486,0.0000018471, +0.0000018437,0.0000018396,0.0000018362,0.0000018337,0.0000018318, +0.0000018304,0.0000018295,0.0000018288,0.0000018281,0.0000018275, +0.0000018269,0.0000018259,0.0000018250,0.0000018249,0.0000018258, +0.0000018267,0.0000018252,0.0000018184,0.0000018109,0.0000018080, +0.0000018099,0.0000018140,0.0000018168,0.0000018183,0.0000018189, +0.0000018191,0.0000018185,0.0000018161,0.0000018125,0.0000018074, +0.0000018025,0.0000017994,0.0000017979,0.0000017965,0.0000017951, +0.0000017942,0.0000017936,0.0000017934,0.0000017930,0.0000017927, +0.0000017928,0.0000017932,0.0000017940,0.0000017943,0.0000017945, +0.0000017948,0.0000017947,0.0000017942,0.0000017931,0.0000017913, +0.0000017891,0.0000017871,0.0000017856,0.0000017850,0.0000017851, +0.0000017855,0.0000017865,0.0000017875,0.0000017885,0.0000017896, +0.0000017911,0.0000017929,0.0000017951,0.0000017971,0.0000017989, +0.0000018000,0.0000018005,0.0000018004,0.0000017997,0.0000017983, +0.0000017959,0.0000017928,0.0000017889,0.0000017847,0.0000017817, +0.0000017814,0.0000017868,0.0000017986,0.0000018110,0.0000018195, +0.0000018243,0.0000018291,0.0000018375,0.0000018493,0.0000018591, +0.0000018630,0.0000018627,0.0000018620,0.0000018622,0.0000018629, +0.0000018635,0.0000018640,0.0000018646,0.0000018658,0.0000018670, +0.0000018669,0.0000018658,0.0000018647,0.0000018637,0.0000018631, +0.0000018623,0.0000018607,0.0000018581,0.0000018554,0.0000018536, +0.0000018539,0.0000018567,0.0000018626,0.0000018691,0.0000018750, +0.0000018800,0.0000018836,0.0000018851,0.0000018839,0.0000018807, +0.0000018758,0.0000018706,0.0000018663,0.0000018631,0.0000018609, +0.0000018598,0.0000018607,0.0000018653,0.0000018705,0.0000018698, +0.0000018630,0.0000018636,0.0000018716,0.0000018703,0.0000018676, +0.0000018707,0.0000018753,0.0000018895,0.0000019035,0.0000018999, +0.0000018888,0.0000018837,0.0000018847,0.0000018885,0.0000018926, +0.0000018967,0.0000018988,0.0000018987,0.0000018935,0.0000018799, +0.0000018671,0.0000018617,0.0000018581,0.0000018529,0.0000018486, +0.0000018462,0.0000018455,0.0000018457,0.0000018463,0.0000018469, +0.0000018472,0.0000018470,0.0000018476,0.0000018491,0.0000018498, +0.0000018540,0.0000018603,0.0000018667,0.0000018724,0.0000018770, +0.0000018804,0.0000018824,0.0000018829,0.0000018824,0.0000018808, +0.0000018787,0.0000018759,0.0000018727,0.0000018691,0.0000018655, +0.0000018618,0.0000018583,0.0000018556,0.0000018537,0.0000018553, +0.0000018570,0.0000018587,0.0000018611,0.0000018646,0.0000018681, +0.0000018711,0.0000018735,0.0000018755,0.0000018766,0.0000018768, +0.0000018757,0.0000018729,0.0000018685,0.0000018637,0.0000018593, +0.0000018557,0.0000018532,0.0000018518,0.0000018505,0.0000018481, +0.0000018443,0.0000018402,0.0000018362,0.0000018340,0.0000018329, +0.0000018317,0.0000018297,0.0000018269,0.0000018232,0.0000018194, +0.0000018155,0.0000018109,0.0000018044,0.0000017975,0.0000017911, +0.0000017892,0.0000017896,0.0000017924,0.0000017968,0.0000018012, +0.0000018050,0.0000018081,0.0000018103,0.0000018112,0.0000018100, +0.0000018075,0.0000018047,0.0000018010,0.0000017997,0.0000017966, +0.0000017956,0.0000017944,0.0000017938,0.0000017934,0.0000017929, +0.0000017923,0.0000017914,0.0000017905,0.0000017894,0.0000017880, +0.0000017863,0.0000017845,0.0000017825,0.0000017805,0.0000017788, +0.0000017777,0.0000017769,0.0000017764,0.0000017758,0.0000017752, +0.0000017744,0.0000017736,0.0000017728,0.0000017722,0.0000017719, +0.0000017720,0.0000017727,0.0000017734,0.0000017739,0.0000017741, +0.0000017743,0.0000017745,0.0000017747,0.0000017752,0.0000017764, +0.0000017778,0.0000017793,0.0000017812,0.0000017830,0.0000017843, +0.0000017850,0.0000017853,0.0000017853,0.0000017854,0.0000017856, +0.0000017863,0.0000017874,0.0000017891,0.0000017910,0.0000017931, +0.0000017953,0.0000017973,0.0000017987,0.0000017998,0.0000018009, +0.0000018025,0.0000018040,0.0000018055,0.0000018070,0.0000018081, +0.0000018088,0.0000018091,0.0000018090,0.0000018120,0.0000018118, +0.0000018117,0.0000018115,0.0000018111,0.0000018107,0.0000018103, +0.0000018102,0.0000018107,0.0000018115,0.0000018124,0.0000018129, +0.0000018134,0.0000018134,0.0000018127,0.0000018114,0.0000018099, +0.0000018083,0.0000018070,0.0000018060,0.0000018052,0.0000018044, +0.0000018033,0.0000018020,0.0000018011,0.0000018007,0.0000018005, +0.0000018006,0.0000018016,0.0000018029,0.0000018046,0.0000018068, +0.0000018098,0.0000018141,0.0000018200,0.0000018268,0.0000018339, +0.0000018408,0.0000018468,0.0000018512,0.0000018519,0.0000018504, +0.0000018480,0.0000018447,0.0000018412,0.0000018381,0.0000018359, +0.0000018344,0.0000018333,0.0000018320,0.0000018298,0.0000018265, +0.0000018227,0.0000018190,0.0000018162,0.0000018144,0.0000018141, +0.0000018143,0.0000018149,0.0000018156,0.0000018165,0.0000018176, +0.0000018188,0.0000018199,0.0000018200,0.0000018195,0.0000018182, +0.0000018161,0.0000018136,0.0000018110,0.0000018093,0.0000018083, +0.0000018081,0.0000018087,0.0000018102,0.0000018125,0.0000018146, +0.0000018156,0.0000018154,0.0000018143,0.0000018130,0.0000018127, +0.0000018137,0.0000018163,0.0000018204,0.0000018257,0.0000018312, +0.0000018361,0.0000018400,0.0000018428,0.0000018445,0.0000018460, +0.0000018482,0.0000018521,0.0000018581,0.0000018652,0.0000018711, +0.0000018737,0.0000018729,0.0000018710,0.0000018701,0.0000018710, +0.0000018735,0.0000018761,0.0000018771,0.0000018768,0.0000018762, +0.0000018756,0.0000018746,0.0000018731,0.0000018711,0.0000018688, +0.0000018667,0.0000018651,0.0000018640,0.0000018633,0.0000018628, +0.0000018623,0.0000018618,0.0000018616,0.0000018615,0.0000018614, +0.0000018611,0.0000018608,0.0000018602,0.0000018592,0.0000018577, +0.0000018559,0.0000018540,0.0000018516,0.0000018489,0.0000018458, +0.0000018424,0.0000018391,0.0000018366,0.0000018349,0.0000018337, +0.0000018330,0.0000018326,0.0000018325,0.0000018326,0.0000018328, +0.0000018331,0.0000018333,0.0000018336,0.0000018340,0.0000018346, +0.0000018354,0.0000018364,0.0000018375,0.0000018387,0.0000018397, +0.0000018405,0.0000018411,0.0000018413,0.0000018412,0.0000018408, +0.0000018402,0.0000018392,0.0000018381,0.0000018367,0.0000018352, +0.0000018333,0.0000018307,0.0000018275,0.0000018236,0.0000018192, +0.0000018149,0.0000018109,0.0000018075,0.0000018050,0.0000018036, +0.0000018030,0.0000018030,0.0000018036,0.0000018045,0.0000018058, +0.0000018074,0.0000018093,0.0000018115,0.0000018142,0.0000018174, +0.0000018209,0.0000018244,0.0000018278,0.0000018308,0.0000018331, +0.0000018347,0.0000018354,0.0000018350,0.0000018341,0.0000018330, +0.0000018322,0.0000018317,0.0000018317,0.0000018315,0.0000018309, +0.0000018302,0.0000018297,0.0000018292,0.0000018287,0.0000018281, +0.0000018274,0.0000018272,0.0000018269,0.0000018269,0.0000018274, +0.0000018285,0.0000018301,0.0000018319,0.0000018337,0.0000018350, +0.0000018358,0.0000018360,0.0000018356,0.0000018350,0.0000018342, +0.0000018327,0.0000018311,0.0000018299,0.0000018282,0.0000018257, +0.0000018223,0.0000018179,0.0000018128,0.0000018074,0.0000018025, +0.0000017976,0.0000017929,0.0000017891,0.0000017882,0.0000017874, +0.0000017872,0.0000017880,0.0000017894,0.0000017903,0.0000017906, +0.0000017900,0.0000017887,0.0000017872,0.0000017865,0.0000017868, +0.0000017884,0.0000017908,0.0000017938,0.0000017971,0.0000018003, +0.0000018031,0.0000018055,0.0000018078,0.0000018101,0.0000018121, +0.0000018143,0.0000018168,0.0000018194,0.0000018220,0.0000018247, +0.0000018277,0.0000018311,0.0000018350,0.0000018393,0.0000018436, +0.0000018479,0.0000018517,0.0000018549,0.0000018571,0.0000018582, +0.0000018583,0.0000018584,0.0000018587,0.0000018590,0.0000018589, +0.0000018587,0.0000018587,0.0000018587,0.0000018584,0.0000018579, +0.0000018577,0.0000018575,0.0000018568,0.0000018553,0.0000018530, +0.0000018514,0.0000018514,0.0000018525,0.0000018546,0.0000018581, +0.0000018650,0.0000018765,0.0000018918,0.0000019080,0.0000019237, +0.0000019396,0.0000019547,0.0000019678,0.0000019792,0.0000019847, +0.0000019851,0.0000019883,0.0000019931,0.0000019974,0.0000020031, +0.0000020077,0.0000020090,0.0000020071,0.0000020010,0.0000019964, +0.0000019981,0.0000020031,0.0000020050,0.0000020032,0.0000019994, +0.0000019986,0.0000020037,0.0000020136,0.0000020217,0.0000020244, +0.0000020234,0.0000020211,0.0000020179,0.0000020141,0.0000020103, +0.0000020076,0.0000020069,0.0000020073,0.0000020072,0.0000020053, +0.0000020025,0.0000020014,0.0000020028,0.0000020060,0.0000020086, +0.0000020105,0.0000020118,0.0000020131,0.0000020142,0.0000020150, +0.0000020153,0.0000020153,0.0000020151,0.0000020146,0.0000020137, +0.0000020126,0.0000020111,0.0000020093,0.0000020075,0.0000020055, +0.0000020033,0.0000020014,0.0000019993,0.0000019970,0.0000019943, +0.0000019915,0.0000019887,0.0000019865,0.0000019846,0.0000019832, +0.0000019826,0.0000019826,0.0000019835,0.0000019848,0.0000019858, +0.0000019864,0.0000019866,0.0000019867,0.0000019867,0.0000019867, +0.0000019868,0.0000019872,0.0000019878,0.0000019886,0.0000019895, +0.0000019902,0.0000019905,0.0000019905,0.0000019901,0.0000019892, +0.0000019880,0.0000019862,0.0000019842,0.0000019824,0.0000019808, +0.0000019791,0.0000019773,0.0000019757,0.0000019741,0.0000019725, +0.0000019711,0.0000019696,0.0000019681,0.0000019668,0.0000019656, +0.0000019646,0.0000019638,0.0000019631,0.0000019624,0.0000019617, +0.0000019611,0.0000019609,0.0000019613,0.0000019624,0.0000019639, +0.0000019653,0.0000019668,0.0000019682,0.0000019698,0.0000019710, +0.0000019718,0.0000019723,0.0000019725,0.0000019725,0.0000019728, +0.0000019733,0.0000019736,0.0000019741,0.0000019746,0.0000019754, +0.0000019759,0.0000019762,0.0000019762,0.0000019758,0.0000019752, +0.0000019744,0.0000019729,0.0000019708,0.0000019685,0.0000019660, +0.0000019630,0.0000019600,0.0000019571,0.0000019540,0.0000019512, +0.0000019487,0.0000019463,0.0000019440,0.0000019422,0.0000019409, +0.0000019399,0.0000019390,0.0000019382,0.0000019378,0.0000019373, +0.0000019365,0.0000019357,0.0000019354,0.0000019351,0.0000019348, +0.0000019341,0.0000019331,0.0000019316,0.0000019299,0.0000019280, +0.0000019263,0.0000019251,0.0000019242,0.0000019242,0.0000019247, +0.0000019255,0.0000019263,0.0000019271,0.0000019278,0.0000019282, +0.0000019283,0.0000019282,0.0000019281,0.0000019279,0.0000019276, +0.0000019278,0.0000019284,0.0000019293,0.0000019308,0.0000019326, +0.0000019350,0.0000019380,0.0000019413,0.0000019444,0.0000019475, +0.0000019505,0.0000019530,0.0000019555,0.0000019580,0.0000019606, +0.0000019631,0.0000019655,0.0000019677,0.0000019692,0.0000019707, +0.0000019712,0.0000019712,0.0000019712,0.0000019699,0.0000019690, +0.0000019690,0.0000019690,0.0000019688,0.0000019681,0.0000019676, +0.0000019670,0.0000019664,0.0000019661,0.0000019664,0.0000019669, +0.0000019675,0.0000019681,0.0000019690,0.0000019700,0.0000019710, +0.0000019716,0.0000019722,0.0000019729,0.0000019735,0.0000019740, +0.0000019744,0.0000019748,0.0000019753,0.0000019761,0.0000019772, +0.0000019788,0.0000019811,0.0000019840,0.0000019871,0.0000019901, +0.0000019928,0.0000019953,0.0000019976,0.0000019996,0.0000020012, +0.0000020025,0.0000020034,0.0000020037,0.0000020036,0.0000020028, +0.0000020020,0.0000020017,0.0000020017,0.0000020025,0.0000020038, +0.0000020054,0.0000020073,0.0000020092,0.0000020108,0.0000020122, +0.0000020130,0.0000020134,0.0000020138,0.0000020142,0.0000020142, +0.0000020138,0.0000020129,0.0000020122,0.0000020118,0.0000020118, +0.0000020128,0.0000020148,0.0000020178,0.0000020209,0.0000020234, +0.0000020249,0.0000020256,0.0000020258,0.0000020258,0.0000020254, +0.0000020249,0.0000020243,0.0000020233,0.0000020222,0.0000020212, +0.0000020206,0.0000020202,0.0000020190,0.0000020172,0.0000020151, +0.0000020129,0.0000020103,0.0000020078,0.0000020055,0.0000020033, +0.0000020006,0.0000019973,0.0000019938,0.0000019906,0.0000019891, +0.0000019872,0.0000019850,0.0000019842,0.0000019851,0.0000019875, +0.0000019918,0.0000019973,0.0000020030,0.0000020078,0.0000020115, +0.0000020129,0.0000020122,0.0000020124,0.0000020126,0.0000020136, +0.0000020162,0.0000020204,0.0000020257,0.0000020317,0.0000020383, +0.0000020446,0.0000020503,0.0000020543,0.0000020567,0.0000020580, +0.0000020586,0.0000020588,0.0000020588,0.0000020582,0.0000020567, +0.0000020550,0.0000020526,0.0000020497,0.0000020464,0.0000020435, +0.0000020407,0.0000020379,0.0000020354,0.0000020337,0.0000020331, +0.0000020331,0.0000020332,0.0000020336,0.0000020342,0.0000020348, +0.0000020356,0.0000020365,0.0000020371,0.0000020377,0.0000020381, +0.0000020379,0.0000020370,0.0000020350,0.0000020322,0.0000020295, +0.0000020273,0.0000020254,0.0000020241,0.0000020232,0.0000020226, +0.0000020223,0.0000020223,0.0000020217,0.0000020202,0.0000020179, +0.0000020150,0.0000020129,0.0000020117,0.0000020109,0.0000020107, +0.0000020108,0.0000020106,0.0000020099,0.0000020087,0.0000020067, +0.0000020048,0.0000020029,0.0000020015,0.0000020014,0.0000020030, +0.0000020058,0.0000020092,0.0000020127,0.0000020162,0.0000020196, +0.0000020225,0.0000020246,0.0000020256,0.0000020254,0.0000020240, +0.0000020214,0.0000020183,0.0000020151,0.0000020119,0.0000020091, +0.0000020069,0.0000020048,0.0000020028,0.0000020008,0.0000019987, +0.0000019966,0.0000019951,0.0000019938,0.0000019926,0.0000019914, +0.0000019900,0.0000019886,0.0000019873,0.0000019860,0.0000019849, +0.0000019840,0.0000019830,0.0000019821,0.0000019817,0.0000019812, +0.0000019811,0.0000019813,0.0000019814,0.0000019812,0.0000019804, +0.0000019789,0.0000019771,0.0000019755,0.0000019741,0.0000019729, +0.0000019716,0.0000019700,0.0000019684,0.0000019670,0.0000019654, +0.0000019629,0.0000019595,0.0000019553,0.0000019500,0.0000019437, +0.0000019367,0.0000019296,0.0000019232,0.0000019181,0.0000019141, +0.0000019111,0.0000019092,0.0000019082,0.0000019081,0.0000019081, +0.0000019079,0.0000019073,0.0000019065,0.0000019062,0.0000019064, +0.0000019066,0.0000019069,0.0000019071,0.0000019068,0.0000019055, +0.0000019029,0.0000018994,0.0000018951,0.0000018907,0.0000018872, +0.0000018851,0.0000018845,0.0000018846,0.0000018849,0.0000018855, +0.0000018860,0.0000018862,0.0000018863,0.0000018867,0.0000018871, +0.0000018876,0.0000018879,0.0000018878,0.0000018872,0.0000018858, +0.0000018840,0.0000018823,0.0000018808,0.0000018799,0.0000018801, +0.0000018807,0.0000018819,0.0000018844,0.0000018879,0.0000018921, +0.0000018966,0.0000019015,0.0000019060,0.0000019102,0.0000019146, +0.0000019191,0.0000019233,0.0000019263,0.0000019284,0.0000019300, +0.0000019315,0.0000019333,0.0000019351,0.0000019366,0.0000019383, +0.0000019391,0.0000019389,0.0000019392,0.0000019387,0.0000019389, +0.0000019393,0.0000019400,0.0000019405,0.0000019408,0.0000019411, +0.0000019414,0.0000019419,0.0000019422,0.0000019420,0.0000019415, +0.0000019413,0.0000019416,0.0000019429,0.0000019455,0.0000019495, +0.0000019541,0.0000019583,0.0000019598,0.0000019582,0.0000019537, +0.0000019479,0.0000019422,0.0000019378,0.0000019345,0.0000019322, +0.0000019301,0.0000019278,0.0000019276,0.0000019291,0.0000019329, +0.0000019374,0.0000019413,0.0000019436,0.0000019440,0.0000019436, +0.0000019433,0.0000019431,0.0000019427,0.0000019430,0.0000019433, +0.0000019434,0.0000019433,0.0000019432,0.0000019427,0.0000019430, +0.0000019445,0.0000019462,0.0000019471,0.0000019475,0.0000019483, +0.0000019491,0.0000019493,0.0000019498,0.0000019516,0.0000019541, +0.0000019564,0.0000019582,0.0000019595,0.0000019604,0.0000019615, +0.0000019627,0.0000019645,0.0000019662,0.0000019673,0.0000019675, +0.0000019662,0.0000019637,0.0000019601,0.0000019555,0.0000019504, +0.0000019456,0.0000019428,0.0000019413,0.0000019397,0.0000019381, +0.0000019373,0.0000019374,0.0000019383,0.0000019395,0.0000019413, +0.0000019441,0.0000019473,0.0000019504,0.0000019531,0.0000019540, +0.0000019526,0.0000019486,0.0000019434,0.0000019388,0.0000019357, +0.0000019347,0.0000019349,0.0000019351,0.0000019347,0.0000019341, +0.0000019330,0.0000019313,0.0000019279,0.0000019236,0.0000019205, +0.0000019186,0.0000019170,0.0000019148,0.0000019123,0.0000019099, +0.0000019077,0.0000019062,0.0000019042,0.0000019005,0.0000018956, +0.0000018911,0.0000018878,0.0000018852,0.0000018819,0.0000018767, +0.0000018706,0.0000018638,0.0000018585,0.0000018555,0.0000018534, +0.0000018509,0.0000018484,0.0000018461,0.0000018439,0.0000018423, +0.0000018414,0.0000018421,0.0000018457,0.0000018512,0.0000018550, +0.0000018556,0.0000018538,0.0000018516,0.0000018505,0.0000018522, +0.0000018558,0.0000018581,0.0000018591,0.0000018593,0.0000018591, +0.0000018585,0.0000018563,0.0000018532,0.0000018502,0.0000018478, +0.0000018468,0.0000018474,0.0000018488,0.0000018506,0.0000018520, +0.0000018525,0.0000018526,0.0000018531,0.0000018540,0.0000018548, +0.0000018546,0.0000018531,0.0000018506,0.0000018478,0.0000018448, +0.0000018420,0.0000018394,0.0000018372,0.0000018351,0.0000018325, +0.0000018297,0.0000018272,0.0000018253,0.0000018240,0.0000018235, +0.0000018236,0.0000018242,0.0000018250,0.0000018259,0.0000018268, +0.0000018282,0.0000018295,0.0000018305,0.0000018313,0.0000018320, +0.0000018324,0.0000018328,0.0000018334,0.0000018344,0.0000018359, +0.0000018377,0.0000018399,0.0000018425,0.0000018456,0.0000018491, +0.0000018528,0.0000018568,0.0000018610,0.0000018651,0.0000018687, +0.0000018714,0.0000018736,0.0000018766,0.0000018816,0.0000018899, +0.0000019023,0.0000019184,0.0000019361,0.0000019532,0.0000019673, +0.0000019764,0.0000019806,0.0000019804,0.0000019788,0.0000019747, +0.0000019688,0.0000019621,0.0000019546,0.0000019464,0.0000019382, +0.0000019304,0.0000019238,0.0000019188,0.0000019154,0.0000019149, +0.0000019159,0.0000019180,0.0000019200,0.0000019214,0.0000019222, +0.0000019226,0.0000019222,0.0000019207,0.0000019184,0.0000019159, +0.0000019142,0.0000019138,0.0000019141,0.0000019143,0.0000019135, +0.0000019110,0.0000019071,0.0000019027,0.0000018982,0.0000018939, +0.0000018896,0.0000018853,0.0000018818,0.0000018808,0.0000018815, +0.0000018845,0.0000018885,0.0000018915,0.0000018918,0.0000018899, +0.0000018871,0.0000018852,0.0000018843,0.0000018830,0.0000018808, +0.0000018780,0.0000018748,0.0000018675,0.0000018558,0.0000018433, +0.0000018350,0.0000018334,0.0000018344,0.0000018360,0.0000018379, +0.0000018411,0.0000018455,0.0000018491,0.0000018515,0.0000018511, +0.0000018486,0.0000018451,0.0000018416,0.0000018389,0.0000018368, +0.0000018351,0.0000018337,0.0000018323,0.0000018310,0.0000018297, +0.0000018283,0.0000018273,0.0000018271,0.0000018273,0.0000018274, +0.0000018252,0.0000018194,0.0000018126,0.0000018086,0.0000018091, +0.0000018128,0.0000018160,0.0000018182,0.0000018197,0.0000018207, +0.0000018215,0.0000018210,0.0000018184,0.0000018123,0.0000018054, +0.0000018010,0.0000017991,0.0000017970,0.0000017952,0.0000017945, +0.0000017947,0.0000017952,0.0000017954,0.0000017957,0.0000017962, +0.0000017976,0.0000017991,0.0000018002,0.0000018012,0.0000018017, +0.0000018018,0.0000018014,0.0000018005,0.0000017990,0.0000017966, +0.0000017938,0.0000017915,0.0000017897,0.0000017883,0.0000017874, +0.0000017870,0.0000017873,0.0000017873,0.0000017874,0.0000017878, +0.0000017890,0.0000017903,0.0000017916,0.0000017927,0.0000017933, +0.0000017933,0.0000017928,0.0000017913,0.0000017892,0.0000017868, +0.0000017843,0.0000017821,0.0000017807,0.0000017807,0.0000017835, +0.0000017918,0.0000018037,0.0000018147,0.0000018221,0.0000018267, +0.0000018320,0.0000018408,0.0000018526,0.0000018617,0.0000018652, +0.0000018647,0.0000018639,0.0000018642,0.0000018648,0.0000018647, +0.0000018642,0.0000018642,0.0000018649,0.0000018650,0.0000018641, +0.0000018629,0.0000018619,0.0000018613,0.0000018604,0.0000018585, +0.0000018554,0.0000018518,0.0000018495,0.0000018490,0.0000018512, +0.0000018567,0.0000018636,0.0000018698,0.0000018748,0.0000018778, +0.0000018785,0.0000018768,0.0000018737,0.0000018702,0.0000018673, +0.0000018648,0.0000018624,0.0000018599,0.0000018580,0.0000018580, +0.0000018627,0.0000018695,0.0000018710,0.0000018647,0.0000018620, +0.0000018703,0.0000018710,0.0000018668,0.0000018681,0.0000018723, +0.0000018816,0.0000018986,0.0000019005,0.0000018905,0.0000018846, +0.0000018846,0.0000018874,0.0000018909,0.0000018943,0.0000018957, +0.0000018956,0.0000018907,0.0000018774,0.0000018645,0.0000018585, +0.0000018546,0.0000018500,0.0000018464,0.0000018444,0.0000018436, +0.0000018434,0.0000018432,0.0000018442,0.0000018455,0.0000018491, +0.0000018583,0.0000018685,0.0000018770,0.0000018836,0.0000018891, +0.0000018934,0.0000018972,0.0000019003,0.0000019027,0.0000019043, +0.0000019052,0.0000019053,0.0000019048,0.0000019035,0.0000019018, +0.0000018993,0.0000018960,0.0000018922,0.0000018882,0.0000018844, +0.0000018808,0.0000018773,0.0000018743,0.0000018725,0.0000018709, +0.0000018689,0.0000018679,0.0000018679,0.0000018691,0.0000018717, +0.0000018738,0.0000018761,0.0000018776,0.0000018788,0.0000018785, +0.0000018762,0.0000018724,0.0000018678,0.0000018637,0.0000018612, +0.0000018606,0.0000018618,0.0000018635,0.0000018631,0.0000018593, +0.0000018525,0.0000018439,0.0000018374,0.0000018329,0.0000018316, +0.0000018311,0.0000018296,0.0000018275,0.0000018246,0.0000018215, +0.0000018179,0.0000018134,0.0000018069,0.0000017994,0.0000017928, +0.0000017892,0.0000017900,0.0000017927,0.0000017975,0.0000018022, +0.0000018064,0.0000018098,0.0000018120,0.0000018126,0.0000018112, +0.0000018084,0.0000018046,0.0000018004,0.0000017968,0.0000017932, +0.0000017914,0.0000017890,0.0000017882,0.0000017873,0.0000017868, +0.0000017865,0.0000017861,0.0000017856,0.0000017850,0.0000017841, +0.0000017828,0.0000017812,0.0000017797,0.0000017783,0.0000017772, +0.0000017764,0.0000017757,0.0000017750,0.0000017742,0.0000017734, +0.0000017723,0.0000017715,0.0000017710,0.0000017706,0.0000017705, +0.0000017709,0.0000017713,0.0000017716,0.0000017718,0.0000017722, +0.0000017727,0.0000017738,0.0000017756,0.0000017773,0.0000017794, +0.0000017816,0.0000017836,0.0000017850,0.0000017858,0.0000017860, +0.0000017861,0.0000017858,0.0000017856,0.0000017858,0.0000017861, +0.0000017870,0.0000017882,0.0000017899,0.0000017919,0.0000017941, +0.0000017960,0.0000017977,0.0000017993,0.0000018012,0.0000018030, +0.0000018050,0.0000018071,0.0000018087,0.0000018102,0.0000018115, +0.0000018121,0.0000018140,0.0000018147,0.0000018149,0.0000018146, +0.0000018142,0.0000018137,0.0000018129,0.0000018123,0.0000018122, +0.0000018128,0.0000018140,0.0000018152,0.0000018165,0.0000018177, +0.0000018180,0.0000018175,0.0000018165,0.0000018150,0.0000018132, +0.0000018114,0.0000018099,0.0000018087,0.0000018077,0.0000018065, +0.0000018052,0.0000018039,0.0000018026,0.0000018016,0.0000018012, +0.0000018015,0.0000018016,0.0000018016,0.0000018018,0.0000018027, +0.0000018052,0.0000018092,0.0000018146,0.0000018215,0.0000018292, +0.0000018364,0.0000018427,0.0000018476,0.0000018493,0.0000018490, +0.0000018464,0.0000018434,0.0000018399,0.0000018372,0.0000018354, +0.0000018343,0.0000018333,0.0000018321,0.0000018304,0.0000018279, +0.0000018245,0.0000018208,0.0000018178,0.0000018159,0.0000018150, +0.0000018150,0.0000018152,0.0000018158,0.0000018172,0.0000018192, +0.0000018212,0.0000018231,0.0000018245,0.0000018246,0.0000018234, +0.0000018208,0.0000018174,0.0000018140,0.0000018106,0.0000018083, +0.0000018074,0.0000018076,0.0000018094,0.0000018117,0.0000018129, +0.0000018127,0.0000018110,0.0000018087,0.0000018069,0.0000018069, +0.0000018084,0.0000018121,0.0000018177,0.0000018241,0.0000018301, +0.0000018350,0.0000018385,0.0000018404,0.0000018413,0.0000018419, +0.0000018441,0.0000018490,0.0000018567,0.0000018649,0.0000018696, +0.0000018698,0.0000018677,0.0000018664,0.0000018672,0.0000018702, +0.0000018737,0.0000018756,0.0000018757,0.0000018750,0.0000018739, +0.0000018723,0.0000018701,0.0000018679,0.0000018658,0.0000018640, +0.0000018626,0.0000018619,0.0000018614,0.0000018608,0.0000018601, +0.0000018595,0.0000018590,0.0000018587,0.0000018584,0.0000018580, +0.0000018576,0.0000018569,0.0000018559,0.0000018546,0.0000018530, +0.0000018510,0.0000018487,0.0000018459,0.0000018427,0.0000018392, +0.0000018362,0.0000018337,0.0000018318,0.0000018307,0.0000018301, +0.0000018301,0.0000018304,0.0000018310,0.0000018317,0.0000018323, +0.0000018328,0.0000018334,0.0000018340,0.0000018347,0.0000018356, +0.0000018365,0.0000018375,0.0000018384,0.0000018391,0.0000018394, +0.0000018394,0.0000018391,0.0000018386,0.0000018376,0.0000018360, +0.0000018340,0.0000018317,0.0000018285,0.0000018242,0.0000018188, +0.0000018128,0.0000018067,0.0000018007,0.0000017951,0.0000017900, +0.0000017856,0.0000017822,0.0000017796,0.0000017778,0.0000017766, +0.0000017763,0.0000017768,0.0000017780,0.0000017800,0.0000017825, +0.0000017854,0.0000017890,0.0000017931,0.0000017975,0.0000018023, +0.0000018071,0.0000018119,0.0000018164,0.0000018204,0.0000018238, +0.0000018264,0.0000018281,0.0000018291,0.0000018297,0.0000018304, +0.0000018310,0.0000018312,0.0000018307,0.0000018306,0.0000018308, +0.0000018312,0.0000018311,0.0000018309,0.0000018301,0.0000018289, +0.0000018275,0.0000018264,0.0000018255,0.0000018251,0.0000018255, +0.0000018266,0.0000018282,0.0000018297,0.0000018309,0.0000018316, +0.0000018317,0.0000018312,0.0000018306,0.0000018297,0.0000018289, +0.0000018285,0.0000018276,0.0000018270,0.0000018264,0.0000018252, +0.0000018234,0.0000018214,0.0000018191,0.0000018160,0.0000018120, +0.0000018075,0.0000018032,0.0000017984,0.0000017932,0.0000017888, +0.0000017871,0.0000017850,0.0000017832,0.0000017831,0.0000017834, +0.0000017837,0.0000017840,0.0000017842,0.0000017842,0.0000017847, +0.0000017864,0.0000017892,0.0000017926,0.0000017963,0.0000017997, +0.0000018023,0.0000018041,0.0000018059,0.0000018080,0.0000018102, +0.0000018123,0.0000018138,0.0000018147,0.0000018151,0.0000018155, +0.0000018160,0.0000018172,0.0000018194,0.0000018231,0.0000018283, +0.0000018347,0.0000018409,0.0000018462,0.0000018504,0.0000018535, +0.0000018555,0.0000018561,0.0000018558,0.0000018551,0.0000018544, +0.0000018538,0.0000018530,0.0000018524,0.0000018521,0.0000018517, +0.0000018507,0.0000018488,0.0000018471,0.0000018468,0.0000018482, +0.0000018505,0.0000018531,0.0000018562,0.0000018613,0.0000018713, +0.0000018865,0.0000019037,0.0000019197,0.0000019356,0.0000019505, +0.0000019636,0.0000019749,0.0000019799,0.0000019803,0.0000019844, +0.0000019895,0.0000019945,0.0000020012,0.0000020061,0.0000020075, +0.0000020046,0.0000019981,0.0000019952,0.0000019982,0.0000020025, +0.0000020037,0.0000020015,0.0000019982,0.0000019973,0.0000020009, +0.0000020088,0.0000020168,0.0000020210,0.0000020213,0.0000020198, +0.0000020176,0.0000020145,0.0000020107,0.0000020075,0.0000020065, +0.0000020072,0.0000020081,0.0000020077,0.0000020053,0.0000020027, +0.0000020018,0.0000020028,0.0000020059,0.0000020089,0.0000020108, +0.0000020114,0.0000020116,0.0000020119,0.0000020119,0.0000020117, +0.0000020115,0.0000020109,0.0000020099,0.0000020087,0.0000020072, +0.0000020053,0.0000020034,0.0000020015,0.0000019997,0.0000019979, +0.0000019960,0.0000019940,0.0000019917,0.0000019892,0.0000019867, +0.0000019843,0.0000019819,0.0000019795,0.0000019773,0.0000019756, +0.0000019748,0.0000019748,0.0000019756,0.0000019767,0.0000019779, +0.0000019789,0.0000019794,0.0000019796,0.0000019794,0.0000019791, +0.0000019790,0.0000019791,0.0000019791,0.0000019787,0.0000019782, +0.0000019776,0.0000019768,0.0000019756,0.0000019740,0.0000019722, +0.0000019708,0.0000019700,0.0000019690,0.0000019679,0.0000019667, +0.0000019655,0.0000019646,0.0000019639,0.0000019632,0.0000019626, +0.0000019622,0.0000019618,0.0000019615,0.0000019611,0.0000019605, +0.0000019601,0.0000019597,0.0000019593,0.0000019592,0.0000019595, +0.0000019605,0.0000019617,0.0000019631,0.0000019648,0.0000019667, +0.0000019686,0.0000019700,0.0000019712,0.0000019720,0.0000019726, +0.0000019729,0.0000019732,0.0000019732,0.0000019732,0.0000019730, +0.0000019728,0.0000019730,0.0000019729,0.0000019726,0.0000019720, +0.0000019711,0.0000019701,0.0000019687,0.0000019669,0.0000019647, +0.0000019626,0.0000019606,0.0000019581,0.0000019556,0.0000019530, +0.0000019504,0.0000019481,0.0000019459,0.0000019436,0.0000019413, +0.0000019395,0.0000019379,0.0000019369,0.0000019363,0.0000019360, +0.0000019356,0.0000019352,0.0000019349,0.0000019351,0.0000019357, +0.0000019359,0.0000019357,0.0000019350,0.0000019339,0.0000019326, +0.0000019308,0.0000019287,0.0000019266,0.0000019249,0.0000019237, +0.0000019234,0.0000019234,0.0000019236,0.0000019238,0.0000019239, +0.0000019240,0.0000019239,0.0000019235,0.0000019230,0.0000019224, +0.0000019218,0.0000019211,0.0000019206,0.0000019207,0.0000019211, +0.0000019218,0.0000019229,0.0000019246,0.0000019269,0.0000019295, +0.0000019321,0.0000019344,0.0000019369,0.0000019390,0.0000019410, +0.0000019431,0.0000019455,0.0000019485,0.0000019514,0.0000019542, +0.0000019569,0.0000019594,0.0000019616,0.0000019632,0.0000019646, +0.0000019653,0.0000019660,0.0000019665,0.0000019670,0.0000019672, +0.0000019671,0.0000019666,0.0000019660,0.0000019648,0.0000019638, +0.0000019629,0.0000019625,0.0000019625,0.0000019629,0.0000019638, +0.0000019653,0.0000019671,0.0000019689,0.0000019705,0.0000019717, +0.0000019725,0.0000019727,0.0000019727,0.0000019725,0.0000019723, +0.0000019720,0.0000019720,0.0000019726,0.0000019738,0.0000019757, +0.0000019781,0.0000019810,0.0000019840,0.0000019871,0.0000019902, +0.0000019931,0.0000019958,0.0000019983,0.0000020005,0.0000020020, +0.0000020028,0.0000020029,0.0000020027,0.0000020027,0.0000020028, +0.0000020031,0.0000020042,0.0000020061,0.0000020081,0.0000020100, +0.0000020116,0.0000020128,0.0000020135,0.0000020143,0.0000020150, +0.0000020153,0.0000020152,0.0000020145,0.0000020136,0.0000020125, +0.0000020115,0.0000020108,0.0000020107,0.0000020117,0.0000020136, +0.0000020166,0.0000020201,0.0000020230,0.0000020250,0.0000020259, +0.0000020262,0.0000020259,0.0000020253,0.0000020249,0.0000020241, +0.0000020229,0.0000020213,0.0000020202,0.0000020197,0.0000020189, +0.0000020184,0.0000020180,0.0000020172,0.0000020159,0.0000020141, +0.0000020124,0.0000020110,0.0000020092,0.0000020065,0.0000020032, +0.0000019996,0.0000019960,0.0000019925,0.0000019886,0.0000019842, +0.0000019817,0.0000019788,0.0000019775,0.0000019794,0.0000019833, +0.0000019885,0.0000019944,0.0000020002,0.0000020053,0.0000020094, +0.0000020118,0.0000020126,0.0000020136,0.0000020149,0.0000020166, +0.0000020200,0.0000020245,0.0000020306,0.0000020381,0.0000020460, +0.0000020525,0.0000020564,0.0000020576,0.0000020572,0.0000020571, +0.0000020560,0.0000020545,0.0000020526,0.0000020506,0.0000020483, +0.0000020462,0.0000020444,0.0000020430,0.0000020417,0.0000020400, +0.0000020385,0.0000020374,0.0000020364,0.0000020355,0.0000020353, +0.0000020358,0.0000020367,0.0000020378,0.0000020386,0.0000020391, +0.0000020396,0.0000020398,0.0000020401,0.0000020401,0.0000020394, +0.0000020382,0.0000020368,0.0000020349,0.0000020331,0.0000020316, +0.0000020302,0.0000020292,0.0000020287,0.0000020277,0.0000020260, +0.0000020242,0.0000020217,0.0000020196,0.0000020181,0.0000020172, +0.0000020168,0.0000020169,0.0000020171,0.0000020168,0.0000020159, +0.0000020143,0.0000020117,0.0000020087,0.0000020060,0.0000020041, +0.0000020037,0.0000020051,0.0000020075,0.0000020106,0.0000020139, +0.0000020175,0.0000020215,0.0000020248,0.0000020271,0.0000020287, +0.0000020288,0.0000020273,0.0000020245,0.0000020214,0.0000020181, +0.0000020151,0.0000020125,0.0000020106,0.0000020090,0.0000020074, +0.0000020058,0.0000020042,0.0000020032,0.0000020025,0.0000020021, +0.0000020017,0.0000020010,0.0000020003,0.0000019998,0.0000019991, +0.0000019984,0.0000019976,0.0000019967,0.0000019960,0.0000019953, +0.0000019945,0.0000019941,0.0000019941,0.0000019942,0.0000019944, +0.0000019942,0.0000019931,0.0000019912,0.0000019895,0.0000019882, +0.0000019872,0.0000019863,0.0000019851,0.0000019835,0.0000019818, +0.0000019803,0.0000019786,0.0000019767,0.0000019742,0.0000019704, +0.0000019651,0.0000019586,0.0000019510,0.0000019430,0.0000019355, +0.0000019286,0.0000019227,0.0000019184,0.0000019156,0.0000019140, +0.0000019133,0.0000019126,0.0000019117,0.0000019103,0.0000019084, +0.0000019071,0.0000019069,0.0000019067,0.0000019076,0.0000019089, +0.0000019102,0.0000019104,0.0000019094,0.0000019069,0.0000019028, +0.0000018983,0.0000018943,0.0000018911,0.0000018887,0.0000018872, +0.0000018864,0.0000018861,0.0000018858,0.0000018860,0.0000018863, +0.0000018866,0.0000018869,0.0000018872,0.0000018874,0.0000018870, +0.0000018858,0.0000018839,0.0000018816,0.0000018793,0.0000018766, +0.0000018754,0.0000018753,0.0000018757,0.0000018770,0.0000018787, +0.0000018808,0.0000018834,0.0000018868,0.0000018904,0.0000018941, +0.0000018982,0.0000019026,0.0000019073,0.0000019115,0.0000019151, +0.0000019181,0.0000019207,0.0000019228,0.0000019248,0.0000019268, +0.0000019296,0.0000019329,0.0000019359,0.0000019383,0.0000019386, +0.0000019383,0.0000019372,0.0000019363,0.0000019362,0.0000019364, +0.0000019368,0.0000019372,0.0000019376,0.0000019381,0.0000019380, +0.0000019374,0.0000019366,0.0000019361,0.0000019361,0.0000019369, +0.0000019389,0.0000019423,0.0000019469,0.0000019516,0.0000019549, +0.0000019550,0.0000019537,0.0000019496,0.0000019442,0.0000019385, +0.0000019336,0.0000019295,0.0000019267,0.0000019248,0.0000019230, +0.0000019238,0.0000019264,0.0000019303,0.0000019348,0.0000019387, +0.0000019417,0.0000019443,0.0000019455,0.0000019461,0.0000019465, +0.0000019457,0.0000019434,0.0000019412,0.0000019384,0.0000019361, +0.0000019359,0.0000019380,0.0000019404,0.0000019422,0.0000019434, +0.0000019435,0.0000019425,0.0000019413,0.0000019414,0.0000019431, +0.0000019454,0.0000019478,0.0000019501,0.0000019522,0.0000019541, +0.0000019558,0.0000019576,0.0000019593,0.0000019607,0.0000019617, +0.0000019620,0.0000019614,0.0000019592,0.0000019553,0.0000019501, +0.0000019447,0.0000019404,0.0000019381,0.0000019370,0.0000019363, +0.0000019355,0.0000019353,0.0000019364,0.0000019382,0.0000019401, +0.0000019424,0.0000019451,0.0000019478,0.0000019498,0.0000019504, +0.0000019489,0.0000019456,0.0000019410,0.0000019365,0.0000019333, +0.0000019313,0.0000019308,0.0000019314,0.0000019313,0.0000019305, +0.0000019289,0.0000019271,0.0000019251,0.0000019216,0.0000019181, +0.0000019160,0.0000019145,0.0000019133,0.0000019112,0.0000019080, +0.0000019049,0.0000019026,0.0000019012,0.0000018997,0.0000018971, +0.0000018931,0.0000018888,0.0000018854,0.0000018839,0.0000018821, +0.0000018785,0.0000018724,0.0000018650,0.0000018584,0.0000018544, +0.0000018520,0.0000018497,0.0000018473,0.0000018452,0.0000018434, +0.0000018418,0.0000018413,0.0000018419,0.0000018442,0.0000018478, +0.0000018512,0.0000018527,0.0000018520,0.0000018501,0.0000018479, +0.0000018484,0.0000018510,0.0000018542,0.0000018559,0.0000018565, +0.0000018568,0.0000018565,0.0000018547,0.0000018516,0.0000018478, +0.0000018443,0.0000018418,0.0000018412,0.0000018423,0.0000018445, +0.0000018458,0.0000018467,0.0000018476,0.0000018487,0.0000018502, +0.0000018513,0.0000018512,0.0000018498,0.0000018475,0.0000018446, +0.0000018418,0.0000018393,0.0000018370,0.0000018349,0.0000018324, +0.0000018296,0.0000018267,0.0000018241,0.0000018217,0.0000018197, +0.0000018186,0.0000018181,0.0000018181,0.0000018185,0.0000018190, +0.0000018196,0.0000018208,0.0000018225,0.0000018240,0.0000018251, +0.0000018260,0.0000018267,0.0000018273,0.0000018278,0.0000018284, +0.0000018295,0.0000018308,0.0000018325,0.0000018346,0.0000018373, +0.0000018401,0.0000018432,0.0000018468,0.0000018509,0.0000018555, +0.0000018603,0.0000018647,0.0000018681,0.0000018711,0.0000018742, +0.0000018788,0.0000018861,0.0000018972,0.0000019120,0.0000019294, +0.0000019469,0.0000019619,0.0000019723,0.0000019777,0.0000019780, +0.0000019760,0.0000019716,0.0000019657,0.0000019597,0.0000019531, +0.0000019470,0.0000019411,0.0000019349,0.0000019287,0.0000019230, +0.0000019189,0.0000019171,0.0000019180,0.0000019190,0.0000019207, +0.0000019220,0.0000019227,0.0000019228,0.0000019223,0.0000019208, +0.0000019184,0.0000019161,0.0000019148,0.0000019147,0.0000019150, +0.0000019145,0.0000019126,0.0000019090,0.0000019044,0.0000018996, +0.0000018954,0.0000018916,0.0000018879,0.0000018843,0.0000018816, +0.0000018806,0.0000018818,0.0000018846,0.0000018869,0.0000018874, +0.0000018863,0.0000018843,0.0000018827,0.0000018814,0.0000018798, +0.0000018777,0.0000018755,0.0000018736,0.0000018683,0.0000018582, +0.0000018461,0.0000018367,0.0000018334,0.0000018342,0.0000018371, +0.0000018399,0.0000018428,0.0000018466,0.0000018507,0.0000018537, +0.0000018543,0.0000018531,0.0000018502,0.0000018468,0.0000018438, +0.0000018415,0.0000018395,0.0000018377,0.0000018360,0.0000018343, +0.0000018326,0.0000018310,0.0000018298,0.0000018289,0.0000018278, +0.0000018248,0.0000018196,0.0000018139,0.0000018102,0.0000018099, +0.0000018127,0.0000018161,0.0000018186,0.0000018205,0.0000018222, +0.0000018241,0.0000018253,0.0000018240,0.0000018183,0.0000018100, +0.0000018039,0.0000018009,0.0000017985,0.0000017966,0.0000017961, +0.0000017969,0.0000017981,0.0000017994,0.0000018007,0.0000018021, +0.0000018044,0.0000018070,0.0000018092,0.0000018109,0.0000018122, +0.0000018129,0.0000018127,0.0000018118,0.0000018104,0.0000018080, +0.0000018051,0.0000018023,0.0000017995,0.0000017969,0.0000017945, +0.0000017924,0.0000017908,0.0000017894,0.0000017882,0.0000017875, +0.0000017877,0.0000017876,0.0000017875,0.0000017874,0.0000017872, +0.0000017865,0.0000017856,0.0000017841,0.0000017823,0.0000017807, +0.0000017796,0.0000017794,0.0000017798,0.0000017821,0.0000017881, +0.0000017980,0.0000018093,0.0000018185,0.0000018246,0.0000018291, +0.0000018349,0.0000018441,0.0000018555,0.0000018637,0.0000018664, +0.0000018658,0.0000018649,0.0000018652,0.0000018653,0.0000018642, +0.0000018629,0.0000018625,0.0000018627,0.0000018622,0.0000018611, +0.0000018603,0.0000018596,0.0000018587,0.0000018567,0.0000018535, +0.0000018493,0.0000018462,0.0000018454,0.0000018464,0.0000018507, +0.0000018573,0.0000018636,0.0000018684,0.0000018711,0.0000018712, +0.0000018700,0.0000018684,0.0000018670,0.0000018657,0.0000018640, +0.0000018613,0.0000018579,0.0000018552,0.0000018548,0.0000018595, +0.0000018673,0.0000018715,0.0000018673,0.0000018610,0.0000018681, +0.0000018723,0.0000018665,0.0000018658,0.0000018698,0.0000018748, +0.0000018898,0.0000018993,0.0000018926,0.0000018855,0.0000018844, +0.0000018861,0.0000018891,0.0000018916,0.0000018923,0.0000018924, +0.0000018877,0.0000018747,0.0000018621,0.0000018558,0.0000018518, +0.0000018478,0.0000018448,0.0000018431,0.0000018424,0.0000018424, +0.0000018445,0.0000018535,0.0000018643,0.0000018739,0.0000018825, +0.0000018901,0.0000018963,0.0000019007,0.0000019033,0.0000019046, +0.0000019054,0.0000019060,0.0000019067,0.0000019071,0.0000019071, +0.0000019067,0.0000019055,0.0000019046,0.0000019044,0.0000019030, +0.0000019027,0.0000019034,0.0000019042,0.0000019037,0.0000019014, +0.0000018977,0.0000018935,0.0000018892,0.0000018858,0.0000018833, +0.0000018818,0.0000018811,0.0000018811,0.0000018813,0.0000018814, +0.0000018815,0.0000018815,0.0000018815,0.0000018810,0.0000018796, +0.0000018773,0.0000018739,0.0000018703,0.0000018679,0.0000018677, +0.0000018700,0.0000018746,0.0000018792,0.0000018811,0.0000018788, +0.0000018718,0.0000018613,0.0000018494,0.0000018392,0.0000018332, +0.0000018309,0.0000018303,0.0000018297,0.0000018284,0.0000018261, +0.0000018232,0.0000018200,0.0000018155,0.0000018088,0.0000018007, +0.0000017940,0.0000017893,0.0000017899,0.0000017927,0.0000017976, +0.0000018027,0.0000018070,0.0000018104,0.0000018127,0.0000018132, +0.0000018118,0.0000018089,0.0000018048,0.0000018002,0.0000017958, +0.0000017921,0.0000017897,0.0000017878,0.0000017867,0.0000017861, +0.0000017855,0.0000017852,0.0000017847,0.0000017843,0.0000017836, +0.0000017829,0.0000017818,0.0000017805,0.0000017792,0.0000017780, +0.0000017769,0.0000017760,0.0000017751,0.0000017741,0.0000017729, +0.0000017720,0.0000017713,0.0000017707,0.0000017700,0.0000017701, +0.0000017704,0.0000017708,0.0000017713,0.0000017723,0.0000017738, +0.0000017759,0.0000017785,0.0000017812,0.0000017837,0.0000017859, +0.0000017878,0.0000017893,0.0000017904,0.0000017911,0.0000017912, +0.0000017906,0.0000017897,0.0000017888,0.0000017882,0.0000017879, +0.0000017879,0.0000017888,0.0000017897,0.0000017909,0.0000017925, +0.0000017942,0.0000017960,0.0000017981,0.0000018002,0.0000018025, +0.0000018049,0.0000018074,0.0000018096,0.0000018116,0.0000018128, +0.0000018111,0.0000018129,0.0000018143,0.0000018152,0.0000018152, +0.0000018155,0.0000018157,0.0000018155,0.0000018150,0.0000018146, +0.0000018149,0.0000018157,0.0000018170,0.0000018185,0.0000018196, +0.0000018203,0.0000018206,0.0000018202,0.0000018194,0.0000018179, +0.0000018163,0.0000018147,0.0000018135,0.0000018123,0.0000018109, +0.0000018094,0.0000018078,0.0000018060,0.0000018041,0.0000018026, +0.0000018017,0.0000018012,0.0000018006,0.0000017995,0.0000017983, +0.0000017984,0.0000018002,0.0000018040,0.0000018095,0.0000018165, +0.0000018241,0.0000018314,0.0000018381,0.0000018435,0.0000018466, +0.0000018460,0.0000018444,0.0000018417,0.0000018390,0.0000018371, +0.0000018356,0.0000018343,0.0000018332,0.0000018324,0.0000018310, +0.0000018287,0.0000018256,0.0000018223,0.0000018194,0.0000018175, +0.0000018166,0.0000018165,0.0000018172,0.0000018184,0.0000018201, +0.0000018223,0.0000018250,0.0000018275,0.0000018293,0.0000018296, +0.0000018286,0.0000018258,0.0000018217,0.0000018170,0.0000018124, +0.0000018087,0.0000018076,0.0000018078,0.0000018090,0.0000018101, +0.0000018102,0.0000018087,0.0000018061,0.0000018036,0.0000018016, +0.0000018016,0.0000018035,0.0000018083,0.0000018149,0.0000018216, +0.0000018275,0.0000018322,0.0000018354,0.0000018368,0.0000018370, +0.0000018378,0.0000018415,0.0000018492,0.0000018583,0.0000018649, +0.0000018663,0.0000018652,0.0000018637,0.0000018644,0.0000018674, +0.0000018710,0.0000018731,0.0000018734,0.0000018726,0.0000018709, +0.0000018686,0.0000018661,0.0000018640,0.0000018622,0.0000018609, +0.0000018601,0.0000018596,0.0000018590,0.0000018583,0.0000018575, +0.0000018567,0.0000018558,0.0000018551,0.0000018544,0.0000018540, +0.0000018535,0.0000018528,0.0000018521,0.0000018512,0.0000018500, +0.0000018481,0.0000018457,0.0000018430,0.0000018397,0.0000018363, +0.0000018332,0.0000018308,0.0000018291,0.0000018281,0.0000018277, +0.0000018278,0.0000018285,0.0000018295,0.0000018306,0.0000018316, +0.0000018325,0.0000018335,0.0000018343,0.0000018352,0.0000018361, +0.0000018371,0.0000018380,0.0000018386,0.0000018389,0.0000018389, +0.0000018383,0.0000018370,0.0000018347,0.0000018316,0.0000018275, +0.0000018225,0.0000018165,0.0000018097,0.0000018027,0.0000017959, +0.0000017898,0.0000017841,0.0000017791,0.0000017748,0.0000017711, +0.0000017678,0.0000017651,0.0000017628,0.0000017607,0.0000017588, +0.0000017576,0.0000017574,0.0000017583,0.0000017600,0.0000017625, +0.0000017657,0.0000017696,0.0000017738,0.0000017783,0.0000017830, +0.0000017876,0.0000017923,0.0000017969,0.0000018012,0.0000018053, +0.0000018091,0.0000018124,0.0000018153,0.0000018181,0.0000018210, +0.0000018237,0.0000018262,0.0000018285,0.0000018307,0.0000018316, +0.0000018322,0.0000018326,0.0000018324,0.0000018315,0.0000018300, +0.0000018282,0.0000018264,0.0000018250,0.0000018247,0.0000018247, +0.0000018249,0.0000018253,0.0000018257,0.0000018259,0.0000018258, +0.0000018256,0.0000018252,0.0000018246,0.0000018243,0.0000018243, +0.0000018244,0.0000018245,0.0000018246,0.0000018245,0.0000018238, +0.0000018241,0.0000018247,0.0000018250,0.0000018245,0.0000018232, +0.0000018208,0.0000018171,0.0000018121,0.0000018066,0.0000018004, +0.0000017931,0.0000017860,0.0000017824,0.0000017798,0.0000017786, +0.0000017795,0.0000017814,0.0000017827,0.0000017835,0.0000017844, +0.0000017858,0.0000017883,0.0000017922,0.0000017964,0.0000017998, +0.0000018018,0.0000018031,0.0000018044,0.0000018058,0.0000018074, +0.0000018087,0.0000018094,0.0000018092,0.0000018082,0.0000018064, +0.0000018046,0.0000018032,0.0000018033,0.0000018056,0.0000018105, +0.0000018174,0.0000018255,0.0000018340,0.0000018418,0.0000018476, +0.0000018511,0.0000018526,0.0000018524,0.0000018515,0.0000018499, +0.0000018482,0.0000018469,0.0000018459,0.0000018449,0.0000018434, +0.0000018414,0.0000018406,0.0000018418,0.0000018447,0.0000018483, +0.0000018519,0.0000018548,0.0000018585,0.0000018673,0.0000018828, +0.0000019003,0.0000019165,0.0000019324,0.0000019471,0.0000019601, +0.0000019712,0.0000019748,0.0000019756,0.0000019803,0.0000019858, +0.0000019917,0.0000019994,0.0000020046,0.0000020054,0.0000020012, +0.0000019953,0.0000019941,0.0000019981,0.0000020016,0.0000020020, +0.0000020001,0.0000019972,0.0000019961,0.0000019977,0.0000020032, +0.0000020101,0.0000020153,0.0000020175,0.0000020174,0.0000020162, +0.0000020144,0.0000020115,0.0000020083,0.0000020064,0.0000020065, +0.0000020075,0.0000020080,0.0000020074,0.0000020054,0.0000020030, +0.0000020022,0.0000020029,0.0000020052,0.0000020075,0.0000020092, +0.0000020101,0.0000020103,0.0000020100,0.0000020094,0.0000020085, +0.0000020075,0.0000020063,0.0000020050,0.0000020035,0.0000020017, +0.0000019999,0.0000019981,0.0000019963,0.0000019945,0.0000019924, +0.0000019902,0.0000019879,0.0000019853,0.0000019827,0.0000019803, +0.0000019782,0.0000019763,0.0000019744,0.0000019728,0.0000019715, +0.0000019706,0.0000019702,0.0000019701,0.0000019701,0.0000019704, +0.0000019708,0.0000019711,0.0000019714,0.0000019715,0.0000019717, +0.0000019718,0.0000019720,0.0000019718,0.0000019713,0.0000019704, +0.0000019693,0.0000019679,0.0000019664,0.0000019654,0.0000019649, +0.0000019645,0.0000019640,0.0000019633,0.0000019625,0.0000019620, +0.0000019617,0.0000019616,0.0000019617,0.0000019619,0.0000019620, +0.0000019617,0.0000019614,0.0000019613,0.0000019611,0.0000019608, +0.0000019603,0.0000019599,0.0000019600,0.0000019607,0.0000019616, +0.0000019628,0.0000019640,0.0000019656,0.0000019671,0.0000019683, +0.0000019692,0.0000019698,0.0000019702,0.0000019703,0.0000019698, +0.0000019691,0.0000019684,0.0000019675,0.0000019666,0.0000019661, +0.0000019655,0.0000019648,0.0000019640,0.0000019630,0.0000019620, +0.0000019609,0.0000019596,0.0000019582,0.0000019568,0.0000019555, +0.0000019541,0.0000019526,0.0000019506,0.0000019486,0.0000019467, +0.0000019447,0.0000019424,0.0000019401,0.0000019378,0.0000019360, +0.0000019348,0.0000019339,0.0000019331,0.0000019325,0.0000019323, +0.0000019324,0.0000019328,0.0000019336,0.0000019337,0.0000019335, +0.0000019330,0.0000019322,0.0000019309,0.0000019291,0.0000019270, +0.0000019249,0.0000019230,0.0000019219,0.0000019213,0.0000019211, +0.0000019211,0.0000019211,0.0000019209,0.0000019207,0.0000019204, +0.0000019197,0.0000019190,0.0000019182,0.0000019172,0.0000019160, +0.0000019150,0.0000019145,0.0000019145,0.0000019146,0.0000019151, +0.0000019161,0.0000019176,0.0000019195,0.0000019216,0.0000019235, +0.0000019254,0.0000019271,0.0000019289,0.0000019307,0.0000019328, +0.0000019353,0.0000019378,0.0000019401,0.0000019426,0.0000019449, +0.0000019473,0.0000019494,0.0000019514,0.0000019534,0.0000019551, +0.0000019567,0.0000019581,0.0000019595,0.0000019605,0.0000019610, +0.0000019611,0.0000019606,0.0000019596,0.0000019587,0.0000019578, +0.0000019572,0.0000019569,0.0000019573,0.0000019585,0.0000019607, +0.0000019634,0.0000019663,0.0000019688,0.0000019708,0.0000019720, +0.0000019725,0.0000019726,0.0000019724,0.0000019721,0.0000019719, +0.0000019718,0.0000019723,0.0000019729,0.0000019736,0.0000019742, +0.0000019757,0.0000019776,0.0000019798,0.0000019823,0.0000019850, +0.0000019877,0.0000019903,0.0000019926,0.0000019945,0.0000019956, +0.0000019962,0.0000019973,0.0000019982,0.0000019989,0.0000020001, +0.0000020022,0.0000020046,0.0000020068,0.0000020090,0.0000020111, +0.0000020131,0.0000020148,0.0000020159,0.0000020167,0.0000020172, +0.0000020172,0.0000020168,0.0000020161,0.0000020147,0.0000020131, +0.0000020120,0.0000020119,0.0000020126,0.0000020138,0.0000020161, +0.0000020189,0.0000020214,0.0000020233,0.0000020243,0.0000020244, +0.0000020239,0.0000020229,0.0000020223,0.0000020215,0.0000020201, +0.0000020184,0.0000020173,0.0000020167,0.0000020167,0.0000020169, +0.0000020164,0.0000020159,0.0000020149,0.0000020137,0.0000020123, +0.0000020108,0.0000020092,0.0000020076,0.0000020058,0.0000020036, +0.0000020011,0.0000019980,0.0000019941,0.0000019896,0.0000019842, +0.0000019792,0.0000019773,0.0000019754,0.0000019751,0.0000019773, +0.0000019817,0.0000019871,0.0000019931,0.0000019991,0.0000020047, +0.0000020096,0.0000020127,0.0000020144,0.0000020152,0.0000020163, +0.0000020190,0.0000020241,0.0000020310,0.0000020386,0.0000020455, +0.0000020510,0.0000020552,0.0000020561,0.0000020554,0.0000020553, +0.0000020526,0.0000020498,0.0000020470,0.0000020442,0.0000020413, +0.0000020397,0.0000020385,0.0000020378,0.0000020379,0.0000020382, +0.0000020388,0.0000020388,0.0000020386,0.0000020384,0.0000020382, +0.0000020384,0.0000020388,0.0000020392,0.0000020394,0.0000020394, +0.0000020397,0.0000020399,0.0000020396,0.0000020394,0.0000020389, +0.0000020379,0.0000020366,0.0000020353,0.0000020346,0.0000020336, +0.0000020321,0.0000020306,0.0000020292,0.0000020275,0.0000020263, +0.0000020249,0.0000020237,0.0000020232,0.0000020232,0.0000020236, +0.0000020238,0.0000020237,0.0000020227,0.0000020213,0.0000020191, +0.0000020162,0.0000020133,0.0000020115,0.0000020105,0.0000020110, +0.0000020125,0.0000020147,0.0000020172,0.0000020201,0.0000020233, +0.0000020260,0.0000020283,0.0000020297,0.0000020296,0.0000020282, +0.0000020264,0.0000020241,0.0000020220,0.0000020205,0.0000020194, +0.0000020188,0.0000020183,0.0000020175,0.0000020167,0.0000020166, +0.0000020163,0.0000020160,0.0000020157,0.0000020154,0.0000020151, +0.0000020149,0.0000020144,0.0000020134,0.0000020119,0.0000020103, +0.0000020087,0.0000020068,0.0000020049,0.0000020036,0.0000020026, +0.0000020019,0.0000020014,0.0000020008,0.0000019997,0.0000019982, +0.0000019964,0.0000019949,0.0000019938,0.0000019932,0.0000019928, +0.0000019918,0.0000019904,0.0000019889,0.0000019872,0.0000019858, +0.0000019843,0.0000019821,0.0000019789,0.0000019747,0.0000019693, +0.0000019628,0.0000019557,0.0000019483,0.0000019405,0.0000019336, +0.0000019285,0.0000019247,0.0000019220,0.0000019202,0.0000019186, +0.0000019169,0.0000019145,0.0000019116,0.0000019091,0.0000019073, +0.0000019068,0.0000019074,0.0000019094,0.0000019118,0.0000019134, +0.0000019137,0.0000019126,0.0000019105,0.0000019079,0.0000019048, +0.0000019017,0.0000018989,0.0000018967,0.0000018950,0.0000018938, +0.0000018929,0.0000018924,0.0000018920,0.0000018917,0.0000018912, +0.0000018905,0.0000018891,0.0000018871,0.0000018849,0.0000018824, +0.0000018797,0.0000018766,0.0000018745,0.0000018727,0.0000018720, +0.0000018724,0.0000018734,0.0000018744,0.0000018758,0.0000018778, +0.0000018801,0.0000018826,0.0000018851,0.0000018883,0.0000018922, +0.0000018963,0.0000019004,0.0000019044,0.0000019081,0.0000019113, +0.0000019138,0.0000019157,0.0000019177,0.0000019209,0.0000019255, +0.0000019307,0.0000019348,0.0000019376,0.0000019382,0.0000019377, +0.0000019372,0.0000019359,0.0000019355,0.0000019345,0.0000019341, +0.0000019341,0.0000019338,0.0000019330,0.0000019319,0.0000019312, +0.0000019308,0.0000019308,0.0000019313,0.0000019329,0.0000019358, +0.0000019399,0.0000019446,0.0000019482,0.0000019508,0.0000019507, +0.0000019489,0.0000019447,0.0000019388,0.0000019325,0.0000019276, +0.0000019243,0.0000019221,0.0000019215,0.0000019215,0.0000019234, +0.0000019260,0.0000019290,0.0000019328,0.0000019373,0.0000019413, +0.0000019449,0.0000019477,0.0000019484,0.0000019475,0.0000019444, +0.0000019400,0.0000019360,0.0000019347,0.0000019348,0.0000019358, +0.0000019370,0.0000019384,0.0000019386,0.0000019379,0.0000019370, +0.0000019371,0.0000019383,0.0000019395,0.0000019411,0.0000019431, +0.0000019453,0.0000019478,0.0000019501,0.0000019525,0.0000019545, +0.0000019562,0.0000019574,0.0000019576,0.0000019568,0.0000019546, +0.0000019506,0.0000019454,0.0000019402,0.0000019367,0.0000019346, +0.0000019337,0.0000019335,0.0000019335,0.0000019339,0.0000019356, +0.0000019384,0.0000019413,0.0000019441,0.0000019468,0.0000019490, +0.0000019500,0.0000019496,0.0000019466,0.0000019423,0.0000019376, +0.0000019331,0.0000019299,0.0000019279,0.0000019268,0.0000019269, +0.0000019269,0.0000019257,0.0000019232,0.0000019206,0.0000019182, +0.0000019152,0.0000019133,0.0000019124,0.0000019117,0.0000019103, +0.0000019077,0.0000019033,0.0000018997,0.0000018974,0.0000018963, +0.0000018957,0.0000018940,0.0000018908,0.0000018864,0.0000018833, +0.0000018831,0.0000018828,0.0000018803,0.0000018750,0.0000018675, +0.0000018598,0.0000018542,0.0000018514,0.0000018491,0.0000018468, +0.0000018448,0.0000018431,0.0000018421,0.0000018420,0.0000018426, +0.0000018447,0.0000018472,0.0000018497,0.0000018506,0.0000018506, +0.0000018488,0.0000018466,0.0000018453,0.0000018464,0.0000018490, +0.0000018518,0.0000018535,0.0000018541,0.0000018541,0.0000018530, +0.0000018505,0.0000018467,0.0000018419,0.0000018385,0.0000018367, +0.0000018372,0.0000018388,0.0000018402,0.0000018412,0.0000018421, +0.0000018436,0.0000018454,0.0000018468,0.0000018470,0.0000018463, +0.0000018445,0.0000018423,0.0000018400,0.0000018381,0.0000018358, +0.0000018334,0.0000018307,0.0000018275,0.0000018244,0.0000018216, +0.0000018188,0.0000018165,0.0000018147,0.0000018133,0.0000018126, +0.0000018124,0.0000018122,0.0000018124,0.0000018133,0.0000018147, +0.0000018159,0.0000018171,0.0000018182,0.0000018193,0.0000018202, +0.0000018208,0.0000018216,0.0000018227,0.0000018239,0.0000018253, +0.0000018274,0.0000018296,0.0000018318,0.0000018342,0.0000018370, +0.0000018404,0.0000018449,0.0000018502,0.0000018556,0.0000018606, +0.0000018650,0.0000018686,0.0000018717,0.0000018757,0.0000018821, +0.0000018918,0.0000019054,0.0000019220,0.0000019391,0.0000019543, +0.0000019661,0.0000019728,0.0000019735,0.0000019712,0.0000019685, +0.0000019634,0.0000019576,0.0000019524,0.0000019482,0.0000019437, +0.0000019389,0.0000019331,0.0000019273,0.0000019230,0.0000019204, +0.0000019202,0.0000019204,0.0000019214,0.0000019225,0.0000019231, +0.0000019234,0.0000019226,0.0000019207,0.0000019182,0.0000019161, +0.0000019153,0.0000019154,0.0000019152,0.0000019137,0.0000019106, +0.0000019061,0.0000019011,0.0000018966,0.0000018928,0.0000018895, +0.0000018863,0.0000018828,0.0000018807,0.0000018797,0.0000018808, +0.0000018820,0.0000018825,0.0000018821,0.0000018814,0.0000018803, +0.0000018788,0.0000018770,0.0000018753,0.0000018739,0.0000018725, +0.0000018688,0.0000018609,0.0000018497,0.0000018395,0.0000018345, +0.0000018349,0.0000018383,0.0000018422,0.0000018451,0.0000018482, +0.0000018520,0.0000018548,0.0000018565,0.0000018560,0.0000018539, +0.0000018511,0.0000018482,0.0000018455,0.0000018430,0.0000018406, +0.0000018383,0.0000018362,0.0000018341,0.0000018320,0.0000018299, +0.0000018275,0.0000018241,0.0000018197,0.0000018154,0.0000018127, +0.0000018126,0.0000018148,0.0000018174,0.0000018195,0.0000018217, +0.0000018243,0.0000018269,0.0000018287,0.0000018291,0.0000018249, +0.0000018164,0.0000018086,0.0000018034,0.0000018005,0.0000017989, +0.0000017984,0.0000017995,0.0000018014,0.0000018038,0.0000018061, +0.0000018086,0.0000018121,0.0000018157,0.0000018188,0.0000018215, +0.0000018234,0.0000018246,0.0000018247,0.0000018243,0.0000018232, +0.0000018213,0.0000018190,0.0000018162,0.0000018131,0.0000018102, +0.0000018072,0.0000018041,0.0000018010,0.0000017979,0.0000017951, +0.0000017927,0.0000017908,0.0000017892,0.0000017879,0.0000017869, +0.0000017859,0.0000017846,0.0000017833,0.0000017819,0.0000017807, +0.0000017799,0.0000017799,0.0000017808,0.0000017833,0.0000017883, +0.0000017961,0.0000018057,0.0000018151,0.0000018224,0.0000018274, +0.0000018317,0.0000018381,0.0000018474,0.0000018578,0.0000018649, +0.0000018668,0.0000018662,0.0000018653,0.0000018654,0.0000018646, +0.0000018624,0.0000018606,0.0000018603,0.0000018602,0.0000018597, +0.0000018588,0.0000018578,0.0000018565,0.0000018545,0.0000018514, +0.0000018475,0.0000018441,0.0000018429,0.0000018435,0.0000018464, +0.0000018521,0.0000018579,0.0000018622,0.0000018646,0.0000018654, +0.0000018656,0.0000018658,0.0000018658,0.0000018652,0.0000018630, +0.0000018593,0.0000018549,0.0000018514,0.0000018512,0.0000018561, +0.0000018645,0.0000018707,0.0000018693,0.0000018624,0.0000018656, +0.0000018736,0.0000018684,0.0000018642,0.0000018674,0.0000018714, +0.0000018795,0.0000018951,0.0000018957,0.0000018875,0.0000018844, +0.0000018850,0.0000018872,0.0000018888,0.0000018892,0.0000018893, +0.0000018848,0.0000018721,0.0000018601,0.0000018539,0.0000018502, +0.0000018469,0.0000018445,0.0000018432,0.0000018456,0.0000018545, +0.0000018652,0.0000018752,0.0000018838,0.0000018914,0.0000018969, +0.0000018996,0.0000019002,0.0000019005,0.0000019016,0.0000019015, +0.0000019018,0.0000019029,0.0000019049,0.0000019072,0.0000019100, +0.0000019108,0.0000019084,0.0000019005,0.0000018892,0.0000018795, +0.0000018745,0.0000018745,0.0000018779,0.0000018839,0.0000018910, +0.0000018974,0.0000018984,0.0000018992,0.0000018986,0.0000018951, +0.0000018912,0.0000018879,0.0000018856,0.0000018851,0.0000018851, +0.0000018869,0.0000018882,0.0000018891,0.0000018888,0.0000018871, +0.0000018846,0.0000018819,0.0000018793,0.0000018775,0.0000018773, +0.0000018787,0.0000018823,0.0000018871,0.0000018914,0.0000018934, +0.0000018927,0.0000018885,0.0000018801,0.0000018676,0.0000018534, +0.0000018404,0.0000018328,0.0000018303,0.0000018300,0.0000018301, +0.0000018292,0.0000018275,0.0000018250,0.0000018216,0.0000018169, +0.0000018099,0.0000018012,0.0000017941,0.0000017893,0.0000017897, +0.0000017929,0.0000017979,0.0000018028,0.0000018070,0.0000018103, +0.0000018123,0.0000018120,0.0000018111,0.0000018087,0.0000018049, +0.0000018007,0.0000017967,0.0000017937,0.0000017917,0.0000017904, +0.0000017895,0.0000017888,0.0000017881,0.0000017874,0.0000017868, +0.0000017862,0.0000017853,0.0000017840,0.0000017826,0.0000017811, +0.0000017797,0.0000017785,0.0000017775,0.0000017766,0.0000017755, +0.0000017744,0.0000017734,0.0000017727,0.0000017720,0.0000017716, +0.0000017721,0.0000017733,0.0000017748,0.0000017767,0.0000017794, +0.0000017824,0.0000017856,0.0000017888,0.0000017913,0.0000017934, +0.0000017953,0.0000017970,0.0000017988,0.0000017999,0.0000018003, +0.0000017999,0.0000017986,0.0000017967,0.0000017948,0.0000017933, +0.0000017920,0.0000017911,0.0000017908,0.0000017908,0.0000017912, +0.0000017918,0.0000017928,0.0000017941,0.0000017960,0.0000017979, +0.0000017999,0.0000018021,0.0000018044,0.0000018069,0.0000018092, +0.0000018050,0.0000018067,0.0000018083,0.0000018098,0.0000018108, +0.0000018117,0.0000018129,0.0000018141,0.0000018150,0.0000018149, +0.0000018148,0.0000018150,0.0000018157,0.0000018170,0.0000018184, +0.0000018194,0.0000018201,0.0000018204,0.0000018203,0.0000018195, +0.0000018188,0.0000018177,0.0000018168,0.0000018162,0.0000018154, +0.0000018147,0.0000018139,0.0000018126,0.0000018108,0.0000018082, +0.0000018056,0.0000018034,0.0000018016,0.0000018000,0.0000017979, +0.0000017963,0.0000017946,0.0000017940,0.0000017952,0.0000017990, +0.0000018046,0.0000018114,0.0000018187,0.0000018258,0.0000018325, +0.0000018382,0.0000018425,0.0000018434,0.0000018421,0.0000018407, +0.0000018389,0.0000018372,0.0000018355,0.0000018344,0.0000018335, +0.0000018324,0.0000018310,0.0000018289,0.0000018264,0.0000018237, +0.0000018214,0.0000018200,0.0000018196,0.0000018200,0.0000018210, +0.0000018225,0.0000018244,0.0000018266,0.0000018294,0.0000018319, +0.0000018337,0.0000018340,0.0000018325,0.0000018293,0.0000018248, +0.0000018193,0.0000018142,0.0000018100,0.0000018083,0.0000018074, +0.0000018077,0.0000018080,0.0000018074,0.0000018053,0.0000018019, +0.0000017987,0.0000017961,0.0000017961,0.0000017990,0.0000018042, +0.0000018106,0.0000018174,0.0000018239,0.0000018290,0.0000018319, +0.0000018328,0.0000018331,0.0000018357,0.0000018423,0.0000018512, +0.0000018592,0.0000018628,0.0000018624,0.0000018614,0.0000018620, +0.0000018646,0.0000018678,0.0000018696,0.0000018698,0.0000018687, +0.0000018666,0.0000018639,0.0000018616,0.0000018598,0.0000018586, +0.0000018579,0.0000018574,0.0000018570,0.0000018563,0.0000018555, +0.0000018546,0.0000018534,0.0000018521,0.0000018509,0.0000018501, +0.0000018495,0.0000018489,0.0000018485,0.0000018481,0.0000018476, +0.0000018466,0.0000018448,0.0000018427,0.0000018401,0.0000018371, +0.0000018341,0.0000018313,0.0000018290,0.0000018274,0.0000018264, +0.0000018260,0.0000018263,0.0000018272,0.0000018283,0.0000018295, +0.0000018309,0.0000018323,0.0000018335,0.0000018345,0.0000018356, +0.0000018366,0.0000018374,0.0000018378,0.0000018377,0.0000018369, +0.0000018351,0.0000018321,0.0000018278,0.0000018222,0.0000018155, +0.0000018081,0.0000018006,0.0000017934,0.0000017869,0.0000017812, +0.0000017762,0.0000017719,0.0000017684,0.0000017656,0.0000017631, +0.0000017607,0.0000017585,0.0000017563,0.0000017541,0.0000017518, +0.0000017496,0.0000017481,0.0000017478,0.0000017484,0.0000017500, +0.0000017527,0.0000017562,0.0000017599,0.0000017637,0.0000017675, +0.0000017710,0.0000017742,0.0000017772,0.0000017801,0.0000017828, +0.0000017858,0.0000017886,0.0000017915,0.0000017948,0.0000017986, +0.0000018030,0.0000018083,0.0000018143,0.0000018202,0.0000018251, +0.0000018288,0.0000018314,0.0000018325,0.0000018322,0.0000018313, +0.0000018298,0.0000018282,0.0000018269,0.0000018261,0.0000018256, +0.0000018251,0.0000018246,0.0000018238,0.0000018229,0.0000018218, +0.0000018207,0.0000018196,0.0000018187,0.0000018182,0.0000018182, +0.0000018183,0.0000018185,0.0000018186,0.0000018189,0.0000018196, +0.0000018209,0.0000018228,0.0000018247,0.0000018254,0.0000018263, +0.0000018266,0.0000018262,0.0000018248,0.0000018220,0.0000018176, +0.0000018115,0.0000018045,0.0000017971,0.0000017891,0.0000017820, +0.0000017791,0.0000017782,0.0000017785,0.0000017810,0.0000017835, +0.0000017854,0.0000017872,0.0000017897,0.0000017931,0.0000017969, +0.0000018003,0.0000018025,0.0000018035,0.0000018038,0.0000018044, +0.0000018050,0.0000018052,0.0000018046,0.0000018031,0.0000018009, +0.0000017982,0.0000017954,0.0000017931,0.0000017926,0.0000017940, +0.0000017978,0.0000018045,0.0000018134,0.0000018230,0.0000018321, +0.0000018399,0.0000018455,0.0000018483,0.0000018485,0.0000018472, +0.0000018449,0.0000018425,0.0000018405,0.0000018386,0.0000018366, +0.0000018349,0.0000018351,0.0000018375,0.0000018411,0.0000018458, +0.0000018504,0.0000018532,0.0000018561,0.0000018645,0.0000018800, +0.0000018978,0.0000019143,0.0000019301,0.0000019443,0.0000019571, +0.0000019676,0.0000019700,0.0000019710,0.0000019765,0.0000019823, +0.0000019891,0.0000019977,0.0000020028,0.0000020024,0.0000019975, +0.0000019929,0.0000019936,0.0000019980,0.0000020005,0.0000020006, +0.0000019987,0.0000019963,0.0000019946,0.0000019945,0.0000019970, +0.0000020019,0.0000020070,0.0000020106,0.0000020125,0.0000020133, +0.0000020130,0.0000020119,0.0000020098,0.0000020075,0.0000020060, +0.0000020058,0.0000020064,0.0000020071,0.0000020071,0.0000020060, +0.0000020042,0.0000020026,0.0000020024,0.0000020031,0.0000020044, +0.0000020056,0.0000020066,0.0000020068,0.0000020064,0.0000020055, +0.0000020042,0.0000020028,0.0000020012,0.0000019996,0.0000019979, +0.0000019963,0.0000019946,0.0000019930,0.0000019913,0.0000019895, +0.0000019874,0.0000019850,0.0000019826,0.0000019800,0.0000019775, +0.0000019754,0.0000019735,0.0000019722,0.0000019712,0.0000019706, +0.0000019702,0.0000019700,0.0000019696,0.0000019693,0.0000019693, +0.0000019692,0.0000019691,0.0000019690,0.0000019690,0.0000019690, +0.0000019691,0.0000019692,0.0000019689,0.0000019681,0.0000019671, +0.0000019659,0.0000019647,0.0000019639,0.0000019636,0.0000019636, +0.0000019634,0.0000019627,0.0000019622,0.0000019618,0.0000019615, +0.0000019614,0.0000019615,0.0000019619,0.0000019619,0.0000019617, +0.0000019615,0.0000019614,0.0000019611,0.0000019605,0.0000019596, +0.0000019589,0.0000019585,0.0000019586,0.0000019590,0.0000019597, +0.0000019604,0.0000019612,0.0000019619,0.0000019629,0.0000019637, +0.0000019644,0.0000019648,0.0000019646,0.0000019639,0.0000019629, +0.0000019620,0.0000019611,0.0000019603,0.0000019599,0.0000019596, +0.0000019591,0.0000019586,0.0000019579,0.0000019571,0.0000019564, +0.0000019555,0.0000019545,0.0000019534,0.0000019522,0.0000019510, +0.0000019497,0.0000019478,0.0000019457,0.0000019436,0.0000019414, +0.0000019390,0.0000019366,0.0000019340,0.0000019318,0.0000019302, +0.0000019288,0.0000019278,0.0000019275,0.0000019276,0.0000019279, +0.0000019284,0.0000019289,0.0000019288,0.0000019283,0.0000019278, +0.0000019270,0.0000019259,0.0000019243,0.0000019226,0.0000019209, +0.0000019193,0.0000019182,0.0000019175,0.0000019172,0.0000019172, +0.0000019173,0.0000019172,0.0000019170,0.0000019167,0.0000019161, +0.0000019156,0.0000019148,0.0000019138,0.0000019126,0.0000019115, +0.0000019104,0.0000019099,0.0000019097,0.0000019098,0.0000019103, +0.0000019112,0.0000019125,0.0000019140,0.0000019154,0.0000019170, +0.0000019185,0.0000019202,0.0000019219,0.0000019240,0.0000019261, +0.0000019281,0.0000019298,0.0000019317,0.0000019332,0.0000019346, +0.0000019362,0.0000019377,0.0000019395,0.0000019413,0.0000019431, +0.0000019449,0.0000019469,0.0000019488,0.0000019501,0.0000019512, +0.0000019516,0.0000019516,0.0000019512,0.0000019506,0.0000019500, +0.0000019496,0.0000019496,0.0000019504,0.0000019521,0.0000019547, +0.0000019578,0.0000019611,0.0000019644,0.0000019672,0.0000019693, +0.0000019709,0.0000019718,0.0000019723,0.0000019725,0.0000019731, +0.0000019739,0.0000019744,0.0000019744,0.0000019742,0.0000019739, +0.0000019743,0.0000019743,0.0000019753,0.0000019767,0.0000019784, +0.0000019801,0.0000019817,0.0000019833,0.0000019846,0.0000019858, +0.0000019873,0.0000019886,0.0000019895,0.0000019908,0.0000019925, +0.0000019945,0.0000019969,0.0000019995,0.0000020023,0.0000020051, +0.0000020078,0.0000020101,0.0000020120,0.0000020137,0.0000020151, +0.0000020160,0.0000020162,0.0000020157,0.0000020143,0.0000020130, +0.0000020124,0.0000020120,0.0000020115,0.0000020116,0.0000020127, +0.0000020144,0.0000020161,0.0000020177,0.0000020184,0.0000020184, +0.0000020177,0.0000020165,0.0000020154,0.0000020143,0.0000020132, +0.0000020122,0.0000020117,0.0000020118,0.0000020120,0.0000020118, +0.0000020117,0.0000020115,0.0000020108,0.0000020099,0.0000020084, +0.0000020067,0.0000020051,0.0000020040,0.0000020034,0.0000020023, +0.0000020013,0.0000020005,0.0000019985,0.0000019955,0.0000019920, +0.0000019884,0.0000019840,0.0000019791,0.0000019764,0.0000019752, +0.0000019743,0.0000019758,0.0000019806,0.0000019869,0.0000019940, +0.0000020014,0.0000020077,0.0000020121,0.0000020143,0.0000020152, +0.0000020172,0.0000020201,0.0000020248,0.0000020304,0.0000020360, +0.0000020414,0.0000020461,0.0000020507,0.0000020530,0.0000020516, +0.0000020513,0.0000020497,0.0000020464,0.0000020429,0.0000020394, +0.0000020367,0.0000020346,0.0000020336,0.0000020339,0.0000020347, +0.0000020363,0.0000020380,0.0000020385,0.0000020395,0.0000020398, +0.0000020397,0.0000020394,0.0000020387,0.0000020381,0.0000020379, +0.0000020379,0.0000020383,0.0000020384,0.0000020381,0.0000020373, +0.0000020368,0.0000020360,0.0000020349,0.0000020329,0.0000020310, +0.0000020297,0.0000020287,0.0000020290,0.0000020292,0.0000020292, +0.0000020289,0.0000020288,0.0000020289,0.0000020291,0.0000020289, +0.0000020286,0.0000020277,0.0000020266,0.0000020254,0.0000020235, +0.0000020216,0.0000020199,0.0000020192,0.0000020190,0.0000020194, +0.0000020205,0.0000020220,0.0000020239,0.0000020265,0.0000020290, +0.0000020309,0.0000020317,0.0000020317,0.0000020314,0.0000020306, +0.0000020295,0.0000020288,0.0000020283,0.0000020282,0.0000020285, +0.0000020287,0.0000020283,0.0000020284,0.0000020289,0.0000020290, +0.0000020284,0.0000020276,0.0000020272,0.0000020269,0.0000020263, +0.0000020247,0.0000020226,0.0000020203,0.0000020180,0.0000020153, +0.0000020122,0.0000020096,0.0000020073,0.0000020058,0.0000020048, +0.0000020036,0.0000020026,0.0000020017,0.0000020004,0.0000019987, +0.0000019971,0.0000019957,0.0000019946,0.0000019938,0.0000019929, +0.0000019919,0.0000019906,0.0000019892,0.0000019880,0.0000019865, +0.0000019844,0.0000019819,0.0000019787,0.0000019745,0.0000019699, +0.0000019647,0.0000019585,0.0000019521,0.0000019463,0.0000019412, +0.0000019365,0.0000019328,0.0000019297,0.0000019267,0.0000019238, +0.0000019207,0.0000019173,0.0000019135,0.0000019104,0.0000019085, +0.0000019086,0.0000019099,0.0000019118,0.0000019128,0.0000019133, +0.0000019128,0.0000019124,0.0000019116,0.0000019109,0.0000019095, +0.0000019082,0.0000019076,0.0000019071,0.0000019069,0.0000019067, +0.0000019066,0.0000019060,0.0000019049,0.0000019032,0.0000019002, +0.0000018961,0.0000018918,0.0000018872,0.0000018826,0.0000018785, +0.0000018752,0.0000018728,0.0000018714,0.0000018706,0.0000018700, +0.0000018702,0.0000018711,0.0000018727,0.0000018747,0.0000018762, +0.0000018776,0.0000018793,0.0000018816,0.0000018845,0.0000018878, +0.0000018913,0.0000018950,0.0000018987,0.0000019020,0.0000019043, +0.0000019062,0.0000019087,0.0000019125,0.0000019175,0.0000019232, +0.0000019290,0.0000019336,0.0000019370,0.0000019387,0.0000019392, +0.0000019385,0.0000019364,0.0000019341,0.0000019328,0.0000019314, +0.0000019297,0.0000019281,0.0000019266,0.0000019257,0.0000019252, +0.0000019251,0.0000019258,0.0000019274,0.0000019301,0.0000019335, +0.0000019370,0.0000019408,0.0000019440,0.0000019459,0.0000019453, +0.0000019427,0.0000019383,0.0000019326,0.0000019270,0.0000019225, +0.0000019210,0.0000019200,0.0000019212,0.0000019230,0.0000019246, +0.0000019264,0.0000019290,0.0000019326,0.0000019368,0.0000019411, +0.0000019445,0.0000019461,0.0000019449,0.0000019428,0.0000019403, +0.0000019392,0.0000019380,0.0000019367,0.0000019361,0.0000019350, +0.0000019337,0.0000019324,0.0000019319,0.0000019331,0.0000019357, +0.0000019374,0.0000019384,0.0000019389,0.0000019397,0.0000019417, +0.0000019444,0.0000019470,0.0000019492,0.0000019514,0.0000019532, +0.0000019537,0.0000019528,0.0000019500,0.0000019455,0.0000019401, +0.0000019358,0.0000019329,0.0000019315,0.0000019310,0.0000019314, +0.0000019320,0.0000019332,0.0000019355,0.0000019392,0.0000019430, +0.0000019461,0.0000019485,0.0000019504,0.0000019511,0.0000019498, +0.0000019459,0.0000019411,0.0000019357,0.0000019304,0.0000019268, +0.0000019241,0.0000019223,0.0000019218,0.0000019217,0.0000019205, +0.0000019172,0.0000019136,0.0000019108,0.0000019091,0.0000019089, +0.0000019095,0.0000019091,0.0000019074,0.0000019036,0.0000018984, +0.0000018946,0.0000018927,0.0000018921,0.0000018916,0.0000018902, +0.0000018873,0.0000018837,0.0000018817,0.0000018816,0.0000018825, +0.0000018810,0.0000018767,0.0000018699,0.0000018618,0.0000018551, +0.0000018513,0.0000018491,0.0000018468,0.0000018446,0.0000018434, +0.0000018428,0.0000018431,0.0000018447,0.0000018468,0.0000018487, +0.0000018494,0.0000018498,0.0000018492,0.0000018479,0.0000018456, +0.0000018437,0.0000018423,0.0000018436,0.0000018469,0.0000018497, +0.0000018511,0.0000018515,0.0000018511,0.0000018493,0.0000018458, +0.0000018409,0.0000018369,0.0000018351,0.0000018346,0.0000018353, +0.0000018357,0.0000018360,0.0000018365,0.0000018378,0.0000018395, +0.0000018409,0.0000018418,0.0000018421,0.0000018414,0.0000018403, +0.0000018391,0.0000018378,0.0000018359,0.0000018337,0.0000018307, +0.0000018271,0.0000018234,0.0000018198,0.0000018169,0.0000018146, +0.0000018121,0.0000018099,0.0000018083,0.0000018073,0.0000018067, +0.0000018065,0.0000018069,0.0000018077,0.0000018087,0.0000018096, +0.0000018107,0.0000018117,0.0000018125,0.0000018130,0.0000018138, +0.0000018147,0.0000018158,0.0000018174,0.0000018194,0.0000018215, +0.0000018237,0.0000018259,0.0000018282,0.0000018311,0.0000018348, +0.0000018396,0.0000018451,0.0000018510,0.0000018569,0.0000018619, +0.0000018658,0.0000018691,0.0000018728,0.0000018782,0.0000018868, +0.0000018989,0.0000019138,0.0000019298,0.0000019447,0.0000019572, +0.0000019646,0.0000019688,0.0000019689,0.0000019670,0.0000019619, +0.0000019566,0.0000019527,0.0000019488,0.0000019453,0.0000019412, +0.0000019366,0.0000019319,0.0000019275,0.0000019239,0.0000019219, +0.0000019220,0.0000019228,0.0000019236,0.0000019241,0.0000019240, +0.0000019225,0.0000019198,0.0000019174,0.0000019161,0.0000019156, +0.0000019152,0.0000019141,0.0000019116,0.0000019076,0.0000019026, +0.0000018976,0.0000018934,0.0000018903,0.0000018874,0.0000018840, +0.0000018804,0.0000018780,0.0000018770,0.0000018771,0.0000018775, +0.0000018779,0.0000018780,0.0000018774,0.0000018761,0.0000018747, +0.0000018735,0.0000018724,0.0000018712,0.0000018689,0.0000018633, +0.0000018539,0.0000018437,0.0000018367,0.0000018359,0.0000018393, +0.0000018442,0.0000018478,0.0000018505,0.0000018532,0.0000018557, +0.0000018570,0.0000018571,0.0000018560,0.0000018540,0.0000018514, +0.0000018485,0.0000018454,0.0000018422,0.0000018392,0.0000018363, +0.0000018333,0.0000018305,0.0000018274,0.0000018241,0.0000018208, +0.0000018183,0.0000018172,0.0000018175,0.0000018187,0.0000018200, +0.0000018216,0.0000018238,0.0000018267,0.0000018297,0.0000018319, +0.0000018332,0.0000018312,0.0000018245,0.0000018155,0.0000018077, +0.0000018032,0.0000018017,0.0000018011,0.0000018019,0.0000018045, +0.0000018077,0.0000018107,0.0000018142,0.0000018183,0.0000018226, +0.0000018266,0.0000018302,0.0000018329,0.0000018347,0.0000018357, +0.0000018358,0.0000018352,0.0000018339,0.0000018322,0.0000018299, +0.0000018273,0.0000018245,0.0000018218,0.0000018189,0.0000018157, +0.0000018124,0.0000018088,0.0000018049,0.0000018010,0.0000017975, +0.0000017943,0.0000017918,0.0000017895,0.0000017875,0.0000017859, +0.0000017849,0.0000017845,0.0000017850,0.0000017865,0.0000017889, +0.0000017930,0.0000017989,0.0000018060,0.0000018137,0.0000018207, +0.0000018262,0.0000018303,0.0000018349,0.0000018415,0.0000018507, +0.0000018600,0.0000018657,0.0000018667,0.0000018659,0.0000018652, +0.0000018648,0.0000018628,0.0000018598,0.0000018583,0.0000018583, +0.0000018583,0.0000018576,0.0000018563,0.0000018545,0.0000018523, +0.0000018493,0.0000018457,0.0000018429,0.0000018420,0.0000018423, +0.0000018442,0.0000018485,0.0000018536,0.0000018576,0.0000018601, +0.0000018617,0.0000018635,0.0000018651,0.0000018658,0.0000018647, +0.0000018612,0.0000018562,0.0000018510,0.0000018474,0.0000018478, +0.0000018527,0.0000018612,0.0000018697,0.0000018701,0.0000018633, +0.0000018640,0.0000018735,0.0000018711,0.0000018647,0.0000018655, +0.0000018703,0.0000018729,0.0000018847,0.0000018964,0.0000018917, +0.0000018851,0.0000018841,0.0000018851,0.0000018863,0.0000018867, +0.0000018867,0.0000018821,0.0000018698,0.0000018586,0.0000018528, +0.0000018493,0.0000018469,0.0000018461,0.0000018518,0.0000018625, +0.0000018738,0.0000018826,0.0000018893,0.0000018943,0.0000018961, +0.0000018961,0.0000018943,0.0000018920,0.0000018904,0.0000018898, +0.0000018897,0.0000018904,0.0000018912,0.0000018924,0.0000018949, +0.0000018998,0.0000019066,0.0000019115,0.0000019090,0.0000018945, +0.0000018724,0.0000018545,0.0000018469,0.0000018463,0.0000018485, +0.0000018527,0.0000018593,0.0000018676,0.0000018764,0.0000018860, +0.0000018937,0.0000018943,0.0000018944,0.0000018921,0.0000018876, +0.0000018846,0.0000018823,0.0000018815,0.0000018829,0.0000018852, +0.0000018881,0.0000018881,0.0000018884,0.0000018883,0.0000018879, +0.0000018872,0.0000018873,0.0000018884,0.0000018905,0.0000018927, +0.0000018948,0.0000018959,0.0000018965,0.0000018957,0.0000018923, +0.0000018836,0.0000018702,0.0000018545,0.0000018401,0.0000018320, +0.0000018301,0.0000018302,0.0000018307,0.0000018305,0.0000018288, +0.0000018262,0.0000018224,0.0000018171,0.0000018097,0.0000018011, +0.0000017938,0.0000017896,0.0000017902,0.0000017938,0.0000017982, +0.0000018026,0.0000018062,0.0000018090,0.0000018104,0.0000018110, +0.0000018104,0.0000018085,0.0000018053,0.0000018021,0.0000017992, +0.0000017972,0.0000017961,0.0000017955,0.0000017950,0.0000017944, +0.0000017937,0.0000017929,0.0000017918,0.0000017904,0.0000017888, +0.0000017869,0.0000017851,0.0000017833,0.0000017818,0.0000017805, +0.0000017794,0.0000017783,0.0000017773,0.0000017768,0.0000017763, +0.0000017764,0.0000017774,0.0000017791,0.0000017815,0.0000017841, +0.0000017870,0.0000017904,0.0000017935,0.0000017965,0.0000017990, +0.0000018009,0.0000018025,0.0000018041,0.0000018056,0.0000018067, +0.0000018072,0.0000018071,0.0000018059,0.0000018040,0.0000018016, +0.0000017992,0.0000017975,0.0000017959,0.0000017948,0.0000017942, +0.0000017936,0.0000017933,0.0000017934,0.0000017937,0.0000017949, +0.0000017962,0.0000017977,0.0000017989,0.0000018004,0.0000018018, +0.0000018034,0.0000018067,0.0000018068,0.0000018072,0.0000018079, +0.0000018085,0.0000018086,0.0000018081,0.0000018086,0.0000018099, +0.0000018106,0.0000018109,0.0000018112,0.0000018120,0.0000018130, +0.0000018143,0.0000018158,0.0000018168,0.0000018174,0.0000018176, +0.0000018175,0.0000018170,0.0000018161,0.0000018152,0.0000018146, +0.0000018144,0.0000018145,0.0000018148,0.0000018149,0.0000018147, +0.0000018139,0.0000018121,0.0000018092,0.0000018063,0.0000018035, +0.0000018007,0.0000017982,0.0000017955,0.0000017931,0.0000017906, +0.0000017897,0.0000017906,0.0000017941,0.0000017996,0.0000018060, +0.0000018126,0.0000018194,0.0000018263,0.0000018328,0.0000018379, +0.0000018408,0.0000018408,0.0000018398,0.0000018387,0.0000018372, +0.0000018360,0.0000018348,0.0000018334,0.0000018320,0.0000018306, +0.0000018291,0.0000018274,0.0000018257,0.0000018243,0.0000018236, +0.0000018237,0.0000018245,0.0000018258,0.0000018275,0.0000018296, +0.0000018319,0.0000018339,0.0000018354,0.0000018365,0.0000018364, +0.0000018349,0.0000018316,0.0000018268,0.0000018210,0.0000018153, +0.0000018104,0.0000018076,0.0000018068,0.0000018065,0.0000018063, +0.0000018049,0.0000018017,0.0000017970,0.0000017927,0.0000017903, +0.0000017909,0.0000017940,0.0000017994,0.0000018064,0.0000018140, +0.0000018208,0.0000018258,0.0000018282,0.0000018291,0.0000018307, +0.0000018358,0.0000018439,0.0000018528,0.0000018587,0.0000018604, +0.0000018600,0.0000018601,0.0000018619,0.0000018642,0.0000018654, +0.0000018652,0.0000018637,0.0000018612,0.0000018587,0.0000018569, +0.0000018556,0.0000018549,0.0000018547,0.0000018545,0.0000018541, +0.0000018535,0.0000018526,0.0000018513,0.0000018497,0.0000018480, +0.0000018468,0.0000018459,0.0000018451,0.0000018445,0.0000018442, +0.0000018440,0.0000018436,0.0000018430,0.0000018417,0.0000018397, +0.0000018373,0.0000018349,0.0000018325,0.0000018299,0.0000018277, +0.0000018262,0.0000018254,0.0000018253,0.0000018258,0.0000018265, +0.0000018274,0.0000018286,0.0000018299,0.0000018311,0.0000018322, +0.0000018331,0.0000018336,0.0000018337,0.0000018332,0.0000018317, +0.0000018291,0.0000018255,0.0000018206,0.0000018145,0.0000018076, +0.0000017999,0.0000017922,0.0000017849,0.0000017787,0.0000017735, +0.0000017690,0.0000017657,0.0000017633,0.0000017617,0.0000017603, +0.0000017590,0.0000017576,0.0000017559,0.0000017541,0.0000017521, +0.0000017499,0.0000017476,0.0000017453,0.0000017437,0.0000017434, +0.0000017441,0.0000017463,0.0000017498,0.0000017537,0.0000017577, +0.0000017615,0.0000017647,0.0000017672,0.0000017690,0.0000017702, +0.0000017710,0.0000017717,0.0000017721,0.0000017726,0.0000017735, +0.0000017751,0.0000017779,0.0000017827,0.0000017893,0.0000017969, +0.0000018045,0.0000018118,0.0000018183,0.0000018234,0.0000018268, +0.0000018284,0.0000018289,0.0000018279,0.0000018274,0.0000018272, +0.0000018271,0.0000018268,0.0000018261,0.0000018251,0.0000018237, +0.0000018220,0.0000018201,0.0000018182,0.0000018168,0.0000018154, +0.0000018146,0.0000018137,0.0000018128,0.0000018121,0.0000018117, +0.0000018121,0.0000018131,0.0000018149,0.0000018171,0.0000018195, +0.0000018217,0.0000018237,0.0000018253,0.0000018251,0.0000018249, +0.0000018241,0.0000018221,0.0000018191,0.0000018145,0.0000018083, +0.0000018012,0.0000017932,0.0000017850,0.0000017803,0.0000017798, +0.0000017804,0.0000017830,0.0000017860,0.0000017883,0.0000017905, +0.0000017933,0.0000017967,0.0000018001,0.0000018024,0.0000018033, +0.0000018033,0.0000018029,0.0000018022,0.0000018008,0.0000017985, +0.0000017957,0.0000017926,0.0000017897,0.0000017876,0.0000017867, +0.0000017868,0.0000017881,0.0000017919,0.0000017978,0.0000018051, +0.0000018137,0.0000018233,0.0000018325,0.0000018397,0.0000018435, +0.0000018438,0.0000018420,0.0000018391,0.0000018361,0.0000018335, +0.0000018314,0.0000018305,0.0000018315,0.0000018342,0.0000018380, +0.0000018432,0.0000018483,0.0000018514,0.0000018542,0.0000018623, +0.0000018780,0.0000018964,0.0000019129,0.0000019282,0.0000019417, +0.0000019544,0.0000019639,0.0000019651,0.0000019671,0.0000019734, +0.0000019792,0.0000019870,0.0000019961,0.0000020003,0.0000019987, +0.0000019938,0.0000019909,0.0000019935,0.0000019973,0.0000019991, +0.0000019990,0.0000019972,0.0000019951,0.0000019934,0.0000019918, +0.0000019915,0.0000019936,0.0000019972,0.0000020009,0.0000020040, +0.0000020067,0.0000020090,0.0000020101,0.0000020098,0.0000020090, +0.0000020070,0.0000020052,0.0000020045,0.0000020050,0.0000020061, +0.0000020068,0.0000020067,0.0000020056,0.0000020041,0.0000020025, +0.0000020013,0.0000020008,0.0000020005,0.0000020000,0.0000019995, +0.0000019988,0.0000019977,0.0000019964,0.0000019950,0.0000019936, +0.0000019924,0.0000019912,0.0000019901,0.0000019889,0.0000019876, +0.0000019863,0.0000019847,0.0000019831,0.0000019813,0.0000019792, +0.0000019774,0.0000019756,0.0000019741,0.0000019729,0.0000019720, +0.0000019714,0.0000019710,0.0000019706,0.0000019703,0.0000019702, +0.0000019701,0.0000019700,0.0000019698,0.0000019695,0.0000019694, +0.0000019693,0.0000019693,0.0000019691,0.0000019683,0.0000019673, +0.0000019661,0.0000019649,0.0000019641,0.0000019636,0.0000019633, +0.0000019626,0.0000019615,0.0000019606,0.0000019597,0.0000019589, +0.0000019586,0.0000019586,0.0000019587,0.0000019588,0.0000019588, +0.0000019588,0.0000019584,0.0000019578,0.0000019570,0.0000019562, +0.0000019555,0.0000019552,0.0000019553,0.0000019557,0.0000019563, +0.0000019569,0.0000019575,0.0000019583,0.0000019590,0.0000019599, +0.0000019608,0.0000019613,0.0000019612,0.0000019608,0.0000019601, +0.0000019592,0.0000019583,0.0000019575,0.0000019571,0.0000019567, +0.0000019561,0.0000019554,0.0000019543,0.0000019532,0.0000019521, +0.0000019506,0.0000019492,0.0000019478,0.0000019461,0.0000019445, +0.0000019430,0.0000019410,0.0000019387,0.0000019364,0.0000019342, +0.0000019320,0.0000019296,0.0000019269,0.0000019248,0.0000019232, +0.0000019220,0.0000019218,0.0000019221,0.0000019225,0.0000019230, +0.0000019237,0.0000019243,0.0000019242,0.0000019236,0.0000019229, +0.0000019220,0.0000019210,0.0000019197,0.0000019185,0.0000019173, +0.0000019158,0.0000019147,0.0000019139,0.0000019135,0.0000019135, +0.0000019135,0.0000019136,0.0000019136,0.0000019133,0.0000019130, +0.0000019127,0.0000019122,0.0000019116,0.0000019107,0.0000019096, +0.0000019084,0.0000019074,0.0000019066,0.0000019062,0.0000019063, +0.0000019067,0.0000019074,0.0000019083,0.0000019094,0.0000019108, +0.0000019122,0.0000019137,0.0000019154,0.0000019176,0.0000019198, +0.0000019218,0.0000019235,0.0000019250,0.0000019263,0.0000019271, +0.0000019277,0.0000019284,0.0000019291,0.0000019301,0.0000019313, +0.0000019327,0.0000019343,0.0000019359,0.0000019374,0.0000019388, +0.0000019397,0.0000019404,0.0000019407,0.0000019408,0.0000019408, +0.0000019410,0.0000019414,0.0000019420,0.0000019433,0.0000019451, +0.0000019476,0.0000019505,0.0000019539,0.0000019574,0.0000019607, +0.0000019637,0.0000019662,0.0000019682,0.0000019699,0.0000019718, +0.0000019736,0.0000019748,0.0000019755,0.0000019754,0.0000019749, +0.0000019743,0.0000019738,0.0000019734,0.0000019733,0.0000019736, +0.0000019739,0.0000019744,0.0000019750,0.0000019760,0.0000019771, +0.0000019784,0.0000019799,0.0000019812,0.0000019823,0.0000019836, +0.0000019851,0.0000019868,0.0000019890,0.0000019913,0.0000019937, +0.0000019966,0.0000019994,0.0000020021,0.0000020048,0.0000020073, +0.0000020094,0.0000020108,0.0000020116,0.0000020116,0.0000020111, +0.0000020106,0.0000020100,0.0000020089,0.0000020078,0.0000020070, +0.0000020069,0.0000020072,0.0000020081,0.0000020088,0.0000020090, +0.0000020087,0.0000020077,0.0000020062,0.0000020051,0.0000020043, +0.0000020038,0.0000020041,0.0000020047,0.0000020050,0.0000020053, +0.0000020055,0.0000020060,0.0000020067,0.0000020066,0.0000020058, +0.0000020044,0.0000020026,0.0000020006,0.0000019987,0.0000019969, +0.0000019964,0.0000019965,0.0000019970,0.0000019970,0.0000019984, +0.0000019989,0.0000019972,0.0000019936,0.0000019892,0.0000019842, +0.0000019788,0.0000019753,0.0000019746,0.0000019747,0.0000019780, +0.0000019844,0.0000019914,0.0000019979,0.0000020035,0.0000020086, +0.0000020126,0.0000020165,0.0000020198,0.0000020221,0.0000020246, +0.0000020275,0.0000020310,0.0000020347,0.0000020381,0.0000020414, +0.0000020448,0.0000020469,0.0000020463,0.0000020457,0.0000020440, +0.0000020406,0.0000020376,0.0000020351,0.0000020332,0.0000020317, +0.0000020314,0.0000020320,0.0000020333,0.0000020349,0.0000020368, +0.0000020383,0.0000020385,0.0000020382,0.0000020376,0.0000020367, +0.0000020360,0.0000020358,0.0000020357,0.0000020358,0.0000020358, +0.0000020357,0.0000020346,0.0000020327,0.0000020306,0.0000020289, +0.0000020279,0.0000020276,0.0000020283,0.0000020296,0.0000020307, +0.0000020317,0.0000020324,0.0000020326,0.0000020323,0.0000020314, +0.0000020305,0.0000020298,0.0000020292,0.0000020285,0.0000020278, +0.0000020269,0.0000020261,0.0000020257,0.0000020253,0.0000020251, +0.0000020254,0.0000020260,0.0000020275,0.0000020297,0.0000020323, +0.0000020340,0.0000020346,0.0000020347,0.0000020345,0.0000020341, +0.0000020337,0.0000020332,0.0000020334,0.0000020337,0.0000020343, +0.0000020344,0.0000020348,0.0000020352,0.0000020353,0.0000020352, +0.0000020347,0.0000020342,0.0000020335,0.0000020326,0.0000020311, +0.0000020292,0.0000020270,0.0000020248,0.0000020223,0.0000020198, +0.0000020170,0.0000020142,0.0000020115,0.0000020090,0.0000020071, +0.0000020065,0.0000020064,0.0000020060,0.0000020050,0.0000020033, +0.0000020013,0.0000019991,0.0000019967,0.0000019946,0.0000019931, +0.0000019918,0.0000019903,0.0000019891,0.0000019882,0.0000019863, +0.0000019837,0.0000019808,0.0000019777,0.0000019749,0.0000019718, +0.0000019680,0.0000019641,0.0000019600,0.0000019561,0.0000019524, +0.0000019492,0.0000019460,0.0000019418,0.0000019373,0.0000019333, +0.0000019291,0.0000019240,0.0000019190,0.0000019150,0.0000019123, +0.0000019117,0.0000019120,0.0000019122,0.0000019120,0.0000019113, +0.0000019103,0.0000019096,0.0000019094,0.0000019089,0.0000019090, +0.0000019099,0.0000019105,0.0000019129,0.0000019152,0.0000019175, +0.0000019192,0.0000019203,0.0000019202,0.0000019186,0.0000019154, +0.0000019107,0.0000019046,0.0000018973,0.0000018898,0.0000018831, +0.0000018778,0.0000018738,0.0000018708,0.0000018693,0.0000018684, +0.0000018681,0.0000018690,0.0000018706,0.0000018720,0.0000018734, +0.0000018746,0.0000018761,0.0000018782,0.0000018805,0.0000018827, +0.0000018850,0.0000018876,0.0000018905,0.0000018931,0.0000018953, +0.0000018975,0.0000019002,0.0000019041,0.0000019090,0.0000019146, +0.0000019208,0.0000019272,0.0000019334,0.0000019382,0.0000019398, +0.0000019408,0.0000019394,0.0000019363,0.0000019330,0.0000019298, +0.0000019267,0.0000019241,0.0000019218,0.0000019204,0.0000019195, +0.0000019195,0.0000019202,0.0000019219,0.0000019244,0.0000019269, +0.0000019297,0.0000019329,0.0000019360,0.0000019385,0.0000019399, +0.0000019389,0.0000019364,0.0000019326,0.0000019280,0.0000019234, +0.0000019201,0.0000019194,0.0000019202,0.0000019220,0.0000019241, +0.0000019263,0.0000019283,0.0000019307,0.0000019333,0.0000019358, +0.0000019380,0.0000019391,0.0000019395,0.0000019405,0.0000019418, +0.0000019423,0.0000019418,0.0000019403,0.0000019375,0.0000019337, +0.0000019305,0.0000019285,0.0000019287,0.0000019312,0.0000019333, +0.0000019348,0.0000019357,0.0000019363,0.0000019375,0.0000019392, +0.0000019409,0.0000019424,0.0000019444,0.0000019462,0.0000019470, +0.0000019464,0.0000019436,0.0000019388,0.0000019338,0.0000019300, +0.0000019279,0.0000019273,0.0000019274,0.0000019287,0.0000019307, +0.0000019325,0.0000019358,0.0000019403,0.0000019445,0.0000019475, +0.0000019497,0.0000019510,0.0000019507,0.0000019481,0.0000019436, +0.0000019385,0.0000019327,0.0000019273,0.0000019232,0.0000019203, +0.0000019181,0.0000019170,0.0000019164,0.0000019147,0.0000019113, +0.0000019071,0.0000019042,0.0000019035,0.0000019050,0.0000019067, +0.0000019067,0.0000019042,0.0000018993,0.0000018940,0.0000018905, +0.0000018888,0.0000018880,0.0000018870,0.0000018851,0.0000018827, +0.0000018803,0.0000018783,0.0000018785,0.0000018798,0.0000018796, +0.0000018760,0.0000018703,0.0000018631,0.0000018562,0.0000018512, +0.0000018485,0.0000018462,0.0000018443,0.0000018437,0.0000018439, +0.0000018451,0.0000018471,0.0000018494,0.0000018507,0.0000018507, +0.0000018497,0.0000018486,0.0000018470,0.0000018452,0.0000018426, +0.0000018395,0.0000018390,0.0000018419,0.0000018457,0.0000018478, +0.0000018488,0.0000018487,0.0000018476,0.0000018447,0.0000018409, +0.0000018378,0.0000018358,0.0000018350,0.0000018342,0.0000018332, +0.0000018324,0.0000018319,0.0000018321,0.0000018332,0.0000018346, +0.0000018361,0.0000018372,0.0000018376,0.0000018378,0.0000018379, +0.0000018374,0.0000018366,0.0000018350,0.0000018321,0.0000018286, +0.0000018244,0.0000018203,0.0000018167,0.0000018136,0.0000018106, +0.0000018079,0.0000018056,0.0000018039,0.0000018027,0.0000018021, +0.0000018021,0.0000018025,0.0000018032,0.0000018040,0.0000018048, +0.0000018055,0.0000018059,0.0000018061,0.0000018063,0.0000018067, +0.0000018076,0.0000018089,0.0000018105,0.0000018125,0.0000018149, +0.0000018173,0.0000018198,0.0000018225,0.0000018257,0.0000018298, +0.0000018348,0.0000018406,0.0000018471,0.0000018533,0.0000018586, +0.0000018631,0.0000018666,0.0000018701,0.0000018750,0.0000018823, +0.0000018927,0.0000019053,0.0000019192,0.0000019333,0.0000019457, +0.0000019558,0.0000019626,0.0000019640,0.0000019611,0.0000019601, +0.0000019566,0.0000019523,0.0000019489,0.0000019459,0.0000019435, +0.0000019404,0.0000019363,0.0000019319,0.0000019276,0.0000019248, +0.0000019238,0.0000019241,0.0000019246,0.0000019248,0.0000019236, +0.0000019211,0.0000019185,0.0000019166,0.0000019155,0.0000019149, +0.0000019141,0.0000019121,0.0000019087,0.0000019040,0.0000018987, +0.0000018941,0.0000018907,0.0000018879,0.0000018846,0.0000018805, +0.0000018766,0.0000018739,0.0000018725,0.0000018726,0.0000018735, +0.0000018739,0.0000018737,0.0000018733,0.0000018729,0.0000018720, +0.0000018709,0.0000018694,0.0000018682,0.0000018649,0.0000018578, +0.0000018482,0.0000018402,0.0000018383,0.0000018405,0.0000018457, +0.0000018503,0.0000018531,0.0000018547,0.0000018559,0.0000018567, +0.0000018569,0.0000018567,0.0000018553,0.0000018529,0.0000018499, +0.0000018466,0.0000018429,0.0000018390,0.0000018353,0.0000018318, +0.0000018287,0.0000018260,0.0000018241,0.0000018229,0.0000018227, +0.0000018231,0.0000018237,0.0000018241,0.0000018249,0.0000018269, +0.0000018299,0.0000018326,0.0000018350,0.0000018366,0.0000018365, +0.0000018326,0.0000018242,0.0000018144,0.0000018073,0.0000018043, +0.0000018034,0.0000018036,0.0000018064,0.0000018104,0.0000018147, +0.0000018187,0.0000018231,0.0000018282,0.0000018333,0.0000018379, +0.0000018415,0.0000018444,0.0000018464,0.0000018473,0.0000018473, +0.0000018464,0.0000018452,0.0000018433,0.0000018410,0.0000018384, +0.0000018357,0.0000018330,0.0000018305,0.0000018277,0.0000018243, +0.0000018203,0.0000018159,0.0000018113,0.0000018068,0.0000018030, +0.0000017999,0.0000017975,0.0000017958,0.0000017950,0.0000017950, +0.0000017960,0.0000017981,0.0000018012,0.0000018052,0.0000018102, +0.0000018158,0.0000018215,0.0000018264,0.0000018303,0.0000018341, +0.0000018391,0.0000018460,0.0000018547,0.0000018625,0.0000018662, +0.0000018663,0.0000018652,0.0000018643,0.0000018628,0.0000018597, +0.0000018570,0.0000018565,0.0000018567,0.0000018562,0.0000018546, +0.0000018526,0.0000018502,0.0000018475,0.0000018445,0.0000018424, +0.0000018418,0.0000018423,0.0000018434,0.0000018464,0.0000018506, +0.0000018545,0.0000018577,0.0000018604,0.0000018630,0.0000018650, +0.0000018656,0.0000018635,0.0000018585,0.0000018524,0.0000018470, +0.0000018442,0.0000018458,0.0000018502,0.0000018579,0.0000018669, +0.0000018707,0.0000018647,0.0000018633,0.0000018736,0.0000018737, +0.0000018657,0.0000018651,0.0000018703,0.0000018726,0.0000018748, +0.0000018890,0.0000018953,0.0000018885,0.0000018836,0.0000018835, +0.0000018845,0.0000018850,0.0000018851,0.0000018798,0.0000018681, +0.0000018579,0.0000018522,0.0000018491,0.0000018486,0.0000018551, +0.0000018671,0.0000018785,0.0000018855,0.0000018899,0.0000018935, +0.0000018947,0.0000018927,0.0000018884,0.0000018854,0.0000018848, +0.0000018864,0.0000018888,0.0000018915,0.0000018942,0.0000018958, +0.0000018961,0.0000018953,0.0000018953,0.0000018989,0.0000019054, +0.0000019081,0.0000018970,0.0000018704,0.0000018458,0.0000018350, +0.0000018328,0.0000018319,0.0000018318,0.0000018332,0.0000018368, +0.0000018426,0.0000018506,0.0000018602,0.0000018706,0.0000018795, +0.0000018876,0.0000018904,0.0000018888,0.0000018858,0.0000018809, +0.0000018758,0.0000018723,0.0000018721,0.0000018748,0.0000018780, +0.0000018815,0.0000018854,0.0000018878,0.0000018893,0.0000018898, +0.0000018908,0.0000018923,0.0000018934,0.0000018943,0.0000018953, +0.0000018959,0.0000018965,0.0000018959,0.0000018920,0.0000018835, +0.0000018694,0.0000018529,0.0000018388,0.0000018315,0.0000018301, +0.0000018308,0.0000018315,0.0000018314,0.0000018296,0.0000018263, +0.0000018218,0.0000018161,0.0000018088,0.0000018007,0.0000017943, +0.0000017911,0.0000017916,0.0000017949,0.0000017984,0.0000018018, +0.0000018045,0.0000018067,0.0000018083,0.0000018092,0.0000018081, +0.0000018072,0.0000018055,0.0000018037,0.0000018024,0.0000018020, +0.0000018020,0.0000018020,0.0000018018,0.0000018014,0.0000018006, +0.0000017995,0.0000017980,0.0000017962,0.0000017943,0.0000017922, +0.0000017902,0.0000017882,0.0000017864,0.0000017849,0.0000017838, +0.0000017832,0.0000017830,0.0000017832,0.0000017841,0.0000017856, +0.0000017878,0.0000017906,0.0000017935,0.0000017965,0.0000017992, +0.0000018016,0.0000018037,0.0000018053,0.0000018063,0.0000018067, +0.0000018073,0.0000018079,0.0000018085,0.0000018087,0.0000018086, +0.0000018078,0.0000018062,0.0000018044,0.0000018032,0.0000018023, +0.0000018018,0.0000018015,0.0000018012,0.0000018009,0.0000018007, +0.0000018009,0.0000018014,0.0000018023,0.0000018032,0.0000018042, +0.0000018053,0.0000018058,0.0000018064,0.0000018193,0.0000018190, +0.0000018183,0.0000018174,0.0000018163,0.0000018149,0.0000018127, +0.0000018109,0.0000018096,0.0000018094,0.0000018092,0.0000018091, +0.0000018085,0.0000018090,0.0000018101,0.0000018115,0.0000018129, +0.0000018142,0.0000018150,0.0000018154,0.0000018152,0.0000018144, +0.0000018132,0.0000018119,0.0000018108,0.0000018103,0.0000018104, +0.0000018113,0.0000018122,0.0000018132,0.0000018129,0.0000018119, +0.0000018101,0.0000018079,0.0000018051,0.0000018020,0.0000017993, +0.0000017964,0.0000017930,0.0000017898,0.0000017872,0.0000017854, +0.0000017861,0.0000017891,0.0000017942,0.0000018002,0.0000018066, +0.0000018132,0.0000018202,0.0000018273,0.0000018335,0.0000018382, +0.0000018396,0.0000018390,0.0000018385,0.0000018376,0.0000018365, +0.0000018351,0.0000018335,0.0000018320,0.0000018308,0.0000018299, +0.0000018290,0.0000018281,0.0000018275,0.0000018273,0.0000018278, +0.0000018290,0.0000018310,0.0000018330,0.0000018348,0.0000018362, +0.0000018371,0.0000018377,0.0000018378,0.0000018372,0.0000018354, +0.0000018322,0.0000018273,0.0000018213,0.0000018154,0.0000018102, +0.0000018068,0.0000018059,0.0000018057,0.0000018048,0.0000018014, +0.0000017959,0.0000017905,0.0000017865,0.0000017848,0.0000017858, +0.0000017895,0.0000017956,0.0000018033,0.0000018114,0.0000018183, +0.0000018227,0.0000018249,0.0000018266,0.0000018303,0.0000018373, +0.0000018464,0.0000018542,0.0000018580,0.0000018583,0.0000018580, +0.0000018590,0.0000018605,0.0000018609,0.0000018599,0.0000018578, +0.0000018556,0.0000018538,0.0000018524,0.0000018516,0.0000018515, +0.0000018517,0.0000018517,0.0000018513,0.0000018505,0.0000018491, +0.0000018474,0.0000018456,0.0000018439,0.0000018427,0.0000018417, +0.0000018410,0.0000018405,0.0000018400,0.0000018397,0.0000018395, +0.0000018389,0.0000018376,0.0000018360,0.0000018342,0.0000018321, +0.0000018296,0.0000018273,0.0000018259,0.0000018250,0.0000018244, +0.0000018243,0.0000018246,0.0000018251,0.0000018255,0.0000018258, +0.0000018260,0.0000018261,0.0000018259,0.0000018251,0.0000018237, +0.0000018215,0.0000018183,0.0000018142,0.0000018092,0.0000018035, +0.0000017974,0.0000017908,0.0000017841,0.0000017775,0.0000017718, +0.0000017673,0.0000017637,0.0000017610,0.0000017593,0.0000017584, +0.0000017579,0.0000017573,0.0000017565,0.0000017556,0.0000017544, +0.0000017530,0.0000017512,0.0000017492,0.0000017469,0.0000017445, +0.0000017424,0.0000017408,0.0000017405,0.0000017414,0.0000017443, +0.0000017484,0.0000017533,0.0000017580,0.0000017620,0.0000017653, +0.0000017675,0.0000017685,0.0000017689,0.0000017687,0.0000017676, +0.0000017660,0.0000017645,0.0000017635,0.0000017633,0.0000017646, +0.0000017681,0.0000017730,0.0000017793,0.0000017865,0.0000017941, +0.0000018016,0.0000018082,0.0000018136,0.0000018177,0.0000018206, +0.0000018227,0.0000018241,0.0000018252,0.0000018259,0.0000018259, +0.0000018254,0.0000018244,0.0000018235,0.0000018219,0.0000018203, +0.0000018189,0.0000018176,0.0000018161,0.0000018145,0.0000018128, +0.0000018110,0.0000018098,0.0000018082,0.0000018075,0.0000018077, +0.0000018084,0.0000018099,0.0000018117,0.0000018138,0.0000018159, +0.0000018178,0.0000018196,0.0000018210,0.0000018214,0.0000018213, +0.0000018209,0.0000018196,0.0000018168,0.0000018114,0.0000018044, +0.0000017965,0.0000017882,0.0000017827,0.0000017823,0.0000017832, +0.0000017862,0.0000017888,0.0000017907,0.0000017927,0.0000017954, +0.0000017986,0.0000018011,0.0000018016,0.0000018008,0.0000017994, +0.0000017976,0.0000017950,0.0000017915,0.0000017878,0.0000017848, +0.0000017831,0.0000017829,0.0000017833,0.0000017850,0.0000017878, +0.0000017910,0.0000017947,0.0000018001,0.0000018076,0.0000018170, +0.0000018266,0.0000018341,0.0000018376,0.0000018374,0.0000018351, +0.0000018319,0.0000018290,0.0000018273,0.0000018275,0.0000018292, +0.0000018319,0.0000018355,0.0000018405,0.0000018459,0.0000018496, +0.0000018524,0.0000018603,0.0000018772,0.0000018960,0.0000019119, +0.0000019266,0.0000019394,0.0000019520,0.0000019603,0.0000019607, +0.0000019640,0.0000019709,0.0000019765,0.0000019853,0.0000019945, +0.0000019973,0.0000019947,0.0000019902,0.0000019894,0.0000019930, +0.0000019961,0.0000019973,0.0000019971,0.0000019953,0.0000019937, +0.0000019920,0.0000019895,0.0000019874,0.0000019869,0.0000019880, +0.0000019900,0.0000019927,0.0000019959,0.0000019997,0.0000020039, +0.0000020073,0.0000020083,0.0000020082,0.0000020064,0.0000020045, +0.0000020036,0.0000020039,0.0000020049,0.0000020059,0.0000020064, +0.0000020061,0.0000020051,0.0000020036,0.0000020019,0.0000020003, +0.0000019987,0.0000019970,0.0000019952,0.0000019935,0.0000019918, +0.0000019901,0.0000019886,0.0000019874,0.0000019862,0.0000019850, +0.0000019839,0.0000019828,0.0000019817,0.0000019808,0.0000019799, +0.0000019788,0.0000019777,0.0000019765,0.0000019755,0.0000019747, +0.0000019741,0.0000019736,0.0000019733,0.0000019730,0.0000019727, +0.0000019725,0.0000019723,0.0000019720,0.0000019717,0.0000019713, +0.0000019710,0.0000019706,0.0000019703,0.0000019699,0.0000019689, +0.0000019678,0.0000019665,0.0000019649,0.0000019636,0.0000019623, +0.0000019611,0.0000019595,0.0000019578,0.0000019562,0.0000019548, +0.0000019535,0.0000019529,0.0000019530,0.0000019537,0.0000019543, +0.0000019551,0.0000019555,0.0000019555,0.0000019553,0.0000019550, +0.0000019548,0.0000019549,0.0000019551,0.0000019558,0.0000019565, +0.0000019569,0.0000019573,0.0000019582,0.0000019587,0.0000019591, +0.0000019597,0.0000019597,0.0000019598,0.0000019594,0.0000019587, +0.0000019577,0.0000019561,0.0000019546,0.0000019532,0.0000019520, +0.0000019509,0.0000019496,0.0000019480,0.0000019462,0.0000019444, +0.0000019425,0.0000019405,0.0000019387,0.0000019372,0.0000019356, +0.0000019340,0.0000019327,0.0000019310,0.0000019290,0.0000019271, +0.0000019254,0.0000019236,0.0000019215,0.0000019193,0.0000019175, +0.0000019161,0.0000019153,0.0000019153,0.0000019155,0.0000019156, +0.0000019155,0.0000019156,0.0000019156,0.0000019148,0.0000019137, +0.0000019122,0.0000019107,0.0000019090,0.0000019071,0.0000019055, +0.0000019039,0.0000019021,0.0000019005,0.0000018995,0.0000018988, +0.0000018986,0.0000018988,0.0000018992,0.0000018997,0.0000019002, +0.0000019007,0.0000019013,0.0000019021,0.0000019028,0.0000019033, +0.0000019035,0.0000019036,0.0000019034,0.0000019031,0.0000019030, +0.0000019032,0.0000019038,0.0000019043,0.0000019048,0.0000019055, +0.0000019066,0.0000019076,0.0000019087,0.0000019100,0.0000019119, +0.0000019139,0.0000019158,0.0000019176,0.0000019193,0.0000019209, +0.0000019219,0.0000019226,0.0000019231,0.0000019234,0.0000019239, +0.0000019245,0.0000019252,0.0000019259,0.0000019268,0.0000019277, +0.0000019285,0.0000019291,0.0000019298,0.0000019304,0.0000019308, +0.0000019312,0.0000019317,0.0000019323,0.0000019332,0.0000019343, +0.0000019357,0.0000019376,0.0000019399,0.0000019426,0.0000019456, +0.0000019489,0.0000019521,0.0000019553,0.0000019586,0.0000019616, +0.0000019647,0.0000019677,0.0000019703,0.0000019723,0.0000019734, +0.0000019740,0.0000019738,0.0000019734,0.0000019727,0.0000019721, +0.0000019712,0.0000019705,0.0000019699,0.0000019695,0.0000019696, +0.0000019701,0.0000019709,0.0000019723,0.0000019739,0.0000019757, +0.0000019773,0.0000019788,0.0000019802,0.0000019817,0.0000019833, +0.0000019850,0.0000019871,0.0000019896,0.0000019922,0.0000019950, +0.0000019979,0.0000020006,0.0000020026,0.0000020040,0.0000020052, +0.0000020057,0.0000020060,0.0000020057,0.0000020051,0.0000020044, +0.0000020029,0.0000020016,0.0000020005,0.0000020002,0.0000020003, +0.0000020002,0.0000020000,0.0000019998,0.0000019990,0.0000019979, +0.0000019970,0.0000019965,0.0000019966,0.0000019973,0.0000019983, +0.0000019994,0.0000020004,0.0000020017,0.0000020031,0.0000020041, +0.0000020045,0.0000020041,0.0000020029,0.0000020008,0.0000019976, +0.0000019948,0.0000019920,0.0000019900,0.0000019895,0.0000019903, +0.0000019929,0.0000019965,0.0000019985,0.0000020001,0.0000019996, +0.0000019971,0.0000019929,0.0000019883,0.0000019836,0.0000019792, +0.0000019782,0.0000019777,0.0000019790,0.0000019818,0.0000019863, +0.0000019920,0.0000019982,0.0000020046,0.0000020108,0.0000020162, +0.0000020203,0.0000020225,0.0000020232,0.0000020241,0.0000020249, +0.0000020264,0.0000020286,0.0000020310,0.0000020339,0.0000020374, +0.0000020403,0.0000020403,0.0000020396,0.0000020395,0.0000020372, +0.0000020344,0.0000020323,0.0000020308,0.0000020301,0.0000020295, +0.0000020300,0.0000020310,0.0000020321,0.0000020331,0.0000020340, +0.0000020346,0.0000020346,0.0000020350,0.0000020355,0.0000020358, +0.0000020359,0.0000020347,0.0000020329,0.0000020308,0.0000020290, +0.0000020279,0.0000020269,0.0000020264,0.0000020271,0.0000020288, +0.0000020308,0.0000020325,0.0000020334,0.0000020340,0.0000020336, +0.0000020324,0.0000020311,0.0000020306,0.0000020304,0.0000020300, +0.0000020292,0.0000020280,0.0000020271,0.0000020266,0.0000020262, +0.0000020258,0.0000020257,0.0000020259,0.0000020269,0.0000020292, +0.0000020317,0.0000020334,0.0000020344,0.0000020346,0.0000020347, +0.0000020346,0.0000020341,0.0000020344,0.0000020349,0.0000020353, +0.0000020353,0.0000020358,0.0000020362,0.0000020359,0.0000020356, +0.0000020356,0.0000020359,0.0000020359,0.0000020351,0.0000020344, +0.0000020335,0.0000020324,0.0000020311,0.0000020294,0.0000020279, +0.0000020259,0.0000020237,0.0000020209,0.0000020179,0.0000020152, +0.0000020130,0.0000020115,0.0000020113,0.0000020115,0.0000020113, +0.0000020103,0.0000020084,0.0000020059,0.0000020031,0.0000020002, +0.0000019977,0.0000019954,0.0000019934,0.0000019922,0.0000019902, +0.0000019878,0.0000019844,0.0000019805,0.0000019768,0.0000019737, +0.0000019707,0.0000019679,0.0000019652,0.0000019626,0.0000019603, +0.0000019586,0.0000019569,0.0000019547,0.0000019514,0.0000019479, +0.0000019435,0.0000019383,0.0000019325,0.0000019267,0.0000019217, +0.0000019184,0.0000019166,0.0000019156,0.0000019143,0.0000019123, +0.0000019105,0.0000019084,0.0000019071,0.0000019055,0.0000019047, +0.0000019048,0.0000019060,0.0000019082,0.0000019112,0.0000019151, +0.0000019194,0.0000019235,0.0000019255,0.0000019272,0.0000019285, +0.0000019277,0.0000019251,0.0000019199,0.0000019126,0.0000019044, +0.0000018963,0.0000018882,0.0000018809,0.0000018749,0.0000018703, +0.0000018678,0.0000018679,0.0000018681,0.0000018691,0.0000018702, +0.0000018714,0.0000018728,0.0000018747,0.0000018768,0.0000018786, +0.0000018800,0.0000018813,0.0000018829,0.0000018844,0.0000018860, +0.0000018881,0.0000018903,0.0000018931,0.0000018963,0.0000019005, +0.0000019058,0.0000019119,0.0000019191,0.0000019268,0.0000019338, +0.0000019392,0.0000019412,0.0000019417,0.0000019394,0.0000019359, +0.0000019308,0.0000019254,0.0000019210,0.0000019180,0.0000019155, +0.0000019143,0.0000019140,0.0000019149,0.0000019167,0.0000019187, +0.0000019209,0.0000019231,0.0000019252,0.0000019275,0.0000019300, +0.0000019321,0.0000019335,0.0000019336,0.0000019321,0.0000019286, +0.0000019254,0.0000019218,0.0000019197,0.0000019188,0.0000019195, +0.0000019220,0.0000019250,0.0000019280,0.0000019300,0.0000019309, +0.0000019311,0.0000019310,0.0000019326,0.0000019354,0.0000019387, +0.0000019411,0.0000019426,0.0000019432,0.0000019416,0.0000019384, +0.0000019341,0.0000019308,0.0000019296,0.0000019300,0.0000019298, +0.0000019291,0.0000019294,0.0000019306,0.0000019325,0.0000019345, +0.0000019364,0.0000019379,0.0000019391,0.0000019397,0.0000019396, +0.0000019385,0.0000019357,0.0000019315,0.0000019277,0.0000019247, +0.0000019234,0.0000019232,0.0000019238,0.0000019264,0.0000019293, +0.0000019320,0.0000019360,0.0000019406,0.0000019445,0.0000019469, +0.0000019480,0.0000019475,0.0000019454,0.0000019420,0.0000019380, +0.0000019340,0.0000019298,0.0000019259,0.0000019219,0.0000019188, +0.0000019161,0.0000019137,0.0000019114,0.0000019093,0.0000019062, +0.0000019023,0.0000018994,0.0000018992,0.0000019017,0.0000019038, +0.0000019038,0.0000019008,0.0000018955,0.0000018905,0.0000018874, +0.0000018856,0.0000018838,0.0000018819,0.0000018800,0.0000018779, +0.0000018752,0.0000018731,0.0000018728,0.0000018742,0.0000018752, +0.0000018733,0.0000018688,0.0000018628,0.0000018562,0.0000018507, +0.0000018473,0.0000018446,0.0000018430,0.0000018432,0.0000018448, +0.0000018470,0.0000018494,0.0000018519,0.0000018534,0.0000018529, +0.0000018511,0.0000018487,0.0000018468,0.0000018454,0.0000018424, +0.0000018381,0.0000018360,0.0000018378,0.0000018416,0.0000018448, +0.0000018463,0.0000018464,0.0000018459,0.0000018438,0.0000018415, +0.0000018397,0.0000018384,0.0000018372,0.0000018351,0.0000018330, +0.0000018313,0.0000018291,0.0000018282,0.0000018282,0.0000018291, +0.0000018305,0.0000018319,0.0000018329,0.0000018340,0.0000018353, +0.0000018364,0.0000018364,0.0000018354,0.0000018335,0.0000018307, +0.0000018269,0.0000018227,0.0000018187,0.0000018150,0.0000018112, +0.0000018076,0.0000018044,0.0000018022,0.0000018006,0.0000017995, +0.0000017991,0.0000017990,0.0000017993,0.0000017997,0.0000018003, +0.0000018008,0.0000018010,0.0000018011,0.0000018010,0.0000018011, +0.0000018016,0.0000018022,0.0000018031,0.0000018046,0.0000018064, +0.0000018086,0.0000018112,0.0000018140,0.0000018173,0.0000018211, +0.0000018256,0.0000018308,0.0000018368,0.0000018432,0.0000018496, +0.0000018552,0.0000018598,0.0000018635,0.0000018672,0.0000018717, +0.0000018781,0.0000018864,0.0000018966,0.0000019085,0.0000019210, +0.0000019333,0.0000019447,0.0000019521,0.0000019574,0.0000019585, +0.0000019569,0.0000019541,0.0000019516,0.0000019490,0.0000019472, +0.0000019458,0.0000019441,0.0000019406,0.0000019360,0.0000019312, +0.0000019273,0.0000019256,0.0000019251,0.0000019252,0.0000019243, +0.0000019222,0.0000019194,0.0000019169,0.0000019153,0.0000019143, +0.0000019135,0.0000019120,0.0000019092,0.0000019050,0.0000018999, +0.0000018950,0.0000018911,0.0000018879,0.0000018845,0.0000018804, +0.0000018757,0.0000018717,0.0000018691,0.0000018688,0.0000018692, +0.0000018695,0.0000018697,0.0000018702,0.0000018707,0.0000018704, +0.0000018691,0.0000018680,0.0000018671,0.0000018657,0.0000018611, +0.0000018529,0.0000018448,0.0000018408,0.0000018418,0.0000018466, +0.0000018521,0.0000018552,0.0000018561,0.0000018561,0.0000018562, +0.0000018563,0.0000018559,0.0000018545,0.0000018523,0.0000018498, +0.0000018468,0.0000018432,0.0000018392,0.0000018354,0.0000018326, +0.0000018306,0.0000018292,0.0000018287,0.0000018286,0.0000018285, +0.0000018287,0.0000018288,0.0000018293,0.0000018308,0.0000018330, +0.0000018354,0.0000018377,0.0000018396,0.0000018405,0.0000018391, +0.0000018333,0.0000018233,0.0000018135,0.0000018076,0.0000018055, +0.0000018054,0.0000018074,0.0000018117,0.0000018167,0.0000018214, +0.0000018263,0.0000018316,0.0000018375,0.0000018427,0.0000018471, +0.0000018507,0.0000018535,0.0000018553,0.0000018560,0.0000018558, +0.0000018551,0.0000018538,0.0000018520,0.0000018497,0.0000018471, +0.0000018447,0.0000018425,0.0000018401,0.0000018373,0.0000018337, +0.0000018296,0.0000018252,0.0000018207,0.0000018165,0.0000018131, +0.0000018104,0.0000018087,0.0000018080,0.0000018079,0.0000018087, +0.0000018105,0.0000018133,0.0000018167,0.0000018202,0.0000018241, +0.0000018279,0.0000018314,0.0000018347,0.0000018388,0.0000018443, +0.0000018514,0.0000018594,0.0000018649,0.0000018663,0.0000018655, +0.0000018641,0.0000018625,0.0000018598,0.0000018568,0.0000018555, +0.0000018554,0.0000018547,0.0000018530,0.0000018508,0.0000018486, +0.0000018462,0.0000018441,0.0000018429,0.0000018424,0.0000018427, +0.0000018434,0.0000018454,0.0000018487,0.0000018525,0.0000018566, +0.0000018605,0.0000018636,0.0000018652,0.0000018648,0.0000018612, +0.0000018549,0.0000018484,0.0000018438,0.0000018422,0.0000018444, +0.0000018490,0.0000018552,0.0000018635,0.0000018697,0.0000018666, +0.0000018624,0.0000018721,0.0000018761,0.0000018681,0.0000018650, +0.0000018711,0.0000018761,0.0000018737,0.0000018773,0.0000018916, +0.0000018940,0.0000018866,0.0000018826,0.0000018828,0.0000018840, +0.0000018837,0.0000018781,0.0000018674,0.0000018581,0.0000018528, +0.0000018506,0.0000018542,0.0000018661,0.0000018791,0.0000018858, +0.0000018885,0.0000018915,0.0000018936,0.0000018923,0.0000018880, +0.0000018851,0.0000018849,0.0000018869,0.0000018907,0.0000018942, +0.0000018972,0.0000018996,0.0000019015,0.0000019024,0.0000019015, +0.0000018993,0.0000018998,0.0000019042,0.0000019029,0.0000018840, +0.0000018533,0.0000018308,0.0000018234,0.0000018217,0.0000018201, +0.0000018191,0.0000018194,0.0000018212,0.0000018241,0.0000018279, +0.0000018328,0.0000018392,0.0000018475,0.0000018575,0.0000018681, +0.0000018768,0.0000018827,0.0000018842,0.0000018805,0.0000018743, +0.0000018673,0.0000018608,0.0000018575,0.0000018579,0.0000018617, +0.0000018669,0.0000018723,0.0000018774,0.0000018815,0.0000018845, +0.0000018869,0.0000018890,0.0000018907,0.0000018922,0.0000018934, +0.0000018944,0.0000018944,0.0000018918,0.0000018891,0.0000018809, +0.0000018663,0.0000018500,0.0000018367,0.0000018308,0.0000018302, +0.0000018313,0.0000018324,0.0000018318,0.0000018291,0.0000018251, +0.0000018201,0.0000018147,0.0000018083,0.0000018014,0.0000017958, +0.0000017935,0.0000017938,0.0000017960,0.0000017983,0.0000018006, +0.0000018025,0.0000018041,0.0000018051,0.0000018055,0.0000018058, +0.0000018055,0.0000018051,0.0000018052,0.0000018058,0.0000018066, +0.0000018073,0.0000018077,0.0000018077,0.0000018073,0.0000018064, +0.0000018052,0.0000018038,0.0000018022,0.0000018006,0.0000017986, +0.0000017964,0.0000017944,0.0000017926,0.0000017912,0.0000017905, +0.0000017901,0.0000017901,0.0000017906,0.0000017920,0.0000017940, +0.0000017961,0.0000017980,0.0000018002,0.0000018022,0.0000018040, +0.0000018049,0.0000018051,0.0000018050,0.0000018051,0.0000018054, +0.0000018064,0.0000018075,0.0000018086,0.0000018093,0.0000018094, +0.0000018092,0.0000018091,0.0000018093,0.0000018097,0.0000018103, +0.0000018108,0.0000018112,0.0000018116,0.0000018122,0.0000018129, +0.0000018138,0.0000018148,0.0000018161,0.0000018175,0.0000018185, +0.0000018192,0.0000018335,0.0000018344,0.0000018347,0.0000018346, +0.0000018336,0.0000018320,0.0000018297,0.0000018272,0.0000018237, +0.0000018202,0.0000018170,0.0000018145,0.0000018116,0.0000018096, +0.0000018095,0.0000018101,0.0000018110,0.0000018118,0.0000018131, +0.0000018141,0.0000018147,0.0000018146,0.0000018138,0.0000018123, +0.0000018105,0.0000018090,0.0000018078,0.0000018076,0.0000018078, +0.0000018087,0.0000018096,0.0000018097,0.0000018090,0.0000018078, +0.0000018059,0.0000018036,0.0000018014,0.0000017993,0.0000017972, +0.0000017945,0.0000017909,0.0000017867,0.0000017831,0.0000017809, +0.0000017811,0.0000017841,0.0000017895,0.0000017954,0.0000018012, +0.0000018071,0.0000018138,0.0000018214,0.0000018287,0.0000018344, +0.0000018383,0.0000018390,0.0000018390,0.0000018386,0.0000018376, +0.0000018360,0.0000018344,0.0000018329,0.0000018318,0.0000018310, +0.0000018305,0.0000018301,0.0000018300,0.0000018305,0.0000018317, +0.0000018335,0.0000018358,0.0000018378,0.0000018391,0.0000018394, +0.0000018388,0.0000018378,0.0000018372,0.0000018366,0.0000018350, +0.0000018317,0.0000018267,0.0000018204,0.0000018139,0.0000018087, +0.0000018060,0.0000018050,0.0000018036,0.0000018003,0.0000017951, +0.0000017890,0.0000017840,0.0000017803,0.0000017797,0.0000017817, +0.0000017865,0.0000017937,0.0000018021,0.0000018100,0.0000018164, +0.0000018205,0.0000018231,0.0000018260,0.0000018315,0.0000018401, +0.0000018491,0.0000018548,0.0000018560,0.0000018558,0.0000018561, +0.0000018566,0.0000018560,0.0000018542,0.0000018522,0.0000018505, +0.0000018491,0.0000018482,0.0000018482,0.0000018486,0.0000018487, +0.0000018486,0.0000018478,0.0000018465,0.0000018448,0.0000018428, +0.0000018409,0.0000018394,0.0000018383,0.0000018375,0.0000018366, +0.0000018355,0.0000018345,0.0000018338,0.0000018332,0.0000018324, +0.0000018312,0.0000018297,0.0000018280,0.0000018259,0.0000018239, +0.0000018224,0.0000018213,0.0000018205,0.0000018201,0.0000018200, +0.0000018199,0.0000018194,0.0000018184,0.0000018171,0.0000018156, +0.0000018136,0.0000018111,0.0000018079,0.0000018042,0.0000017999, +0.0000017953,0.0000017904,0.0000017854,0.0000017805,0.0000017755, +0.0000017708,0.0000017667,0.0000017634,0.0000017608,0.0000017586, +0.0000017570,0.0000017560,0.0000017555,0.0000017550,0.0000017546, +0.0000017540,0.0000017534,0.0000017526,0.0000017515,0.0000017501, +0.0000017483,0.0000017463,0.0000017440,0.0000017416,0.0000017394, +0.0000017377,0.0000017374,0.0000017389,0.0000017426,0.0000017475, +0.0000017528,0.0000017577,0.0000017620,0.0000017653,0.0000017673, +0.0000017683,0.0000017681,0.0000017670,0.0000017656,0.0000017640, +0.0000017620,0.0000017606,0.0000017597,0.0000017598,0.0000017611, +0.0000017636,0.0000017672,0.0000017720,0.0000017778,0.0000017840, +0.0000017899,0.0000017956,0.0000018007,0.0000018052,0.0000018089, +0.0000018120,0.0000018147,0.0000018168,0.0000018181,0.0000018190, +0.0000018193,0.0000018191,0.0000018188,0.0000018188,0.0000018174, +0.0000018163,0.0000018152,0.0000018143,0.0000018133,0.0000018121, +0.0000018106,0.0000018090,0.0000018076,0.0000018069,0.0000018062, +0.0000018059,0.0000018058,0.0000018060,0.0000018068,0.0000018082, +0.0000018099,0.0000018120,0.0000018145,0.0000018172,0.0000018192, +0.0000018195,0.0000018196,0.0000018182,0.0000018141,0.0000018072, +0.0000017988,0.0000017901,0.0000017851,0.0000017849,0.0000017858, +0.0000017880,0.0000017897,0.0000017915,0.0000017940,0.0000017966, +0.0000017983,0.0000017981,0.0000017966,0.0000017944,0.0000017917, +0.0000017883,0.0000017846,0.0000017814,0.0000017795,0.0000017791, +0.0000017801,0.0000017831,0.0000017868,0.0000017896,0.0000017917, +0.0000017939,0.0000017976,0.0000018040,0.0000018129,0.0000018218, +0.0000018279,0.0000018296,0.0000018283,0.0000018257,0.0000018234, +0.0000018232,0.0000018248,0.0000018275,0.0000018303,0.0000018335, +0.0000018379,0.0000018436,0.0000018477,0.0000018503,0.0000018590, +0.0000018770,0.0000018956,0.0000019112,0.0000019254,0.0000019376, +0.0000019500,0.0000019562,0.0000019567,0.0000019616,0.0000019683, +0.0000019742,0.0000019840,0.0000019924,0.0000019940,0.0000019906, +0.0000019873,0.0000019883,0.0000019920,0.0000019942,0.0000019952, +0.0000019948,0.0000019932,0.0000019920,0.0000019904,0.0000019876, +0.0000019848,0.0000019826,0.0000019817,0.0000019817,0.0000019826, +0.0000019844,0.0000019876,0.0000019923,0.0000019979,0.0000020030, +0.0000020062,0.0000020067,0.0000020060,0.0000020047,0.0000020036, +0.0000020033,0.0000020037,0.0000020040,0.0000020045,0.0000020048, +0.0000020050,0.0000020048,0.0000020040,0.0000020028,0.0000020012, +0.0000019991,0.0000019970,0.0000019947,0.0000019923,0.0000019902, +0.0000019883,0.0000019863,0.0000019844,0.0000019825,0.0000019807, +0.0000019790,0.0000019777,0.0000019767,0.0000019757,0.0000019746, +0.0000019735,0.0000019728,0.0000019726,0.0000019725,0.0000019725, +0.0000019725,0.0000019725,0.0000019725,0.0000019723,0.0000019721, +0.0000019718,0.0000019714,0.0000019710,0.0000019705,0.0000019699, +0.0000019690,0.0000019678,0.0000019662,0.0000019645,0.0000019624, +0.0000019604,0.0000019586,0.0000019569,0.0000019551,0.0000019535, +0.0000019519,0.0000019507,0.0000019501,0.0000019499,0.0000019506, +0.0000019523,0.0000019538,0.0000019554,0.0000019564,0.0000019566, +0.0000019567,0.0000019570,0.0000019572,0.0000019572,0.0000019568, +0.0000019578,0.0000019580,0.0000019574,0.0000019571,0.0000019573, +0.0000019572,0.0000019569,0.0000019565,0.0000019557,0.0000019545, +0.0000019532,0.0000019518,0.0000019500,0.0000019479,0.0000019459, +0.0000019438,0.0000019418,0.0000019398,0.0000019379,0.0000019357, +0.0000019335,0.0000019316,0.0000019298,0.0000019280,0.0000019265, +0.0000019253,0.0000019239,0.0000019224,0.0000019210,0.0000019194, +0.0000019174,0.0000019152,0.0000019130,0.0000019105,0.0000019075, +0.0000019042,0.0000019010,0.0000018979,0.0000018953,0.0000018933, +0.0000018915,0.0000018894,0.0000018872,0.0000018851,0.0000018833, +0.0000018809,0.0000018783,0.0000018757,0.0000018731,0.0000018702, +0.0000018674,0.0000018650,0.0000018628,0.0000018605,0.0000018585, +0.0000018570,0.0000018560,0.0000018556,0.0000018558,0.0000018564, +0.0000018574,0.0000018585,0.0000018599,0.0000018619,0.0000018644, +0.0000018672,0.0000018701,0.0000018730,0.0000018761,0.0000018789, +0.0000018816,0.0000018842,0.0000018872,0.0000018904,0.0000018932, +0.0000018958,0.0000018983,0.0000019007,0.0000019028,0.0000019044, +0.0000019060,0.0000019079,0.0000019099,0.0000019115,0.0000019128, +0.0000019141,0.0000019154,0.0000019163,0.0000019171,0.0000019176, +0.0000019181,0.0000019186,0.0000019193,0.0000019200,0.0000019207, +0.0000019215,0.0000019220,0.0000019225,0.0000019230,0.0000019236, +0.0000019240,0.0000019242,0.0000019243,0.0000019243,0.0000019243, +0.0000019247,0.0000019252,0.0000019262,0.0000019275,0.0000019293, +0.0000019315,0.0000019341,0.0000019369,0.0000019399,0.0000019431, +0.0000019466,0.0000019502,0.0000019537,0.0000019573,0.0000019605, +0.0000019634,0.0000019658,0.0000019677,0.0000019691,0.0000019700, +0.0000019703,0.0000019700,0.0000019694,0.0000019684,0.0000019673, +0.0000019662,0.0000019651,0.0000019643,0.0000019642,0.0000019646, +0.0000019659,0.0000019680,0.0000019702,0.0000019721,0.0000019738, +0.0000019752,0.0000019767,0.0000019785,0.0000019804,0.0000019826, +0.0000019850,0.0000019872,0.0000019897,0.0000019921,0.0000019945, +0.0000019961,0.0000019972,0.0000019978,0.0000019984,0.0000019989, +0.0000019991,0.0000019989,0.0000019983,0.0000019971,0.0000019956, +0.0000019943,0.0000019938,0.0000019937,0.0000019939,0.0000019943, +0.0000019946,0.0000019946,0.0000019941,0.0000019934,0.0000019929, +0.0000019928,0.0000019934,0.0000019947,0.0000019961,0.0000019977, +0.0000019992,0.0000020008,0.0000020022,0.0000020032,0.0000020033, +0.0000020025,0.0000020005,0.0000019975,0.0000019935,0.0000019895, +0.0000019868,0.0000019853,0.0000019856,0.0000019881,0.0000019915, +0.0000019948,0.0000019978,0.0000019986,0.0000019989,0.0000019975, +0.0000019948,0.0000019911,0.0000019875,0.0000019847,0.0000019823, +0.0000019814,0.0000019802,0.0000019808,0.0000019831,0.0000019876, +0.0000019935,0.0000019998,0.0000020059,0.0000020112,0.0000020158, +0.0000020188,0.0000020201,0.0000020200,0.0000020196,0.0000020195, +0.0000020203,0.0000020215,0.0000020232,0.0000020255,0.0000020294, +0.0000020334,0.0000020354,0.0000020347,0.0000020354,0.0000020345, +0.0000020330,0.0000020317,0.0000020302,0.0000020296,0.0000020285, +0.0000020280,0.0000020282,0.0000020289,0.0000020299,0.0000020315, +0.0000020334,0.0000020348,0.0000020350,0.0000020349,0.0000020339, +0.0000020321,0.0000020301,0.0000020282,0.0000020266,0.0000020259, +0.0000020262,0.0000020274,0.0000020293,0.0000020308,0.0000020321, +0.0000020328,0.0000020330,0.0000020326,0.0000020321,0.0000020320, +0.0000020319,0.0000020315,0.0000020306,0.0000020288,0.0000020269, +0.0000020257,0.0000020244,0.0000020236,0.0000020229,0.0000020225, +0.0000020231,0.0000020249,0.0000020269,0.0000020287,0.0000020301, +0.0000020314,0.0000020325,0.0000020326,0.0000020330,0.0000020337, +0.0000020344,0.0000020339,0.0000020340,0.0000020344,0.0000020338, +0.0000020335,0.0000020335,0.0000020337,0.0000020344,0.0000020346, +0.0000020346,0.0000020341,0.0000020338,0.0000020334,0.0000020330, +0.0000020321,0.0000020308,0.0000020296,0.0000020281,0.0000020262, +0.0000020238,0.0000020209,0.0000020178,0.0000020151,0.0000020136, +0.0000020133,0.0000020131,0.0000020130,0.0000020126,0.0000020115, +0.0000020097,0.0000020072,0.0000020042,0.0000020013,0.0000019995, +0.0000019976,0.0000019957,0.0000019931,0.0000019895,0.0000019852, +0.0000019810,0.0000019768,0.0000019731,0.0000019698,0.0000019668, +0.0000019640,0.0000019620,0.0000019603,0.0000019595,0.0000019583, +0.0000019564,0.0000019535,0.0000019499,0.0000019457,0.0000019404, +0.0000019352,0.0000019304,0.0000019268,0.0000019240,0.0000019216, +0.0000019186,0.0000019157,0.0000019125,0.0000019097,0.0000019071, +0.0000019050,0.0000019038,0.0000019037,0.0000019036,0.0000019052, +0.0000019079,0.0000019114,0.0000019156,0.0000019197,0.0000019230, +0.0000019262,0.0000019291,0.0000019301,0.0000019306,0.0000019292, +0.0000019256,0.0000019205,0.0000019133,0.0000019048,0.0000018959, +0.0000018869,0.0000018796,0.0000018746,0.0000018716,0.0000018700, +0.0000018698,0.0000018702,0.0000018704,0.0000018714,0.0000018730, +0.0000018751,0.0000018769,0.0000018782,0.0000018792,0.0000018799, +0.0000018808,0.0000018824,0.0000018839,0.0000018855,0.0000018877, +0.0000018905,0.0000018937,0.0000018979,0.0000019035,0.0000019106, +0.0000019182,0.0000019261,0.0000019335,0.0000019387,0.0000019414, +0.0000019413,0.0000019385,0.0000019334,0.0000019266,0.0000019201, +0.0000019149,0.0000019119,0.0000019096,0.0000019091,0.0000019103, +0.0000019117,0.0000019133,0.0000019150,0.0000019167,0.0000019181, +0.0000019194,0.0000019214,0.0000019240,0.0000019262,0.0000019277, +0.0000019286,0.0000019281,0.0000019271,0.0000019245,0.0000019211, +0.0000019186,0.0000019175,0.0000019182,0.0000019209,0.0000019239, +0.0000019262,0.0000019269,0.0000019271,0.0000019287,0.0000019309, +0.0000019333,0.0000019358,0.0000019387,0.0000019407,0.0000019411, +0.0000019394,0.0000019382,0.0000019372,0.0000019358,0.0000019340, +0.0000019308,0.0000019277,0.0000019249,0.0000019244,0.0000019249, +0.0000019263,0.0000019292,0.0000019327,0.0000019356,0.0000019370, +0.0000019367,0.0000019350,0.0000019318,0.0000019281,0.0000019253, +0.0000019229,0.0000019218,0.0000019216,0.0000019226,0.0000019253, +0.0000019283,0.0000019311,0.0000019342,0.0000019370,0.0000019387, +0.0000019390,0.0000019380,0.0000019363,0.0000019345,0.0000019328, +0.0000019314,0.0000019301,0.0000019288,0.0000019261,0.0000019225, +0.0000019188,0.0000019149,0.0000019111,0.0000019078,0.0000019053, +0.0000019031,0.0000019000,0.0000018974,0.0000018972,0.0000018991, +0.0000019007,0.0000019006,0.0000018977,0.0000018928,0.0000018879, +0.0000018845,0.0000018819,0.0000018794,0.0000018773,0.0000018752, +0.0000018726,0.0000018693,0.0000018665,0.0000018656,0.0000018670, +0.0000018686,0.0000018685,0.0000018658,0.0000018607,0.0000018549, +0.0000018496,0.0000018454,0.0000018423,0.0000018408,0.0000018417, +0.0000018447,0.0000018485,0.0000018516,0.0000018546,0.0000018561, +0.0000018556,0.0000018532,0.0000018498,0.0000018475,0.0000018465, +0.0000018432,0.0000018380,0.0000018351,0.0000018348,0.0000018379, +0.0000018418,0.0000018441,0.0000018447,0.0000018445,0.0000018433, +0.0000018418,0.0000018408,0.0000018402,0.0000018390,0.0000018373, +0.0000018353,0.0000018323,0.0000018291,0.0000018270,0.0000018259, +0.0000018254,0.0000018257,0.0000018267,0.0000018278,0.0000018293, +0.0000018314,0.0000018335,0.0000018346,0.0000018345,0.0000018337, +0.0000018318,0.0000018291,0.0000018257,0.0000018221,0.0000018181, +0.0000018138,0.0000018094,0.0000018053,0.0000018022,0.0000017999, +0.0000017986,0.0000017978,0.0000017972,0.0000017969,0.0000017970, +0.0000017972,0.0000017975,0.0000017979,0.0000017981,0.0000017982, +0.0000017984,0.0000017987,0.0000017990,0.0000017994,0.0000018001, +0.0000018008,0.0000018020,0.0000018039,0.0000018064,0.0000018092, +0.0000018129,0.0000018172,0.0000018219,0.0000018272,0.0000018331, +0.0000018394,0.0000018457,0.0000018512,0.0000018560,0.0000018599, +0.0000018637,0.0000018682,0.0000018739,0.0000018809,0.0000018893, +0.0000018989,0.0000019097,0.0000019211,0.0000019319,0.0000019420, +0.0000019485,0.0000019520,0.0000019525,0.0000019516,0.0000019499, +0.0000019492,0.0000019493,0.0000019487,0.0000019473,0.0000019438, +0.0000019393,0.0000019342,0.0000019300,0.0000019275,0.0000019263, +0.0000019251,0.0000019232,0.0000019203,0.0000019171,0.0000019147, +0.0000019134,0.0000019124,0.0000019112,0.0000019089,0.0000019053, +0.0000019007,0.0000018959,0.0000018917,0.0000018879,0.0000018841, +0.0000018801,0.0000018755,0.0000018705,0.0000018672,0.0000018655, +0.0000018653,0.0000018654,0.0000018656,0.0000018665,0.0000018678, +0.0000018684,0.0000018677,0.0000018666,0.0000018662,0.0000018658, +0.0000018632,0.0000018570,0.0000018497,0.0000018450,0.0000018449, +0.0000018477,0.0000018524,0.0000018559,0.0000018571,0.0000018569, +0.0000018562,0.0000018553,0.0000018539,0.0000018521,0.0000018503, +0.0000018484,0.0000018461,0.0000018431,0.0000018398,0.0000018371, +0.0000018352,0.0000018340,0.0000018339,0.0000018338,0.0000018333, +0.0000018328,0.0000018327,0.0000018331,0.0000018342,0.0000018357, +0.0000018380,0.0000018401,0.0000018420,0.0000018434,0.0000018438, +0.0000018410,0.0000018330,0.0000018222,0.0000018129,0.0000018084, +0.0000018074,0.0000018085,0.0000018115,0.0000018163,0.0000018219, +0.0000018272,0.0000018330,0.0000018392,0.0000018449,0.0000018500, +0.0000018541,0.0000018573,0.0000018597,0.0000018613,0.0000018618, +0.0000018616,0.0000018609,0.0000018595,0.0000018575,0.0000018553, +0.0000018531,0.0000018509,0.0000018487,0.0000018461,0.0000018431, +0.0000018397,0.0000018360,0.0000018323,0.0000018285,0.0000018249, +0.0000018218,0.0000018198,0.0000018186,0.0000018184,0.0000018190, +0.0000018204,0.0000018225,0.0000018247,0.0000018266,0.0000018291, +0.0000018322,0.0000018355,0.0000018392,0.0000018439,0.0000018500, +0.0000018575,0.0000018634,0.0000018657,0.0000018653,0.0000018640, +0.0000018623,0.0000018599,0.0000018571,0.0000018553,0.0000018546, +0.0000018537,0.0000018519,0.0000018499,0.0000018479,0.0000018460, +0.0000018445,0.0000018436,0.0000018432,0.0000018430,0.0000018435, +0.0000018450,0.0000018481,0.0000018523,0.0000018569,0.0000018612, +0.0000018640,0.0000018649,0.0000018629,0.0000018577,0.0000018508, +0.0000018445,0.0000018411,0.0000018418,0.0000018444,0.0000018489, +0.0000018537,0.0000018603,0.0000018678,0.0000018680,0.0000018629, +0.0000018696,0.0000018784,0.0000018717,0.0000018656,0.0000018713, +0.0000018809,0.0000018798,0.0000018743,0.0000018792,0.0000018929, +0.0000018940,0.0000018858,0.0000018813,0.0000018812,0.0000018809, +0.0000018763,0.0000018675,0.0000018594,0.0000018543,0.0000018528, +0.0000018594,0.0000018734,0.0000018843,0.0000018871,0.0000018883, +0.0000018917,0.0000018936,0.0000018919,0.0000018886,0.0000018872, +0.0000018889,0.0000018915,0.0000018942,0.0000018965,0.0000018985, +0.0000019005,0.0000019027,0.0000019044,0.0000019039,0.0000019016, +0.0000019013,0.0000019014,0.0000018889,0.0000018576,0.0000018274, +0.0000018141,0.0000018110,0.0000018085,0.0000018065,0.0000018060, +0.0000018063,0.0000018075,0.0000018099,0.0000018134,0.0000018177, +0.0000018224,0.0000018275,0.0000018333,0.0000018402,0.0000018489, +0.0000018586,0.0000018676,0.0000018725,0.0000018731,0.0000018695, +0.0000018617,0.0000018532,0.0000018453,0.0000018410,0.0000018411, +0.0000018441,0.0000018491,0.0000018551,0.0000018606,0.0000018657, +0.0000018706,0.0000018751,0.0000018793,0.0000018828,0.0000018852, +0.0000018865,0.0000018873,0.0000018874,0.0000018878,0.0000018838, +0.0000018752,0.0000018614,0.0000018461,0.0000018345,0.0000018302, +0.0000018307,0.0000018319,0.0000018324,0.0000018313,0.0000018279, +0.0000018233,0.0000018186,0.0000018141,0.0000018086,0.0000018030, +0.0000017983,0.0000017962,0.0000017966,0.0000017973,0.0000017986, +0.0000017997,0.0000018005,0.0000018011,0.0000018016,0.0000018023, +0.0000018028,0.0000018038,0.0000018051,0.0000018068,0.0000018081, +0.0000018096,0.0000018106,0.0000018110,0.0000018108,0.0000018102, +0.0000018093,0.0000018083,0.0000018071,0.0000018056,0.0000018037, +0.0000018019,0.0000017998,0.0000017977,0.0000017959,0.0000017943, +0.0000017933,0.0000017929,0.0000017927,0.0000017937,0.0000017948, +0.0000017960,0.0000017975,0.0000017988,0.0000017996,0.0000017999, +0.0000017998,0.0000018000,0.0000018006,0.0000018015,0.0000018034, +0.0000018057,0.0000018079,0.0000018101,0.0000018120,0.0000018133, +0.0000018142,0.0000018153,0.0000018163,0.0000018173,0.0000018183, +0.0000018194,0.0000018206,0.0000018217,0.0000018229,0.0000018241, +0.0000018254,0.0000018270,0.0000018288,0.0000018305,0.0000018321, +0.0000018421,0.0000018440,0.0000018457,0.0000018470,0.0000018475, +0.0000018473,0.0000018469,0.0000018457,0.0000018435,0.0000018404, +0.0000018367,0.0000018328,0.0000018285,0.0000018239,0.0000018195, +0.0000018165,0.0000018145,0.0000018130,0.0000018129,0.0000018138, +0.0000018146,0.0000018148,0.0000018152,0.0000018146,0.0000018133, +0.0000018120,0.0000018101,0.0000018083,0.0000018073,0.0000018073, +0.0000018076,0.0000018076,0.0000018073,0.0000018062,0.0000018044, +0.0000018024,0.0000018000,0.0000017980,0.0000017967,0.0000017954, +0.0000017941,0.0000017919,0.0000017882,0.0000017833,0.0000017793, +0.0000017769,0.0000017772,0.0000017805,0.0000017856,0.0000017908, +0.0000017958,0.0000018010,0.0000018075,0.0000018154,0.0000018236, +0.0000018310,0.0000018367,0.0000018395,0.0000018403,0.0000018402, +0.0000018390,0.0000018373,0.0000018355,0.0000018340,0.0000018328, +0.0000018319,0.0000018315,0.0000018316,0.0000018321,0.0000018335, +0.0000018355,0.0000018380,0.0000018401,0.0000018415,0.0000018415, +0.0000018403,0.0000018387,0.0000018373,0.0000018365,0.0000018356, +0.0000018337,0.0000018299,0.0000018242,0.0000018173,0.0000018109, +0.0000018063,0.0000018035,0.0000018014,0.0000017984,0.0000017938, +0.0000017879,0.0000017819,0.0000017781,0.0000017762,0.0000017768, +0.0000017801,0.0000017863,0.0000017939,0.0000018021,0.0000018097, +0.0000018156,0.0000018193,0.0000018219,0.0000018263,0.0000018341, +0.0000018436,0.0000018508,0.0000018534,0.0000018532,0.0000018527, +0.0000018523,0.0000018511,0.0000018493,0.0000018475,0.0000018461, +0.0000018452,0.0000018451,0.0000018452,0.0000018453,0.0000018452, +0.0000018445,0.0000018432,0.0000018415,0.0000018395,0.0000018374, +0.0000018357,0.0000018343,0.0000018330,0.0000018314,0.0000018295, +0.0000018273,0.0000018253,0.0000018237,0.0000018223,0.0000018207, +0.0000018189,0.0000018174,0.0000018157,0.0000018142,0.0000018129, +0.0000018121,0.0000018113,0.0000018107,0.0000018101,0.0000018095, +0.0000018086,0.0000018069,0.0000018046,0.0000018018,0.0000017986, +0.0000017950,0.0000017909,0.0000017865,0.0000017821,0.0000017778, +0.0000017739,0.0000017704,0.0000017675,0.0000017650,0.0000017629, +0.0000017610,0.0000017592,0.0000017574,0.0000017558,0.0000017546, +0.0000017537,0.0000017532,0.0000017530,0.0000017528,0.0000017526, +0.0000017523,0.0000017517,0.0000017509,0.0000017495,0.0000017475, +0.0000017453,0.0000017429,0.0000017404,0.0000017379,0.0000017358, +0.0000017346,0.0000017351,0.0000017376,0.0000017418,0.0000017468, +0.0000017518,0.0000017565,0.0000017604,0.0000017634,0.0000017653, +0.0000017662,0.0000017661,0.0000017654,0.0000017645,0.0000017628, +0.0000017611,0.0000017599,0.0000017594,0.0000017592,0.0000017592, +0.0000017599,0.0000017615,0.0000017641,0.0000017672,0.0000017704, +0.0000017741,0.0000017781,0.0000017819,0.0000017856,0.0000017891, +0.0000017922,0.0000017950,0.0000017974,0.0000017996,0.0000018012, +0.0000018024,0.0000018035,0.0000018042,0.0000018046,0.0000018048, +0.0000018053,0.0000018060,0.0000018068,0.0000018076,0.0000018080, +0.0000018080,0.0000018072,0.0000018062,0.0000018061,0.0000018064, +0.0000018055,0.0000018041,0.0000018028,0.0000018016,0.0000018008, +0.0000018011,0.0000018025,0.0000018055,0.0000018095,0.0000018140, +0.0000018184,0.0000018205,0.0000018211,0.0000018203,0.0000018159, +0.0000018079,0.0000017985,0.0000017896,0.0000017858,0.0000017858, +0.0000017870,0.0000017889,0.0000017904,0.0000017920,0.0000017940, +0.0000017948,0.0000017940,0.0000017915,0.0000017885,0.0000017853, +0.0000017821,0.0000017791,0.0000017770,0.0000017763,0.0000017774, +0.0000017809,0.0000017854,0.0000017893,0.0000017916,0.0000017925, +0.0000017935,0.0000017963,0.0000018018,0.0000018090,0.0000018150, +0.0000018177,0.0000018173,0.0000018158,0.0000018153,0.0000018171, +0.0000018208,0.0000018250,0.0000018286,0.0000018315,0.0000018356, +0.0000018413,0.0000018455,0.0000018482,0.0000018582,0.0000018771, +0.0000018954,0.0000019106,0.0000019241,0.0000019361,0.0000019478, +0.0000019524,0.0000019532,0.0000019591,0.0000019656,0.0000019722, +0.0000019826,0.0000019901,0.0000019904,0.0000019868,0.0000019847, +0.0000019873,0.0000019904,0.0000019918,0.0000019926,0.0000019922, +0.0000019908,0.0000019898,0.0000019884,0.0000019860,0.0000019833, +0.0000019811,0.0000019797,0.0000019785,0.0000019776,0.0000019773, +0.0000019779,0.0000019804,0.0000019847,0.0000019906,0.0000019970, +0.0000020022,0.0000020046,0.0000020057,0.0000020049,0.0000020037, +0.0000020028,0.0000020018,0.0000020014,0.0000020016,0.0000020020, +0.0000020024,0.0000020025,0.0000020025,0.0000020019,0.0000020009, +0.0000019996,0.0000019978,0.0000019961,0.0000019950,0.0000019931, +0.0000019911,0.0000019890,0.0000019867,0.0000019846,0.0000019824, +0.0000019803,0.0000019780,0.0000019757,0.0000019736,0.0000019719, +0.0000019709,0.0000019703,0.0000019700,0.0000019694,0.0000019689, +0.0000019686,0.0000019685,0.0000019683,0.0000019679,0.0000019676, +0.0000019669,0.0000019664,0.0000019656,0.0000019647,0.0000019634, +0.0000019622,0.0000019607,0.0000019595,0.0000019578,0.0000019564, +0.0000019553,0.0000019542,0.0000019535,0.0000019524,0.0000019517, +0.0000019515,0.0000019520,0.0000019532,0.0000019551,0.0000019567, +0.0000019573,0.0000019582,0.0000019580,0.0000019573,0.0000019569, +0.0000019564,0.0000019556,0.0000019547,0.0000019543,0.0000019537, +0.0000019527,0.0000019515,0.0000019508,0.0000019502,0.0000019494, +0.0000019484,0.0000019468,0.0000019450,0.0000019430,0.0000019406, +0.0000019384,0.0000019363,0.0000019342,0.0000019320,0.0000019297, +0.0000019275,0.0000019254,0.0000019231,0.0000019207,0.0000019187, +0.0000019167,0.0000019142,0.0000019115,0.0000019085,0.0000019053, +0.0000019018,0.0000018980,0.0000018941,0.0000018896,0.0000018847, +0.0000018796,0.0000018739,0.0000018681,0.0000018621,0.0000018562, +0.0000018505,0.0000018457,0.0000018417,0.0000018383,0.0000018350, +0.0000018319,0.0000018292,0.0000018270,0.0000018244,0.0000018217, +0.0000018192,0.0000018168,0.0000018143,0.0000018119,0.0000018098, +0.0000018079,0.0000018061,0.0000018045,0.0000018032,0.0000018020, +0.0000018010,0.0000018007,0.0000018005,0.0000018005,0.0000018008, +0.0000018014,0.0000018028,0.0000018051,0.0000018078,0.0000018110, +0.0000018148,0.0000018191,0.0000018238,0.0000018286,0.0000018336, +0.0000018392,0.0000018454,0.0000018520,0.0000018586,0.0000018652, +0.0000018718,0.0000018780,0.0000018835,0.0000018887,0.0000018941, +0.0000018990,0.0000019027,0.0000019056,0.0000019080,0.0000019098, +0.0000019111,0.0000019120,0.0000019126,0.0000019129,0.0000019134, +0.0000019139,0.0000019146,0.0000019154,0.0000019162,0.0000019170, +0.0000019176,0.0000019182,0.0000019190,0.0000019197,0.0000019203, +0.0000019206,0.0000019204,0.0000019202,0.0000019198,0.0000019195, +0.0000019193,0.0000019195,0.0000019202,0.0000019214,0.0000019231, +0.0000019253,0.0000019279,0.0000019309,0.0000019343,0.0000019383, +0.0000019421,0.0000019458,0.0000019493,0.0000019525,0.0000019553, +0.0000019578,0.0000019601,0.0000019620,0.0000019636,0.0000019646, +0.0000019650,0.0000019649,0.0000019644,0.0000019635,0.0000019622, +0.0000019610,0.0000019599,0.0000019595,0.0000019600,0.0000019609, +0.0000019625,0.0000019642,0.0000019658,0.0000019677,0.0000019694, +0.0000019712,0.0000019733,0.0000019756,0.0000019779,0.0000019803, +0.0000019824,0.0000019844,0.0000019865,0.0000019885,0.0000019899, +0.0000019904,0.0000019907,0.0000019909,0.0000019911,0.0000019910, +0.0000019912,0.0000019911,0.0000019905,0.0000019893,0.0000019884, +0.0000019882,0.0000019883,0.0000019890,0.0000019898,0.0000019908, +0.0000019912,0.0000019914,0.0000019915,0.0000019915,0.0000019917, +0.0000019921,0.0000019929,0.0000019938,0.0000019952,0.0000019971, +0.0000019990,0.0000020005,0.0000020017,0.0000020021,0.0000020019, +0.0000020003,0.0000019973,0.0000019936,0.0000019891,0.0000019855, +0.0000019837,0.0000019839,0.0000019844,0.0000019868,0.0000019897, +0.0000019928,0.0000019954,0.0000019971,0.0000019971,0.0000019962, +0.0000019947,0.0000019931,0.0000019913,0.0000019893,0.0000019876, +0.0000019858,0.0000019844,0.0000019851,0.0000019857,0.0000019868, +0.0000019899,0.0000019943,0.0000019985,0.0000020024,0.0000020062, +0.0000020100,0.0000020130,0.0000020152,0.0000020152,0.0000020142, +0.0000020129,0.0000020125,0.0000020137,0.0000020158,0.0000020193, +0.0000020243,0.0000020294,0.0000020334,0.0000020343,0.0000020355, +0.0000020351,0.0000020333,0.0000020316,0.0000020303,0.0000020289, +0.0000020284,0.0000020280,0.0000020281,0.0000020287,0.0000020295, +0.0000020298,0.0000020308,0.0000020310,0.0000020306,0.0000020292, +0.0000020278,0.0000020265,0.0000020262,0.0000020269,0.0000020277, +0.0000020286,0.0000020295,0.0000020300,0.0000020304,0.0000020308, +0.0000020315,0.0000020318,0.0000020317,0.0000020315,0.0000020314, +0.0000020313,0.0000020302,0.0000020286,0.0000020267,0.0000020246, +0.0000020229,0.0000020217,0.0000020204,0.0000020200,0.0000020210, +0.0000020225,0.0000020241,0.0000020253,0.0000020269,0.0000020279, +0.0000020291,0.0000020304,0.0000020317,0.0000020317,0.0000020318, +0.0000020322,0.0000020312,0.0000020306,0.0000020309,0.0000020313, +0.0000020308,0.0000020306,0.0000020310,0.0000020313,0.0000020312, +0.0000020313,0.0000020312,0.0000020309,0.0000020302,0.0000020296, +0.0000020287,0.0000020273,0.0000020255,0.0000020235,0.0000020206, +0.0000020172,0.0000020134,0.0000020098,0.0000020076,0.0000020070, +0.0000020072,0.0000020079,0.0000020086,0.0000020087,0.0000020070, +0.0000020052,0.0000020036,0.0000020016,0.0000019997,0.0000019987, +0.0000019973,0.0000019946,0.0000019915,0.0000019879,0.0000019836, +0.0000019795,0.0000019755,0.0000019718,0.0000019683,0.0000019655, +0.0000019636,0.0000019624,0.0000019611,0.0000019593,0.0000019564, +0.0000019533,0.0000019494,0.0000019452,0.0000019414,0.0000019377, +0.0000019344,0.0000019315,0.0000019287,0.0000019260,0.0000019230, +0.0000019197,0.0000019163,0.0000019132,0.0000019106,0.0000019083, +0.0000019067,0.0000019062,0.0000019066,0.0000019087,0.0000019105, +0.0000019134,0.0000019158,0.0000019182,0.0000019213,0.0000019243, +0.0000019267,0.0000019288,0.0000019295,0.0000019300,0.0000019286, +0.0000019253,0.0000019202,0.0000019125,0.0000019044,0.0000018966, +0.0000018901,0.0000018852,0.0000018812,0.0000018775,0.0000018748, +0.0000018726,0.0000018723,0.0000018733,0.0000018739,0.0000018747, +0.0000018758,0.0000018768,0.0000018775,0.0000018791,0.0000018807, +0.0000018820,0.0000018834,0.0000018850,0.0000018867,0.0000018891, +0.0000018925,0.0000018973,0.0000019028,0.0000019090,0.0000019165, +0.0000019243,0.0000019314,0.0000019367,0.0000019399,0.0000019391, +0.0000019351,0.0000019288,0.0000019210,0.0000019143,0.0000019088, +0.0000019067,0.0000019055,0.0000019056,0.0000019064,0.0000019080, +0.0000019094,0.0000019105,0.0000019113,0.0000019124,0.0000019140, +0.0000019157,0.0000019177,0.0000019199,0.0000019226,0.0000019251, +0.0000019253,0.0000019252,0.0000019231,0.0000019203,0.0000019175, +0.0000019157,0.0000019151,0.0000019165,0.0000019185,0.0000019220, +0.0000019261,0.0000019289,0.0000019305,0.0000019317,0.0000019333, +0.0000019350,0.0000019363,0.0000019368,0.0000019381,0.0000019392, +0.0000019403,0.0000019396,0.0000019358,0.0000019308,0.0000019262, +0.0000019235,0.0000019214,0.0000019193,0.0000019205,0.0000019236, +0.0000019271,0.0000019301,0.0000019316,0.0000019311,0.0000019290, +0.0000019266,0.0000019242,0.0000019222,0.0000019209,0.0000019200, +0.0000019203,0.0000019216,0.0000019225,0.0000019230,0.0000019232, +0.0000019227,0.0000019223,0.0000019216,0.0000019210,0.0000019218, +0.0000019236,0.0000019255,0.0000019269,0.0000019275,0.0000019274, +0.0000019256,0.0000019227,0.0000019184,0.0000019141,0.0000019096, +0.0000019065,0.0000019042,0.0000019026,0.0000019002,0.0000018980, +0.0000018972,0.0000018976,0.0000018981,0.0000018971,0.0000018945, +0.0000018903,0.0000018858,0.0000018814,0.0000018778,0.0000018753, +0.0000018733,0.0000018707,0.0000018672,0.0000018629,0.0000018590, +0.0000018577,0.0000018586,0.0000018609,0.0000018621,0.0000018607, +0.0000018568,0.0000018522,0.0000018474,0.0000018431,0.0000018397, +0.0000018386,0.0000018399,0.0000018438,0.0000018492,0.0000018538, +0.0000018568,0.0000018585,0.0000018582,0.0000018556,0.0000018516, +0.0000018498,0.0000018484,0.0000018446,0.0000018392,0.0000018344, +0.0000018327,0.0000018345,0.0000018384,0.0000018418,0.0000018434, +0.0000018439,0.0000018430,0.0000018416,0.0000018408,0.0000018402, +0.0000018397,0.0000018391,0.0000018374,0.0000018347,0.0000018312, +0.0000018284,0.0000018259,0.0000018241,0.0000018231,0.0000018228, +0.0000018233,0.0000018244,0.0000018264,0.0000018287,0.0000018309, +0.0000018323,0.0000018325,0.0000018312,0.0000018299,0.0000018277, +0.0000018250,0.0000018215,0.0000018173,0.0000018127,0.0000018082, +0.0000018042,0.0000018010,0.0000017988,0.0000017974,0.0000017966, +0.0000017964,0.0000017961,0.0000017959,0.0000017959,0.0000017962, +0.0000017966,0.0000017971,0.0000017975,0.0000017980,0.0000017983, +0.0000017986,0.0000017988,0.0000017989,0.0000017993,0.0000018000, +0.0000018012,0.0000018029,0.0000018058,0.0000018092,0.0000018133, +0.0000018183,0.0000018240,0.0000018300,0.0000018360,0.0000018419, +0.0000018470,0.0000018512,0.0000018554,0.0000018599,0.0000018647, +0.0000018702,0.0000018764,0.0000018833,0.0000018911,0.0000018998, +0.0000019096,0.0000019200,0.0000019296,0.0000019377,0.0000019436, +0.0000019471,0.0000019491,0.0000019497,0.0000019498,0.0000019510, +0.0000019517,0.0000019502,0.0000019467,0.0000019422,0.0000019372, +0.0000019328,0.0000019294,0.0000019269,0.0000019243,0.0000019211, +0.0000019174,0.0000019140,0.0000019120,0.0000019108,0.0000019097, +0.0000019079,0.0000019049,0.0000019009,0.0000018968,0.0000018925, +0.0000018882,0.0000018839,0.0000018797,0.0000018751,0.0000018704, +0.0000018665,0.0000018642,0.0000018627,0.0000018619,0.0000018620, +0.0000018630,0.0000018645,0.0000018660,0.0000018662,0.0000018658, +0.0000018654,0.0000018651,0.0000018641,0.0000018605,0.0000018552, +0.0000018509,0.0000018489,0.0000018494,0.0000018519,0.0000018553, +0.0000018572,0.0000018575,0.0000018562,0.0000018541,0.0000018518, +0.0000018494,0.0000018475,0.0000018458,0.0000018440,0.0000018420, +0.0000018398,0.0000018375,0.0000018363,0.0000018363,0.0000018363, +0.0000018361,0.0000018358,0.0000018357,0.0000018358,0.0000018365, +0.0000018378,0.0000018399,0.0000018420,0.0000018436,0.0000018453, +0.0000018466,0.0000018460,0.0000018413,0.0000018319,0.0000018211, +0.0000018132,0.0000018099,0.0000018098,0.0000018113,0.0000018145, +0.0000018197,0.0000018252,0.0000018310,0.0000018378,0.0000018450, +0.0000018512,0.0000018557,0.0000018592,0.0000018621,0.0000018646, +0.0000018659,0.0000018664,0.0000018661,0.0000018652,0.0000018637, +0.0000018619,0.0000018598,0.0000018575,0.0000018549,0.0000018520, +0.0000018489,0.0000018458,0.0000018428,0.0000018399,0.0000018366, +0.0000018330,0.0000018298,0.0000018273,0.0000018258,0.0000018254, +0.0000018258,0.0000018266,0.0000018279,0.0000018292,0.0000018307, +0.0000018331,0.0000018365,0.0000018404,0.0000018448,0.0000018503, +0.0000018568,0.0000018624,0.0000018647,0.0000018644,0.0000018632, +0.0000018617,0.0000018598,0.0000018575,0.0000018555,0.0000018544, +0.0000018531,0.0000018514,0.0000018496,0.0000018479,0.0000018464, +0.0000018452,0.0000018443,0.0000018435,0.0000018429,0.0000018432, +0.0000018448,0.0000018484,0.0000018531,0.0000018579,0.0000018617, +0.0000018635,0.0000018628,0.0000018591,0.0000018531,0.0000018466, +0.0000018417,0.0000018398,0.0000018408,0.0000018451,0.0000018500, +0.0000018535,0.0000018576,0.0000018648,0.0000018685,0.0000018645, +0.0000018674,0.0000018785,0.0000018754,0.0000018680,0.0000018708, +0.0000018843,0.0000018876,0.0000018807,0.0000018741,0.0000018799, +0.0000018938,0.0000018945,0.0000018858,0.0000018797,0.0000018769, +0.0000018737,0.0000018680,0.0000018614,0.0000018563,0.0000018550, +0.0000018617,0.0000018754,0.0000018850,0.0000018867,0.0000018873, +0.0000018906,0.0000018939,0.0000018939,0.0000018925,0.0000018924, +0.0000018937,0.0000018952,0.0000018962,0.0000018969,0.0000018975, +0.0000018985,0.0000019007,0.0000019032,0.0000019035,0.0000019022, +0.0000019012,0.0000018920,0.0000018624,0.0000018257,0.0000018050, +0.0000017990,0.0000017954,0.0000017921,0.0000017912,0.0000017918, +0.0000017934,0.0000017952,0.0000017973,0.0000018003,0.0000018048, +0.0000018100,0.0000018154,0.0000018209,0.0000018265,0.0000018320, +0.0000018380,0.0000018445,0.0000018509,0.0000018558,0.0000018582, +0.0000018573,0.0000018527,0.0000018452,0.0000018371,0.0000018314, +0.0000018289,0.0000018294,0.0000018321,0.0000018360,0.0000018401, +0.0000018441,0.0000018487,0.0000018539,0.0000018596,0.0000018647, +0.0000018683,0.0000018706,0.0000018723,0.0000018743,0.0000018770, +0.0000018787,0.0000018752,0.0000018684,0.0000018553,0.0000018411, +0.0000018322,0.0000018298,0.0000018306,0.0000018322,0.0000018326, +0.0000018306,0.0000018266,0.0000018220,0.0000018179,0.0000018141, +0.0000018097,0.0000018052,0.0000018015,0.0000017993,0.0000017986, +0.0000017986,0.0000017993,0.0000017993,0.0000017993,0.0000017995, +0.0000017995,0.0000018002,0.0000018016,0.0000018034,0.0000018056, +0.0000018076,0.0000018093,0.0000018106,0.0000018112,0.0000018113, +0.0000018112,0.0000018106,0.0000018095,0.0000018082,0.0000018064, +0.0000018047,0.0000018027,0.0000018005,0.0000017984,0.0000017962, +0.0000017940,0.0000017923,0.0000017912,0.0000017905,0.0000017905, +0.0000017908,0.0000017915,0.0000017926,0.0000017936,0.0000017949, +0.0000017960,0.0000017971,0.0000017986,0.0000018007,0.0000018032, +0.0000018063,0.0000018094,0.0000018124,0.0000018153,0.0000018178, +0.0000018192,0.0000018206,0.0000018222,0.0000018236,0.0000018245, +0.0000018258,0.0000018275,0.0000018293,0.0000018308,0.0000018321, +0.0000018334,0.0000018350,0.0000018367,0.0000018384,0.0000018401, +0.0000018472,0.0000018489,0.0000018505,0.0000018522,0.0000018538, +0.0000018549,0.0000018558,0.0000018560,0.0000018559,0.0000018551, +0.0000018535,0.0000018514,0.0000018486,0.0000018449,0.0000018401, +0.0000018349,0.0000018303,0.0000018258,0.0000018219,0.0000018193, +0.0000018181,0.0000018174,0.0000018172,0.0000018174,0.0000018174, +0.0000018167,0.0000018156,0.0000018136,0.0000018115,0.0000018102, +0.0000018095,0.0000018091,0.0000018087,0.0000018077,0.0000018059, +0.0000018036,0.0000018005,0.0000017975,0.0000017945,0.0000017921, +0.0000017913,0.0000017911,0.0000017904,0.0000017887,0.0000017850, +0.0000017801,0.0000017762,0.0000017738,0.0000017742,0.0000017771, +0.0000017816,0.0000017864,0.0000017913,0.0000017966,0.0000018029, +0.0000018106,0.0000018191,0.0000018274,0.0000018344,0.0000018393, +0.0000018407,0.0000018413,0.0000018403,0.0000018386,0.0000018368, +0.0000018350,0.0000018336,0.0000018328,0.0000018325,0.0000018329, +0.0000018342,0.0000018364,0.0000018390,0.0000018414,0.0000018429, +0.0000018432,0.0000018423,0.0000018404,0.0000018381,0.0000018360, +0.0000018350,0.0000018341,0.0000018315,0.0000018264,0.0000018196, +0.0000018122,0.0000018057,0.0000018012,0.0000017984,0.0000017958, +0.0000017920,0.0000017869,0.0000017816,0.0000017771,0.0000017748, +0.0000017744,0.0000017767,0.0000017814,0.0000017878,0.0000017951, +0.0000018026,0.0000018094,0.0000018145,0.0000018180,0.0000018220, +0.0000018287,0.0000018379,0.0000018459,0.0000018498,0.0000018498, +0.0000018489,0.0000018480,0.0000018468,0.0000018452,0.0000018437, +0.0000018427,0.0000018421,0.0000018419,0.0000018418,0.0000018415, +0.0000018408,0.0000018394,0.0000018376,0.0000018355,0.0000018333, +0.0000018311,0.0000018291,0.0000018268,0.0000018243,0.0000018213, +0.0000018180,0.0000018144,0.0000018111,0.0000018083,0.0000018057, +0.0000018035,0.0000018018,0.0000018005,0.0000017994,0.0000017986, +0.0000017983,0.0000017980,0.0000017974,0.0000017967,0.0000017961, +0.0000017952,0.0000017937,0.0000017912,0.0000017881,0.0000017846, +0.0000017808,0.0000017767,0.0000017725,0.0000017687,0.0000017654, +0.0000017631,0.0000017617,0.0000017609,0.0000017602,0.0000017596, +0.0000017585,0.0000017572,0.0000017560,0.0000017550,0.0000017541, +0.0000017535,0.0000017533,0.0000017532,0.0000017531,0.0000017529, +0.0000017526,0.0000017523,0.0000017516,0.0000017503,0.0000017484, +0.0000017460,0.0000017431,0.0000017401,0.0000017372,0.0000017348, +0.0000017328,0.0000017325,0.0000017337,0.0000017369,0.0000017413, +0.0000017460,0.0000017506,0.0000017546,0.0000017579,0.0000017604, +0.0000017620,0.0000017629,0.0000017630,0.0000017626,0.0000017617, +0.0000017606,0.0000017599,0.0000017595,0.0000017591,0.0000017587, +0.0000017585,0.0000017589,0.0000017599,0.0000017609,0.0000017620, +0.0000017632,0.0000017645,0.0000017658,0.0000017671,0.0000017686, +0.0000017703,0.0000017721,0.0000017739,0.0000017755,0.0000017768, +0.0000017780,0.0000017788,0.0000017793,0.0000017796,0.0000017800, +0.0000017810,0.0000017823,0.0000017840,0.0000017856,0.0000017873, +0.0000017893,0.0000017914,0.0000017938,0.0000017971,0.0000018004, +0.0000018026,0.0000018028,0.0000018018,0.0000018014,0.0000018000, +0.0000017979,0.0000017966,0.0000017966,0.0000017983,0.0000018021, +0.0000018074,0.0000018134,0.0000018194,0.0000018227,0.0000018233, +0.0000018218,0.0000018157,0.0000018061,0.0000017956,0.0000017875, +0.0000017859,0.0000017863,0.0000017878,0.0000017890,0.0000017902, +0.0000017913,0.0000017910,0.0000017890,0.0000017859,0.0000017826, +0.0000017795,0.0000017770,0.0000017754,0.0000017750,0.0000017765, +0.0000017797,0.0000017839,0.0000017881,0.0000017913,0.0000017926, +0.0000017928,0.0000017931,0.0000017944,0.0000017974,0.0000018007, +0.0000018024,0.0000018023,0.0000018018,0.0000018034,0.0000018080, +0.0000018142,0.0000018207,0.0000018261,0.0000018294,0.0000018332, +0.0000018388,0.0000018431,0.0000018463,0.0000018577,0.0000018775, +0.0000018951,0.0000019097,0.0000019229,0.0000019343,0.0000019453, +0.0000019489,0.0000019500,0.0000019564,0.0000019630,0.0000019704, +0.0000019809,0.0000019870,0.0000019865,0.0000019834,0.0000019828, +0.0000019857,0.0000019879,0.0000019888,0.0000019896,0.0000019892, +0.0000019881,0.0000019872,0.0000019861,0.0000019844,0.0000019825, +0.0000019808,0.0000019796,0.0000019784,0.0000019771,0.0000019759, +0.0000019751,0.0000019753,0.0000019764,0.0000019795,0.0000019844, +0.0000019906,0.0000019963,0.0000020006,0.0000020023,0.0000020033, +0.0000020028,0.0000020014,0.0000020004,0.0000019997,0.0000019991, +0.0000019988,0.0000019986,0.0000019982,0.0000019976,0.0000019970, +0.0000019962,0.0000019954,0.0000019947,0.0000019938,0.0000019929, +0.0000019922,0.0000019912,0.0000019902,0.0000019894,0.0000019876, +0.0000019853,0.0000019827,0.0000019799,0.0000019774,0.0000019751, +0.0000019733,0.0000019717,0.0000019703,0.0000019689,0.0000019677, +0.0000019669,0.0000019663,0.0000019656,0.0000019649,0.0000019643, +0.0000019637,0.0000019632,0.0000019628,0.0000019621,0.0000019617, +0.0000019612,0.0000019606,0.0000019599,0.0000019592,0.0000019586, +0.0000019581,0.0000019571,0.0000019562,0.0000019552,0.0000019543, +0.0000019544,0.0000019548,0.0000019553,0.0000019555,0.0000019549, +0.0000019540,0.0000019529,0.0000019517,0.0000019503,0.0000019493, +0.0000019486,0.0000019477,0.0000019466,0.0000019456,0.0000019444, +0.0000019432,0.0000019421,0.0000019411,0.0000019397,0.0000019381, +0.0000019359,0.0000019337,0.0000019316,0.0000019293,0.0000019272, +0.0000019250,0.0000019225,0.0000019198,0.0000019166,0.0000019132, +0.0000019093,0.0000019049,0.0000018999,0.0000018946,0.0000018889, +0.0000018827,0.0000018760,0.0000018691,0.0000018622,0.0000018552, +0.0000018482,0.0000018413,0.0000018342,0.0000018271,0.0000018200, +0.0000018129,0.0000018063,0.0000018003,0.0000017949,0.0000017902, +0.0000017868,0.0000017844,0.0000017828,0.0000017816,0.0000017807, +0.0000017803,0.0000017803,0.0000017799,0.0000017791,0.0000017784, +0.0000017778,0.0000017770,0.0000017762,0.0000017756,0.0000017748, +0.0000017741,0.0000017736,0.0000017730,0.0000017720,0.0000017706, +0.0000017695,0.0000017683,0.0000017670,0.0000017654,0.0000017638, +0.0000017629,0.0000017630,0.0000017635,0.0000017644,0.0000017657, +0.0000017674,0.0000017697,0.0000017727,0.0000017760,0.0000017798, +0.0000017846,0.0000017905,0.0000017971,0.0000018044,0.0000018125, +0.0000018213,0.0000018301,0.0000018392,0.0000018491,0.0000018587, +0.0000018674,0.0000018751,0.0000018820,0.0000018880,0.0000018931, +0.0000018973,0.0000019006,0.0000019030,0.0000019050,0.0000019068, +0.0000019085,0.0000019100,0.0000019113,0.0000019122,0.0000019128, +0.0000019133,0.0000019138,0.0000019144,0.0000019152,0.0000019159, +0.0000019166,0.0000019170,0.0000019171,0.0000019171,0.0000019168, +0.0000019163,0.0000019160,0.0000019158,0.0000019158,0.0000019164, +0.0000019177,0.0000019197,0.0000019225,0.0000019259,0.0000019297, +0.0000019334,0.0000019372,0.0000019408,0.0000019441,0.0000019471, +0.0000019499,0.0000019525,0.0000019546,0.0000019564,0.0000019578, +0.0000019587,0.0000019589,0.0000019587,0.0000019585,0.0000019580, +0.0000019574,0.0000019570,0.0000019569,0.0000019569,0.0000019573, +0.0000019583,0.0000019594,0.0000019607,0.0000019622,0.0000019638, +0.0000019655,0.0000019675,0.0000019695,0.0000019716,0.0000019741, +0.0000019764,0.0000019783,0.0000019798,0.0000019817,0.0000019830, +0.0000019837,0.0000019839,0.0000019838,0.0000019837,0.0000019838, +0.0000019835,0.0000019835,0.0000019837,0.0000019835,0.0000019832, +0.0000019831,0.0000019836,0.0000019843,0.0000019852,0.0000019865, +0.0000019877,0.0000019889,0.0000019901,0.0000019911,0.0000019917, +0.0000019920,0.0000019922,0.0000019929,0.0000019941,0.0000019961, +0.0000019978,0.0000019992,0.0000020004,0.0000020010,0.0000020004, +0.0000019991,0.0000019965,0.0000019928,0.0000019889,0.0000019857, +0.0000019836,0.0000019828,0.0000019825,0.0000019838,0.0000019863, +0.0000019892,0.0000019922,0.0000019944,0.0000019954,0.0000019953, +0.0000019951,0.0000019956,0.0000019956,0.0000019954,0.0000019947, +0.0000019938,0.0000019929,0.0000019922,0.0000019912,0.0000019909, +0.0000019900,0.0000019894,0.0000019887,0.0000019902,0.0000019924, +0.0000019955,0.0000019989,0.0000020022,0.0000020054,0.0000020075, +0.0000020081,0.0000020074,0.0000020071,0.0000020080,0.0000020103, +0.0000020139,0.0000020182,0.0000020231,0.0000020281,0.0000020319, +0.0000020331,0.0000020328,0.0000020335,0.0000020330,0.0000020325, +0.0000020324,0.0000020324,0.0000020316,0.0000020302,0.0000020298, +0.0000020292,0.0000020285,0.0000020273,0.0000020262,0.0000020248, +0.0000020236,0.0000020227,0.0000020227,0.0000020234,0.0000020245, +0.0000020259,0.0000020272,0.0000020280,0.0000020286,0.0000020296, +0.0000020302,0.0000020301,0.0000020299,0.0000020299,0.0000020303, +0.0000020302,0.0000020296,0.0000020287,0.0000020272,0.0000020255, +0.0000020237,0.0000020216,0.0000020207,0.0000020204,0.0000020212, +0.0000020223,0.0000020234,0.0000020243,0.0000020253,0.0000020270, +0.0000020287,0.0000020294,0.0000020302,0.0000020309,0.0000020304, +0.0000020298,0.0000020298,0.0000020301,0.0000020291,0.0000020280, +0.0000020267,0.0000020261,0.0000020253,0.0000020253,0.0000020250, +0.0000020242,0.0000020236,0.0000020233,0.0000020223,0.0000020210, +0.0000020202,0.0000020190,0.0000020173,0.0000020149,0.0000020115, +0.0000020080,0.0000020041,0.0000020004,0.0000019986,0.0000019980, +0.0000019981,0.0000019986,0.0000019993,0.0000020001,0.0000020005, +0.0000019995,0.0000019977,0.0000019970,0.0000019966,0.0000019959, +0.0000019946,0.0000019929,0.0000019905,0.0000019874,0.0000019842, +0.0000019802,0.0000019762,0.0000019724,0.0000019695,0.0000019675, +0.0000019661,0.0000019647,0.0000019625,0.0000019594,0.0000019559, +0.0000019519,0.0000019486,0.0000019457,0.0000019427,0.0000019400, +0.0000019375,0.0000019355,0.0000019334,0.0000019314,0.0000019290, +0.0000019264,0.0000019239,0.0000019211,0.0000019185,0.0000019165, +0.0000019149,0.0000019138,0.0000019138,0.0000019146,0.0000019153, +0.0000019165,0.0000019172,0.0000019184,0.0000019198,0.0000019214, +0.0000019237,0.0000019259,0.0000019277,0.0000019286,0.0000019282, +0.0000019264,0.0000019230,0.0000019188,0.0000019142,0.0000019098, +0.0000019049,0.0000018995,0.0000018940,0.0000018885,0.0000018836, +0.0000018801,0.0000018773,0.0000018750,0.0000018749,0.0000018748, +0.0000018752,0.0000018754,0.0000018771,0.0000018785,0.0000018797, +0.0000018815,0.0000018833,0.0000018850,0.0000018872,0.0000018902, +0.0000018936,0.0000018969,0.0000019013,0.0000019071,0.0000019139, +0.0000019208,0.0000019277,0.0000019330,0.0000019353,0.0000019343, +0.0000019294,0.0000019232,0.0000019155,0.0000019090,0.0000019045, +0.0000019026,0.0000019013,0.0000019016,0.0000019026,0.0000019036, +0.0000019046,0.0000019054,0.0000019064,0.0000019074,0.0000019083, +0.0000019094,0.0000019116,0.0000019149,0.0000019186,0.0000019214, +0.0000019232,0.0000019232,0.0000019215,0.0000019184,0.0000019145, +0.0000019116,0.0000019100,0.0000019130,0.0000019185,0.0000019239, +0.0000019274,0.0000019292,0.0000019300,0.0000019306,0.0000019308, +0.0000019315,0.0000019339,0.0000019368,0.0000019399,0.0000019403, +0.0000019383,0.0000019348,0.0000019308,0.0000019262,0.0000019217, +0.0000019185,0.0000019168,0.0000019172,0.0000019189,0.0000019211, +0.0000019221,0.0000019220,0.0000019208,0.0000019199,0.0000019183, +0.0000019161,0.0000019139,0.0000019123,0.0000019104,0.0000019087, +0.0000019075,0.0000019065,0.0000019059,0.0000019051,0.0000019051, +0.0000019060,0.0000019077,0.0000019112,0.0000019154,0.0000019191, +0.0000019216,0.0000019235,0.0000019243,0.0000019237,0.0000019223, +0.0000019188,0.0000019149,0.0000019106,0.0000019073,0.0000019051, +0.0000019039,0.0000019023,0.0000019003,0.0000018982,0.0000018970, +0.0000018957,0.0000018936,0.0000018909,0.0000018875,0.0000018834, +0.0000018782,0.0000018740,0.0000018718,0.0000018697,0.0000018660, +0.0000018612,0.0000018560,0.0000018513,0.0000018494,0.0000018500, +0.0000018528,0.0000018545,0.0000018537,0.0000018509,0.0000018479, +0.0000018436,0.0000018393,0.0000018367,0.0000018366,0.0000018385, +0.0000018428,0.0000018491,0.0000018549,0.0000018585,0.0000018606, +0.0000018605,0.0000018580,0.0000018546,0.0000018525,0.0000018505, +0.0000018467,0.0000018408,0.0000018353,0.0000018319,0.0000018318, +0.0000018353,0.0000018393,0.0000018417,0.0000018434,0.0000018430, +0.0000018416,0.0000018404,0.0000018395,0.0000018392,0.0000018385, +0.0000018376,0.0000018358,0.0000018335,0.0000018310,0.0000018280, +0.0000018251,0.0000018229,0.0000018217,0.0000018209,0.0000018205, +0.0000018213,0.0000018231,0.0000018254,0.0000018277,0.0000018292, +0.0000018298,0.0000018291,0.0000018279,0.0000018261,0.0000018234, +0.0000018200,0.0000018161,0.0000018120,0.0000018079,0.0000018041, +0.0000018009,0.0000017986,0.0000017974,0.0000017966,0.0000017959, +0.0000017956,0.0000017952,0.0000017951,0.0000017955,0.0000017962, +0.0000017970,0.0000017976,0.0000017982,0.0000017986,0.0000017989, +0.0000017989,0.0000017990,0.0000017992,0.0000017992,0.0000017998, +0.0000018009,0.0000018027,0.0000018060,0.0000018104,0.0000018155, +0.0000018211,0.0000018268,0.0000018323,0.0000018372,0.0000018418, +0.0000018463,0.0000018509,0.0000018557,0.0000018609,0.0000018665, +0.0000018724,0.0000018783,0.0000018847,0.0000018921,0.0000019002, +0.0000019085,0.0000019170,0.0000019258,0.0000019336,0.0000019409, +0.0000019464,0.0000019507,0.0000019530,0.0000019543,0.0000019543, +0.0000019527,0.0000019493,0.0000019448,0.0000019399,0.0000019350, +0.0000019306,0.0000019266,0.0000019224,0.0000019178,0.0000019135, +0.0000019104,0.0000019086,0.0000019076,0.0000019061,0.0000019039, +0.0000019007,0.0000018971,0.0000018933,0.0000018890,0.0000018845, +0.0000018798,0.0000018753,0.0000018711,0.0000018675,0.0000018642, +0.0000018615,0.0000018600,0.0000018596,0.0000018602,0.0000018616, +0.0000018633,0.0000018647,0.0000018649,0.0000018643,0.0000018641, +0.0000018641,0.0000018631,0.0000018604,0.0000018569,0.0000018538, +0.0000018523,0.0000018524,0.0000018540,0.0000018561,0.0000018567, +0.0000018558,0.0000018535,0.0000018505,0.0000018475,0.0000018447, +0.0000018427,0.0000018413,0.0000018398,0.0000018379,0.0000018365, +0.0000018364,0.0000018365,0.0000018368,0.0000018371,0.0000018375, +0.0000018377,0.0000018382,0.0000018395,0.0000018414,0.0000018433, +0.0000018446,0.0000018463,0.0000018480,0.0000018486,0.0000018465, +0.0000018406,0.0000018309,0.0000018211,0.0000018142,0.0000018116, +0.0000018119,0.0000018135,0.0000018170,0.0000018213,0.0000018264, +0.0000018329,0.0000018407,0.0000018484,0.0000018545,0.0000018592, +0.0000018628,0.0000018655,0.0000018673,0.0000018682,0.0000018686, +0.0000018681,0.0000018673,0.0000018661,0.0000018646,0.0000018626, +0.0000018599,0.0000018567,0.0000018534,0.0000018503,0.0000018474, +0.0000018446,0.0000018417,0.0000018385,0.0000018354,0.0000018328, +0.0000018314,0.0000018308,0.0000018310,0.0000018317,0.0000018324, +0.0000018337,0.0000018356,0.0000018385,0.0000018424,0.0000018470, +0.0000018522,0.0000018573,0.0000018613,0.0000018633,0.0000018631, +0.0000018617,0.0000018600,0.0000018584,0.0000018567,0.0000018552, +0.0000018540,0.0000018526,0.0000018510,0.0000018494,0.0000018478, +0.0000018464,0.0000018451,0.0000018442,0.0000018432,0.0000018426, +0.0000018430,0.0000018453,0.0000018494,0.0000018541,0.0000018581, +0.0000018605,0.0000018609,0.0000018587,0.0000018539,0.0000018482, +0.0000018432,0.0000018401,0.0000018394,0.0000018414,0.0000018464, +0.0000018514,0.0000018541,0.0000018560,0.0000018613,0.0000018672, +0.0000018660,0.0000018670,0.0000018782,0.0000018780,0.0000018706, +0.0000018710,0.0000018843,0.0000018930,0.0000018901,0.0000018797, +0.0000018736,0.0000018794,0.0000018931,0.0000018950,0.0000018872, +0.0000018792,0.0000018739,0.0000018690,0.0000018640,0.0000018589, +0.0000018572,0.0000018615,0.0000018735,0.0000018836,0.0000018862, +0.0000018861,0.0000018877,0.0000018915,0.0000018943,0.0000018956, +0.0000018962,0.0000018968,0.0000018973,0.0000018975,0.0000018975, +0.0000018973,0.0000018972,0.0000018986,0.0000019011,0.0000019021, +0.0000019021,0.0000018957,0.0000018697,0.0000018289,0.0000017991, +0.0000017885,0.0000017846,0.0000017811,0.0000017794,0.0000017794, +0.0000017804,0.0000017825,0.0000017851,0.0000017877,0.0000017904, +0.0000017942,0.0000017994,0.0000018055,0.0000018116,0.0000018177, +0.0000018238,0.0000018292,0.0000018335,0.0000018372,0.0000018406, +0.0000018435,0.0000018449,0.0000018442,0.0000018408,0.0000018353, +0.0000018298,0.0000018257,0.0000018236,0.0000018234,0.0000018248, +0.0000018266,0.0000018279,0.0000018295,0.0000018316,0.0000018350, +0.0000018396,0.0000018443,0.0000018480,0.0000018509,0.0000018531, +0.0000018558,0.0000018601,0.0000018661,0.0000018698,0.0000018680, +0.0000018617,0.0000018486,0.0000018361,0.0000018302,0.0000018294, +0.0000018307,0.0000018323,0.0000018325,0.0000018300,0.0000018255, +0.0000018211,0.0000018176,0.0000018146,0.0000018113,0.0000018079, +0.0000018050,0.0000018019,0.0000018005,0.0000017997,0.0000017994, +0.0000017994,0.0000017992,0.0000017995,0.0000018001,0.0000018011, +0.0000018028,0.0000018046,0.0000018064,0.0000018081,0.0000018093, +0.0000018102,0.0000018107,0.0000018109,0.0000018103,0.0000018091, +0.0000018074,0.0000018055,0.0000018036,0.0000018017,0.0000017995, +0.0000017972,0.0000017943,0.0000017918,0.0000017899,0.0000017880, +0.0000017872,0.0000017872,0.0000017878,0.0000017899,0.0000017918, +0.0000017942,0.0000017966,0.0000017992,0.0000018020,0.0000018051, +0.0000018085,0.0000018118,0.0000018149,0.0000018179,0.0000018207, +0.0000018233,0.0000018249,0.0000018262,0.0000018275,0.0000018289, +0.0000018299,0.0000018311,0.0000018328,0.0000018348,0.0000018367, +0.0000018382,0.0000018395,0.0000018410,0.0000018425,0.0000018440, +0.0000018455,0.0000018500,0.0000018515,0.0000018529,0.0000018543, +0.0000018558,0.0000018572,0.0000018583,0.0000018594,0.0000018603, +0.0000018610,0.0000018616,0.0000018614,0.0000018604,0.0000018590, +0.0000018567,0.0000018532,0.0000018491,0.0000018446,0.0000018397, +0.0000018345,0.0000018301,0.0000018268,0.0000018245,0.0000018231, +0.0000018229,0.0000018220,0.0000018211,0.0000018201,0.0000018183, +0.0000018164,0.0000018151,0.0000018141,0.0000018135,0.0000018126, +0.0000018113,0.0000018092,0.0000018064,0.0000018025,0.0000017981, +0.0000017936,0.0000017905,0.0000017886,0.0000017874,0.0000017869, +0.0000017865,0.0000017844,0.0000017812,0.0000017767,0.0000017732, +0.0000017709,0.0000017716,0.0000017748,0.0000017796,0.0000017846, +0.0000017895,0.0000017943,0.0000017996,0.0000018062,0.0000018140, +0.0000018225,0.0000018305,0.0000018371,0.0000018406,0.0000018414, +0.0000018411,0.0000018396,0.0000018375,0.0000018356,0.0000018342, +0.0000018335,0.0000018335,0.0000018342,0.0000018360,0.0000018387, +0.0000018415,0.0000018435,0.0000018443,0.0000018439,0.0000018421, +0.0000018393,0.0000018367,0.0000018352,0.0000018340,0.0000018314, +0.0000018264,0.0000018193,0.0000018112,0.0000018036,0.0000017983, +0.0000017950,0.0000017924,0.0000017896,0.0000017858,0.0000017814, +0.0000017774,0.0000017749,0.0000017745,0.0000017760,0.0000017793, +0.0000017836,0.0000017889,0.0000017954,0.0000018026,0.0000018089, +0.0000018138,0.0000018179,0.0000018235,0.0000018317,0.0000018402, +0.0000018452,0.0000018459,0.0000018449,0.0000018439,0.0000018430, +0.0000018420,0.0000018408,0.0000018398,0.0000018392,0.0000018388, +0.0000018380,0.0000018368,0.0000018351,0.0000018332,0.0000018310, +0.0000018284,0.0000018255,0.0000018226,0.0000018195,0.0000018161, +0.0000018123,0.0000018079,0.0000018031,0.0000017984,0.0000017942, +0.0000017906,0.0000017878,0.0000017858,0.0000017844,0.0000017833, +0.0000017828,0.0000017829,0.0000017831,0.0000017832,0.0000017832, +0.0000017831,0.0000017827,0.0000017815,0.0000017795,0.0000017767, +0.0000017736,0.0000017704,0.0000017671,0.0000017639,0.0000017614, +0.0000017599,0.0000017594,0.0000017593,0.0000017593,0.0000017593, +0.0000017590,0.0000017583,0.0000017576,0.0000017569,0.0000017563, +0.0000017554,0.0000017542,0.0000017532,0.0000017523,0.0000017513, +0.0000017503,0.0000017496,0.0000017492,0.0000017487,0.0000017480, +0.0000017470,0.0000017452,0.0000017429,0.0000017406,0.0000017380, +0.0000017353,0.0000017328,0.0000017314,0.0000017317,0.0000017338, +0.0000017372,0.0000017414,0.0000017456,0.0000017494,0.0000017526, +0.0000017552,0.0000017571,0.0000017584,0.0000017591,0.0000017594, +0.0000017592,0.0000017588,0.0000017587,0.0000017586,0.0000017584, +0.0000017580,0.0000017578,0.0000017580,0.0000017586,0.0000017593, +0.0000017599,0.0000017602,0.0000017603,0.0000017601,0.0000017598, +0.0000017598,0.0000017600,0.0000017603,0.0000017609,0.0000017615, +0.0000017619,0.0000017623,0.0000017624,0.0000017621,0.0000017616, +0.0000017615,0.0000017615,0.0000017618,0.0000017621,0.0000017623, +0.0000017627,0.0000017636,0.0000017654,0.0000017683,0.0000017722, +0.0000017768,0.0000017817,0.0000017864,0.0000017911,0.0000017954, +0.0000017976,0.0000017967,0.0000017963,0.0000017954,0.0000017941, +0.0000017942,0.0000017963,0.0000018011,0.0000018080,0.0000018158, +0.0000018227,0.0000018263,0.0000018266,0.0000018219,0.0000018124, +0.0000018005,0.0000017902,0.0000017865,0.0000017865,0.0000017869, +0.0000017876,0.0000017880,0.0000017879,0.0000017867,0.0000017840, +0.0000017803,0.0000017772,0.0000017752,0.0000017741,0.0000017748, +0.0000017772,0.0000017800,0.0000017831,0.0000017867,0.0000017901, +0.0000017924,0.0000017929,0.0000017919,0.0000017900,0.0000017886, +0.0000017878,0.0000017866,0.0000017852,0.0000017855,0.0000017894, +0.0000017963,0.0000018051,0.0000018148,0.0000018228,0.0000018273, +0.0000018309,0.0000018364,0.0000018407,0.0000018445,0.0000018576, +0.0000018777,0.0000018945,0.0000019089,0.0000019213,0.0000019324, +0.0000019431,0.0000019454,0.0000019468,0.0000019535,0.0000019606, +0.0000019687,0.0000019783,0.0000019831,0.0000019826,0.0000019805, +0.0000019810,0.0000019834,0.0000019847,0.0000019853,0.0000019858, +0.0000019858,0.0000019851,0.0000019844,0.0000019835,0.0000019825, +0.0000019815,0.0000019807,0.0000019804,0.0000019798,0.0000019791, +0.0000019782,0.0000019772,0.0000019762,0.0000019760,0.0000019762, +0.0000019780,0.0000019804,0.0000019844,0.0000019891,0.0000019936, +0.0000019970,0.0000019988,0.0000019992,0.0000019991,0.0000019988, +0.0000019983,0.0000019976,0.0000019968,0.0000019957,0.0000019946, +0.0000019935,0.0000019926,0.0000019918,0.0000019911,0.0000019904, +0.0000019902,0.0000019902,0.0000019901,0.0000019897,0.0000019887, +0.0000019875,0.0000019860,0.0000019845,0.0000019826,0.0000019808, +0.0000019789,0.0000019772,0.0000019755,0.0000019739,0.0000019723, +0.0000019710,0.0000019698,0.0000019687,0.0000019678,0.0000019671, +0.0000019667,0.0000019663,0.0000019661,0.0000019659,0.0000019658, +0.0000019658,0.0000019651,0.0000019643,0.0000019631,0.0000019615, +0.0000019602,0.0000019584,0.0000019565,0.0000019543,0.0000019522, +0.0000019505,0.0000019493,0.0000019482,0.0000019473,0.0000019462, +0.0000019450,0.0000019442,0.0000019432,0.0000019422,0.0000019416, +0.0000019409,0.0000019398,0.0000019383,0.0000019368,0.0000019352, +0.0000019340,0.0000019328,0.0000019314,0.0000019298,0.0000019278, +0.0000019252,0.0000019222,0.0000019189,0.0000019152,0.0000019113, +0.0000019068,0.0000019013,0.0000018950,0.0000018878,0.0000018798, +0.0000018711,0.0000018619,0.0000018525,0.0000018430,0.0000018336, +0.0000018244,0.0000018157,0.0000018074,0.0000017996,0.0000017926, +0.0000017863,0.0000017808,0.0000017757,0.0000017709,0.0000017665, +0.0000017625,0.0000017593,0.0000017569,0.0000017555,0.0000017548, +0.0000017550,0.0000017557,0.0000017570,0.0000017582,0.0000017593, +0.0000017609,0.0000017633,0.0000017649,0.0000017660,0.0000017670, +0.0000017678,0.0000017684,0.0000017689,0.0000017692,0.0000017692, +0.0000017691,0.0000017691,0.0000017691,0.0000017681,0.0000017665, +0.0000017652,0.0000017638,0.0000017620,0.0000017597,0.0000017574, +0.0000017560,0.0000017552,0.0000017544,0.0000017527,0.0000017508, +0.0000017492,0.0000017488,0.0000017493,0.0000017497,0.0000017497, +0.0000017500,0.0000017512,0.0000017534,0.0000017569,0.0000017613, +0.0000017664,0.0000017724,0.0000017797,0.0000017886,0.0000017983, +0.0000018080,0.0000018175,0.0000018268,0.0000018362,0.0000018455, +0.0000018540,0.0000018615,0.0000018684,0.0000018748,0.0000018808, +0.0000018865,0.0000018920,0.0000018968,0.0000019009,0.0000019041, +0.0000019065,0.0000019081,0.0000019091,0.0000019099,0.0000019107, +0.0000019115,0.0000019122,0.0000019130,0.0000019139,0.0000019145, +0.0000019148,0.0000019147,0.0000019142,0.0000019137,0.0000019130, +0.0000019129,0.0000019135,0.0000019146,0.0000019163,0.0000019186, +0.0000019212,0.0000019242,0.0000019274,0.0000019310,0.0000019346, +0.0000019382,0.0000019417,0.0000019448,0.0000019475,0.0000019496, +0.0000019513,0.0000019524,0.0000019532,0.0000019539,0.0000019544, +0.0000019546,0.0000019547,0.0000019548,0.0000019548,0.0000019547, +0.0000019550,0.0000019554,0.0000019558,0.0000019567,0.0000019577, +0.0000019588,0.0000019601,0.0000019617,0.0000019634,0.0000019653, +0.0000019675,0.0000019698,0.0000019717,0.0000019733,0.0000019749, +0.0000019760,0.0000019770,0.0000019781,0.0000019789,0.0000019787, +0.0000019784,0.0000019778,0.0000019774,0.0000019770,0.0000019769, +0.0000019772,0.0000019776,0.0000019783,0.0000019793,0.0000019807, +0.0000019829,0.0000019853,0.0000019877,0.0000019897,0.0000019911, +0.0000019919,0.0000019922,0.0000019925,0.0000019929,0.0000019938, +0.0000019954,0.0000019973,0.0000019988,0.0000019998,0.0000019999, +0.0000019993,0.0000019977,0.0000019954,0.0000019921,0.0000019888, +0.0000019858,0.0000019834,0.0000019824,0.0000019822,0.0000019831, +0.0000019853,0.0000019881,0.0000019906,0.0000019926,0.0000019940, +0.0000019953,0.0000019961,0.0000019969,0.0000019973,0.0000019971, +0.0000019974,0.0000019984,0.0000019989,0.0000019992,0.0000019986, +0.0000019977,0.0000019957,0.0000019932,0.0000019905,0.0000019874, +0.0000019852,0.0000019843,0.0000019846,0.0000019858,0.0000019882, +0.0000019922,0.0000019968,0.0000020014,0.0000020048,0.0000020068, +0.0000020076,0.0000020083,0.0000020097,0.0000020119,0.0000020154, +0.0000020193,0.0000020239,0.0000020282,0.0000020314,0.0000020331, +0.0000020345,0.0000020366,0.0000020374,0.0000020369,0.0000020365, +0.0000020358,0.0000020344,0.0000020332,0.0000020311,0.0000020288, +0.0000020262,0.0000020231,0.0000020211,0.0000020190,0.0000020181, +0.0000020180,0.0000020186,0.0000020194,0.0000020200,0.0000020204, +0.0000020216,0.0000020225,0.0000020236,0.0000020246,0.0000020262, +0.0000020278,0.0000020289,0.0000020293,0.0000020294,0.0000020283, +0.0000020267,0.0000020247,0.0000020232,0.0000020225,0.0000020227, +0.0000020233,0.0000020242,0.0000020249,0.0000020261,0.0000020273, +0.0000020282,0.0000020293,0.0000020307,0.0000020305,0.0000020308, +0.0000020312,0.0000020313,0.0000020298,0.0000020278,0.0000020259, +0.0000020234,0.0000020201,0.0000020172,0.0000020152,0.0000020136, +0.0000020131,0.0000020131,0.0000020129,0.0000020131,0.0000020136, +0.0000020140,0.0000020142,0.0000020134,0.0000020118,0.0000020099, +0.0000020070,0.0000020030,0.0000019993,0.0000019964,0.0000019948, +0.0000019932,0.0000019925,0.0000019923,0.0000019928,0.0000019934, +0.0000019935,0.0000019934,0.0000019937,0.0000019937,0.0000019934, +0.0000019928,0.0000019914,0.0000019898,0.0000019875,0.0000019844, +0.0000019808,0.0000019770,0.0000019735,0.0000019707,0.0000019694, +0.0000019688,0.0000019678,0.0000019654,0.0000019620,0.0000019585, +0.0000019550,0.0000019517,0.0000019489,0.0000019464,0.0000019438, +0.0000019416,0.0000019402,0.0000019390,0.0000019379,0.0000019370, +0.0000019358,0.0000019342,0.0000019324,0.0000019307,0.0000019288, +0.0000019269,0.0000019254,0.0000019246,0.0000019239,0.0000019231, +0.0000019219,0.0000019208,0.0000019195,0.0000019196,0.0000019200, +0.0000019206,0.0000019217,0.0000019226,0.0000019238,0.0000019243, +0.0000019246,0.0000019238,0.0000019240,0.0000019237,0.0000019224, +0.0000019203,0.0000019168,0.0000019123,0.0000019069,0.0000019012, +0.0000018954,0.0000018895,0.0000018843,0.0000018806,0.0000018778, +0.0000018755,0.0000018758,0.0000018759,0.0000018755,0.0000018761, +0.0000018782,0.0000018807,0.0000018838,0.0000018869,0.0000018899, +0.0000018920,0.0000018938,0.0000018963,0.0000018994,0.0000019035, +0.0000019089,0.0000019152,0.0000019214,0.0000019267,0.0000019287, +0.0000019273,0.0000019229,0.0000019169,0.0000019102,0.0000019047, +0.0000019005,0.0000018988,0.0000018976,0.0000018974,0.0000018983, +0.0000018995,0.0000019006,0.0000019011,0.0000019014,0.0000019016, +0.0000019023,0.0000019045,0.0000019074,0.0000019105,0.0000019139, +0.0000019169,0.0000019186,0.0000019182,0.0000019163,0.0000019137, +0.0000019105,0.0000019098,0.0000019117,0.0000019155,0.0000019198, +0.0000019236,0.0000019265,0.0000019278,0.0000019278,0.0000019279, +0.0000019293,0.0000019314,0.0000019346,0.0000019362,0.0000019363, +0.0000019348,0.0000019331,0.0000019294,0.0000019250,0.0000019203, +0.0000019167,0.0000019153,0.0000019153,0.0000019163,0.0000019163, +0.0000019154,0.0000019142,0.0000019133,0.0000019121,0.0000019098, +0.0000019078,0.0000019061,0.0000019038,0.0000019008,0.0000018991, +0.0000018983,0.0000018983,0.0000018986,0.0000018996,0.0000019011, +0.0000019032,0.0000019067,0.0000019108,0.0000019147,0.0000019176, +0.0000019204,0.0000019221,0.0000019226,0.0000019219,0.0000019192, +0.0000019160,0.0000019116,0.0000019074,0.0000019053,0.0000019040, +0.0000019031,0.0000019013,0.0000018991,0.0000018962,0.0000018933, +0.0000018902,0.0000018870,0.0000018839,0.0000018800,0.0000018746, +0.0000018702,0.0000018681,0.0000018659,0.0000018614,0.0000018550, +0.0000018486,0.0000018433,0.0000018403,0.0000018414,0.0000018444, +0.0000018459,0.0000018455,0.0000018436,0.0000018420,0.0000018386, +0.0000018349,0.0000018333,0.0000018343,0.0000018371,0.0000018415, +0.0000018480,0.0000018549,0.0000018600,0.0000018620,0.0000018624, +0.0000018608,0.0000018575,0.0000018552,0.0000018527,0.0000018487, +0.0000018435,0.0000018369,0.0000018315,0.0000018311,0.0000018336, +0.0000018366,0.0000018394,0.0000018422,0.0000018426,0.0000018416, +0.0000018398,0.0000018384,0.0000018377,0.0000018370,0.0000018363, +0.0000018352,0.0000018338,0.0000018320,0.0000018296,0.0000018268, +0.0000018243,0.0000018226,0.0000018209,0.0000018195,0.0000018185, +0.0000018185,0.0000018196,0.0000018218,0.0000018244,0.0000018263, +0.0000018269,0.0000018268,0.0000018253,0.0000018238,0.0000018214, +0.0000018186,0.0000018155,0.0000018123,0.0000018086,0.0000018050, +0.0000018020,0.0000017999,0.0000017985,0.0000017973,0.0000017961, +0.0000017948,0.0000017943,0.0000017942,0.0000017949,0.0000017957, +0.0000017965,0.0000017974,0.0000017981,0.0000017986,0.0000017989, +0.0000017991,0.0000017992,0.0000017993,0.0000017993,0.0000017990, +0.0000017999,0.0000018014,0.0000018039,0.0000018075,0.0000018119, +0.0000018170,0.0000018222,0.0000018273,0.0000018322,0.0000018370, +0.0000018417,0.0000018464,0.0000018516,0.0000018571,0.0000018628, +0.0000018684,0.0000018740,0.0000018799,0.0000018857,0.0000018916, +0.0000018982,0.0000019057,0.0000019143,0.0000019239,0.0000019342, +0.0000019443,0.0000019517,0.0000019552,0.0000019561,0.0000019563, +0.0000019549,0.0000019514,0.0000019469,0.0000019418,0.0000019364, +0.0000019309,0.0000019249,0.0000019189,0.0000019133,0.0000019090, +0.0000019062,0.0000019046,0.0000019037,0.0000019022,0.0000019000, +0.0000018971,0.0000018936,0.0000018899,0.0000018857,0.0000018810, +0.0000018764,0.0000018724,0.0000018690,0.0000018656,0.0000018620, +0.0000018594,0.0000018584,0.0000018584,0.0000018594,0.0000018609, +0.0000018625,0.0000018633,0.0000018631,0.0000018630,0.0000018635, +0.0000018642,0.0000018638,0.0000018619,0.0000018591,0.0000018562, +0.0000018541,0.0000018536,0.0000018543,0.0000018550,0.0000018546, +0.0000018529,0.0000018500,0.0000018467,0.0000018436,0.0000018413, +0.0000018392,0.0000018371,0.0000018356,0.0000018351,0.0000018355, +0.0000018364,0.0000018375,0.0000018383,0.0000018390,0.0000018400, +0.0000018412,0.0000018427,0.0000018444,0.0000018457,0.0000018468, +0.0000018483,0.0000018493,0.0000018490,0.0000018460,0.0000018397, +0.0000018309,0.0000018220,0.0000018155,0.0000018132,0.0000018140, +0.0000018157,0.0000018182,0.0000018217,0.0000018268,0.0000018334, +0.0000018407,0.0000018480,0.0000018547,0.0000018602,0.0000018642, +0.0000018669,0.0000018684,0.0000018689,0.0000018688,0.0000018684, +0.0000018677,0.0000018669,0.0000018655,0.0000018636,0.0000018611, +0.0000018583,0.0000018554,0.0000018525,0.0000018499,0.0000018472, +0.0000018442,0.0000018413,0.0000018390,0.0000018377,0.0000018372, +0.0000018372,0.0000018379,0.0000018390,0.0000018405,0.0000018427, +0.0000018459,0.0000018498,0.0000018541,0.0000018572,0.0000018597, +0.0000018604,0.0000018599,0.0000018586,0.0000018571,0.0000018556, +0.0000018544,0.0000018534,0.0000018527,0.0000018516,0.0000018502, +0.0000018487,0.0000018471,0.0000018455,0.0000018442,0.0000018433, +0.0000018429,0.0000018427,0.0000018439,0.0000018468,0.0000018507, +0.0000018541,0.0000018566,0.0000018573,0.0000018559,0.0000018524, +0.0000018480,0.0000018438,0.0000018408,0.0000018400,0.0000018403, +0.0000018431,0.0000018482,0.0000018530,0.0000018552,0.0000018554, +0.0000018581,0.0000018648,0.0000018662,0.0000018667,0.0000018780, +0.0000018798,0.0000018720,0.0000018722,0.0000018833,0.0000018929, +0.0000018944,0.0000018880,0.0000018772,0.0000018728,0.0000018778, +0.0000018920,0.0000018963,0.0000018900,0.0000018817,0.0000018743, +0.0000018678,0.0000018629,0.0000018606,0.0000018622,0.0000018703, +0.0000018802,0.0000018854,0.0000018859,0.0000018858,0.0000018869, +0.0000018898,0.0000018928,0.0000018952,0.0000018966,0.0000018971, +0.0000018977,0.0000018982,0.0000018978,0.0000018969,0.0000018977, +0.0000018996,0.0000019007,0.0000018993,0.0000018805,0.0000018390, +0.0000017992,0.0000017820,0.0000017781,0.0000017756,0.0000017739, +0.0000017732,0.0000017732,0.0000017737,0.0000017753,0.0000017778, +0.0000017806,0.0000017834,0.0000017869,0.0000017920,0.0000017984, +0.0000018049,0.0000018110,0.0000018169,0.0000018225,0.0000018272, +0.0000018305,0.0000018327,0.0000018340,0.0000018340,0.0000018330, +0.0000018308,0.0000018275,0.0000018240,0.0000018210,0.0000018193, +0.0000018191,0.0000018202,0.0000018213,0.0000018218,0.0000018218, +0.0000018216,0.0000018218,0.0000018232,0.0000018261,0.0000018293, +0.0000018324,0.0000018347,0.0000018364,0.0000018387,0.0000018428, +0.0000018497,0.0000018585,0.0000018642,0.0000018635,0.0000018549, +0.0000018422,0.0000018323,0.0000018288,0.0000018293,0.0000018313, +0.0000018329,0.0000018323,0.0000018292,0.0000018247,0.0000018207, +0.0000018176,0.0000018155,0.0000018135,0.0000018108,0.0000018077, +0.0000018048,0.0000018025,0.0000018012,0.0000018005,0.0000018006, +0.0000018011,0.0000018018,0.0000018029,0.0000018044,0.0000018060, +0.0000018076,0.0000018089,0.0000018099,0.0000018106,0.0000018110, +0.0000018108,0.0000018100,0.0000018086,0.0000018071,0.0000018053, +0.0000018034,0.0000018014,0.0000017996,0.0000017972,0.0000017948, +0.0000017924,0.0000017904,0.0000017894,0.0000017897,0.0000017910, +0.0000017936,0.0000017968,0.0000018001,0.0000018037,0.0000018071, +0.0000018100,0.0000018130,0.0000018160,0.0000018190,0.0000018216, +0.0000018239,0.0000018259,0.0000018278,0.0000018289,0.0000018298, +0.0000018306,0.0000018314,0.0000018321,0.0000018332,0.0000018346, +0.0000018360,0.0000018377,0.0000018395,0.0000018415,0.0000018434, +0.0000018451,0.0000018467,0.0000018483,0.0000018497,0.0000018514, +0.0000018530,0.0000018543,0.0000018557,0.0000018570,0.0000018583, +0.0000018595,0.0000018606,0.0000018620,0.0000018631,0.0000018641, +0.0000018645,0.0000018644,0.0000018640,0.0000018629,0.0000018609, +0.0000018584,0.0000018550,0.0000018507,0.0000018456,0.0000018407, +0.0000018366,0.0000018333,0.0000018308,0.0000018290,0.0000018272, +0.0000018256,0.0000018240,0.0000018221,0.0000018204,0.0000018191, +0.0000018183,0.0000018177,0.0000018169,0.0000018156,0.0000018136, +0.0000018108,0.0000018068,0.0000018021,0.0000017972,0.0000017925, +0.0000017884,0.0000017857,0.0000017837,0.0000017828,0.0000017817, +0.0000017797,0.0000017768,0.0000017737,0.0000017711,0.0000017704, +0.0000017722,0.0000017754,0.0000017801,0.0000017849,0.0000017891, +0.0000017929,0.0000017969,0.0000018021,0.0000018089,0.0000018171, +0.0000018257,0.0000018333,0.0000018394,0.0000018412,0.0000018411, +0.0000018397,0.0000018376,0.0000018358,0.0000018347,0.0000018341, +0.0000018342,0.0000018350,0.0000018371,0.0000018400,0.0000018430, +0.0000018447,0.0000018452,0.0000018441,0.0000018414,0.0000018383, +0.0000018356,0.0000018329,0.0000018293,0.0000018241,0.0000018170, +0.0000018086,0.0000018008,0.0000017949,0.0000017912,0.0000017889, +0.0000017867,0.0000017842,0.0000017811,0.0000017785,0.0000017768, +0.0000017766,0.0000017772,0.0000017788,0.0000017810,0.0000017842, +0.0000017891,0.0000017955,0.0000018025,0.0000018088,0.0000018135, +0.0000018184,0.0000018257,0.0000018341,0.0000018401,0.0000018416, +0.0000018411,0.0000018403,0.0000018399,0.0000018392,0.0000018384, +0.0000018375,0.0000018364,0.0000018350,0.0000018332,0.0000018311, +0.0000018289,0.0000018265,0.0000018234,0.0000018199,0.0000018161, +0.0000018122,0.0000018084,0.0000018039,0.0000017990,0.0000017938, +0.0000017886,0.0000017837,0.0000017796,0.0000017762,0.0000017734, +0.0000017711,0.0000017696,0.0000017688,0.0000017688,0.0000017695, +0.0000017704,0.0000017713,0.0000017719,0.0000017720,0.0000017714, +0.0000017702,0.0000017683,0.0000017661,0.0000017640,0.0000017620, +0.0000017604,0.0000017594,0.0000017592,0.0000017592,0.0000017595, +0.0000017598,0.0000017601,0.0000017602,0.0000017600,0.0000017593, +0.0000017580,0.0000017562,0.0000017538,0.0000017512,0.0000017489, +0.0000017469,0.0000017453,0.0000017441,0.0000017434,0.0000017427, +0.0000017421,0.0000017412,0.0000017402,0.0000017389,0.0000017376, +0.0000017364,0.0000017353,0.0000017339,0.0000017326,0.0000017320, +0.0000017322,0.0000017335,0.0000017358,0.0000017390,0.0000017425, +0.0000017459,0.0000017489,0.0000017513,0.0000017533,0.0000017548, +0.0000017559,0.0000017567,0.0000017570,0.0000017571,0.0000017572, +0.0000017574,0.0000017575,0.0000017572,0.0000017569,0.0000017568, +0.0000017571,0.0000017576,0.0000017582,0.0000017588,0.0000017592, +0.0000017593,0.0000017593,0.0000017591,0.0000017588,0.0000017588, +0.0000017591,0.0000017592,0.0000017592,0.0000017592,0.0000017589, +0.0000017585,0.0000017578,0.0000017572,0.0000017565,0.0000017557, +0.0000017547,0.0000017537,0.0000017525,0.0000017514,0.0000017509, +0.0000017514,0.0000017527,0.0000017551,0.0000017584,0.0000017623, +0.0000017672,0.0000017728,0.0000017784,0.0000017841,0.0000017897, +0.0000017932,0.0000017934,0.0000017928,0.0000017923,0.0000017929, +0.0000017965,0.0000018034,0.0000018130,0.0000018225,0.0000018279, +0.0000018292,0.0000018263,0.0000018179,0.0000018057,0.0000017935, +0.0000017866,0.0000017857,0.0000017858,0.0000017856,0.0000017849, +0.0000017838,0.0000017818,0.0000017787,0.0000017759,0.0000017739, +0.0000017733,0.0000017750,0.0000017778,0.0000017806,0.0000017831, +0.0000017857,0.0000017887,0.0000017914,0.0000017924,0.0000017911, +0.0000017875,0.0000017826,0.0000017775,0.0000017723,0.0000017690, +0.0000017697,0.0000017753,0.0000017839,0.0000017950,0.0000018077, +0.0000018188,0.0000018252,0.0000018287,0.0000018337,0.0000018380, +0.0000018428,0.0000018572,0.0000018773,0.0000018937,0.0000019078, +0.0000019193,0.0000019308,0.0000019408,0.0000019421,0.0000019436, +0.0000019506,0.0000019584,0.0000019665,0.0000019746,0.0000019787, +0.0000019785,0.0000019775,0.0000019785,0.0000019803,0.0000019810, +0.0000019813,0.0000019817,0.0000019818,0.0000019815,0.0000019808, +0.0000019803,0.0000019800,0.0000019799,0.0000019804,0.0000019805, +0.0000019807,0.0000019807,0.0000019805,0.0000019805,0.0000019799, +0.0000019792,0.0000019785,0.0000019785,0.0000019786,0.0000019796, +0.0000019810,0.0000019839,0.0000019871,0.0000019900,0.0000019922, +0.0000019941,0.0000019950,0.0000019954,0.0000019953,0.0000019947, +0.0000019938,0.0000019927,0.0000019917,0.0000019908,0.0000019899, +0.0000019893,0.0000019894,0.0000019894,0.0000019893,0.0000019890, +0.0000019883,0.0000019873,0.0000019861,0.0000019846,0.0000019830, +0.0000019816,0.0000019804,0.0000019792,0.0000019780,0.0000019768, +0.0000019756,0.0000019747,0.0000019737,0.0000019727,0.0000019718, +0.0000019709,0.0000019704,0.0000019701,0.0000019697,0.0000019691, +0.0000019683,0.0000019679,0.0000019665,0.0000019648,0.0000019623, +0.0000019597,0.0000019567,0.0000019535,0.0000019500,0.0000019466, +0.0000019436,0.0000019416,0.0000019405,0.0000019399,0.0000019397, +0.0000019393,0.0000019386,0.0000019376,0.0000019364,0.0000019351, +0.0000019338,0.0000019323,0.0000019307,0.0000019290,0.0000019273, +0.0000019257,0.0000019243,0.0000019225,0.0000019201,0.0000019168, +0.0000019123,0.0000019066,0.0000018996,0.0000018915,0.0000018827, +0.0000018735,0.0000018640,0.0000018536,0.0000018427,0.0000018316, +0.0000018205,0.0000018098,0.0000017998,0.0000017905,0.0000017821, +0.0000017743,0.0000017674,0.0000017617,0.0000017567,0.0000017525, +0.0000017494,0.0000017474,0.0000017461,0.0000017456,0.0000017452, +0.0000017451,0.0000017452,0.0000017456,0.0000017461,0.0000017470, +0.0000017484,0.0000017502,0.0000017521,0.0000017541,0.0000017557, +0.0000017569,0.0000017585,0.0000017608,0.0000017626,0.0000017639, +0.0000017651,0.0000017659,0.0000017664,0.0000017668,0.0000017671, +0.0000017672,0.0000017672,0.0000017672,0.0000017672,0.0000017668, +0.0000017659,0.0000017647,0.0000017636,0.0000017623,0.0000017608, +0.0000017589,0.0000017570,0.0000017554,0.0000017539,0.0000017520, +0.0000017505,0.0000017492,0.0000017484,0.0000017479,0.0000017471, +0.0000017462,0.0000017453,0.0000017447,0.0000017445,0.0000017448, +0.0000017451,0.0000017460,0.0000017478,0.0000017507,0.0000017543, +0.0000017589,0.0000017640,0.0000017697,0.0000017756,0.0000017818, +0.0000017887,0.0000017959,0.0000018034,0.0000018108,0.0000018182, +0.0000018259,0.0000018341,0.0000018433,0.0000018528,0.0000018621, +0.0000018709,0.0000018793,0.0000018867,0.0000018927,0.0000018975, +0.0000019014,0.0000019042,0.0000019064,0.0000019083,0.0000019098, +0.0000019109,0.0000019118,0.0000019123,0.0000019125,0.0000019123, +0.0000019119,0.0000019117,0.0000019116,0.0000019120,0.0000019126, +0.0000019133,0.0000019143,0.0000019156,0.0000019170,0.0000019190, +0.0000019215,0.0000019246,0.0000019281,0.0000019317,0.0000019353, +0.0000019386,0.0000019414,0.0000019439,0.0000019463,0.0000019484, +0.0000019503,0.0000019516,0.0000019525,0.0000019530,0.0000019534, +0.0000019533,0.0000019535,0.0000019536,0.0000019535,0.0000019537, +0.0000019539,0.0000019542,0.0000019548,0.0000019556,0.0000019567, +0.0000019579,0.0000019593,0.0000019609,0.0000019632,0.0000019652, +0.0000019668,0.0000019680,0.0000019700,0.0000019722,0.0000019740, +0.0000019753,0.0000019759,0.0000019760,0.0000019753,0.0000019738, +0.0000019724,0.0000019716,0.0000019713,0.0000019716,0.0000019730, +0.0000019753,0.0000019778,0.0000019805,0.0000019834,0.0000019864, +0.0000019888,0.0000019906,0.0000019917,0.0000019924,0.0000019927, +0.0000019930,0.0000019938,0.0000019951,0.0000019967,0.0000019981, +0.0000019989,0.0000019987,0.0000019980,0.0000019962,0.0000019938, +0.0000019908,0.0000019874,0.0000019848,0.0000019832,0.0000019823, +0.0000019822,0.0000019833,0.0000019856,0.0000019879,0.0000019901, +0.0000019920,0.0000019941,0.0000019962,0.0000019972,0.0000019977, +0.0000019975,0.0000019982,0.0000019989,0.0000019998,0.0000020005, +0.0000020009,0.0000020013,0.0000020004,0.0000019994,0.0000019971, +0.0000019941,0.0000019904,0.0000019858,0.0000019816,0.0000019764, +0.0000019736,0.0000019743,0.0000019779,0.0000019838,0.0000019911, +0.0000019976,0.0000020029,0.0000020053,0.0000020060,0.0000020062, +0.0000020062,0.0000020068,0.0000020085,0.0000020117,0.0000020162, +0.0000020215,0.0000020273,0.0000020330,0.0000020369,0.0000020382, +0.0000020396,0.0000020415,0.0000020417,0.0000020413,0.0000020402, +0.0000020383,0.0000020354,0.0000020319,0.0000020276,0.0000020235, +0.0000020206,0.0000020186,0.0000020174,0.0000020156,0.0000020142, +0.0000020125,0.0000020113,0.0000020110,0.0000020113,0.0000020122, +0.0000020138,0.0000020167,0.0000020200,0.0000020225,0.0000020241, +0.0000020244,0.0000020239,0.0000020230,0.0000020220,0.0000020215, +0.0000020214,0.0000020220,0.0000020231,0.0000020243,0.0000020254, +0.0000020262,0.0000020267,0.0000020277,0.0000020284,0.0000020285, +0.0000020286,0.0000020284,0.0000020269,0.0000020241,0.0000020206, +0.0000020169,0.0000020126,0.0000020082,0.0000020046,0.0000020026, +0.0000020027,0.0000020041,0.0000020052,0.0000020070,0.0000020090, +0.0000020108,0.0000020118,0.0000020117,0.0000020111,0.0000020099, +0.0000020074,0.0000020037,0.0000020002,0.0000019967,0.0000019937, +0.0000019917,0.0000019901,0.0000019880,0.0000019860,0.0000019849, +0.0000019847,0.0000019849,0.0000019858,0.0000019874,0.0000019883, +0.0000019889,0.0000019893,0.0000019888,0.0000019874,0.0000019847, +0.0000019817,0.0000019782,0.0000019747,0.0000019714,0.0000019696, +0.0000019689,0.0000019685,0.0000019675,0.0000019665,0.0000019642, +0.0000019611,0.0000019579,0.0000019548,0.0000019517,0.0000019487, +0.0000019462,0.0000019442,0.0000019425,0.0000019414,0.0000019408, +0.0000019405,0.0000019399,0.0000019393,0.0000019387,0.0000019381, +0.0000019374,0.0000019366,0.0000019358,0.0000019353,0.0000019346, +0.0000019335,0.0000019321,0.0000019299,0.0000019271,0.0000019249, +0.0000019227,0.0000019208,0.0000019201,0.0000019187,0.0000019180, +0.0000019180,0.0000019190,0.0000019204,0.0000019223,0.0000019244, +0.0000019253,0.0000019259,0.0000019251,0.0000019235,0.0000019207, +0.0000019168,0.0000019119,0.0000019060,0.0000019001,0.0000018945, +0.0000018891,0.0000018845,0.0000018808,0.0000018768,0.0000018743, +0.0000018742,0.0000018748,0.0000018775,0.0000018814,0.0000018858, +0.0000018895,0.0000018916,0.0000018929,0.0000018935,0.0000018940, +0.0000018953,0.0000018980,0.0000019023,0.0000019082,0.0000019140, +0.0000019187,0.0000019207,0.0000019184,0.0000019161,0.0000019115, +0.0000019065,0.0000019018,0.0000018977,0.0000018948,0.0000018937, +0.0000018941,0.0000018950,0.0000018957,0.0000018961,0.0000018957, +0.0000018955,0.0000018967,0.0000018984,0.0000019000,0.0000019020, +0.0000019044,0.0000019067,0.0000019088,0.0000019103,0.0000019110, +0.0000019108,0.0000019114,0.0000019122,0.0000019127,0.0000019137, +0.0000019161,0.0000019194,0.0000019223,0.0000019248,0.0000019262, +0.0000019272,0.0000019277,0.0000019289,0.0000019294,0.0000019296, +0.0000019304,0.0000019305,0.0000019286,0.0000019262,0.0000019228, +0.0000019188,0.0000019152,0.0000019130,0.0000019130,0.0000019131, +0.0000019130,0.0000019123,0.0000019118,0.0000019112,0.0000019100, +0.0000019092,0.0000019086,0.0000019070,0.0000019046,0.0000019027, +0.0000019016,0.0000019014,0.0000019016,0.0000019023,0.0000019035, +0.0000019051,0.0000019075,0.0000019106,0.0000019143,0.0000019169, +0.0000019193,0.0000019204,0.0000019207,0.0000019193,0.0000019163, +0.0000019126,0.0000019080,0.0000019035,0.0000019007,0.0000018995, +0.0000018993,0.0000018991,0.0000018974,0.0000018941,0.0000018903, +0.0000018866,0.0000018826,0.0000018788,0.0000018748,0.0000018700, +0.0000018662,0.0000018642,0.0000018617,0.0000018567,0.0000018496, +0.0000018426,0.0000018360,0.0000018321,0.0000018333,0.0000018359, +0.0000018371,0.0000018371,0.0000018363,0.0000018359,0.0000018337, +0.0000018313,0.0000018306,0.0000018321,0.0000018353,0.0000018397, +0.0000018461,0.0000018535,0.0000018594,0.0000018626,0.0000018639, +0.0000018627,0.0000018603,0.0000018577,0.0000018540,0.0000018505, +0.0000018458,0.0000018388,0.0000018335,0.0000018318,0.0000018328, +0.0000018341,0.0000018366,0.0000018399,0.0000018418,0.0000018406, +0.0000018386,0.0000018369,0.0000018359,0.0000018353,0.0000018349, +0.0000018337,0.0000018322,0.0000018308,0.0000018292,0.0000018271, +0.0000018252,0.0000018237,0.0000018222,0.0000018204,0.0000018185, +0.0000018172,0.0000018164,0.0000018174,0.0000018193,0.0000018212, +0.0000018227,0.0000018236,0.0000018236,0.0000018225,0.0000018211, +0.0000018195,0.0000018178,0.0000018158,0.0000018131,0.0000018100, +0.0000018072,0.0000018049,0.0000018030,0.0000018012,0.0000017990, +0.0000017967,0.0000017950,0.0000017943,0.0000017943,0.0000017944, +0.0000017950,0.0000017958,0.0000017966,0.0000017973,0.0000017977, +0.0000017982,0.0000017987,0.0000017991,0.0000017992,0.0000017996, +0.0000017999,0.0000018001,0.0000018007,0.0000018016,0.0000018038, +0.0000018073,0.0000018117,0.0000018169,0.0000018224,0.0000018277, +0.0000018326,0.0000018376,0.0000018425,0.0000018477,0.0000018532, +0.0000018590,0.0000018648,0.0000018702,0.0000018752,0.0000018798, +0.0000018844,0.0000018892,0.0000018954,0.0000019038,0.0000019153, +0.0000019285,0.0000019412,0.0000019509,0.0000019569,0.0000019587, +0.0000019587,0.0000019568,0.0000019527,0.0000019480,0.0000019426, +0.0000019364,0.0000019293,0.0000019216,0.0000019143,0.0000019083, +0.0000019042,0.0000019016,0.0000019006,0.0000019001,0.0000018987, +0.0000018964,0.0000018933,0.0000018902,0.0000018867,0.0000018826, +0.0000018785,0.0000018747,0.0000018712,0.0000018676,0.0000018640, +0.0000018606,0.0000018584,0.0000018578,0.0000018580,0.0000018590, +0.0000018603,0.0000018613,0.0000018616,0.0000018617,0.0000018623, +0.0000018638,0.0000018653,0.0000018653,0.0000018634,0.0000018605, +0.0000018575,0.0000018548,0.0000018533,0.0000018527,0.0000018523, +0.0000018512,0.0000018492,0.0000018468,0.0000018441,0.0000018408, +0.0000018377,0.0000018355,0.0000018345,0.0000018346,0.0000018356, +0.0000018370,0.0000018386,0.0000018399,0.0000018409,0.0000018422, +0.0000018437,0.0000018453,0.0000018467,0.0000018473,0.0000018481, +0.0000018492,0.0000018493,0.0000018482,0.0000018452,0.0000018394, +0.0000018314,0.0000018232,0.0000018173,0.0000018151,0.0000018158, +0.0000018170,0.0000018193,0.0000018226,0.0000018269,0.0000018317, +0.0000018377,0.0000018447,0.0000018516,0.0000018576,0.0000018623, +0.0000018658,0.0000018678,0.0000018685,0.0000018684,0.0000018679, +0.0000018670,0.0000018660,0.0000018648,0.0000018633,0.0000018615, +0.0000018596,0.0000018576,0.0000018556,0.0000018534,0.0000018510, +0.0000018487,0.0000018469,0.0000018457,0.0000018451,0.0000018450, +0.0000018455,0.0000018466,0.0000018480,0.0000018498,0.0000018512, +0.0000018537,0.0000018552,0.0000018556,0.0000018554,0.0000018548, +0.0000018537,0.0000018525,0.0000018516,0.0000018509,0.0000018505, +0.0000018503,0.0000018497,0.0000018486,0.0000018471,0.0000018454, +0.0000018441,0.0000018432,0.0000018429,0.0000018431,0.0000018438, +0.0000018456,0.0000018484,0.0000018507,0.0000018528,0.0000018528, +0.0000018516,0.0000018488,0.0000018453,0.0000018422,0.0000018401, +0.0000018395,0.0000018398,0.0000018417,0.0000018457,0.0000018509, +0.0000018549,0.0000018562,0.0000018554,0.0000018556,0.0000018612, +0.0000018659,0.0000018659,0.0000018758,0.0000018825,0.0000018746, +0.0000018723,0.0000018822,0.0000018902,0.0000018937,0.0000018931, +0.0000018833,0.0000018739,0.0000018720,0.0000018754,0.0000018881, +0.0000018968,0.0000018935,0.0000018860,0.0000018796,0.0000018738, +0.0000018695,0.0000018686,0.0000018713,0.0000018775,0.0000018833, +0.0000018859,0.0000018861,0.0000018860,0.0000018865,0.0000018883, +0.0000018906,0.0000018930,0.0000018950,0.0000018966,0.0000018978, +0.0000018977,0.0000018970,0.0000018976,0.0000018991,0.0000018995, +0.0000018891,0.0000018542,0.0000018078,0.0000017801,0.0000017738, +0.0000017724,0.0000017707,0.0000017702,0.0000017700,0.0000017696, +0.0000017695,0.0000017702,0.0000017723,0.0000017750,0.0000017778, +0.0000017810,0.0000017856,0.0000017916,0.0000017980,0.0000018037, +0.0000018087,0.0000018130,0.0000018167,0.0000018193,0.0000018209, +0.0000018213,0.0000018206,0.0000018191,0.0000018173,0.0000018156, +0.0000018139,0.0000018128,0.0000018126,0.0000018133,0.0000018143, +0.0000018151,0.0000018153,0.0000018149,0.0000018146,0.0000018143, +0.0000018145,0.0000018158,0.0000018179,0.0000018202,0.0000018224, +0.0000018241,0.0000018254,0.0000018268,0.0000018296,0.0000018352, +0.0000018445,0.0000018553,0.0000018614,0.0000018579,0.0000018470, +0.0000018354,0.0000018296,0.0000018281,0.0000018296,0.0000018319, +0.0000018328,0.0000018319,0.0000018285,0.0000018240,0.0000018206, +0.0000018182,0.0000018169,0.0000018154,0.0000018130,0.0000018102, +0.0000018074,0.0000018052,0.0000018039,0.0000018034,0.0000018035, +0.0000018040,0.0000018053,0.0000018070,0.0000018086,0.0000018103, +0.0000018117,0.0000018128,0.0000018135,0.0000018138,0.0000018135, +0.0000018126,0.0000018115,0.0000018100,0.0000018084,0.0000018070, +0.0000018059,0.0000018047,0.0000018034,0.0000018016,0.0000017999, +0.0000017992,0.0000017996,0.0000018010,0.0000018035,0.0000018067, +0.0000018100,0.0000018132,0.0000018160,0.0000018179,0.0000018195, +0.0000018211,0.0000018232,0.0000018253,0.0000018270,0.0000018285, +0.0000018298,0.0000018304,0.0000018309,0.0000018311,0.0000018314, +0.0000018317,0.0000018324,0.0000018336,0.0000018348,0.0000018362, +0.0000018378,0.0000018397,0.0000018419,0.0000018439,0.0000018458, +0.0000018478,0.0000018465,0.0000018484,0.0000018504,0.0000018520, +0.0000018535,0.0000018548,0.0000018562,0.0000018578,0.0000018593, +0.0000018609,0.0000018624,0.0000018638,0.0000018647,0.0000018652, +0.0000018654,0.0000018651,0.0000018646,0.0000018637,0.0000018623, +0.0000018603,0.0000018572,0.0000018530,0.0000018487,0.0000018449, +0.0000018410,0.0000018378,0.0000018348,0.0000018319,0.0000018292, +0.0000018268,0.0000018246,0.0000018225,0.0000018210,0.0000018202, +0.0000018198,0.0000018193,0.0000018184,0.0000018170,0.0000018145, +0.0000018111,0.0000018068,0.0000018021,0.0000017970,0.0000017917, +0.0000017868,0.0000017834,0.0000017815,0.0000017801,0.0000017787, +0.0000017771,0.0000017751,0.0000017732,0.0000017723,0.0000017723, +0.0000017744,0.0000017777,0.0000017821,0.0000017862,0.0000017899, +0.0000017928,0.0000017956,0.0000017993,0.0000018047,0.0000018119, +0.0000018208,0.0000018297,0.0000018370,0.0000018399,0.0000018403, +0.0000018394,0.0000018375,0.0000018359,0.0000018349,0.0000018343, +0.0000018341,0.0000018351,0.0000018381,0.0000018420,0.0000018452, +0.0000018463,0.0000018454,0.0000018427,0.0000018389,0.0000018348, +0.0000018306,0.0000018263,0.0000018208,0.0000018135,0.0000018051, +0.0000017972,0.0000017911,0.0000017873,0.0000017852,0.0000017839, +0.0000017826,0.0000017815,0.0000017806,0.0000017799,0.0000017795, +0.0000017796,0.0000017799,0.0000017802,0.0000017811,0.0000017838, +0.0000017889,0.0000017959,0.0000018032,0.0000018089,0.0000018138, +0.0000018199,0.0000018277,0.0000018344,0.0000018372,0.0000018373, +0.0000018371,0.0000018371,0.0000018370,0.0000018362,0.0000018346, +0.0000018326,0.0000018302,0.0000018276,0.0000018251,0.0000018225, +0.0000018194,0.0000018155,0.0000018112,0.0000018069,0.0000018025, +0.0000017981,0.0000017933,0.0000017882,0.0000017830,0.0000017780, +0.0000017733,0.0000017691,0.0000017655,0.0000017624,0.0000017602, +0.0000017590,0.0000017587,0.0000017592,0.0000017602,0.0000017615, +0.0000017626,0.0000017633,0.0000017635,0.0000017633,0.0000017626, +0.0000017617,0.0000017607,0.0000017599,0.0000017593,0.0000017590, +0.0000017590,0.0000017593,0.0000017598,0.0000017603,0.0000017608, +0.0000017608,0.0000017600,0.0000017584,0.0000017559,0.0000017528, +0.0000017497,0.0000017473,0.0000017458,0.0000017448,0.0000017440, +0.0000017434,0.0000017428,0.0000017420,0.0000017410,0.0000017395, +0.0000017374,0.0000017349,0.0000017324,0.0000017302,0.0000017290, +0.0000017287,0.0000017290,0.0000017299,0.0000017315,0.0000017336, +0.0000017362,0.0000017390,0.0000017421,0.0000017450,0.0000017476, +0.0000017498,0.0000017515,0.0000017531,0.0000017544,0.0000017553, +0.0000017557,0.0000017560,0.0000017563,0.0000017567,0.0000017571, +0.0000017569,0.0000017566,0.0000017561,0.0000017558,0.0000017559, +0.0000017564,0.0000017572,0.0000017580,0.0000017588,0.0000017592, +0.0000017593,0.0000017598,0.0000017602,0.0000017605,0.0000017605, +0.0000017605,0.0000017604,0.0000017600,0.0000017595,0.0000017589, +0.0000017584,0.0000017576,0.0000017566,0.0000017554,0.0000017540, +0.0000017523,0.0000017505,0.0000017495,0.0000017487,0.0000017487, +0.0000017487,0.0000017492,0.0000017495,0.0000017507,0.0000017529, +0.0000017561,0.0000017608,0.0000017673,0.0000017750,0.0000017827, +0.0000017890,0.0000017915,0.0000017912,0.0000017915,0.0000017947, +0.0000018018,0.0000018119,0.0000018223,0.0000018292,0.0000018324, +0.0000018307,0.0000018225,0.0000018090,0.0000017950,0.0000017859, +0.0000017838,0.0000017831,0.0000017825,0.0000017811,0.0000017792, +0.0000017774,0.0000017755,0.0000017734,0.0000017729,0.0000017746, +0.0000017774,0.0000017803,0.0000017830,0.0000017854,0.0000017876, +0.0000017898,0.0000017910,0.0000017900,0.0000017855,0.0000017785, +0.0000017700,0.0000017615,0.0000017566,0.0000017575,0.0000017638, +0.0000017728,0.0000017846,0.0000017997,0.0000018145,0.0000018231, +0.0000018261,0.0000018304,0.0000018353,0.0000018410,0.0000018561, +0.0000018760,0.0000018924,0.0000019061,0.0000019174,0.0000019289, +0.0000019381,0.0000019387,0.0000019401,0.0000019476,0.0000019563, +0.0000019636,0.0000019703,0.0000019739,0.0000019741,0.0000019741, +0.0000019753,0.0000019767,0.0000019772,0.0000019772,0.0000019774, +0.0000019776,0.0000019771,0.0000019765,0.0000019761,0.0000019761, +0.0000019769,0.0000019782,0.0000019791,0.0000019798,0.0000019803, +0.0000019807,0.0000019809,0.0000019813,0.0000019810,0.0000019804, +0.0000019800,0.0000019797,0.0000019798,0.0000019803,0.0000019810, +0.0000019822,0.0000019836,0.0000019854,0.0000019870,0.0000019883, +0.0000019891,0.0000019896,0.0000019895,0.0000019890,0.0000019884, +0.0000019879,0.0000019874,0.0000019872,0.0000019875,0.0000019876, +0.0000019879,0.0000019880,0.0000019879,0.0000019872,0.0000019863, +0.0000019851,0.0000019837,0.0000019824,0.0000019812,0.0000019800, +0.0000019787,0.0000019776,0.0000019766,0.0000019757,0.0000019748, +0.0000019739,0.0000019729,0.0000019718,0.0000019708,0.0000019700, +0.0000019690,0.0000019679,0.0000019666,0.0000019648,0.0000019622, +0.0000019589,0.0000019550,0.0000019511,0.0000019475,0.0000019443, +0.0000019413,0.0000019390,0.0000019372,0.0000019364,0.0000019364, +0.0000019363,0.0000019357,0.0000019343,0.0000019323,0.0000019299, +0.0000019276,0.0000019257,0.0000019241,0.0000019225,0.0000019207, +0.0000019186,0.0000019159,0.0000019123,0.0000019078,0.0000019021, +0.0000018948,0.0000018859,0.0000018756,0.0000018640,0.0000018515, +0.0000018386,0.0000018258,0.0000018136,0.0000018026,0.0000017921, +0.0000017824,0.0000017738,0.0000017661,0.0000017596,0.0000017545, +0.0000017504,0.0000017470,0.0000017442,0.0000017417,0.0000017402, +0.0000017392,0.0000017384,0.0000017382,0.0000017385,0.0000017393, +0.0000017407,0.0000017421,0.0000017433,0.0000017442,0.0000017448, +0.0000017452,0.0000017457,0.0000017464,0.0000017472,0.0000017480, +0.0000017489,0.0000017496,0.0000017500,0.0000017506,0.0000017514, +0.0000017524,0.0000017532,0.0000017540,0.0000017546,0.0000017550, +0.0000017553,0.0000017557,0.0000017560,0.0000017562,0.0000017565, +0.0000017568,0.0000017568,0.0000017564,0.0000017559,0.0000017553, +0.0000017545,0.0000017538,0.0000017525,0.0000017508,0.0000017493, +0.0000017482,0.0000017471,0.0000017461,0.0000017450,0.0000017441, +0.0000017433,0.0000017425,0.0000017421,0.0000017417,0.0000017414, +0.0000017416,0.0000017422,0.0000017430,0.0000017440,0.0000017454, +0.0000017468,0.0000017484,0.0000017509,0.0000017539,0.0000017563, +0.0000017573,0.0000017584,0.0000017607,0.0000017636,0.0000017655, +0.0000017669,0.0000017695,0.0000017734,0.0000017777,0.0000017828, +0.0000017903,0.0000017996,0.0000018096,0.0000018204,0.0000018321, +0.0000018443,0.0000018559,0.0000018665,0.0000018761,0.0000018848, +0.0000018924,0.0000018982,0.0000019026,0.0000019060,0.0000019082, +0.0000019094,0.0000019098,0.0000019098,0.0000019096,0.0000019097, +0.0000019103,0.0000019111,0.0000019118,0.0000019124,0.0000019129, +0.0000019133,0.0000019138,0.0000019146,0.0000019157,0.0000019173, +0.0000019194,0.0000019221,0.0000019250,0.0000019280,0.0000019314, +0.0000019349,0.0000019385,0.0000019420,0.0000019451,0.0000019475, +0.0000019491,0.0000019503,0.0000019509,0.0000019517,0.0000019523, +0.0000019525,0.0000019526,0.0000019527,0.0000019526,0.0000019525, +0.0000019525,0.0000019524,0.0000019525,0.0000019530,0.0000019540, +0.0000019551,0.0000019564,0.0000019579,0.0000019598,0.0000019618, +0.0000019642,0.0000019668,0.0000019694,0.0000019714,0.0000019729, +0.0000019739,0.0000019736,0.0000019720,0.0000019703,0.0000019690, +0.0000019685,0.0000019694,0.0000019710,0.0000019733,0.0000019762, +0.0000019790,0.0000019819,0.0000019846,0.0000019873,0.0000019894, +0.0000019911,0.0000019920,0.0000019925,0.0000019931,0.0000019936, +0.0000019947,0.0000019960,0.0000019970,0.0000019977,0.0000019974, +0.0000019962,0.0000019941,0.0000019913,0.0000019885,0.0000019860, +0.0000019844,0.0000019831,0.0000019823,0.0000019822,0.0000019835, +0.0000019855,0.0000019877,0.0000019902,0.0000019929,0.0000019951, +0.0000019967,0.0000019977,0.0000019986,0.0000019995,0.0000019998, +0.0000020000,0.0000020001,0.0000020000,0.0000019998,0.0000019994, +0.0000019987,0.0000019973,0.0000019957,0.0000019936,0.0000019902, +0.0000019861,0.0000019813,0.0000019771,0.0000019749,0.0000019754, +0.0000019758,0.0000019780,0.0000019817,0.0000019854,0.0000019899, +0.0000019950,0.0000019995,0.0000020028,0.0000020038,0.0000020042, +0.0000020046,0.0000020058,0.0000020082,0.0000020121,0.0000020173, +0.0000020230,0.0000020285,0.0000020339,0.0000020376,0.0000020408, +0.0000020417,0.0000020415,0.0000020415,0.0000020399,0.0000020372, +0.0000020337,0.0000020299,0.0000020267,0.0000020241,0.0000020213, +0.0000020181,0.0000020150,0.0000020121,0.0000020094,0.0000020078, +0.0000020074,0.0000020073,0.0000020075,0.0000020094,0.0000020121, +0.0000020142,0.0000020154,0.0000020160,0.0000020158,0.0000020151, +0.0000020142,0.0000020132,0.0000020125,0.0000020125,0.0000020127, +0.0000020135,0.0000020142,0.0000020142,0.0000020144,0.0000020149, +0.0000020154,0.0000020160,0.0000020159,0.0000020147,0.0000020128, +0.0000020103,0.0000020069,0.0000020039,0.0000020007,0.0000019984, +0.0000019975,0.0000019979,0.0000019988,0.0000019995,0.0000020003, +0.0000020013,0.0000020021,0.0000020026,0.0000020021,0.0000020007, +0.0000019986,0.0000019959,0.0000019923,0.0000019882,0.0000019836, +0.0000019798,0.0000019774,0.0000019758,0.0000019749,0.0000019741, +0.0000019733,0.0000019723,0.0000019712,0.0000019707,0.0000019719, +0.0000019736,0.0000019753,0.0000019766,0.0000019770,0.0000019772, +0.0000019765,0.0000019752,0.0000019736,0.0000019714,0.0000019685, +0.0000019657,0.0000019633,0.0000019625,0.0000019623,0.0000019624, +0.0000019625,0.0000019619,0.0000019603,0.0000019597,0.0000019575, +0.0000019543,0.0000019512,0.0000019486,0.0000019462,0.0000019443, +0.0000019428,0.0000019419,0.0000019411,0.0000019405,0.0000019398, +0.0000019393,0.0000019391,0.0000019392,0.0000019396,0.0000019396, +0.0000019404,0.0000019409,0.0000019415,0.0000019414,0.0000019400, +0.0000019376,0.0000019347,0.0000019313,0.0000019276,0.0000019236, +0.0000019195,0.0000019163,0.0000019154,0.0000019148,0.0000019154, +0.0000019172,0.0000019201,0.0000019224,0.0000019241,0.0000019255, +0.0000019249,0.0000019249,0.0000019235,0.0000019209,0.0000019179, +0.0000019142,0.0000019101,0.0000019049,0.0000018989,0.0000018921, +0.0000018853,0.0000018801,0.0000018766,0.0000018757,0.0000018770, +0.0000018795,0.0000018836,0.0000018873,0.0000018900,0.0000018916, +0.0000018918,0.0000018909,0.0000018903,0.0000018905,0.0000018925, +0.0000018954,0.0000019000,0.0000019049,0.0000019089,0.0000019116, +0.0000019125,0.0000019107,0.0000019081,0.0000019037,0.0000018982, +0.0000018942,0.0000018922,0.0000018914,0.0000018911,0.0000018914, +0.0000018911,0.0000018907,0.0000018910,0.0000018916,0.0000018921, +0.0000018927,0.0000018934,0.0000018941,0.0000018951,0.0000018965, +0.0000018986,0.0000019021,0.0000019065,0.0000019114,0.0000019124, +0.0000019139,0.0000019140,0.0000019143,0.0000019158,0.0000019187, +0.0000019219,0.0000019247,0.0000019263,0.0000019265,0.0000019253, +0.0000019239,0.0000019235,0.0000019230,0.0000019225,0.0000019220, +0.0000019211,0.0000019178,0.0000019153,0.0000019124,0.0000019107, +0.0000019097,0.0000019089,0.0000019081,0.0000019086,0.0000019095, +0.0000019101,0.0000019114,0.0000019129,0.0000019131,0.0000019121, +0.0000019104,0.0000019089,0.0000019076,0.0000019070,0.0000019070, +0.0000019078,0.0000019084,0.0000019088,0.0000019106,0.0000019124, +0.0000019137,0.0000019142,0.0000019137,0.0000019123,0.0000019092, +0.0000019056,0.0000019017,0.0000018975,0.0000018935,0.0000018907, +0.0000018899,0.0000018911,0.0000018929,0.0000018934,0.0000018911, +0.0000018868,0.0000018818,0.0000018766,0.0000018720,0.0000018681, +0.0000018648,0.0000018621,0.0000018601,0.0000018573,0.0000018522, +0.0000018458,0.0000018388,0.0000018310,0.0000018270,0.0000018273, +0.0000018289,0.0000018295,0.0000018297,0.0000018298,0.0000018303, +0.0000018299,0.0000018288,0.0000018288,0.0000018303,0.0000018334, +0.0000018378,0.0000018441,0.0000018512,0.0000018576,0.0000018624, +0.0000018640,0.0000018640,0.0000018629,0.0000018594,0.0000018552, +0.0000018518,0.0000018469,0.0000018406,0.0000018354,0.0000018326, +0.0000018327,0.0000018325,0.0000018338,0.0000018369,0.0000018391, +0.0000018384,0.0000018365,0.0000018349,0.0000018340,0.0000018337, +0.0000018332,0.0000018317,0.0000018301,0.0000018291,0.0000018277, +0.0000018258,0.0000018241,0.0000018229,0.0000018219,0.0000018209, +0.0000018194,0.0000018176,0.0000018161,0.0000018153,0.0000018156, +0.0000018166,0.0000018178,0.0000018189,0.0000018196,0.0000018197, +0.0000018193,0.0000018187,0.0000018177,0.0000018169,0.0000018154, +0.0000018137,0.0000018119,0.0000018101,0.0000018083,0.0000018062, +0.0000018037,0.0000018012,0.0000017989,0.0000017971,0.0000017956, +0.0000017947,0.0000017947,0.0000017948,0.0000017951,0.0000017954, +0.0000017957,0.0000017961,0.0000017965,0.0000017971,0.0000017982, +0.0000017993,0.0000018001,0.0000018003,0.0000018000,0.0000017991, +0.0000017994,0.0000018004,0.0000018028,0.0000018069,0.0000018118, +0.0000018177,0.0000018235,0.0000018289,0.0000018341,0.0000018393, +0.0000018445,0.0000018499,0.0000018556,0.0000018612,0.0000018663, +0.0000018706,0.0000018743,0.0000018776,0.0000018813,0.0000018870, +0.0000018960,0.0000019083,0.0000019229,0.0000019373,0.0000019498, +0.0000019576,0.0000019598,0.0000019607,0.0000019579,0.0000019532, +0.0000019479,0.0000019420,0.0000019347,0.0000019262,0.0000019172, +0.0000019090,0.0000019028,0.0000018993,0.0000018975,0.0000018970, +0.0000018965,0.0000018948,0.0000018923,0.0000018895,0.0000018869, +0.0000018844,0.0000018817,0.0000018782,0.0000018743,0.0000018703, +0.0000018667,0.0000018633,0.0000018602,0.0000018580,0.0000018575, +0.0000018578,0.0000018586,0.0000018594,0.0000018598,0.0000018601, +0.0000018609,0.0000018626,0.0000018649,0.0000018664,0.0000018662, +0.0000018642,0.0000018612,0.0000018576,0.0000018540,0.0000018513, +0.0000018497,0.0000018486,0.0000018477,0.0000018463,0.0000018439, +0.0000018407,0.0000018378,0.0000018358,0.0000018347,0.0000018349, +0.0000018360,0.0000018377,0.0000018394,0.0000018408,0.0000018422, +0.0000018438,0.0000018456,0.0000018469,0.0000018475,0.0000018477, +0.0000018481,0.0000018484,0.0000018480,0.0000018463,0.0000018440, +0.0000018391,0.0000018321,0.0000018247,0.0000018193,0.0000018168, +0.0000018167,0.0000018179,0.0000018202,0.0000018231,0.0000018259, +0.0000018292,0.0000018336,0.0000018391,0.0000018454,0.0000018518, +0.0000018573,0.0000018618,0.0000018649,0.0000018666,0.0000018671, +0.0000018665,0.0000018655,0.0000018644,0.0000018631,0.0000018617, +0.0000018606,0.0000018596,0.0000018585,0.0000018571,0.0000018557, +0.0000018543,0.0000018530,0.0000018521,0.0000018514,0.0000018510, +0.0000018508,0.0000018507,0.0000018511,0.0000018510,0.0000018506, +0.0000018502,0.0000018497,0.0000018493,0.0000018489,0.0000018487, +0.0000018484,0.0000018481,0.0000018478,0.0000018477,0.0000018476, +0.0000018471,0.0000018463,0.0000018452,0.0000018440,0.0000018433, +0.0000018431,0.0000018436,0.0000018444,0.0000018454,0.0000018466, +0.0000018482,0.0000018491,0.0000018486,0.0000018466,0.0000018441, +0.0000018414,0.0000018390,0.0000018376,0.0000018372,0.0000018384, +0.0000018404,0.0000018437,0.0000018486,0.0000018537,0.0000018569, +0.0000018574,0.0000018557,0.0000018541,0.0000018571,0.0000018640, +0.0000018657,0.0000018729,0.0000018834,0.0000018778,0.0000018720, +0.0000018804,0.0000018884,0.0000018882,0.0000018916,0.0000018885, +0.0000018767,0.0000018709,0.0000018714,0.0000018730,0.0000018816, +0.0000018943,0.0000018966,0.0000018911,0.0000018848,0.0000018812, +0.0000018792,0.0000018785,0.0000018795,0.0000018823,0.0000018854, +0.0000018869,0.0000018872,0.0000018871,0.0000018875,0.0000018889, +0.0000018908,0.0000018932,0.0000018955,0.0000018968,0.0000018968, +0.0000018966,0.0000018975,0.0000018986,0.0000018965,0.0000018726, +0.0000018247,0.0000017842,0.0000017705,0.0000017687,0.0000017667, +0.0000017658,0.0000017662,0.0000017664,0.0000017655,0.0000017646, +0.0000017647,0.0000017663,0.0000017689,0.0000017716,0.0000017746, +0.0000017785,0.0000017833,0.0000017885,0.0000017933,0.0000017974, +0.0000018006,0.0000018029,0.0000018042,0.0000018049,0.0000018051, +0.0000018048,0.0000018044,0.0000018040,0.0000018039,0.0000018038, +0.0000018037,0.0000018037,0.0000018040,0.0000018042,0.0000018042, +0.0000018040,0.0000018038,0.0000018039,0.0000018044,0.0000018052, +0.0000018066,0.0000018085,0.0000018104,0.0000018123,0.0000018143, +0.0000018161,0.0000018176,0.0000018190,0.0000018210,0.0000018247, +0.0000018326,0.0000018446,0.0000018546,0.0000018562,0.0000018511, +0.0000018402,0.0000018311,0.0000018277,0.0000018275,0.0000018300, +0.0000018319,0.0000018324,0.0000018310,0.0000018276,0.0000018237, +0.0000018210,0.0000018192,0.0000018180,0.0000018165,0.0000018145, +0.0000018125,0.0000018108,0.0000018094,0.0000018083,0.0000018073, +0.0000018071,0.0000018077,0.0000018088,0.0000018104,0.0000018121, +0.0000018138,0.0000018154,0.0000018168,0.0000018179,0.0000018185, +0.0000018185,0.0000018178,0.0000018171,0.0000018166,0.0000018161, +0.0000018158,0.0000018153,0.0000018145,0.0000018131,0.0000018122, +0.0000018119,0.0000018123,0.0000018135,0.0000018156,0.0000018181, +0.0000018204,0.0000018221,0.0000018231,0.0000018236,0.0000018240, +0.0000018249,0.0000018264,0.0000018279,0.0000018291,0.0000018303, +0.0000018309,0.0000018312,0.0000018312,0.0000018312,0.0000018308, +0.0000018307,0.0000018314,0.0000018326,0.0000018337,0.0000018351, +0.0000018368,0.0000018387,0.0000018407,0.0000018427,0.0000018446, +0.0000018409,0.0000018427,0.0000018446,0.0000018464,0.0000018480, +0.0000018497,0.0000018513,0.0000018531,0.0000018548,0.0000018566, +0.0000018586,0.0000018606,0.0000018624,0.0000018641,0.0000018649, +0.0000018649,0.0000018646,0.0000018640,0.0000018633,0.0000018621, +0.0000018607,0.0000018588,0.0000018562,0.0000018534,0.0000018503, +0.0000018470,0.0000018438,0.0000018404,0.0000018369,0.0000018333, +0.0000018301,0.0000018271,0.0000018244,0.0000018225,0.0000018213, +0.0000018205,0.0000018203,0.0000018202,0.0000018195,0.0000018177, +0.0000018152,0.0000018119,0.0000018079,0.0000018030,0.0000017976, +0.0000017923,0.0000017877,0.0000017841,0.0000017816,0.0000017797, +0.0000017782,0.0000017764,0.0000017746,0.0000017734,0.0000017737, +0.0000017746,0.0000017771,0.0000017807,0.0000017849,0.0000017887, +0.0000017915,0.0000017936,0.0000017953,0.0000017975,0.0000018014, +0.0000018080,0.0000018165,0.0000018261,0.0000018346,0.0000018396, +0.0000018396,0.0000018388,0.0000018370,0.0000018356,0.0000018345, +0.0000018339,0.0000018341,0.0000018363,0.0000018401,0.0000018441, +0.0000018457,0.0000018454,0.0000018426,0.0000018381,0.0000018333, +0.0000018285,0.0000018232,0.0000018170,0.0000018094,0.0000018011, +0.0000017934,0.0000017874,0.0000017837,0.0000017821,0.0000017819, +0.0000017819,0.0000017822,0.0000017825,0.0000017825,0.0000017823, +0.0000017819,0.0000017813,0.0000017805,0.0000017794,0.0000017800, +0.0000017835,0.0000017899,0.0000017974,0.0000018041,0.0000018092, +0.0000018143,0.0000018210,0.0000018278,0.0000018322,0.0000018337, +0.0000018344,0.0000018349,0.0000018347,0.0000018333,0.0000018310, +0.0000018282,0.0000018253,0.0000018226,0.0000018199,0.0000018167, +0.0000018129,0.0000018087,0.0000018043,0.0000017997,0.0000017950, +0.0000017906,0.0000017863,0.0000017816,0.0000017765,0.0000017714, +0.0000017666,0.0000017623,0.0000017585,0.0000017559,0.0000017545, +0.0000017540,0.0000017541,0.0000017547,0.0000017555,0.0000017564, +0.0000017573,0.0000017580,0.0000017587,0.0000017590,0.0000017588, +0.0000017583,0.0000017580,0.0000017579,0.0000017580,0.0000017582, +0.0000017587,0.0000017593,0.0000017596,0.0000017596,0.0000017588, +0.0000017573,0.0000017555,0.0000017532,0.0000017509,0.0000017495, +0.0000017491,0.0000017490,0.0000017489,0.0000017488,0.0000017485, +0.0000017478,0.0000017468,0.0000017453,0.0000017431,0.0000017404, +0.0000017371,0.0000017335,0.0000017300,0.0000017274,0.0000017257, +0.0000017250,0.0000017255,0.0000017274,0.0000017304,0.0000017336, +0.0000017371,0.0000017408,0.0000017442,0.0000017470,0.0000017493, +0.0000017510,0.0000017525,0.0000017536,0.0000017544,0.0000017546, +0.0000017548,0.0000017551,0.0000017557,0.0000017562,0.0000017565, +0.0000017563,0.0000017557,0.0000017551,0.0000017551,0.0000017553, +0.0000017559,0.0000017567,0.0000017575,0.0000017584,0.0000017594, +0.0000017606,0.0000017618,0.0000017626,0.0000017631,0.0000017635, +0.0000017636,0.0000017634,0.0000017629,0.0000017624,0.0000017616, +0.0000017607,0.0000017595,0.0000017582,0.0000017567,0.0000017549, +0.0000017530,0.0000017517,0.0000017512,0.0000017508,0.0000017503, +0.0000017493,0.0000017486,0.0000017475,0.0000017466,0.0000017457, +0.0000017458,0.0000017478,0.0000017524,0.0000017597,0.0000017693, +0.0000017791,0.0000017870,0.0000017911,0.0000017930,0.0000017964, +0.0000018028,0.0000018122,0.0000018225,0.0000018312,0.0000018352, +0.0000018336,0.0000018248,0.0000018102,0.0000017946,0.0000017842, +0.0000017814,0.0000017801,0.0000017785,0.0000017771,0.0000017761, +0.0000017750,0.0000017736,0.0000017732,0.0000017745,0.0000017767, +0.0000017795,0.0000017827,0.0000017854,0.0000017872,0.0000017886, +0.0000017893,0.0000017883,0.0000017837,0.0000017753,0.0000017646, +0.0000017545,0.0000017495,0.0000017501,0.0000017559,0.0000017638, +0.0000017749,0.0000017912,0.0000018094,0.0000018202,0.0000018229, +0.0000018268,0.0000018324,0.0000018388,0.0000018538,0.0000018740, +0.0000018906,0.0000019040,0.0000019152,0.0000019266,0.0000019353, +0.0000019356,0.0000019365,0.0000019443,0.0000019536,0.0000019604, +0.0000019657,0.0000019687,0.0000019694,0.0000019701,0.0000019716, +0.0000019731,0.0000019738,0.0000019739,0.0000019739,0.0000019739, +0.0000019732,0.0000019725,0.0000019718,0.0000019718,0.0000019728, +0.0000019741,0.0000019753,0.0000019762,0.0000019770,0.0000019778, +0.0000019789,0.0000019796,0.0000019797,0.0000019796,0.0000019795, +0.0000019796,0.0000019801,0.0000019809,0.0000019815,0.0000019820, +0.0000019826,0.0000019831,0.0000019835,0.0000019837,0.0000019840, +0.0000019841,0.0000019838,0.0000019834,0.0000019831,0.0000019830, +0.0000019830,0.0000019835,0.0000019835,0.0000019836,0.0000019836, +0.0000019835,0.0000019833,0.0000019828,0.0000019820,0.0000019810, +0.0000019799,0.0000019789,0.0000019779,0.0000019768,0.0000019757, +0.0000019746,0.0000019734,0.0000019720,0.0000019705,0.0000019689, +0.0000019672,0.0000019654,0.0000019634,0.0000019614,0.0000019595, +0.0000019573,0.0000019547,0.0000019518,0.0000019486,0.0000019455, +0.0000019429,0.0000019410,0.0000019396,0.0000019381,0.0000019370, +0.0000019356,0.0000019343,0.0000019329,0.0000019309,0.0000019281, +0.0000019252,0.0000019224,0.0000019199,0.0000019179,0.0000019159, +0.0000019133,0.0000019095,0.0000019046,0.0000018983,0.0000018905, +0.0000018811,0.0000018705,0.0000018587,0.0000018458,0.0000018324, +0.0000018191,0.0000018058,0.0000017931,0.0000017816,0.0000017715, +0.0000017632,0.0000017570,0.0000017521,0.0000017487,0.0000017459, +0.0000017443,0.0000017426,0.0000017426,0.0000017429,0.0000017418, +0.0000017408,0.0000017400,0.0000017398,0.0000017391,0.0000017383, +0.0000017377,0.0000017374,0.0000017373,0.0000017376,0.0000017376, +0.0000017374,0.0000017369,0.0000017362,0.0000017353,0.0000017344, +0.0000017336,0.0000017330,0.0000017328,0.0000017330,0.0000017334, +0.0000017339,0.0000017344,0.0000017351,0.0000017360,0.0000017370, +0.0000017378,0.0000017386,0.0000017393,0.0000017400,0.0000017407, +0.0000017413,0.0000017418,0.0000017424,0.0000017428,0.0000017430, +0.0000017430,0.0000017430,0.0000017427,0.0000017422,0.0000017418, +0.0000017412,0.0000017402,0.0000017392,0.0000017384,0.0000017378, +0.0000017371,0.0000017360,0.0000017350,0.0000017342,0.0000017332, +0.0000017321,0.0000017311,0.0000017304,0.0000017304,0.0000017313, +0.0000017327,0.0000017344,0.0000017366,0.0000017392,0.0000017426, +0.0000017469,0.0000017509,0.0000017540,0.0000017558,0.0000017574, +0.0000017591,0.0000017599,0.0000017583,0.0000017576,0.0000017578, +0.0000017558,0.0000017522,0.0000017511,0.0000017531,0.0000017546, +0.0000017570,0.0000017619,0.0000017696,0.0000017787,0.0000017892, +0.0000018017,0.0000018152,0.0000018296,0.0000018442,0.0000018583, +0.0000018709,0.0000018816,0.0000018903,0.0000018969,0.0000019014, +0.0000019040,0.0000019056,0.0000019068,0.0000019078,0.0000019086, +0.0000019095,0.0000019102,0.0000019110,0.0000019118,0.0000019124, +0.0000019128,0.0000019131,0.0000019134,0.0000019139,0.0000019147, +0.0000019160,0.0000019176,0.0000019197,0.0000019226,0.0000019261, +0.0000019298,0.0000019336,0.0000019371,0.0000019400,0.0000019422, +0.0000019440,0.0000019459,0.0000019477,0.0000019492,0.0000019503, +0.0000019510,0.0000019515,0.0000019517,0.0000019515,0.0000019511, +0.0000019506,0.0000019501,0.0000019498,0.0000019498,0.0000019499, +0.0000019505,0.0000019520,0.0000019539,0.0000019562,0.0000019587, +0.0000019614,0.0000019641,0.0000019663,0.0000019685,0.0000019703, +0.0000019707,0.0000019702,0.0000019694,0.0000019693,0.0000019697, +0.0000019704,0.0000019717,0.0000019739,0.0000019767,0.0000019795, +0.0000019821,0.0000019845,0.0000019868,0.0000019890,0.0000019908, +0.0000019918,0.0000019925,0.0000019932,0.0000019941,0.0000019949, +0.0000019955,0.0000019959,0.0000019961,0.0000019957,0.0000019944, +0.0000019926,0.0000019906,0.0000019885,0.0000019869,0.0000019853, +0.0000019838,0.0000019827,0.0000019828,0.0000019836,0.0000019853, +0.0000019880,0.0000019910,0.0000019934,0.0000019955,0.0000019969, +0.0000019983,0.0000019998,0.0000020003,0.0000020004,0.0000019999, +0.0000019992,0.0000019987,0.0000019980,0.0000019973,0.0000019961, +0.0000019946,0.0000019922,0.0000019892,0.0000019860,0.0000019837, +0.0000019832,0.0000019837,0.0000019838,0.0000019830,0.0000019811, +0.0000019793,0.0000019769,0.0000019770,0.0000019785,0.0000019812, +0.0000019849,0.0000019899,0.0000019955,0.0000020002,0.0000020038, +0.0000020059,0.0000020079,0.0000020103,0.0000020129,0.0000020161, +0.0000020197,0.0000020232,0.0000020265,0.0000020295,0.0000020324, +0.0000020342,0.0000020351,0.0000020342,0.0000020319,0.0000020293, +0.0000020267,0.0000020239,0.0000020211,0.0000020180,0.0000020147, +0.0000020116,0.0000020088,0.0000020076,0.0000020072,0.0000020070, +0.0000020074,0.0000020092,0.0000020115,0.0000020130,0.0000020137, +0.0000020138,0.0000020134,0.0000020127,0.0000020120,0.0000020107, +0.0000020098,0.0000020089,0.0000020078,0.0000020076,0.0000020074, +0.0000020068,0.0000020069,0.0000020072,0.0000020079,0.0000020082, +0.0000020078,0.0000020068,0.0000020050,0.0000020025,0.0000019999, +0.0000019973,0.0000019956,0.0000019942,0.0000019935,0.0000019924, +0.0000019914,0.0000019902,0.0000019884,0.0000019863,0.0000019847, +0.0000019839,0.0000019827,0.0000019811,0.0000019787,0.0000019758, +0.0000019723,0.0000019674,0.0000019629,0.0000019590,0.0000019569, +0.0000019567,0.0000019574,0.0000019590,0.0000019606,0.0000019612, +0.0000019611,0.0000019615,0.0000019629,0.0000019644,0.0000019651, +0.0000019651,0.0000019645,0.0000019636,0.0000019628,0.0000019628, +0.0000019629,0.0000019617,0.0000019595,0.0000019566,0.0000019540, +0.0000019523,0.0000019510,0.0000019503,0.0000019509,0.0000019516, +0.0000019530,0.0000019537,0.0000019528,0.0000019516,0.0000019493, +0.0000019473,0.0000019458,0.0000019444,0.0000019428,0.0000019414, +0.0000019404,0.0000019396,0.0000019391,0.0000019386,0.0000019382, +0.0000019380,0.0000019382,0.0000019392,0.0000019404,0.0000019422, +0.0000019439,0.0000019452,0.0000019459,0.0000019457,0.0000019445, +0.0000019420,0.0000019380,0.0000019329,0.0000019275,0.0000019227, +0.0000019187,0.0000019151,0.0000019137,0.0000019137,0.0000019148, +0.0000019161,0.0000019181,0.0000019199,0.0000019210,0.0000019216, +0.0000019217,0.0000019211,0.0000019205,0.0000019201,0.0000019186, +0.0000019156,0.0000019114,0.0000019059,0.0000018993,0.0000018928, +0.0000018869,0.0000018831,0.0000018808,0.0000018821,0.0000018831, +0.0000018846,0.0000018868,0.0000018884,0.0000018889,0.0000018888, +0.0000018878,0.0000018872,0.0000018864,0.0000018863,0.0000018872, +0.0000018896,0.0000018938,0.0000018988,0.0000019035,0.0000019065, +0.0000019056,0.0000019032,0.0000018998,0.0000018961,0.0000018932, +0.0000018905,0.0000018898,0.0000018883,0.0000018878,0.0000018876, +0.0000018871,0.0000018863,0.0000018855,0.0000018849,0.0000018844, +0.0000018840,0.0000018838,0.0000018841,0.0000018866,0.0000018921, +0.0000018996,0.0000019060,0.0000019118,0.0000019137,0.0000019153, +0.0000019148,0.0000019147,0.0000019162,0.0000019193,0.0000019227, +0.0000019248,0.0000019241,0.0000019226,0.0000019204,0.0000019177, +0.0000019148,0.0000019130,0.0000019118,0.0000019111,0.0000019103, +0.0000019098,0.0000019096,0.0000019086,0.0000019071,0.0000019054, +0.0000019044,0.0000019040,0.0000019046,0.0000019064,0.0000019090, +0.0000019110,0.0000019111,0.0000019101,0.0000019081,0.0000019058, +0.0000019043,0.0000019039,0.0000019044,0.0000019043,0.0000019040, +0.0000019043,0.0000019044,0.0000019046,0.0000019046,0.0000019038, +0.0000019023,0.0000018994,0.0000018961,0.0000018925,0.0000018889, +0.0000018854,0.0000018829,0.0000018825,0.0000018845,0.0000018879, +0.0000018896,0.0000018885,0.0000018841,0.0000018773,0.0000018709, +0.0000018648,0.0000018611,0.0000018592,0.0000018578,0.0000018567, +0.0000018539,0.0000018490,0.0000018436,0.0000018371,0.0000018289, +0.0000018248,0.0000018240,0.0000018244,0.0000018242,0.0000018243, +0.0000018253,0.0000018263,0.0000018272,0.0000018268,0.0000018271, +0.0000018282,0.0000018312,0.0000018359,0.0000018420,0.0000018489, +0.0000018554,0.0000018608,0.0000018638,0.0000018650,0.0000018645, +0.0000018614,0.0000018574,0.0000018531,0.0000018477,0.0000018420, +0.0000018365,0.0000018332,0.0000018322,0.0000018317,0.0000018319, +0.0000018337,0.0000018352,0.0000018347,0.0000018335,0.0000018324, +0.0000018316,0.0000018313,0.0000018309,0.0000018297,0.0000018288, +0.0000018276,0.0000018258,0.0000018238,0.0000018218,0.0000018204, +0.0000018193,0.0000018185,0.0000018177,0.0000018166,0.0000018154, +0.0000018143,0.0000018138,0.0000018138,0.0000018142,0.0000018149, +0.0000018156,0.0000018158,0.0000018158,0.0000018157,0.0000018156, +0.0000018154,0.0000018148,0.0000018142,0.0000018136,0.0000018125, +0.0000018112,0.0000018096,0.0000018076,0.0000018055,0.0000018034, +0.0000018011,0.0000017988,0.0000017970,0.0000017957,0.0000017950, +0.0000017948,0.0000017945,0.0000017945,0.0000017944,0.0000017940, +0.0000017942,0.0000017951,0.0000017966,0.0000017981,0.0000017992, +0.0000017993,0.0000017993,0.0000017987,0.0000017979,0.0000017987, +0.0000018002,0.0000018031,0.0000018077,0.0000018134,0.0000018197, +0.0000018258,0.0000018313,0.0000018367,0.0000018421,0.0000018472, +0.0000018525,0.0000018576,0.0000018621,0.0000018660,0.0000018691, +0.0000018718,0.0000018755,0.0000018814,0.0000018902,0.0000019026, +0.0000019179,0.0000019337,0.0000019477,0.0000019576,0.0000019610, +0.0000019609,0.0000019579,0.0000019526,0.0000019467,0.0000019400, +0.0000019318,0.0000019222,0.0000019121,0.0000019034,0.0000018977, +0.0000018950,0.0000018934,0.0000018931,0.0000018923,0.0000018904, +0.0000018885,0.0000018870,0.0000018861,0.0000018847,0.0000018821, +0.0000018784,0.0000018742,0.0000018700,0.0000018665,0.0000018632, +0.0000018599,0.0000018577,0.0000018571,0.0000018574,0.0000018578, +0.0000018581,0.0000018585,0.0000018592,0.0000018607,0.0000018633, +0.0000018660,0.0000018672,0.0000018664,0.0000018641,0.0000018607, +0.0000018565,0.0000018520,0.0000018485,0.0000018466,0.0000018457, +0.0000018445,0.0000018427,0.0000018404,0.0000018382,0.0000018365, +0.0000018355,0.0000018355,0.0000018365,0.0000018380,0.0000018395, +0.0000018410,0.0000018428,0.0000018448,0.0000018462,0.0000018470, +0.0000018470,0.0000018468,0.0000018467,0.0000018463,0.0000018455, +0.0000018447,0.0000018430,0.0000018387,0.0000018326,0.0000018262, +0.0000018209,0.0000018180,0.0000018171,0.0000018178,0.0000018197, +0.0000018220,0.0000018244,0.0000018267,0.0000018292,0.0000018327, +0.0000018375,0.0000018432,0.0000018489,0.0000018542,0.0000018590, +0.0000018624,0.0000018642,0.0000018643,0.0000018636,0.0000018622, +0.0000018612,0.0000018602,0.0000018593,0.0000018583,0.0000018573, +0.0000018563,0.0000018555,0.0000018551,0.0000018545,0.0000018536, +0.0000018526,0.0000018516,0.0000018508,0.0000018500,0.0000018489, +0.0000018477,0.0000018467,0.0000018462,0.0000018461,0.0000018465, +0.0000018469,0.0000018470,0.0000018467,0.0000018463,0.0000018457, +0.0000018452,0.0000018447,0.0000018444,0.0000018441,0.0000018440, +0.0000018443,0.0000018448,0.0000018452,0.0000018457,0.0000018459, +0.0000018454,0.0000018442,0.0000018420,0.0000018394,0.0000018369, +0.0000018351,0.0000018342,0.0000018344,0.0000018358,0.0000018379, +0.0000018415,0.0000018462,0.0000018514,0.0000018559,0.0000018585, +0.0000018585,0.0000018562,0.0000018530,0.0000018535,0.0000018604, +0.0000018652,0.0000018708,0.0000018823,0.0000018805,0.0000018727, +0.0000018785,0.0000018861,0.0000018793,0.0000018819,0.0000018890, +0.0000018817,0.0000018714,0.0000018691,0.0000018710,0.0000018718, +0.0000018757,0.0000018869,0.0000018955,0.0000018963,0.0000018921, +0.0000018876,0.0000018851,0.0000018846,0.0000018853,0.0000018872, +0.0000018889,0.0000018894,0.0000018890,0.0000018889,0.0000018895, +0.0000018911,0.0000018933,0.0000018953,0.0000018961,0.0000018959, +0.0000018964,0.0000018976,0.0000018981,0.0000018860,0.0000018466, +0.0000017976,0.0000017710,0.0000017655,0.0000017626,0.0000017598, +0.0000017598,0.0000017610,0.0000017618,0.0000017609,0.0000017592, +0.0000017588,0.0000017599,0.0000017621,0.0000017650,0.0000017681, +0.0000017714,0.0000017749,0.0000017785,0.0000017817,0.0000017843, +0.0000017865,0.0000017881,0.0000017892,0.0000017900,0.0000017906, +0.0000017911,0.0000017915,0.0000017918,0.0000017920,0.0000017920, +0.0000017917,0.0000017912,0.0000017906,0.0000017901,0.0000017898, +0.0000017901,0.0000017907,0.0000017916,0.0000017927,0.0000017941, +0.0000017959,0.0000017980,0.0000018000,0.0000018019,0.0000018038, +0.0000018059,0.0000018081,0.0000018102,0.0000018125,0.0000018145, +0.0000018174,0.0000018242,0.0000018354,0.0000018476,0.0000018544, +0.0000018527,0.0000018430,0.0000018328,0.0000018266,0.0000018266, +0.0000018277,0.0000018298,0.0000018314,0.0000018312,0.0000018298, +0.0000018268,0.0000018239,0.0000018218,0.0000018202,0.0000018186, +0.0000018174,0.0000018165,0.0000018158,0.0000018151,0.0000018139, +0.0000018127,0.0000018116,0.0000018108,0.0000018108,0.0000018113, +0.0000018123,0.0000018138,0.0000018156,0.0000018180,0.0000018199, +0.0000018217,0.0000018230,0.0000018241,0.0000018250,0.0000018258, +0.0000018262,0.0000018263,0.0000018261,0.0000018253,0.0000018241, +0.0000018228,0.0000018221,0.0000018218,0.0000018225,0.0000018241, +0.0000018255,0.0000018266,0.0000018270,0.0000018270,0.0000018267, +0.0000018264,0.0000018269,0.0000018278,0.0000018291,0.0000018302, +0.0000018309,0.0000018312,0.0000018311,0.0000018308,0.0000018301, +0.0000018290,0.0000018285,0.0000018288,0.0000018297,0.0000018309, +0.0000018321,0.0000018338,0.0000018356,0.0000018373,0.0000018391, +0.0000018361,0.0000018381,0.0000018400,0.0000018419,0.0000018438, +0.0000018456,0.0000018473,0.0000018490,0.0000018506,0.0000018523, +0.0000018539,0.0000018557,0.0000018577,0.0000018598,0.0000018617, +0.0000018629,0.0000018634,0.0000018633,0.0000018629,0.0000018619, +0.0000018606,0.0000018590,0.0000018574,0.0000018554,0.0000018532, +0.0000018513,0.0000018495,0.0000018474,0.0000018448,0.0000018417, +0.0000018383,0.0000018349,0.0000018314,0.0000018283,0.0000018257, +0.0000018238,0.0000018229,0.0000018227,0.0000018227,0.0000018223, +0.0000018215,0.0000018203,0.0000018181,0.0000018146,0.0000018099, +0.0000018044,0.0000017987,0.0000017934,0.0000017890,0.0000017858, +0.0000017835,0.0000017818,0.0000017794,0.0000017768,0.0000017747, +0.0000017746,0.0000017755,0.0000017770,0.0000017801,0.0000017842, +0.0000017881,0.0000017915,0.0000017938,0.0000017950,0.0000017951, +0.0000017960,0.0000017985,0.0000018041,0.0000018130,0.0000018236, +0.0000018333,0.0000018389,0.0000018389,0.0000018379,0.0000018361, +0.0000018346,0.0000018337,0.0000018334,0.0000018344,0.0000018374, +0.0000018414,0.0000018443,0.0000018440,0.0000018411,0.0000018367, +0.0000018317,0.0000018265,0.0000018204,0.0000018132,0.0000018051, +0.0000017969,0.0000017896,0.0000017842,0.0000017814,0.0000017803, +0.0000017804,0.0000017812,0.0000017825,0.0000017838,0.0000017845, +0.0000017845,0.0000017839,0.0000017824,0.0000017804,0.0000017790, +0.0000017783,0.0000017799,0.0000017847,0.0000017917,0.0000017988, +0.0000018041,0.0000018085,0.0000018141,0.0000018210,0.0000018267, +0.0000018300,0.0000018317,0.0000018322,0.0000018317,0.0000018299, +0.0000018273,0.0000018245,0.0000018216,0.0000018187,0.0000018155, +0.0000018119,0.0000018081,0.0000018039,0.0000017992,0.0000017944, +0.0000017900,0.0000017860,0.0000017817,0.0000017769,0.0000017718, +0.0000017669,0.0000017623,0.0000017582,0.0000017554,0.0000017540, +0.0000017535,0.0000017536,0.0000017540,0.0000017542,0.0000017543, +0.0000017545,0.0000017548,0.0000017554,0.0000017559,0.0000017559, +0.0000017557,0.0000017556,0.0000017557,0.0000017559,0.0000017561, +0.0000017566,0.0000017572,0.0000017573,0.0000017570,0.0000017566, +0.0000017561,0.0000017556,0.0000017552,0.0000017550,0.0000017550, +0.0000017552,0.0000017552,0.0000017552,0.0000017552,0.0000017552, +0.0000017548,0.0000017537,0.0000017518,0.0000017491,0.0000017458, +0.0000017420,0.0000017379,0.0000017340,0.0000017309,0.0000017282, +0.0000017261,0.0000017257,0.0000017259,0.0000017270,0.0000017289, +0.0000017319,0.0000017356,0.0000017393,0.0000017427,0.0000017456, +0.0000017477,0.0000017494,0.0000017507,0.0000017515,0.0000017518, +0.0000017520,0.0000017523,0.0000017527,0.0000017534,0.0000017539, +0.0000017542,0.0000017542,0.0000017542,0.0000017543,0.0000017545, +0.0000017549,0.0000017555,0.0000017564,0.0000017575,0.0000017591, +0.0000017610,0.0000017627,0.0000017642,0.0000017656,0.0000017668, +0.0000017674,0.0000017674,0.0000017671,0.0000017664,0.0000017654, +0.0000017641,0.0000017626,0.0000017612,0.0000017596,0.0000017579, +0.0000017562,0.0000017551,0.0000017547,0.0000017545,0.0000017537, +0.0000017525,0.0000017511,0.0000017495,0.0000017474,0.0000017448, +0.0000017427,0.0000017406,0.0000017398,0.0000017415,0.0000017469, +0.0000017557,0.0000017682,0.0000017813,0.0000017917,0.0000017969, +0.0000017999,0.0000018049,0.0000018130,0.0000018230,0.0000018319, +0.0000018359,0.0000018346,0.0000018252,0.0000018097,0.0000017931, +0.0000017812,0.0000017774,0.0000017761,0.0000017752,0.0000017748, +0.0000017743,0.0000017739,0.0000017743,0.0000017752,0.0000017765, +0.0000017787,0.0000017818,0.0000017849,0.0000017869,0.0000017876, +0.0000017874,0.0000017859,0.0000017817,0.0000017733,0.0000017615, +0.0000017504,0.0000017454,0.0000017464,0.0000017511,0.0000017571, +0.0000017663,0.0000017823,0.0000018026,0.0000018163,0.0000018198, +0.0000018234,0.0000018294,0.0000018359,0.0000018507,0.0000018711, +0.0000018880,0.0000019012,0.0000019122,0.0000019234,0.0000019322, +0.0000019325,0.0000019329,0.0000019402,0.0000019499,0.0000019568, +0.0000019610,0.0000019634,0.0000019645,0.0000019660,0.0000019679, +0.0000019697,0.0000019709,0.0000019714,0.0000019715,0.0000019714, +0.0000019708,0.0000019699,0.0000019692,0.0000019695,0.0000019701, +0.0000019711,0.0000019719,0.0000019725,0.0000019730,0.0000019739, +0.0000019751,0.0000019762,0.0000019770,0.0000019775,0.0000019780, +0.0000019786,0.0000019794,0.0000019800,0.0000019807,0.0000019814, +0.0000019820,0.0000019824,0.0000019824,0.0000019822,0.0000019820, +0.0000019814,0.0000019805,0.0000019801,0.0000019799,0.0000019799, +0.0000019803,0.0000019802,0.0000019800,0.0000019795,0.0000019789, +0.0000019780,0.0000019768,0.0000019755,0.0000019741,0.0000019726, +0.0000019710,0.0000019695,0.0000019681,0.0000019665,0.0000019650, +0.0000019634,0.0000019618,0.0000019601,0.0000019583,0.0000019562, +0.0000019543,0.0000019523,0.0000019505,0.0000019489,0.0000019474, +0.0000019459,0.0000019445,0.0000019432,0.0000019421,0.0000019411, +0.0000019402,0.0000019386,0.0000019363,0.0000019334,0.0000019299, +0.0000019265,0.0000019233,0.0000019203,0.0000019176,0.0000019153, +0.0000019128,0.0000019097,0.0000019054,0.0000018992,0.0000018910, +0.0000018813,0.0000018700,0.0000018576,0.0000018442,0.0000018305, +0.0000018169,0.0000018039,0.0000017918,0.0000017808,0.0000017713, +0.0000017630,0.0000017562,0.0000017509,0.0000017475,0.0000017446, +0.0000017447,0.0000017446,0.0000017441,0.0000017442,0.0000017449, +0.0000017449,0.0000017450,0.0000017450,0.0000017438,0.0000017424, +0.0000017409,0.0000017389,0.0000017360,0.0000017336,0.0000017310, +0.0000017287,0.0000017268,0.0000017253,0.0000017240,0.0000017229, +0.0000017218,0.0000017207,0.0000017199,0.0000017191,0.0000017184, +0.0000017178,0.0000017178,0.0000017184,0.0000017192,0.0000017200, +0.0000017211,0.0000017222,0.0000017232,0.0000017241,0.0000017250, +0.0000017258,0.0000017266,0.0000017278,0.0000017291,0.0000017305, +0.0000017317,0.0000017327,0.0000017337,0.0000017346,0.0000017351, +0.0000017354,0.0000017357,0.0000017360,0.0000017358,0.0000017361, +0.0000017366,0.0000017362,0.0000017355,0.0000017351,0.0000017343, +0.0000017334,0.0000017324,0.0000017313,0.0000017300,0.0000017283, +0.0000017265,0.0000017241,0.0000017222,0.0000017215,0.0000017220, +0.0000017220,0.0000017226,0.0000017248,0.0000017285,0.0000017327, +0.0000017374,0.0000017422,0.0000017466,0.0000017504,0.0000017539, +0.0000017567,0.0000017580,0.0000017586,0.0000017578,0.0000017563, +0.0000017532,0.0000017519,0.0000017484,0.0000017447,0.0000017438, +0.0000017428,0.0000017395,0.0000017398,0.0000017435,0.0000017479, +0.0000017539,0.0000017633,0.0000017764,0.0000017911,0.0000018070, +0.0000018235,0.0000018395,0.0000018544,0.0000018676,0.0000018789, +0.0000018882,0.0000018954,0.0000019007,0.0000019042,0.0000019063, +0.0000019078,0.0000019084,0.0000019093,0.0000019100,0.0000019107, +0.0000019112,0.0000019115,0.0000019117,0.0000019119,0.0000019124, +0.0000019128,0.0000019136,0.0000019152,0.0000019174,0.0000019201, +0.0000019229,0.0000019259,0.0000019289,0.0000019314,0.0000019336, +0.0000019362,0.0000019387,0.0000019411,0.0000019432,0.0000019450, +0.0000019466,0.0000019478,0.0000019485,0.0000019489,0.0000019490, +0.0000019489,0.0000019484,0.0000019477,0.0000019472,0.0000019470, +0.0000019474,0.0000019485,0.0000019506,0.0000019528,0.0000019550, +0.0000019572,0.0000019593,0.0000019612,0.0000019631,0.0000019648, +0.0000019659,0.0000019670,0.0000019682,0.0000019693,0.0000019702, +0.0000019708,0.0000019721,0.0000019746,0.0000019776,0.0000019808, +0.0000019834,0.0000019858,0.0000019881,0.0000019900,0.0000019914, +0.0000019925,0.0000019934,0.0000019945,0.0000019953,0.0000019956, +0.0000019959,0.0000019960,0.0000019956,0.0000019953,0.0000019948, +0.0000019937,0.0000019925,0.0000019914,0.0000019901,0.0000019882, +0.0000019865,0.0000019851,0.0000019847,0.0000019858,0.0000019876, +0.0000019902,0.0000019927,0.0000019949,0.0000019965,0.0000019980, +0.0000019991,0.0000019999,0.0000020000,0.0000019996,0.0000019990, +0.0000019984,0.0000019975,0.0000019966,0.0000019953,0.0000019936, +0.0000019911,0.0000019876,0.0000019844,0.0000019837,0.0000019842, +0.0000019854,0.0000019867,0.0000019877,0.0000019873,0.0000019855, +0.0000019832,0.0000019801,0.0000019778,0.0000019755,0.0000019743, +0.0000019752,0.0000019774,0.0000019815,0.0000019877,0.0000019948, +0.0000020019,0.0000020078,0.0000020117,0.0000020145,0.0000020163, +0.0000020176,0.0000020184,0.0000020192,0.0000020194,0.0000020200, +0.0000020204,0.0000020201,0.0000020195,0.0000020181,0.0000020167, +0.0000020147,0.0000020125,0.0000020107,0.0000020091,0.0000020071, +0.0000020063,0.0000020059,0.0000020058,0.0000020062,0.0000020071, +0.0000020090,0.0000020109,0.0000020125,0.0000020133,0.0000020134, +0.0000020128,0.0000020122,0.0000020117,0.0000020108,0.0000020096, +0.0000020078,0.0000020061,0.0000020052,0.0000020041,0.0000020035, +0.0000020030,0.0000020032,0.0000020028,0.0000020024,0.0000020009, +0.0000019981,0.0000019951,0.0000019920,0.0000019888,0.0000019860, +0.0000019836,0.0000019818,0.0000019796,0.0000019777,0.0000019761, +0.0000019746,0.0000019724,0.0000019705,0.0000019697,0.0000019696, +0.0000019697,0.0000019695,0.0000019691,0.0000019670,0.0000019636, +0.0000019599,0.0000019553,0.0000019498,0.0000019461,0.0000019440, +0.0000019445,0.0000019461,0.0000019484,0.0000019509,0.0000019530, +0.0000019551,0.0000019570,0.0000019578,0.0000019578,0.0000019571, +0.0000019556,0.0000019540,0.0000019536,0.0000019543,0.0000019553, +0.0000019557,0.0000019548,0.0000019522,0.0000019493,0.0000019468, +0.0000019446,0.0000019429,0.0000019413,0.0000019407,0.0000019406, +0.0000019403,0.0000019404,0.0000019407,0.0000019407,0.0000019407, +0.0000019408,0.0000019403,0.0000019392,0.0000019379,0.0000019368, +0.0000019360,0.0000019350,0.0000019337,0.0000019325,0.0000019319, +0.0000019321,0.0000019330,0.0000019346,0.0000019369,0.0000019398, +0.0000019430,0.0000019465,0.0000019476,0.0000019490,0.0000019485, +0.0000019464,0.0000019433,0.0000019393,0.0000019344,0.0000019290, +0.0000019233,0.0000019191,0.0000019153,0.0000019139,0.0000019124, +0.0000019123,0.0000019126,0.0000019131,0.0000019136,0.0000019145, +0.0000019158,0.0000019170,0.0000019183,0.0000019185,0.0000019166, +0.0000019162,0.0000019135,0.0000019096,0.0000019052,0.0000019005, +0.0000018954,0.0000018913,0.0000018886,0.0000018860,0.0000018853, +0.0000018848,0.0000018840,0.0000018845,0.0000018854,0.0000018865, +0.0000018860,0.0000018838,0.0000018813,0.0000018780,0.0000018772, +0.0000018789,0.0000018835,0.0000018896,0.0000018955,0.0000018989, +0.0000019010,0.0000018994,0.0000018984,0.0000018959,0.0000018929, +0.0000018899,0.0000018874,0.0000018866,0.0000018852,0.0000018834, +0.0000018811,0.0000018788,0.0000018769,0.0000018753,0.0000018740, +0.0000018731,0.0000018736,0.0000018763,0.0000018826,0.0000018906, +0.0000018989,0.0000019062,0.0000019124,0.0000019144,0.0000019159, +0.0000019156,0.0000019160,0.0000019181,0.0000019203,0.0000019220, +0.0000019220,0.0000019207,0.0000019170,0.0000019122,0.0000019075, +0.0000019035,0.0000019002,0.0000018978,0.0000018975,0.0000018995, +0.0000019028,0.0000019055,0.0000019053,0.0000019053,0.0000019041, +0.0000019033,0.0000019037,0.0000019051,0.0000019064,0.0000019067, +0.0000019059,0.0000019035,0.0000019005,0.0000018982,0.0000018977, +0.0000018978,0.0000018987,0.0000018997,0.0000019001,0.0000019004, +0.0000019011,0.0000019015,0.0000019018,0.0000019008,0.0000018979, +0.0000018942,0.0000018904,0.0000018866,0.0000018829,0.0000018805, +0.0000018801,0.0000018822,0.0000018863,0.0000018890,0.0000018885, +0.0000018838,0.0000018762,0.0000018672,0.0000018598,0.0000018555, +0.0000018540,0.0000018536,0.0000018534,0.0000018518,0.0000018477, +0.0000018429,0.0000018372,0.0000018295,0.0000018249,0.0000018226, +0.0000018221,0.0000018219,0.0000018225,0.0000018230,0.0000018236, +0.0000018247,0.0000018250,0.0000018250,0.0000018255,0.0000018280, +0.0000018328,0.0000018390,0.0000018462,0.0000018525,0.0000018583, +0.0000018624,0.0000018648,0.0000018649,0.0000018634,0.0000018601, +0.0000018552,0.0000018496,0.0000018437,0.0000018376,0.0000018335, +0.0000018321,0.0000018314,0.0000018304,0.0000018303,0.0000018306, +0.0000018300,0.0000018296,0.0000018288,0.0000018280,0.0000018279, +0.0000018280,0.0000018280,0.0000018276,0.0000018262,0.0000018242, +0.0000018222,0.0000018203,0.0000018186,0.0000018168,0.0000018151, +0.0000018142,0.0000018135,0.0000018128,0.0000018119,0.0000018113, +0.0000018113,0.0000018116,0.0000018124,0.0000018130,0.0000018131, +0.0000018130,0.0000018128,0.0000018127,0.0000018127,0.0000018128, +0.0000018128,0.0000018126,0.0000018120,0.0000018111,0.0000018100, +0.0000018088,0.0000018076,0.0000018061,0.0000018040,0.0000018015, +0.0000017992,0.0000017973,0.0000017959,0.0000017950,0.0000017946, +0.0000017943,0.0000017936,0.0000017930,0.0000017925,0.0000017923, +0.0000017930,0.0000017945,0.0000017962,0.0000017977,0.0000017987, +0.0000017986,0.0000017987,0.0000017986,0.0000017979,0.0000017988, +0.0000018012,0.0000018049,0.0000018102,0.0000018165,0.0000018229, +0.0000018290,0.0000018349,0.0000018401,0.0000018448,0.0000018493, +0.0000018538,0.0000018580,0.0000018615,0.0000018647,0.0000018680, +0.0000018718,0.0000018775,0.0000018861,0.0000018984,0.0000019137, +0.0000019299,0.0000019448,0.0000019555,0.0000019593,0.0000019591, +0.0000019567,0.0000019509,0.0000019443,0.0000019370,0.0000019281, +0.0000019176,0.0000019068,0.0000018980,0.0000018928,0.0000018908, +0.0000018896,0.0000018890,0.0000018884,0.0000018881,0.0000018877, +0.0000018874,0.0000018867,0.0000018855,0.0000018830,0.0000018791, +0.0000018744,0.0000018700,0.0000018664,0.0000018629,0.0000018594, +0.0000018572,0.0000018563,0.0000018564,0.0000018566,0.0000018567, +0.0000018572,0.0000018587,0.0000018611,0.0000018639,0.0000018661, +0.0000018666,0.0000018657,0.0000018630,0.0000018592,0.0000018546, +0.0000018500,0.0000018462,0.0000018439,0.0000018423,0.0000018409, +0.0000018394,0.0000018377,0.0000018361,0.0000018353,0.0000018355, +0.0000018363,0.0000018375,0.0000018388,0.0000018406,0.0000018429, +0.0000018447,0.0000018459,0.0000018463,0.0000018458,0.0000018450, +0.0000018443,0.0000018435,0.0000018436,0.0000018431,0.0000018413, +0.0000018376,0.0000018323,0.0000018266,0.0000018219,0.0000018187, +0.0000018170,0.0000018164,0.0000018173,0.0000018194,0.0000018221, +0.0000018243,0.0000018258,0.0000018276,0.0000018303,0.0000018338, +0.0000018385,0.0000018439,0.0000018495,0.0000018541,0.0000018575, +0.0000018594,0.0000018598,0.0000018594,0.0000018589,0.0000018582, +0.0000018572,0.0000018563,0.0000018557,0.0000018554,0.0000018552, +0.0000018546,0.0000018538,0.0000018529,0.0000018520,0.0000018512, +0.0000018503,0.0000018493,0.0000018484,0.0000018475,0.0000018468, +0.0000018466,0.0000018468,0.0000018469,0.0000018468,0.0000018462, +0.0000018456,0.0000018452,0.0000018450,0.0000018451,0.0000018452, +0.0000018449,0.0000018448,0.0000018445,0.0000018437,0.0000018425, +0.0000018409,0.0000018390,0.0000018368,0.0000018345,0.0000018325, +0.0000018312,0.0000018307,0.0000018312,0.0000018327,0.0000018353, +0.0000018392,0.0000018439,0.0000018489,0.0000018535,0.0000018569, +0.0000018586,0.0000018589,0.0000018565,0.0000018523,0.0000018507, +0.0000018558,0.0000018633,0.0000018694,0.0000018818,0.0000018817, +0.0000018742,0.0000018765,0.0000018850,0.0000018714,0.0000018639, +0.0000018791,0.0000018852,0.0000018763,0.0000018693,0.0000018691, +0.0000018710,0.0000018722,0.0000018724,0.0000018776,0.0000018881, +0.0000018950,0.0000018962,0.0000018947,0.0000018931,0.0000018922, +0.0000018922,0.0000018924,0.0000018923,0.0000018918,0.0000018916, +0.0000018920,0.0000018932,0.0000018945,0.0000018951,0.0000018952, +0.0000018957,0.0000018966,0.0000018970,0.0000018931,0.0000018661, +0.0000018165,0.0000017774,0.0000017645,0.0000017606,0.0000017558, +0.0000017535,0.0000017540,0.0000017557,0.0000017567,0.0000017561, +0.0000017539,0.0000017526,0.0000017533,0.0000017555,0.0000017586, +0.0000017618,0.0000017645,0.0000017669,0.0000017690,0.0000017711, +0.0000017731,0.0000017748,0.0000017762,0.0000017771,0.0000017778, +0.0000017786,0.0000017793,0.0000017798,0.0000017800,0.0000017799, +0.0000017797,0.0000017795,0.0000017793,0.0000017791,0.0000017792, +0.0000017796,0.0000017805,0.0000017817,0.0000017829,0.0000017842, +0.0000017855,0.0000017870,0.0000017888,0.0000017906,0.0000017925, +0.0000017943,0.0000017962,0.0000017985,0.0000018007,0.0000018033, +0.0000018062,0.0000018089,0.0000018124,0.0000018189,0.0000018294, +0.0000018414,0.0000018501,0.0000018503,0.0000018453,0.0000018349, +0.0000018279,0.0000018252,0.0000018252,0.0000018267,0.0000018287, +0.0000018304,0.0000018302,0.0000018284,0.0000018261,0.0000018242, +0.0000018225,0.0000018213,0.0000018203,0.0000018198,0.0000018198, +0.0000018195,0.0000018190,0.0000018180,0.0000018166,0.0000018151, +0.0000018138,0.0000018130,0.0000018128,0.0000018130,0.0000018146, +0.0000018169,0.0000018195,0.0000018220,0.0000018245,0.0000018265, +0.0000018287,0.0000018306,0.0000018319,0.0000018324,0.0000018324, +0.0000018317,0.0000018303,0.0000018288,0.0000018276,0.0000018272, +0.0000018277,0.0000018284,0.0000018289,0.0000018289,0.0000018285, +0.0000018277,0.0000018269,0.0000018263,0.0000018263,0.0000018269, +0.0000018278,0.0000018282,0.0000018283,0.0000018282,0.0000018277, +0.0000018269,0.0000018256,0.0000018243,0.0000018237,0.0000018240, +0.0000018252,0.0000018268,0.0000018284,0.0000018301,0.0000018320, +0.0000018340,0.0000018349,0.0000018375,0.0000018398,0.0000018418, +0.0000018436,0.0000018456,0.0000018475,0.0000018493,0.0000018509, +0.0000018525,0.0000018538,0.0000018551,0.0000018563,0.0000018574, +0.0000018587,0.0000018599,0.0000018606,0.0000018610,0.0000018610, +0.0000018610,0.0000018603,0.0000018589,0.0000018570,0.0000018548, +0.0000018523,0.0000018500,0.0000018484,0.0000018474,0.0000018464, +0.0000018452,0.0000018438,0.0000018419,0.0000018392,0.0000018365, +0.0000018337,0.0000018311,0.0000018290,0.0000018278,0.0000018269, +0.0000018263,0.0000018258,0.0000018254,0.0000018247,0.0000018232, +0.0000018205,0.0000018164,0.0000018110,0.0000018051,0.0000017992, +0.0000017943,0.0000017908,0.0000017888,0.0000017871,0.0000017846, +0.0000017816,0.0000017789,0.0000017771,0.0000017766,0.0000017777, +0.0000017797,0.0000017831,0.0000017874,0.0000017915,0.0000017945, +0.0000017955,0.0000017953,0.0000017947,0.0000017944,0.0000017963, +0.0000018019,0.0000018119,0.0000018238,0.0000018340,0.0000018379, +0.0000018382,0.0000018365,0.0000018346,0.0000018333,0.0000018323, +0.0000018324,0.0000018344,0.0000018377,0.0000018408,0.0000018407, +0.0000018389,0.0000018349,0.0000018300,0.0000018243,0.0000018176, +0.0000018097,0.0000018013,0.0000017932,0.0000017867,0.0000017824, +0.0000017802,0.0000017792,0.0000017793,0.0000017806,0.0000017826, +0.0000017847,0.0000017858,0.0000017858,0.0000017849,0.0000017833, +0.0000017812,0.0000017790,0.0000017773,0.0000017773,0.0000017799, +0.0000017853,0.0000017925,0.0000017987,0.0000018032,0.0000018079, +0.0000018139,0.0000018201,0.0000018248,0.0000018275,0.0000018283, +0.0000018280,0.0000018266,0.0000018247,0.0000018221,0.0000018190, +0.0000018156,0.0000018125,0.0000018093,0.0000018055,0.0000018009, +0.0000017957,0.0000017908,0.0000017864,0.0000017823,0.0000017782, +0.0000017738,0.0000017693,0.0000017647,0.0000017603,0.0000017571, +0.0000017554,0.0000017550,0.0000017553,0.0000017558,0.0000017556, +0.0000017549,0.0000017540,0.0000017533,0.0000017530,0.0000017529, +0.0000017529,0.0000017528,0.0000017529,0.0000017532,0.0000017534, +0.0000017537,0.0000017546,0.0000017557,0.0000017568,0.0000017575, +0.0000017585,0.0000017597,0.0000017608,0.0000017612,0.0000017615, +0.0000017617,0.0000017621,0.0000017626,0.0000017635,0.0000017646, +0.0000017654,0.0000017655,0.0000017646,0.0000017626,0.0000017595, +0.0000017555,0.0000017507,0.0000017459,0.0000017414,0.0000017375, +0.0000017342,0.0000017319,0.0000017303,0.0000017292,0.0000017284, +0.0000017288,0.0000017296,0.0000017309,0.0000017330,0.0000017356, +0.0000017379,0.0000017400,0.0000017418,0.0000017432,0.0000017444, +0.0000017452,0.0000017460,0.0000017467,0.0000017472,0.0000017479, +0.0000017486,0.0000017495,0.0000017504,0.0000017513,0.0000017520, +0.0000017527,0.0000017534,0.0000017543,0.0000017556,0.0000017573, +0.0000017595,0.0000017617,0.0000017638,0.0000017658,0.0000017677, +0.0000017693,0.0000017702,0.0000017705,0.0000017704,0.0000017697, +0.0000017683,0.0000017668,0.0000017651,0.0000017633,0.0000017617, +0.0000017600,0.0000017587,0.0000017581,0.0000017581,0.0000017577, +0.0000017569,0.0000017555,0.0000017539,0.0000017521,0.0000017496, +0.0000017466,0.0000017430,0.0000017396,0.0000017369,0.0000017347, +0.0000017343,0.0000017371,0.0000017459,0.0000017602,0.0000017773, +0.0000017917,0.0000018002,0.0000018038,0.0000018074,0.0000018138, +0.0000018229,0.0000018316,0.0000018353,0.0000018339,0.0000018242, +0.0000018074,0.0000017892,0.0000017771,0.0000017740,0.0000017737, +0.0000017738,0.0000017739,0.0000017744,0.0000017754,0.0000017762, +0.0000017768,0.0000017780,0.0000017803,0.0000017831,0.0000017855, +0.0000017865,0.0000017857,0.0000017835,0.0000017794,0.0000017716, +0.0000017598,0.0000017485,0.0000017440,0.0000017445,0.0000017482, +0.0000017526,0.0000017594,0.0000017731,0.0000017939,0.0000018109, +0.0000018168,0.0000018203,0.0000018261,0.0000018326,0.0000018463, +0.0000018667,0.0000018841,0.0000018970,0.0000019080,0.0000019192, +0.0000019284,0.0000019298,0.0000019295,0.0000019352,0.0000019448, +0.0000019525,0.0000019565,0.0000019583,0.0000019597,0.0000019619, +0.0000019642,0.0000019665,0.0000019684,0.0000019695,0.0000019702, +0.0000019705,0.0000019703,0.0000019698,0.0000019696,0.0000019699, +0.0000019703,0.0000019709,0.0000019714,0.0000019714,0.0000019716, +0.0000019716,0.0000019724,0.0000019736,0.0000019748,0.0000019761, +0.0000019772,0.0000019781,0.0000019786,0.0000019791,0.0000019794, +0.0000019798,0.0000019801,0.0000019803,0.0000019805,0.0000019805, +0.0000019803,0.0000019796,0.0000019793,0.0000019793,0.0000019792, +0.0000019793,0.0000019790,0.0000019787,0.0000019783,0.0000019776, +0.0000019766,0.0000019750,0.0000019734,0.0000019714,0.0000019693, +0.0000019672,0.0000019651,0.0000019630,0.0000019610,0.0000019592, +0.0000019574,0.0000019556,0.0000019539,0.0000019521,0.0000019504, +0.0000019487,0.0000019474,0.0000019463,0.0000019454,0.0000019448, +0.0000019441,0.0000019432,0.0000019420,0.0000019403,0.0000019380, +0.0000019351,0.0000019315,0.0000019272,0.0000019228,0.0000019188, +0.0000019156,0.0000019133,0.0000019111,0.0000019082,0.0000019039, +0.0000018974,0.0000018887,0.0000018777,0.0000018647,0.0000018504, +0.0000018358,0.0000018212,0.0000018069,0.0000017937,0.0000017823, +0.0000017727,0.0000017651,0.0000017595,0.0000017551,0.0000017517, +0.0000017492,0.0000017488,0.0000017468,0.0000017469,0.0000017470, +0.0000017477,0.0000017485,0.0000017493,0.0000017497,0.0000017489, +0.0000017484,0.0000017466,0.0000017446,0.0000017411,0.0000017377, +0.0000017338,0.0000017296,0.0000017251,0.0000017217,0.0000017186, +0.0000017158,0.0000017140,0.0000017127,0.0000017120,0.0000017118, +0.0000017117,0.0000017116,0.0000017120,0.0000017123,0.0000017124, +0.0000017122,0.0000017119,0.0000017118,0.0000017119,0.0000017122, +0.0000017126,0.0000017135,0.0000017152,0.0000017170,0.0000017183, +0.0000017198,0.0000017222,0.0000017244,0.0000017266,0.0000017292, +0.0000017307,0.0000017328,0.0000017350,0.0000017368,0.0000017379, +0.0000017389,0.0000017399,0.0000017406,0.0000017412,0.0000017418, +0.0000017424,0.0000017429,0.0000017431,0.0000017435,0.0000017435, +0.0000017431,0.0000017422,0.0000017409,0.0000017390,0.0000017366, +0.0000017338,0.0000017309,0.0000017281,0.0000017263,0.0000017243, +0.0000017218,0.0000017204,0.0000017207,0.0000017231,0.0000017228, +0.0000017256,0.0000017298,0.0000017325,0.0000017356,0.0000017401, +0.0000017443,0.0000017473,0.0000017501,0.0000017519,0.0000017529, +0.0000017534,0.0000017525,0.0000017504,0.0000017493,0.0000017470, +0.0000017436,0.0000017402,0.0000017384,0.0000017360,0.0000017337, +0.0000017336,0.0000017313,0.0000017340,0.0000017397,0.0000017482, +0.0000017582,0.0000017707,0.0000017857,0.0000018021,0.0000018194, +0.0000018367,0.0000018532,0.0000018680,0.0000018804,0.0000018904, +0.0000018976,0.0000019025,0.0000019058,0.0000019078,0.0000019086, +0.0000019092,0.0000019094,0.0000019093,0.0000019090,0.0000019088, +0.0000019087,0.0000019090,0.0000019101,0.0000019119,0.0000019141, +0.0000019164,0.0000019188,0.0000019212,0.0000019232,0.0000019255, +0.0000019277,0.0000019299,0.0000019319,0.0000019337,0.0000019356, +0.0000019374,0.0000019392,0.0000019406,0.0000019419,0.0000019432, +0.0000019441,0.0000019444,0.0000019446,0.0000019447,0.0000019449, +0.0000019452,0.0000019459,0.0000019473,0.0000019491,0.0000019511, +0.0000019529,0.0000019545,0.0000019559,0.0000019573,0.0000019584, +0.0000019596,0.0000019613,0.0000019633,0.0000019652,0.0000019668, +0.0000019677,0.0000019687,0.0000019705,0.0000019733,0.0000019768, +0.0000019802,0.0000019835,0.0000019866,0.0000019889,0.0000019906, +0.0000019921,0.0000019937,0.0000019950,0.0000019961,0.0000019973, +0.0000019978,0.0000019980,0.0000019980,0.0000019979,0.0000019977, +0.0000019971,0.0000019964,0.0000019959,0.0000019952,0.0000019939, +0.0000019925,0.0000019910,0.0000019898,0.0000019899,0.0000019908, +0.0000019922,0.0000019943,0.0000019964,0.0000019982,0.0000020000, +0.0000020011,0.0000020016,0.0000020015,0.0000020010,0.0000020001, +0.0000019989,0.0000019975,0.0000019959,0.0000019942,0.0000019919, +0.0000019891,0.0000019858,0.0000019850,0.0000019851,0.0000019853, +0.0000019856,0.0000019863,0.0000019862,0.0000019857,0.0000019858, +0.0000019864,0.0000019858,0.0000019845,0.0000019824,0.0000019796, +0.0000019766,0.0000019754,0.0000019741,0.0000019754,0.0000019786, +0.0000019834,0.0000019894,0.0000019965,0.0000020038,0.0000020107, +0.0000020153,0.0000020178,0.0000020184,0.0000020179,0.0000020161, +0.0000020136,0.0000020111,0.0000020084,0.0000020056,0.0000020030, +0.0000020002,0.0000019976,0.0000019954,0.0000019938,0.0000019940, +0.0000019952,0.0000019965,0.0000019980,0.0000019996,0.0000020015, +0.0000020037,0.0000020052,0.0000020062,0.0000020068,0.0000020074, +0.0000020080,0.0000020076,0.0000020069,0.0000020056,0.0000020037, +0.0000020013,0.0000019986,0.0000019964,0.0000019945,0.0000019925, +0.0000019911,0.0000019898,0.0000019888,0.0000019870,0.0000019851, +0.0000019824,0.0000019796,0.0000019771,0.0000019756,0.0000019740, +0.0000019731,0.0000019715,0.0000019696,0.0000019682,0.0000019674, +0.0000019666,0.0000019663,0.0000019665,0.0000019661,0.0000019656, +0.0000019657,0.0000019664,0.0000019659,0.0000019635,0.0000019602, +0.0000019556,0.0000019503,0.0000019445,0.0000019379,0.0000019324, +0.0000019291,0.0000019283,0.0000019296,0.0000019322,0.0000019355, +0.0000019387,0.0000019403,0.0000019407,0.0000019403,0.0000019389, +0.0000019370,0.0000019355,0.0000019350,0.0000019357,0.0000019373, +0.0000019393,0.0000019407,0.0000019412,0.0000019411,0.0000019408, +0.0000019402,0.0000019386,0.0000019365,0.0000019336,0.0000019305, +0.0000019285,0.0000019275,0.0000019272,0.0000019280,0.0000019297, +0.0000019319,0.0000019333,0.0000019336,0.0000019335,0.0000019333, +0.0000019326,0.0000019311,0.0000019291,0.0000019270,0.0000019255, +0.0000019248,0.0000019248,0.0000019255,0.0000019272,0.0000019304, +0.0000019348,0.0000019395,0.0000019434,0.0000019463,0.0000019479, +0.0000019479,0.0000019485,0.0000019474,0.0000019450,0.0000019411, +0.0000019361,0.0000019303,0.0000019244,0.0000019196,0.0000019155, +0.0000019117,0.0000019101,0.0000019078,0.0000019071,0.0000019073, +0.0000019083,0.0000019097,0.0000019110,0.0000019118,0.0000019126, +0.0000019129,0.0000019124,0.0000019110,0.0000019103,0.0000019084, +0.0000019062,0.0000019033,0.0000018991,0.0000018939,0.0000018894, +0.0000018844,0.0000018824,0.0000018814,0.0000018827,0.0000018842, +0.0000018847,0.0000018829,0.0000018788,0.0000018736,0.0000018692, +0.0000018673,0.0000018682,0.0000018727,0.0000018793,0.0000018871, +0.0000018933,0.0000018977,0.0000018988,0.0000018977,0.0000018959, +0.0000018927,0.0000018895,0.0000018861,0.0000018829,0.0000018796, +0.0000018766,0.0000018731,0.0000018693,0.0000018662,0.0000018640, +0.0000018632,0.0000018644,0.0000018684,0.0000018741,0.0000018810, +0.0000018896,0.0000018984,0.0000019062,0.0000019126,0.0000019154, +0.0000019171,0.0000019173,0.0000019174,0.0000019185,0.0000019197, +0.0000019197,0.0000019176,0.0000019133,0.0000019074,0.0000019012, +0.0000018953,0.0000018888,0.0000018845,0.0000018842,0.0000018861, +0.0000018897,0.0000018941,0.0000018982,0.0000019012,0.0000019032, +0.0000019046,0.0000019064,0.0000019087,0.0000019098,0.0000019094, +0.0000019075,0.0000019037,0.0000019009,0.0000018999,0.0000019006, +0.0000019024,0.0000019035,0.0000019039,0.0000019040,0.0000019041, +0.0000019044,0.0000019046,0.0000019035,0.0000018996,0.0000018952, +0.0000018909,0.0000018866,0.0000018827,0.0000018801,0.0000018798, +0.0000018821,0.0000018862,0.0000018894,0.0000018894,0.0000018856, +0.0000018778,0.0000018678,0.0000018587,0.0000018525,0.0000018506, +0.0000018505,0.0000018510,0.0000018509,0.0000018480,0.0000018434, +0.0000018381,0.0000018315,0.0000018270,0.0000018235,0.0000018220, +0.0000018221,0.0000018229,0.0000018229,0.0000018224,0.0000018227, +0.0000018228,0.0000018223,0.0000018229,0.0000018250,0.0000018290, +0.0000018348,0.0000018417,0.0000018482,0.0000018546,0.0000018596, +0.0000018627,0.0000018641,0.0000018639,0.0000018617,0.0000018576, +0.0000018524,0.0000018460,0.0000018396,0.0000018351,0.0000018326, +0.0000018311,0.0000018292,0.0000018272,0.0000018258,0.0000018250, +0.0000018246,0.0000018239,0.0000018236,0.0000018239,0.0000018248, +0.0000018255,0.0000018254,0.0000018243,0.0000018229,0.0000018217, +0.0000018206,0.0000018192,0.0000018171,0.0000018146,0.0000018129, +0.0000018111,0.0000018100,0.0000018089,0.0000018080,0.0000018079, +0.0000018083,0.0000018092,0.0000018103,0.0000018110,0.0000018113, +0.0000018112,0.0000018110,0.0000018111,0.0000018113,0.0000018113, +0.0000018111,0.0000018106,0.0000018099,0.0000018091,0.0000018085, +0.0000018078,0.0000018068,0.0000018050,0.0000018028,0.0000018004, +0.0000017981,0.0000017962,0.0000017949,0.0000017939,0.0000017932, +0.0000017927,0.0000017922,0.0000017914,0.0000017908,0.0000017911, +0.0000017919,0.0000017934,0.0000017952,0.0000017970,0.0000017982, +0.0000017990,0.0000017992,0.0000017988,0.0000017991,0.0000017995, +0.0000018007,0.0000018040,0.0000018087,0.0000018142,0.0000018206, +0.0000018270,0.0000018326,0.0000018377,0.0000018422,0.0000018462, +0.0000018501,0.0000018541,0.0000018583,0.0000018621,0.0000018656, +0.0000018694,0.0000018748,0.0000018831,0.0000018947,0.0000019093, +0.0000019256,0.0000019406,0.0000019516,0.0000019579,0.0000019568, +0.0000019543,0.0000019481,0.0000019413,0.0000019335,0.0000019237, +0.0000019124,0.0000019014,0.0000018931,0.0000018891,0.0000018873, +0.0000018869,0.0000018873,0.0000018879,0.0000018883,0.0000018881, +0.0000018879,0.0000018877,0.0000018867,0.0000018839,0.0000018796, +0.0000018746,0.0000018700,0.0000018661,0.0000018622,0.0000018583, +0.0000018559,0.0000018550,0.0000018550,0.0000018551,0.0000018553, +0.0000018567,0.0000018588,0.0000018610,0.0000018634,0.0000018653, +0.0000018657,0.0000018644,0.0000018615,0.0000018574,0.0000018527, +0.0000018479,0.0000018438,0.0000018410,0.0000018394,0.0000018381, +0.0000018365,0.0000018350,0.0000018344,0.0000018345,0.0000018349, +0.0000018357,0.0000018371,0.0000018392,0.0000018415,0.0000018433, +0.0000018443,0.0000018442,0.0000018433,0.0000018425,0.0000018418, +0.0000018417,0.0000018417,0.0000018407,0.0000018385,0.0000018354, +0.0000018308,0.0000018262,0.0000018219,0.0000018183,0.0000018158, +0.0000018147,0.0000018142,0.0000018160,0.0000018186,0.0000018214, +0.0000018237,0.0000018250,0.0000018259,0.0000018269,0.0000018291, +0.0000018324,0.0000018365,0.0000018409,0.0000018451,0.0000018484, +0.0000018509,0.0000018527,0.0000018537,0.0000018539,0.0000018539, +0.0000018540,0.0000018540,0.0000018539,0.0000018536,0.0000018531, +0.0000018525,0.0000018521,0.0000018515,0.0000018508,0.0000018500, +0.0000018491,0.0000018480,0.0000018471,0.0000018467,0.0000018466, +0.0000018466,0.0000018463,0.0000018461,0.0000018461,0.0000018460, +0.0000018458,0.0000018452,0.0000018439,0.0000018423,0.0000018403, +0.0000018379,0.0000018352,0.0000018325,0.0000018302,0.0000018284, +0.0000018271,0.0000018264,0.0000018267,0.0000018277,0.0000018296, +0.0000018324,0.0000018364,0.0000018412,0.0000018463,0.0000018508, +0.0000018543,0.0000018564,0.0000018577,0.0000018578,0.0000018560, +0.0000018518,0.0000018480,0.0000018506,0.0000018596,0.0000018671, +0.0000018801,0.0000018829,0.0000018748,0.0000018746,0.0000018836, +0.0000018700,0.0000018458,0.0000018533,0.0000018770,0.0000018820, +0.0000018753,0.0000018705,0.0000018706,0.0000018719,0.0000018725, +0.0000018724,0.0000018725,0.0000018771,0.0000018859,0.0000018932, +0.0000018954,0.0000018955,0.0000018953,0.0000018952,0.0000018950, +0.0000018949,0.0000018949,0.0000018951,0.0000018952,0.0000018950, +0.0000018949,0.0000018953,0.0000018959,0.0000018962,0.0000018938, +0.0000018771,0.0000018353,0.0000017891,0.0000017664,0.0000017604, +0.0000017549,0.0000017503,0.0000017489,0.0000017493,0.0000017506, +0.0000017515,0.0000017509,0.0000017484,0.0000017470,0.0000017477, +0.0000017501,0.0000017531,0.0000017561,0.0000017584,0.0000017604, +0.0000017624,0.0000017644,0.0000017661,0.0000017673,0.0000017680, +0.0000017684,0.0000017690,0.0000017699,0.0000017707,0.0000017715, +0.0000017722,0.0000017729,0.0000017735,0.0000017742,0.0000017749, +0.0000017760,0.0000017766,0.0000017773,0.0000017783,0.0000017795, +0.0000017807,0.0000017816,0.0000017822,0.0000017834,0.0000017845, +0.0000017856,0.0000017870,0.0000017883,0.0000017899,0.0000017918, +0.0000017937,0.0000017959,0.0000017985,0.0000018015,0.0000018049, +0.0000018095,0.0000018164,0.0000018256,0.0000018363,0.0000018447, +0.0000018484,0.0000018456,0.0000018367,0.0000018277,0.0000018233, +0.0000018229,0.0000018236,0.0000018253,0.0000018278,0.0000018289, +0.0000018282,0.0000018266,0.0000018250,0.0000018241,0.0000018235, +0.0000018235,0.0000018236,0.0000018237,0.0000018236,0.0000018234, +0.0000018227,0.0000018215,0.0000018198,0.0000018180,0.0000018162, +0.0000018145,0.0000018141,0.0000018147,0.0000018159,0.0000018176, +0.0000018199,0.0000018229,0.0000018260,0.0000018289,0.0000018314, +0.0000018329,0.0000018333,0.0000018333,0.0000018325,0.0000018309, +0.0000018294,0.0000018283,0.0000018280,0.0000018282,0.0000018283, +0.0000018281,0.0000018273,0.0000018260,0.0000018246,0.0000018231, +0.0000018222,0.0000018217,0.0000018218,0.0000018223,0.0000018224, +0.0000018225,0.0000018225,0.0000018223,0.0000018217,0.0000018212, +0.0000018207,0.0000018209,0.0000018217,0.0000018236,0.0000018259, +0.0000018282,0.0000018301,0.0000018325,0.0000018370,0.0000018395, +0.0000018419,0.0000018439,0.0000018456,0.0000018473,0.0000018492, +0.0000018510,0.0000018528,0.0000018545,0.0000018560,0.0000018573, +0.0000018584,0.0000018592,0.0000018599,0.0000018604,0.0000018605, +0.0000018605,0.0000018601,0.0000018597,0.0000018592,0.0000018583, +0.0000018569,0.0000018548,0.0000018522,0.0000018493,0.0000018462, +0.0000018438,0.0000018425,0.0000018420,0.0000018418,0.0000018417, +0.0000018411,0.0000018407,0.0000018399,0.0000018387,0.0000018371, +0.0000018351,0.0000018330,0.0000018310,0.0000018296,0.0000018286, +0.0000018279,0.0000018273,0.0000018264,0.0000018246,0.0000018213, +0.0000018165,0.0000018107,0.0000018047,0.0000017992,0.0000017954, +0.0000017932,0.0000017918,0.0000017901,0.0000017878,0.0000017852, +0.0000017829,0.0000017813,0.0000017801,0.0000017808,0.0000017827, +0.0000017861,0.0000017905,0.0000017946,0.0000017966,0.0000017968, +0.0000017956,0.0000017944,0.0000017937,0.0000017957,0.0000018025, +0.0000018140,0.0000018264,0.0000018354,0.0000018372,0.0000018363, +0.0000018342,0.0000018320,0.0000018306,0.0000018302,0.0000018311, +0.0000018333,0.0000018361,0.0000018374,0.0000018363,0.0000018330, +0.0000018280,0.0000018221,0.0000018151,0.0000018071,0.0000017988, +0.0000017913,0.0000017855,0.0000017816,0.0000017794,0.0000017786, +0.0000017788,0.0000017801,0.0000017824,0.0000017849,0.0000017862, +0.0000017864,0.0000017857,0.0000017844,0.0000017822,0.0000017791, +0.0000017764,0.0000017748,0.0000017755,0.0000017796,0.0000017867, +0.0000017938,0.0000017986,0.0000018020,0.0000018061,0.0000018119, +0.0000018175,0.0000018213,0.0000018234,0.0000018242,0.0000018239, +0.0000018226,0.0000018201,0.0000018175,0.0000018148,0.0000018119, +0.0000018086,0.0000018044,0.0000017991,0.0000017936,0.0000017885, +0.0000017838,0.0000017796,0.0000017758,0.0000017723,0.0000017684, +0.0000017640,0.0000017601,0.0000017580,0.0000017576,0.0000017579, +0.0000017585,0.0000017585,0.0000017574,0.0000017556,0.0000017538, +0.0000017526,0.0000017520,0.0000017518,0.0000017519,0.0000017523, +0.0000017527,0.0000017533,0.0000017544,0.0000017563,0.0000017588, +0.0000017612,0.0000017633,0.0000017650,0.0000017664,0.0000017674, +0.0000017681,0.0000017690,0.0000017702,0.0000017713,0.0000017724, +0.0000017734,0.0000017740,0.0000017739,0.0000017731,0.0000017716, +0.0000017697,0.0000017671,0.0000017642,0.0000017609,0.0000017573, +0.0000017533,0.0000017493,0.0000017453,0.0000017417,0.0000017387, +0.0000017363,0.0000017347,0.0000017337,0.0000017328,0.0000017322, +0.0000017326,0.0000017327,0.0000017328,0.0000017332,0.0000017336, +0.0000017342,0.0000017352,0.0000017363,0.0000017376,0.0000017389, +0.0000017401,0.0000017411,0.0000017423,0.0000017435,0.0000017448, +0.0000017464,0.0000017479,0.0000017494,0.0000017509,0.0000017528, +0.0000017552,0.0000017579,0.0000017606,0.0000017631,0.0000017654, +0.0000017678,0.0000017699,0.0000017716,0.0000017728,0.0000017733, +0.0000017732,0.0000017721,0.0000017704,0.0000017686,0.0000017666, +0.0000017645,0.0000017625,0.0000017609,0.0000017600,0.0000017600, +0.0000017603,0.0000017602,0.0000017594,0.0000017580,0.0000017560, +0.0000017536,0.0000017508,0.0000017476,0.0000017440,0.0000017403, +0.0000017365,0.0000017334,0.0000017309,0.0000017299,0.0000017322, +0.0000017408,0.0000017557,0.0000017740,0.0000017913,0.0000018030, +0.0000018074,0.0000018091,0.0000018139,0.0000018217,0.0000018300, +0.0000018337,0.0000018320,0.0000018213,0.0000018036,0.0000017856, +0.0000017741,0.0000017724,0.0000017730,0.0000017738,0.0000017745, +0.0000017756,0.0000017766,0.0000017771,0.0000017775,0.0000017785, +0.0000017805,0.0000017830,0.0000017845,0.0000017840,0.0000017812, +0.0000017770,0.0000017697,0.0000017589,0.0000017480,0.0000017433, +0.0000017433,0.0000017466,0.0000017499,0.0000017540,0.0000017639, +0.0000017830,0.0000018028,0.0000018129,0.0000018175,0.0000018224, +0.0000018284,0.0000018405,0.0000018601,0.0000018783,0.0000018917, +0.0000019030,0.0000019140,0.0000019238,0.0000019273,0.0000019264, +0.0000019298,0.0000019382,0.0000019467,0.0000019518,0.0000019539, +0.0000019554,0.0000019579,0.0000019607,0.0000019634,0.0000019659, +0.0000019681,0.0000019699,0.0000019711,0.0000019717,0.0000019719, +0.0000019722,0.0000019722,0.0000019723,0.0000019725,0.0000019726, +0.0000019723,0.0000019717,0.0000019712,0.0000019715,0.0000019727, +0.0000019743,0.0000019759,0.0000019775,0.0000019785,0.0000019792, +0.0000019794,0.0000019794,0.0000019790,0.0000019788,0.0000019787, +0.0000019786,0.0000019785,0.0000019782,0.0000019783,0.0000019787, +0.0000019789,0.0000019790,0.0000019789,0.0000019787,0.0000019784, +0.0000019778,0.0000019769,0.0000019755,0.0000019738,0.0000019719, +0.0000019699,0.0000019677,0.0000019655,0.0000019634,0.0000019612, +0.0000019593,0.0000019574,0.0000019555,0.0000019537,0.0000019520, +0.0000019503,0.0000019485,0.0000019469,0.0000019455,0.0000019441, +0.0000019426,0.0000019406,0.0000019382,0.0000019350,0.0000019312, +0.0000019272,0.0000019233,0.0000019195,0.0000019161,0.0000019133, +0.0000019109,0.0000019080,0.0000019041,0.0000018982,0.0000018897, +0.0000018787,0.0000018654,0.0000018507,0.0000018348,0.0000018188, +0.0000018033,0.0000017893,0.0000017776,0.0000017679,0.0000017609, +0.0000017564,0.0000017538,0.0000017522,0.0000017525,0.0000017517, +0.0000017511,0.0000017510,0.0000017516,0.0000017523,0.0000017530, +0.0000017538,0.0000017537,0.0000017533,0.0000017514,0.0000017505, +0.0000017475,0.0000017447,0.0000017407,0.0000017364,0.0000017317, +0.0000017270,0.0000017227,0.0000017187,0.0000017149,0.0000017125, +0.0000017107,0.0000017092,0.0000017085,0.0000017085,0.0000017092, +0.0000017097,0.0000017103,0.0000017109,0.0000017117,0.0000017125, +0.0000017128,0.0000017126,0.0000017123,0.0000017122,0.0000017120, +0.0000017120,0.0000017129,0.0000017149,0.0000017182,0.0000017214, +0.0000017243,0.0000017275,0.0000017306,0.0000017335,0.0000017363, +0.0000017390,0.0000017415,0.0000017444,0.0000017473,0.0000017496, +0.0000017512,0.0000017522,0.0000017530,0.0000017539,0.0000017544, +0.0000017548,0.0000017552,0.0000017557,0.0000017560,0.0000017567, +0.0000017570,0.0000017570,0.0000017565,0.0000017555,0.0000017541, +0.0000017521,0.0000017496,0.0000017469,0.0000017440,0.0000017410, +0.0000017381,0.0000017355,0.0000017332,0.0000017312,0.0000017295, +0.0000017286,0.0000017295,0.0000017301,0.0000017298,0.0000017309, +0.0000017349,0.0000017348,0.0000017365,0.0000017390,0.0000017409, +0.0000017417,0.0000017427,0.0000017440,0.0000017440,0.0000017442, +0.0000017434,0.0000017430,0.0000017423,0.0000017410,0.0000017389, +0.0000017376,0.0000017354,0.0000017326,0.0000017310,0.0000017301, +0.0000017305,0.0000017298,0.0000017301,0.0000017348,0.0000017422, +0.0000017524,0.0000017662,0.0000017825,0.0000018010,0.0000018203, +0.0000018392,0.0000018564,0.0000018713,0.0000018837,0.0000018932, +0.0000018999,0.0000019045,0.0000019068,0.0000019078,0.0000019073, +0.0000019065,0.0000019058,0.0000019053,0.0000019053,0.0000019061, +0.0000019078,0.0000019100,0.0000019124,0.0000019149,0.0000019175, +0.0000019200,0.0000019223,0.0000019243,0.0000019259,0.0000019272, +0.0000019284,0.0000019296,0.0000019307,0.0000019316,0.0000019325, +0.0000019335,0.0000019342,0.0000019351,0.0000019364,0.0000019377, +0.0000019389,0.0000019401,0.0000019414,0.0000019430,0.0000019448, +0.0000019468,0.0000019489,0.0000019509,0.0000019523,0.0000019535, +0.0000019546,0.0000019557,0.0000019571,0.0000019587,0.0000019603, +0.0000019618,0.0000019631,0.0000019641,0.0000019655,0.0000019677, +0.0000019705,0.0000019739,0.0000019774,0.0000019812,0.0000019844, +0.0000019870,0.0000019892,0.0000019914,0.0000019932,0.0000019949, +0.0000019966,0.0000019980,0.0000019985,0.0000019998,0.0000020004, +0.0000020004,0.0000020001,0.0000019998,0.0000019994,0.0000019986, +0.0000019977,0.0000019966,0.0000019954,0.0000019947,0.0000019949, +0.0000019954,0.0000019961,0.0000019973,0.0000019988,0.0000020005, +0.0000020022,0.0000020036,0.0000020043,0.0000020043,0.0000020038, +0.0000020027,0.0000020010,0.0000019991,0.0000019968,0.0000019941, +0.0000019915,0.0000019889,0.0000019878,0.0000019877,0.0000019872, +0.0000019865,0.0000019861,0.0000019859,0.0000019852,0.0000019844, +0.0000019845,0.0000019845,0.0000019843,0.0000019839,0.0000019835, +0.0000019830,0.0000019818,0.0000019800,0.0000019785,0.0000019773, +0.0000019781,0.0000019787,0.0000019809,0.0000019842,0.0000019890, +0.0000019944,0.0000019997,0.0000020048,0.0000020091,0.0000020118, +0.0000020122,0.0000020108,0.0000020082,0.0000020051,0.0000020016, +0.0000019980,0.0000019944,0.0000019909,0.0000019873,0.0000019852, +0.0000019849,0.0000019856,0.0000019867,0.0000019885,0.0000019907, +0.0000019936,0.0000019963,0.0000019979,0.0000019987,0.0000019991, +0.0000019997,0.0000019999,0.0000020005,0.0000019998,0.0000019981, +0.0000019958,0.0000019933,0.0000019906,0.0000019884,0.0000019867, +0.0000019848,0.0000019834,0.0000019817,0.0000019804,0.0000019792, +0.0000019780,0.0000019766,0.0000019757,0.0000019752,0.0000019744, +0.0000019745,0.0000019738,0.0000019718,0.0000019692,0.0000019670, +0.0000019650,0.0000019640,0.0000019635,0.0000019620,0.0000019599, +0.0000019581,0.0000019571,0.0000019558,0.0000019544,0.0000019520, +0.0000019481,0.0000019438,0.0000019387,0.0000019325,0.0000019264, +0.0000019214,0.0000019179,0.0000019163,0.0000019166,0.0000019185, +0.0000019211,0.0000019228,0.0000019238,0.0000019239,0.0000019232, +0.0000019216,0.0000019195,0.0000019172,0.0000019153,0.0000019141, +0.0000019138,0.0000019146,0.0000019162,0.0000019187,0.0000019218, +0.0000019247,0.0000019265,0.0000019272,0.0000019256,0.0000019227, +0.0000019195,0.0000019163,0.0000019136,0.0000019120,0.0000019120, +0.0000019136,0.0000019159,0.0000019184,0.0000019206,0.0000019224, +0.0000019239,0.0000019247,0.0000019245,0.0000019236,0.0000019221, +0.0000019205,0.0000019194,0.0000019186,0.0000019181,0.0000019189, +0.0000019211,0.0000019249,0.0000019294,0.0000019338,0.0000019376, +0.0000019413,0.0000019445,0.0000019472,0.0000019479,0.0000019478, +0.0000019466,0.0000019437,0.0000019401,0.0000019361,0.0000019313, +0.0000019255,0.0000019194,0.0000019141,0.0000019101,0.0000019069, +0.0000019058,0.0000019048,0.0000019045,0.0000019043,0.0000019047, +0.0000019054,0.0000019059,0.0000019066,0.0000019069,0.0000019079, +0.0000019090,0.0000019091,0.0000019094,0.0000019068,0.0000019025, +0.0000018959,0.0000018889,0.0000018844,0.0000018816,0.0000018821, +0.0000018822,0.0000018824,0.0000018816,0.0000018785,0.0000018727, +0.0000018663,0.0000018612,0.0000018571,0.0000018575,0.0000018636, +0.0000018723,0.0000018814,0.0000018895,0.0000018945,0.0000018972, +0.0000018971,0.0000018964,0.0000018929,0.0000018880,0.0000018828, +0.0000018777,0.0000018727,0.0000018677,0.0000018633,0.0000018581, +0.0000018552,0.0000018551,0.0000018574,0.0000018615,0.0000018660, +0.0000018720,0.0000018796,0.0000018883,0.0000018975,0.0000019064, +0.0000019138,0.0000019170,0.0000019181,0.0000019181,0.0000019179, +0.0000019176,0.0000019161,0.0000019133,0.0000019084,0.0000019025, +0.0000018958,0.0000018881,0.0000018817,0.0000018767,0.0000018744, +0.0000018748,0.0000018764,0.0000018781,0.0000018804,0.0000018840, +0.0000018888,0.0000018943,0.0000019001,0.0000019046,0.0000019071, +0.0000019059,0.0000019033,0.0000019014,0.0000019012,0.0000019028, +0.0000019045,0.0000019057,0.0000019062,0.0000019060,0.0000019058, +0.0000019053,0.0000019053,0.0000019028,0.0000018990,0.0000018945, +0.0000018902,0.0000018857,0.0000018818,0.0000018795,0.0000018792, +0.0000018813,0.0000018852,0.0000018889,0.0000018895,0.0000018869, +0.0000018797,0.0000018701,0.0000018601,0.0000018529,0.0000018495, +0.0000018495,0.0000018501,0.0000018508,0.0000018487,0.0000018441, +0.0000018390,0.0000018340,0.0000018308,0.0000018268,0.0000018243, +0.0000018247,0.0000018253,0.0000018239,0.0000018222,0.0000018209, +0.0000018198,0.0000018191,0.0000018201,0.0000018228,0.0000018266, +0.0000018312,0.0000018367,0.0000018424,0.0000018486,0.0000018545, +0.0000018587,0.0000018614,0.0000018625,0.0000018612,0.0000018586, +0.0000018544,0.0000018488,0.0000018427,0.0000018372,0.0000018333, +0.0000018308,0.0000018275,0.0000018243,0.0000018215,0.0000018201, +0.0000018195,0.0000018192,0.0000018193,0.0000018201,0.0000018213, +0.0000018223,0.0000018228,0.0000018226,0.0000018222,0.0000018220, +0.0000018218,0.0000018211,0.0000018195,0.0000018169,0.0000018141, +0.0000018117,0.0000018097,0.0000018080,0.0000018069,0.0000018057, +0.0000018053,0.0000018055,0.0000018063,0.0000018072,0.0000018080, +0.0000018086,0.0000018092,0.0000018099,0.0000018103,0.0000018105, +0.0000018103,0.0000018097,0.0000018091,0.0000018085,0.0000018079, +0.0000018074,0.0000018065,0.0000018050,0.0000018031,0.0000018010, +0.0000017988,0.0000017964,0.0000017942,0.0000017926,0.0000017909, +0.0000017899,0.0000017893,0.0000017889,0.0000017888,0.0000017892, +0.0000017902,0.0000017918,0.0000017940,0.0000017961,0.0000017975, +0.0000017987,0.0000017993,0.0000017997,0.0000018000,0.0000018000, +0.0000018008,0.0000018024,0.0000018048,0.0000018078,0.0000018124, +0.0000018180,0.0000018241,0.0000018299,0.0000018349,0.0000018392, +0.0000018429,0.0000018468,0.0000018512,0.0000018557,0.0000018598, +0.0000018634,0.0000018672,0.0000018725,0.0000018803,0.0000018914, +0.0000019053,0.0000019209,0.0000019359,0.0000019476,0.0000019545, +0.0000019536,0.0000019507,0.0000019446,0.0000019376,0.0000019292, +0.0000019189,0.0000019073,0.0000018967,0.0000018897,0.0000018869, +0.0000018866,0.0000018868,0.0000018874,0.0000018883,0.0000018887, +0.0000018888,0.0000018890,0.0000018887,0.0000018873,0.0000018845, +0.0000018800,0.0000018745,0.0000018695,0.0000018650,0.0000018606, +0.0000018566,0.0000018544,0.0000018534,0.0000018532,0.0000018535, +0.0000018544,0.0000018562,0.0000018582,0.0000018603,0.0000018626, +0.0000018644,0.0000018648,0.0000018629,0.0000018593,0.0000018551, +0.0000018506,0.0000018462,0.0000018422,0.0000018393,0.0000018374, +0.0000018359,0.0000018346,0.0000018340,0.0000018340,0.0000018339, +0.0000018340,0.0000018353,0.0000018371,0.0000018388,0.0000018401, +0.0000018405,0.0000018402,0.0000018397,0.0000018396,0.0000018395, +0.0000018392,0.0000018384,0.0000018371,0.0000018351,0.0000018323, +0.0000018287,0.0000018247,0.0000018208,0.0000018173,0.0000018146, +0.0000018131,0.0000018124,0.0000018135,0.0000018158,0.0000018185, +0.0000018213,0.0000018234,0.0000018243,0.0000018243,0.0000018238, +0.0000018237,0.0000018246,0.0000018267,0.0000018294,0.0000018326, +0.0000018362,0.0000018397,0.0000018428,0.0000018456,0.0000018476, +0.0000018489,0.0000018498,0.0000018502,0.0000018505,0.0000018504, +0.0000018502,0.0000018497,0.0000018491,0.0000018485,0.0000018477, +0.0000018468,0.0000018460,0.0000018454,0.0000018454,0.0000018455, +0.0000018455,0.0000018452,0.0000018445,0.0000018431,0.0000018409, +0.0000018383,0.0000018353,0.0000018321,0.0000018289,0.0000018257, +0.0000018229,0.0000018210,0.0000018201,0.0000018204,0.0000018213, +0.0000018232,0.0000018258,0.0000018288,0.0000018327,0.0000018373, +0.0000018420,0.0000018460,0.0000018498,0.0000018524,0.0000018541, +0.0000018550,0.0000018553,0.0000018543,0.0000018510,0.0000018462, +0.0000018459,0.0000018545,0.0000018639,0.0000018766,0.0000018842, +0.0000018769,0.0000018730,0.0000018805,0.0000018726,0.0000018394, +0.0000018298,0.0000018450,0.0000018691,0.0000018780,0.0000018753, +0.0000018741,0.0000018743,0.0000018746,0.0000018743,0.0000018736, +0.0000018724,0.0000018722,0.0000018748,0.0000018812,0.0000018884, +0.0000018933,0.0000018954,0.0000018963,0.0000018968,0.0000018968, +0.0000018966,0.0000018962,0.0000018959,0.0000018956,0.0000018950, +0.0000018940,0.0000018913,0.0000018794,0.0000018453,0.0000017994, +0.0000017704,0.0000017615,0.0000017559,0.0000017499,0.0000017471, +0.0000017465,0.0000017460,0.0000017460,0.0000017463,0.0000017456, +0.0000017437,0.0000017429,0.0000017439,0.0000017466,0.0000017497, +0.0000017526,0.0000017550,0.0000017569,0.0000017587,0.0000017601, +0.0000017611,0.0000017617,0.0000017622,0.0000017628,0.0000017641, +0.0000017659,0.0000017676,0.0000017689,0.0000017704,0.0000017716, +0.0000017736,0.0000017756,0.0000017771,0.0000017783,0.0000017791, +0.0000017799,0.0000017805,0.0000017806,0.0000017804,0.0000017805, +0.0000017800,0.0000017801,0.0000017800,0.0000017801,0.0000017806, +0.0000017815,0.0000017829,0.0000017848,0.0000017871,0.0000017898, +0.0000017927,0.0000017957,0.0000017992,0.0000018032,0.0000018086, +0.0000018153,0.0000018236,0.0000018327,0.0000018402,0.0000018444, +0.0000018431,0.0000018368,0.0000018270,0.0000018218,0.0000018209, +0.0000018212,0.0000018220,0.0000018239,0.0000018263,0.0000018267, +0.0000018256,0.0000018246,0.0000018238,0.0000018243,0.0000018250, +0.0000018264,0.0000018268,0.0000018271,0.0000018273,0.0000018270, +0.0000018260,0.0000018246,0.0000018229,0.0000018205,0.0000018187, +0.0000018174,0.0000018168,0.0000018167,0.0000018174,0.0000018191, +0.0000018212,0.0000018238,0.0000018266,0.0000018289,0.0000018305, +0.0000018312,0.0000018310,0.0000018301,0.0000018287,0.0000018273, +0.0000018263,0.0000018259,0.0000018258,0.0000018255,0.0000018248, +0.0000018234,0.0000018218,0.0000018202,0.0000018187,0.0000018178, +0.0000018173,0.0000018178,0.0000018185,0.0000018191,0.0000018202, +0.0000018207,0.0000018212,0.0000018214,0.0000018218,0.0000018225, +0.0000018236,0.0000018252,0.0000018276,0.0000018302,0.0000018326, +0.0000018348,0.0000018391,0.0000018406,0.0000018422,0.0000018441, +0.0000018461,0.0000018477,0.0000018493,0.0000018510,0.0000018529, +0.0000018547,0.0000018564,0.0000018580,0.0000018594,0.0000018605, +0.0000018614,0.0000018620,0.0000018622,0.0000018619,0.0000018612, +0.0000018603,0.0000018592,0.0000018581,0.0000018568,0.0000018550, +0.0000018527,0.0000018500,0.0000018468,0.0000018437,0.0000018406, +0.0000018385,0.0000018373,0.0000018370,0.0000018376,0.0000018387, +0.0000018400,0.0000018406,0.0000018408,0.0000018405,0.0000018393, +0.0000018373,0.0000018352,0.0000018333,0.0000018315,0.0000018300, +0.0000018288,0.0000018278,0.0000018264,0.0000018240,0.0000018203, +0.0000018154,0.0000018094,0.0000018035,0.0000017991,0.0000017961, +0.0000017943,0.0000017934,0.0000017923,0.0000017915,0.0000017902, +0.0000017883,0.0000017862,0.0000017847,0.0000017846,0.0000017860, +0.0000017894,0.0000017936,0.0000017969,0.0000017984,0.0000017981, +0.0000017962,0.0000017940,0.0000017940,0.0000017973,0.0000018057, +0.0000018178,0.0000018288,0.0000018353,0.0000018347,0.0000018323, +0.0000018296,0.0000018282,0.0000018275,0.0000018278,0.0000018290, +0.0000018312,0.0000018337,0.0000018334,0.0000018306,0.0000018257, +0.0000018199,0.0000018135,0.0000018063,0.0000017985,0.0000017913, +0.0000017856,0.0000017817,0.0000017793,0.0000017782,0.0000017781, +0.0000017796,0.0000017821,0.0000017846,0.0000017862,0.0000017868, +0.0000017864,0.0000017852,0.0000017826,0.0000017789,0.0000017754, +0.0000017731,0.0000017726,0.0000017754,0.0000017814,0.0000017882, +0.0000017933,0.0000017961,0.0000017986,0.0000018030,0.0000018086, +0.0000018138,0.0000018174,0.0000018196,0.0000018203,0.0000018204, +0.0000018197,0.0000018180,0.0000018155,0.0000018123,0.0000018086, +0.0000018041,0.0000017988,0.0000017931,0.0000017874,0.0000017822, +0.0000017780,0.0000017752,0.0000017725,0.0000017688,0.0000017646, +0.0000017617,0.0000017604,0.0000017602,0.0000017606,0.0000017608, +0.0000017602,0.0000017588,0.0000017570,0.0000017553,0.0000017543, +0.0000017541,0.0000017546,0.0000017553,0.0000017564,0.0000017580, +0.0000017603,0.0000017631,0.0000017662,0.0000017689,0.0000017711, +0.0000017729,0.0000017747,0.0000017762,0.0000017776,0.0000017789, +0.0000017798,0.0000017799,0.0000017791,0.0000017775,0.0000017757, +0.0000017737,0.0000017721,0.0000017704,0.0000017686,0.0000017669, +0.0000017656,0.0000017645,0.0000017633,0.0000017620,0.0000017606, +0.0000017586,0.0000017557,0.0000017521,0.0000017483,0.0000017451, +0.0000017426,0.0000017406,0.0000017389,0.0000017374,0.0000017358, +0.0000017343,0.0000017326,0.0000017314,0.0000017304,0.0000017297, +0.0000017296,0.0000017302,0.0000017314,0.0000017331,0.0000017347, +0.0000017362,0.0000017377,0.0000017392,0.0000017409,0.0000017429, +0.0000017447,0.0000017468,0.0000017496,0.0000017532,0.0000017571, +0.0000017609,0.0000017642,0.0000017672,0.0000017699,0.0000017725, +0.0000017748,0.0000017763,0.0000017770,0.0000017768,0.0000017757, +0.0000017739,0.0000017718,0.0000017695,0.0000017670,0.0000017645, +0.0000017627,0.0000017621,0.0000017623,0.0000017629,0.0000017632, +0.0000017625,0.0000017608,0.0000017581,0.0000017549,0.0000017513, +0.0000017479,0.0000017445,0.0000017405,0.0000017365,0.0000017327, +0.0000017300,0.0000017282,0.0000017278,0.0000017311,0.0000017392, +0.0000017532,0.0000017719,0.0000017909,0.0000018040,0.0000018087, +0.0000018094,0.0000018129,0.0000018197,0.0000018274,0.0000018309, +0.0000018292,0.0000018183,0.0000018004,0.0000017832,0.0000017730, +0.0000017722,0.0000017733,0.0000017742,0.0000017751,0.0000017761, +0.0000017767,0.0000017769,0.0000017771,0.0000017779,0.0000017797, +0.0000017816,0.0000017818,0.0000017795,0.0000017748,0.0000017679, +0.0000017581,0.0000017479,0.0000017426,0.0000017424,0.0000017454, +0.0000017482,0.0000017500,0.0000017553,0.0000017704,0.0000017911, +0.0000018071,0.0000018146,0.0000018186,0.0000018234,0.0000018333, +0.0000018512,0.0000018704,0.0000018851,0.0000018968,0.0000019078, +0.0000019182,0.0000019243,0.0000019241,0.0000019252,0.0000019306, +0.0000019386,0.0000019455,0.0000019495,0.0000019521,0.0000019548, +0.0000019577,0.0000019609,0.0000019641,0.0000019672,0.0000019699, +0.0000019718,0.0000019726,0.0000019732,0.0000019736,0.0000019734, +0.0000019727,0.0000019723,0.0000019718,0.0000019711,0.0000019704, +0.0000019696,0.0000019697,0.0000019707,0.0000019722,0.0000019743, +0.0000019762,0.0000019776,0.0000019786,0.0000019790,0.0000019789, +0.0000019786,0.0000019782,0.0000019779,0.0000019774,0.0000019769, +0.0000019771,0.0000019776,0.0000019781,0.0000019784,0.0000019787, +0.0000019787,0.0000019785,0.0000019782,0.0000019775,0.0000019763, +0.0000019745,0.0000019726,0.0000019707,0.0000019684,0.0000019661, +0.0000019639,0.0000019615,0.0000019594,0.0000019570,0.0000019546, +0.0000019523,0.0000019500,0.0000019475,0.0000019448,0.0000019420, +0.0000019390,0.0000019360,0.0000019329,0.0000019295,0.0000019259, +0.0000019222,0.0000019188,0.0000019161,0.0000019140,0.0000019123, +0.0000019102,0.0000019067,0.0000019014,0.0000018934,0.0000018828, +0.0000018699,0.0000018553,0.0000018394,0.0000018229,0.0000018066, +0.0000017911,0.0000017778,0.0000017666,0.0000017585,0.0000017536, +0.0000017508,0.0000017501,0.0000017512,0.0000017521,0.0000017529, +0.0000017541,0.0000017550,0.0000017559,0.0000017567,0.0000017572, +0.0000017571,0.0000017562,0.0000017557,0.0000017536,0.0000017510, +0.0000017475,0.0000017437,0.0000017397,0.0000017357,0.0000017317, +0.0000017276,0.0000017237,0.0000017202,0.0000017170,0.0000017143, +0.0000017119,0.0000017108,0.0000017096,0.0000017087,0.0000017083, +0.0000017087,0.0000017095,0.0000017103,0.0000017112,0.0000017124, +0.0000017143,0.0000017165,0.0000017190,0.0000017213,0.0000017235, +0.0000017255,0.0000017270,0.0000017284,0.0000017298,0.0000017313, +0.0000017332,0.0000017350,0.0000017368,0.0000017394,0.0000017418, +0.0000017433,0.0000017448,0.0000017466,0.0000017486,0.0000017507, +0.0000017529,0.0000017545,0.0000017555,0.0000017566,0.0000017574, +0.0000017581,0.0000017585,0.0000017588,0.0000017591,0.0000017594, +0.0000017598,0.0000017605,0.0000017610,0.0000017616,0.0000017619, +0.0000017619,0.0000017614,0.0000017599,0.0000017580,0.0000017564, +0.0000017545,0.0000017524,0.0000017503,0.0000017484,0.0000017462, +0.0000017443,0.0000017427,0.0000017415,0.0000017406,0.0000017399, +0.0000017392,0.0000017390,0.0000017390,0.0000017386,0.0000017387, +0.0000017390,0.0000017381,0.0000017373,0.0000017383,0.0000017366, +0.0000017351,0.0000017344,0.0000017345,0.0000017333,0.0000017329, +0.0000017334,0.0000017342,0.0000017353,0.0000017358,0.0000017369, +0.0000017359,0.0000017361,0.0000017342,0.0000017312,0.0000017282, +0.0000017259,0.0000017245,0.0000017249,0.0000017247,0.0000017307, +0.0000017396,0.0000017517,0.0000017676,0.0000017853,0.0000018043, +0.0000018240,0.0000018425,0.0000018588,0.0000018725,0.0000018836, +0.0000018918,0.0000018974,0.0000019009,0.0000019026,0.0000019028, +0.0000019025,0.0000019028,0.0000019034,0.0000019045,0.0000019060, +0.0000019082,0.0000019108,0.0000019134,0.0000019159,0.0000019182, +0.0000019200,0.0000019216,0.0000019230,0.0000019243,0.0000019252, +0.0000019258,0.0000019262,0.0000019262,0.0000019261,0.0000019263, +0.0000019269,0.0000019278,0.0000019289,0.0000019303,0.0000019321, +0.0000019342,0.0000019367,0.0000019395,0.0000019422,0.0000019448, +0.0000019470,0.0000019489,0.0000019504,0.0000019521,0.0000019538, +0.0000019555,0.0000019570,0.0000019583,0.0000019594,0.0000019606, +0.0000019618,0.0000019636,0.0000019657,0.0000019683,0.0000019711, +0.0000019741,0.0000019772,0.0000019801,0.0000019826,0.0000019851, +0.0000019874,0.0000019892,0.0000019909,0.0000019929,0.0000019952, +0.0000019976,0.0000019995,0.0000020005,0.0000020005,0.0000020011, +0.0000020012,0.0000020007,0.0000019996,0.0000019982,0.0000019967, +0.0000019964,0.0000019969,0.0000019975,0.0000019981,0.0000019985, +0.0000019993,0.0000020005,0.0000020017,0.0000020029,0.0000020038, +0.0000020042,0.0000020035,0.0000020028,0.0000020016,0.0000019997, +0.0000019973,0.0000019947,0.0000019921,0.0000019909,0.0000019910, +0.0000019913,0.0000019910,0.0000019899,0.0000019887,0.0000019872, +0.0000019856,0.0000019847,0.0000019844,0.0000019840,0.0000019831, +0.0000019817,0.0000019802,0.0000019789,0.0000019780,0.0000019776, +0.0000019778,0.0000019784,0.0000019803,0.0000019824,0.0000019844, +0.0000019865,0.0000019894,0.0000019920,0.0000019945,0.0000019965, +0.0000019978,0.0000019982,0.0000019980,0.0000019975,0.0000019968, +0.0000019959,0.0000019945,0.0000019930,0.0000019907,0.0000019873, +0.0000019847,0.0000019836,0.0000019838,0.0000019844,0.0000019852, +0.0000019864,0.0000019883,0.0000019911,0.0000019938,0.0000019957, +0.0000019970,0.0000019984,0.0000019993,0.0000020001,0.0000020001, +0.0000019994,0.0000019981,0.0000019963,0.0000019941,0.0000019919, +0.0000019903,0.0000019892,0.0000019882,0.0000019865,0.0000019852, +0.0000019837,0.0000019826,0.0000019815,0.0000019807,0.0000019799, +0.0000019788,0.0000019780,0.0000019767,0.0000019745,0.0000019709, +0.0000019669,0.0000019622,0.0000019575,0.0000019534,0.0000019492, +0.0000019452,0.0000019413,0.0000019386,0.0000019365,0.0000019353, +0.0000019339,0.0000019324,0.0000019310,0.0000019288,0.0000019259, +0.0000019231,0.0000019206,0.0000019180,0.0000019160,0.0000019152, +0.0000019160,0.0000019174,0.0000019188,0.0000019193,0.0000019193, +0.0000019191,0.0000019183,0.0000019165,0.0000019147,0.0000019124, +0.0000019098,0.0000019074,0.0000019052,0.0000019030,0.0000019022, +0.0000019032,0.0000019055,0.0000019084,0.0000019113,0.0000019129, +0.0000019133,0.0000019125,0.0000019103,0.0000019072,0.0000019042, +0.0000019019,0.0000019006,0.0000019002,0.0000019007,0.0000019017, +0.0000019028,0.0000019041,0.0000019056,0.0000019070,0.0000019082, +0.0000019088,0.0000019090,0.0000019091,0.0000019088,0.0000019085, +0.0000019089,0.0000019101,0.0000019121,0.0000019147,0.0000019180, +0.0000019214,0.0000019255,0.0000019305,0.0000019355,0.0000019399, +0.0000019430,0.0000019444,0.0000019447,0.0000019432,0.0000019426, +0.0000019411,0.0000019383,0.0000019344,0.0000019297,0.0000019248, +0.0000019196,0.0000019147,0.0000019107,0.0000019074,0.0000019042, +0.0000019027,0.0000019023,0.0000019016,0.0000019009,0.0000019005, +0.0000019003,0.0000019012,0.0000019035,0.0000019058,0.0000019075, +0.0000019072,0.0000019056,0.0000019012,0.0000018957,0.0000018900, +0.0000018862,0.0000018828,0.0000018816,0.0000018810,0.0000018809, +0.0000018787,0.0000018737,0.0000018657,0.0000018572,0.0000018521, +0.0000018495,0.0000018514,0.0000018573,0.0000018658,0.0000018755, +0.0000018849,0.0000018921,0.0000018975,0.0000018962,0.0000018950, +0.0000018908,0.0000018849,0.0000018781,0.0000018711,0.0000018641, +0.0000018576,0.0000018531,0.0000018500,0.0000018498,0.0000018514, +0.0000018538,0.0000018579,0.0000018633,0.0000018695,0.0000018775, +0.0000018876,0.0000018981,0.0000019074,0.0000019149,0.0000019179, +0.0000019181,0.0000019171,0.0000019148,0.0000019116,0.0000019076, +0.0000019028,0.0000018973,0.0000018909,0.0000018842,0.0000018784, +0.0000018743,0.0000018725,0.0000018712,0.0000018691,0.0000018671, +0.0000018665,0.0000018669,0.0000018688,0.0000018726,0.0000018767, +0.0000018803,0.0000018815,0.0000018809,0.0000018807,0.0000018824, +0.0000018855,0.0000018886,0.0000018913,0.0000018929,0.0000018947, +0.0000018961,0.0000018965,0.0000018960,0.0000018940,0.0000018911, +0.0000018873,0.0000018839,0.0000018809,0.0000018781,0.0000018767, +0.0000018771,0.0000018789,0.0000018823,0.0000018857,0.0000018870, +0.0000018850,0.0000018795,0.0000018711,0.0000018618,0.0000018542, +0.0000018502,0.0000018499,0.0000018504,0.0000018511,0.0000018494, +0.0000018450,0.0000018400,0.0000018365,0.0000018353,0.0000018325, +0.0000018291,0.0000018286,0.0000018286,0.0000018262,0.0000018232, +0.0000018200,0.0000018179,0.0000018167,0.0000018172,0.0000018200, +0.0000018246,0.0000018292,0.0000018338,0.0000018379,0.0000018424, +0.0000018475,0.0000018525,0.0000018565,0.0000018586,0.0000018587, +0.0000018572,0.0000018547,0.0000018505,0.0000018448,0.0000018390, +0.0000018341,0.0000018304,0.0000018265,0.0000018220,0.0000018181, +0.0000018163,0.0000018158,0.0000018158,0.0000018162,0.0000018172, +0.0000018184,0.0000018195,0.0000018204,0.0000018210,0.0000018214, +0.0000018219,0.0000018221,0.0000018220,0.0000018212,0.0000018195, +0.0000018170,0.0000018143,0.0000018120,0.0000018100,0.0000018083, +0.0000018068,0.0000018054,0.0000018046,0.0000018036,0.0000018032, +0.0000018034,0.0000018040,0.0000018051,0.0000018064,0.0000018076, +0.0000018084,0.0000018087,0.0000018085,0.0000018081,0.0000018076, +0.0000018071,0.0000018065,0.0000018055,0.0000018044,0.0000018032, +0.0000018017,0.0000017997,0.0000017973,0.0000017946,0.0000017917, +0.0000017893,0.0000017872,0.0000017856,0.0000017847,0.0000017846, +0.0000017851,0.0000017866,0.0000017892,0.0000017924,0.0000017949, +0.0000017969,0.0000017983,0.0000017995,0.0000018002,0.0000018004, +0.0000018009,0.0000018018,0.0000018029,0.0000018038,0.0000018050, +0.0000018074,0.0000018108,0.0000018154,0.0000018210,0.0000018265, +0.0000018315,0.0000018358,0.0000018398,0.0000018439,0.0000018485, +0.0000018532,0.0000018574,0.0000018614,0.0000018655,0.0000018706, +0.0000018780,0.0000018882,0.0000019011,0.0000019162,0.0000019310, +0.0000019429,0.0000019493,0.0000019486,0.0000019461,0.0000019408, +0.0000019337,0.0000019247,0.0000019145,0.0000019042,0.0000018953, +0.0000018895,0.0000018871,0.0000018870,0.0000018875,0.0000018884, +0.0000018893,0.0000018895,0.0000018894,0.0000018892,0.0000018889, +0.0000018878,0.0000018849,0.0000018800,0.0000018740,0.0000018683, +0.0000018633,0.0000018587,0.0000018549,0.0000018527,0.0000018517, +0.0000018517,0.0000018523,0.0000018539,0.0000018560,0.0000018581, +0.0000018601,0.0000018621,0.0000018632,0.0000018627,0.0000018604, +0.0000018570,0.0000018530,0.0000018488,0.0000018445,0.0000018409, +0.0000018383,0.0000018365,0.0000018352,0.0000018344,0.0000018340, +0.0000018333,0.0000018329,0.0000018333,0.0000018344,0.0000018354, +0.0000018359,0.0000018355,0.0000018351,0.0000018356,0.0000018363, +0.0000018363,0.0000018355,0.0000018342,0.0000018328,0.0000018314, +0.0000018292,0.0000018264,0.0000018232,0.0000018199,0.0000018166, +0.0000018140,0.0000018126,0.0000018124,0.0000018129,0.0000018142, +0.0000018162,0.0000018187,0.0000018208,0.0000018221,0.0000018225, +0.0000018221,0.0000018209,0.0000018198,0.0000018186,0.0000018170, +0.0000018181,0.0000018205,0.0000018241,0.0000018278,0.0000018310, +0.0000018340,0.0000018368,0.0000018390,0.0000018405,0.0000018415, +0.0000018420,0.0000018421,0.0000018418,0.0000018413,0.0000018407, +0.0000018398,0.0000018389,0.0000018381,0.0000018376,0.0000018371, +0.0000018362,0.0000018348,0.0000018330,0.0000018305,0.0000018278, +0.0000018249,0.0000018219,0.0000018189,0.0000018163,0.0000018144, +0.0000018135,0.0000018137,0.0000018152,0.0000018175,0.0000018209, +0.0000018242,0.0000018279,0.0000018319,0.0000018359,0.0000018397, +0.0000018427,0.0000018452,0.0000018473,0.0000018489,0.0000018502, +0.0000018509,0.0000018512,0.0000018497,0.0000018450,0.0000018426, +0.0000018489,0.0000018600,0.0000018725,0.0000018836,0.0000018800, +0.0000018721,0.0000018784,0.0000018757,0.0000018415,0.0000018199, +0.0000018179,0.0000018286,0.0000018474,0.0000018610,0.0000018680, +0.0000018715,0.0000018736,0.0000018749,0.0000018752,0.0000018755, +0.0000018752,0.0000018740,0.0000018732,0.0000018742,0.0000018773, +0.0000018818,0.0000018867,0.0000018904,0.0000018927,0.0000018937, +0.0000018939,0.0000018931,0.0000018911,0.0000018883,0.0000018843, +0.0000018723,0.0000018424,0.0000018014,0.0000017723,0.0000017623, +0.0000017574,0.0000017509,0.0000017466,0.0000017452,0.0000017446, +0.0000017433,0.0000017417,0.0000017411,0.0000017408,0.0000017400, +0.0000017399,0.0000017417,0.0000017451,0.0000017485,0.0000017514, +0.0000017533,0.0000017546,0.0000017555,0.0000017562,0.0000017570, +0.0000017582,0.0000017599,0.0000017614,0.0000017636,0.0000017655, +0.0000017672,0.0000017694,0.0000017723,0.0000017755,0.0000017785, +0.0000017809,0.0000017824,0.0000017827,0.0000017819,0.0000017809, +0.0000017801,0.0000017781,0.0000017766,0.0000017748,0.0000017729, +0.0000017716,0.0000017706,0.0000017699,0.0000017694,0.0000017694, +0.0000017702,0.0000017716,0.0000017740,0.0000017776,0.0000017819, +0.0000017864,0.0000017913,0.0000017963,0.0000018014,0.0000018071, +0.0000018140,0.0000018220,0.0000018292,0.0000018351,0.0000018399, +0.0000018414,0.0000018357,0.0000018269,0.0000018207,0.0000018193, +0.0000018194,0.0000018194,0.0000018203,0.0000018221,0.0000018239, +0.0000018243,0.0000018234,0.0000018230,0.0000018233,0.0000018247, +0.0000018263,0.0000018274,0.0000018283,0.0000018287,0.0000018290, +0.0000018291,0.0000018286,0.0000018277,0.0000018261,0.0000018244, +0.0000018226,0.0000018209,0.0000018200,0.0000018200,0.0000018206, +0.0000018219,0.0000018233,0.0000018249,0.0000018261,0.0000018268, +0.0000018272,0.0000018273,0.0000018267,0.0000018255,0.0000018245, +0.0000018238,0.0000018234,0.0000018232,0.0000018229,0.0000018220, +0.0000018210,0.0000018197,0.0000018183,0.0000018174,0.0000018172, +0.0000018178,0.0000018191,0.0000018204,0.0000018220,0.0000018239, +0.0000018253,0.0000018266,0.0000018278,0.0000018287,0.0000018296, +0.0000018308,0.0000018319,0.0000018336,0.0000018354,0.0000018372, +0.0000018385,0.0000018399,0.0000018412,0.0000018426,0.0000018443, +0.0000018461,0.0000018479,0.0000018496,0.0000018514,0.0000018536, +0.0000018556,0.0000018576,0.0000018596,0.0000018613,0.0000018626, +0.0000018636,0.0000018641,0.0000018640,0.0000018632,0.0000018619, +0.0000018603,0.0000018586,0.0000018569,0.0000018554,0.0000018535, +0.0000018513,0.0000018485,0.0000018452,0.0000018419,0.0000018389, +0.0000018368,0.0000018359,0.0000018356,0.0000018361,0.0000018369, +0.0000018381,0.0000018395,0.0000018411,0.0000018418,0.0000018414, +0.0000018401,0.0000018386,0.0000018367,0.0000018344,0.0000018322, +0.0000018302,0.0000018285,0.0000018268,0.0000018248,0.0000018220, +0.0000018181,0.0000018129,0.0000018072,0.0000018022,0.0000017980, +0.0000017952,0.0000017943,0.0000017945,0.0000017952,0.0000017957, +0.0000017950,0.0000017932,0.0000017911,0.0000017896,0.0000017888, +0.0000017902,0.0000017927,0.0000017965,0.0000017992,0.0000018005, +0.0000017995,0.0000017970,0.0000017953,0.0000017950,0.0000017997, +0.0000018093,0.0000018206,0.0000018292,0.0000018315,0.0000018292, +0.0000018268,0.0000018252,0.0000018245,0.0000018242,0.0000018251, +0.0000018275,0.0000018298,0.0000018298,0.0000018277,0.0000018236, +0.0000018189,0.0000018135,0.0000018070,0.0000017998,0.0000017928, +0.0000017867,0.0000017820,0.0000017789,0.0000017776,0.0000017777, +0.0000017794,0.0000017819,0.0000017845,0.0000017865,0.0000017873, +0.0000017870,0.0000017856,0.0000017828,0.0000017789,0.0000017749, +0.0000017719,0.0000017707,0.0000017718,0.0000017758,0.0000017814, +0.0000017867,0.0000017901,0.0000017924,0.0000017956,0.0000018003, +0.0000018056,0.0000018105,0.0000018149,0.0000018181,0.0000018197, +0.0000018199,0.0000018187,0.0000018163,0.0000018131,0.0000018093, +0.0000018048,0.0000017995,0.0000017936,0.0000017874,0.0000017821, +0.0000017786,0.0000017764,0.0000017739,0.0000017704,0.0000017670, +0.0000017646,0.0000017633,0.0000017629,0.0000017629,0.0000017626, +0.0000017617,0.0000017607,0.0000017596,0.0000017590,0.0000017592, +0.0000017602,0.0000017615,0.0000017632,0.0000017656,0.0000017685, +0.0000017717,0.0000017751,0.0000017782,0.0000017808,0.0000017832, +0.0000017852,0.0000017865,0.0000017869,0.0000017865,0.0000017850, +0.0000017823,0.0000017790,0.0000017757,0.0000017725,0.0000017700, +0.0000017682,0.0000017668,0.0000017656,0.0000017647,0.0000017643, +0.0000017641,0.0000017640,0.0000017644,0.0000017652,0.0000017660, +0.0000017659,0.0000017647,0.0000017624,0.0000017594,0.0000017560, +0.0000017526,0.0000017494,0.0000017466,0.0000017439,0.0000017410, +0.0000017379,0.0000017350,0.0000017322,0.0000017297,0.0000017285, +0.0000017278,0.0000017277,0.0000017282,0.0000017296,0.0000017313, +0.0000017329,0.0000017344,0.0000017359,0.0000017374,0.0000017389, +0.0000017410,0.0000017442,0.0000017484,0.0000017532,0.0000017581, +0.0000017629,0.0000017672,0.0000017710,0.0000017743,0.0000017768, +0.0000017789,0.0000017801,0.0000017804,0.0000017797,0.0000017782, +0.0000017762,0.0000017740,0.0000017715,0.0000017692,0.0000017676, +0.0000017671,0.0000017674,0.0000017681,0.0000017682,0.0000017676, +0.0000017655,0.0000017622,0.0000017579,0.0000017534,0.0000017492, +0.0000017450,0.0000017405,0.0000017358,0.0000017319,0.0000017289, +0.0000017271,0.0000017265,0.0000017279,0.0000017320,0.0000017396, +0.0000017524,0.0000017705,0.0000017897,0.0000018033,0.0000018083, +0.0000018085,0.0000018109,0.0000018169,0.0000018243,0.0000018283, +0.0000018270,0.0000018158,0.0000017985,0.0000017821,0.0000017730, +0.0000017722,0.0000017731,0.0000017740,0.0000017747,0.0000017755, +0.0000017761,0.0000017760,0.0000017757,0.0000017764,0.0000017780, +0.0000017789,0.0000017774,0.0000017733,0.0000017664,0.0000017572, +0.0000017476,0.0000017421,0.0000017413,0.0000017440,0.0000017468, +0.0000017471,0.0000017487,0.0000017579,0.0000017761,0.0000017967, +0.0000018101,0.0000018148,0.0000018180,0.0000018254,0.0000018402, +0.0000018599,0.0000018768,0.0000018895,0.0000019010,0.0000019119, +0.0000019200,0.0000019226,0.0000019224,0.0000019246,0.0000019297, +0.0000019366,0.0000019428,0.0000019475,0.0000019513,0.0000019550, +0.0000019588,0.0000019624,0.0000019657,0.0000019685,0.0000019704, +0.0000019713,0.0000019714,0.0000019709,0.0000019697,0.0000019682, +0.0000019668,0.0000019655,0.0000019643,0.0000019633,0.0000019628, +0.0000019628,0.0000019634,0.0000019649,0.0000019669,0.0000019689, +0.0000019706,0.0000019718,0.0000019726,0.0000019730,0.0000019729, +0.0000019727,0.0000019724,0.0000019721,0.0000019723,0.0000019728, +0.0000019735,0.0000019741,0.0000019746,0.0000019753,0.0000019759, +0.0000019760,0.0000019758,0.0000019750,0.0000019734,0.0000019716, +0.0000019697,0.0000019672,0.0000019646,0.0000019619,0.0000019589, +0.0000019554,0.0000019518,0.0000019482,0.0000019447,0.0000019413, +0.0000019379,0.0000019342,0.0000019304,0.0000019264,0.0000019229, +0.0000019199,0.0000019173,0.0000019153,0.0000019136,0.0000019124, +0.0000019112,0.0000019092,0.0000019055,0.0000018991,0.0000018897, +0.0000018776,0.0000018633,0.0000018475,0.0000018309,0.0000018143, +0.0000017979,0.0000017828,0.0000017696,0.0000017595,0.0000017527, +0.0000017485,0.0000017466,0.0000017466,0.0000017479,0.0000017499, +0.0000017523,0.0000017547,0.0000017567,0.0000017585,0.0000017589, +0.0000017594,0.0000017585,0.0000017579,0.0000017557,0.0000017531, +0.0000017500,0.0000017467,0.0000017434,0.0000017398,0.0000017363, +0.0000017331,0.0000017307,0.0000017281,0.0000017252,0.0000017224, +0.0000017198,0.0000017172,0.0000017151,0.0000017130,0.0000017118, +0.0000017109,0.0000017100,0.0000017103,0.0000017121,0.0000017152, +0.0000017190,0.0000017232,0.0000017276,0.0000017325,0.0000017376, +0.0000017421,0.0000017452,0.0000017472,0.0000017480,0.0000017476, +0.0000017461,0.0000017442,0.0000017417,0.0000017398,0.0000017383, +0.0000017376,0.0000017374,0.0000017373,0.0000017378,0.0000017389, +0.0000017404,0.0000017420,0.0000017439,0.0000017458,0.0000017474, +0.0000017487,0.0000017500,0.0000017513,0.0000017525,0.0000017536, +0.0000017546,0.0000017555,0.0000017562,0.0000017569,0.0000017579, +0.0000017588,0.0000017597,0.0000017603,0.0000017606,0.0000017604, +0.0000017599,0.0000017591,0.0000017585,0.0000017573,0.0000017561, +0.0000017548,0.0000017536,0.0000017523,0.0000017510,0.0000017499, +0.0000017490,0.0000017482,0.0000017477,0.0000017470,0.0000017465, +0.0000017464,0.0000017463,0.0000017459,0.0000017452,0.0000017442, +0.0000017430,0.0000017413,0.0000017389,0.0000017364,0.0000017343, +0.0000017316,0.0000017286,0.0000017275,0.0000017252,0.0000017245, +0.0000017258,0.0000017282,0.0000017307,0.0000017335,0.0000017362, +0.0000017367,0.0000017362,0.0000017348,0.0000017318,0.0000017287, +0.0000017251,0.0000017227,0.0000017220,0.0000017219,0.0000017227, +0.0000017262,0.0000017337,0.0000017441,0.0000017576,0.0000017736, +0.0000017905,0.0000018076,0.0000018241,0.0000018397,0.0000018535, +0.0000018649,0.0000018741,0.0000018813,0.0000018867,0.0000018908, +0.0000018939,0.0000018966,0.0000018991,0.0000019019,0.0000019047, +0.0000019073,0.0000019095,0.0000019114,0.0000019128,0.0000019143, +0.0000019158,0.0000019173,0.0000019187,0.0000019198,0.0000019206, +0.0000019212,0.0000019215,0.0000019218,0.0000019219,0.0000019220, +0.0000019221,0.0000019225,0.0000019233,0.0000019249,0.0000019271, +0.0000019297,0.0000019325,0.0000019351,0.0000019376,0.0000019400, +0.0000019427,0.0000019455,0.0000019481,0.0000019505,0.0000019526, +0.0000019542,0.0000019555,0.0000019567,0.0000019583,0.0000019602, +0.0000019623,0.0000019645,0.0000019667,0.0000019691,0.0000019717, +0.0000019736,0.0000019756,0.0000019778,0.0000019797,0.0000019809, +0.0000019819,0.0000019837,0.0000019863,0.0000019895,0.0000019927, +0.0000019952,0.0000019972,0.0000019990,0.0000020003,0.0000020002, +0.0000019994,0.0000019982,0.0000019969,0.0000019961,0.0000019959, +0.0000019965,0.0000019971,0.0000019977,0.0000019980,0.0000019984, +0.0000019989,0.0000019994,0.0000019998,0.0000020002,0.0000020000, +0.0000019995,0.0000019988,0.0000019977,0.0000019961,0.0000019945, +0.0000019928,0.0000019916,0.0000019912,0.0000019913,0.0000019911, +0.0000019912,0.0000019913,0.0000019909,0.0000019897,0.0000019879, +0.0000019862,0.0000019847,0.0000019832,0.0000019810,0.0000019786, +0.0000019760,0.0000019738,0.0000019724,0.0000019724,0.0000019738, +0.0000019767,0.0000019806,0.0000019844,0.0000019881,0.0000019913, +0.0000019945,0.0000019965,0.0000019973,0.0000019971,0.0000019959, +0.0000019937,0.0000019907,0.0000019877,0.0000019850,0.0000019823, +0.0000019797,0.0000019770,0.0000019746,0.0000019742,0.0000019753, +0.0000019771,0.0000019792,0.0000019812,0.0000019830,0.0000019850, +0.0000019870,0.0000019892,0.0000019915,0.0000019945,0.0000019970, +0.0000019986,0.0000020000,0.0000020000,0.0000019989,0.0000019973, +0.0000019955,0.0000019941,0.0000019928,0.0000019922,0.0000019916, +0.0000019906,0.0000019895,0.0000019876,0.0000019866,0.0000019855, +0.0000019837,0.0000019816,0.0000019791,0.0000019761,0.0000019732, +0.0000019697,0.0000019650,0.0000019602,0.0000019557,0.0000019509, +0.0000019454,0.0000019400,0.0000019350,0.0000019305,0.0000019271, +0.0000019249,0.0000019236,0.0000019233,0.0000019237,0.0000019244, +0.0000019251,0.0000019250,0.0000019241,0.0000019237,0.0000019234, +0.0000019230,0.0000019226,0.0000019226,0.0000019228,0.0000019228, +0.0000019229,0.0000019231,0.0000019231,0.0000019223,0.0000019207, +0.0000019186,0.0000019162,0.0000019138,0.0000019117,0.0000019097, +0.0000019074,0.0000019052,0.0000019032,0.0000019027,0.0000019020, +0.0000019023,0.0000019035,0.0000019057,0.0000019075,0.0000019076, +0.0000019064,0.0000019041,0.0000019018,0.0000019002,0.0000018993, +0.0000018988,0.0000018980,0.0000018976,0.0000018964,0.0000018953, +0.0000018944,0.0000018944,0.0000018947,0.0000018949,0.0000018953, +0.0000018956,0.0000018959,0.0000018966,0.0000018980,0.0000019001, +0.0000019024,0.0000019045,0.0000019065,0.0000019091,0.0000019125, +0.0000019171,0.0000019223,0.0000019272,0.0000019314,0.0000019344, +0.0000019363,0.0000019378,0.0000019386,0.0000019393,0.0000019376, +0.0000019375,0.0000019349,0.0000019316,0.0000019278,0.0000019236, +0.0000019191,0.0000019143,0.0000019102,0.0000019072,0.0000019049, +0.0000019027,0.0000019002,0.0000018980,0.0000018965,0.0000018963, +0.0000018970,0.0000018982,0.0000019007,0.0000019019,0.0000019030, +0.0000019011,0.0000018991,0.0000018955,0.0000018906,0.0000018858, +0.0000018837,0.0000018830,0.0000018817,0.0000018785,0.0000018728, +0.0000018650,0.0000018576,0.0000018517,0.0000018469,0.0000018460, +0.0000018467,0.0000018525,0.0000018616,0.0000018723,0.0000018822, +0.0000018888,0.0000018933,0.0000018923,0.0000018919,0.0000018873, +0.0000018804,0.0000018724,0.0000018640,0.0000018565,0.0000018513, +0.0000018486,0.0000018466,0.0000018456,0.0000018467,0.0000018495, +0.0000018541,0.0000018605,0.0000018682,0.0000018771,0.0000018881, +0.0000018989,0.0000019076,0.0000019140,0.0000019159,0.0000019141, +0.0000019110,0.0000019068,0.0000019024,0.0000018978,0.0000018927, +0.0000018872,0.0000018821,0.0000018780,0.0000018762,0.0000018751, +0.0000018729,0.0000018697,0.0000018663,0.0000018641,0.0000018627, +0.0000018625,0.0000018628,0.0000018627,0.0000018605,0.0000018571, +0.0000018548,0.0000018553,0.0000018580,0.0000018622,0.0000018657, +0.0000018695,0.0000018741,0.0000018780,0.0000018803,0.0000018808, +0.0000018802,0.0000018785,0.0000018762,0.0000018745,0.0000018731, +0.0000018720,0.0000018723,0.0000018729,0.0000018744,0.0000018766, +0.0000018792,0.0000018809,0.0000018803,0.0000018758,0.0000018688, +0.0000018614,0.0000018546,0.0000018511,0.0000018505,0.0000018507, +0.0000018509,0.0000018494,0.0000018454,0.0000018411,0.0000018381, +0.0000018383,0.0000018379,0.0000018350,0.0000018330,0.0000018321, +0.0000018299,0.0000018264,0.0000018217,0.0000018186,0.0000018169, +0.0000018161,0.0000018168,0.0000018206,0.0000018256,0.0000018311, +0.0000018356,0.0000018390,0.0000018418,0.0000018457,0.0000018496, +0.0000018526,0.0000018543,0.0000018544,0.0000018527,0.0000018498, +0.0000018453,0.0000018399,0.0000018345,0.0000018300,0.0000018256, +0.0000018207,0.0000018164,0.0000018141,0.0000018138,0.0000018142, +0.0000018151,0.0000018161,0.0000018172,0.0000018182,0.0000018191, +0.0000018199,0.0000018206,0.0000018212,0.0000018217,0.0000018218, +0.0000018216,0.0000018207,0.0000018189,0.0000018163,0.0000018138, +0.0000018120,0.0000018107,0.0000018094,0.0000018079,0.0000018061, +0.0000018042,0.0000018024,0.0000018007,0.0000018003,0.0000018008, +0.0000018020,0.0000018034,0.0000018046,0.0000018054,0.0000018058, +0.0000018058,0.0000018053,0.0000018048,0.0000018043,0.0000018036, +0.0000018029,0.0000018020,0.0000018008,0.0000017995,0.0000017976, +0.0000017950,0.0000017920,0.0000017889,0.0000017859,0.0000017836, +0.0000017817,0.0000017805,0.0000017803,0.0000017814,0.0000017842, +0.0000017876,0.0000017909,0.0000017937,0.0000017963,0.0000017983, +0.0000017998,0.0000018007,0.0000018012,0.0000018019,0.0000018028, +0.0000018037,0.0000018046,0.0000018058,0.0000018073,0.0000018095, +0.0000018132,0.0000018176,0.0000018224,0.0000018274,0.0000018323, +0.0000018369,0.0000018414,0.0000018461,0.0000018509,0.0000018555, +0.0000018597,0.0000018638,0.0000018688,0.0000018755,0.0000018849, +0.0000018971,0.0000019115,0.0000019255,0.0000019367,0.0000019431, +0.0000019438,0.0000019412,0.0000019372,0.0000019300,0.0000019218, +0.0000019133,0.0000019041,0.0000018956,0.0000018898,0.0000018879, +0.0000018884,0.0000018892,0.0000018897,0.0000018899,0.0000018896, +0.0000018892,0.0000018891,0.0000018892,0.0000018880,0.0000018849, +0.0000018794,0.0000018727,0.0000018666,0.0000018617,0.0000018573, +0.0000018537,0.0000018516,0.0000018506,0.0000018508,0.0000018521, +0.0000018544,0.0000018568,0.0000018585,0.0000018596,0.0000018605, +0.0000018607,0.0000018602,0.0000018581,0.0000018546,0.0000018503, +0.0000018463,0.0000018428,0.0000018397,0.0000018375,0.0000018362, +0.0000018352,0.0000018342,0.0000018331,0.0000018322,0.0000018320, +0.0000018319,0.0000018316,0.0000018309,0.0000018303,0.0000018308, +0.0000018319,0.0000018326,0.0000018325,0.0000018314,0.0000018299, +0.0000018287,0.0000018278,0.0000018262,0.0000018240,0.0000018214, +0.0000018188,0.0000018161,0.0000018140,0.0000018129,0.0000018126, +0.0000018126,0.0000018132,0.0000018145,0.0000018161,0.0000018175, +0.0000018186,0.0000018197,0.0000018200,0.0000018195,0.0000018182, +0.0000018167,0.0000018150,0.0000018143,0.0000018149,0.0000018145, +0.0000018141,0.0000018156,0.0000018177,0.0000018194,0.0000018203, +0.0000018211,0.0000018218,0.0000018220,0.0000018218,0.0000018213, +0.0000018206,0.0000018196,0.0000018186,0.0000018180,0.0000018177, +0.0000018173,0.0000018169,0.0000018162,0.0000018152,0.0000018140, +0.0000018127,0.0000018114,0.0000018101,0.0000018090,0.0000018087, +0.0000018092,0.0000018109,0.0000018129,0.0000018158,0.0000018192, +0.0000018228,0.0000018263,0.0000018295,0.0000018322,0.0000018344, +0.0000018361,0.0000018376,0.0000018393,0.0000018414,0.0000018438, +0.0000018461,0.0000018476,0.0000018478,0.0000018447,0.0000018401, +0.0000018433,0.0000018555,0.0000018688,0.0000018824,0.0000018820, +0.0000018733,0.0000018759,0.0000018779,0.0000018474,0.0000018177, +0.0000018089,0.0000018038,0.0000018043,0.0000018122,0.0000018224, +0.0000018314,0.0000018391,0.0000018464,0.0000018533,0.0000018594, +0.0000018644,0.0000018680,0.0000018704,0.0000018720,0.0000018732, +0.0000018744,0.0000018761,0.0000018780,0.0000018794,0.0000018799, +0.0000018798,0.0000018783,0.0000018749,0.0000018670,0.0000018496, +0.0000018209,0.0000017898,0.0000017697,0.0000017623,0.0000017583, +0.0000017524,0.0000017474,0.0000017452,0.0000017440,0.0000017427, +0.0000017408,0.0000017381,0.0000017364,0.0000017363,0.0000017365, +0.0000017374,0.0000017404,0.0000017446,0.0000017483,0.0000017505, +0.0000017516,0.0000017521,0.0000017528,0.0000017542,0.0000017560, +0.0000017589,0.0000017616,0.0000017633,0.0000017650,0.0000017673, +0.0000017704,0.0000017743,0.0000017782,0.0000017816,0.0000017834, +0.0000017837,0.0000017834,0.0000017811,0.0000017783,0.0000017762, +0.0000017739,0.0000017720,0.0000017705,0.0000017687,0.0000017678, +0.0000017672,0.0000017662,0.0000017654,0.0000017644,0.0000017634, +0.0000017621,0.0000017612,0.0000017617,0.0000017640,0.0000017668, +0.0000017712,0.0000017767,0.0000017832,0.0000017900,0.0000017969, +0.0000018039,0.0000018116,0.0000018191,0.0000018256,0.0000018308, +0.0000018354,0.0000018373,0.0000018346,0.0000018269,0.0000018201, +0.0000018178,0.0000018181,0.0000018180,0.0000018173,0.0000018179, +0.0000018198,0.0000018214,0.0000018221,0.0000018222,0.0000018223, +0.0000018233,0.0000018247,0.0000018259,0.0000018267,0.0000018273, +0.0000018283,0.0000018290,0.0000018294,0.0000018301,0.0000018306, +0.0000018305,0.0000018288,0.0000018271,0.0000018253,0.0000018242, +0.0000018240,0.0000018244,0.0000018251,0.0000018255,0.0000018256, +0.0000018254,0.0000018253,0.0000018250,0.0000018240,0.0000018230, +0.0000018224,0.0000018221,0.0000018220,0.0000018219,0.0000018217, +0.0000018213,0.0000018207,0.0000018198,0.0000018197,0.0000018204, +0.0000018215,0.0000018232,0.0000018252,0.0000018273,0.0000018297, +0.0000018317,0.0000018331,0.0000018339,0.0000018342,0.0000018342, +0.0000018344,0.0000018345,0.0000018348,0.0000018356,0.0000018369, +0.0000018372,0.0000018384,0.0000018400,0.0000018413,0.0000018426, +0.0000018447,0.0000018470,0.0000018493,0.0000018517,0.0000018542, +0.0000018568,0.0000018593,0.0000018616,0.0000018637,0.0000018655, +0.0000018669,0.0000018679,0.0000018681,0.0000018679,0.0000018668, +0.0000018648,0.0000018622,0.0000018594,0.0000018567,0.0000018541, +0.0000018517,0.0000018495,0.0000018471,0.0000018445,0.0000018417, +0.0000018395,0.0000018382,0.0000018374,0.0000018370,0.0000018374, +0.0000018381,0.0000018389,0.0000018403,0.0000018416,0.0000018420, +0.0000018418,0.0000018411,0.0000018399,0.0000018384,0.0000018365, +0.0000018340,0.0000018315,0.0000018292,0.0000018271,0.0000018250, +0.0000018225,0.0000018192,0.0000018148,0.0000018099,0.0000018045, +0.0000017995,0.0000017959,0.0000017947,0.0000017951,0.0000017968, +0.0000017979,0.0000017988,0.0000017987,0.0000017979,0.0000017958, +0.0000017937,0.0000017927,0.0000017942,0.0000017970,0.0000018004, +0.0000018028,0.0000018029,0.0000018005,0.0000017968,0.0000017950, +0.0000017957,0.0000018019,0.0000018116,0.0000018209,0.0000018263, +0.0000018260,0.0000018240,0.0000018220,0.0000018212,0.0000018212, +0.0000018221,0.0000018239,0.0000018257,0.0000018262,0.0000018255, +0.0000018232,0.0000018193,0.0000018145,0.0000018087,0.0000018021, +0.0000017951,0.0000017883,0.0000017824,0.0000017786,0.0000017773, +0.0000017776,0.0000017796,0.0000017826,0.0000017853,0.0000017871, +0.0000017876,0.0000017870,0.0000017854,0.0000017827,0.0000017791, +0.0000017750,0.0000017717,0.0000017700,0.0000017695,0.0000017706, +0.0000017743,0.0000017796,0.0000017845,0.0000017879,0.0000017906, +0.0000017943,0.0000017996,0.0000018056,0.0000018110,0.0000018152, +0.0000018181,0.0000018192,0.0000018190,0.0000018173,0.0000018142, +0.0000018103,0.0000018057,0.0000018004,0.0000017945,0.0000017885, +0.0000017836,0.0000017805,0.0000017785,0.0000017763,0.0000017736, +0.0000017713,0.0000017692,0.0000017677,0.0000017668,0.0000017661, +0.0000017652,0.0000017643,0.0000017636,0.0000017635,0.0000017644, +0.0000017661,0.0000017682,0.0000017710,0.0000017746,0.0000017786, +0.0000017828,0.0000017866,0.0000017897,0.0000017919,0.0000017933, +0.0000017936,0.0000017931,0.0000017915,0.0000017887,0.0000017849, +0.0000017806,0.0000017764,0.0000017726,0.0000017695,0.0000017671, +0.0000017654,0.0000017643,0.0000017638,0.0000017637,0.0000017638, +0.0000017642,0.0000017648,0.0000017658,0.0000017671,0.0000017686, +0.0000017700,0.0000017709,0.0000017712,0.0000017704,0.0000017686, +0.0000017661,0.0000017630,0.0000017597,0.0000017561,0.0000017521, +0.0000017477,0.0000017434,0.0000017390,0.0000017350,0.0000017317, +0.0000017293,0.0000017275,0.0000017273,0.0000017275,0.0000017284, +0.0000017296,0.0000017307,0.0000017318,0.0000017327,0.0000017338, +0.0000017356,0.0000017382,0.0000017420,0.0000017467,0.0000017519, +0.0000017575,0.0000017632,0.0000017685,0.0000017729,0.0000017764, +0.0000017791,0.0000017807,0.0000017811,0.0000017809,0.0000017797, +0.0000017781,0.0000017766,0.0000017750,0.0000017738,0.0000017732, +0.0000017734,0.0000017742,0.0000017750,0.0000017753,0.0000017745, +0.0000017723,0.0000017686,0.0000017638,0.0000017585,0.0000017532, +0.0000017476,0.0000017419,0.0000017360,0.0000017311,0.0000017276, +0.0000017257,0.0000017251,0.0000017263,0.0000017294,0.0000017338, +0.0000017407,0.0000017524,0.0000017692,0.0000017874,0.0000018011, +0.0000018067,0.0000018067,0.0000018083,0.0000018141,0.0000018220, +0.0000018262,0.0000018250,0.0000018143,0.0000017974,0.0000017816, +0.0000017725,0.0000017719,0.0000017723,0.0000017731,0.0000017739, +0.0000017747,0.0000017750,0.0000017745,0.0000017742,0.0000017746, +0.0000017754,0.0000017751,0.0000017722,0.0000017660,0.0000017570, +0.0000017476,0.0000017415,0.0000017398,0.0000017423,0.0000017454, +0.0000017454,0.0000017446,0.0000017476,0.0000017598,0.0000017806, +0.0000018009,0.0000018104,0.0000018131,0.0000018175,0.0000018286, +0.0000018470,0.0000018662,0.0000018813,0.0000018936,0.0000019047, +0.0000019139,0.0000019200,0.0000019213,0.0000019214,0.0000019235, +0.0000019277,0.0000019332,0.0000019387,0.0000019438,0.0000019485, +0.0000019529,0.0000019568,0.0000019598,0.0000019620,0.0000019632, +0.0000019635,0.0000019630,0.0000019619,0.0000019606,0.0000019591, +0.0000019575,0.0000019561,0.0000019550,0.0000019545,0.0000019543, +0.0000019545,0.0000019551,0.0000019561,0.0000019573,0.0000019586, +0.0000019598,0.0000019610,0.0000019618,0.0000019622,0.0000019624, +0.0000019624,0.0000019624,0.0000019626,0.0000019630,0.0000019633, +0.0000019636,0.0000019639,0.0000019646,0.0000019654,0.0000019657, +0.0000019656,0.0000019654,0.0000019645,0.0000019630,0.0000019610, +0.0000019585,0.0000019554,0.0000019521,0.0000019484,0.0000019443, +0.0000019401,0.0000019360,0.0000019322,0.0000019288,0.0000019257, +0.0000019227,0.0000019199,0.0000019173,0.0000019152,0.0000019138, +0.0000019126,0.0000019113,0.0000019094,0.0000019064,0.0000019018, +0.0000018947,0.0000018850,0.0000018727,0.0000018585,0.0000018429, +0.0000018263,0.0000018089,0.0000017922,0.0000017771,0.0000017644, +0.0000017547,0.0000017482,0.0000017448,0.0000017434,0.0000017436, +0.0000017449,0.0000017464,0.0000017491,0.0000017524,0.0000017556, +0.0000017580,0.0000017590,0.0000017597,0.0000017582,0.0000017569, +0.0000017544,0.0000017516,0.0000017484,0.0000017450,0.0000017420, +0.0000017395,0.0000017378,0.0000017360,0.0000017344,0.0000017327, +0.0000017316,0.0000017301,0.0000017284,0.0000017263,0.0000017234, +0.0000017202,0.0000017174,0.0000017154,0.0000017151,0.0000017163, +0.0000017190,0.0000017235,0.0000017300,0.0000017373,0.0000017437, +0.0000017491,0.0000017540,0.0000017574,0.0000017596,0.0000017607, +0.0000017602,0.0000017577,0.0000017551,0.0000017519,0.0000017480, +0.0000017446,0.0000017407,0.0000017376,0.0000017355,0.0000017341, +0.0000017330,0.0000017321,0.0000017317,0.0000017320,0.0000017333, +0.0000017349,0.0000017367,0.0000017385,0.0000017402,0.0000017418, +0.0000017435,0.0000017450,0.0000017463,0.0000017477,0.0000017492, +0.0000017506,0.0000017518,0.0000017528,0.0000017540,0.0000017553, +0.0000017566,0.0000017576,0.0000017584,0.0000017589,0.0000017593, +0.0000017594,0.0000017594,0.0000017590,0.0000017586,0.0000017580, +0.0000017572,0.0000017564,0.0000017558,0.0000017550,0.0000017541, +0.0000017532,0.0000017524,0.0000017516,0.0000017509,0.0000017505, +0.0000017502,0.0000017499,0.0000017494,0.0000017486,0.0000017475, +0.0000017461,0.0000017442,0.0000017420,0.0000017394,0.0000017368, +0.0000017339,0.0000017305,0.0000017270,0.0000017247,0.0000017241, +0.0000017247,0.0000017265,0.0000017283,0.0000017301,0.0000017312, +0.0000017326,0.0000017326,0.0000017321,0.0000017304,0.0000017289, +0.0000017267,0.0000017247,0.0000017234,0.0000017229,0.0000017236, +0.0000017249,0.0000017269,0.0000017296,0.0000017354,0.0000017430, +0.0000017520,0.0000017626,0.0000017752,0.0000017882,0.0000018011, +0.0000018138,0.0000018259,0.0000018370,0.0000018472,0.0000018565, +0.0000018652,0.0000018733,0.0000018808,0.0000018877,0.0000018938, +0.0000018988,0.0000019025,0.0000019054,0.0000019078,0.0000019096, +0.0000019108,0.0000019117,0.0000019124,0.0000019134,0.0000019144, +0.0000019154,0.0000019164,0.0000019173,0.0000019179,0.0000019184, +0.0000019188,0.0000019191,0.0000019200,0.0000019213,0.0000019229, +0.0000019246,0.0000019264,0.0000019282,0.0000019302,0.0000019328, +0.0000019357,0.0000019387,0.0000019417,0.0000019444,0.0000019468, +0.0000019487,0.0000019503,0.0000019521,0.0000019545,0.0000019571, +0.0000019596,0.0000019618,0.0000019645,0.0000019669,0.0000019687, +0.0000019706,0.0000019723,0.0000019732,0.0000019736,0.0000019738, +0.0000019746,0.0000019763,0.0000019789,0.0000019821,0.0000019855, +0.0000019885,0.0000019914,0.0000019941,0.0000019959,0.0000019966, +0.0000019967,0.0000019960,0.0000019952,0.0000019944,0.0000019940, +0.0000019941,0.0000019945,0.0000019949,0.0000019952,0.0000019952, +0.0000019948,0.0000019943,0.0000019938,0.0000019934,0.0000019930, +0.0000019927,0.0000019927,0.0000019931,0.0000019931,0.0000019924, +0.0000019915,0.0000019904,0.0000019896,0.0000019890,0.0000019891, +0.0000019898,0.0000019906,0.0000019910,0.0000019904,0.0000019887, +0.0000019865,0.0000019843,0.0000019816,0.0000019784,0.0000019751, +0.0000019720,0.0000019701,0.0000019694,0.0000019705,0.0000019730, +0.0000019770,0.0000019813,0.0000019853,0.0000019890,0.0000019921, +0.0000019942,0.0000019953,0.0000019952,0.0000019945,0.0000019930, +0.0000019909,0.0000019881,0.0000019848,0.0000019812,0.0000019768, +0.0000019723,0.0000019686,0.0000019665,0.0000019655,0.0000019657, +0.0000019670,0.0000019687,0.0000019705,0.0000019724,0.0000019743, +0.0000019764,0.0000019792,0.0000019824,0.0000019852,0.0000019878, +0.0000019895,0.0000019902,0.0000019897,0.0000019888,0.0000019875, +0.0000019861,0.0000019858,0.0000019851,0.0000019840,0.0000019832, +0.0000019822,0.0000019821,0.0000019819,0.0000019810,0.0000019795, +0.0000019777,0.0000019748,0.0000019720,0.0000019686,0.0000019643, +0.0000019596,0.0000019555,0.0000019518,0.0000019477,0.0000019436, +0.0000019397,0.0000019357,0.0000019317,0.0000019285,0.0000019265, +0.0000019260,0.0000019266,0.0000019278,0.0000019293,0.0000019308, +0.0000019321,0.0000019333,0.0000019347,0.0000019357,0.0000019361, +0.0000019363,0.0000019361,0.0000019351,0.0000019342,0.0000019341, +0.0000019346,0.0000019346,0.0000019339,0.0000019319,0.0000019287, +0.0000019246,0.0000019207,0.0000019175,0.0000019150,0.0000019134, +0.0000019122,0.0000019104,0.0000019087,0.0000019069,0.0000019060, +0.0000019064,0.0000019071,0.0000019073,0.0000019064,0.0000019043, +0.0000019023,0.0000019014,0.0000019019,0.0000019027,0.0000019032, +0.0000019032,0.0000019022,0.0000019008,0.0000018988,0.0000018975, +0.0000018963,0.0000018951,0.0000018941,0.0000018931,0.0000018929, +0.0000018921,0.0000018915,0.0000018924,0.0000018941,0.0000018960, +0.0000018975,0.0000018991,0.0000019005,0.0000019023,0.0000019051, +0.0000019085,0.0000019121,0.0000019160,0.0000019195,0.0000019226, +0.0000019256,0.0000019283,0.0000019309,0.0000019328,0.0000019335, +0.0000019333,0.0000019312,0.0000019299,0.0000019271,0.0000019236, +0.0000019202,0.0000019174,0.0000019151,0.0000019126,0.0000019092, +0.0000019049,0.0000019009,0.0000018980,0.0000018953,0.0000018943, +0.0000018929,0.0000018928,0.0000018939,0.0000018954,0.0000018973, +0.0000018976,0.0000018961,0.0000018931,0.0000018911,0.0000018892, +0.0000018868,0.0000018836,0.0000018782,0.0000018710,0.0000018648, +0.0000018601,0.0000018553,0.0000018500,0.0000018454,0.0000018448, +0.0000018471,0.0000018523,0.0000018595,0.0000018672,0.0000018752, +0.0000018823,0.0000018881,0.0000018881,0.0000018884,0.0000018839, +0.0000018766,0.0000018684,0.0000018607,0.0000018541,0.0000018484, +0.0000018444,0.0000018410,0.0000018402,0.0000018418,0.0000018459, +0.0000018521,0.0000018598,0.0000018685,0.0000018780,0.0000018877, +0.0000018970,0.0000019039,0.0000019082,0.0000019087,0.0000019067, +0.0000019037,0.0000018994,0.0000018950,0.0000018907,0.0000018860, +0.0000018816,0.0000018794,0.0000018786,0.0000018780,0.0000018768, +0.0000018747,0.0000018717,0.0000018691,0.0000018672,0.0000018660, +0.0000018637,0.0000018596,0.0000018549,0.0000018504,0.0000018481, +0.0000018488,0.0000018510,0.0000018546,0.0000018582,0.0000018626, +0.0000018670,0.0000018701,0.0000018714,0.0000018715,0.0000018704, +0.0000018689,0.0000018678,0.0000018673,0.0000018673,0.0000018677, +0.0000018684,0.0000018689,0.0000018699,0.0000018714,0.0000018724, +0.0000018721,0.0000018690,0.0000018644,0.0000018582,0.0000018527, +0.0000018498,0.0000018490,0.0000018490,0.0000018491,0.0000018482, +0.0000018450,0.0000018416,0.0000018390,0.0000018397,0.0000018411, +0.0000018398,0.0000018374,0.0000018356,0.0000018337,0.0000018307, +0.0000018270,0.0000018233,0.0000018201,0.0000018174,0.0000018165, +0.0000018176,0.0000018203,0.0000018254,0.0000018313,0.0000018358, +0.0000018384,0.0000018408,0.0000018432,0.0000018458,0.0000018481, +0.0000018493,0.0000018492,0.0000018469,0.0000018438,0.0000018392, +0.0000018338,0.0000018289,0.0000018245,0.0000018196,0.0000018150, +0.0000018126,0.0000018124,0.0000018135,0.0000018151,0.0000018166, +0.0000018179,0.0000018190,0.0000018199,0.0000018206,0.0000018207, +0.0000018204,0.0000018200,0.0000018197,0.0000018193,0.0000018187, +0.0000018171,0.0000018146,0.0000018123,0.0000018106,0.0000018096, +0.0000018087,0.0000018078,0.0000018066,0.0000018051,0.0000018031, +0.0000018011,0.0000017997,0.0000017991,0.0000017995,0.0000018005, +0.0000018016,0.0000018027,0.0000018033,0.0000018033,0.0000018029, +0.0000018024,0.0000018017,0.0000018011,0.0000018004,0.0000017996, +0.0000017987,0.0000017976,0.0000017959,0.0000017936,0.0000017909, +0.0000017880,0.0000017851,0.0000017824,0.0000017802,0.0000017785, +0.0000017773,0.0000017775,0.0000017789,0.0000017811,0.0000017837, +0.0000017865,0.0000017899,0.0000017935,0.0000017966,0.0000017987, +0.0000018002,0.0000018015,0.0000018025,0.0000018034,0.0000018046, +0.0000018056,0.0000018064,0.0000018075,0.0000018088,0.0000018103, +0.0000018132,0.0000018179,0.0000018232,0.0000018287,0.0000018341, +0.0000018392,0.0000018441,0.0000018490,0.0000018536,0.0000018579, +0.0000018621,0.0000018668,0.0000018730,0.0000018817,0.0000018930, +0.0000019058,0.0000019187,0.0000019301,0.0000019366,0.0000019391, +0.0000019367,0.0000019342,0.0000019282,0.0000019211,0.0000019131, +0.0000019042,0.0000018960,0.0000018910,0.0000018899,0.0000018902, +0.0000018904,0.0000018904,0.0000018900,0.0000018894,0.0000018891, +0.0000018891,0.0000018892,0.0000018879,0.0000018843,0.0000018784, +0.0000018716,0.0000018654,0.0000018605,0.0000018564,0.0000018530, +0.0000018511,0.0000018509,0.0000018519,0.0000018536,0.0000018555, +0.0000018569,0.0000018576,0.0000018580,0.0000018582,0.0000018583, +0.0000018576,0.0000018555,0.0000018521,0.0000018480,0.0000018439, +0.0000018403,0.0000018378,0.0000018363,0.0000018355,0.0000018345, +0.0000018332,0.0000018317,0.0000018304,0.0000018291,0.0000018278, +0.0000018269,0.0000018270,0.0000018276,0.0000018286,0.0000018292, +0.0000018291,0.0000018283,0.0000018273,0.0000018261,0.0000018248, +0.0000018231,0.0000018210,0.0000018191,0.0000018172,0.0000018156, +0.0000018142,0.0000018133,0.0000018126,0.0000018123,0.0000018122, +0.0000018128,0.0000018137,0.0000018147,0.0000018160,0.0000018172, +0.0000018180,0.0000018183,0.0000018184,0.0000018184,0.0000018177, +0.0000018166,0.0000018154,0.0000018136,0.0000018116,0.0000018105, +0.0000018095,0.0000018075,0.0000018058,0.0000018041,0.0000018030, +0.0000018020,0.0000018006,0.0000017990,0.0000017977,0.0000017970, +0.0000017971,0.0000017978,0.0000017989,0.0000018001,0.0000018011, +0.0000018020,0.0000018027,0.0000018033,0.0000018041,0.0000018051, +0.0000018063,0.0000018079,0.0000018099,0.0000018123,0.0000018149, +0.0000018177,0.0000018207,0.0000018231,0.0000018249,0.0000018262, +0.0000018273,0.0000018285,0.0000018299,0.0000018318,0.0000018344, +0.0000018376,0.0000018412,0.0000018445,0.0000018461,0.0000018448, +0.0000018396,0.0000018393,0.0000018503,0.0000018652,0.0000018816, +0.0000018830,0.0000018747,0.0000018735,0.0000018810,0.0000018575, +0.0000018189,0.0000018035,0.0000017947,0.0000017876,0.0000017825, +0.0000017793,0.0000017788,0.0000017804,0.0000017835,0.0000017880, +0.0000017936,0.0000017999,0.0000018066,0.0000018135,0.0000018205, +0.0000018269,0.0000018323,0.0000018366,0.0000018394,0.0000018406, +0.0000018402,0.0000018365,0.0000018288,0.0000018165,0.0000018000, +0.0000017824,0.0000017689,0.0000017622,0.0000017600,0.0000017579, +0.0000017533,0.0000017484,0.0000017461,0.0000017450,0.0000017431, +0.0000017411,0.0000017388,0.0000017351,0.0000017320,0.0000017320, +0.0000017336,0.0000017358,0.0000017395,0.0000017440,0.0000017472, +0.0000017488,0.0000017494,0.0000017505,0.0000017526,0.0000017562, +0.0000017599,0.0000017626,0.0000017640,0.0000017655,0.0000017681, +0.0000017719,0.0000017760,0.0000017796,0.0000017820,0.0000017823, +0.0000017811,0.0000017787,0.0000017765,0.0000017741,0.0000017723, +0.0000017717,0.0000017712,0.0000017715,0.0000017719,0.0000017718, +0.0000017717,0.0000017713,0.0000017707,0.0000017699,0.0000017685, +0.0000017668,0.0000017649,0.0000017631,0.0000017614,0.0000017609, +0.0000017609,0.0000017620,0.0000017644,0.0000017684,0.0000017746, +0.0000017823,0.0000017905,0.0000017990,0.0000018073,0.0000018150, +0.0000018215,0.0000018264,0.0000018309,0.0000018338,0.0000018325, +0.0000018263,0.0000018188,0.0000018160,0.0000018168,0.0000018173, +0.0000018158,0.0000018145,0.0000018151,0.0000018169,0.0000018188, +0.0000018201,0.0000018211,0.0000018223,0.0000018233,0.0000018239, +0.0000018242,0.0000018248,0.0000018255,0.0000018263,0.0000018274, +0.0000018291,0.0000018312,0.0000018322,0.0000018329,0.0000018332, +0.0000018317,0.0000018299,0.0000018287,0.0000018281,0.0000018275, +0.0000018273,0.0000018271,0.0000018267,0.0000018262,0.0000018250, +0.0000018238,0.0000018231,0.0000018228,0.0000018226,0.0000018226, +0.0000018225,0.0000018227,0.0000018225,0.0000018226,0.0000018232, +0.0000018246,0.0000018260,0.0000018277,0.0000018297,0.0000018317, +0.0000018335,0.0000018350,0.0000018360,0.0000018363,0.0000018362, +0.0000018357,0.0000018352,0.0000018349,0.0000018349,0.0000018353, +0.0000018361,0.0000018374,0.0000018387,0.0000018404,0.0000018424, +0.0000018445,0.0000018467,0.0000018494,0.0000018524,0.0000018553, +0.0000018580,0.0000018606,0.0000018631,0.0000018653,0.0000018672, +0.0000018687,0.0000018702,0.0000018715,0.0000018725,0.0000018727, +0.0000018723,0.0000018713,0.0000018695,0.0000018668,0.0000018632, +0.0000018592,0.0000018554,0.0000018521,0.0000018491,0.0000018464, +0.0000018445,0.0000018428,0.0000018415,0.0000018411,0.0000018408, +0.0000018407,0.0000018409,0.0000018413,0.0000018418,0.0000018425, +0.0000018430,0.0000018431,0.0000018425,0.0000018415,0.0000018403, +0.0000018388,0.0000018367,0.0000018344,0.0000018320,0.0000018297, +0.0000018274,0.0000018252,0.0000018229,0.0000018201,0.0000018163, +0.0000018117,0.0000018062,0.0000018010,0.0000017970,0.0000017952, +0.0000017958,0.0000017972,0.0000017990,0.0000018005,0.0000018021, +0.0000018021,0.0000018007,0.0000017986,0.0000017972,0.0000017973, +0.0000017994,0.0000018023,0.0000018048,0.0000018057,0.0000018038, +0.0000017994,0.0000017950,0.0000017936,0.0000017961,0.0000018029, +0.0000018120,0.0000018196,0.0000018224,0.0000018211,0.0000018193, +0.0000018184,0.0000018184,0.0000018193,0.0000018205,0.0000018222, +0.0000018242,0.0000018247,0.0000018233,0.0000018204,0.0000018162, +0.0000018109,0.0000018046,0.0000017975,0.0000017899,0.0000017830, +0.0000017786,0.0000017777,0.0000017783,0.0000017810,0.0000017841, +0.0000017866,0.0000017877,0.0000017874,0.0000017865,0.0000017849, +0.0000017826,0.0000017800,0.0000017764,0.0000017724,0.0000017692, +0.0000017673,0.0000017674,0.0000017695,0.0000017734,0.0000017784, +0.0000017838,0.0000017886,0.0000017928,0.0000017970,0.0000018017, +0.0000018067,0.0000018115,0.0000018156,0.0000018181,0.0000018186, +0.0000018175,0.0000018148,0.0000018109,0.0000018064,0.0000018014, +0.0000017958,0.0000017904,0.0000017861,0.0000017832,0.0000017812, +0.0000017796,0.0000017788,0.0000017775,0.0000017756,0.0000017740, +0.0000017729,0.0000017717,0.0000017704,0.0000017697,0.0000017700, +0.0000017716,0.0000017743,0.0000017778,0.0000017818,0.0000017863, +0.0000017907,0.0000017946,0.0000017972,0.0000017984,0.0000017985, +0.0000017979,0.0000017966,0.0000017944,0.0000017914,0.0000017874, +0.0000017827,0.0000017781,0.0000017741,0.0000017709,0.0000017680, +0.0000017655,0.0000017632,0.0000017615,0.0000017608,0.0000017610, +0.0000017615,0.0000017627,0.0000017645,0.0000017664,0.0000017682, +0.0000017702,0.0000017721,0.0000017736,0.0000017748,0.0000017752, +0.0000017751,0.0000017744,0.0000017730,0.0000017710,0.0000017685, +0.0000017651,0.0000017609,0.0000017561,0.0000017508,0.0000017456, +0.0000017406,0.0000017360,0.0000017323,0.0000017299,0.0000017286, +0.0000017287,0.0000017289,0.0000017292,0.0000017294,0.0000017298, +0.0000017305,0.0000017318,0.0000017337,0.0000017365,0.0000017403, +0.0000017450,0.0000017505,0.0000017566,0.0000017625,0.0000017678, +0.0000017721,0.0000017755,0.0000017779,0.0000017790,0.0000017790, +0.0000017781,0.0000017770,0.0000017758,0.0000017750,0.0000017749, +0.0000017755,0.0000017770,0.0000017790,0.0000017807,0.0000017816, +0.0000017813,0.0000017794,0.0000017757,0.0000017708,0.0000017653, +0.0000017592,0.0000017528,0.0000017461,0.0000017392,0.0000017327, +0.0000017278,0.0000017248,0.0000017235,0.0000017242,0.0000017269, +0.0000017306,0.0000017350,0.0000017416,0.0000017524,0.0000017674, +0.0000017841,0.0000017977,0.0000018045,0.0000018048,0.0000018066, +0.0000018120,0.0000018197,0.0000018242,0.0000018236,0.0000018130, +0.0000017966,0.0000017815,0.0000017721,0.0000017708,0.0000017712, +0.0000017722,0.0000017732,0.0000017738,0.0000017735,0.0000017725, +0.0000017716,0.0000017717,0.0000017717,0.0000017705,0.0000017663, +0.0000017583,0.0000017485,0.0000017408,0.0000017381,0.0000017399, +0.0000017433,0.0000017441,0.0000017420,0.0000017405,0.0000017456, +0.0000017621,0.0000017852,0.0000018025,0.0000018085,0.0000018108, +0.0000018181,0.0000018333,0.0000018530,0.0000018708,0.0000018845, +0.0000018959,0.0000019060,0.0000019143,0.0000019197,0.0000019210, +0.0000019213,0.0000019227,0.0000019253,0.0000019288,0.0000019329, +0.0000019371,0.0000019411,0.0000019447,0.0000019474,0.0000019492, +0.0000019503,0.0000019509,0.0000019509,0.0000019505,0.0000019503, +0.0000019500,0.0000019495,0.0000019491,0.0000019489,0.0000019490, +0.0000019492,0.0000019497,0.0000019502,0.0000019507,0.0000019514, +0.0000019521,0.0000019530,0.0000019540,0.0000019548,0.0000019553, +0.0000019557,0.0000019560,0.0000019563,0.0000019568,0.0000019569, +0.0000019566,0.0000019562,0.0000019560,0.0000019557,0.0000019551, +0.0000019541,0.0000019531,0.0000019520,0.0000019502,0.0000019481, +0.0000019456,0.0000019428,0.0000019399,0.0000019367,0.0000019332, +0.0000019301,0.0000019275,0.0000019254,0.0000019234,0.0000019214, +0.0000019193,0.0000019174,0.0000019156,0.0000019134,0.0000019108, +0.0000019074,0.0000019026,0.0000018962,0.0000018879,0.0000018780, +0.0000018663,0.0000018531,0.0000018385,0.0000018230,0.0000018065, +0.0000017898,0.0000017740,0.0000017611,0.0000017518,0.0000017458, +0.0000017422,0.0000017408,0.0000017408,0.0000017421,0.0000017439, +0.0000017463,0.0000017493,0.0000017525,0.0000017553,0.0000017572, +0.0000017574,0.0000017565,0.0000017542,0.0000017514,0.0000017484, +0.0000017455,0.0000017431,0.0000017411,0.0000017398,0.0000017387, +0.0000017381,0.0000017380,0.0000017378,0.0000017375,0.0000017368, +0.0000017358,0.0000017343,0.0000017322,0.0000017296,0.0000017266, +0.0000017243,0.0000017240,0.0000017261,0.0000017304,0.0000017363, +0.0000017426,0.0000017490,0.0000017546,0.0000017594,0.0000017619, +0.0000017624,0.0000017626,0.0000017619,0.0000017609,0.0000017593, +0.0000017574,0.0000017551,0.0000017529,0.0000017505,0.0000017481, +0.0000017461,0.0000017441,0.0000017421,0.0000017406,0.0000017395, +0.0000017385,0.0000017374,0.0000017362,0.0000017353,0.0000017352, +0.0000017359,0.0000017370,0.0000017382,0.0000017398,0.0000017415, +0.0000017429,0.0000017440,0.0000017451,0.0000017459,0.0000017469, +0.0000017479,0.0000017489,0.0000017499,0.0000017509,0.0000017523, +0.0000017538,0.0000017551,0.0000017561,0.0000017569,0.0000017577, +0.0000017586,0.0000017593,0.0000017598,0.0000017600,0.0000017602, +0.0000017601,0.0000017601,0.0000017605,0.0000017608,0.0000017605, +0.0000017600,0.0000017594,0.0000017587,0.0000017578,0.0000017570, +0.0000017561,0.0000017552,0.0000017540,0.0000017527,0.0000017512, +0.0000017493,0.0000017473,0.0000017452,0.0000017427,0.0000017406, +0.0000017383,0.0000017354,0.0000017326,0.0000017307,0.0000017303, +0.0000017305,0.0000017309,0.0000017310,0.0000017307,0.0000017304, +0.0000017296,0.0000017286,0.0000017282,0.0000017267,0.0000017259, +0.0000017249,0.0000017239,0.0000017229,0.0000017229,0.0000017234, +0.0000017249,0.0000017276,0.0000017302,0.0000017328,0.0000017347, +0.0000017367,0.0000017392,0.0000017430,0.0000017477,0.0000017533, +0.0000017602,0.0000017680,0.0000017766,0.0000017859,0.0000017958, +0.0000018067,0.0000018179,0.0000018292,0.0000018406,0.0000018519, +0.0000018626,0.0000018722,0.0000018811,0.0000018893,0.0000018959, +0.0000019005,0.0000019036,0.0000019057,0.0000019071,0.0000019082, +0.0000019091,0.0000019099,0.0000019108,0.0000019116,0.0000019125, +0.0000019134,0.0000019145,0.0000019157,0.0000019172,0.0000019187, +0.0000019201,0.0000019214,0.0000019229,0.0000019247,0.0000019266, +0.0000019284,0.0000019305,0.0000019326,0.0000019348,0.0000019368, +0.0000019388,0.0000019408,0.0000019431,0.0000019455,0.0000019481, +0.0000019511,0.0000019541,0.0000019574,0.0000019604,0.0000019629, +0.0000019650,0.0000019667,0.0000019677,0.0000019681,0.0000019682, +0.0000019684,0.0000019689,0.0000019702,0.0000019725,0.0000019754, +0.0000019785,0.0000019817,0.0000019851,0.0000019881,0.0000019905, +0.0000019919,0.0000019925,0.0000019925,0.0000019922,0.0000019918, +0.0000019914,0.0000019911,0.0000019910,0.0000019909,0.0000019906, +0.0000019897,0.0000019884,0.0000019872,0.0000019862,0.0000019855, +0.0000019856,0.0000019864,0.0000019875,0.0000019888,0.0000019899, +0.0000019902,0.0000019895,0.0000019886,0.0000019876,0.0000019873, +0.0000019877,0.0000019887,0.0000019893,0.0000019893,0.0000019883, +0.0000019864,0.0000019839,0.0000019808,0.0000019775,0.0000019745, +0.0000019722,0.0000019702,0.0000019690,0.0000019691,0.0000019710, +0.0000019745,0.0000019787,0.0000019826,0.0000019862,0.0000019890, +0.0000019908,0.0000019913,0.0000019912,0.0000019905,0.0000019893, +0.0000019878,0.0000019858,0.0000019833,0.0000019802,0.0000019768, +0.0000019742,0.0000019720,0.0000019698,0.0000019677,0.0000019664, +0.0000019666,0.0000019673,0.0000019681,0.0000019686,0.0000019690, +0.0000019695,0.0000019705,0.0000019717,0.0000019727,0.0000019741, +0.0000019753,0.0000019765,0.0000019777,0.0000019785,0.0000019796, +0.0000019803,0.0000019803,0.0000019799,0.0000019795,0.0000019790, +0.0000019794,0.0000019802,0.0000019803,0.0000019802,0.0000019798, +0.0000019787,0.0000019766,0.0000019747,0.0000019725,0.0000019694, +0.0000019663,0.0000019633,0.0000019602,0.0000019574,0.0000019550, +0.0000019526,0.0000019498,0.0000019469,0.0000019444,0.0000019431, +0.0000019430,0.0000019442,0.0000019457,0.0000019471,0.0000019482, +0.0000019490,0.0000019495,0.0000019499,0.0000019500,0.0000019497, +0.0000019487,0.0000019472,0.0000019454,0.0000019446,0.0000019449, +0.0000019460,0.0000019467,0.0000019466,0.0000019454,0.0000019426, +0.0000019386,0.0000019343,0.0000019299,0.0000019255,0.0000019218, +0.0000019190,0.0000019172,0.0000019163,0.0000019159,0.0000019158, +0.0000019151,0.0000019136,0.0000019115,0.0000019085,0.0000019049, +0.0000019021,0.0000019017,0.0000019016,0.0000019026,0.0000019039, +0.0000019046,0.0000019040,0.0000019038,0.0000019033,0.0000019029, +0.0000019023,0.0000019016,0.0000019004,0.0000018985,0.0000018966, +0.0000018946,0.0000018929,0.0000018932,0.0000018932,0.0000018944, +0.0000018962,0.0000018973,0.0000018979,0.0000018984,0.0000018990, +0.0000018996,0.0000019007,0.0000019026,0.0000019048,0.0000019073, +0.0000019104,0.0000019140,0.0000019181,0.0000019217,0.0000019244, +0.0000019259,0.0000019264,0.0000019259,0.0000019246,0.0000019223, +0.0000019213,0.0000019208,0.0000019197,0.0000019180,0.0000019156, +0.0000019124,0.0000019083,0.0000019040,0.0000018995,0.0000018954, +0.0000018913,0.0000018892,0.0000018875,0.0000018881,0.0000018901, +0.0000018918,0.0000018936,0.0000018942,0.0000018946,0.0000018933, +0.0000018906,0.0000018853,0.0000018783,0.0000018717,0.0000018663, +0.0000018619,0.0000018582,0.0000018547,0.0000018516,0.0000018497, +0.0000018492,0.0000018485,0.0000018493,0.0000018533,0.0000018601, +0.0000018685,0.0000018763,0.0000018824,0.0000018841,0.0000018844, +0.0000018810,0.0000018756,0.0000018685,0.0000018599,0.0000018511, +0.0000018434,0.0000018391,0.0000018369,0.0000018368,0.0000018395, +0.0000018454,0.0000018527,0.0000018607,0.0000018683,0.0000018758, +0.0000018835,0.0000018908,0.0000018963,0.0000019000,0.0000019015, +0.0000019005,0.0000018986,0.0000018954,0.0000018906,0.0000018858, +0.0000018826,0.0000018814,0.0000018811,0.0000018811,0.0000018803, +0.0000018786,0.0000018764,0.0000018745,0.0000018730,0.0000018714, +0.0000018680,0.0000018621,0.0000018559,0.0000018515,0.0000018511, +0.0000018525,0.0000018544,0.0000018560,0.0000018588,0.0000018617, +0.0000018647,0.0000018666,0.0000018666,0.0000018656,0.0000018645, +0.0000018640,0.0000018640,0.0000018637,0.0000018640,0.0000018641, +0.0000018634,0.0000018635,0.0000018641,0.0000018644,0.0000018639, +0.0000018615,0.0000018574,0.0000018524,0.0000018482,0.0000018457, +0.0000018447,0.0000018449,0.0000018452,0.0000018450,0.0000018436, +0.0000018410,0.0000018390,0.0000018402,0.0000018427,0.0000018432, +0.0000018415,0.0000018397,0.0000018378,0.0000018358,0.0000018333, +0.0000018300,0.0000018259,0.0000018220,0.0000018188,0.0000018178, +0.0000018182,0.0000018198,0.0000018236,0.0000018283,0.0000018327, +0.0000018365,0.0000018395,0.0000018414,0.0000018427,0.0000018435, +0.0000018434,0.0000018422,0.0000018403,0.0000018363,0.0000018315, +0.0000018268,0.0000018222,0.0000018174,0.0000018130,0.0000018109, +0.0000018116,0.0000018136,0.0000018156,0.0000018175,0.0000018188, +0.0000018199,0.0000018206,0.0000018207,0.0000018197,0.0000018180, +0.0000018159,0.0000018141,0.0000018127,0.0000018115,0.0000018101, +0.0000018079,0.0000018055,0.0000018038,0.0000018029,0.0000018025, +0.0000018023,0.0000018021,0.0000018015,0.0000018006,0.0000017996, +0.0000017990,0.0000017988,0.0000017990,0.0000017997,0.0000018007, +0.0000018018,0.0000018025,0.0000018027,0.0000018025,0.0000018019, +0.0000018012,0.0000018005,0.0000017995,0.0000017984,0.0000017974, +0.0000017957,0.0000017936,0.0000017913,0.0000017888,0.0000017862, +0.0000017834,0.0000017810,0.0000017789,0.0000017771,0.0000017760, +0.0000017756,0.0000017756,0.0000017759,0.0000017768,0.0000017786, +0.0000017816,0.0000017852,0.0000017890,0.0000017927,0.0000017960, +0.0000017986,0.0000018008,0.0000018025,0.0000018038,0.0000018050, +0.0000018061,0.0000018070,0.0000018069,0.0000018065,0.0000018069, +0.0000018092,0.0000018132,0.0000018188,0.0000018253,0.0000018316, +0.0000018376,0.0000018428,0.0000018475,0.0000018519,0.0000018561, +0.0000018603,0.0000018648,0.0000018707,0.0000018783,0.0000018881, +0.0000018995,0.0000019117,0.0000019233,0.0000019303,0.0000019355, +0.0000019338,0.0000019324,0.0000019272,0.0000019207,0.0000019128, +0.0000019046,0.0000018973,0.0000018930,0.0000018918,0.0000018919, +0.0000018918,0.0000018910,0.0000018900,0.0000018892,0.0000018888, +0.0000018889,0.0000018889,0.0000018873,0.0000018834,0.0000018775, +0.0000018707,0.0000018647,0.0000018601,0.0000018567,0.0000018544, +0.0000018531,0.0000018530,0.0000018533,0.0000018541,0.0000018551, +0.0000018561,0.0000018566,0.0000018566,0.0000018563,0.0000018559, +0.0000018549,0.0000018531,0.0000018500,0.0000018457,0.0000018411, +0.0000018373,0.0000018351,0.0000018341,0.0000018332,0.0000018318, +0.0000018301,0.0000018282,0.0000018262,0.0000018249,0.0000018245, +0.0000018244,0.0000018251,0.0000018261,0.0000018268,0.0000018271, +0.0000018270,0.0000018261,0.0000018248,0.0000018230,0.0000018207, +0.0000018186,0.0000018171,0.0000018158,0.0000018148,0.0000018141, +0.0000018134,0.0000018126,0.0000018115,0.0000018108,0.0000018107, +0.0000018110,0.0000018121,0.0000018136,0.0000018152,0.0000018165, +0.0000018177,0.0000018186,0.0000018190,0.0000018191,0.0000018188, +0.0000018179,0.0000018165,0.0000018142,0.0000018117,0.0000018089, +0.0000018060,0.0000018032,0.0000018006,0.0000017982,0.0000017954, +0.0000017927,0.0000017908,0.0000017897,0.0000017897,0.0000017903, +0.0000017920,0.0000017940,0.0000017961,0.0000017980,0.0000017998, +0.0000018016,0.0000018034,0.0000018052,0.0000018071,0.0000018091, +0.0000018113,0.0000018134,0.0000018152,0.0000018169,0.0000018181, +0.0000018188,0.0000018196,0.0000018210,0.0000018226,0.0000018246, +0.0000018276,0.0000018305,0.0000018339,0.0000018378,0.0000018420, +0.0000018450,0.0000018452,0.0000018405,0.0000018377,0.0000018453, +0.0000018609,0.0000018796,0.0000018843,0.0000018778,0.0000018718, +0.0000018783,0.0000018688,0.0000018266,0.0000018015,0.0000017893, +0.0000017806,0.0000017747,0.0000017684,0.0000017615,0.0000017555, +0.0000017513,0.0000017488,0.0000017478,0.0000017487,0.0000017501, +0.0000017513,0.0000017525,0.0000017538,0.0000017559,0.0000017581, +0.0000017603,0.0000017619,0.0000017626,0.0000017622,0.0000017612, +0.0000017600,0.0000017583,0.0000017566,0.0000017560,0.0000017561, +0.0000017550,0.0000017523,0.0000017487,0.0000017468,0.0000017464, +0.0000017456,0.0000017429,0.0000017401,0.0000017376,0.0000017331, +0.0000017284,0.0000017280,0.0000017310,0.0000017348,0.0000017389, +0.0000017427,0.0000017450,0.0000017464,0.0000017484,0.0000017520, +0.0000017568,0.0000017611,0.0000017636,0.0000017649,0.0000017665, +0.0000017692,0.0000017727,0.0000017761,0.0000017778,0.0000017784, +0.0000017769,0.0000017751,0.0000017733,0.0000017722,0.0000017730, +0.0000017730,0.0000017739,0.0000017751,0.0000017766,0.0000017781, +0.0000017791,0.0000017797,0.0000017800,0.0000017798,0.0000017791, +0.0000017779,0.0000017762,0.0000017741,0.0000017718,0.0000017693, +0.0000017668,0.0000017645,0.0000017631,0.0000017626,0.0000017626, +0.0000017632,0.0000017651,0.0000017698,0.0000017767,0.0000017851, +0.0000017941,0.0000018024,0.0000018102,0.0000018170,0.0000018223, +0.0000018266,0.0000018302,0.0000018300,0.0000018250,0.0000018179, +0.0000018145,0.0000018153,0.0000018168,0.0000018158,0.0000018133, +0.0000018113,0.0000018112,0.0000018128,0.0000018148,0.0000018173, +0.0000018195,0.0000018209,0.0000018216,0.0000018221,0.0000018227, +0.0000018231,0.0000018235,0.0000018239,0.0000018244,0.0000018257, +0.0000018277,0.0000018311,0.0000018333,0.0000018342,0.0000018354, +0.0000018345,0.0000018331,0.0000018316,0.0000018303,0.0000018291, +0.0000018283,0.0000018275,0.0000018268,0.0000018261,0.0000018256, +0.0000018252,0.0000018251,0.0000018250,0.0000018250,0.0000018251, +0.0000018259,0.0000018270,0.0000018282,0.0000018296,0.0000018310, +0.0000018322,0.0000018336,0.0000018348,0.0000018356,0.0000018362, +0.0000018366,0.0000018365,0.0000018362,0.0000018358,0.0000018355, +0.0000018356,0.0000018360,0.0000018365,0.0000018417,0.0000018434, +0.0000018454,0.0000018477,0.0000018500,0.0000018521,0.0000018544, +0.0000018569,0.0000018596,0.0000018622,0.0000018648,0.0000018672, +0.0000018694,0.0000018710,0.0000018720,0.0000018726,0.0000018734, +0.0000018740,0.0000018743,0.0000018746,0.0000018746,0.0000018740, +0.0000018730,0.0000018710,0.0000018681,0.0000018646,0.0000018607, +0.0000018568,0.0000018532,0.0000018498,0.0000018470,0.0000018453, +0.0000018446,0.0000018445,0.0000018445,0.0000018446,0.0000018448, +0.0000018451,0.0000018454,0.0000018457,0.0000018458,0.0000018454, +0.0000018443,0.0000018430,0.0000018414,0.0000018392,0.0000018365, +0.0000018336,0.0000018312,0.0000018292,0.0000018272,0.0000018253, +0.0000018236,0.0000018213,0.0000018181,0.0000018137,0.0000018083, +0.0000018028,0.0000017987,0.0000017969,0.0000017972,0.0000017985, +0.0000018000,0.0000018016,0.0000018031,0.0000018040,0.0000018037, +0.0000018028,0.0000018018,0.0000018017,0.0000018030,0.0000018051, +0.0000018070,0.0000018079,0.0000018061,0.0000018017,0.0000017960, +0.0000017924,0.0000017911,0.0000017949,0.0000018031,0.0000018123, +0.0000018180,0.0000018186,0.0000018172,0.0000018160,0.0000018159, +0.0000018168,0.0000018184,0.0000018207,0.0000018229,0.0000018240, +0.0000018240,0.0000018221,0.0000018183,0.0000018131,0.0000018069, +0.0000017999,0.0000017920,0.0000017846,0.0000017799,0.0000017791, +0.0000017803,0.0000017831,0.0000017859,0.0000017876,0.0000017877, +0.0000017869,0.0000017856,0.0000017842,0.0000017827,0.0000017807, +0.0000017772,0.0000017729,0.0000017693,0.0000017670,0.0000017658, +0.0000017665,0.0000017698,0.0000017752,0.0000017813,0.0000017868, +0.0000017914,0.0000017952,0.0000017990,0.0000018031,0.0000018074, +0.0000018115,0.0000018147,0.0000018165,0.0000018162,0.0000018141, +0.0000018108,0.0000018068,0.0000018022,0.0000017973,0.0000017927, +0.0000017889,0.0000017860,0.0000017844,0.0000017843,0.0000017842, +0.0000017834,0.0000017824,0.0000017814,0.0000017805,0.0000017795, +0.0000017791,0.0000017796,0.0000017814,0.0000017847,0.0000017887, +0.0000017926,0.0000017960,0.0000017988,0.0000018007,0.0000018012, +0.0000018008,0.0000017996,0.0000017980,0.0000017959,0.0000017931, +0.0000017892,0.0000017846,0.0000017800,0.0000017761,0.0000017729, +0.0000017698,0.0000017663,0.0000017623,0.0000017584,0.0000017556, +0.0000017543,0.0000017542,0.0000017551,0.0000017570,0.0000017597, +0.0000017629,0.0000017662,0.0000017694,0.0000017722,0.0000017743, +0.0000017757,0.0000017768,0.0000017773,0.0000017773,0.0000017767, +0.0000017759,0.0000017748,0.0000017733,0.0000017709,0.0000017677, +0.0000017638,0.0000017593,0.0000017541,0.0000017486,0.0000017434, +0.0000017390,0.0000017357,0.0000017330,0.0000017310,0.0000017296, +0.0000017291,0.0000017290,0.0000017293,0.0000017301,0.0000017312, +0.0000017332,0.0000017363,0.0000017403,0.0000017450,0.0000017501, +0.0000017555,0.0000017606,0.0000017650,0.0000017687,0.0000017712, +0.0000017728,0.0000017734,0.0000017733,0.0000017727,0.0000017725, +0.0000017728,0.0000017736,0.0000017754,0.0000017782,0.0000017809, +0.0000017832,0.0000017850,0.0000017858,0.0000017848,0.0000017819, +0.0000017774,0.0000017718,0.0000017655,0.0000017588,0.0000017517, +0.0000017442,0.0000017369,0.0000017307,0.0000017261,0.0000017233, +0.0000017225,0.0000017237,0.0000017268,0.0000017307,0.0000017357, +0.0000017426,0.0000017522,0.0000017651,0.0000017806,0.0000017943, +0.0000018023,0.0000018033,0.0000018048,0.0000018098,0.0000018173, +0.0000018218,0.0000018215,0.0000018119,0.0000017969,0.0000017824, +0.0000017716,0.0000017697,0.0000017701,0.0000017713,0.0000017721, +0.0000017720,0.0000017711,0.0000017696,0.0000017682,0.0000017677, +0.0000017678,0.0000017660,0.0000017601,0.0000017505,0.0000017411, +0.0000017371,0.0000017372,0.0000017401,0.0000017418,0.0000017400, +0.0000017365,0.0000017360,0.0000017454,0.0000017647,0.0000017866, +0.0000018007,0.0000018060,0.0000018106,0.0000018209,0.0000018374, +0.0000018562,0.0000018725,0.0000018853,0.0000018962,0.0000019058, +0.0000019135,0.0000019188,0.0000019211,0.0000019219,0.0000019227, +0.0000019242,0.0000019261,0.0000019283,0.0000019308,0.0000019332, +0.0000019353,0.0000019369,0.0000019382,0.0000019391,0.0000019398, +0.0000019402,0.0000019407,0.0000019413,0.0000019418,0.0000019424, +0.0000019429,0.0000019436,0.0000019443,0.0000019450,0.0000019457, +0.0000019461,0.0000019467,0.0000019475,0.0000019485,0.0000019497, +0.0000019509,0.0000019519,0.0000019528,0.0000019536,0.0000019546, +0.0000019552,0.0000019554,0.0000019554,0.0000019551,0.0000019543, +0.0000019532,0.0000019516,0.0000019498,0.0000019477,0.0000019453, +0.0000019428,0.0000019403,0.0000019377,0.0000019353,0.0000019328, +0.0000019302,0.0000019284,0.0000019269,0.0000019251,0.0000019230, +0.0000019205,0.0000019177,0.0000019143,0.0000019101,0.0000019047, +0.0000018981,0.0000018902,0.0000018809,0.0000018703,0.0000018587, +0.0000018463,0.0000018330,0.0000018187,0.0000018033,0.0000017876, +0.0000017728,0.0000017601,0.0000017504,0.0000017443,0.0000017413, +0.0000017399,0.0000017397,0.0000017400,0.0000017415,0.0000017440, +0.0000017471,0.0000017498,0.0000017523,0.0000017538,0.0000017541, +0.0000017531,0.0000017510,0.0000017481,0.0000017450,0.0000017425, +0.0000017405,0.0000017393,0.0000017389,0.0000017391,0.0000017394, +0.0000017399,0.0000017407,0.0000017414,0.0000017416,0.0000017413, +0.0000017400,0.0000017379,0.0000017359,0.0000017348,0.0000017349, +0.0000017367,0.0000017401,0.0000017445,0.0000017492,0.0000017531, +0.0000017564,0.0000017572,0.0000017577,0.0000017588,0.0000017581, +0.0000017570,0.0000017558,0.0000017556,0.0000017553,0.0000017550, +0.0000017549,0.0000017551,0.0000017551,0.0000017549,0.0000017545, +0.0000017539,0.0000017530,0.0000017519,0.0000017505,0.0000017489, +0.0000017474,0.0000017461,0.0000017448,0.0000017433,0.0000017416, +0.0000017401,0.0000017392,0.0000017392,0.0000017399,0.0000017411, +0.0000017426,0.0000017440,0.0000017452,0.0000017462,0.0000017471, +0.0000017478,0.0000017485,0.0000017492,0.0000017498,0.0000017505, +0.0000017515,0.0000017528,0.0000017539,0.0000017547,0.0000017550, +0.0000017553,0.0000017564,0.0000017575,0.0000017579,0.0000017583, +0.0000017590,0.0000017593,0.0000017598,0.0000017612,0.0000017625, +0.0000017630,0.0000017640,0.0000017647,0.0000017646,0.0000017647, +0.0000017650,0.0000017645,0.0000017639,0.0000017629,0.0000017612, +0.0000017592,0.0000017568,0.0000017543,0.0000017510,0.0000017473, +0.0000017441,0.0000017410,0.0000017376,0.0000017353,0.0000017345, +0.0000017346,0.0000017358,0.0000017368,0.0000017374,0.0000017375, +0.0000017368,0.0000017352,0.0000017333,0.0000017310,0.0000017285, +0.0000017260,0.0000017239,0.0000017216,0.0000017201,0.0000017199, +0.0000017195,0.0000017214,0.0000017243,0.0000017278,0.0000017314, +0.0000017344,0.0000017371,0.0000017397,0.0000017413,0.0000017421, +0.0000017430,0.0000017435,0.0000017439,0.0000017461,0.0000017491, +0.0000017533,0.0000017587,0.0000017650,0.0000017721,0.0000017805, +0.0000017902,0.0000018006,0.0000018120,0.0000018246,0.0000018381, +0.0000018512,0.0000018632,0.0000018738,0.0000018823,0.0000018892, +0.0000018948,0.0000018990,0.0000019020,0.0000019042,0.0000019058, +0.0000019068,0.0000019076,0.0000019083,0.0000019095,0.0000019110, +0.0000019127,0.0000019145,0.0000019162,0.0000019182,0.0000019205, +0.0000019227,0.0000019244,0.0000019258,0.0000019270,0.0000019282, +0.0000019296,0.0000019309,0.0000019322,0.0000019338,0.0000019357, +0.0000019379,0.0000019404,0.0000019431,0.0000019466,0.0000019504, +0.0000019536,0.0000019566,0.0000019592,0.0000019611,0.0000019624, +0.0000019632,0.0000019636,0.0000019637,0.0000019640,0.0000019650, +0.0000019670,0.0000019695,0.0000019725,0.0000019756,0.0000019791, +0.0000019821,0.0000019842,0.0000019857,0.0000019870,0.0000019880, +0.0000019883,0.0000019885,0.0000019885,0.0000019882,0.0000019874, +0.0000019860,0.0000019844,0.0000019829,0.0000019816,0.0000019810, +0.0000019809,0.0000019810,0.0000019815,0.0000019823,0.0000019831, +0.0000019841,0.0000019851,0.0000019857,0.0000019862,0.0000019865, +0.0000019871,0.0000019878,0.0000019886,0.0000019890,0.0000019889, +0.0000019882,0.0000019868,0.0000019847,0.0000019817,0.0000019780, +0.0000019747,0.0000019720,0.0000019696,0.0000019681,0.0000019677, +0.0000019691,0.0000019724,0.0000019766,0.0000019805,0.0000019835, +0.0000019856,0.0000019871,0.0000019877,0.0000019879,0.0000019876, +0.0000019866,0.0000019848,0.0000019825,0.0000019798,0.0000019769, +0.0000019741,0.0000019720,0.0000019701,0.0000019683,0.0000019670, +0.0000019670,0.0000019683,0.0000019703,0.0000019722,0.0000019735, +0.0000019740,0.0000019743,0.0000019745,0.0000019744,0.0000019742, +0.0000019743,0.0000019747,0.0000019751,0.0000019758,0.0000019772, +0.0000019784,0.0000019786,0.0000019786,0.0000019782,0.0000019774, +0.0000019773,0.0000019777,0.0000019775,0.0000019774,0.0000019775, +0.0000019768,0.0000019752,0.0000019737,0.0000019721,0.0000019704, +0.0000019691,0.0000019681,0.0000019672,0.0000019668,0.0000019664, +0.0000019656,0.0000019642,0.0000019625,0.0000019608,0.0000019594, +0.0000019583,0.0000019579,0.0000019585,0.0000019598,0.0000019610, +0.0000019618,0.0000019619,0.0000019615,0.0000019603,0.0000019586, +0.0000019564,0.0000019540,0.0000019519,0.0000019502,0.0000019495, +0.0000019498,0.0000019507,0.0000019523,0.0000019533,0.0000019530, +0.0000019515,0.0000019494,0.0000019464,0.0000019425,0.0000019376, +0.0000019322,0.0000019272,0.0000019239,0.0000019227,0.0000019227, +0.0000019225,0.0000019214,0.0000019193,0.0000019165,0.0000019131, +0.0000019099,0.0000019074,0.0000019053,0.0000019038,0.0000019030, +0.0000019025,0.0000019019,0.0000019013,0.0000019014,0.0000019017, +0.0000019027,0.0000019037,0.0000019041,0.0000019035,0.0000019022, +0.0000019002,0.0000018976,0.0000018953,0.0000018937,0.0000018941, +0.0000018954,0.0000018968,0.0000018977,0.0000018984,0.0000018982, +0.0000018979,0.0000018970,0.0000018962,0.0000018961,0.0000018962, +0.0000018971,0.0000018988,0.0000019015,0.0000019051,0.0000019090, +0.0000019124,0.0000019151,0.0000019168,0.0000019178,0.0000019182, +0.0000019180,0.0000019179,0.0000019180,0.0000019180,0.0000019181, +0.0000019177,0.0000019164,0.0000019143,0.0000019111,0.0000019065, +0.0000019010,0.0000018945,0.0000018891,0.0000018849,0.0000018838, +0.0000018840,0.0000018866,0.0000018902,0.0000018929,0.0000018943, +0.0000018933,0.0000018909,0.0000018863,0.0000018805,0.0000018745, +0.0000018693,0.0000018650,0.0000018619,0.0000018604,0.0000018590, +0.0000018564,0.0000018531,0.0000018483,0.0000018472,0.0000018460, +0.0000018491,0.0000018544,0.0000018612,0.0000018684,0.0000018749, +0.0000018810,0.0000018812,0.0000018803,0.0000018757,0.0000018674, +0.0000018577,0.0000018487,0.0000018413,0.0000018365,0.0000018354, +0.0000018372,0.0000018410,0.0000018464,0.0000018530,0.0000018598, +0.0000018658,0.0000018708,0.0000018759,0.0000018816,0.0000018876, +0.0000018931,0.0000018966,0.0000018961,0.0000018942,0.0000018906, +0.0000018868,0.0000018851,0.0000018851,0.0000018853,0.0000018848, +0.0000018834,0.0000018810,0.0000018782,0.0000018765,0.0000018757, +0.0000018737,0.0000018697,0.0000018642,0.0000018601,0.0000018584, +0.0000018576,0.0000018568,0.0000018564,0.0000018562,0.0000018570, +0.0000018594,0.0000018612,0.0000018612,0.0000018604,0.0000018603, +0.0000018607,0.0000018612,0.0000018611,0.0000018612,0.0000018603, +0.0000018587,0.0000018580,0.0000018583,0.0000018586,0.0000018587, +0.0000018563,0.0000018524,0.0000018477,0.0000018437,0.0000018406, +0.0000018390,0.0000018387,0.0000018393,0.0000018401,0.0000018404, +0.0000018393,0.0000018380,0.0000018394,0.0000018428,0.0000018450, +0.0000018447,0.0000018434,0.0000018418,0.0000018401,0.0000018381, +0.0000018354,0.0000018314,0.0000018271,0.0000018232,0.0000018198, +0.0000018185,0.0000018174,0.0000018175,0.0000018193,0.0000018232, +0.0000018286,0.0000018345,0.0000018387,0.0000018402,0.0000018396, +0.0000018379,0.0000018362,0.0000018343,0.0000018314,0.0000018276, +0.0000018232,0.0000018185,0.0000018141,0.0000018106,0.0000018096, +0.0000018108,0.0000018129,0.0000018146,0.0000018159,0.0000018170, +0.0000018177,0.0000018177,0.0000018170,0.0000018152,0.0000018129, +0.0000018106,0.0000018085,0.0000018069,0.0000018056,0.0000018041, +0.0000018020,0.0000017996,0.0000017978,0.0000017968,0.0000017962, +0.0000017958,0.0000017953,0.0000017947,0.0000017942,0.0000017941, +0.0000017944,0.0000017952,0.0000017962,0.0000017975,0.0000017992, +0.0000018007,0.0000018019,0.0000018027,0.0000018030,0.0000018029, +0.0000018027,0.0000018022,0.0000018016,0.0000018005,0.0000017987, +0.0000017963,0.0000017934,0.0000017905,0.0000017878,0.0000017851, +0.0000017827,0.0000017804,0.0000017782,0.0000017761,0.0000017753, +0.0000017748,0.0000017741,0.0000017733,0.0000017730,0.0000017738, +0.0000017754,0.0000017775,0.0000017803,0.0000017839,0.0000017880, +0.0000017923,0.0000017961,0.0000017991,0.0000018014,0.0000018032, +0.0000018047,0.0000018058,0.0000018060,0.0000018055,0.0000018047, +0.0000018041,0.0000018051,0.0000018086,0.0000018149,0.0000018224, +0.0000018299,0.0000018367,0.0000018419,0.0000018462,0.0000018502, +0.0000018542,0.0000018586,0.0000018631,0.0000018683,0.0000018746, +0.0000018828,0.0000018926,0.0000019040,0.0000019160,0.0000019251, +0.0000019325,0.0000019320,0.0000019317,0.0000019267,0.0000019201, +0.0000019128,0.0000019055,0.0000018989,0.0000018947,0.0000018934, +0.0000018935,0.0000018932,0.0000018916,0.0000018898,0.0000018888, +0.0000018884,0.0000018883,0.0000018880,0.0000018863,0.0000018828, +0.0000018773,0.0000018708,0.0000018653,0.0000018616,0.0000018590, +0.0000018568,0.0000018552,0.0000018543,0.0000018540,0.0000018542, +0.0000018546,0.0000018551,0.0000018554,0.0000018552,0.0000018544, +0.0000018536,0.0000018529,0.0000018512,0.0000018475,0.0000018423, +0.0000018373,0.0000018337,0.0000018316,0.0000018303,0.0000018289, +0.0000018269,0.0000018247,0.0000018230,0.0000018222,0.0000018218, +0.0000018218,0.0000018223,0.0000018235,0.0000018248,0.0000018258, +0.0000018258,0.0000018250,0.0000018236,0.0000018216,0.0000018193, +0.0000018173,0.0000018157,0.0000018144,0.0000018138,0.0000018133, +0.0000018126,0.0000018115,0.0000018104,0.0000018097,0.0000018094, +0.0000018096,0.0000018107,0.0000018123,0.0000018142,0.0000018161, +0.0000018176,0.0000018187,0.0000018195,0.0000018199,0.0000018197, +0.0000018190,0.0000018177,0.0000018158,0.0000018135,0.0000018108, +0.0000018078,0.0000018045,0.0000018010,0.0000017976,0.0000017944, +0.0000017919,0.0000017905,0.0000017901,0.0000017906,0.0000017921, +0.0000017940,0.0000017959,0.0000017977,0.0000017994,0.0000018011, +0.0000018030,0.0000018049,0.0000018069,0.0000018087,0.0000018101, +0.0000018109,0.0000018116,0.0000018127,0.0000018137,0.0000018152, +0.0000018178,0.0000018205,0.0000018237,0.0000018271,0.0000018305, +0.0000018336,0.0000018367,0.0000018403,0.0000018441,0.0000018456, +0.0000018424,0.0000018370,0.0000018406,0.0000018561,0.0000018763, +0.0000018851,0.0000018805,0.0000018721,0.0000018747,0.0000018762, +0.0000018427,0.0000018055,0.0000017890,0.0000017784,0.0000017707, +0.0000017632,0.0000017557,0.0000017500,0.0000017472,0.0000017466, +0.0000017468,0.0000017479,0.0000017494,0.0000017508,0.0000017521, +0.0000017530,0.0000017539,0.0000017549,0.0000017557,0.0000017562, +0.0000017566,0.0000017568,0.0000017566,0.0000017560,0.0000017551, +0.0000017540,0.0000017529,0.0000017520,0.0000017503,0.0000017484, +0.0000017471,0.0000017469,0.0000017474,0.0000017466,0.0000017433, +0.0000017399,0.0000017372,0.0000017324,0.0000017261,0.0000017246, +0.0000017284,0.0000017337,0.0000017379,0.0000017406,0.0000017423, +0.0000017451,0.0000017501,0.0000017565,0.0000017612,0.0000017637, +0.0000017652,0.0000017672,0.0000017699,0.0000017724,0.0000017734, +0.0000017739,0.0000017726,0.0000017711,0.0000017703,0.0000017709, +0.0000017716,0.0000017735,0.0000017757,0.0000017779,0.0000017796, +0.0000017810,0.0000017823,0.0000017834,0.0000017842,0.0000017848, +0.0000017850,0.0000017847,0.0000017840,0.0000017826,0.0000017809, +0.0000017786,0.0000017760,0.0000017731,0.0000017702,0.0000017674, +0.0000017652,0.0000017642,0.0000017638,0.0000017636,0.0000017640, +0.0000017660,0.0000017691,0.0000017746,0.0000017822,0.0000017904, +0.0000017982,0.0000018060,0.0000018127,0.0000018181,0.0000018225, +0.0000018259,0.0000018272,0.0000018235,0.0000018172,0.0000018131, +0.0000018133,0.0000018156,0.0000018162,0.0000018139,0.0000018104, +0.0000018088,0.0000018075,0.0000018079,0.0000018099,0.0000018123, +0.0000018145,0.0000018164,0.0000018180,0.0000018195,0.0000018208, +0.0000018218,0.0000018212,0.0000018200,0.0000018188,0.0000018192, +0.0000018218,0.0000018252,0.0000018301,0.0000018350,0.0000018362, +0.0000018381,0.0000018371,0.0000018352,0.0000018330,0.0000018311, +0.0000018295,0.0000018284,0.0000018278,0.0000018275,0.0000018273, +0.0000018270,0.0000018265,0.0000018267,0.0000018279,0.0000018294, +0.0000018306,0.0000018318,0.0000018328,0.0000018336,0.0000018344, +0.0000018354,0.0000018361,0.0000018366,0.0000018372,0.0000018377, +0.0000018378,0.0000018376,0.0000018376,0.0000018385,0.0000018394, +0.0000018404,0.0000018503,0.0000018518,0.0000018533,0.0000018550, +0.0000018568,0.0000018586,0.0000018606,0.0000018627,0.0000018645, +0.0000018662,0.0000018677,0.0000018694,0.0000018710,0.0000018720, +0.0000018723,0.0000018724,0.0000018722,0.0000018719,0.0000018716, +0.0000018717,0.0000018722,0.0000018728,0.0000018732,0.0000018732, +0.0000018727,0.0000018716,0.0000018700,0.0000018672,0.0000018640, +0.0000018607,0.0000018573,0.0000018541,0.0000018517,0.0000018501, +0.0000018490,0.0000018481,0.0000018477,0.0000018479,0.0000018483, +0.0000018486,0.0000018489,0.0000018486,0.0000018478,0.0000018467, +0.0000018454,0.0000018434,0.0000018404,0.0000018367,0.0000018332, +0.0000018304,0.0000018281,0.0000018263,0.0000018249,0.0000018238, +0.0000018223,0.0000018199,0.0000018161,0.0000018111,0.0000018060, +0.0000018019,0.0000018000,0.0000017999,0.0000018005,0.0000018015, +0.0000018027,0.0000018040,0.0000018050,0.0000018058,0.0000018059, +0.0000018060,0.0000018062,0.0000018068,0.0000018080,0.0000018092, +0.0000018094,0.0000018075,0.0000018029,0.0000017962,0.0000017899, +0.0000017867,0.0000017882,0.0000017957,0.0000018057,0.0000018134, +0.0000018161,0.0000018152,0.0000018140,0.0000018142,0.0000018158, +0.0000018180,0.0000018203,0.0000018225,0.0000018242,0.0000018250, +0.0000018240,0.0000018205,0.0000018152,0.0000018091,0.0000018021, +0.0000017943,0.0000017872,0.0000017826,0.0000017817,0.0000017828, +0.0000017849,0.0000017872,0.0000017884,0.0000017881,0.0000017866, +0.0000017846,0.0000017830,0.0000017820,0.0000017805,0.0000017778, +0.0000017743,0.0000017708,0.0000017683,0.0000017677,0.0000017687, +0.0000017711,0.0000017748,0.0000017791,0.0000017835,0.0000017879, +0.0000017923,0.0000017963,0.0000018001,0.0000018037,0.0000018071, +0.0000018102,0.0000018124,0.0000018130,0.0000018118,0.0000018095, +0.0000018064,0.0000018026,0.0000017987,0.0000017949,0.0000017916, +0.0000017893,0.0000017883,0.0000017883,0.0000017881,0.0000017876, +0.0000017871,0.0000017866,0.0000017864,0.0000017864,0.0000017867, +0.0000017881,0.0000017909,0.0000017942,0.0000017967,0.0000017984, +0.0000018000,0.0000018009,0.0000018010,0.0000018003,0.0000017989, +0.0000017969,0.0000017940,0.0000017901,0.0000017856,0.0000017812, +0.0000017777,0.0000017747,0.0000017713,0.0000017668,0.0000017612, +0.0000017553,0.0000017504,0.0000017474,0.0000017466,0.0000017470, +0.0000017487,0.0000017512,0.0000017544,0.0000017577,0.0000017612, +0.0000017648,0.0000017682,0.0000017713,0.0000017740,0.0000017759, +0.0000017771,0.0000017771,0.0000017766,0.0000017760,0.0000017755, +0.0000017748,0.0000017739,0.0000017727,0.0000017712,0.0000017692, +0.0000017661,0.0000017620,0.0000017574,0.0000017530,0.0000017486, +0.0000017443,0.0000017401,0.0000017362,0.0000017329,0.0000017305, +0.0000017296,0.0000017298,0.0000017305,0.0000017323,0.0000017350, +0.0000017383,0.0000017421,0.0000017461,0.0000017502,0.0000017542, +0.0000017579,0.0000017608,0.0000017627,0.0000017640,0.0000017649, +0.0000017652,0.0000017654,0.0000017661,0.0000017676,0.0000017696, +0.0000017727,0.0000017766,0.0000017802,0.0000017834,0.0000017859, +0.0000017870,0.0000017872,0.0000017858,0.0000017826,0.0000017779, +0.0000017719,0.0000017647,0.0000017570,0.0000017490,0.0000017413, +0.0000017347,0.0000017294,0.0000017251,0.0000017227,0.0000017221, +0.0000017233,0.0000017261,0.0000017302,0.0000017361,0.0000017434, +0.0000017520,0.0000017631,0.0000017774,0.0000017911,0.0000018000, +0.0000018018,0.0000018027,0.0000018069,0.0000018140,0.0000018197, +0.0000018196,0.0000018121,0.0000017984,0.0000017842,0.0000017722, +0.0000017691,0.0000017693,0.0000017702,0.0000017704,0.0000017696, +0.0000017681,0.0000017662,0.0000017646,0.0000017642,0.0000017635, +0.0000017607,0.0000017531,0.0000017434,0.0000017365,0.0000017337, +0.0000017356,0.0000017381,0.0000017376,0.0000017343,0.0000017313, +0.0000017334,0.0000017445,0.0000017644,0.0000017855,0.0000017990, +0.0000018055,0.0000018116,0.0000018222,0.0000018380,0.0000018560, +0.0000018717,0.0000018843,0.0000018947,0.0000019037,0.0000019111, +0.0000019169,0.0000019207,0.0000019230,0.0000019243,0.0000019253, +0.0000019264,0.0000019274,0.0000019283,0.0000019291,0.0000019299, +0.0000019306,0.0000019312,0.0000019316,0.0000019321,0.0000019327, +0.0000019335,0.0000019344,0.0000019353,0.0000019361,0.0000019370, +0.0000019380,0.0000019389,0.0000019397,0.0000019404,0.0000019411, +0.0000019418,0.0000019429,0.0000019444,0.0000019460,0.0000019474, +0.0000019489,0.0000019504,0.0000019516,0.0000019524,0.0000019527, +0.0000019527,0.0000019523,0.0000019515,0.0000019503,0.0000019486, +0.0000019466,0.0000019442,0.0000019416,0.0000019391,0.0000019363, +0.0000019337,0.0000019310,0.0000019287,0.0000019266,0.0000019243, +0.0000019214,0.0000019179,0.0000019136,0.0000019081,0.0000019014, +0.0000018935,0.0000018844,0.0000018741,0.0000018632,0.0000018516, +0.0000018395,0.0000018266,0.0000018128,0.0000017984,0.0000017839, +0.0000017701,0.0000017587,0.0000017502,0.0000017444,0.0000017409, +0.0000017392,0.0000017395,0.0000017399,0.0000017410,0.0000017428, +0.0000017451,0.0000017475,0.0000017492,0.0000017503,0.0000017505, +0.0000017493,0.0000017472,0.0000017447,0.0000017423,0.0000017402, +0.0000017388,0.0000017380,0.0000017379,0.0000017384,0.0000017388, +0.0000017398,0.0000017409,0.0000017418,0.0000017424,0.0000017424, +0.0000017424,0.0000017417,0.0000017408,0.0000017412,0.0000017436, +0.0000017480,0.0000017535,0.0000017585,0.0000017613,0.0000017615, +0.0000017604,0.0000017569,0.0000017534,0.0000017495,0.0000017476, +0.0000017466,0.0000017465,0.0000017469,0.0000017485,0.0000017508, +0.0000017530,0.0000017546,0.0000017558,0.0000017565,0.0000017569, +0.0000017569,0.0000017563,0.0000017555,0.0000017545,0.0000017533, +0.0000017520,0.0000017509,0.0000017498,0.0000017490,0.0000017486, +0.0000017482,0.0000017477,0.0000017471,0.0000017466,0.0000017466, +0.0000017472,0.0000017484,0.0000017498,0.0000017512,0.0000017524, +0.0000017537,0.0000017548,0.0000017556,0.0000017562,0.0000017567, +0.0000017571,0.0000017575,0.0000017578,0.0000017579,0.0000017582, +0.0000017583,0.0000017584,0.0000017585,0.0000017590,0.0000017591, +0.0000017588,0.0000017587,0.0000017588,0.0000017587,0.0000017593, +0.0000017607,0.0000017610,0.0000017623,0.0000017638,0.0000017644, +0.0000017650,0.0000017664,0.0000017673,0.0000017682,0.0000017692, +0.0000017691,0.0000017689,0.0000017681,0.0000017664,0.0000017645, +0.0000017614,0.0000017573,0.0000017530,0.0000017485,0.0000017438, +0.0000017401,0.0000017379,0.0000017370,0.0000017374,0.0000017385, +0.0000017396,0.0000017408,0.0000017412,0.0000017411,0.0000017405, +0.0000017392,0.0000017371,0.0000017346,0.0000017317,0.0000017284, +0.0000017250,0.0000017219,0.0000017199,0.0000017194,0.0000017203, +0.0000017214,0.0000017246,0.0000017284,0.0000017323,0.0000017362, +0.0000017392,0.0000017413,0.0000017426,0.0000017431,0.0000017432, +0.0000017437,0.0000017447,0.0000017456,0.0000017467,0.0000017475, +0.0000017473,0.0000017481,0.0000017503,0.0000017533,0.0000017578, +0.0000017643,0.0000017733,0.0000017843,0.0000017971,0.0000018108, +0.0000018243,0.0000018375,0.0000018500,0.0000018616,0.0000018722, +0.0000018812,0.0000018886,0.0000018942,0.0000018985,0.0000019016, +0.0000019039,0.0000019057,0.0000019071,0.0000019083,0.0000019097, +0.0000019118,0.0000019142,0.0000019163,0.0000019182,0.0000019198, +0.0000019211,0.0000019222,0.0000019235,0.0000019250,0.0000019262, +0.0000019273,0.0000019286,0.0000019300,0.0000019315,0.0000019332, +0.0000019357,0.0000019385,0.0000019416,0.0000019452,0.0000019488, +0.0000019520,0.0000019546,0.0000019567,0.0000019581,0.0000019588, +0.0000019591,0.0000019593,0.0000019598,0.0000019613,0.0000019635, +0.0000019663,0.0000019693,0.0000019721,0.0000019746,0.0000019768, +0.0000019789,0.0000019806,0.0000019819,0.0000019830,0.0000019838, +0.0000019839,0.0000019832,0.0000019816,0.0000019796,0.0000019781, +0.0000019780,0.0000019786,0.0000019789,0.0000019789,0.0000019788, +0.0000019789,0.0000019791,0.0000019789,0.0000019787,0.0000019786, +0.0000019794,0.0000019814,0.0000019840,0.0000019863,0.0000019882, +0.0000019894,0.0000019903,0.0000019904,0.0000019897,0.0000019881, +0.0000019854,0.0000019821,0.0000019787,0.0000019750,0.0000019713, +0.0000019683,0.0000019669,0.0000019674,0.0000019698,0.0000019732, +0.0000019767,0.0000019798,0.0000019822,0.0000019837,0.0000019842, +0.0000019845,0.0000019843,0.0000019833,0.0000019816,0.0000019795, +0.0000019773,0.0000019750,0.0000019727,0.0000019705,0.0000019685, +0.0000019670,0.0000019667,0.0000019671,0.0000019682,0.0000019698, +0.0000019716,0.0000019729,0.0000019736,0.0000019740,0.0000019742, +0.0000019744,0.0000019749,0.0000019757,0.0000019769,0.0000019785, +0.0000019803,0.0000019819,0.0000019831,0.0000019840,0.0000019845, +0.0000019843,0.0000019840,0.0000019835,0.0000019817,0.0000019794, +0.0000019776,0.0000019762,0.0000019741,0.0000019711,0.0000019681, +0.0000019653,0.0000019627,0.0000019607,0.0000019599,0.0000019603, +0.0000019615,0.0000019626,0.0000019626,0.0000019623,0.0000019620, +0.0000019623,0.0000019625,0.0000019624,0.0000019620,0.0000019620, +0.0000019624,0.0000019629,0.0000019626,0.0000019623,0.0000019615, +0.0000019606,0.0000019592,0.0000019573,0.0000019552,0.0000019528, +0.0000019504,0.0000019486,0.0000019482,0.0000019493,0.0000019514, +0.0000019532,0.0000019535,0.0000019535,0.0000019529,0.0000019510, +0.0000019480,0.0000019441,0.0000019393,0.0000019343,0.0000019305, +0.0000019280,0.0000019263,0.0000019245,0.0000019223,0.0000019200, +0.0000019179,0.0000019164,0.0000019149,0.0000019135,0.0000019119, +0.0000019101,0.0000019083,0.0000019059,0.0000019035,0.0000019020, +0.0000019017,0.0000019026,0.0000019044,0.0000019062,0.0000019072, +0.0000019069,0.0000019056,0.0000019035,0.0000019007,0.0000018978, +0.0000018963,0.0000018965,0.0000018973,0.0000018982,0.0000018989, +0.0000018991,0.0000018985,0.0000018975,0.0000018966,0.0000018954, +0.0000018947,0.0000018940,0.0000018933,0.0000018934,0.0000018948, +0.0000018970,0.0000018996,0.0000019021,0.0000019046,0.0000019071, +0.0000019089,0.0000019099,0.0000019106,0.0000019111,0.0000019111, +0.0000019118,0.0000019132,0.0000019137,0.0000019150,0.0000019142, +0.0000019137,0.0000019112,0.0000019066,0.0000019004,0.0000018936, +0.0000018878,0.0000018834,0.0000018842,0.0000018858,0.0000018880, +0.0000018892,0.0000018901,0.0000018898,0.0000018880,0.0000018855, +0.0000018818,0.0000018777,0.0000018737,0.0000018705,0.0000018680, +0.0000018660,0.0000018639,0.0000018616,0.0000018579,0.0000018533, +0.0000018488,0.0000018466,0.0000018450,0.0000018448,0.0000018473, +0.0000018533,0.0000018612,0.0000018690,0.0000018763,0.0000018768, +0.0000018769,0.0000018728,0.0000018658,0.0000018576,0.0000018493, +0.0000018430,0.0000018386,0.0000018391,0.0000018396,0.0000018425, +0.0000018472,0.0000018519,0.0000018561,0.0000018591,0.0000018620, +0.0000018668,0.0000018740,0.0000018811,0.0000018860,0.0000018892, +0.0000018886,0.0000018871,0.0000018870,0.0000018882,0.0000018891, +0.0000018891,0.0000018879,0.0000018856,0.0000018823,0.0000018791, +0.0000018772,0.0000018759,0.0000018740,0.0000018713,0.0000018686, +0.0000018668,0.0000018649,0.0000018620,0.0000018583,0.0000018555, +0.0000018544,0.0000018546,0.0000018555,0.0000018552,0.0000018550, +0.0000018559,0.0000018574,0.0000018582,0.0000018585,0.0000018586, +0.0000018571,0.0000018550,0.0000018537,0.0000018537,0.0000018548, +0.0000018558,0.0000018541,0.0000018503,0.0000018456,0.0000018412, +0.0000018374,0.0000018344,0.0000018329,0.0000018330,0.0000018344, +0.0000018358,0.0000018359,0.0000018352,0.0000018366,0.0000018409, +0.0000018445,0.0000018459,0.0000018453,0.0000018441,0.0000018429, +0.0000018414,0.0000018395,0.0000018360,0.0000018314,0.0000018265, +0.0000018223,0.0000018194,0.0000018172,0.0000018148,0.0000018141, +0.0000018150,0.0000018184,0.0000018243,0.0000018312,0.0000018364, +0.0000018372,0.0000018353,0.0000018323,0.0000018292,0.0000018260, +0.0000018224,0.0000018180,0.0000018135,0.0000018094,0.0000018068, +0.0000018059,0.0000018069,0.0000018086,0.0000018096,0.0000018103, +0.0000018108,0.0000018114,0.0000018117,0.0000018112,0.0000018099, +0.0000018087,0.0000018078,0.0000018069,0.0000018062,0.0000018055, +0.0000018042,0.0000018020,0.0000017996,0.0000017977,0.0000017964, +0.0000017953,0.0000017943,0.0000017928,0.0000017912,0.0000017901, +0.0000017895,0.0000017898,0.0000017908,0.0000017924,0.0000017946, +0.0000017970,0.0000017991,0.0000018005,0.0000018016,0.0000018028, +0.0000018036,0.0000018039,0.0000018041,0.0000018039,0.0000018031, +0.0000018014,0.0000017988,0.0000017955,0.0000017920,0.0000017887, +0.0000017861,0.0000017840,0.0000017820,0.0000017798,0.0000017777, +0.0000017760,0.0000017745,0.0000017730,0.0000017722,0.0000017715, +0.0000017715,0.0000017724,0.0000017736,0.0000017752,0.0000017775, +0.0000017806,0.0000017843,0.0000017885,0.0000017927,0.0000017964, +0.0000017992,0.0000018016,0.0000018035,0.0000018047,0.0000018047, +0.0000018041,0.0000018023,0.0000018002,0.0000018009,0.0000018046, +0.0000018115,0.0000018203,0.0000018289,0.0000018360,0.0000018411, +0.0000018448,0.0000018483,0.0000018522,0.0000018569,0.0000018613, +0.0000018654,0.0000018699,0.0000018761,0.0000018847,0.0000018965, +0.0000019101,0.0000019213,0.0000019305,0.0000019316,0.0000019310, +0.0000019256,0.0000019192,0.0000019128,0.0000019062,0.0000019003, +0.0000018967,0.0000018957,0.0000018957,0.0000018945,0.0000018921, +0.0000018896,0.0000018883,0.0000018876,0.0000018876,0.0000018874, +0.0000018858,0.0000018824,0.0000018776,0.0000018724,0.0000018677, +0.0000018639,0.0000018611,0.0000018592,0.0000018575,0.0000018557, +0.0000018541,0.0000018534,0.0000018535,0.0000018541,0.0000018544, +0.0000018541,0.0000018530,0.0000018518,0.0000018502,0.0000018475, +0.0000018434,0.0000018385,0.0000018337,0.0000018302,0.0000018275, +0.0000018250,0.0000018226,0.0000018207,0.0000018196,0.0000018190, +0.0000018188,0.0000018188,0.0000018195,0.0000018210,0.0000018225, +0.0000018231,0.0000018232,0.0000018227,0.0000018214,0.0000018194, +0.0000018173,0.0000018157,0.0000018142,0.0000018131,0.0000018124, +0.0000018119,0.0000018112,0.0000018104,0.0000018098,0.0000018095, +0.0000018096,0.0000018106,0.0000018122,0.0000018143,0.0000018162, +0.0000018177,0.0000018188,0.0000018197,0.0000018202,0.0000018202, +0.0000018197,0.0000018188,0.0000018174,0.0000018156,0.0000018134, +0.0000018108,0.0000018078,0.0000018043,0.0000018005,0.0000017968, +0.0000017937,0.0000017915,0.0000017904,0.0000017904,0.0000017914, +0.0000017928,0.0000017943,0.0000017956,0.0000017970,0.0000017986, +0.0000018007,0.0000018028,0.0000018047,0.0000018062,0.0000018071, +0.0000018081,0.0000018096,0.0000018116,0.0000018143,0.0000018184, +0.0000018234,0.0000018287,0.0000018337,0.0000018376,0.0000018400, +0.0000018413,0.0000018425,0.0000018447,0.0000018465,0.0000018445, +0.0000018380,0.0000018374,0.0000018510,0.0000018717,0.0000018843, +0.0000018827,0.0000018730,0.0000018712,0.0000018787,0.0000018633, +0.0000018194,0.0000017939,0.0000017809,0.0000017713,0.0000017622, +0.0000017534,0.0000017481,0.0000017460,0.0000017471,0.0000017486, +0.0000017505,0.0000017524,0.0000017537,0.0000017543,0.0000017547, +0.0000017549,0.0000017553,0.0000017559,0.0000017566,0.0000017571, +0.0000017572,0.0000017569,0.0000017560,0.0000017545,0.0000017528, +0.0000017511,0.0000017496,0.0000017484,0.0000017478,0.0000017475, +0.0000017481,0.0000017488,0.0000017482,0.0000017448,0.0000017407, +0.0000017378,0.0000017329,0.0000017253,0.0000017221,0.0000017258, +0.0000017324,0.0000017364,0.0000017379,0.0000017400,0.0000017457, +0.0000017537,0.0000017598,0.0000017627,0.0000017645,0.0000017671, +0.0000017695,0.0000017702,0.0000017702,0.0000017685,0.0000017674, +0.0000017672,0.0000017686,0.0000017706,0.0000017732,0.0000017757, +0.0000017782,0.0000017803,0.0000017820,0.0000017833,0.0000017846, +0.0000017859,0.0000017871,0.0000017880,0.0000017886,0.0000017887, +0.0000017884,0.0000017876,0.0000017863,0.0000017846,0.0000017825, +0.0000017799,0.0000017769,0.0000017737,0.0000017704,0.0000017674, +0.0000017651,0.0000017638,0.0000017637,0.0000017641,0.0000017651, +0.0000017674,0.0000017699,0.0000017741,0.0000017801,0.0000017874, +0.0000017954,0.0000018030,0.0000018094,0.0000018145,0.0000018186, +0.0000018223,0.0000018241,0.0000018220,0.0000018164,0.0000018118, +0.0000018113,0.0000018134,0.0000018154,0.0000018150,0.0000018122, +0.0000018087,0.0000018051,0.0000018030,0.0000018029,0.0000018040, +0.0000018057,0.0000018081,0.0000018104,0.0000018131,0.0000018162, +0.0000018182,0.0000018189,0.0000018175,0.0000018151,0.0000018126, +0.0000018115,0.0000018122,0.0000018170,0.0000018239,0.0000018312, +0.0000018373,0.0000018386,0.0000018402,0.0000018387,0.0000018363, +0.0000018338,0.0000018319,0.0000018307,0.0000018300,0.0000018294, +0.0000018291,0.0000018292,0.0000018301,0.0000018317,0.0000018330, +0.0000018341,0.0000018352,0.0000018361,0.0000018369,0.0000018379, +0.0000018389,0.0000018397,0.0000018404,0.0000018411,0.0000018418, +0.0000018422,0.0000018427,0.0000018444,0.0000018465,0.0000018486, +0.0000018593,0.0000018609,0.0000018624,0.0000018638,0.0000018652, +0.0000018661,0.0000018666,0.0000018669,0.0000018672,0.0000018673, +0.0000018674,0.0000018677,0.0000018685,0.0000018695,0.0000018702, +0.0000018703,0.0000018700,0.0000018691,0.0000018682,0.0000018677, +0.0000018675,0.0000018677,0.0000018684,0.0000018694,0.0000018707, +0.0000018719,0.0000018723,0.0000018722,0.0000018715,0.0000018698, +0.0000018676,0.0000018649,0.0000018624,0.0000018601,0.0000018580, +0.0000018558,0.0000018536,0.0000018521,0.0000018513,0.0000018509, +0.0000018508,0.0000018506,0.0000018502,0.0000018497,0.0000018489, +0.0000018476,0.0000018453,0.0000018417,0.0000018374,0.0000018334, +0.0000018302,0.0000018275,0.0000018254,0.0000018239,0.0000018230, +0.0000018221,0.0000018209,0.0000018185,0.0000018148,0.0000018106, +0.0000018071,0.0000018051,0.0000018042,0.0000018038,0.0000018038, +0.0000018041,0.0000018052,0.0000018064,0.0000018078,0.0000018090, +0.0000018096,0.0000018099,0.0000018101,0.0000018105,0.0000018110, +0.0000018106,0.0000018082,0.0000018031,0.0000017959,0.0000017883, +0.0000017843,0.0000017839,0.0000017897,0.0000017996,0.0000018087, +0.0000018134,0.0000018136,0.0000018139,0.0000018147,0.0000018167, +0.0000018187,0.0000018207,0.0000018228,0.0000018250,0.0000018264, +0.0000018257,0.0000018223,0.0000018169,0.0000018105,0.0000018037, +0.0000017969,0.0000017908,0.0000017865,0.0000017849,0.0000017852, +0.0000017865,0.0000017884,0.0000017892,0.0000017884,0.0000017864, +0.0000017840,0.0000017822,0.0000017810,0.0000017799,0.0000017786, +0.0000017767,0.0000017746,0.0000017728,0.0000017720,0.0000017726, +0.0000017742,0.0000017760,0.0000017782,0.0000017808,0.0000017840, +0.0000017877,0.0000017920,0.0000017963,0.0000018002,0.0000018035, +0.0000018063,0.0000018081,0.0000018089,0.0000018085,0.0000018070, +0.0000018048,0.0000018023,0.0000017995,0.0000017968,0.0000017945, +0.0000017930,0.0000017922,0.0000017913,0.0000017901,0.0000017891, +0.0000017883,0.0000017877,0.0000017876,0.0000017877,0.0000017889, +0.0000017913,0.0000017939,0.0000017960,0.0000017973,0.0000017984, +0.0000017994,0.0000017997,0.0000017990,0.0000017972,0.0000017942, +0.0000017905,0.0000017864,0.0000017824,0.0000017791,0.0000017762, +0.0000017725,0.0000017674,0.0000017608,0.0000017538,0.0000017475, +0.0000017431,0.0000017413,0.0000017414,0.0000017430,0.0000017455, +0.0000017486,0.0000017519,0.0000017552,0.0000017584,0.0000017615, +0.0000017645,0.0000017676,0.0000017702,0.0000017723,0.0000017737, +0.0000017744,0.0000017743,0.0000017740,0.0000017737,0.0000017735, +0.0000017732,0.0000017728,0.0000017724,0.0000017720,0.0000017712, +0.0000017696,0.0000017674,0.0000017646,0.0000017614,0.0000017578, +0.0000017538,0.0000017491,0.0000017443,0.0000017399,0.0000017360, +0.0000017334,0.0000017326,0.0000017335,0.0000017360,0.0000017388, +0.0000017417,0.0000017448,0.0000017479,0.0000017509,0.0000017533, +0.0000017549,0.0000017557,0.0000017560,0.0000017561,0.0000017560, +0.0000017564,0.0000017578,0.0000017601,0.0000017636,0.0000017681, +0.0000017723,0.0000017765,0.0000017805,0.0000017838,0.0000017862, +0.0000017870,0.0000017869,0.0000017853,0.0000017823,0.0000017776, +0.0000017710,0.0000017632,0.0000017544,0.0000017457,0.0000017384, +0.0000017325,0.0000017276,0.0000017243,0.0000017225,0.0000017222, +0.0000017229,0.0000017252,0.0000017300,0.0000017370,0.0000017441, +0.0000017516,0.0000017613,0.0000017740,0.0000017871,0.0000017967, +0.0000017994,0.0000018002,0.0000018038,0.0000018103,0.0000018163, +0.0000018183,0.0000018134,0.0000018011,0.0000017871,0.0000017747, +0.0000017692,0.0000017684,0.0000017684,0.0000017679,0.0000017667, +0.0000017647,0.0000017625,0.0000017611,0.0000017607,0.0000017590, +0.0000017545,0.0000017464,0.0000017370,0.0000017323,0.0000017313, +0.0000017329,0.0000017341,0.0000017327,0.0000017295,0.0000017276, +0.0000017314,0.0000017436,0.0000017627,0.0000017827,0.0000017973, +0.0000018053,0.0000018115,0.0000018213,0.0000018360,0.0000018531, +0.0000018687,0.0000018813,0.0000018913,0.0000018995,0.0000019064, +0.0000019124,0.0000019174,0.0000019211,0.0000019238,0.0000019255, +0.0000019265,0.0000019271,0.0000019273,0.0000019274,0.0000019274, +0.0000019273,0.0000019272,0.0000019272,0.0000019275,0.0000019280, +0.0000019286,0.0000019291,0.0000019296,0.0000019302,0.0000019308, +0.0000019315,0.0000019322,0.0000019328,0.0000019335,0.0000019344, +0.0000019357,0.0000019372,0.0000019388,0.0000019405,0.0000019424, +0.0000019439,0.0000019449,0.0000019454,0.0000019456,0.0000019454, +0.0000019450,0.0000019441,0.0000019428,0.0000019411,0.0000019388, +0.0000019363,0.0000019336,0.0000019306,0.0000019276,0.0000019247, +0.0000019220,0.0000019188,0.0000019148,0.0000019100,0.0000019043, +0.0000018973,0.0000018890,0.0000018791,0.0000018685,0.0000018572, +0.0000018454,0.0000018333,0.0000018203,0.0000018065,0.0000017921, +0.0000017780,0.0000017655,0.0000017556,0.0000017484,0.0000017440, +0.0000017414,0.0000017399,0.0000017394,0.0000017398,0.0000017414, +0.0000017433,0.0000017450,0.0000017465,0.0000017470,0.0000017475, +0.0000017467,0.0000017450,0.0000017430,0.0000017408,0.0000017391, +0.0000017377,0.0000017369,0.0000017367,0.0000017369,0.0000017373, +0.0000017379,0.0000017388,0.0000017398,0.0000017408,0.0000017415, +0.0000017418,0.0000017415,0.0000017416,0.0000017426,0.0000017455, +0.0000017504,0.0000017569,0.0000017630,0.0000017678,0.0000017688, +0.0000017667,0.0000017628,0.0000017561,0.0000017500,0.0000017446, +0.0000017407,0.0000017394,0.0000017395,0.0000017409,0.0000017427, +0.0000017449,0.0000017476,0.0000017503,0.0000017523,0.0000017535, +0.0000017540,0.0000017542,0.0000017540,0.0000017536,0.0000017531, +0.0000017527,0.0000017527,0.0000017529,0.0000017528,0.0000017533, +0.0000017541,0.0000017551,0.0000017562,0.0000017573,0.0000017580, +0.0000017583,0.0000017579,0.0000017574,0.0000017577,0.0000017581, +0.0000017588,0.0000017596,0.0000017604,0.0000017613,0.0000017623, +0.0000017632,0.0000017639,0.0000017645,0.0000017650,0.0000017654, +0.0000017656,0.0000017655,0.0000017654,0.0000017655,0.0000017654, +0.0000017655,0.0000017656,0.0000017656,0.0000017654,0.0000017647, +0.0000017643,0.0000017640,0.0000017639,0.0000017640,0.0000017640, +0.0000017648,0.0000017653,0.0000017655,0.0000017659,0.0000017663, +0.0000017674,0.0000017686,0.0000017695,0.0000017703,0.0000017713, +0.0000017715,0.0000017710,0.0000017703,0.0000017688,0.0000017661, +0.0000017627,0.0000017588,0.0000017544,0.0000017501,0.0000017466, +0.0000017438,0.0000017418,0.0000017407,0.0000017404,0.0000017408, +0.0000017411,0.0000017416,0.0000017419,0.0000017421,0.0000017419, +0.0000017419,0.0000017411,0.0000017396,0.0000017374,0.0000017340, +0.0000017310,0.0000017278,0.0000017252,0.0000017237,0.0000017234, +0.0000017242,0.0000017269,0.0000017287,0.0000017316,0.0000017348, +0.0000017372,0.0000017392,0.0000017406,0.0000017425,0.0000017442, +0.0000017456,0.0000017469,0.0000017474,0.0000017470,0.0000017459, +0.0000017444,0.0000017429,0.0000017412,0.0000017397,0.0000017390, +0.0000017412,0.0000017456,0.0000017517,0.0000017597,0.0000017695, +0.0000017812,0.0000017944,0.0000018086,0.0000018234,0.0000018377, +0.0000018511,0.0000018634,0.0000018745,0.0000018839,0.0000018913, +0.0000018970,0.0000019011,0.0000019041,0.0000019071,0.0000019096, +0.0000019114,0.0000019125,0.0000019133,0.0000019141,0.0000019149, +0.0000019159,0.0000019171,0.0000019183,0.0000019195,0.0000019207, +0.0000019218,0.0000019230,0.0000019244,0.0000019261,0.0000019281, +0.0000019306,0.0000019335,0.0000019369,0.0000019407,0.0000019441, +0.0000019472,0.0000019501,0.0000019521,0.0000019532,0.0000019536, +0.0000019537,0.0000019542,0.0000019555,0.0000019575,0.0000019598, +0.0000019624,0.0000019651,0.0000019675,0.0000019695,0.0000019713, +0.0000019730,0.0000019742,0.0000019748,0.0000019750,0.0000019748, +0.0000019741,0.0000019735,0.0000019736,0.0000019744,0.0000019754, +0.0000019764,0.0000019768,0.0000019769,0.0000019766,0.0000019762, +0.0000019756,0.0000019746,0.0000019733,0.0000019727,0.0000019736, +0.0000019758,0.0000019788,0.0000019819,0.0000019848,0.0000019876, +0.0000019897,0.0000019904,0.0000019902,0.0000019882,0.0000019854, +0.0000019825,0.0000019790,0.0000019748,0.0000019707,0.0000019679, +0.0000019678,0.0000019688,0.0000019708,0.0000019734,0.0000019760, +0.0000019785,0.0000019805,0.0000019815,0.0000019819,0.0000019816, +0.0000019803,0.0000019784,0.0000019763,0.0000019739,0.0000019716, +0.0000019697,0.0000019685,0.0000019678,0.0000019679,0.0000019686, +0.0000019698,0.0000019712,0.0000019726,0.0000019740,0.0000019750, +0.0000019755,0.0000019753,0.0000019749,0.0000019750,0.0000019755, +0.0000019759,0.0000019764,0.0000019774,0.0000019784,0.0000019794, +0.0000019807,0.0000019818,0.0000019825,0.0000019833,0.0000019840, +0.0000019839,0.0000019826,0.0000019808,0.0000019792,0.0000019778, +0.0000019755,0.0000019725,0.0000019699,0.0000019671,0.0000019646, +0.0000019624,0.0000019607,0.0000019601,0.0000019595,0.0000019584, +0.0000019576,0.0000019578,0.0000019589,0.0000019602,0.0000019615, +0.0000019622,0.0000019627,0.0000019627,0.0000019622,0.0000019612, +0.0000019603,0.0000019600,0.0000019596,0.0000019590,0.0000019580, +0.0000019565,0.0000019548,0.0000019530,0.0000019507,0.0000019484, +0.0000019469,0.0000019466,0.0000019472,0.0000019485,0.0000019503, +0.0000019518,0.0000019515,0.0000019509,0.0000019489,0.0000019461, +0.0000019429,0.0000019395,0.0000019362,0.0000019328,0.0000019294, +0.0000019255,0.0000019214,0.0000019181,0.0000019163,0.0000019154, +0.0000019153,0.0000019155,0.0000019166,0.0000019169,0.0000019156, +0.0000019135,0.0000019113,0.0000019098,0.0000019092,0.0000019100, +0.0000019119,0.0000019140,0.0000019152,0.0000019153,0.0000019144, +0.0000019122,0.0000019091,0.0000019058,0.0000019034,0.0000019023, +0.0000019022,0.0000019023,0.0000019023,0.0000019018,0.0000019007, +0.0000018994,0.0000018981,0.0000018964,0.0000018947,0.0000018934, +0.0000018927,0.0000018929,0.0000018930,0.0000018936,0.0000018947, +0.0000018965,0.0000018987,0.0000019008,0.0000019023,0.0000019031, +0.0000019037,0.0000019040,0.0000019043,0.0000019051,0.0000019057, +0.0000019069,0.0000019084,0.0000019092,0.0000019100,0.0000019093, +0.0000019072,0.0000019046,0.0000018998,0.0000018947,0.0000018913, +0.0000018901,0.0000018883,0.0000018876,0.0000018873,0.0000018857, +0.0000018846,0.0000018837,0.0000018826,0.0000018810,0.0000018794, +0.0000018781,0.0000018763,0.0000018742,0.0000018716,0.0000018686, +0.0000018652,0.0000018621,0.0000018588,0.0000018548,0.0000018502, +0.0000018446,0.0000018424,0.0000018409,0.0000018435,0.0000018486, +0.0000018547,0.0000018605,0.0000018661,0.0000018704,0.0000018694, +0.0000018690,0.0000018656,0.0000018599,0.0000018543,0.0000018493, +0.0000018447,0.0000018437,0.0000018423,0.0000018427,0.0000018444, +0.0000018463,0.0000018491,0.0000018523,0.0000018562,0.0000018603, +0.0000018652,0.0000018708,0.0000018754,0.0000018785,0.0000018814, +0.0000018853,0.0000018884,0.0000018903,0.0000018905,0.0000018888, +0.0000018861,0.0000018822,0.0000018787,0.0000018770,0.0000018768, +0.0000018762,0.0000018756,0.0000018748,0.0000018725,0.0000018684, +0.0000018630,0.0000018580,0.0000018551,0.0000018536,0.0000018526, +0.0000018515,0.0000018513,0.0000018527,0.0000018541,0.0000018548, +0.0000018553,0.0000018554,0.0000018540,0.0000018520,0.0000018506, +0.0000018507,0.0000018526,0.0000018537,0.0000018525,0.0000018496, +0.0000018454,0.0000018407,0.0000018366,0.0000018323,0.0000018294, +0.0000018284,0.0000018292,0.0000018304,0.0000018310,0.0000018310, +0.0000018321,0.0000018363,0.0000018412,0.0000018444,0.0000018452, +0.0000018448,0.0000018443,0.0000018434,0.0000018419,0.0000018392, +0.0000018349,0.0000018295,0.0000018243,0.0000018204,0.0000018169, +0.0000018141,0.0000018119,0.0000018110,0.0000018119,0.0000018149, +0.0000018203,0.0000018269,0.0000018317,0.0000018322,0.0000018300, +0.0000018264,0.0000018226,0.0000018188,0.0000018145,0.0000018100, +0.0000018058,0.0000018029,0.0000018014,0.0000018016,0.0000018025, +0.0000018034,0.0000018045,0.0000018057,0.0000018069,0.0000018080, +0.0000018084,0.0000018081,0.0000018079,0.0000018079,0.0000018076, +0.0000018072,0.0000018067,0.0000018055,0.0000018035,0.0000018014, +0.0000017998,0.0000017984,0.0000017970,0.0000017952,0.0000017932, +0.0000017910,0.0000017891,0.0000017876,0.0000017874,0.0000017885, +0.0000017910,0.0000017940,0.0000017968,0.0000017990,0.0000018006, +0.0000018022,0.0000018035,0.0000018048,0.0000018054,0.0000018055, +0.0000018055,0.0000018048,0.0000018030,0.0000018005,0.0000017974, +0.0000017939,0.0000017906,0.0000017880,0.0000017860,0.0000017841, +0.0000017821,0.0000017801,0.0000017780,0.0000017759,0.0000017741, +0.0000017727,0.0000017718,0.0000017721,0.0000017725,0.0000017734, +0.0000017748,0.0000017759,0.0000017770,0.0000017789,0.0000017817, +0.0000017852,0.0000017892,0.0000017929,0.0000017963,0.0000017990, +0.0000018012,0.0000018028,0.0000018025,0.0000018014,0.0000017988, +0.0000017973,0.0000017978,0.0000018016,0.0000018092,0.0000018186, +0.0000018278,0.0000018352,0.0000018401,0.0000018431,0.0000018463, +0.0000018504,0.0000018548,0.0000018584,0.0000018610,0.0000018640, +0.0000018692,0.0000018780,0.0000018906,0.0000019054,0.0000019184, +0.0000019286,0.0000019298,0.0000019292,0.0000019243,0.0000019184, +0.0000019129,0.0000019075,0.0000019025,0.0000018993,0.0000018981, +0.0000018974,0.0000018956,0.0000018927,0.0000018897,0.0000018881, +0.0000018876,0.0000018871,0.0000018866,0.0000018855,0.0000018831, +0.0000018791,0.0000018743,0.0000018700,0.0000018668,0.0000018640, +0.0000018614,0.0000018590,0.0000018564,0.0000018542,0.0000018532, +0.0000018531,0.0000018534,0.0000018535,0.0000018528,0.0000018511, +0.0000018489,0.0000018463,0.0000018430,0.0000018390,0.0000018347, +0.0000018303,0.0000018261,0.0000018224,0.0000018197,0.0000018180, +0.0000018171,0.0000018164,0.0000018163,0.0000018169,0.0000018180, +0.0000018192,0.0000018201,0.0000018205,0.0000018204,0.0000018196, +0.0000018181,0.0000018163,0.0000018147,0.0000018133,0.0000018121, +0.0000018113,0.0000018109,0.0000018106,0.0000018102,0.0000018099, +0.0000018097,0.0000018098,0.0000018106,0.0000018122,0.0000018143, +0.0000018164,0.0000018180,0.0000018193,0.0000018201,0.0000018206, +0.0000018204,0.0000018198,0.0000018188,0.0000018174,0.0000018158, +0.0000018137,0.0000018112,0.0000018083,0.0000018051,0.0000018016, +0.0000017981,0.0000017949,0.0000017922,0.0000017905,0.0000017900, +0.0000017906,0.0000017914,0.0000017924,0.0000017934,0.0000017950, +0.0000017970,0.0000017994,0.0000018019,0.0000018040,0.0000018058, +0.0000018076,0.0000018100,0.0000018135,0.0000018186,0.0000018250, +0.0000018321,0.0000018388,0.0000018442,0.0000018484,0.0000018507, +0.0000018510,0.0000018500,0.0000018489,0.0000018488,0.0000018473, +0.0000018404,0.0000018367,0.0000018463,0.0000018666,0.0000018830, +0.0000018836,0.0000018754,0.0000018703,0.0000018736,0.0000018768, +0.0000018468,0.0000018080,0.0000017874,0.0000017758,0.0000017648, +0.0000017536,0.0000017482,0.0000017499,0.0000017545,0.0000017582, +0.0000017606,0.0000017624,0.0000017637,0.0000017641,0.0000017638, +0.0000017629,0.0000017616,0.0000017602,0.0000017591,0.0000017583, +0.0000017579,0.0000017575,0.0000017569,0.0000017558,0.0000017542, +0.0000017523,0.0000017507,0.0000017498,0.0000017493,0.0000017493, +0.0000017498,0.0000017504,0.0000017503,0.0000017475,0.0000017431, +0.0000017396,0.0000017345,0.0000017260,0.0000017206,0.0000017234, +0.0000017306,0.0000017346,0.0000017355,0.0000017391,0.0000017478, +0.0000017563,0.0000017606,0.0000017630,0.0000017657,0.0000017675, +0.0000017677,0.0000017660,0.0000017641,0.0000017638,0.0000017654, +0.0000017684,0.0000017719,0.0000017752,0.0000017781,0.0000017808, +0.0000017831,0.0000017850,0.0000017865,0.0000017877,0.0000017888, +0.0000017894,0.0000017895,0.0000017890,0.0000017886,0.0000017880, +0.0000017874,0.0000017867,0.0000017857,0.0000017846,0.0000017833, +0.0000017817,0.0000017794,0.0000017770,0.0000017745,0.0000017717, +0.0000017689,0.0000017666,0.0000017652,0.0000017646,0.0000017652, +0.0000017666,0.0000017687,0.0000017707,0.0000017735,0.0000017780, +0.0000017846,0.0000017926,0.0000018005,0.0000018068,0.0000018115, +0.0000018155,0.0000018193,0.0000018210,0.0000018196,0.0000018157, +0.0000018111,0.0000018091,0.0000018106,0.0000018133,0.0000018146, +0.0000018135,0.0000018110,0.0000018075,0.0000018039,0.0000018014, +0.0000018003,0.0000017996,0.0000018005,0.0000018021,0.0000018048, +0.0000018082,0.0000018116,0.0000018142,0.0000018149,0.0000018134, +0.0000018100,0.0000018056,0.0000018020,0.0000018029,0.0000018080, +0.0000018161,0.0000018248,0.0000018334,0.0000018394,0.0000018402, +0.0000018411,0.0000018399,0.0000018379,0.0000018363,0.0000018351, +0.0000018344,0.0000018344,0.0000018349,0.0000018363,0.0000018379, +0.0000018391,0.0000018403,0.0000018415,0.0000018424,0.0000018433, +0.0000018442,0.0000018452,0.0000018462,0.0000018472,0.0000018484, +0.0000018495,0.0000018508,0.0000018528,0.0000018551,0.0000018573, +0.0000018677,0.0000018694,0.0000018703,0.0000018702,0.0000018701, +0.0000018693,0.0000018683,0.0000018673,0.0000018665,0.0000018664, +0.0000018666,0.0000018669,0.0000018673,0.0000018680,0.0000018684, +0.0000018684,0.0000018680,0.0000018672,0.0000018659,0.0000018647, +0.0000018635,0.0000018627,0.0000018625,0.0000018631,0.0000018643, +0.0000018663,0.0000018686,0.0000018707,0.0000018719,0.0000018717, +0.0000018713,0.0000018707,0.0000018698,0.0000018687,0.0000018676, +0.0000018661,0.0000018641,0.0000018617,0.0000018593,0.0000018571, +0.0000018551,0.0000018536,0.0000018525,0.0000018518,0.0000018511, +0.0000018501,0.0000018486,0.0000018461,0.0000018423,0.0000018380, +0.0000018340,0.0000018306,0.0000018275,0.0000018248,0.0000018227, +0.0000018216,0.0000018213,0.0000018209,0.0000018201,0.0000018184, +0.0000018157,0.0000018132,0.0000018114,0.0000018100,0.0000018087, +0.0000018074,0.0000018070,0.0000018078,0.0000018092,0.0000018105, +0.0000018115,0.0000018121,0.0000018123,0.0000018122,0.0000018124, +0.0000018124,0.0000018113,0.0000018082,0.0000018028,0.0000017955, +0.0000017879,0.0000017824,0.0000017814,0.0000017853,0.0000017944, +0.0000018046,0.0000018117,0.0000018140,0.0000018151,0.0000018164, +0.0000018180,0.0000018196,0.0000018213,0.0000018235,0.0000018258, +0.0000018269,0.0000018265,0.0000018234,0.0000018180,0.0000018116, +0.0000018054,0.0000018000,0.0000017952,0.0000017912,0.0000017883, +0.0000017876,0.0000017885,0.0000017896,0.0000017898,0.0000017890, +0.0000017870,0.0000017846,0.0000017824,0.0000017808,0.0000017799, +0.0000017798,0.0000017797,0.0000017792,0.0000017782,0.0000017771, +0.0000017767,0.0000017772,0.0000017783,0.0000017793,0.0000017803, +0.0000017818,0.0000017840,0.0000017871,0.0000017911,0.0000017954, +0.0000017995,0.0000018027,0.0000018047,0.0000018053,0.0000018048, +0.0000018038,0.0000018025,0.0000018010,0.0000017995,0.0000017983, +0.0000017973,0.0000017962,0.0000017949,0.0000017931,0.0000017912, +0.0000017893,0.0000017877,0.0000017867,0.0000017867,0.0000017873, +0.0000017888,0.0000017913,0.0000017938,0.0000017955,0.0000017967, +0.0000017974,0.0000017974,0.0000017960,0.0000017930,0.0000017892, +0.0000017856,0.0000017824,0.0000017798,0.0000017773,0.0000017740, +0.0000017689,0.0000017620,0.0000017545,0.0000017477,0.0000017426, +0.0000017398,0.0000017392,0.0000017400,0.0000017422,0.0000017450, +0.0000017483,0.0000017516,0.0000017549,0.0000017582,0.0000017612, +0.0000017641,0.0000017667,0.0000017688,0.0000017703,0.0000017714, +0.0000017717,0.0000017714,0.0000017707,0.0000017701,0.0000017696, +0.0000017695,0.0000017696,0.0000017700,0.0000017707,0.0000017710, +0.0000017708,0.0000017703,0.0000017694,0.0000017683,0.0000017667, +0.0000017645,0.0000017617,0.0000017584,0.0000017544,0.0000017500, +0.0000017458,0.0000017426,0.0000017411,0.0000017411,0.0000017422, +0.0000017438,0.0000017463,0.0000017490,0.0000017512,0.0000017524, +0.0000017528,0.0000017522,0.0000017512,0.0000017500,0.0000017490, +0.0000017487,0.0000017502,0.0000017534,0.0000017579,0.0000017623, +0.0000017665,0.0000017709,0.0000017751,0.0000017789,0.0000017821, +0.0000017843,0.0000017852,0.0000017846,0.0000017833,0.0000017805, +0.0000017758,0.0000017696,0.0000017615,0.0000017522,0.0000017438, +0.0000017365,0.0000017304,0.0000017259,0.0000017232,0.0000017223, +0.0000017223,0.0000017227,0.0000017255,0.0000017306,0.0000017371, +0.0000017438,0.0000017505,0.0000017590,0.0000017703,0.0000017826, +0.0000017930,0.0000017974,0.0000017977,0.0000018003,0.0000018064, +0.0000018139,0.0000018164,0.0000018144,0.0000018045,0.0000017915, +0.0000017780,0.0000017683,0.0000017670,0.0000017657,0.0000017649, +0.0000017633,0.0000017610,0.0000017588,0.0000017573,0.0000017562, +0.0000017541,0.0000017485,0.0000017403,0.0000017319,0.0000017275, +0.0000017276,0.0000017295,0.0000017298,0.0000017284,0.0000017265, +0.0000017253,0.0000017299,0.0000017413,0.0000017584,0.0000017780, +0.0000017943,0.0000018043,0.0000018108,0.0000018190,0.0000018318, +0.0000018476,0.0000018628,0.0000018752,0.0000018847,0.0000018925, +0.0000018992,0.0000019050,0.0000019099,0.0000019138,0.0000019170, +0.0000019193,0.0000019207,0.0000019215,0.0000019218,0.0000019218, +0.0000019214,0.0000019209,0.0000019207,0.0000019208,0.0000019208, +0.0000019208,0.0000019208,0.0000019207,0.0000019207,0.0000019207, +0.0000019210,0.0000019214,0.0000019220,0.0000019228,0.0000019238, +0.0000019252,0.0000019269,0.0000019286,0.0000019303,0.0000019317, +0.0000019328,0.0000019334,0.0000019336,0.0000019334,0.0000019329, +0.0000019321,0.0000019310,0.0000019295,0.0000019275,0.0000019250, +0.0000019222,0.0000019191,0.0000019159,0.0000019124,0.0000019085, +0.0000019036,0.0000018976,0.0000018904,0.0000018824,0.0000018735, +0.0000018637,0.0000018528,0.0000018412,0.0000018287,0.0000018152, +0.0000018009,0.0000017863,0.0000017723,0.0000017604,0.0000017513, +0.0000017453,0.0000017421,0.0000017404,0.0000017397,0.0000017398, +0.0000017404,0.0000017416,0.0000017434,0.0000017451,0.0000017462, +0.0000017466,0.0000017463,0.0000017451,0.0000017428,0.0000017400, +0.0000017375,0.0000017358,0.0000017350,0.0000017347,0.0000017348, +0.0000017351,0.0000017354,0.0000017358,0.0000017364,0.0000017375, +0.0000017389,0.0000017400,0.0000017408,0.0000017413,0.0000017415, +0.0000017432,0.0000017479,0.0000017549,0.0000017626,0.0000017688, +0.0000017713,0.0000017708,0.0000017679,0.0000017609,0.0000017536, +0.0000017469,0.0000017420,0.0000017390,0.0000017377,0.0000017381, +0.0000017388,0.0000017400,0.0000017413,0.0000017424,0.0000017438, +0.0000017454,0.0000017468,0.0000017481,0.0000017493,0.0000017507, +0.0000017518,0.0000017530,0.0000017532,0.0000017541,0.0000017551, +0.0000017563,0.0000017575,0.0000017586,0.0000017599,0.0000017610, +0.0000017619,0.0000017631,0.0000017638,0.0000017636,0.0000017630, +0.0000017622,0.0000017613,0.0000017610,0.0000017611,0.0000017613, +0.0000017621,0.0000017633,0.0000017645,0.0000017656,0.0000017668, +0.0000017679,0.0000017689,0.0000017696,0.0000017702,0.0000017704, +0.0000017703,0.0000017700,0.0000017696,0.0000017695,0.0000017696, +0.0000017700,0.0000017702,0.0000017701,0.0000017697,0.0000017694, +0.0000017693,0.0000017695,0.0000017698,0.0000017699,0.0000017702, +0.0000017707,0.0000017711,0.0000017711,0.0000017712,0.0000017717, +0.0000017722,0.0000017725,0.0000017729,0.0000017734,0.0000017736, +0.0000017730,0.0000017722,0.0000017713,0.0000017696,0.0000017674, +0.0000017651,0.0000017624,0.0000017595,0.0000017567,0.0000017537, +0.0000017505,0.0000017474,0.0000017447,0.0000017430,0.0000017421, +0.0000017415,0.0000017413,0.0000017413,0.0000017417,0.0000017423, +0.0000017431,0.0000017437,0.0000017446,0.0000017441,0.0000017435, +0.0000017420,0.0000017396,0.0000017368,0.0000017340,0.0000017317, +0.0000017298,0.0000017285,0.0000017287,0.0000017298,0.0000017308, +0.0000017314,0.0000017333,0.0000017358,0.0000017379,0.0000017404, +0.0000017430,0.0000017448,0.0000017454,0.0000017451,0.0000017440, +0.0000017423,0.0000017408,0.0000017390,0.0000017372,0.0000017359, +0.0000017345,0.0000017326,0.0000017317,0.0000017315,0.0000017349, +0.0000017399,0.0000017473,0.0000017569,0.0000017687,0.0000017821, +0.0000017970,0.0000018130,0.0000018291,0.0000018443,0.0000018578, +0.0000018697,0.0000018802,0.0000018888,0.0000018957,0.0000019012, +0.0000019052,0.0000019077,0.0000019091,0.0000019102,0.0000019110, +0.0000019115,0.0000019116,0.0000019117,0.0000019120,0.0000019119, +0.0000019118,0.0000019122,0.0000019134,0.0000019154,0.0000019181, +0.0000019211,0.0000019246,0.0000019288,0.0000019332,0.0000019375, +0.0000019416,0.0000019447,0.0000019467,0.0000019479,0.0000019484, +0.0000019487,0.0000019495,0.0000019507,0.0000019523,0.0000019544, +0.0000019568,0.0000019590,0.0000019610,0.0000019628,0.0000019642, +0.0000019648,0.0000019648,0.0000019643,0.0000019637,0.0000019639, +0.0000019650,0.0000019663,0.0000019675,0.0000019689,0.0000019704, +0.0000019718,0.0000019731,0.0000019737,0.0000019736,0.0000019731, +0.0000019720,0.0000019704,0.0000019688,0.0000019687,0.0000019696, +0.0000019709,0.0000019728,0.0000019753,0.0000019782,0.0000019813, +0.0000019841,0.0000019857,0.0000019857,0.0000019840,0.0000019826, +0.0000019803,0.0000019764,0.0000019721,0.0000019689,0.0000019674, +0.0000019674,0.0000019682,0.0000019700,0.0000019725,0.0000019753, +0.0000019776,0.0000019792,0.0000019800,0.0000019800,0.0000019790, +0.0000019774,0.0000019753,0.0000019727,0.0000019699,0.0000019681, +0.0000019672,0.0000019669,0.0000019671,0.0000019680,0.0000019693, +0.0000019708,0.0000019725,0.0000019741,0.0000019754,0.0000019766, +0.0000019775,0.0000019787,0.0000019801,0.0000019815,0.0000019825, +0.0000019831,0.0000019834,0.0000019836,0.0000019840,0.0000019842, +0.0000019840,0.0000019836,0.0000019832,0.0000019823,0.0000019804, +0.0000019781,0.0000019759,0.0000019739,0.0000019720,0.0000019700, +0.0000019680,0.0000019662,0.0000019648,0.0000019636,0.0000019623, +0.0000019619,0.0000019610,0.0000019591,0.0000019577,0.0000019577, +0.0000019584,0.0000019594,0.0000019604,0.0000019617,0.0000019628, +0.0000019631,0.0000019624,0.0000019607,0.0000019595,0.0000019596, +0.0000019599,0.0000019600,0.0000019597,0.0000019588,0.0000019574, +0.0000019560,0.0000019546,0.0000019533,0.0000019520,0.0000019503, +0.0000019482,0.0000019468,0.0000019463,0.0000019468,0.0000019482, +0.0000019496,0.0000019494,0.0000019485,0.0000019469,0.0000019450, +0.0000019430,0.0000019406,0.0000019376,0.0000019337,0.0000019291, +0.0000019244,0.0000019202,0.0000019164,0.0000019148,0.0000019137, +0.0000019149,0.0000019170,0.0000019182,0.0000019195,0.0000019191, +0.0000019183,0.0000019171,0.0000019163,0.0000019169,0.0000019186, +0.0000019207,0.0000019218,0.0000019222,0.0000019222,0.0000019207, +0.0000019181,0.0000019147,0.0000019117,0.0000019097,0.0000019086, +0.0000019078,0.0000019071,0.0000019060,0.0000019047,0.0000019034, +0.0000019017,0.0000019000,0.0000018982,0.0000018964,0.0000018952, +0.0000018938,0.0000018932,0.0000018932,0.0000018932,0.0000018944, +0.0000018961,0.0000018975,0.0000018982,0.0000018985,0.0000018987, +0.0000018991,0.0000018998,0.0000019002,0.0000019003,0.0000019003, +0.0000018999,0.0000018996,0.0000019003,0.0000019012,0.0000019035, +0.0000019029,0.0000019027,0.0000019019,0.0000019009,0.0000018983, +0.0000018949,0.0000018914,0.0000018866,0.0000018829,0.0000018807, +0.0000018794,0.0000018786,0.0000018785,0.0000018790,0.0000018788, +0.0000018786,0.0000018777,0.0000018761,0.0000018737,0.0000018710, +0.0000018677,0.0000018636,0.0000018590,0.0000018540,0.0000018496, +0.0000018461,0.0000018436,0.0000018436,0.0000018423,0.0000018430, +0.0000018455,0.0000018492,0.0000018538,0.0000018594,0.0000018636, +0.0000018634,0.0000018648,0.0000018637,0.0000018607,0.0000018569, +0.0000018516,0.0000018461,0.0000018431,0.0000018400,0.0000018399, +0.0000018425,0.0000018461,0.0000018490,0.0000018503,0.0000018514, +0.0000018535,0.0000018573,0.0000018632,0.0000018705,0.0000018774, +0.0000018831,0.0000018867,0.0000018879,0.0000018876,0.0000018849, +0.0000018812,0.0000018789,0.0000018785,0.0000018788,0.0000018794, +0.0000018794,0.0000018781,0.0000018745,0.0000018695,0.0000018643, +0.0000018598,0.0000018564,0.0000018535,0.0000018512,0.0000018507, +0.0000018511,0.0000018510,0.0000018512,0.0000018515,0.0000018516, +0.0000018512,0.0000018502,0.0000018491,0.0000018498,0.0000018516, +0.0000018522,0.0000018514,0.0000018487,0.0000018450,0.0000018406, +0.0000018365,0.0000018319,0.0000018281,0.0000018259,0.0000018252, +0.0000018251,0.0000018251,0.0000018252,0.0000018264,0.0000018301, +0.0000018353,0.0000018400,0.0000018434,0.0000018450,0.0000018452, +0.0000018447,0.0000018434,0.0000018410,0.0000018374,0.0000018321, +0.0000018264,0.0000018217,0.0000018177,0.0000018144,0.0000018116, +0.0000018099,0.0000018097,0.0000018108,0.0000018132,0.0000018170, +0.0000018215,0.0000018245,0.0000018249,0.0000018233,0.0000018210, +0.0000018180,0.0000018141,0.0000018096,0.0000018055,0.0000018026, +0.0000018012,0.0000018006,0.0000018009,0.0000018017,0.0000018032, +0.0000018049,0.0000018064,0.0000018076,0.0000018080,0.0000018078, +0.0000018074,0.0000018067,0.0000018058,0.0000018047,0.0000018037, +0.0000018023,0.0000018007,0.0000017993,0.0000017984,0.0000017976, +0.0000017965,0.0000017947,0.0000017924,0.0000017899,0.0000017874, +0.0000017851,0.0000017837,0.0000017840,0.0000017860,0.0000017891, +0.0000017925,0.0000017958,0.0000017989,0.0000018017,0.0000018041, +0.0000018054,0.0000018062,0.0000018063,0.0000018060,0.0000018052, +0.0000018037,0.0000018016,0.0000017989,0.0000017960,0.0000017931, +0.0000017905,0.0000017880,0.0000017856,0.0000017833,0.0000017811, +0.0000017791,0.0000017772,0.0000017756,0.0000017744,0.0000017736, +0.0000017733,0.0000017737,0.0000017751,0.0000017765,0.0000017774, +0.0000017777,0.0000017782,0.0000017782,0.0000017796,0.0000017822, +0.0000017856,0.0000017893,0.0000017927,0.0000017958,0.0000017984, +0.0000018002,0.0000018001,0.0000017991,0.0000017966,0.0000017952, +0.0000017959,0.0000018000,0.0000018075,0.0000018172,0.0000018268, +0.0000018341,0.0000018386,0.0000018414,0.0000018441,0.0000018476, +0.0000018512,0.0000018541,0.0000018561,0.0000018587,0.0000018639, +0.0000018727,0.0000018854,0.0000019009,0.0000019147,0.0000019256, +0.0000019277,0.0000019274,0.0000019230,0.0000019179,0.0000019133, +0.0000019090,0.0000019049,0.0000019019,0.0000019003,0.0000018991, +0.0000018970,0.0000018940,0.0000018909,0.0000018884,0.0000018871, +0.0000018869,0.0000018868,0.0000018857,0.0000018833,0.0000018798, +0.0000018761,0.0000018728,0.0000018695,0.0000018663,0.0000018633, +0.0000018605,0.0000018574,0.0000018549,0.0000018533,0.0000018527, +0.0000018525,0.0000018523,0.0000018512,0.0000018491,0.0000018461, +0.0000018427,0.0000018388,0.0000018344,0.0000018296,0.0000018248, +0.0000018209,0.0000018181,0.0000018162,0.0000018146,0.0000018138, +0.0000018146,0.0000018162,0.0000018178,0.0000018189,0.0000018194, +0.0000018194,0.0000018187,0.0000018175,0.0000018160,0.0000018142, +0.0000018125,0.0000018111,0.0000018100,0.0000018093,0.0000018089, +0.0000018089,0.0000018091,0.0000018094,0.0000018096,0.0000018103, +0.0000018117,0.0000018138,0.0000018159,0.0000018177,0.0000018193, +0.0000018205,0.0000018213,0.0000018217,0.0000018217,0.0000018212, +0.0000018203,0.0000018189,0.0000018170,0.0000018148,0.0000018121, +0.0000018091,0.0000018058,0.0000018026,0.0000017996,0.0000017970, +0.0000017950,0.0000017940,0.0000017940,0.0000017945,0.0000017951, +0.0000017959,0.0000017974,0.0000017995,0.0000018022,0.0000018054, +0.0000018087,0.0000018124,0.0000018167,0.0000018221,0.0000018285, +0.0000018356,0.0000018423,0.0000018477,0.0000018518,0.0000018548, +0.0000018572,0.0000018586,0.0000018585,0.0000018560,0.0000018532, +0.0000018510,0.0000018442,0.0000018364,0.0000018417,0.0000018613, +0.0000018812,0.0000018835,0.0000018780,0.0000018711,0.0000018699, +0.0000018762,0.0000018728,0.0000018396,0.0000018057,0.0000017847, +0.0000017694,0.0000017554,0.0000017505,0.0000017575,0.0000017649, +0.0000017678,0.0000017679,0.0000017682,0.0000017695,0.0000017708, +0.0000017716,0.0000017719,0.0000017709,0.0000017692,0.0000017669, +0.0000017646,0.0000017628,0.0000017613,0.0000017602,0.0000017593, +0.0000017580,0.0000017565,0.0000017549,0.0000017537,0.0000017530, +0.0000017524,0.0000017522,0.0000017525,0.0000017526,0.0000017507, +0.0000017466,0.0000017429,0.0000017377,0.0000017286,0.0000017206, +0.0000017213,0.0000017283,0.0000017326,0.0000017337,0.0000017395, +0.0000017495,0.0000017566,0.0000017602,0.0000017634,0.0000017652, +0.0000017645,0.0000017619,0.0000017607,0.0000017620,0.0000017649, +0.0000017691,0.0000017734,0.0000017773,0.0000017810,0.0000017840, +0.0000017863,0.0000017879,0.0000017891,0.0000017895,0.0000017892, +0.0000017888,0.0000017874,0.0000017860,0.0000017851,0.0000017843, +0.0000017838,0.0000017835,0.0000017832,0.0000017827,0.0000017820, +0.0000017812,0.0000017803,0.0000017790,0.0000017774,0.0000017759, +0.0000017742,0.0000017724,0.0000017706,0.0000017691,0.0000017682, +0.0000017678,0.0000017680,0.0000017691,0.0000017704,0.0000017718, +0.0000017736,0.0000017764,0.0000017816,0.0000017890,0.0000017969, +0.0000018033,0.0000018084,0.0000018124,0.0000018154,0.0000018174, +0.0000018172,0.0000018138,0.0000018098,0.0000018078,0.0000018079, +0.0000018101,0.0000018123,0.0000018135,0.0000018134,0.0000018116, +0.0000018089,0.0000018055,0.0000018017,0.0000017991,0.0000017974, +0.0000017970,0.0000017983,0.0000018008,0.0000018044,0.0000018083, +0.0000018112,0.0000018115,0.0000018087,0.0000018038,0.0000017992, +0.0000017966,0.0000017973,0.0000018017,0.0000018092,0.0000018188, +0.0000018279,0.0000018363,0.0000018408,0.0000018427,0.0000018432, +0.0000018430,0.0000018425,0.0000018420,0.0000018418,0.0000018425, +0.0000018436,0.0000018447,0.0000018460,0.0000018473,0.0000018483, +0.0000018494,0.0000018505,0.0000018518,0.0000018532,0.0000018545, +0.0000018558,0.0000018573,0.0000018590,0.0000018610,0.0000018632, +0.0000018655,0.0000018725,0.0000018724,0.0000018716,0.0000018704, +0.0000018692,0.0000018684,0.0000018681,0.0000018679,0.0000018674, +0.0000018674,0.0000018669,0.0000018664,0.0000018660,0.0000018653, +0.0000018640,0.0000018626,0.0000018614,0.0000018604,0.0000018595, +0.0000018585,0.0000018578,0.0000018571,0.0000018566,0.0000018564, +0.0000018570,0.0000018580,0.0000018598,0.0000018620,0.0000018644, +0.0000018665,0.0000018684,0.0000018699,0.0000018706,0.0000018709, +0.0000018714,0.0000018718,0.0000018718,0.0000018712,0.0000018698, +0.0000018675,0.0000018648,0.0000018621,0.0000018596,0.0000018574, +0.0000018557,0.0000018540,0.0000018521,0.0000018498,0.0000018465, +0.0000018424,0.0000018381,0.0000018343,0.0000018308,0.0000018274, +0.0000018243,0.0000018218,0.0000018207,0.0000018204,0.0000018207, +0.0000018207,0.0000018208,0.0000018200,0.0000018190,0.0000018179, +0.0000018166,0.0000018149,0.0000018136,0.0000018128,0.0000018128, +0.0000018132,0.0000018136,0.0000018136,0.0000018135,0.0000018133, +0.0000018135,0.0000018137,0.0000018132,0.0000018116,0.0000018082, +0.0000018028,0.0000017959,0.0000017890,0.0000017829,0.0000017801, +0.0000017826,0.0000017910,0.0000018022,0.0000018107,0.0000018151, +0.0000018170,0.0000018183,0.0000018193,0.0000018204,0.0000018222, +0.0000018243,0.0000018261,0.0000018270,0.0000018267,0.0000018239, +0.0000018189,0.0000018129,0.0000018075,0.0000018033,0.0000017996, +0.0000017961,0.0000017930,0.0000017911,0.0000017906,0.0000017908, +0.0000017909,0.0000017904,0.0000017887,0.0000017862,0.0000017834, +0.0000017814,0.0000017808,0.0000017813,0.0000017822,0.0000017828, +0.0000017828,0.0000017819,0.0000017809,0.0000017805,0.0000017807, +0.0000017811,0.0000017816,0.0000017820,0.0000017827,0.0000017839, +0.0000017860,0.0000017892,0.0000017934,0.0000017976,0.0000018007, +0.0000018021,0.0000018020,0.0000018013,0.0000018003,0.0000017996, +0.0000017993,0.0000017993,0.0000017990,0.0000017980,0.0000017964, +0.0000017944,0.0000017922,0.0000017897,0.0000017877,0.0000017866, +0.0000017863,0.0000017870,0.0000017889,0.0000017911,0.0000017929, +0.0000017938,0.0000017939,0.0000017925,0.0000017895,0.0000017855, +0.0000017818,0.0000017792,0.0000017776,0.0000017760,0.0000017736, +0.0000017694,0.0000017634,0.0000017562,0.0000017493,0.0000017440, +0.0000017406,0.0000017390,0.0000017388,0.0000017402,0.0000017428, +0.0000017459,0.0000017490,0.0000017522,0.0000017554,0.0000017586, +0.0000017618,0.0000017648,0.0000017675,0.0000017695,0.0000017710, +0.0000017718,0.0000017718,0.0000017711,0.0000017700,0.0000017687, +0.0000017673,0.0000017662,0.0000017657,0.0000017658,0.0000017664, +0.0000017673,0.0000017681,0.0000017688,0.0000017691,0.0000017690, +0.0000017687,0.0000017684,0.0000017682,0.0000017676,0.0000017659, +0.0000017632,0.0000017599,0.0000017568,0.0000017544,0.0000017527, +0.0000017518,0.0000017520,0.0000017528,0.0000017539,0.0000017547, +0.0000017548,0.0000017538,0.0000017521,0.0000017500,0.0000017480, +0.0000017460,0.0000017452,0.0000017464,0.0000017496,0.0000017539, +0.0000017577,0.0000017615,0.0000017655,0.0000017693,0.0000017730, +0.0000017764,0.0000017790,0.0000017808,0.0000017818,0.0000017816, +0.0000017799,0.0000017770,0.0000017729,0.0000017671,0.0000017597, +0.0000017518,0.0000017438,0.0000017364,0.0000017298,0.0000017251, +0.0000017226,0.0000017220,0.0000017225,0.0000017235,0.0000017259, +0.0000017306,0.0000017362,0.0000017422,0.0000017488,0.0000017564, +0.0000017661,0.0000017775,0.0000017881,0.0000017941,0.0000017950, +0.0000017971,0.0000018025,0.0000018101,0.0000018150,0.0000018149, +0.0000018082,0.0000017960,0.0000017823,0.0000017693,0.0000017649, +0.0000017627,0.0000017611,0.0000017592,0.0000017570,0.0000017548, +0.0000017532,0.0000017514,0.0000017484,0.0000017422,0.0000017343, +0.0000017274,0.0000017242,0.0000017246,0.0000017259,0.0000017263, +0.0000017252,0.0000017244,0.0000017245,0.0000017282,0.0000017373, +0.0000017519,0.0000017703,0.0000017879,0.0000018006,0.0000018086, +0.0000018159,0.0000018259,0.0000018387,0.0000018524,0.0000018646, +0.0000018748,0.0000018830,0.0000018896,0.0000018948,0.0000018989, +0.0000019023,0.0000019047,0.0000019064,0.0000019076,0.0000019083, +0.0000019085,0.0000019085,0.0000019084,0.0000019084,0.0000019083, +0.0000019081,0.0000019078,0.0000019073,0.0000019069,0.0000019066, +0.0000019064,0.0000019064,0.0000019069,0.0000019076,0.0000019085, +0.0000019098,0.0000019114,0.0000019132,0.0000019148,0.0000019160, +0.0000019168,0.0000019171,0.0000019171,0.0000019167,0.0000019159, +0.0000019149,0.0000019137,0.0000019122,0.0000019101,0.0000019075, +0.0000019045,0.0000019008,0.0000018966,0.0000018919,0.0000018866, +0.0000018803,0.0000018731,0.0000018650,0.0000018564,0.0000018472, +0.0000018370,0.0000018251,0.0000018114,0.0000017966,0.0000017817, +0.0000017680,0.0000017567,0.0000017483,0.0000017428,0.0000017397, +0.0000017385,0.0000017385,0.0000017391,0.0000017402,0.0000017418, +0.0000017434,0.0000017447,0.0000017452,0.0000017456,0.0000017448, +0.0000017434,0.0000017415,0.0000017393,0.0000017368,0.0000017348, +0.0000017337,0.0000017333,0.0000017333,0.0000017334,0.0000017335, +0.0000017337,0.0000017340,0.0000017348,0.0000017362,0.0000017379, +0.0000017390,0.0000017399,0.0000017409,0.0000017442,0.0000017502, +0.0000017585,0.0000017668,0.0000017728,0.0000017750,0.0000017722, +0.0000017658,0.0000017582,0.0000017505,0.0000017442,0.0000017401, +0.0000017383,0.0000017377,0.0000017379,0.0000017382,0.0000017388, +0.0000017394,0.0000017397,0.0000017399,0.0000017406,0.0000017420, +0.0000017439,0.0000017461,0.0000017484,0.0000017513,0.0000017541, +0.0000017566,0.0000017582,0.0000017592,0.0000017595,0.0000017597, +0.0000017596,0.0000017594,0.0000017596,0.0000017600,0.0000017604, +0.0000017612,0.0000017625,0.0000017640,0.0000017642,0.0000017647, +0.0000017651,0.0000017652,0.0000017658,0.0000017670,0.0000017684, +0.0000017705,0.0000017726,0.0000017745,0.0000017760,0.0000017774, +0.0000017786,0.0000017797,0.0000017806,0.0000017812,0.0000017813, +0.0000017811,0.0000017803,0.0000017794,0.0000017784,0.0000017779, +0.0000017774,0.0000017766,0.0000017760,0.0000017750,0.0000017740, +0.0000017734,0.0000017734,0.0000017737,0.0000017737,0.0000017740, +0.0000017751,0.0000017762,0.0000017770,0.0000017774,0.0000017780, +0.0000017785,0.0000017786,0.0000017787,0.0000017789,0.0000017789, +0.0000017782,0.0000017770,0.0000017755,0.0000017735,0.0000017714, +0.0000017695,0.0000017674,0.0000017655,0.0000017638,0.0000017617, +0.0000017591,0.0000017558,0.0000017520,0.0000017491,0.0000017467, +0.0000017446,0.0000017429,0.0000017418,0.0000017412,0.0000017418, +0.0000017426,0.0000017436,0.0000017448,0.0000017461,0.0000017472, +0.0000017485,0.0000017486,0.0000017481,0.0000017470,0.0000017454, +0.0000017428,0.0000017395,0.0000017363,0.0000017339,0.0000017317, +0.0000017301,0.0000017303,0.0000017305,0.0000017312,0.0000017322, +0.0000017345,0.0000017367,0.0000017381,0.0000017396,0.0000017405, +0.0000017408,0.0000017405,0.0000017400,0.0000017388,0.0000017376, +0.0000017356,0.0000017332,0.0000017307,0.0000017288,0.0000017275, +0.0000017264,0.0000017254,0.0000017247,0.0000017275,0.0000017322, +0.0000017396,0.0000017497,0.0000017623,0.0000017763,0.0000017912, +0.0000018064,0.0000018215,0.0000018362,0.0000018494,0.0000018609, +0.0000018711,0.0000018800,0.0000018874,0.0000018933,0.0000018981, +0.0000019018,0.0000019042,0.0000019056,0.0000019060,0.0000019058, +0.0000019048,0.0000019035,0.0000019029,0.0000019032,0.0000019044, +0.0000019065,0.0000019098,0.0000019142,0.0000019196,0.0000019258, +0.0000019319,0.0000019369,0.0000019407,0.0000019433,0.0000019449, +0.0000019456,0.0000019462,0.0000019466,0.0000019472,0.0000019482, +0.0000019496,0.0000019513,0.0000019531,0.0000019546,0.0000019555, +0.0000019558,0.0000019554,0.0000019544,0.0000019538,0.0000019544, +0.0000019556,0.0000019568,0.0000019580,0.0000019594,0.0000019611, +0.0000019633,0.0000019659,0.0000019681,0.0000019697,0.0000019704, +0.0000019700,0.0000019686,0.0000019666,0.0000019658,0.0000019661, +0.0000019670,0.0000019676,0.0000019681,0.0000019690,0.0000019702, +0.0000019715,0.0000019725,0.0000019732,0.0000019741,0.0000019748, +0.0000019746,0.0000019728,0.0000019696,0.0000019672,0.0000019659, +0.0000019650,0.0000019647,0.0000019653,0.0000019670,0.0000019694, +0.0000019719,0.0000019741,0.0000019757,0.0000019766,0.0000019769, +0.0000019759,0.0000019749,0.0000019732,0.0000019713,0.0000019702, +0.0000019695,0.0000019693,0.0000019695,0.0000019702,0.0000019708, +0.0000019714,0.0000019719,0.0000019726,0.0000019730,0.0000019733, +0.0000019740,0.0000019752,0.0000019769,0.0000019788,0.0000019808, +0.0000019826,0.0000019839,0.0000019853,0.0000019869,0.0000019879, +0.0000019883,0.0000019886,0.0000019885,0.0000019877,0.0000019858, +0.0000019834,0.0000019805,0.0000019776,0.0000019748,0.0000019717, +0.0000019687,0.0000019661,0.0000019638,0.0000019618,0.0000019606, +0.0000019593,0.0000019573,0.0000019559,0.0000019560,0.0000019570, +0.0000019581,0.0000019591,0.0000019604,0.0000019618,0.0000019622, +0.0000019615,0.0000019594,0.0000019574,0.0000019563,0.0000019562, +0.0000019567,0.0000019574,0.0000019577,0.0000019574,0.0000019567, +0.0000019561,0.0000019556,0.0000019551,0.0000019542,0.0000019528, +0.0000019504,0.0000019475,0.0000019451,0.0000019442,0.0000019448, +0.0000019458,0.0000019464,0.0000019461,0.0000019454,0.0000019440, +0.0000019429,0.0000019418,0.0000019400,0.0000019375,0.0000019344, +0.0000019307,0.0000019263,0.0000019220,0.0000019182,0.0000019157, +0.0000019157,0.0000019163,0.0000019175,0.0000019188,0.0000019197, +0.0000019190,0.0000019181,0.0000019176,0.0000019181,0.0000019190, +0.0000019196,0.0000019202,0.0000019205,0.0000019205,0.0000019200, +0.0000019174,0.0000019155,0.0000019135,0.0000019116,0.0000019104, +0.0000019097,0.0000019090,0.0000019078,0.0000019067,0.0000019057, +0.0000019047,0.0000019040,0.0000019033,0.0000019022,0.0000019003, +0.0000018978,0.0000018960,0.0000018943,0.0000018939,0.0000018937, +0.0000018946,0.0000018951,0.0000018952,0.0000018950,0.0000018952, +0.0000018962,0.0000018971,0.0000018973,0.0000018965,0.0000018948, +0.0000018927,0.0000018906,0.0000018899,0.0000018915,0.0000018948, +0.0000018975,0.0000019014,0.0000019042,0.0000019044,0.0000019047, +0.0000019025,0.0000018970,0.0000018903,0.0000018846,0.0000018795, +0.0000018772,0.0000018752,0.0000018753,0.0000018760,0.0000018765, +0.0000018773,0.0000018774,0.0000018787,0.0000018790,0.0000018777, +0.0000018741,0.0000018686,0.0000018627,0.0000018587,0.0000018563, +0.0000018541,0.0000018516,0.0000018479,0.0000018436,0.0000018415, +0.0000018385,0.0000018376,0.0000018393,0.0000018422,0.0000018465, +0.0000018530,0.0000018594,0.0000018615,0.0000018641,0.0000018638, +0.0000018602,0.0000018546,0.0000018479,0.0000018427,0.0000018414, +0.0000018422,0.0000018433,0.0000018436,0.0000018432,0.0000018420, +0.0000018414,0.0000018420,0.0000018460,0.0000018541,0.0000018634, +0.0000018715,0.0000018780,0.0000018822,0.0000018834,0.0000018830, +0.0000018820,0.0000018816,0.0000018819,0.0000018817,0.0000018810, +0.0000018795,0.0000018771,0.0000018746,0.0000018711,0.0000018668, +0.0000018624,0.0000018583,0.0000018551,0.0000018532,0.0000018512, +0.0000018491,0.0000018478,0.0000018473,0.0000018479,0.0000018484, +0.0000018485,0.0000018489,0.0000018505,0.0000018519,0.0000018521, +0.0000018505,0.0000018477,0.0000018441,0.0000018400,0.0000018360, +0.0000018319,0.0000018278,0.0000018245,0.0000018228,0.0000018212, +0.0000018202,0.0000018197,0.0000018207,0.0000018239,0.0000018291, +0.0000018346,0.0000018400,0.0000018441,0.0000018461,0.0000018461, +0.0000018445,0.0000018419,0.0000018385,0.0000018339,0.0000018285, +0.0000018234,0.0000018189,0.0000018154,0.0000018122,0.0000018098, +0.0000018092,0.0000018098,0.0000018108,0.0000018121,0.0000018140, +0.0000018156,0.0000018164,0.0000018168,0.0000018167,0.0000018155, +0.0000018133,0.0000018100,0.0000018067,0.0000018041,0.0000018021, +0.0000018011,0.0000018006,0.0000018003,0.0000018006,0.0000018014, +0.0000018022,0.0000018031,0.0000018038,0.0000018039,0.0000018039, +0.0000018036,0.0000018032,0.0000018025,0.0000018015,0.0000018002, +0.0000017989,0.0000017979,0.0000017973,0.0000017968,0.0000017962, +0.0000017949,0.0000017928,0.0000017902,0.0000017872,0.0000017840, +0.0000017810,0.0000017791,0.0000017791,0.0000017807,0.0000017834, +0.0000017868,0.0000017906,0.0000017943,0.0000017975,0.0000018000, +0.0000018020,0.0000018034,0.0000018037,0.0000018032,0.0000018021, +0.0000018000,0.0000017983,0.0000017968,0.0000017953,0.0000017935, +0.0000017912,0.0000017883,0.0000017852,0.0000017819,0.0000017788, +0.0000017764,0.0000017747,0.0000017739,0.0000017735,0.0000017740, +0.0000017753,0.0000017772,0.0000017790,0.0000017803,0.0000017804, +0.0000017795,0.0000017781,0.0000017776,0.0000017778,0.0000017794, +0.0000017824,0.0000017859,0.0000017893,0.0000017924,0.0000017953, +0.0000017971,0.0000017975,0.0000017972,0.0000017955,0.0000017943, +0.0000017952,0.0000017992,0.0000018065,0.0000018161,0.0000018255, +0.0000018326,0.0000018368,0.0000018389,0.0000018406,0.0000018434, +0.0000018469,0.0000018498,0.0000018522,0.0000018550,0.0000018596, +0.0000018676,0.0000018801,0.0000018957,0.0000019104,0.0000019224, +0.0000019256,0.0000019264,0.0000019225,0.0000019177,0.0000019137, +0.0000019103,0.0000019070,0.0000019044,0.0000019028,0.0000019014, +0.0000018992,0.0000018958,0.0000018921,0.0000018896,0.0000018883, +0.0000018874,0.0000018863,0.0000018845,0.0000018823,0.0000018800, +0.0000018775,0.0000018748,0.0000018717,0.0000018683,0.0000018648, +0.0000018617,0.0000018590,0.0000018564,0.0000018540,0.0000018523, +0.0000018516,0.0000018509,0.0000018493,0.0000018467,0.0000018435, +0.0000018394,0.0000018342,0.0000018287,0.0000018238,0.0000018200, +0.0000018168,0.0000018139,0.0000018118,0.0000018117,0.0000018131, +0.0000018152,0.0000018170,0.0000018181,0.0000018186,0.0000018186, +0.0000018179,0.0000018168,0.0000018152,0.0000018132,0.0000018114, +0.0000018099,0.0000018088,0.0000018083,0.0000018083,0.0000018088, +0.0000018094,0.0000018099,0.0000018108,0.0000018124,0.0000018145, +0.0000018165,0.0000018186,0.0000018208,0.0000018230,0.0000018248, +0.0000018263,0.0000018273,0.0000018277,0.0000018276,0.0000018269, +0.0000018256,0.0000018237,0.0000018214,0.0000018187,0.0000018158, +0.0000018130,0.0000018103,0.0000018079,0.0000018060,0.0000018048, +0.0000018044,0.0000018042,0.0000018045,0.0000018053,0.0000018067, +0.0000018093,0.0000018129,0.0000018174,0.0000018227,0.0000018282, +0.0000018340,0.0000018394,0.0000018443,0.0000018485,0.0000018517, +0.0000018544,0.0000018567,0.0000018583,0.0000018599,0.0000018618, +0.0000018619,0.0000018588,0.0000018551,0.0000018489,0.0000018386, +0.0000018381,0.0000018556,0.0000018788,0.0000018834,0.0000018804, +0.0000018722,0.0000018699,0.0000018703,0.0000018760,0.0000018700, +0.0000018409,0.0000018051,0.0000017767,0.0000017580,0.0000017542, +0.0000017646,0.0000017704,0.0000017691,0.0000017658,0.0000017642, +0.0000017650,0.0000017672,0.0000017695,0.0000017715,0.0000017726, +0.0000017725,0.0000017716,0.0000017697,0.0000017677,0.0000017661, +0.0000017650,0.0000017640,0.0000017629,0.0000017615,0.0000017600, +0.0000017586,0.0000017574,0.0000017563,0.0000017554,0.0000017554, +0.0000017555,0.0000017539,0.0000017500,0.0000017464,0.0000017416, +0.0000017326,0.0000017232,0.0000017216,0.0000017271,0.0000017316, +0.0000017335,0.0000017409,0.0000017504,0.0000017561,0.0000017600, +0.0000017624,0.0000017618,0.0000017589,0.0000017578,0.0000017599, +0.0000017642,0.0000017693,0.0000017746,0.0000017796,0.0000017837, +0.0000017867,0.0000017885,0.0000017892,0.0000017893,0.0000017892, +0.0000017881,0.0000017863,0.0000017844,0.0000017828,0.0000017821, +0.0000017819,0.0000017819,0.0000017821,0.0000017822,0.0000017823, +0.0000017820,0.0000017815,0.0000017808,0.0000017799,0.0000017788, +0.0000017777,0.0000017766,0.0000017754,0.0000017742,0.0000017729, +0.0000017719,0.0000017713,0.0000017711,0.0000017711,0.0000017716, +0.0000017723,0.0000017733,0.0000017739,0.0000017746,0.0000017759, +0.0000017787,0.0000017842,0.0000017911,0.0000017979,0.0000018031, +0.0000018069,0.0000018100,0.0000018124,0.0000018128,0.0000018109, +0.0000018078,0.0000018057,0.0000018055,0.0000018071,0.0000018097, +0.0000018120,0.0000018134,0.0000018140,0.0000018132,0.0000018107, +0.0000018070,0.0000018026,0.0000017990,0.0000017968,0.0000017968, +0.0000017982,0.0000018008,0.0000018046,0.0000018078,0.0000018091, +0.0000018081,0.0000018055,0.0000018015,0.0000017974,0.0000017959, +0.0000017965,0.0000017992,0.0000018051,0.0000018137,0.0000018236, +0.0000018333,0.0000018416,0.0000018452,0.0000018477,0.0000018486, +0.0000018488,0.0000018493,0.0000018498,0.0000018502,0.0000018511, +0.0000018524,0.0000018537,0.0000018550,0.0000018563,0.0000018577, +0.0000018592,0.0000018605,0.0000018617,0.0000018635,0.0000018656, +0.0000018679,0.0000018700,0.0000018714,0.0000018706,0.0000018694, +0.0000018683,0.0000018680,0.0000018683,0.0000018688,0.0000018685, +0.0000018677,0.0000018665,0.0000018648,0.0000018626,0.0000018603, +0.0000018585,0.0000018572,0.0000018561,0.0000018551,0.0000018544, +0.0000018542,0.0000018541,0.0000018542,0.0000018543,0.0000018542, +0.0000018539,0.0000018537,0.0000018535,0.0000018535,0.0000018539, +0.0000018546,0.0000018557,0.0000018570,0.0000018590,0.0000018615, +0.0000018641,0.0000018667,0.0000018691,0.0000018715,0.0000018729, +0.0000018743,0.0000018750,0.0000018748,0.0000018737,0.0000018720, +0.0000018697,0.0000018672,0.0000018648,0.0000018625,0.0000018601, +0.0000018572,0.0000018536,0.0000018492,0.0000018442,0.0000018392, +0.0000018348,0.0000018307,0.0000018269,0.0000018236,0.0000018213, +0.0000018201,0.0000018198,0.0000018203,0.0000018211,0.0000018216, +0.0000018225,0.0000018231,0.0000018234,0.0000018235,0.0000018233, +0.0000018221,0.0000018208,0.0000018196,0.0000018186,0.0000018171, +0.0000018155,0.0000018140,0.0000018137,0.0000018139,0.0000018139, +0.0000018136,0.0000018122,0.0000018089,0.0000018037,0.0000017974, +0.0000017904,0.0000017835,0.0000017807,0.0000017817,0.0000017896, +0.0000018004,0.0000018097,0.0000018158,0.0000018185,0.0000018196, +0.0000018202,0.0000018211,0.0000018228,0.0000018248,0.0000018263, +0.0000018269,0.0000018264,0.0000018241,0.0000018197,0.0000018145, +0.0000018101,0.0000018066,0.0000018038,0.0000018010,0.0000017982, +0.0000017959,0.0000017944,0.0000017938,0.0000017935,0.0000017926, +0.0000017908,0.0000017884,0.0000017860,0.0000017840,0.0000017830, +0.0000017832,0.0000017843,0.0000017855,0.0000017861,0.0000017861, +0.0000017852,0.0000017840,0.0000017831,0.0000017830,0.0000017831, +0.0000017833,0.0000017831,0.0000017828,0.0000017830,0.0000017840, +0.0000017865,0.0000017904,0.0000017947,0.0000017982,0.0000017998, +0.0000017999,0.0000017994,0.0000017992,0.0000017994,0.0000017997, +0.0000017996,0.0000017989,0.0000017975,0.0000017955,0.0000017931, +0.0000017905,0.0000017881,0.0000017866,0.0000017862,0.0000017869, +0.0000017883,0.0000017895,0.0000017895,0.0000017879,0.0000017844, +0.0000017801,0.0000017762,0.0000017735,0.0000017721,0.0000017713, +0.0000017700,0.0000017671,0.0000017624,0.0000017563,0.0000017504, +0.0000017456,0.0000017422,0.0000017400,0.0000017392,0.0000017396, +0.0000017414,0.0000017441,0.0000017471,0.0000017501,0.0000017529, +0.0000017558,0.0000017588,0.0000017619,0.0000017650,0.0000017678, +0.0000017701,0.0000017718,0.0000017728,0.0000017729,0.0000017724, +0.0000017711,0.0000017697,0.0000017681,0.0000017666,0.0000017653, +0.0000017643,0.0000017635,0.0000017632,0.0000017633,0.0000017642, +0.0000017652,0.0000017662,0.0000017672,0.0000017682,0.0000017690, +0.0000017697,0.0000017698,0.0000017693,0.0000017684,0.0000017670, +0.0000017656,0.0000017640,0.0000017629,0.0000017623,0.0000017622, +0.0000017623,0.0000017622,0.0000017614,0.0000017599,0.0000017578, +0.0000017549,0.0000017517,0.0000017489,0.0000017477,0.0000017483, +0.0000017511,0.0000017544,0.0000017574,0.0000017609,0.0000017638, +0.0000017667,0.0000017697,0.0000017727,0.0000017753,0.0000017771, +0.0000017782,0.0000017783,0.0000017771,0.0000017751,0.0000017724, +0.0000017688,0.0000017637,0.0000017581,0.0000017523,0.0000017455, +0.0000017383,0.0000017317,0.0000017265,0.0000017236,0.0000017229, +0.0000017234,0.0000017245,0.0000017264,0.0000017297,0.0000017342, +0.0000017398,0.0000017458,0.0000017526,0.0000017611,0.0000017715, +0.0000017821,0.0000017901,0.0000017931,0.0000017949,0.0000017994, +0.0000018059,0.0000018126,0.0000018154,0.0000018114,0.0000018005, +0.0000017862,0.0000017714,0.0000017612,0.0000017581,0.0000017563, +0.0000017548,0.0000017531,0.0000017512,0.0000017491,0.0000017464, +0.0000017423,0.0000017367,0.0000017303,0.0000017246,0.0000017220, +0.0000017222,0.0000017231,0.0000017240,0.0000017240,0.0000017236, +0.0000017237,0.0000017260,0.0000017327,0.0000017440,0.0000017599, +0.0000017778,0.0000017935,0.0000018047,0.0000018124,0.0000018197, +0.0000018285,0.0000018391,0.0000018500,0.0000018600,0.0000018684, +0.0000018752,0.0000018805,0.0000018844,0.0000018872,0.0000018892, +0.0000018906,0.0000018915,0.0000018921,0.0000018926,0.0000018929, +0.0000018929,0.0000018928,0.0000018924,0.0000018918,0.0000018910, +0.0000018905,0.0000018901,0.0000018899,0.0000018899,0.0000018905, +0.0000018914,0.0000018924,0.0000018938,0.0000018954,0.0000018969, +0.0000018979,0.0000018983,0.0000018981,0.0000018975,0.0000018963, +0.0000018947,0.0000018930,0.0000018911,0.0000018888,0.0000018859, +0.0000018827,0.0000018790,0.0000018746,0.0000018698,0.0000018648, +0.0000018594,0.0000018531,0.0000018459,0.0000018376,0.0000018282, +0.0000018176,0.0000018052,0.0000017914,0.0000017772,0.0000017644, +0.0000017544,0.0000017472,0.0000017425,0.0000017393,0.0000017374, +0.0000017373,0.0000017378,0.0000017398,0.0000017419,0.0000017439, +0.0000017450,0.0000017449,0.0000017446,0.0000017437,0.0000017421, +0.0000017399,0.0000017376,0.0000017358,0.0000017344,0.0000017335, +0.0000017331,0.0000017330,0.0000017329,0.0000017327,0.0000017326, +0.0000017330,0.0000017335,0.0000017349,0.0000017366,0.0000017385, +0.0000017400,0.0000017417,0.0000017454,0.0000017523,0.0000017615, +0.0000017696,0.0000017745,0.0000017750,0.0000017717,0.0000017642, +0.0000017561,0.0000017490,0.0000017438,0.0000017411,0.0000017398, +0.0000017389,0.0000017392,0.0000017392,0.0000017390,0.0000017388, +0.0000017385,0.0000017387,0.0000017394,0.0000017406,0.0000017433, +0.0000017465,0.0000017498,0.0000017531,0.0000017562,0.0000017585, +0.0000017600,0.0000017605,0.0000017601,0.0000017593,0.0000017584, +0.0000017577,0.0000017574,0.0000017576,0.0000017585,0.0000017597, +0.0000017618,0.0000017643,0.0000017671,0.0000017700,0.0000017725, +0.0000017745,0.0000017756,0.0000017762,0.0000017773,0.0000017788, +0.0000017805,0.0000017823,0.0000017839,0.0000017855,0.0000017868, +0.0000017879,0.0000017889,0.0000017902,0.0000017913,0.0000017922, +0.0000017928,0.0000017931,0.0000017929,0.0000017924,0.0000017916, +0.0000017906,0.0000017902,0.0000017892,0.0000017881,0.0000017867, +0.0000017851,0.0000017836,0.0000017824,0.0000017816,0.0000017807, +0.0000017803,0.0000017809,0.0000017818,0.0000017826,0.0000017829, +0.0000017833,0.0000017838,0.0000017840,0.0000017840,0.0000017842, +0.0000017844,0.0000017842,0.0000017835,0.0000017823,0.0000017805, +0.0000017787,0.0000017766,0.0000017743,0.0000017723,0.0000017706, +0.0000017689,0.0000017669,0.0000017641,0.0000017604,0.0000017571, +0.0000017541,0.0000017511,0.0000017483,0.0000017458,0.0000017439, +0.0000017431,0.0000017431,0.0000017436,0.0000017445,0.0000017458, +0.0000017474,0.0000017487,0.0000017499,0.0000017510,0.0000017523, +0.0000017527,0.0000017518,0.0000017500,0.0000017477,0.0000017453, +0.0000017422,0.0000017392,0.0000017368,0.0000017345,0.0000017321, +0.0000017305,0.0000017300,0.0000017295,0.0000017285,0.0000017295, +0.0000017308,0.0000017326,0.0000017346,0.0000017365,0.0000017379, +0.0000017385,0.0000017381,0.0000017369,0.0000017357,0.0000017334, +0.0000017309,0.0000017281,0.0000017252,0.0000017230,0.0000017218, +0.0000017207,0.0000017204,0.0000017231,0.0000017275,0.0000017338, +0.0000017417,0.0000017510,0.0000017615,0.0000017733,0.0000017855, +0.0000017975,0.0000018092,0.0000018208,0.0000018324,0.0000018433, +0.0000018531,0.0000018622,0.0000018709,0.0000018782,0.0000018837, +0.0000018878,0.0000018908,0.0000018929,0.0000018943,0.0000018951, +0.0000018957,0.0000018966,0.0000018985,0.0000019014,0.0000019057, +0.0000019112,0.0000019175,0.0000019238,0.0000019298,0.0000019348, +0.0000019386,0.0000019412,0.0000019429,0.0000019438,0.0000019442, +0.0000019443,0.0000019447,0.0000019453,0.0000019461,0.0000019465, +0.0000019468,0.0000019466,0.0000019460,0.0000019453,0.0000019450, +0.0000019454,0.0000019468,0.0000019480,0.0000019487,0.0000019496, +0.0000019510,0.0000019532,0.0000019559,0.0000019588,0.0000019617, +0.0000019640,0.0000019650,0.0000019648,0.0000019637,0.0000019632, +0.0000019631,0.0000019638,0.0000019643,0.0000019645,0.0000019645, +0.0000019640,0.0000019626,0.0000019609,0.0000019592,0.0000019583, +0.0000019581,0.0000019582,0.0000019580,0.0000019578,0.0000019584, +0.0000019593,0.0000019598,0.0000019595,0.0000019594,0.0000019601, +0.0000019615,0.0000019634,0.0000019656,0.0000019675,0.0000019689, +0.0000019697,0.0000019698,0.0000019693,0.0000019688,0.0000019690, +0.0000019693,0.0000019696,0.0000019696,0.0000019703,0.0000019712, +0.0000019719,0.0000019725,0.0000019731,0.0000019734,0.0000019734, +0.0000019734,0.0000019737,0.0000019741,0.0000019747,0.0000019757, +0.0000019767,0.0000019775,0.0000019782,0.0000019792,0.0000019803, +0.0000019813,0.0000019822,0.0000019829,0.0000019835,0.0000019838, +0.0000019839,0.0000019837,0.0000019832,0.0000019823,0.0000019807, +0.0000019789,0.0000019771,0.0000019747,0.0000019718,0.0000019697, +0.0000019674,0.0000019638,0.0000019606,0.0000019593,0.0000019591, +0.0000019593,0.0000019598,0.0000019611,0.0000019628,0.0000019632, +0.0000019625,0.0000019602,0.0000019578,0.0000019561,0.0000019546, +0.0000019530,0.0000019527,0.0000019530,0.0000019533,0.0000019534, +0.0000019534,0.0000019537,0.0000019540,0.0000019540,0.0000019534, +0.0000019516,0.0000019486,0.0000019454,0.0000019424,0.0000019405, +0.0000019403,0.0000019407,0.0000019411,0.0000019409,0.0000019402, +0.0000019394,0.0000019388,0.0000019381,0.0000019370,0.0000019361, +0.0000019342,0.0000019330,0.0000019307,0.0000019272,0.0000019232, +0.0000019199,0.0000019176,0.0000019163,0.0000019161,0.0000019164, +0.0000019163,0.0000019156,0.0000019147,0.0000019140,0.0000019139, +0.0000019140,0.0000019135,0.0000019127,0.0000019118,0.0000019110, +0.0000019101,0.0000019089,0.0000019075,0.0000019065,0.0000019064, +0.0000019067,0.0000019065,0.0000019055,0.0000019043,0.0000019032, +0.0000019028,0.0000019030,0.0000019037,0.0000019049,0.0000019048, +0.0000019040,0.0000019025,0.0000019003,0.0000018978,0.0000018961, +0.0000018950,0.0000018943,0.0000018934,0.0000018926,0.0000018920, +0.0000018927,0.0000018939,0.0000018945,0.0000018942,0.0000018928, +0.0000018901,0.0000018867,0.0000018837,0.0000018833,0.0000018854, +0.0000018882,0.0000018915,0.0000018953,0.0000018987,0.0000019027, +0.0000019048,0.0000019030,0.0000019004,0.0000018957,0.0000018890, +0.0000018828,0.0000018779,0.0000018744,0.0000018735,0.0000018727, +0.0000018728,0.0000018741,0.0000018758,0.0000018781,0.0000018791, +0.0000018803,0.0000018784,0.0000018743,0.0000018704,0.0000018671, +0.0000018641,0.0000018615,0.0000018585,0.0000018547,0.0000018508, +0.0000018461,0.0000018412,0.0000018377,0.0000018332,0.0000018322, +0.0000018343,0.0000018383,0.0000018426,0.0000018472,0.0000018526, +0.0000018575,0.0000018590,0.0000018581,0.0000018564,0.0000018552, +0.0000018531,0.0000018491,0.0000018446,0.0000018413,0.0000018388, +0.0000018368,0.0000018350,0.0000018341,0.0000018351,0.0000018388, +0.0000018457,0.0000018547,0.0000018636,0.0000018705,0.0000018762, +0.0000018797,0.0000018823,0.0000018840,0.0000018841,0.0000018833, +0.0000018813,0.0000018788,0.0000018771,0.0000018745,0.0000018715, +0.0000018681,0.0000018648,0.0000018621,0.0000018594,0.0000018553, +0.0000018504,0.0000018465,0.0000018447,0.0000018446,0.0000018446, +0.0000018455,0.0000018477,0.0000018503,0.0000018518,0.0000018519, +0.0000018500,0.0000018469,0.0000018431,0.0000018390,0.0000018351, +0.0000018315,0.0000018277,0.0000018242,0.0000018216,0.0000018197, +0.0000018176,0.0000018162,0.0000018162,0.0000018196,0.0000018248, +0.0000018302,0.0000018363,0.0000018418,0.0000018454,0.0000018463, +0.0000018449,0.0000018419,0.0000018386,0.0000018346,0.0000018301, +0.0000018257,0.0000018214,0.0000018175,0.0000018139,0.0000018105, +0.0000018091,0.0000018095,0.0000018105,0.0000018107,0.0000018109, +0.0000018111,0.0000018114,0.0000018117,0.0000018116,0.0000018108, +0.0000018094,0.0000018071,0.0000018046,0.0000018019,0.0000017993, +0.0000017971,0.0000017952,0.0000017938,0.0000017930,0.0000017929, +0.0000017936,0.0000017951,0.0000017973,0.0000017995,0.0000018015, +0.0000018028,0.0000018032,0.0000018030,0.0000018025,0.0000018015, +0.0000018001,0.0000017989,0.0000017981,0.0000017975,0.0000017970, +0.0000017963,0.0000017950,0.0000017928,0.0000017901,0.0000017871, +0.0000017839,0.0000017807,0.0000017789,0.0000017780,0.0000017783, +0.0000017799,0.0000017826,0.0000017854,0.0000017877,0.0000017894, +0.0000017908,0.0000017918,0.0000017927,0.0000017935,0.0000017940, +0.0000017943,0.0000017944,0.0000017947,0.0000017946,0.0000017946, +0.0000017939,0.0000017920,0.0000017888,0.0000017844,0.0000017796, +0.0000017752,0.0000017724,0.0000017710,0.0000017711,0.0000017727, +0.0000017754,0.0000017781,0.0000017803,0.0000017816,0.0000017825, +0.0000017819,0.0000017804,0.0000017779,0.0000017765,0.0000017756, +0.0000017770,0.0000017798,0.0000017830,0.0000017862,0.0000017891, +0.0000017921,0.0000017945,0.0000017963,0.0000017963,0.0000017954, +0.0000017948,0.0000017948,0.0000017984,0.0000018053,0.0000018145, +0.0000018237,0.0000018305,0.0000018341,0.0000018351,0.0000018365, +0.0000018392,0.0000018429,0.0000018466,0.0000018493,0.0000018515, +0.0000018552,0.0000018624,0.0000018745,0.0000018906,0.0000019067, +0.0000019201,0.0000019248,0.0000019261,0.0000019217,0.0000019170, +0.0000019134,0.0000019109,0.0000019088,0.0000019072,0.0000019060, +0.0000019044,0.0000019019,0.0000018987,0.0000018953,0.0000018920, +0.0000018890,0.0000018867,0.0000018847,0.0000018828,0.0000018812, +0.0000018797,0.0000018781,0.0000018759,0.0000018730,0.0000018697, +0.0000018668,0.0000018641,0.0000018615,0.0000018585,0.0000018555, +0.0000018529,0.0000018507,0.0000018487,0.0000018466,0.0000018441, +0.0000018406,0.0000018357,0.0000018303,0.0000018255,0.0000018214, +0.0000018171,0.0000018133,0.0000018111,0.0000018110,0.0000018116, +0.0000018128,0.0000018142,0.0000018154,0.0000018162,0.0000018164, +0.0000018162,0.0000018152,0.0000018137,0.0000018121,0.0000018107, +0.0000018098,0.0000018094,0.0000018094,0.0000018100,0.0000018106, +0.0000018114,0.0000018124,0.0000018139,0.0000018158,0.0000018179, +0.0000018203,0.0000018231,0.0000018259,0.0000018283,0.0000018304, +0.0000018318,0.0000018326,0.0000018328,0.0000018324,0.0000018311, +0.0000018292,0.0000018269,0.0000018245,0.0000018221,0.0000018198, +0.0000018180,0.0000018167,0.0000018159,0.0000018158,0.0000018161, +0.0000018169,0.0000018183,0.0000018200,0.0000018222,0.0000018254, +0.0000018295,0.0000018341,0.0000018383,0.0000018420,0.0000018448, +0.0000018473,0.0000018500,0.0000018532,0.0000018570,0.0000018610, +0.0000018631,0.0000018627,0.0000018621,0.0000018633,0.0000018630, +0.0000018595,0.0000018537,0.0000018429,0.0000018383,0.0000018506, +0.0000018754,0.0000018837,0.0000018817,0.0000018744,0.0000018705, +0.0000018693,0.0000018702,0.0000018745,0.0000018707,0.0000018406, +0.0000017937,0.0000017616,0.0000017571,0.0000017688,0.0000017716, +0.0000017655,0.0000017593,0.0000017583,0.0000017593,0.0000017607, +0.0000017627,0.0000017656,0.0000017686,0.0000017709,0.0000017719, +0.0000017711,0.0000017699,0.0000017685,0.0000017675,0.0000017668, +0.0000017663,0.0000017656,0.0000017647,0.0000017639,0.0000017627, +0.0000017614,0.0000017602,0.0000017597,0.0000017592,0.0000017568, +0.0000017526,0.0000017492,0.0000017449,0.0000017367,0.0000017271, +0.0000017232,0.0000017269,0.0000017312,0.0000017344,0.0000017430, +0.0000017516,0.0000017569,0.0000017604,0.0000017600,0.0000017563, +0.0000017548,0.0000017575,0.0000017629,0.0000017688,0.0000017751, +0.0000017809,0.0000017853,0.0000017875,0.0000017883,0.0000017885, +0.0000017885,0.0000017881,0.0000017867,0.0000017843,0.0000017823, +0.0000017812,0.0000017810,0.0000017810,0.0000017814,0.0000017819, +0.0000017829,0.0000017846,0.0000017858,0.0000017860,0.0000017854, +0.0000017844,0.0000017831,0.0000017817,0.0000017802,0.0000017789, +0.0000017777,0.0000017766,0.0000017756,0.0000017746,0.0000017737, +0.0000017731,0.0000017730,0.0000017735,0.0000017744,0.0000017755, +0.0000017764,0.0000017768,0.0000017763,0.0000017757,0.0000017760, +0.0000017788,0.0000017840,0.0000017898,0.0000017952,0.0000017997, +0.0000018034,0.0000018062,0.0000018073,0.0000018066,0.0000018046, +0.0000018031,0.0000018028,0.0000018044,0.0000018072,0.0000018098, +0.0000018120,0.0000018136,0.0000018140,0.0000018136,0.0000018114, +0.0000018076,0.0000018035,0.0000018003,0.0000017993,0.0000017996, +0.0000018015,0.0000018036,0.0000018058,0.0000018076,0.0000018085, +0.0000018085,0.0000018064,0.0000018033,0.0000018003,0.0000017980, +0.0000017978,0.0000017998,0.0000018042,0.0000018115,0.0000018220, +0.0000018335,0.0000018429,0.0000018486,0.0000018508,0.0000018529, +0.0000018541,0.0000018550,0.0000018559,0.0000018572,0.0000018586, +0.0000018599,0.0000018610,0.0000018624,0.0000018639,0.0000018652, +0.0000018666,0.0000018684,0.0000018697,0.0000018713,0.0000018716, +0.0000018714,0.0000018668,0.0000018673,0.0000018676,0.0000018674, +0.0000018666,0.0000018649,0.0000018624,0.0000018597,0.0000018572, +0.0000018554,0.0000018542,0.0000018532,0.0000018525,0.0000018519, +0.0000018513,0.0000018508,0.0000018505,0.0000018503,0.0000018501, +0.0000018501,0.0000018505,0.0000018511,0.0000018515,0.0000018516, +0.0000018513,0.0000018510,0.0000018508,0.0000018508,0.0000018509, +0.0000018511,0.0000018516,0.0000018528,0.0000018546,0.0000018569, +0.0000018598,0.0000018635,0.0000018675,0.0000018712,0.0000018742, +0.0000018756,0.0000018766,0.0000018766,0.0000018759,0.0000018748, +0.0000018733,0.0000018716,0.0000018697,0.0000018674,0.0000018643, +0.0000018603,0.0000018554,0.0000018498,0.0000018439,0.0000018381, +0.0000018326,0.0000018278,0.0000018241,0.0000018213,0.0000018197, +0.0000018196,0.0000018197,0.0000018205,0.0000018218,0.0000018236, +0.0000018254,0.0000018281,0.0000018301,0.0000018312,0.0000018309, +0.0000018295,0.0000018276,0.0000018249,0.0000018213,0.0000018175, +0.0000018148,0.0000018139,0.0000018136,0.0000018138,0.0000018140, +0.0000018129,0.0000018099,0.0000018052,0.0000017989,0.0000017917, +0.0000017852,0.0000017814,0.0000017831,0.0000017895,0.0000017991, +0.0000018088,0.0000018160,0.0000018195,0.0000018203,0.0000018208, +0.0000018216,0.0000018232,0.0000018250,0.0000018263,0.0000018265, +0.0000018257,0.0000018236,0.0000018203,0.0000018163,0.0000018128, +0.0000018101,0.0000018081,0.0000018062,0.0000018041,0.0000018021, +0.0000018003,0.0000017987,0.0000017972,0.0000017957,0.0000017941, +0.0000017923,0.0000017905,0.0000017886,0.0000017869,0.0000017861, +0.0000017865,0.0000017876,0.0000017886,0.0000017890,0.0000017884, +0.0000017872,0.0000017859,0.0000017851,0.0000017846,0.0000017844, +0.0000017839,0.0000017831,0.0000017821,0.0000017812,0.0000017814, +0.0000017837,0.0000017877,0.0000017924,0.0000017963,0.0000017985, +0.0000017992,0.0000017993,0.0000017998,0.0000018000,0.0000018001, +0.0000017994,0.0000017979,0.0000017959,0.0000017933,0.0000017904, +0.0000017879,0.0000017863,0.0000017859,0.0000017862,0.0000017860, +0.0000017839,0.0000017799,0.0000017752,0.0000017713,0.0000017687, +0.0000017673,0.0000017666,0.0000017657,0.0000017638,0.0000017601, +0.0000017550,0.0000017502,0.0000017466,0.0000017441,0.0000017423, +0.0000017415,0.0000017415,0.0000017425,0.0000017443,0.0000017468, +0.0000017496,0.0000017521,0.0000017544,0.0000017569,0.0000017593, +0.0000017617,0.0000017642,0.0000017665,0.0000017687,0.0000017708, +0.0000017725,0.0000017731,0.0000017728,0.0000017721,0.0000017710, +0.0000017699,0.0000017687,0.0000017675,0.0000017660,0.0000017643, +0.0000017626,0.0000017613,0.0000017607,0.0000017610,0.0000017619, +0.0000017633,0.0000017649,0.0000017665,0.0000017678,0.0000017688, +0.0000017695,0.0000017700,0.0000017700,0.0000017697,0.0000017697, +0.0000017693,0.0000017690,0.0000017688,0.0000017688,0.0000017685, +0.0000017676,0.0000017664,0.0000017647,0.0000017622,0.0000017596, +0.0000017578,0.0000017574,0.0000017580,0.0000017598,0.0000017619, +0.0000017645,0.0000017668,0.0000017691,0.0000017711,0.0000017731, +0.0000017749,0.0000017765,0.0000017773,0.0000017774,0.0000017767, +0.0000017753,0.0000017732,0.0000017707,0.0000017674,0.0000017639, +0.0000017604,0.0000017570,0.0000017526,0.0000017474,0.0000017414, +0.0000017355,0.0000017308,0.0000017276,0.0000017258,0.0000017254, +0.0000017259,0.0000017267,0.0000017286,0.0000017322,0.0000017365, +0.0000017415,0.0000017480,0.0000017560,0.0000017654,0.0000017759, +0.0000017856,0.0000017911,0.0000017930,0.0000017963,0.0000018020, +0.0000018092,0.0000018125,0.0000018119,0.0000018037,0.0000017896, +0.0000017738,0.0000017594,0.0000017545,0.0000017527,0.0000017514, +0.0000017497,0.0000017471,0.0000017440,0.0000017408,0.0000017376, +0.0000017334,0.0000017282,0.0000017235,0.0000017213,0.0000017209, +0.0000017217,0.0000017225,0.0000017229,0.0000017233,0.0000017238, +0.0000017254,0.0000017297,0.0000017374,0.0000017488,0.0000017640, +0.0000017806,0.0000017952,0.0000018057,0.0000018129,0.0000018192, +0.0000018257,0.0000018330,0.0000018404,0.0000018476,0.0000018538, +0.0000018589,0.0000018629,0.0000018659,0.0000018681,0.0000018700, +0.0000018715,0.0000018726,0.0000018733,0.0000018735,0.0000018734, +0.0000018728,0.0000018722,0.0000018718,0.0000018715,0.0000018711, +0.0000018707,0.0000018709,0.0000018716,0.0000018724,0.0000018733, +0.0000018743,0.0000018751,0.0000018755,0.0000018752,0.0000018743, +0.0000018729,0.0000018708,0.0000018684,0.0000018658,0.0000018631, +0.0000018601,0.0000018570,0.0000018540,0.0000018505,0.0000018465, +0.0000018420,0.0000018370,0.0000018310,0.0000018235,0.0000018143, +0.0000018038,0.0000017925,0.0000017810,0.0000017698,0.0000017597, +0.0000017515,0.0000017458,0.0000017421,0.0000017395,0.0000017379, +0.0000017374,0.0000017374,0.0000017392,0.0000017420,0.0000017447, +0.0000017459,0.0000017457,0.0000017450,0.0000017433,0.0000017414, +0.0000017395,0.0000017374,0.0000017353,0.0000017336,0.0000017326, +0.0000017323,0.0000017323,0.0000017323,0.0000017322,0.0000017322, +0.0000017324,0.0000017333,0.0000017351,0.0000017373,0.0000017394, +0.0000017414,0.0000017440,0.0000017487,0.0000017562,0.0000017655, +0.0000017736,0.0000017773,0.0000017763,0.0000017716,0.0000017634, +0.0000017549,0.0000017484,0.0000017446,0.0000017427,0.0000017422, +0.0000017422,0.0000017422,0.0000017418,0.0000017412,0.0000017405, +0.0000017401,0.0000017404,0.0000017415,0.0000017435,0.0000017464, +0.0000017500,0.0000017532,0.0000017556,0.0000017572,0.0000017582, +0.0000017587,0.0000017590,0.0000017591,0.0000017593,0.0000017596, +0.0000017590,0.0000017596,0.0000017605,0.0000017616,0.0000017631, +0.0000017650,0.0000017672,0.0000017696,0.0000017721,0.0000017741, +0.0000017758,0.0000017775,0.0000017788,0.0000017798,0.0000017811, +0.0000017819,0.0000017831,0.0000017850,0.0000017868,0.0000017885, +0.0000017904,0.0000017921,0.0000017934,0.0000017948,0.0000017962, +0.0000017975,0.0000017985,0.0000017993,0.0000018001,0.0000018003, +0.0000018001,0.0000017996,0.0000017991,0.0000017990,0.0000017984, +0.0000017975,0.0000017965,0.0000017954,0.0000017939,0.0000017923, +0.0000017914,0.0000017907,0.0000017899,0.0000017899,0.0000017904, +0.0000017913,0.0000017917,0.0000017919,0.0000017921,0.0000017918, +0.0000017912,0.0000017904,0.0000017896,0.0000017889,0.0000017881, +0.0000017874,0.0000017863,0.0000017850,0.0000017835,0.0000017817, +0.0000017801,0.0000017787,0.0000017774,0.0000017759,0.0000017737, +0.0000017703,0.0000017669,0.0000017638,0.0000017603,0.0000017570, +0.0000017537,0.0000017507,0.0000017486,0.0000017472,0.0000017463, +0.0000017459,0.0000017467,0.0000017475,0.0000017484,0.0000017494, +0.0000017508,0.0000017526,0.0000017537,0.0000017539,0.0000017539, +0.0000017534,0.0000017524,0.0000017507,0.0000017492,0.0000017471, +0.0000017445,0.0000017415,0.0000017383,0.0000017348,0.0000017311, +0.0000017275,0.0000017248,0.0000017236,0.0000017230,0.0000017242, +0.0000017271,0.0000017300,0.0000017326,0.0000017351,0.0000017370, +0.0000017378,0.0000017375,0.0000017363,0.0000017341,0.0000017306, +0.0000017270,0.0000017236,0.0000017210,0.0000017198,0.0000017200, +0.0000017212,0.0000017236,0.0000017268,0.0000017308,0.0000017355, +0.0000017410,0.0000017471,0.0000017536,0.0000017603,0.0000017676, +0.0000017754,0.0000017837,0.0000017922,0.0000018009,0.0000018101, +0.0000018193,0.0000018280,0.0000018363,0.0000018443,0.0000018518, +0.0000018588,0.0000018652,0.0000018710,0.0000018764,0.0000018819, +0.0000018876,0.0000018933,0.0000018989,0.0000019046,0.0000019105, +0.0000019165,0.0000019221,0.0000019270,0.0000019309,0.0000019341, +0.0000019365,0.0000019381,0.0000019390,0.0000019396,0.0000019401, +0.0000019404,0.0000019404,0.0000019400,0.0000019394,0.0000019387, +0.0000019382,0.0000019379,0.0000019384,0.0000019394,0.0000019404, +0.0000019412,0.0000019422,0.0000019436,0.0000019454,0.0000019474, +0.0000019499,0.0000019527,0.0000019549,0.0000019564,0.0000019573, +0.0000019579,0.0000019586,0.0000019595,0.0000019606,0.0000019612, +0.0000019615,0.0000019616,0.0000019610,0.0000019597,0.0000019574, +0.0000019542,0.0000019507,0.0000019473,0.0000019444,0.0000019420, +0.0000019413,0.0000019426,0.0000019453,0.0000019478,0.0000019494, +0.0000019504,0.0000019513,0.0000019523,0.0000019537,0.0000019553, +0.0000019568,0.0000019583,0.0000019593,0.0000019596,0.0000019597, +0.0000019601,0.0000019606,0.0000019610,0.0000019613,0.0000019615, +0.0000019621,0.0000019624,0.0000019627,0.0000019631,0.0000019637, +0.0000019642,0.0000019648,0.0000019661,0.0000019673,0.0000019683, +0.0000019697,0.0000019714,0.0000019730,0.0000019741,0.0000019750, +0.0000019759,0.0000019764,0.0000019766,0.0000019765,0.0000019764, +0.0000019764,0.0000019764,0.0000019771,0.0000019781,0.0000019787, +0.0000019787,0.0000019786,0.0000019785,0.0000019776,0.0000019759, +0.0000019745,0.0000019733,0.0000019712,0.0000019693,0.0000019683, +0.0000019673,0.0000019663,0.0000019656,0.0000019661,0.0000019672, +0.0000019675,0.0000019665,0.0000019644,0.0000019625,0.0000019614, +0.0000019602,0.0000019584,0.0000019567,0.0000019554,0.0000019546, +0.0000019539,0.0000019535,0.0000019536,0.0000019541,0.0000019544, +0.0000019541,0.0000019529,0.0000019509,0.0000019478,0.0000019437, +0.0000019403,0.0000019378,0.0000019364,0.0000019362,0.0000019360, +0.0000019354,0.0000019346,0.0000019340,0.0000019333,0.0000019320, +0.0000019305,0.0000019292,0.0000019288,0.0000019285,0.0000019277, +0.0000019252,0.0000019235,0.0000019208,0.0000019185,0.0000019167, +0.0000019154,0.0000019142,0.0000019120,0.0000019106,0.0000019094, +0.0000019088,0.0000019091,0.0000019095,0.0000019092,0.0000019074, +0.0000019047,0.0000019024,0.0000019005,0.0000018981,0.0000018965, +0.0000018965,0.0000018974,0.0000018988,0.0000018994,0.0000018991, +0.0000018983,0.0000018975,0.0000018968,0.0000018972,0.0000018987, +0.0000019006,0.0000019022,0.0000019031,0.0000019028,0.0000019028, +0.0000019016,0.0000019000,0.0000018976,0.0000018954,0.0000018927, +0.0000018909,0.0000018900,0.0000018909,0.0000018919,0.0000018920, +0.0000018909,0.0000018881,0.0000018843,0.0000018810,0.0000018803, +0.0000018817,0.0000018839,0.0000018859,0.0000018876,0.0000018892, +0.0000018913,0.0000018941,0.0000018958,0.0000018981,0.0000018975, +0.0000018966,0.0000018932,0.0000018884,0.0000018829,0.0000018783, +0.0000018740,0.0000018718,0.0000018708,0.0000018712,0.0000018729, +0.0000018747,0.0000018762,0.0000018775,0.0000018775,0.0000018785, +0.0000018782,0.0000018771,0.0000018742,0.0000018697,0.0000018652, +0.0000018612,0.0000018574,0.0000018535,0.0000018487,0.0000018435, +0.0000018389,0.0000018354,0.0000018343,0.0000018312,0.0000018282, +0.0000018279,0.0000018305,0.0000018356,0.0000018422,0.0000018511, +0.0000018594,0.0000018650,0.0000018653,0.0000018611,0.0000018536, +0.0000018452,0.0000018382,0.0000018335,0.0000018309,0.0000018302, +0.0000018304,0.0000018321,0.0000018354,0.0000018401,0.0000018471, +0.0000018562,0.0000018643,0.0000018717,0.0000018775,0.0000018812, +0.0000018830,0.0000018829,0.0000018817,0.0000018797,0.0000018766, +0.0000018737,0.0000018706,0.0000018683,0.0000018675,0.0000018661, +0.0000018622,0.0000018564,0.0000018509,0.0000018467,0.0000018437, +0.0000018416,0.0000018416,0.0000018436,0.0000018467,0.0000018489, +0.0000018499,0.0000018488,0.0000018461,0.0000018424,0.0000018379, +0.0000018339,0.0000018309,0.0000018281,0.0000018248,0.0000018216, +0.0000018194,0.0000018174,0.0000018154,0.0000018152,0.0000018176, +0.0000018220,0.0000018272,0.0000018329,0.0000018384,0.0000018429, +0.0000018448,0.0000018441,0.0000018416,0.0000018382,0.0000018348, +0.0000018314,0.0000018283,0.0000018247,0.0000018207,0.0000018169, +0.0000018133,0.0000018108,0.0000018103,0.0000018108,0.0000018109, +0.0000018102,0.0000018100,0.0000018105,0.0000018110,0.0000018108, +0.0000018100,0.0000018084,0.0000018063,0.0000018041,0.0000018014, +0.0000017984,0.0000017955,0.0000017928,0.0000017906,0.0000017893, +0.0000017891,0.0000017895,0.0000017909,0.0000017931,0.0000017958, +0.0000017986,0.0000018006,0.0000018015,0.0000018014,0.0000018008, +0.0000017996,0.0000017979,0.0000017964,0.0000017955,0.0000017949, +0.0000017945,0.0000017942,0.0000017934,0.0000017919,0.0000017902, +0.0000017887,0.0000017867,0.0000017840,0.0000017810,0.0000017788, +0.0000017777,0.0000017777,0.0000017782,0.0000017791,0.0000017798, +0.0000017799,0.0000017792,0.0000017780,0.0000017770,0.0000017771, +0.0000017781,0.0000017803,0.0000017832,0.0000017863,0.0000017890, +0.0000017912,0.0000017931,0.0000017927,0.0000017913,0.0000017881, +0.0000017831,0.0000017775,0.0000017723,0.0000017699,0.0000017685, +0.0000017695,0.0000017724,0.0000017757,0.0000017786,0.0000017806, +0.0000017821,0.0000017821,0.0000017816,0.0000017796,0.0000017764, +0.0000017748,0.0000017738,0.0000017750,0.0000017779,0.0000017810, +0.0000017836,0.0000017862,0.0000017894,0.0000017927,0.0000017952, +0.0000017958,0.0000017953,0.0000017947,0.0000017943,0.0000017974, +0.0000018038,0.0000018127,0.0000018214,0.0000018272,0.0000018303, +0.0000018312,0.0000018323,0.0000018354,0.0000018397,0.0000018437, +0.0000018463,0.0000018481,0.0000018510,0.0000018575,0.0000018695, +0.0000018861,0.0000019033,0.0000019180,0.0000019235,0.0000019246, +0.0000019208,0.0000019163,0.0000019131,0.0000019114,0.0000019105, +0.0000019100,0.0000019094,0.0000019083,0.0000019065,0.0000019034, +0.0000018989,0.0000018939,0.0000018895,0.0000018863,0.0000018838, +0.0000018818,0.0000018801,0.0000018787,0.0000018773,0.0000018758, +0.0000018739,0.0000018717,0.0000018695,0.0000018673,0.0000018646, +0.0000018612,0.0000018574,0.0000018535,0.0000018500,0.0000018469, +0.0000018440,0.0000018409,0.0000018373,0.0000018334,0.0000018293, +0.0000018251,0.0000018209,0.0000018172,0.0000018146,0.0000018129, +0.0000018122,0.0000018121,0.0000018124,0.0000018128,0.0000018131, +0.0000018131,0.0000018129,0.0000018122,0.0000018113,0.0000018104, +0.0000018099,0.0000018100,0.0000018107,0.0000018116,0.0000018126, +0.0000018136,0.0000018149,0.0000018164,0.0000018181,0.0000018201, +0.0000018227,0.0000018253,0.0000018278,0.0000018300,0.0000018317, +0.0000018330,0.0000018339,0.0000018344,0.0000018343,0.0000018336, +0.0000018325,0.0000018310,0.0000018294,0.0000018279,0.0000018269, +0.0000018265,0.0000018269,0.0000018280,0.0000018295,0.0000018313, +0.0000018333,0.0000018350,0.0000018363,0.0000018372,0.0000018383, +0.0000018398,0.0000018413,0.0000018429,0.0000018447,0.0000018476, +0.0000018521,0.0000018578,0.0000018637,0.0000018694,0.0000018731, +0.0000018730,0.0000018682,0.0000018642,0.0000018639,0.0000018628, +0.0000018582,0.0000018476,0.0000018393,0.0000018470,0.0000018708, +0.0000018840,0.0000018819,0.0000018778,0.0000018713,0.0000018703, +0.0000018688,0.0000018691,0.0000018730,0.0000018704,0.0000018269, +0.0000017722,0.0000017580,0.0000017700,0.0000017715,0.0000017622, +0.0000017573,0.0000017594,0.0000017613,0.0000017610,0.0000017617, +0.0000017623,0.0000017630,0.0000017649,0.0000017675,0.0000017698, +0.0000017707,0.0000017707,0.0000017699,0.0000017689,0.0000017682, +0.0000017680,0.0000017682,0.0000017686,0.0000017685,0.0000017677, +0.0000017667,0.0000017652,0.0000017624,0.0000017584,0.0000017541, +0.0000017511,0.0000017474,0.0000017400,0.0000017312,0.0000017253, +0.0000017272,0.0000017311,0.0000017360,0.0000017455,0.0000017533, +0.0000017585,0.0000017601,0.0000017568,0.0000017536,0.0000017554, +0.0000017610,0.0000017679,0.0000017748,0.0000017810,0.0000017847, +0.0000017859,0.0000017864,0.0000017866,0.0000017872,0.0000017875, +0.0000017866,0.0000017840,0.0000017815,0.0000017805,0.0000017804, +0.0000017805,0.0000017810,0.0000017828,0.0000017865,0.0000017908, +0.0000017943,0.0000017964,0.0000017968,0.0000017963,0.0000017946, +0.0000017922,0.0000017894,0.0000017865,0.0000017841,0.0000017821, +0.0000017805,0.0000017791,0.0000017779,0.0000017767,0.0000017757, +0.0000017750,0.0000017747,0.0000017750,0.0000017761,0.0000017774, +0.0000017787,0.0000017789,0.0000017778,0.0000017759,0.0000017746, +0.0000017748,0.0000017774,0.0000017821,0.0000017871,0.0000017915, +0.0000017954,0.0000017983,0.0000017999,0.0000017999,0.0000017991, +0.0000017985,0.0000017994,0.0000018023,0.0000018057,0.0000018084, +0.0000018103,0.0000018121,0.0000018137,0.0000018142,0.0000018136, +0.0000018112,0.0000018077,0.0000018049,0.0000018035,0.0000018036, +0.0000018043,0.0000018051,0.0000018060,0.0000018074,0.0000018092, +0.0000018106,0.0000018110,0.0000018097,0.0000018069,0.0000018037, +0.0000018018,0.0000018021,0.0000018027,0.0000018057,0.0000018128, +0.0000018234,0.0000018350,0.0000018442,0.0000018501,0.0000018536, +0.0000018555,0.0000018573,0.0000018594,0.0000018612,0.0000018627, +0.0000018640,0.0000018652,0.0000018665,0.0000018677,0.0000018684, +0.0000018688,0.0000018688,0.0000018685,0.0000018676,0.0000018667, +0.0000018652,0.0000018646,0.0000018624,0.0000018592,0.0000018560, +0.0000018536,0.0000018522,0.0000018513,0.0000018507,0.0000018502, +0.0000018496,0.0000018488,0.0000018477,0.0000018463,0.0000018452, +0.0000018446,0.0000018447,0.0000018450,0.0000018454,0.0000018458, +0.0000018463,0.0000018472,0.0000018480,0.0000018484,0.0000018483, +0.0000018480,0.0000018477,0.0000018474,0.0000018472,0.0000018471, +0.0000018470,0.0000018473,0.0000018480,0.0000018491,0.0000018506, +0.0000018529,0.0000018564,0.0000018609,0.0000018658,0.0000018706, +0.0000018741,0.0000018761,0.0000018765,0.0000018768,0.0000018766, +0.0000018761,0.0000018751,0.0000018738,0.0000018722,0.0000018700, +0.0000018670,0.0000018629,0.0000018578,0.0000018519,0.0000018454, +0.0000018391,0.0000018333,0.0000018279,0.0000018233,0.0000018204, +0.0000018194,0.0000018191,0.0000018197,0.0000018213,0.0000018244, +0.0000018279,0.0000018315,0.0000018346,0.0000018376,0.0000018387, +0.0000018380,0.0000018357,0.0000018317,0.0000018262,0.0000018204, +0.0000018158,0.0000018135,0.0000018137,0.0000018140,0.0000018145, +0.0000018138,0.0000018112,0.0000018066,0.0000018007,0.0000017939, +0.0000017882,0.0000017851,0.0000017856,0.0000017900,0.0000017981, +0.0000018075,0.0000018149,0.0000018189,0.0000018204,0.0000018210, +0.0000018219,0.0000018233,0.0000018248,0.0000018257,0.0000018255, +0.0000018247,0.0000018230,0.0000018207,0.0000018180,0.0000018157, +0.0000018142,0.0000018130,0.0000018118,0.0000018105,0.0000018089, +0.0000018067,0.0000018043,0.0000018021,0.0000018005,0.0000017991, +0.0000017981,0.0000017968,0.0000017952,0.0000017932,0.0000017913, +0.0000017901,0.0000017898,0.0000017903,0.0000017909,0.0000017908, +0.0000017899,0.0000017884,0.0000017868,0.0000017855,0.0000017847, +0.0000017842,0.0000017835,0.0000017823,0.0000017807,0.0000017795, +0.0000017801,0.0000017826,0.0000017863,0.0000017906,0.0000017945, +0.0000017971,0.0000017990,0.0000018002,0.0000018005,0.0000018005, +0.0000017999,0.0000017984,0.0000017961,0.0000017931,0.0000017900, +0.0000017873,0.0000017852,0.0000017835,0.0000017811,0.0000017772, +0.0000017726,0.0000017689,0.0000017665,0.0000017653,0.0000017647, +0.0000017640,0.0000017627,0.0000017599,0.0000017555,0.0000017509, +0.0000017476,0.0000017458,0.0000017450,0.0000017449,0.0000017454, +0.0000017466,0.0000017482,0.0000017501,0.0000017527,0.0000017555, +0.0000017578,0.0000017595,0.0000017609,0.0000017622,0.0000017635, +0.0000017647,0.0000017656,0.0000017664,0.0000017676,0.0000017689, +0.0000017702,0.0000017711,0.0000017714,0.0000017711,0.0000017707, +0.0000017701,0.0000017690,0.0000017678,0.0000017664,0.0000017649, +0.0000017632,0.0000017615,0.0000017605,0.0000017605,0.0000017609, +0.0000017620,0.0000017636,0.0000017651,0.0000017664,0.0000017677, +0.0000017687,0.0000017693,0.0000017697,0.0000017700,0.0000017702, +0.0000017704,0.0000017706,0.0000017709,0.0000017707,0.0000017700, +0.0000017686,0.0000017665,0.0000017647,0.0000017634,0.0000017629, +0.0000017644,0.0000017661,0.0000017682,0.0000017706,0.0000017732, +0.0000017758,0.0000017782,0.0000017799,0.0000017813,0.0000017825, +0.0000017830,0.0000017826,0.0000017817,0.0000017801,0.0000017777, +0.0000017748,0.0000017715,0.0000017677,0.0000017640,0.0000017611, +0.0000017584,0.0000017554,0.0000017519,0.0000017479,0.0000017438, +0.0000017397,0.0000017362,0.0000017331,0.0000017305,0.0000017289, +0.0000017279,0.0000017284,0.0000017290,0.0000017301,0.0000017327, +0.0000017372,0.0000017434,0.0000017509,0.0000017599,0.0000017699, +0.0000017798,0.0000017874,0.0000017911,0.0000017935,0.0000017975, +0.0000018039,0.0000018083,0.0000018111,0.0000018055,0.0000017928, +0.0000017769,0.0000017613,0.0000017516,0.0000017489,0.0000017470, +0.0000017451,0.0000017426,0.0000017398,0.0000017376,0.0000017354, +0.0000017321,0.0000017277,0.0000017233,0.0000017214,0.0000017204, +0.0000017209,0.0000017222,0.0000017236,0.0000017248,0.0000017256, +0.0000017266,0.0000017283,0.0000017325,0.0000017392,0.0000017491, +0.0000017620,0.0000017762,0.0000017895,0.0000018002,0.0000018081, +0.0000018139,0.0000018187,0.0000018230,0.0000018272,0.0000018312, +0.0000018346,0.0000018376,0.0000018402,0.0000018424,0.0000018443, +0.0000018457,0.0000018466,0.0000018471,0.0000018473,0.0000018471, +0.0000018473,0.0000018473,0.0000018470,0.0000018466,0.0000018465, +0.0000018468,0.0000018473,0.0000018477,0.0000018482,0.0000018485, +0.0000018484,0.0000018477,0.0000018465,0.0000018450,0.0000018433, +0.0000018413,0.0000018391,0.0000018367,0.0000018340,0.0000018314, +0.0000018283,0.0000018242,0.0000018190,0.0000018126,0.0000018049, +0.0000017961,0.0000017863,0.0000017763,0.0000017667,0.0000017586, +0.0000017524,0.0000017477,0.0000017438,0.0000017407,0.0000017382, +0.0000017367,0.0000017368,0.0000017374,0.0000017396,0.0000017425, +0.0000017454,0.0000017471,0.0000017476,0.0000017467,0.0000017447, +0.0000017422,0.0000017396,0.0000017374,0.0000017357,0.0000017343, +0.0000017331,0.0000017321,0.0000017312,0.0000017308,0.0000017308, +0.0000017311,0.0000017317,0.0000017327,0.0000017348,0.0000017378, +0.0000017409,0.0000017436,0.0000017467,0.0000017518,0.0000017594, +0.0000017689,0.0000017777,0.0000017816,0.0000017791,0.0000017739, +0.0000017651,0.0000017567,0.0000017504,0.0000017469,0.0000017458, +0.0000017457,0.0000017457,0.0000017455,0.0000017450,0.0000017442, +0.0000017434,0.0000017431,0.0000017439,0.0000017459,0.0000017486, +0.0000017516,0.0000017543,0.0000017564,0.0000017576,0.0000017581, +0.0000017581,0.0000017582,0.0000017586,0.0000017593,0.0000017612, +0.0000017633,0.0000017653,0.0000017669,0.0000017679,0.0000017684, +0.0000017683,0.0000017679,0.0000017679,0.0000017686,0.0000017701, +0.0000017721,0.0000017737,0.0000017752,0.0000017772,0.0000017798, +0.0000017827,0.0000017862,0.0000017890,0.0000017917,0.0000017952, +0.0000017988,0.0000018019,0.0000018046,0.0000018071,0.0000018094, +0.0000018114,0.0000018130,0.0000018144,0.0000018154,0.0000018160, +0.0000018164,0.0000018165,0.0000018161,0.0000018149,0.0000018134, +0.0000018121,0.0000018110,0.0000018093,0.0000018075,0.0000018056, +0.0000018039,0.0000018019,0.0000017999,0.0000017990,0.0000017982, +0.0000017969,0.0000017964,0.0000017969,0.0000017982,0.0000017995, +0.0000018006,0.0000018015,0.0000018021,0.0000018018,0.0000018009, +0.0000017994,0.0000017977,0.0000017961,0.0000017944,0.0000017924, +0.0000017905,0.0000017886,0.0000017868,0.0000017854,0.0000017844, +0.0000017836,0.0000017830,0.0000017819,0.0000017798,0.0000017775, +0.0000017751,0.0000017721,0.0000017688,0.0000017651,0.0000017616, +0.0000017589,0.0000017566,0.0000017544,0.0000017526,0.0000017516, +0.0000017508,0.0000017502,0.0000017500,0.0000017506,0.0000017519, +0.0000017526,0.0000017530,0.0000017535,0.0000017539,0.0000017540, +0.0000017541,0.0000017543,0.0000017532,0.0000017513,0.0000017493, +0.0000017468,0.0000017434,0.0000017392,0.0000017345,0.0000017298, +0.0000017254,0.0000017220,0.0000017207,0.0000017215,0.0000017223, +0.0000017244,0.0000017278,0.0000017309,0.0000017334,0.0000017353, +0.0000017362,0.0000017361,0.0000017344,0.0000017317,0.0000017282, +0.0000017244,0.0000017217,0.0000017208,0.0000017211,0.0000017221, +0.0000017237,0.0000017260,0.0000017288,0.0000017318,0.0000017350, +0.0000017384,0.0000017419,0.0000017455,0.0000017490,0.0000017523, +0.0000017557,0.0000017596,0.0000017637,0.0000017681,0.0000017726, +0.0000017775,0.0000017832,0.0000017896,0.0000017965,0.0000018039, +0.0000018123,0.0000018220,0.0000018328,0.0000018446,0.0000018568, +0.0000018686,0.0000018799,0.0000018905,0.0000019000,0.0000019080, +0.0000019144,0.0000019194,0.0000019233,0.0000019260,0.0000019279, +0.0000019291,0.0000019301,0.0000019308,0.0000019314,0.0000019322, +0.0000019328,0.0000019329,0.0000019328,0.0000019329,0.0000019333, +0.0000019340,0.0000019347,0.0000019356,0.0000019364,0.0000019376, +0.0000019392,0.0000019411,0.0000019432,0.0000019455,0.0000019475, +0.0000019488,0.0000019496,0.0000019502,0.0000019516,0.0000019535, +0.0000019557,0.0000019575,0.0000019587,0.0000019595,0.0000019599, +0.0000019597,0.0000019585,0.0000019564,0.0000019539,0.0000019505, +0.0000019463,0.0000019415,0.0000019376,0.0000019342,0.0000019333, +0.0000019339,0.0000019347,0.0000019358,0.0000019374,0.0000019391, +0.0000019408,0.0000019424,0.0000019439,0.0000019453,0.0000019465, +0.0000019473,0.0000019482,0.0000019489,0.0000019497,0.0000019505, +0.0000019512,0.0000019516,0.0000019521,0.0000019524,0.0000019521, +0.0000019513,0.0000019502,0.0000019489,0.0000019477,0.0000019469, +0.0000019465,0.0000019465,0.0000019469,0.0000019482,0.0000019500, +0.0000019521,0.0000019545,0.0000019569,0.0000019590,0.0000019606, +0.0000019619,0.0000019629,0.0000019640,0.0000019651,0.0000019667, +0.0000019686,0.0000019706,0.0000019722,0.0000019737,0.0000019748, +0.0000019749,0.0000019740,0.0000019732,0.0000019725,0.0000019710, +0.0000019701,0.0000019703,0.0000019705,0.0000019700,0.0000019694, +0.0000019695,0.0000019700,0.0000019697,0.0000019683,0.0000019661, +0.0000019642,0.0000019629,0.0000019620,0.0000019613,0.0000019609, +0.0000019608,0.0000019605,0.0000019601,0.0000019600,0.0000019605, +0.0000019615,0.0000019628,0.0000019629,0.0000019618,0.0000019599, +0.0000019572,0.0000019535,0.0000019487,0.0000019435,0.0000019388, +0.0000019357,0.0000019350,0.0000019338,0.0000019327,0.0000019320, +0.0000019316,0.0000019306,0.0000019285,0.0000019267,0.0000019248, +0.0000019232,0.0000019216,0.0000019207,0.0000019202,0.0000019199, +0.0000019197,0.0000019193,0.0000019182,0.0000019162,0.0000019138, +0.0000019114,0.0000019089,0.0000019074,0.0000019081,0.0000019091, +0.0000019101,0.0000019098,0.0000019080,0.0000019057,0.0000019026, +0.0000018990,0.0000018956,0.0000018932,0.0000018942,0.0000018950, +0.0000018963,0.0000018975,0.0000018969,0.0000018960,0.0000018947, +0.0000018945,0.0000018934,0.0000018945,0.0000018959,0.0000018972, +0.0000018990,0.0000019003,0.0000019020,0.0000019027,0.0000019027, +0.0000019008,0.0000018973,0.0000018931,0.0000018903,0.0000018900, +0.0000018903,0.0000018911,0.0000018903,0.0000018876,0.0000018832, +0.0000018797,0.0000018779,0.0000018789,0.0000018814,0.0000018837, +0.0000018853,0.0000018856,0.0000018855,0.0000018853,0.0000018853, +0.0000018865,0.0000018886,0.0000018899,0.0000018914,0.0000018909, +0.0000018908,0.0000018881,0.0000018836,0.0000018790,0.0000018753, +0.0000018721,0.0000018716,0.0000018706,0.0000018708,0.0000018718, +0.0000018726,0.0000018750,0.0000018784,0.0000018817,0.0000018828, +0.0000018819,0.0000018794,0.0000018752,0.0000018700,0.0000018648, +0.0000018598,0.0000018554,0.0000018520,0.0000018497,0.0000018469, +0.0000018415,0.0000018336,0.0000018271,0.0000018202,0.0000018166, +0.0000018172,0.0000018224,0.0000018333,0.0000018467,0.0000018578, +0.0000018634,0.0000018642,0.0000018613,0.0000018551,0.0000018465, +0.0000018373,0.0000018317,0.0000018306,0.0000018317,0.0000018339, +0.0000018355,0.0000018381,0.0000018413,0.0000018451,0.0000018509, +0.0000018579,0.0000018652,0.0000018718,0.0000018773,0.0000018802, +0.0000018799,0.0000018779,0.0000018761,0.0000018728,0.0000018704, +0.0000018703,0.0000018705,0.0000018686,0.0000018642,0.0000018589, +0.0000018541,0.0000018489,0.0000018433,0.0000018400,0.0000018392, +0.0000018399,0.0000018422,0.0000018439,0.0000018447,0.0000018440, +0.0000018411,0.0000018369,0.0000018329,0.0000018306,0.0000018287, +0.0000018257,0.0000018225,0.0000018202,0.0000018187,0.0000018174, +0.0000018167,0.0000018172,0.0000018198,0.0000018238,0.0000018289, +0.0000018339,0.0000018383,0.0000018418,0.0000018423,0.0000018404, +0.0000018377,0.0000018349,0.0000018327,0.0000018306,0.0000018279, +0.0000018246,0.0000018212,0.0000018179,0.0000018151,0.0000018136, +0.0000018133,0.0000018129,0.0000018119,0.0000018111,0.0000018116, +0.0000018128,0.0000018135,0.0000018134,0.0000018125,0.0000018112, +0.0000018096,0.0000018074,0.0000018040,0.0000017998,0.0000017955, +0.0000017920,0.0000017899,0.0000017891,0.0000017888,0.0000017883, +0.0000017883,0.0000017890,0.0000017903,0.0000017916,0.0000017922, +0.0000017922,0.0000017916,0.0000017901,0.0000017881,0.0000017863, +0.0000017855,0.0000017852,0.0000017852,0.0000017852,0.0000017850, +0.0000017845,0.0000017841,0.0000017837,0.0000017831,0.0000017816, +0.0000017796,0.0000017775,0.0000017757,0.0000017748,0.0000017744, +0.0000017740,0.0000017734,0.0000017725,0.0000017709,0.0000017688, +0.0000017664,0.0000017642,0.0000017636,0.0000017649,0.0000017678, +0.0000017718,0.0000017764,0.0000017810,0.0000017847,0.0000017875, +0.0000017891,0.0000017881,0.0000017858,0.0000017819,0.0000017771, +0.0000017723,0.0000017688,0.0000017683,0.0000017695,0.0000017716, +0.0000017738,0.0000017758,0.0000017778,0.0000017797,0.0000017805, +0.0000017800,0.0000017778,0.0000017746,0.0000017730,0.0000017726, +0.0000017743,0.0000017770,0.0000017794,0.0000017815,0.0000017839, +0.0000017872,0.0000017909,0.0000017940,0.0000017952,0.0000017952, +0.0000017945,0.0000017937,0.0000017962,0.0000018019,0.0000018099, +0.0000018179,0.0000018233,0.0000018264,0.0000018272,0.0000018287, +0.0000018321,0.0000018370,0.0000018415,0.0000018438,0.0000018447, +0.0000018469,0.0000018528,0.0000018647,0.0000018819,0.0000019000, +0.0000019149,0.0000019219,0.0000019233,0.0000019203,0.0000019158, +0.0000019124,0.0000019112,0.0000019115,0.0000019122,0.0000019132, +0.0000019131,0.0000019116,0.0000019082,0.0000019033,0.0000018975, +0.0000018915,0.0000018867,0.0000018833,0.0000018808,0.0000018785, +0.0000018769,0.0000018762,0.0000018758,0.0000018752,0.0000018743, +0.0000018729,0.0000018708,0.0000018675,0.0000018634,0.0000018593, +0.0000018552,0.0000018513,0.0000018473,0.0000018431,0.0000018388, +0.0000018348,0.0000018312,0.0000018282,0.0000018257,0.0000018234, +0.0000018212,0.0000018191,0.0000018171,0.0000018153,0.0000018138, +0.0000018127,0.0000018119,0.0000018113,0.0000018108,0.0000018105, +0.0000018103,0.0000018106,0.0000018112,0.0000018124,0.0000018139, +0.0000018156,0.0000018171,0.0000018185,0.0000018197,0.0000018211, +0.0000018228,0.0000018248,0.0000018268,0.0000018288,0.0000018306, +0.0000018325,0.0000018346,0.0000018368,0.0000018389,0.0000018406, +0.0000018418,0.0000018425,0.0000018428,0.0000018427,0.0000018425, +0.0000018424,0.0000018423,0.0000018428,0.0000018438,0.0000018448, +0.0000018456,0.0000018458,0.0000018453,0.0000018442,0.0000018430, +0.0000018426,0.0000018432,0.0000018452,0.0000018484,0.0000018528, +0.0000018589,0.0000018656,0.0000018716,0.0000018762,0.0000018800, +0.0000018819,0.0000018795,0.0000018706,0.0000018645,0.0000018638, +0.0000018613,0.0000018529,0.0000018414,0.0000018442,0.0000018659, +0.0000018836,0.0000018820,0.0000018801,0.0000018733,0.0000018710, +0.0000018702,0.0000018682,0.0000018684,0.0000018728,0.0000018634, +0.0000018001,0.0000017606,0.0000017683,0.0000017724,0.0000017619, +0.0000017589,0.0000017652,0.0000017654,0.0000017620,0.0000017633, +0.0000017647,0.0000017640,0.0000017622,0.0000017613,0.0000017630, +0.0000017663,0.0000017696,0.0000017719,0.0000017730,0.0000017728, +0.0000017725,0.0000017730,0.0000017741,0.0000017751,0.0000017751, +0.0000017736,0.0000017700,0.0000017644,0.0000017590,0.0000017547, +0.0000017521,0.0000017490,0.0000017422,0.0000017348,0.0000017287, +0.0000017282,0.0000017313,0.0000017379,0.0000017483,0.0000017556, +0.0000017601,0.0000017587,0.0000017537,0.0000017537,0.0000017594, +0.0000017669,0.0000017744,0.0000017803,0.0000017827,0.0000017832, +0.0000017830,0.0000017837,0.0000017853,0.0000017867,0.0000017870, +0.0000017850,0.0000017818,0.0000017800,0.0000017799,0.0000017802, +0.0000017803,0.0000017815,0.0000017857,0.0000017920,0.0000017979, +0.0000018015,0.0000018030,0.0000018034,0.0000018034,0.0000018028, +0.0000018015,0.0000017995,0.0000017968,0.0000017936,0.0000017903, +0.0000017872,0.0000017847,0.0000017827,0.0000017810,0.0000017794, +0.0000017780,0.0000017768,0.0000017761,0.0000017762,0.0000017769, +0.0000017783,0.0000017796,0.0000017798,0.0000017788,0.0000017766, +0.0000017746,0.0000017736,0.0000017743,0.0000017769,0.0000017804, +0.0000017840,0.0000017875,0.0000017902,0.0000017918,0.0000017925, +0.0000017929,0.0000017938,0.0000017966,0.0000018010,0.0000018049, +0.0000018074,0.0000018094,0.0000018114,0.0000018133,0.0000018143, +0.0000018142,0.0000018131,0.0000018110,0.0000018087,0.0000018076, +0.0000018074,0.0000018071,0.0000018071,0.0000018074,0.0000018080, +0.0000018096,0.0000018116,0.0000018133,0.0000018139,0.0000018123, +0.0000018101,0.0000018085,0.0000018069,0.0000018053,0.0000018055, +0.0000018079,0.0000018149,0.0000018256,0.0000018366,0.0000018449, +0.0000018499,0.0000018533,0.0000018561,0.0000018584,0.0000018605, +0.0000018622,0.0000018636,0.0000018643,0.0000018645,0.0000018642, +0.0000018636,0.0000018632,0.0000018638,0.0000018645,0.0000018649, +0.0000018548,0.0000018517,0.0000018491,0.0000018476,0.0000018474, +0.0000018474,0.0000018472,0.0000018466,0.0000018460,0.0000018454, +0.0000018447,0.0000018438,0.0000018429,0.0000018419,0.0000018413, +0.0000018412,0.0000018414,0.0000018418,0.0000018425,0.0000018432, +0.0000018437,0.0000018441,0.0000018445,0.0000018447,0.0000018446, +0.0000018442,0.0000018437,0.0000018431,0.0000018427,0.0000018424, +0.0000018422,0.0000018423,0.0000018427,0.0000018434,0.0000018442, +0.0000018454,0.0000018474,0.0000018505,0.0000018548,0.0000018598, +0.0000018649,0.0000018693,0.0000018727,0.0000018750,0.0000018761, +0.0000018762,0.0000018755,0.0000018746,0.0000018740,0.0000018734, +0.0000018724,0.0000018706,0.0000018678,0.0000018643,0.0000018602, +0.0000018549,0.0000018491,0.0000018428,0.0000018360,0.0000018295, +0.0000018244,0.0000018212,0.0000018192,0.0000018204,0.0000018220, +0.0000018254,0.0000018294,0.0000018338,0.0000018384,0.0000018418, +0.0000018443,0.0000018447,0.0000018427,0.0000018384,0.0000018318, +0.0000018242,0.0000018179,0.0000018142,0.0000018136,0.0000018140, +0.0000018147,0.0000018147,0.0000018130,0.0000018092,0.0000018033, +0.0000017973,0.0000017925,0.0000017891,0.0000017891,0.0000017910, +0.0000017972,0.0000018054,0.0000018125,0.0000018171,0.0000018195, +0.0000018207,0.0000018217,0.0000018229,0.0000018240,0.0000018247, +0.0000018244,0.0000018238,0.0000018227,0.0000018211,0.0000018194, +0.0000018182,0.0000018177,0.0000018175,0.0000018174,0.0000018168, +0.0000018154,0.0000018131,0.0000018105,0.0000018082,0.0000018064, +0.0000018056,0.0000018052,0.0000018047,0.0000018035,0.0000018014, +0.0000017985,0.0000017956,0.0000017934,0.0000017924,0.0000017921, +0.0000017919,0.0000017912,0.0000017899,0.0000017879,0.0000017859, +0.0000017846,0.0000017840,0.0000017836,0.0000017830,0.0000017819, +0.0000017810,0.0000017806,0.0000017810,0.0000017826,0.0000017855, +0.0000017891,0.0000017931,0.0000017964,0.0000017986,0.0000017998, +0.0000018002,0.0000017993,0.0000017977,0.0000017950,0.0000017913, +0.0000017874,0.0000017835,0.0000017798,0.0000017761,0.0000017725, +0.0000017692,0.0000017672,0.0000017659,0.0000017653,0.0000017648, +0.0000017638,0.0000017616,0.0000017582,0.0000017540,0.0000017503, +0.0000017482,0.0000017479,0.0000017486,0.0000017503,0.0000017521, +0.0000017539,0.0000017556,0.0000017575,0.0000017600,0.0000017630, +0.0000017658,0.0000017677,0.0000017690,0.0000017696,0.0000017698, +0.0000017695,0.0000017688,0.0000017680,0.0000017672,0.0000017664, +0.0000017660,0.0000017662,0.0000017671,0.0000017686,0.0000017697, +0.0000017698,0.0000017694,0.0000017689,0.0000017679,0.0000017667, +0.0000017654,0.0000017638,0.0000017625,0.0000017615,0.0000017612, +0.0000017617,0.0000017628,0.0000017640,0.0000017652,0.0000017665, +0.0000017676,0.0000017683,0.0000017688,0.0000017693,0.0000017696, +0.0000017700,0.0000017706,0.0000017709,0.0000017705,0.0000017693, +0.0000017673,0.0000017651,0.0000017632,0.0000017621,0.0000017627, +0.0000017640,0.0000017660,0.0000017684,0.0000017713,0.0000017748, +0.0000017778,0.0000017803,0.0000017831,0.0000017846,0.0000017863, +0.0000017872,0.0000017874,0.0000017867,0.0000017855,0.0000017834, +0.0000017806,0.0000017768,0.0000017727,0.0000017688,0.0000017652, +0.0000017617,0.0000017580,0.0000017543,0.0000017509,0.0000017476, +0.0000017448,0.0000017423,0.0000017398,0.0000017374,0.0000017354, +0.0000017340,0.0000017329,0.0000017317,0.0000017303,0.0000017294, +0.0000017303,0.0000017335,0.0000017390,0.0000017461,0.0000017544, +0.0000017632,0.0000017729,0.0000017820,0.0000017878,0.0000017907, +0.0000017938,0.0000017986,0.0000018042,0.0000018069,0.0000018048, +0.0000017955,0.0000017810,0.0000017652,0.0000017512,0.0000017454, +0.0000017429,0.0000017410,0.0000017399,0.0000017385,0.0000017366, +0.0000017341,0.0000017309,0.0000017277,0.0000017244,0.0000017220, +0.0000017219,0.0000017226,0.0000017238,0.0000017252,0.0000017265, +0.0000017275,0.0000017282,0.0000017290,0.0000017301,0.0000017328, +0.0000017374,0.0000017439,0.0000017528,0.0000017637,0.0000017750, +0.0000017854,0.0000017938,0.0000018002,0.0000018053,0.0000018094, +0.0000018126,0.0000018153,0.0000018176,0.0000018195,0.0000018209, +0.0000018220,0.0000018230,0.0000018237,0.0000018243,0.0000018251, +0.0000018255,0.0000018253,0.0000018249,0.0000018247,0.0000018247, +0.0000018247,0.0000018246,0.0000018244,0.0000018244,0.0000018241, +0.0000018233,0.0000018223,0.0000018212,0.0000018197,0.0000018179, +0.0000018154,0.0000018122,0.0000018085,0.0000018040,0.0000017984, +0.0000017918,0.0000017842,0.0000017763,0.0000017684,0.0000017611, +0.0000017549,0.0000017498,0.0000017458,0.0000017430,0.0000017411, +0.0000017390,0.0000017372,0.0000017355,0.0000017352,0.0000017361, +0.0000017393,0.0000017430,0.0000017463,0.0000017484,0.0000017492, +0.0000017483,0.0000017469,0.0000017447,0.0000017419,0.0000017389, +0.0000017364,0.0000017348,0.0000017337,0.0000017328,0.0000017318, +0.0000017307,0.0000017297,0.0000017295,0.0000017302,0.0000017313, +0.0000017334,0.0000017366,0.0000017403,0.0000017441,0.0000017485, +0.0000017544,0.0000017626,0.0000017723,0.0000017803,0.0000017838, +0.0000017822,0.0000017766,0.0000017677,0.0000017594,0.0000017536, +0.0000017505,0.0000017492,0.0000017492,0.0000017497,0.0000017497, +0.0000017491,0.0000017480,0.0000017473,0.0000017474,0.0000017485, +0.0000017505,0.0000017531,0.0000017555,0.0000017571,0.0000017580, +0.0000017584,0.0000017585,0.0000017588,0.0000017600,0.0000017620, +0.0000017642,0.0000017670,0.0000017699,0.0000017722,0.0000017735, +0.0000017740,0.0000017736,0.0000017725,0.0000017715,0.0000017711, +0.0000017715,0.0000017728,0.0000017753,0.0000017785,0.0000017819, +0.0000017856,0.0000017897,0.0000017941,0.0000017986,0.0000018031, +0.0000018073,0.0000018114,0.0000018151,0.0000018184,0.0000018213, +0.0000018242,0.0000018268,0.0000018285,0.0000018300,0.0000018314, +0.0000018327,0.0000018340,0.0000018350,0.0000018359,0.0000018365, +0.0000018367,0.0000018365,0.0000018358,0.0000018346,0.0000018332, +0.0000018316,0.0000018291,0.0000018266,0.0000018241,0.0000018217, +0.0000018188,0.0000018158,0.0000018133,0.0000018107,0.0000018078, +0.0000018055,0.0000018041,0.0000018038,0.0000018042,0.0000018053, +0.0000018064,0.0000018080,0.0000018094,0.0000018103,0.0000018102, +0.0000018094,0.0000018080,0.0000018061,0.0000018035,0.0000018006, +0.0000017975,0.0000017946,0.0000017920,0.0000017895,0.0000017876, +0.0000017867,0.0000017860,0.0000017850,0.0000017841,0.0000017833, +0.0000017818,0.0000017797,0.0000017769,0.0000017743,0.0000017721, +0.0000017700,0.0000017674,0.0000017648,0.0000017626,0.0000017605, +0.0000017583,0.0000017561,0.0000017548,0.0000017539,0.0000017529, +0.0000017523,0.0000017523,0.0000017525,0.0000017528,0.0000017538, +0.0000017550,0.0000017553,0.0000017546,0.0000017543,0.0000017525, +0.0000017498,0.0000017461,0.0000017415,0.0000017365,0.0000017316, +0.0000017269,0.0000017238,0.0000017223,0.0000017222,0.0000017236, +0.0000017254,0.0000017274,0.0000017294,0.0000017313,0.0000017327, +0.0000017334,0.0000017332,0.0000017318,0.0000017295,0.0000017264, +0.0000017233,0.0000017214,0.0000017209,0.0000017212,0.0000017224, +0.0000017241,0.0000017261,0.0000017282,0.0000017303,0.0000017323, +0.0000017346,0.0000017371,0.0000017396,0.0000017418,0.0000017434, +0.0000017447,0.0000017461,0.0000017476,0.0000017490,0.0000017498, +0.0000017506,0.0000017518,0.0000017530,0.0000017548,0.0000017583, +0.0000017635,0.0000017708,0.0000017805,0.0000017922,0.0000018058, +0.0000018209,0.0000018371,0.0000018537,0.0000018696,0.0000018837, +0.0000018956,0.0000019052,0.0000019122,0.0000019168,0.0000019194, +0.0000019207,0.0000019212,0.0000019215,0.0000019217,0.0000019220, +0.0000019224,0.0000019230,0.0000019240,0.0000019256,0.0000019273, +0.0000019289,0.0000019301,0.0000019314,0.0000019328,0.0000019345, +0.0000019367,0.0000019394,0.0000019420,0.0000019437,0.0000019447, +0.0000019454,0.0000019460,0.0000019474,0.0000019496,0.0000019526, +0.0000019550,0.0000019569,0.0000019587,0.0000019595,0.0000019592, +0.0000019581,0.0000019566,0.0000019546,0.0000019519,0.0000019485, +0.0000019445,0.0000019403,0.0000019367,0.0000019339,0.0000019323, +0.0000019302,0.0000019287,0.0000019278,0.0000019275,0.0000019279, +0.0000019291,0.0000019308,0.0000019325,0.0000019339,0.0000019352, +0.0000019362,0.0000019373,0.0000019383,0.0000019392,0.0000019402, +0.0000019413,0.0000019422,0.0000019425,0.0000019424,0.0000019415, +0.0000019397,0.0000019379,0.0000019363,0.0000019348,0.0000019334, +0.0000019322,0.0000019313,0.0000019313,0.0000019317,0.0000019322, +0.0000019330,0.0000019342,0.0000019349,0.0000019352,0.0000019350, +0.0000019346,0.0000019347,0.0000019356,0.0000019375,0.0000019403, +0.0000019438,0.0000019480,0.0000019521,0.0000019555,0.0000019578, +0.0000019599,0.0000019619,0.0000019629,0.0000019640,0.0000019659, +0.0000019676,0.0000019685,0.0000019690,0.0000019697,0.0000019703, +0.0000019699,0.0000019683,0.0000019665,0.0000019650,0.0000019636, +0.0000019619,0.0000019602,0.0000019592,0.0000019589,0.0000019588, +0.0000019591,0.0000019602,0.0000019617,0.0000019644,0.0000019673, +0.0000019690,0.0000019696,0.0000019696,0.0000019693,0.0000019683, +0.0000019658,0.0000019620,0.0000019571,0.0000019516,0.0000019457, +0.0000019401,0.0000019360,0.0000019341,0.0000019337,0.0000019332, +0.0000019320,0.0000019303,0.0000019285,0.0000019260,0.0000019227, +0.0000019197,0.0000019187,0.0000019189,0.0000019198,0.0000019213, +0.0000019228,0.0000019231,0.0000019219,0.0000019200,0.0000019174, +0.0000019149,0.0000019139,0.0000019147,0.0000019165,0.0000019180, +0.0000019181,0.0000019168,0.0000019146,0.0000019117,0.0000019080, +0.0000019040,0.0000019015,0.0000019009,0.0000019012,0.0000019019, +0.0000019022,0.0000019019,0.0000019009,0.0000018993,0.0000018978, +0.0000018969,0.0000018961,0.0000018959,0.0000018966,0.0000018968, +0.0000018984,0.0000019011,0.0000019030,0.0000019035,0.0000019020, +0.0000018987,0.0000018944,0.0000018914,0.0000018904,0.0000018908, +0.0000018907,0.0000018893,0.0000018855,0.0000018815,0.0000018784, +0.0000018781,0.0000018779,0.0000018791,0.0000018812,0.0000018828, +0.0000018835,0.0000018829,0.0000018816,0.0000018805,0.0000018798, +0.0000018796,0.0000018807,0.0000018825,0.0000018842,0.0000018860, +0.0000018856,0.0000018869,0.0000018857,0.0000018826,0.0000018789, +0.0000018745,0.0000018709,0.0000018706,0.0000018701,0.0000018711, +0.0000018738,0.0000018769,0.0000018798,0.0000018824,0.0000018840, +0.0000018840,0.0000018825,0.0000018796,0.0000018751,0.0000018695, +0.0000018645,0.0000018610,0.0000018581,0.0000018541,0.0000018482, +0.0000018409,0.0000018331,0.0000018260,0.0000018200,0.0000018185, +0.0000018200,0.0000018244,0.0000018298,0.0000018360,0.0000018431, +0.0000018502,0.0000018544,0.0000018548,0.0000018523,0.0000018474, +0.0000018424,0.0000018385,0.0000018369,0.0000018379,0.0000018406, +0.0000018430,0.0000018443,0.0000018444,0.0000018443,0.0000018451, +0.0000018507,0.0000018592,0.0000018661,0.0000018708,0.0000018744, +0.0000018757,0.0000018743,0.0000018736,0.0000018735,0.0000018736, +0.0000018729,0.0000018703,0.0000018662,0.0000018621,0.0000018565, +0.0000018495,0.0000018431,0.0000018376,0.0000018347,0.0000018343, +0.0000018356,0.0000018374,0.0000018385,0.0000018378,0.0000018350, +0.0000018320,0.0000018303,0.0000018290,0.0000018271,0.0000018246, +0.0000018223,0.0000018209,0.0000018197,0.0000018182,0.0000018174, +0.0000018174,0.0000018197,0.0000018239,0.0000018285,0.0000018329, +0.0000018366,0.0000018386,0.0000018388,0.0000018374,0.0000018357, +0.0000018341,0.0000018325,0.0000018303,0.0000018279,0.0000018255, +0.0000018227,0.0000018198,0.0000018178,0.0000018171,0.0000018169, +0.0000018165,0.0000018158,0.0000018157,0.0000018162,0.0000018171, +0.0000018179,0.0000018181,0.0000018175,0.0000018162,0.0000018142, +0.0000018110,0.0000018060,0.0000018005,0.0000017954,0.0000017917, +0.0000017890,0.0000017864,0.0000017831,0.0000017795,0.0000017770, +0.0000017761,0.0000017763,0.0000017772,0.0000017785,0.0000017797, +0.0000017801,0.0000017797,0.0000017787,0.0000017779,0.0000017774, +0.0000017770,0.0000017770,0.0000017775,0.0000017781,0.0000017781, +0.0000017778,0.0000017773,0.0000017764,0.0000017747,0.0000017728, +0.0000017710,0.0000017699,0.0000017691,0.0000017680,0.0000017665, +0.0000017647,0.0000017628,0.0000017608,0.0000017586,0.0000017563, +0.0000017544,0.0000017537,0.0000017544,0.0000017567,0.0000017606, +0.0000017657,0.0000017715,0.0000017773,0.0000017815,0.0000017840, +0.0000017838,0.0000017836,0.0000017815,0.0000017781,0.0000017747, +0.0000017719,0.0000017703,0.0000017688,0.0000017685,0.0000017693, +0.0000017711,0.0000017736,0.0000017760,0.0000017776,0.0000017771, +0.0000017755,0.0000017732,0.0000017718,0.0000017723,0.0000017740, +0.0000017761,0.0000017780,0.0000017798,0.0000017819,0.0000017849, +0.0000017892,0.0000017929,0.0000017947,0.0000017947,0.0000017938, +0.0000017929,0.0000017945,0.0000017994,0.0000018065,0.0000018138, +0.0000018189,0.0000018225,0.0000018243,0.0000018265,0.0000018306, +0.0000018354,0.0000018391,0.0000018408,0.0000018412,0.0000018429, +0.0000018487,0.0000018606,0.0000018778,0.0000018962,0.0000019110, +0.0000019207,0.0000019207,0.0000019196,0.0000019153,0.0000019121, +0.0000019116,0.0000019125,0.0000019144,0.0000019161,0.0000019174, +0.0000019168,0.0000019139,0.0000019087,0.0000019018,0.0000018945, +0.0000018879,0.0000018827,0.0000018791,0.0000018770,0.0000018761, +0.0000018762,0.0000018768,0.0000018771,0.0000018768,0.0000018753, +0.0000018730,0.0000018701,0.0000018666,0.0000018625,0.0000018581, +0.0000018536,0.0000018488,0.0000018443,0.0000018402,0.0000018364, +0.0000018332,0.0000018306,0.0000018283,0.0000018261,0.0000018241, +0.0000018221,0.0000018198,0.0000018174,0.0000018151,0.0000018129, +0.0000018112,0.0000018102,0.0000018100,0.0000018102,0.0000018109, +0.0000018122,0.0000018139,0.0000018158,0.0000018173,0.0000018185, +0.0000018193,0.0000018206,0.0000018225,0.0000018246,0.0000018275, +0.0000018308,0.0000018344,0.0000018383,0.0000018422,0.0000018459, +0.0000018493,0.0000018520,0.0000018539,0.0000018552,0.0000018558, +0.0000018559,0.0000018558,0.0000018554,0.0000018547,0.0000018543, +0.0000018544,0.0000018546,0.0000018545,0.0000018540,0.0000018532, +0.0000018528,0.0000018531,0.0000018548,0.0000018573,0.0000018606, +0.0000018642,0.0000018680,0.0000018721,0.0000018755,0.0000018778, +0.0000018803,0.0000018832,0.0000018849,0.0000018802,0.0000018690, +0.0000018638,0.0000018626,0.0000018571,0.0000018457,0.0000018441, +0.0000018612,0.0000018821,0.0000018828,0.0000018808,0.0000018766, +0.0000018720,0.0000018715,0.0000018704,0.0000018686,0.0000018696, +0.0000018732,0.0000018458,0.0000017766,0.0000017644,0.0000017740, +0.0000017648,0.0000017599,0.0000017696,0.0000017690,0.0000017606, +0.0000017590,0.0000017618,0.0000017640,0.0000017631,0.0000017603, +0.0000017576,0.0000017574,0.0000017603,0.0000017648,0.0000017697, +0.0000017735,0.0000017760,0.0000017778,0.0000017788,0.0000017796, +0.0000017794,0.0000017768,0.0000017719,0.0000017657,0.0000017602, +0.0000017561,0.0000017532,0.0000017494,0.0000017431,0.0000017376, +0.0000017318,0.0000017302,0.0000017324,0.0000017404,0.0000017511, +0.0000017581,0.0000017601,0.0000017563,0.0000017531,0.0000017568, +0.0000017651,0.0000017738,0.0000017796,0.0000017808,0.0000017801, +0.0000017793,0.0000017803,0.0000017825,0.0000017848,0.0000017861, +0.0000017857,0.0000017832,0.0000017799,0.0000017785,0.0000017788, +0.0000017796,0.0000017800,0.0000017811,0.0000017850,0.0000017914, +0.0000017978,0.0000018018,0.0000018034,0.0000018038,0.0000018038, +0.0000018039,0.0000018035,0.0000018032,0.0000018028,0.0000018018, +0.0000017999,0.0000017971,0.0000017938,0.0000017906,0.0000017879, +0.0000017856,0.0000017834,0.0000017813,0.0000017794,0.0000017778, +0.0000017770,0.0000017772,0.0000017780,0.0000017790,0.0000017796, +0.0000017792,0.0000017778,0.0000017760,0.0000017746,0.0000017743, +0.0000017754,0.0000017774,0.0000017799,0.0000017828,0.0000017851, +0.0000017867,0.0000017879,0.0000017894,0.0000017922,0.0000017963, +0.0000018007,0.0000018044,0.0000018074,0.0000018096,0.0000018111, +0.0000018127,0.0000018139,0.0000018146,0.0000018147,0.0000018134, +0.0000018115,0.0000018102,0.0000018093,0.0000018091,0.0000018090, +0.0000018089,0.0000018092,0.0000018099,0.0000018116,0.0000018137, +0.0000018146,0.0000018154,0.0000018150,0.0000018141,0.0000018127, +0.0000018101,0.0000018078,0.0000018069,0.0000018098,0.0000018178, +0.0000018285,0.0000018377,0.0000018441,0.0000018482,0.0000018509, +0.0000018531,0.0000018551,0.0000018569,0.0000018581,0.0000018590, +0.0000018596,0.0000018604,0.0000018612,0.0000018617,0.0000018609, +0.0000018582,0.0000018421,0.0000018422,0.0000018427,0.0000018427, +0.0000018426,0.0000018422,0.0000018417,0.0000018415,0.0000018418, +0.0000018423,0.0000018423,0.0000018419,0.0000018413,0.0000018408, +0.0000018404,0.0000018402,0.0000018401,0.0000018400,0.0000018402, +0.0000018407,0.0000018412,0.0000018416,0.0000018418,0.0000018418, +0.0000018416,0.0000018411,0.0000018402,0.0000018392,0.0000018382, +0.0000018374,0.0000018369,0.0000018368,0.0000018371,0.0000018378, +0.0000018387,0.0000018399,0.0000018414,0.0000018436,0.0000018465, +0.0000018501,0.0000018544,0.0000018589,0.0000018635,0.0000018675, +0.0000018705,0.0000018722,0.0000018729,0.0000018730,0.0000018726, +0.0000018722,0.0000018718,0.0000018712,0.0000018697,0.0000018688, +0.0000018675,0.0000018654,0.0000018626,0.0000018587,0.0000018532, +0.0000018465,0.0000018395,0.0000018330,0.0000018274,0.0000018241, +0.0000018227,0.0000018247,0.0000018272,0.0000018309,0.0000018352, +0.0000018400,0.0000018443,0.0000018472,0.0000018489,0.0000018481, +0.0000018443,0.0000018378,0.0000018294,0.0000018211,0.0000018154, +0.0000018138,0.0000018142,0.0000018150,0.0000018163,0.0000018157, +0.0000018121,0.0000018067,0.0000018013,0.0000017967,0.0000017931, +0.0000017912,0.0000017925,0.0000017966,0.0000018027,0.0000018091, +0.0000018142,0.0000018175,0.0000018193,0.0000018206,0.0000018218, +0.0000018229,0.0000018235,0.0000018236,0.0000018234,0.0000018227, +0.0000018213,0.0000018201,0.0000018196,0.0000018200,0.0000018209, +0.0000018217,0.0000018216,0.0000018208,0.0000018192,0.0000018171, +0.0000018149,0.0000018132,0.0000018125,0.0000018127,0.0000018131, +0.0000018127,0.0000018107,0.0000018070,0.0000018024,0.0000017982, +0.0000017951,0.0000017934,0.0000017923,0.0000017914,0.0000017902, +0.0000017886,0.0000017865,0.0000017847,0.0000017837,0.0000017834, +0.0000017834,0.0000017834,0.0000017833,0.0000017828,0.0000017825, +0.0000017828,0.0000017841,0.0000017863,0.0000017890,0.0000017917, +0.0000017940,0.0000017957,0.0000017963,0.0000017959,0.0000017940, +0.0000017906,0.0000017865,0.0000017821,0.0000017781,0.0000017746, +0.0000017717,0.0000017700,0.0000017691,0.0000017689,0.0000017686, +0.0000017675,0.0000017655,0.0000017626,0.0000017590,0.0000017556, +0.0000017531,0.0000017521,0.0000017526,0.0000017545,0.0000017570, +0.0000017594,0.0000017614,0.0000017628,0.0000017642,0.0000017662, +0.0000017690,0.0000017720,0.0000017744,0.0000017762,0.0000017773, +0.0000017778,0.0000017778,0.0000017770,0.0000017753,0.0000017729, +0.0000017700,0.0000017670,0.0000017650,0.0000017640,0.0000017641, +0.0000017653,0.0000017668,0.0000017682,0.0000017686,0.0000017683, +0.0000017676,0.0000017664,0.0000017651,0.0000017638,0.0000017624, +0.0000017615,0.0000017615,0.0000017619,0.0000017624,0.0000017633, +0.0000017642,0.0000017651,0.0000017661,0.0000017671,0.0000017681, +0.0000017691,0.0000017704,0.0000017711,0.0000017715,0.0000017711, +0.0000017696,0.0000017672,0.0000017648,0.0000017627,0.0000017615, +0.0000017613,0.0000017612,0.0000017622,0.0000017638,0.0000017664, +0.0000017691,0.0000017715,0.0000017744,0.0000017771,0.0000017794, +0.0000017813,0.0000017828,0.0000017843,0.0000017855,0.0000017855, +0.0000017855,0.0000017844,0.0000017822,0.0000017800,0.0000017772, +0.0000017737,0.0000017694,0.0000017648,0.0000017603,0.0000017559, +0.0000017518,0.0000017480,0.0000017449,0.0000017424,0.0000017406, +0.0000017395,0.0000017389,0.0000017386,0.0000017379,0.0000017363, +0.0000017337,0.0000017313,0.0000017306,0.0000017318,0.0000017355, +0.0000017410,0.0000017484,0.0000017568,0.0000017655,0.0000017742, +0.0000017821,0.0000017874,0.0000017903,0.0000017929,0.0000017970, +0.0000017998,0.0000018021,0.0000017970,0.0000017853,0.0000017706, +0.0000017555,0.0000017433,0.0000017401,0.0000017394,0.0000017393, +0.0000017382,0.0000017356,0.0000017332,0.0000017312,0.0000017291, +0.0000017270,0.0000017253,0.0000017245,0.0000017251,0.0000017259, +0.0000017270,0.0000017282,0.0000017289,0.0000017294,0.0000017296, +0.0000017298,0.0000017300,0.0000017307,0.0000017325,0.0000017354, +0.0000017395,0.0000017451,0.0000017518,0.0000017590,0.0000017663, +0.0000017731,0.0000017791,0.0000017844,0.0000017887,0.0000017919, +0.0000017943,0.0000017961,0.0000017977,0.0000017990,0.0000018007, +0.0000018018,0.0000018024,0.0000018025,0.0000018023,0.0000018022, +0.0000018021,0.0000018016,0.0000018008,0.0000017998,0.0000017987, +0.0000017972,0.0000017953,0.0000017930,0.0000017902,0.0000017868, +0.0000017829,0.0000017785,0.0000017740,0.0000017690,0.0000017637, +0.0000017586,0.0000017542,0.0000017505,0.0000017476,0.0000017454, +0.0000017437,0.0000017419,0.0000017395,0.0000017375,0.0000017357, +0.0000017349,0.0000017350,0.0000017364,0.0000017389,0.0000017427, +0.0000017464,0.0000017489,0.0000017496,0.0000017496,0.0000017485, +0.0000017466,0.0000017442,0.0000017417,0.0000017392,0.0000017369, +0.0000017349,0.0000017335,0.0000017324,0.0000017314,0.0000017302, +0.0000017293,0.0000017292,0.0000017299,0.0000017319,0.0000017347, +0.0000017385,0.0000017429,0.0000017482,0.0000017548,0.0000017635, +0.0000017730,0.0000017809,0.0000017852,0.0000017839,0.0000017770, +0.0000017689,0.0000017617,0.0000017569,0.0000017544,0.0000017530, +0.0000017524,0.0000017523,0.0000017521,0.0000017518,0.0000017518, +0.0000017519,0.0000017525,0.0000017541,0.0000017563,0.0000017583, +0.0000017594,0.0000017598,0.0000017596,0.0000017594,0.0000017598, +0.0000017612,0.0000017637,0.0000017672,0.0000017709,0.0000017740, +0.0000017761,0.0000017772,0.0000017777,0.0000017779,0.0000017784, +0.0000017794,0.0000017808,0.0000017824,0.0000017848,0.0000017880, +0.0000017912,0.0000017946,0.0000017979,0.0000018012,0.0000018040, +0.0000018065,0.0000018091,0.0000018123,0.0000018148,0.0000018178, +0.0000018196,0.0000018222,0.0000018238,0.0000018248,0.0000018265, +0.0000018283,0.0000018294,0.0000018300,0.0000018308,0.0000018317, +0.0000018329,0.0000018342,0.0000018358,0.0000018373,0.0000018387, +0.0000018399,0.0000018409,0.0000018418,0.0000018412,0.0000018416, +0.0000018418,0.0000018409,0.0000018400,0.0000018389,0.0000018381, +0.0000018366,0.0000018340,0.0000018315,0.0000018293,0.0000018265, +0.0000018232,0.0000018202,0.0000018179,0.0000018162,0.0000018150, +0.0000018142,0.0000018143,0.0000018150,0.0000018159,0.0000018164, +0.0000018167,0.0000018163,0.0000018155,0.0000018143,0.0000018124, +0.0000018100,0.0000018072,0.0000018038,0.0000017999,0.0000017963, +0.0000017936,0.0000017911,0.0000017891,0.0000017879,0.0000017871, +0.0000017862,0.0000017852,0.0000017840,0.0000017830,0.0000017824, +0.0000017817,0.0000017805,0.0000017786,0.0000017767,0.0000017745, +0.0000017717,0.0000017687,0.0000017661,0.0000017635,0.0000017607, +0.0000017584,0.0000017565,0.0000017548,0.0000017533,0.0000017528, +0.0000017532,0.0000017534,0.0000017539,0.0000017547,0.0000017547, +0.0000017537,0.0000017518,0.0000017479,0.0000017430,0.0000017376, +0.0000017322,0.0000017280,0.0000017255,0.0000017245,0.0000017248, +0.0000017264,0.0000017283,0.0000017305,0.0000017323,0.0000017335, +0.0000017339,0.0000017334,0.0000017320,0.0000017299,0.0000017271, +0.0000017241,0.0000017213,0.0000017193,0.0000017183,0.0000017182, +0.0000017191,0.0000017211,0.0000017236,0.0000017264,0.0000017290, +0.0000017313,0.0000017333,0.0000017349,0.0000017362,0.0000017372, +0.0000017378,0.0000017382,0.0000017388,0.0000017398,0.0000017410, +0.0000017417,0.0000017417,0.0000017414,0.0000017407,0.0000017402, +0.0000017405,0.0000017415,0.0000017436,0.0000017471,0.0000017526, +0.0000017606,0.0000017711,0.0000017846,0.0000018007,0.0000018186, +0.0000018369,0.0000018544,0.0000018703,0.0000018840,0.0000018948, +0.0000019027,0.0000019080,0.0000019115,0.0000019133,0.0000019137, +0.0000019133,0.0000019129,0.0000019127,0.0000019133,0.0000019148, +0.0000019166,0.0000019183,0.0000019202,0.0000019223,0.0000019243, +0.0000019268,0.0000019298,0.0000019326,0.0000019348,0.0000019365, +0.0000019377,0.0000019392,0.0000019411,0.0000019439,0.0000019472, +0.0000019503,0.0000019535,0.0000019562,0.0000019575,0.0000019578, +0.0000019574,0.0000019568,0.0000019552,0.0000019528,0.0000019500, +0.0000019468,0.0000019435,0.0000019403,0.0000019374,0.0000019348, +0.0000019318,0.0000019286,0.0000019257,0.0000019220,0.0000019194, +0.0000019182,0.0000019182,0.0000019190,0.0000019206,0.0000019223, +0.0000019239,0.0000019255,0.0000019266,0.0000019275,0.0000019285, +0.0000019292,0.0000019295,0.0000019295,0.0000019284,0.0000019266, +0.0000019252,0.0000019236,0.0000019221,0.0000019214,0.0000019208, +0.0000019200,0.0000019196,0.0000019203,0.0000019213,0.0000019225, +0.0000019239,0.0000019251,0.0000019253,0.0000019246,0.0000019227, +0.0000019205,0.0000019187,0.0000019170,0.0000019157,0.0000019156, +0.0000019163,0.0000019173,0.0000019182,0.0000019195,0.0000019219, +0.0000019255,0.0000019289,0.0000019329,0.0000019380,0.0000019431, +0.0000019479,0.0000019525,0.0000019572,0.0000019614,0.0000019640, +0.0000019649,0.0000019653,0.0000019652,0.0000019654,0.0000019647, +0.0000019630,0.0000019610,0.0000019591,0.0000019575,0.0000019560, +0.0000019554,0.0000019560,0.0000019587,0.0000019618,0.0000019643, +0.0000019666,0.0000019689,0.0000019710,0.0000019721,0.0000019722, +0.0000019720,0.0000019711,0.0000019688,0.0000019650,0.0000019600, +0.0000019544,0.0000019497,0.0000019467,0.0000019446,0.0000019425, +0.0000019406,0.0000019388,0.0000019368,0.0000019340,0.0000019303, +0.0000019268,0.0000019246,0.0000019246,0.0000019259,0.0000019282, +0.0000019303,0.0000019314,0.0000019312,0.0000019299,0.0000019278, +0.0000019262,0.0000019260,0.0000019269,0.0000019281,0.0000019285, +0.0000019279,0.0000019266,0.0000019250,0.0000019225,0.0000019190, +0.0000019160,0.0000019141,0.0000019132,0.0000019127,0.0000019122, +0.0000019116,0.0000019109,0.0000019099,0.0000019083,0.0000019061, +0.0000019042,0.0000019028,0.0000019016,0.0000019005,0.0000019003, +0.0000019013,0.0000019025,0.0000019038,0.0000019044,0.0000019030, +0.0000019001,0.0000018969,0.0000018941,0.0000018924,0.0000018915, +0.0000018906,0.0000018885,0.0000018857,0.0000018831,0.0000018814, +0.0000018795,0.0000018781,0.0000018776,0.0000018777,0.0000018782, +0.0000018788,0.0000018790,0.0000018787,0.0000018775,0.0000018760, +0.0000018747,0.0000018736,0.0000018734,0.0000018749,0.0000018772, +0.0000018808,0.0000018847,0.0000018861,0.0000018870,0.0000018851, +0.0000018818,0.0000018783,0.0000018746,0.0000018725,0.0000018737, +0.0000018754,0.0000018771,0.0000018786,0.0000018796,0.0000018806, +0.0000018821,0.0000018835,0.0000018837,0.0000018823,0.0000018796, +0.0000018761,0.0000018717,0.0000018663,0.0000018597,0.0000018525, +0.0000018462,0.0000018410,0.0000018367,0.0000018341,0.0000018330, +0.0000018318,0.0000018305,0.0000018282,0.0000018263,0.0000018261, +0.0000018281,0.0000018322,0.0000018383,0.0000018438,0.0000018473, +0.0000018489,0.0000018484,0.0000018475,0.0000018488,0.0000018507, +0.0000018521,0.0000018511,0.0000018476,0.0000018431,0.0000018414, +0.0000018417,0.0000018437,0.0000018506,0.0000018586,0.0000018658, +0.0000018710,0.0000018745,0.0000018763,0.0000018775,0.0000018769, +0.0000018750,0.0000018717,0.0000018680,0.0000018632,0.0000018568, +0.0000018489,0.0000018405,0.0000018335,0.0000018292,0.0000018276, +0.0000018286,0.0000018306,0.0000018313,0.0000018306,0.0000018294, +0.0000018291,0.0000018291,0.0000018284,0.0000018270,0.0000018250, +0.0000018233,0.0000018219,0.0000018200,0.0000018173,0.0000018161, +0.0000018166,0.0000018194,0.0000018233,0.0000018273,0.0000018312, +0.0000018345,0.0000018368,0.0000018375,0.0000018372,0.0000018356, +0.0000018335,0.0000018316,0.0000018298,0.0000018282,0.0000018262, +0.0000018235,0.0000018210,0.0000018197,0.0000018196,0.0000018200, +0.0000018205,0.0000018209,0.0000018213,0.0000018221,0.0000018229, +0.0000018234,0.0000018231,0.0000018217,0.0000018192,0.0000018151, +0.0000018093,0.0000018029,0.0000017969,0.0000017914,0.0000017865, +0.0000017815,0.0000017762,0.0000017712,0.0000017680,0.0000017672, +0.0000017679,0.0000017702,0.0000017731,0.0000017760,0.0000017784, +0.0000017795,0.0000017792,0.0000017783,0.0000017773,0.0000017768, +0.0000017771,0.0000017781,0.0000017790,0.0000017792,0.0000017789, +0.0000017780,0.0000017766,0.0000017748,0.0000017729,0.0000017714, +0.0000017703,0.0000017694,0.0000017679,0.0000017658,0.0000017635, +0.0000017611,0.0000017588,0.0000017564,0.0000017540,0.0000017524, +0.0000017502,0.0000017478,0.0000017467,0.0000017473,0.0000017500, +0.0000017553,0.0000017625,0.0000017702,0.0000017764,0.0000017803, +0.0000017823,0.0000017818,0.0000017812,0.0000017795,0.0000017767, +0.0000017731,0.0000017697,0.0000017678,0.0000017662,0.0000017661, +0.0000017672,0.0000017697,0.0000017723,0.0000017743,0.0000017738, +0.0000017732,0.0000017719,0.0000017711,0.0000017716,0.0000017732, +0.0000017751,0.0000017767,0.0000017777,0.0000017794,0.0000017826, +0.0000017874,0.0000017911,0.0000017937,0.0000017937,0.0000017924, +0.0000017913,0.0000017923,0.0000017961,0.0000018024,0.0000018097, +0.0000018157,0.0000018205,0.0000018238,0.0000018262,0.0000018294, +0.0000018334,0.0000018363,0.0000018381,0.0000018383,0.0000018398, +0.0000018455,0.0000018567,0.0000018731,0.0000018915,0.0000019057, +0.0000019172,0.0000019171,0.0000019190,0.0000019159,0.0000019136, +0.0000019133,0.0000019142,0.0000019166,0.0000019188,0.0000019204, +0.0000019204,0.0000019181,0.0000019133,0.0000019065,0.0000018983, +0.0000018901,0.0000018834,0.0000018790,0.0000018769,0.0000018767, +0.0000018772,0.0000018779,0.0000018787,0.0000018786,0.0000018775, +0.0000018758,0.0000018734,0.0000018700,0.0000018655,0.0000018605, +0.0000018560,0.0000018524,0.0000018493,0.0000018461,0.0000018433, +0.0000018408,0.0000018381,0.0000018353,0.0000018326,0.0000018296, +0.0000018263,0.0000018228,0.0000018193,0.0000018160,0.0000018135, +0.0000018120,0.0000018116,0.0000018118,0.0000018126,0.0000018138, +0.0000018152,0.0000018168,0.0000018183,0.0000018197,0.0000018216, +0.0000018247,0.0000018291,0.0000018337,0.0000018383,0.0000018428, +0.0000018469,0.0000018503,0.0000018530,0.0000018553,0.0000018573, +0.0000018589,0.0000018600,0.0000018606,0.0000018611,0.0000018618, +0.0000018626,0.0000018634,0.0000018643,0.0000018657,0.0000018672, +0.0000018684,0.0000018690,0.0000018696,0.0000018704,0.0000018718, +0.0000018736,0.0000018750,0.0000018756,0.0000018753,0.0000018750, +0.0000018754,0.0000018767,0.0000018790,0.0000018818,0.0000018849, +0.0000018855,0.0000018765,0.0000018657,0.0000018627,0.0000018599, +0.0000018499,0.0000018448,0.0000018573,0.0000018798,0.0000018839, +0.0000018810,0.0000018797,0.0000018742,0.0000018725,0.0000018724, +0.0000018714,0.0000018703,0.0000018718,0.0000018714,0.0000018236, +0.0000017688,0.0000017707,0.0000017716,0.0000017599,0.0000017666, +0.0000017737,0.0000017661,0.0000017590,0.0000017567,0.0000017571, +0.0000017586,0.0000017590,0.0000017574,0.0000017552,0.0000017542, +0.0000017547,0.0000017572,0.0000017611,0.0000017657,0.0000017701, +0.0000017734,0.0000017752,0.0000017755,0.0000017738,0.0000017708, +0.0000017670,0.0000017630,0.0000017585,0.0000017540,0.0000017486, +0.0000017435,0.0000017400,0.0000017344,0.0000017322,0.0000017348, +0.0000017438,0.0000017539,0.0000017599,0.0000017598,0.0000017544, +0.0000017541,0.0000017618,0.0000017719,0.0000017790,0.0000017800, +0.0000017776,0.0000017759,0.0000017766,0.0000017789,0.0000017812, +0.0000017829,0.0000017840,0.0000017840,0.0000017822,0.0000017793, +0.0000017771,0.0000017767,0.0000017774,0.0000017786,0.0000017799, +0.0000017821,0.0000017860,0.0000017913,0.0000017964,0.0000018001, +0.0000018019,0.0000018025,0.0000018025,0.0000018022,0.0000018018, +0.0000018014,0.0000018014,0.0000018018,0.0000018012,0.0000018010, +0.0000017998,0.0000017973,0.0000017944,0.0000017914,0.0000017886, +0.0000017858,0.0000017831,0.0000017806,0.0000017787,0.0000017777, +0.0000017778,0.0000017778,0.0000017783,0.0000017785,0.0000017781, +0.0000017771,0.0000017761,0.0000017761,0.0000017769,0.0000017785, +0.0000017810,0.0000017834,0.0000017852,0.0000017869,0.0000017888, +0.0000017912,0.0000017943,0.0000017977,0.0000018014,0.0000018048, +0.0000018070,0.0000018081,0.0000018095,0.0000018116,0.0000018138, +0.0000018156,0.0000018161,0.0000018150,0.0000018131,0.0000018112, +0.0000018102,0.0000018099,0.0000018101,0.0000018102,0.0000018099, +0.0000018098,0.0000018106,0.0000018126,0.0000018152,0.0000018168, +0.0000018180,0.0000018183,0.0000018171,0.0000018146,0.0000018110, +0.0000018090,0.0000018094,0.0000018135,0.0000018209,0.0000018292, +0.0000018364,0.0000018419,0.0000018461,0.0000018498,0.0000018524, +0.0000018544,0.0000018557,0.0000018560,0.0000018555,0.0000018538, +0.0000018507,0.0000018469,0.0000018437,0.0000018382,0.0000018382, +0.0000018378,0.0000018375,0.0000018379,0.0000018387,0.0000018392, +0.0000018396,0.0000018399,0.0000018399,0.0000018397,0.0000018391, +0.0000018385,0.0000018378,0.0000018372,0.0000018369,0.0000018368, +0.0000018367,0.0000018368,0.0000018371,0.0000018375,0.0000018377, +0.0000018378,0.0000018377,0.0000018374,0.0000018366,0.0000018355, +0.0000018343,0.0000018330,0.0000018318,0.0000018310,0.0000018306, +0.0000018307,0.0000018313,0.0000018325,0.0000018340,0.0000018359, +0.0000018382,0.0000018406,0.0000018434,0.0000018468,0.0000018506, +0.0000018546,0.0000018583,0.0000018616,0.0000018641,0.0000018659, +0.0000018671,0.0000018676,0.0000018675,0.0000018675,0.0000018675, +0.0000018674,0.0000018676,0.0000018678,0.0000018671,0.0000018672, +0.0000018663,0.0000018643,0.0000018609,0.0000018564,0.0000018507, +0.0000018445,0.0000018385,0.0000018332,0.0000018297,0.0000018292, +0.0000018305,0.0000018324,0.0000018357,0.0000018401,0.0000018449, +0.0000018487,0.0000018508,0.0000018516,0.0000018496,0.0000018440, +0.0000018352,0.0000018251,0.0000018175,0.0000018141,0.0000018142, +0.0000018163,0.0000018186,0.0000018186,0.0000018155,0.0000018103, +0.0000018051,0.0000018007,0.0000017972,0.0000017946,0.0000017944, +0.0000017956,0.0000017997,0.0000018049,0.0000018100,0.0000018138, +0.0000018164,0.0000018181,0.0000018197,0.0000018213,0.0000018226, +0.0000018232,0.0000018229,0.0000018222,0.0000018212,0.0000018207, +0.0000018211,0.0000018219,0.0000018224,0.0000018229,0.0000018236, +0.0000018240,0.0000018238,0.0000018229,0.0000018215,0.0000018203, +0.0000018197,0.0000018201,0.0000018208,0.0000018209,0.0000018195, +0.0000018159,0.0000018105,0.0000018044,0.0000017992,0.0000017957, +0.0000017933,0.0000017914,0.0000017897,0.0000017883,0.0000017866, +0.0000017848,0.0000017836,0.0000017832,0.0000017836,0.0000017843, +0.0000017850,0.0000017854,0.0000017858,0.0000017859,0.0000017862, +0.0000017866,0.0000017874,0.0000017888,0.0000017904,0.0000017919, +0.0000017924,0.0000017917,0.0000017895,0.0000017863,0.0000017831, +0.0000017801,0.0000017775,0.0000017760,0.0000017756,0.0000017756, +0.0000017750,0.0000017740,0.0000017722,0.0000017693,0.0000017659, +0.0000017629,0.0000017605,0.0000017592,0.0000017591,0.0000017600, +0.0000017618,0.0000017640,0.0000017662,0.0000017682,0.0000017695, +0.0000017703,0.0000017715,0.0000017733,0.0000017755,0.0000017778, +0.0000017799,0.0000017816,0.0000017828,0.0000017833,0.0000017831, +0.0000017822,0.0000017804,0.0000017779,0.0000017748,0.0000017712, +0.0000017680,0.0000017655,0.0000017645,0.0000017642,0.0000017647, +0.0000017658,0.0000017666,0.0000017668,0.0000017664,0.0000017657, +0.0000017646,0.0000017633,0.0000017622,0.0000017615,0.0000017607, +0.0000017597,0.0000017590,0.0000017585,0.0000017584,0.0000017588, +0.0000017597,0.0000017610,0.0000017634,0.0000017662,0.0000017690, +0.0000017713,0.0000017714,0.0000017711,0.0000017706,0.0000017688, +0.0000017669,0.0000017652,0.0000017642,0.0000017633,0.0000017629, +0.0000017640,0.0000017651,0.0000017664,0.0000017672,0.0000017683, +0.0000017695,0.0000017704,0.0000017711,0.0000017719,0.0000017732, +0.0000017748,0.0000017771,0.0000017793,0.0000017810,0.0000017820, +0.0000017829,0.0000017831,0.0000017819,0.0000017792,0.0000017752, +0.0000017704,0.0000017653,0.0000017599,0.0000017548,0.0000017497, +0.0000017451,0.0000017417,0.0000017401,0.0000017397,0.0000017402, +0.0000017407,0.0000017411,0.0000017404,0.0000017390,0.0000017367, +0.0000017340,0.0000017332,0.0000017335,0.0000017365,0.0000017421, +0.0000017491,0.0000017567,0.0000017652,0.0000017743,0.0000017815, +0.0000017857,0.0000017878,0.0000017905,0.0000017943,0.0000017959, +0.0000017952,0.0000017889,0.0000017768,0.0000017629,0.0000017500, +0.0000017413,0.0000017385,0.0000017378,0.0000017376,0.0000017363, +0.0000017343,0.0000017328,0.0000017318,0.0000017307,0.0000017295, +0.0000017282,0.0000017275,0.0000017275,0.0000017279,0.0000017285, +0.0000017292,0.0000017297,0.0000017298,0.0000017296,0.0000017294, +0.0000017291,0.0000017289,0.0000017286,0.0000017288,0.0000017294, +0.0000017306,0.0000017324,0.0000017350,0.0000017383,0.0000017419, +0.0000017455,0.0000017490,0.0000017523,0.0000017552,0.0000017575, +0.0000017601,0.0000017624,0.0000017640,0.0000017649,0.0000017653, +0.0000017658,0.0000017663,0.0000017663,0.0000017656,0.0000017648, +0.0000017639,0.0000017628,0.0000017614,0.0000017595,0.0000017573, +0.0000017551,0.0000017530,0.0000017512,0.0000017495,0.0000017479, +0.0000017466,0.0000017457,0.0000017451,0.0000017446,0.0000017436, +0.0000017423,0.0000017406,0.0000017383,0.0000017369,0.0000017356, +0.0000017357,0.0000017374,0.0000017406,0.0000017440,0.0000017468, +0.0000017487,0.0000017493,0.0000017494,0.0000017486,0.0000017472, +0.0000017454,0.0000017433,0.0000017415,0.0000017399,0.0000017382, +0.0000017364,0.0000017346,0.0000017329,0.0000017314,0.0000017305, +0.0000017297,0.0000017296,0.0000017309,0.0000017335,0.0000017369, +0.0000017410,0.0000017466,0.0000017539,0.0000017628,0.0000017724, +0.0000017797,0.0000017826,0.0000017821,0.0000017764,0.0000017686, +0.0000017619,0.0000017578,0.0000017562,0.0000017557,0.0000017555, +0.0000017548,0.0000017541,0.0000017538,0.0000017539,0.0000017548, +0.0000017567,0.0000017594,0.0000017619,0.0000017636,0.0000017643, +0.0000017641,0.0000017633,0.0000017632,0.0000017645,0.0000017669, +0.0000017697,0.0000017727,0.0000017756,0.0000017778,0.0000017793, +0.0000017804,0.0000017816,0.0000017833,0.0000017858,0.0000017892, +0.0000017934,0.0000017980,0.0000018022,0.0000018060,0.0000018092, +0.0000018115,0.0000018127,0.0000018134,0.0000018136,0.0000018129, +0.0000018118,0.0000018109,0.0000018113,0.0000018114,0.0000018118, +0.0000018128,0.0000018138,0.0000018157,0.0000018178,0.0000018192, +0.0000018207,0.0000018223,0.0000018234,0.0000018255,0.0000018263, +0.0000018285,0.0000018306,0.0000018323,0.0000018340,0.0000018356, +0.0000018370,0.0000018383,0.0000018395,0.0000018406,0.0000018414, +0.0000018418,0.0000018418,0.0000018415,0.0000018411,0.0000018413, +0.0000018407,0.0000018403,0.0000018393,0.0000018387,0.0000018389, +0.0000018381,0.0000018362,0.0000018353,0.0000018342,0.0000018327, +0.0000018308,0.0000018292,0.0000018278,0.0000018267,0.0000018257, +0.0000018249,0.0000018243,0.0000018234,0.0000018227,0.0000018218, +0.0000018207,0.0000018193,0.0000018174,0.0000018148,0.0000018117, +0.0000018082,0.0000018047,0.0000018014,0.0000017984,0.0000017955, +0.0000017930,0.0000017911,0.0000017893,0.0000017879,0.0000017871, +0.0000017868,0.0000017869,0.0000017872,0.0000017871,0.0000017869, +0.0000017863,0.0000017844,0.0000017822,0.0000017799,0.0000017771, +0.0000017740,0.0000017713,0.0000017693,0.0000017661,0.0000017624, +0.0000017591,0.0000017564,0.0000017542,0.0000017529,0.0000017523, +0.0000017522,0.0000017515,0.0000017511,0.0000017500,0.0000017474, +0.0000017440,0.0000017391,0.0000017346,0.0000017312,0.0000017289, +0.0000017274,0.0000017273,0.0000017288,0.0000017311,0.0000017336, +0.0000017360,0.0000017377,0.0000017379,0.0000017371,0.0000017347, +0.0000017318,0.0000017287,0.0000017253,0.0000017221,0.0000017192, +0.0000017168,0.0000017152,0.0000017148,0.0000017152,0.0000017172, +0.0000017205,0.0000017241,0.0000017276,0.0000017306,0.0000017325, +0.0000017337,0.0000017345,0.0000017348,0.0000017348,0.0000017353, +0.0000017367,0.0000017381,0.0000017390,0.0000017396,0.0000017397, +0.0000017393,0.0000017390,0.0000017389,0.0000017390,0.0000017385, +0.0000017378,0.0000017383,0.0000017402,0.0000017439,0.0000017499, +0.0000017590,0.0000017711,0.0000017854,0.0000018010,0.0000018172, +0.0000018336,0.0000018489,0.0000018625,0.0000018742,0.0000018837, +0.0000018911,0.0000018965,0.0000018998,0.0000019017,0.0000019028, +0.0000019037,0.0000019047,0.0000019060,0.0000019073,0.0000019088, +0.0000019108,0.0000019131,0.0000019154,0.0000019175,0.0000019195, +0.0000019213,0.0000019230,0.0000019253,0.0000019282,0.0000019320, +0.0000019357,0.0000019394,0.0000019432,0.0000019465,0.0000019488, +0.0000019507,0.0000019523,0.0000019530,0.0000019527,0.0000019512, +0.0000019494,0.0000019473,0.0000019449,0.0000019423,0.0000019396, +0.0000019367,0.0000019338,0.0000019305,0.0000019267,0.0000019226, +0.0000019186,0.0000019155,0.0000019125,0.0000019112,0.0000019108, +0.0000019110,0.0000019119,0.0000019129,0.0000019136,0.0000019146, +0.0000019150,0.0000019150,0.0000019144,0.0000019128,0.0000019104, +0.0000019086,0.0000019065,0.0000019049,0.0000019046,0.0000019044, +0.0000019039,0.0000019033,0.0000019034,0.0000019045,0.0000019057, +0.0000019069,0.0000019076,0.0000019074,0.0000019066,0.0000019052, +0.0000019034,0.0000019017,0.0000019003,0.0000018985,0.0000018967, +0.0000018954,0.0000018939,0.0000018918,0.0000018893,0.0000018875, +0.0000018874,0.0000018876,0.0000018887,0.0000018918,0.0000018965, +0.0000019020,0.0000019081,0.0000019147,0.0000019219,0.0000019291, +0.0000019361,0.0000019430,0.0000019500,0.0000019561,0.0000019605, +0.0000019626,0.0000019625,0.0000019627,0.0000019620,0.0000019605, +0.0000019585,0.0000019568,0.0000019568,0.0000019570,0.0000019573, +0.0000019583,0.0000019599,0.0000019621,0.0000019644,0.0000019664, +0.0000019682,0.0000019698,0.0000019710,0.0000019704,0.0000019700, +0.0000019680,0.0000019653,0.0000019630,0.0000019610,0.0000019584, +0.0000019552,0.0000019518,0.0000019486,0.0000019459,0.0000019432, +0.0000019404,0.0000019376,0.0000019356,0.0000019342,0.0000019343, +0.0000019356,0.0000019372,0.0000019376,0.0000019366,0.0000019353, +0.0000019343,0.0000019342,0.0000019348,0.0000019358,0.0000019361, +0.0000019358,0.0000019349,0.0000019337,0.0000019320,0.0000019294, +0.0000019270,0.0000019255,0.0000019247,0.0000019239,0.0000019227, +0.0000019213,0.0000019199,0.0000019188,0.0000019174,0.0000019153, +0.0000019128,0.0000019106,0.0000019090,0.0000019080,0.0000019075, +0.0000019070,0.0000019069,0.0000019071,0.0000019072,0.0000019066, +0.0000019053,0.0000019036,0.0000019013,0.0000018989,0.0000018967, +0.0000018947,0.0000018923,0.0000018898,0.0000018879,0.0000018865, +0.0000018851,0.0000018833,0.0000018810,0.0000018782,0.0000018765, +0.0000018745,0.0000018741,0.0000018742,0.0000018741,0.0000018733, +0.0000018723,0.0000018709,0.0000018695,0.0000018684,0.0000018682, +0.0000018697,0.0000018733,0.0000018773,0.0000018817,0.0000018856, +0.0000018878,0.0000018879,0.0000018860,0.0000018835,0.0000018814, +0.0000018794,0.0000018785,0.0000018785,0.0000018788,0.0000018782, +0.0000018783,0.0000018793,0.0000018811,0.0000018821,0.0000018831, +0.0000018828,0.0000018812,0.0000018782,0.0000018739,0.0000018679, +0.0000018615,0.0000018556,0.0000018505,0.0000018467,0.0000018447, +0.0000018442,0.0000018436,0.0000018418,0.0000018382,0.0000018331, +0.0000018276,0.0000018224,0.0000018194,0.0000018194,0.0000018230, +0.0000018311,0.0000018411,0.0000018499,0.0000018571,0.0000018614, +0.0000018622,0.0000018618,0.0000018580,0.0000018528,0.0000018463, +0.0000018395,0.0000018346,0.0000018339,0.0000018367,0.0000018459, +0.0000018569,0.0000018677,0.0000018755,0.0000018791,0.0000018799, +0.0000018791,0.0000018757,0.0000018720,0.0000018676,0.0000018622, +0.0000018546,0.0000018457,0.0000018361,0.0000018283,0.0000018236, +0.0000018222,0.0000018230,0.0000018240,0.0000018239,0.0000018239, +0.0000018251,0.0000018266,0.0000018278,0.0000018279,0.0000018267, +0.0000018252,0.0000018237,0.0000018216,0.0000018187,0.0000018165, +0.0000018163,0.0000018178,0.0000018206,0.0000018240,0.0000018278, +0.0000018318,0.0000018353,0.0000018374,0.0000018378,0.0000018362, +0.0000018334,0.0000018313,0.0000018301,0.0000018292,0.0000018279, +0.0000018255,0.0000018224,0.0000018203,0.0000018195,0.0000018200, +0.0000018212,0.0000018224,0.0000018233,0.0000018242,0.0000018248, +0.0000018254,0.0000018254,0.0000018239,0.0000018205,0.0000018152, +0.0000018082,0.0000018009,0.0000017941,0.0000017882,0.0000017830, +0.0000017783,0.0000017736,0.0000017697,0.0000017680,0.0000017686, +0.0000017709,0.0000017737,0.0000017763,0.0000017785,0.0000017803, +0.0000017816,0.0000017818,0.0000017811,0.0000017804,0.0000017801, +0.0000017802,0.0000017808,0.0000017817,0.0000017823,0.0000017821, +0.0000017815,0.0000017804,0.0000017790,0.0000017774,0.0000017761, +0.0000017753,0.0000017742,0.0000017727,0.0000017711,0.0000017690, +0.0000017666,0.0000017638,0.0000017608,0.0000017583,0.0000017559, +0.0000017532,0.0000017504,0.0000017474,0.0000017458,0.0000017443, +0.0000017455,0.0000017497,0.0000017560,0.0000017631,0.0000017700, +0.0000017756,0.0000017795,0.0000017805,0.0000017802,0.0000017783, +0.0000017755,0.0000017723,0.0000017697,0.0000017677,0.0000017660, +0.0000017655,0.0000017660,0.0000017675,0.0000017695,0.0000017711, +0.0000017714,0.0000017707,0.0000017702,0.0000017702,0.0000017709, +0.0000017725,0.0000017737,0.0000017743,0.0000017752,0.0000017772, +0.0000017805,0.0000017852,0.0000017892,0.0000017923,0.0000017921, +0.0000017905,0.0000017890,0.0000017896,0.0000017927,0.0000017989, +0.0000018069,0.0000018145,0.0000018204,0.0000018238,0.0000018256, +0.0000018280,0.0000018313,0.0000018340,0.0000018356,0.0000018360, +0.0000018373,0.0000018422,0.0000018522,0.0000018676,0.0000018849, +0.0000018987,0.0000019106,0.0000019167,0.0000019176,0.0000019197, +0.0000019182,0.0000019175,0.0000019176,0.0000019182,0.0000019197, +0.0000019207,0.0000019212,0.0000019200,0.0000019164,0.0000019108, +0.0000019034,0.0000018949,0.0000018870,0.0000018814,0.0000018785, +0.0000018779,0.0000018783,0.0000018791,0.0000018799,0.0000018800, +0.0000018794,0.0000018779,0.0000018752,0.0000018716,0.0000018674, +0.0000018638,0.0000018608,0.0000018578,0.0000018551,0.0000018531, +0.0000018514,0.0000018496,0.0000018477,0.0000018454,0.0000018429, +0.0000018397,0.0000018359,0.0000018323,0.0000018293,0.0000018272, +0.0000018260,0.0000018255,0.0000018252,0.0000018252,0.0000018255, +0.0000018264,0.0000018277,0.0000018293,0.0000018313,0.0000018344, +0.0000018384,0.0000018422,0.0000018452,0.0000018478,0.0000018503, +0.0000018527,0.0000018550,0.0000018574,0.0000018600,0.0000018627, +0.0000018651,0.0000018672,0.0000018691,0.0000018710,0.0000018731, +0.0000018752,0.0000018775,0.0000018798,0.0000018820,0.0000018835, +0.0000018841,0.0000018842,0.0000018844,0.0000018844,0.0000018843, +0.0000018833,0.0000018810,0.0000018781,0.0000018762,0.0000018766, +0.0000018793,0.0000018827,0.0000018852,0.0000018864,0.0000018829, +0.0000018705,0.0000018631,0.0000018611,0.0000018536,0.0000018469, +0.0000018551,0.0000018768,0.0000018851,0.0000018818,0.0000018813, +0.0000018778,0.0000018741,0.0000018738,0.0000018736,0.0000018731, +0.0000018727,0.0000018734,0.0000018691,0.0000018052,0.0000017664, +0.0000017737,0.0000017676,0.0000017595,0.0000017708,0.0000017737, +0.0000017686,0.0000017621,0.0000017575,0.0000017553,0.0000017549, +0.0000017549,0.0000017551,0.0000017545,0.0000017540,0.0000017540, +0.0000017542,0.0000017549,0.0000017570,0.0000017598,0.0000017630, +0.0000017657,0.0000017674,0.0000017676,0.0000017660,0.0000017625, +0.0000017577,0.0000017527,0.0000017483,0.0000017456,0.0000017424, +0.0000017366,0.0000017345,0.0000017386,0.0000017484,0.0000017569, +0.0000017610,0.0000017580,0.0000017537,0.0000017577,0.0000017681, +0.0000017777,0.0000017798,0.0000017767,0.0000017731,0.0000017727, +0.0000017744,0.0000017764,0.0000017779,0.0000017792,0.0000017804, +0.0000017812,0.0000017810,0.0000017796,0.0000017775,0.0000017760, +0.0000017755,0.0000017760,0.0000017772,0.0000017789,0.0000017811, +0.0000017840,0.0000017875,0.0000017913,0.0000017948,0.0000017974, +0.0000017989,0.0000017996,0.0000017994,0.0000017986,0.0000017975, +0.0000017970,0.0000017973,0.0000017982,0.0000017999,0.0000018002, +0.0000018010,0.0000017997,0.0000017976,0.0000017948,0.0000017916, +0.0000017884,0.0000017853,0.0000017828,0.0000017807,0.0000017792, +0.0000017785,0.0000017785,0.0000017785,0.0000017782,0.0000017781, +0.0000017785,0.0000017794,0.0000017810,0.0000017830,0.0000017853, +0.0000017872,0.0000017890,0.0000017908,0.0000017924,0.0000017942, +0.0000017961,0.0000017983,0.0000018006,0.0000018025,0.0000018041, +0.0000018059,0.0000018087,0.0000018121,0.0000018150,0.0000018164, +0.0000018161,0.0000018149,0.0000018127,0.0000018107,0.0000018096, +0.0000018098,0.0000018103,0.0000018104,0.0000018095,0.0000018089, +0.0000018099,0.0000018122,0.0000018155,0.0000018185,0.0000018202, +0.0000018207,0.0000018202,0.0000018183,0.0000018149,0.0000018117, +0.0000018104,0.0000018114,0.0000018152,0.0000018209,0.0000018272, +0.0000018334,0.0000018384,0.0000018414,0.0000018429,0.0000018432, +0.0000018427,0.0000018411,0.0000018393,0.0000018381,0.0000018378, +0.0000018379,0.0000018352,0.0000018353,0.0000018358,0.0000018363, +0.0000018366,0.0000018367,0.0000018359,0.0000018352,0.0000018347, +0.0000018345,0.0000018343,0.0000018339,0.0000018332,0.0000018327, +0.0000018325,0.0000018324,0.0000018323,0.0000018323,0.0000018326, +0.0000018333,0.0000018340,0.0000018345,0.0000018346,0.0000018346, +0.0000018342,0.0000018334,0.0000018322,0.0000018307,0.0000018291, +0.0000018275,0.0000018262,0.0000018252,0.0000018248,0.0000018250, +0.0000018258,0.0000018274,0.0000018296,0.0000018321,0.0000018348, +0.0000018377,0.0000018412,0.0000018450,0.0000018488,0.0000018520, +0.0000018544,0.0000018563,0.0000018578,0.0000018588,0.0000018595, +0.0000018597,0.0000018598,0.0000018600,0.0000018607,0.0000018619, +0.0000018631,0.0000018646,0.0000018659,0.0000018667,0.0000018663, +0.0000018664,0.0000018652,0.0000018630,0.0000018599,0.0000018558, +0.0000018507,0.0000018454,0.0000018409,0.0000018367,0.0000018353, +0.0000018350,0.0000018370,0.0000018399,0.0000018443,0.0000018486, +0.0000018520,0.0000018537,0.0000018534,0.0000018490,0.0000018403, +0.0000018299,0.0000018205,0.0000018154,0.0000018157,0.0000018181, +0.0000018208,0.0000018218,0.0000018190,0.0000018139,0.0000018090, +0.0000018049,0.0000018011,0.0000017979,0.0000017957,0.0000017950, +0.0000017964,0.0000017996,0.0000018042,0.0000018084,0.0000018118, +0.0000018144,0.0000018168,0.0000018192,0.0000018211,0.0000018221, +0.0000018221,0.0000018214,0.0000018214,0.0000018219,0.0000018224, +0.0000018226,0.0000018227,0.0000018228,0.0000018235,0.0000018247, +0.0000018261,0.0000018268,0.0000018271,0.0000018270,0.0000018268, +0.0000018267,0.0000018269,0.0000018273,0.0000018266,0.0000018239, +0.0000018186,0.0000018117,0.0000018048,0.0000017993,0.0000017951, +0.0000017917,0.0000017889,0.0000017871,0.0000017857,0.0000017843, +0.0000017833,0.0000017830,0.0000017836,0.0000017848,0.0000017864, +0.0000017876,0.0000017882,0.0000017883,0.0000017881,0.0000017881, +0.0000017883,0.0000017892,0.0000017905,0.0000017916,0.0000017918, +0.0000017910,0.0000017896,0.0000017881,0.0000017864,0.0000017849, +0.0000017840,0.0000017836,0.0000017829,0.0000017815,0.0000017796, +0.0000017772,0.0000017744,0.0000017717,0.0000017697,0.0000017688, +0.0000017689,0.0000017694,0.0000017703,0.0000017713,0.0000017724, +0.0000017739,0.0000017756,0.0000017771,0.0000017780,0.0000017786, +0.0000017792,0.0000017803,0.0000017818,0.0000017837,0.0000017853, +0.0000017864,0.0000017867,0.0000017865,0.0000017858,0.0000017848, +0.0000017834,0.0000017813,0.0000017791,0.0000017771,0.0000017745, +0.0000017715,0.0000017685,0.0000017662,0.0000017655,0.0000017652, +0.0000017649,0.0000017649,0.0000017647,0.0000017641,0.0000017635, +0.0000017631,0.0000017627,0.0000017619,0.0000017607,0.0000017588, +0.0000017569,0.0000017552,0.0000017537,0.0000017519,0.0000017517, +0.0000017527,0.0000017545,0.0000017569,0.0000017600,0.0000017629, +0.0000017656,0.0000017679,0.0000017687,0.0000017684,0.0000017687, +0.0000017693,0.0000017691,0.0000017685,0.0000017695,0.0000017706, +0.0000017709,0.0000017708,0.0000017706,0.0000017701,0.0000017694, +0.0000017679,0.0000017669,0.0000017659,0.0000017660,0.0000017668, +0.0000017681,0.0000017706,0.0000017738,0.0000017773,0.0000017810, +0.0000017825,0.0000017839,0.0000017830,0.0000017804,0.0000017764, +0.0000017715,0.0000017659,0.0000017595,0.0000017529,0.0000017473, +0.0000017432,0.0000017408,0.0000017404,0.0000017403,0.0000017411, +0.0000017425,0.0000017440,0.0000017443,0.0000017431,0.0000017401, +0.0000017359,0.0000017337,0.0000017332,0.0000017350,0.0000017398, +0.0000017472,0.0000017559,0.0000017651,0.0000017733,0.0000017796, +0.0000017829,0.0000017846,0.0000017865,0.0000017899,0.0000017906, +0.0000017888,0.0000017830,0.0000017733,0.0000017614,0.0000017495, +0.0000017410,0.0000017376,0.0000017371,0.0000017370,0.0000017362, +0.0000017353,0.0000017346,0.0000017340,0.0000017329,0.0000017312, +0.0000017294,0.0000017283,0.0000017280,0.0000017282,0.0000017288, +0.0000017292,0.0000017294,0.0000017295,0.0000017292,0.0000017288, +0.0000017284,0.0000017278,0.0000017271,0.0000017266,0.0000017264, +0.0000017261,0.0000017257,0.0000017260,0.0000017271,0.0000017288, +0.0000017307,0.0000017323,0.0000017347,0.0000017370,0.0000017387, +0.0000017397,0.0000017401,0.0000017406,0.0000017412,0.0000017415, +0.0000017418,0.0000017421,0.0000017428,0.0000017437,0.0000017444, +0.0000017448,0.0000017452,0.0000017456,0.0000017459,0.0000017463, +0.0000017464,0.0000017462,0.0000017457,0.0000017452,0.0000017443, +0.0000017432,0.0000017422,0.0000017410,0.0000017402,0.0000017399, +0.0000017405,0.0000017420,0.0000017442,0.0000017469,0.0000017493, +0.0000017506,0.0000017506,0.0000017498,0.0000017487,0.0000017473, +0.0000017459,0.0000017446,0.0000017436,0.0000017424,0.0000017416, +0.0000017406,0.0000017392,0.0000017373,0.0000017351,0.0000017330, +0.0000017316,0.0000017310,0.0000017313,0.0000017326,0.0000017355, +0.0000017398,0.0000017454,0.0000017526,0.0000017617,0.0000017710, +0.0000017771,0.0000017790,0.0000017789,0.0000017731,0.0000017661, +0.0000017602,0.0000017569,0.0000017559,0.0000017559,0.0000017557, +0.0000017552,0.0000017547,0.0000017549,0.0000017556,0.0000017573, +0.0000017598,0.0000017626,0.0000017652,0.0000017672,0.0000017681, +0.0000017682,0.0000017683,0.0000017690,0.0000017706,0.0000017733, +0.0000017763,0.0000017785,0.0000017797,0.0000017803,0.0000017810, +0.0000017827,0.0000017857,0.0000017898,0.0000017948,0.0000018002, +0.0000018053,0.0000018101,0.0000018141,0.0000018170,0.0000018187, +0.0000018195,0.0000018194,0.0000018183,0.0000018165,0.0000018145, +0.0000018122,0.0000018101,0.0000018093,0.0000018084,0.0000018082, +0.0000018086,0.0000018105,0.0000018124,0.0000018156,0.0000018195, +0.0000018234,0.0000018268,0.0000018299,0.0000018326,0.0000018349, +0.0000018372,0.0000018393,0.0000018418,0.0000018439,0.0000018459, +0.0000018480,0.0000018498,0.0000018513,0.0000018524,0.0000018531, +0.0000018532,0.0000018528,0.0000018521,0.0000018511,0.0000018500, +0.0000018487,0.0000018468,0.0000018443,0.0000018429,0.0000018413, +0.0000018399,0.0000018395,0.0000018390,0.0000018383,0.0000018393, +0.0000018395,0.0000018395,0.0000018395,0.0000018395,0.0000018388, +0.0000018383,0.0000018375,0.0000018365,0.0000018361,0.0000018349, +0.0000018336,0.0000018323,0.0000018306,0.0000018285,0.0000018262, +0.0000018239,0.0000018211,0.0000018178,0.0000018145,0.0000018114, +0.0000018083,0.0000018051,0.0000018023,0.0000017998,0.0000017971, +0.0000017950,0.0000017931,0.0000017918,0.0000017909,0.0000017904, +0.0000017901,0.0000017903,0.0000017905,0.0000017900,0.0000017892, +0.0000017881,0.0000017866,0.0000017852,0.0000017847,0.0000017841, +0.0000017820,0.0000017784,0.0000017745,0.0000017704,0.0000017660, +0.0000017618,0.0000017575,0.0000017540,0.0000017510,0.0000017486, +0.0000017470,0.0000017453,0.0000017433,0.0000017413,0.0000017394, +0.0000017380,0.0000017360,0.0000017339,0.0000017323,0.0000017321, +0.0000017326,0.0000017338,0.0000017353,0.0000017372,0.0000017387, +0.0000017395,0.0000017395,0.0000017386,0.0000017371,0.0000017347, +0.0000017317,0.0000017284,0.0000017245,0.0000017206,0.0000017172, +0.0000017150,0.0000017139,0.0000017139,0.0000017150,0.0000017172, +0.0000017199,0.0000017228,0.0000017260,0.0000017290,0.0000017314, +0.0000017330,0.0000017348,0.0000017370,0.0000017387,0.0000017401, +0.0000017410,0.0000017412,0.0000017406,0.0000017400,0.0000017397, +0.0000017394,0.0000017390,0.0000017382,0.0000017376,0.0000017376, +0.0000017378,0.0000017379,0.0000017391,0.0000017422,0.0000017470, +0.0000017534,0.0000017615,0.0000017717,0.0000017828,0.0000017949, +0.0000018071,0.0000018191,0.0000018307,0.0000018421,0.0000018527, +0.0000018624,0.0000018710,0.0000018783,0.0000018842,0.0000018890, +0.0000018928,0.0000018959,0.0000018989,0.0000019014,0.0000019033, +0.0000019048,0.0000019063,0.0000019074,0.0000019090,0.0000019110, +0.0000019138,0.0000019175,0.0000019208,0.0000019245,0.0000019282, +0.0000019310,0.0000019334,0.0000019361,0.0000019386,0.0000019408, +0.0000019425,0.0000019436,0.0000019443,0.0000019443,0.0000019434, +0.0000019423,0.0000019403,0.0000019374,0.0000019345,0.0000019317, +0.0000019288,0.0000019255,0.0000019217,0.0000019175,0.0000019136, +0.0000019103,0.0000019079,0.0000019060,0.0000019048,0.0000019038, +0.0000019034,0.0000019031,0.0000019030,0.0000019026,0.0000019014, +0.0000018994,0.0000018975,0.0000018950,0.0000018925,0.0000018911, +0.0000018898,0.0000018878,0.0000018850,0.0000018821,0.0000018807, +0.0000018799,0.0000018790,0.0000018773,0.0000018745,0.0000018710, +0.0000018679,0.0000018656,0.0000018645,0.0000018643,0.0000018642, +0.0000018636,0.0000018631,0.0000018627,0.0000018620,0.0000018609, +0.0000018600,0.0000018597,0.0000018590,0.0000018583,0.0000018587, +0.0000018603,0.0000018616,0.0000018623,0.0000018632,0.0000018653, +0.0000018691,0.0000018752,0.0000018843,0.0000018966,0.0000019104, +0.0000019237,0.0000019355,0.0000019455,0.0000019529,0.0000019578, +0.0000019604,0.0000019604,0.0000019613,0.0000019615,0.0000019607, +0.0000019597,0.0000019590,0.0000019590,0.0000019587,0.0000019588, +0.0000019588,0.0000019589,0.0000019596,0.0000019608,0.0000019623, +0.0000019639,0.0000019653,0.0000019667,0.0000019666,0.0000019675, +0.0000019681,0.0000019670,0.0000019642,0.0000019606,0.0000019570, +0.0000019538,0.0000019511,0.0000019486,0.0000019464,0.0000019441, +0.0000019423,0.0000019415,0.0000019418,0.0000019414,0.0000019398, +0.0000019378,0.0000019361,0.0000019357,0.0000019367,0.0000019387, +0.0000019403,0.0000019412,0.0000019415,0.0000019411,0.0000019396, +0.0000019372,0.0000019348,0.0000019334,0.0000019328,0.0000019326, +0.0000019318,0.0000019303,0.0000019283,0.0000019265,0.0000019251, +0.0000019230,0.0000019200,0.0000019165,0.0000019139,0.0000019128, +0.0000019126,0.0000019126,0.0000019126,0.0000019126,0.0000019123, +0.0000019114,0.0000019102,0.0000019091,0.0000019080,0.0000019066, +0.0000019050,0.0000019031,0.0000019004,0.0000018975,0.0000018950, +0.0000018927,0.0000018906,0.0000018884,0.0000018862,0.0000018835, +0.0000018803,0.0000018773,0.0000018748,0.0000018729,0.0000018720, +0.0000018702,0.0000018687,0.0000018678,0.0000018671,0.0000018662, +0.0000018653,0.0000018649,0.0000018658,0.0000018681,0.0000018715, +0.0000018752,0.0000018787,0.0000018824,0.0000018860,0.0000018879, +0.0000018895,0.0000018894,0.0000018878,0.0000018850,0.0000018819, +0.0000018797,0.0000018789,0.0000018791,0.0000018791,0.0000018796, +0.0000018805,0.0000018814,0.0000018814,0.0000018808,0.0000018791, +0.0000018764,0.0000018730,0.0000018695,0.0000018661,0.0000018628, +0.0000018593,0.0000018560,0.0000018529,0.0000018501,0.0000018480, +0.0000018466,0.0000018450,0.0000018411,0.0000018344,0.0000018257, +0.0000018185,0.0000018156,0.0000018185,0.0000018280,0.0000018420, +0.0000018552,0.0000018643,0.0000018683,0.0000018677,0.0000018637, +0.0000018566,0.0000018482,0.0000018396,0.0000018314,0.0000018269, +0.0000018273,0.0000018366,0.0000018512,0.0000018653,0.0000018753, +0.0000018798,0.0000018800,0.0000018778,0.0000018745,0.0000018703, +0.0000018653,0.0000018586,0.0000018507,0.0000018413,0.0000018317, +0.0000018243,0.0000018199,0.0000018184,0.0000018177,0.0000018176, +0.0000018178,0.0000018189,0.0000018209,0.0000018237,0.0000018259, +0.0000018259,0.0000018247,0.0000018234,0.0000018219,0.0000018198, +0.0000018185,0.0000018182,0.0000018191,0.0000018213,0.0000018242, +0.0000018274,0.0000018307,0.0000018342,0.0000018369,0.0000018374, +0.0000018351,0.0000018320,0.0000018303,0.0000018298,0.0000018292, +0.0000018281,0.0000018257,0.0000018223,0.0000018190,0.0000018170, +0.0000018161,0.0000018168,0.0000018184,0.0000018200,0.0000018211, +0.0000018219,0.0000018222,0.0000018218,0.0000018200,0.0000018164, +0.0000018112,0.0000018048,0.0000017980,0.0000017918,0.0000017868, +0.0000017828,0.0000017795,0.0000017766,0.0000017747,0.0000017746, +0.0000017761,0.0000017778,0.0000017785,0.0000017786,0.0000017785, +0.0000017788,0.0000017794,0.0000017799,0.0000017805,0.0000017812, +0.0000017815,0.0000017818,0.0000017824,0.0000017832,0.0000017835, +0.0000017833,0.0000017829,0.0000017825,0.0000017816,0.0000017803, +0.0000017791,0.0000017780,0.0000017767,0.0000017752,0.0000017734, +0.0000017711,0.0000017683,0.0000017649,0.0000017615,0.0000017584, +0.0000017560,0.0000017542,0.0000017525,0.0000017509,0.0000017496, +0.0000017486,0.0000017478,0.0000017481,0.0000017496,0.0000017529, +0.0000017580,0.0000017641,0.0000017697,0.0000017735,0.0000017757, +0.0000017763,0.0000017756,0.0000017744,0.0000017729,0.0000017713, +0.0000017697,0.0000017681,0.0000017669,0.0000017671,0.0000017672, +0.0000017676,0.0000017681,0.0000017684,0.0000017686,0.0000017688, +0.0000017693,0.0000017700,0.0000017705,0.0000017713,0.0000017723, +0.0000017737,0.0000017759,0.0000017790,0.0000017834,0.0000017873, +0.0000017904,0.0000017901,0.0000017883,0.0000017865,0.0000017868, +0.0000017900,0.0000017967,0.0000018056,0.0000018140,0.0000018202, +0.0000018235,0.0000018249,0.0000018267,0.0000018294,0.0000018320, +0.0000018336,0.0000018342,0.0000018349,0.0000018391,0.0000018477, +0.0000018606,0.0000018764,0.0000018920,0.0000019037,0.0000019149, +0.0000019196,0.0000019216,0.0000019242,0.0000019226,0.0000019214, +0.0000019205,0.0000019200,0.0000019199,0.0000019198,0.0000019196, +0.0000019183,0.0000019145,0.0000019089,0.0000019016,0.0000018939, +0.0000018872,0.0000018823,0.0000018797,0.0000018798,0.0000018800, +0.0000018800,0.0000018800,0.0000018794,0.0000018780,0.0000018760, +0.0000018737,0.0000018711,0.0000018683,0.0000018656,0.0000018635, +0.0000018619,0.0000018602,0.0000018584,0.0000018565,0.0000018544, +0.0000018517,0.0000018489,0.0000018461,0.0000018440,0.0000018427, +0.0000018423,0.0000018424,0.0000018426,0.0000018427,0.0000018426, +0.0000018423,0.0000018421,0.0000018422,0.0000018427,0.0000018442, +0.0000018465,0.0000018491,0.0000018516,0.0000018542,0.0000018573, +0.0000018610,0.0000018649,0.0000018687,0.0000018722,0.0000018753, +0.0000018777,0.0000018792,0.0000018799,0.0000018806,0.0000018815, +0.0000018831,0.0000018851,0.0000018874,0.0000018894,0.0000018905, +0.0000018906,0.0000018906,0.0000018904,0.0000018904,0.0000018900, +0.0000018885,0.0000018858,0.0000018827,0.0000018810,0.0000018820, +0.0000018849,0.0000018872,0.0000018879,0.0000018870,0.0000018768, +0.0000018654,0.0000018617,0.0000018568,0.0000018498,0.0000018541, +0.0000018736,0.0000018861,0.0000018836,0.0000018822,0.0000018812, +0.0000018772,0.0000018754,0.0000018750,0.0000018748,0.0000018749, +0.0000018750,0.0000018754,0.0000018682,0.0000017970,0.0000017689, +0.0000017743,0.0000017655,0.0000017604,0.0000017690,0.0000017727, +0.0000017696,0.0000017667,0.0000017623,0.0000017586,0.0000017561, +0.0000017547,0.0000017544,0.0000017543,0.0000017544,0.0000017543, +0.0000017543,0.0000017546,0.0000017550,0.0000017556,0.0000017569, +0.0000017583,0.0000017590,0.0000017583,0.0000017564,0.0000017538, +0.0000017516,0.0000017497,0.0000017475,0.0000017430,0.0000017384, +0.0000017378,0.0000017442,0.0000017537,0.0000017600,0.0000017608, +0.0000017558,0.0000017544,0.0000017630,0.0000017747,0.0000017808, +0.0000017779,0.0000017725,0.0000017706,0.0000017711,0.0000017723, +0.0000017734,0.0000017744,0.0000017754,0.0000017763,0.0000017772, +0.0000017779,0.0000017781,0.0000017777,0.0000017768,0.0000017760, +0.0000017755,0.0000017752,0.0000017754,0.0000017763,0.0000017779, +0.0000017803,0.0000017831,0.0000017860,0.0000017890,0.0000017915, +0.0000017936,0.0000017949,0.0000017951,0.0000017946,0.0000017935, +0.0000017923,0.0000017917,0.0000017921,0.0000017936,0.0000017958, +0.0000017981,0.0000018001,0.0000017997,0.0000017991,0.0000017975, +0.0000017949,0.0000017920,0.0000017893,0.0000017869,0.0000017849, +0.0000017835,0.0000017826,0.0000017819,0.0000017816,0.0000017819, +0.0000017827,0.0000017840,0.0000017855,0.0000017872,0.0000017888, +0.0000017903,0.0000017915,0.0000017924,0.0000017933,0.0000017943, +0.0000017955,0.0000017971,0.0000017995,0.0000018020,0.0000018047, +0.0000018079,0.0000018111,0.0000018135,0.0000018149,0.0000018152, +0.0000018144,0.0000018128,0.0000018107,0.0000018087,0.0000018081, +0.0000018086,0.0000018092,0.0000018089,0.0000018083,0.0000018083, +0.0000018100,0.0000018134,0.0000018169,0.0000018200,0.0000018216, +0.0000018220,0.0000018220,0.0000018203,0.0000018176,0.0000018140, +0.0000018118,0.0000018119,0.0000018137,0.0000018168,0.0000018212, +0.0000018249,0.0000018277,0.0000018295,0.0000018309,0.0000018322, +0.0000018330,0.0000018340,0.0000018349,0.0000018353,0.0000018354, +0.0000018368,0.0000018370,0.0000018365,0.0000018351,0.0000018329, +0.0000018310,0.0000018293,0.0000018285,0.0000018285,0.0000018288, +0.0000018291,0.0000018291,0.0000018290,0.0000018293,0.0000018298, +0.0000018303,0.0000018306,0.0000018312,0.0000018323,0.0000018334, +0.0000018343,0.0000018349,0.0000018350,0.0000018349,0.0000018346, +0.0000018340,0.0000018329,0.0000018313,0.0000018294,0.0000018274, +0.0000018257,0.0000018242,0.0000018232,0.0000018225,0.0000018226, +0.0000018234,0.0000018249,0.0000018269,0.0000018296,0.0000018328, +0.0000018363,0.0000018404,0.0000018444,0.0000018476,0.0000018501, +0.0000018518,0.0000018527,0.0000018530,0.0000018528,0.0000018521, +0.0000018514,0.0000018511,0.0000018516,0.0000018525,0.0000018541, +0.0000018564,0.0000018590,0.0000018614,0.0000018637,0.0000018653, +0.0000018662,0.0000018663,0.0000018665,0.0000018658,0.0000018641, +0.0000018616,0.0000018576,0.0000018525,0.0000018477,0.0000018429, +0.0000018401,0.0000018390,0.0000018410,0.0000018437,0.0000018477, +0.0000018518,0.0000018546,0.0000018545,0.0000018521,0.0000018451, +0.0000018349,0.0000018251,0.0000018190,0.0000018184,0.0000018205, +0.0000018232,0.0000018244,0.0000018221,0.0000018177,0.0000018130, +0.0000018088,0.0000018051,0.0000018016,0.0000017978,0.0000017947, +0.0000017936,0.0000017945,0.0000017977,0.0000018018,0.0000018056, +0.0000018091,0.0000018122,0.0000018151,0.0000018175,0.0000018192, +0.0000018202,0.0000018212,0.0000018219,0.0000018224,0.0000018227, +0.0000018230,0.0000018229,0.0000018227,0.0000018230,0.0000018243, +0.0000018264,0.0000018283,0.0000018303,0.0000018319,0.0000018323, +0.0000018320,0.0000018317,0.0000018316,0.0000018313,0.0000018296, +0.0000018255,0.0000018192,0.0000018117,0.0000018043,0.0000017979, +0.0000017929,0.0000017889,0.0000017859,0.0000017842,0.0000017833, +0.0000017826,0.0000017828,0.0000017841,0.0000017859,0.0000017878, +0.0000017890,0.0000017895,0.0000017895,0.0000017892,0.0000017891, +0.0000017897,0.0000017908,0.0000017922,0.0000017932,0.0000017938, +0.0000017937,0.0000017934,0.0000017929,0.0000017920,0.0000017912, +0.0000017903,0.0000017890,0.0000017872,0.0000017852,0.0000017833, +0.0000017816,0.0000017804,0.0000017800,0.0000017805,0.0000017815, +0.0000017822,0.0000017824,0.0000017821,0.0000017818,0.0000017818, +0.0000017824,0.0000017835,0.0000017848,0.0000017859,0.0000017868, +0.0000017877,0.0000017889,0.0000017906,0.0000017923,0.0000017934, +0.0000017936,0.0000017931,0.0000017923,0.0000017911,0.0000017890, +0.0000017866,0.0000017846,0.0000017834,0.0000017822,0.0000017807, +0.0000017784,0.0000017755,0.0000017726,0.0000017696,0.0000017672, +0.0000017654,0.0000017643,0.0000017636,0.0000017625,0.0000017625, +0.0000017628,0.0000017629,0.0000017626,0.0000017618,0.0000017607, +0.0000017591,0.0000017568,0.0000017546,0.0000017527,0.0000017516, +0.0000017502,0.0000017498,0.0000017496,0.0000017505,0.0000017519, +0.0000017537,0.0000017554,0.0000017575,0.0000017601,0.0000017633, +0.0000017661,0.0000017684,0.0000017707,0.0000017724,0.0000017746, +0.0000017759,0.0000017758,0.0000017745,0.0000017728,0.0000017711, +0.0000017693,0.0000017672,0.0000017656,0.0000017642,0.0000017634, +0.0000017641,0.0000017659,0.0000017687,0.0000017723,0.0000017762, +0.0000017799,0.0000017820,0.0000017832,0.0000017828,0.0000017807, +0.0000017770,0.0000017718,0.0000017655,0.0000017595,0.0000017544, +0.0000017501,0.0000017459,0.0000017421,0.0000017413,0.0000017407, +0.0000017421,0.0000017442,0.0000017465,0.0000017464,0.0000017444, +0.0000017404,0.0000017349,0.0000017306,0.0000017293,0.0000017317, +0.0000017382,0.0000017463,0.0000017550,0.0000017634,0.0000017707, +0.0000017758,0.0000017786,0.0000017796,0.0000017808,0.0000017839, +0.0000017861,0.0000017859,0.0000017824,0.0000017739,0.0000017629, +0.0000017514,0.0000017424,0.0000017379,0.0000017369,0.0000017373, +0.0000017373,0.0000017367,0.0000017359,0.0000017347,0.0000017330, +0.0000017309,0.0000017291,0.0000017278,0.0000017271,0.0000017272, +0.0000017278,0.0000017288,0.0000017300,0.0000017306,0.0000017307, +0.0000017301,0.0000017291,0.0000017278,0.0000017268,0.0000017260, +0.0000017258,0.0000017263,0.0000017267,0.0000017278,0.0000017289, +0.0000017307,0.0000017328,0.0000017345,0.0000017356,0.0000017363, +0.0000017369,0.0000017375,0.0000017379,0.0000017382,0.0000017388, +0.0000017401,0.0000017415,0.0000017427,0.0000017435,0.0000017438, +0.0000017440,0.0000017445,0.0000017449,0.0000017450,0.0000017450, +0.0000017448,0.0000017445,0.0000017443,0.0000017444,0.0000017451, +0.0000017463,0.0000017479,0.0000017498,0.0000017518,0.0000017534, +0.0000017544,0.0000017547,0.0000017542,0.0000017530,0.0000017512, +0.0000017494,0.0000017479,0.0000017464,0.0000017454,0.0000017449, +0.0000017449,0.0000017447,0.0000017440,0.0000017427,0.0000017408, +0.0000017384,0.0000017361,0.0000017343,0.0000017335,0.0000017337, +0.0000017352,0.0000017383,0.0000017436,0.0000017516,0.0000017612, +0.0000017705,0.0000017766,0.0000017777,0.0000017758,0.0000017697, +0.0000017627,0.0000017571,0.0000017542,0.0000017535,0.0000017539, +0.0000017542,0.0000017541,0.0000017537,0.0000017536,0.0000017550, +0.0000017578,0.0000017613,0.0000017647,0.0000017671,0.0000017686, +0.0000017695,0.0000017702,0.0000017715,0.0000017734,0.0000017758, +0.0000017782,0.0000017800,0.0000017810,0.0000017817,0.0000017824, +0.0000017837,0.0000017861,0.0000017900,0.0000017954,0.0000018013, +0.0000018070,0.0000018119,0.0000018155,0.0000018179,0.0000018191, +0.0000018197,0.0000018197,0.0000018196,0.0000018185,0.0000018175, +0.0000018164,0.0000018147,0.0000018132,0.0000018133,0.0000018146, +0.0000018161,0.0000018177,0.0000018199,0.0000018233,0.0000018272, +0.0000018309,0.0000018348,0.0000018387,0.0000018421,0.0000018450, +0.0000018473,0.0000018503,0.0000018519,0.0000018528,0.0000018531, +0.0000018546,0.0000018555,0.0000018560,0.0000018581,0.0000018602, +0.0000018622,0.0000018639,0.0000018652,0.0000018656,0.0000018665, +0.0000018672,0.0000018674,0.0000018666,0.0000018653,0.0000018638, +0.0000018611,0.0000018581,0.0000018551,0.0000018522,0.0000018494, +0.0000018466,0.0000018446,0.0000018433,0.0000018421,0.0000018417, +0.0000018415,0.0000018412,0.0000018412,0.0000018412,0.0000018409, +0.0000018410,0.0000018416,0.0000018422,0.0000018430,0.0000018431, +0.0000018424,0.0000018412,0.0000018396,0.0000018373,0.0000018338, +0.0000018298,0.0000018254,0.0000018211,0.0000018173,0.0000018138, +0.0000018107,0.0000018077,0.0000018052,0.0000018032,0.0000018014, +0.0000017999,0.0000017985,0.0000017968,0.0000017950,0.0000017935, +0.0000017926,0.0000017913,0.0000017900,0.0000017892,0.0000017889, +0.0000017890,0.0000017902,0.0000017918,0.0000017932,0.0000017922, +0.0000017904,0.0000017881,0.0000017847,0.0000017797,0.0000017738, +0.0000017678,0.0000017614,0.0000017551,0.0000017499,0.0000017457, +0.0000017422,0.0000017400,0.0000017390,0.0000017387,0.0000017382, +0.0000017376,0.0000017372,0.0000017371,0.0000017374,0.0000017376, +0.0000017378,0.0000017380,0.0000017381,0.0000017382,0.0000017386, +0.0000017388,0.0000017389,0.0000017388,0.0000017383,0.0000017370, +0.0000017348,0.0000017320,0.0000017289,0.0000017255,0.0000017219, +0.0000017188,0.0000017166,0.0000017156,0.0000017148,0.0000017154, +0.0000017173,0.0000017196,0.0000017222,0.0000017257,0.0000017296, +0.0000017340,0.0000017381,0.0000017410,0.0000017432,0.0000017440, +0.0000017437,0.0000017434,0.0000017427,0.0000017421,0.0000017416, +0.0000017409,0.0000017401,0.0000017393,0.0000017386,0.0000017384, +0.0000017393,0.0000017402,0.0000017413,0.0000017423,0.0000017436, +0.0000017463,0.0000017502,0.0000017551,0.0000017604,0.0000017658, +0.0000017717,0.0000017782,0.0000017855,0.0000017938,0.0000018037, +0.0000018147,0.0000018258,0.0000018364,0.0000018463,0.0000018554, +0.0000018632,0.0000018697,0.0000018751,0.0000018799,0.0000018834, +0.0000018863,0.0000018899,0.0000018931,0.0000018967,0.0000019003, +0.0000019037,0.0000019075,0.0000019108,0.0000019136,0.0000019163, +0.0000019188,0.0000019211,0.0000019233,0.0000019256,0.0000019283, +0.0000019312,0.0000019338,0.0000019359,0.0000019368,0.0000019365, +0.0000019349,0.0000019329,0.0000019309,0.0000019286,0.0000019257, +0.0000019224,0.0000019189,0.0000019154,0.0000019122,0.0000019092, +0.0000019064,0.0000019042,0.0000019029,0.0000019019,0.0000019013, +0.0000019004,0.0000018990,0.0000018975,0.0000018958,0.0000018930, +0.0000018893,0.0000018860,0.0000018824,0.0000018774,0.0000018712, +0.0000018642,0.0000018577,0.0000018520,0.0000018471,0.0000018424, +0.0000018368,0.0000018307,0.0000018250,0.0000018202,0.0000018168, +0.0000018148,0.0000018140,0.0000018129,0.0000018115,0.0000018110, +0.0000018113,0.0000018119,0.0000018129,0.0000018146,0.0000018173, +0.0000018204,0.0000018241,0.0000018287,0.0000018324,0.0000018339, +0.0000018337,0.0000018320,0.0000018299,0.0000018289,0.0000018300, +0.0000018340,0.0000018414,0.0000018525,0.0000018675,0.0000018853, +0.0000019036,0.0000019200,0.0000019333,0.0000019435,0.0000019514, +0.0000019565,0.0000019590,0.0000019602,0.0000019601,0.0000019609, +0.0000019615,0.0000019609,0.0000019597,0.0000019582,0.0000019568, +0.0000019557,0.0000019550,0.0000019548,0.0000019553,0.0000019571, +0.0000019596,0.0000019623,0.0000019647,0.0000019663,0.0000019665, +0.0000019660,0.0000019642,0.0000019619,0.0000019590,0.0000019562, +0.0000019541,0.0000019519,0.0000019498,0.0000019487,0.0000019486, +0.0000019480,0.0000019461,0.0000019431,0.0000019399,0.0000019374, +0.0000019373,0.0000019390,0.0000019414,0.0000019435,0.0000019456, +0.0000019470,0.0000019466,0.0000019447,0.0000019420,0.0000019398, +0.0000019385,0.0000019380,0.0000019374,0.0000019364,0.0000019348, +0.0000019333,0.0000019321,0.0000019305,0.0000019278,0.0000019239, +0.0000019198,0.0000019167,0.0000019149,0.0000019146,0.0000019152, +0.0000019159,0.0000019161,0.0000019155,0.0000019145,0.0000019134, +0.0000019124,0.0000019117,0.0000019109,0.0000019099,0.0000019087, +0.0000019076,0.0000019061,0.0000019036,0.0000019003,0.0000018966, +0.0000018928,0.0000018890,0.0000018854,0.0000018821,0.0000018793, +0.0000018770,0.0000018752,0.0000018725,0.0000018695,0.0000018670, +0.0000018660,0.0000018654,0.0000018647,0.0000018642,0.0000018636, +0.0000018642,0.0000018658,0.0000018677,0.0000018695,0.0000018712, +0.0000018734,0.0000018772,0.0000018833,0.0000018889,0.0000018914, +0.0000018918,0.0000018903,0.0000018874,0.0000018840,0.0000018811, +0.0000018800,0.0000018801,0.0000018805,0.0000018809,0.0000018810, +0.0000018807,0.0000018797,0.0000018780,0.0000018760,0.0000018741, +0.0000018728,0.0000018721,0.0000018711,0.0000018691,0.0000018659, +0.0000018619,0.0000018579,0.0000018551,0.0000018535,0.0000018526, +0.0000018514,0.0000018480,0.0000018420,0.0000018349,0.0000018289, +0.0000018271,0.0000018291,0.0000018367,0.0000018464,0.0000018561, +0.0000018634,0.0000018654,0.0000018631,0.0000018572,0.0000018493, +0.0000018398,0.0000018303,0.0000018248,0.0000018259,0.0000018342, +0.0000018490,0.0000018633,0.0000018730,0.0000018769,0.0000018769, +0.0000018742,0.0000018709,0.0000018668,0.0000018611,0.0000018541, +0.0000018458,0.0000018368,0.0000018283,0.0000018216,0.0000018173, +0.0000018151,0.0000018146,0.0000018145,0.0000018141,0.0000018150, +0.0000018180,0.0000018211,0.0000018220,0.0000018211,0.0000018202, +0.0000018199,0.0000018196,0.0000018194,0.0000018200,0.0000018216, +0.0000018237,0.0000018260,0.0000018284,0.0000018307,0.0000018332, +0.0000018351,0.0000018353,0.0000018333,0.0000018303,0.0000018288, +0.0000018290,0.0000018291,0.0000018278,0.0000018250,0.0000018215, +0.0000018179,0.0000018146,0.0000018122,0.0000018115,0.0000018119, +0.0000018127,0.0000018136,0.0000018146,0.0000018152,0.0000018147, +0.0000018128,0.0000018100,0.0000018068,0.0000018027,0.0000017978, +0.0000017931,0.0000017895,0.0000017867,0.0000017846,0.0000017828, +0.0000017814,0.0000017805,0.0000017799,0.0000017793,0.0000017783, +0.0000017772,0.0000017764,0.0000017764,0.0000017775,0.0000017797, +0.0000017823,0.0000017851,0.0000017881,0.0000017906,0.0000017926, +0.0000017941,0.0000017951,0.0000017957,0.0000017962,0.0000017966, +0.0000017966,0.0000017961,0.0000017956,0.0000017949,0.0000017942, +0.0000017934,0.0000017916,0.0000017885,0.0000017839,0.0000017778, +0.0000017708,0.0000017638,0.0000017577,0.0000017533,0.0000017514, +0.0000017504,0.0000017504,0.0000017512,0.0000017517,0.0000017516, +0.0000017516,0.0000017521,0.0000017537,0.0000017565,0.0000017596, +0.0000017626,0.0000017654,0.0000017683,0.0000017713,0.0000017736, +0.0000017741,0.0000017741,0.0000017736,0.0000017727,0.0000017717, +0.0000017702,0.0000017683,0.0000017673,0.0000017661,0.0000017660, +0.0000017662,0.0000017666,0.0000017673,0.0000017679,0.0000017683, +0.0000017690,0.0000017701,0.0000017717,0.0000017732,0.0000017749, +0.0000017776,0.0000017817,0.0000017853,0.0000017880,0.0000017875, +0.0000017856,0.0000017844,0.0000017848,0.0000017882,0.0000017953, +0.0000018048,0.0000018136,0.0000018201,0.0000018232,0.0000018242, +0.0000018254,0.0000018279,0.0000018305,0.0000018322,0.0000018328, +0.0000018331,0.0000018359,0.0000018427,0.0000018541,0.0000018679, +0.0000018827,0.0000018969,0.0000019081,0.0000019190,0.0000019239, +0.0000019247,0.0000019273,0.0000019252,0.0000019228,0.0000019204, +0.0000019192,0.0000019195,0.0000019198,0.0000019194,0.0000019177, +0.0000019143,0.0000019091,0.0000019022,0.0000018952,0.0000018891, +0.0000018841,0.0000018806,0.0000018794,0.0000018784,0.0000018779, +0.0000018774,0.0000018773,0.0000018771,0.0000018764,0.0000018754, +0.0000018742,0.0000018730,0.0000018719,0.0000018705,0.0000018686, +0.0000018662,0.0000018634,0.0000018605,0.0000018577,0.0000018555, +0.0000018539,0.0000018529,0.0000018525,0.0000018528,0.0000018532, +0.0000018534,0.0000018532,0.0000018532,0.0000018536,0.0000018548, +0.0000018571,0.0000018602,0.0000018640,0.0000018679,0.0000018716, +0.0000018752,0.0000018787,0.0000018820,0.0000018845,0.0000018861, +0.0000018869,0.0000018871,0.0000018868,0.0000018863,0.0000018865, +0.0000018879,0.0000018897,0.0000018918,0.0000018937,0.0000018934, +0.0000018924,0.0000018902,0.0000018883,0.0000018876,0.0000018879, +0.0000018893,0.0000018909,0.0000018902,0.0000018888,0.0000018869, +0.0000018867,0.0000018871,0.0000018882,0.0000018888,0.0000018833, +0.0000018695,0.0000018623,0.0000018590,0.0000018529,0.0000018541, +0.0000018706,0.0000018854,0.0000018858,0.0000018837,0.0000018835, +0.0000018808,0.0000018778,0.0000018765,0.0000018758,0.0000018757, +0.0000018765,0.0000018775,0.0000018778,0.0000018693,0.0000017982, +0.0000017718,0.0000017746,0.0000017664,0.0000017599,0.0000017631, +0.0000017663,0.0000017670,0.0000017664,0.0000017648,0.0000017635, +0.0000017610,0.0000017583,0.0000017564,0.0000017555,0.0000017548, +0.0000017549,0.0000017550,0.0000017551,0.0000017550,0.0000017548, +0.0000017546,0.0000017545,0.0000017544,0.0000017540,0.0000017531, +0.0000017518,0.0000017496,0.0000017463,0.0000017425,0.0000017409, +0.0000017443,0.0000017520,0.0000017589,0.0000017618,0.0000017593, +0.0000017541,0.0000017578,0.0000017695,0.0000017792,0.0000017803, +0.0000017744,0.0000017702,0.0000017703,0.0000017711,0.0000017714, +0.0000017715,0.0000017716,0.0000017718,0.0000017721,0.0000017724, +0.0000017728,0.0000017735,0.0000017743,0.0000017751,0.0000017758, +0.0000017761,0.0000017761,0.0000017758,0.0000017754,0.0000017748, +0.0000017750,0.0000017761,0.0000017779,0.0000017804,0.0000017831, +0.0000017857,0.0000017879,0.0000017895,0.0000017905,0.0000017905, +0.0000017898,0.0000017885,0.0000017872,0.0000017863,0.0000017864, +0.0000017877,0.0000017903,0.0000017933,0.0000017961,0.0000017987, +0.0000017987,0.0000017993,0.0000017985,0.0000017971,0.0000017954, +0.0000017935,0.0000017919,0.0000017905,0.0000017893,0.0000017885, +0.0000017883,0.0000017885,0.0000017890,0.0000017897,0.0000017907, +0.0000017917,0.0000017925,0.0000017933,0.0000017943,0.0000017955, +0.0000017970,0.0000017989,0.0000018014,0.0000018040,0.0000018062, +0.0000018080,0.0000018101,0.0000018111,0.0000018118,0.0000018120, +0.0000018114,0.0000018101,0.0000018083,0.0000018061,0.0000018049, +0.0000018049,0.0000018058,0.0000018066,0.0000018068,0.0000018074, +0.0000018093,0.0000018122,0.0000018156,0.0000018191,0.0000018214, +0.0000018226,0.0000018229,0.0000018224,0.0000018204,0.0000018176, +0.0000018151,0.0000018140,0.0000018144,0.0000018167,0.0000018195, +0.0000018222,0.0000018249,0.0000018273,0.0000018295,0.0000018311, +0.0000018322,0.0000018331,0.0000018340,0.0000018349,0.0000018358, +0.0000018380,0.0000018359,0.0000018330,0.0000018296,0.0000018266, +0.0000018248,0.0000018237,0.0000018234,0.0000018240,0.0000018248, +0.0000018254,0.0000018258,0.0000018265,0.0000018273,0.0000018281, +0.0000018288,0.0000018295,0.0000018303,0.0000018311,0.0000018316, +0.0000018317,0.0000018318,0.0000018319,0.0000018319,0.0000018319, +0.0000018317,0.0000018311,0.0000018299,0.0000018285,0.0000018269, +0.0000018255,0.0000018242,0.0000018232,0.0000018227,0.0000018226, +0.0000018231,0.0000018239,0.0000018252,0.0000018274,0.0000018306, +0.0000018340,0.0000018375,0.0000018409,0.0000018440,0.0000018466, +0.0000018485,0.0000018497,0.0000018500,0.0000018494,0.0000018481, +0.0000018464,0.0000018454,0.0000018447,0.0000018445,0.0000018450, +0.0000018465,0.0000018490,0.0000018521,0.0000018553,0.0000018585, +0.0000018616,0.0000018643,0.0000018665,0.0000018674,0.0000018688, +0.0000018695,0.0000018688,0.0000018666,0.0000018632,0.0000018581, +0.0000018523,0.0000018473,0.0000018443,0.0000018428,0.0000018443, +0.0000018468,0.0000018503,0.0000018531,0.0000018542,0.0000018536, +0.0000018488,0.0000018408,0.0000018313,0.0000018246,0.0000018218, +0.0000018234,0.0000018253,0.0000018261,0.0000018249,0.0000018216, +0.0000018171,0.0000018126,0.0000018091,0.0000018049,0.0000018000, +0.0000017947,0.0000017919,0.0000017903,0.0000017919,0.0000017946, +0.0000017983,0.0000018021,0.0000018057,0.0000018090,0.0000018117, +0.0000018142,0.0000018164,0.0000018181,0.0000018198,0.0000018215, +0.0000018227,0.0000018231,0.0000018234,0.0000018234,0.0000018236, +0.0000018242,0.0000018257,0.0000018281,0.0000018311,0.0000018334, +0.0000018349,0.0000018353,0.0000018349,0.0000018344,0.0000018339, +0.0000018329,0.0000018305,0.0000018259,0.0000018190,0.0000018107, +0.0000018025,0.0000017958,0.0000017905,0.0000017863,0.0000017836, +0.0000017826,0.0000017820,0.0000017825,0.0000017838,0.0000017858, +0.0000017880,0.0000017897,0.0000017902,0.0000017906,0.0000017904, +0.0000017904,0.0000017910,0.0000017920,0.0000017932,0.0000017941, +0.0000017947,0.0000017950,0.0000017951,0.0000017949,0.0000017945, +0.0000017941,0.0000017936,0.0000017930,0.0000017929,0.0000017929, +0.0000017930,0.0000017932,0.0000017935,0.0000017941,0.0000017944, +0.0000017943,0.0000017934,0.0000017918,0.0000017901,0.0000017888, +0.0000017883,0.0000017886,0.0000017895,0.0000017909,0.0000017924, +0.0000017941,0.0000017959,0.0000017979,0.0000018001,0.0000018020, +0.0000018030,0.0000018030,0.0000018022,0.0000018007,0.0000017986, +0.0000017960,0.0000017933,0.0000017908,0.0000017887,0.0000017869, +0.0000017850,0.0000017834,0.0000017815,0.0000017790,0.0000017761, +0.0000017728,0.0000017696,0.0000017667,0.0000017647,0.0000017636, +0.0000017632,0.0000017631,0.0000017631,0.0000017630,0.0000017625, +0.0000017616,0.0000017609,0.0000017600,0.0000017588,0.0000017578, +0.0000017567,0.0000017548,0.0000017528,0.0000017512,0.0000017496, +0.0000017484,0.0000017460,0.0000017450,0.0000017456,0.0000017466, +0.0000017489,0.0000017521,0.0000017565,0.0000017612,0.0000017651, +0.0000017680,0.0000017696,0.0000017702,0.0000017703,0.0000017697, +0.0000017683,0.0000017671,0.0000017658,0.0000017647,0.0000017641, +0.0000017641,0.0000017646,0.0000017663,0.0000017689,0.0000017713, +0.0000017736,0.0000017759,0.0000017781,0.0000017800,0.0000017806, +0.0000017804,0.0000017785,0.0000017755,0.0000017727,0.0000017695, +0.0000017654,0.0000017601,0.0000017544,0.0000017486,0.0000017436, +0.0000017422,0.0000017415,0.0000017426,0.0000017447,0.0000017460, +0.0000017450,0.0000017417,0.0000017369,0.0000017318,0.0000017284, +0.0000017276,0.0000017299,0.0000017360,0.0000017437,0.0000017516, +0.0000017589,0.0000017654,0.0000017700,0.0000017726,0.0000017742, +0.0000017766,0.0000017809,0.0000017834,0.0000017849,0.0000017829, +0.0000017767,0.0000017670,0.0000017554,0.0000017450,0.0000017390, +0.0000017372,0.0000017372,0.0000017369,0.0000017358,0.0000017346, +0.0000017333,0.0000017319,0.0000017304,0.0000017288,0.0000017277, +0.0000017273,0.0000017276,0.0000017287,0.0000017304,0.0000017322, +0.0000017333,0.0000017331,0.0000017319,0.0000017300,0.0000017286, +0.0000017278,0.0000017274,0.0000017273,0.0000017277,0.0000017286, +0.0000017299,0.0000017305,0.0000017313,0.0000017318,0.0000017320, +0.0000017323,0.0000017327,0.0000017330,0.0000017336,0.0000017345, +0.0000017355,0.0000017364,0.0000017372,0.0000017377,0.0000017385, +0.0000017399,0.0000017414,0.0000017431,0.0000017445,0.0000017461, +0.0000017477,0.0000017496,0.0000017518,0.0000017541,0.0000017565, +0.0000017587,0.0000017599,0.0000017604,0.0000017601,0.0000017589, +0.0000017573,0.0000017556,0.0000017537,0.0000017516,0.0000017498, +0.0000017486,0.0000017480,0.0000017476,0.0000017476,0.0000017476, +0.0000017471,0.0000017457,0.0000017436,0.0000017413,0.0000017391, +0.0000017374,0.0000017367,0.0000017372,0.0000017392,0.0000017433, +0.0000017503,0.0000017596,0.0000017693,0.0000017766,0.0000017774, +0.0000017748,0.0000017682,0.0000017611,0.0000017553,0.0000017519, +0.0000017509,0.0000017508,0.0000017509,0.0000017509,0.0000017512, +0.0000017521,0.0000017535,0.0000017559,0.0000017597,0.0000017634, +0.0000017666,0.0000017686,0.0000017698,0.0000017709,0.0000017725, +0.0000017748,0.0000017773,0.0000017796,0.0000017808,0.0000017811, +0.0000017813,0.0000017823,0.0000017849,0.0000017892,0.0000017942, +0.0000017993,0.0000018041,0.0000018084,0.0000018119,0.0000018145, +0.0000018158,0.0000018172,0.0000018170,0.0000018167,0.0000018167, +0.0000018170,0.0000018177,0.0000018186,0.0000018202,0.0000018217, +0.0000018235,0.0000018262,0.0000018292,0.0000018322,0.0000018348, +0.0000018364,0.0000018376,0.0000018392,0.0000018405,0.0000018420, +0.0000018423,0.0000018435,0.0000018451,0.0000018455,0.0000018462, +0.0000018473,0.0000018475,0.0000018469,0.0000018462,0.0000018461, +0.0000018461,0.0000018466,0.0000018476,0.0000018493,0.0000018513, +0.0000018533,0.0000018554,0.0000018579,0.0000018606,0.0000018632, +0.0000018651,0.0000018665,0.0000018684,0.0000018696,0.0000018676, +0.0000018687,0.0000018683,0.0000018658,0.0000018645,0.0000018621, +0.0000018596,0.0000018574,0.0000018549,0.0000018526,0.0000018505, +0.0000018485,0.0000018466,0.0000018441,0.0000018421,0.0000018414, +0.0000018415,0.0000018418,0.0000018436,0.0000018444,0.0000018460, +0.0000018471,0.0000018479,0.0000018487,0.0000018473,0.0000018450, +0.0000018415,0.0000018370,0.0000018325,0.0000018276,0.0000018225, +0.0000018174,0.0000018136,0.0000018105,0.0000018081,0.0000018067, +0.0000018056,0.0000018041,0.0000018023,0.0000018002,0.0000017983, +0.0000017961,0.0000017939,0.0000017920,0.0000017906,0.0000017900, +0.0000017907,0.0000017925,0.0000017941,0.0000017957,0.0000017970, +0.0000017987,0.0000017984,0.0000017957,0.0000017916,0.0000017865, +0.0000017800,0.0000017724,0.0000017647,0.0000017574,0.0000017509, +0.0000017461,0.0000017432,0.0000017415,0.0000017399,0.0000017387, +0.0000017380,0.0000017376,0.0000017380,0.0000017388,0.0000017399, +0.0000017411,0.0000017413,0.0000017407,0.0000017398,0.0000017392, +0.0000017390,0.0000017392,0.0000017394,0.0000017390,0.0000017377, +0.0000017362,0.0000017348,0.0000017338,0.0000017323,0.0000017301, +0.0000017274,0.0000017241,0.0000017212,0.0000017190,0.0000017181, +0.0000017178,0.0000017181,0.0000017201,0.0000017233,0.0000017270, +0.0000017314,0.0000017359,0.0000017398,0.0000017421,0.0000017434, +0.0000017436,0.0000017436,0.0000017438,0.0000017437,0.0000017435, +0.0000017432,0.0000017428,0.0000017422,0.0000017422,0.0000017426, +0.0000017429,0.0000017430,0.0000017430,0.0000017436,0.0000017440, +0.0000017451,0.0000017464,0.0000017476,0.0000017488,0.0000017500, +0.0000017516,0.0000017531,0.0000017545,0.0000017568,0.0000017605, +0.0000017653,0.0000017713,0.0000017782,0.0000017857,0.0000017936, +0.0000018016,0.0000018092,0.0000018165,0.0000018232,0.0000018303, +0.0000018375,0.0000018444,0.0000018520,0.0000018591,0.0000018660, +0.0000018722,0.0000018774,0.0000018823,0.0000018866,0.0000018901, +0.0000018931,0.0000018959,0.0000018992,0.0000019033,0.0000019082, +0.0000019134,0.0000019182,0.0000019219,0.0000019243,0.0000019257, +0.0000019262,0.0000019259,0.0000019245,0.0000019224,0.0000019195, +0.0000019166,0.0000019139,0.0000019117,0.0000019097,0.0000019080, +0.0000019064,0.0000019048,0.0000019033,0.0000019012,0.0000018985, +0.0000018953,0.0000018917,0.0000018873,0.0000018815,0.0000018758, +0.0000018701,0.0000018630,0.0000018550,0.0000018466,0.0000018385, +0.0000018307,0.0000018231,0.0000018157,0.0000018074,0.0000017979, +0.0000017889,0.0000017813,0.0000017748,0.0000017697,0.0000017662, +0.0000017630,0.0000017593,0.0000017559,0.0000017540,0.0000017537, +0.0000017542,0.0000017555,0.0000017587,0.0000017631,0.0000017679, +0.0000017736,0.0000017797,0.0000017845,0.0000017872,0.0000017881, +0.0000017881,0.0000017881,0.0000017899,0.0000017934,0.0000017969, +0.0000018010,0.0000018075,0.0000018172,0.0000018300,0.0000018455, +0.0000018637,0.0000018833,0.0000019018,0.0000019179,0.0000019310, +0.0000019406,0.0000019474,0.0000019527,0.0000019562,0.0000019578, +0.0000019581,0.0000019583,0.0000019575,0.0000019565,0.0000019551, +0.0000019536,0.0000019524,0.0000019521,0.0000019529,0.0000019548, +0.0000019570,0.0000019589,0.0000019608,0.0000019624,0.0000019637, +0.0000019634,0.0000019624,0.0000019606,0.0000019588,0.0000019565, +0.0000019544,0.0000019532,0.0000019529,0.0000019525,0.0000019516, +0.0000019501,0.0000019470,0.0000019432,0.0000019404,0.0000019399, +0.0000019412,0.0000019434,0.0000019460,0.0000019485,0.0000019496, +0.0000019492,0.0000019478,0.0000019457,0.0000019438,0.0000019423, +0.0000019411,0.0000019396,0.0000019379,0.0000019365,0.0000019356, +0.0000019351,0.0000019338,0.0000019313,0.0000019278,0.0000019233, +0.0000019191,0.0000019167,0.0000019159,0.0000019162,0.0000019166, +0.0000019164,0.0000019161,0.0000019159,0.0000019154,0.0000019151, +0.0000019145,0.0000019136,0.0000019130,0.0000019132,0.0000019135, +0.0000019132,0.0000019118,0.0000019088,0.0000019041,0.0000018990, +0.0000018941,0.0000018893,0.0000018851,0.0000018818,0.0000018795, +0.0000018771,0.0000018740,0.0000018710,0.0000018693,0.0000018683, +0.0000018674,0.0000018663,0.0000018649,0.0000018645,0.0000018640, +0.0000018639,0.0000018644,0.0000018649,0.0000018653,0.0000018661, +0.0000018688,0.0000018741,0.0000018809,0.0000018867,0.0000018898, +0.0000018910,0.0000018910,0.0000018888,0.0000018853,0.0000018821, +0.0000018811,0.0000018817,0.0000018830,0.0000018837,0.0000018828, +0.0000018801,0.0000018770,0.0000018754,0.0000018750,0.0000018759, +0.0000018773,0.0000018776,0.0000018750,0.0000018703,0.0000018662, +0.0000018645,0.0000018644,0.0000018645,0.0000018634,0.0000018601, +0.0000018561,0.0000018532,0.0000018519,0.0000018509,0.0000018487, +0.0000018460,0.0000018439,0.0000018434,0.0000018466,0.0000018511, +0.0000018560,0.0000018577,0.0000018551,0.0000018487,0.0000018410, +0.0000018339,0.0000018299,0.0000018312,0.0000018379,0.0000018481, +0.0000018596,0.0000018674,0.0000018708,0.0000018711,0.0000018693, +0.0000018666,0.0000018624,0.0000018560,0.0000018488,0.0000018414, +0.0000018339,0.0000018262,0.0000018197,0.0000018160,0.0000018148, +0.0000018146,0.0000018135,0.0000018130,0.0000018145,0.0000018169, +0.0000018178,0.0000018168,0.0000018155,0.0000018152,0.0000018159, +0.0000018175,0.0000018197,0.0000018221,0.0000018243,0.0000018260, +0.0000018273,0.0000018288,0.0000018304,0.0000018316,0.0000018318, +0.0000018310,0.0000018291,0.0000018281,0.0000018286,0.0000018289, +0.0000018277,0.0000018246,0.0000018212,0.0000018176,0.0000018137, +0.0000018103,0.0000018084,0.0000018078,0.0000018079,0.0000018087, +0.0000018096,0.0000018100,0.0000018094,0.0000018081,0.0000018067, +0.0000018051,0.0000018029,0.0000017999,0.0000017968,0.0000017945, +0.0000017928,0.0000017908,0.0000017883,0.0000017856,0.0000017831, +0.0000017812,0.0000017799,0.0000017796,0.0000017801,0.0000017816, +0.0000017843,0.0000017884,0.0000017931,0.0000017977,0.0000018019, +0.0000018058,0.0000018094,0.0000018124,0.0000018147,0.0000018161, +0.0000018170,0.0000018177,0.0000018183,0.0000018187,0.0000018187, +0.0000018187,0.0000018189,0.0000018193,0.0000018195,0.0000018191, +0.0000018175,0.0000018138,0.0000018076,0.0000017994,0.0000017901, +0.0000017804,0.0000017715,0.0000017644,0.0000017592,0.0000017555, +0.0000017531,0.0000017523,0.0000017523,0.0000017525,0.0000017532, +0.0000017548,0.0000017563,0.0000017577,0.0000017586,0.0000017595, +0.0000017612,0.0000017633,0.0000017658,0.0000017690,0.0000017727, +0.0000017743,0.0000017757,0.0000017759,0.0000017748,0.0000017723, +0.0000017694,0.0000017668,0.0000017655,0.0000017648,0.0000017651, +0.0000017655,0.0000017663,0.0000017671,0.0000017679,0.0000017686, +0.0000017697,0.0000017711,0.0000017724,0.0000017738,0.0000017761, +0.0000017797,0.0000017828,0.0000017853,0.0000017849,0.0000017837, +0.0000017824,0.0000017835,0.0000017877,0.0000017948,0.0000018045, +0.0000018131,0.0000018195,0.0000018225,0.0000018236,0.0000018252, +0.0000018281,0.0000018303,0.0000018314,0.0000018316,0.0000018320, +0.0000018338,0.0000018388,0.0000018469,0.0000018586,0.0000018723, +0.0000018864,0.0000018993,0.0000019100,0.0000019198,0.0000019252, +0.0000019250,0.0000019259,0.0000019247,0.0000019230,0.0000019221, +0.0000019218,0.0000019215,0.0000019215,0.0000019208,0.0000019183, +0.0000019147,0.0000019100,0.0000019038,0.0000018963,0.0000018891, +0.0000018829,0.0000018787,0.0000018768,0.0000018757,0.0000018756, +0.0000018763,0.0000018773,0.0000018785,0.0000018796,0.0000018805, +0.0000018810,0.0000018810,0.0000018803,0.0000018791,0.0000018778, +0.0000018763,0.0000018744,0.0000018725,0.0000018711,0.0000018705, +0.0000018705,0.0000018708,0.0000018711,0.0000018714,0.0000018720, +0.0000018730,0.0000018749,0.0000018777,0.0000018809,0.0000018844, +0.0000018878,0.0000018902,0.0000018915,0.0000018924,0.0000018933, +0.0000018939,0.0000018943,0.0000018944,0.0000018946,0.0000018946, +0.0000018950,0.0000018961,0.0000018965,0.0000018962,0.0000018948, +0.0000018902,0.0000018826,0.0000018734,0.0000018644,0.0000018579, +0.0000018555,0.0000018576,0.0000018659,0.0000018777,0.0000018868, +0.0000018898,0.0000018886,0.0000018851,0.0000018837,0.0000018876, +0.0000018876,0.0000018760,0.0000018645,0.0000018604,0.0000018556, +0.0000018550,0.0000018684,0.0000018839,0.0000018871,0.0000018853, +0.0000018852,0.0000018838,0.0000018805,0.0000018780,0.0000018769, +0.0000018762,0.0000018764,0.0000018778,0.0000018792,0.0000018796, +0.0000018735,0.0000018075,0.0000017753,0.0000017759,0.0000017697, +0.0000017603,0.0000017585,0.0000017587,0.0000017598,0.0000017610, +0.0000017622,0.0000017635,0.0000017639,0.0000017632,0.0000017616, +0.0000017595,0.0000017578,0.0000017566,0.0000017563,0.0000017561, +0.0000017559,0.0000017556,0.0000017550,0.0000017545,0.0000017538, +0.0000017526,0.0000017507,0.0000017488,0.0000017475,0.0000017471, +0.0000017494,0.0000017543,0.0000017594,0.0000017616,0.0000017604, +0.0000017562,0.0000017554,0.0000017644,0.0000017765,0.0000017815, +0.0000017777,0.0000017723,0.0000017709,0.0000017719,0.0000017723, +0.0000017719,0.0000017714,0.0000017713,0.0000017713,0.0000017715, +0.0000017716,0.0000017717,0.0000017717,0.0000017719,0.0000017726, +0.0000017736,0.0000017748,0.0000017759,0.0000017769,0.0000017775, +0.0000017775,0.0000017768,0.0000017756,0.0000017749,0.0000017747, +0.0000017755,0.0000017772,0.0000017796,0.0000017822,0.0000017845, +0.0000017861,0.0000017868,0.0000017867,0.0000017858,0.0000017845, +0.0000017829,0.0000017815,0.0000017810,0.0000017817,0.0000017837, +0.0000017869,0.0000017907,0.0000017942,0.0000017973,0.0000017998, +0.0000018001,0.0000018009,0.0000018006,0.0000017999,0.0000017991, +0.0000017979,0.0000017969,0.0000017962,0.0000017959,0.0000017958, +0.0000017961,0.0000017966,0.0000017972,0.0000017979,0.0000017987, +0.0000017998,0.0000018010,0.0000018024,0.0000018035,0.0000018046, +0.0000018055,0.0000018055,0.0000018055,0.0000018053,0.0000018053, +0.0000018053,0.0000018048,0.0000018038,0.0000018026,0.0000018012, +0.0000018003,0.0000018004,0.0000018016,0.0000018031,0.0000018047, +0.0000018066,0.0000018088,0.0000018120,0.0000018151,0.0000018184, +0.0000018210,0.0000018225,0.0000018230,0.0000018224,0.0000018210, +0.0000018194,0.0000018179,0.0000018172,0.0000018177,0.0000018193, +0.0000018215,0.0000018241,0.0000018267,0.0000018289,0.0000018304, +0.0000018314,0.0000018325,0.0000018344,0.0000018365,0.0000018383, +0.0000018388,0.0000018331,0.0000018298,0.0000018271,0.0000018245, +0.0000018224,0.0000018208,0.0000018190,0.0000018177,0.0000018172, +0.0000018170,0.0000018172,0.0000018180,0.0000018193,0.0000018207, +0.0000018218,0.0000018230,0.0000018242,0.0000018252,0.0000018264, +0.0000018275,0.0000018283,0.0000018290,0.0000018296,0.0000018300, +0.0000018301,0.0000018300,0.0000018295,0.0000018286,0.0000018273, +0.0000018257,0.0000018241,0.0000018225,0.0000018215,0.0000018211, +0.0000018214,0.0000018221,0.0000018231,0.0000018243,0.0000018265, +0.0000018297,0.0000018330,0.0000018361,0.0000018391,0.0000018420, +0.0000018442,0.0000018458,0.0000018469,0.0000018475,0.0000018474, +0.0000018463,0.0000018447,0.0000018431,0.0000018418,0.0000018406, +0.0000018401,0.0000018406,0.0000018421,0.0000018444,0.0000018467, +0.0000018491,0.0000018523,0.0000018563,0.0000018602,0.0000018641, +0.0000018673,0.0000018705,0.0000018715,0.0000018725,0.0000018720, +0.0000018700,0.0000018666,0.0000018619,0.0000018565,0.0000018511, +0.0000018474,0.0000018458,0.0000018468,0.0000018487,0.0000018509, +0.0000018533,0.0000018537,0.0000018521,0.0000018466,0.0000018387, +0.0000018311,0.0000018266,0.0000018255,0.0000018266,0.0000018278, +0.0000018277,0.0000018252,0.0000018208,0.0000018165,0.0000018124, +0.0000018078,0.0000018021,0.0000017958,0.0000017910,0.0000017889, +0.0000017875,0.0000017886,0.0000017910,0.0000017942,0.0000017976, +0.0000018009,0.0000018042,0.0000018072,0.0000018097,0.0000018123, +0.0000018148,0.0000018172,0.0000018200,0.0000018223,0.0000018235, +0.0000018241,0.0000018251,0.0000018255,0.0000018260,0.0000018275, +0.0000018297,0.0000018321,0.0000018344,0.0000018355,0.0000018362, +0.0000018359,0.0000018352,0.0000018346,0.0000018335,0.0000018306, +0.0000018253,0.0000018179,0.0000018094,0.0000018012,0.0000017945, +0.0000017894,0.0000017855,0.0000017828,0.0000017821,0.0000017814, +0.0000017821,0.0000017837,0.0000017862,0.0000017889,0.0000017908, +0.0000017915,0.0000017921,0.0000017922,0.0000017928,0.0000017936, +0.0000017943,0.0000017949,0.0000017956,0.0000017962,0.0000017966, +0.0000017973,0.0000017983,0.0000017991,0.0000018000,0.0000018012, +0.0000018027,0.0000018039,0.0000018044,0.0000018042,0.0000018036, +0.0000018026,0.0000018012,0.0000017994,0.0000017972,0.0000017954, +0.0000017940,0.0000017932,0.0000017931,0.0000017938,0.0000017949, +0.0000017963,0.0000017979,0.0000017997,0.0000018016,0.0000018038, +0.0000018063,0.0000018086,0.0000018097,0.0000018096,0.0000018088, +0.0000018074,0.0000018059,0.0000018036,0.0000018011,0.0000017984, +0.0000017951,0.0000017923,0.0000017898,0.0000017874,0.0000017852, +0.0000017829,0.0000017804,0.0000017776,0.0000017751,0.0000017726, +0.0000017707,0.0000017694,0.0000017684,0.0000017676,0.0000017667, +0.0000017658,0.0000017653,0.0000017645,0.0000017636,0.0000017625, +0.0000017619,0.0000017612,0.0000017600,0.0000017592,0.0000017580, +0.0000017566,0.0000017541,0.0000017510,0.0000017475,0.0000017450, +0.0000017422,0.0000017413,0.0000017412,0.0000017427,0.0000017447, +0.0000017471,0.0000017490,0.0000017504,0.0000017517,0.0000017532, +0.0000017546,0.0000017558,0.0000017564,0.0000017571,0.0000017583, +0.0000017600,0.0000017617,0.0000017636,0.0000017662,0.0000017688, +0.0000017707,0.0000017720,0.0000017730,0.0000017737,0.0000017743, +0.0000017750,0.0000017754,0.0000017761,0.0000017764,0.0000017777, +0.0000017779,0.0000017770,0.0000017744,0.0000017706,0.0000017657, +0.0000017597,0.0000017532,0.0000017472,0.0000017436,0.0000017418, +0.0000017408,0.0000017409,0.0000017408,0.0000017401,0.0000017385, +0.0000017353,0.0000017306,0.0000017265,0.0000017253,0.0000017269, +0.0000017316,0.0000017383,0.0000017455,0.0000017525,0.0000017593, +0.0000017652,0.0000017696,0.0000017722,0.0000017743,0.0000017775, +0.0000017793,0.0000017824,0.0000017830,0.0000017797,0.0000017717, +0.0000017603,0.0000017488,0.0000017402,0.0000017358,0.0000017345, +0.0000017342,0.0000017340,0.0000017338,0.0000017337,0.0000017333, +0.0000017324,0.0000017307,0.0000017292,0.0000017284,0.0000017285, +0.0000017297,0.0000017314,0.0000017328,0.0000017336,0.0000017339, +0.0000017336,0.0000017335,0.0000017327,0.0000017318,0.0000017313, +0.0000017313,0.0000017310,0.0000017305,0.0000017300,0.0000017291, +0.0000017284,0.0000017281,0.0000017272,0.0000017276,0.0000017285, +0.0000017294,0.0000017305,0.0000017318,0.0000017337,0.0000017360, +0.0000017386,0.0000017415,0.0000017446,0.0000017479,0.0000017512, +0.0000017540,0.0000017565,0.0000017590,0.0000017609,0.0000017623, +0.0000017626,0.0000017625,0.0000017618,0.0000017607,0.0000017593, +0.0000017577,0.0000017562,0.0000017549,0.0000017535,0.0000017523, +0.0000017515,0.0000017511,0.0000017505,0.0000017498,0.0000017488, +0.0000017476,0.0000017458,0.0000017437,0.0000017417,0.0000017404, +0.0000017399,0.0000017413,0.0000017450,0.0000017512,0.0000017594, +0.0000017681,0.0000017749,0.0000017757,0.0000017741,0.0000017673, +0.0000017597,0.0000017541,0.0000017512,0.0000017497,0.0000017488, +0.0000017480,0.0000017476,0.0000017477,0.0000017488,0.0000017511, +0.0000017541,0.0000017570,0.0000017602,0.0000017631,0.0000017656, +0.0000017680,0.0000017704,0.0000017727,0.0000017747,0.0000017764, +0.0000017777,0.0000017783,0.0000017787,0.0000017797,0.0000017814, +0.0000017842,0.0000017886,0.0000017941,0.0000017996,0.0000018041, +0.0000018073,0.0000018094,0.0000018108,0.0000018122,0.0000018127, +0.0000018130,0.0000018136,0.0000018143,0.0000018156,0.0000018178, +0.0000018210,0.0000018246,0.0000018283,0.0000018317,0.0000018346, +0.0000018372,0.0000018393,0.0000018408,0.0000018407,0.0000018398, +0.0000018383,0.0000018361,0.0000018343,0.0000018330,0.0000018320, +0.0000018315,0.0000018312,0.0000018312,0.0000018312,0.0000018317, +0.0000018325,0.0000018334,0.0000018340,0.0000018340,0.0000018341, +0.0000018342,0.0000018342,0.0000018345,0.0000018353,0.0000018367, +0.0000018381,0.0000018398,0.0000018418,0.0000018440,0.0000018463, +0.0000018485,0.0000018508,0.0000018534,0.0000018558,0.0000018580, +0.0000018603,0.0000018622,0.0000018634,0.0000018648,0.0000018652, +0.0000018654,0.0000018667,0.0000018664,0.0000018647,0.0000018644, +0.0000018628,0.0000018596,0.0000018560,0.0000018525,0.0000018493, +0.0000018465,0.0000018453,0.0000018438,0.0000018429,0.0000018438, +0.0000018447,0.0000018463,0.0000018482,0.0000018497,0.0000018514, +0.0000018503,0.0000018500,0.0000018481,0.0000018449,0.0000018398, +0.0000018348,0.0000018298,0.0000018247,0.0000018200,0.0000018163, +0.0000018136,0.0000018108,0.0000018083,0.0000018060,0.0000018041, +0.0000018020,0.0000017997,0.0000017973,0.0000017953,0.0000017939, +0.0000017934,0.0000017936,0.0000017944,0.0000017962,0.0000017982, +0.0000017998,0.0000018005,0.0000018003,0.0000017993,0.0000017973, +0.0000017938,0.0000017891,0.0000017830,0.0000017760,0.0000017687, +0.0000017624,0.0000017576,0.0000017536,0.0000017499,0.0000017467, +0.0000017441,0.0000017415,0.0000017394,0.0000017381,0.0000017381, +0.0000017394,0.0000017404,0.0000017416,0.0000017421,0.0000017421, +0.0000017415,0.0000017413,0.0000017417,0.0000017419,0.0000017408, +0.0000017393,0.0000017377,0.0000017365,0.0000017357,0.0000017344, +0.0000017328,0.0000017315,0.0000017299,0.0000017277,0.0000017251, +0.0000017228,0.0000017215,0.0000017217,0.0000017237,0.0000017262, +0.0000017292,0.0000017330,0.0000017360,0.0000017383,0.0000017396, +0.0000017400,0.0000017401,0.0000017399,0.0000017400,0.0000017406, +0.0000017417,0.0000017429,0.0000017438,0.0000017450,0.0000017463, +0.0000017473,0.0000017478,0.0000017476,0.0000017471,0.0000017464, +0.0000017465,0.0000017470,0.0000017477,0.0000017482,0.0000017486, +0.0000017496,0.0000017507,0.0000017512,0.0000017514,0.0000017516, +0.0000017514,0.0000017514,0.0000017521,0.0000017532,0.0000017540, +0.0000017544,0.0000017547,0.0000017567,0.0000017597,0.0000017643, +0.0000017695,0.0000017766,0.0000017847,0.0000017931,0.0000018024, +0.0000018112,0.0000018195,0.0000018275,0.0000018340,0.0000018395, +0.0000018442,0.0000018486,0.0000018532,0.0000018585,0.0000018648, +0.0000018718,0.0000018791,0.0000018860,0.0000018920,0.0000018971, +0.0000019015,0.0000019042,0.0000019052,0.0000019052,0.0000019046, +0.0000019032,0.0000019014,0.0000018992,0.0000018975,0.0000018958, +0.0000018938,0.0000018914,0.0000018877,0.0000018825,0.0000018767, +0.0000018705,0.0000018644,0.0000018577,0.0000018512,0.0000018450, +0.0000018376,0.0000018294,0.0000018209,0.0000018131,0.0000018065, +0.0000017995,0.0000017920,0.0000017839,0.0000017752,0.0000017674, +0.0000017618,0.0000017568,0.0000017528,0.0000017505,0.0000017487, +0.0000017464,0.0000017444,0.0000017429,0.0000017421,0.0000017419, +0.0000017421,0.0000017434,0.0000017467,0.0000017508,0.0000017547, +0.0000017581,0.0000017602,0.0000017607,0.0000017601,0.0000017580, +0.0000017554,0.0000017537,0.0000017535,0.0000017541,0.0000017565, +0.0000017615,0.0000017688,0.0000017765,0.0000017844,0.0000017950, +0.0000018087,0.0000018247,0.0000018427,0.0000018620,0.0000018810, +0.0000018984,0.0000019136,0.0000019259,0.0000019350,0.0000019414, +0.0000019465,0.0000019501,0.0000019516,0.0000019515,0.0000019510, +0.0000019508,0.0000019507,0.0000019507,0.0000019513,0.0000019521, +0.0000019532,0.0000019544,0.0000019563,0.0000019590,0.0000019610, +0.0000019621,0.0000019619,0.0000019617,0.0000019606,0.0000019588, +0.0000019569,0.0000019547,0.0000019528,0.0000019519,0.0000019510, +0.0000019489,0.0000019470,0.0000019441,0.0000019422,0.0000019417, +0.0000019426,0.0000019444,0.0000019467,0.0000019487,0.0000019498, +0.0000019500,0.0000019496,0.0000019487,0.0000019475,0.0000019457, +0.0000019432,0.0000019406,0.0000019382,0.0000019366,0.0000019357, +0.0000019349,0.0000019349,0.0000019332,0.0000019300,0.0000019257, +0.0000019217,0.0000019188,0.0000019173,0.0000019163,0.0000019154, +0.0000019149,0.0000019149,0.0000019154,0.0000019161,0.0000019169, +0.0000019168,0.0000019162,0.0000019160,0.0000019164,0.0000019169, +0.0000019169,0.0000019157,0.0000019135,0.0000019102,0.0000019062, +0.0000019012,0.0000018960,0.0000018913,0.0000018877,0.0000018845, +0.0000018806,0.0000018764,0.0000018734,0.0000018723,0.0000018726, +0.0000018727,0.0000018721,0.0000018709,0.0000018686,0.0000018658, +0.0000018638,0.0000018614,0.0000018602,0.0000018599,0.0000018606, +0.0000018629,0.0000018664,0.0000018709,0.0000018765,0.0000018827, +0.0000018881,0.0000018902,0.0000018903,0.0000018880,0.0000018849, +0.0000018830,0.0000018830,0.0000018843,0.0000018856,0.0000018851, +0.0000018824,0.0000018789,0.0000018769,0.0000018778,0.0000018805, +0.0000018827,0.0000018819,0.0000018779,0.0000018732,0.0000018709, +0.0000018712,0.0000018729,0.0000018744,0.0000018740,0.0000018712, +0.0000018676,0.0000018652,0.0000018653,0.0000018669,0.0000018670, +0.0000018637,0.0000018567,0.0000018482,0.0000018420,0.0000018418, +0.0000018450,0.0000018489,0.0000018511,0.0000018495,0.0000018451, +0.0000018411,0.0000018391,0.0000018393,0.0000018422,0.0000018472, +0.0000018539,0.0000018600,0.0000018636,0.0000018649,0.0000018647, +0.0000018620,0.0000018571,0.0000018509,0.0000018445,0.0000018380, +0.0000018313,0.0000018246,0.0000018196,0.0000018175,0.0000018173, +0.0000018163,0.0000018149,0.0000018149,0.0000018159,0.0000018160, +0.0000018140,0.0000018115,0.0000018105,0.0000018112,0.0000018135, +0.0000018166,0.0000018195,0.0000018216,0.0000018225,0.0000018230, +0.0000018241,0.0000018259,0.0000018278,0.0000018289,0.0000018291, +0.0000018289,0.0000018287,0.0000018289,0.0000018290,0.0000018278, +0.0000018250,0.0000018215,0.0000018174,0.0000018132,0.0000018096, +0.0000018069,0.0000018063,0.0000018068,0.0000018078,0.0000018083, +0.0000018084,0.0000018083,0.0000018080,0.0000018073,0.0000018063, +0.0000018048,0.0000018028,0.0000018009,0.0000017992,0.0000017976, +0.0000017953,0.0000017923,0.0000017892,0.0000017868,0.0000017859, +0.0000017870,0.0000017903,0.0000017950,0.0000018004,0.0000018064, +0.0000018122,0.0000018168,0.0000018195,0.0000018209,0.0000018217, +0.0000018225,0.0000018236,0.0000018249,0.0000018262,0.0000018271, +0.0000018274,0.0000018273,0.0000018268,0.0000018262,0.0000018261, +0.0000018262,0.0000018267,0.0000018273,0.0000018274,0.0000018268, +0.0000018244,0.0000018202,0.0000018145,0.0000018077,0.0000018008, +0.0000017948,0.0000017893,0.0000017838,0.0000017782,0.0000017721, +0.0000017656,0.0000017594,0.0000017552,0.0000017548,0.0000017562, +0.0000017576,0.0000017586,0.0000017593,0.0000017597,0.0000017595, +0.0000017593,0.0000017596,0.0000017614,0.0000017650,0.0000017695, +0.0000017742,0.0000017763,0.0000017780,0.0000017772,0.0000017741, +0.0000017703,0.0000017673,0.0000017656,0.0000017651,0.0000017650, +0.0000017657,0.0000017670,0.0000017676,0.0000017676,0.0000017679, +0.0000017689,0.0000017702,0.0000017713,0.0000017724,0.0000017743, +0.0000017773,0.0000017803,0.0000017826,0.0000017828,0.0000017824, +0.0000017819,0.0000017829,0.0000017871,0.0000017946,0.0000018038, +0.0000018121,0.0000018190,0.0000018234,0.0000018256,0.0000018269, +0.0000018285,0.0000018299,0.0000018309,0.0000018311,0.0000018309, +0.0000018316,0.0000018347,0.0000018411,0.0000018500,0.0000018610, +0.0000018733,0.0000018855,0.0000018968,0.0000019061,0.0000019143, +0.0000019205,0.0000019231,0.0000019227,0.0000019236,0.0000019249, +0.0000019256,0.0000019260,0.0000019258,0.0000019247,0.0000019225, +0.0000019189,0.0000019138,0.0000019077,0.0000019009,0.0000018942, +0.0000018880,0.0000018828,0.0000018786,0.0000018765,0.0000018766, +0.0000018773,0.0000018789,0.0000018803,0.0000018813,0.0000018823, +0.0000018831,0.0000018836,0.0000018841,0.0000018846,0.0000018850, +0.0000018852,0.0000018857,0.0000018863,0.0000018870,0.0000018876, +0.0000018877,0.0000018875,0.0000018876,0.0000018879,0.0000018887, +0.0000018904,0.0000018923,0.0000018946,0.0000018968,0.0000018984, +0.0000018993,0.0000019000,0.0000019011,0.0000019022,0.0000019029, +0.0000019036,0.0000019024,0.0000019012,0.0000018998,0.0000018971, +0.0000018928,0.0000018853,0.0000018734,0.0000018581,0.0000018418, +0.0000018267,0.0000018146,0.0000018065,0.0000018037,0.0000018071, +0.0000018210,0.0000018448,0.0000018700,0.0000018842,0.0000018826, +0.0000018748,0.0000018778,0.0000018874,0.0000018830,0.0000018688, +0.0000018618,0.0000018578,0.0000018569,0.0000018665,0.0000018820, +0.0000018876,0.0000018868,0.0000018866,0.0000018859,0.0000018828, +0.0000018797,0.0000018780,0.0000018770,0.0000018768,0.0000018777, +0.0000018793,0.0000018803,0.0000018808,0.0000018798,0.0000018250, +0.0000017827,0.0000017772,0.0000017742,0.0000017659,0.0000017603, +0.0000017583,0.0000017584,0.0000017584,0.0000017595,0.0000017606, +0.0000017624,0.0000017643,0.0000017654,0.0000017655,0.0000017640, +0.0000017617,0.0000017597,0.0000017586,0.0000017583,0.0000017581, +0.0000017577,0.0000017576,0.0000017572,0.0000017566,0.0000017562, +0.0000017565,0.0000017575,0.0000017584,0.0000017602,0.0000017601, +0.0000017588,0.0000017565,0.0000017565,0.0000017627,0.0000017737, +0.0000017808,0.0000017801,0.0000017746,0.0000017725,0.0000017736, +0.0000017745,0.0000017744,0.0000017744,0.0000017747,0.0000017752, +0.0000017759,0.0000017765,0.0000017767,0.0000017766,0.0000017762, +0.0000017755,0.0000017748,0.0000017742,0.0000017742,0.0000017743, +0.0000017749,0.0000017759,0.0000017770,0.0000017778,0.0000017783, +0.0000017781,0.0000017770,0.0000017754,0.0000017741,0.0000017740, +0.0000017748,0.0000017768,0.0000017793,0.0000017814,0.0000017829, +0.0000017836,0.0000017835,0.0000017826,0.0000017808,0.0000017788, +0.0000017768,0.0000017756,0.0000017756,0.0000017770,0.0000017797, +0.0000017832,0.0000017874,0.0000017917,0.0000017952,0.0000017978, +0.0000017997,0.0000018013,0.0000018010,0.0000018016,0.0000018016, +0.0000018015,0.0000018013,0.0000018014,0.0000018014,0.0000018015, +0.0000018015,0.0000018015,0.0000018015,0.0000018016,0.0000018016, +0.0000018014,0.0000018010,0.0000018002,0.0000017993,0.0000017982, +0.0000017975,0.0000017970,0.0000017970,0.0000017969,0.0000017965, +0.0000017959,0.0000017953,0.0000017952,0.0000017961,0.0000017979, +0.0000018003,0.0000018028,0.0000018053,0.0000018085,0.0000018119, +0.0000018147,0.0000018177,0.0000018203,0.0000018218,0.0000018223, +0.0000018220,0.0000018212,0.0000018205,0.0000018200,0.0000018200, +0.0000018208,0.0000018222,0.0000018242,0.0000018265,0.0000018286, +0.0000018302,0.0000018316,0.0000018335,0.0000018359,0.0000018388, +0.0000018400,0.0000018391,0.0000018366,0.0000018272,0.0000018249, +0.0000018223,0.0000018187,0.0000018149,0.0000018111,0.0000018078, +0.0000018058,0.0000018059,0.0000018078,0.0000018104,0.0000018131, +0.0000018160,0.0000018185,0.0000018207,0.0000018229,0.0000018247, +0.0000018262,0.0000018276,0.0000018288,0.0000018297,0.0000018301, +0.0000018299,0.0000018298,0.0000018293,0.0000018286,0.0000018279, +0.0000018269,0.0000018257,0.0000018245,0.0000018232,0.0000018215, +0.0000018205,0.0000018205,0.0000018212,0.0000018218,0.0000018225, +0.0000018235,0.0000018252,0.0000018278,0.0000018305,0.0000018334, +0.0000018366,0.0000018397,0.0000018421,0.0000018436,0.0000018444, +0.0000018450,0.0000018450,0.0000018443,0.0000018432,0.0000018415, +0.0000018398,0.0000018385,0.0000018381,0.0000018383,0.0000018396, +0.0000018414,0.0000018428,0.0000018437,0.0000018452,0.0000018477, +0.0000018509,0.0000018551,0.0000018599,0.0000018649,0.0000018690, +0.0000018718,0.0000018731,0.0000018735,0.0000018737,0.0000018727, +0.0000018699,0.0000018652,0.0000018595,0.0000018541,0.0000018500, +0.0000018477,0.0000018475,0.0000018489,0.0000018513,0.0000018536, +0.0000018544,0.0000018519,0.0000018457,0.0000018379,0.0000018314, +0.0000018280,0.0000018279,0.0000018291,0.0000018294,0.0000018278, +0.0000018244,0.0000018200,0.0000018154,0.0000018105,0.0000018046, +0.0000017984,0.0000017928,0.0000017887,0.0000017869,0.0000017858, +0.0000017866,0.0000017877,0.0000017900,0.0000017932,0.0000017962, +0.0000017991,0.0000018020,0.0000018047,0.0000018073,0.0000018100, +0.0000018134,0.0000018171,0.0000018212,0.0000018248,0.0000018261, +0.0000018276,0.0000018281,0.0000018282,0.0000018282,0.0000018292, +0.0000018311,0.0000018332,0.0000018349,0.0000018348,0.0000018349, +0.0000018348,0.0000018346,0.0000018332,0.0000018301,0.0000018248, +0.0000018175,0.0000018094,0.0000018018,0.0000017949,0.0000017895, +0.0000017854,0.0000017825,0.0000017813,0.0000017808,0.0000017817, +0.0000017837,0.0000017864,0.0000017892,0.0000017912,0.0000017925, +0.0000017932,0.0000017940,0.0000017947,0.0000017953,0.0000017960, +0.0000017967,0.0000017977,0.0000017991,0.0000018008,0.0000018023, +0.0000018035,0.0000018044,0.0000018055,0.0000018067,0.0000018073, +0.0000018071,0.0000018063,0.0000018051,0.0000018036,0.0000018018, +0.0000017999,0.0000017984,0.0000017976,0.0000017971,0.0000017969, +0.0000017973,0.0000017979,0.0000017986,0.0000017996,0.0000018009, +0.0000018020,0.0000018037,0.0000018062,0.0000018088,0.0000018107, +0.0000018114,0.0000018115,0.0000018118,0.0000018119,0.0000018112, +0.0000018102,0.0000018085,0.0000018058,0.0000018028,0.0000017996, +0.0000017963,0.0000017931,0.0000017898,0.0000017863,0.0000017834, +0.0000017807,0.0000017786,0.0000017772,0.0000017763,0.0000017756, +0.0000017750,0.0000017743,0.0000017740,0.0000017732,0.0000017722, +0.0000017711,0.0000017698,0.0000017687,0.0000017673,0.0000017660, +0.0000017645,0.0000017630,0.0000017612,0.0000017592,0.0000017566, +0.0000017538,0.0000017511,0.0000017490,0.0000017475,0.0000017463, +0.0000017454,0.0000017452,0.0000017443,0.0000017440,0.0000017433, +0.0000017420,0.0000017409,0.0000017405,0.0000017403,0.0000017397, +0.0000017404,0.0000017426,0.0000017459,0.0000017497,0.0000017539, +0.0000017584,0.0000017627,0.0000017662,0.0000017688,0.0000017704, +0.0000017713,0.0000017719,0.0000017719,0.0000017717,0.0000017721, +0.0000017735,0.0000017755,0.0000017776,0.0000017787,0.0000017793, +0.0000017791,0.0000017780,0.0000017752,0.0000017705,0.0000017644, +0.0000017574,0.0000017503,0.0000017438,0.0000017395,0.0000017366, +0.0000017359,0.0000017360,0.0000017363,0.0000017354,0.0000017331, +0.0000017293,0.0000017255,0.0000017225,0.0000017223,0.0000017258, +0.0000017321,0.0000017397,0.0000017477,0.0000017554,0.0000017621, +0.0000017670,0.0000017693,0.0000017704,0.0000017724,0.0000017760, +0.0000017798,0.0000017819,0.0000017807,0.0000017756,0.0000017659, +0.0000017536,0.0000017426,0.0000017359,0.0000017336,0.0000017338, +0.0000017345,0.0000017350,0.0000017349,0.0000017347,0.0000017340, +0.0000017326,0.0000017311,0.0000017300,0.0000017293,0.0000017293, +0.0000017303,0.0000017324,0.0000017348,0.0000017367,0.0000017379, +0.0000017381,0.0000017390,0.0000017384,0.0000017372,0.0000017358, +0.0000017341,0.0000017321,0.0000017303,0.0000017289,0.0000017285, +0.0000017291,0.0000017301,0.0000017313,0.0000017329,0.0000017354, +0.0000017384,0.0000017416,0.0000017449,0.0000017483,0.0000017517, +0.0000017548,0.0000017571,0.0000017588,0.0000017605,0.0000017616, +0.0000017621,0.0000017623,0.0000017620,0.0000017614,0.0000017607, +0.0000017598,0.0000017590,0.0000017583,0.0000017576,0.0000017567, +0.0000017556,0.0000017544,0.0000017532,0.0000017519,0.0000017505, +0.0000017491,0.0000017476,0.0000017461,0.0000017448,0.0000017442, +0.0000017451,0.0000017478,0.0000017531,0.0000017606,0.0000017685, +0.0000017740,0.0000017743,0.0000017726,0.0000017659,0.0000017583, +0.0000017527,0.0000017496,0.0000017482,0.0000017474,0.0000017463, +0.0000017453,0.0000017453,0.0000017465,0.0000017482,0.0000017513, +0.0000017546,0.0000017570,0.0000017588,0.0000017615,0.0000017644, +0.0000017675,0.0000017709,0.0000017733,0.0000017745,0.0000017750, +0.0000017750,0.0000017755,0.0000017767,0.0000017789,0.0000017827, +0.0000017871,0.0000017915,0.0000017961,0.0000018003,0.0000018038, +0.0000018062,0.0000018079,0.0000018087,0.0000018092,0.0000018099, +0.0000018108,0.0000018122,0.0000018146,0.0000018180,0.0000018217, +0.0000018255,0.0000018292,0.0000018323,0.0000018340,0.0000018351, +0.0000018357,0.0000018359,0.0000018354,0.0000018343,0.0000018324, +0.0000018300,0.0000018282,0.0000018273,0.0000018259,0.0000018262, +0.0000018262,0.0000018267,0.0000018273,0.0000018284,0.0000018296, +0.0000018302,0.0000018312,0.0000018324,0.0000018332,0.0000018334, +0.0000018333,0.0000018331,0.0000018329,0.0000018330,0.0000018331, +0.0000018337,0.0000018344,0.0000018348,0.0000018355,0.0000018367, +0.0000018380,0.0000018393,0.0000018406,0.0000018418,0.0000018432, +0.0000018448,0.0000018466,0.0000018484,0.0000018498,0.0000018512, +0.0000018533,0.0000018566,0.0000018598,0.0000018619,0.0000018641, +0.0000018670,0.0000018673,0.0000018652,0.0000018660,0.0000018638, +0.0000018612,0.0000018592,0.0000018570,0.0000018538,0.0000018510, +0.0000018486,0.0000018465,0.0000018452,0.0000018457,0.0000018457, +0.0000018469,0.0000018483,0.0000018491,0.0000018508,0.0000018510, +0.0000018490,0.0000018489,0.0000018469,0.0000018429,0.0000018386, +0.0000018340,0.0000018292,0.0000018242,0.0000018196,0.0000018154, +0.0000018119,0.0000018085,0.0000018051,0.0000018018,0.0000017993, +0.0000017980,0.0000017973,0.0000017977,0.0000017987,0.0000017999, +0.0000018014,0.0000018023,0.0000018024,0.0000018016,0.0000018002, +0.0000017981,0.0000017953,0.0000017927,0.0000017899,0.0000017864, +0.0000017826,0.0000017791,0.0000017759,0.0000017719,0.0000017674, +0.0000017628,0.0000017584,0.0000017538,0.0000017494,0.0000017452, +0.0000017414,0.0000017392,0.0000017387,0.0000017391,0.0000017405, +0.0000017411,0.0000017417,0.0000017424,0.0000017428,0.0000017435, +0.0000017438,0.0000017440,0.0000017442,0.0000017432,0.0000017415, +0.0000017392,0.0000017371,0.0000017354,0.0000017341,0.0000017316, +0.0000017291,0.0000017266,0.0000017250,0.0000017251,0.0000017263, +0.0000017277,0.0000017305,0.0000017344,0.0000017376,0.0000017401, +0.0000017413,0.0000017412,0.0000017400,0.0000017384,0.0000017363, +0.0000017352,0.0000017352,0.0000017358,0.0000017373,0.0000017399, +0.0000017432,0.0000017462,0.0000017484,0.0000017492,0.0000017505, +0.0000017512,0.0000017516,0.0000017519,0.0000017518,0.0000017516, +0.0000017513,0.0000017518,0.0000017525,0.0000017532,0.0000017539, +0.0000017546,0.0000017548,0.0000017544,0.0000017537,0.0000017530, +0.0000017523,0.0000017517,0.0000017497,0.0000017478,0.0000017478, +0.0000017470,0.0000017464,0.0000017480,0.0000017494,0.0000017518, +0.0000017555,0.0000017600,0.0000017656,0.0000017720,0.0000017781, +0.0000017835,0.0000017883,0.0000017933,0.0000017981,0.0000018031, +0.0000018085,0.0000018143,0.0000018208,0.0000018278,0.0000018352, +0.0000018426,0.0000018491,0.0000018542,0.0000018581,0.0000018609, +0.0000018624,0.0000018624,0.0000018609,0.0000018593,0.0000018571, +0.0000018547,0.0000018526,0.0000018492,0.0000018441,0.0000018380, +0.0000018314,0.0000018252,0.0000018189,0.0000018135,0.0000018092, +0.0000018041,0.0000017984,0.0000017932,0.0000017892,0.0000017870, +0.0000017851,0.0000017820,0.0000017779,0.0000017733,0.0000017684, +0.0000017652,0.0000017638,0.0000017629,0.0000017622,0.0000017610, +0.0000017590,0.0000017572,0.0000017559,0.0000017546,0.0000017536, +0.0000017531,0.0000017527,0.0000017535,0.0000017559,0.0000017589, +0.0000017613,0.0000017628,0.0000017629,0.0000017611,0.0000017579, +0.0000017548,0.0000017523,0.0000017508,0.0000017486,0.0000017461, +0.0000017451,0.0000017463,0.0000017484,0.0000017509,0.0000017550, +0.0000017604,0.0000017677,0.0000017780,0.0000017914,0.0000018071, +0.0000018233,0.0000018390,0.0000018541,0.0000018693,0.0000018843, +0.0000018996,0.0000019137,0.0000019248,0.0000019322,0.0000019368, +0.0000019399,0.0000019422,0.0000019438,0.0000019452,0.0000019463, +0.0000019470,0.0000019479,0.0000019493,0.0000019519,0.0000019547, +0.0000019570,0.0000019593,0.0000019617,0.0000019625,0.0000019631, +0.0000019624,0.0000019597,0.0000019561,0.0000019525,0.0000019497, +0.0000019474,0.0000019460,0.0000019448,0.0000019438,0.0000019429, +0.0000019427,0.0000019436,0.0000019450,0.0000019468,0.0000019483, +0.0000019495,0.0000019504,0.0000019509,0.0000019509,0.0000019498, +0.0000019473,0.0000019440,0.0000019408,0.0000019379,0.0000019355, +0.0000019344,0.0000019343,0.0000019339,0.0000019328,0.0000019299, +0.0000019265,0.0000019230,0.0000019203,0.0000019183,0.0000019161, +0.0000019139,0.0000019124,0.0000019121,0.0000019131,0.0000019150, +0.0000019167,0.0000019172,0.0000019184,0.0000019191,0.0000019193, +0.0000019186,0.0000019174,0.0000019159,0.0000019142,0.0000019123, +0.0000019098,0.0000019067,0.0000019033,0.0000018999,0.0000018964, +0.0000018921,0.0000018870,0.0000018822,0.0000018791,0.0000018780, +0.0000018784,0.0000018787,0.0000018783,0.0000018769,0.0000018745, +0.0000018711,0.0000018664,0.0000018616,0.0000018586,0.0000018563, +0.0000018562,0.0000018579,0.0000018604,0.0000018633,0.0000018672, +0.0000018729,0.0000018795,0.0000018853,0.0000018876,0.0000018881, +0.0000018867,0.0000018851,0.0000018846,0.0000018846,0.0000018843, +0.0000018833,0.0000018818,0.0000018811,0.0000018819,0.0000018840, +0.0000018865,0.0000018869,0.0000018844,0.0000018804,0.0000018773, +0.0000018767,0.0000018779,0.0000018801,0.0000018819,0.0000018829, +0.0000018832,0.0000018830,0.0000018818,0.0000018801,0.0000018785, +0.0000018765,0.0000018732,0.0000018661,0.0000018562,0.0000018450, +0.0000018361,0.0000018358,0.0000018421,0.0000018482,0.0000018502, +0.0000018498,0.0000018499,0.0000018491,0.0000018476,0.0000018461, +0.0000018458,0.0000018475,0.0000018519,0.0000018566,0.0000018594, +0.0000018599,0.0000018570,0.0000018523,0.0000018465,0.0000018409, +0.0000018354,0.0000018294,0.0000018239,0.0000018209,0.0000018209, +0.0000018209,0.0000018195,0.0000018181,0.0000018174,0.0000018161, +0.0000018133,0.0000018100,0.0000018079,0.0000018078,0.0000018099, +0.0000018133,0.0000018165,0.0000018182,0.0000018184,0.0000018183, +0.0000018195,0.0000018222,0.0000018253,0.0000018277,0.0000018291, +0.0000018299,0.0000018300,0.0000018297,0.0000018289,0.0000018275, +0.0000018254,0.0000018219,0.0000018174,0.0000018127,0.0000018083, +0.0000018056,0.0000018055,0.0000018066,0.0000018078,0.0000018089, +0.0000018099,0.0000018103,0.0000018102,0.0000018094,0.0000018079, +0.0000018058,0.0000018038,0.0000018021,0.0000018007,0.0000017991, +0.0000017968,0.0000017944,0.0000017932,0.0000017942,0.0000017980, +0.0000018043,0.0000018113,0.0000018174,0.0000018229,0.0000018277, +0.0000018315,0.0000018334,0.0000018335,0.0000018321,0.0000018300, +0.0000018282,0.0000018271,0.0000018270,0.0000018278,0.0000018291, +0.0000018303,0.0000018309,0.0000018308,0.0000018303,0.0000018295, +0.0000018286,0.0000018282,0.0000018286,0.0000018287,0.0000018278, +0.0000018250,0.0000018205,0.0000018150,0.0000018096,0.0000018054, +0.0000018022,0.0000017990,0.0000017957,0.0000017926,0.0000017895, +0.0000017858,0.0000017811,0.0000017758,0.0000017702,0.0000017648, +0.0000017608,0.0000017596,0.0000017596,0.0000017593,0.0000017590, +0.0000017586,0.0000017586,0.0000017590,0.0000017605,0.0000017640, +0.0000017685,0.0000017730,0.0000017767,0.0000017775,0.0000017769, +0.0000017744,0.0000017711,0.0000017683,0.0000017666,0.0000017661, +0.0000017669,0.0000017676,0.0000017680,0.0000017675,0.0000017670, +0.0000017672,0.0000017679,0.0000017690,0.0000017701,0.0000017706, +0.0000017719,0.0000017747,0.0000017779,0.0000017807,0.0000017819, +0.0000017814,0.0000017809,0.0000017823,0.0000017865,0.0000017934, +0.0000018028,0.0000018126,0.0000018209,0.0000018256,0.0000018273, +0.0000018282,0.0000018294,0.0000018305,0.0000018306,0.0000018303, +0.0000018294,0.0000018298,0.0000018321,0.0000018362,0.0000018419, +0.0000018493,0.0000018585,0.0000018685,0.0000018783,0.0000018877, +0.0000018967,0.0000019049,0.0000019124,0.0000019186,0.0000019238, +0.0000019265,0.0000019273,0.0000019300,0.0000019311,0.0000019292, +0.0000019262,0.0000019216,0.0000019159,0.0000019099,0.0000019039, +0.0000018984,0.0000018935,0.0000018896,0.0000018869,0.0000018850, +0.0000018840,0.0000018834,0.0000018831,0.0000018831,0.0000018833, +0.0000018835,0.0000018837,0.0000018841,0.0000018849,0.0000018857, +0.0000018867,0.0000018877,0.0000018888,0.0000018895,0.0000018897, +0.0000018895,0.0000018893,0.0000018896,0.0000018907,0.0000018927, +0.0000018954,0.0000018987,0.0000019022,0.0000019050,0.0000019069, +0.0000019082,0.0000019083,0.0000019077,0.0000019059,0.0000019031, +0.0000018986,0.0000018922,0.0000018840,0.0000018742,0.0000018623, +0.0000018480,0.0000018319,0.0000018157,0.0000018012,0.0000017895, +0.0000017810,0.0000017759,0.0000017741,0.0000017752,0.0000017855, +0.0000018114,0.0000018478,0.0000018707,0.0000018663,0.0000018616, +0.0000018775,0.0000018862,0.0000018757,0.0000018641,0.0000018596, +0.0000018584,0.0000018652,0.0000018796,0.0000018874,0.0000018877, +0.0000018875,0.0000018870,0.0000018844,0.0000018810,0.0000018790, +0.0000018784,0.0000018789,0.0000018802,0.0000018810,0.0000018809, +0.0000018808,0.0000018812,0.0000018804,0.0000018504,0.0000017963, +0.0000017791,0.0000017769,0.0000017735,0.0000017690,0.0000017666, +0.0000017659,0.0000017652,0.0000017638,0.0000017625,0.0000017622, +0.0000017628,0.0000017644,0.0000017671,0.0000017684,0.0000017692, +0.0000017674,0.0000017650,0.0000017630,0.0000017616,0.0000017610, +0.0000017609,0.0000017607,0.0000017599,0.0000017595,0.0000017590, +0.0000017585,0.0000017579,0.0000017568,0.0000017574,0.0000017598, +0.0000017662,0.0000017748,0.0000017800,0.0000017799,0.0000017761, +0.0000017736,0.0000017745,0.0000017761,0.0000017765,0.0000017767, +0.0000017773,0.0000017780,0.0000017788,0.0000017796,0.0000017803, +0.0000017811,0.0000017818,0.0000017823,0.0000017823,0.0000017820, +0.0000017813,0.0000017802,0.0000017788,0.0000017774,0.0000017762, +0.0000017756,0.0000017752,0.0000017754,0.0000017760,0.0000017768, +0.0000017771,0.0000017766,0.0000017755,0.0000017741,0.0000017732, +0.0000017734,0.0000017746,0.0000017764,0.0000017783,0.0000017798, +0.0000017806,0.0000017804,0.0000017792,0.0000017773,0.0000017750, +0.0000017732,0.0000017715,0.0000017707,0.0000017712,0.0000017730, +0.0000017758,0.0000017792,0.0000017828,0.0000017863,0.0000017897, +0.0000017927,0.0000017951,0.0000017968,0.0000017982,0.0000017991, +0.0000017999,0.0000018005,0.0000018010,0.0000018012,0.0000018011, +0.0000018010,0.0000018007,0.0000018002,0.0000017995,0.0000017986, +0.0000017974,0.0000017959,0.0000017942,0.0000017927,0.0000017917, +0.0000017911,0.0000017910,0.0000017908,0.0000017906,0.0000017907, +0.0000017917,0.0000017934,0.0000017958,0.0000017984,0.0000018013, +0.0000018047,0.0000018081,0.0000018112,0.0000018135,0.0000018167, +0.0000018193,0.0000018211,0.0000018217,0.0000018217,0.0000018216, +0.0000018212,0.0000018211,0.0000018220,0.0000018233,0.0000018248, +0.0000018266,0.0000018284,0.0000018300,0.0000018321,0.0000018349, +0.0000018380,0.0000018400,0.0000018396,0.0000018370,0.0000018331, +0.0000018298,0.0000018213,0.0000018168,0.0000018114,0.0000018066, +0.0000018030,0.0000018004,0.0000017999,0.0000018014,0.0000018041, +0.0000018077,0.0000018113,0.0000018142,0.0000018164,0.0000018180, +0.0000018191,0.0000018195,0.0000018193,0.0000018191,0.0000018188, +0.0000018189,0.0000018191,0.0000018187,0.0000018178,0.0000018170, +0.0000018161,0.0000018153,0.0000018146,0.0000018137,0.0000018128, +0.0000018124,0.0000018124,0.0000018130,0.0000018144,0.0000018165, +0.0000018188,0.0000018211,0.0000018220,0.0000018235,0.0000018256, +0.0000018276,0.0000018294,0.0000018314,0.0000018341,0.0000018367, +0.0000018389,0.0000018404,0.0000018410,0.0000018412,0.0000018410, +0.0000018406,0.0000018396,0.0000018379,0.0000018361,0.0000018350, +0.0000018348,0.0000018353,0.0000018371,0.0000018394,0.0000018414, +0.0000018425,0.0000018433,0.0000018443,0.0000018456,0.0000018478, +0.0000018514,0.0000018556,0.0000018604,0.0000018651,0.0000018690, +0.0000018717,0.0000018741,0.0000018752,0.0000018760,0.0000018753, +0.0000018727,0.0000018682,0.0000018621,0.0000018558,0.0000018505, +0.0000018476,0.0000018472,0.0000018492,0.0000018530,0.0000018551, +0.0000018557,0.0000018513,0.0000018441,0.0000018365,0.0000018311, +0.0000018294,0.0000018295,0.0000018303,0.0000018300,0.0000018273, +0.0000018232,0.0000018184,0.0000018130,0.0000018072,0.0000018020, +0.0000017971,0.0000017926,0.0000017892,0.0000017871,0.0000017863, +0.0000017861,0.0000017871,0.0000017888,0.0000017903,0.0000017924, +0.0000017947,0.0000017965,0.0000017982,0.0000018008,0.0000018044, +0.0000018093,0.0000018152,0.0000018208,0.0000018258,0.0000018286, +0.0000018299,0.0000018297,0.0000018286,0.0000018276,0.0000018278, +0.0000018291,0.0000018303,0.0000018322,0.0000018339,0.0000018344, +0.0000018343,0.0000018342,0.0000018333,0.0000018305,0.0000018257, +0.0000018192,0.0000018110,0.0000018029,0.0000017958,0.0000017900, +0.0000017856,0.0000017824,0.0000017812,0.0000017811,0.0000017819, +0.0000017839,0.0000017862,0.0000017885,0.0000017904,0.0000017919, +0.0000017928,0.0000017936,0.0000017944,0.0000017949,0.0000017955, +0.0000017969,0.0000017984,0.0000017996,0.0000018005,0.0000018012, +0.0000018023,0.0000018037,0.0000018046,0.0000018051,0.0000018049, +0.0000018043,0.0000018034,0.0000018026,0.0000018016,0.0000018007, +0.0000018000,0.0000017995,0.0000017991,0.0000017986,0.0000017986, +0.0000017987,0.0000017992,0.0000017999,0.0000018008,0.0000018019, +0.0000018037,0.0000018058,0.0000018079,0.0000018097,0.0000018109, +0.0000018120,0.0000018130,0.0000018137,0.0000018146,0.0000018146, +0.0000018134,0.0000018114,0.0000018090,0.0000018062,0.0000018031, +0.0000017995,0.0000017957,0.0000017920,0.0000017888,0.0000017859, +0.0000017836,0.0000017818,0.0000017803,0.0000017795,0.0000017792, +0.0000017790,0.0000017787,0.0000017784,0.0000017778,0.0000017772, +0.0000017768,0.0000017764,0.0000017752,0.0000017734,0.0000017713, +0.0000017686,0.0000017654,0.0000017618,0.0000017581,0.0000017551, +0.0000017532,0.0000017526,0.0000017525,0.0000017527,0.0000017529, +0.0000017532,0.0000017532,0.0000017523,0.0000017501,0.0000017469, +0.0000017429,0.0000017388,0.0000017355,0.0000017330,0.0000017326, +0.0000017344,0.0000017373,0.0000017413,0.0000017458,0.0000017509, +0.0000017556,0.0000017594,0.0000017621,0.0000017644,0.0000017665, +0.0000017682,0.0000017698,0.0000017716,0.0000017731,0.0000017743, +0.0000017753,0.0000017760,0.0000017765,0.0000017773,0.0000017778, +0.0000017790,0.0000017789,0.0000017764,0.0000017717,0.0000017654, +0.0000017583,0.0000017515,0.0000017447,0.0000017386,0.0000017347, +0.0000017324,0.0000017322,0.0000017332,0.0000017333,0.0000017318, +0.0000017283,0.0000017248,0.0000017216,0.0000017200,0.0000017223, +0.0000017284,0.0000017358,0.0000017435,0.0000017510,0.0000017574, +0.0000017621,0.0000017650,0.0000017668,0.0000017684,0.0000017709, +0.0000017745,0.0000017786,0.0000017806,0.0000017790,0.0000017722, +0.0000017612,0.0000017495,0.0000017407,0.0000017364,0.0000017352, +0.0000017352,0.0000017353,0.0000017356,0.0000017355,0.0000017350, +0.0000017337,0.0000017318,0.0000017299,0.0000017293,0.0000017302, +0.0000017323,0.0000017348,0.0000017376,0.0000017406,0.0000017427, +0.0000017437,0.0000017434,0.0000017432,0.0000017416,0.0000017399, +0.0000017387,0.0000017381,0.0000017383,0.0000017390,0.0000017398, +0.0000017413,0.0000017436,0.0000017458,0.0000017480,0.0000017502, +0.0000017525,0.0000017546,0.0000017566,0.0000017582,0.0000017595, +0.0000017606,0.0000017614,0.0000017619,0.0000017623,0.0000017624, +0.0000017621,0.0000017618,0.0000017614,0.0000017610,0.0000017606, +0.0000017599,0.0000017588,0.0000017574,0.0000017557,0.0000017538, +0.0000017521,0.0000017508,0.0000017497,0.0000017489,0.0000017489, +0.0000017503,0.0000017535,0.0000017585,0.0000017648,0.0000017706, +0.0000017744,0.0000017740,0.0000017714,0.0000017650,0.0000017577, +0.0000017521,0.0000017490,0.0000017475,0.0000017466,0.0000017455, +0.0000017443,0.0000017438,0.0000017446,0.0000017469,0.0000017496, +0.0000017521,0.0000017544,0.0000017563,0.0000017580,0.0000017605, +0.0000017643,0.0000017681,0.0000017707,0.0000017719,0.0000017722, +0.0000017718,0.0000017723,0.0000017743,0.0000017768,0.0000017807, +0.0000017849,0.0000017893,0.0000017936,0.0000017975,0.0000018007, +0.0000018031,0.0000018047,0.0000018061,0.0000018073,0.0000018083, +0.0000018102,0.0000018126,0.0000018156,0.0000018191,0.0000018226, +0.0000018254,0.0000018273,0.0000018282,0.0000018290,0.0000018295, +0.0000018296,0.0000018296,0.0000018301,0.0000018306,0.0000018312, +0.0000018315,0.0000018317,0.0000018323,0.0000018335,0.0000018346, +0.0000018357,0.0000018367,0.0000018375,0.0000018390,0.0000018407, +0.0000018423,0.0000018431,0.0000018436,0.0000018440,0.0000018444, +0.0000018444,0.0000018441,0.0000018432,0.0000018420,0.0000018407, +0.0000018391,0.0000018374,0.0000018360,0.0000018349,0.0000018350, +0.0000018353,0.0000018355,0.0000018362,0.0000018372,0.0000018382, +0.0000018391,0.0000018400,0.0000018411,0.0000018419,0.0000018424, +0.0000018426,0.0000018427,0.0000018435,0.0000018443,0.0000018464, +0.0000018496,0.0000018528,0.0000018555,0.0000018578,0.0000018597, +0.0000018614,0.0000018620,0.0000018630,0.0000018642,0.0000018628, +0.0000018632,0.0000018617,0.0000018596,0.0000018569,0.0000018546, +0.0000018519,0.0000018497,0.0000018477,0.0000018462,0.0000018458, +0.0000018454,0.0000018463,0.0000018468,0.0000018484,0.0000018496, +0.0000018493,0.0000018487,0.0000018480,0.0000018454,0.0000018420, +0.0000018378,0.0000018327,0.0000018275,0.0000018220,0.0000018162, +0.0000018109,0.0000018062,0.0000018030,0.0000018009,0.0000018008, +0.0000018018,0.0000018034,0.0000018048,0.0000018062,0.0000018072, +0.0000018074,0.0000018061,0.0000018032,0.0000017993,0.0000017950, +0.0000017908,0.0000017870,0.0000017841,0.0000017827,0.0000017824, +0.0000017821,0.0000017808,0.0000017788,0.0000017758,0.0000017716, +0.0000017667,0.0000017612,0.0000017557,0.0000017506,0.0000017461, +0.0000017428,0.0000017414,0.0000017407,0.0000017405,0.0000017414, +0.0000017422,0.0000017425,0.0000017431,0.0000017443,0.0000017465, +0.0000017483,0.0000017486,0.0000017479,0.0000017467,0.0000017447, +0.0000017411,0.0000017376,0.0000017336,0.0000017298,0.0000017276, +0.0000017270,0.0000017269,0.0000017274,0.0000017299,0.0000017336, +0.0000017380,0.0000017423,0.0000017457,0.0000017470,0.0000017468, +0.0000017453,0.0000017424,0.0000017390,0.0000017359,0.0000017339, +0.0000017323,0.0000017332,0.0000017349,0.0000017367,0.0000017389, +0.0000017418,0.0000017442,0.0000017470,0.0000017498,0.0000017521, +0.0000017533,0.0000017553,0.0000017566,0.0000017579,0.0000017584, +0.0000017589,0.0000017596,0.0000017602,0.0000017605,0.0000017601, +0.0000017586,0.0000017577,0.0000017569,0.0000017551,0.0000017524, +0.0000017509,0.0000017502,0.0000017490,0.0000017479,0.0000017479, +0.0000017487,0.0000017495,0.0000017496,0.0000017500,0.0000017506, +0.0000017518,0.0000017539,0.0000017562,0.0000017590,0.0000017619, +0.0000017651,0.0000017685,0.0000017711,0.0000017735,0.0000017758, +0.0000017787,0.0000017826,0.0000017871,0.0000017914,0.0000017952, +0.0000017987,0.0000018021,0.0000018041,0.0000018045,0.0000018049, +0.0000018048,0.0000018041,0.0000018037,0.0000018026,0.0000018002, +0.0000017970,0.0000017936,0.0000017909,0.0000017881,0.0000017859, +0.0000017853,0.0000017849,0.0000017843,0.0000017838,0.0000017839, +0.0000017851,0.0000017861,0.0000017863,0.0000017849,0.0000017824, +0.0000017798,0.0000017773,0.0000017764,0.0000017767,0.0000017773, +0.0000017774,0.0000017766,0.0000017752,0.0000017737,0.0000017724, +0.0000017710,0.0000017694,0.0000017677,0.0000017667,0.0000017672, +0.0000017687,0.0000017700,0.0000017705,0.0000017703,0.0000017689, +0.0000017657,0.0000017617,0.0000017588,0.0000017573,0.0000017558, +0.0000017540,0.0000017526,0.0000017517,0.0000017503,0.0000017494, +0.0000017490,0.0000017487,0.0000017496,0.0000017530,0.0000017595, +0.0000017684,0.0000017773,0.0000017847,0.0000017910,0.0000017984, +0.0000018080,0.0000018207,0.0000018360,0.0000018523,0.0000018684, +0.0000018836,0.0000018980,0.0000019106,0.0000019208,0.0000019284, +0.0000019335,0.0000019364,0.0000019379,0.0000019395,0.0000019415, +0.0000019439,0.0000019462,0.0000019496,0.0000019541,0.0000019583, +0.0000019615,0.0000019642,0.0000019640,0.0000019616,0.0000019574, +0.0000019525,0.0000019482,0.0000019455,0.0000019447,0.0000019444, +0.0000019440,0.0000019435,0.0000019437,0.0000019443,0.0000019454, +0.0000019465,0.0000019476,0.0000019489,0.0000019503,0.0000019512, +0.0000019507,0.0000019489,0.0000019459,0.0000019427,0.0000019392, +0.0000019360,0.0000019334,0.0000019321,0.0000019319,0.0000019315, +0.0000019300,0.0000019275,0.0000019244,0.0000019216,0.0000019195, +0.0000019177,0.0000019152,0.0000019126,0.0000019107,0.0000019096, +0.0000019101,0.0000019119,0.0000019139,0.0000019161,0.0000019184, +0.0000019198,0.0000019200,0.0000019189,0.0000019170,0.0000019148, +0.0000019127,0.0000019106,0.0000019090,0.0000019077,0.0000019062, +0.0000019050,0.0000019028,0.0000018996,0.0000018955,0.0000018919, +0.0000018893,0.0000018876,0.0000018862,0.0000018848,0.0000018833, +0.0000018814,0.0000018787,0.0000018753,0.0000018716,0.0000018673, +0.0000018622,0.0000018577,0.0000018556,0.0000018542,0.0000018551, +0.0000018573,0.0000018604,0.0000018645,0.0000018696,0.0000018760, +0.0000018822,0.0000018860,0.0000018867,0.0000018864,0.0000018853, +0.0000018838,0.0000018814,0.0000018796,0.0000018795,0.0000018810, +0.0000018831,0.0000018859,0.0000018879,0.0000018880,0.0000018864, +0.0000018842,0.0000018825,0.0000018823,0.0000018831,0.0000018845, +0.0000018867,0.0000018899,0.0000018934,0.0000018961,0.0000018962, +0.0000018934,0.0000018886,0.0000018821,0.0000018759,0.0000018707, +0.0000018615,0.0000018486,0.0000018383,0.0000018349,0.0000018376, +0.0000018440,0.0000018514,0.0000018560,0.0000018574,0.0000018573, +0.0000018542,0.0000018487,0.0000018435,0.0000018421,0.0000018444, +0.0000018498,0.0000018537,0.0000018549,0.0000018528,0.0000018488, +0.0000018436,0.0000018381,0.0000018325,0.0000018272,0.0000018239, +0.0000018239,0.0000018247,0.0000018241,0.0000018222,0.0000018204, +0.0000018184,0.0000018148,0.0000018106,0.0000018076,0.0000018069, +0.0000018080,0.0000018111,0.0000018147,0.0000018168,0.0000018168, +0.0000018167,0.0000018181,0.0000018216,0.0000018256,0.0000018289, +0.0000018308,0.0000018316,0.0000018316,0.0000018309,0.0000018293, +0.0000018274,0.0000018250,0.0000018213,0.0000018166,0.0000018115, +0.0000018071,0.0000018048,0.0000018048,0.0000018064,0.0000018087, +0.0000018112,0.0000018129,0.0000018130,0.0000018117,0.0000018092, +0.0000018062,0.0000018039,0.0000018025,0.0000018013,0.0000018000, +0.0000017985,0.0000017968,0.0000017963,0.0000017991,0.0000018062, +0.0000018154,0.0000018240,0.0000018305,0.0000018351,0.0000018387, +0.0000018417,0.0000018432,0.0000018432,0.0000018417,0.0000018391, +0.0000018364,0.0000018338,0.0000018316,0.0000018300,0.0000018294, +0.0000018301,0.0000018315,0.0000018331,0.0000018344,0.0000018347, +0.0000018342,0.0000018323,0.0000018304,0.0000018295,0.0000018291, +0.0000018280,0.0000018258,0.0000018222,0.0000018176,0.0000018127, +0.0000018084,0.0000018045,0.0000018004,0.0000017966,0.0000017941, +0.0000017935,0.0000017939,0.0000017945,0.0000017940,0.0000017914, +0.0000017862,0.0000017790,0.0000017711,0.0000017635,0.0000017591, +0.0000017579,0.0000017576,0.0000017585,0.0000017599,0.0000017621, +0.0000017639,0.0000017660,0.0000017681,0.0000017702,0.0000017729, +0.0000017752,0.0000017755,0.0000017740,0.0000017716,0.0000017697, +0.0000017691,0.0000017693,0.0000017696,0.0000017694,0.0000017686, +0.0000017672,0.0000017663,0.0000017662,0.0000017670,0.0000017676, +0.0000017679,0.0000017683,0.0000017699,0.0000017727,0.0000017762, +0.0000017792,0.0000017805,0.0000017800,0.0000017800,0.0000017810, +0.0000017853,0.0000017942,0.0000018055,0.0000018150,0.0000018221, +0.0000018274,0.0000018294,0.0000018307,0.0000018306,0.0000018296, +0.0000018285,0.0000018282,0.0000018283,0.0000018290,0.0000018295, +0.0000018309,0.0000018337,0.0000018382,0.0000018443,0.0000018514, +0.0000018591,0.0000018676,0.0000018762,0.0000018852,0.0000018948, +0.0000019042,0.0000019124,0.0000019207,0.0000019278,0.0000019301, +0.0000019303,0.0000019318,0.0000019287,0.0000019241,0.0000019193, +0.0000019144,0.0000019098,0.0000019058,0.0000019025,0.0000018998, +0.0000018973,0.0000018953,0.0000018939,0.0000018929,0.0000018920, +0.0000018912,0.0000018901,0.0000018893,0.0000018892,0.0000018896, +0.0000018904,0.0000018913,0.0000018920,0.0000018926,0.0000018932, +0.0000018939,0.0000018947,0.0000018960,0.0000018982,0.0000019010, +0.0000019044,0.0000019080,0.0000019102,0.0000019110,0.0000019105, +0.0000019079,0.0000019034,0.0000018968,0.0000018886,0.0000018794, +0.0000018695,0.0000018586,0.0000018471,0.0000018359,0.0000018246, +0.0000018130,0.0000018014,0.0000017902,0.0000017807,0.0000017742, +0.0000017715,0.0000017702,0.0000017698,0.0000017697,0.0000017723, +0.0000017927,0.0000018310,0.0000018518,0.0000018469,0.0000018557, +0.0000018812,0.0000018832,0.0000018687,0.0000018612,0.0000018594, +0.0000018642,0.0000018770,0.0000018863,0.0000018878,0.0000018877, +0.0000018875,0.0000018849,0.0000018810,0.0000018790,0.0000018790, +0.0000018808,0.0000018834,0.0000018843,0.0000018837,0.0000018814, +0.0000018802,0.0000018784,0.0000018811,0.0000018722,0.0000018184, +0.0000017881,0.0000017781,0.0000017771,0.0000017764,0.0000017754, +0.0000017751,0.0000017744,0.0000017727,0.0000017706,0.0000017683, +0.0000017659,0.0000017644,0.0000017648,0.0000017672,0.0000017707, +0.0000017732,0.0000017737,0.0000017740,0.0000017725,0.0000017708, +0.0000017692,0.0000017676,0.0000017662,0.0000017652,0.0000017647, +0.0000017653,0.0000017671,0.0000017707,0.0000017749,0.0000017773, +0.0000017798,0.0000017788,0.0000017756,0.0000017741,0.0000017751, +0.0000017764,0.0000017770,0.0000017770,0.0000017772,0.0000017775, +0.0000017780,0.0000017788,0.0000017799,0.0000017812,0.0000017826, +0.0000017840,0.0000017852,0.0000017862,0.0000017868,0.0000017869, +0.0000017865,0.0000017856,0.0000017844,0.0000017828,0.0000017810, +0.0000017790,0.0000017770,0.0000017756,0.0000017745,0.0000017743, +0.0000017747,0.0000017753,0.0000017757,0.0000017754,0.0000017743, +0.0000017733,0.0000017724,0.0000017726,0.0000017738,0.0000017755, +0.0000017770,0.0000017778,0.0000017777,0.0000017766,0.0000017750, +0.0000017729,0.0000017704,0.0000017692,0.0000017678,0.0000017673, +0.0000017681,0.0000017699,0.0000017724,0.0000017751,0.0000017780, +0.0000017809,0.0000017838,0.0000017865,0.0000017891,0.0000017914, +0.0000017934,0.0000017950,0.0000017962,0.0000017970,0.0000017974, +0.0000017975,0.0000017975,0.0000017971,0.0000017966,0.0000017955, +0.0000017941,0.0000017924,0.0000017906,0.0000017891,0.0000017883, +0.0000017880,0.0000017885,0.0000017892,0.0000017899,0.0000017912, +0.0000017931,0.0000017954,0.0000017981,0.0000018011,0.0000018042, +0.0000018070,0.0000018098,0.0000018127,0.0000018160,0.0000018188, +0.0000018205,0.0000018211,0.0000018217,0.0000018217,0.0000018217, +0.0000018223,0.0000018237,0.0000018254,0.0000018272,0.0000018287, +0.0000018307,0.0000018336,0.0000018367,0.0000018387,0.0000018387, +0.0000018365,0.0000018326,0.0000018293,0.0000018268,0.0000018245, +0.0000018090,0.0000018040,0.0000018002,0.0000017982,0.0000017968, +0.0000017968,0.0000017982,0.0000018005,0.0000018026,0.0000018045, +0.0000018059,0.0000018067,0.0000018067,0.0000018061,0.0000018054, +0.0000018051,0.0000018052,0.0000018058,0.0000018069,0.0000018080, +0.0000018086,0.0000018086,0.0000018081,0.0000018074,0.0000018065, +0.0000018054,0.0000018043,0.0000018030,0.0000018019,0.0000018013, +0.0000018014,0.0000018027,0.0000018049,0.0000018077,0.0000018108, +0.0000018144,0.0000018175,0.0000018203,0.0000018235,0.0000018266, +0.0000018291,0.0000018311,0.0000018338,0.0000018363,0.0000018380, +0.0000018386,0.0000018384,0.0000018378,0.0000018368,0.0000018360, +0.0000018345,0.0000018326,0.0000018305,0.0000018292,0.0000018289, +0.0000018295,0.0000018313,0.0000018340,0.0000018371,0.0000018396, +0.0000018419,0.0000018437,0.0000018447,0.0000018460,0.0000018476, +0.0000018493,0.0000018519,0.0000018555,0.0000018595,0.0000018638, +0.0000018681,0.0000018723,0.0000018752,0.0000018773,0.0000018783, +0.0000018781,0.0000018753,0.0000018698,0.0000018626,0.0000018555, +0.0000018495,0.0000018479,0.0000018487,0.0000018523,0.0000018560, +0.0000018571,0.0000018551,0.0000018490,0.0000018415,0.0000018350, +0.0000018310,0.0000018305,0.0000018314,0.0000018313,0.0000018296, +0.0000018259,0.0000018209,0.0000018156,0.0000018111,0.0000018067, +0.0000018023,0.0000017985,0.0000017954,0.0000017929,0.0000017913, +0.0000017903,0.0000017898,0.0000017897,0.0000017901,0.0000017902, +0.0000017906,0.0000017901,0.0000017904,0.0000017918,0.0000017952, +0.0000018005,0.0000018064,0.0000018131,0.0000018197,0.0000018256, +0.0000018294,0.0000018305,0.0000018303,0.0000018283,0.0000018267, +0.0000018254,0.0000018257,0.0000018272,0.0000018295,0.0000018319, +0.0000018336,0.0000018343,0.0000018348,0.0000018344,0.0000018320, +0.0000018272,0.0000018203,0.0000018124,0.0000018041,0.0000017967, +0.0000017908,0.0000017865,0.0000017836,0.0000017823,0.0000017824, +0.0000017827,0.0000017842,0.0000017859,0.0000017877,0.0000017890, +0.0000017903,0.0000017913,0.0000017920,0.0000017925,0.0000017936, +0.0000017942,0.0000017944,0.0000017948,0.0000017955,0.0000017965, +0.0000017980,0.0000017992,0.0000018002,0.0000018011,0.0000018012, +0.0000018016,0.0000018017,0.0000018017,0.0000018017,0.0000018014, +0.0000018007,0.0000018002,0.0000017995,0.0000017989,0.0000017988, +0.0000017986,0.0000017989,0.0000017992,0.0000018000,0.0000018012, +0.0000018026,0.0000018039,0.0000018054,0.0000018073,0.0000018091, +0.0000018105,0.0000018121,0.0000018140,0.0000018149,0.0000018145, +0.0000018138,0.0000018127,0.0000018110,0.0000018092,0.0000018067, +0.0000018037,0.0000018006,0.0000017976,0.0000017950,0.0000017927, +0.0000017907,0.0000017891,0.0000017878,0.0000017864,0.0000017849, +0.0000017836,0.0000017824,0.0000017814,0.0000017809,0.0000017810, +0.0000017811,0.0000017807,0.0000017797,0.0000017782,0.0000017761, +0.0000017732,0.0000017697,0.0000017657,0.0000017620,0.0000017593, +0.0000017578,0.0000017572,0.0000017573,0.0000017580,0.0000017593, +0.0000017604,0.0000017608,0.0000017601,0.0000017581,0.0000017544, +0.0000017496,0.0000017445,0.0000017401,0.0000017371,0.0000017363, +0.0000017369,0.0000017382,0.0000017403,0.0000017431,0.0000017460, +0.0000017487,0.0000017513,0.0000017540,0.0000017570,0.0000017603, +0.0000017647,0.0000017692,0.0000017727,0.0000017748,0.0000017756, +0.0000017757,0.0000017752,0.0000017743,0.0000017740,0.0000017742, +0.0000017750,0.0000017747,0.0000017741,0.0000017725,0.0000017691, +0.0000017644,0.0000017589,0.0000017529,0.0000017465,0.0000017402, +0.0000017354,0.0000017331,0.0000017323,0.0000017325,0.0000017329, +0.0000017324,0.0000017303,0.0000017264,0.0000017231,0.0000017211, +0.0000017219,0.0000017262,0.0000017326,0.0000017396,0.0000017459, +0.0000017515,0.0000017564,0.0000017602,0.0000017624,0.0000017639, +0.0000017656,0.0000017689,0.0000017734,0.0000017786,0.0000017806, +0.0000017782,0.0000017712,0.0000017610,0.0000017507,0.0000017430, +0.0000017389,0.0000017373,0.0000017364,0.0000017353,0.0000017340, +0.0000017327,0.0000017322,0.0000017323,0.0000017328,0.0000017337, +0.0000017350,0.0000017366,0.0000017384,0.0000017401,0.0000017417, +0.0000017425,0.0000017429,0.0000017430,0.0000017435,0.0000017444, +0.0000017457,0.0000017473,0.0000017491,0.0000017509,0.0000017526, +0.0000017541,0.0000017552,0.0000017562,0.0000017572,0.0000017584, +0.0000017597,0.0000017609,0.0000017618,0.0000017626,0.0000017632, +0.0000017636,0.0000017637,0.0000017633,0.0000017630,0.0000017623, +0.0000017617,0.0000017611,0.0000017605,0.0000017598,0.0000017589, +0.0000017576,0.0000017560,0.0000017544,0.0000017533,0.0000017532, +0.0000017540,0.0000017562,0.0000017600,0.0000017653,0.0000017708, +0.0000017749,0.0000017771,0.0000017759,0.0000017711,0.0000017639, +0.0000017569,0.0000017519,0.0000017491,0.0000017483,0.0000017478, +0.0000017468,0.0000017459,0.0000017450,0.0000017454,0.0000017470, +0.0000017495,0.0000017517,0.0000017532,0.0000017546,0.0000017565, +0.0000017592,0.0000017621,0.0000017655,0.0000017684,0.0000017701, +0.0000017706,0.0000017708,0.0000017716,0.0000017731,0.0000017762, +0.0000017801,0.0000017846,0.0000017891,0.0000017933,0.0000017971, +0.0000018005,0.0000018031,0.0000018046,0.0000018057,0.0000018070, +0.0000018092,0.0000018122,0.0000018159,0.0000018197,0.0000018230, +0.0000018256,0.0000018272,0.0000018279,0.0000018279,0.0000018277, +0.0000018281,0.0000018288,0.0000018310,0.0000018335,0.0000018362, +0.0000018389,0.0000018417,0.0000018446,0.0000018470,0.0000018489, +0.0000018506,0.0000018516,0.0000018528,0.0000018540,0.0000018546, +0.0000018552,0.0000018562,0.0000018577,0.0000018601,0.0000018617, +0.0000018624,0.0000018625,0.0000018623,0.0000018617,0.0000018607, +0.0000018592,0.0000018571,0.0000018547,0.0000018518,0.0000018485, +0.0000018450,0.0000018418,0.0000018394,0.0000018376,0.0000018364, +0.0000018360,0.0000018359,0.0000018363,0.0000018367,0.0000018374, +0.0000018385,0.0000018400,0.0000018414,0.0000018420,0.0000018423, +0.0000018422,0.0000018414,0.0000018416,0.0000018431,0.0000018447, +0.0000018463,0.0000018478,0.0000018483,0.0000018493,0.0000018510, +0.0000018533,0.0000018562,0.0000018583,0.0000018602,0.0000018616, +0.0000018629,0.0000018622,0.0000018615,0.0000018615,0.0000018595, +0.0000018576,0.0000018553,0.0000018517,0.0000018495,0.0000018467, +0.0000018451,0.0000018439,0.0000018452,0.0000018453,0.0000018462, +0.0000018472,0.0000018479,0.0000018482,0.0000018473,0.0000018460, +0.0000018431,0.0000018392,0.0000018345,0.0000018291,0.0000018232, +0.0000018171,0.0000018118,0.0000018080,0.0000018060,0.0000018057, +0.0000018071,0.0000018083,0.0000018098,0.0000018110,0.0000018113, +0.0000018095,0.0000018070,0.0000018036,0.0000017989,0.0000017939, +0.0000017897,0.0000017862,0.0000017839,0.0000017826,0.0000017821, +0.0000017821,0.0000017821,0.0000017812,0.0000017795,0.0000017769, +0.0000017733,0.0000017688,0.0000017636,0.0000017582,0.0000017531, +0.0000017485,0.0000017453,0.0000017435,0.0000017426,0.0000017425, +0.0000017424,0.0000017431,0.0000017453,0.0000017477,0.0000017498, +0.0000017519,0.0000017530,0.0000017525,0.0000017504,0.0000017467, +0.0000017422,0.0000017374,0.0000017343,0.0000017318,0.0000017295, +0.0000017288,0.0000017300,0.0000017320,0.0000017356,0.0000017406, +0.0000017454,0.0000017485,0.0000017509,0.0000017523,0.0000017522, +0.0000017499,0.0000017463,0.0000017424,0.0000017388,0.0000017362, +0.0000017346,0.0000017339,0.0000017330,0.0000017334,0.0000017340, +0.0000017354,0.0000017377,0.0000017411,0.0000017452,0.0000017494, +0.0000017539,0.0000017576,0.0000017598,0.0000017615,0.0000017630, +0.0000017641,0.0000017652,0.0000017655,0.0000017638,0.0000017622, +0.0000017607,0.0000017585,0.0000017561,0.0000017542,0.0000017528, +0.0000017512,0.0000017507,0.0000017505,0.0000017512,0.0000017514, +0.0000017517,0.0000017523,0.0000017522,0.0000017524,0.0000017530, +0.0000017538,0.0000017546,0.0000017561,0.0000017584,0.0000017607, +0.0000017629,0.0000017640,0.0000017644,0.0000017649,0.0000017658, +0.0000017662,0.0000017659,0.0000017658,0.0000017664,0.0000017672, +0.0000017684,0.0000017705,0.0000017724,0.0000017746,0.0000017774, +0.0000017797,0.0000017808,0.0000017815,0.0000017822,0.0000017832, +0.0000017829,0.0000017822,0.0000017831,0.0000017843,0.0000017842, +0.0000017844,0.0000017859,0.0000017881,0.0000017901,0.0000017911, +0.0000017904,0.0000017888,0.0000017873,0.0000017857,0.0000017845, +0.0000017841,0.0000017842,0.0000017847,0.0000017854,0.0000017864, +0.0000017870,0.0000017869,0.0000017860,0.0000017845,0.0000017825, +0.0000017800,0.0000017786,0.0000017784,0.0000017782,0.0000017777, +0.0000017767,0.0000017748,0.0000017720,0.0000017686,0.0000017654, +0.0000017632,0.0000017615,0.0000017606,0.0000017605,0.0000017609, +0.0000017604,0.0000017585,0.0000017561,0.0000017541,0.0000017528, +0.0000017533,0.0000017562,0.0000017592,0.0000017642,0.0000017691, +0.0000017717,0.0000017726,0.0000017745,0.0000017780,0.0000017831, +0.0000017890,0.0000017959,0.0000018056,0.0000018190,0.0000018350, +0.0000018525,0.0000018697,0.0000018855,0.0000018987,0.0000019091, +0.0000019178,0.0000019241,0.0000019284,0.0000019317,0.0000019353, +0.0000019402,0.0000019456,0.0000019507,0.0000019559,0.0000019596, +0.0000019608,0.0000019589,0.0000019568,0.0000019523,0.0000019484, +0.0000019466,0.0000019460,0.0000019456,0.0000019447,0.0000019439, +0.0000019433,0.0000019436,0.0000019441,0.0000019445,0.0000019454, +0.0000019469,0.0000019487,0.0000019494,0.0000019484,0.0000019457, +0.0000019426,0.0000019394,0.0000019360,0.0000019325,0.0000019297, +0.0000019280,0.0000019275,0.0000019271,0.0000019256,0.0000019230, +0.0000019198,0.0000019172,0.0000019156,0.0000019144,0.0000019127, +0.0000019112,0.0000019096,0.0000019087,0.0000019085,0.0000019090, +0.0000019101,0.0000019121,0.0000019146,0.0000019169,0.0000019184, +0.0000019179,0.0000019161,0.0000019133,0.0000019102,0.0000019077, +0.0000019060,0.0000019051,0.0000019046,0.0000019041,0.0000019028, +0.0000019025,0.0000019025,0.0000019019,0.0000019005,0.0000018984, +0.0000018953,0.0000018916,0.0000018879,0.0000018845,0.0000018814, +0.0000018786,0.0000018757,0.0000018727,0.0000018695,0.0000018654, +0.0000018605,0.0000018562,0.0000018545,0.0000018536,0.0000018546, +0.0000018575,0.0000018620,0.0000018676,0.0000018735,0.0000018793, +0.0000018838,0.0000018853,0.0000018851,0.0000018829,0.0000018803, +0.0000018791,0.0000018788,0.0000018787,0.0000018792,0.0000018807, +0.0000018824,0.0000018836,0.0000018842,0.0000018844,0.0000018846, +0.0000018849,0.0000018855,0.0000018869,0.0000018899,0.0000018941, +0.0000018984,0.0000019009,0.0000019005,0.0000018993,0.0000018948, +0.0000018878,0.0000018799,0.0000018715,0.0000018644,0.0000018559, +0.0000018448,0.0000018357,0.0000018341,0.0000018410,0.0000018519, +0.0000018603,0.0000018639,0.0000018638,0.0000018588,0.0000018504, +0.0000018413,0.0000018367,0.0000018374,0.0000018429,0.0000018482, +0.0000018511,0.0000018498,0.0000018458,0.0000018406,0.0000018350, +0.0000018297,0.0000018262,0.0000018255,0.0000018262,0.0000018264, +0.0000018253,0.0000018236,0.0000018217,0.0000018182,0.0000018136, +0.0000018098,0.0000018081,0.0000018081,0.0000018101,0.0000018136, +0.0000018163,0.0000018170,0.0000018173,0.0000018193,0.0000018233, +0.0000018278,0.0000018312,0.0000018327,0.0000018327,0.0000018326, +0.0000018319,0.0000018300,0.0000018270,0.0000018233,0.0000018189, +0.0000018146,0.0000018103,0.0000018063,0.0000018044,0.0000018051, +0.0000018078,0.0000018110,0.0000018137,0.0000018148,0.0000018139, +0.0000018109,0.0000018064,0.0000018024,0.0000018001,0.0000017992, +0.0000017988,0.0000017983,0.0000017978,0.0000017980,0.0000018015, +0.0000018090,0.0000018189,0.0000018285,0.0000018358,0.0000018408, +0.0000018447,0.0000018480,0.0000018503,0.0000018511,0.0000018505, +0.0000018483,0.0000018455,0.0000018429,0.0000018406,0.0000018381, +0.0000018355,0.0000018334,0.0000018321,0.0000018318,0.0000018325, +0.0000018335,0.0000018343,0.0000018342,0.0000018329,0.0000018307, +0.0000018284,0.0000018264,0.0000018250,0.0000018239,0.0000018224, +0.0000018201,0.0000018167,0.0000018125,0.0000018080,0.0000018030, +0.0000017982,0.0000017947,0.0000017930,0.0000017932,0.0000017949, +0.0000017974,0.0000017987,0.0000017977,0.0000017943,0.0000017887, +0.0000017817,0.0000017744,0.0000017675,0.0000017624,0.0000017606, +0.0000017622,0.0000017638,0.0000017649,0.0000017657,0.0000017659, +0.0000017663,0.0000017674,0.0000017692,0.0000017714,0.0000017723, +0.0000017725,0.0000017726,0.0000017730,0.0000017734,0.0000017731, +0.0000017720,0.0000017705,0.0000017689,0.0000017671,0.0000017664, +0.0000017654,0.0000017654,0.0000017659,0.0000017661,0.0000017663, +0.0000017675,0.0000017706,0.0000017747,0.0000017777,0.0000017789, +0.0000017787,0.0000017789,0.0000017828,0.0000017899,0.0000017981, +0.0000018073,0.0000018163,0.0000018235,0.0000018294,0.0000018305, +0.0000018307,0.0000018294,0.0000018282,0.0000018272,0.0000018271, +0.0000018265,0.0000018256,0.0000018253,0.0000018257,0.0000018272, +0.0000018296,0.0000018327,0.0000018371,0.0000018424,0.0000018487, +0.0000018563,0.0000018655,0.0000018749,0.0000018852,0.0000018957, +0.0000019047,0.0000019132,0.0000019210,0.0000019257,0.0000019255, +0.0000019254,0.0000019260,0.0000019243,0.0000019221,0.0000019198, +0.0000019175,0.0000019147,0.0000019119,0.0000019094,0.0000019073, +0.0000019054,0.0000019039,0.0000019027,0.0000019019,0.0000019016, +0.0000019019,0.0000019029,0.0000019037,0.0000019041,0.0000019045, +0.0000019051,0.0000019060,0.0000019063,0.0000019061,0.0000019064, +0.0000019075,0.0000019085,0.0000019085,0.0000019066,0.0000019023, +0.0000018952,0.0000018861,0.0000018758,0.0000018646,0.0000018537, +0.0000018441,0.0000018349,0.0000018259,0.0000018177,0.0000018102, +0.0000018021,0.0000017933,0.0000017848,0.0000017777,0.0000017736, +0.0000017725,0.0000017731,0.0000017740,0.0000017739,0.0000017720, +0.0000017713,0.0000017871,0.0000018195,0.0000018315,0.0000018340, +0.0000018629,0.0000018842,0.0000018757,0.0000018638,0.0000018599, +0.0000018630,0.0000018741,0.0000018843,0.0000018871,0.0000018872, +0.0000018871,0.0000018842,0.0000018799,0.0000018782,0.0000018796, +0.0000018824,0.0000018839,0.0000018841,0.0000018812,0.0000018777, +0.0000018745,0.0000018709,0.0000018688,0.0000018715,0.0000018758, +0.0000018504,0.0000018088,0.0000017841,0.0000017788,0.0000017778, +0.0000017781,0.0000017785,0.0000017786,0.0000017780,0.0000017773, +0.0000017763,0.0000017744,0.0000017712,0.0000017676,0.0000017657, +0.0000017669,0.0000017693,0.0000017734,0.0000017775,0.0000017799, +0.0000017808,0.0000017816,0.0000017812,0.0000017811,0.0000017805, +0.0000017794,0.0000017785,0.0000017784,0.0000017772,0.0000017758, +0.0000017739,0.0000017725,0.0000017727,0.0000017741,0.0000017757, +0.0000017762,0.0000017757,0.0000017753,0.0000017754,0.0000017762, +0.0000017775,0.0000017796,0.0000017822,0.0000017852,0.0000017882, +0.0000017908,0.0000017930,0.0000017945,0.0000017952,0.0000017954, +0.0000017952,0.0000017946,0.0000017935,0.0000017920,0.0000017901, +0.0000017878,0.0000017852,0.0000017825,0.0000017799,0.0000017776, +0.0000017758,0.0000017750,0.0000017741,0.0000017740,0.0000017743, +0.0000017743,0.0000017737,0.0000017723,0.0000017712,0.0000017712, +0.0000017720,0.0000017736,0.0000017752,0.0000017762,0.0000017762, +0.0000017756,0.0000017741,0.0000017718,0.0000017695,0.0000017670, +0.0000017654,0.0000017646,0.0000017648,0.0000017660,0.0000017678, +0.0000017700,0.0000017725,0.0000017752,0.0000017782,0.0000017812, +0.0000017843,0.0000017872,0.0000017898,0.0000017917,0.0000017928, +0.0000017931,0.0000017930,0.0000017924,0.0000017915,0.0000017902, +0.0000017890,0.0000017877,0.0000017867,0.0000017862,0.0000017866, +0.0000017877,0.0000017889,0.0000017906,0.0000017921,0.0000017935, +0.0000017948,0.0000017964,0.0000017987,0.0000018012,0.0000018039, +0.0000018069,0.0000018099,0.0000018131,0.0000018163,0.0000018185, +0.0000018196,0.0000018206,0.0000018215,0.0000018219,0.0000018225, +0.0000018241,0.0000018261,0.0000018280,0.0000018301,0.0000018327, +0.0000018354,0.0000018370,0.0000018367,0.0000018346,0.0000018312, +0.0000018281,0.0000018259,0.0000018235,0.0000018195,0.0000018144, +0.0000017983,0.0000017949,0.0000017925,0.0000017914,0.0000017911, +0.0000017915,0.0000017926,0.0000017937,0.0000017943,0.0000017952, +0.0000017964,0.0000017975,0.0000017982,0.0000017986,0.0000017990, +0.0000017993,0.0000017998,0.0000018004,0.0000018007,0.0000018005, +0.0000017999,0.0000017990,0.0000017982,0.0000017973,0.0000017964, +0.0000017956,0.0000017949,0.0000017942,0.0000017935,0.0000017931, +0.0000017938,0.0000017954,0.0000017976,0.0000018002,0.0000018031, +0.0000018062,0.0000018096,0.0000018129,0.0000018164,0.0000018204, +0.0000018245,0.0000018280,0.0000018319,0.0000018355,0.0000018378, +0.0000018383,0.0000018380,0.0000018369,0.0000018358,0.0000018345, +0.0000018328,0.0000018304,0.0000018277,0.0000018257,0.0000018248, +0.0000018246,0.0000018252,0.0000018269,0.0000018296,0.0000018327, +0.0000018362,0.0000018396,0.0000018422,0.0000018446,0.0000018464, +0.0000018475,0.0000018485,0.0000018497,0.0000018516,0.0000018544, +0.0000018582,0.0000018630,0.0000018683,0.0000018732,0.0000018769, +0.0000018799,0.0000018810,0.0000018802,0.0000018763,0.0000018699, +0.0000018614,0.0000018540,0.0000018492,0.0000018484,0.0000018510, +0.0000018546,0.0000018573,0.0000018562,0.0000018521,0.0000018455, +0.0000018383,0.0000018337,0.0000018324,0.0000018322,0.0000018324, +0.0000018310,0.0000018279,0.0000018239,0.0000018199,0.0000018156, +0.0000018117,0.0000018083,0.0000018055,0.0000018035,0.0000018018, +0.0000018004,0.0000017990,0.0000017979,0.0000017968,0.0000017955, +0.0000017937,0.0000017907,0.0000017889,0.0000017873,0.0000017863, +0.0000017879,0.0000017914,0.0000017965,0.0000018031,0.0000018103, +0.0000018170,0.0000018235,0.0000018292,0.0000018300,0.0000018303, +0.0000018273,0.0000018241,0.0000018220,0.0000018223,0.0000018242, +0.0000018271,0.0000018303,0.0000018330,0.0000018345,0.0000018346, +0.0000018346,0.0000018319,0.0000018273,0.0000018211,0.0000018135, +0.0000018060,0.0000017986,0.0000017926,0.0000017882,0.0000017853, +0.0000017835,0.0000017835,0.0000017836,0.0000017845,0.0000017856, +0.0000017868,0.0000017881,0.0000017896,0.0000017911,0.0000017925, +0.0000017933,0.0000017937,0.0000017943,0.0000017952,0.0000017963, +0.0000017971,0.0000017986,0.0000017997,0.0000018002,0.0000018006, +0.0000018008,0.0000018014,0.0000018023,0.0000018029,0.0000018031, +0.0000018028,0.0000018024,0.0000018019,0.0000018014,0.0000018005, +0.0000017999,0.0000017996,0.0000017997,0.0000017996,0.0000017999, +0.0000018006,0.0000018012,0.0000018019,0.0000018032,0.0000018046, +0.0000018058,0.0000018071,0.0000018091,0.0000018110,0.0000018121, +0.0000018122,0.0000018116,0.0000018108,0.0000018100,0.0000018089, +0.0000018073,0.0000018054,0.0000018035,0.0000018019,0.0000018004, +0.0000017986,0.0000017970,0.0000017954,0.0000017938,0.0000017922, +0.0000017908,0.0000017894,0.0000017881,0.0000017870,0.0000017863, +0.0000017855,0.0000017844,0.0000017828,0.0000017809,0.0000017787, +0.0000017764,0.0000017734,0.0000017702,0.0000017675,0.0000017658, +0.0000017650,0.0000017646,0.0000017649,0.0000017656,0.0000017663, +0.0000017666,0.0000017664,0.0000017654,0.0000017637,0.0000017611, +0.0000017574,0.0000017535,0.0000017502,0.0000017478,0.0000017464, +0.0000017458,0.0000017458,0.0000017456,0.0000017457,0.0000017458, +0.0000017455,0.0000017454,0.0000017462,0.0000017479,0.0000017511, +0.0000017560,0.0000017617,0.0000017673,0.0000017720,0.0000017752, +0.0000017768,0.0000017768,0.0000017759,0.0000017741,0.0000017719, +0.0000017699,0.0000017685,0.0000017680,0.0000017678,0.0000017669, +0.0000017662,0.0000017653,0.0000017633,0.0000017599,0.0000017553, +0.0000017504,0.0000017455,0.0000017409,0.0000017372,0.0000017353, +0.0000017350,0.0000017349,0.0000017345,0.0000017338,0.0000017321, +0.0000017289,0.0000017267,0.0000017256,0.0000017268,0.0000017305, +0.0000017356,0.0000017408,0.0000017458,0.0000017503,0.0000017540, +0.0000017570,0.0000017591,0.0000017608,0.0000017635,0.0000017684, +0.0000017742,0.0000017789,0.0000017806,0.0000017791,0.0000017740, +0.0000017654,0.0000017561,0.0000017483,0.0000017423,0.0000017380, +0.0000017355,0.0000017340,0.0000017335,0.0000017342,0.0000017354, +0.0000017365,0.0000017381,0.0000017391,0.0000017396,0.0000017399, +0.0000017398,0.0000017392,0.0000017395,0.0000017412,0.0000017439, +0.0000017467,0.0000017496,0.0000017524,0.0000017545,0.0000017561, +0.0000017572,0.0000017581,0.0000017589,0.0000017596,0.0000017605, +0.0000017615,0.0000017625,0.0000017631,0.0000017634,0.0000017635, +0.0000017634,0.0000017629,0.0000017620,0.0000017610,0.0000017600, +0.0000017594,0.0000017590,0.0000017590,0.0000017587,0.0000017585, +0.0000017586,0.0000017592,0.0000017606,0.0000017633,0.0000017674, +0.0000017718,0.0000017762,0.0000017799,0.0000017804,0.0000017777, +0.0000017727,0.0000017659,0.0000017586,0.0000017529,0.0000017498, +0.0000017486,0.0000017482,0.0000017481,0.0000017477,0.0000017476, +0.0000017483,0.0000017499,0.0000017518,0.0000017533,0.0000017544, +0.0000017554,0.0000017568,0.0000017593,0.0000017623,0.0000017649, +0.0000017668,0.0000017683,0.0000017693,0.0000017704,0.0000017724, +0.0000017752,0.0000017787,0.0000017829,0.0000017874,0.0000017920, +0.0000017963,0.0000018002,0.0000018032,0.0000018052,0.0000018069, +0.0000018084,0.0000018104,0.0000018132,0.0000018169,0.0000018211, +0.0000018249,0.0000018278,0.0000018296,0.0000018306,0.0000018314, +0.0000018325,0.0000018341,0.0000018362,0.0000018387,0.0000018413, +0.0000018444,0.0000018479,0.0000018512,0.0000018544,0.0000018570, +0.0000018590,0.0000018608,0.0000018623,0.0000018638,0.0000018655, +0.0000018671,0.0000018691,0.0000018711,0.0000018721,0.0000018734, +0.0000018745,0.0000018755,0.0000018770,0.0000018775,0.0000018775, +0.0000018764,0.0000018747,0.0000018720,0.0000018694,0.0000018670, +0.0000018645,0.0000018617,0.0000018587,0.0000018554,0.0000018519, +0.0000018484,0.0000018452,0.0000018425,0.0000018405,0.0000018388, +0.0000018379,0.0000018372,0.0000018365,0.0000018363,0.0000018362, +0.0000018370,0.0000018384,0.0000018397,0.0000018407,0.0000018413, +0.0000018413,0.0000018416,0.0000018425,0.0000018438,0.0000018453, +0.0000018456,0.0000018447,0.0000018450,0.0000018441,0.0000018446, +0.0000018465,0.0000018480,0.0000018497,0.0000018524,0.0000018547, +0.0000018561,0.0000018583,0.0000018602,0.0000018615,0.0000018632, +0.0000018617,0.0000018619,0.0000018602,0.0000018575,0.0000018540, +0.0000018507,0.0000018484,0.0000018454,0.0000018439,0.0000018428, +0.0000018437,0.0000018431,0.0000018441,0.0000018445,0.0000018450, +0.0000018452,0.0000018445,0.0000018443,0.0000018417,0.0000018376, +0.0000018330,0.0000018275,0.0000018218,0.0000018172,0.0000018139, +0.0000018121,0.0000018117,0.0000018122,0.0000018126,0.0000018123, +0.0000018116,0.0000018107,0.0000018083,0.0000018046,0.0000018007, +0.0000017966,0.0000017922,0.0000017888,0.0000017863,0.0000017846, +0.0000017837,0.0000017828,0.0000017818,0.0000017813,0.0000017808, +0.0000017796,0.0000017776,0.0000017746,0.0000017706,0.0000017658, +0.0000017606,0.0000017560,0.0000017516,0.0000017486,0.0000017466, +0.0000017460,0.0000017468,0.0000017477,0.0000017494,0.0000017522, +0.0000017544,0.0000017550,0.0000017547,0.0000017525,0.0000017491, +0.0000017451,0.0000017404,0.0000017372,0.0000017342,0.0000017327, +0.0000017329,0.0000017340,0.0000017366,0.0000017405,0.0000017446, +0.0000017478,0.0000017505,0.0000017533,0.0000017551,0.0000017550, +0.0000017538,0.0000017521,0.0000017494,0.0000017465,0.0000017438, +0.0000017410,0.0000017381,0.0000017353,0.0000017334,0.0000017332, +0.0000017328,0.0000017345,0.0000017375,0.0000017412,0.0000017454, +0.0000017494,0.0000017529,0.0000017557,0.0000017582,0.0000017598, +0.0000017617,0.0000017628,0.0000017624,0.0000017609,0.0000017593, +0.0000017574,0.0000017567,0.0000017552,0.0000017532,0.0000017523, +0.0000017519,0.0000017521,0.0000017530,0.0000017530,0.0000017538, +0.0000017550,0.0000017552,0.0000017544,0.0000017540,0.0000017540, +0.0000017546,0.0000017555,0.0000017572,0.0000017594,0.0000017615, +0.0000017629,0.0000017643,0.0000017652,0.0000017654,0.0000017648, +0.0000017642,0.0000017638,0.0000017629,0.0000017626,0.0000017642, +0.0000017668,0.0000017697,0.0000017732,0.0000017767,0.0000017792, +0.0000017807,0.0000017822,0.0000017840,0.0000017848,0.0000017848, +0.0000017854,0.0000017864,0.0000017865,0.0000017869,0.0000017890, +0.0000017911,0.0000017927,0.0000017935,0.0000017927,0.0000017908, +0.0000017890,0.0000017877,0.0000017863,0.0000017851,0.0000017844, +0.0000017841,0.0000017844,0.0000017859,0.0000017877,0.0000017893, +0.0000017897,0.0000017889,0.0000017876,0.0000017858,0.0000017837, +0.0000017822,0.0000017809,0.0000017797,0.0000017778,0.0000017753, +0.0000017722,0.0000017686,0.0000017653,0.0000017628,0.0000017609, +0.0000017598,0.0000017605,0.0000017619,0.0000017632,0.0000017640, +0.0000017638,0.0000017634,0.0000017631,0.0000017628,0.0000017624, +0.0000017614,0.0000017620,0.0000017636,0.0000017662,0.0000017676, +0.0000017695,0.0000017718,0.0000017728,0.0000017728,0.0000017707, +0.0000017693,0.0000017709,0.0000017761,0.0000017844,0.0000017957, +0.0000018091,0.0000018236,0.0000018390,0.0000018559,0.0000018718, +0.0000018858,0.0000018975,0.0000019083,0.0000019176,0.0000019260, +0.0000019333,0.0000019400,0.0000019456,0.0000019499,0.0000019526, +0.0000019535,0.0000019519,0.0000019493,0.0000019482,0.0000019473, +0.0000019469,0.0000019458,0.0000019442,0.0000019430,0.0000019424, +0.0000019420,0.0000019416,0.0000019415,0.0000019423,0.0000019444, +0.0000019458,0.0000019458,0.0000019440,0.0000019413,0.0000019382, +0.0000019349,0.0000019312,0.0000019273,0.0000019240,0.0000019219, +0.0000019211,0.0000019205,0.0000019188,0.0000019161,0.0000019131, +0.0000019108,0.0000019095,0.0000019090,0.0000019088,0.0000019088, +0.0000019087,0.0000019083,0.0000019077,0.0000019067,0.0000019060, +0.0000019065,0.0000019083,0.0000019111,0.0000019132,0.0000019137, +0.0000019125,0.0000019097,0.0000019065,0.0000019042,0.0000019027, +0.0000019014,0.0000019004,0.0000018995,0.0000019002,0.0000019024, +0.0000019040,0.0000019062,0.0000019066,0.0000019053,0.0000019025, +0.0000018984,0.0000018932,0.0000018877,0.0000018835,0.0000018809, +0.0000018794,0.0000018779,0.0000018760,0.0000018734,0.0000018699, +0.0000018650,0.0000018592,0.0000018547,0.0000018522,0.0000018528, +0.0000018564,0.0000018615,0.0000018664,0.0000018707,0.0000018757, +0.0000018807,0.0000018836,0.0000018843,0.0000018834,0.0000018813, +0.0000018790,0.0000018771,0.0000018761,0.0000018763,0.0000018775, +0.0000018794,0.0000018816,0.0000018830,0.0000018834,0.0000018836, +0.0000018848,0.0000018870,0.0000018903,0.0000018935,0.0000018954, +0.0000018963,0.0000018976,0.0000018981,0.0000018979,0.0000018931, +0.0000018838,0.0000018748,0.0000018688,0.0000018617,0.0000018504, +0.0000018386,0.0000018349,0.0000018398,0.0000018528,0.0000018637, +0.0000018682,0.0000018674,0.0000018606,0.0000018498,0.0000018389, +0.0000018324,0.0000018328,0.0000018384,0.0000018451,0.0000018475, +0.0000018462,0.0000018422,0.0000018378,0.0000018326,0.0000018282, +0.0000018262,0.0000018260,0.0000018263,0.0000018264,0.0000018258, +0.0000018246,0.0000018218,0.0000018176,0.0000018131,0.0000018098, +0.0000018087,0.0000018092,0.0000018122,0.0000018153,0.0000018168, +0.0000018175,0.0000018198,0.0000018244,0.0000018293,0.0000018324, +0.0000018329,0.0000018326,0.0000018322,0.0000018317,0.0000018298, +0.0000018257,0.0000018205,0.0000018151,0.0000018109,0.0000018079, +0.0000018057,0.0000018053,0.0000018066,0.0000018098,0.0000018130, +0.0000018147,0.0000018144,0.0000018122,0.0000018082,0.0000018032, +0.0000017991,0.0000017970,0.0000017964,0.0000017963,0.0000017968, +0.0000017988,0.0000018031,0.0000018105,0.0000018198,0.0000018293, +0.0000018372,0.0000018429,0.0000018471,0.0000018508,0.0000018537, +0.0000018549,0.0000018551,0.0000018544,0.0000018530,0.0000018511, +0.0000018493,0.0000018473,0.0000018452,0.0000018426,0.0000018397, +0.0000018366,0.0000018338,0.0000018319,0.0000018311,0.0000018308, +0.0000018307,0.0000018303,0.0000018291,0.0000018270,0.0000018246, +0.0000018229,0.0000018220,0.0000018213,0.0000018205,0.0000018186, +0.0000018154,0.0000018113,0.0000018067,0.0000018021,0.0000017979, +0.0000017946,0.0000017927,0.0000017925,0.0000017934,0.0000017954, +0.0000017960,0.0000017960,0.0000017952,0.0000017936,0.0000017915, +0.0000017887,0.0000017843,0.0000017782,0.0000017712,0.0000017659, +0.0000017648,0.0000017647,0.0000017650,0.0000017654,0.0000017648, +0.0000017639,0.0000017643,0.0000017667,0.0000017705,0.0000017737, +0.0000017766,0.0000017778,0.0000017775,0.0000017759,0.0000017738, +0.0000017721,0.0000017701,0.0000017672,0.0000017656,0.0000017645, +0.0000017641,0.0000017638,0.0000017634,0.0000017636,0.0000017655, +0.0000017690,0.0000017729,0.0000017764,0.0000017783,0.0000017811, +0.0000017848,0.0000017886,0.0000017934,0.0000018000,0.0000018080, +0.0000018167,0.0000018232,0.0000018276,0.0000018293,0.0000018296, +0.0000018288,0.0000018275,0.0000018261,0.0000018239,0.0000018225, +0.0000018219,0.0000018217,0.0000018216,0.0000018217,0.0000018226, +0.0000018240,0.0000018261,0.0000018298,0.0000018354,0.0000018420, +0.0000018491,0.0000018570,0.0000018649,0.0000018734,0.0000018821, +0.0000018900,0.0000018975,0.0000019050,0.0000019119,0.0000019176, +0.0000019216,0.0000019221,0.0000019226,0.0000019238,0.0000019236, +0.0000019220,0.0000019200,0.0000019178,0.0000019155,0.0000019136, +0.0000019120,0.0000019111,0.0000019110,0.0000019112,0.0000019114, +0.0000019109,0.0000019100,0.0000019091,0.0000019076,0.0000019049, +0.0000019011,0.0000018972,0.0000018936,0.0000018901,0.0000018857, +0.0000018794,0.0000018712,0.0000018620,0.0000018530,0.0000018443, +0.0000018358,0.0000018284,0.0000018218,0.0000018152,0.0000018084, +0.0000018018,0.0000017950,0.0000017877,0.0000017813,0.0000017773, +0.0000017752,0.0000017758,0.0000017784,0.0000017811,0.0000017823, +0.0000017813,0.0000017768,0.0000017743,0.0000017874,0.0000018117, +0.0000018189,0.0000018358,0.0000018744,0.0000018831,0.0000018692, +0.0000018609,0.0000018615,0.0000018708,0.0000018814,0.0000018856, +0.0000018859,0.0000018857,0.0000018827,0.0000018786,0.0000018783, +0.0000018821,0.0000018820,0.0000018786,0.0000018660,0.0000018525, +0.0000018429,0.0000018390,0.0000018401,0.0000018433,0.0000018466, +0.0000018512,0.0000018655,0.0000018663,0.0000018390,0.0000018077, +0.0000017860,0.0000017783,0.0000017773,0.0000017783,0.0000017793, +0.0000017798,0.0000017801,0.0000017804,0.0000017805,0.0000017791, +0.0000017758,0.0000017715,0.0000017679,0.0000017662,0.0000017679, +0.0000017706,0.0000017742,0.0000017774,0.0000017799,0.0000017809, +0.0000017815,0.0000017805,0.0000017786,0.0000017758,0.0000017730, +0.0000017708,0.0000017697,0.0000017698,0.0000017705,0.0000017720, +0.0000017729,0.0000017730,0.0000017728,0.0000017727,0.0000017738, +0.0000017758,0.0000017788,0.0000017828,0.0000017872,0.0000017913, +0.0000017947,0.0000017974,0.0000017994,0.0000018007,0.0000018014, +0.0000018015,0.0000018012,0.0000018005,0.0000017996,0.0000017988, +0.0000017979,0.0000017969,0.0000017954,0.0000017935,0.0000017911, +0.0000017883,0.0000017852,0.0000017819,0.0000017787,0.0000017759, +0.0000017741,0.0000017730,0.0000017728,0.0000017729,0.0000017728, +0.0000017718,0.0000017706,0.0000017703,0.0000017709,0.0000017724, +0.0000017740,0.0000017755,0.0000017757,0.0000017752,0.0000017736, +0.0000017712,0.0000017684,0.0000017656,0.0000017640,0.0000017623, +0.0000017618,0.0000017626,0.0000017642,0.0000017664,0.0000017687, +0.0000017711,0.0000017739,0.0000017774,0.0000017815,0.0000017854, +0.0000017880,0.0000017890,0.0000017890,0.0000017885,0.0000017874, +0.0000017861,0.0000017848,0.0000017835,0.0000017826,0.0000017826, +0.0000017839,0.0000017863,0.0000017888,0.0000017911,0.0000017931, +0.0000017945,0.0000017956,0.0000017969,0.0000017989,0.0000018014, +0.0000018044,0.0000018080,0.0000018113,0.0000018141,0.0000018159, +0.0000018172,0.0000018185,0.0000018202,0.0000018218,0.0000018234, +0.0000018255,0.0000018277,0.0000018300,0.0000018321,0.0000018342, +0.0000018349,0.0000018343,0.0000018320,0.0000018288,0.0000018263, +0.0000018244,0.0000018218,0.0000018177,0.0000018124,0.0000018073, +0.0000018025,0.0000017867,0.0000017844,0.0000017836,0.0000017835, +0.0000017839,0.0000017848,0.0000017865,0.0000017883,0.0000017903, +0.0000017921,0.0000017939,0.0000017952,0.0000017957,0.0000017954, +0.0000017947,0.0000017937,0.0000017924,0.0000017914,0.0000017904, +0.0000017895,0.0000017891,0.0000017891,0.0000017892,0.0000017895, +0.0000017900,0.0000017903,0.0000017904,0.0000017902,0.0000017895, +0.0000017894,0.0000017902,0.0000017913,0.0000017928,0.0000017946, +0.0000017966,0.0000017991,0.0000018019,0.0000018050,0.0000018084, +0.0000018122,0.0000018163,0.0000018205,0.0000018250,0.0000018294, +0.0000018329,0.0000018351,0.0000018358,0.0000018354,0.0000018351, +0.0000018344,0.0000018329,0.0000018307,0.0000018282,0.0000018262, +0.0000018245,0.0000018235,0.0000018227,0.0000018226,0.0000018237, +0.0000018257,0.0000018287,0.0000018322,0.0000018359,0.0000018394, +0.0000018425,0.0000018449,0.0000018466,0.0000018477,0.0000018486, +0.0000018497,0.0000018511,0.0000018540,0.0000018585,0.0000018637, +0.0000018692,0.0000018745,0.0000018790,0.0000018821,0.0000018825, +0.0000018810,0.0000018761,0.0000018684,0.0000018596,0.0000018527, +0.0000018497,0.0000018504,0.0000018528,0.0000018548,0.0000018546, +0.0000018527,0.0000018477,0.0000018422,0.0000018381,0.0000018356, +0.0000018343,0.0000018335,0.0000018321,0.0000018302,0.0000018277, +0.0000018244,0.0000018209,0.0000018176,0.0000018149,0.0000018130, +0.0000018115,0.0000018103,0.0000018095,0.0000018090,0.0000018086, +0.0000018076,0.0000018054,0.0000018019,0.0000017976,0.0000017929, +0.0000017886,0.0000017863,0.0000017859,0.0000017852,0.0000017883, +0.0000017930,0.0000017990,0.0000018064,0.0000018140,0.0000018209, +0.0000018271,0.0000018278,0.0000018282,0.0000018248,0.0000018213, +0.0000018195,0.0000018202,0.0000018227,0.0000018259,0.0000018290, +0.0000018316,0.0000018335,0.0000018333,0.0000018330,0.0000018308, +0.0000018271,0.0000018219,0.0000018153,0.0000018081,0.0000018011, +0.0000017949,0.0000017902,0.0000017869,0.0000017846,0.0000017842, +0.0000017836,0.0000017835,0.0000017842,0.0000017858,0.0000017878, +0.0000017896,0.0000017913,0.0000017927,0.0000017943,0.0000017957, +0.0000017969,0.0000017982,0.0000017998,0.0000018011,0.0000018013, +0.0000018015,0.0000018015,0.0000018023,0.0000018033,0.0000018041, +0.0000018047,0.0000018051,0.0000018052,0.0000018051,0.0000018048, +0.0000018041,0.0000018035,0.0000018030,0.0000018023,0.0000018016, +0.0000018009,0.0000018009,0.0000018009,0.0000018011,0.0000018015, +0.0000018018,0.0000018017,0.0000018020,0.0000018030,0.0000018049, +0.0000018067,0.0000018081,0.0000018089,0.0000018091,0.0000018090, +0.0000018087,0.0000018081,0.0000018078,0.0000018075,0.0000018075, +0.0000018075,0.0000018074,0.0000018069,0.0000018057,0.0000018038, +0.0000018018,0.0000017996,0.0000017973,0.0000017951,0.0000017933, +0.0000017920,0.0000017907,0.0000017892,0.0000017873,0.0000017849, +0.0000017821,0.0000017787,0.0000017747,0.0000017709,0.0000017682, +0.0000017672,0.0000017673,0.0000017685,0.0000017707,0.0000017728, +0.0000017743,0.0000017746,0.0000017740,0.0000017723,0.0000017696, +0.0000017658,0.0000017617,0.0000017578,0.0000017551,0.0000017535, +0.0000017533,0.0000017539,0.0000017546,0.0000017546,0.0000017537, +0.0000017522,0.0000017502,0.0000017483,0.0000017475,0.0000017475, +0.0000017484,0.0000017507,0.0000017542,0.0000017585,0.0000017633, +0.0000017684,0.0000017733,0.0000017766,0.0000017782,0.0000017779, +0.0000017757,0.0000017721,0.0000017681,0.0000017644,0.0000017615, +0.0000017604,0.0000017606,0.0000017615,0.0000017622,0.0000017625, +0.0000017622,0.0000017607,0.0000017579,0.0000017547,0.0000017514, +0.0000017480,0.0000017446,0.0000017417,0.0000017401,0.0000017400, +0.0000017405,0.0000017408,0.0000017404,0.0000017382,0.0000017341, +0.0000017312,0.0000017296,0.0000017300,0.0000017325,0.0000017359, +0.0000017393,0.0000017427,0.0000017461,0.0000017498,0.0000017539, +0.0000017573,0.0000017602,0.0000017638,0.0000017689,0.0000017746, +0.0000017795,0.0000017815,0.0000017805,0.0000017750,0.0000017686, +0.0000017602,0.0000017529,0.0000017476,0.0000017444,0.0000017427, +0.0000017418,0.0000017415,0.0000017411,0.0000017407,0.0000017406, +0.0000017401,0.0000017393,0.0000017391,0.0000017404,0.0000017426, +0.0000017450,0.0000017479,0.0000017507,0.0000017527,0.0000017540, +0.0000017550,0.0000017554,0.0000017560,0.0000017566,0.0000017573, +0.0000017583,0.0000017594,0.0000017603,0.0000017610,0.0000017614, +0.0000017615,0.0000017618,0.0000017612,0.0000017605,0.0000017597, +0.0000017595,0.0000017601,0.0000017611,0.0000017629,0.0000017656, +0.0000017690,0.0000017720,0.0000017750,0.0000017781,0.0000017804, +0.0000017819,0.0000017812,0.0000017788,0.0000017739,0.0000017677, +0.0000017622,0.0000017577,0.0000017547,0.0000017519,0.0000017501, +0.0000017486,0.0000017483,0.0000017493,0.0000017509,0.0000017528, +0.0000017546,0.0000017561,0.0000017569,0.0000017577,0.0000017593, +0.0000017619,0.0000017646,0.0000017666,0.0000017674,0.0000017675, +0.0000017680,0.0000017698,0.0000017725,0.0000017764,0.0000017811, +0.0000017862,0.0000017913,0.0000017964,0.0000018012,0.0000018052, +0.0000018080,0.0000018096,0.0000018103,0.0000018116,0.0000018142, +0.0000018180,0.0000018224,0.0000018265,0.0000018297,0.0000018320, +0.0000018336,0.0000018351,0.0000018372,0.0000018402,0.0000018439, +0.0000018481,0.0000018524,0.0000018562,0.0000018590,0.0000018608, +0.0000018615,0.0000018621,0.0000018635,0.0000018658,0.0000018685, +0.0000018712,0.0000018736,0.0000018759,0.0000018787,0.0000018812, +0.0000018834,0.0000018852,0.0000018869,0.0000018869,0.0000018864, +0.0000018852,0.0000018837,0.0000018823,0.0000018800,0.0000018775, +0.0000018744,0.0000018714,0.0000018681,0.0000018645,0.0000018613, +0.0000018585,0.0000018558,0.0000018531,0.0000018504,0.0000018477, +0.0000018452,0.0000018429,0.0000018412,0.0000018401,0.0000018391, +0.0000018384,0.0000018383,0.0000018381,0.0000018380,0.0000018375, +0.0000018371,0.0000018373,0.0000018376,0.0000018384,0.0000018392, +0.0000018397,0.0000018403,0.0000018412,0.0000018430,0.0000018451, +0.0000018468,0.0000018474,0.0000018470,0.0000018459,0.0000018450, +0.0000018449,0.0000018441,0.0000018446,0.0000018447,0.0000018460, +0.0000018468,0.0000018484,0.0000018510,0.0000018537,0.0000018566, +0.0000018591,0.0000018612,0.0000018629,0.0000018634,0.0000018631, +0.0000018619,0.0000018592,0.0000018559,0.0000018523,0.0000018493, +0.0000018458,0.0000018439,0.0000018414,0.0000018406,0.0000018411, +0.0000018409,0.0000018420,0.0000018438,0.0000018447,0.0000018460, +0.0000018459,0.0000018460,0.0000018426,0.0000018378,0.0000018331, +0.0000018285,0.0000018243,0.0000018207,0.0000018177,0.0000018157, +0.0000018146,0.0000018142,0.0000018139,0.0000018128,0.0000018106, +0.0000018075,0.0000018034,0.0000017991,0.0000017953,0.0000017920, +0.0000017897,0.0000017883,0.0000017872,0.0000017861,0.0000017851, +0.0000017842,0.0000017830,0.0000017814,0.0000017797,0.0000017774, +0.0000017747,0.0000017713,0.0000017674,0.0000017633,0.0000017604, +0.0000017576,0.0000017557,0.0000017548,0.0000017539,0.0000017546, +0.0000017555,0.0000017562,0.0000017562,0.0000017558,0.0000017533, +0.0000017503,0.0000017458,0.0000017408,0.0000017365,0.0000017343, +0.0000017344,0.0000017356,0.0000017379,0.0000017415,0.0000017456, +0.0000017490,0.0000017518,0.0000017545,0.0000017561,0.0000017571, +0.0000017570,0.0000017557,0.0000017544,0.0000017525,0.0000017502, +0.0000017486,0.0000017464,0.0000017433,0.0000017405,0.0000017390, +0.0000017384,0.0000017387,0.0000017400,0.0000017430,0.0000017461, +0.0000017487,0.0000017513,0.0000017535,0.0000017556,0.0000017566, +0.0000017577,0.0000017576,0.0000017560,0.0000017536,0.0000017511, +0.0000017493,0.0000017486,0.0000017482,0.0000017467,0.0000017466, +0.0000017474,0.0000017498,0.0000017516,0.0000017528,0.0000017542, +0.0000017555,0.0000017558,0.0000017551,0.0000017542,0.0000017537, +0.0000017537,0.0000017543,0.0000017556,0.0000017576,0.0000017594, +0.0000017612,0.0000017631,0.0000017640,0.0000017643,0.0000017646, +0.0000017644,0.0000017633,0.0000017629,0.0000017648,0.0000017674, +0.0000017702,0.0000017735,0.0000017768,0.0000017790,0.0000017805, +0.0000017821,0.0000017839,0.0000017851,0.0000017853,0.0000017858, +0.0000017866,0.0000017867,0.0000017872,0.0000017894,0.0000017915, +0.0000017930,0.0000017933,0.0000017918,0.0000017888,0.0000017854, +0.0000017829,0.0000017812,0.0000017797,0.0000017778,0.0000017758, +0.0000017749,0.0000017758,0.0000017786,0.0000017819,0.0000017844, +0.0000017848,0.0000017842,0.0000017835,0.0000017826,0.0000017814, +0.0000017801,0.0000017786,0.0000017769,0.0000017744,0.0000017713, +0.0000017679,0.0000017633,0.0000017592,0.0000017566,0.0000017553, +0.0000017553,0.0000017566,0.0000017589,0.0000017610,0.0000017626, +0.0000017643,0.0000017663,0.0000017680,0.0000017688,0.0000017685, +0.0000017669,0.0000017652,0.0000017651,0.0000017662,0.0000017686, +0.0000017712,0.0000017726,0.0000017725,0.0000017700,0.0000017668, +0.0000017641,0.0000017625,0.0000017620,0.0000017635,0.0000017662, +0.0000017706,0.0000017775,0.0000017876,0.0000018002,0.0000018142, +0.0000018299,0.0000018475,0.0000018642,0.0000018803,0.0000018952, +0.0000019085,0.0000019190,0.0000019275,0.0000019345,0.0000019396, +0.0000019427,0.0000019444,0.0000019453,0.0000019453,0.0000019454, +0.0000019447,0.0000019434,0.0000019422,0.0000019414,0.0000019407, +0.0000019399,0.0000019389,0.0000019386,0.0000019400,0.0000019414, +0.0000019414,0.0000019402,0.0000019379,0.0000019350,0.0000019318, +0.0000019282,0.0000019241,0.0000019201,0.0000019168,0.0000019148, +0.0000019136,0.0000019126,0.0000019111,0.0000019092,0.0000019071, +0.0000019051,0.0000019037,0.0000019035,0.0000019044,0.0000019056, +0.0000019066,0.0000019070,0.0000019061,0.0000019043,0.0000019022, +0.0000019014,0.0000019022,0.0000019038,0.0000019052,0.0000019055, +0.0000019046,0.0000019029,0.0000019014,0.0000019004,0.0000018992, +0.0000018975,0.0000018957,0.0000018957,0.0000018976,0.0000019005, +0.0000019034,0.0000019057,0.0000019064,0.0000019060,0.0000019046, +0.0000019020,0.0000018975,0.0000018917,0.0000018864,0.0000018835, +0.0000018831,0.0000018836,0.0000018834,0.0000018813,0.0000018776, +0.0000018726,0.0000018666,0.0000018604,0.0000018559,0.0000018546, +0.0000018546,0.0000018569,0.0000018604,0.0000018638,0.0000018674, +0.0000018727,0.0000018789,0.0000018831,0.0000018852,0.0000018844, +0.0000018816,0.0000018785,0.0000018766,0.0000018768,0.0000018786, +0.0000018814,0.0000018835,0.0000018842,0.0000018842,0.0000018847, +0.0000018859,0.0000018881,0.0000018900,0.0000018899,0.0000018889, +0.0000018880,0.0000018901,0.0000018947,0.0000018969,0.0000018953, +0.0000018898,0.0000018811,0.0000018723,0.0000018644,0.0000018542, +0.0000018429,0.0000018374,0.0000018417,0.0000018531,0.0000018643, +0.0000018695,0.0000018678,0.0000018599,0.0000018487,0.0000018377, +0.0000018316,0.0000018320,0.0000018356,0.0000018398,0.0000018414, +0.0000018415,0.0000018398,0.0000018365,0.0000018316,0.0000018275, +0.0000018255,0.0000018252,0.0000018256,0.0000018260,0.0000018259, +0.0000018245,0.0000018209,0.0000018158,0.0000018108,0.0000018082, +0.0000018079,0.0000018098,0.0000018125,0.0000018139,0.0000018145, +0.0000018168,0.0000018217,0.0000018268,0.0000018300,0.0000018305, +0.0000018296,0.0000018292,0.0000018293,0.0000018279,0.0000018239, +0.0000018179,0.0000018117,0.0000018073,0.0000018057,0.0000018056, +0.0000018060,0.0000018079,0.0000018109,0.0000018131,0.0000018133, +0.0000018119,0.0000018088,0.0000018048,0.0000018010,0.0000017983, +0.0000017966,0.0000017955,0.0000017957,0.0000017981,0.0000018032, +0.0000018109,0.0000018210,0.0000018313,0.0000018399,0.0000018465, +0.0000018514,0.0000018548,0.0000018574,0.0000018582,0.0000018579, +0.0000018573,0.0000018568,0.0000018563,0.0000018555,0.0000018545, +0.0000018531,0.0000018510,0.0000018483,0.0000018450,0.0000018412, +0.0000018373,0.0000018337,0.0000018307,0.0000018287,0.0000018276, +0.0000018272,0.0000018273,0.0000018272,0.0000018262,0.0000018247, +0.0000018234,0.0000018230,0.0000018229,0.0000018225,0.0000018206, +0.0000018164,0.0000018106,0.0000018049,0.0000018001,0.0000017964, +0.0000017933,0.0000017911,0.0000017904,0.0000017908,0.0000017913, +0.0000017914,0.0000017918,0.0000017932,0.0000017968,0.0000018005, +0.0000018007,0.0000017970,0.0000017899,0.0000017807,0.0000017712, +0.0000017655,0.0000017654,0.0000017647,0.0000017638,0.0000017624, +0.0000017605,0.0000017612,0.0000017653,0.0000017715,0.0000017776, +0.0000017810,0.0000017818,0.0000017807,0.0000017789,0.0000017765, +0.0000017739,0.0000017709,0.0000017672,0.0000017644,0.0000017626, +0.0000017612,0.0000017605,0.0000017603,0.0000017612,0.0000017638, +0.0000017684,0.0000017736,0.0000017795,0.0000017846,0.0000017874, +0.0000017889,0.0000017911,0.0000017946,0.0000018005,0.0000018075, +0.0000018138,0.0000018192,0.0000018234,0.0000018270,0.0000018273, +0.0000018275,0.0000018257,0.0000018228,0.0000018207,0.0000018195, +0.0000018185,0.0000018178,0.0000018178,0.0000018179,0.0000018180, +0.0000018187,0.0000018202,0.0000018231,0.0000018262,0.0000018300, +0.0000018346,0.0000018403,0.0000018463,0.0000018517,0.0000018575, +0.0000018640,0.0000018703,0.0000018777,0.0000018856,0.0000018936, +0.0000019004,0.0000019059,0.0000019095,0.0000019112,0.0000019117, +0.0000019109,0.0000019092,0.0000019075,0.0000019058,0.0000019039, +0.0000019020,0.0000019000,0.0000018977,0.0000018946,0.0000018911, +0.0000018872,0.0000018822,0.0000018759,0.0000018691,0.0000018631, +0.0000018588,0.0000018554,0.0000018517,0.0000018472,0.0000018421, +0.0000018369,0.0000018317,0.0000018261,0.0000018200,0.0000018140, +0.0000018078,0.0000018011,0.0000017943,0.0000017883,0.0000017830, +0.0000017790,0.0000017775,0.0000017779,0.0000017804,0.0000017840, +0.0000017872,0.0000017886,0.0000017883,0.0000017859,0.0000017799, +0.0000017768,0.0000017887,0.0000018040,0.0000018135,0.0000018516, +0.0000018826,0.0000018767,0.0000018638,0.0000018608,0.0000018671, +0.0000018778,0.0000018833,0.0000018842,0.0000018840,0.0000018812, +0.0000018786,0.0000018813,0.0000018822,0.0000018754,0.0000018509, +0.0000018242,0.0000018042,0.0000017923,0.0000017867,0.0000017862, +0.0000017909,0.0000018003,0.0000018113,0.0000018211,0.0000018341, +0.0000018558,0.0000018593,0.0000018376,0.0000018104,0.0000017902, +0.0000017809,0.0000017777,0.0000017785,0.0000017792,0.0000017811, +0.0000017819,0.0000017820,0.0000017812,0.0000017798,0.0000017781, +0.0000017756,0.0000017720,0.0000017688,0.0000017672,0.0000017678, +0.0000017697,0.0000017723,0.0000017747,0.0000017772,0.0000017791, +0.0000017795,0.0000017782,0.0000017762,0.0000017737,0.0000017716, +0.0000017703,0.0000017702,0.0000017704,0.0000017707,0.0000017711, +0.0000017718,0.0000017732,0.0000017762,0.0000017807,0.0000017861, +0.0000017911,0.0000017945,0.0000017968,0.0000017983,0.0000017993, +0.0000018004,0.0000018012,0.0000018014,0.0000018011,0.0000017999, +0.0000017984,0.0000017968,0.0000017959,0.0000017956,0.0000017957, +0.0000017958,0.0000017958,0.0000017954,0.0000017945,0.0000017928, +0.0000017901,0.0000017863,0.0000017818,0.0000017775,0.0000017742, +0.0000017724,0.0000017718,0.0000017720,0.0000017720,0.0000017713, +0.0000017703,0.0000017697,0.0000017702,0.0000017715,0.0000017731, +0.0000017746,0.0000017747,0.0000017745,0.0000017731,0.0000017709, +0.0000017680,0.0000017647,0.0000017615,0.0000017593,0.0000017586, +0.0000017591,0.0000017603,0.0000017617,0.0000017635,0.0000017660, +0.0000017699,0.0000017749,0.0000017795,0.0000017825,0.0000017835, +0.0000017834,0.0000017830,0.0000017828,0.0000017824,0.0000017818, +0.0000017813,0.0000017812,0.0000017821,0.0000017842,0.0000017868, +0.0000017892,0.0000017916,0.0000017934,0.0000017949,0.0000017967, +0.0000017994,0.0000018029,0.0000018065,0.0000018094,0.0000018113, +0.0000018127,0.0000018139,0.0000018160,0.0000018187,0.0000018218, +0.0000018252,0.0000018280,0.0000018303,0.0000018322,0.0000018333, +0.0000018328,0.0000018313,0.0000018285,0.0000018256,0.0000018236, +0.0000018220,0.0000018194,0.0000018155,0.0000018107,0.0000018055, +0.0000018002,0.0000017949,0.0000017902,0.0000017769,0.0000017774, +0.0000017785,0.0000017793,0.0000017802,0.0000017819,0.0000017839, +0.0000017863,0.0000017885,0.0000017897,0.0000017903,0.0000017902, +0.0000017895,0.0000017879,0.0000017862,0.0000017843,0.0000017826, +0.0000017809,0.0000017797,0.0000017788,0.0000017781,0.0000017780, +0.0000017783,0.0000017791,0.0000017801,0.0000017807,0.0000017811, +0.0000017814,0.0000017823,0.0000017841,0.0000017862,0.0000017885, +0.0000017908,0.0000017928,0.0000017947,0.0000017969,0.0000017991, +0.0000018013,0.0000018039,0.0000018067,0.0000018097,0.0000018132, +0.0000018173,0.0000018217,0.0000018255,0.0000018283,0.0000018298, +0.0000018306,0.0000018310,0.0000018311,0.0000018305,0.0000018290, +0.0000018275,0.0000018257,0.0000018240,0.0000018227,0.0000018215, +0.0000018202,0.0000018200,0.0000018209,0.0000018229,0.0000018258, +0.0000018293,0.0000018329,0.0000018364,0.0000018395,0.0000018422, +0.0000018445,0.0000018466,0.0000018478,0.0000018487,0.0000018502, +0.0000018525,0.0000018555,0.0000018595,0.0000018646,0.0000018704, +0.0000018761,0.0000018804,0.0000018831,0.0000018832,0.0000018804, +0.0000018743,0.0000018659,0.0000018580,0.0000018528,0.0000018508, +0.0000018512,0.0000018523,0.0000018526,0.0000018515,0.0000018494, +0.0000018463,0.0000018428,0.0000018397,0.0000018374,0.0000018357, +0.0000018345,0.0000018331,0.0000018314,0.0000018290,0.0000018263, +0.0000018237,0.0000018216,0.0000018200,0.0000018188,0.0000018180, +0.0000018175,0.0000018178,0.0000018181,0.0000018176,0.0000018161, +0.0000018131,0.0000018086,0.0000018029,0.0000017969,0.0000017915, +0.0000017865,0.0000017850,0.0000017849,0.0000017858,0.0000017895, +0.0000017954,0.0000018026,0.0000018097,0.0000018166,0.0000018230, +0.0000018239,0.0000018255,0.0000018230,0.0000018200,0.0000018192, +0.0000018199,0.0000018219,0.0000018246,0.0000018273,0.0000018294, +0.0000018310,0.0000018310,0.0000018309,0.0000018296,0.0000018266, +0.0000018223,0.0000018167,0.0000018101,0.0000018035,0.0000017973, +0.0000017917,0.0000017876,0.0000017846,0.0000017830,0.0000017817, +0.0000017821,0.0000017831,0.0000017842,0.0000017856,0.0000017871, +0.0000017886,0.0000017907,0.0000017930,0.0000017951,0.0000017973, +0.0000017988,0.0000017995,0.0000017999,0.0000018002,0.0000018014, +0.0000018027,0.0000018038,0.0000018049,0.0000018057,0.0000018064, +0.0000018069,0.0000018072,0.0000018074,0.0000018076,0.0000018072, +0.0000018067,0.0000018057,0.0000018046,0.0000018037,0.0000018030, +0.0000018028,0.0000018026,0.0000018023,0.0000018014,0.0000018003, +0.0000017997,0.0000018000,0.0000018009,0.0000018023,0.0000018038, +0.0000018051,0.0000018059,0.0000018061,0.0000018062,0.0000018068, +0.0000018077,0.0000018087,0.0000018099,0.0000018118,0.0000018138, +0.0000018150,0.0000018155,0.0000018154,0.0000018142,0.0000018124, +0.0000018101,0.0000018078,0.0000018055,0.0000018031,0.0000018002, +0.0000017972,0.0000017938,0.0000017898,0.0000017851,0.0000017800, +0.0000017751,0.0000017714,0.0000017695,0.0000017694,0.0000017709, +0.0000017730,0.0000017750,0.0000017766,0.0000017775,0.0000017773, +0.0000017763,0.0000017739,0.0000017704,0.0000017664,0.0000017625, +0.0000017593,0.0000017572,0.0000017567,0.0000017573,0.0000017584, +0.0000017593,0.0000017595,0.0000017589,0.0000017573,0.0000017554, +0.0000017539,0.0000017532,0.0000017532,0.0000017540,0.0000017549, +0.0000017556,0.0000017573,0.0000017600,0.0000017637,0.0000017682, +0.0000017732,0.0000017766,0.0000017777,0.0000017768,0.0000017739, +0.0000017701,0.0000017658,0.0000017620,0.0000017598,0.0000017586, +0.0000017579,0.0000017576,0.0000017579,0.0000017583,0.0000017584, +0.0000017584,0.0000017580,0.0000017572,0.0000017556,0.0000017538, +0.0000017524,0.0000017516,0.0000017510,0.0000017505,0.0000017500, +0.0000017494,0.0000017486,0.0000017469,0.0000017430,0.0000017373, +0.0000017328,0.0000017300,0.0000017296,0.0000017310,0.0000017335, +0.0000017365,0.0000017404,0.0000017453,0.0000017507,0.0000017554, +0.0000017587,0.0000017607,0.0000017625,0.0000017652,0.0000017685, +0.0000017716,0.0000017739,0.0000017746,0.0000017739,0.0000017709, +0.0000017679,0.0000017647,0.0000017609,0.0000017576,0.0000017548, +0.0000017522,0.0000017498,0.0000017478,0.0000017466,0.0000017467, +0.0000017477,0.0000017493,0.0000017515,0.0000017537,0.0000017552, +0.0000017561,0.0000017565,0.0000017566,0.0000017566,0.0000017567, +0.0000017573,0.0000017580,0.0000017590,0.0000017601,0.0000017612, +0.0000017623,0.0000017633,0.0000017642,0.0000017650,0.0000017657, +0.0000017664,0.0000017675,0.0000017696,0.0000017723,0.0000017755, +0.0000017787,0.0000017813,0.0000017830,0.0000017815,0.0000017817, +0.0000017791,0.0000017762,0.0000017723,0.0000017685,0.0000017646, +0.0000017614,0.0000017596,0.0000017576,0.0000017559,0.0000017544, +0.0000017526,0.0000017516,0.0000017521,0.0000017543,0.0000017568, +0.0000017583,0.0000017590,0.0000017599,0.0000017617,0.0000017644, +0.0000017675,0.0000017698,0.0000017704,0.0000017697,0.0000017691, +0.0000017695,0.0000017724,0.0000017770,0.0000017823,0.0000017878, +0.0000017938,0.0000017999,0.0000018054,0.0000018098,0.0000018126, +0.0000018140,0.0000018145,0.0000018151,0.0000018171,0.0000018211, +0.0000018258,0.0000018302,0.0000018333,0.0000018351,0.0000018368, +0.0000018395,0.0000018438,0.0000018492,0.0000018548,0.0000018599, +0.0000018640,0.0000018669,0.0000018688,0.0000018700,0.0000018707, +0.0000018712,0.0000018718,0.0000018726,0.0000018744,0.0000018775, +0.0000018810,0.0000018842,0.0000018867,0.0000018888,0.0000018901, +0.0000018910,0.0000018911,0.0000018912,0.0000018900,0.0000018886, +0.0000018867,0.0000018838,0.0000018807,0.0000018782,0.0000018753, +0.0000018719,0.0000018682,0.0000018649,0.0000018615,0.0000018579, +0.0000018543,0.0000018515,0.0000018493,0.0000018471,0.0000018447, +0.0000018424,0.0000018403,0.0000018385,0.0000018370,0.0000018360, +0.0000018355,0.0000018351,0.0000018351,0.0000018357,0.0000018366, +0.0000018370,0.0000018372,0.0000018372,0.0000018375,0.0000018381, +0.0000018386,0.0000018394,0.0000018402,0.0000018407,0.0000018416, +0.0000018438,0.0000018465,0.0000018485,0.0000018497,0.0000018500, +0.0000018501,0.0000018498,0.0000018485,0.0000018469,0.0000018456, +0.0000018450,0.0000018437,0.0000018439,0.0000018442,0.0000018457, +0.0000018473,0.0000018497,0.0000018528,0.0000018559,0.0000018592, +0.0000018618,0.0000018632,0.0000018633,0.0000018627,0.0000018627, +0.0000018605,0.0000018577,0.0000018544,0.0000018501,0.0000018461, +0.0000018430,0.0000018402,0.0000018389,0.0000018388,0.0000018394, +0.0000018416,0.0000018445,0.0000018467,0.0000018476,0.0000018479, +0.0000018481,0.0000018471,0.0000018438,0.0000018401,0.0000018367, +0.0000018329,0.0000018290,0.0000018255,0.0000018225,0.0000018195, +0.0000018162,0.0000018132,0.0000018107,0.0000018082,0.0000018055, +0.0000018025,0.0000017994,0.0000017971,0.0000017950,0.0000017935, +0.0000017922,0.0000017909,0.0000017892,0.0000017874,0.0000017853, +0.0000017830,0.0000017805,0.0000017781,0.0000017759,0.0000017738, +0.0000017729,0.0000017723,0.0000017714,0.0000017697,0.0000017681, +0.0000017650,0.0000017631,0.0000017620,0.0000017605,0.0000017589, +0.0000017580,0.0000017557,0.0000017521,0.0000017469,0.0000017416, +0.0000017380,0.0000017354,0.0000017351,0.0000017364,0.0000017392, +0.0000017428,0.0000017469,0.0000017514,0.0000017557,0.0000017579, +0.0000017599,0.0000017614,0.0000017610,0.0000017596,0.0000017573, +0.0000017552,0.0000017530,0.0000017504,0.0000017478,0.0000017448, +0.0000017434,0.0000017435,0.0000017448,0.0000017466,0.0000017495, +0.0000017527,0.0000017553,0.0000017576,0.0000017597,0.0000017613, +0.0000017619,0.0000017621,0.0000017611,0.0000017586,0.0000017549, +0.0000017506,0.0000017481,0.0000017463,0.0000017442,0.0000017427, +0.0000017415,0.0000017417,0.0000017443,0.0000017461,0.0000017479, +0.0000017496,0.0000017511,0.0000017516,0.0000017516,0.0000017512, +0.0000017512,0.0000017510,0.0000017518,0.0000017530,0.0000017548, +0.0000017565,0.0000017590,0.0000017605,0.0000017613,0.0000017617, +0.0000017622,0.0000017616,0.0000017608,0.0000017626,0.0000017658, +0.0000017693,0.0000017730,0.0000017763,0.0000017786,0.0000017798, +0.0000017809,0.0000017824,0.0000017830,0.0000017818,0.0000017807, +0.0000017805,0.0000017797,0.0000017797,0.0000017822,0.0000017849, +0.0000017870,0.0000017870,0.0000017853,0.0000017823,0.0000017780, +0.0000017743,0.0000017718,0.0000017701,0.0000017681,0.0000017658, +0.0000017641,0.0000017638,0.0000017654,0.0000017689,0.0000017731, +0.0000017765,0.0000017775,0.0000017776,0.0000017774,0.0000017770, +0.0000017762,0.0000017750,0.0000017739,0.0000017727,0.0000017708, +0.0000017685,0.0000017650,0.0000017601,0.0000017560,0.0000017532, +0.0000017516,0.0000017514,0.0000017522,0.0000017544,0.0000017572, +0.0000017595,0.0000017629,0.0000017660,0.0000017679,0.0000017690, +0.0000017688,0.0000017679,0.0000017665,0.0000017664,0.0000017686, +0.0000017725,0.0000017758,0.0000017762,0.0000017742,0.0000017704, +0.0000017663,0.0000017629,0.0000017617,0.0000017609,0.0000017597, +0.0000017591,0.0000017588,0.0000017599,0.0000017626,0.0000017658, +0.0000017728,0.0000017845,0.0000017980,0.0000018130,0.0000018303, +0.0000018485,0.0000018652,0.0000018803,0.0000018940,0.0000019061, +0.0000019164,0.0000019248,0.0000019314,0.0000019356,0.0000019382, +0.0000019393,0.0000019390,0.0000019383,0.0000019379,0.0000019375, +0.0000019370,0.0000019362,0.0000019353,0.0000019361,0.0000019372, +0.0000019372,0.0000019361,0.0000019339,0.0000019312,0.0000019281, +0.0000019247,0.0000019208,0.0000019168,0.0000019132,0.0000019103, +0.0000019080,0.0000019064,0.0000019051,0.0000019042,0.0000019036, +0.0000019022,0.0000019005,0.0000018996,0.0000019000,0.0000019009, +0.0000019021,0.0000019032,0.0000019035,0.0000019027,0.0000019010, +0.0000018993,0.0000018984,0.0000018980,0.0000018977,0.0000018971, +0.0000018961,0.0000018948,0.0000018940,0.0000018938,0.0000018936, +0.0000018928,0.0000018919,0.0000018920,0.0000018932,0.0000018955, +0.0000018982,0.0000019007,0.0000019019,0.0000019018,0.0000019015, +0.0000019014,0.0000019004,0.0000018983,0.0000018946,0.0000018906, +0.0000018878,0.0000018873,0.0000018881,0.0000018888,0.0000018881, +0.0000018852,0.0000018795,0.0000018725,0.0000018668,0.0000018632, +0.0000018603,0.0000018582,0.0000018576,0.0000018576,0.0000018592, +0.0000018626,0.0000018669,0.0000018721,0.0000018772,0.0000018808, +0.0000018819,0.0000018819,0.0000018812,0.0000018814,0.0000018831, +0.0000018856,0.0000018873,0.0000018883,0.0000018888,0.0000018889, +0.0000018892,0.0000018902,0.0000018909,0.0000018900,0.0000018880, +0.0000018847,0.0000018836,0.0000018851,0.0000018886,0.0000018933, +0.0000018968,0.0000018946,0.0000018860,0.0000018745,0.0000018654, +0.0000018578,0.0000018496,0.0000018444,0.0000018453,0.0000018536, +0.0000018640,0.0000018686,0.0000018660,0.0000018587,0.0000018490, +0.0000018401,0.0000018337,0.0000018307,0.0000018307,0.0000018324, +0.0000018358,0.0000018386,0.0000018388,0.0000018354,0.0000018306, +0.0000018268,0.0000018248,0.0000018245,0.0000018250,0.0000018257, +0.0000018255,0.0000018230,0.0000018179,0.0000018119,0.0000018074, +0.0000018060,0.0000018068,0.0000018090,0.0000018100,0.0000018100, +0.0000018114,0.0000018155,0.0000018208,0.0000018246,0.0000018253, +0.0000018247,0.0000018246,0.0000018253,0.0000018250,0.0000018219, +0.0000018163,0.0000018103,0.0000018060,0.0000018044,0.0000018048, +0.0000018062,0.0000018082,0.0000018106,0.0000018118,0.0000018112, +0.0000018087,0.0000018052,0.0000018023,0.0000018005,0.0000017989, +0.0000017972,0.0000017966,0.0000017983,0.0000018030,0.0000018108, +0.0000018209,0.0000018314,0.0000018410,0.0000018488,0.0000018547, +0.0000018585,0.0000018603,0.0000018612,0.0000018612,0.0000018607, +0.0000018607,0.0000018608,0.0000018609,0.0000018610,0.0000018603, +0.0000018585,0.0000018556,0.0000018521,0.0000018481,0.0000018438, +0.0000018397,0.0000018357,0.0000018320,0.0000018289,0.0000018267, +0.0000018262,0.0000018271,0.0000018283,0.0000018292,0.0000018296, +0.0000018293,0.0000018286,0.0000018282,0.0000018278,0.0000018262, +0.0000018219,0.0000018155,0.0000018085,0.0000018024,0.0000017974, +0.0000017934,0.0000017906,0.0000017894,0.0000017892,0.0000017894, +0.0000017894,0.0000017896,0.0000017911,0.0000017943,0.0000017988, +0.0000018022,0.0000018031,0.0000018011,0.0000017956,0.0000017881, +0.0000017798,0.0000017713,0.0000017655,0.0000017632,0.0000017618, +0.0000017600,0.0000017591,0.0000017613,0.0000017672,0.0000017746, +0.0000017808,0.0000017847,0.0000017857,0.0000017845,0.0000017819, +0.0000017789,0.0000017752,0.0000017706,0.0000017654,0.0000017614, +0.0000017588,0.0000017577,0.0000017574,0.0000017582,0.0000017607, +0.0000017654,0.0000017722,0.0000017798,0.0000017855,0.0000017883, +0.0000017892,0.0000017896,0.0000017914,0.0000017951,0.0000017991, +0.0000018031,0.0000018078,0.0000018133,0.0000018176,0.0000018217, +0.0000018243,0.0000018225,0.0000018214,0.0000018207,0.0000018191, +0.0000018176,0.0000018170,0.0000018160,0.0000018155,0.0000018156, +0.0000018159,0.0000018165,0.0000018169,0.0000018173,0.0000018181, +0.0000018200,0.0000018229,0.0000018265,0.0000018305,0.0000018346, +0.0000018378,0.0000018416,0.0000018464,0.0000018520,0.0000018579, +0.0000018642,0.0000018698,0.0000018741,0.0000018768,0.0000018782, +0.0000018780,0.0000018768,0.0000018760,0.0000018750,0.0000018731, +0.0000018704,0.0000018668,0.0000018619,0.0000018566,0.0000018516, +0.0000018466,0.0000018417,0.0000018372,0.0000018341,0.0000018327, +0.0000018320,0.0000018311,0.0000018296,0.0000018273,0.0000018239, +0.0000018194,0.0000018138,0.0000018077,0.0000018016,0.0000017953, +0.0000017891,0.0000017838,0.0000017804,0.0000017784,0.0000017782, +0.0000017807,0.0000017849,0.0000017891,0.0000017919,0.0000017928, +0.0000017923,0.0000017904,0.0000017868,0.0000017808,0.0000017790, +0.0000017893,0.0000017965,0.0000018216,0.0000018707,0.0000018830, +0.0000018696,0.0000018609,0.0000018634,0.0000018734,0.0000018804, +0.0000018821,0.0000018822,0.0000018802,0.0000018799,0.0000018849, +0.0000018808,0.0000018519,0.0000018152,0.0000017889,0.0000017760, +0.0000017704,0.0000017676,0.0000017657,0.0000017648,0.0000017645, +0.0000017681,0.0000017771,0.0000017886,0.0000018004,0.0000018178, +0.0000018426,0.0000018480,0.0000018399,0.0000018209,0.0000018001, +0.0000017868,0.0000017791,0.0000017773,0.0000017795,0.0000017810, +0.0000017818,0.0000017808,0.0000017789,0.0000017774,0.0000017770, +0.0000017765,0.0000017760,0.0000017748,0.0000017716,0.0000017686, +0.0000017667,0.0000017672,0.0000017685,0.0000017713,0.0000017745, +0.0000017781,0.0000017804,0.0000017799,0.0000017785,0.0000017762, +0.0000017741,0.0000017725,0.0000017718,0.0000017721,0.0000017731, +0.0000017760,0.0000017811,0.0000017872,0.0000017917,0.0000017943, +0.0000017950,0.0000017947,0.0000017947,0.0000017951,0.0000017961, +0.0000017966,0.0000017960,0.0000017937,0.0000017912,0.0000017896, +0.0000017894,0.0000017900,0.0000017912,0.0000017925,0.0000017938, +0.0000017947,0.0000017954,0.0000017957,0.0000017956,0.0000017948, +0.0000017930,0.0000017896,0.0000017846,0.0000017793,0.0000017749, +0.0000017724,0.0000017716,0.0000017715,0.0000017717,0.0000017713, +0.0000017703,0.0000017696,0.0000017696,0.0000017704,0.0000017717, +0.0000017731,0.0000017739,0.0000017739,0.0000017733,0.0000017713, +0.0000017677,0.0000017633,0.0000017595,0.0000017575,0.0000017562, +0.0000017559,0.0000017563,0.0000017573,0.0000017591,0.0000017624, +0.0000017671,0.0000017720,0.0000017752,0.0000017763,0.0000017764, +0.0000017768,0.0000017778,0.0000017789,0.0000017799,0.0000017809, +0.0000017822,0.0000017840,0.0000017860,0.0000017881,0.0000017905, +0.0000017927,0.0000017948,0.0000017970,0.0000017998,0.0000018028, +0.0000018052,0.0000018064,0.0000018076,0.0000018099,0.0000018137, +0.0000018183,0.0000018232,0.0000018273,0.0000018303,0.0000018320, +0.0000018326,0.0000018313,0.0000018283,0.0000018248,0.0000018222, +0.0000018205,0.0000018190,0.0000018164,0.0000018128,0.0000018086, +0.0000018031,0.0000017962,0.0000017892,0.0000017836,0.0000017798, +0.0000017777,0.0000017742,0.0000017754,0.0000017756,0.0000017757, +0.0000017767,0.0000017787,0.0000017806,0.0000017819,0.0000017823, +0.0000017820,0.0000017814,0.0000017803,0.0000017788,0.0000017773, +0.0000017764,0.0000017745,0.0000017736,0.0000017735,0.0000017739, +0.0000017741,0.0000017745,0.0000017752,0.0000017759,0.0000017765, +0.0000017768,0.0000017765,0.0000017758,0.0000017750,0.0000017750, +0.0000017756,0.0000017771,0.0000017795,0.0000017824,0.0000017856, +0.0000017892,0.0000017931,0.0000017967,0.0000018000,0.0000018028, +0.0000018054,0.0000018076,0.0000018102,0.0000018136,0.0000018172, +0.0000018205,0.0000018231,0.0000018247,0.0000018260,0.0000018268, +0.0000018270,0.0000018266,0.0000018262,0.0000018254,0.0000018240, +0.0000018226,0.0000018214,0.0000018199,0.0000018179,0.0000018167, +0.0000018170,0.0000018188,0.0000018214,0.0000018246,0.0000018283, +0.0000018317,0.0000018346,0.0000018369,0.0000018394,0.0000018419, +0.0000018441,0.0000018461,0.0000018484,0.0000018504,0.0000018522, +0.0000018540,0.0000018567,0.0000018607,0.0000018660,0.0000018719, +0.0000018774,0.0000018814,0.0000018830,0.0000018823,0.0000018786, +0.0000018719,0.0000018640,0.0000018571,0.0000018526,0.0000018504, +0.0000018496,0.0000018500,0.0000018506,0.0000018500,0.0000018480, +0.0000018456,0.0000018432,0.0000018412,0.0000018397,0.0000018383, +0.0000018370,0.0000018355,0.0000018336,0.0000018315,0.0000018296, +0.0000018280,0.0000018265,0.0000018252,0.0000018242,0.0000018241, +0.0000018245,0.0000018250,0.0000018253,0.0000018250,0.0000018234, +0.0000018202,0.0000018152,0.0000018090,0.0000018019,0.0000017951, +0.0000017896,0.0000017854,0.0000017856,0.0000017847,0.0000017872, +0.0000017916,0.0000017976,0.0000018044,0.0000018107,0.0000018174, +0.0000018218,0.0000018238,0.0000018229,0.0000018207,0.0000018195, +0.0000018195,0.0000018209,0.0000018231,0.0000018256,0.0000018276, +0.0000018291,0.0000018293,0.0000018287,0.0000018276,0.0000018254, +0.0000018218,0.0000018173,0.0000018117,0.0000018050,0.0000017986, +0.0000017926,0.0000017877,0.0000017845,0.0000017828,0.0000017825, +0.0000017820,0.0000017815,0.0000017817,0.0000017828,0.0000017845, +0.0000017867,0.0000017889,0.0000017910,0.0000017926,0.0000017937, +0.0000017946,0.0000017956,0.0000017971,0.0000017990,0.0000018010, +0.0000018031,0.0000018049,0.0000018067,0.0000018083,0.0000018097, +0.0000018110,0.0000018118,0.0000018122,0.0000018121,0.0000018115, +0.0000018104,0.0000018092,0.0000018078,0.0000018066,0.0000018058, +0.0000018049,0.0000018036,0.0000018019,0.0000018004,0.0000017988, +0.0000017979,0.0000017978,0.0000017985,0.0000017996,0.0000018005, +0.0000018009,0.0000018008,0.0000018008,0.0000018015,0.0000018029, +0.0000018049,0.0000018072,0.0000018099,0.0000018129,0.0000018154, +0.0000018169,0.0000018178,0.0000018186,0.0000018186,0.0000018182, +0.0000018173,0.0000018162,0.0000018150,0.0000018133,0.0000018106, +0.0000018065,0.0000018013,0.0000017952,0.0000017891,0.0000017841, +0.0000017813,0.0000017804,0.0000017806,0.0000017810,0.0000017812, +0.0000017809,0.0000017801,0.0000017790,0.0000017771,0.0000017742, +0.0000017705,0.0000017666,0.0000017631,0.0000017605,0.0000017586, +0.0000017576,0.0000017579,0.0000017589,0.0000017598,0.0000017606, +0.0000017613,0.0000017615,0.0000017613,0.0000017612,0.0000017611, +0.0000017610,0.0000017607,0.0000017601,0.0000017594,0.0000017590, +0.0000017587,0.0000017590,0.0000017607,0.0000017631,0.0000017663, +0.0000017699,0.0000017729,0.0000017745,0.0000017750,0.0000017744, +0.0000017727,0.0000017705,0.0000017677,0.0000017640,0.0000017601, +0.0000017570,0.0000017543,0.0000017522,0.0000017518,0.0000017525, +0.0000017538,0.0000017548,0.0000017562,0.0000017587,0.0000017609, +0.0000017621,0.0000017626,0.0000017629,0.0000017626,0.0000017609, +0.0000017581,0.0000017548,0.0000017518,0.0000017482,0.0000017431, +0.0000017368,0.0000017318,0.0000017291,0.0000017289,0.0000017313, +0.0000017348,0.0000017385,0.0000017424,0.0000017467,0.0000017509, +0.0000017538,0.0000017551,0.0000017552,0.0000017553,0.0000017563, +0.0000017587,0.0000017623,0.0000017660,0.0000017688,0.0000017706, +0.0000017713,0.0000017710,0.0000017695,0.0000017664,0.0000017636, +0.0000017634,0.0000017631,0.0000017635,0.0000017646,0.0000017660, +0.0000017669,0.0000017672,0.0000017677,0.0000017680,0.0000017679, +0.0000017673,0.0000017668,0.0000017666,0.0000017669,0.0000017677, +0.0000017690,0.0000017704,0.0000017720,0.0000017738,0.0000017757, +0.0000017775,0.0000017787,0.0000017797,0.0000017810,0.0000017823, +0.0000017835,0.0000017827,0.0000017830,0.0000017813,0.0000017791, +0.0000017759,0.0000017725,0.0000017694,0.0000017671,0.0000017656, +0.0000017646,0.0000017633,0.0000017622,0.0000017610,0.0000017598, +0.0000017590,0.0000017586,0.0000017582,0.0000017578,0.0000017580, +0.0000017592,0.0000017608,0.0000017623,0.0000017640,0.0000017666, +0.0000017695,0.0000017716,0.0000017725,0.0000017725,0.0000017720, +0.0000017724,0.0000017743,0.0000017775,0.0000017826,0.0000017888, +0.0000017956,0.0000018020,0.0000018078,0.0000018126,0.0000018159, +0.0000018175,0.0000018177,0.0000018178,0.0000018190,0.0000018222, +0.0000018267,0.0000018308,0.0000018337,0.0000018360,0.0000018388, +0.0000018431,0.0000018492,0.0000018564,0.0000018633,0.0000018688, +0.0000018724,0.0000018746,0.0000018755,0.0000018758,0.0000018760, +0.0000018767,0.0000018783,0.0000018807,0.0000018829,0.0000018846, +0.0000018858,0.0000018875,0.0000018890,0.0000018899,0.0000018904, +0.0000018907,0.0000018908,0.0000018902,0.0000018890,0.0000018878, +0.0000018862,0.0000018844,0.0000018822,0.0000018797,0.0000018769, +0.0000018743,0.0000018715,0.0000018681,0.0000018641,0.0000018604, +0.0000018571,0.0000018541,0.0000018515,0.0000018496,0.0000018483, +0.0000018468,0.0000018453,0.0000018436,0.0000018418,0.0000018403, +0.0000018387,0.0000018372,0.0000018357,0.0000018342,0.0000018335, +0.0000018328,0.0000018327,0.0000018326,0.0000018329,0.0000018332, +0.0000018337,0.0000018349,0.0000018365,0.0000018386,0.0000018408, +0.0000018415,0.0000018427,0.0000018444,0.0000018468,0.0000018488, +0.0000018504,0.0000018518,0.0000018529,0.0000018540,0.0000018545, +0.0000018537,0.0000018524,0.0000018507,0.0000018485,0.0000018464, +0.0000018453,0.0000018437,0.0000018444,0.0000018444,0.0000018461, +0.0000018485,0.0000018514,0.0000018545,0.0000018574,0.0000018596, +0.0000018618,0.0000018634,0.0000018638,0.0000018641,0.0000018640, +0.0000018615,0.0000018585,0.0000018554,0.0000018508,0.0000018460, +0.0000018421,0.0000018394,0.0000018388,0.0000018395,0.0000018409, +0.0000018432,0.0000018454,0.0000018474,0.0000018489,0.0000018498, +0.0000018505,0.0000018513,0.0000018514,0.0000018493,0.0000018463, +0.0000018426,0.0000018380,0.0000018321,0.0000018257,0.0000018203, +0.0000018163,0.0000018128,0.0000018101,0.0000018079,0.0000018063, +0.0000018048,0.0000018029,0.0000018011,0.0000017988,0.0000017963, +0.0000017939,0.0000017917,0.0000017898,0.0000017872,0.0000017842, +0.0000017811,0.0000017783,0.0000017774,0.0000017784,0.0000017804, +0.0000017820,0.0000017820,0.0000017807,0.0000017779,0.0000017756, +0.0000017723,0.0000017688,0.0000017655,0.0000017631,0.0000017596, +0.0000017549,0.0000017497,0.0000017459,0.0000017416,0.0000017384, +0.0000017376,0.0000017381,0.0000017397,0.0000017421,0.0000017463, +0.0000017514,0.0000017549,0.0000017585,0.0000017619,0.0000017643, +0.0000017646,0.0000017632,0.0000017618,0.0000017592,0.0000017557, +0.0000017525,0.0000017485,0.0000017455,0.0000017459,0.0000017482, +0.0000017505,0.0000017537,0.0000017569,0.0000017602,0.0000017630, +0.0000017655,0.0000017674,0.0000017684,0.0000017684,0.0000017667, +0.0000017645,0.0000017613,0.0000017574,0.0000017537,0.0000017508, +0.0000017483,0.0000017474,0.0000017469,0.0000017474,0.0000017479, +0.0000017489,0.0000017493,0.0000017500,0.0000017493,0.0000017483, +0.0000017471,0.0000017457,0.0000017450,0.0000017449,0.0000017452, +0.0000017469,0.0000017493,0.0000017528,0.0000017559,0.0000017579, +0.0000017590,0.0000017598,0.0000017593,0.0000017585,0.0000017594, +0.0000017614,0.0000017640,0.0000017672,0.0000017704,0.0000017725, +0.0000017737,0.0000017746,0.0000017755,0.0000017759,0.0000017744, +0.0000017727,0.0000017713,0.0000017698,0.0000017697,0.0000017721, +0.0000017751,0.0000017786,0.0000017801,0.0000017796,0.0000017773, +0.0000017732,0.0000017691,0.0000017664,0.0000017635,0.0000017609, +0.0000017590,0.0000017573,0.0000017558,0.0000017548,0.0000017555, +0.0000017584,0.0000017627,0.0000017663,0.0000017679,0.0000017685, +0.0000017686,0.0000017686,0.0000017683,0.0000017678,0.0000017674, +0.0000017673,0.0000017672,0.0000017663,0.0000017640,0.0000017610, +0.0000017583,0.0000017556,0.0000017532,0.0000017516,0.0000017509, +0.0000017524,0.0000017548,0.0000017579,0.0000017613,0.0000017643, +0.0000017664,0.0000017670,0.0000017667,0.0000017650,0.0000017640, +0.0000017651,0.0000017686,0.0000017736,0.0000017769,0.0000017775, +0.0000017773,0.0000017749,0.0000017723,0.0000017689,0.0000017655, +0.0000017619,0.0000017588,0.0000017584,0.0000017587,0.0000017583, +0.0000017573,0.0000017576,0.0000017601,0.0000017640,0.0000017693, +0.0000017772,0.0000017893,0.0000018026,0.0000018165,0.0000018315, +0.0000018469,0.0000018621,0.0000018774,0.0000018923,0.0000019048, +0.0000019149,0.0000019221,0.0000019263,0.0000019285,0.0000019301, +0.0000019308,0.0000019316,0.0000019323,0.0000019323,0.0000019335, +0.0000019348,0.0000019353,0.0000019344,0.0000019322,0.0000019294, +0.0000019264,0.0000019232,0.0000019194,0.0000019155,0.0000019117, +0.0000019082,0.0000019050,0.0000019020,0.0000018995,0.0000018981, +0.0000018976,0.0000018969,0.0000018956,0.0000018947,0.0000018948, +0.0000018953,0.0000018959,0.0000018962,0.0000018962,0.0000018959, +0.0000018954,0.0000018950,0.0000018947,0.0000018944,0.0000018937, +0.0000018922,0.0000018904,0.0000018883,0.0000018869,0.0000018866, +0.0000018866,0.0000018863,0.0000018863,0.0000018868,0.0000018881, +0.0000018903,0.0000018929,0.0000018950,0.0000018960,0.0000018959, +0.0000018950,0.0000018939,0.0000018937,0.0000018946,0.0000018944, +0.0000018947,0.0000018938,0.0000018925,0.0000018917,0.0000018914, +0.0000018915,0.0000018911,0.0000018896,0.0000018859,0.0000018801, +0.0000018740,0.0000018696,0.0000018674,0.0000018657,0.0000018630, +0.0000018602,0.0000018592,0.0000018596,0.0000018627,0.0000018667, +0.0000018699,0.0000018722,0.0000018741,0.0000018760,0.0000018791, +0.0000018835,0.0000018874,0.0000018902,0.0000018919,0.0000018926, +0.0000018925,0.0000018929,0.0000018944,0.0000018958,0.0000018959, +0.0000018947,0.0000018914,0.0000018882,0.0000018853,0.0000018835, +0.0000018847,0.0000018893,0.0000018947,0.0000018952,0.0000018879, +0.0000018765,0.0000018675,0.0000018626,0.0000018578,0.0000018525, +0.0000018498,0.0000018530,0.0000018603,0.0000018659,0.0000018645, +0.0000018590,0.0000018518,0.0000018436,0.0000018351,0.0000018281, +0.0000018251,0.0000018269,0.0000018324,0.0000018365,0.0000018368, +0.0000018336,0.0000018293,0.0000018263,0.0000018249,0.0000018243, +0.0000018245,0.0000018248,0.0000018236,0.0000018195,0.0000018135, +0.0000018077,0.0000018049,0.0000018052,0.0000018070,0.0000018080, +0.0000018077,0.0000018079,0.0000018106,0.0000018153,0.0000018193, +0.0000018208,0.0000018209,0.0000018213,0.0000018222,0.0000018224, +0.0000018204,0.0000018166,0.0000018118,0.0000018070,0.0000018041, +0.0000018038,0.0000018051,0.0000018071,0.0000018091,0.0000018096, +0.0000018084,0.0000018058,0.0000018034,0.0000018021,0.0000018009, +0.0000017995,0.0000017987,0.0000017999,0.0000018041,0.0000018115, +0.0000018211,0.0000018310,0.0000018396,0.0000018466,0.0000018523, +0.0000018566,0.0000018593,0.0000018603,0.0000018605,0.0000018610, +0.0000018622,0.0000018635,0.0000018648,0.0000018667,0.0000018673, +0.0000018661,0.0000018631,0.0000018590,0.0000018545,0.0000018496, +0.0000018446,0.0000018401,0.0000018365,0.0000018334,0.0000018305, +0.0000018284,0.0000018278,0.0000018284,0.0000018300,0.0000018316, +0.0000018326,0.0000018326,0.0000018314,0.0000018296,0.0000018281, +0.0000018265,0.0000018236,0.0000018193,0.0000018139,0.0000018078, +0.0000018016,0.0000017960,0.0000017918,0.0000017897,0.0000017894, +0.0000017898,0.0000017907,0.0000017913,0.0000017917,0.0000017929, +0.0000017950,0.0000017970,0.0000017993,0.0000018009,0.0000018023, +0.0000018009,0.0000017956,0.0000017865,0.0000017753,0.0000017659, +0.0000017617,0.0000017611,0.0000017608,0.0000017617,0.0000017650, +0.0000017706,0.0000017782,0.0000017851,0.0000017892,0.0000017899, +0.0000017879,0.0000017842,0.0000017796,0.0000017741,0.0000017676, +0.0000017609,0.0000017563,0.0000017546,0.0000017548,0.0000017564, +0.0000017593,0.0000017644,0.0000017713,0.0000017779,0.0000017831, +0.0000017866,0.0000017880,0.0000017884,0.0000017893,0.0000017907, +0.0000017920,0.0000017942,0.0000017977,0.0000018014,0.0000018057, +0.0000018100,0.0000018126,0.0000018144,0.0000018170,0.0000018189, +0.0000018193,0.0000018200,0.0000018186,0.0000018171,0.0000018159, +0.0000018156,0.0000018150,0.0000018142,0.0000018138,0.0000018130, +0.0000018122,0.0000018120,0.0000018126,0.0000018143,0.0000018167, +0.0000018187,0.0000018207,0.0000018232,0.0000018258,0.0000018288, +0.0000018323,0.0000018353,0.0000018389,0.0000018422,0.0000018446, +0.0000018466,0.0000018474,0.0000018481,0.0000018489,0.0000018489, +0.0000018481,0.0000018461,0.0000018427,0.0000018389,0.0000018348, +0.0000018309,0.0000018272,0.0000018240,0.0000018218,0.0000018206, +0.0000018202,0.0000018202,0.0000018198,0.0000018180,0.0000018147, +0.0000018098,0.0000018041,0.0000017985,0.0000017934,0.0000017885, +0.0000017841,0.0000017813,0.0000017801,0.0000017807,0.0000017837, +0.0000017885,0.0000017926,0.0000017948,0.0000017953,0.0000017948, +0.0000017928,0.0000017900,0.0000017860,0.0000017803,0.0000017811, +0.0000017878,0.0000017993,0.0000018448,0.0000018827,0.0000018779, +0.0000018635,0.0000018611,0.0000018684,0.0000018768,0.0000018796, +0.0000018798,0.0000018791,0.0000018824,0.0000018852,0.0000018697, +0.0000018274,0.0000017908,0.0000017748,0.0000017705,0.0000017686, +0.0000017668,0.0000017653,0.0000017646,0.0000017642,0.0000017638, +0.0000017634,0.0000017627,0.0000017655,0.0000017743,0.0000017845, +0.0000018016,0.0000018263,0.0000018416,0.0000018405,0.0000018311, +0.0000018140,0.0000017975,0.0000017860,0.0000017800,0.0000017788, +0.0000017795,0.0000017796,0.0000017777,0.0000017761,0.0000017757, +0.0000017758,0.0000017763,0.0000017768,0.0000017771,0.0000017767, +0.0000017746,0.0000017704,0.0000017660,0.0000017639,0.0000017651, +0.0000017682,0.0000017731,0.0000017784,0.0000017819,0.0000017827, +0.0000017813,0.0000017788,0.0000017767,0.0000017756,0.0000017762, +0.0000017797,0.0000017853,0.0000017904,0.0000017927,0.0000017927, +0.0000017912,0.0000017898,0.0000017896,0.0000017904,0.0000017913, +0.0000017908,0.0000017874,0.0000017840,0.0000017833,0.0000017854, +0.0000017892,0.0000017924,0.0000017949,0.0000017967,0.0000017978, +0.0000017984,0.0000017986,0.0000017985,0.0000017982,0.0000017975, +0.0000017965,0.0000017948,0.0000017918,0.0000017870,0.0000017812, +0.0000017762,0.0000017727,0.0000017712,0.0000017710,0.0000017714, +0.0000017716,0.0000017711,0.0000017700,0.0000017697,0.0000017701, +0.0000017712,0.0000017727,0.0000017739,0.0000017743,0.0000017735, +0.0000017707,0.0000017664,0.0000017620,0.0000017586,0.0000017561, +0.0000017548,0.0000017539,0.0000017539,0.0000017544,0.0000017561, +0.0000017598,0.0000017647,0.0000017687,0.0000017704,0.0000017707, +0.0000017717,0.0000017738,0.0000017759,0.0000017778,0.0000017798, +0.0000017816,0.0000017835,0.0000017856,0.0000017880,0.0000017901, +0.0000017917,0.0000017932,0.0000017951,0.0000017972,0.0000017995, +0.0000018026,0.0000018072,0.0000018130,0.0000018192,0.0000018241, +0.0000018278,0.0000018298,0.0000018301,0.0000018290,0.0000018256, +0.0000018219,0.0000018193,0.0000018177,0.0000018158,0.0000018130, +0.0000018098,0.0000018059,0.0000018003,0.0000017926,0.0000017837, +0.0000017763,0.0000017721,0.0000017710,0.0000017716,0.0000017728, +0.0000017723,0.0000017715,0.0000017710,0.0000017714,0.0000017722, +0.0000017726,0.0000017725,0.0000017723,0.0000017720,0.0000017729, +0.0000017737,0.0000017749,0.0000017763,0.0000017780,0.0000017798, +0.0000017821,0.0000017840,0.0000017858,0.0000017874,0.0000017888, +0.0000017895,0.0000017897,0.0000017894,0.0000017889,0.0000017882, +0.0000017872,0.0000017860,0.0000017849,0.0000017836,0.0000017825, +0.0000017816,0.0000017807,0.0000017806,0.0000017805,0.0000017811, +0.0000017827,0.0000017859,0.0000017901,0.0000017950,0.0000017997, +0.0000018041,0.0000018083,0.0000018122,0.0000018159,0.0000018192, +0.0000018216,0.0000018232,0.0000018247,0.0000018256,0.0000018261, +0.0000018261,0.0000018263,0.0000018261,0.0000018253,0.0000018243, +0.0000018233,0.0000018215,0.0000018189,0.0000018167,0.0000018163, +0.0000018178,0.0000018196,0.0000018223,0.0000018257,0.0000018290, +0.0000018313,0.0000018329,0.0000018347,0.0000018365,0.0000018385, +0.0000018410,0.0000018442,0.0000018475,0.0000018501,0.0000018520, +0.0000018535,0.0000018553,0.0000018581,0.0000018626,0.0000018679, +0.0000018733,0.0000018783,0.0000018816,0.0000018821,0.0000018811, +0.0000018766,0.0000018700,0.0000018625,0.0000018560,0.0000018516, +0.0000018496,0.0000018497,0.0000018490,0.0000018482,0.0000018469, +0.0000018463,0.0000018451,0.0000018444,0.0000018433,0.0000018423, +0.0000018414,0.0000018404,0.0000018391,0.0000018377,0.0000018364, +0.0000018348,0.0000018331,0.0000018316,0.0000018302,0.0000018291, +0.0000018288,0.0000018291,0.0000018300,0.0000018307,0.0000018306, +0.0000018291,0.0000018262,0.0000018216,0.0000018154,0.0000018079, +0.0000018005,0.0000017939,0.0000017884,0.0000017858,0.0000017854, +0.0000017852,0.0000017878,0.0000017923,0.0000017984,0.0000018052, +0.0000018122,0.0000018188,0.0000018211,0.0000018226,0.0000018213, +0.0000018200,0.0000018197,0.0000018207,0.0000018229,0.0000018253, +0.0000018271,0.0000018279,0.0000018276,0.0000018268,0.0000018255, +0.0000018234,0.0000018206,0.0000018167,0.0000018119,0.0000018064, +0.0000018005,0.0000017954,0.0000017915,0.0000017884,0.0000017859, +0.0000017838,0.0000017824,0.0000017828,0.0000017839,0.0000017853, +0.0000017870,0.0000017885,0.0000017896,0.0000017904,0.0000017910, +0.0000017921,0.0000017938,0.0000017960,0.0000017982,0.0000018005, +0.0000018029,0.0000018056,0.0000018084,0.0000018108,0.0000018132, +0.0000018153,0.0000018171,0.0000018181,0.0000018184,0.0000018180, +0.0000018172,0.0000018160,0.0000018143,0.0000018126,0.0000018109, +0.0000018089,0.0000018065,0.0000018039,0.0000018011,0.0000017987, +0.0000017967,0.0000017955,0.0000017951,0.0000017949,0.0000017945, +0.0000017939,0.0000017933,0.0000017931,0.0000017935,0.0000017944, +0.0000017957,0.0000017973,0.0000017993,0.0000018017,0.0000018042, +0.0000018068,0.0000018091,0.0000018109,0.0000018124,0.0000018141, +0.0000018156,0.0000018163,0.0000018167,0.0000018165,0.0000018152, +0.0000018123,0.0000018088,0.0000018049,0.0000018021,0.0000018009, +0.0000018007,0.0000018005,0.0000018000,0.0000017987,0.0000017968, +0.0000017945,0.0000017913,0.0000017869,0.0000017817,0.0000017759, +0.0000017698,0.0000017641,0.0000017601,0.0000017570,0.0000017546, +0.0000017539,0.0000017543,0.0000017556,0.0000017572,0.0000017591, +0.0000017609,0.0000017625,0.0000017650,0.0000017675,0.0000017689, +0.0000017689,0.0000017679,0.0000017661,0.0000017641,0.0000017622, +0.0000017612,0.0000017609,0.0000017601,0.0000017597,0.0000017602, +0.0000017620,0.0000017647,0.0000017681,0.0000017716,0.0000017749, +0.0000017777,0.0000017786,0.0000017777,0.0000017750,0.0000017705, +0.0000017646,0.0000017583,0.0000017532,0.0000017501,0.0000017478, +0.0000017471,0.0000017487,0.0000017521,0.0000017562,0.0000017607, +0.0000017644,0.0000017677,0.0000017708,0.0000017717,0.0000017709, +0.0000017685,0.0000017643,0.0000017592,0.0000017554,0.0000017523, +0.0000017488,0.0000017438,0.0000017383,0.0000017346,0.0000017334, +0.0000017337,0.0000017351,0.0000017374,0.0000017385,0.0000017402, +0.0000017422,0.0000017444,0.0000017467,0.0000017486,0.0000017502, +0.0000017513,0.0000017520,0.0000017528,0.0000017541,0.0000017554, +0.0000017570,0.0000017585,0.0000017600,0.0000017624,0.0000017655, +0.0000017688,0.0000017722,0.0000017753,0.0000017771,0.0000017779, +0.0000017784,0.0000017794,0.0000017799,0.0000017792,0.0000017798, +0.0000017803,0.0000017805,0.0000017810,0.0000017819,0.0000017829, +0.0000017837,0.0000017837,0.0000017844,0.0000017855,0.0000017855, +0.0000017845,0.0000017837,0.0000017823,0.0000017805,0.0000017778, +0.0000017746,0.0000017716,0.0000017693,0.0000017676,0.0000017661, +0.0000017654,0.0000017654,0.0000017651,0.0000017651,0.0000017650, +0.0000017648,0.0000017644,0.0000017642,0.0000017644,0.0000017647, +0.0000017644,0.0000017634,0.0000017629,0.0000017640,0.0000017666, +0.0000017696,0.0000017721,0.0000017734,0.0000017737,0.0000017734, +0.0000017734,0.0000017744,0.0000017767,0.0000017803,0.0000017846, +0.0000017896,0.0000017957,0.0000018026,0.0000018091,0.0000018140, +0.0000018169,0.0000018184,0.0000018188,0.0000018193,0.0000018206, +0.0000018229,0.0000018259,0.0000018291,0.0000018321,0.0000018345, +0.0000018380,0.0000018438,0.0000018517,0.0000018598,0.0000018669, +0.0000018721,0.0000018753,0.0000018766,0.0000018769,0.0000018771, +0.0000018778,0.0000018791,0.0000018810,0.0000018835,0.0000018858, +0.0000018873,0.0000018875,0.0000018875,0.0000018874,0.0000018872, +0.0000018868,0.0000018865,0.0000018863,0.0000018859,0.0000018853, +0.0000018848,0.0000018840,0.0000018828,0.0000018817,0.0000018803, +0.0000018788,0.0000018766,0.0000018733,0.0000018699,0.0000018661, +0.0000018619,0.0000018579,0.0000018548,0.0000018524,0.0000018507, +0.0000018495,0.0000018489,0.0000018487,0.0000018486,0.0000018484, +0.0000018479,0.0000018473,0.0000018467,0.0000018458,0.0000018445, +0.0000018428,0.0000018410,0.0000018390,0.0000018369,0.0000018346, +0.0000018325,0.0000018314,0.0000018295,0.0000018282,0.0000018278, +0.0000018287,0.0000018309,0.0000018346,0.0000018383,0.0000018415, +0.0000018448,0.0000018480,0.0000018500,0.0000018525,0.0000018537, +0.0000018541,0.0000018554,0.0000018569,0.0000018579,0.0000018582, +0.0000018578,0.0000018566,0.0000018548,0.0000018524,0.0000018495, +0.0000018472,0.0000018456,0.0000018447,0.0000018453,0.0000018466, +0.0000018487,0.0000018511,0.0000018534,0.0000018560,0.0000018587, +0.0000018612,0.0000018634,0.0000018650,0.0000018645,0.0000018658, +0.0000018656,0.0000018631,0.0000018594,0.0000018547,0.0000018498, +0.0000018454,0.0000018420,0.0000018408,0.0000018407,0.0000018410, +0.0000018418,0.0000018447,0.0000018474,0.0000018500,0.0000018523, +0.0000018539,0.0000018547,0.0000018547,0.0000018546,0.0000018547, +0.0000018514,0.0000018469,0.0000018424,0.0000018376,0.0000018317, +0.0000018253,0.0000018193,0.0000018144,0.0000018112,0.0000018089, +0.0000018079,0.0000018069,0.0000018051,0.0000018026,0.0000017992, +0.0000017958,0.0000017924,0.0000017896,0.0000017870,0.0000017847, +0.0000017828,0.0000017826,0.0000017840,0.0000017859,0.0000017874, +0.0000017888,0.0000017893,0.0000017879,0.0000017864,0.0000017837, +0.0000017801,0.0000017757,0.0000017709,0.0000017658,0.0000017606, +0.0000017553,0.0000017510,0.0000017468,0.0000017434,0.0000017415, +0.0000017413,0.0000017422,0.0000017444,0.0000017479,0.0000017506, +0.0000017545,0.0000017585,0.0000017622,0.0000017640,0.0000017643, +0.0000017648,0.0000017633,0.0000017607,0.0000017578,0.0000017534, +0.0000017490,0.0000017489,0.0000017512,0.0000017546,0.0000017576, +0.0000017610,0.0000017647,0.0000017674,0.0000017697,0.0000017709, +0.0000017713,0.0000017710,0.0000017682,0.0000017654,0.0000017625, +0.0000017598,0.0000017567,0.0000017533,0.0000017516,0.0000017518, +0.0000017528,0.0000017546,0.0000017563,0.0000017574,0.0000017589, +0.0000017582,0.0000017566,0.0000017548,0.0000017520,0.0000017493, +0.0000017467,0.0000017449,0.0000017436,0.0000017434,0.0000017446, +0.0000017474,0.0000017499,0.0000017523,0.0000017548,0.0000017562, +0.0000017561,0.0000017576,0.0000017601,0.0000017624,0.0000017653, +0.0000017679,0.0000017691,0.0000017694,0.0000017697,0.0000017701, +0.0000017705,0.0000017693,0.0000017678,0.0000017665,0.0000017654, +0.0000017659,0.0000017678,0.0000017706,0.0000017743,0.0000017763, +0.0000017768,0.0000017762,0.0000017736,0.0000017695,0.0000017663, +0.0000017630,0.0000017603,0.0000017585,0.0000017570,0.0000017556, +0.0000017545,0.0000017533,0.0000017526,0.0000017539,0.0000017571, +0.0000017599,0.0000017616,0.0000017621,0.0000017622,0.0000017621, +0.0000017624,0.0000017620,0.0000017616,0.0000017621,0.0000017628, +0.0000017633,0.0000017630,0.0000017624,0.0000017613,0.0000017595, +0.0000017575,0.0000017557,0.0000017549,0.0000017557,0.0000017572, +0.0000017590,0.0000017608,0.0000017630,0.0000017649,0.0000017656, +0.0000017645,0.0000017633,0.0000017630,0.0000017642,0.0000017666, +0.0000017697,0.0000017724,0.0000017752,0.0000017766,0.0000017779, +0.0000017782,0.0000017761,0.0000017729,0.0000017688,0.0000017661, +0.0000017639,0.0000017614,0.0000017591,0.0000017580,0.0000017596, +0.0000017609,0.0000017618,0.0000017623,0.0000017653,0.0000017692, +0.0000017741,0.0000017812,0.0000017899,0.0000018005,0.0000018138, +0.0000018294,0.0000018456,0.0000018616,0.0000018765,0.0000018886, +0.0000018982,0.0000019060,0.0000019116,0.0000019167,0.0000019211, +0.0000019241,0.0000019271,0.0000019296,0.0000019312,0.0000019315, +0.0000019303,0.0000019283,0.0000019255,0.0000019222,0.0000019185, +0.0000019146,0.0000019106,0.0000019069,0.0000019026,0.0000018984, +0.0000018943,0.0000018912,0.0000018896,0.0000018883,0.0000018863, +0.0000018845,0.0000018838,0.0000018841,0.0000018846,0.0000018847, +0.0000018839,0.0000018827,0.0000018818,0.0000018817,0.0000018823, +0.0000018832,0.0000018836,0.0000018832,0.0000018823,0.0000018808, +0.0000018795,0.0000018790,0.0000018790,0.0000018790,0.0000018796, +0.0000018803,0.0000018815,0.0000018835,0.0000018859,0.0000018877, +0.0000018889,0.0000018894,0.0000018888,0.0000018872,0.0000018859, +0.0000018855,0.0000018866,0.0000018892,0.0000018920,0.0000018934, +0.0000018946,0.0000018946,0.0000018937,0.0000018925,0.0000018916, +0.0000018906,0.0000018891,0.0000018869,0.0000018834,0.0000018791, +0.0000018752,0.0000018724,0.0000018699,0.0000018663,0.0000018622, +0.0000018606,0.0000018603,0.0000018615,0.0000018638,0.0000018665, +0.0000018687,0.0000018713,0.0000018748,0.0000018783,0.0000018817, +0.0000018846,0.0000018865,0.0000018875,0.0000018888,0.0000018908, +0.0000018933,0.0000018962,0.0000018986,0.0000018995,0.0000018989, +0.0000018967,0.0000018915,0.0000018866,0.0000018845,0.0000018853, +0.0000018890,0.0000018911,0.0000018887,0.0000018810,0.0000018728, +0.0000018683,0.0000018647,0.0000018582,0.0000018514,0.0000018507, +0.0000018564,0.0000018625,0.0000018640,0.0000018605,0.0000018542, +0.0000018456,0.0000018348,0.0000018259,0.0000018237,0.0000018265, +0.0000018318,0.0000018346,0.0000018338,0.0000018307,0.0000018282, +0.0000018268,0.0000018249,0.0000018235,0.0000018233,0.0000018228, +0.0000018207,0.0000018161,0.0000018102,0.0000018062,0.0000018055, +0.0000018069,0.0000018083,0.0000018085,0.0000018080,0.0000018091, +0.0000018129,0.0000018168,0.0000018190,0.0000018199,0.0000018207, +0.0000018212,0.0000018212,0.0000018200,0.0000018177,0.0000018138, +0.0000018088,0.0000018047,0.0000018030,0.0000018031,0.0000018046, +0.0000018068,0.0000018074,0.0000018064,0.0000018051,0.0000018046, +0.0000018040,0.0000018030,0.0000018023,0.0000018031,0.0000018069, +0.0000018138,0.0000018227,0.0000018320,0.0000018399,0.0000018459, +0.0000018500,0.0000018528,0.0000018549,0.0000018560,0.0000018568, +0.0000018576,0.0000018590,0.0000018608,0.0000018635,0.0000018670, +0.0000018696,0.0000018698,0.0000018684,0.0000018651,0.0000018610, +0.0000018563,0.0000018508,0.0000018451,0.0000018402,0.0000018367, +0.0000018344,0.0000018326,0.0000018311,0.0000018303,0.0000018307, +0.0000018315,0.0000018322,0.0000018323,0.0000018316,0.0000018291, +0.0000018255,0.0000018224,0.0000018205,0.0000018199,0.0000018194, +0.0000018172,0.0000018133,0.0000018082,0.0000018024,0.0000017967, +0.0000017926,0.0000017910,0.0000017917,0.0000017935,0.0000017948, +0.0000017952,0.0000017951,0.0000017942,0.0000017934,0.0000017941, +0.0000017968,0.0000018007,0.0000018040,0.0000018038,0.0000017994, +0.0000017895,0.0000017767,0.0000017668,0.0000017632,0.0000017635, +0.0000017643,0.0000017659,0.0000017696,0.0000017752,0.0000017824, +0.0000017894,0.0000017931,0.0000017926,0.0000017890,0.0000017837, +0.0000017773,0.0000017695,0.0000017614,0.0000017553,0.0000017526, +0.0000017527,0.0000017551,0.0000017592,0.0000017643,0.0000017692, +0.0000017737,0.0000017785,0.0000017825,0.0000017847,0.0000017860, +0.0000017864,0.0000017861,0.0000017865,0.0000017882,0.0000017897, +0.0000017913,0.0000017934,0.0000017955,0.0000017973,0.0000018003, +0.0000018056,0.0000018109,0.0000018168,0.0000018191,0.0000018201, +0.0000018206,0.0000018194,0.0000018176,0.0000018149,0.0000018134, +0.0000018118,0.0000018105,0.0000018094,0.0000018084,0.0000018077, +0.0000018078,0.0000018082,0.0000018088,0.0000018099,0.0000018108, +0.0000018124,0.0000018140,0.0000018148,0.0000018160,0.0000018177, +0.0000018200,0.0000018225,0.0000018250,0.0000018278,0.0000018303, +0.0000018325,0.0000018336,0.0000018333,0.0000018317,0.0000018298, +0.0000018276,0.0000018252,0.0000018224,0.0000018193,0.0000018165, +0.0000018144,0.0000018134,0.0000018132,0.0000018125,0.0000018106, +0.0000018073,0.0000018033,0.0000017994,0.0000017956,0.0000017915, +0.0000017876,0.0000017854,0.0000017850,0.0000017854,0.0000017871, +0.0000017906,0.0000017941,0.0000017959,0.0000017963,0.0000017959, +0.0000017944,0.0000017918,0.0000017886,0.0000017844,0.0000017805, +0.0000017825,0.0000017863,0.0000018151,0.0000018695,0.0000018840, +0.0000018699,0.0000018608,0.0000018637,0.0000018722,0.0000018768, +0.0000018776,0.0000018778,0.0000018842,0.0000018848,0.0000018572, +0.0000018088,0.0000017801,0.0000017732,0.0000017718,0.0000017711, +0.0000017697,0.0000017680,0.0000017663,0.0000017649,0.0000017643, +0.0000017642,0.0000017638,0.0000017622,0.0000017611,0.0000017621, +0.0000017668,0.0000017741,0.0000017867,0.0000018068,0.0000018267, +0.0000018361,0.0000018365,0.0000018284,0.0000018105,0.0000017918, +0.0000017799,0.0000017777,0.0000017782,0.0000017773,0.0000017762, +0.0000017763,0.0000017772,0.0000017779,0.0000017781,0.0000017780, +0.0000017778,0.0000017777,0.0000017772,0.0000017758,0.0000017713, +0.0000017656,0.0000017620,0.0000017626,0.0000017655,0.0000017718, +0.0000017786,0.0000017826,0.0000017837,0.0000017834,0.0000017817, +0.0000017812,0.0000017832,0.0000017872,0.0000017904,0.0000017914, +0.0000017902,0.0000017878,0.0000017862,0.0000017862,0.0000017872, +0.0000017874,0.0000017847,0.0000017805,0.0000017798,0.0000017832, +0.0000017882,0.0000017911,0.0000017919,0.0000017921,0.0000017927, +0.0000017940,0.0000017958,0.0000017978,0.0000017994,0.0000018005, +0.0000018007,0.0000018000,0.0000017987,0.0000017969,0.0000017940, +0.0000017893,0.0000017831,0.0000017771,0.0000017728,0.0000017709, +0.0000017706,0.0000017713,0.0000017722,0.0000017724,0.0000017717, +0.0000017712,0.0000017716,0.0000017725,0.0000017736,0.0000017741, +0.0000017739,0.0000017724,0.0000017690,0.0000017648,0.0000017610, +0.0000017582,0.0000017558,0.0000017539,0.0000017530,0.0000017528, +0.0000017534,0.0000017557,0.0000017601,0.0000017647,0.0000017676, +0.0000017691,0.0000017705,0.0000017724,0.0000017742,0.0000017756, +0.0000017765,0.0000017773,0.0000017785,0.0000017803,0.0000017824, +0.0000017844,0.0000017869,0.0000017904,0.0000017947,0.0000017998, +0.0000018059,0.0000018122,0.0000018177,0.0000018215,0.0000018238, +0.0000018245,0.0000018236,0.0000018216,0.0000018193,0.0000018171, +0.0000018152,0.0000018130,0.0000018101,0.0000018067,0.0000018027, +0.0000017973,0.0000017898,0.0000017809,0.0000017720,0.0000017663, +0.0000017651,0.0000017663,0.0000017687,0.0000017707,0.0000017720, +0.0000017683,0.0000017672,0.0000017666,0.0000017652,0.0000017632, +0.0000017621,0.0000017638,0.0000017668,0.0000017716,0.0000017767, +0.0000017822,0.0000017874,0.0000017919,0.0000017957,0.0000017986, +0.0000018008,0.0000018026,0.0000018044,0.0000018062,0.0000018080, +0.0000018095,0.0000018103,0.0000018102,0.0000018097,0.0000018087, +0.0000018069,0.0000018047,0.0000018022,0.0000017995,0.0000017970, +0.0000017949,0.0000017930,0.0000017907,0.0000017884,0.0000017856, +0.0000017832,0.0000017826,0.0000017829,0.0000017845,0.0000017870, +0.0000017914,0.0000017968,0.0000018025,0.0000018087,0.0000018144, +0.0000018186,0.0000018218,0.0000018242,0.0000018257,0.0000018263, +0.0000018276,0.0000018287,0.0000018293,0.0000018294,0.0000018292, +0.0000018286,0.0000018269,0.0000018246,0.0000018222,0.0000018209, +0.0000018209,0.0000018218,0.0000018236,0.0000018260,0.0000018283, +0.0000018295,0.0000018304,0.0000018314,0.0000018324,0.0000018336, +0.0000018355,0.0000018385,0.0000018424,0.0000018462,0.0000018493, +0.0000018516,0.0000018534,0.0000018549,0.0000018573,0.0000018603, +0.0000018640,0.0000018689,0.0000018744,0.0000018790,0.0000018812, +0.0000018810,0.0000018794,0.0000018748,0.0000018684,0.0000018621, +0.0000018571,0.0000018538,0.0000018508,0.0000018482,0.0000018465, +0.0000018457,0.0000018450,0.0000018450,0.0000018445,0.0000018438, +0.0000018439,0.0000018441,0.0000018438,0.0000018439,0.0000018439, +0.0000018438,0.0000018429,0.0000018415,0.0000018399,0.0000018379, +0.0000018359,0.0000018341,0.0000018330,0.0000018328,0.0000018330, +0.0000018337,0.0000018341,0.0000018334,0.0000018314,0.0000018277, +0.0000018220,0.0000018147,0.0000018063,0.0000017981,0.0000017917, +0.0000017865,0.0000017848,0.0000017837,0.0000017850,0.0000017881, +0.0000017934,0.0000017994,0.0000018059,0.0000018132,0.0000018194, +0.0000018212,0.0000018216,0.0000018212,0.0000018211,0.0000018220, +0.0000018234,0.0000018248,0.0000018262,0.0000018265,0.0000018262, +0.0000018256,0.0000018241,0.0000018218,0.0000018188,0.0000018156, +0.0000018122,0.0000018086,0.0000018052,0.0000018017,0.0000017982, +0.0000017947,0.0000017918,0.0000017899,0.0000017891,0.0000017892, +0.0000017898,0.0000017903,0.0000017907,0.0000017908,0.0000017911, +0.0000017918,0.0000017930,0.0000017948,0.0000017969,0.0000017989, +0.0000018012,0.0000018038,0.0000018069,0.0000018100,0.0000018130, +0.0000018160,0.0000018187,0.0000018212,0.0000018231,0.0000018239, +0.0000018240,0.0000018238,0.0000018230,0.0000018218,0.0000018202, +0.0000018178,0.0000018149,0.0000018116,0.0000018079,0.0000018040, +0.0000018000,0.0000017964,0.0000017938,0.0000017920,0.0000017904, +0.0000017891,0.0000017880,0.0000017876,0.0000017879,0.0000017884, +0.0000017889,0.0000017894,0.0000017900,0.0000017907,0.0000017916, +0.0000017930,0.0000017947,0.0000017966,0.0000017987,0.0000018013, +0.0000018041,0.0000018067,0.0000018089,0.0000018104,0.0000018109, +0.0000018103,0.0000018089,0.0000018079,0.0000018083,0.0000018101, +0.0000018124,0.0000018142,0.0000018154,0.0000018159,0.0000018155, +0.0000018141,0.0000018115,0.0000018073,0.0000018020,0.0000017957, +0.0000017886,0.0000017810,0.0000017734,0.0000017660,0.0000017591, +0.0000017542,0.0000017519,0.0000017511,0.0000017514,0.0000017525, +0.0000017542,0.0000017571,0.0000017611,0.0000017658,0.0000017697, +0.0000017725,0.0000017740,0.0000017738,0.0000017723,0.0000017695, +0.0000017668,0.0000017640,0.0000017612,0.0000017592,0.0000017580, +0.0000017577,0.0000017580,0.0000017593,0.0000017618,0.0000017657, +0.0000017711,0.0000017766,0.0000017807,0.0000017830,0.0000017828, +0.0000017807,0.0000017767,0.0000017713,0.0000017647,0.0000017582, +0.0000017531,0.0000017504,0.0000017481,0.0000017468,0.0000017478, +0.0000017513,0.0000017571,0.0000017636,0.0000017689,0.0000017721, +0.0000017741,0.0000017746,0.0000017733,0.0000017709,0.0000017670, +0.0000017626,0.0000017593,0.0000017573,0.0000017548,0.0000017500, +0.0000017439,0.0000017386,0.0000017353,0.0000017335,0.0000017326, +0.0000017329,0.0000017329,0.0000017348,0.0000017377,0.0000017411, +0.0000017442,0.0000017464,0.0000017477,0.0000017476,0.0000017465, +0.0000017450,0.0000017442,0.0000017452,0.0000017479,0.0000017519, +0.0000017563,0.0000017607,0.0000017647,0.0000017680,0.0000017707, +0.0000017727,0.0000017740,0.0000017748,0.0000017756,0.0000017762, +0.0000017770,0.0000017779,0.0000017787,0.0000017793,0.0000017796, +0.0000017794,0.0000017790,0.0000017782,0.0000017772,0.0000017757, +0.0000017741,0.0000017725,0.0000017710,0.0000017693,0.0000017677, +0.0000017670,0.0000017668,0.0000017663,0.0000017656,0.0000017654, +0.0000017658,0.0000017666,0.0000017677,0.0000017688,0.0000017697, +0.0000017703,0.0000017705,0.0000017706,0.0000017706,0.0000017705, +0.0000017703,0.0000017709,0.0000017725,0.0000017746,0.0000017760, +0.0000017760,0.0000017750,0.0000017743,0.0000017750,0.0000017773, +0.0000017810,0.0000017857,0.0000017910,0.0000017967,0.0000018026, +0.0000018083,0.0000018129,0.0000018158,0.0000018173,0.0000018180, +0.0000018187,0.0000018199,0.0000018225,0.0000018257,0.0000018282, +0.0000018298,0.0000018314,0.0000018347,0.0000018412,0.0000018501, +0.0000018590,0.0000018661,0.0000018706,0.0000018729,0.0000018741, +0.0000018741,0.0000018739,0.0000018743,0.0000018755,0.0000018778, +0.0000018801,0.0000018822,0.0000018839,0.0000018842,0.0000018836, +0.0000018824,0.0000018808,0.0000018793,0.0000018781,0.0000018779, +0.0000018779,0.0000018778,0.0000018779,0.0000018781,0.0000018782, +0.0000018783,0.0000018782,0.0000018775,0.0000018762,0.0000018741, +0.0000018711,0.0000018674,0.0000018630,0.0000018580,0.0000018532, +0.0000018495,0.0000018472,0.0000018460,0.0000018455,0.0000018456, +0.0000018466,0.0000018480,0.0000018494,0.0000018507,0.0000018518, +0.0000018526,0.0000018531,0.0000018532,0.0000018531,0.0000018526, +0.0000018519,0.0000018502,0.0000018478,0.0000018449,0.0000018415, +0.0000018376,0.0000018335,0.0000018294,0.0000018254,0.0000018233, +0.0000018224,0.0000018243,0.0000018276,0.0000018319,0.0000018370, +0.0000018426,0.0000018480,0.0000018532,0.0000018548,0.0000018571, +0.0000018578,0.0000018589,0.0000018595,0.0000018603,0.0000018608, +0.0000018613,0.0000018614,0.0000018606,0.0000018587,0.0000018560, +0.0000018529,0.0000018499,0.0000018476,0.0000018462,0.0000018462, +0.0000018459,0.0000018475,0.0000018499,0.0000018532,0.0000018564, +0.0000018596,0.0000018627,0.0000018650,0.0000018665,0.0000018680, +0.0000018688,0.0000018680,0.0000018658,0.0000018622,0.0000018580, +0.0000018538,0.0000018499,0.0000018467,0.0000018439,0.0000018429, +0.0000018436,0.0000018456,0.0000018475,0.0000018496,0.0000018521, +0.0000018536,0.0000018543,0.0000018548,0.0000018551,0.0000018545, +0.0000018537,0.0000018545,0.0000018547,0.0000018532,0.0000018500, +0.0000018447,0.0000018376,0.0000018300,0.0000018226,0.0000018169, +0.0000018129,0.0000018098,0.0000018082,0.0000018067,0.0000018042, +0.0000018007,0.0000017965,0.0000017920,0.0000017888,0.0000017868, +0.0000017866,0.0000017880,0.0000017899,0.0000017916,0.0000017929, +0.0000017938,0.0000017948,0.0000017946,0.0000017939,0.0000017921, +0.0000017888,0.0000017844,0.0000017794,0.0000017750,0.0000017693, +0.0000017638,0.0000017584,0.0000017534,0.0000017492,0.0000017469, +0.0000017457,0.0000017467,0.0000017482,0.0000017503,0.0000017540, +0.0000017573,0.0000017610,0.0000017629,0.0000017641,0.0000017650, +0.0000017645,0.0000017626,0.0000017597,0.0000017559,0.0000017522, +0.0000017512,0.0000017530,0.0000017562,0.0000017596,0.0000017634, +0.0000017672,0.0000017708,0.0000017735,0.0000017743,0.0000017742, +0.0000017733,0.0000017703,0.0000017669,0.0000017633,0.0000017599, +0.0000017559,0.0000017522,0.0000017511,0.0000017523,0.0000017547, +0.0000017574,0.0000017601,0.0000017628,0.0000017643,0.0000017646, +0.0000017635,0.0000017624,0.0000017599,0.0000017575,0.0000017553, +0.0000017534,0.0000017513,0.0000017502,0.0000017502,0.0000017504, +0.0000017509,0.0000017518,0.0000017522,0.0000017520,0.0000017527, +0.0000017555,0.0000017584,0.0000017620,0.0000017651,0.0000017668, +0.0000017675,0.0000017674,0.0000017672,0.0000017677,0.0000017672, +0.0000017659,0.0000017647,0.0000017634,0.0000017641,0.0000017657, +0.0000017682,0.0000017712,0.0000017726,0.0000017729,0.0000017726, +0.0000017710,0.0000017690,0.0000017663,0.0000017620,0.0000017590, +0.0000017572,0.0000017556,0.0000017550,0.0000017553,0.0000017553, +0.0000017547,0.0000017543,0.0000017548,0.0000017565,0.0000017589, +0.0000017603,0.0000017608,0.0000017602,0.0000017604,0.0000017605, +0.0000017599,0.0000017595,0.0000017596,0.0000017607,0.0000017621, +0.0000017629,0.0000017627,0.0000017617,0.0000017609,0.0000017600, +0.0000017589,0.0000017593,0.0000017599,0.0000017603,0.0000017605, +0.0000017615,0.0000017627,0.0000017640,0.0000017641,0.0000017641, +0.0000017646,0.0000017651,0.0000017654,0.0000017660,0.0000017668, +0.0000017690,0.0000017716,0.0000017745,0.0000017772,0.0000017782, +0.0000017791,0.0000017791,0.0000017783,0.0000017768,0.0000017741, +0.0000017710,0.0000017686,0.0000017663,0.0000017647,0.0000017634, +0.0000017627,0.0000017644,0.0000017649,0.0000017639,0.0000017628, +0.0000017637,0.0000017663,0.0000017709,0.0000017779,0.0000017871, +0.0000017985,0.0000018122,0.0000018256,0.0000018388,0.0000018513, +0.0000018629,0.0000018741,0.0000018844,0.0000018929,0.0000019004, +0.0000019062,0.0000019106,0.0000019134,0.0000019147,0.0000019152, +0.0000019147,0.0000019132,0.0000019115,0.0000019092,0.0000019058, +0.0000019014,0.0000018966,0.0000018915,0.0000018864,0.0000018824, +0.0000018802,0.0000018781,0.0000018751,0.0000018716,0.0000018691, +0.0000018679,0.0000018679,0.0000018679,0.0000018673,0.0000018656, +0.0000018636,0.0000018622,0.0000018619,0.0000018625,0.0000018633, +0.0000018639,0.0000018643,0.0000018641,0.0000018638,0.0000018640, +0.0000018643,0.0000018651,0.0000018666,0.0000018681,0.0000018702, +0.0000018726,0.0000018750,0.0000018766,0.0000018772,0.0000018775, +0.0000018777,0.0000018780,0.0000018782,0.0000018784,0.0000018789, +0.0000018804,0.0000018828,0.0000018860,0.0000018898,0.0000018932, +0.0000018942,0.0000018940,0.0000018925,0.0000018908,0.0000018899, +0.0000018896,0.0000018903,0.0000018903,0.0000018891,0.0000018859, +0.0000018810,0.0000018757,0.0000018710,0.0000018674,0.0000018646, +0.0000018624,0.0000018615,0.0000018619,0.0000018640,0.0000018674, +0.0000018707,0.0000018730,0.0000018743,0.0000018748,0.0000018745, +0.0000018743,0.0000018744,0.0000018756,0.0000018779,0.0000018824, +0.0000018883,0.0000018945,0.0000018993,0.0000019022,0.0000019026, +0.0000019003,0.0000018943,0.0000018869,0.0000018824,0.0000018835, +0.0000018885,0.0000018908,0.0000018863,0.0000018779,0.0000018723, +0.0000018691,0.0000018632,0.0000018547,0.0000018505,0.0000018537, +0.0000018604,0.0000018632,0.0000018610,0.0000018548,0.0000018461, +0.0000018363,0.0000018291,0.0000018276,0.0000018294,0.0000018320, +0.0000018323,0.0000018300,0.0000018278,0.0000018267,0.0000018249, +0.0000018225,0.0000018213,0.0000018213,0.0000018211,0.0000018186, +0.0000018136,0.0000018088,0.0000018072,0.0000018084,0.0000018105, +0.0000018110,0.0000018102,0.0000018107,0.0000018133,0.0000018165, +0.0000018187,0.0000018201,0.0000018212,0.0000018217,0.0000018212, +0.0000018198,0.0000018177,0.0000018145,0.0000018099,0.0000018051, +0.0000018022,0.0000018015,0.0000018020,0.0000018040,0.0000018058, +0.0000018067,0.0000018070,0.0000018070,0.0000018068,0.0000018070, +0.0000018087,0.0000018126,0.0000018193,0.0000018279,0.0000018370, +0.0000018448,0.0000018505,0.0000018542,0.0000018560,0.0000018568, +0.0000018571,0.0000018575,0.0000018582,0.0000018587,0.0000018590, +0.0000018602,0.0000018624,0.0000018656,0.0000018678,0.0000018685, +0.0000018676,0.0000018658,0.0000018629,0.0000018581,0.0000018516, +0.0000018449,0.0000018397,0.0000018364,0.0000018346,0.0000018336, +0.0000018329,0.0000018325,0.0000018324,0.0000018322,0.0000018313, +0.0000018300,0.0000018281,0.0000018249,0.0000018204,0.0000018156, +0.0000018129,0.0000018125,0.0000018135,0.0000018136,0.0000018127, +0.0000018108,0.0000018076,0.0000018038,0.0000018004,0.0000017979, +0.0000017974,0.0000017985,0.0000017993,0.0000017988,0.0000017975, +0.0000017960,0.0000017947,0.0000017939,0.0000017942,0.0000017968, +0.0000018012,0.0000018050,0.0000018062,0.0000018017,0.0000017908, +0.0000017775,0.0000017682,0.0000017662,0.0000017676,0.0000017692, +0.0000017710,0.0000017743,0.0000017801,0.0000017868,0.0000017925, +0.0000017943,0.0000017920,0.0000017864,0.0000017791,0.0000017712, +0.0000017631,0.0000017560,0.0000017523,0.0000017521,0.0000017546, +0.0000017590,0.0000017625,0.0000017653,0.0000017691,0.0000017735, +0.0000017771,0.0000017797,0.0000017813,0.0000017817,0.0000017821, +0.0000017828,0.0000017828,0.0000017826,0.0000017825,0.0000017822, +0.0000017819,0.0000017831,0.0000017865,0.0000017918,0.0000017985, +0.0000018050,0.0000018104,0.0000018161,0.0000018196,0.0000018210, +0.0000018204,0.0000018182,0.0000018152,0.0000018121,0.0000018094, +0.0000018081,0.0000018069,0.0000018055,0.0000018041,0.0000018034, +0.0000018034,0.0000018032,0.0000018032,0.0000018035,0.0000018033, +0.0000018030,0.0000018028,0.0000018033,0.0000018046,0.0000018061, +0.0000018092,0.0000018126,0.0000018158,0.0000018181,0.0000018188, +0.0000018186,0.0000018181,0.0000018175,0.0000018170,0.0000018161, +0.0000018142,0.0000018119,0.0000018101,0.0000018091,0.0000018083, +0.0000018071,0.0000018053,0.0000018029,0.0000018006,0.0000017988, +0.0000017966,0.0000017935,0.0000017912,0.0000017907,0.0000017909, +0.0000017909,0.0000017917,0.0000017939,0.0000017957,0.0000017963, +0.0000017962,0.0000017952,0.0000017930,0.0000017899,0.0000017867, +0.0000017830,0.0000017814,0.0000017823,0.0000017928,0.0000018429, +0.0000018836,0.0000018789,0.0000018636,0.0000018608,0.0000018670, +0.0000018732,0.0000018754,0.0000018767,0.0000018844,0.0000018848, +0.0000018481,0.0000017986,0.0000017769,0.0000017736,0.0000017736, +0.0000017736,0.0000017741,0.0000017747,0.0000017746,0.0000017732, +0.0000017710,0.0000017686,0.0000017670,0.0000017664,0.0000017658, +0.0000017639,0.0000017616,0.0000017612,0.0000017630,0.0000017677, +0.0000017753,0.0000017888,0.0000018076,0.0000018250,0.0000018352, +0.0000018326,0.0000018168,0.0000017921,0.0000017789,0.0000017778, +0.0000017779,0.0000017774,0.0000017780,0.0000017798,0.0000017817, +0.0000017829,0.0000017829,0.0000017820,0.0000017806,0.0000017788, +0.0000017769,0.0000017759,0.0000017744,0.0000017702,0.0000017638, +0.0000017591,0.0000017591,0.0000017633,0.0000017711,0.0000017785, +0.0000017830,0.0000017846,0.0000017849,0.0000017858,0.0000017881, +0.0000017902,0.0000017907,0.0000017893,0.0000017867,0.0000017849, +0.0000017846,0.0000017851,0.0000017846,0.0000017812,0.0000017779, +0.0000017789,0.0000017828,0.0000017839,0.0000017819,0.0000017798, +0.0000017796,0.0000017808,0.0000017824,0.0000017842,0.0000017863, +0.0000017891,0.0000017927,0.0000017965,0.0000017990,0.0000017999, +0.0000018000,0.0000017987,0.0000017960,0.0000017912,0.0000017847, +0.0000017781,0.0000017731,0.0000017707,0.0000017702,0.0000017712, +0.0000017730,0.0000017739,0.0000017737,0.0000017734,0.0000017734, +0.0000017735,0.0000017736,0.0000017732,0.0000017720,0.0000017695, +0.0000017661,0.0000017627,0.0000017599,0.0000017573,0.0000017552, +0.0000017536,0.0000017530,0.0000017530,0.0000017541,0.0000017570, +0.0000017610,0.0000017650,0.0000017682,0.0000017702,0.0000017717, +0.0000017727,0.0000017732,0.0000017733,0.0000017738,0.0000017755, +0.0000017784,0.0000017818,0.0000017861,0.0000017911,0.0000017963, +0.0000018015,0.0000018063,0.0000018104,0.0000018133,0.0000018151, +0.0000018156,0.0000018154,0.0000018147,0.0000018136,0.0000018116, +0.0000018089,0.0000018062,0.0000018031,0.0000017993,0.0000017944, +0.0000017881,0.0000017806,0.0000017725,0.0000017650,0.0000017617, +0.0000017621,0.0000017647,0.0000017677,0.0000017698,0.0000017704, +0.0000017699,0.0000017635,0.0000017611,0.0000017575,0.0000017552, +0.0000017562,0.0000017609,0.0000017690,0.0000017785,0.0000017873, +0.0000017944,0.0000018002,0.0000018048,0.0000018088,0.0000018117, +0.0000018138,0.0000018153,0.0000018163,0.0000018171,0.0000018179, +0.0000018188,0.0000018196,0.0000018208,0.0000018218,0.0000018225, +0.0000018231,0.0000018236,0.0000018239,0.0000018232,0.0000018217, +0.0000018198,0.0000018173,0.0000018138,0.0000018095,0.0000018051, +0.0000018008,0.0000017967,0.0000017926,0.0000017895,0.0000017859, +0.0000017843,0.0000017846,0.0000017862,0.0000017894,0.0000017940, +0.0000018000,0.0000018057,0.0000018111,0.0000018158,0.0000018198, +0.0000018230,0.0000018258,0.0000018282,0.0000018300,0.0000018307, +0.0000018310,0.0000018312,0.0000018304,0.0000018291,0.0000018277, +0.0000018264,0.0000018263,0.0000018271,0.0000018284,0.0000018297, +0.0000018303,0.0000018302,0.0000018299,0.0000018296,0.0000018296, +0.0000018302,0.0000018316,0.0000018344,0.0000018379,0.0000018415, +0.0000018452,0.0000018484,0.0000018510,0.0000018529,0.0000018547, +0.0000018564,0.0000018583,0.0000018610,0.0000018651,0.0000018700, +0.0000018748,0.0000018785,0.0000018803,0.0000018798,0.0000018778, +0.0000018739,0.0000018694,0.0000018650,0.0000018601,0.0000018553, +0.0000018514,0.0000018481,0.0000018459,0.0000018445,0.0000018435, +0.0000018423,0.0000018418,0.0000018414,0.0000018418,0.0000018429, +0.0000018444,0.0000018461,0.0000018470,0.0000018482,0.0000018487, +0.0000018486,0.0000018473,0.0000018450,0.0000018424,0.0000018401, +0.0000018381,0.0000018367,0.0000018358,0.0000018360,0.0000018366, +0.0000018369,0.0000018357,0.0000018327,0.0000018275,0.0000018202, +0.0000018116,0.0000018029,0.0000017955,0.0000017899,0.0000017854, +0.0000017853,0.0000017842,0.0000017853,0.0000017881,0.0000017929, +0.0000017990,0.0000018062,0.0000018142,0.0000018201,0.0000018222, +0.0000018232,0.0000018232,0.0000018230,0.0000018233,0.0000018240, +0.0000018250,0.0000018257,0.0000018259,0.0000018251,0.0000018234, +0.0000018213,0.0000018191,0.0000018170,0.0000018148,0.0000018127, +0.0000018103,0.0000018076,0.0000018048,0.0000018022,0.0000018000, +0.0000017987,0.0000017978,0.0000017968,0.0000017958,0.0000017948, +0.0000017939,0.0000017933,0.0000017936,0.0000017946,0.0000017962, +0.0000017979,0.0000017999,0.0000018024,0.0000018054,0.0000018090, +0.0000018125,0.0000018159,0.0000018194,0.0000018225,0.0000018253, +0.0000018277,0.0000018291,0.0000018298,0.0000018301,0.0000018299, +0.0000018291,0.0000018274,0.0000018250,0.0000018219,0.0000018179, +0.0000018133,0.0000018083,0.0000018029,0.0000017978,0.0000017939, +0.0000017911,0.0000017892,0.0000017878,0.0000017872,0.0000017875, +0.0000017884,0.0000017893,0.0000017899,0.0000017903,0.0000017906, +0.0000017909,0.0000017912,0.0000017917,0.0000017925,0.0000017937, +0.0000017951,0.0000017967,0.0000017982,0.0000017992,0.0000018000, +0.0000018000,0.0000017997,0.0000017994,0.0000018000,0.0000018022, +0.0000018057,0.0000018098,0.0000018135,0.0000018164,0.0000018182, +0.0000018196,0.0000018202,0.0000018195,0.0000018178,0.0000018153, +0.0000018118,0.0000018073,0.0000018020,0.0000017959,0.0000017890, +0.0000017815,0.0000017743,0.0000017680,0.0000017627,0.0000017583, +0.0000017552,0.0000017545,0.0000017547,0.0000017556,0.0000017585, +0.0000017619,0.0000017653,0.0000017686,0.0000017716,0.0000017735, +0.0000017743,0.0000017737,0.0000017717,0.0000017680,0.0000017635, +0.0000017597,0.0000017577,0.0000017572,0.0000017576,0.0000017590, +0.0000017611,0.0000017642,0.0000017679,0.0000017720,0.0000017762, +0.0000017800,0.0000017826,0.0000017836,0.0000017831,0.0000017807, +0.0000017771,0.0000017735,0.0000017692,0.0000017632,0.0000017562, +0.0000017503,0.0000017464,0.0000017447,0.0000017460,0.0000017504, +0.0000017565,0.0000017626,0.0000017679,0.0000017720,0.0000017757, +0.0000017781,0.0000017784,0.0000017767,0.0000017734,0.0000017693, +0.0000017656,0.0000017620,0.0000017574,0.0000017513,0.0000017440, +0.0000017375,0.0000017333,0.0000017321,0.0000017328,0.0000017343, +0.0000017366,0.0000017380,0.0000017387,0.0000017393,0.0000017391, +0.0000017390,0.0000017394,0.0000017410,0.0000017434,0.0000017462, +0.0000017490,0.0000017516,0.0000017536,0.0000017553,0.0000017568, +0.0000017580,0.0000017586,0.0000017589,0.0000017593,0.0000017599, +0.0000017608,0.0000017620,0.0000017633,0.0000017645,0.0000017654, +0.0000017660,0.0000017664,0.0000017666,0.0000017668,0.0000017669, +0.0000017670,0.0000017672,0.0000017672,0.0000017675,0.0000017673, +0.0000017671,0.0000017671,0.0000017672,0.0000017673,0.0000017677, +0.0000017688,0.0000017706,0.0000017724,0.0000017742,0.0000017757, +0.0000017766,0.0000017773,0.0000017778,0.0000017785,0.0000017793, +0.0000017797,0.0000017794,0.0000017786,0.0000017779,0.0000017770, +0.0000017765,0.0000017768,0.0000017784,0.0000017812,0.0000017853, +0.0000017903,0.0000017962,0.0000018022,0.0000018074,0.0000018111, +0.0000018137,0.0000018146,0.0000018154,0.0000018161,0.0000018180, +0.0000018207,0.0000018239,0.0000018266,0.0000018285,0.0000018298, +0.0000018325,0.0000018380,0.0000018459,0.0000018546,0.0000018614, +0.0000018655,0.0000018679,0.0000018679,0.0000018671,0.0000018663, +0.0000018660,0.0000018669,0.0000018686,0.0000018706,0.0000018725, +0.0000018738,0.0000018741,0.0000018735,0.0000018722,0.0000018704, +0.0000018685,0.0000018665,0.0000018654,0.0000018648,0.0000018647, +0.0000018657,0.0000018669,0.0000018679,0.0000018686,0.0000018691, +0.0000018696,0.0000018699,0.0000018697,0.0000018682,0.0000018652, +0.0000018611,0.0000018565,0.0000018521,0.0000018479,0.0000018439, +0.0000018409,0.0000018395,0.0000018392,0.0000018393,0.0000018404, +0.0000018426,0.0000018457,0.0000018487,0.0000018510,0.0000018530, +0.0000018551,0.0000018571,0.0000018586,0.0000018598,0.0000018606, +0.0000018607,0.0000018602,0.0000018590,0.0000018572,0.0000018546, +0.0000018511,0.0000018464,0.0000018408,0.0000018346,0.0000018293, +0.0000018248,0.0000018216,0.0000018215,0.0000018221,0.0000018250, +0.0000018298,0.0000018368,0.0000018441,0.0000018508,0.0000018555, +0.0000018596,0.0000018610,0.0000018624,0.0000018625,0.0000018628, +0.0000018629,0.0000018633,0.0000018638,0.0000018638,0.0000018633, +0.0000018618,0.0000018592,0.0000018556,0.0000018518,0.0000018480, +0.0000018452,0.0000018440,0.0000018443,0.0000018462,0.0000018496, +0.0000018542,0.0000018589,0.0000018629,0.0000018662,0.0000018689, +0.0000018703,0.0000018707,0.0000018701,0.0000018684,0.0000018662, +0.0000018638,0.0000018612,0.0000018581,0.0000018550,0.0000018530, +0.0000018512,0.0000018502,0.0000018493,0.0000018497,0.0000018510, +0.0000018521,0.0000018523,0.0000018517,0.0000018516,0.0000018515, +0.0000018528,0.0000018548,0.0000018564,0.0000018578,0.0000018592, +0.0000018596,0.0000018579,0.0000018542,0.0000018489,0.0000018424, +0.0000018349,0.0000018267,0.0000018194,0.0000018136,0.0000018092, +0.0000018060,0.0000018034,0.0000018002,0.0000017964,0.0000017925, +0.0000017895,0.0000017892,0.0000017907,0.0000017932,0.0000017962, +0.0000017988,0.0000018009,0.0000018022,0.0000018010,0.0000017989, +0.0000017969,0.0000017934,0.0000017899,0.0000017861,0.0000017822, +0.0000017780,0.0000017731,0.0000017678,0.0000017625,0.0000017586, +0.0000017550,0.0000017528,0.0000017517,0.0000017525,0.0000017545, +0.0000017570,0.0000017601,0.0000017625,0.0000017649,0.0000017665, +0.0000017670,0.0000017664,0.0000017642,0.0000017610,0.0000017573, +0.0000017564,0.0000017570,0.0000017587,0.0000017619,0.0000017648, +0.0000017681,0.0000017717,0.0000017747,0.0000017751,0.0000017743, +0.0000017729,0.0000017707,0.0000017674,0.0000017639,0.0000017601, +0.0000017552,0.0000017513,0.0000017502,0.0000017512,0.0000017543, +0.0000017583,0.0000017626,0.0000017656,0.0000017672,0.0000017679, +0.0000017678,0.0000017665,0.0000017644,0.0000017619,0.0000017600, +0.0000017587,0.0000017581,0.0000017586,0.0000017596,0.0000017595, +0.0000017596,0.0000017596,0.0000017584,0.0000017570,0.0000017576, +0.0000017587,0.0000017615,0.0000017640,0.0000017653,0.0000017658, +0.0000017655,0.0000017649,0.0000017645,0.0000017638,0.0000017630, +0.0000017619,0.0000017606,0.0000017612,0.0000017630,0.0000017654, +0.0000017679,0.0000017691,0.0000017692,0.0000017696,0.0000017680, +0.0000017663,0.0000017648,0.0000017612,0.0000017580,0.0000017551, +0.0000017532,0.0000017523,0.0000017523,0.0000017532,0.0000017546, +0.0000017555,0.0000017555,0.0000017555,0.0000017563,0.0000017574, +0.0000017584,0.0000017585,0.0000017591,0.0000017596,0.0000017593, +0.0000017588,0.0000017590,0.0000017593,0.0000017609,0.0000017627, +0.0000017635,0.0000017636,0.0000017631,0.0000017624,0.0000017619, +0.0000017614,0.0000017614,0.0000017614,0.0000017608,0.0000017604, +0.0000017601,0.0000017606,0.0000017611,0.0000017627,0.0000017644, +0.0000017659,0.0000017673,0.0000017673,0.0000017672,0.0000017685, +0.0000017702,0.0000017714,0.0000017736,0.0000017755,0.0000017775, +0.0000017798,0.0000017817,0.0000017845,0.0000017848,0.0000017839, +0.0000017828,0.0000017805,0.0000017777,0.0000017742,0.0000017709, +0.0000017688,0.0000017668,0.0000017642,0.0000017617,0.0000017609, +0.0000017603,0.0000017581,0.0000017584,0.0000017598,0.0000017627, +0.0000017677,0.0000017733,0.0000017802,0.0000017883,0.0000017979, +0.0000018098,0.0000018221,0.0000018339,0.0000018452,0.0000018548, +0.0000018626,0.0000018686,0.0000018728,0.0000018768,0.0000018796, +0.0000018818,0.0000018839,0.0000018858,0.0000018863,0.0000018849, +0.0000018819,0.0000018778,0.0000018731,0.0000018697,0.0000018682, +0.0000018670,0.0000018647,0.0000018611,0.0000018572,0.0000018541, +0.0000018522,0.0000018515,0.0000018512,0.0000018497,0.0000018471, +0.0000018444,0.0000018421,0.0000018407,0.0000018404,0.0000018409, +0.0000018413,0.0000018413,0.0000018414,0.0000018419,0.0000018426, +0.0000018437,0.0000018453,0.0000018475,0.0000018509,0.0000018549, +0.0000018587,0.0000018612,0.0000018620,0.0000018615,0.0000018607, +0.0000018604,0.0000018619,0.0000018647,0.0000018682,0.0000018718, +0.0000018748,0.0000018774,0.0000018801,0.0000018835,0.0000018873, +0.0000018899,0.0000018910,0.0000018901,0.0000018893,0.0000018888, +0.0000018895,0.0000018918,0.0000018945,0.0000018957,0.0000018943, +0.0000018897,0.0000018829,0.0000018761,0.0000018715,0.0000018694, +0.0000018687,0.0000018679,0.0000018674,0.0000018684,0.0000018690, +0.0000018694,0.0000018703,0.0000018708,0.0000018703,0.0000018693, +0.0000018681,0.0000018668,0.0000018657,0.0000018657,0.0000018680, +0.0000018737,0.0000018822,0.0000018913,0.0000018989,0.0000019034, +0.0000019043,0.0000019000,0.0000018922,0.0000018847,0.0000018830, +0.0000018869,0.0000018907,0.0000018887,0.0000018818,0.0000018759, +0.0000018722,0.0000018660,0.0000018569,0.0000018513,0.0000018523, +0.0000018582,0.0000018628,0.0000018617,0.0000018558,0.0000018480, +0.0000018407,0.0000018354,0.0000018328,0.0000018321,0.0000018307, +0.0000018278,0.0000018255,0.0000018248,0.0000018236,0.0000018214, +0.0000018198,0.0000018198,0.0000018205,0.0000018197,0.0000018163, +0.0000018122,0.0000018103,0.0000018110,0.0000018131,0.0000018140, +0.0000018135,0.0000018135,0.0000018147,0.0000018165,0.0000018184, +0.0000018203,0.0000018218,0.0000018225,0.0000018217,0.0000018195, +0.0000018169,0.0000018143,0.0000018109,0.0000018065,0.0000018030, +0.0000018014,0.0000018008,0.0000018021,0.0000018049,0.0000018075, +0.0000018087,0.0000018089,0.0000018093,0.0000018113,0.0000018158, +0.0000018230,0.0000018321,0.0000018413,0.0000018487,0.0000018541, +0.0000018576,0.0000018596,0.0000018603,0.0000018607,0.0000018616, +0.0000018630,0.0000018645,0.0000018645,0.0000018637,0.0000018631, +0.0000018627,0.0000018625,0.0000018629,0.0000018639,0.0000018651, +0.0000018657,0.0000018640,0.0000018591,0.0000018515,0.0000018439, +0.0000018384,0.0000018353,0.0000018342,0.0000018341,0.0000018338, +0.0000018333,0.0000018327,0.0000018314,0.0000018296,0.0000018279, +0.0000018261,0.0000018230,0.0000018184,0.0000018131,0.0000018076, +0.0000018038,0.0000018027,0.0000018039,0.0000018059,0.0000018070, +0.0000018074,0.0000018074,0.0000018068,0.0000018057,0.0000018051, +0.0000018046,0.0000018037,0.0000018022,0.0000018006,0.0000017995, +0.0000017981,0.0000017960,0.0000017955,0.0000017965,0.0000017993, +0.0000018035,0.0000018068,0.0000018072,0.0000018018,0.0000017899, +0.0000017770,0.0000017705,0.0000017706,0.0000017721,0.0000017738, +0.0000017757,0.0000017793,0.0000017842,0.0000017893,0.0000017923, +0.0000017910,0.0000017861,0.0000017797,0.0000017725,0.0000017644, +0.0000017571,0.0000017529,0.0000017523,0.0000017539,0.0000017563, +0.0000017587,0.0000017617,0.0000017651,0.0000017684,0.0000017711, +0.0000017731,0.0000017748,0.0000017766,0.0000017783,0.0000017786, +0.0000017779,0.0000017765,0.0000017743,0.0000017723,0.0000017718, +0.0000017727,0.0000017749,0.0000017792,0.0000017847,0.0000017898, +0.0000017957,0.0000018027,0.0000018090,0.0000018149,0.0000018184, +0.0000018193,0.0000018186,0.0000018159,0.0000018129,0.0000018100, +0.0000018067,0.0000018037,0.0000018013,0.0000017998,0.0000017989, +0.0000017984,0.0000017980,0.0000017974,0.0000017958,0.0000017944, +0.0000017935,0.0000017933,0.0000017933,0.0000017943,0.0000017965, +0.0000017990,0.0000018011,0.0000018023,0.0000018028,0.0000018033, +0.0000018037,0.0000018048,0.0000018060,0.0000018059,0.0000018051, +0.0000018046,0.0000018042,0.0000018038,0.0000018031,0.0000018023, +0.0000018013,0.0000018007,0.0000018003,0.0000017987,0.0000017960, +0.0000017946,0.0000017946,0.0000017940,0.0000017930,0.0000017934, +0.0000017949,0.0000017960,0.0000017962,0.0000017956,0.0000017937, +0.0000017910,0.0000017880,0.0000017853,0.0000017828,0.0000017821, +0.0000017825,0.0000018140,0.0000018709,0.0000018852,0.0000018706, +0.0000018606,0.0000018624,0.0000018691,0.0000018729,0.0000018757, +0.0000018841,0.0000018825,0.0000018429,0.0000017944,0.0000017759, +0.0000017745,0.0000017747,0.0000017757,0.0000017781,0.0000017808, +0.0000017828,0.0000017840,0.0000017839,0.0000017819,0.0000017783, +0.0000017745,0.0000017712,0.0000017692,0.0000017673,0.0000017646, +0.0000017614,0.0000017603,0.0000017614,0.0000017651,0.0000017694, +0.0000017764,0.0000017899,0.0000018115,0.0000018320,0.0000018342, +0.0000018129,0.0000017864,0.0000017782,0.0000017783,0.0000017783, +0.0000017787,0.0000017804,0.0000017826,0.0000017844,0.0000017860, +0.0000017873,0.0000017874,0.0000017856,0.0000017823,0.0000017782, +0.0000017750,0.0000017740,0.0000017730,0.0000017681,0.0000017603, +0.0000017556,0.0000017561,0.0000017616,0.0000017702,0.0000017777, +0.0000017829,0.0000017863,0.0000017887,0.0000017904,0.0000017908, +0.0000017901,0.0000017879,0.0000017854,0.0000017841,0.0000017837, +0.0000017828,0.0000017797,0.0000017771,0.0000017774,0.0000017787, +0.0000017778,0.0000017762,0.0000017764,0.0000017775,0.0000017788, +0.0000017801,0.0000017814,0.0000017824,0.0000017830,0.0000017837, +0.0000017855,0.0000017887,0.0000017931,0.0000017971,0.0000017989, +0.0000017990,0.0000017971,0.0000017924,0.0000017855,0.0000017783, +0.0000017729,0.0000017703,0.0000017699,0.0000017716,0.0000017739, +0.0000017753,0.0000017753,0.0000017748,0.0000017740,0.0000017731, +0.0000017719,0.0000017705,0.0000017687,0.0000017660,0.0000017627, +0.0000017597,0.0000017577,0.0000017563,0.0000017550,0.0000017538, +0.0000017532,0.0000017531,0.0000017537,0.0000017561,0.0000017601, +0.0000017643,0.0000017676,0.0000017697,0.0000017712,0.0000017723, +0.0000017734,0.0000017755,0.0000017787,0.0000017823,0.0000017863, +0.0000017907,0.0000017949,0.0000017987,0.0000018021,0.0000018050, +0.0000018068,0.0000018075,0.0000018075,0.0000018065,0.0000018050, +0.0000018027,0.0000017998,0.0000017967,0.0000017935,0.0000017899, +0.0000017858,0.0000017807,0.0000017745,0.0000017677,0.0000017617, +0.0000017596,0.0000017612,0.0000017652,0.0000017680,0.0000017689, +0.0000017686,0.0000017670,0.0000017651,0.0000017556,0.0000017510, +0.0000017508,0.0000017561,0.0000017658,0.0000017773,0.0000017881, +0.0000017965,0.0000018029,0.0000018076,0.0000018097,0.0000018114, +0.0000018128,0.0000018137,0.0000018143,0.0000018151,0.0000018162, +0.0000018173,0.0000018183,0.0000018190,0.0000018195,0.0000018201, +0.0000018208,0.0000018218,0.0000018229,0.0000018242,0.0000018255, +0.0000018270,0.0000018288,0.0000018304,0.0000018310,0.0000018301, +0.0000018280,0.0000018246,0.0000018202,0.0000018151,0.0000018103, +0.0000018057,0.0000018014,0.0000017971,0.0000017931,0.0000017898, +0.0000017873,0.0000017873,0.0000017886,0.0000017924,0.0000017968, +0.0000018012,0.0000018055,0.0000018100,0.0000018143,0.0000018181, +0.0000018213,0.0000018237,0.0000018257,0.0000018270,0.0000018275, +0.0000018278,0.0000018277,0.0000018274,0.0000018279,0.0000018302, +0.0000018319,0.0000018336,0.0000018339,0.0000018332,0.0000018319, +0.0000018303,0.0000018290,0.0000018290,0.0000018303,0.0000018325, +0.0000018351,0.0000018381,0.0000018415,0.0000018448,0.0000018476, +0.0000018499,0.0000018520,0.0000018538,0.0000018555,0.0000018570, +0.0000018589,0.0000018618,0.0000018659,0.0000018706,0.0000018747, +0.0000018778,0.0000018790,0.0000018780,0.0000018771,0.0000018751, +0.0000018720,0.0000018677,0.0000018637,0.0000018592,0.0000018548, +0.0000018512,0.0000018472,0.0000018443,0.0000018415,0.0000018395, +0.0000018386,0.0000018380,0.0000018385,0.0000018400,0.0000018421, +0.0000018448,0.0000018475,0.0000018503,0.0000018515,0.0000018521, +0.0000018518,0.0000018506,0.0000018486,0.0000018461,0.0000018437, +0.0000018419,0.0000018405,0.0000018396,0.0000018391,0.0000018390, +0.0000018380,0.0000018355,0.0000018310,0.0000018249,0.0000018178, +0.0000018101,0.0000018023,0.0000017954,0.0000017900,0.0000017860, +0.0000017852,0.0000017833,0.0000017843,0.0000017876,0.0000017928, +0.0000017997,0.0000018082,0.0000018169,0.0000018223,0.0000018234, +0.0000018237,0.0000018238,0.0000018237,0.0000018238,0.0000018241, +0.0000018245,0.0000018247,0.0000018245,0.0000018241,0.0000018235, +0.0000018229,0.0000018219,0.0000018207,0.0000018189,0.0000018166, +0.0000018141,0.0000018117,0.0000018096,0.0000018076,0.0000018056, +0.0000018037,0.0000018016,0.0000017995,0.0000017973,0.0000017954, +0.0000017951,0.0000017956,0.0000017964,0.0000017978,0.0000017999, +0.0000018026,0.0000018059,0.0000018097,0.0000018138,0.0000018179, +0.0000018219,0.0000018257,0.0000018289,0.0000018308,0.0000018324, +0.0000018337,0.0000018345,0.0000018344,0.0000018333,0.0000018312, +0.0000018282,0.0000018245,0.0000018200,0.0000018150,0.0000018093, +0.0000018035,0.0000017982,0.0000017940,0.0000017908,0.0000017887, +0.0000017878,0.0000017881,0.0000017890,0.0000017901,0.0000017914, +0.0000017924,0.0000017932,0.0000017938,0.0000017942,0.0000017946, +0.0000017948,0.0000017950,0.0000017954,0.0000017957,0.0000017956, +0.0000017952,0.0000017943,0.0000017931,0.0000017919,0.0000017912, +0.0000017918,0.0000017942,0.0000017979,0.0000018021,0.0000018061, +0.0000018097,0.0000018129,0.0000018156,0.0000018174,0.0000018180, +0.0000018176,0.0000018163,0.0000018141,0.0000018111,0.0000018075, +0.0000018032,0.0000017983,0.0000017935,0.0000017892,0.0000017857, +0.0000017827,0.0000017795,0.0000017758,0.0000017721,0.0000017684, +0.0000017654,0.0000017634,0.0000017631,0.0000017630,0.0000017628, +0.0000017635,0.0000017645,0.0000017666,0.0000017686,0.0000017700, +0.0000017701,0.0000017690,0.0000017670,0.0000017637,0.0000017606, +0.0000017594,0.0000017598,0.0000017614,0.0000017632,0.0000017653, +0.0000017678,0.0000017702,0.0000017725,0.0000017749,0.0000017775, +0.0000017800,0.0000017817,0.0000017834,0.0000017846,0.0000017842, +0.0000017818,0.0000017774,0.0000017712,0.0000017630,0.0000017539, +0.0000017464,0.0000017419,0.0000017409,0.0000017430,0.0000017475, +0.0000017537,0.0000017609,0.0000017686,0.0000017758,0.0000017814, +0.0000017845,0.0000017847,0.0000017814,0.0000017769,0.0000017711, +0.0000017659,0.0000017611,0.0000017562,0.0000017515,0.0000017476, +0.0000017441,0.0000017417,0.0000017403,0.0000017395,0.0000017387, +0.0000017373,0.0000017364,0.0000017369,0.0000017389,0.0000017412, +0.0000017435,0.0000017462,0.0000017487,0.0000017506,0.0000017523, +0.0000017532,0.0000017542,0.0000017544,0.0000017542,0.0000017539, +0.0000017537,0.0000017539,0.0000017546,0.0000017555,0.0000017567, +0.0000017582,0.0000017594,0.0000017605,0.0000017615,0.0000017626, +0.0000017636,0.0000017648,0.0000017665,0.0000017671,0.0000017681, +0.0000017691,0.0000017700,0.0000017710,0.0000017721,0.0000017729, +0.0000017736,0.0000017746,0.0000017762,0.0000017782,0.0000017802, +0.0000017824,0.0000017843,0.0000017857,0.0000017866,0.0000017865, +0.0000017857,0.0000017841,0.0000017819,0.0000017798,0.0000017787, +0.0000017787,0.0000017805,0.0000017830,0.0000017860,0.0000017898, +0.0000017947,0.0000018003,0.0000018055,0.0000018091,0.0000018111, +0.0000018120,0.0000018123,0.0000018128,0.0000018140,0.0000018166, +0.0000018202,0.0000018235,0.0000018259,0.0000018280,0.0000018310, +0.0000018362,0.0000018432,0.0000018507,0.0000018566,0.0000018601, +0.0000018618,0.0000018608,0.0000018588,0.0000018569,0.0000018559, +0.0000018560,0.0000018572,0.0000018587,0.0000018597,0.0000018600, +0.0000018599,0.0000018591,0.0000018575,0.0000018552,0.0000018524, +0.0000018496,0.0000018475,0.0000018466,0.0000018468,0.0000018477, +0.0000018487,0.0000018506,0.0000018527,0.0000018548,0.0000018568, +0.0000018584,0.0000018595,0.0000018601,0.0000018602,0.0000018590, +0.0000018564,0.0000018519,0.0000018471,0.0000018434,0.0000018407, +0.0000018381,0.0000018360,0.0000018351,0.0000018351,0.0000018357, +0.0000018369,0.0000018388,0.0000018413,0.0000018440,0.0000018467, +0.0000018498,0.0000018533,0.0000018569,0.0000018598,0.0000018620, +0.0000018640,0.0000018653,0.0000018658,0.0000018656,0.0000018652, +0.0000018642,0.0000018623,0.0000018591,0.0000018547,0.0000018494, +0.0000018436,0.0000018375,0.0000018318,0.0000018269,0.0000018236, +0.0000018216,0.0000018223,0.0000018245,0.0000018297,0.0000018365, +0.0000018443,0.0000018517,0.0000018578,0.0000018616,0.0000018642, +0.0000018657,0.0000018656,0.0000018654,0.0000018646,0.0000018645, +0.0000018647,0.0000018648,0.0000018643,0.0000018627,0.0000018600, +0.0000018558,0.0000018507,0.0000018469,0.0000018443,0.0000018432, +0.0000018449,0.0000018476,0.0000018521,0.0000018572,0.0000018627, +0.0000018675,0.0000018708,0.0000018726,0.0000018731,0.0000018723, +0.0000018702,0.0000018680,0.0000018659,0.0000018640,0.0000018633, +0.0000018630,0.0000018622,0.0000018609,0.0000018597,0.0000018585, +0.0000018573,0.0000018559,0.0000018538,0.0000018511,0.0000018488, +0.0000018479,0.0000018493,0.0000018521,0.0000018551,0.0000018579, +0.0000018605,0.0000018623,0.0000018630,0.0000018623,0.0000018605, +0.0000018586,0.0000018557,0.0000018510,0.0000018449,0.0000018374, +0.0000018283,0.0000018190,0.0000018115,0.0000018062,0.0000018018, +0.0000017989,0.0000017965,0.0000017941,0.0000017927,0.0000017928, +0.0000017949,0.0000017984,0.0000018029,0.0000018067,0.0000018081, +0.0000018079,0.0000018058,0.0000018018,0.0000017977,0.0000017932, +0.0000017895,0.0000017864,0.0000017834,0.0000017797,0.0000017755, +0.0000017724,0.0000017687,0.0000017650,0.0000017622,0.0000017604, +0.0000017594,0.0000017599,0.0000017607,0.0000017616,0.0000017639, +0.0000017662,0.0000017674,0.0000017683,0.0000017681,0.0000017666, +0.0000017649,0.0000017656,0.0000017665,0.0000017677,0.0000017694, +0.0000017716,0.0000017736,0.0000017761,0.0000017788,0.0000017791, +0.0000017776,0.0000017751,0.0000017732,0.0000017704,0.0000017668, +0.0000017630,0.0000017585,0.0000017550,0.0000017531,0.0000017537, +0.0000017561,0.0000017600,0.0000017645,0.0000017671,0.0000017686, +0.0000017695,0.0000017701,0.0000017692,0.0000017677,0.0000017658, +0.0000017639,0.0000017626,0.0000017621,0.0000017629,0.0000017645, +0.0000017647,0.0000017663,0.0000017667,0.0000017659,0.0000017656, +0.0000017661,0.0000017669,0.0000017690,0.0000017704,0.0000017705, +0.0000017705,0.0000017702,0.0000017694,0.0000017683,0.0000017679, +0.0000017668,0.0000017651,0.0000017656,0.0000017672,0.0000017693, +0.0000017717,0.0000017730,0.0000017733,0.0000017741,0.0000017732, +0.0000017722,0.0000017706,0.0000017677,0.0000017646,0.0000017612, +0.0000017581,0.0000017562,0.0000017549,0.0000017544,0.0000017551, +0.0000017568,0.0000017579,0.0000017580,0.0000017573,0.0000017568, +0.0000017568,0.0000017569,0.0000017576,0.0000017586,0.0000017593, +0.0000017595,0.0000017593,0.0000017597,0.0000017609,0.0000017628, +0.0000017649,0.0000017665,0.0000017673,0.0000017672,0.0000017677, +0.0000017668,0.0000017662,0.0000017661,0.0000017642,0.0000017615, +0.0000017591,0.0000017571,0.0000017558,0.0000017568,0.0000017587, +0.0000017616,0.0000017645,0.0000017665,0.0000017678,0.0000017705, +0.0000017724,0.0000017733,0.0000017746,0.0000017757,0.0000017769, +0.0000017783,0.0000017811,0.0000017845,0.0000017866,0.0000017881, +0.0000017895,0.0000017901,0.0000017895,0.0000017874,0.0000017841, +0.0000017810,0.0000017766,0.0000017719,0.0000017668,0.0000017636, +0.0000017608,0.0000017580,0.0000017571,0.0000017569,0.0000017570, +0.0000017563,0.0000017553,0.0000017548,0.0000017547,0.0000017568, +0.0000017626,0.0000017704,0.0000017789,0.0000017883,0.0000017970, +0.0000018049,0.0000018113,0.0000018160,0.0000018205,0.0000018245, +0.0000018286,0.0000018331,0.0000018388,0.0000018446,0.0000018489, +0.0000018515,0.0000018519,0.0000018507,0.0000018502,0.0000018509, +0.0000018523,0.0000018528,0.0000018514,0.0000018486,0.0000018447, +0.0000018411,0.0000018389,0.0000018376,0.0000018358,0.0000018328, +0.0000018290,0.0000018249,0.0000018212,0.0000018188,0.0000018176, +0.0000018171,0.0000018170,0.0000018172,0.0000018176,0.0000018184, +0.0000018194,0.0000018203,0.0000018218,0.0000018252,0.0000018300, +0.0000018352,0.0000018399,0.0000018427,0.0000018436,0.0000018428, +0.0000018415,0.0000018414,0.0000018429,0.0000018468,0.0000018526, +0.0000018592,0.0000018654,0.0000018702,0.0000018739,0.0000018769, +0.0000018800,0.0000018826,0.0000018840,0.0000018849,0.0000018858, +0.0000018871,0.0000018893,0.0000018924,0.0000018957,0.0000018972, +0.0000018970,0.0000018942,0.0000018892,0.0000018831,0.0000018783, +0.0000018761,0.0000018762,0.0000018774,0.0000018784,0.0000018769, +0.0000018735,0.0000018709,0.0000018688,0.0000018669,0.0000018658, +0.0000018655,0.0000018652,0.0000018646,0.0000018636,0.0000018626, +0.0000018624,0.0000018646,0.0000018701,0.0000018787,0.0000018884, +0.0000018965,0.0000019013,0.0000019021,0.0000018976,0.0000018901, +0.0000018847,0.0000018848,0.0000018884,0.0000018899,0.0000018854, +0.0000018780,0.0000018730,0.0000018690,0.0000018619,0.0000018544, +0.0000018525,0.0000018567,0.0000018613,0.0000018615,0.0000018571, +0.0000018511,0.0000018459,0.0000018419,0.0000018377,0.0000018326, +0.0000018273,0.0000018238,0.0000018225,0.0000018220,0.0000018207, +0.0000018194,0.0000018193,0.0000018202,0.0000018202,0.0000018179, +0.0000018149,0.0000018131,0.0000018134,0.0000018150,0.0000018160, +0.0000018159,0.0000018159,0.0000018163,0.0000018176,0.0000018189, +0.0000018202,0.0000018216,0.0000018225,0.0000018220,0.0000018199, +0.0000018173,0.0000018150,0.0000018123,0.0000018088,0.0000018055, +0.0000018029,0.0000018014,0.0000018016,0.0000018037,0.0000018064, +0.0000018082,0.0000018093,0.0000018110,0.0000018148,0.0000018219, +0.0000018313,0.0000018406,0.0000018479,0.0000018528,0.0000018558, +0.0000018570,0.0000018573,0.0000018576,0.0000018588,0.0000018614, +0.0000018646,0.0000018673,0.0000018684,0.0000018679,0.0000018665, +0.0000018636,0.0000018608,0.0000018596,0.0000018602,0.0000018625, +0.0000018639,0.0000018629,0.0000018580,0.0000018502,0.0000018424, +0.0000018368,0.0000018342,0.0000018339,0.0000018338,0.0000018333, +0.0000018328,0.0000018320,0.0000018307,0.0000018293,0.0000018282, +0.0000018268,0.0000018241,0.0000018192,0.0000018122,0.0000018046, +0.0000017986,0.0000017962,0.0000017960,0.0000017971,0.0000017995, +0.0000018028,0.0000018059,0.0000018076,0.0000018080,0.0000018076, +0.0000018073,0.0000018073,0.0000018069,0.0000018051,0.0000018025, +0.0000018002,0.0000017990,0.0000017989,0.0000017991,0.0000017996, +0.0000018009,0.0000018042,0.0000018074,0.0000018070,0.0000018003, +0.0000017887,0.0000017783,0.0000017737,0.0000017744,0.0000017767, +0.0000017788,0.0000017806,0.0000017826,0.0000017849,0.0000017865, +0.0000017858,0.0000017826,0.0000017778,0.0000017715,0.0000017648, +0.0000017592,0.0000017557,0.0000017538,0.0000017527,0.0000017530, +0.0000017554,0.0000017584,0.0000017611,0.0000017628,0.0000017640, +0.0000017657,0.0000017683,0.0000017712,0.0000017732,0.0000017741, +0.0000017737,0.0000017714,0.0000017683,0.0000017660,0.0000017647, +0.0000017644,0.0000017660,0.0000017692,0.0000017718,0.0000017747, +0.0000017798,0.0000017861,0.0000017933,0.0000018010,0.0000018074, +0.0000018133,0.0000018162,0.0000018180,0.0000018176,0.0000018150, +0.0000018105,0.0000018055,0.0000018011,0.0000017985,0.0000017964, +0.0000017949,0.0000017937,0.0000017918,0.0000017901,0.0000017882, +0.0000017866,0.0000017853,0.0000017843,0.0000017840,0.0000017841, +0.0000017850,0.0000017856,0.0000017862,0.0000017868,0.0000017881, +0.0000017909,0.0000017943,0.0000017966,0.0000017980,0.0000017989, +0.0000017995,0.0000018002,0.0000018010,0.0000018015,0.0000018015, +0.0000018018,0.0000018016,0.0000017995,0.0000017969,0.0000017963, +0.0000017962,0.0000017948,0.0000017936,0.0000017938,0.0000017947, +0.0000017955,0.0000017956,0.0000017939,0.0000017914,0.0000017888, +0.0000017863,0.0000017842,0.0000017828,0.0000017824,0.0000017929, +0.0000018466,0.0000018853,0.0000018798,0.0000018641,0.0000018602, +0.0000018649,0.0000018704,0.0000018743,0.0000018824,0.0000018815, +0.0000018426,0.0000017947,0.0000017775,0.0000017761,0.0000017774, +0.0000017814,0.0000017869,0.0000017912,0.0000017930,0.0000017933, +0.0000017927,0.0000017914,0.0000017907,0.0000017895,0.0000017857, +0.0000017808,0.0000017759,0.0000017714,0.0000017673,0.0000017632, +0.0000017599,0.0000017584,0.0000017594,0.0000017632,0.0000017675, +0.0000017719,0.0000017823,0.0000018073,0.0000018341,0.0000018330, +0.0000018009,0.0000017798,0.0000017781,0.0000017782,0.0000017785, +0.0000017798,0.0000017820,0.0000017848,0.0000017878,0.0000017916, +0.0000017952,0.0000017966,0.0000017945,0.0000017886,0.0000017812, +0.0000017752,0.0000017729,0.0000017723,0.0000017698,0.0000017631, +0.0000017545,0.0000017512,0.0000017528,0.0000017602,0.0000017698, +0.0000017790,0.0000017857,0.0000017895,0.0000017909,0.0000017912, +0.0000017900,0.0000017873,0.0000017843,0.0000017821,0.0000017810, +0.0000017789,0.0000017764,0.0000017760,0.0000017766,0.0000017762, +0.0000017750,0.0000017727,0.0000017693,0.0000017669,0.0000017671, +0.0000017698,0.0000017740,0.0000017784,0.0000017815,0.0000017828, +0.0000017831,0.0000017841,0.0000017870,0.0000017915,0.0000017955, +0.0000017968,0.0000017959,0.0000017916,0.0000017848,0.0000017779, +0.0000017727,0.0000017703,0.0000017702,0.0000017720,0.0000017746, +0.0000017761,0.0000017761,0.0000017749,0.0000017730,0.0000017711, +0.0000017692,0.0000017673,0.0000017650,0.0000017622,0.0000017595, +0.0000017576,0.0000017565,0.0000017555,0.0000017541,0.0000017528, +0.0000017516,0.0000017514,0.0000017520,0.0000017539,0.0000017567, +0.0000017601,0.0000017636,0.0000017666,0.0000017690,0.0000017722, +0.0000017760,0.0000017801,0.0000017839,0.0000017874,0.0000017906, +0.0000017931,0.0000017948,0.0000017957,0.0000017959,0.0000017952, +0.0000017942,0.0000017926,0.0000017905,0.0000017882,0.0000017860, +0.0000017842,0.0000017820,0.0000017792,0.0000017754,0.0000017705, +0.0000017647,0.0000017602,0.0000017590,0.0000017613,0.0000017661, +0.0000017694,0.0000017697,0.0000017676,0.0000017647,0.0000017626, +0.0000017601,0.0000017477,0.0000017505,0.0000017605,0.0000017741, +0.0000017871,0.0000017968,0.0000018030,0.0000018053,0.0000018062, +0.0000018075,0.0000018092,0.0000018110,0.0000018126,0.0000018140, +0.0000018153,0.0000018165,0.0000018179,0.0000018192,0.0000018205, +0.0000018218,0.0000018229,0.0000018238,0.0000018249,0.0000018259, +0.0000018267,0.0000018272,0.0000018278,0.0000018293,0.0000018317, +0.0000018344,0.0000018366,0.0000018377,0.0000018376,0.0000018363, +0.0000018336,0.0000018302,0.0000018265,0.0000018230,0.0000018196, +0.0000018160,0.0000018115,0.0000018065,0.0000018016,0.0000017971, +0.0000017939,0.0000017930,0.0000017941,0.0000017949,0.0000017966, +0.0000017990,0.0000018017,0.0000018051,0.0000018077,0.0000018102, +0.0000018126,0.0000018147,0.0000018167,0.0000018185,0.0000018199, +0.0000018216,0.0000018247,0.0000018280,0.0000018311,0.0000018339, +0.0000018349,0.0000018347,0.0000018337,0.0000018316,0.0000018298, +0.0000018296,0.0000018307,0.0000018324,0.0000018343,0.0000018366, +0.0000018394,0.0000018421,0.0000018446,0.0000018468,0.0000018488, +0.0000018506,0.0000018528,0.0000018546,0.0000018559,0.0000018572, +0.0000018593,0.0000018626,0.0000018667,0.0000018707,0.0000018739, +0.0000018759,0.0000018766,0.0000018777,0.0000018764,0.0000018758, +0.0000018745,0.0000018721,0.0000018686,0.0000018647,0.0000018603, +0.0000018560,0.0000018519,0.0000018479,0.0000018443,0.0000018413, +0.0000018392,0.0000018382,0.0000018396,0.0000018404,0.0000018428, +0.0000018458,0.0000018482,0.0000018502,0.0000018519,0.0000018526, +0.0000018528,0.0000018526,0.0000018519,0.0000018507,0.0000018491, +0.0000018475,0.0000018460,0.0000018442,0.0000018422,0.0000018402, +0.0000018383,0.0000018363,0.0000018336,0.0000018300,0.0000018250, +0.0000018186,0.0000018113,0.0000018038,0.0000017970,0.0000017913, +0.0000017867,0.0000017857,0.0000017833,0.0000017840,0.0000017881, +0.0000017939,0.0000018009,0.0000018087,0.0000018164,0.0000018222, +0.0000018239,0.0000018241,0.0000018242,0.0000018239,0.0000018236, +0.0000018238,0.0000018243,0.0000018254,0.0000018266,0.0000018277, +0.0000018284,0.0000018283,0.0000018279,0.0000018266,0.0000018249, +0.0000018230,0.0000018209,0.0000018189,0.0000018171,0.0000018151, +0.0000018127,0.0000018099,0.0000018068,0.0000018038,0.0000018015, +0.0000018000,0.0000017996,0.0000018006,0.0000018021,0.0000018039, +0.0000018063,0.0000018095,0.0000018132,0.0000018171,0.0000018211, +0.0000018248,0.0000018280,0.0000018305,0.0000018326,0.0000018338, +0.0000018339,0.0000018331,0.0000018313,0.0000018284,0.0000018246, +0.0000018200,0.0000018149,0.0000018094,0.0000018036,0.0000017981, +0.0000017934,0.0000017897,0.0000017871,0.0000017858,0.0000017860, +0.0000017872,0.0000017888,0.0000017904,0.0000017919,0.0000017931, +0.0000017940,0.0000017948,0.0000017954,0.0000017954,0.0000017949, +0.0000017944,0.0000017940,0.0000017936,0.0000017930,0.0000017921, +0.0000017907,0.0000017894,0.0000017891,0.0000017901,0.0000017931, +0.0000017971,0.0000018014,0.0000018057,0.0000018096,0.0000018130, +0.0000018159,0.0000018180,0.0000018192,0.0000018196,0.0000018192, +0.0000018179,0.0000018160,0.0000018135,0.0000018098,0.0000018056, +0.0000018013,0.0000017971,0.0000017936,0.0000017911,0.0000017891, +0.0000017869,0.0000017847,0.0000017829,0.0000017817,0.0000017809, +0.0000017796,0.0000017769,0.0000017732,0.0000017693,0.0000017664, +0.0000017647,0.0000017621,0.0000017602,0.0000017593,0.0000017596, +0.0000017616,0.0000017636,0.0000017654,0.0000017669,0.0000017672, +0.0000017667,0.0000017658,0.0000017657,0.0000017666,0.0000017679, +0.0000017697,0.0000017715,0.0000017730,0.0000017743,0.0000017757, +0.0000017785,0.0000017821,0.0000017847,0.0000017860,0.0000017863, +0.0000017849,0.0000017813,0.0000017752,0.0000017668,0.0000017571, +0.0000017480,0.0000017419,0.0000017389,0.0000017397,0.0000017435, +0.0000017486,0.0000017557,0.0000017640,0.0000017723,0.0000017790, +0.0000017830,0.0000017845,0.0000017838,0.0000017794,0.0000017753, +0.0000017704,0.0000017666,0.0000017640,0.0000017618,0.0000017596, +0.0000017569,0.0000017535,0.0000017496,0.0000017466,0.0000017460, +0.0000017469,0.0000017484,0.0000017502,0.0000017518,0.0000017530, +0.0000017538,0.0000017541,0.0000017544,0.0000017546,0.0000017546, +0.0000017543,0.0000017539,0.0000017536,0.0000017536,0.0000017541, +0.0000017547,0.0000017558,0.0000017573,0.0000017587,0.0000017603, +0.0000017619,0.0000017635,0.0000017651,0.0000017670,0.0000017693, +0.0000017713,0.0000017734,0.0000017754,0.0000017771,0.0000017788, +0.0000017803,0.0000017814,0.0000017821,0.0000017830,0.0000017844, +0.0000017863,0.0000017884,0.0000017902,0.0000017913,0.0000017915, +0.0000017905,0.0000017883,0.0000017860,0.0000017838,0.0000017823, +0.0000017817,0.0000017821,0.0000017840,0.0000017871,0.0000017907, +0.0000017947,0.0000017993,0.0000018038,0.0000018073,0.0000018093, +0.0000018099,0.0000018099,0.0000018099,0.0000018106,0.0000018126, +0.0000018154,0.0000018189,0.0000018218,0.0000018246,0.0000018285, +0.0000018340,0.0000018411,0.0000018480,0.0000018528,0.0000018553, +0.0000018565,0.0000018553,0.0000018529,0.0000018500,0.0000018478, +0.0000018469,0.0000018469,0.0000018475,0.0000018483,0.0000018490, +0.0000018490,0.0000018477,0.0000018454,0.0000018422,0.0000018381, +0.0000018339,0.0000018300,0.0000018274,0.0000018264,0.0000018273, +0.0000018299,0.0000018333,0.0000018373,0.0000018413,0.0000018454, +0.0000018500,0.0000018544,0.0000018575,0.0000018596,0.0000018606, +0.0000018605,0.0000018589,0.0000018555,0.0000018511,0.0000018465, +0.0000018430,0.0000018408,0.0000018393,0.0000018380,0.0000018372, +0.0000018372,0.0000018373,0.0000018375,0.0000018381,0.0000018391, +0.0000018399,0.0000018409,0.0000018430,0.0000018464,0.0000018507, +0.0000018553,0.0000018596,0.0000018633,0.0000018658,0.0000018665, +0.0000018672,0.0000018678,0.0000018679,0.0000018672,0.0000018656, +0.0000018632,0.0000018598,0.0000018556,0.0000018508,0.0000018455, +0.0000018400,0.0000018344,0.0000018298,0.0000018257,0.0000018233, +0.0000018248,0.0000018261,0.0000018308,0.0000018369,0.0000018441, +0.0000018518,0.0000018587,0.0000018637,0.0000018673,0.0000018678, +0.0000018674,0.0000018662,0.0000018651,0.0000018646,0.0000018641, +0.0000018637,0.0000018629,0.0000018610,0.0000018576,0.0000018539, +0.0000018505,0.0000018475,0.0000018464,0.0000018468,0.0000018493, +0.0000018528,0.0000018575,0.0000018622,0.0000018664,0.0000018702, +0.0000018730,0.0000018743,0.0000018738,0.0000018730,0.0000018707, +0.0000018681,0.0000018671,0.0000018668,0.0000018666,0.0000018665, +0.0000018671,0.0000018675,0.0000018672,0.0000018657,0.0000018627, +0.0000018584,0.0000018536,0.0000018506,0.0000018502,0.0000018508, +0.0000018530,0.0000018558,0.0000018589,0.0000018620,0.0000018645, +0.0000018655,0.0000018653,0.0000018646,0.0000018627,0.0000018602, +0.0000018576,0.0000018548,0.0000018506,0.0000018442,0.0000018366, +0.0000018276,0.0000018177,0.0000018090,0.0000018027,0.0000017993, +0.0000017976,0.0000017967,0.0000017965,0.0000017974,0.0000018002, +0.0000018037,0.0000018075,0.0000018110,0.0000018122,0.0000018113, +0.0000018085,0.0000018036,0.0000017984,0.0000017940,0.0000017901, +0.0000017862,0.0000017827,0.0000017803,0.0000017773,0.0000017746, +0.0000017724,0.0000017703,0.0000017688,0.0000017686,0.0000017676, +0.0000017667,0.0000017668,0.0000017673,0.0000017677,0.0000017679, +0.0000017683,0.0000017679,0.0000017682,0.0000017708,0.0000017731, +0.0000017755,0.0000017776,0.0000017797,0.0000017814,0.0000017831, +0.0000017844,0.0000017842,0.0000017827,0.0000017806,0.0000017785, +0.0000017765,0.0000017736,0.0000017707,0.0000017677,0.0000017660, +0.0000017656,0.0000017663,0.0000017676,0.0000017702,0.0000017722, +0.0000017737,0.0000017740,0.0000017738,0.0000017736,0.0000017723, +0.0000017711,0.0000017697,0.0000017683,0.0000017676,0.0000017669, +0.0000017679,0.0000017688,0.0000017697,0.0000017706,0.0000017707, +0.0000017705,0.0000017713,0.0000017711,0.0000017723,0.0000017732, +0.0000017731,0.0000017738,0.0000017740,0.0000017740,0.0000017748, +0.0000017754,0.0000017750,0.0000017741,0.0000017738,0.0000017747, +0.0000017755,0.0000017780,0.0000017791,0.0000017795,0.0000017813, +0.0000017807,0.0000017807,0.0000017799,0.0000017779,0.0000017750, +0.0000017718,0.0000017681,0.0000017651,0.0000017621,0.0000017593, +0.0000017575,0.0000017580,0.0000017586,0.0000017601,0.0000017602, +0.0000017587,0.0000017571,0.0000017559,0.0000017562,0.0000017578, +0.0000017596,0.0000017610,0.0000017617,0.0000017624,0.0000017637, +0.0000017655,0.0000017678,0.0000017703,0.0000017720,0.0000017723, +0.0000017734,0.0000017739,0.0000017739,0.0000017738,0.0000017730, +0.0000017705,0.0000017655,0.0000017606,0.0000017559,0.0000017548, +0.0000017541,0.0000017549,0.0000017575,0.0000017602,0.0000017641, +0.0000017683,0.0000017715,0.0000017744,0.0000017762,0.0000017776, +0.0000017787,0.0000017798,0.0000017821,0.0000017845,0.0000017871, +0.0000017890,0.0000017907,0.0000017921,0.0000017928,0.0000017931, +0.0000017928,0.0000017921,0.0000017890,0.0000017842,0.0000017784, +0.0000017732,0.0000017679,0.0000017634,0.0000017599,0.0000017583, +0.0000017576,0.0000017564,0.0000017548,0.0000017526,0.0000017502, +0.0000017495,0.0000017505,0.0000017533,0.0000017573,0.0000017624, +0.0000017669,0.0000017716,0.0000017751,0.0000017767,0.0000017775, +0.0000017773,0.0000017775,0.0000017785,0.0000017823,0.0000017879, +0.0000017947,0.0000018016,0.0000018068,0.0000018108,0.0000018152, +0.0000018203,0.0000018258,0.0000018303,0.0000018326,0.0000018328, +0.0000018305,0.0000018269,0.0000018233,0.0000018202,0.0000018173, +0.0000018135,0.0000018086,0.0000018029,0.0000017973,0.0000017925, +0.0000017884,0.0000017854,0.0000017842,0.0000017846,0.0000017857, +0.0000017872,0.0000017883,0.0000017891,0.0000017902,0.0000017928, +0.0000017971,0.0000018022,0.0000018077,0.0000018129,0.0000018168, +0.0000018190,0.0000018200,0.0000018207,0.0000018215,0.0000018236, +0.0000018278,0.0000018339,0.0000018412,0.0000018490,0.0000018568, +0.0000018636,0.0000018691,0.0000018723,0.0000018738,0.0000018748, +0.0000018771,0.0000018803,0.0000018840,0.0000018876,0.0000018910, +0.0000018936,0.0000018952,0.0000018950,0.0000018947,0.0000018929, +0.0000018907,0.0000018881,0.0000018858,0.0000018853,0.0000018857, +0.0000018852,0.0000018836,0.0000018808,0.0000018767,0.0000018720, +0.0000018678,0.0000018652,0.0000018637,0.0000018635,0.0000018635, +0.0000018633,0.0000018631,0.0000018633,0.0000018645,0.0000018668, +0.0000018702,0.0000018757,0.0000018844,0.0000018939,0.0000018998, +0.0000019000,0.0000018943,0.0000018863,0.0000018838,0.0000018867, +0.0000018895,0.0000018865,0.0000018796,0.0000018757,0.0000018730, +0.0000018664,0.0000018577,0.0000018530,0.0000018548,0.0000018593, +0.0000018612,0.0000018594,0.0000018550,0.0000018500,0.0000018443, +0.0000018376,0.0000018307,0.0000018252,0.0000018226,0.0000018219, +0.0000018214,0.0000018207,0.0000018208,0.0000018215,0.0000018214, +0.0000018195,0.0000018168,0.0000018150,0.0000018150,0.0000018160, +0.0000018168,0.0000018176,0.0000018186,0.0000018196,0.0000018202, +0.0000018201,0.0000018199,0.0000018205,0.0000018216,0.0000018219, +0.0000018211,0.0000018187,0.0000018161,0.0000018135,0.0000018106, +0.0000018080,0.0000018058,0.0000018038,0.0000018027,0.0000018025, +0.0000018031,0.0000018051,0.0000018079,0.0000018115,0.0000018174, +0.0000018259,0.0000018349,0.0000018421,0.0000018472,0.0000018503, +0.0000018517,0.0000018518,0.0000018519,0.0000018529,0.0000018552, +0.0000018585,0.0000018624,0.0000018658,0.0000018677,0.0000018679, +0.0000018663,0.0000018633,0.0000018608,0.0000018596,0.0000018598, +0.0000018606,0.0000018607,0.0000018588,0.0000018539,0.0000018473, +0.0000018406,0.0000018360,0.0000018340,0.0000018330,0.0000018322, +0.0000018321,0.0000018324,0.0000018322,0.0000018317,0.0000018313, +0.0000018310,0.0000018295,0.0000018252,0.0000018187,0.0000018111, +0.0000018040,0.0000017990,0.0000017960,0.0000017944,0.0000017942, +0.0000017956,0.0000017984,0.0000018016,0.0000018042,0.0000018053, +0.0000018054,0.0000018060,0.0000018077,0.0000018091,0.0000018083, +0.0000018053,0.0000018025,0.0000018014,0.0000018014,0.0000018012, +0.0000018002,0.0000017986,0.0000017994,0.0000018045,0.0000018100, +0.0000018095,0.0000018004,0.0000017888,0.0000017802,0.0000017778, +0.0000017795,0.0000017815,0.0000017823,0.0000017822,0.0000017813, +0.0000017798,0.0000017782,0.0000017759,0.0000017719,0.0000017681, +0.0000017644,0.0000017619,0.0000017592,0.0000017555,0.0000017527, +0.0000017520,0.0000017528,0.0000017545,0.0000017561,0.0000017570, +0.0000017580,0.0000017598,0.0000017621,0.0000017647,0.0000017672, +0.0000017686,0.0000017678,0.0000017661,0.0000017642,0.0000017626, +0.0000017609,0.0000017601,0.0000017605,0.0000017604,0.0000017605, +0.0000017619,0.0000017651,0.0000017704,0.0000017774,0.0000017845, +0.0000017920,0.0000017996,0.0000018062,0.0000018123,0.0000018155, +0.0000018159,0.0000018141,0.0000018103,0.0000018057,0.0000018013, +0.0000017974,0.0000017939,0.0000017911,0.0000017892,0.0000017872, +0.0000017851,0.0000017828,0.0000017809,0.0000017787,0.0000017764, +0.0000017750,0.0000017742,0.0000017736,0.0000017737,0.0000017752, +0.0000017795,0.0000017854,0.0000017901,0.0000017938,0.0000017963, +0.0000017977,0.0000017993,0.0000018010,0.0000018026,0.0000018034, +0.0000018035,0.0000018025,0.0000017998,0.0000017977,0.0000017978, +0.0000017971,0.0000017947,0.0000017927,0.0000017927,0.0000017940, +0.0000017953,0.0000017945,0.0000017918,0.0000017896,0.0000017870, +0.0000017845,0.0000017833,0.0000017828,0.0000017836,0.0000018197, +0.0000018752,0.0000018863,0.0000018718,0.0000018612,0.0000018615, +0.0000018674,0.0000018729,0.0000018803,0.0000018807,0.0000018468, +0.0000017987,0.0000017800,0.0000017789,0.0000017817,0.0000017882, +0.0000017945,0.0000017966,0.0000017940,0.0000017907,0.0000017869, +0.0000017850,0.0000017852,0.0000017871,0.0000017899,0.0000017910, +0.0000017888,0.0000017850,0.0000017793,0.0000017728,0.0000017657, +0.0000017596,0.0000017565,0.0000017557,0.0000017578,0.0000017625, +0.0000017683,0.0000017735,0.0000017860,0.0000018194,0.0000018404, +0.0000018196,0.0000017869,0.0000017778,0.0000017778,0.0000017782, +0.0000017798,0.0000017834,0.0000017911,0.0000018016,0.0000018112, +0.0000018164,0.0000018170,0.0000018138,0.0000018066,0.0000017959, +0.0000017842,0.0000017749,0.0000017708,0.0000017704,0.0000017694, +0.0000017645,0.0000017555,0.0000017481,0.0000017468,0.0000017515, +0.0000017622,0.0000017737,0.0000017829,0.0000017888,0.0000017914, +0.0000017916,0.0000017900,0.0000017861,0.0000017818,0.0000017791, +0.0000017774,0.0000017758,0.0000017752,0.0000017759,0.0000017760, +0.0000017735,0.0000017669,0.0000017594,0.0000017551,0.0000017545, +0.0000017555,0.0000017582,0.0000017629,0.0000017695,0.0000017764, +0.0000017808,0.0000017821,0.0000017821,0.0000017833,0.0000017866, +0.0000017910,0.0000017933,0.0000017929,0.0000017893,0.0000017833, +0.0000017768,0.0000017722,0.0000017705,0.0000017708,0.0000017729, +0.0000017754,0.0000017762,0.0000017756,0.0000017739,0.0000017716, +0.0000017688,0.0000017660,0.0000017635,0.0000017610,0.0000017587, +0.0000017567,0.0000017554,0.0000017544,0.0000017532,0.0000017516, +0.0000017501,0.0000017495,0.0000017496,0.0000017498,0.0000017504, +0.0000017516,0.0000017532,0.0000017557,0.0000017591,0.0000017632, +0.0000017673,0.0000017710,0.0000017740,0.0000017764,0.0000017779, +0.0000017787,0.0000017793,0.0000017795,0.0000017795,0.0000017794, +0.0000017794,0.0000017791,0.0000017786,0.0000017778,0.0000017763, +0.0000017740,0.0000017707,0.0000017666,0.0000017622,0.0000017592, +0.0000017589,0.0000017618,0.0000017672,0.0000017710,0.0000017711, +0.0000017676,0.0000017632,0.0000017604,0.0000017565,0.0000017506, +0.0000017543,0.0000017676,0.0000017826,0.0000017947,0.0000018018, +0.0000018041,0.0000018046,0.0000018055,0.0000018072,0.0000018095, +0.0000018121,0.0000018145,0.0000018163,0.0000018177,0.0000018188, +0.0000018196,0.0000018206,0.0000018215,0.0000018224,0.0000018235, +0.0000018250,0.0000018271,0.0000018296,0.0000018318,0.0000018333, +0.0000018338,0.0000018339,0.0000018340,0.0000018343,0.0000018358, +0.0000018385,0.0000018415,0.0000018433,0.0000018432,0.0000018417, +0.0000018396,0.0000018373,0.0000018349,0.0000018328,0.0000018305, +0.0000018278,0.0000018249,0.0000018214,0.0000018172,0.0000018125, +0.0000018087,0.0000018058,0.0000018035,0.0000018026,0.0000018018, +0.0000018021,0.0000018027,0.0000018043,0.0000018042,0.0000018051, +0.0000018056,0.0000018061,0.0000018074,0.0000018088,0.0000018111, +0.0000018149,0.0000018197,0.0000018247,0.0000018288,0.0000018314, +0.0000018325,0.0000018321,0.0000018307,0.0000018295,0.0000018296, +0.0000018306,0.0000018322,0.0000018340,0.0000018359,0.0000018381, +0.0000018402,0.0000018421,0.0000018441,0.0000018458,0.0000018474, +0.0000018494,0.0000018517,0.0000018537,0.0000018549,0.0000018560, +0.0000018576,0.0000018602,0.0000018635,0.0000018667,0.0000018695, +0.0000018714,0.0000018731,0.0000018743,0.0000018751,0.0000018765, +0.0000018757,0.0000018760,0.0000018739,0.0000018716,0.0000018688, +0.0000018653,0.0000018618,0.0000018578,0.0000018535,0.0000018499, +0.0000018470,0.0000018454,0.0000018453,0.0000018459,0.0000018475, +0.0000018489,0.0000018504,0.0000018519,0.0000018527,0.0000018530, +0.0000018530,0.0000018532,0.0000018532,0.0000018534,0.0000018536, +0.0000018533,0.0000018521,0.0000018502,0.0000018479,0.0000018450, +0.0000018418,0.0000018391,0.0000018373,0.0000018361,0.0000018344, +0.0000018316,0.0000018274,0.0000018218,0.0000018150,0.0000018073, +0.0000018000,0.0000017932,0.0000017874,0.0000017862,0.0000017846, +0.0000017850,0.0000017887,0.0000017940,0.0000018000,0.0000018062, +0.0000018125,0.0000018180,0.0000018217,0.0000018237,0.0000018244, +0.0000018251,0.0000018261,0.0000018274,0.0000018286,0.0000018301, +0.0000018321,0.0000018334,0.0000018336,0.0000018332,0.0000018323, +0.0000018311,0.0000018296,0.0000018282,0.0000018269,0.0000018256, +0.0000018239,0.0000018217,0.0000018190,0.0000018166,0.0000018143, +0.0000018124,0.0000018110,0.0000018102,0.0000018099,0.0000018102, +0.0000018112,0.0000018129,0.0000018150,0.0000018175,0.0000018200, +0.0000018227,0.0000018252,0.0000018273,0.0000018289,0.0000018296, +0.0000018292,0.0000018277,0.0000018254,0.0000018221,0.0000018181, +0.0000018135,0.0000018086,0.0000018035,0.0000017984,0.0000017934, +0.0000017888,0.0000017854,0.0000017833,0.0000017826,0.0000017831, +0.0000017846,0.0000017867,0.0000017888,0.0000017907,0.0000017924, +0.0000017939,0.0000017947,0.0000017949,0.0000017943,0.0000017931, +0.0000017919,0.0000017908,0.0000017897,0.0000017884,0.0000017870, +0.0000017863,0.0000017867,0.0000017888,0.0000017924,0.0000017969, +0.0000018019,0.0000018071,0.0000018118,0.0000018161,0.0000018200, +0.0000018230,0.0000018250,0.0000018262,0.0000018263,0.0000018254, +0.0000018238,0.0000018217,0.0000018193,0.0000018172,0.0000018150, +0.0000018126,0.0000018108,0.0000018093,0.0000018073,0.0000018043, +0.0000018006,0.0000017968,0.0000017934,0.0000017908,0.0000017892, +0.0000017880,0.0000017863,0.0000017837,0.0000017810,0.0000017774, +0.0000017722,0.0000017659,0.0000017599,0.0000017552,0.0000017522, +0.0000017519,0.0000017554,0.0000017610,0.0000017665,0.0000017707, +0.0000017732,0.0000017732,0.0000017719,0.0000017698,0.0000017688, +0.0000017684,0.0000017690,0.0000017707,0.0000017728,0.0000017753, +0.0000017776,0.0000017795,0.0000017812,0.0000017830,0.0000017843, +0.0000017843,0.0000017830,0.0000017800,0.0000017753,0.0000017693, +0.0000017611,0.0000017527,0.0000017459,0.0000017429,0.0000017424, +0.0000017443,0.0000017478,0.0000017507,0.0000017553,0.0000017610, +0.0000017674,0.0000017727,0.0000017767,0.0000017796,0.0000017809, +0.0000017803,0.0000017775,0.0000017766,0.0000017729,0.0000017689, +0.0000017650,0.0000017625,0.0000017624,0.0000017636,0.0000017654, +0.0000017669,0.0000017680,0.0000017686,0.0000017689,0.0000017684, +0.0000017671,0.0000017663,0.0000017655,0.0000017646,0.0000017641, +0.0000017643,0.0000017643,0.0000017646,0.0000017651,0.0000017659, +0.0000017669,0.0000017681,0.0000017697,0.0000017716,0.0000017734, +0.0000017750,0.0000017769,0.0000017791,0.0000017814,0.0000017834, +0.0000017856,0.0000017876,0.0000017893,0.0000017909,0.0000017922, +0.0000017929,0.0000017931,0.0000017932,0.0000017936,0.0000017935, +0.0000017929,0.0000017923,0.0000017909,0.0000017890,0.0000017869, +0.0000017851,0.0000017842,0.0000017841,0.0000017852,0.0000017872, +0.0000017903,0.0000017945,0.0000017990,0.0000018032,0.0000018067, +0.0000018086,0.0000018094,0.0000018095,0.0000018095,0.0000018095, +0.0000018104,0.0000018125,0.0000018154,0.0000018184,0.0000018216, +0.0000018255,0.0000018312,0.0000018383,0.0000018453,0.0000018504, +0.0000018531,0.0000018537,0.0000018520,0.0000018492,0.0000018458, +0.0000018431,0.0000018416,0.0000018413,0.0000018415,0.0000018414, +0.0000018411,0.0000018410,0.0000018408,0.0000018400,0.0000018374, +0.0000018328,0.0000018278,0.0000018232,0.0000018198,0.0000018182, +0.0000018178,0.0000018189,0.0000018227,0.0000018283,0.0000018344, +0.0000018408,0.0000018473,0.0000018536,0.0000018590,0.0000018630, +0.0000018656,0.0000018667,0.0000018664,0.0000018652,0.0000018624, +0.0000018583,0.0000018538,0.0000018496,0.0000018466,0.0000018449, +0.0000018440,0.0000018432,0.0000018424,0.0000018417,0.0000018410, +0.0000018403,0.0000018397,0.0000018393,0.0000018387,0.0000018385, +0.0000018389,0.0000018404,0.0000018431,0.0000018470,0.0000018517, +0.0000018564,0.0000018605,0.0000018636,0.0000018661,0.0000018679, +0.0000018687,0.0000018686,0.0000018677,0.0000018665,0.0000018648, +0.0000018624,0.0000018594,0.0000018558,0.0000018515,0.0000018467, +0.0000018418,0.0000018372,0.0000018329,0.0000018292,0.0000018274, +0.0000018268,0.0000018272,0.0000018312,0.0000018378,0.0000018451, +0.0000018531,0.0000018603,0.0000018659,0.0000018686,0.0000018686, +0.0000018677,0.0000018660,0.0000018640,0.0000018626,0.0000018617, +0.0000018606,0.0000018589,0.0000018571,0.0000018557,0.0000018537, +0.0000018528,0.0000018523,0.0000018530,0.0000018548,0.0000018571, +0.0000018598,0.0000018618,0.0000018643,0.0000018672,0.0000018698, +0.0000018714,0.0000018724,0.0000018722,0.0000018716,0.0000018716, +0.0000018718,0.0000018720,0.0000018717,0.0000018713,0.0000018707, +0.0000018700,0.0000018687,0.0000018668,0.0000018642,0.0000018613, +0.0000018601,0.0000018596,0.0000018592,0.0000018594,0.0000018596, +0.0000018598,0.0000018609,0.0000018627,0.0000018647,0.0000018665, +0.0000018676,0.0000018676,0.0000018665,0.0000018645,0.0000018615, +0.0000018580,0.0000018546,0.0000018519,0.0000018484,0.0000018432, +0.0000018356,0.0000018258,0.0000018156,0.0000018071,0.0000018021, +0.0000017999,0.0000017997,0.0000018009,0.0000018021,0.0000018042, +0.0000018069,0.0000018102,0.0000018125,0.0000018137,0.0000018125, +0.0000018096,0.0000018058,0.0000018009,0.0000017960,0.0000017915, +0.0000017876,0.0000017837,0.0000017804,0.0000017782,0.0000017759, +0.0000017743,0.0000017733,0.0000017729,0.0000017732,0.0000017738, +0.0000017738,0.0000017734,0.0000017720,0.0000017707,0.0000017694, +0.0000017700,0.0000017733,0.0000017768,0.0000017800,0.0000017826, +0.0000017850,0.0000017868,0.0000017880,0.0000017878,0.0000017865, +0.0000017842,0.0000017816,0.0000017791,0.0000017766,0.0000017737, +0.0000017715,0.0000017702,0.0000017710,0.0000017737,0.0000017767, +0.0000017805,0.0000017834,0.0000017853,0.0000017866,0.0000017866, +0.0000017859,0.0000017842,0.0000017824,0.0000017806,0.0000017784, +0.0000017769,0.0000017763,0.0000017761,0.0000017768,0.0000017772, +0.0000017778,0.0000017776,0.0000017767,0.0000017775,0.0000017774, +0.0000017780,0.0000017783,0.0000017775,0.0000017775,0.0000017774, +0.0000017776,0.0000017791,0.0000017800,0.0000017801,0.0000017794, +0.0000017792,0.0000017793,0.0000017798,0.0000017816,0.0000017822, +0.0000017824,0.0000017845,0.0000017843,0.0000017847,0.0000017850, +0.0000017841,0.0000017830,0.0000017805,0.0000017779,0.0000017760, +0.0000017726,0.0000017690,0.0000017647,0.0000017619,0.0000017603, +0.0000017612,0.0000017626,0.0000017624,0.0000017606,0.0000017581, +0.0000017571,0.0000017584,0.0000017612,0.0000017638,0.0000017661, +0.0000017679,0.0000017695,0.0000017713,0.0000017728,0.0000017745, +0.0000017754,0.0000017757,0.0000017759,0.0000017765,0.0000017765, +0.0000017768,0.0000017773,0.0000017775,0.0000017743,0.0000017703, +0.0000017642,0.0000017598,0.0000017562,0.0000017535,0.0000017540, +0.0000017556,0.0000017593,0.0000017638,0.0000017679,0.0000017715, +0.0000017743,0.0000017760,0.0000017782,0.0000017805,0.0000017830, +0.0000017852,0.0000017880,0.0000017910,0.0000017927,0.0000017935, +0.0000017936,0.0000017941,0.0000017954,0.0000017970,0.0000017966, +0.0000017935,0.0000017889,0.0000017842,0.0000017787,0.0000017729, +0.0000017680,0.0000017647,0.0000017626,0.0000017609,0.0000017590, +0.0000017567,0.0000017541,0.0000017523,0.0000017527,0.0000017547, +0.0000017576,0.0000017612,0.0000017644,0.0000017676,0.0000017692, +0.0000017690,0.0000017671,0.0000017622,0.0000017552,0.0000017510, +0.0000017469,0.0000017461,0.0000017471,0.0000017510,0.0000017544, +0.0000017590,0.0000017663,0.0000017745,0.0000017831,0.0000017907, +0.0000017967,0.0000018002,0.0000018009,0.0000017994,0.0000017966, +0.0000017936,0.0000017905,0.0000017874,0.0000017824,0.0000017762, +0.0000017703,0.0000017647,0.0000017583,0.0000017522,0.0000017486, +0.0000017480,0.0000017493,0.0000017513,0.0000017523,0.0000017532, +0.0000017548,0.0000017580,0.0000017619,0.0000017661,0.0000017706, +0.0000017752,0.0000017798,0.0000017844,0.0000017884,0.0000017917, +0.0000017941,0.0000017972,0.0000018015,0.0000018069,0.0000018131, +0.0000018199,0.0000018285,0.0000018382,0.0000018475,0.0000018546, +0.0000018594,0.0000018624,0.0000018659,0.0000018701,0.0000018750, +0.0000018798,0.0000018837,0.0000018867,0.0000018889,0.0000018901, +0.0000018911,0.0000018922,0.0000018939,0.0000018959,0.0000018966, +0.0000018968,0.0000018956,0.0000018924,0.0000018889,0.0000018864, +0.0000018845,0.0000018821,0.0000018790,0.0000018755,0.0000018721, +0.0000018691,0.0000018665,0.0000018642,0.0000018631,0.0000018634, +0.0000018647,0.0000018667,0.0000018679,0.0000018683,0.0000018698, +0.0000018751,0.0000018841,0.0000018927,0.0000018961,0.0000018942, +0.0000018882,0.0000018840,0.0000018850,0.0000018878,0.0000018872, +0.0000018830,0.0000018790,0.0000018759,0.0000018698,0.0000018601, +0.0000018532,0.0000018535,0.0000018584,0.0000018618,0.0000018610, +0.0000018558,0.0000018485,0.0000018413,0.0000018352,0.0000018303, +0.0000018268,0.0000018246,0.0000018236,0.0000018236,0.0000018244, +0.0000018252,0.0000018247,0.0000018223,0.0000018191,0.0000018167, +0.0000018158,0.0000018162,0.0000018176,0.0000018202,0.0000018231, +0.0000018247,0.0000018245,0.0000018228,0.0000018209,0.0000018200, +0.0000018207,0.0000018215,0.0000018212,0.0000018193,0.0000018167, +0.0000018138,0.0000018113,0.0000018097,0.0000018085,0.0000018065, +0.0000018037,0.0000018020,0.0000018018,0.0000018033,0.0000018061, +0.0000018106,0.0000018172,0.0000018248,0.0000018319,0.0000018376, +0.0000018421,0.0000018454,0.0000018474,0.0000018487,0.0000018502, +0.0000018524,0.0000018548,0.0000018574,0.0000018603,0.0000018627, +0.0000018639,0.0000018637,0.0000018627,0.0000018618,0.0000018613, +0.0000018611,0.0000018608,0.0000018593,0.0000018562,0.0000018519, +0.0000018473,0.0000018425,0.0000018383,0.0000018357,0.0000018338, +0.0000018321,0.0000018313,0.0000018320,0.0000018332,0.0000018336, +0.0000018339,0.0000018344,0.0000018344,0.0000018317,0.0000018256, +0.0000018186,0.0000018130,0.0000018081,0.0000018032,0.0000017993, +0.0000017971,0.0000017957,0.0000017948,0.0000017952,0.0000017970, +0.0000017991,0.0000018003,0.0000018013,0.0000018025,0.0000018049, +0.0000018076,0.0000018085,0.0000018074,0.0000018050,0.0000018028, +0.0000018017,0.0000018011,0.0000017989,0.0000017953,0.0000017952, +0.0000018005,0.0000018096,0.0000018141,0.0000018108,0.0000018012, +0.0000017906,0.0000017834,0.0000017820,0.0000017821,0.0000017830, +0.0000017822,0.0000017788,0.0000017741,0.0000017698,0.0000017670, +0.0000017652,0.0000017640,0.0000017633,0.0000017628,0.0000017610, +0.0000017582,0.0000017549,0.0000017521,0.0000017508,0.0000017506, +0.0000017511,0.0000017525,0.0000017539,0.0000017553,0.0000017572, +0.0000017594,0.0000017608,0.0000017609,0.0000017603,0.0000017595, +0.0000017589,0.0000017583,0.0000017579,0.0000017576,0.0000017564, +0.0000017546,0.0000017528,0.0000017524,0.0000017539,0.0000017576, +0.0000017624,0.0000017688,0.0000017768,0.0000017849,0.0000017928, +0.0000017997,0.0000018046,0.0000018089,0.0000018108,0.0000018094, +0.0000018084,0.0000018061,0.0000018021,0.0000017981,0.0000017948, +0.0000017914,0.0000017879,0.0000017846,0.0000017820,0.0000017795, +0.0000017763,0.0000017739,0.0000017718,0.0000017689,0.0000017678, +0.0000017687,0.0000017738,0.0000017810,0.0000017876,0.0000017924, +0.0000017962,0.0000017987,0.0000018010,0.0000018037,0.0000018055, +0.0000018059,0.0000018051,0.0000018032,0.0000018005,0.0000017993, +0.0000017993,0.0000017970,0.0000017927,0.0000017905,0.0000017918, +0.0000017947,0.0000017952,0.0000017928,0.0000017905,0.0000017882, +0.0000017852,0.0000017833,0.0000017828,0.0000017824,0.0000017992, +0.0000018553,0.0000018880,0.0000018811,0.0000018666,0.0000018618, +0.0000018646,0.0000018707,0.0000018785,0.0000018810,0.0000018539, +0.0000018072,0.0000017840,0.0000017825,0.0000017853,0.0000017926, +0.0000017961,0.0000017937,0.0000017842,0.0000017725,0.0000017632, +0.0000017583,0.0000017574,0.0000017599,0.0000017653,0.0000017720, +0.0000017802,0.0000017865,0.0000017887,0.0000017877,0.0000017823, +0.0000017732,0.0000017630,0.0000017556,0.0000017530,0.0000017545, +0.0000017583,0.0000017647,0.0000017724,0.0000017789,0.0000018011, +0.0000018384,0.0000018405,0.0000018062,0.0000017830,0.0000017804, +0.0000017823,0.0000017903,0.0000018051,0.0000018218,0.0000018367, +0.0000018453,0.0000018472,0.0000018448,0.0000018386,0.0000018294, +0.0000018166,0.0000018009,0.0000017850,0.0000017732,0.0000017682, +0.0000017679,0.0000017681,0.0000017651,0.0000017570,0.0000017476, +0.0000017437,0.0000017462,0.0000017557,0.0000017684,0.0000017801, +0.0000017881,0.0000017916,0.0000017919,0.0000017893,0.0000017837, +0.0000017783,0.0000017757,0.0000017747,0.0000017746,0.0000017754, +0.0000017759,0.0000017733,0.0000017652,0.0000017572,0.0000017539, +0.0000017535,0.0000017533,0.0000017528,0.0000017529,0.0000017553, +0.0000017612,0.0000017697,0.0000017773,0.0000017808,0.0000017811, +0.0000017814,0.0000017836,0.0000017870,0.0000017894,0.0000017894, +0.0000017865,0.0000017809,0.0000017752,0.0000017718,0.0000017707, +0.0000017712,0.0000017729,0.0000017750,0.0000017754,0.0000017747, +0.0000017729,0.0000017701,0.0000017665,0.0000017629,0.0000017598, +0.0000017574,0.0000017556,0.0000017541,0.0000017527,0.0000017514, +0.0000017501,0.0000017490,0.0000017481,0.0000017477,0.0000017475, +0.0000017473,0.0000017475,0.0000017484,0.0000017499,0.0000017518, +0.0000017542,0.0000017570,0.0000017600,0.0000017627,0.0000017648, +0.0000017665,0.0000017681,0.0000017696,0.0000017707,0.0000017717, +0.0000017724,0.0000017726,0.0000017722,0.0000017711,0.0000017691, +0.0000017661,0.0000017626,0.0000017596,0.0000017580,0.0000017585, +0.0000017624,0.0000017682,0.0000017724,0.0000017726,0.0000017686, +0.0000017633,0.0000017592,0.0000017537,0.0000017476,0.0000017472, +0.0000017757,0.0000017900,0.0000017992,0.0000018027,0.0000018032, +0.0000018051,0.0000018080,0.0000018115,0.0000018147,0.0000018177, +0.0000018207,0.0000018232,0.0000018252,0.0000018265,0.0000018274, +0.0000018281,0.0000018288,0.0000018293,0.0000018295,0.0000018297, +0.0000018305,0.0000018322,0.0000018343,0.0000018359,0.0000018368, +0.0000018371,0.0000018369,0.0000018362,0.0000018359,0.0000018366, +0.0000018393,0.0000018432,0.0000018468,0.0000018484,0.0000018480, +0.0000018465,0.0000018446,0.0000018427,0.0000018411,0.0000018396, +0.0000018384,0.0000018372,0.0000018355,0.0000018332,0.0000018305, +0.0000018278,0.0000018252,0.0000018229,0.0000018207,0.0000018186, +0.0000018167,0.0000018149,0.0000018131,0.0000018116,0.0000018101, +0.0000018079,0.0000018062,0.0000018050,0.0000018046,0.0000018046, +0.0000018065,0.0000018099,0.0000018142,0.0000018185,0.0000018223, +0.0000018247,0.0000018257,0.0000018256,0.0000018255,0.0000018262, +0.0000018275,0.0000018293,0.0000018312,0.0000018331,0.0000018351, +0.0000018368,0.0000018384,0.0000018402,0.0000018421,0.0000018438, +0.0000018458,0.0000018483,0.0000018509,0.0000018530,0.0000018542, +0.0000018551,0.0000018563,0.0000018583,0.0000018608,0.0000018633, +0.0000018651,0.0000018665,0.0000018679,0.0000018692,0.0000018711, +0.0000018725,0.0000018735,0.0000018730,0.0000018730,0.0000018712, +0.0000018687,0.0000018671,0.0000018642,0.0000018604,0.0000018567, +0.0000018534,0.0000018512,0.0000018502,0.0000018501,0.0000018507, +0.0000018517,0.0000018532,0.0000018544,0.0000018554,0.0000018561, +0.0000018562,0.0000018560,0.0000018558,0.0000018555,0.0000018555, +0.0000018555,0.0000018554,0.0000018551,0.0000018544,0.0000018526, +0.0000018503,0.0000018477,0.0000018451,0.0000018424,0.0000018401, +0.0000018388,0.0000018381,0.0000018369,0.0000018347,0.0000018312, +0.0000018262,0.0000018194,0.0000018114,0.0000018038,0.0000017965, +0.0000017902,0.0000017888,0.0000017875,0.0000017870,0.0000017883, +0.0000017914,0.0000017949,0.0000017987,0.0000018030,0.0000018078, +0.0000018130,0.0000018182,0.0000018232,0.0000018273,0.0000018309, +0.0000018333,0.0000018347,0.0000018353,0.0000018358,0.0000018363, +0.0000018363,0.0000018355,0.0000018340,0.0000018322,0.0000018304, +0.0000018288,0.0000018273,0.0000018252,0.0000018233,0.0000018216, +0.0000018200,0.0000018189,0.0000018180,0.0000018171,0.0000018164, +0.0000018161,0.0000018161,0.0000018165,0.0000018172,0.0000018179, +0.0000018188,0.0000018200,0.0000018213,0.0000018222,0.0000018227, +0.0000018226,0.0000018218,0.0000018204,0.0000018184,0.0000018159, +0.0000018128,0.0000018090,0.0000018049,0.0000018009,0.0000017966, +0.0000017919,0.0000017874,0.0000017840,0.0000017821,0.0000017813, +0.0000017816,0.0000017826,0.0000017842,0.0000017864,0.0000017885, +0.0000017903,0.0000017915,0.0000017920,0.0000017918,0.0000017911, +0.0000017905,0.0000017895,0.0000017879,0.0000017858,0.0000017835, +0.0000017819,0.0000017820,0.0000017840,0.0000017879,0.0000017928, +0.0000017979,0.0000018034,0.0000018089,0.0000018139,0.0000018184, +0.0000018224,0.0000018258,0.0000018280,0.0000018291,0.0000018292, +0.0000018284,0.0000018266,0.0000018246,0.0000018231,0.0000018219, +0.0000018212,0.0000018211,0.0000018211,0.0000018208,0.0000018202, +0.0000018189,0.0000018169,0.0000018143,0.0000018114,0.0000018082, +0.0000018044,0.0000017998,0.0000017948,0.0000017912,0.0000017882, +0.0000017844,0.0000017798,0.0000017739,0.0000017674,0.0000017617, +0.0000017574,0.0000017561,0.0000017553,0.0000017560,0.0000017587, +0.0000017632,0.0000017693,0.0000017745,0.0000017770,0.0000017764, +0.0000017739,0.0000017707,0.0000017689,0.0000017690,0.0000017714, +0.0000017744,0.0000017767,0.0000017782,0.0000017786,0.0000017785, +0.0000017782,0.0000017785,0.0000017784,0.0000017776,0.0000017762, +0.0000017739,0.0000017716,0.0000017674,0.0000017617,0.0000017558, +0.0000017506,0.0000017476,0.0000017458,0.0000017450,0.0000017452, +0.0000017457,0.0000017488,0.0000017547,0.0000017616,0.0000017680, +0.0000017732,0.0000017767,0.0000017787,0.0000017793,0.0000017778, +0.0000017749,0.0000017756,0.0000017758,0.0000017772,0.0000017790, +0.0000017805,0.0000017817,0.0000017828,0.0000017835,0.0000017829, +0.0000017821,0.0000017814,0.0000017806,0.0000017803,0.0000017807, +0.0000017812,0.0000017816,0.0000017821,0.0000017827,0.0000017834, +0.0000017842,0.0000017851,0.0000017866,0.0000017884,0.0000017898, +0.0000017911,0.0000017928,0.0000017947,0.0000017963,0.0000017978, +0.0000017991,0.0000018002,0.0000018010,0.0000018008,0.0000017997, +0.0000017981,0.0000017955,0.0000017941,0.0000017922,0.0000017905, +0.0000017891,0.0000017880,0.0000017870,0.0000017863,0.0000017857, +0.0000017859,0.0000017872,0.0000017899,0.0000017937,0.0000017981, +0.0000018025,0.0000018059,0.0000018083,0.0000018096,0.0000018100, +0.0000018101,0.0000018106,0.0000018114,0.0000018128,0.0000018149, +0.0000018175,0.0000018204,0.0000018242,0.0000018295,0.0000018361, +0.0000018428,0.0000018482,0.0000018513,0.0000018519,0.0000018516, +0.0000018489,0.0000018454,0.0000018423,0.0000018404,0.0000018397, +0.0000018397,0.0000018394,0.0000018392,0.0000018387,0.0000018379, +0.0000018371,0.0000018360,0.0000018330,0.0000018289,0.0000018241, +0.0000018207,0.0000018191,0.0000018186,0.0000018196,0.0000018224, +0.0000018264,0.0000018325,0.0000018397,0.0000018473,0.0000018547, +0.0000018608,0.0000018658,0.0000018693,0.0000018710,0.0000018717, +0.0000018709,0.0000018686,0.0000018649,0.0000018606,0.0000018561, +0.0000018519,0.0000018486,0.0000018468,0.0000018461,0.0000018458, +0.0000018454,0.0000018447,0.0000018438,0.0000018428,0.0000018418, +0.0000018409,0.0000018402,0.0000018395,0.0000018389,0.0000018385, +0.0000018387,0.0000018399,0.0000018418,0.0000018442,0.0000018474, +0.0000018514,0.0000018559,0.0000018606,0.0000018649,0.0000018681, +0.0000018695,0.0000018697,0.0000018693,0.0000018685,0.0000018672, +0.0000018654,0.0000018631,0.0000018602,0.0000018568,0.0000018531, +0.0000018496,0.0000018460,0.0000018418,0.0000018375,0.0000018336, +0.0000018305,0.0000018305,0.0000018329,0.0000018346,0.0000018399, +0.0000018476,0.0000018556,0.0000018622,0.0000018668,0.0000018690, +0.0000018687,0.0000018669,0.0000018644,0.0000018617,0.0000018593, +0.0000018576,0.0000018561,0.0000018555,0.0000018556,0.0000018562, +0.0000018573,0.0000018582,0.0000018593,0.0000018603,0.0000018612, +0.0000018619,0.0000018621,0.0000018625,0.0000018634,0.0000018639, +0.0000018644,0.0000018649,0.0000018664,0.0000018687,0.0000018715, +0.0000018738,0.0000018760,0.0000018768,0.0000018764,0.0000018757, +0.0000018733,0.0000018699,0.0000018660,0.0000018628,0.0000018620, +0.0000018624,0.0000018643,0.0000018675,0.0000018692,0.0000018702, +0.0000018703,0.0000018693,0.0000018689,0.0000018684,0.0000018671, +0.0000018665,0.0000018669,0.0000018672,0.0000018669,0.0000018653, +0.0000018622,0.0000018587,0.0000018554,0.0000018525,0.0000018500, +0.0000018468,0.0000018417,0.0000018338,0.0000018238,0.0000018139, +0.0000018071,0.0000018039,0.0000018032,0.0000018041,0.0000018056, +0.0000018068,0.0000018087,0.0000018109,0.0000018122,0.0000018128, +0.0000018122,0.0000018102,0.0000018071,0.0000018040,0.0000018003, +0.0000017962,0.0000017922,0.0000017883,0.0000017843,0.0000017810, +0.0000017778,0.0000017755,0.0000017751,0.0000017759,0.0000017771, +0.0000017776,0.0000017773,0.0000017764,0.0000017752,0.0000017750, +0.0000017774,0.0000017810,0.0000017846,0.0000017876,0.0000017902, +0.0000017923,0.0000017935,0.0000017929,0.0000017913,0.0000017887, +0.0000017853,0.0000017818,0.0000017781,0.0000017745,0.0000017716, +0.0000017711,0.0000017729,0.0000017764,0.0000017806,0.0000017844, +0.0000017876,0.0000017904,0.0000017924,0.0000017935,0.0000017935, +0.0000017928,0.0000017917,0.0000017900,0.0000017882,0.0000017873, +0.0000017866,0.0000017869,0.0000017881,0.0000017887,0.0000017890, +0.0000017879,0.0000017874,0.0000017876,0.0000017867,0.0000017869, +0.0000017866,0.0000017866,0.0000017867,0.0000017865,0.0000017876, +0.0000017892,0.0000017891,0.0000017886,0.0000017880,0.0000017865, +0.0000017869,0.0000017873,0.0000017880,0.0000017885,0.0000017897, +0.0000017902,0.0000017907,0.0000017911,0.0000017905,0.0000017899, +0.0000017880,0.0000017865,0.0000017856,0.0000017841,0.0000017814, +0.0000017778,0.0000017742,0.0000017699,0.0000017669,0.0000017670, +0.0000017681,0.0000017674,0.0000017650,0.0000017632,0.0000017635, +0.0000017666,0.0000017697,0.0000017718,0.0000017750,0.0000017771, +0.0000017785,0.0000017787,0.0000017787,0.0000017778,0.0000017775, +0.0000017764,0.0000017753,0.0000017748,0.0000017742,0.0000017746, +0.0000017766,0.0000017755,0.0000017746,0.0000017707,0.0000017657, +0.0000017608,0.0000017564,0.0000017549,0.0000017551,0.0000017572, +0.0000017615,0.0000017660,0.0000017686,0.0000017710,0.0000017731, +0.0000017756,0.0000017783,0.0000017808,0.0000017828,0.0000017862, +0.0000017905,0.0000017936,0.0000017955,0.0000017965,0.0000017967, +0.0000017975,0.0000017989,0.0000017998,0.0000017985,0.0000017954, +0.0000017920,0.0000017878,0.0000017824,0.0000017776,0.0000017733, +0.0000017701,0.0000017676,0.0000017653,0.0000017635,0.0000017613, +0.0000017598,0.0000017597,0.0000017614,0.0000017638,0.0000017664, +0.0000017686,0.0000017711,0.0000017725,0.0000017720,0.0000017700, +0.0000017649,0.0000017579,0.0000017501,0.0000017422,0.0000017365, +0.0000017317,0.0000017271,0.0000017238,0.0000017240,0.0000017271, +0.0000017332,0.0000017406,0.0000017482,0.0000017547,0.0000017595, +0.0000017621,0.0000017634,0.0000017634,0.0000017629,0.0000017629, +0.0000017630,0.0000017608,0.0000017573,0.0000017537,0.0000017495, +0.0000017433,0.0000017361,0.0000017299,0.0000017273,0.0000017272, +0.0000017292,0.0000017295,0.0000017293,0.0000017305,0.0000017338, +0.0000017385,0.0000017428,0.0000017462,0.0000017484,0.0000017505, +0.0000017537,0.0000017576,0.0000017612,0.0000017638,0.0000017663, +0.0000017700,0.0000017753,0.0000017817,0.0000017887,0.0000017972, +0.0000018066,0.0000018156,0.0000018238,0.0000018319,0.0000018394, +0.0000018473,0.0000018549,0.0000018621,0.0000018689,0.0000018746, +0.0000018786,0.0000018813,0.0000018826,0.0000018836,0.0000018851, +0.0000018880,0.0000018921,0.0000018967,0.0000019009,0.0000019040, +0.0000019028,0.0000018993,0.0000018946,0.0000018898,0.0000018859, +0.0000018833,0.0000018818,0.0000018815,0.0000018814,0.0000018802, +0.0000018770,0.0000018722,0.0000018673,0.0000018652,0.0000018659, +0.0000018678,0.0000018690,0.0000018686,0.0000018682,0.0000018696, +0.0000018748,0.0000018824,0.0000018891,0.0000018910,0.0000018886, +0.0000018841,0.0000018835,0.0000018872,0.0000018893,0.0000018867, +0.0000018817,0.0000018773,0.0000018703,0.0000018600,0.0000018532, +0.0000018536,0.0000018582,0.0000018603,0.0000018580,0.0000018515, +0.0000018446,0.0000018392,0.0000018351,0.0000018316,0.0000018287, +0.0000018272,0.0000018277,0.0000018295,0.0000018309,0.0000018302, +0.0000018275,0.0000018239,0.0000018204,0.0000018181,0.0000018178, +0.0000018199,0.0000018237,0.0000018277,0.0000018296,0.0000018294, +0.0000018270,0.0000018234,0.0000018207,0.0000018201,0.0000018204, +0.0000018201,0.0000018187,0.0000018161,0.0000018131,0.0000018107, +0.0000018097,0.0000018092,0.0000018080,0.0000018061,0.0000018047, +0.0000018047,0.0000018060,0.0000018085,0.0000018127,0.0000018181, +0.0000018244,0.0000018307,0.0000018366,0.0000018413,0.0000018450, +0.0000018474,0.0000018493,0.0000018514,0.0000018534,0.0000018550, +0.0000018568,0.0000018585,0.0000018592,0.0000018590,0.0000018586, +0.0000018590,0.0000018601,0.0000018612,0.0000018616,0.0000018609, +0.0000018574,0.0000018517,0.0000018460,0.0000018410,0.0000018371, +0.0000018346,0.0000018332,0.0000018322,0.0000018321,0.0000018326, +0.0000018339,0.0000018348,0.0000018352,0.0000018356,0.0000018362, +0.0000018359,0.0000018327,0.0000018273,0.0000018223,0.0000018184, +0.0000018149,0.0000018108,0.0000018062,0.0000018016,0.0000017972, +0.0000017936,0.0000017918,0.0000017922,0.0000017940,0.0000017961, +0.0000017977,0.0000017991,0.0000018012,0.0000018043,0.0000018070, +0.0000018074,0.0000018055,0.0000018024,0.0000017999,0.0000017981, +0.0000017957,0.0000017933,0.0000017932,0.0000017984,0.0000018087, +0.0000018165,0.0000018182,0.0000018131,0.0000018027,0.0000017914, +0.0000017836,0.0000017811,0.0000017813,0.0000017805,0.0000017768, +0.0000017709,0.0000017660,0.0000017618,0.0000017592,0.0000017590, +0.0000017606,0.0000017617,0.0000017618,0.0000017602,0.0000017571, +0.0000017536,0.0000017501,0.0000017481,0.0000017481,0.0000017489, +0.0000017504,0.0000017528,0.0000017552,0.0000017560,0.0000017559, +0.0000017548,0.0000017534,0.0000017524,0.0000017519,0.0000017517, +0.0000017518,0.0000017511,0.0000017497,0.0000017479,0.0000017467, +0.0000017465,0.0000017472,0.0000017489,0.0000017521,0.0000017571, +0.0000017636,0.0000017712,0.0000017787,0.0000017851,0.0000017909, +0.0000017954,0.0000017979,0.0000018012,0.0000018046,0.0000018036, +0.0000018041,0.0000018032,0.0000018006,0.0000017973,0.0000017939, +0.0000017902,0.0000017866,0.0000017825,0.0000017789,0.0000017750, +0.0000017706,0.0000017678,0.0000017680,0.0000017723,0.0000017798, +0.0000017871,0.0000017924,0.0000017975,0.0000018015,0.0000018042, +0.0000018068,0.0000018085,0.0000018083,0.0000018065,0.0000018038, +0.0000018015,0.0000018007,0.0000017994,0.0000017948,0.0000017897, +0.0000017893,0.0000017928,0.0000017954,0.0000017943,0.0000017915, +0.0000017894,0.0000017866,0.0000017838,0.0000017830,0.0000017826, +0.0000017875,0.0000018317,0.0000018820,0.0000018884,0.0000018747, +0.0000018656,0.0000018647,0.0000018685,0.0000018762,0.0000018813, +0.0000018630,0.0000018203,0.0000017925,0.0000017860,0.0000017877, +0.0000017940,0.0000017959,0.0000017885,0.0000017751,0.0000017620, +0.0000017531,0.0000017489,0.0000017476,0.0000017473,0.0000017476, +0.0000017480,0.0000017513,0.0000017597,0.0000017706,0.0000017819, +0.0000017886,0.0000017882,0.0000017830,0.0000017718,0.0000017589, +0.0000017519,0.0000017527,0.0000017568,0.0000017622,0.0000017714, +0.0000017786,0.0000017896,0.0000018218,0.0000018480,0.0000018419, +0.0000018211,0.0000018138,0.0000018210,0.0000018365,0.0000018447, +0.0000018515,0.0000018530,0.0000018509,0.0000018490,0.0000018486, +0.0000018477,0.0000018437,0.0000018360,0.0000018206,0.0000018010, +0.0000017824,0.0000017700,0.0000017653,0.0000017654,0.0000017669, +0.0000017654,0.0000017585,0.0000017484,0.0000017425,0.0000017431, +0.0000017510,0.0000017645,0.0000017779,0.0000017874,0.0000017918, +0.0000017920,0.0000017877,0.0000017805,0.0000017754,0.0000017740, +0.0000017741,0.0000017751,0.0000017764,0.0000017749,0.0000017677, +0.0000017595,0.0000017558,0.0000017551,0.0000017541,0.0000017524, +0.0000017510,0.0000017505,0.0000017516,0.0000017560,0.0000017643, +0.0000017737,0.0000017793,0.0000017802,0.0000017803,0.0000017819, +0.0000017849,0.0000017869,0.0000017865,0.0000017833,0.0000017781, +0.0000017737,0.0000017712,0.0000017703,0.0000017708,0.0000017725, +0.0000017743,0.0000017747,0.0000017737,0.0000017720,0.0000017694, +0.0000017655,0.0000017611,0.0000017577,0.0000017554,0.0000017537, +0.0000017521,0.0000017505,0.0000017493,0.0000017487,0.0000017484, +0.0000017479,0.0000017475,0.0000017468,0.0000017464,0.0000017468, +0.0000017475,0.0000017487,0.0000017510,0.0000017539,0.0000017567, +0.0000017588,0.0000017602,0.0000017614,0.0000017627,0.0000017638, +0.0000017646,0.0000017651,0.0000017657,0.0000017658,0.0000017649, +0.0000017627,0.0000017599,0.0000017576,0.0000017569,0.0000017584, +0.0000017631,0.0000017694,0.0000017737,0.0000017740,0.0000017700, +0.0000017644,0.0000017594,0.0000017525,0.0000017468,0.0000017484, +0.0000017596,0.0000017960,0.0000018016,0.0000018023,0.0000018038, +0.0000018081,0.0000018136,0.0000018193,0.0000018241,0.0000018276, +0.0000018305,0.0000018330,0.0000018349,0.0000018361,0.0000018369, +0.0000018376,0.0000018379,0.0000018381,0.0000018382,0.0000018380, +0.0000018377,0.0000018376,0.0000018382,0.0000018394,0.0000018402, +0.0000018400,0.0000018392,0.0000018384,0.0000018376,0.0000018381, +0.0000018402,0.0000018436,0.0000018473,0.0000018502,0.0000018515, +0.0000018514,0.0000018505,0.0000018493,0.0000018480,0.0000018467, +0.0000018457,0.0000018449,0.0000018442,0.0000018433,0.0000018420, +0.0000018407,0.0000018395,0.0000018386,0.0000018381,0.0000018375, +0.0000018364,0.0000018351,0.0000018335,0.0000018315,0.0000018289, +0.0000018256,0.0000018220,0.0000018182,0.0000018141,0.0000018107, +0.0000018081,0.0000018067,0.0000018075,0.0000018072,0.0000018089, +0.0000018110,0.0000018131,0.0000018149,0.0000018163,0.0000018174, +0.0000018189,0.0000018208,0.0000018229,0.0000018248,0.0000018266, +0.0000018285,0.0000018302,0.0000018317,0.0000018336,0.0000018360, +0.0000018385,0.0000018412,0.0000018442,0.0000018474,0.0000018504, +0.0000018525,0.0000018534,0.0000018539,0.0000018550,0.0000018569, +0.0000018589,0.0000018601,0.0000018611,0.0000018619,0.0000018627, +0.0000018638,0.0000018653,0.0000018663,0.0000018671,0.0000018672, +0.0000018667,0.0000018658,0.0000018638,0.0000018608,0.0000018577, +0.0000018544,0.0000018513,0.0000018491,0.0000018475,0.0000018468, +0.0000018470,0.0000018480,0.0000018496,0.0000018507,0.0000018522, +0.0000018538,0.0000018551,0.0000018564,0.0000018564,0.0000018577, +0.0000018587,0.0000018590,0.0000018586,0.0000018580,0.0000018571, +0.0000018559,0.0000018548,0.0000018537,0.0000018524,0.0000018509, +0.0000018491,0.0000018471,0.0000018448,0.0000018428,0.0000018413, +0.0000018403,0.0000018394,0.0000018381,0.0000018356,0.0000018314, +0.0000018253,0.0000018178,0.0000018103,0.0000018030,0.0000017960, +0.0000017901,0.0000017876,0.0000017861,0.0000017851,0.0000017853, +0.0000017865,0.0000017888,0.0000017921,0.0000017970,0.0000018030, +0.0000018096,0.0000018158,0.0000018213,0.0000018259,0.0000018296, +0.0000018328,0.0000018354,0.0000018358,0.0000018356,0.0000018350, +0.0000018339,0.0000018324,0.0000018307,0.0000018287,0.0000018263, +0.0000018244,0.0000018226,0.0000018212,0.0000018204,0.0000018199, +0.0000018192,0.0000018185,0.0000018182,0.0000018180,0.0000018177, +0.0000018177,0.0000018176,0.0000018178,0.0000018184,0.0000018189, +0.0000018191,0.0000018191,0.0000018188,0.0000018181,0.0000018170, +0.0000018155,0.0000018136,0.0000018113,0.0000018084,0.0000018052, +0.0000018016,0.0000017971,0.0000017922,0.0000017876,0.0000017837, +0.0000017813,0.0000017805,0.0000017801,0.0000017803,0.0000017812, +0.0000017822,0.0000017828,0.0000017829,0.0000017826,0.0000017820, +0.0000017816,0.0000017813,0.0000017809,0.0000017805,0.0000017796, +0.0000017782,0.0000017768,0.0000017764,0.0000017774,0.0000017807, +0.0000017856,0.0000017908,0.0000017963,0.0000018018,0.0000018068, +0.0000018113,0.0000018157,0.0000018200,0.0000018235,0.0000018258, +0.0000018271,0.0000018274,0.0000018268,0.0000018265,0.0000018266, +0.0000018267,0.0000018269,0.0000018273,0.0000018278,0.0000018282, +0.0000018289,0.0000018287,0.0000018278,0.0000018263,0.0000018244, +0.0000018224,0.0000018200,0.0000018167,0.0000018129,0.0000018094, +0.0000018046,0.0000017989,0.0000017929,0.0000017869,0.0000017810, +0.0000017758,0.0000017724,0.0000017701,0.0000017673,0.0000017641, +0.0000017608,0.0000017580,0.0000017573,0.0000017601,0.0000017655, +0.0000017722,0.0000017770,0.0000017789,0.0000017779,0.0000017754, +0.0000017730,0.0000017718,0.0000017721,0.0000017735,0.0000017744, +0.0000017746,0.0000017741,0.0000017734,0.0000017729,0.0000017728, +0.0000017734,0.0000017740,0.0000017748,0.0000017758,0.0000017768, +0.0000017754,0.0000017708,0.0000017640,0.0000017575,0.0000017515, +0.0000017468,0.0000017443,0.0000017430,0.0000017440,0.0000017473, +0.0000017498,0.0000017543,0.0000017592,0.0000017633,0.0000017665, +0.0000017695,0.0000017729,0.0000017769,0.0000017810,0.0000017850, +0.0000017878,0.0000017893,0.0000017902,0.0000017913,0.0000017926, +0.0000017922,0.0000017926,0.0000017928,0.0000017927,0.0000017932, +0.0000017943,0.0000017952,0.0000017960,0.0000017970,0.0000017982, +0.0000017993,0.0000018002,0.0000018015,0.0000018032,0.0000018046, +0.0000018055,0.0000018062,0.0000018068,0.0000018069,0.0000018068, +0.0000018061,0.0000018051,0.0000018036,0.0000018019,0.0000017990, +0.0000017959,0.0000017929,0.0000017904,0.0000017885,0.0000017874, +0.0000017869,0.0000017869,0.0000017868,0.0000017877,0.0000017889, +0.0000017908,0.0000017938,0.0000017977,0.0000018018,0.0000018051, +0.0000018077,0.0000018094,0.0000018105,0.0000018113,0.0000018117, +0.0000018124,0.0000018140,0.0000018159,0.0000018180,0.0000018203, +0.0000018237,0.0000018285,0.0000018347,0.0000018411,0.0000018464, +0.0000018495,0.0000018505,0.0000018510,0.0000018493,0.0000018464, +0.0000018434,0.0000018415,0.0000018411,0.0000018410,0.0000018412, +0.0000018406,0.0000018395,0.0000018388,0.0000018383,0.0000018377, +0.0000018362,0.0000018326,0.0000018285,0.0000018253,0.0000018232, +0.0000018226,0.0000018239,0.0000018262,0.0000018287,0.0000018326, +0.0000018376,0.0000018444,0.0000018518,0.0000018589,0.0000018649, +0.0000018690,0.0000018719,0.0000018734,0.0000018737,0.0000018726, +0.0000018699,0.0000018654,0.0000018595,0.0000018538,0.0000018493, +0.0000018461,0.0000018440,0.0000018431,0.0000018429,0.0000018430, +0.0000018429,0.0000018425,0.0000018418,0.0000018410,0.0000018403, +0.0000018398,0.0000018397,0.0000018396,0.0000018395,0.0000018395, +0.0000018398,0.0000018402,0.0000018406,0.0000018411,0.0000018422, +0.0000018443,0.0000018480,0.0000018531,0.0000018589,0.0000018646, +0.0000018689,0.0000018711,0.0000018719,0.0000018720,0.0000018715, +0.0000018704,0.0000018688,0.0000018669,0.0000018646,0.0000018620, +0.0000018595,0.0000018572,0.0000018547,0.0000018514,0.0000018475, +0.0000018435,0.0000018400,0.0000018374,0.0000018358,0.0000018360, +0.0000018398,0.0000018453,0.0000018519,0.0000018584,0.0000018641, +0.0000018675,0.0000018687,0.0000018676,0.0000018646,0.0000018610, +0.0000018574,0.0000018548,0.0000018537,0.0000018541,0.0000018560, +0.0000018582,0.0000018604,0.0000018622,0.0000018634,0.0000018637, +0.0000018634,0.0000018625,0.0000018618,0.0000018608,0.0000018591, +0.0000018572,0.0000018561,0.0000018563,0.0000018578,0.0000018601, +0.0000018637,0.0000018685,0.0000018726,0.0000018757,0.0000018776, +0.0000018776,0.0000018754,0.0000018728,0.0000018698,0.0000018674, +0.0000018659,0.0000018659,0.0000018674,0.0000018695,0.0000018721, +0.0000018750,0.0000018783,0.0000018796,0.0000018795,0.0000018773, +0.0000018734,0.0000018699,0.0000018674,0.0000018658,0.0000018653, +0.0000018652,0.0000018649,0.0000018636,0.0000018610,0.0000018575, +0.0000018540,0.0000018515,0.0000018493,0.0000018457,0.0000018393, +0.0000018309,0.0000018217,0.0000018142,0.0000018091,0.0000018068, +0.0000018067,0.0000018077,0.0000018086,0.0000018094,0.0000018107, +0.0000018114,0.0000018113,0.0000018106,0.0000018097,0.0000018085, +0.0000018072,0.0000018055,0.0000018024,0.0000017986,0.0000017949, +0.0000017906,0.0000017861,0.0000017827,0.0000017806,0.0000017797, +0.0000017794,0.0000017790,0.0000017786,0.0000017782,0.0000017791, +0.0000017814,0.0000017845,0.0000017878,0.0000017908,0.0000017935, +0.0000017959,0.0000017972,0.0000017972,0.0000017961,0.0000017944, +0.0000017919,0.0000017887,0.0000017849,0.0000017810,0.0000017785, +0.0000017786,0.0000017804,0.0000017834,0.0000017864,0.0000017895, +0.0000017927,0.0000017950,0.0000017966,0.0000017976,0.0000017978, +0.0000017977,0.0000017972,0.0000017959,0.0000017949,0.0000017936, +0.0000017926,0.0000017927,0.0000017936,0.0000017940,0.0000017940, +0.0000017934,0.0000017939,0.0000017940,0.0000017940,0.0000017940, +0.0000017933,0.0000017946,0.0000017949,0.0000017966,0.0000017986, +0.0000017986,0.0000017992,0.0000017983,0.0000017974,0.0000017962, +0.0000017953,0.0000017953,0.0000017958,0.0000017966,0.0000017975, +0.0000017982,0.0000017993,0.0000017993,0.0000017991,0.0000017973, +0.0000017954,0.0000017940,0.0000017928,0.0000017908,0.0000017890, +0.0000017859,0.0000017828,0.0000017778,0.0000017740,0.0000017729, +0.0000017729,0.0000017718,0.0000017692,0.0000017688,0.0000017711, +0.0000017743,0.0000017769,0.0000017797,0.0000017830,0.0000017856, +0.0000017858,0.0000017848,0.0000017826,0.0000017803,0.0000017782, +0.0000017756,0.0000017740,0.0000017723,0.0000017709,0.0000017728, +0.0000017733,0.0000017740,0.0000017730,0.0000017699,0.0000017647, +0.0000017598,0.0000017566,0.0000017550,0.0000017564,0.0000017599, +0.0000017638,0.0000017656,0.0000017674,0.0000017702,0.0000017724, +0.0000017750,0.0000017779,0.0000017797,0.0000017823,0.0000017865, +0.0000017910,0.0000017945,0.0000017978,0.0000017998,0.0000018010, +0.0000018012,0.0000018016,0.0000018013,0.0000017995,0.0000017970, +0.0000017941,0.0000017906,0.0000017865,0.0000017820,0.0000017779, +0.0000017740,0.0000017709,0.0000017689,0.0000017669,0.0000017660, +0.0000017666,0.0000017688,0.0000017712,0.0000017736,0.0000017753, +0.0000017772,0.0000017784,0.0000017785,0.0000017772,0.0000017732, +0.0000017669,0.0000017598,0.0000017521,0.0000017445,0.0000017372, +0.0000017294,0.0000017221,0.0000017184,0.0000017159,0.0000017171, +0.0000017199,0.0000017243,0.0000017284,0.0000017319,0.0000017339, +0.0000017356,0.0000017371,0.0000017393,0.0000017432,0.0000017470, +0.0000017491,0.0000017502,0.0000017500,0.0000017478,0.0000017437, +0.0000017376,0.0000017312,0.0000017265,0.0000017255,0.0000017266, +0.0000017255,0.0000017250,0.0000017242,0.0000017265,0.0000017314, +0.0000017363,0.0000017395,0.0000017409,0.0000017411,0.0000017415, +0.0000017428,0.0000017446,0.0000017458,0.0000017464,0.0000017468, +0.0000017486,0.0000017518,0.0000017574,0.0000017648,0.0000017731, +0.0000017810,0.0000017875,0.0000017942,0.0000018020,0.0000018131, +0.0000018258,0.0000018383,0.0000018491,0.0000018580,0.0000018658, +0.0000018718,0.0000018753,0.0000018771,0.0000018782,0.0000018801, +0.0000018831,0.0000018875,0.0000018936,0.0000018994,0.0000019025, +0.0000019040,0.0000019034,0.0000019003,0.0000018956,0.0000018900, +0.0000018857,0.0000018843,0.0000018846,0.0000018853,0.0000018856, +0.0000018852,0.0000018828,0.0000018786,0.0000018738,0.0000018706, +0.0000018695,0.0000018687,0.0000018673,0.0000018659,0.0000018658, +0.0000018682,0.0000018742,0.0000018817,0.0000018863,0.0000018866, +0.0000018849,0.0000018856,0.0000018886,0.0000018902,0.0000018876, +0.0000018822,0.0000018764,0.0000018693,0.0000018606,0.0000018550, +0.0000018540,0.0000018559,0.0000018564,0.0000018536,0.0000018482, +0.0000018426,0.0000018384,0.0000018353,0.0000018327,0.0000018315, +0.0000018324,0.0000018348,0.0000018370,0.0000018371,0.0000018354, +0.0000018324,0.0000018285,0.0000018249,0.0000018231,0.0000018241, +0.0000018271,0.0000018306,0.0000018328,0.0000018329,0.0000018302, +0.0000018255,0.0000018214,0.0000018196,0.0000018188,0.0000018180, +0.0000018164,0.0000018137,0.0000018104,0.0000018081,0.0000018075, +0.0000018080,0.0000018090,0.0000018098,0.0000018103,0.0000018108, +0.0000018116,0.0000018135,0.0000018174,0.0000018230,0.0000018298, +0.0000018368,0.0000018431,0.0000018478,0.0000018504,0.0000018516, +0.0000018526,0.0000018539,0.0000018551,0.0000018559,0.0000018568, +0.0000018574,0.0000018568,0.0000018562,0.0000018560,0.0000018570, +0.0000018589,0.0000018608,0.0000018615,0.0000018594,0.0000018552, +0.0000018503,0.0000018445,0.0000018386,0.0000018337,0.0000018304, +0.0000018290,0.0000018294,0.0000018316,0.0000018343,0.0000018365, +0.0000018372,0.0000018367,0.0000018359,0.0000018357,0.0000018356, +0.0000018344,0.0000018315,0.0000018280,0.0000018255,0.0000018236, +0.0000018207,0.0000018154,0.0000018078,0.0000017995,0.0000017924, +0.0000017884,0.0000017876,0.0000017888,0.0000017913,0.0000017947, +0.0000017980,0.0000018001,0.0000018015,0.0000018033,0.0000018040, +0.0000018027,0.0000017995,0.0000017959,0.0000017939,0.0000017934, +0.0000017932,0.0000017946,0.0000017995,0.0000018089,0.0000018188, +0.0000018248,0.0000018231,0.0000018135,0.0000018000,0.0000017872, +0.0000017802,0.0000017775,0.0000017772,0.0000017758,0.0000017718, +0.0000017658,0.0000017590,0.0000017545,0.0000017542,0.0000017556, +0.0000017579,0.0000017598,0.0000017596,0.0000017577,0.0000017546, +0.0000017512,0.0000017483,0.0000017472,0.0000017473,0.0000017491, +0.0000017519,0.0000017538,0.0000017546,0.0000017540,0.0000017522, +0.0000017501,0.0000017479,0.0000017464,0.0000017452,0.0000017433, +0.0000017408,0.0000017387,0.0000017375,0.0000017380,0.0000017397, +0.0000017420,0.0000017443,0.0000017469,0.0000017501,0.0000017546, +0.0000017599,0.0000017653,0.0000017712,0.0000017766,0.0000017806, +0.0000017840,0.0000017879,0.0000017916,0.0000017957,0.0000017993, +0.0000018013,0.0000018012,0.0000018015,0.0000018000,0.0000017969, +0.0000017929,0.0000017889,0.0000017842,0.0000017786,0.0000017734, +0.0000017716,0.0000017744,0.0000017810,0.0000017876,0.0000017933, +0.0000017980,0.0000018027,0.0000018060,0.0000018085,0.0000018103, +0.0000018101,0.0000018076,0.0000018043,0.0000018017,0.0000018001, +0.0000017973,0.0000017917,0.0000017878,0.0000017897,0.0000017943, +0.0000017955,0.0000017929,0.0000017903,0.0000017879,0.0000017848, +0.0000017832,0.0000017829,0.0000017830,0.0000018110,0.0000018666, +0.0000018902,0.0000018827,0.0000018717,0.0000018682,0.0000018688, +0.0000018741,0.0000018805,0.0000018720,0.0000018366,0.0000018054, +0.0000017925,0.0000017902,0.0000017938,0.0000017947,0.0000017864, +0.0000017734,0.0000017618,0.0000017541,0.0000017501,0.0000017486, +0.0000017486,0.0000017488,0.0000017489,0.0000017487,0.0000017482, +0.0000017484,0.0000017522,0.0000017633,0.0000017772,0.0000017874, +0.0000017882,0.0000017807,0.0000017661,0.0000017541,0.0000017526, +0.0000017568,0.0000017616,0.0000017700,0.0000017794,0.0000017844, +0.0000017983,0.0000018269,0.0000018500,0.0000018573,0.0000018568, +0.0000018525,0.0000018450,0.0000018352,0.0000018247,0.0000018163, +0.0000018120,0.0000018121,0.0000018171,0.0000018264,0.0000018359, +0.0000018400,0.0000018353,0.0000018186,0.0000017959,0.0000017768, +0.0000017660,0.0000017626,0.0000017632,0.0000017657,0.0000017656, +0.0000017593,0.0000017497,0.0000017423,0.0000017420,0.0000017493, +0.0000017628,0.0000017772,0.0000017875,0.0000017920,0.0000017911, +0.0000017849,0.0000017776,0.0000017740,0.0000017738,0.0000017749, +0.0000017763,0.0000017763,0.0000017713,0.0000017635,0.0000017588, +0.0000017580,0.0000017573,0.0000017548,0.0000017518,0.0000017500, +0.0000017497,0.0000017505,0.0000017536,0.0000017610,0.0000017709, +0.0000017780,0.0000017796,0.0000017796,0.0000017812,0.0000017837, +0.0000017843,0.0000017832,0.0000017797,0.0000017754,0.0000017722, +0.0000017707,0.0000017703,0.0000017708,0.0000017725,0.0000017737, +0.0000017736,0.0000017729,0.0000017718,0.0000017696,0.0000017659, +0.0000017615,0.0000017578,0.0000017553,0.0000017537,0.0000017522, +0.0000017511,0.0000017506,0.0000017504,0.0000017500,0.0000017495, +0.0000017491,0.0000017488,0.0000017487,0.0000017491,0.0000017503, +0.0000017520,0.0000017537,0.0000017549,0.0000017555,0.0000017558, +0.0000017563,0.0000017571,0.0000017581,0.0000017591,0.0000017602, +0.0000017607,0.0000017599,0.0000017580,0.0000017564,0.0000017562, +0.0000017583,0.0000017638,0.0000017707,0.0000017753,0.0000017755, +0.0000017715,0.0000017658,0.0000017604,0.0000017531,0.0000017480, +0.0000017505,0.0000017646,0.0000017824,0.0000018028,0.0000018031, +0.0000018064,0.0000018133,0.0000018212,0.0000018282,0.0000018333, +0.0000018367,0.0000018387,0.0000018402,0.0000018416,0.0000018429, +0.0000018439,0.0000018450,0.0000018458,0.0000018460,0.0000018458, +0.0000018455,0.0000018450,0.0000018442,0.0000018434,0.0000018428, +0.0000018428,0.0000018430,0.0000018429,0.0000018427,0.0000018427, +0.0000018436,0.0000018458,0.0000018488,0.0000018508,0.0000018514, +0.0000018515,0.0000018513,0.0000018513,0.0000018514,0.0000018515, +0.0000018514,0.0000018511,0.0000018504,0.0000018495,0.0000018486, +0.0000018472,0.0000018456,0.0000018443,0.0000018436,0.0000018435, +0.0000018447,0.0000018462,0.0000018472,0.0000018477,0.0000018476, +0.0000018467,0.0000018450,0.0000018424,0.0000018391,0.0000018351, +0.0000018307,0.0000018263,0.0000018220,0.0000018179,0.0000018141, +0.0000018105,0.0000018076,0.0000018064,0.0000018055,0.0000018058, +0.0000018065,0.0000018077,0.0000018093,0.0000018115,0.0000018140, +0.0000018161,0.0000018177,0.0000018191,0.0000018207,0.0000018223, +0.0000018243,0.0000018270,0.0000018304,0.0000018341,0.0000018382, +0.0000018424,0.0000018467,0.0000018498,0.0000018515,0.0000018522, +0.0000018529,0.0000018541,0.0000018555,0.0000018565,0.0000018574, +0.0000018577,0.0000018578,0.0000018583,0.0000018592,0.0000018601, +0.0000018609,0.0000018615,0.0000018616,0.0000018608,0.0000018590, +0.0000018567,0.0000018541,0.0000018512,0.0000018484,0.0000018460, +0.0000018441,0.0000018428,0.0000018423,0.0000018426,0.0000018431, +0.0000018436,0.0000018446,0.0000018461,0.0000018478,0.0000018497, +0.0000018511,0.0000018530,0.0000018548,0.0000018564,0.0000018579, +0.0000018579,0.0000018588,0.0000018590,0.0000018584,0.0000018572, +0.0000018562,0.0000018556,0.0000018549,0.0000018540,0.0000018529, +0.0000018517,0.0000018502,0.0000018480,0.0000018455,0.0000018440, +0.0000018436,0.0000018435,0.0000018428,0.0000018411,0.0000018380, +0.0000018333,0.0000018268,0.0000018187,0.0000018102,0.0000018018, +0.0000017940,0.0000017875,0.0000017847,0.0000017836,0.0000017828, +0.0000017831,0.0000017851,0.0000017886,0.0000017927,0.0000017970, +0.0000018010,0.0000018048,0.0000018085,0.0000018120,0.0000018152, +0.0000018179,0.0000018201,0.0000018216,0.0000018224,0.0000018227, +0.0000018226,0.0000018224,0.0000018225,0.0000018216,0.0000018208, +0.0000018206,0.0000018209,0.0000018214,0.0000018221,0.0000018227, +0.0000018230,0.0000018230,0.0000018226,0.0000018223,0.0000018224, +0.0000018230,0.0000018236,0.0000018241,0.0000018244,0.0000018243, +0.0000018239,0.0000018233,0.0000018224,0.0000018212,0.0000018196, +0.0000018175,0.0000018149,0.0000018116,0.0000018075,0.0000018028, +0.0000017977,0.0000017925,0.0000017878,0.0000017843,0.0000017822, +0.0000017811,0.0000017807,0.0000017798,0.0000017782,0.0000017764, +0.0000017744,0.0000017726,0.0000017711,0.0000017702,0.0000017699, +0.0000017703,0.0000017708,0.0000017712,0.0000017715,0.0000017717, +0.0000017726,0.0000017752,0.0000017795,0.0000017845,0.0000017898, +0.0000017951,0.0000017998,0.0000018039,0.0000018081,0.0000018125, +0.0000018165,0.0000018196,0.0000018221,0.0000018241,0.0000018256, +0.0000018272,0.0000018291,0.0000018310,0.0000018317,0.0000018322, +0.0000018326,0.0000018333,0.0000018345,0.0000018352,0.0000018350, +0.0000018345,0.0000018336,0.0000018322,0.0000018300,0.0000018271, +0.0000018237,0.0000018206,0.0000018167,0.0000018123,0.0000018074, +0.0000018028,0.0000017985,0.0000017942,0.0000017900,0.0000017865, +0.0000017826,0.0000017783,0.0000017739,0.0000017700,0.0000017661, +0.0000017628,0.0000017607,0.0000017609,0.0000017633,0.0000017686, +0.0000017758,0.0000017811,0.0000017829,0.0000017812,0.0000017771, +0.0000017732,0.0000017707,0.0000017697,0.0000017692,0.0000017688, +0.0000017682,0.0000017683,0.0000017702,0.0000017724,0.0000017742, +0.0000017770,0.0000017788,0.0000017799,0.0000017799,0.0000017781, +0.0000017739,0.0000017678,0.0000017619,0.0000017574,0.0000017546, +0.0000017525,0.0000017514,0.0000017509,0.0000017512,0.0000017512, +0.0000017527,0.0000017551,0.0000017563,0.0000017606,0.0000017655, +0.0000017707,0.0000017763,0.0000017801,0.0000017843,0.0000017879, +0.0000017909,0.0000017927,0.0000017953,0.0000017973,0.0000017985, +0.0000017999,0.0000018016,0.0000018027,0.0000018037,0.0000018051, +0.0000018060,0.0000018074,0.0000018089,0.0000018097,0.0000018103, +0.0000018111,0.0000018113,0.0000018110,0.0000018102,0.0000018089, +0.0000018075,0.0000018056,0.0000018035,0.0000018012,0.0000017986, +0.0000017958,0.0000017932,0.0000017908,0.0000017887,0.0000017876, +0.0000017869,0.0000017874,0.0000017885,0.0000017904,0.0000017931, +0.0000017962,0.0000017994,0.0000018026,0.0000018055,0.0000018077, +0.0000018092,0.0000018106,0.0000018117,0.0000018127,0.0000018138, +0.0000018146,0.0000018159,0.0000018179,0.0000018201,0.0000018228, +0.0000018268,0.0000018325,0.0000018388,0.0000018444,0.0000018478, +0.0000018490,0.0000018494,0.0000018481,0.0000018460,0.0000018438, +0.0000018425,0.0000018422,0.0000018427,0.0000018437,0.0000018439, +0.0000018432,0.0000018424,0.0000018415,0.0000018403,0.0000018393, +0.0000018374,0.0000018343,0.0000018304,0.0000018278,0.0000018271, +0.0000018278,0.0000018294,0.0000018310,0.0000018330,0.0000018354, +0.0000018395,0.0000018455,0.0000018525,0.0000018596,0.0000018656, +0.0000018698,0.0000018723,0.0000018736,0.0000018740,0.0000018727, +0.0000018688,0.0000018631,0.0000018568,0.0000018507,0.0000018457, +0.0000018423,0.0000018406,0.0000018401,0.0000018402,0.0000018405, +0.0000018408,0.0000018408,0.0000018407,0.0000018406,0.0000018405, +0.0000018403,0.0000018402,0.0000018405,0.0000018410,0.0000018414, +0.0000018416,0.0000018414,0.0000018409,0.0000018402,0.0000018400, +0.0000018404,0.0000018416,0.0000018441,0.0000018480,0.0000018535, +0.0000018599,0.0000018659,0.0000018700,0.0000018723,0.0000018732, +0.0000018735,0.0000018730,0.0000018720,0.0000018706,0.0000018691, +0.0000018672,0.0000018655,0.0000018642,0.0000018631,0.0000018617, +0.0000018596,0.0000018567,0.0000018532,0.0000018496,0.0000018462, +0.0000018436,0.0000018429,0.0000018440,0.0000018474,0.0000018509, +0.0000018566,0.0000018616,0.0000018651,0.0000018668,0.0000018663, +0.0000018641,0.0000018603,0.0000018566,0.0000018539,0.0000018532, +0.0000018542,0.0000018564,0.0000018594,0.0000018622,0.0000018638, +0.0000018645,0.0000018642,0.0000018631,0.0000018619,0.0000018601, +0.0000018579,0.0000018554,0.0000018536,0.0000018526,0.0000018520, +0.0000018517,0.0000018528,0.0000018560,0.0000018600,0.0000018638, +0.0000018674,0.0000018704,0.0000018720,0.0000018731,0.0000018742, +0.0000018744,0.0000018748,0.0000018747,0.0000018744,0.0000018741, +0.0000018737,0.0000018744,0.0000018764,0.0000018788,0.0000018816, +0.0000018845,0.0000018849,0.0000018829,0.0000018790,0.0000018738, +0.0000018688,0.0000018654,0.0000018640,0.0000018640,0.0000018645, +0.0000018647,0.0000018636,0.0000018609,0.0000018573,0.0000018535, +0.0000018500,0.0000018468,0.0000018432,0.0000018380,0.0000018304, +0.0000018216,0.0000018147,0.0000018103,0.0000018087,0.0000018086, +0.0000018093,0.0000018096,0.0000018094,0.0000018094,0.0000018094, +0.0000018092,0.0000018095,0.0000018097,0.0000018091,0.0000018076, +0.0000018053,0.0000018023,0.0000017989,0.0000017954,0.0000017923, +0.0000017896,0.0000017874,0.0000017853,0.0000017835,0.0000017823, +0.0000017832,0.0000017850,0.0000017874,0.0000017901,0.0000017924, +0.0000017943,0.0000017959,0.0000017969,0.0000017971,0.0000017965, +0.0000017956,0.0000017942,0.0000017919,0.0000017890,0.0000017870, +0.0000017870,0.0000017883,0.0000017902,0.0000017922,0.0000017939, +0.0000017966,0.0000017997,0.0000018020,0.0000018041,0.0000018059, +0.0000018069,0.0000018071,0.0000018069,0.0000018065,0.0000018058, +0.0000018045,0.0000018025,0.0000018014,0.0000018002,0.0000017987, +0.0000017970,0.0000017956,0.0000017948,0.0000017942,0.0000017941, +0.0000017936,0.0000017945,0.0000017950,0.0000017968,0.0000017993, +0.0000018012,0.0000018020,0.0000018023,0.0000018021,0.0000018010, +0.0000018003,0.0000017997,0.0000017993,0.0000017995,0.0000018008, +0.0000018017,0.0000018028,0.0000018042,0.0000018055,0.0000018056, +0.0000018042,0.0000018034,0.0000018014,0.0000017991,0.0000017970, +0.0000017950,0.0000017929,0.0000017898,0.0000017855,0.0000017811, +0.0000017776,0.0000017758,0.0000017740,0.0000017729,0.0000017736, +0.0000017757,0.0000017791,0.0000017826,0.0000017864,0.0000017906, +0.0000017926,0.0000017932,0.0000017911,0.0000017879,0.0000017849, +0.0000017814,0.0000017782,0.0000017756,0.0000017726,0.0000017728, +0.0000017732,0.0000017746,0.0000017749,0.0000017741,0.0000017703, +0.0000017656,0.0000017608,0.0000017574,0.0000017571,0.0000017592, +0.0000017615,0.0000017625,0.0000017635,0.0000017650,0.0000017665, +0.0000017686,0.0000017720,0.0000017750,0.0000017785,0.0000017826, +0.0000017872,0.0000017918,0.0000017967,0.0000017999,0.0000018021, +0.0000018027,0.0000018026,0.0000018022,0.0000018014,0.0000017999, +0.0000017984,0.0000017971,0.0000017943,0.0000017907,0.0000017865, +0.0000017814,0.0000017773,0.0000017743,0.0000017711,0.0000017696, +0.0000017702,0.0000017727,0.0000017757,0.0000017786,0.0000017804, +0.0000017822,0.0000017833,0.0000017835,0.0000017824,0.0000017793, +0.0000017747,0.0000017692,0.0000017634,0.0000017571,0.0000017503, +0.0000017429,0.0000017348,0.0000017272,0.0000017222,0.0000017195, +0.0000017191,0.0000017216,0.0000017233,0.0000017249,0.0000017247, +0.0000017245,0.0000017249,0.0000017271,0.0000017317,0.0000017368, +0.0000017415,0.0000017456,0.0000017481,0.0000017486,0.0000017477, +0.0000017449,0.0000017402,0.0000017355,0.0000017335,0.0000017336, +0.0000017317,0.0000017287,0.0000017267,0.0000017273,0.0000017313, +0.0000017361,0.0000017394,0.0000017412,0.0000017414,0.0000017412, +0.0000017417,0.0000017422,0.0000017426,0.0000017422,0.0000017409, +0.0000017390,0.0000017375,0.0000017388,0.0000017424,0.0000017471, +0.0000017516,0.0000017559,0.0000017592,0.0000017626,0.0000017695, +0.0000017811,0.0000017968,0.0000018131,0.0000018275,0.0000018406, +0.0000018516,0.0000018598,0.0000018661,0.0000018709,0.0000018748, +0.0000018772,0.0000018794,0.0000018826,0.0000018861,0.0000018898, +0.0000018940,0.0000018980,0.0000018995,0.0000018999,0.0000018985, +0.0000018954,0.0000018921,0.0000018895,0.0000018876,0.0000018874, +0.0000018882,0.0000018888,0.0000018888,0.0000018879,0.0000018849, +0.0000018801,0.0000018744,0.0000018685,0.0000018639,0.0000018611, +0.0000018613,0.0000018644,0.0000018692,0.0000018745,0.0000018797, +0.0000018839,0.0000018865,0.0000018879,0.0000018890,0.0000018893, +0.0000018869,0.0000018813,0.0000018752,0.0000018691,0.0000018616, +0.0000018555,0.0000018527,0.0000018529,0.0000018530,0.0000018505, +0.0000018461,0.0000018420,0.0000018387,0.0000018361,0.0000018348, +0.0000018355,0.0000018384,0.0000018420,0.0000018441,0.0000018441, +0.0000018425,0.0000018391,0.0000018346,0.0000018310,0.0000018295, +0.0000018303,0.0000018322,0.0000018335,0.0000018332,0.0000018309, +0.0000018266,0.0000018221,0.0000018187,0.0000018165,0.0000018151, +0.0000018131,0.0000018095,0.0000018059,0.0000018048,0.0000018058, +0.0000018080,0.0000018101,0.0000018123,0.0000018140,0.0000018148, +0.0000018163,0.0000018187,0.0000018227,0.0000018292,0.0000018369, +0.0000018441,0.0000018497,0.0000018530,0.0000018551,0.0000018566, +0.0000018585,0.0000018601,0.0000018605,0.0000018600,0.0000018589, +0.0000018576,0.0000018564,0.0000018558,0.0000018561,0.0000018576, +0.0000018601,0.0000018624,0.0000018618,0.0000018590,0.0000018553, +0.0000018516,0.0000018473,0.0000018419,0.0000018357,0.0000018301, +0.0000018271,0.0000018276,0.0000018307,0.0000018347,0.0000018375, +0.0000018383,0.0000018371,0.0000018353,0.0000018346,0.0000018351, +0.0000018362,0.0000018365,0.0000018362,0.0000018344,0.0000018320, +0.0000018284,0.0000018228,0.0000018146,0.0000018039,0.0000017934, +0.0000017862,0.0000017837,0.0000017845,0.0000017884,0.0000017943, +0.0000017984,0.0000017991,0.0000017980,0.0000017978,0.0000017983, +0.0000017980,0.0000017954,0.0000017921,0.0000017915,0.0000017934, +0.0000017962,0.0000017984,0.0000018020,0.0000018093,0.0000018189, +0.0000018254,0.0000018260,0.0000018203,0.0000018077,0.0000017920, +0.0000017798,0.0000017747,0.0000017740,0.0000017745,0.0000017733, +0.0000017682,0.0000017609,0.0000017544,0.0000017510,0.0000017508, +0.0000017528,0.0000017547,0.0000017559,0.0000017552,0.0000017544, +0.0000017525,0.0000017505,0.0000017490,0.0000017489,0.0000017500, +0.0000017516,0.0000017538,0.0000017545,0.0000017538,0.0000017523, +0.0000017501,0.0000017480,0.0000017454,0.0000017417,0.0000017370, +0.0000017325,0.0000017287,0.0000017269,0.0000017278,0.0000017310, +0.0000017352,0.0000017391,0.0000017423,0.0000017456,0.0000017489, +0.0000017520,0.0000017556,0.0000017594,0.0000017632,0.0000017668, +0.0000017708,0.0000017751,0.0000017788,0.0000017828,0.0000017876, +0.0000017915,0.0000017962,0.0000017997,0.0000017992,0.0000017989, +0.0000017970,0.0000017936,0.0000017885,0.0000017833,0.0000017811, +0.0000017815,0.0000017846,0.0000017894,0.0000017945,0.0000017986, +0.0000018028,0.0000018065,0.0000018094,0.0000018113,0.0000018114, +0.0000018086,0.0000018046,0.0000018009,0.0000017978,0.0000017943, +0.0000017897,0.0000017880,0.0000017908,0.0000017946,0.0000017946, +0.0000017920,0.0000017884,0.0000017845,0.0000017826,0.0000017830, +0.0000017830,0.0000017956,0.0000018452,0.0000018867,0.0000018888, +0.0000018780,0.0000018721,0.0000018713,0.0000018740,0.0000018804, +0.0000018787,0.0000018540,0.0000018229,0.0000018035,0.0000017936, +0.0000017937,0.0000017944,0.0000017874,0.0000017764,0.0000017671, +0.0000017598,0.0000017554,0.0000017532,0.0000017525,0.0000017523, +0.0000017520,0.0000017516,0.0000017514,0.0000017513,0.0000017503, +0.0000017490,0.0000017500,0.0000017591,0.0000017753,0.0000017870, +0.0000017856,0.0000017736,0.0000017579,0.0000017528,0.0000017574, +0.0000017615,0.0000017674,0.0000017773,0.0000017844,0.0000017871, +0.0000017925,0.0000018011,0.0000018071,0.0000018069,0.0000018012, +0.0000017941,0.0000017886,0.0000017858,0.0000017848,0.0000017845, +0.0000017847,0.0000017872,0.0000017949,0.0000018092,0.0000018264, +0.0000018349,0.0000018310,0.0000018104,0.0000017864,0.0000017701, +0.0000017617,0.0000017591,0.0000017615,0.0000017655,0.0000017660, +0.0000017606,0.0000017513,0.0000017434,0.0000017421,0.0000017487, +0.0000017623,0.0000017772,0.0000017877,0.0000017913,0.0000017887, +0.0000017818,0.0000017761,0.0000017745,0.0000017750,0.0000017761, +0.0000017766,0.0000017743,0.0000017677,0.0000017621,0.0000017605, +0.0000017605,0.0000017589,0.0000017555,0.0000017523,0.0000017509, +0.0000017511,0.0000017521,0.0000017543,0.0000017604,0.0000017699, +0.0000017771,0.0000017793,0.0000017795,0.0000017807,0.0000017823, +0.0000017822,0.0000017797,0.0000017755,0.0000017722,0.0000017708, +0.0000017703,0.0000017701,0.0000017709,0.0000017722,0.0000017730, +0.0000017728,0.0000017727,0.0000017724,0.0000017710,0.0000017678, +0.0000017636,0.0000017602,0.0000017584,0.0000017576,0.0000017564, +0.0000017548,0.0000017532,0.0000017522,0.0000017519,0.0000017520, +0.0000017523,0.0000017529,0.0000017538,0.0000017544,0.0000017544, +0.0000017540,0.0000017533,0.0000017528,0.0000017527,0.0000017532, +0.0000017543,0.0000017560,0.0000017573,0.0000017576,0.0000017564, +0.0000017553,0.0000017558,0.0000017587,0.0000017647,0.0000017719, +0.0000017769,0.0000017773,0.0000017736,0.0000017679,0.0000017621, +0.0000017543,0.0000017491,0.0000017527,0.0000017687,0.0000017875, +0.0000017997,0.0000018048,0.0000018107,0.0000018199,0.0000018287, +0.0000018353,0.0000018395,0.0000018419,0.0000018432,0.0000018441, +0.0000018451,0.0000018467,0.0000018485,0.0000018500,0.0000018510, +0.0000018515,0.0000018514,0.0000018507,0.0000018497,0.0000018484, +0.0000018471,0.0000018459,0.0000018450,0.0000018446,0.0000018451, +0.0000018467,0.0000018486,0.0000018507,0.0000018530,0.0000018542, +0.0000018540,0.0000018532,0.0000018522,0.0000018515,0.0000018510, +0.0000018507,0.0000018509,0.0000018512,0.0000018517,0.0000018518, +0.0000018516,0.0000018513,0.0000018507,0.0000018499,0.0000018489, +0.0000018481,0.0000018476,0.0000018476,0.0000018485,0.0000018497, +0.0000018505,0.0000018515,0.0000018520,0.0000018518,0.0000018510, +0.0000018493,0.0000018476,0.0000018455,0.0000018429,0.0000018403, +0.0000018374,0.0000018336,0.0000018295,0.0000018239,0.0000018179, +0.0000018125,0.0000018091,0.0000018057,0.0000018046,0.0000018038, +0.0000018037,0.0000018056,0.0000018069,0.0000018078,0.0000018091, +0.0000018101,0.0000018108,0.0000018117,0.0000018133,0.0000018158, +0.0000018195,0.0000018240,0.0000018294,0.0000018353,0.0000018408, +0.0000018455,0.0000018487,0.0000018505,0.0000018516,0.0000018521, +0.0000018527,0.0000018536,0.0000018544,0.0000018545,0.0000018542, +0.0000018544,0.0000018550,0.0000018558,0.0000018567,0.0000018576, +0.0000018580,0.0000018576,0.0000018562,0.0000018545,0.0000018521, +0.0000018494,0.0000018468,0.0000018444,0.0000018423,0.0000018407, +0.0000018395,0.0000018390,0.0000018388,0.0000018386,0.0000018388, +0.0000018397,0.0000018409,0.0000018425,0.0000018441,0.0000018457, +0.0000018471,0.0000018484,0.0000018496,0.0000018503,0.0000018516, +0.0000018534,0.0000018555,0.0000018569,0.0000018577,0.0000018591, +0.0000018594,0.0000018588,0.0000018580,0.0000018573,0.0000018563, +0.0000018551,0.0000018539,0.0000018529,0.0000018519,0.0000018506, +0.0000018495,0.0000018490,0.0000018490,0.0000018488,0.0000018478, +0.0000018452,0.0000018408,0.0000018344,0.0000018266,0.0000018178, +0.0000018090,0.0000018012,0.0000017947,0.0000017901,0.0000017874, +0.0000017877,0.0000017894,0.0000017917,0.0000017943,0.0000017965, +0.0000017984,0.0000018006,0.0000018025,0.0000018040,0.0000018052, +0.0000018058,0.0000018060,0.0000018059,0.0000018056,0.0000018051, +0.0000018050,0.0000018052,0.0000018058,0.0000018069,0.0000018083, +0.0000018102,0.0000018128,0.0000018159,0.0000018191,0.0000018218, +0.0000018230,0.0000018235,0.0000018243,0.0000018254,0.0000018266, +0.0000018275,0.0000018281,0.0000018285,0.0000018289,0.0000018290, +0.0000018288,0.0000018283,0.0000018273,0.0000018259,0.0000018244, +0.0000018223,0.0000018193,0.0000018156,0.0000018115,0.0000018069, +0.0000018022,0.0000017978,0.0000017943,0.0000017918,0.0000017895, +0.0000017868,0.0000017835,0.0000017801,0.0000017770,0.0000017740, +0.0000017711,0.0000017691,0.0000017683,0.0000017686,0.0000017694, +0.0000017702,0.0000017708,0.0000017714,0.0000017731,0.0000017762, +0.0000017805,0.0000017849,0.0000017890,0.0000017931,0.0000017971, +0.0000018008,0.0000018046,0.0000018084,0.0000018122,0.0000018154, +0.0000018181,0.0000018205,0.0000018233,0.0000018268,0.0000018306, +0.0000018335,0.0000018354,0.0000018368,0.0000018378,0.0000018390, +0.0000018404,0.0000018413,0.0000018413,0.0000018412,0.0000018405, +0.0000018396,0.0000018384,0.0000018367,0.0000018341,0.0000018314, +0.0000018282,0.0000018240,0.0000018192,0.0000018146,0.0000018105, +0.0000018069,0.0000018047,0.0000018030,0.0000018007,0.0000017974, +0.0000017926,0.0000017870,0.0000017812,0.0000017759,0.0000017713, +0.0000017674,0.0000017651,0.0000017637,0.0000017657,0.0000017700, +0.0000017764,0.0000017821,0.0000017854,0.0000017835,0.0000017789, +0.0000017724,0.0000017675,0.0000017637,0.0000017626,0.0000017642, +0.0000017667,0.0000017702,0.0000017744,0.0000017779,0.0000017804, +0.0000017816,0.0000017820,0.0000017809,0.0000017789,0.0000017766, +0.0000017746,0.0000017719,0.0000017695,0.0000017678,0.0000017667, +0.0000017653,0.0000017628,0.0000017607,0.0000017583,0.0000017570, +0.0000017568,0.0000017580,0.0000017606,0.0000017650,0.0000017673, +0.0000017696,0.0000017729,0.0000017764,0.0000017789,0.0000017817, +0.0000017844,0.0000017872,0.0000017904,0.0000017936,0.0000017960, +0.0000017982,0.0000018000,0.0000018018,0.0000018038,0.0000018055, +0.0000018064,0.0000018068,0.0000018073,0.0000018072,0.0000018064, +0.0000018057,0.0000018047,0.0000018036,0.0000018026,0.0000018013, +0.0000018001,0.0000017981,0.0000017963,0.0000017944,0.0000017929, +0.0000017917,0.0000017910,0.0000017912,0.0000017927,0.0000017950, +0.0000017977,0.0000018007,0.0000018036,0.0000018061,0.0000018082, +0.0000018100,0.0000018115,0.0000018128,0.0000018140,0.0000018150, +0.0000018159,0.0000018170,0.0000018179,0.0000018193,0.0000018216, +0.0000018250,0.0000018297,0.0000018355,0.0000018412,0.0000018452, +0.0000018473,0.0000018481,0.0000018473,0.0000018456,0.0000018436, +0.0000018421,0.0000018420,0.0000018429,0.0000018446,0.0000018460, +0.0000018466,0.0000018464,0.0000018458,0.0000018452,0.0000018445, +0.0000018430,0.0000018399,0.0000018356,0.0000018320,0.0000018302, +0.0000018300,0.0000018309,0.0000018319,0.0000018333,0.0000018347, +0.0000018371,0.0000018409,0.0000018461,0.0000018529,0.0000018596, +0.0000018652,0.0000018693,0.0000018723,0.0000018738,0.0000018740, +0.0000018727,0.0000018686,0.0000018623,0.0000018551,0.0000018486, +0.0000018438,0.0000018409,0.0000018395,0.0000018391,0.0000018394, +0.0000018400,0.0000018404,0.0000018407,0.0000018409,0.0000018412, +0.0000018419,0.0000018427,0.0000018434,0.0000018439,0.0000018448, +0.0000018459,0.0000018463,0.0000018456,0.0000018439,0.0000018418, +0.0000018400,0.0000018391,0.0000018395,0.0000018411,0.0000018436, +0.0000018472,0.0000018520,0.0000018575,0.0000018629,0.0000018670, +0.0000018700,0.0000018718,0.0000018727,0.0000018728,0.0000018719, +0.0000018712,0.0000018701,0.0000018688,0.0000018675,0.0000018665, +0.0000018657,0.0000018656,0.0000018653,0.0000018640,0.0000018622, +0.0000018599,0.0000018571,0.0000018546,0.0000018523,0.0000018506, +0.0000018503,0.0000018519,0.0000018548,0.0000018573,0.0000018597, +0.0000018628,0.0000018648,0.0000018649,0.0000018633,0.0000018603, +0.0000018571,0.0000018550,0.0000018542,0.0000018549,0.0000018569, +0.0000018593,0.0000018614,0.0000018626,0.0000018627,0.0000018621, +0.0000018610,0.0000018596,0.0000018575,0.0000018558,0.0000018544, +0.0000018535,0.0000018527,0.0000018527,0.0000018530,0.0000018539, +0.0000018552,0.0000018569,0.0000018593,0.0000018613,0.0000018636, +0.0000018667,0.0000018701,0.0000018736,0.0000018766,0.0000018791, +0.0000018814,0.0000018826,0.0000018825,0.0000018819,0.0000018808, +0.0000018796,0.0000018797,0.0000018812,0.0000018827,0.0000018835, +0.0000018843,0.0000018840,0.0000018820,0.0000018784,0.0000018730, +0.0000018679,0.0000018648,0.0000018642,0.0000018649,0.0000018659, +0.0000018660,0.0000018641,0.0000018600,0.0000018551,0.0000018511, +0.0000018484,0.0000018461,0.0000018425,0.0000018366,0.0000018282, +0.0000018195,0.0000018132,0.0000018100,0.0000018093,0.0000018085, +0.0000018082,0.0000018083,0.0000018083,0.0000018092,0.0000018100, +0.0000018099,0.0000018096,0.0000018087,0.0000018067,0.0000018042, +0.0000018018,0.0000017993,0.0000017969,0.0000017949,0.0000017933, +0.0000017917,0.0000017911,0.0000017920,0.0000017936,0.0000017955, +0.0000017971,0.0000017986,0.0000017994,0.0000017998,0.0000017998, +0.0000017992,0.0000017982,0.0000017972,0.0000017959,0.0000017937, +0.0000017925,0.0000017930,0.0000017947,0.0000017966,0.0000017985, +0.0000017995,0.0000018001,0.0000018018,0.0000018037,0.0000018057, +0.0000018083,0.0000018110,0.0000018135,0.0000018152,0.0000018165, +0.0000018175,0.0000018184,0.0000018188,0.0000018183,0.0000018173, +0.0000018152,0.0000018126,0.0000018092,0.0000018061,0.0000018030, +0.0000018005,0.0000017984,0.0000017973,0.0000017961,0.0000017963, +0.0000017977,0.0000017994,0.0000018002,0.0000018005,0.0000018004, +0.0000018005,0.0000017999,0.0000017996,0.0000017991,0.0000017991, +0.0000018001,0.0000018010,0.0000018022,0.0000018041,0.0000018057, +0.0000018073,0.0000018082,0.0000018080,0.0000018080,0.0000018064, +0.0000018040,0.0000018027,0.0000018005,0.0000017990,0.0000017968, +0.0000017944,0.0000017890,0.0000017838,0.0000017800,0.0000017782, +0.0000017774,0.0000017776,0.0000017796,0.0000017831,0.0000017879, +0.0000017932,0.0000017968,0.0000017998,0.0000017996,0.0000017980, +0.0000017952,0.0000017916,0.0000017880,0.0000017849,0.0000017806, +0.0000017786,0.0000017780,0.0000017783,0.0000017785,0.0000017786, +0.0000017766,0.0000017730,0.0000017685,0.0000017652,0.0000017637, +0.0000017638,0.0000017639,0.0000017638,0.0000017629,0.0000017625, +0.0000017620,0.0000017618,0.0000017632,0.0000017661,0.0000017701, +0.0000017751,0.0000017804,0.0000017869,0.0000017934,0.0000017985, +0.0000018015,0.0000018022,0.0000018020,0.0000018006,0.0000017996, +0.0000017997,0.0000017997,0.0000018004,0.0000017996,0.0000017982, +0.0000017951,0.0000017904,0.0000017861,0.0000017822,0.0000017775, +0.0000017743,0.0000017734,0.0000017752,0.0000017782,0.0000017812, +0.0000017830,0.0000017845,0.0000017850,0.0000017849,0.0000017837, +0.0000017815,0.0000017788,0.0000017755,0.0000017717,0.0000017670, +0.0000017624,0.0000017567,0.0000017503,0.0000017430,0.0000017363, +0.0000017308,0.0000017277,0.0000017264,0.0000017267,0.0000017268, +0.0000017255,0.0000017234,0.0000017226,0.0000017223,0.0000017248, +0.0000017290,0.0000017338,0.0000017386,0.0000017425,0.0000017449, +0.0000017463,0.0000017457,0.0000017447,0.0000017419,0.0000017413, +0.0000017417,0.0000017399,0.0000017363,0.0000017328,0.0000017311, +0.0000017333,0.0000017373,0.0000017404,0.0000017419,0.0000017422, +0.0000017424,0.0000017429,0.0000017431,0.0000017428,0.0000017421, +0.0000017412,0.0000017393,0.0000017374,0.0000017371,0.0000017371, +0.0000017378,0.0000017379,0.0000017394,0.0000017395,0.0000017390, +0.0000017397,0.0000017432,0.0000017517,0.0000017640,0.0000017786, +0.0000017959,0.0000018133,0.0000018283,0.0000018405,0.0000018512, +0.0000018607,0.0000018677,0.0000018728,0.0000018765,0.0000018776, +0.0000018777,0.0000018786,0.0000018812,0.0000018848,0.0000018885, +0.0000018918,0.0000018940,0.0000018949,0.0000018950,0.0000018936, +0.0000018920,0.0000018910,0.0000018908,0.0000018915,0.0000018923, +0.0000018924,0.0000018909,0.0000018868,0.0000018796,0.0000018698, +0.0000018613,0.0000018575,0.0000018585,0.0000018621,0.0000018652, +0.0000018683,0.0000018741,0.0000018817,0.0000018870,0.0000018886, +0.0000018885,0.0000018880,0.0000018855,0.0000018799,0.0000018741, +0.0000018688,0.0000018629,0.0000018564,0.0000018528,0.0000018514, +0.0000018499,0.0000018478,0.0000018451,0.0000018423,0.0000018395, +0.0000018372,0.0000018371,0.0000018401,0.0000018441,0.0000018473, +0.0000018491,0.0000018489,0.0000018467,0.0000018428,0.0000018388, +0.0000018360,0.0000018344,0.0000018333,0.0000018325,0.0000018317, +0.0000018300,0.0000018265,0.0000018218,0.0000018175,0.0000018146, +0.0000018125,0.0000018093,0.0000018053,0.0000018036,0.0000018041, +0.0000018061,0.0000018087,0.0000018115,0.0000018144,0.0000018164, +0.0000018182,0.0000018204,0.0000018235,0.0000018284,0.0000018351, +0.0000018419,0.0000018476,0.0000018518,0.0000018547,0.0000018575, +0.0000018615,0.0000018658,0.0000018680,0.0000018677,0.0000018655, +0.0000018625,0.0000018601,0.0000018587,0.0000018582,0.0000018589, +0.0000018614,0.0000018650,0.0000018663,0.0000018656,0.0000018629, +0.0000018591,0.0000018552,0.0000018515,0.0000018475,0.0000018425, +0.0000018369,0.0000018324,0.0000018309,0.0000018319,0.0000018344, +0.0000018363,0.0000018369,0.0000018363,0.0000018346,0.0000018334, +0.0000018338,0.0000018365,0.0000018406,0.0000018434,0.0000018436, +0.0000018401,0.0000018341,0.0000018277,0.0000018205,0.0000018102, +0.0000017973,0.0000017866,0.0000017822,0.0000017836,0.0000017892, +0.0000017954,0.0000017982,0.0000017972,0.0000017947,0.0000017933, +0.0000017935,0.0000017934,0.0000017913,0.0000017898,0.0000017911, +0.0000017955,0.0000017994,0.0000018016,0.0000018041,0.0000018092, +0.0000018167,0.0000018239,0.0000018270,0.0000018243,0.0000018136, +0.0000017984,0.0000017842,0.0000017749,0.0000017720,0.0000017725, +0.0000017730,0.0000017712,0.0000017658,0.0000017595,0.0000017542, +0.0000017518,0.0000017497,0.0000017491,0.0000017497,0.0000017505, +0.0000017512,0.0000017511,0.0000017510,0.0000017507,0.0000017509, +0.0000017520,0.0000017534,0.0000017543,0.0000017547,0.0000017547, +0.0000017542,0.0000017533,0.0000017508,0.0000017460,0.0000017407, +0.0000017354,0.0000017296,0.0000017252,0.0000017215,0.0000017221, +0.0000017248,0.0000017284,0.0000017324,0.0000017364,0.0000017396, +0.0000017420,0.0000017443,0.0000017470,0.0000017499,0.0000017528, +0.0000017560,0.0000017594,0.0000017625,0.0000017661,0.0000017707, +0.0000017752,0.0000017801,0.0000017851,0.0000017892,0.0000017922, +0.0000017947,0.0000017942,0.0000017923,0.0000017913,0.0000017910, +0.0000017909,0.0000017915,0.0000017934,0.0000017966,0.0000018005, +0.0000018040,0.0000018071,0.0000018096,0.0000018118,0.0000018124, +0.0000018095,0.0000018046,0.0000017996,0.0000017951,0.0000017915, +0.0000017887,0.0000017881,0.0000017909,0.0000017943,0.0000017939, +0.0000017912,0.0000017858,0.0000017806,0.0000017807,0.0000017818, +0.0000017849,0.0000018211,0.0000018736,0.0000018906,0.0000018840, +0.0000018760,0.0000018737,0.0000018748,0.0000018798,0.0000018825, +0.0000018701,0.0000018441,0.0000018199,0.0000018010,0.0000017951, +0.0000017954,0.0000017903,0.0000017814,0.0000017737,0.0000017685, +0.0000017644,0.0000017604,0.0000017571,0.0000017549,0.0000017533, +0.0000017524,0.0000017523,0.0000017530,0.0000017540,0.0000017546, +0.0000017525,0.0000017486,0.0000017486,0.0000017585,0.0000017768, +0.0000017855,0.0000017804,0.0000017636,0.0000017551,0.0000017578, +0.0000017621,0.0000017644,0.0000017704,0.0000017794,0.0000017853, +0.0000017862,0.0000017852,0.0000017837,0.0000017826,0.0000017819, +0.0000017816,0.0000017814,0.0000017815,0.0000017814,0.0000017810, +0.0000017806,0.0000017798,0.0000017805,0.0000017863,0.0000018020, +0.0000018226,0.0000018313,0.0000018207,0.0000017969,0.0000017755, +0.0000017640,0.0000017580,0.0000017566,0.0000017615,0.0000017666, +0.0000017672,0.0000017619,0.0000017521,0.0000017437,0.0000017422, +0.0000017485,0.0000017627,0.0000017780,0.0000017877,0.0000017894, +0.0000017860,0.0000017794,0.0000017757,0.0000017756,0.0000017763, +0.0000017766,0.0000017759,0.0000017714,0.0000017651,0.0000017619, +0.0000017619,0.0000017617,0.0000017596,0.0000017564,0.0000017544, +0.0000017544,0.0000017549,0.0000017552,0.0000017568,0.0000017622, +0.0000017706,0.0000017771,0.0000017785,0.0000017782,0.0000017791, +0.0000017801,0.0000017787,0.0000017749,0.0000017713,0.0000017699, +0.0000017699,0.0000017702,0.0000017704,0.0000017711,0.0000017721, +0.0000017726,0.0000017726,0.0000017726,0.0000017725,0.0000017716, +0.0000017697,0.0000017673,0.0000017651,0.0000017638,0.0000017627, +0.0000017610,0.0000017585,0.0000017560,0.0000017544,0.0000017541, +0.0000017547,0.0000017559,0.0000017566,0.0000017565,0.0000017550, +0.0000017529,0.0000017516,0.0000017515,0.0000017523,0.0000017538, +0.0000017552,0.0000017557,0.0000017552,0.0000017547,0.0000017558, +0.0000017596,0.0000017660,0.0000017731,0.0000017784,0.0000017793, +0.0000017762,0.0000017708,0.0000017645,0.0000017561,0.0000017508, +0.0000017544,0.0000017713,0.0000017905,0.0000018016,0.0000018035, +0.0000018152,0.0000018261,0.0000018353,0.0000018408,0.0000018435, +0.0000018446,0.0000018455,0.0000018468,0.0000018485,0.0000018505, +0.0000018523,0.0000018534,0.0000018534,0.0000018531,0.0000018523, +0.0000018513,0.0000018500,0.0000018486,0.0000018471,0.0000018460, +0.0000018458,0.0000018464,0.0000018480,0.0000018506,0.0000018536, +0.0000018559,0.0000018570,0.0000018573,0.0000018565,0.0000018546, +0.0000018520,0.0000018495,0.0000018473,0.0000018458,0.0000018456, +0.0000018463,0.0000018480,0.0000018499,0.0000018515,0.0000018516, +0.0000018515,0.0000018514,0.0000018510,0.0000018504,0.0000018491, +0.0000018484,0.0000018480,0.0000018477,0.0000018479,0.0000018482, +0.0000018487,0.0000018490,0.0000018489,0.0000018485,0.0000018479, +0.0000018477,0.0000018472,0.0000018469,0.0000018467,0.0000018461, +0.0000018447,0.0000018426,0.0000018385,0.0000018334,0.0000018281, +0.0000018227,0.0000018177,0.0000018135,0.0000018101,0.0000018088, +0.0000018086,0.0000018074,0.0000018067,0.0000018071,0.0000018074, +0.0000018049,0.0000018043,0.0000018051,0.0000018062,0.0000018087, +0.0000018128,0.0000018187,0.0000018256,0.0000018326,0.0000018392, +0.0000018446,0.0000018483,0.0000018502,0.0000018508,0.0000018511, +0.0000018516,0.0000018518,0.0000018514,0.0000018509,0.0000018508, +0.0000018511,0.0000018517,0.0000018525,0.0000018533,0.0000018535, +0.0000018530,0.0000018519,0.0000018501,0.0000018477,0.0000018450, +0.0000018424,0.0000018399,0.0000018377,0.0000018359,0.0000018347, +0.0000018340,0.0000018336,0.0000018332,0.0000018328,0.0000018331, +0.0000018342,0.0000018356,0.0000018370,0.0000018382,0.0000018392, +0.0000018398,0.0000018402,0.0000018405,0.0000018410,0.0000018421, +0.0000018438,0.0000018458,0.0000018484,0.0000018514,0.0000018547, +0.0000018578,0.0000018587,0.0000018598,0.0000018606,0.0000018603, +0.0000018598,0.0000018594,0.0000018590,0.0000018586,0.0000018581, +0.0000018576,0.0000018573,0.0000018568,0.0000018560,0.0000018548, +0.0000018534,0.0000018515,0.0000018488,0.0000018451,0.0000018404, +0.0000018347,0.0000018284,0.0000018221,0.0000018158,0.0000018102, +0.0000018062,0.0000018041,0.0000018034,0.0000018035,0.0000018043, +0.0000018057,0.0000018073,0.0000018084,0.0000018089,0.0000018087, +0.0000018080,0.0000018074,0.0000018060,0.0000018041,0.0000018029, +0.0000018018,0.0000018015,0.0000018004,0.0000017985,0.0000017972, +0.0000017973,0.0000017986,0.0000018007,0.0000018032,0.0000018057, +0.0000018081,0.0000018106,0.0000018133,0.0000018154,0.0000018172, +0.0000018186,0.0000018194,0.0000018201,0.0000018211,0.0000018224, +0.0000018236,0.0000018242,0.0000018243,0.0000018239,0.0000018232, +0.0000018218,0.0000018198,0.0000018178,0.0000018152,0.0000018123, +0.0000018093,0.0000018067,0.0000018045,0.0000018023,0.0000017998, +0.0000017970,0.0000017938,0.0000017907,0.0000017875,0.0000017847, +0.0000017822,0.0000017801,0.0000017788,0.0000017782,0.0000017777, +0.0000017767,0.0000017767,0.0000017777,0.0000017804,0.0000017850, +0.0000017898,0.0000017943,0.0000017984,0.0000018013,0.0000018039, +0.0000018063,0.0000018091,0.0000018119,0.0000018146,0.0000018166, +0.0000018187,0.0000018214,0.0000018252,0.0000018296,0.0000018326, +0.0000018355,0.0000018379,0.0000018400,0.0000018432,0.0000018463, +0.0000018485,0.0000018502,0.0000018515,0.0000018520,0.0000018523, +0.0000018520,0.0000018509,0.0000018491,0.0000018464,0.0000018434, +0.0000018397,0.0000018357,0.0000018314,0.0000018268,0.0000018225, +0.0000018190,0.0000018158,0.0000018124,0.0000018090,0.0000018060, +0.0000018033,0.0000018002,0.0000017957,0.0000017901,0.0000017837, +0.0000017777,0.0000017735,0.0000017709,0.0000017707,0.0000017709, +0.0000017735,0.0000017778,0.0000017819,0.0000017853,0.0000017839, +0.0000017783,0.0000017710,0.0000017658,0.0000017643,0.0000017640, +0.0000017669,0.0000017708,0.0000017752,0.0000017789,0.0000017818, +0.0000017833,0.0000017836,0.0000017835,0.0000017838,0.0000017834, +0.0000017826,0.0000017806,0.0000017788,0.0000017771,0.0000017762, +0.0000017755,0.0000017741,0.0000017725,0.0000017710,0.0000017694, +0.0000017684,0.0000017677,0.0000017686,0.0000017688,0.0000017696, +0.0000017712,0.0000017725,0.0000017743,0.0000017756,0.0000017771, +0.0000017787,0.0000017818,0.0000017843,0.0000017867,0.0000017890, +0.0000017911,0.0000017935,0.0000017956,0.0000017972,0.0000017984, +0.0000017997,0.0000018008,0.0000018014,0.0000018024,0.0000018026, +0.0000018024,0.0000018029,0.0000018032,0.0000018033,0.0000018035, +0.0000018036,0.0000018031,0.0000018028,0.0000018021,0.0000018015, +0.0000018013,0.0000018018,0.0000018030,0.0000018041,0.0000018054, +0.0000018069,0.0000018088,0.0000018110,0.0000018134,0.0000018154, +0.0000018171,0.0000018183,0.0000018191,0.0000018197,0.0000018204, +0.0000018214,0.0000018235,0.0000018273,0.0000018324,0.0000018376, +0.0000018419,0.0000018446,0.0000018459,0.0000018463,0.0000018457, +0.0000018445,0.0000018433,0.0000018424,0.0000018423,0.0000018439, +0.0000018460,0.0000018482,0.0000018496,0.0000018502,0.0000018501, +0.0000018495,0.0000018480,0.0000018449,0.0000018404,0.0000018365, +0.0000018338,0.0000018326,0.0000018325,0.0000018330,0.0000018336, +0.0000018344,0.0000018363,0.0000018396,0.0000018436,0.0000018481, +0.0000018533,0.0000018590,0.0000018640,0.0000018682,0.0000018710, +0.0000018729,0.0000018734,0.0000018713,0.0000018663,0.0000018596, +0.0000018524,0.0000018461,0.0000018419,0.0000018399,0.0000018392, +0.0000018392,0.0000018392,0.0000018395,0.0000018399,0.0000018404, +0.0000018410,0.0000018417,0.0000018425,0.0000018437,0.0000018455, +0.0000018472,0.0000018485,0.0000018496,0.0000018504,0.0000018506, +0.0000018498,0.0000018475,0.0000018443,0.0000018411,0.0000018395, +0.0000018398,0.0000018417,0.0000018449,0.0000018489,0.0000018535, +0.0000018578,0.0000018615,0.0000018645,0.0000018671,0.0000018692, +0.0000018704,0.0000018707,0.0000018707,0.0000018703,0.0000018696, +0.0000018686,0.0000018677,0.0000018664,0.0000018655,0.0000018654, +0.0000018654,0.0000018651,0.0000018645,0.0000018638,0.0000018623, +0.0000018610,0.0000018598,0.0000018587,0.0000018582,0.0000018585, +0.0000018590,0.0000018592,0.0000018596,0.0000018608,0.0000018623, +0.0000018634,0.0000018639,0.0000018633,0.0000018610,0.0000018585, +0.0000018560,0.0000018551,0.0000018555,0.0000018564,0.0000018577, +0.0000018588,0.0000018590,0.0000018586,0.0000018581,0.0000018572, +0.0000018561,0.0000018553,0.0000018552,0.0000018553,0.0000018562, +0.0000018572,0.0000018578,0.0000018583,0.0000018586,0.0000018596, +0.0000018610,0.0000018622,0.0000018639,0.0000018662,0.0000018694, +0.0000018733,0.0000018771,0.0000018805,0.0000018836,0.0000018863, +0.0000018884,0.0000018892,0.0000018888,0.0000018874,0.0000018858, +0.0000018839,0.0000018817,0.0000018798,0.0000018792,0.0000018799, +0.0000018819,0.0000018842,0.0000018847,0.0000018826,0.0000018784, +0.0000018725,0.0000018681,0.0000018661,0.0000018658,0.0000018664, +0.0000018667,0.0000018657,0.0000018626,0.0000018575,0.0000018526, +0.0000018496,0.0000018475,0.0000018444,0.0000018399,0.0000018335, +0.0000018260,0.0000018188,0.0000018129,0.0000018095,0.0000018085, +0.0000018084,0.0000018091,0.0000018099,0.0000018106,0.0000018106, +0.0000018099,0.0000018088,0.0000018069,0.0000018042,0.0000018013, +0.0000017988,0.0000017968,0.0000017952,0.0000017938,0.0000017945, +0.0000017959,0.0000017982,0.0000018005,0.0000018022,0.0000018032, +0.0000018040,0.0000018048,0.0000018052,0.0000018050,0.0000018041, +0.0000018031,0.0000018016,0.0000018010,0.0000018014,0.0000018033, +0.0000018060,0.0000018087,0.0000018105,0.0000018109,0.0000018113, +0.0000018113,0.0000018110,0.0000018117,0.0000018130,0.0000018148, +0.0000018170,0.0000018189,0.0000018210,0.0000018230,0.0000018251, +0.0000018269,0.0000018287,0.0000018293,0.0000018292,0.0000018279, +0.0000018259,0.0000018232,0.0000018204,0.0000018177,0.0000018154, +0.0000018127,0.0000018095,0.0000018079,0.0000018073,0.0000018056, +0.0000018039,0.0000018023,0.0000018007,0.0000017996,0.0000017981, +0.0000017976,0.0000017970,0.0000017975,0.0000017989,0.0000018011, +0.0000018035,0.0000018053,0.0000018074,0.0000018092,0.0000018100, +0.0000018117,0.0000018112,0.0000018104,0.0000018092,0.0000018089, +0.0000018077,0.0000018062,0.0000018045,0.0000018018,0.0000017975, +0.0000017922,0.0000017892,0.0000017872,0.0000017857,0.0000017845, +0.0000017851,0.0000017886,0.0000017940,0.0000017982,0.0000018029, +0.0000018057,0.0000018066,0.0000018053,0.0000018036,0.0000018004, +0.0000017975,0.0000017935,0.0000017908,0.0000017893,0.0000017876, +0.0000017864,0.0000017853,0.0000017828,0.0000017794,0.0000017757, +0.0000017727,0.0000017719,0.0000017721,0.0000017722,0.0000017719, +0.0000017703,0.0000017675,0.0000017652,0.0000017622,0.0000017604, +0.0000017600,0.0000017612,0.0000017645,0.0000017693,0.0000017761, +0.0000017841,0.0000017928,0.0000017980,0.0000017999,0.0000018004, +0.0000017981,0.0000017956,0.0000017958,0.0000017975,0.0000017993, +0.0000018005,0.0000018013,0.0000018008,0.0000017986,0.0000017956, +0.0000017920,0.0000017871,0.0000017824,0.0000017798,0.0000017796, +0.0000017817,0.0000017844,0.0000017860,0.0000017866,0.0000017860, +0.0000017847,0.0000017826,0.0000017808,0.0000017794,0.0000017777, +0.0000017759,0.0000017733,0.0000017704,0.0000017671,0.0000017632, +0.0000017580,0.0000017522,0.0000017465,0.0000017418,0.0000017377, +0.0000017350,0.0000017333,0.0000017305,0.0000017263,0.0000017232, +0.0000017217,0.0000017223,0.0000017248,0.0000017282,0.0000017329, +0.0000017362,0.0000017387,0.0000017404,0.0000017420,0.0000017425, +0.0000017428,0.0000017447,0.0000017473,0.0000017473,0.0000017445, +0.0000017409,0.0000017383,0.0000017385,0.0000017413,0.0000017438, +0.0000017448,0.0000017443,0.0000017435,0.0000017438,0.0000017445, +0.0000017443,0.0000017431,0.0000017419,0.0000017408,0.0000017407, +0.0000017400,0.0000017395,0.0000017385,0.0000017371,0.0000017368, +0.0000017356,0.0000017346,0.0000017325,0.0000017299,0.0000017290, +0.0000017315,0.0000017370,0.0000017471,0.0000017617,0.0000017783, +0.0000017950,0.0000018121,0.0000018279,0.0000018408,0.0000018516, +0.0000018606,0.0000018658,0.0000018681,0.0000018687,0.0000018691, +0.0000018701,0.0000018723,0.0000018756,0.0000018790,0.0000018824, +0.0000018859,0.0000018892,0.0000018914,0.0000018934,0.0000018944, +0.0000018949,0.0000018957,0.0000018958,0.0000018945,0.0000018918, +0.0000018875,0.0000018809,0.0000018719,0.0000018629,0.0000018584, +0.0000018578,0.0000018598,0.0000018620,0.0000018647,0.0000018699, +0.0000018778,0.0000018851,0.0000018881,0.0000018876,0.0000018865, +0.0000018832,0.0000018779,0.0000018730,0.0000018694,0.0000018653, +0.0000018596,0.0000018531,0.0000018486,0.0000018468,0.0000018465, +0.0000018457,0.0000018434,0.0000018404,0.0000018394,0.0000018409, +0.0000018441,0.0000018472,0.0000018491,0.0000018503,0.0000018503, +0.0000018484,0.0000018453,0.0000018420,0.0000018385,0.0000018352, +0.0000018329,0.0000018314,0.0000018296,0.0000018263,0.0000018214, +0.0000018167,0.0000018133,0.0000018103,0.0000018070,0.0000018045, +0.0000018037,0.0000018048,0.0000018068,0.0000018100,0.0000018139, +0.0000018176,0.0000018207,0.0000018236,0.0000018266,0.0000018303, +0.0000018348,0.0000018395,0.0000018441,0.0000018483,0.0000018521, +0.0000018562,0.0000018620,0.0000018684,0.0000018727,0.0000018737, +0.0000018720,0.0000018687,0.0000018655,0.0000018633,0.0000018623, +0.0000018623,0.0000018633,0.0000018662,0.0000018686,0.0000018692, +0.0000018691,0.0000018675,0.0000018643,0.0000018603,0.0000018562, +0.0000018531,0.0000018506,0.0000018475,0.0000018435,0.0000018398, +0.0000018374,0.0000018363,0.0000018356,0.0000018352,0.0000018349, +0.0000018341,0.0000018330,0.0000018335,0.0000018369,0.0000018428, +0.0000018480,0.0000018495,0.0000018468,0.0000018396,0.0000018318, +0.0000018248,0.0000018151,0.0000018016,0.0000017890,0.0000017835, +0.0000017859,0.0000017925,0.0000017973,0.0000017979,0.0000017957, +0.0000017927,0.0000017902,0.0000017889,0.0000017884,0.0000017883, +0.0000017891,0.0000017918,0.0000017967,0.0000018015,0.0000018048, +0.0000018071,0.0000018098,0.0000018149,0.0000018211,0.0000018258, +0.0000018248,0.0000018177,0.0000018051,0.0000017908,0.0000017789, +0.0000017722,0.0000017698,0.0000017709,0.0000017727,0.0000017719, +0.0000017685,0.0000017628,0.0000017567,0.0000017512,0.0000017485, +0.0000017457,0.0000017445,0.0000017450,0.0000017458,0.0000017470, +0.0000017491,0.0000017515,0.0000017533,0.0000017544,0.0000017548, +0.0000017554,0.0000017562,0.0000017565,0.0000017548,0.0000017507, +0.0000017462,0.0000017418,0.0000017366,0.0000017308,0.0000017260, +0.0000017238,0.0000017239,0.0000017255,0.0000017271,0.0000017287, +0.0000017299,0.0000017309,0.0000017324,0.0000017346,0.0000017371, +0.0000017395,0.0000017422,0.0000017453,0.0000017482,0.0000017512, +0.0000017554,0.0000017599,0.0000017647,0.0000017693,0.0000017732, +0.0000017763,0.0000017798,0.0000017830,0.0000017856,0.0000017901, +0.0000017934,0.0000017958,0.0000017975,0.0000017983,0.0000017993, +0.0000018025,0.0000018058,0.0000018078,0.0000018097,0.0000018114, +0.0000018126,0.0000018104,0.0000018048,0.0000017987,0.0000017927, +0.0000017890,0.0000017875,0.0000017870,0.0000017892,0.0000017921, +0.0000017924,0.0000017902,0.0000017834,0.0000017774,0.0000017790, +0.0000017801,0.0000017955,0.0000018472,0.0000018869,0.0000018889, +0.0000018804,0.0000018755,0.0000018749,0.0000018785,0.0000018837, +0.0000018817,0.0000018661,0.0000018423,0.0000018143,0.0000017980, +0.0000017971,0.0000017943,0.0000017869,0.0000017798,0.0000017758, +0.0000017734,0.0000017693,0.0000017630,0.0000017572,0.0000017530, +0.0000017497,0.0000017478,0.0000017479,0.0000017502,0.0000017539, +0.0000017568,0.0000017571,0.0000017539,0.0000017484,0.0000017484, +0.0000017612,0.0000017805,0.0000017850,0.0000017718,0.0000017574, +0.0000017578,0.0000017629,0.0000017644,0.0000017660,0.0000017692, +0.0000017730,0.0000017765,0.0000017789,0.0000017801,0.0000017802, +0.0000017798,0.0000017797,0.0000017799,0.0000017805,0.0000017810, +0.0000017810,0.0000017804,0.0000017789,0.0000017783,0.0000017780, +0.0000017844,0.0000018019,0.0000018213,0.0000018245,0.0000018061, +0.0000017811,0.0000017663,0.0000017587,0.0000017542,0.0000017558, +0.0000017627,0.0000017677,0.0000017680,0.0000017624,0.0000017525, +0.0000017436,0.0000017420,0.0000017493,0.0000017642,0.0000017789, +0.0000017874,0.0000017881,0.0000017834,0.0000017786,0.0000017770, +0.0000017771,0.0000017771,0.0000017767,0.0000017740,0.0000017684, +0.0000017635,0.0000017622,0.0000017625,0.0000017618,0.0000017595, +0.0000017578,0.0000017581,0.0000017593,0.0000017594,0.0000017586, +0.0000017598,0.0000017648,0.0000017723,0.0000017771,0.0000017772, +0.0000017766,0.0000017778,0.0000017782,0.0000017754,0.0000017711, +0.0000017684,0.0000017685,0.0000017699,0.0000017707,0.0000017711, +0.0000017720,0.0000017727,0.0000017726,0.0000017721,0.0000017722, +0.0000017731,0.0000017736,0.0000017729,0.0000017707,0.0000017685, +0.0000017669,0.0000017652,0.0000017625,0.0000017590,0.0000017561, +0.0000017553,0.0000017557,0.0000017568,0.0000017573,0.0000017566, +0.0000017546,0.0000017527,0.0000017522,0.0000017529,0.0000017541, +0.0000017544,0.0000017539,0.0000017542,0.0000017564,0.0000017610, +0.0000017676,0.0000017746,0.0000017797,0.0000017807,0.0000017782, +0.0000017729,0.0000017665,0.0000017583,0.0000017526,0.0000017562, +0.0000017732,0.0000017925,0.0000018026,0.0000018041,0.0000018068, +0.0000018312,0.0000018398,0.0000018446,0.0000018466,0.0000018473, +0.0000018480,0.0000018492,0.0000018507,0.0000018525,0.0000018542, +0.0000018550,0.0000018545,0.0000018532,0.0000018517,0.0000018500, +0.0000018486,0.0000018473,0.0000018459,0.0000018457,0.0000018470, +0.0000018494,0.0000018524,0.0000018551,0.0000018573,0.0000018586, +0.0000018588,0.0000018588,0.0000018580,0.0000018552,0.0000018505, +0.0000018449,0.0000018416,0.0000018408,0.0000018416,0.0000018433, +0.0000018455,0.0000018470,0.0000018473,0.0000018470,0.0000018463, +0.0000018458,0.0000018457,0.0000018457,0.0000018449,0.0000018440, +0.0000018433,0.0000018429,0.0000018430,0.0000018433,0.0000018442, +0.0000018457,0.0000018468,0.0000018474,0.0000018474,0.0000018474, +0.0000018479,0.0000018487,0.0000018493,0.0000018498,0.0000018501, +0.0000018500,0.0000018496,0.0000018481,0.0000018455,0.0000018421, +0.0000018384,0.0000018344,0.0000018302,0.0000018266,0.0000018240, +0.0000018218,0.0000018192,0.0000018167,0.0000018146,0.0000018120, +0.0000018088,0.0000018068,0.0000018053,0.0000018037,0.0000018046, +0.0000018055,0.0000018091,0.0000018148,0.0000018224,0.0000018308, +0.0000018386,0.0000018445,0.0000018480,0.0000018496,0.0000018502, +0.0000018502,0.0000018497,0.0000018488,0.0000018480,0.0000018477, +0.0000018477,0.0000018478,0.0000018482,0.0000018484,0.0000018480, +0.0000018471,0.0000018458,0.0000018441,0.0000018420,0.0000018396, +0.0000018372,0.0000018349,0.0000018330,0.0000018315,0.0000018306, +0.0000018302,0.0000018298,0.0000018292,0.0000018286,0.0000018289, +0.0000018298,0.0000018307,0.0000018315,0.0000018321,0.0000018325, +0.0000018327,0.0000018325,0.0000018321,0.0000018319,0.0000018322, +0.0000018330,0.0000018345,0.0000018365,0.0000018387,0.0000018411, +0.0000018435,0.0000018461,0.0000018495,0.0000018535,0.0000018575, +0.0000018599,0.0000018618,0.0000018640,0.0000018656,0.0000018660, +0.0000018659,0.0000018656,0.0000018649,0.0000018640,0.0000018627, +0.0000018612,0.0000018596,0.0000018578,0.0000018557,0.0000018536, +0.0000018515,0.0000018493,0.0000018468,0.0000018434,0.0000018394, +0.0000018356,0.0000018324,0.0000018298,0.0000018278,0.0000018268, +0.0000018268,0.0000018271,0.0000018274,0.0000018274,0.0000018267, +0.0000018259,0.0000018250,0.0000018230,0.0000018202,0.0000018175, +0.0000018153,0.0000018133,0.0000018109,0.0000018083,0.0000018055, +0.0000018030,0.0000018009,0.0000018004,0.0000017999,0.0000017993, +0.0000017996,0.0000018003,0.0000018009,0.0000018019,0.0000018026, +0.0000018033,0.0000018037,0.0000018040,0.0000018048,0.0000018059, +0.0000018075,0.0000018091,0.0000018104,0.0000018115,0.0000018122, +0.0000018126,0.0000018122,0.0000018115,0.0000018108,0.0000018100, +0.0000018088,0.0000018077,0.0000018067,0.0000018055,0.0000018040, +0.0000018025,0.0000018012,0.0000017997,0.0000017982,0.0000017966, +0.0000017950,0.0000017941,0.0000017934,0.0000017928,0.0000017922, +0.0000017905,0.0000017887,0.0000017870,0.0000017863,0.0000017875, +0.0000017903,0.0000017940,0.0000017982,0.0000018016,0.0000018046, +0.0000018069,0.0000018092,0.0000018116,0.0000018137,0.0000018152, +0.0000018174,0.0000018202,0.0000018236,0.0000018266,0.0000018290, +0.0000018316,0.0000018346,0.0000018377,0.0000018418,0.0000018466, +0.0000018497,0.0000018528,0.0000018560,0.0000018585,0.0000018610, +0.0000018631,0.0000018644,0.0000018648,0.0000018647,0.0000018635, +0.0000018614,0.0000018580,0.0000018533,0.0000018482,0.0000018429, +0.0000018384,0.0000018348,0.0000018320,0.0000018286,0.0000018233, +0.0000018170,0.0000018111,0.0000018068,0.0000018040,0.0000018020, +0.0000017992,0.0000017946,0.0000017884,0.0000017823,0.0000017774, +0.0000017760,0.0000017746,0.0000017758,0.0000017786,0.0000017825, +0.0000017857,0.0000017857,0.0000017824,0.0000017758,0.0000017704, +0.0000017680,0.0000017677,0.0000017695,0.0000017724,0.0000017755, +0.0000017786,0.0000017820,0.0000017854,0.0000017880,0.0000017904, +0.0000017914,0.0000017924,0.0000017908,0.0000017887,0.0000017872, +0.0000017858,0.0000017838,0.0000017830,0.0000017818,0.0000017813, +0.0000017799,0.0000017794,0.0000017785,0.0000017774,0.0000017774, +0.0000017766,0.0000017765,0.0000017769,0.0000017780,0.0000017796, +0.0000017820,0.0000017841,0.0000017863,0.0000017882,0.0000017904, +0.0000017924,0.0000017944,0.0000017961,0.0000017982,0.0000018002, +0.0000018021,0.0000018039,0.0000018055,0.0000018071,0.0000018086, +0.0000018105,0.0000018123,0.0000018139,0.0000018153,0.0000018166, +0.0000018167,0.0000018163,0.0000018154,0.0000018137,0.0000018118, +0.0000018103,0.0000018091,0.0000018082,0.0000018082,0.0000018092, +0.0000018113,0.0000018142,0.0000018169,0.0000018193,0.0000018211, +0.0000018224,0.0000018232,0.0000018238,0.0000018248,0.0000018268, +0.0000018301,0.0000018345,0.0000018389,0.0000018422,0.0000018436, +0.0000018444,0.0000018448,0.0000018447,0.0000018443,0.0000018438, +0.0000018435,0.0000018439,0.0000018453,0.0000018479,0.0000018507, +0.0000018528,0.0000018542,0.0000018544,0.0000018528,0.0000018498, +0.0000018452,0.0000018408,0.0000018376,0.0000018358,0.0000018353, +0.0000018356,0.0000018360,0.0000018366,0.0000018378,0.0000018399, +0.0000018423,0.0000018450,0.0000018482,0.0000018520,0.0000018564, +0.0000018607,0.0000018646,0.0000018674,0.0000018686,0.0000018676, +0.0000018639,0.0000018578,0.0000018508,0.0000018447,0.0000018403, +0.0000018378,0.0000018372,0.0000018376,0.0000018383,0.0000018392, +0.0000018397,0.0000018399,0.0000018401,0.0000018405,0.0000018415, +0.0000018429,0.0000018443,0.0000018457,0.0000018475,0.0000018494, +0.0000018509,0.0000018519,0.0000018524,0.0000018526,0.0000018521, +0.0000018504,0.0000018478,0.0000018450,0.0000018431,0.0000018425, +0.0000018442,0.0000018476,0.0000018517,0.0000018555,0.0000018587, +0.0000018612,0.0000018634,0.0000018656,0.0000018674,0.0000018684, +0.0000018688,0.0000018690,0.0000018689,0.0000018687,0.0000018682, +0.0000018674,0.0000018663,0.0000018653,0.0000018649,0.0000018643, +0.0000018641,0.0000018640,0.0000018635,0.0000018627,0.0000018619, +0.0000018614,0.0000018612,0.0000018615,0.0000018627,0.0000018641, +0.0000018645,0.0000018644,0.0000018641,0.0000018635,0.0000018635, +0.0000018641,0.0000018646,0.0000018640,0.0000018624,0.0000018596, +0.0000018571,0.0000018557,0.0000018550,0.0000018549,0.0000018551, +0.0000018551,0.0000018548,0.0000018541,0.0000018530,0.0000018526, +0.0000018528,0.0000018537,0.0000018552,0.0000018575,0.0000018596, +0.0000018614,0.0000018631,0.0000018641,0.0000018656,0.0000018670, +0.0000018682,0.0000018699,0.0000018719,0.0000018749,0.0000018786, +0.0000018824,0.0000018853,0.0000018879,0.0000018906,0.0000018927, +0.0000018939,0.0000018944,0.0000018943,0.0000018933,0.0000018912, +0.0000018881,0.0000018844,0.0000018805,0.0000018779,0.0000018774, +0.0000018786,0.0000018810,0.0000018843,0.0000018867,0.0000018866, +0.0000018842,0.0000018786,0.0000018723,0.0000018679,0.0000018660, +0.0000018661,0.0000018667,0.0000018666,0.0000018643,0.0000018598, +0.0000018544,0.0000018496,0.0000018472,0.0000018459,0.0000018435, +0.0000018387,0.0000018325,0.0000018257,0.0000018194,0.0000018146, +0.0000018120,0.0000018111,0.0000018115,0.0000018116,0.0000018112, +0.0000018108,0.0000018097,0.0000018073,0.0000018041,0.0000018011, +0.0000017979,0.0000017949,0.0000017933,0.0000017933,0.0000017943, +0.0000017963,0.0000017984,0.0000017998,0.0000018005,0.0000018013, +0.0000018023,0.0000018030,0.0000018034,0.0000018038,0.0000018034, +0.0000018039,0.0000018049,0.0000018067,0.0000018096,0.0000018135, +0.0000018175,0.0000018204,0.0000018226,0.0000018249,0.0000018260, +0.0000018262,0.0000018266,0.0000018266,0.0000018267,0.0000018272, +0.0000018282,0.0000018294,0.0000018306,0.0000018319,0.0000018334, +0.0000018351,0.0000018362,0.0000018367,0.0000018366,0.0000018364, +0.0000018361,0.0000018350,0.0000018347,0.0000018343,0.0000018329, +0.0000018308,0.0000018291,0.0000018273,0.0000018238,0.0000018197, +0.0000018149,0.0000018107,0.0000018064,0.0000018026,0.0000017995, +0.0000017981,0.0000017988,0.0000018002,0.0000018025,0.0000018053, +0.0000018074,0.0000018093,0.0000018117,0.0000018136,0.0000018152, +0.0000018152,0.0000018150,0.0000018150,0.0000018155,0.0000018146, +0.0000018138,0.0000018109,0.0000018083,0.0000018043,0.0000018010, +0.0000018000,0.0000017987,0.0000017975,0.0000017958,0.0000017958, +0.0000017982,0.0000018014,0.0000018050,0.0000018092,0.0000018119, +0.0000018127,0.0000018140,0.0000018128,0.0000018106,0.0000018084, +0.0000018068,0.0000018056,0.0000018037,0.0000018020,0.0000017996, +0.0000017959,0.0000017914,0.0000017863,0.0000017815,0.0000017788, +0.0000017780,0.0000017787,0.0000017801,0.0000017798,0.0000017784, +0.0000017761,0.0000017725,0.0000017681,0.0000017643,0.0000017610, +0.0000017615,0.0000017625,0.0000017656,0.0000017719,0.0000017808, +0.0000017884,0.0000017922,0.0000017945,0.0000017943,0.0000017915, +0.0000017906,0.0000017923,0.0000017946,0.0000017969,0.0000017993, +0.0000018007,0.0000018007,0.0000018012,0.0000018002,0.0000017972, +0.0000017929,0.0000017894,0.0000017877,0.0000017879,0.0000017892, +0.0000017904,0.0000017906,0.0000017895,0.0000017868,0.0000017834, +0.0000017809,0.0000017791,0.0000017775,0.0000017765,0.0000017751, +0.0000017734,0.0000017717,0.0000017702,0.0000017677,0.0000017650, +0.0000017619,0.0000017583,0.0000017536,0.0000017489,0.0000017447, +0.0000017399,0.0000017339,0.0000017285,0.0000017245,0.0000017235, +0.0000017250,0.0000017275,0.0000017312,0.0000017339,0.0000017360, +0.0000017369,0.0000017375,0.0000017380,0.0000017397,0.0000017443, +0.0000017490,0.0000017515,0.0000017507,0.0000017483,0.0000017459, +0.0000017450,0.0000017471,0.0000017499,0.0000017514,0.0000017503, +0.0000017483,0.0000017475,0.0000017480,0.0000017477,0.0000017465, +0.0000017443,0.0000017426,0.0000017429,0.0000017430,0.0000017432, +0.0000017420,0.0000017397,0.0000017377,0.0000017353,0.0000017337, +0.0000017322,0.0000017299,0.0000017272,0.0000017256,0.0000017238, +0.0000017248,0.0000017301,0.0000017386,0.0000017493,0.0000017632, +0.0000017780,0.0000017922,0.0000018067,0.0000018209,0.0000018322, +0.0000018407,0.0000018470,0.0000018519,0.0000018559,0.0000018589, +0.0000018618,0.0000018646,0.0000018672,0.0000018698,0.0000018728, +0.0000018777,0.0000018841,0.0000018904,0.0000018952,0.0000018980, +0.0000018991,0.0000018976,0.0000018938,0.0000018892,0.0000018847, +0.0000018803,0.0000018752,0.0000018679,0.0000018610,0.0000018594, +0.0000018596,0.0000018600,0.0000018615,0.0000018661,0.0000018740, +0.0000018823,0.0000018867,0.0000018859,0.0000018836,0.0000018799, +0.0000018758,0.0000018734,0.0000018718,0.0000018686,0.0000018619, +0.0000018536,0.0000018481,0.0000018468,0.0000018468,0.0000018455, +0.0000018437,0.0000018423,0.0000018424,0.0000018432,0.0000018451, +0.0000018479,0.0000018505,0.0000018521,0.0000018517,0.0000018497, +0.0000018463,0.0000018424,0.0000018390,0.0000018365,0.0000018345, +0.0000018317,0.0000018273,0.0000018220,0.0000018174,0.0000018139, +0.0000018113,0.0000018093,0.0000018075,0.0000018063,0.0000018068, +0.0000018085,0.0000018121,0.0000018167,0.0000018216,0.0000018264, +0.0000018303,0.0000018337,0.0000018370,0.0000018401,0.0000018429, +0.0000018457,0.0000018491,0.0000018536,0.0000018607,0.0000018693, +0.0000018762,0.0000018788,0.0000018780,0.0000018745,0.0000018707, +0.0000018679,0.0000018665,0.0000018656,0.0000018652,0.0000018665, +0.0000018681,0.0000018690,0.0000018690,0.0000018686,0.0000018675, +0.0000018663,0.0000018645,0.0000018619,0.0000018596,0.0000018578, +0.0000018558,0.0000018531,0.0000018495,0.0000018451,0.0000018408, +0.0000018373,0.0000018352,0.0000018340,0.0000018334,0.0000018336, +0.0000018352,0.0000018385,0.0000018434,0.0000018485,0.0000018513, +0.0000018499,0.0000018438,0.0000018356,0.0000018274,0.0000018177, +0.0000018046,0.0000017917,0.0000017869,0.0000017898,0.0000017955, +0.0000017982,0.0000017976,0.0000017948,0.0000017911,0.0000017878, +0.0000017853,0.0000017851,0.0000017861,0.0000017879,0.0000017921, +0.0000017984,0.0000018043,0.0000018083,0.0000018097,0.0000018108, +0.0000018132,0.0000018178,0.0000018220,0.0000018204,0.0000018169, +0.0000018088,0.0000017968,0.0000017848,0.0000017754,0.0000017713, +0.0000017720,0.0000017740,0.0000017756,0.0000017748,0.0000017713, +0.0000017660,0.0000017600,0.0000017539,0.0000017483,0.0000017437, +0.0000017412,0.0000017403,0.0000017415,0.0000017446,0.0000017482, +0.0000017511,0.0000017532,0.0000017551,0.0000017567,0.0000017574, +0.0000017559,0.0000017521,0.0000017481,0.0000017444,0.0000017404, +0.0000017358,0.0000017314,0.0000017285,0.0000017282,0.0000017296, +0.0000017307,0.0000017305,0.0000017287,0.0000017270,0.0000017254, +0.0000017247,0.0000017252,0.0000017262,0.0000017277,0.0000017301, +0.0000017330,0.0000017360,0.0000017401,0.0000017446,0.0000017496, +0.0000017548,0.0000017590,0.0000017620,0.0000017642,0.0000017665, +0.0000017704,0.0000017772,0.0000017852,0.0000017917,0.0000017968, +0.0000017992,0.0000018004,0.0000018030,0.0000018064,0.0000018081, +0.0000018094,0.0000018104,0.0000018120,0.0000018108,0.0000018055, +0.0000017983,0.0000017915,0.0000017869,0.0000017855,0.0000017852, +0.0000017859,0.0000017882,0.0000017898,0.0000017887,0.0000017818, +0.0000017749,0.0000017769,0.0000017789,0.0000018076,0.0000018651, +0.0000018891,0.0000018853,0.0000018790,0.0000018760,0.0000018771, +0.0000018821,0.0000018858,0.0000018824,0.0000018670,0.0000018363, +0.0000018062,0.0000017989,0.0000017983,0.0000017932,0.0000017861, +0.0000017811,0.0000017791,0.0000017768,0.0000017703,0.0000017615, +0.0000017541,0.0000017486,0.0000017440,0.0000017413,0.0000017415, +0.0000017443,0.0000017496,0.0000017556,0.0000017592,0.0000017588, +0.0000017537,0.0000017468,0.0000017484,0.0000017682,0.0000017864, +0.0000017814,0.0000017646,0.0000017579,0.0000017615,0.0000017670, +0.0000017670,0.0000017658,0.0000017661,0.0000017676,0.0000017686, +0.0000017696,0.0000017706,0.0000017715,0.0000017723,0.0000017732, +0.0000017750,0.0000017781,0.0000017815,0.0000017830,0.0000017812, +0.0000017778,0.0000017759,0.0000017770,0.0000017866,0.0000018071, +0.0000018199,0.0000018119,0.0000017867,0.0000017683,0.0000017603, +0.0000017545,0.0000017525,0.0000017558,0.0000017640,0.0000017693, +0.0000017692,0.0000017627,0.0000017518,0.0000017426,0.0000017408, +0.0000017496,0.0000017656,0.0000017800,0.0000017865,0.0000017858, +0.0000017814,0.0000017787,0.0000017784,0.0000017781,0.0000017773, +0.0000017755,0.0000017711,0.0000017654,0.0000017623,0.0000017621, +0.0000017622,0.0000017612,0.0000017600,0.0000017605,0.0000017626, +0.0000017635,0.0000017628,0.0000017616,0.0000017629,0.0000017678, +0.0000017739,0.0000017762,0.0000017752,0.0000017746,0.0000017756, +0.0000017754,0.0000017720,0.0000017683,0.0000017675,0.0000017695, +0.0000017723,0.0000017739,0.0000017743,0.0000017743,0.0000017733, +0.0000017723,0.0000017722,0.0000017736,0.0000017753,0.0000017754, +0.0000017734,0.0000017705,0.0000017681,0.0000017657,0.0000017626, +0.0000017588,0.0000017560,0.0000017554,0.0000017561,0.0000017576, +0.0000017583,0.0000017573,0.0000017551,0.0000017536,0.0000017536, +0.0000017537,0.0000017533,0.0000017538,0.0000017569,0.0000017625, +0.0000017694,0.0000017761,0.0000017803,0.0000017811,0.0000017788, +0.0000017737,0.0000017670,0.0000017591,0.0000017545,0.0000017581, +0.0000017748,0.0000017936,0.0000018029,0.0000018044,0.0000018086, +0.0000018192,0.0000018425,0.0000018467,0.0000018489,0.0000018500, +0.0000018507,0.0000018512,0.0000018517,0.0000018527,0.0000018546, +0.0000018562,0.0000018565,0.0000018554,0.0000018539,0.0000018526, +0.0000018511,0.0000018497,0.0000018487,0.0000018484,0.0000018501, +0.0000018534,0.0000018564,0.0000018581,0.0000018585,0.0000018589, +0.0000018595,0.0000018596,0.0000018585,0.0000018543,0.0000018480, +0.0000018441,0.0000018420,0.0000018420,0.0000018426,0.0000018428, +0.0000018415,0.0000018392,0.0000018373,0.0000018367,0.0000018371, +0.0000018379,0.0000018388,0.0000018399,0.0000018414,0.0000018421, +0.0000018428,0.0000018439,0.0000018448,0.0000018459,0.0000018468, +0.0000018482,0.0000018500,0.0000018514,0.0000018522,0.0000018525, +0.0000018531,0.0000018544,0.0000018556,0.0000018561,0.0000018564, +0.0000018564,0.0000018561,0.0000018556,0.0000018546,0.0000018530, +0.0000018511,0.0000018496,0.0000018475,0.0000018451,0.0000018427, +0.0000018406,0.0000018385,0.0000018357,0.0000018323,0.0000018289, +0.0000018256,0.0000018223,0.0000018190,0.0000018156,0.0000018120, +0.0000018085,0.0000018061,0.0000018062,0.0000018072,0.0000018128, +0.0000018211,0.0000018300,0.0000018382,0.0000018443,0.0000018477, +0.0000018486,0.0000018483,0.0000018475,0.0000018466,0.0000018458, +0.0000018454,0.0000018453,0.0000018453,0.0000018454,0.0000018448, +0.0000018439,0.0000018429,0.0000018416,0.0000018402,0.0000018387, +0.0000018368,0.0000018348,0.0000018333,0.0000018318,0.0000018308, +0.0000018303,0.0000018302,0.0000018301,0.0000018299,0.0000018298, +0.0000018305,0.0000018314,0.0000018321,0.0000018324,0.0000018323, +0.0000018320,0.0000018315,0.0000018304,0.0000018294,0.0000018285, +0.0000018280,0.0000018277,0.0000018278,0.0000018281,0.0000018286, +0.0000018296,0.0000018311,0.0000018330,0.0000018354,0.0000018382, +0.0000018414,0.0000018448,0.0000018489,0.0000018540,0.0000018594, +0.0000018646,0.0000018679,0.0000018708,0.0000018730,0.0000018733, +0.0000018723,0.0000018704,0.0000018680,0.0000018654,0.0000018630, +0.0000018610,0.0000018594,0.0000018580,0.0000018566,0.0000018549, +0.0000018532,0.0000018517,0.0000018501,0.0000018484,0.0000018470, +0.0000018464,0.0000018464,0.0000018466,0.0000018468,0.0000018469, +0.0000018467,0.0000018469,0.0000018472,0.0000018464,0.0000018445, +0.0000018422,0.0000018404,0.0000018385,0.0000018361,0.0000018336, +0.0000018307,0.0000018279,0.0000018249,0.0000018219,0.0000018187, +0.0000018156,0.0000018128,0.0000018104,0.0000018088,0.0000018073, +0.0000018058,0.0000018043,0.0000018030,0.0000018024,0.0000018023, +0.0000018023,0.0000018030,0.0000018026,0.0000018025,0.0000018031, +0.0000018038,0.0000018048,0.0000018055,0.0000018055,0.0000018055, +0.0000018050,0.0000018042,0.0000018031,0.0000018020,0.0000018007, +0.0000017991,0.0000017976,0.0000017965,0.0000017959,0.0000017957, +0.0000017955,0.0000017956,0.0000017957,0.0000017966,0.0000017979, +0.0000017976,0.0000017970,0.0000017958,0.0000017939,0.0000017923, +0.0000017913,0.0000017912,0.0000017918,0.0000017926,0.0000017936, +0.0000017950,0.0000017969,0.0000017991,0.0000018021,0.0000018048, +0.0000018086,0.0000018126,0.0000018171,0.0000018213,0.0000018240, +0.0000018264,0.0000018282,0.0000018300,0.0000018322,0.0000018354, +0.0000018395,0.0000018426,0.0000018458,0.0000018491,0.0000018521, +0.0000018554,0.0000018591,0.0000018624,0.0000018649,0.0000018665, +0.0000018684,0.0000018701,0.0000018706,0.0000018695,0.0000018672, +0.0000018646,0.0000018603,0.0000018555,0.0000018508,0.0000018470, +0.0000018441,0.0000018410,0.0000018363,0.0000018294,0.0000018213, +0.0000018136,0.0000018085,0.0000018062,0.0000018048,0.0000018024, +0.0000017975,0.0000017904,0.0000017826,0.0000017786,0.0000017772, +0.0000017785,0.0000017828,0.0000017872,0.0000017902,0.0000017904, +0.0000017871,0.0000017806,0.0000017737,0.0000017697,0.0000017681, +0.0000017683,0.0000017706,0.0000017749,0.0000017798,0.0000017855, +0.0000017901,0.0000017937,0.0000017962,0.0000017976,0.0000017982, +0.0000017988,0.0000017977,0.0000017965,0.0000017948,0.0000017940, +0.0000017923,0.0000017907,0.0000017888,0.0000017866,0.0000017855, +0.0000017840,0.0000017830,0.0000017824,0.0000017828,0.0000017842, +0.0000017869,0.0000017895,0.0000017923,0.0000017948,0.0000017974, +0.0000017995,0.0000018018,0.0000018036,0.0000018060,0.0000018087, +0.0000018110,0.0000018133,0.0000018156,0.0000018181,0.0000018201, +0.0000018223,0.0000018242,0.0000018259,0.0000018271,0.0000018278, +0.0000018275,0.0000018262,0.0000018244,0.0000018223,0.0000018198, +0.0000018174,0.0000018154,0.0000018138,0.0000018131,0.0000018137, +0.0000018156,0.0000018181,0.0000018205,0.0000018227,0.0000018246, +0.0000018260,0.0000018273,0.0000018288,0.0000018311,0.0000018340, +0.0000018374,0.0000018402,0.0000018424,0.0000018438,0.0000018441, +0.0000018442,0.0000018445,0.0000018445,0.0000018448,0.0000018452, +0.0000018463,0.0000018481,0.0000018510,0.0000018540,0.0000018564, +0.0000018576,0.0000018571,0.0000018551,0.0000018510,0.0000018460, +0.0000018416,0.0000018392,0.0000018382,0.0000018382,0.0000018385, +0.0000018394,0.0000018408,0.0000018428,0.0000018445,0.0000018454, +0.0000018461,0.0000018471,0.0000018493,0.0000018528,0.0000018565, +0.0000018599,0.0000018620,0.0000018622,0.0000018595,0.0000018539, +0.0000018468,0.0000018402,0.0000018354,0.0000018330,0.0000018328, +0.0000018335,0.0000018349,0.0000018363,0.0000018376,0.0000018388, +0.0000018397,0.0000018402,0.0000018407,0.0000018412,0.0000018423, +0.0000018441,0.0000018461,0.0000018475,0.0000018487,0.0000018502, +0.0000018517,0.0000018528,0.0000018535,0.0000018540,0.0000018540, +0.0000018533,0.0000018523,0.0000018509,0.0000018497,0.0000018494, +0.0000018506,0.0000018528,0.0000018552,0.0000018576,0.0000018597, +0.0000018614,0.0000018633,0.0000018652,0.0000018667,0.0000018677, +0.0000018682,0.0000018684,0.0000018683,0.0000018682,0.0000018680, +0.0000018678,0.0000018675,0.0000018668,0.0000018661,0.0000018651, +0.0000018642,0.0000018636,0.0000018630,0.0000018620,0.0000018610, +0.0000018603,0.0000018603,0.0000018610,0.0000018628,0.0000018648, +0.0000018667,0.0000018678,0.0000018683,0.0000018677,0.0000018669, +0.0000018664,0.0000018665,0.0000018665,0.0000018664,0.0000018645, +0.0000018619,0.0000018591,0.0000018563,0.0000018542,0.0000018532, +0.0000018525,0.0000018520,0.0000018508,0.0000018498,0.0000018492, +0.0000018497,0.0000018508,0.0000018535,0.0000018566,0.0000018596, +0.0000018622,0.0000018643,0.0000018668,0.0000018692,0.0000018712, +0.0000018736,0.0000018757,0.0000018783,0.0000018817,0.0000018853, +0.0000018887,0.0000018914,0.0000018936,0.0000018955,0.0000018968, +0.0000018976,0.0000018980,0.0000018978,0.0000018973,0.0000018967, +0.0000018948,0.0000018915,0.0000018875,0.0000018838,0.0000018811, +0.0000018791,0.0000018783,0.0000018792,0.0000018817,0.0000018854, +0.0000018893,0.0000018907,0.0000018890,0.0000018838,0.0000018759, +0.0000018692,0.0000018655,0.0000018647,0.0000018653,0.0000018655, +0.0000018643,0.0000018611,0.0000018564,0.0000018521,0.0000018488, +0.0000018462,0.0000018443,0.0000018420,0.0000018384,0.0000018340, +0.0000018295,0.0000018250,0.0000018211,0.0000018179,0.0000018153, +0.0000018135,0.0000018121,0.0000018099,0.0000018071,0.0000018039, +0.0000018005,0.0000017970,0.0000017950,0.0000017942,0.0000017945, +0.0000017953,0.0000017963,0.0000017969,0.0000017971,0.0000017975, +0.0000017977,0.0000017979,0.0000017982,0.0000017989,0.0000018004, +0.0000018018,0.0000018036,0.0000018058,0.0000018089,0.0000018127, +0.0000018164,0.0000018200,0.0000018240,0.0000018275,0.0000018305, +0.0000018338,0.0000018369,0.0000018386,0.0000018404,0.0000018420, +0.0000018432,0.0000018442,0.0000018450,0.0000018454,0.0000018460, +0.0000018466,0.0000018471,0.0000018470,0.0000018468,0.0000018469, +0.0000018471,0.0000018476,0.0000018485,0.0000018494,0.0000018498, +0.0000018500,0.0000018502,0.0000018493,0.0000018472,0.0000018436, +0.0000018387,0.0000018335,0.0000018276,0.0000018215,0.0000018165, +0.0000018129,0.0000018110,0.0000018110,0.0000018126,0.0000018148, +0.0000018164,0.0000018187,0.0000018208,0.0000018237,0.0000018246, +0.0000018255,0.0000018256,0.0000018250,0.0000018241,0.0000018239, +0.0000018217,0.0000018189,0.0000018162,0.0000018126,0.0000018108, +0.0000018100,0.0000018094,0.0000018089,0.0000018081,0.0000018080, +0.0000018099,0.0000018115,0.0000018142,0.0000018165,0.0000018186, +0.0000018204,0.0000018221,0.0000018211,0.0000018207,0.0000018197, +0.0000018191,0.0000018179,0.0000018175,0.0000018161,0.0000018137, +0.0000018101,0.0000018054,0.0000017997,0.0000017941,0.0000017903, +0.0000017885,0.0000017881,0.0000017877,0.0000017877,0.0000017869, +0.0000017848,0.0000017818,0.0000017776,0.0000017725,0.0000017685, +0.0000017661,0.0000017650,0.0000017676,0.0000017709,0.0000017769, +0.0000017803,0.0000017826,0.0000017849,0.0000017848,0.0000017851, +0.0000017864,0.0000017886,0.0000017917,0.0000017942,0.0000017962, +0.0000017984,0.0000018007,0.0000018019,0.0000018016,0.0000017995, +0.0000017977,0.0000017966,0.0000017956,0.0000017952,0.0000017952, +0.0000017954,0.0000017947,0.0000017921,0.0000017884,0.0000017851, +0.0000017820,0.0000017793,0.0000017771,0.0000017749,0.0000017731, +0.0000017719,0.0000017716,0.0000017712,0.0000017710,0.0000017709, +0.0000017705,0.0000017684,0.0000017645,0.0000017595,0.0000017541, +0.0000017473,0.0000017402,0.0000017344,0.0000017309,0.0000017296, +0.0000017307,0.0000017334,0.0000017358,0.0000017373,0.0000017375, +0.0000017369,0.0000017359,0.0000017370,0.0000017419,0.0000017484, +0.0000017523,0.0000017534,0.0000017525,0.0000017511,0.0000017500, +0.0000017518,0.0000017548,0.0000017573,0.0000017582,0.0000017569, +0.0000017556,0.0000017551,0.0000017542,0.0000017528,0.0000017500, +0.0000017475,0.0000017468,0.0000017467,0.0000017471,0.0000017459, +0.0000017432,0.0000017397,0.0000017358,0.0000017332,0.0000017310, +0.0000017302,0.0000017294,0.0000017275,0.0000017252,0.0000017238, +0.0000017253,0.0000017270,0.0000017310,0.0000017370,0.0000017441, +0.0000017508,0.0000017586,0.0000017683,0.0000017784,0.0000017884, +0.0000017986,0.0000018087,0.0000018191,0.0000018286,0.0000018372, +0.0000018441,0.0000018491,0.0000018534,0.0000018578,0.0000018635, +0.0000018694,0.0000018756,0.0000018831,0.0000018915,0.0000018972, +0.0000018975,0.0000018957,0.0000018905,0.0000018858,0.0000018834, +0.0000018818,0.0000018782,0.0000018725,0.0000018658,0.0000018603, +0.0000018587,0.0000018574,0.0000018578,0.0000018622,0.0000018699, +0.0000018784,0.0000018836,0.0000018837,0.0000018813,0.0000018782, +0.0000018758,0.0000018745,0.0000018734,0.0000018704,0.0000018647, +0.0000018576,0.0000018510,0.0000018469,0.0000018457,0.0000018454, +0.0000018448,0.0000018435,0.0000018434,0.0000018446,0.0000018474, +0.0000018508,0.0000018529,0.0000018534,0.0000018520,0.0000018490, +0.0000018458,0.0000018437,0.0000018419,0.0000018390,0.0000018345, +0.0000018291,0.0000018241,0.0000018203,0.0000018181,0.0000018164, +0.0000018149,0.0000018132,0.0000018113,0.0000018105,0.0000018118, +0.0000018152,0.0000018200,0.0000018257,0.0000018305,0.0000018345, +0.0000018385,0.0000018421,0.0000018452,0.0000018476,0.0000018495, +0.0000018524,0.0000018583,0.0000018672,0.0000018763,0.0000018821, +0.0000018836,0.0000018813,0.0000018770,0.0000018734,0.0000018713, +0.0000018699,0.0000018683,0.0000018677,0.0000018678,0.0000018680, +0.0000018679,0.0000018679,0.0000018674,0.0000018665,0.0000018657, +0.0000018652,0.0000018650,0.0000018646,0.0000018633,0.0000018610, +0.0000018580,0.0000018544,0.0000018504,0.0000018461,0.0000018415, +0.0000018371,0.0000018343,0.0000018339,0.0000018352,0.0000018372, +0.0000018400,0.0000018439,0.0000018480,0.0000018505,0.0000018499, +0.0000018455,0.0000018377,0.0000018287,0.0000018180,0.0000018045, +0.0000017930,0.0000017903,0.0000017938,0.0000017977,0.0000017984, +0.0000017975,0.0000017950,0.0000017909,0.0000017859,0.0000017826, +0.0000017824,0.0000017842,0.0000017875,0.0000017934,0.0000018005, +0.0000018075,0.0000018122,0.0000018131,0.0000018119,0.0000018114, +0.0000018130,0.0000018145,0.0000018151,0.0000018113,0.0000018070, +0.0000018004,0.0000017926,0.0000017858,0.0000017807,0.0000017770, +0.0000017764,0.0000017766,0.0000017769,0.0000017763,0.0000017742, +0.0000017703,0.0000017650,0.0000017585,0.0000017522,0.0000017469, +0.0000017431,0.0000017436,0.0000017454,0.0000017484,0.0000017510, +0.0000017531,0.0000017555,0.0000017571,0.0000017557,0.0000017520, +0.0000017482,0.0000017448,0.0000017418,0.0000017381,0.0000017335, +0.0000017300,0.0000017297,0.0000017318,0.0000017340,0.0000017343, +0.0000017330,0.0000017308,0.0000017277,0.0000017247,0.0000017235, +0.0000017201,0.0000017180,0.0000017180,0.0000017191,0.0000017208, +0.0000017236,0.0000017276,0.0000017323,0.0000017379,0.0000017433, +0.0000017477,0.0000017505,0.0000017531,0.0000017574,0.0000017636, +0.0000017710,0.0000017786,0.0000017856,0.0000017914,0.0000017948, +0.0000017979,0.0000018021,0.0000018057,0.0000018079,0.0000018085, +0.0000018100,0.0000018098,0.0000018055,0.0000017984,0.0000017912, +0.0000017858,0.0000017831,0.0000017825,0.0000017818,0.0000017828, +0.0000017859,0.0000017870,0.0000017816,0.0000017735,0.0000017746, +0.0000017770,0.0000018121,0.0000018693,0.0000018881,0.0000018843, +0.0000018789,0.0000018777,0.0000018804,0.0000018858,0.0000018887, +0.0000018856,0.0000018628,0.0000018243,0.0000018021,0.0000018005, +0.0000017988,0.0000017931,0.0000017863,0.0000017821,0.0000017808, +0.0000017771,0.0000017679,0.0000017574,0.0000017496,0.0000017438, +0.0000017397,0.0000017388,0.0000017399,0.0000017421,0.0000017459, +0.0000017523,0.0000017583,0.0000017606,0.0000017591,0.0000017516, +0.0000017451,0.0000017513,0.0000017765,0.0000017874,0.0000017757, +0.0000017612,0.0000017572,0.0000017620,0.0000017676,0.0000017693, +0.0000017688,0.0000017680,0.0000017679,0.0000017683,0.0000017690, +0.0000017697,0.0000017697,0.0000017695,0.0000017699,0.0000017718, +0.0000017762,0.0000017817,0.0000017847,0.0000017817,0.0000017761, +0.0000017748,0.0000017791,0.0000017936,0.0000018124,0.0000018133, +0.0000017918,0.0000017703,0.0000017608,0.0000017548,0.0000017506, +0.0000017511,0.0000017571,0.0000017657,0.0000017707,0.0000017697, +0.0000017617,0.0000017491,0.0000017403,0.0000017404,0.0000017514, +0.0000017683,0.0000017813,0.0000017855,0.0000017840,0.0000017807, +0.0000017796,0.0000017796,0.0000017784,0.0000017764,0.0000017730, +0.0000017676,0.0000017628,0.0000017611,0.0000017613,0.0000017616, +0.0000017613,0.0000017619,0.0000017648,0.0000017672,0.0000017668, +0.0000017650,0.0000017646,0.0000017661,0.0000017707,0.0000017748, +0.0000017745,0.0000017719,0.0000017719,0.0000017733,0.0000017725, +0.0000017695,0.0000017683,0.0000017704,0.0000017742,0.0000017764, +0.0000017767,0.0000017757,0.0000017740,0.0000017726,0.0000017725, +0.0000017739,0.0000017757,0.0000017757,0.0000017734,0.0000017698, +0.0000017665,0.0000017636,0.0000017602,0.0000017569,0.0000017558, +0.0000017564,0.0000017585,0.0000017603,0.0000017600,0.0000017575, +0.0000017548,0.0000017538,0.0000017534,0.0000017540,0.0000017577, +0.0000017642,0.0000017712,0.0000017770,0.0000017802,0.0000017801, +0.0000017773,0.0000017724,0.0000017658,0.0000017583,0.0000017551, +0.0000017603,0.0000017768,0.0000017947,0.0000018028,0.0000018039, +0.0000018097,0.0000018222,0.0000018347,0.0000018477,0.0000018504, +0.0000018522,0.0000018531,0.0000018534,0.0000018539,0.0000018549, +0.0000018565,0.0000018583,0.0000018595,0.0000018594,0.0000018587, +0.0000018582,0.0000018578,0.0000018568,0.0000018554,0.0000018542, +0.0000018541,0.0000018557,0.0000018580,0.0000018586,0.0000018584, +0.0000018583,0.0000018590,0.0000018596,0.0000018583,0.0000018533, +0.0000018475,0.0000018447,0.0000018448,0.0000018449,0.0000018432, +0.0000018395,0.0000018345,0.0000018310,0.0000018307,0.0000018319, +0.0000018342,0.0000018368,0.0000018403,0.0000018436,0.0000018460, +0.0000018475,0.0000018484,0.0000018489,0.0000018491,0.0000018496, +0.0000018502,0.0000018511,0.0000018526,0.0000018542,0.0000018558, +0.0000018568,0.0000018576,0.0000018588,0.0000018607,0.0000018621, +0.0000018630,0.0000018637,0.0000018641,0.0000018640,0.0000018632, +0.0000018620,0.0000018603,0.0000018587,0.0000018576,0.0000018562, +0.0000018551,0.0000018540,0.0000018528,0.0000018512,0.0000018488, +0.0000018454,0.0000018421,0.0000018391,0.0000018363,0.0000018334, +0.0000018299,0.0000018256,0.0000018205,0.0000018145,0.0000018094, +0.0000018064,0.0000018081,0.0000018127,0.0000018206,0.0000018302, +0.0000018389,0.0000018446,0.0000018463,0.0000018459,0.0000018447, +0.0000018437,0.0000018429,0.0000018426,0.0000018427,0.0000018429, +0.0000018429,0.0000018421,0.0000018410,0.0000018399,0.0000018390, +0.0000018380,0.0000018369,0.0000018355,0.0000018342,0.0000018333, +0.0000018329,0.0000018325,0.0000018326,0.0000018331,0.0000018333, +0.0000018334,0.0000018337,0.0000018343,0.0000018350,0.0000018353, +0.0000018354,0.0000018351,0.0000018345,0.0000018332,0.0000018319, +0.0000018308,0.0000018300,0.0000018290,0.0000018281,0.0000018273, +0.0000018268,0.0000018262,0.0000018259,0.0000018259,0.0000018261, +0.0000018268,0.0000018283,0.0000018303,0.0000018328,0.0000018358, +0.0000018390,0.0000018424,0.0000018463,0.0000018512,0.0000018569, +0.0000018627,0.0000018684,0.0000018721,0.0000018740,0.0000018760, +0.0000018757,0.0000018739,0.0000018717,0.0000018691,0.0000018664, +0.0000018639,0.0000018618,0.0000018602,0.0000018591,0.0000018583, +0.0000018578,0.0000018572,0.0000018568,0.0000018571,0.0000018574, +0.0000018577,0.0000018576,0.0000018573,0.0000018578,0.0000018585, +0.0000018585,0.0000018579,0.0000018571,0.0000018568,0.0000018564, +0.0000018556,0.0000018548,0.0000018535,0.0000018520,0.0000018502, +0.0000018484,0.0000018463,0.0000018439,0.0000018413,0.0000018385, +0.0000018360,0.0000018335,0.0000018306,0.0000018274,0.0000018242, +0.0000018212,0.0000018190,0.0000018172,0.0000018160,0.0000018146, +0.0000018127,0.0000018120,0.0000018111,0.0000018109,0.0000018111, +0.0000018112,0.0000018110,0.0000018106,0.0000018097,0.0000018081, +0.0000018061,0.0000018034,0.0000018010,0.0000017986,0.0000017959, +0.0000017948,0.0000017936,0.0000017922,0.0000017903,0.0000017900, +0.0000017913,0.0000017917,0.0000017926,0.0000017934,0.0000017937, +0.0000017934,0.0000017929,0.0000017926,0.0000017926,0.0000017925, +0.0000017917,0.0000017904,0.0000017888,0.0000017875,0.0000017873, +0.0000017882,0.0000017903,0.0000017944,0.0000018002,0.0000018069, +0.0000018122,0.0000018167,0.0000018205,0.0000018235,0.0000018264, +0.0000018286,0.0000018310,0.0000018338,0.0000018356,0.0000018373, +0.0000018389,0.0000018405,0.0000018424,0.0000018450,0.0000018479, +0.0000018506,0.0000018533,0.0000018562,0.0000018594,0.0000018626, +0.0000018658,0.0000018677,0.0000018690,0.0000018694,0.0000018688, +0.0000018670,0.0000018645,0.0000018603,0.0000018559,0.0000018527, +0.0000018504,0.0000018477,0.0000018423,0.0000018333,0.0000018225, +0.0000018134,0.0000018087,0.0000018073,0.0000018063,0.0000018037, +0.0000017975,0.0000017891,0.0000017844,0.0000017833,0.0000017847, +0.0000017888,0.0000017921,0.0000017932,0.0000017915,0.0000017880, +0.0000017813,0.0000017745,0.0000017706,0.0000017697,0.0000017705, +0.0000017742,0.0000017789,0.0000017845,0.0000017894,0.0000017934, +0.0000017966,0.0000017992,0.0000018009,0.0000018025,0.0000018033, +0.0000018049,0.0000018053,0.0000018044,0.0000018028,0.0000018003, +0.0000017977,0.0000017943,0.0000017912,0.0000017890,0.0000017873, +0.0000017868,0.0000017884,0.0000017910,0.0000017942,0.0000017974, +0.0000018007,0.0000018036,0.0000018064,0.0000018087,0.0000018110, +0.0000018137,0.0000018168,0.0000018192,0.0000018215,0.0000018244, +0.0000018267,0.0000018285,0.0000018299,0.0000018314,0.0000018322, +0.0000018325,0.0000018324,0.0000018313,0.0000018300,0.0000018285, +0.0000018268,0.0000018248,0.0000018228,0.0000018212,0.0000018198, +0.0000018196,0.0000018206,0.0000018221,0.0000018241,0.0000018260, +0.0000018281,0.0000018300,0.0000018322,0.0000018349,0.0000018378, +0.0000018403,0.0000018420,0.0000018431,0.0000018440,0.0000018449, +0.0000018453,0.0000018457,0.0000018465,0.0000018470,0.0000018480, +0.0000018498,0.0000018524,0.0000018556,0.0000018588,0.0000018608, +0.0000018610,0.0000018597,0.0000018567,0.0000018524,0.0000018479, +0.0000018447,0.0000018425,0.0000018412,0.0000018408,0.0000018412, +0.0000018429,0.0000018450,0.0000018466,0.0000018471,0.0000018469, +0.0000018464,0.0000018465,0.0000018480,0.0000018512,0.0000018548, +0.0000018578,0.0000018591,0.0000018580,0.0000018541,0.0000018478, +0.0000018411,0.0000018357,0.0000018326,0.0000018309,0.0000018309, +0.0000018317,0.0000018329,0.0000018344,0.0000018354,0.0000018367, +0.0000018381,0.0000018391,0.0000018398,0.0000018404,0.0000018411, +0.0000018420,0.0000018435,0.0000018454,0.0000018470,0.0000018483, +0.0000018497,0.0000018515,0.0000018534,0.0000018551,0.0000018567, +0.0000018582,0.0000018590,0.0000018590,0.0000018586,0.0000018579, +0.0000018575,0.0000018578,0.0000018585,0.0000018593,0.0000018601, +0.0000018608,0.0000018618,0.0000018632,0.0000018647,0.0000018663, +0.0000018677,0.0000018686,0.0000018691,0.0000018691,0.0000018691, +0.0000018692,0.0000018695,0.0000018699,0.0000018699,0.0000018692, +0.0000018677,0.0000018660,0.0000018646,0.0000018635,0.0000018625, +0.0000018613,0.0000018600,0.0000018590,0.0000018587,0.0000018599, +0.0000018620,0.0000018647,0.0000018672,0.0000018689,0.0000018698, +0.0000018700,0.0000018699,0.0000018695,0.0000018694,0.0000018697, +0.0000018693,0.0000018681,0.0000018656,0.0000018614,0.0000018572, +0.0000018541,0.0000018523,0.0000018510,0.0000018495,0.0000018485, +0.0000018482,0.0000018487,0.0000018505,0.0000018530,0.0000018560, +0.0000018590,0.0000018615,0.0000018641,0.0000018668,0.0000018696, +0.0000018725,0.0000018757,0.0000018784,0.0000018815,0.0000018853, +0.0000018891,0.0000018925,0.0000018957,0.0000018981,0.0000018997, +0.0000019007,0.0000019009,0.0000019004,0.0000018991,0.0000018977, +0.0000018964,0.0000018946,0.0000018924,0.0000018906,0.0000018888, +0.0000018873,0.0000018862,0.0000018847,0.0000018828,0.0000018811, +0.0000018814,0.0000018839,0.0000018877,0.0000018920,0.0000018941, +0.0000018927,0.0000018873,0.0000018785,0.0000018702,0.0000018651, +0.0000018630,0.0000018631,0.0000018643,0.0000018644,0.0000018628, +0.0000018593,0.0000018547,0.0000018506,0.0000018477,0.0000018459, +0.0000018450,0.0000018442,0.0000018424,0.0000018394,0.0000018354, +0.0000018308,0.0000018262,0.0000018222,0.0000018179,0.0000018133, +0.0000018087,0.0000018044,0.0000018006,0.0000017985,0.0000017973, +0.0000017968,0.0000017970,0.0000017970,0.0000017967,0.0000017968, +0.0000017965,0.0000017964,0.0000017963,0.0000017964,0.0000017975, +0.0000017990,0.0000018007,0.0000018030,0.0000018055,0.0000018083, +0.0000018113,0.0000018138,0.0000018160,0.0000018184,0.0000018209, +0.0000018241,0.0000018286,0.0000018335,0.0000018384,0.0000018424, +0.0000018460,0.0000018493,0.0000018518,0.0000018535,0.0000018551, +0.0000018563,0.0000018574,0.0000018580,0.0000018580,0.0000018584, +0.0000018592,0.0000018601,0.0000018611,0.0000018624,0.0000018635, +0.0000018645,0.0000018660,0.0000018670,0.0000018669,0.0000018664, +0.0000018644,0.0000018612,0.0000018572,0.0000018523,0.0000018467, +0.0000018415,0.0000018374,0.0000018348,0.0000018335,0.0000018333, +0.0000018340,0.0000018343,0.0000018353,0.0000018378,0.0000018400, +0.0000018414,0.0000018424,0.0000018423,0.0000018402,0.0000018389, +0.0000018368,0.0000018348,0.0000018316,0.0000018289,0.0000018263, +0.0000018251,0.0000018235,0.0000018227,0.0000018225,0.0000018218, +0.0000018236,0.0000018241,0.0000018259,0.0000018279,0.0000018303, +0.0000018317,0.0000018335,0.0000018335,0.0000018335,0.0000018325, +0.0000018312,0.0000018296,0.0000018287,0.0000018280,0.0000018271, +0.0000018255,0.0000018233,0.0000018199,0.0000018150,0.0000018106, +0.0000018071,0.0000018041,0.0000018014,0.0000018002,0.0000017991, +0.0000017972,0.0000017947,0.0000017914,0.0000017866,0.0000017819, +0.0000017783,0.0000017757,0.0000017734,0.0000017720,0.0000017735, +0.0000017728,0.0000017723,0.0000017729,0.0000017739,0.0000017761, +0.0000017785,0.0000017816,0.0000017853,0.0000017885,0.0000017913, +0.0000017943,0.0000017977,0.0000018003,0.0000018007,0.0000018004, +0.0000018000,0.0000018005,0.0000017999,0.0000017987,0.0000017976, +0.0000017977,0.0000017976,0.0000017967,0.0000017943,0.0000017919, +0.0000017888,0.0000017854,0.0000017816,0.0000017774,0.0000017738, +0.0000017714,0.0000017711,0.0000017711,0.0000017718,0.0000017731, +0.0000017759,0.0000017768,0.0000017752,0.0000017718,0.0000017675, +0.0000017619,0.0000017557,0.0000017499,0.0000017447,0.0000017409, +0.0000017397,0.0000017406,0.0000017422,0.0000017429,0.0000017426, +0.0000017403,0.0000017377,0.0000017378,0.0000017417,0.0000017476, +0.0000017518,0.0000017536,0.0000017536,0.0000017531,0.0000017524, +0.0000017539,0.0000017564,0.0000017597,0.0000017631,0.0000017646, +0.0000017649,0.0000017647,0.0000017633,0.0000017613,0.0000017583, +0.0000017553,0.0000017536,0.0000017530,0.0000017532,0.0000017512, +0.0000017479,0.0000017434,0.0000017385,0.0000017338,0.0000017303, +0.0000017289,0.0000017288,0.0000017280,0.0000017270,0.0000017262, +0.0000017263,0.0000017276,0.0000017308,0.0000017344,0.0000017373, +0.0000017386,0.0000017387,0.0000017401,0.0000017428,0.0000017461, +0.0000017506,0.0000017560,0.0000017640,0.0000017739,0.0000017853, +0.0000017972,0.0000018082,0.0000018186,0.0000018292,0.0000018406, +0.0000018512,0.0000018601,0.0000018684,0.0000018768,0.0000018843, +0.0000018905,0.0000018920,0.0000018899,0.0000018867,0.0000018844, +0.0000018837,0.0000018829,0.0000018805,0.0000018761,0.0000018705, +0.0000018644,0.0000018585,0.0000018558,0.0000018555,0.0000018587, +0.0000018657,0.0000018740,0.0000018805,0.0000018812,0.0000018801, +0.0000018778,0.0000018759,0.0000018750,0.0000018750,0.0000018741, +0.0000018696,0.0000018613,0.0000018534,0.0000018487,0.0000018472, +0.0000018465,0.0000018454,0.0000018443,0.0000018445,0.0000018461, +0.0000018488,0.0000018516,0.0000018525,0.0000018512,0.0000018489, +0.0000018473,0.0000018467,0.0000018451,0.0000018410,0.0000018354, +0.0000018302,0.0000018268,0.0000018253,0.0000018240,0.0000018229, +0.0000018219,0.0000018198,0.0000018181,0.0000018175,0.0000018186, +0.0000018213,0.0000018262,0.0000018312,0.0000018354,0.0000018400, +0.0000018450,0.0000018493,0.0000018522,0.0000018536,0.0000018544, +0.0000018569,0.0000018629,0.0000018716,0.0000018796,0.0000018838, +0.0000018840,0.0000018814,0.0000018781,0.0000018759,0.0000018747, +0.0000018734,0.0000018723,0.0000018709,0.0000018692,0.0000018681, +0.0000018681,0.0000018683,0.0000018681,0.0000018674,0.0000018665, +0.0000018659,0.0000018656,0.0000018654,0.0000018645,0.0000018626, +0.0000018596,0.0000018560,0.0000018528,0.0000018493,0.0000018455, +0.0000018412,0.0000018377,0.0000018362,0.0000018363,0.0000018377, +0.0000018406,0.0000018447,0.0000018480,0.0000018489,0.0000018482, +0.0000018445,0.0000018375,0.0000018276,0.0000018153,0.0000018023, +0.0000017941,0.0000017938,0.0000017968,0.0000017985,0.0000017989, +0.0000017986,0.0000017962,0.0000017907,0.0000017843,0.0000017814, +0.0000017816,0.0000017835,0.0000017878,0.0000017949,0.0000018036, +0.0000018117,0.0000018159,0.0000018152,0.0000018114,0.0000018077, +0.0000018064,0.0000018065,0.0000018058,0.0000018046,0.0000018024, +0.0000018028,0.0000018019,0.0000017992,0.0000017942,0.0000017887, +0.0000017840,0.0000017806,0.0000017788,0.0000017777,0.0000017767, +0.0000017756,0.0000017734,0.0000017694,0.0000017646,0.0000017605, +0.0000017583,0.0000017581,0.0000017585,0.0000017587,0.0000017585, +0.0000017588,0.0000017583,0.0000017552,0.0000017514,0.0000017476, +0.0000017444,0.0000017419,0.0000017386,0.0000017340,0.0000017305, +0.0000017303,0.0000017326,0.0000017347,0.0000017351,0.0000017344, +0.0000017335,0.0000017318,0.0000017299,0.0000017276,0.0000017233, +0.0000017185,0.0000017163,0.0000017135,0.0000017120,0.0000017123, +0.0000017137,0.0000017162,0.0000017198,0.0000017243,0.0000017292, +0.0000017340,0.0000017395,0.0000017462,0.0000017528,0.0000017593, +0.0000017657,0.0000017720,0.0000017777,0.0000017820,0.0000017855, +0.0000017902,0.0000017966,0.0000018021,0.0000018051,0.0000018074, +0.0000018074,0.0000018040,0.0000017982,0.0000017911,0.0000017853, +0.0000017810,0.0000017790,0.0000017775,0.0000017771,0.0000017798, +0.0000017842,0.0000017824,0.0000017739,0.0000017723,0.0000017734, +0.0000018049,0.0000018601,0.0000018862,0.0000018862,0.0000018821, +0.0000018812,0.0000018845,0.0000018899,0.0000018924,0.0000018842, +0.0000018500,0.0000018130,0.0000018019,0.0000018018,0.0000017989, +0.0000017921,0.0000017850,0.0000017822,0.0000017806,0.0000017735, +0.0000017610,0.0000017504,0.0000017437,0.0000017397,0.0000017389, +0.0000017410,0.0000017440,0.0000017458,0.0000017472,0.0000017509, +0.0000017563,0.0000017617,0.0000017621,0.0000017578,0.0000017488, +0.0000017431,0.0000017558,0.0000017817,0.0000017861,0.0000017728, +0.0000017612,0.0000017581,0.0000017610,0.0000017623,0.0000017638, +0.0000017665,0.0000017694,0.0000017720,0.0000017743,0.0000017758, +0.0000017765,0.0000017756,0.0000017727,0.0000017705,0.0000017709, +0.0000017763,0.0000017842,0.0000017860,0.0000017797,0.0000017741, +0.0000017747,0.0000017844,0.0000018027,0.0000018118,0.0000017954, +0.0000017724,0.0000017611,0.0000017555,0.0000017511,0.0000017502, +0.0000017517,0.0000017584,0.0000017674,0.0000017723,0.0000017699, +0.0000017596,0.0000017463,0.0000017387,0.0000017411,0.0000017546, +0.0000017722,0.0000017836,0.0000017855,0.0000017826,0.0000017807, +0.0000017805,0.0000017797,0.0000017772,0.0000017740,0.0000017694, +0.0000017637,0.0000017599,0.0000017595,0.0000017606,0.0000017613, +0.0000017624,0.0000017656,0.0000017691,0.0000017702,0.0000017689, +0.0000017672,0.0000017668,0.0000017686,0.0000017727,0.0000017743, +0.0000017717,0.0000017694,0.0000017705,0.0000017720,0.0000017713, +0.0000017705,0.0000017717,0.0000017750,0.0000017775,0.0000017781, +0.0000017768,0.0000017743,0.0000017726,0.0000017727,0.0000017742, +0.0000017752,0.0000017744,0.0000017711,0.0000017671,0.0000017639, +0.0000017610,0.0000017579,0.0000017566,0.0000017573,0.0000017602, +0.0000017629,0.0000017626,0.0000017592,0.0000017554,0.0000017540, +0.0000017543,0.0000017583,0.0000017659,0.0000017737,0.0000017783, +0.0000017792,0.0000017775,0.0000017735,0.0000017686,0.0000017625, +0.0000017563,0.0000017547,0.0000017626,0.0000017794,0.0000017957, +0.0000018024,0.0000018036,0.0000018101,0.0000018240,0.0000018367, +0.0000018439,0.0000018514,0.0000018540,0.0000018555,0.0000018566, +0.0000018579,0.0000018593,0.0000018603,0.0000018611,0.0000018617, +0.0000018616,0.0000018613,0.0000018612,0.0000018612,0.0000018611, +0.0000018607,0.0000018595,0.0000018583,0.0000018574,0.0000018572, +0.0000018579,0.0000018578,0.0000018572,0.0000018577,0.0000018587, +0.0000018576,0.0000018526,0.0000018478,0.0000018468,0.0000018479, +0.0000018473,0.0000018432,0.0000018355,0.0000018294,0.0000018285, +0.0000018298,0.0000018324,0.0000018365,0.0000018415,0.0000018458, +0.0000018482,0.0000018487,0.0000018485,0.0000018480,0.0000018481, +0.0000018500,0.0000018502,0.0000018515,0.0000018534,0.0000018555, +0.0000018582,0.0000018606,0.0000018626,0.0000018642,0.0000018654, +0.0000018672,0.0000018689,0.0000018698,0.0000018704,0.0000018706, +0.0000018707,0.0000018706,0.0000018700,0.0000018692,0.0000018682, +0.0000018670,0.0000018655,0.0000018642,0.0000018635,0.0000018626, +0.0000018614,0.0000018599,0.0000018574,0.0000018542,0.0000018512, +0.0000018484,0.0000018460,0.0000018437,0.0000018406,0.0000018368, +0.0000018322,0.0000018261,0.0000018195,0.0000018133,0.0000018095, +0.0000018097,0.0000018138,0.0000018223,0.0000018320,0.0000018397, +0.0000018434,0.0000018440,0.0000018428,0.0000018411,0.0000018396, +0.0000018387,0.0000018387,0.0000018391,0.0000018392,0.0000018387, +0.0000018379,0.0000018375,0.0000018372,0.0000018369,0.0000018364, +0.0000018356,0.0000018351,0.0000018351,0.0000018348,0.0000018344, +0.0000018343,0.0000018340,0.0000018335,0.0000018329,0.0000018326, +0.0000018327,0.0000018327,0.0000018325,0.0000018323,0.0000018319, +0.0000018311,0.0000018298,0.0000018286,0.0000018275,0.0000018267, +0.0000018262,0.0000018260,0.0000018259,0.0000018260,0.0000018258, +0.0000018261,0.0000018266,0.0000018269,0.0000018272,0.0000018278, +0.0000018281,0.0000018286,0.0000018294,0.0000018306,0.0000018323, +0.0000018349,0.0000018384,0.0000018420,0.0000018453,0.0000018484, +0.0000018519,0.0000018560,0.0000018606,0.0000018651,0.0000018694, +0.0000018716,0.0000018730,0.0000018748,0.0000018750,0.0000018741, +0.0000018727,0.0000018712,0.0000018696,0.0000018681,0.0000018663, +0.0000018650,0.0000018644,0.0000018641,0.0000018640,0.0000018635, +0.0000018632,0.0000018635,0.0000018640,0.0000018642,0.0000018643, +0.0000018644,0.0000018646,0.0000018648,0.0000018649,0.0000018649, +0.0000018647,0.0000018643,0.0000018636,0.0000018626,0.0000018615, +0.0000018605,0.0000018596,0.0000018585,0.0000018574,0.0000018563, +0.0000018550,0.0000018531,0.0000018511,0.0000018492,0.0000018477, +0.0000018462,0.0000018449,0.0000018438,0.0000018415,0.0000018399, +0.0000018384,0.0000018374,0.0000018367,0.0000018360,0.0000018351, +0.0000018346,0.0000018340,0.0000018331,0.0000018315,0.0000018295, +0.0000018271,0.0000018248,0.0000018220,0.0000018189,0.0000018162, +0.0000018130,0.0000018098,0.0000018073,0.0000018039,0.0000018006, +0.0000017984,0.0000017971,0.0000017952,0.0000017943,0.0000017941, +0.0000017943,0.0000017954,0.0000017960,0.0000017957,0.0000017946, +0.0000017925,0.0000017899,0.0000017875,0.0000017865,0.0000017864, +0.0000017886,0.0000017930,0.0000017981,0.0000018032,0.0000018080, +0.0000018125,0.0000018164,0.0000018203,0.0000018240,0.0000018275, +0.0000018309,0.0000018331,0.0000018345,0.0000018359,0.0000018371, +0.0000018380,0.0000018391,0.0000018405,0.0000018422,0.0000018434, +0.0000018444,0.0000018456,0.0000018475,0.0000018503,0.0000018537, +0.0000018577,0.0000018620,0.0000018655,0.0000018685,0.0000018705, +0.0000018708,0.0000018701,0.0000018674,0.0000018635,0.0000018599, +0.0000018571,0.0000018546,0.0000018501,0.0000018415,0.0000018294, +0.0000018179,0.0000018119,0.0000018110,0.0000018116,0.0000018113, +0.0000018062,0.0000017971,0.0000017904,0.0000017881,0.0000017885, +0.0000017902,0.0000017914,0.0000017914,0.0000017899,0.0000017871, +0.0000017831,0.0000017793,0.0000017769,0.0000017764,0.0000017772, +0.0000017800,0.0000017832,0.0000017874,0.0000017917,0.0000017949, +0.0000017977,0.0000018000,0.0000018034,0.0000018069,0.0000018096, +0.0000018112,0.0000018116,0.0000018104,0.0000018075,0.0000018045, +0.0000018014,0.0000017981,0.0000017952,0.0000017932,0.0000017929, +0.0000017943,0.0000017965,0.0000017994,0.0000018018,0.0000018047, +0.0000018075,0.0000018101,0.0000018124,0.0000018156,0.0000018180, +0.0000018207,0.0000018237,0.0000018271,0.0000018293,0.0000018313, +0.0000018333,0.0000018347,0.0000018355,0.0000018364,0.0000018363, +0.0000018359,0.0000018349,0.0000018335,0.0000018319,0.0000018300, +0.0000018282,0.0000018267,0.0000018255,0.0000018257,0.0000018266, +0.0000018279,0.0000018298,0.0000018323,0.0000018350,0.0000018377, +0.0000018402,0.0000018420,0.0000018433,0.0000018441,0.0000018449, +0.0000018462,0.0000018474,0.0000018482,0.0000018489,0.0000018501, +0.0000018512,0.0000018530,0.0000018558,0.0000018590,0.0000018612, +0.0000018622,0.0000018620,0.0000018605,0.0000018575,0.0000018538, +0.0000018500,0.0000018468,0.0000018447,0.0000018436,0.0000018436, +0.0000018449,0.0000018468,0.0000018485,0.0000018491,0.0000018486, +0.0000018478,0.0000018470,0.0000018472,0.0000018494,0.0000018532, +0.0000018571,0.0000018595,0.0000018596,0.0000018576,0.0000018525, +0.0000018460,0.0000018404,0.0000018372,0.0000018358,0.0000018353, +0.0000018354,0.0000018357,0.0000018357,0.0000018355,0.0000018354, +0.0000018356,0.0000018363,0.0000018373,0.0000018382,0.0000018385, +0.0000018387,0.0000018388,0.0000018392,0.0000018400,0.0000018416, +0.0000018437,0.0000018460,0.0000018487,0.0000018519,0.0000018552, +0.0000018587,0.0000018622,0.0000018650,0.0000018666,0.0000018669, +0.0000018663,0.0000018651,0.0000018638,0.0000018629,0.0000018626, +0.0000018623,0.0000018622,0.0000018622,0.0000018626,0.0000018634, +0.0000018647,0.0000018664,0.0000018681,0.0000018695,0.0000018706, +0.0000018712,0.0000018712,0.0000018711,0.0000018707,0.0000018711, +0.0000018710,0.0000018699,0.0000018681,0.0000018662,0.0000018647, +0.0000018641,0.0000018635,0.0000018631,0.0000018619,0.0000018598, +0.0000018579,0.0000018573,0.0000018581,0.0000018603,0.0000018629, +0.0000018654,0.0000018680,0.0000018701,0.0000018711,0.0000018712, +0.0000018709,0.0000018713,0.0000018723,0.0000018729,0.0000018719, +0.0000018688,0.0000018643,0.0000018600,0.0000018564,0.0000018536, +0.0000018514,0.0000018504,0.0000018507,0.0000018518,0.0000018535, +0.0000018555,0.0000018576,0.0000018596,0.0000018622,0.0000018645, +0.0000018668,0.0000018691,0.0000018718,0.0000018754,0.0000018784, +0.0000018817,0.0000018858,0.0000018901,0.0000018942,0.0000018979, +0.0000019008,0.0000019030,0.0000019048,0.0000019050,0.0000019043, +0.0000019024,0.0000018996,0.0000018966,0.0000018929,0.0000018892, +0.0000018869,0.0000018860,0.0000018864,0.0000018880,0.0000018892, +0.0000018892,0.0000018885,0.0000018871,0.0000018853,0.0000018853, +0.0000018874,0.0000018904,0.0000018937,0.0000018956,0.0000018949, +0.0000018904,0.0000018816,0.0000018716,0.0000018640,0.0000018606, +0.0000018604,0.0000018617,0.0000018631,0.0000018630,0.0000018620, +0.0000018589,0.0000018550,0.0000018521,0.0000018502,0.0000018491, +0.0000018483,0.0000018470,0.0000018450,0.0000018423,0.0000018391, +0.0000018347,0.0000018294,0.0000018237,0.0000018182,0.0000018135, +0.0000018102,0.0000018080,0.0000018066,0.0000018059,0.0000018051, +0.0000018039,0.0000018025,0.0000018012,0.0000018000,0.0000017989, +0.0000017986,0.0000017990,0.0000018004,0.0000018017,0.0000018036, +0.0000018063,0.0000018093,0.0000018120,0.0000018142,0.0000018162, +0.0000018172,0.0000018174,0.0000018180,0.0000018203,0.0000018245, +0.0000018297,0.0000018353,0.0000018407,0.0000018456,0.0000018497, +0.0000018530,0.0000018555,0.0000018574,0.0000018586,0.0000018592, +0.0000018598,0.0000018612,0.0000018632,0.0000018657,0.0000018679, +0.0000018699,0.0000018714,0.0000018733,0.0000018752,0.0000018770, +0.0000018777,0.0000018776,0.0000018763,0.0000018744,0.0000018716, +0.0000018677,0.0000018629,0.0000018580,0.0000018542,0.0000018513, +0.0000018494,0.0000018483,0.0000018469,0.0000018466,0.0000018472, +0.0000018496,0.0000018514,0.0000018539,0.0000018553,0.0000018549, +0.0000018534,0.0000018517,0.0000018495,0.0000018471,0.0000018443, +0.0000018424,0.0000018411,0.0000018404,0.0000018390,0.0000018383, +0.0000018370,0.0000018384,0.0000018392,0.0000018408,0.0000018427, +0.0000018452,0.0000018475,0.0000018500,0.0000018511,0.0000018509, +0.0000018498,0.0000018481,0.0000018458,0.0000018432,0.0000018415, +0.0000018401,0.0000018387,0.0000018375,0.0000018353,0.0000018325, +0.0000018296,0.0000018268,0.0000018237,0.0000018198,0.0000018174, +0.0000018157,0.0000018140,0.0000018115,0.0000018078,0.0000018024, +0.0000017966,0.0000017924,0.0000017893,0.0000017862,0.0000017826, +0.0000017787,0.0000017746,0.0000017709,0.0000017687,0.0000017666, +0.0000017668,0.0000017693,0.0000017735,0.0000017777,0.0000017818, +0.0000017864,0.0000017908,0.0000017947,0.0000017977,0.0000017991, +0.0000017996,0.0000017996,0.0000018002,0.0000018001,0.0000017987, +0.0000017968,0.0000017963,0.0000017961,0.0000017961,0.0000017953, +0.0000017948,0.0000017936,0.0000017924,0.0000017892,0.0000017842, +0.0000017788,0.0000017742,0.0000017717,0.0000017709,0.0000017717, +0.0000017737,0.0000017773,0.0000017800,0.0000017807,0.0000017790, +0.0000017758,0.0000017721,0.0000017681,0.0000017638,0.0000017590, +0.0000017541,0.0000017512,0.0000017512,0.0000017520,0.0000017522, +0.0000017512,0.0000017477,0.0000017439,0.0000017427,0.0000017447, +0.0000017491,0.0000017524,0.0000017535,0.0000017532,0.0000017526, +0.0000017519,0.0000017534,0.0000017557,0.0000017597,0.0000017642, +0.0000017681,0.0000017714,0.0000017729,0.0000017725,0.0000017705, +0.0000017673,0.0000017638,0.0000017615,0.0000017608,0.0000017608, +0.0000017585,0.0000017548,0.0000017497,0.0000017438,0.0000017379, +0.0000017326,0.0000017293,0.0000017282,0.0000017277,0.0000017270, +0.0000017264,0.0000017258,0.0000017265,0.0000017296,0.0000017341, +0.0000017376,0.0000017379,0.0000017367,0.0000017358,0.0000017349, +0.0000017346,0.0000017344,0.0000017339,0.0000017346,0.0000017367, +0.0000017407,0.0000017461,0.0000017532,0.0000017630,0.0000017763, +0.0000017933,0.0000018114,0.0000018289,0.0000018453,0.0000018595, +0.0000018697,0.0000018766,0.0000018812,0.0000018836,0.0000018839, +0.0000018835,0.0000018834,0.0000018835,0.0000018840,0.0000018833, +0.0000018805,0.0000018756,0.0000018690,0.0000018614,0.0000018553, +0.0000018528,0.0000018548,0.0000018612,0.0000018695,0.0000018772, +0.0000018798,0.0000018797,0.0000018783,0.0000018777,0.0000018781, +0.0000018783,0.0000018766,0.0000018717,0.0000018650,0.0000018587, +0.0000018541,0.0000018509,0.0000018482,0.0000018454,0.0000018440, +0.0000018431,0.0000018442,0.0000018462,0.0000018475,0.0000018470, +0.0000018461,0.0000018460,0.0000018457,0.0000018438,0.0000018398, +0.0000018345,0.0000018306,0.0000018296,0.0000018291,0.0000018286, +0.0000018281,0.0000018271,0.0000018261,0.0000018257,0.0000018260, +0.0000018273,0.0000018309,0.0000018355,0.0000018400,0.0000018451, +0.0000018506,0.0000018552,0.0000018583,0.0000018595,0.0000018592, +0.0000018593,0.0000018619,0.0000018679,0.0000018758,0.0000018819, +0.0000018839,0.0000018827,0.0000018796,0.0000018770,0.0000018757, +0.0000018753,0.0000018753,0.0000018751,0.0000018735,0.0000018715, +0.0000018702,0.0000018695,0.0000018690,0.0000018685,0.0000018682, +0.0000018679,0.0000018676,0.0000018671,0.0000018656,0.0000018636, +0.0000018620,0.0000018605,0.0000018580,0.0000018545,0.0000018510, +0.0000018484,0.0000018459,0.0000018426,0.0000018392,0.0000018370, +0.0000018373,0.0000018403,0.0000018447,0.0000018474,0.0000018475, +0.0000018461,0.0000018422,0.0000018344,0.0000018233,0.0000018107, +0.0000018007,0.0000017968,0.0000017973,0.0000017985,0.0000017993, +0.0000018002,0.0000018000,0.0000017968,0.0000017902,0.0000017840, +0.0000017816,0.0000017817,0.0000017832,0.0000017888,0.0000017978, +0.0000018074,0.0000018142,0.0000018161,0.0000018139,0.0000018083, +0.0000018037,0.0000018007,0.0000017990,0.0000017977,0.0000017977, +0.0000018000,0.0000018044,0.0000018081,0.0000018089,0.0000018072, +0.0000018031,0.0000017976,0.0000017925,0.0000017880,0.0000017837, +0.0000017801,0.0000017773,0.0000017749,0.0000017733,0.0000017734, +0.0000017749,0.0000017769,0.0000017784,0.0000017787,0.0000017784, +0.0000017780,0.0000017755,0.0000017702,0.0000017635,0.0000017569, +0.0000017510,0.0000017455,0.0000017396,0.0000017334,0.0000017301, +0.0000017305,0.0000017328,0.0000017344,0.0000017348,0.0000017348, +0.0000017349,0.0000017345,0.0000017333,0.0000017314,0.0000017281, +0.0000017234,0.0000017193,0.0000017158,0.0000017128,0.0000017106, +0.0000017096,0.0000017083,0.0000017082,0.0000017096,0.0000017124, +0.0000017166,0.0000017230,0.0000017314,0.0000017397,0.0000017474, +0.0000017544,0.0000017607,0.0000017662,0.0000017701,0.0000017725, +0.0000017754,0.0000017816,0.0000017897,0.0000017972,0.0000018027, +0.0000018039,0.0000018016,0.0000017968,0.0000017908,0.0000017847, +0.0000017790,0.0000017752,0.0000017728,0.0000017709,0.0000017718, +0.0000017777,0.0000017810,0.0000017754,0.0000017706,0.0000017694, +0.0000017895,0.0000018365,0.0000018740,0.0000018875,0.0000018895, +0.0000018886,0.0000018914,0.0000018952,0.0000018933,0.0000018721, +0.0000018307,0.0000018052,0.0000018025,0.0000018016,0.0000017963, +0.0000017872,0.0000017822,0.0000017814,0.0000017763,0.0000017633, +0.0000017500,0.0000017423,0.0000017385,0.0000017390,0.0000017432, +0.0000017489,0.0000017533,0.0000017544,0.0000017529,0.0000017518, +0.0000017553,0.0000017610,0.0000017635,0.0000017618,0.0000017554, +0.0000017451,0.0000017423,0.0000017626,0.0000017865,0.0000017853, +0.0000017729,0.0000017632,0.0000017592,0.0000017624,0.0000017627, +0.0000017629,0.0000017649,0.0000017677,0.0000017720,0.0000017762, +0.0000017794,0.0000017813,0.0000017808,0.0000017772,0.0000017724, +0.0000017718,0.0000017791,0.0000017866,0.0000017845,0.0000017747, +0.0000017728,0.0000017794,0.0000017938,0.0000018046,0.0000017968, +0.0000017746,0.0000017616,0.0000017560,0.0000017517,0.0000017506, +0.0000017507,0.0000017529,0.0000017600,0.0000017689,0.0000017727, +0.0000017689,0.0000017566,0.0000017429,0.0000017372,0.0000017433, +0.0000017606,0.0000017772,0.0000017840,0.0000017837,0.0000017814, +0.0000017805,0.0000017801,0.0000017779,0.0000017746,0.0000017708, +0.0000017654,0.0000017599,0.0000017573,0.0000017579,0.0000017599, +0.0000017619,0.0000017653,0.0000017696,0.0000017721,0.0000017717, +0.0000017697,0.0000017679,0.0000017683,0.0000017714,0.0000017743, +0.0000017729,0.0000017695,0.0000017690,0.0000017712,0.0000017725, +0.0000017725,0.0000017732,0.0000017759,0.0000017786,0.0000017794, +0.0000017775,0.0000017742,0.0000017722,0.0000017725,0.0000017733, +0.0000017732,0.0000017710,0.0000017674,0.0000017644,0.0000017618, +0.0000017592,0.0000017580,0.0000017590,0.0000017631,0.0000017660, +0.0000017649,0.0000017597,0.0000017554,0.0000017549,0.0000017588, +0.0000017669,0.0000017754,0.0000017790,0.0000017781,0.0000017738, +0.0000017678,0.0000017622,0.0000017571,0.0000017541,0.0000017553, +0.0000017654,0.0000017823,0.0000017962,0.0000018011,0.0000018026, +0.0000018101,0.0000018247,0.0000018375,0.0000018442,0.0000018481, +0.0000018556,0.0000018586,0.0000018610,0.0000018627,0.0000018639, +0.0000018644,0.0000018643,0.0000018638,0.0000018631,0.0000018622, +0.0000018616,0.0000018614,0.0000018614,0.0000018615,0.0000018613, +0.0000018607,0.0000018597,0.0000018583,0.0000018569,0.0000018560, +0.0000018555,0.0000018555,0.0000018566,0.0000018562,0.0000018520, +0.0000018476,0.0000018475,0.0000018495,0.0000018495,0.0000018445, +0.0000018352,0.0000018300,0.0000018294,0.0000018321,0.0000018367, +0.0000018418,0.0000018454,0.0000018469,0.0000018466,0.0000018453, +0.0000018457,0.0000018481,0.0000018518,0.0000018563,0.0000018601, +0.0000018622,0.0000018649,0.0000018674,0.0000018697,0.0000018714, +0.0000018732,0.0000018743,0.0000018752,0.0000018762,0.0000018784, +0.0000018805,0.0000018821,0.0000018824,0.0000018819,0.0000018813, +0.0000018799,0.0000018780,0.0000018764,0.0000018752,0.0000018742, +0.0000018731,0.0000018722,0.0000018717,0.0000018708,0.0000018695, +0.0000018675,0.0000018646,0.0000018614,0.0000018584,0.0000018558, +0.0000018533,0.0000018507,0.0000018476,0.0000018440,0.0000018397, +0.0000018346,0.0000018295,0.0000018232,0.0000018161,0.0000018115, +0.0000018125,0.0000018169,0.0000018248,0.0000018329,0.0000018388, +0.0000018417,0.0000018418,0.0000018401,0.0000018378,0.0000018365, +0.0000018360,0.0000018363,0.0000018367,0.0000018370,0.0000018371, +0.0000018376,0.0000018380,0.0000018382,0.0000018379,0.0000018371, +0.0000018364,0.0000018355,0.0000018341,0.0000018326,0.0000018314, +0.0000018298,0.0000018280,0.0000018270,0.0000018267,0.0000018265, +0.0000018260,0.0000018256,0.0000018254,0.0000018249,0.0000018241, +0.0000018230,0.0000018215,0.0000018199,0.0000018186,0.0000018179, +0.0000018175,0.0000018175,0.0000018180,0.0000018189,0.0000018203, +0.0000018219,0.0000018235,0.0000018253,0.0000018271,0.0000018283, +0.0000018288,0.0000018295,0.0000018298,0.0000018301,0.0000018311, +0.0000018324,0.0000018340,0.0000018358,0.0000018374,0.0000018392, +0.0000018412,0.0000018431,0.0000018453,0.0000018475,0.0000018496, +0.0000018528,0.0000018566,0.0000018608,0.0000018653,0.0000018695, +0.0000018719,0.0000018736,0.0000018765,0.0000018780,0.0000018784, +0.0000018780,0.0000018780,0.0000018772,0.0000018754,0.0000018738, +0.0000018724,0.0000018711,0.0000018696,0.0000018687,0.0000018684, +0.0000018688,0.0000018691,0.0000018695,0.0000018701,0.0000018708, +0.0000018709,0.0000018710,0.0000018707,0.0000018700,0.0000018691, +0.0000018681,0.0000018676,0.0000018670,0.0000018664,0.0000018657, +0.0000018650,0.0000018641,0.0000018634,0.0000018628,0.0000018625, +0.0000018623,0.0000018625,0.0000018620,0.0000018616,0.0000018608, +0.0000018600,0.0000018594,0.0000018588,0.0000018576,0.0000018561, +0.0000018549,0.0000018537,0.0000018525,0.0000018512,0.0000018497, +0.0000018482,0.0000018468,0.0000018452,0.0000018435,0.0000018418, +0.0000018407,0.0000018386,0.0000018355,0.0000018320,0.0000018290, +0.0000018252,0.0000018211,0.0000018177,0.0000018148,0.0000018131, +0.0000018129,0.0000018131,0.0000018130,0.0000018121,0.0000018101, +0.0000018071,0.0000018036,0.0000018004,0.0000017985,0.0000017984, +0.0000017995,0.0000018016,0.0000018049,0.0000018086,0.0000018119, +0.0000018148,0.0000018177,0.0000018213,0.0000018247,0.0000018283, +0.0000018312,0.0000018332,0.0000018352,0.0000018371,0.0000018386, +0.0000018397,0.0000018405,0.0000018410,0.0000018415,0.0000018420, +0.0000018424,0.0000018430,0.0000018438,0.0000018452,0.0000018477, +0.0000018513,0.0000018559,0.0000018610,0.0000018660,0.0000018701, +0.0000018734,0.0000018751,0.0000018757,0.0000018742,0.0000018705, +0.0000018654,0.0000018608,0.0000018572,0.0000018532,0.0000018463, +0.0000018356,0.0000018245,0.0000018183,0.0000018174,0.0000018178, +0.0000018176,0.0000018123,0.0000018023,0.0000017929,0.0000017883, +0.0000017875,0.0000017886,0.0000017891,0.0000017897,0.0000017900, +0.0000017899,0.0000017888,0.0000017872,0.0000017855,0.0000017844, +0.0000017847,0.0000017859,0.0000017879,0.0000017907,0.0000017929, +0.0000017959,0.0000017991,0.0000018023,0.0000018066,0.0000018103, +0.0000018135,0.0000018150,0.0000018153,0.0000018151,0.0000018126, +0.0000018099,0.0000018069,0.0000018042,0.0000018025,0.0000018022, +0.0000018027,0.0000018039,0.0000018058,0.0000018083,0.0000018105, +0.0000018128,0.0000018159,0.0000018190,0.0000018223,0.0000018261, +0.0000018303,0.0000018340,0.0000018370,0.0000018395,0.0000018416, +0.0000018428,0.0000018436,0.0000018437,0.0000018434,0.0000018426, +0.0000018413,0.0000018397,0.0000018380,0.0000018361,0.0000018346, +0.0000018331,0.0000018327,0.0000018331,0.0000018340,0.0000018354, +0.0000018375,0.0000018397,0.0000018416,0.0000018429,0.0000018437, +0.0000018447,0.0000018462,0.0000018478,0.0000018495,0.0000018507, +0.0000018512,0.0000018517,0.0000018525,0.0000018539,0.0000018564, +0.0000018585,0.0000018601,0.0000018608,0.0000018597,0.0000018580, +0.0000018559,0.0000018534,0.0000018504,0.0000018479,0.0000018461, +0.0000018456,0.0000018463,0.0000018482,0.0000018505,0.0000018512, +0.0000018509,0.0000018494,0.0000018482,0.0000018481,0.0000018495, +0.0000018529,0.0000018574,0.0000018612,0.0000018618,0.0000018609, +0.0000018567,0.0000018506,0.0000018447,0.0000018409,0.0000018394, +0.0000018397,0.0000018406,0.0000018413,0.0000018415,0.0000018412, +0.0000018405,0.0000018395,0.0000018384,0.0000018374,0.0000018369, +0.0000018369,0.0000018368,0.0000018363,0.0000018358,0.0000018357, +0.0000018360,0.0000018369,0.0000018387,0.0000018414,0.0000018449, +0.0000018495,0.0000018546,0.0000018596,0.0000018643,0.0000018683, +0.0000018710,0.0000018725,0.0000018728,0.0000018719,0.0000018699, +0.0000018675,0.0000018656,0.0000018646,0.0000018639,0.0000018634, +0.0000018631,0.0000018631,0.0000018640,0.0000018656,0.0000018672, +0.0000018688,0.0000018704,0.0000018716,0.0000018720,0.0000018709, +0.0000018694,0.0000018679,0.0000018660,0.0000018642,0.0000018625, +0.0000018608,0.0000018596,0.0000018593,0.0000018600,0.0000018613, +0.0000018628,0.0000018633,0.0000018622,0.0000018597,0.0000018575, +0.0000018564,0.0000018568,0.0000018580,0.0000018602,0.0000018633, +0.0000018661,0.0000018682,0.0000018697,0.0000018706,0.0000018716, +0.0000018729,0.0000018743,0.0000018747,0.0000018744,0.0000018719, +0.0000018685,0.0000018645,0.0000018608,0.0000018582,0.0000018575, +0.0000018579,0.0000018592,0.0000018605,0.0000018615,0.0000018621, +0.0000018631,0.0000018646,0.0000018664,0.0000018681,0.0000018696, +0.0000018714,0.0000018740,0.0000018766,0.0000018800,0.0000018837, +0.0000018878,0.0000018924,0.0000018971,0.0000019012,0.0000019043, +0.0000019063,0.0000019071,0.0000019068,0.0000019049,0.0000019017, +0.0000018975,0.0000018925,0.0000018872,0.0000018826,0.0000018797, +0.0000018792,0.0000018807,0.0000018833,0.0000018865,0.0000018896, +0.0000018914,0.0000018919,0.0000018919,0.0000018915,0.0000018907, +0.0000018910,0.0000018927,0.0000018949,0.0000018963,0.0000018958, +0.0000018918,0.0000018832,0.0000018723,0.0000018632,0.0000018580, +0.0000018572,0.0000018592,0.0000018624,0.0000018651,0.0000018654, +0.0000018645,0.0000018618,0.0000018582,0.0000018548,0.0000018521, +0.0000018501,0.0000018488,0.0000018479,0.0000018460,0.0000018433, +0.0000018400,0.0000018365,0.0000018332,0.0000018307,0.0000018292, +0.0000018287,0.0000018283,0.0000018277,0.0000018269,0.0000018259, +0.0000018244,0.0000018223,0.0000018202,0.0000018181,0.0000018158, +0.0000018140,0.0000018125,0.0000018117,0.0000018117,0.0000018125, +0.0000018141,0.0000018153,0.0000018166,0.0000018171,0.0000018170, +0.0000018169,0.0000018172,0.0000018191,0.0000018226,0.0000018275, +0.0000018330,0.0000018382,0.0000018431,0.0000018473,0.0000018502, +0.0000018523,0.0000018539,0.0000018545,0.0000018553,0.0000018575, +0.0000018605,0.0000018633,0.0000018663,0.0000018689,0.0000018713, +0.0000018739,0.0000018763,0.0000018784,0.0000018801,0.0000018811, +0.0000018809,0.0000018800,0.0000018789,0.0000018768,0.0000018736, +0.0000018697,0.0000018659,0.0000018635,0.0000018621,0.0000018595, +0.0000018567,0.0000018553,0.0000018558,0.0000018567,0.0000018581, +0.0000018595,0.0000018607,0.0000018608,0.0000018597,0.0000018583, +0.0000018567,0.0000018549,0.0000018532,0.0000018516,0.0000018506, +0.0000018500,0.0000018491,0.0000018483,0.0000018480,0.0000018482, +0.0000018493,0.0000018503,0.0000018526,0.0000018560,0.0000018592, +0.0000018622,0.0000018639,0.0000018642,0.0000018639,0.0000018626, +0.0000018599,0.0000018574,0.0000018547,0.0000018532,0.0000018521, +0.0000018505,0.0000018491,0.0000018474,0.0000018458,0.0000018429, +0.0000018389,0.0000018350,0.0000018319,0.0000018305,0.0000018291, +0.0000018267,0.0000018227,0.0000018167,0.0000018107,0.0000018060, +0.0000018018,0.0000017969,0.0000017911,0.0000017849,0.0000017789, +0.0000017728,0.0000017673,0.0000017651,0.0000017654,0.0000017676, +0.0000017708,0.0000017755,0.0000017811,0.0000017866,0.0000017910, +0.0000017950,0.0000017978,0.0000017991,0.0000017989,0.0000017988, +0.0000017984,0.0000017973,0.0000017952,0.0000017940,0.0000017929, +0.0000017925,0.0000017920,0.0000017918,0.0000017924,0.0000017932, +0.0000017926,0.0000017896,0.0000017855,0.0000017807,0.0000017764, +0.0000017737,0.0000017732,0.0000017739,0.0000017766,0.0000017808, +0.0000017836,0.0000017840,0.0000017823,0.0000017793,0.0000017760, +0.0000017724,0.0000017681,0.0000017634,0.0000017608,0.0000017605, +0.0000017612,0.0000017617,0.0000017600,0.0000017559,0.0000017514, +0.0000017492,0.0000017495,0.0000017523,0.0000017546,0.0000017548, +0.0000017530,0.0000017513,0.0000017501,0.0000017511,0.0000017534, +0.0000017575,0.0000017630,0.0000017687,0.0000017738,0.0000017773, +0.0000017794,0.0000017785,0.0000017756,0.0000017718,0.0000017689, +0.0000017676,0.0000017671,0.0000017653,0.0000017622,0.0000017574, +0.0000017514,0.0000017448,0.0000017384,0.0000017334,0.0000017305, +0.0000017292,0.0000017284,0.0000017275,0.0000017268,0.0000017268, +0.0000017294,0.0000017340,0.0000017369,0.0000017373,0.0000017362, +0.0000017344,0.0000017340,0.0000017340,0.0000017344,0.0000017336, +0.0000017322,0.0000017317,0.0000017308,0.0000017288,0.0000017278, +0.0000017295,0.0000017347,0.0000017443,0.0000017584,0.0000017769, +0.0000017993,0.0000018232,0.0000018434,0.0000018575,0.0000018663, +0.0000018718,0.0000018755,0.0000018782,0.0000018802,0.0000018825, +0.0000018844,0.0000018856,0.0000018861,0.0000018844,0.0000018806, +0.0000018745,0.0000018659,0.0000018563,0.0000018514,0.0000018515, +0.0000018573,0.0000018662,0.0000018744,0.0000018789,0.0000018810, +0.0000018814,0.0000018814,0.0000018805,0.0000018786,0.0000018762, +0.0000018733,0.0000018700,0.0000018658,0.0000018608,0.0000018551, +0.0000018491,0.0000018438,0.0000018416,0.0000018399,0.0000018397, +0.0000018398,0.0000018396,0.0000018398,0.0000018406,0.0000018411, +0.0000018399,0.0000018369,0.0000018335,0.0000018315,0.0000018307, +0.0000018307,0.0000018312,0.0000018311,0.0000018307,0.0000018313, +0.0000018326,0.0000018347,0.0000018382,0.0000018423,0.0000018463, +0.0000018510,0.0000018566,0.0000018610,0.0000018631,0.0000018633, +0.0000018625,0.0000018618,0.0000018629,0.0000018674,0.0000018750, +0.0000018826,0.0000018865,0.0000018865,0.0000018837,0.0000018795, +0.0000018762,0.0000018747,0.0000018748,0.0000018753,0.0000018748, +0.0000018738,0.0000018729,0.0000018720,0.0000018702,0.0000018684, +0.0000018669,0.0000018663,0.0000018665,0.0000018669,0.0000018666, +0.0000018652,0.0000018636,0.0000018624,0.0000018611,0.0000018596, +0.0000018568,0.0000018532,0.0000018506,0.0000018488,0.0000018460, +0.0000018418,0.0000018380,0.0000018369,0.0000018391,0.0000018431, +0.0000018457,0.0000018457,0.0000018431,0.0000018375,0.0000018285, +0.0000018175,0.0000018077,0.0000018020,0.0000018001,0.0000017996, +0.0000017996,0.0000018003,0.0000018014,0.0000018011,0.0000017973, +0.0000017907,0.0000017855,0.0000017827,0.0000017818,0.0000017843, +0.0000017913,0.0000018010,0.0000018091,0.0000018134,0.0000018136, +0.0000018102,0.0000018047,0.0000017999,0.0000017969,0.0000017952, +0.0000017946,0.0000017954,0.0000017986,0.0000018034,0.0000018087, +0.0000018113,0.0000018144,0.0000018141,0.0000018119,0.0000018080, +0.0000018029,0.0000017968,0.0000017905,0.0000017851,0.0000017815, +0.0000017803,0.0000017813,0.0000017841,0.0000017879,0.0000017913, +0.0000017946,0.0000017969,0.0000017963,0.0000017931,0.0000017879, +0.0000017815,0.0000017743,0.0000017663,0.0000017572,0.0000017472, +0.0000017395,0.0000017357,0.0000017338,0.0000017345,0.0000017347, +0.0000017352,0.0000017362,0.0000017373,0.0000017369,0.0000017355, +0.0000017323,0.0000017274,0.0000017225,0.0000017194,0.0000017172, +0.0000017147,0.0000017123,0.0000017095,0.0000017072,0.0000017066, +0.0000017060,0.0000017067,0.0000017095,0.0000017162,0.0000017243, +0.0000017328,0.0000017408,0.0000017485,0.0000017550,0.0000017598, +0.0000017622,0.0000017635,0.0000017669,0.0000017740,0.0000017841, +0.0000017935,0.0000017977,0.0000017972,0.0000017943,0.0000017896, +0.0000017836,0.0000017767,0.0000017711,0.0000017677,0.0000017647, +0.0000017641,0.0000017685,0.0000017752,0.0000017760,0.0000017715, +0.0000017667,0.0000017737,0.0000018040,0.0000018429,0.0000018727, +0.0000018863,0.0000018903,0.0000018921,0.0000018910,0.0000018767, +0.0000018423,0.0000018125,0.0000018032,0.0000018022,0.0000017951, +0.0000017853,0.0000017806,0.0000017803,0.0000017754,0.0000017614, +0.0000017472,0.0000017391,0.0000017360,0.0000017372,0.0000017430, +0.0000017502,0.0000017566,0.0000017618,0.0000017645,0.0000017626, +0.0000017573,0.0000017562,0.0000017615,0.0000017656,0.0000017649, +0.0000017603,0.0000017534,0.0000017427,0.0000017437,0.0000017667, +0.0000017863,0.0000017836,0.0000017747,0.0000017653,0.0000017606, +0.0000017640,0.0000017652,0.0000017658,0.0000017681,0.0000017718, +0.0000017767,0.0000017813,0.0000017841,0.0000017849,0.0000017830, +0.0000017786,0.0000017731,0.0000017744,0.0000017838,0.0000017882, +0.0000017791,0.0000017729,0.0000017763,0.0000017874,0.0000017998, +0.0000017967,0.0000017770,0.0000017623,0.0000017562,0.0000017521, +0.0000017511,0.0000017518,0.0000017523,0.0000017547,0.0000017619, +0.0000017711,0.0000017735,0.0000017669,0.0000017527,0.0000017397, +0.0000017379,0.0000017498,0.0000017680,0.0000017814,0.0000017841, +0.0000017820,0.0000017801,0.0000017798,0.0000017783,0.0000017751, +0.0000017717,0.0000017670,0.0000017603,0.0000017552,0.0000017546, +0.0000017573,0.0000017604,0.0000017640,0.0000017690,0.0000017726, +0.0000017729,0.0000017710,0.0000017687,0.0000017682,0.0000017701, +0.0000017734,0.0000017734,0.0000017699,0.0000017674,0.0000017686, +0.0000017714,0.0000017730,0.0000017743,0.0000017769,0.0000017795, +0.0000017798,0.0000017766,0.0000017725,0.0000017707,0.0000017708, +0.0000017709,0.0000017696,0.0000017670,0.0000017644,0.0000017623, +0.0000017602,0.0000017593,0.0000017618,0.0000017668,0.0000017687, +0.0000017651,0.0000017589,0.0000017564,0.0000017588,0.0000017668, +0.0000017755,0.0000017785,0.0000017758,0.0000017697,0.0000017626, +0.0000017558,0.0000017514,0.0000017514,0.0000017571,0.0000017700, +0.0000017857,0.0000017965,0.0000017996,0.0000018016,0.0000018102, +0.0000018250,0.0000018372,0.0000018438,0.0000018482,0.0000018521, +0.0000018613,0.0000018647,0.0000018664,0.0000018664,0.0000018665, +0.0000018664,0.0000018660,0.0000018652,0.0000018639,0.0000018627, +0.0000018617,0.0000018613,0.0000018612,0.0000018611,0.0000018609, +0.0000018606,0.0000018598,0.0000018583,0.0000018556,0.0000018535, +0.0000018531,0.0000018539,0.0000018543,0.0000018516,0.0000018472, +0.0000018467,0.0000018493,0.0000018507,0.0000018466,0.0000018376, +0.0000018320,0.0000018322,0.0000018362,0.0000018417,0.0000018463, +0.0000018474,0.0000018458,0.0000018435,0.0000018445,0.0000018489, +0.0000018569,0.0000018627,0.0000018673,0.0000018705,0.0000018713, +0.0000018712,0.0000018707,0.0000018707,0.0000018707,0.0000018708, +0.0000018715,0.0000018723,0.0000018733,0.0000018748,0.0000018780, +0.0000018815,0.0000018849,0.0000018861,0.0000018892,0.0000018899, +0.0000018902,0.0000018893,0.0000018872,0.0000018847,0.0000018822, +0.0000018803,0.0000018790,0.0000018782,0.0000018775,0.0000018764, +0.0000018745,0.0000018716,0.0000018685,0.0000018657,0.0000018631, +0.0000018605,0.0000018577,0.0000018545,0.0000018503,0.0000018453, +0.0000018403,0.0000018360,0.0000018310,0.0000018247,0.0000018179, +0.0000018137,0.0000018145,0.0000018191,0.0000018257,0.0000018324, +0.0000018373,0.0000018395,0.0000018389,0.0000018375,0.0000018367, +0.0000018366,0.0000018368,0.0000018374,0.0000018382,0.0000018390, +0.0000018397,0.0000018401,0.0000018393,0.0000018379,0.0000018360, +0.0000018341,0.0000018317,0.0000018294,0.0000018274,0.0000018258, +0.0000018241,0.0000018226,0.0000018222,0.0000018218,0.0000018211, +0.0000018205,0.0000018200,0.0000018193,0.0000018184,0.0000018173, +0.0000018159,0.0000018140,0.0000018122,0.0000018104,0.0000018090, +0.0000018082,0.0000018080,0.0000018083,0.0000018090,0.0000018102, +0.0000018113,0.0000018126,0.0000018145,0.0000018166,0.0000018186, +0.0000018207,0.0000018229,0.0000018246,0.0000018263,0.0000018283, +0.0000018300,0.0000018312,0.0000018321,0.0000018328,0.0000018333, +0.0000018338,0.0000018346,0.0000018355,0.0000018363,0.0000018375, +0.0000018389,0.0000018404,0.0000018420,0.0000018442,0.0000018468, +0.0000018494,0.0000018528,0.0000018567,0.0000018608,0.0000018653, +0.0000018696,0.0000018737,0.0000018765,0.0000018768,0.0000018776, +0.0000018791,0.0000018795,0.0000018789,0.0000018782,0.0000018777, +0.0000018780,0.0000018779,0.0000018782,0.0000018785,0.0000018789, +0.0000018791,0.0000018791,0.0000018789,0.0000018784,0.0000018777, +0.0000018769,0.0000018760,0.0000018751,0.0000018743,0.0000018733, +0.0000018724,0.0000018716,0.0000018707,0.0000018698,0.0000018691, +0.0000018688,0.0000018691,0.0000018688,0.0000018692,0.0000018696, +0.0000018695,0.0000018696,0.0000018690,0.0000018680,0.0000018665, +0.0000018647,0.0000018632,0.0000018619,0.0000018606,0.0000018596, +0.0000018587,0.0000018580,0.0000018574,0.0000018572,0.0000018576, +0.0000018578,0.0000018572,0.0000018560,0.0000018546,0.0000018522, +0.0000018484,0.0000018443,0.0000018407,0.0000018372,0.0000018342, +0.0000018323,0.0000018317,0.0000018316,0.0000018315,0.0000018307, +0.0000018291,0.0000018267,0.0000018244,0.0000018230,0.0000018218, +0.0000018205,0.0000018193,0.0000018190,0.0000018194,0.0000018206, +0.0000018220,0.0000018238,0.0000018261,0.0000018285,0.0000018312, +0.0000018338,0.0000018356,0.0000018369,0.0000018384,0.0000018398, +0.0000018407,0.0000018411,0.0000018413,0.0000018412,0.0000018412, +0.0000018413,0.0000018420,0.0000018427,0.0000018443,0.0000018461, +0.0000018484,0.0000018516,0.0000018560,0.0000018613,0.0000018666, +0.0000018716,0.0000018757,0.0000018792,0.0000018815,0.0000018823, +0.0000018807,0.0000018760,0.0000018693,0.0000018632,0.0000018592, +0.0000018566,0.0000018520,0.0000018428,0.0000018316,0.0000018240, +0.0000018215,0.0000018210,0.0000018195,0.0000018134,0.0000018029, +0.0000017929,0.0000017879,0.0000017866,0.0000017875,0.0000017895, +0.0000017915,0.0000017936,0.0000017949,0.0000017953,0.0000017948, +0.0000017938,0.0000017926,0.0000017923,0.0000017922,0.0000017924, +0.0000017939,0.0000017962,0.0000017981,0.0000018011,0.0000018048, +0.0000018089,0.0000018124,0.0000018156,0.0000018175,0.0000018186, +0.0000018188,0.0000018187,0.0000018169,0.0000018154,0.0000018144, +0.0000018139,0.0000018147,0.0000018165,0.0000018183,0.0000018204, +0.0000018231,0.0000018267,0.0000018304,0.0000018346,0.0000018388, +0.0000018429,0.0000018463,0.0000018491,0.0000018514,0.0000018528, +0.0000018534,0.0000018536,0.0000018532,0.0000018526,0.0000018516, +0.0000018504,0.0000018489,0.0000018472,0.0000018452,0.0000018433, +0.0000018420,0.0000018416,0.0000018415,0.0000018414,0.0000018417, +0.0000018424,0.0000018429,0.0000018438,0.0000018450,0.0000018466, +0.0000018484,0.0000018496,0.0000018505,0.0000018511,0.0000018509, +0.0000018510,0.0000018519,0.0000018535,0.0000018553,0.0000018560, +0.0000018553,0.0000018539,0.0000018526,0.0000018513,0.0000018498, +0.0000018482,0.0000018471,0.0000018464,0.0000018466,0.0000018482, +0.0000018501,0.0000018513,0.0000018511,0.0000018499,0.0000018486, +0.0000018482,0.0000018492,0.0000018523,0.0000018571,0.0000018616, +0.0000018633,0.0000018626,0.0000018589,0.0000018528,0.0000018467, +0.0000018426,0.0000018411,0.0000018413,0.0000018420,0.0000018430, +0.0000018438,0.0000018438,0.0000018436,0.0000018430,0.0000018418, +0.0000018406,0.0000018395,0.0000018381,0.0000018371,0.0000018365, +0.0000018362,0.0000018355,0.0000018351,0.0000018353,0.0000018360, +0.0000018375,0.0000018398,0.0000018430,0.0000018472,0.0000018525, +0.0000018583,0.0000018636,0.0000018683,0.0000018717,0.0000018738, +0.0000018750,0.0000018752,0.0000018741,0.0000018719,0.0000018691, +0.0000018668,0.0000018654,0.0000018646,0.0000018639,0.0000018634, +0.0000018636,0.0000018651,0.0000018669,0.0000018680,0.0000018685, +0.0000018682,0.0000018669,0.0000018642,0.0000018608,0.0000018578, +0.0000018548,0.0000018517,0.0000018497,0.0000018486,0.0000018479, +0.0000018479,0.0000018489,0.0000018507,0.0000018535,0.0000018569, +0.0000018606,0.0000018626,0.0000018624,0.0000018599,0.0000018575, +0.0000018564,0.0000018563,0.0000018572,0.0000018590,0.0000018607, +0.0000018627,0.0000018651,0.0000018672,0.0000018691,0.0000018710, +0.0000018731,0.0000018748,0.0000018757,0.0000018761,0.0000018749, +0.0000018721,0.0000018690,0.0000018672,0.0000018665,0.0000018669, +0.0000018677,0.0000018688,0.0000018693,0.0000018697,0.0000018699, +0.0000018700,0.0000018707,0.0000018713,0.0000018718,0.0000018725, +0.0000018735,0.0000018750,0.0000018773,0.0000018801,0.0000018838, +0.0000018885,0.0000018935,0.0000018977,0.0000019011,0.0000019039, +0.0000019054,0.0000019049,0.0000019025,0.0000018988,0.0000018943, +0.0000018892,0.0000018834,0.0000018776,0.0000018732,0.0000018707, +0.0000018697,0.0000018704,0.0000018731,0.0000018775,0.0000018829, +0.0000018887,0.0000018935,0.0000018966,0.0000018974,0.0000018972, +0.0000018963,0.0000018948,0.0000018945,0.0000018953,0.0000018961, +0.0000018954,0.0000018916,0.0000018836,0.0000018728,0.0000018627, +0.0000018576,0.0000018567,0.0000018587,0.0000018630,0.0000018672, +0.0000018700,0.0000018699,0.0000018674,0.0000018631,0.0000018583, +0.0000018542,0.0000018516,0.0000018493,0.0000018471,0.0000018455, +0.0000018441,0.0000018427,0.0000018418,0.0000018418,0.0000018422, +0.0000018424,0.0000018426,0.0000018427,0.0000018424,0.0000018417, +0.0000018414,0.0000018413,0.0000018409,0.0000018402,0.0000018393, +0.0000018377,0.0000018353,0.0000018327,0.0000018303,0.0000018278, +0.0000018255,0.0000018237,0.0000018218,0.0000018197,0.0000018182, +0.0000018177,0.0000018180,0.0000018202,0.0000018232,0.0000018275, +0.0000018323,0.0000018371,0.0000018413,0.0000018442,0.0000018462, +0.0000018473,0.0000018479,0.0000018492,0.0000018520,0.0000018550, +0.0000018579,0.0000018611,0.0000018638,0.0000018661,0.0000018689, +0.0000018714,0.0000018734,0.0000018757,0.0000018774,0.0000018782, +0.0000018786,0.0000018785,0.0000018785,0.0000018776,0.0000018755, +0.0000018734,0.0000018728,0.0000018724,0.0000018708,0.0000018691, +0.0000018683,0.0000018679,0.0000018670,0.0000018665,0.0000018664, +0.0000018667,0.0000018661,0.0000018654,0.0000018645,0.0000018635, +0.0000018625,0.0000018607,0.0000018588,0.0000018573,0.0000018556, +0.0000018542,0.0000018525,0.0000018515,0.0000018507,0.0000018511, +0.0000018522,0.0000018550,0.0000018583,0.0000018621,0.0000018653, +0.0000018672,0.0000018690,0.0000018697,0.0000018695,0.0000018681, +0.0000018656,0.0000018635,0.0000018619,0.0000018608,0.0000018608, +0.0000018613,0.0000018624,0.0000018617,0.0000018596,0.0000018555, +0.0000018507,0.0000018474,0.0000018448,0.0000018426,0.0000018405, +0.0000018366,0.0000018312,0.0000018261,0.0000018211,0.0000018156, +0.0000018095,0.0000018033,0.0000017958,0.0000017871,0.0000017782, +0.0000017709,0.0000017672,0.0000017669,0.0000017686,0.0000017721, +0.0000017766,0.0000017819,0.0000017872,0.0000017927,0.0000017966, +0.0000017986,0.0000017986,0.0000017977,0.0000017963,0.0000017946, +0.0000017928,0.0000017918,0.0000017904,0.0000017898,0.0000017888, +0.0000017878,0.0000017880,0.0000017886,0.0000017891,0.0000017884, +0.0000017861,0.0000017832,0.0000017804,0.0000017782,0.0000017771, +0.0000017764,0.0000017775,0.0000017806,0.0000017844,0.0000017874, +0.0000017886,0.0000017876,0.0000017844,0.0000017803,0.0000017750, +0.0000017699,0.0000017673,0.0000017664,0.0000017673,0.0000017685, +0.0000017670,0.0000017628,0.0000017583,0.0000017552,0.0000017542, +0.0000017561,0.0000017576,0.0000017572,0.0000017543,0.0000017516, +0.0000017489,0.0000017486,0.0000017505,0.0000017549,0.0000017612, +0.0000017677,0.0000017738,0.0000017790,0.0000017830,0.0000017842, +0.0000017821,0.0000017786,0.0000017752,0.0000017729,0.0000017716, +0.0000017695,0.0000017667,0.0000017630,0.0000017581,0.0000017521, +0.0000017458,0.0000017401,0.0000017360,0.0000017335,0.0000017317, +0.0000017305,0.0000017296,0.0000017300,0.0000017331,0.0000017372, +0.0000017392,0.0000017390,0.0000017371,0.0000017342,0.0000017331, +0.0000017328,0.0000017342,0.0000017354,0.0000017350,0.0000017338, +0.0000017323,0.0000017294,0.0000017266,0.0000017265,0.0000017262, +0.0000017271,0.0000017307,0.0000017390,0.0000017532,0.0000017727, +0.0000017952,0.0000018179,0.0000018371,0.0000018519,0.0000018628, +0.0000018700,0.0000018741,0.0000018772,0.0000018806,0.0000018848, +0.0000018869,0.0000018884,0.0000018883,0.0000018860,0.0000018797, +0.0000018695,0.0000018579,0.0000018521,0.0000018508,0.0000018552, +0.0000018634,0.0000018723,0.0000018801,0.0000018843,0.0000018853, +0.0000018838,0.0000018804,0.0000018772,0.0000018757,0.0000018753, +0.0000018742,0.0000018712,0.0000018657,0.0000018581,0.0000018498, +0.0000018430,0.0000018384,0.0000018368,0.0000018347,0.0000018337, +0.0000018340,0.0000018353,0.0000018367,0.0000018372,0.0000018364, +0.0000018349,0.0000018328,0.0000018315,0.0000018317,0.0000018323, +0.0000018329,0.0000018349,0.0000018374,0.0000018405,0.0000018448, +0.0000018497,0.0000018536,0.0000018571,0.0000018610,0.0000018645, +0.0000018660,0.0000018653,0.0000018634,0.0000018618,0.0000018622, +0.0000018660,0.0000018739,0.0000018835,0.0000018899,0.0000018919, +0.0000018903,0.0000018861,0.0000018810,0.0000018771,0.0000018751, +0.0000018746,0.0000018738,0.0000018728,0.0000018723,0.0000018718, +0.0000018706,0.0000018685,0.0000018660,0.0000018638,0.0000018625, +0.0000018622,0.0000018624,0.0000018624,0.0000018619,0.0000018611, +0.0000018603,0.0000018596,0.0000018589,0.0000018574,0.0000018550, +0.0000018517,0.0000018484,0.0000018456,0.0000018421,0.0000018381, +0.0000018357,0.0000018364,0.0000018398,0.0000018429,0.0000018428, +0.0000018387,0.0000018309,0.0000018213,0.0000018130,0.0000018075, +0.0000018045,0.0000018024,0.0000018003,0.0000017999,0.0000018012, +0.0000018026,0.0000018020,0.0000017981,0.0000017925,0.0000017874, +0.0000017836,0.0000017837,0.0000017868,0.0000017943,0.0000018024, +0.0000018077,0.0000018099,0.0000018092,0.0000018054,0.0000018008, +0.0000017979,0.0000017971,0.0000017974,0.0000017973,0.0000017979, +0.0000017985,0.0000018006,0.0000018048,0.0000018105,0.0000018152, +0.0000018168,0.0000018179,0.0000018169,0.0000018141,0.0000018103, +0.0000018069,0.0000018044,0.0000018019,0.0000018001,0.0000017990, +0.0000017984,0.0000017985,0.0000018001,0.0000018022,0.0000018035, +0.0000018034,0.0000018019,0.0000017989,0.0000017950,0.0000017898, +0.0000017825,0.0000017733,0.0000017648,0.0000017580,0.0000017513, +0.0000017454,0.0000017405,0.0000017374,0.0000017372,0.0000017385, +0.0000017392,0.0000017388,0.0000017368,0.0000017323,0.0000017270, +0.0000017231,0.0000017205,0.0000017179,0.0000017159,0.0000017140, +0.0000017123,0.0000017104,0.0000017089,0.0000017067,0.0000017068, +0.0000017085,0.0000017140,0.0000017205,0.0000017278,0.0000017352, +0.0000017419,0.0000017474,0.0000017512,0.0000017532,0.0000017553, +0.0000017600,0.0000017694,0.0000017804,0.0000017873,0.0000017894, +0.0000017889,0.0000017863,0.0000017808,0.0000017732,0.0000017663, +0.0000017617,0.0000017583,0.0000017572,0.0000017592,0.0000017660, +0.0000017727,0.0000017727,0.0000017675,0.0000017658,0.0000017771, +0.0000018023,0.0000018309,0.0000018501,0.0000018590,0.0000018606, +0.0000018530,0.0000018323,0.0000018116,0.0000018014,0.0000017960, +0.0000017879,0.0000017807,0.0000017786,0.0000017781,0.0000017694, +0.0000017534,0.0000017407,0.0000017337,0.0000017314,0.0000017343, +0.0000017407,0.0000017486,0.0000017553,0.0000017613,0.0000017675, +0.0000017730,0.0000017729,0.0000017661,0.0000017610,0.0000017624, +0.0000017685,0.0000017692,0.0000017639,0.0000017587,0.0000017511, +0.0000017399,0.0000017446,0.0000017691,0.0000017854,0.0000017824, +0.0000017759,0.0000017667,0.0000017611,0.0000017648,0.0000017681, +0.0000017697,0.0000017723,0.0000017763,0.0000017812,0.0000017860, +0.0000017885,0.0000017880,0.0000017832,0.0000017773,0.0000017740, +0.0000017798,0.0000017882,0.0000017829,0.0000017728,0.0000017745, +0.0000017836,0.0000017941,0.0000017949,0.0000017789,0.0000017633, +0.0000017564,0.0000017523,0.0000017516,0.0000017535,0.0000017542, +0.0000017542,0.0000017565,0.0000017644,0.0000017720,0.0000017726, +0.0000017635,0.0000017489,0.0000017396,0.0000017422,0.0000017572, +0.0000017744,0.0000017822,0.0000017824,0.0000017804,0.0000017792, +0.0000017780,0.0000017753,0.0000017720,0.0000017681,0.0000017618, +0.0000017548,0.0000017517,0.0000017535,0.0000017578,0.0000017620, +0.0000017671,0.0000017715,0.0000017727,0.0000017714,0.0000017686, +0.0000017670,0.0000017682,0.0000017716,0.0000017728,0.0000017693, +0.0000017654,0.0000017656,0.0000017688,0.0000017722,0.0000017747, +0.0000017772,0.0000017790,0.0000017777,0.0000017733,0.0000017693, +0.0000017683,0.0000017684,0.0000017679,0.0000017658,0.0000017637, +0.0000017624,0.0000017610,0.0000017612,0.0000017651,0.0000017701, +0.0000017697,0.0000017633,0.0000017573,0.0000017584,0.0000017656, +0.0000017733,0.0000017752,0.0000017710,0.0000017636,0.0000017569, +0.0000017518,0.0000017496,0.0000017516,0.0000017615,0.0000017760, +0.0000017889,0.0000017957,0.0000017977,0.0000018007,0.0000018111, +0.0000018255,0.0000018364,0.0000018427,0.0000018477,0.0000018525, +0.0000018570,0.0000018664,0.0000018670,0.0000018662,0.0000018653, +0.0000018647,0.0000018640,0.0000018634,0.0000018628,0.0000018619, +0.0000018610,0.0000018600,0.0000018592,0.0000018587,0.0000018587, +0.0000018593,0.0000018595,0.0000018588,0.0000018567,0.0000018536, +0.0000018517,0.0000018520,0.0000018526,0.0000018513,0.0000018477, +0.0000018462,0.0000018483,0.0000018506,0.0000018489,0.0000018410, +0.0000018347,0.0000018347,0.0000018399,0.0000018464,0.0000018497, +0.0000018488,0.0000018452,0.0000018428,0.0000018468,0.0000018574, +0.0000018654,0.0000018695,0.0000018707,0.0000018697,0.0000018674, +0.0000018648,0.0000018632,0.0000018620,0.0000018619,0.0000018624, +0.0000018635,0.0000018650,0.0000018670,0.0000018683,0.0000018702, +0.0000018738,0.0000018770,0.0000018794,0.0000018821,0.0000018855, +0.0000018884,0.0000018917,0.0000018938,0.0000018954,0.0000018950, +0.0000018932,0.0000018904,0.0000018875,0.0000018849,0.0000018828, +0.0000018808,0.0000018787,0.0000018760,0.0000018732,0.0000018707, +0.0000018685,0.0000018663,0.0000018640,0.0000018613,0.0000018573, +0.0000018516,0.0000018453,0.0000018400,0.0000018354,0.0000018307, +0.0000018250,0.0000018183,0.0000018148,0.0000018156,0.0000018198, +0.0000018257,0.0000018309,0.0000018344,0.0000018357,0.0000018362, +0.0000018367,0.0000018371,0.0000018375,0.0000018384,0.0000018393, +0.0000018397,0.0000018394,0.0000018385,0.0000018365,0.0000018340, +0.0000018316,0.0000018291,0.0000018266,0.0000018248,0.0000018233, +0.0000018220,0.0000018206,0.0000018196,0.0000018190,0.0000018181, +0.0000018174,0.0000018172,0.0000018170,0.0000018164,0.0000018156, +0.0000018146,0.0000018133,0.0000018118,0.0000018101,0.0000018084, +0.0000018071,0.0000018064,0.0000018060,0.0000018055,0.0000018051, +0.0000018051,0.0000018050,0.0000018051,0.0000018056,0.0000018061, +0.0000018068,0.0000018078,0.0000018088,0.0000018100,0.0000018118, +0.0000018141,0.0000018164,0.0000018187,0.0000018211,0.0000018239, +0.0000018264,0.0000018282,0.0000018297,0.0000018310,0.0000018318, +0.0000018323,0.0000018330,0.0000018337,0.0000018345,0.0000018359, +0.0000018376,0.0000018390,0.0000018406,0.0000018424,0.0000018446, +0.0000018470,0.0000018499,0.0000018525,0.0000018544,0.0000018559, +0.0000018577,0.0000018597,0.0000018611,0.0000018620,0.0000018632, +0.0000018649,0.0000018672,0.0000018693,0.0000018719,0.0000018744, +0.0000018770,0.0000018790,0.0000018796,0.0000018803,0.0000018821, +0.0000018835,0.0000018853,0.0000018859,0.0000018862,0.0000018860, +0.0000018857,0.0000018853,0.0000018847,0.0000018837,0.0000018826, +0.0000018816,0.0000018807,0.0000018801,0.0000018791,0.0000018789, +0.0000018787,0.0000018785,0.0000018784,0.0000018773,0.0000018756, +0.0000018736,0.0000018715,0.0000018689,0.0000018661,0.0000018638, +0.0000018621,0.0000018610,0.0000018605,0.0000018606,0.0000018608, +0.0000018617,0.0000018630,0.0000018642,0.0000018657,0.0000018672, +0.0000018674,0.0000018662,0.0000018636,0.0000018602,0.0000018561, +0.0000018519,0.0000018483,0.0000018453,0.0000018430,0.0000018413, +0.0000018400,0.0000018389,0.0000018383,0.0000018388,0.0000018394, +0.0000018396,0.0000018396,0.0000018386,0.0000018369,0.0000018351, +0.0000018337,0.0000018328,0.0000018332,0.0000018346,0.0000018364, +0.0000018385,0.0000018409,0.0000018427,0.0000018436,0.0000018441, +0.0000018443,0.0000018444,0.0000018441,0.0000018438,0.0000018434, +0.0000018431,0.0000018429,0.0000018431,0.0000018437,0.0000018454, +0.0000018476,0.0000018499,0.0000018526,0.0000018556,0.0000018596, +0.0000018643,0.0000018691,0.0000018740,0.0000018789,0.0000018833, +0.0000018869,0.0000018884,0.0000018885,0.0000018860,0.0000018808, +0.0000018740,0.0000018679,0.0000018637,0.0000018611,0.0000018566, +0.0000018471,0.0000018349,0.0000018255,0.0000018210,0.0000018188, +0.0000018165,0.0000018122,0.0000018047,0.0000017961,0.0000017910, +0.0000017899,0.0000017908,0.0000017931,0.0000017952,0.0000017975, +0.0000017995,0.0000018004,0.0000018007,0.0000018014,0.0000018006, +0.0000017999,0.0000017994,0.0000017988,0.0000017984,0.0000017989, +0.0000018010,0.0000018027,0.0000018057,0.0000018093,0.0000018129, +0.0000018166,0.0000018195,0.0000018212,0.0000018218,0.0000018218, +0.0000018222,0.0000018225,0.0000018238,0.0000018254,0.0000018270, +0.0000018290,0.0000018317,0.0000018352,0.0000018392,0.0000018432, +0.0000018469,0.0000018506,0.0000018542,0.0000018571,0.0000018593, +0.0000018601,0.0000018605,0.0000018611,0.0000018612,0.0000018608, +0.0000018601,0.0000018587,0.0000018570,0.0000018544,0.0000018514, +0.0000018489,0.0000018470,0.0000018452,0.0000018436,0.0000018428, +0.0000018427,0.0000018430,0.0000018441,0.0000018456,0.0000018471, +0.0000018482,0.0000018484,0.0000018479,0.0000018471,0.0000018467, +0.0000018473,0.0000018484,0.0000018487,0.0000018482,0.0000018475, +0.0000018470,0.0000018466,0.0000018465,0.0000018465,0.0000018458, +0.0000018449,0.0000018447,0.0000018454,0.0000018468,0.0000018482, +0.0000018486,0.0000018480,0.0000018468,0.0000018468,0.0000018479, +0.0000018513,0.0000018562,0.0000018609,0.0000018630,0.0000018622, +0.0000018584,0.0000018523,0.0000018464,0.0000018427,0.0000018413, +0.0000018415,0.0000018422,0.0000018429,0.0000018433,0.0000018436, +0.0000018435,0.0000018430,0.0000018420,0.0000018409,0.0000018397, +0.0000018385,0.0000018377,0.0000018372,0.0000018370,0.0000018372, +0.0000018374,0.0000018378,0.0000018385,0.0000018396,0.0000018408, +0.0000018424,0.0000018444,0.0000018471,0.0000018507,0.0000018553, +0.0000018602,0.0000018650,0.0000018692,0.0000018723,0.0000018742, +0.0000018752,0.0000018752,0.0000018743,0.0000018722,0.0000018697, +0.0000018674,0.0000018658,0.0000018649,0.0000018641,0.0000018636, +0.0000018642,0.0000018652,0.0000018656,0.0000018633,0.0000018592, +0.0000018548,0.0000018506,0.0000018466,0.0000018439,0.0000018423, +0.0000018410,0.0000018399,0.0000018394,0.0000018400,0.0000018407, +0.0000018416,0.0000018428,0.0000018444,0.0000018462,0.0000018492, +0.0000018538,0.0000018589,0.0000018614,0.0000018609,0.0000018597, +0.0000018583,0.0000018573,0.0000018569,0.0000018568,0.0000018571, +0.0000018578,0.0000018595,0.0000018617,0.0000018639,0.0000018660, +0.0000018684,0.0000018712,0.0000018742,0.0000018763,0.0000018770, +0.0000018767,0.0000018757,0.0000018751,0.0000018750,0.0000018752, +0.0000018758,0.0000018767,0.0000018777,0.0000018782,0.0000018783, +0.0000018783,0.0000018783,0.0000018776,0.0000018768,0.0000018761, +0.0000018756,0.0000018758,0.0000018762,0.0000018780,0.0000018805, +0.0000018842,0.0000018883,0.0000018919,0.0000018948,0.0000018968, +0.0000018980,0.0000018976,0.0000018952,0.0000018920,0.0000018883, +0.0000018838,0.0000018785,0.0000018726,0.0000018675,0.0000018634, +0.0000018599,0.0000018574,0.0000018571,0.0000018593,0.0000018642, +0.0000018704,0.0000018782,0.0000018867,0.0000018936,0.0000018986, +0.0000019017,0.0000019018,0.0000019002,0.0000018982,0.0000018966, +0.0000018956,0.0000018946,0.0000018930,0.0000018900,0.0000018838, +0.0000018745,0.0000018647,0.0000018591,0.0000018568,0.0000018590, +0.0000018642,0.0000018694,0.0000018728,0.0000018727,0.0000018704, +0.0000018668,0.0000018623,0.0000018572,0.0000018526,0.0000018494, +0.0000018470,0.0000018451,0.0000018441,0.0000018441,0.0000018443, +0.0000018446,0.0000018452,0.0000018453,0.0000018446,0.0000018443, +0.0000018447,0.0000018454,0.0000018463,0.0000018473,0.0000018484, +0.0000018491,0.0000018494,0.0000018494,0.0000018490,0.0000018478, +0.0000018459,0.0000018433,0.0000018395,0.0000018348,0.0000018302, +0.0000018266,0.0000018246,0.0000018243,0.0000018253,0.0000018275, +0.0000018306,0.0000018343,0.0000018374,0.0000018397,0.0000018414, +0.0000018427,0.0000018433,0.0000018445,0.0000018466,0.0000018491, +0.0000018521,0.0000018551,0.0000018577,0.0000018605,0.0000018632, +0.0000018653,0.0000018672,0.0000018692,0.0000018705,0.0000018711, +0.0000018713,0.0000018719,0.0000018723,0.0000018720,0.0000018710, +0.0000018708,0.0000018716,0.0000018718,0.0000018715,0.0000018715, +0.0000018725,0.0000018727,0.0000018715,0.0000018702,0.0000018695, +0.0000018696,0.0000018697,0.0000018704,0.0000018717,0.0000018720, +0.0000018721,0.0000018711,0.0000018694,0.0000018674,0.0000018648, +0.0000018612,0.0000018581,0.0000018553,0.0000018528,0.0000018523, +0.0000018523,0.0000018544,0.0000018574,0.0000018603,0.0000018633, +0.0000018663,0.0000018686,0.0000018704,0.0000018710,0.0000018704, +0.0000018686,0.0000018663,0.0000018643,0.0000018642,0.0000018653, +0.0000018683,0.0000018711,0.0000018731,0.0000018723,0.0000018692, +0.0000018661,0.0000018625,0.0000018596,0.0000018571,0.0000018540, +0.0000018496,0.0000018440,0.0000018385,0.0000018341,0.0000018302, +0.0000018267,0.0000018213,0.0000018132,0.0000018027,0.0000017905, +0.0000017799,0.0000017730,0.0000017707,0.0000017725,0.0000017749, +0.0000017783,0.0000017837,0.0000017898,0.0000017947,0.0000017981, +0.0000017990,0.0000017984,0.0000017963,0.0000017934,0.0000017905, +0.0000017885,0.0000017870,0.0000017863,0.0000017860,0.0000017853, +0.0000017853,0.0000017849,0.0000017844,0.0000017837,0.0000017827, +0.0000017808,0.0000017792,0.0000017780,0.0000017774,0.0000017786, +0.0000017796,0.0000017818,0.0000017852,0.0000017894,0.0000017930, +0.0000017947,0.0000017941,0.0000017908,0.0000017852,0.0000017796, +0.0000017752,0.0000017725,0.0000017726,0.0000017736,0.0000017727, +0.0000017690,0.0000017646,0.0000017607,0.0000017586,0.0000017590, +0.0000017601,0.0000017597,0.0000017570,0.0000017536,0.0000017493, +0.0000017478,0.0000017486,0.0000017528,0.0000017596,0.0000017665, +0.0000017729,0.0000017791,0.0000017846,0.0000017870,0.0000017863, +0.0000017842,0.0000017812,0.0000017784,0.0000017761,0.0000017727, +0.0000017691,0.0000017655,0.0000017616,0.0000017565,0.0000017507, +0.0000017455,0.0000017418,0.0000017390,0.0000017366,0.0000017350, +0.0000017342,0.0000017354,0.0000017398,0.0000017441,0.0000017460, +0.0000017464,0.0000017444,0.0000017404,0.0000017360,0.0000017334, +0.0000017338,0.0000017354,0.0000017353,0.0000017346,0.0000017341, +0.0000017319,0.0000017300,0.0000017290,0.0000017281,0.0000017273, +0.0000017291,0.0000017308,0.0000017355,0.0000017426,0.0000017537, +0.0000017690,0.0000017888,0.0000018116,0.0000018345,0.0000018525, +0.0000018636,0.0000018700,0.0000018743,0.0000018787,0.0000018834, +0.0000018884,0.0000018907,0.0000018919,0.0000018900,0.0000018835, +0.0000018727,0.0000018610,0.0000018521,0.0000018501,0.0000018540, +0.0000018617,0.0000018716,0.0000018808,0.0000018853,0.0000018865, +0.0000018843,0.0000018808,0.0000018777,0.0000018758,0.0000018751, +0.0000018751,0.0000018735,0.0000018684,0.0000018604,0.0000018519, +0.0000018446,0.0000018391,0.0000018352,0.0000018333,0.0000018335, +0.0000018347,0.0000018368,0.0000018392,0.0000018413,0.0000018409, +0.0000018385,0.0000018360,0.0000018344,0.0000018344,0.0000018367, +0.0000018402,0.0000018438,0.0000018476,0.0000018520,0.0000018563, +0.0000018601,0.0000018640,0.0000018671,0.0000018683,0.0000018672, +0.0000018646,0.0000018622,0.0000018616,0.0000018643,0.0000018716, +0.0000018814,0.0000018892,0.0000018927,0.0000018925,0.0000018893, +0.0000018844,0.0000018799,0.0000018769,0.0000018751,0.0000018734, +0.0000018713,0.0000018695,0.0000018683,0.0000018672,0.0000018655, +0.0000018633,0.0000018610,0.0000018590,0.0000018578,0.0000018572, +0.0000018566,0.0000018553,0.0000018541,0.0000018539,0.0000018543, +0.0000018547,0.0000018549,0.0000018550,0.0000018535,0.0000018494, +0.0000018449,0.0000018418,0.0000018394,0.0000018358,0.0000018325, +0.0000018324,0.0000018354,0.0000018384,0.0000018376,0.0000018317, +0.0000018228,0.0000018156,0.0000018117,0.0000018094,0.0000018064, +0.0000018025,0.0000017998,0.0000018000,0.0000018023,0.0000018039, +0.0000018034,0.0000018002,0.0000017950,0.0000017892,0.0000017858, +0.0000017863,0.0000017901,0.0000017962,0.0000018012,0.0000018037, +0.0000018044,0.0000018032,0.0000018004,0.0000017982,0.0000017994, +0.0000018024,0.0000018043,0.0000018039,0.0000018016,0.0000017993, +0.0000017991,0.0000018021,0.0000018071,0.0000018117,0.0000018147, +0.0000018162,0.0000018165,0.0000018195,0.0000018228,0.0000018257, +0.0000018273,0.0000018270,0.0000018252,0.0000018218,0.0000018179, +0.0000018147,0.0000018122,0.0000018097,0.0000018073,0.0000018047, +0.0000018023,0.0000018000,0.0000017969,0.0000017928,0.0000017889, +0.0000017859,0.0000017830,0.0000017779,0.0000017702,0.0000017615, +0.0000017546,0.0000017505,0.0000017482,0.0000017462,0.0000017437, +0.0000017406,0.0000017362,0.0000017312,0.0000017275,0.0000017246, +0.0000017214,0.0000017186,0.0000017168,0.0000017157,0.0000017150, +0.0000017140,0.0000017127,0.0000017112,0.0000017113,0.0000017133, +0.0000017173,0.0000017218,0.0000017266,0.0000017312,0.0000017351, +0.0000017392,0.0000017426,0.0000017447,0.0000017481,0.0000017557, +0.0000017663,0.0000017743,0.0000017785,0.0000017799,0.0000017789, +0.0000017746,0.0000017674,0.0000017603,0.0000017553,0.0000017516, +0.0000017507,0.0000017517,0.0000017561,0.0000017635,0.0000017688, +0.0000017680,0.0000017657,0.0000017663,0.0000017738,0.0000017862, +0.0000017981,0.0000018062,0.0000018079,0.0000018029,0.0000017957, +0.0000017906,0.0000017860,0.0000017805,0.0000017766,0.0000017736, +0.0000017665,0.0000017541,0.0000017415,0.0000017327,0.0000017280, +0.0000017281,0.0000017333,0.0000017417,0.0000017500,0.0000017561, +0.0000017607,0.0000017650,0.0000017705,0.0000017766,0.0000017788, +0.0000017739,0.0000017662,0.0000017645,0.0000017700,0.0000017736, +0.0000017700,0.0000017626,0.0000017582,0.0000017480,0.0000017364, +0.0000017448,0.0000017709,0.0000017846,0.0000017803,0.0000017760, +0.0000017672,0.0000017619,0.0000017665,0.0000017720,0.0000017743, +0.0000017773,0.0000017810,0.0000017853,0.0000017907,0.0000017932, +0.0000017884,0.0000017807,0.0000017759,0.0000017775,0.0000017875, +0.0000017869,0.0000017737,0.0000017732,0.0000017813,0.0000017899, +0.0000017927,0.0000017801,0.0000017644,0.0000017567,0.0000017521, +0.0000017514,0.0000017542,0.0000017555,0.0000017551,0.0000017549, +0.0000017575,0.0000017659,0.0000017735,0.0000017721,0.0000017597, +0.0000017442,0.0000017398,0.0000017484,0.0000017660,0.0000017794, +0.0000017822,0.0000017805,0.0000017785,0.0000017772,0.0000017750, +0.0000017719,0.0000017687,0.0000017633,0.0000017547,0.0000017485, +0.0000017493,0.0000017543,0.0000017594,0.0000017645,0.0000017699, +0.0000017721,0.0000017709,0.0000017676,0.0000017655,0.0000017663, +0.0000017695,0.0000017712,0.0000017693,0.0000017649,0.0000017636, +0.0000017661,0.0000017701,0.0000017736,0.0000017759,0.0000017761, +0.0000017729,0.0000017681,0.0000017659,0.0000017661,0.0000017662, +0.0000017648,0.0000017634,0.0000017628,0.0000017623,0.0000017633, +0.0000017682,0.0000017718,0.0000017687,0.0000017610,0.0000017587, +0.0000017645,0.0000017710,0.0000017714,0.0000017654,0.0000017577, +0.0000017523,0.0000017504,0.0000017511,0.0000017571,0.0000017690, +0.0000017819,0.0000017906,0.0000017937,0.0000017958,0.0000018016, +0.0000018131,0.0000018262,0.0000018356,0.0000018414,0.0000018466, +0.0000018521,0.0000018577,0.0000018631,0.0000018656,0.0000018627, +0.0000018595,0.0000018564,0.0000018537,0.0000018518,0.0000018509, +0.0000018508,0.0000018512,0.0000018515,0.0000018514,0.0000018517, +0.0000018527,0.0000018548,0.0000018570,0.0000018578,0.0000018569, +0.0000018544,0.0000018521,0.0000018516,0.0000018521,0.0000018515, +0.0000018488,0.0000018467,0.0000018479,0.0000018508,0.0000018509, +0.0000018450,0.0000018375,0.0000018364,0.0000018417,0.0000018498, +0.0000018535,0.0000018516,0.0000018470,0.0000018448,0.0000018510, +0.0000018631,0.0000018692,0.0000018701,0.0000018689,0.0000018642, +0.0000018603,0.0000018583,0.0000018582,0.0000018593,0.0000018605, +0.0000018622,0.0000018644,0.0000018665,0.0000018688,0.0000018711, +0.0000018731,0.0000018753,0.0000018783,0.0000018807,0.0000018820, +0.0000018832,0.0000018839,0.0000018851,0.0000018867,0.0000018900, +0.0000018934,0.0000018973,0.0000018995,0.0000018998,0.0000018978, +0.0000018945,0.0000018905,0.0000018864,0.0000018825,0.0000018787, +0.0000018749,0.0000018720,0.0000018697,0.0000018680,0.0000018663, +0.0000018647,0.0000018623,0.0000018578,0.0000018509,0.0000018436, +0.0000018379,0.0000018337,0.0000018297,0.0000018238,0.0000018174, +0.0000018146,0.0000018162,0.0000018205,0.0000018249,0.0000018282, +0.0000018303,0.0000018318,0.0000018331,0.0000018343,0.0000018354, +0.0000018362,0.0000018365,0.0000018361,0.0000018352,0.0000018337, +0.0000018318,0.0000018296,0.0000018275,0.0000018254,0.0000018234, +0.0000018219,0.0000018207,0.0000018196,0.0000018191,0.0000018189, +0.0000018189,0.0000018192,0.0000018197,0.0000018202,0.0000018202, +0.0000018196,0.0000018186,0.0000018172,0.0000018157,0.0000018143, +0.0000018131,0.0000018120,0.0000018110,0.0000018101,0.0000018096, +0.0000018094,0.0000018095,0.0000018092,0.0000018087,0.0000018081, +0.0000018077,0.0000018073,0.0000018067,0.0000018064,0.0000018051, +0.0000018038,0.0000018031,0.0000018026,0.0000018024,0.0000018024, +0.0000018030,0.0000018048,0.0000018074,0.0000018105,0.0000018142, +0.0000018183,0.0000018221,0.0000018252,0.0000018278,0.0000018299, +0.0000018315,0.0000018332,0.0000018348,0.0000018360,0.0000018369, +0.0000018380,0.0000018395,0.0000018413,0.0000018435,0.0000018454, +0.0000018465,0.0000018468,0.0000018469,0.0000018473,0.0000018471, +0.0000018462,0.0000018457,0.0000018459,0.0000018463,0.0000018471, +0.0000018488,0.0000018508,0.0000018528,0.0000018555,0.0000018577, +0.0000018606,0.0000018633,0.0000018660,0.0000018686,0.0000018714, +0.0000018744,0.0000018771,0.0000018796,0.0000018826,0.0000018847, +0.0000018848,0.0000018852,0.0000018866,0.0000018886,0.0000018904, +0.0000018918,0.0000018929,0.0000018939,0.0000018947,0.0000018951, +0.0000018946,0.0000018934,0.0000018915,0.0000018889,0.0000018857, +0.0000018820,0.0000018779,0.0000018738,0.0000018700,0.0000018668, +0.0000018644,0.0000018630,0.0000018630,0.0000018637,0.0000018648, +0.0000018666,0.0000018684,0.0000018703,0.0000018720,0.0000018728, +0.0000018723,0.0000018706,0.0000018680,0.0000018650,0.0000018619, +0.0000018587,0.0000018555,0.0000018524,0.0000018501,0.0000018491, +0.0000018492,0.0000018495,0.0000018499,0.0000018502,0.0000018502, +0.0000018494,0.0000018476,0.0000018452,0.0000018426,0.0000018408, +0.0000018404,0.0000018408,0.0000018420,0.0000018443,0.0000018468, +0.0000018487,0.0000018500,0.0000018512,0.0000018525,0.0000018534, +0.0000018539,0.0000018540,0.0000018534,0.0000018525,0.0000018515, +0.0000018510,0.0000018512,0.0000018519,0.0000018532,0.0000018551, +0.0000018572,0.0000018595,0.0000018620,0.0000018658,0.0000018705, +0.0000018758,0.0000018810,0.0000018857,0.0000018891,0.0000018917, +0.0000018932,0.0000018935,0.0000018924,0.0000018872,0.0000018796, +0.0000018725,0.0000018676,0.0000018635,0.0000018574,0.0000018471, +0.0000018344,0.0000018239,0.0000018179,0.0000018158,0.0000018151, +0.0000018144,0.0000018115,0.0000018056,0.0000017991,0.0000017955, +0.0000017948,0.0000017958,0.0000017976,0.0000017990,0.0000018022, +0.0000018052,0.0000018075,0.0000018084,0.0000018088,0.0000018075, +0.0000018055,0.0000018032,0.0000018017,0.0000018017,0.0000018029, +0.0000018044,0.0000018071,0.0000018102,0.0000018133,0.0000018159, +0.0000018183,0.0000018200,0.0000018211,0.0000018227,0.0000018246, +0.0000018266,0.0000018286,0.0000018307,0.0000018337,0.0000018374, +0.0000018412,0.0000018449,0.0000018483,0.0000018517,0.0000018544, +0.0000018569,0.0000018583,0.0000018595,0.0000018608,0.0000018613, +0.0000018612,0.0000018605,0.0000018591,0.0000018570,0.0000018542, +0.0000018508,0.0000018478,0.0000018451,0.0000018432,0.0000018420, +0.0000018417,0.0000018420,0.0000018431,0.0000018446,0.0000018460, +0.0000018468,0.0000018468,0.0000018461,0.0000018446,0.0000018433, +0.0000018424,0.0000018418,0.0000018411,0.0000018404,0.0000018400, +0.0000018408,0.0000018428,0.0000018442,0.0000018444,0.0000018436, +0.0000018423,0.0000018413,0.0000018415,0.0000018426,0.0000018434, +0.0000018435,0.0000018431,0.0000018435,0.0000018451,0.0000018487, +0.0000018536,0.0000018576,0.0000018605,0.0000018601,0.0000018562, +0.0000018501,0.0000018441,0.0000018401,0.0000018390,0.0000018397, +0.0000018406,0.0000018407,0.0000018404,0.0000018399,0.0000018397, +0.0000018397,0.0000018394,0.0000018389,0.0000018384,0.0000018379, +0.0000018377,0.0000018374,0.0000018376,0.0000018383,0.0000018396, +0.0000018413,0.0000018428,0.0000018443,0.0000018459,0.0000018472, +0.0000018481,0.0000018487,0.0000018494,0.0000018505,0.0000018528, +0.0000018563,0.0000018601,0.0000018639,0.0000018674,0.0000018703, +0.0000018726,0.0000018736,0.0000018738,0.0000018731,0.0000018714, +0.0000018691,0.0000018670,0.0000018656,0.0000018643,0.0000018626, +0.0000018606,0.0000018590,0.0000018571,0.0000018534,0.0000018470, +0.0000018407,0.0000018366,0.0000018351,0.0000018352,0.0000018368, +0.0000018376,0.0000018392,0.0000018399,0.0000018415,0.0000018428, +0.0000018437,0.0000018447,0.0000018455,0.0000018457,0.0000018456, +0.0000018461,0.0000018478,0.0000018521,0.0000018564,0.0000018593, +0.0000018602,0.0000018596,0.0000018586,0.0000018573,0.0000018565, +0.0000018561,0.0000018556,0.0000018560,0.0000018568,0.0000018579, +0.0000018594,0.0000018615,0.0000018641,0.0000018680,0.0000018725, +0.0000018755,0.0000018771,0.0000018782,0.0000018796,0.0000018809, +0.0000018817,0.0000018825,0.0000018838,0.0000018850,0.0000018858, +0.0000018865,0.0000018870,0.0000018867,0.0000018856,0.0000018842, +0.0000018827,0.0000018810,0.0000018796,0.0000018788,0.0000018786, +0.0000018795,0.0000018811,0.0000018837,0.0000018860,0.0000018872, +0.0000018882,0.0000018884,0.0000018879,0.0000018869,0.0000018855, +0.0000018836,0.0000018813,0.0000018779,0.0000018730,0.0000018679, +0.0000018630,0.0000018583,0.0000018538,0.0000018505,0.0000018493, +0.0000018484,0.0000018490,0.0000018539,0.0000018613,0.0000018698, +0.0000018796,0.0000018898,0.0000018986,0.0000019038,0.0000019050, +0.0000019037,0.0000019002,0.0000018962,0.0000018936,0.0000018931, +0.0000018926,0.0000018906,0.0000018851,0.0000018763,0.0000018665, +0.0000018611,0.0000018583,0.0000018605,0.0000018649,0.0000018695, +0.0000018718,0.0000018740,0.0000018732,0.0000018702,0.0000018665, +0.0000018624,0.0000018583,0.0000018546,0.0000018522,0.0000018507, +0.0000018498,0.0000018495,0.0000018494,0.0000018486,0.0000018478, +0.0000018477,0.0000018480,0.0000018485,0.0000018492,0.0000018501, +0.0000018510,0.0000018517,0.0000018523,0.0000018527,0.0000018530, +0.0000018537,0.0000018541,0.0000018538,0.0000018523,0.0000018498, +0.0000018464,0.0000018427,0.0000018395,0.0000018376,0.0000018368, +0.0000018368,0.0000018376,0.0000018390,0.0000018403,0.0000018415, +0.0000018427,0.0000018438,0.0000018445,0.0000018451,0.0000018457, +0.0000018473,0.0000018493,0.0000018509,0.0000018527,0.0000018552, +0.0000018577,0.0000018601,0.0000018624,0.0000018648,0.0000018661, +0.0000018661,0.0000018661,0.0000018665,0.0000018663,0.0000018650, +0.0000018632,0.0000018624,0.0000018625,0.0000018627,0.0000018629, +0.0000018642,0.0000018655,0.0000018657,0.0000018649,0.0000018637, +0.0000018633,0.0000018636,0.0000018653,0.0000018682,0.0000018711, +0.0000018736,0.0000018759,0.0000018778,0.0000018783,0.0000018778, +0.0000018756,0.0000018722,0.0000018686,0.0000018649,0.0000018613, +0.0000018580,0.0000018572,0.0000018578,0.0000018594,0.0000018602, +0.0000018622,0.0000018645,0.0000018670,0.0000018691,0.0000018705, +0.0000018704,0.0000018691,0.0000018669,0.0000018656,0.0000018658, +0.0000018677,0.0000018705,0.0000018746,0.0000018765,0.0000018772, +0.0000018764,0.0000018747,0.0000018730,0.0000018717,0.0000018704, +0.0000018681,0.0000018633,0.0000018570,0.0000018516,0.0000018480, +0.0000018469,0.0000018457,0.0000018421,0.0000018345,0.0000018227, +0.0000018091,0.0000017967,0.0000017871,0.0000017809,0.0000017780, +0.0000017787,0.0000017826,0.0000017860,0.0000017904,0.0000017944, +0.0000017976,0.0000017991,0.0000017989,0.0000017961,0.0000017916, +0.0000017876,0.0000017846,0.0000017824,0.0000017819,0.0000017825, +0.0000017835,0.0000017829,0.0000017813,0.0000017801,0.0000017791, +0.0000017780,0.0000017758,0.0000017739,0.0000017734,0.0000017756, +0.0000017787,0.0000017824,0.0000017867,0.0000017915,0.0000017960, +0.0000017987,0.0000018003,0.0000017999,0.0000017968,0.0000017923, +0.0000017871,0.0000017825,0.0000017807,0.0000017801,0.0000017792, +0.0000017764,0.0000017722,0.0000017680,0.0000017644,0.0000017627, +0.0000017629,0.0000017626,0.0000017603,0.0000017570,0.0000017523, +0.0000017494,0.0000017495,0.0000017534,0.0000017596,0.0000017662, +0.0000017727,0.0000017792,0.0000017846,0.0000017879,0.0000017884, +0.0000017879,0.0000017865,0.0000017843,0.0000017820,0.0000017777, +0.0000017731,0.0000017693,0.0000017652,0.0000017599,0.0000017543, +0.0000017494,0.0000017462,0.0000017434,0.0000017407,0.0000017396, +0.0000017391,0.0000017406,0.0000017454,0.0000017501,0.0000017531, +0.0000017547,0.0000017538,0.0000017509,0.0000017460,0.0000017414, +0.0000017392,0.0000017388,0.0000017375,0.0000017359,0.0000017353, +0.0000017344,0.0000017334,0.0000017330,0.0000017318,0.0000017310, +0.0000017316,0.0000017346,0.0000017365,0.0000017395,0.0000017391, +0.0000017410,0.0000017490,0.0000017639,0.0000017862,0.0000018124, +0.0000018360,0.0000018537,0.0000018649,0.0000018718,0.0000018771, +0.0000018825,0.0000018880,0.0000018927,0.0000018945,0.0000018931, +0.0000018871,0.0000018768,0.0000018647,0.0000018544,0.0000018503, +0.0000018525,0.0000018603,0.0000018703,0.0000018800,0.0000018861, +0.0000018879,0.0000018864,0.0000018830,0.0000018784,0.0000018748, +0.0000018732,0.0000018727,0.0000018720,0.0000018685,0.0000018627, +0.0000018557,0.0000018488,0.0000018435,0.0000018400,0.0000018384, +0.0000018386,0.0000018414,0.0000018461,0.0000018502,0.0000018512, +0.0000018496,0.0000018461,0.0000018424,0.0000018410,0.0000018422, +0.0000018445,0.0000018473,0.0000018505,0.0000018538,0.0000018575, +0.0000018620,0.0000018662,0.0000018685,0.0000018682,0.0000018659, +0.0000018634,0.0000018626,0.0000018647,0.0000018714,0.0000018798, +0.0000018862,0.0000018890,0.0000018886,0.0000018858,0.0000018810, +0.0000018765,0.0000018737,0.0000018723,0.0000018710,0.0000018689, +0.0000018662,0.0000018634,0.0000018611,0.0000018594,0.0000018576, +0.0000018560,0.0000018549,0.0000018541,0.0000018532,0.0000018522, +0.0000018505,0.0000018483,0.0000018471,0.0000018471,0.0000018473, +0.0000018475,0.0000018485,0.0000018491,0.0000018484,0.0000018445, +0.0000018396,0.0000018364,0.0000018344,0.0000018312,0.0000018282, +0.0000018280,0.0000018305,0.0000018320,0.0000018300,0.0000018228, +0.0000018161,0.0000018136,0.0000018131,0.0000018106,0.0000018057, +0.0000018011,0.0000017994,0.0000018009,0.0000018035,0.0000018052, +0.0000018053,0.0000018028,0.0000017969,0.0000017913,0.0000017896, +0.0000017904,0.0000017931,0.0000017957,0.0000017972,0.0000017979, +0.0000017980,0.0000017971,0.0000017966,0.0000017992,0.0000018041, +0.0000018091,0.0000018108,0.0000018094,0.0000018064,0.0000018042, +0.0000018037,0.0000018062,0.0000018082,0.0000018101,0.0000018113, +0.0000018139,0.0000018193,0.0000018257,0.0000018311,0.0000018360, +0.0000018397,0.0000018417,0.0000018413,0.0000018393,0.0000018362, +0.0000018319,0.0000018266,0.0000018212,0.0000018157,0.0000018106, +0.0000018053,0.0000017991,0.0000017935,0.0000017910,0.0000017917, +0.0000017930,0.0000017923,0.0000017885,0.0000017832,0.0000017786, +0.0000017748,0.0000017707,0.0000017651,0.0000017584,0.0000017512, +0.0000017437,0.0000017369,0.0000017325,0.0000017294,0.0000017259, +0.0000017222,0.0000017192,0.0000017172,0.0000017163,0.0000017161, +0.0000017168,0.0000017177,0.0000017185,0.0000017193,0.0000017212, +0.0000017234,0.0000017260,0.0000017277,0.0000017289,0.0000017315, +0.0000017342,0.0000017356,0.0000017376,0.0000017432,0.0000017523, +0.0000017605,0.0000017663,0.0000017693,0.0000017693,0.0000017660, +0.0000017604,0.0000017545,0.0000017496,0.0000017451,0.0000017438, +0.0000017456,0.0000017485,0.0000017528,0.0000017584,0.0000017622, +0.0000017640,0.0000017642,0.0000017645,0.0000017663,0.0000017700, +0.0000017743,0.0000017768,0.0000017775,0.0000017768,0.0000017742, +0.0000017700,0.0000017651,0.0000017587,0.0000017493,0.0000017382, +0.0000017298,0.0000017259,0.0000017263,0.0000017313,0.0000017399, +0.0000017494,0.0000017574,0.0000017626,0.0000017652,0.0000017661, +0.0000017668,0.0000017700,0.0000017764,0.0000017801,0.0000017776, +0.0000017703,0.0000017664,0.0000017705,0.0000017765,0.0000017761, +0.0000017689,0.0000017618,0.0000017563,0.0000017417,0.0000017345, +0.0000017466,0.0000017737,0.0000017836,0.0000017789,0.0000017750, +0.0000017660,0.0000017627,0.0000017698,0.0000017766,0.0000017793, +0.0000017821,0.0000017854,0.0000017913,0.0000017971,0.0000017947, +0.0000017843,0.0000017780,0.0000017771,0.0000017850,0.0000017892, +0.0000017763,0.0000017723,0.0000017800,0.0000017861,0.0000017897, +0.0000017806,0.0000017654,0.0000017571,0.0000017521,0.0000017511, +0.0000017541,0.0000017556,0.0000017551,0.0000017539,0.0000017537, +0.0000017584,0.0000017695,0.0000017746,0.0000017688,0.0000017534, +0.0000017422,0.0000017427,0.0000017568,0.0000017734,0.0000017809, +0.0000017804,0.0000017780,0.0000017760,0.0000017738,0.0000017711, +0.0000017684,0.0000017643,0.0000017561,0.0000017473,0.0000017451, +0.0000017501,0.0000017564,0.0000017616,0.0000017672,0.0000017708, +0.0000017701,0.0000017664,0.0000017638,0.0000017643,0.0000017674, +0.0000017697,0.0000017684,0.0000017645,0.0000017625,0.0000017638, +0.0000017674,0.0000017711,0.0000017723,0.0000017704,0.0000017661, +0.0000017632,0.0000017634,0.0000017641,0.0000017637,0.0000017634, +0.0000017638,0.0000017637,0.0000017658,0.0000017711,0.0000017721, +0.0000017654,0.0000017605,0.0000017635,0.0000017695,0.0000017684, +0.0000017608,0.0000017530,0.0000017496,0.0000017498,0.0000017559, +0.0000017671,0.0000017785,0.0000017861,0.0000017896,0.0000017915, +0.0000017955,0.0000018042,0.0000018164,0.0000018273,0.0000018347, +0.0000018403,0.0000018455,0.0000018510,0.0000018574,0.0000018632, +0.0000018661,0.0000018571,0.0000018513,0.0000018460,0.0000018415, +0.0000018380,0.0000018355,0.0000018342,0.0000018340,0.0000018345, +0.0000018355,0.0000018369,0.0000018398,0.0000018448,0.0000018506, +0.0000018549,0.0000018561,0.0000018554,0.0000018536,0.0000018523, +0.0000018522,0.0000018521,0.0000018504,0.0000018481,0.0000018483, +0.0000018512,0.0000018526,0.0000018490,0.0000018414,0.0000018380, +0.0000018413,0.0000018503,0.0000018564,0.0000018555,0.0000018504, +0.0000018473,0.0000018530,0.0000018652,0.0000018701,0.0000018700, +0.0000018664,0.0000018594,0.0000018561,0.0000018571,0.0000018593, +0.0000018615,0.0000018631,0.0000018644,0.0000018658,0.0000018676, +0.0000018695,0.0000018715,0.0000018738,0.0000018765,0.0000018796, +0.0000018832,0.0000018868,0.0000018895,0.0000018909,0.0000018909, +0.0000018900,0.0000018881,0.0000018878,0.0000018882,0.0000018910, +0.0000018959,0.0000019001,0.0000019014,0.0000019018,0.0000018996, +0.0000018955,0.0000018904,0.0000018852,0.0000018797,0.0000018751, +0.0000018714,0.0000018684,0.0000018659,0.0000018645,0.0000018632, +0.0000018615,0.0000018563,0.0000018480,0.0000018400,0.0000018349, +0.0000018316,0.0000018280,0.0000018222,0.0000018171,0.0000018158, +0.0000018175,0.0000018204,0.0000018231,0.0000018251,0.0000018266, +0.0000018282,0.0000018299,0.0000018311,0.0000018320,0.0000018323, +0.0000018319,0.0000018312,0.0000018302,0.0000018289,0.0000018273, +0.0000018254,0.0000018234,0.0000018219,0.0000018211,0.0000018208, +0.0000018222,0.0000018240,0.0000018256,0.0000018260,0.0000018260, +0.0000018257,0.0000018248,0.0000018236,0.0000018225,0.0000018220, +0.0000018218,0.0000018220,0.0000018223,0.0000018221,0.0000018216, +0.0000018206,0.0000018196,0.0000018191,0.0000018192,0.0000018191, +0.0000018188,0.0000018181,0.0000018174,0.0000018164,0.0000018152, +0.0000018137,0.0000018119,0.0000018100,0.0000018083,0.0000018064, +0.0000018046,0.0000018028,0.0000018006,0.0000017992,0.0000017981, +0.0000017980,0.0000017988,0.0000018006,0.0000018031,0.0000018061, +0.0000018093,0.0000018126,0.0000018157,0.0000018188,0.0000018224, +0.0000018261,0.0000018293,0.0000018320,0.0000018348,0.0000018373, +0.0000018397,0.0000018415,0.0000018433,0.0000018445,0.0000018445, +0.0000018439,0.0000018434,0.0000018427,0.0000018411,0.0000018395, +0.0000018390,0.0000018382,0.0000018379,0.0000018385,0.0000018392, +0.0000018397,0.0000018408,0.0000018421,0.0000018436,0.0000018451, +0.0000018465,0.0000018480,0.0000018497,0.0000018514,0.0000018533, +0.0000018555,0.0000018576,0.0000018595,0.0000018611,0.0000018624, +0.0000018641,0.0000018665,0.0000018692,0.0000018723,0.0000018757, +0.0000018793,0.0000018831,0.0000018862,0.0000018884,0.0000018901, +0.0000018904,0.0000018900,0.0000018892,0.0000018885,0.0000018872, +0.0000018850,0.0000018825,0.0000018798,0.0000018769,0.0000018744, +0.0000018729,0.0000018724,0.0000018727,0.0000018730,0.0000018734, +0.0000018747,0.0000018766,0.0000018779,0.0000018784,0.0000018782, +0.0000018775,0.0000018759,0.0000018735,0.0000018704,0.0000018673, +0.0000018645,0.0000018624,0.0000018619,0.0000018623,0.0000018631, +0.0000018640,0.0000018644,0.0000018644,0.0000018639,0.0000018624, +0.0000018600,0.0000018572,0.0000018546,0.0000018525,0.0000018510, +0.0000018506,0.0000018513,0.0000018536,0.0000018567,0.0000018599, +0.0000018632,0.0000018660,0.0000018684,0.0000018702,0.0000018709, +0.0000018704,0.0000018690,0.0000018670,0.0000018653,0.0000018636, +0.0000018622,0.0000018613,0.0000018608,0.0000018607,0.0000018611, +0.0000018619,0.0000018640,0.0000018671,0.0000018716,0.0000018764, +0.0000018808,0.0000018844,0.0000018880,0.0000018917,0.0000018958, +0.0000018989,0.0000018995,0.0000018975,0.0000018916,0.0000018829, +0.0000018745,0.0000018683,0.0000018631,0.0000018557,0.0000018450, +0.0000018328,0.0000018231,0.0000018184,0.0000018175,0.0000018197, +0.0000018216,0.0000018218,0.0000018171,0.0000018087,0.0000018016, +0.0000017980,0.0000017973,0.0000017989,0.0000018020,0.0000018061, +0.0000018099,0.0000018124,0.0000018134,0.0000018125,0.0000018113, +0.0000018090,0.0000018073,0.0000018063,0.0000018061,0.0000018065, +0.0000018076,0.0000018088,0.0000018099,0.0000018115,0.0000018129, +0.0000018144,0.0000018169,0.0000018196,0.0000018220,0.0000018242, +0.0000018265,0.0000018295,0.0000018331,0.0000018367,0.0000018398, +0.0000018426,0.0000018449,0.0000018469,0.0000018486,0.0000018500, +0.0000018511,0.0000018517,0.0000018516,0.0000018509,0.0000018498, +0.0000018479,0.0000018459,0.0000018436,0.0000018415,0.0000018402, +0.0000018398,0.0000018406,0.0000018415,0.0000018430,0.0000018445, +0.0000018458,0.0000018464,0.0000018464,0.0000018452,0.0000018436, +0.0000018417,0.0000018399,0.0000018383,0.0000018367,0.0000018359, +0.0000018368,0.0000018394,0.0000018424,0.0000018441,0.0000018440, +0.0000018419,0.0000018393,0.0000018378,0.0000018376,0.0000018381, +0.0000018388,0.0000018391,0.0000018397,0.0000018416,0.0000018455, +0.0000018508,0.0000018553,0.0000018571,0.0000018557,0.0000018514, +0.0000018454,0.0000018398,0.0000018362,0.0000018350,0.0000018355, +0.0000018363,0.0000018364,0.0000018359,0.0000018350,0.0000018341, +0.0000018334,0.0000018335,0.0000018341,0.0000018350,0.0000018364, +0.0000018372,0.0000018382,0.0000018389,0.0000018398,0.0000018411, +0.0000018428,0.0000018450,0.0000018474,0.0000018491,0.0000018505, +0.0000018516,0.0000018521,0.0000018520,0.0000018517,0.0000018513, +0.0000018515,0.0000018532,0.0000018557,0.0000018583,0.0000018606, +0.0000018628,0.0000018652,0.0000018670,0.0000018675,0.0000018672, +0.0000018658,0.0000018642,0.0000018628,0.0000018612,0.0000018591, +0.0000018564,0.0000018527,0.0000018482,0.0000018441,0.0000018401, +0.0000018355,0.0000018315,0.0000018296,0.0000018315,0.0000018345, +0.0000018380,0.0000018420,0.0000018454,0.0000018478,0.0000018500, +0.0000018518,0.0000018528,0.0000018533,0.0000018536,0.0000018535, +0.0000018525,0.0000018507,0.0000018484,0.0000018470,0.0000018472, +0.0000018501,0.0000018541,0.0000018574,0.0000018588,0.0000018587, +0.0000018576,0.0000018567,0.0000018558,0.0000018548,0.0000018541, +0.0000018538,0.0000018541,0.0000018546,0.0000018550,0.0000018561, +0.0000018594,0.0000018642,0.0000018686,0.0000018718,0.0000018750, +0.0000018786,0.0000018815,0.0000018837,0.0000018859,0.0000018879, +0.0000018892,0.0000018906,0.0000018919,0.0000018925,0.0000018925, +0.0000018919,0.0000018908,0.0000018894,0.0000018872,0.0000018847, +0.0000018827,0.0000018810,0.0000018797,0.0000018798,0.0000018805, +0.0000018812,0.0000018811,0.0000018803,0.0000018795,0.0000018797, +0.0000018802,0.0000018806,0.0000018812,0.0000018811,0.0000018799, +0.0000018776,0.0000018743,0.0000018704,0.0000018663,0.0000018617, +0.0000018569,0.0000018521,0.0000018480,0.0000018452,0.0000018441, +0.0000018442,0.0000018451,0.0000018499,0.0000018593,0.0000018719, +0.0000018846,0.0000018951,0.0000019014,0.0000019039,0.0000019025, +0.0000018989,0.0000018960,0.0000018948,0.0000018946,0.0000018938, +0.0000018913,0.0000018855,0.0000018769,0.0000018677,0.0000018622, +0.0000018594,0.0000018596,0.0000018631,0.0000018673,0.0000018710, +0.0000018720,0.0000018733,0.0000018728,0.0000018707,0.0000018684, +0.0000018663,0.0000018645,0.0000018627,0.0000018613,0.0000018599, +0.0000018582,0.0000018571,0.0000018563,0.0000018558,0.0000018553, +0.0000018551,0.0000018551,0.0000018556,0.0000018564,0.0000018572, +0.0000018577,0.0000018580,0.0000018583,0.0000018583,0.0000018572, +0.0000018553,0.0000018530,0.0000018505,0.0000018480,0.0000018460, +0.0000018454,0.0000018455,0.0000018458,0.0000018468,0.0000018479, +0.0000018484,0.0000018492,0.0000018500,0.0000018513,0.0000018523, +0.0000018524,0.0000018523,0.0000018528,0.0000018536,0.0000018541, +0.0000018548,0.0000018556,0.0000018566,0.0000018579,0.0000018600, +0.0000018623,0.0000018638,0.0000018645,0.0000018652,0.0000018657, +0.0000018650,0.0000018630,0.0000018611,0.0000018595,0.0000018586, +0.0000018578,0.0000018576,0.0000018583,0.0000018585,0.0000018582, +0.0000018572,0.0000018560,0.0000018553,0.0000018558,0.0000018578, +0.0000018606,0.0000018633,0.0000018671,0.0000018713,0.0000018752, +0.0000018781,0.0000018791,0.0000018790,0.0000018774,0.0000018757, +0.0000018738,0.0000018720,0.0000018700,0.0000018685,0.0000018674, +0.0000018659,0.0000018653,0.0000018652,0.0000018664,0.0000018671, +0.0000018684,0.0000018695,0.0000018697,0.0000018694,0.0000018690, +0.0000018685,0.0000018682,0.0000018688,0.0000018715,0.0000018743, +0.0000018763,0.0000018769,0.0000018764,0.0000018762,0.0000018766, +0.0000018781,0.0000018798,0.0000018792,0.0000018762,0.0000018716, +0.0000018672,0.0000018654,0.0000018654,0.0000018648,0.0000018617, +0.0000018545,0.0000018441,0.0000018318,0.0000018191,0.0000018073, +0.0000017976,0.0000017911,0.0000017885,0.0000017874,0.0000017893, +0.0000017909,0.0000017929,0.0000017964,0.0000017986,0.0000017984, +0.0000017954,0.0000017909,0.0000017864,0.0000017820,0.0000017802, +0.0000017810,0.0000017826,0.0000017821,0.0000017804,0.0000017785, +0.0000017768,0.0000017761,0.0000017740,0.0000017716,0.0000017695, +0.0000017703,0.0000017744,0.0000017799,0.0000017860,0.0000017921, +0.0000017976,0.0000018008,0.0000018031,0.0000018046,0.0000018044, +0.0000018027,0.0000017988,0.0000017944,0.0000017913,0.0000017888, +0.0000017874,0.0000017855,0.0000017819,0.0000017782,0.0000017740, +0.0000017707,0.0000017695,0.0000017682,0.0000017659,0.0000017632, +0.0000017594,0.0000017563,0.0000017553,0.0000017581,0.0000017630, +0.0000017689,0.0000017751,0.0000017810,0.0000017857,0.0000017889, +0.0000017899,0.0000017908,0.0000017909,0.0000017903,0.0000017889, +0.0000017851,0.0000017807,0.0000017770,0.0000017725,0.0000017669, +0.0000017609,0.0000017555,0.0000017519,0.0000017484,0.0000017457, +0.0000017445,0.0000017442,0.0000017452,0.0000017488,0.0000017529, +0.0000017563,0.0000017587,0.0000017593,0.0000017585,0.0000017555, +0.0000017518,0.0000017490,0.0000017482,0.0000017465,0.0000017444, +0.0000017427,0.0000017406,0.0000017387,0.0000017372,0.0000017360, +0.0000017363,0.0000017381,0.0000017402,0.0000017421,0.0000017425, +0.0000017397,0.0000017380,0.0000017335,0.0000017355,0.0000017450, +0.0000017634,0.0000017878,0.0000018148,0.0000018393,0.0000018578, +0.0000018693,0.0000018762,0.0000018815,0.0000018868,0.0000018922, +0.0000018945,0.0000018947,0.0000018904,0.0000018809,0.0000018682, +0.0000018569,0.0000018531,0.0000018532,0.0000018596,0.0000018693, +0.0000018789,0.0000018864,0.0000018899,0.0000018891,0.0000018845, +0.0000018782,0.0000018731,0.0000018698,0.0000018686,0.0000018675, +0.0000018667,0.0000018632,0.0000018584,0.0000018539,0.0000018504, +0.0000018480,0.0000018479,0.0000018502,0.0000018547,0.0000018592, +0.0000018619,0.0000018616,0.0000018583,0.0000018541,0.0000018513, +0.0000018499,0.0000018499,0.0000018512,0.0000018533,0.0000018561, +0.0000018596,0.0000018629,0.0000018653,0.0000018662,0.0000018654, +0.0000018638,0.0000018634,0.0000018661,0.0000018723,0.0000018795, +0.0000018837,0.0000018836,0.0000018805,0.0000018754,0.0000018701, +0.0000018663,0.0000018645,0.0000018638,0.0000018634,0.0000018624, +0.0000018604,0.0000018574,0.0000018547,0.0000018529,0.0000018519, +0.0000018510,0.0000018506,0.0000018505,0.0000018502,0.0000018494, +0.0000018476,0.0000018454,0.0000018439,0.0000018432,0.0000018420, +0.0000018403,0.0000018399,0.0000018407,0.0000018416,0.0000018417, +0.0000018391,0.0000018344,0.0000018305,0.0000018283,0.0000018259, +0.0000018236,0.0000018236,0.0000018257,0.0000018262,0.0000018219, +0.0000018158,0.0000018131,0.0000018135,0.0000018129,0.0000018088, +0.0000018035,0.0000018000,0.0000017996,0.0000018013,0.0000018041, +0.0000018071,0.0000018080,0.0000018044,0.0000017980,0.0000017947, +0.0000017946,0.0000017947,0.0000017945,0.0000017931,0.0000017924, +0.0000017920,0.0000017920,0.0000017930,0.0000017968,0.0000018026, +0.0000018086,0.0000018119,0.0000018141,0.0000018141,0.0000018134, +0.0000018126,0.0000018124,0.0000018129,0.0000018133,0.0000018140, +0.0000018163,0.0000018203,0.0000018248,0.0000018291,0.0000018335, +0.0000018384,0.0000018428,0.0000018449,0.0000018460,0.0000018460, +0.0000018445,0.0000018415,0.0000018372,0.0000018322,0.0000018269, +0.0000018205,0.0000018127,0.0000018057,0.0000018019,0.0000018002, +0.0000017990,0.0000017972,0.0000017946,0.0000017929,0.0000017928, +0.0000017930,0.0000017913,0.0000017864,0.0000017788,0.0000017696, +0.0000017597,0.0000017508,0.0000017442,0.0000017392,0.0000017340, +0.0000017282,0.0000017231,0.0000017195,0.0000017173,0.0000017166, +0.0000017179,0.0000017208,0.0000017233,0.0000017254,0.0000017275, +0.0000017291,0.0000017298,0.0000017299,0.0000017298,0.0000017308, +0.0000017321,0.0000017314,0.0000017313,0.0000017338,0.0000017396, +0.0000017465,0.0000017535,0.0000017587,0.0000017600,0.0000017579, +0.0000017544,0.0000017508,0.0000017462,0.0000017408,0.0000017380, +0.0000017396,0.0000017429,0.0000017449,0.0000017478,0.0000017518, +0.0000017551,0.0000017574,0.0000017582,0.0000017581,0.0000017588, +0.0000017611,0.0000017622,0.0000017612,0.0000017580,0.0000017529, +0.0000017463,0.0000017391,0.0000017321,0.0000017268,0.0000017245, +0.0000017261,0.0000017307,0.0000017389,0.0000017481,0.0000017568, +0.0000017641,0.0000017690,0.0000017714,0.0000017713,0.0000017696, +0.0000017671,0.0000017681,0.0000017742,0.0000017779,0.0000017768, +0.0000017712,0.0000017664,0.0000017692,0.0000017768,0.0000017788, +0.0000017747,0.0000017667,0.0000017600,0.0000017524,0.0000017377, +0.0000017363,0.0000017509,0.0000017764,0.0000017817,0.0000017771, +0.0000017730,0.0000017647,0.0000017656,0.0000017752,0.0000017821, +0.0000017836,0.0000017860,0.0000017926,0.0000018028,0.0000018017, +0.0000017886,0.0000017800,0.0000017783,0.0000017843,0.0000017907, +0.0000017791,0.0000017723,0.0000017793,0.0000017836,0.0000017867, +0.0000017801,0.0000017663,0.0000017577,0.0000017524,0.0000017512, +0.0000017542,0.0000017554,0.0000017548,0.0000017535,0.0000017521, +0.0000017530,0.0000017612,0.0000017721,0.0000017738,0.0000017627, +0.0000017464,0.0000017411,0.0000017494,0.0000017665,0.0000017780, +0.0000017796,0.0000017778,0.0000017750,0.0000017722,0.0000017695, +0.0000017672,0.0000017645,0.0000017576,0.0000017474,0.0000017431, +0.0000017459,0.0000017526,0.0000017584,0.0000017642,0.0000017690, +0.0000017693,0.0000017654,0.0000017620,0.0000017621,0.0000017648, +0.0000017673,0.0000017667,0.0000017637,0.0000017616,0.0000017624, +0.0000017653,0.0000017675,0.0000017670,0.0000017640,0.0000017615, +0.0000017616,0.0000017625,0.0000017627,0.0000017635,0.0000017645, +0.0000017651,0.0000017684,0.0000017723,0.0000017701,0.0000017628, +0.0000017624,0.0000017670,0.0000017660,0.0000017581,0.0000017506, +0.0000017482,0.0000017509,0.0000017618,0.0000017759,0.0000017852, +0.0000017875,0.0000017876,0.0000017902,0.0000017976,0.0000018089, +0.0000018203,0.0000018285,0.0000018342,0.0000018395,0.0000018444, +0.0000018496,0.0000018561,0.0000018618,0.0000018640,0.0000018621, +0.0000018439,0.0000018379,0.0000018339,0.0000018313,0.0000018292, +0.0000018273,0.0000018249,0.0000018232,0.0000018223,0.0000018223, +0.0000018234,0.0000018281,0.0000018367,0.0000018466,0.0000018532, +0.0000018552,0.0000018554,0.0000018547,0.0000018539,0.0000018533, +0.0000018522,0.0000018503,0.0000018496,0.0000018517,0.0000018538, +0.0000018522,0.0000018457,0.0000018399,0.0000018401,0.0000018472, +0.0000018562,0.0000018583,0.0000018546,0.0000018498,0.0000018524, +0.0000018641,0.0000018713,0.0000018708,0.0000018661,0.0000018573, +0.0000018535,0.0000018561,0.0000018604,0.0000018628,0.0000018634, +0.0000018631,0.0000018628,0.0000018631,0.0000018645,0.0000018668, +0.0000018695,0.0000018727,0.0000018759,0.0000018795,0.0000018837, +0.0000018881,0.0000018919,0.0000018950,0.0000018968,0.0000018979, +0.0000018965,0.0000018928,0.0000018894,0.0000018884,0.0000018896, +0.0000018930,0.0000018972,0.0000019001,0.0000019022,0.0000019005, +0.0000018974,0.0000018939,0.0000018887,0.0000018836,0.0000018789, +0.0000018736,0.0000018686,0.0000018646,0.0000018626,0.0000018619, +0.0000018597,0.0000018524,0.0000018427,0.0000018360,0.0000018323, +0.0000018302,0.0000018272,0.0000018226,0.0000018189,0.0000018175, +0.0000018188,0.0000018200,0.0000018217,0.0000018235,0.0000018253, +0.0000018269,0.0000018282,0.0000018294,0.0000018300,0.0000018299, +0.0000018296,0.0000018292,0.0000018280,0.0000018265,0.0000018249, +0.0000018243,0.0000018249,0.0000018268,0.0000018295,0.0000018318, +0.0000018328,0.0000018322,0.0000018301,0.0000018284,0.0000018277, +0.0000018278,0.0000018288,0.0000018302,0.0000018314,0.0000018324, +0.0000018337,0.0000018353,0.0000018375,0.0000018400,0.0000018421, +0.0000018437,0.0000018452,0.0000018468,0.0000018478,0.0000018481, +0.0000018478,0.0000018467,0.0000018445,0.0000018414,0.0000018376, +0.0000018333,0.0000018290,0.0000018245,0.0000018198,0.0000018157, +0.0000018119,0.0000018084,0.0000018057,0.0000018041,0.0000018032, +0.0000018032,0.0000018037,0.0000018042,0.0000018055,0.0000018064, +0.0000018065,0.0000018067,0.0000018075,0.0000018091,0.0000018112, +0.0000018133,0.0000018162,0.0000018190,0.0000018226,0.0000018262, +0.0000018293,0.0000018323,0.0000018346,0.0000018365,0.0000018372, +0.0000018378,0.0000018381,0.0000018368,0.0000018358,0.0000018354, +0.0000018347,0.0000018344,0.0000018350,0.0000018352,0.0000018355, +0.0000018359,0.0000018362,0.0000018368,0.0000018378,0.0000018385, +0.0000018393,0.0000018399,0.0000018408,0.0000018425,0.0000018441, +0.0000018448,0.0000018454,0.0000018462,0.0000018465,0.0000018465, +0.0000018470,0.0000018483,0.0000018499,0.0000018521,0.0000018547, +0.0000018575,0.0000018597,0.0000018616,0.0000018633,0.0000018645, +0.0000018651,0.0000018656,0.0000018659,0.0000018657,0.0000018655, +0.0000018652,0.0000018646,0.0000018639,0.0000018633,0.0000018632, +0.0000018638,0.0000018652,0.0000018671,0.0000018695,0.0000018725, +0.0000018756,0.0000018781,0.0000018792,0.0000018808,0.0000018826, +0.0000018837,0.0000018834,0.0000018818,0.0000018792,0.0000018763, +0.0000018741,0.0000018725,0.0000018719,0.0000018720,0.0000018730, +0.0000018742,0.0000018753,0.0000018760,0.0000018761,0.0000018755, +0.0000018742,0.0000018727,0.0000018710,0.0000018693,0.0000018679, +0.0000018676,0.0000018685,0.0000018704,0.0000018730,0.0000018763, +0.0000018794,0.0000018822,0.0000018846,0.0000018860,0.0000018861, +0.0000018853,0.0000018843,0.0000018827,0.0000018804,0.0000018780, +0.0000018757,0.0000018732,0.0000018706,0.0000018683,0.0000018668, +0.0000018666,0.0000018674,0.0000018694,0.0000018720,0.0000018757, +0.0000018797,0.0000018833,0.0000018871,0.0000018909,0.0000018951, +0.0000018993,0.0000019025,0.0000019028,0.0000018998,0.0000018926, +0.0000018830,0.0000018742,0.0000018674,0.0000018618,0.0000018548, +0.0000018456,0.0000018354,0.0000018276,0.0000018239,0.0000018237, +0.0000018265,0.0000018300,0.0000018306,0.0000018268,0.0000018181, +0.0000018096,0.0000018050,0.0000018033,0.0000018036,0.0000018056, +0.0000018072,0.0000018100,0.0000018125,0.0000018142,0.0000018142, +0.0000018134,0.0000018126,0.0000018116,0.0000018110,0.0000018104, +0.0000018099,0.0000018094,0.0000018091,0.0000018091,0.0000018101, +0.0000018119,0.0000018140,0.0000018159,0.0000018178,0.0000018204, +0.0000018236,0.0000018269,0.0000018302,0.0000018331,0.0000018354, +0.0000018372,0.0000018388,0.0000018401,0.0000018414,0.0000018425, +0.0000018429,0.0000018428,0.0000018426,0.0000018421,0.0000018412, +0.0000018406,0.0000018404,0.0000018400,0.0000018408,0.0000018423, +0.0000018434,0.0000018442,0.0000018449,0.0000018448,0.0000018442, +0.0000018429,0.0000018411,0.0000018392,0.0000018378,0.0000018367, +0.0000018361,0.0000018364,0.0000018390,0.0000018427,0.0000018456, +0.0000018462,0.0000018440,0.0000018403,0.0000018369,0.0000018351, +0.0000018349,0.0000018356,0.0000018363,0.0000018369,0.0000018387, +0.0000018428,0.0000018483,0.0000018525,0.0000018536,0.0000018517, +0.0000018468,0.0000018405,0.0000018353,0.0000018324,0.0000018316, +0.0000018317,0.0000018320,0.0000018324,0.0000018324,0.0000018323, +0.0000018323,0.0000018319,0.0000018318,0.0000018322,0.0000018332, +0.0000018347,0.0000018365,0.0000018386,0.0000018408,0.0000018425, +0.0000018436,0.0000018445,0.0000018455,0.0000018470,0.0000018488, +0.0000018509,0.0000018523,0.0000018528,0.0000018528,0.0000018526, +0.0000018517,0.0000018505,0.0000018492,0.0000018488,0.0000018493, +0.0000018504,0.0000018513,0.0000018517,0.0000018521,0.0000018529, +0.0000018535,0.0000018532,0.0000018520,0.0000018503,0.0000018494, +0.0000018489,0.0000018475,0.0000018449,0.0000018415,0.0000018372, +0.0000018327,0.0000018298,0.0000018283,0.0000018287,0.0000018295, +0.0000018331,0.0000018390,0.0000018446,0.0000018497,0.0000018546, +0.0000018581,0.0000018603,0.0000018622,0.0000018633,0.0000018635, +0.0000018633,0.0000018632,0.0000018626,0.0000018613,0.0000018589, +0.0000018547,0.0000018499,0.0000018466,0.0000018464,0.0000018479, +0.0000018511,0.0000018543,0.0000018562,0.0000018569,0.0000018568, +0.0000018558,0.0000018540,0.0000018523,0.0000018519,0.0000018521, +0.0000018522,0.0000018516,0.0000018513,0.0000018524,0.0000018553, +0.0000018584,0.0000018615,0.0000018660,0.0000018711,0.0000018759, +0.0000018805,0.0000018845,0.0000018872,0.0000018892,0.0000018910, +0.0000018923,0.0000018931,0.0000018937,0.0000018938,0.0000018933, +0.0000018918,0.0000018898,0.0000018874,0.0000018847,0.0000018821, +0.0000018803,0.0000018789,0.0000018785,0.0000018780,0.0000018766, +0.0000018748,0.0000018740,0.0000018745,0.0000018758,0.0000018780, +0.0000018805,0.0000018816,0.0000018819,0.0000018818,0.0000018807, +0.0000018789,0.0000018765,0.0000018733,0.0000018693,0.0000018643, +0.0000018586,0.0000018530,0.0000018481,0.0000018445,0.0000018425, +0.0000018418,0.0000018419,0.0000018446,0.0000018516,0.0000018626, +0.0000018761,0.0000018889,0.0000018973,0.0000019011,0.0000019026, +0.0000019015,0.0000018990,0.0000018968,0.0000018957,0.0000018942, +0.0000018912,0.0000018857,0.0000018776,0.0000018688,0.0000018620, +0.0000018594,0.0000018590,0.0000018601,0.0000018622,0.0000018650, +0.0000018674,0.0000018688,0.0000018685,0.0000018685,0.0000018682, +0.0000018676,0.0000018667,0.0000018655,0.0000018645,0.0000018641, +0.0000018637,0.0000018631,0.0000018626,0.0000018621,0.0000018617, +0.0000018622,0.0000018630,0.0000018636,0.0000018640,0.0000018641, +0.0000018642,0.0000018640,0.0000018628,0.0000018602,0.0000018566, +0.0000018529,0.0000018496,0.0000018472,0.0000018460,0.0000018459, +0.0000018466,0.0000018478,0.0000018488,0.0000018502,0.0000018514, +0.0000018532,0.0000018551,0.0000018567,0.0000018577,0.0000018585, +0.0000018597,0.0000018609,0.0000018615,0.0000018620,0.0000018626, +0.0000018627,0.0000018626,0.0000018636,0.0000018654,0.0000018665, +0.0000018673,0.0000018683,0.0000018686,0.0000018679,0.0000018663, +0.0000018645,0.0000018628,0.0000018612,0.0000018601,0.0000018606, +0.0000018606,0.0000018599,0.0000018590,0.0000018577,0.0000018567, +0.0000018556,0.0000018565,0.0000018580,0.0000018598,0.0000018619, +0.0000018649,0.0000018683,0.0000018717,0.0000018745,0.0000018760, +0.0000018760,0.0000018759,0.0000018760,0.0000018766,0.0000018773, +0.0000018774,0.0000018770,0.0000018762,0.0000018755,0.0000018743, +0.0000018731,0.0000018715,0.0000018702,0.0000018694,0.0000018696, +0.0000018699,0.0000018707,0.0000018711,0.0000018709,0.0000018703, +0.0000018713,0.0000018727,0.0000018740,0.0000018745,0.0000018744, +0.0000018744,0.0000018750,0.0000018770,0.0000018808,0.0000018836, +0.0000018856,0.0000018852,0.0000018829,0.0000018814,0.0000018816, +0.0000018824,0.0000018824,0.0000018796,0.0000018740,0.0000018652, +0.0000018536,0.0000018413,0.0000018294,0.0000018191,0.0000018105, +0.0000018043,0.0000018003,0.0000017973,0.0000017947,0.0000017963, +0.0000017979,0.0000017985,0.0000017968,0.0000017934,0.0000017891, +0.0000017842,0.0000017813,0.0000017819,0.0000017842,0.0000017851, +0.0000017831,0.0000017794,0.0000017763,0.0000017748,0.0000017726, +0.0000017707,0.0000017683,0.0000017680,0.0000017711,0.0000017765, +0.0000017833,0.0000017903,0.0000017963,0.0000018009,0.0000018042, +0.0000018064,0.0000018077,0.0000018087,0.0000018070,0.0000018040, +0.0000018008,0.0000017971,0.0000017946,0.0000017930,0.0000017909, +0.0000017890,0.0000017858,0.0000017827,0.0000017804,0.0000017778, +0.0000017750,0.0000017728,0.0000017697,0.0000017674,0.0000017662, +0.0000017676,0.0000017708,0.0000017748,0.0000017794,0.0000017843, +0.0000017880,0.0000017906,0.0000017918,0.0000017931,0.0000017947, +0.0000017956,0.0000017959,0.0000017942,0.0000017911,0.0000017882, +0.0000017840,0.0000017785,0.0000017726,0.0000017666,0.0000017620, +0.0000017578,0.0000017550,0.0000017533,0.0000017524,0.0000017521, +0.0000017537,0.0000017563,0.0000017590,0.0000017611,0.0000017625, +0.0000017628,0.0000017609,0.0000017579,0.0000017560,0.0000017560, +0.0000017560,0.0000017555,0.0000017545,0.0000017524,0.0000017495, +0.0000017453,0.0000017423,0.0000017425,0.0000017454,0.0000017478, +0.0000017479,0.0000017466,0.0000017435,0.0000017392,0.0000017335, +0.0000017313,0.0000017284,0.0000017321,0.0000017452,0.0000017662, +0.0000017932,0.0000018231,0.0000018488,0.0000018660,0.0000018753, +0.0000018802,0.0000018846,0.0000018898,0.0000018950,0.0000018970, +0.0000018937,0.0000018850,0.0000018730,0.0000018618,0.0000018558, +0.0000018566,0.0000018607,0.0000018688,0.0000018781,0.0000018862, +0.0000018895,0.0000018897,0.0000018850,0.0000018781,0.0000018713, +0.0000018674,0.0000018643,0.0000018628,0.0000018615,0.0000018592, +0.0000018578,0.0000018571,0.0000018568,0.0000018575,0.0000018601, +0.0000018638,0.0000018676,0.0000018704,0.0000018706,0.0000018686, +0.0000018659,0.0000018634,0.0000018617,0.0000018613,0.0000018619, +0.0000018633,0.0000018649,0.0000018659,0.0000018661,0.0000018657, +0.0000018644,0.0000018633,0.0000018637,0.0000018663,0.0000018712, +0.0000018771,0.0000018803,0.0000018787,0.0000018725,0.0000018645, +0.0000018585,0.0000018561,0.0000018559,0.0000018563,0.0000018565, +0.0000018561,0.0000018547,0.0000018521,0.0000018498,0.0000018485, +0.0000018484,0.0000018483,0.0000018482,0.0000018482,0.0000018486, +0.0000018482,0.0000018462,0.0000018433,0.0000018409,0.0000018399, +0.0000018392,0.0000018368,0.0000018339,0.0000018326,0.0000018330, +0.0000018346,0.0000018356,0.0000018340,0.0000018291,0.0000018246, +0.0000018229,0.0000018215,0.0000018198,0.0000018196,0.0000018208, +0.0000018197,0.0000018150,0.0000018114,0.0000018119,0.0000018128, +0.0000018108,0.0000018056,0.0000018012,0.0000017990,0.0000017993, +0.0000018017,0.0000018058,0.0000018101,0.0000018104,0.0000018052, +0.0000017998,0.0000017990,0.0000017991,0.0000017971,0.0000017928, +0.0000017896,0.0000017878,0.0000017878,0.0000017899,0.0000017945, +0.0000017996,0.0000018046,0.0000018092,0.0000018135,0.0000018155, +0.0000018179,0.0000018193,0.0000018199,0.0000018199,0.0000018203, +0.0000018222,0.0000018251,0.0000018278,0.0000018293,0.0000018303, +0.0000018330,0.0000018358,0.0000018390,0.0000018414,0.0000018426, +0.0000018433,0.0000018436,0.0000018433,0.0000018414,0.0000018398, +0.0000018377,0.0000018343,0.0000018299,0.0000018264,0.0000018242, +0.0000018211,0.0000018161,0.0000018102,0.0000018048,0.0000018017, +0.0000018011,0.0000018017,0.0000018012,0.0000017978,0.0000017918, +0.0000017842,0.0000017760,0.0000017682,0.0000017617,0.0000017560, +0.0000017491,0.0000017411,0.0000017333,0.0000017265,0.0000017216, +0.0000017195,0.0000017201,0.0000017221,0.0000017246,0.0000017274, +0.0000017299,0.0000017320,0.0000017338,0.0000017345,0.0000017350, +0.0000017349,0.0000017341,0.0000017329,0.0000017314,0.0000017316, +0.0000017321,0.0000017353,0.0000017408,0.0000017469,0.0000017500, +0.0000017497,0.0000017484,0.0000017473,0.0000017441,0.0000017391, +0.0000017345,0.0000017341,0.0000017374,0.0000017400,0.0000017415, +0.0000017435,0.0000017454,0.0000017463,0.0000017459,0.0000017448, +0.0000017449,0.0000017454,0.0000017444,0.0000017413,0.0000017373, +0.0000017336,0.0000017306,0.0000017287,0.0000017284,0.0000017309, +0.0000017346,0.0000017388,0.0000017440,0.0000017512,0.0000017586, +0.0000017646,0.0000017694,0.0000017724,0.0000017736,0.0000017733, +0.0000017716,0.0000017674,0.0000017660,0.0000017709,0.0000017741, +0.0000017741,0.0000017693,0.0000017640,0.0000017655,0.0000017746, +0.0000017782,0.0000017769,0.0000017713,0.0000017647,0.0000017584, +0.0000017468,0.0000017362,0.0000017388,0.0000017583,0.0000017794, +0.0000017796,0.0000017756,0.0000017690,0.0000017633,0.0000017705, +0.0000017825,0.0000017853,0.0000017868,0.0000017945,0.0000018083, +0.0000018092,0.0000017933,0.0000017818,0.0000017798,0.0000017840, +0.0000017916,0.0000017816,0.0000017726,0.0000017790,0.0000017819, +0.0000017839,0.0000017788,0.0000017665,0.0000017581,0.0000017530, +0.0000017516,0.0000017546,0.0000017557,0.0000017552,0.0000017543, +0.0000017528,0.0000017515,0.0000017544,0.0000017659,0.0000017753, +0.0000017700,0.0000017539,0.0000017418,0.0000017435,0.0000017590, +0.0000017744,0.0000017795,0.0000017782,0.0000017746,0.0000017709, +0.0000017677,0.0000017655,0.0000017638,0.0000017590,0.0000017492, +0.0000017413,0.0000017421,0.0000017486,0.0000017553,0.0000017619, +0.0000017676,0.0000017688,0.0000017651,0.0000017610,0.0000017602, +0.0000017621,0.0000017642,0.0000017644,0.0000017629,0.0000017612, +0.0000017613,0.0000017626,0.0000017626,0.0000017610,0.0000017599, +0.0000017605,0.0000017615,0.0000017623,0.0000017638,0.0000017650, +0.0000017664,0.0000017706,0.0000017725,0.0000017675,0.0000017630, +0.0000017649,0.0000017643,0.0000017568,0.0000017494,0.0000017476, +0.0000017527,0.0000017672,0.0000017817,0.0000017879,0.0000017879, +0.0000017883,0.0000017929,0.0000018027,0.0000018141,0.0000018235, +0.0000018296,0.0000018340,0.0000018384,0.0000018424,0.0000018471, +0.0000018535,0.0000018589,0.0000018605,0.0000018573,0.0000018511, +0.0000018325,0.0000018305,0.0000018303,0.0000018308,0.0000018303, +0.0000018287,0.0000018263,0.0000018234,0.0000018208,0.0000018188, +0.0000018183,0.0000018208,0.0000018297,0.0000018423,0.0000018515, +0.0000018552,0.0000018570,0.0000018574,0.0000018565,0.0000018552, +0.0000018534,0.0000018520,0.0000018527,0.0000018548,0.0000018551, +0.0000018510,0.0000018440,0.0000018407,0.0000018436,0.0000018524, +0.0000018591,0.0000018581,0.0000018529,0.0000018512,0.0000018596, +0.0000018709,0.0000018721,0.0000018687,0.0000018590,0.0000018529, +0.0000018550,0.0000018601,0.0000018615,0.0000018601,0.0000018583, +0.0000018576,0.0000018582,0.0000018600,0.0000018627,0.0000018658, +0.0000018690,0.0000018725,0.0000018753,0.0000018792,0.0000018834, +0.0000018881,0.0000018919,0.0000018952,0.0000018979,0.0000019003, +0.0000019020,0.0000019005,0.0000018966,0.0000018922,0.0000018896, +0.0000018893,0.0000018902,0.0000018920,0.0000018945,0.0000018959, +0.0000018954,0.0000018954,0.0000018915,0.0000018906,0.0000018879, +0.0000018831,0.0000018767,0.0000018690,0.0000018632,0.0000018612, +0.0000018602,0.0000018560,0.0000018466,0.0000018381,0.0000018335, +0.0000018318,0.0000018312,0.0000018293,0.0000018257,0.0000018224, +0.0000018207,0.0000018207,0.0000018217,0.0000018235,0.0000018251, +0.0000018266,0.0000018281,0.0000018292,0.0000018297,0.0000018301, +0.0000018307,0.0000018310,0.0000018306,0.0000018304,0.0000018314, +0.0000018331,0.0000018351,0.0000018367,0.0000018372,0.0000018365, +0.0000018352,0.0000018337,0.0000018331,0.0000018336,0.0000018349, +0.0000018360,0.0000018376,0.0000018411,0.0000018471,0.0000018545, +0.0000018612,0.0000018663,0.0000018704,0.0000018736,0.0000018761, +0.0000018782,0.0000018803,0.0000018827,0.0000018847,0.0000018860, +0.0000018866,0.0000018865,0.0000018854,0.0000018833,0.0000018801, +0.0000018761,0.0000018715,0.0000018663,0.0000018605,0.0000018542, +0.0000018477,0.0000018412,0.0000018349,0.0000018290,0.0000018241, +0.0000018204,0.0000018175,0.0000018150,0.0000018133,0.0000018125, +0.0000018115,0.0000018103,0.0000018097,0.0000018097,0.0000018106, +0.0000018117,0.0000018127,0.0000018135,0.0000018148,0.0000018161, +0.0000018170,0.0000018179,0.0000018187,0.0000018195,0.0000018195, +0.0000018190,0.0000018186,0.0000018173,0.0000018172,0.0000018173, +0.0000018178,0.0000018189,0.0000018207,0.0000018223,0.0000018238, +0.0000018254,0.0000018266,0.0000018281,0.0000018299,0.0000018318, +0.0000018336,0.0000018355,0.0000018378,0.0000018403,0.0000018417, +0.0000018426,0.0000018434,0.0000018439,0.0000018436,0.0000018427, +0.0000018427,0.0000018431,0.0000018437,0.0000018449,0.0000018466, +0.0000018484,0.0000018501,0.0000018519,0.0000018534,0.0000018543, +0.0000018546,0.0000018546,0.0000018546,0.0000018540,0.0000018530, +0.0000018519,0.0000018505,0.0000018484,0.0000018460,0.0000018437, +0.0000018418,0.0000018408,0.0000018411,0.0000018428,0.0000018453, +0.0000018482,0.0000018518,0.0000018560,0.0000018604,0.0000018644, +0.0000018681,0.0000018715,0.0000018743,0.0000018758,0.0000018761, +0.0000018769,0.0000018783,0.0000018795,0.0000018804,0.0000018812, +0.0000018821,0.0000018829,0.0000018835,0.0000018836,0.0000018832, +0.0000018828,0.0000018822,0.0000018813,0.0000018802,0.0000018792, +0.0000018786,0.0000018788,0.0000018795,0.0000018809,0.0000018833, +0.0000018859,0.0000018882,0.0000018904,0.0000018924,0.0000018935, +0.0000018941,0.0000018942,0.0000018942,0.0000018934,0.0000018918, +0.0000018893,0.0000018862,0.0000018829,0.0000018796,0.0000018765, +0.0000018738,0.0000018718,0.0000018707,0.0000018706,0.0000018721, +0.0000018754,0.0000018799,0.0000018842,0.0000018877,0.0000018907, +0.0000018940,0.0000018977,0.0000019012,0.0000019033,0.0000019028, +0.0000018987,0.0000018904,0.0000018806,0.0000018728,0.0000018678, +0.0000018639,0.0000018584,0.0000018508,0.0000018422,0.0000018354, +0.0000018317,0.0000018305,0.0000018317,0.0000018349,0.0000018363, +0.0000018353,0.0000018295,0.0000018214,0.0000018150,0.0000018111, +0.0000018082,0.0000018069,0.0000018078,0.0000018086,0.0000018108, +0.0000018128,0.0000018136,0.0000018137,0.0000018137,0.0000018129, +0.0000018128,0.0000018123,0.0000018118,0.0000018111,0.0000018115, +0.0000018126,0.0000018135,0.0000018145,0.0000018161,0.0000018185, +0.0000018211,0.0000018239,0.0000018271,0.0000018300,0.0000018324, +0.0000018344,0.0000018363,0.0000018381,0.0000018399,0.0000018413, +0.0000018419,0.0000018426,0.0000018431,0.0000018433,0.0000018431, +0.0000018425,0.0000018422,0.0000018422,0.0000018425,0.0000018420, +0.0000018413,0.0000018404,0.0000018392,0.0000018381,0.0000018372, +0.0000018365,0.0000018360,0.0000018361,0.0000018371,0.0000018397, +0.0000018436,0.0000018474,0.0000018491,0.0000018483,0.0000018453, +0.0000018413,0.0000018381,0.0000018366,0.0000018365,0.0000018368, +0.0000018370,0.0000018379,0.0000018411,0.0000018460,0.0000018502, +0.0000018512,0.0000018487,0.0000018427,0.0000018359,0.0000018306, +0.0000018282,0.0000018283,0.0000018293,0.0000018302,0.0000018304, +0.0000018305,0.0000018309,0.0000018318,0.0000018328,0.0000018341, +0.0000018353,0.0000018364,0.0000018377,0.0000018397,0.0000018420, +0.0000018441,0.0000018460,0.0000018476,0.0000018482,0.0000018480, +0.0000018477,0.0000018475,0.0000018479,0.0000018489,0.0000018502, +0.0000018507,0.0000018505,0.0000018497,0.0000018481,0.0000018455, +0.0000018425,0.0000018400,0.0000018387,0.0000018386,0.0000018389, +0.0000018388,0.0000018381,0.0000018373,0.0000018371,0.0000018371, +0.0000018368,0.0000018360,0.0000018356,0.0000018361,0.0000018362, +0.0000018349,0.0000018330,0.0000018308,0.0000018282,0.0000018272, +0.0000018273,0.0000018303,0.0000018340,0.0000018386,0.0000018450, +0.0000018515,0.0000018566,0.0000018613,0.0000018655,0.0000018682, +0.0000018697,0.0000018711,0.0000018716,0.0000018712,0.0000018709, +0.0000018709,0.0000018705,0.0000018691,0.0000018662,0.0000018615, +0.0000018554,0.0000018496,0.0000018455,0.0000018440,0.0000018439, +0.0000018464,0.0000018501,0.0000018534,0.0000018556,0.0000018557, +0.0000018536,0.0000018513,0.0000018504,0.0000018507,0.0000018510, +0.0000018507,0.0000018502,0.0000018497,0.0000018504,0.0000018515, +0.0000018533,0.0000018569,0.0000018616,0.0000018670,0.0000018723, +0.0000018769,0.0000018805,0.0000018834,0.0000018856,0.0000018871, +0.0000018885,0.0000018899,0.0000018907,0.0000018906,0.0000018897, +0.0000018881,0.0000018854,0.0000018829,0.0000018809,0.0000018790, +0.0000018776,0.0000018764,0.0000018748,0.0000018732,0.0000018723, +0.0000018725,0.0000018734,0.0000018752,0.0000018781,0.0000018809, +0.0000018826,0.0000018841,0.0000018852,0.0000018854,0.0000018848, +0.0000018833,0.0000018814,0.0000018789,0.0000018750,0.0000018700, +0.0000018642,0.0000018579,0.0000018521,0.0000018479,0.0000018447, +0.0000018423,0.0000018413,0.0000018413,0.0000018420,0.0000018466, +0.0000018564,0.0000018704,0.0000018858,0.0000018984,0.0000019040, +0.0000019049,0.0000019030,0.0000018998,0.0000018978,0.0000018969, +0.0000018954,0.0000018918,0.0000018858,0.0000018783,0.0000018708, +0.0000018645,0.0000018600,0.0000018591,0.0000018584,0.0000018585, +0.0000018587,0.0000018590,0.0000018591,0.0000018591,0.0000018587, +0.0000018581,0.0000018575,0.0000018573,0.0000018575,0.0000018576, +0.0000018577,0.0000018582,0.0000018591,0.0000018606,0.0000018628, +0.0000018652,0.0000018675,0.0000018694,0.0000018706,0.0000018712, +0.0000018709,0.0000018693,0.0000018659,0.0000018614,0.0000018572, +0.0000018537,0.0000018505,0.0000018481,0.0000018467,0.0000018466, +0.0000018470,0.0000018476,0.0000018485,0.0000018499,0.0000018517, +0.0000018535,0.0000018548,0.0000018558,0.0000018568,0.0000018584, +0.0000018599,0.0000018610,0.0000018628,0.0000018641,0.0000018652, +0.0000018661,0.0000018681,0.0000018704,0.0000018724,0.0000018745, +0.0000018763,0.0000018773,0.0000018777,0.0000018772,0.0000018759, +0.0000018740,0.0000018726,0.0000018727,0.0000018730,0.0000018725, +0.0000018717,0.0000018703,0.0000018687,0.0000018672,0.0000018657, +0.0000018651,0.0000018654,0.0000018661,0.0000018678,0.0000018699, +0.0000018724,0.0000018745,0.0000018755,0.0000018754,0.0000018752, +0.0000018755,0.0000018763,0.0000018777,0.0000018790,0.0000018805, +0.0000018816,0.0000018830,0.0000018846,0.0000018851,0.0000018841, +0.0000018825,0.0000018798,0.0000018770,0.0000018753,0.0000018746, +0.0000018743,0.0000018738,0.0000018729,0.0000018729,0.0000018738, +0.0000018747,0.0000018752,0.0000018748,0.0000018742,0.0000018741, +0.0000018745,0.0000018770,0.0000018811,0.0000018852,0.0000018875, +0.0000018885,0.0000018887,0.0000018898,0.0000018916,0.0000018938, +0.0000018948,0.0000018939,0.0000018902,0.0000018830,0.0000018736, +0.0000018626,0.0000018514,0.0000018403,0.0000018313,0.0000018246, +0.0000018181,0.0000018117,0.0000018076,0.0000018051,0.0000018035, +0.0000018014,0.0000017975,0.0000017922,0.0000017866,0.0000017825, +0.0000017830,0.0000017862,0.0000017896,0.0000017886,0.0000017848, +0.0000017801,0.0000017760,0.0000017729,0.0000017707,0.0000017683, +0.0000017679,0.0000017701,0.0000017743,0.0000017810,0.0000017881, +0.0000017940,0.0000017988,0.0000018026,0.0000018058,0.0000018086, +0.0000018110,0.0000018119,0.0000018108,0.0000018082,0.0000018037, +0.0000017995,0.0000017968,0.0000017954,0.0000017951,0.0000017941, +0.0000017928,0.0000017908,0.0000017878,0.0000017846,0.0000017820, +0.0000017789,0.0000017772,0.0000017761,0.0000017770,0.0000017790, +0.0000017811,0.0000017834,0.0000017862,0.0000017886,0.0000017908, +0.0000017923,0.0000017938,0.0000017961,0.0000017987,0.0000018009, +0.0000018018,0.0000018011,0.0000017998,0.0000017969,0.0000017924, +0.0000017870,0.0000017811,0.0000017760,0.0000017718,0.0000017688, +0.0000017663,0.0000017647,0.0000017637,0.0000017630,0.0000017641, +0.0000017659,0.0000017677,0.0000017692,0.0000017696,0.0000017684, +0.0000017651,0.0000017622,0.0000017623,0.0000017635,0.0000017649, +0.0000017654,0.0000017652,0.0000017625,0.0000017566,0.0000017513, +0.0000017499,0.0000017524,0.0000017552,0.0000017551,0.0000017518, +0.0000017468,0.0000017420,0.0000017376,0.0000017335,0.0000017278, +0.0000017264,0.0000017263,0.0000017327,0.0000017491,0.0000017750, +0.0000018067,0.0000018374,0.0000018605,0.0000018732,0.0000018788, +0.0000018822,0.0000018868,0.0000018929,0.0000018965,0.0000018966, +0.0000018902,0.0000018797,0.0000018695,0.0000018615,0.0000018601, +0.0000018618,0.0000018687,0.0000018769,0.0000018837,0.0000018879, +0.0000018876,0.0000018840,0.0000018781,0.0000018715,0.0000018652, +0.0000018610,0.0000018575,0.0000018554,0.0000018555,0.0000018569, +0.0000018588,0.0000018623,0.0000018666,0.0000018708,0.0000018740, +0.0000018757,0.0000018759,0.0000018752,0.0000018740,0.0000018731, +0.0000018729,0.0000018735,0.0000018747,0.0000018757,0.0000018761, +0.0000018753,0.0000018732,0.0000018700,0.0000018669,0.0000018654, +0.0000018661,0.0000018689,0.0000018724,0.0000018738,0.0000018717, +0.0000018656,0.0000018579,0.0000018525,0.0000018511,0.0000018522, +0.0000018539,0.0000018545,0.0000018541,0.0000018525,0.0000018500, +0.0000018477,0.0000018466,0.0000018467,0.0000018471,0.0000018471, +0.0000018471,0.0000018469,0.0000018463,0.0000018443,0.0000018413, +0.0000018376,0.0000018348,0.0000018342,0.0000018336,0.0000018313, +0.0000018284,0.0000018270,0.0000018275,0.0000018294,0.0000018303, +0.0000018286,0.0000018241,0.0000018207,0.0000018193,0.0000018178, +0.0000018163,0.0000018166,0.0000018171,0.0000018142,0.0000018097, +0.0000018085,0.0000018104,0.0000018105,0.0000018070,0.0000018023, +0.0000017991,0.0000017980,0.0000017994,0.0000018031,0.0000018087, +0.0000018131,0.0000018119,0.0000018061,0.0000018020,0.0000018019, +0.0000018016,0.0000017972,0.0000017910,0.0000017868,0.0000017860, +0.0000017885,0.0000017940,0.0000017991,0.0000018021,0.0000018049, +0.0000018083,0.0000018119,0.0000018161,0.0000018203,0.0000018227, +0.0000018235,0.0000018243,0.0000018266,0.0000018306,0.0000018345, +0.0000018366,0.0000018372,0.0000018381,0.0000018395,0.0000018409, +0.0000018415,0.0000018410,0.0000018405,0.0000018393,0.0000018388, +0.0000018385,0.0000018385,0.0000018385,0.0000018373,0.0000018368, +0.0000018375,0.0000018392,0.0000018388,0.0000018353,0.0000018300, +0.0000018244,0.0000018195,0.0000018155,0.0000018125,0.0000018092, +0.0000018044,0.0000017981,0.0000017915,0.0000017854,0.0000017801, +0.0000017759,0.0000017715,0.0000017656,0.0000017585,0.0000017500, +0.0000017411,0.0000017340,0.0000017297,0.0000017276,0.0000017265, +0.0000017268,0.0000017280,0.0000017287,0.0000017310,0.0000017334, +0.0000017363,0.0000017384,0.0000017392,0.0000017391,0.0000017386, +0.0000017370,0.0000017350,0.0000017327,0.0000017321,0.0000017327, +0.0000017363,0.0000017394,0.0000017402,0.0000017405,0.0000017413, +0.0000017411,0.0000017376,0.0000017329,0.0000017306,0.0000017319, +0.0000017348,0.0000017372,0.0000017396,0.0000017406,0.0000017400, +0.0000017385,0.0000017368,0.0000017363,0.0000017359,0.0000017352, +0.0000017346,0.0000017331,0.0000017344,0.0000017363,0.0000017390, +0.0000017427,0.0000017466,0.0000017496,0.0000017514,0.0000017536, +0.0000017571,0.0000017613,0.0000017660,0.0000017692,0.0000017711, +0.0000017728,0.0000017738,0.0000017727,0.0000017679,0.0000017658, +0.0000017686,0.0000017711,0.0000017706,0.0000017657,0.0000017601, +0.0000017601,0.0000017697,0.0000017762,0.0000017761,0.0000017733, +0.0000017693,0.0000017638,0.0000017552,0.0000017424,0.0000017370, +0.0000017452,0.0000017672,0.0000017791,0.0000017768,0.0000017726, +0.0000017651,0.0000017667,0.0000017801,0.0000017867,0.0000017874, +0.0000017961,0.0000018136,0.0000018165,0.0000017982,0.0000017835, +0.0000017810,0.0000017844,0.0000017922,0.0000017836,0.0000017733, +0.0000017791,0.0000017807,0.0000017813,0.0000017769,0.0000017663, +0.0000017585,0.0000017533,0.0000017519,0.0000017551,0.0000017562, +0.0000017559,0.0000017557,0.0000017546,0.0000017522,0.0000017516, +0.0000017584,0.0000017702,0.0000017737,0.0000017617,0.0000017452, +0.0000017411,0.0000017518,0.0000017688,0.0000017779,0.0000017782, +0.0000017750,0.0000017704,0.0000017663,0.0000017639,0.0000017630, +0.0000017602,0.0000017512,0.0000017415,0.0000017395,0.0000017447, +0.0000017518,0.0000017588,0.0000017657,0.0000017684,0.0000017654, +0.0000017606,0.0000017586,0.0000017591,0.0000017608,0.0000017624, +0.0000017619,0.0000017603,0.0000017594,0.0000017588,0.0000017581, +0.0000017583,0.0000017595,0.0000017608,0.0000017624,0.0000017647, +0.0000017659,0.0000017682,0.0000017728,0.0000017723,0.0000017662, +0.0000017640,0.0000017637,0.0000017571,0.0000017492,0.0000017468, +0.0000017527,0.0000017690,0.0000017833,0.0000017874,0.0000017881, +0.0000017925,0.0000018008,0.0000018103,0.0000018188,0.0000018251, +0.0000018301,0.0000018337,0.0000018363,0.0000018391,0.0000018429, +0.0000018485,0.0000018528,0.0000018525,0.0000018489,0.0000018431, +0.0000018370,0.0000018294,0.0000018316,0.0000018344,0.0000018365, +0.0000018371,0.0000018362,0.0000018343,0.0000018315,0.0000018278, +0.0000018233,0.0000018197,0.0000018193,0.0000018248,0.0000018379, +0.0000018494,0.0000018557,0.0000018593,0.0000018603,0.0000018594, +0.0000018579,0.0000018560,0.0000018546,0.0000018552,0.0000018568, +0.0000018564,0.0000018515,0.0000018450,0.0000018431,0.0000018475, +0.0000018560,0.0000018597,0.0000018567,0.0000018518,0.0000018537, +0.0000018653,0.0000018728,0.0000018715,0.0000018631,0.0000018530, +0.0000018533,0.0000018583,0.0000018587,0.0000018551,0.0000018531, +0.0000018536,0.0000018559,0.0000018580,0.0000018614,0.0000018655, +0.0000018691,0.0000018718,0.0000018742,0.0000018764,0.0000018798, +0.0000018833,0.0000018872,0.0000018907,0.0000018943,0.0000018974, +0.0000018999,0.0000019022,0.0000019031,0.0000019024,0.0000018999, +0.0000018959,0.0000018919,0.0000018892,0.0000018876,0.0000018861, +0.0000018866,0.0000018869,0.0000018876,0.0000018876,0.0000018887, +0.0000018894,0.0000018883,0.0000018846,0.0000018769,0.0000018676, +0.0000018616,0.0000018597,0.0000018581,0.0000018513,0.0000018426, +0.0000018368,0.0000018344,0.0000018347,0.0000018352,0.0000018339, +0.0000018314,0.0000018288,0.0000018272,0.0000018275,0.0000018282, +0.0000018288,0.0000018298,0.0000018312,0.0000018326,0.0000018344, +0.0000018363,0.0000018381,0.0000018390,0.0000018396,0.0000018404, +0.0000018411,0.0000018413,0.0000018408,0.0000018403,0.0000018401, +0.0000018403,0.0000018407,0.0000018409,0.0000018409,0.0000018412, +0.0000018441,0.0000018509,0.0000018601,0.0000018693,0.0000018773, +0.0000018840,0.0000018893,0.0000018939,0.0000018981,0.0000019020, +0.0000019055,0.0000019087,0.0000019115,0.0000019140,0.0000019159, +0.0000019172,0.0000019178,0.0000019178,0.0000019174,0.0000019164, +0.0000019148,0.0000019127,0.0000019104,0.0000019075,0.0000019039, +0.0000018996,0.0000018950,0.0000018899,0.0000018842,0.0000018783, +0.0000018726,0.0000018669,0.0000018609,0.0000018547,0.0000018489, +0.0000018436,0.0000018384,0.0000018335,0.0000018291,0.0000018259, +0.0000018239,0.0000018219,0.0000018210,0.0000018201,0.0000018196, +0.0000018188,0.0000018181,0.0000018181,0.0000018180,0.0000018175, +0.0000018161,0.0000018136,0.0000018117,0.0000018094,0.0000018077, +0.0000018062,0.0000018052,0.0000018052,0.0000018055,0.0000018057, +0.0000018063,0.0000018066,0.0000018072,0.0000018078,0.0000018094, +0.0000018113,0.0000018136,0.0000018167,0.0000018200,0.0000018226, +0.0000018251,0.0000018278,0.0000018303,0.0000018326,0.0000018342, +0.0000018351,0.0000018365,0.0000018384,0.0000018401,0.0000018420, +0.0000018440,0.0000018458,0.0000018477,0.0000018497,0.0000018513, +0.0000018523,0.0000018527,0.0000018527,0.0000018528,0.0000018524, +0.0000018514,0.0000018499,0.0000018480,0.0000018457,0.0000018428, +0.0000018398,0.0000018369,0.0000018342,0.0000018323,0.0000018316, +0.0000018319,0.0000018330,0.0000018352,0.0000018379,0.0000018406, +0.0000018429,0.0000018450,0.0000018470,0.0000018488,0.0000018506, +0.0000018529,0.0000018557,0.0000018593,0.0000018638,0.0000018691, +0.0000018745,0.0000018795,0.0000018830,0.0000018847,0.0000018857, +0.0000018865,0.0000018869,0.0000018870,0.0000018869,0.0000018864, +0.0000018857,0.0000018849,0.0000018845,0.0000018847,0.0000018855, +0.0000018865,0.0000018877,0.0000018892,0.0000018907,0.0000018918, +0.0000018925,0.0000018927,0.0000018929,0.0000018930,0.0000018928, +0.0000018918,0.0000018903,0.0000018883,0.0000018862,0.0000018841, +0.0000018815,0.0000018784,0.0000018750,0.0000018721,0.0000018706, +0.0000018703,0.0000018718,0.0000018751,0.0000018796,0.0000018845, +0.0000018889,0.0000018920,0.0000018939,0.0000018956,0.0000018980, +0.0000019005,0.0000019016,0.0000019003,0.0000018954,0.0000018872, +0.0000018792,0.0000018740,0.0000018718,0.0000018698,0.0000018658, +0.0000018590,0.0000018507,0.0000018434,0.0000018385,0.0000018365, +0.0000018364,0.0000018388,0.0000018414,0.0000018415,0.0000018396, +0.0000018329,0.0000018246,0.0000018184,0.0000018140,0.0000018105, +0.0000018090,0.0000018085,0.0000018100,0.0000018093,0.0000018102, +0.0000018107,0.0000018108,0.0000018113,0.0000018116,0.0000018128, +0.0000018138,0.0000018145,0.0000018153,0.0000018165,0.0000018179, +0.0000018200,0.0000018217,0.0000018237,0.0000018262,0.0000018287, +0.0000018309,0.0000018330,0.0000018351,0.0000018370,0.0000018387, +0.0000018399,0.0000018408,0.0000018414,0.0000018415,0.0000018410, +0.0000018400,0.0000018391,0.0000018382,0.0000018371,0.0000018358, +0.0000018347,0.0000018339,0.0000018333,0.0000018331,0.0000018335, +0.0000018345,0.0000018360,0.0000018389,0.0000018434,0.0000018484, +0.0000018518,0.0000018524,0.0000018506,0.0000018476,0.0000018447, +0.0000018432,0.0000018431,0.0000018433,0.0000018430,0.0000018429, +0.0000018445,0.0000018476,0.0000018502,0.0000018502,0.0000018465, +0.0000018397,0.0000018325,0.0000018271,0.0000018249,0.0000018250, +0.0000018261,0.0000018272,0.0000018282,0.0000018289,0.0000018298, +0.0000018308,0.0000018322,0.0000018339,0.0000018358,0.0000018377, +0.0000018398,0.0000018422,0.0000018445,0.0000018467,0.0000018486, +0.0000018501,0.0000018511,0.0000018514,0.0000018510,0.0000018497, +0.0000018481,0.0000018464,0.0000018448,0.0000018439,0.0000018436, +0.0000018431,0.0000018422,0.0000018408,0.0000018388,0.0000018354, +0.0000018315,0.0000018284,0.0000018271,0.0000018274,0.0000018284, +0.0000018289,0.0000018285,0.0000018280,0.0000018281,0.0000018285, +0.0000018292,0.0000018300,0.0000018312,0.0000018325,0.0000018327, +0.0000018321,0.0000018308,0.0000018305,0.0000018305,0.0000018324, +0.0000018367,0.0000018414,0.0000018454,0.0000018502,0.0000018558, +0.0000018605,0.0000018648,0.0000018690,0.0000018722,0.0000018742, +0.0000018756,0.0000018766,0.0000018768,0.0000018763,0.0000018762, +0.0000018767,0.0000018765,0.0000018750,0.0000018720,0.0000018671, +0.0000018608,0.0000018538,0.0000018470,0.0000018422,0.0000018395, +0.0000018395,0.0000018427,0.0000018476,0.0000018525,0.0000018544, +0.0000018532,0.0000018512,0.0000018500,0.0000018501,0.0000018505, +0.0000018504,0.0000018499,0.0000018496,0.0000018494,0.0000018496, +0.0000018507,0.0000018534,0.0000018568,0.0000018609,0.0000018651, +0.0000018690,0.0000018726,0.0000018756,0.0000018775,0.0000018790, +0.0000018808,0.0000018826,0.0000018837,0.0000018839,0.0000018834, +0.0000018822,0.0000018808,0.0000018796,0.0000018781,0.0000018766, +0.0000018751,0.0000018736,0.0000018725,0.0000018720,0.0000018724, +0.0000018735,0.0000018750,0.0000018771,0.0000018797,0.0000018822, +0.0000018847,0.0000018871,0.0000018887,0.0000018892,0.0000018891, +0.0000018879,0.0000018866,0.0000018849,0.0000018826,0.0000018795, +0.0000018749,0.0000018691,0.0000018633,0.0000018580,0.0000018530, +0.0000018482,0.0000018445,0.0000018417,0.0000018392,0.0000018373, +0.0000018379,0.0000018437,0.0000018564,0.0000018741,0.0000018917, +0.0000019026,0.0000019056,0.0000019051,0.0000019028,0.0000019006, +0.0000018988,0.0000018973,0.0000018955,0.0000018926,0.0000018881, +0.0000018824,0.0000018766,0.0000018718,0.0000018679,0.0000018649, +0.0000018627,0.0000018608,0.0000018588,0.0000018578,0.0000018572, +0.0000018562,0.0000018552,0.0000018542,0.0000018536,0.0000018529, +0.0000018522,0.0000018521,0.0000018528,0.0000018548,0.0000018578, +0.0000018607,0.0000018637,0.0000018672,0.0000018704,0.0000018729, +0.0000018746,0.0000018748,0.0000018729,0.0000018694,0.0000018652, +0.0000018611,0.0000018573,0.0000018538,0.0000018509,0.0000018490, +0.0000018477,0.0000018478,0.0000018484,0.0000018501,0.0000018521, +0.0000018538,0.0000018550,0.0000018555,0.0000018558,0.0000018558, +0.0000018554,0.0000018548,0.0000018555,0.0000018564,0.0000018573, +0.0000018591,0.0000018620,0.0000018651,0.0000018684,0.0000018723, +0.0000018759,0.0000018785,0.0000018810,0.0000018825,0.0000018828, +0.0000018828,0.0000018829,0.0000018840,0.0000018846,0.0000018847, +0.0000018847,0.0000018840,0.0000018825,0.0000018801,0.0000018777, +0.0000018760,0.0000018746,0.0000018739,0.0000018743,0.0000018754, +0.0000018766,0.0000018775,0.0000018775,0.0000018768,0.0000018765, +0.0000018773,0.0000018785,0.0000018797,0.0000018812,0.0000018827, +0.0000018847,0.0000018877,0.0000018914,0.0000018944,0.0000018961, +0.0000018959,0.0000018940,0.0000018911,0.0000018886,0.0000018864, +0.0000018841,0.0000018813,0.0000018790,0.0000018782,0.0000018787, +0.0000018800,0.0000018808,0.0000018803,0.0000018787,0.0000018768, +0.0000018774,0.0000018782,0.0000018812,0.0000018852,0.0000018878, +0.0000018894,0.0000018909,0.0000018928,0.0000018954,0.0000018977, +0.0000019006,0.0000019022,0.0000019008,0.0000018968,0.0000018904, +0.0000018817,0.0000018712,0.0000018609,0.0000018523,0.0000018442, +0.0000018360,0.0000018295,0.0000018236,0.0000018191,0.0000018149, +0.0000018094,0.0000018024,0.0000017947,0.0000017882,0.0000017857, +0.0000017884,0.0000017932,0.0000017949,0.0000017926,0.0000017873, +0.0000017814,0.0000017773,0.0000017740,0.0000017707,0.0000017690, +0.0000017705,0.0000017736,0.0000017789,0.0000017862,0.0000017926, +0.0000017973,0.0000018006,0.0000018037,0.0000018069,0.0000018104, +0.0000018129,0.0000018142,0.0000018133,0.0000018094,0.0000018041, +0.0000017991,0.0000017965,0.0000017967,0.0000017968,0.0000017969, +0.0000017959,0.0000017934,0.0000017903,0.0000017871,0.0000017835, +0.0000017811,0.0000017800,0.0000017812,0.0000017834,0.0000017845, +0.0000017846,0.0000017848,0.0000017858,0.0000017873,0.0000017886, +0.0000017904,0.0000017938,0.0000017982,0.0000018024,0.0000018049, +0.0000018063,0.0000018074,0.0000018063,0.0000018031,0.0000017987, +0.0000017934,0.0000017892,0.0000017859,0.0000017830,0.0000017805, +0.0000017789,0.0000017775,0.0000017764,0.0000017760,0.0000017772, +0.0000017788,0.0000017806,0.0000017816,0.0000017807,0.0000017773, +0.0000017735,0.0000017724,0.0000017732,0.0000017753,0.0000017774, +0.0000017779,0.0000017757,0.0000017695,0.0000017632,0.0000017588, +0.0000017583,0.0000017601,0.0000017610,0.0000017584,0.0000017523, +0.0000017460,0.0000017413,0.0000017382,0.0000017341,0.0000017292, +0.0000017240,0.0000017221,0.0000017253,0.0000017363,0.0000017590, +0.0000017911,0.0000018252,0.0000018528,0.0000018694,0.0000018765, +0.0000018794,0.0000018837,0.0000018907,0.0000018967,0.0000018978, +0.0000018943,0.0000018867,0.0000018769,0.0000018680,0.0000018642, +0.0000018656,0.0000018691,0.0000018741,0.0000018791,0.0000018833, +0.0000018840,0.0000018827,0.0000018784,0.0000018719,0.0000018647, +0.0000018580,0.0000018544,0.0000018532,0.0000018545,0.0000018578, +0.0000018628,0.0000018683,0.0000018727,0.0000018756,0.0000018764, +0.0000018763,0.0000018755,0.0000018752,0.0000018754,0.0000018767, +0.0000018784,0.0000018797,0.0000018809,0.0000018816,0.0000018808, +0.0000018782,0.0000018741,0.0000018700,0.0000018672,0.0000018667, +0.0000018674,0.0000018671,0.0000018643,0.0000018596,0.0000018549, +0.0000018518,0.0000018508,0.0000018519,0.0000018535,0.0000018541, +0.0000018537,0.0000018521,0.0000018494,0.0000018467,0.0000018446, +0.0000018434,0.0000018428,0.0000018427,0.0000018425,0.0000018418, +0.0000018408,0.0000018392,0.0000018373,0.0000018337,0.0000018298, +0.0000018278,0.0000018278,0.0000018281,0.0000018272,0.0000018255, +0.0000018246,0.0000018249,0.0000018259,0.0000018262,0.0000018242, +0.0000018204,0.0000018174,0.0000018161,0.0000018152,0.0000018142, +0.0000018138,0.0000018128,0.0000018095,0.0000018065,0.0000018065, +0.0000018078,0.0000018068,0.0000018033,0.0000017992,0.0000017968, +0.0000017973,0.0000018006,0.0000018058,0.0000018118,0.0000018152, +0.0000018130,0.0000018075,0.0000018041,0.0000018032,0.0000018014, +0.0000017962,0.0000017901,0.0000017867,0.0000017882,0.0000017939, +0.0000018002,0.0000018038,0.0000018052,0.0000018062,0.0000018073, +0.0000018102,0.0000018152,0.0000018201,0.0000018232,0.0000018249, +0.0000018266,0.0000018299,0.0000018344,0.0000018385,0.0000018420, +0.0000018442,0.0000018457,0.0000018471,0.0000018476,0.0000018467, +0.0000018453,0.0000018433,0.0000018413,0.0000018399,0.0000018385, +0.0000018374,0.0000018362,0.0000018363,0.0000018379,0.0000018411, +0.0000018422,0.0000018424,0.0000018414,0.0000018404,0.0000018378, +0.0000018340,0.0000018292,0.0000018231,0.0000018158,0.0000018081, +0.0000018013,0.0000017959,0.0000017914,0.0000017869,0.0000017818, +0.0000017763,0.0000017708,0.0000017644,0.0000017580,0.0000017523, +0.0000017472,0.0000017425,0.0000017386,0.0000017359,0.0000017329, +0.0000017306,0.0000017305,0.0000017312,0.0000017342,0.0000017370, +0.0000017397,0.0000017418,0.0000017437,0.0000017443,0.0000017438, +0.0000017406,0.0000017364,0.0000017332,0.0000017332,0.0000017330, +0.0000017330,0.0000017327,0.0000017335,0.0000017350,0.0000017347, +0.0000017319,0.0000017293,0.0000017278,0.0000017289,0.0000017318, +0.0000017354,0.0000017373,0.0000017376,0.0000017369,0.0000017363, +0.0000017365,0.0000017365,0.0000017365,0.0000017371,0.0000017391, +0.0000017422,0.0000017454,0.0000017483,0.0000017512,0.0000017539, +0.0000017551,0.0000017553,0.0000017563,0.0000017580,0.0000017606, +0.0000017637,0.0000017664,0.0000017691,0.0000017721,0.0000017746, +0.0000017741,0.0000017689,0.0000017669,0.0000017689,0.0000017704, +0.0000017688,0.0000017626,0.0000017566,0.0000017564,0.0000017648, +0.0000017726,0.0000017742,0.0000017734,0.0000017711,0.0000017688, +0.0000017615,0.0000017507,0.0000017402,0.0000017402,0.0000017537, +0.0000017743,0.0000017773,0.0000017743,0.0000017663,0.0000017651, +0.0000017768,0.0000017875,0.0000017881,0.0000017975,0.0000018178, +0.0000018215,0.0000018027,0.0000017848,0.0000017824,0.0000017852, +0.0000017925,0.0000017851,0.0000017741,0.0000017794,0.0000017799, +0.0000017787,0.0000017746,0.0000017657,0.0000017585,0.0000017531, +0.0000017517,0.0000017555,0.0000017567,0.0000017561,0.0000017560, +0.0000017556,0.0000017539,0.0000017513,0.0000017536,0.0000017657, +0.0000017740,0.0000017677,0.0000017497,0.0000017408,0.0000017462, +0.0000017631,0.0000017756,0.0000017777,0.0000017757,0.0000017707, +0.0000017655,0.0000017626,0.0000017621,0.0000017609,0.0000017535, +0.0000017425,0.0000017384,0.0000017414,0.0000017483,0.0000017556, +0.0000017632,0.0000017677,0.0000017660,0.0000017609,0.0000017575, +0.0000017567,0.0000017578,0.0000017595,0.0000017596,0.0000017581, +0.0000017566,0.0000017564,0.0000017573,0.0000017589,0.0000017604, +0.0000017628,0.0000017657,0.0000017673,0.0000017704,0.0000017741, +0.0000017722,0.0000017664,0.0000017637,0.0000017587,0.0000017505, +0.0000017468,0.0000017515,0.0000017677,0.0000017821,0.0000017859, +0.0000017888,0.0000017978,0.0000018094,0.0000018182,0.0000018229, +0.0000018263,0.0000018291,0.0000018315,0.0000018328,0.0000018341, +0.0000018371,0.0000018413,0.0000018431,0.0000018412,0.0000018367, +0.0000018324,0.0000018290,0.0000018280,0.0000018337,0.0000018381, +0.0000018411,0.0000018425,0.0000018424,0.0000018412,0.0000018396, +0.0000018380,0.0000018355,0.0000018317,0.0000018263,0.0000018215, +0.0000018226,0.0000018336,0.0000018468,0.0000018562,0.0000018614, +0.0000018629,0.0000018627,0.0000018613,0.0000018594,0.0000018578, +0.0000018575,0.0000018585,0.0000018587,0.0000018548,0.0000018482, +0.0000018457,0.0000018504,0.0000018578,0.0000018596,0.0000018549, +0.0000018512,0.0000018572,0.0000018694,0.0000018732,0.0000018674, +0.0000018557,0.0000018508,0.0000018550,0.0000018550,0.0000018505, +0.0000018490,0.0000018525,0.0000018580,0.0000018634,0.0000018667, +0.0000018686,0.0000018704,0.0000018727,0.0000018755,0.0000018777, +0.0000018787,0.0000018804,0.0000018824,0.0000018851,0.0000018882, +0.0000018919,0.0000018955,0.0000018983,0.0000019007,0.0000019026, +0.0000019035,0.0000019039,0.0000019022,0.0000018985,0.0000018940, +0.0000018895,0.0000018861,0.0000018839,0.0000018828,0.0000018813, +0.0000018812,0.0000018823,0.0000018842,0.0000018862,0.0000018863, +0.0000018833,0.0000018748,0.0000018653,0.0000018601,0.0000018584, +0.0000018554,0.0000018490,0.0000018429,0.0000018391,0.0000018385, +0.0000018395,0.0000018402,0.0000018399,0.0000018391,0.0000018384, +0.0000018383,0.0000018383,0.0000018385,0.0000018393,0.0000018410, +0.0000018431,0.0000018452,0.0000018468,0.0000018474,0.0000018472, +0.0000018464,0.0000018455,0.0000018447,0.0000018448,0.0000018458, +0.0000018470,0.0000018480,0.0000018480,0.0000018477,0.0000018486, +0.0000018530,0.0000018606,0.0000018699,0.0000018789,0.0000018870, +0.0000018943,0.0000019014,0.0000019079,0.0000019134,0.0000019175, +0.0000019198,0.0000019208,0.0000019210,0.0000019202,0.0000019190, +0.0000019183,0.0000019181,0.0000019178,0.0000019170,0.0000019165, +0.0000019161,0.0000019157,0.0000019150,0.0000019143,0.0000019139, +0.0000019136,0.0000019134,0.0000019134,0.0000019128,0.0000019118, +0.0000019107,0.0000019093,0.0000019079,0.0000019061,0.0000019036, +0.0000019005,0.0000018971,0.0000018934,0.0000018892,0.0000018846, +0.0000018803,0.0000018768,0.0000018732,0.0000018693,0.0000018659, +0.0000018624,0.0000018594,0.0000018554,0.0000018522,0.0000018490, +0.0000018453,0.0000018420,0.0000018383,0.0000018341,0.0000018305, +0.0000018266,0.0000018231,0.0000018195,0.0000018163,0.0000018139, +0.0000018117,0.0000018096,0.0000018076,0.0000018063,0.0000018053, +0.0000018055,0.0000018067,0.0000018069,0.0000018087,0.0000018102, +0.0000018107,0.0000018108,0.0000018114,0.0000018126,0.0000018143, +0.0000018159,0.0000018169,0.0000018175,0.0000018190,0.0000018207, +0.0000018223,0.0000018243,0.0000018264,0.0000018284,0.0000018309, +0.0000018337,0.0000018364,0.0000018387,0.0000018407,0.0000018426, +0.0000018446,0.0000018461,0.0000018468,0.0000018467,0.0000018459, +0.0000018442,0.0000018420,0.0000018393,0.0000018364,0.0000018335, +0.0000018313,0.0000018302,0.0000018301,0.0000018310,0.0000018325, +0.0000018345,0.0000018367,0.0000018388,0.0000018404,0.0000018412, +0.0000018414,0.0000018417,0.0000018420,0.0000018421,0.0000018422, +0.0000018428,0.0000018447,0.0000018482,0.0000018530,0.0000018586, +0.0000018639,0.0000018680,0.0000018711,0.0000018736,0.0000018755, +0.0000018769,0.0000018780,0.0000018785,0.0000018786,0.0000018785, +0.0000018790,0.0000018793,0.0000018793,0.0000018789,0.0000018782, +0.0000018773,0.0000018764,0.0000018757,0.0000018753,0.0000018753, +0.0000018755,0.0000018757,0.0000018758,0.0000018758,0.0000018759, +0.0000018759,0.0000018755,0.0000018747,0.0000018731,0.0000018707, +0.0000018681,0.0000018659,0.0000018647,0.0000018646,0.0000018663, +0.0000018702,0.0000018757,0.0000018815,0.0000018868,0.0000018907, +0.0000018931,0.0000018941,0.0000018947,0.0000018964,0.0000018988, +0.0000018997,0.0000018973,0.0000018925,0.0000018859,0.0000018810, +0.0000018794,0.0000018790,0.0000018775,0.0000018732,0.0000018663, +0.0000018587,0.0000018519,0.0000018464,0.0000018428,0.0000018413, +0.0000018422,0.0000018443,0.0000018447,0.0000018434,0.0000018405, +0.0000018339,0.0000018272,0.0000018222,0.0000018175,0.0000018127, +0.0000018092,0.0000018075,0.0000018060,0.0000018055,0.0000018054, +0.0000018073,0.0000018090,0.0000018110,0.0000018132,0.0000018149, +0.0000018164,0.0000018183,0.0000018196,0.0000018206,0.0000018217, +0.0000018229,0.0000018242,0.0000018256,0.0000018271,0.0000018285, +0.0000018298,0.0000018309,0.0000018316,0.0000018319,0.0000018321, +0.0000018319,0.0000018316,0.0000018313,0.0000018309,0.0000018304, +0.0000018300,0.0000018301,0.0000018303,0.0000018310,0.0000018327, +0.0000018344,0.0000018379,0.0000018426,0.0000018477,0.0000018518, +0.0000018537,0.0000018537,0.0000018522,0.0000018503,0.0000018492, +0.0000018491,0.0000018495,0.0000018496,0.0000018497,0.0000018509, +0.0000018535,0.0000018547,0.0000018537,0.0000018491,0.0000018416, +0.0000018337,0.0000018284,0.0000018254,0.0000018242,0.0000018239, +0.0000018240,0.0000018243,0.0000018248,0.0000018258,0.0000018271, +0.0000018286,0.0000018303,0.0000018323,0.0000018343,0.0000018363, +0.0000018383,0.0000018406,0.0000018431,0.0000018457,0.0000018475, +0.0000018489,0.0000018500,0.0000018507,0.0000018505,0.0000018493, +0.0000018474,0.0000018451,0.0000018422,0.0000018393,0.0000018372, +0.0000018358,0.0000018348,0.0000018342,0.0000018335,0.0000018320, +0.0000018289,0.0000018252,0.0000018226,0.0000018222,0.0000018236, +0.0000018260,0.0000018273,0.0000018275,0.0000018274,0.0000018280, +0.0000018290,0.0000018307,0.0000018326,0.0000018347,0.0000018361, +0.0000018364,0.0000018366,0.0000018374,0.0000018391,0.0000018415, +0.0000018450,0.0000018488,0.0000018517,0.0000018547,0.0000018587, +0.0000018631,0.0000018676,0.0000018724,0.0000018766,0.0000018795, +0.0000018816,0.0000018827,0.0000018830,0.0000018825,0.0000018814, +0.0000018808,0.0000018807,0.0000018803,0.0000018789,0.0000018761, +0.0000018712,0.0000018643,0.0000018566,0.0000018492,0.0000018429, +0.0000018386,0.0000018372,0.0000018379,0.0000018423,0.0000018477, +0.0000018512,0.0000018517,0.0000018509,0.0000018506,0.0000018507, +0.0000018509,0.0000018508,0.0000018501,0.0000018493,0.0000018485, +0.0000018483,0.0000018496,0.0000018520,0.0000018551,0.0000018582, +0.0000018612,0.0000018642,0.0000018672,0.0000018695,0.0000018712, +0.0000018729,0.0000018747,0.0000018765,0.0000018777,0.0000018781, +0.0000018779,0.0000018778,0.0000018779,0.0000018774,0.0000018764, +0.0000018751,0.0000018736,0.0000018727,0.0000018729,0.0000018738, +0.0000018748,0.0000018762,0.0000018781,0.0000018800,0.0000018822, +0.0000018850,0.0000018882,0.0000018911,0.0000018929,0.0000018935, +0.0000018934,0.0000018925,0.0000018916,0.0000018909,0.0000018897, +0.0000018871,0.0000018831,0.0000018785,0.0000018739,0.0000018695, +0.0000018647,0.0000018594,0.0000018541,0.0000018491,0.0000018436, +0.0000018381,0.0000018348,0.0000018344,0.0000018379,0.0000018486, +0.0000018655,0.0000018837,0.0000018979,0.0000019037,0.0000019055, +0.0000019044,0.0000019023,0.0000019006,0.0000018996,0.0000018991, +0.0000018983,0.0000018966,0.0000018940,0.0000018906,0.0000018871, +0.0000018840,0.0000018811,0.0000018780,0.0000018752,0.0000018733, +0.0000018718,0.0000018700,0.0000018682,0.0000018666,0.0000018654, +0.0000018641,0.0000018628,0.0000018619,0.0000018615,0.0000018617, +0.0000018624,0.0000018633,0.0000018644,0.0000018658,0.0000018676, +0.0000018697,0.0000018717,0.0000018728,0.0000018730,0.0000018722, +0.0000018710,0.0000018702,0.0000018685,0.0000018654,0.0000018619, +0.0000018586,0.0000018559,0.0000018540,0.0000018536,0.0000018545, +0.0000018556,0.0000018564,0.0000018570,0.0000018572,0.0000018571, +0.0000018565,0.0000018551,0.0000018535,0.0000018522,0.0000018507, +0.0000018495,0.0000018501,0.0000018518,0.0000018541,0.0000018573, +0.0000018609,0.0000018651,0.0000018690,0.0000018722,0.0000018748, +0.0000018768,0.0000018782,0.0000018802,0.0000018826,0.0000018845, +0.0000018860,0.0000018865,0.0000018868,0.0000018862,0.0000018842, +0.0000018818,0.0000018793,0.0000018770,0.0000018757,0.0000018753, +0.0000018751,0.0000018750,0.0000018749,0.0000018746,0.0000018742, +0.0000018744,0.0000018751,0.0000018763,0.0000018781,0.0000018798, +0.0000018810,0.0000018835,0.0000018879,0.0000018930,0.0000018977, +0.0000018999,0.0000019023,0.0000019025,0.0000019016,0.0000019001, +0.0000018980,0.0000018948,0.0000018908,0.0000018874,0.0000018858, +0.0000018861,0.0000018875,0.0000018889,0.0000018889,0.0000018875, +0.0000018853,0.0000018828,0.0000018817,0.0000018836,0.0000018863, +0.0000018888,0.0000018906,0.0000018918,0.0000018932,0.0000018957, +0.0000018991,0.0000019025,0.0000019038,0.0000019054,0.0000019049, +0.0000019017,0.0000018955,0.0000018876,0.0000018794,0.0000018713, +0.0000018630,0.0000018554,0.0000018473,0.0000018395,0.0000018327, +0.0000018259,0.0000018177,0.0000018089,0.0000018002,0.0000017954, +0.0000017958,0.0000018000,0.0000018034,0.0000018025,0.0000017972, +0.0000017902,0.0000017846,0.0000017805,0.0000017770,0.0000017748, +0.0000017746,0.0000017751,0.0000017784,0.0000017840,0.0000017905, +0.0000017960,0.0000018001,0.0000018031,0.0000018056,0.0000018083, +0.0000018110,0.0000018137,0.0000018148,0.0000018130,0.0000018085, +0.0000018023,0.0000017985,0.0000017974,0.0000017975,0.0000017976, +0.0000017965,0.0000017945,0.0000017921,0.0000017886,0.0000017844, +0.0000017805,0.0000017797,0.0000017818,0.0000017847,0.0000017855, +0.0000017841,0.0000017824,0.0000017819,0.0000017823,0.0000017823, +0.0000017835,0.0000017870,0.0000017931,0.0000017992,0.0000018036, +0.0000018069,0.0000018090,0.0000018096,0.0000018077,0.0000018036, +0.0000017991,0.0000017963,0.0000017939,0.0000017917,0.0000017902, +0.0000017892,0.0000017887,0.0000017879,0.0000017874,0.0000017883, +0.0000017895,0.0000017921,0.0000017939,0.0000017939,0.0000017915, +0.0000017882,0.0000017866,0.0000017870,0.0000017891,0.0000017910, +0.0000017919,0.0000017895,0.0000017840,0.0000017775,0.0000017712, +0.0000017669,0.0000017648,0.0000017640,0.0000017626,0.0000017581, +0.0000017514,0.0000017457,0.0000017424,0.0000017393,0.0000017351, +0.0000017295,0.0000017235,0.0000017206,0.0000017186,0.0000017269, +0.0000017475,0.0000017782,0.0000018123,0.0000018421,0.0000018621, +0.0000018719,0.0000018767,0.0000018811,0.0000018866,0.0000018935, +0.0000018980,0.0000018991,0.0000018942,0.0000018851,0.0000018766, +0.0000018704,0.0000018691,0.0000018688,0.0000018711,0.0000018748, +0.0000018780,0.0000018802,0.0000018796,0.0000018771,0.0000018712, +0.0000018641,0.0000018584,0.0000018551,0.0000018559,0.0000018585, +0.0000018631,0.0000018680,0.0000018720,0.0000018741,0.0000018748, +0.0000018736,0.0000018723,0.0000018722,0.0000018736,0.0000018753, +0.0000018765,0.0000018778,0.0000018794,0.0000018805,0.0000018797, +0.0000018768,0.0000018724,0.0000018678,0.0000018644,0.0000018626, +0.0000018613,0.0000018594,0.0000018570,0.0000018550,0.0000018537, +0.0000018532,0.0000018535,0.0000018537,0.0000018535,0.0000018525, +0.0000018507,0.0000018481,0.0000018451,0.0000018418,0.0000018383, +0.0000018352,0.0000018335,0.0000018330,0.0000018327,0.0000018321, +0.0000018316,0.0000018310,0.0000018290,0.0000018259,0.0000018230, +0.0000018219,0.0000018231,0.0000018245,0.0000018248,0.0000018243, +0.0000018236,0.0000018234,0.0000018236,0.0000018233,0.0000018207, +0.0000018168,0.0000018144,0.0000018140,0.0000018132,0.0000018115, +0.0000018105,0.0000018094,0.0000018067,0.0000018045,0.0000018044, +0.0000018046,0.0000018033,0.0000017998,0.0000017961,0.0000017953, +0.0000017981,0.0000018032,0.0000018088,0.0000018138,0.0000018157, +0.0000018137,0.0000018093,0.0000018054,0.0000018030,0.0000018005, +0.0000017958,0.0000017908,0.0000017901,0.0000017936,0.0000018000, +0.0000018057,0.0000018090,0.0000018097,0.0000018090,0.0000018093, +0.0000018104,0.0000018138,0.0000018176,0.0000018204,0.0000018225, +0.0000018248,0.0000018286,0.0000018341,0.0000018402,0.0000018454, +0.0000018481,0.0000018505,0.0000018517,0.0000018523,0.0000018525, +0.0000018522,0.0000018512,0.0000018495,0.0000018468,0.0000018431, +0.0000018397,0.0000018373,0.0000018379,0.0000018387,0.0000018400, +0.0000018406,0.0000018425,0.0000018442,0.0000018461,0.0000018455, +0.0000018429,0.0000018381,0.0000018316,0.0000018249,0.0000018195, +0.0000018148,0.0000018094,0.0000018029,0.0000017952,0.0000017874, +0.0000017800,0.0000017736,0.0000017689,0.0000017652,0.0000017621, +0.0000017590,0.0000017564,0.0000017532,0.0000017480,0.0000017419, +0.0000017368,0.0000017346,0.0000017334,0.0000017347,0.0000017371, +0.0000017406,0.0000017442,0.0000017476,0.0000017509,0.0000017507, +0.0000017473,0.0000017424,0.0000017389,0.0000017355,0.0000017328, +0.0000017301,0.0000017289,0.0000017296,0.0000017309,0.0000017305, +0.0000017291,0.0000017264,0.0000017249,0.0000017264,0.0000017294, +0.0000017317,0.0000017324,0.0000017323,0.0000017328,0.0000017338, +0.0000017346,0.0000017349,0.0000017361,0.0000017393,0.0000017432, +0.0000017463,0.0000017486,0.0000017502,0.0000017515,0.0000017520, +0.0000017522,0.0000017529,0.0000017540,0.0000017558,0.0000017599, +0.0000017654,0.0000017701,0.0000017741,0.0000017765,0.0000017753, +0.0000017701,0.0000017688,0.0000017703,0.0000017707,0.0000017679, +0.0000017606,0.0000017546,0.0000017543,0.0000017619,0.0000017699, +0.0000017732,0.0000017725,0.0000017710,0.0000017704,0.0000017668, +0.0000017572,0.0000017460,0.0000017401,0.0000017457,0.0000017645, +0.0000017764,0.0000017748,0.0000017676,0.0000017649,0.0000017743, +0.0000017881,0.0000017888,0.0000017993,0.0000018208,0.0000018238, +0.0000018065,0.0000017861,0.0000017835,0.0000017862,0.0000017931, +0.0000017857,0.0000017746,0.0000017796,0.0000017791,0.0000017762, +0.0000017721,0.0000017649,0.0000017586,0.0000017525,0.0000017514, +0.0000017559,0.0000017570,0.0000017557,0.0000017551,0.0000017547, +0.0000017541,0.0000017525,0.0000017522,0.0000017596,0.0000017724, +0.0000017722,0.0000017556,0.0000017418,0.0000017424,0.0000017573, +0.0000017725,0.0000017777,0.0000017764,0.0000017713,0.0000017653, +0.0000017615,0.0000017608,0.0000017608,0.0000017559,0.0000017452, +0.0000017379,0.0000017389,0.0000017451,0.0000017523,0.0000017597, +0.0000017660,0.0000017667,0.0000017620,0.0000017569,0.0000017546, +0.0000017548,0.0000017564,0.0000017570,0.0000017562,0.0000017558, +0.0000017565,0.0000017578,0.0000017597,0.0000017630,0.0000017663, +0.0000017686,0.0000017728,0.0000017758,0.0000017721,0.0000017665, +0.0000017616,0.0000017537,0.0000017485,0.0000017509,0.0000017651, +0.0000017802,0.0000017845,0.0000017886,0.0000018012,0.0000018152, +0.0000018237,0.0000018262,0.0000018262,0.0000018263,0.0000018262, +0.0000018261,0.0000018264,0.0000018284,0.0000018311,0.0000018314, +0.0000018281,0.0000018241,0.0000018224,0.0000018234,0.0000018252, +0.0000018290,0.0000018385,0.0000018415,0.0000018424,0.0000018423, +0.0000018416,0.0000018404,0.0000018387,0.0000018368,0.0000018358, +0.0000018351,0.0000018333,0.0000018267,0.0000018232,0.0000018298, +0.0000018431,0.0000018556,0.0000018626,0.0000018650,0.0000018651, +0.0000018643,0.0000018631,0.0000018616,0.0000018606,0.0000018608, +0.0000018613,0.0000018589,0.0000018522,0.0000018479,0.0000018514, +0.0000018585,0.0000018585,0.0000018530,0.0000018521,0.0000018617, +0.0000018721,0.0000018707,0.0000018600,0.0000018504,0.0000018513, +0.0000018519,0.0000018479,0.0000018485,0.0000018561,0.0000018647, +0.0000018687,0.0000018703,0.0000018732,0.0000018779,0.0000018838, +0.0000018894,0.0000018928,0.0000018935,0.0000018922,0.0000018890, +0.0000018854,0.0000018847,0.0000018857,0.0000018880,0.0000018913, +0.0000018953,0.0000018987,0.0000019015,0.0000019033,0.0000019041, +0.0000019035,0.0000019020,0.0000018993,0.0000018959,0.0000018924, +0.0000018889,0.0000018858,0.0000018833,0.0000018817,0.0000018809, +0.0000018812,0.0000018819,0.0000018837,0.0000018845,0.0000018806, +0.0000018720,0.0000018636,0.0000018593,0.0000018576,0.0000018550, +0.0000018505,0.0000018460,0.0000018436,0.0000018432,0.0000018441, +0.0000018453,0.0000018463,0.0000018471,0.0000018477,0.0000018479, +0.0000018483,0.0000018494,0.0000018509,0.0000018519,0.0000018521, +0.0000018515,0.0000018504,0.0000018493,0.0000018490,0.0000018496, +0.0000018509,0.0000018525,0.0000018539,0.0000018545,0.0000018556, +0.0000018585,0.0000018639,0.0000018709,0.0000018784,0.0000018861, +0.0000018939,0.0000019019,0.0000019098,0.0000019168,0.0000019218, +0.0000019241,0.0000019237,0.0000019211,0.0000019172,0.0000019124, +0.0000019083,0.0000019052,0.0000019030,0.0000019017,0.0000019011, +0.0000019007,0.0000019005,0.0000019005,0.0000019006,0.0000019009, +0.0000019010,0.0000019009,0.0000019005,0.0000018999,0.0000018998, +0.0000018997,0.0000018996,0.0000018998,0.0000019002,0.0000019007, +0.0000019012,0.0000019017,0.0000019021,0.0000019019,0.0000019020, +0.0000019025,0.0000019027,0.0000019023,0.0000019022,0.0000019030, +0.0000019034,0.0000019036,0.0000019036,0.0000019034,0.0000019032, +0.0000019018,0.0000019005,0.0000018989,0.0000018974,0.0000018950, +0.0000018924,0.0000018900,0.0000018876,0.0000018846,0.0000018815, +0.0000018777,0.0000018739,0.0000018702,0.0000018667,0.0000018628, +0.0000018588,0.0000018551,0.0000018517,0.0000018486,0.0000018457, +0.0000018435,0.0000018415,0.0000018396,0.0000018372,0.0000018342, +0.0000018315,0.0000018296,0.0000018278,0.0000018258,0.0000018237, +0.0000018219,0.0000018209,0.0000018210,0.0000018210,0.0000018221, +0.0000018234,0.0000018239,0.0000018241,0.0000018252,0.0000018267, +0.0000018278,0.0000018283,0.0000018293,0.0000018303,0.0000018308, +0.0000018310,0.0000018309,0.0000018303,0.0000018294,0.0000018282, +0.0000018268,0.0000018257,0.0000018247,0.0000018244,0.0000018251, +0.0000018266,0.0000018288,0.0000018314,0.0000018343,0.0000018374, +0.0000018399,0.0000018414,0.0000018421,0.0000018427,0.0000018431, +0.0000018431,0.0000018424,0.0000018412,0.0000018399,0.0000018387, +0.0000018379,0.0000018384,0.0000018399,0.0000018417,0.0000018430, +0.0000018442,0.0000018455,0.0000018469,0.0000018484,0.0000018498, +0.0000018509,0.0000018519,0.0000018532,0.0000018546,0.0000018552, +0.0000018553,0.0000018551,0.0000018542,0.0000018532,0.0000018526, +0.0000018524,0.0000018525,0.0000018532,0.0000018545,0.0000018557, +0.0000018568,0.0000018584,0.0000018600,0.0000018609,0.0000018610, +0.0000018602,0.0000018592,0.0000018580,0.0000018566,0.0000018548, +0.0000018531,0.0000018521,0.0000018524,0.0000018550,0.0000018596, +0.0000018654,0.0000018714,0.0000018775,0.0000018831,0.0000018874, +0.0000018899,0.0000018911,0.0000018922,0.0000018943,0.0000018968, +0.0000018981,0.0000018961,0.0000018932,0.0000018885,0.0000018854, +0.0000018845,0.0000018843,0.0000018833,0.0000018797,0.0000018736, +0.0000018666,0.0000018600,0.0000018542,0.0000018494,0.0000018460, +0.0000018445,0.0000018451,0.0000018465,0.0000018461,0.0000018439, +0.0000018413,0.0000018351,0.0000018288,0.0000018233,0.0000018177, +0.0000018119,0.0000018078,0.0000018067,0.0000018057,0.0000018070, +0.0000018088,0.0000018096,0.0000018112,0.0000018137,0.0000018158, +0.0000018171,0.0000018179,0.0000018184,0.0000018187,0.0000018193, +0.0000018200,0.0000018208,0.0000018214,0.0000018222,0.0000018231, +0.0000018238,0.0000018246,0.0000018254,0.0000018262,0.0000018268, +0.0000018277,0.0000018287,0.0000018296,0.0000018305,0.0000018326, +0.0000018354,0.0000018391,0.0000018435,0.0000018481,0.0000018519, +0.0000018541,0.0000018546,0.0000018538,0.0000018528,0.0000018521, +0.0000018519,0.0000018521,0.0000018523,0.0000018527,0.0000018544, +0.0000018575,0.0000018594,0.0000018588,0.0000018545,0.0000018469, +0.0000018390,0.0000018335,0.0000018300,0.0000018275,0.0000018252, +0.0000018228,0.0000018207,0.0000018195,0.0000018192,0.0000018196, +0.0000018205,0.0000018218,0.0000018230,0.0000018243,0.0000018262, +0.0000018287,0.0000018316,0.0000018347,0.0000018376,0.0000018399, +0.0000018415,0.0000018422,0.0000018428,0.0000018439,0.0000018448, +0.0000018449,0.0000018443,0.0000018434,0.0000018419,0.0000018393, +0.0000018366,0.0000018345,0.0000018328,0.0000018320,0.0000018319, +0.0000018320,0.0000018310,0.0000018282,0.0000018251,0.0000018234, +0.0000018239,0.0000018266,0.0000018296,0.0000018310,0.0000018314, +0.0000018319,0.0000018326,0.0000018342,0.0000018369,0.0000018399, +0.0000018422,0.0000018436,0.0000018446,0.0000018459,0.0000018479, +0.0000018503,0.0000018530,0.0000018553,0.0000018567,0.0000018585, +0.0000018622,0.0000018677,0.0000018741,0.0000018807,0.0000018859, +0.0000018899,0.0000018930,0.0000018948,0.0000018950,0.0000018943, +0.0000018927,0.0000018897,0.0000018867,0.0000018849,0.0000018833, +0.0000018815,0.0000018787,0.0000018730,0.0000018650,0.0000018568, +0.0000018496,0.0000018436,0.0000018392,0.0000018370,0.0000018376, +0.0000018399,0.0000018443,0.0000018476,0.0000018486,0.0000018493, +0.0000018506,0.0000018518,0.0000018523,0.0000018520,0.0000018510, +0.0000018495,0.0000018482,0.0000018480,0.0000018487,0.0000018505, +0.0000018529,0.0000018554,0.0000018576,0.0000018596,0.0000018615, +0.0000018636,0.0000018658,0.0000018679,0.0000018697,0.0000018714, +0.0000018730,0.0000018741,0.0000018748,0.0000018758,0.0000018768, +0.0000018771,0.0000018763,0.0000018753,0.0000018746,0.0000018745, +0.0000018755,0.0000018767,0.0000018778,0.0000018791,0.0000018809, +0.0000018830,0.0000018856,0.0000018887,0.0000018920,0.0000018948, +0.0000018966,0.0000018977,0.0000018980,0.0000018978,0.0000018974, +0.0000018969,0.0000018948,0.0000018913,0.0000018876,0.0000018839, +0.0000018804,0.0000018774,0.0000018744,0.0000018709,0.0000018665, +0.0000018613,0.0000018549,0.0000018471,0.0000018392,0.0000018342, +0.0000018322,0.0000018346,0.0000018431,0.0000018580,0.0000018758, +0.0000018914,0.0000019016,0.0000019049,0.0000019060,0.0000019051, +0.0000019037,0.0000019028,0.0000019026,0.0000019028,0.0000019028, +0.0000019023,0.0000019011,0.0000018995,0.0000018974,0.0000018947, +0.0000018922,0.0000018904,0.0000018888,0.0000018869,0.0000018848, +0.0000018828,0.0000018813,0.0000018800,0.0000018785,0.0000018772, +0.0000018764,0.0000018760,0.0000018759,0.0000018755,0.0000018746, +0.0000018739,0.0000018736,0.0000018734,0.0000018726,0.0000018718, +0.0000018713,0.0000018709,0.0000018711,0.0000018717,0.0000018718, +0.0000018717,0.0000018716,0.0000018702,0.0000018688,0.0000018674, +0.0000018675,0.0000018682,0.0000018682,0.0000018674,0.0000018659, +0.0000018642,0.0000018622,0.0000018595,0.0000018560,0.0000018531, +0.0000018506,0.0000018484,0.0000018465,0.0000018462,0.0000018474, +0.0000018494,0.0000018523,0.0000018556,0.0000018591,0.0000018622, +0.0000018647,0.0000018668,0.0000018683,0.0000018696,0.0000018720, +0.0000018750,0.0000018777,0.0000018800,0.0000018821,0.0000018831, +0.0000018826,0.0000018813,0.0000018794,0.0000018771,0.0000018751, +0.0000018734,0.0000018716,0.0000018703,0.0000018696,0.0000018691, +0.0000018686,0.0000018683,0.0000018681,0.0000018678,0.0000018678, +0.0000018680,0.0000018679,0.0000018686,0.0000018716,0.0000018763, +0.0000018821,0.0000018880,0.0000018941,0.0000018989,0.0000019016, +0.0000019019,0.0000019019,0.0000019009,0.0000018985,0.0000018950, +0.0000018920,0.0000018902,0.0000018902,0.0000018916,0.0000018939, +0.0000018957,0.0000018957,0.0000018939,0.0000018911,0.0000018890, +0.0000018884,0.0000018893,0.0000018911,0.0000018923,0.0000018930, +0.0000018940,0.0000018963,0.0000018990,0.0000019014,0.0000019040, +0.0000019063,0.0000019069,0.0000019055,0.0000019021,0.0000018974, +0.0000018921,0.0000018867,0.0000018814,0.0000018741,0.0000018650, +0.0000018557,0.0000018466,0.0000018369,0.0000018264,0.0000018160, +0.0000018091,0.0000018073,0.0000018096,0.0000018133,0.0000018145, +0.0000018106,0.0000018034,0.0000017958,0.0000017899,0.0000017863, +0.0000017848,0.0000017840,0.0000017827,0.0000017824,0.0000017851, +0.0000017890,0.0000017939,0.0000017989,0.0000018030,0.0000018061, +0.0000018081,0.0000018097,0.0000018117,0.0000018130,0.0000018126, +0.0000018104,0.0000018047,0.0000018009,0.0000017993,0.0000017993, +0.0000017990,0.0000017975,0.0000017955,0.0000017935,0.0000017900, +0.0000017852,0.0000017802,0.0000017799,0.0000017822,0.0000017856, +0.0000017865,0.0000017849,0.0000017825,0.0000017814,0.0000017802, +0.0000017785,0.0000017785,0.0000017808,0.0000017870,0.0000017938, +0.0000017998,0.0000018047,0.0000018087,0.0000018098,0.0000018084, +0.0000018045,0.0000018002,0.0000017977,0.0000017951,0.0000017927, +0.0000017917,0.0000017918,0.0000017922,0.0000017926,0.0000017929, +0.0000017935,0.0000017947,0.0000017972,0.0000017995,0.0000018007, +0.0000018002,0.0000017984,0.0000017979,0.0000017991,0.0000018016, +0.0000018043,0.0000018057,0.0000018040,0.0000017995,0.0000017938, +0.0000017868,0.0000017803,0.0000017741,0.0000017687,0.0000017646, +0.0000017608,0.0000017562,0.0000017516,0.0000017478,0.0000017436, +0.0000017398,0.0000017356,0.0000017292,0.0000017214,0.0000017164, +0.0000017152,0.0000017224,0.0000017397,0.0000017664,0.0000017984, +0.0000018281,0.0000018507,0.0000018652,0.0000018732,0.0000018778, +0.0000018835,0.0000018914,0.0000018989,0.0000019014,0.0000018984, +0.0000018927,0.0000018850,0.0000018776,0.0000018716,0.0000018694, +0.0000018684,0.0000018699,0.0000018723,0.0000018746,0.0000018750, +0.0000018728,0.0000018690,0.0000018645,0.0000018609,0.0000018600, +0.0000018616,0.0000018650,0.0000018684,0.0000018711,0.0000018726, +0.0000018723,0.0000018701,0.0000018687,0.0000018693,0.0000018706, +0.0000018712,0.0000018715,0.0000018721,0.0000018733,0.0000018742, +0.0000018735,0.0000018708,0.0000018669,0.0000018635,0.0000018610, +0.0000018592,0.0000018576,0.0000018566,0.0000018563,0.0000018566, +0.0000018571,0.0000018570,0.0000018561,0.0000018540,0.0000018516, +0.0000018486,0.0000018447,0.0000018407,0.0000018368,0.0000018329, +0.0000018291,0.0000018266,0.0000018259,0.0000018258,0.0000018259, +0.0000018260,0.0000018261,0.0000018252,0.0000018228,0.0000018199, +0.0000018177,0.0000018179,0.0000018198,0.0000018218,0.0000018227, +0.0000018227,0.0000018226,0.0000018227,0.0000018225,0.0000018209, +0.0000018175,0.0000018140,0.0000018125,0.0000018122,0.0000018108, +0.0000018088,0.0000018080,0.0000018074,0.0000018052,0.0000018028, +0.0000018018,0.0000018015,0.0000018000,0.0000017966,0.0000017938, +0.0000017949,0.0000018001,0.0000018059,0.0000018106,0.0000018141, +0.0000018153,0.0000018142,0.0000018107,0.0000018069,0.0000018041, +0.0000018007,0.0000017963,0.0000017935,0.0000017945,0.0000017992, +0.0000018053,0.0000018103,0.0000018136,0.0000018141,0.0000018134, +0.0000018123,0.0000018132,0.0000018140,0.0000018154,0.0000018168, +0.0000018180,0.0000018202,0.0000018246,0.0000018314,0.0000018393, +0.0000018460,0.0000018503,0.0000018522,0.0000018531,0.0000018540, +0.0000018553,0.0000018563,0.0000018567,0.0000018559,0.0000018530, +0.0000018488,0.0000018448,0.0000018423,0.0000018414,0.0000018407, +0.0000018405,0.0000018421,0.0000018437,0.0000018461,0.0000018472, +0.0000018478,0.0000018468,0.0000018447,0.0000018421,0.0000018393, +0.0000018353,0.0000018295,0.0000018226,0.0000018150,0.0000018065, +0.0000017969,0.0000017874,0.0000017791,0.0000017733,0.0000017702, +0.0000017690,0.0000017691,0.0000017683,0.0000017652,0.0000017606, +0.0000017548,0.0000017488,0.0000017425,0.0000017391,0.0000017368, +0.0000017391,0.0000017414,0.0000017468,0.0000017520,0.0000017557, +0.0000017568,0.0000017543,0.0000017508,0.0000017465,0.0000017419, +0.0000017367,0.0000017314,0.0000017296,0.0000017298,0.0000017303, +0.0000017299,0.0000017275,0.0000017243,0.0000017236,0.0000017250, +0.0000017262,0.0000017257,0.0000017251,0.0000017254,0.0000017265, +0.0000017275,0.0000017284,0.0000017310,0.0000017363,0.0000017421, +0.0000017463,0.0000017487,0.0000017492,0.0000017491,0.0000017481, +0.0000017470,0.0000017468,0.0000017482,0.0000017520,0.0000017597, +0.0000017681,0.0000017741,0.0000017777,0.0000017785,0.0000017757, +0.0000017712,0.0000017712,0.0000017723,0.0000017712,0.0000017665, +0.0000017589,0.0000017539,0.0000017539,0.0000017609,0.0000017690, +0.0000017729,0.0000017721,0.0000017705,0.0000017710,0.0000017702, +0.0000017629,0.0000017514,0.0000017423,0.0000017427,0.0000017554, +0.0000017719,0.0000017740,0.0000017680,0.0000017649,0.0000017728, +0.0000017878,0.0000017897,0.0000018019,0.0000018234,0.0000018242, +0.0000018087,0.0000017871,0.0000017841,0.0000017872,0.0000017942, +0.0000017861,0.0000017746,0.0000017795,0.0000017787,0.0000017742, +0.0000017697,0.0000017643,0.0000017585,0.0000017519,0.0000017516, +0.0000017562,0.0000017569,0.0000017555,0.0000017544,0.0000017533, +0.0000017528,0.0000017523,0.0000017518,0.0000017555,0.0000017672, +0.0000017729,0.0000017620,0.0000017451,0.0000017409,0.0000017517, +0.0000017684,0.0000017770,0.0000017769,0.0000017722,0.0000017653, +0.0000017606,0.0000017600,0.0000017605,0.0000017573,0.0000017476, +0.0000017393,0.0000017384,0.0000017426,0.0000017490,0.0000017567, +0.0000017643,0.0000017667,0.0000017630,0.0000017574,0.0000017541, +0.0000017534,0.0000017544,0.0000017554,0.0000017557,0.0000017560, +0.0000017569,0.0000017592,0.0000017633,0.0000017669,0.0000017700, +0.0000017750,0.0000017766,0.0000017715,0.0000017653,0.0000017583, +0.0000017506,0.0000017499,0.0000017614,0.0000017779,0.0000017837, +0.0000017873,0.0000018013,0.0000018178,0.0000018272,0.0000018286, +0.0000018257,0.0000018215,0.0000018189,0.0000018172,0.0000018165, +0.0000018176,0.0000018193,0.0000018194,0.0000018174,0.0000018154, +0.0000018165,0.0000018200,0.0000018244,0.0000018294,0.0000018344, +0.0000018382,0.0000018399,0.0000018402,0.0000018401,0.0000018396, +0.0000018387,0.0000018367,0.0000018335,0.0000018320,0.0000018337, +0.0000018356,0.0000018324,0.0000018264,0.0000018267,0.0000018380, +0.0000018532,0.0000018625,0.0000018655,0.0000018657,0.0000018654, +0.0000018647,0.0000018642,0.0000018633,0.0000018630,0.0000018634, +0.0000018623,0.0000018560,0.0000018498,0.0000018514,0.0000018578, +0.0000018566,0.0000018520,0.0000018548,0.0000018662,0.0000018717, +0.0000018644,0.0000018522,0.0000018482,0.0000018491,0.0000018460, +0.0000018480,0.0000018596,0.0000018680,0.0000018693,0.0000018711, +0.0000018762,0.0000018842,0.0000018934,0.0000019004,0.0000019034, +0.0000019043,0.0000019045,0.0000019041,0.0000019004,0.0000018926, +0.0000018858,0.0000018839,0.0000018846,0.0000018863,0.0000018907, +0.0000018961,0.0000019003,0.0000019028,0.0000019030,0.0000019025, +0.0000019018,0.0000019012,0.0000018996,0.0000018975,0.0000018948, +0.0000018922,0.0000018900,0.0000018880,0.0000018856,0.0000018829, +0.0000018813,0.0000018811,0.0000018824,0.0000018824,0.0000018783, +0.0000018707,0.0000018636,0.0000018599,0.0000018586,0.0000018568, +0.0000018538,0.0000018509,0.0000018489,0.0000018485,0.0000018491, +0.0000018500,0.0000018510,0.0000018519,0.0000018525,0.0000018532, +0.0000018540,0.0000018545,0.0000018543,0.0000018537,0.0000018533, +0.0000018532,0.0000018539,0.0000018554,0.0000018572,0.0000018593, +0.0000018621,0.0000018658,0.0000018700,0.0000018750,0.0000018807, +0.0000018866,0.0000018929,0.0000019002,0.0000019084,0.0000019163, +0.0000019221,0.0000019241,0.0000019233,0.0000019195,0.0000019133, +0.0000019069,0.0000019018,0.0000018984,0.0000018970,0.0000018974, +0.0000018991,0.0000019016,0.0000019038,0.0000019063,0.0000019089, +0.0000019111,0.0000019127,0.0000019140,0.0000019150,0.0000019155, +0.0000019154,0.0000019146,0.0000019138,0.0000019130,0.0000019121, +0.0000019110,0.0000019102,0.0000019096,0.0000019087,0.0000019076, +0.0000019065,0.0000019055,0.0000019044,0.0000019033,0.0000019026, +0.0000019017,0.0000019012,0.0000019015,0.0000019022,0.0000019030, +0.0000019037,0.0000019047,0.0000019059,0.0000019061,0.0000019062, +0.0000019063,0.0000019061,0.0000019054,0.0000019044,0.0000019037, +0.0000019038,0.0000019034,0.0000019032,0.0000019025,0.0000019019, +0.0000019010,0.0000019004,0.0000018997,0.0000018989,0.0000018983, +0.0000018975,0.0000018968,0.0000018960,0.0000018957,0.0000018954, +0.0000018948,0.0000018943,0.0000018929,0.0000018908,0.0000018889, +0.0000018872,0.0000018850,0.0000018825,0.0000018797,0.0000018765, +0.0000018734,0.0000018706,0.0000018679,0.0000018656,0.0000018634, +0.0000018613,0.0000018594,0.0000018577,0.0000018559,0.0000018533, +0.0000018506,0.0000018477,0.0000018448,0.0000018413,0.0000018373, +0.0000018332,0.0000018293,0.0000018265,0.0000018223,0.0000018177, +0.0000018138,0.0000018108,0.0000018090,0.0000018084,0.0000018092, +0.0000018115,0.0000018154,0.0000018206,0.0000018263,0.0000018317, +0.0000018364,0.0000018400,0.0000018427,0.0000018448,0.0000018462, +0.0000018462,0.0000018449,0.0000018432,0.0000018411,0.0000018390, +0.0000018378,0.0000018376,0.0000018373,0.0000018365,0.0000018356, +0.0000018345,0.0000018339,0.0000018338,0.0000018342,0.0000018350, +0.0000018364,0.0000018383,0.0000018401,0.0000018414,0.0000018422, +0.0000018424,0.0000018422,0.0000018423,0.0000018427,0.0000018429, +0.0000018433,0.0000018440,0.0000018449,0.0000018461,0.0000018478, +0.0000018497,0.0000018515,0.0000018525,0.0000018525,0.0000018515, +0.0000018501,0.0000018490,0.0000018478,0.0000018462,0.0000018445, +0.0000018431,0.0000018427,0.0000018430,0.0000018445,0.0000018477, +0.0000018526,0.0000018583,0.0000018640,0.0000018696,0.0000018752, +0.0000018803,0.0000018840,0.0000018866,0.0000018899,0.0000018945, +0.0000018984,0.0000018998,0.0000018980,0.0000018946,0.0000018905, +0.0000018883,0.0000018878,0.0000018877,0.0000018869,0.0000018839, +0.0000018788,0.0000018729,0.0000018673,0.0000018618,0.0000018562, +0.0000018514,0.0000018481,0.0000018465,0.0000018465,0.0000018467, +0.0000018446,0.0000018427,0.0000018392,0.0000018341,0.0000018290, +0.0000018250,0.0000018207,0.0000018168,0.0000018147,0.0000018135, +0.0000018134,0.0000018144,0.0000018156,0.0000018169,0.0000018179, +0.0000018183,0.0000018187,0.0000018191,0.0000018196,0.0000018200, +0.0000018205,0.0000018213,0.0000018223,0.0000018232,0.0000018244, +0.0000018260,0.0000018277,0.0000018294,0.0000018316,0.0000018341, +0.0000018368,0.0000018400,0.0000018434,0.0000018468,0.0000018501, +0.0000018525,0.0000018537,0.0000018540,0.0000018539,0.0000018532, +0.0000018527,0.0000018526,0.0000018527,0.0000018529,0.0000018543, +0.0000018574,0.0000018613,0.0000018636,0.0000018631,0.0000018588, +0.0000018516,0.0000018443,0.0000018392,0.0000018360,0.0000018331, +0.0000018296,0.0000018255,0.0000018214,0.0000018179,0.0000018151, +0.0000018131,0.0000018119,0.0000018114,0.0000018113,0.0000018117, +0.0000018122,0.0000018132,0.0000018156,0.0000018195,0.0000018233, +0.0000018261,0.0000018280,0.0000018297,0.0000018312,0.0000018330, +0.0000018354,0.0000018385,0.0000018410,0.0000018422,0.0000018425, +0.0000018425,0.0000018418,0.0000018399,0.0000018378,0.0000018361, +0.0000018349,0.0000018344,0.0000018348,0.0000018350,0.0000018342, +0.0000018319,0.0000018293,0.0000018282,0.0000018295,0.0000018328, +0.0000018354,0.0000018362,0.0000018364,0.0000018368,0.0000018379, +0.0000018405,0.0000018441,0.0000018473,0.0000018495,0.0000018512, +0.0000018526,0.0000018543,0.0000018563,0.0000018585,0.0000018603, +0.0000018608,0.0000018624,0.0000018674,0.0000018757,0.0000018847, +0.0000018922,0.0000018973,0.0000019005,0.0000019032,0.0000019059, +0.0000019074,0.0000019082,0.0000019079,0.0000019058,0.0000019014, +0.0000018966,0.0000018922,0.0000018883,0.0000018845,0.0000018795, +0.0000018727,0.0000018640,0.0000018551,0.0000018477,0.0000018419, +0.0000018384,0.0000018377,0.0000018388,0.0000018413,0.0000018444, +0.0000018463,0.0000018466,0.0000018473,0.0000018496,0.0000018518, +0.0000018528,0.0000018527,0.0000018518,0.0000018507,0.0000018498, +0.0000018491,0.0000018491,0.0000018497,0.0000018511,0.0000018525, +0.0000018535,0.0000018544,0.0000018556,0.0000018576,0.0000018600, +0.0000018620,0.0000018637,0.0000018654,0.0000018674,0.0000018694, +0.0000018713,0.0000018733,0.0000018752,0.0000018764,0.0000018763, +0.0000018757,0.0000018757,0.0000018759,0.0000018768,0.0000018783, +0.0000018795,0.0000018813,0.0000018835,0.0000018859,0.0000018885, +0.0000018913,0.0000018941,0.0000018965,0.0000018979,0.0000018994, +0.0000019002,0.0000019005,0.0000018999,0.0000018984,0.0000018957, +0.0000018926,0.0000018897,0.0000018873,0.0000018852,0.0000018837, +0.0000018826,0.0000018807,0.0000018776,0.0000018732,0.0000018674, +0.0000018598,0.0000018503,0.0000018407,0.0000018336,0.0000018305, +0.0000018319,0.0000018396,0.0000018531,0.0000018696,0.0000018856, +0.0000018982,0.0000019052,0.0000019071,0.0000019073,0.0000019070, +0.0000019069,0.0000019072,0.0000019078,0.0000019081,0.0000019082, +0.0000019080,0.0000019070,0.0000019055,0.0000019045,0.0000019040, +0.0000019037,0.0000019031,0.0000019019,0.0000019002,0.0000018986, +0.0000018969,0.0000018945,0.0000018922,0.0000018905,0.0000018893, +0.0000018882,0.0000018868,0.0000018855,0.0000018849,0.0000018840, +0.0000018824,0.0000018802,0.0000018780,0.0000018760,0.0000018746, +0.0000018734,0.0000018724,0.0000018720,0.0000018720,0.0000018722, +0.0000018727,0.0000018736,0.0000018752,0.0000018780,0.0000018807, +0.0000018824,0.0000018825,0.0000018811,0.0000018787,0.0000018753, +0.0000018705,0.0000018644,0.0000018590,0.0000018538,0.0000018492, +0.0000018454,0.0000018430,0.0000018426,0.0000018437,0.0000018464, +0.0000018501,0.0000018544,0.0000018586,0.0000018619,0.0000018644, +0.0000018662,0.0000018679,0.0000018707,0.0000018738,0.0000018766, +0.0000018794,0.0000018815,0.0000018825,0.0000018822,0.0000018815, +0.0000018803,0.0000018785,0.0000018762,0.0000018737,0.0000018713, +0.0000018692,0.0000018678,0.0000018671,0.0000018666,0.0000018658, +0.0000018647,0.0000018638,0.0000018621,0.0000018600,0.0000018579, +0.0000018573,0.0000018587,0.0000018619,0.0000018666,0.0000018730, +0.0000018802,0.0000018861,0.0000018902,0.0000018933,0.0000018954, +0.0000018963,0.0000018949,0.0000018933,0.0000018913,0.0000018899, +0.0000018899,0.0000018914,0.0000018942,0.0000018965,0.0000018987, +0.0000018986,0.0000018969,0.0000018947,0.0000018931,0.0000018931, +0.0000018938,0.0000018943,0.0000018949,0.0000018966,0.0000018984, +0.0000019000,0.0000019018,0.0000019039,0.0000019055,0.0000019057, +0.0000019041,0.0000019021,0.0000018993,0.0000018970,0.0000018960, +0.0000018938,0.0000018883,0.0000018806,0.0000018718,0.0000018621, +0.0000018510,0.0000018394,0.0000018303,0.0000018244,0.0000018222, +0.0000018228,0.0000018239,0.0000018227,0.0000018178,0.0000018099, +0.0000018023,0.0000017981,0.0000017966,0.0000017966,0.0000017956, +0.0000017936,0.0000017920,0.0000017922,0.0000017949,0.0000017977, +0.0000018016,0.0000018058,0.0000018087,0.0000018103,0.0000018111, +0.0000018115,0.0000018116,0.0000018096,0.0000018055,0.0000018015, +0.0000018001,0.0000018001,0.0000018003,0.0000017997,0.0000017988, +0.0000017978,0.0000017946,0.0000017894,0.0000017843,0.0000017833, +0.0000017851,0.0000017880,0.0000017895,0.0000017888,0.0000017874, +0.0000017859,0.0000017835,0.0000017805,0.0000017790,0.0000017794, +0.0000017844,0.0000017902,0.0000017962,0.0000018023,0.0000018075, +0.0000018095,0.0000018092,0.0000018060,0.0000018022,0.0000017990, +0.0000017952,0.0000017917,0.0000017898,0.0000017895,0.0000017903, +0.0000017916,0.0000017927,0.0000017937,0.0000017954,0.0000017978, +0.0000017997,0.0000018012,0.0000018012,0.0000018007,0.0000018014, +0.0000018032,0.0000018065,0.0000018104,0.0000018133,0.0000018132, +0.0000018107,0.0000018075,0.0000018025,0.0000017969,0.0000017895, +0.0000017800,0.0000017709,0.0000017635,0.0000017593,0.0000017570, +0.0000017535,0.0000017486,0.0000017438,0.0000017397,0.0000017342, +0.0000017259,0.0000017181,0.0000017149,0.0000017154,0.0000017208, +0.0000017346,0.0000017564,0.0000017836,0.0000018119,0.0000018368, +0.0000018554,0.0000018672,0.0000018744,0.0000018806,0.0000018880, +0.0000018957,0.0000018999,0.0000019024,0.0000018994,0.0000018928, +0.0000018842,0.0000018764,0.0000018702,0.0000018676,0.0000018658, +0.0000018662,0.0000018668,0.0000018674,0.0000018674,0.0000018665, +0.0000018652,0.0000018650,0.0000018659,0.0000018673,0.0000018687, +0.0000018701,0.0000018705,0.0000018687,0.0000018666,0.0000018658, +0.0000018661,0.0000018663,0.0000018659,0.0000018655,0.0000018659, +0.0000018671,0.0000018679,0.0000018674,0.0000018660,0.0000018646, +0.0000018635,0.0000018620,0.0000018599,0.0000018582,0.0000018578, +0.0000018584,0.0000018594,0.0000018600,0.0000018593,0.0000018568, +0.0000018528,0.0000018479,0.0000018419,0.0000018363,0.0000018318, +0.0000018286,0.0000018262,0.0000018250,0.0000018246,0.0000018246, +0.0000018247,0.0000018246,0.0000018244,0.0000018234,0.0000018209, +0.0000018175,0.0000018142,0.0000018127,0.0000018132,0.0000018150, +0.0000018171,0.0000018187,0.0000018199,0.0000018209,0.0000018213, +0.0000018207,0.0000018187,0.0000018157,0.0000018127,0.0000018111, +0.0000018102,0.0000018083,0.0000018066,0.0000018065,0.0000018062, +0.0000018039,0.0000018008,0.0000017989,0.0000017982,0.0000017969, +0.0000017942,0.0000017933,0.0000017963,0.0000018023,0.0000018075, +0.0000018112,0.0000018136,0.0000018145,0.0000018138,0.0000018118, +0.0000018094,0.0000018069,0.0000018032,0.0000017993,0.0000017975, +0.0000017996,0.0000018044,0.0000018098,0.0000018143,0.0000018170, +0.0000018179,0.0000018175,0.0000018170,0.0000018163,0.0000018156, +0.0000018159,0.0000018157,0.0000018154,0.0000018167,0.0000018207, +0.0000018272,0.0000018355,0.0000018433,0.0000018491,0.0000018524, +0.0000018540,0.0000018547,0.0000018551,0.0000018561,0.0000018573, +0.0000018567,0.0000018551,0.0000018526,0.0000018500,0.0000018481, +0.0000018470,0.0000018465,0.0000018461,0.0000018458,0.0000018458, +0.0000018464,0.0000018473,0.0000018483,0.0000018502,0.0000018512, +0.0000018508,0.0000018481,0.0000018434,0.0000018387,0.0000018344, +0.0000018289,0.0000018210,0.0000018108,0.0000017998,0.0000017902, +0.0000017828,0.0000017784,0.0000017767,0.0000017759,0.0000017755, +0.0000017748,0.0000017724,0.0000017681,0.0000017621,0.0000017551, +0.0000017482,0.0000017438,0.0000017413,0.0000017452,0.0000017490, +0.0000017551,0.0000017590,0.0000017600,0.0000017603,0.0000017591, +0.0000017559,0.0000017506,0.0000017437,0.0000017380,0.0000017347, +0.0000017332,0.0000017332,0.0000017310,0.0000017268,0.0000017246, +0.0000017247,0.0000017245,0.0000017227,0.0000017206,0.0000017204, +0.0000017218,0.0000017238,0.0000017266,0.0000017314,0.0000017383, +0.0000017447,0.0000017485,0.0000017496,0.0000017494,0.0000017486, +0.0000017467,0.0000017443,0.0000017449,0.0000017475,0.0000017538, +0.0000017643,0.0000017748,0.0000017800,0.0000017808,0.0000017797, +0.0000017752,0.0000017724,0.0000017736,0.0000017736,0.0000017709, +0.0000017652,0.0000017576,0.0000017541,0.0000017555,0.0000017619, +0.0000017695,0.0000017732,0.0000017720,0.0000017702,0.0000017708, +0.0000017714,0.0000017670,0.0000017557,0.0000017471,0.0000017429, +0.0000017491,0.0000017649,0.0000017712,0.0000017673,0.0000017648, +0.0000017716,0.0000017871,0.0000017904,0.0000018055,0.0000018248, +0.0000018238,0.0000018099,0.0000017875,0.0000017847,0.0000017880, +0.0000017943,0.0000017857,0.0000017750,0.0000017796,0.0000017784, +0.0000017728,0.0000017683,0.0000017642,0.0000017581,0.0000017514, +0.0000017520,0.0000017564,0.0000017568,0.0000017558,0.0000017548, +0.0000017530,0.0000017516,0.0000017513,0.0000017514,0.0000017537, +0.0000017644,0.0000017730,0.0000017661,0.0000017479,0.0000017404, +0.0000017475,0.0000017637,0.0000017748,0.0000017765,0.0000017732, +0.0000017659,0.0000017600,0.0000017586,0.0000017599,0.0000017582, +0.0000017501,0.0000017412,0.0000017387,0.0000017412,0.0000017465, +0.0000017534,0.0000017621,0.0000017670,0.0000017649,0.0000017593, +0.0000017554,0.0000017537,0.0000017539,0.0000017548,0.0000017556, +0.0000017568,0.0000017601,0.0000017643,0.0000017674,0.0000017715, +0.0000017771,0.0000017773,0.0000017712,0.0000017639,0.0000017558, +0.0000017513,0.0000017571,0.0000017740,0.0000017848,0.0000017871, +0.0000017986,0.0000018171,0.0000018285,0.0000018291,0.0000018231, +0.0000018162,0.0000018119,0.0000018086,0.0000018067,0.0000018069, +0.0000018085,0.0000018094,0.0000018100,0.0000018113,0.0000018137, +0.0000018174,0.0000018225,0.0000018275,0.0000018316,0.0000018352, +0.0000018383,0.0000018404,0.0000018413,0.0000018414,0.0000018414, +0.0000018406,0.0000018380,0.0000018338,0.0000018303,0.0000018303, +0.0000018340,0.0000018353,0.0000018302,0.0000018257,0.0000018321, +0.0000018470,0.0000018586,0.0000018631,0.0000018640,0.0000018639, +0.0000018638,0.0000018638,0.0000018638,0.0000018640,0.0000018651, +0.0000018647,0.0000018589,0.0000018509,0.0000018513,0.0000018563, +0.0000018548,0.0000018516,0.0000018588,0.0000018689,0.0000018678, +0.0000018558,0.0000018468,0.0000018462,0.0000018453,0.0000018475, +0.0000018596,0.0000018673,0.0000018679,0.0000018685,0.0000018739, +0.0000018824,0.0000018928,0.0000019012,0.0000019039,0.0000019043, +0.0000019037,0.0000019042,0.0000019055,0.0000019037,0.0000018953, +0.0000018850,0.0000018819,0.0000018821,0.0000018826,0.0000018860, +0.0000018926,0.0000018986,0.0000019021,0.0000019028,0.0000019019, +0.0000019011,0.0000019002,0.0000018992,0.0000018980,0.0000018965, +0.0000018953,0.0000018940,0.0000018924,0.0000018903,0.0000018874, +0.0000018846,0.0000018824,0.0000018819,0.0000018824,0.0000018813, +0.0000018778,0.0000018716,0.0000018655,0.0000018620,0.0000018606, +0.0000018595,0.0000018579,0.0000018563,0.0000018553,0.0000018549, +0.0000018549,0.0000018553,0.0000018559,0.0000018566,0.0000018572, +0.0000018576,0.0000018578,0.0000018577,0.0000018577,0.0000018584, +0.0000018602,0.0000018632,0.0000018672,0.0000018716,0.0000018761, +0.0000018807,0.0000018848,0.0000018886,0.0000018934,0.0000018996, +0.0000019070,0.0000019149,0.0000019215,0.0000019235,0.0000019218, +0.0000019174,0.0000019104,0.0000019039,0.0000018995,0.0000018981, +0.0000018991,0.0000019019,0.0000019062,0.0000019113,0.0000019163, +0.0000019209,0.0000019248,0.0000019277,0.0000019297,0.0000019311, +0.0000019320,0.0000019327,0.0000019330,0.0000019328,0.0000019324, +0.0000019316,0.0000019306,0.0000019295,0.0000019284,0.0000019273, +0.0000019265,0.0000019261,0.0000019257,0.0000019251,0.0000019243, +0.0000019234,0.0000019224,0.0000019213,0.0000019201,0.0000019191, +0.0000019186,0.0000019188,0.0000019197,0.0000019208,0.0000019218, +0.0000019225,0.0000019232,0.0000019238,0.0000019233,0.0000019231, +0.0000019230,0.0000019224,0.0000019208,0.0000019199,0.0000019199, +0.0000019196,0.0000019194,0.0000019190,0.0000019184,0.0000019177, +0.0000019173,0.0000019168,0.0000019162,0.0000019157,0.0000019156, +0.0000019156,0.0000019158,0.0000019164,0.0000019168,0.0000019175, +0.0000019179,0.0000019178,0.0000019173,0.0000019166,0.0000019161, +0.0000019149,0.0000019134,0.0000019119,0.0000019102,0.0000019084, +0.0000019072,0.0000019065,0.0000019060,0.0000019058,0.0000019058, +0.0000019061,0.0000019063,0.0000019063,0.0000019059,0.0000019059, +0.0000019053,0.0000019036,0.0000019004,0.0000018959,0.0000018903, +0.0000018838,0.0000018759,0.0000018667,0.0000018570,0.0000018472, +0.0000018375,0.0000018285,0.0000018207,0.0000018145,0.0000018109, +0.0000018103,0.0000018104,0.0000018112,0.0000018131,0.0000018159, +0.0000018192,0.0000018231,0.0000018278,0.0000018333,0.0000018386, +0.0000018423,0.0000018440,0.0000018443,0.0000018440,0.0000018427, +0.0000018409,0.0000018394,0.0000018379,0.0000018363,0.0000018347, +0.0000018334,0.0000018323,0.0000018316,0.0000018314,0.0000018320, +0.0000018334,0.0000018350,0.0000018367,0.0000018383,0.0000018395, +0.0000018402,0.0000018407,0.0000018415,0.0000018424,0.0000018428, +0.0000018428,0.0000018425,0.0000018425,0.0000018425,0.0000018428, +0.0000018436,0.0000018448,0.0000018457,0.0000018457,0.0000018452, +0.0000018446,0.0000018438,0.0000018427,0.0000018416,0.0000018406, +0.0000018399,0.0000018396,0.0000018394,0.0000018391,0.0000018394, +0.0000018410,0.0000018439,0.0000018477,0.0000018517,0.0000018561, +0.0000018613,0.0000018673,0.0000018733,0.0000018791,0.0000018848, +0.0000018906,0.0000018961,0.0000018997,0.0000019003,0.0000018977, +0.0000018956,0.0000018921,0.0000018897,0.0000018882,0.0000018872, +0.0000018856,0.0000018841,0.0000018821,0.0000018779,0.0000018734, +0.0000018685,0.0000018632,0.0000018577,0.0000018525,0.0000018486, +0.0000018462,0.0000018450,0.0000018441,0.0000018425,0.0000018415, +0.0000018393,0.0000018362,0.0000018334,0.0000018312,0.0000018287, +0.0000018266,0.0000018256,0.0000018258,0.0000018262,0.0000018266, +0.0000018272,0.0000018277,0.0000018279,0.0000018282,0.0000018289, +0.0000018297,0.0000018306,0.0000018317,0.0000018333,0.0000018353, +0.0000018375,0.0000018398,0.0000018424,0.0000018452,0.0000018475, +0.0000018494,0.0000018511,0.0000018522,0.0000018525,0.0000018527, +0.0000018520,0.0000018514,0.0000018509,0.0000018513,0.0000018523, +0.0000018537,0.0000018567,0.0000018608,0.0000018647,0.0000018663, +0.0000018651,0.0000018606,0.0000018545,0.0000018489,0.0000018447, +0.0000018413,0.0000018377,0.0000018334,0.0000018288,0.0000018243, +0.0000018200,0.0000018158,0.0000018118,0.0000018084,0.0000018052, +0.0000018026,0.0000018011,0.0000018010,0.0000018020,0.0000018035, +0.0000018050,0.0000018070,0.0000018096,0.0000018120,0.0000018138, +0.0000018163,0.0000018200,0.0000018245,0.0000018291,0.0000018337, +0.0000018380,0.0000018413,0.0000018431,0.0000018441,0.0000018446, +0.0000018443,0.0000018429,0.0000018413,0.0000018398,0.0000018390, +0.0000018389,0.0000018394,0.0000018395,0.0000018384,0.0000018363, +0.0000018342,0.0000018337,0.0000018353,0.0000018381,0.0000018397, +0.0000018401,0.0000018404,0.0000018411,0.0000018430,0.0000018464, +0.0000018500,0.0000018529,0.0000018551,0.0000018569,0.0000018583, +0.0000018596,0.0000018613,0.0000018631,0.0000018643,0.0000018672, +0.0000018746,0.0000018853,0.0000018945,0.0000018996,0.0000019008, +0.0000019031,0.0000019038,0.0000019062,0.0000019087,0.0000019117, +0.0000019136,0.0000019159,0.0000019153,0.0000019126,0.0000019081, +0.0000019024,0.0000018959,0.0000018884,0.0000018807,0.0000018725, +0.0000018626,0.0000018525,0.0000018440,0.0000018386,0.0000018373, +0.0000018385,0.0000018411,0.0000018442,0.0000018469,0.0000018476, +0.0000018470,0.0000018471,0.0000018487,0.0000018504,0.0000018515, +0.0000018516,0.0000018510,0.0000018505,0.0000018500,0.0000018494, +0.0000018492,0.0000018496,0.0000018498,0.0000018503,0.0000018507, +0.0000018510,0.0000018516,0.0000018530,0.0000018550,0.0000018571, +0.0000018588,0.0000018604,0.0000018628,0.0000018655,0.0000018681, +0.0000018709,0.0000018732,0.0000018743,0.0000018746,0.0000018743, +0.0000018742,0.0000018747,0.0000018763,0.0000018785,0.0000018804, +0.0000018825,0.0000018848,0.0000018870,0.0000018892,0.0000018918, +0.0000018942,0.0000018961,0.0000018972,0.0000018983,0.0000018989, +0.0000018988,0.0000018974,0.0000018951,0.0000018929,0.0000018912, +0.0000018900,0.0000018895,0.0000018892,0.0000018888,0.0000018885, +0.0000018878,0.0000018859,0.0000018825,0.0000018778,0.0000018715, +0.0000018631,0.0000018523,0.0000018411,0.0000018326,0.0000018290, +0.0000018299,0.0000018370,0.0000018497,0.0000018655,0.0000018815, +0.0000018945,0.0000019030,0.0000019074,0.0000019090,0.0000019103, +0.0000019113,0.0000019120,0.0000019122,0.0000019120,0.0000019115, +0.0000019108,0.0000019101,0.0000019101,0.0000019107,0.0000019119, +0.0000019133,0.0000019141,0.0000019141,0.0000019138,0.0000019133, +0.0000019119,0.0000019099,0.0000019082,0.0000019065,0.0000019045, +0.0000019024,0.0000019009,0.0000018988,0.0000018960,0.0000018931, +0.0000018900,0.0000018867,0.0000018840,0.0000018819,0.0000018796, +0.0000018771,0.0000018753,0.0000018746,0.0000018743,0.0000018748, +0.0000018755,0.0000018775,0.0000018807,0.0000018838,0.0000018864, +0.0000018877,0.0000018879,0.0000018874,0.0000018860,0.0000018827, +0.0000018776,0.0000018721,0.0000018661,0.0000018599,0.0000018541, +0.0000018494,0.0000018461,0.0000018445,0.0000018441,0.0000018452, +0.0000018479,0.0000018506,0.0000018535,0.0000018569,0.0000018600, +0.0000018633,0.0000018673,0.0000018719,0.0000018761,0.0000018797, +0.0000018822,0.0000018839,0.0000018859,0.0000018870,0.0000018869, +0.0000018859,0.0000018842,0.0000018819,0.0000018795,0.0000018773, +0.0000018752,0.0000018732,0.0000018717,0.0000018703,0.0000018686, +0.0000018661,0.0000018630,0.0000018596,0.0000018560,0.0000018553, +0.0000018551,0.0000018556,0.0000018580,0.0000018629,0.0000018692, +0.0000018745,0.0000018788,0.0000018827,0.0000018860,0.0000018888, +0.0000018906,0.0000018907,0.0000018897,0.0000018890,0.0000018890, +0.0000018901,0.0000018926,0.0000018958,0.0000018984,0.0000018993, +0.0000018986,0.0000018966,0.0000018946,0.0000018938,0.0000018941, +0.0000018950,0.0000018968,0.0000018989,0.0000019011,0.0000019031, +0.0000019048,0.0000019059,0.0000019057,0.0000019041,0.0000019016, +0.0000018988,0.0000018966,0.0000018966,0.0000018964,0.0000018963, +0.0000018944,0.0000018901,0.0000018845,0.0000018774,0.0000018687, +0.0000018603,0.0000018520,0.0000018448,0.0000018393,0.0000018357, +0.0000018330,0.0000018293,0.0000018228,0.0000018152,0.0000018100, +0.0000018079,0.0000018091,0.0000018099,0.0000018089,0.0000018064, +0.0000018037,0.0000018019,0.0000018009,0.0000018028,0.0000018046, +0.0000018076,0.0000018100,0.0000018113,0.0000018117,0.0000018113, +0.0000018098,0.0000018062,0.0000018022,0.0000018001,0.0000017989, +0.0000017986,0.0000017994,0.0000018010,0.0000018028,0.0000018014, +0.0000017972,0.0000017932,0.0000017915,0.0000017915,0.0000017928, +0.0000017943,0.0000017947,0.0000017944,0.0000017935,0.0000017907, +0.0000017867,0.0000017835,0.0000017825,0.0000017858,0.0000017897, +0.0000017943,0.0000017994,0.0000018050,0.0000018089,0.0000018098, +0.0000018087,0.0000018061,0.0000018033,0.0000017991,0.0000017941, +0.0000017901,0.0000017882,0.0000017883,0.0000017892,0.0000017908, +0.0000017931,0.0000017959,0.0000017985,0.0000018002,0.0000018012, +0.0000018015,0.0000018017,0.0000018032,0.0000018052,0.0000018082, +0.0000018112,0.0000018141,0.0000018148,0.0000018142,0.0000018135, +0.0000018119,0.0000018099,0.0000018061,0.0000017976,0.0000017850, +0.0000017727,0.0000017648,0.0000017610,0.0000017578,0.0000017533, +0.0000017480,0.0000017434,0.0000017379,0.0000017307,0.0000017238, +0.0000017188,0.0000017161,0.0000017177,0.0000017222,0.0000017320, +0.0000017485,0.0000017702,0.0000017954,0.0000018209,0.0000018431, +0.0000018594,0.0000018703,0.0000018778,0.0000018848,0.0000018923, +0.0000018993,0.0000019026,0.0000019030,0.0000018986,0.0000018908, +0.0000018817,0.0000018729,0.0000018652,0.0000018607,0.0000018580, +0.0000018579,0.0000018590,0.0000018612,0.0000018645,0.0000018662, +0.0000018677,0.0000018688,0.0000018695,0.0000018694,0.0000018679, +0.0000018661,0.0000018647,0.0000018637,0.0000018628,0.0000018616, +0.0000018606,0.0000018607,0.0000018622,0.0000018641,0.0000018651, +0.0000018655,0.0000018663,0.0000018673,0.0000018676,0.0000018659, +0.0000018628,0.0000018602,0.0000018593,0.0000018599,0.0000018607, +0.0000018604,0.0000018583,0.0000018542,0.0000018484,0.0000018420, +0.0000018364,0.0000018319,0.0000018286,0.0000018264,0.0000018253, +0.0000018248,0.0000018246,0.0000018248,0.0000018246,0.0000018238, +0.0000018222,0.0000018193,0.0000018153,0.0000018108,0.0000018076, +0.0000018062,0.0000018063,0.0000018075,0.0000018096,0.0000018122, +0.0000018147,0.0000018169,0.0000018183,0.0000018184,0.0000018169, +0.0000018143,0.0000018113,0.0000018095,0.0000018085,0.0000018065, +0.0000018052,0.0000018055,0.0000018051,0.0000018022,0.0000017983, +0.0000017958,0.0000017953,0.0000017947,0.0000017935,0.0000017939, +0.0000017979,0.0000018032,0.0000018075,0.0000018102,0.0000018119, +0.0000018128,0.0000018126,0.0000018126,0.0000018121,0.0000018106, +0.0000018077,0.0000018044,0.0000018033,0.0000018051,0.0000018089, +0.0000018131,0.0000018166,0.0000018188,0.0000018200,0.0000018206, +0.0000018207,0.0000018202,0.0000018197,0.0000018188,0.0000018170, +0.0000018157,0.0000018161,0.0000018182,0.0000018229,0.0000018300, +0.0000018379,0.0000018448,0.0000018497,0.0000018521,0.0000018531, +0.0000018539,0.0000018548,0.0000018550,0.0000018550,0.0000018542, +0.0000018535,0.0000018525,0.0000018527,0.0000018535,0.0000018531, +0.0000018514,0.0000018494,0.0000018480,0.0000018474,0.0000018483, +0.0000018503,0.0000018522,0.0000018525,0.0000018522,0.0000018506, +0.0000018492,0.0000018480,0.0000018459,0.0000018421,0.0000018360, +0.0000018280,0.0000018187,0.0000018087,0.0000018000,0.0000017930, +0.0000017874,0.0000017839,0.0000017822,0.0000017812,0.0000017800, +0.0000017780,0.0000017746,0.0000017690,0.0000017614,0.0000017545, +0.0000017505,0.0000017484,0.0000017528,0.0000017557,0.0000017587, +0.0000017622,0.0000017646,0.0000017658,0.0000017638,0.0000017593, +0.0000017528,0.0000017468,0.0000017430,0.0000017416,0.0000017387, +0.0000017345,0.0000017319,0.0000017305,0.0000017281,0.0000017241, +0.0000017211,0.0000017204,0.0000017230,0.0000017274,0.0000017320, +0.0000017378,0.0000017442,0.0000017486,0.0000017499,0.0000017495, +0.0000017484,0.0000017466,0.0000017456,0.0000017452,0.0000017473, +0.0000017525,0.0000017618,0.0000017743,0.0000017833,0.0000017845, +0.0000017826,0.0000017794,0.0000017749,0.0000017738,0.0000017757, +0.0000017743,0.0000017700,0.0000017638,0.0000017575,0.0000017563, +0.0000017585,0.0000017640,0.0000017707,0.0000017735,0.0000017721, +0.0000017704,0.0000017708,0.0000017716,0.0000017692,0.0000017600, +0.0000017512,0.0000017450,0.0000017457,0.0000017580,0.0000017679, +0.0000017656,0.0000017642,0.0000017707,0.0000017861,0.0000017909, +0.0000018100,0.0000018251,0.0000018239,0.0000018098,0.0000017874, +0.0000017851,0.0000017884,0.0000017951,0.0000017854,0.0000017748, +0.0000017795,0.0000017782,0.0000017724,0.0000017679,0.0000017645, +0.0000017576,0.0000017513,0.0000017528,0.0000017570,0.0000017575, +0.0000017577,0.0000017573,0.0000017548,0.0000017520,0.0000017506, +0.0000017507,0.0000017526,0.0000017611,0.0000017733,0.0000017702, +0.0000017514,0.0000017401,0.0000017439,0.0000017594,0.0000017728, +0.0000017760,0.0000017737,0.0000017664,0.0000017596,0.0000017578, +0.0000017591,0.0000017584,0.0000017521,0.0000017441,0.0000017406, +0.0000017412,0.0000017447,0.0000017505,0.0000017588,0.0000017661, +0.0000017668,0.0000017622,0.0000017580,0.0000017561,0.0000017557, +0.0000017564,0.0000017587,0.0000017622,0.0000017652,0.0000017684, +0.0000017747,0.0000017794,0.0000017777,0.0000017703,0.0000017623, +0.0000017551,0.0000017551,0.0000017675,0.0000017830,0.0000017883, +0.0000017959,0.0000018142,0.0000018290,0.0000018303,0.0000018209, +0.0000018112,0.0000018072,0.0000018034,0.0000018000,0.0000017993, +0.0000018006,0.0000018024,0.0000018046,0.0000018078,0.0000018113, +0.0000018151,0.0000018195,0.0000018241,0.0000018282,0.0000018319, +0.0000018353,0.0000018418,0.0000018439,0.0000018452,0.0000018459, +0.0000018464,0.0000018459,0.0000018437,0.0000018390,0.0000018331, +0.0000018295,0.0000018310,0.0000018351,0.0000018341,0.0000018275, +0.0000018278,0.0000018377,0.0000018498,0.0000018563,0.0000018587, +0.0000018597,0.0000018604,0.0000018611,0.0000018618,0.0000018633, +0.0000018657,0.0000018664,0.0000018613,0.0000018528,0.0000018517, +0.0000018551,0.0000018534,0.0000018535,0.0000018624,0.0000018675, +0.0000018605,0.0000018487,0.0000018444,0.0000018436,0.0000018452, +0.0000018564,0.0000018658,0.0000018657,0.0000018648,0.0000018675, +0.0000018723,0.0000018804,0.0000018910,0.0000019001,0.0000019041, +0.0000019041,0.0000019028,0.0000019023,0.0000019027,0.0000018995, +0.0000018899,0.0000018808,0.0000018794,0.0000018810,0.0000018808, +0.0000018826,0.0000018889,0.0000018961,0.0000019015,0.0000019041, +0.0000019037,0.0000019020,0.0000019000,0.0000018982,0.0000018969, +0.0000018954,0.0000018943,0.0000018932,0.0000018921,0.0000018911, +0.0000018898,0.0000018883,0.0000018864,0.0000018844,0.0000018829, +0.0000018823,0.0000018818,0.0000018791,0.0000018738,0.0000018686, +0.0000018651,0.0000018633,0.0000018626,0.0000018620,0.0000018616, +0.0000018613,0.0000018612,0.0000018614,0.0000018619,0.0000018623, +0.0000018625,0.0000018627,0.0000018633,0.0000018647,0.0000018672, +0.0000018711,0.0000018759,0.0000018812,0.0000018857,0.0000018892, +0.0000018921,0.0000018951,0.0000018995,0.0000019059,0.0000019135, +0.0000019198,0.0000019220,0.0000019207,0.0000019159,0.0000019083, +0.0000019021,0.0000018991,0.0000018993,0.0000019025,0.0000019087, +0.0000019165,0.0000019241,0.0000019307,0.0000019358,0.0000019400, +0.0000019435,0.0000019463,0.0000019485,0.0000019501,0.0000019513, +0.0000019521,0.0000019528,0.0000019531,0.0000019528,0.0000019525, +0.0000019517,0.0000019506,0.0000019495,0.0000019481,0.0000019470, +0.0000019463,0.0000019457,0.0000019447,0.0000019434,0.0000019419, +0.0000019405,0.0000019390,0.0000019372,0.0000019353,0.0000019334, +0.0000019319,0.0000019311,0.0000019313,0.0000019319,0.0000019325, +0.0000019330,0.0000019334,0.0000019337,0.0000019336,0.0000019334, +0.0000019336,0.0000019335,0.0000019328,0.0000019328,0.0000019332, +0.0000019333,0.0000019336,0.0000019342,0.0000019345,0.0000019347, +0.0000019350,0.0000019353,0.0000019353,0.0000019351,0.0000019347, +0.0000019346,0.0000019347,0.0000019354,0.0000019362,0.0000019372, +0.0000019383,0.0000019389,0.0000019392,0.0000019396,0.0000019398, +0.0000019394,0.0000019384,0.0000019375,0.0000019364,0.0000019347, +0.0000019329,0.0000019316,0.0000019304,0.0000019294,0.0000019286, +0.0000019281,0.0000019275,0.0000019269,0.0000019264,0.0000019268, +0.0000019269,0.0000019267,0.0000019260,0.0000019251,0.0000019237, +0.0000019219,0.0000019194,0.0000019161,0.0000019120,0.0000019070, +0.0000019007,0.0000018932,0.0000018851,0.0000018767,0.0000018681, +0.0000018597,0.0000018516,0.0000018436,0.0000018360,0.0000018295, +0.0000018247,0.0000018221,0.0000018204,0.0000018197,0.0000018210, +0.0000018235,0.0000018261,0.0000018297,0.0000018335,0.0000018367, +0.0000018387,0.0000018393,0.0000018388,0.0000018378,0.0000018364, +0.0000018348,0.0000018335,0.0000018324,0.0000018316,0.0000018317, +0.0000018325,0.0000018335,0.0000018345,0.0000018359,0.0000018374, +0.0000018387,0.0000018397,0.0000018406,0.0000018416,0.0000018426, +0.0000018430,0.0000018432,0.0000018430,0.0000018425,0.0000018412, +0.0000018399,0.0000018394,0.0000018393,0.0000018392,0.0000018389, +0.0000018386,0.0000018385,0.0000018381,0.0000018374,0.0000018368, +0.0000018365,0.0000018367,0.0000018371,0.0000018376,0.0000018379, +0.0000018376,0.0000018369,0.0000018371,0.0000018387,0.0000018409, +0.0000018438,0.0000018476,0.0000018523,0.0000018583,0.0000018651, +0.0000018714,0.0000018769,0.0000018825,0.0000018889,0.0000018947, +0.0000018986,0.0000018996,0.0000018969,0.0000018945,0.0000018906, +0.0000018875,0.0000018852,0.0000018838,0.0000018833,0.0000018828, +0.0000018817,0.0000018803,0.0000018780,0.0000018738,0.0000018686, +0.0000018631,0.0000018573,0.0000018521,0.0000018487,0.0000018471, +0.0000018467,0.0000018464,0.0000018456,0.0000018440,0.0000018418, +0.0000018397,0.0000018382,0.0000018376,0.0000018372,0.0000018370, +0.0000018374,0.0000018376,0.0000018375,0.0000018378,0.0000018385, +0.0000018395,0.0000018406,0.0000018418,0.0000018430,0.0000018443, +0.0000018454,0.0000018468,0.0000018480,0.0000018484,0.0000018489, +0.0000018491,0.0000018493,0.0000018494,0.0000018493,0.0000018496, +0.0000018505,0.0000018513,0.0000018535,0.0000018565,0.0000018601, +0.0000018637,0.0000018665,0.0000018673,0.0000018652,0.0000018604, +0.0000018549,0.0000018505,0.0000018470,0.0000018436,0.0000018397, +0.0000018351,0.0000018304,0.0000018260,0.0000018222,0.0000018183, +0.0000018139,0.0000018091,0.0000018042,0.0000018000,0.0000017968, +0.0000017946,0.0000017939,0.0000017947,0.0000017960,0.0000017969, +0.0000017970,0.0000017977,0.0000017999,0.0000018034,0.0000018077, +0.0000018126,0.0000018183,0.0000018243,0.0000018297,0.0000018344, +0.0000018388,0.0000018423,0.0000018445,0.0000018457,0.0000018463, +0.0000018462,0.0000018452,0.0000018435,0.0000018420,0.0000018419, +0.0000018425,0.0000018433,0.0000018433,0.0000018422,0.0000018401, +0.0000018383,0.0000018382,0.0000018399,0.0000018419,0.0000018428, +0.0000018430,0.0000018433,0.0000018443,0.0000018468,0.0000018502, +0.0000018534,0.0000018560,0.0000018582,0.0000018599,0.0000018613, +0.0000018627,0.0000018649,0.0000018681,0.0000018739,0.0000018829, +0.0000018926,0.0000018981,0.0000018996,0.0000018982,0.0000018977, +0.0000018985,0.0000019003,0.0000019027,0.0000019062,0.0000019102, +0.0000019141,0.0000019167,0.0000019181,0.0000019181,0.0000019156, +0.0000019107,0.0000019032,0.0000018938,0.0000018842,0.0000018738, +0.0000018620,0.0000018507,0.0000018420,0.0000018379,0.0000018378, +0.0000018399,0.0000018432,0.0000018471,0.0000018502,0.0000018510, +0.0000018505,0.0000018502,0.0000018503,0.0000018509,0.0000018512, +0.0000018512,0.0000018513,0.0000018515,0.0000018514,0.0000018508, +0.0000018504,0.0000018499,0.0000018495,0.0000018490,0.0000018487, +0.0000018483,0.0000018483,0.0000018493,0.0000018517,0.0000018545, +0.0000018567,0.0000018589,0.0000018617,0.0000018643,0.0000018671, +0.0000018699,0.0000018715,0.0000018722,0.0000018724,0.0000018720, +0.0000018716,0.0000018724,0.0000018743,0.0000018763,0.0000018783, +0.0000018805,0.0000018828,0.0000018849,0.0000018873,0.0000018899, +0.0000018921,0.0000018935,0.0000018939,0.0000018945,0.0000018945, +0.0000018941,0.0000018933,0.0000018926,0.0000018923,0.0000018923, +0.0000018924,0.0000018927,0.0000018927,0.0000018929,0.0000018932, +0.0000018934,0.0000018930,0.0000018913,0.0000018876,0.0000018817, +0.0000018739,0.0000018641,0.0000018521,0.0000018396,0.0000018302, +0.0000018265,0.0000018285,0.0000018365,0.0000018490,0.0000018633, +0.0000018769,0.0000018886,0.0000018980,0.0000019043,0.0000019084, +0.0000019114,0.0000019125,0.0000019129,0.0000019130,0.0000019129, +0.0000019123,0.0000019118,0.0000019120,0.0000019130,0.0000019148, +0.0000019166,0.0000019176,0.0000019182,0.0000019192,0.0000019197, +0.0000019196,0.0000019196,0.0000019198,0.0000019198,0.0000019192, +0.0000019191,0.0000019187,0.0000019170,0.0000019141,0.0000019101, +0.0000019048,0.0000018993,0.0000018945,0.0000018904,0.0000018862, +0.0000018824,0.0000018801,0.0000018795,0.0000018794,0.0000018803, +0.0000018813,0.0000018833,0.0000018858,0.0000018880,0.0000018893, +0.0000018895,0.0000018891,0.0000018885,0.0000018873,0.0000018853, +0.0000018827,0.0000018796,0.0000018753,0.0000018705,0.0000018661, +0.0000018621,0.0000018584,0.0000018554,0.0000018530,0.0000018512, +0.0000018502,0.0000018502,0.0000018504,0.0000018514,0.0000018534, +0.0000018557,0.0000018588,0.0000018631,0.0000018672,0.0000018707, +0.0000018747,0.0000018789,0.0000018826,0.0000018854,0.0000018870, +0.0000018866,0.0000018868,0.0000018863,0.0000018851,0.0000018835, +0.0000018819,0.0000018809,0.0000018809,0.0000018807,0.0000018792, +0.0000018766,0.0000018732,0.0000018688,0.0000018649,0.0000018616, +0.0000018587,0.0000018578,0.0000018587,0.0000018607,0.0000018646, +0.0000018686,0.0000018729,0.0000018772,0.0000018817,0.0000018860, +0.0000018890,0.0000018907,0.0000018912,0.0000018915,0.0000018918, +0.0000018929,0.0000018953,0.0000018976,0.0000018991,0.0000018993, +0.0000018985,0.0000018960,0.0000018937,0.0000018926,0.0000018927, +0.0000018939,0.0000018963,0.0000018992,0.0000019025,0.0000019056, +0.0000019084,0.0000019093,0.0000019081,0.0000019053,0.0000019011, +0.0000018966,0.0000018937,0.0000018921,0.0000018928,0.0000018939, +0.0000018929,0.0000018919,0.0000018905,0.0000018883,0.0000018855, +0.0000018810,0.0000018743,0.0000018661,0.0000018575,0.0000018500, +0.0000018438,0.0000018371,0.0000018294,0.0000018228,0.0000018193, +0.0000018201,0.0000018219,0.0000018230,0.0000018222,0.0000018198, +0.0000018166,0.0000018125,0.0000018090,0.0000018071,0.0000018076, +0.0000018085,0.0000018101,0.0000018113,0.0000018116,0.0000018111, +0.0000018087,0.0000018052,0.0000018016,0.0000017984,0.0000017962, +0.0000017968,0.0000017995,0.0000018027,0.0000018045,0.0000018037, +0.0000018020,0.0000018006,0.0000017990,0.0000017983,0.0000017984, +0.0000017985,0.0000017986,0.0000017982,0.0000017960,0.0000017925, +0.0000017892,0.0000017872,0.0000017887,0.0000017912,0.0000017934, +0.0000017961,0.0000018009,0.0000018052,0.0000018078,0.0000018084, +0.0000018083,0.0000018076,0.0000018051,0.0000018008,0.0000017963, +0.0000017931,0.0000017913,0.0000017912,0.0000017925,0.0000017953, +0.0000017991,0.0000018028,0.0000018047,0.0000018053,0.0000018062, +0.0000018074,0.0000018095,0.0000018117,0.0000018138,0.0000018156, +0.0000018171,0.0000018171,0.0000018157,0.0000018148,0.0000018147, +0.0000018157,0.0000018169,0.0000018129,0.0000018031,0.0000017896, +0.0000017774,0.0000017685,0.0000017622,0.0000017571,0.0000017525, +0.0000017473,0.0000017414,0.0000017359,0.0000017306,0.0000017254, +0.0000017213,0.0000017200,0.0000017226,0.0000017266,0.0000017333, +0.0000017439,0.0000017602,0.0000017816,0.0000018060,0.0000018301, +0.0000018501,0.0000018647,0.0000018737,0.0000018801,0.0000018871, +0.0000018949,0.0000019009,0.0000019025,0.0000019013,0.0000018957, +0.0000018858,0.0000018739,0.0000018631,0.0000018554,0.0000018506, +0.0000018496,0.0000018519,0.0000018566,0.0000018616,0.0000018659, +0.0000018690,0.0000018697,0.0000018693,0.0000018681,0.0000018670, +0.0000018661,0.0000018647,0.0000018622,0.0000018600,0.0000018589, +0.0000018592,0.0000018608,0.0000018628,0.0000018642,0.0000018658, +0.0000018681,0.0000018699,0.0000018696,0.0000018670,0.0000018634, +0.0000018610,0.0000018606,0.0000018608,0.0000018605,0.0000018585, +0.0000018544,0.0000018489,0.0000018436,0.0000018393,0.0000018359, +0.0000018325,0.0000018290,0.0000018263,0.0000018247,0.0000018236, +0.0000018228,0.0000018223,0.0000018209,0.0000018184,0.0000018154, +0.0000018115,0.0000018067,0.0000018024,0.0000018000,0.0000017990, +0.0000017986,0.0000017991,0.0000018009,0.0000018037,0.0000018070, +0.0000018109,0.0000018140,0.0000018154,0.0000018151,0.0000018126, +0.0000018098,0.0000018086,0.0000018075,0.0000018051,0.0000018040, +0.0000018043,0.0000018036,0.0000017999,0.0000017953,0.0000017928, +0.0000017931,0.0000017940,0.0000017944,0.0000017957,0.0000017987, +0.0000018024,0.0000018056,0.0000018079,0.0000018096,0.0000018110, +0.0000018120,0.0000018128,0.0000018127,0.0000018126,0.0000018112, +0.0000018094,0.0000018091,0.0000018105,0.0000018132,0.0000018155, +0.0000018173,0.0000018188,0.0000018203,0.0000018218,0.0000018234, +0.0000018246,0.0000018247,0.0000018236,0.0000018213,0.0000018190, +0.0000018172,0.0000018178,0.0000018206,0.0000018257,0.0000018321, +0.0000018383,0.0000018431,0.0000018470,0.0000018505,0.0000018528, +0.0000018533,0.0000018532,0.0000018527,0.0000018521,0.0000018523, +0.0000018541,0.0000018566,0.0000018571,0.0000018555,0.0000018535, +0.0000018516,0.0000018499,0.0000018498,0.0000018510,0.0000018519, +0.0000018524,0.0000018529,0.0000018540,0.0000018549,0.0000018553, +0.0000018552,0.0000018544,0.0000018528,0.0000018501,0.0000018453, +0.0000018383,0.0000018305,0.0000018218,0.0000018122,0.0000018030, +0.0000017954,0.0000017899,0.0000017862,0.0000017849,0.0000017856, +0.0000017857,0.0000017829,0.0000017775,0.0000017693,0.0000017617, +0.0000017573,0.0000017537,0.0000017551,0.0000017588,0.0000017636, +0.0000017672,0.0000017690,0.0000017692,0.0000017656,0.0000017604, +0.0000017563,0.0000017539,0.0000017505,0.0000017470,0.0000017452, +0.0000017437,0.0000017401,0.0000017346,0.0000017298,0.0000017289, +0.0000017320,0.0000017371,0.0000017416,0.0000017457,0.0000017485, +0.0000017494,0.0000017492,0.0000017480,0.0000017459,0.0000017453, +0.0000017468,0.0000017503,0.0000017558,0.0000017641,0.0000017747, +0.0000017850,0.0000017895,0.0000017876,0.0000017837,0.0000017794, +0.0000017759,0.0000017762,0.0000017774,0.0000017741,0.0000017686, +0.0000017624,0.0000017586,0.0000017587,0.0000017618,0.0000017668, +0.0000017721,0.0000017738,0.0000017724,0.0000017710,0.0000017716, +0.0000017719,0.0000017701,0.0000017632,0.0000017549,0.0000017481, +0.0000017439,0.0000017523,0.0000017628,0.0000017632,0.0000017631, +0.0000017701,0.0000017854,0.0000017920,0.0000018150,0.0000018263, +0.0000018248,0.0000018088,0.0000017867,0.0000017851,0.0000017889, +0.0000017952,0.0000017845,0.0000017748,0.0000017792,0.0000017782, +0.0000017730,0.0000017686,0.0000017647,0.0000017566,0.0000017514, +0.0000017540,0.0000017583,0.0000017595,0.0000017611,0.0000017615, +0.0000017592,0.0000017544,0.0000017509,0.0000017503,0.0000017519, +0.0000017585,0.0000017710,0.0000017726,0.0000017548,0.0000017401, +0.0000017411,0.0000017552,0.0000017701,0.0000017755,0.0000017739, +0.0000017667,0.0000017595,0.0000017574,0.0000017587,0.0000017586, +0.0000017535,0.0000017473,0.0000017438,0.0000017423,0.0000017433, +0.0000017477,0.0000017554,0.0000017650,0.0000017686,0.0000017652, +0.0000017610,0.0000017595,0.0000017599,0.0000017620,0.0000017646, +0.0000017670,0.0000017716,0.0000017790,0.0000017820,0.0000017772, +0.0000017690,0.0000017609,0.0000017564,0.0000017613,0.0000017780, +0.0000017898,0.0000017944,0.0000018094,0.0000018277,0.0000018322, +0.0000018226,0.0000018088,0.0000018037,0.0000018014,0.0000017973, +0.0000017957,0.0000017960,0.0000017977,0.0000018005,0.0000018041, +0.0000018084,0.0000018129,0.0000018175,0.0000018221,0.0000018265, +0.0000018308,0.0000018350,0.0000018387,0.0000018420,0.0000018438, +0.0000018452,0.0000018464,0.0000018474,0.0000018481,0.0000018482, +0.0000018461,0.0000018403,0.0000018330,0.0000018299,0.0000018333, +0.0000018365,0.0000018326,0.0000018276,0.0000018295,0.0000018374, +0.0000018443,0.0000018483,0.0000018513,0.0000018545,0.0000018573, +0.0000018590,0.0000018614,0.0000018655,0.0000018677,0.0000018631, +0.0000018544,0.0000018523,0.0000018539,0.0000018530,0.0000018563, +0.0000018647,0.0000018637,0.0000018523,0.0000018440,0.0000018425, +0.0000018429,0.0000018507,0.0000018633,0.0000018654,0.0000018633, +0.0000018640,0.0000018652,0.0000018675,0.0000018727,0.0000018825, +0.0000018952,0.0000019042,0.0000019062,0.0000019040,0.0000019010, +0.0000018967,0.0000018886,0.0000018796,0.0000018760,0.0000018787, +0.0000018813,0.0000018808,0.0000018812,0.0000018864,0.0000018939, +0.0000019008,0.0000019053,0.0000019068,0.0000019055,0.0000019028, +0.0000018999,0.0000018974,0.0000018951,0.0000018934,0.0000018920, +0.0000018910,0.0000018906,0.0000018906,0.0000018903,0.0000018893, +0.0000018872,0.0000018849,0.0000018837,0.0000018835,0.0000018831, +0.0000018809,0.0000018772,0.0000018732,0.0000018702,0.0000018684, +0.0000018674,0.0000018670,0.0000018670,0.0000018671,0.0000018676, +0.0000018685,0.0000018693,0.0000018705,0.0000018727,0.0000018761, +0.0000018803,0.0000018850,0.0000018897,0.0000018935,0.0000018961, +0.0000018980,0.0000019009,0.0000019058,0.0000019122,0.0000019180, +0.0000019204,0.0000019188,0.0000019139,0.0000019069,0.0000019018, +0.0000019005,0.0000019025,0.0000019086,0.0000019179,0.0000019278, +0.0000019369,0.0000019445,0.0000019506,0.0000019550,0.0000019571, +0.0000019584,0.0000019590,0.0000019590,0.0000019587,0.0000019581, +0.0000019572,0.0000019561,0.0000019548,0.0000019538,0.0000019526, +0.0000019516,0.0000019508,0.0000019498,0.0000019492,0.0000019489, +0.0000019486,0.0000019485,0.0000019486,0.0000019483,0.0000019476, +0.0000019466,0.0000019454,0.0000019442,0.0000019430,0.0000019417, +0.0000019402,0.0000019385,0.0000019371,0.0000019369,0.0000019373, +0.0000019379,0.0000019385,0.0000019390,0.0000019392,0.0000019395, +0.0000019397,0.0000019402,0.0000019406,0.0000019404,0.0000019403, +0.0000019405,0.0000019402,0.0000019400,0.0000019401,0.0000019402, +0.0000019403,0.0000019404,0.0000019405,0.0000019405,0.0000019403, +0.0000019400,0.0000019395,0.0000019395,0.0000019399,0.0000019413, +0.0000019422,0.0000019431,0.0000019441,0.0000019450,0.0000019457, +0.0000019464,0.0000019468,0.0000019468,0.0000019465,0.0000019463, +0.0000019461,0.0000019456,0.0000019450,0.0000019445,0.0000019444, +0.0000019443,0.0000019444,0.0000019447,0.0000019456,0.0000019469, +0.0000019483,0.0000019494,0.0000019502,0.0000019507,0.0000019506, +0.0000019494,0.0000019474,0.0000019445,0.0000019408,0.0000019362, +0.0000019312,0.0000019259,0.0000019207,0.0000019159,0.0000019119, +0.0000019085,0.0000019051,0.0000019015,0.0000018977,0.0000018931, +0.0000018872,0.0000018799,0.0000018710,0.0000018607,0.0000018502, +0.0000018403,0.0000018317,0.0000018258,0.0000018222,0.0000018201, +0.0000018201,0.0000018206,0.0000018222,0.0000018243,0.0000018262, +0.0000018275,0.0000018279,0.0000018273,0.0000018267,0.0000018266, +0.0000018269,0.0000018278,0.0000018290,0.0000018302,0.0000018316, +0.0000018333,0.0000018351,0.0000018369,0.0000018383,0.0000018398, +0.0000018412,0.0000018422,0.0000018428,0.0000018434,0.0000018434, +0.0000018422,0.0000018404,0.0000018388,0.0000018376,0.0000018366, +0.0000018360,0.0000018358,0.0000018354,0.0000018351,0.0000018346, +0.0000018337,0.0000018329,0.0000018326,0.0000018326,0.0000018332, +0.0000018341,0.0000018347,0.0000018349,0.0000018344,0.0000018339, +0.0000018339,0.0000018348,0.0000018367,0.0000018396,0.0000018442, +0.0000018495,0.0000018551,0.0000018605,0.0000018650,0.0000018689, +0.0000018731,0.0000018787,0.0000018853,0.0000018911,0.0000018946, +0.0000018955,0.0000018938,0.0000018906,0.0000018863,0.0000018823, +0.0000018796,0.0000018787,0.0000018789,0.0000018797,0.0000018800, +0.0000018787,0.0000018763,0.0000018750,0.0000018708,0.0000018666, +0.0000018627,0.0000018601,0.0000018581,0.0000018561,0.0000018544, +0.0000018527,0.0000018514,0.0000018493,0.0000018473,0.0000018456, +0.0000018442,0.0000018432,0.0000018422,0.0000018414,0.0000018406, +0.0000018410,0.0000018416,0.0000018422,0.0000018429,0.0000018436, +0.0000018443,0.0000018452,0.0000018460,0.0000018467,0.0000018473, +0.0000018475,0.0000018479,0.0000018489,0.0000018508,0.0000018529, +0.0000018554,0.0000018585,0.0000018618,0.0000018647,0.0000018666, +0.0000018668,0.0000018650,0.0000018622,0.0000018579,0.0000018539, +0.0000018504,0.0000018470,0.0000018428,0.0000018377,0.0000018328, +0.0000018287,0.0000018256,0.0000018228,0.0000018196,0.0000018157, +0.0000018109,0.0000018054,0.0000018001,0.0000017957,0.0000017923, +0.0000017899,0.0000017883,0.0000017874,0.0000017870,0.0000017872, +0.0000017879,0.0000017898,0.0000017934,0.0000017983,0.0000018035, +0.0000018085,0.0000018137,0.0000018195,0.0000018255,0.0000018307, +0.0000018353,0.0000018397,0.0000018430,0.0000018450,0.0000018464, +0.0000018474,0.0000018476,0.0000018467,0.0000018450,0.0000018441, +0.0000018447,0.0000018461,0.0000018472,0.0000018471,0.0000018457, +0.0000018435,0.0000018418,0.0000018418,0.0000018433,0.0000018445, +0.0000018446,0.0000018439,0.0000018437,0.0000018453,0.0000018483, +0.0000018515,0.0000018544,0.0000018571,0.0000018598,0.0000018624, +0.0000018654,0.0000018689,0.0000018739,0.0000018814,0.0000018899, +0.0000018952,0.0000018966,0.0000018953,0.0000018939,0.0000018942, +0.0000018966,0.0000019000,0.0000019023,0.0000019048,0.0000019081, +0.0000019114,0.0000019141,0.0000019165,0.0000019179,0.0000019182, +0.0000019169,0.0000019137,0.0000019079,0.0000018997,0.0000018897, +0.0000018780,0.0000018655,0.0000018546,0.0000018465,0.0000018420, +0.0000018413,0.0000018429,0.0000018462,0.0000018504,0.0000018535, +0.0000018546,0.0000018553,0.0000018553,0.0000018554,0.0000018555, +0.0000018554,0.0000018560,0.0000018571,0.0000018576,0.0000018574, +0.0000018566,0.0000018556,0.0000018545,0.0000018530,0.0000018510, +0.0000018492,0.0000018477,0.0000018468,0.0000018475,0.0000018496, +0.0000018525,0.0000018554,0.0000018586,0.0000018615,0.0000018642, +0.0000018673,0.0000018696,0.0000018709,0.0000018716,0.0000018715, +0.0000018707,0.0000018702,0.0000018703,0.0000018712,0.0000018725, +0.0000018745,0.0000018771,0.0000018793,0.0000018812,0.0000018838, +0.0000018867,0.0000018890,0.0000018902,0.0000018907,0.0000018917, +0.0000018924,0.0000018929,0.0000018938,0.0000018954,0.0000018970, +0.0000018980,0.0000018982,0.0000018980,0.0000018978,0.0000018980, +0.0000018984,0.0000018993,0.0000019004,0.0000019001,0.0000018972, +0.0000018918,0.0000018845,0.0000018753,0.0000018632,0.0000018487, +0.0000018352,0.0000018272,0.0000018261,0.0000018293,0.0000018379, +0.0000018493,0.0000018610,0.0000018718,0.0000018810,0.0000018882, +0.0000018944,0.0000018998,0.0000019035,0.0000019056,0.0000019070, +0.0000019077,0.0000019079,0.0000019085,0.0000019099,0.0000019117, +0.0000019138,0.0000019156,0.0000019171,0.0000019185,0.0000019198, +0.0000019205,0.0000019210,0.0000019218,0.0000019232,0.0000019246, +0.0000019263,0.0000019278,0.0000019292,0.0000019296,0.0000019285, +0.0000019255,0.0000019210,0.0000019156,0.0000019098,0.0000019034, +0.0000018963,0.0000018900,0.0000018857,0.0000018837,0.0000018832, +0.0000018846,0.0000018866,0.0000018893,0.0000018925,0.0000018952, +0.0000018963,0.0000018960,0.0000018946,0.0000018926,0.0000018899, +0.0000018867,0.0000018838,0.0000018806,0.0000018765,0.0000018723, +0.0000018695,0.0000018676,0.0000018658,0.0000018641,0.0000018626, +0.0000018609,0.0000018590,0.0000018573,0.0000018561,0.0000018554, +0.0000018552,0.0000018558,0.0000018571,0.0000018595,0.0000018616, +0.0000018642,0.0000018677,0.0000018713,0.0000018747,0.0000018779, +0.0000018801,0.0000018818,0.0000018829,0.0000018830,0.0000018824, +0.0000018821,0.0000018826,0.0000018837,0.0000018854,0.0000018865, +0.0000018863,0.0000018853,0.0000018837,0.0000018812,0.0000018779, +0.0000018733,0.0000018693,0.0000018655,0.0000018630,0.0000018634, +0.0000018648,0.0000018677,0.0000018720,0.0000018769,0.0000018817, +0.0000018869,0.0000018912,0.0000018938,0.0000018959,0.0000018972, +0.0000018983,0.0000019003,0.0000019022,0.0000019032,0.0000019033, +0.0000019030,0.0000019012,0.0000018983,0.0000018955,0.0000018936, +0.0000018936,0.0000018941,0.0000018951,0.0000018974,0.0000019012, +0.0000019054,0.0000019092,0.0000019104,0.0000019108,0.0000019086, +0.0000019033,0.0000018967,0.0000018909,0.0000018887,0.0000018880, +0.0000018887,0.0000018893,0.0000018901,0.0000018911,0.0000018933, +0.0000018952,0.0000018941,0.0000018898,0.0000018823,0.0000018727, +0.0000018637,0.0000018557,0.0000018476,0.0000018400,0.0000018344, +0.0000018330,0.0000018339,0.0000018352,0.0000018356,0.0000018344, +0.0000018316,0.0000018273,0.0000018225,0.0000018171,0.0000018122, +0.0000018101,0.0000018095,0.0000018109,0.0000018118,0.0000018118, +0.0000018109,0.0000018085,0.0000018052,0.0000018018,0.0000017986, +0.0000017972,0.0000017971,0.0000017999,0.0000018032,0.0000018044, +0.0000018051,0.0000018053,0.0000018039,0.0000018021,0.0000018005, +0.0000017993,0.0000017986,0.0000017979,0.0000017962,0.0000017944, +0.0000017920,0.0000017900,0.0000017907,0.0000017923,0.0000017930, +0.0000017936,0.0000017967,0.0000018000,0.0000018024,0.0000018044, +0.0000018061,0.0000018078,0.0000018078,0.0000018066,0.0000018047, +0.0000018030,0.0000018017,0.0000018012,0.0000018016,0.0000018033, +0.0000018066,0.0000018098,0.0000018111,0.0000018112,0.0000018115, +0.0000018129,0.0000018148,0.0000018173,0.0000018199,0.0000018221, +0.0000018238,0.0000018237,0.0000018221,0.0000018205,0.0000018193, +0.0000018200,0.0000018220,0.0000018213,0.0000018157,0.0000018056, +0.0000017942,0.0000017825,0.0000017717,0.0000017631,0.0000017571, +0.0000017516,0.0000017461,0.0000017415,0.0000017378,0.0000017333, +0.0000017287,0.0000017262,0.0000017267,0.0000017295,0.0000017330, +0.0000017374,0.0000017442,0.0000017544,0.0000017694,0.0000017907, +0.0000018153,0.0000018379,0.0000018551,0.0000018663,0.0000018743, +0.0000018814,0.0000018888,0.0000018961,0.0000019013,0.0000019009, +0.0000018965,0.0000018873,0.0000018753,0.0000018635,0.0000018533, +0.0000018484,0.0000018462,0.0000018482,0.0000018522,0.0000018575, +0.0000018623,0.0000018652,0.0000018674,0.0000018678,0.0000018686, +0.0000018691,0.0000018679,0.0000018653,0.0000018629,0.0000018616, +0.0000018616,0.0000018625,0.0000018637,0.0000018647,0.0000018668, +0.0000018695,0.0000018704,0.0000018693,0.0000018664,0.0000018638, +0.0000018627,0.0000018622,0.0000018612,0.0000018587,0.0000018546, +0.0000018499,0.0000018457,0.0000018427,0.0000018404,0.0000018374, +0.0000018328,0.0000018276,0.0000018234,0.0000018202,0.0000018181, +0.0000018169,0.0000018152,0.0000018122,0.0000018089,0.0000018052, +0.0000018004,0.0000017955,0.0000017923,0.0000017915,0.0000017915, +0.0000017916,0.0000017918,0.0000017931,0.0000017958,0.0000017999, +0.0000018044,0.0000018087,0.0000018120,0.0000018124,0.0000018101, +0.0000018085,0.0000018080,0.0000018062,0.0000018036,0.0000018031, +0.0000018033,0.0000018017,0.0000017971,0.0000017925,0.0000017913, +0.0000017927,0.0000017949,0.0000017963,0.0000017973,0.0000017986, +0.0000018007,0.0000018030,0.0000018049,0.0000018067,0.0000018087, +0.0000018103,0.0000018111,0.0000018119,0.0000018120,0.0000018121, +0.0000018121,0.0000018131,0.0000018151,0.0000018168,0.0000018175, +0.0000018179,0.0000018184,0.0000018195,0.0000018212,0.0000018243, +0.0000018264,0.0000018287,0.0000018287,0.0000018267,0.0000018234, +0.0000018206,0.0000018197,0.0000018220,0.0000018246,0.0000018277, +0.0000018312,0.0000018359,0.0000018415,0.0000018468,0.0000018501, +0.0000018514,0.0000018509,0.0000018500,0.0000018506,0.0000018535, +0.0000018567,0.0000018575,0.0000018564,0.0000018544,0.0000018529, +0.0000018522,0.0000018531,0.0000018549,0.0000018554,0.0000018550, +0.0000018553,0.0000018564,0.0000018576,0.0000018583,0.0000018585, +0.0000018587,0.0000018594,0.0000018599,0.0000018590,0.0000018569, +0.0000018535,0.0000018479,0.0000018396,0.0000018299,0.0000018201, +0.0000018104,0.0000018016,0.0000017960,0.0000017945,0.0000017955, +0.0000017968,0.0000017963,0.0000017924,0.0000017846,0.0000017738, +0.0000017632,0.0000017581,0.0000017567,0.0000017590,0.0000017637, +0.0000017682,0.0000017709,0.0000017711,0.0000017688,0.0000017664, +0.0000017645,0.0000017620,0.0000017600,0.0000017594,0.0000017584, +0.0000017555,0.0000017503,0.0000017447,0.0000017426,0.0000017439, +0.0000017463,0.0000017478,0.0000017486,0.0000017486,0.0000017482, +0.0000017481,0.0000017470,0.0000017458,0.0000017477,0.0000017536, +0.0000017611,0.0000017690,0.0000017774,0.0000017857,0.0000017921, +0.0000017929,0.0000017888,0.0000017846,0.0000017805,0.0000017784, +0.0000017792,0.0000017786,0.0000017730,0.0000017667,0.0000017618, +0.0000017604,0.0000017619,0.0000017656,0.0000017703,0.0000017743, +0.0000017748,0.0000017733,0.0000017727,0.0000017735,0.0000017728, +0.0000017704,0.0000017654,0.0000017585,0.0000017515,0.0000017442, +0.0000017480,0.0000017575,0.0000017605,0.0000017616,0.0000017699, +0.0000017850,0.0000017943,0.0000018204,0.0000018292,0.0000018259, +0.0000018062,0.0000017855,0.0000017849,0.0000017893,0.0000017959, +0.0000017837,0.0000017750,0.0000017785,0.0000017781,0.0000017741, +0.0000017697,0.0000017637,0.0000017544,0.0000017511,0.0000017561, +0.0000017607,0.0000017629,0.0000017654,0.0000017663,0.0000017646, +0.0000017585,0.0000017526,0.0000017509,0.0000017514,0.0000017564, +0.0000017681,0.0000017731,0.0000017579,0.0000017415,0.0000017396, +0.0000017517,0.0000017669,0.0000017746,0.0000017734,0.0000017663, +0.0000017592,0.0000017572,0.0000017583,0.0000017584,0.0000017545, +0.0000017501,0.0000017475,0.0000017445,0.0000017430,0.0000017452, +0.0000017513,0.0000017616,0.0000017694,0.0000017686,0.0000017643, +0.0000017629,0.0000017638,0.0000017661,0.0000017701,0.0000017768, +0.0000017830,0.0000017827,0.0000017760,0.0000017674,0.0000017606, +0.0000017592,0.0000017692,0.0000017867,0.0000017949,0.0000018033, +0.0000018232,0.0000018346,0.0000018292,0.0000018108,0.0000018004, +0.0000017987,0.0000017960,0.0000017938,0.0000017939,0.0000017951, +0.0000017977,0.0000018018,0.0000018069,0.0000018124,0.0000018173, +0.0000018214,0.0000018248,0.0000018285,0.0000018322,0.0000018359, +0.0000018393,0.0000018383,0.0000018400,0.0000018414,0.0000018426, +0.0000018436,0.0000018449,0.0000018468,0.0000018485,0.0000018467, +0.0000018408,0.0000018337,0.0000018326,0.0000018364,0.0000018371, +0.0000018321,0.0000018275,0.0000018280,0.0000018316,0.0000018349, +0.0000018387,0.0000018446,0.0000018513,0.0000018558,0.0000018592, +0.0000018649,0.0000018682,0.0000018645,0.0000018558,0.0000018526, +0.0000018528,0.0000018531,0.0000018593,0.0000018642,0.0000018571, +0.0000018464,0.0000018422,0.0000018417,0.0000018452,0.0000018580, +0.0000018658,0.0000018649,0.0000018648,0.0000018662,0.0000018668, +0.0000018675,0.0000018690,0.0000018748,0.0000018878,0.0000019018, +0.0000019083,0.0000019066,0.0000018999,0.0000018895,0.0000018777, +0.0000018723,0.0000018744,0.0000018805,0.0000018832,0.0000018817, +0.0000018813,0.0000018855,0.0000018924,0.0000018994,0.0000019052, +0.0000019081,0.0000019087,0.0000019072,0.0000019044,0.0000019012, +0.0000018985,0.0000018966,0.0000018951,0.0000018942,0.0000018939, +0.0000018936,0.0000018926,0.0000018910,0.0000018890,0.0000018873, +0.0000018863,0.0000018856,0.0000018855,0.0000018853,0.0000018844, +0.0000018826,0.0000018806,0.0000018789,0.0000018776,0.0000018769, +0.0000018769,0.0000018773,0.0000018785,0.0000018803,0.0000018827, +0.0000018862,0.0000018902,0.0000018940,0.0000018972,0.0000018998, +0.0000019023,0.0000019049,0.0000019084,0.0000019127,0.0000019166, +0.0000019181,0.0000019163,0.0000019114,0.0000019052,0.0000019014, +0.0000019023,0.0000019070,0.0000019167,0.0000019282,0.0000019390, +0.0000019480,0.0000019547,0.0000019587,0.0000019598,0.0000019600, +0.0000019590,0.0000019572,0.0000019556,0.0000019542,0.0000019531, +0.0000019527,0.0000019523,0.0000019519,0.0000019513,0.0000019505, +0.0000019501,0.0000019497,0.0000019494,0.0000019491,0.0000019489, +0.0000019489,0.0000019490,0.0000019494,0.0000019499,0.0000019500, +0.0000019497,0.0000019489,0.0000019478,0.0000019465,0.0000019452, +0.0000019439,0.0000019426,0.0000019411,0.0000019394,0.0000019376, +0.0000019362,0.0000019359,0.0000019362,0.0000019365,0.0000019370, +0.0000019377,0.0000019386,0.0000019395,0.0000019400,0.0000019405, +0.0000019406,0.0000019401,0.0000019397,0.0000019387,0.0000019378, +0.0000019373,0.0000019366,0.0000019364,0.0000019362,0.0000019361, +0.0000019358,0.0000019358,0.0000019358,0.0000019355,0.0000019355, +0.0000019357,0.0000019360,0.0000019367,0.0000019372,0.0000019379, +0.0000019386,0.0000019387,0.0000019389,0.0000019393,0.0000019390, +0.0000019383,0.0000019375,0.0000019367,0.0000019361,0.0000019356, +0.0000019353,0.0000019351,0.0000019349,0.0000019349,0.0000019354, +0.0000019366,0.0000019382,0.0000019402,0.0000019425,0.0000019447, +0.0000019470,0.0000019488,0.0000019501,0.0000019514,0.0000019526, +0.0000019528,0.0000019520,0.0000019502,0.0000019480,0.0000019451, +0.0000019418,0.0000019383,0.0000019343,0.0000019298,0.0000019249, +0.0000019201,0.0000019161,0.0000019128,0.0000019095,0.0000019063, +0.0000019027,0.0000018981,0.0000018918,0.0000018826,0.0000018700, +0.0000018555,0.0000018416,0.0000018302,0.0000018225,0.0000018173, +0.0000018135,0.0000018119,0.0000018116,0.0000018097,0.0000018083, +0.0000018072,0.0000018071,0.0000018073,0.0000018081,0.0000018096, +0.0000018115,0.0000018135,0.0000018157,0.0000018179,0.0000018203, +0.0000018228,0.0000018255,0.0000018283,0.0000018305,0.0000018318, +0.0000018328,0.0000018333,0.0000018334,0.0000018328,0.0000018319, +0.0000018310,0.0000018302,0.0000018302,0.0000018309,0.0000018317, +0.0000018324,0.0000018333,0.0000018339,0.0000018337,0.0000018330, +0.0000018324,0.0000018319,0.0000018316,0.0000018311,0.0000018307, +0.0000018305,0.0000018301,0.0000018294,0.0000018293,0.0000018305, +0.0000018323,0.0000018348,0.0000018385,0.0000018433,0.0000018485, +0.0000018534,0.0000018579,0.0000018616,0.0000018643,0.0000018664, +0.0000018692,0.0000018734,0.0000018788,0.0000018837,0.0000018869, +0.0000018881,0.0000018866,0.0000018826,0.0000018795,0.0000018759, +0.0000018734,0.0000018719,0.0000018714,0.0000018716,0.0000018718, +0.0000018718,0.0000018712,0.0000018699,0.0000018695,0.0000018684, +0.0000018698,0.0000018689,0.0000018678,0.0000018668,0.0000018657, +0.0000018645,0.0000018622,0.0000018595,0.0000018567,0.0000018543, +0.0000018516,0.0000018488,0.0000018470,0.0000018460,0.0000018456, +0.0000018457,0.0000018461,0.0000018470,0.0000018484,0.0000018498, +0.0000018514,0.0000018529,0.0000018543,0.0000018562,0.0000018585, +0.0000018607,0.0000018632,0.0000018653,0.0000018660,0.0000018657, +0.0000018655,0.0000018628,0.0000018590,0.0000018545,0.0000018500, +0.0000018459,0.0000018424,0.0000018383,0.0000018335,0.0000018294, +0.0000018271,0.0000018256,0.0000018234,0.0000018203,0.0000018163, +0.0000018117,0.0000018067,0.0000018019,0.0000017972,0.0000017929, +0.0000017890,0.0000017850,0.0000017813,0.0000017786,0.0000017780, +0.0000017791,0.0000017818,0.0000017853,0.0000017898,0.0000017951, +0.0000018008,0.0000018064,0.0000018114,0.0000018163,0.0000018221, +0.0000018284,0.0000018342,0.0000018393,0.0000018433,0.0000018460, +0.0000018478,0.0000018492,0.0000018504,0.0000018507,0.0000018496, +0.0000018482,0.0000018478,0.0000018489,0.0000018505,0.0000018514, +0.0000018507,0.0000018486,0.0000018463,0.0000018450,0.0000018450, +0.0000018456,0.0000018454,0.0000018441,0.0000018429,0.0000018431, +0.0000018456,0.0000018491,0.0000018529,0.0000018568,0.0000018610, +0.0000018656,0.0000018709,0.0000018763,0.0000018812,0.0000018869, +0.0000018922,0.0000018939,0.0000018926,0.0000018922,0.0000018941, +0.0000018989,0.0000019040,0.0000019092,0.0000019125,0.0000019141, +0.0000019148,0.0000019155,0.0000019164,0.0000019173,0.0000019185, +0.0000019187,0.0000019176,0.0000019158,0.0000019135,0.0000019099, +0.0000019042,0.0000018963,0.0000018865,0.0000018758,0.0000018652, +0.0000018559,0.0000018500,0.0000018480,0.0000018487,0.0000018511, +0.0000018545,0.0000018567,0.0000018581,0.0000018595,0.0000018602, +0.0000018606,0.0000018607,0.0000018611,0.0000018623,0.0000018633, +0.0000018637,0.0000018634,0.0000018620,0.0000018603,0.0000018588, +0.0000018571,0.0000018552,0.0000018527,0.0000018502,0.0000018485, +0.0000018482,0.0000018495,0.0000018515,0.0000018545,0.0000018576, +0.0000018606,0.0000018637,0.0000018665,0.0000018688,0.0000018704, +0.0000018712,0.0000018710,0.0000018704,0.0000018698,0.0000018694, +0.0000018692,0.0000018697,0.0000018716,0.0000018740,0.0000018757, +0.0000018775,0.0000018805,0.0000018840,0.0000018869,0.0000018888, +0.0000018905,0.0000018927,0.0000018947,0.0000018961,0.0000018978, +0.0000019000,0.0000019018,0.0000019030,0.0000019038,0.0000019039, +0.0000019036,0.0000019035,0.0000019038,0.0000019051,0.0000019064, +0.0000019063,0.0000019043,0.0000019001,0.0000018936,0.0000018849, +0.0000018729,0.0000018575,0.0000018418,0.0000018298,0.0000018248, +0.0000018254,0.0000018310,0.0000018398,0.0000018496,0.0000018586, +0.0000018660,0.0000018715,0.0000018761,0.0000018797,0.0000018822, +0.0000018840,0.0000018850,0.0000018852,0.0000018858,0.0000018876, +0.0000018901,0.0000018931,0.0000018968,0.0000019006,0.0000019042, +0.0000019080,0.0000019116,0.0000019147,0.0000019178,0.0000019209, +0.0000019237,0.0000019261,0.0000019284,0.0000019309,0.0000019334, +0.0000019352,0.0000019356,0.0000019343,0.0000019319,0.0000019287, +0.0000019240,0.0000019175,0.0000019101,0.0000019026,0.0000018960, +0.0000018913,0.0000018890,0.0000018888,0.0000018899,0.0000018926, +0.0000018967,0.0000019001,0.0000019018,0.0000019024,0.0000019016, +0.0000018993,0.0000018961,0.0000018926,0.0000018897,0.0000018860, +0.0000018818,0.0000018778,0.0000018750,0.0000018729,0.0000018706, +0.0000018688,0.0000018677,0.0000018664,0.0000018647,0.0000018628, +0.0000018610,0.0000018601,0.0000018600,0.0000018604,0.0000018616, +0.0000018630,0.0000018645,0.0000018670,0.0000018697,0.0000018730, +0.0000018761,0.0000018783,0.0000018800,0.0000018815,0.0000018824, +0.0000018820,0.0000018821,0.0000018831,0.0000018843,0.0000018853, +0.0000018865,0.0000018873,0.0000018882,0.0000018889,0.0000018890, +0.0000018886,0.0000018860,0.0000018817,0.0000018774,0.0000018733, +0.0000018698,0.0000018676,0.0000018680,0.0000018704,0.0000018741, +0.0000018779,0.0000018825,0.0000018876,0.0000018927,0.0000018972, +0.0000018996,0.0000019016,0.0000019047,0.0000019079,0.0000019100, +0.0000019106,0.0000019104,0.0000019094,0.0000019076,0.0000019059, +0.0000019040,0.0000019016,0.0000018996,0.0000018975,0.0000018971, +0.0000018976,0.0000018996,0.0000019026,0.0000019061,0.0000019103, +0.0000019115,0.0000019101,0.0000019046,0.0000018972,0.0000018909, +0.0000018866,0.0000018855,0.0000018853,0.0000018853,0.0000018866, +0.0000018901,0.0000018944,0.0000018970,0.0000018993,0.0000018962, +0.0000018893,0.0000018808,0.0000018724,0.0000018646,0.0000018574, +0.0000018513,0.0000018488,0.0000018486,0.0000018494,0.0000018496, +0.0000018480,0.0000018445,0.0000018399,0.0000018353,0.0000018296, +0.0000018236,0.0000018192,0.0000018169,0.0000018156,0.0000018142, +0.0000018130,0.0000018117,0.0000018097,0.0000018078,0.0000018062, +0.0000018041,0.0000018022,0.0000018003,0.0000018012,0.0000018031, +0.0000018039,0.0000018052,0.0000018060,0.0000018053,0.0000018036, +0.0000018014,0.0000017995,0.0000017978,0.0000017959,0.0000017949, +0.0000017936,0.0000017920,0.0000017910,0.0000017914,0.0000017931, +0.0000017937,0.0000017942,0.0000017957,0.0000017975,0.0000017984, +0.0000017996,0.0000018011,0.0000018036,0.0000018057,0.0000018073, +0.0000018089,0.0000018105,0.0000018117,0.0000018122,0.0000018124, +0.0000018124,0.0000018136,0.0000018151,0.0000018151,0.0000018138, +0.0000018135,0.0000018140,0.0000018154,0.0000018177,0.0000018205, +0.0000018235,0.0000018263,0.0000018286,0.0000018289,0.0000018288, +0.0000018277,0.0000018277,0.0000018287,0.0000018276,0.0000018233, +0.0000018163,0.0000018073,0.0000017968,0.0000017850,0.0000017743, +0.0000017663,0.0000017591,0.0000017527,0.0000017485,0.0000017452, +0.0000017415,0.0000017377,0.0000017349,0.0000017338,0.0000017348, +0.0000017380,0.0000017406,0.0000017443,0.0000017444,0.0000017479, +0.0000017590,0.0000017763,0.0000017984,0.0000018218,0.0000018410, +0.0000018558,0.0000018663,0.0000018749,0.0000018835,0.0000018913, +0.0000018972,0.0000018980,0.0000018963,0.0000018895,0.0000018789, +0.0000018668,0.0000018567,0.0000018490,0.0000018478,0.0000018469, +0.0000018490,0.0000018523,0.0000018557,0.0000018593,0.0000018627, +0.0000018657,0.0000018677,0.0000018666,0.0000018659,0.0000018662, +0.0000018668,0.0000018672,0.0000018673,0.0000018675,0.0000018684, +0.0000018705,0.0000018725,0.0000018726,0.0000018707,0.0000018678, +0.0000018656,0.0000018645,0.0000018631,0.0000018604,0.0000018564, +0.0000018523,0.0000018486,0.0000018454,0.0000018431,0.0000018406, +0.0000018359,0.0000018291,0.0000018225,0.0000018174,0.0000018146, +0.0000018131,0.0000018113,0.0000018087,0.0000018055,0.0000018015, +0.0000017966,0.0000017903,0.0000017852,0.0000017837,0.0000017842, +0.0000017856,0.0000017861,0.0000017864,0.0000017878,0.0000017911, +0.0000017949,0.0000017991,0.0000018043,0.0000018083,0.0000018090, +0.0000018078,0.0000018076,0.0000018072,0.0000018052,0.0000018031, +0.0000018023,0.0000018019,0.0000017995,0.0000017952,0.0000017920, +0.0000017920,0.0000017942,0.0000017966,0.0000017978,0.0000017985, +0.0000017992,0.0000018000,0.0000018007,0.0000018016,0.0000018030, +0.0000018046,0.0000018058,0.0000018066,0.0000018077,0.0000018093, +0.0000018109,0.0000018124,0.0000018147,0.0000018172,0.0000018187, +0.0000018194,0.0000018191,0.0000018189,0.0000018188,0.0000018202, +0.0000018231,0.0000018273,0.0000018303,0.0000018321,0.0000018306, +0.0000018277,0.0000018254,0.0000018248,0.0000018246,0.0000018252, +0.0000018253,0.0000018275,0.0000018316,0.0000018374,0.0000018427, +0.0000018461,0.0000018473,0.0000018476,0.0000018490,0.0000018526, +0.0000018564,0.0000018575,0.0000018561,0.0000018537,0.0000018518, +0.0000018520,0.0000018546,0.0000018581,0.0000018598,0.0000018601, +0.0000018602,0.0000018606,0.0000018608,0.0000018605,0.0000018597, +0.0000018596,0.0000018605,0.0000018612,0.0000018616,0.0000018616, +0.0000018609,0.0000018588,0.0000018553,0.0000018505,0.0000018447, +0.0000018373,0.0000018291,0.0000018214,0.0000018155,0.0000018110, +0.0000018084,0.0000018071,0.0000018061,0.0000018028,0.0000017949, +0.0000017836,0.0000017727,0.0000017641,0.0000017615,0.0000017619, +0.0000017637,0.0000017680,0.0000017704,0.0000017706,0.0000017704, +0.0000017699,0.0000017693,0.0000017689,0.0000017689,0.0000017683, +0.0000017661,0.0000017619,0.0000017568,0.0000017537,0.0000017523, +0.0000017509,0.0000017494,0.0000017487,0.0000017486,0.0000017494, +0.0000017509,0.0000017511,0.0000017523,0.0000017572,0.0000017653, +0.0000017734,0.0000017807,0.0000017865,0.0000017916,0.0000017950, +0.0000017936,0.0000017893,0.0000017852,0.0000017826,0.0000017823, +0.0000017822,0.0000017788,0.0000017710,0.0000017646,0.0000017618, +0.0000017627,0.0000017661,0.0000017709,0.0000017753,0.0000017775, +0.0000017773,0.0000017763,0.0000017760,0.0000017763,0.0000017742, +0.0000017707,0.0000017670,0.0000017615,0.0000017547,0.0000017446, +0.0000017450,0.0000017533,0.0000017575,0.0000017601,0.0000017704, +0.0000017847,0.0000017987,0.0000018261,0.0000018352,0.0000018254, +0.0000018028,0.0000017851,0.0000017848,0.0000017899,0.0000017964, +0.0000017831,0.0000017751,0.0000017774,0.0000017771,0.0000017747, +0.0000017698,0.0000017611,0.0000017523,0.0000017526,0.0000017594, +0.0000017639,0.0000017670,0.0000017701,0.0000017715,0.0000017700, +0.0000017631,0.0000017549,0.0000017510,0.0000017510,0.0000017552, +0.0000017658,0.0000017727,0.0000017606,0.0000017429,0.0000017389, +0.0000017487,0.0000017637,0.0000017721,0.0000017716,0.0000017651, +0.0000017585,0.0000017567,0.0000017580,0.0000017582,0.0000017551, +0.0000017521,0.0000017508,0.0000017468,0.0000017424,0.0000017427, +0.0000017473,0.0000017569,0.0000017682,0.0000017721,0.0000017711, +0.0000017700,0.0000017714,0.0000017764,0.0000017821,0.0000017843, +0.0000017810,0.0000017734,0.0000017657,0.0000017615,0.0000017639, +0.0000017781,0.0000017932,0.0000018002,0.0000018148,0.0000018342, +0.0000018372,0.0000018212,0.0000018023,0.0000017962,0.0000017953, +0.0000017939,0.0000017940,0.0000017957,0.0000017989,0.0000018032, +0.0000018081,0.0000018131,0.0000018171,0.0000018197,0.0000018220, +0.0000018241,0.0000018267,0.0000018297,0.0000018328,0.0000018359, +0.0000018315,0.0000018333,0.0000018351,0.0000018368,0.0000018383, +0.0000018397,0.0000018418,0.0000018449,0.0000018479,0.0000018478, +0.0000018419,0.0000018360,0.0000018360,0.0000018386,0.0000018381, +0.0000018329,0.0000018282,0.0000018273,0.0000018260,0.0000018280, +0.0000018331,0.0000018425,0.0000018512,0.0000018569,0.0000018638, +0.0000018687,0.0000018655,0.0000018570,0.0000018531,0.0000018525, +0.0000018544,0.0000018610,0.0000018611,0.0000018507,0.0000018427, +0.0000018409,0.0000018412,0.0000018497,0.0000018638,0.0000018683, +0.0000018686,0.0000018711,0.0000018732,0.0000018737,0.0000018730, +0.0000018709,0.0000018715,0.0000018796,0.0000018951,0.0000019074, +0.0000019095,0.0000019013,0.0000018860,0.0000018727,0.0000018686, +0.0000018748,0.0000018829,0.0000018853,0.0000018833,0.0000018823, +0.0000018853,0.0000018907,0.0000018967,0.0000019026,0.0000019070, +0.0000019090,0.0000019083,0.0000019072,0.0000019053,0.0000019035, +0.0000019019,0.0000019005,0.0000018998,0.0000018996,0.0000018988, +0.0000018975,0.0000018953,0.0000018928,0.0000018909,0.0000018898, +0.0000018892,0.0000018892,0.0000018898,0.0000018903,0.0000018904, +0.0000018904,0.0000018902,0.0000018901,0.0000018902,0.0000018907, +0.0000018918,0.0000018933,0.0000018955,0.0000018983,0.0000019012, +0.0000019038,0.0000019063,0.0000019091,0.0000019123,0.0000019156, +0.0000019179,0.0000019170,0.0000019142,0.0000019089,0.0000019039, +0.0000019033,0.0000019062,0.0000019130,0.0000019252,0.0000019382, +0.0000019494,0.0000019570,0.0000019608,0.0000019619,0.0000019613, +0.0000019601,0.0000019590,0.0000019574,0.0000019558,0.0000019545, +0.0000019534,0.0000019532,0.0000019532,0.0000019534,0.0000019535, +0.0000019536,0.0000019538,0.0000019540,0.0000019543,0.0000019554, +0.0000019566,0.0000019576,0.0000019581,0.0000019585,0.0000019587, +0.0000019584,0.0000019576,0.0000019564,0.0000019550,0.0000019532, +0.0000019511,0.0000019490,0.0000019471,0.0000019454,0.0000019438, +0.0000019423,0.0000019409,0.0000019395,0.0000019379,0.0000019372, +0.0000019373,0.0000019378,0.0000019384,0.0000019392,0.0000019401, +0.0000019408,0.0000019411,0.0000019411,0.0000019411,0.0000019409, +0.0000019412,0.0000019414,0.0000019415,0.0000019421,0.0000019425, +0.0000019433,0.0000019438,0.0000019445,0.0000019447,0.0000019450, +0.0000019451,0.0000019452,0.0000019454,0.0000019456,0.0000019455, +0.0000019458,0.0000019465,0.0000019472,0.0000019477,0.0000019483, +0.0000019491,0.0000019500,0.0000019504,0.0000019507,0.0000019505, +0.0000019501,0.0000019499,0.0000019493,0.0000019487,0.0000019481, +0.0000019470,0.0000019458,0.0000019447,0.0000019441,0.0000019435, +0.0000019429,0.0000019430,0.0000019428,0.0000019418,0.0000019406, +0.0000019396,0.0000019388,0.0000019385,0.0000019385,0.0000019385, +0.0000019386,0.0000019391,0.0000019400,0.0000019409,0.0000019414, +0.0000019418,0.0000019420,0.0000019418,0.0000019409,0.0000019395, +0.0000019376,0.0000019342,0.0000019295,0.0000019240,0.0000019183, +0.0000019131,0.0000019085,0.0000019037,0.0000018978,0.0000018892, +0.0000018776,0.0000018635,0.0000018488,0.0000018357,0.0000018255, +0.0000018179,0.0000018127,0.0000018089,0.0000018057,0.0000018031, +0.0000018014,0.0000018008,0.0000018009,0.0000018014,0.0000018023, +0.0000018035,0.0000018041,0.0000018043,0.0000018060,0.0000018082, +0.0000018100,0.0000018121,0.0000018131,0.0000018136,0.0000018138, +0.0000018135,0.0000018132,0.0000018130,0.0000018123,0.0000018115, +0.0000018115,0.0000018125,0.0000018140,0.0000018163,0.0000018199, +0.0000018240,0.0000018274,0.0000018298,0.0000018312,0.0000018320, +0.0000018326,0.0000018327,0.0000018322,0.0000018312,0.0000018297, +0.0000018279,0.0000018263,0.0000018255,0.0000018260,0.0000018282, +0.0000018310,0.0000018342,0.0000018383,0.0000018428,0.0000018472, +0.0000018514,0.0000018558,0.0000018596,0.0000018616,0.0000018619, +0.0000018618,0.0000018627,0.0000018655,0.0000018697,0.0000018737, +0.0000018765,0.0000018776,0.0000018769,0.0000018746,0.0000018708, +0.0000018672,0.0000018639,0.0000018610,0.0000018594,0.0000018587, +0.0000018590,0.0000018600,0.0000018617,0.0000018638,0.0000018658, +0.0000018685,0.0000018706,0.0000018732,0.0000018742,0.0000018734, +0.0000018746,0.0000018733,0.0000018713,0.0000018690,0.0000018669, +0.0000018639,0.0000018614,0.0000018598,0.0000018585,0.0000018576, +0.0000018576,0.0000018583,0.0000018595,0.0000018608,0.0000018616, +0.0000018621,0.0000018628,0.0000018632,0.0000018630,0.0000018633, +0.0000018618,0.0000018589,0.0000018554,0.0000018517,0.0000018477, +0.0000018435,0.0000018396,0.0000018360,0.0000018328,0.0000018301, +0.0000018280,0.0000018266,0.0000018257,0.0000018245,0.0000018226, +0.0000018193,0.0000018145,0.0000018093,0.0000018048,0.0000018009, +0.0000017968,0.0000017920,0.0000017868,0.0000017816,0.0000017771, +0.0000017744,0.0000017741,0.0000017755,0.0000017789,0.0000017835, +0.0000017883,0.0000017936,0.0000017998,0.0000018064,0.0000018125, +0.0000018179,0.0000018236,0.0000018302,0.0000018376,0.0000018445, +0.0000018498,0.0000018529,0.0000018543,0.0000018553,0.0000018564, +0.0000018571,0.0000018568,0.0000018554,0.0000018543,0.0000018543, +0.0000018552,0.0000018561,0.0000018561,0.0000018545,0.0000018521, +0.0000018502,0.0000018492,0.0000018487,0.0000018479,0.0000018458, +0.0000018435,0.0000018430,0.0000018448,0.0000018485,0.0000018536, +0.0000018592,0.0000018651,0.0000018709,0.0000018768,0.0000018821, +0.0000018855,0.0000018872,0.0000018893,0.0000018898,0.0000018907, +0.0000018933,0.0000019005,0.0000019092,0.0000019163,0.0000019214, +0.0000019246,0.0000019259,0.0000019259,0.0000019248,0.0000019236, +0.0000019234,0.0000019239,0.0000019242,0.0000019230,0.0000019208, +0.0000019180,0.0000019150,0.0000019118,0.0000019078,0.0000019028, +0.0000018962,0.0000018874,0.0000018775,0.0000018679,0.0000018612, +0.0000018580,0.0000018571,0.0000018578,0.0000018596,0.0000018612, +0.0000018625,0.0000018639,0.0000018643,0.0000018642,0.0000018642, +0.0000018649,0.0000018658,0.0000018664,0.0000018665,0.0000018652, +0.0000018627,0.0000018604,0.0000018587,0.0000018578,0.0000018561, +0.0000018540,0.0000018522,0.0000018508,0.0000018507,0.0000018516, +0.0000018532,0.0000018554,0.0000018578,0.0000018599,0.0000018619, +0.0000018639,0.0000018661,0.0000018680,0.0000018690,0.0000018693, +0.0000018691,0.0000018688,0.0000018684,0.0000018680,0.0000018683, +0.0000018697,0.0000018716,0.0000018734,0.0000018760,0.0000018796, +0.0000018835,0.0000018868,0.0000018894,0.0000018920,0.0000018945, +0.0000018965,0.0000018983,0.0000019003,0.0000019022,0.0000019035, +0.0000019043,0.0000019047,0.0000019048,0.0000019050,0.0000019052, +0.0000019058,0.0000019074,0.0000019089,0.0000019092,0.0000019085, +0.0000019055,0.0000019002,0.0000018925,0.0000018808,0.0000018653, +0.0000018486,0.0000018346,0.0000018265,0.0000018250,0.0000018272, +0.0000018332,0.0000018409,0.0000018486,0.0000018548,0.0000018594, +0.0000018627,0.0000018649,0.0000018661,0.0000018660,0.0000018649, +0.0000018642,0.0000018649,0.0000018666,0.0000018686,0.0000018709, +0.0000018738,0.0000018772,0.0000018812,0.0000018863,0.0000018919, +0.0000018978,0.0000019043,0.0000019109,0.0000019170,0.0000019224, +0.0000019273,0.0000019317,0.0000019350,0.0000019371,0.0000019378, +0.0000019381,0.0000019378,0.0000019363,0.0000019327,0.0000019274, +0.0000019212,0.0000019143,0.0000019076,0.0000019024,0.0000018990, +0.0000018970,0.0000018970,0.0000018988,0.0000019016,0.0000019041, +0.0000019058,0.0000019064,0.0000019057,0.0000019038,0.0000019013, +0.0000018987,0.0000018963,0.0000018935,0.0000018902,0.0000018869, +0.0000018844,0.0000018820,0.0000018794,0.0000018771,0.0000018753, +0.0000018736,0.0000018708,0.0000018672,0.0000018643,0.0000018630, +0.0000018626,0.0000018630,0.0000018642,0.0000018658,0.0000018679, +0.0000018709,0.0000018746,0.0000018782,0.0000018807,0.0000018822, +0.0000018836,0.0000018849,0.0000018859,0.0000018871,0.0000018890, +0.0000018910,0.0000018921,0.0000018920,0.0000018919,0.0000018922, +0.0000018923,0.0000018916,0.0000018912,0.0000018902,0.0000018871, +0.0000018832,0.0000018801,0.0000018767,0.0000018732,0.0000018713, +0.0000018721,0.0000018745,0.0000018764,0.0000018788,0.0000018812, +0.0000018854,0.0000018913,0.0000018961,0.0000018998,0.0000019039, +0.0000019084,0.0000019113,0.0000019136,0.0000019145,0.0000019147, +0.0000019151,0.0000019157,0.0000019158,0.0000019146,0.0000019123, +0.0000019091,0.0000019061,0.0000019037,0.0000019012,0.0000019012, +0.0000019016,0.0000019045,0.0000019080,0.0000019101,0.0000019080, +0.0000019033,0.0000018971,0.0000018910,0.0000018871,0.0000018852, +0.0000018842,0.0000018841,0.0000018855,0.0000018884,0.0000018932, +0.0000018971,0.0000018969,0.0000018944,0.0000018887,0.0000018817, +0.0000018747,0.0000018679,0.0000018622,0.0000018603,0.0000018609, +0.0000018629,0.0000018645,0.0000018632,0.0000018588,0.0000018524, +0.0000018461,0.0000018396,0.0000018350,0.0000018327,0.0000018309, +0.0000018280,0.0000018242,0.0000018201,0.0000018156,0.0000018110, +0.0000018080,0.0000018071,0.0000018075,0.0000018073,0.0000018069, +0.0000018077,0.0000018076,0.0000018072,0.0000018074,0.0000018078, +0.0000018073,0.0000018060,0.0000018040,0.0000018021,0.0000017996, +0.0000017977,0.0000017964,0.0000017951,0.0000017934,0.0000017924, +0.0000017915,0.0000017937,0.0000017954,0.0000017963,0.0000017979, +0.0000017990,0.0000017988,0.0000017987,0.0000017984,0.0000017995, +0.0000018016,0.0000018046,0.0000018082,0.0000018120,0.0000018148, +0.0000018170,0.0000018179,0.0000018170,0.0000018169,0.0000018168, +0.0000018159,0.0000018151,0.0000018147,0.0000018144,0.0000018155, +0.0000018168,0.0000018189,0.0000018213,0.0000018250,0.0000018286, +0.0000018307,0.0000018335,0.0000018346,0.0000018362,0.0000018367, +0.0000018350,0.0000018310,0.0000018248,0.0000018170,0.0000018074, +0.0000017975,0.0000017891,0.0000017808,0.0000017716,0.0000017631, +0.0000017572,0.0000017535,0.0000017504,0.0000017472,0.0000017447, +0.0000017434,0.0000017441,0.0000017467,0.0000017489,0.0000017489, +0.0000017453,0.0000017439,0.0000017432,0.0000017480,0.0000017608, +0.0000017802,0.0000018024,0.0000018234,0.0000018408,0.0000018551, +0.0000018674,0.0000018775,0.0000018857,0.0000018918,0.0000018956, +0.0000018948,0.0000018906,0.0000018829,0.0000018732,0.0000018635, +0.0000018557,0.0000018503,0.0000018490,0.0000018485,0.0000018498, +0.0000018517,0.0000018541,0.0000018563,0.0000018574,0.0000018582, +0.0000018606,0.0000018650,0.0000018677,0.0000018692,0.0000018706, +0.0000018716,0.0000018730,0.0000018747,0.0000018752,0.0000018743, +0.0000018717,0.0000018688,0.0000018666,0.0000018648,0.0000018625, +0.0000018592,0.0000018557,0.0000018521,0.0000018482,0.0000018444, +0.0000018411,0.0000018369,0.0000018305,0.0000018234,0.0000018174, +0.0000018144,0.0000018130,0.0000018111,0.0000018087,0.0000018060, +0.0000018025,0.0000017977,0.0000017911,0.0000017847,0.0000017813, +0.0000017810,0.0000017824,0.0000017835,0.0000017839,0.0000017844, +0.0000017863,0.0000017897,0.0000017923,0.0000017958,0.0000018009, +0.0000018050,0.0000018058,0.0000018058,0.0000018060,0.0000018056, +0.0000018040,0.0000018023,0.0000018013,0.0000018003,0.0000017982, +0.0000017956,0.0000017943,0.0000017947,0.0000017961,0.0000017976, +0.0000017986,0.0000017998,0.0000018008,0.0000018008,0.0000018005, +0.0000017994,0.0000017989,0.0000017989,0.0000017988,0.0000017990, +0.0000018004,0.0000018031,0.0000018059,0.0000018093,0.0000018132, +0.0000018168,0.0000018193,0.0000018197,0.0000018201,0.0000018195, +0.0000018194,0.0000018201,0.0000018229,0.0000018265,0.0000018295, +0.0000018311,0.0000018310,0.0000018313,0.0000018310,0.0000018301, +0.0000018283,0.0000018266,0.0000018263,0.0000018272,0.0000018307, +0.0000018345,0.0000018377,0.0000018399,0.0000018419,0.0000018452, +0.0000018503,0.0000018555,0.0000018574,0.0000018568,0.0000018539, +0.0000018509,0.0000018502,0.0000018526,0.0000018566,0.0000018599, +0.0000018615,0.0000018629,0.0000018645,0.0000018652,0.0000018646, +0.0000018635,0.0000018628,0.0000018625,0.0000018623,0.0000018622, +0.0000018617,0.0000018608,0.0000018602,0.0000018595,0.0000018587, +0.0000018574,0.0000018555,0.0000018532,0.0000018496,0.0000018442, +0.0000018369,0.0000018292,0.0000018219,0.0000018159,0.0000018115, +0.0000018071,0.0000018007,0.0000017926,0.0000017830,0.0000017741, +0.0000017668,0.0000017654,0.0000017667,0.0000017685,0.0000017698, +0.0000017702,0.0000017709,0.0000017726,0.0000017739,0.0000017744, +0.0000017738,0.0000017718,0.0000017683,0.0000017642,0.0000017614, +0.0000017589,0.0000017555,0.0000017530,0.0000017527,0.0000017541, +0.0000017569,0.0000017589,0.0000017596,0.0000017618,0.0000017678, +0.0000017752,0.0000017819,0.0000017869,0.0000017903,0.0000017939, +0.0000017959,0.0000017940,0.0000017896,0.0000017857,0.0000017856, +0.0000017865,0.0000017848,0.0000017771,0.0000017676,0.0000017635, +0.0000017639,0.0000017671,0.0000017726,0.0000017778,0.0000017807, +0.0000017814,0.0000017821,0.0000017820,0.0000017811,0.0000017797, +0.0000017755,0.0000017711,0.0000017679,0.0000017637,0.0000017570, +0.0000017442,0.0000017430,0.0000017501,0.0000017550,0.0000017587, +0.0000017720,0.0000017848,0.0000018056,0.0000018331,0.0000018411, +0.0000018231,0.0000017992,0.0000017840,0.0000017846,0.0000017908, +0.0000017962,0.0000017826,0.0000017747,0.0000017755,0.0000017755, +0.0000017736,0.0000017683,0.0000017583,0.0000017523,0.0000017557, +0.0000017636,0.0000017675,0.0000017717,0.0000017756,0.0000017768, +0.0000017747,0.0000017674,0.0000017576,0.0000017519,0.0000017511, +0.0000017544,0.0000017644,0.0000017720,0.0000017622,0.0000017438, +0.0000017383,0.0000017465,0.0000017610,0.0000017697,0.0000017694, +0.0000017634,0.0000017577,0.0000017564,0.0000017576,0.0000017579, +0.0000017553,0.0000017533,0.0000017531,0.0000017494,0.0000017433, +0.0000017418,0.0000017452,0.0000017529,0.0000017640,0.0000017721, +0.0000017756,0.0000017775,0.0000017805,0.0000017824,0.0000017821, +0.0000017768,0.0000017698,0.0000017646,0.0000017631,0.0000017696, +0.0000017864,0.0000017986,0.0000018066,0.0000018258,0.0000018404, +0.0000018359,0.0000018158,0.0000018007,0.0000017978,0.0000017979, +0.0000017990,0.0000018012,0.0000018041,0.0000018076,0.0000018108, +0.0000018135,0.0000018153,0.0000018172,0.0000018186,0.0000018194, +0.0000018203,0.0000018218,0.0000018239,0.0000018265,0.0000018292, +0.0000018189,0.0000018212,0.0000018238,0.0000018270,0.0000018304, +0.0000018336,0.0000018364,0.0000018397,0.0000018445,0.0000018494, +0.0000018495,0.0000018437,0.0000018388,0.0000018388,0.0000018409, +0.0000018405,0.0000018365,0.0000018310,0.0000018264,0.0000018240, +0.0000018246,0.0000018326,0.0000018448,0.0000018537,0.0000018620, +0.0000018687,0.0000018664,0.0000018580,0.0000018532,0.0000018524, +0.0000018559,0.0000018601,0.0000018559,0.0000018455,0.0000018408, +0.0000018394,0.0000018416,0.0000018548,0.0000018689,0.0000018726, +0.0000018739,0.0000018766,0.0000018781,0.0000018781,0.0000018770, +0.0000018747,0.0000018725,0.0000018743,0.0000018849,0.0000019009, +0.0000019092,0.0000019062,0.0000018913,0.0000018738,0.0000018685, +0.0000018731,0.0000018824,0.0000018862,0.0000018853,0.0000018838, +0.0000018849,0.0000018882,0.0000018926,0.0000018973,0.0000019015, +0.0000019043,0.0000019055,0.0000019056,0.0000019051,0.0000019040, +0.0000019025,0.0000019010,0.0000019003,0.0000019003,0.0000019006, +0.0000019014,0.0000019007,0.0000018994,0.0000018976,0.0000018959, +0.0000018947,0.0000018947,0.0000018954,0.0000018961,0.0000018969, +0.0000018979,0.0000018989,0.0000018999,0.0000019009,0.0000019020, +0.0000019032,0.0000019049,0.0000019072,0.0000019097,0.0000019122, +0.0000019150,0.0000019170,0.0000019180,0.0000019166,0.0000019136, +0.0000019076,0.0000019037,0.0000019048,0.0000019088,0.0000019197, +0.0000019337,0.0000019466,0.0000019567,0.0000019624,0.0000019632, +0.0000019610,0.0000019575,0.0000019541,0.0000019524,0.0000019520, +0.0000019518,0.0000019521,0.0000019522,0.0000019523,0.0000019523, +0.0000019523,0.0000019523,0.0000019522,0.0000019520,0.0000019519, +0.0000019521,0.0000019526,0.0000019530,0.0000019537,0.0000019543, +0.0000019546,0.0000019544,0.0000019544,0.0000019547,0.0000019553, +0.0000019560,0.0000019569,0.0000019578,0.0000019581,0.0000019579, +0.0000019570,0.0000019557,0.0000019538,0.0000019516,0.0000019491, +0.0000019468,0.0000019443,0.0000019418,0.0000019399,0.0000019395, +0.0000019398,0.0000019405,0.0000019413,0.0000019420,0.0000019426, +0.0000019429,0.0000019431,0.0000019437,0.0000019445,0.0000019454, +0.0000019465,0.0000019477,0.0000019489,0.0000019501,0.0000019513, +0.0000019522,0.0000019528,0.0000019529,0.0000019534,0.0000019537, +0.0000019539,0.0000019540,0.0000019543,0.0000019543,0.0000019544, +0.0000019548,0.0000019553,0.0000019559,0.0000019568,0.0000019580, +0.0000019597,0.0000019610,0.0000019617,0.0000019620,0.0000019620, +0.0000019621,0.0000019621,0.0000019618,0.0000019616,0.0000019613, +0.0000019606,0.0000019603,0.0000019605,0.0000019608,0.0000019611, +0.0000019616,0.0000019617,0.0000019609,0.0000019594,0.0000019571, +0.0000019538,0.0000019498,0.0000019451,0.0000019401,0.0000019354, +0.0000019314,0.0000019288,0.0000019274,0.0000019270,0.0000019278, +0.0000019297,0.0000019321,0.0000019345,0.0000019367,0.0000019386, +0.0000019404,0.0000019414,0.0000019410,0.0000019394,0.0000019357, +0.0000019298,0.0000019225,0.0000019149,0.0000019085,0.0000019036, +0.0000018987,0.0000018920,0.0000018832,0.0000018729,0.0000018620, +0.0000018521,0.0000018440,0.0000018375,0.0000018322,0.0000018279, +0.0000018248,0.0000018226,0.0000018204,0.0000018181,0.0000018156, +0.0000018127,0.0000018104,0.0000018100,0.0000018106,0.0000018113, +0.0000018117,0.0000018113,0.0000018105,0.0000018096,0.0000018084, +0.0000018072,0.0000018064,0.0000018052,0.0000018031,0.0000018014, +0.0000018007,0.0000017999,0.0000017992,0.0000017989,0.0000018016, +0.0000018053,0.0000018093,0.0000018135,0.0000018177,0.0000018217, +0.0000018255,0.0000018284,0.0000018298,0.0000018300,0.0000018294, +0.0000018282,0.0000018268,0.0000018256,0.0000018253,0.0000018262, +0.0000018279,0.0000018305,0.0000018339,0.0000018374,0.0000018413, +0.0000018456,0.0000018497,0.0000018535,0.0000018564,0.0000018581, +0.0000018584,0.0000018575,0.0000018560,0.0000018556,0.0000018572, +0.0000018602,0.0000018632,0.0000018655,0.0000018665,0.0000018659, +0.0000018635,0.0000018599,0.0000018560,0.0000018523,0.0000018498, +0.0000018470,0.0000018463,0.0000018473,0.0000018494,0.0000018523, +0.0000018557,0.0000018587,0.0000018620,0.0000018656,0.0000018683, +0.0000018703,0.0000018711,0.0000018718,0.0000018719,0.0000018702, +0.0000018675,0.0000018653,0.0000018634,0.0000018615,0.0000018609, +0.0000018605,0.0000018599,0.0000018592,0.0000018582,0.0000018571, +0.0000018561,0.0000018546,0.0000018525,0.0000018499,0.0000018468, +0.0000018431,0.0000018395,0.0000018366,0.0000018340,0.0000018318, +0.0000018301,0.0000018291,0.0000018286,0.0000018279,0.0000018271, +0.0000018264,0.0000018249,0.0000018219,0.0000018182,0.0000018148, +0.0000018111,0.0000018067,0.0000018018,0.0000017968,0.0000017917, +0.0000017870,0.0000017828,0.0000017795,0.0000017770,0.0000017759, +0.0000017766,0.0000017796,0.0000017844,0.0000017899,0.0000017959, +0.0000018026,0.0000018105,0.0000018184,0.0000018255,0.0000018321, +0.0000018392,0.0000018471,0.0000018548,0.0000018610,0.0000018647, +0.0000018657,0.0000018659,0.0000018663,0.0000018667,0.0000018662, +0.0000018651,0.0000018639,0.0000018634,0.0000018634,0.0000018636, +0.0000018635,0.0000018623,0.0000018603,0.0000018585,0.0000018572, +0.0000018558,0.0000018539,0.0000018510,0.0000018479,0.0000018464, +0.0000018476,0.0000018509,0.0000018559,0.0000018619,0.0000018679, +0.0000018733,0.0000018770,0.0000018808,0.0000018822,0.0000018830, +0.0000018840,0.0000018872,0.0000018916,0.0000019001,0.0000019103, +0.0000019197,0.0000019268,0.0000019318,0.0000019354,0.0000019373, +0.0000019379,0.0000019375,0.0000019364,0.0000019358,0.0000019359, +0.0000019360,0.0000019354,0.0000019331,0.0000019299,0.0000019259, +0.0000019214,0.0000019168,0.0000019125,0.0000019083,0.0000019025, +0.0000018952,0.0000018873,0.0000018796,0.0000018739,0.0000018707, +0.0000018688,0.0000018683,0.0000018687,0.0000018688,0.0000018698, +0.0000018707,0.0000018704,0.0000018701,0.0000018701,0.0000018707, +0.0000018716,0.0000018724,0.0000018721,0.0000018702,0.0000018671, +0.0000018635,0.0000018605,0.0000018580,0.0000018558,0.0000018535, +0.0000018519,0.0000018514,0.0000018524,0.0000018542,0.0000018560, +0.0000018578,0.0000018592,0.0000018600,0.0000018603,0.0000018616, +0.0000018634,0.0000018647,0.0000018656,0.0000018662,0.0000018664, +0.0000018664,0.0000018663,0.0000018664,0.0000018674,0.0000018692, +0.0000018713,0.0000018739,0.0000018771,0.0000018805,0.0000018838, +0.0000018866,0.0000018891,0.0000018917,0.0000018939,0.0000018956, +0.0000018970,0.0000018980,0.0000018984,0.0000018985,0.0000018990, +0.0000018998,0.0000019008,0.0000019025,0.0000019042,0.0000019061, +0.0000019084,0.0000019103,0.0000019114,0.0000019113,0.0000019090, +0.0000019046,0.0000018973,0.0000018861,0.0000018711,0.0000018551, +0.0000018407,0.0000018304,0.0000018261,0.0000018261,0.0000018295, +0.0000018350,0.0000018407,0.0000018457,0.0000018496,0.0000018522, +0.0000018538,0.0000018548,0.0000018549,0.0000018550,0.0000018565, +0.0000018590,0.0000018613,0.0000018631,0.0000018645,0.0000018654, +0.0000018665,0.0000018682,0.0000018704,0.0000018732,0.0000018775, +0.0000018840,0.0000018926,0.0000019019,0.0000019111,0.0000019194, +0.0000019263,0.0000019319,0.0000019360,0.0000019381,0.0000019392, +0.0000019395,0.0000019388,0.0000019366,0.0000019333,0.0000019289, +0.0000019235,0.0000019175,0.0000019123,0.0000019084,0.0000019058, +0.0000019059,0.0000019071,0.0000019094,0.0000019118,0.0000019134, +0.0000019138,0.0000019129,0.0000019110,0.0000019084,0.0000019068, +0.0000019050,0.0000019024,0.0000018991,0.0000018961,0.0000018934, +0.0000018905,0.0000018872,0.0000018845,0.0000018828,0.0000018810, +0.0000018781,0.0000018747,0.0000018713,0.0000018686,0.0000018668, +0.0000018663,0.0000018668,0.0000018688,0.0000018718,0.0000018750, +0.0000018782,0.0000018809,0.0000018827,0.0000018837,0.0000018849, +0.0000018864,0.0000018883,0.0000018911,0.0000018946,0.0000018982, +0.0000019006,0.0000019013,0.0000019021,0.0000019029,0.0000019024, +0.0000019005,0.0000018978,0.0000018939,0.0000018888,0.0000018842, +0.0000018808,0.0000018776,0.0000018750,0.0000018742,0.0000018750, +0.0000018766,0.0000018776,0.0000018775,0.0000018786,0.0000018824, +0.0000018871,0.0000018915,0.0000018959,0.0000019009,0.0000019060, +0.0000019100,0.0000019126,0.0000019149,0.0000019166,0.0000019188, +0.0000019208,0.0000019217,0.0000019211,0.0000019195,0.0000019175, +0.0000019147,0.0000019111,0.0000019074,0.0000019048,0.0000019043, +0.0000019054,0.0000019067,0.0000019065,0.0000019047,0.0000019007, +0.0000018952,0.0000018906,0.0000018880,0.0000018869,0.0000018861, +0.0000018853,0.0000018851,0.0000018877,0.0000018908,0.0000018928, +0.0000018920,0.0000018890,0.0000018846,0.0000018786,0.0000018718, +0.0000018655,0.0000018634,0.0000018644,0.0000018688,0.0000018734, +0.0000018751,0.0000018729,0.0000018670,0.0000018588,0.0000018501, +0.0000018453,0.0000018438,0.0000018433,0.0000018419,0.0000018390, +0.0000018339,0.0000018266,0.0000018183,0.0000018113,0.0000018079, +0.0000018082,0.0000018092,0.0000018117,0.0000018136,0.0000018134, +0.0000018126,0.0000018127,0.0000018131,0.0000018130,0.0000018119, +0.0000018103,0.0000018087,0.0000018071,0.0000018060,0.0000018051, +0.0000018032,0.0000018000,0.0000017963,0.0000017937,0.0000017950, +0.0000017971,0.0000017993,0.0000018016,0.0000018033,0.0000018031, +0.0000018021,0.0000018007,0.0000017998,0.0000018012,0.0000018036, +0.0000018074,0.0000018119,0.0000018159,0.0000018188,0.0000018197, +0.0000018187,0.0000018180,0.0000018175,0.0000018174,0.0000018181, +0.0000018186,0.0000018186,0.0000018188,0.0000018195,0.0000018208, +0.0000018223,0.0000018257,0.0000018287,0.0000018317,0.0000018351, +0.0000018375,0.0000018409,0.0000018426,0.0000018411,0.0000018378, +0.0000018324,0.0000018252,0.0000018175,0.0000018107,0.0000018036, +0.0000017956,0.0000017860,0.0000017767,0.0000017697,0.0000017643, +0.0000017597,0.0000017565,0.0000017544,0.0000017532,0.0000017544, +0.0000017576,0.0000017590,0.0000017571,0.0000017518,0.0000017454, +0.0000017410,0.0000017369,0.0000017379,0.0000017478,0.0000017636, +0.0000017824,0.0000018026,0.0000018225,0.0000018410,0.0000018565, +0.0000018688,0.0000018782,0.0000018851,0.0000018899,0.0000018899, +0.0000018910,0.0000018881,0.0000018812,0.0000018725,0.0000018653, +0.0000018595,0.0000018556,0.0000018530,0.0000018519,0.0000018509, +0.0000018488,0.0000018462,0.0000018460,0.0000018493,0.0000018552, +0.0000018608,0.0000018654,0.0000018690,0.0000018720,0.0000018745, +0.0000018752,0.0000018745,0.0000018723,0.0000018698,0.0000018674, +0.0000018655,0.0000018634,0.0000018609,0.0000018580,0.0000018546, +0.0000018504,0.0000018451,0.0000018399,0.0000018355,0.0000018307, +0.0000018249,0.0000018192,0.0000018153,0.0000018134,0.0000018117, +0.0000018090,0.0000018064,0.0000018039,0.0000018006,0.0000017946, +0.0000017876,0.0000017822,0.0000017811,0.0000017823,0.0000017836, +0.0000017842,0.0000017849,0.0000017859,0.0000017878,0.0000017892, +0.0000017905,0.0000017935,0.0000017978,0.0000018005,0.0000018012, +0.0000018012,0.0000018018,0.0000018021,0.0000018018,0.0000018012, +0.0000018002,0.0000017990,0.0000017976,0.0000017965,0.0000017962, +0.0000017966,0.0000017974,0.0000017982,0.0000017996,0.0000018015, +0.0000018028,0.0000018027,0.0000018013,0.0000017993,0.0000017975, +0.0000017949,0.0000017923,0.0000017908,0.0000017917,0.0000017944, +0.0000017982,0.0000018029,0.0000018080,0.0000018129,0.0000018167, +0.0000018194,0.0000018200,0.0000018204,0.0000018207,0.0000018216, +0.0000018227,0.0000018241,0.0000018258,0.0000018277,0.0000018307, +0.0000018329,0.0000018352,0.0000018349,0.0000018326,0.0000018302, +0.0000018294,0.0000018300,0.0000018311,0.0000018314,0.0000018320, +0.0000018337,0.0000018377,0.0000018442,0.0000018512,0.0000018559, +0.0000018566,0.0000018554,0.0000018521,0.0000018495,0.0000018496, +0.0000018521,0.0000018548,0.0000018577,0.0000018607,0.0000018642, +0.0000018666,0.0000018685,0.0000018692,0.0000018695,0.0000018693, +0.0000018681,0.0000018667,0.0000018650,0.0000018635,0.0000018623, +0.0000018609,0.0000018599,0.0000018592,0.0000018598,0.0000018626, +0.0000018644,0.0000018635,0.0000018599,0.0000018529,0.0000018431, +0.0000018318,0.0000018220,0.0000018142,0.0000018081,0.0000018033, +0.0000017980,0.0000017915,0.0000017837,0.0000017779,0.0000017740, +0.0000017723,0.0000017710,0.0000017695,0.0000017711,0.0000017739, +0.0000017762,0.0000017772,0.0000017767,0.0000017750,0.0000017727, +0.0000017701,0.0000017680,0.0000017653,0.0000017615,0.0000017590, +0.0000017588,0.0000017608,0.0000017633,0.0000017643,0.0000017652, +0.0000017688,0.0000017751,0.0000017806,0.0000017849,0.0000017881, +0.0000017912,0.0000017957,0.0000017973,0.0000017944,0.0000017892, +0.0000017877,0.0000017899,0.0000017901,0.0000017840,0.0000017729, +0.0000017655,0.0000017653,0.0000017688,0.0000017750,0.0000017810, +0.0000017839,0.0000017847,0.0000017867,0.0000017889,0.0000017887, +0.0000017866,0.0000017825,0.0000017765,0.0000017712,0.0000017682, +0.0000017652,0.0000017586,0.0000017442,0.0000017408,0.0000017478, +0.0000017528,0.0000017580,0.0000017746,0.0000017861,0.0000018145, +0.0000018416,0.0000018437,0.0000018199,0.0000017952,0.0000017814, +0.0000017843,0.0000017912,0.0000017957,0.0000017821,0.0000017743, +0.0000017732,0.0000017729,0.0000017708,0.0000017647,0.0000017558, +0.0000017536,0.0000017608,0.0000017674,0.0000017715,0.0000017772, +0.0000017803,0.0000017801,0.0000017773,0.0000017708,0.0000017602, +0.0000017530,0.0000017520,0.0000017541,0.0000017639,0.0000017719, +0.0000017632,0.0000017442,0.0000017381,0.0000017450,0.0000017589, +0.0000017673,0.0000017666,0.0000017613,0.0000017568,0.0000017563, +0.0000017576,0.0000017579,0.0000017557,0.0000017542,0.0000017549, +0.0000017519,0.0000017445,0.0000017413,0.0000017442,0.0000017501, +0.0000017576,0.0000017663,0.0000017729,0.0000017764,0.0000017772, +0.0000017752,0.0000017707,0.0000017664,0.0000017640,0.0000017648, +0.0000017757,0.0000017935,0.0000018034,0.0000018143,0.0000018345, +0.0000018436,0.0000018346,0.0000018163,0.0000018064,0.0000018059, +0.0000018067,0.0000018079,0.0000018090,0.0000018099,0.0000018109, +0.0000018122,0.0000018136,0.0000018150,0.0000018156,0.0000018149, +0.0000018131,0.0000018115,0.0000018111,0.0000018119,0.0000018140, +0.0000018165,0.0000018091,0.0000018113,0.0000018141,0.0000018176, +0.0000018214,0.0000018255,0.0000018298,0.0000018340,0.0000018390, +0.0000018461,0.0000018516,0.0000018513,0.0000018456,0.0000018410, +0.0000018413,0.0000018439,0.0000018447,0.0000018412,0.0000018340, +0.0000018254,0.0000018201,0.0000018240,0.0000018373,0.0000018494, +0.0000018594,0.0000018680,0.0000018672,0.0000018587,0.0000018531, +0.0000018531,0.0000018570,0.0000018587,0.0000018510,0.0000018427, +0.0000018403,0.0000018394,0.0000018433,0.0000018592,0.0000018728, +0.0000018759,0.0000018766,0.0000018774,0.0000018774,0.0000018762, +0.0000018753,0.0000018749,0.0000018745,0.0000018732,0.0000018760, +0.0000018881,0.0000019037,0.0000019104,0.0000019036,0.0000018868, +0.0000018729,0.0000018718,0.0000018764,0.0000018824,0.0000018849, +0.0000018852,0.0000018858,0.0000018873,0.0000018895,0.0000018919, +0.0000018942,0.0000018962,0.0000018976,0.0000018983,0.0000018982, +0.0000018975,0.0000018963,0.0000018949,0.0000018941,0.0000018943, +0.0000018957,0.0000018982,0.0000019009,0.0000019019,0.0000019031, +0.0000019030,0.0000019022,0.0000019019,0.0000019022,0.0000019028, +0.0000019039,0.0000019052,0.0000019066,0.0000019080,0.0000019094, +0.0000019108,0.0000019125,0.0000019144,0.0000019159,0.0000019169, +0.0000019164,0.0000019149,0.0000019106,0.0000019063,0.0000019045, +0.0000019066,0.0000019131,0.0000019257,0.0000019389,0.0000019503, +0.0000019579,0.0000019605,0.0000019598,0.0000019581,0.0000019561, +0.0000019544,0.0000019531,0.0000019526,0.0000019528,0.0000019521, +0.0000019499,0.0000019468,0.0000019430,0.0000019388,0.0000019350, +0.0000019321,0.0000019298,0.0000019282,0.0000019275,0.0000019277, +0.0000019289,0.0000019311,0.0000019340,0.0000019376,0.0000019420, +0.0000019466,0.0000019507,0.0000019541,0.0000019567,0.0000019578, +0.0000019578,0.0000019567,0.0000019543,0.0000019511,0.0000019481, +0.0000019458,0.0000019443,0.0000019440,0.0000019439,0.0000019450, +0.0000019461,0.0000019465,0.0000019463,0.0000019457,0.0000019458, +0.0000019467,0.0000019476,0.0000019482,0.0000019482,0.0000019482, +0.0000019485,0.0000019496,0.0000019502,0.0000019514,0.0000019527, +0.0000019542,0.0000019556,0.0000019571,0.0000019583,0.0000019594, +0.0000019605,0.0000019613,0.0000019619,0.0000019630,0.0000019642, +0.0000019651,0.0000019660,0.0000019668,0.0000019679,0.0000019691, +0.0000019702,0.0000019710,0.0000019718,0.0000019725,0.0000019733, +0.0000019741,0.0000019748,0.0000019750,0.0000019750,0.0000019750, +0.0000019750,0.0000019756,0.0000019760,0.0000019761,0.0000019758, +0.0000019752,0.0000019746,0.0000019742,0.0000019740,0.0000019738, +0.0000019732,0.0000019723,0.0000019710,0.0000019693,0.0000019675, +0.0000019657,0.0000019634,0.0000019610,0.0000019582,0.0000019544, +0.0000019485,0.0000019411,0.0000019330,0.0000019257,0.0000019203, +0.0000019172,0.0000019168,0.0000019190,0.0000019222,0.0000019257, +0.0000019290,0.0000019322,0.0000019356,0.0000019387,0.0000019407, +0.0000019412,0.0000019401,0.0000019367,0.0000019304,0.0000019230, +0.0000019156,0.0000019090,0.0000019038,0.0000018996,0.0000018955, +0.0000018915,0.0000018874,0.0000018832,0.0000018790,0.0000018753, +0.0000018724,0.0000018699,0.0000018670,0.0000018632,0.0000018584, +0.0000018527,0.0000018473,0.0000018427,0.0000018389,0.0000018357, +0.0000018331,0.0000018301,0.0000018265,0.0000018232,0.0000018200, +0.0000018171,0.0000018149,0.0000018128,0.0000018101,0.0000018074, +0.0000018049,0.0000018025,0.0000018000,0.0000017983,0.0000017977, +0.0000017977,0.0000017985,0.0000017996,0.0000018012,0.0000018032, +0.0000018053,0.0000018085,0.0000018116,0.0000018145,0.0000018172, +0.0000018194,0.0000018211,0.0000018224,0.0000018232,0.0000018240, +0.0000018254,0.0000018269,0.0000018288,0.0000018311,0.0000018336, +0.0000018367,0.0000018404,0.0000018441,0.0000018475,0.0000018505, +0.0000018526,0.0000018540,0.0000018543,0.0000018534,0.0000018516, +0.0000018495,0.0000018484,0.0000018490,0.0000018511,0.0000018534, +0.0000018551,0.0000018557,0.0000018548,0.0000018526,0.0000018494, +0.0000018468,0.0000018444,0.0000018429,0.0000018424,0.0000018424, +0.0000018425,0.0000018441,0.0000018461,0.0000018485,0.0000018511, +0.0000018533,0.0000018553,0.0000018571,0.0000018583,0.0000018588, +0.0000018586,0.0000018578,0.0000018564,0.0000018550,0.0000018535, +0.0000018518,0.0000018500,0.0000018481,0.0000018464,0.0000018450, +0.0000018437,0.0000018422,0.0000018404,0.0000018383,0.0000018362, +0.0000018341,0.0000018325,0.0000018314,0.0000018307,0.0000018306, +0.0000018305,0.0000018305,0.0000018302,0.0000018288,0.0000018267, +0.0000018246,0.0000018221,0.0000018194,0.0000018163,0.0000018125, +0.0000018071,0.0000018009,0.0000017953,0.0000017916,0.0000017892, +0.0000017876,0.0000017865,0.0000017860,0.0000017856,0.0000017858, +0.0000017874,0.0000017912,0.0000017969,0.0000018039,0.0000018117, +0.0000018205,0.0000018299,0.0000018383,0.0000018454,0.0000018517, +0.0000018578,0.0000018634,0.0000018681,0.0000018717,0.0000018734, +0.0000018739,0.0000018742,0.0000018744,0.0000018743,0.0000018737, +0.0000018730,0.0000018725,0.0000018723,0.0000018722,0.0000018720, +0.0000018711,0.0000018693,0.0000018678,0.0000018665,0.0000018644, +0.0000018613,0.0000018573,0.0000018537,0.0000018519,0.0000018524, +0.0000018546,0.0000018575,0.0000018613,0.0000018659,0.0000018691, +0.0000018713,0.0000018729,0.0000018746,0.0000018775,0.0000018823, +0.0000018887,0.0000018974,0.0000019082,0.0000019195,0.0000019289, +0.0000019366,0.0000019429,0.0000019475,0.0000019506,0.0000019524, +0.0000019532,0.0000019532,0.0000019530,0.0000019534,0.0000019534, +0.0000019528,0.0000019512,0.0000019482,0.0000019442,0.0000019389, +0.0000019328,0.0000019267,0.0000019209,0.0000019148,0.0000019080, +0.0000019008,0.0000018938,0.0000018880,0.0000018845,0.0000018835, +0.0000018832,0.0000018831,0.0000018826,0.0000018822,0.0000018827, +0.0000018826,0.0000018826,0.0000018824,0.0000018829,0.0000018837, +0.0000018851,0.0000018861,0.0000018857,0.0000018837,0.0000018802, +0.0000018746,0.0000018686,0.0000018636,0.0000018587,0.0000018545, +0.0000018516,0.0000018514,0.0000018527,0.0000018553,0.0000018578, +0.0000018595,0.0000018603,0.0000018606,0.0000018609,0.0000018621, +0.0000018629,0.0000018638,0.0000018644,0.0000018647,0.0000018651, +0.0000018652,0.0000018654,0.0000018667,0.0000018684,0.0000018703, +0.0000018723,0.0000018750,0.0000018778,0.0000018804,0.0000018824, +0.0000018840,0.0000018856,0.0000018867,0.0000018873,0.0000018878, +0.0000018886,0.0000018897,0.0000018914,0.0000018934,0.0000018959, +0.0000018987,0.0000019019,0.0000019050,0.0000019078,0.0000019108, +0.0000019134,0.0000019152,0.0000019160,0.0000019155,0.0000019127, +0.0000019076,0.0000019002,0.0000018895,0.0000018755,0.0000018606, +0.0000018469,0.0000018358,0.0000018292,0.0000018282,0.0000018301, +0.0000018337,0.0000018371,0.0000018403,0.0000018430,0.0000018450, +0.0000018466,0.0000018477,0.0000018489,0.0000018517,0.0000018557, +0.0000018592,0.0000018618,0.0000018637,0.0000018650,0.0000018660, +0.0000018670,0.0000018681,0.0000018688,0.0000018693,0.0000018703, +0.0000018727,0.0000018783,0.0000018862,0.0000018950,0.0000019043, +0.0000019136,0.0000019225,0.0000019297,0.0000019350,0.0000019382, +0.0000019391,0.0000019386,0.0000019379,0.0000019362,0.0000019335, +0.0000019293,0.0000019241,0.0000019193,0.0000019152,0.0000019124, +0.0000019125,0.0000019135,0.0000019159,0.0000019191,0.0000019213, +0.0000019224,0.0000019225,0.0000019218,0.0000019212,0.0000019201, +0.0000019181,0.0000019152,0.0000019124,0.0000019092,0.0000019053, +0.0000019010,0.0000018967,0.0000018927,0.0000018896,0.0000018868, +0.0000018838,0.0000018806,0.0000018776,0.0000018752,0.0000018729, +0.0000018713,0.0000018717,0.0000018739,0.0000018765,0.0000018784, +0.0000018799,0.0000018810,0.0000018814,0.0000018819,0.0000018827, +0.0000018840,0.0000018863,0.0000018900,0.0000018947,0.0000018993, +0.0000019025,0.0000019044,0.0000019072,0.0000019105,0.0000019111, +0.0000019097,0.0000019072,0.0000019031,0.0000018981,0.0000018936, +0.0000018895,0.0000018851,0.0000018808,0.0000018778,0.0000018768, +0.0000018773,0.0000018768,0.0000018760,0.0000018768,0.0000018794, +0.0000018825,0.0000018855,0.0000018892,0.0000018941,0.0000018994, +0.0000019044,0.0000019091,0.0000019136,0.0000019179,0.0000019211, +0.0000019225,0.0000019229,0.0000019227,0.0000019220,0.0000019207, +0.0000019188,0.0000019161,0.0000019131,0.0000019103,0.0000019081, +0.0000019064,0.0000019056,0.0000019042,0.0000019015,0.0000018973, +0.0000018931,0.0000018906,0.0000018907,0.0000018906,0.0000018896, +0.0000018875,0.0000018874,0.0000018874,0.0000018875,0.0000018867, +0.0000018855,0.0000018833,0.0000018793,0.0000018733,0.0000018665, +0.0000018631,0.0000018630,0.0000018671,0.0000018732,0.0000018778, +0.0000018799,0.0000018776,0.0000018713,0.0000018634,0.0000018577, +0.0000018547,0.0000018531,0.0000018523,0.0000018508,0.0000018475, +0.0000018418,0.0000018335,0.0000018239,0.0000018164,0.0000018119, +0.0000018108,0.0000018138,0.0000018155,0.0000018156,0.0000018152, +0.0000018156,0.0000018172,0.0000018184,0.0000018186,0.0000018179, +0.0000018172,0.0000018176,0.0000018185,0.0000018187,0.0000018173, +0.0000018134,0.0000018072,0.0000018007,0.0000017984,0.0000017997, +0.0000018021,0.0000018054,0.0000018080,0.0000018094,0.0000018091, +0.0000018073,0.0000018052,0.0000018047,0.0000018064,0.0000018099, +0.0000018148,0.0000018199,0.0000018234,0.0000018245,0.0000018236, +0.0000018223,0.0000018212,0.0000018218,0.0000018237,0.0000018253, +0.0000018255,0.0000018256,0.0000018262,0.0000018270,0.0000018280, +0.0000018302,0.0000018318,0.0000018345,0.0000018368,0.0000018395, +0.0000018439,0.0000018457,0.0000018450,0.0000018421,0.0000018377, +0.0000018326,0.0000018282,0.0000018231,0.0000018169,0.0000018087, +0.0000017994,0.0000017909,0.0000017838,0.0000017771,0.0000017707, +0.0000017662,0.0000017629,0.0000017624,0.0000017648,0.0000017685, +0.0000017693,0.0000017661,0.0000017594,0.0000017512,0.0000017436, +0.0000017356,0.0000017331,0.0000017335,0.0000017384,0.0000017483, +0.0000017629,0.0000017821,0.0000018027,0.0000018231,0.0000018413, +0.0000018562,0.0000018675,0.0000018761,0.0000018834,0.0000018902, +0.0000018900,0.0000018895,0.0000018866,0.0000018817,0.0000018758, +0.0000018710,0.0000018666,0.0000018620,0.0000018564,0.0000018490, +0.0000018434,0.0000018399,0.0000018411,0.0000018448,0.0000018493, +0.0000018540,0.0000018589,0.0000018640,0.0000018681,0.0000018699, +0.0000018693,0.0000018674,0.0000018654,0.0000018638,0.0000018621, +0.0000018600,0.0000018576,0.0000018546,0.0000018507,0.0000018450, +0.0000018382,0.0000018326,0.0000018287,0.0000018246,0.0000018198, +0.0000018156,0.0000018128,0.0000018106,0.0000018080,0.0000018049, +0.0000018029,0.0000018013,0.0000017975,0.0000017906,0.0000017840, +0.0000017812,0.0000017817,0.0000017833,0.0000017846,0.0000017860, +0.0000017873,0.0000017882,0.0000017885,0.0000017890,0.0000017899, +0.0000017922,0.0000017942,0.0000017947,0.0000017947,0.0000017948, +0.0000017954,0.0000017970,0.0000017989,0.0000017994,0.0000017989, +0.0000017978,0.0000017968,0.0000017964,0.0000017967,0.0000017975, +0.0000017983,0.0000017997,0.0000018016,0.0000018034,0.0000018044, +0.0000018043,0.0000018033,0.0000018011,0.0000017978,0.0000017935, +0.0000017889,0.0000017869,0.0000017867,0.0000017883,0.0000017916, +0.0000017961,0.0000018015,0.0000018069,0.0000018118,0.0000018159, +0.0000018192,0.0000018212,0.0000018224,0.0000018222,0.0000018216, +0.0000018215,0.0000018223,0.0000018250,0.0000018289,0.0000018331, +0.0000018360,0.0000018362,0.0000018359,0.0000018357,0.0000018350, +0.0000018338,0.0000018312,0.0000018296,0.0000018278,0.0000018299, +0.0000018349,0.0000018420,0.0000018492,0.0000018542,0.0000018554, +0.0000018539,0.0000018510,0.0000018491,0.0000018486,0.0000018491, +0.0000018506,0.0000018539,0.0000018583,0.0000018637,0.0000018684, +0.0000018719,0.0000018756,0.0000018769,0.0000018766,0.0000018753, +0.0000018737,0.0000018717,0.0000018690,0.0000018651,0.0000018613, +0.0000018592,0.0000018596,0.0000018626,0.0000018656,0.0000018678, +0.0000018667,0.0000018647,0.0000018584,0.0000018496,0.0000018386, +0.0000018267,0.0000018157,0.0000018079,0.0000018038,0.0000018015, +0.0000017986,0.0000017954,0.0000017923,0.0000017877,0.0000017819, +0.0000017765,0.0000017753,0.0000017771,0.0000017778,0.0000017776, +0.0000017763,0.0000017752,0.0000017736,0.0000017719,0.0000017700, +0.0000017671,0.0000017635,0.0000017614,0.0000017615,0.0000017637, +0.0000017664,0.0000017681,0.0000017702,0.0000017745,0.0000017787, +0.0000017819,0.0000017851,0.0000017880,0.0000017928,0.0000017980, +0.0000017983,0.0000017934,0.0000017896,0.0000017918,0.0000017942, +0.0000017904,0.0000017799,0.0000017694,0.0000017676,0.0000017711, +0.0000017777,0.0000017843,0.0000017871,0.0000017874,0.0000017896, +0.0000017934,0.0000017951,0.0000017943,0.0000017907,0.0000017842, +0.0000017769,0.0000017710,0.0000017683,0.0000017662,0.0000017597, +0.0000017440,0.0000017392,0.0000017459,0.0000017505,0.0000017588, +0.0000017767,0.0000017899,0.0000018251,0.0000018482,0.0000018437, +0.0000018159,0.0000017906,0.0000017790,0.0000017841,0.0000017914, +0.0000017950,0.0000017820,0.0000017732,0.0000017713,0.0000017697, +0.0000017664,0.0000017603,0.0000017549,0.0000017581,0.0000017660, +0.0000017700,0.0000017766,0.0000017819,0.0000017822,0.0000017804, +0.0000017779,0.0000017731,0.0000017626,0.0000017539,0.0000017527, +0.0000017545,0.0000017641,0.0000017723,0.0000017635,0.0000017438, +0.0000017375,0.0000017439,0.0000017573,0.0000017647,0.0000017636, +0.0000017590,0.0000017562,0.0000017565,0.0000017580,0.0000017580, +0.0000017558,0.0000017549,0.0000017557,0.0000017534,0.0000017459, +0.0000017414,0.0000017433,0.0000017488,0.0000017531,0.0000017583, +0.0000017635,0.0000017661,0.0000017660,0.0000017651,0.0000017643, +0.0000017638,0.0000017668,0.0000017820,0.0000017988,0.0000018075, +0.0000018227,0.0000018418,0.0000018456,0.0000018346,0.0000018207, +0.0000018141,0.0000018121,0.0000018108,0.0000018099,0.0000018097, +0.0000018103,0.0000018116,0.0000018128,0.0000018130,0.0000018119, +0.0000018091,0.0000018057,0.0000018029,0.0000018012,0.0000018011, +0.0000018022,0.0000018044,0.0000018068,0.0000018083,0.0000018103, +0.0000018128,0.0000018159,0.0000018187,0.0000018217,0.0000018245, +0.0000018280,0.0000018325,0.0000018397,0.0000018487,0.0000018536, +0.0000018533,0.0000018477,0.0000018434,0.0000018439,0.0000018469, +0.0000018481,0.0000018436,0.0000018324,0.0000018202,0.0000018186, +0.0000018296,0.0000018439,0.0000018560,0.0000018665,0.0000018676, +0.0000018593,0.0000018530,0.0000018538,0.0000018574,0.0000018559, +0.0000018469,0.0000018409,0.0000018393,0.0000018380,0.0000018445, +0.0000018621,0.0000018746,0.0000018763,0.0000018759,0.0000018744, +0.0000018727,0.0000018709,0.0000018699,0.0000018707,0.0000018728, +0.0000018733,0.0000018732,0.0000018769,0.0000018893,0.0000019042, +0.0000019118,0.0000019061,0.0000018919,0.0000018794,0.0000018748, +0.0000018759,0.0000018791,0.0000018819,0.0000018840,0.0000018856, +0.0000018870,0.0000018880,0.0000018888,0.0000018895,0.0000018899, +0.0000018901,0.0000018899,0.0000018895,0.0000018889,0.0000018882, +0.0000018875,0.0000018870,0.0000018874,0.0000018895,0.0000018931, +0.0000018972,0.0000019010,0.0000019039,0.0000019046,0.0000019069, +0.0000019076,0.0000019093,0.0000019103,0.0000019116,0.0000019129, +0.0000019142,0.0000019144,0.0000019149,0.0000019150,0.0000019133, +0.0000019103,0.0000019066,0.0000019053,0.0000019053,0.0000019077, +0.0000019163,0.0000019278,0.0000019398,0.0000019506,0.0000019577, +0.0000019599,0.0000019601,0.0000019600,0.0000019581,0.0000019552, +0.0000019514,0.0000019467,0.0000019413,0.0000019356,0.0000019300, +0.0000019243,0.0000019188,0.0000019142,0.0000019133,0.0000019099, +0.0000019095,0.0000019109,0.0000019130,0.0000019156,0.0000019187, +0.0000019221,0.0000019255,0.0000019284,0.0000019307,0.0000019328, +0.0000019353,0.0000019381,0.0000019406,0.0000019431,0.0000019460, +0.0000019489,0.0000019516,0.0000019538,0.0000019554,0.0000019563, +0.0000019563,0.0000019550,0.0000019519,0.0000019475,0.0000019424, +0.0000019374,0.0000019330,0.0000019303,0.0000019291,0.0000019279, +0.0000019295,0.0000019324,0.0000019357,0.0000019387,0.0000019412, +0.0000019432,0.0000019452,0.0000019476,0.0000019504,0.0000019534, +0.0000019563,0.0000019592,0.0000019618,0.0000019648,0.0000019673, +0.0000019692,0.0000019706,0.0000019714,0.0000019717,0.0000019724, +0.0000019730,0.0000019729,0.0000019732,0.0000019737,0.0000019740, +0.0000019743,0.0000019742,0.0000019747,0.0000019751,0.0000019756, +0.0000019761,0.0000019771,0.0000019777,0.0000019781,0.0000019781, +0.0000019779,0.0000019776,0.0000019778,0.0000019778,0.0000019778, +0.0000019777,0.0000019775,0.0000019775,0.0000019778,0.0000019781, +0.0000019783,0.0000019780,0.0000019773,0.0000019761,0.0000019742, +0.0000019715,0.0000019679,0.0000019640,0.0000019604,0.0000019574, +0.0000019547,0.0000019523,0.0000019496,0.0000019448,0.0000019368, +0.0000019265,0.0000019161,0.0000019087,0.0000019061,0.0000019073, +0.0000019108,0.0000019153,0.0000019193,0.0000019229,0.0000019266, +0.0000019308,0.0000019353,0.0000019393,0.0000019415,0.0000019418, +0.0000019408,0.0000019372,0.0000019314,0.0000019248,0.0000019183, +0.0000019126,0.0000019080,0.0000019043,0.0000019011,0.0000018983, +0.0000018962,0.0000018949,0.0000018941,0.0000018934,0.0000018920, +0.0000018900,0.0000018875,0.0000018848,0.0000018819,0.0000018785, +0.0000018754,0.0000018725,0.0000018690,0.0000018647,0.0000018599, +0.0000018548,0.0000018496,0.0000018444,0.0000018391,0.0000018334, +0.0000018276,0.0000018221,0.0000018170,0.0000018124,0.0000018089, +0.0000018064,0.0000018047,0.0000018038,0.0000018033,0.0000018031, +0.0000018033,0.0000018034,0.0000018032,0.0000018032,0.0000018030, +0.0000018029,0.0000018030,0.0000018025,0.0000018040,0.0000018064, +0.0000018095,0.0000018130,0.0000018165,0.0000018201,0.0000018238, +0.0000018273,0.0000018309,0.0000018341,0.0000018369,0.0000018398, +0.0000018429,0.0000018455,0.0000018476,0.0000018490,0.0000018494, +0.0000018493,0.0000018483,0.0000018465,0.0000018442,0.0000018423, +0.0000018416,0.0000018422,0.0000018435,0.0000018446,0.0000018453, +0.0000018459,0.0000018461,0.0000018459,0.0000018448,0.0000018450, +0.0000018444,0.0000018437,0.0000018437,0.0000018435,0.0000018439, +0.0000018450,0.0000018450,0.0000018453,0.0000018457,0.0000018461, +0.0000018462,0.0000018461,0.0000018459,0.0000018453,0.0000018446, +0.0000018437,0.0000018426,0.0000018413,0.0000018399,0.0000018390, +0.0000018384,0.0000018379,0.0000018376,0.0000018369,0.0000018360, +0.0000018349,0.0000018342,0.0000018339,0.0000018335,0.0000018332, +0.0000018326,0.0000018316,0.0000018305,0.0000018286,0.0000018256, +0.0000018231,0.0000018212,0.0000018191,0.0000018153,0.0000018095, +0.0000018028,0.0000017972,0.0000017941,0.0000017927,0.0000017930, +0.0000017945,0.0000017963,0.0000017982,0.0000018000,0.0000018012, +0.0000018030,0.0000018065,0.0000018119,0.0000018193,0.0000018273, +0.0000018352,0.0000018429,0.0000018494,0.0000018541,0.0000018577, +0.0000018611,0.0000018645,0.0000018678,0.0000018708,0.0000018732, +0.0000018745,0.0000018752,0.0000018758,0.0000018761,0.0000018762, +0.0000018765,0.0000018769,0.0000018771,0.0000018773,0.0000018774, +0.0000018771,0.0000018759,0.0000018744,0.0000018728,0.0000018702, +0.0000018661,0.0000018613,0.0000018576,0.0000018564,0.0000018569, +0.0000018576,0.0000018577,0.0000018581,0.0000018597,0.0000018612, +0.0000018631,0.0000018664,0.0000018704,0.0000018771,0.0000018860, +0.0000018956,0.0000019055,0.0000019163,0.0000019280,0.0000019390, +0.0000019479,0.0000019547,0.0000019598,0.0000019634,0.0000019659, +0.0000019677,0.0000019686,0.0000019685,0.0000019684,0.0000019690, +0.0000019688,0.0000019677,0.0000019658,0.0000019633,0.0000019595, +0.0000019543,0.0000019482,0.0000019414,0.0000019346,0.0000019271, +0.0000019186,0.0000019099,0.0000019018,0.0000018957,0.0000018935, +0.0000018941,0.0000018951,0.0000018962,0.0000018972,0.0000018974, +0.0000018976,0.0000018981,0.0000018982,0.0000018984,0.0000018988, +0.0000018994,0.0000019006,0.0000019012,0.0000019008,0.0000018995, +0.0000018955,0.0000018886,0.0000018807,0.0000018728,0.0000018653, +0.0000018587,0.0000018541,0.0000018529,0.0000018541,0.0000018563, +0.0000018581,0.0000018598,0.0000018608,0.0000018616,0.0000018624, +0.0000018631,0.0000018641,0.0000018651,0.0000018657,0.0000018661, +0.0000018662,0.0000018662,0.0000018673,0.0000018685,0.0000018693, +0.0000018700,0.0000018716,0.0000018731,0.0000018749,0.0000018760, +0.0000018764,0.0000018775,0.0000018785,0.0000018795,0.0000018808, +0.0000018833,0.0000018870,0.0000018915,0.0000018960,0.0000019011, +0.0000019064,0.0000019103,0.0000019132,0.0000019157,0.0000019181, +0.0000019203,0.0000019215,0.0000019216,0.0000019210,0.0000019191, +0.0000019152,0.0000019091,0.0000019012,0.0000018908,0.0000018782, +0.0000018652,0.0000018532,0.0000018427,0.0000018360,0.0000018342, +0.0000018350,0.0000018369,0.0000018398,0.0000018428,0.0000018454, +0.0000018477,0.0000018495,0.0000018510,0.0000018538,0.0000018584, +0.0000018632,0.0000018668,0.0000018693,0.0000018707,0.0000018709, +0.0000018704,0.0000018703,0.0000018707,0.0000018711,0.0000018713, +0.0000018716,0.0000018727,0.0000018749,0.0000018788,0.0000018842, +0.0000018913,0.0000018999,0.0000019092,0.0000019187,0.0000019275, +0.0000019337,0.0000019371,0.0000019381,0.0000019382,0.0000019376, +0.0000019353,0.0000019317,0.0000019280,0.0000019242,0.0000019204, +0.0000019177,0.0000019177,0.0000019187,0.0000019213,0.0000019244, +0.0000019265,0.0000019276,0.0000019282,0.0000019290,0.0000019289, +0.0000019279,0.0000019262,0.0000019248,0.0000019229,0.0000019197, +0.0000019156,0.0000019113,0.0000019068,0.0000019020,0.0000018981, +0.0000018943,0.0000018900,0.0000018860,0.0000018827,0.0000018795, +0.0000018764,0.0000018747,0.0000018749,0.0000018766,0.0000018786, +0.0000018799,0.0000018806,0.0000018812,0.0000018817,0.0000018821, +0.0000018817,0.0000018819,0.0000018837,0.0000018867,0.0000018903, +0.0000018935,0.0000018963,0.0000019000,0.0000019050,0.0000019094, +0.0000019111,0.0000019123,0.0000019129,0.0000019122,0.0000019106, +0.0000019085,0.0000019052,0.0000019002,0.0000018941,0.0000018885, +0.0000018843,0.0000018807,0.0000018773,0.0000018762,0.0000018755, +0.0000018762,0.0000018778,0.0000018794,0.0000018819,0.0000018865, +0.0000018928,0.0000018993,0.0000019056,0.0000019118,0.0000019171, +0.0000019203,0.0000019216,0.0000019221,0.0000019217,0.0000019208, +0.0000019200,0.0000019192,0.0000019179,0.0000019161,0.0000019132, +0.0000019096,0.0000019065,0.0000019041,0.0000019016,0.0000018987, +0.0000018955,0.0000018934,0.0000018942,0.0000018949,0.0000018957, +0.0000018941,0.0000018921,0.0000018899,0.0000018866,0.0000018841, +0.0000018810,0.0000018790,0.0000018768,0.0000018727,0.0000018676, +0.0000018636,0.0000018619,0.0000018635,0.0000018680,0.0000018735, +0.0000018777,0.0000018789,0.0000018765,0.0000018731,0.0000018696, +0.0000018665,0.0000018638,0.0000018615,0.0000018590,0.0000018568, +0.0000018540,0.0000018494,0.0000018424,0.0000018346,0.0000018261, +0.0000018201,0.0000018185,0.0000018174,0.0000018160,0.0000018142, +0.0000018140,0.0000018156,0.0000018182,0.0000018200,0.0000018206, +0.0000018216,0.0000018248,0.0000018286,0.0000018314,0.0000018328, +0.0000018304,0.0000018234,0.0000018146,0.0000018080,0.0000018054, +0.0000018058,0.0000018090,0.0000018131,0.0000018154,0.0000018158, +0.0000018145,0.0000018124,0.0000018109,0.0000018115,0.0000018142, +0.0000018191,0.0000018247,0.0000018294,0.0000018317,0.0000018313, +0.0000018297,0.0000018277,0.0000018275,0.0000018291,0.0000018305, +0.0000018308,0.0000018314,0.0000018323,0.0000018335,0.0000018343, +0.0000018354,0.0000018363,0.0000018379,0.0000018390,0.0000018421, +0.0000018461,0.0000018477,0.0000018475,0.0000018452,0.0000018420, +0.0000018388,0.0000018361,0.0000018326,0.0000018268,0.0000018193, +0.0000018114,0.0000018041,0.0000017972,0.0000017902,0.0000017834, +0.0000017769,0.0000017721,0.0000017712,0.0000017739,0.0000017776, +0.0000017783,0.0000017746,0.0000017671,0.0000017586,0.0000017499, +0.0000017416,0.0000017355,0.0000017320,0.0000017302,0.0000017306, +0.0000017373,0.0000017483,0.0000017629,0.0000017819,0.0000018023, +0.0000018216,0.0000018383,0.0000018531,0.0000018668,0.0000018782, +0.0000018853,0.0000018896,0.0000018886,0.0000018886,0.0000018873, +0.0000018851,0.0000018821,0.0000018772,0.0000018697,0.0000018604, +0.0000018520,0.0000018462,0.0000018428,0.0000018436,0.0000018437, +0.0000018451,0.0000018481,0.0000018520,0.0000018555,0.0000018574, +0.0000018574,0.0000018563,0.0000018550,0.0000018537,0.0000018522, +0.0000018505,0.0000018480,0.0000018450,0.0000018412,0.0000018354, +0.0000018289,0.0000018245,0.0000018216,0.0000018185,0.0000018151, +0.0000018121,0.0000018096,0.0000018069,0.0000018041,0.0000018021, +0.0000018013,0.0000018001,0.0000017956,0.0000017890,0.0000017837, +0.0000017821,0.0000017832,0.0000017846,0.0000017862,0.0000017875, +0.0000017886,0.0000017893,0.0000017899,0.0000017902,0.0000017913, +0.0000017925,0.0000017920,0.0000017908,0.0000017893,0.0000017879, +0.0000017879,0.0000017899,0.0000017933,0.0000017963,0.0000017972, +0.0000017968,0.0000017962,0.0000017961,0.0000017963,0.0000017974, +0.0000017995,0.0000018022,0.0000018044,0.0000018058,0.0000018063, +0.0000018062,0.0000018051,0.0000018026,0.0000017989,0.0000017942, +0.0000017902,0.0000017874,0.0000017869,0.0000017886,0.0000017909, +0.0000017941,0.0000017977,0.0000018019,0.0000018069,0.0000018127, +0.0000018180,0.0000018213,0.0000018219,0.0000018209,0.0000018199, +0.0000018196,0.0000018207,0.0000018230,0.0000018262,0.0000018298, +0.0000018325,0.0000018355,0.0000018379,0.0000018397,0.0000018392, +0.0000018371,0.0000018334,0.0000018297,0.0000018279,0.0000018286, +0.0000018323,0.0000018385,0.0000018456,0.0000018508,0.0000018528, +0.0000018512,0.0000018496,0.0000018474,0.0000018458,0.0000018457, +0.0000018472,0.0000018507,0.0000018568,0.0000018641,0.0000018712, +0.0000018765,0.0000018794,0.0000018812,0.0000018821,0.0000018825, +0.0000018814,0.0000018785,0.0000018731,0.0000018670,0.0000018622, +0.0000018601,0.0000018615,0.0000018624,0.0000018636,0.0000018644, +0.0000018632,0.0000018612,0.0000018579,0.0000018519,0.0000018426, +0.0000018305,0.0000018186,0.0000018098,0.0000018046,0.0000018035, +0.0000018052,0.0000018068,0.0000018051,0.0000017996,0.0000017939, +0.0000017912,0.0000017893,0.0000017859,0.0000017813,0.0000017782, +0.0000017759,0.0000017737,0.0000017717,0.0000017701,0.0000017678, +0.0000017658,0.0000017653,0.0000017663,0.0000017697,0.0000017725, +0.0000017739,0.0000017755,0.0000017775,0.0000017789,0.0000017810, +0.0000017841,0.0000017886,0.0000017956,0.0000017997,0.0000017975, +0.0000017922,0.0000017925,0.0000017968,0.0000017959,0.0000017871, +0.0000017753,0.0000017708,0.0000017742,0.0000017807,0.0000017871, +0.0000017903,0.0000017905,0.0000017922,0.0000017963,0.0000017988, +0.0000017993,0.0000017983,0.0000017932,0.0000017850,0.0000017769, +0.0000017710,0.0000017688,0.0000017669,0.0000017601,0.0000017441, +0.0000017381,0.0000017435,0.0000017480,0.0000017622,0.0000017774, +0.0000017981,0.0000018361,0.0000018517,0.0000018413,0.0000018115, +0.0000017858,0.0000017774,0.0000017839,0.0000017913,0.0000017943, +0.0000017822,0.0000017737,0.0000017698,0.0000017667,0.0000017624, +0.0000017577,0.0000017582,0.0000017649,0.0000017681,0.0000017738, +0.0000017813,0.0000017835,0.0000017819,0.0000017794,0.0000017781, +0.0000017751,0.0000017651,0.0000017551,0.0000017536,0.0000017555, +0.0000017654,0.0000017738,0.0000017630,0.0000017427,0.0000017367, +0.0000017432,0.0000017559,0.0000017625,0.0000017611,0.0000017576, +0.0000017564,0.0000017576,0.0000017583,0.0000017577,0.0000017557, +0.0000017551,0.0000017562,0.0000017544,0.0000017477,0.0000017415, +0.0000017427,0.0000017482,0.0000017518,0.0000017544,0.0000017574, +0.0000017602,0.0000017625,0.0000017633,0.0000017632,0.0000017700, +0.0000017887,0.0000018036,0.0000018122,0.0000018303,0.0000018468, +0.0000018462,0.0000018349,0.0000018231,0.0000018163,0.0000018128, +0.0000018112,0.0000018108,0.0000018113,0.0000018123,0.0000018126, +0.0000018112,0.0000018080,0.0000018041,0.0000018016,0.0000018002, +0.0000018000,0.0000018002,0.0000018010,0.0000018025,0.0000018045, +0.0000018065,0.0000018103,0.0000018122,0.0000018149,0.0000018182, +0.0000018216,0.0000018239,0.0000018251,0.0000018257,0.0000018276, +0.0000018325,0.0000018412,0.0000018514,0.0000018573,0.0000018566, +0.0000018501,0.0000018455,0.0000018464,0.0000018487,0.0000018487, +0.0000018408,0.0000018247,0.0000018154,0.0000018222,0.0000018375, +0.0000018519,0.0000018645,0.0000018678,0.0000018599,0.0000018532, +0.0000018540,0.0000018564,0.0000018529,0.0000018441,0.0000018399, +0.0000018382,0.0000018366,0.0000018449,0.0000018629,0.0000018746, +0.0000018755,0.0000018730,0.0000018703,0.0000018690,0.0000018679, +0.0000018672,0.0000018673,0.0000018685,0.0000018707,0.0000018723, +0.0000018728,0.0000018767,0.0000018882,0.0000019031,0.0000019108, +0.0000019118,0.0000019038,0.0000018930,0.0000018843,0.0000018793, +0.0000018797,0.0000018792,0.0000018809,0.0000018822,0.0000018833, +0.0000018835,0.0000018837,0.0000018836,0.0000018835,0.0000018832, +0.0000018830,0.0000018833,0.0000018837,0.0000018837,0.0000018834, +0.0000018830,0.0000018831,0.0000018844,0.0000018875,0.0000018914, +0.0000018958,0.0000018996,0.0000019032,0.0000019061,0.0000019083, +0.0000019094,0.0000019102,0.0000019100,0.0000019089,0.0000019065, +0.0000019043,0.0000019029,0.0000019026,0.0000019055,0.0000019096, +0.0000019188,0.0000019286,0.0000019398,0.0000019491,0.0000019564, +0.0000019593,0.0000019598,0.0000019596,0.0000019549,0.0000019484, +0.0000019411,0.0000019333,0.0000019254,0.0000019176,0.0000019103, +0.0000019058,0.0000019019,0.0000019014,0.0000019043,0.0000019104, +0.0000019186,0.0000019282,0.0000019386,0.0000019480,0.0000019558, +0.0000019619,0.0000019663,0.0000019671,0.0000019686,0.0000019701, +0.0000019704,0.0000019701,0.0000019697,0.0000019698,0.0000019695, +0.0000019687,0.0000019681,0.0000019682,0.0000019667,0.0000019647, +0.0000019629,0.0000019616,0.0000019606,0.0000019598,0.0000019591, +0.0000019580,0.0000019559,0.0000019522,0.0000019469,0.0000019403, +0.0000019332,0.0000019270,0.0000019227,0.0000019213,0.0000019223, +0.0000019251,0.0000019281,0.0000019310,0.0000019341,0.0000019382, +0.0000019428,0.0000019477,0.0000019522,0.0000019564,0.0000019603, +0.0000019638,0.0000019667,0.0000019687,0.0000019703,0.0000019712, +0.0000019716,0.0000019720,0.0000019724,0.0000019727,0.0000019732, +0.0000019735,0.0000019738,0.0000019735,0.0000019727,0.0000019718, +0.0000019704,0.0000019685,0.0000019668,0.0000019654,0.0000019640, +0.0000019628,0.0000019618,0.0000019613,0.0000019612,0.0000019616, +0.0000019621,0.0000019625,0.0000019627,0.0000019626,0.0000019633, +0.0000019648,0.0000019669,0.0000019685,0.0000019697,0.0000019700, +0.0000019694,0.0000019674,0.0000019643,0.0000019601,0.0000019554, +0.0000019508,0.0000019468,0.0000019436,0.0000019414,0.0000019399, +0.0000019372,0.0000019313,0.0000019220,0.0000019110,0.0000019016, +0.0000018966,0.0000018961,0.0000018991,0.0000019033,0.0000019080, +0.0000019120,0.0000019153,0.0000019188,0.0000019230,0.0000019279, +0.0000019330,0.0000019374,0.0000019404,0.0000019420,0.0000019421, +0.0000019415,0.0000019392,0.0000019357,0.0000019315,0.0000019269, +0.0000019221,0.0000019178,0.0000019140,0.0000019106,0.0000019079, +0.0000019053,0.0000019026,0.0000019000,0.0000018977,0.0000018959, +0.0000018948,0.0000018944,0.0000018943,0.0000018945,0.0000018946, +0.0000018937,0.0000018920,0.0000018896,0.0000018868,0.0000018835, +0.0000018789,0.0000018730,0.0000018663,0.0000018588,0.0000018509, +0.0000018428,0.0000018350,0.0000018280,0.0000018223,0.0000018184, +0.0000018157,0.0000018138,0.0000018128,0.0000018122,0.0000018115, +0.0000018106,0.0000018090,0.0000018068,0.0000018042,0.0000018013, +0.0000017987,0.0000017968,0.0000017962,0.0000017955,0.0000017957, +0.0000017987,0.0000018032,0.0000018086,0.0000018152,0.0000018217, +0.0000018269,0.0000018313,0.0000018353,0.0000018389,0.0000018418, +0.0000018440,0.0000018451,0.0000018453,0.0000018448,0.0000018438, +0.0000018423,0.0000018405,0.0000018384,0.0000018366,0.0000018353, +0.0000018346,0.0000018344,0.0000018351,0.0000018364,0.0000018384, +0.0000018411,0.0000018439,0.0000018455,0.0000018464,0.0000018474, +0.0000018472,0.0000018469,0.0000018467,0.0000018461,0.0000018453, +0.0000018445,0.0000018439,0.0000018428,0.0000018412,0.0000018404, +0.0000018394,0.0000018385,0.0000018377,0.0000018370,0.0000018365, +0.0000018360,0.0000018357,0.0000018357,0.0000018358,0.0000018359, +0.0000018357,0.0000018348,0.0000018336,0.0000018326,0.0000018315, +0.0000018302,0.0000018285,0.0000018267,0.0000018250,0.0000018236, +0.0000018219,0.0000018197,0.0000018166,0.0000018122,0.0000018061, +0.0000017999,0.0000017954,0.0000017934,0.0000017937,0.0000017953, +0.0000017985,0.0000018032,0.0000018084,0.0000018132,0.0000018176, +0.0000018212,0.0000018240,0.0000018271,0.0000018313,0.0000018368, +0.0000018424,0.0000018466,0.0000018495,0.0000018521,0.0000018544, +0.0000018563,0.0000018585,0.0000018612,0.0000018645,0.0000018680, +0.0000018709,0.0000018725,0.0000018731,0.0000018736,0.0000018739, +0.0000018741,0.0000018748,0.0000018758,0.0000018766,0.0000018771, +0.0000018777,0.0000018782,0.0000018779,0.0000018764,0.0000018742, +0.0000018716,0.0000018672,0.0000018625,0.0000018593,0.0000018585, +0.0000018590,0.0000018588,0.0000018576,0.0000018560,0.0000018555, +0.0000018568,0.0000018594,0.0000018664,0.0000018742,0.0000018831, +0.0000018937,0.0000019045,0.0000019151,0.0000019264,0.0000019381, +0.0000019492,0.0000019581,0.0000019641,0.0000019687,0.0000019732, +0.0000019769,0.0000019792,0.0000019807,0.0000019809,0.0000019799, +0.0000019796,0.0000019802,0.0000019798,0.0000019788,0.0000019770, +0.0000019750,0.0000019722,0.0000019681,0.0000019632,0.0000019577, +0.0000019514,0.0000019440,0.0000019349,0.0000019256,0.0000019163, +0.0000019090,0.0000019055,0.0000019046,0.0000019048,0.0000019062, +0.0000019075,0.0000019076,0.0000019083,0.0000019091,0.0000019091, +0.0000019087,0.0000019085,0.0000019092,0.0000019100,0.0000019100, +0.0000019094,0.0000019076,0.0000019041,0.0000018986,0.0000018916, +0.0000018836,0.0000018752,0.0000018676,0.0000018620,0.0000018590, +0.0000018582,0.0000018583,0.0000018591,0.0000018602,0.0000018617, +0.0000018631,0.0000018640,0.0000018653,0.0000018667,0.0000018675, +0.0000018677,0.0000018677,0.0000018672,0.0000018675,0.0000018682, +0.0000018683,0.0000018683,0.0000018693,0.0000018707,0.0000018730, +0.0000018753,0.0000018770,0.0000018791,0.0000018818,0.0000018848, +0.0000018881,0.0000018921,0.0000018973,0.0000019035,0.0000019096, +0.0000019151,0.0000019202,0.0000019238,0.0000019259,0.0000019274, +0.0000019283,0.0000019288,0.0000019284,0.0000019269,0.0000019247, +0.0000019222,0.0000019193,0.0000019149,0.0000019085,0.0000019006, +0.0000018912,0.0000018807,0.0000018702,0.0000018605,0.0000018527, +0.0000018480,0.0000018464,0.0000018468,0.0000018489,0.0000018525, +0.0000018562,0.0000018596,0.0000018626,0.0000018648,0.0000018668, +0.0000018701,0.0000018741,0.0000018775,0.0000018797,0.0000018810, +0.0000018811,0.0000018801,0.0000018787,0.0000018775,0.0000018766, +0.0000018759,0.0000018753,0.0000018748,0.0000018751,0.0000018767, +0.0000018795,0.0000018833,0.0000018879,0.0000018932,0.0000018996, +0.0000019083,0.0000019178,0.0000019261,0.0000019326,0.0000019369, +0.0000019389,0.0000019386,0.0000019362,0.0000019332,0.0000019303, +0.0000019270,0.0000019238,0.0000019218,0.0000019224,0.0000019241, +0.0000019266,0.0000019291,0.0000019304,0.0000019309,0.0000019315, +0.0000019319,0.0000019316,0.0000019308,0.0000019301,0.0000019294, +0.0000019274,0.0000019243,0.0000019213,0.0000019179,0.0000019133, +0.0000019092,0.0000019060,0.0000019025,0.0000018980,0.0000018935, +0.0000018893,0.0000018852,0.0000018819,0.0000018804,0.0000018808, +0.0000018827,0.0000018849,0.0000018866,0.0000018875,0.0000018878, +0.0000018877,0.0000018868,0.0000018858,0.0000018856,0.0000018863, +0.0000018867,0.0000018874,0.0000018881,0.0000018895,0.0000018924, +0.0000018967,0.0000019016,0.0000019064,0.0000019105,0.0000019130, +0.0000019151,0.0000019172,0.0000019181,0.0000019172,0.0000019141, +0.0000019095,0.0000019040,0.0000018981,0.0000018919,0.0000018855, +0.0000018791,0.0000018760,0.0000018740,0.0000018733,0.0000018737, +0.0000018762,0.0000018812,0.0000018876,0.0000018944,0.0000019014, +0.0000019080,0.0000019135,0.0000019171,0.0000019183,0.0000019181, +0.0000019176,0.0000019174,0.0000019175,0.0000019180,0.0000019171, +0.0000019162,0.0000019133,0.0000019094,0.0000019057,0.0000019022, +0.0000018994,0.0000018974,0.0000018967,0.0000018975,0.0000018987, +0.0000019011,0.0000019013,0.0000019003,0.0000018981,0.0000018934, +0.0000018874,0.0000018812,0.0000018772,0.0000018733,0.0000018695, +0.0000018660,0.0000018639,0.0000018625,0.0000018628,0.0000018644, +0.0000018674,0.0000018704,0.0000018729,0.0000018744,0.0000018743, +0.0000018752,0.0000018749,0.0000018732,0.0000018707,0.0000018672, +0.0000018639,0.0000018617,0.0000018600,0.0000018584,0.0000018548, +0.0000018477,0.0000018396,0.0000018328,0.0000018260,0.0000018201, +0.0000018147,0.0000018125,0.0000018115,0.0000018133,0.0000018154, +0.0000018170,0.0000018197,0.0000018250,0.0000018313,0.0000018365, +0.0000018421,0.0000018433,0.0000018390,0.0000018318,0.0000018243, +0.0000018181,0.0000018151,0.0000018160,0.0000018189,0.0000018209, +0.0000018212,0.0000018206,0.0000018187,0.0000018169,0.0000018163, +0.0000018178,0.0000018213,0.0000018265,0.0000018319,0.0000018348, +0.0000018360,0.0000018346,0.0000018319,0.0000018307,0.0000018309, +0.0000018314,0.0000018317,0.0000018330,0.0000018348,0.0000018369, +0.0000018381,0.0000018387,0.0000018394,0.0000018398,0.0000018406, +0.0000018438,0.0000018472,0.0000018490,0.0000018494,0.0000018486, +0.0000018468,0.0000018446,0.0000018418,0.0000018374,0.0000018319, +0.0000018265,0.0000018211,0.0000018148,0.0000018086,0.0000018025, +0.0000017962,0.0000017891,0.0000017829,0.0000017803,0.0000017816, +0.0000017842,0.0000017848,0.0000017811,0.0000017739,0.0000017658, +0.0000017578,0.0000017500,0.0000017419,0.0000017353,0.0000017298, +0.0000017296,0.0000017287,0.0000017299,0.0000017363,0.0000017468, +0.0000017614,0.0000017795,0.0000017986,0.0000018183,0.0000018379, +0.0000018553,0.0000018684,0.0000018780,0.0000018839,0.0000018880, +0.0000018886,0.0000018900,0.0000018894,0.0000018869,0.0000018819, +0.0000018753,0.0000018687,0.0000018627,0.0000018580,0.0000018541, +0.0000018505,0.0000018476,0.0000018484,0.0000018489,0.0000018485, +0.0000018477,0.0000018466,0.0000018452,0.0000018434,0.0000018415, +0.0000018397,0.0000018381,0.0000018363,0.0000018345,0.0000018318, +0.0000018273,0.0000018224,0.0000018194,0.0000018178,0.0000018159, +0.0000018137,0.0000018114,0.0000018087,0.0000018063,0.0000018054, +0.0000018056,0.0000018064,0.0000018060,0.0000018025,0.0000017963, +0.0000017910,0.0000017893,0.0000017890,0.0000017885,0.0000017881, +0.0000017883,0.0000017895,0.0000017906,0.0000017918,0.0000017927, +0.0000017940,0.0000017944,0.0000017926,0.0000017899,0.0000017874, +0.0000017851,0.0000017836,0.0000017842,0.0000017876,0.0000017917, +0.0000017944,0.0000017954,0.0000017957,0.0000017956,0.0000017959, +0.0000017977,0.0000018010,0.0000018043,0.0000018069,0.0000018083, +0.0000018085,0.0000018079,0.0000018059,0.0000018028,0.0000017994, +0.0000017957,0.0000017924,0.0000017908,0.0000017915,0.0000017932, +0.0000017950,0.0000017966,0.0000017989,0.0000018016,0.0000018062, +0.0000018119,0.0000018169,0.0000018192,0.0000018193,0.0000018188, +0.0000018186,0.0000018194,0.0000018207,0.0000018223,0.0000018238, +0.0000018255,0.0000018287,0.0000018328,0.0000018364,0.0000018396, +0.0000018401,0.0000018403,0.0000018381,0.0000018344,0.0000018315, +0.0000018301,0.0000018322,0.0000018367,0.0000018414,0.0000018454, +0.0000018476,0.0000018480,0.0000018466,0.0000018451,0.0000018444, +0.0000018444,0.0000018458,0.0000018501,0.0000018573,0.0000018655, +0.0000018722,0.0000018768,0.0000018798,0.0000018831,0.0000018851, +0.0000018866,0.0000018854,0.0000018819,0.0000018765,0.0000018711, +0.0000018670,0.0000018640,0.0000018616,0.0000018611,0.0000018590, +0.0000018583,0.0000018577,0.0000018571,0.0000018553,0.0000018522, +0.0000018450,0.0000018348,0.0000018234,0.0000018132,0.0000018080, +0.0000018076,0.0000018099,0.0000018107,0.0000018098,0.0000018091, +0.0000018084,0.0000018058,0.0000018000,0.0000017932,0.0000017876, +0.0000017834,0.0000017801,0.0000017782,0.0000017770,0.0000017754, +0.0000017747,0.0000017747,0.0000017761,0.0000017785,0.0000017791, +0.0000017782,0.0000017777,0.0000017773,0.0000017774,0.0000017795, +0.0000017837,0.0000017912,0.0000017990,0.0000018004,0.0000017958, +0.0000017939,0.0000017979,0.0000017992,0.0000017936,0.0000017824, +0.0000017755,0.0000017780,0.0000017844,0.0000017895,0.0000017924, +0.0000017933,0.0000017950,0.0000017988,0.0000018014,0.0000018022, +0.0000018026,0.0000018008,0.0000017948,0.0000017856,0.0000017772, +0.0000017721,0.0000017697,0.0000017670,0.0000017602,0.0000017443, +0.0000017370,0.0000017406,0.0000017475,0.0000017668,0.0000017787, +0.0000018103,0.0000018454,0.0000018520,0.0000018378,0.0000018068, +0.0000017814,0.0000017764,0.0000017839,0.0000017908,0.0000017934, +0.0000017829,0.0000017748,0.0000017693,0.0000017650,0.0000017611, +0.0000017612,0.0000017658,0.0000017676,0.0000017710,0.0000017791, +0.0000017833,0.0000017830,0.0000017808,0.0000017794,0.0000017792, +0.0000017776,0.0000017676,0.0000017561,0.0000017546,0.0000017569, +0.0000017675,0.0000017753,0.0000017612,0.0000017407,0.0000017358, +0.0000017430,0.0000017551,0.0000017609,0.0000017592,0.0000017568, +0.0000017573,0.0000017590,0.0000017587,0.0000017573,0.0000017552, +0.0000017552,0.0000017574,0.0000017565,0.0000017509,0.0000017439, +0.0000017431,0.0000017471,0.0000017516,0.0000017548,0.0000017581, +0.0000017606,0.0000017611,0.0000017627,0.0000017751,0.0000017952, +0.0000018072,0.0000018171,0.0000018366,0.0000018478,0.0000018450, +0.0000018330,0.0000018224,0.0000018166,0.0000018142,0.0000018134, +0.0000018133,0.0000018131,0.0000018122,0.0000018093,0.0000018053, +0.0000018024,0.0000018016,0.0000018025,0.0000018037,0.0000018044, +0.0000018046,0.0000018049,0.0000018056,0.0000018069,0.0000018086, +0.0000018120,0.0000018139,0.0000018165,0.0000018202,0.0000018246, +0.0000018283,0.0000018298,0.0000018296,0.0000018285,0.0000018289, +0.0000018327,0.0000018434,0.0000018560,0.0000018627,0.0000018602, +0.0000018517,0.0000018468,0.0000018471,0.0000018491,0.0000018465, +0.0000018307,0.0000018148,0.0000018163,0.0000018309,0.0000018470, +0.0000018617,0.0000018672,0.0000018603,0.0000018528,0.0000018535, +0.0000018551,0.0000018503,0.0000018423,0.0000018392,0.0000018371, +0.0000018355,0.0000018441,0.0000018613,0.0000018726,0.0000018734, +0.0000018702,0.0000018680,0.0000018678,0.0000018674,0.0000018670, +0.0000018669,0.0000018665,0.0000018668,0.0000018688,0.0000018710, +0.0000018720,0.0000018755,0.0000018856,0.0000019003,0.0000019128, +0.0000019175,0.0000019162,0.0000019108,0.0000019032,0.0000018962, +0.0000018913,0.0000018877,0.0000018857,0.0000018838,0.0000018817, +0.0000018813,0.0000018791,0.0000018776,0.0000018773,0.0000018770, +0.0000018775,0.0000018787,0.0000018798,0.0000018802,0.0000018803, +0.0000018802,0.0000018805,0.0000018821,0.0000018843,0.0000018872, +0.0000018905,0.0000018935,0.0000018959,0.0000018976,0.0000018982, +0.0000018983,0.0000018994,0.0000019008,0.0000019023,0.0000019056, +0.0000019125,0.0000019208,0.0000019310,0.0000019415,0.0000019494, +0.0000019555,0.0000019568,0.0000019566,0.0000019538,0.0000019471, +0.0000019397,0.0000019315,0.0000019225,0.0000019128,0.0000019038, +0.0000018967,0.0000018962,0.0000019021,0.0000019132,0.0000019286, +0.0000019442,0.0000019560,0.0000019606,0.0000019645,0.0000019669, +0.0000019679,0.0000019676,0.0000019668,0.0000019662,0.0000019665, +0.0000019666,0.0000019667,0.0000019665,0.0000019660,0.0000019651, +0.0000019639,0.0000019634,0.0000019638,0.0000019647,0.0000019648, +0.0000019662,0.0000019675,0.0000019686,0.0000019694,0.0000019700, +0.0000019701,0.0000019693,0.0000019676,0.0000019663,0.0000019638, +0.0000019608,0.0000019576,0.0000019540,0.0000019498,0.0000019449, +0.0000019402,0.0000019367,0.0000019350,0.0000019347,0.0000019351, +0.0000019365,0.0000019388,0.0000019422,0.0000019464,0.0000019511, +0.0000019557,0.0000019596,0.0000019628,0.0000019655,0.0000019677, +0.0000019691,0.0000019701,0.0000019710,0.0000019711,0.0000019710, +0.0000019709,0.0000019703,0.0000019696,0.0000019684,0.0000019662, +0.0000019631,0.0000019600,0.0000019584,0.0000019576,0.0000019573, +0.0000019574,0.0000019578,0.0000019587,0.0000019597,0.0000019606, +0.0000019611,0.0000019613,0.0000019613,0.0000019611,0.0000019608, +0.0000019610,0.0000019617,0.0000019628,0.0000019633,0.0000019632, +0.0000019619,0.0000019595,0.0000019562,0.0000019519,0.0000019476, +0.0000019440,0.0000019404,0.0000019371,0.0000019343,0.0000019320, +0.0000019293,0.0000019257,0.0000019209,0.0000019142,0.0000019061, +0.0000018986,0.0000018945,0.0000018920,0.0000018927,0.0000018954, +0.0000018992,0.0000019030,0.0000019058,0.0000019080,0.0000019100, +0.0000019121,0.0000019145,0.0000019179,0.0000019225,0.0000019275, +0.0000019320,0.0000019358,0.0000019392,0.0000019416,0.0000019431, +0.0000019431,0.0000019424,0.0000019409,0.0000019392,0.0000019375, +0.0000019358,0.0000019340,0.0000019321,0.0000019297,0.0000019264, +0.0000019225,0.0000019179,0.0000019132,0.0000019091,0.0000019057, +0.0000019030,0.0000019015,0.0000019007,0.0000019002,0.0000018999, +0.0000019001,0.0000019006,0.0000019007,0.0000018998,0.0000018980, +0.0000018955,0.0000018920,0.0000018875,0.0000018821,0.0000018760, +0.0000018696,0.0000018632,0.0000018569,0.0000018504,0.0000018439, +0.0000018378,0.0000018328,0.0000018291,0.0000018256,0.0000018223, +0.0000018192,0.0000018162,0.0000018128,0.0000018093,0.0000018053, +0.0000018010,0.0000017968,0.0000017929,0.0000017907,0.0000017904, +0.0000017900,0.0000017928,0.0000017982,0.0000018044,0.0000018104, +0.0000018171,0.0000018234,0.0000018290,0.0000018337,0.0000018374, +0.0000018399,0.0000018411,0.0000018408,0.0000018395,0.0000018377, +0.0000018356,0.0000018335,0.0000018319,0.0000018301,0.0000018286, +0.0000018277,0.0000018276,0.0000018286,0.0000018313,0.0000018346, +0.0000018383,0.0000018419,0.0000018451,0.0000018471,0.0000018483, +0.0000018484,0.0000018486,0.0000018478,0.0000018469,0.0000018459, +0.0000018441,0.0000018420,0.0000018400,0.0000018383,0.0000018367, +0.0000018351,0.0000018341,0.0000018332,0.0000018325,0.0000018319, +0.0000018314,0.0000018309,0.0000018303,0.0000018293,0.0000018273, +0.0000018249,0.0000018227,0.0000018207,0.0000018188,0.0000018170, +0.0000018155,0.0000018143,0.0000018124,0.0000018088,0.0000018038, +0.0000017984,0.0000017936,0.0000017906,0.0000017901,0.0000017915, +0.0000017944,0.0000017992,0.0000018060,0.0000018141,0.0000018225, +0.0000018302,0.0000018368,0.0000018420,0.0000018451,0.0000018457, +0.0000018454,0.0000018457,0.0000018473,0.0000018487,0.0000018492, +0.0000018500,0.0000018515,0.0000018535,0.0000018555,0.0000018582, +0.0000018617,0.0000018656,0.0000018688,0.0000018703,0.0000018707, +0.0000018707,0.0000018707,0.0000018707,0.0000018710,0.0000018721, +0.0000018736,0.0000018748,0.0000018758,0.0000018766,0.0000018768, +0.0000018758,0.0000018733,0.0000018698,0.0000018658,0.0000018621, +0.0000018600,0.0000018597,0.0000018598,0.0000018587,0.0000018575, +0.0000018565,0.0000018571,0.0000018594,0.0000018647,0.0000018728, +0.0000018825,0.0000018924,0.0000019032,0.0000019149,0.0000019267, +0.0000019383,0.0000019489,0.0000019577,0.0000019650,0.0000019711, +0.0000019764,0.0000019819,0.0000019869,0.0000019898,0.0000019911, +0.0000019913,0.0000019906,0.0000019892,0.0000019892,0.0000019897, +0.0000019898,0.0000019887,0.0000019867,0.0000019849,0.0000019822, +0.0000019789,0.0000019751,0.0000019703,0.0000019649,0.0000019588, +0.0000019516,0.0000019440,0.0000019348,0.0000019271,0.0000019227, +0.0000019206,0.0000019202,0.0000019206,0.0000019205,0.0000019202, +0.0000019204,0.0000019204,0.0000019198,0.0000019193,0.0000019191, +0.0000019194,0.0000019191,0.0000019176,0.0000019141,0.0000019104, +0.0000019071,0.0000019035,0.0000018993,0.0000018937,0.0000018872, +0.0000018801,0.0000018734,0.0000018683,0.0000018654,0.0000018638, +0.0000018633,0.0000018641,0.0000018656,0.0000018665,0.0000018674, +0.0000018685,0.0000018693,0.0000018697,0.0000018698,0.0000018698, +0.0000018702,0.0000018717,0.0000018739,0.0000018767,0.0000018801, +0.0000018839,0.0000018886,0.0000018932,0.0000018971,0.0000019006, +0.0000019038,0.0000019067,0.0000019088,0.0000019104,0.0000019125, +0.0000019158,0.0000019186,0.0000019218,0.0000019252,0.0000019284, +0.0000019312,0.0000019343,0.0000019364,0.0000019367,0.0000019356, +0.0000019329,0.0000019287,0.0000019244,0.0000019206,0.0000019169, +0.0000019119,0.0000019053,0.0000018977,0.0000018899,0.0000018821, +0.0000018747,0.0000018687,0.0000018644,0.0000018625,0.0000018629, +0.0000018655,0.0000018698,0.0000018747,0.0000018792,0.0000018831, +0.0000018853,0.0000018853,0.0000018849,0.0000018855,0.0000018865, +0.0000018867,0.0000018869,0.0000018869,0.0000018861,0.0000018846, +0.0000018829,0.0000018813,0.0000018798,0.0000018786,0.0000018775, +0.0000018769,0.0000018773,0.0000018789,0.0000018813,0.0000018847, +0.0000018886,0.0000018924,0.0000018968,0.0000019020,0.0000019085, +0.0000019168,0.0000019260,0.0000019338,0.0000019384,0.0000019392, +0.0000019378,0.0000019354,0.0000019324,0.0000019290,0.0000019260, +0.0000019248,0.0000019260,0.0000019280,0.0000019297,0.0000019311, +0.0000019321,0.0000019328,0.0000019331,0.0000019332,0.0000019329, +0.0000019326,0.0000019324,0.0000019313,0.0000019293,0.0000019270, +0.0000019246,0.0000019213,0.0000019177,0.0000019146,0.0000019119, +0.0000019087,0.0000019049,0.0000019013,0.0000018975,0.0000018938, +0.0000018914,0.0000018906,0.0000018913,0.0000018932,0.0000018954, +0.0000018968,0.0000018970,0.0000018963,0.0000018955,0.0000018946, +0.0000018937,0.0000018924,0.0000018908,0.0000018893,0.0000018883, +0.0000018878,0.0000018877,0.0000018890,0.0000018929,0.0000018978, +0.0000019020,0.0000019055,0.0000019090,0.0000019130,0.0000019169, +0.0000019188,0.0000019201,0.0000019200,0.0000019183,0.0000019153, +0.0000019111,0.0000019053,0.0000018971,0.0000018879,0.0000018797, +0.0000018745,0.0000018731,0.0000018723,0.0000018735,0.0000018774, +0.0000018829,0.0000018890,0.0000018954,0.0000019019,0.0000019074, +0.0000019102,0.0000019105,0.0000019101,0.0000019101,0.0000019106, +0.0000019120,0.0000019136,0.0000019149,0.0000019133,0.0000019118, +0.0000019090,0.0000019047,0.0000019009,0.0000018984,0.0000018987, +0.0000018999,0.0000019017,0.0000019044,0.0000019055,0.0000019061, +0.0000019060,0.0000019034,0.0000018977,0.0000018901,0.0000018819, +0.0000018750,0.0000018679,0.0000018643,0.0000018629,0.0000018630, +0.0000018632,0.0000018641,0.0000018646,0.0000018646,0.0000018652, +0.0000018672,0.0000018702,0.0000018745,0.0000018766,0.0000018778, +0.0000018769,0.0000018743,0.0000018708,0.0000018678,0.0000018665, +0.0000018682,0.0000018698,0.0000018678,0.0000018624,0.0000018542, +0.0000018439,0.0000018335,0.0000018231,0.0000018152,0.0000018106, +0.0000018100,0.0000018098,0.0000018107,0.0000018134,0.0000018186, +0.0000018260,0.0000018344,0.0000018422,0.0000018461,0.0000018469, +0.0000018441,0.0000018400,0.0000018347,0.0000018296,0.0000018282, +0.0000018284,0.0000018282,0.0000018270,0.0000018260,0.0000018242, +0.0000018222,0.0000018210,0.0000018211,0.0000018229,0.0000018261, +0.0000018306,0.0000018343,0.0000018356,0.0000018342,0.0000018316, +0.0000018297,0.0000018290,0.0000018281,0.0000018283,0.0000018305, +0.0000018340,0.0000018374,0.0000018391,0.0000018409,0.0000018410, +0.0000018404,0.0000018415,0.0000018443,0.0000018476,0.0000018494, +0.0000018502,0.0000018510,0.0000018515,0.0000018505,0.0000018466, +0.0000018406,0.0000018345,0.0000018300,0.0000018259,0.0000018218, +0.0000018175,0.0000018131,0.0000018083,0.0000018017,0.0000017949, +0.0000017900,0.0000017885,0.0000017890,0.0000017890,0.0000017857, +0.0000017795,0.0000017726,0.0000017658,0.0000017586,0.0000017505, +0.0000017434,0.0000017372,0.0000017326,0.0000017281,0.0000017275, +0.0000017255,0.0000017266,0.0000017335,0.0000017441,0.0000017587, +0.0000017771,0.0000017978,0.0000018181,0.0000018368,0.0000018527, +0.0000018656,0.0000018759,0.0000018828,0.0000018865,0.0000018885, +0.0000018863,0.0000018853,0.0000018829,0.0000018808,0.0000018787, +0.0000018762,0.0000018728,0.0000018688,0.0000018652,0.0000018623, +0.0000018591,0.0000018555,0.0000018516,0.0000018479,0.0000018444, +0.0000018412,0.0000018387,0.0000018370,0.0000018353,0.0000018337, +0.0000018321,0.0000018296,0.0000018259,0.0000018226,0.0000018214, +0.0000018219,0.0000018226,0.0000018223,0.0000018206,0.0000018186, +0.0000018183,0.0000018202,0.0000018221,0.0000018235,0.0000018232, +0.0000018193,0.0000018128,0.0000018079,0.0000018055,0.0000018025, +0.0000017986,0.0000017938,0.0000017909,0.0000017900,0.0000017915, +0.0000017933,0.0000017956,0.0000017976,0.0000017976,0.0000017958, +0.0000017930,0.0000017898,0.0000017861,0.0000017833,0.0000017827, +0.0000017839,0.0000017869,0.0000017901,0.0000017921,0.0000017930, +0.0000017935,0.0000017950,0.0000017978,0.0000018014,0.0000018051, +0.0000018079,0.0000018089,0.0000018092,0.0000018078,0.0000018049, +0.0000018023,0.0000017998,0.0000017972,0.0000017959,0.0000017962, +0.0000017977,0.0000017992,0.0000018002,0.0000018014,0.0000018028, +0.0000018055,0.0000018087,0.0000018125,0.0000018150,0.0000018160, +0.0000018165,0.0000018177,0.0000018195,0.0000018212,0.0000018224, +0.0000018226,0.0000018229,0.0000018234,0.0000018252,0.0000018283, +0.0000018324,0.0000018365,0.0000018407,0.0000018421,0.0000018418, +0.0000018394,0.0000018364,0.0000018355,0.0000018350,0.0000018356, +0.0000018373,0.0000018396,0.0000018420,0.0000018436,0.0000018441, +0.0000018440,0.0000018441,0.0000018443,0.0000018463,0.0000018514, +0.0000018584,0.0000018649,0.0000018697,0.0000018740,0.0000018782, +0.0000018822,0.0000018847,0.0000018858,0.0000018842,0.0000018833, +0.0000018806,0.0000018776,0.0000018732,0.0000018689,0.0000018637, +0.0000018593,0.0000018555,0.0000018541,0.0000018547,0.0000018548, +0.0000018537,0.0000018512,0.0000018464,0.0000018395,0.0000018304, +0.0000018218,0.0000018157,0.0000018129,0.0000018101,0.0000018101, +0.0000018122,0.0000018137,0.0000018116,0.0000018080,0.0000018012, +0.0000017956,0.0000017917,0.0000017886,0.0000017867,0.0000017849, +0.0000017833,0.0000017819,0.0000017815,0.0000017829,0.0000017832, +0.0000017811,0.0000017785,0.0000017768,0.0000017752,0.0000017756, +0.0000017791,0.0000017864,0.0000017963,0.0000018017,0.0000017993, +0.0000017963,0.0000017986,0.0000018014,0.0000017983,0.0000017890, +0.0000017815,0.0000017828,0.0000017889,0.0000017925,0.0000017941, +0.0000017954,0.0000017977,0.0000018016,0.0000018043,0.0000018051, +0.0000018053,0.0000018048,0.0000018021,0.0000017956,0.0000017861, +0.0000017783,0.0000017743,0.0000017706,0.0000017667,0.0000017603, +0.0000017443,0.0000017366,0.0000017382,0.0000017511,0.0000017692, +0.0000017841,0.0000018242,0.0000018507,0.0000018504,0.0000018336, +0.0000018022,0.0000017774,0.0000017764,0.0000017837,0.0000017899, +0.0000017925,0.0000017837,0.0000017766,0.0000017712,0.0000017671, +0.0000017665,0.0000017687,0.0000017690,0.0000017702,0.0000017768, +0.0000017819,0.0000017826,0.0000017810,0.0000017810,0.0000017817, +0.0000017821,0.0000017806,0.0000017694,0.0000017569,0.0000017560, +0.0000017590,0.0000017701,0.0000017757,0.0000017579,0.0000017385, +0.0000017359,0.0000017431,0.0000017546,0.0000017597,0.0000017581, +0.0000017568,0.0000017583,0.0000017597,0.0000017586,0.0000017569, +0.0000017549,0.0000017556,0.0000017597,0.0000017610,0.0000017558, +0.0000017472,0.0000017442,0.0000017459,0.0000017502,0.0000017539, +0.0000017564,0.0000017583,0.0000017651,0.0000017824,0.0000018007, +0.0000018097,0.0000018220,0.0000018415,0.0000018489,0.0000018426, +0.0000018299,0.0000018216,0.0000018184,0.0000018169,0.0000018158, +0.0000018147,0.0000018120,0.0000018080,0.0000018048,0.0000018036, +0.0000018041,0.0000018059,0.0000018071,0.0000018075,0.0000018078, +0.0000018081,0.0000018085,0.0000018089,0.0000018094,0.0000018104, +0.0000018129,0.0000018148,0.0000018177,0.0000018218,0.0000018266, +0.0000018312,0.0000018344,0.0000018355,0.0000018342,0.0000018310, +0.0000018296,0.0000018341,0.0000018473,0.0000018616,0.0000018675, +0.0000018618,0.0000018516,0.0000018468,0.0000018483,0.0000018487, +0.0000018367,0.0000018172,0.0000018122,0.0000018247,0.0000018419, +0.0000018577,0.0000018650,0.0000018601,0.0000018523,0.0000018525, +0.0000018540,0.0000018484,0.0000018409,0.0000018383,0.0000018358, +0.0000018341,0.0000018421,0.0000018576,0.0000018687,0.0000018706, +0.0000018682,0.0000018671,0.0000018675,0.0000018672,0.0000018666, +0.0000018668,0.0000018668,0.0000018658,0.0000018651,0.0000018667, +0.0000018695,0.0000018713,0.0000018743,0.0000018828,0.0000018961, +0.0000019088,0.0000019185,0.0000019218,0.0000019243,0.0000019223, +0.0000019207,0.0000019175,0.0000019134,0.0000019087,0.0000019031, +0.0000018972,0.0000018915,0.0000018870,0.0000018830,0.0000018799, +0.0000018781,0.0000018774,0.0000018782,0.0000018786,0.0000018791, +0.0000018794,0.0000018803,0.0000018818,0.0000018835,0.0000018860, +0.0000018886,0.0000018910,0.0000018932,0.0000018967,0.0000019001, +0.0000019051,0.0000019118,0.0000019191,0.0000019278,0.0000019370, +0.0000019442,0.0000019500,0.0000019525,0.0000019532,0.0000019515, +0.0000019461,0.0000019390,0.0000019310,0.0000019219,0.0000019122, +0.0000019025,0.0000018962,0.0000018994,0.0000019077,0.0000019253, +0.0000019458,0.0000019601,0.0000019650,0.0000019665,0.0000019656, +0.0000019623,0.0000019599,0.0000019597,0.0000019593,0.0000019601, +0.0000019620,0.0000019645,0.0000019679,0.0000019718,0.0000019755, +0.0000019785,0.0000019809,0.0000019821,0.0000019818,0.0000019804, +0.0000019778,0.0000019753,0.0000019723,0.0000019694,0.0000019671, +0.0000019649,0.0000019630,0.0000019617,0.0000019617,0.0000019629, +0.0000019637,0.0000019653,0.0000019664,0.0000019668,0.0000019666, +0.0000019654,0.0000019638,0.0000019623,0.0000019622,0.0000019617, +0.0000019617,0.0000019618,0.0000019620,0.0000019622,0.0000019625, +0.0000019633,0.0000019645,0.0000019657,0.0000019671,0.0000019678, +0.0000019679,0.0000019681,0.0000019683,0.0000019683,0.0000019683, +0.0000019680,0.0000019673,0.0000019661,0.0000019642,0.0000019622, +0.0000019600,0.0000019590,0.0000019585,0.0000019578,0.0000019577, +0.0000019584,0.0000019593,0.0000019601,0.0000019610,0.0000019622, +0.0000019638,0.0000019653,0.0000019662,0.0000019663,0.0000019661, +0.0000019655,0.0000019660,0.0000019661,0.0000019655,0.0000019640, +0.0000019615,0.0000019580,0.0000019542,0.0000019506,0.0000019472, +0.0000019443,0.0000019420,0.0000019392,0.0000019368,0.0000019344, +0.0000019314,0.0000019264,0.0000019200,0.0000019136,0.0000019066, +0.0000019022,0.0000018973,0.0000018946,0.0000018941,0.0000018950, +0.0000018971,0.0000018998,0.0000019025,0.0000019052,0.0000019073, +0.0000019083,0.0000019088,0.0000019095,0.0000019107,0.0000019122, +0.0000019135,0.0000019152,0.0000019179,0.0000019214,0.0000019248, +0.0000019283,0.0000019321,0.0000019362,0.0000019398,0.0000019420, +0.0000019437,0.0000019451,0.0000019464,0.0000019473,0.0000019475, +0.0000019472,0.0000019468,0.0000019462,0.0000019453,0.0000019436, +0.0000019406,0.0000019363,0.0000019309,0.0000019246,0.0000019181, +0.0000019123,0.0000019076,0.0000019045,0.0000019031,0.0000019029, +0.0000019035,0.0000019039,0.0000019040,0.0000019041,0.0000019039, +0.0000019029,0.0000019013,0.0000018995,0.0000018974,0.0000018954, +0.0000018932,0.0000018905,0.0000018870,0.0000018828,0.0000018784, +0.0000018739,0.0000018691,0.0000018630,0.0000018560,0.0000018486, +0.0000018410,0.0000018338,0.0000018275,0.0000018216,0.0000018159, +0.0000018103,0.0000018045,0.0000017991,0.0000017947,0.0000017914, +0.0000017894,0.0000017897,0.0000017910,0.0000017906,0.0000017944, +0.0000017992,0.0000018042,0.0000018100,0.0000018159,0.0000018222, +0.0000018276,0.0000018314,0.0000018333,0.0000018333,0.0000018320, +0.0000018299,0.0000018276,0.0000018255,0.0000018239,0.0000018233, +0.0000018232,0.0000018235,0.0000018251,0.0000018269,0.0000018295, +0.0000018328,0.0000018365,0.0000018400,0.0000018429,0.0000018453, +0.0000018466,0.0000018471,0.0000018470,0.0000018468,0.0000018451, +0.0000018436,0.0000018415,0.0000018392,0.0000018367,0.0000018345, +0.0000018326,0.0000018307,0.0000018292,0.0000018280,0.0000018267, +0.0000018250,0.0000018234,0.0000018216,0.0000018190,0.0000018161, +0.0000018137,0.0000018116,0.0000018091,0.0000018060,0.0000018024, +0.0000017982,0.0000017935,0.0000017889,0.0000017857,0.0000017847, +0.0000017854,0.0000017878,0.0000017918,0.0000017976,0.0000018053, +0.0000018153,0.0000018271,0.0000018384,0.0000018472,0.0000018530, +0.0000018556,0.0000018553,0.0000018529,0.0000018490,0.0000018461, +0.0000018457,0.0000018464,0.0000018472,0.0000018480,0.0000018494, +0.0000018516,0.0000018538,0.0000018560,0.0000018589,0.0000018622, +0.0000018651,0.0000018668,0.0000018674,0.0000018677,0.0000018676, +0.0000018674,0.0000018677,0.0000018689,0.0000018707,0.0000018725, +0.0000018738,0.0000018746,0.0000018748,0.0000018739,0.0000018711, +0.0000018674,0.0000018641,0.0000018621,0.0000018611,0.0000018613, +0.0000018608,0.0000018595,0.0000018595,0.0000018613,0.0000018650, +0.0000018695,0.0000018757,0.0000018837,0.0000018933,0.0000019039, +0.0000019154,0.0000019277,0.0000019395,0.0000019495,0.0000019577, +0.0000019647,0.0000019718,0.0000019790,0.0000019856,0.0000019911, +0.0000019954,0.0000019984,0.0000019999,0.0000020003,0.0000020001, +0.0000019992,0.0000019983,0.0000019984,0.0000019991,0.0000019995, +0.0000019985,0.0000019973,0.0000019955,0.0000019925,0.0000019886, +0.0000019836,0.0000019783,0.0000019734,0.0000019687,0.0000019641, +0.0000019582,0.0000019503,0.0000019439,0.0000019405,0.0000019391, +0.0000019390,0.0000019386,0.0000019375,0.0000019360,0.0000019340, +0.0000019320,0.0000019299,0.0000019283,0.0000019279,0.0000019283, +0.0000019282,0.0000019250,0.0000019187,0.0000019121,0.0000019072, +0.0000019045,0.0000019030,0.0000019010,0.0000018970,0.0000018912, +0.0000018846,0.0000018794,0.0000018760,0.0000018734,0.0000018720, +0.0000018717,0.0000018717,0.0000018722,0.0000018733,0.0000018747, +0.0000018766,0.0000018791,0.0000018819,0.0000018858,0.0000018908, +0.0000018961,0.0000019015,0.0000019066,0.0000019105,0.0000019140, +0.0000019172,0.0000019195,0.0000019207,0.0000019209,0.0000019206, +0.0000019188,0.0000019171,0.0000019156,0.0000019155,0.0000019169, +0.0000019191,0.0000019221,0.0000019259,0.0000019298,0.0000019335, +0.0000019370,0.0000019389,0.0000019391,0.0000019378,0.0000019341, +0.0000019291,0.0000019242,0.0000019193,0.0000019141,0.0000019080, +0.0000019012,0.0000018945,0.0000018884,0.0000018831,0.0000018795, +0.0000018782,0.0000018787,0.0000018812,0.0000018856,0.0000018911, +0.0000018966,0.0000019004,0.0000019021,0.0000019015,0.0000018983, +0.0000018930,0.0000018888,0.0000018867,0.0000018861,0.0000018862, +0.0000018865,0.0000018861,0.0000018850,0.0000018836,0.0000018820, +0.0000018803,0.0000018789,0.0000018777,0.0000018771,0.0000018773, +0.0000018782,0.0000018796,0.0000018820,0.0000018853,0.0000018885, +0.0000018916,0.0000018952,0.0000018982,0.0000019023,0.0000019095, +0.0000019189,0.0000019283,0.0000019356,0.0000019390,0.0000019395, +0.0000019383,0.0000019357,0.0000019323,0.0000019292,0.0000019280, +0.0000019285,0.0000019293,0.0000019299,0.0000019308,0.0000019313, +0.0000019317,0.0000019322,0.0000019325,0.0000019327,0.0000019329, +0.0000019328,0.0000019319,0.0000019306,0.0000019287,0.0000019259, +0.0000019232,0.0000019209,0.0000019193,0.0000019171,0.0000019140, +0.0000019108,0.0000019075,0.0000019040,0.0000019012,0.0000019000, +0.0000019004,0.0000019019,0.0000019039,0.0000019055,0.0000019059, +0.0000019058,0.0000019051,0.0000019033,0.0000019014,0.0000018997, +0.0000018969,0.0000018934,0.0000018904,0.0000018886,0.0000018880, +0.0000018888,0.0000018911,0.0000018943,0.0000018972,0.0000018999, +0.0000019029,0.0000019063,0.0000019103,0.0000019137,0.0000019165, +0.0000019184,0.0000019191,0.0000019197,0.0000019188,0.0000019170, +0.0000019131,0.0000019061,0.0000018975,0.0000018896,0.0000018831, +0.0000018779,0.0000018744,0.0000018750,0.0000018769,0.0000018800, +0.0000018844,0.0000018897,0.0000018953,0.0000018994,0.0000019009, +0.0000019007,0.0000019004,0.0000019009,0.0000019023,0.0000019050, +0.0000019080,0.0000019094,0.0000019100,0.0000019090,0.0000019068, +0.0000019032,0.0000019004,0.0000019005,0.0000019019,0.0000019043, +0.0000019064,0.0000019068,0.0000019073,0.0000019080,0.0000019082, +0.0000019058,0.0000019011,0.0000018940,0.0000018853,0.0000018757, +0.0000018684,0.0000018654,0.0000018647,0.0000018645,0.0000018645, +0.0000018644,0.0000018626,0.0000018605,0.0000018601,0.0000018628, +0.0000018687,0.0000018739,0.0000018774,0.0000018782,0.0000018779, +0.0000018755,0.0000018729,0.0000018715,0.0000018739,0.0000018780, +0.0000018805,0.0000018803,0.0000018751,0.0000018657,0.0000018538, +0.0000018401,0.0000018279,0.0000018186,0.0000018129,0.0000018097, +0.0000018091,0.0000018093,0.0000018129,0.0000018188,0.0000018264, +0.0000018346,0.0000018413,0.0000018450,0.0000018461,0.0000018465, +0.0000018451,0.0000018424,0.0000018412,0.0000018401,0.0000018375, +0.0000018343,0.0000018319,0.0000018298,0.0000018277,0.0000018261, +0.0000018250,0.0000018247,0.0000018265,0.0000018296,0.0000018326, +0.0000018340,0.0000018328,0.0000018302,0.0000018287,0.0000018269, +0.0000018250,0.0000018253,0.0000018277,0.0000018322,0.0000018369, +0.0000018406,0.0000018430,0.0000018436,0.0000018433,0.0000018438, +0.0000018458,0.0000018476,0.0000018489,0.0000018499,0.0000018520, +0.0000018540,0.0000018545,0.0000018512,0.0000018447,0.0000018374, +0.0000018315,0.0000018273,0.0000018245,0.0000018223,0.0000018208, +0.0000018181,0.0000018130,0.0000018064,0.0000017998,0.0000017952, +0.0000017935,0.0000017923,0.0000017892,0.0000017842,0.0000017784, +0.0000017727,0.0000017667,0.0000017605,0.0000017541,0.0000017470, +0.0000017402,0.0000017335,0.0000017284,0.0000017234,0.0000017234, +0.0000017228,0.0000017251,0.0000017315,0.0000017421,0.0000017568, +0.0000017739,0.0000017930,0.0000018124,0.0000018310,0.0000018469, +0.0000018594,0.0000018686,0.0000018747,0.0000018782,0.0000018803, +0.0000018824,0.0000018827,0.0000018843,0.0000018849,0.0000018850, +0.0000018844,0.0000018822,0.0000018797,0.0000018773,0.0000018742, +0.0000018701,0.0000018653,0.0000018601,0.0000018550,0.0000018509, +0.0000018479,0.0000018457,0.0000018441,0.0000018427,0.0000018407, +0.0000018383,0.0000018371,0.0000018381,0.0000018409,0.0000018433, +0.0000018435,0.0000018417,0.0000018404,0.0000018417,0.0000018443, +0.0000018459,0.0000018460,0.0000018442,0.0000018392,0.0000018335, +0.0000018302,0.0000018277,0.0000018243,0.0000018184,0.0000018105, +0.0000018013,0.0000017956,0.0000017943,0.0000017957,0.0000017983, +0.0000018001,0.0000018003,0.0000017998,0.0000017984,0.0000017960, +0.0000017924,0.0000017881,0.0000017850,0.0000017841,0.0000017849, +0.0000017861,0.0000017873,0.0000017883,0.0000017894,0.0000017916, +0.0000017950,0.0000017991,0.0000018027,0.0000018053,0.0000018067, +0.0000018063,0.0000018045,0.0000018024,0.0000018015,0.0000018005, +0.0000018002,0.0000018007,0.0000018016,0.0000018022,0.0000018032, +0.0000018046,0.0000018057,0.0000018070,0.0000018090,0.0000018109, +0.0000018124,0.0000018130,0.0000018144,0.0000018170,0.0000018203, +0.0000018230,0.0000018245,0.0000018245,0.0000018236,0.0000018226, +0.0000018227,0.0000018236,0.0000018258,0.0000018296,0.0000018344, +0.0000018384,0.0000018405,0.0000018408,0.0000018403,0.0000018399, +0.0000018384,0.0000018369,0.0000018351,0.0000018338,0.0000018350, +0.0000018377,0.0000018402,0.0000018418,0.0000018430,0.0000018443, +0.0000018459,0.0000018489,0.0000018532,0.0000018578,0.0000018619, +0.0000018659,0.0000018704,0.0000018745,0.0000018778,0.0000018797, +0.0000018812,0.0000018817,0.0000018832,0.0000018829,0.0000018824, +0.0000018794,0.0000018741,0.0000018668,0.0000018592,0.0000018554, +0.0000018539,0.0000018538,0.0000018531,0.0000018518,0.0000018501, +0.0000018486,0.0000018455,0.0000018401,0.0000018322,0.0000018232, +0.0000018151,0.0000018122,0.0000018117,0.0000018102,0.0000018080, +0.0000018029,0.0000017975,0.0000017947,0.0000017919,0.0000017895, +0.0000017871,0.0000017848,0.0000017826,0.0000017813,0.0000017825, +0.0000017844,0.0000017826,0.0000017790,0.0000017764,0.0000017737, +0.0000017730,0.0000017761,0.0000017831,0.0000017936,0.0000018019, +0.0000018024,0.0000017994,0.0000018000,0.0000018024,0.0000018013, +0.0000017943,0.0000017874,0.0000017878,0.0000017934,0.0000017963, +0.0000017964,0.0000017971,0.0000017998,0.0000018042,0.0000018075, +0.0000018082,0.0000018078,0.0000018066,0.0000018046,0.0000018016, +0.0000017957,0.0000017871,0.0000017810,0.0000017769,0.0000017705, +0.0000017661,0.0000017603,0.0000017440,0.0000017358,0.0000017382, +0.0000017573,0.0000017699,0.0000017955,0.0000018371,0.0000018509, +0.0000018493,0.0000018292,0.0000017976,0.0000017757,0.0000017757, +0.0000017833,0.0000017885,0.0000017914,0.0000017846,0.0000017785, +0.0000017748,0.0000017727,0.0000017725,0.0000017716,0.0000017718, +0.0000017762,0.0000017807,0.0000017819,0.0000017788,0.0000017787, +0.0000017822,0.0000017850,0.0000017859,0.0000017837,0.0000017702, +0.0000017575,0.0000017575,0.0000017616,0.0000017729,0.0000017743, +0.0000017534,0.0000017362,0.0000017363,0.0000017434,0.0000017552, +0.0000017596,0.0000017573,0.0000017571,0.0000017597,0.0000017602, +0.0000017579,0.0000017561,0.0000017547,0.0000017569,0.0000017643, +0.0000017676,0.0000017622,0.0000017527,0.0000017477,0.0000017481, +0.0000017500,0.0000017538,0.0000017597,0.0000017720,0.0000017909, +0.0000018048,0.0000018117,0.0000018266,0.0000018451,0.0000018487, +0.0000018397,0.0000018280,0.0000018227,0.0000018209,0.0000018188, +0.0000018164,0.0000018124,0.0000018076,0.0000018046,0.0000018040, +0.0000018045,0.0000018056,0.0000018066,0.0000018069,0.0000018072, +0.0000018080,0.0000018091,0.0000018104,0.0000018115,0.0000018115, +0.0000018118,0.0000018129,0.0000018145,0.0000018176,0.0000018223, +0.0000018278,0.0000018333,0.0000018369,0.0000018393,0.0000018402, +0.0000018382,0.0000018336,0.0000018311,0.0000018369,0.0000018517, +0.0000018664,0.0000018694,0.0000018606,0.0000018501,0.0000018473, +0.0000018486,0.0000018417,0.0000018216,0.0000018108,0.0000018190, +0.0000018360,0.0000018525,0.0000018625,0.0000018596,0.0000018519, +0.0000018514,0.0000018525,0.0000018468,0.0000018395,0.0000018369, +0.0000018343,0.0000018325,0.0000018396,0.0000018535,0.0000018631, +0.0000018654,0.0000018652,0.0000018657,0.0000018668,0.0000018664, +0.0000018652,0.0000018649,0.0000018656,0.0000018655,0.0000018642, +0.0000018631,0.0000018649,0.0000018684,0.0000018709,0.0000018738, +0.0000018805,0.0000018909,0.0000019018,0.0000019115,0.0000019184, +0.0000019247,0.0000019305,0.0000019315,0.0000019360,0.0000019355, +0.0000019341,0.0000019315,0.0000019270,0.0000019209,0.0000019144, +0.0000019078,0.0000019024,0.0000018980,0.0000018945,0.0000018926, +0.0000018917,0.0000018917,0.0000018927,0.0000018948,0.0000018981, +0.0000019021,0.0000019067,0.0000019124,0.0000019189,0.0000019256, +0.0000019321,0.0000019377,0.0000019434,0.0000019486,0.0000019507, +0.0000019501,0.0000019484,0.0000019436,0.0000019374,0.0000019299, +0.0000019207,0.0000019114,0.0000019026,0.0000018957,0.0000018968, +0.0000019031,0.0000019235,0.0000019484,0.0000019654,0.0000019730, +0.0000019746,0.0000019705,0.0000019643,0.0000019596,0.0000019574, +0.0000019570,0.0000019589,0.0000019622,0.0000019661,0.0000019712, +0.0000019775,0.0000019849,0.0000019930,0.0000020003,0.0000020041, +0.0000020054,0.0000020056,0.0000020049,0.0000020034,0.0000020016, +0.0000019996,0.0000019982,0.0000019973,0.0000019961,0.0000019951, +0.0000019946,0.0000019905,0.0000019851,0.0000019791,0.0000019732, +0.0000019683,0.0000019642,0.0000019611,0.0000019592,0.0000019585, +0.0000019586,0.0000019582,0.0000019595,0.0000019610,0.0000019627, +0.0000019643,0.0000019657,0.0000019667,0.0000019674,0.0000019677, +0.0000019679,0.0000019678,0.0000019674,0.0000019669,0.0000019663, +0.0000019656,0.0000019647,0.0000019635,0.0000019620,0.0000019606, +0.0000019601,0.0000019593,0.0000019585,0.0000019583,0.0000019590, +0.0000019603,0.0000019617,0.0000019629,0.0000019640,0.0000019651, +0.0000019665,0.0000019681,0.0000019695,0.0000019709,0.0000019716, +0.0000019712,0.0000019716,0.0000019711,0.0000019695,0.0000019667, +0.0000019626,0.0000019578,0.0000019534,0.0000019494,0.0000019461, +0.0000019434,0.0000019410,0.0000019390,0.0000019370,0.0000019342, +0.0000019302,0.0000019245,0.0000019175,0.0000019109,0.0000019056, +0.0000019033,0.0000019005,0.0000018997,0.0000019002,0.0000019011, +0.0000019028,0.0000019045,0.0000019065,0.0000019076,0.0000019081, +0.0000019083,0.0000019083,0.0000019085,0.0000019087,0.0000019091, +0.0000019098,0.0000019106,0.0000019120,0.0000019136,0.0000019151, +0.0000019163,0.0000019175,0.0000019191,0.0000019217,0.0000019248, +0.0000019283,0.0000019321,0.0000019362,0.0000019404,0.0000019440, +0.0000019470,0.0000019498,0.0000019521,0.0000019534,0.0000019536, +0.0000019532,0.0000019524,0.0000019516,0.0000019508,0.0000019503, +0.0000019492,0.0000019470,0.0000019434,0.0000019385,0.0000019328, +0.0000019267,0.0000019207,0.0000019156,0.0000019120,0.0000019097, +0.0000019081,0.0000019069,0.0000019062,0.0000019057,0.0000019054, +0.0000019046,0.0000019037,0.0000019028,0.0000019019,0.0000019011, +0.0000019002,0.0000018995,0.0000018986,0.0000018974,0.0000018964, +0.0000018954,0.0000018941,0.0000018919,0.0000018888,0.0000018845, +0.0000018789,0.0000018722,0.0000018649,0.0000018564,0.0000018468, +0.0000018370,0.0000018276,0.0000018190,0.0000018116,0.0000018053, +0.0000017998,0.0000017952,0.0000017922,0.0000017904,0.0000017900, +0.0000017906,0.0000017905,0.0000017908,0.0000017937,0.0000017982, +0.0000018037,0.0000018090,0.0000018140,0.0000018174,0.0000018194, +0.0000018199,0.0000018190,0.0000018176,0.0000018163,0.0000018161, +0.0000018166,0.0000018182,0.0000018207,0.0000018228,0.0000018247, +0.0000018268,0.0000018294,0.0000018320,0.0000018344,0.0000018369, +0.0000018391,0.0000018406,0.0000018415,0.0000018420,0.0000018420, +0.0000018414,0.0000018401,0.0000018379,0.0000018355,0.0000018333, +0.0000018311,0.0000018290,0.0000018273,0.0000018260,0.0000018244, +0.0000018221,0.0000018198,0.0000018173,0.0000018140,0.0000018101, +0.0000018061,0.0000018018,0.0000017971,0.0000017920,0.0000017867, +0.0000017822,0.0000017795,0.0000017790,0.0000017808,0.0000017840, +0.0000017890,0.0000017961,0.0000018047,0.0000018150,0.0000018273, +0.0000018407,0.0000018519,0.0000018579,0.0000018592,0.0000018585, +0.0000018564,0.0000018529,0.0000018486,0.0000018455,0.0000018445, +0.0000018451,0.0000018461,0.0000018469,0.0000018480,0.0000018495, +0.0000018511,0.0000018529,0.0000018552,0.0000018581,0.0000018607, +0.0000018621,0.0000018628,0.0000018630,0.0000018631,0.0000018632, +0.0000018642,0.0000018662,0.0000018688,0.0000018711,0.0000018728, +0.0000018736,0.0000018737,0.0000018726,0.0000018700,0.0000018665, +0.0000018642,0.0000018631,0.0000018635,0.0000018638,0.0000018630, +0.0000018629,0.0000018659,0.0000018704,0.0000018758,0.0000018822, +0.0000018894,0.0000018977,0.0000019079,0.0000019192,0.0000019306, +0.0000019413,0.0000019509,0.0000019591,0.0000019659,0.0000019730, +0.0000019809,0.0000019888,0.0000019954,0.0000020003,0.0000020038, +0.0000020067,0.0000020094,0.0000020111,0.0000020115,0.0000020110, +0.0000020097,0.0000020083,0.0000020075,0.0000020075,0.0000020073, +0.0000020069,0.0000020065,0.0000020051,0.0000020018,0.0000019967, +0.0000019906,0.0000019842,0.0000019786,0.0000019741,0.0000019704, +0.0000019658,0.0000019600,0.0000019554,0.0000019527,0.0000019516, +0.0000019508,0.0000019490,0.0000019461,0.0000019420,0.0000019371, +0.0000019323,0.0000019287,0.0000019276,0.0000019290,0.0000019314, +0.0000019314,0.0000019264,0.0000019177,0.0000019101,0.0000019056, +0.0000019046,0.0000019053,0.0000019052,0.0000019034,0.0000018996, +0.0000018952,0.0000018917,0.0000018882,0.0000018856,0.0000018839, +0.0000018833,0.0000018844,0.0000018871,0.0000018908,0.0000018955, +0.0000019009,0.0000019062,0.0000019116,0.0000019167,0.0000019208, +0.0000019239,0.0000019265,0.0000019274,0.0000019271,0.0000019267, +0.0000019261,0.0000019252,0.0000019239,0.0000019222,0.0000019197, +0.0000019169,0.0000019137,0.0000019120,0.0000019110,0.0000019119, +0.0000019144,0.0000019183,0.0000019234,0.0000019289,0.0000019338, +0.0000019371,0.0000019387,0.0000019390,0.0000019377,0.0000019343, +0.0000019299,0.0000019253,0.0000019204,0.0000019144,0.0000019077, +0.0000019012,0.0000018959,0.0000018923,0.0000018914,0.0000018931, +0.0000018969,0.0000019019,0.0000019075,0.0000019124,0.0000019153, +0.0000019149,0.0000019110,0.0000019058,0.0000018999,0.0000018938, +0.0000018896,0.0000018890,0.0000018904,0.0000018929,0.0000018948, +0.0000018957,0.0000018954,0.0000018936,0.0000018911,0.0000018885, +0.0000018859,0.0000018834,0.0000018814,0.0000018804,0.0000018804, +0.0000018808,0.0000018819,0.0000018837,0.0000018858,0.0000018885, +0.0000018916,0.0000018950,0.0000018980,0.0000019017,0.0000019065, +0.0000019145,0.0000019246,0.0000019335,0.0000019388,0.0000019411, +0.0000019412,0.0000019393,0.0000019361,0.0000019330,0.0000019311, +0.0000019305,0.0000019305,0.0000019304,0.0000019302,0.0000019301, +0.0000019305,0.0000019312,0.0000019322,0.0000019332,0.0000019337, +0.0000019337,0.0000019333,0.0000019314,0.0000019287,0.0000019262, +0.0000019249,0.0000019246,0.0000019241,0.0000019222,0.0000019196, +0.0000019169,0.0000019138,0.0000019113,0.0000019103,0.0000019106, +0.0000019118,0.0000019129,0.0000019138,0.0000019145,0.0000019151, +0.0000019149,0.0000019133,0.0000019115,0.0000019099,0.0000019069, +0.0000019023,0.0000018979,0.0000018938,0.0000018906,0.0000018899, +0.0000018920,0.0000018943,0.0000018955,0.0000018970,0.0000018993, +0.0000019028,0.0000019064,0.0000019096,0.0000019124,0.0000019147, +0.0000019163,0.0000019173,0.0000019173,0.0000019168,0.0000019150, +0.0000019134,0.0000019101,0.0000019048,0.0000018989,0.0000018927, +0.0000018868,0.0000018828,0.0000018806,0.0000018803,0.0000018824, +0.0000018845,0.0000018877,0.0000018913,0.0000018933,0.0000018935, +0.0000018931,0.0000018935,0.0000018949,0.0000018974,0.0000019007, +0.0000019033,0.0000019053,0.0000019064,0.0000019058,0.0000019037, +0.0000019024,0.0000019026,0.0000019045,0.0000019075,0.0000019090, +0.0000019084,0.0000019075,0.0000019072,0.0000019069,0.0000019064, +0.0000019046,0.0000019013,0.0000018956,0.0000018881,0.0000018805, +0.0000018752,0.0000018721,0.0000018699,0.0000018686,0.0000018667, +0.0000018631,0.0000018596,0.0000018572,0.0000018569,0.0000018605, +0.0000018660,0.0000018722,0.0000018764,0.0000018778,0.0000018764, +0.0000018752,0.0000018744,0.0000018765,0.0000018803,0.0000018849, +0.0000018894,0.0000018891,0.0000018840,0.0000018742,0.0000018610, +0.0000018478,0.0000018358,0.0000018264,0.0000018197,0.0000018155, +0.0000018143,0.0000018152,0.0000018191,0.0000018224,0.0000018284, +0.0000018335,0.0000018371,0.0000018406,0.0000018441,0.0000018465, +0.0000018466,0.0000018482,0.0000018479,0.0000018454,0.0000018412, +0.0000018376,0.0000018347,0.0000018321,0.0000018301,0.0000018282, +0.0000018272,0.0000018280,0.0000018306,0.0000018337,0.0000018351, +0.0000018344,0.0000018323,0.0000018305,0.0000018285,0.0000018264, +0.0000018262,0.0000018288,0.0000018332,0.0000018384,0.0000018425, +0.0000018461,0.0000018482,0.0000018491,0.0000018490,0.0000018489, +0.0000018487,0.0000018490,0.0000018493,0.0000018514,0.0000018539, +0.0000018546,0.0000018537,0.0000018489,0.0000018415,0.0000018337, +0.0000018280,0.0000018249,0.0000018243,0.0000018241,0.0000018235, +0.0000018211,0.0000018160,0.0000018088,0.0000018024,0.0000017983, +0.0000017959,0.0000017927,0.0000017882,0.0000017829,0.0000017779, +0.0000017736,0.0000017698,0.0000017644,0.0000017575,0.0000017492, +0.0000017406,0.0000017333,0.0000017280,0.0000017250,0.0000017222, +0.0000017223,0.0000017203,0.0000017231,0.0000017283,0.0000017384, +0.0000017523,0.0000017688,0.0000017863,0.0000018028,0.0000018178, +0.0000018307,0.0000018416,0.0000018506,0.0000018584,0.0000018659, +0.0000018724,0.0000018775,0.0000018819,0.0000018854,0.0000018850, +0.0000018855,0.0000018854,0.0000018871,0.0000018873,0.0000018857, +0.0000018825,0.0000018785,0.0000018742,0.0000018702,0.0000018671, +0.0000018650,0.0000018638,0.0000018625,0.0000018606,0.0000018588, +0.0000018587,0.0000018607,0.0000018635,0.0000018648,0.0000018638, +0.0000018617,0.0000018611,0.0000018625,0.0000018645,0.0000018648, +0.0000018636,0.0000018602,0.0000018556,0.0000018525,0.0000018520, +0.0000018516,0.0000018500,0.0000018465,0.0000018392,0.0000018284, +0.0000018173,0.0000018090,0.0000018044,0.0000018028,0.0000018024, +0.0000018021,0.0000018018,0.0000018018,0.0000018016,0.0000018000, +0.0000017966,0.0000017923,0.0000017885,0.0000017865,0.0000017855, +0.0000017848,0.0000017848,0.0000017857,0.0000017876,0.0000017909, +0.0000017945,0.0000017972,0.0000017989,0.0000017992,0.0000017990, +0.0000017992,0.0000017998,0.0000018007,0.0000018016,0.0000018035, +0.0000018047,0.0000018048,0.0000018051,0.0000018055,0.0000018064, +0.0000018076,0.0000018094,0.0000018112,0.0000018123,0.0000018129, +0.0000018146,0.0000018177,0.0000018221,0.0000018261,0.0000018277, +0.0000018274,0.0000018258,0.0000018242,0.0000018235,0.0000018239, +0.0000018252,0.0000018280,0.0000018303,0.0000018328,0.0000018344, +0.0000018358,0.0000018370,0.0000018378,0.0000018382,0.0000018376, +0.0000018360,0.0000018338,0.0000018329,0.0000018327,0.0000018344, +0.0000018367,0.0000018394,0.0000018427,0.0000018460,0.0000018488, +0.0000018510,0.0000018533,0.0000018560,0.0000018588,0.0000018627, +0.0000018665,0.0000018696,0.0000018717,0.0000018730,0.0000018748, +0.0000018774,0.0000018804,0.0000018824,0.0000018833,0.0000018819, +0.0000018773,0.0000018702,0.0000018620,0.0000018559,0.0000018535, +0.0000018524,0.0000018511,0.0000018499,0.0000018503,0.0000018516, +0.0000018503,0.0000018450,0.0000018369,0.0000018291,0.0000018228, +0.0000018159,0.0000018093,0.0000018023,0.0000017951,0.0000017919, +0.0000017900,0.0000017876,0.0000017847,0.0000017819,0.0000017795, +0.0000017782,0.0000017795,0.0000017834,0.0000017835,0.0000017794, +0.0000017759,0.0000017728,0.0000017715,0.0000017744,0.0000017826, +0.0000017932,0.0000018022,0.0000018046,0.0000018024,0.0000018019, +0.0000018032,0.0000018031,0.0000017984,0.0000017928,0.0000017925, +0.0000017973,0.0000018002,0.0000017998,0.0000017992,0.0000018012, +0.0000018060,0.0000018098,0.0000018103,0.0000018092,0.0000018070, +0.0000018046,0.0000018023,0.0000018007,0.0000017966,0.0000017899, +0.0000017844,0.0000017781,0.0000017694,0.0000017656,0.0000017594, +0.0000017431,0.0000017350,0.0000017435,0.0000017618,0.0000017738, +0.0000018117,0.0000018459,0.0000018515,0.0000018466,0.0000018243, +0.0000017936,0.0000017749,0.0000017751,0.0000017824,0.0000017868, +0.0000017898,0.0000017853,0.0000017800,0.0000017778,0.0000017763, +0.0000017744,0.0000017743,0.0000017769,0.0000017805,0.0000017817, +0.0000017773,0.0000017745,0.0000017774,0.0000017835,0.0000017882, +0.0000017895,0.0000017859,0.0000017696,0.0000017588,0.0000017592, +0.0000017645,0.0000017754,0.0000017711,0.0000017481,0.0000017358, +0.0000017370,0.0000017442,0.0000017565,0.0000017595,0.0000017569, +0.0000017578,0.0000017605,0.0000017596,0.0000017569,0.0000017551, +0.0000017543,0.0000017595,0.0000017701,0.0000017747,0.0000017701, +0.0000017619,0.0000017562,0.0000017550,0.0000017575,0.0000017659, +0.0000017812,0.0000017984,0.0000018074,0.0000018134,0.0000018304, +0.0000018473,0.0000018478,0.0000018372,0.0000018278,0.0000018247, +0.0000018227,0.0000018192,0.0000018135,0.0000018073,0.0000018037, +0.0000018028,0.0000018027,0.0000018025,0.0000018021,0.0000018012, +0.0000018003,0.0000018002,0.0000018017,0.0000018049,0.0000018086, +0.0000018112,0.0000018121,0.0000018125,0.0000018126,0.0000018131, +0.0000018156,0.0000018204,0.0000018271,0.0000018335,0.0000018378, +0.0000018406,0.0000018429,0.0000018438,0.0000018415,0.0000018365, +0.0000018338,0.0000018405,0.0000018565,0.0000018689,0.0000018684, +0.0000018575,0.0000018482,0.0000018475,0.0000018449,0.0000018278, +0.0000018108,0.0000018138,0.0000018296,0.0000018466,0.0000018592, +0.0000018590,0.0000018517,0.0000018500,0.0000018510,0.0000018456, +0.0000018384,0.0000018356,0.0000018329,0.0000018310,0.0000018362, +0.0000018493,0.0000018583,0.0000018606,0.0000018618,0.0000018640, +0.0000018656,0.0000018650,0.0000018631,0.0000018620,0.0000018623, +0.0000018631,0.0000018631,0.0000018621,0.0000018617,0.0000018638, +0.0000018679,0.0000018713,0.0000018743,0.0000018791,0.0000018863, +0.0000018944,0.0000019020,0.0000019086,0.0000019145,0.0000019202, +0.0000019253,0.0000019304,0.0000019354,0.0000019397,0.0000019392, +0.0000019427,0.0000019415,0.0000019393,0.0000019367,0.0000019338, +0.0000019309,0.0000019282,0.0000019271,0.0000019272,0.0000019282, +0.0000019304,0.0000019336,0.0000019378,0.0000019418,0.0000019442, +0.0000019464,0.0000019484,0.0000019484,0.0000019460,0.0000019447, +0.0000019406,0.0000019342,0.0000019266,0.0000019182,0.0000019099, +0.0000019020,0.0000018952,0.0000018903,0.0000018932,0.0000019024, +0.0000019278,0.0000019542,0.0000019716,0.0000019814,0.0000019815, +0.0000019740,0.0000019655,0.0000019607,0.0000019584,0.0000019594, +0.0000019624,0.0000019684,0.0000019758,0.0000019824,0.0000019874, +0.0000019910,0.0000019937,0.0000019961,0.0000019996,0.0000020020, +0.0000020032,0.0000020033,0.0000020026,0.0000020009,0.0000019986, +0.0000019958,0.0000019931,0.0000019909,0.0000019901,0.0000019906, +0.0000019926,0.0000019948,0.0000019967,0.0000019978,0.0000019977, +0.0000019956,0.0000019923,0.0000019887,0.0000019823,0.0000019756, +0.0000019697,0.0000019650,0.0000019616,0.0000019590,0.0000019574, +0.0000019568,0.0000019571,0.0000019579,0.0000019585,0.0000019587, +0.0000019588,0.0000019590,0.0000019589,0.0000019588,0.0000019586, +0.0000019586,0.0000019587,0.0000019590,0.0000019597,0.0000019605, +0.0000019616,0.0000019630,0.0000019644,0.0000019656,0.0000019666, +0.0000019677,0.0000019691,0.0000019707,0.0000019725,0.0000019741, +0.0000019754,0.0000019762,0.0000019762,0.0000019753,0.0000019745, +0.0000019727,0.0000019692,0.0000019642,0.0000019579,0.0000019513, +0.0000019455,0.0000019410,0.0000019380,0.0000019359,0.0000019335, +0.0000019303,0.0000019257,0.0000019196,0.0000019123,0.0000019048, +0.0000018990,0.0000018977,0.0000018972,0.0000018979,0.0000019006, +0.0000019039,0.0000019072,0.0000019090,0.0000019101,0.0000019105, +0.0000019104,0.0000019102,0.0000019103,0.0000019103,0.0000019102, +0.0000019100,0.0000019097,0.0000019099,0.0000019106,0.0000019117, +0.0000019128,0.0000019143,0.0000019161,0.0000019181,0.0000019197, +0.0000019213,0.0000019227,0.0000019242,0.0000019260,0.0000019284, +0.0000019311,0.0000019341,0.0000019376,0.0000019417,0.0000019455, +0.0000019487,0.0000019511,0.0000019530,0.0000019539,0.0000019544, +0.0000019541,0.0000019537,0.0000019533,0.0000019528,0.0000019522, +0.0000019517,0.0000019510,0.0000019492,0.0000019459,0.0000019415, +0.0000019367,0.0000019316,0.0000019264,0.0000019214,0.0000019171, +0.0000019136,0.0000019108,0.0000019085,0.0000019069,0.0000019056, +0.0000019042,0.0000019029,0.0000019019,0.0000019012,0.0000019006, +0.0000019002,0.0000018999,0.0000018993,0.0000018987,0.0000018986, +0.0000018987,0.0000018989,0.0000018991,0.0000018992,0.0000018990, +0.0000018983,0.0000018962,0.0000018939,0.0000018913,0.0000018876, +0.0000018820,0.0000018749,0.0000018663,0.0000018562,0.0000018456, +0.0000018352,0.0000018256,0.0000018170,0.0000018097,0.0000018039, +0.0000017989,0.0000017951,0.0000017925,0.0000017911,0.0000017911, +0.0000017924,0.0000017938,0.0000017950,0.0000017957,0.0000017986, +0.0000018009,0.0000018021,0.0000018022,0.0000018018,0.0000018019, +0.0000018028,0.0000018044,0.0000018069,0.0000018104,0.0000018142, +0.0000018173,0.0000018202,0.0000018232,0.0000018257,0.0000018278, +0.0000018298,0.0000018316,0.0000018329,0.0000018338,0.0000018345, +0.0000018348,0.0000018348,0.0000018342,0.0000018325,0.0000018304, +0.0000018286,0.0000018268,0.0000018250,0.0000018235,0.0000018221, +0.0000018201,0.0000018170,0.0000018135,0.0000018096,0.0000018048, +0.0000017996,0.0000017939,0.0000017886,0.0000017844,0.0000017812, +0.0000017789,0.0000017781,0.0000017786,0.0000017817,0.0000017878, +0.0000017954,0.0000018048,0.0000018158,0.0000018281,0.0000018404, +0.0000018506,0.0000018568,0.0000018592,0.0000018585,0.0000018566, +0.0000018546,0.0000018525,0.0000018497,0.0000018469,0.0000018453, +0.0000018450,0.0000018452,0.0000018456,0.0000018465,0.0000018481, +0.0000018511,0.0000018558,0.0000018607,0.0000018649,0.0000018672, +0.0000018673,0.0000018650,0.0000018620,0.0000018602,0.0000018598, +0.0000018608,0.0000018636,0.0000018670,0.0000018702,0.0000018724, +0.0000018734,0.0000018734,0.0000018723,0.0000018701,0.0000018677, +0.0000018668,0.0000018673,0.0000018681,0.0000018678,0.0000018676, +0.0000018697,0.0000018749,0.0000018808,0.0000018869,0.0000018952, +0.0000019052,0.0000019154,0.0000019259,0.0000019367,0.0000019463, +0.0000019545,0.0000019622,0.0000019696,0.0000019767,0.0000019838, +0.0000019915,0.0000019988,0.0000020052,0.0000020100,0.0000020141, +0.0000020173,0.0000020196,0.0000020219,0.0000020232,0.0000020225, +0.0000020201,0.0000020174,0.0000020143,0.0000020117,0.0000020108, +0.0000020102,0.0000020097,0.0000020093,0.0000020083,0.0000020054, +0.0000020007,0.0000019948,0.0000019882,0.0000019810,0.0000019745, +0.0000019697,0.0000019659,0.0000019622,0.0000019592,0.0000019574, +0.0000019562,0.0000019546,0.0000019515,0.0000019468,0.0000019404, +0.0000019335,0.0000019280,0.0000019260,0.0000019273,0.0000019302, +0.0000019308,0.0000019263,0.0000019181,0.0000019115,0.0000019076, +0.0000019066,0.0000019077,0.0000019090,0.0000019094,0.0000019085, +0.0000019066,0.0000019047,0.0000019025,0.0000019012,0.0000019009, +0.0000019019,0.0000019046,0.0000019090,0.0000019140,0.0000019187, +0.0000019232,0.0000019269,0.0000019297,0.0000019317,0.0000019327, +0.0000019333,0.0000019343,0.0000019353,0.0000019361,0.0000019368, +0.0000019373,0.0000019374,0.0000019369,0.0000019352,0.0000019317, +0.0000019271,0.0000019218,0.0000019168,0.0000019126,0.0000019103, +0.0000019104,0.0000019117,0.0000019149,0.0000019208,0.0000019278, +0.0000019329,0.0000019364,0.0000019385,0.0000019387,0.0000019370, +0.0000019344,0.0000019314,0.0000019275,0.0000019224,0.0000019172, +0.0000019125,0.0000019092,0.0000019083,0.0000019093,0.0000019125, +0.0000019168,0.0000019209,0.0000019240,0.0000019242,0.0000019218, +0.0000019170,0.0000019110,0.0000019064,0.0000019042,0.0000019037, +0.0000019036,0.0000019042,0.0000019059,0.0000019078,0.0000019084, +0.0000019091,0.0000019090,0.0000019085,0.0000019067,0.0000019039, +0.0000019012,0.0000018984,0.0000018956,0.0000018935,0.0000018924, +0.0000018916,0.0000018912,0.0000018913,0.0000018916,0.0000018929, +0.0000018950,0.0000018972,0.0000019001,0.0000019031,0.0000019061, +0.0000019110,0.0000019189,0.0000019277,0.0000019353,0.0000019403, +0.0000019420,0.0000019419,0.0000019406,0.0000019379,0.0000019351, +0.0000019330,0.0000019317,0.0000019304,0.0000019292,0.0000019287, +0.0000019291,0.0000019304,0.0000019324,0.0000019341,0.0000019352, +0.0000019361,0.0000019360,0.0000019344,0.0000019324,0.0000019311, +0.0000019298,0.0000019288,0.0000019282,0.0000019275,0.0000019260, +0.0000019240,0.0000019216,0.0000019195,0.0000019186,0.0000019185, +0.0000019182,0.0000019178,0.0000019176,0.0000019179,0.0000019184, +0.0000019190,0.0000019195,0.0000019191,0.0000019179,0.0000019166, +0.0000019151,0.0000019122,0.0000019077,0.0000019027,0.0000018994, +0.0000018986,0.0000018985,0.0000018976,0.0000018974,0.0000018988, +0.0000019012,0.0000019044,0.0000019077,0.0000019110,0.0000019136, +0.0000019151,0.0000019159,0.0000019156,0.0000019141,0.0000019126, +0.0000019121,0.0000019108,0.0000019093,0.0000019064,0.0000019030, +0.0000018991,0.0000018948,0.0000018912,0.0000018892,0.0000018888, +0.0000018886,0.0000018891,0.0000018910,0.0000018920,0.0000018921, +0.0000018919,0.0000018924,0.0000018939,0.0000018959,0.0000018985, +0.0000019014,0.0000019037,0.0000019045,0.0000019041,0.0000019034, +0.0000019036,0.0000019043,0.0000019069,0.0000019103,0.0000019122, +0.0000019118,0.0000019101,0.0000019076,0.0000019051,0.0000019029, +0.0000019019,0.0000019005,0.0000018981,0.0000018950,0.0000018904, +0.0000018861,0.0000018825,0.0000018796,0.0000018773,0.0000018740, +0.0000018691,0.0000018644,0.0000018585,0.0000018556,0.0000018546, +0.0000018569,0.0000018617,0.0000018678,0.0000018725,0.0000018747, +0.0000018751,0.0000018748,0.0000018770,0.0000018803,0.0000018855, +0.0000018914,0.0000018939,0.0000018938,0.0000018883,0.0000018790, +0.0000018684,0.0000018571,0.0000018469,0.0000018383,0.0000018328, +0.0000018305,0.0000018290,0.0000018280,0.0000018280,0.0000018300, +0.0000018318,0.0000018319,0.0000018339,0.0000018376,0.0000018417, +0.0000018452,0.0000018492,0.0000018508,0.0000018491,0.0000018454, +0.0000018412,0.0000018374,0.0000018340,0.0000018315,0.0000018295, +0.0000018287,0.0000018298,0.0000018327,0.0000018365,0.0000018388, +0.0000018391,0.0000018386,0.0000018377,0.0000018360,0.0000018340, +0.0000018334,0.0000018347,0.0000018381,0.0000018418,0.0000018453, +0.0000018494,0.0000018526,0.0000018544,0.0000018546,0.0000018538, +0.0000018523,0.0000018508,0.0000018499,0.0000018505,0.0000018516, +0.0000018531,0.0000018528,0.0000018505,0.0000018449,0.0000018374, +0.0000018305,0.0000018267,0.0000018247,0.0000018241,0.0000018243, +0.0000018247,0.0000018220,0.0000018166,0.0000018095,0.0000018042, +0.0000018002,0.0000017965,0.0000017918,0.0000017862,0.0000017814, +0.0000017794,0.0000017771,0.0000017727,0.0000017663,0.0000017576, +0.0000017485,0.0000017409,0.0000017354,0.0000017315,0.0000017278, +0.0000017234,0.0000017196,0.0000017189,0.0000017186,0.0000017227, +0.0000017293,0.0000017387,0.0000017485,0.0000017589,0.0000017694, +0.0000017806,0.0000017918,0.0000018025,0.0000018135,0.0000018250, +0.0000018364,0.0000018463,0.0000018546,0.0000018614,0.0000018668, +0.0000018719,0.0000018777,0.0000018832,0.0000018872,0.0000018859, +0.0000018845,0.0000018842,0.0000018828,0.0000018803,0.0000018782, +0.0000018772,0.0000018768,0.0000018756,0.0000018734,0.0000018715, +0.0000018714,0.0000018728,0.0000018740,0.0000018738,0.0000018722, +0.0000018707,0.0000018708,0.0000018724,0.0000018739,0.0000018735, +0.0000018714,0.0000018681,0.0000018654,0.0000018655,0.0000018672, +0.0000018689,0.0000018695,0.0000018686,0.0000018654,0.0000018594, +0.0000018514,0.0000018422,0.0000018324,0.0000018236,0.0000018158, +0.0000018095,0.0000018051,0.0000018032,0.0000018029,0.0000018032, +0.0000018025,0.0000018000,0.0000017960,0.0000017920,0.0000017885, +0.0000017860,0.0000017853,0.0000017856,0.0000017865,0.0000017884, +0.0000017904,0.0000017914,0.0000017913,0.0000017914,0.0000017926, +0.0000017945,0.0000017974,0.0000018001,0.0000018034,0.0000018056, +0.0000018069,0.0000018066,0.0000018057,0.0000018057,0.0000018069, +0.0000018091,0.0000018115,0.0000018136,0.0000018154,0.0000018175, +0.0000018210,0.0000018259,0.0000018298,0.0000018310,0.0000018308, +0.0000018292,0.0000018271,0.0000018261,0.0000018268,0.0000018287, +0.0000018306,0.0000018323,0.0000018328,0.0000018330,0.0000018336, +0.0000018331,0.0000018329,0.0000018328,0.0000018333,0.0000018340, +0.0000018344,0.0000018338,0.0000018320,0.0000018305,0.0000018311, +0.0000018335,0.0000018381,0.0000018433,0.0000018476,0.0000018501, +0.0000018514,0.0000018527,0.0000018541,0.0000018567,0.0000018598, +0.0000018626,0.0000018646,0.0000018657,0.0000018673,0.0000018694, +0.0000018716,0.0000018746,0.0000018778,0.0000018805,0.0000018816, +0.0000018800,0.0000018715,0.0000018614,0.0000018542,0.0000018510, +0.0000018498,0.0000018498,0.0000018507,0.0000018514,0.0000018502, +0.0000018473,0.0000018446,0.0000018410,0.0000018345,0.0000018244, +0.0000018129,0.0000018023,0.0000017959,0.0000017927,0.0000017901, +0.0000017868,0.0000017835,0.0000017807,0.0000017789,0.0000017800, +0.0000017836,0.0000017851,0.0000017813,0.0000017765,0.0000017734, +0.0000017720,0.0000017754,0.0000017845,0.0000017953,0.0000018037, +0.0000018063,0.0000018045,0.0000018034,0.0000018041,0.0000018046, +0.0000018021,0.0000017975,0.0000017970,0.0000018006,0.0000018031, +0.0000018032,0.0000018020,0.0000018021,0.0000018064,0.0000018111, +0.0000018112,0.0000018088,0.0000018060,0.0000018030,0.0000018006, +0.0000018004,0.0000018012,0.0000017993,0.0000017933,0.0000017860, +0.0000017772,0.0000017678,0.0000017647,0.0000017577,0.0000017423, +0.0000017377,0.0000017529,0.0000017638,0.0000017848,0.0000018285, +0.0000018505,0.0000018512,0.0000018434,0.0000018190,0.0000017903, +0.0000017721,0.0000017736,0.0000017816,0.0000017849,0.0000017881, +0.0000017860,0.0000017811,0.0000017786,0.0000017773,0.0000017771, +0.0000017785,0.0000017809,0.0000017815,0.0000017755,0.0000017708, +0.0000017715,0.0000017769,0.0000017853,0.0000017911,0.0000017923, +0.0000017862,0.0000017674,0.0000017596,0.0000017611,0.0000017675, +0.0000017759,0.0000017658,0.0000017431,0.0000017363,0.0000017379, +0.0000017463,0.0000017581,0.0000017587,0.0000017562,0.0000017586, +0.0000017606,0.0000017583,0.0000017558,0.0000017541,0.0000017548, +0.0000017643,0.0000017761,0.0000017800,0.0000017772,0.0000017724, +0.0000017684,0.0000017687,0.0000017759,0.0000017904,0.0000018035, +0.0000018084,0.0000018152,0.0000018333,0.0000018479,0.0000018463, +0.0000018360,0.0000018287,0.0000018267,0.0000018237,0.0000018173, +0.0000018088,0.0000018036,0.0000018025,0.0000018014,0.0000017979, +0.0000017931,0.0000017886,0.0000017854,0.0000017835,0.0000017829, +0.0000017844,0.0000017892,0.0000017972,0.0000018056,0.0000018111, +0.0000018126,0.0000018121,0.0000018117,0.0000018127,0.0000018166, +0.0000018231,0.0000018305,0.0000018363,0.0000018399,0.0000018425, +0.0000018450,0.0000018461,0.0000018440,0.0000018392,0.0000018368, +0.0000018447,0.0000018608,0.0000018702,0.0000018658,0.0000018526, +0.0000018471,0.0000018466,0.0000018342,0.0000018140,0.0000018101, +0.0000018234,0.0000018406,0.0000018547,0.0000018577,0.0000018514, +0.0000018486,0.0000018494,0.0000018449,0.0000018376,0.0000018343, +0.0000018320,0.0000018295,0.0000018327,0.0000018443,0.0000018546, +0.0000018584,0.0000018601,0.0000018625,0.0000018638,0.0000018632, +0.0000018614,0.0000018598,0.0000018592,0.0000018595,0.0000018602, +0.0000018607,0.0000018606,0.0000018608,0.0000018632,0.0000018676, +0.0000018717,0.0000018749,0.0000018789,0.0000018840,0.0000018895, +0.0000018948,0.0000018996,0.0000019037,0.0000019073,0.0000019105, +0.0000019138,0.0000019177,0.0000019229,0.0000019282,0.0000019331, +0.0000019374,0.0000019411,0.0000019436,0.0000019415,0.0000019404, +0.0000019419,0.0000019426,0.0000019426,0.0000019421,0.0000019438, +0.0000019459,0.0000019443,0.0000019406,0.0000019366,0.0000019318, +0.0000019259,0.0000019193,0.0000019126,0.0000019056,0.0000018983, +0.0000018918,0.0000018871,0.0000018844,0.0000018872,0.0000018931, +0.0000019135,0.0000019426,0.0000019682,0.0000019835,0.0000019872, +0.0000019809,0.0000019702,0.0000019623,0.0000019593,0.0000019600, +0.0000019635,0.0000019696,0.0000019773,0.0000019843,0.0000019880, +0.0000019906,0.0000019920,0.0000019927,0.0000019932,0.0000019940, +0.0000019949,0.0000019955,0.0000019960,0.0000019964,0.0000019965, +0.0000019962,0.0000019955,0.0000019945,0.0000019931,0.0000019913, +0.0000019895,0.0000019891,0.0000019896,0.0000019909,0.0000019922, +0.0000019928,0.0000019929,0.0000019925,0.0000019917,0.0000019904, +0.0000019894,0.0000019881,0.0000019859,0.0000019843,0.0000019819, +0.0000019781,0.0000019743,0.0000019711,0.0000019688,0.0000019672, +0.0000019657,0.0000019645,0.0000019638,0.0000019633,0.0000019634, +0.0000019638,0.0000019645,0.0000019655,0.0000019667,0.0000019680, +0.0000019693,0.0000019703,0.0000019712,0.0000019722,0.0000019733, +0.0000019743,0.0000019750,0.0000019759,0.0000019768,0.0000019777, +0.0000019786,0.0000019782,0.0000019783,0.0000019775,0.0000019753, +0.0000019710,0.0000019647,0.0000019571,0.0000019500,0.0000019441, +0.0000019394,0.0000019357,0.0000019323,0.0000019291,0.0000019259, +0.0000019221,0.0000019161,0.0000019075,0.0000018983,0.0000018921, +0.0000018916,0.0000018922,0.0000018950,0.0000018991,0.0000019030, +0.0000019061,0.0000019077,0.0000019087,0.0000019083,0.0000019074, +0.0000019068,0.0000019068,0.0000019076,0.0000019087,0.0000019101, +0.0000019114,0.0000019120,0.0000019131,0.0000019141,0.0000019156, +0.0000019178,0.0000019206,0.0000019232,0.0000019258,0.0000019284, +0.0000019307,0.0000019322,0.0000019337,0.0000019350,0.0000019364, +0.0000019381,0.0000019395,0.0000019411,0.0000019429,0.0000019451, +0.0000019469,0.0000019487,0.0000019503,0.0000019517,0.0000019527, +0.0000019532,0.0000019529,0.0000019521,0.0000019513,0.0000019502, +0.0000019487,0.0000019472,0.0000019452,0.0000019423,0.0000019385, +0.0000019338,0.0000019288,0.0000019239,0.0000019195,0.0000019156, +0.0000019122,0.0000019091,0.0000019064,0.0000019042,0.0000019023, +0.0000019006,0.0000018991,0.0000018976,0.0000018962,0.0000018952, +0.0000018945,0.0000018939,0.0000018939,0.0000018940,0.0000018940, +0.0000018942,0.0000018947,0.0000018953,0.0000018960,0.0000018970, +0.0000018979,0.0000018985,0.0000018985,0.0000018980,0.0000018974, +0.0000018968,0.0000018960,0.0000018950,0.0000018924,0.0000018892, +0.0000018847,0.0000018790,0.0000018723,0.0000018642,0.0000018551, +0.0000018456,0.0000018365,0.0000018282,0.0000018205,0.0000018140, +0.0000018091,0.0000018053,0.0000018026,0.0000018005,0.0000017985, +0.0000017972,0.0000017966,0.0000017961,0.0000017952,0.0000017932, +0.0000017911,0.0000017891,0.0000017889,0.0000017899,0.0000017919, +0.0000017945,0.0000017979,0.0000018019,0.0000018055,0.0000018094, +0.0000018131,0.0000018165,0.0000018193,0.0000018213,0.0000018227, +0.0000018236,0.0000018240,0.0000018240,0.0000018236,0.0000018228, +0.0000018209,0.0000018188,0.0000018170,0.0000018152,0.0000018133, +0.0000018117,0.0000018101,0.0000018078,0.0000018046,0.0000018010, +0.0000017970,0.0000017927,0.0000017884,0.0000017843,0.0000017816, +0.0000017807,0.0000017804,0.0000017819,0.0000017845,0.0000017894, +0.0000017971,0.0000018068,0.0000018178,0.0000018293,0.0000018397, +0.0000018472,0.0000018519,0.0000018548,0.0000018561,0.0000018558, +0.0000018551,0.0000018547,0.0000018535,0.0000018512,0.0000018482, +0.0000018459,0.0000018451,0.0000018454,0.0000018496,0.0000018579, +0.0000018688,0.0000018810,0.0000018926,0.0000019015,0.0000019068, +0.0000019078,0.0000019039,0.0000018947,0.0000018817,0.0000018697, +0.0000018626,0.0000018610,0.0000018623,0.0000018657,0.0000018695, +0.0000018720,0.0000018731,0.0000018732,0.0000018722,0.0000018708, +0.0000018701,0.0000018717,0.0000018740,0.0000018747,0.0000018741, +0.0000018747,0.0000018778,0.0000018837,0.0000018906,0.0000018992, +0.0000019102,0.0000019224,0.0000019337,0.0000019441,0.0000019539, +0.0000019625,0.0000019700,0.0000019766,0.0000019831,0.0000019895, +0.0000019956,0.0000020017,0.0000020079,0.0000020131,0.0000020178, +0.0000020206,0.0000020218,0.0000020233,0.0000020225,0.0000020230, +0.0000020220,0.0000020191,0.0000020159,0.0000020126,0.0000020098, +0.0000020080,0.0000020074,0.0000020069,0.0000020068,0.0000020066, +0.0000020055,0.0000020026,0.0000019989,0.0000019944,0.0000019874, +0.0000019782,0.0000019699,0.0000019646,0.0000019615,0.0000019591, +0.0000019570,0.0000019559,0.0000019547,0.0000019523,0.0000019477, +0.0000019410,0.0000019337,0.0000019284,0.0000019267,0.0000019271, +0.0000019272,0.0000019246,0.0000019189,0.0000019134,0.0000019113, +0.0000019105,0.0000019109,0.0000019124,0.0000019142,0.0000019152, +0.0000019154,0.0000019151,0.0000019149,0.0000019145,0.0000019152, +0.0000019167,0.0000019188,0.0000019220,0.0000019255,0.0000019294, +0.0000019324,0.0000019347,0.0000019369,0.0000019394,0.0000019420, +0.0000019448,0.0000019472,0.0000019495,0.0000019521,0.0000019539, +0.0000019550,0.0000019555,0.0000019558,0.0000019557,0.0000019549, +0.0000019528,0.0000019496,0.0000019451,0.0000019387,0.0000019305, +0.0000019217,0.0000019150,0.0000019119,0.0000019113,0.0000019131, +0.0000019191,0.0000019261,0.0000019322,0.0000019365,0.0000019379, +0.0000019374,0.0000019362,0.0000019349,0.0000019324,0.0000019295, +0.0000019271,0.0000019256,0.0000019254,0.0000019257,0.0000019264, +0.0000019277,0.0000019289,0.0000019286,0.0000019273,0.0000019248, +0.0000019210,0.0000019185,0.0000019183,0.0000019191,0.0000019199, +0.0000019193,0.0000019155,0.0000019121,0.0000019097,0.0000019085, +0.0000019085,0.0000019087,0.0000019090,0.0000019090,0.0000019081, +0.0000019063,0.0000019046,0.0000019036,0.0000019025,0.0000019021, +0.0000019020,0.0000019021,0.0000019027,0.0000019030,0.0000019030, +0.0000019036,0.0000019048,0.0000019061,0.0000019074,0.0000019094, +0.0000019117,0.0000019152,0.0000019205,0.0000019272,0.0000019334, +0.0000019379,0.0000019404,0.0000019413,0.0000019410,0.0000019394, +0.0000019373,0.0000019350,0.0000019324,0.0000019296,0.0000019278, +0.0000019273,0.0000019279,0.0000019300,0.0000019329,0.0000019356, +0.0000019379,0.0000019400,0.0000019405,0.0000019393,0.0000019379, +0.0000019370,0.0000019355,0.0000019335,0.0000019320,0.0000019313, +0.0000019303,0.0000019289,0.0000019271,0.0000019254,0.0000019242, +0.0000019232,0.0000019220,0.0000019209,0.0000019213,0.0000019222, +0.0000019232,0.0000019248,0.0000019262,0.0000019261,0.0000019244, +0.0000019230,0.0000019226,0.0000019219,0.0000019196,0.0000019159, +0.0000019127,0.0000019113,0.0000019106,0.0000019089,0.0000019069, +0.0000019062,0.0000019064,0.0000019079,0.0000019110,0.0000019140, +0.0000019160,0.0000019169,0.0000019170,0.0000019163,0.0000019146, +0.0000019120,0.0000019106,0.0000019094,0.0000019079,0.0000019062, +0.0000019042,0.0000019023,0.0000018999,0.0000018975,0.0000018963, +0.0000018963,0.0000018962,0.0000018955,0.0000018954,0.0000018955, +0.0000018951,0.0000018949,0.0000018958,0.0000018975,0.0000018995, +0.0000019019,0.0000019045,0.0000019066,0.0000019072,0.0000019063, +0.0000019059,0.0000019062,0.0000019064,0.0000019092,0.0000019124, +0.0000019148,0.0000019154,0.0000019141,0.0000019112,0.0000019067, +0.0000019027,0.0000019006,0.0000018986,0.0000018972,0.0000018961, +0.0000018945,0.0000018919,0.0000018888,0.0000018862,0.0000018842, +0.0000018817,0.0000018785,0.0000018737,0.0000018672,0.0000018611, +0.0000018556,0.0000018528,0.0000018515,0.0000018552,0.0000018611, +0.0000018670,0.0000018713,0.0000018737,0.0000018763,0.0000018789, +0.0000018837,0.0000018894,0.0000018934,0.0000018949,0.0000018935, +0.0000018889,0.0000018832,0.0000018762,0.0000018685,0.0000018610, +0.0000018557,0.0000018534,0.0000018513,0.0000018480,0.0000018440, +0.0000018412,0.0000018384,0.0000018351,0.0000018343,0.0000018369, +0.0000018394,0.0000018438,0.0000018491,0.0000018520,0.0000018513, +0.0000018488,0.0000018448,0.0000018401,0.0000018358,0.0000018326, +0.0000018307,0.0000018306,0.0000018319,0.0000018353,0.0000018398, +0.0000018434,0.0000018452,0.0000018468,0.0000018476,0.0000018471, +0.0000018454,0.0000018444,0.0000018442,0.0000018459,0.0000018477, +0.0000018500,0.0000018525,0.0000018550,0.0000018569,0.0000018580, +0.0000018582,0.0000018571,0.0000018552,0.0000018525,0.0000018504, +0.0000018498,0.0000018496,0.0000018497,0.0000018489,0.0000018454, +0.0000018397,0.0000018346,0.0000018301,0.0000018258,0.0000018238, +0.0000018235,0.0000018248,0.0000018250,0.0000018220,0.0000018168, +0.0000018104,0.0000018052,0.0000018004,0.0000017948,0.0000017886, +0.0000017851,0.0000017840,0.0000017824,0.0000017791,0.0000017727, +0.0000017642,0.0000017559,0.0000017496,0.0000017451,0.0000017409, +0.0000017354,0.0000017288,0.0000017232,0.0000017200,0.0000017200, +0.0000017225,0.0000017258,0.0000017281,0.0000017302,0.0000017314, +0.0000017346,0.0000017390,0.0000017449,0.0000017523,0.0000017617, +0.0000017727,0.0000017838,0.0000017939,0.0000018030,0.0000018113, +0.0000018203,0.0000018305,0.0000018410,0.0000018507,0.0000018587, +0.0000018652,0.0000018712,0.0000018761,0.0000018788,0.0000018790, +0.0000018787,0.0000018789,0.0000018785,0.0000018765,0.0000018739, +0.0000018727,0.0000018730,0.0000018739,0.0000018740,0.0000018726, +0.0000018712,0.0000018712,0.0000018726,0.0000018747,0.0000018757, +0.0000018748,0.0000018727,0.0000018703,0.0000018693,0.0000018703, +0.0000018724,0.0000018745,0.0000018754,0.0000018751,0.0000018742, +0.0000018730,0.0000018725,0.0000018710,0.0000018660,0.0000018582, +0.0000018475,0.0000018344,0.0000018211,0.0000018106,0.0000018055, +0.0000018049,0.0000018049,0.0000018039,0.0000018016,0.0000017981, +0.0000017942,0.0000017915,0.0000017902,0.0000017894,0.0000017888, +0.0000017894,0.0000017894,0.0000017887,0.0000017878,0.0000017881, +0.0000017902,0.0000017938,0.0000017974,0.0000018012,0.0000018049, +0.0000018074,0.0000018078,0.0000018069,0.0000018064,0.0000018072, +0.0000018094,0.0000018118,0.0000018148,0.0000018184,0.0000018227, +0.0000018277,0.0000018322,0.0000018346,0.0000018348,0.0000018342, +0.0000018326,0.0000018303,0.0000018295,0.0000018305,0.0000018329, +0.0000018355,0.0000018371,0.0000018374,0.0000018367,0.0000018355, +0.0000018336,0.0000018310,0.0000018290,0.0000018284,0.0000018295, +0.0000018321,0.0000018342,0.0000018335,0.0000018307,0.0000018289, +0.0000018287,0.0000018323,0.0000018378,0.0000018431,0.0000018469, +0.0000018492,0.0000018506,0.0000018514,0.0000018525,0.0000018544, +0.0000018566,0.0000018583,0.0000018600,0.0000018616,0.0000018631, +0.0000018639,0.0000018649,0.0000018674,0.0000018725,0.0000018783, +0.0000018813,0.0000018776,0.0000018681,0.0000018570,0.0000018497, +0.0000018474,0.0000018482,0.0000018495,0.0000018487,0.0000018468, +0.0000018454,0.0000018453,0.0000018443,0.0000018394,0.0000018303, +0.0000018193,0.0000018108,0.0000018056,0.0000018020,0.0000017988, +0.0000017955,0.0000017919,0.0000017886,0.0000017878,0.0000017895, +0.0000017899,0.0000017852,0.0000017789,0.0000017757,0.0000017752, +0.0000017793,0.0000017883,0.0000017982,0.0000018052,0.0000018073, +0.0000018057,0.0000018045,0.0000018055,0.0000018067,0.0000018057, +0.0000018017,0.0000018007,0.0000018037,0.0000018058,0.0000018061, +0.0000018046,0.0000018028,0.0000018056,0.0000018110,0.0000018114, +0.0000018074,0.0000018038,0.0000018009,0.0000017982,0.0000017979, +0.0000018007,0.0000018035,0.0000018018,0.0000017940,0.0000017850, +0.0000017749,0.0000017660,0.0000017633,0.0000017560,0.0000017435, +0.0000017466,0.0000017591,0.0000017673,0.0000018024,0.0000018418, +0.0000018519,0.0000018495,0.0000018395,0.0000018138,0.0000017866, +0.0000017693,0.0000017723,0.0000017808,0.0000017832,0.0000017873, +0.0000017866,0.0000017825,0.0000017796,0.0000017792,0.0000017800, +0.0000017814,0.0000017808,0.0000017731,0.0000017666,0.0000017661, +0.0000017696,0.0000017779,0.0000017880,0.0000017927,0.0000017933, +0.0000017844,0.0000017643,0.0000017603,0.0000017631,0.0000017711, +0.0000017763,0.0000017583,0.0000017392,0.0000017369,0.0000017391, +0.0000017490,0.0000017581,0.0000017569,0.0000017559,0.0000017597, +0.0000017596,0.0000017567,0.0000017549,0.0000017537,0.0000017567, +0.0000017701,0.0000017803,0.0000017821,0.0000017827,0.0000017832, +0.0000017834,0.0000017882,0.0000017983,0.0000018058,0.0000018082, +0.0000018168,0.0000018353,0.0000018477,0.0000018456,0.0000018360, +0.0000018304,0.0000018284,0.0000018233,0.0000018143,0.0000018062, +0.0000018033,0.0000018010,0.0000017930,0.0000017823,0.0000017745, +0.0000017712,0.0000017719,0.0000017719,0.0000017719,0.0000017720, +0.0000017720,0.0000017785,0.0000017904,0.0000018035,0.0000018109, +0.0000018099,0.0000018101,0.0000018098,0.0000018119,0.0000018173, +0.0000018246,0.0000018312,0.0000018357,0.0000018392,0.0000018431, +0.0000018461,0.0000018472,0.0000018463,0.0000018415,0.0000018403, +0.0000018499,0.0000018658,0.0000018694,0.0000018596,0.0000018488, +0.0000018470,0.0000018397,0.0000018195,0.0000018087,0.0000018179, +0.0000018340,0.0000018489,0.0000018549,0.0000018509,0.0000018475, +0.0000018478,0.0000018447,0.0000018375,0.0000018337,0.0000018317, +0.0000018293,0.0000018297,0.0000018376,0.0000018489,0.0000018557, +0.0000018586,0.0000018606,0.0000018614,0.0000018610,0.0000018597, +0.0000018582,0.0000018574,0.0000018572,0.0000018571,0.0000018575, +0.0000018586,0.0000018595,0.0000018605,0.0000018633,0.0000018677, +0.0000018719,0.0000018752,0.0000018785,0.0000018822,0.0000018865, +0.0000018911,0.0000018954,0.0000018986,0.0000019003,0.0000019006, +0.0000019003,0.0000019007,0.0000019026,0.0000019054,0.0000019091, +0.0000019131,0.0000019165,0.0000019191,0.0000019211,0.0000019223, +0.0000019225,0.0000019220,0.0000019206,0.0000019185,0.0000019158, +0.0000019122,0.0000019078,0.0000019029,0.0000018975,0.0000018919, +0.0000018863,0.0000018815,0.0000018782,0.0000018773,0.0000018801, +0.0000018836,0.0000018929,0.0000019129,0.0000019428,0.0000019714, +0.0000019856,0.0000019875,0.0000019819,0.0000019710,0.0000019624, +0.0000019585,0.0000019581,0.0000019603,0.0000019647,0.0000019706, +0.0000019767,0.0000019819,0.0000019858,0.0000019881,0.0000019895, +0.0000019904,0.0000019909,0.0000019914,0.0000019916,0.0000019911, +0.0000019902,0.0000019892,0.0000019883,0.0000019876,0.0000019870, +0.0000019866,0.0000019863,0.0000019858,0.0000019855,0.0000019858, +0.0000019873,0.0000019894,0.0000019912,0.0000019926,0.0000019934, +0.0000019936,0.0000019931,0.0000019921,0.0000019904,0.0000019886, +0.0000019870,0.0000019857,0.0000019847,0.0000019838,0.0000019826, +0.0000019811,0.0000019796,0.0000019780,0.0000019766,0.0000019754, +0.0000019743,0.0000019734,0.0000019730,0.0000019731,0.0000019733, +0.0000019735,0.0000019739,0.0000019743,0.0000019747,0.0000019750, +0.0000019752,0.0000019758,0.0000019766,0.0000019772,0.0000019778, +0.0000019778,0.0000019783,0.0000019782,0.0000019779,0.0000019761, +0.0000019725,0.0000019673,0.0000019610,0.0000019546,0.0000019486, +0.0000019431,0.0000019383,0.0000019336,0.0000019292,0.0000019258, +0.0000019236,0.0000019212,0.0000019169,0.0000019100,0.0000019025, +0.0000018952,0.0000018911,0.0000018908,0.0000018926,0.0000018954, +0.0000018987,0.0000019018,0.0000019043,0.0000019061,0.0000019070, +0.0000019068,0.0000019054,0.0000019036,0.0000019025,0.0000019026, +0.0000019041,0.0000019063,0.0000019091,0.0000019111,0.0000019126, +0.0000019145,0.0000019166,0.0000019189,0.0000019217,0.0000019245, +0.0000019273,0.0000019299,0.0000019328,0.0000019350,0.0000019368, +0.0000019383,0.0000019394,0.0000019406,0.0000019414,0.0000019417, +0.0000019420,0.0000019425,0.0000019429,0.0000019431,0.0000019432, +0.0000019430,0.0000019426,0.0000019417,0.0000019400,0.0000019375, +0.0000019348,0.0000019320,0.0000019289,0.0000019257,0.0000019227, +0.0000019197,0.0000019165,0.0000019131,0.0000019098,0.0000019066, +0.0000019036,0.0000019008,0.0000018983,0.0000018957,0.0000018931, +0.0000018906,0.0000018881,0.0000018858,0.0000018839,0.0000018824, +0.0000018811,0.0000018799,0.0000018792,0.0000018788,0.0000018786, +0.0000018790,0.0000018797,0.0000018805,0.0000018819,0.0000018835, +0.0000018851,0.0000018868,0.0000018887,0.0000018906,0.0000018919, +0.0000018927,0.0000018936,0.0000018945,0.0000018953,0.0000018958, +0.0000018955,0.0000018949,0.0000018940,0.0000018932,0.0000018915, +0.0000018888,0.0000018851,0.0000018807,0.0000018759,0.0000018703, +0.0000018642,0.0000018576,0.0000018508,0.0000018444,0.0000018386, +0.0000018332,0.0000018276,0.0000018219,0.0000018164,0.0000018117, +0.0000018075,0.0000018032,0.0000017989,0.0000017949,0.0000017913, +0.0000017888,0.0000017868,0.0000017863,0.0000017864,0.0000017876, +0.0000017881,0.0000017904,0.0000017931,0.0000017961,0.0000017992, +0.0000018025,0.0000018050,0.0000018066,0.0000018076,0.0000018079, +0.0000018074,0.0000018068,0.0000018060,0.0000018045,0.0000018030, +0.0000018017,0.0000018002,0.0000017985,0.0000017973,0.0000017965, +0.0000017950,0.0000017929,0.0000017910,0.0000017893,0.0000017872, +0.0000017857,0.0000017843,0.0000017849,0.0000017874,0.0000017916, +0.0000017972,0.0000018042,0.0000018126,0.0000018217,0.0000018304, +0.0000018379,0.0000018433,0.0000018465,0.0000018484,0.0000018507, +0.0000018530,0.0000018545,0.0000018550,0.0000018550,0.0000018539, +0.0000018519,0.0000018507,0.0000018524,0.0000018595,0.0000018713, +0.0000018868,0.0000019044,0.0000019216,0.0000019359,0.0000019469, +0.0000019544,0.0000019584,0.0000019590,0.0000019558,0.0000019458, +0.0000019278,0.0000019055,0.0000018859,0.0000018734,0.0000018681, +0.0000018679,0.0000018700,0.0000018721,0.0000018730,0.0000018730, +0.0000018722,0.0000018716,0.0000018732,0.0000018774,0.0000018811, +0.0000018819,0.0000018815,0.0000018827,0.0000018862,0.0000018925, +0.0000019018,0.0000019137,0.0000019266,0.0000019393,0.0000019510, +0.0000019619,0.0000019721,0.0000019809,0.0000019878,0.0000019931, +0.0000019973,0.0000020007,0.0000020048,0.0000020086,0.0000020120, +0.0000020149,0.0000020156,0.0000020157,0.0000020137,0.0000020116, +0.0000020093,0.0000020078,0.0000020060,0.0000020039,0.0000020016, +0.0000019990,0.0000019963,0.0000019947,0.0000019948,0.0000019954, +0.0000019962,0.0000019974,0.0000019980,0.0000019969,0.0000019942, +0.0000019909,0.0000019855,0.0000019772,0.0000019682,0.0000019617, +0.0000019585,0.0000019569,0.0000019556,0.0000019543,0.0000019527, +0.0000019496,0.0000019440,0.0000019371,0.0000019317,0.0000019288, +0.0000019269,0.0000019241,0.0000019199,0.0000019144,0.0000019103, +0.0000019107,0.0000019133,0.0000019161,0.0000019181,0.0000019198, +0.0000019216,0.0000019231,0.0000019236,0.0000019236,0.0000019236, +0.0000019239,0.0000019248,0.0000019262,0.0000019281,0.0000019303, +0.0000019332,0.0000019376,0.0000019427,0.0000019483,0.0000019540, +0.0000019595,0.0000019638,0.0000019679,0.0000019712,0.0000019724, +0.0000019728,0.0000019722,0.0000019704,0.0000019677,0.0000019649, +0.0000019626,0.0000019608,0.0000019593,0.0000019582,0.0000019584, +0.0000019573,0.0000019522,0.0000019426,0.0000019304,0.0000019200, +0.0000019131,0.0000019112,0.0000019130,0.0000019180,0.0000019246, +0.0000019305,0.0000019337,0.0000019348,0.0000019351,0.0000019351, +0.0000019346,0.0000019338,0.0000019333,0.0000019328,0.0000019323, +0.0000019319,0.0000019314,0.0000019307,0.0000019301,0.0000019289, +0.0000019275,0.0000019276,0.0000019286,0.0000019312,0.0000019324, +0.0000019298,0.0000019253,0.0000019204,0.0000019163,0.0000019128, +0.0000019108,0.0000019101,0.0000019105,0.0000019107,0.0000019108, +0.0000019108,0.0000019098,0.0000019074,0.0000019044,0.0000019024, +0.0000019016,0.0000019019,0.0000019019,0.0000019023,0.0000019034, +0.0000019046,0.0000019054,0.0000019067,0.0000019085,0.0000019095, +0.0000019096,0.0000019107,0.0000019129,0.0000019159,0.0000019195, +0.0000019240,0.0000019288,0.0000019330,0.0000019358,0.0000019376, +0.0000019385,0.0000019381,0.0000019369,0.0000019349,0.0000019328, +0.0000019313,0.0000019302,0.0000019299,0.0000019308,0.0000019336, +0.0000019376,0.0000019413,0.0000019441,0.0000019464,0.0000019473, +0.0000019468,0.0000019449,0.0000019431,0.0000019415,0.0000019393, +0.0000019373,0.0000019363,0.0000019358,0.0000019349,0.0000019339, +0.0000019325,0.0000019317,0.0000019314,0.0000019314,0.0000019314, +0.0000019319,0.0000019331,0.0000019341,0.0000019353,0.0000019366, +0.0000019366,0.0000019351,0.0000019324,0.0000019305,0.0000019295, +0.0000019280,0.0000019253,0.0000019225,0.0000019207,0.0000019197, +0.0000019186,0.0000019184,0.0000019185,0.0000019186,0.0000019198, +0.0000019225,0.0000019248,0.0000019261,0.0000019264,0.0000019255, +0.0000019241,0.0000019214,0.0000019174,0.0000019137,0.0000019106, +0.0000019078,0.0000019054,0.0000019034,0.0000019014,0.0000018996, +0.0000018977,0.0000018968,0.0000018974,0.0000018980,0.0000018984, +0.0000018984,0.0000018988,0.0000018987,0.0000018984,0.0000018991, +0.0000019012,0.0000019039,0.0000019066,0.0000019092,0.0000019115, +0.0000019126,0.0000019119,0.0000019115,0.0000019108,0.0000019102, +0.0000019122,0.0000019146,0.0000019165,0.0000019177,0.0000019180, +0.0000019161,0.0000019120,0.0000019075,0.0000019039,0.0000019016, +0.0000019002,0.0000019000,0.0000018989,0.0000018957,0.0000018913, +0.0000018874,0.0000018852,0.0000018835,0.0000018828,0.0000018808, +0.0000018774,0.0000018718,0.0000018646,0.0000018563,0.0000018493, +0.0000018471,0.0000018489,0.0000018544,0.0000018617,0.0000018678, +0.0000018729,0.0000018765,0.0000018809,0.0000018856,0.0000018894, +0.0000018918,0.0000018917,0.0000018897,0.0000018895,0.0000018881, +0.0000018855,0.0000018819,0.0000018788,0.0000018772,0.0000018752, +0.0000018714,0.0000018660,0.0000018605,0.0000018541,0.0000018477, +0.0000018436,0.0000018419,0.0000018420,0.0000018465,0.0000018517, +0.0000018555,0.0000018569,0.0000018562,0.0000018535,0.0000018490, +0.0000018441,0.0000018400,0.0000018378,0.0000018374,0.0000018382, +0.0000018413,0.0000018460,0.0000018489,0.0000018513,0.0000018541, +0.0000018557,0.0000018555,0.0000018540,0.0000018525,0.0000018524, +0.0000018535,0.0000018548,0.0000018560,0.0000018565,0.0000018570, +0.0000018580,0.0000018596,0.0000018610,0.0000018612,0.0000018597, +0.0000018562,0.0000018524,0.0000018485,0.0000018462,0.0000018449, +0.0000018443,0.0000018424,0.0000018402,0.0000018381,0.0000018338, +0.0000018284,0.0000018241,0.0000018235,0.0000018244,0.0000018259, +0.0000018262,0.0000018227,0.0000018170,0.0000018107,0.0000018045, +0.0000017977,0.0000017915,0.0000017891,0.0000017881,0.0000017866, +0.0000017833,0.0000017769,0.0000017689,0.0000017622,0.0000017582, +0.0000017549,0.0000017504,0.0000017437,0.0000017360,0.0000017293, +0.0000017262,0.0000017256,0.0000017271,0.0000017291,0.0000017291, +0.0000017267,0.0000017251,0.0000017221,0.0000017216,0.0000017221, +0.0000017247,0.0000017291,0.0000017347,0.0000017404,0.0000017459, +0.0000017512,0.0000017574,0.0000017658,0.0000017757,0.0000017858, +0.0000017957,0.0000018062,0.0000018172,0.0000018287,0.0000018398, +0.0000018494,0.0000018572,0.0000018633,0.0000018673,0.0000018682, +0.0000018668,0.0000018646,0.0000018631,0.0000018626,0.0000018623, +0.0000018622,0.0000018622,0.0000018624,0.0000018644,0.0000018682, +0.0000018717,0.0000018733,0.0000018726,0.0000018712,0.0000018697, +0.0000018697,0.0000018706,0.0000018724,0.0000018737,0.0000018737, +0.0000018728,0.0000018718,0.0000018714,0.0000018722,0.0000018736, +0.0000018741,0.0000018725,0.0000018680,0.0000018583,0.0000018436, +0.0000018280,0.0000018165,0.0000018103,0.0000018073,0.0000018057, +0.0000018035,0.0000018008,0.0000017983,0.0000017969,0.0000017963, +0.0000017953,0.0000017940,0.0000017926,0.0000017911,0.0000017896, +0.0000017886,0.0000017902,0.0000017934,0.0000017968,0.0000018001, +0.0000018040,0.0000018072,0.0000018088,0.0000018093,0.0000018099, +0.0000018109,0.0000018122,0.0000018136,0.0000018161,0.0000018209, +0.0000018275,0.0000018347,0.0000018400,0.0000018412,0.0000018403, +0.0000018380,0.0000018351,0.0000018329,0.0000018328,0.0000018345, +0.0000018373,0.0000018402,0.0000018423,0.0000018427,0.0000018415, +0.0000018390,0.0000018357,0.0000018319,0.0000018289,0.0000018272, +0.0000018269,0.0000018286,0.0000018317,0.0000018338,0.0000018330, +0.0000018304,0.0000018282,0.0000018292,0.0000018329,0.0000018371, +0.0000018408,0.0000018437,0.0000018458,0.0000018469,0.0000018479, +0.0000018496,0.0000018514,0.0000018531,0.0000018545,0.0000018563, +0.0000018578,0.0000018586,0.0000018586,0.0000018593,0.0000018619, +0.0000018675,0.0000018739,0.0000018766,0.0000018727,0.0000018615, +0.0000018496,0.0000018434,0.0000018442,0.0000018457,0.0000018450, +0.0000018435,0.0000018435,0.0000018445,0.0000018430,0.0000018388, +0.0000018320,0.0000018250,0.0000018200,0.0000018167,0.0000018141, +0.0000018115,0.0000018078,0.0000018034,0.0000017999,0.0000017989, +0.0000017978,0.0000017922,0.0000017846,0.0000017811,0.0000017815, +0.0000017856,0.0000017934,0.0000018010,0.0000018057,0.0000018069, +0.0000018059,0.0000018055,0.0000018075,0.0000018094,0.0000018090, +0.0000018052,0.0000018035,0.0000018062,0.0000018087,0.0000018087, +0.0000018071,0.0000018038,0.0000018040,0.0000018089,0.0000018105, +0.0000018055,0.0000018016,0.0000017999,0.0000017971,0.0000017960, +0.0000017982,0.0000018027,0.0000018048,0.0000018014,0.0000017921, +0.0000017822,0.0000017716,0.0000017640,0.0000017613,0.0000017547, +0.0000017489,0.0000017559,0.0000017605,0.0000017789,0.0000018229, +0.0000018498,0.0000018514,0.0000018466,0.0000018349,0.0000018088, +0.0000017832,0.0000017668,0.0000017707,0.0000017802,0.0000017818, +0.0000017846,0.0000017855,0.0000017842,0.0000017821,0.0000017815, +0.0000017813,0.0000017791,0.0000017701,0.0000017633,0.0000017613, +0.0000017625,0.0000017684,0.0000017800,0.0000017899,0.0000017936, +0.0000017930,0.0000017803,0.0000017617,0.0000017620,0.0000017656, +0.0000017748,0.0000017725,0.0000017502,0.0000017375,0.0000017380, +0.0000017408,0.0000017515,0.0000017569,0.0000017548,0.0000017564, +0.0000017589,0.0000017574,0.0000017555,0.0000017541,0.0000017535, +0.0000017603,0.0000017748,0.0000017805,0.0000017818,0.0000017864, +0.0000017917,0.0000017963,0.0000018016,0.0000018048,0.0000018072, +0.0000018182,0.0000018366,0.0000018472,0.0000018451,0.0000018367, +0.0000018322,0.0000018294,0.0000018222,0.0000018126,0.0000018067, +0.0000018021,0.0000017902,0.0000017755,0.0000017687,0.0000017690, +0.0000017714,0.0000017735,0.0000017747,0.0000017748,0.0000017732, +0.0000017702,0.0000017690,0.0000017734,0.0000017876,0.0000018031, +0.0000018037,0.0000018082,0.0000018074,0.0000018074,0.0000018109, +0.0000018171,0.0000018239,0.0000018291,0.0000018331,0.0000018375, +0.0000018422,0.0000018462,0.0000018486,0.0000018482,0.0000018434, +0.0000018447,0.0000018559,0.0000018678,0.0000018661,0.0000018538, +0.0000018471,0.0000018433,0.0000018268,0.0000018110,0.0000018132, +0.0000018269,0.0000018421,0.0000018516,0.0000018505,0.0000018464, +0.0000018466,0.0000018450,0.0000018382,0.0000018336,0.0000018319, +0.0000018297,0.0000018288,0.0000018321,0.0000018407,0.0000018493, +0.0000018543,0.0000018565,0.0000018569,0.0000018566,0.0000018557, +0.0000018551,0.0000018553,0.0000018556,0.0000018551,0.0000018546, +0.0000018553,0.0000018572,0.0000018593,0.0000018613,0.0000018642, +0.0000018680,0.0000018716,0.0000018745,0.0000018772,0.0000018803, +0.0000018838,0.0000018876,0.0000018913,0.0000018943,0.0000018958, +0.0000018957,0.0000018944,0.0000018930,0.0000018916,0.0000018907, +0.0000018910,0.0000018921,0.0000018929,0.0000018936,0.0000018938, +0.0000018936,0.0000018931,0.0000018921,0.0000018904,0.0000018879, +0.0000018845,0.0000018808,0.0000018770,0.0000018733,0.0000018710, +0.0000018709,0.0000018734,0.0000018763,0.0000018814,0.0000018886, +0.0000019021,0.0000019265,0.0000019572,0.0000019801,0.0000019864, +0.0000019851,0.0000019778,0.0000019684,0.0000019607,0.0000019561, +0.0000019538,0.0000019531,0.0000019538,0.0000019558,0.0000019589, +0.0000019630,0.0000019682,0.0000019743,0.0000019808,0.0000019861, +0.0000019887,0.0000019888,0.0000019876,0.0000019858,0.0000019842, +0.0000019830,0.0000019826,0.0000019830,0.0000019830,0.0000019825, +0.0000019815,0.0000019803,0.0000019790,0.0000019782,0.0000019794, +0.0000019821,0.0000019853,0.0000019885,0.0000019915,0.0000019941, +0.0000019957,0.0000019963,0.0000019971,0.0000019967,0.0000019957, +0.0000019941,0.0000019921,0.0000019898,0.0000019876,0.0000019856, +0.0000019835,0.0000019815,0.0000019795,0.0000019778,0.0000019765, +0.0000019756,0.0000019750,0.0000019749,0.0000019748,0.0000019749, +0.0000019752,0.0000019758,0.0000019762,0.0000019765,0.0000019772, +0.0000019781,0.0000019784,0.0000019786,0.0000019779,0.0000019764, +0.0000019743,0.0000019712,0.0000019672,0.0000019624,0.0000019574, +0.0000019530,0.0000019490,0.0000019449,0.0000019402,0.0000019348, +0.0000019294,0.0000019250,0.0000019225,0.0000019218,0.0000019211, +0.0000019196,0.0000019166,0.0000019117,0.0000019059,0.0000019007, +0.0000018973,0.0000018959,0.0000018957,0.0000018968,0.0000018986, +0.0000019001,0.0000019020,0.0000019041,0.0000019059,0.0000019064, +0.0000019056,0.0000019039,0.0000019025,0.0000019019,0.0000019016, +0.0000019019,0.0000019034,0.0000019051,0.0000019065,0.0000019081, +0.0000019102,0.0000019123,0.0000019142,0.0000019161,0.0000019180, +0.0000019199,0.0000019216,0.0000019227,0.0000019234,0.0000019238, +0.0000019242,0.0000019248,0.0000019245,0.0000019239,0.0000019232, +0.0000019224,0.0000019215,0.0000019202,0.0000019189,0.0000019176, +0.0000019161,0.0000019140,0.0000019115,0.0000019088,0.0000019065, +0.0000019046,0.0000019027,0.0000019011,0.0000019002,0.0000018992, +0.0000018978,0.0000018961,0.0000018941,0.0000018917,0.0000018890, +0.0000018865,0.0000018839,0.0000018813,0.0000018792,0.0000018773, +0.0000018751,0.0000018730,0.0000018710,0.0000018695,0.0000018684, +0.0000018677,0.0000018673,0.0000018672,0.0000018672,0.0000018682, +0.0000018697,0.0000018715,0.0000018734,0.0000018750,0.0000018768, +0.0000018789,0.0000018810,0.0000018828,0.0000018838,0.0000018844, +0.0000018857,0.0000018871,0.0000018887,0.0000018904,0.0000018918, +0.0000018925,0.0000018927,0.0000018927,0.0000018924,0.0000018913, +0.0000018890,0.0000018865,0.0000018847,0.0000018828,0.0000018796, +0.0000018766,0.0000018741,0.0000018716,0.0000018692,0.0000018661, +0.0000018618,0.0000018566,0.0000018506,0.0000018445,0.0000018381, +0.0000018311,0.0000018239,0.0000018171,0.0000018108,0.0000018051, +0.0000018000,0.0000017961,0.0000017931,0.0000017908,0.0000017890, +0.0000017880,0.0000017883,0.0000017895,0.0000017913,0.0000017926, +0.0000017933,0.0000017941,0.0000017946,0.0000017944,0.0000017937, +0.0000017936,0.0000017936,0.0000017934,0.0000017931,0.0000017929, +0.0000017929,0.0000017927,0.0000017929,0.0000017931,0.0000017922, +0.0000017910,0.0000017907,0.0000017908,0.0000017918,0.0000017942, +0.0000017977,0.0000018022,0.0000018080,0.0000018146,0.0000018214, +0.0000018277,0.0000018328,0.0000018362,0.0000018385,0.0000018407, +0.0000018424,0.0000018444,0.0000018479,0.0000018518,0.0000018540, +0.0000018547,0.0000018548,0.0000018564,0.0000018620,0.0000018740, +0.0000018906,0.0000019082,0.0000019253,0.0000019410,0.0000019546, +0.0000019652,0.0000019728,0.0000019780,0.0000019818,0.0000019846, +0.0000019865,0.0000019869,0.0000019843,0.0000019731,0.0000019524, +0.0000019270,0.0000019039,0.0000018871,0.0000018779,0.0000018747, +0.0000018743,0.0000018742,0.0000018734,0.0000018725,0.0000018732, +0.0000018771,0.0000018831,0.0000018875,0.0000018884,0.0000018879, +0.0000018898,0.0000018952,0.0000019041,0.0000019159,0.0000019292, +0.0000019428,0.0000019559,0.0000019691,0.0000019815,0.0000019916, +0.0000019989,0.0000020034,0.0000020054,0.0000020059,0.0000020069, +0.0000020071,0.0000020087,0.0000020075,0.0000020058,0.0000020026, +0.0000019987,0.0000019953,0.0000019923,0.0000019905,0.0000019893, +0.0000019884,0.0000019872,0.0000019856,0.0000019839,0.0000019817, +0.0000019794,0.0000019785,0.0000019794,0.0000019810,0.0000019832, +0.0000019850,0.0000019852,0.0000019829,0.0000019790,0.0000019746, +0.0000019691,0.0000019640,0.0000019605,0.0000019582,0.0000019564, +0.0000019545,0.0000019523,0.0000019490,0.0000019444,0.0000019390, +0.0000019342,0.0000019311,0.0000019285,0.0000019237,0.0000019166, +0.0000019106,0.0000019090,0.0000019101,0.0000019148,0.0000019204, +0.0000019249,0.0000019274,0.0000019288,0.0000019298,0.0000019305, +0.0000019307,0.0000019305,0.0000019304,0.0000019308,0.0000019317, +0.0000019333,0.0000019367,0.0000019418,0.0000019485,0.0000019575, +0.0000019669,0.0000019763,0.0000019849,0.0000019925,0.0000019976, +0.0000020016,0.0000020042,0.0000020039,0.0000020022,0.0000019992, +0.0000019950,0.0000019891,0.0000019822,0.0000019755,0.0000019689, +0.0000019629,0.0000019591,0.0000019584,0.0000019588,0.0000019591, +0.0000019569,0.0000019489,0.0000019365,0.0000019234,0.0000019145, +0.0000019121,0.0000019136,0.0000019175,0.0000019223,0.0000019258, +0.0000019280,0.0000019297,0.0000019309,0.0000019317,0.0000019319, +0.0000019314,0.0000019305,0.0000019302,0.0000019309,0.0000019319, +0.0000019328,0.0000019338,0.0000019348,0.0000019365,0.0000019392, +0.0000019391,0.0000019375,0.0000019334,0.0000019289,0.0000019259, +0.0000019243,0.0000019227,0.0000019211,0.0000019198,0.0000019195, +0.0000019203,0.0000019216,0.0000019225,0.0000019226,0.0000019211, +0.0000019176,0.0000019130,0.0000019088,0.0000019060,0.0000019046, +0.0000019041,0.0000019040,0.0000019046,0.0000019056,0.0000019062, +0.0000019068,0.0000019080,0.0000019084,0.0000019082,0.0000019084, +0.0000019105,0.0000019131,0.0000019158,0.0000019191,0.0000019233, +0.0000019278,0.0000019316,0.0000019344,0.0000019362,0.0000019372, +0.0000019374,0.0000019372,0.0000019373,0.0000019382,0.0000019394, +0.0000019407,0.0000019426,0.0000019455,0.0000019491,0.0000019516, +0.0000019532,0.0000019545,0.0000019557,0.0000019561,0.0000019549, +0.0000019526,0.0000019498,0.0000019470,0.0000019443,0.0000019430, +0.0000019433,0.0000019444,0.0000019455,0.0000019463,0.0000019464, +0.0000019459,0.0000019453,0.0000019441,0.0000019422,0.0000019405, +0.0000019396,0.0000019395,0.0000019392,0.0000019386,0.0000019377, +0.0000019356,0.0000019324,0.0000019295,0.0000019271,0.0000019247, +0.0000019220,0.0000019195,0.0000019181,0.0000019183,0.0000019195, +0.0000019211,0.0000019231,0.0000019266,0.0000019303,0.0000019324, +0.0000019339,0.0000019351,0.0000019351,0.0000019345,0.0000019326, +0.0000019290,0.0000019244,0.0000019198,0.0000019155,0.0000019109, +0.0000019064,0.0000019023,0.0000018990,0.0000018969,0.0000018949, +0.0000018945,0.0000018950,0.0000018961,0.0000018974,0.0000018987, +0.0000018989,0.0000018989,0.0000018996,0.0000019018,0.0000019049, +0.0000019081,0.0000019109,0.0000019134,0.0000019151,0.0000019156, +0.0000019159,0.0000019148,0.0000019134,0.0000019145,0.0000019161, +0.0000019176,0.0000019190,0.0000019202,0.0000019195,0.0000019169, +0.0000019132,0.0000019103,0.0000019086,0.0000019083,0.0000019088, +0.0000019077,0.0000019034,0.0000018971,0.0000018904,0.0000018856, +0.0000018829,0.0000018819,0.0000018825,0.0000018820,0.0000018802, +0.0000018761,0.0000018681,0.0000018577,0.0000018486,0.0000018451, +0.0000018455,0.0000018512,0.0000018582,0.0000018656,0.0000018713, +0.0000018764,0.0000018806,0.0000018837,0.0000018858,0.0000018863, +0.0000018869,0.0000018884,0.0000018908,0.0000018932,0.0000018957, +0.0000018967,0.0000018968,0.0000018953,0.0000018921,0.0000018869, +0.0000018806,0.0000018728,0.0000018646,0.0000018580,0.0000018531, +0.0000018507,0.0000018528,0.0000018568,0.0000018608,0.0000018646, +0.0000018668,0.0000018665,0.0000018641,0.0000018601,0.0000018559, +0.0000018530,0.0000018516,0.0000018518,0.0000018539,0.0000018561, +0.0000018562,0.0000018576,0.0000018591,0.0000018590,0.0000018575, +0.0000018556,0.0000018544,0.0000018549,0.0000018571,0.0000018599, +0.0000018615,0.0000018617,0.0000018611,0.0000018611,0.0000018624, +0.0000018636,0.0000018645,0.0000018635,0.0000018606,0.0000018558, +0.0000018498,0.0000018443,0.0000018412,0.0000018390,0.0000018381, +0.0000018393,0.0000018395,0.0000018371,0.0000018318,0.0000018267, +0.0000018239,0.0000018246,0.0000018268,0.0000018287,0.0000018275, +0.0000018232,0.0000018171,0.0000018097,0.0000018017,0.0000017964, +0.0000017938,0.0000017918,0.0000017895,0.0000017855,0.0000017791, +0.0000017722,0.0000017675,0.0000017651,0.0000017625,0.0000017581, +0.0000017517,0.0000017447,0.0000017388,0.0000017351,0.0000017335, +0.0000017340,0.0000017344,0.0000017332,0.0000017293,0.0000017255, +0.0000017229,0.0000017207,0.0000017198,0.0000017213,0.0000017217, +0.0000017220,0.0000017225,0.0000017228,0.0000017236,0.0000017263, +0.0000017309,0.0000017364,0.0000017422,0.0000017489,0.0000017569, +0.0000017656,0.0000017751,0.0000017856,0.0000017972,0.0000018092, +0.0000018201,0.0000018277,0.0000018313,0.0000018319,0.0000018312, +0.0000018307,0.0000018306,0.0000018310,0.0000018323,0.0000018339, +0.0000018363,0.0000018414,0.0000018488,0.0000018556,0.0000018607, +0.0000018638,0.0000018645,0.0000018639,0.0000018625,0.0000018615, +0.0000018607,0.0000018594,0.0000018570,0.0000018535,0.0000018498, +0.0000018476,0.0000018493,0.0000018551,0.0000018629,0.0000018678, +0.0000018692,0.0000018655,0.0000018558,0.0000018431,0.0000018309, +0.0000018213,0.0000018145,0.0000018093,0.0000018049,0.0000018010, +0.0000017992,0.0000017994,0.0000018001,0.0000017999,0.0000017989, +0.0000017974,0.0000017957,0.0000017940,0.0000017942,0.0000017960, +0.0000017989,0.0000018018,0.0000018054,0.0000018083,0.0000018103, +0.0000018124,0.0000018148,0.0000018173,0.0000018188,0.0000018194, +0.0000018207,0.0000018245,0.0000018313,0.0000018396,0.0000018463, +0.0000018485,0.0000018471,0.0000018430,0.0000018384,0.0000018359, +0.0000018360,0.0000018379,0.0000018406,0.0000018437,0.0000018463, +0.0000018469,0.0000018453,0.0000018418,0.0000018374,0.0000018333, +0.0000018301,0.0000018278,0.0000018267,0.0000018269,0.0000018287, +0.0000018318,0.0000018341,0.0000018344,0.0000018325,0.0000018314, +0.0000018321,0.0000018332,0.0000018350,0.0000018363,0.0000018373, +0.0000018381,0.0000018393,0.0000018421,0.0000018452,0.0000018475, +0.0000018491,0.0000018506,0.0000018524,0.0000018539,0.0000018543, +0.0000018542,0.0000018548,0.0000018578,0.0000018635,0.0000018697, +0.0000018723,0.0000018657,0.0000018517,0.0000018409,0.0000018385, +0.0000018401,0.0000018412,0.0000018415,0.0000018426,0.0000018430, +0.0000018407,0.0000018358,0.0000018305,0.0000018262,0.0000018237, +0.0000018218,0.0000018200,0.0000018170,0.0000018124,0.0000018084, +0.0000018065,0.0000018050,0.0000018001,0.0000017931,0.0000017903, +0.0000017911,0.0000017941,0.0000017993,0.0000018040,0.0000018058, +0.0000018060,0.0000018062,0.0000018072,0.0000018101,0.0000018125, +0.0000018115,0.0000018072,0.0000018050,0.0000018078,0.0000018115, +0.0000018115,0.0000018092,0.0000018051,0.0000018029,0.0000018060, +0.0000018076,0.0000018033,0.0000017991,0.0000017992,0.0000017983, +0.0000017963,0.0000017964,0.0000017998,0.0000018035,0.0000018039, +0.0000017989,0.0000017888,0.0000017782,0.0000017679,0.0000017618, +0.0000017594,0.0000017553,0.0000017565,0.0000017592,0.0000017645, +0.0000017989,0.0000018398,0.0000018523,0.0000018491,0.0000018433, +0.0000018298,0.0000018041,0.0000017801,0.0000017655,0.0000017688, +0.0000017792,0.0000017802,0.0000017808,0.0000017833,0.0000017835, +0.0000017822,0.0000017808,0.0000017756,0.0000017666,0.0000017612, +0.0000017590,0.0000017578,0.0000017596,0.0000017687,0.0000017823, +0.0000017905,0.0000017932,0.0000017916,0.0000017746,0.0000017619, +0.0000017635,0.0000017682,0.0000017762,0.0000017653,0.0000017440, +0.0000017390,0.0000017392,0.0000017431,0.0000017530,0.0000017546, +0.0000017535,0.0000017566,0.0000017567,0.0000017553,0.0000017545, +0.0000017532,0.0000017544,0.0000017652,0.0000017780,0.0000017796, +0.0000017812,0.0000017891,0.0000017958,0.0000017999,0.0000018015, +0.0000018057,0.0000018192,0.0000018368,0.0000018465,0.0000018449, +0.0000018377,0.0000018340,0.0000018302,0.0000018218,0.0000018129, +0.0000018068,0.0000017952,0.0000017764,0.0000017679,0.0000017695, +0.0000017736,0.0000017755,0.0000017758,0.0000017756,0.0000017757, +0.0000017758,0.0000017743,0.0000017707,0.0000017679,0.0000017721, +0.0000017882,0.0000017915,0.0000018041,0.0000018051,0.0000018040, +0.0000018052,0.0000018095,0.0000018158,0.0000018218,0.0000018262, +0.0000018303,0.0000018352,0.0000018404,0.0000018461,0.0000018502, +0.0000018494,0.0000018458,0.0000018480,0.0000018606,0.0000018684, +0.0000018607,0.0000018492,0.0000018452,0.0000018344,0.0000018152, +0.0000018101,0.0000018203,0.0000018358,0.0000018474,0.0000018496, +0.0000018457,0.0000018449,0.0000018450,0.0000018397,0.0000018344, +0.0000018324,0.0000018306,0.0000018293,0.0000018302,0.0000018344, +0.0000018405,0.0000018454,0.0000018477,0.0000018480,0.0000018477, +0.0000018475,0.0000018487,0.0000018513,0.0000018533,0.0000018533, +0.0000018525,0.0000018523,0.0000018539,0.0000018572,0.0000018607, +0.0000018632,0.0000018655,0.0000018680,0.0000018704,0.0000018728, +0.0000018753,0.0000018780,0.0000018805,0.0000018831,0.0000018857, +0.0000018883,0.0000018903,0.0000018915,0.0000018917,0.0000018907, +0.0000018892,0.0000018883,0.0000018883,0.0000018871,0.0000018861, +0.0000018849,0.0000018831,0.0000018811,0.0000018785,0.0000018753, +0.0000018718,0.0000018685,0.0000018660,0.0000018649,0.0000018665, +0.0000018702,0.0000018760,0.0000018818,0.0000018865,0.0000018912, +0.0000019007,0.0000019189,0.0000019441,0.0000019683,0.0000019803, +0.0000019824,0.0000019793,0.0000019730,0.0000019672,0.0000019618, +0.0000019572,0.0000019538,0.0000019514,0.0000019504,0.0000019497, +0.0000019491,0.0000019493,0.0000019521,0.0000019582,0.0000019670, +0.0000019759,0.0000019814,0.0000019827,0.0000019813,0.0000019802, +0.0000019800,0.0000019809,0.0000019826,0.0000019834,0.0000019833, +0.0000019826,0.0000019816,0.0000019803,0.0000019788,0.0000019779, +0.0000019785,0.0000019802,0.0000019819,0.0000019843,0.0000019875, +0.0000019908,0.0000019937,0.0000019963,0.0000019979,0.0000019986, +0.0000019985,0.0000019980,0.0000019966,0.0000019951,0.0000019939, +0.0000019923,0.0000019899,0.0000019865,0.0000019832,0.0000019798, +0.0000019769,0.0000019746,0.0000019733,0.0000019730,0.0000019730, +0.0000019736,0.0000019746,0.0000019755,0.0000019759,0.0000019762, +0.0000019761,0.0000019751,0.0000019728,0.0000019696,0.0000019657, +0.0000019617,0.0000019583,0.0000019555,0.0000019531,0.0000019506, +0.0000019476,0.0000019438,0.0000019391,0.0000019337,0.0000019290, +0.0000019256,0.0000019232,0.0000019220,0.0000019216,0.0000019219, +0.0000019225,0.0000019228,0.0000019220,0.0000019200,0.0000019169, +0.0000019133,0.0000019099,0.0000019070,0.0000019049,0.0000019031, +0.0000019014,0.0000019004,0.0000019004,0.0000019014,0.0000019023, +0.0000019018,0.0000019021,0.0000019021,0.0000019019,0.0000019009, +0.0000018996,0.0000018988,0.0000018986,0.0000018991,0.0000019001, +0.0000019012,0.0000019024,0.0000019036,0.0000019049,0.0000019059, +0.0000019066,0.0000019068,0.0000019068,0.0000019067,0.0000019066, +0.0000019064,0.0000019062,0.0000019051,0.0000019043,0.0000019039, +0.0000019038,0.0000019030,0.0000019029,0.0000019029,0.0000019025, +0.0000019018,0.0000019009,0.0000019000,0.0000018990,0.0000018980, +0.0000018972,0.0000018963,0.0000018958,0.0000018959,0.0000018960, +0.0000018959,0.0000018956,0.0000018948,0.0000018934,0.0000018915, +0.0000018898,0.0000018879,0.0000018858,0.0000018838,0.0000018818, +0.0000018795,0.0000018771,0.0000018749,0.0000018729,0.0000018712, +0.0000018696,0.0000018684,0.0000018674,0.0000018669,0.0000018676, +0.0000018687,0.0000018702,0.0000018716,0.0000018731,0.0000018748, +0.0000018767,0.0000018784,0.0000018794,0.0000018797,0.0000018796, +0.0000018798,0.0000018800,0.0000018805,0.0000018814,0.0000018831, +0.0000018843,0.0000018852,0.0000018859,0.0000018865,0.0000018865, +0.0000018856,0.0000018846,0.0000018839,0.0000018834,0.0000018821, +0.0000018804,0.0000018795,0.0000018796,0.0000018795,0.0000018794, +0.0000018787,0.0000018777,0.0000018759,0.0000018729,0.0000018691, +0.0000018640,0.0000018580,0.0000018512,0.0000018441,0.0000018367, +0.0000018292,0.0000018226,0.0000018168,0.0000018113,0.0000018059, +0.0000018011,0.0000017978,0.0000017963,0.0000017957,0.0000017952, +0.0000017946,0.0000017941,0.0000017936,0.0000017926,0.0000017920, +0.0000017923,0.0000017933,0.0000017944,0.0000017953,0.0000017961, +0.0000017968,0.0000017977,0.0000017992,0.0000018009,0.0000018019, +0.0000018030,0.0000018049,0.0000018080,0.0000018122,0.0000018168, +0.0000018215,0.0000018261,0.0000018302,0.0000018330,0.0000018346, +0.0000018348,0.0000018346,0.0000018350,0.0000018365,0.0000018392, +0.0000018425,0.0000018464,0.0000018502,0.0000018528,0.0000018553, +0.0000018624,0.0000018783,0.0000019006,0.0000019239,0.0000019436, +0.0000019578,0.0000019672,0.0000019735,0.0000019778,0.0000019805, +0.0000019819,0.0000019829,0.0000019848,0.0000019876,0.0000019915, +0.0000019955,0.0000019971,0.0000019949,0.0000019851,0.0000019667, +0.0000019424,0.0000019174,0.0000018976,0.0000018858,0.0000018804, +0.0000018779,0.0000018756,0.0000018746,0.0000018762,0.0000018819, +0.0000018888,0.0000018929,0.0000018935,0.0000018939,0.0000018980, +0.0000019069,0.0000019185,0.0000019314,0.0000019450,0.0000019597, +0.0000019749,0.0000019893,0.0000020008,0.0000020077,0.0000020105, +0.0000020110,0.0000020091,0.0000020078,0.0000020056,0.0000020032, +0.0000019995,0.0000019947,0.0000019893,0.0000019847,0.0000019812, +0.0000019790,0.0000019781,0.0000019779,0.0000019778,0.0000019774, +0.0000019768,0.0000019757,0.0000019743,0.0000019721,0.0000019694, +0.0000019671,0.0000019669,0.0000019686,0.0000019711,0.0000019733, +0.0000019740,0.0000019730,0.0000019702,0.0000019671,0.0000019643, +0.0000019621,0.0000019603,0.0000019579,0.0000019548,0.0000019508, +0.0000019465,0.0000019424,0.0000019391,0.0000019366,0.0000019340, +0.0000019299,0.0000019242,0.0000019174,0.0000019120,0.0000019099, +0.0000019122,0.0000019184,0.0000019244,0.0000019296,0.0000019341, +0.0000019372,0.0000019383,0.0000019385,0.0000019383,0.0000019382, +0.0000019385,0.0000019398,0.0000019425,0.0000019467,0.0000019522, +0.0000019596,0.0000019688,0.0000019799,0.0000019924,0.0000020030, +0.0000020113,0.0000020180,0.0000020241,0.0000020289,0.0000020322, +0.0000020340,0.0000020337,0.0000020320,0.0000020292,0.0000020253, +0.0000020185,0.0000020087,0.0000019982,0.0000019877,0.0000019768, +0.0000019667,0.0000019598,0.0000019580,0.0000019585,0.0000019592, +0.0000019578,0.0000019520,0.0000019411,0.0000019283,0.0000019187, +0.0000019151,0.0000019159,0.0000019183,0.0000019199,0.0000019210, +0.0000019225,0.0000019238,0.0000019249,0.0000019260,0.0000019265, +0.0000019281,0.0000019312,0.0000019350,0.0000019391,0.0000019419, +0.0000019436,0.0000019434,0.0000019431,0.0000019416,0.0000019396, +0.0000019374,0.0000019353,0.0000019339,0.0000019333,0.0000019326, +0.0000019309,0.0000019294,0.0000019291,0.0000019298,0.0000019315, +0.0000019341,0.0000019362,0.0000019368,0.0000019357,0.0000019326, +0.0000019285,0.0000019243,0.0000019202,0.0000019174,0.0000019160, +0.0000019151,0.0000019149,0.0000019153,0.0000019156,0.0000019158, +0.0000019157,0.0000019150,0.0000019142,0.0000019138,0.0000019143, +0.0000019159,0.0000019180,0.0000019207,0.0000019243,0.0000019286, +0.0000019327,0.0000019363,0.0000019394,0.0000019417,0.0000019435, +0.0000019451,0.0000019465,0.0000019476,0.0000019491,0.0000019514, +0.0000019541,0.0000019564,0.0000019579,0.0000019586,0.0000019591, +0.0000019596,0.0000019608,0.0000019622,0.0000019625,0.0000019616, +0.0000019596,0.0000019566,0.0000019531,0.0000019519,0.0000019528, +0.0000019539,0.0000019544,0.0000019543,0.0000019530,0.0000019505, +0.0000019477,0.0000019448,0.0000019414,0.0000019381,0.0000019365, +0.0000019358,0.0000019352,0.0000019344,0.0000019332,0.0000019313, +0.0000019282,0.0000019243,0.0000019208,0.0000019180,0.0000019149, +0.0000019118,0.0000019103,0.0000019111,0.0000019134,0.0000019159, +0.0000019189,0.0000019230,0.0000019270,0.0000019298,0.0000019320, +0.0000019342,0.0000019362,0.0000019374,0.0000019379,0.0000019369, +0.0000019348,0.0000019323,0.0000019289,0.0000019239,0.0000019177, +0.0000019111,0.0000019050,0.0000019003,0.0000018962,0.0000018939, +0.0000018924,0.0000018927,0.0000018944,0.0000018962,0.0000018974, +0.0000018976,0.0000018980,0.0000018998,0.0000019027,0.0000019059, +0.0000019094,0.0000019122,0.0000019142,0.0000019156,0.0000019162, +0.0000019156,0.0000019137,0.0000019141,0.0000019156,0.0000019175, +0.0000019193,0.0000019206,0.0000019201,0.0000019184,0.0000019163, +0.0000019146,0.0000019141,0.0000019154,0.0000019174,0.0000019178, +0.0000019148,0.0000019086,0.0000019007,0.0000018931,0.0000018869, +0.0000018844,0.0000018833,0.0000018832,0.0000018837,0.0000018828, +0.0000018782,0.0000018697,0.0000018596,0.0000018510,0.0000018467, +0.0000018467,0.0000018504,0.0000018571,0.0000018638,0.0000018696, +0.0000018735,0.0000018759,0.0000018778,0.0000018788,0.0000018802, +0.0000018825,0.0000018864,0.0000018927,0.0000018997,0.0000019042, +0.0000019074,0.0000019073,0.0000019054,0.0000019015,0.0000018964, +0.0000018892,0.0000018812,0.0000018741,0.0000018674,0.0000018630, +0.0000018615,0.0000018624,0.0000018649,0.0000018693,0.0000018729, +0.0000018749,0.0000018755,0.0000018740,0.0000018715,0.0000018688, +0.0000018673,0.0000018669,0.0000018674,0.0000018661,0.0000018641, +0.0000018635,0.0000018621,0.0000018590,0.0000018561,0.0000018536, +0.0000018531,0.0000018543,0.0000018580,0.0000018624,0.0000018665, +0.0000018689,0.0000018696,0.0000018697,0.0000018698,0.0000018697, +0.0000018691,0.0000018682,0.0000018659,0.0000018612,0.0000018545, +0.0000018472,0.0000018410,0.0000018368,0.0000018366,0.0000018389, +0.0000018403,0.0000018388,0.0000018344,0.0000018290,0.0000018256, +0.0000018254,0.0000018276,0.0000018301,0.0000018313,0.0000018295, +0.0000018243,0.0000018164,0.0000018080,0.0000018029,0.0000017988, +0.0000017951,0.0000017912,0.0000017860,0.0000017803,0.0000017751, +0.0000017721,0.0000017700,0.0000017672,0.0000017631,0.0000017583, +0.0000017534,0.0000017495,0.0000017463,0.0000017445,0.0000017428, +0.0000017403,0.0000017364,0.0000017321,0.0000017290,0.0000017273, +0.0000017263,0.0000017252,0.0000017244,0.0000017237,0.0000017226, +0.0000017210,0.0000017199,0.0000017187,0.0000017192,0.0000017199, +0.0000017211,0.0000017235,0.0000017274,0.0000017318,0.0000017357, +0.0000017393,0.0000017437,0.0000017500,0.0000017580,0.0000017665, +0.0000017735,0.0000017780,0.0000017799,0.0000017804,0.0000017807, +0.0000017819,0.0000017841,0.0000017870,0.0000017903,0.0000017949, +0.0000018034,0.0000018145,0.0000018253,0.0000018340,0.0000018397, +0.0000018406,0.0000018384,0.0000018331,0.0000018272,0.0000018227, +0.0000018195,0.0000018159,0.0000018111,0.0000018055,0.0000018033, +0.0000018071,0.0000018179,0.0000018342,0.0000018521,0.0000018635, +0.0000018642,0.0000018607,0.0000018534,0.0000018447,0.0000018358, +0.0000018269,0.0000018186,0.0000018102,0.0000018037,0.0000018004, +0.0000018006,0.0000018017,0.0000018022,0.0000018019,0.0000018009, +0.0000018000,0.0000017999,0.0000018010,0.0000018034,0.0000018062, +0.0000018096,0.0000018121,0.0000018140,0.0000018166,0.0000018201, +0.0000018237,0.0000018265,0.0000018283,0.0000018294,0.0000018313, +0.0000018358,0.0000018426,0.0000018495,0.0000018529,0.0000018523, +0.0000018483,0.0000018435,0.0000018405,0.0000018400,0.0000018408, +0.0000018428,0.0000018454,0.0000018479,0.0000018486,0.0000018473, +0.0000018438,0.0000018391,0.0000018349,0.0000018314,0.0000018285, +0.0000018270,0.0000018268,0.0000018274,0.0000018295,0.0000018330, +0.0000018362,0.0000018379,0.0000018370,0.0000018351,0.0000018338, +0.0000018332,0.0000018312,0.0000018294,0.0000018281,0.0000018288, +0.0000018318,0.0000018356,0.0000018387,0.0000018413,0.0000018438, +0.0000018463,0.0000018482,0.0000018493,0.0000018499,0.0000018510, +0.0000018524,0.0000018546,0.0000018601,0.0000018670,0.0000018662, +0.0000018562,0.0000018416,0.0000018343,0.0000018344,0.0000018370, +0.0000018394,0.0000018400,0.0000018390,0.0000018353,0.0000018303, +0.0000018262,0.0000018236,0.0000018217,0.0000018199,0.0000018174, +0.0000018139,0.0000018104,0.0000018093,0.0000018089,0.0000018064, +0.0000018024,0.0000018015,0.0000018030,0.0000018045,0.0000018060, +0.0000018069,0.0000018061,0.0000018056,0.0000018069,0.0000018096, +0.0000018128,0.0000018146,0.0000018129,0.0000018081,0.0000018055, +0.0000018088,0.0000018136,0.0000018139,0.0000018107,0.0000018062, +0.0000018026,0.0000018031,0.0000018042,0.0000018009,0.0000017968, +0.0000017979,0.0000018001,0.0000017996,0.0000017975,0.0000017979, +0.0000018000,0.0000018017,0.0000018015,0.0000017956,0.0000017849, +0.0000017738,0.0000017642,0.0000017598,0.0000017584,0.0000017584, +0.0000017600,0.0000017595,0.0000017785,0.0000018224,0.0000018500, +0.0000018519,0.0000018455,0.0000018389,0.0000018241,0.0000018001, +0.0000017782,0.0000017638,0.0000017664,0.0000017780,0.0000017788, +0.0000017772,0.0000017778,0.0000017780,0.0000017761,0.0000017709, +0.0000017643,0.0000017609,0.0000017593,0.0000017571,0.0000017551, +0.0000017584,0.0000017714,0.0000017838,0.0000017904,0.0000017928, +0.0000017882,0.0000017678,0.0000017615,0.0000017649,0.0000017715, +0.0000017750,0.0000017559,0.0000017406,0.0000017406,0.0000017400, +0.0000017459,0.0000017525,0.0000017521,0.0000017535,0.0000017548, +0.0000017539,0.0000017539,0.0000017537,0.0000017530,0.0000017565, +0.0000017702,0.0000017785,0.0000017782,0.0000017829,0.0000017900, +0.0000017944,0.0000017977,0.0000018048,0.0000018197,0.0000018360, +0.0000018448,0.0000018445,0.0000018387,0.0000018354,0.0000018311, +0.0000018227,0.0000018145,0.0000018053,0.0000017876,0.0000017701, +0.0000017676,0.0000017721,0.0000017745,0.0000017743,0.0000017729, +0.0000017714,0.0000017706,0.0000017709,0.0000017722,0.0000017720, +0.0000017690,0.0000017661,0.0000017730,0.0000017766,0.0000017943, +0.0000018023,0.0000018024,0.0000018015,0.0000018035,0.0000018084, +0.0000018146,0.0000018196,0.0000018237,0.0000018282,0.0000018328, +0.0000018385,0.0000018461,0.0000018512,0.0000018502,0.0000018466, +0.0000018523,0.0000018647,0.0000018654,0.0000018545,0.0000018470, +0.0000018403,0.0000018216,0.0000018100,0.0000018147,0.0000018292, +0.0000018419,0.0000018471,0.0000018452,0.0000018431,0.0000018443, +0.0000018419,0.0000018364,0.0000018337,0.0000018324,0.0000018310, +0.0000018307,0.0000018316,0.0000018337,0.0000018358,0.0000018369, +0.0000018374,0.0000018377,0.0000018386,0.0000018416,0.0000018465, +0.0000018505,0.0000018514,0.0000018505,0.0000018502,0.0000018513, +0.0000018543,0.0000018588,0.0000018628,0.0000018651,0.0000018664, +0.0000018675,0.0000018689,0.0000018708,0.0000018730,0.0000018749, +0.0000018769,0.0000018787,0.0000018805,0.0000018826,0.0000018852, +0.0000018879,0.0000018899,0.0000018906,0.0000018902,0.0000018893, +0.0000018875,0.0000018847,0.0000018806,0.0000018757,0.0000018705, +0.0000018660,0.0000018625,0.0000018600,0.0000018590,0.0000018598, +0.0000018631,0.0000018686,0.0000018756,0.0000018821,0.0000018872, +0.0000018911,0.0000018951,0.0000019029,0.0000019136,0.0000019268, +0.0000019391,0.0000019483,0.0000019535,0.0000019552,0.0000019543, +0.0000019521,0.0000019498,0.0000019480,0.0000019473,0.0000019470, +0.0000019476,0.0000019477,0.0000019477,0.0000019476,0.0000019471, +0.0000019478,0.0000019531,0.0000019632,0.0000019734,0.0000019786, +0.0000019795,0.0000019793,0.0000019797,0.0000019808,0.0000019813, +0.0000019813,0.0000019814,0.0000019815,0.0000019812,0.0000019805, +0.0000019793,0.0000019792,0.0000019800,0.0000019812,0.0000019826, +0.0000019843,0.0000019861,0.0000019876,0.0000019895,0.0000019919, +0.0000019945,0.0000019968,0.0000019977,0.0000019972,0.0000019958, +0.0000019940,0.0000019922,0.0000019902,0.0000019870,0.0000019822, +0.0000019760,0.0000019693,0.0000019628,0.0000019579,0.0000019554, +0.0000019557,0.0000019572,0.0000019592,0.0000019609,0.0000019619, +0.0000019623,0.0000019621,0.0000019611,0.0000019595,0.0000019576, +0.0000019560,0.0000019551,0.0000019546,0.0000019539,0.0000019522, +0.0000019496,0.0000019462,0.0000019420,0.0000019376,0.0000019333, +0.0000019300,0.0000019278,0.0000019263,0.0000019252,0.0000019245, +0.0000019246,0.0000019253,0.0000019266,0.0000019280,0.0000019294, +0.0000019299,0.0000019302,0.0000019292,0.0000019275,0.0000019253, +0.0000019223,0.0000019188,0.0000019153,0.0000019122,0.0000019091, +0.0000019058,0.0000019031,0.0000019011,0.0000018998,0.0000018992, +0.0000018985,0.0000018980,0.0000018980,0.0000018986,0.0000018994, +0.0000019003,0.0000019013,0.0000019023,0.0000019029,0.0000019035, +0.0000019038,0.0000019041,0.0000019043,0.0000019044,0.0000019045, +0.0000019050,0.0000019054,0.0000019054,0.0000019053,0.0000019055, +0.0000019056,0.0000019059,0.0000019058,0.0000019063,0.0000019071, +0.0000019077,0.0000019087,0.0000019097,0.0000019109,0.0000019123, +0.0000019140,0.0000019156,0.0000019177,0.0000019202,0.0000019229, +0.0000019256,0.0000019283,0.0000019309,0.0000019329,0.0000019340, +0.0000019346,0.0000019349,0.0000019343,0.0000019331,0.0000019317, +0.0000019299,0.0000019276,0.0000019249,0.0000019215,0.0000019178, +0.0000019140,0.0000019103,0.0000019066,0.0000019031,0.0000019000, +0.0000018980,0.0000018965,0.0000018952,0.0000018943,0.0000018934, +0.0000018928,0.0000018925,0.0000018919,0.0000018906,0.0000018888, +0.0000018867,0.0000018852,0.0000018838,0.0000018831,0.0000018829, +0.0000018826,0.0000018822,0.0000018818,0.0000018818,0.0000018822, +0.0000018819,0.0000018807,0.0000018800,0.0000018783,0.0000018781, +0.0000018781,0.0000018780,0.0000018783,0.0000018787,0.0000018797, +0.0000018802,0.0000018801,0.0000018800,0.0000018797,0.0000018787, +0.0000018778,0.0000018769,0.0000018761,0.0000018735,0.0000018701, +0.0000018657,0.0000018604,0.0000018547,0.0000018487,0.0000018423, +0.0000018355,0.0000018286,0.0000018224,0.0000018180,0.0000018149, +0.0000018119,0.0000018093,0.0000018076,0.0000018062,0.0000018050, +0.0000018047,0.0000018056,0.0000018074,0.0000018096,0.0000018114, +0.0000018131,0.0000018151,0.0000018173,0.0000018198,0.0000018223, +0.0000018245,0.0000018270,0.0000018298,0.0000018328,0.0000018353, +0.0000018366,0.0000018371,0.0000018365,0.0000018349,0.0000018337, +0.0000018318,0.0000018311,0.0000018318,0.0000018346,0.0000018381, +0.0000018410,0.0000018438,0.0000018479,0.0000018559,0.0000018715, +0.0000018950,0.0000019225,0.0000019478,0.0000019656,0.0000019754, +0.0000019801,0.0000019820,0.0000019827,0.0000019830,0.0000019825, +0.0000019814,0.0000019798,0.0000019797,0.0000019814,0.0000019860, +0.0000019925,0.0000019973,0.0000019991,0.0000019975,0.0000019898, +0.0000019739,0.0000019499,0.0000019238,0.0000019031,0.0000018910, +0.0000018845,0.0000018803,0.0000018790,0.0000018816,0.0000018881, +0.0000018944,0.0000018976,0.0000018986,0.0000019019,0.0000019101, +0.0000019213,0.0000019331,0.0000019468,0.0000019626,0.0000019802, +0.0000019965,0.0000020078,0.0000020140,0.0000020155,0.0000020127, +0.0000020106,0.0000020073,0.0000020028,0.0000019974,0.0000019915, +0.0000019851,0.0000019791,0.0000019745,0.0000019714,0.0000019698, +0.0000019694,0.0000019697,0.0000019704,0.0000019707,0.0000019699, +0.0000019687,0.0000019673,0.0000019656,0.0000019633,0.0000019606, +0.0000019578,0.0000019566,0.0000019581,0.0000019615,0.0000019648, +0.0000019667,0.0000019667,0.0000019656,0.0000019640,0.0000019620, +0.0000019594,0.0000019563,0.0000019524,0.0000019479,0.0000019437, +0.0000019401,0.0000019374,0.0000019358,0.0000019345,0.0000019313, +0.0000019252,0.0000019198,0.0000019165,0.0000019171,0.0000019199, +0.0000019244,0.0000019298,0.0000019354,0.0000019400,0.0000019441, +0.0000019475,0.0000019496,0.0000019507,0.0000019517,0.0000019533, +0.0000019562,0.0000019609,0.0000019673,0.0000019755,0.0000019851, +0.0000019942,0.0000020025,0.0000020115,0.0000020198,0.0000020239, +0.0000020273,0.0000020296,0.0000020314,0.0000020335,0.0000020352, +0.0000020363,0.0000020370,0.0000020368,0.0000020358,0.0000020353, +0.0000020337,0.0000020266,0.0000020153,0.0000020035,0.0000019922, +0.0000019807,0.0000019688,0.0000019601,0.0000019570,0.0000019574, +0.0000019579,0.0000019567,0.0000019535,0.0000019461,0.0000019362, +0.0000019275,0.0000019230,0.0000019214,0.0000019213,0.0000019218, +0.0000019227,0.0000019241,0.0000019259,0.0000019284,0.0000019316, +0.0000019358,0.0000019404,0.0000019434,0.0000019452,0.0000019453, +0.0000019445,0.0000019434,0.0000019428,0.0000019434,0.0000019446, +0.0000019454,0.0000019448,0.0000019429,0.0000019408,0.0000019392, +0.0000019379,0.0000019376,0.0000019381,0.0000019394,0.0000019410, +0.0000019426,0.0000019440,0.0000019443,0.0000019435,0.0000019416, +0.0000019391,0.0000019358,0.0000019316,0.0000019280,0.0000019259, +0.0000019246,0.0000019243,0.0000019246,0.0000019255,0.0000019264, +0.0000019264,0.0000019255,0.0000019242,0.0000019228,0.0000019216, +0.0000019220,0.0000019228,0.0000019246,0.0000019275,0.0000019313, +0.0000019351,0.0000019390,0.0000019425,0.0000019449,0.0000019469, +0.0000019482,0.0000019485,0.0000019489,0.0000019505,0.0000019534, +0.0000019567,0.0000019589,0.0000019597,0.0000019597,0.0000019593, +0.0000019592,0.0000019602,0.0000019618,0.0000019627,0.0000019624, +0.0000019610,0.0000019584,0.0000019553,0.0000019532,0.0000019525, +0.0000019526,0.0000019530,0.0000019530,0.0000019521,0.0000019503, +0.0000019483,0.0000019466,0.0000019452,0.0000019442,0.0000019438, +0.0000019436,0.0000019432,0.0000019425,0.0000019410,0.0000019388, +0.0000019360,0.0000019333,0.0000019305,0.0000019270,0.0000019226, +0.0000019186,0.0000019168,0.0000019171,0.0000019181,0.0000019196, +0.0000019222,0.0000019250,0.0000019268,0.0000019283,0.0000019298, +0.0000019313,0.0000019330,0.0000019350,0.0000019368,0.0000019377, +0.0000019383,0.0000019386,0.0000019377,0.0000019348,0.0000019302, +0.0000019240,0.0000019172,0.0000019107,0.0000019043,0.0000018985, +0.0000018943,0.0000018929,0.0000018940,0.0000018954,0.0000018964, +0.0000018966,0.0000018966,0.0000018976,0.0000018997,0.0000019024, +0.0000019055,0.0000019085,0.0000019111,0.0000019131,0.0000019138, +0.0000019136,0.0000019115,0.0000019108,0.0000019125,0.0000019151, +0.0000019173,0.0000019188,0.0000019189,0.0000019181,0.0000019166, +0.0000019155,0.0000019156,0.0000019179,0.0000019212,0.0000019241, +0.0000019248,0.0000019216,0.0000019156,0.0000019079,0.0000019000, +0.0000018943,0.0000018902,0.0000018882,0.0000018874,0.0000018864, +0.0000018838,0.0000018795,0.0000018732,0.0000018654,0.0000018573, +0.0000018510,0.0000018502,0.0000018525,0.0000018575,0.0000018627, +0.0000018658,0.0000018672,0.0000018685,0.0000018697,0.0000018715, +0.0000018740,0.0000018788,0.0000018868,0.0000018955,0.0000019030, +0.0000019079,0.0000019087,0.0000019083,0.0000019064,0.0000019035, +0.0000018989,0.0000018931,0.0000018876,0.0000018817,0.0000018766, +0.0000018721,0.0000018691,0.0000018693,0.0000018718,0.0000018745, +0.0000018771,0.0000018794,0.0000018799,0.0000018787,0.0000018769, +0.0000018754,0.0000018754,0.0000018748,0.0000018725,0.0000018703, +0.0000018683,0.0000018649,0.0000018604,0.0000018563,0.0000018544, +0.0000018538,0.0000018555,0.0000018596,0.0000018653,0.0000018714, +0.0000018772,0.0000018804,0.0000018816,0.0000018812,0.0000018794, +0.0000018773,0.0000018760,0.0000018736,0.0000018693,0.0000018628, +0.0000018548,0.0000018472,0.0000018415,0.0000018403,0.0000018411, +0.0000018416,0.0000018401,0.0000018363,0.0000018314,0.0000018275, +0.0000018268,0.0000018291,0.0000018323,0.0000018350,0.0000018349, +0.0000018312,0.0000018239,0.0000018164,0.0000018097,0.0000018035, +0.0000017978,0.0000017918,0.0000017857,0.0000017811,0.0000017783, +0.0000017764,0.0000017736,0.0000017697,0.0000017654,0.0000017624, +0.0000017606,0.0000017595,0.0000017588,0.0000017570,0.0000017529, +0.0000017470,0.0000017404,0.0000017355,0.0000017335,0.0000017335, +0.0000017331,0.0000017317,0.0000017300,0.0000017284,0.0000017266, +0.0000017240,0.0000017214,0.0000017197,0.0000017191,0.0000017184, +0.0000017181,0.0000017194,0.0000017223,0.0000017253,0.0000017275, +0.0000017282,0.0000017276,0.0000017277,0.0000017293,0.0000017323, +0.0000017355,0.0000017373,0.0000017372,0.0000017362,0.0000017362, +0.0000017378,0.0000017401,0.0000017431,0.0000017469,0.0000017529, +0.0000017626,0.0000017745,0.0000017857,0.0000017939,0.0000017974, +0.0000017953,0.0000017883,0.0000017792,0.0000017720,0.0000017689, +0.0000017682,0.0000017666,0.0000017627,0.0000017588,0.0000017606, +0.0000017687,0.0000017828,0.0000018042,0.0000018285,0.0000018480, +0.0000018593,0.0000018592,0.0000018580,0.0000018538,0.0000018472, +0.0000018394,0.0000018298,0.0000018193,0.0000018095,0.0000018037, +0.0000018019,0.0000018025,0.0000018030,0.0000018029,0.0000018028, +0.0000018035,0.0000018053,0.0000018080,0.0000018114,0.0000018150, +0.0000018177,0.0000018197,0.0000018223,0.0000018258,0.0000018293, +0.0000018328,0.0000018364,0.0000018389,0.0000018404,0.0000018425, +0.0000018460,0.0000018507,0.0000018538,0.0000018536,0.0000018515, +0.0000018483,0.0000018461,0.0000018450,0.0000018446,0.0000018452, +0.0000018465,0.0000018479,0.0000018481,0.0000018470,0.0000018448, +0.0000018414,0.0000018373,0.0000018330,0.0000018293,0.0000018271, +0.0000018265,0.0000018266,0.0000018281,0.0000018314,0.0000018361, +0.0000018400,0.0000018419,0.0000018407,0.0000018384,0.0000018350, +0.0000018308,0.0000018264,0.0000018238,0.0000018224,0.0000018236, +0.0000018255,0.0000018281,0.0000018314,0.0000018349,0.0000018381, +0.0000018407,0.0000018430,0.0000018458,0.0000018485,0.0000018495, +0.0000018492,0.0000018515,0.0000018592,0.0000018649,0.0000018604, +0.0000018451,0.0000018321,0.0000018294,0.0000018328,0.0000018356, +0.0000018357,0.0000018328,0.0000018277,0.0000018231,0.0000018204, +0.0000018186,0.0000018165,0.0000018145,0.0000018123,0.0000018103, +0.0000018095,0.0000018103,0.0000018106,0.0000018103,0.0000018118, +0.0000018137,0.0000018135,0.0000018115,0.0000018094,0.0000018068, +0.0000018064,0.0000018086,0.0000018120,0.0000018145,0.0000018155, +0.0000018135,0.0000018084,0.0000018060,0.0000018095,0.0000018150, +0.0000018154,0.0000018117,0.0000018068,0.0000018028,0.0000018016, +0.0000018015,0.0000017984,0.0000017948,0.0000017963,0.0000018011, +0.0000018035,0.0000018017,0.0000017989,0.0000017980,0.0000017984, +0.0000017993,0.0000017986,0.0000017919,0.0000017804,0.0000017695, +0.0000017615,0.0000017588,0.0000017586,0.0000017600,0.0000017579, +0.0000017654,0.0000018024,0.0000018409,0.0000018528,0.0000018487, +0.0000018402,0.0000018329,0.0000018180,0.0000017969,0.0000017765, +0.0000017622,0.0000017639,0.0000017749,0.0000017788,0.0000017757, +0.0000017729,0.0000017707,0.0000017678,0.0000017645,0.0000017625, +0.0000017618,0.0000017588,0.0000017540,0.0000017531,0.0000017609, +0.0000017747,0.0000017845,0.0000017897,0.0000017919,0.0000017824, +0.0000017622,0.0000017625,0.0000017663,0.0000017745,0.0000017690, +0.0000017474,0.0000017418,0.0000017414,0.0000017412,0.0000017480, +0.0000017510,0.0000017515,0.0000017532,0.0000017524,0.0000017524, +0.0000017534,0.0000017533,0.0000017532,0.0000017599,0.0000017736, +0.0000017783,0.0000017804,0.0000017874,0.0000017910,0.0000017951, +0.0000018043,0.0000018195,0.0000018340,0.0000018423,0.0000018435, +0.0000018396,0.0000018366,0.0000018319,0.0000018239,0.0000018163, +0.0000018046,0.0000017835,0.0000017688,0.0000017691,0.0000017722, +0.0000017733,0.0000017731,0.0000017716,0.0000017695,0.0000017675, +0.0000017666,0.0000017670,0.0000017687,0.0000017692,0.0000017661, +0.0000017651,0.0000017657,0.0000017802,0.0000017966,0.0000018016, +0.0000018001,0.0000018001,0.0000018029,0.0000018078,0.0000018131, +0.0000018178,0.0000018226,0.0000018268,0.0000018307,0.0000018372, +0.0000018466,0.0000018522,0.0000018504,0.0000018490,0.0000018571, +0.0000018653,0.0000018610,0.0000018504,0.0000018444,0.0000018303, +0.0000018121,0.0000018108,0.0000018226,0.0000018354,0.0000018437, +0.0000018448,0.0000018421,0.0000018426,0.0000018434,0.0000018399, +0.0000018363,0.0000018350,0.0000018335,0.0000018319,0.0000018317, +0.0000018320,0.0000018323,0.0000018322,0.0000018321,0.0000018321, +0.0000018331,0.0000018366,0.0000018425,0.0000018477,0.0000018490, +0.0000018481,0.0000018482,0.0000018498,0.0000018520,0.0000018557, +0.0000018606,0.0000018646,0.0000018664,0.0000018669,0.0000018670, +0.0000018673,0.0000018682,0.0000018695,0.0000018713,0.0000018736, +0.0000018757,0.0000018774,0.0000018796,0.0000018832,0.0000018874, +0.0000018900,0.0000018905,0.0000018894,0.0000018859,0.0000018798, +0.0000018725,0.0000018654,0.0000018601,0.0000018568,0.0000018555, +0.0000018553,0.0000018557,0.0000018573,0.0000018607,0.0000018655, +0.0000018707,0.0000018758,0.0000018806,0.0000018851,0.0000018893, +0.0000018936,0.0000018982,0.0000019027,0.0000019066,0.0000019096, +0.0000019111,0.0000019110,0.0000019093,0.0000019074,0.0000019064, +0.0000019064,0.0000019085,0.0000019127,0.0000019182,0.0000019247, +0.0000019316,0.0000019373,0.0000019408,0.0000019419,0.0000019440, +0.0000019525,0.0000019648,0.0000019732,0.0000019753,0.0000019746, +0.0000019737,0.0000019733,0.0000019742,0.0000019761,0.0000019775, +0.0000019778,0.0000019774,0.0000019769,0.0000019767,0.0000019778, +0.0000019794,0.0000019811,0.0000019829,0.0000019847,0.0000019864, +0.0000019875,0.0000019878,0.0000019882,0.0000019898,0.0000019922, +0.0000019945,0.0000019955,0.0000019948,0.0000019928,0.0000019902, +0.0000019871,0.0000019830,0.0000019772,0.0000019688,0.0000019585, +0.0000019490,0.0000019413,0.0000019378,0.0000019370,0.0000019387, +0.0000019406,0.0000019422,0.0000019440,0.0000019460,0.0000019481, +0.0000019502,0.0000019518,0.0000019528,0.0000019532,0.0000019535, +0.0000019530,0.0000019514,0.0000019486,0.0000019453,0.0000019419, +0.0000019388,0.0000019364,0.0000019344,0.0000019324,0.0000019304, +0.0000019284,0.0000019260,0.0000019245,0.0000019243,0.0000019252, +0.0000019267,0.0000019282,0.0000019292,0.0000019300,0.0000019310, +0.0000019318,0.0000019320,0.0000019316,0.0000019307,0.0000019299, +0.0000019288,0.0000019272,0.0000019249,0.0000019223,0.0000019199, +0.0000019174,0.0000019149,0.0000019126,0.0000019106,0.0000019091, +0.0000019084,0.0000019085,0.0000019090,0.0000019097,0.0000019103, +0.0000019110,0.0000019124,0.0000019139,0.0000019157,0.0000019175, +0.0000019192,0.0000019211,0.0000019235,0.0000019262,0.0000019290, +0.0000019320,0.0000019347,0.0000019372,0.0000019399,0.0000019425, +0.0000019450,0.0000019475,0.0000019496,0.0000019528,0.0000019569, +0.0000019613,0.0000019658,0.0000019700,0.0000019736,0.0000019771, +0.0000019806,0.0000019840,0.0000019873,0.0000019881,0.0000019877, +0.0000019891,0.0000019902,0.0000019908,0.0000019910,0.0000019908, +0.0000019902,0.0000019895,0.0000019889,0.0000019879,0.0000019873, +0.0000019881,0.0000019882,0.0000019860,0.0000019836,0.0000019810, +0.0000019784,0.0000019756,0.0000019733,0.0000019710,0.0000019684, +0.0000019654,0.0000019619,0.0000019585,0.0000019552,0.0000019513, +0.0000019467,0.0000019414,0.0000019356,0.0000019303,0.0000019253, +0.0000019207,0.0000019159,0.0000019111,0.0000019064,0.0000019021, +0.0000018982,0.0000018942,0.0000018902,0.0000018867,0.0000018834, +0.0000018801,0.0000018773,0.0000018756,0.0000018754,0.0000018749, +0.0000018750,0.0000018753,0.0000018756,0.0000018761,0.0000018771, +0.0000018775,0.0000018771,0.0000018768,0.0000018764,0.0000018758, +0.0000018752,0.0000018747,0.0000018739,0.0000018727,0.0000018716, +0.0000018686,0.0000018650,0.0000018609,0.0000018558,0.0000018503, +0.0000018455,0.0000018415,0.0000018377,0.0000018344,0.0000018324, +0.0000018311,0.0000018301,0.0000018300,0.0000018309,0.0000018326, +0.0000018346,0.0000018365,0.0000018381,0.0000018399,0.0000018415, +0.0000018428,0.0000018440,0.0000018453,0.0000018454,0.0000018439, +0.0000018427,0.0000018405,0.0000018382,0.0000018353,0.0000018327, +0.0000018310,0.0000018304,0.0000018308,0.0000018322,0.0000018342, +0.0000018364,0.0000018390,0.0000018442,0.0000018576,0.0000018806, +0.0000019098,0.0000019390,0.0000019622,0.0000019766,0.0000019836, +0.0000019861,0.0000019870,0.0000019874,0.0000019876,0.0000019871, +0.0000019847,0.0000019799,0.0000019747,0.0000019714,0.0000019712, +0.0000019737,0.0000019805,0.0000019902,0.0000019975,0.0000019992, +0.0000019981,0.0000019916,0.0000019755,0.0000019503,0.0000019238, +0.0000019046,0.0000018934,0.0000018872,0.0000018858,0.0000018894, +0.0000018959,0.0000019007,0.0000019028,0.0000019063,0.0000019141, +0.0000019250,0.0000019358,0.0000019479,0.0000019643,0.0000019842, +0.0000020022,0.0000020139,0.0000020182,0.0000020168,0.0000020149, +0.0000020104,0.0000020048,0.0000019988,0.0000019922,0.0000019846, +0.0000019776,0.0000019725,0.0000019682,0.0000019656,0.0000019646, +0.0000019643,0.0000019644,0.0000019648,0.0000019653,0.0000019656, +0.0000019652,0.0000019637,0.0000019616,0.0000019590,0.0000019561, +0.0000019530,0.0000019498,0.0000019470,0.0000019469,0.0000019496, +0.0000019533,0.0000019564,0.0000019578,0.0000019576,0.0000019561, +0.0000019540,0.0000019513,0.0000019480,0.0000019444,0.0000019408, +0.0000019381,0.0000019362,0.0000019345,0.0000019321,0.0000019291, +0.0000019267,0.0000019243,0.0000019240,0.0000019273,0.0000019319, +0.0000019360,0.0000019395,0.0000019433,0.0000019482,0.0000019531, +0.0000019577,0.0000019621,0.0000019662,0.0000019702,0.0000019743, +0.0000019791,0.0000019854,0.0000019927,0.0000019993,0.0000020058, +0.0000020117,0.0000020136,0.0000020155,0.0000020181,0.0000020184, +0.0000020169,0.0000020155,0.0000020149,0.0000020160,0.0000020191, +0.0000020231,0.0000020270,0.0000020301,0.0000020317,0.0000020319, +0.0000020331,0.0000020351,0.0000020341,0.0000020275,0.0000020156, +0.0000020035,0.0000019927,0.0000019819,0.0000019699,0.0000019602, +0.0000019562,0.0000019553,0.0000019557,0.0000019553,0.0000019531, +0.0000019499,0.0000019446,0.0000019394,0.0000019355,0.0000019336, +0.0000019332,0.0000019337,0.0000019350,0.0000019367,0.0000019387, +0.0000019399,0.0000019408,0.0000019421,0.0000019437,0.0000019457, +0.0000019476,0.0000019489,0.0000019500,0.0000019512,0.0000019532, +0.0000019548,0.0000019551,0.0000019537,0.0000019511,0.0000019489, +0.0000019474,0.0000019463,0.0000019455,0.0000019457,0.0000019467, +0.0000019478,0.0000019486,0.0000019487,0.0000019484,0.0000019474, +0.0000019451,0.0000019418,0.0000019373,0.0000019323,0.0000019285, +0.0000019265,0.0000019254,0.0000019253,0.0000019263,0.0000019285, +0.0000019308,0.0000019319,0.0000019315,0.0000019299,0.0000019278, +0.0000019260,0.0000019245,0.0000019234,0.0000019235,0.0000019247, +0.0000019270,0.0000019303,0.0000019343,0.0000019374,0.0000019394, +0.0000019416,0.0000019427,0.0000019434,0.0000019460,0.0000019495, +0.0000019539,0.0000019583,0.0000019609,0.0000019624,0.0000019625, +0.0000019614,0.0000019601,0.0000019600,0.0000019609,0.0000019614, +0.0000019608,0.0000019589,0.0000019567,0.0000019548,0.0000019537, +0.0000019539,0.0000019554,0.0000019573,0.0000019588,0.0000019601, +0.0000019609,0.0000019611,0.0000019608,0.0000019603,0.0000019594, +0.0000019581,0.0000019565,0.0000019555,0.0000019547,0.0000019528, +0.0000019496,0.0000019465,0.0000019444,0.0000019420,0.0000019390, +0.0000019358,0.0000019333,0.0000019323,0.0000019324,0.0000019340, +0.0000019363,0.0000019387,0.0000019397,0.0000019395,0.0000019392, +0.0000019392,0.0000019392,0.0000019389,0.0000019389,0.0000019389, +0.0000019390,0.0000019396,0.0000019404,0.0000019404,0.0000019391, +0.0000019367,0.0000019328,0.0000019276,0.0000019218,0.0000019153, +0.0000019085,0.0000019028,0.0000018995,0.0000018985,0.0000018986, +0.0000018986,0.0000018981,0.0000018973,0.0000018978,0.0000018988, +0.0000019007,0.0000019030,0.0000019055,0.0000019086,0.0000019112, +0.0000019120,0.0000019114,0.0000019092,0.0000019070,0.0000019081, +0.0000019108,0.0000019137,0.0000019154,0.0000019160,0.0000019157, +0.0000019149,0.0000019142,0.0000019149,0.0000019175,0.0000019215, +0.0000019263,0.0000019312,0.0000019314,0.0000019285,0.0000019230, +0.0000019155,0.0000019090,0.0000019034,0.0000018993,0.0000018968, +0.0000018943,0.0000018908,0.0000018871,0.0000018831,0.0000018782, +0.0000018713,0.0000018631,0.0000018569,0.0000018543,0.0000018569, +0.0000018599,0.0000018610,0.0000018607,0.0000018609,0.0000018615, +0.0000018627,0.0000018649,0.0000018703,0.0000018787,0.0000018879, +0.0000018963,0.0000019020,0.0000019044,0.0000019044,0.0000019026, +0.0000019013,0.0000018986,0.0000018949,0.0000018925,0.0000018901, +0.0000018867,0.0000018819,0.0000018774,0.0000018757,0.0000018761, +0.0000018774,0.0000018797,0.0000018818,0.0000018826,0.0000018816, +0.0000018797,0.0000018782,0.0000018781,0.0000018773,0.0000018754, +0.0000018740,0.0000018720,0.0000018688,0.0000018653,0.0000018623, +0.0000018604,0.0000018595,0.0000018603,0.0000018633,0.0000018690, +0.0000018761,0.0000018824,0.0000018874,0.0000018901,0.0000018904, +0.0000018886,0.0000018868,0.0000018856,0.0000018830,0.0000018787, +0.0000018727,0.0000018659,0.0000018592,0.0000018541,0.0000018513, +0.0000018495,0.0000018475,0.0000018445,0.0000018402,0.0000018349, +0.0000018305,0.0000018295,0.0000018318,0.0000018354,0.0000018380, +0.0000018389,0.0000018369,0.0000018314,0.0000018244,0.0000018161, +0.0000018080,0.0000018005,0.0000017924,0.0000017858,0.0000017823, +0.0000017816,0.0000017802,0.0000017767,0.0000017713,0.0000017669, +0.0000017652,0.0000017661,0.0000017679,0.0000017697,0.0000017680, +0.0000017624,0.0000017541,0.0000017462,0.0000017415,0.0000017404, +0.0000017408,0.0000017403,0.0000017388,0.0000017368,0.0000017343, +0.0000017313,0.0000017281,0.0000017250,0.0000017223,0.0000017198, +0.0000017180,0.0000017178,0.0000017186,0.0000017209,0.0000017241, +0.0000017261,0.0000017263,0.0000017249,0.0000017235,0.0000017228, +0.0000017228,0.0000017232,0.0000017223,0.0000017192,0.0000017157, +0.0000017141,0.0000017140,0.0000017145,0.0000017165,0.0000017202, +0.0000017258,0.0000017329,0.0000017411,0.0000017482,0.0000017519, +0.0000017509,0.0000017449,0.0000017370,0.0000017305,0.0000017283, +0.0000017298,0.0000017319,0.0000017315,0.0000017294,0.0000017319, +0.0000017382,0.0000017459,0.0000017579,0.0000017757,0.0000017968, +0.0000018188,0.0000018381,0.0000018521,0.0000018547,0.0000018553, +0.0000018527,0.0000018470,0.0000018385,0.0000018273,0.0000018167, +0.0000018087,0.0000018050,0.0000018037,0.0000018033,0.0000018035, +0.0000018049,0.0000018074,0.0000018109,0.0000018151,0.0000018196, +0.0000018230,0.0000018258,0.0000018291,0.0000018325,0.0000018351, +0.0000018380,0.0000018417,0.0000018456,0.0000018483,0.0000018498, +0.0000018507,0.0000018521,0.0000018531,0.0000018526,0.0000018513, +0.0000018498,0.0000018493,0.0000018489,0.0000018482,0.0000018479, +0.0000018480,0.0000018477,0.0000018466,0.0000018454,0.0000018450, +0.0000018435,0.0000018403,0.0000018357,0.0000018310,0.0000018274, +0.0000018256,0.0000018255,0.0000018276,0.0000018309,0.0000018349, +0.0000018395,0.0000018431,0.0000018447,0.0000018439,0.0000018405, +0.0000018352,0.0000018294,0.0000018246,0.0000018217,0.0000018206, +0.0000018200,0.0000018209,0.0000018229,0.0000018255,0.0000018283, +0.0000018321,0.0000018367,0.0000018419,0.0000018457,0.0000018469, +0.0000018460,0.0000018466,0.0000018522,0.0000018612,0.0000018608, +0.0000018485,0.0000018316,0.0000018261,0.0000018289,0.0000018315, +0.0000018305,0.0000018260,0.0000018206,0.0000018174,0.0000018157, +0.0000018136,0.0000018120,0.0000018111,0.0000018102,0.0000018101, +0.0000018118,0.0000018140,0.0000018160,0.0000018186,0.0000018200, +0.0000018182,0.0000018140,0.0000018106,0.0000018078,0.0000018078, +0.0000018101,0.0000018127,0.0000018142,0.0000018149,0.0000018131, +0.0000018085,0.0000018065,0.0000018098,0.0000018150,0.0000018158, +0.0000018119,0.0000018068,0.0000018029,0.0000018011,0.0000018001, +0.0000017968,0.0000017932,0.0000017948,0.0000018014,0.0000018067, +0.0000018070,0.0000018028,0.0000017985,0.0000017968,0.0000017964, +0.0000017970,0.0000017954,0.0000017871,0.0000017759,0.0000017664, +0.0000017600,0.0000017583,0.0000017594,0.0000017573,0.0000017578, +0.0000017846,0.0000018273,0.0000018509,0.0000018520,0.0000018422, +0.0000018329,0.0000018270,0.0000018121,0.0000017938,0.0000017748, +0.0000017607,0.0000017601,0.0000017706,0.0000017770,0.0000017761, +0.0000017725,0.0000017698,0.0000017681,0.0000017672,0.0000017657, +0.0000017615,0.0000017545,0.0000017504,0.0000017538,0.0000017649, +0.0000017772,0.0000017850,0.0000017892,0.0000017897,0.0000017729, +0.0000017609,0.0000017639,0.0000017690,0.0000017751,0.0000017596, +0.0000017434,0.0000017431,0.0000017408,0.0000017433,0.0000017486, +0.0000017503,0.0000017524,0.0000017521,0.0000017513,0.0000017521, +0.0000017534,0.0000017533,0.0000017542,0.0000017635,0.0000017757, +0.0000017794,0.0000017873,0.0000017942,0.0000017965,0.0000018053, +0.0000018186,0.0000018307,0.0000018390,0.0000018419,0.0000018401, +0.0000018376,0.0000018326,0.0000018251,0.0000018180,0.0000018051, +0.0000017828,0.0000017695,0.0000017702,0.0000017722,0.0000017721, +0.0000017713,0.0000017700,0.0000017684,0.0000017666,0.0000017650, +0.0000017643,0.0000017647,0.0000017663,0.0000017665,0.0000017639, +0.0000017617,0.0000017669,0.0000017844,0.0000017977,0.0000017996, +0.0000017988,0.0000017991,0.0000018016,0.0000018065,0.0000018121, +0.0000018176,0.0000018227,0.0000018257,0.0000018289,0.0000018370, +0.0000018477,0.0000018528,0.0000018507,0.0000018514,0.0000018610, +0.0000018646,0.0000018559,0.0000018476,0.0000018379,0.0000018193, +0.0000018099,0.0000018171,0.0000018295,0.0000018392,0.0000018437, +0.0000018424,0.0000018408,0.0000018423,0.0000018428,0.0000018401, +0.0000018381,0.0000018370,0.0000018349,0.0000018327,0.0000018321, +0.0000018322,0.0000018323,0.0000018320,0.0000018315,0.0000018317, +0.0000018346,0.0000018403,0.0000018453,0.0000018464,0.0000018454, +0.0000018461,0.0000018485,0.0000018506,0.0000018526,0.0000018566, +0.0000018617,0.0000018654,0.0000018669,0.0000018667,0.0000018659, +0.0000018651,0.0000018650,0.0000018658,0.0000018681,0.0000018711, +0.0000018740,0.0000018766,0.0000018801,0.0000018841,0.0000018874, +0.0000018890,0.0000018884,0.0000018852,0.0000018798,0.0000018736, +0.0000018682,0.0000018643,0.0000018619,0.0000018606,0.0000018601, +0.0000018604,0.0000018614,0.0000018629,0.0000018651,0.0000018667, +0.0000018681,0.0000018697,0.0000018724,0.0000018752,0.0000018781, +0.0000018810,0.0000018838,0.0000018863,0.0000018882,0.0000018892, +0.0000018892,0.0000018882,0.0000018868,0.0000018853,0.0000018849, +0.0000018853,0.0000018863,0.0000018883,0.0000018927,0.0000019012, +0.0000019127,0.0000019235,0.0000019302,0.0000019347,0.0000019429, +0.0000019558,0.0000019665,0.0000019703,0.0000019700,0.0000019698, +0.0000019714,0.0000019736,0.0000019731,0.0000019695,0.0000019663, +0.0000019654,0.0000019670,0.0000019705,0.0000019746,0.0000019779, +0.0000019799,0.0000019812,0.0000019827,0.0000019847,0.0000019866, +0.0000019876,0.0000019876,0.0000019872,0.0000019880,0.0000019902, +0.0000019927,0.0000019938,0.0000019926,0.0000019898,0.0000019866, +0.0000019835,0.0000019790,0.0000019712,0.0000019608,0.0000019505, +0.0000019429,0.0000019387,0.0000019368,0.0000019360,0.0000019360, +0.0000019355,0.0000019366,0.0000019383,0.0000019402,0.0000019420, +0.0000019437,0.0000019446,0.0000019451,0.0000019446,0.0000019434, +0.0000019417,0.0000019400,0.0000019385,0.0000019379,0.0000019369, +0.0000019358,0.0000019337,0.0000019316,0.0000019295,0.0000019274, +0.0000019260,0.0000019259,0.0000019271,0.0000019291,0.0000019309, +0.0000019323,0.0000019335,0.0000019347,0.0000019364,0.0000019381, +0.0000019394,0.0000019404,0.0000019414,0.0000019423,0.0000019425, +0.0000019422,0.0000019417,0.0000019413,0.0000019409,0.0000019402, +0.0000019398,0.0000019397,0.0000019396,0.0000019399,0.0000019407, +0.0000019419,0.0000019433,0.0000019451,0.0000019475,0.0000019504, +0.0000019534,0.0000019564,0.0000019593,0.0000019621,0.0000019656, +0.0000019697,0.0000019748,0.0000019797,0.0000019844,0.0000019887, +0.0000019925,0.0000019958,0.0000019945,0.0000019964,0.0000019966, +0.0000019955,0.0000019959,0.0000019965,0.0000019962,0.0000019948, +0.0000019921,0.0000019890,0.0000019859,0.0000019833,0.0000019812, +0.0000019801,0.0000019798,0.0000019794,0.0000019792,0.0000019791, +0.0000019788,0.0000019784,0.0000019782,0.0000019782,0.0000019788, +0.0000019797,0.0000019807,0.0000019818,0.0000019831,0.0000019844, +0.0000019855,0.0000019865,0.0000019875,0.0000019888,0.0000019904, +0.0000019926,0.0000019945,0.0000019955,0.0000019964,0.0000019969, +0.0000019982,0.0000019998,0.0000020011,0.0000020019,0.0000020019, +0.0000020015,0.0000019981,0.0000019932,0.0000019873,0.0000019809, +0.0000019743,0.0000019675,0.0000019603,0.0000019523,0.0000019438, +0.0000019347,0.0000019254,0.0000019161,0.0000019067,0.0000018982, +0.0000018911,0.0000018856,0.0000018818,0.0000018793,0.0000018773, +0.0000018752,0.0000018740,0.0000018747,0.0000018746,0.0000018743, +0.0000018748,0.0000018747,0.0000018746,0.0000018746,0.0000018744, +0.0000018736,0.0000018725,0.0000018714,0.0000018702,0.0000018691, +0.0000018676,0.0000018655,0.0000018635,0.0000018607,0.0000018583, +0.0000018558,0.0000018537,0.0000018525,0.0000018516,0.0000018507, +0.0000018505,0.0000018508,0.0000018515,0.0000018525,0.0000018533, +0.0000018537,0.0000018537,0.0000018530,0.0000018509,0.0000018490, +0.0000018481,0.0000018450,0.0000018411,0.0000018377,0.0000018350, +0.0000018328,0.0000018313,0.0000018313,0.0000018318,0.0000018321, +0.0000018325,0.0000018334,0.0000018366,0.0000018464,0.0000018648, +0.0000018909,0.0000019216,0.0000019503,0.0000019711,0.0000019824, +0.0000019870,0.0000019890,0.0000019904,0.0000019920,0.0000019939, +0.0000019944,0.0000019920,0.0000019862,0.0000019784,0.0000019717, +0.0000019683,0.0000019679,0.0000019684,0.0000019709,0.0000019775, +0.0000019884,0.0000019974,0.0000019999,0.0000019988,0.0000019909, +0.0000019719,0.0000019445,0.0000019194,0.0000019032,0.0000018952, +0.0000018944,0.0000018988,0.0000019048,0.0000019083,0.0000019108, +0.0000019177,0.0000019287,0.0000019391,0.0000019500,0.0000019655, +0.0000019861,0.0000020060,0.0000020185,0.0000020222,0.0000020198, +0.0000020154,0.0000020101,0.0000020032,0.0000019957,0.0000019872, +0.0000019795,0.0000019737,0.0000019687,0.0000019653,0.0000019637, +0.0000019622,0.0000019611,0.0000019606,0.0000019603,0.0000019603, +0.0000019604,0.0000019605,0.0000019605,0.0000019598,0.0000019580, +0.0000019555,0.0000019527,0.0000019498,0.0000019466,0.0000019433, +0.0000019412,0.0000019413,0.0000019433,0.0000019458,0.0000019480, +0.0000019487,0.0000019481,0.0000019466,0.0000019447,0.0000019423, +0.0000019395,0.0000019372,0.0000019348,0.0000019320,0.0000019313, +0.0000019297,0.0000019292,0.0000019311,0.0000019355,0.0000019404, +0.0000019449,0.0000019493,0.0000019533,0.0000019570,0.0000019606, +0.0000019650,0.0000019713,0.0000019778,0.0000019845,0.0000019912, +0.0000019976,0.0000020024,0.0000020065,0.0000020110,0.0000020142, +0.0000020140,0.0000020149,0.0000020147,0.0000020116,0.0000020082, +0.0000020049,0.0000020029,0.0000020020,0.0000020018,0.0000020039, +0.0000020067,0.0000020107,0.0000020162,0.0000020207,0.0000020243, +0.0000020260,0.0000020257,0.0000020266,0.0000020301,0.0000020335, +0.0000020324,0.0000020254,0.0000020138,0.0000020024,0.0000019929, +0.0000019833,0.0000019720,0.0000019618,0.0000019555,0.0000019541, +0.0000019539,0.0000019532,0.0000019519,0.0000019496,0.0000019473, +0.0000019447,0.0000019431,0.0000019422,0.0000019413,0.0000019406, +0.0000019403,0.0000019407,0.0000019417,0.0000019437,0.0000019471, +0.0000019511,0.0000019551,0.0000019582,0.0000019602,0.0000019616, +0.0000019622,0.0000019626,0.0000019628,0.0000019627,0.0000019613, +0.0000019585,0.0000019558,0.0000019540,0.0000019528,0.0000019512, +0.0000019509,0.0000019519,0.0000019536,0.0000019552,0.0000019559, +0.0000019558,0.0000019547,0.0000019525,0.0000019495,0.0000019459, +0.0000019425,0.0000019400,0.0000019387,0.0000019383,0.0000019390, +0.0000019406,0.0000019427,0.0000019442,0.0000019441,0.0000019429, +0.0000019403,0.0000019376,0.0000019358,0.0000019329,0.0000019295, +0.0000019273,0.0000019260,0.0000019254,0.0000019270,0.0000019299, +0.0000019328,0.0000019354,0.0000019385,0.0000019409,0.0000019436, +0.0000019482,0.0000019539,0.0000019597,0.0000019646,0.0000019678, +0.0000019700,0.0000019708,0.0000019698,0.0000019675,0.0000019660, +0.0000019660,0.0000019661,0.0000019657,0.0000019652,0.0000019640, +0.0000019625,0.0000019633,0.0000019656,0.0000019681,0.0000019693, +0.0000019695,0.0000019699,0.0000019704,0.0000019699,0.0000019682, +0.0000019662,0.0000019642,0.0000019624,0.0000019608,0.0000019593, +0.0000019578,0.0000019556,0.0000019525,0.0000019497,0.0000019471, +0.0000019442,0.0000019415,0.0000019392,0.0000019375,0.0000019371, +0.0000019382,0.0000019412,0.0000019444,0.0000019468,0.0000019480, +0.0000019487,0.0000019499,0.0000019514,0.0000019521,0.0000019524, +0.0000019524,0.0000019520,0.0000019516,0.0000019508,0.0000019492, +0.0000019468,0.0000019442,0.0000019411,0.0000019372,0.0000019330, +0.0000019285,0.0000019234,0.0000019178,0.0000019128,0.0000019094, +0.0000019077,0.0000019071,0.0000019064,0.0000019052,0.0000019034, +0.0000019020,0.0000019017,0.0000019025,0.0000019041,0.0000019062, +0.0000019092,0.0000019119,0.0000019127,0.0000019115,0.0000019086, +0.0000019056,0.0000019066,0.0000019086,0.0000019113,0.0000019126, +0.0000019124,0.0000019111,0.0000019100,0.0000019098,0.0000019112, +0.0000019148,0.0000019205,0.0000019276,0.0000019338,0.0000019372, +0.0000019368,0.0000019337,0.0000019280,0.0000019226,0.0000019170, +0.0000019129,0.0000019105,0.0000019075,0.0000019030,0.0000018974, +0.0000018918,0.0000018871,0.0000018815,0.0000018744,0.0000018669, +0.0000018619,0.0000018610,0.0000018622,0.0000018628,0.0000018618, +0.0000018600,0.0000018591,0.0000018572,0.0000018580,0.0000018624, +0.0000018703,0.0000018796,0.0000018883,0.0000018945,0.0000018973, +0.0000018965,0.0000018939,0.0000018915,0.0000018893,0.0000018881, +0.0000018881,0.0000018886,0.0000018867,0.0000018835,0.0000018806, +0.0000018792,0.0000018799,0.0000018813,0.0000018837,0.0000018861, +0.0000018870,0.0000018865,0.0000018842,0.0000018830,0.0000018826, +0.0000018814,0.0000018793,0.0000018782,0.0000018765,0.0000018739, +0.0000018715,0.0000018696,0.0000018684,0.0000018675,0.0000018671, +0.0000018685,0.0000018729,0.0000018783,0.0000018840,0.0000018891, +0.0000018923,0.0000018924,0.0000018922,0.0000018918,0.0000018923, +0.0000018908,0.0000018871,0.0000018819,0.0000018768,0.0000018727, +0.0000018704,0.0000018679,0.0000018641,0.0000018593,0.0000018542, +0.0000018482,0.0000018413,0.0000018362,0.0000018350,0.0000018368, +0.0000018390,0.0000018404,0.0000018418,0.0000018407,0.0000018374, +0.0000018311,0.0000018220,0.0000018125,0.0000018034,0.0000017941, +0.0000017871,0.0000017847,0.0000017847,0.0000017836,0.0000017795, +0.0000017733,0.0000017691,0.0000017690,0.0000017714,0.0000017757, +0.0000017780,0.0000017758,0.0000017692,0.0000017606,0.0000017537, +0.0000017496,0.0000017485,0.0000017482,0.0000017478,0.0000017468, +0.0000017447,0.0000017412,0.0000017371,0.0000017333,0.0000017300, +0.0000017270,0.0000017242,0.0000017216,0.0000017193,0.0000017195, +0.0000017206,0.0000017226,0.0000017242,0.0000017245,0.0000017237, +0.0000017229,0.0000017232,0.0000017239,0.0000017235,0.0000017207, +0.0000017156,0.0000017122,0.0000017095,0.0000017080,0.0000017074, +0.0000017090,0.0000017126,0.0000017162,0.0000017195,0.0000017227, +0.0000017252,0.0000017256,0.0000017227,0.0000017169,0.0000017111, +0.0000017094,0.0000017110,0.0000017143,0.0000017165,0.0000017164, +0.0000017192,0.0000017258,0.0000017301,0.0000017333,0.0000017380, +0.0000017449,0.0000017565,0.0000017759,0.0000018011,0.0000018264, +0.0000018454,0.0000018526,0.0000018527,0.0000018499,0.0000018431, +0.0000018341,0.0000018244,0.0000018164,0.0000018110,0.0000018082, +0.0000018076,0.0000018086,0.0000018106,0.0000018140,0.0000018188, +0.0000018238,0.0000018280,0.0000018317,0.0000018361,0.0000018401, +0.0000018423,0.0000018437,0.0000018458,0.0000018490,0.0000018525, +0.0000018544,0.0000018548,0.0000018545,0.0000018536,0.0000018519, +0.0000018497,0.0000018486,0.0000018491,0.0000018495,0.0000018493, +0.0000018496,0.0000018495,0.0000018479,0.0000018456,0.0000018443, +0.0000018448,0.0000018449,0.0000018429,0.0000018387,0.0000018334, +0.0000018285,0.0000018255,0.0000018249,0.0000018271,0.0000018305, +0.0000018341,0.0000018379,0.0000018420,0.0000018456,0.0000018470, +0.0000018457,0.0000018419,0.0000018363,0.0000018297,0.0000018240, +0.0000018204,0.0000018181,0.0000018175,0.0000018179,0.0000018186, +0.0000018205,0.0000018251,0.0000018312,0.0000018376,0.0000018422, +0.0000018438,0.0000018438,0.0000018441,0.0000018475,0.0000018567, +0.0000018606,0.0000018511,0.0000018334,0.0000018249,0.0000018261, +0.0000018273,0.0000018256,0.0000018207,0.0000018167,0.0000018146, +0.0000018124,0.0000018113,0.0000018110,0.0000018106,0.0000018114, +0.0000018139,0.0000018168,0.0000018190,0.0000018210,0.0000018211, +0.0000018190,0.0000018146,0.0000018104,0.0000018082,0.0000018084, +0.0000018096,0.0000018113,0.0000018125,0.0000018134,0.0000018124, +0.0000018090,0.0000018073,0.0000018096,0.0000018138,0.0000018146, +0.0000018112,0.0000018062,0.0000018027,0.0000018011,0.0000018001, +0.0000017967,0.0000017927,0.0000017934,0.0000018007,0.0000018089, +0.0000018118,0.0000018088,0.0000018013,0.0000017970,0.0000017953, +0.0000017950,0.0000017954,0.0000017916,0.0000017817,0.0000017722, +0.0000017641,0.0000017587,0.0000017581,0.0000017567,0.0000017555, +0.0000017715,0.0000018129,0.0000018450,0.0000018528,0.0000018472, +0.0000018324,0.0000018259,0.0000018212,0.0000018058,0.0000017904, +0.0000017736,0.0000017581,0.0000017546,0.0000017636,0.0000017724, +0.0000017746,0.0000017746,0.0000017734,0.0000017718,0.0000017683, +0.0000017631,0.0000017554,0.0000017496,0.0000017495,0.0000017566, +0.0000017689,0.0000017793,0.0000017849,0.0000017883,0.0000017839, +0.0000017642,0.0000017611,0.0000017651,0.0000017729,0.0000017713, +0.0000017501,0.0000017439,0.0000017429,0.0000017409,0.0000017454, +0.0000017489,0.0000017518,0.0000017525,0.0000017514,0.0000017512, +0.0000017525,0.0000017536,0.0000017535,0.0000017558,0.0000017669, +0.0000017770,0.0000017842,0.0000017981,0.0000018036,0.0000018078, +0.0000018171,0.0000018264,0.0000018348,0.0000018397,0.0000018394, +0.0000018377,0.0000018328,0.0000018257,0.0000018196,0.0000018071, +0.0000017842,0.0000017704,0.0000017707,0.0000017716,0.0000017702, +0.0000017684,0.0000017679,0.0000017681,0.0000017671,0.0000017649, +0.0000017628,0.0000017623,0.0000017628,0.0000017641,0.0000017637, +0.0000017610,0.0000017600,0.0000017698,0.0000017879,0.0000017976, +0.0000017982,0.0000017970,0.0000017970,0.0000018002,0.0000018063, +0.0000018127,0.0000018189,0.0000018229,0.0000018243,0.0000018279, +0.0000018379,0.0000018496,0.0000018528,0.0000018514,0.0000018552, +0.0000018634,0.0000018612,0.0000018517,0.0000018437,0.0000018284, +0.0000018122,0.0000018126,0.0000018238,0.0000018338,0.0000018408, +0.0000018429,0.0000018402,0.0000018393,0.0000018424,0.0000018437, +0.0000018420,0.0000018411,0.0000018403,0.0000018380,0.0000018348, +0.0000018323,0.0000018309,0.0000018306,0.0000018306,0.0000018312, +0.0000018341,0.0000018394,0.0000018435,0.0000018438,0.0000018425, +0.0000018436,0.0000018469,0.0000018493,0.0000018502,0.0000018522, +0.0000018564,0.0000018608,0.0000018640,0.0000018655,0.0000018655, +0.0000018643,0.0000018628,0.0000018620,0.0000018626,0.0000018649, +0.0000018682,0.0000018720,0.0000018757,0.0000018792,0.0000018823, +0.0000018843,0.0000018846,0.0000018836,0.0000018811,0.0000018782, +0.0000018756,0.0000018734,0.0000018715,0.0000018709,0.0000018710, +0.0000018720,0.0000018730,0.0000018732,0.0000018733,0.0000018732, +0.0000018731,0.0000018732,0.0000018737,0.0000018745,0.0000018747, +0.0000018746,0.0000018745,0.0000018751,0.0000018754,0.0000018750, +0.0000018741,0.0000018727,0.0000018711,0.0000018685,0.0000018673, +0.0000018670,0.0000018684,0.0000018712,0.0000018749,0.0000018804, +0.0000018888,0.0000019001,0.0000019117,0.0000019213,0.0000019317, +0.0000019457,0.0000019589,0.0000019664,0.0000019690,0.0000019702, +0.0000019706,0.0000019666,0.0000019567,0.0000019475,0.0000019445, +0.0000019459,0.0000019515,0.0000019591,0.0000019677,0.0000019751, +0.0000019790,0.0000019803,0.0000019807,0.0000019821,0.0000019843, +0.0000019864,0.0000019873,0.0000019870,0.0000019864,0.0000019873, +0.0000019897,0.0000019918,0.0000019923,0.0000019908,0.0000019887, +0.0000019867,0.0000019842,0.0000019799,0.0000019737,0.0000019664, +0.0000019592,0.0000019525,0.0000019462,0.0000019410,0.0000019373, +0.0000019346,0.0000019334,0.0000019335,0.0000019340,0.0000019353, +0.0000019366,0.0000019373,0.0000019379,0.0000019383,0.0000019392, +0.0000019404,0.0000019414,0.0000019421,0.0000019431,0.0000019441, +0.0000019445,0.0000019446,0.0000019455,0.0000019470,0.0000019490, +0.0000019519,0.0000019558,0.0000019600,0.0000019639,0.0000019665, +0.0000019684,0.0000019705,0.0000019733,0.0000019763,0.0000019789, +0.0000019810,0.0000019832,0.0000019852,0.0000019867,0.0000019876, +0.0000019879,0.0000019877,0.0000019873,0.0000019866,0.0000019860, +0.0000019858,0.0000019861,0.0000019869,0.0000019881,0.0000019899, +0.0000019920,0.0000019947,0.0000019973,0.0000019968,0.0000019990, +0.0000019996,0.0000020009,0.0000020012,0.0000020026,0.0000020029, +0.0000020038,0.0000020036,0.0000020018,0.0000019987,0.0000019947, +0.0000019902,0.0000019857,0.0000019813,0.0000019771,0.0000019734, +0.0000019699,0.0000019670,0.0000019641,0.0000019605,0.0000019569, +0.0000019539,0.0000019511,0.0000019496,0.0000019486,0.0000019480, +0.0000019480,0.0000019485,0.0000019491,0.0000019494,0.0000019494, +0.0000019489,0.0000019483,0.0000019481,0.0000019482,0.0000019485, +0.0000019493,0.0000019504,0.0000019517,0.0000019532,0.0000019551, +0.0000019572,0.0000019595,0.0000019622,0.0000019654,0.0000019697, +0.0000019740,0.0000019778,0.0000019811,0.0000019840,0.0000019871, +0.0000019905,0.0000019936,0.0000019965,0.0000019993,0.0000020021, +0.0000020055,0.0000020078,0.0000020088,0.0000020104,0.0000020122, +0.0000020142,0.0000020163,0.0000020140,0.0000020076,0.0000019991, +0.0000019892,0.0000019782,0.0000019659,0.0000019532,0.0000019411, +0.0000019297,0.0000019193,0.0000019101,0.0000019018,0.0000018944, +0.0000018886,0.0000018840,0.0000018804,0.0000018781,0.0000018768, +0.0000018760,0.0000018755,0.0000018752,0.0000018747,0.0000018739, +0.0000018726,0.0000018713,0.0000018701,0.0000018688,0.0000018669, +0.0000018649,0.0000018630,0.0000018615,0.0000018599,0.0000018582, +0.0000018570,0.0000018564,0.0000018555,0.0000018549,0.0000018546, +0.0000018547,0.0000018549,0.0000018548,0.0000018542,0.0000018530, +0.0000018516,0.0000018498,0.0000018471,0.0000018441,0.0000018413, +0.0000018388,0.0000018359,0.0000018335,0.0000018328,0.0000018318, +0.0000018317,0.0000018326,0.0000018340,0.0000018371,0.0000018441, +0.0000018574,0.0000018788,0.0000019064,0.0000019344,0.0000019583, +0.0000019755,0.0000019847,0.0000019880,0.0000019893,0.0000019909, +0.0000019937,0.0000019975,0.0000020005,0.0000019996,0.0000019924, +0.0000019815,0.0000019732,0.0000019696,0.0000019691,0.0000019698, +0.0000019704,0.0000019709,0.0000019718,0.0000019770,0.0000019896, +0.0000019995,0.0000020011,0.0000019982,0.0000019865,0.0000019620, +0.0000019338,0.0000019130,0.0000019037,0.0000019038,0.0000019088, +0.0000019139,0.0000019170,0.0000019218,0.0000019312,0.0000019418, +0.0000019521,0.0000019668,0.0000019877,0.0000020083,0.0000020212, +0.0000020240,0.0000020213,0.0000020163,0.0000020102,0.0000020023, +0.0000019936,0.0000019844,0.0000019768,0.0000019713,0.0000019678, +0.0000019656,0.0000019634,0.0000019613,0.0000019595,0.0000019579, +0.0000019566,0.0000019553,0.0000019550,0.0000019555,0.0000019555, +0.0000019553,0.0000019548,0.0000019535,0.0000019515,0.0000019494, +0.0000019473,0.0000019449,0.0000019420,0.0000019390,0.0000019377, +0.0000019379,0.0000019398,0.0000019418,0.0000019433,0.0000019440, +0.0000019439,0.0000019428,0.0000019415,0.0000019383,0.0000019356, +0.0000019344,0.0000019332,0.0000019337,0.0000019372,0.0000019422, +0.0000019480,0.0000019540,0.0000019594,0.0000019640,0.0000019685, +0.0000019733,0.0000019783,0.0000019835,0.0000019891,0.0000019959, +0.0000020024,0.0000020085,0.0000020139,0.0000020172,0.0000020165, +0.0000020159,0.0000020165,0.0000020151,0.0000020122,0.0000020088, +0.0000020050,0.0000020021,0.0000020000,0.0000019989,0.0000019983, +0.0000019997,0.0000020019,0.0000020054,0.0000020097,0.0000020139, +0.0000020180,0.0000020208,0.0000020223,0.0000020228,0.0000020220, +0.0000020218,0.0000020250,0.0000020302,0.0000020326,0.0000020301, +0.0000020220,0.0000020116,0.0000020018,0.0000019936,0.0000019858, +0.0000019764,0.0000019659,0.0000019581,0.0000019533,0.0000019514, +0.0000019503,0.0000019491,0.0000019475,0.0000019451,0.0000019432, +0.0000019425,0.0000019423,0.0000019421,0.0000019430,0.0000019450, +0.0000019479,0.0000019512,0.0000019548,0.0000019581,0.0000019614, +0.0000019641,0.0000019663,0.0000019670,0.0000019672,0.0000019673, +0.0000019672,0.0000019668,0.0000019651,0.0000019622,0.0000019595, +0.0000019582,0.0000019572,0.0000019553,0.0000019546,0.0000019555, +0.0000019578,0.0000019600,0.0000019620,0.0000019632,0.0000019632, +0.0000019629,0.0000019630,0.0000019631,0.0000019632,0.0000019638, +0.0000019640,0.0000019645,0.0000019655,0.0000019663,0.0000019662, +0.0000019656,0.0000019637,0.0000019609,0.0000019571,0.0000019534, +0.0000019508,0.0000019480,0.0000019446,0.0000019425,0.0000019400, +0.0000019372,0.0000019356,0.0000019355,0.0000019367,0.0000019384, +0.0000019415,0.0000019453,0.0000019490,0.0000019541,0.0000019603, +0.0000019666,0.0000019713,0.0000019742,0.0000019764,0.0000019776, +0.0000019769,0.0000019746,0.0000019731,0.0000019729,0.0000019729, +0.0000019732,0.0000019739,0.0000019735,0.0000019727,0.0000019731, +0.0000019741,0.0000019749,0.0000019752,0.0000019754,0.0000019752, +0.0000019750,0.0000019749,0.0000019745,0.0000019733,0.0000019717, +0.0000019703,0.0000019692,0.0000019683,0.0000019670,0.0000019656, +0.0000019640,0.0000019619,0.0000019594,0.0000019562,0.0000019531, +0.0000019505,0.0000019490,0.0000019490,0.0000019504,0.0000019524, +0.0000019538,0.0000019542,0.0000019543,0.0000019548,0.0000019561, +0.0000019577,0.0000019595,0.0000019611,0.0000019626,0.0000019642, +0.0000019655,0.0000019656,0.0000019647,0.0000019627,0.0000019595, +0.0000019546,0.0000019485,0.0000019422,0.0000019358,0.0000019294, +0.0000019236,0.0000019192,0.0000019166,0.0000019153,0.0000019148, +0.0000019147,0.0000019138,0.0000019117,0.0000019100,0.0000019090, +0.0000019091,0.0000019102,0.0000019120,0.0000019145,0.0000019171, +0.0000019177,0.0000019164,0.0000019128,0.0000019094,0.0000019084, +0.0000019096,0.0000019118,0.0000019122,0.0000019108,0.0000019071, +0.0000019046,0.0000019041,0.0000019074,0.0000019126,0.0000019190, +0.0000019271,0.0000019346,0.0000019391,0.0000019405,0.0000019393, +0.0000019353,0.0000019310,0.0000019266,0.0000019239,0.0000019227, +0.0000019212,0.0000019174,0.0000019109,0.0000019035,0.0000018959, +0.0000018885,0.0000018819,0.0000018760,0.0000018707,0.0000018685, +0.0000018697,0.0000018716,0.0000018709,0.0000018676,0.0000018626, +0.0000018585,0.0000018567,0.0000018578,0.0000018633,0.0000018714, +0.0000018798,0.0000018865,0.0000018900,0.0000018891,0.0000018857, +0.0000018817,0.0000018779,0.0000018760,0.0000018765,0.0000018768, +0.0000018765,0.0000018753,0.0000018745,0.0000018753,0.0000018778, +0.0000018811,0.0000018851,0.0000018881,0.0000018898,0.0000018902, +0.0000018899,0.0000018898,0.0000018900,0.0000018890,0.0000018871, +0.0000018863,0.0000018845,0.0000018817,0.0000018790,0.0000018780, +0.0000018778,0.0000018771,0.0000018757,0.0000018754,0.0000018777, +0.0000018814,0.0000018853,0.0000018883,0.0000018900,0.0000018902, +0.0000018902,0.0000018924,0.0000018944,0.0000018953,0.0000018924, +0.0000018874,0.0000018839,0.0000018833,0.0000018844,0.0000018841, +0.0000018803,0.0000018743,0.0000018677,0.0000018600,0.0000018523, +0.0000018466,0.0000018444,0.0000018443,0.0000018438,0.0000018437, +0.0000018437,0.0000018428,0.0000018412,0.0000018360,0.0000018270, +0.0000018170,0.0000018067,0.0000017967,0.0000017904,0.0000017884, +0.0000017882,0.0000017868,0.0000017820,0.0000017758,0.0000017727, +0.0000017740,0.0000017784,0.0000017832,0.0000017847,0.0000017815, +0.0000017746,0.0000017675,0.0000017617,0.0000017580,0.0000017558, +0.0000017547,0.0000017543,0.0000017535,0.0000017510,0.0000017471, +0.0000017424,0.0000017381,0.0000017350,0.0000017332,0.0000017316, +0.0000017287,0.0000017255,0.0000017232,0.0000017222,0.0000017225, +0.0000017226,0.0000017223,0.0000017216,0.0000017223,0.0000017244, +0.0000017268,0.0000017268,0.0000017237,0.0000017182,0.0000017130, +0.0000017096,0.0000017078,0.0000017082,0.0000017111,0.0000017144, +0.0000017166,0.0000017172,0.0000017174,0.0000017177,0.0000017187, +0.0000017154,0.0000017095,0.0000017066,0.0000017065,0.0000017084, +0.0000017110,0.0000017118,0.0000017147,0.0000017213,0.0000017254, +0.0000017265,0.0000017256,0.0000017229,0.0000017208,0.0000017242, +0.0000017376,0.0000017641,0.0000017971,0.0000018267,0.0000018454, +0.0000018498,0.0000018498,0.0000018456,0.0000018395,0.0000018322, +0.0000018252,0.0000018204,0.0000018184,0.0000018186,0.0000018194, +0.0000018217,0.0000018258,0.0000018302,0.0000018340,0.0000018377, +0.0000018425,0.0000018469,0.0000018496,0.0000018504,0.0000018508, +0.0000018521,0.0000018544,0.0000018561,0.0000018568,0.0000018567, +0.0000018554,0.0000018526,0.0000018492,0.0000018479,0.0000018479, +0.0000018481,0.0000018484,0.0000018495,0.0000018497,0.0000018482, +0.0000018454,0.0000018441,0.0000018449,0.0000018457,0.0000018446, +0.0000018410,0.0000018359,0.0000018307,0.0000018268,0.0000018252, +0.0000018265,0.0000018296,0.0000018334,0.0000018370,0.0000018410, +0.0000018452,0.0000018477,0.0000018479,0.0000018459,0.0000018410, +0.0000018336,0.0000018259,0.0000018200,0.0000018165,0.0000018151, +0.0000018147,0.0000018146,0.0000018166,0.0000018213,0.0000018266, +0.0000018327,0.0000018383,0.0000018409,0.0000018420,0.0000018428, +0.0000018451,0.0000018523,0.0000018592,0.0000018539,0.0000018361, +0.0000018248,0.0000018232,0.0000018238,0.0000018216,0.0000018183, +0.0000018156,0.0000018129,0.0000018116,0.0000018116,0.0000018117, +0.0000018130,0.0000018158,0.0000018184,0.0000018199,0.0000018206, +0.0000018202,0.0000018178,0.0000018138,0.0000018098,0.0000018071, +0.0000018066,0.0000018075,0.0000018084,0.0000018098,0.0000018117, +0.0000018117,0.0000018094,0.0000018081,0.0000018093,0.0000018119, +0.0000018124,0.0000018097,0.0000018053,0.0000018020,0.0000018009, +0.0000018007,0.0000017983,0.0000017937,0.0000017927,0.0000017988, +0.0000018083,0.0000018154,0.0000018157,0.0000018075,0.0000017987, +0.0000017956,0.0000017945,0.0000017950,0.0000017937,0.0000017862, +0.0000017768,0.0000017691,0.0000017612,0.0000017568,0.0000017548, +0.0000017537,0.0000017631,0.0000017993,0.0000018366,0.0000018521, +0.0000018521,0.0000018372,0.0000018227,0.0000018203,0.0000018148, +0.0000017991,0.0000017873,0.0000017727,0.0000017557,0.0000017507, +0.0000017556,0.0000017639,0.0000017693,0.0000017715,0.0000017705, +0.0000017672,0.0000017619,0.0000017555,0.0000017503,0.0000017482, +0.0000017503,0.0000017601,0.0000017727,0.0000017801,0.0000017838, +0.0000017864,0.0000017752,0.0000017604,0.0000017630,0.0000017674, +0.0000017755,0.0000017622,0.0000017452,0.0000017448,0.0000017417, +0.0000017428,0.0000017467,0.0000017508,0.0000017531,0.0000017527, +0.0000017519,0.0000017518,0.0000017536,0.0000017543,0.0000017540, +0.0000017575,0.0000017696,0.0000017789,0.0000017920,0.0000018071, +0.0000018105,0.0000018154,0.0000018219,0.0000018295,0.0000018365, +0.0000018383,0.0000018373,0.0000018327,0.0000018258,0.0000018208, +0.0000018103,0.0000017876,0.0000017698,0.0000017694,0.0000017700, +0.0000017678,0.0000017663,0.0000017670,0.0000017688,0.0000017689, +0.0000017668,0.0000017632,0.0000017611,0.0000017606,0.0000017611, +0.0000017619,0.0000017602,0.0000017584,0.0000017595,0.0000017731, +0.0000017908,0.0000017978,0.0000017977,0.0000017959,0.0000017957, +0.0000018007,0.0000018080,0.0000018148,0.0000018203,0.0000018225, +0.0000018233,0.0000018283,0.0000018401,0.0000018510,0.0000018534, +0.0000018530,0.0000018586,0.0000018631,0.0000018569,0.0000018482, +0.0000018370,0.0000018190,0.0000018108,0.0000018181,0.0000018284, +0.0000018358,0.0000018409,0.0000018414,0.0000018383,0.0000018378, +0.0000018415,0.0000018439,0.0000018438,0.0000018440,0.0000018441, +0.0000018426,0.0000018382,0.0000018329,0.0000018290,0.0000018278, +0.0000018287,0.0000018326,0.0000018381,0.0000018415,0.0000018410, +0.0000018395,0.0000018409,0.0000018448,0.0000018474,0.0000018479, +0.0000018485,0.0000018507,0.0000018541,0.0000018574,0.0000018600, +0.0000018617,0.0000018623,0.0000018620,0.0000018608,0.0000018595, +0.0000018592,0.0000018603,0.0000018629,0.0000018661,0.0000018693, +0.0000018722,0.0000018742,0.0000018752,0.0000018752,0.0000018745, +0.0000018733,0.0000018723,0.0000018712,0.0000018707,0.0000018712, +0.0000018723,0.0000018744,0.0000018757,0.0000018767,0.0000018774, +0.0000018786,0.0000018791,0.0000018804,0.0000018813,0.0000018816, +0.0000018818,0.0000018816,0.0000018811,0.0000018803,0.0000018791, +0.0000018775,0.0000018755,0.0000018733,0.0000018707,0.0000018669, +0.0000018628,0.0000018588,0.0000018567,0.0000018564,0.0000018586, +0.0000018635,0.0000018696,0.0000018782,0.0000018899,0.0000019026, +0.0000019157,0.0000019308,0.0000019463,0.0000019587,0.0000019661, +0.0000019685,0.0000019660,0.0000019560,0.0000019435,0.0000019381, +0.0000019382,0.0000019422,0.0000019464,0.0000019511,0.0000019605, +0.0000019712,0.0000019787,0.0000019809,0.0000019808,0.0000019810, +0.0000019819,0.0000019843,0.0000019863,0.0000019866,0.0000019859, +0.0000019857,0.0000019871,0.0000019897,0.0000019917,0.0000019924, +0.0000019919,0.0000019908,0.0000019896,0.0000019883,0.0000019864, +0.0000019833,0.0000019784,0.0000019717,0.0000019641,0.0000019572, +0.0000019523,0.0000019496,0.0000019494,0.0000019512,0.0000019537, +0.0000019562,0.0000019585,0.0000019605,0.0000019626,0.0000019648, +0.0000019672,0.0000019703,0.0000019735,0.0000019764,0.0000019792, +0.0000019813,0.0000019825,0.0000019840,0.0000019868,0.0000019898, +0.0000019928,0.0000019963,0.0000019998,0.0000020013,0.0000020008, +0.0000019999,0.0000019997,0.0000020002,0.0000020010,0.0000020012, +0.0000020009,0.0000020008,0.0000020009,0.0000020012,0.0000020013, +0.0000020014,0.0000020012,0.0000020008,0.0000020002,0.0000019993, +0.0000019984,0.0000019978,0.0000019973,0.0000019969,0.0000019964, +0.0000019957,0.0000019947,0.0000019934,0.0000019919,0.0000019899, +0.0000019876,0.0000019847,0.0000019816,0.0000019785,0.0000019757, +0.0000019729,0.0000019699,0.0000019665,0.0000019628,0.0000019587, +0.0000019549,0.0000019507,0.0000019467,0.0000019460,0.0000019449, +0.0000019438,0.0000019440,0.0000019441,0.0000019433,0.0000019419, +0.0000019416,0.0000019393,0.0000019381,0.0000019366,0.0000019344, +0.0000019325,0.0000019304,0.0000019284,0.0000019264,0.0000019241, +0.0000019219,0.0000019196,0.0000019179,0.0000019167,0.0000019158, +0.0000019154,0.0000019155,0.0000019161,0.0000019170,0.0000019180, +0.0000019196,0.0000019216,0.0000019240,0.0000019268,0.0000019308, +0.0000019350,0.0000019390,0.0000019429,0.0000019464,0.0000019500, +0.0000019541,0.0000019587,0.0000019636,0.0000019687,0.0000019744, +0.0000019809,0.0000019871,0.0000019929,0.0000019987,0.0000020041, +0.0000020093,0.0000020144,0.0000020184,0.0000020206,0.0000020211, +0.0000020217,0.0000020207,0.0000020208,0.0000020131,0.0000020035, +0.0000019932,0.0000019824,0.0000019708,0.0000019587,0.0000019470, +0.0000019356,0.0000019244,0.0000019145,0.0000019066,0.0000019002, +0.0000018951,0.0000018912,0.0000018877,0.0000018843,0.0000018812, +0.0000018783,0.0000018759,0.0000018741,0.0000018718,0.0000018690, +0.0000018663,0.0000018639,0.0000018616,0.0000018592,0.0000018571, +0.0000018555,0.0000018543,0.0000018528,0.0000018520,0.0000018518, +0.0000018519,0.0000018517,0.0000018510,0.0000018497,0.0000018481, +0.0000018467,0.0000018450,0.0000018428,0.0000018406,0.0000018390, +0.0000018372,0.0000018346,0.0000018337,0.0000018344,0.0000018366, +0.0000018416,0.0000018499,0.0000018622,0.0000018793,0.0000019010, +0.0000019258,0.0000019496,0.0000019679,0.0000019789,0.0000019842, +0.0000019865,0.0000019881,0.0000019897,0.0000019924,0.0000019974, +0.0000020027,0.0000020044,0.0000019994,0.0000019860,0.0000019728, +0.0000019671,0.0000019670,0.0000019694,0.0000019718,0.0000019734, +0.0000019739,0.0000019729,0.0000019725,0.0000019800,0.0000019951, +0.0000020022,0.0000020014,0.0000019951,0.0000019769,0.0000019476, +0.0000019224,0.0000019120,0.0000019131,0.0000019184,0.0000019224, +0.0000019261,0.0000019335,0.0000019431,0.0000019527,0.0000019673, +0.0000019882,0.0000020102,0.0000020235,0.0000020256,0.0000020224, +0.0000020165,0.0000020101,0.0000020021,0.0000019922,0.0000019825, +0.0000019759,0.0000019709,0.0000019681,0.0000019664,0.0000019643, +0.0000019618,0.0000019591,0.0000019572,0.0000019555,0.0000019553, +0.0000019542,0.0000019537,0.0000019549,0.0000019560,0.0000019563, +0.0000019561,0.0000019555,0.0000019542,0.0000019526,0.0000019511, +0.0000019490,0.0000019463,0.0000019431,0.0000019401,0.0000019390, +0.0000019399,0.0000019414,0.0000019429,0.0000019443,0.0000019454, +0.0000019459,0.0000019457,0.0000019451,0.0000019451,0.0000019468, +0.0000019497,0.0000019531,0.0000019577,0.0000019636,0.0000019692, +0.0000019746,0.0000019803,0.0000019860,0.0000019921,0.0000019976, +0.0000020019,0.0000020055,0.0000020096,0.0000020130,0.0000020147, +0.0000020165,0.0000020188,0.0000020185,0.0000020168,0.0000020149, +0.0000020124,0.0000020093,0.0000020060,0.0000020021,0.0000019989, +0.0000019979,0.0000019993,0.0000020015,0.0000020042,0.0000020087, +0.0000020140,0.0000020186,0.0000020218,0.0000020238,0.0000020241, +0.0000020231,0.0000020218,0.0000020202,0.0000020191,0.0000020191, +0.0000020226,0.0000020283,0.0000020321,0.0000020318,0.0000020269, +0.0000020192,0.0000020107,0.0000020026,0.0000019960,0.0000019899, +0.0000019825,0.0000019729,0.0000019623,0.0000019547,0.0000019500, +0.0000019479,0.0000019463,0.0000019448,0.0000019436,0.0000019435, +0.0000019443,0.0000019446,0.0000019458,0.0000019477,0.0000019507, +0.0000019541,0.0000019573,0.0000019599,0.0000019624,0.0000019650, +0.0000019672,0.0000019676,0.0000019677,0.0000019682,0.0000019686, +0.0000019682,0.0000019666,0.0000019640,0.0000019617,0.0000019611, +0.0000019604,0.0000019590,0.0000019583,0.0000019589,0.0000019604, +0.0000019622,0.0000019645,0.0000019668,0.0000019684,0.0000019699, +0.0000019714,0.0000019730,0.0000019747,0.0000019765,0.0000019775, +0.0000019788,0.0000019804,0.0000019809,0.0000019809,0.0000019806, +0.0000019793,0.0000019768,0.0000019736,0.0000019696,0.0000019653, +0.0000019612,0.0000019574,0.0000019557,0.0000019545,0.0000019524, +0.0000019498,0.0000019472,0.0000019455,0.0000019452,0.0000019473, +0.0000019506,0.0000019531,0.0000019575,0.0000019638,0.0000019704, +0.0000019751,0.0000019780,0.0000019806,0.0000019819,0.0000019812, +0.0000019797,0.0000019792,0.0000019794,0.0000019798,0.0000019808, +0.0000019818,0.0000019817,0.0000019817,0.0000019825,0.0000019827, +0.0000019819,0.0000019818,0.0000019828,0.0000019831,0.0000019826, +0.0000019828,0.0000019835,0.0000019837,0.0000019834,0.0000019832, +0.0000019828,0.0000019828,0.0000019831,0.0000019829,0.0000019820, +0.0000019801,0.0000019773,0.0000019736,0.0000019700,0.0000019676, +0.0000019668,0.0000019669,0.0000019680,0.0000019688,0.0000019687, +0.0000019685,0.0000019683,0.0000019683,0.0000019688,0.0000019700, +0.0000019714,0.0000019727,0.0000019738,0.0000019748,0.0000019757, +0.0000019764,0.0000019767,0.0000019763,0.0000019746,0.0000019711, +0.0000019660,0.0000019593,0.0000019514,0.0000019430,0.0000019348, +0.0000019276,0.0000019223,0.0000019190,0.0000019177,0.0000019176, +0.0000019170,0.0000019156,0.0000019153,0.0000019149,0.0000019148, +0.0000019164,0.0000019191,0.0000019223,0.0000019252,0.0000019262, +0.0000019249,0.0000019216,0.0000019181,0.0000019156,0.0000019155, +0.0000019163,0.0000019154,0.0000019118,0.0000019067,0.0000019027, +0.0000019036,0.0000019071,0.0000019125,0.0000019191,0.0000019271, +0.0000019346,0.0000019397,0.0000019421,0.0000019412,0.0000019383, +0.0000019348,0.0000019317,0.0000019308,0.0000019312,0.0000019310, +0.0000019286,0.0000019237,0.0000019163,0.0000019067,0.0000018970, +0.0000018897,0.0000018837,0.0000018784,0.0000018761,0.0000018777, +0.0000018809,0.0000018824,0.0000018799,0.0000018743,0.0000018677, +0.0000018613,0.0000018582,0.0000018606,0.0000018654,0.0000018716, +0.0000018777,0.0000018821,0.0000018830,0.0000018805,0.0000018758, +0.0000018702,0.0000018666,0.0000018643,0.0000018628,0.0000018616, +0.0000018606,0.0000018608,0.0000018629,0.0000018675,0.0000018736, +0.0000018796,0.0000018840,0.0000018865,0.0000018886,0.0000018905, +0.0000018923,0.0000018944,0.0000018955,0.0000018960,0.0000018968, +0.0000018957,0.0000018931,0.0000018908,0.0000018908,0.0000018911, +0.0000018901,0.0000018878,0.0000018865,0.0000018875,0.0000018886, +0.0000018893,0.0000018895,0.0000018890,0.0000018875,0.0000018882, +0.0000018913,0.0000018953,0.0000018966,0.0000018941,0.0000018894, +0.0000018867,0.0000018886,0.0000018930,0.0000018957,0.0000018934, +0.0000018880,0.0000018812,0.0000018736,0.0000018659,0.0000018601, +0.0000018567,0.0000018537,0.0000018505,0.0000018478,0.0000018456, +0.0000018443,0.0000018430,0.0000018388,0.0000018309,0.0000018209, +0.0000018099,0.0000018006,0.0000017958,0.0000017937,0.0000017930, +0.0000017901,0.0000017845,0.0000017790,0.0000017778,0.0000017806, +0.0000017857,0.0000017899,0.0000017905,0.0000017868,0.0000017810, +0.0000017754,0.0000017704,0.0000017656,0.0000017620,0.0000017596, +0.0000017584,0.0000017570,0.0000017546,0.0000017506,0.0000017455, +0.0000017409,0.0000017389,0.0000017392,0.0000017392,0.0000017374, +0.0000017340,0.0000017301,0.0000017265,0.0000017234,0.0000017218, +0.0000017197,0.0000017190,0.0000017209,0.0000017253,0.0000017285, +0.0000017291,0.0000017263,0.0000017204,0.0000017152,0.0000017122, +0.0000017112,0.0000017121,0.0000017145,0.0000017169,0.0000017181, +0.0000017179,0.0000017171,0.0000017189,0.0000017187,0.0000017135, +0.0000017082,0.0000017067,0.0000017079,0.0000017095,0.0000017107, +0.0000017129,0.0000017182,0.0000017236,0.0000017260,0.0000017251, +0.0000017217,0.0000017169,0.0000017116,0.0000017101,0.0000017197, +0.0000017431,0.0000017768,0.0000018120,0.0000018364,0.0000018477, +0.0000018476,0.0000018471,0.0000018436,0.0000018387,0.0000018345, +0.0000018324,0.0000018324,0.0000018325,0.0000018335,0.0000018361, +0.0000018386,0.0000018405,0.0000018428,0.0000018466,0.0000018509, +0.0000018543,0.0000018559,0.0000018560,0.0000018560,0.0000018567, +0.0000018574,0.0000018578,0.0000018577,0.0000018569,0.0000018542, +0.0000018506,0.0000018488,0.0000018480,0.0000018477,0.0000018475, +0.0000018484,0.0000018494,0.0000018485,0.0000018461,0.0000018447, +0.0000018453,0.0000018463,0.0000018456,0.0000018423,0.0000018377, +0.0000018334,0.0000018296,0.0000018272,0.0000018269,0.0000018290, +0.0000018330,0.0000018370,0.0000018411,0.0000018454,0.0000018478, +0.0000018478,0.0000018456,0.0000018403,0.0000018323,0.0000018243, +0.0000018176,0.0000018137,0.0000018122,0.0000018117,0.0000018123, +0.0000018156,0.0000018196,0.0000018224,0.0000018279,0.0000018349, +0.0000018388,0.0000018403,0.0000018422,0.0000018439,0.0000018486, +0.0000018576,0.0000018557,0.0000018382,0.0000018240,0.0000018205, +0.0000018205,0.0000018196,0.0000018180,0.0000018146,0.0000018123, +0.0000018127,0.0000018135,0.0000018148,0.0000018172,0.0000018189, +0.0000018197,0.0000018200,0.0000018193,0.0000018170,0.0000018133, +0.0000018090,0.0000018048,0.0000018027,0.0000018037,0.0000018055, +0.0000018075,0.0000018099,0.0000018104,0.0000018091,0.0000018084, +0.0000018090,0.0000018099,0.0000018100,0.0000018080,0.0000018043, +0.0000018012,0.0000018003,0.0000018008,0.0000018001,0.0000017959, +0.0000017931,0.0000017967,0.0000018057,0.0000018152,0.0000018204, +0.0000018175,0.0000018044,0.0000017963,0.0000017947,0.0000017949, +0.0000017947,0.0000017894,0.0000017803,0.0000017731,0.0000017649, +0.0000017569,0.0000017526,0.0000017515,0.0000017582,0.0000017879, +0.0000018267,0.0000018487,0.0000018525,0.0000018452,0.0000018259, +0.0000018163,0.0000018163,0.0000018077,0.0000017928,0.0000017848, +0.0000017726,0.0000017564,0.0000017498,0.0000017489,0.0000017535, +0.0000017585,0.0000017608,0.0000017601,0.0000017573,0.0000017538, +0.0000017512,0.0000017491,0.0000017475,0.0000017520,0.0000017651, +0.0000017747,0.0000017792,0.0000017827,0.0000017814,0.0000017651, +0.0000017599,0.0000017647,0.0000017721,0.0000017732,0.0000017516, +0.0000017456,0.0000017447,0.0000017425,0.0000017449,0.0000017490, +0.0000017536,0.0000017546,0.0000017550,0.0000017526,0.0000017533, +0.0000017549,0.0000017545,0.0000017540,0.0000017595,0.0000017716, +0.0000017817,0.0000017992,0.0000018112,0.0000018134,0.0000018179, +0.0000018244,0.0000018319,0.0000018364,0.0000018366,0.0000018324, +0.0000018253,0.0000018210,0.0000018139,0.0000017936,0.0000017722, +0.0000017678,0.0000017674,0.0000017664,0.0000017658,0.0000017668, +0.0000017682,0.0000017687,0.0000017680,0.0000017654,0.0000017616, +0.0000017596,0.0000017593,0.0000017597,0.0000017593,0.0000017585, +0.0000017561,0.0000017592,0.0000017762,0.0000017927,0.0000017983, +0.0000017968,0.0000017938,0.0000017963,0.0000018037,0.0000018110, +0.0000018171,0.0000018210,0.0000018223,0.0000018237,0.0000018302, +0.0000018427,0.0000018526,0.0000018534,0.0000018547,0.0000018614, +0.0000018613,0.0000018529,0.0000018438,0.0000018289,0.0000018133, +0.0000018131,0.0000018228,0.0000018307,0.0000018365,0.0000018410, +0.0000018400,0.0000018359,0.0000018356,0.0000018398,0.0000018431, +0.0000018441,0.0000018450,0.0000018461,0.0000018449,0.0000018398, +0.0000018322,0.0000018265,0.0000018255,0.0000018298,0.0000018360, +0.0000018386,0.0000018376,0.0000018364,0.0000018383,0.0000018423, +0.0000018444,0.0000018448,0.0000018451,0.0000018462,0.0000018481, +0.0000018503,0.0000018524,0.0000018542,0.0000018560,0.0000018576, +0.0000018582,0.0000018575,0.0000018564,0.0000018554,0.0000018552, +0.0000018555,0.0000018565,0.0000018578,0.0000018590,0.0000018595, +0.0000018593,0.0000018588,0.0000018581,0.0000018573,0.0000018567, +0.0000018566,0.0000018575,0.0000018596,0.0000018619,0.0000018638, +0.0000018658,0.0000018686,0.0000018717,0.0000018750,0.0000018786, +0.0000018815,0.0000018830,0.0000018844,0.0000018850,0.0000018852, +0.0000018849,0.0000018843,0.0000018833,0.0000018815,0.0000018792, +0.0000018763,0.0000018726,0.0000018684,0.0000018637,0.0000018594, +0.0000018560,0.0000018537,0.0000018547,0.0000018555,0.0000018609, +0.0000018691,0.0000018801,0.0000018930,0.0000019072,0.0000019232, +0.0000019400,0.0000019545,0.0000019633,0.0000019625,0.0000019528, +0.0000019437,0.0000019430,0.0000019499,0.0000019555,0.0000019545, +0.0000019535,0.0000019576,0.0000019687,0.0000019795,0.0000019833, +0.0000019826,0.0000019809,0.0000019804,0.0000019819,0.0000019843, +0.0000019856,0.0000019852,0.0000019843,0.0000019850,0.0000019878, +0.0000019911,0.0000019932,0.0000019944,0.0000019947,0.0000019945, +0.0000019943,0.0000019943,0.0000019940,0.0000019925,0.0000019897, +0.0000019866,0.0000019852,0.0000019863,0.0000019895,0.0000019936, +0.0000019970,0.0000019996,0.0000020019,0.0000020025,0.0000020030, +0.0000020044,0.0000020058,0.0000020070,0.0000020082,0.0000020094, +0.0000020099,0.0000020079,0.0000020063,0.0000020046,0.0000020045, +0.0000020046,0.0000020038,0.0000020028,0.0000020019,0.0000020009, +0.0000019998,0.0000019984,0.0000019965,0.0000019943,0.0000019921, +0.0000019900,0.0000019878,0.0000019856,0.0000019840,0.0000019830, +0.0000019819,0.0000019808,0.0000019798,0.0000019786,0.0000019771, +0.0000019754,0.0000019739,0.0000019730,0.0000019723,0.0000019711, +0.0000019697,0.0000019679,0.0000019660,0.0000019639,0.0000019618, +0.0000019592,0.0000019559,0.0000019523,0.0000019487,0.0000019457, +0.0000019436,0.0000019425,0.0000019431,0.0000019439,0.0000019445, +0.0000019445,0.0000019456,0.0000019464,0.0000019470,0.0000019482, +0.0000019475,0.0000019481,0.0000019456,0.0000019422,0.0000019372, +0.0000019307,0.0000019230,0.0000019137,0.0000019050,0.0000018965, +0.0000018889,0.0000018855,0.0000018769,0.0000018712,0.0000018677, +0.0000018648,0.0000018627,0.0000018613,0.0000018599,0.0000018586, +0.0000018576,0.0000018568,0.0000018564,0.0000018567,0.0000018577, +0.0000018589,0.0000018606,0.0000018626,0.0000018647,0.0000018672, +0.0000018710,0.0000018756,0.0000018806,0.0000018855,0.0000018907, +0.0000018968,0.0000019023,0.0000019065,0.0000019117,0.0000019179, +0.0000019249,0.0000019329,0.0000019411,0.0000019499,0.0000019594, +0.0000019695,0.0000019793,0.0000019886,0.0000019970,0.0000020041, +0.0000020097,0.0000020142,0.0000020181,0.0000020204,0.0000020213, +0.0000020205,0.0000020212,0.0000020207,0.0000020208,0.0000020152, +0.0000020069,0.0000019970,0.0000019865,0.0000019760,0.0000019658, +0.0000019558,0.0000019462,0.0000019371,0.0000019281,0.0000019193, +0.0000019113,0.0000019041,0.0000018981,0.0000018930,0.0000018878, +0.0000018827,0.0000018778,0.0000018735,0.0000018696,0.0000018656, +0.0000018619,0.0000018588,0.0000018560,0.0000018540,0.0000018529, +0.0000018524,0.0000018521,0.0000018517,0.0000018508,0.0000018497, +0.0000018484,0.0000018473,0.0000018459,0.0000018446,0.0000018439, +0.0000018436,0.0000018443,0.0000018473,0.0000018531,0.0000018620, +0.0000018744,0.0000018904,0.0000019089,0.0000019289,0.0000019482, +0.0000019648,0.0000019767,0.0000019831,0.0000019851,0.0000019853, +0.0000019862,0.0000019876,0.0000019900,0.0000019946,0.0000020012, +0.0000020065,0.0000020057,0.0000019967,0.0000019812,0.0000019681, +0.0000019635,0.0000019645,0.0000019678,0.0000019706,0.0000019729, +0.0000019747,0.0000019748,0.0000019721,0.0000019735,0.0000019882, +0.0000020016,0.0000020032,0.0000020006,0.0000019881,0.0000019597, +0.0000019314,0.0000019200,0.0000019218,0.0000019269,0.0000019301, +0.0000019346,0.0000019431,0.0000019518,0.0000019647,0.0000019863, +0.0000020104,0.0000020248,0.0000020277,0.0000020244,0.0000020177, +0.0000020102,0.0000020013,0.0000019916,0.0000019819,0.0000019750, +0.0000019710,0.0000019692,0.0000019669,0.0000019645,0.0000019625, +0.0000019607,0.0000019593,0.0000019585,0.0000019593,0.0000019608, +0.0000019629,0.0000019652,0.0000019676,0.0000019698,0.0000019714, +0.0000019721,0.0000019725,0.0000019723,0.0000019716,0.0000019706, +0.0000019691,0.0000019669,0.0000019640,0.0000019604,0.0000019577, +0.0000019572,0.0000019577,0.0000019588,0.0000019601,0.0000019618, +0.0000019638,0.0000019663,0.0000019687,0.0000019710,0.0000019739, +0.0000019775,0.0000019809,0.0000019840,0.0000019880,0.0000019929, +0.0000019982,0.0000020034,0.0000020078,0.0000020114,0.0000020145, +0.0000020158,0.0000020154,0.0000020152,0.0000020150,0.0000020149, +0.0000020159,0.0000020163,0.0000020160,0.0000020151,0.0000020125, +0.0000020085,0.0000020034,0.0000020003,0.0000019984,0.0000019999, +0.0000020049,0.0000020116,0.0000020179,0.0000020226,0.0000020257, +0.0000020285,0.0000020288,0.0000020284,0.0000020270,0.0000020244, +0.0000020217,0.0000020194,0.0000020181,0.0000020175,0.0000020194, +0.0000020239,0.0000020296,0.0000020333,0.0000020335,0.0000020307, +0.0000020254,0.0000020193,0.0000020129,0.0000020064,0.0000020000, +0.0000019941,0.0000019877,0.0000019794,0.0000019697,0.0000019611, +0.0000019550,0.0000019507,0.0000019482,0.0000019473,0.0000019473, +0.0000019488,0.0000019506,0.0000019531,0.0000019558,0.0000019596, +0.0000019636,0.0000019665,0.0000019687,0.0000019702,0.0000019718, +0.0000019727,0.0000019722,0.0000019716,0.0000019718,0.0000019720, +0.0000019715,0.0000019702,0.0000019687,0.0000019673,0.0000019671, +0.0000019670,0.0000019665,0.0000019666,0.0000019671,0.0000019676, +0.0000019683,0.0000019698,0.0000019719,0.0000019737,0.0000019752, +0.0000019760,0.0000019771,0.0000019780,0.0000019785,0.0000019793, +0.0000019811,0.0000019831,0.0000019842,0.0000019844,0.0000019840, +0.0000019830,0.0000019818,0.0000019808,0.0000019792,0.0000019757, +0.0000019716,0.0000019672,0.0000019635,0.0000019614,0.0000019605, +0.0000019594,0.0000019575,0.0000019553,0.0000019545,0.0000019554, +0.0000019572,0.0000019585,0.0000019626,0.0000019694,0.0000019769, +0.0000019821,0.0000019859,0.0000019884,0.0000019889,0.0000019877, +0.0000019868,0.0000019871,0.0000019876,0.0000019883,0.0000019897, +0.0000019906,0.0000019904,0.0000019904,0.0000019904,0.0000019896, +0.0000019884,0.0000019895,0.0000019908,0.0000019914,0.0000019932, +0.0000019952,0.0000019971,0.0000019986,0.0000019990,0.0000019991, +0.0000019986,0.0000019983,0.0000019985,0.0000019984,0.0000019965, +0.0000019934,0.0000019902,0.0000019861,0.0000019825,0.0000019802, +0.0000019796,0.0000019805,0.0000019817,0.0000019822,0.0000019827, +0.0000019835,0.0000019841,0.0000019848,0.0000019862,0.0000019878, +0.0000019895,0.0000019909,0.0000019917,0.0000019921,0.0000019920, +0.0000019915,0.0000019905,0.0000019888,0.0000019860,0.0000019826, +0.0000019782,0.0000019729,0.0000019669,0.0000019602,0.0000019524, +0.0000019438,0.0000019356,0.0000019287,0.0000019239,0.0000019204, +0.0000019175,0.0000019159,0.0000019160,0.0000019153,0.0000019156, +0.0000019183,0.0000019223,0.0000019270,0.0000019310,0.0000019327, +0.0000019319,0.0000019301,0.0000019283,0.0000019263,0.0000019252, +0.0000019246,0.0000019221,0.0000019168,0.0000019101,0.0000019068, +0.0000019070,0.0000019106,0.0000019150,0.0000019217,0.0000019291, +0.0000019360,0.0000019411,0.0000019435,0.0000019422,0.0000019399, +0.0000019369,0.0000019348,0.0000019347,0.0000019356,0.0000019360, +0.0000019353,0.0000019321,0.0000019257,0.0000019173,0.0000019087, +0.0000019014,0.0000018947,0.0000018879,0.0000018834,0.0000018830, +0.0000018862,0.0000018895,0.0000018904,0.0000018879,0.0000018813, +0.0000018723,0.0000018659,0.0000018636,0.0000018648,0.0000018670, +0.0000018709,0.0000018752,0.0000018773,0.0000018757,0.0000018717, +0.0000018661,0.0000018610,0.0000018569,0.0000018536,0.0000018505, +0.0000018481,0.0000018481,0.0000018504,0.0000018561,0.0000018633, +0.0000018701,0.0000018744,0.0000018775,0.0000018804,0.0000018846, +0.0000018894,0.0000018938,0.0000018972,0.0000019008,0.0000019043, +0.0000019055,0.0000019048,0.0000019043,0.0000019048,0.0000019049, +0.0000019034,0.0000019007,0.0000018992,0.0000018989,0.0000018977, +0.0000018958,0.0000018933,0.0000018902,0.0000018885,0.0000018891, +0.0000018922,0.0000018960,0.0000018971,0.0000018947,0.0000018902, +0.0000018881,0.0000018914,0.0000018978,0.0000019014,0.0000019012, +0.0000018975,0.0000018919,0.0000018849,0.0000018785,0.0000018735, +0.0000018691,0.0000018638,0.0000018583,0.0000018530,0.0000018482, +0.0000018458,0.0000018435,0.0000018398,0.0000018335,0.0000018240, +0.0000018136,0.0000018069,0.0000018028,0.0000018010,0.0000017989, +0.0000017946,0.0000017888,0.0000017852,0.0000017856,0.0000017885, +0.0000017927,0.0000017956,0.0000017951,0.0000017924,0.0000017885, +0.0000017840,0.0000017783,0.0000017726,0.0000017673,0.0000017634, +0.0000017611,0.0000017591,0.0000017564,0.0000017522,0.0000017470, +0.0000017429,0.0000017421,0.0000017435,0.0000017452,0.0000017450, +0.0000017424,0.0000017376,0.0000017314,0.0000017256,0.0000017207, +0.0000017177,0.0000017167,0.0000017196,0.0000017248,0.0000017286, +0.0000017289,0.0000017257,0.0000017206,0.0000017174,0.0000017164, +0.0000017158,0.0000017163,0.0000017179,0.0000017198,0.0000017206, +0.0000017193,0.0000017195,0.0000017212,0.0000017189,0.0000017124, +0.0000017085,0.0000017086,0.0000017094,0.0000017101,0.0000017107, +0.0000017144,0.0000017210,0.0000017256,0.0000017267,0.0000017252, +0.0000017203,0.0000017131,0.0000017077,0.0000017067,0.0000017140, +0.0000017329,0.0000017649,0.0000018014,0.0000018293,0.0000018436, +0.0000018479,0.0000018472,0.0000018462,0.0000018442,0.0000018434, +0.0000018438,0.0000018436,0.0000018436,0.0000018445,0.0000018449, +0.0000018447,0.0000018449,0.0000018472,0.0000018511,0.0000018552, +0.0000018575,0.0000018586,0.0000018587,0.0000018591,0.0000018594, +0.0000018593,0.0000018588,0.0000018576,0.0000018550,0.0000018522, +0.0000018507,0.0000018500,0.0000018486,0.0000018474,0.0000018475, +0.0000018487,0.0000018488,0.0000018471,0.0000018456,0.0000018458, +0.0000018467,0.0000018459,0.0000018425,0.0000018387,0.0000018359, +0.0000018331,0.0000018300,0.0000018283,0.0000018298,0.0000018332, +0.0000018374,0.0000018419,0.0000018457,0.0000018470,0.0000018459, +0.0000018417,0.0000018346,0.0000018267,0.0000018195,0.0000018136, +0.0000018101,0.0000018090,0.0000018092,0.0000018113,0.0000018155, +0.0000018180,0.0000018188,0.0000018245,0.0000018331,0.0000018374, +0.0000018391,0.0000018415,0.0000018432,0.0000018465,0.0000018560, +0.0000018560,0.0000018391,0.0000018228,0.0000018181,0.0000018189, +0.0000018195,0.0000018173,0.0000018135,0.0000018132,0.0000018150, +0.0000018165,0.0000018180,0.0000018193,0.0000018200,0.0000018206, +0.0000018200,0.0000018177,0.0000018135,0.0000018079,0.0000018022, +0.0000017992,0.0000018005,0.0000018036,0.0000018058,0.0000018075, +0.0000018081,0.0000018077,0.0000018079,0.0000018084,0.0000018084, +0.0000018079,0.0000018062,0.0000018032,0.0000018002,0.0000017993, +0.0000018003,0.0000018011,0.0000017985,0.0000017945,0.0000017952, +0.0000018027,0.0000018129,0.0000018216,0.0000018241,0.0000018163, +0.0000018003,0.0000017944,0.0000017949,0.0000017951,0.0000017913, +0.0000017828,0.0000017755,0.0000017681,0.0000017586,0.0000017518, +0.0000017506,0.0000017564,0.0000017800,0.0000018165,0.0000018435, +0.0000018517,0.0000018511,0.0000018351,0.0000018166,0.0000018127, +0.0000018114,0.0000017997,0.0000017880,0.0000017840,0.0000017739, +0.0000017580,0.0000017476,0.0000017446,0.0000017461,0.0000017491, +0.0000017514,0.0000017516,0.0000017508,0.0000017510,0.0000017509, +0.0000017477,0.0000017477,0.0000017567,0.0000017684,0.0000017754, +0.0000017783,0.0000017807,0.0000017741,0.0000017599,0.0000017627, +0.0000017675,0.0000017764,0.0000017638,0.0000017467,0.0000017472, +0.0000017438,0.0000017443,0.0000017472,0.0000017531,0.0000017564, +0.0000017594,0.0000017564,0.0000017539,0.0000017553,0.0000017558, +0.0000017545,0.0000017540,0.0000017610,0.0000017728,0.0000017847, +0.0000018042,0.0000018124,0.0000018147,0.0000018199,0.0000018270, +0.0000018335,0.0000018354,0.0000018322,0.0000018248,0.0000018199, +0.0000018163,0.0000018016,0.0000017780,0.0000017671,0.0000017667, +0.0000017668,0.0000017667,0.0000017670,0.0000017670,0.0000017663, +0.0000017662,0.0000017661,0.0000017639,0.0000017606,0.0000017593, +0.0000017592,0.0000017600,0.0000017591,0.0000017565,0.0000017543, +0.0000017596,0.0000017771,0.0000017931,0.0000017971,0.0000017941, +0.0000017936,0.0000017997,0.0000018077,0.0000018139,0.0000018186, +0.0000018215,0.0000018229,0.0000018252,0.0000018332,0.0000018459, +0.0000018528,0.0000018536,0.0000018578,0.0000018625,0.0000018583, +0.0000018496,0.0000018387,0.0000018211,0.0000018117,0.0000018168, +0.0000018258,0.0000018312,0.0000018365,0.0000018406,0.0000018390, +0.0000018343,0.0000018330,0.0000018366,0.0000018406,0.0000018428, +0.0000018446,0.0000018458,0.0000018444,0.0000018378,0.0000018290, +0.0000018248,0.0000018271,0.0000018331,0.0000018355,0.0000018336, +0.0000018324,0.0000018353,0.0000018395,0.0000018409,0.0000018409, +0.0000018411,0.0000018418,0.0000018429,0.0000018443,0.0000018457, +0.0000018466,0.0000018473,0.0000018486,0.0000018500,0.0000018509, +0.0000018513,0.0000018512,0.0000018508,0.0000018502,0.0000018496, +0.0000018494,0.0000018492,0.0000018491,0.0000018487,0.0000018481, +0.0000018473,0.0000018464,0.0000018460,0.0000018462,0.0000018475, +0.0000018494,0.0000018514,0.0000018530,0.0000018544,0.0000018564, +0.0000018590,0.0000018620,0.0000018658,0.0000018702,0.0000018741, +0.0000018777,0.0000018807,0.0000018826,0.0000018836,0.0000018838, +0.0000018830,0.0000018812,0.0000018783,0.0000018750,0.0000018717, +0.0000018692,0.0000018671,0.0000018655,0.0000018635,0.0000018597, +0.0000018567,0.0000018548,0.0000018553,0.0000018573,0.0000018615, +0.0000018688,0.0000018781,0.0000018909,0.0000019085,0.0000019304, +0.0000019507,0.0000019587,0.0000019545,0.0000019491,0.0000019532, +0.0000019645,0.0000019695,0.0000019663,0.0000019605,0.0000019606, +0.0000019711,0.0000019836,0.0000019872,0.0000019850,0.0000019816, +0.0000019796,0.0000019798,0.0000019822,0.0000019844,0.0000019839, +0.0000019826,0.0000019835,0.0000019875,0.0000019914,0.0000019944, +0.0000019971,0.0000019986,0.0000019983,0.0000019976,0.0000019979, +0.0000019995,0.0000020017,0.0000020045,0.0000020078,0.0000020112, +0.0000020145,0.0000020145,0.0000020149,0.0000020154,0.0000020164, +0.0000020161,0.0000020150,0.0000020147,0.0000020143,0.0000020134, +0.0000020125,0.0000020111,0.0000020097,0.0000020080,0.0000020063, +0.0000020042,0.0000020022,0.0000019993,0.0000019968,0.0000019946, +0.0000019922,0.0000019897,0.0000019868,0.0000019829,0.0000019781, +0.0000019729,0.0000019676,0.0000019638,0.0000019608,0.0000019579, +0.0000019554,0.0000019537,0.0000019523,0.0000019509,0.0000019498, +0.0000019491,0.0000019484,0.0000019474,0.0000019479,0.0000019485, +0.0000019489,0.0000019489,0.0000019481,0.0000019474,0.0000019468, +0.0000019464,0.0000019458,0.0000019448,0.0000019438,0.0000019428, +0.0000019418,0.0000019412,0.0000019411,0.0000019418,0.0000019430, +0.0000019446,0.0000019468,0.0000019493,0.0000019520,0.0000019522, +0.0000019514,0.0000019467,0.0000019388,0.0000019265,0.0000019125, +0.0000018979,0.0000018831,0.0000018710,0.0000018603,0.0000018505, +0.0000018443,0.0000018410,0.0000018420,0.0000018450,0.0000018414, +0.0000018420,0.0000018449,0.0000018466,0.0000018484,0.0000018517, +0.0000018543,0.0000018557,0.0000018562,0.0000018562,0.0000018555, +0.0000018547,0.0000018542,0.0000018534,0.0000018522,0.0000018507, +0.0000018488,0.0000018468,0.0000018458,0.0000018453,0.0000018441, +0.0000018425,0.0000018417,0.0000018440,0.0000018476,0.0000018469, +0.0000018447,0.0000018502,0.0000018574,0.0000018663,0.0000018769, +0.0000018891,0.0000019013,0.0000019143,0.0000019275,0.0000019399, +0.0000019514,0.0000019623,0.0000019726,0.0000019824,0.0000019913, +0.0000019989,0.0000020048,0.0000020096,0.0000020140,0.0000020177, +0.0000020198,0.0000020207,0.0000020199,0.0000020193,0.0000020189, +0.0000020198,0.0000020171,0.0000020115,0.0000020048,0.0000019978, +0.0000019898,0.0000019805,0.0000019705,0.0000019605,0.0000019507, +0.0000019413,0.0000019321,0.0000019231,0.0000019147,0.0000019073, +0.0000019003,0.0000018937,0.0000018879,0.0000018829,0.0000018785, +0.0000018751,0.0000018729,0.0000018714,0.0000018704,0.0000018697, +0.0000018690,0.0000018686,0.0000018685,0.0000018688,0.0000018699, +0.0000018720,0.0000018753,0.0000018799,0.0000018869,0.0000018970, +0.0000019101,0.0000019249,0.0000019405,0.0000019555,0.0000019684, +0.0000019782,0.0000019842,0.0000019868,0.0000019870,0.0000019862, +0.0000019859,0.0000019867,0.0000019890,0.0000019920,0.0000019973, +0.0000020036,0.0000020067,0.0000020045,0.0000019959,0.0000019832, +0.0000019707,0.0000019638,0.0000019630,0.0000019651,0.0000019672, +0.0000019693,0.0000019724,0.0000019747,0.0000019733,0.0000019718, +0.0000019818,0.0000019994,0.0000020042,0.0000020038,0.0000019962, +0.0000019707,0.0000019400,0.0000019280,0.0000019299,0.0000019344, +0.0000019371,0.0000019424,0.0000019497,0.0000019599,0.0000019808, +0.0000020067,0.0000020263,0.0000020311,0.0000020266,0.0000020195, +0.0000020115,0.0000020014,0.0000019909,0.0000019815,0.0000019752, +0.0000019714,0.0000019696,0.0000019673,0.0000019656,0.0000019636, +0.0000019625,0.0000019639,0.0000019673,0.0000019718,0.0000019765, +0.0000019812,0.0000019855,0.0000019895,0.0000019930,0.0000019961, +0.0000019986,0.0000020002,0.0000020010,0.0000020016,0.0000020013, +0.0000020006,0.0000019998,0.0000019986,0.0000019967,0.0000019941, +0.0000019913,0.0000019897,0.0000019893,0.0000019897,0.0000019907, +0.0000019920,0.0000019938,0.0000019964,0.0000019994,0.0000020017, +0.0000020038,0.0000020062,0.0000020085,0.0000020104,0.0000020121, +0.0000020142,0.0000020166,0.0000020190,0.0000020207,0.0000020211, +0.0000020210,0.0000020205,0.0000020198,0.0000020191,0.0000020181, +0.0000020178,0.0000020172,0.0000020158,0.0000020132,0.0000020096, +0.0000020054,0.0000020026,0.0000020007,0.0000020022,0.0000020079, +0.0000020155,0.0000020224,0.0000020275,0.0000020294,0.0000020297, +0.0000020290,0.0000020275,0.0000020256,0.0000020235,0.0000020216, +0.0000020207,0.0000020191,0.0000020191,0.0000020200,0.0000020220, +0.0000020260,0.0000020307,0.0000020344,0.0000020359,0.0000020355, +0.0000020336,0.0000020303,0.0000020264,0.0000020221,0.0000020172, +0.0000020112,0.0000020046,0.0000019980,0.0000019920,0.0000019859, +0.0000019802,0.0000019745,0.0000019693,0.0000019664,0.0000019657, +0.0000019664,0.0000019684,0.0000019712,0.0000019743,0.0000019769, +0.0000019796,0.0000019823,0.0000019840,0.0000019854,0.0000019863, +0.0000019866,0.0000019861,0.0000019849,0.0000019838,0.0000019830, +0.0000019826,0.0000019824,0.0000019818,0.0000019813,0.0000019808, +0.0000019806,0.0000019808,0.0000019810,0.0000019814,0.0000019816, +0.0000019812,0.0000019805,0.0000019802,0.0000019802,0.0000019801, +0.0000019798,0.0000019787,0.0000019782,0.0000019774,0.0000019771, +0.0000019784,0.0000019803,0.0000019825,0.0000019843,0.0000019850, +0.0000019851,0.0000019849,0.0000019845,0.0000019842,0.0000019839, +0.0000019821,0.0000019795,0.0000019761,0.0000019714,0.0000019667, +0.0000019641,0.0000019638,0.0000019645,0.0000019647,0.0000019651, +0.0000019658,0.0000019668,0.0000019680,0.0000019719,0.0000019788, +0.0000019855,0.0000019898,0.0000019924,0.0000019933,0.0000019926, +0.0000019906,0.0000019900,0.0000019906,0.0000019909,0.0000019921, +0.0000019938,0.0000019946,0.0000019949,0.0000019953,0.0000019957, +0.0000019960,0.0000019975,0.0000020002,0.0000020034,0.0000020070, +0.0000020098,0.0000020106,0.0000020101,0.0000020094,0.0000020072, +0.0000020052,0.0000020043,0.0000020042,0.0000020042,0.0000020034, +0.0000020013,0.0000019987,0.0000019954,0.0000019912,0.0000019876, +0.0000019855,0.0000019852,0.0000019859,0.0000019866,0.0000019874, +0.0000019888,0.0000019903,0.0000019917,0.0000019931,0.0000019948, +0.0000019970,0.0000019992,0.0000020012,0.0000020033,0.0000020048, +0.0000020056,0.0000020059,0.0000020056,0.0000020042,0.0000020010, +0.0000019960,0.0000019897,0.0000019831,0.0000019771,0.0000019711, +0.0000019649,0.0000019584,0.0000019517,0.0000019450,0.0000019387, +0.0000019323,0.0000019258,0.0000019212,0.0000019181,0.0000019157, +0.0000019161,0.0000019187,0.0000019230,0.0000019277,0.0000019314, +0.0000019334,0.0000019328,0.0000019336,0.0000019344,0.0000019341, +0.0000019333,0.0000019317,0.0000019278,0.0000019211,0.0000019154, +0.0000019128,0.0000019136,0.0000019161,0.0000019196,0.0000019252, +0.0000019318,0.0000019378,0.0000019423,0.0000019436,0.0000019436, +0.0000019419,0.0000019399,0.0000019384,0.0000019376,0.0000019376, +0.0000019381,0.0000019380,0.0000019358,0.0000019308,0.0000019254, +0.0000019200,0.0000019148,0.0000019087,0.0000019007,0.0000018930, +0.0000018887,0.0000018891,0.0000018922,0.0000018954,0.0000018970, +0.0000018930,0.0000018852,0.0000018780,0.0000018725,0.0000018693, +0.0000018684,0.0000018698,0.0000018716,0.0000018725,0.0000018711, +0.0000018675,0.0000018631,0.0000018580,0.0000018538,0.0000018493, +0.0000018448,0.0000018418,0.0000018413,0.0000018436,0.0000018493, +0.0000018561,0.0000018626,0.0000018664,0.0000018691,0.0000018725, +0.0000018775,0.0000018833,0.0000018883,0.0000018936,0.0000019005, +0.0000019067,0.0000019100,0.0000019122,0.0000019132,0.0000019146, +0.0000019147,0.0000019128,0.0000019101,0.0000019083,0.0000019069, +0.0000019044,0.0000019007,0.0000018963,0.0000018929,0.0000018921, +0.0000018929,0.0000018957,0.0000018981,0.0000018987,0.0000018963, +0.0000018923,0.0000018917,0.0000018952,0.0000019004,0.0000019037, +0.0000019044,0.0000019024,0.0000018976,0.0000018924,0.0000018881, +0.0000018844,0.0000018799,0.0000018736,0.0000018659,0.0000018581, +0.0000018522,0.0000018477,0.0000018438,0.0000018400,0.0000018348, +0.0000018266,0.0000018196,0.0000018144,0.0000018114,0.0000018092, +0.0000018058,0.0000018008,0.0000017963,0.0000017948,0.0000017957, +0.0000017980,0.0000018005,0.0000018011,0.0000018005,0.0000017986, +0.0000017955,0.0000017908,0.0000017850,0.0000017786,0.0000017722, +0.0000017674,0.0000017639,0.0000017606,0.0000017571,0.0000017528, +0.0000017481,0.0000017449,0.0000017449,0.0000017473,0.0000017502, +0.0000017516,0.0000017501,0.0000017450,0.0000017374,0.0000017296, +0.0000017225,0.0000017172,0.0000017173,0.0000017206,0.0000017247, +0.0000017273,0.0000017264,0.0000017227,0.0000017198,0.0000017198, +0.0000017198,0.0000017195,0.0000017197,0.0000017209,0.0000017225, +0.0000017225,0.0000017211,0.0000017218,0.0000017220,0.0000017178, +0.0000017120,0.0000017101,0.0000017109,0.0000017119,0.0000017120, +0.0000017134,0.0000017186,0.0000017248,0.0000017284,0.0000017291, +0.0000017255,0.0000017178,0.0000017101,0.0000017070,0.0000017073, +0.0000017108,0.0000017262,0.0000017570,0.0000017922,0.0000018208, +0.0000018380,0.0000018456,0.0000018474,0.0000018473,0.0000018486, +0.0000018494,0.0000018488,0.0000018479,0.0000018471,0.0000018464, +0.0000018453,0.0000018442,0.0000018452,0.0000018484,0.0000018525, +0.0000018560,0.0000018578,0.0000018587,0.0000018599,0.0000018610, +0.0000018611,0.0000018602,0.0000018582,0.0000018550,0.0000018526, +0.0000018521,0.0000018520,0.0000018506,0.0000018484,0.0000018476, +0.0000018485,0.0000018489,0.0000018477,0.0000018463,0.0000018463, +0.0000018469,0.0000018459,0.0000018423,0.0000018388,0.0000018373, +0.0000018357,0.0000018327,0.0000018305,0.0000018309,0.0000018342, +0.0000018385,0.0000018425,0.0000018449,0.0000018450,0.0000018417, +0.0000018346,0.0000018265,0.0000018198,0.0000018139,0.0000018091, +0.0000018072,0.0000018074,0.0000018088,0.0000018116,0.0000018145, +0.0000018154,0.0000018163,0.0000018234,0.0000018332,0.0000018364, +0.0000018382,0.0000018411,0.0000018436,0.0000018459,0.0000018545, +0.0000018546,0.0000018383,0.0000018213,0.0000018170,0.0000018186, +0.0000018192,0.0000018156,0.0000018133,0.0000018147,0.0000018172, +0.0000018184,0.0000018196,0.0000018213,0.0000018227,0.0000018223, +0.0000018192,0.0000018135,0.0000018063,0.0000018000,0.0000017971, +0.0000017986,0.0000018021,0.0000018041,0.0000018048,0.0000018052, +0.0000018060,0.0000018072,0.0000018077,0.0000018071,0.0000018059, +0.0000018042,0.0000018015,0.0000017988,0.0000017978,0.0000017991, +0.0000018011,0.0000018003,0.0000017966,0.0000017950,0.0000017997, +0.0000018096,0.0000018205,0.0000018266,0.0000018259,0.0000018131, +0.0000017968,0.0000017940,0.0000017952,0.0000017927,0.0000017848, +0.0000017767,0.0000017697,0.0000017612,0.0000017530,0.0000017509, +0.0000017570,0.0000017764,0.0000018083,0.0000018372,0.0000018497, +0.0000018512,0.0000018455,0.0000018250,0.0000018103,0.0000018084, +0.0000018041,0.0000017926,0.0000017854,0.0000017843,0.0000017751, +0.0000017593,0.0000017490,0.0000017444,0.0000017437,0.0000017454, +0.0000017474,0.0000017487,0.0000017507,0.0000017523,0.0000017498, +0.0000017464,0.0000017496,0.0000017615,0.0000017710,0.0000017752, +0.0000017774,0.0000017778,0.0000017654,0.0000017599,0.0000017656, +0.0000017730,0.0000017748,0.0000017527,0.0000017481,0.0000017466, +0.0000017446,0.0000017461,0.0000017520,0.0000017577,0.0000017637, +0.0000017622,0.0000017567,0.0000017562,0.0000017569,0.0000017557, +0.0000017541,0.0000017544,0.0000017626,0.0000017739,0.0000017878, +0.0000018066,0.0000018132,0.0000018160,0.0000018222,0.0000018291, +0.0000018329,0.0000018317,0.0000018248,0.0000018183,0.0000018165, +0.0000018095,0.0000017902,0.0000017714,0.0000017668,0.0000017665, +0.0000017668,0.0000017665,0.0000017654,0.0000017646,0.0000017648, +0.0000017659,0.0000017657,0.0000017627,0.0000017605,0.0000017603, +0.0000017626,0.0000017622,0.0000017599,0.0000017554,0.0000017520, +0.0000017590,0.0000017785,0.0000017939,0.0000017950,0.0000017921, +0.0000017961,0.0000018042,0.0000018109,0.0000018155,0.0000018188, +0.0000018214,0.0000018236,0.0000018274,0.0000018368,0.0000018483, +0.0000018538,0.0000018554,0.0000018603,0.0000018618,0.0000018552, +0.0000018463,0.0000018328,0.0000018166,0.0000018130,0.0000018198, +0.0000018267,0.0000018312,0.0000018369,0.0000018404,0.0000018385, +0.0000018330,0.0000018307,0.0000018324,0.0000018368,0.0000018407, +0.0000018434,0.0000018440,0.0000018412,0.0000018329,0.0000018259, +0.0000018259,0.0000018302,0.0000018322,0.0000018297,0.0000018287, +0.0000018323,0.0000018366,0.0000018377,0.0000018373,0.0000018369, +0.0000018371,0.0000018377,0.0000018389,0.0000018405,0.0000018417, +0.0000018420,0.0000018420,0.0000018420,0.0000018421,0.0000018423, +0.0000018426,0.0000018428,0.0000018428,0.0000018425,0.0000018420, +0.0000018413,0.0000018404,0.0000018395,0.0000018385,0.0000018373, +0.0000018361,0.0000018355,0.0000018357,0.0000018372,0.0000018395, +0.0000018421,0.0000018443,0.0000018467,0.0000018498,0.0000018531, +0.0000018558,0.0000018584,0.0000018608,0.0000018629,0.0000018651, +0.0000018673,0.0000018695,0.0000018721,0.0000018748,0.0000018769, +0.0000018772,0.0000018759,0.0000018732,0.0000018696,0.0000018665, +0.0000018648,0.0000018653,0.0000018658,0.0000018646,0.0000018647, +0.0000018629,0.0000018607,0.0000018585,0.0000018567,0.0000018573, +0.0000018569,0.0000018622,0.0000018739,0.0000018980,0.0000019313, +0.0000019528,0.0000019546,0.0000019534,0.0000019615,0.0000019727, +0.0000019769,0.0000019748,0.0000019682,0.0000019671,0.0000019787, +0.0000019900,0.0000019910,0.0000019864,0.0000019819,0.0000019790, +0.0000019793,0.0000019825,0.0000019840,0.0000019822,0.0000019819, +0.0000019853,0.0000019902,0.0000019938,0.0000019974,0.0000020005, +0.0000020017,0.0000020018,0.0000020026,0.0000020048,0.0000020081, +0.0000020114,0.0000020129,0.0000020141,0.0000020140,0.0000020130, +0.0000020117,0.0000020106,0.0000020100,0.0000020090,0.0000020085, +0.0000020074,0.0000020059,0.0000020046,0.0000020043,0.0000020034, +0.0000020016,0.0000019998,0.0000019975,0.0000019941,0.0000019905, +0.0000019858,0.0000019803,0.0000019743,0.0000019689,0.0000019648, +0.0000019606,0.0000019558,0.0000019510,0.0000019466,0.0000019436, +0.0000019420,0.0000019414,0.0000019409,0.0000019408,0.0000019414, +0.0000019424,0.0000019429,0.0000019431,0.0000019441,0.0000019452, +0.0000019461,0.0000019468,0.0000019475,0.0000019479,0.0000019480, +0.0000019478,0.0000019476,0.0000019470,0.0000019460,0.0000019448, +0.0000019437,0.0000019430,0.0000019421,0.0000019409,0.0000019403, +0.0000019405,0.0000019423,0.0000019457,0.0000019493,0.0000019522, +0.0000019528,0.0000019505,0.0000019422,0.0000019270,0.0000019066, +0.0000018838,0.0000018621,0.0000018456,0.0000018342,0.0000018302, +0.0000018326,0.0000018331,0.0000018375,0.0000018435,0.0000018498, +0.0000018569,0.0000018640,0.0000018711,0.0000018770,0.0000018788, +0.0000018804,0.0000018817,0.0000018845,0.0000018869,0.0000018876, +0.0000018881,0.0000018883,0.0000018887,0.0000018894,0.0000018904, +0.0000018915,0.0000018924,0.0000018927,0.0000018918,0.0000018908, +0.0000018909,0.0000018918,0.0000018928,0.0000018892,0.0000018840, +0.0000018770,0.0000018687,0.0000018597,0.0000018510,0.0000018441, +0.0000018396,0.0000018376,0.0000018381,0.0000018424,0.0000018480, +0.0000018523,0.0000018625,0.0000018747,0.0000018886,0.0000019021, +0.0000019158,0.0000019296,0.0000019418,0.0000019528,0.0000019627, +0.0000019726,0.0000019826,0.0000019922,0.0000020001,0.0000020059, +0.0000020103,0.0000020137,0.0000020165,0.0000020189,0.0000020209, +0.0000020218,0.0000020228,0.0000020240,0.0000020253,0.0000020246, +0.0000020200,0.0000020142,0.0000020081,0.0000020012,0.0000019931, +0.0000019844,0.0000019757,0.0000019672,0.0000019589,0.0000019511, +0.0000019441,0.0000019381,0.0000019329,0.0000019288,0.0000019256, +0.0000019232,0.0000019215,0.0000019204,0.0000019202,0.0000019204, +0.0000019211,0.0000019229,0.0000019257,0.0000019296,0.0000019343, +0.0000019402,0.0000019477,0.0000019568,0.0000019665,0.0000019757, +0.0000019830,0.0000019877,0.0000019900,0.0000019901,0.0000019890, +0.0000019880,0.0000019876,0.0000019881,0.0000019897,0.0000019924, +0.0000019958,0.0000019998,0.0000020035,0.0000020044,0.0000020014, +0.0000019966,0.0000019906,0.0000019791,0.0000019667,0.0000019626, +0.0000019635,0.0000019651,0.0000019664,0.0000019695,0.0000019733, +0.0000019738,0.0000019704,0.0000019773,0.0000019969,0.0000020053, +0.0000020053,0.0000020016,0.0000019796,0.0000019485,0.0000019358, +0.0000019376,0.0000019409,0.0000019434,0.0000019489,0.0000019550, +0.0000019715,0.0000019990,0.0000020237,0.0000020331,0.0000020307, +0.0000020228,0.0000020133,0.0000020025,0.0000019913,0.0000019816, +0.0000019753,0.0000019717,0.0000019700,0.0000019680,0.0000019662, +0.0000019657,0.0000019671,0.0000019712,0.0000019788,0.0000019867, +0.0000019947,0.0000020017,0.0000020069,0.0000020096,0.0000020120, +0.0000020148,0.0000020166,0.0000020177,0.0000020187,0.0000020200, +0.0000020210,0.0000020214,0.0000020212,0.0000020209,0.0000020207, +0.0000020202,0.0000020191,0.0000020176,0.0000020167,0.0000020162, +0.0000020164,0.0000020172,0.0000020182,0.0000020192,0.0000020207, +0.0000020226,0.0000020244,0.0000020257,0.0000020269,0.0000020280, +0.0000020282,0.0000020280,0.0000020276,0.0000020278,0.0000020282, +0.0000020286,0.0000020297,0.0000020302,0.0000020299,0.0000020275, +0.0000020253,0.0000020218,0.0000020179,0.0000020132,0.0000020081, +0.0000020040,0.0000020024,0.0000020030,0.0000020057,0.0000020101, +0.0000020163,0.0000020223,0.0000020255,0.0000020271,0.0000020271, +0.0000020258,0.0000020246,0.0000020232,0.0000020222,0.0000020213, +0.0000020217,0.0000020228,0.0000020241,0.0000020260,0.0000020286, +0.0000020318,0.0000020347,0.0000020372,0.0000020392,0.0000020396, +0.0000020389,0.0000020378,0.0000020364,0.0000020346,0.0000020321, +0.0000020290,0.0000020252,0.0000020207,0.0000020156,0.0000020100, +0.0000020040,0.0000019985,0.0000019947,0.0000019918,0.0000019893, +0.0000019883,0.0000019884,0.0000019893,0.0000019904,0.0000019915, +0.0000019927,0.0000019933,0.0000019939,0.0000019944,0.0000019956, +0.0000019970,0.0000019979,0.0000019984,0.0000019980,0.0000019969, +0.0000019963,0.0000019953,0.0000019947,0.0000019951,0.0000019950, +0.0000019944,0.0000019941,0.0000019940,0.0000019943,0.0000019942, +0.0000019940,0.0000019933,0.0000019921,0.0000019902,0.0000019880, +0.0000019859,0.0000019840,0.0000019824,0.0000019801,0.0000019784, +0.0000019772,0.0000019771,0.0000019784,0.0000019801,0.0000019824, +0.0000019850,0.0000019868,0.0000019886,0.0000019894,0.0000019902, +0.0000019905,0.0000019898,0.0000019888,0.0000019869,0.0000019845, +0.0000019798,0.0000019733,0.0000019682,0.0000019677,0.0000019694, +0.0000019709,0.0000019717,0.0000019726,0.0000019734,0.0000019746, +0.0000019771,0.0000019825,0.0000019864,0.0000019889,0.0000019904, +0.0000019914,0.0000019916,0.0000019903,0.0000019909,0.0000019920, +0.0000019928,0.0000019955,0.0000019982,0.0000020010,0.0000020037, +0.0000020059,0.0000020078,0.0000020097,0.0000020118,0.0000020132, +0.0000020143,0.0000020156,0.0000020154,0.0000020145,0.0000020131, +0.0000020123,0.0000020122,0.0000020116,0.0000020108,0.0000020103, +0.0000020093,0.0000020078,0.0000020051,0.0000020023,0.0000019985, +0.0000019943,0.0000019913,0.0000019897,0.0000019896,0.0000019906, +0.0000019918,0.0000019932,0.0000019947,0.0000019957,0.0000019966, +0.0000019977,0.0000019991,0.0000020008,0.0000020028,0.0000020046, +0.0000020055,0.0000020060,0.0000020065,0.0000020070,0.0000020074, +0.0000020070,0.0000020046,0.0000020010,0.0000019969,0.0000019921, +0.0000019864,0.0000019800,0.0000019734,0.0000019672,0.0000019614, +0.0000019562,0.0000019510,0.0000019446,0.0000019381,0.0000019327, +0.0000019272,0.0000019230,0.0000019217,0.0000019226,0.0000019250, +0.0000019284,0.0000019301,0.0000019309,0.0000019311,0.0000019332, +0.0000019353,0.0000019355,0.0000019347,0.0000019322,0.0000019271, +0.0000019212,0.0000019171,0.0000019164,0.0000019176,0.0000019194, +0.0000019224,0.0000019270,0.0000019321,0.0000019367,0.0000019399, +0.0000019417,0.0000019426,0.0000019421,0.0000019425,0.0000019406, +0.0000019386,0.0000019379,0.0000019383,0.0000019382,0.0000019367, +0.0000019336,0.0000019309,0.0000019278,0.0000019246,0.0000019204, +0.0000019136,0.0000019053,0.0000018980,0.0000018943,0.0000018943, +0.0000018972,0.0000018995,0.0000018986,0.0000018947,0.0000018892, +0.0000018833,0.0000018781,0.0000018749,0.0000018736,0.0000018726, +0.0000018710,0.0000018685,0.0000018662,0.0000018630,0.0000018587, +0.0000018539,0.0000018485,0.0000018433,0.0000018403,0.0000018407, +0.0000018422,0.0000018467,0.0000018523,0.0000018584,0.0000018618, +0.0000018650,0.0000018688,0.0000018741,0.0000018792,0.0000018834, +0.0000018887,0.0000018964,0.0000019046,0.0000019106,0.0000019139, +0.0000019166,0.0000019194,0.0000019200,0.0000019180,0.0000019155, +0.0000019138,0.0000019119,0.0000019082,0.0000019030,0.0000018982, +0.0000018958,0.0000018960,0.0000018980,0.0000019000,0.0000019013, +0.0000019012,0.0000018991,0.0000018971,0.0000018974,0.0000019001, +0.0000019031,0.0000019046,0.0000019047,0.0000019025,0.0000018991, +0.0000018961,0.0000018944,0.0000018924,0.0000018887,0.0000018814, +0.0000018718,0.0000018629,0.0000018564,0.0000018504,0.0000018443, +0.0000018400,0.0000018350,0.0000018308,0.0000018264,0.0000018231, +0.0000018207,0.0000018175,0.0000018133,0.0000018088,0.0000018060, +0.0000018059,0.0000018071,0.0000018086,0.0000018094,0.0000018093, +0.0000018080,0.0000018052,0.0000018009,0.0000017953,0.0000017894, +0.0000017828,0.0000017767,0.0000017716,0.0000017669,0.0000017622, +0.0000017577,0.0000017530,0.0000017488,0.0000017467,0.0000017475, +0.0000017506,0.0000017550,0.0000017578,0.0000017571,0.0000017526, +0.0000017457,0.0000017374,0.0000017287,0.0000017232,0.0000017231, +0.0000017249,0.0000017269,0.0000017268,0.0000017239,0.0000017210, +0.0000017209,0.0000017221,0.0000017224,0.0000017221,0.0000017223, +0.0000017234,0.0000017247,0.0000017244,0.0000017228,0.0000017229, +0.0000017221,0.0000017177,0.0000017132,0.0000017133,0.0000017157, +0.0000017171,0.0000017175,0.0000017194,0.0000017250,0.0000017304, +0.0000017331,0.0000017322,0.0000017259,0.0000017165,0.0000017104, +0.0000017082,0.0000017071,0.0000017083,0.0000017228,0.0000017492, +0.0000017800,0.0000018055,0.0000018239,0.0000018356,0.0000018426, +0.0000018481,0.0000018499,0.0000018491,0.0000018481,0.0000018470, +0.0000018460,0.0000018448,0.0000018432,0.0000018432,0.0000018453, +0.0000018491,0.0000018529,0.0000018556,0.0000018572,0.0000018595, +0.0000018615,0.0000018622,0.0000018613,0.0000018587,0.0000018546, +0.0000018525,0.0000018532,0.0000018538,0.0000018526,0.0000018501, +0.0000018486,0.0000018491,0.0000018494,0.0000018485,0.0000018470, +0.0000018466,0.0000018470,0.0000018459,0.0000018422,0.0000018387, +0.0000018376,0.0000018370,0.0000018350,0.0000018326,0.0000018327, +0.0000018359,0.0000018395,0.0000018421,0.0000018429,0.0000018415, +0.0000018350,0.0000018262,0.0000018192,0.0000018137,0.0000018091, +0.0000018067,0.0000018068,0.0000018078,0.0000018090,0.0000018106, +0.0000018121,0.0000018131,0.0000018161,0.0000018253,0.0000018340, +0.0000018354,0.0000018377,0.0000018415,0.0000018447,0.0000018459, +0.0000018531,0.0000018535,0.0000018370,0.0000018203,0.0000018168, +0.0000018183,0.0000018175,0.0000018137,0.0000018131,0.0000018161, +0.0000018185,0.0000018197,0.0000018226,0.0000018250,0.0000018247, +0.0000018208,0.0000018131,0.0000018041,0.0000017979,0.0000017960, +0.0000017973,0.0000018001,0.0000018016,0.0000018020,0.0000018030, +0.0000018047,0.0000018063,0.0000018068,0.0000018056,0.0000018036, +0.0000018018,0.0000017996,0.0000017973,0.0000017963,0.0000017974, +0.0000018001,0.0000018007,0.0000017984,0.0000017957,0.0000017973, +0.0000018055,0.0000018175,0.0000018266,0.0000018289,0.0000018250, +0.0000018100,0.0000017955,0.0000017942,0.0000017938,0.0000017880, +0.0000017791,0.0000017711,0.0000017635,0.0000017557,0.0000017536, +0.0000017603,0.0000017767,0.0000018034,0.0000018309,0.0000018462, +0.0000018499,0.0000018495,0.0000018386,0.0000018170,0.0000018052, +0.0000018027,0.0000017964,0.0000017871,0.0000017844,0.0000017846, +0.0000017760,0.0000017612,0.0000017517,0.0000017469,0.0000017447, +0.0000017460,0.0000017484,0.0000017520,0.0000017549,0.0000017533, +0.0000017473,0.0000017462,0.0000017550,0.0000017658,0.0000017730, +0.0000017748,0.0000017771,0.0000017731,0.0000017606,0.0000017636, +0.0000017688,0.0000017777,0.0000017651,0.0000017491,0.0000017490, +0.0000017459,0.0000017461,0.0000017509,0.0000017587,0.0000017672, +0.0000017684,0.0000017616,0.0000017581,0.0000017587,0.0000017576, +0.0000017556,0.0000017540,0.0000017549,0.0000017640,0.0000017749, +0.0000017892,0.0000018070,0.0000018129,0.0000018165,0.0000018232, +0.0000018287,0.0000018295,0.0000018247,0.0000018175,0.0000018147, +0.0000018130,0.0000018036,0.0000017861,0.0000017718,0.0000017666, +0.0000017654,0.0000017648,0.0000017640,0.0000017643,0.0000017655, +0.0000017672,0.0000017674,0.0000017646,0.0000017615,0.0000017615, +0.0000017651,0.0000017670,0.0000017658,0.0000017609,0.0000017530, +0.0000017503,0.0000017622,0.0000017846,0.0000017945,0.0000017918, +0.0000017927,0.0000018002,0.0000018079,0.0000018123,0.0000018147, +0.0000018173,0.0000018209,0.0000018244,0.0000018303,0.0000018407, +0.0000018510,0.0000018551,0.0000018573,0.0000018612,0.0000018595, +0.0000018519,0.0000018426,0.0000018281,0.0000018146,0.0000018137, +0.0000018213,0.0000018274,0.0000018322,0.0000018380,0.0000018404, +0.0000018385,0.0000018325,0.0000018280,0.0000018288,0.0000018337, +0.0000018389,0.0000018418,0.0000018414,0.0000018358,0.0000018278, +0.0000018253,0.0000018279,0.0000018288,0.0000018268,0.0000018266, +0.0000018301,0.0000018340,0.0000018352,0.0000018348,0.0000018340, +0.0000018338,0.0000018342,0.0000018360,0.0000018389,0.0000018415, +0.0000018429,0.0000018429,0.0000018424,0.0000018415,0.0000018410, +0.0000018398,0.0000018390,0.0000018384,0.0000018379,0.0000018370, +0.0000018356,0.0000018341,0.0000018328,0.0000018313,0.0000018297, +0.0000018278,0.0000018261,0.0000018255,0.0000018259,0.0000018276, +0.0000018296,0.0000018312,0.0000018330,0.0000018357,0.0000018392, +0.0000018434,0.0000018480,0.0000018526,0.0000018563,0.0000018588, +0.0000018599,0.0000018603,0.0000018606,0.0000018612,0.0000018624, +0.0000018645,0.0000018661,0.0000018663,0.0000018652,0.0000018635, +0.0000018622,0.0000018623,0.0000018629,0.0000018639,0.0000018659, +0.0000018673,0.0000018669,0.0000018656,0.0000018621,0.0000018578, +0.0000018535,0.0000018516,0.0000018511,0.0000018703,0.0000019138, +0.0000019472,0.0000019548,0.0000019580,0.0000019693,0.0000019783, +0.0000019819,0.0000019795,0.0000019728,0.0000019756,0.0000019887, +0.0000019945,0.0000019915,0.0000019860,0.0000019816,0.0000019796, +0.0000019819,0.0000019846,0.0000019832,0.0000019820,0.0000019855, +0.0000019910,0.0000019949,0.0000019983,0.0000020015,0.0000020041, +0.0000020064,0.0000020088,0.0000020112,0.0000020122,0.0000020122, +0.0000020107,0.0000020090,0.0000020078,0.0000020076,0.0000020064, +0.0000020041,0.0000020025,0.0000019993,0.0000019963,0.0000019937, +0.0000019911,0.0000019886,0.0000019870,0.0000019846,0.0000019814, +0.0000019778,0.0000019739,0.0000019697,0.0000019656,0.0000019607, +0.0000019558,0.0000019519,0.0000019499,0.0000019482,0.0000019470, +0.0000019458,0.0000019453,0.0000019457,0.0000019461,0.0000019460, +0.0000019450,0.0000019441,0.0000019436,0.0000019435,0.0000019434, +0.0000019436,0.0000019434,0.0000019428,0.0000019425,0.0000019420, +0.0000019410,0.0000019411,0.0000019418,0.0000019420,0.0000019418, +0.0000019413,0.0000019407,0.0000019397,0.0000019389,0.0000019385, +0.0000019386,0.0000019390,0.0000019397,0.0000019409,0.0000019437, +0.0000019479,0.0000019520,0.0000019537,0.0000019517,0.0000019424, +0.0000019243,0.0000018992,0.0000018708,0.0000018450,0.0000018273, +0.0000018186,0.0000018197,0.0000018257,0.0000018365,0.0000018463, +0.0000018570,0.0000018662,0.0000018688,0.0000018719,0.0000018750, +0.0000018768,0.0000018771,0.0000018768,0.0000018763,0.0000018754, +0.0000018741,0.0000018723,0.0000018700,0.0000018678,0.0000018660, +0.0000018661,0.0000018666,0.0000018680,0.0000018701,0.0000018727, +0.0000018751,0.0000018772,0.0000018791,0.0000018822,0.0000018855, +0.0000018886,0.0000018914,0.0000018940,0.0000018959,0.0000018963, +0.0000018950,0.0000018918,0.0000018874,0.0000018824,0.0000018777, +0.0000018760,0.0000018734,0.0000018692,0.0000018649,0.0000018593, +0.0000018527,0.0000018481,0.0000018483,0.0000018528,0.0000018544, +0.0000018661,0.0000018780,0.0000018905,0.0000019042,0.0000019185, +0.0000019325,0.0000019458,0.0000019576,0.0000019684,0.0000019782, +0.0000019870,0.0000019950,0.0000020018,0.0000020075,0.0000020131, +0.0000020178,0.0000020214,0.0000020245,0.0000020269,0.0000020270, +0.0000020271,0.0000020279,0.0000020280,0.0000020269,0.0000020232, +0.0000020193,0.0000020151,0.0000020106,0.0000020057,0.0000020012, +0.0000019969,0.0000019930,0.0000019898,0.0000019869,0.0000019843, +0.0000019820,0.0000019804,0.0000019794,0.0000019785,0.0000019778, +0.0000019778,0.0000019781,0.0000019787,0.0000019796,0.0000019814, +0.0000019841,0.0000019877,0.0000019915,0.0000019944,0.0000019954, +0.0000019946,0.0000019926,0.0000019907,0.0000019897,0.0000019899, +0.0000019917,0.0000019939,0.0000019964,0.0000019989,0.0000020008, +0.0000020015,0.0000020005,0.0000019980,0.0000019967,0.0000019967, +0.0000019882,0.0000019712,0.0000019630,0.0000019631,0.0000019645, +0.0000019655,0.0000019681,0.0000019723,0.0000019734,0.0000019696, +0.0000019740,0.0000019953,0.0000020060,0.0000020063,0.0000020046, +0.0000019863,0.0000019567,0.0000019436,0.0000019445,0.0000019467, +0.0000019491,0.0000019536,0.0000019627,0.0000019873,0.0000020156, +0.0000020328,0.0000020333,0.0000020272,0.0000020168,0.0000020047, +0.0000019929,0.0000019824,0.0000019757,0.0000019722,0.0000019702, +0.0000019691,0.0000019681,0.0000019689,0.0000019728,0.0000019810, +0.0000019905,0.0000020003,0.0000020092,0.0000020136,0.0000020168, +0.0000020199,0.0000020187,0.0000020174,0.0000020184,0.0000020189, +0.0000020184,0.0000020178,0.0000020183,0.0000020192,0.0000020200, +0.0000020206,0.0000020212,0.0000020216,0.0000020219,0.0000020220, +0.0000020218,0.0000020219,0.0000020224,0.0000020232,0.0000020244, +0.0000020258,0.0000020269,0.0000020280,0.0000020293,0.0000020305, +0.0000020315,0.0000020323,0.0000020326,0.0000020323,0.0000020321, +0.0000020325,0.0000020333,0.0000020342,0.0000020342,0.0000020337, +0.0000020327,0.0000020300,0.0000020258,0.0000020201,0.0000020144, +0.0000020087,0.0000020037,0.0000020014,0.0000020025,0.0000020066, +0.0000020121,0.0000020171,0.0000020205,0.0000020232,0.0000020253, +0.0000020263,0.0000020267,0.0000020269,0.0000020273,0.0000020278, +0.0000020281,0.0000020290,0.0000020309,0.0000020337,0.0000020363, +0.0000020383,0.0000020402,0.0000020419,0.0000020432,0.0000020428, +0.0000020422,0.0000020419,0.0000020413,0.0000020404,0.0000020399, +0.0000020392,0.0000020382,0.0000020365,0.0000020339,0.0000020306, +0.0000020269,0.0000020234,0.0000020202,0.0000020165,0.0000020125, +0.0000020087,0.0000020058,0.0000020037,0.0000020023,0.0000020017, +0.0000020012,0.0000020006,0.0000020001,0.0000019996,0.0000019987, +0.0000019980,0.0000019976,0.0000019982,0.0000019992,0.0000020004, +0.0000020015,0.0000020027,0.0000020028,0.0000020027,0.0000020025, +0.0000020023,0.0000020028,0.0000020029,0.0000020027,0.0000020031, +0.0000020039,0.0000020044,0.0000020046,0.0000020044,0.0000020038, +0.0000020028,0.0000020012,0.0000019992,0.0000019969,0.0000019946, +0.0000019927,0.0000019902,0.0000019881,0.0000019867,0.0000019865, +0.0000019867,0.0000019874,0.0000019890,0.0000019908,0.0000019928, +0.0000019945,0.0000019958,0.0000019973,0.0000019977,0.0000019977, +0.0000019973,0.0000019960,0.0000019936,0.0000019883,0.0000019805, +0.0000019746,0.0000019722,0.0000019724,0.0000019728,0.0000019731, +0.0000019735,0.0000019734,0.0000019741,0.0000019755,0.0000019792, +0.0000019822,0.0000019849,0.0000019886,0.0000019913,0.0000019936, +0.0000019952,0.0000019980,0.0000020001,0.0000020035,0.0000020076, +0.0000020112,0.0000020144,0.0000020166,0.0000020174,0.0000020173, +0.0000020168,0.0000020163,0.0000020162,0.0000020167,0.0000020188, +0.0000020204,0.0000020222,0.0000020234,0.0000020251,0.0000020268, +0.0000020268,0.0000020249,0.0000020224,0.0000020197,0.0000020157, +0.0000020110,0.0000020064,0.0000020014,0.0000019968,0.0000019938, +0.0000019923,0.0000019930,0.0000019939,0.0000019952,0.0000019964, +0.0000019968,0.0000019971,0.0000019979,0.0000019987,0.0000020001, +0.0000020021,0.0000020037,0.0000020044,0.0000020045,0.0000020039, +0.0000020028,0.0000020012,0.0000019993,0.0000019974,0.0000019960, +0.0000019948,0.0000019930,0.0000019905,0.0000019867,0.0000019823, +0.0000019768,0.0000019708,0.0000019651,0.0000019600,0.0000019548, +0.0000019498,0.0000019457,0.0000019409,0.0000019361,0.0000019330, +0.0000019315,0.0000019313,0.0000019319,0.0000019325,0.0000019321, +0.0000019307,0.0000019310,0.0000019324,0.0000019338,0.0000019334, +0.0000019314,0.0000019276,0.0000019226,0.0000019186,0.0000019161, +0.0000019160,0.0000019177,0.0000019195,0.0000019222,0.0000019254, +0.0000019284,0.0000019312,0.0000019325,0.0000019347,0.0000019368, +0.0000019394,0.0000019398,0.0000019380,0.0000019358,0.0000019350, +0.0000019355,0.0000019360,0.0000019358,0.0000019349,0.0000019340, +0.0000019315,0.0000019287,0.0000019260,0.0000019218,0.0000019156, +0.0000019086,0.0000019027,0.0000018993,0.0000018992,0.0000019000, +0.0000018999,0.0000018986,0.0000018956,0.0000018914,0.0000018867, +0.0000018824,0.0000018792,0.0000018758,0.0000018720,0.0000018692, +0.0000018687,0.0000018676,0.0000018653,0.0000018610,0.0000018553, +0.0000018494,0.0000018459,0.0000018445,0.0000018451,0.0000018484, +0.0000018518,0.0000018569,0.0000018599,0.0000018636,0.0000018684, +0.0000018744,0.0000018795,0.0000018834,0.0000018878,0.0000018943, +0.0000019015,0.0000019071,0.0000019119,0.0000019171,0.0000019209, +0.0000019217,0.0000019202,0.0000019186,0.0000019175,0.0000019150, +0.0000019107,0.0000019050,0.0000019001,0.0000018985,0.0000019000, +0.0000019025,0.0000019037,0.0000019036,0.0000019028,0.0000019023, +0.0000019033,0.0000019051,0.0000019062,0.0000019061,0.0000019049, +0.0000019028,0.0000019000,0.0000018977,0.0000018968,0.0000018973, +0.0000018970,0.0000018946,0.0000018869,0.0000018765,0.0000018673, +0.0000018605,0.0000018530,0.0000018457,0.0000018399,0.0000018371, +0.0000018350,0.0000018331,0.0000018318,0.0000018295,0.0000018259, +0.0000018220,0.0000018183,0.0000018166,0.0000018165,0.0000018175, +0.0000018186,0.0000018195,0.0000018194,0.0000018175,0.0000018132, +0.0000018062,0.0000017984,0.0000017913,0.0000017849,0.0000017800, +0.0000017756,0.0000017705,0.0000017647,0.0000017587,0.0000017531, +0.0000017491,0.0000017481,0.0000017498,0.0000017537,0.0000017586, +0.0000017619,0.0000017623,0.0000017598,0.0000017547,0.0000017472, +0.0000017395,0.0000017353,0.0000017342,0.0000017345,0.0000017336, +0.0000017303,0.0000017264,0.0000017247,0.0000017254,0.0000017263, +0.0000017262,0.0000017256,0.0000017253,0.0000017259,0.0000017266, +0.0000017251,0.0000017235,0.0000017239,0.0000017228,0.0000017187, +0.0000017161,0.0000017179,0.0000017219,0.0000017244,0.0000017244, +0.0000017265,0.0000017320,0.0000017368,0.0000017379,0.0000017349, +0.0000017257,0.0000017172,0.0000017135,0.0000017103,0.0000017077, +0.0000017103,0.0000017204,0.0000017384,0.0000017578,0.0000017766, +0.0000017931,0.0000018080,0.0000018215,0.0000018299,0.0000018347, +0.0000018372,0.0000018379,0.0000018385,0.0000018394,0.0000018395, +0.0000018401,0.0000018422,0.0000018461,0.0000018502,0.0000018534, +0.0000018558,0.0000018590,0.0000018619,0.0000018626,0.0000018617, +0.0000018585,0.0000018542,0.0000018531,0.0000018550,0.0000018559, +0.0000018547,0.0000018519,0.0000018501,0.0000018505,0.0000018508, +0.0000018498,0.0000018474,0.0000018466,0.0000018471,0.0000018462, +0.0000018424,0.0000018388,0.0000018381,0.0000018381,0.0000018365, +0.0000018342,0.0000018345,0.0000018372,0.0000018396,0.0000018413, +0.0000018408,0.0000018354,0.0000018265,0.0000018190,0.0000018138, +0.0000018096,0.0000018074,0.0000018065,0.0000018064,0.0000018066, +0.0000018074,0.0000018089,0.0000018106,0.0000018133,0.0000018192, +0.0000018289,0.0000018340,0.0000018344,0.0000018380,0.0000018432, +0.0000018460,0.0000018454,0.0000018521,0.0000018530,0.0000018353, +0.0000018197,0.0000018165,0.0000018174,0.0000018149,0.0000018114, +0.0000018133,0.0000018175,0.0000018198,0.0000018230,0.0000018264, +0.0000018266,0.0000018223,0.0000018135,0.0000018028,0.0000017957, +0.0000017945,0.0000017959,0.0000017979,0.0000017991,0.0000017998, +0.0000018016,0.0000018039,0.0000018051,0.0000018050,0.0000018036, +0.0000018015,0.0000017998,0.0000017985,0.0000017971,0.0000017958, +0.0000017963,0.0000017988,0.0000018005,0.0000017997,0.0000017971, +0.0000017962,0.0000018014,0.0000018126,0.0000018239,0.0000018296, +0.0000018294,0.0000018235,0.0000018095,0.0000017963,0.0000017933, +0.0000017912,0.0000017853,0.0000017763,0.0000017679,0.0000017615, +0.0000017602,0.0000017664,0.0000017803,0.0000018026,0.0000018265, +0.0000018419,0.0000018478,0.0000018487,0.0000018459,0.0000018314, +0.0000018110,0.0000018012,0.0000017963,0.0000017893,0.0000017835, +0.0000017837,0.0000017850,0.0000017767,0.0000017628,0.0000017554, +0.0000017518,0.0000017494,0.0000017502,0.0000017540,0.0000017583, +0.0000017585,0.0000017512,0.0000017452,0.0000017499,0.0000017604, +0.0000017707,0.0000017739,0.0000017750,0.0000017760,0.0000017669, +0.0000017622,0.0000017667,0.0000017745,0.0000017768,0.0000017542, +0.0000017502,0.0000017485,0.0000017470,0.0000017502,0.0000017591, +0.0000017688,0.0000017735,0.0000017679,0.0000017608,0.0000017601, +0.0000017607,0.0000017584,0.0000017556,0.0000017540,0.0000017552, +0.0000017641,0.0000017745,0.0000017888,0.0000018056,0.0000018117, +0.0000018149,0.0000018207,0.0000018239,0.0000018226,0.0000018173, +0.0000018132,0.0000018126,0.0000018104,0.0000018021,0.0000017892, +0.0000017774,0.0000017700,0.0000017661,0.0000017648,0.0000017656, +0.0000017686,0.0000017707,0.0000017701,0.0000017663,0.0000017622, +0.0000017622,0.0000017671,0.0000017712,0.0000017718,0.0000017684, +0.0000017597,0.0000017510,0.0000017518,0.0000017716,0.0000017910, +0.0000017923,0.0000017906,0.0000017959,0.0000018041,0.0000018091, +0.0000018106,0.0000018117,0.0000018153,0.0000018205,0.0000018258, +0.0000018334,0.0000018445,0.0000018533,0.0000018560,0.0000018582, +0.0000018602,0.0000018566,0.0000018493,0.0000018397,0.0000018248, +0.0000018127,0.0000018147,0.0000018230,0.0000018287,0.0000018336, +0.0000018387,0.0000018404,0.0000018383,0.0000018315,0.0000018256, +0.0000018259,0.0000018316,0.0000018376,0.0000018395,0.0000018366, +0.0000018298,0.0000018269,0.0000018275,0.0000018272,0.0000018251, +0.0000018257,0.0000018294,0.0000018325,0.0000018335,0.0000018336, +0.0000018330,0.0000018326,0.0000018341,0.0000018377,0.0000018422, +0.0000018456,0.0000018472,0.0000018473,0.0000018471,0.0000018465, +0.0000018453,0.0000018439,0.0000018424,0.0000018406,0.0000018383, +0.0000018363,0.0000018328,0.0000018284,0.0000018245,0.0000018212, +0.0000018188,0.0000018172,0.0000018160,0.0000018153,0.0000018154, +0.0000018166,0.0000018180,0.0000018190,0.0000018200,0.0000018215, +0.0000018235,0.0000018255,0.0000018280,0.0000018314,0.0000018358, +0.0000018410,0.0000018461,0.0000018502,0.0000018528,0.0000018536, +0.0000018537,0.0000018537,0.0000018541,0.0000018552,0.0000018563, +0.0000018574,0.0000018580,0.0000018588,0.0000018596,0.0000018604, +0.0000018624,0.0000018642,0.0000018650,0.0000018648,0.0000018635, +0.0000018611,0.0000018570,0.0000018502,0.0000018460,0.0000018564, +0.0000019075,0.0000019475,0.0000019573,0.0000019660,0.0000019786, +0.0000019849,0.0000019854,0.0000019800,0.0000019774,0.0000019874, +0.0000019960,0.0000019951,0.0000019901,0.0000019856,0.0000019831, +0.0000019844,0.0000019863,0.0000019844,0.0000019836,0.0000019878, +0.0000019934,0.0000019969,0.0000020000,0.0000020030,0.0000020056, +0.0000020080,0.0000020098,0.0000020101,0.0000020090,0.0000020069, +0.0000020058,0.0000020054,0.0000020040,0.0000020012,0.0000019953, +0.0000019879,0.0000019822,0.0000019771,0.0000019725,0.0000019690, +0.0000019667,0.0000019638,0.0000019630,0.0000019618,0.0000019619, +0.0000019603,0.0000019598,0.0000019591,0.0000019583,0.0000019572, +0.0000019562,0.0000019561,0.0000019563,0.0000019571,0.0000019582, +0.0000019594,0.0000019603,0.0000019610,0.0000019608,0.0000019605, +0.0000019595,0.0000019580,0.0000019568,0.0000019561,0.0000019554, +0.0000019546,0.0000019537,0.0000019523,0.0000019502,0.0000019471, +0.0000019436,0.0000019407,0.0000019393,0.0000019389,0.0000019389, +0.0000019387,0.0000019379,0.0000019366,0.0000019355,0.0000019354, +0.0000019358,0.0000019369,0.0000019395,0.0000019439,0.0000019489, +0.0000019528,0.0000019540,0.0000019503,0.0000019368,0.0000019121, +0.0000018798,0.0000018475,0.0000018234,0.0000018116,0.0000018138, +0.0000018218,0.0000018338,0.0000018452,0.0000018536,0.0000018583, +0.0000018633,0.0000018655,0.0000018668,0.0000018674,0.0000018674, +0.0000018671,0.0000018663,0.0000018652,0.0000018641,0.0000018624, +0.0000018608,0.0000018597,0.0000018580,0.0000018562,0.0000018563, +0.0000018579,0.0000018599,0.0000018625,0.0000018652,0.0000018681, +0.0000018707,0.0000018726,0.0000018742,0.0000018762,0.0000018783, +0.0000018802,0.0000018816,0.0000018828,0.0000018838,0.0000018844, +0.0000018846,0.0000018845,0.0000018833,0.0000018803,0.0000018770, +0.0000018757,0.0000018776,0.0000018856,0.0000018953,0.0000018998, +0.0000019016,0.0000018918,0.0000018763,0.0000018605,0.0000018470, +0.0000018413,0.0000018405,0.0000018398,0.0000018471,0.0000018582, +0.0000018710,0.0000018858,0.0000019015,0.0000019163,0.0000019298, +0.0000019422,0.0000019534,0.0000019640,0.0000019741,0.0000019842, +0.0000019935,0.0000020018,0.0000020092,0.0000020153,0.0000020199, +0.0000020235,0.0000020260,0.0000020271,0.0000020270,0.0000020263, +0.0000020259,0.0000020257,0.0000020249,0.0000020253,0.0000020244, +0.0000020227,0.0000020211,0.0000020197,0.0000020179,0.0000020159, +0.0000020137,0.0000020121,0.0000020106,0.0000020088,0.0000020067, +0.0000020045,0.0000020025,0.0000020005,0.0000019989,0.0000019985, +0.0000019995,0.0000020012,0.0000020021,0.0000020009,0.0000019983, +0.0000019947,0.0000019921,0.0000019910,0.0000019917,0.0000019939, +0.0000019959,0.0000019973,0.0000019986,0.0000019996,0.0000019991, +0.0000019977,0.0000019960,0.0000019966,0.0000020003,0.0000019956, +0.0000019751,0.0000019637,0.0000019636,0.0000019649,0.0000019657, +0.0000019689,0.0000019725,0.0000019729,0.0000019689,0.0000019722, +0.0000019950,0.0000020070,0.0000020072,0.0000020061,0.0000019909, +0.0000019641,0.0000019511,0.0000019512,0.0000019521,0.0000019538, +0.0000019581,0.0000019743,0.0000020039,0.0000020280,0.0000020349, +0.0000020309,0.0000020212,0.0000020088,0.0000019957,0.0000019847, +0.0000019772,0.0000019732,0.0000019708,0.0000019700,0.0000019695, +0.0000019733,0.0000019800,0.0000019905,0.0000020007,0.0000020107, +0.0000020161,0.0000020183,0.0000020179,0.0000020162,0.0000020144, +0.0000020131,0.0000020122,0.0000020113,0.0000020111,0.0000020110, +0.0000020108,0.0000020111,0.0000020116,0.0000020123,0.0000020131, +0.0000020138,0.0000020147,0.0000020153,0.0000020159,0.0000020162, +0.0000020165,0.0000020173,0.0000020187,0.0000020200,0.0000020214, +0.0000020228,0.0000020237,0.0000020243,0.0000020250,0.0000020256, +0.0000020259,0.0000020260,0.0000020257,0.0000020253,0.0000020249, +0.0000020241,0.0000020230,0.0000020219,0.0000020204,0.0000020180, +0.0000020150,0.0000020115,0.0000020075,0.0000020060,0.0000020043, +0.0000020044,0.0000020080,0.0000020138,0.0000020188,0.0000020218, +0.0000020225,0.0000020234,0.0000020262,0.0000020309,0.0000020355, +0.0000020387,0.0000020404,0.0000020414,0.0000020420,0.0000020424, +0.0000020428,0.0000020438,0.0000020454,0.0000020453,0.0000020449, +0.0000020448,0.0000020441,0.0000020428,0.0000020413,0.0000020402, +0.0000020398,0.0000020398,0.0000020401,0.0000020402,0.0000020400, +0.0000020394,0.0000020381,0.0000020363,0.0000020339,0.0000020313, +0.0000020289,0.0000020269,0.0000020252,0.0000020232,0.0000020213, +0.0000020193,0.0000020172,0.0000020151,0.0000020134,0.0000020117, +0.0000020099,0.0000020085,0.0000020069,0.0000020054,0.0000020048, +0.0000020048,0.0000020055,0.0000020066,0.0000020081,0.0000020099, +0.0000020120,0.0000020135,0.0000020139,0.0000020144,0.0000020147, +0.0000020159,0.0000020170,0.0000020180,0.0000020192,0.0000020206, +0.0000020213,0.0000020223,0.0000020229,0.0000020226,0.0000020220, +0.0000020209,0.0000020194,0.0000020172,0.0000020147,0.0000020120, +0.0000020094,0.0000020069,0.0000020052,0.0000020040,0.0000020027, +0.0000020012,0.0000020003,0.0000019989,0.0000019983,0.0000019978, +0.0000019985,0.0000019996,0.0000020004,0.0000020021,0.0000020032, +0.0000020029,0.0000020000,0.0000019943,0.0000019873,0.0000019817, +0.0000019776,0.0000019748,0.0000019737,0.0000019730,0.0000019724, +0.0000019721,0.0000019721,0.0000019747,0.0000019801,0.0000019850, +0.0000019908,0.0000019970,0.0000020014,0.0000020058,0.0000020090, +0.0000020112,0.0000020131,0.0000020167,0.0000020199,0.0000020207, +0.0000020208,0.0000020201,0.0000020186,0.0000020181,0.0000020196, +0.0000020220,0.0000020255,0.0000020288,0.0000020332,0.0000020361, +0.0000020386,0.0000020404,0.0000020418,0.0000020418,0.0000020402, +0.0000020373,0.0000020338,0.0000020291,0.0000020236,0.0000020181, +0.0000020116,0.0000020053,0.0000019999,0.0000019959,0.0000019935, +0.0000019928,0.0000019924,0.0000019926,0.0000019923,0.0000019928, +0.0000019937,0.0000019945,0.0000019956,0.0000019973,0.0000019986, +0.0000019992,0.0000019998,0.0000019992,0.0000019973,0.0000019952, +0.0000019931,0.0000019911,0.0000019894,0.0000019876,0.0000019855, +0.0000019838,0.0000019821,0.0000019800,0.0000019775,0.0000019740, +0.0000019693,0.0000019640,0.0000019586,0.0000019538,0.0000019497, +0.0000019458,0.0000019425,0.0000019403,0.0000019392,0.0000019392, +0.0000019401,0.0000019404,0.0000019395,0.0000019369,0.0000019339, +0.0000019330,0.0000019333,0.0000019330,0.0000019311,0.0000019278, +0.0000019237,0.0000019203,0.0000019175,0.0000019160,0.0000019167, +0.0000019180,0.0000019200,0.0000019222,0.0000019233,0.0000019242, +0.0000019249,0.0000019249,0.0000019260,0.0000019291,0.0000019326, +0.0000019331,0.0000019314,0.0000019287,0.0000019269,0.0000019273, +0.0000019292,0.0000019317,0.0000019336,0.0000019340,0.0000019318, +0.0000019290,0.0000019266,0.0000019239,0.0000019205,0.0000019164, +0.0000019116,0.0000019069,0.0000019041,0.0000019026,0.0000019011, +0.0000018996,0.0000018979,0.0000018954,0.0000018917,0.0000018874, +0.0000018833,0.0000018784,0.0000018734,0.0000018710,0.0000018717, +0.0000018729,0.0000018729,0.0000018708,0.0000018667,0.0000018625, +0.0000018599,0.0000018577,0.0000018558,0.0000018552,0.0000018568, +0.0000018586,0.0000018608,0.0000018639,0.0000018697,0.0000018766, +0.0000018833,0.0000018885,0.0000018925,0.0000018972,0.0000019006, +0.0000019044,0.0000019099,0.0000019165,0.0000019203,0.0000019210, +0.0000019201,0.0000019197,0.0000019190,0.0000019172,0.0000019138, +0.0000019079,0.0000019028,0.0000019015,0.0000019033,0.0000019052, +0.0000019050,0.0000019037,0.0000019030,0.0000019046,0.0000019095, +0.0000019121,0.0000019120,0.0000019092,0.0000019048,0.0000019002, +0.0000018963,0.0000018949,0.0000018954,0.0000018970,0.0000018985, +0.0000018975,0.0000018913,0.0000018809,0.0000018716,0.0000018639, +0.0000018558,0.0000018477,0.0000018419,0.0000018392,0.0000018383, +0.0000018389,0.0000018389,0.0000018371,0.0000018345,0.0000018312, +0.0000018283,0.0000018265,0.0000018259,0.0000018262,0.0000018273, +0.0000018285,0.0000018293,0.0000018281,0.0000018220,0.0000018122, +0.0000018016,0.0000017924,0.0000017861,0.0000017824,0.0000017789, +0.0000017739,0.0000017675,0.0000017607,0.0000017546,0.0000017507, +0.0000017496,0.0000017512,0.0000017549,0.0000017594,0.0000017632, +0.0000017653,0.0000017648,0.0000017620,0.0000017572,0.0000017525, +0.0000017497,0.0000017485,0.0000017466,0.0000017429,0.0000017383, +0.0000017347,0.0000017335,0.0000017336,0.0000017334,0.0000017327, +0.0000017313,0.0000017300,0.0000017295,0.0000017282,0.0000017257, +0.0000017248,0.0000017252,0.0000017239,0.0000017208,0.0000017197, +0.0000017232,0.0000017287,0.0000017307,0.0000017305,0.0000017337, +0.0000017392,0.0000017421,0.0000017417,0.0000017355,0.0000017261, +0.0000017202,0.0000017182,0.0000017144,0.0000017122,0.0000017137, +0.0000017170,0.0000017228,0.0000017305,0.0000017393,0.0000017512, +0.0000017660,0.0000017782,0.0000017885,0.0000017978,0.0000018048, +0.0000018108,0.0000018169,0.0000018219,0.0000018262,0.0000018310, +0.0000018363,0.0000018413,0.0000018458,0.0000018498,0.0000018541, +0.0000018583,0.0000018607,0.0000018603,0.0000018574,0.0000018537, +0.0000018541,0.0000018571,0.0000018578,0.0000018563,0.0000018534, +0.0000018518,0.0000018525,0.0000018529,0.0000018507,0.0000018472, +0.0000018465,0.0000018472,0.0000018462,0.0000018425,0.0000018394, +0.0000018391,0.0000018391,0.0000018369,0.0000018348,0.0000018353, +0.0000018373,0.0000018393,0.0000018397,0.0000018351,0.0000018266, +0.0000018193,0.0000018145,0.0000018112,0.0000018088,0.0000018063, +0.0000018044,0.0000018040,0.0000018049,0.0000018070,0.0000018090, +0.0000018117,0.0000018164,0.0000018236,0.0000018310,0.0000018324, +0.0000018335,0.0000018396,0.0000018452,0.0000018460,0.0000018450, +0.0000018519,0.0000018513,0.0000018336,0.0000018194,0.0000018163, +0.0000018155,0.0000018107,0.0000018092,0.0000018146,0.0000018193, +0.0000018226,0.0000018263,0.0000018274,0.0000018242,0.0000018158, +0.0000018047,0.0000017959,0.0000017930,0.0000017938,0.0000017961, +0.0000017977,0.0000017987,0.0000018008,0.0000018028,0.0000018034, +0.0000018025,0.0000018009,0.0000017993,0.0000017986,0.0000017986, +0.0000017980,0.0000017970,0.0000017970,0.0000017984,0.0000018004, +0.0000018010,0.0000017995,0.0000017976,0.0000017990,0.0000018074, +0.0000018190,0.0000018280,0.0000018301,0.0000018284,0.0000018231, +0.0000018108,0.0000017977,0.0000017922,0.0000017905,0.0000017855, +0.0000017784,0.0000017727,0.0000017713,0.0000017746,0.0000017856, +0.0000018051,0.0000018254,0.0000018383,0.0000018449,0.0000018470, +0.0000018466,0.0000018402,0.0000018247,0.0000018074,0.0000017972, +0.0000017890,0.0000017838,0.0000017818,0.0000017847,0.0000017860, +0.0000017771,0.0000017645,0.0000017593,0.0000017578,0.0000017566, +0.0000017575,0.0000017610,0.0000017628,0.0000017572,0.0000017467, +0.0000017461,0.0000017555,0.0000017676,0.0000017740,0.0000017738, +0.0000017757,0.0000017727,0.0000017642,0.0000017653,0.0000017703, +0.0000017801,0.0000017663,0.0000017515,0.0000017513,0.0000017487, +0.0000017501,0.0000017589,0.0000017692,0.0000017764,0.0000017737, +0.0000017659,0.0000017612,0.0000017631,0.0000017627,0.0000017582, +0.0000017555,0.0000017538,0.0000017547,0.0000017625,0.0000017728, +0.0000017864,0.0000018024,0.0000018096,0.0000018113,0.0000018152, +0.0000018173,0.0000018162,0.0000018135,0.0000018122,0.0000018117, +0.0000018089,0.0000018021,0.0000017929,0.0000017836,0.0000017758, +0.0000017720,0.0000017724,0.0000017747,0.0000017758,0.0000017738, +0.0000017679,0.0000017629,0.0000017630,0.0000017690,0.0000017733, +0.0000017749,0.0000017743,0.0000017679,0.0000017562,0.0000017495, +0.0000017604,0.0000017841,0.0000017924,0.0000017903,0.0000017922, +0.0000017995,0.0000018055,0.0000018069,0.0000018066,0.0000018085, +0.0000018145,0.0000018211,0.0000018275,0.0000018367,0.0000018479, +0.0000018547,0.0000018562,0.0000018578,0.0000018588,0.0000018548, +0.0000018473,0.0000018372,0.0000018219,0.0000018130,0.0000018158, +0.0000018246,0.0000018300,0.0000018345,0.0000018388,0.0000018400, +0.0000018371,0.0000018291,0.0000018224,0.0000018240,0.0000018313, +0.0000018365,0.0000018358,0.0000018313,0.0000018286,0.0000018282, +0.0000018269,0.0000018258,0.0000018273,0.0000018307,0.0000018324, +0.0000018328,0.0000018332,0.0000018333,0.0000018336,0.0000018367, +0.0000018420,0.0000018465,0.0000018487,0.0000018492,0.0000018489, +0.0000018481,0.0000018470,0.0000018443,0.0000018407,0.0000018365, +0.0000018320,0.0000018275,0.0000018235,0.0000018202,0.0000018179, +0.0000018166,0.0000018165,0.0000018172,0.0000018178,0.0000018180, +0.0000018177,0.0000018178,0.0000018183,0.0000018187,0.0000018188, +0.0000018191,0.0000018189,0.0000018189,0.0000018189,0.0000018193, +0.0000018201,0.0000018203,0.0000018211,0.0000018229,0.0000018265, +0.0000018314,0.0000018366,0.0000018408,0.0000018433,0.0000018447, +0.0000018461,0.0000018480,0.0000018500,0.0000018519,0.0000018544, +0.0000018567,0.0000018582,0.0000018594,0.0000018598,0.0000018595, +0.0000018584,0.0000018576,0.0000018568,0.0000018555,0.0000018511, +0.0000018448,0.0000018562,0.0000019161,0.0000019538,0.0000019640, +0.0000019766,0.0000019859,0.0000019884,0.0000019850,0.0000019808, +0.0000019876,0.0000019972,0.0000019969,0.0000019935,0.0000019896, +0.0000019870,0.0000019881,0.0000019888,0.0000019860,0.0000019854, +0.0000019896,0.0000019947,0.0000019973,0.0000020000,0.0000020022, +0.0000020038,0.0000020047,0.0000020049,0.0000020038,0.0000020030, +0.0000020030,0.0000020037,0.0000020005,0.0000019930,0.0000019829, +0.0000019727,0.0000019651,0.0000019612,0.0000019615,0.0000019604, +0.0000019601,0.0000019615,0.0000019612,0.0000019622,0.0000019639, +0.0000019654,0.0000019668,0.0000019682,0.0000019696,0.0000019712, +0.0000019723,0.0000019724,0.0000019731,0.0000019731,0.0000019727, +0.0000019728,0.0000019729,0.0000019716,0.0000019706,0.0000019697, +0.0000019691,0.0000019688,0.0000019680,0.0000019675,0.0000019677, +0.0000019679,0.0000019681,0.0000019681,0.0000019674,0.0000019674, +0.0000019653,0.0000019618,0.0000019570,0.0000019509,0.0000019453, +0.0000019423,0.0000019412,0.0000019399,0.0000019374,0.0000019348, +0.0000019332,0.0000019330,0.0000019348,0.0000019397,0.0000019465, +0.0000019521,0.0000019537,0.0000019509,0.0000019367,0.0000019087, +0.0000018717,0.0000018367,0.0000018145,0.0000018094,0.0000018131, +0.0000018239,0.0000018351,0.0000018427,0.0000018476,0.0000018529, +0.0000018569,0.0000018597,0.0000018614,0.0000018621,0.0000018615, +0.0000018600,0.0000018580,0.0000018561,0.0000018544,0.0000018531, +0.0000018526,0.0000018540,0.0000018563,0.0000018583,0.0000018598, +0.0000018620,0.0000018651,0.0000018678,0.0000018704,0.0000018719, +0.0000018718,0.0000018725,0.0000018726,0.0000018731,0.0000018742, +0.0000018763,0.0000018790,0.0000018812,0.0000018825,0.0000018830, +0.0000018822,0.0000018810,0.0000018808,0.0000018823,0.0000018839, +0.0000018832,0.0000018773,0.0000018682,0.0000018645,0.0000018686, +0.0000018845,0.0000019039,0.0000019139,0.0000019109,0.0000018983, +0.0000018760,0.0000018572,0.0000018457,0.0000018386,0.0000018344, +0.0000018342,0.0000018347,0.0000018379,0.0000018474,0.0000018585, +0.0000018718,0.0000018867,0.0000019015,0.0000019159,0.0000019293, +0.0000019420,0.0000019538,0.0000019651,0.0000019758,0.0000019854, +0.0000019944,0.0000020024,0.0000020088,0.0000020136,0.0000020170, +0.0000020195,0.0000020220,0.0000020236,0.0000020242,0.0000020255, +0.0000020253,0.0000020254,0.0000020253,0.0000020250,0.0000020241, +0.0000020225,0.0000020211,0.0000020204,0.0000020195,0.0000020181, +0.0000020163,0.0000020146,0.0000020127,0.0000020109,0.0000020096, +0.0000020096,0.0000020098,0.0000020091,0.0000020057,0.0000020009, +0.0000019957,0.0000019924,0.0000019914,0.0000019915,0.0000019929, +0.0000019941,0.0000019941,0.0000019943,0.0000019950,0.0000019958, +0.0000019963,0.0000019963,0.0000019971,0.0000020019,0.0000020004, +0.0000019785,0.0000019649,0.0000019642,0.0000019657,0.0000019664, +0.0000019706,0.0000019734,0.0000019725,0.0000019681,0.0000019718, +0.0000019959,0.0000020083,0.0000020085,0.0000020067,0.0000019941, +0.0000019704,0.0000019576,0.0000019571,0.0000019572,0.0000019579, +0.0000019654,0.0000019893,0.0000020177,0.0000020349,0.0000020347, +0.0000020254,0.0000020131,0.0000019998,0.0000019881,0.0000019801, +0.0000019754,0.0000019725,0.0000019713,0.0000019715,0.0000019777, +0.0000019870,0.0000019985,0.0000020085,0.0000020147,0.0000020166, +0.0000020171,0.0000020131,0.0000020097,0.0000020083,0.0000020070, +0.0000020078,0.0000020064,0.0000020076,0.0000020080,0.0000020081, +0.0000020083,0.0000020087,0.0000020091,0.0000020090,0.0000020090, +0.0000020091,0.0000020096,0.0000020106,0.0000020117,0.0000020128, +0.0000020140,0.0000020146,0.0000020161,0.0000020180,0.0000020219, +0.0000020230,0.0000020232,0.0000020229,0.0000020230,0.0000020225, +0.0000020214,0.0000020198,0.0000020180,0.0000020164,0.0000020151, +0.0000020133,0.0000020113,0.0000020096,0.0000020085,0.0000020078, +0.0000020074,0.0000020071,0.0000020074,0.0000020092,0.0000020124, +0.0000020167,0.0000020214,0.0000020252,0.0000020263,0.0000020264, +0.0000020280,0.0000020330,0.0000020404,0.0000020472,0.0000020512, +0.0000020525,0.0000020521,0.0000020510,0.0000020498,0.0000020484, +0.0000020473,0.0000020464,0.0000020459,0.0000020446,0.0000020427, +0.0000020407,0.0000020392,0.0000020379,0.0000020370,0.0000020368, +0.0000020370,0.0000020378,0.0000020385,0.0000020389,0.0000020390, +0.0000020388,0.0000020382,0.0000020370,0.0000020356,0.0000020341, +0.0000020326,0.0000020313,0.0000020302,0.0000020292,0.0000020282, +0.0000020272,0.0000020259,0.0000020242,0.0000020226,0.0000020211, +0.0000020196,0.0000020182,0.0000020173,0.0000020167,0.0000020170, +0.0000020182,0.0000020198,0.0000020216,0.0000020234,0.0000020253, +0.0000020276,0.0000020294,0.0000020302,0.0000020305,0.0000020310, +0.0000020320,0.0000020329,0.0000020337,0.0000020348,0.0000020356, +0.0000020361,0.0000020370,0.0000020373,0.0000020365,0.0000020354, +0.0000020341,0.0000020322,0.0000020296,0.0000020267,0.0000020232, +0.0000020209,0.0000020191,0.0000020196,0.0000020195,0.0000020190, +0.0000020181,0.0000020154,0.0000020107,0.0000020058,0.0000020011, +0.0000019987,0.0000019979,0.0000019983,0.0000020004,0.0000020025, +0.0000020025,0.0000019998,0.0000019951,0.0000019892,0.0000019842, +0.0000019794,0.0000019751,0.0000019735,0.0000019731,0.0000019734, +0.0000019757,0.0000019803,0.0000019869,0.0000019945,0.0000020009, +0.0000020065,0.0000020111,0.0000020147,0.0000020173,0.0000020173, +0.0000020166,0.0000020171,0.0000020192,0.0000020209,0.0000020211, +0.0000020226,0.0000020235,0.0000020255,0.0000020298,0.0000020349, +0.0000020393,0.0000020425,0.0000020445,0.0000020454,0.0000020455, +0.0000020463,0.0000020469,0.0000020465,0.0000020448,0.0000020422, +0.0000020390,0.0000020353,0.0000020302,0.0000020241,0.0000020180, +0.0000020113,0.0000020048,0.0000019995,0.0000019954,0.0000019920, +0.0000019904,0.0000019899,0.0000019913,0.0000019932,0.0000019960, +0.0000019999,0.0000020032,0.0000020050,0.0000020051,0.0000020044, +0.0000020035,0.0000020018,0.0000019987,0.0000019953,0.0000019931, +0.0000019920,0.0000019908,0.0000019890,0.0000019868,0.0000019841, +0.0000019811,0.0000019784,0.0000019757,0.0000019734,0.0000019712, +0.0000019681,0.0000019641,0.0000019597,0.0000019550,0.0000019508, +0.0000019474,0.0000019449,0.0000019433,0.0000019432,0.0000019443, +0.0000019457,0.0000019459,0.0000019442,0.0000019412,0.0000019388, +0.0000019371,0.0000019362,0.0000019346,0.0000019317,0.0000019288, +0.0000019263,0.0000019246,0.0000019236,0.0000019238,0.0000019248, +0.0000019259,0.0000019269,0.0000019268,0.0000019255,0.0000019242, +0.0000019231,0.0000019229,0.0000019230,0.0000019263,0.0000019290, +0.0000019292,0.0000019269,0.0000019233,0.0000019203,0.0000019195, +0.0000019211,0.0000019245,0.0000019283,0.0000019303,0.0000019295, +0.0000019278,0.0000019256,0.0000019233,0.0000019214,0.0000019199, +0.0000019174,0.0000019138,0.0000019112,0.0000019086,0.0000019056, +0.0000019028,0.0000019004,0.0000018978,0.0000018947,0.0000018911, +0.0000018865,0.0000018805,0.0000018748,0.0000018727,0.0000018734, +0.0000018748,0.0000018759,0.0000018761,0.0000018755,0.0000018752, +0.0000018758,0.0000018753,0.0000018729,0.0000018705,0.0000018687, +0.0000018663,0.0000018657,0.0000018681,0.0000018739,0.0000018811, +0.0000018890,0.0000018961,0.0000019001,0.0000019021,0.0000019029, +0.0000019054,0.0000019106,0.0000019166,0.0000019195,0.0000019203, +0.0000019199,0.0000019200,0.0000019197,0.0000019196,0.0000019172, +0.0000019111,0.0000019056,0.0000019038,0.0000019051,0.0000019054, +0.0000019041,0.0000019020,0.0000019026,0.0000019081,0.0000019145, +0.0000019177,0.0000019166,0.0000019119,0.0000019053,0.0000018986, +0.0000018936,0.0000018912,0.0000018918,0.0000018953,0.0000018982, +0.0000018999,0.0000018955,0.0000018861,0.0000018757,0.0000018670, +0.0000018590,0.0000018506,0.0000018442,0.0000018406,0.0000018410, +0.0000018432,0.0000018445,0.0000018438,0.0000018420,0.0000018395, +0.0000018371,0.0000018352,0.0000018340,0.0000018335,0.0000018338, +0.0000018353,0.0000018375,0.0000018363,0.0000018296,0.0000018186, +0.0000018060,0.0000017949,0.0000017881,0.0000017842,0.0000017805, +0.0000017758,0.0000017702,0.0000017643,0.0000017586,0.0000017539, +0.0000017515,0.0000017521,0.0000017543,0.0000017583,0.0000017625, +0.0000017657,0.0000017672,0.0000017673,0.0000017660,0.0000017641, +0.0000017628,0.0000017607,0.0000017570,0.0000017528,0.0000017486, +0.0000017457,0.0000017439,0.0000017430,0.0000017422,0.0000017410, +0.0000017387,0.0000017362,0.0000017339,0.0000017305,0.0000017273, +0.0000017265,0.0000017268,0.0000017258,0.0000017237,0.0000017242, +0.0000017290,0.0000017342,0.0000017357,0.0000017365,0.0000017400, +0.0000017441,0.0000017454,0.0000017435,0.0000017361,0.0000017271, +0.0000017243,0.0000017234,0.0000017204,0.0000017185,0.0000017170, +0.0000017161,0.0000017138,0.0000017117,0.0000017124,0.0000017195, +0.0000017270,0.0000017349,0.0000017443,0.0000017533,0.0000017618, +0.0000017720,0.0000017826,0.0000017928,0.0000018022,0.0000018104, +0.0000018172,0.0000018237,0.0000018300,0.0000018359,0.0000018422, +0.0000018477,0.0000018510,0.0000018513,0.0000018515,0.0000018549, +0.0000018583,0.0000018587,0.0000018568,0.0000018544,0.0000018535, +0.0000018546,0.0000018540,0.0000018499,0.0000018465,0.0000018463, +0.0000018468,0.0000018454,0.0000018418,0.0000018398,0.0000018398, +0.0000018387,0.0000018356,0.0000018343,0.0000018352,0.0000018376, +0.0000018384,0.0000018340,0.0000018259,0.0000018196,0.0000018159, +0.0000018133,0.0000018106,0.0000018065,0.0000018031,0.0000018022, +0.0000018028,0.0000018044,0.0000018066,0.0000018092,0.0000018137, +0.0000018199,0.0000018264,0.0000018302,0.0000018298,0.0000018340, +0.0000018420,0.0000018463,0.0000018451,0.0000018445,0.0000018516, +0.0000018489,0.0000018317,0.0000018189,0.0000018152,0.0000018108, +0.0000018057,0.0000018093,0.0000018170,0.0000018216,0.0000018248, +0.0000018268,0.0000018256,0.0000018197,0.0000018101,0.0000018005, +0.0000017942,0.0000017928,0.0000017942,0.0000017966,0.0000017981, +0.0000017998,0.0000018014,0.0000018014,0.0000018002,0.0000017983, +0.0000017970,0.0000017972,0.0000017986,0.0000017998,0.0000017997, +0.0000017996,0.0000018000,0.0000018010,0.0000018023,0.0000018021, +0.0000018002,0.0000017997,0.0000018041,0.0000018137,0.0000018242, +0.0000018298,0.0000018299,0.0000018278,0.0000018233,0.0000018137, +0.0000018016,0.0000017953,0.0000017923,0.0000017888,0.0000017849, +0.0000017830,0.0000017842,0.0000017924,0.0000018089,0.0000018259, +0.0000018367,0.0000018423,0.0000018451,0.0000018454,0.0000018424, +0.0000018333,0.0000018199,0.0000018052,0.0000017910,0.0000017828, +0.0000017817,0.0000017833,0.0000017878,0.0000017872,0.0000017776, +0.0000017663,0.0000017635,0.0000017638,0.0000017637,0.0000017645, +0.0000017661,0.0000017635,0.0000017507,0.0000017450,0.0000017508, +0.0000017640,0.0000017735,0.0000017740,0.0000017738,0.0000017742, +0.0000017684,0.0000017655,0.0000017684,0.0000017768,0.0000017787, +0.0000017561,0.0000017528,0.0000017514,0.0000017507,0.0000017583, +0.0000017688,0.0000017782,0.0000017777,0.0000017722,0.0000017642, +0.0000017640,0.0000017661,0.0000017636,0.0000017580,0.0000017553, +0.0000017533,0.0000017533,0.0000017598,0.0000017695,0.0000017818, +0.0000017968,0.0000018068,0.0000018089,0.0000018106,0.0000018131, +0.0000018137,0.0000018132,0.0000018121,0.0000018096,0.0000018051, +0.0000017992,0.0000017931,0.0000017874,0.0000017845,0.0000017839, +0.0000017832,0.0000017811,0.0000017762,0.0000017697,0.0000017647, +0.0000017650,0.0000017711,0.0000017735,0.0000017755,0.0000017762, +0.0000017734,0.0000017630,0.0000017521,0.0000017542,0.0000017762, +0.0000017914,0.0000017907,0.0000017898,0.0000017951,0.0000018018, +0.0000018041,0.0000018032,0.0000018031,0.0000018079,0.0000018156, +0.0000018223,0.0000018296,0.0000018399,0.0000018505,0.0000018555, +0.0000018563,0.0000018579,0.0000018576,0.0000018531,0.0000018459, +0.0000018352,0.0000018197,0.0000018118,0.0000018173,0.0000018263, +0.0000018315,0.0000018354,0.0000018385,0.0000018390,0.0000018341, +0.0000018245,0.0000018202,0.0000018246,0.0000018321,0.0000018343, +0.0000018328,0.0000018317,0.0000018311,0.0000018292,0.0000018285, +0.0000018310,0.0000018333,0.0000018332,0.0000018326,0.0000018328, +0.0000018333,0.0000018353,0.0000018397,0.0000018444,0.0000018472, +0.0000018480,0.0000018478,0.0000018459,0.0000018414,0.0000018348, +0.0000018276,0.0000018216,0.0000018176,0.0000018159,0.0000018159, +0.0000018174,0.0000018192,0.0000018204,0.0000018212,0.0000018214, +0.0000018214,0.0000018211,0.0000018207,0.0000018201,0.0000018196, +0.0000018197,0.0000018200,0.0000018200,0.0000018202,0.0000018205, +0.0000018208,0.0000018210,0.0000018208,0.0000018204,0.0000018200, +0.0000018191,0.0000018178,0.0000018169,0.0000018164,0.0000018152, +0.0000018177,0.0000018227,0.0000018278,0.0000018323,0.0000018369, +0.0000018415,0.0000018456,0.0000018500,0.0000018539,0.0000018567, +0.0000018585,0.0000018589,0.0000018580,0.0000018560,0.0000018538, +0.0000018512,0.0000018499,0.0000018483,0.0000018450,0.0000018697, +0.0000019348,0.0000019630,0.0000019733,0.0000019833,0.0000019890, +0.0000019882,0.0000019842,0.0000019890,0.0000019978,0.0000019980, +0.0000019960,0.0000019930,0.0000019906,0.0000019917,0.0000019919, +0.0000019889,0.0000019875,0.0000019900,0.0000019936,0.0000019956, +0.0000019975,0.0000019991,0.0000020001,0.0000020011,0.0000020019, +0.0000020024,0.0000020022,0.0000020006,0.0000019949,0.0000019840, +0.0000019717,0.0000019626,0.0000019602,0.0000019597,0.0000019624, +0.0000019654,0.0000019671,0.0000019688,0.0000019708,0.0000019720, +0.0000019720,0.0000019722,0.0000019742,0.0000019758,0.0000019764, +0.0000019764,0.0000019772,0.0000019776,0.0000019764,0.0000019758, +0.0000019749,0.0000019734,0.0000019718,0.0000019702,0.0000019681, +0.0000019656,0.0000019631,0.0000019608,0.0000019593,0.0000019587, +0.0000019591,0.0000019607,0.0000019632,0.0000019653,0.0000019664, +0.0000019666,0.0000019668,0.0000019675,0.0000019685,0.0000019684, +0.0000019657,0.0000019581,0.0000019497,0.0000019445,0.0000019423, +0.0000019400,0.0000019361,0.0000019327,0.0000019318,0.0000019339, +0.0000019399,0.0000019472,0.0000019518,0.0000019516,0.0000019404, +0.0000019124,0.0000018724,0.0000018343,0.0000018120,0.0000018082, +0.0000018137,0.0000018240,0.0000018333,0.0000018394,0.0000018438, +0.0000018484,0.0000018529,0.0000018560,0.0000018574,0.0000018573, +0.0000018560,0.0000018537,0.0000018512,0.0000018493,0.0000018490, +0.0000018501,0.0000018523,0.0000018557,0.0000018603,0.0000018654, +0.0000018693,0.0000018692,0.0000018706,0.0000018713,0.0000018718, +0.0000018716,0.0000018700,0.0000018663,0.0000018625,0.0000018595, +0.0000018580,0.0000018591,0.0000018630,0.0000018692,0.0000018762, +0.0000018815,0.0000018848,0.0000018862,0.0000018855,0.0000018851, +0.0000018862,0.0000018889,0.0000018922,0.0000018923,0.0000018838, +0.0000018695,0.0000018618,0.0000018644,0.0000018799,0.0000018997, +0.0000019083,0.0000019008,0.0000018803,0.0000018602,0.0000018484, +0.0000018434,0.0000018404,0.0000018374,0.0000018344,0.0000018321, +0.0000018304,0.0000018289,0.0000018310,0.0000018375,0.0000018469, +0.0000018594,0.0000018740,0.0000018904,0.0000019064,0.0000019209, +0.0000019341,0.0000019461,0.0000019572,0.0000019674,0.0000019760, +0.0000019831,0.0000019895,0.0000019959,0.0000020023,0.0000020079, +0.0000020126,0.0000020165,0.0000020198,0.0000020223,0.0000020234, +0.0000020248,0.0000020247,0.0000020232,0.0000020239,0.0000020237, +0.0000020230,0.0000020218,0.0000020204,0.0000020189,0.0000020172, +0.0000020156,0.0000020146,0.0000020144,0.0000020121,0.0000020087, +0.0000020033,0.0000019980,0.0000019938,0.0000019921,0.0000019916, +0.0000019912,0.0000019908,0.0000019891,0.0000019882,0.0000019894, +0.0000019920,0.0000019950,0.0000019968,0.0000019985,0.0000020032, +0.0000020041,0.0000019839,0.0000019657,0.0000019655,0.0000019665, +0.0000019673,0.0000019722,0.0000019742,0.0000019721,0.0000019673, +0.0000019731,0.0000019977,0.0000020096,0.0000020100,0.0000020081, +0.0000019964,0.0000019753,0.0000019630,0.0000019619,0.0000019612, +0.0000019626,0.0000019764,0.0000020045,0.0000020282,0.0000020360, +0.0000020317,0.0000020184,0.0000020042,0.0000019918,0.0000019833, +0.0000019785,0.0000019745,0.0000019735,0.0000019740,0.0000019818, +0.0000019931,0.0000020050,0.0000020128,0.0000020157,0.0000020148, +0.0000020110,0.0000020076,0.0000020062,0.0000020042,0.0000020042, +0.0000020042,0.0000020032,0.0000020001,0.0000019958,0.0000019919, +0.0000019867,0.0000019820,0.0000019789,0.0000019764,0.0000019739, +0.0000019723,0.0000019718,0.0000019724,0.0000019738,0.0000019761, +0.0000019797,0.0000019847,0.0000019910,0.0000019977,0.0000020047, +0.0000020122,0.0000020185,0.0000020228,0.0000020258,0.0000020285, +0.0000020305,0.0000020329,0.0000020330,0.0000020317,0.0000020298, +0.0000020281,0.0000020266,0.0000020242,0.0000020218,0.0000020198, +0.0000020184,0.0000020184,0.0000020196,0.0000020214,0.0000020237, +0.0000020262,0.0000020284,0.0000020298,0.0000020310,0.0000020328, +0.0000020368,0.0000020428,0.0000020496,0.0000020555,0.0000020588, +0.0000020590,0.0000020572,0.0000020544,0.0000020520,0.0000020502, +0.0000020488,0.0000020476,0.0000020465,0.0000020448,0.0000020421, +0.0000020395,0.0000020376,0.0000020369,0.0000020363,0.0000020360, +0.0000020359,0.0000020362,0.0000020369,0.0000020375,0.0000020380, +0.0000020383,0.0000020385,0.0000020386,0.0000020382,0.0000020374, +0.0000020364,0.0000020352,0.0000020341,0.0000020332,0.0000020324, +0.0000020317,0.0000020310,0.0000020303,0.0000020295,0.0000020288, +0.0000020283,0.0000020279,0.0000020276,0.0000020276,0.0000020280, +0.0000020289,0.0000020304,0.0000020321,0.0000020338,0.0000020351, +0.0000020364,0.0000020378,0.0000020389,0.0000020393,0.0000020397, +0.0000020402,0.0000020406,0.0000020415,0.0000020423,0.0000020432, +0.0000020438,0.0000020443,0.0000020445,0.0000020441,0.0000020427, +0.0000020408,0.0000020384,0.0000020355,0.0000020320,0.0000020280, +0.0000020237,0.0000020211,0.0000020191,0.0000020201,0.0000020216, +0.0000020231,0.0000020251,0.0000020255,0.0000020227,0.0000020177, +0.0000020113,0.0000020046,0.0000019997,0.0000019971,0.0000019967, +0.0000019964,0.0000019955,0.0000019932,0.0000019886,0.0000019837, +0.0000019804,0.0000019773,0.0000019761,0.0000019772,0.0000019817, +0.0000019879,0.0000019949,0.0000020015,0.0000020071,0.0000020116, +0.0000020149,0.0000020152,0.0000020165,0.0000020172,0.0000020165, +0.0000020149,0.0000020142,0.0000020157,0.0000020198,0.0000020246, +0.0000020293,0.0000020346,0.0000020389,0.0000020432,0.0000020466, +0.0000020490,0.0000020485,0.0000020474,0.0000020457,0.0000020444, +0.0000020446,0.0000020455,0.0000020454,0.0000020444,0.0000020420, +0.0000020388,0.0000020352,0.0000020303,0.0000020244,0.0000020176, +0.0000020110,0.0000020050,0.0000020001,0.0000019968,0.0000019938, +0.0000019921,0.0000019929,0.0000019963,0.0000020015,0.0000020074, +0.0000020135,0.0000020197,0.0000020230,0.0000020237,0.0000020228, +0.0000020207,0.0000020176,0.0000020136,0.0000020095,0.0000020063, +0.0000020040,0.0000020018,0.0000019986,0.0000019955,0.0000019927, +0.0000019900,0.0000019872,0.0000019840,0.0000019810,0.0000019782, +0.0000019759,0.0000019735,0.0000019715,0.0000019696,0.0000019672, +0.0000019640,0.0000019601,0.0000019561,0.0000019529,0.0000019510, +0.0000019501,0.0000019496,0.0000019486,0.0000019466,0.0000019444, +0.0000019415,0.0000019394,0.0000019379,0.0000019369,0.0000019358, +0.0000019349,0.0000019349,0.0000019360,0.0000019373,0.0000019384, +0.0000019393,0.0000019401,0.0000019391,0.0000019363,0.0000019328, +0.0000019303,0.0000019287,0.0000019273,0.0000019281,0.0000019305, +0.0000019322,0.0000019316,0.0000019285,0.0000019243,0.0000019198, +0.0000019175,0.0000019167,0.0000019186,0.0000019218,0.0000019245, +0.0000019257,0.0000019257,0.0000019247,0.0000019233,0.0000019225, +0.0000019218,0.0000019200,0.0000019176,0.0000019167,0.0000019154, +0.0000019131,0.0000019098,0.0000019061,0.0000019026,0.0000018997, +0.0000018964,0.0000018917,0.0000018859,0.0000018807,0.0000018773, +0.0000018755,0.0000018753,0.0000018756,0.0000018762,0.0000018775, +0.0000018800,0.0000018853,0.0000018881,0.0000018880,0.0000018867, +0.0000018836,0.0000018785,0.0000018762,0.0000018769,0.0000018811, +0.0000018874,0.0000018955,0.0000019027,0.0000019062,0.0000019070, +0.0000019064,0.0000019083,0.0000019138,0.0000019188,0.0000019212, +0.0000019220,0.0000019223,0.0000019223,0.0000019225,0.0000019232, +0.0000019207,0.0000019138,0.0000019074,0.0000019051,0.0000019052, +0.0000019044,0.0000019015,0.0000018996,0.0000019021,0.0000019104, +0.0000019178,0.0000019210,0.0000019194,0.0000019142,0.0000019074, +0.0000018997,0.0000018923,0.0000018887,0.0000018885,0.0000018916, +0.0000018968,0.0000019006,0.0000018990,0.0000018906,0.0000018795, +0.0000018702,0.0000018614,0.0000018531,0.0000018458,0.0000018418, +0.0000018431,0.0000018463,0.0000018489,0.0000018492,0.0000018481, +0.0000018464,0.0000018445,0.0000018427,0.0000018409,0.0000018394, +0.0000018388,0.0000018402,0.0000018418,0.0000018404,0.0000018345, +0.0000018239,0.0000018112,0.0000018003,0.0000017924,0.0000017865, +0.0000017812,0.0000017765,0.0000017726,0.0000017686,0.0000017637, +0.0000017582,0.0000017543,0.0000017530,0.0000017547,0.0000017578, +0.0000017612,0.0000017650,0.0000017685,0.0000017708,0.0000017719, +0.0000017724,0.0000017715,0.0000017687,0.0000017652,0.0000017617, +0.0000017583,0.0000017547,0.0000017525,0.0000017517,0.0000017510, +0.0000017491,0.0000017459,0.0000017426,0.0000017384,0.0000017331, +0.0000017293,0.0000017285,0.0000017289,0.0000017286,0.0000017275, +0.0000017293,0.0000017342,0.0000017384,0.0000017397,0.0000017411, +0.0000017448,0.0000017476,0.0000017478,0.0000017445,0.0000017367, +0.0000017299,0.0000017282,0.0000017278,0.0000017269,0.0000017258, +0.0000017235,0.0000017194,0.0000017135,0.0000017082,0.0000017070, +0.0000017074,0.0000017088,0.0000017108,0.0000017142,0.0000017181, +0.0000017252,0.0000017359,0.0000017482,0.0000017607,0.0000017711, +0.0000017793,0.0000017875,0.0000017957,0.0000018032,0.0000018118, +0.0000018205,0.0000018291,0.0000018359,0.0000018437,0.0000018529, +0.0000018582,0.0000018583,0.0000018565,0.0000018546,0.0000018546, +0.0000018555,0.0000018532,0.0000018482,0.0000018453,0.0000018452, +0.0000018454,0.0000018432,0.0000018404,0.0000018397,0.0000018392, +0.0000018361,0.0000018332,0.0000018335,0.0000018361,0.0000018372, +0.0000018327,0.0000018247,0.0000018193,0.0000018169,0.0000018152, +0.0000018120,0.0000018069,0.0000018030,0.0000018016,0.0000018004, +0.0000017989,0.0000017992,0.0000018016,0.0000018070,0.0000018145, +0.0000018214,0.0000018261,0.0000018270,0.0000018278,0.0000018368, +0.0000018439,0.0000018460,0.0000018439,0.0000018445,0.0000018507, +0.0000018459,0.0000018294,0.0000018175,0.0000018112,0.0000018043, +0.0000018033,0.0000018117,0.0000018194,0.0000018230,0.0000018254, +0.0000018258,0.0000018233,0.0000018173,0.0000018096,0.0000018016, +0.0000017958,0.0000017941,0.0000017957,0.0000017976,0.0000017987, +0.0000017998,0.0000017999,0.0000017995,0.0000017980,0.0000017963, +0.0000017963,0.0000017985,0.0000018013,0.0000018028,0.0000018029, +0.0000018029,0.0000018028,0.0000018032,0.0000018036,0.0000018025, +0.0000018021,0.0000018042,0.0000018104,0.0000018198,0.0000018282, +0.0000018312,0.0000018301,0.0000018275,0.0000018248,0.0000018184, +0.0000018095,0.0000018028,0.0000017989,0.0000017958,0.0000017939, +0.0000017953,0.0000018017,0.0000018133,0.0000018258,0.0000018349, +0.0000018404,0.0000018436,0.0000018451,0.0000018441,0.0000018373, +0.0000018274,0.0000018173,0.0000018032,0.0000017865,0.0000017803, +0.0000017822,0.0000017876,0.0000017911,0.0000017887,0.0000017779, +0.0000017683,0.0000017670,0.0000017684,0.0000017690,0.0000017693, +0.0000017688,0.0000017569,0.0000017459,0.0000017469,0.0000017595, +0.0000017719,0.0000017744,0.0000017723,0.0000017725,0.0000017700, +0.0000017676,0.0000017690,0.0000017728,0.0000017828,0.0000017678, +0.0000017532,0.0000017536,0.0000017525,0.0000017578,0.0000017676, +0.0000017794,0.0000017799,0.0000017771,0.0000017700,0.0000017651, +0.0000017668,0.0000017686,0.0000017644,0.0000017580,0.0000017552, +0.0000017527,0.0000017514,0.0000017557,0.0000017646,0.0000017762, +0.0000017890,0.0000018016,0.0000018082,0.0000018099,0.0000018107, +0.0000018110,0.0000018103,0.0000018079,0.0000018045,0.0000018012, +0.0000017984,0.0000017965,0.0000017952,0.0000017922,0.0000017878, +0.0000017825,0.0000017763,0.0000017713,0.0000017689,0.0000017688, +0.0000017715,0.0000017716,0.0000017729,0.0000017755,0.0000017753, +0.0000017677,0.0000017557,0.0000017530,0.0000017701,0.0000017903, +0.0000017919,0.0000017888,0.0000017912,0.0000017982,0.0000018026, +0.0000018022,0.0000018009,0.0000018030,0.0000018105,0.0000018182, +0.0000018241,0.0000018320,0.0000018429,0.0000018523,0.0000018558, +0.0000018561,0.0000018572,0.0000018569,0.0000018518,0.0000018445, +0.0000018333,0.0000018181,0.0000018116,0.0000018185,0.0000018283, +0.0000018330,0.0000018358,0.0000018376,0.0000018364,0.0000018291, +0.0000018206,0.0000018200,0.0000018263,0.0000018318,0.0000018339, +0.0000018358,0.0000018363,0.0000018339,0.0000018325,0.0000018341, +0.0000018352,0.0000018340,0.0000018323,0.0000018319,0.0000018329, +0.0000018363,0.0000018408,0.0000018436,0.0000018443,0.0000018431, +0.0000018388,0.0000018309,0.0000018210,0.0000018127,0.0000018087, +0.0000018088,0.0000018121,0.0000018160,0.0000018194,0.0000018213, +0.0000018221,0.0000018223,0.0000018225,0.0000018231,0.0000018248, +0.0000018274,0.0000018294,0.0000018305,0.0000018307,0.0000018306, +0.0000018305,0.0000018304,0.0000018298,0.0000018287,0.0000018274, +0.0000018264,0.0000018256,0.0000018246,0.0000018236,0.0000018226, +0.0000018213,0.0000018194,0.0000018168,0.0000018137,0.0000018106, +0.0000018095,0.0000018083,0.0000018130,0.0000018198,0.0000018271, +0.0000018342,0.0000018415,0.0000018482,0.0000018534,0.0000018568, +0.0000018587,0.0000018590,0.0000018575,0.0000018543,0.0000018496, +0.0000018463,0.0000018458,0.0000018483,0.0000018954,0.0000019549, +0.0000019716,0.0000019794,0.0000019867,0.0000019899,0.0000019877, +0.0000019912,0.0000019989,0.0000019996,0.0000019987,0.0000019960, +0.0000019937,0.0000019947,0.0000019956,0.0000019938,0.0000019926, +0.0000019935,0.0000019952,0.0000019969,0.0000019986,0.0000020005, +0.0000020021,0.0000020034,0.0000020028,0.0000020009,0.0000019962, +0.0000019870,0.0000019748,0.0000019637,0.0000019606,0.0000019606, +0.0000019642,0.0000019686,0.0000019718,0.0000019722,0.0000019721, +0.0000019711,0.0000019704,0.0000019696,0.0000019684,0.0000019680, +0.0000019681,0.0000019684,0.0000019684,0.0000019681,0.0000019672, +0.0000019657,0.0000019637,0.0000019613,0.0000019582,0.0000019546, +0.0000019506,0.0000019464,0.0000019420,0.0000019379,0.0000019343, +0.0000019311,0.0000019289,0.0000019280,0.0000019286,0.0000019313, +0.0000019360,0.0000019415,0.0000019470,0.0000019518,0.0000019551, +0.0000019571,0.0000019594,0.0000019630,0.0000019658,0.0000019651, +0.0000019574,0.0000019490,0.0000019435,0.0000019413,0.0000019382, +0.0000019338,0.0000019318,0.0000019334,0.0000019392,0.0000019461, +0.0000019493,0.0000019443,0.0000019209,0.0000018802,0.0000018378, +0.0000018125,0.0000018081,0.0000018138,0.0000018247,0.0000018342, +0.0000018407,0.0000018457,0.0000018500,0.0000018532,0.0000018542, +0.0000018541,0.0000018525,0.0000018498,0.0000018472,0.0000018455, +0.0000018465,0.0000018482,0.0000018519,0.0000018564,0.0000018612, +0.0000018651,0.0000018671,0.0000018681,0.0000018673,0.0000018629, +0.0000018595,0.0000018566,0.0000018544,0.0000018514,0.0000018481, +0.0000018432,0.0000018388,0.0000018348,0.0000018328,0.0000018338, +0.0000018387,0.0000018473,0.0000018584,0.0000018690,0.0000018771, +0.0000018836,0.0000018889,0.0000018936,0.0000018973,0.0000018986, +0.0000018986,0.0000018965,0.0000018880,0.0000018751,0.0000018647, +0.0000018633,0.0000018708,0.0000018875,0.0000019002,0.0000018969, +0.0000018764,0.0000018532,0.0000018401,0.0000018363,0.0000018353, +0.0000018336,0.0000018315,0.0000018299,0.0000018288,0.0000018273, +0.0000018250,0.0000018230,0.0000018211,0.0000018225,0.0000018287, +0.0000018392,0.0000018525,0.0000018675,0.0000018836,0.0000018997, +0.0000019149,0.0000019282,0.0000019390,0.0000019477,0.0000019557, +0.0000019635,0.0000019711,0.0000019785,0.0000019853,0.0000019919, +0.0000019980,0.0000020034,0.0000020086,0.0000020131,0.0000020161, +0.0000020190,0.0000020212,0.0000020223,0.0000020226,0.0000020218, +0.0000020204,0.0000020188,0.0000020169,0.0000020152,0.0000020138, +0.0000020124,0.0000020095,0.0000020058,0.0000020019,0.0000019986, +0.0000019964,0.0000019947,0.0000019929,0.0000019912,0.0000019884, +0.0000019867,0.0000019873,0.0000019902,0.0000019940,0.0000019969, +0.0000019992,0.0000020047,0.0000020076,0.0000019921,0.0000019680, +0.0000019658,0.0000019675,0.0000019683,0.0000019732,0.0000019746, +0.0000019713,0.0000019667,0.0000019753,0.0000020005,0.0000020110, +0.0000020115,0.0000020096,0.0000019986,0.0000019789,0.0000019672, +0.0000019645,0.0000019638,0.0000019694,0.0000019897,0.0000020169, +0.0000020339,0.0000020356,0.0000020258,0.0000020108,0.0000019964, +0.0000019864,0.0000019811,0.0000019773,0.0000019752,0.0000019762, +0.0000019856,0.0000019980,0.0000020097,0.0000020145,0.0000020144, +0.0000020111,0.0000020069,0.0000020048,0.0000020031,0.0000020021, +0.0000019971,0.0000019896,0.0000019794,0.0000019672,0.0000019546, +0.0000019434,0.0000019334,0.0000019250,0.0000019178,0.0000019119, +0.0000019066,0.0000019020,0.0000018985,0.0000018976,0.0000018977, +0.0000018976,0.0000018987,0.0000019020,0.0000019072,0.0000019149, +0.0000019250,0.0000019370,0.0000019494,0.0000019640,0.0000019797, +0.0000019944,0.0000020075,0.0000020183,0.0000020270,0.0000020334, +0.0000020374,0.0000020393,0.0000020403,0.0000020415,0.0000020425, +0.0000020406,0.0000020386,0.0000020365,0.0000020352,0.0000020348, +0.0000020347,0.0000020346,0.0000020343,0.0000020344,0.0000020359, +0.0000020394,0.0000020438,0.0000020471,0.0000020514,0.0000020551, +0.0000020584,0.0000020606,0.0000020607,0.0000020586,0.0000020560, +0.0000020540,0.0000020526,0.0000020513,0.0000020498,0.0000020480, +0.0000020457,0.0000020425,0.0000020396,0.0000020381,0.0000020376, +0.0000020378,0.0000020381,0.0000020385,0.0000020388,0.0000020390, +0.0000020392,0.0000020397,0.0000020402,0.0000020407,0.0000020410, +0.0000020409,0.0000020404,0.0000020395,0.0000020385,0.0000020374, +0.0000020365,0.0000020360,0.0000020357,0.0000020353,0.0000020350, +0.0000020348,0.0000020348,0.0000020350,0.0000020353,0.0000020358, +0.0000020365,0.0000020373,0.0000020380,0.0000020385,0.0000020393, +0.0000020406,0.0000020417,0.0000020427,0.0000020438,0.0000020450, +0.0000020459,0.0000020470,0.0000020477,0.0000020484,0.0000020498, +0.0000020509,0.0000020518,0.0000020523,0.0000020525,0.0000020523, +0.0000020518,0.0000020510,0.0000020496,0.0000020469,0.0000020435, +0.0000020399,0.0000020352,0.0000020294,0.0000020244,0.0000020203, +0.0000020195,0.0000020202,0.0000020216,0.0000020243,0.0000020255, +0.0000020260,0.0000020259,0.0000020225,0.0000020173,0.0000020110, +0.0000020047,0.0000019996,0.0000019967,0.0000019936,0.0000019905, +0.0000019866,0.0000019846,0.0000019853,0.0000019885,0.0000019929, +0.0000019981,0.0000020034,0.0000020089,0.0000020125,0.0000020135, +0.0000020143,0.0000020152,0.0000020154,0.0000020138,0.0000020138, +0.0000020136,0.0000020133,0.0000020143,0.0000020177,0.0000020242, +0.0000020322,0.0000020395,0.0000020452,0.0000020489,0.0000020507, +0.0000020507,0.0000020504,0.0000020491,0.0000020461,0.0000020424, +0.0000020397,0.0000020396,0.0000020408,0.0000020409,0.0000020400, +0.0000020383,0.0000020351,0.0000020312,0.0000020269,0.0000020212, +0.0000020152,0.0000020089,0.0000020036,0.0000020001,0.0000019983, +0.0000019968,0.0000019964,0.0000019978,0.0000020018,0.0000020085, +0.0000020163,0.0000020236,0.0000020301,0.0000020351,0.0000020364, +0.0000020361,0.0000020348,0.0000020322,0.0000020283,0.0000020242, +0.0000020214,0.0000020197,0.0000020182,0.0000020162,0.0000020142, +0.0000020126,0.0000020104,0.0000020074,0.0000020035,0.0000019994, +0.0000019951,0.0000019911,0.0000019880,0.0000019858,0.0000019849, +0.0000019848,0.0000019844,0.0000019831,0.0000019803,0.0000019770, +0.0000019739,0.0000019708,0.0000019675,0.0000019640,0.0000019603, +0.0000019565,0.0000019522,0.0000019485,0.0000019460,0.0000019449, +0.0000019450,0.0000019460,0.0000019482,0.0000019514,0.0000019539, +0.0000019554,0.0000019563,0.0000019568,0.0000019557,0.0000019527, +0.0000019483,0.0000019443,0.0000019419,0.0000019409,0.0000019399, +0.0000019402,0.0000019413,0.0000019414,0.0000019397,0.0000019363, +0.0000019316,0.0000019259,0.0000019208,0.0000019182,0.0000019178, +0.0000019189,0.0000019205,0.0000019220,0.0000019236,0.0000019246, +0.0000019253,0.0000019257,0.0000019248,0.0000019223,0.0000019196, +0.0000019200,0.0000019204,0.0000019198,0.0000019177,0.0000019142, +0.0000019104,0.0000019070,0.0000019039,0.0000019007,0.0000018969, +0.0000018918,0.0000018865,0.0000018819,0.0000018784,0.0000018758, +0.0000018753,0.0000018763,0.0000018815,0.0000018885,0.0000018926, +0.0000018956,0.0000018966,0.0000018940,0.0000018890,0.0000018865, +0.0000018864,0.0000018895,0.0000018941,0.0000019004,0.0000019061, +0.0000019086,0.0000019080,0.0000019077,0.0000019104,0.0000019163, +0.0000019213,0.0000019242,0.0000019261,0.0000019269,0.0000019277, +0.0000019284,0.0000019285,0.0000019246,0.0000019168,0.0000019098, +0.0000019062,0.0000019048,0.0000019026,0.0000018993,0.0000018975, +0.0000019014,0.0000019104,0.0000019182,0.0000019214,0.0000019201, +0.0000019166,0.0000019113,0.0000019024,0.0000018925,0.0000018867, +0.0000018856,0.0000018886,0.0000018944,0.0000019000,0.0000019005, +0.0000018935,0.0000018834,0.0000018726,0.0000018635,0.0000018549, +0.0000018464,0.0000018428,0.0000018447,0.0000018486,0.0000018516, +0.0000018528,0.0000018527,0.0000018517,0.0000018504,0.0000018488, +0.0000018469,0.0000018447,0.0000018432,0.0000018431,0.0000018428, +0.0000018408,0.0000018356,0.0000018271,0.0000018177,0.0000018083, +0.0000017993,0.0000017906,0.0000017827,0.0000017771,0.0000017742, +0.0000017721,0.0000017684,0.0000017631,0.0000017589,0.0000017574, +0.0000017578,0.0000017598,0.0000017617,0.0000017653,0.0000017690, +0.0000017726,0.0000017759,0.0000017774,0.0000017761,0.0000017738, +0.0000017716,0.0000017688,0.0000017644,0.0000017609,0.0000017599, +0.0000017596,0.0000017583,0.0000017553,0.0000017516,0.0000017473, +0.0000017414,0.0000017352,0.0000017315,0.0000017309,0.0000017317, +0.0000017316,0.0000017316,0.0000017343,0.0000017386,0.0000017414, +0.0000017424,0.0000017447,0.0000017481,0.0000017497,0.0000017491, +0.0000017454,0.0000017388,0.0000017336,0.0000017312,0.0000017316, +0.0000017321,0.0000017320,0.0000017304,0.0000017273,0.0000017216, +0.0000017156,0.0000017117,0.0000017097,0.0000017068,0.0000017046, +0.0000017016,0.0000017008,0.0000017046,0.0000017126,0.0000017234, +0.0000017334,0.0000017411,0.0000017491,0.0000017582,0.0000017669, +0.0000017763,0.0000017865,0.0000017985,0.0000018123,0.0000018296, +0.0000018462,0.0000018550,0.0000018569,0.0000018551,0.0000018539, +0.0000018551,0.0000018550,0.0000018506,0.0000018449,0.0000018421, +0.0000018423,0.0000018421,0.0000018399,0.0000018388,0.0000018385, +0.0000018359,0.0000018326,0.0000018325,0.0000018350,0.0000018359, +0.0000018312,0.0000018237,0.0000018191,0.0000018172,0.0000018161, +0.0000018131,0.0000018075,0.0000018034,0.0000018018,0.0000017984, +0.0000017923,0.0000017884,0.0000017893,0.0000017949,0.0000018045, +0.0000018141,0.0000018206,0.0000018231,0.0000018235,0.0000018298, +0.0000018402,0.0000018444,0.0000018449,0.0000018422,0.0000018441, +0.0000018492,0.0000018425,0.0000018264,0.0000018135,0.0000018045, +0.0000018001,0.0000018044,0.0000018148,0.0000018211,0.0000018238, +0.0000018253,0.0000018254,0.0000018234,0.0000018191,0.0000018128, +0.0000018055,0.0000017999,0.0000017981,0.0000017988,0.0000017997, +0.0000018000,0.0000018005,0.0000018007,0.0000018003,0.0000017988, +0.0000017982,0.0000017999,0.0000018031,0.0000018056,0.0000018065, +0.0000018064,0.0000018059,0.0000018051,0.0000018047,0.0000018037, +0.0000018032,0.0000018054,0.0000018101,0.0000018167,0.0000018256, +0.0000018324,0.0000018335,0.0000018310,0.0000018292,0.0000018280, +0.0000018246,0.0000018188,0.0000018144,0.0000018106,0.0000018075, +0.0000018079,0.0000018121,0.0000018176,0.0000018243,0.0000018322, +0.0000018385,0.0000018431,0.0000018459,0.0000018463,0.0000018420, +0.0000018330,0.0000018243,0.0000018162,0.0000018020,0.0000017847, +0.0000017810,0.0000017864,0.0000017927,0.0000017931,0.0000017883, +0.0000017770,0.0000017695,0.0000017698,0.0000017725,0.0000017730, +0.0000017731,0.0000017640,0.0000017500,0.0000017463,0.0000017544, +0.0000017686,0.0000017742,0.0000017722,0.0000017697,0.0000017681, +0.0000017680,0.0000017713,0.0000017722,0.0000017798,0.0000017802, +0.0000017565,0.0000017540,0.0000017547,0.0000017580,0.0000017660, +0.0000017800,0.0000017815,0.0000017802,0.0000017766,0.0000017687, +0.0000017666,0.0000017696,0.0000017704,0.0000017647,0.0000017581, +0.0000017549,0.0000017518,0.0000017495,0.0000017513,0.0000017587, +0.0000017695,0.0000017804,0.0000017915,0.0000018020,0.0000018079, +0.0000018097,0.0000018095,0.0000018081,0.0000018063,0.0000018044, +0.0000018026,0.0000018001,0.0000017965,0.0000017915,0.0000017857, +0.0000017801,0.0000017759,0.0000017739,0.0000017733,0.0000017723, +0.0000017683,0.0000017670,0.0000017686,0.0000017729,0.0000017750, +0.0000017695,0.0000017592,0.0000017546,0.0000017669,0.0000017881, +0.0000017932,0.0000017891,0.0000017883,0.0000017943,0.0000018012, +0.0000018028,0.0000018010,0.0000018009,0.0000018068,0.0000018156, +0.0000018214,0.0000018262,0.0000018344,0.0000018452,0.0000018538, +0.0000018562,0.0000018560,0.0000018569,0.0000018558,0.0000018502, +0.0000018428,0.0000018303,0.0000018142,0.0000018112,0.0000018211, +0.0000018303,0.0000018336,0.0000018355,0.0000018363,0.0000018322, +0.0000018228,0.0000018182,0.0000018209,0.0000018282,0.0000018346, +0.0000018401,0.0000018420,0.0000018399,0.0000018365,0.0000018353, +0.0000018349,0.0000018335,0.0000018317,0.0000018312,0.0000018331, +0.0000018368,0.0000018396,0.0000018400,0.0000018373,0.0000018301, +0.0000018192,0.0000018084,0.0000018024,0.0000018026,0.0000018071, +0.0000018122,0.0000018170,0.0000018192,0.0000018199,0.0000018208, +0.0000018234,0.0000018282,0.0000018342,0.0000018394,0.0000018430, +0.0000018448,0.0000018451,0.0000018445,0.0000018433,0.0000018423, +0.0000018420,0.0000018420,0.0000018417,0.0000018415,0.0000018413, +0.0000018411,0.0000018404,0.0000018389,0.0000018363,0.0000018328, +0.0000018287,0.0000018251,0.0000018220,0.0000018188,0.0000018152, +0.0000018105,0.0000018061,0.0000018046,0.0000018053,0.0000018107, +0.0000018178,0.0000018267,0.0000018361,0.0000018440,0.0000018501, +0.0000018551,0.0000018580,0.0000018576,0.0000018557,0.0000018502, +0.0000018456,0.0000018455,0.0000018612,0.0000019272,0.0000019695, +0.0000019767,0.0000019833,0.0000019901,0.0000019907,0.0000019934, +0.0000020001,0.0000020019,0.0000020016,0.0000019992,0.0000019965, +0.0000019973,0.0000019993,0.0000020002,0.0000020010,0.0000020024, +0.0000020040,0.0000020051,0.0000020055,0.0000020043,0.0000020047, +0.0000020011,0.0000019950,0.0000019865,0.0000019767,0.0000019670, +0.0000019618,0.0000019604,0.0000019640,0.0000019685,0.0000019700, +0.0000019711,0.0000019689,0.0000019643,0.0000019585,0.0000019524, +0.0000019466,0.0000019418,0.0000019386,0.0000019368,0.0000019359, +0.0000019354,0.0000019349,0.0000019342,0.0000019329,0.0000019307, +0.0000019276,0.0000019240,0.0000019199,0.0000019152,0.0000019102, +0.0000019050,0.0000018998,0.0000018949,0.0000018904,0.0000018865, +0.0000018835,0.0000018818,0.0000018816,0.0000018835,0.0000018876, +0.0000018938,0.0000019020,0.0000019119,0.0000019228,0.0000019327, +0.0000019405,0.0000019467,0.0000019529,0.0000019573,0.0000019563, +0.0000019499,0.0000019438,0.0000019415,0.0000019393,0.0000019349, +0.0000019315,0.0000019326,0.0000019381,0.0000019444,0.0000019453, +0.0000019300,0.0000018925,0.0000018469,0.0000018156,0.0000018086, +0.0000018147,0.0000018268,0.0000018374,0.0000018445,0.0000018498, +0.0000018539,0.0000018543,0.0000018533,0.0000018496,0.0000018452, +0.0000018415,0.0000018399,0.0000018420,0.0000018449,0.0000018495, +0.0000018545,0.0000018584,0.0000018602,0.0000018619,0.0000018618, +0.0000018601,0.0000018568,0.0000018534,0.0000018499,0.0000018468, +0.0000018445,0.0000018429,0.0000018406,0.0000018378,0.0000018350, +0.0000018319,0.0000018296,0.0000018287,0.0000018288,0.0000018308, +0.0000018362,0.0000018414,0.0000018486,0.0000018558,0.0000018639, +0.0000018739,0.0000018844,0.0000018918,0.0000018944,0.0000018943, +0.0000018908,0.0000018830,0.0000018742,0.0000018681,0.0000018662, +0.0000018696,0.0000018806,0.0000018931,0.0000018944,0.0000018766, +0.0000018515,0.0000018366,0.0000018318,0.0000018310,0.0000018293, +0.0000018277,0.0000018267,0.0000018259,0.0000018253,0.0000018243, +0.0000018229,0.0000018209,0.0000018191,0.0000018189,0.0000018197, +0.0000018220,0.0000018281,0.0000018378,0.0000018498,0.0000018653, +0.0000018817,0.0000018963,0.0000019098,0.0000019216,0.0000019314, +0.0000019404,0.0000019485,0.0000019557,0.0000019622,0.0000019684, +0.0000019748,0.0000019817,0.0000019878,0.0000019940,0.0000020005, +0.0000020059,0.0000020102,0.0000020129,0.0000020145,0.0000020150, +0.0000020145,0.0000020133,0.0000020118,0.0000020104,0.0000020088, +0.0000020068,0.0000020048,0.0000020030,0.0000020018,0.0000020003, +0.0000019980,0.0000019961,0.0000019938,0.0000019907,0.0000019910, +0.0000019928,0.0000019953,0.0000019973,0.0000019992,0.0000020049, +0.0000020111,0.0000020013,0.0000019739,0.0000019670,0.0000019683, +0.0000019693,0.0000019741,0.0000019748,0.0000019710,0.0000019678, +0.0000019784,0.0000020040,0.0000020136,0.0000020139,0.0000020121, +0.0000020003,0.0000019813,0.0000019698,0.0000019665,0.0000019669, +0.0000019789,0.0000020031,0.0000020261,0.0000020365,0.0000020318, +0.0000020189,0.0000020032,0.0000019908,0.0000019839,0.0000019799, +0.0000019766,0.0000019777,0.0000019881,0.0000020016,0.0000020131, +0.0000020169,0.0000020139,0.0000020087,0.0000020054,0.0000020028, +0.0000019993,0.0000019906,0.0000019777,0.0000019589,0.0000019382, +0.0000019195,0.0000019037,0.0000018896,0.0000018791,0.0000018720, +0.0000018670,0.0000018630,0.0000018596,0.0000018562,0.0000018537, +0.0000018520,0.0000018523,0.0000018537,0.0000018538,0.0000018532, +0.0000018542,0.0000018558,0.0000018589,0.0000018628,0.0000018686, +0.0000018728,0.0000018824,0.0000018959,0.0000019152,0.0000019367, +0.0000019597,0.0000019812,0.0000019992,0.0000020126,0.0000020221, +0.0000020294,0.0000020359,0.0000020409,0.0000020434,0.0000020437, +0.0000020433,0.0000020418,0.0000020407,0.0000020398,0.0000020392, +0.0000020395,0.0000020409,0.0000020422,0.0000020450,0.0000020457, +0.0000020452,0.0000020458,0.0000020494,0.0000020550,0.0000020593, +0.0000020603,0.0000020597,0.0000020582,0.0000020571,0.0000020561, +0.0000020547,0.0000020528,0.0000020507,0.0000020484,0.0000020453, +0.0000020427,0.0000020421,0.0000020427,0.0000020438,0.0000020448, +0.0000020456,0.0000020460,0.0000020460,0.0000020458,0.0000020456, +0.0000020457,0.0000020456,0.0000020454,0.0000020448,0.0000020441, +0.0000020433,0.0000020423,0.0000020416,0.0000020412,0.0000020411, +0.0000020411,0.0000020410,0.0000020411,0.0000020414,0.0000020419, +0.0000020424,0.0000020431,0.0000020438,0.0000020445,0.0000020449, +0.0000020450,0.0000020449,0.0000020451,0.0000020459,0.0000020464, +0.0000020476,0.0000020483,0.0000020491,0.0000020492,0.0000020495, +0.0000020491,0.0000020486,0.0000020487,0.0000020487,0.0000020487, +0.0000020489,0.0000020490,0.0000020489,0.0000020488,0.0000020485, +0.0000020481,0.0000020471,0.0000020455,0.0000020440,0.0000020406, +0.0000020370,0.0000020314,0.0000020267,0.0000020238,0.0000020223, +0.0000020219,0.0000020227,0.0000020239,0.0000020255,0.0000020267, +0.0000020268,0.0000020266,0.0000020239,0.0000020194,0.0000020147, +0.0000020114,0.0000020081,0.0000020056,0.0000020042,0.0000020046, +0.0000020068,0.0000020103,0.0000020127,0.0000020122,0.0000020123, +0.0000020124,0.0000020123,0.0000020129,0.0000020132,0.0000020132, +0.0000020123,0.0000020129,0.0000020146,0.0000020172,0.0000020221, +0.0000020267,0.0000020325,0.0000020393,0.0000020451,0.0000020493, +0.0000020513,0.0000020513,0.0000020507,0.0000020491,0.0000020467, +0.0000020430,0.0000020383,0.0000020343,0.0000020337,0.0000020349, +0.0000020351,0.0000020339,0.0000020321,0.0000020293,0.0000020256, +0.0000020211,0.0000020163,0.0000020111,0.0000020066,0.0000020026, +0.0000020011,0.0000020001,0.0000019999,0.0000020007,0.0000020026, +0.0000020064,0.0000020132,0.0000020221,0.0000020310,0.0000020375, +0.0000020426,0.0000020445,0.0000020436,0.0000020420,0.0000020400, +0.0000020369,0.0000020330,0.0000020301,0.0000020292,0.0000020298, +0.0000020317,0.0000020318,0.0000020316,0.0000020312,0.0000020299, +0.0000020278,0.0000020250,0.0000020214,0.0000020177,0.0000020145, +0.0000020113,0.0000020073,0.0000020048,0.0000020025,0.0000019997, +0.0000019968,0.0000019946,0.0000019930,0.0000019911,0.0000019888, +0.0000019858,0.0000019822,0.0000019782,0.0000019735,0.0000019693, +0.0000019661,0.0000019648,0.0000019651,0.0000019668,0.0000019694, +0.0000019726,0.0000019754,0.0000019765,0.0000019769,0.0000019772, +0.0000019760,0.0000019733,0.0000019691,0.0000019643,0.0000019610, +0.0000019600,0.0000019595,0.0000019590,0.0000019585,0.0000019575, +0.0000019554,0.0000019523,0.0000019483,0.0000019427,0.0000019364, +0.0000019305,0.0000019253,0.0000019219,0.0000019205,0.0000019200, +0.0000019218,0.0000019239,0.0000019262,0.0000019281,0.0000019291, +0.0000019284,0.0000019254,0.0000019228,0.0000019226,0.0000019227, +0.0000019231,0.0000019227,0.0000019208,0.0000019173,0.0000019140, +0.0000019121,0.0000019114,0.0000019093,0.0000019049,0.0000018990, +0.0000018927,0.0000018865,0.0000018809,0.0000018775,0.0000018776, +0.0000018826,0.0000018888,0.0000018937,0.0000018971,0.0000018986, +0.0000018975,0.0000018935,0.0000018918,0.0000018920,0.0000018947, +0.0000018980,0.0000019022,0.0000019059,0.0000019067,0.0000019058, +0.0000019056,0.0000019089,0.0000019152,0.0000019211,0.0000019256, +0.0000019281,0.0000019313,0.0000019333,0.0000019342,0.0000019333, +0.0000019282,0.0000019205,0.0000019130,0.0000019078,0.0000019049, +0.0000019028,0.0000018997,0.0000018974,0.0000019017,0.0000019094, +0.0000019172,0.0000019200,0.0000019194,0.0000019186,0.0000019147, +0.0000019054,0.0000018941,0.0000018865,0.0000018851,0.0000018870, +0.0000018923,0.0000018977,0.0000018990,0.0000018953,0.0000018860, +0.0000018755,0.0000018657,0.0000018555,0.0000018466,0.0000018434, +0.0000018450,0.0000018491,0.0000018524,0.0000018545,0.0000018547, +0.0000018549,0.0000018542,0.0000018533,0.0000018516,0.0000018491, +0.0000018468,0.0000018446,0.0000018422,0.0000018389,0.0000018346, +0.0000018299,0.0000018243,0.0000018169,0.0000018076,0.0000017968, +0.0000017864,0.0000017789,0.0000017757,0.0000017743,0.0000017718, +0.0000017681,0.0000017655,0.0000017645,0.0000017640,0.0000017640, +0.0000017650,0.0000017681,0.0000017712,0.0000017756,0.0000017791, +0.0000017796,0.0000017786,0.0000017779,0.0000017766,0.0000017731, +0.0000017686,0.0000017667,0.0000017667,0.0000017662,0.0000017638, +0.0000017599,0.0000017553,0.0000017498,0.0000017431,0.0000017372, +0.0000017343,0.0000017343,0.0000017350,0.0000017351,0.0000017362, +0.0000017388,0.0000017420,0.0000017437,0.0000017449,0.0000017472, +0.0000017496,0.0000017499,0.0000017493,0.0000017465,0.0000017422, +0.0000017372,0.0000017349,0.0000017342,0.0000017348,0.0000017352, +0.0000017352,0.0000017342,0.0000017303,0.0000017255,0.0000017215, +0.0000017178,0.0000017131,0.0000017074,0.0000017005,0.0000016974, +0.0000016987,0.0000017044,0.0000017111,0.0000017167,0.0000017221, +0.0000017301,0.0000017387,0.0000017472,0.0000017559,0.0000017676, +0.0000017850,0.0000018104,0.0000018347,0.0000018484,0.0000018526, +0.0000018513,0.0000018514,0.0000018525,0.0000018503,0.0000018440, +0.0000018379,0.0000018365,0.0000018382,0.0000018383,0.0000018373, +0.0000018370,0.0000018351,0.0000018319,0.0000018317,0.0000018343, +0.0000018347,0.0000018296,0.0000018230,0.0000018193,0.0000018178, +0.0000018168,0.0000018141,0.0000018085,0.0000018039,0.0000018017, +0.0000017975,0.0000017889,0.0000017805,0.0000017787,0.0000017833, +0.0000017932,0.0000018047,0.0000018134,0.0000018183,0.0000018197, +0.0000018241,0.0000018346,0.0000018418,0.0000018439,0.0000018434, +0.0000018405,0.0000018444,0.0000018473,0.0000018385,0.0000018211, +0.0000018065,0.0000017986,0.0000017983,0.0000018063,0.0000018161, +0.0000018215,0.0000018242,0.0000018256,0.0000018264,0.0000018252, +0.0000018216,0.0000018159,0.0000018096,0.0000018051,0.0000018040, +0.0000018041,0.0000018038,0.0000018036,0.0000018043,0.0000018047, +0.0000018036,0.0000018020,0.0000018024,0.0000018048,0.0000018072, +0.0000018087,0.0000018093,0.0000018090,0.0000018086,0.0000018076, +0.0000018059,0.0000018040,0.0000018047,0.0000018096,0.0000018157, +0.0000018233,0.0000018323,0.0000018371,0.0000018365,0.0000018340, +0.0000018335,0.0000018328,0.0000018301,0.0000018278,0.0000018259, +0.0000018225,0.0000018202,0.0000018203,0.0000018208,0.0000018226, +0.0000018285,0.0000018362,0.0000018430,0.0000018473,0.0000018482, +0.0000018462,0.0000018394,0.0000018311,0.0000018236,0.0000018160, +0.0000018016,0.0000017851,0.0000017837,0.0000017907,0.0000017946, +0.0000017940,0.0000017871,0.0000017761,0.0000017721,0.0000017748, +0.0000017768,0.0000017765,0.0000017705,0.0000017559,0.0000017475, +0.0000017509,0.0000017635,0.0000017720,0.0000017721,0.0000017689, +0.0000017651,0.0000017659,0.0000017713,0.0000017748,0.0000017752, +0.0000017838,0.0000017669,0.0000017543,0.0000017565,0.0000017586, +0.0000017648,0.0000017795,0.0000017829,0.0000017822,0.0000017819, +0.0000017751,0.0000017683,0.0000017688,0.0000017718,0.0000017708, +0.0000017645,0.0000017581,0.0000017540,0.0000017508,0.0000017486, +0.0000017485,0.0000017534,0.0000017616,0.0000017714,0.0000017802, +0.0000017881,0.0000017950,0.0000017995,0.0000018010,0.0000018004, +0.0000017984,0.0000017956,0.0000017918,0.0000017877,0.0000017837, +0.0000017805,0.0000017782,0.0000017764,0.0000017751,0.0000017739, +0.0000017714,0.0000017631,0.0000017626,0.0000017661,0.0000017708, +0.0000017730,0.0000017693,0.0000017612,0.0000017573,0.0000017670, +0.0000017873,0.0000017943,0.0000017910,0.0000017875,0.0000017904, +0.0000017985,0.0000018030,0.0000018028,0.0000018012,0.0000018046, +0.0000018137,0.0000018209,0.0000018241,0.0000018282,0.0000018367, +0.0000018478,0.0000018553,0.0000018567,0.0000018561,0.0000018564, +0.0000018545,0.0000018484,0.0000018404,0.0000018265,0.0000018118, +0.0000018123,0.0000018240,0.0000018313,0.0000018330,0.0000018347, +0.0000018335,0.0000018257,0.0000018174,0.0000018172,0.0000018244, +0.0000018341,0.0000018425,0.0000018468,0.0000018453,0.0000018402, +0.0000018356,0.0000018333,0.0000018322,0.0000018317,0.0000018323, +0.0000018347,0.0000018371,0.0000018374,0.0000018337,0.0000018241, +0.0000018106,0.0000018000,0.0000017969,0.0000018009,0.0000018076, +0.0000018132,0.0000018154,0.0000018164,0.0000018186,0.0000018236, +0.0000018317,0.0000018398,0.0000018457,0.0000018489,0.0000018499, +0.0000018499,0.0000018494,0.0000018485,0.0000018472,0.0000018458, +0.0000018448,0.0000018443,0.0000018442,0.0000018441,0.0000018441, +0.0000018442,0.0000018444,0.0000018447,0.0000018447,0.0000018445, +0.0000018437,0.0000018421,0.0000018385,0.0000018329,0.0000018269, +0.0000018212,0.0000018160,0.0000018113,0.0000018075,0.0000018047, +0.0000018039,0.0000018054,0.0000018122,0.0000018207,0.0000018295, +0.0000018379,0.0000018458,0.0000018522,0.0000018556,0.0000018546, +0.0000018510,0.0000018463,0.0000018475,0.0000018872,0.0000019559, +0.0000019764,0.0000019804,0.0000019889,0.0000019928,0.0000019947, +0.0000020007,0.0000020037,0.0000020044,0.0000020032,0.0000020009, +0.0000020014,0.0000020038,0.0000020065,0.0000020088,0.0000020106, +0.0000020096,0.0000020089,0.0000020044,0.0000019986,0.0000019910, +0.0000019827,0.0000019737,0.0000019665,0.0000019628,0.0000019620, +0.0000019644,0.0000019687,0.0000019698,0.0000019699,0.0000019654, +0.0000019569,0.0000019456,0.0000019326,0.0000019195,0.0000019078, +0.0000018981,0.0000018909,0.0000018866,0.0000018847,0.0000018840, +0.0000018842,0.0000018847,0.0000018851,0.0000018848,0.0000018837, +0.0000018815,0.0000018788,0.0000018756,0.0000018722,0.0000018689, +0.0000018661,0.0000018636,0.0000018612,0.0000018586,0.0000018566, +0.0000018549,0.0000018539,0.0000018535,0.0000018541,0.0000018558, +0.0000018588,0.0000018636,0.0000018703,0.0000018798,0.0000018923, +0.0000019058,0.0000019182,0.0000019285,0.0000019367,0.0000019412, +0.0000019414,0.0000019400,0.0000019399,0.0000019389,0.0000019346, +0.0000019305,0.0000019313,0.0000019371,0.0000019425,0.0000019358, +0.0000019056,0.0000018589,0.0000018220,0.0000018103,0.0000018171, +0.0000018306,0.0000018427,0.0000018499,0.0000018539,0.0000018546, +0.0000018542,0.0000018497,0.0000018424,0.0000018364,0.0000018337, +0.0000018349,0.0000018397,0.0000018459,0.0000018511,0.0000018539, +0.0000018559,0.0000018568,0.0000018560,0.0000018564,0.0000018564, +0.0000018560,0.0000018549,0.0000018540,0.0000018523,0.0000018522, +0.0000018522,0.0000018511,0.0000018485,0.0000018449,0.0000018412, +0.0000018378,0.0000018367,0.0000018367,0.0000018367,0.0000018372, +0.0000018380,0.0000018385,0.0000018400,0.0000018433,0.0000018493, +0.0000018578,0.0000018670,0.0000018731,0.0000018758,0.0000018767, +0.0000018766,0.0000018750,0.0000018738,0.0000018735,0.0000018730, +0.0000018734,0.0000018787,0.0000018892,0.0000018954,0.0000018851, +0.0000018596,0.0000018381,0.0000018295,0.0000018276,0.0000018280, +0.0000018304,0.0000018337,0.0000018358,0.0000018359,0.0000018337, +0.0000018302,0.0000018273,0.0000018255,0.0000018252,0.0000018252, +0.0000018246,0.0000018245,0.0000018249,0.0000018277,0.0000018340, +0.0000018449,0.0000018575,0.0000018715,0.0000018856,0.0000018982, +0.0000019102,0.0000019205,0.0000019291,0.0000019362,0.0000019429, +0.0000019498,0.0000019564,0.0000019623,0.0000019689,0.0000019756, +0.0000019817,0.0000019876,0.0000019931,0.0000019979,0.0000020015, +0.0000020037,0.0000020049,0.0000020054,0.0000020054,0.0000020052, +0.0000020047,0.0000020040,0.0000020035,0.0000020032,0.0000020023, +0.0000020012,0.0000020001,0.0000019989,0.0000019983,0.0000019991, +0.0000019994,0.0000019992,0.0000019996,0.0000020042,0.0000020113, +0.0000020083,0.0000019825,0.0000019694,0.0000019692,0.0000019702, +0.0000019748,0.0000019753,0.0000019711,0.0000019684,0.0000019821, +0.0000020079,0.0000020164,0.0000020169,0.0000020145,0.0000020028, +0.0000019834,0.0000019709,0.0000019675,0.0000019735,0.0000019907, +0.0000020150,0.0000020326,0.0000020348,0.0000020259,0.0000020108, +0.0000019968,0.0000019874,0.0000019825,0.0000019791,0.0000019787, +0.0000019891,0.0000020040,0.0000020151,0.0000020178,0.0000020144, +0.0000020093,0.0000020062,0.0000020013,0.0000019893,0.0000019715, +0.0000019470,0.0000019209,0.0000018979,0.0000018785,0.0000018655, +0.0000018593,0.0000018535,0.0000018474,0.0000018441,0.0000018427, +0.0000018406,0.0000018380,0.0000018354,0.0000018338,0.0000018341, +0.0000018357,0.0000018385,0.0000018422,0.0000018461,0.0000018502, +0.0000018542,0.0000018604,0.0000018661,0.0000018671,0.0000018654, +0.0000018614,0.0000018587,0.0000018593,0.0000018676,0.0000018849, +0.0000019096,0.0000019378,0.0000019654,0.0000019883,0.0000020045, +0.0000020156,0.0000020252,0.0000020346,0.0000020412,0.0000020434, +0.0000020430,0.0000020422,0.0000020417,0.0000020416,0.0000020421, +0.0000020420,0.0000020411,0.0000020386,0.0000020352,0.0000020335, +0.0000020347,0.0000020393,0.0000020464,0.0000020524,0.0000020556, +0.0000020567,0.0000020570,0.0000020567,0.0000020562,0.0000020552, +0.0000020535,0.0000020516,0.0000020497,0.0000020475,0.0000020458, +0.0000020458,0.0000020472,0.0000020489,0.0000020503,0.0000020513, +0.0000020519,0.0000020520,0.0000020516,0.0000020510,0.0000020506, +0.0000020504,0.0000020504,0.0000020494,0.0000020483,0.0000020473, +0.0000020463,0.0000020456,0.0000020455,0.0000020457,0.0000020459, +0.0000020460,0.0000020464,0.0000020470,0.0000020478,0.0000020477, +0.0000020481,0.0000020482,0.0000020482,0.0000020476,0.0000020468, +0.0000020454,0.0000020442,0.0000020434,0.0000020429,0.0000020422, +0.0000020412,0.0000020398,0.0000020381,0.0000020361,0.0000020342, +0.0000020328,0.0000020317,0.0000020308,0.0000020303,0.0000020300, +0.0000020296,0.0000020290,0.0000020288,0.0000020295,0.0000020306, +0.0000020322,0.0000020340,0.0000020363,0.0000020377,0.0000020372, +0.0000020345,0.0000020325,0.0000020300,0.0000020284,0.0000020263, +0.0000020248,0.0000020245,0.0000020248,0.0000020256,0.0000020262, +0.0000020267,0.0000020273,0.0000020270,0.0000020261,0.0000020245, +0.0000020226,0.0000020210,0.0000020195,0.0000020177,0.0000020162, +0.0000020150,0.0000020136,0.0000020126,0.0000020118,0.0000020115, +0.0000020118,0.0000020129,0.0000020148,0.0000020163,0.0000020190, +0.0000020228,0.0000020272,0.0000020322,0.0000020367,0.0000020399, +0.0000020432,0.0000020464,0.0000020487,0.0000020502,0.0000020503, +0.0000020487,0.0000020457,0.0000020420,0.0000020373,0.0000020319, +0.0000020275,0.0000020260,0.0000020271,0.0000020279,0.0000020267, +0.0000020246,0.0000020217,0.0000020183,0.0000020144,0.0000020100, +0.0000020064,0.0000020049,0.0000020037,0.0000020039,0.0000020053, +0.0000020071,0.0000020094,0.0000020117,0.0000020151,0.0000020199, +0.0000020260,0.0000020329,0.0000020373,0.0000020397,0.0000020398, +0.0000020378,0.0000020337,0.0000020281,0.0000020236,0.0000020188, +0.0000020153,0.0000020158,0.0000020200,0.0000020263,0.0000020329, +0.0000020376,0.0000020408,0.0000020432,0.0000020452,0.0000020441, +0.0000020414,0.0000020382,0.0000020360,0.0000020349,0.0000020325, +0.0000020308,0.0000020285,0.0000020246,0.0000020197,0.0000020150, +0.0000020103,0.0000020066,0.0000020032,0.0000019993,0.0000019950, +0.0000019913,0.0000019874,0.0000019837,0.0000019810,0.0000019795, +0.0000019795,0.0000019814,0.0000019838,0.0000019860,0.0000019875, +0.0000019877,0.0000019874,0.0000019876,0.0000019868,0.0000019848, +0.0000019817,0.0000019780,0.0000019752,0.0000019747,0.0000019753, +0.0000019764,0.0000019768,0.0000019763,0.0000019749,0.0000019725, +0.0000019688,0.0000019638,0.0000019580,0.0000019517,0.0000019444, +0.0000019371,0.0000019313,0.0000019269,0.0000019245,0.0000019248, +0.0000019269,0.0000019287,0.0000019298,0.0000019304,0.0000019301, +0.0000019286,0.0000019271,0.0000019256,0.0000019243,0.0000019240, +0.0000019237,0.0000019230,0.0000019204,0.0000019179,0.0000019173, +0.0000019182,0.0000019182,0.0000019156,0.0000019110,0.0000019052, +0.0000018984,0.0000018913,0.0000018857,0.0000018835,0.0000018853, +0.0000018896,0.0000018932,0.0000018959,0.0000018982,0.0000018964, +0.0000018930,0.0000018918,0.0000018922,0.0000018952,0.0000018982, +0.0000019008,0.0000019024,0.0000019019,0.0000019007,0.0000019008, +0.0000019039,0.0000019101,0.0000019162,0.0000019222,0.0000019278, +0.0000019326,0.0000019354,0.0000019356,0.0000019344,0.0000019297, +0.0000019234,0.0000019160,0.0000019101,0.0000019074,0.0000019060, +0.0000019026,0.0000019011,0.0000019042,0.0000019098,0.0000019154, +0.0000019174,0.0000019179,0.0000019187,0.0000019161,0.0000019076, +0.0000018954,0.0000018868,0.0000018853,0.0000018866,0.0000018895, +0.0000018934,0.0000018961,0.0000018939,0.0000018875,0.0000018784, +0.0000018677,0.0000018560,0.0000018470,0.0000018437,0.0000018447, +0.0000018482,0.0000018519,0.0000018537,0.0000018548,0.0000018553, +0.0000018553,0.0000018553,0.0000018539,0.0000018517,0.0000018493, +0.0000018460,0.0000018417,0.0000018373,0.0000018340,0.0000018319, +0.0000018293,0.0000018241,0.0000018158,0.0000018045,0.0000017922, +0.0000017825,0.0000017773,0.0000017752,0.0000017737,0.0000017725, +0.0000017724,0.0000017725,0.0000017721,0.0000017717,0.0000017721, +0.0000017737,0.0000017770,0.0000017807,0.0000017822,0.0000017819, +0.0000017822,0.0000017827,0.0000017808,0.0000017765,0.0000017729, +0.0000017720,0.0000017724,0.0000017716,0.0000017681,0.0000017631, +0.0000017577,0.0000017516,0.0000017450,0.0000017404,0.0000017389, +0.0000017394,0.0000017397,0.0000017401,0.0000017413,0.0000017434, +0.0000017455,0.0000017462,0.0000017470,0.0000017482,0.0000017490, +0.0000017491,0.0000017489,0.0000017482,0.0000017451,0.0000017416, +0.0000017387,0.0000017371,0.0000017365,0.0000017365,0.0000017373, +0.0000017371,0.0000017346,0.0000017307,0.0000017282,0.0000017269, +0.0000017232,0.0000017151,0.0000017053,0.0000017010,0.0000017023, +0.0000017057,0.0000017085,0.0000017103,0.0000017152,0.0000017226, +0.0000017294,0.0000017344,0.0000017424,0.0000017593,0.0000017893, +0.0000018198,0.0000018383,0.0000018446,0.0000018444,0.0000018451, +0.0000018447,0.0000018398,0.0000018319,0.0000018284,0.0000018314, +0.0000018348,0.0000018355,0.0000018355,0.0000018342,0.0000018311, +0.0000018308,0.0000018335,0.0000018337,0.0000018285,0.0000018230, +0.0000018205,0.0000018188,0.0000018180,0.0000018158,0.0000018102, +0.0000018045,0.0000018008,0.0000017967,0.0000017893,0.0000017791, +0.0000017737,0.0000017762,0.0000017855,0.0000017973,0.0000018065, +0.0000018128,0.0000018163,0.0000018198,0.0000018286,0.0000018381, +0.0000018416,0.0000018431,0.0000018412,0.0000018399,0.0000018452, +0.0000018459,0.0000018325,0.0000018121,0.0000017990,0.0000017950, +0.0000017969,0.0000018049,0.0000018128,0.0000018181,0.0000018217, +0.0000018248,0.0000018267,0.0000018254,0.0000018224,0.0000018172, +0.0000018118,0.0000018092,0.0000018090,0.0000018079,0.0000018061, +0.0000018057,0.0000018063,0.0000018058,0.0000018040,0.0000018032, +0.0000018043,0.0000018062,0.0000018076,0.0000018088,0.0000018096, +0.0000018101,0.0000018105,0.0000018099,0.0000018079,0.0000018057, +0.0000018076,0.0000018139,0.0000018220,0.0000018312,0.0000018393, +0.0000018417,0.0000018404,0.0000018392,0.0000018392,0.0000018379, +0.0000018357,0.0000018346,0.0000018326,0.0000018291,0.0000018261, +0.0000018237,0.0000018230,0.0000018261,0.0000018338,0.0000018426, +0.0000018481,0.0000018489,0.0000018476,0.0000018427,0.0000018371, +0.0000018314,0.0000018246,0.0000018157,0.0000018018,0.0000017866, +0.0000017849,0.0000017913,0.0000017960,0.0000017951,0.0000017865, +0.0000017779,0.0000017772,0.0000017793,0.0000017791,0.0000017754, +0.0000017625,0.0000017503,0.0000017496,0.0000017585,0.0000017674, +0.0000017702,0.0000017693,0.0000017642,0.0000017633,0.0000017679, +0.0000017764,0.0000017746,0.0000017798,0.0000017791,0.0000017571, +0.0000017568,0.0000017593,0.0000017642,0.0000017778,0.0000017841, +0.0000017830,0.0000017846,0.0000017819,0.0000017735,0.0000017697, +0.0000017711,0.0000017722,0.0000017698,0.0000017640,0.0000017578, +0.0000017530,0.0000017497,0.0000017479,0.0000017481,0.0000017502, +0.0000017544,0.0000017610,0.0000017688,0.0000017753,0.0000017795, +0.0000017817,0.0000017824,0.0000017819,0.0000017811,0.0000017804, +0.0000017799,0.0000017789,0.0000017773,0.0000017753,0.0000017731, +0.0000017709,0.0000017685,0.0000017660,0.0000017623,0.0000017624, +0.0000017661,0.0000017699,0.0000017708,0.0000017676,0.0000017625, +0.0000017611,0.0000017707,0.0000017885,0.0000017959,0.0000017938, +0.0000017885,0.0000017881,0.0000017947,0.0000018020,0.0000018045, +0.0000018031,0.0000018037,0.0000018108,0.0000018198,0.0000018242, +0.0000018260,0.0000018304,0.0000018398,0.0000018507,0.0000018569, +0.0000018569,0.0000018559,0.0000018560,0.0000018528,0.0000018458, +0.0000018370,0.0000018215,0.0000018098,0.0000018144,0.0000018266, +0.0000018309,0.0000018324,0.0000018337,0.0000018289,0.0000018189, +0.0000018149,0.0000018212,0.0000018330,0.0000018434,0.0000018486, +0.0000018481,0.0000018431,0.0000018367,0.0000018329,0.0000018321, +0.0000018329,0.0000018347,0.0000018364,0.0000018361,0.0000018312, +0.0000018202,0.0000018059,0.0000017954,0.0000017943,0.0000018007, +0.0000018093,0.0000018138,0.0000018143,0.0000018154,0.0000018213, +0.0000018318,0.0000018419,0.0000018483,0.0000018512,0.0000018524, +0.0000018534,0.0000018546,0.0000018552,0.0000018547,0.0000018533, +0.0000018512,0.0000018492,0.0000018480,0.0000018475,0.0000018479, +0.0000018488,0.0000018498,0.0000018505,0.0000018511,0.0000018514, +0.0000018510,0.0000018496,0.0000018472,0.0000018449,0.0000018430, +0.0000018416,0.0000018387,0.0000018323,0.0000018240,0.0000018171, +0.0000018130,0.0000018097,0.0000018065,0.0000018047,0.0000018070, +0.0000018101,0.0000018170,0.0000018244,0.0000018331,0.0000018425, +0.0000018504,0.0000018537,0.0000018510,0.0000018470,0.0000018583, +0.0000019224,0.0000019729,0.0000019795,0.0000019860,0.0000019935, +0.0000019957,0.0000020006,0.0000020046,0.0000020065,0.0000020076, +0.0000020073,0.0000020078,0.0000020096,0.0000020115,0.0000020113, +0.0000020107,0.0000020056,0.0000019968,0.0000019873,0.0000019782, +0.0000019701,0.0000019650,0.0000019643,0.0000019641,0.0000019666, +0.0000019693,0.0000019696,0.0000019698,0.0000019639,0.0000019527, +0.0000019377,0.0000019201,0.0000019014,0.0000018841,0.0000018712, +0.0000018626,0.0000018565,0.0000018528,0.0000018516,0.0000018521, +0.0000018528,0.0000018539,0.0000018554,0.0000018569,0.0000018580, +0.0000018586,0.0000018584,0.0000018578,0.0000018570,0.0000018561, +0.0000018554,0.0000018546,0.0000018541,0.0000018534,0.0000018524, +0.0000018517,0.0000018514,0.0000018514,0.0000018517,0.0000018526, +0.0000018539,0.0000018558,0.0000018580,0.0000018606,0.0000018639, +0.0000018677,0.0000018756,0.0000018872,0.0000019005,0.0000019120, +0.0000019203,0.0000019264,0.0000019315,0.0000019356,0.0000019360, +0.0000019319,0.0000019282,0.0000019299,0.0000019357,0.0000019363, +0.0000019152,0.0000018709,0.0000018293,0.0000018144,0.0000018206, +0.0000018359,0.0000018486,0.0000018548,0.0000018554,0.0000018551, +0.0000018502,0.0000018432,0.0000018360,0.0000018321,0.0000018315, +0.0000018361,0.0000018414,0.0000018471,0.0000018509,0.0000018531, +0.0000018546,0.0000018559,0.0000018575,0.0000018592,0.0000018610, +0.0000018619,0.0000018621,0.0000018617,0.0000018594,0.0000018575, +0.0000018569,0.0000018566,0.0000018547,0.0000018505,0.0000018451, +0.0000018403,0.0000018369,0.0000018367,0.0000018384,0.0000018402, +0.0000018414,0.0000018402,0.0000018379,0.0000018357,0.0000018362, +0.0000018414,0.0000018509,0.0000018603,0.0000018657,0.0000018677, +0.0000018693,0.0000018717,0.0000018735,0.0000018755,0.0000018773, +0.0000018785,0.0000018787,0.0000018806,0.0000018888,0.0000018994, +0.0000019000,0.0000018832,0.0000018570,0.0000018361,0.0000018262, +0.0000018250,0.0000018287,0.0000018367,0.0000018441,0.0000018492, +0.0000018502,0.0000018473,0.0000018443,0.0000018420,0.0000018416, +0.0000018418,0.0000018415,0.0000018406,0.0000018394,0.0000018385, +0.0000018390,0.0000018413,0.0000018469,0.0000018552,0.0000018634, +0.0000018739,0.0000018854,0.0000018963,0.0000019057,0.0000019137, +0.0000019215,0.0000019294,0.0000019367,0.0000019433,0.0000019497, +0.0000019547,0.0000019592,0.0000019648,0.0000019708,0.0000019768, +0.0000019824,0.0000019871,0.0000019912,0.0000019949,0.0000019980, +0.0000020005,0.0000020017,0.0000020029,0.0000020036,0.0000020036, +0.0000020035,0.0000020033,0.0000020032,0.0000020042,0.0000020042, +0.0000020040,0.0000020023,0.0000020011,0.0000020042,0.0000020120, +0.0000020116,0.0000019915,0.0000019723,0.0000019712,0.0000019715, +0.0000019754,0.0000019757,0.0000019714,0.0000019695,0.0000019858, +0.0000020119,0.0000020198,0.0000020206,0.0000020174,0.0000020043, +0.0000019858,0.0000019744,0.0000019721,0.0000019831,0.0000020030, +0.0000020238,0.0000020353,0.0000020314,0.0000020180,0.0000020027, +0.0000019914,0.0000019851,0.0000019813,0.0000019803,0.0000019885, +0.0000020046,0.0000020167,0.0000020191,0.0000020153,0.0000020105, +0.0000020066,0.0000019970,0.0000019767,0.0000019471,0.0000019149, +0.0000018872,0.0000018666,0.0000018551,0.0000018496,0.0000018456, +0.0000018417,0.0000018374,0.0000018302,0.0000018239,0.0000018215, +0.0000018214,0.0000018216,0.0000018208,0.0000018195,0.0000018204, +0.0000018200,0.0000018233,0.0000018289,0.0000018341,0.0000018377, +0.0000018428,0.0000018518,0.0000018607,0.0000018696,0.0000018794, +0.0000018835,0.0000018816,0.0000018715,0.0000018586,0.0000018531, +0.0000018567,0.0000018731,0.0000018998,0.0000019326,0.0000019656, +0.0000019902,0.0000020036,0.0000020132,0.0000020245,0.0000020349, +0.0000020406,0.0000020416,0.0000020405,0.0000020388,0.0000020374, +0.0000020355,0.0000020327,0.0000020297,0.0000020279,0.0000020285, +0.0000020304,0.0000020338,0.0000020384,0.0000020428,0.0000020459, +0.0000020477,0.0000020489,0.0000020494,0.0000020491,0.0000020482, +0.0000020468,0.0000020451,0.0000020432,0.0000020417,0.0000020408, +0.0000020406,0.0000020413,0.0000020425,0.0000020437,0.0000020446, +0.0000020454,0.0000020460,0.0000020464,0.0000020466,0.0000020470, +0.0000020476,0.0000020484,0.0000020487,0.0000020485,0.0000020484, +0.0000020479,0.0000020473,0.0000020470,0.0000020471,0.0000020471, +0.0000020471,0.0000020471,0.0000020470,0.0000020467,0.0000020460, +0.0000020451,0.0000020441,0.0000020427,0.0000020407,0.0000020381, +0.0000020353,0.0000020326,0.0000020305,0.0000020294,0.0000020280, +0.0000020264,0.0000020251,0.0000020239,0.0000020226,0.0000020213, +0.0000020214,0.0000020210,0.0000020206,0.0000020202,0.0000020196, +0.0000020184,0.0000020168,0.0000020149,0.0000020124,0.0000020116, +0.0000020125,0.0000020142,0.0000020173,0.0000020227,0.0000020278, +0.0000020314,0.0000020330,0.0000020327,0.0000020331,0.0000020319, +0.0000020301,0.0000020287,0.0000020276,0.0000020267,0.0000020262, +0.0000020261,0.0000020266,0.0000020265,0.0000020257,0.0000020245, +0.0000020233,0.0000020216,0.0000020198,0.0000020182,0.0000020172, +0.0000020162,0.0000020162,0.0000020165,0.0000020169,0.0000020179, +0.0000020199,0.0000020225,0.0000020257,0.0000020294,0.0000020331, +0.0000020369,0.0000020406,0.0000020435,0.0000020448,0.0000020455, +0.0000020470,0.0000020483,0.0000020489,0.0000020482,0.0000020452, +0.0000020406,0.0000020351,0.0000020291,0.0000020230,0.0000020186, +0.0000020177,0.0000020184,0.0000020190,0.0000020184,0.0000020169, +0.0000020148,0.0000020126,0.0000020109,0.0000020089,0.0000020081, +0.0000020092,0.0000020113,0.0000020141,0.0000020171,0.0000020192, +0.0000020206,0.0000020208,0.0000020200,0.0000020198,0.0000020212, +0.0000020241,0.0000020266,0.0000020299,0.0000020331,0.0000020326, +0.0000020307,0.0000020250,0.0000020159,0.0000020069,0.0000019925, +0.0000019848,0.0000019831,0.0000019876,0.0000019971,0.0000020098, +0.0000020227,0.0000020337,0.0000020413,0.0000020463,0.0000020487, +0.0000020491,0.0000020493,0.0000020512,0.0000020499,0.0000020469, +0.0000020436,0.0000020392,0.0000020342,0.0000020298,0.0000020257, +0.0000020225,0.0000020192,0.0000020155,0.0000020117,0.0000020068, +0.0000020014,0.0000019961,0.0000019920,0.0000019900,0.0000019902, +0.0000019917,0.0000019936,0.0000019945,0.0000019946,0.0000019939, +0.0000019930,0.0000019922,0.0000019911,0.0000019891,0.0000019870, +0.0000019848,0.0000019830,0.0000019823,0.0000019824,0.0000019831, +0.0000019841,0.0000019849,0.0000019857,0.0000019856,0.0000019843, +0.0000019814,0.0000019778,0.0000019738,0.0000019680,0.0000019607, +0.0000019532,0.0000019459,0.0000019392,0.0000019347,0.0000019332, +0.0000019328,0.0000019318,0.0000019303,0.0000019296,0.0000019298, +0.0000019299,0.0000019302,0.0000019290,0.0000019266,0.0000019244, +0.0000019234,0.0000019225,0.0000019204,0.0000019184,0.0000019182, +0.0000019201,0.0000019214,0.0000019220,0.0000019200,0.0000019156, +0.0000019095,0.0000019030,0.0000018966,0.0000018918,0.0000018902, +0.0000018915,0.0000018928,0.0000018942,0.0000018960,0.0000018938, +0.0000018907,0.0000018892,0.0000018890,0.0000018921,0.0000018948, +0.0000018965,0.0000018971,0.0000018961,0.0000018952,0.0000018952, +0.0000018977,0.0000019025,0.0000019084,0.0000019156,0.0000019227, +0.0000019290,0.0000019327,0.0000019332,0.0000019314,0.0000019280, +0.0000019235,0.0000019175,0.0000019123,0.0000019103,0.0000019094, +0.0000019077,0.0000019065,0.0000019074,0.0000019111,0.0000019135, +0.0000019142,0.0000019156,0.0000019175,0.0000019165,0.0000019083, +0.0000018958,0.0000018878,0.0000018860,0.0000018854,0.0000018866, +0.0000018886,0.0000018915,0.0000018912,0.0000018882,0.0000018810, +0.0000018701,0.0000018580,0.0000018489,0.0000018447,0.0000018458, +0.0000018486,0.0000018510,0.0000018525,0.0000018536,0.0000018544, +0.0000018548,0.0000018547,0.0000018538,0.0000018532,0.0000018515, +0.0000018479,0.0000018426,0.0000018373,0.0000018339,0.0000018333, +0.0000018326,0.0000018296,0.0000018228,0.0000018119,0.0000017987, +0.0000017873,0.0000017803,0.0000017770,0.0000017760,0.0000017767, +0.0000017782,0.0000017791,0.0000017795,0.0000017802,0.0000017814, +0.0000017835,0.0000017868,0.0000017885,0.0000017883,0.0000017883, +0.0000017895,0.0000017892,0.0000017860,0.0000017810,0.0000017775, +0.0000017771,0.0000017772,0.0000017753,0.0000017708,0.0000017658, +0.0000017605,0.0000017542,0.0000017486,0.0000017458,0.0000017455, +0.0000017455,0.0000017457,0.0000017460,0.0000017468,0.0000017484, +0.0000017491,0.0000017485,0.0000017479,0.0000017475,0.0000017471, +0.0000017475,0.0000017486,0.0000017488,0.0000017477,0.0000017450, +0.0000017422,0.0000017404,0.0000017389,0.0000017379,0.0000017379, +0.0000017368,0.0000017340,0.0000017325,0.0000017334,0.0000017346, +0.0000017311,0.0000017222,0.0000017136,0.0000017091,0.0000017091, +0.0000017096,0.0000017091,0.0000017104,0.0000017161,0.0000017212, +0.0000017229,0.0000017258,0.0000017386,0.0000017683,0.0000018022, +0.0000018247,0.0000018332,0.0000018336,0.0000018332,0.0000018305, +0.0000018240,0.0000018180,0.0000018209,0.0000018288,0.0000018326, +0.0000018340,0.0000018335,0.0000018307,0.0000018297,0.0000018321, +0.0000018327,0.0000018282,0.0000018236,0.0000018218,0.0000018204, +0.0000018194,0.0000018178,0.0000018128,0.0000018055,0.0000017996, +0.0000017950,0.0000017905,0.0000017828,0.0000017741,0.0000017725, +0.0000017801,0.0000017920,0.0000018019,0.0000018085,0.0000018132, +0.0000018171,0.0000018238,0.0000018333,0.0000018385,0.0000018407, +0.0000018417,0.0000018392,0.0000018410,0.0000018462,0.0000018417, +0.0000018214,0.0000018020,0.0000017937,0.0000017916,0.0000017934, +0.0000017993,0.0000018057,0.0000018107,0.0000018150,0.0000018195, +0.0000018223,0.0000018224,0.0000018198,0.0000018150,0.0000018111, +0.0000018101,0.0000018090,0.0000018058,0.0000018036,0.0000018032, +0.0000018030,0.0000018016,0.0000018003,0.0000018009,0.0000018027, +0.0000018041,0.0000018055,0.0000018069,0.0000018085,0.0000018101, +0.0000018121,0.0000018127,0.0000018108,0.0000018090,0.0000018116, +0.0000018192,0.0000018291,0.0000018389,0.0000018447,0.0000018457, +0.0000018451,0.0000018449,0.0000018456,0.0000018441,0.0000018413, +0.0000018383,0.0000018347,0.0000018311,0.0000018284,0.0000018272, +0.0000018284,0.0000018340,0.0000018421,0.0000018478,0.0000018485, +0.0000018461,0.0000018420,0.0000018379,0.0000018354,0.0000018325, +0.0000018252,0.0000018157,0.0000018022,0.0000017863,0.0000017837, +0.0000017924,0.0000017989,0.0000017966,0.0000017872,0.0000017809, +0.0000017809,0.0000017811,0.0000017784,0.0000017688,0.0000017548, +0.0000017497,0.0000017545,0.0000017621,0.0000017663,0.0000017684, +0.0000017651,0.0000017620,0.0000017640,0.0000017734,0.0000017769, +0.0000017747,0.0000017837,0.0000017670,0.0000017568,0.0000017603, +0.0000017639,0.0000017752,0.0000017851,0.0000017827,0.0000017842, +0.0000017863,0.0000017813,0.0000017739,0.0000017715,0.0000017718, +0.0000017709,0.0000017684,0.0000017635,0.0000017573,0.0000017517, +0.0000017489,0.0000017480,0.0000017484,0.0000017496,0.0000017515, +0.0000017548,0.0000017588,0.0000017628,0.0000017661,0.0000017680, +0.0000017688,0.0000017693,0.0000017702,0.0000017714,0.0000017723, +0.0000017719,0.0000017705,0.0000017688,0.0000017670,0.0000017653, +0.0000017636,0.0000017658,0.0000017651,0.0000017669,0.0000017690, +0.0000017686,0.0000017666,0.0000017647,0.0000017666,0.0000017777, +0.0000017924,0.0000017981,0.0000017970,0.0000017916,0.0000017881, +0.0000017917,0.0000017994,0.0000018046,0.0000018051,0.0000018039, +0.0000018069,0.0000018157,0.0000018230,0.0000018257,0.0000018275, +0.0000018333,0.0000018438,0.0000018539,0.0000018577,0.0000018569, +0.0000018559,0.0000018552,0.0000018500,0.0000018428,0.0000018325, +0.0000018161,0.0000018091,0.0000018190,0.0000018286,0.0000018303, +0.0000018327,0.0000018317,0.0000018227,0.0000018161,0.0000018191, +0.0000018312,0.0000018436,0.0000018494,0.0000018492,0.0000018450, +0.0000018385,0.0000018344,0.0000018338,0.0000018352,0.0000018367, +0.0000018362,0.0000018303,0.0000018173,0.0000018017,0.0000017919, +0.0000017933,0.0000018021,0.0000018114,0.0000018144,0.0000018144, +0.0000018178,0.0000018275,0.0000018392,0.0000018469,0.0000018507, +0.0000018534,0.0000018563,0.0000018590,0.0000018602,0.0000018597, +0.0000018567,0.0000018526,0.0000018486,0.0000018457,0.0000018442, +0.0000018434,0.0000018429,0.0000018428,0.0000018425,0.0000018424, +0.0000018428,0.0000018438,0.0000018449,0.0000018467,0.0000018483, +0.0000018496,0.0000018493,0.0000018458,0.0000018441,0.0000018408, +0.0000018381,0.0000018339,0.0000018268,0.0000018194,0.0000018144, +0.0000018113,0.0000018089,0.0000018077,0.0000018083,0.0000018113, +0.0000018151,0.0000018222,0.0000018325,0.0000018447,0.0000018518, +0.0000018502,0.0000018493,0.0000018813,0.0000019532,0.0000019795, +0.0000019837,0.0000019917,0.0000019965,0.0000020002,0.0000020048, +0.0000020073,0.0000020100,0.0000020121,0.0000020132,0.0000020134, +0.0000020130,0.0000020089,0.0000020003,0.0000019884,0.0000019775, +0.0000019704,0.0000019671,0.0000019654,0.0000019677,0.0000019709, +0.0000019727,0.0000019720,0.0000019691,0.0000019608,0.0000019480, +0.0000019313,0.0000019117,0.0000018910,0.0000018725,0.0000018583, +0.0000018486,0.0000018445,0.0000018440,0.0000018438,0.0000018443, +0.0000018450,0.0000018466,0.0000018479,0.0000018493,0.0000018508, +0.0000018522,0.0000018534,0.0000018543,0.0000018548,0.0000018548, +0.0000018545,0.0000018540,0.0000018533,0.0000018524,0.0000018512, +0.0000018498,0.0000018482,0.0000018468,0.0000018460,0.0000018459, +0.0000018466,0.0000018484,0.0000018511,0.0000018547,0.0000018586, +0.0000018618,0.0000018642,0.0000018656,0.0000018671,0.0000018694, +0.0000018783,0.0000018919,0.0000019035,0.0000019124,0.0000019218, +0.0000019298,0.0000019315,0.0000019280,0.0000019264,0.0000019305, +0.0000019329,0.0000019186,0.0000018796,0.0000018363,0.0000018190, +0.0000018237,0.0000018402,0.0000018533,0.0000018560,0.0000018554, +0.0000018510,0.0000018444,0.0000018371,0.0000018343,0.0000018337, +0.0000018376,0.0000018423,0.0000018466,0.0000018494,0.0000018515, +0.0000018538,0.0000018566,0.0000018599,0.0000018629,0.0000018649, +0.0000018668,0.0000018666,0.0000018651,0.0000018633,0.0000018608, +0.0000018575,0.0000018542,0.0000018512,0.0000018485,0.0000018448, +0.0000018402,0.0000018359,0.0000018327,0.0000018312,0.0000018324, +0.0000018350,0.0000018373,0.0000018389,0.0000018382,0.0000018362, +0.0000018336,0.0000018325,0.0000018345,0.0000018417,0.0000018521, +0.0000018608,0.0000018655,0.0000018683,0.0000018712,0.0000018740, +0.0000018762,0.0000018778,0.0000018801,0.0000018829,0.0000018861, +0.0000018921,0.0000019015,0.0000019079,0.0000019068,0.0000018896, +0.0000018629,0.0000018397,0.0000018270,0.0000018246,0.0000018297, +0.0000018390,0.0000018480,0.0000018521,0.0000018520,0.0000018509, +0.0000018508,0.0000018522,0.0000018539,0.0000018561,0.0000018575, +0.0000018593,0.0000018612,0.0000018613,0.0000018608,0.0000018607, +0.0000018621,0.0000018657,0.0000018706,0.0000018782,0.0000018864, +0.0000018932,0.0000018989,0.0000019049,0.0000019115,0.0000019186, +0.0000019266,0.0000019340,0.0000019391,0.0000019433,0.0000019475, +0.0000019519,0.0000019574,0.0000019636,0.0000019697,0.0000019759, +0.0000019827,0.0000019888,0.0000019937,0.0000019979,0.0000020014, +0.0000020036,0.0000020038,0.0000020041,0.0000020044,0.0000020057, +0.0000020065,0.0000020060,0.0000020046,0.0000020030,0.0000020048, +0.0000020121,0.0000020159,0.0000019992,0.0000019766,0.0000019733, +0.0000019740,0.0000019767,0.0000019765,0.0000019721,0.0000019709, +0.0000019886,0.0000020152,0.0000020235,0.0000020244,0.0000020198, +0.0000020051,0.0000019878,0.0000019798,0.0000019832,0.0000019963, +0.0000020139,0.0000020285,0.0000020332,0.0000020249,0.0000020092, +0.0000019956,0.0000019872,0.0000019831,0.0000019820,0.0000019866, +0.0000020023,0.0000020170,0.0000020208,0.0000020174,0.0000020124, +0.0000020063,0.0000019904,0.0000019614,0.0000019244,0.0000018895, +0.0000018634,0.0000018491,0.0000018438,0.0000018416,0.0000018381, +0.0000018323,0.0000018229,0.0000018151,0.0000018117,0.0000018109, +0.0000018126,0.0000018124,0.0000018138,0.0000018155,0.0000018167, +0.0000018231,0.0000018299,0.0000018383,0.0000018465,0.0000018532, +0.0000018567,0.0000018565,0.0000018562,0.0000018512,0.0000018508, +0.0000018502,0.0000018638,0.0000018849,0.0000018955,0.0000018934, +0.0000018761,0.0000018592,0.0000018542,0.0000018594,0.0000018768, +0.0000019057,0.0000019437,0.0000019779,0.0000019966,0.0000020041, +0.0000020122,0.0000020233,0.0000020323,0.0000020358,0.0000020356, +0.0000020342,0.0000020325,0.0000020300,0.0000020275,0.0000020269, +0.0000020279,0.0000020305,0.0000020332,0.0000020349,0.0000020362, +0.0000020369,0.0000020372,0.0000020375,0.0000020373,0.0000020365, +0.0000020351,0.0000020333,0.0000020313,0.0000020298,0.0000020287, +0.0000020276,0.0000020264,0.0000020255,0.0000020252,0.0000020253, +0.0000020252,0.0000020251,0.0000020253,0.0000020255,0.0000020260, +0.0000020269,0.0000020285,0.0000020308,0.0000020333,0.0000020354, +0.0000020369,0.0000020380,0.0000020387,0.0000020389,0.0000020389, +0.0000020390,0.0000020389,0.0000020386,0.0000020379,0.0000020365, +0.0000020349,0.0000020337,0.0000020329,0.0000020316,0.0000020300, +0.0000020280,0.0000020259,0.0000020241,0.0000020231,0.0000020229, +0.0000020223,0.0000020216,0.0000020216,0.0000020219,0.0000020221, +0.0000020221,0.0000020221,0.0000020223,0.0000020230,0.0000020241, +0.0000020248,0.0000020245,0.0000020230,0.0000020202,0.0000020153, +0.0000020103,0.0000020063,0.0000020042,0.0000020016,0.0000020042, +0.0000020094,0.0000020179,0.0000020261,0.0000020315,0.0000020342, +0.0000020358,0.0000020354,0.0000020347,0.0000020335,0.0000020318, +0.0000020305,0.0000020297,0.0000020290,0.0000020287,0.0000020278, +0.0000020268,0.0000020264,0.0000020255,0.0000020246,0.0000020241, +0.0000020241,0.0000020242,0.0000020252,0.0000020263,0.0000020276, +0.0000020294,0.0000020323,0.0000020353,0.0000020381,0.0000020405, +0.0000020422,0.0000020443,0.0000020464,0.0000020479,0.0000020482, +0.0000020486,0.0000020492,0.0000020486,0.0000020461,0.0000020415, +0.0000020352,0.0000020282,0.0000020212,0.0000020147,0.0000020103, +0.0000020093,0.0000020104,0.0000020114,0.0000020115,0.0000020128, +0.0000020124,0.0000020135,0.0000020145,0.0000020157,0.0000020184, +0.0000020218,0.0000020232,0.0000020230,0.0000020243,0.0000020227, +0.0000020194,0.0000020167,0.0000020137,0.0000020110,0.0000020135, +0.0000020195,0.0000020267,0.0000020347,0.0000020432,0.0000020485, +0.0000020504,0.0000020490,0.0000020432,0.0000020300,0.0000020085, +0.0000019862,0.0000019740,0.0000019662,0.0000019655,0.0000019721, +0.0000019851,0.0000020011,0.0000020161,0.0000020274,0.0000020353, +0.0000020402,0.0000020440,0.0000020482,0.0000020514,0.0000020525, +0.0000020525,0.0000020494,0.0000020446,0.0000020379,0.0000020321, +0.0000020278,0.0000020247,0.0000020220,0.0000020192,0.0000020149, +0.0000020104,0.0000020065,0.0000020038,0.0000020027,0.0000020031, +0.0000020046,0.0000020064,0.0000020076,0.0000020081,0.0000020076, +0.0000020066,0.0000020054,0.0000020039,0.0000020023,0.0000020008, +0.0000019994,0.0000019984,0.0000019974,0.0000019961,0.0000019945, +0.0000019930,0.0000019920,0.0000019912,0.0000019906,0.0000019895, +0.0000019874,0.0000019849,0.0000019828,0.0000019808,0.0000019778, +0.0000019740,0.0000019694,0.0000019631,0.0000019561,0.0000019500, +0.0000019455,0.0000019411,0.0000019364,0.0000019321,0.0000019297, +0.0000019294,0.0000019305,0.0000019317,0.0000019314,0.0000019290, +0.0000019262,0.0000019243,0.0000019229,0.0000019208,0.0000019183, +0.0000019174,0.0000019193,0.0000019221,0.0000019239,0.0000019246, +0.0000019218,0.0000019175,0.0000019126,0.0000019066,0.0000019009, +0.0000018970,0.0000018947,0.0000018928,0.0000018931,0.0000018939, +0.0000018913,0.0000018883,0.0000018861,0.0000018850,0.0000018872, +0.0000018891,0.0000018906,0.0000018914,0.0000018909,0.0000018908, +0.0000018910,0.0000018926,0.0000018962,0.0000019014,0.0000019080, +0.0000019155,0.0000019225,0.0000019266,0.0000019273,0.0000019263, +0.0000019245,0.0000019214,0.0000019167,0.0000019122,0.0000019109, +0.0000019114,0.0000019131,0.0000019129,0.0000019124,0.0000019131, +0.0000019132,0.0000019130,0.0000019142,0.0000019168,0.0000019162, +0.0000019079,0.0000018965,0.0000018884,0.0000018852,0.0000018843, +0.0000018840,0.0000018844,0.0000018863,0.0000018879,0.0000018873, +0.0000018838,0.0000018739,0.0000018620,0.0000018522,0.0000018475, +0.0000018482,0.0000018502,0.0000018515,0.0000018525,0.0000018533, +0.0000018535,0.0000018534,0.0000018532,0.0000018533,0.0000018536, +0.0000018532,0.0000018502,0.0000018447,0.0000018385,0.0000018354, +0.0000018352,0.0000018353,0.0000018332,0.0000018270,0.0000018167, +0.0000018046,0.0000017941,0.0000017865,0.0000017823,0.0000017816, +0.0000017826,0.0000017834,0.0000017838,0.0000017852,0.0000017875, +0.0000017902,0.0000017935,0.0000017961,0.0000017969,0.0000017969, +0.0000017979,0.0000017991,0.0000017978,0.0000017931,0.0000017875, +0.0000017839,0.0000017825,0.0000017809,0.0000017771,0.0000017728, +0.0000017687,0.0000017635,0.0000017577,0.0000017539,0.0000017524, +0.0000017516,0.0000017512,0.0000017514,0.0000017516,0.0000017523, +0.0000017531,0.0000017524,0.0000017501,0.0000017476,0.0000017458, +0.0000017447,0.0000017454,0.0000017475,0.0000017490,0.0000017483, +0.0000017469,0.0000017457,0.0000017441,0.0000017417,0.0000017397, +0.0000017377,0.0000017351,0.0000017336,0.0000017342,0.0000017367, +0.0000017383,0.0000017353,0.0000017291,0.0000017224,0.0000017185, +0.0000017160,0.0000017122,0.0000017111,0.0000017152,0.0000017188, +0.0000017186,0.0000017172,0.0000017240,0.0000017484,0.0000017821, +0.0000018079,0.0000018186,0.0000018187,0.0000018164,0.0000018125, +0.0000018072,0.0000018059,0.0000018178,0.0000018275,0.0000018313, +0.0000018327,0.0000018309,0.0000018290,0.0000018305,0.0000018317, +0.0000018286,0.0000018247,0.0000018234,0.0000018221,0.0000018204, +0.0000018190,0.0000018153,0.0000018080,0.0000018000,0.0000017939, +0.0000017906,0.0000017876,0.0000017792,0.0000017723,0.0000017755, +0.0000017875,0.0000017987,0.0000018058,0.0000018108,0.0000018151, +0.0000018206,0.0000018283,0.0000018342,0.0000018372,0.0000018405, +0.0000018402,0.0000018390,0.0000018437,0.0000018454,0.0000018311, +0.0000018084,0.0000017957,0.0000017915,0.0000017902,0.0000017930, +0.0000017993,0.0000018044,0.0000018083,0.0000018096,0.0000018133, +0.0000018150,0.0000018147,0.0000018118,0.0000018078,0.0000018060, +0.0000018048,0.0000018014,0.0000017973,0.0000017959,0.0000017965, +0.0000017967,0.0000017964,0.0000017970,0.0000018000,0.0000018021, +0.0000018039,0.0000018057,0.0000018072,0.0000018087,0.0000018112, +0.0000018145,0.0000018163,0.0000018158,0.0000018147,0.0000018170, +0.0000018249,0.0000018359,0.0000018448,0.0000018487,0.0000018496, +0.0000018498,0.0000018510,0.0000018521,0.0000018505,0.0000018458, +0.0000018404,0.0000018366,0.0000018349,0.0000018345,0.0000018353, +0.0000018387,0.0000018437,0.0000018470,0.0000018463,0.0000018421, +0.0000018376,0.0000018349,0.0000018342,0.0000018343,0.0000018313, +0.0000018244,0.0000018151,0.0000018005,0.0000017846,0.0000017840, +0.0000017944,0.0000018018,0.0000017980,0.0000017877,0.0000017829, +0.0000017826,0.0000017801,0.0000017739,0.0000017607,0.0000017513, +0.0000017519,0.0000017576,0.0000017617,0.0000017656,0.0000017661, +0.0000017626,0.0000017629,0.0000017674,0.0000017769,0.0000017741, +0.0000017802,0.0000017793,0.0000017593,0.0000017602,0.0000017638, +0.0000017717,0.0000017854,0.0000017821,0.0000017809,0.0000017859, +0.0000017870,0.0000017812,0.0000017751,0.0000017725,0.0000017709, +0.0000017691,0.0000017660,0.0000017612,0.0000017555,0.0000017518, +0.0000017497,0.0000017486,0.0000017492,0.0000017502,0.0000017527, +0.0000017558,0.0000017586,0.0000017611,0.0000017629,0.0000017642, +0.0000017656,0.0000017681,0.0000017710,0.0000017734,0.0000017744, +0.0000017745,0.0000017734,0.0000017715,0.0000017696,0.0000017678, +0.0000017714,0.0000017695,0.0000017692,0.0000017696,0.0000017689, +0.0000017682,0.0000017696,0.0000017752,0.0000017868,0.0000017978, +0.0000018012,0.0000018003,0.0000017952,0.0000017899,0.0000017908, +0.0000017968,0.0000018029,0.0000018055,0.0000018049,0.0000018048, +0.0000018097,0.0000018182,0.0000018241,0.0000018266,0.0000018297, +0.0000018373,0.0000018485,0.0000018568,0.0000018587,0.0000018571, +0.0000018560,0.0000018537,0.0000018471,0.0000018394,0.0000018269, +0.0000018118,0.0000018117,0.0000018231,0.0000018292,0.0000018317, +0.0000018336,0.0000018272,0.0000018176,0.0000018174,0.0000018286, +0.0000018425,0.0000018495,0.0000018497,0.0000018460,0.0000018403, +0.0000018369,0.0000018366,0.0000018374,0.0000018368,0.0000018309, +0.0000018170,0.0000017996,0.0000017889,0.0000017910,0.0000018024, +0.0000018125,0.0000018150,0.0000018154,0.0000018212,0.0000018330, +0.0000018430,0.0000018475,0.0000018501,0.0000018546,0.0000018598, +0.0000018622,0.0000018615,0.0000018574,0.0000018521,0.0000018480, +0.0000018455,0.0000018445,0.0000018445,0.0000018443,0.0000018428, +0.0000018394,0.0000018351,0.0000018285,0.0000018232,0.0000018191, +0.0000018168,0.0000018158,0.0000018163,0.0000018192,0.0000018243, +0.0000018307,0.0000018371,0.0000018416,0.0000018420,0.0000018384, +0.0000018358,0.0000018329,0.0000018283,0.0000018214,0.0000018156, +0.0000018123,0.0000018114,0.0000018114,0.0000018114,0.0000018126, +0.0000018148,0.0000018248,0.0000018402,0.0000018503,0.0000018501, +0.0000018553,0.0000019117,0.0000019721,0.0000019832,0.0000019894, +0.0000019954,0.0000019994,0.0000020040,0.0000020073,0.0000020097, +0.0000020126,0.0000020138,0.0000020129,0.0000020085,0.0000019984, +0.0000019846,0.0000019722,0.0000019679,0.0000019686,0.0000019719, +0.0000019746,0.0000019748,0.0000019747,0.0000019674,0.0000019563, +0.0000019413,0.0000019225,0.0000019020,0.0000018825,0.0000018661, +0.0000018532,0.0000018444,0.0000018404,0.0000018390,0.0000018390, +0.0000018390,0.0000018381,0.0000018369,0.0000018354,0.0000018348, +0.0000018349,0.0000018357,0.0000018371,0.0000018385,0.0000018397, +0.0000018408,0.0000018417,0.0000018422,0.0000018421,0.0000018419, +0.0000018416,0.0000018412,0.0000018406,0.0000018400,0.0000018391, +0.0000018379,0.0000018367,0.0000018361,0.0000018368,0.0000018394, +0.0000018437,0.0000018493,0.0000018555,0.0000018613,0.0000018654, +0.0000018673,0.0000018675,0.0000018667,0.0000018670,0.0000018752, +0.0000018895,0.0000019029,0.0000019151,0.0000019242,0.0000019260, +0.0000019244,0.0000019263,0.0000019307,0.0000019202,0.0000018840, +0.0000018410,0.0000018231,0.0000018268,0.0000018437,0.0000018550, +0.0000018565,0.0000018516,0.0000018442,0.0000018374,0.0000018358, +0.0000018354,0.0000018400,0.0000018463,0.0000018507,0.0000018522, +0.0000018529,0.0000018547,0.0000018580,0.0000018613,0.0000018642, +0.0000018665,0.0000018677,0.0000018673,0.0000018674,0.0000018656, +0.0000018620,0.0000018573,0.0000018520,0.0000018462,0.0000018403, +0.0000018342,0.0000018292,0.0000018247,0.0000018219,0.0000018202, +0.0000018198,0.0000018202,0.0000018221,0.0000018250,0.0000018280, +0.0000018305,0.0000018315,0.0000018316,0.0000018312,0.0000018309, +0.0000018309,0.0000018329,0.0000018397,0.0000018500,0.0000018585, +0.0000018634,0.0000018670,0.0000018709,0.0000018743,0.0000018769, +0.0000018795,0.0000018848,0.0000018915,0.0000018975,0.0000019023, +0.0000019070,0.0000019097,0.0000019051,0.0000018891,0.0000018648, +0.0000018432,0.0000018302,0.0000018265,0.0000018291,0.0000018367, +0.0000018439,0.0000018475,0.0000018482,0.0000018488,0.0000018504, +0.0000018534,0.0000018569,0.0000018608,0.0000018654,0.0000018694, +0.0000018727,0.0000018761,0.0000018775,0.0000018782,0.0000018785, +0.0000018796,0.0000018838,0.0000018888,0.0000018924,0.0000018951, +0.0000018971,0.0000018996,0.0000019036,0.0000019106,0.0000019181, +0.0000019249,0.0000019303,0.0000019337,0.0000019370,0.0000019422, +0.0000019485,0.0000019561,0.0000019644,0.0000019729,0.0000019803, +0.0000019867,0.0000019931,0.0000019986,0.0000020022,0.0000020032, +0.0000020043,0.0000020055,0.0000020067,0.0000020068,0.0000020055, +0.0000020044,0.0000020059,0.0000020119,0.0000020172,0.0000020056, +0.0000019812,0.0000019756,0.0000019766,0.0000019789,0.0000019780, +0.0000019735,0.0000019729,0.0000019910,0.0000020175,0.0000020264, +0.0000020274,0.0000020214,0.0000020064,0.0000019934,0.0000019897, +0.0000019973,0.0000020100,0.0000020232,0.0000020311,0.0000020281, +0.0000020155,0.0000020005,0.0000019896,0.0000019841,0.0000019823, +0.0000019845,0.0000019979,0.0000020155,0.0000020235,0.0000020200, +0.0000020150,0.0000020071,0.0000019857,0.0000019482,0.0000019056, +0.0000018711,0.0000018506,0.0000018420,0.0000018390,0.0000018362, +0.0000018295,0.0000018194,0.0000018102,0.0000018055,0.0000018084, +0.0000018120,0.0000018199,0.0000018262,0.0000018284,0.0000018268, +0.0000018262,0.0000018306,0.0000018426,0.0000018612,0.0000018810, +0.0000018953,0.0000019019,0.0000019030,0.0000019043,0.0000019023, +0.0000018945,0.0000018824,0.0000018591,0.0000018384,0.0000018396, +0.0000018641,0.0000018947,0.0000019032,0.0000018897,0.0000018664, +0.0000018547,0.0000018581,0.0000018702,0.0000018905,0.0000019254, +0.0000019662,0.0000019915,0.0000019976,0.0000020003,0.0000020085, +0.0000020186,0.0000020259,0.0000020297,0.0000020304,0.0000020290, +0.0000020262,0.0000020246,0.0000020256,0.0000020297,0.0000020333, +0.0000020338,0.0000020331,0.0000020321,0.0000020308,0.0000020297, +0.0000020287,0.0000020275,0.0000020262,0.0000020248,0.0000020239, +0.0000020235,0.0000020228,0.0000020216,0.0000020198,0.0000020178, +0.0000020162,0.0000020149,0.0000020134,0.0000020120,0.0000020109, +0.0000020100,0.0000020094,0.0000020093,0.0000020103,0.0000020120, +0.0000020141,0.0000020163,0.0000020184,0.0000020201,0.0000020214, +0.0000020221,0.0000020226,0.0000020234,0.0000020245,0.0000020255, +0.0000020259,0.0000020261,0.0000020264,0.0000020267,0.0000020271, +0.0000020271,0.0000020268,0.0000020259,0.0000020243,0.0000020229, +0.0000020218,0.0000020210,0.0000020205,0.0000020205,0.0000020207, +0.0000020212,0.0000020218,0.0000020220,0.0000020218,0.0000020218, +0.0000020226,0.0000020242,0.0000020264,0.0000020284,0.0000020303, +0.0000020318,0.0000020287,0.0000020222,0.0000020134,0.0000020055, +0.0000019999,0.0000019966,0.0000019951,0.0000019998,0.0000020094, +0.0000020208,0.0000020301,0.0000020356,0.0000020379,0.0000020396, +0.0000020392,0.0000020380,0.0000020368,0.0000020358,0.0000020344, +0.0000020332,0.0000020320,0.0000020311,0.0000020308,0.0000020301, +0.0000020297,0.0000020296,0.0000020299,0.0000020305,0.0000020318, +0.0000020333,0.0000020351,0.0000020372,0.0000020400,0.0000020426, +0.0000020442,0.0000020455,0.0000020459,0.0000020473,0.0000020489, +0.0000020498,0.0000020498,0.0000020494,0.0000020484,0.0000020449, +0.0000020387,0.0000020310,0.0000020232,0.0000020157,0.0000020093, +0.0000020051,0.0000020038,0.0000020063,0.0000020078,0.0000020111, +0.0000020141,0.0000020181,0.0000020211,0.0000020242,0.0000020253, +0.0000020258,0.0000020254,0.0000020232,0.0000020185,0.0000020141, +0.0000020099,0.0000020060,0.0000020060,0.0000020071,0.0000020112, +0.0000020191,0.0000020311,0.0000020408,0.0000020486,0.0000020553, +0.0000020589,0.0000020602,0.0000020611,0.0000020599,0.0000020542, +0.0000020369,0.0000020114,0.0000019867,0.0000019716,0.0000019648, +0.0000019629,0.0000019652,0.0000019719,0.0000019842,0.0000019967, +0.0000020079,0.0000020170,0.0000020240,0.0000020303,0.0000020352, +0.0000020390,0.0000020424,0.0000020447,0.0000020451,0.0000020430, +0.0000020397,0.0000020361,0.0000020327,0.0000020293,0.0000020260, +0.0000020231,0.0000020208,0.0000020192,0.0000020192,0.0000020210, +0.0000020229,0.0000020256,0.0000020278,0.0000020300,0.0000020307, +0.0000020307,0.0000020303,0.0000020298,0.0000020287,0.0000020270, +0.0000020249,0.0000020226,0.0000020201,0.0000020173,0.0000020143, +0.0000020114,0.0000020088,0.0000020063,0.0000020034,0.0000020002, +0.0000019967,0.0000019925,0.0000019877,0.0000019835,0.0000019805, +0.0000019797,0.0000019793,0.0000019800,0.0000019789,0.0000019758, +0.0000019709,0.0000019654,0.0000019592,0.0000019521,0.0000019448, +0.0000019383,0.0000019341,0.0000019323,0.0000019324,0.0000019330, +0.0000019332,0.0000019313,0.0000019286,0.0000019267,0.0000019253, +0.0000019227,0.0000019193,0.0000019179,0.0000019191,0.0000019215, +0.0000019248,0.0000019262,0.0000019247,0.0000019226,0.0000019199, +0.0000019151,0.0000019099,0.0000019050,0.0000018992,0.0000018943, +0.0000018931,0.0000018924,0.0000018895,0.0000018865,0.0000018833, +0.0000018814,0.0000018817,0.0000018831,0.0000018853,0.0000018868, +0.0000018875,0.0000018888,0.0000018897,0.0000018913,0.0000018942, +0.0000018978,0.0000019033,0.0000019101,0.0000019168,0.0000019209, +0.0000019215,0.0000019214,0.0000019212,0.0000019193,0.0000019149, +0.0000019105,0.0000019097,0.0000019134,0.0000019185,0.0000019190, +0.0000019179,0.0000019164,0.0000019146,0.0000019134,0.0000019149, +0.0000019174,0.0000019164,0.0000019086,0.0000018970,0.0000018878, +0.0000018841,0.0000018831,0.0000018820,0.0000018813,0.0000018817, +0.0000018849,0.0000018878,0.0000018864,0.0000018785,0.0000018675, +0.0000018575,0.0000018531,0.0000018530,0.0000018535,0.0000018541, +0.0000018541,0.0000018539,0.0000018532,0.0000018524,0.0000018518, +0.0000018524,0.0000018539,0.0000018544,0.0000018520,0.0000018471, +0.0000018418,0.0000018390,0.0000018383,0.0000018375,0.0000018340, +0.0000018275,0.0000018189,0.0000018100,0.0000018018,0.0000017954, +0.0000017925,0.0000017921,0.0000017914,0.0000017902,0.0000017898, +0.0000017913,0.0000017935,0.0000017960,0.0000017995,0.0000018019, +0.0000018028,0.0000018039,0.0000018062,0.0000018075,0.0000018053, +0.0000018008,0.0000017959,0.0000017921,0.0000017888,0.0000017842, +0.0000017792,0.0000017754,0.0000017716,0.0000017669,0.0000017629, +0.0000017601,0.0000017577,0.0000017559,0.0000017555,0.0000017557, +0.0000017563,0.0000017571,0.0000017571,0.0000017548,0.0000017508, +0.0000017468,0.0000017441,0.0000017426,0.0000017438,0.0000017462, +0.0000017478,0.0000017480,0.0000017485,0.0000017485,0.0000017470, +0.0000017439,0.0000017403,0.0000017368,0.0000017351,0.0000017347, +0.0000017363,0.0000017385,0.0000017398,0.0000017388,0.0000017346, +0.0000017293,0.0000017247,0.0000017197,0.0000017164,0.0000017168, +0.0000017188,0.0000017178,0.0000017152,0.0000017153,0.0000017310, +0.0000017601,0.0000017877,0.0000018012,0.0000018016,0.0000017978, +0.0000017945,0.0000017922,0.0000017969,0.0000018170,0.0000018261, +0.0000018305,0.0000018310,0.0000018290,0.0000018289,0.0000018308, +0.0000018294,0.0000018260,0.0000018246,0.0000018234,0.0000018211, +0.0000018190,0.0000018165,0.0000018115,0.0000018034,0.0000017952, +0.0000017907,0.0000017900,0.0000017862,0.0000017758,0.0000017728, +0.0000017817,0.0000017955,0.0000018046,0.0000018098,0.0000018135, +0.0000018179,0.0000018237,0.0000018289,0.0000018331,0.0000018384, +0.0000018408,0.0000018391,0.0000018408,0.0000018448,0.0000018378, +0.0000018171,0.0000018007,0.0000017955,0.0000017960,0.0000018012, +0.0000018093,0.0000018155,0.0000018171,0.0000018159,0.0000018150, +0.0000018142,0.0000018116,0.0000018084,0.0000018024,0.0000017996, +0.0000017982,0.0000017955,0.0000017920,0.0000017904,0.0000017927, +0.0000017944,0.0000017960,0.0000017976,0.0000018007,0.0000018050, +0.0000018088,0.0000018116,0.0000018132,0.0000018131,0.0000018134, +0.0000018160,0.0000018203,0.0000018230,0.0000018227,0.0000018215, +0.0000018232,0.0000018316,0.0000018421,0.0000018492,0.0000018522, +0.0000018534,0.0000018545,0.0000018571,0.0000018587,0.0000018563, +0.0000018496,0.0000018437,0.0000018420,0.0000018427,0.0000018437, +0.0000018454,0.0000018476,0.0000018482,0.0000018447,0.0000018379, +0.0000018321,0.0000018307,0.0000018313,0.0000018316,0.0000018306, +0.0000018276,0.0000018224,0.0000018121,0.0000017981,0.0000017858, +0.0000017865,0.0000017972,0.0000018043,0.0000017983,0.0000017878, +0.0000017838,0.0000017814,0.0000017771,0.0000017672,0.0000017551, +0.0000017516,0.0000017543,0.0000017575,0.0000017618,0.0000017656, +0.0000017636,0.0000017633,0.0000017645,0.0000017724,0.0000017766, +0.0000017755,0.0000017847,0.0000017682,0.0000017594,0.0000017632, +0.0000017684,0.0000017837,0.0000017824,0.0000017774,0.0000017811, +0.0000017868,0.0000017874,0.0000017822,0.0000017766,0.0000017724, +0.0000017687,0.0000017650,0.0000017613,0.0000017567,0.0000017533, +0.0000017518,0.0000017512,0.0000017511,0.0000017510,0.0000017524, +0.0000017548,0.0000017577,0.0000017606,0.0000017630,0.0000017647, +0.0000017665,0.0000017690,0.0000017719,0.0000017746,0.0000017766, +0.0000017778,0.0000017777,0.0000017764,0.0000017750,0.0000017738, +0.0000017754,0.0000017754,0.0000017753,0.0000017754,0.0000017751, +0.0000017757,0.0000017796,0.0000017864,0.0000017954,0.0000018021, +0.0000018037,0.0000018029,0.0000017982,0.0000017924,0.0000017911, +0.0000017953,0.0000018012,0.0000018052,0.0000018060,0.0000018049, +0.0000018055,0.0000018115,0.0000018193,0.0000018246,0.0000018280, +0.0000018329,0.0000018423,0.0000018534,0.0000018599,0.0000018597, +0.0000018576,0.0000018562,0.0000018517,0.0000018439,0.0000018357, +0.0000018210,0.0000018113,0.0000018166,0.0000018276,0.0000018309, +0.0000018336,0.0000018317,0.0000018214,0.0000018165,0.0000018248, +0.0000018394,0.0000018482,0.0000018492,0.0000018465,0.0000018425, +0.0000018404,0.0000018402,0.0000018390,0.0000018329,0.0000018188, +0.0000018000,0.0000017870,0.0000017882,0.0000018002,0.0000018123, +0.0000018157,0.0000018168,0.0000018242,0.0000018359,0.0000018436, +0.0000018464,0.0000018503,0.0000018564,0.0000018614,0.0000018627, +0.0000018600,0.0000018543,0.0000018499,0.0000018488,0.0000018494, +0.0000018511,0.0000018530,0.0000018540,0.0000018536,0.0000018502, +0.0000018429,0.0000018334,0.0000018236,0.0000018145,0.0000018077, +0.0000018028,0.0000017988,0.0000017952,0.0000017928,0.0000017918, +0.0000017948,0.0000018031,0.0000018155,0.0000018280,0.0000018358, +0.0000018362,0.0000018342,0.0000018316,0.0000018284,0.0000018229, +0.0000018175,0.0000018146,0.0000018138,0.0000018136,0.0000018115, +0.0000018113,0.0000018206,0.0000018382,0.0000018498,0.0000018500, +0.0000018698,0.0000019422,0.0000019808,0.0000019885,0.0000019940, +0.0000019978,0.0000020020,0.0000020060,0.0000020084,0.0000020103, +0.0000020108,0.0000020081,0.0000019996,0.0000019857,0.0000019734, +0.0000019692,0.0000019714,0.0000019761,0.0000019767,0.0000019753, +0.0000019657,0.0000019513,0.0000019329,0.0000019126,0.0000018925, +0.0000018744,0.0000018599,0.0000018499,0.0000018447,0.0000018423, +0.0000018402,0.0000018385,0.0000018357,0.0000018313,0.0000018266, +0.0000018222,0.0000018186,0.0000018158,0.0000018140,0.0000018132, +0.0000018135,0.0000018148,0.0000018165,0.0000018180,0.0000018193, +0.0000018206,0.0000018216,0.0000018223,0.0000018228,0.0000018233, +0.0000018240,0.0000018250,0.0000018264,0.0000018282,0.0000018297, +0.0000018299,0.0000018289,0.0000018286,0.0000018310,0.0000018369, +0.0000018444,0.0000018509,0.0000018573,0.0000018636,0.0000018679, +0.0000018691,0.0000018684,0.0000018664,0.0000018673,0.0000018781, +0.0000018960,0.0000019118,0.0000019205,0.0000019220,0.0000019233, +0.0000019263,0.0000019181,0.0000018856,0.0000018441,0.0000018248, +0.0000018281,0.0000018455,0.0000018525,0.0000018516,0.0000018440, +0.0000018367,0.0000018341,0.0000018353,0.0000018418,0.0000018488, +0.0000018536,0.0000018559,0.0000018562,0.0000018567,0.0000018587, +0.0000018622,0.0000018655,0.0000018675,0.0000018686,0.0000018689, +0.0000018683,0.0000018668,0.0000018632,0.0000018576,0.0000018505, +0.0000018426,0.0000018347,0.0000018271,0.0000018201,0.0000018133, +0.0000018080,0.0000018049,0.0000018038,0.0000018036,0.0000018041, +0.0000018057,0.0000018087,0.0000018129,0.0000018173,0.0000018218, +0.0000018255,0.0000018278,0.0000018292,0.0000018298,0.0000018302, +0.0000018300,0.0000018328,0.0000018399,0.0000018491,0.0000018567, +0.0000018617,0.0000018653,0.0000018689,0.0000018727,0.0000018764, +0.0000018825,0.0000018906,0.0000018967,0.0000018987,0.0000018982, +0.0000018959,0.0000018919,0.0000018843,0.0000018715,0.0000018555, +0.0000018423,0.0000018327,0.0000018275,0.0000018279,0.0000018331, +0.0000018394,0.0000018424,0.0000018434,0.0000018451,0.0000018493, +0.0000018548,0.0000018602,0.0000018637,0.0000018670,0.0000018713, +0.0000018757,0.0000018794,0.0000018829,0.0000018846,0.0000018865, +0.0000018906,0.0000018928,0.0000018938,0.0000018954,0.0000018957, +0.0000018951,0.0000018958,0.0000018990,0.0000019043,0.0000019109, +0.0000019167,0.0000019207,0.0000019251,0.0000019304,0.0000019374, +0.0000019470,0.0000019571,0.0000019666,0.0000019747,0.0000019816, +0.0000019883,0.0000019939,0.0000019980,0.0000020006,0.0000020032, +0.0000020055,0.0000020064,0.0000020056,0.0000020049,0.0000020071, +0.0000020126,0.0000020175,0.0000020089,0.0000019860,0.0000019786, +0.0000019793,0.0000019811,0.0000019794,0.0000019748,0.0000019746, +0.0000019931,0.0000020196,0.0000020289,0.0000020294,0.0000020228, +0.0000020099,0.0000020021,0.0000020029,0.0000020112,0.0000020216, +0.0000020287,0.0000020300,0.0000020213,0.0000020053,0.0000019922, +0.0000019850,0.0000019822,0.0000019828,0.0000019927,0.0000020105, +0.0000020225,0.0000020243,0.0000020188,0.0000020096,0.0000019850, +0.0000019418,0.0000018949,0.0000018611,0.0000018450,0.0000018403, +0.0000018365,0.0000018282,0.0000018173,0.0000018078,0.0000018028, +0.0000018041,0.0000018111,0.0000018246,0.0000018392,0.0000018488, +0.0000018548,0.0000018571,0.0000018549,0.0000018517,0.0000018518, +0.0000018597,0.0000018788,0.0000019057,0.0000019254,0.0000019289, +0.0000019178,0.0000019066,0.0000019057,0.0000019110,0.0000019193, +0.0000019209,0.0000018960,0.0000018530,0.0000018278,0.0000018423, +0.0000018856,0.0000019084,0.0000018973,0.0000018695,0.0000018542, +0.0000018572,0.0000018688,0.0000018838,0.0000019138,0.0000019563, +0.0000019862,0.0000019928,0.0000019914,0.0000019934,0.0000020002, +0.0000020087,0.0000020162,0.0000020208,0.0000020232,0.0000020229, +0.0000020227,0.0000020269,0.0000020316,0.0000020324,0.0000020313, +0.0000020297,0.0000020284,0.0000020273,0.0000020262,0.0000020251, +0.0000020242,0.0000020238,0.0000020237,0.0000020235,0.0000020227, +0.0000020216,0.0000020197,0.0000020177,0.0000020158,0.0000020139, +0.0000020120,0.0000020106,0.0000020096,0.0000020085,0.0000020078, +0.0000020074,0.0000020077,0.0000020087,0.0000020099,0.0000020117, +0.0000020134,0.0000020144,0.0000020152,0.0000020159,0.0000020169, +0.0000020185,0.0000020201,0.0000020223,0.0000020229,0.0000020230, +0.0000020236,0.0000020232,0.0000020217,0.0000020197,0.0000020167, +0.0000020129,0.0000020085,0.0000020043,0.0000020010,0.0000019990, +0.0000019980,0.0000019978,0.0000019987,0.0000020009,0.0000020041, +0.0000020075,0.0000020113,0.0000020153,0.0000020189,0.0000020212, +0.0000020220,0.0000020234,0.0000020264,0.0000020305,0.0000020333, +0.0000020322,0.0000020249,0.0000020143,0.0000020041,0.0000019969, +0.0000019929,0.0000019906,0.0000019934,0.0000020020,0.0000020146, +0.0000020268,0.0000020357,0.0000020404,0.0000020419,0.0000020422, +0.0000020420,0.0000020409,0.0000020390,0.0000020369,0.0000020352, +0.0000020340,0.0000020336,0.0000020331,0.0000020330,0.0000020334, +0.0000020341,0.0000020350,0.0000020364,0.0000020370,0.0000020390, +0.0000020408,0.0000020433,0.0000020455,0.0000020464,0.0000020467, +0.0000020468,0.0000020481,0.0000020499,0.0000020507,0.0000020502, +0.0000020484,0.0000020442,0.0000020374,0.0000020290,0.0000020207, +0.0000020133,0.0000020075,0.0000020051,0.0000020042,0.0000020069, +0.0000020118,0.0000020173,0.0000020216,0.0000020257,0.0000020268, +0.0000020250,0.0000020219,0.0000020174,0.0000020121,0.0000020074, +0.0000020022,0.0000019986,0.0000019986,0.0000020013,0.0000020053, +0.0000020123,0.0000020202,0.0000020301,0.0000020401,0.0000020463, +0.0000020505,0.0000020529,0.0000020536,0.0000020536,0.0000020534, +0.0000020533,0.0000020522,0.0000020457,0.0000020307,0.0000020115, +0.0000019944,0.0000019813,0.0000019733,0.0000019701,0.0000019695, +0.0000019725,0.0000019785,0.0000019846,0.0000019930,0.0000019983, +0.0000020054,0.0000020117,0.0000020161,0.0000020211,0.0000020269, +0.0000020310,0.0000020337,0.0000020348,0.0000020352,0.0000020357, +0.0000020360,0.0000020363,0.0000020365,0.0000020367,0.0000020374, +0.0000020388,0.0000020402,0.0000020413,0.0000020422,0.0000020427, +0.0000020433,0.0000020435,0.0000020438,0.0000020445,0.0000020451, +0.0000020453,0.0000020448,0.0000020434,0.0000020414,0.0000020386, +0.0000020347,0.0000020301,0.0000020250,0.0000020200,0.0000020148, +0.0000020102,0.0000020064,0.0000020032,0.0000019997,0.0000019949, +0.0000019888,0.0000019828,0.0000019791,0.0000019784,0.0000019791, +0.0000019800,0.0000019800,0.0000019786,0.0000019773,0.0000019746, +0.0000019701,0.0000019636,0.0000019557,0.0000019482,0.0000019425, +0.0000019395,0.0000019385,0.0000019379,0.0000019367,0.0000019340, +0.0000019309,0.0000019289,0.0000019269,0.0000019243,0.0000019215, +0.0000019204,0.0000019207,0.0000019225,0.0000019257,0.0000019266, +0.0000019259,0.0000019257,0.0000019248,0.0000019223,0.0000019189, +0.0000019140,0.0000019062,0.0000018984,0.0000018950,0.0000018927, +0.0000018890,0.0000018858,0.0000018817,0.0000018780,0.0000018772, +0.0000018784,0.0000018810,0.0000018835,0.0000018861,0.0000018893, +0.0000018918,0.0000018945,0.0000018969,0.0000018995,0.0000019031, +0.0000019084,0.0000019143,0.0000019176,0.0000019187,0.0000019200, +0.0000019209,0.0000019196,0.0000019146,0.0000019092,0.0000019091, +0.0000019159,0.0000019218,0.0000019238,0.0000019222,0.0000019200, +0.0000019177,0.0000019164,0.0000019176,0.0000019197,0.0000019182, +0.0000019100,0.0000018975,0.0000018873,0.0000018830,0.0000018816, +0.0000018806,0.0000018785,0.0000018789,0.0000018836,0.0000018880, +0.0000018882,0.0000018830,0.0000018730,0.0000018648,0.0000018618, +0.0000018605,0.0000018596,0.0000018587,0.0000018573,0.0000018556, +0.0000018536,0.0000018518,0.0000018513,0.0000018523,0.0000018538, +0.0000018541,0.0000018532,0.0000018502,0.0000018465,0.0000018440, +0.0000018418,0.0000018379,0.0000018319,0.0000018251,0.0000018190, +0.0000018139,0.0000018095,0.0000018067,0.0000018058,0.0000018047, +0.0000018020,0.0000017999,0.0000017993,0.0000017995,0.0000017995, +0.0000018010,0.0000018032,0.0000018045,0.0000018059,0.0000018083, +0.0000018108,0.0000018114,0.0000018098,0.0000018071,0.0000018042, +0.0000018011,0.0000017961,0.0000017898,0.0000017842,0.0000017800, +0.0000017762,0.0000017728,0.0000017696,0.0000017656,0.0000017612, +0.0000017587,0.0000017584,0.0000017595,0.0000017608,0.0000017613, +0.0000017601,0.0000017561,0.0000017504,0.0000017454,0.0000017423, +0.0000017420,0.0000017432,0.0000017452,0.0000017471,0.0000017487, +0.0000017503,0.0000017503,0.0000017481,0.0000017438,0.0000017394, +0.0000017376,0.0000017368,0.0000017363,0.0000017370,0.0000017386, +0.0000017403,0.0000017406,0.0000017371,0.0000017318,0.0000017276, +0.0000017244,0.0000017220,0.0000017216,0.0000017202,0.0000017154, +0.0000017123,0.0000017179,0.0000017386,0.0000017648,0.0000017819, +0.0000017846,0.0000017802,0.0000017778,0.0000017783,0.0000017904, +0.0000018163,0.0000018248,0.0000018296,0.0000018292,0.0000018277, +0.0000018292,0.0000018296,0.0000018269,0.0000018251,0.0000018239, +0.0000018214,0.0000018189,0.0000018170,0.0000018140,0.0000018077, +0.0000017988,0.0000017921,0.0000017904,0.0000017901,0.0000017821, +0.0000017722,0.0000017748,0.0000017893,0.0000018015,0.0000018085, +0.0000018124,0.0000018155,0.0000018196,0.0000018239,0.0000018291, +0.0000018361,0.0000018411,0.0000018398,0.0000018390,0.0000018436, +0.0000018413,0.0000018265,0.0000018114,0.0000018070,0.0000018105, +0.0000018184,0.0000018280,0.0000018349,0.0000018366,0.0000018354, +0.0000018328,0.0000018296,0.0000018252,0.0000018187,0.0000018111, +0.0000018051,0.0000018016,0.0000017986,0.0000017957,0.0000017945, +0.0000017958,0.0000017998,0.0000018041,0.0000018073,0.0000018107, +0.0000018154,0.0000018203,0.0000018243,0.0000018267,0.0000018266, +0.0000018251,0.0000018245,0.0000018269,0.0000018305,0.0000018320, +0.0000018313,0.0000018298,0.0000018312,0.0000018383,0.0000018471, +0.0000018528,0.0000018556,0.0000018572,0.0000018600,0.0000018632, +0.0000018643,0.0000018607,0.0000018536,0.0000018494,0.0000018494, +0.0000018506,0.0000018511,0.0000018514,0.0000018511,0.0000018463, +0.0000018381,0.0000018304,0.0000018283,0.0000018296,0.0000018300, +0.0000018273,0.0000018241,0.0000018223,0.0000018175,0.0000018093, +0.0000017994,0.0000017901,0.0000017882,0.0000017987,0.0000018053, +0.0000017978,0.0000017871,0.0000017822,0.0000017785,0.0000017728, +0.0000017613,0.0000017531,0.0000017528,0.0000017545,0.0000017579, +0.0000017641,0.0000017645,0.0000017644,0.0000017652,0.0000017670, +0.0000017762,0.0000017753,0.0000017821,0.0000017796,0.0000017619, +0.0000017615,0.0000017657,0.0000017808,0.0000017833,0.0000017762, +0.0000017769,0.0000017819,0.0000017877,0.0000017883,0.0000017835, +0.0000017773,0.0000017705,0.0000017645,0.0000017599,0.0000017555, +0.0000017522,0.0000017507,0.0000017507,0.0000017513,0.0000017524, +0.0000017542,0.0000017563,0.0000017585,0.0000017608,0.0000017627, +0.0000017643,0.0000017663,0.0000017684,0.0000017708,0.0000017729, +0.0000017741,0.0000017748,0.0000017746,0.0000017741,0.0000017740, +0.0000017749,0.0000017720,0.0000017748,0.0000017788,0.0000017817, +0.0000017845,0.0000017864,0.0000017910,0.0000017962,0.0000018009, +0.0000018035,0.0000018040,0.0000018032,0.0000017994,0.0000017945, +0.0000017925,0.0000017949,0.0000018001,0.0000018042,0.0000018062, +0.0000018060,0.0000018046,0.0000018069,0.0000018133,0.0000018201, +0.0000018258,0.0000018305,0.0000018374,0.0000018484,0.0000018585, +0.0000018620,0.0000018605,0.0000018580,0.0000018554,0.0000018483, +0.0000018412,0.0000018319,0.0000018170,0.0000018124,0.0000018220, +0.0000018300,0.0000018329,0.0000018339,0.0000018266,0.0000018181, +0.0000018213,0.0000018343,0.0000018454,0.0000018477,0.0000018464, +0.0000018448,0.0000018444,0.0000018440,0.0000018390,0.0000018250, +0.0000018039,0.0000017871,0.0000017851,0.0000017959,0.0000018089, +0.0000018140,0.0000018166,0.0000018256,0.0000018373,0.0000018430, +0.0000018448,0.0000018500,0.0000018575,0.0000018615,0.0000018613, +0.0000018576,0.0000018531,0.0000018516,0.0000018528,0.0000018557, +0.0000018587,0.0000018616,0.0000018647,0.0000018668,0.0000018663, +0.0000018605,0.0000018482,0.0000018337,0.0000018207,0.0000018113, +0.0000018046,0.0000017996,0.0000017947,0.0000017902,0.0000017859, +0.0000017823,0.0000017792,0.0000017781,0.0000017828,0.0000017960, +0.0000018139,0.0000018280,0.0000018339,0.0000018321,0.0000018302, +0.0000018284,0.0000018253,0.0000018206,0.0000018168,0.0000018145, +0.0000018128,0.0000018109,0.0000018186,0.0000018381,0.0000018497, +0.0000018525,0.0000018925,0.0000019639,0.0000019860,0.0000019946, +0.0000019972,0.0000020001,0.0000020034,0.0000020059,0.0000020070, +0.0000020063,0.0000020011,0.0000019895,0.0000019769,0.0000019715, +0.0000019744,0.0000019793,0.0000019794,0.0000019704,0.0000019532, +0.0000019298,0.0000019054,0.0000018847,0.0000018688,0.0000018567, +0.0000018491,0.0000018454,0.0000018441,0.0000018427,0.0000018402, +0.0000018360,0.0000018313,0.0000018262,0.0000018211,0.0000018158, +0.0000018109,0.0000018069,0.0000018044,0.0000018027,0.0000018011, +0.0000018007,0.0000018015,0.0000018028,0.0000018041,0.0000018047, +0.0000018049,0.0000018050,0.0000018052,0.0000018056,0.0000018061, +0.0000018069,0.0000018082,0.0000018103,0.0000018138,0.0000018184, +0.0000018221,0.0000018232,0.0000018226,0.0000018236,0.0000018300, +0.0000018411,0.0000018496,0.0000018545,0.0000018596,0.0000018661, +0.0000018703,0.0000018707,0.0000018680,0.0000018666,0.0000018737, +0.0000018928,0.0000019107,0.0000019188,0.0000019217,0.0000019232, +0.0000019141,0.0000018829,0.0000018435,0.0000018250,0.0000018287, +0.0000018422,0.0000018490,0.0000018442,0.0000018360,0.0000018304, +0.0000018326,0.0000018403,0.0000018501,0.0000018569,0.0000018590, +0.0000018585,0.0000018585,0.0000018599,0.0000018623,0.0000018648, +0.0000018673,0.0000018697,0.0000018714,0.0000018722,0.0000018714, +0.0000018682,0.0000018617,0.0000018526,0.0000018426,0.0000018333, +0.0000018250,0.0000018177,0.0000018115,0.0000018057,0.0000017995, +0.0000017938,0.0000017911,0.0000017902,0.0000017906,0.0000017920, +0.0000017950,0.0000017995,0.0000018051,0.0000018114,0.0000018172, +0.0000018223,0.0000018264,0.0000018292,0.0000018306,0.0000018319, +0.0000018324,0.0000018345,0.0000018395,0.0000018456,0.0000018524, +0.0000018577,0.0000018610,0.0000018634,0.0000018662,0.0000018695, +0.0000018742,0.0000018822,0.0000018891,0.0000018908,0.0000018865, +0.0000018762,0.0000018669,0.0000018616,0.0000018574,0.0000018516, +0.0000018451,0.0000018390,0.0000018323,0.0000018274,0.0000018273, +0.0000018332,0.0000018388,0.0000018418,0.0000018436,0.0000018487, +0.0000018560,0.0000018620,0.0000018651,0.0000018672,0.0000018696, +0.0000018724,0.0000018750,0.0000018785,0.0000018816,0.0000018857, +0.0000018902,0.0000018919,0.0000018928,0.0000018943,0.0000018946, +0.0000018935,0.0000018927,0.0000018930,0.0000018952,0.0000018990, +0.0000019037,0.0000019098,0.0000019161,0.0000019221,0.0000019297, +0.0000019402,0.0000019512,0.0000019625,0.0000019717,0.0000019788, +0.0000019846,0.0000019893,0.0000019934,0.0000019968,0.0000020007, +0.0000020035,0.0000020041,0.0000020045,0.0000020078,0.0000020137, +0.0000020182,0.0000020111,0.0000019901,0.0000019817,0.0000019819, +0.0000019829,0.0000019809,0.0000019762,0.0000019761,0.0000019947, +0.0000020211,0.0000020308,0.0000020306,0.0000020247,0.0000020152, +0.0000020112,0.0000020147,0.0000020220,0.0000020299,0.0000020336, +0.0000020271,0.0000020126,0.0000019961,0.0000019850,0.0000019811, +0.0000019812,0.0000019871,0.0000020037,0.0000020207,0.0000020252, +0.0000020228,0.0000020144,0.0000019895,0.0000019429,0.0000018920, +0.0000018576,0.0000018433,0.0000018395,0.0000018340,0.0000018213, +0.0000018059,0.0000017956,0.0000017992,0.0000018067,0.0000018213, +0.0000018370,0.0000018512,0.0000018635,0.0000018714,0.0000018748, +0.0000018759,0.0000018752,0.0000018729,0.0000018689,0.0000018666, +0.0000018737,0.0000018993,0.0000019278,0.0000019316,0.0000019133, +0.0000018798,0.0000018642,0.0000018684,0.0000018860,0.0000019128, +0.0000019374,0.0000019248,0.0000018686,0.0000018236,0.0000018365, +0.0000018872,0.0000019125,0.0000018973,0.0000018670,0.0000018514, +0.0000018558,0.0000018680,0.0000018795,0.0000019047,0.0000019476, +0.0000019814,0.0000019896,0.0000019869,0.0000019826,0.0000019827, +0.0000019888,0.0000019993,0.0000020126,0.0000020207,0.0000020220, +0.0000020242,0.0000020278,0.0000020294,0.0000020288,0.0000020272, +0.0000020264,0.0000020261,0.0000020251,0.0000020234,0.0000020220, +0.0000020216,0.0000020216,0.0000020215,0.0000020207,0.0000020189, +0.0000020164,0.0000020137,0.0000020112,0.0000020091,0.0000020081, +0.0000020078,0.0000020077,0.0000020074,0.0000020076,0.0000020084, +0.0000020095,0.0000020110,0.0000020128,0.0000020150,0.0000020170, +0.0000020169,0.0000020158,0.0000020152,0.0000020150,0.0000020143, +0.0000020126,0.0000020107,0.0000020081,0.0000020043,0.0000019997, +0.0000019943,0.0000019883,0.0000019820,0.0000019762,0.0000019707, +0.0000019652,0.0000019608,0.0000019580,0.0000019563,0.0000019553, +0.0000019549,0.0000019558,0.0000019583,0.0000019626,0.0000019696, +0.0000019799,0.0000019938,0.0000020088,0.0000020201,0.0000020245, +0.0000020241,0.0000020227,0.0000020231,0.0000020269,0.0000020311, +0.0000020309,0.0000020253,0.0000020133,0.0000020018,0.0000019944, +0.0000019906,0.0000019892,0.0000019892,0.0000019959,0.0000020075, +0.0000020204,0.0000020307,0.0000020372,0.0000020402,0.0000020411, +0.0000020410,0.0000020400,0.0000020388,0.0000020381,0.0000020376, +0.0000020367,0.0000020356,0.0000020353,0.0000020353,0.0000020347, +0.0000020338,0.0000020331,0.0000020326,0.0000020336,0.0000020364, +0.0000020403,0.0000020437,0.0000020456,0.0000020472,0.0000020489, +0.0000020510,0.0000020519,0.0000020513,0.0000020489,0.0000020444, +0.0000020375,0.0000020294,0.0000020216,0.0000020159,0.0000020111, +0.0000020101,0.0000020116,0.0000020153,0.0000020195,0.0000020219, +0.0000020243,0.0000020203,0.0000020158,0.0000020093,0.0000020027, +0.0000019974,0.0000019957,0.0000019956,0.0000019976,0.0000019998, +0.0000020038,0.0000020090,0.0000020113,0.0000020142,0.0000020189, +0.0000020257,0.0000020343,0.0000020410,0.0000020444,0.0000020456, +0.0000020450,0.0000020434,0.0000020411,0.0000020397,0.0000020395, +0.0000020390,0.0000020360,0.0000020298,0.0000020226,0.0000020138, +0.0000020053,0.0000020003,0.0000019979,0.0000019964,0.0000019960, +0.0000019968,0.0000019980,0.0000019988,0.0000019998,0.0000020016, +0.0000020025,0.0000020031,0.0000020048,0.0000020083,0.0000020124, +0.0000020158,0.0000020185,0.0000020218,0.0000020246,0.0000020273, +0.0000020292,0.0000020303,0.0000020303,0.0000020303,0.0000020303, +0.0000020296,0.0000020292,0.0000020300,0.0000020315,0.0000020334, +0.0000020352,0.0000020375,0.0000020398,0.0000020410,0.0000020418, +0.0000020420,0.0000020412,0.0000020396,0.0000020371,0.0000020335, +0.0000020292,0.0000020234,0.0000020170,0.0000020103,0.0000020061, +0.0000020042,0.0000020021,0.0000020004,0.0000019974,0.0000019926, +0.0000019875,0.0000019837,0.0000019813,0.0000019802,0.0000019793, +0.0000019780,0.0000019776,0.0000019776,0.0000019775,0.0000019760, +0.0000019720,0.0000019654,0.0000019584,0.0000019527,0.0000019493, +0.0000019474,0.0000019458,0.0000019433,0.0000019394,0.0000019349, +0.0000019309,0.0000019278,0.0000019252,0.0000019239,0.0000019237, +0.0000019238,0.0000019251,0.0000019268,0.0000019263,0.0000019257, +0.0000019264,0.0000019274,0.0000019282,0.0000019276,0.0000019238, +0.0000019157,0.0000019068,0.0000019010,0.0000018958,0.0000018905, +0.0000018863,0.0000018806,0.0000018756,0.0000018736,0.0000018740, +0.0000018770,0.0000018808,0.0000018854,0.0000018913,0.0000018965, +0.0000019006,0.0000019028,0.0000019038,0.0000019062,0.0000019101, +0.0000019148,0.0000019179,0.0000019200,0.0000019224,0.0000019243, +0.0000019231,0.0000019166,0.0000019102,0.0000019113,0.0000019185, +0.0000019250,0.0000019264,0.0000019248,0.0000019229,0.0000019210, +0.0000019202,0.0000019217,0.0000019232,0.0000019211,0.0000019123, +0.0000018986,0.0000018872,0.0000018813,0.0000018799,0.0000018785, +0.0000018762,0.0000018780,0.0000018834,0.0000018875,0.0000018881, +0.0000018844,0.0000018780,0.0000018741,0.0000018724,0.0000018703, +0.0000018679,0.0000018648,0.0000018612,0.0000018575,0.0000018540, +0.0000018517,0.0000018515,0.0000018525,0.0000018537,0.0000018542, +0.0000018542,0.0000018527,0.0000018507,0.0000018483,0.0000018438, +0.0000018364,0.0000018278,0.0000018210,0.0000018176,0.0000018168, +0.0000018172,0.0000018178,0.0000018175,0.0000018152,0.0000018123, +0.0000018112,0.0000018106,0.0000018091,0.0000018077,0.0000018075, +0.0000018080,0.0000018084,0.0000018095,0.0000018114,0.0000018125, +0.0000018118,0.0000018111,0.0000018104,0.0000018100,0.0000018083, +0.0000018038,0.0000017977,0.0000017923,0.0000017883,0.0000017852, +0.0000017821,0.0000017770,0.0000017699,0.0000017640,0.0000017617, +0.0000017626,0.0000017642,0.0000017652,0.0000017649,0.0000017619, +0.0000017559,0.0000017491,0.0000017446,0.0000017427,0.0000017426, +0.0000017431,0.0000017453,0.0000017480,0.0000017505,0.0000017516, +0.0000017506,0.0000017470,0.0000017423,0.0000017401,0.0000017395, +0.0000017381,0.0000017366,0.0000017361,0.0000017377,0.0000017404, +0.0000017397,0.0000017358,0.0000017322,0.0000017309,0.0000017288, +0.0000017270,0.0000017254,0.0000017205,0.0000017133,0.0000017113, +0.0000017212,0.0000017418,0.0000017618,0.0000017689,0.0000017651, +0.0000017628,0.0000017665,0.0000017839,0.0000018153,0.0000018241, +0.0000018284,0.0000018268,0.0000018273,0.0000018289,0.0000018269, +0.0000018248,0.0000018233,0.0000018211,0.0000018190,0.0000018174, +0.0000018147,0.0000018094,0.0000018016,0.0000017940,0.0000017909, +0.0000017910,0.0000017865,0.0000017741,0.0000017702,0.0000017807, +0.0000017948,0.0000018038,0.0000018091,0.0000018122,0.0000018154, +0.0000018195,0.0000018259,0.0000018344,0.0000018404,0.0000018396, +0.0000018374,0.0000018414,0.0000018429,0.0000018344,0.0000018243, +0.0000018225,0.0000018264,0.0000018333,0.0000018403,0.0000018457, +0.0000018468,0.0000018454,0.0000018450,0.0000018437,0.0000018416, +0.0000018389,0.0000018339,0.0000018280,0.0000018230,0.0000018195, +0.0000018167,0.0000018152,0.0000018158,0.0000018185,0.0000018226, +0.0000018259,0.0000018281,0.0000018307,0.0000018342,0.0000018378, +0.0000018410,0.0000018424,0.0000018415,0.0000018395,0.0000018392, +0.0000018409,0.0000018424,0.0000018425,0.0000018413,0.0000018399, +0.0000018406,0.0000018452,0.0000018514,0.0000018560,0.0000018591, +0.0000018620,0.0000018656,0.0000018686,0.0000018686,0.0000018642, +0.0000018587,0.0000018562,0.0000018560,0.0000018555,0.0000018546, +0.0000018544,0.0000018511,0.0000018435,0.0000018350,0.0000018303, +0.0000018300,0.0000018301,0.0000018266,0.0000018201,0.0000018158, +0.0000018148,0.0000018126,0.0000018093,0.0000018029,0.0000017928, +0.0000017899,0.0000017995,0.0000018052,0.0000017967,0.0000017848, +0.0000017789,0.0000017759,0.0000017686,0.0000017577,0.0000017523, +0.0000017522,0.0000017545,0.0000017614,0.0000017646,0.0000017645, +0.0000017662,0.0000017660,0.0000017719,0.0000017776,0.0000017782, +0.0000017856,0.0000017704,0.0000017603,0.0000017635,0.0000017763, +0.0000017840,0.0000017769,0.0000017759,0.0000017785,0.0000017831, +0.0000017885,0.0000017887,0.0000017842,0.0000017766,0.0000017682, +0.0000017613,0.0000017556,0.0000017520,0.0000017496,0.0000017484, +0.0000017481,0.0000017490,0.0000017514,0.0000017548,0.0000017583, +0.0000017616,0.0000017642,0.0000017665,0.0000017693,0.0000017718, +0.0000017742,0.0000017761,0.0000017768,0.0000017766,0.0000017750, +0.0000017725,0.0000017699,0.0000017694,0.0000017664,0.0000017664, +0.0000017716,0.0000017787,0.0000017851,0.0000017896,0.0000017952, +0.0000017995,0.0000018021,0.0000018027,0.0000018019,0.0000018006, +0.0000017989,0.0000017963,0.0000017944,0.0000017950,0.0000017992, +0.0000018033,0.0000018059,0.0000018071,0.0000018060,0.0000018058, +0.0000018093,0.0000018152,0.0000018218,0.0000018282,0.0000018343, +0.0000018435,0.0000018553,0.0000018634,0.0000018639,0.0000018606, +0.0000018580,0.0000018530,0.0000018452,0.0000018390,0.0000018274, +0.0000018139,0.0000018156,0.0000018263,0.0000018320,0.0000018341, +0.0000018309,0.0000018218,0.0000018193,0.0000018285,0.0000018408, +0.0000018461,0.0000018461,0.0000018465,0.0000018482,0.0000018473, +0.0000018373,0.0000018159,0.0000017929,0.0000017846,0.0000017903, +0.0000018039,0.0000018111,0.0000018142,0.0000018234,0.0000018362, +0.0000018425,0.0000018444,0.0000018497,0.0000018568,0.0000018596, +0.0000018591,0.0000018554,0.0000018527,0.0000018535,0.0000018572, +0.0000018613,0.0000018642,0.0000018673,0.0000018713,0.0000018755, +0.0000018779,0.0000018768,0.0000018683,0.0000018519,0.0000018337, +0.0000018192,0.0000018101,0.0000018042,0.0000017981,0.0000017908, +0.0000017825,0.0000017758,0.0000017720,0.0000017706,0.0000017695, +0.0000017688,0.0000017718,0.0000017834,0.0000018033,0.0000018221, +0.0000018313,0.0000018309,0.0000018299,0.0000018293,0.0000018278, +0.0000018222,0.0000018159,0.0000018128,0.0000018107,0.0000018183, +0.0000018393,0.0000018500,0.0000018600,0.0000019183,0.0000019760, +0.0000019916,0.0000020000,0.0000020005,0.0000020023,0.0000020039, +0.0000020043,0.0000020019,0.0000019936,0.0000019812,0.0000019749, +0.0000019759,0.0000019808,0.0000019805,0.0000019698,0.0000019463, +0.0000019143,0.0000018861,0.0000018667,0.0000018550,0.0000018500, +0.0000018474,0.0000018452,0.0000018436,0.0000018405,0.0000018364, +0.0000018316,0.0000018267,0.0000018225,0.0000018199,0.0000018187, +0.0000018158,0.0000018130,0.0000018097,0.0000018064,0.0000018036, +0.0000018008,0.0000017993,0.0000017993,0.0000017997,0.0000018000, +0.0000018000,0.0000017990,0.0000017973,0.0000017952,0.0000017942, +0.0000017942,0.0000017945,0.0000017952,0.0000017971,0.0000018003, +0.0000018059,0.0000018120,0.0000018157,0.0000018168,0.0000018175, +0.0000018220,0.0000018354,0.0000018486,0.0000018544,0.0000018579, +0.0000018639,0.0000018704,0.0000018725,0.0000018699,0.0000018673, +0.0000018753,0.0000018958,0.0000019126,0.0000019197,0.0000019217, +0.0000019113,0.0000018787,0.0000018401,0.0000018211,0.0000018271, +0.0000018369,0.0000018406,0.0000018334,0.0000018250,0.0000018272, +0.0000018343,0.0000018470,0.0000018573,0.0000018621,0.0000018616, +0.0000018600,0.0000018604,0.0000018628,0.0000018649,0.0000018664, +0.0000018682,0.0000018712,0.0000018743,0.0000018761,0.0000018746, +0.0000018707,0.0000018622,0.0000018498,0.0000018367,0.0000018256, +0.0000018174,0.0000018115,0.0000018068,0.0000018023,0.0000017972, +0.0000017913,0.0000017860,0.0000017843,0.0000017848,0.0000017863, +0.0000017890,0.0000017927,0.0000017979,0.0000018040,0.0000018112, +0.0000018178,0.0000018238,0.0000018294,0.0000018340,0.0000018379, +0.0000018409,0.0000018432,0.0000018458,0.0000018491,0.0000018516, +0.0000018542,0.0000018569,0.0000018590,0.0000018599,0.0000018604, +0.0000018619,0.0000018649,0.0000018715,0.0000018791,0.0000018827, +0.0000018786,0.0000018653,0.0000018540,0.0000018501,0.0000018499, +0.0000018475,0.0000018445,0.0000018407,0.0000018363,0.0000018307, +0.0000018275,0.0000018308,0.0000018378,0.0000018437,0.0000018470, +0.0000018517,0.0000018596,0.0000018687,0.0000018743,0.0000018759, +0.0000018757,0.0000018750,0.0000018754,0.0000018758,0.0000018771, +0.0000018805,0.0000018844,0.0000018864,0.0000018879,0.0000018897, +0.0000018897,0.0000018891,0.0000018886,0.0000018883,0.0000018888, +0.0000018902,0.0000018946,0.0000019021,0.0000019098,0.0000019169, +0.0000019248,0.0000019344,0.0000019456,0.0000019578,0.0000019686, +0.0000019767,0.0000019823,0.0000019870,0.0000019905,0.0000019939, +0.0000019975,0.0000019998,0.0000020023,0.0000020077,0.0000020148, +0.0000020197,0.0000020132,0.0000019934,0.0000019842,0.0000019841, +0.0000019843,0.0000019818,0.0000019773,0.0000019780,0.0000019964, +0.0000020221,0.0000020314,0.0000020312,0.0000020266,0.0000020203, +0.0000020186,0.0000020227,0.0000020292,0.0000020334,0.0000020330, +0.0000020220,0.0000020046,0.0000019889,0.0000019799,0.0000019777, +0.0000019812,0.0000019944,0.0000020135,0.0000020254,0.0000020260, +0.0000020200,0.0000019981,0.0000019517,0.0000018966,0.0000018589, +0.0000018441,0.0000018381,0.0000018281,0.0000018135,0.0000018001, +0.0000017933,0.0000017961,0.0000018105,0.0000018296,0.0000018446, +0.0000018553,0.0000018640,0.0000018702,0.0000018737,0.0000018773, +0.0000018792,0.0000018797,0.0000018786,0.0000018752,0.0000018677, +0.0000018676,0.0000018864,0.0000019182,0.0000019276,0.0000019018, +0.0000018644,0.0000018450,0.0000018452,0.0000018471,0.0000018604, +0.0000018954,0.0000019347,0.0000019316,0.0000018686,0.0000018221, +0.0000018458,0.0000019012,0.0000019144,0.0000018904,0.0000018588, +0.0000018470,0.0000018543,0.0000018661,0.0000018732,0.0000018970, +0.0000019431,0.0000019795,0.0000019883,0.0000019846,0.0000019779, +0.0000019731,0.0000019756,0.0000019924,0.0000020133,0.0000020217, +0.0000020231,0.0000020241,0.0000020250,0.0000020246,0.0000020232, +0.0000020228,0.0000020227,0.0000020218,0.0000020201,0.0000020199, +0.0000020204,0.0000020213,0.0000020218,0.0000020216,0.0000020198, +0.0000020166,0.0000020131,0.0000020099,0.0000020076,0.0000020068, +0.0000020067,0.0000020072,0.0000020062,0.0000020073,0.0000020083, +0.0000020085,0.0000020091,0.0000020096,0.0000020082,0.0000020055, +0.0000020024,0.0000019981,0.0000019934,0.0000019892,0.0000019843, +0.0000019786,0.0000019735,0.0000019694,0.0000019647,0.0000019594, +0.0000019549,0.0000019516,0.0000019516,0.0000019484,0.0000019454, +0.0000019413,0.0000019377,0.0000019362,0.0000019348,0.0000019333, +0.0000019318,0.0000019309,0.0000019301,0.0000019269,0.0000019295, +0.0000019367,0.0000019538,0.0000019806,0.0000020082,0.0000020256, +0.0000020300,0.0000020275,0.0000020225,0.0000020206,0.0000020234, +0.0000020281,0.0000020293,0.0000020231,0.0000020122,0.0000020018, +0.0000019942,0.0000019899,0.0000019874,0.0000019865,0.0000019898, +0.0000019975,0.0000020067,0.0000020152,0.0000020211,0.0000020247, +0.0000020269,0.0000020281,0.0000020285,0.0000020282,0.0000020271, +0.0000020250,0.0000020221,0.0000020191,0.0000020163,0.0000020130, +0.0000020099,0.0000020093,0.0000020122,0.0000020217,0.0000020320, +0.0000020401,0.0000020451,0.0000020482,0.0000020508,0.0000020528, +0.0000020533,0.0000020526,0.0000020494,0.0000020445,0.0000020381, +0.0000020311,0.0000020255,0.0000020212,0.0000020191,0.0000020188, +0.0000020210,0.0000020195,0.0000020204,0.0000020159,0.0000020103, +0.0000020027,0.0000019958,0.0000019910,0.0000019911,0.0000019929, +0.0000019962,0.0000020004,0.0000020038,0.0000020056,0.0000020084, +0.0000020089,0.0000020065,0.0000020037,0.0000020039,0.0000020127, +0.0000020245,0.0000020337,0.0000020377,0.0000020383,0.0000020373, +0.0000020349,0.0000020317,0.0000020292,0.0000020285,0.0000020293, +0.0000020307,0.0000020315,0.0000020313,0.0000020290,0.0000020273, +0.0000020253,0.0000020256,0.0000020262,0.0000020269,0.0000020276, +0.0000020277,0.0000020268,0.0000020253,0.0000020236,0.0000020195, +0.0000020139,0.0000020088,0.0000020055,0.0000020032,0.0000020024, +0.0000020026,0.0000020039,0.0000020055,0.0000020062,0.0000020057, +0.0000020058,0.0000020056,0.0000020055,0.0000020055,0.0000020062, +0.0000020087,0.0000020124,0.0000020162,0.0000020198,0.0000020233, +0.0000020259,0.0000020276,0.0000020283,0.0000020288,0.0000020286, +0.0000020290,0.0000020290,0.0000020287,0.0000020292,0.0000020293, +0.0000020264,0.0000020223,0.0000020174,0.0000020133,0.0000020113, +0.0000020099,0.0000020088,0.0000020080,0.0000020062,0.0000020032, +0.0000019996,0.0000019957,0.0000019920,0.0000019879,0.0000019840, +0.0000019811,0.0000019795,0.0000019785,0.0000019785,0.0000019785, +0.0000019768,0.0000019731,0.0000019680,0.0000019629,0.0000019589, +0.0000019561,0.0000019535,0.0000019504,0.0000019459,0.0000019408, +0.0000019355,0.0000019315,0.0000019287,0.0000019284,0.0000019282, +0.0000019279,0.0000019280,0.0000019272,0.0000019255,0.0000019245, +0.0000019254,0.0000019284,0.0000019321,0.0000019347,0.0000019333, +0.0000019267,0.0000019176,0.0000019092,0.0000019013,0.0000018943, +0.0000018881,0.0000018799,0.0000018728,0.0000018695,0.0000018698, +0.0000018735,0.0000018787,0.0000018855,0.0000018934,0.0000019011, +0.0000019067,0.0000019089,0.0000019093,0.0000019104,0.0000019134, +0.0000019170,0.0000019198,0.0000019231,0.0000019267,0.0000019294, +0.0000019275,0.0000019199,0.0000019129,0.0000019146,0.0000019217, +0.0000019270,0.0000019277,0.0000019260,0.0000019239,0.0000019223, +0.0000019228,0.0000019254,0.0000019269,0.0000019247,0.0000019149, +0.0000019005,0.0000018869,0.0000018802,0.0000018784,0.0000018755, +0.0000018750,0.0000018787,0.0000018833,0.0000018862,0.0000018862, +0.0000018836,0.0000018824,0.0000018835,0.0000018834,0.0000018810, +0.0000018771,0.0000018717,0.0000018654,0.0000018593,0.0000018544, +0.0000018522,0.0000018524,0.0000018537,0.0000018545,0.0000018547, +0.0000018544,0.0000018538,0.0000018530,0.0000018506,0.0000018441, +0.0000018336,0.0000018230,0.0000018173,0.0000018170,0.0000018196, +0.0000018236,0.0000018256,0.0000018247,0.0000018222,0.0000018212, +0.0000018216,0.0000018212,0.0000018191,0.0000018173,0.0000018167, +0.0000018161,0.0000018155,0.0000018158,0.0000018155,0.0000018136, +0.0000018114,0.0000018103,0.0000018111,0.0000018124,0.0000018120, +0.0000018089,0.0000018050,0.0000018019,0.0000017994,0.0000017966, +0.0000017915,0.0000017834,0.0000017750,0.0000017701,0.0000017691, +0.0000017698,0.0000017705,0.0000017703,0.0000017682,0.0000017627, +0.0000017550,0.0000017488,0.0000017452,0.0000017435,0.0000017431, +0.0000017450,0.0000017480,0.0000017510,0.0000017526,0.0000017520, +0.0000017492,0.0000017450,0.0000017422,0.0000017412,0.0000017399, +0.0000017376,0.0000017351,0.0000017349,0.0000017374,0.0000017388, +0.0000017368,0.0000017338,0.0000017332,0.0000017329,0.0000017319, +0.0000017309,0.0000017276,0.0000017199,0.0000017118,0.0000017119, +0.0000017229,0.0000017419,0.0000017541,0.0000017533,0.0000017502, +0.0000017553,0.0000017753,0.0000018125,0.0000018236,0.0000018270, +0.0000018256,0.0000018278,0.0000018268,0.0000018239,0.0000018219, +0.0000018200,0.0000018188,0.0000018170,0.0000018136,0.0000018085, +0.0000018018,0.0000017952,0.0000017917,0.0000017912,0.0000017879, +0.0000017764,0.0000017688,0.0000017736,0.0000017864,0.0000017951, +0.0000018009,0.0000018058,0.0000018102,0.0000018159,0.0000018237, +0.0000018333,0.0000018395,0.0000018381,0.0000018356,0.0000018394, +0.0000018436,0.0000018407,0.0000018347,0.0000018327,0.0000018353, +0.0000018384,0.0000018413,0.0000018447,0.0000018453,0.0000018437, +0.0000018422,0.0000018420,0.0000018425,0.0000018436,0.0000018431, +0.0000018434,0.0000018419,0.0000018399,0.0000018403,0.0000018407, +0.0000018404,0.0000018411,0.0000018428,0.0000018441,0.0000018443, +0.0000018442,0.0000018448,0.0000018465,0.0000018493,0.0000018525, +0.0000018546,0.0000018549,0.0000018546,0.0000018547,0.0000018553, +0.0000018547,0.0000018529,0.0000018512,0.0000018503,0.0000018504, +0.0000018523,0.0000018556,0.0000018595,0.0000018633,0.0000018677, +0.0000018716,0.0000018734,0.0000018718,0.0000018675,0.0000018639, +0.0000018617,0.0000018597,0.0000018580,0.0000018580,0.0000018569, +0.0000018526,0.0000018454,0.0000018385,0.0000018347,0.0000018322, +0.0000018273,0.0000018188,0.0000018100,0.0000018063,0.0000018074, +0.0000018102,0.0000018093,0.0000018046,0.0000017957,0.0000017937, +0.0000018007,0.0000018044,0.0000017945,0.0000017814,0.0000017765, +0.0000017735,0.0000017648,0.0000017547,0.0000017508,0.0000017515, +0.0000017580,0.0000017637,0.0000017639,0.0000017651,0.0000017665, +0.0000017685,0.0000017771,0.0000017779,0.0000017839,0.0000017810, +0.0000017623,0.0000017615,0.0000017708,0.0000017835,0.0000017783, +0.0000017764,0.0000017784,0.0000017800,0.0000017842,0.0000017879, +0.0000017875,0.0000017831,0.0000017762,0.0000017690,0.0000017618, +0.0000017554,0.0000017514,0.0000017487,0.0000017474,0.0000017476, +0.0000017489,0.0000017523,0.0000017560,0.0000017594,0.0000017628, +0.0000017665,0.0000017700,0.0000017727,0.0000017755,0.0000017778, +0.0000017792,0.0000017791,0.0000017780,0.0000017759,0.0000017719, +0.0000017680,0.0000017681,0.0000017638,0.0000017633,0.0000017670, +0.0000017741,0.0000017814,0.0000017891,0.0000017955,0.0000017985, +0.0000017984,0.0000017971,0.0000017961,0.0000017968,0.0000017974, +0.0000017963,0.0000017958,0.0000017984,0.0000018023,0.0000018049, +0.0000018072,0.0000018078,0.0000018068,0.0000018079,0.0000018118, +0.0000018171,0.0000018242,0.0000018316,0.0000018395,0.0000018503, +0.0000018615,0.0000018662,0.0000018640,0.0000018605,0.0000018572, +0.0000018499,0.0000018429,0.0000018367,0.0000018229,0.0000018140, +0.0000018201,0.0000018303,0.0000018339,0.0000018334,0.0000018257, +0.0000018188,0.0000018226,0.0000018346,0.0000018422,0.0000018446, +0.0000018473,0.0000018510,0.0000018491,0.0000018340,0.0000018081, +0.0000017885,0.0000017873,0.0000017984,0.0000018078,0.0000018117, +0.0000018201,0.0000018336,0.0000018417,0.0000018446,0.0000018503, +0.0000018564,0.0000018585,0.0000018576,0.0000018551,0.0000018541, +0.0000018560,0.0000018610,0.0000018660,0.0000018697,0.0000018730, +0.0000018767,0.0000018806,0.0000018846,0.0000018871,0.0000018864, +0.0000018780,0.0000018604,0.0000018401,0.0000018242,0.0000018147, +0.0000018082,0.0000018001,0.0000017896,0.0000017778,0.0000017672, +0.0000017598,0.0000017575,0.0000017581,0.0000017595,0.0000017616, +0.0000017660,0.0000017777,0.0000017978,0.0000018182,0.0000018290, +0.0000018301,0.0000018297,0.0000018301,0.0000018279,0.0000018188, +0.0000018127,0.0000018107,0.0000018193,0.0000018417,0.0000018510, +0.0000018712,0.0000019414,0.0000019823,0.0000019971,0.0000020036, +0.0000020032,0.0000020033,0.0000020022,0.0000019971,0.0000019872, +0.0000019788,0.0000019766,0.0000019813,0.0000019828,0.0000019743, +0.0000019510,0.0000019140,0.0000018789,0.0000018585,0.0000018513, +0.0000018485,0.0000018468,0.0000018446,0.0000018405,0.0000018356, +0.0000018305,0.0000018263,0.0000018235,0.0000018219,0.0000018209, +0.0000018207,0.0000018206,0.0000018199,0.0000018181,0.0000018156, +0.0000018124,0.0000018087,0.0000018052,0.0000018027,0.0000018013, +0.0000018007,0.0000018009,0.0000018009,0.0000018000,0.0000017977, +0.0000017943,0.0000017922,0.0000017922,0.0000017928,0.0000017922, +0.0000017925,0.0000017924,0.0000017967,0.0000018038,0.0000018088, +0.0000018112,0.0000018126,0.0000018158,0.0000018289,0.0000018459, +0.0000018547,0.0000018577,0.0000018626,0.0000018704,0.0000018735, +0.0000018707,0.0000018699,0.0000018833,0.0000019044,0.0000019169, +0.0000019201,0.0000019082,0.0000018746,0.0000018350,0.0000018168, +0.0000018213,0.0000018301,0.0000018295,0.0000018244,0.0000018193, +0.0000018229,0.0000018364,0.0000018519,0.0000018615,0.0000018633, +0.0000018619,0.0000018610,0.0000018623,0.0000018649,0.0000018672, +0.0000018679,0.0000018686,0.0000018711,0.0000018749,0.0000018770, +0.0000018765,0.0000018713,0.0000018615,0.0000018484,0.0000018341, +0.0000018213,0.0000018116,0.0000018054,0.0000018017,0.0000017988, +0.0000017955,0.0000017915,0.0000017876,0.0000017847,0.0000017849, +0.0000017860,0.0000017877,0.0000017906,0.0000017950,0.0000018005, +0.0000018071,0.0000018143,0.0000018220,0.0000018298,0.0000018371, +0.0000018428,0.0000018477,0.0000018516,0.0000018543,0.0000018565, +0.0000018583,0.0000018588,0.0000018588,0.0000018591,0.0000018592, +0.0000018585,0.0000018575,0.0000018571,0.0000018581,0.0000018624, +0.0000018694,0.0000018755,0.0000018739,0.0000018615,0.0000018507, +0.0000018489,0.0000018502,0.0000018520,0.0000018514,0.0000018484, +0.0000018450,0.0000018397,0.0000018354,0.0000018350,0.0000018404, +0.0000018490,0.0000018541,0.0000018560,0.0000018615,0.0000018728, +0.0000018833,0.0000018886,0.0000018893,0.0000018881,0.0000018854, +0.0000018815,0.0000018792,0.0000018791,0.0000018810,0.0000018828, +0.0000018842,0.0000018844,0.0000018836,0.0000018833,0.0000018823, +0.0000018818,0.0000018820,0.0000018837,0.0000018888,0.0000018965, +0.0000019051,0.0000019135,0.0000019217,0.0000019301,0.0000019399, +0.0000019513,0.0000019632,0.0000019732,0.0000019810,0.0000019864, +0.0000019897,0.0000019920,0.0000019941,0.0000019981,0.0000020063, +0.0000020153,0.0000020203,0.0000020150,0.0000019964,0.0000019863, +0.0000019859,0.0000019858,0.0000019826,0.0000019780,0.0000019794, +0.0000019980,0.0000020228,0.0000020312,0.0000020310,0.0000020274, +0.0000020236,0.0000020232,0.0000020280,0.0000020342,0.0000020344, +0.0000020279,0.0000020138,0.0000019973,0.0000019842,0.0000019774, +0.0000019771,0.0000019851,0.0000020039,0.0000020208,0.0000020258, +0.0000020248,0.0000020085,0.0000019665,0.0000019087,0.0000018645, +0.0000018458,0.0000018371,0.0000018234,0.0000018056,0.0000017933, +0.0000017952,0.0000018026,0.0000018194,0.0000018368,0.0000018494, +0.0000018576,0.0000018580,0.0000018606,0.0000018633,0.0000018650, +0.0000018683,0.0000018730,0.0000018750,0.0000018726,0.0000018690, +0.0000018659,0.0000018680,0.0000018843,0.0000019069,0.0000019077, +0.0000018809,0.0000018548,0.0000018469,0.0000018473,0.0000018476, +0.0000018475,0.0000018549,0.0000018956,0.0000019384,0.0000019173, +0.0000018454,0.0000018229,0.0000018717,0.0000019191,0.0000019138, +0.0000018763,0.0000018468,0.0000018434,0.0000018540,0.0000018616, +0.0000018667,0.0000018951,0.0000019454,0.0000019798,0.0000019871, +0.0000019837,0.0000019743,0.0000019661,0.0000019730,0.0000020009, +0.0000020208,0.0000020240,0.0000020231,0.0000020216,0.0000020204, +0.0000020195,0.0000020201,0.0000020206,0.0000020204,0.0000020208, +0.0000020227,0.0000020254,0.0000020273,0.0000020279,0.0000020278, +0.0000020266,0.0000020241,0.0000020206,0.0000020163,0.0000020128, +0.0000020110,0.0000020089,0.0000020069,0.0000020028,0.0000019993, +0.0000019970,0.0000019930,0.0000019886,0.0000019834,0.0000019760, +0.0000019690,0.0000019644,0.0000019601,0.0000019560,0.0000019542, +0.0000019552,0.0000019553,0.0000019546,0.0000019544,0.0000019546, +0.0000019538,0.0000019534,0.0000019543,0.0000019556,0.0000019561, +0.0000019561,0.0000019553,0.0000019540,0.0000019517,0.0000019485, +0.0000019452,0.0000019423,0.0000019385,0.0000019324,0.0000019255, +0.0000019199,0.0000019186,0.0000019307,0.0000019597,0.0000019957, +0.0000020227,0.0000020324,0.0000020311,0.0000020247,0.0000020181, +0.0000020153,0.0000020177,0.0000020223,0.0000020243,0.0000020205, +0.0000020143,0.0000020049,0.0000019975,0.0000019917,0.0000019875, +0.0000019852,0.0000019853,0.0000019850,0.0000019881,0.0000019911, +0.0000019934,0.0000019953,0.0000019968,0.0000019972,0.0000019970, +0.0000019962,0.0000019945,0.0000019917,0.0000019883,0.0000019849, +0.0000019822,0.0000019855,0.0000019935,0.0000020090,0.0000020267, +0.0000020395,0.0000020458,0.0000020490,0.0000020510,0.0000020530, +0.0000020532,0.0000020521,0.0000020491,0.0000020440,0.0000020386, +0.0000020337,0.0000020299,0.0000020272,0.0000020240,0.0000020227, +0.0000020181,0.0000020136,0.0000020065,0.0000019990,0.0000019929, +0.0000019908,0.0000019892,0.0000019932,0.0000019963,0.0000020020, +0.0000020034,0.0000020054,0.0000020038,0.0000020027,0.0000020017, +0.0000019996,0.0000019957,0.0000019956,0.0000019982,0.0000020091, +0.0000020226,0.0000020301,0.0000020324,0.0000020314,0.0000020300, +0.0000020282,0.0000020261,0.0000020246,0.0000020243,0.0000020248, +0.0000020259,0.0000020269,0.0000020277,0.0000020281,0.0000020279, +0.0000020282,0.0000020294,0.0000020305,0.0000020323,0.0000020337, +0.0000020344,0.0000020340,0.0000020335,0.0000020335,0.0000020325, +0.0000020298,0.0000020256,0.0000020214,0.0000020187,0.0000020174, +0.0000020158,0.0000020141,0.0000020121,0.0000020093,0.0000020064, +0.0000020038,0.0000020020,0.0000020009,0.0000020006,0.0000020024, +0.0000020055,0.0000020092,0.0000020132,0.0000020173,0.0000020204, +0.0000020218,0.0000020226,0.0000020230,0.0000020240,0.0000020262, +0.0000020278,0.0000020310,0.0000020345,0.0000020374,0.0000020396, +0.0000020400,0.0000020384,0.0000020357,0.0000020327,0.0000020303, +0.0000020279,0.0000020255,0.0000020234,0.0000020219,0.0000020200, +0.0000020177,0.0000020147,0.0000020110,0.0000020061,0.0000020001, +0.0000019947,0.0000019902,0.0000019862,0.0000019829,0.0000019813, +0.0000019808,0.0000019800,0.0000019783,0.0000019753,0.0000019712, +0.0000019670,0.0000019630,0.0000019592,0.0000019553,0.0000019513, +0.0000019473,0.0000019433,0.0000019409,0.0000019391,0.0000019388, +0.0000019376,0.0000019358,0.0000019331,0.0000019296,0.0000019262, +0.0000019241,0.0000019254,0.0000019293,0.0000019355,0.0000019407, +0.0000019415,0.0000019367,0.0000019278,0.0000019176,0.0000019085, +0.0000018998,0.0000018907,0.0000018801,0.0000018712,0.0000018681, +0.0000018681,0.0000018734,0.0000018793,0.0000018866,0.0000018956, +0.0000019044,0.0000019108,0.0000019136,0.0000019139,0.0000019142, +0.0000019161,0.0000019183,0.0000019216,0.0000019256,0.0000019301, +0.0000019327,0.0000019301,0.0000019218,0.0000019154,0.0000019182, +0.0000019247,0.0000019287,0.0000019283,0.0000019255,0.0000019222, +0.0000019218,0.0000019245,0.0000019278,0.0000019298,0.0000019272, +0.0000019176,0.0000019022,0.0000018876,0.0000018806,0.0000018762, +0.0000018738,0.0000018750,0.0000018796,0.0000018828,0.0000018839, +0.0000018831,0.0000018832,0.0000018865,0.0000018914,0.0000018923, +0.0000018904,0.0000018856,0.0000018783,0.0000018700,0.0000018620, +0.0000018562,0.0000018541,0.0000018549,0.0000018561,0.0000018561, +0.0000018550,0.0000018539,0.0000018536,0.0000018534,0.0000018511, +0.0000018429,0.0000018302,0.0000018193,0.0000018158,0.0000018180, +0.0000018234,0.0000018274,0.0000018294,0.0000018287,0.0000018278, +0.0000018292,0.0000018304,0.0000018298,0.0000018282,0.0000018271, +0.0000018268,0.0000018262,0.0000018253,0.0000018238,0.0000018206, +0.0000018158,0.0000018115,0.0000018106,0.0000018110,0.0000018117, +0.0000018110,0.0000018103,0.0000018096,0.0000018087,0.0000018072, +0.0000018038,0.0000017976,0.0000017903,0.0000017849,0.0000017824, +0.0000017815,0.0000017807,0.0000017794,0.0000017771,0.0000017718, +0.0000017638,0.0000017560,0.0000017507,0.0000017476,0.0000017462, +0.0000017466,0.0000017492,0.0000017528,0.0000017551,0.0000017545, +0.0000017516,0.0000017475,0.0000017439,0.0000017417,0.0000017403, +0.0000017383,0.0000017356,0.0000017341,0.0000017351,0.0000017367, +0.0000017361,0.0000017341,0.0000017327,0.0000017328,0.0000017330, +0.0000017331,0.0000017328,0.0000017287,0.0000017195,0.0000017116, +0.0000017127,0.0000017245,0.0000017396,0.0000017446,0.0000017414, +0.0000017443,0.0000017636,0.0000018055,0.0000018221,0.0000018259, +0.0000018256,0.0000018273,0.0000018238,0.0000018210,0.0000018187, +0.0000018180,0.0000018154,0.0000018111,0.0000018063,0.0000018005, +0.0000017947,0.0000017914,0.0000017911,0.0000017872,0.0000017762, +0.0000017674,0.0000017700,0.0000017802,0.0000017888,0.0000017934, +0.0000017980,0.0000018044,0.0000018124,0.0000018225,0.0000018325, +0.0000018372,0.0000018355,0.0000018335,0.0000018379,0.0000018437, +0.0000018437,0.0000018396,0.0000018359,0.0000018351,0.0000018358, +0.0000018362,0.0000018366,0.0000018362,0.0000018344,0.0000018321, +0.0000018310,0.0000018311,0.0000018324,0.0000018341,0.0000018359, +0.0000018370,0.0000018380,0.0000018403,0.0000018436,0.0000018455, +0.0000018465,0.0000018477,0.0000018488,0.0000018490,0.0000018481, +0.0000018476,0.0000018479,0.0000018498,0.0000018530,0.0000018569, +0.0000018616,0.0000018651,0.0000018672,0.0000018690,0.0000018690, +0.0000018663,0.0000018621,0.0000018596,0.0000018594,0.0000018596, +0.0000018595,0.0000018606,0.0000018638,0.0000018688,0.0000018741, +0.0000018777,0.0000018778,0.0000018744,0.0000018706,0.0000018679, +0.0000018653,0.0000018630,0.0000018625,0.0000018622,0.0000018603, +0.0000018559,0.0000018499,0.0000018441,0.0000018383,0.0000018302, +0.0000018182,0.0000018055,0.0000017979,0.0000017968,0.0000018002, +0.0000018055,0.0000018075,0.0000018059,0.0000017995,0.0000017974, +0.0000018015,0.0000018016,0.0000017911,0.0000017791,0.0000017750, +0.0000017703,0.0000017608,0.0000017519,0.0000017496,0.0000017541, +0.0000017617,0.0000017633,0.0000017626,0.0000017647,0.0000017678, +0.0000017740,0.0000017792,0.0000017798,0.0000017855,0.0000017708, +0.0000017613,0.0000017656,0.0000017812,0.0000017799,0.0000017766, +0.0000017794,0.0000017805,0.0000017814,0.0000017835,0.0000017851, +0.0000017844,0.0000017814,0.0000017780,0.0000017726,0.0000017662, +0.0000017604,0.0000017548,0.0000017504,0.0000017483,0.0000017488, +0.0000017517,0.0000017554,0.0000017589,0.0000017624,0.0000017661, +0.0000017691,0.0000017714,0.0000017741,0.0000017771,0.0000017794, +0.0000017801,0.0000017793,0.0000017773,0.0000017750,0.0000017720, +0.0000017713,0.0000017681,0.0000017640,0.0000017622,0.0000017639, +0.0000017695,0.0000017776,0.0000017859,0.0000017911,0.0000017926, +0.0000017928,0.0000017933,0.0000017957,0.0000017983,0.0000017982, +0.0000017970,0.0000017975,0.0000018007,0.0000018033,0.0000018058, +0.0000018080,0.0000018083,0.0000018083,0.0000018105,0.0000018138, +0.0000018191,0.0000018273,0.0000018362,0.0000018457,0.0000018573, +0.0000018667,0.0000018677,0.0000018633,0.0000018599,0.0000018546, +0.0000018466,0.0000018416,0.0000018336,0.0000018184,0.0000018143, +0.0000018249,0.0000018328,0.0000018334,0.0000018300,0.0000018207, +0.0000018187,0.0000018273,0.0000018365,0.0000018415,0.0000018469, +0.0000018526,0.0000018497,0.0000018303,0.0000018027,0.0000017897, +0.0000017939,0.0000018046,0.0000018095,0.0000018159,0.0000018296, +0.0000018409,0.0000018455,0.0000018513,0.0000018581,0.0000018595, +0.0000018577,0.0000018560,0.0000018558,0.0000018581,0.0000018632, +0.0000018685,0.0000018727,0.0000018765,0.0000018801,0.0000018837, +0.0000018873,0.0000018911,0.0000018942,0.0000018945,0.0000018887, +0.0000018728,0.0000018521,0.0000018352,0.0000018245,0.0000018155, +0.0000018038,0.0000017899,0.0000017759,0.0000017636,0.0000017546, +0.0000017503,0.0000017485,0.0000017496,0.0000017521,0.0000017568, +0.0000017642,0.0000017762,0.0000017957,0.0000018169,0.0000018282, +0.0000018298,0.0000018304,0.0000018305,0.0000018226,0.0000018124, +0.0000018106,0.0000018215,0.0000018443,0.0000018529,0.0000018850, +0.0000019582,0.0000019861,0.0000020022,0.0000020047,0.0000020026, +0.0000019990,0.0000019925,0.0000019842,0.0000019805,0.0000019824, +0.0000019840,0.0000019801,0.0000019636,0.0000019288,0.0000018858, +0.0000018583,0.0000018506,0.0000018487,0.0000018463,0.0000018420, +0.0000018368,0.0000018315,0.0000018269,0.0000018239,0.0000018225, +0.0000018220,0.0000018223,0.0000018225,0.0000018222,0.0000018218, +0.0000018213,0.0000018199,0.0000018178,0.0000018155,0.0000018129, +0.0000018102,0.0000018077,0.0000018055,0.0000018035,0.0000018024, +0.0000018022,0.0000018018,0.0000018002,0.0000017975,0.0000017957, +0.0000017972,0.0000018014,0.0000018020,0.0000017975,0.0000017918, +0.0000017919,0.0000017985,0.0000018045,0.0000018074,0.0000018094, +0.0000018128,0.0000018241,0.0000018429,0.0000018551,0.0000018588, +0.0000018627,0.0000018708,0.0000018735,0.0000018711,0.0000018760, +0.0000018967,0.0000019142,0.0000019186,0.0000019054,0.0000018699, +0.0000018303,0.0000018112,0.0000018132,0.0000018195,0.0000018179, +0.0000018122,0.0000018156,0.0000018232,0.0000018392,0.0000018547, +0.0000018620,0.0000018627,0.0000018602,0.0000018599,0.0000018628, +0.0000018673,0.0000018697,0.0000018699,0.0000018694,0.0000018704, +0.0000018734,0.0000018761,0.0000018757,0.0000018697,0.0000018587, +0.0000018455,0.0000018325,0.0000018202,0.0000018093,0.0000018011, +0.0000017961,0.0000017937,0.0000017923,0.0000017912,0.0000017902, +0.0000017885,0.0000017887,0.0000017908,0.0000017925,0.0000017940, +0.0000017959,0.0000017992,0.0000018037,0.0000018092,0.0000018155, +0.0000018232,0.0000018315,0.0000018393,0.0000018448,0.0000018487, +0.0000018523,0.0000018560,0.0000018584,0.0000018600,0.0000018604, +0.0000018601,0.0000018600,0.0000018598,0.0000018587,0.0000018579, +0.0000018571,0.0000018574,0.0000018597,0.0000018646,0.0000018688, +0.0000018674,0.0000018558,0.0000018475,0.0000018476,0.0000018534, +0.0000018597,0.0000018613,0.0000018592,0.0000018564,0.0000018524, +0.0000018491,0.0000018474,0.0000018493,0.0000018562,0.0000018619, +0.0000018623,0.0000018639,0.0000018729,0.0000018861,0.0000018953, +0.0000018995,0.0000019018,0.0000019006,0.0000018963,0.0000018904, +0.0000018856,0.0000018843,0.0000018856,0.0000018868,0.0000018859, +0.0000018842,0.0000018823,0.0000018797,0.0000018788,0.0000018772, +0.0000018798,0.0000018845,0.0000018915,0.0000019004,0.0000019100, +0.0000019190,0.0000019269,0.0000019345,0.0000019441,0.0000019564, +0.0000019689,0.0000019795,0.0000019865,0.0000019893,0.0000019898, +0.0000019933,0.0000020036,0.0000020154,0.0000020210,0.0000020164, +0.0000019987,0.0000019885,0.0000019882,0.0000019879,0.0000019838, +0.0000019784,0.0000019804,0.0000019996,0.0000020231,0.0000020301, +0.0000020298,0.0000020269,0.0000020249,0.0000020261,0.0000020313, +0.0000020349,0.0000020325,0.0000020204,0.0000020049,0.0000019908, +0.0000019809,0.0000019772,0.0000019796,0.0000019931,0.0000020121, +0.0000020248,0.0000020256,0.0000020165,0.0000019824,0.0000019264, +0.0000018755,0.0000018497,0.0000018374,0.0000018211,0.0000018017, +0.0000017911,0.0000017947,0.0000018087,0.0000018280,0.0000018452, +0.0000018551,0.0000018535,0.0000018537,0.0000018495,0.0000018433, +0.0000018412,0.0000018420,0.0000018487,0.0000018588,0.0000018641, +0.0000018627,0.0000018600,0.0000018635,0.0000018727,0.0000018863, +0.0000018949,0.0000018831,0.0000018609,0.0000018522,0.0000018526, +0.0000018563,0.0000018558,0.0000018531,0.0000018508,0.0000018704, +0.0000019216,0.0000019326,0.0000018730,0.0000018237,0.0000018463, +0.0000019100,0.0000019256,0.0000018980,0.0000018538,0.0000018372, +0.0000018434,0.0000018532,0.0000018561,0.0000018631,0.0000019022, +0.0000019519,0.0000019795,0.0000019843,0.0000019793,0.0000019653, +0.0000019626,0.0000019886,0.0000020184,0.0000020261,0.0000020246, +0.0000020220,0.0000020202,0.0000020201,0.0000020209,0.0000020216, +0.0000020206,0.0000020209,0.0000020220,0.0000020226,0.0000020231, +0.0000020235,0.0000020235,0.0000020225,0.0000020202,0.0000020166, +0.0000020118,0.0000020059,0.0000019998,0.0000019929,0.0000019849, +0.0000019755,0.0000019669,0.0000019612,0.0000019563,0.0000019521, +0.0000019494,0.0000019489,0.0000019476,0.0000019484,0.0000019507, +0.0000019512,0.0000019541,0.0000019579,0.0000019579,0.0000019608, +0.0000019616,0.0000019629,0.0000019625,0.0000019604,0.0000019591, +0.0000019600,0.0000019630,0.0000019669,0.0000019689,0.0000019673, +0.0000019626,0.0000019563,0.0000019501,0.0000019457,0.0000019404, +0.0000019321,0.0000019226,0.0000019161,0.0000019161,0.0000019285, +0.0000019562,0.0000019900,0.0000020162,0.0000020282,0.0000020291, +0.0000020241,0.0000020162,0.0000020097,0.0000020070,0.0000020085, +0.0000020133,0.0000020176,0.0000020183,0.0000020156,0.0000020125, +0.0000020065,0.0000020007,0.0000019947,0.0000019896,0.0000019853, +0.0000019816,0.0000019785,0.0000019762,0.0000019734,0.0000019732, +0.0000019743,0.0000019768,0.0000019790,0.0000019798,0.0000019793, +0.0000019780,0.0000019778,0.0000019824,0.0000019958,0.0000020147, +0.0000020318,0.0000020419,0.0000020454,0.0000020473,0.0000020490, +0.0000020503,0.0000020503,0.0000020490,0.0000020466,0.0000020431, +0.0000020390,0.0000020350,0.0000020309,0.0000020257,0.0000020196, +0.0000020123,0.0000020036,0.0000019968,0.0000019913,0.0000019912, +0.0000019920,0.0000019960,0.0000019998,0.0000019990,0.0000020019, +0.0000019982,0.0000019952,0.0000019918,0.0000019916,0.0000019936, +0.0000019957,0.0000019964,0.0000019955,0.0000019973,0.0000020055, +0.0000020175,0.0000020264,0.0000020291,0.0000020276,0.0000020259, +0.0000020249,0.0000020242,0.0000020235,0.0000020229,0.0000020229, +0.0000020233,0.0000020238,0.0000020241,0.0000020241,0.0000020245, +0.0000020253,0.0000020264,0.0000020282,0.0000020295,0.0000020298, +0.0000020295,0.0000020281,0.0000020258,0.0000020235,0.0000020220, +0.0000020213,0.0000020197,0.0000020183,0.0000020173,0.0000020171, +0.0000020187,0.0000020214,0.0000020233,0.0000020238,0.0000020220, +0.0000020188,0.0000020157,0.0000020114,0.0000020078,0.0000020068, +0.0000020076,0.0000020101,0.0000020139,0.0000020182,0.0000020216, +0.0000020236,0.0000020252,0.0000020262,0.0000020278,0.0000020304, +0.0000020346,0.0000020395,0.0000020448,0.0000020495,0.0000020532, +0.0000020545,0.0000020542,0.0000020528,0.0000020496,0.0000020459, +0.0000020427,0.0000020392,0.0000020353,0.0000020318,0.0000020293, +0.0000020272,0.0000020256,0.0000020241,0.0000020215,0.0000020179, +0.0000020132,0.0000020080,0.0000020030,0.0000019982,0.0000019934, +0.0000019895,0.0000019873,0.0000019857,0.0000019840,0.0000019824, +0.0000019802,0.0000019773,0.0000019735,0.0000019691,0.0000019642, +0.0000019597,0.0000019565,0.0000019544,0.0000019543,0.0000019554, +0.0000019559,0.0000019558,0.0000019536,0.0000019499,0.0000019443, +0.0000019384,0.0000019324,0.0000019283,0.0000019282,0.0000019331, +0.0000019403,0.0000019464,0.0000019484,0.0000019449,0.0000019365, +0.0000019263,0.0000019168,0.0000019061,0.0000018945,0.0000018825, +0.0000018732,0.0000018696,0.0000018723,0.0000018779,0.0000018835, +0.0000018895,0.0000018981,0.0000019071,0.0000019141,0.0000019170, +0.0000019173,0.0000019168,0.0000019170,0.0000019184,0.0000019219, +0.0000019262,0.0000019307,0.0000019327,0.0000019302,0.0000019226, +0.0000019182,0.0000019215,0.0000019270,0.0000019296,0.0000019281, +0.0000019233,0.0000019202,0.0000019209,0.0000019244,0.0000019285, +0.0000019303,0.0000019285,0.0000019196,0.0000019039,0.0000018908, +0.0000018822,0.0000018762,0.0000018739,0.0000018762,0.0000018796, +0.0000018820,0.0000018815,0.0000018811,0.0000018835,0.0000018902, +0.0000018953,0.0000018978,0.0000018963,0.0000018920,0.0000018849, +0.0000018759,0.0000018668,0.0000018604,0.0000018580,0.0000018583, +0.0000018587,0.0000018573,0.0000018547,0.0000018532,0.0000018530, +0.0000018529,0.0000018498,0.0000018402,0.0000018273,0.0000018181, +0.0000018169,0.0000018208,0.0000018262,0.0000018301,0.0000018318, +0.0000018323,0.0000018341,0.0000018365,0.0000018375,0.0000018368, +0.0000018356,0.0000018360,0.0000018367,0.0000018360,0.0000018340, +0.0000018305,0.0000018253,0.0000018191,0.0000018145,0.0000018117, +0.0000018108,0.0000018100,0.0000018095,0.0000018101,0.0000018102, +0.0000018094,0.0000018079,0.0000018046,0.0000018009,0.0000017986, +0.0000017976,0.0000017972,0.0000017960,0.0000017939,0.0000017907, +0.0000017851,0.0000017770,0.0000017685,0.0000017618,0.0000017575, +0.0000017548,0.0000017539,0.0000017553,0.0000017587,0.0000017618, +0.0000017615,0.0000017576,0.0000017521,0.0000017471,0.0000017428, +0.0000017398,0.0000017380,0.0000017358,0.0000017346,0.0000017349, +0.0000017356,0.0000017356,0.0000017345,0.0000017322,0.0000017310, +0.0000017307,0.0000017319,0.0000017336,0.0000017339,0.0000017291, +0.0000017192,0.0000017115,0.0000017138,0.0000017255,0.0000017358, +0.0000017365,0.0000017351,0.0000017498,0.0000017912,0.0000018184, +0.0000018251,0.0000018257,0.0000018261,0.0000018216,0.0000018183, +0.0000018173,0.0000018145,0.0000018089,0.0000018044,0.0000017983, +0.0000017922,0.0000017891,0.0000017889,0.0000017844,0.0000017737, +0.0000017661,0.0000017680,0.0000017768,0.0000017855,0.0000017912, +0.0000017956,0.0000018015,0.0000018109,0.0000018222,0.0000018312, +0.0000018337,0.0000018313,0.0000018307,0.0000018362,0.0000018423, +0.0000018435,0.0000018389,0.0000018323,0.0000018274,0.0000018245, +0.0000018220,0.0000018202,0.0000018193,0.0000018188,0.0000018180, +0.0000018172,0.0000018168,0.0000018167,0.0000018166,0.0000018167, +0.0000018166,0.0000018176,0.0000018199,0.0000018220,0.0000018238, +0.0000018256,0.0000018278,0.0000018299,0.0000018316,0.0000018328, +0.0000018340,0.0000018361,0.0000018382,0.0000018406,0.0000018450, +0.0000018520,0.0000018599,0.0000018671,0.0000018727,0.0000018782, +0.0000018800,0.0000018766,0.0000018707,0.0000018670,0.0000018669, +0.0000018674,0.0000018666,0.0000018664,0.0000018691,0.0000018745, +0.0000018801,0.0000018827,0.0000018810,0.0000018766,0.0000018733, +0.0000018714,0.0000018700,0.0000018688,0.0000018674,0.0000018653, +0.0000018624,0.0000018587,0.0000018543,0.0000018477,0.0000018367, +0.0000018211,0.0000018035,0.0000017899,0.0000017850,0.0000017859, +0.0000017912,0.0000017990,0.0000018056,0.0000018060,0.0000018029, +0.0000018012,0.0000018013,0.0000017985,0.0000017892,0.0000017785, +0.0000017725,0.0000017662,0.0000017570,0.0000017499,0.0000017509, +0.0000017581,0.0000017627,0.0000017606,0.0000017605,0.0000017658, +0.0000017709,0.0000017781,0.0000017787,0.0000017831,0.0000017806, +0.0000017644,0.0000017626,0.0000017765,0.0000017812,0.0000017766, +0.0000017791,0.0000017816,0.0000017812,0.0000017807,0.0000017804, +0.0000017801,0.0000017801,0.0000017798,0.0000017786,0.0000017758, +0.0000017718,0.0000017668,0.0000017618,0.0000017581,0.0000017567, +0.0000017571,0.0000017593,0.0000017621,0.0000017648,0.0000017671, +0.0000017694,0.0000017712,0.0000017729,0.0000017751,0.0000017771, +0.0000017791,0.0000017798,0.0000017786,0.0000017762,0.0000017733, +0.0000017713,0.0000017704,0.0000017687,0.0000017654,0.0000017638, +0.0000017657,0.0000017702,0.0000017785,0.0000017854,0.0000017893, +0.0000017915,0.0000017936,0.0000017963,0.0000017992,0.0000017998, +0.0000017981,0.0000017969,0.0000017985,0.0000018011,0.0000018035, +0.0000018067,0.0000018092,0.0000018097,0.0000018104,0.0000018126, +0.0000018154,0.0000018217,0.0000018317,0.0000018419,0.0000018524, +0.0000018638,0.0000018691,0.0000018671,0.0000018626,0.0000018590, +0.0000018518,0.0000018444,0.0000018403,0.0000018289,0.0000018143, +0.0000018164,0.0000018286,0.0000018332,0.0000018320,0.0000018246, +0.0000018177,0.0000018204,0.0000018296,0.0000018373,0.0000018455, +0.0000018530,0.0000018497,0.0000018276,0.0000018007,0.0000017921, +0.0000018000,0.0000018077,0.0000018117,0.0000018224,0.0000018368, +0.0000018451,0.0000018509,0.0000018586,0.0000018617,0.0000018593, +0.0000018570,0.0000018569,0.0000018583,0.0000018619,0.0000018665, +0.0000018711,0.0000018754,0.0000018795,0.0000018837,0.0000018874, +0.0000018907,0.0000018944,0.0000018982,0.0000019001,0.0000018971, +0.0000018845,0.0000018649,0.0000018476,0.0000018361,0.0000018248, +0.0000018092,0.0000017914,0.0000017761,0.0000017648,0.0000017562, +0.0000017496,0.0000017457,0.0000017438,0.0000017441,0.0000017479, +0.0000017569,0.0000017669,0.0000017784,0.0000017981,0.0000018193, +0.0000018288,0.0000018300,0.0000018306,0.0000018247,0.0000018120, +0.0000018108,0.0000018246,0.0000018470,0.0000018571,0.0000019000, +0.0000019677,0.0000019875,0.0000020028,0.0000020034,0.0000019988, +0.0000019920,0.0000019869,0.0000019863,0.0000019866,0.0000019840, +0.0000019750,0.0000019516,0.0000019087,0.0000018677,0.0000018523, +0.0000018509,0.0000018476,0.0000018416,0.0000018360,0.0000018314, +0.0000018276,0.0000018259,0.0000018247,0.0000018239,0.0000018230, +0.0000018223,0.0000018217,0.0000018213,0.0000018211,0.0000018210, +0.0000018202,0.0000018186,0.0000018167,0.0000018152,0.0000018140, +0.0000018126,0.0000018112,0.0000018091,0.0000018067,0.0000018049, +0.0000018041,0.0000018031,0.0000018014,0.0000018001,0.0000018022, +0.0000018094,0.0000018141,0.0000018103,0.0000017981,0.0000017917, +0.0000017950,0.0000018012,0.0000018047,0.0000018073,0.0000018114, +0.0000018213,0.0000018402,0.0000018560,0.0000018613,0.0000018644, +0.0000018716,0.0000018734,0.0000018735,0.0000018899,0.0000019118, +0.0000019172,0.0000019041,0.0000018649,0.0000018239,0.0000018053, +0.0000018063,0.0000018100,0.0000018083,0.0000018044,0.0000018074, +0.0000018206,0.0000018395,0.0000018554,0.0000018602,0.0000018601, +0.0000018576,0.0000018570,0.0000018610,0.0000018678,0.0000018726, +0.0000018729,0.0000018715,0.0000018710,0.0000018728,0.0000018753, +0.0000018757,0.0000018700,0.0000018577,0.0000018425,0.0000018292, +0.0000018184,0.0000018084,0.0000017993,0.0000017928,0.0000017895, +0.0000017884,0.0000017889,0.0000017904,0.0000017922,0.0000017935, +0.0000017959,0.0000017996,0.0000018020,0.0000018031,0.0000018036, +0.0000018045,0.0000018064,0.0000018094,0.0000018141,0.0000018202, +0.0000018277,0.0000018352,0.0000018400,0.0000018432,0.0000018479, +0.0000018548,0.0000018583,0.0000018583,0.0000018546,0.0000018514, +0.0000018509,0.0000018518,0.0000018523,0.0000018529,0.0000018537, +0.0000018548,0.0000018571,0.0000018603,0.0000018611,0.0000018566, +0.0000018464,0.0000018427,0.0000018460,0.0000018567,0.0000018649, +0.0000018647,0.0000018613,0.0000018580,0.0000018558,0.0000018551, +0.0000018553,0.0000018579,0.0000018623,0.0000018668,0.0000018678, +0.0000018681,0.0000018741,0.0000018871,0.0000018975,0.0000019032, +0.0000019080,0.0000019104,0.0000019096,0.0000019041,0.0000018977, +0.0000018954,0.0000018967,0.0000018983,0.0000018978,0.0000018957, +0.0000018921,0.0000018873,0.0000018825,0.0000018797,0.0000018801, +0.0000018839,0.0000018887,0.0000018961,0.0000019054,0.0000019151, +0.0000019230,0.0000019296,0.0000019383,0.0000019507,0.0000019649, +0.0000019781,0.0000019860,0.0000019874,0.0000019901,0.0000020005, +0.0000020147,0.0000020220,0.0000020181,0.0000020010,0.0000019912, +0.0000019909,0.0000019906,0.0000019860,0.0000019795,0.0000019815, +0.0000020009,0.0000020229,0.0000020285,0.0000020279,0.0000020252, +0.0000020245,0.0000020282,0.0000020337,0.0000020339,0.0000020256, +0.0000020112,0.0000019965,0.0000019851,0.0000019784,0.0000019775, +0.0000019863,0.0000020038,0.0000020194,0.0000020248,0.0000020225, +0.0000019976,0.0000019458,0.0000018898,0.0000018562,0.0000018405, +0.0000018233,0.0000018030,0.0000017942,0.0000017998,0.0000018186, +0.0000018387,0.0000018536,0.0000018612,0.0000018578,0.0000018464, +0.0000018337,0.0000018196,0.0000018071,0.0000018024,0.0000018091, +0.0000018271,0.0000018452,0.0000018539,0.0000018547,0.0000018568, +0.0000018658,0.0000018781,0.0000018831,0.0000018783,0.0000018633, +0.0000018511,0.0000018508,0.0000018568,0.0000018626,0.0000018644, +0.0000018609,0.0000018578,0.0000018696,0.0000019112,0.0000019306, +0.0000018806,0.0000018294,0.0000018348,0.0000019009,0.0000019267, +0.0000019124,0.0000018646,0.0000018338,0.0000018362,0.0000018477, +0.0000018507,0.0000018500,0.0000018675,0.0000019175,0.0000019623, +0.0000019807,0.0000019807,0.0000019681,0.0000019577,0.0000019777, +0.0000020130,0.0000020264,0.0000020261,0.0000020241,0.0000020223, +0.0000020216,0.0000020189,0.0000020130,0.0000020064,0.0000020016, +0.0000019972,0.0000019933,0.0000019908,0.0000019897,0.0000019889, +0.0000019878,0.0000019854,0.0000019813,0.0000019755,0.0000019688, +0.0000019622,0.0000019537,0.0000019474,0.0000019450,0.0000019418, +0.0000019429,0.0000019451,0.0000019483,0.0000019525,0.0000019572, +0.0000019559,0.0000019571,0.0000019584,0.0000019558,0.0000019522, +0.0000019482,0.0000019429,0.0000019379,0.0000019336,0.0000019290, +0.0000019242,0.0000019208,0.0000019224,0.0000019317,0.0000019476, +0.0000019614,0.0000019667,0.0000019645,0.0000019564,0.0000019465, +0.0000019389,0.0000019328,0.0000019256,0.0000019166,0.0000019088, +0.0000019058,0.0000019087,0.0000019216,0.0000019433,0.0000019677, +0.0000019884,0.0000020024,0.0000020102,0.0000020130,0.0000020112, +0.0000020064,0.0000020014,0.0000019983,0.0000019979,0.0000020009, +0.0000020063,0.0000020131,0.0000020185,0.0000020204,0.0000020200, +0.0000020149,0.0000020084,0.0000020007,0.0000019915,0.0000019821, +0.0000019754,0.0000019723,0.0000019722,0.0000019745,0.0000019777, +0.0000019799,0.0000019803,0.0000019803,0.0000019821,0.0000019900, +0.0000020055,0.0000020239,0.0000020367,0.0000020407,0.0000020420, +0.0000020430,0.0000020445,0.0000020456,0.0000020457,0.0000020447, +0.0000020425,0.0000020393,0.0000020350,0.0000020291,0.0000020216, +0.0000020121,0.0000020016,0.0000019933,0.0000019886,0.0000019883, +0.0000019923,0.0000019956,0.0000020009,0.0000020016,0.0000019981, +0.0000019878,0.0000019744,0.0000019637,0.0000019582,0.0000019633, +0.0000019759,0.0000019887,0.0000019963,0.0000019986,0.0000020001, +0.0000020059,0.0000020161,0.0000020252,0.0000020280,0.0000020266, +0.0000020232,0.0000020210,0.0000020201,0.0000020196,0.0000020194, +0.0000020192,0.0000020191,0.0000020193,0.0000020198,0.0000020198, +0.0000020198,0.0000020204,0.0000020222,0.0000020243,0.0000020264, +0.0000020280,0.0000020285,0.0000020283,0.0000020272,0.0000020248, +0.0000020221,0.0000020200,0.0000020182,0.0000020165,0.0000020147, +0.0000020132,0.0000020124,0.0000020127,0.0000020147,0.0000020170, +0.0000020181,0.0000020184,0.0000020178,0.0000020170,0.0000020156, +0.0000020147,0.0000020152,0.0000020171,0.0000020200,0.0000020232, +0.0000020258,0.0000020280,0.0000020300,0.0000020313,0.0000020321, +0.0000020336,0.0000020370,0.0000020422,0.0000020476,0.0000020533, +0.0000020587,0.0000020622,0.0000020630,0.0000020617,0.0000020595, +0.0000020568,0.0000020537,0.0000020503,0.0000020466,0.0000020424, +0.0000020379,0.0000020342,0.0000020310,0.0000020280,0.0000020254, +0.0000020233,0.0000020200,0.0000020163,0.0000020124,0.0000020085, +0.0000020053,0.0000020024,0.0000019997,0.0000019976,0.0000019956, +0.0000019928,0.0000019895,0.0000019861,0.0000019829,0.0000019802, +0.0000019773,0.0000019736,0.0000019698,0.0000019670,0.0000019657, +0.0000019657,0.0000019687,0.0000019717,0.0000019736,0.0000019736, +0.0000019711,0.0000019668,0.0000019603,0.0000019530,0.0000019452, +0.0000019395,0.0000019385,0.0000019419,0.0000019477,0.0000019529, +0.0000019543,0.0000019510,0.0000019437,0.0000019346,0.0000019244, +0.0000019117,0.0000018995,0.0000018876,0.0000018794,0.0000018780, +0.0000018816,0.0000018865,0.0000018902,0.0000018944,0.0000019018, +0.0000019103,0.0000019174,0.0000019207,0.0000019206,0.0000019190, +0.0000019174,0.0000019181,0.0000019212,0.0000019255,0.0000019304, +0.0000019329,0.0000019302,0.0000019239,0.0000019218,0.0000019245, +0.0000019285,0.0000019298,0.0000019266,0.0000019211,0.0000019185, +0.0000019195,0.0000019230,0.0000019274,0.0000019300,0.0000019291, +0.0000019209,0.0000019076,0.0000018950,0.0000018858,0.0000018795, +0.0000018764,0.0000018774,0.0000018800,0.0000018816,0.0000018806, +0.0000018804,0.0000018848,0.0000018918,0.0000018966,0.0000018989, +0.0000018991,0.0000018961,0.0000018905,0.0000018821,0.0000018732, +0.0000018663,0.0000018628,0.0000018618,0.0000018604,0.0000018573, +0.0000018540,0.0000018525,0.0000018523,0.0000018514,0.0000018468, +0.0000018370,0.0000018256,0.0000018197,0.0000018206,0.0000018251, +0.0000018292,0.0000018326,0.0000018350,0.0000018374,0.0000018409, +0.0000018428,0.0000018429,0.0000018414,0.0000018415,0.0000018436, +0.0000018443,0.0000018425,0.0000018391,0.0000018346,0.0000018290, +0.0000018232,0.0000018187,0.0000018152,0.0000018124,0.0000018104, +0.0000018098,0.0000018096,0.0000018085,0.0000018065,0.0000018037, +0.0000018022,0.0000018023,0.0000018038,0.0000018069,0.0000018079, +0.0000018077,0.0000018055,0.0000018003,0.0000017929,0.0000017850, +0.0000017783,0.0000017733,0.0000017698,0.0000017678,0.0000017678, +0.0000017702,0.0000017739,0.0000017748,0.0000017707,0.0000017631, +0.0000017555,0.0000017484,0.0000017422,0.0000017377,0.0000017355, +0.0000017349,0.0000017352,0.0000017359,0.0000017364,0.0000017360, +0.0000017341,0.0000017312,0.0000017287,0.0000017282,0.0000017308, +0.0000017340,0.0000017343,0.0000017287,0.0000017183,0.0000017120, +0.0000017156,0.0000017258,0.0000017318,0.0000017295,0.0000017370, +0.0000017698,0.0000018094,0.0000018235,0.0000018256,0.0000018253, +0.0000018203,0.0000018165,0.0000018157,0.0000018091,0.0000018037, +0.0000017972,0.0000017893,0.0000017856,0.0000017855,0.0000017807, +0.0000017700,0.0000017641,0.0000017668,0.0000017744,0.0000017834, +0.0000017923,0.0000017997,0.0000018060,0.0000018139,0.0000018229, +0.0000018291,0.0000018298,0.0000018273,0.0000018276,0.0000018330, +0.0000018388,0.0000018380,0.0000018301,0.0000018194,0.0000018102, +0.0000018040,0.0000017999,0.0000017974,0.0000017969,0.0000017977, +0.0000017990,0.0000017997,0.0000017996,0.0000017994,0.0000017988, +0.0000017981,0.0000017971,0.0000017962,0.0000017963,0.0000017969, +0.0000017971,0.0000017973,0.0000017982,0.0000017997,0.0000018008, +0.0000018015,0.0000018028,0.0000018058,0.0000018099,0.0000018132, +0.0000018171,0.0000018230,0.0000018313,0.0000018419,0.0000018543, +0.0000018671,0.0000018781,0.0000018829,0.0000018843,0.0000018792, +0.0000018747,0.0000018733,0.0000018735,0.0000018730,0.0000018726, +0.0000018752,0.0000018803,0.0000018851,0.0000018860,0.0000018832, +0.0000018794,0.0000018773,0.0000018771,0.0000018766,0.0000018741, +0.0000018702,0.0000018664,0.0000018635,0.0000018615,0.0000018575, +0.0000018466,0.0000018281,0.0000018067,0.0000017864,0.0000017736, +0.0000017707,0.0000017734,0.0000017799,0.0000017897,0.0000018001, +0.0000018051,0.0000018070,0.0000018044,0.0000018003,0.0000017964, +0.0000017888,0.0000017777,0.0000017693,0.0000017621,0.0000017543, +0.0000017505,0.0000017533,0.0000017603,0.0000017603,0.0000017570, +0.0000017597,0.0000017672,0.0000017741,0.0000017785,0.0000017792, +0.0000017845,0.0000017732,0.0000017628,0.0000017700,0.0000017807, +0.0000017773,0.0000017782,0.0000017814,0.0000017812,0.0000017796, +0.0000017776,0.0000017757,0.0000017756,0.0000017765,0.0000017770, +0.0000017770,0.0000017750,0.0000017725,0.0000017701,0.0000017682, +0.0000017686,0.0000017706,0.0000017735,0.0000017766,0.0000017782, +0.0000017784,0.0000017784,0.0000017776,0.0000017762,0.0000017757, +0.0000017760,0.0000017768,0.0000017779,0.0000017784,0.0000017772, +0.0000017736,0.0000017711,0.0000017704,0.0000017712,0.0000017699, +0.0000017673,0.0000017660,0.0000017680,0.0000017744,0.0000017821, +0.0000017875,0.0000017911,0.0000017943,0.0000017972,0.0000017998, +0.0000018005,0.0000017992,0.0000017967,0.0000017963,0.0000017981, +0.0000018007,0.0000018040,0.0000018088,0.0000018110,0.0000018107, +0.0000018122,0.0000018141,0.0000018172,0.0000018258,0.0000018378, +0.0000018481,0.0000018588,0.0000018691,0.0000018712,0.0000018661, +0.0000018615,0.0000018566,0.0000018482,0.0000018431,0.0000018384, +0.0000018233,0.0000018130,0.0000018203,0.0000018316,0.0000018331, +0.0000018285,0.0000018202,0.0000018169,0.0000018226,0.0000018325, +0.0000018433,0.0000018525,0.0000018495,0.0000018266,0.0000018012, +0.0000017954,0.0000018031,0.0000018092,0.0000018145,0.0000018272, +0.0000018400,0.0000018476,0.0000018553,0.0000018617,0.0000018617, +0.0000018588,0.0000018574,0.0000018582,0.0000018605,0.0000018642, +0.0000018684,0.0000018724,0.0000018765,0.0000018809,0.0000018851, +0.0000018886,0.0000018918,0.0000018955,0.0000018993,0.0000019016, +0.0000019009,0.0000018925,0.0000018757,0.0000018582,0.0000018457, +0.0000018331,0.0000018148,0.0000017940,0.0000017779,0.0000017684, +0.0000017615,0.0000017541,0.0000017468,0.0000017420,0.0000017399, +0.0000017419,0.0000017505,0.0000017627,0.0000017720,0.0000017836, +0.0000018055,0.0000018241,0.0000018289,0.0000018295,0.0000018248, +0.0000018115,0.0000018116,0.0000018283,0.0000018498,0.0000018627, +0.0000019133,0.0000019721,0.0000019871,0.0000020007,0.0000020016, +0.0000019970,0.0000019931,0.0000019908,0.0000019878,0.0000019811, +0.0000019693,0.0000019397,0.0000018924,0.0000018588,0.0000018531, +0.0000018515,0.0000018466,0.0000018399,0.0000018349,0.0000018317, +0.0000018296,0.0000018289,0.0000018280,0.0000018258,0.0000018232, +0.0000018209,0.0000018198,0.0000018194,0.0000018195,0.0000018197, +0.0000018200,0.0000018198,0.0000018198,0.0000018200,0.0000018201, +0.0000018200,0.0000018199,0.0000018193,0.0000018177,0.0000018151, +0.0000018130,0.0000018114,0.0000018098,0.0000018085,0.0000018089, +0.0000018140,0.0000018193,0.0000018180,0.0000018056,0.0000017931, +0.0000017926,0.0000017970,0.0000018008,0.0000018045,0.0000018101, +0.0000018204,0.0000018387,0.0000018573,0.0000018648,0.0000018672, +0.0000018722,0.0000018736,0.0000018829,0.0000019074,0.0000019168, +0.0000019041,0.0000018611,0.0000018182,0.0000017993,0.0000018002, +0.0000018030,0.0000018018,0.0000017999,0.0000018039,0.0000018178, +0.0000018373,0.0000018534,0.0000018589,0.0000018571,0.0000018535, +0.0000018525,0.0000018565,0.0000018648,0.0000018726,0.0000018755, +0.0000018741,0.0000018724,0.0000018730,0.0000018750,0.0000018766, +0.0000018746,0.0000018642,0.0000018471,0.0000018296,0.0000018164, +0.0000018066,0.0000017984,0.0000017914,0.0000017869,0.0000017852, +0.0000017853,0.0000017876,0.0000017917,0.0000017961,0.0000017998, +0.0000018033,0.0000018075,0.0000018103,0.0000018114,0.0000018113, +0.0000018106,0.0000018103,0.0000018113,0.0000018141,0.0000018188, +0.0000018250,0.0000018312,0.0000018358,0.0000018386,0.0000018438, +0.0000018529,0.0000018576,0.0000018542,0.0000018413,0.0000018311, +0.0000018290,0.0000018310,0.0000018330,0.0000018341,0.0000018353, +0.0000018379,0.0000018414,0.0000018445,0.0000018446,0.0000018412, +0.0000018365,0.0000018376,0.0000018457,0.0000018592,0.0000018653, +0.0000018635,0.0000018591,0.0000018551,0.0000018536,0.0000018536, +0.0000018554,0.0000018587,0.0000018635,0.0000018673,0.0000018700, +0.0000018713,0.0000018762,0.0000018888,0.0000018995,0.0000019044, +0.0000019089,0.0000019133,0.0000019163,0.0000019140,0.0000019092, +0.0000019069,0.0000019083,0.0000019120,0.0000019152,0.0000019165, +0.0000019142,0.0000019080,0.0000019002,0.0000018931,0.0000018887, +0.0000018874,0.0000018892,0.0000018936,0.0000019006,0.0000019099, +0.0000019184,0.0000019262,0.0000019351,0.0000019474,0.0000019632, +0.0000019780,0.0000019850,0.0000019880,0.0000019980,0.0000020139, +0.0000020233,0.0000020196,0.0000020035,0.0000019945,0.0000019943, +0.0000019936,0.0000019883,0.0000019813,0.0000019833,0.0000020020, +0.0000020219,0.0000020266,0.0000020255,0.0000020235,0.0000020243, +0.0000020300,0.0000020339,0.0000020299,0.0000020170,0.0000020021, +0.0000019895,0.0000019809,0.0000019777,0.0000019809,0.0000019956, +0.0000020138,0.0000020231,0.0000020242,0.0000020100,0.0000019666, +0.0000019078,0.0000018643,0.0000018436,0.0000018273,0.0000018077, +0.0000017994,0.0000018053,0.0000018256,0.0000018467,0.0000018599, +0.0000018623,0.0000018577,0.0000018420,0.0000018213,0.0000018030, +0.0000017868,0.0000017720,0.0000017654,0.0000017765,0.0000018095, +0.0000018366,0.0000018476,0.0000018516,0.0000018590,0.0000018701, +0.0000018775,0.0000018735,0.0000018616,0.0000018500,0.0000018454, +0.0000018477,0.0000018545,0.0000018623,0.0000018686,0.0000018700, +0.0000018710,0.0000018864,0.0000019098,0.0000019129,0.0000018666, +0.0000018305,0.0000018415,0.0000019002,0.0000019250,0.0000019081, +0.0000018708,0.0000018312,0.0000018310,0.0000018444,0.0000018483, +0.0000018456,0.0000018508,0.0000018896,0.0000019445,0.0000019750, +0.0000019791,0.0000019702,0.0000019563,0.0000019689,0.0000020017, +0.0000020193,0.0000020220,0.0000020195,0.0000020141,0.0000020061, +0.0000019944,0.0000019819,0.0000019733,0.0000019681,0.0000019632, +0.0000019599,0.0000019584,0.0000019571,0.0000019555,0.0000019536, +0.0000019528,0.0000019516,0.0000019490,0.0000019475,0.0000019481, +0.0000019478,0.0000019506,0.0000019543,0.0000019599,0.0000019600, +0.0000019611,0.0000019610,0.0000019564,0.0000019500,0.0000019402, +0.0000019305,0.0000019204,0.0000019098,0.0000018994,0.0000018920, +0.0000018893,0.0000018881,0.0000018861,0.0000018837,0.0000018807, +0.0000018856,0.0000018959,0.0000019191,0.0000019435,0.0000019574, +0.0000019576,0.0000019512,0.0000019411,0.0000019332,0.0000019285, +0.0000019233,0.0000019156,0.0000019083,0.0000019040,0.0000019030, +0.0000019040,0.0000019089,0.0000019161,0.0000019246,0.0000019355, +0.0000019486,0.0000019628,0.0000019772,0.0000019892,0.0000019964, +0.0000019987,0.0000019970,0.0000019941,0.0000019929,0.0000019939, +0.0000019997,0.0000020100,0.0000020192,0.0000020234,0.0000020225, +0.0000020168,0.0000020059,0.0000019913,0.0000019781,0.0000019707, +0.0000019697,0.0000019720,0.0000019764,0.0000019797,0.0000019809, +0.0000019812,0.0000019837,0.0000019925,0.0000020078,0.0000020219, +0.0000020323,0.0000020365,0.0000020376,0.0000020385,0.0000020396, +0.0000020402,0.0000020397,0.0000020374,0.0000020334,0.0000020278, +0.0000020203,0.0000020114,0.0000020026,0.0000019940,0.0000019881, +0.0000019866,0.0000019899,0.0000019952,0.0000019963,0.0000019981, +0.0000019902,0.0000019777,0.0000019619,0.0000019435,0.0000019282, +0.0000019205,0.0000019233,0.0000019396,0.0000019659,0.0000019863, +0.0000019964,0.0000019996,0.0000020042,0.0000020131,0.0000020230, +0.0000020264,0.0000020262,0.0000020223,0.0000020183,0.0000020157, +0.0000020142,0.0000020136,0.0000020137,0.0000020142,0.0000020146, +0.0000020149,0.0000020153,0.0000020157,0.0000020159,0.0000020167, +0.0000020186,0.0000020212,0.0000020237,0.0000020256,0.0000020270, +0.0000020280,0.0000020282,0.0000020277,0.0000020264,0.0000020252, +0.0000020241,0.0000020226,0.0000020209,0.0000020191,0.0000020178, +0.0000020172,0.0000020172,0.0000020174,0.0000020170,0.0000020164, +0.0000020161,0.0000020163,0.0000020170,0.0000020183,0.0000020207, +0.0000020238,0.0000020271,0.0000020302,0.0000020330,0.0000020347, +0.0000020352,0.0000020352,0.0000020352,0.0000020363,0.0000020392, +0.0000020438,0.0000020492,0.0000020545,0.0000020596,0.0000020632, +0.0000020642,0.0000020632,0.0000020611,0.0000020585,0.0000020558, +0.0000020530,0.0000020507,0.0000020485,0.0000020465,0.0000020444, +0.0000020419,0.0000020388,0.0000020347,0.0000020309,0.0000020269, +0.0000020222,0.0000020182,0.0000020145,0.0000020117,0.0000020096, +0.0000020080,0.0000020070,0.0000020058,0.0000020035,0.0000019998, +0.0000019946,0.0000019892,0.0000019848,0.0000019815,0.0000019789, +0.0000019773,0.0000019770,0.0000019778,0.0000019791,0.0000019808, +0.0000019845,0.0000019865,0.0000019877,0.0000019865,0.0000019840, +0.0000019805,0.0000019750,0.0000019685,0.0000019613,0.0000019559, +0.0000019538,0.0000019546,0.0000019576,0.0000019594,0.0000019584, +0.0000019549,0.0000019488,0.0000019400,0.0000019288,0.0000019161, +0.0000019046,0.0000018940,0.0000018891,0.0000018898,0.0000018931, +0.0000018960,0.0000018972,0.0000019005,0.0000019070,0.0000019152, +0.0000019228,0.0000019261,0.0000019253,0.0000019221,0.0000019189, +0.0000019191,0.0000019225,0.0000019268,0.0000019327,0.0000019351, +0.0000019325,0.0000019280,0.0000019270,0.0000019283,0.0000019304, +0.0000019299,0.0000019249,0.0000019197,0.0000019183,0.0000019191, +0.0000019222,0.0000019266,0.0000019296,0.0000019294,0.0000019226, +0.0000019111,0.0000018996,0.0000018915,0.0000018846,0.0000018799, +0.0000018793,0.0000018815,0.0000018814,0.0000018810,0.0000018823, +0.0000018865,0.0000018914,0.0000018958,0.0000018985,0.0000018989, +0.0000018981,0.0000018942,0.0000018873,0.0000018793,0.0000018722, +0.0000018675,0.0000018646,0.0000018610,0.0000018565,0.0000018530, +0.0000018516,0.0000018512,0.0000018489,0.0000018430,0.0000018337, +0.0000018256,0.0000018238,0.0000018261,0.0000018298,0.0000018338, +0.0000018375,0.0000018409,0.0000018447,0.0000018473,0.0000018479, +0.0000018462,0.0000018448,0.0000018465,0.0000018488,0.0000018483, +0.0000018452,0.0000018406,0.0000018358,0.0000018313,0.0000018271, +0.0000018237,0.0000018200,0.0000018169,0.0000018147,0.0000018127, +0.0000018100,0.0000018061,0.0000018025,0.0000017996,0.0000017991, +0.0000018012,0.0000018046,0.0000018086,0.0000018118,0.0000018121, +0.0000018101,0.0000018048,0.0000017988,0.0000017932,0.0000017888, +0.0000017853,0.0000017830,0.0000017824,0.0000017840,0.0000017877, +0.0000017902,0.0000017885,0.0000017814,0.0000017718,0.0000017620, +0.0000017522,0.0000017435,0.0000017382,0.0000017359,0.0000017357, +0.0000017368,0.0000017384,0.0000017392,0.0000017385,0.0000017357, +0.0000017302,0.0000017266,0.0000017274,0.0000017311,0.0000017342, +0.0000017337,0.0000017272,0.0000017181,0.0000017136,0.0000017167, +0.0000017249,0.0000017269,0.0000017285,0.0000017472,0.0000017915, +0.0000018181,0.0000018252,0.0000018251,0.0000018201,0.0000018158, +0.0000018139,0.0000018057,0.0000017991,0.0000017895,0.0000017833, +0.0000017828,0.0000017792,0.0000017673,0.0000017615,0.0000017646, +0.0000017713,0.0000017801,0.0000017921,0.0000018047,0.0000018140, +0.0000018200,0.0000018244,0.0000018264,0.0000018257,0.0000018242, +0.0000018253,0.0000018291,0.0000018305,0.0000018246,0.0000018122, +0.0000017977,0.0000017861,0.0000017794,0.0000017764,0.0000017753, +0.0000017753,0.0000017762,0.0000017776,0.0000017783,0.0000017780, +0.0000017774,0.0000017768,0.0000017763,0.0000017759,0.0000017751, +0.0000017745,0.0000017749,0.0000017756,0.0000017757,0.0000017759, +0.0000017766,0.0000017774,0.0000017773,0.0000017772,0.0000017784, +0.0000017817,0.0000017858,0.0000017895,0.0000017936,0.0000017990, +0.0000018058,0.0000018155,0.0000018291,0.0000018458,0.0000018633, +0.0000018780,0.0000018853,0.0000018861,0.0000018830,0.0000018805, +0.0000018790,0.0000018784,0.0000018785,0.0000018812,0.0000018855, +0.0000018883,0.0000018879,0.0000018855,0.0000018834,0.0000018829, +0.0000018830,0.0000018812,0.0000018766,0.0000018712,0.0000018669, +0.0000018651,0.0000018642,0.0000018567,0.0000018387,0.0000018143, +0.0000017892,0.0000017689,0.0000017570,0.0000017555,0.0000017589, +0.0000017662,0.0000017788,0.0000017936,0.0000018047,0.0000018064, +0.0000018046,0.0000018007,0.0000017959,0.0000017884,0.0000017766, +0.0000017660,0.0000017590,0.0000017536,0.0000017510,0.0000017557, +0.0000017593,0.0000017558,0.0000017538,0.0000017603,0.0000017688, +0.0000017760,0.0000017780,0.0000017823,0.0000017821,0.0000017675, +0.0000017653,0.0000017771,0.0000017776,0.0000017768,0.0000017802, +0.0000017810,0.0000017797,0.0000017772,0.0000017746,0.0000017735, +0.0000017731,0.0000017734,0.0000017736,0.0000017725,0.0000017705, +0.0000017685,0.0000017678,0.0000017694,0.0000017725,0.0000017770, +0.0000017819,0.0000017858,0.0000017880,0.0000017896,0.0000017902, +0.0000017882,0.0000017843,0.0000017807,0.0000017775,0.0000017759, +0.0000017757,0.0000017760,0.0000017742,0.0000017710,0.0000017702, +0.0000017716,0.0000017727,0.0000017715,0.0000017689,0.0000017677, +0.0000017709,0.0000017778,0.0000017840,0.0000017882,0.0000017924, +0.0000017963,0.0000017990,0.0000018002,0.0000017998,0.0000017970, +0.0000017947,0.0000017950,0.0000017974,0.0000018004,0.0000018064, +0.0000018115,0.0000018116,0.0000018116,0.0000018137,0.0000018154, +0.0000018205,0.0000018321,0.0000018440,0.0000018538,0.0000018655, +0.0000018724,0.0000018706,0.0000018645,0.0000018604,0.0000018535, +0.0000018455,0.0000018425,0.0000018348,0.0000018180,0.0000018134, +0.0000018256,0.0000018326,0.0000018311,0.0000018242,0.0000018166, +0.0000018175,0.0000018271,0.0000018402,0.0000018507,0.0000018484, +0.0000018265,0.0000018024,0.0000017977,0.0000018046,0.0000018097, +0.0000018162,0.0000018295,0.0000018408,0.0000018485,0.0000018573, +0.0000018627,0.0000018615,0.0000018589,0.0000018586,0.0000018608, +0.0000018644,0.0000018684,0.0000018720,0.0000018752,0.0000018789, +0.0000018828,0.0000018862,0.0000018888,0.0000018913,0.0000018941, +0.0000018975,0.0000019007,0.0000019017,0.0000018982,0.0000018851, +0.0000018674,0.0000018531,0.0000018392,0.0000018193,0.0000017971, +0.0000017810,0.0000017728,0.0000017664,0.0000017578,0.0000017481, +0.0000017411,0.0000017391,0.0000017402,0.0000017479,0.0000017605, +0.0000017713,0.0000017782,0.0000017937,0.0000018167,0.0000018267, +0.0000018281,0.0000018238,0.0000018113,0.0000018123,0.0000018323, +0.0000018523,0.0000018681,0.0000019230,0.0000019732,0.0000019844, +0.0000019962,0.0000019989,0.0000019960,0.0000019913,0.0000019849, +0.0000019775,0.0000019636,0.0000019282,0.0000018808,0.0000018558, +0.0000018542,0.0000018524,0.0000018466,0.0000018409,0.0000018375, +0.0000018347,0.0000018333,0.0000018326,0.0000018301,0.0000018261, +0.0000018216,0.0000018188,0.0000018177,0.0000018176,0.0000018184, +0.0000018197,0.0000018215,0.0000018232,0.0000018248,0.0000018261, +0.0000018267,0.0000018267,0.0000018263,0.0000018257,0.0000018254, +0.0000018237,0.0000018215,0.0000018193,0.0000018178,0.0000018170, +0.0000018170,0.0000018183,0.0000018205,0.0000018200,0.0000018094, +0.0000017941,0.0000017905,0.0000017924,0.0000017952,0.0000018002, +0.0000018084,0.0000018202,0.0000018386,0.0000018593,0.0000018686, +0.0000018700,0.0000018726,0.0000018778,0.0000018988,0.0000019166, +0.0000019064,0.0000018602,0.0000018137,0.0000017955,0.0000017970, +0.0000017986,0.0000017982,0.0000017972,0.0000018000,0.0000018124, +0.0000018318,0.0000018482,0.0000018547,0.0000018532,0.0000018486, +0.0000018464,0.0000018485,0.0000018566,0.0000018670,0.0000018733, +0.0000018749,0.0000018735,0.0000018722,0.0000018730,0.0000018746, +0.0000018756,0.0000018735,0.0000018634,0.0000018453,0.0000018268, +0.0000018106,0.0000017999,0.0000017922,0.0000017867,0.0000017837, +0.0000017828,0.0000017832,0.0000017863,0.0000017917,0.0000017975, +0.0000018023,0.0000018064,0.0000018106,0.0000018140,0.0000018161, +0.0000018169,0.0000018168,0.0000018166,0.0000018170,0.0000018190, +0.0000018222,0.0000018264,0.0000018310,0.0000018346,0.0000018369, +0.0000018415,0.0000018507,0.0000018573,0.0000018539,0.0000018365, +0.0000018218,0.0000018188,0.0000018225,0.0000018247,0.0000018251, +0.0000018245,0.0000018256,0.0000018278,0.0000018306,0.0000018320, +0.0000018328,0.0000018333,0.0000018379,0.0000018487,0.0000018604, +0.0000018627,0.0000018595,0.0000018564,0.0000018560,0.0000018585, +0.0000018588,0.0000018586,0.0000018596,0.0000018631,0.0000018670, +0.0000018704,0.0000018727,0.0000018787,0.0000018911,0.0000019014, +0.0000019050,0.0000019085,0.0000019138,0.0000019180,0.0000019191, +0.0000019168,0.0000019144,0.0000019157,0.0000019234,0.0000019346, +0.0000019425,0.0000019426,0.0000019361,0.0000019268,0.0000019165, +0.0000019067,0.0000018988,0.0000018940,0.0000018940,0.0000018976, +0.0000019051,0.0000019152,0.0000019245,0.0000019340,0.0000019475, +0.0000019655,0.0000019801,0.0000019872,0.0000019968,0.0000020132, +0.0000020249,0.0000020214,0.0000020059,0.0000019977,0.0000019978, +0.0000019969,0.0000019905,0.0000019827,0.0000019856,0.0000020039, +0.0000020207,0.0000020243,0.0000020229,0.0000020216,0.0000020247, +0.0000020309,0.0000020321,0.0000020232,0.0000020080,0.0000019941, +0.0000019837,0.0000019773,0.0000019778,0.0000019874,0.0000020063, +0.0000020223,0.0000020270,0.0000020193,0.0000019870,0.0000019296, +0.0000018759,0.0000018471,0.0000018301,0.0000018114,0.0000018020, +0.0000018092,0.0000018303,0.0000018505,0.0000018619,0.0000018632, +0.0000018563,0.0000018383,0.0000018167,0.0000018009,0.0000017880, +0.0000017762,0.0000017597,0.0000017495,0.0000017588,0.0000017967, +0.0000018318,0.0000018468,0.0000018539,0.0000018635,0.0000018697, +0.0000018682,0.0000018585,0.0000018473,0.0000018396,0.0000018379, +0.0000018427,0.0000018525,0.0000018648,0.0000018748,0.0000018812, +0.0000018885,0.0000018980,0.0000019052,0.0000018828,0.0000018450, +0.0000018338,0.0000018618,0.0000019084,0.0000019190,0.0000018936, +0.0000018635,0.0000018301,0.0000018272,0.0000018415,0.0000018486, +0.0000018438,0.0000018458,0.0000018743,0.0000019306,0.0000019697, +0.0000019762,0.0000019699,0.0000019582,0.0000019636,0.0000019840, +0.0000019982,0.0000020004,0.0000019948,0.0000019844,0.0000019721, +0.0000019602,0.0000019551,0.0000019553,0.0000019564,0.0000019555, +0.0000019551,0.0000019550,0.0000019545,0.0000019541,0.0000019545, +0.0000019565,0.0000019601,0.0000019644,0.0000019684,0.0000019728, +0.0000019705,0.0000019723,0.0000019674,0.0000019614,0.0000019502, +0.0000019378,0.0000019225,0.0000019051,0.0000018888,0.0000018769, +0.0000018698,0.0000018642,0.0000018603,0.0000018578,0.0000018629, +0.0000018671,0.0000018709,0.0000018727,0.0000018737,0.0000018785, +0.0000018925,0.0000019165,0.0000019418,0.0000019542,0.0000019551, +0.0000019485,0.0000019428,0.0000019371,0.0000019345,0.0000019324, +0.0000019291,0.0000019248,0.0000019211,0.0000019185,0.0000019155, +0.0000019118,0.0000019071,0.0000019018,0.0000018969,0.0000018965, +0.0000019005,0.0000019105,0.0000019286,0.0000019526,0.0000019760, +0.0000019921,0.0000019987,0.0000019983,0.0000019957,0.0000019944, +0.0000019968,0.0000020033,0.0000020113,0.0000020156,0.0000020145, +0.0000020064,0.0000019918,0.0000019768,0.0000019690,0.0000019678, +0.0000019713,0.0000019764,0.0000019801,0.0000019815,0.0000019820, +0.0000019839,0.0000019893,0.0000019986,0.0000020094,0.0000020186, +0.0000020252,0.0000020289,0.0000020304,0.0000020303,0.0000020289, +0.0000020256,0.0000020199,0.0000020124,0.0000020050,0.0000019978, +0.0000019912,0.0000019905,0.0000019895,0.0000019907,0.0000019943, +0.0000019945,0.0000019943,0.0000019849,0.0000019703,0.0000019515, +0.0000019326,0.0000019177,0.0000019047,0.0000019083,0.0000019124, +0.0000019294,0.0000019511,0.0000019754,0.0000019908,0.0000019971, +0.0000020010,0.0000020083,0.0000020177,0.0000020227,0.0000020244, +0.0000020205,0.0000020155,0.0000020118,0.0000020095,0.0000020080, +0.0000020074,0.0000020077,0.0000020086,0.0000020096,0.0000020102, +0.0000020105,0.0000020110,0.0000020115,0.0000020120,0.0000020125, +0.0000020135,0.0000020147,0.0000020161,0.0000020182,0.0000020211, +0.0000020246,0.0000020275,0.0000020292,0.0000020307,0.0000020308, +0.0000020301,0.0000020281,0.0000020257,0.0000020235,0.0000020222, +0.0000020213,0.0000020205,0.0000020189,0.0000020172,0.0000020157, +0.0000020149,0.0000020154,0.0000020171,0.0000020202,0.0000020240, +0.0000020279,0.0000020313,0.0000020332,0.0000020339,0.0000020344, +0.0000020347,0.0000020351,0.0000020370,0.0000020410,0.0000020460, +0.0000020507,0.0000020546,0.0000020580,0.0000020601,0.0000020599, +0.0000020572,0.0000020527,0.0000020485,0.0000020464,0.0000020454, +0.0000020451,0.0000020461,0.0000020485,0.0000020521,0.0000020549, +0.0000020553,0.0000020532,0.0000020504,0.0000020459,0.0000020399, +0.0000020341,0.0000020287,0.0000020244,0.0000020210,0.0000020184, +0.0000020169,0.0000020162,0.0000020148,0.0000020121,0.0000020076, +0.0000020019,0.0000019961,0.0000019910,0.0000019868,0.0000019842, +0.0000019839,0.0000019855,0.0000019879,0.0000019904,0.0000019941, +0.0000019970,0.0000019977,0.0000019970,0.0000019946,0.0000019920, +0.0000019884,0.0000019833,0.0000019785,0.0000019736,0.0000019702, +0.0000019682,0.0000019676,0.0000019670,0.0000019648,0.0000019616, +0.0000019576,0.0000019507,0.0000019410,0.0000019301,0.0000019187, +0.0000019083,0.0000019008,0.0000018994,0.0000019006,0.0000019033, +0.0000019043,0.0000019039,0.0000019070,0.0000019136,0.0000019230, +0.0000019311,0.0000019332,0.0000019311,0.0000019263,0.0000019230, +0.0000019231,0.0000019262,0.0000019319,0.0000019382,0.0000019401, +0.0000019381,0.0000019358,0.0000019348,0.0000019345,0.0000019340, +0.0000019305,0.0000019247,0.0000019211,0.0000019200,0.0000019209, +0.0000019238,0.0000019275,0.0000019299,0.0000019292,0.0000019234, +0.0000019130,0.0000019034,0.0000018966,0.0000018903,0.0000018853, +0.0000018834,0.0000018824,0.0000018829,0.0000018831,0.0000018853, +0.0000018886,0.0000018920,0.0000018952,0.0000018976,0.0000018986, +0.0000018984,0.0000018958,0.0000018906,0.0000018835,0.0000018765, +0.0000018713,0.0000018666,0.0000018608,0.0000018550,0.0000018515, +0.0000018502,0.0000018489,0.0000018456,0.0000018393,0.0000018318, +0.0000018281,0.0000018288,0.0000018321,0.0000018363,0.0000018406, +0.0000018447,0.0000018483,0.0000018517,0.0000018528,0.0000018519, +0.0000018487,0.0000018483,0.0000018508,0.0000018520,0.0000018497, +0.0000018446,0.0000018395,0.0000018356,0.0000018325,0.0000018299, +0.0000018274,0.0000018250,0.0000018233,0.0000018211,0.0000018174, +0.0000018117,0.0000018057,0.0000018008,0.0000017973,0.0000017962, +0.0000017975,0.0000018011,0.0000018058,0.0000018093,0.0000018098, +0.0000018072,0.0000018035,0.0000018000,0.0000017964,0.0000017935, +0.0000017920,0.0000017918,0.0000017933,0.0000017970,0.0000018013, +0.0000018029,0.0000017995,0.0000017917,0.0000017815,0.0000017707, +0.0000017595,0.0000017494,0.0000017424,0.0000017392,0.0000017392, +0.0000017410,0.0000017431,0.0000017443,0.0000017431,0.0000017379, +0.0000017307,0.0000017274,0.0000017286,0.0000017317,0.0000017337, +0.0000017320,0.0000017258,0.0000017178,0.0000017143,0.0000017173, +0.0000017226,0.0000017236,0.0000017311,0.0000017659,0.0000018051, +0.0000018229,0.0000018245,0.0000018210,0.0000018154,0.0000018126, +0.0000018035,0.0000017950,0.0000017856,0.0000017818,0.0000017805, +0.0000017705,0.0000017595,0.0000017604,0.0000017663,0.0000017735, +0.0000017858,0.0000018007,0.0000018142,0.0000018214,0.0000018246, +0.0000018240,0.0000018224,0.0000018213,0.0000018209,0.0000018197, +0.0000018140,0.0000018022,0.0000017867,0.0000017721,0.0000017626, +0.0000017594,0.0000017600,0.0000017611,0.0000017617,0.0000017620, +0.0000017624,0.0000017622,0.0000017613,0.0000017599,0.0000017583, +0.0000017569,0.0000017560,0.0000017555,0.0000017548,0.0000017545, +0.0000017546,0.0000017545,0.0000017548,0.0000017560,0.0000017576, +0.0000017589,0.0000017597,0.0000017604,0.0000017627,0.0000017670, +0.0000017723,0.0000017774,0.0000017824,0.0000017871,0.0000017912, +0.0000017968,0.0000018058,0.0000018196,0.0000018379,0.0000018588, +0.0000018769,0.0000018879,0.0000018909,0.0000018884,0.0000018857, +0.0000018833,0.0000018834,0.0000018859,0.0000018889,0.0000018896, +0.0000018888,0.0000018877,0.0000018873,0.0000018873,0.0000018862, +0.0000018826,0.0000018771,0.0000018718,0.0000018682,0.0000018674, +0.0000018633,0.0000018490,0.0000018248,0.0000017961,0.0000017709, +0.0000017524,0.0000017416,0.0000017390,0.0000017422,0.0000017512, +0.0000017665,0.0000017836,0.0000017967,0.0000018037,0.0000018056, +0.0000018025,0.0000017961,0.0000017877,0.0000017754,0.0000017631, +0.0000017578,0.0000017539,0.0000017527,0.0000017555,0.0000017551, +0.0000017512,0.0000017523,0.0000017613,0.0000017705,0.0000017772, +0.0000017789,0.0000017846,0.0000017773,0.0000017652,0.0000017708, +0.0000017768,0.0000017758,0.0000017784,0.0000017812,0.0000017817, +0.0000017800,0.0000017771,0.0000017755,0.0000017741,0.0000017738, +0.0000017736,0.0000017719,0.0000017695,0.0000017671,0.0000017653, +0.0000017651,0.0000017677,0.0000017723,0.0000017777,0.0000017823, +0.0000017858,0.0000017890,0.0000017908,0.0000017921,0.0000017919, +0.0000017909,0.0000017855,0.0000017795,0.0000017749,0.0000017732, +0.0000017725,0.0000017682,0.0000017686,0.0000017715,0.0000017738, +0.0000017747,0.0000017733,0.0000017705,0.0000017702,0.0000017743, +0.0000017802,0.0000017844,0.0000017886,0.0000017936,0.0000017974, +0.0000017994,0.0000017997,0.0000017973,0.0000017939,0.0000017927, +0.0000017938,0.0000017962,0.0000018024,0.0000018104,0.0000018124, +0.0000018112,0.0000018123,0.0000018146,0.0000018171,0.0000018254, +0.0000018386,0.0000018492,0.0000018593,0.0000018710,0.0000018747, +0.0000018687,0.0000018628,0.0000018579,0.0000018493,0.0000018435, +0.0000018412,0.0000018293,0.0000018129,0.0000018151,0.0000018285, +0.0000018319,0.0000018283,0.0000018200,0.0000018158,0.0000018224, +0.0000018359,0.0000018477,0.0000018466,0.0000018262,0.0000018029, +0.0000017985,0.0000018050,0.0000018091,0.0000018152,0.0000018279, +0.0000018389,0.0000018477,0.0000018574,0.0000018622,0.0000018610, +0.0000018590,0.0000018603,0.0000018641,0.0000018682,0.0000018720, +0.0000018755,0.0000018785,0.0000018815,0.0000018848,0.0000018881, +0.0000018906,0.0000018923,0.0000018941,0.0000018963,0.0000018993, +0.0000019018,0.0000019012,0.0000018929,0.0000018765,0.0000018597, +0.0000018436,0.0000018230,0.0000018005,0.0000017851,0.0000017774, +0.0000017696,0.0000017581,0.0000017477,0.0000017417,0.0000017401, +0.0000017423,0.0000017506,0.0000017615,0.0000017719,0.0000017774, +0.0000017866,0.0000018083,0.0000018234,0.0000018263,0.0000018219, +0.0000018101,0.0000018140,0.0000018365,0.0000018547,0.0000018716, +0.0000019272,0.0000019716,0.0000019795,0.0000019872,0.0000019893, +0.0000019858,0.0000019805,0.0000019745,0.0000019571,0.0000019172, +0.0000018744,0.0000018576,0.0000018565,0.0000018538,0.0000018479, +0.0000018427,0.0000018406,0.0000018380,0.0000018360,0.0000018344, +0.0000018306,0.0000018240,0.0000018184,0.0000018161,0.0000018159, +0.0000018165,0.0000018178,0.0000018195,0.0000018211,0.0000018225, +0.0000018226,0.0000018227,0.0000018225,0.0000018220,0.0000018212, +0.0000018205,0.0000018204,0.0000018208,0.0000018207,0.0000018199, +0.0000018189,0.0000018187,0.0000018188,0.0000018195,0.0000018201, +0.0000018183,0.0000018088,0.0000017943,0.0000017885,0.0000017890, +0.0000017908,0.0000017963,0.0000018060,0.0000018197,0.0000018393, +0.0000018617,0.0000018715,0.0000018717,0.0000018747,0.0000018885, +0.0000019116,0.0000019102,0.0000018658,0.0000018151,0.0000017924, +0.0000017936,0.0000017966,0.0000017962,0.0000017951,0.0000017957, +0.0000018032,0.0000018210,0.0000018395,0.0000018491,0.0000018492, +0.0000018446,0.0000018405,0.0000018400,0.0000018446,0.0000018551, +0.0000018658,0.0000018709,0.0000018710,0.0000018698,0.0000018695, +0.0000018701,0.0000018710,0.0000018717,0.0000018714,0.0000018662, +0.0000018529,0.0000018340,0.0000018153,0.0000018009,0.0000017914, +0.0000017858,0.0000017828,0.0000017822,0.0000017825,0.0000017855, +0.0000017908,0.0000017966,0.0000018015,0.0000018055,0.0000018097, +0.0000018135,0.0000018170,0.0000018204,0.0000018228,0.0000018244, +0.0000018256,0.0000018272,0.0000018293,0.0000018314,0.0000018335, +0.0000018356,0.0000018382,0.0000018436,0.0000018528,0.0000018600, +0.0000018582,0.0000018419,0.0000018226,0.0000018188,0.0000018227, +0.0000018282,0.0000018316,0.0000018324,0.0000018328,0.0000018337, +0.0000018354,0.0000018367,0.0000018382,0.0000018406,0.0000018467, +0.0000018550,0.0000018597,0.0000018582,0.0000018556,0.0000018589, +0.0000018714,0.0000018829,0.0000018848,0.0000018799,0.0000018731, +0.0000018694,0.0000018694,0.0000018715,0.0000018749,0.0000018820, +0.0000018939,0.0000019031,0.0000019059,0.0000019087,0.0000019137, +0.0000019178,0.0000019202,0.0000019199,0.0000019181,0.0000019202, +0.0000019335,0.0000019537,0.0000019662,0.0000019668,0.0000019611, +0.0000019523,0.0000019409,0.0000019280,0.0000019148,0.0000019031, +0.0000018969,0.0000018970,0.0000019037,0.0000019142,0.0000019246, +0.0000019363,0.0000019532,0.0000019727,0.0000019863,0.0000019970, +0.0000020129,0.0000020263,0.0000020236,0.0000020086,0.0000020006, +0.0000020015,0.0000020001,0.0000019927,0.0000019843,0.0000019880, +0.0000020061,0.0000020205,0.0000020222,0.0000020200,0.0000020204, +0.0000020252,0.0000020301,0.0000020278,0.0000020151,0.0000019996, +0.0000019873,0.0000019782,0.0000019743,0.0000019798,0.0000019966, +0.0000020160,0.0000020266,0.0000020272,0.0000020062,0.0000019553, +0.0000018945,0.0000018530,0.0000018316,0.0000018150,0.0000018034, +0.0000018106,0.0000018304,0.0000018498,0.0000018625,0.0000018630, +0.0000018538,0.0000018388,0.0000018202,0.0000018055,0.0000017979, +0.0000017982,0.0000017918,0.0000017713,0.0000017499,0.0000017588, +0.0000017985,0.0000018352,0.0000018504,0.0000018581,0.0000018634, +0.0000018621,0.0000018533,0.0000018432,0.0000018370,0.0000018354, +0.0000018360,0.0000018460,0.0000018614,0.0000018766,0.0000018865, +0.0000018912,0.0000018940,0.0000018912,0.0000018771,0.0000018537, +0.0000018424,0.0000018570,0.0000018913,0.0000019142,0.0000019009, +0.0000018718,0.0000018489,0.0000018270,0.0000018255,0.0000018401, +0.0000018487,0.0000018436,0.0000018443,0.0000018700,0.0000019248, +0.0000019672,0.0000019741,0.0000019705,0.0000019608,0.0000019597, +0.0000019667,0.0000019721,0.0000019705,0.0000019639,0.0000019567, +0.0000019544,0.0000019530,0.0000019574,0.0000019618,0.0000019637, +0.0000019647,0.0000019654,0.0000019668,0.0000019692,0.0000019725, +0.0000019768,0.0000019805,0.0000019801,0.0000019821,0.0000019769, +0.0000019715,0.0000019574,0.0000019434,0.0000019256,0.0000019059, +0.0000018892,0.0000018768,0.0000018647,0.0000018542,0.0000018461, +0.0000018454,0.0000018467,0.0000018488,0.0000018528,0.0000018594, +0.0000018668,0.0000018727,0.0000018746,0.0000018750,0.0000018790, +0.0000018928,0.0000019127,0.0000019353,0.0000019469,0.0000019481, +0.0000019462,0.0000019453,0.0000019469,0.0000019492,0.0000019502, +0.0000019490,0.0000019461,0.0000019423,0.0000019381,0.0000019330, +0.0000019259,0.0000019188,0.0000019097,0.0000019006,0.0000018932, +0.0000018913,0.0000018919,0.0000018989,0.0000019162,0.0000019426, +0.0000019706,0.0000019913,0.0000020006,0.0000020016,0.0000019994, +0.0000019971,0.0000019977,0.0000020029,0.0000020097,0.0000020130, +0.0000020103,0.0000019995,0.0000019844,0.0000019729,0.0000019693, +0.0000019712,0.0000019760,0.0000019803,0.0000019826,0.0000019837, +0.0000019849,0.0000019867,0.0000019892,0.0000019929,0.0000019977, +0.0000020029,0.0000020072,0.0000020088,0.0000020076,0.0000020045, +0.0000019996,0.0000019932,0.0000019871,0.0000019838,0.0000019836, +0.0000019854,0.0000019894,0.0000019919,0.0000019955,0.0000019900, +0.0000019800,0.0000019644,0.0000019451,0.0000019259,0.0000019093, +0.0000019066,0.0000019057,0.0000019149,0.0000019265,0.0000019451, +0.0000019654,0.0000019816,0.0000019941,0.0000019958,0.0000019981, +0.0000020024,0.0000020105,0.0000020165,0.0000020188,0.0000020159, +0.0000020115,0.0000020072,0.0000020041,0.0000020024,0.0000020016, +0.0000020014,0.0000020015,0.0000020019,0.0000020024,0.0000020026, +0.0000020024,0.0000020019,0.0000020011,0.0000019997,0.0000019978, +0.0000019960,0.0000019948,0.0000019947,0.0000019964,0.0000020002, +0.0000020061,0.0000020134,0.0000020212,0.0000020275,0.0000020309, +0.0000020314,0.0000020302,0.0000020272,0.0000020242,0.0000020222, +0.0000020212,0.0000020204,0.0000020194,0.0000020177,0.0000020157, +0.0000020146,0.0000020152,0.0000020174,0.0000020205,0.0000020236, +0.0000020260,0.0000020270,0.0000020275,0.0000020284,0.0000020294, +0.0000020307,0.0000020330,0.0000020363,0.0000020397,0.0000020422, +0.0000020435,0.0000020447,0.0000020457,0.0000020465,0.0000020467, +0.0000020466,0.0000020458,0.0000020443,0.0000020437,0.0000020443, +0.0000020467,0.0000020493,0.0000020517,0.0000020550,0.0000020583, +0.0000020596,0.0000020589,0.0000020562,0.0000020524,0.0000020472, +0.0000020417,0.0000020370,0.0000020325,0.0000020292,0.0000020263, +0.0000020250,0.0000020238,0.0000020226,0.0000020207,0.0000020175, +0.0000020132,0.0000020081,0.0000020030,0.0000019980,0.0000019935, +0.0000019913,0.0000019909,0.0000019917,0.0000019934,0.0000019959, +0.0000020008,0.0000020029,0.0000020041,0.0000020032,0.0000020005, +0.0000019969,0.0000019916,0.0000019869,0.0000019836,0.0000019812, +0.0000019796,0.0000019781,0.0000019766,0.0000019734,0.0000019695, +0.0000019652,0.0000019588,0.0000019500,0.0000019401,0.0000019295, +0.0000019192,0.0000019117,0.0000019081,0.0000019080,0.0000019098, +0.0000019116,0.0000019113,0.0000019108,0.0000019156,0.0000019246, +0.0000019350,0.0000019409,0.0000019402,0.0000019359,0.0000019315, +0.0000019292,0.0000019293,0.0000019327,0.0000019389,0.0000019441, +0.0000019455,0.0000019456,0.0000019454,0.0000019441,0.0000019422, +0.0000019384,0.0000019322,0.0000019269,0.0000019244,0.0000019243, +0.0000019260,0.0000019281,0.0000019305,0.0000019307,0.0000019284, +0.0000019227,0.0000019131,0.0000019054,0.0000019008,0.0000018963, +0.0000018914,0.0000018869,0.0000018853,0.0000018857,0.0000018873, +0.0000018895,0.0000018922,0.0000018942,0.0000018960,0.0000018970, +0.0000018983,0.0000018984,0.0000018960,0.0000018911,0.0000018846, +0.0000018787,0.0000018740,0.0000018678,0.0000018599,0.0000018531, +0.0000018498,0.0000018480,0.0000018461,0.0000018426,0.0000018374, +0.0000018334,0.0000018330,0.0000018355,0.0000018397,0.0000018440, +0.0000018481,0.0000018516,0.0000018552,0.0000018572,0.0000018576, +0.0000018545,0.0000018516,0.0000018525,0.0000018549,0.0000018541, +0.0000018492,0.0000018432,0.0000018384,0.0000018350,0.0000018326, +0.0000018308,0.0000018295,0.0000018292,0.0000018288,0.0000018266, +0.0000018210,0.0000018143,0.0000018081,0.0000018023,0.0000017979, +0.0000017954,0.0000017961,0.0000017982,0.0000018012,0.0000018030, +0.0000018027,0.0000018011,0.0000017985,0.0000017956,0.0000017936, +0.0000017931,0.0000017937,0.0000017957,0.0000017996,0.0000018046, +0.0000018084,0.0000018090,0.0000018052,0.0000017986,0.0000017900, +0.0000017799,0.0000017680,0.0000017570,0.0000017498,0.0000017467, +0.0000017464,0.0000017481,0.0000017502,0.0000017506,0.0000017476, +0.0000017406,0.0000017333,0.0000017296,0.0000017303,0.0000017318, +0.0000017319,0.0000017301,0.0000017245,0.0000017173,0.0000017141, +0.0000017169,0.0000017203,0.0000017224,0.0000017411,0.0000017838, +0.0000018152,0.0000018241,0.0000018223,0.0000018157,0.0000018115, +0.0000018028,0.0000017927,0.0000017847,0.0000017815,0.0000017778, +0.0000017657,0.0000017567,0.0000017583,0.0000017637,0.0000017720, +0.0000017863,0.0000018020,0.0000018128,0.0000018165,0.0000018157, +0.0000018133,0.0000018103,0.0000018057,0.0000017978,0.0000017865, +0.0000017734,0.0000017609,0.0000017521,0.0000017486,0.0000017496, +0.0000017537,0.0000017565,0.0000017576,0.0000017577,0.0000017589, +0.0000017589,0.0000017582,0.0000017578,0.0000017567,0.0000017554, +0.0000017543,0.0000017532,0.0000017518,0.0000017501,0.0000017486, +0.0000017472,0.0000017431,0.0000017413,0.0000017428,0.0000017420, +0.0000017415,0.0000017419,0.0000017418,0.0000017442,0.0000017496, +0.0000017575,0.0000017661,0.0000017748,0.0000017819,0.0000017866, +0.0000017900,0.0000017944,0.0000018021,0.0000018149,0.0000018341, +0.0000018580,0.0000018801,0.0000018927,0.0000018961,0.0000018928, +0.0000018892,0.0000018876,0.0000018885,0.0000018894,0.0000018891, +0.0000018886,0.0000018890,0.0000018900,0.0000018895,0.0000018870, +0.0000018826,0.0000018775,0.0000018733,0.0000018705,0.0000018665, +0.0000018548,0.0000018331,0.0000018046,0.0000017759,0.0000017536, +0.0000017377,0.0000017271,0.0000017231,0.0000017262,0.0000017353, +0.0000017504,0.0000017680,0.0000017842,0.0000017979,0.0000018046, +0.0000018040,0.0000017963,0.0000017869,0.0000017743,0.0000017621, +0.0000017582,0.0000017554,0.0000017525,0.0000017523,0.0000017509, +0.0000017483,0.0000017529,0.0000017627,0.0000017732,0.0000017779, +0.0000017815,0.0000017850,0.0000017717,0.0000017649,0.0000017737, +0.0000017754,0.0000017767,0.0000017807,0.0000017853,0.0000017868, +0.0000017853,0.0000017842,0.0000017829,0.0000017831,0.0000017840, +0.0000017829,0.0000017794,0.0000017765,0.0000017738,0.0000017718, +0.0000017721,0.0000017747,0.0000017780,0.0000017812,0.0000017826, +0.0000017843,0.0000017867,0.0000017882,0.0000017895,0.0000017910, +0.0000017915,0.0000017888,0.0000017815,0.0000017745,0.0000017700, +0.0000017671,0.0000017647,0.0000017682,0.0000017729,0.0000017754, +0.0000017759,0.0000017743,0.0000017723,0.0000017735,0.0000017782, +0.0000017824,0.0000017857,0.0000017904,0.0000017956,0.0000017983, +0.0000017984,0.0000017965,0.0000017934,0.0000017912,0.0000017908, +0.0000017920,0.0000017973,0.0000018069,0.0000018124,0.0000018116, +0.0000018103,0.0000018125,0.0000018153,0.0000018199,0.0000018314, +0.0000018444,0.0000018533,0.0000018652,0.0000018757,0.0000018739, +0.0000018660,0.0000018609,0.0000018544,0.0000018459,0.0000018429, +0.0000018394,0.0000018232,0.0000018118,0.0000018199,0.0000018315, +0.0000018311,0.0000018246,0.0000018178,0.0000018199,0.0000018314, +0.0000018434,0.0000018441,0.0000018264,0.0000018032,0.0000017979, +0.0000018037,0.0000018073,0.0000018119,0.0000018236,0.0000018351, +0.0000018446,0.0000018549,0.0000018609,0.0000018606,0.0000018598, +0.0000018618,0.0000018661,0.0000018703,0.0000018739,0.0000018772, +0.0000018798,0.0000018825,0.0000018858,0.0000018893,0.0000018922, +0.0000018939,0.0000018951,0.0000018959,0.0000018969,0.0000018992, +0.0000019011,0.0000018972,0.0000018845,0.0000018664,0.0000018479, +0.0000018262,0.0000018032,0.0000017883,0.0000017812,0.0000017711, +0.0000017569,0.0000017473,0.0000017444,0.0000017445,0.0000017482, +0.0000017560,0.0000017656,0.0000017736,0.0000017778,0.0000017832, +0.0000018012,0.0000018193,0.0000018238,0.0000018199,0.0000018099, +0.0000018154,0.0000018403,0.0000018567,0.0000018720,0.0000019240, +0.0000019682,0.0000019757,0.0000019787,0.0000019792,0.0000019775, +0.0000019712,0.0000019483,0.0000019063,0.0000018717,0.0000018612, +0.0000018594,0.0000018561,0.0000018500,0.0000018443,0.0000018425, +0.0000018401,0.0000018369,0.0000018343,0.0000018283,0.0000018196, +0.0000018141,0.0000018134,0.0000018147,0.0000018160,0.0000018162, +0.0000018157,0.0000018148,0.0000018126,0.0000018101,0.0000018085, +0.0000018073,0.0000018061,0.0000018046,0.0000018043,0.0000018069, +0.0000018113,0.0000018143,0.0000018146,0.0000018127,0.0000018110, +0.0000018106,0.0000018115,0.0000018122,0.0000018103,0.0000018027, +0.0000017926,0.0000017878,0.0000017879,0.0000017896,0.0000017955, +0.0000018054,0.0000018196,0.0000018403,0.0000018639,0.0000018735, +0.0000018728,0.0000018802,0.0000019028,0.0000019119,0.0000018787, +0.0000018202,0.0000017946,0.0000017932,0.0000017961,0.0000017960, +0.0000017940,0.0000017929,0.0000017945,0.0000018046,0.0000018232, +0.0000018390,0.0000018455,0.0000018434,0.0000018374,0.0000018334, +0.0000018333,0.0000018393,0.0000018508,0.0000018613,0.0000018650, +0.0000018645,0.0000018635,0.0000018639,0.0000018649,0.0000018657, +0.0000018658,0.0000018663,0.0000018663,0.0000018619,0.0000018502, +0.0000018326,0.0000018138,0.0000017981,0.0000017880,0.0000017835, +0.0000017826,0.0000017835,0.0000017870,0.0000017922,0.0000017972, +0.0000018006,0.0000018030,0.0000018063,0.0000018103,0.0000018155, +0.0000018220,0.0000018284,0.0000018324,0.0000018338,0.0000018345, +0.0000018354,0.0000018363,0.0000018378,0.0000018409,0.0000018457, +0.0000018525,0.0000018601,0.0000018641,0.0000018602,0.0000018444, +0.0000018255,0.0000018194,0.0000018219,0.0000018274,0.0000018315, +0.0000018322,0.0000018314,0.0000018328,0.0000018380,0.0000018436, +0.0000018474,0.0000018525,0.0000018570,0.0000018594,0.0000018575, +0.0000018539,0.0000018560,0.0000018750,0.0000019029,0.0000019196, +0.0000019222,0.0000019163,0.0000019045,0.0000018924,0.0000018831, +0.0000018791,0.0000018808,0.0000018870,0.0000018969,0.0000019041, +0.0000019078,0.0000019121,0.0000019163,0.0000019183,0.0000019198, +0.0000019201,0.0000019201,0.0000019236,0.0000019412,0.0000019667, +0.0000019808,0.0000019819,0.0000019780,0.0000019698,0.0000019586, +0.0000019450,0.0000019297,0.0000019137,0.0000019016,0.0000018997, +0.0000019055,0.0000019160,0.0000019276,0.0000019430,0.0000019646, +0.0000019844,0.0000019980,0.0000020136,0.0000020272,0.0000020253, +0.0000020112,0.0000020038,0.0000020055,0.0000020042,0.0000019956, +0.0000019863,0.0000019907,0.0000020087,0.0000020211,0.0000020215, +0.0000020193,0.0000020200,0.0000020253,0.0000020284,0.0000020217, +0.0000020068,0.0000019919,0.0000019809,0.0000019737,0.0000019740, +0.0000019844,0.0000020053,0.0000020223,0.0000020269,0.0000020213, +0.0000019833,0.0000019215,0.0000018675,0.0000018354,0.0000018147, +0.0000018035,0.0000018096,0.0000018286,0.0000018465,0.0000018531, +0.0000018567,0.0000018517,0.0000018393,0.0000018263,0.0000018186, +0.0000018126,0.0000018114,0.0000018135,0.0000018108,0.0000017871, +0.0000017608,0.0000017694,0.0000018112,0.0000018441,0.0000018549, +0.0000018576,0.0000018551,0.0000018463,0.0000018366,0.0000018315, +0.0000018338,0.0000018385,0.0000018482,0.0000018627,0.0000018777, +0.0000018863,0.0000018889,0.0000018861,0.0000018790,0.0000018683, +0.0000018571,0.0000018567,0.0000018708,0.0000018948,0.0000019076, +0.0000018978,0.0000018688,0.0000018472,0.0000018345,0.0000018236, +0.0000018267,0.0000018418,0.0000018488,0.0000018446,0.0000018461, +0.0000018734,0.0000019277,0.0000019679,0.0000019744,0.0000019722, +0.0000019642,0.0000019584,0.0000019578,0.0000019583,0.0000019582, +0.0000019576,0.0000019577,0.0000019603,0.0000019662,0.0000019719, +0.0000019747,0.0000019759,0.0000019776,0.0000019804,0.0000019842, +0.0000019871,0.0000019860,0.0000019860,0.0000019812,0.0000019688, +0.0000019566,0.0000019376,0.0000019197,0.0000019046,0.0000018856, +0.0000018717,0.0000018596,0.0000018520,0.0000018478,0.0000018451, +0.0000018441,0.0000018442,0.0000018452,0.0000018479,0.0000018524, +0.0000018597,0.0000018663,0.0000018713,0.0000018720,0.0000018702, +0.0000018691,0.0000018750,0.0000018879,0.0000019024,0.0000019152, +0.0000019227,0.0000019328,0.0000019423,0.0000019515,0.0000019580, +0.0000019601,0.0000019593,0.0000019565,0.0000019517,0.0000019464, +0.0000019400,0.0000019330,0.0000019251,0.0000019160,0.0000019067, +0.0000018996,0.0000018953,0.0000018959,0.0000019032,0.0000019181, +0.0000019395,0.0000019640,0.0000019854,0.0000019971,0.0000020019, +0.0000020015,0.0000019994,0.0000019984,0.0000020006,0.0000020065, +0.0000020122,0.0000020133,0.0000020090,0.0000019967,0.0000019824, +0.0000019731,0.0000019712,0.0000019732,0.0000019778,0.0000019820, +0.0000019846,0.0000019858,0.0000019864,0.0000019864,0.0000019860, +0.0000019853,0.0000019851,0.0000019846,0.0000019839,0.0000019822, +0.0000019796,0.0000019791,0.0000019778,0.0000019785,0.0000019814, +0.0000019840,0.0000019885,0.0000019882,0.0000019836,0.0000019733, +0.0000019564,0.0000019376,0.0000019215,0.0000019079,0.0000019099, +0.0000019082,0.0000019173,0.0000019337,0.0000019539,0.0000019730, +0.0000019856,0.0000019952,0.0000019943,0.0000019961,0.0000019950, +0.0000019961,0.0000020013,0.0000020070,0.0000020106,0.0000020093, +0.0000020044,0.0000019999,0.0000019969,0.0000019951,0.0000019947, +0.0000019957,0.0000019970,0.0000019975,0.0000019969,0.0000019957, +0.0000019940,0.0000019920,0.0000019894,0.0000019863,0.0000019833, +0.0000019804,0.0000019777,0.0000019758,0.0000019751,0.0000019761, +0.0000019790,0.0000019837,0.0000019903,0.0000019994,0.0000020103, +0.0000020200,0.0000020257,0.0000020268,0.0000020252,0.0000020215, +0.0000020183,0.0000020168,0.0000020164,0.0000020164,0.0000020160, +0.0000020156,0.0000020166,0.0000020189,0.0000020215,0.0000020229, +0.0000020230,0.0000020226,0.0000020231,0.0000020250,0.0000020274, +0.0000020298,0.0000020323,0.0000020344,0.0000020346,0.0000020328, +0.0000020305,0.0000020296,0.0000020305,0.0000020339,0.0000020384, +0.0000020420,0.0000020441,0.0000020458,0.0000020476,0.0000020489, +0.0000020498,0.0000020512,0.0000020527,0.0000020534,0.0000020542, +0.0000020558,0.0000020556,0.0000020539,0.0000020509,0.0000020475, +0.0000020428,0.0000020377,0.0000020339,0.0000020308,0.0000020280, +0.0000020259,0.0000020247,0.0000020238,0.0000020226,0.0000020205, +0.0000020176,0.0000020138,0.0000020094,0.0000020047,0.0000020006, +0.0000019973,0.0000019950,0.0000019944,0.0000019945,0.0000019949, +0.0000019959,0.0000019992,0.0000020026,0.0000020052,0.0000020077, +0.0000020073,0.0000020054,0.0000020014,0.0000019961,0.0000019921, +0.0000019888,0.0000019861,0.0000019837,0.0000019817,0.0000019792, +0.0000019763,0.0000019726,0.0000019666,0.0000019586,0.0000019493, +0.0000019393,0.0000019293,0.0000019222,0.0000019181,0.0000019164, +0.0000019170,0.0000019188,0.0000019197,0.0000019194,0.0000019216, +0.0000019297,0.0000019401,0.0000019475,0.0000019481,0.0000019438, +0.0000019392,0.0000019361,0.0000019351,0.0000019351,0.0000019384, +0.0000019436,0.0000019473,0.0000019504,0.0000019529,0.0000019537, +0.0000019522,0.0000019482,0.0000019416,0.0000019346,0.0000019302, +0.0000019292,0.0000019308,0.0000019333,0.0000019354,0.0000019352, +0.0000019319,0.0000019274,0.0000019206,0.0000019121,0.0000019070, +0.0000019048,0.0000019019,0.0000018961,0.0000018907,0.0000018897, +0.0000018911,0.0000018934,0.0000018960,0.0000018975,0.0000018975, +0.0000018972,0.0000018981,0.0000018990,0.0000018982,0.0000018947, +0.0000018891,0.0000018836,0.0000018796,0.0000018752,0.0000018677, +0.0000018584,0.0000018512,0.0000018476,0.0000018456,0.0000018441, +0.0000018418,0.0000018396,0.0000018390,0.0000018403,0.0000018439, +0.0000018482,0.0000018521,0.0000018554,0.0000018581,0.0000018605, +0.0000018615,0.0000018598,0.0000018558,0.0000018553,0.0000018578, +0.0000018593,0.0000018560,0.0000018493,0.0000018430,0.0000018380, +0.0000018341,0.0000018314,0.0000018301,0.0000018304,0.0000018319, +0.0000018320,0.0000018287,0.0000018227,0.0000018171,0.0000018119, +0.0000018062,0.0000018015,0.0000017983,0.0000017971,0.0000017981, +0.0000017974,0.0000017970,0.0000017955,0.0000017932,0.0000017906, +0.0000017888,0.0000017886,0.0000017898,0.0000017927,0.0000017975, +0.0000018033,0.0000018080,0.0000018097,0.0000018085,0.0000018059, +0.0000018004,0.0000017940,0.0000017856,0.0000017750,0.0000017658, +0.0000017598,0.0000017567,0.0000017558,0.0000017565,0.0000017569, +0.0000017555,0.0000017511,0.0000017438,0.0000017363,0.0000017320, +0.0000017311,0.0000017312,0.0000017303,0.0000017282,0.0000017233, +0.0000017165,0.0000017142,0.0000017163,0.0000017179,0.0000017248, +0.0000017587,0.0000018008,0.0000018220,0.0000018227,0.0000018170, +0.0000018109,0.0000018035,0.0000017926,0.0000017855,0.0000017813, +0.0000017769,0.0000017656,0.0000017559,0.0000017539,0.0000017570, +0.0000017636,0.0000017741,0.0000017843,0.0000017899,0.0000017908, +0.0000017879,0.0000017828,0.0000017753,0.0000017654,0.0000017557, +0.0000017483,0.0000017443,0.0000017427,0.0000017449,0.0000017475, +0.0000017514,0.0000017557,0.0000017586,0.0000017606,0.0000017632, +0.0000017663,0.0000017691,0.0000017707,0.0000017718,0.0000017721, +0.0000017719,0.0000017712,0.0000017697,0.0000017670,0.0000017636, +0.0000017600,0.0000017551,0.0000017502,0.0000017471,0.0000017435, +0.0000017385,0.0000017356,0.0000017311,0.0000017272,0.0000017264, +0.0000017298,0.0000017365,0.0000017463,0.0000017580,0.0000017695, +0.0000017789,0.0000017860,0.0000017913,0.0000017961,0.0000018025, +0.0000018144,0.0000018349,0.0000018615,0.0000018847,0.0000018970, +0.0000018991,0.0000018957,0.0000018923,0.0000018897,0.0000018882, +0.0000018872,0.0000018880,0.0000018904,0.0000018916,0.0000018906, +0.0000018876,0.0000018837,0.0000018801,0.0000018759,0.0000018686, +0.0000018553,0.0000018334,0.0000018065,0.0000017793,0.0000017556, +0.0000017376,0.0000017241,0.0000017148,0.0000017117,0.0000017132, +0.0000017189,0.0000017315,0.0000017489,0.0000017692,0.0000017887, +0.0000018014,0.0000018037,0.0000017975,0.0000017872,0.0000017744, +0.0000017631,0.0000017601,0.0000017553,0.0000017496,0.0000017489, +0.0000017478,0.0000017480,0.0000017546,0.0000017654,0.0000017760, +0.0000017790,0.0000017849,0.0000017815,0.0000017653,0.0000017670, +0.0000017741,0.0000017758,0.0000017792,0.0000017867,0.0000017932, +0.0000017942,0.0000017950,0.0000017955,0.0000017966,0.0000017984, +0.0000017982,0.0000017950,0.0000017925,0.0000017901,0.0000017874, +0.0000017865,0.0000017885,0.0000017908,0.0000017919,0.0000017915, +0.0000017897,0.0000017877,0.0000017860,0.0000017855,0.0000017861, +0.0000017877,0.0000017893,0.0000017881,0.0000017830,0.0000017742, +0.0000017745,0.0000017657,0.0000017641,0.0000017685,0.0000017726, +0.0000017750,0.0000017752,0.0000017734,0.0000017729,0.0000017762, +0.0000017809,0.0000017837,0.0000017869,0.0000017920,0.0000017956, +0.0000017955,0.0000017935,0.0000017913,0.0000017895,0.0000017883, +0.0000017884,0.0000017919,0.0000018011,0.0000018105,0.0000018121, +0.0000018094,0.0000018094,0.0000018128,0.0000018165,0.0000018241, +0.0000018378,0.0000018486,0.0000018578,0.0000018712,0.0000018771, +0.0000018707,0.0000018631,0.0000018584,0.0000018497,0.0000018433, +0.0000018427,0.0000018350,0.0000018170,0.0000018120,0.0000018250, +0.0000018316,0.0000018290,0.0000018232,0.0000018212,0.0000018281, +0.0000018390,0.0000018418,0.0000018270,0.0000018038,0.0000017962, +0.0000018018,0.0000018047,0.0000018074,0.0000018177,0.0000018294, +0.0000018389,0.0000018500,0.0000018589,0.0000018611,0.0000018611, +0.0000018632,0.0000018675,0.0000018722,0.0000018760,0.0000018788, +0.0000018811,0.0000018835,0.0000018862,0.0000018892,0.0000018917, +0.0000018936,0.0000018952,0.0000018952,0.0000018944,0.0000018953, +0.0000018974,0.0000018975,0.0000018906,0.0000018739,0.0000018534, +0.0000018302,0.0000018053,0.0000017896,0.0000017830,0.0000017717, +0.0000017562,0.0000017489,0.0000017491,0.0000017517,0.0000017564, +0.0000017629,0.0000017702,0.0000017757,0.0000017782,0.0000017810, +0.0000017954,0.0000018148,0.0000018212,0.0000018178,0.0000018090, +0.0000018167,0.0000018437,0.0000018583,0.0000018694,0.0000019133, +0.0000019604,0.0000019728,0.0000019750,0.0000019743,0.0000019639, +0.0000019350,0.0000018956,0.0000018707,0.0000018652,0.0000018616, +0.0000018587,0.0000018528,0.0000018457,0.0000018433,0.0000018411, +0.0000018371,0.0000018318,0.0000018236,0.0000018144,0.0000018106, +0.0000018109,0.0000018122,0.0000018115,0.0000018084,0.0000018044, +0.0000018011,0.0000017987,0.0000017976,0.0000017973,0.0000017959, +0.0000017928,0.0000017902,0.0000017911,0.0000017975,0.0000018044, +0.0000018065,0.0000018036,0.0000017994,0.0000017962,0.0000017950, +0.0000017958,0.0000017972,0.0000017973,0.0000017938,0.0000017890, +0.0000017881,0.0000017890,0.0000017930,0.0000018003,0.0000018093, +0.0000018212,0.0000018413,0.0000018656,0.0000018745,0.0000018749, +0.0000018893,0.0000019117,0.0000018959,0.0000018348,0.0000017966, +0.0000017943,0.0000017983,0.0000017986,0.0000017959,0.0000017922, +0.0000017913,0.0000017931,0.0000018017,0.0000018168,0.0000018317, +0.0000018386,0.0000018374,0.0000018317,0.0000018268,0.0000018260, +0.0000018305,0.0000018413,0.0000018522,0.0000018569,0.0000018567, +0.0000018555,0.0000018556,0.0000018571,0.0000018587,0.0000018593, +0.0000018596,0.0000018608,0.0000018622,0.0000018603,0.0000018525, +0.0000018364,0.0000018161,0.0000017984,0.0000017879,0.0000017846, +0.0000017852,0.0000017887,0.0000017943,0.0000017994,0.0000018016, +0.0000018014,0.0000018023,0.0000018053,0.0000018121,0.0000018221, +0.0000018319,0.0000018374,0.0000018389,0.0000018392,0.0000018402, +0.0000018422,0.0000018457,0.0000018505,0.0000018557,0.0000018606, +0.0000018633,0.0000018623,0.0000018550,0.0000018400,0.0000018259, +0.0000018213,0.0000018226,0.0000018277,0.0000018307,0.0000018294, +0.0000018233,0.0000018194,0.0000018243,0.0000018345,0.0000018448, +0.0000018542,0.0000018593,0.0000018584,0.0000018526,0.0000018512, +0.0000018674,0.0000019038,0.0000019348,0.0000019464,0.0000019473, +0.0000019448,0.0000019377,0.0000019262,0.0000019113,0.0000018990, +0.0000018938,0.0000018939,0.0000018991,0.0000019045,0.0000019108, +0.0000019206,0.0000019264,0.0000019248,0.0000019209,0.0000019199, +0.0000019203,0.0000019254,0.0000019454,0.0000019731,0.0000019899, +0.0000019920,0.0000019876,0.0000019792,0.0000019679,0.0000019547, +0.0000019397,0.0000019217,0.0000019066,0.0000019037,0.0000019090, +0.0000019202,0.0000019346,0.0000019564,0.0000019812,0.0000019989, +0.0000020149,0.0000020291,0.0000020274,0.0000020134,0.0000020065, +0.0000020094,0.0000020084,0.0000019993,0.0000019895,0.0000019938, +0.0000020111,0.0000020221,0.0000020220,0.0000020204,0.0000020218, +0.0000020259,0.0000020250,0.0000020144,0.0000019987,0.0000019847, +0.0000019746,0.0000019708,0.0000019750,0.0000019921,0.0000020130, +0.0000020253,0.0000020269,0.0000020058,0.0000019524,0.0000018917, +0.0000018491,0.0000018199,0.0000018033,0.0000018033,0.0000018229, +0.0000018435,0.0000018477,0.0000018458,0.0000018445,0.0000018399, +0.0000018323,0.0000018260,0.0000018227,0.0000018223,0.0000018219, +0.0000018216,0.0000018149,0.0000017912,0.0000017703,0.0000017871, +0.0000018271,0.0000018518,0.0000018549,0.0000018487,0.0000018390, +0.0000018297,0.0000018252,0.0000018286,0.0000018392,0.0000018530, +0.0000018660,0.0000018764,0.0000018820,0.0000018825,0.0000018786, +0.0000018765,0.0000018712,0.0000018718,0.0000018774,0.0000018900, +0.0000018993,0.0000018987,0.0000018821,0.0000018529,0.0000018347, +0.0000018301,0.0000018251,0.0000018218,0.0000018317,0.0000018461, +0.0000018491,0.0000018452,0.0000018500,0.0000018829,0.0000019368, +0.0000019703,0.0000019750,0.0000019742,0.0000019687,0.0000019619, +0.0000019595,0.0000019604,0.0000019637,0.0000019670,0.0000019702, +0.0000019753,0.0000019806,0.0000019831,0.0000019844,0.0000019860, +0.0000019886,0.0000019900,0.0000019900,0.0000019840,0.0000019724, +0.0000019576,0.0000019397,0.0000019225,0.0000019049,0.0000018905, +0.0000018794,0.0000018750,0.0000018638,0.0000018587,0.0000018546, +0.0000018504,0.0000018463,0.0000018437,0.0000018427,0.0000018427, +0.0000018436,0.0000018463,0.0000018513,0.0000018578,0.0000018625, +0.0000018637,0.0000018628,0.0000018618,0.0000018623,0.0000018681, +0.0000018785,0.0000018912,0.0000019074,0.0000019242,0.0000019392, +0.0000019515,0.0000019562,0.0000019574,0.0000019559,0.0000019528, +0.0000019488,0.0000019446,0.0000019406,0.0000019360,0.0000019315, +0.0000019260,0.0000019209,0.0000019160,0.0000019124,0.0000019101, +0.0000019107,0.0000019163,0.0000019281,0.0000019448,0.0000019633, +0.0000019793,0.0000019895,0.0000019949,0.0000019968,0.0000019976, +0.0000019997,0.0000020045,0.0000020106,0.0000020140,0.0000020131, +0.0000020054,0.0000019929,0.0000019808,0.0000019740,0.0000019729, +0.0000019747,0.0000019783,0.0000019814,0.0000019831,0.0000019841, +0.0000019849,0.0000019851,0.0000019848,0.0000019835,0.0000019810, +0.0000019790,0.0000019777,0.0000019774,0.0000019787,0.0000019790, +0.0000019809,0.0000019812,0.0000019780,0.0000019705,0.0000019589, +0.0000019457,0.0000019314,0.0000019169,0.0000019074,0.0000019048, +0.0000019099,0.0000019213,0.0000019395,0.0000019610,0.0000019777, +0.0000019890,0.0000019983,0.0000019981,0.0000019984,0.0000019954, +0.0000019923,0.0000019910,0.0000019931,0.0000019972,0.0000020000, +0.0000019996,0.0000019963,0.0000019914,0.0000019864,0.0000019837, +0.0000019836,0.0000019856,0.0000019887,0.0000019916,0.0000019929, +0.0000019916,0.0000019885,0.0000019846,0.0000019811,0.0000019778, +0.0000019753,0.0000019734,0.0000019720,0.0000019721,0.0000019713, +0.0000019701,0.0000019692,0.0000019699,0.0000019717,0.0000019743, +0.0000019794,0.0000019880,0.0000019993,0.0000020098,0.0000020165, +0.0000020179,0.0000020163,0.0000020134,0.0000020113,0.0000020109, +0.0000020115,0.0000020128,0.0000020150,0.0000020181,0.0000020212, +0.0000020218,0.0000020201,0.0000020177,0.0000020176,0.0000020206, +0.0000020249,0.0000020287,0.0000020317,0.0000020332,0.0000020320, +0.0000020280,0.0000020234,0.0000020211,0.0000020218,0.0000020248, +0.0000020292,0.0000020337,0.0000020378,0.0000020413,0.0000020445, +0.0000020477,0.0000020502,0.0000020509,0.0000020510,0.0000020505, +0.0000020486,0.0000020463,0.0000020443,0.0000020418,0.0000020384, +0.0000020345,0.0000020306,0.0000020263,0.0000020220,0.0000020186, +0.0000020169,0.0000020156,0.0000020144,0.0000020134,0.0000020123, +0.0000020111,0.0000020091,0.0000020064,0.0000020033,0.0000019999, +0.0000019968,0.0000019946,0.0000019939,0.0000019940,0.0000019943, +0.0000019950,0.0000019955,0.0000019960,0.0000019976,0.0000020014, +0.0000020042,0.0000020076,0.0000020094,0.0000020105,0.0000020094, +0.0000020063,0.0000020023,0.0000019974,0.0000019920,0.0000019867, +0.0000019826,0.0000019796,0.0000019775,0.0000019752,0.0000019705, +0.0000019652,0.0000019583,0.0000019502,0.0000019415,0.0000019340, +0.0000019299,0.0000019276,0.0000019273,0.0000019278,0.0000019286, +0.0000019290,0.0000019306,0.0000019368,0.0000019467,0.0000019539, +0.0000019548,0.0000019509,0.0000019449,0.0000019409,0.0000019391, +0.0000019382,0.0000019380,0.0000019408,0.0000019448,0.0000019496, +0.0000019544,0.0000019580,0.0000019588,0.0000019564,0.0000019506, +0.0000019429,0.0000019369,0.0000019341,0.0000019344,0.0000019373, +0.0000019414,0.0000019434,0.0000019406,0.0000019339,0.0000019266, +0.0000019186,0.0000019122,0.0000019093,0.0000019083,0.0000019047, +0.0000018987,0.0000018951,0.0000018955,0.0000018983,0.0000019012, +0.0000019034,0.0000019034,0.0000019010,0.0000018995,0.0000018997, +0.0000018998,0.0000018977,0.0000018927,0.0000018868,0.0000018825, +0.0000018793,0.0000018744,0.0000018665,0.0000018573,0.0000018500, +0.0000018459,0.0000018443,0.0000018442,0.0000018450,0.0000018459, +0.0000018463,0.0000018487,0.0000018531,0.0000018575,0.0000018607, +0.0000018627,0.0000018638,0.0000018641,0.0000018630,0.0000018592, +0.0000018574,0.0000018596,0.0000018632,0.0000018632,0.0000018581, +0.0000018510,0.0000018444,0.0000018380,0.0000018325,0.0000018299, +0.0000018294,0.0000018314,0.0000018329,0.0000018324,0.0000018278, +0.0000018232,0.0000018193,0.0000018154,0.0000018105,0.0000018059, +0.0000018032,0.0000018015,0.0000017993,0.0000017966,0.0000017935, +0.0000017901,0.0000017865,0.0000017829,0.0000017826,0.0000017836, +0.0000017863,0.0000017911,0.0000017972,0.0000018024,0.0000018055, +0.0000018060,0.0000018040,0.0000018006,0.0000017972,0.0000017937, +0.0000017873,0.0000017802,0.0000017737,0.0000017695,0.0000017664, +0.0000017643,0.0000017631,0.0000017611,0.0000017582,0.0000017539, +0.0000017469,0.0000017388,0.0000017335,0.0000017316,0.0000017304, +0.0000017289,0.0000017267,0.0000017217,0.0000017155,0.0000017141, +0.0000017152,0.0000017165,0.0000017360,0.0000017812,0.0000018151, +0.0000018220,0.0000018189,0.0000018112,0.0000018048,0.0000017936, +0.0000017872,0.0000017824,0.0000017782,0.0000017690,0.0000017576, +0.0000017526,0.0000017502,0.0000017507,0.0000017544,0.0000017572, +0.0000017570,0.0000017540,0.0000017489,0.0000017436,0.0000017398, +0.0000017360,0.0000017369,0.0000017397,0.0000017419,0.0000017455, +0.0000017501,0.0000017559,0.0000017622,0.0000017676,0.0000017725, +0.0000017770,0.0000017807,0.0000017847,0.0000017851,0.0000017848, +0.0000017856,0.0000017841,0.0000017819,0.0000017803,0.0000017788, +0.0000017770,0.0000017764,0.0000017735,0.0000017715,0.0000017676, +0.0000017638,0.0000017585,0.0000017511,0.0000017422,0.0000017338, +0.0000017265,0.0000017215,0.0000017192,0.0000017210,0.0000017264, +0.0000017358,0.0000017485,0.0000017622,0.0000017748,0.0000017853, +0.0000017933,0.0000017985,0.0000018039,0.0000018156,0.0000018369, +0.0000018643,0.0000018872,0.0000018995,0.0000019012,0.0000018974, +0.0000018924,0.0000018884,0.0000018876,0.0000018898,0.0000018927, +0.0000018941,0.0000018933,0.0000018910,0.0000018883,0.0000018834, +0.0000018717,0.0000018525,0.0000018261,0.0000017984,0.0000017742, +0.0000017548,0.0000017384,0.0000017244,0.0000017132,0.0000017066, +0.0000017044,0.0000017030,0.0000017046,0.0000017124,0.0000017291, +0.0000017521,0.0000017750,0.0000017934,0.0000018010,0.0000017994, +0.0000017887,0.0000017757,0.0000017654,0.0000017606,0.0000017526, +0.0000017459,0.0000017465,0.0000017468,0.0000017493,0.0000017571, +0.0000017697,0.0000017781,0.0000017816,0.0000017860,0.0000017746, +0.0000017632,0.0000017699,0.0000017751,0.0000017771,0.0000017847, +0.0000017949,0.0000017994,0.0000018023,0.0000018047,0.0000018055, +0.0000018058,0.0000018048,0.0000018015,0.0000017995,0.0000017979, +0.0000017956,0.0000017939,0.0000017948,0.0000017968,0.0000017984, +0.0000017990,0.0000017985,0.0000017970,0.0000017934,0.0000017883, +0.0000017842,0.0000017828,0.0000017841,0.0000017854,0.0000017863, +0.0000017830,0.0000017809,0.0000017746,0.0000017686,0.0000017678, +0.0000017695,0.0000017716,0.0000017729,0.0000017723,0.0000017710, +0.0000017725,0.0000017773,0.0000017806,0.0000017825,0.0000017860, +0.0000017897,0.0000017902,0.0000017890,0.0000017878,0.0000017867, +0.0000017856,0.0000017854,0.0000017877,0.0000017945,0.0000018045, +0.0000018104,0.0000018101,0.0000018075,0.0000018087,0.0000018135, +0.0000018186,0.0000018293,0.0000018430,0.0000018517,0.0000018635, +0.0000018769,0.0000018761,0.0000018665,0.0000018607,0.0000018545, +0.0000018461,0.0000018432,0.0000018416,0.0000018283,0.0000018119, +0.0000018145,0.0000018285,0.0000018317,0.0000018286,0.0000018249, +0.0000018273,0.0000018358,0.0000018396,0.0000018273,0.0000018041, +0.0000017947,0.0000017996,0.0000018026,0.0000018032,0.0000018112, +0.0000018235,0.0000018335,0.0000018443,0.0000018560,0.0000018622, +0.0000018636,0.0000018654,0.0000018693,0.0000018745,0.0000018791, +0.0000018820,0.0000018840,0.0000018861,0.0000018879,0.0000018894, +0.0000018908,0.0000018922,0.0000018943,0.0000018945,0.0000018927, +0.0000018914,0.0000018922,0.0000018946,0.0000018932,0.0000018807, +0.0000018594,0.0000018347,0.0000018078,0.0000017899,0.0000017833, +0.0000017718,0.0000017570,0.0000017527,0.0000017554,0.0000017597, +0.0000017638,0.0000017681,0.0000017731,0.0000017768,0.0000017778, +0.0000017785,0.0000017907,0.0000018110,0.0000018191,0.0000018158, +0.0000018081,0.0000018179,0.0000018463,0.0000018599,0.0000018658, +0.0000018956,0.0000019401,0.0000019572,0.0000019577,0.0000019449, +0.0000019156,0.0000018856,0.0000018718,0.0000018675,0.0000018630, +0.0000018610,0.0000018555,0.0000018474,0.0000018438,0.0000018414, +0.0000018364,0.0000018288,0.0000018176,0.0000018081,0.0000018060, +0.0000018072,0.0000018063,0.0000018015,0.0000017951,0.0000017888, +0.0000017846,0.0000017840,0.0000017875,0.0000017908,0.0000017898, +0.0000017847,0.0000017826,0.0000017880,0.0000017947,0.0000017970, +0.0000017948,0.0000017922,0.0000017908,0.0000017907,0.0000017901, +0.0000017903,0.0000017914,0.0000017922,0.0000017910,0.0000017891, +0.0000017900,0.0000017946,0.0000018020,0.0000018098,0.0000018170, +0.0000018255,0.0000018425,0.0000018663,0.0000018747,0.0000018779, +0.0000018987,0.0000019095,0.0000018635,0.0000018032,0.0000017943, +0.0000017999,0.0000018024,0.0000018005,0.0000017960,0.0000017921, +0.0000017912,0.0000017921,0.0000017959,0.0000018037,0.0000018151, +0.0000018249,0.0000018289,0.0000018268,0.0000018215,0.0000018182, +0.0000018191,0.0000018263,0.0000018368,0.0000018447,0.0000018473, +0.0000018466,0.0000018460,0.0000018469,0.0000018488,0.0000018510, +0.0000018524,0.0000018537,0.0000018560,0.0000018598,0.0000018620, +0.0000018556,0.0000018381,0.0000018148,0.0000017960,0.0000017877, +0.0000017871,0.0000017897,0.0000017951,0.0000018006,0.0000018023, +0.0000018008,0.0000017995,0.0000018009,0.0000018087,0.0000018212, +0.0000018324,0.0000018384,0.0000018401,0.0000018421,0.0000018457, +0.0000018504,0.0000018547,0.0000018573,0.0000018581,0.0000018565, +0.0000018530,0.0000018475,0.0000018393,0.0000018303,0.0000018246, +0.0000018232,0.0000018254,0.0000018298,0.0000018318,0.0000018286, +0.0000018184,0.0000018117,0.0000018149,0.0000018242,0.0000018323, +0.0000018442,0.0000018507,0.0000018502,0.0000018470,0.0000018560, +0.0000018909,0.0000019334,0.0000019544,0.0000019578,0.0000019576, +0.0000019568,0.0000019563,0.0000019530,0.0000019430,0.0000019286, +0.0000019153,0.0000019071,0.0000019046,0.0000019071,0.0000019175, +0.0000019351,0.0000019446,0.0000019404,0.0000019283,0.0000019212, +0.0000019204,0.0000019249,0.0000019465,0.0000019783,0.0000019966, +0.0000019974,0.0000019919,0.0000019837,0.0000019717,0.0000019585, +0.0000019445,0.0000019254,0.0000019094,0.0000019071,0.0000019139, +0.0000019272,0.0000019485,0.0000019769,0.0000019992,0.0000020164, +0.0000020309,0.0000020299,0.0000020157,0.0000020092,0.0000020131, +0.0000020124,0.0000020031,0.0000019935,0.0000019976,0.0000020141, +0.0000020237,0.0000020230,0.0000020220,0.0000020241,0.0000020255, +0.0000020206,0.0000020071,0.0000019913,0.0000019779,0.0000019689, +0.0000019668,0.0000019783,0.0000020004,0.0000020191,0.0000020257, +0.0000020205,0.0000019818,0.0000019195,0.0000018686,0.0000018339, +0.0000018087,0.0000018012,0.0000018172,0.0000018369,0.0000018425, +0.0000018364,0.0000018333,0.0000018347,0.0000018348,0.0000018305, +0.0000018239,0.0000018188,0.0000018174,0.0000018208,0.0000018215, +0.0000018100,0.0000017877,0.0000017820,0.0000018082,0.0000018414, +0.0000018514,0.0000018457,0.0000018331,0.0000018237,0.0000018224, +0.0000018270,0.0000018397,0.0000018555,0.0000018684,0.0000018746, +0.0000018772,0.0000018786,0.0000018769,0.0000018804,0.0000018853, +0.0000018924,0.0000019004,0.0000019026,0.0000018950,0.0000018761, +0.0000018498,0.0000018248,0.0000018168,0.0000018214,0.0000018229, +0.0000018214,0.0000018267,0.0000018411,0.0000018493,0.0000018480, +0.0000018462,0.0000018577,0.0000018989,0.0000019490,0.0000019714, +0.0000019746,0.0000019764,0.0000019740,0.0000019704,0.0000019701, +0.0000019726,0.0000019750,0.0000019770,0.0000019814,0.0000019868, +0.0000019899,0.0000019921,0.0000019929,0.0000019919,0.0000019882, +0.0000019787,0.0000019640,0.0000019454,0.0000019286,0.0000019131, +0.0000019030,0.0000018944,0.0000018863,0.0000018816,0.0000018750, +0.0000018675,0.0000018593,0.0000018505,0.0000018443,0.0000018404, +0.0000018383,0.0000018372,0.0000018368,0.0000018370,0.0000018374, +0.0000018398,0.0000018438,0.0000018492,0.0000018555,0.0000018574, +0.0000018626,0.0000018678,0.0000018773,0.0000018911,0.0000019055, +0.0000019206,0.0000019347,0.0000019423,0.0000019467,0.0000019447, +0.0000019406,0.0000019354,0.0000019319,0.0000019289,0.0000019267, +0.0000019255,0.0000019247,0.0000019240,0.0000019232,0.0000019223, +0.0000019228,0.0000019234,0.0000019246,0.0000019234,0.0000019248, +0.0000019250,0.0000019268,0.0000019301,0.0000019374,0.0000019479, +0.0000019592,0.0000019698,0.0000019786,0.0000019856,0.0000019918, +0.0000019986,0.0000020048,0.0000020085,0.0000020078,0.0000020031, +0.0000019962,0.0000019890,0.0000019838,0.0000019819,0.0000019817, +0.0000019824,0.0000019826,0.0000019831,0.0000019846,0.0000019863, +0.0000019869,0.0000019874,0.0000019875,0.0000019856,0.0000019827, +0.0000019792,0.0000019754,0.0000019707,0.0000019630,0.0000019520, +0.0000019400,0.0000019287,0.0000019176,0.0000019080,0.0000019107, +0.0000019066,0.0000019110,0.0000019226,0.0000019413,0.0000019631, +0.0000019789,0.0000019906,0.0000019986,0.0000019989,0.0000019996, +0.0000019976,0.0000019951,0.0000019929,0.0000019919,0.0000019916, +0.0000019923,0.0000019925,0.0000019910,0.0000019872,0.0000019816, +0.0000019754,0.0000019703,0.0000019677,0.0000019683,0.0000019715, +0.0000019758,0.0000019795,0.0000019808,0.0000019798,0.0000019771, +0.0000019743,0.0000019723,0.0000019729,0.0000019733,0.0000019755, +0.0000019767,0.0000019773,0.0000019769,0.0000019749,0.0000019718, +0.0000019690,0.0000019669,0.0000019658,0.0000019666,0.0000019708, +0.0000019793,0.0000019902,0.0000020005,0.0000020072,0.0000020099, +0.0000020100,0.0000020092,0.0000020092,0.0000020099,0.0000020117, +0.0000020142,0.0000020166,0.0000020173,0.0000020164,0.0000020138, +0.0000020127,0.0000020141,0.0000020177,0.0000020223,0.0000020263, +0.0000020282,0.0000020273,0.0000020240,0.0000020198,0.0000020170, +0.0000020164,0.0000020171,0.0000020197,0.0000020235,0.0000020284, +0.0000020337,0.0000020385,0.0000020416,0.0000020427,0.0000020423, +0.0000020399,0.0000020360,0.0000020316,0.0000020270,0.0000020216, +0.0000020163,0.0000020118,0.0000020076,0.0000020042,0.0000020015, +0.0000019984,0.0000019948,0.0000019914,0.0000019893,0.0000019881, +0.0000019876,0.0000019871,0.0000019861,0.0000019850,0.0000019846, +0.0000019848,0.0000019845,0.0000019841,0.0000019840,0.0000019846, +0.0000019863,0.0000019881,0.0000019895,0.0000019906,0.0000019915, +0.0000019925,0.0000019935,0.0000019970,0.0000020003,0.0000020036, +0.0000020070,0.0000020087,0.0000020098,0.0000020090,0.0000020065, +0.0000020018,0.0000019957,0.0000019888,0.0000019822,0.0000019774, +0.0000019740,0.0000019721,0.0000019701,0.0000019675,0.0000019638, +0.0000019592,0.0000019530,0.0000019465,0.0000019422,0.0000019399, +0.0000019385,0.0000019379,0.0000019371,0.0000019370,0.0000019388, +0.0000019440,0.0000019525,0.0000019593,0.0000019600,0.0000019571, +0.0000019507,0.0000019445,0.0000019412,0.0000019395,0.0000019382, +0.0000019383,0.0000019410,0.0000019455,0.0000019519,0.0000019575, +0.0000019602,0.0000019596,0.0000019559,0.0000019487,0.0000019428, +0.0000019395,0.0000019383,0.0000019392,0.0000019433,0.0000019490, +0.0000019506,0.0000019456,0.0000019365,0.0000019266,0.0000019184, +0.0000019134,0.0000019112,0.0000019091,0.0000019051,0.0000019000, +0.0000018988,0.0000019018,0.0000019052,0.0000019084,0.0000019100, +0.0000019081,0.0000019045,0.0000019020,0.0000019011,0.0000019006, +0.0000018974,0.0000018913,0.0000018855,0.0000018812,0.0000018775, +0.0000018730,0.0000018660,0.0000018576,0.0000018505,0.0000018467, +0.0000018462,0.0000018484,0.0000018515,0.0000018525,0.0000018539, +0.0000018578,0.0000018631,0.0000018672,0.0000018690,0.0000018687, +0.0000018675,0.0000018655,0.0000018621,0.0000018591,0.0000018600, +0.0000018642,0.0000018674,0.0000018657,0.0000018604,0.0000018540, +0.0000018461,0.0000018375,0.0000018312,0.0000018288,0.0000018293, +0.0000018316,0.0000018326,0.0000018302,0.0000018267,0.0000018232, +0.0000018202,0.0000018167,0.0000018133,0.0000018117,0.0000018106, +0.0000018078,0.0000018038,0.0000017992,0.0000017938,0.0000017881, +0.0000017839,0.0000017823,0.0000017818,0.0000017835,0.0000017874, +0.0000017910,0.0000017957,0.0000017986,0.0000017988,0.0000017975, +0.0000017951,0.0000017935,0.0000017921,0.0000017899,0.0000017867, +0.0000017821,0.0000017791,0.0000017764,0.0000017734,0.0000017703, +0.0000017665,0.0000017626,0.0000017595,0.0000017558,0.0000017486, +0.0000017398,0.0000017343,0.0000017319,0.0000017300,0.0000017277, +0.0000017246,0.0000017193,0.0000017154,0.0000017132,0.0000017120, +0.0000017206,0.0000017587,0.0000018023,0.0000018216,0.0000018203, +0.0000018128,0.0000018059,0.0000017962,0.0000017898,0.0000017848, +0.0000017807,0.0000017747,0.0000017649,0.0000017561,0.0000017496, +0.0000017462,0.0000017463,0.0000017437,0.0000017404,0.0000017372, +0.0000017331,0.0000017327,0.0000017357,0.0000017388,0.0000017440, +0.0000017499,0.0000017556,0.0000017620,0.0000017689,0.0000017756, +0.0000017814,0.0000017853,0.0000017879,0.0000017886,0.0000017883, +0.0000017867,0.0000017822,0.0000017779,0.0000017742,0.0000017703, +0.0000017668,0.0000017646,0.0000017638,0.0000017643,0.0000017661, +0.0000017689,0.0000017716,0.0000017726,0.0000017743,0.0000017724, +0.0000017665,0.0000017583,0.0000017486,0.0000017383,0.0000017293, +0.0000017224,0.0000017184,0.0000017170,0.0000017198,0.0000017278, +0.0000017400,0.0000017549,0.0000017702,0.0000017838,0.0000017933, +0.0000017984,0.0000018032,0.0000018151,0.0000018373,0.0000018648, +0.0000018881,0.0000018996,0.0000018993,0.0000018970,0.0000018948, +0.0000018951,0.0000018972,0.0000018998,0.0000019009,0.0000019000, +0.0000018971,0.0000018905,0.0000018757,0.0000018490,0.0000018160, +0.0000017862,0.0000017638,0.0000017487,0.0000017378,0.0000017275, +0.0000017164,0.0000017072,0.0000017020,0.0000016989,0.0000016959, +0.0000016935,0.0000016975,0.0000017124,0.0000017344,0.0000017588, +0.0000017813,0.0000017982,0.0000017999,0.0000017906,0.0000017782, +0.0000017670,0.0000017594,0.0000017489,0.0000017436,0.0000017456, +0.0000017468,0.0000017512,0.0000017613,0.0000017743,0.0000017804, +0.0000017844,0.0000017842,0.0000017684,0.0000017652,0.0000017728, +0.0000017751,0.0000017801,0.0000017921,0.0000018009,0.0000018059, +0.0000018089,0.0000018083,0.0000018061,0.0000018035,0.0000018010, +0.0000018000,0.0000017990,0.0000017977,0.0000017973,0.0000017984, +0.0000018005,0.0000018022,0.0000018025,0.0000018014,0.0000017996, +0.0000017979,0.0000017965,0.0000017925,0.0000017852,0.0000017810, +0.0000017798,0.0000017811,0.0000017824,0.0000017782,0.0000017778, +0.0000017755,0.0000017739,0.0000017736,0.0000017728,0.0000017723, +0.0000017710,0.0000017689,0.0000017678,0.0000017713,0.0000017758, +0.0000017777,0.0000017796,0.0000017826,0.0000017840,0.0000017843, +0.0000017843,0.0000017839,0.0000017829,0.0000017826,0.0000017848, +0.0000017894,0.0000017970,0.0000018056,0.0000018096,0.0000018071, +0.0000018046,0.0000018087,0.0000018149,0.0000018216,0.0000018348, +0.0000018467,0.0000018556,0.0000018702,0.0000018782,0.0000018716, +0.0000018623,0.0000018578,0.0000018497,0.0000018432,0.0000018426, +0.0000018385,0.0000018209,0.0000018094,0.0000018191,0.0000018318, +0.0000018326,0.0000018303,0.0000018294,0.0000018340,0.0000018375, +0.0000018280,0.0000018052,0.0000017935,0.0000017967,0.0000018006, +0.0000017999,0.0000018055,0.0000018185,0.0000018291,0.0000018381, +0.0000018502,0.0000018613,0.0000018671,0.0000018699,0.0000018736, +0.0000018787,0.0000018839,0.0000018874,0.0000018897,0.0000018913, +0.0000018918,0.0000018917,0.0000018915,0.0000018923,0.0000018937, +0.0000018938,0.0000018918,0.0000018890,0.0000018874,0.0000018899, +0.0000018927,0.0000018861,0.0000018658,0.0000018393,0.0000018106, +0.0000017900,0.0000017827,0.0000017721,0.0000017593,0.0000017579, +0.0000017624,0.0000017669,0.0000017693,0.0000017715,0.0000017744, +0.0000017764,0.0000017759,0.0000017755,0.0000017869,0.0000018082, +0.0000018178,0.0000018141,0.0000018071,0.0000018194,0.0000018482, +0.0000018618,0.0000018636,0.0000018763,0.0000019044,0.0000019154, +0.0000019103,0.0000018926,0.0000018775,0.0000018725,0.0000018690, +0.0000018642,0.0000018629,0.0000018578,0.0000018487,0.0000018440, +0.0000018413,0.0000018351,0.0000018251,0.0000018120,0.0000018025, +0.0000018014,0.0000018009,0.0000017961,0.0000017891,0.0000017818, +0.0000017749,0.0000017702,0.0000017710,0.0000017778,0.0000017839, +0.0000017828,0.0000017788,0.0000017806,0.0000017873,0.0000017901, +0.0000017883,0.0000017877,0.0000017904,0.0000017944,0.0000017971, +0.0000017985,0.0000017989,0.0000017990,0.0000017993,0.0000017996, +0.0000017991,0.0000018001,0.0000018047,0.0000018129,0.0000018198, +0.0000018250,0.0000018313,0.0000018443,0.0000018659,0.0000018749, +0.0000018822,0.0000019045,0.0000018930,0.0000018272,0.0000017944, +0.0000017993,0.0000018057,0.0000018048,0.0000018015,0.0000017973, +0.0000017942,0.0000017928,0.0000017922,0.0000017922,0.0000017929, +0.0000017970,0.0000018042,0.0000018120,0.0000018168,0.0000018162, +0.0000018122,0.0000018094,0.0000018107,0.0000018170,0.0000018262, +0.0000018335,0.0000018366,0.0000018372,0.0000018375,0.0000018383, +0.0000018403,0.0000018433,0.0000018463,0.0000018493,0.0000018544, +0.0000018609,0.0000018622,0.0000018529,0.0000018288,0.0000018036, +0.0000017907,0.0000017892,0.0000017913,0.0000017960,0.0000018008, +0.0000018020,0.0000017995,0.0000017972,0.0000017980,0.0000018070, +0.0000018204,0.0000018315,0.0000018368,0.0000018397,0.0000018440, +0.0000018499,0.0000018539,0.0000018555,0.0000018528,0.0000018466, +0.0000018394,0.0000018340,0.0000018307,0.0000018273,0.0000018261, +0.0000018254,0.0000018263,0.0000018292,0.0000018329,0.0000018340, +0.0000018287,0.0000018177,0.0000018128,0.0000018210,0.0000018298, +0.0000018310,0.0000018342,0.0000018373,0.0000018407,0.0000018475, +0.0000018741,0.0000019195,0.0000019536,0.0000019638,0.0000019663, +0.0000019673,0.0000019668,0.0000019662,0.0000019657,0.0000019634, +0.0000019566,0.0000019449,0.0000019321,0.0000019235,0.0000019224, +0.0000019338,0.0000019548,0.0000019666,0.0000019607,0.0000019416, +0.0000019255,0.0000019205,0.0000019241,0.0000019478,0.0000019824, +0.0000019990,0.0000019984,0.0000019937,0.0000019861,0.0000019723, +0.0000019589,0.0000019451,0.0000019240,0.0000019099,0.0000019105, +0.0000019209,0.0000019409,0.0000019714,0.0000019985,0.0000020179, +0.0000020330,0.0000020324,0.0000020181,0.0000020119,0.0000020169, +0.0000020169,0.0000020072,0.0000019977,0.0000020014,0.0000020173, +0.0000020259,0.0000020250,0.0000020241,0.0000020257,0.0000020248, +0.0000020152,0.0000019997,0.0000019849,0.0000019719,0.0000019631, +0.0000019660,0.0000019833,0.0000020067,0.0000020211,0.0000020251, +0.0000020046,0.0000019516,0.0000018913,0.0000018498,0.0000018194, +0.0000018037,0.0000018092,0.0000018297,0.0000018390,0.0000018286, +0.0000018218,0.0000018252,0.0000018305,0.0000018298,0.0000018231, +0.0000018126,0.0000018017,0.0000018003,0.0000018110,0.0000018168, +0.0000018041,0.0000017910,0.0000017954,0.0000018279,0.0000018482, +0.0000018448,0.0000018293,0.0000018181,0.0000018182,0.0000018253, +0.0000018402,0.0000018560,0.0000018668,0.0000018718,0.0000018744, +0.0000018777,0.0000018851,0.0000018931,0.0000019025,0.0000019110, +0.0000019094,0.0000018960,0.0000018712,0.0000018414,0.0000018138, +0.0000017986,0.0000018021,0.0000018129,0.0000018204,0.0000018217, +0.0000018264,0.0000018383,0.0000018481,0.0000018487,0.0000018463, +0.0000018484,0.0000018713,0.0000019183,0.0000019578,0.0000019700, +0.0000019735,0.0000019768,0.0000019762,0.0000019755,0.0000019759, +0.0000019763,0.0000019771,0.0000019816,0.0000019884,0.0000019930, +0.0000019946,0.0000019943,0.0000019897,0.0000019757,0.0000019565, +0.0000019372,0.0000019204,0.0000019116,0.0000019055,0.0000019030, +0.0000018992,0.0000018902,0.0000018766,0.0000018610,0.0000018486, +0.0000018401,0.0000018340,0.0000018314,0.0000018315,0.0000018324, +0.0000018327,0.0000018322,0.0000018313,0.0000018310,0.0000018337, +0.0000018376,0.0000018431,0.0000018512,0.0000018623,0.0000018735, +0.0000018859,0.0000018970,0.0000019108,0.0000019255,0.0000019327, +0.0000019340,0.0000019324,0.0000019281,0.0000019212,0.0000019146, +0.0000019110,0.0000019076,0.0000019060,0.0000019049,0.0000019041, +0.0000019039,0.0000019039,0.0000019041,0.0000019041,0.0000019050, +0.0000019065,0.0000019094,0.0000019139,0.0000019188,0.0000019236, +0.0000019278,0.0000019302,0.0000019324,0.0000019347,0.0000019371, +0.0000019411,0.0000019459,0.0000019531,0.0000019601,0.0000019651, +0.0000019707,0.0000019771,0.0000019830,0.0000019877,0.0000019906, +0.0000019916,0.0000019906,0.0000019887,0.0000019877,0.0000019869, +0.0000019858,0.0000019839,0.0000019826,0.0000019827,0.0000019830, +0.0000019821,0.0000019797,0.0000019748,0.0000019667,0.0000019561, +0.0000019452,0.0000019360,0.0000019264,0.0000019154,0.0000019046, +0.0000019027,0.0000019012,0.0000019029,0.0000019113,0.0000019241, +0.0000019406,0.0000019598,0.0000019762,0.0000019901,0.0000019992, +0.0000019994,0.0000019992,0.0000019983,0.0000019975,0.0000019967, +0.0000019958,0.0000019949,0.0000019937,0.0000019917,0.0000019892, +0.0000019857,0.0000019802,0.0000019730,0.0000019653,0.0000019587, +0.0000019543,0.0000019525,0.0000019530,0.0000019551,0.0000019585, +0.0000019624,0.0000019649,0.0000019664,0.0000019677,0.0000019705, +0.0000019722,0.0000019763,0.0000019810,0.0000019849,0.0000019876, +0.0000019892,0.0000019897,0.0000019886,0.0000019843,0.0000019771, +0.0000019695,0.0000019645,0.0000019623,0.0000019626,0.0000019672, +0.0000019763,0.0000019869,0.0000019965,0.0000020033,0.0000020071, +0.0000020094,0.0000020108,0.0000020120,0.0000020130,0.0000020133, +0.0000020127,0.0000020118,0.0000020119,0.0000020122,0.0000020123, +0.0000020126,0.0000020139,0.0000020166,0.0000020196,0.0000020202, +0.0000020192,0.0000020175,0.0000020158,0.0000020143,0.0000020141, +0.0000020153,0.0000020183,0.0000020230,0.0000020281,0.0000020319, +0.0000020331,0.0000020328,0.0000020312,0.0000020288,0.0000020260, +0.0000020224,0.0000020180,0.0000020134,0.0000020086,0.0000020038, +0.0000019997,0.0000019955,0.0000019921,0.0000019892,0.0000019863, +0.0000019828,0.0000019790,0.0000019755,0.0000019726,0.0000019705, +0.0000019685,0.0000019660,0.0000019636,0.0000019631,0.0000019645, +0.0000019659,0.0000019670,0.0000019684,0.0000019706,0.0000019736, +0.0000019765,0.0000019782,0.0000019787,0.0000019787,0.0000019789, +0.0000019801,0.0000019831,0.0000019877,0.0000019915,0.0000019963, +0.0000019994,0.0000020016,0.0000020024,0.0000020007,0.0000019985, +0.0000019937,0.0000019870,0.0000019796,0.0000019737,0.0000019689, +0.0000019665,0.0000019660,0.0000019658,0.0000019643,0.0000019619, +0.0000019578,0.0000019539,0.0000019501,0.0000019477,0.0000019454, +0.0000019431,0.0000019416,0.0000019413,0.0000019440,0.0000019499, +0.0000019571,0.0000019623,0.0000019627,0.0000019603,0.0000019551, +0.0000019479,0.0000019425,0.0000019399,0.0000019390,0.0000019392, +0.0000019398,0.0000019427,0.0000019477,0.0000019541,0.0000019586, +0.0000019590,0.0000019566,0.0000019507,0.0000019454,0.0000019432, +0.0000019422,0.0000019415,0.0000019428,0.0000019485,0.0000019541, +0.0000019550,0.0000019495,0.0000019389,0.0000019276,0.0000019197, +0.0000019150,0.0000019109,0.0000019079,0.0000019032,0.0000019001, +0.0000019023,0.0000019064,0.0000019106,0.0000019137,0.0000019147, +0.0000019123,0.0000019078,0.0000019038,0.0000019023,0.0000019012, +0.0000018968,0.0000018905,0.0000018844,0.0000018793,0.0000018760, +0.0000018728,0.0000018674,0.0000018606,0.0000018546,0.0000018517, +0.0000018524,0.0000018555,0.0000018575,0.0000018587,0.0000018619, +0.0000018677,0.0000018735,0.0000018762,0.0000018756,0.0000018726, +0.0000018690,0.0000018657,0.0000018621,0.0000018611,0.0000018640, +0.0000018680,0.0000018693,0.0000018669,0.0000018625,0.0000018561, +0.0000018470,0.0000018375,0.0000018307,0.0000018284,0.0000018290, +0.0000018309,0.0000018311,0.0000018295,0.0000018263,0.0000018230, +0.0000018196,0.0000018170,0.0000018175,0.0000018188,0.0000018179, +0.0000018149,0.0000018104,0.0000018047,0.0000017988,0.0000017941, +0.0000017914,0.0000017905,0.0000017905,0.0000017913,0.0000017934, +0.0000017957,0.0000017962,0.0000017949,0.0000017918,0.0000017877, +0.0000017857,0.0000017856,0.0000017858,0.0000017849,0.0000017833, +0.0000017820,0.0000017818,0.0000017806,0.0000017778,0.0000017732, +0.0000017674,0.0000017629,0.0000017606,0.0000017567,0.0000017480, +0.0000017392,0.0000017348,0.0000017328,0.0000017296,0.0000017257, +0.0000017224,0.0000017182,0.0000017131,0.0000017104,0.0000017124, +0.0000017365,0.0000017835,0.0000018150,0.0000018200,0.0000018155, +0.0000018076,0.0000018002,0.0000017932,0.0000017882,0.0000017840, +0.0000017803,0.0000017743,0.0000017664,0.0000017596,0.0000017548, +0.0000017517,0.0000017489,0.0000017460,0.0000017441,0.0000017449, +0.0000017485,0.0000017536,0.0000017593,0.0000017656,0.0000017714, +0.0000017764,0.0000017814,0.0000017849,0.0000017880,0.0000017886, +0.0000017887,0.0000017869,0.0000017835,0.0000017784,0.0000017720, +0.0000017638,0.0000017545,0.0000017466,0.0000017391,0.0000017330, +0.0000017295,0.0000017293,0.0000017321,0.0000017376,0.0000017437, +0.0000017509,0.0000017592,0.0000017666,0.0000017719,0.0000017725, +0.0000017712,0.0000017642,0.0000017551,0.0000017452,0.0000017351, +0.0000017258,0.0000017184,0.0000017148,0.0000017134,0.0000017207, +0.0000017333,0.0000017490,0.0000017653,0.0000017798,0.0000017899, +0.0000017950,0.0000018004,0.0000018133,0.0000018363,0.0000018633, +0.0000018841,0.0000018952,0.0000018990,0.0000019025,0.0000019056, +0.0000019082,0.0000019090,0.0000019073,0.0000019021,0.0000018929, +0.0000018731,0.0000018420,0.0000018062,0.0000017764,0.0000017563, +0.0000017440,0.0000017358,0.0000017291,0.0000017220,0.0000017136, +0.0000017061,0.0000016994,0.0000016953,0.0000016913,0.0000016879, +0.0000016902,0.0000017003,0.0000017185,0.0000017413,0.0000017672, +0.0000017905,0.0000017988,0.0000017935,0.0000017804,0.0000017672, +0.0000017572,0.0000017462,0.0000017428,0.0000017446,0.0000017474, +0.0000017544,0.0000017669,0.0000017790,0.0000017827,0.0000017864, +0.0000017796,0.0000017652,0.0000017675,0.0000017732,0.0000017754, +0.0000017851,0.0000017989,0.0000018075,0.0000018108,0.0000018087, +0.0000018037,0.0000017996,0.0000017981,0.0000017977,0.0000017962, +0.0000017936,0.0000017922,0.0000017942,0.0000017989,0.0000018027, +0.0000018062,0.0000018065,0.0000018045,0.0000017999,0.0000017974, +0.0000017975,0.0000017963,0.0000017881,0.0000017791,0.0000017764, +0.0000017774,0.0000017742,0.0000017746,0.0000017748,0.0000017752, +0.0000017773,0.0000017785,0.0000017780,0.0000017752,0.0000017708, +0.0000017667,0.0000017666,0.0000017696,0.0000017725,0.0000017743, +0.0000017766,0.0000017782,0.0000017797,0.0000017810,0.0000017813, +0.0000017803,0.0000017793,0.0000017811,0.0000017853,0.0000017906, +0.0000017979,0.0000018051,0.0000018065,0.0000018022,0.0000018026, +0.0000018103,0.0000018167,0.0000018256,0.0000018401,0.0000018498, +0.0000018617,0.0000018774,0.0000018773,0.0000018663,0.0000018598, +0.0000018541,0.0000018462,0.0000018432,0.0000018428,0.0000018324, +0.0000018135,0.0000018100,0.0000018246,0.0000018331,0.0000018335, +0.0000018331,0.0000018339,0.0000018356,0.0000018293,0.0000018080, +0.0000017916,0.0000017936,0.0000017992,0.0000017980,0.0000018004, +0.0000018126,0.0000018252,0.0000018333,0.0000018429,0.0000018563, +0.0000018681,0.0000018750,0.0000018794,0.0000018840,0.0000018891, +0.0000018932,0.0000018960,0.0000018974,0.0000018974,0.0000018962, +0.0000018950,0.0000018942,0.0000018937,0.0000018929,0.0000018911, +0.0000018878,0.0000018844,0.0000018848,0.0000018897,0.0000018894, +0.0000018727,0.0000018450,0.0000018144,0.0000017906,0.0000017818, +0.0000017726,0.0000017632,0.0000017630,0.0000017688,0.0000017726, +0.0000017734,0.0000017740,0.0000017751,0.0000017756,0.0000017733, +0.0000017720,0.0000017842,0.0000018069,0.0000018173,0.0000018123, +0.0000018063,0.0000018207,0.0000018486,0.0000018626,0.0000018639, +0.0000018656,0.0000018735,0.0000018772,0.0000018746,0.0000018723, +0.0000018718,0.0000018684,0.0000018653,0.0000018648,0.0000018595, +0.0000018496,0.0000018436,0.0000018402,0.0000018326,0.0000018204, +0.0000018066,0.0000017983,0.0000017962,0.0000017921,0.0000017845, +0.0000017771,0.0000017706,0.0000017647,0.0000017616,0.0000017630, +0.0000017705,0.0000017761,0.0000017746,0.0000017736,0.0000017798, +0.0000017845,0.0000017849,0.0000017867,0.0000017911,0.0000017961, +0.0000017990,0.0000018007,0.0000018019,0.0000018025,0.0000018029, +0.0000018052,0.0000018084,0.0000018105,0.0000018134,0.0000018160, +0.0000018209,0.0000018250,0.0000018291,0.0000018358,0.0000018463, +0.0000018646,0.0000018750,0.0000018867,0.0000019067,0.0000018731, +0.0000018044,0.0000017949,0.0000018059,0.0000018083,0.0000018057, +0.0000018030,0.0000018013,0.0000018002,0.0000017986,0.0000017962, +0.0000017936,0.0000017911,0.0000017896,0.0000017890,0.0000017923, +0.0000017987,0.0000018047,0.0000018065,0.0000018040,0.0000018006, +0.0000018001,0.0000018051,0.0000018144,0.0000018232,0.0000018281, +0.0000018297,0.0000018299,0.0000018300,0.0000018323,0.0000018368, +0.0000018421,0.0000018483,0.0000018564,0.0000018619,0.0000018569, +0.0000018339,0.0000018067,0.0000017915,0.0000017904,0.0000017935, +0.0000017979,0.0000018011,0.0000018007,0.0000017972,0.0000017948, +0.0000017972,0.0000018073,0.0000018202,0.0000018292,0.0000018340, +0.0000018385,0.0000018438,0.0000018477,0.0000018474,0.0000018429, +0.0000018360,0.0000018296,0.0000018259,0.0000018266,0.0000018282, +0.0000018291,0.0000018306,0.0000018320,0.0000018334,0.0000018352, +0.0000018371,0.0000018360,0.0000018281,0.0000018178,0.0000018192, +0.0000018399,0.0000018555,0.0000018509,0.0000018381,0.0000018345, +0.0000018404,0.0000018612,0.0000019016,0.0000019436,0.0000019648, +0.0000019722,0.0000019787,0.0000019826,0.0000019827,0.0000019807, +0.0000019770,0.0000019741,0.0000019718,0.0000019675,0.0000019601, +0.0000019521,0.0000019496,0.0000019574,0.0000019732,0.0000019830, +0.0000019776,0.0000019560,0.0000019321,0.0000019207,0.0000019242, +0.0000019507,0.0000019856,0.0000019998,0.0000019984,0.0000019957, +0.0000019862,0.0000019697,0.0000019574,0.0000019408,0.0000019185, +0.0000019111,0.0000019165,0.0000019339,0.0000019651,0.0000019968, +0.0000020191,0.0000020352,0.0000020351,0.0000020202,0.0000020139, +0.0000020202,0.0000020212,0.0000020120,0.0000020025,0.0000020055, +0.0000020205,0.0000020280,0.0000020268,0.0000020267,0.0000020275, +0.0000020233,0.0000020098,0.0000019928,0.0000019783,0.0000019661, +0.0000019609,0.0000019681,0.0000019897,0.0000020120,0.0000020211, +0.0000020171,0.0000019799,0.0000019196,0.0000018684,0.0000018325, +0.0000018110,0.0000018078,0.0000018260,0.0000018321,0.0000018242, +0.0000018095,0.0000018108,0.0000018215,0.0000018255,0.0000018208, +0.0000018116,0.0000017993,0.0000017883,0.0000017895,0.0000018044, +0.0000018122,0.0000018013,0.0000017946,0.0000018137,0.0000018411, +0.0000018447,0.0000018292,0.0000018141,0.0000018128,0.0000018230, +0.0000018393,0.0000018546,0.0000018636,0.0000018677,0.0000018729, +0.0000018803,0.0000018927,0.0000019065,0.0000019154,0.0000019179, +0.0000019103,0.0000018876,0.0000018509,0.0000018140,0.0000017914, +0.0000017891,0.0000017953,0.0000018101,0.0000018205,0.0000018244, +0.0000018296,0.0000018401,0.0000018483,0.0000018490,0.0000018467, +0.0000018463,0.0000018553,0.0000018889,0.0000019346,0.0000019610, +0.0000019667,0.0000019691,0.0000019712,0.0000019711,0.0000019703, +0.0000019692,0.0000019696,0.0000019748,0.0000019829,0.0000019897, +0.0000019915,0.0000019868,0.0000019726,0.0000019524,0.0000019319, +0.0000019155,0.0000019087,0.0000019085,0.0000019095,0.0000019028, +0.0000018861,0.0000018651,0.0000018463,0.0000018319,0.0000018229, +0.0000018223,0.0000018243,0.0000018265,0.0000018283,0.0000018298, +0.0000018297,0.0000018289,0.0000018291,0.0000018297,0.0000018324, +0.0000018402,0.0000018502,0.0000018621,0.0000018741,0.0000018863, +0.0000018982,0.0000019076,0.0000019142,0.0000019160,0.0000019171, +0.0000019138,0.0000019070,0.0000019012,0.0000018973,0.0000018947, +0.0000018926,0.0000018922,0.0000018935,0.0000018935,0.0000018920, +0.0000018905,0.0000018897,0.0000018894,0.0000018898,0.0000018904, +0.0000018917,0.0000018930,0.0000018943,0.0000018964,0.0000019003, +0.0000019065,0.0000019142,0.0000019227,0.0000019303,0.0000019378, +0.0000019415,0.0000019437,0.0000019448,0.0000019464,0.0000019476, +0.0000019460,0.0000019459,0.0000019475,0.0000019498,0.0000019541, +0.0000019573,0.0000019598,0.0000019623,0.0000019638,0.0000019644, +0.0000019641,0.0000019625,0.0000019596,0.0000019559,0.0000019519, +0.0000019485,0.0000019441,0.0000019374,0.0000019290,0.0000019194, +0.0000019107,0.0000019068,0.0000019075,0.0000019064,0.0000019043, +0.0000019048,0.0000019100,0.0000019213,0.0000019390,0.0000019574, +0.0000019722,0.0000019866,0.0000019965,0.0000019980,0.0000019986, +0.0000019989,0.0000019983,0.0000019973,0.0000019967,0.0000019959, +0.0000019945,0.0000019925,0.0000019897,0.0000019855,0.0000019796, +0.0000019725,0.0000019650,0.0000019571,0.0000019511,0.0000019473, +0.0000019451,0.0000019444,0.0000019450,0.0000019468,0.0000019499, +0.0000019542,0.0000019581,0.0000019621,0.0000019685,0.0000019750, +0.0000019815,0.0000019872,0.0000019916,0.0000019939,0.0000019950, +0.0000019955,0.0000019962,0.0000019972,0.0000019967,0.0000019912, +0.0000019807,0.0000019703,0.0000019648,0.0000019638,0.0000019648, +0.0000019702,0.0000019793,0.0000019895,0.0000019982,0.0000020045, +0.0000020092,0.0000020128,0.0000020145,0.0000020140,0.0000020123, +0.0000020103,0.0000020099,0.0000020109,0.0000020122,0.0000020113, +0.0000020091,0.0000020083,0.0000020099,0.0000020122,0.0000020136, +0.0000020145,0.0000020151,0.0000020148,0.0000020139,0.0000020145, +0.0000020175,0.0000020215,0.0000020250,0.0000020273,0.0000020276, +0.0000020267,0.0000020256,0.0000020248,0.0000020249,0.0000020252, +0.0000020248,0.0000020231,0.0000020200,0.0000020158,0.0000020107, +0.0000020058,0.0000020011,0.0000019972,0.0000019941,0.0000019912, +0.0000019882,0.0000019852,0.0000019819,0.0000019787,0.0000019756, +0.0000019721,0.0000019674,0.0000019620,0.0000019578,0.0000019556, +0.0000019544,0.0000019532,0.0000019524,0.0000019530,0.0000019552, +0.0000019583,0.0000019604,0.0000019610,0.0000019606,0.0000019607, +0.0000019621,0.0000019646,0.0000019704,0.0000019754,0.0000019809, +0.0000019858,0.0000019888,0.0000019906,0.0000019901,0.0000019893, +0.0000019868,0.0000019819,0.0000019758,0.0000019704,0.0000019653, +0.0000019622,0.0000019613,0.0000019613,0.0000019604,0.0000019586, +0.0000019563,0.0000019531,0.0000019496,0.0000019463,0.0000019438, +0.0000019416,0.0000019408,0.0000019425,0.0000019475,0.0000019548, +0.0000019612,0.0000019639,0.0000019638,0.0000019613,0.0000019564, +0.0000019493,0.0000019431,0.0000019408,0.0000019420,0.0000019437, +0.0000019440,0.0000019443,0.0000019465,0.0000019509,0.0000019551, +0.0000019560,0.0000019546,0.0000019504,0.0000019464,0.0000019453, +0.0000019456,0.0000019445,0.0000019433,0.0000019466,0.0000019526, +0.0000019567,0.0000019569,0.0000019513,0.0000019404,0.0000019302, +0.0000019224,0.0000019148,0.0000019096,0.0000019058,0.0000019009, +0.0000019011,0.0000019057,0.0000019108,0.0000019146,0.0000019176, +0.0000019188,0.0000019163,0.0000019103,0.0000019049,0.0000019031, +0.0000019007,0.0000018956,0.0000018893,0.0000018828,0.0000018780, +0.0000018763,0.0000018750,0.0000018718,0.0000018669,0.0000018624, +0.0000018605,0.0000018608,0.0000018617,0.0000018627,0.0000018653, +0.0000018710,0.0000018781,0.0000018828,0.0000018831,0.0000018799, +0.0000018750,0.0000018707,0.0000018668,0.0000018645,0.0000018651, +0.0000018681,0.0000018703,0.0000018695,0.0000018668,0.0000018629, +0.0000018567,0.0000018479,0.0000018383,0.0000018305,0.0000018281, +0.0000018291,0.0000018310,0.0000018318,0.0000018302,0.0000018268, +0.0000018223,0.0000018190,0.0000018200,0.0000018233,0.0000018247, +0.0000018236,0.0000018204,0.0000018161,0.0000018117,0.0000018086, +0.0000018072,0.0000018067,0.0000018063,0.0000018060,0.0000018060, +0.0000018058,0.0000018042,0.0000017995,0.0000017927,0.0000017857, +0.0000017814,0.0000017788,0.0000017787,0.0000017788,0.0000017791, +0.0000017794,0.0000017810,0.0000017827,0.0000017826,0.0000017797, +0.0000017741,0.0000017677,0.0000017638,0.0000017617,0.0000017556, +0.0000017454,0.0000017383,0.0000017359,0.0000017331,0.0000017280, +0.0000017241,0.0000017212,0.0000017156,0.0000017106,0.0000017079, +0.0000017193,0.0000017599,0.0000018014,0.0000018199,0.0000018182, +0.0000018108,0.0000018045,0.0000017975,0.0000017920,0.0000017876, +0.0000017846,0.0000017815,0.0000017773,0.0000017730,0.0000017700, +0.0000017679,0.0000017662,0.0000017645,0.0000017636,0.0000017651, +0.0000017686,0.0000017727,0.0000017769,0.0000017805,0.0000017831, +0.0000017853,0.0000017866,0.0000017874,0.0000017874,0.0000017866, +0.0000017847,0.0000017821,0.0000017778,0.0000017714,0.0000017633, +0.0000017523,0.0000017396,0.0000017284,0.0000017172,0.0000017083, +0.0000017028,0.0000017016,0.0000017044,0.0000017094,0.0000017154, +0.0000017234,0.0000017330,0.0000017443,0.0000017566,0.0000017674, +0.0000017729,0.0000017719,0.0000017684,0.0000017608,0.0000017499, +0.0000017379,0.0000017255,0.0000017144,0.0000017101,0.0000017095, +0.0000017165,0.0000017280,0.0000017421,0.0000017581,0.0000017735, +0.0000017842,0.0000017902,0.0000017969,0.0000018108,0.0000018323, +0.0000018555,0.0000018752,0.0000018899,0.0000018999,0.0000019063, +0.0000019078,0.0000019053,0.0000018975,0.0000018829,0.0000018592, +0.0000018274,0.0000017955,0.0000017707,0.0000017546,0.0000017450, +0.0000017373,0.0000017305,0.0000017243,0.0000017193,0.0000017147, +0.0000017074,0.0000016990,0.0000016926,0.0000016885,0.0000016873, +0.0000016877,0.0000016933,0.0000017055,0.0000017250,0.0000017515, +0.0000017808,0.0000017978,0.0000017961,0.0000017817,0.0000017665, +0.0000017553,0.0000017444,0.0000017418,0.0000017439,0.0000017496, +0.0000017594,0.0000017735,0.0000017824,0.0000017846,0.0000017854, +0.0000017738,0.0000017651,0.0000017700,0.0000017724,0.0000017764, +0.0000017915,0.0000018064,0.0000018127,0.0000018098,0.0000018022, +0.0000017965,0.0000017938,0.0000017915,0.0000017876,0.0000017822, +0.0000017776,0.0000017768,0.0000017802,0.0000017865,0.0000017951, +0.0000018034,0.0000018076,0.0000018057,0.0000018000,0.0000017963, +0.0000017972,0.0000017979,0.0000017912,0.0000017804,0.0000017752, +0.0000017752,0.0000017730,0.0000017727,0.0000017723,0.0000017734, +0.0000017772,0.0000017810,0.0000017813,0.0000017788,0.0000017729, +0.0000017680,0.0000017671,0.0000017692,0.0000017707,0.0000017721, +0.0000017731,0.0000017748,0.0000017767,0.0000017775,0.0000017766, +0.0000017749,0.0000017750,0.0000017788,0.0000017848,0.0000017911, +0.0000017981,0.0000018025,0.0000018011,0.0000017974,0.0000018028, +0.0000018126,0.0000018193,0.0000018318,0.0000018449,0.0000018540, +0.0000018699,0.0000018791,0.0000018718,0.0000018616,0.0000018573, +0.0000018497,0.0000018434,0.0000018432,0.0000018404,0.0000018251, +0.0000018090,0.0000018129,0.0000018285,0.0000018344,0.0000018352, +0.0000018355,0.0000018352,0.0000018310,0.0000018121,0.0000017920, +0.0000017906,0.0000017973,0.0000017972,0.0000017961,0.0000018054, +0.0000018205,0.0000018309,0.0000018379,0.0000018490,0.0000018637, +0.0000018762,0.0000018834,0.0000018881,0.0000018922,0.0000018958, +0.0000018990,0.0000019009,0.0000019012,0.0000019005,0.0000018991, +0.0000018971,0.0000018944,0.0000018921,0.0000018903,0.0000018875, +0.0000018831,0.0000018811,0.0000018861,0.0000018895,0.0000018796, +0.0000018519,0.0000018199,0.0000017922,0.0000017810,0.0000017733, +0.0000017665,0.0000017677,0.0000017733,0.0000017758,0.0000017758, +0.0000017753,0.0000017752,0.0000017740,0.0000017698,0.0000017691, +0.0000017832,0.0000018066,0.0000018163,0.0000018099,0.0000018058, +0.0000018206,0.0000018468,0.0000018619,0.0000018645,0.0000018652, +0.0000018663,0.0000018680,0.0000018693,0.0000018689,0.0000018669, +0.0000018659,0.0000018657,0.0000018602,0.0000018499,0.0000018427, +0.0000018376,0.0000018280,0.0000018142,0.0000018013,0.0000017947, +0.0000017906,0.0000017824,0.0000017732,0.0000017658,0.0000017601, +0.0000017564,0.0000017556,0.0000017586,0.0000017649,0.0000017686, +0.0000017679,0.0000017709,0.0000017780,0.0000017807,0.0000017839, +0.0000017906,0.0000017953,0.0000017966,0.0000017972,0.0000017979, +0.0000017991,0.0000018001,0.0000018004,0.0000018014,0.0000018053, +0.0000018101,0.0000018168,0.0000018197,0.0000018229,0.0000018250, +0.0000018284,0.0000018370,0.0000018478,0.0000018630,0.0000018748, +0.0000018892,0.0000019040,0.0000018540,0.0000017982,0.0000018010, +0.0000018092,0.0000018089,0.0000018072,0.0000018079,0.0000018093, +0.0000018095,0.0000018077,0.0000018046,0.0000018009,0.0000017966, +0.0000017925,0.0000017879,0.0000017848,0.0000017846,0.0000017888, +0.0000017952,0.0000017989,0.0000017969,0.0000017924,0.0000017906, +0.0000017954,0.0000018060,0.0000018165,0.0000018217,0.0000018224, +0.0000018218,0.0000018223,0.0000018260,0.0000018335,0.0000018423, +0.0000018524,0.0000018605,0.0000018569,0.0000018338,0.0000018042, +0.0000017900,0.0000017905,0.0000017954,0.0000017996,0.0000018009, +0.0000017990,0.0000017951,0.0000017941,0.0000017995,0.0000018103, +0.0000018205,0.0000018270,0.0000018314,0.0000018352,0.0000018372, +0.0000018352,0.0000018305,0.0000018257,0.0000018238,0.0000018252, +0.0000018297,0.0000018348,0.0000018390,0.0000018414,0.0000018426, +0.0000018432,0.0000018431,0.0000018424,0.0000018411,0.0000018365, +0.0000018258,0.0000018181,0.0000018274,0.0000018615,0.0000018863, +0.0000018825,0.0000018621,0.0000018504,0.0000018567,0.0000018874, +0.0000019291,0.0000019592,0.0000019728,0.0000019827,0.0000019910, +0.0000019931,0.0000019942,0.0000019964,0.0000019932,0.0000019879, +0.0000019826,0.0000019785,0.0000019750,0.0000019720,0.0000019714, +0.0000019750,0.0000019833,0.0000019891,0.0000019862,0.0000019666, +0.0000019383,0.0000019219,0.0000019259,0.0000019555,0.0000019891, +0.0000020004,0.0000019999,0.0000019969,0.0000019819,0.0000019657, +0.0000019533,0.0000019307,0.0000019136,0.0000019139,0.0000019277, +0.0000019581,0.0000019940,0.0000020195,0.0000020361,0.0000020376, +0.0000020222,0.0000020150,0.0000020226,0.0000020244,0.0000020160, +0.0000020070,0.0000020098,0.0000020240,0.0000020304,0.0000020289, +0.0000020291,0.0000020295,0.0000020221,0.0000020057,0.0000019872, +0.0000019723,0.0000019613,0.0000019582,0.0000019721,0.0000019962, +0.0000020152,0.0000020198,0.0000020032,0.0000019509,0.0000018913, +0.0000018487,0.0000018187,0.0000018137,0.0000018251,0.0000018366, +0.0000018266,0.0000018047,0.0000017969,0.0000018063,0.0000018165, +0.0000018175,0.0000018113,0.0000018043,0.0000017946,0.0000017848, +0.0000017883,0.0000018037,0.0000018094,0.0000018012,0.0000018067, +0.0000018310,0.0000018422,0.0000018332,0.0000018144,0.0000018094, +0.0000018199,0.0000018374,0.0000018514,0.0000018588,0.0000018649, +0.0000018742,0.0000018895,0.0000019021,0.0000019048,0.0000019120, +0.0000019108,0.0000019034,0.0000018872,0.0000018586,0.0000018258, +0.0000017987,0.0000017928,0.0000017989,0.0000018114,0.0000018227, +0.0000018299,0.0000018365,0.0000018445,0.0000018487,0.0000018471, +0.0000018446,0.0000018442,0.0000018464,0.0000018658,0.0000019069, +0.0000019457,0.0000019603,0.0000019601,0.0000019596,0.0000019582, +0.0000019563,0.0000019542,0.0000019537,0.0000019585,0.0000019684, +0.0000019771,0.0000019779,0.0000019682,0.0000019496,0.0000019276, +0.0000019141,0.0000019103,0.0000019129,0.0000019106,0.0000018970, +0.0000018746,0.0000018511,0.0000018303,0.0000018161,0.0000018145, +0.0000018156,0.0000018183,0.0000018217,0.0000018247,0.0000018261, +0.0000018266,0.0000018271,0.0000018270,0.0000018285,0.0000018323, +0.0000018387,0.0000018481,0.0000018596,0.0000018721,0.0000018839, +0.0000018935,0.0000018991,0.0000019017,0.0000019026,0.0000019005, +0.0000018969,0.0000018942,0.0000018944,0.0000018933,0.0000018921, +0.0000018918,0.0000018916,0.0000018900,0.0000018897,0.0000018944, +0.0000018965,0.0000018964,0.0000018959,0.0000018956,0.0000018955, +0.0000018956,0.0000018966,0.0000018975,0.0000018979,0.0000018965, +0.0000018942,0.0000018935,0.0000018943,0.0000018994,0.0000019066, +0.0000019100,0.0000019158,0.0000019221,0.0000019289,0.0000019347, +0.0000019379,0.0000019397,0.0000019399,0.0000019387,0.0000019372, +0.0000019354,0.0000019353,0.0000019338,0.0000019324,0.0000019317, +0.0000019307,0.0000019294,0.0000019279,0.0000019249,0.0000019206, +0.0000019160,0.0000019124,0.0000019097,0.0000019096,0.0000019087, +0.0000019071,0.0000019048,0.0000019070,0.0000019105,0.0000019155, +0.0000019227,0.0000019320,0.0000019443,0.0000019564,0.0000019709, +0.0000019876,0.0000019942,0.0000019949,0.0000019957,0.0000019962, +0.0000019961,0.0000019950,0.0000019932,0.0000019911,0.0000019890, +0.0000019867,0.0000019838,0.0000019800,0.0000019753,0.0000019696, +0.0000019626,0.0000019560,0.0000019500,0.0000019462,0.0000019461, +0.0000019460,0.0000019466,0.0000019472,0.0000019481,0.0000019500, +0.0000019532,0.0000019578,0.0000019640,0.0000019717,0.0000019798, +0.0000019877,0.0000019943,0.0000019984,0.0000020003,0.0000020003, +0.0000019990,0.0000019973,0.0000019962,0.0000019966,0.0000019982, +0.0000019977,0.0000019927,0.0000019814,0.0000019716,0.0000019681, +0.0000019684,0.0000019707,0.0000019759,0.0000019845,0.0000019947, +0.0000020030,0.0000020088,0.0000020133,0.0000020149,0.0000020140, +0.0000020117,0.0000020103,0.0000020093,0.0000020091,0.0000020085, +0.0000020059,0.0000020025,0.0000020012,0.0000020032,0.0000020059, +0.0000020084,0.0000020113,0.0000020133,0.0000020138,0.0000020142, +0.0000020162,0.0000020199,0.0000020232,0.0000020249,0.0000020255, +0.0000020253,0.0000020250,0.0000020253,0.0000020262,0.0000020275, +0.0000020283,0.0000020275,0.0000020248,0.0000020204,0.0000020151, +0.0000020092,0.0000020035,0.0000019990,0.0000019953,0.0000019917, +0.0000019881,0.0000019846,0.0000019812,0.0000019781,0.0000019753, +0.0000019729,0.0000019707,0.0000019679,0.0000019640,0.0000019596, +0.0000019560,0.0000019530,0.0000019494,0.0000019456,0.0000019429, +0.0000019424,0.0000019439,0.0000019457,0.0000019464,0.0000019465, +0.0000019473,0.0000019499,0.0000019537,0.0000019590,0.0000019648, +0.0000019701,0.0000019757,0.0000019792,0.0000019814,0.0000019820, +0.0000019816,0.0000019810,0.0000019785,0.0000019745,0.0000019701, +0.0000019654,0.0000019617,0.0000019588,0.0000019572,0.0000019550, +0.0000019526,0.0000019501,0.0000019473,0.0000019446,0.0000019411, +0.0000019397,0.0000019391,0.0000019407,0.0000019453,0.0000019525, +0.0000019601,0.0000019652,0.0000019664,0.0000019649,0.0000019617, +0.0000019558,0.0000019491,0.0000019441,0.0000019440,0.0000019482, +0.0000019509,0.0000019510,0.0000019501,0.0000019500,0.0000019514, +0.0000019531,0.0000019532,0.0000019523,0.0000019501,0.0000019480, +0.0000019486,0.0000019498,0.0000019488,0.0000019461,0.0000019462, +0.0000019498,0.0000019542,0.0000019565,0.0000019563,0.0000019510, +0.0000019426,0.0000019336,0.0000019234,0.0000019146,0.0000019099, +0.0000019045,0.0000019014,0.0000019046,0.0000019099,0.0000019146, +0.0000019179,0.0000019211,0.0000019225,0.0000019189,0.0000019110, +0.0000019053,0.0000019025,0.0000018988,0.0000018936,0.0000018875, +0.0000018818,0.0000018793,0.0000018797,0.0000018805,0.0000018789, +0.0000018758,0.0000018727,0.0000018702,0.0000018680,0.0000018670, +0.0000018683,0.0000018729,0.0000018803,0.0000018873,0.0000018899, +0.0000018883,0.0000018834,0.0000018775,0.0000018727,0.0000018693, +0.0000018685,0.0000018701,0.0000018716,0.0000018707,0.0000018677, +0.0000018647,0.0000018615,0.0000018566,0.0000018486,0.0000018386, +0.0000018310,0.0000018290,0.0000018306,0.0000018330,0.0000018338, +0.0000018319,0.0000018270,0.0000018223,0.0000018221,0.0000018252, +0.0000018277,0.0000018277,0.0000018258,0.0000018229,0.0000018204, +0.0000018194,0.0000018197,0.0000018205,0.0000018208,0.0000018208, +0.0000018209,0.0000018208,0.0000018186,0.0000018126,0.0000018036, +0.0000017936,0.0000017850,0.0000017794,0.0000017759,0.0000017748, +0.0000017735,0.0000017735,0.0000017755,0.0000017793,0.0000017827, +0.0000017835,0.0000017803,0.0000017742,0.0000017683,0.0000017653, +0.0000017618,0.0000017531,0.0000017431,0.0000017382,0.0000017365, +0.0000017323,0.0000017268,0.0000017236,0.0000017194,0.0000017122, +0.0000017080,0.0000017096,0.0000017357,0.0000017802,0.0000018121, +0.0000018186,0.0000018154,0.0000018087,0.0000018022,0.0000017960, +0.0000017911,0.0000017878,0.0000017858,0.0000017838,0.0000017817, +0.0000017801,0.0000017787,0.0000017768,0.0000017749,0.0000017739, +0.0000017748,0.0000017769,0.0000017789,0.0000017812,0.0000017836, +0.0000017855,0.0000017868,0.0000017877,0.0000017877,0.0000017877, +0.0000017873,0.0000017860,0.0000017836,0.0000017791,0.0000017726, +0.0000017629,0.0000017500,0.0000017353,0.0000017209,0.0000017085, +0.0000016990,0.0000016931,0.0000016911,0.0000016920,0.0000016943, +0.0000016977,0.0000017032,0.0000017105,0.0000017207,0.0000017349, +0.0000017504,0.0000017630,0.0000017714,0.0000017744,0.0000017708, +0.0000017617,0.0000017487,0.0000017345,0.0000017215,0.0000017112, +0.0000017058,0.0000017046,0.0000017113,0.0000017214,0.0000017346, +0.0000017512,0.0000017673,0.0000017792,0.0000017865,0.0000017940, +0.0000018064,0.0000018239,0.0000018440,0.0000018621,0.0000018750, +0.0000018812,0.0000018804,0.0000018726,0.0000018574,0.0000018361, +0.0000018101,0.0000017858,0.0000017682,0.0000017565,0.0000017479, +0.0000017410,0.0000017340,0.0000017266,0.0000017208,0.0000017180, +0.0000017149,0.0000017079,0.0000016986,0.0000016922,0.0000016892, +0.0000016878,0.0000016886,0.0000016906,0.0000016977,0.0000017124, +0.0000017373,0.0000017695,0.0000017945,0.0000017947,0.0000017816, +0.0000017660,0.0000017535,0.0000017427,0.0000017406,0.0000017452, +0.0000017539,0.0000017657,0.0000017792,0.0000017844,0.0000017849, +0.0000017825,0.0000017717,0.0000017670,0.0000017695,0.0000017706, +0.0000017804,0.0000017998,0.0000018128,0.0000018127,0.0000018035, +0.0000017954,0.0000017900,0.0000017849,0.0000017807,0.0000017766, +0.0000017712,0.0000017673,0.0000017672,0.0000017694,0.0000017736, +0.0000017802,0.0000017923,0.0000018035,0.0000018052,0.0000017998, +0.0000017954,0.0000017968,0.0000017995,0.0000017958,0.0000017841, +0.0000017899,0.0000017791,0.0000017738,0.0000017725,0.0000017717, +0.0000017716,0.0000017750,0.0000017791,0.0000017811,0.0000017789, +0.0000017748,0.0000017707,0.0000017702,0.0000017711,0.0000017716, +0.0000017715,0.0000017725,0.0000017740,0.0000017748,0.0000017741, +0.0000017718,0.0000017695,0.0000017710,0.0000017771,0.0000017846, +0.0000017912,0.0000017967,0.0000017979,0.0000017938,0.0000017950, +0.0000018065,0.0000018154,0.0000018235,0.0000018384,0.0000018487, +0.0000018615,0.0000018788,0.0000018776,0.0000018654,0.0000018592, +0.0000018536,0.0000018462,0.0000018434,0.0000018438,0.0000018369, +0.0000018186,0.0000018075,0.0000018159,0.0000018317,0.0000018360, +0.0000018367,0.0000018367,0.0000018334,0.0000018168,0.0000017939, +0.0000017874,0.0000017940,0.0000017967,0.0000017951,0.0000018000, +0.0000018152,0.0000018294,0.0000018365,0.0000018429,0.0000018552, +0.0000018707,0.0000018828,0.0000018891,0.0000018925,0.0000018954, +0.0000018984,0.0000019001,0.0000019007,0.0000019012,0.0000019012, +0.0000019002,0.0000018964,0.0000018924,0.0000018901,0.0000018880, +0.0000018839,0.0000018799,0.0000018818,0.0000018897,0.0000018841, +0.0000018593,0.0000018266,0.0000017952,0.0000017805,0.0000017735, +0.0000017686,0.0000017711,0.0000017752,0.0000017762,0.0000017754, +0.0000017743,0.0000017732,0.0000017704,0.0000017663,0.0000017675, +0.0000017843,0.0000018067,0.0000018142,0.0000018069,0.0000018047, +0.0000018186,0.0000018427,0.0000018592,0.0000018640,0.0000018653, +0.0000018665,0.0000018668,0.0000018665,0.0000018664,0.0000018665, +0.0000018649,0.0000018585,0.0000018488,0.0000018410,0.0000018334, +0.0000018213,0.0000018069,0.0000017964,0.0000017911,0.0000017842, +0.0000017728,0.0000017619,0.0000017547,0.0000017504,0.0000017491, +0.0000017501,0.0000017541,0.0000017595,0.0000017621,0.0000017630, +0.0000017686,0.0000017745,0.0000017783,0.0000017861,0.0000017932, +0.0000017940,0.0000017943,0.0000017967,0.0000017998,0.0000018021, +0.0000018032,0.0000018028,0.0000018007,0.0000018009,0.0000018030, +0.0000018087,0.0000018149,0.0000018186,0.0000018207,0.0000018246, +0.0000018349,0.0000018481,0.0000018614,0.0000018741,0.0000018897, +0.0000018976,0.0000018390,0.0000017984,0.0000018059,0.0000018112, +0.0000018106,0.0000018119,0.0000018159,0.0000018182,0.0000018177, +0.0000018164,0.0000018147,0.0000018123,0.0000018085,0.0000018034, +0.0000017973,0.0000017905,0.0000017845,0.0000017822,0.0000017837, +0.0000017890,0.0000017931,0.0000017916,0.0000017866,0.0000017842, +0.0000017901,0.0000018025,0.0000018122,0.0000018149,0.0000018146, +0.0000018141,0.0000018166,0.0000018247,0.0000018362,0.0000018492, +0.0000018587,0.0000018539,0.0000018278,0.0000017979,0.0000017876, +0.0000017903,0.0000017965,0.0000017997,0.0000017996,0.0000017971, +0.0000017947,0.0000017968,0.0000018052,0.0000018146,0.0000018207, +0.0000018247,0.0000018265,0.0000018257,0.0000018225,0.0000018186, +0.0000018179,0.0000018213,0.0000018285,0.0000018369,0.0000018446, +0.0000018494,0.0000018519,0.0000018526,0.0000018514,0.0000018493, +0.0000018477,0.0000018454,0.0000018415,0.0000018331,0.0000018214, +0.0000018178,0.0000018399,0.0000018837,0.0000019131,0.0000019122, +0.0000018943,0.0000018805,0.0000018858,0.0000019161,0.0000019496, +0.0000019690,0.0000019808,0.0000019896,0.0000019909,0.0000019870, +0.0000019889,0.0000019969,0.0000020031,0.0000020038,0.0000019979, +0.0000019902,0.0000019834,0.0000019796,0.0000019787,0.0000019804, +0.0000019850,0.0000019892,0.0000019887,0.0000019722,0.0000019431, +0.0000019240,0.0000019296,0.0000019621,0.0000019930,0.0000020026, +0.0000020030,0.0000019940,0.0000019751,0.0000019621,0.0000019435, +0.0000019197,0.0000019140,0.0000019226,0.0000019507,0.0000019898, +0.0000020191,0.0000020366,0.0000020389,0.0000020239,0.0000020156, +0.0000020241,0.0000020271,0.0000020188,0.0000020105,0.0000020136, +0.0000020271,0.0000020329,0.0000020312,0.0000020312,0.0000020306, +0.0000020204,0.0000020023,0.0000019835,0.0000019680,0.0000019576, +0.0000019581,0.0000019766,0.0000020024,0.0000020168,0.0000020164, +0.0000019816,0.0000019212,0.0000018677,0.0000018311,0.0000018155, +0.0000018211,0.0000018362,0.0000018319,0.0000018091,0.0000017920, +0.0000017947,0.0000018060,0.0000018115,0.0000018096,0.0000018066, +0.0000018034,0.0000017952,0.0000017868,0.0000017929,0.0000018064, +0.0000018071,0.0000018048,0.0000018203,0.0000018398,0.0000018370, +0.0000018198,0.0000018119,0.0000018182,0.0000018348,0.0000018473, +0.0000018536,0.0000018605,0.0000018764,0.0000018941,0.0000019048, +0.0000019036,0.0000018901,0.0000018778,0.0000018759,0.0000018770, +0.0000018723,0.0000018582,0.0000018392,0.0000018261,0.0000018238, +0.0000018284,0.0000018359,0.0000018422,0.0000018470,0.0000018494, +0.0000018473,0.0000018424,0.0000018408,0.0000018411,0.0000018418, +0.0000018510,0.0000018812,0.0000019230,0.0000019504,0.0000019558, +0.0000019542,0.0000019512,0.0000019481,0.0000019445,0.0000019424, +0.0000019435,0.0000019492,0.0000019549,0.0000019539,0.0000019427, +0.0000019243,0.0000019113,0.0000019107,0.0000019155,0.0000019127, +0.0000018944,0.0000018675,0.0000018392,0.0000018183,0.0000018123, +0.0000018119,0.0000018124,0.0000018150,0.0000018179,0.0000018202, +0.0000018224,0.0000018243,0.0000018257,0.0000018266,0.0000018285, +0.0000018318,0.0000018373,0.0000018451,0.0000018555,0.0000018675, +0.0000018788,0.0000018869,0.0000018911,0.0000018927,0.0000018933, +0.0000018931,0.0000018933,0.0000018920,0.0000018929,0.0000018970, +0.0000019009,0.0000019035,0.0000019088,0.0000019147,0.0000019210, +0.0000019266,0.0000019316,0.0000019372,0.0000019408,0.0000019434, +0.0000019455,0.0000019466,0.0000019467,0.0000019460,0.0000019450, +0.0000019430,0.0000019405,0.0000019369,0.0000019330,0.0000019298, +0.0000019253,0.0000019224,0.0000019211,0.0000019199,0.0000019172, +0.0000019154,0.0000019173,0.0000019180,0.0000019180,0.0000019231, +0.0000019248,0.0000019239,0.0000019247,0.0000019251,0.0000019246, +0.0000019236,0.0000019223,0.0000019204,0.0000019179,0.0000019152, +0.0000019147,0.0000019141,0.0000019103,0.0000019077,0.0000019091, +0.0000019101,0.0000019132,0.0000019157,0.0000019200,0.0000019273, +0.0000019370,0.0000019489,0.0000019585,0.0000019694,0.0000019820, +0.0000019941,0.0000019936,0.0000019946,0.0000019948,0.0000019929, +0.0000019915,0.0000019903,0.0000019880,0.0000019841,0.0000019796, +0.0000019754,0.0000019719,0.0000019686,0.0000019650,0.0000019604, +0.0000019563,0.0000019516,0.0000019481,0.0000019482,0.0000019477, +0.0000019494,0.0000019531,0.0000019567,0.0000019592,0.0000019606, +0.0000019619,0.0000019643,0.0000019681,0.0000019732,0.0000019796, +0.0000019869,0.0000019943,0.0000020003,0.0000020043,0.0000020062, +0.0000020060,0.0000020044,0.0000020014,0.0000019991,0.0000019961, +0.0000019933,0.0000019929,0.0000019947,0.0000019957,0.0000019913, +0.0000019814,0.0000019727,0.0000019699,0.0000019711,0.0000019741, +0.0000019798,0.0000019883,0.0000019984,0.0000020064,0.0000020114, +0.0000020140,0.0000020136,0.0000020113,0.0000020090,0.0000020071, +0.0000020045,0.0000020014,0.0000019979,0.0000019951,0.0000019945, +0.0000019966,0.0000019995,0.0000020026,0.0000020069,0.0000020109, +0.0000020128,0.0000020146,0.0000020171,0.0000020207,0.0000020242, +0.0000020262,0.0000020263,0.0000020259,0.0000020255,0.0000020253, +0.0000020255,0.0000020257,0.0000020255,0.0000020237,0.0000020206, +0.0000020163,0.0000020114,0.0000020061,0.0000020001,0.0000019942, +0.0000019888,0.0000019842,0.0000019806,0.0000019777,0.0000019750, +0.0000019727,0.0000019709,0.0000019692,0.0000019679,0.0000019669, +0.0000019659,0.0000019647,0.0000019629,0.0000019608,0.0000019581, +0.0000019546,0.0000019513,0.0000019494,0.0000019494,0.0000019501, +0.0000019498,0.0000019488,0.0000019486,0.0000019505,0.0000019540, +0.0000019579,0.0000019634,0.0000019678,0.0000019726,0.0000019765, +0.0000019788,0.0000019796,0.0000019792,0.0000019787,0.0000019780, +0.0000019754,0.0000019715,0.0000019672,0.0000019634,0.0000019597, +0.0000019568,0.0000019537,0.0000019514,0.0000019492,0.0000019470, +0.0000019462,0.0000019446,0.0000019440,0.0000019455,0.0000019487, +0.0000019540,0.0000019607,0.0000019663,0.0000019693,0.0000019690, +0.0000019663,0.0000019614,0.0000019558,0.0000019508,0.0000019493, +0.0000019523,0.0000019577,0.0000019593,0.0000019577,0.0000019558, +0.0000019551,0.0000019548,0.0000019539,0.0000019529,0.0000019520, +0.0000019510,0.0000019512,0.0000019534,0.0000019551,0.0000019542, +0.0000019511,0.0000019489,0.0000019491,0.0000019510,0.0000019531, +0.0000019552,0.0000019544,0.0000019510,0.0000019443,0.0000019351, +0.0000019248,0.0000019180,0.0000019128,0.0000019072,0.0000019055, +0.0000019091,0.0000019142,0.0000019177,0.0000019208,0.0000019238, +0.0000019242,0.0000019187,0.0000019103,0.0000019048,0.0000019007, +0.0000018957,0.0000018908,0.0000018865,0.0000018835,0.0000018842, +0.0000018869,0.0000018882,0.0000018873,0.0000018854,0.0000018824, +0.0000018779,0.0000018737,0.0000018723,0.0000018745,0.0000018804, +0.0000018883,0.0000018936,0.0000018947,0.0000018917,0.0000018857, +0.0000018795,0.0000018747,0.0000018727,0.0000018733,0.0000018744, +0.0000018729,0.0000018687,0.0000018644,0.0000018617,0.0000018598, +0.0000018560,0.0000018481,0.0000018388,0.0000018326,0.0000018313, +0.0000018336,0.0000018360,0.0000018365,0.0000018332,0.0000018279, +0.0000018257,0.0000018272,0.0000018288,0.0000018290,0.0000018277, +0.0000018256,0.0000018241,0.0000018242,0.0000018255,0.0000018262, +0.0000018263,0.0000018265,0.0000018282,0.0000018297,0.0000018295, +0.0000018257,0.0000018184,0.0000018093,0.0000017992,0.0000017900, +0.0000017830,0.0000017770,0.0000017730,0.0000017701,0.0000017696, +0.0000017734,0.0000017791,0.0000017828,0.0000017825,0.0000017791, +0.0000017731,0.0000017688,0.0000017667,0.0000017615,0.0000017505, +0.0000017415,0.0000017392,0.0000017376,0.0000017319,0.0000017259, +0.0000017223,0.0000017153,0.0000017094,0.0000017060,0.0000017169, +0.0000017549,0.0000017955,0.0000018177,0.0000018191,0.0000018129, +0.0000018067,0.0000018004,0.0000017950,0.0000017910,0.0000017886, +0.0000017870,0.0000017854,0.0000017837,0.0000017818,0.0000017796, +0.0000017777,0.0000017770,0.0000017784,0.0000017805,0.0000017826, +0.0000017851,0.0000017880,0.0000017901,0.0000017911,0.0000017914, +0.0000017916,0.0000017919,0.0000017915,0.0000017900,0.0000017866, +0.0000017812,0.0000017720,0.0000017597,0.0000017448,0.0000017282, +0.0000017138,0.0000017033,0.0000016968,0.0000016928,0.0000016906, +0.0000016902,0.0000016901,0.0000016912,0.0000016938,0.0000016978, +0.0000017051,0.0000017167,0.0000017316,0.0000017486,0.0000017639, +0.0000017726,0.0000017740,0.0000017686,0.0000017572,0.0000017444, +0.0000017318,0.0000017170,0.0000017029,0.0000016987,0.0000017015, +0.0000017075,0.0000017163,0.0000017296,0.0000017473,0.0000017646, +0.0000017762,0.0000017835,0.0000017909,0.0000018021,0.0000018158, +0.0000018291,0.0000018381,0.0000018411,0.0000018380,0.0000018282, +0.0000018146,0.0000017981,0.0000017821,0.0000017698,0.0000017600, +0.0000017517,0.0000017442,0.0000017376,0.0000017310,0.0000017243, +0.0000017190,0.0000017162,0.0000017129,0.0000017059,0.0000016982, +0.0000016936,0.0000016915,0.0000016901,0.0000016905,0.0000016927, +0.0000016943,0.0000017037,0.0000017246,0.0000017569,0.0000017860, +0.0000017943,0.0000017817,0.0000017653,0.0000017511,0.0000017401, +0.0000017400,0.0000017493,0.0000017593,0.0000017718,0.0000017834, +0.0000017848,0.0000017849,0.0000017818,0.0000017706,0.0000017663, +0.0000017670,0.0000017709,0.0000017874,0.0000018076,0.0000018157, +0.0000018088,0.0000017974,0.0000017892,0.0000017824,0.0000017789, +0.0000017773,0.0000017736,0.0000017689,0.0000017664,0.0000017668, +0.0000017671,0.0000017677,0.0000017704,0.0000017815,0.0000017966, +0.0000018031,0.0000017997,0.0000017943,0.0000017962,0.0000018015, +0.0000018008,0.0000018046,0.0000017973,0.0000017865,0.0000017792, +0.0000017748,0.0000017716,0.0000017710,0.0000017730,0.0000017762, +0.0000017777,0.0000017766,0.0000017734,0.0000017720,0.0000017729, +0.0000017738,0.0000017740,0.0000017740,0.0000017749,0.0000017754, +0.0000017749,0.0000017725,0.0000017692,0.0000017679,0.0000017705, +0.0000017777,0.0000017847,0.0000017900,0.0000017929,0.0000017921, +0.0000017908,0.0000017991,0.0000018112,0.0000018186,0.0000018315, +0.0000018444,0.0000018540,0.0000018725,0.0000018806,0.0000018707, +0.0000018606,0.0000018567,0.0000018497,0.0000018436,0.0000018436, +0.0000018429,0.0000018326,0.0000018141,0.0000018062,0.0000018188, +0.0000018341,0.0000018373,0.0000018373,0.0000018360,0.0000018224, +0.0000017975,0.0000017857,0.0000017896,0.0000017963,0.0000017955, +0.0000017971,0.0000018097,0.0000018264,0.0000018363,0.0000018408, +0.0000018481,0.0000018614,0.0000018758,0.0000018851,0.0000018893, +0.0000018920,0.0000018942,0.0000018955,0.0000018960,0.0000018971, +0.0000018996,0.0000019009,0.0000018984,0.0000018941,0.0000018910, +0.0000018891,0.0000018855,0.0000018797,0.0000018785,0.0000018871, +0.0000018876,0.0000018665,0.0000018337,0.0000017993,0.0000017804, +0.0000017734,0.0000017704,0.0000017733,0.0000017753,0.0000017743, +0.0000017715,0.0000017695,0.0000017677,0.0000017647,0.0000017630, +0.0000017680,0.0000017872,0.0000018069,0.0000018117,0.0000018044, +0.0000018040,0.0000018158,0.0000018371,0.0000018546,0.0000018624, +0.0000018648,0.0000018655,0.0000018659,0.0000018662,0.0000018656, +0.0000018618,0.0000018542,0.0000018452,0.0000018370,0.0000018269, +0.0000018131,0.0000018000,0.0000017922,0.0000017864,0.0000017761, +0.0000017625,0.0000017513,0.0000017443,0.0000017413,0.0000017407, +0.0000017422,0.0000017470,0.0000017529,0.0000017561,0.0000017591, +0.0000017659,0.0000017720,0.0000017793,0.0000017882,0.0000017912, +0.0000017927,0.0000017972,0.0000018029,0.0000018075,0.0000018101, +0.0000018110,0.0000018105,0.0000018079,0.0000018041,0.0000018019, +0.0000018026,0.0000018060,0.0000018099,0.0000018125,0.0000018178, +0.0000018303,0.0000018468,0.0000018601,0.0000018727,0.0000018890, +0.0000018923,0.0000018304,0.0000017984,0.0000018090,0.0000018131, +0.0000018140,0.0000018181,0.0000018226,0.0000018244,0.0000018256, +0.0000018269,0.0000018263,0.0000018232,0.0000018204,0.0000018156, +0.0000018111,0.0000018040,0.0000017951,0.0000017863,0.0000017810, +0.0000017802,0.0000017851,0.0000017895,0.0000017875,0.0000017817, +0.0000017816,0.0000017897,0.0000018013,0.0000018069,0.0000018073, +0.0000018072,0.0000018098,0.0000018177,0.0000018304,0.0000018460, +0.0000018562,0.0000018482,0.0000018179,0.0000017905,0.0000017845, +0.0000017899,0.0000017962,0.0000017983,0.0000017971,0.0000017955, +0.0000017970,0.0000018032,0.0000018117,0.0000018175,0.0000018196, +0.0000018185,0.0000018149,0.0000018111,0.0000018091,0.0000018131, +0.0000018207,0.0000018307,0.0000018397,0.0000018456,0.0000018503, +0.0000018512,0.0000018506,0.0000018491,0.0000018472,0.0000018451, +0.0000018430,0.0000018399,0.0000018339,0.0000018239,0.0000018153, +0.0000018219,0.0000018570,0.0000019056,0.0000019333,0.0000019350, +0.0000019237,0.0000019119,0.0000019164,0.0000019397,0.0000019626, +0.0000019768,0.0000019867,0.0000019847,0.0000019659,0.0000019489, +0.0000019523,0.0000019723,0.0000019952,0.0000020088,0.0000020108, +0.0000020049,0.0000019958,0.0000019877,0.0000019828,0.0000019812, +0.0000019831,0.0000019873,0.0000019879,0.0000019742,0.0000019454, +0.0000019261,0.0000019353,0.0000019699,0.0000019976,0.0000020065, +0.0000020036,0.0000019861,0.0000019698,0.0000019550,0.0000019290, +0.0000019152,0.0000019192,0.0000019432,0.0000019843,0.0000020177, +0.0000020374,0.0000020403,0.0000020248,0.0000020159,0.0000020237, +0.0000020292,0.0000020211,0.0000020129,0.0000020166,0.0000020299, +0.0000020351,0.0000020334,0.0000020339,0.0000020314,0.0000020188, +0.0000019996,0.0000019808,0.0000019659,0.0000019570,0.0000019597, +0.0000019821,0.0000020061,0.0000020171,0.0000020068,0.0000019560, +0.0000018939,0.0000018473,0.0000018193,0.0000018174,0.0000018333, +0.0000018380,0.0000018171,0.0000017936,0.0000017892,0.0000017974, +0.0000018048,0.0000018070,0.0000018062,0.0000018066,0.0000018047, +0.0000017941,0.0000017881,0.0000017971,0.0000018076,0.0000018078, +0.0000018148,0.0000018346,0.0000018407,0.0000018254,0.0000018124, +0.0000018178,0.0000018329,0.0000018443,0.0000018494,0.0000018561, +0.0000018769,0.0000018995,0.0000019062,0.0000018952,0.0000018669, +0.0000018389,0.0000018276,0.0000018349,0.0000018511,0.0000018617, +0.0000018625,0.0000018571,0.0000018530,0.0000018529,0.0000018527, +0.0000018531,0.0000018523,0.0000018478,0.0000018406,0.0000018363, +0.0000018368,0.0000018398,0.0000018408,0.0000018437,0.0000018610, +0.0000018949,0.0000019299,0.0000019496,0.0000019537,0.0000019537, +0.0000019514,0.0000019464,0.0000019410,0.0000019382,0.0000019378, +0.0000019366,0.0000019311,0.0000019185,0.0000019087,0.0000019090, +0.0000019155,0.0000019160,0.0000018998,0.0000018686,0.0000018360, +0.0000018174,0.0000018132,0.0000018106,0.0000018115,0.0000018121, +0.0000018140,0.0000018167,0.0000018195,0.0000018218,0.0000018235, +0.0000018253,0.0000018282,0.0000018324,0.0000018381,0.0000018461, +0.0000018562,0.0000018668,0.0000018757,0.0000018826,0.0000018879, +0.0000018915,0.0000018928,0.0000018933,0.0000018946,0.0000018979, +0.0000019030,0.0000019110,0.0000019211,0.0000019308,0.0000019427, +0.0000019524,0.0000019627,0.0000019712,0.0000019794,0.0000019851, +0.0000019911,0.0000019932,0.0000019939,0.0000019957,0.0000019973, +0.0000019977,0.0000019973,0.0000019966,0.0000019952,0.0000019932, +0.0000019910,0.0000019892,0.0000019868,0.0000019831,0.0000019783, +0.0000019750,0.0000019722,0.0000019690,0.0000019648,0.0000019605, +0.0000019559,0.0000019503,0.0000019445,0.0000019410,0.0000019367, +0.0000019319,0.0000019285,0.0000019255,0.0000019232,0.0000019219, +0.0000019216,0.0000019210,0.0000019205,0.0000019202,0.0000019223, +0.0000019238,0.0000019250,0.0000019287,0.0000019348,0.0000019425, +0.0000019489,0.0000019565,0.0000019667,0.0000019778,0.0000019884, +0.0000019943,0.0000019947,0.0000019962,0.0000019963,0.0000019939, +0.0000019916,0.0000019894,0.0000019867,0.0000019831,0.0000019787, +0.0000019736,0.0000019678,0.0000019617,0.0000019568,0.0000019528, +0.0000019502,0.0000019478,0.0000019455,0.0000019462,0.0000019472, +0.0000019500,0.0000019550,0.0000019602,0.0000019652,0.0000019700, +0.0000019737,0.0000019758,0.0000019770,0.0000019781,0.0000019802, +0.0000019834,0.0000019876,0.0000019925,0.0000019982,0.0000020034, +0.0000020070,0.0000020094,0.0000020099,0.0000020083,0.0000020049, +0.0000020006,0.0000019977,0.0000019955,0.0000019919,0.0000019877, +0.0000019869,0.0000019896,0.0000019920,0.0000019892,0.0000019804, +0.0000019711,0.0000019674,0.0000019689,0.0000019728,0.0000019782, +0.0000019865,0.0000019961,0.0000020041,0.0000020093,0.0000020114, +0.0000020105,0.0000020079,0.0000020043,0.0000020005,0.0000019962, +0.0000019928,0.0000019917,0.0000019920,0.0000019924,0.0000019937, +0.0000019967,0.0000020031,0.0000020088,0.0000020123,0.0000020145, +0.0000020179,0.0000020228,0.0000020268,0.0000020281,0.0000020273, +0.0000020254,0.0000020231,0.0000020215,0.0000020214,0.0000020218, +0.0000020210,0.0000020189,0.0000020162,0.0000020130,0.0000020088, +0.0000020032,0.0000019967,0.0000019910,0.0000019870,0.0000019842, +0.0000019820,0.0000019807,0.0000019798,0.0000019790,0.0000019779, +0.0000019767,0.0000019753,0.0000019741,0.0000019730,0.0000019715, +0.0000019692,0.0000019668,0.0000019645,0.0000019620,0.0000019599, +0.0000019590,0.0000019595,0.0000019605,0.0000019604,0.0000019593, +0.0000019587,0.0000019596,0.0000019620,0.0000019648,0.0000019681, +0.0000019722,0.0000019756,0.0000019791,0.0000019809,0.0000019816, +0.0000019814,0.0000019809,0.0000019801,0.0000019786,0.0000019753, +0.0000019714,0.0000019688,0.0000019658,0.0000019631,0.0000019610, +0.0000019604,0.0000019606,0.0000019603,0.0000019606,0.0000019606, +0.0000019606,0.0000019610,0.0000019628,0.0000019655,0.0000019686, +0.0000019711,0.0000019715,0.0000019697,0.0000019668,0.0000019624, +0.0000019593,0.0000019590,0.0000019617,0.0000019651,0.0000019679, +0.0000019666,0.0000019633,0.0000019603,0.0000019587,0.0000019579, +0.0000019563,0.0000019545,0.0000019541,0.0000019541,0.0000019556, +0.0000019583,0.0000019593,0.0000019581,0.0000019552,0.0000019526, +0.0000019509,0.0000019501,0.0000019500,0.0000019518,0.0000019532, +0.0000019529,0.0000019508,0.0000019454,0.0000019377,0.0000019299, +0.0000019244,0.0000019185,0.0000019131,0.0000019118,0.0000019141, +0.0000019173,0.0000019197,0.0000019227,0.0000019250,0.0000019238, +0.0000019171,0.0000019096,0.0000019037,0.0000018971,0.0000018917, +0.0000018889,0.0000018881,0.0000018892,0.0000018931,0.0000018960, +0.0000018962,0.0000018952,0.0000018931,0.0000018886,0.0000018825, +0.0000018781,0.0000018770,0.0000018803,0.0000018872,0.0000018936, +0.0000018968,0.0000018967,0.0000018925,0.0000018862,0.0000018805, +0.0000018772,0.0000018766,0.0000018774,0.0000018764,0.0000018718, +0.0000018657,0.0000018610,0.0000018594,0.0000018588,0.0000018548, +0.0000018474,0.0000018395,0.0000018351,0.0000018353,0.0000018374, +0.0000018395,0.0000018387,0.0000018346,0.0000018314,0.0000018305, +0.0000018301,0.0000018296,0.0000018282,0.0000018264,0.0000018252, +0.0000018257,0.0000018267,0.0000018264,0.0000018257,0.0000018259, +0.0000018283,0.0000018313,0.0000018329,0.0000018321,0.0000018286, +0.0000018234,0.0000018158,0.0000018072,0.0000017982,0.0000017888, +0.0000017800,0.0000017721,0.0000017688,0.0000017700,0.0000017745, +0.0000017793,0.0000017812,0.0000017797,0.0000017754,0.0000017709, +0.0000017696,0.0000017684,0.0000017600,0.0000017484,0.0000017432, +0.0000017427,0.0000017383,0.0000017297,0.0000017239,0.0000017188, +0.0000017119,0.0000017059,0.0000017060,0.0000017305,0.0000017717, +0.0000018077,0.0000018192,0.0000018172,0.0000018112,0.0000018053, +0.0000017998,0.0000017955,0.0000017923,0.0000017902,0.0000017885, +0.0000017867,0.0000017849,0.0000017831,0.0000017820,0.0000017829, +0.0000017857,0.0000017883,0.0000017905,0.0000017931,0.0000017956, +0.0000017971,0.0000017973,0.0000017971,0.0000017968,0.0000017955, +0.0000017924,0.0000017884,0.0000017810,0.0000017709,0.0000017578, +0.0000017427,0.0000017274,0.0000017140,0.0000017052,0.0000017009, +0.0000016983,0.0000016958,0.0000016927,0.0000016903,0.0000016895, +0.0000016906,0.0000016920,0.0000016934,0.0000016973,0.0000017053, +0.0000017176,0.0000017344,0.0000017518,0.0000017656,0.0000017722, +0.0000017708,0.0000017638,0.0000017527,0.0000017396,0.0000017224, +0.0000017051,0.0000016957,0.0000016950,0.0000017000,0.0000017057, +0.0000017147,0.0000017297,0.0000017468,0.0000017612,0.0000017722, +0.0000017815,0.0000017906,0.0000017996,0.0000018072,0.0000018123, +0.0000018138,0.0000018105,0.0000018036,0.0000017939,0.0000017829, +0.0000017732,0.0000017643,0.0000017555,0.0000017468,0.0000017397, +0.0000017344,0.0000017291,0.0000017234,0.0000017184,0.0000017144, +0.0000017095,0.0000017030,0.0000016972,0.0000016945,0.0000016936, +0.0000016943,0.0000016949,0.0000016935,0.0000016930,0.0000016981, +0.0000017141,0.0000017441,0.0000017788,0.0000017903,0.0000017812, +0.0000017635,0.0000017467,0.0000017376,0.0000017432,0.0000017545, +0.0000017642,0.0000017771,0.0000017853,0.0000017853,0.0000017857, +0.0000017805,0.0000017685,0.0000017645,0.0000017660,0.0000017749, +0.0000017949,0.0000018137,0.0000018140,0.0000018033,0.0000017915, +0.0000017835,0.0000017797,0.0000017794,0.0000017789,0.0000017771, +0.0000017752,0.0000017733,0.0000017708,0.0000017681,0.0000017668, +0.0000017672,0.0000017745,0.0000017899,0.0000018000,0.0000017983, +0.0000017932,0.0000017958,0.0000018036,0.0000018029,0.0000018084, +0.0000018045,0.0000017964,0.0000017887,0.0000017804,0.0000017737, +0.0000017716,0.0000017731,0.0000017747,0.0000017750,0.0000017733, +0.0000017705,0.0000017701,0.0000017723,0.0000017739,0.0000017745, +0.0000017755,0.0000017758,0.0000017754,0.0000017738,0.0000017710, +0.0000017682,0.0000017684,0.0000017734,0.0000017795,0.0000017847, +0.0000017886,0.0000017905,0.0000017898,0.0000017936,0.0000018060, +0.0000018153,0.0000018243,0.0000018388,0.0000018483,0.0000018645, +0.0000018797,0.0000018759,0.0000018635,0.0000018589,0.0000018535, +0.0000018460,0.0000018431,0.0000018438,0.0000018412,0.0000018296, +0.0000018118,0.0000018057,0.0000018190,0.0000018352,0.0000018385, +0.0000018380,0.0000018274,0.0000018030,0.0000017853,0.0000017866, +0.0000017950,0.0000017970,0.0000017968,0.0000018044,0.0000018205, +0.0000018344,0.0000018404,0.0000018438,0.0000018516,0.0000018643, +0.0000018761,0.0000018826,0.0000018856,0.0000018871,0.0000018878, +0.0000018877,0.0000018884,0.0000018926,0.0000018973,0.0000018984, +0.0000018961,0.0000018924,0.0000018903,0.0000018875,0.0000018809, +0.0000018781,0.0000018866,0.0000018913,0.0000018727,0.0000018404, +0.0000018038,0.0000017806,0.0000017732,0.0000017720,0.0000017747, +0.0000017747,0.0000017709,0.0000017663,0.0000017633,0.0000017608, +0.0000017592,0.0000017606,0.0000017711,0.0000017907,0.0000018066, +0.0000018091,0.0000018025,0.0000018031,0.0000018126,0.0000018301, +0.0000018467,0.0000018571,0.0000018618,0.0000018633,0.0000018627, +0.0000018602,0.0000018547,0.0000018470,0.0000018383,0.0000018290, +0.0000018175,0.0000018048,0.0000017948,0.0000017877,0.0000017787, +0.0000017652,0.0000017516,0.0000017418,0.0000017358,0.0000017325, +0.0000017315,0.0000017328,0.0000017386,0.0000017459,0.0000017510, +0.0000017562,0.0000017632,0.0000017703,0.0000017802,0.0000017873, +0.0000017893,0.0000017955,0.0000018040,0.0000018096,0.0000018123, +0.0000018129,0.0000018129,0.0000018131,0.0000018134,0.0000018112, +0.0000018077,0.0000018046,0.0000018033,0.0000018039,0.0000018050, +0.0000018097,0.0000018236,0.0000018438,0.0000018589,0.0000018709, +0.0000018874,0.0000018898,0.0000018280,0.0000017986,0.0000018109, +0.0000018158,0.0000018183,0.0000018225,0.0000018267,0.0000018317, +0.0000018363,0.0000018361,0.0000018302,0.0000018236,0.0000018185, +0.0000018146,0.0000018133,0.0000018105,0.0000018059,0.0000017975, +0.0000017866,0.0000017792,0.0000017782,0.0000017833,0.0000017866, +0.0000017826,0.0000017782,0.0000017812,0.0000017912,0.0000017979, +0.0000017994,0.0000018007,0.0000018048,0.0000018124,0.0000018255, +0.0000018431,0.0000018520,0.0000018397,0.0000018059,0.0000017827, +0.0000017818,0.0000017896,0.0000017949,0.0000017954,0.0000017945, +0.0000017963,0.0000018025,0.0000018106,0.0000018157,0.0000018168, +0.0000018133,0.0000018066,0.0000018013,0.0000018017,0.0000018084, +0.0000018188,0.0000018291,0.0000018357,0.0000018387,0.0000018402, +0.0000018418,0.0000018434,0.0000018451,0.0000018431,0.0000018402, +0.0000018343,0.0000018297,0.0000018262,0.0000018205,0.0000018133, +0.0000018127,0.0000018320,0.0000018781,0.0000019234,0.0000019435, +0.0000019464,0.0000019434,0.0000019383,0.0000019413,0.0000019553, +0.0000019705,0.0000019832,0.0000019855,0.0000019624,0.0000019279, +0.0000019146,0.0000019188,0.0000019366,0.0000019663,0.0000019971, +0.0000020133,0.0000020149,0.0000020089,0.0000019997,0.0000019908, +0.0000019843,0.0000019824,0.0000019845,0.0000019854,0.0000019742, +0.0000019459,0.0000019291,0.0000019429,0.0000019786,0.0000020037, +0.0000020092,0.0000019980,0.0000019780,0.0000019646,0.0000019399, +0.0000019196,0.0000019176,0.0000019363,0.0000019774,0.0000020152, +0.0000020369,0.0000020421,0.0000020257,0.0000020142,0.0000020220, +0.0000020295,0.0000020234,0.0000020148,0.0000020189,0.0000020322, +0.0000020371,0.0000020357,0.0000020358,0.0000020325,0.0000020177, +0.0000019978,0.0000019800,0.0000019658,0.0000019587,0.0000019645, +0.0000019888,0.0000020103,0.0000020163,0.0000019953,0.0000019322, +0.0000018702,0.0000018292,0.0000018169,0.0000018254,0.0000018397, +0.0000018285,0.0000018025,0.0000017886,0.0000017913,0.0000017997, +0.0000018035,0.0000018053,0.0000018073,0.0000018079,0.0000018035, +0.0000017901,0.0000017876,0.0000018001,0.0000018078,0.0000018099, +0.0000018278,0.0000018436,0.0000018362,0.0000018183,0.0000018165, +0.0000018282,0.0000018410,0.0000018465,0.0000018530,0.0000018762, +0.0000019048,0.0000019130,0.0000018942,0.0000018561,0.0000018214, +0.0000018013,0.0000018038,0.0000018119,0.0000018266,0.0000018383, +0.0000018447,0.0000018467,0.0000018464,0.0000018457,0.0000018436, +0.0000018397,0.0000018348,0.0000018315,0.0000018314,0.0000018360, +0.0000018399,0.0000018408,0.0000018408,0.0000018467,0.0000018667, +0.0000018975,0.0000019273,0.0000019473,0.0000019567,0.0000019586, +0.0000019563,0.0000019493,0.0000019405,0.0000019330,0.0000019262, +0.0000019170,0.0000019078,0.0000019062,0.0000019151,0.0000019191, +0.0000019055,0.0000018736,0.0000018395,0.0000018243,0.0000018190, +0.0000018172,0.0000018134,0.0000018105,0.0000018105,0.0000018129, +0.0000018160,0.0000018184,0.0000018207,0.0000018234,0.0000018269, +0.0000018325,0.0000018410,0.0000018508,0.0000018601,0.0000018690, +0.0000018778,0.0000018850,0.0000018905,0.0000018936,0.0000018952, +0.0000018987,0.0000019051,0.0000019142,0.0000019250,0.0000019360, +0.0000019491,0.0000019617,0.0000019737,0.0000019846,0.0000019918, +0.0000019980,0.0000020027,0.0000020014,0.0000020041,0.0000020029, +0.0000020038,0.0000020021,0.0000019999,0.0000019992,0.0000019986, +0.0000019982,0.0000019978,0.0000019977,0.0000019974,0.0000019970, +0.0000019963,0.0000019954,0.0000019946,0.0000019930,0.0000019911, +0.0000019905,0.0000019909,0.0000019910,0.0000019888,0.0000019891, +0.0000019895,0.0000019901,0.0000019895,0.0000019874,0.0000019836, +0.0000019793,0.0000019743,0.0000019678,0.0000019619,0.0000019586, +0.0000019577,0.0000019578,0.0000019597,0.0000019625,0.0000019657, +0.0000019693,0.0000019732,0.0000019782,0.0000019845,0.0000019869, +0.0000019884,0.0000019916,0.0000019951,0.0000019956,0.0000019941, +0.0000019917,0.0000019898,0.0000019876,0.0000019857,0.0000019834, +0.0000019802,0.0000019760,0.0000019706,0.0000019654,0.0000019606, +0.0000019557,0.0000019504,0.0000019458,0.0000019447,0.0000019431, +0.0000019437,0.0000019465,0.0000019514,0.0000019573,0.0000019651, +0.0000019729,0.0000019777,0.0000019805,0.0000019820,0.0000019837, +0.0000019850,0.0000019857,0.0000019875,0.0000019904,0.0000019935, +0.0000019962,0.0000019983,0.0000020011,0.0000020036,0.0000020066, +0.0000020080,0.0000020090,0.0000020082,0.0000020032,0.0000019957, +0.0000019905,0.0000019894,0.0000019883,0.0000019845,0.0000019801, +0.0000019796,0.0000019834,0.0000019871,0.0000019859,0.0000019777, +0.0000019678,0.0000019623,0.0000019617,0.0000019651,0.0000019711, +0.0000019793,0.0000019880,0.0000019959,0.0000020021,0.0000020051, +0.0000020050,0.0000020025,0.0000019992,0.0000019969,0.0000019949, +0.0000019939,0.0000019933,0.0000019924,0.0000019918,0.0000019937, +0.0000020000,0.0000020070,0.0000020111,0.0000020139,0.0000020189, +0.0000020253,0.0000020284,0.0000020278,0.0000020250,0.0000020218, +0.0000020188,0.0000020175,0.0000020182,0.0000020186,0.0000020166, +0.0000020140,0.0000020124,0.0000020103,0.0000020058,0.0000020005, +0.0000019963,0.0000019935,0.0000019915,0.0000019901,0.0000019896, +0.0000019901,0.0000019904,0.0000019899,0.0000019890,0.0000019879, +0.0000019869,0.0000019861,0.0000019857,0.0000019850,0.0000019834, +0.0000019810,0.0000019778,0.0000019737,0.0000019695,0.0000019664, +0.0000019647,0.0000019638,0.0000019623,0.0000019605,0.0000019599, +0.0000019606,0.0000019626,0.0000019647,0.0000019671,0.0000019708, +0.0000019745,0.0000019775,0.0000019797,0.0000019808,0.0000019814, +0.0000019820,0.0000019819,0.0000019808,0.0000019792,0.0000019766, +0.0000019754,0.0000019745,0.0000019728,0.0000019724,0.0000019735, +0.0000019753,0.0000019764,0.0000019763,0.0000019755,0.0000019739, +0.0000019727,0.0000019719,0.0000019720,0.0000019721,0.0000019724, +0.0000019719,0.0000019706,0.0000019692,0.0000019685,0.0000019695, +0.0000019717,0.0000019742,0.0000019750,0.0000019733,0.0000019702, +0.0000019669,0.0000019636,0.0000019610,0.0000019598,0.0000019584, +0.0000019572,0.0000019578,0.0000019597,0.0000019622,0.0000019640, +0.0000019633,0.0000019609,0.0000019575,0.0000019544,0.0000019528, +0.0000019508,0.0000019493,0.0000019494,0.0000019504,0.0000019520, +0.0000019526,0.0000019515,0.0000019481,0.0000019422,0.0000019362, +0.0000019309,0.0000019252,0.0000019206,0.0000019180,0.0000019179, +0.0000019184,0.0000019200,0.0000019232,0.0000019248,0.0000019223, +0.0000019162,0.0000019087,0.0000018999,0.0000018919,0.0000018887, +0.0000018898,0.0000018929,0.0000018984,0.0000019031,0.0000019037, +0.0000019020,0.0000018999,0.0000018963,0.0000018905,0.0000018845, +0.0000018809,0.0000018812,0.0000018858,0.0000018921,0.0000018964, +0.0000018975,0.0000018960,0.0000018909,0.0000018858,0.0000018821, +0.0000018803,0.0000018800,0.0000018795,0.0000018762,0.0000018697, +0.0000018626,0.0000018593,0.0000018592,0.0000018579,0.0000018536, +0.0000018467,0.0000018413,0.0000018392,0.0000018395,0.0000018415, +0.0000018427,0.0000018410,0.0000018382,0.0000018355,0.0000018327, +0.0000018310,0.0000018291,0.0000018272,0.0000018263,0.0000018268, +0.0000018271,0.0000018259,0.0000018240,0.0000018240,0.0000018268, +0.0000018309,0.0000018333,0.0000018338,0.0000018328,0.0000018307, +0.0000018273,0.0000018218,0.0000018144,0.0000018047,0.0000017936, +0.0000017815,0.0000017734,0.0000017709,0.0000017732,0.0000017759, +0.0000017779,0.0000017775,0.0000017742,0.0000017705,0.0000017699, +0.0000017713,0.0000017688,0.0000017581,0.0000017499,0.0000017482, +0.0000017447,0.0000017355,0.0000017259,0.0000017213,0.0000017147, +0.0000017073,0.0000017028,0.0000017124,0.0000017452,0.0000017873, +0.0000018149,0.0000018186,0.0000018156,0.0000018104,0.0000018056, +0.0000018017,0.0000017985,0.0000017961,0.0000017942,0.0000017926, +0.0000017913,0.0000017904,0.0000017907,0.0000017929,0.0000017959, +0.0000017977,0.0000017988,0.0000018001,0.0000018018,0.0000018023, +0.0000018017,0.0000018005,0.0000017976,0.0000017924,0.0000017837, +0.0000017720,0.0000017579,0.0000017427,0.0000017284,0.0000017165, +0.0000017077,0.0000017026,0.0000017012,0.0000017017,0.0000017015, +0.0000016994,0.0000016946,0.0000016901,0.0000016893,0.0000016914, +0.0000016929,0.0000016928,0.0000016934,0.0000016994,0.0000017101, +0.0000017238,0.0000017404,0.0000017555,0.0000017666,0.0000017701, +0.0000017668,0.0000017561,0.0000017428,0.0000017260,0.0000017060, +0.0000016925,0.0000016908,0.0000016957,0.0000017005,0.0000017069, +0.0000017169,0.0000017290,0.0000017428,0.0000017571,0.0000017702, +0.0000017810,0.0000017896,0.0000017961,0.0000018003,0.0000018008, +0.0000017977,0.0000017910,0.0000017821,0.0000017741,0.0000017663, +0.0000017574,0.0000017484,0.0000017408,0.0000017355,0.0000017314, +0.0000017277,0.0000017232,0.0000017183,0.0000017131,0.0000017066, +0.0000017002,0.0000016960,0.0000016952,0.0000016970,0.0000016989, +0.0000016987,0.0000016960,0.0000016937,0.0000016948,0.0000017069, +0.0000017346,0.0000017708,0.0000017871,0.0000017787,0.0000017599, +0.0000017427,0.0000017403,0.0000017489,0.0000017587,0.0000017683, +0.0000017812,0.0000017872,0.0000017862,0.0000017859,0.0000017780, +0.0000017665,0.0000017646,0.0000017677,0.0000017801,0.0000018018, +0.0000018146,0.0000018122,0.0000017989,0.0000017875,0.0000017824, +0.0000017821,0.0000017836,0.0000017856,0.0000017861,0.0000017849, +0.0000017816,0.0000017774,0.0000017717,0.0000017674,0.0000017670, +0.0000017713,0.0000017853,0.0000017964,0.0000017965,0.0000017929, +0.0000017941,0.0000017932,0.0000018023,0.0000018104,0.0000018112, +0.0000018069,0.0000017992,0.0000017887,0.0000017798,0.0000017755, +0.0000017752,0.0000017757,0.0000017749,0.0000017715,0.0000017683, +0.0000017686,0.0000017703,0.0000017718,0.0000017728,0.0000017732, +0.0000017727,0.0000017714,0.0000017698,0.0000017677,0.0000017673, +0.0000017717,0.0000017771,0.0000017817,0.0000017858,0.0000017887, +0.0000017896,0.0000017912,0.0000018012,0.0000018118,0.0000018188, +0.0000018331,0.0000018442,0.0000018566,0.0000018763,0.0000018795, +0.0000018684,0.0000018604,0.0000018567,0.0000018496,0.0000018434, +0.0000018435,0.0000018441,0.0000018405,0.0000018287,0.0000018104, +0.0000018033,0.0000018161,0.0000018329,0.0000018374,0.0000018296, +0.0000018074,0.0000017870,0.0000017853,0.0000017943,0.0000017998, +0.0000017997,0.0000018028,0.0000018142,0.0000018293,0.0000018390, +0.0000018414,0.0000018442,0.0000018530,0.0000018651,0.0000018740, +0.0000018776,0.0000018786,0.0000018787,0.0000018780,0.0000018784, +0.0000018833,0.0000018914,0.0000018972,0.0000018976,0.0000018940, +0.0000018913,0.0000018894,0.0000018833,0.0000018783,0.0000018856, +0.0000018937,0.0000018776,0.0000018459,0.0000018079,0.0000017812, +0.0000017730,0.0000017730,0.0000017757,0.0000017740,0.0000017680, +0.0000017624,0.0000017587,0.0000017559,0.0000017557,0.0000017613, +0.0000017751,0.0000017926,0.0000018051,0.0000018056,0.0000017997, +0.0000018011,0.0000018086,0.0000018215,0.0000018348,0.0000018445, +0.0000018494,0.0000018499,0.0000018475,0.0000018424,0.0000018354, +0.0000018272,0.0000018178,0.0000018074,0.0000017978,0.0000017896, +0.0000017800,0.0000017667,0.0000017521,0.0000017407,0.0000017334, +0.0000017285,0.0000017248,0.0000017232,0.0000017249,0.0000017318, +0.0000017403,0.0000017470,0.0000017540,0.0000017617,0.0000017702, +0.0000017800,0.0000017852,0.0000017903,0.0000018007,0.0000018085, +0.0000018104,0.0000018107,0.0000018079,0.0000018060,0.0000018071, +0.0000018107,0.0000018133,0.0000018134,0.0000018109,0.0000018072, +0.0000018041,0.0000018028,0.0000018042,0.0000018163,0.0000018391, +0.0000018573,0.0000018690,0.0000018853,0.0000018896,0.0000018307, +0.0000017990,0.0000018119,0.0000018187,0.0000018216,0.0000018249, +0.0000018316,0.0000018408,0.0000018436,0.0000018346,0.0000018206, +0.0000018085,0.0000018000,0.0000017954,0.0000017949,0.0000017979, +0.0000018022,0.0000018033,0.0000017971,0.0000017847,0.0000017762, +0.0000017766,0.0000017824,0.0000017823,0.0000017770,0.0000017762, +0.0000017831,0.0000017889,0.0000017906,0.0000017934,0.0000017998, +0.0000018080,0.0000018212,0.0000018404,0.0000018476,0.0000018288, +0.0000017936,0.0000017766,0.0000017799,0.0000017886,0.0000017922, +0.0000017924,0.0000017944,0.0000018011,0.0000018104,0.0000018156, +0.0000018158,0.0000018103,0.0000018019,0.0000017962,0.0000017980, +0.0000018069,0.0000018184,0.0000018255,0.0000018273,0.0000018275, +0.0000018293,0.0000018352,0.0000018463,0.0000018567,0.0000018631, +0.0000018631,0.0000018571,0.0000018466,0.0000018349,0.0000018254, +0.0000018182,0.0000018146,0.0000018216,0.0000018538,0.0000019012, +0.0000019351,0.0000019466,0.0000019498,0.0000019522,0.0000019526, +0.0000019551,0.0000019632,0.0000019763,0.0000019863,0.0000019746, +0.0000019374,0.0000019127,0.0000019131,0.0000019181,0.0000019234, +0.0000019382,0.0000019706,0.0000020031,0.0000020175,0.0000020165, +0.0000020098,0.0000020009,0.0000019919,0.0000019855,0.0000019843, +0.0000019846,0.0000019734,0.0000019451,0.0000019326,0.0000019520, +0.0000019888,0.0000020101,0.0000020082,0.0000019879,0.0000019727, +0.0000019508,0.0000019255,0.0000019196,0.0000019306,0.0000019695, +0.0000020115,0.0000020356,0.0000020423,0.0000020268,0.0000020117, +0.0000020188,0.0000020301,0.0000020260,0.0000020173,0.0000020208, +0.0000020339,0.0000020390,0.0000020378,0.0000020376,0.0000020330, +0.0000020170,0.0000019966,0.0000019805,0.0000019681,0.0000019614, +0.0000019706,0.0000019959,0.0000020143,0.0000020168,0.0000019819, +0.0000019119,0.0000018504,0.0000018196,0.0000018218,0.0000018359, +0.0000018345,0.0000018138,0.0000017930,0.0000017887,0.0000017954, +0.0000018006,0.0000018041,0.0000018073,0.0000018096,0.0000018090, +0.0000017992,0.0000017847,0.0000017869,0.0000018022,0.0000018082, +0.0000018177,0.0000018398,0.0000018454,0.0000018308,0.0000018204, +0.0000018260,0.0000018364,0.0000018424,0.0000018495,0.0000018727, +0.0000019107,0.0000019200,0.0000019031,0.0000018611,0.0000018223, +0.0000018080,0.0000018022,0.0000018048,0.0000018109,0.0000018170, +0.0000018228,0.0000018250,0.0000018273,0.0000018279,0.0000018273, +0.0000018268,0.0000018274,0.0000018300,0.0000018345,0.0000018382, +0.0000018400,0.0000018391,0.0000018379,0.0000018385,0.0000018463, +0.0000018645,0.0000018913,0.0000019204,0.0000019448,0.0000019601, +0.0000019653,0.0000019617,0.0000019493,0.0000019345,0.0000019211, +0.0000019097,0.0000019057,0.0000019124,0.0000019218,0.0000019147, +0.0000018833,0.0000018457,0.0000018307,0.0000018266,0.0000018245, +0.0000018185,0.0000018126,0.0000018102,0.0000018102,0.0000018122, +0.0000018151,0.0000018185,0.0000018221,0.0000018271,0.0000018345, +0.0000018441,0.0000018551,0.0000018664,0.0000018762,0.0000018824, +0.0000018863,0.0000018886,0.0000018910,0.0000018968,0.0000019063, +0.0000019174,0.0000019312,0.0000019468,0.0000019623,0.0000019762, +0.0000019883,0.0000019966,0.0000020019,0.0000020054,0.0000020052, +0.0000020041,0.0000020040,0.0000020023,0.0000019992,0.0000019968, +0.0000019947,0.0000019927,0.0000019912,0.0000019901,0.0000019892, +0.0000019883,0.0000019877,0.0000019877,0.0000019881,0.0000019886, +0.0000019885,0.0000019879,0.0000019868,0.0000019856,0.0000019844, +0.0000019835,0.0000019827,0.0000019820,0.0000019814,0.0000019816, +0.0000019826,0.0000019844,0.0000019867,0.0000019879,0.0000019905, +0.0000019909,0.0000019911,0.0000019900,0.0000019880,0.0000019853, +0.0000019840,0.0000019840,0.0000019845,0.0000019857,0.0000019868, +0.0000019872,0.0000019867,0.0000019851,0.0000019837,0.0000019822, +0.0000019807,0.0000019797,0.0000019799,0.0000019799,0.0000019799, +0.0000019797,0.0000019783,0.0000019760,0.0000019733,0.0000019708, +0.0000019676,0.0000019640,0.0000019604,0.0000019586,0.0000019568, +0.0000019549,0.0000019524,0.0000019494,0.0000019480,0.0000019497, +0.0000019537,0.0000019597,0.0000019678,0.0000019747,0.0000019788, +0.0000019831,0.0000019839,0.0000019841,0.0000019849,0.0000019858, +0.0000019873,0.0000019893,0.0000019917,0.0000019944,0.0000019982, +0.0000019978,0.0000019991,0.0000019980,0.0000019981,0.0000019987, +0.0000020006,0.0000020030,0.0000020039,0.0000020014,0.0000019930, +0.0000019844,0.0000019806,0.0000019802,0.0000019789,0.0000019746, +0.0000019705,0.0000019704,0.0000019752,0.0000019809,0.0000019821, +0.0000019764,0.0000019675,0.0000019610,0.0000019579,0.0000019617, +0.0000019669,0.0000019736,0.0000019809,0.0000019882,0.0000019945, +0.0000019982,0.0000019995,0.0000019996,0.0000020002,0.0000020010, +0.0000020005,0.0000019982,0.0000019951,0.0000019929,0.0000019934, +0.0000019981,0.0000020049,0.0000020093,0.0000020130,0.0000020190, +0.0000020244,0.0000020263,0.0000020233,0.0000020188,0.0000020157, +0.0000020135,0.0000020135,0.0000020147,0.0000020142,0.0000020115, +0.0000020102,0.0000020099,0.0000020079,0.0000020036,0.0000019998, +0.0000019969,0.0000019937,0.0000019900,0.0000019867,0.0000019843, +0.0000019828,0.0000019815,0.0000019797,0.0000019771,0.0000019741, +0.0000019714,0.0000019697,0.0000019692,0.0000019692,0.0000019694, +0.0000019698,0.0000019702,0.0000019697,0.0000019688,0.0000019680, +0.0000019681,0.0000019680,0.0000019671,0.0000019655,0.0000019645, +0.0000019642,0.0000019644,0.0000019647,0.0000019653,0.0000019664, +0.0000019690,0.0000019705,0.0000019718,0.0000019730,0.0000019745, +0.0000019763,0.0000019778,0.0000019779,0.0000019773,0.0000019769, +0.0000019769,0.0000019774,0.0000019768,0.0000019769,0.0000019784, +0.0000019806,0.0000019816,0.0000019810,0.0000019791,0.0000019771, +0.0000019751,0.0000019739,0.0000019737,0.0000019737,0.0000019742, +0.0000019750,0.0000019755,0.0000019759,0.0000019774,0.0000019767, +0.0000019778,0.0000019769,0.0000019757,0.0000019730,0.0000019704, +0.0000019681,0.0000019656,0.0000019631,0.0000019619,0.0000019606, +0.0000019605,0.0000019629,0.0000019669,0.0000019705,0.0000019714, +0.0000019691,0.0000019648,0.0000019597,0.0000019554,0.0000019533, +0.0000019517,0.0000019500,0.0000019487,0.0000019489,0.0000019502, +0.0000019526,0.0000019543,0.0000019536,0.0000019501,0.0000019450, +0.0000019402,0.0000019365,0.0000019325,0.0000019275,0.0000019225, +0.0000019185,0.0000019172,0.0000019194,0.0000019229,0.0000019241, +0.0000019220,0.0000019150,0.0000019049,0.0000018940,0.0000018876, +0.0000018883,0.0000018929,0.0000019001,0.0000019080,0.0000019100, +0.0000019079,0.0000019043,0.0000019006,0.0000018957,0.0000018901, +0.0000018853,0.0000018837,0.0000018860,0.0000018908,0.0000018948, +0.0000018968,0.0000018966,0.0000018933,0.0000018896,0.0000018868, +0.0000018846,0.0000018828,0.0000018816,0.0000018798,0.0000018748, +0.0000018670,0.0000018614,0.0000018601,0.0000018596,0.0000018569, +0.0000018520,0.0000018475,0.0000018444,0.0000018430,0.0000018437, +0.0000018458,0.0000018461,0.0000018447,0.0000018415,0.0000018365, +0.0000018333,0.0000018310,0.0000018289,0.0000018283,0.0000018288, +0.0000018285,0.0000018262,0.0000018237,0.0000018237,0.0000018269, +0.0000018315,0.0000018342,0.0000018346,0.0000018338,0.0000018326, +0.0000018315,0.0000018296,0.0000018256,0.0000018183,0.0000018071, +0.0000017937,0.0000017829,0.0000017771,0.0000017754,0.0000017759, +0.0000017764,0.0000017749,0.0000017714,0.0000017679,0.0000017677, +0.0000017717,0.0000017733,0.0000017672,0.0000017579,0.0000017540, +0.0000017508,0.0000017420,0.0000017299,0.0000017223,0.0000017177, +0.0000017100,0.0000017023,0.0000017023,0.0000017218,0.0000017597, +0.0000017989,0.0000018173,0.0000018182,0.0000018152,0.0000018115, +0.0000018086,0.0000018064,0.0000018043,0.0000018025,0.0000018010, +0.0000017998,0.0000017991,0.0000017997,0.0000018016,0.0000018032, +0.0000018034,0.0000018027,0.0000018026,0.0000018034,0.0000018030, +0.0000017995,0.0000017932,0.0000017833,0.0000017702,0.0000017556, +0.0000017405,0.0000017255,0.0000017131,0.0000017047,0.0000017004, +0.0000016990,0.0000017000,0.0000017021,0.0000017041,0.0000017041, +0.0000017009,0.0000016946,0.0000016893,0.0000016887,0.0000016918, +0.0000016939,0.0000016924,0.0000016916,0.0000016965,0.0000017058, +0.0000017163,0.0000017305,0.0000017461,0.0000017602,0.0000017684, +0.0000017656,0.0000017551,0.0000017417,0.0000017265,0.0000017060, +0.0000016890,0.0000016868,0.0000016921,0.0000016975,0.0000017023, +0.0000017074,0.0000017152,0.0000017262,0.0000017400,0.0000017542, +0.0000017667,0.0000017765,0.0000017834,0.0000017861,0.0000017847, +0.0000017802,0.0000017733,0.0000017671,0.0000017605,0.0000017526, +0.0000017448,0.0000017381,0.0000017335,0.0000017310,0.0000017289, +0.0000017258,0.0000017223,0.0000017179,0.0000017115,0.0000017046, +0.0000016988,0.0000016964,0.0000016980,0.0000017012,0.0000017028, +0.0000017024,0.0000016991,0.0000016950,0.0000016954,0.0000017035, +0.0000017268,0.0000017618,0.0000017821,0.0000017755,0.0000017565, +0.0000017435,0.0000017437,0.0000017521,0.0000017611,0.0000017720, +0.0000017850,0.0000017881,0.0000017867,0.0000017851,0.0000017756, +0.0000017660,0.0000017659,0.0000017712,0.0000017859,0.0000018056, +0.0000018151,0.0000018098,0.0000017962,0.0000017870,0.0000017853, +0.0000017864,0.0000017893,0.0000017921,0.0000017928,0.0000017911, +0.0000017874,0.0000017828,0.0000017756,0.0000017694,0.0000017675, +0.0000017703,0.0000017828,0.0000017934,0.0000017957,0.0000017930, +0.0000017945,0.0000017940,0.0000018008,0.0000018109,0.0000018148, +0.0000018142,0.0000018075,0.0000017981,0.0000017893,0.0000017838, +0.0000017819,0.0000017813,0.0000017790,0.0000017740,0.0000017707, +0.0000017707,0.0000017721,0.0000017725,0.0000017725,0.0000017712, +0.0000017688,0.0000017665,0.0000017642,0.0000017636,0.0000017686, +0.0000017759,0.0000017807,0.0000017843,0.0000017870,0.0000017885, +0.0000017900,0.0000017978,0.0000018083,0.0000018148,0.0000018281, +0.0000018407,0.0000018502,0.0000018705,0.0000018805,0.0000018732, +0.0000018623,0.0000018594,0.0000018541,0.0000018462,0.0000018432, +0.0000018442,0.0000018444,0.0000018406,0.0000018292,0.0000018113, +0.0000018034,0.0000018093,0.0000018203,0.0000018203,0.0000018055, +0.0000017885,0.0000017850,0.0000017941,0.0000018028,0.0000018044, +0.0000018051,0.0000018109,0.0000018236,0.0000018356,0.0000018398, +0.0000018404,0.0000018453,0.0000018556,0.0000018653,0.0000018696, +0.0000018701,0.0000018695,0.0000018690,0.0000018697,0.0000018752, +0.0000018855,0.0000018952,0.0000018979,0.0000018956,0.0000018923, +0.0000018910,0.0000018852,0.0000018779,0.0000018851,0.0000018946, +0.0000018812,0.0000018502,0.0000018115,0.0000017823,0.0000017734, +0.0000017740,0.0000017768,0.0000017726,0.0000017645,0.0000017588, +0.0000017555,0.0000017536,0.0000017552,0.0000017638,0.0000017775, +0.0000017918,0.0000018004,0.0000017998,0.0000017943,0.0000017963, +0.0000018027,0.0000018105,0.0000018193,0.0000018259,0.0000018289, +0.0000018283,0.0000018251,0.0000018200,0.0000018135,0.0000018061, +0.0000017983,0.0000017900,0.0000017798,0.0000017664,0.0000017517, +0.0000017393,0.0000017310,0.0000017255,0.0000017211,0.0000017176, +0.0000017166,0.0000017198,0.0000017276,0.0000017366,0.0000017443, +0.0000017519,0.0000017607,0.0000017711,0.0000017801,0.0000017842, +0.0000017931,0.0000018046,0.0000018087,0.0000018084,0.0000018043, +0.0000017985,0.0000017952,0.0000017958,0.0000018004,0.0000018083, +0.0000018143,0.0000018150,0.0000018126,0.0000018083,0.0000018044, +0.0000018029,0.0000018105,0.0000018334,0.0000018552,0.0000018671, +0.0000018825,0.0000018906,0.0000018370,0.0000018014,0.0000018121, +0.0000018210,0.0000018235,0.0000018269,0.0000018386,0.0000018497, +0.0000018424,0.0000018219,0.0000018030,0.0000017887,0.0000017789, +0.0000017733,0.0000017719,0.0000017740,0.0000017807,0.0000017920, +0.0000017994,0.0000017937,0.0000017805,0.0000017738,0.0000017770, +0.0000017802,0.0000017767,0.0000017739,0.0000017772,0.0000017809, +0.0000017819,0.0000017855,0.0000017944,0.0000018039,0.0000018175, +0.0000018372,0.0000018419,0.0000018159,0.0000017817,0.0000017716, +0.0000017783,0.0000017861,0.0000017889,0.0000017916,0.0000017984, +0.0000018092,0.0000018179,0.0000018178,0.0000018103,0.0000017995, +0.0000017937,0.0000017976,0.0000018081,0.0000018179,0.0000018216, +0.0000018191,0.0000018157,0.0000018224,0.0000018373,0.0000018617, +0.0000018876,0.0000019076,0.0000019185,0.0000019206,0.0000019157, +0.0000019029,0.0000018842,0.0000018645,0.0000018497,0.0000018450, +0.0000018553,0.0000018864,0.0000019211,0.0000019408,0.0000019472, +0.0000019519,0.0000019563,0.0000019581,0.0000019603,0.0000019676, +0.0000019808,0.0000019851,0.0000019599,0.0000019228,0.0000019126, +0.0000019223,0.0000019303,0.0000019295,0.0000019294,0.0000019453, +0.0000019800,0.0000020100,0.0000020178,0.0000020153,0.0000020085, +0.0000020003,0.0000019915,0.0000019865,0.0000019854,0.0000019717, +0.0000019432,0.0000019358,0.0000019634,0.0000020000,0.0000020119, +0.0000019986,0.0000019804,0.0000019613,0.0000019324,0.0000019222, +0.0000019272,0.0000019613,0.0000020067,0.0000020335,0.0000020415, +0.0000020271,0.0000020108,0.0000020148,0.0000020278,0.0000020283, +0.0000020208,0.0000020230,0.0000020354,0.0000020410,0.0000020400, +0.0000020395,0.0000020332,0.0000020164,0.0000019956,0.0000019813, +0.0000019715,0.0000019655,0.0000019773,0.0000020030,0.0000020181, +0.0000020170,0.0000019692,0.0000018950,0.0000018357,0.0000018209, +0.0000018287,0.0000018353,0.0000018229,0.0000017983,0.0000017867, +0.0000017907,0.0000017981,0.0000018045,0.0000018081,0.0000018103, +0.0000018104,0.0000018083,0.0000017940,0.0000017792,0.0000017887, +0.0000018032,0.0000018090,0.0000018282,0.0000018477,0.0000018422, +0.0000018276,0.0000018283,0.0000018353,0.0000018385,0.0000018433, +0.0000018659,0.0000019042,0.0000019351,0.0000019215,0.0000018750, +0.0000018348,0.0000018189,0.0000018171,0.0000018175,0.0000018190, +0.0000018209,0.0000018225,0.0000018239,0.0000018260,0.0000018285, +0.0000018308,0.0000018330,0.0000018356,0.0000018375,0.0000018402, +0.0000018399,0.0000018377,0.0000018348,0.0000018325,0.0000018326, +0.0000018343,0.0000018430,0.0000018611,0.0000018884,0.0000019214, +0.0000019517,0.0000019701,0.0000019719,0.0000019599,0.0000019414, +0.0000019225,0.0000019097,0.0000019094,0.0000019188,0.0000019187, +0.0000018938,0.0000018536,0.0000018332,0.0000018316,0.0000018308, +0.0000018254,0.0000018179,0.0000018125,0.0000018107,0.0000018112, +0.0000018138,0.0000018167,0.0000018207,0.0000018273,0.0000018372, +0.0000018490,0.0000018610,0.0000018718,0.0000018789,0.0000018822, +0.0000018844,0.0000018861,0.0000018890,0.0000018976,0.0000019097, +0.0000019262,0.0000019447,0.0000019633,0.0000019804,0.0000019938, +0.0000020026,0.0000020073,0.0000020078,0.0000020074,0.0000020057, +0.0000020052,0.0000020048,0.0000020024,0.0000019998,0.0000019969, +0.0000019943,0.0000019915,0.0000019894,0.0000019881,0.0000019870, +0.0000019864,0.0000019862,0.0000019856,0.0000019853,0.0000019854, +0.0000019862,0.0000019871,0.0000019876,0.0000019873,0.0000019865, +0.0000019854,0.0000019841,0.0000019829,0.0000019817,0.0000019823, +0.0000019812,0.0000019801,0.0000019798,0.0000019796,0.0000019798, +0.0000019789,0.0000019789,0.0000019775,0.0000019776,0.0000019754, +0.0000019742,0.0000019723,0.0000019726,0.0000019736,0.0000019744, +0.0000019752,0.0000019746,0.0000019737,0.0000019722,0.0000019702, +0.0000019689,0.0000019672,0.0000019665,0.0000019665,0.0000019675, +0.0000019683,0.0000019682,0.0000019672,0.0000019647,0.0000019623, +0.0000019608,0.0000019607,0.0000019595,0.0000019593,0.0000019600, +0.0000019615,0.0000019633,0.0000019637,0.0000019632,0.0000019633, +0.0000019657,0.0000019705,0.0000019760,0.0000019805,0.0000019816, +0.0000019823,0.0000019813,0.0000019822,0.0000019828,0.0000019847, +0.0000019868,0.0000019892,0.0000019922,0.0000019927,0.0000019944, +0.0000019935,0.0000019927,0.0000019897,0.0000019873,0.0000019862, +0.0000019867,0.0000019895,0.0000019940,0.0000019979,0.0000019986, +0.0000019946,0.0000019854,0.0000019775,0.0000019740,0.0000019727, +0.0000019702,0.0000019654,0.0000019613,0.0000019615,0.0000019668, +0.0000019740,0.0000019783,0.0000019776,0.0000019735,0.0000019687, +0.0000019663,0.0000019677,0.0000019718,0.0000019771,0.0000019832, +0.0000019897,0.0000019950,0.0000019986,0.0000020011,0.0000020035, +0.0000020053,0.0000020053,0.0000020030,0.0000019993,0.0000019966, +0.0000019962,0.0000019988,0.0000020044,0.0000020086,0.0000020122, +0.0000020168,0.0000020206,0.0000020204,0.0000020162,0.0000020108, +0.0000020079,0.0000020063,0.0000020059,0.0000020069,0.0000020071, +0.0000020063,0.0000020070,0.0000020071,0.0000020046,0.0000020002, +0.0000019969,0.0000019936,0.0000019883,0.0000019831,0.0000019789, +0.0000019756,0.0000019727,0.0000019700,0.0000019680,0.0000019667, +0.0000019668,0.0000019684,0.0000019702,0.0000019718,0.0000019723, +0.0000019719,0.0000019709,0.0000019694,0.0000019681,0.0000019672, +0.0000019671,0.0000019675,0.0000019679,0.0000019678,0.0000019672, +0.0000019666,0.0000019665,0.0000019665,0.0000019666,0.0000019668, +0.0000019670,0.0000019675,0.0000019682,0.0000019682,0.0000019686, +0.0000019698,0.0000019716,0.0000019737,0.0000019751,0.0000019753, +0.0000019755,0.0000019765,0.0000019772,0.0000019773,0.0000019771, +0.0000019780,0.0000019800,0.0000019813,0.0000019808,0.0000019789, +0.0000019770,0.0000019749,0.0000019737,0.0000019738,0.0000019743, +0.0000019755,0.0000019769,0.0000019778,0.0000019771,0.0000019773, +0.0000019741,0.0000019724,0.0000019709,0.0000019698,0.0000019690, +0.0000019687,0.0000019684,0.0000019669,0.0000019653,0.0000019645, +0.0000019637,0.0000019649,0.0000019688,0.0000019736,0.0000019772, +0.0000019778,0.0000019746,0.0000019692,0.0000019627,0.0000019573, +0.0000019542,0.0000019527,0.0000019514,0.0000019498,0.0000019492, +0.0000019501,0.0000019524,0.0000019552,0.0000019555,0.0000019536, +0.0000019498,0.0000019456,0.0000019431,0.0000019416,0.0000019384, +0.0000019311,0.0000019223,0.0000019164,0.0000019154,0.0000019185, +0.0000019233,0.0000019242,0.0000019202,0.0000019111,0.0000018989, +0.0000018881,0.0000018859,0.0000018899,0.0000018989,0.0000019090, +0.0000019138,0.0000019131,0.0000019088,0.0000019038,0.0000018990, +0.0000018943,0.0000018900,0.0000018877,0.0000018883,0.0000018913, +0.0000018942,0.0000018958,0.0000018961,0.0000018945,0.0000018919, +0.0000018905,0.0000018890,0.0000018862,0.0000018833,0.0000018815, +0.0000018788,0.0000018726,0.0000018657,0.0000018626,0.0000018614, +0.0000018590,0.0000018555,0.0000018523,0.0000018494,0.0000018473, +0.0000018469,0.0000018488,0.0000018503,0.0000018500,0.0000018469, +0.0000018408,0.0000018367,0.0000018342,0.0000018321,0.0000018313, +0.0000018315,0.0000018306,0.0000018276,0.0000018250,0.0000018253, +0.0000018290,0.0000018336,0.0000018358,0.0000018355,0.0000018338, +0.0000018322,0.0000018317,0.0000018312,0.0000018300,0.0000018252, +0.0000018168,0.0000018056,0.0000017942,0.0000017857,0.0000017809, +0.0000017789,0.0000017772,0.0000017738,0.0000017690,0.0000017641, +0.0000017632,0.0000017682,0.0000017735,0.0000017719,0.0000017642, +0.0000017588,0.0000017559,0.0000017481,0.0000017356,0.0000017236, +0.0000017194,0.0000017128,0.0000017042,0.0000016999,0.0000017065, +0.0000017320,0.0000017717,0.0000018051,0.0000018180,0.0000018185, +0.0000018163,0.0000018142,0.0000018129,0.0000018117,0.0000018103, +0.0000018087,0.0000018069,0.0000018055,0.0000018051,0.0000018056, +0.0000018056,0.0000018041,0.0000018024,0.0000018003,0.0000017966, +0.0000017884,0.0000017766,0.0000017624,0.0000017474,0.0000017338, +0.0000017226,0.0000017131,0.0000017053,0.0000017003,0.0000016990, +0.0000016984,0.0000016998,0.0000017022,0.0000017047,0.0000017057, +0.0000017046,0.0000017001,0.0000016935,0.0000016880,0.0000016868, +0.0000016905,0.0000016939,0.0000016926,0.0000016907,0.0000016945, +0.0000017020,0.0000017105,0.0000017239,0.0000017384,0.0000017529, +0.0000017636,0.0000017619,0.0000017499,0.0000017374,0.0000017232, +0.0000017000,0.0000016828,0.0000016824,0.0000016888,0.0000016934, +0.0000016963,0.0000017010,0.0000017073,0.0000017154,0.0000017262, +0.0000017381,0.0000017492,0.0000017580,0.0000017630,0.0000017635, +0.0000017614,0.0000017568,0.0000017525,0.0000017472,0.0000017405, +0.0000017342,0.0000017296,0.0000017274,0.0000017271,0.0000017270, +0.0000017257,0.0000017233,0.0000017198,0.0000017153,0.0000017094, +0.0000017026,0.0000016980,0.0000016986,0.0000017022,0.0000017048, +0.0000017053,0.0000017043,0.0000017011,0.0000016976,0.0000016980, +0.0000017020,0.0000017199,0.0000017534,0.0000017769,0.0000017727, +0.0000017558,0.0000017445,0.0000017450,0.0000017538,0.0000017630, +0.0000017760,0.0000017873,0.0000017887,0.0000017868,0.0000017837, +0.0000017746,0.0000017676,0.0000017693,0.0000017758,0.0000017903, +0.0000018070,0.0000018132,0.0000018075,0.0000017962,0.0000017895, +0.0000017876,0.0000017888,0.0000017923,0.0000017960,0.0000017974, +0.0000017957,0.0000017915,0.0000017870,0.0000017788,0.0000017707, +0.0000017681,0.0000017712,0.0000017828,0.0000017919,0.0000017954, +0.0000017954,0.0000017968,0.0000017954,0.0000017990,0.0000018090, +0.0000018152,0.0000018151,0.0000018118,0.0000018054,0.0000017983, +0.0000017936,0.0000017918,0.0000017904,0.0000017861,0.0000017813, +0.0000017785,0.0000017784,0.0000017785,0.0000017778,0.0000017754, +0.0000017717,0.0000017670,0.0000017622,0.0000017591,0.0000017630, +0.0000017729,0.0000017799,0.0000017835,0.0000017856,0.0000017865, +0.0000017884,0.0000017954,0.0000018055,0.0000018114,0.0000018226, +0.0000018364,0.0000018450,0.0000018633,0.0000018814,0.0000018780, +0.0000018656,0.0000018612,0.0000018582,0.0000018514,0.0000018439, +0.0000018434,0.0000018459,0.0000018452,0.0000018408,0.0000018311, +0.0000018146,0.0000018022,0.0000018005,0.0000018019,0.0000017974, +0.0000017891,0.0000017875,0.0000017960,0.0000018059,0.0000018090, +0.0000018092,0.0000018110,0.0000018193,0.0000018313,0.0000018379, +0.0000018386,0.0000018415,0.0000018499,0.0000018592,0.0000018634, +0.0000018630,0.0000018615,0.0000018612,0.0000018629,0.0000018691, +0.0000018809,0.0000018931,0.0000018981,0.0000018968,0.0000018934, +0.0000018922,0.0000018867,0.0000018778,0.0000018850,0.0000018957, +0.0000018840,0.0000018535,0.0000018141,0.0000017832,0.0000017739, +0.0000017754,0.0000017768,0.0000017692,0.0000017583,0.0000017523, +0.0000017500,0.0000017500,0.0000017545,0.0000017644,0.0000017760, +0.0000017865,0.0000017918,0.0000017899,0.0000017843,0.0000017873, +0.0000017938,0.0000017986,0.0000018034,0.0000018069,0.0000018082, +0.0000018072,0.0000018045,0.0000018003,0.0000017944,0.0000017865, +0.0000017760,0.0000017630,0.0000017493,0.0000017376,0.0000017291, +0.0000017228,0.0000017173,0.0000017128,0.0000017106,0.0000017111, +0.0000017165,0.0000017250,0.0000017342,0.0000017424,0.0000017507, +0.0000017605,0.0000017722,0.0000017801,0.0000017845,0.0000017959, +0.0000018051,0.0000018065,0.0000018046,0.0000017993,0.0000017940, +0.0000017921,0.0000017922,0.0000017933,0.0000017994,0.0000018099, +0.0000018156,0.0000018156,0.0000018127,0.0000018081,0.0000018036, +0.0000018069,0.0000018280,0.0000018525,0.0000018656,0.0000018789, +0.0000018911,0.0000018452,0.0000018041,0.0000018120,0.0000018224, +0.0000018244,0.0000018299,0.0000018460,0.0000018515,0.0000018344, +0.0000018075,0.0000017873,0.0000017722,0.0000017626,0.0000017573, +0.0000017554,0.0000017565,0.0000017610,0.0000017700,0.0000017859, +0.0000017953,0.0000017880,0.0000017752,0.0000017735,0.0000017773, +0.0000017758,0.0000017720,0.0000017728,0.0000017748,0.0000017751, +0.0000017788,0.0000017893,0.0000018005,0.0000018153,0.0000018337, +0.0000018334,0.0000018020,0.0000017715,0.0000017672,0.0000017759, +0.0000017826,0.0000017868,0.0000017941,0.0000018062,0.0000018176, +0.0000018215,0.0000018147,0.0000018024,0.0000017960,0.0000017977, +0.0000018078,0.0000018150,0.0000018162,0.0000018120,0.0000018116, +0.0000018184,0.0000018436,0.0000018788,0.0000019126,0.0000019358, +0.0000019483,0.0000019554,0.0000019585,0.0000019581,0.0000019526, +0.0000019413,0.0000019248,0.0000019082,0.0000018999,0.0000019021, +0.0000019172,0.0000019337,0.0000019431,0.0000019494,0.0000019565, +0.0000019619,0.0000019636,0.0000019649,0.0000019722,0.0000019832, +0.0000019794,0.0000019466,0.0000019154,0.0000019168,0.0000019340, +0.0000019442,0.0000019422,0.0000019351,0.0000019356,0.0000019551, +0.0000019902,0.0000020133,0.0000020162,0.0000020113,0.0000020049, +0.0000019969,0.0000019900,0.0000019861,0.0000019683,0.0000019404, +0.0000019407,0.0000019778,0.0000020096,0.0000020080,0.0000019885, +0.0000019711,0.0000019405,0.0000019243,0.0000019263,0.0000019532, +0.0000020005,0.0000020305,0.0000020392,0.0000020285,0.0000020089, +0.0000020111,0.0000020239,0.0000020292,0.0000020246,0.0000020262, +0.0000020370,0.0000020429,0.0000020422,0.0000020403,0.0000020331, +0.0000020157,0.0000019948,0.0000019823,0.0000019761,0.0000019707, +0.0000019836,0.0000020091,0.0000020213,0.0000020161,0.0000019583, +0.0000018816,0.0000018274,0.0000018252,0.0000018359,0.0000018305, +0.0000018070,0.0000017876,0.0000017862,0.0000017934,0.0000018039, +0.0000018117,0.0000018151,0.0000018123,0.0000018094,0.0000018057, +0.0000017883,0.0000017749,0.0000017897,0.0000018020,0.0000018108, +0.0000018381,0.0000018489,0.0000018366,0.0000018287,0.0000018366, +0.0000018389,0.0000018388,0.0000018566,0.0000018950,0.0000019298, +0.0000019346,0.0000018942,0.0000018502,0.0000018328,0.0000018327, +0.0000018323,0.0000018295,0.0000018277,0.0000018267,0.0000018266, +0.0000018277,0.0000018300,0.0000018324,0.0000018346,0.0000018360, +0.0000018363,0.0000018360,0.0000018349,0.0000018332,0.0000018314, +0.0000018307,0.0000018297,0.0000018311,0.0000018364,0.0000018478, +0.0000018696,0.0000019045,0.0000019440,0.0000019710,0.0000019758, +0.0000019677,0.0000019482,0.0000019269,0.0000019144,0.0000019165, +0.0000019220,0.0000019039,0.0000018620,0.0000018332,0.0000018315, +0.0000018325,0.0000018307,0.0000018250,0.0000018191,0.0000018149, +0.0000018131,0.0000018133,0.0000018164,0.0000018219,0.0000018301, +0.0000018406,0.0000018526,0.0000018642,0.0000018720,0.0000018758, +0.0000018767,0.0000018762,0.0000018801,0.0000018854,0.0000018960, +0.0000019133,0.0000019341,0.0000019558,0.0000019751,0.0000019894, +0.0000019994,0.0000020022,0.0000020059,0.0000020060,0.0000020055, +0.0000020039,0.0000020012,0.0000019972,0.0000019930,0.0000019878, +0.0000019824,0.0000019772,0.0000019720,0.0000019672,0.0000019628, +0.0000019596,0.0000019575,0.0000019559,0.0000019550,0.0000019546, +0.0000019546,0.0000019551,0.0000019557,0.0000019568,0.0000019583, +0.0000019603,0.0000019620,0.0000019638,0.0000019653,0.0000019670, +0.0000019691,0.0000019719,0.0000019754,0.0000019786,0.0000019818, +0.0000019826,0.0000019830,0.0000019844,0.0000019850,0.0000019842, +0.0000019835,0.0000019817,0.0000019792,0.0000019762,0.0000019743, +0.0000019741,0.0000019750,0.0000019763,0.0000019771,0.0000019771, +0.0000019764,0.0000019746,0.0000019725,0.0000019708,0.0000019690, +0.0000019670,0.0000019661,0.0000019659,0.0000019653,0.0000019641, +0.0000019625,0.0000019607,0.0000019603,0.0000019614,0.0000019631, +0.0000019647,0.0000019663,0.0000019686,0.0000019709,0.0000019724, +0.0000019739,0.0000019751,0.0000019770,0.0000019801,0.0000019819, +0.0000019825,0.0000019810,0.0000019782,0.0000019764,0.0000019776, +0.0000019802,0.0000019830,0.0000019861,0.0000019882,0.0000019894, +0.0000019890,0.0000019850,0.0000019789,0.0000019729,0.0000019682, +0.0000019663,0.0000019678,0.0000019722,0.0000019780,0.0000019848, +0.0000019912,0.0000019955,0.0000019960,0.0000019917,0.0000019830, +0.0000019753,0.0000019716,0.0000019692,0.0000019655,0.0000019601, +0.0000019556,0.0000019546,0.0000019583,0.0000019652,0.0000019721, +0.0000019771,0.0000019797,0.0000019799,0.0000019812,0.0000019826, +0.0000019850,0.0000019889,0.0000019934,0.0000019977,0.0000020012, +0.0000020037,0.0000020046,0.0000020057,0.0000020060,0.0000020049, +0.0000020023,0.0000020001,0.0000019995,0.0000020012,0.0000020052, +0.0000020084,0.0000020110,0.0000020133,0.0000020148,0.0000020137, +0.0000020096,0.0000020044,0.0000020012,0.0000019988,0.0000019965, +0.0000019971,0.0000019992,0.0000020015,0.0000020036,0.0000020037, +0.0000020007,0.0000019955,0.0000019917,0.0000019881,0.0000019835, +0.0000019782,0.0000019732,0.0000019704,0.0000019720,0.0000019790, +0.0000019881,0.0000019916,0.0000019886,0.0000019826,0.0000019754, +0.0000019681,0.0000019617,0.0000019571,0.0000019539,0.0000019516, +0.0000019503,0.0000019505,0.0000019521,0.0000019548,0.0000019575, +0.0000019598,0.0000019614,0.0000019621,0.0000019624,0.0000019627, +0.0000019633,0.0000019643,0.0000019652,0.0000019658,0.0000019668, +0.0000019674,0.0000019678,0.0000019687,0.0000019702,0.0000019721, +0.0000019742,0.0000019755,0.0000019755,0.0000019760,0.0000019766, +0.0000019765,0.0000019759,0.0000019755,0.0000019762,0.0000019766, +0.0000019759,0.0000019741,0.0000019720,0.0000019702,0.0000019689, +0.0000019689,0.0000019691,0.0000019695,0.0000019699,0.0000019701, +0.0000019697,0.0000019687,0.0000019663,0.0000019649,0.0000019647, +0.0000019658,0.0000019670,0.0000019682,0.0000019687,0.0000019678, +0.0000019667,0.0000019658,0.0000019656,0.0000019676,0.0000019715, +0.0000019756,0.0000019787,0.0000019799,0.0000019778,0.0000019727, +0.0000019669,0.0000019616,0.0000019578,0.0000019558,0.0000019547, +0.0000019542,0.0000019533,0.0000019536,0.0000019546,0.0000019565, +0.0000019568,0.0000019555,0.0000019523,0.0000019485,0.0000019464, +0.0000019461,0.0000019453,0.0000019394,0.0000019293,0.0000019193, +0.0000019132,0.0000019129,0.0000019181,0.0000019227,0.0000019222, +0.0000019166,0.0000019056,0.0000018924,0.0000018858,0.0000018866, +0.0000018947,0.0000019063,0.0000019147,0.0000019163,0.0000019135, +0.0000019081,0.0000019025,0.0000018981,0.0000018950,0.0000018926, +0.0000018918,0.0000018931,0.0000018951,0.0000018960,0.0000018960, +0.0000018951,0.0000018937,0.0000018931,0.0000018924,0.0000018897, +0.0000018854,0.0000018822,0.0000018808,0.0000018771,0.0000018708, +0.0000018665,0.0000018641,0.0000018615,0.0000018585,0.0000018558, +0.0000018532,0.0000018512,0.0000018507,0.0000018524,0.0000018539, +0.0000018538,0.0000018509,0.0000018449,0.0000018406,0.0000018386, +0.0000018363,0.0000018349,0.0000018342,0.0000018322,0.0000018292, +0.0000018273,0.0000018282,0.0000018320,0.0000018358,0.0000018366, +0.0000018354,0.0000018330,0.0000018308,0.0000018299,0.0000018297, +0.0000018291,0.0000018270,0.0000018225,0.0000018147,0.0000018046, +0.0000017956,0.0000017891,0.0000017845,0.0000017799,0.0000017744, +0.0000017676,0.0000017608,0.0000017588,0.0000017634,0.0000017704, +0.0000017718,0.0000017667,0.0000017608,0.0000017588,0.0000017530, +0.0000017414,0.0000017272,0.0000017195,0.0000017154,0.0000017077, +0.0000017002,0.0000016995,0.0000017112,0.0000017406,0.0000017798, +0.0000018083,0.0000018183,0.0000018190,0.0000018186,0.0000018174, +0.0000018164,0.0000018150,0.0000018128,0.0000018103,0.0000018083, +0.0000018075,0.0000018067,0.0000018048,0.0000017992,0.0000017897, +0.0000017786,0.0000017650,0.0000017496,0.0000017349,0.0000017225, +0.0000017135,0.0000017085,0.0000017062,0.0000017046,0.0000017026, +0.0000017016,0.0000017013,0.0000017016,0.0000017030,0.0000017051, +0.0000017070,0.0000017069,0.0000017044,0.0000016994,0.0000016924, +0.0000016860,0.0000016846,0.0000016887,0.0000016934,0.0000016928, +0.0000016891,0.0000016912,0.0000016976,0.0000017072,0.0000017205, +0.0000017321,0.0000017474,0.0000017596,0.0000017552,0.0000017414, +0.0000017297,0.0000017102,0.0000016856,0.0000016766,0.0000016800, +0.0000016851,0.0000016869,0.0000016912,0.0000016979,0.0000017038, +0.0000017100,0.0000017177,0.0000017259,0.0000017340,0.0000017399, +0.0000017422,0.0000017423,0.0000017401,0.0000017374,0.0000017331, +0.0000017269,0.0000017213,0.0000017183,0.0000017189,0.0000017218, +0.0000017239,0.0000017241,0.0000017229,0.0000017203,0.0000017166, +0.0000017121,0.0000017063,0.0000017003,0.0000016989,0.0000017014, +0.0000017048,0.0000017061,0.0000017053,0.0000017037,0.0000017021, +0.0000017005,0.0000016996,0.0000017014,0.0000017151,0.0000017471, +0.0000017724,0.0000017709,0.0000017559,0.0000017452,0.0000017460, +0.0000017545,0.0000017651,0.0000017792,0.0000017893,0.0000017896, +0.0000017862,0.0000017834,0.0000017766,0.0000017715,0.0000017736, +0.0000017797,0.0000017917,0.0000018047,0.0000018103,0.0000018061, +0.0000017980,0.0000017913,0.0000017884,0.0000017900,0.0000017952, +0.0000018000,0.0000018011,0.0000017975,0.0000017931,0.0000017894, +0.0000017798,0.0000017720,0.0000017702,0.0000017741,0.0000017844, +0.0000017912,0.0000017916,0.0000017960,0.0000017985,0.0000017964, +0.0000017984,0.0000018073,0.0000018132,0.0000018125,0.0000018097, +0.0000018055,0.0000018020,0.0000017998,0.0000017992,0.0000017971, +0.0000017937,0.0000017900,0.0000017876,0.0000017872,0.0000017866, +0.0000017842,0.0000017803,0.0000017739,0.0000017658,0.0000017583, +0.0000017578,0.0000017679,0.0000017777,0.0000017828,0.0000017847, +0.0000017847,0.0000017861,0.0000017934,0.0000018035,0.0000018082, +0.0000018174,0.0000018322,0.0000018414,0.0000018561,0.0000018777, +0.0000018808,0.0000018699,0.0000018622,0.0000018608,0.0000018572, +0.0000018486,0.0000018437,0.0000018452,0.0000018474,0.0000018454, +0.0000018406,0.0000018332,0.0000018199,0.0000018062,0.0000017994, +0.0000017952,0.0000017932,0.0000017943,0.0000018012,0.0000018089, +0.0000018114,0.0000018115,0.0000018116,0.0000018172,0.0000018288, +0.0000018371,0.0000018386,0.0000018408,0.0000018484,0.0000018566, +0.0000018590,0.0000018578,0.0000018561,0.0000018562,0.0000018583, +0.0000018650,0.0000018780,0.0000018913,0.0000018979,0.0000018972, +0.0000018941,0.0000018932,0.0000018876,0.0000018780,0.0000018856, +0.0000018973,0.0000018858,0.0000018556,0.0000018152,0.0000017835, +0.0000017747,0.0000017770,0.0000017760,0.0000017630,0.0000017493, +0.0000017424,0.0000017404,0.0000017418,0.0000017481,0.0000017578, +0.0000017672,0.0000017747,0.0000017779,0.0000017757,0.0000017718, +0.0000017748,0.0000017821,0.0000017869,0.0000017902,0.0000017918, +0.0000017914,0.0000017891,0.0000017844,0.0000017769,0.0000017670, +0.0000017555,0.0000017442,0.0000017346,0.0000017271,0.0000017203, +0.0000017135,0.0000017070,0.0000017025,0.0000017016,0.0000017051, +0.0000017134,0.0000017235,0.0000017328,0.0000017413,0.0000017500, +0.0000017605,0.0000017724,0.0000017798,0.0000017858,0.0000017979, +0.0000018037,0.0000018037,0.0000018022,0.0000017988,0.0000017948, +0.0000017936,0.0000017938,0.0000017940,0.0000017959,0.0000018047, +0.0000018137,0.0000018162,0.0000018154,0.0000018118,0.0000018056, +0.0000018057,0.0000018240,0.0000018499,0.0000018645,0.0000018757, +0.0000018905,0.0000018543,0.0000018070,0.0000018120,0.0000018231, +0.0000018247,0.0000018324,0.0000018494,0.0000018502,0.0000018235, +0.0000017953,0.0000017736,0.0000017592,0.0000017517,0.0000017474, +0.0000017450,0.0000017449,0.0000017489,0.0000017555,0.0000017671, +0.0000017857,0.0000017910,0.0000017794,0.0000017720,0.0000017743, +0.0000017745,0.0000017704,0.0000017695,0.0000017700,0.0000017699, +0.0000017736,0.0000017854,0.0000017984,0.0000018148,0.0000018305, +0.0000018227,0.0000017879,0.0000017632,0.0000017638,0.0000017727, +0.0000017797,0.0000017879,0.0000018009,0.0000018154,0.0000018221, +0.0000018194,0.0000018084,0.0000018005,0.0000018002,0.0000018067, +0.0000018107,0.0000018097,0.0000018101,0.0000018119,0.0000018280, +0.0000018584,0.0000018950,0.0000019255,0.0000019434,0.0000019498, +0.0000019544,0.0000019590,0.0000019623,0.0000019631,0.0000019616, +0.0000019583,0.0000019539,0.0000019459,0.0000019381,0.0000019344, +0.0000019358,0.0000019403,0.0000019464,0.0000019542,0.0000019624, +0.0000019681,0.0000019701,0.0000019707,0.0000019764,0.0000019852, +0.0000019738,0.0000019365,0.0000019138,0.0000019221,0.0000019409, +0.0000019496,0.0000019497,0.0000019439,0.0000019365,0.0000019393, +0.0000019652,0.0000019987,0.0000020139,0.0000020117,0.0000020056, +0.0000019989,0.0000019929,0.0000019862,0.0000019625,0.0000019376, +0.0000019512,0.0000019941,0.0000020126,0.0000019978,0.0000019801, +0.0000019509,0.0000019273,0.0000019267,0.0000019466,0.0000019930, +0.0000020267,0.0000020387,0.0000020304,0.0000020078,0.0000020062, +0.0000020190,0.0000020284,0.0000020281,0.0000020298,0.0000020388, +0.0000020444,0.0000020436,0.0000020411,0.0000020324,0.0000020147, +0.0000019938,0.0000019834,0.0000019802,0.0000019762,0.0000019886, +0.0000020137,0.0000020241,0.0000020156,0.0000019497,0.0000018712, +0.0000018290,0.0000018335,0.0000018377,0.0000018209,0.0000017950, +0.0000017853,0.0000017902,0.0000018031,0.0000018152,0.0000018229, +0.0000018220,0.0000018140,0.0000018059,0.0000018010,0.0000017824, +0.0000017725,0.0000017898,0.0000018002,0.0000018142,0.0000018452, +0.0000018486,0.0000018335,0.0000018338,0.0000018422,0.0000018409, +0.0000018444,0.0000018790,0.0000019250,0.0000019431,0.0000019208, +0.0000018669,0.0000018368,0.0000018387,0.0000018434,0.0000018391, +0.0000018325,0.0000018291,0.0000018281,0.0000018280,0.0000018297, +0.0000018324,0.0000018352,0.0000018374,0.0000018382,0.0000018379, +0.0000018371,0.0000018359,0.0000018344,0.0000018330,0.0000018327, +0.0000018353,0.0000018411,0.0000018516,0.0000018727,0.0000019090, +0.0000019504,0.0000019775,0.0000019811,0.0000019721,0.0000019519, +0.0000019301,0.0000019194,0.0000019215,0.0000019119,0.0000018736, +0.0000018349,0.0000018265,0.0000018289,0.0000018314,0.0000018302, +0.0000018262,0.0000018214,0.0000018172,0.0000018152,0.0000018164, +0.0000018224,0.0000018330,0.0000018458,0.0000018579,0.0000018669, +0.0000018703,0.0000018700,0.0000018676,0.0000018654,0.0000018677, +0.0000018766,0.0000018936,0.0000019159,0.0000019398,0.0000019619, +0.0000019792,0.0000019907,0.0000019930,0.0000019975,0.0000019964, +0.0000019941,0.0000019894,0.0000019834,0.0000019763,0.0000019680, +0.0000019589,0.0000019498,0.0000019407,0.0000019313,0.0000019221, +0.0000019133,0.0000019053,0.0000018988,0.0000018941,0.0000018907, +0.0000018888,0.0000018873,0.0000018862,0.0000018858,0.0000018858, +0.0000018861,0.0000018866,0.0000018871,0.0000018881,0.0000018904, +0.0000018931,0.0000018964,0.0000019002,0.0000019046,0.0000019099, +0.0000019174,0.0000019274,0.0000019399,0.0000019543,0.0000019674, +0.0000019762,0.0000019823,0.0000019858,0.0000019859,0.0000019862, +0.0000019854,0.0000019844,0.0000019834,0.0000019820,0.0000019816, +0.0000019823,0.0000019836,0.0000019846,0.0000019846,0.0000019838, +0.0000019823,0.0000019808,0.0000019794,0.0000019774,0.0000019750, +0.0000019735,0.0000019724,0.0000019706,0.0000019683,0.0000019661, +0.0000019647,0.0000019645,0.0000019658,0.0000019672,0.0000019675, +0.0000019678,0.0000019684,0.0000019693,0.0000019707,0.0000019727, +0.0000019749,0.0000019769,0.0000019780,0.0000019769,0.0000019746, +0.0000019723,0.0000019714,0.0000019734,0.0000019766,0.0000019783, +0.0000019794,0.0000019804,0.0000019795,0.0000019755,0.0000019684, +0.0000019589,0.0000019495,0.0000019436,0.0000019427,0.0000019466, +0.0000019548,0.0000019646,0.0000019746,0.0000019838,0.0000019911, +0.0000019954,0.0000019961,0.0000019924,0.0000019841,0.0000019765, +0.0000019717,0.0000019682,0.0000019637,0.0000019580,0.0000019534, +0.0000019504,0.0000019524,0.0000019569,0.0000019641,0.0000019718, +0.0000019782,0.0000019828,0.0000019881,0.0000019902,0.0000019927, +0.0000019961,0.0000019992,0.0000020013,0.0000020029,0.0000020031, +0.0000020028,0.0000020028,0.0000020029,0.0000020025,0.0000020012, +0.0000020005,0.0000020016,0.0000020046,0.0000020071,0.0000020085, +0.0000020092,0.0000020091,0.0000020079,0.0000020049,0.0000020009, +0.0000019980,0.0000019947,0.0000019914,0.0000019912,0.0000019939, +0.0000019972,0.0000019991,0.0000019993,0.0000019965,0.0000019901, +0.0000019859,0.0000019844,0.0000019814,0.0000019746,0.0000019708, +0.0000019741,0.0000019903,0.0000019993,0.0000019933,0.0000019745, +0.0000019525,0.0000019360,0.0000019312,0.0000019311,0.0000019318, +0.0000019325,0.0000019328,0.0000019319,0.0000019307,0.0000019302, +0.0000019308,0.0000019323,0.0000019339,0.0000019356,0.0000019374, +0.0000019389,0.0000019404,0.0000019420,0.0000019441,0.0000019464, +0.0000019488,0.0000019508,0.0000019525,0.0000019547,0.0000019565, +0.0000019581,0.0000019599,0.0000019620,0.0000019646,0.0000019670, +0.0000019682,0.0000019681,0.0000019688,0.0000019689,0.0000019680, +0.0000019671,0.0000019665,0.0000019665,0.0000019660,0.0000019647, +0.0000019631,0.0000019617,0.0000019612,0.0000019613,0.0000019617, +0.0000019622,0.0000019627,0.0000019632,0.0000019641,0.0000019646, +0.0000019649,0.0000019650,0.0000019655,0.0000019664,0.0000019677, +0.0000019685,0.0000019683,0.0000019669,0.0000019652,0.0000019640, +0.0000019639,0.0000019658,0.0000019690,0.0000019725,0.0000019765, +0.0000019797,0.0000019795,0.0000019767,0.0000019726,0.0000019686, +0.0000019648,0.0000019620,0.0000019606,0.0000019602,0.0000019599, +0.0000019597,0.0000019598,0.0000019601,0.0000019597,0.0000019579, +0.0000019549,0.0000019510,0.0000019488,0.0000019486,0.0000019483, +0.0000019440,0.0000019351,0.0000019239,0.0000019134,0.0000019083, +0.0000019107,0.0000019174,0.0000019211,0.0000019195,0.0000019119, +0.0000018992,0.0000018882,0.0000018853,0.0000018904,0.0000019017, +0.0000019123,0.0000019169,0.0000019168,0.0000019131,0.0000019075, +0.0000019029,0.0000019003,0.0000018979,0.0000018957,0.0000018955, +0.0000018967,0.0000018973,0.0000018968,0.0000018957,0.0000018947, +0.0000018943,0.0000018943,0.0000018926,0.0000018879,0.0000018832, +0.0000018816,0.0000018798,0.0000018755,0.0000018710,0.0000018673, +0.0000018643,0.0000018613,0.0000018584,0.0000018557,0.0000018543, +0.0000018549,0.0000018567,0.0000018576,0.0000018568,0.0000018535, +0.0000018481,0.0000018442,0.0000018425,0.0000018400,0.0000018378, +0.0000018355,0.0000018326,0.0000018301,0.0000018294,0.0000018308, +0.0000018342,0.0000018364,0.0000018357,0.0000018335,0.0000018305, +0.0000018273,0.0000018262,0.0000018270,0.0000018275,0.0000018268, +0.0000018249,0.0000018209,0.0000018147,0.0000018075,0.0000017992, +0.0000017910,0.0000017832,0.0000017753,0.0000017664,0.0000017585, +0.0000017557,0.0000017596,0.0000017666,0.0000017692,0.0000017654, +0.0000017601,0.0000017590,0.0000017565,0.0000017461,0.0000017322, +0.0000017198,0.0000017164,0.0000017120,0.0000017032,0.0000016984, +0.0000017002,0.0000017155,0.0000017470,0.0000017838,0.0000018080, +0.0000018180,0.0000018201,0.0000018201,0.0000018189,0.0000018166, +0.0000018134,0.0000018106,0.0000018086,0.0000018074,0.0000018025, +0.0000017921,0.0000017754,0.0000017553,0.0000017365,0.0000017203, +0.0000017087,0.0000017029,0.0000017009,0.0000017009,0.0000017025, +0.0000017043,0.0000017042,0.0000017035,0.0000017030,0.0000017024, +0.0000017020,0.0000017034,0.0000017063,0.0000017079,0.0000017078, +0.0000017052,0.0000017000,0.0000016923,0.0000016852,0.0000016836, +0.0000016878,0.0000016936,0.0000016920,0.0000016863,0.0000016870, +0.0000016947,0.0000017067,0.0000017178,0.0000017271,0.0000017443, +0.0000017541,0.0000017451,0.0000017310,0.0000017145,0.0000016874, +0.0000016709,0.0000016726,0.0000016785,0.0000016801,0.0000016826, +0.0000016889,0.0000016952,0.0000017009,0.0000017065,0.0000017124, +0.0000017186,0.0000017235,0.0000017260,0.0000017272,0.0000017262, +0.0000017241,0.0000017198,0.0000017138,0.0000017088,0.0000017072, +0.0000017095,0.0000017147,0.0000017188,0.0000017200,0.0000017191, +0.0000017173,0.0000017150,0.0000017119,0.0000017080,0.0000017036, +0.0000017009,0.0000017012,0.0000017032,0.0000017051,0.0000017050, +0.0000017032,0.0000017021,0.0000017020,0.0000017030,0.0000017024, +0.0000017029,0.0000017124,0.0000017421,0.0000017684,0.0000017690, +0.0000017566,0.0000017454,0.0000017462,0.0000017553,0.0000017672, +0.0000017823,0.0000017908,0.0000017889,0.0000017862,0.0000017855, +0.0000017810,0.0000017760,0.0000017770,0.0000017812,0.0000017899, +0.0000018002,0.0000018058,0.0000018034,0.0000017976,0.0000017918, +0.0000017897,0.0000017929,0.0000017986,0.0000018021,0.0000018006, +0.0000017952,0.0000017929,0.0000017897,0.0000017800,0.0000017739, +0.0000017729,0.0000017778,0.0000017867,0.0000017891,0.0000017931, +0.0000017974,0.0000018009,0.0000017990,0.0000017998,0.0000018068, +0.0000018116,0.0000018098,0.0000018054,0.0000018017,0.0000017998, +0.0000017997,0.0000017995,0.0000017986,0.0000017970,0.0000017939, +0.0000017927,0.0000017924,0.0000017911,0.0000017885,0.0000017832, +0.0000017743,0.0000017633,0.0000017567,0.0000017632,0.0000017744, +0.0000017815,0.0000017843,0.0000017840,0.0000017841,0.0000017916, +0.0000018018,0.0000018054,0.0000018128,0.0000018278,0.0000018381, +0.0000018498,0.0000018723,0.0000018816,0.0000018744,0.0000018637, +0.0000018621,0.0000018614,0.0000018561,0.0000018472,0.0000018448, +0.0000018475,0.0000018489,0.0000018450,0.0000018400,0.0000018349, +0.0000018264,0.0000018163,0.0000018091,0.0000018068,0.0000018074, +0.0000018102,0.0000018131,0.0000018135,0.0000018122,0.0000018119, +0.0000018175,0.0000018294,0.0000018381,0.0000018398,0.0000018424, +0.0000018492,0.0000018554,0.0000018566,0.0000018553,0.0000018547, +0.0000018550,0.0000018564,0.0000018635,0.0000018769,0.0000018901, +0.0000018975,0.0000018973,0.0000018941,0.0000018932,0.0000018877, +0.0000018782,0.0000018872,0.0000018990,0.0000018866,0.0000018562, +0.0000018145,0.0000017833,0.0000017762,0.0000017786,0.0000017730, +0.0000017559,0.0000017420,0.0000017335,0.0000017294,0.0000017289, +0.0000017341,0.0000017418,0.0000017489,0.0000017543,0.0000017570, +0.0000017578,0.0000017576,0.0000017598,0.0000017653,0.0000017698, +0.0000017716,0.0000017707,0.0000017671,0.0000017610,0.0000017530, +0.0000017445,0.0000017365,0.0000017299,0.0000017240,0.0000017174, +0.0000017092,0.0000017006,0.0000016940,0.0000016913,0.0000016930, +0.0000016994,0.0000017100,0.0000017215,0.0000017317,0.0000017406, +0.0000017497,0.0000017612,0.0000017736,0.0000017798,0.0000017867, +0.0000017987,0.0000018026,0.0000018016,0.0000018020,0.0000018016, +0.0000017986,0.0000017960,0.0000017959,0.0000017972,0.0000017990, +0.0000018038,0.0000018117,0.0000018165,0.0000018167,0.0000018140, +0.0000018080,0.0000018061,0.0000018218,0.0000018478,0.0000018638, +0.0000018732,0.0000018895,0.0000018640,0.0000018107,0.0000018124, +0.0000018232,0.0000018248,0.0000018352,0.0000018521,0.0000018447, +0.0000018134,0.0000017841,0.0000017616,0.0000017504,0.0000017448, +0.0000017414,0.0000017393,0.0000017382,0.0000017399,0.0000017475, +0.0000017551,0.0000017715,0.0000017879,0.0000017830,0.0000017721, +0.0000017720,0.0000017727,0.0000017690,0.0000017666,0.0000017659, +0.0000017653,0.0000017697,0.0000017829,0.0000017976,0.0000018162, +0.0000018266,0.0000018108,0.0000017741,0.0000017571,0.0000017610, +0.0000017697,0.0000017790,0.0000017929,0.0000018099,0.0000018220, +0.0000018222,0.0000018137,0.0000018054,0.0000018039,0.0000018063, +0.0000018090,0.0000018102,0.0000018157,0.0000018305,0.0000018542, +0.0000018841,0.0000019136,0.0000019346,0.0000019445,0.0000019478, +0.0000019513,0.0000019575,0.0000019640,0.0000019678,0.0000019679, +0.0000019643,0.0000019593,0.0000019559,0.0000019534,0.0000019500, +0.0000019461,0.0000019445,0.0000019458,0.0000019516,0.0000019594, +0.0000019666,0.0000019721,0.0000019751,0.0000019755,0.0000019799, +0.0000019831,0.0000019663,0.0000019289,0.0000019155,0.0000019255, +0.0000019433,0.0000019526,0.0000019551,0.0000019534,0.0000019445, +0.0000019375,0.0000019464,0.0000019779,0.0000020065,0.0000020112, +0.0000020045,0.0000019984,0.0000019940,0.0000019836,0.0000019541, +0.0000019377,0.0000019679,0.0000020083,0.0000020081,0.0000019886, +0.0000019626,0.0000019322,0.0000019278,0.0000019419,0.0000019845, +0.0000020225,0.0000020370,0.0000020321,0.0000020087,0.0000020012, +0.0000020131,0.0000020257,0.0000020297,0.0000020324,0.0000020401, +0.0000020451,0.0000020445,0.0000020403,0.0000020306,0.0000020134, +0.0000019929,0.0000019856,0.0000019855,0.0000019813,0.0000019925, +0.0000020167,0.0000020257,0.0000020165,0.0000019434,0.0000018639, +0.0000018330,0.0000018427,0.0000018397,0.0000018098,0.0000017907, +0.0000017917,0.0000018045,0.0000018192,0.0000018284,0.0000018333, +0.0000018291,0.0000018153,0.0000018025,0.0000017964,0.0000017774, +0.0000017724,0.0000017904,0.0000017994,0.0000018186,0.0000018463, +0.0000018455,0.0000018352,0.0000018401,0.0000018444,0.0000018419, +0.0000018627,0.0000019090,0.0000019448,0.0000019456,0.0000019077, +0.0000018500,0.0000018334,0.0000018402,0.0000018454,0.0000018420, +0.0000018374,0.0000018356,0.0000018373,0.0000018426,0.0000018503, +0.0000018594,0.0000018677,0.0000018737,0.0000018762,0.0000018755, +0.0000018726,0.0000018687,0.0000018652,0.0000018628,0.0000018627, +0.0000018674,0.0000018799,0.0000019044,0.0000019398,0.0000019711, +0.0000019838,0.0000019822,0.0000019692,0.0000019493,0.0000019326, +0.0000019260,0.0000019187,0.0000018845,0.0000018395,0.0000018223, +0.0000018236,0.0000018297,0.0000018329,0.0000018326,0.0000018289, +0.0000018229,0.0000018186,0.0000018178,0.0000018229,0.0000018342, +0.0000018480,0.0000018613,0.0000018694,0.0000018707,0.0000018662, +0.0000018581,0.0000018545,0.0000018580,0.0000018709,0.0000018914, +0.0000019160,0.0000019413,0.0000019613,0.0000019760,0.0000019798, +0.0000019864,0.0000019844,0.0000019793,0.0000019716,0.0000019616, +0.0000019496,0.0000019365,0.0000019236,0.0000019117,0.0000019012, +0.0000018913,0.0000018820,0.0000018744,0.0000018679,0.0000018621, +0.0000018568,0.0000018519,0.0000018480,0.0000018459,0.0000018443, +0.0000018431,0.0000018423,0.0000018415,0.0000018405,0.0000018399, +0.0000018392,0.0000018389,0.0000018384,0.0000018382,0.0000018395, +0.0000018412,0.0000018431,0.0000018456,0.0000018482,0.0000018514, +0.0000018542,0.0000018596,0.0000018691,0.0000018858,0.0000019075, +0.0000019310,0.0000019528,0.0000019698,0.0000019790,0.0000019832, +0.0000019847,0.0000019842,0.0000019838,0.0000019835,0.0000019833, +0.0000019839,0.0000019851,0.0000019862,0.0000019863,0.0000019857, +0.0000019842,0.0000019827,0.0000019810,0.0000019787,0.0000019758, +0.0000019733,0.0000019709,0.0000019688,0.0000019663,0.0000019639, +0.0000019617,0.0000019608,0.0000019614,0.0000019617,0.0000019613, +0.0000019605,0.0000019597,0.0000019601,0.0000019616,0.0000019643, +0.0000019671,0.0000019694,0.0000019699,0.0000019687,0.0000019675, +0.0000019673,0.0000019694,0.0000019722,0.0000019720,0.0000019699, +0.0000019690,0.0000019660,0.0000019569,0.0000019436,0.0000019296, +0.0000019191,0.0000019156,0.0000019196,0.0000019278,0.0000019382, +0.0000019500,0.0000019626,0.0000019755,0.0000019855,0.0000019923, +0.0000019959,0.0000019963,0.0000019934,0.0000019869,0.0000019801, +0.0000019746,0.0000019698,0.0000019646,0.0000019594,0.0000019548, +0.0000019521,0.0000019522,0.0000019553,0.0000019590,0.0000019636, +0.0000019695,0.0000019751,0.0000019806,0.0000019848,0.0000019884, +0.0000019914,0.0000019933,0.0000019945,0.0000019947,0.0000019947, +0.0000019953,0.0000019965,0.0000019980,0.0000019987,0.0000019986, +0.0000019991,0.0000020004,0.0000020017,0.0000020024,0.0000020029, +0.0000020025,0.0000020012,0.0000019996,0.0000019978,0.0000019961, +0.0000019935,0.0000019906,0.0000019904,0.0000019918,0.0000019929, +0.0000019935,0.0000019936,0.0000019920,0.0000019859,0.0000019823, +0.0000019833,0.0000019806,0.0000019742,0.0000019730,0.0000019859, +0.0000020022,0.0000019960,0.0000019743,0.0000019443,0.0000019309, +0.0000019299,0.0000019308,0.0000019318,0.0000019325,0.0000019333, +0.0000019335,0.0000019323,0.0000019304,0.0000019278,0.0000019267, +0.0000019265,0.0000019259,0.0000019250,0.0000019239,0.0000019227, +0.0000019219,0.0000019218,0.0000019220,0.0000019229,0.0000019241, +0.0000019255,0.0000019271,0.0000019288,0.0000019312,0.0000019333, +0.0000019356,0.0000019383,0.0000019412,0.0000019446,0.0000019475, +0.0000019491,0.0000019502,0.0000019521,0.0000019530,0.0000019536, +0.0000019542,0.0000019549,0.0000019560,0.0000019565,0.0000019566, +0.0000019569,0.0000019578,0.0000019591,0.0000019602,0.0000019613, +0.0000019629,0.0000019641,0.0000019648,0.0000019662,0.0000019679, +0.0000019689,0.0000019690,0.0000019687,0.0000019681,0.0000019673, +0.0000019655,0.0000019634,0.0000019612,0.0000019599,0.0000019603, +0.0000019624,0.0000019654,0.0000019692,0.0000019739,0.0000019785, +0.0000019803,0.0000019793,0.0000019771,0.0000019746,0.0000019717, +0.0000019683,0.0000019660,0.0000019650,0.0000019647,0.0000019646, +0.0000019645,0.0000019641,0.0000019633,0.0000019611,0.0000019582, +0.0000019551,0.0000019530,0.0000019521,0.0000019507,0.0000019461, +0.0000019369,0.0000019255,0.0000019139,0.0000019054,0.0000019040, +0.0000019097,0.0000019166,0.0000019194,0.0000019159,0.0000019061, +0.0000018938,0.0000018868,0.0000018882,0.0000018979,0.0000019088, +0.0000019158,0.0000019182,0.0000019174,0.0000019136,0.0000019089, +0.0000019059,0.0000019030,0.0000018996,0.0000018976,0.0000018976, +0.0000018980,0.0000018977,0.0000018965,0.0000018951,0.0000018943, +0.0000018945,0.0000018942,0.0000018907,0.0000018853,0.0000018824, +0.0000018813,0.0000018789,0.0000018751,0.0000018707,0.0000018669, +0.0000018637,0.0000018606,0.0000018573,0.0000018567,0.0000018589, +0.0000018614,0.0000018616,0.0000018594,0.0000018552,0.0000018503, +0.0000018469,0.0000018449,0.0000018424,0.0000018394,0.0000018353, +0.0000018316,0.0000018304,0.0000018307,0.0000018320,0.0000018343, +0.0000018349,0.0000018329,0.0000018305,0.0000018273,0.0000018240, +0.0000018240,0.0000018266,0.0000018277,0.0000018271,0.0000018269, +0.0000018265,0.0000018242,0.0000018183,0.0000018083,0.0000017965, +0.0000017850,0.0000017742,0.0000017642,0.0000017570,0.0000017553, +0.0000017588,0.0000017638,0.0000017656,0.0000017624,0.0000017581, +0.0000017581,0.0000017575,0.0000017497,0.0000017372,0.0000017227, +0.0000017158,0.0000017146,0.0000017076,0.0000016991,0.0000016969, +0.0000017016,0.0000017189,0.0000017492,0.0000017807,0.0000018026, +0.0000018140,0.0000018180,0.0000018177,0.0000018152,0.0000018115, +0.0000018076,0.0000018027,0.0000017937,0.0000017794,0.0000017596, +0.0000017362,0.0000017146,0.0000016993,0.0000016908,0.0000016889, +0.0000016918,0.0000016956,0.0000016981,0.0000016999,0.0000017005, +0.0000017000,0.0000016993,0.0000016984,0.0000016969,0.0000016968, +0.0000016996,0.0000017040,0.0000017070,0.0000017074,0.0000017054, +0.0000017007,0.0000016929,0.0000016856,0.0000016837,0.0000016883, +0.0000016934,0.0000016899,0.0000016821,0.0000016838,0.0000016942, +0.0000017069,0.0000017144,0.0000017243,0.0000017424,0.0000017464, +0.0000017325,0.0000017139,0.0000016856,0.0000016649,0.0000016647, +0.0000016726,0.0000016755,0.0000016771,0.0000016809,0.0000016863, +0.0000016915,0.0000016964,0.0000017011,0.0000017061,0.0000017101, +0.0000017123,0.0000017138,0.0000017126,0.0000017101,0.0000017056, +0.0000017004,0.0000016971,0.0000016967,0.0000017000,0.0000017060, +0.0000017111,0.0000017131,0.0000017125,0.0000017104,0.0000017077, +0.0000017049,0.0000017028,0.0000017011,0.0000017009,0.0000017016, +0.0000017035,0.0000017043,0.0000017035,0.0000017011,0.0000016991, +0.0000016996,0.0000017029,0.0000017058,0.0000017050,0.0000017030, +0.0000017092,0.0000017377,0.0000017656,0.0000017686,0.0000017563, +0.0000017450,0.0000017466,0.0000017560,0.0000017692,0.0000017845, +0.0000017915,0.0000017889,0.0000017876,0.0000017892,0.0000017854, +0.0000017797,0.0000017787,0.0000017805,0.0000017867,0.0000017951, +0.0000018002,0.0000017993,0.0000017951,0.0000017910,0.0000017914, +0.0000017957,0.0000018005,0.0000018010,0.0000017960,0.0000017925, +0.0000017933,0.0000017889,0.0000017805,0.0000017773,0.0000017768, +0.0000017813,0.0000017847,0.0000017923,0.0000017958,0.0000018000, +0.0000018044,0.0000018040,0.0000018039,0.0000018092,0.0000018125, +0.0000018094,0.0000018028,0.0000017978,0.0000017954,0.0000017959, +0.0000017968,0.0000017967,0.0000017945,0.0000017929,0.0000017922, +0.0000017923,0.0000017920,0.0000017897,0.0000017827,0.0000017713, +0.0000017603,0.0000017607,0.0000017710,0.0000017796,0.0000017836, +0.0000017842,0.0000017832,0.0000017903,0.0000018002,0.0000018026, +0.0000018089,0.0000018239,0.0000018352,0.0000018442,0.0000018656, +0.0000018823,0.0000018792,0.0000018666,0.0000018626,0.0000018630, +0.0000018626,0.0000018551,0.0000018469,0.0000018457,0.0000018498, +0.0000018500,0.0000018451,0.0000018391,0.0000018350,0.0000018307, +0.0000018259,0.0000018224,0.0000018206,0.0000018193,0.0000018176, +0.0000018149,0.0000018123,0.0000018129,0.0000018202,0.0000018321, +0.0000018393,0.0000018411,0.0000018444,0.0000018504,0.0000018549, +0.0000018557,0.0000018550,0.0000018550,0.0000018551,0.0000018564, +0.0000018641,0.0000018773,0.0000018898,0.0000018973,0.0000018969, +0.0000018936,0.0000018927,0.0000018866,0.0000018785,0.0000018893, +0.0000019000,0.0000018857,0.0000018552,0.0000018125,0.0000017827, +0.0000017782,0.0000017791,0.0000017690,0.0000017509,0.0000017379, +0.0000017290,0.0000017227,0.0000017189,0.0000017198,0.0000017234, +0.0000017276,0.0000017313,0.0000017348,0.0000017383,0.0000017408, +0.0000017420,0.0000017436,0.0000017446,0.0000017439,0.0000017412, +0.0000017371,0.0000017327,0.0000017286,0.0000017245,0.0000017196, +0.0000017127,0.0000017038,0.0000016940,0.0000016853,0.0000016801, +0.0000016798,0.0000016848,0.0000016942,0.0000017066,0.0000017194, +0.0000017303,0.0000017398,0.0000017492,0.0000017616,0.0000017747, +0.0000017800,0.0000017869,0.0000017992,0.0000018021,0.0000018005, +0.0000018025,0.0000018045,0.0000018022,0.0000017976,0.0000017966, +0.0000017998,0.0000018039,0.0000018076,0.0000018121,0.0000018163, +0.0000018172,0.0000018149,0.0000018093,0.0000018078,0.0000018220, +0.0000018470,0.0000018632,0.0000018712,0.0000018881,0.0000018722, +0.0000018207,0.0000018146,0.0000018232,0.0000018249,0.0000018380, +0.0000018530,0.0000018388,0.0000018033,0.0000017727,0.0000017523, +0.0000017443,0.0000017399,0.0000017382,0.0000017369,0.0000017353, +0.0000017349,0.0000017411,0.0000017495,0.0000017603,0.0000017804, +0.0000017834,0.0000017731,0.0000017707,0.0000017713,0.0000017676, +0.0000017640,0.0000017622,0.0000017613,0.0000017673,0.0000017821, +0.0000017988,0.0000018186,0.0000018240,0.0000017970,0.0000017615, +0.0000017523,0.0000017583,0.0000017681,0.0000017816,0.0000018005, +0.0000018175,0.0000018227,0.0000018175,0.0000018089,0.0000018055, +0.0000018071,0.0000018126,0.0000018241,0.0000018443,0.0000018709, +0.0000018978,0.0000019217,0.0000019389,0.0000019480,0.0000019511, +0.0000019523,0.0000019553,0.0000019609,0.0000019678,0.0000019736, +0.0000019770,0.0000019776,0.0000019746,0.0000019672,0.0000019587, +0.0000019535,0.0000019513,0.0000019500,0.0000019496,0.0000019513, +0.0000019562,0.0000019623,0.0000019681,0.0000019736,0.0000019773, +0.0000019778,0.0000019822,0.0000019846,0.0000019601,0.0000019224, +0.0000019123,0.0000019267,0.0000019465,0.0000019617,0.0000019697, +0.0000019681,0.0000019576,0.0000019446,0.0000019406,0.0000019602, +0.0000019960,0.0000020084,0.0000020028,0.0000019970,0.0000019932, +0.0000019771,0.0000019439,0.0000019441,0.0000019894,0.0000020128, +0.0000019975,0.0000019744,0.0000019399,0.0000019303,0.0000019388, +0.0000019762,0.0000020174,0.0000020336,0.0000020326,0.0000020101, +0.0000019986,0.0000020066,0.0000020207,0.0000020297,0.0000020335, +0.0000020401,0.0000020443,0.0000020435,0.0000020380,0.0000020279, +0.0000020115,0.0000019920,0.0000019859,0.0000019912,0.0000019873, +0.0000019955,0.0000020186,0.0000020270,0.0000020187,0.0000019399, +0.0000018603,0.0000018373,0.0000018459,0.0000018347,0.0000018040, +0.0000017956,0.0000018062,0.0000018215,0.0000018307,0.0000018333, +0.0000018365,0.0000018349,0.0000018189,0.0000018016,0.0000017931, +0.0000017738,0.0000017722,0.0000017916,0.0000018000,0.0000018238, +0.0000018454,0.0000018397,0.0000018371,0.0000018453,0.0000018459, +0.0000018506,0.0000018884,0.0000019352,0.0000019542,0.0000019480, +0.0000019070,0.0000018550,0.0000018331,0.0000018400,0.0000018481, +0.0000018506,0.0000018534,0.0000018599,0.0000018699,0.0000018829, +0.0000018968,0.0000019104,0.0000019239,0.0000019335,0.0000019380, +0.0000019392,0.0000019358,0.0000019304,0.0000019266,0.0000019254, +0.0000019288,0.0000019406,0.0000019599,0.0000019727,0.0000019826, +0.0000019807,0.0000019714,0.0000019569,0.0000019415,0.0000019326, +0.0000019269,0.0000018966,0.0000018469,0.0000018201,0.0000018174, +0.0000018253,0.0000018343,0.0000018385,0.0000018370,0.0000018296, +0.0000018225,0.0000018189,0.0000018236,0.0000018342,0.0000018492, +0.0000018648,0.0000018723,0.0000018696,0.0000018600,0.0000018496, +0.0000018478,0.0000018521,0.0000018655,0.0000018863,0.0000019103, +0.0000019349,0.0000019561,0.0000019693,0.0000019750,0.0000019735, +0.0000019675,0.0000019566,0.0000019431,0.0000019289,0.0000019157, +0.0000019025,0.0000018895,0.0000018774,0.0000018674,0.0000018602, +0.0000018553,0.0000018516,0.0000018486,0.0000018471,0.0000018472, +0.0000018473,0.0000018462,0.0000018440,0.0000018420,0.0000018411, +0.0000018402,0.0000018395,0.0000018393,0.0000018393,0.0000018388, +0.0000018382,0.0000018378,0.0000018378,0.0000018376,0.0000018374, +0.0000018374,0.0000018377,0.0000018385,0.0000018393,0.0000018397, +0.0000018404,0.0000018384,0.0000018360,0.0000018326,0.0000018352, +0.0000018434,0.0000018617,0.0000018865,0.0000019149,0.0000019407, +0.0000019600,0.0000019733,0.0000019801,0.0000019825,0.0000019836, +0.0000019841,0.0000019857,0.0000019870,0.0000019877,0.0000019876, +0.0000019864,0.0000019837,0.0000019802,0.0000019761,0.0000019722, +0.0000019677,0.0000019634,0.0000019597,0.0000019564,0.0000019532, +0.0000019504,0.0000019478,0.0000019461,0.0000019470,0.0000019487, +0.0000019502,0.0000019508,0.0000019510,0.0000019516,0.0000019533, +0.0000019564,0.0000019598,0.0000019632,0.0000019646,0.0000019639, +0.0000019637,0.0000019656,0.0000019679,0.0000019667,0.0000019622, +0.0000019585,0.0000019509,0.0000019306,0.0000019016,0.0000018742, +0.0000018560,0.0000018538,0.0000018701,0.0000018959,0.0000019191, +0.0000019369,0.0000019519,0.0000019667,0.0000019794,0.0000019874, +0.0000019918,0.0000019945,0.0000019955,0.0000019946,0.0000019913, +0.0000019870,0.0000019828,0.0000019790,0.0000019752,0.0000019712, +0.0000019674,0.0000019643,0.0000019624,0.0000019619,0.0000019620, +0.0000019616,0.0000019651,0.0000019653,0.0000019677,0.0000019714, +0.0000019745,0.0000019758,0.0000019768,0.0000019782,0.0000019797, +0.0000019816,0.0000019842,0.0000019869,0.0000019892,0.0000019901, +0.0000019903,0.0000019906,0.0000019909,0.0000019910,0.0000019911, +0.0000019909,0.0000019903,0.0000019897,0.0000019898,0.0000019897, +0.0000019897,0.0000019899,0.0000019903,0.0000019903,0.0000019891, +0.0000019885,0.0000019888,0.0000019881,0.0000019839,0.0000019815, +0.0000019826,0.0000019808,0.0000019760,0.0000019785,0.0000019951, +0.0000020038,0.0000019895,0.0000019635,0.0000019358,0.0000019309, +0.0000019318,0.0000019330,0.0000019335,0.0000019341,0.0000019347, +0.0000019341,0.0000019322,0.0000019282,0.0000019222,0.0000019152, +0.0000019094,0.0000019040,0.0000018997,0.0000018972,0.0000018960, +0.0000018961,0.0000018966,0.0000018981,0.0000019000,0.0000019016, +0.0000019028,0.0000019035,0.0000019041,0.0000019049,0.0000019061, +0.0000019073,0.0000019090,0.0000019111,0.0000019139,0.0000019170, +0.0000019199,0.0000019222,0.0000019251,0.0000019283,0.0000019310, +0.0000019338,0.0000019365,0.0000019397,0.0000019435,0.0000019471, +0.0000019504,0.0000019536,0.0000019568,0.0000019590,0.0000019605, +0.0000019618,0.0000019630,0.0000019643,0.0000019663,0.0000019686, +0.0000019700,0.0000019700,0.0000019688,0.0000019665,0.0000019633, +0.0000019602,0.0000019581,0.0000019569,0.0000019569,0.0000019582, +0.0000019608,0.0000019642,0.0000019680,0.0000019719,0.0000019756, +0.0000019780,0.0000019784,0.0000019776,0.0000019766,0.0000019754, +0.0000019725,0.0000019697,0.0000019682,0.0000019675,0.0000019669, +0.0000019665,0.0000019662,0.0000019658,0.0000019643,0.0000019619, +0.0000019602,0.0000019587,0.0000019566,0.0000019532,0.0000019469, +0.0000019365,0.0000019239,0.0000019122,0.0000019035,0.0000018995, +0.0000019023,0.0000019099,0.0000019163,0.0000019172,0.0000019116, +0.0000019016,0.0000018916,0.0000018889,0.0000018959,0.0000019064, +0.0000019143,0.0000019188,0.0000019204,0.0000019189,0.0000019153, +0.0000019116,0.0000019077,0.0000019032,0.0000018997,0.0000018981, +0.0000018978,0.0000018978,0.0000018970,0.0000018952,0.0000018935, +0.0000018932,0.0000018944,0.0000018934,0.0000018885,0.0000018843, +0.0000018824,0.0000018810,0.0000018780,0.0000018737,0.0000018691, +0.0000018656,0.0000018624,0.0000018585,0.0000018582,0.0000018621, +0.0000018661,0.0000018660,0.0000018623,0.0000018568,0.0000018522, +0.0000018487,0.0000018460,0.0000018436,0.0000018398,0.0000018339, +0.0000018302,0.0000018305,0.0000018312,0.0000018314,0.0000018323, +0.0000018320,0.0000018302,0.0000018288,0.0000018261,0.0000018239, +0.0000018254,0.0000018290,0.0000018297,0.0000018293,0.0000018300, +0.0000018307,0.0000018295,0.0000018235,0.0000018124,0.0000017982, +0.0000017840,0.0000017714,0.0000017617,0.0000017565,0.0000017567, +0.0000017601,0.0000017626,0.0000017624,0.0000017589,0.0000017560, +0.0000017569,0.0000017573,0.0000017521,0.0000017411,0.0000017276, +0.0000017156,0.0000017147,0.0000017122,0.0000017032,0.0000016961, +0.0000016967,0.0000017036,0.0000017194,0.0000017440,0.0000017690, +0.0000017882,0.0000017987,0.0000018017,0.0000017996,0.0000017940, +0.0000017855,0.0000017736,0.0000017579,0.0000017396,0.0000017199, +0.0000017011,0.0000016881,0.0000016820,0.0000016808,0.0000016825, +0.0000016869,0.0000016904,0.0000016918,0.0000016926,0.0000016925, +0.0000016920,0.0000016919,0.0000016910,0.0000016895,0.0000016899, +0.0000016938,0.0000016991,0.0000017030,0.0000017047,0.0000017041, +0.0000016999,0.0000016930,0.0000016863,0.0000016849,0.0000016896, +0.0000016930,0.0000016860,0.0000016784,0.0000016826,0.0000016956, +0.0000017064,0.0000017109,0.0000017247,0.0000017411,0.0000017347, +0.0000017131,0.0000016826,0.0000016600,0.0000016577,0.0000016662, +0.0000016707,0.0000016725,0.0000016748,0.0000016781,0.0000016812, +0.0000016845,0.0000016883,0.0000016926,0.0000016961,0.0000016979, +0.0000016989,0.0000016975,0.0000016952,0.0000016920,0.0000016887, +0.0000016874,0.0000016881,0.0000016916,0.0000016975,0.0000017028, +0.0000017057,0.0000017058,0.0000017040,0.0000017003,0.0000016962, +0.0000016927,0.0000016910,0.0000016921,0.0000016966,0.0000017017, +0.0000017043,0.0000017038,0.0000016998,0.0000016955,0.0000016944, +0.0000016973,0.0000017037,0.0000017080,0.0000017060,0.0000017023, +0.0000017065,0.0000017349,0.0000017640,0.0000017680,0.0000017554, +0.0000017449,0.0000017468,0.0000017567,0.0000017707,0.0000017858, +0.0000017918,0.0000017892,0.0000017895,0.0000017928,0.0000017892, +0.0000017819,0.0000017790,0.0000017795,0.0000017836,0.0000017899, +0.0000017939,0.0000017939,0.0000017915,0.0000017911,0.0000017935, +0.0000017973,0.0000017981,0.0000017949,0.0000017914,0.0000017926, +0.0000017942,0.0000017883,0.0000017823,0.0000017803,0.0000017796, +0.0000017813,0.0000017885,0.0000017964,0.0000017998,0.0000018039, +0.0000018087,0.0000018102,0.0000018104,0.0000018137,0.0000018153, +0.0000018109,0.0000018025,0.0000017955,0.0000017922,0.0000017922, +0.0000017935,0.0000017932,0.0000017910,0.0000017887,0.0000017888, +0.0000017910,0.0000017918,0.0000017881,0.0000017786,0.0000017670, +0.0000017608,0.0000017685,0.0000017777,0.0000017824,0.0000017846, +0.0000017835,0.0000017896,0.0000017985,0.0000017996,0.0000018052, +0.0000018198,0.0000018318,0.0000018396,0.0000018584,0.0000018793, +0.0000018825,0.0000018709,0.0000018627,0.0000018626,0.0000018648, +0.0000018633,0.0000018549,0.0000018477,0.0000018483,0.0000018515, +0.0000018511,0.0000018460,0.0000018388,0.0000018336,0.0000018307, +0.0000018283,0.0000018262,0.0000018235,0.0000018197,0.0000018157, +0.0000018145,0.0000018183,0.0000018275,0.0000018366,0.0000018408, +0.0000018429,0.0000018465,0.0000018515,0.0000018554,0.0000018564, +0.0000018562,0.0000018554,0.0000018549,0.0000018569,0.0000018663, +0.0000018787,0.0000018909,0.0000018974,0.0000018958,0.0000018929, +0.0000018922,0.0000018842,0.0000018783,0.0000018918,0.0000018993, +0.0000018837,0.0000018530,0.0000018094,0.0000017824,0.0000017798, +0.0000017792,0.0000017660,0.0000017493,0.0000017373,0.0000017279, +0.0000017204,0.0000017157,0.0000017136,0.0000017141,0.0000017156, +0.0000017178,0.0000017203,0.0000017234,0.0000017260,0.0000017269, +0.0000017268,0.0000017263,0.0000017254,0.0000017240,0.0000017219, +0.0000017186,0.0000017133,0.0000017056,0.0000016960,0.0000016864, +0.0000016783,0.0000016726,0.0000016698,0.0000016706,0.0000016779, +0.0000016899,0.0000017038,0.0000017174,0.0000017290,0.0000017390, +0.0000017484,0.0000017615,0.0000017756,0.0000017802,0.0000017867, +0.0000017993,0.0000018022,0.0000018003,0.0000018023,0.0000018063, +0.0000018048,0.0000017990,0.0000017964,0.0000018002,0.0000018065, +0.0000018110,0.0000018137,0.0000018158,0.0000018168,0.0000018146, +0.0000018103,0.0000018103,0.0000018246,0.0000018479,0.0000018627, +0.0000018697,0.0000018873,0.0000018781,0.0000018311,0.0000018189, +0.0000018234,0.0000018255,0.0000018415,0.0000018532,0.0000018311, +0.0000017928,0.0000017612,0.0000017455,0.0000017402,0.0000017393, +0.0000017394,0.0000017381,0.0000017353,0.0000017335,0.0000017365, +0.0000017461,0.0000017535,0.0000017727,0.0000017820,0.0000017737, +0.0000017698,0.0000017700,0.0000017663,0.0000017617,0.0000017590, +0.0000017581,0.0000017661,0.0000017834,0.0000018024,0.0000018208, +0.0000018168,0.0000017814,0.0000017521,0.0000017490,0.0000017566, +0.0000017685,0.0000017873,0.0000018080,0.0000018196,0.0000018188, +0.0000018118,0.0000018075,0.0000018083,0.0000018236,0.0000018519, +0.0000018872,0.0000019190,0.0000019425,0.0000019562,0.0000019612, +0.0000019623,0.0000019621,0.0000019622,0.0000019645,0.0000019682, +0.0000019720,0.0000019758,0.0000019771,0.0000019791,0.0000019796, +0.0000019801,0.0000019782,0.0000019693,0.0000019581,0.0000019514, +0.0000019501,0.0000019510,0.0000019536,0.0000019579,0.0000019628, +0.0000019682,0.0000019740,0.0000019778,0.0000019784,0.0000019836, +0.0000019839,0.0000019542,0.0000019168,0.0000019096,0.0000019268, +0.0000019502,0.0000019741,0.0000019893,0.0000019885,0.0000019752, +0.0000019570,0.0000019423,0.0000019512,0.0000019880,0.0000020057, +0.0000020002,0.0000019951,0.0000019908,0.0000019649,0.0000019369, +0.0000019619,0.0000020074,0.0000020065,0.0000019844,0.0000019500, +0.0000019329,0.0000019371,0.0000019684,0.0000020118,0.0000020304, +0.0000020316,0.0000020120,0.0000019943,0.0000020009,0.0000020141, +0.0000020260,0.0000020329,0.0000020384,0.0000020424,0.0000020408, +0.0000020346,0.0000020246,0.0000020092,0.0000019912,0.0000019875, +0.0000019965,0.0000019941,0.0000019984,0.0000020193,0.0000020271, +0.0000020226,0.0000019400,0.0000018603,0.0000018395,0.0000018473, +0.0000018275,0.0000018049,0.0000018056,0.0000018155,0.0000018229, +0.0000018229,0.0000018235,0.0000018328,0.0000018366,0.0000018235, +0.0000018032,0.0000017912,0.0000017717,0.0000017732,0.0000017935, +0.0000018007,0.0000018266,0.0000018432,0.0000018386,0.0000018406, +0.0000018473,0.0000018468,0.0000018672,0.0000019160,0.0000019515, +0.0000019557,0.0000019505,0.0000019239,0.0000018804,0.0000018580, +0.0000018598,0.0000018707,0.0000018824,0.0000018940,0.0000019076, +0.0000019224,0.0000019372,0.0000019476,0.0000019450,0.0000019515, +0.0000019557,0.0000019565,0.0000019602,0.0000019626,0.0000019637, +0.0000019645,0.0000019679,0.0000019719,0.0000019741,0.0000019730, +0.0000019689,0.0000019621,0.0000019531,0.0000019428,0.0000019353, +0.0000019278,0.0000018983,0.0000018487,0.0000018199,0.0000018148, +0.0000018216,0.0000018337,0.0000018430,0.0000018437,0.0000018373, +0.0000018266,0.0000018205,0.0000018228,0.0000018325,0.0000018489, +0.0000018656,0.0000018730,0.0000018683,0.0000018559,0.0000018453, +0.0000018448,0.0000018468,0.0000018569,0.0000018750,0.0000018981, +0.0000019216,0.0000019436,0.0000019539,0.0000019638,0.0000019596, +0.0000019478,0.0000019334,0.0000019183,0.0000019034,0.0000018894, +0.0000018779,0.0000018693,0.0000018626,0.0000018566,0.0000018518, +0.0000018490,0.0000018477,0.0000018470,0.0000018469,0.0000018471, +0.0000018472,0.0000018473,0.0000018475,0.0000018474,0.0000018462, +0.0000018453,0.0000018448,0.0000018450,0.0000018448,0.0000018446, +0.0000018450,0.0000018451,0.0000018443,0.0000018426,0.0000018412, +0.0000018400,0.0000018387,0.0000018362,0.0000018338,0.0000018320, +0.0000018313,0.0000018317,0.0000018341,0.0000018373,0.0000018368, +0.0000018350,0.0000018356,0.0000018307,0.0000018328,0.0000018346, +0.0000018492,0.0000018720,0.0000018991,0.0000019255,0.0000019473, +0.0000019620,0.0000019721,0.0000019783,0.0000019825,0.0000019852, +0.0000019870,0.0000019879,0.0000019870,0.0000019831,0.0000019771, +0.0000019704,0.0000019635,0.0000019567,0.0000019507,0.0000019452, +0.0000019400,0.0000019343,0.0000019296,0.0000019252,0.0000019227, +0.0000019237,0.0000019276,0.0000019328,0.0000019374,0.0000019409, +0.0000019438,0.0000019471,0.0000019512,0.0000019554,0.0000019589, +0.0000019600,0.0000019594,0.0000019606,0.0000019623,0.0000019606, +0.0000019551,0.0000019481,0.0000019310,0.0000018946,0.0000018471, +0.0000018050,0.0000017768,0.0000017669,0.0000017791,0.0000018213, +0.0000018743,0.0000019158,0.0000019425,0.0000019599,0.0000019732, +0.0000019824,0.0000019867,0.0000019895,0.0000019927,0.0000019954, +0.0000019969,0.0000019972,0.0000019964,0.0000019951,0.0000019938, +0.0000019919,0.0000019895,0.0000019868,0.0000019845,0.0000019823, +0.0000019799,0.0000019771,0.0000019744,0.0000019725,0.0000019701, +0.0000019689,0.0000019695,0.0000019687,0.0000019668,0.0000019668, +0.0000019671,0.0000019678,0.0000019700,0.0000019726,0.0000019754, +0.0000019774,0.0000019778,0.0000019777,0.0000019776,0.0000019770, +0.0000019764,0.0000019762,0.0000019763,0.0000019767,0.0000019776, +0.0000019789,0.0000019808,0.0000019844,0.0000019876,0.0000019880, +0.0000019867,0.0000019864,0.0000019872,0.0000019872,0.0000019844, +0.0000019814,0.0000019821,0.0000019820,0.0000019794,0.0000019838, +0.0000019984,0.0000020028,0.0000019881,0.0000019651,0.0000019397, +0.0000019318,0.0000019321,0.0000019330,0.0000019349,0.0000019362, +0.0000019363,0.0000019346,0.0000019290,0.0000019189,0.0000019068, +0.0000018966,0.0000018913,0.0000018901,0.0000018912,0.0000018932, +0.0000018941,0.0000018939,0.0000018937,0.0000018941,0.0000018938, +0.0000018945,0.0000018952,0.0000018954,0.0000018951,0.0000018941, +0.0000018941,0.0000018942,0.0000018952,0.0000018960,0.0000018973, +0.0000018989,0.0000019004,0.0000019013,0.0000019018,0.0000019040, +0.0000019055,0.0000019067,0.0000019085,0.0000019110,0.0000019160, +0.0000019219,0.0000019281,0.0000019342,0.0000019401,0.0000019450, +0.0000019479,0.0000019496,0.0000019512,0.0000019537,0.0000019573, +0.0000019609,0.0000019633,0.0000019641,0.0000019633,0.0000019603, +0.0000019562,0.0000019531,0.0000019519,0.0000019526,0.0000019546, +0.0000019571,0.0000019599,0.0000019625,0.0000019654,0.0000019681, +0.0000019703,0.0000019722,0.0000019736,0.0000019750,0.0000019761, +0.0000019763,0.0000019746,0.0000019725,0.0000019703,0.0000019690, +0.0000019677,0.0000019667,0.0000019668,0.0000019668,0.0000019661, +0.0000019642,0.0000019624,0.0000019603,0.0000019572,0.0000019524, +0.0000019449,0.0000019340,0.0000019212,0.0000019101,0.0000019014, +0.0000018957,0.0000018961,0.0000019030,0.0000019117,0.0000019160, +0.0000019139,0.0000019080,0.0000018988,0.0000018934,0.0000018966, +0.0000019058,0.0000019138,0.0000019188,0.0000019218,0.0000019220, +0.0000019199,0.0000019164,0.0000019116,0.0000019064,0.0000019018, +0.0000018986,0.0000018971,0.0000018970,0.0000018969,0.0000018953, +0.0000018926,0.0000018915,0.0000018937,0.0000018949,0.0000018921, +0.0000018873,0.0000018839,0.0000018820,0.0000018795,0.0000018758, +0.0000018709,0.0000018672,0.0000018639,0.0000018598,0.0000018593, +0.0000018644,0.0000018702,0.0000018704,0.0000018658,0.0000018590, +0.0000018542,0.0000018501,0.0000018465,0.0000018443,0.0000018394, +0.0000018321,0.0000018299,0.0000018314,0.0000018312,0.0000018296, +0.0000018299,0.0000018304,0.0000018303,0.0000018303,0.0000018284, +0.0000018273,0.0000018296,0.0000018330,0.0000018333,0.0000018328, +0.0000018329,0.0000018326,0.0000018297,0.0000018225,0.0000018106, +0.0000017963,0.0000017819,0.0000017694,0.0000017612,0.0000017582, +0.0000017593,0.0000017615,0.0000017619,0.0000017597,0.0000017565, +0.0000017553,0.0000017565,0.0000017568,0.0000017528,0.0000017442, +0.0000017326,0.0000017187,0.0000017130,0.0000017140,0.0000017090, +0.0000016990,0.0000016957,0.0000016982,0.0000017044,0.0000017155, +0.0000017317,0.0000017479,0.0000017587,0.0000017623,0.0000017605, +0.0000017532,0.0000017425,0.0000017299,0.0000017165,0.0000017036, +0.0000016916,0.0000016824,0.0000016781,0.0000016775,0.0000016773, +0.0000016783,0.0000016820,0.0000016847,0.0000016862,0.0000016874, +0.0000016879,0.0000016882,0.0000016887,0.0000016875,0.0000016855, +0.0000016859,0.0000016888,0.0000016932,0.0000016975,0.0000017001, +0.0000017003,0.0000016973,0.0000016923,0.0000016873,0.0000016865, +0.0000016906,0.0000016913,0.0000016816,0.0000016757,0.0000016836, +0.0000016977,0.0000017044,0.0000017095,0.0000017293,0.0000017351, +0.0000017145,0.0000016808,0.0000016560,0.0000016533,0.0000016600, +0.0000016649,0.0000016673,0.0000016694,0.0000016707,0.0000016713, +0.0000016730,0.0000016765,0.0000016802,0.0000016826,0.0000016838, +0.0000016842,0.0000016837,0.0000016836,0.0000016824,0.0000016809, +0.0000016802,0.0000016807,0.0000016843,0.0000016898,0.0000016948, +0.0000016979,0.0000016987,0.0000016975,0.0000016941,0.0000016895, +0.0000016849,0.0000016822,0.0000016824,0.0000016866,0.0000016932, +0.0000016991,0.0000017018,0.0000016996,0.0000016940,0.0000016896, +0.0000016896,0.0000016957,0.0000017046,0.0000017079,0.0000017052, +0.0000017007,0.0000017042,0.0000017327,0.0000017629,0.0000017671, +0.0000017546,0.0000017445,0.0000017469,0.0000017575,0.0000017716, +0.0000017863,0.0000017914,0.0000017894,0.0000017918,0.0000017956, +0.0000017916,0.0000017835,0.0000017788,0.0000017778,0.0000017802, +0.0000017837,0.0000017863,0.0000017878,0.0000017890,0.0000017909, +0.0000017932,0.0000017933,0.0000017908,0.0000017887,0.0000017902, +0.0000017955,0.0000017946,0.0000017878,0.0000017848,0.0000017819, +0.0000017826,0.0000017839,0.0000017932,0.0000018011,0.0000018046, +0.0000018085,0.0000018133,0.0000018157,0.0000018162,0.0000018172, +0.0000018173,0.0000018122,0.0000018026,0.0000017937,0.0000017888, +0.0000017881,0.0000017897,0.0000017895,0.0000017865,0.0000017844, +0.0000017862,0.0000017898,0.0000017902,0.0000017835,0.0000017734, +0.0000017654,0.0000017672,0.0000017762,0.0000017810,0.0000017849, +0.0000017851,0.0000017894,0.0000017962,0.0000017964,0.0000018015, +0.0000018158,0.0000018281,0.0000018359,0.0000018517,0.0000018742, +0.0000018830,0.0000018763,0.0000018651,0.0000018624,0.0000018646, +0.0000018686,0.0000018649,0.0000018553,0.0000018490,0.0000018498, +0.0000018530,0.0000018532,0.0000018491,0.0000018412,0.0000018336, +0.0000018292,0.0000018268,0.0000018247,0.0000018225,0.0000018212, +0.0000018234,0.0000018300,0.0000018372,0.0000018417,0.0000018441, +0.0000018467,0.0000018502,0.0000018541,0.0000018568,0.0000018570, +0.0000018556,0.0000018534,0.0000018529,0.0000018576,0.0000018683, +0.0000018809,0.0000018934,0.0000018978,0.0000018945,0.0000018927, +0.0000018917,0.0000018817,0.0000018785,0.0000018936,0.0000018989, +0.0000018812,0.0000018493,0.0000018059,0.0000017825,0.0000017810, +0.0000017787,0.0000017649,0.0000017494,0.0000017369,0.0000017271, +0.0000017199,0.0000017151,0.0000017131,0.0000017131,0.0000017140, +0.0000017153,0.0000017165,0.0000017180,0.0000017192,0.0000017198, +0.0000017195,0.0000017180,0.0000017151,0.0000017105,0.0000017037, +0.0000016951,0.0000016855,0.0000016766,0.0000016705,0.0000016677, +0.0000016666,0.0000016654,0.0000016659,0.0000016731,0.0000016865, +0.0000017019,0.0000017160,0.0000017280,0.0000017382,0.0000017471, +0.0000017605,0.0000017756,0.0000017799,0.0000017857,0.0000017987, +0.0000018028,0.0000018003,0.0000018012,0.0000018056,0.0000018066, +0.0000018016,0.0000017970,0.0000017989,0.0000018051,0.0000018107, +0.0000018137,0.0000018148,0.0000018149,0.0000018133,0.0000018112, +0.0000018143,0.0000018297,0.0000018505,0.0000018620,0.0000018687, +0.0000018863,0.0000018814,0.0000018394,0.0000018226,0.0000018236, +0.0000018273,0.0000018460,0.0000018510,0.0000018209,0.0000017807, +0.0000017507,0.0000017414,0.0000017403,0.0000017426,0.0000017428, +0.0000017411,0.0000017373,0.0000017334,0.0000017345,0.0000017438, +0.0000017497,0.0000017664,0.0000017804,0.0000017736,0.0000017691, +0.0000017689,0.0000017652,0.0000017599,0.0000017563,0.0000017558, +0.0000017673,0.0000017866,0.0000018078,0.0000018208,0.0000018048, +0.0000017658,0.0000017454,0.0000017470,0.0000017559,0.0000017720, +0.0000017950,0.0000018124,0.0000018167,0.0000018114,0.0000018068, +0.0000018112,0.0000018368,0.0000018808,0.0000019241,0.0000019519, +0.0000019636,0.0000019605,0.0000019619,0.0000019579,0.0000019564, +0.0000019573,0.0000019597,0.0000019642,0.0000019690,0.0000019727, +0.0000019752,0.0000019753,0.0000019718,0.0000019665,0.0000019670, +0.0000019746,0.0000019769,0.0000019703,0.0000019571,0.0000019495, +0.0000019493,0.0000019524,0.0000019568,0.0000019615,0.0000019671, +0.0000019733,0.0000019773,0.0000019782,0.0000019850,0.0000019827, +0.0000019480,0.0000019120,0.0000019083,0.0000019262,0.0000019523, +0.0000019817,0.0000020032,0.0000020061,0.0000019931,0.0000019706, +0.0000019466,0.0000019482,0.0000019851,0.0000020028,0.0000019964, +0.0000019932,0.0000019836,0.0000019491,0.0000019403,0.0000019884, +0.0000020114,0.0000019933,0.0000019627,0.0000019338,0.0000019360, +0.0000019619,0.0000020058,0.0000020271,0.0000020302,0.0000020148, +0.0000019930,0.0000019948,0.0000020079,0.0000020198,0.0000020290, +0.0000020348,0.0000020380,0.0000020363,0.0000020302,0.0000020212, +0.0000020067,0.0000019901,0.0000019886,0.0000020015,0.0000020013, +0.0000020016,0.0000020192,0.0000020275,0.0000020247,0.0000019453, +0.0000018635,0.0000018427,0.0000018468,0.0000018249,0.0000018097, +0.0000018108,0.0000018115,0.0000018065,0.0000018005,0.0000017986, +0.0000018175,0.0000018367,0.0000018277,0.0000018060,0.0000017911, +0.0000017715,0.0000017759,0.0000017961,0.0000018035,0.0000018285, +0.0000018401,0.0000018389,0.0000018462,0.0000018498,0.0000018516, +0.0000018890,0.0000019396,0.0000019589,0.0000019576,0.0000019548, +0.0000019450,0.0000019249,0.0000019116,0.0000019119,0.0000019211, +0.0000019339,0.0000019465,0.0000019562,0.0000019535,0.0000019549, +0.0000019457,0.0000019308,0.0000019188,0.0000019091,0.0000019026, +0.0000019029,0.0000019087,0.0000019197,0.0000019322,0.0000019417, +0.0000019457,0.0000019454,0.0000019431,0.0000019389,0.0000019327, +0.0000019260,0.0000019133,0.0000018812,0.0000018372,0.0000018152, +0.0000018111,0.0000018175,0.0000018310,0.0000018442,0.0000018485, +0.0000018452,0.0000018346,0.0000018255,0.0000018234,0.0000018296, +0.0000018452,0.0000018651,0.0000018743,0.0000018683,0.0000018543, +0.0000018441,0.0000018434,0.0000018434,0.0000018494,0.0000018625, +0.0000018825,0.0000019041,0.0000019256,0.0000019366,0.0000019440, +0.0000019402,0.0000019286,0.0000019135,0.0000018969,0.0000018835, +0.0000018745,0.0000018672,0.0000018612,0.0000018572,0.0000018541, +0.0000018509,0.0000018488,0.0000018474,0.0000018467,0.0000018477, +0.0000018471,0.0000018482,0.0000018497,0.0000018513,0.0000018531, +0.0000018554,0.0000018573,0.0000018580,0.0000018577,0.0000018572, +0.0000018569,0.0000018564,0.0000018553,0.0000018542,0.0000018532, +0.0000018505,0.0000018462,0.0000018422,0.0000018380,0.0000018351, +0.0000018312,0.0000018273,0.0000018198,0.0000018121,0.0000018073, +0.0000018088,0.0000018094,0.0000018106,0.0000018211,0.0000018297, +0.0000018346,0.0000018343,0.0000018331,0.0000018297,0.0000018306, +0.0000018411,0.0000018570,0.0000018782,0.0000019002,0.0000019189, +0.0000019342,0.0000019459,0.0000019549,0.0000019625,0.0000019698, +0.0000019756,0.0000019777,0.0000019746,0.0000019701,0.0000019616, +0.0000019530,0.0000019452,0.0000019378,0.0000019310,0.0000019223, +0.0000019125,0.0000019044,0.0000018995,0.0000018989,0.0000019035, +0.0000019115,0.0000019203,0.0000019287,0.0000019353,0.0000019413, +0.0000019468,0.0000019510,0.0000019536,0.0000019538,0.0000019534, +0.0000019538,0.0000019524,0.0000019468,0.0000019345,0.0000019044, +0.0000018514,0.0000017944,0.0000017548,0.0000017323,0.0000017175, +0.0000017155,0.0000017330,0.0000017910,0.0000018656,0.0000019214, +0.0000019520,0.0000019671,0.0000019769,0.0000019831,0.0000019857, +0.0000019889,0.0000019926,0.0000019956,0.0000019976,0.0000019992, +0.0000019999,0.0000019998,0.0000019992,0.0000019980,0.0000019962, +0.0000019949,0.0000019945,0.0000019941,0.0000019935,0.0000019918, +0.0000019902,0.0000019876,0.0000019864,0.0000019849,0.0000019822, +0.0000019793,0.0000019757,0.0000019723,0.0000019704,0.0000019693, +0.0000019693,0.0000019703,0.0000019716,0.0000019718,0.0000019711, +0.0000019704,0.0000019699,0.0000019693,0.0000019689,0.0000019690, +0.0000019695,0.0000019705,0.0000019718,0.0000019735,0.0000019768, +0.0000019814,0.0000019838,0.0000019844,0.0000019857,0.0000019878, +0.0000019889,0.0000019874,0.0000019833,0.0000019826,0.0000019839, +0.0000019839,0.0000019889,0.0000020003,0.0000020023,0.0000019893, +0.0000019728,0.0000019492,0.0000019344,0.0000019327,0.0000019330, +0.0000019358,0.0000019394,0.0000019397,0.0000019356,0.0000019252, +0.0000019114,0.0000019005,0.0000018952,0.0000018938,0.0000018943, +0.0000018957,0.0000018954,0.0000018941,0.0000018929,0.0000018928, +0.0000018934,0.0000018939,0.0000018964,0.0000019001,0.0000019038, +0.0000019057,0.0000019054,0.0000019040,0.0000019030,0.0000019028, +0.0000019027,0.0000019027,0.0000019031,0.0000019035,0.0000019031, +0.0000019018,0.0000019005,0.0000018995,0.0000018984,0.0000018972, +0.0000018951,0.0000018953,0.0000018980,0.0000019013,0.0000019059, +0.0000019118,0.0000019175,0.0000019222,0.0000019258,0.0000019294, +0.0000019335,0.0000019384,0.0000019431,0.0000019467,0.0000019488, +0.0000019493,0.0000019480,0.0000019456,0.0000019443,0.0000019451, +0.0000019477,0.0000019513,0.0000019550,0.0000019577,0.0000019595, +0.0000019610,0.0000019627,0.0000019641,0.0000019658,0.0000019680, +0.0000019706,0.0000019729,0.0000019741,0.0000019736,0.0000019716, +0.0000019692,0.0000019674,0.0000019659,0.0000019644,0.0000019636, +0.0000019632,0.0000019623,0.0000019602,0.0000019570,0.0000019537, +0.0000019498,0.0000019445,0.0000019377,0.0000019291,0.0000019186, +0.0000019083,0.0000018991,0.0000018923,0.0000018913,0.0000018970, +0.0000019062,0.0000019130,0.0000019135,0.0000019100,0.0000019036, +0.0000018984,0.0000018993,0.0000019060,0.0000019139,0.0000019190, +0.0000019217,0.0000019225,0.0000019216,0.0000019192,0.0000019144, +0.0000019088,0.0000019034,0.0000018992,0.0000018968,0.0000018966, +0.0000018968,0.0000018955,0.0000018922,0.0000018897,0.0000018915, +0.0000018945,0.0000018943,0.0000018905,0.0000018861,0.0000018828, +0.0000018798,0.0000018767,0.0000018724,0.0000018683,0.0000018649, +0.0000018613,0.0000018607,0.0000018659,0.0000018730,0.0000018741, +0.0000018698,0.0000018625,0.0000018567,0.0000018515,0.0000018474, +0.0000018451,0.0000018384,0.0000018309,0.0000018307,0.0000018325, +0.0000018305,0.0000018277,0.0000018289,0.0000018315,0.0000018336, +0.0000018347,0.0000018336,0.0000018326,0.0000018348,0.0000018374, +0.0000018376,0.0000018367,0.0000018353,0.0000018328,0.0000018274, +0.0000018185,0.0000018066,0.0000017943,0.0000017821,0.0000017715, +0.0000017650,0.0000017621,0.0000017618,0.0000017617,0.0000017599, +0.0000017574,0.0000017558,0.0000017558,0.0000017570,0.0000017567, +0.0000017528,0.0000017465,0.0000017368,0.0000017239,0.0000017130, +0.0000017124,0.0000017126,0.0000017048,0.0000016967,0.0000016971, +0.0000017003,0.0000017043,0.0000017099,0.0000017163,0.0000017208, +0.0000017219,0.0000017190,0.0000017120,0.0000017046,0.0000016982, +0.0000016926,0.0000016865,0.0000016813,0.0000016783,0.0000016774, +0.0000016777,0.0000016770,0.0000016782,0.0000016818,0.0000016843, +0.0000016861,0.0000016875,0.0000016883,0.0000016891,0.0000016889, +0.0000016870,0.0000016847,0.0000016841,0.0000016854,0.0000016888, +0.0000016920,0.0000016943,0.0000016953,0.0000016943,0.0000016916, +0.0000016883,0.0000016881,0.0000016915,0.0000016889,0.0000016778, +0.0000016748,0.0000016864,0.0000016990,0.0000017015,0.0000017142, +0.0000017310,0.0000017188,0.0000016821,0.0000016530,0.0000016495, +0.0000016544,0.0000016588,0.0000016617,0.0000016641,0.0000016645, +0.0000016635,0.0000016636,0.0000016664,0.0000016695,0.0000016713, +0.0000016730,0.0000016742,0.0000016757,0.0000016768,0.0000016759, +0.0000016743,0.0000016726,0.0000016727,0.0000016753,0.0000016796, +0.0000016833,0.0000016863,0.0000016880,0.0000016877,0.0000016851, +0.0000016811,0.0000016771,0.0000016750,0.0000016763,0.0000016802, +0.0000016858,0.0000016913,0.0000016950,0.0000016953,0.0000016920, +0.0000016871,0.0000016844,0.0000016869,0.0000016953,0.0000017043, +0.0000017069,0.0000017037,0.0000016984,0.0000017016,0.0000017314, +0.0000017625,0.0000017665,0.0000017540,0.0000017443,0.0000017473, +0.0000017580,0.0000017722,0.0000017861,0.0000017906,0.0000017905, +0.0000017935,0.0000017965,0.0000017935,0.0000017851,0.0000017781, +0.0000017758,0.0000017760,0.0000017768,0.0000017782,0.0000017807, +0.0000017834,0.0000017858,0.0000017861,0.0000017851,0.0000017844, +0.0000017865,0.0000017940,0.0000017979,0.0000017934,0.0000017880, +0.0000017860,0.0000017864,0.0000017832,0.0000017878,0.0000017989, +0.0000018060,0.0000018093,0.0000018133,0.0000018168,0.0000018177, +0.0000018170,0.0000018164,0.0000018154,0.0000018099,0.0000018009, +0.0000017908,0.0000017845,0.0000017842,0.0000017860,0.0000017853, +0.0000017823,0.0000017819,0.0000017855,0.0000017889,0.0000017867, +0.0000017776,0.0000017694,0.0000017674,0.0000017752,0.0000017797, +0.0000017842,0.0000017867,0.0000017896,0.0000017942,0.0000017934, +0.0000017979,0.0000018117,0.0000018247,0.0000018330,0.0000018457, +0.0000018680,0.0000018826,0.0000018812,0.0000018693,0.0000018631, +0.0000018638,0.0000018693,0.0000018723,0.0000018658,0.0000018560, +0.0000018505,0.0000018516,0.0000018546,0.0000018554,0.0000018535, +0.0000018485,0.0000018420,0.0000018372,0.0000018354,0.0000018357, +0.0000018371,0.0000018398,0.0000018432,0.0000018460,0.0000018480, +0.0000018503,0.0000018530,0.0000018556,0.0000018572,0.0000018572, +0.0000018547,0.0000018507,0.0000018486,0.0000018502,0.0000018580, +0.0000018701,0.0000018847,0.0000018959,0.0000018971,0.0000018937, +0.0000018929,0.0000018906,0.0000018796,0.0000018785,0.0000018959, +0.0000018986,0.0000018769,0.0000018441,0.0000018022,0.0000017826, +0.0000017819,0.0000017783,0.0000017648,0.0000017487,0.0000017346, +0.0000017243,0.0000017173,0.0000017128,0.0000017109,0.0000017107, +0.0000017113,0.0000017119,0.0000017122,0.0000017119,0.0000017105, +0.0000017077,0.0000017033,0.0000016972,0.0000016896,0.0000016811, +0.0000016726,0.0000016654,0.0000016610,0.0000016609,0.0000016645, +0.0000016659,0.0000016655,0.0000016648,0.0000016703,0.0000016846, +0.0000017008,0.0000017150,0.0000017273,0.0000017371,0.0000017452, +0.0000017592,0.0000017763,0.0000017806,0.0000017842,0.0000017977, +0.0000018037,0.0000018013,0.0000017998,0.0000018032,0.0000018062, +0.0000018051,0.0000018010,0.0000017993,0.0000018025,0.0000018076, +0.0000018113,0.0000018130,0.0000018130,0.0000018128,0.0000018133, +0.0000018210,0.0000018376,0.0000018544,0.0000018614,0.0000018685, +0.0000018857,0.0000018821,0.0000018453,0.0000018250,0.0000018241, +0.0000018309,0.0000018493,0.0000018447,0.0000018081,0.0000017672, +0.0000017435,0.0000017402,0.0000017434,0.0000017447,0.0000017433, +0.0000017417,0.0000017390,0.0000017344,0.0000017340,0.0000017421, +0.0000017473,0.0000017617,0.0000017783,0.0000017730,0.0000017684, +0.0000017682,0.0000017643,0.0000017582,0.0000017543,0.0000017545, +0.0000017701,0.0000017911,0.0000018133,0.0000018190,0.0000017894, +0.0000017533,0.0000017434,0.0000017464,0.0000017577,0.0000017788, +0.0000018017,0.0000018122,0.0000018101,0.0000018053,0.0000018103, +0.0000018459,0.0000019022,0.0000019476,0.0000019653,0.0000019610, +0.0000019502,0.0000019403,0.0000019322,0.0000019282,0.0000019271, +0.0000019274,0.0000019296,0.0000019349,0.0000019436,0.0000019523, +0.0000019578,0.0000019584,0.0000019502,0.0000019365,0.0000019316, +0.0000019443,0.0000019665,0.0000019776,0.0000019705,0.0000019558, +0.0000019491,0.0000019506,0.0000019550,0.0000019605,0.0000019665, +0.0000019727,0.0000019765,0.0000019784,0.0000019869,0.0000019809, +0.0000019415,0.0000019086,0.0000019083,0.0000019252,0.0000019519, +0.0000019850,0.0000020094,0.0000020159,0.0000020059,0.0000019803, +0.0000019498,0.0000019497,0.0000019886,0.0000019995,0.0000019927, +0.0000019904,0.0000019692,0.0000019378,0.0000019599,0.0000020081, +0.0000020026,0.0000019739,0.0000019407,0.0000019351,0.0000019572, +0.0000019997,0.0000020241,0.0000020273,0.0000020174,0.0000019941, +0.0000019900,0.0000020022,0.0000020135,0.0000020232,0.0000020296, +0.0000020320,0.0000020304,0.0000020253,0.0000020177,0.0000020043, +0.0000019896,0.0000019896,0.0000020056,0.0000020084,0.0000020055, +0.0000020186,0.0000020280,0.0000020255,0.0000019539,0.0000018685, +0.0000018403,0.0000018488,0.0000018247,0.0000018130,0.0000018088, +0.0000018052,0.0000017976,0.0000017908,0.0000017850,0.0000018020, +0.0000018335,0.0000018334,0.0000018090,0.0000017918,0.0000017735, +0.0000017794,0.0000017986,0.0000018071,0.0000018308,0.0000018367, +0.0000018385,0.0000018500,0.0000018514,0.0000018590,0.0000019118, +0.0000019551,0.0000019594,0.0000019568,0.0000019562,0.0000019566, +0.0000019556,0.0000019560,0.0000019584,0.0000019636,0.0000019647, +0.0000019648,0.0000019585,0.0000019389,0.0000019158,0.0000018884, +0.0000018642,0.0000018503,0.0000018431,0.0000018381,0.0000018365, +0.0000018382,0.0000018452,0.0000018576,0.0000018717,0.0000018834, +0.0000018890,0.0000018891,0.0000018809,0.0000018619,0.0000018342, +0.0000018111,0.0000018073,0.0000018064,0.0000018128,0.0000018262, +0.0000018411,0.0000018504,0.0000018507,0.0000018446,0.0000018332, +0.0000018266,0.0000018283,0.0000018387,0.0000018598,0.0000018758, +0.0000018725,0.0000018574,0.0000018461,0.0000018435,0.0000018431, +0.0000018448,0.0000018530,0.0000018697,0.0000018898,0.0000019099, +0.0000019186,0.0000019232,0.0000019199,0.0000019098,0.0000018960, +0.0000018835,0.0000018738,0.0000018670,0.0000018628,0.0000018607, +0.0000018574,0.0000018544,0.0000018510,0.0000018501,0.0000018498, +0.0000018505,0.0000018542,0.0000018588,0.0000018631,0.0000018677, +0.0000018722,0.0000018764,0.0000018796,0.0000018812,0.0000018821, +0.0000018828,0.0000018836,0.0000018844,0.0000018844,0.0000018841, +0.0000018836,0.0000018826,0.0000018809,0.0000018790,0.0000018769, +0.0000018739,0.0000018708,0.0000018674,0.0000018641,0.0000018595, +0.0000018539,0.0000018466,0.0000018377,0.0000018261,0.0000018161, +0.0000018044,0.0000017927,0.0000017947,0.0000017947,0.0000018055, +0.0000018200,0.0000018322,0.0000018340,0.0000018326,0.0000018304, +0.0000018308,0.0000018313,0.0000018409,0.0000018512,0.0000018625, +0.0000018752,0.0000018877,0.0000019004,0.0000019150,0.0000019313, +0.0000019472,0.0000019594,0.0000019659,0.0000019649,0.0000019604, +0.0000019535,0.0000019449,0.0000019353,0.0000019236,0.0000019106, +0.0000018988,0.0000018891,0.0000018851,0.0000018874,0.0000018952, +0.0000019071,0.0000019199,0.0000019298,0.0000019370,0.0000019421, +0.0000019456,0.0000019470,0.0000019462,0.0000019450,0.0000019433, +0.0000019384,0.0000019200,0.0000018740,0.0000018068,0.0000017514, +0.0000017279,0.0000017273,0.0000017240,0.0000017139,0.0000017093, +0.0000017216,0.0000017852,0.0000018710,0.0000019309,0.0000019580, +0.0000019700,0.0000019787,0.0000019840,0.0000019872,0.0000019902, +0.0000019924,0.0000019936,0.0000019942,0.0000019942,0.0000019936, +0.0000019924,0.0000019910,0.0000019897,0.0000019887,0.0000019881, +0.0000019879,0.0000019879,0.0000019881,0.0000019891,0.0000019904, +0.0000019915,0.0000019940,0.0000019940,0.0000019950,0.0000019950, +0.0000019924,0.0000019893,0.0000019867,0.0000019841,0.0000019824, +0.0000019817,0.0000019804,0.0000019784,0.0000019766,0.0000019758, +0.0000019749,0.0000019735,0.0000019722,0.0000019715,0.0000019716, +0.0000019723,0.0000019735,0.0000019751,0.0000019775,0.0000019803, +0.0000019826,0.0000019857,0.0000019893,0.0000019923,0.0000019925, +0.0000019890,0.0000019861,0.0000019872,0.0000019898,0.0000019945, +0.0000020025,0.0000020028,0.0000019907,0.0000019790,0.0000019647, +0.0000019465,0.0000019376,0.0000019347,0.0000019356,0.0000019409, +0.0000019438,0.0000019400,0.0000019279,0.0000019121,0.0000019016, +0.0000018981,0.0000018971,0.0000018960,0.0000018948,0.0000018936, +0.0000018932,0.0000018941,0.0000018963,0.0000019014,0.0000019092, +0.0000019145,0.0000019161,0.0000019159,0.0000019156,0.0000019148, +0.0000019138,0.0000019126,0.0000019110,0.0000019102,0.0000019098, +0.0000019093,0.0000019094,0.0000019097,0.0000019096,0.0000019076, +0.0000019059,0.0000019044,0.0000019025,0.0000019006,0.0000018981, +0.0000018961,0.0000018947,0.0000018953,0.0000018947,0.0000018966, +0.0000018988,0.0000019011,0.0000019048,0.0000019097,0.0000019155, +0.0000019212,0.0000019258,0.0000019296,0.0000019315,0.0000019322, +0.0000019323,0.0000019331,0.0000019359,0.0000019398,0.0000019440, +0.0000019477,0.0000019502,0.0000019514,0.0000019517,0.0000019520, +0.0000019532,0.0000019553,0.0000019579,0.0000019603,0.0000019620, +0.0000019626,0.0000019620,0.0000019602,0.0000019582,0.0000019565, +0.0000019545,0.0000019523,0.0000019505,0.0000019492,0.0000019477, +0.0000019451,0.0000019422,0.0000019391,0.0000019361,0.0000019321, +0.0000019272,0.0000019214,0.0000019133,0.0000019036,0.0000018943, +0.0000018881,0.0000018874,0.0000018921,0.0000018997,0.0000019066, +0.0000019089,0.0000019070,0.0000019030,0.0000019003,0.0000019008, +0.0000019061,0.0000019137,0.0000019187,0.0000019210,0.0000019215, +0.0000019211,0.0000019192,0.0000019152,0.0000019101,0.0000019043, +0.0000018993,0.0000018968,0.0000018970,0.0000018975,0.0000018961, +0.0000018921,0.0000018885,0.0000018890,0.0000018925,0.0000018945, +0.0000018926,0.0000018885,0.0000018840,0.0000018797,0.0000018768, +0.0000018734,0.0000018691,0.0000018656,0.0000018628,0.0000018624, +0.0000018666,0.0000018740,0.0000018770,0.0000018741,0.0000018665, +0.0000018596,0.0000018537,0.0000018491,0.0000018456,0.0000018370, +0.0000018310,0.0000018326,0.0000018336,0.0000018295,0.0000018271, +0.0000018302,0.0000018353,0.0000018385,0.0000018394,0.0000018384, +0.0000018375,0.0000018388,0.0000018412,0.0000018421,0.0000018402, +0.0000018368,0.0000018312,0.0000018230,0.0000018129,0.0000018035, +0.0000017953,0.0000017861,0.0000017775,0.0000017711,0.0000017663, +0.0000017630,0.0000017601,0.0000017576,0.0000017565,0.0000017566, +0.0000017576,0.0000017586,0.0000017576,0.0000017534,0.0000017481, +0.0000017407,0.0000017290,0.0000017159,0.0000017101,0.0000017125, +0.0000017099,0.0000017028,0.0000016984,0.0000016997,0.0000017023, +0.0000017043,0.0000017050,0.0000017048,0.0000017035,0.0000016992, +0.0000016941,0.0000016927,0.0000016907,0.0000016886,0.0000016851, +0.0000016823,0.0000016814,0.0000016814,0.0000016810,0.0000016805, +0.0000016825,0.0000016856,0.0000016876,0.0000016888,0.0000016894, +0.0000016898,0.0000016898,0.0000016887,0.0000016866,0.0000016843, +0.0000016831,0.0000016837,0.0000016854,0.0000016869,0.0000016884, +0.0000016904,0.0000016921,0.0000016915,0.0000016892,0.0000016895, +0.0000016915,0.0000016862,0.0000016744,0.0000016754,0.0000016901, +0.0000016979,0.0000017018,0.0000017214,0.0000017234,0.0000016887, +0.0000016531,0.0000016468,0.0000016496,0.0000016531,0.0000016560, +0.0000016587,0.0000016590,0.0000016580,0.0000016578,0.0000016590, +0.0000016618,0.0000016645,0.0000016671,0.0000016685,0.0000016697, +0.0000016698,0.0000016681,0.0000016659,0.0000016632,0.0000016612, +0.0000016617,0.0000016644,0.0000016675,0.0000016707,0.0000016727, +0.0000016729,0.0000016716,0.0000016692,0.0000016674,0.0000016680, +0.0000016704,0.0000016743,0.0000016792,0.0000016852,0.0000016899, +0.0000016904,0.0000016872,0.0000016827,0.0000016799,0.0000016804, +0.0000016858,0.0000016950,0.0000017029,0.0000017054,0.0000017017, +0.0000016955,0.0000017001,0.0000017319,0.0000017632,0.0000017668, +0.0000017535,0.0000017445,0.0000017477,0.0000017587,0.0000017723, +0.0000017848,0.0000017902,0.0000017913,0.0000017940,0.0000017969, +0.0000017953,0.0000017867,0.0000017784,0.0000017748,0.0000017715, +0.0000017703,0.0000017716,0.0000017746,0.0000017781,0.0000017800, +0.0000017809,0.0000017812,0.0000017837,0.0000017918,0.0000017999, +0.0000017986,0.0000017919,0.0000017890,0.0000017901,0.0000017857, +0.0000017850,0.0000017938,0.0000018045,0.0000018101,0.0000018140, +0.0000018186,0.0000018194,0.0000018162,0.0000018123,0.0000018095, +0.0000018075,0.0000018034,0.0000017961,0.0000017872,0.0000017822, +0.0000017821,0.0000017836,0.0000017820,0.0000017794,0.0000017817, +0.0000017856,0.0000017867,0.0000017807,0.0000017735,0.0000017695, +0.0000017747,0.0000017790,0.0000017827,0.0000017874,0.0000017894, +0.0000017918,0.0000017902,0.0000017943,0.0000018074,0.0000018210, +0.0000018305,0.0000018406,0.0000018617,0.0000018794,0.0000018837, +0.0000018743,0.0000018658,0.0000018643,0.0000018674,0.0000018742, +0.0000018744,0.0000018672,0.0000018573,0.0000018521,0.0000018532, +0.0000018560,0.0000018572,0.0000018576,0.0000018569,0.0000018554, +0.0000018542,0.0000018541,0.0000018542,0.0000018539,0.0000018532, +0.0000018537,0.0000018553,0.0000018574,0.0000018582,0.0000018578, +0.0000018559,0.0000018525,0.0000018475,0.0000018443,0.0000018452, +0.0000018507,0.0000018608,0.0000018756,0.0000018900,0.0000018965, +0.0000018956,0.0000018932,0.0000018933,0.0000018890,0.0000018787, +0.0000018825,0.0000018983,0.0000018949,0.0000018708,0.0000018373, +0.0000017985,0.0000017831,0.0000017826,0.0000017783,0.0000017644, +0.0000017462,0.0000017302,0.0000017180,0.0000017094,0.0000017035, +0.0000017002,0.0000016985,0.0000016973,0.0000016958,0.0000016937, +0.0000016906,0.0000016860,0.0000016802,0.0000016735,0.0000016667, +0.0000016603,0.0000016548,0.0000016516,0.0000016519,0.0000016576, +0.0000016645,0.0000016674,0.0000016666,0.0000016654,0.0000016706, +0.0000016848,0.0000017006,0.0000017145,0.0000017268,0.0000017362, +0.0000017427,0.0000017566,0.0000017762,0.0000017816,0.0000017827, +0.0000017950,0.0000018049,0.0000018037,0.0000018000,0.0000018007, +0.0000018039,0.0000018063,0.0000018062,0.0000018044,0.0000018039, +0.0000018059,0.0000018095,0.0000018121,0.0000018130,0.0000018148, +0.0000018200,0.0000018314,0.0000018471,0.0000018582,0.0000018612, +0.0000018702,0.0000018866,0.0000018800,0.0000018476,0.0000018275, +0.0000018256,0.0000018366,0.0000018495,0.0000018351,0.0000017926, +0.0000017535,0.0000017401,0.0000017418,0.0000017444,0.0000017420, +0.0000017388,0.0000017395,0.0000017398,0.0000017362,0.0000017353, +0.0000017411,0.0000017450,0.0000017585,0.0000017768,0.0000017721, +0.0000017679,0.0000017678,0.0000017635,0.0000017566,0.0000017528, +0.0000017547,0.0000017742,0.0000017966,0.0000018172,0.0000018096, +0.0000017718,0.0000017453,0.0000017419,0.0000017478,0.0000017635, +0.0000017875,0.0000018046,0.0000018068,0.0000018004,0.0000018060, +0.0000018470,0.0000019101,0.0000019521,0.0000019597,0.0000019495, +0.0000019379,0.0000019319,0.0000019310,0.0000019291,0.0000019282, +0.0000019263,0.0000019225,0.0000019176,0.0000019182,0.0000019132, +0.0000019186,0.0000019211,0.0000019203,0.0000019133,0.0000018992, +0.0000018910,0.0000018986,0.0000019287,0.0000019642,0.0000019782, +0.0000019689,0.0000019560,0.0000019521,0.0000019552,0.0000019610, +0.0000019672,0.0000019730,0.0000019757,0.0000019793,0.0000019895, +0.0000019786,0.0000019351,0.0000019062,0.0000019085,0.0000019238, +0.0000019494,0.0000019852,0.0000020124,0.0000020206,0.0000020127, +0.0000019836,0.0000019476,0.0000019564,0.0000019957,0.0000019959, +0.0000019900,0.0000019828,0.0000019490,0.0000019396,0.0000019917, +0.0000020093,0.0000019843,0.0000019506,0.0000019355,0.0000019526, +0.0000019940,0.0000020216,0.0000020257,0.0000020195,0.0000019967, +0.0000019857,0.0000019962,0.0000020083,0.0000020165,0.0000020230, +0.0000020255,0.0000020246,0.0000020207,0.0000020141,0.0000020016, +0.0000019893,0.0000019923,0.0000020087,0.0000020142,0.0000020103, +0.0000020184,0.0000020281,0.0000020256,0.0000019640,0.0000018756, +0.0000018401,0.0000018496,0.0000018273,0.0000018151,0.0000018112, +0.0000018122,0.0000018177,0.0000018145,0.0000017958,0.0000017981, +0.0000018306,0.0000018381,0.0000018133,0.0000017929,0.0000017760, +0.0000017831,0.0000018016,0.0000018097,0.0000018318,0.0000018358, +0.0000018397,0.0000018520,0.0000018529,0.0000018713,0.0000019320, +0.0000019661,0.0000019640,0.0000019587,0.0000019588,0.0000019607, +0.0000019639,0.0000019666,0.0000019686,0.0000019663,0.0000019581, +0.0000019383,0.0000019120,0.0000018799,0.0000018547,0.0000018384, +0.0000018346,0.0000018331,0.0000018383,0.0000018406,0.0000018398, +0.0000018342,0.0000018262,0.0000018209,0.0000018186,0.0000018149, +0.0000018113,0.0000018092,0.0000018080,0.0000018058,0.0000018038, +0.0000018064,0.0000018124,0.0000018226,0.0000018342,0.0000018446, +0.0000018526,0.0000018533,0.0000018465,0.0000018355,0.0000018308, +0.0000018345,0.0000018499,0.0000018702,0.0000018758,0.0000018635, +0.0000018506,0.0000018457,0.0000018439,0.0000018432,0.0000018456, +0.0000018572,0.0000018747,0.0000018951,0.0000019056,0.0000019088, +0.0000019040,0.0000018939,0.0000018836,0.0000018754,0.0000018695, +0.0000018668,0.0000018650,0.0000018614,0.0000018585,0.0000018561, +0.0000018561,0.0000018555,0.0000018592,0.0000018642,0.0000018713, +0.0000018784,0.0000018863,0.0000018913,0.0000018953,0.0000018987, +0.0000018956,0.0000018937,0.0000018934,0.0000018938,0.0000018927, +0.0000018908,0.0000018895,0.0000018898,0.0000018899,0.0000018904, +0.0000018913,0.0000018923,0.0000018918,0.0000018903,0.0000018896, +0.0000018883,0.0000018907,0.0000018930,0.0000018944,0.0000018942, +0.0000018932,0.0000018896,0.0000018834,0.0000018732,0.0000018646, +0.0000018549,0.0000018371,0.0000018176,0.0000017942,0.0000017833, +0.0000017834,0.0000017961,0.0000018132,0.0000018244,0.0000018324, +0.0000018328,0.0000018310,0.0000018291,0.0000018280,0.0000018266, +0.0000018265,0.0000018302,0.0000018364,0.0000018445,0.0000018589, +0.0000018784,0.0000019011,0.0000019237,0.0000019425,0.0000019536, +0.0000019579,0.0000019541,0.0000019484,0.0000019373,0.0000019208, +0.0000019029,0.0000018886,0.0000018803,0.0000018779,0.0000018835, +0.0000018970,0.0000019133,0.0000019254,0.0000019323,0.0000019365, +0.0000019392,0.0000019400,0.0000019385,0.0000019358,0.0000019286, +0.0000019046,0.0000018468,0.0000017709,0.0000017239,0.0000017196, +0.0000017332,0.0000017438,0.0000017415,0.0000017260,0.0000017141, +0.0000017264,0.0000017936,0.0000018802,0.0000019363,0.0000019603, +0.0000019716,0.0000019803,0.0000019858,0.0000019894,0.0000019911, +0.0000019914,0.0000019902,0.0000019880,0.0000019850,0.0000019817, +0.0000019784,0.0000019755,0.0000019736,0.0000019727,0.0000019728, +0.0000019740,0.0000019756,0.0000019771,0.0000019794,0.0000019819, +0.0000019849,0.0000019879,0.0000019910,0.0000019940,0.0000019968, +0.0000019977,0.0000019982,0.0000019978,0.0000019986,0.0000019978, +0.0000019977,0.0000019965,0.0000019940,0.0000019924,0.0000019913, +0.0000019894,0.0000019866,0.0000019843,0.0000019833,0.0000019831, +0.0000019831,0.0000019830,0.0000019828,0.0000019834,0.0000019853, +0.0000019880,0.0000019912,0.0000019942,0.0000019961,0.0000019956, +0.0000019930,0.0000019930,0.0000019965,0.0000020009,0.0000020053, +0.0000020048,0.0000019938,0.0000019810,0.0000019743,0.0000019628, +0.0000019504,0.0000019434,0.0000019394,0.0000019401,0.0000019456, +0.0000019459,0.0000019362,0.0000019188,0.0000019047,0.0000018975, +0.0000018951,0.0000018948,0.0000018948,0.0000018945,0.0000018952, +0.0000019002,0.0000019093,0.0000019163,0.0000019172,0.0000019169, +0.0000019181,0.0000019189,0.0000019171,0.0000019129,0.0000019079, +0.0000019037,0.0000019007,0.0000018993,0.0000018983,0.0000018978, +0.0000018980,0.0000018991,0.0000019011,0.0000019029,0.0000019043, +0.0000019067,0.0000019073,0.0000019079,0.0000019068,0.0000019040, +0.0000019016,0.0000018994,0.0000018969,0.0000018947,0.0000018933, +0.0000018908,0.0000018903,0.0000018919,0.0000018951,0.0000018994, +0.0000019036,0.0000019078,0.0000019117,0.0000019146,0.0000019172, +0.0000019200,0.0000019239,0.0000019281,0.0000019315,0.0000019336, +0.0000019346,0.0000019346,0.0000019336,0.0000019327,0.0000019332, +0.0000019354,0.0000019379,0.0000019397,0.0000019410,0.0000019417, +0.0000019418,0.0000019411,0.0000019400,0.0000019390,0.0000019373, +0.0000019353,0.0000019335,0.0000019315,0.0000019286,0.0000019257, +0.0000019237,0.0000019220,0.0000019204,0.0000019186,0.0000019155, +0.0000019104,0.0000019035,0.0000018952,0.0000018872,0.0000018827, +0.0000018829,0.0000018867,0.0000018920,0.0000018971,0.0000018999, +0.0000018995,0.0000018979,0.0000018974,0.0000018983,0.0000019033, +0.0000019116,0.0000019171,0.0000019192,0.0000019192,0.0000019181, +0.0000019164,0.0000019140,0.0000019103,0.0000019051,0.0000018997, +0.0000018975,0.0000018983,0.0000018991,0.0000018974,0.0000018926, +0.0000018883,0.0000018871,0.0000018896,0.0000018927,0.0000018931, +0.0000018908,0.0000018862,0.0000018805,0.0000018769,0.0000018742, +0.0000018699,0.0000018661,0.0000018645,0.0000018639,0.0000018668, +0.0000018738,0.0000018784,0.0000018773,0.0000018705,0.0000018632, +0.0000018568,0.0000018514,0.0000018454,0.0000018360,0.0000018326, +0.0000018348,0.0000018342,0.0000018291,0.0000018282,0.0000018333, +0.0000018393,0.0000018420,0.0000018421,0.0000018414,0.0000018407, +0.0000018413,0.0000018438,0.0000018453,0.0000018422,0.0000018365, +0.0000018283,0.0000018179,0.0000018085,0.0000018031,0.0000017990, +0.0000017922,0.0000017845,0.0000017771,0.0000017695,0.0000017633, +0.0000017594,0.0000017576,0.0000017578,0.0000017591,0.0000017605, +0.0000017604,0.0000017589,0.0000017548,0.0000017496,0.0000017442, +0.0000017335,0.0000017202,0.0000017105,0.0000017096,0.0000017114, +0.0000017100,0.0000017056,0.0000017023,0.0000017019,0.0000017023, +0.0000017023,0.0000017016,0.0000017000,0.0000016965,0.0000016941, +0.0000016945,0.0000016943,0.0000016924,0.0000016895,0.0000016872, +0.0000016864,0.0000016858,0.0000016843,0.0000016841,0.0000016864, +0.0000016888,0.0000016901,0.0000016905,0.0000016900,0.0000016895, +0.0000016886,0.0000016872,0.0000016854,0.0000016835,0.0000016822, +0.0000016820,0.0000016823,0.0000016821,0.0000016835,0.0000016874, +0.0000016912,0.0000016917,0.0000016898,0.0000016907,0.0000016917, +0.0000016828,0.0000016721,0.0000016780,0.0000016930,0.0000016960, +0.0000017076,0.0000017222,0.0000017002,0.0000016593,0.0000016457, +0.0000016461,0.0000016486,0.0000016513,0.0000016541,0.0000016556, +0.0000016556,0.0000016553,0.0000016557,0.0000016569,0.0000016591, +0.0000016611,0.0000016611,0.0000016609,0.0000016608,0.0000016603, +0.0000016577,0.0000016521,0.0000016476,0.0000016474,0.0000016482, +0.0000016504,0.0000016541,0.0000016564,0.0000016567,0.0000016559, +0.0000016542,0.0000016541,0.0000016567,0.0000016602,0.0000016642, +0.0000016683,0.0000016747,0.0000016819,0.0000016859,0.0000016841, +0.0000016784,0.0000016735,0.0000016730,0.0000016779,0.0000016856, +0.0000016942,0.0000017012,0.0000017030,0.0000016987,0.0000016930, +0.0000017005,0.0000017336,0.0000017639,0.0000017668,0.0000017534, +0.0000017449,0.0000017488,0.0000017593,0.0000017709,0.0000017826, +0.0000017901,0.0000017918,0.0000017940,0.0000017978,0.0000017964, +0.0000017883,0.0000017793,0.0000017725,0.0000017691,0.0000017683, +0.0000017703,0.0000017740,0.0000017772,0.0000017795,0.0000017806, +0.0000017830,0.0000017908,0.0000018008,0.0000018025,0.0000017964, +0.0000017921,0.0000017937,0.0000017895,0.0000017863,0.0000017898, +0.0000018001,0.0000018089,0.0000018139,0.0000018196,0.0000018234, +0.0000018207,0.0000018129,0.0000018056,0.0000018008,0.0000017979, +0.0000017952,0.0000017899,0.0000017843,0.0000017808,0.0000017812, +0.0000017822,0.0000017793,0.0000017787,0.0000017824,0.0000017840, +0.0000017823,0.0000017762,0.0000017728,0.0000017748,0.0000017794, +0.0000017806,0.0000017865,0.0000017889,0.0000017894,0.0000017869, +0.0000017903,0.0000018031,0.0000018168,0.0000018277,0.0000018362, +0.0000018555,0.0000018748,0.0000018835,0.0000018789,0.0000018699, +0.0000018661,0.0000018660,0.0000018724,0.0000018784,0.0000018766, +0.0000018687,0.0000018592,0.0000018537,0.0000018544,0.0000018569, +0.0000018578,0.0000018580,0.0000018590,0.0000018601,0.0000018606, +0.0000018607,0.0000018599,0.0000018583,0.0000018570,0.0000018571, +0.0000018570,0.0000018559,0.0000018528,0.0000018477,0.0000018427, +0.0000018403,0.0000018422,0.0000018475,0.0000018570,0.0000018711, +0.0000018854,0.0000018940,0.0000018952,0.0000018935,0.0000018931, +0.0000018931,0.0000018873,0.0000018797,0.0000018883,0.0000019001, +0.0000018886,0.0000018633,0.0000018294,0.0000017953,0.0000017838, +0.0000017836,0.0000017784,0.0000017624,0.0000017410,0.0000017222, +0.0000017069,0.0000016958,0.0000016879,0.0000016824,0.0000016785, +0.0000016753,0.0000016720,0.0000016687,0.0000016650,0.0000016611, +0.0000016574,0.0000016537,0.0000016499,0.0000016464,0.0000016449, +0.0000016484,0.0000016575,0.0000016668,0.0000016695,0.0000016677, +0.0000016671,0.0000016735,0.0000016868,0.0000017014,0.0000017147, +0.0000017266,0.0000017362,0.0000017412,0.0000017524,0.0000017743, +0.0000017833,0.0000017819,0.0000017914,0.0000018033,0.0000018059, +0.0000018025,0.0000018007,0.0000018020,0.0000018053,0.0000018084, +0.0000018106,0.0000018116,0.0000018121,0.0000018134,0.0000018158, +0.0000018193,0.0000018245,0.0000018329,0.0000018442,0.0000018546, +0.0000018592,0.0000018621,0.0000018741,0.0000018867,0.0000018753, +0.0000018466,0.0000018302,0.0000018296,0.0000018432,0.0000018486, +0.0000018207,0.0000017753,0.0000017436,0.0000017397,0.0000017439, +0.0000017418,0.0000017338,0.0000017301,0.0000017350,0.0000017401, +0.0000017385,0.0000017376,0.0000017409,0.0000017426,0.0000017563, +0.0000017763,0.0000017712,0.0000017677,0.0000017673,0.0000017626, +0.0000017553,0.0000017517,0.0000017568,0.0000017791,0.0000018032, +0.0000018168,0.0000017940,0.0000017559,0.0000017415,0.0000017423, +0.0000017523,0.0000017732,0.0000017949,0.0000018016,0.0000017969, +0.0000017985,0.0000018394,0.0000019091,0.0000019526,0.0000019535, +0.0000019397,0.0000019349,0.0000019407,0.0000019515,0.0000019594, +0.0000019637,0.0000019646,0.0000019632,0.0000019589,0.0000019515, +0.0000019405,0.0000019278,0.0000019170,0.0000019045,0.0000018977, +0.0000018867,0.0000018782,0.0000018735,0.0000018705,0.0000018881, +0.0000019274,0.0000019654,0.0000019769,0.0000019696,0.0000019616, +0.0000019602,0.0000019637,0.0000019691,0.0000019739,0.0000019763, +0.0000019828,0.0000019926,0.0000019760,0.0000019296,0.0000019040, +0.0000019079,0.0000019220,0.0000019462,0.0000019858,0.0000020159, +0.0000020237,0.0000020129,0.0000019778,0.0000019434,0.0000019734, +0.0000019998,0.0000019905,0.0000019879,0.0000019662,0.0000019374, +0.0000019658,0.0000020071,0.0000019946,0.0000019595,0.0000019357, +0.0000019480,0.0000019886,0.0000020186,0.0000020237,0.0000020205, +0.0000020014,0.0000019834,0.0000019889,0.0000020029,0.0000020110, +0.0000020164,0.0000020195,0.0000020193,0.0000020167,0.0000020107, +0.0000019992,0.0000019902,0.0000019947,0.0000020123,0.0000020182, +0.0000020140,0.0000020184,0.0000020277,0.0000020266,0.0000019747, +0.0000018849,0.0000018423,0.0000018516,0.0000018307,0.0000018171, +0.0000018163,0.0000018371,0.0000018572,0.0000018612,0.0000018384, +0.0000018126,0.0000018298,0.0000018403,0.0000018187,0.0000017950, +0.0000017786,0.0000017859,0.0000018043,0.0000018123,0.0000018317, +0.0000018354,0.0000018431,0.0000018547,0.0000018527,0.0000018859, +0.0000019501,0.0000019748,0.0000019707,0.0000019647,0.0000019622, +0.0000019631,0.0000019624,0.0000019604,0.0000019525,0.0000019351, +0.0000019110,0.0000018813,0.0000018544,0.0000018354,0.0000018323, +0.0000018416,0.0000018535,0.0000018678,0.0000018785,0.0000018837, +0.0000018848,0.0000018810,0.0000018699,0.0000018543,0.0000018393, +0.0000018276,0.0000018196,0.0000018151,0.0000018132,0.0000018139, +0.0000018172,0.0000018227,0.0000018288,0.0000018356,0.0000018432, +0.0000018512,0.0000018556,0.0000018513,0.0000018406,0.0000018357, +0.0000018397,0.0000018597,0.0000018777,0.0000018719,0.0000018581, +0.0000018513,0.0000018479,0.0000018436,0.0000018411,0.0000018440, +0.0000018558,0.0000018757,0.0000018880,0.0000018939,0.0000018903, +0.0000018824,0.0000018752,0.0000018700,0.0000018677,0.0000018660, +0.0000018639,0.0000018609,0.0000018592,0.0000018598,0.0000018587, +0.0000018637,0.0000018711,0.0000018812,0.0000018893,0.0000018980, +0.0000019000,0.0000018929,0.0000018918,0.0000018821,0.0000018700, +0.0000018592,0.0000018480,0.0000018399,0.0000018341,0.0000018280, +0.0000018232,0.0000018203,0.0000018188,0.0000018183,0.0000018182, +0.0000018196,0.0000018226,0.0000018267,0.0000018310,0.0000018353, +0.0000018396,0.0000018436,0.0000018477,0.0000018518,0.0000018550, +0.0000018563,0.0000018570,0.0000018579,0.0000018599,0.0000018628, +0.0000018710,0.0000018795,0.0000018771,0.0000018730,0.0000018506, +0.0000018195,0.0000017907,0.0000017741,0.0000017762,0.0000017875, +0.0000018046,0.0000018201,0.0000018295,0.0000018337,0.0000018325, +0.0000018295,0.0000018248,0.0000018203,0.0000018182,0.0000018153, +0.0000018138,0.0000018197,0.0000018313,0.0000018500,0.0000018753, +0.0000019026,0.0000019266,0.0000019435,0.0000019517,0.0000019498, +0.0000019413,0.0000019211,0.0000018989,0.0000018817,0.0000018745, +0.0000018741,0.0000018850,0.0000019020,0.0000019154,0.0000019230, +0.0000019278,0.0000019308,0.0000019316,0.0000019288,0.0000019177, +0.0000018848,0.0000018210,0.0000017463,0.0000017071,0.0000017155, +0.0000017374,0.0000017568,0.0000017617,0.0000017553,0.0000017354, +0.0000017212,0.0000017344,0.0000018039,0.0000018835,0.0000019350, +0.0000019599,0.0000019726,0.0000019815,0.0000019867,0.0000019895, +0.0000019896,0.0000019869,0.0000019821,0.0000019769,0.0000019723, +0.0000019686,0.0000019656,0.0000019634,0.0000019628,0.0000019637, +0.0000019663,0.0000019702,0.0000019735,0.0000019757,0.0000019773, +0.0000019782,0.0000019790,0.0000019796,0.0000019809,0.0000019830, +0.0000019860,0.0000019892,0.0000019924,0.0000019954,0.0000019976, +0.0000019998,0.0000020017,0.0000020017,0.0000020000,0.0000020002, +0.0000020010,0.0000020003,0.0000019991,0.0000019986,0.0000019985, +0.0000019983,0.0000019969,0.0000019953,0.0000019937,0.0000019929, +0.0000019930,0.0000019937,0.0000019946,0.0000019961,0.0000019985, +0.0000019997,0.0000020004,0.0000020029,0.0000020062,0.0000020078, +0.0000020067,0.0000019982,0.0000019831,0.0000019744,0.0000019709, +0.0000019632,0.0000019569,0.0000019526,0.0000019467,0.0000019451, +0.0000019478,0.0000019457,0.0000019312,0.0000019120,0.0000018994, +0.0000018934,0.0000018930,0.0000018955,0.0000018971,0.0000018993, +0.0000019070,0.0000019162,0.0000019180,0.0000019160,0.0000019160, +0.0000019170,0.0000019145,0.0000019090,0.0000019040,0.0000018992, +0.0000018950,0.0000018917,0.0000018889,0.0000018853,0.0000018820, +0.0000018796,0.0000018801,0.0000018832,0.0000018880,0.0000018933, +0.0000018991,0.0000019038,0.0000019069,0.0000019082,0.0000019068, +0.0000019051,0.0000019042,0.0000019029,0.0000019009,0.0000018978, +0.0000018942,0.0000018910,0.0000018889,0.0000018881,0.0000018864, +0.0000018874,0.0000018887,0.0000018915,0.0000018955,0.0000018998, +0.0000019036,0.0000019074,0.0000019107,0.0000019127,0.0000019130, +0.0000019122,0.0000019109,0.0000019094,0.0000019083,0.0000019088, +0.0000019108,0.0000019133,0.0000019157,0.0000019182,0.0000019206, +0.0000019230,0.0000019241,0.0000019246,0.0000019250,0.0000019243, +0.0000019225,0.0000019208,0.0000019184,0.0000019144,0.0000019103, +0.0000019072,0.0000019053,0.0000019039,0.0000019034,0.0000019023, +0.0000018987,0.0000018935,0.0000018876,0.0000018822,0.0000018785, +0.0000018776,0.0000018788,0.0000018819,0.0000018854,0.0000018879, +0.0000018887,0.0000018886,0.0000018888,0.0000018902,0.0000018960, +0.0000019051,0.0000019121,0.0000019149,0.0000019143,0.0000019123, +0.0000019108,0.0000019108,0.0000019098,0.0000019060,0.0000019008, +0.0000018984,0.0000018993,0.0000019002,0.0000018985,0.0000018937, +0.0000018891,0.0000018870,0.0000018878,0.0000018902,0.0000018925, +0.0000018929,0.0000018895,0.0000018826,0.0000018773,0.0000018750, +0.0000018714,0.0000018675,0.0000018663,0.0000018656,0.0000018671, +0.0000018732,0.0000018782,0.0000018785,0.0000018739,0.0000018672, +0.0000018604,0.0000018532,0.0000018445,0.0000018359,0.0000018347, +0.0000018364,0.0000018346,0.0000018310,0.0000018312,0.0000018364, +0.0000018413,0.0000018431,0.0000018427,0.0000018428,0.0000018426, +0.0000018427,0.0000018452,0.0000018470,0.0000018430,0.0000018355, +0.0000018253,0.0000018139,0.0000018068,0.0000018054,0.0000018040, +0.0000017986,0.0000017911,0.0000017821,0.0000017725,0.0000017653, +0.0000017617,0.0000017606,0.0000017617,0.0000017633,0.0000017633, +0.0000017618,0.0000017600,0.0000017568,0.0000017521,0.0000017471, +0.0000017381,0.0000017246,0.0000017140,0.0000017091,0.0000017107, +0.0000017130,0.0000017129,0.0000017096,0.0000017052,0.0000017015, +0.0000016990,0.0000016974,0.0000016961,0.0000016946,0.0000016953, +0.0000016968,0.0000016964,0.0000016940,0.0000016908,0.0000016887, +0.0000016879,0.0000016862,0.0000016842,0.0000016847,0.0000016870, +0.0000016889,0.0000016899,0.0000016896,0.0000016884,0.0000016867, +0.0000016851,0.0000016844,0.0000016834,0.0000016818,0.0000016805, +0.0000016797,0.0000016784,0.0000016780,0.0000016810,0.0000016866, +0.0000016913,0.0000016917,0.0000016902,0.0000016917,0.0000016907, +0.0000016781,0.0000016707,0.0000016825,0.0000016934,0.0000016967, +0.0000017137,0.0000017107,0.0000016721,0.0000016473,0.0000016455, +0.0000016466,0.0000016488,0.0000016517,0.0000016543,0.0000016553, +0.0000016545,0.0000016531,0.0000016516,0.0000016511,0.0000016514, +0.0000016511,0.0000016514,0.0000016538,0.0000016546,0.0000016500, +0.0000016410,0.0000016352,0.0000016343,0.0000016353,0.0000016391, +0.0000016444,0.0000016474,0.0000016478,0.0000016475,0.0000016466, +0.0000016470,0.0000016492,0.0000016518,0.0000016544,0.0000016569, +0.0000016609,0.0000016672,0.0000016736,0.0000016775,0.0000016754, +0.0000016693,0.0000016657,0.0000016689,0.0000016770,0.0000016855, +0.0000016927,0.0000016983,0.0000016992,0.0000016954,0.0000016919, +0.0000017019,0.0000017352,0.0000017648,0.0000017673,0.0000017537, +0.0000017461,0.0000017497,0.0000017583,0.0000017686,0.0000017814, +0.0000017900,0.0000017913,0.0000017927,0.0000017958,0.0000017952, +0.0000017899,0.0000017810,0.0000017732,0.0000017699,0.0000017711, +0.0000017738,0.0000017769,0.0000017794,0.0000017817,0.0000017851, +0.0000017924,0.0000018014,0.0000018037,0.0000018005,0.0000017966, +0.0000017981,0.0000017929,0.0000017885,0.0000017886,0.0000017955, +0.0000018051,0.0000018123,0.0000018184,0.0000018247,0.0000018267, +0.0000018218,0.0000018117,0.0000018027,0.0000017967,0.0000017929, +0.0000017894,0.0000017856,0.0000017819,0.0000017801,0.0000017814, +0.0000017804,0.0000017778,0.0000017796,0.0000017811,0.0000017818, +0.0000017782,0.0000017748,0.0000017756,0.0000017801,0.0000017789, +0.0000017839,0.0000017879,0.0000017872,0.0000017842,0.0000017863, +0.0000017983,0.0000018122,0.0000018243,0.0000018321,0.0000018499, +0.0000018702,0.0000018830,0.0000018821,0.0000018739,0.0000018694, +0.0000018673,0.0000018694,0.0000018780,0.0000018812,0.0000018784, +0.0000018714,0.0000018623,0.0000018553,0.0000018544,0.0000018559, +0.0000018571,0.0000018572,0.0000018572,0.0000018575,0.0000018579, +0.0000018580,0.0000018570,0.0000018549,0.0000018519,0.0000018485, +0.0000018452,0.0000018418,0.0000018385,0.0000018376,0.0000018403, +0.0000018478,0.0000018593,0.0000018731,0.0000018857,0.0000018929, +0.0000018945,0.0000018934,0.0000018922,0.0000018934,0.0000018927, +0.0000018860,0.0000018833,0.0000018944,0.0000018987,0.0000018811, +0.0000018544,0.0000018209,0.0000017927,0.0000017848,0.0000017846, +0.0000017782,0.0000017578,0.0000017323,0.0000017110,0.0000016951, +0.0000016837,0.0000016751,0.0000016687,0.0000016640,0.0000016604, +0.0000016577,0.0000016561,0.0000016555,0.0000016541,0.0000016523, +0.0000016485,0.0000016444,0.0000016431,0.0000016477,0.0000016595, +0.0000016690,0.0000016705,0.0000016692,0.0000016706,0.0000016780, +0.0000016898,0.0000017028,0.0000017155,0.0000017270,0.0000017364, +0.0000017398,0.0000017473,0.0000017697,0.0000017833,0.0000017823, +0.0000017874,0.0000017997,0.0000018056,0.0000018052,0.0000018030, +0.0000018026,0.0000018052,0.0000018091,0.0000018135,0.0000018184, +0.0000018225,0.0000018255,0.0000018285,0.0000018331,0.0000018394, +0.0000018468,0.0000018530,0.0000018564,0.0000018588,0.0000018659, +0.0000018795,0.0000018849,0.0000018679,0.0000018435,0.0000018328, +0.0000018364,0.0000018470,0.0000018403,0.0000018016,0.0000017575, +0.0000017390,0.0000017412,0.0000017437,0.0000017352,0.0000017236, +0.0000017200,0.0000017292,0.0000017405,0.0000017407,0.0000017406, +0.0000017417,0.0000017413,0.0000017558,0.0000017762,0.0000017703, +0.0000017675,0.0000017665,0.0000017615,0.0000017543,0.0000017518, +0.0000017605,0.0000017846,0.0000018092,0.0000018124,0.0000017756, +0.0000017457,0.0000017414,0.0000017454,0.0000017610,0.0000017841, +0.0000017968,0.0000017941,0.0000017919,0.0000018255,0.0000019002, +0.0000019485,0.0000019497,0.0000019366,0.0000019390,0.0000019550, +0.0000019714,0.0000019820,0.0000019849,0.0000019837,0.0000019782, +0.0000019766,0.0000019742,0.0000019716,0.0000019730,0.0000019660, +0.0000019555,0.0000019391,0.0000019184,0.0000019004,0.0000018888, +0.0000018823,0.0000018764,0.0000018761,0.0000018934,0.0000019342, +0.0000019705,0.0000019807,0.0000019775,0.0000019728,0.0000019715, +0.0000019735,0.0000019764,0.0000019796,0.0000019889,0.0000019947, +0.0000019736,0.0000019265,0.0000019032,0.0000019068,0.0000019193, +0.0000019452,0.0000019902,0.0000020204,0.0000020254,0.0000020067, +0.0000019637,0.0000019479,0.0000019931,0.0000019958,0.0000019885, +0.0000019792,0.0000019450,0.0000019471,0.0000019980,0.0000020033, +0.0000019698,0.0000019382,0.0000019422,0.0000019828,0.0000020159, +0.0000020221,0.0000020204,0.0000020067,0.0000019855,0.0000019823, +0.0000019954,0.0000020058,0.0000020109,0.0000020141,0.0000020148, +0.0000020129,0.0000020072,0.0000019968,0.0000019905,0.0000019987, +0.0000020152,0.0000020210,0.0000020172,0.0000020187,0.0000020264, +0.0000020267,0.0000019857,0.0000018970,0.0000018455,0.0000018514, +0.0000018345,0.0000018195,0.0000018264,0.0000018580,0.0000018826, +0.0000018893,0.0000018727,0.0000018378,0.0000018341,0.0000018446, +0.0000018245,0.0000017984,0.0000017811,0.0000017880,0.0000018064, +0.0000018145,0.0000018317,0.0000018348,0.0000018462,0.0000018571, +0.0000018553,0.0000019005,0.0000019634,0.0000019763,0.0000019716, +0.0000019629,0.0000019558,0.0000019491,0.0000019381,0.0000019239, +0.0000019034,0.0000018773,0.0000018524,0.0000018342,0.0000018311, +0.0000018359,0.0000018537,0.0000018771,0.0000018949,0.0000019035, +0.0000019052,0.0000019043,0.0000019011,0.0000019005,0.0000019017, +0.0000018956,0.0000018844,0.0000018720,0.0000018610,0.0000018518, +0.0000018452,0.0000018412,0.0000018394,0.0000018388,0.0000018403, +0.0000018439,0.0000018482,0.0000018528,0.0000018523,0.0000018449, +0.0000018389,0.0000018435,0.0000018687,0.0000018781,0.0000018672, +0.0000018586,0.0000018550,0.0000018496,0.0000018417,0.0000018369, +0.0000018399,0.0000018521,0.0000018645,0.0000018757,0.0000018765, +0.0000018723,0.0000018679,0.0000018670,0.0000018667,0.0000018657, +0.0000018626,0.0000018593,0.0000018552,0.0000018557,0.0000018609, +0.0000018712,0.0000018843,0.0000018913,0.0000018999,0.0000018955, +0.0000018928,0.0000018774,0.0000018584,0.0000018347,0.0000018101, +0.0000017872,0.0000017673,0.0000017498,0.0000017359,0.0000017256, +0.0000017185,0.0000017138,0.0000017112,0.0000017105,0.0000017107, +0.0000017112,0.0000017118,0.0000017135,0.0000017174,0.0000017229, +0.0000017293,0.0000017354,0.0000017404,0.0000017444,0.0000017482, +0.0000017525,0.0000017568,0.0000017594,0.0000017611,0.0000017637, +0.0000017693,0.0000017805,0.0000017966,0.0000018187,0.0000018446, +0.0000018704,0.0000018805,0.0000018764,0.0000018518,0.0000018142, +0.0000017830,0.0000017678,0.0000017656,0.0000017799,0.0000017955, +0.0000018126,0.0000018234,0.0000018296,0.0000018308,0.0000018296, +0.0000018270,0.0000018205,0.0000018139,0.0000018087,0.0000018069, +0.0000018052,0.0000018145,0.0000018317,0.0000018564,0.0000018860, +0.0000019164,0.0000019402,0.0000019500,0.0000019438,0.0000019243, +0.0000018979,0.0000018779,0.0000018707,0.0000018727,0.0000018849, +0.0000018982,0.0000019075,0.0000019138,0.0000019167,0.0000019157, +0.0000019030,0.0000018636,0.0000017946,0.0000017288,0.0000017057, +0.0000017126,0.0000017352,0.0000017525,0.0000017643,0.0000017678, +0.0000017604,0.0000017410,0.0000017270,0.0000017419,0.0000018093, +0.0000018784,0.0000019278,0.0000019567,0.0000019707,0.0000019786, +0.0000019817,0.0000019814,0.0000019775,0.0000019702,0.0000019624, +0.0000019567,0.0000019535,0.0000019520,0.0000019523,0.0000019544, +0.0000019571,0.0000019600,0.0000019639,0.0000019683,0.0000019720, +0.0000019743,0.0000019755,0.0000019759,0.0000019754,0.0000019743, +0.0000019734,0.0000019733,0.0000019744,0.0000019767,0.0000019796, +0.0000019831,0.0000019872,0.0000019913,0.0000019944,0.0000019963, +0.0000019973,0.0000019992,0.0000020015,0.0000020028,0.0000020035, +0.0000020043,0.0000020046,0.0000020035,0.0000020004,0.0000019978, +0.0000019953,0.0000019941,0.0000019934,0.0000019936,0.0000019945, +0.0000019973,0.0000020016,0.0000020051,0.0000020079,0.0000020098, +0.0000020096,0.0000020074,0.0000020016,0.0000019879,0.0000019735, +0.0000019695,0.0000019677,0.0000019644,0.0000019645,0.0000019635, +0.0000019558,0.0000019503,0.0000019501,0.0000019439,0.0000019255, +0.0000019064,0.0000018955,0.0000018916,0.0000018939,0.0000018989, +0.0000019021,0.0000019081,0.0000019163,0.0000019181,0.0000019163, +0.0000019164,0.0000019164,0.0000019117,0.0000019058,0.0000019037, +0.0000019015,0.0000018990,0.0000018947,0.0000018890,0.0000018832, +0.0000018763,0.0000018713,0.0000018697,0.0000018718,0.0000018768, +0.0000018823,0.0000018880,0.0000018940,0.0000018987,0.0000019024, +0.0000019041,0.0000019042,0.0000019042,0.0000019051,0.0000019058, +0.0000019055,0.0000019038,0.0000019010,0.0000018976,0.0000018942, +0.0000018905,0.0000018880,0.0000018860,0.0000018847,0.0000018868, +0.0000018902,0.0000018898,0.0000018908,0.0000018916,0.0000018917, +0.0000018902,0.0000018877,0.0000018857,0.0000018848,0.0000018849, +0.0000018860,0.0000018881,0.0000018912,0.0000018954,0.0000019000, +0.0000019047,0.0000019089,0.0000019114,0.0000019122,0.0000019121, +0.0000019104,0.0000019076,0.0000019053,0.0000019029,0.0000018989, +0.0000018942,0.0000018905,0.0000018883,0.0000018869,0.0000018861, +0.0000018865,0.0000018854,0.0000018825,0.0000018790,0.0000018752, +0.0000018722,0.0000018701,0.0000018693,0.0000018712,0.0000018739, +0.0000018757,0.0000018761,0.0000018757,0.0000018757,0.0000018779, +0.0000018848,0.0000018943,0.0000019027,0.0000019065,0.0000019058, +0.0000019037,0.0000019040,0.0000019070,0.0000019087,0.0000019065, +0.0000019021,0.0000018992,0.0000018994,0.0000019002,0.0000018991, +0.0000018951,0.0000018914,0.0000018890,0.0000018878,0.0000018886, +0.0000018918,0.0000018950,0.0000018934,0.0000018855,0.0000018783, +0.0000018757,0.0000018734,0.0000018697,0.0000018688,0.0000018683, +0.0000018682,0.0000018717,0.0000018767,0.0000018785,0.0000018762, +0.0000018704,0.0000018635,0.0000018542,0.0000018434,0.0000018367, +0.0000018369,0.0000018375,0.0000018359,0.0000018347,0.0000018348, +0.0000018378,0.0000018417,0.0000018431,0.0000018426,0.0000018433, +0.0000018435,0.0000018435,0.0000018461,0.0000018476,0.0000018435, +0.0000018344,0.0000018227,0.0000018118,0.0000018079,0.0000018091, +0.0000018089,0.0000018041,0.0000017958,0.0000017858,0.0000017762, +0.0000017697,0.0000017670,0.0000017665,0.0000017675,0.0000017673, +0.0000017654,0.0000017629,0.0000017609,0.0000017590,0.0000017554, +0.0000017497,0.0000017421,0.0000017293,0.0000017180,0.0000017111, +0.0000017103,0.0000017128,0.0000017149,0.0000017159,0.0000017127, +0.0000017058,0.0000016989,0.0000016949,0.0000016915,0.0000016908, +0.0000016926,0.0000016939,0.0000016931,0.0000016906,0.0000016880, +0.0000016866,0.0000016849,0.0000016822,0.0000016811,0.0000016823, +0.0000016844,0.0000016866,0.0000016872,0.0000016860,0.0000016838, +0.0000016815,0.0000016808,0.0000016809,0.0000016805,0.0000016794, +0.0000016780,0.0000016763,0.0000016751,0.0000016765,0.0000016811, +0.0000016871,0.0000016915,0.0000016915,0.0000016910,0.0000016924, +0.0000016881,0.0000016732,0.0000016716,0.0000016869,0.0000016924, +0.0000017009,0.0000017127,0.0000016898,0.0000016544,0.0000016468, +0.0000016470,0.0000016482,0.0000016506,0.0000016531,0.0000016540, +0.0000016522,0.0000016486,0.0000016446,0.0000016422,0.0000016417, +0.0000016426,0.0000016451,0.0000016493,0.0000016495,0.0000016424, +0.0000016326,0.0000016251,0.0000016248,0.0000016288,0.0000016325, +0.0000016342,0.0000016354,0.0000016356,0.0000016362,0.0000016367, +0.0000016389,0.0000016422,0.0000016459,0.0000016495,0.0000016527, +0.0000016555,0.0000016584,0.0000016614,0.0000016652,0.0000016677, +0.0000016655,0.0000016616,0.0000016612,0.0000016678,0.0000016773, +0.0000016843,0.0000016895,0.0000016935,0.0000016951,0.0000016933, +0.0000016918,0.0000017028,0.0000017370,0.0000017668,0.0000017689, +0.0000017545,0.0000017471,0.0000017494,0.0000017565,0.0000017668, +0.0000017807,0.0000017892,0.0000017902,0.0000017896,0.0000017918, +0.0000017929,0.0000017907,0.0000017837,0.0000017779,0.0000017763, +0.0000017778,0.0000017807,0.0000017838,0.0000017872,0.0000017913, +0.0000017967,0.0000018020,0.0000018041,0.0000018033,0.0000018016, +0.0000018029,0.0000017966,0.0000017908,0.0000017893,0.0000017927, +0.0000018005,0.0000018088,0.0000018158,0.0000018225,0.0000018279, +0.0000018280,0.0000018210,0.0000018114,0.0000018032,0.0000017973, +0.0000017917,0.0000017862,0.0000017821,0.0000017799,0.0000017805, +0.0000017808,0.0000017783,0.0000017776,0.0000017784,0.0000017794, +0.0000017793,0.0000017764,0.0000017771,0.0000017808,0.0000017785, +0.0000017804,0.0000017855,0.0000017852,0.0000017812,0.0000017823, +0.0000017932,0.0000018075,0.0000018209,0.0000018283,0.0000018445, +0.0000018654,0.0000018807,0.0000018836,0.0000018769,0.0000018727, +0.0000018704,0.0000018692,0.0000018751,0.0000018821,0.0000018831, +0.0000018811,0.0000018756,0.0000018670,0.0000018582,0.0000018535, +0.0000018524,0.0000018529,0.0000018532,0.0000018530,0.0000018523, +0.0000018512,0.0000018495,0.0000018466,0.0000018426,0.0000018392, +0.0000018374,0.0000018367,0.0000018391,0.0000018451,0.0000018544, +0.0000018662,0.0000018782,0.0000018882,0.0000018934,0.0000018947, +0.0000018941,0.0000018923,0.0000018920,0.0000018934,0.0000018914, +0.0000018860,0.0000018888,0.0000018996,0.0000018959,0.0000018720, +0.0000018445,0.0000018125,0.0000017908,0.0000017860,0.0000017858, +0.0000017764,0.0000017502,0.0000017218,0.0000017018,0.0000016889, +0.0000016795,0.0000016720,0.0000016663,0.0000016623,0.0000016596, +0.0000016581,0.0000016573,0.0000016564,0.0000016542,0.0000016496, +0.0000016440,0.0000016431,0.0000016503,0.0000016628,0.0000016705, +0.0000016715,0.0000016722,0.0000016762,0.0000016834,0.0000016929, +0.0000017044,0.0000017165,0.0000017275,0.0000017369,0.0000017395, +0.0000017434,0.0000017639,0.0000017831,0.0000017834,0.0000017846, +0.0000017947,0.0000018030,0.0000018056,0.0000018055,0.0000018055, +0.0000018070,0.0000018102,0.0000018145,0.0000018199,0.0000018266, +0.0000018331,0.0000018384,0.0000018429,0.0000018479,0.0000018515, +0.0000018540,0.0000018557,0.0000018617,0.0000018730,0.0000018821, +0.0000018790,0.0000018590,0.0000018404,0.0000018368,0.0000018432, +0.0000018466,0.0000018253,0.0000017806,0.0000017441,0.0000017383, +0.0000017428,0.0000017406,0.0000017279,0.0000017143,0.0000017115, +0.0000017246,0.0000017411,0.0000017429,0.0000017445,0.0000017436, +0.0000017403,0.0000017576,0.0000017765,0.0000017692,0.0000017673, +0.0000017654,0.0000017601,0.0000017536,0.0000017521,0.0000017659, +0.0000017906,0.0000018130,0.0000017997,0.0000017585,0.0000017422, +0.0000017431,0.0000017524,0.0000017731,0.0000017913,0.0000017927, +0.0000017880,0.0000018100,0.0000018824,0.0000019388,0.0000019461, +0.0000019365,0.0000019436,0.0000019647,0.0000019832,0.0000019901, +0.0000019878,0.0000019816,0.0000019700,0.0000019599,0.0000019535, +0.0000019530,0.0000019567,0.0000019648,0.0000019732,0.0000019762, +0.0000019772,0.0000019661,0.0000019506,0.0000019362,0.0000019262, +0.0000019151,0.0000018978,0.0000018868,0.0000019051,0.0000019475, +0.0000019805,0.0000019902,0.0000019883,0.0000019841,0.0000019821, +0.0000019824,0.0000019867,0.0000019955,0.0000019966,0.0000019714, +0.0000019275,0.0000019048,0.0000019064,0.0000019176,0.0000019503, +0.0000020006,0.0000020246,0.0000020253,0.0000019910,0.0000019493, +0.0000019694,0.0000020001,0.0000019904,0.0000019856,0.0000019590, +0.0000019407,0.0000019787,0.0000020048,0.0000019804,0.0000019438, +0.0000019383,0.0000019763,0.0000020130,0.0000020209,0.0000020201, +0.0000020114,0.0000019907,0.0000019792,0.0000019860,0.0000019987, +0.0000020056,0.0000020090,0.0000020100,0.0000020087,0.0000020033, +0.0000019941,0.0000019916,0.0000020022,0.0000020180,0.0000020227, +0.0000020198,0.0000020190,0.0000020248,0.0000020262,0.0000019959, +0.0000019117,0.0000018509,0.0000018471,0.0000018383,0.0000018230, +0.0000018344,0.0000018701,0.0000018822,0.0000018857,0.0000018823, +0.0000018592,0.0000018466,0.0000018486,0.0000018297,0.0000018027, +0.0000017844,0.0000017897,0.0000018076,0.0000018159,0.0000018316, +0.0000018343,0.0000018484,0.0000018586,0.0000018593,0.0000019127, +0.0000019614,0.0000019654,0.0000019471,0.0000019289,0.0000019127, +0.0000018962,0.0000018794,0.0000018609,0.0000018425,0.0000018293, +0.0000018248,0.0000018250,0.0000018408,0.0000018661,0.0000018919, +0.0000019083,0.0000019146,0.0000019139,0.0000019121,0.0000019084, +0.0000019038,0.0000019004,0.0000019000,0.0000019019,0.0000019034, +0.0000019008,0.0000018996,0.0000018979,0.0000018923,0.0000018867, +0.0000018795,0.0000018683,0.0000018553,0.0000018485,0.0000018482, +0.0000018494,0.0000018458,0.0000018401,0.0000018466,0.0000018743, +0.0000018773,0.0000018669,0.0000018616,0.0000018583,0.0000018494, +0.0000018376,0.0000018310,0.0000018333,0.0000018435,0.0000018548, +0.0000018607,0.0000018612,0.0000018632,0.0000018640,0.0000018658, +0.0000018664,0.0000018619,0.0000018571,0.0000018511,0.0000018525, +0.0000018602,0.0000018724,0.0000018876,0.0000019007,0.0000018989, +0.0000018944,0.0000018738,0.0000018480,0.0000018153,0.0000017816, +0.0000017511,0.0000017266,0.0000017081,0.0000016942,0.0000016842, +0.0000016771,0.0000016714,0.0000016671,0.0000016635,0.0000016609, +0.0000016591,0.0000016581,0.0000016579,0.0000016579,0.0000016577, +0.0000016578,0.0000016592,0.0000016624,0.0000016669,0.0000016718, +0.0000016766,0.0000016804,0.0000016834,0.0000016867,0.0000016906, +0.0000016932,0.0000016944,0.0000016957,0.0000016984,0.0000017038, +0.0000017128,0.0000017280,0.0000017531,0.0000017907,0.0000018342, +0.0000018698,0.0000018823,0.0000018720,0.0000018417,0.0000018023, +0.0000017728,0.0000017615,0.0000017585,0.0000017689,0.0000017818, +0.0000017941,0.0000018078,0.0000018198,0.0000018290,0.0000018297, +0.0000018269,0.0000018207,0.0000018129,0.0000018052,0.0000018017, +0.0000018017,0.0000018059,0.0000018211,0.0000018480,0.0000018844, +0.0000019210,0.0000019437,0.0000019434,0.0000019249,0.0000018962, +0.0000018745,0.0000018677,0.0000018689,0.0000018773,0.0000018856, +0.0000018914,0.0000018918,0.0000018809,0.0000018424,0.0000017759, +0.0000017188,0.0000017032,0.0000017150,0.0000017330,0.0000017431, +0.0000017534,0.0000017642,0.0000017681,0.0000017622,0.0000017450, +0.0000017319,0.0000017465,0.0000018085,0.0000018675,0.0000019142, +0.0000019469,0.0000019612,0.0000019652,0.0000019643,0.0000019603, +0.0000019530,0.0000019445,0.0000019379,0.0000019343,0.0000019330, +0.0000019336,0.0000019380,0.0000019443,0.0000019493,0.0000019526, +0.0000019554,0.0000019583,0.0000019609,0.0000019630,0.0000019650, +0.0000019673,0.0000019689,0.0000019695,0.0000019697,0.0000019698, +0.0000019703,0.0000019714,0.0000019731,0.0000019754,0.0000019786, +0.0000019824,0.0000019855,0.0000019880,0.0000019904,0.0000019936, +0.0000019966,0.0000019986,0.0000019997,0.0000019998,0.0000019982, +0.0000019948,0.0000019911,0.0000019886,0.0000019876,0.0000019878, +0.0000019892,0.0000019917,0.0000019948,0.0000019996,0.0000020045, +0.0000020085,0.0000020110,0.0000020104,0.0000020074,0.0000020030, +0.0000019929,0.0000019763,0.0000019667,0.0000019663,0.0000019657, +0.0000019669,0.0000019730,0.0000019741,0.0000019647,0.0000019555, +0.0000019513,0.0000019402,0.0000019193,0.0000019019,0.0000018927, +0.0000018913,0.0000018972,0.0000019035,0.0000019081,0.0000019145, +0.0000019187,0.0000019179,0.0000019175,0.0000019184,0.0000019151, +0.0000019091,0.0000019076,0.0000019077,0.0000019063,0.0000019025, +0.0000018956,0.0000018876,0.0000018793,0.0000018720,0.0000018677, +0.0000018671,0.0000018699,0.0000018742,0.0000018786,0.0000018830, +0.0000018875,0.0000018917,0.0000018955,0.0000018982,0.0000019004, +0.0000019033,0.0000019067,0.0000019083,0.0000019091,0.0000019085, +0.0000019065,0.0000019037,0.0000019014,0.0000018995,0.0000018970, +0.0000018949,0.0000018946,0.0000018946,0.0000018935,0.0000018916, +0.0000018898,0.0000018879,0.0000018851,0.0000018817,0.0000018790, +0.0000018776,0.0000018775,0.0000018783,0.0000018800,0.0000018830, +0.0000018874,0.0000018926,0.0000018975,0.0000019013,0.0000019034, +0.0000019032,0.0000019013,0.0000018982,0.0000018943,0.0000018913, +0.0000018887,0.0000018849,0.0000018809,0.0000018776,0.0000018754, +0.0000018738,0.0000018716,0.0000018699,0.0000018699,0.0000018687, +0.0000018669,0.0000018651,0.0000018639,0.0000018627,0.0000018616, +0.0000018620,0.0000018632,0.0000018631,0.0000018624,0.0000018618, +0.0000018629,0.0000018672,0.0000018746,0.0000018834,0.0000018916, +0.0000018962,0.0000018966,0.0000018964,0.0000018991,0.0000019042, +0.0000019070,0.0000019060,0.0000019022,0.0000018992,0.0000018986, +0.0000018996,0.0000018993,0.0000018973,0.0000018952,0.0000018925, +0.0000018892,0.0000018883,0.0000018918,0.0000018972,0.0000018972, +0.0000018886,0.0000018799,0.0000018771,0.0000018756,0.0000018726, +0.0000018718,0.0000018715,0.0000018695,0.0000018702,0.0000018746, +0.0000018778,0.0000018767,0.0000018722,0.0000018652,0.0000018544, +0.0000018424,0.0000018382,0.0000018388,0.0000018379,0.0000018380, +0.0000018386,0.0000018368,0.0000018369,0.0000018405,0.0000018424, +0.0000018421,0.0000018435,0.0000018441,0.0000018443,0.0000018466, +0.0000018477,0.0000018436,0.0000018335,0.0000018210,0.0000018115, +0.0000018103,0.0000018121,0.0000018122,0.0000018071,0.0000017984, +0.0000017893,0.0000017807,0.0000017752,0.0000017732,0.0000017725, +0.0000017718,0.0000017700,0.0000017670,0.0000017643,0.0000017628, +0.0000017616,0.0000017585,0.0000017517,0.0000017447,0.0000017339, +0.0000017216,0.0000017142,0.0000017112,0.0000017114,0.0000017135, +0.0000017163,0.0000017167,0.0000017126,0.0000017055,0.0000016977, +0.0000016922,0.0000016908,0.0000016913,0.0000016907,0.0000016880, +0.0000016852,0.0000016835,0.0000016820,0.0000016794,0.0000016771, +0.0000016771,0.0000016785,0.0000016807,0.0000016826,0.0000016824, +0.0000016802,0.0000016773,0.0000016760,0.0000016766,0.0000016777, +0.0000016780,0.0000016770,0.0000016753,0.0000016741,0.0000016747, +0.0000016780,0.0000016828,0.0000016883,0.0000016915,0.0000016913, +0.0000016918,0.0000016924,0.0000016831,0.0000016693,0.0000016754, +0.0000016892,0.0000016921,0.0000017051,0.0000017044,0.0000016708, +0.0000016498,0.0000016491,0.0000016489,0.0000016498,0.0000016508, +0.0000016504,0.0000016476,0.0000016428,0.0000016380,0.0000016357, +0.0000016358,0.0000016381,0.0000016418,0.0000016454,0.0000016441, +0.0000016363,0.0000016273,0.0000016188,0.0000016191,0.0000016227, +0.0000016212,0.0000016201,0.0000016211,0.0000016232,0.0000016253, +0.0000016267,0.0000016297,0.0000016320,0.0000016351,0.0000016392, +0.0000016439,0.0000016487,0.0000016535,0.0000016569,0.0000016591, +0.0000016606,0.0000016606,0.0000016590,0.0000016583,0.0000016612, +0.0000016685,0.0000016762,0.0000016810,0.0000016846,0.0000016887, +0.0000016920,0.0000016923,0.0000016916,0.0000017037,0.0000017396, +0.0000017690,0.0000017701,0.0000017555,0.0000017472,0.0000017477, +0.0000017546,0.0000017665,0.0000017801,0.0000017881,0.0000017878, +0.0000017854,0.0000017870,0.0000017907,0.0000017910,0.0000017882, +0.0000017847,0.0000017838,0.0000017858,0.0000017895,0.0000017937, +0.0000017973,0.0000018001,0.0000018018,0.0000018034,0.0000018051, +0.0000018056,0.0000018071,0.0000018009,0.0000017935,0.0000017899, +0.0000017917,0.0000017974,0.0000018045,0.0000018122,0.0000018188, +0.0000018248,0.0000018278,0.0000018254,0.0000018179,0.0000018099, +0.0000018035,0.0000017978,0.0000017901,0.0000017824,0.0000017789, +0.0000017798,0.0000017808,0.0000017786,0.0000017773,0.0000017757, +0.0000017770,0.0000017789,0.0000017774,0.0000017784,0.0000017814, +0.0000017793,0.0000017771,0.0000017811,0.0000017823,0.0000017790, +0.0000017793,0.0000017879,0.0000018024,0.0000018178,0.0000018254, +0.0000018391,0.0000018602,0.0000018772,0.0000018839,0.0000018791, +0.0000018752,0.0000018741,0.0000018717,0.0000018732,0.0000018804, +0.0000018844,0.0000018856,0.0000018851,0.0000018810,0.0000018734, +0.0000018642,0.0000018562,0.0000018510,0.0000018478,0.0000018457, +0.0000018436,0.0000018425,0.0000018416,0.0000018407,0.0000018403, +0.0000018415,0.0000018443,0.0000018492,0.0000018570,0.0000018671, +0.0000018767,0.0000018848,0.0000018904,0.0000018931,0.0000018941, +0.0000018944,0.0000018932,0.0000018922,0.0000018926,0.0000018928, +0.0000018894,0.0000018877,0.0000018959,0.0000019018,0.0000018888, +0.0000018621,0.0000018341,0.0000018050,0.0000017896,0.0000017876, +0.0000017869,0.0000017721,0.0000017406,0.0000017136,0.0000016983, +0.0000016895,0.0000016826,0.0000016767,0.0000016723,0.0000016693, +0.0000016672,0.0000016650,0.0000016616,0.0000016563,0.0000016500, +0.0000016456,0.0000016468,0.0000016564,0.0000016670,0.0000016719, +0.0000016737,0.0000016772,0.0000016825,0.0000016885,0.0000016958, +0.0000017061,0.0000017174,0.0000017280,0.0000017376,0.0000017389, +0.0000017383,0.0000017562,0.0000017806,0.0000017860,0.0000017842, +0.0000017906,0.0000017996,0.0000018042,0.0000018056,0.0000018066, +0.0000018083,0.0000018106,0.0000018139,0.0000018185,0.0000018242, +0.0000018307,0.0000018369,0.0000018418,0.0000018457,0.0000018494, +0.0000018528,0.0000018592,0.0000018693,0.0000018790,0.0000018806, +0.0000018691,0.0000018509,0.0000018408,0.0000018419,0.0000018461, +0.0000018389,0.0000018041,0.0000017597,0.0000017374,0.0000017391, +0.0000017436,0.0000017379,0.0000017228,0.0000017078,0.0000017055, +0.0000017210,0.0000017422,0.0000017463,0.0000017503,0.0000017461, +0.0000017397,0.0000017614,0.0000017758,0.0000017682,0.0000017668, +0.0000017640,0.0000017591,0.0000017538,0.0000017525,0.0000017726, +0.0000017973,0.0000018130,0.0000017804,0.0000017467,0.0000017425, +0.0000017477,0.0000017633,0.0000017845,0.0000017911,0.0000017850, +0.0000017950,0.0000018625,0.0000019314,0.0000019408,0.0000019348, +0.0000019452,0.0000019683,0.0000019873,0.0000019934,0.0000019887, +0.0000019711,0.0000019504,0.0000019349,0.0000019245,0.0000019183, +0.0000019168,0.0000019195,0.0000019294,0.0000019465,0.0000019659, +0.0000019792,0.0000019824,0.0000019829,0.0000019764,0.0000019700, +0.0000019619,0.0000019411,0.0000019094,0.0000018968,0.0000019193, +0.0000019636,0.0000019922,0.0000019991,0.0000019970,0.0000019928, +0.0000019919,0.0000019959,0.0000019997,0.0000019942,0.0000019697, +0.0000019327,0.0000019083,0.0000019060,0.0000019194,0.0000019657, +0.0000020144,0.0000020257,0.0000020148,0.0000019669,0.0000019537, +0.0000019972,0.0000019959,0.0000019886,0.0000019708,0.0000019448, +0.0000019647,0.0000020037,0.0000019903,0.0000019510,0.0000019347, +0.0000019686,0.0000020091,0.0000020206,0.0000020200,0.0000020148, +0.0000019984,0.0000019795,0.0000019774,0.0000019885,0.0000019981, +0.0000020031,0.0000020046,0.0000020035,0.0000019988,0.0000019933, +0.0000019931,0.0000020060,0.0000020200,0.0000020237,0.0000020219, +0.0000020208,0.0000020239,0.0000020255,0.0000020048,0.0000019270, +0.0000018555,0.0000018430,0.0000018418,0.0000018258,0.0000018369, +0.0000018737,0.0000018769,0.0000018690,0.0000018731,0.0000018699, +0.0000018578,0.0000018554,0.0000018357,0.0000018060,0.0000017870, +0.0000017917,0.0000018087,0.0000018168,0.0000018314,0.0000018340, +0.0000018504,0.0000018601,0.0000018579,0.0000019103,0.0000019525, +0.0000019294,0.0000018928,0.0000018672,0.0000018484,0.0000018337, +0.0000018226,0.0000018142,0.0000018121,0.0000018157,0.0000018260, +0.0000018456,0.0000018734,0.0000018990,0.0000019142,0.0000019184, +0.0000019170,0.0000019148,0.0000019124,0.0000019113,0.0000019094, +0.0000019064,0.0000019016,0.0000018976,0.0000018963,0.0000018957, +0.0000018968,0.0000018979,0.0000018999,0.0000019031,0.0000019062, +0.0000018929,0.0000018658,0.0000018478,0.0000018435,0.0000018421, +0.0000018406,0.0000018502,0.0000018760,0.0000018775,0.0000018674, +0.0000018647,0.0000018600,0.0000018471,0.0000018311,0.0000018230, +0.0000018262,0.0000018338,0.0000018425,0.0000018494,0.0000018541, +0.0000018591,0.0000018645,0.0000018659,0.0000018616,0.0000018563, +0.0000018483,0.0000018495,0.0000018576,0.0000018714,0.0000018875, +0.0000018988,0.0000018982,0.0000018855,0.0000018578,0.0000018194, +0.0000017791,0.0000017448,0.0000017186,0.0000016995,0.0000016863, +0.0000016771,0.0000016699,0.0000016635,0.0000016585,0.0000016555, +0.0000016535,0.0000016518,0.0000016500,0.0000016485,0.0000016475, +0.0000016470,0.0000016467,0.0000016465,0.0000016457,0.0000016444, +0.0000016436,0.0000016440,0.0000016459,0.0000016484,0.0000016514, +0.0000016544,0.0000016576,0.0000016610,0.0000016655,0.0000016706, +0.0000016747,0.0000016777,0.0000016800,0.0000016811,0.0000016817, +0.0000016834,0.0000016890,0.0000017072,0.0000017432,0.0000017930, +0.0000018437,0.0000018777,0.0000018847,0.0000018622,0.0000018256, +0.0000017907,0.0000017674,0.0000017566,0.0000017572,0.0000017523, +0.0000017595,0.0000017732,0.0000017889,0.0000018077,0.0000018211, +0.0000018294,0.0000018299,0.0000018208,0.0000018124,0.0000018043, +0.0000017997,0.0000017990,0.0000018044,0.0000018241,0.0000018599, +0.0000019037,0.0000019354,0.0000019395,0.0000019226,0.0000018918, +0.0000018698,0.0000018620,0.0000018603,0.0000018631,0.0000018643, +0.0000018568,0.0000018252,0.0000017677,0.0000017171,0.0000017080, +0.0000017183,0.0000017329,0.0000017384,0.0000017427,0.0000017525, +0.0000017634,0.0000017682,0.0000017638,0.0000017482,0.0000017356, +0.0000017473,0.0000018032,0.0000018557,0.0000018955,0.0000019280, +0.0000019409,0.0000019421,0.0000019404,0.0000019367,0.0000019304, +0.0000019229,0.0000019163,0.0000019129,0.0000019126,0.0000019166, +0.0000019246,0.0000019324,0.0000019376,0.0000019410,0.0000019430, +0.0000019444,0.0000019457,0.0000019475,0.0000019506,0.0000019550, +0.0000019592,0.0000019628,0.0000019655,0.0000019676,0.0000019694, +0.0000019709,0.0000019722,0.0000019734,0.0000019747,0.0000019762, +0.0000019769,0.0000019778,0.0000019797,0.0000019824,0.0000019845, +0.0000019855,0.0000019858,0.0000019849,0.0000019828,0.0000019807, +0.0000019799,0.0000019806,0.0000019825,0.0000019853,0.0000019888, +0.0000019924,0.0000019964,0.0000020009,0.0000020053,0.0000020084, +0.0000020080,0.0000020047,0.0000020006,0.0000019933,0.0000019786, +0.0000019658,0.0000019640,0.0000019648,0.0000019664,0.0000019726, +0.0000019821,0.0000019827,0.0000019724,0.0000019603,0.0000019504, +0.0000019344,0.0000019134,0.0000018990,0.0000018921,0.0000018929, +0.0000019012,0.0000019084,0.0000019130,0.0000019184,0.0000019205, +0.0000019186,0.0000019195,0.0000019210,0.0000019165,0.0000019113, +0.0000019109,0.0000019103,0.0000019083,0.0000019041,0.0000018980, +0.0000018903,0.0000018810,0.0000018725,0.0000018680,0.0000018676, +0.0000018694,0.0000018714,0.0000018732,0.0000018756,0.0000018783, +0.0000018825,0.0000018868,0.0000018907,0.0000018949,0.0000018996, +0.0000019034,0.0000019052,0.0000019053,0.0000019045,0.0000019037, +0.0000019039,0.0000019042,0.0000019050,0.0000019051,0.0000019059, +0.0000019070,0.0000019073,0.0000019062,0.0000019042,0.0000019018, +0.0000018996,0.0000018978,0.0000018968,0.0000018962,0.0000018962, +0.0000018970,0.0000018985,0.0000019005,0.0000019030,0.0000019061, +0.0000019094,0.0000019123,0.0000019140,0.0000019136,0.0000019113, +0.0000019072,0.0000019031,0.0000019005,0.0000018981,0.0000018946, +0.0000018906,0.0000018869,0.0000018833,0.0000018791,0.0000018749, +0.0000018720,0.0000018709,0.0000018690,0.0000018665,0.0000018645, +0.0000018631,0.0000018614,0.0000018590,0.0000018565,0.0000018537, +0.0000018524,0.0000018523,0.0000018544,0.0000018582,0.0000018639, +0.0000018712,0.0000018791,0.0000018865,0.0000018913,0.0000018936, +0.0000018956,0.0000018988,0.0000019030,0.0000019048,0.0000019037, +0.0000019008,0.0000018984,0.0000018979,0.0000018992,0.0000019001, +0.0000019004,0.0000018996,0.0000018960,0.0000018912,0.0000018894, +0.0000018931,0.0000018995,0.0000019001,0.0000018909,0.0000018817, +0.0000018789,0.0000018781,0.0000018758,0.0000018750,0.0000018746, +0.0000018710,0.0000018694,0.0000018728,0.0000018764,0.0000018761, +0.0000018722,0.0000018653,0.0000018536,0.0000018424,0.0000018399, +0.0000018398,0.0000018382,0.0000018406,0.0000018414,0.0000018371, +0.0000018350,0.0000018386,0.0000018410,0.0000018413,0.0000018433, +0.0000018443,0.0000018447,0.0000018463,0.0000018471,0.0000018428, +0.0000018320,0.0000018193,0.0000018118,0.0000018118,0.0000018134, +0.0000018133,0.0000018080,0.0000018005,0.0000017932,0.0000017860, +0.0000017806,0.0000017776,0.0000017760,0.0000017745,0.0000017721, +0.0000017690,0.0000017669,0.0000017654,0.0000017636,0.0000017600, +0.0000017528,0.0000017464,0.0000017373,0.0000017240,0.0000017166, +0.0000017130,0.0000017110,0.0000017103,0.0000017124,0.0000017155, +0.0000017155,0.0000017123,0.0000017058,0.0000017001,0.0000016973, +0.0000016951,0.0000016906,0.0000016857,0.0000016829,0.0000016815, +0.0000016783,0.0000016754,0.0000016745,0.0000016744,0.0000016753, +0.0000016770,0.0000016778,0.0000016765,0.0000016734,0.0000016715, +0.0000016722,0.0000016744,0.0000016765,0.0000016771,0.0000016758, +0.0000016746,0.0000016745,0.0000016767,0.0000016810,0.0000016854, +0.0000016894,0.0000016913,0.0000016914,0.0000016923,0.0000016906, +0.0000016768,0.0000016683,0.0000016803,0.0000016889,0.0000016935, +0.0000017058,0.0000016912,0.0000016604,0.0000016513,0.0000016503, +0.0000016489,0.0000016480,0.0000016464,0.0000016427,0.0000016374, +0.0000016327,0.0000016315,0.0000016330,0.0000016365,0.0000016399, +0.0000016422,0.0000016398,0.0000016324,0.0000016242,0.0000016151, +0.0000016137,0.0000016140,0.0000016114,0.0000016130,0.0000016171, +0.0000016208,0.0000016241,0.0000016265,0.0000016296,0.0000016316, +0.0000016329,0.0000016336,0.0000016338,0.0000016355,0.0000016393, +0.0000016443,0.0000016491,0.0000016524,0.0000016542,0.0000016557, +0.0000016572,0.0000016587,0.0000016618,0.0000016673,0.0000016730, +0.0000016765,0.0000016797,0.0000016849,0.0000016902,0.0000016919, +0.0000016916,0.0000017055,0.0000017428,0.0000017712,0.0000017711, +0.0000017554,0.0000017457,0.0000017457,0.0000017551,0.0000017675, +0.0000017792,0.0000017855,0.0000017839,0.0000017806,0.0000017824, +0.0000017877,0.0000017919,0.0000017929,0.0000017916,0.0000017910, +0.0000017927,0.0000017959,0.0000017989,0.0000018007,0.0000018011, +0.0000018024,0.0000018056,0.0000018083,0.0000018107,0.0000018056, +0.0000017971,0.0000017904,0.0000017905,0.0000017961,0.0000018018, +0.0000018086,0.0000018158,0.0000018205,0.0000018246,0.0000018255, +0.0000018209,0.0000018136,0.0000018071,0.0000018023,0.0000017956, +0.0000017851,0.0000017774,0.0000017779,0.0000017809,0.0000017787, +0.0000017774,0.0000017740,0.0000017746,0.0000017775,0.0000017779, +0.0000017791,0.0000017822,0.0000017807,0.0000017758,0.0000017761, +0.0000017777,0.0000017760,0.0000017765,0.0000017829,0.0000017964, +0.0000018142,0.0000018237,0.0000018345,0.0000018549,0.0000018733, +0.0000018831,0.0000018807,0.0000018768,0.0000018771,0.0000018755, +0.0000018740,0.0000018782,0.0000018840,0.0000018864,0.0000018887, +0.0000018896,0.0000018873,0.0000018817,0.0000018748,0.0000018677, +0.0000018611,0.0000018562,0.0000018530,0.0000018520,0.0000018528, +0.0000018551,0.0000018590,0.0000018640,0.0000018691,0.0000018745, +0.0000018801,0.0000018851,0.0000018889,0.0000018919,0.0000018930, +0.0000018929,0.0000018929,0.0000018928,0.0000018925,0.0000018930, +0.0000018932,0.0000018913,0.0000018887,0.0000018919,0.0000019017, +0.0000019002,0.0000018787,0.0000018514,0.0000018238,0.0000017987, +0.0000017890,0.0000017889,0.0000017867,0.0000017651,0.0000017323, +0.0000017112,0.0000017008,0.0000016937,0.0000016873,0.0000016819, +0.0000016783,0.0000016763,0.0000016736,0.0000016667,0.0000016576, +0.0000016504,0.0000016494,0.0000016550,0.0000016649,0.0000016720, +0.0000016749,0.0000016779,0.0000016829,0.0000016880,0.0000016926, +0.0000016988,0.0000017082,0.0000017182,0.0000017283,0.0000017383, +0.0000017395,0.0000017357,0.0000017461,0.0000017739,0.0000017877, +0.0000017865,0.0000017886,0.0000017967,0.0000018034,0.0000018063, +0.0000018080,0.0000018104,0.0000018131,0.0000018159,0.0000018195, +0.0000018240,0.0000018291,0.0000018344,0.0000018397,0.0000018449, +0.0000018508,0.0000018582,0.0000018677,0.0000018763,0.0000018792, +0.0000018732,0.0000018585,0.0000018459,0.0000018426,0.0000018458, +0.0000018444,0.0000018229,0.0000017803,0.0000017432,0.0000017356, +0.0000017407,0.0000017436,0.0000017368,0.0000017206,0.0000017040, +0.0000017033,0.0000017202,0.0000017439,0.0000017510,0.0000017570, +0.0000017477,0.0000017408,0.0000017672,0.0000017752,0.0000017673, +0.0000017661,0.0000017628,0.0000017593,0.0000017545,0.0000017548, +0.0000017802,0.0000018045,0.0000018081,0.0000017611,0.0000017430, +0.0000017460,0.0000017558,0.0000017760,0.0000017891,0.0000017854, +0.0000017835,0.0000018391,0.0000019186,0.0000019387,0.0000019314, +0.0000019427,0.0000019679,0.0000019887,0.0000019964,0.0000019881, +0.0000019630,0.0000019369,0.0000019242,0.0000019187,0.0000019150, +0.0000019090,0.0000019056,0.0000019026,0.0000019026,0.0000019114, +0.0000019327,0.0000019606,0.0000019799,0.0000019862,0.0000019852, +0.0000019820,0.0000019788,0.0000019725,0.0000019441,0.0000019080, +0.0000019040,0.0000019374,0.0000019793,0.0000020011,0.0000020051, +0.0000020029,0.0000020016,0.0000020028,0.0000020005,0.0000019909, +0.0000019719,0.0000019363,0.0000019087,0.0000019050,0.0000019317, +0.0000019927,0.0000020234,0.0000020220,0.0000019888,0.0000019532, +0.0000019814,0.0000020010,0.0000019904,0.0000019797,0.0000019491, +0.0000019514,0.0000019954,0.0000020000,0.0000019610,0.0000019406, +0.0000019608,0.0000020035,0.0000020188,0.0000020190,0.0000020167, +0.0000020055,0.0000019868,0.0000019751,0.0000019778,0.0000019871, +0.0000019945,0.0000019979,0.0000019973,0.0000019934,0.0000019916, +0.0000019974,0.0000020113,0.0000020223,0.0000020240,0.0000020229, +0.0000020219,0.0000020236,0.0000020249,0.0000020126,0.0000019424, +0.0000018636,0.0000018398,0.0000018457,0.0000018319,0.0000018362, +0.0000018741,0.0000018753,0.0000018580,0.0000018606,0.0000018709, +0.0000018663,0.0000018597,0.0000018422,0.0000018096,0.0000017894, +0.0000017925,0.0000018097,0.0000018177,0.0000018312,0.0000018335, +0.0000018515,0.0000018619,0.0000018574,0.0000018924,0.0000019156, +0.0000018775,0.0000018381,0.0000018191,0.0000018096,0.0000018048, +0.0000018066,0.0000018064,0.0000018128,0.0000018274,0.0000018494, +0.0000018767,0.0000019012,0.0000019167,0.0000019191,0.0000019187, +0.0000019156,0.0000019116,0.0000019083,0.0000019068,0.0000019071, +0.0000019083,0.0000019072,0.0000019039,0.0000018988,0.0000018931, +0.0000018880,0.0000018852,0.0000018865,0.0000018968,0.0000019108, +0.0000019041,0.0000018684,0.0000018445,0.0000018383,0.0000018383, +0.0000018515,0.0000018781,0.0000018775,0.0000018678,0.0000018660, +0.0000018608,0.0000018454,0.0000018267,0.0000018182,0.0000018198, +0.0000018276,0.0000018374,0.0000018471,0.0000018552,0.0000018629, +0.0000018647,0.0000018605,0.0000018532,0.0000018446,0.0000018471, +0.0000018539,0.0000018676,0.0000018844,0.0000018948,0.0000018952, +0.0000018771,0.0000018418,0.0000017987,0.0000017580,0.0000017252, +0.0000017024,0.0000016895,0.0000016811,0.0000016742,0.0000016685, +0.0000016626,0.0000016565,0.0000016500,0.0000016445,0.0000016410, +0.0000016388,0.0000016382,0.0000016380,0.0000016369,0.0000016349, +0.0000016333,0.0000016329,0.0000016322,0.0000016307,0.0000016303, +0.0000016304,0.0000016317,0.0000016351,0.0000016391,0.0000016414, +0.0000016416,0.0000016414,0.0000016420,0.0000016437,0.0000016486, +0.0000016559,0.0000016629,0.0000016703,0.0000016764,0.0000016795, +0.0000016790,0.0000016761,0.0000016752,0.0000016856,0.0000017121, +0.0000017584,0.0000018191,0.0000018693,0.0000018829,0.0000018743, +0.0000018463,0.0000018102,0.0000017819,0.0000017647,0.0000017542, +0.0000017470,0.0000017451,0.0000017405,0.0000017526,0.0000017719, +0.0000017977,0.0000018193,0.0000018312,0.0000018334,0.0000018217, +0.0000018086,0.0000018003,0.0000017989,0.0000018002,0.0000018137, +0.0000018450,0.0000018921,0.0000019308,0.0000019355,0.0000019154, +0.0000018842,0.0000018628,0.0000018543,0.0000018500,0.0000018439, +0.0000018214,0.0000017752,0.0000017323,0.0000017157,0.0000017246, +0.0000017362,0.0000017412,0.0000017431,0.0000017477,0.0000017564, +0.0000017656,0.0000017692,0.0000017660,0.0000017522,0.0000017391, +0.0000017445,0.0000017939,0.0000018468,0.0000018786,0.0000019055, +0.0000019179,0.0000019215,0.0000019229,0.0000019182,0.0000019052, +0.0000018882,0.0000018733,0.0000018674,0.0000018694,0.0000018822, +0.0000018993,0.0000019133,0.0000019226,0.0000019287,0.0000019322, +0.0000019342,0.0000019357,0.0000019377,0.0000019412,0.0000019456, +0.0000019497,0.0000019534,0.0000019570,0.0000019606,0.0000019645, +0.0000019679,0.0000019704,0.0000019718,0.0000019722,0.0000019710, +0.0000019686,0.0000019669,0.0000019675,0.0000019693,0.0000019707, +0.0000019716,0.0000019720,0.0000019720,0.0000019720,0.0000019728, +0.0000019752,0.0000019789,0.0000019830,0.0000019869,0.0000019904, +0.0000019936,0.0000019966,0.0000019996,0.0000020021,0.0000020026, +0.0000019999,0.0000019953,0.0000019878,0.0000019755,0.0000019647, +0.0000019624,0.0000019639,0.0000019665,0.0000019721,0.0000019811, +0.0000019881,0.0000019876,0.0000019783,0.0000019639,0.0000019471, +0.0000019277,0.0000019090,0.0000018980,0.0000018924,0.0000018954, +0.0000019055,0.0000019126,0.0000019164,0.0000019206,0.0000019214, +0.0000019192,0.0000019208,0.0000019237,0.0000019195,0.0000019133, +0.0000019120,0.0000019111,0.0000019097,0.0000019071,0.0000019027, +0.0000018949,0.0000018850,0.0000018773,0.0000018736,0.0000018721, +0.0000018712,0.0000018706,0.0000018691,0.0000018678,0.0000018695, +0.0000018731,0.0000018765,0.0000018805,0.0000018847,0.0000018885, +0.0000018911,0.0000018923,0.0000018931,0.0000018943,0.0000018967, +0.0000019001,0.0000019028,0.0000019047,0.0000019066,0.0000019091, +0.0000019109,0.0000019115,0.0000019110,0.0000019099,0.0000019091, +0.0000019091,0.0000019103,0.0000019116,0.0000019131,0.0000019147, +0.0000019163,0.0000019174,0.0000019188,0.0000019203,0.0000019223, +0.0000019253,0.0000019276,0.0000019282,0.0000019273,0.0000019255, +0.0000019250,0.0000019248,0.0000019245,0.0000019224,0.0000019194, +0.0000019164,0.0000019129,0.0000019081,0.0000019024,0.0000018971, +0.0000018926,0.0000018879,0.0000018828,0.0000018787,0.0000018742, +0.0000018693,0.0000018636,0.0000018582,0.0000018545,0.0000018530, +0.0000018544,0.0000018592,0.0000018654,0.0000018724,0.0000018797, +0.0000018866,0.0000018924,0.0000018969,0.0000019000,0.0000019017, +0.0000019025,0.0000019034,0.0000019032,0.0000019016,0.0000018999, +0.0000018985,0.0000018988,0.0000019005,0.0000019026,0.0000019040, +0.0000019028,0.0000018976,0.0000018928,0.0000018920,0.0000018966, +0.0000019026,0.0000019016,0.0000018915,0.0000018830,0.0000018811, +0.0000018808,0.0000018793,0.0000018784,0.0000018775,0.0000018725, +0.0000018688,0.0000018713,0.0000018748,0.0000018744,0.0000018712, +0.0000018639,0.0000018523,0.0000018434,0.0000018417,0.0000018401, +0.0000018388,0.0000018429,0.0000018431,0.0000018367,0.0000018336, +0.0000018365,0.0000018390,0.0000018398,0.0000018424,0.0000018440, +0.0000018444,0.0000018452,0.0000018457,0.0000018408,0.0000018291, +0.0000018170,0.0000018118,0.0000018123,0.0000018137,0.0000018129, +0.0000018086,0.0000018034,0.0000017977,0.0000017905,0.0000017837, +0.0000017800,0.0000017785,0.0000017768,0.0000017741,0.0000017711, +0.0000017688,0.0000017663,0.0000017638,0.0000017599,0.0000017530, +0.0000017468,0.0000017385,0.0000017248,0.0000017181,0.0000017149, +0.0000017108,0.0000017075,0.0000017067,0.0000017098,0.0000017137, +0.0000017144,0.0000017127,0.0000017094,0.0000017065,0.0000017015, +0.0000016936,0.0000016870,0.0000016841,0.0000016813,0.0000016770, +0.0000016745,0.0000016738,0.0000016730,0.0000016732,0.0000016739, +0.0000016733,0.0000016706,0.0000016683,0.0000016689,0.0000016717, +0.0000016753,0.0000016773,0.0000016770,0.0000016764,0.0000016763, +0.0000016773,0.0000016808,0.0000016846,0.0000016876,0.0000016905, +0.0000016915,0.0000016916,0.0000016918,0.0000016868,0.0000016710, +0.0000016694,0.0000016840,0.0000016874,0.0000016961,0.0000017020, +0.0000016796,0.0000016578,0.0000016522,0.0000016491,0.0000016456, +0.0000016429,0.0000016390,0.0000016337,0.0000016293,0.0000016289, +0.0000016315,0.0000016354,0.0000016383,0.0000016392,0.0000016363, +0.0000016298,0.0000016225,0.0000016136,0.0000016099,0.0000016073, +0.0000016074,0.0000016120,0.0000016175,0.0000016216,0.0000016253, +0.0000016283,0.0000016317,0.0000016344,0.0000016359,0.0000016358, +0.0000016352,0.0000016340,0.0000016326,0.0000016319,0.0000016333, +0.0000016360,0.0000016399,0.0000016455,0.0000016512,0.0000016548, +0.0000016567,0.0000016594,0.0000016641,0.0000016689,0.0000016718, +0.0000016754,0.0000016823,0.0000016896,0.0000016920,0.0000016924, +0.0000017085,0.0000017466,0.0000017732,0.0000017709,0.0000017541, +0.0000017436,0.0000017463,0.0000017575,0.0000017687,0.0000017775, +0.0000017812,0.0000017794,0.0000017774,0.0000017800,0.0000017875, +0.0000017944,0.0000017980,0.0000017991,0.0000017993,0.0000017998, +0.0000018005,0.0000018011,0.0000018012,0.0000018021,0.0000018057, +0.0000018099,0.0000018127,0.0000018091,0.0000018005,0.0000017920, +0.0000017900,0.0000017955,0.0000018019,0.0000018071,0.0000018138, +0.0000018182,0.0000018206,0.0000018229,0.0000018218,0.0000018159, +0.0000018088,0.0000018039,0.0000017989,0.0000017890,0.0000017777, +0.0000017749,0.0000017802,0.0000017790,0.0000017772,0.0000017732, +0.0000017722,0.0000017762,0.0000017775,0.0000017791,0.0000017826, +0.0000017818,0.0000017769,0.0000017722,0.0000017721,0.0000017717, +0.0000017736,0.0000017795,0.0000017908,0.0000018097,0.0000018225, +0.0000018313,0.0000018502,0.0000018689,0.0000018815,0.0000018812, +0.0000018775,0.0000018787,0.0000018792,0.0000018765,0.0000018770, +0.0000018826,0.0000018863,0.0000018888,0.0000018923,0.0000018952, +0.0000018956,0.0000018930,0.0000018885,0.0000018841,0.0000018806, +0.0000018783,0.0000018778,0.0000018792,0.0000018823,0.0000018855, +0.0000018877,0.0000018893,0.0000018904,0.0000018912,0.0000018918, +0.0000018924,0.0000018926,0.0000018920,0.0000018905,0.0000018901, +0.0000018912,0.0000018927,0.0000018938,0.0000018927,0.0000018902, +0.0000018906,0.0000018980,0.0000019033,0.0000018920,0.0000018659, +0.0000018406,0.0000018140,0.0000017941,0.0000017890,0.0000017902, +0.0000017848,0.0000017573,0.0000017283,0.0000017133,0.0000017036, +0.0000016947,0.0000016873,0.0000016828,0.0000016808,0.0000016775, +0.0000016697,0.0000016588,0.0000016532,0.0000016570,0.0000016660, +0.0000016737,0.0000016777,0.0000016803,0.0000016839,0.0000016881, +0.0000016920,0.0000016959,0.0000017019,0.0000017106,0.0000017192, +0.0000017288,0.0000017391,0.0000017399,0.0000017321,0.0000017356, +0.0000017619,0.0000017857,0.0000017895,0.0000017895,0.0000017951, +0.0000018035,0.0000018101,0.0000018140,0.0000018173,0.0000018210, +0.0000018245,0.0000018278,0.0000018317,0.0000018363,0.0000018413, +0.0000018464,0.0000018524,0.0000018594,0.0000018670,0.0000018734, +0.0000018766,0.0000018732,0.0000018629,0.0000018511,0.0000018454, +0.0000018452,0.0000018456,0.0000018343,0.0000018005,0.0000017583, +0.0000017351,0.0000017351,0.0000017407,0.0000017426,0.0000017366, +0.0000017196,0.0000017021,0.0000017023,0.0000017223,0.0000017470, +0.0000017577,0.0000017629,0.0000017478,0.0000017452,0.0000017716, +0.0000017730,0.0000017666,0.0000017648,0.0000017627,0.0000017608, +0.0000017552,0.0000017590,0.0000017881,0.0000018094,0.0000017932, +0.0000017473,0.0000017439,0.0000017520,0.0000017668,0.0000017859, +0.0000017870,0.0000017816,0.0000018138,0.0000018995,0.0000019431, +0.0000019290,0.0000019370,0.0000019641,0.0000019865,0.0000019996, +0.0000019920,0.0000019609,0.0000019337,0.0000019268,0.0000019271, +0.0000019270,0.0000019236,0.0000019184,0.0000019125,0.0000019066, +0.0000019014,0.0000018994,0.0000019051,0.0000019282,0.0000019618, +0.0000019845,0.0000019890,0.0000019841,0.0000019792,0.0000019780, +0.0000019693,0.0000019347,0.0000019054,0.0000019145,0.0000019536, +0.0000019899,0.0000020066,0.0000020097,0.0000020087,0.0000020059, +0.0000019995,0.0000019909,0.0000019717,0.0000019286,0.0000019027, +0.0000019086,0.0000019640,0.0000020173,0.0000020225,0.0000020035, +0.0000019626,0.0000019688,0.0000019978,0.0000019932,0.0000019848, +0.0000019592,0.0000019473,0.0000019817,0.0000020023,0.0000019727, +0.0000019427,0.0000019558,0.0000019961,0.0000020153,0.0000020177, +0.0000020171,0.0000020110,0.0000019967,0.0000019793,0.0000019726, +0.0000019758,0.0000019831,0.0000019883,0.0000019892,0.0000019881, +0.0000019901,0.0000020012,0.0000020167,0.0000020245,0.0000020242, +0.0000020233,0.0000020225,0.0000020228,0.0000020243,0.0000020179, +0.0000019571,0.0000018749,0.0000018403,0.0000018480,0.0000018378, +0.0000018361,0.0000018719,0.0000018769,0.0000018539,0.0000018509, +0.0000018658,0.0000018717,0.0000018656,0.0000018489,0.0000018143, +0.0000017921,0.0000017923,0.0000018099,0.0000018184,0.0000018311, +0.0000018332,0.0000018522,0.0000018637,0.0000018557,0.0000018862, +0.0000018795,0.0000018361,0.0000018106,0.0000018077,0.0000018065, +0.0000018063,0.0000018110,0.0000018207,0.0000018353,0.0000018570, +0.0000018820,0.0000019032,0.0000019161,0.0000019175,0.0000019181, +0.0000019151,0.0000019106,0.0000019051,0.0000019009,0.0000018990, +0.0000018983,0.0000019001,0.0000019043,0.0000019057,0.0000019029, +0.0000018957,0.0000018870,0.0000018830,0.0000018842,0.0000018935, +0.0000019126,0.0000019062,0.0000018668,0.0000018449,0.0000018429, +0.0000018553,0.0000018793,0.0000018775,0.0000018677,0.0000018663, +0.0000018617,0.0000018470,0.0000018259,0.0000018177,0.0000018193, +0.0000018288,0.0000018413,0.0000018526,0.0000018622,0.0000018634, +0.0000018596,0.0000018504,0.0000018412,0.0000018419,0.0000018467, +0.0000018615,0.0000018814,0.0000018921,0.0000018915,0.0000018718, +0.0000018337,0.0000017888,0.0000017467,0.0000017149,0.0000016969, +0.0000016867,0.0000016810,0.0000016763,0.0000016698,0.0000016609, +0.0000016523,0.0000016468,0.0000016442,0.0000016450,0.0000016452, +0.0000016483,0.0000016510,0.0000016531,0.0000016537,0.0000016522, +0.0000016485,0.0000016429,0.0000016373,0.0000016312,0.0000016260, +0.0000016215,0.0000016199,0.0000016191,0.0000016218,0.0000016272, +0.0000016327,0.0000016362,0.0000016369,0.0000016361,0.0000016325, +0.0000016310,0.0000016315,0.0000016356,0.0000016429,0.0000016544, +0.0000016669,0.0000016754,0.0000016756,0.0000016720,0.0000016715, +0.0000016780,0.0000016958,0.0000017379,0.0000018042,0.0000018632, +0.0000018863,0.0000018853,0.0000018591,0.0000018228,0.0000017911, +0.0000017727,0.0000017638,0.0000017546,0.0000017434,0.0000017345, +0.0000017362,0.0000017431,0.0000017679,0.0000017992,0.0000018265, +0.0000018352,0.0000018319,0.0000018159,0.0000018019,0.0000017994, +0.0000018007,0.0000018101,0.0000018396,0.0000018888,0.0000019265, +0.0000019317,0.0000019050,0.0000018742,0.0000018545,0.0000018463, +0.0000018330,0.0000017998,0.0000017569,0.0000017352,0.0000017375, +0.0000017446,0.0000017492,0.0000017525,0.0000017572,0.0000017660, +0.0000017755,0.0000017788,0.0000017746,0.0000017681,0.0000017571, +0.0000017415,0.0000017397,0.0000017792,0.0000018381,0.0000018707, +0.0000018911,0.0000019021,0.0000019051,0.0000018982,0.0000018755, +0.0000018432,0.0000018132,0.0000017929,0.0000017853,0.0000017901, +0.0000018103,0.0000018376,0.0000018631,0.0000018824,0.0000018967, +0.0000019067,0.0000019138,0.0000019192,0.0000019248,0.0000019313, +0.0000019376,0.0000019423,0.0000019452,0.0000019477,0.0000019509, +0.0000019555,0.0000019605,0.0000019650,0.0000019684,0.0000019698, +0.0000019685,0.0000019655,0.0000019633,0.0000019633,0.0000019646, +0.0000019661,0.0000019675,0.0000019679,0.0000019679,0.0000019685, +0.0000019701,0.0000019734,0.0000019777,0.0000019817,0.0000019850, +0.0000019879,0.0000019904,0.0000019923,0.0000019940,0.0000019945, +0.0000019925,0.0000019872,0.0000019790,0.0000019695,0.0000019636, +0.0000019630,0.0000019651,0.0000019683,0.0000019735,0.0000019808, +0.0000019868,0.0000019891,0.0000019884,0.0000019821,0.0000019648, +0.0000019424,0.0000019221,0.0000019071,0.0000018974,0.0000018928, +0.0000018987,0.0000019099,0.0000019160,0.0000019186,0.0000019218, +0.0000019217,0.0000019191,0.0000019209,0.0000019254,0.0000019227, +0.0000019156,0.0000019130,0.0000019126,0.0000019122,0.0000019106, +0.0000019060,0.0000018985,0.0000018910,0.0000018866,0.0000018836, +0.0000018796,0.0000018756,0.0000018719,0.0000018686,0.0000018673, +0.0000018687,0.0000018697,0.0000018705,0.0000018716,0.0000018729, +0.0000018738,0.0000018746,0.0000018759,0.0000018777,0.0000018804, +0.0000018842,0.0000018879,0.0000018906,0.0000018924,0.0000018944, +0.0000018964,0.0000018981,0.0000018995,0.0000019012,0.0000019030, +0.0000019047,0.0000019064,0.0000019081,0.0000019099,0.0000019119, +0.0000019137,0.0000019149,0.0000019158,0.0000019172,0.0000019190, +0.0000019208,0.0000019225,0.0000019241,0.0000019249,0.0000019249, +0.0000019256,0.0000019277,0.0000019293,0.0000019292,0.0000019285, +0.0000019276,0.0000019266,0.0000019254,0.0000019235,0.0000019220, +0.0000019183,0.0000019144,0.0000019101,0.0000019058,0.0000019000, +0.0000018927,0.0000018856,0.0000018792,0.0000018754,0.0000018754, +0.0000018796,0.0000018862,0.0000018930,0.0000018996,0.0000019051, +0.0000019089,0.0000019115,0.0000019129,0.0000019124,0.0000019103, +0.0000019073,0.0000019049,0.0000019033,0.0000019021,0.0000019013, +0.0000019016,0.0000019032,0.0000019049,0.0000019063,0.0000019059, +0.0000019023,0.0000018968,0.0000018943,0.0000018966,0.0000019029, +0.0000019061,0.0000019011,0.0000018902,0.0000018840,0.0000018835, +0.0000018837,0.0000018827,0.0000018814,0.0000018794,0.0000018732, +0.0000018682,0.0000018700,0.0000018733,0.0000018724,0.0000018687, +0.0000018616,0.0000018511,0.0000018454,0.0000018435,0.0000018401, +0.0000018399,0.0000018443,0.0000018433,0.0000018365,0.0000018332, +0.0000018342,0.0000018363,0.0000018374,0.0000018409,0.0000018434, +0.0000018432,0.0000018434,0.0000018437,0.0000018380,0.0000018252, +0.0000018148,0.0000018119,0.0000018126,0.0000018137,0.0000018130, +0.0000018101,0.0000018065,0.0000018009,0.0000017927,0.0000017853, +0.0000017819,0.0000017803,0.0000017776,0.0000017742,0.0000017712, +0.0000017681,0.0000017651,0.0000017625,0.0000017580,0.0000017514, +0.0000017455,0.0000017375,0.0000017241,0.0000017187,0.0000017161, +0.0000017099,0.0000017043,0.0000017012,0.0000017030,0.0000017085, +0.0000017136,0.0000017150,0.0000017148,0.0000017123,0.0000017064, +0.0000016976,0.0000016913,0.0000016878,0.0000016828,0.0000016774, +0.0000016750,0.0000016736,0.0000016725,0.0000016721,0.0000016717, +0.0000016698,0.0000016670,0.0000016669,0.0000016699,0.0000016746, +0.0000016778,0.0000016782,0.0000016781,0.0000016787,0.0000016795, +0.0000016818,0.0000016851,0.0000016875,0.0000016898,0.0000016917, +0.0000016920,0.0000016914,0.0000016907,0.0000016815,0.0000016673, +0.0000016734,0.0000016847,0.0000016862,0.0000016973,0.0000016958, +0.0000016731,0.0000016569,0.0000016505,0.0000016447,0.0000016400, +0.0000016358,0.0000016308,0.0000016275,0.0000016274,0.0000016306, +0.0000016347,0.0000016368,0.0000016365,0.0000016335,0.0000016278, +0.0000016211,0.0000016130,0.0000016085,0.0000016048,0.0000016057, +0.0000016113,0.0000016170,0.0000016215,0.0000016248,0.0000016274, +0.0000016301,0.0000016330,0.0000016351,0.0000016360,0.0000016367, +0.0000016366,0.0000016353,0.0000016336,0.0000016315,0.0000016302, +0.0000016293,0.0000016324,0.0000016389,0.0000016453,0.0000016494, +0.0000016520,0.0000016553,0.0000016599,0.0000016639,0.0000016671, +0.0000016724,0.0000016814,0.0000016899,0.0000016926,0.0000016937, +0.0000017121,0.0000017496,0.0000017735,0.0000017697,0.0000017525, +0.0000017440,0.0000017497,0.0000017604,0.0000017692,0.0000017743, +0.0000017759,0.0000017755,0.0000017762,0.0000017813,0.0000017896, +0.0000017977,0.0000018040,0.0000018078,0.0000018089,0.0000018087, +0.0000018077,0.0000018056,0.0000018047,0.0000018070,0.0000018112, +0.0000018135,0.0000018101,0.0000018021,0.0000017930,0.0000017900, +0.0000017952,0.0000018036,0.0000018082,0.0000018136,0.0000018174, +0.0000018180,0.0000018199,0.0000018207,0.0000018165,0.0000018092, +0.0000018041,0.0000018002,0.0000017919,0.0000017794,0.0000017723, +0.0000017782,0.0000017791,0.0000017766,0.0000017729,0.0000017695, +0.0000017749,0.0000017762,0.0000017783,0.0000017824,0.0000017818, +0.0000017791,0.0000017715,0.0000017669,0.0000017671,0.0000017703, +0.0000017773,0.0000017866,0.0000018052,0.0000018216,0.0000018295, +0.0000018465,0.0000018644,0.0000018780,0.0000018805,0.0000018777, +0.0000018793,0.0000018817,0.0000018798,0.0000018778,0.0000018812, +0.0000018857,0.0000018878,0.0000018908,0.0000018956,0.0000019002, +0.0000019030,0.0000019038,0.0000019031,0.0000019013,0.0000018992, +0.0000018978,0.0000018975,0.0000018980,0.0000018981,0.0000018976, +0.0000018973,0.0000018972,0.0000018968,0.0000018954,0.0000018927, +0.0000018896,0.0000018875,0.0000018869,0.0000018883,0.0000018910, +0.0000018929,0.0000018932,0.0000018917,0.0000018914,0.0000018959, +0.0000019026,0.0000019003,0.0000018783,0.0000018532,0.0000018300, +0.0000018054,0.0000017910,0.0000017892,0.0000017904,0.0000017807, +0.0000017514,0.0000017283,0.0000017144,0.0000017021,0.0000016926, +0.0000016871,0.0000016845,0.0000016801,0.0000016712,0.0000016630, +0.0000016622,0.0000016695,0.0000016772,0.0000016814,0.0000016840, +0.0000016871,0.0000016903,0.0000016929,0.0000016955,0.0000016992, +0.0000017053,0.0000017131,0.0000017202,0.0000017295,0.0000017401, +0.0000017411,0.0000017305,0.0000017259,0.0000017451,0.0000017768, +0.0000017913,0.0000017924,0.0000017957,0.0000018038,0.0000018132, +0.0000018205,0.0000018255,0.0000018293,0.0000018327,0.0000018362, +0.0000018395,0.0000018433,0.0000018484,0.0000018539,0.0000018592, +0.0000018649,0.0000018693,0.0000018722,0.0000018709,0.0000018649, +0.0000018552,0.0000018477,0.0000018459,0.0000018459,0.0000018395, +0.0000018163,0.0000017764,0.0000017413,0.0000017312,0.0000017337, +0.0000017385,0.0000017396,0.0000017353,0.0000017179,0.0000017009, +0.0000017026,0.0000017264,0.0000017522,0.0000017652,0.0000017649, +0.0000017479,0.0000017545,0.0000017768,0.0000017702,0.0000017661, +0.0000017635,0.0000017634,0.0000017628,0.0000017557,0.0000017656, +0.0000017959,0.0000018092,0.0000017719,0.0000017426,0.0000017486, +0.0000017599,0.0000017783,0.0000017886,0.0000017820,0.0000017897, +0.0000018736,0.0000019383,0.0000019335,0.0000019293,0.0000019580, +0.0000019825,0.0000019990,0.0000019985,0.0000019645,0.0000019356, +0.0000019323,0.0000019383,0.0000019376,0.0000019332,0.0000019291, +0.0000019252,0.0000019202,0.0000019143,0.0000019086,0.0000019039, +0.0000019018,0.0000019072,0.0000019314,0.0000019675,0.0000019892, +0.0000019904,0.0000019824,0.0000019764,0.0000019761,0.0000019616, +0.0000019231,0.0000019080,0.0000019279,0.0000019663,0.0000019976, +0.0000020103,0.0000020106,0.0000020061,0.0000019992,0.0000019854, +0.0000019500,0.0000019076,0.0000019004,0.0000019369,0.0000020033, +0.0000020230,0.0000020095,0.0000019769,0.0000019653,0.0000019947, +0.0000019955,0.0000019870,0.0000019653,0.0000019453,0.0000019737, +0.0000020012,0.0000019836,0.0000019518,0.0000019549,0.0000019880, +0.0000020096,0.0000020152,0.0000020165,0.0000020142,0.0000020058, +0.0000019911,0.0000019763,0.0000019711,0.0000019729,0.0000019778, +0.0000019808,0.0000019826,0.0000019894,0.0000020058,0.0000020218, +0.0000020262,0.0000020247,0.0000020234,0.0000020229,0.0000020224, +0.0000020237,0.0000020205,0.0000019694,0.0000018882,0.0000018424, +0.0000018461,0.0000018437,0.0000018383,0.0000018690,0.0000018768, +0.0000018538,0.0000018429,0.0000018556,0.0000018710,0.0000018712, +0.0000018567,0.0000018209,0.0000017952,0.0000017936,0.0000018105, +0.0000018195,0.0000018307,0.0000018324,0.0000018518,0.0000018655, +0.0000018543,0.0000018718,0.0000018549,0.0000018179,0.0000018111, +0.0000018106,0.0000018165,0.0000018250,0.0000018365,0.0000018523, +0.0000018714,0.0000018899,0.0000019052,0.0000019134,0.0000019161, +0.0000019151,0.0000019129,0.0000019096,0.0000019051,0.0000019004, +0.0000018970,0.0000018953,0.0000018938,0.0000018926,0.0000018959, +0.0000019016,0.0000019032,0.0000018980,0.0000018866,0.0000018801, +0.0000018829,0.0000018957,0.0000019153,0.0000019068,0.0000018701, +0.0000018568,0.0000018665,0.0000018854,0.0000018827,0.0000018702, +0.0000018682,0.0000018637,0.0000018523,0.0000018316,0.0000018212, +0.0000018256,0.0000018372,0.0000018507,0.0000018618,0.0000018626, +0.0000018594,0.0000018501,0.0000018399,0.0000018370,0.0000018385, +0.0000018517,0.0000018713,0.0000018903,0.0000018951,0.0000018746, +0.0000018337,0.0000017858,0.0000017402,0.0000017078,0.0000016916, +0.0000016847,0.0000016819,0.0000016769,0.0000016682,0.0000016597, +0.0000016532,0.0000016494,0.0000016499,0.0000016544,0.0000016598, +0.0000016640,0.0000016666,0.0000016670,0.0000016667,0.0000016670, +0.0000016674,0.0000016674,0.0000016657,0.0000016626,0.0000016587, +0.0000016497,0.0000016398,0.0000016312,0.0000016237,0.0000016184, +0.0000016165,0.0000016167,0.0000016204,0.0000016265,0.0000016325, +0.0000016364,0.0000016367,0.0000016323,0.0000016261,0.0000016215, +0.0000016212,0.0000016248,0.0000016377,0.0000016570,0.0000016695, +0.0000016702,0.0000016674,0.0000016697,0.0000016755,0.0000016899, +0.0000017336,0.0000018041,0.0000018639,0.0000018883,0.0000018857, +0.0000018645,0.0000018301,0.0000017945,0.0000017758,0.0000017699, +0.0000017644,0.0000017546,0.0000017427,0.0000017338,0.0000017348, +0.0000017437,0.0000017764,0.0000018169,0.0000018421,0.0000018403, +0.0000018195,0.0000018021,0.0000017987,0.0000018017,0.0000018111, +0.0000018420,0.0000018922,0.0000019265,0.0000019224,0.0000018931, +0.0000018621,0.0000018445,0.0000018265,0.0000017933,0.0000017623, +0.0000017554,0.0000017587,0.0000017622,0.0000017658,0.0000017726, +0.0000017864,0.0000018065,0.0000018186,0.0000018135,0.0000017894, +0.0000017703,0.0000017615,0.0000017470,0.0000017362,0.0000017587, +0.0000018195,0.0000018626,0.0000018781,0.0000018781,0.0000018633, +0.0000018333,0.0000017946,0.0000017622,0.0000017423,0.0000017273, +0.0000017201,0.0000017223,0.0000017349,0.0000017530,0.0000017775, +0.0000018002,0.0000018210,0.0000018374,0.0000018506,0.0000018618, +0.0000018742,0.0000018893,0.0000019054,0.0000019194,0.0000019301, +0.0000019371,0.0000019421,0.0000019472,0.0000019525,0.0000019576, +0.0000019626,0.0000019665,0.0000019684,0.0000019687,0.0000019682, +0.0000019686,0.0000019688,0.0000019688,0.0000019685,0.0000019677, +0.0000019670,0.0000019666,0.0000019681,0.0000019705,0.0000019731, +0.0000019751,0.0000019769,0.0000019788,0.0000019808,0.0000019824, +0.0000019830,0.0000019817,0.0000019770,0.0000019707,0.0000019667, +0.0000019656,0.0000019675,0.0000019705,0.0000019732,0.0000019766, +0.0000019818,0.0000019860,0.0000019868,0.0000019873,0.0000019886, +0.0000019821,0.0000019619,0.0000019379,0.0000019188,0.0000019068, +0.0000018970,0.0000018941,0.0000019022,0.0000019140,0.0000019189, +0.0000019202,0.0000019224,0.0000019215,0.0000019183,0.0000019196, +0.0000019259,0.0000019254,0.0000019183,0.0000019146,0.0000019147, +0.0000019150,0.0000019136,0.0000019086,0.0000019028,0.0000018992, +0.0000018971,0.0000018932,0.0000018877,0.0000018819,0.0000018772, +0.0000018749,0.0000018748,0.0000018745,0.0000018739,0.0000018720, +0.0000018695,0.0000018678,0.0000018655,0.0000018648,0.0000018652, +0.0000018664,0.0000018684,0.0000018699,0.0000018705,0.0000018705, +0.0000018707,0.0000018720,0.0000018742,0.0000018766,0.0000018792, +0.0000018818,0.0000018842,0.0000018860,0.0000018879,0.0000018900, +0.0000018923,0.0000018947,0.0000018975,0.0000019009,0.0000019048, +0.0000019089,0.0000019125,0.0000019154,0.0000019180,0.0000019198, +0.0000019206,0.0000019214,0.0000019229,0.0000019241,0.0000019240, +0.0000019234,0.0000019233,0.0000019236,0.0000019236,0.0000019230, +0.0000019226,0.0000019224,0.0000019223,0.0000019221,0.0000019220, +0.0000019210,0.0000019172,0.0000019129,0.0000019099,0.0000019095, +0.0000019123,0.0000019176,0.0000019230,0.0000019269,0.0000019290, +0.0000019296,0.0000019291,0.0000019274,0.0000019248,0.0000019209, +0.0000019156,0.0000019103,0.0000019070,0.0000019060,0.0000019061, +0.0000019069,0.0000019083,0.0000019098,0.0000019098,0.0000019078, +0.0000019033,0.0000018979,0.0000018953,0.0000018971,0.0000019035, +0.0000019091,0.0000019075,0.0000018979,0.0000018884,0.0000018854, +0.0000018859,0.0000018864,0.0000018852,0.0000018832,0.0000018795, +0.0000018725,0.0000018673,0.0000018688,0.0000018716,0.0000018697, +0.0000018646,0.0000018578,0.0000018505,0.0000018478,0.0000018450, +0.0000018407,0.0000018417,0.0000018449,0.0000018423,0.0000018366, +0.0000018330,0.0000018320,0.0000018335,0.0000018348,0.0000018393, +0.0000018429,0.0000018415,0.0000018412,0.0000018412,0.0000018341, +0.0000018221,0.0000018145,0.0000018125,0.0000018135,0.0000018146, +0.0000018143,0.0000018121,0.0000018080,0.0000018014,0.0000017929, +0.0000017861,0.0000017825,0.0000017798,0.0000017766,0.0000017737, +0.0000017707,0.0000017669,0.0000017635,0.0000017598,0.0000017543, +0.0000017481,0.0000017436,0.0000017346,0.0000017224,0.0000017189, +0.0000017163,0.0000017076,0.0000017006,0.0000016972,0.0000016976, +0.0000017035,0.0000017106,0.0000017144,0.0000017149,0.0000017126, +0.0000017078,0.0000017005,0.0000016952,0.0000016905,0.0000016838, +0.0000016782,0.0000016752,0.0000016731,0.0000016722,0.0000016717, +0.0000016705,0.0000016679,0.0000016665,0.0000016687,0.0000016740, +0.0000016786,0.0000016795,0.0000016797,0.0000016808,0.0000016819, +0.0000016834,0.0000016860,0.0000016882,0.0000016897,0.0000016915, +0.0000016928,0.0000016922,0.0000016905,0.0000016877,0.0000016751, +0.0000016666,0.0000016778,0.0000016836,0.0000016857,0.0000016968, +0.0000016905,0.0000016691,0.0000016546,0.0000016456,0.0000016385, +0.0000016334,0.0000016287,0.0000016259,0.0000016263,0.0000016299, +0.0000016350,0.0000016369,0.0000016349,0.0000016313,0.0000016260, +0.0000016201,0.0000016129,0.0000016089,0.0000016040,0.0000016033, +0.0000016095,0.0000016156,0.0000016196,0.0000016219,0.0000016235, +0.0000016255,0.0000016282,0.0000016308,0.0000016325,0.0000016335, +0.0000016339,0.0000016335,0.0000016339,0.0000016347,0.0000016347, +0.0000016334,0.0000016319,0.0000016336,0.0000016364,0.0000016405, +0.0000016444,0.0000016475,0.0000016506,0.0000016547,0.0000016593, +0.0000016641,0.0000016713,0.0000016813,0.0000016902,0.0000016931, +0.0000016952,0.0000017143,0.0000017510,0.0000017730,0.0000017677, +0.0000017523,0.0000017481,0.0000017534,0.0000017625,0.0000017685, +0.0000017701,0.0000017704,0.0000017719,0.0000017767,0.0000017843, +0.0000017926,0.0000018013,0.0000018090,0.0000018142,0.0000018159, +0.0000018154,0.0000018124,0.0000018092,0.0000018093,0.0000018122, +0.0000018120,0.0000018081,0.0000018015,0.0000017939,0.0000017908, +0.0000017962,0.0000018062,0.0000018113,0.0000018151,0.0000018174, +0.0000018167,0.0000018174,0.0000018189,0.0000018158,0.0000018082, +0.0000018030,0.0000018003,0.0000017937,0.0000017813,0.0000017709, +0.0000017754,0.0000017787,0.0000017758,0.0000017725,0.0000017675, +0.0000017730,0.0000017746,0.0000017766,0.0000017822,0.0000017814, +0.0000017806,0.0000017733,0.0000017641,0.0000017630,0.0000017672, +0.0000017755,0.0000017840,0.0000018018,0.0000018206,0.0000018287, +0.0000018437,0.0000018601,0.0000018737,0.0000018785,0.0000018772, +0.0000018793,0.0000018827,0.0000018822,0.0000018797,0.0000018805, +0.0000018846,0.0000018871,0.0000018883,0.0000018914,0.0000018970, +0.0000019024,0.0000019058,0.0000019071,0.0000019070,0.0000019059, +0.0000019047,0.0000019035,0.0000019031,0.0000019032,0.0000019034, +0.0000019030,0.0000019010,0.0000018978,0.0000018931,0.0000018881, +0.0000018850,0.0000018845,0.0000018855,0.0000018878,0.0000018905, +0.0000018921,0.0000018925,0.0000018926,0.0000018958,0.0000019009, +0.0000019020,0.0000018884,0.0000018623,0.0000018415,0.0000018195, +0.0000017986,0.0000017891,0.0000017891,0.0000017892,0.0000017754, +0.0000017484,0.0000017287,0.0000017121,0.0000016990,0.0000016927, +0.0000016899,0.0000016838,0.0000016748,0.0000016698,0.0000016749, +0.0000016828,0.0000016870,0.0000016879,0.0000016901,0.0000016935, +0.0000016960,0.0000016976,0.0000016995,0.0000017028,0.0000017085, +0.0000017152,0.0000017213,0.0000017304,0.0000017412,0.0000017423, +0.0000017309,0.0000017198,0.0000017268,0.0000017586,0.0000017861, +0.0000017937,0.0000017972,0.0000018041,0.0000018136,0.0000018225, +0.0000018285,0.0000018319,0.0000018342,0.0000018365,0.0000018396, +0.0000018427,0.0000018469,0.0000018525,0.0000018582,0.0000018630, +0.0000018664,0.0000018670,0.0000018645,0.0000018584,0.0000018514, +0.0000018473,0.0000018462,0.0000018420,0.0000018257,0.0000017933, +0.0000017549,0.0000017320,0.0000017298,0.0000017311,0.0000017337, +0.0000017354,0.0000017326,0.0000017140,0.0000016982,0.0000017039, +0.0000017328,0.0000017596,0.0000017718,0.0000017643,0.0000017500, +0.0000017659,0.0000017768,0.0000017679,0.0000017655,0.0000017633, +0.0000017654,0.0000017633,0.0000017567,0.0000017749,0.0000018012, +0.0000018037,0.0000017532,0.0000017436,0.0000017556,0.0000017692, +0.0000017869,0.0000017854,0.0000017812,0.0000018350,0.0000019242, +0.0000019414,0.0000019235,0.0000019488,0.0000019778,0.0000019956, +0.0000020023,0.0000019753,0.0000019372,0.0000019381,0.0000019464, +0.0000019423,0.0000019375,0.0000019357,0.0000019361,0.0000019356, +0.0000019325,0.0000019261,0.0000019178,0.0000019099,0.0000019062, +0.0000019064,0.0000019131,0.0000019398,0.0000019759,0.0000019928, +0.0000019894,0.0000019784,0.0000019754,0.0000019771,0.0000019502, +0.0000019172,0.0000019165,0.0000019383,0.0000019727,0.0000019972, +0.0000020019,0.0000019972,0.0000019814,0.0000019504,0.0000019136, +0.0000018984,0.0000019208,0.0000019837,0.0000020200,0.0000020143, +0.0000019868,0.0000019676,0.0000019872,0.0000019968,0.0000019871, +0.0000019703,0.0000019458,0.0000019624,0.0000020008,0.0000019931, +0.0000019599,0.0000019551,0.0000019807,0.0000020035,0.0000020109, +0.0000020144,0.0000020149,0.0000020117,0.0000020031,0.0000019893, +0.0000019755,0.0000019701,0.0000019709,0.0000019742,0.0000019793, +0.0000019915,0.0000020108,0.0000020259,0.0000020283,0.0000020250, +0.0000020235,0.0000020230,0.0000020218,0.0000020229,0.0000020211, +0.0000019791,0.0000019016,0.0000018470,0.0000018416,0.0000018459, +0.0000018378,0.0000018637,0.0000018824,0.0000018585,0.0000018397, +0.0000018442,0.0000018624,0.0000018703,0.0000018630,0.0000018293, +0.0000017978,0.0000017951,0.0000018117,0.0000018218,0.0000018314, +0.0000018309,0.0000018489,0.0000018658,0.0000018526,0.0000018585, +0.0000018367,0.0000018157,0.0000018140,0.0000018269,0.0000018450, +0.0000018621,0.0000018778,0.0000018903,0.0000019001,0.0000019082, +0.0000019094,0.0000019120,0.0000019118,0.0000019102,0.0000019073, +0.0000019040,0.0000019012,0.0000018988,0.0000018958,0.0000018933, +0.0000018911,0.0000018888,0.0000018883,0.0000018941,0.0000018997, +0.0000018979,0.0000018866,0.0000018780,0.0000018817,0.0000018981, +0.0000019188,0.0000019119,0.0000018851,0.0000018847,0.0000018956, +0.0000018912,0.0000018755,0.0000018724,0.0000018674,0.0000018590, +0.0000018407,0.0000018279,0.0000018342,0.0000018488,0.0000018622, +0.0000018647,0.0000018623,0.0000018521,0.0000018406,0.0000018319, +0.0000018314,0.0000018411,0.0000018596,0.0000018812,0.0000018867, +0.0000018824,0.0000018465,0.0000017940,0.0000017418,0.0000017055, +0.0000016880,0.0000016818,0.0000016792,0.0000016745,0.0000016672, +0.0000016589,0.0000016550,0.0000016558,0.0000016576,0.0000016631, +0.0000016682,0.0000016685,0.0000016658,0.0000016639,0.0000016570, +0.0000016498,0.0000016437,0.0000016406,0.0000016404,0.0000016414, +0.0000016442,0.0000016477,0.0000016508,0.0000016496,0.0000016448, +0.0000016385,0.0000016307,0.0000016249,0.0000016214,0.0000016193, +0.0000016186,0.0000016198,0.0000016227,0.0000016287,0.0000016356, +0.0000016390,0.0000016352,0.0000016276,0.0000016198,0.0000016140, +0.0000016146,0.0000016298,0.0000016533,0.0000016659,0.0000016638, +0.0000016624,0.0000016683,0.0000016747,0.0000016923,0.0000017436, +0.0000018144,0.0000018649,0.0000018823,0.0000018791,0.0000018666, +0.0000018296,0.0000017923,0.0000017758,0.0000017729,0.0000017695, +0.0000017635,0.0000017543,0.0000017401,0.0000017276,0.0000017296, +0.0000017616,0.0000018104,0.0000018425,0.0000018418,0.0000018180, +0.0000018003,0.0000017990,0.0000018038,0.0000018154,0.0000018490, +0.0000018983,0.0000019255,0.0000019121,0.0000018800,0.0000018486, +0.0000018234,0.0000017962,0.0000017778,0.0000017748,0.0000017770, +0.0000017823,0.0000017937,0.0000018137,0.0000018409,0.0000018652, +0.0000018733,0.0000018611,0.0000018165,0.0000017751,0.0000017640, +0.0000017532,0.0000017364,0.0000017381,0.0000017829,0.0000018273, +0.0000018355,0.0000018181,0.0000017855,0.0000017544,0.0000017355, +0.0000017322,0.0000017294,0.0000017248,0.0000017197,0.0000017152, +0.0000017103,0.0000017135,0.0000017141,0.0000017275,0.0000017411, +0.0000017514,0.0000017632,0.0000017752,0.0000017881,0.0000018051, +0.0000018276,0.0000018536,0.0000018776,0.0000018990,0.0000019168, +0.0000019315,0.0000019422,0.0000019496,0.0000019554,0.0000019605, +0.0000019653,0.0000019694,0.0000019731,0.0000019769,0.0000019776, +0.0000019762,0.0000019734,0.0000019701,0.0000019673,0.0000019662, +0.0000019668,0.0000019675,0.0000019673,0.0000019672,0.0000019675, +0.0000019686,0.0000019702,0.0000019716,0.0000019725,0.0000019721, +0.0000019701,0.0000019705,0.0000019733,0.0000019766,0.0000019790, +0.0000019802,0.0000019814,0.0000019837,0.0000019854,0.0000019847, +0.0000019835,0.0000019852,0.0000019862,0.0000019767,0.0000019567, +0.0000019338,0.0000019180,0.0000019076,0.0000018982,0.0000018970, +0.0000019062,0.0000019177,0.0000019213,0.0000019215,0.0000019226, +0.0000019211,0.0000019171,0.0000019177,0.0000019244,0.0000019272, +0.0000019212,0.0000019170,0.0000019172,0.0000019179,0.0000019164, +0.0000019116,0.0000019081,0.0000019074,0.0000019056,0.0000019011, +0.0000018951,0.0000018888,0.0000018846,0.0000018831,0.0000018828, +0.0000018827,0.0000018812,0.0000018775,0.0000018730,0.0000018701, +0.0000018688,0.0000018679,0.0000018677,0.0000018680,0.0000018673, +0.0000018657,0.0000018640,0.0000018629,0.0000018634,0.0000018652, +0.0000018670,0.0000018683,0.0000018698,0.0000018710,0.0000018715, +0.0000018701,0.0000018690,0.0000018691,0.0000018705,0.0000018736, +0.0000018782,0.0000018837,0.0000018903,0.0000018975,0.0000019041, +0.0000019093,0.0000019134,0.0000019167,0.0000019193,0.0000019210, +0.0000019211,0.0000019200,0.0000019185,0.0000019175,0.0000019176, +0.0000019177,0.0000019171,0.0000019165,0.0000019169,0.0000019183, +0.0000019193,0.0000019202,0.0000019205,0.0000019201,0.0000019198, +0.0000019216,0.0000019262,0.0000019314,0.0000019354,0.0000019383, +0.0000019390,0.0000019385,0.0000019368,0.0000019345,0.0000019315, +0.0000019282,0.0000019237,0.0000019178,0.0000019124,0.0000019100, +0.0000019101,0.0000019113,0.0000019128,0.0000019131,0.0000019128, +0.0000019096,0.0000019033,0.0000018965,0.0000018939,0.0000018963, +0.0000019034,0.0000019100,0.0000019103,0.0000019033,0.0000018938, +0.0000018885,0.0000018878,0.0000018882,0.0000018883,0.0000018864, +0.0000018831,0.0000018777,0.0000018705,0.0000018663,0.0000018675, +0.0000018691,0.0000018658,0.0000018592,0.0000018539,0.0000018506, +0.0000018497,0.0000018461,0.0000018423,0.0000018436,0.0000018447, +0.0000018411,0.0000018369,0.0000018331,0.0000018310,0.0000018316, +0.0000018327,0.0000018379,0.0000018424,0.0000018400,0.0000018391, +0.0000018383,0.0000018301,0.0000018204,0.0000018154,0.0000018142, +0.0000018153,0.0000018167,0.0000018164,0.0000018132,0.0000018076, +0.0000018002,0.0000017918,0.0000017853,0.0000017817,0.0000017787, +0.0000017764,0.0000017743,0.0000017705,0.0000017657,0.0000017606, +0.0000017551,0.0000017487,0.0000017444,0.0000017407,0.0000017303, +0.0000017205,0.0000017193,0.0000017153,0.0000017042,0.0000016970, +0.0000016943,0.0000016947,0.0000016999,0.0000017063,0.0000017106, +0.0000017115,0.0000017099,0.0000017058,0.0000017000,0.0000016952, +0.0000016893,0.0000016824,0.0000016773,0.0000016738,0.0000016724, +0.0000016721,0.0000016718,0.0000016703,0.0000016682,0.0000016686, +0.0000016731,0.0000016785,0.0000016806,0.0000016809,0.0000016820, +0.0000016829,0.0000016838,0.0000016860,0.0000016884,0.0000016898, +0.0000016909,0.0000016925,0.0000016931,0.0000016911,0.0000016888, +0.0000016831,0.0000016683,0.0000016677,0.0000016809,0.0000016811, +0.0000016856,0.0000016945,0.0000016854,0.0000016657,0.0000016499, +0.0000016391,0.0000016325,0.0000016282,0.0000016252,0.0000016254, +0.0000016285,0.0000016341,0.0000016370,0.0000016346,0.0000016299, +0.0000016247,0.0000016193,0.0000016131,0.0000016096,0.0000016052, +0.0000016019,0.0000016069,0.0000016137,0.0000016165,0.0000016178, +0.0000016195,0.0000016217,0.0000016253,0.0000016297,0.0000016322, +0.0000016336,0.0000016338,0.0000016322,0.0000016309,0.0000016317, +0.0000016345,0.0000016374,0.0000016388,0.0000016387,0.0000016376, +0.0000016386,0.0000016398,0.0000016423,0.0000016443,0.0000016468, +0.0000016515,0.0000016576,0.0000016633,0.0000016708,0.0000016813, +0.0000016906,0.0000016932,0.0000016957,0.0000017155,0.0000017511, +0.0000017716,0.0000017665,0.0000017554,0.0000017515,0.0000017557, +0.0000017627,0.0000017663,0.0000017659,0.0000017659,0.0000017694, +0.0000017770,0.0000017859,0.0000017952,0.0000018040,0.0000018110, +0.0000018152,0.0000018161,0.0000018151,0.0000018119,0.0000018107, +0.0000018120,0.0000018080,0.0000018046,0.0000018002,0.0000017949, +0.0000017932,0.0000017993,0.0000018096,0.0000018149,0.0000018169, +0.0000018174,0.0000018158,0.0000018157,0.0000018170,0.0000018140, +0.0000018060,0.0000018005,0.0000017991,0.0000017944,0.0000017832, +0.0000017712,0.0000017725,0.0000017775,0.0000017750,0.0000017717, +0.0000017656,0.0000017704,0.0000017732,0.0000017742,0.0000017810, +0.0000017808,0.0000017807,0.0000017758,0.0000017639,0.0000017604, +0.0000017644,0.0000017736,0.0000017824,0.0000017996,0.0000018199, +0.0000018290,0.0000018419,0.0000018562,0.0000018694,0.0000018763, +0.0000018762,0.0000018788,0.0000018827,0.0000018830,0.0000018810, +0.0000018805,0.0000018835,0.0000018862,0.0000018874,0.0000018886, +0.0000018915,0.0000018956,0.0000019005,0.0000019043,0.0000019059, +0.0000019060,0.0000019063,0.0000019066,0.0000019065,0.0000019061, +0.0000019047,0.0000019016,0.0000018971,0.0000018926,0.0000018889, +0.0000018859,0.0000018845,0.0000018845,0.0000018855,0.0000018876, +0.0000018902,0.0000018925,0.0000018941,0.0000018962,0.0000018995, +0.0000019007,0.0000018919,0.0000018692,0.0000018471,0.0000018304, +0.0000018098,0.0000017941,0.0000017884,0.0000017882,0.0000017870, +0.0000017704,0.0000017470,0.0000017273,0.0000017074,0.0000016964, +0.0000016940,0.0000016891,0.0000016803,0.0000016791,0.0000016873, +0.0000016938,0.0000016942,0.0000016934,0.0000016952,0.0000016983, +0.0000017006,0.0000017024,0.0000017042,0.0000017067,0.0000017113, +0.0000017167,0.0000017222,0.0000017315,0.0000017422,0.0000017434, +0.0000017328,0.0000017166,0.0000017114,0.0000017327,0.0000017707, +0.0000017903,0.0000017967,0.0000018033,0.0000018119,0.0000018204, +0.0000018269,0.0000018302,0.0000018315,0.0000018325,0.0000018341, +0.0000018368,0.0000018408,0.0000018460,0.0000018518,0.0000018569, +0.0000018600,0.0000018605,0.0000018583,0.0000018537,0.0000018489, +0.0000018456,0.0000018410,0.0000018293,0.0000018050,0.0000017697, +0.0000017398,0.0000017302,0.0000017290,0.0000017287,0.0000017299, +0.0000017323,0.0000017288,0.0000017078,0.0000016949,0.0000017082, +0.0000017425,0.0000017680,0.0000017736,0.0000017609,0.0000017563, +0.0000017759,0.0000017750,0.0000017664,0.0000017640,0.0000017640, +0.0000017670,0.0000017617,0.0000017592,0.0000017857,0.0000018040, +0.0000017889,0.0000017428,0.0000017497,0.0000017632,0.0000017785, +0.0000017895,0.0000017830,0.0000017980,0.0000018979,0.0000019434, +0.0000019273,0.0000019330,0.0000019708,0.0000019920,0.0000020039, +0.0000019913,0.0000019451,0.0000019388,0.0000019540,0.0000019467, +0.0000019393,0.0000019419,0.0000019451,0.0000019468,0.0000019466, +0.0000019452,0.0000019418,0.0000019343,0.0000019210,0.0000019096, +0.0000019078,0.0000019118,0.0000019221,0.0000019532,0.0000019860, +0.0000019942,0.0000019846,0.0000019752,0.0000019798,0.0000019755, +0.0000019397,0.0000019192,0.0000019225,0.0000019400,0.0000019611, +0.0000019657,0.0000019560,0.0000019349,0.0000019141,0.0000019047, +0.0000019197,0.0000019693,0.0000020143,0.0000020181,0.0000019952, +0.0000019745,0.0000019822,0.0000019971,0.0000019881,0.0000019729, +0.0000019475,0.0000019540,0.0000019926,0.0000019983,0.0000019683, +0.0000019555,0.0000019743,0.0000019969,0.0000020060,0.0000020107, +0.0000020144,0.0000020145,0.0000020112,0.0000020036,0.0000019902, +0.0000019769,0.0000019714,0.0000019726,0.0000019805,0.0000019961, +0.0000020157,0.0000020285,0.0000020298,0.0000020259,0.0000020234, +0.0000020227,0.0000020213,0.0000020223,0.0000020220,0.0000019883, +0.0000019151,0.0000018535,0.0000018385,0.0000018483,0.0000018405, +0.0000018521,0.0000018827,0.0000018697,0.0000018430,0.0000018399, +0.0000018517,0.0000018665,0.0000018663,0.0000018393,0.0000018032, +0.0000017943,0.0000018115,0.0000018241,0.0000018324,0.0000018309, +0.0000018444,0.0000018638,0.0000018506,0.0000018475,0.0000018262, +0.0000018163,0.0000018257,0.0000018554,0.0000018823,0.0000018974, +0.0000019066,0.0000019090,0.0000019080,0.0000019076,0.0000019066, +0.0000019057,0.0000019056,0.0000019047,0.0000019026,0.0000019006, +0.0000018990,0.0000018972,0.0000018951,0.0000018924,0.0000018893, +0.0000018862,0.0000018837,0.0000018856,0.0000018939,0.0000018961, +0.0000018866,0.0000018762,0.0000018798,0.0000018978,0.0000019229, +0.0000019244,0.0000019146,0.0000019117,0.0000019003,0.0000018819, +0.0000018784,0.0000018733,0.0000018658,0.0000018512,0.0000018354, +0.0000018406,0.0000018569,0.0000018675,0.0000018679,0.0000018587, +0.0000018465,0.0000018338,0.0000018297,0.0000018346,0.0000018481, +0.0000018675,0.0000018872,0.0000018925,0.0000018677,0.0000018143, +0.0000017540,0.0000017093,0.0000016856,0.0000016778,0.0000016754, +0.0000016712,0.0000016652,0.0000016589,0.0000016560,0.0000016559, +0.0000016613,0.0000016680,0.0000016704,0.0000016697,0.0000016663, +0.0000016541,0.0000016417,0.0000016336,0.0000016289,0.0000016260, +0.0000016251,0.0000016246,0.0000016242,0.0000016230,0.0000016218, +0.0000016234,0.0000016275,0.0000016320,0.0000016343,0.0000016333, +0.0000016305,0.0000016274,0.0000016252,0.0000016242,0.0000016239, +0.0000016233,0.0000016216,0.0000016202,0.0000016238,0.0000016342, +0.0000016416,0.0000016395,0.0000016301,0.0000016191,0.0000016108, +0.0000016127,0.0000016332,0.0000016575,0.0000016620,0.0000016570, +0.0000016601,0.0000016684,0.0000016767,0.0000017066,0.0000017706, +0.0000018350,0.0000018679,0.0000018766,0.0000018757,0.0000018551, +0.0000018114,0.0000017812,0.0000017743,0.0000017722,0.0000017679, +0.0000017643,0.0000017585,0.0000017437,0.0000017247,0.0000017225, +0.0000017558,0.0000018097,0.0000018435,0.0000018391,0.0000018117, +0.0000017977,0.0000018006,0.0000018069,0.0000018207,0.0000018591, +0.0000019051,0.0000019195,0.0000019046,0.0000018704,0.0000018380, +0.0000018135,0.0000018000,0.0000017987,0.0000018047,0.0000018205, +0.0000018468,0.0000018761,0.0000018980,0.0000019062,0.0000019067, +0.0000018934,0.0000018474,0.0000017849,0.0000017641,0.0000017592, +0.0000017410,0.0000017274,0.0000017384,0.0000017626,0.0000017635, +0.0000017447,0.0000017271,0.0000017278,0.0000017340,0.0000017445, +0.0000017525,0.0000017559,0.0000017533,0.0000017452,0.0000017342, +0.0000017235,0.0000017178,0.0000017179,0.0000017175,0.0000017208, +0.0000017294,0.0000017325,0.0000017317,0.0000017371,0.0000017536, +0.0000017703,0.0000017925,0.0000018212,0.0000018502,0.0000018800, +0.0000019063,0.0000019272,0.0000019420,0.0000019514,0.0000019579, +0.0000019638,0.0000019703,0.0000019768,0.0000019812,0.0000019817, +0.0000019808,0.0000019777,0.0000019741,0.0000019718,0.0000019707, +0.0000019696,0.0000019681,0.0000019667,0.0000019663,0.0000019673, +0.0000019697,0.0000019723,0.0000019749,0.0000019772,0.0000019796, +0.0000019824,0.0000019847,0.0000019858,0.0000019858,0.0000019857, +0.0000019850,0.0000019837,0.0000019811,0.0000019798,0.0000019805, +0.0000019815,0.0000019798,0.0000019684,0.0000019482,0.0000019310, +0.0000019193,0.0000019094,0.0000019014,0.0000019016,0.0000019103, +0.0000019206,0.0000019230,0.0000019228,0.0000019229,0.0000019205, +0.0000019162,0.0000019157,0.0000019219,0.0000019273,0.0000019243, +0.0000019202,0.0000019203,0.0000019212,0.0000019195,0.0000019154, +0.0000019135,0.0000019133,0.0000019111,0.0000019068,0.0000019016, +0.0000018964,0.0000018928,0.0000018903,0.0000018886,0.0000018868, +0.0000018832,0.0000018786,0.0000018757,0.0000018744,0.0000018743, +0.0000018741,0.0000018736,0.0000018728,0.0000018723,0.0000018722, +0.0000018730,0.0000018748,0.0000018772,0.0000018790,0.0000018795, +0.0000018791,0.0000018778,0.0000018757,0.0000018732,0.0000018701, +0.0000018665,0.0000018639,0.0000018636,0.0000018656,0.0000018681, +0.0000018700,0.0000018749,0.0000018811,0.0000018870,0.0000018929, +0.0000018993,0.0000019058,0.0000019105,0.0000019127,0.0000019124, +0.0000019109,0.0000019092,0.0000019087,0.0000019086,0.0000019076, +0.0000019066,0.0000019069,0.0000019077,0.0000019087,0.0000019104, +0.0000019122,0.0000019140,0.0000019168,0.0000019209,0.0000019259, +0.0000019306,0.0000019342,0.0000019365,0.0000019372,0.0000019365, +0.0000019349,0.0000019329,0.0000019304,0.0000019272,0.0000019229, +0.0000019175,0.0000019128,0.0000019108,0.0000019109,0.0000019117, +0.0000019122,0.0000019119,0.0000019092,0.0000019033,0.0000018970, +0.0000018934,0.0000018951,0.0000019019,0.0000019085,0.0000019102, +0.0000019058,0.0000018981,0.0000018929,0.0000018909,0.0000018899, +0.0000018891,0.0000018886,0.0000018860,0.0000018806,0.0000018737, +0.0000018682,0.0000018655,0.0000018656,0.0000018650,0.0000018599, +0.0000018538,0.0000018509,0.0000018508,0.0000018509,0.0000018475, +0.0000018451,0.0000018451,0.0000018442,0.0000018403,0.0000018377, +0.0000018338,0.0000018310,0.0000018310,0.0000018314,0.0000018365, +0.0000018418,0.0000018390,0.0000018376,0.0000018350,0.0000018265, +0.0000018196,0.0000018170,0.0000018168,0.0000018182,0.0000018193, +0.0000018182,0.0000018136,0.0000018064,0.0000017977,0.0000017895, +0.0000017843,0.0000017811,0.0000017781,0.0000017767,0.0000017747, +0.0000017702,0.0000017634,0.0000017567,0.0000017493,0.0000017442, +0.0000017424,0.0000017367,0.0000017254,0.0000017198,0.0000017197, +0.0000017138,0.0000017011,0.0000016950,0.0000016936,0.0000016941, +0.0000016973,0.0000017020,0.0000017057,0.0000017062,0.0000017047, +0.0000017013,0.0000016967,0.0000016914,0.0000016853,0.0000016791, +0.0000016743,0.0000016720,0.0000016722,0.0000016727,0.0000016728, +0.0000016716,0.0000016706,0.0000016729,0.0000016779,0.0000016808, +0.0000016809,0.0000016817,0.0000016826,0.0000016827,0.0000016840, +0.0000016869,0.0000016891,0.0000016899,0.0000016912,0.0000016929, +0.0000016924,0.0000016889,0.0000016860,0.0000016761,0.0000016637, +0.0000016715,0.0000016812,0.0000016786,0.0000016851,0.0000016913, +0.0000016808,0.0000016613,0.0000016442,0.0000016340,0.0000016291, +0.0000016259,0.0000016254,0.0000016275,0.0000016321,0.0000016359, +0.0000016342,0.0000016286,0.0000016234,0.0000016187,0.0000016135, +0.0000016104,0.0000016071,0.0000016022,0.0000016046,0.0000016115, +0.0000016141,0.0000016153,0.0000016178,0.0000016210,0.0000016270, +0.0000016347,0.0000016406,0.0000016437,0.0000016441,0.0000016422, +0.0000016394,0.0000016367,0.0000016346,0.0000016359,0.0000016392, +0.0000016430,0.0000016449,0.0000016443,0.0000016429,0.0000016420, +0.0000016428,0.0000016433,0.0000016461,0.0000016521,0.0000016582, +0.0000016631,0.0000016706,0.0000016819,0.0000016910,0.0000016927, +0.0000016955,0.0000017151,0.0000017508,0.0000017704,0.0000017682, +0.0000017585,0.0000017539,0.0000017558,0.0000017609,0.0000017641, +0.0000017638,0.0000017635,0.0000017670,0.0000017755,0.0000017863, +0.0000017961,0.0000018037,0.0000018092,0.0000018128,0.0000018136, +0.0000018123,0.0000018104,0.0000018097,0.0000018038,0.0000018019, +0.0000017990,0.0000017963,0.0000017969,0.0000018037,0.0000018124, +0.0000018165,0.0000018171,0.0000018163,0.0000018141,0.0000018142, +0.0000018157,0.0000018127,0.0000018041,0.0000017976,0.0000017962, +0.0000017937,0.0000017844,0.0000017722,0.0000017708,0.0000017759, +0.0000017741,0.0000017709,0.0000017639,0.0000017675,0.0000017720, +0.0000017715,0.0000017796,0.0000017799,0.0000017798,0.0000017775, +0.0000017654,0.0000017596,0.0000017629,0.0000017720,0.0000017816, +0.0000017984,0.0000018196,0.0000018298,0.0000018412,0.0000018533, +0.0000018657,0.0000018746,0.0000018751,0.0000018777,0.0000018820, +0.0000018827,0.0000018807,0.0000018796,0.0000018818,0.0000018847, +0.0000018867,0.0000018880,0.0000018900,0.0000018927,0.0000018966, +0.0000019010,0.0000019041,0.0000019056,0.0000019063,0.0000019061, +0.0000019042,0.0000019012,0.0000018977,0.0000018947,0.0000018929, +0.0000018916,0.0000018904,0.0000018883,0.0000018861,0.0000018849, +0.0000018856,0.0000018880,0.0000018909,0.0000018937,0.0000018960, +0.0000018976,0.0000018975,0.0000018899,0.0000018716,0.0000018491, +0.0000018341,0.0000018194,0.0000018022,0.0000017922,0.0000017877, +0.0000017872,0.0000017841,0.0000017662,0.0000017457,0.0000017220, +0.0000017008,0.0000016954,0.0000016938,0.0000016887,0.0000016902, +0.0000016989,0.0000017030,0.0000017003,0.0000016979,0.0000016988, +0.0000017013,0.0000017039,0.0000017067,0.0000017089,0.0000017107, +0.0000017137,0.0000017177,0.0000017229,0.0000017328,0.0000017431, +0.0000017434,0.0000017348,0.0000017191,0.0000017014,0.0000017054, +0.0000017426,0.0000017781,0.0000017927,0.0000018002,0.0000018083, +0.0000018164,0.0000018229,0.0000018265,0.0000018273,0.0000018273, +0.0000018276,0.0000018295,0.0000018332,0.0000018381,0.0000018432, +0.0000018476,0.0000018504,0.0000018511,0.0000018498,0.0000018465, +0.0000018422,0.0000018367,0.0000018274,0.0000018100,0.0000017818, +0.0000017505,0.0000017326,0.0000017310,0.0000017291,0.0000017282, +0.0000017300,0.0000017324,0.0000017240,0.0000017004,0.0000016954, +0.0000017174,0.0000017547,0.0000017732,0.0000017726,0.0000017596, +0.0000017686,0.0000017824,0.0000017721,0.0000017656,0.0000017626, +0.0000017658,0.0000017671,0.0000017611,0.0000017645,0.0000017952, +0.0000018013,0.0000017695,0.0000017414,0.0000017577,0.0000017709, +0.0000017853,0.0000017885,0.0000017865,0.0000018443,0.0000019360, +0.0000019401,0.0000019218,0.0000019571,0.0000019865,0.0000020021, +0.0000020043,0.0000019619,0.0000019360,0.0000019588,0.0000019529, +0.0000019413,0.0000019454,0.0000019498,0.0000019502,0.0000019500, +0.0000019499,0.0000019487,0.0000019470,0.0000019462,0.0000019381, +0.0000019197,0.0000019084,0.0000019121,0.0000019194,0.0000019342, +0.0000019698,0.0000019938,0.0000019916,0.0000019775,0.0000019786, +0.0000019885,0.0000019707,0.0000019386,0.0000019240,0.0000019246, +0.0000019310,0.0000019308,0.0000019247,0.0000019184,0.0000019176, +0.0000019313,0.0000019672,0.0000020057,0.0000020184,0.0000020037, +0.0000019785,0.0000019802,0.0000019959,0.0000019913,0.0000019749, +0.0000019512,0.0000019505,0.0000019860,0.0000020018,0.0000019778, +0.0000019600,0.0000019694,0.0000019899,0.0000020006,0.0000020062, +0.0000020120,0.0000020156,0.0000020154,0.0000020128,0.0000020053, +0.0000019933,0.0000019831,0.0000019805,0.0000019875,0.0000020028, +0.0000020197,0.0000020296,0.0000020310,0.0000020277,0.0000020241, +0.0000020222,0.0000020203,0.0000020216,0.0000020222,0.0000019976, +0.0000019289,0.0000018623,0.0000018347,0.0000018475,0.0000018473, +0.0000018465,0.0000018773,0.0000018800,0.0000018529,0.0000018416, +0.0000018453,0.0000018598,0.0000018668,0.0000018495,0.0000018121, +0.0000017935,0.0000018081,0.0000018248,0.0000018333,0.0000018321, +0.0000018404,0.0000018596,0.0000018487,0.0000018411,0.0000018223, +0.0000018174,0.0000018447,0.0000018865,0.0000019074,0.0000019080, +0.0000019082,0.0000019067,0.0000019039,0.0000019003,0.0000018981, +0.0000018975,0.0000018974,0.0000018977,0.0000018981,0.0000018978, +0.0000018973,0.0000018963,0.0000018945,0.0000018920,0.0000018887, +0.0000018846,0.0000018808,0.0000018794,0.0000018853,0.0000018924, +0.0000018877,0.0000018758,0.0000018774,0.0000018938,0.0000019203, +0.0000019315,0.0000019258,0.0000019074,0.0000018874,0.0000018829, +0.0000018790,0.0000018722,0.0000018614,0.0000018456,0.0000018467, +0.0000018632,0.0000018695,0.0000018663,0.0000018537,0.0000018395, +0.0000018349,0.0000018326,0.0000018418,0.0000018581,0.0000018772, +0.0000018912,0.0000018861,0.0000018488,0.0000017851,0.0000017254, +0.0000016892,0.0000016759,0.0000016725,0.0000016689,0.0000016633, +0.0000016565,0.0000016546,0.0000016565,0.0000016635,0.0000016704, +0.0000016739,0.0000016710,0.0000016606,0.0000016466,0.0000016337, +0.0000016249,0.0000016214,0.0000016226,0.0000016267,0.0000016304, +0.0000016323,0.0000016328,0.0000016326,0.0000016301,0.0000016252, +0.0000016215,0.0000016222,0.0000016256,0.0000016293,0.0000016307, +0.0000016307,0.0000016297,0.0000016278,0.0000016265,0.0000016266, +0.0000016276,0.0000016266,0.0000016213,0.0000016162,0.0000016209, +0.0000016356,0.0000016440,0.0000016403,0.0000016289,0.0000016158, +0.0000016100,0.0000016205,0.0000016484,0.0000016591,0.0000016541, +0.0000016545,0.0000016633,0.0000016701,0.0000016916,0.0000017500, +0.0000018176,0.0000018555,0.0000018670,0.0000018719,0.0000018584, +0.0000018152,0.0000017781,0.0000017700,0.0000017695,0.0000017663, +0.0000017637,0.0000017626,0.0000017589,0.0000017417,0.0000017199, +0.0000017208,0.0000017592,0.0000018163,0.0000018445,0.0000018296, +0.0000018055,0.0000017981,0.0000018028,0.0000018095,0.0000018267, +0.0000018676,0.0000019079,0.0000019150,0.0000019017,0.0000018769, +0.0000018547,0.0000018440,0.0000018454,0.0000018574,0.0000018777, +0.0000018984,0.0000019085,0.0000019096,0.0000018994,0.0000018984, +0.0000018980,0.0000018702,0.0000018002,0.0000017642,0.0000017634, +0.0000017508,0.0000017286,0.0000017184,0.0000017146,0.0000017145, +0.0000017171,0.0000017226,0.0000017369,0.0000017530,0.0000017631, +0.0000017681,0.0000017701,0.0000017710,0.0000017681,0.0000017616, +0.0000017552,0.0000017479,0.0000017422,0.0000017392,0.0000017388, +0.0000017405,0.0000017408,0.0000017380,0.0000017374,0.0000017379, +0.0000017381,0.0000017406,0.0000017509,0.0000017694,0.0000017949, +0.0000018295,0.0000018652,0.0000018980,0.0000019248,0.0000019427, +0.0000019528,0.0000019595,0.0000019668,0.0000019744,0.0000019803, +0.0000019835,0.0000019835,0.0000019834,0.0000019828,0.0000019828, +0.0000019817,0.0000019797,0.0000019775,0.0000019766,0.0000019772, +0.0000019792,0.0000019814,0.0000019836,0.0000019856,0.0000019872, +0.0000019883,0.0000019886,0.0000019880,0.0000019867,0.0000019839, +0.0000019794,0.0000019754,0.0000019741,0.0000019746,0.0000019742, +0.0000019722,0.0000019665,0.0000019543,0.0000019402,0.0000019295, +0.0000019202,0.0000019113,0.0000019064,0.0000019070,0.0000019144, +0.0000019226,0.0000019248,0.0000019245,0.0000019238,0.0000019199, +0.0000019155,0.0000019144,0.0000019195,0.0000019279,0.0000019278, +0.0000019240,0.0000019237,0.0000019247,0.0000019236,0.0000019205, +0.0000019184,0.0000019177,0.0000019154,0.0000019120,0.0000019082, +0.0000019047,0.0000019013,0.0000018970,0.0000018915,0.0000018855, +0.0000018789,0.0000018744,0.0000018718,0.0000018717,0.0000018723, +0.0000018724,0.0000018732,0.0000018760,0.0000018797,0.0000018833, +0.0000018867,0.0000018897,0.0000018917,0.0000018924,0.0000018921, +0.0000018908,0.0000018887,0.0000018860,0.0000018830,0.0000018798, +0.0000018764,0.0000018736,0.0000018720,0.0000018709,0.0000018700, +0.0000018698,0.0000018714,0.0000018734,0.0000018744,0.0000018785, +0.0000018829,0.0000018870,0.0000018902,0.0000018921,0.0000018931, +0.0000018940,0.0000018952,0.0000018957,0.0000018948,0.0000018938, +0.0000018938,0.0000018944,0.0000018956,0.0000018977,0.0000019002, +0.0000019032,0.0000019070,0.0000019112,0.0000019152,0.0000019188, +0.0000019218,0.0000019243,0.0000019257,0.0000019260,0.0000019255, +0.0000019243,0.0000019224,0.0000019198,0.0000019167,0.0000019128, +0.0000019093,0.0000019076,0.0000019076,0.0000019085,0.0000019092, +0.0000019086,0.0000019057,0.0000019011,0.0000018979,0.0000018981, +0.0000019015,0.0000019060,0.0000019078,0.0000019055,0.0000019009, +0.0000018970,0.0000018950,0.0000018926,0.0000018891,0.0000018872, +0.0000018867,0.0000018833,0.0000018764,0.0000018701,0.0000018666, +0.0000018643,0.0000018616,0.0000018578,0.0000018529,0.0000018500, +0.0000018498,0.0000018511,0.0000018521,0.0000018495,0.0000018483, +0.0000018466,0.0000018434,0.0000018406,0.0000018387,0.0000018347, +0.0000018321,0.0000018314,0.0000018313,0.0000018354,0.0000018412, +0.0000018385,0.0000018366,0.0000018323,0.0000018241,0.0000018197, +0.0000018192,0.0000018205,0.0000018222,0.0000018223,0.0000018195, +0.0000018131,0.0000018041,0.0000017955,0.0000017885,0.0000017835, +0.0000017796,0.0000017771,0.0000017764,0.0000017748,0.0000017689, +0.0000017609,0.0000017524,0.0000017459,0.0000017440,0.0000017415, +0.0000017322,0.0000017216,0.0000017197,0.0000017203,0.0000017129, +0.0000016993,0.0000016944,0.0000016941,0.0000016940,0.0000016954, +0.0000016988,0.0000017014,0.0000017007,0.0000016984,0.0000016951, +0.0000016902,0.0000016844,0.0000016791,0.0000016747,0.0000016716, +0.0000016714,0.0000016728,0.0000016741,0.0000016743,0.0000016731, +0.0000016735,0.0000016777,0.0000016810,0.0000016805,0.0000016799, +0.0000016807,0.0000016806,0.0000016805,0.0000016829,0.0000016866, +0.0000016885,0.0000016892,0.0000016908,0.0000016922,0.0000016901, +0.0000016862,0.0000016817,0.0000016680,0.0000016620,0.0000016753, +0.0000016795,0.0000016762,0.0000016831,0.0000016868,0.0000016757, +0.0000016563,0.0000016397,0.0000016312,0.0000016274,0.0000016260, +0.0000016270,0.0000016301,0.0000016346,0.0000016341,0.0000016276, +0.0000016215,0.0000016175,0.0000016139,0.0000016110,0.0000016092, +0.0000016035,0.0000016024,0.0000016087,0.0000016121,0.0000016135, +0.0000016168,0.0000016219,0.0000016315,0.0000016424,0.0000016491, +0.0000016520,0.0000016532,0.0000016531,0.0000016525,0.0000016509, +0.0000016476,0.0000016434,0.0000016404,0.0000016422,0.0000016461, +0.0000016494,0.0000016504,0.0000016484,0.0000016456,0.0000016436, +0.0000016441,0.0000016482,0.0000016546,0.0000016591,0.0000016632, +0.0000016713,0.0000016828,0.0000016906,0.0000016916,0.0000016936, +0.0000017150,0.0000017500,0.0000017708,0.0000017702,0.0000017617, +0.0000017552,0.0000017545,0.0000017586,0.0000017624,0.0000017629, +0.0000017627,0.0000017665,0.0000017750,0.0000017853,0.0000017943, +0.0000018016,0.0000018075,0.0000018108,0.0000018107,0.0000018080, +0.0000018054,0.0000017998,0.0000017991,0.0000017980,0.0000017989, +0.0000018028,0.0000018084,0.0000018135,0.0000018161,0.0000018163, +0.0000018139,0.0000018119,0.0000018133,0.0000018154,0.0000018122, +0.0000018030,0.0000017952,0.0000017924,0.0000017910,0.0000017844, +0.0000017732,0.0000017699,0.0000017739,0.0000017729,0.0000017702, +0.0000017624,0.0000017644,0.0000017708,0.0000017693,0.0000017772, +0.0000017792,0.0000017785,0.0000017779,0.0000017670,0.0000017599, +0.0000017624,0.0000017708,0.0000017814,0.0000017982,0.0000018196, +0.0000018307,0.0000018416,0.0000018519,0.0000018626,0.0000018726, +0.0000018742,0.0000018762,0.0000018801,0.0000018814,0.0000018801, +0.0000018781,0.0000018787,0.0000018815,0.0000018847,0.0000018876, +0.0000018899,0.0000018926,0.0000018955,0.0000018982,0.0000018997, +0.0000018999,0.0000018993,0.0000018980,0.0000018963,0.0000018954, +0.0000018950,0.0000018951,0.0000018947,0.0000018936,0.0000018915, +0.0000018876,0.0000018833,0.0000018808,0.0000018805,0.0000018819, +0.0000018844,0.0000018870,0.0000018883,0.0000018872,0.0000018814, +0.0000018682,0.0000018486,0.0000018323,0.0000018224,0.0000018094, +0.0000017977,0.0000017920,0.0000017878,0.0000017872,0.0000017815, +0.0000017640,0.0000017421,0.0000017128,0.0000016973,0.0000016973, +0.0000016966,0.0000017002,0.0000017095,0.0000017121,0.0000017068, +0.0000017016,0.0000017009,0.0000017032,0.0000017063,0.0000017099, +0.0000017129,0.0000017143,0.0000017160,0.0000017189,0.0000017239, +0.0000017341,0.0000017445,0.0000017434,0.0000017353,0.0000017244, +0.0000017018,0.0000016885,0.0000017069,0.0000017508,0.0000017819, +0.0000017946,0.0000018026,0.0000018104,0.0000018170,0.0000018215, +0.0000018233,0.0000018232,0.0000018226,0.0000018227,0.0000018246, +0.0000018282,0.0000018322,0.0000018355,0.0000018376,0.0000018382, +0.0000018369,0.0000018335,0.0000018284,0.0000018211,0.0000018091, +0.0000017888,0.0000017612,0.0000017387,0.0000017323,0.0000017313, +0.0000017302,0.0000017310,0.0000017329,0.0000017323,0.0000017174, +0.0000016966,0.0000016998,0.0000017325,0.0000017684,0.0000017778, +0.0000017681,0.0000017640,0.0000017802,0.0000017817,0.0000017695, +0.0000017644,0.0000017624,0.0000017667,0.0000017637,0.0000017588, +0.0000017731,0.0000017976,0.0000017928,0.0000017520,0.0000017454, +0.0000017657,0.0000017778,0.0000017893,0.0000017873,0.0000018074, +0.0000018998,0.0000019444,0.0000019306,0.0000019336,0.0000019776, +0.0000019988,0.0000020051,0.0000019900,0.0000019386,0.0000019519, +0.0000019647,0.0000019415,0.0000019468,0.0000019510,0.0000019495, +0.0000019492,0.0000019516,0.0000019535,0.0000019526,0.0000019482, +0.0000019464,0.0000019463,0.0000019348,0.0000019131,0.0000019110, +0.0000019204,0.0000019264,0.0000019511,0.0000019865,0.0000019949, +0.0000019823,0.0000019775,0.0000019909,0.0000019926,0.0000019716, +0.0000019497,0.0000019399,0.0000019377,0.0000019384,0.0000019422, +0.0000019476,0.0000019571,0.0000019773,0.0000020027,0.0000020170, +0.0000020102,0.0000019853,0.0000019780,0.0000019941,0.0000019956, +0.0000019784,0.0000019527,0.0000019450,0.0000019794,0.0000020004, +0.0000019863,0.0000019658,0.0000019681,0.0000019829,0.0000019949, +0.0000020016,0.0000020083,0.0000020150,0.0000020179,0.0000020176, +0.0000020143,0.0000020071,0.0000019990,0.0000019951,0.0000019973, +0.0000020078,0.0000020207,0.0000020289,0.0000020309,0.0000020293, +0.0000020254,0.0000020223,0.0000020201,0.0000020212,0.0000020223, +0.0000020057,0.0000019423,0.0000018731,0.0000018349,0.0000018431, +0.0000018505,0.0000018446,0.0000018703,0.0000018860,0.0000018638, +0.0000018466,0.0000018439,0.0000018526,0.0000018644,0.0000018581, +0.0000018236,0.0000017979,0.0000018037,0.0000018231,0.0000018337, +0.0000018342,0.0000018363,0.0000018538,0.0000018459,0.0000018379, +0.0000018219,0.0000018257,0.0000018664,0.0000019061,0.0000019086, +0.0000018989,0.0000018940,0.0000018916,0.0000018893,0.0000018867, +0.0000018847,0.0000018845,0.0000018856,0.0000018870,0.0000018890, +0.0000018917,0.0000018936,0.0000018941,0.0000018928,0.0000018900, +0.0000018871,0.0000018839,0.0000018798,0.0000018759,0.0000018768, +0.0000018857,0.0000018882,0.0000018784,0.0000018756,0.0000018865, +0.0000019065,0.0000019173,0.0000019078,0.0000018905,0.0000018857, +0.0000018833,0.0000018770,0.0000018687,0.0000018553,0.0000018522, +0.0000018672,0.0000018726,0.0000018655,0.0000018517,0.0000018369, +0.0000018321,0.0000018388,0.0000018522,0.0000018685,0.0000018871, +0.0000018943,0.0000018826,0.0000018301,0.0000017598,0.0000017046, +0.0000016801,0.0000016752,0.0000016717,0.0000016658,0.0000016576, +0.0000016537,0.0000016549,0.0000016609,0.0000016685,0.0000016726, +0.0000016699,0.0000016586,0.0000016436,0.0000016287,0.0000016175, +0.0000016111,0.0000016120,0.0000016164,0.0000016216,0.0000016269, +0.0000016325,0.0000016363,0.0000016380,0.0000016381,0.0000016363, +0.0000016322,0.0000016277,0.0000016264,0.0000016279,0.0000016307, +0.0000016325,0.0000016328,0.0000016322,0.0000016304,0.0000016284, +0.0000016278,0.0000016284,0.0000016279,0.0000016231,0.0000016153, +0.0000016127,0.0000016247,0.0000016411,0.0000016439,0.0000016357, +0.0000016217,0.0000016110,0.0000016178,0.0000016439,0.0000016557, +0.0000016510,0.0000016512,0.0000016587,0.0000016648,0.0000016897, +0.0000017516,0.0000018173,0.0000018495,0.0000018586,0.0000018628, +0.0000018445,0.0000017969,0.0000017618,0.0000017576,0.0000017592, +0.0000017587,0.0000017587,0.0000017610,0.0000017622,0.0000017550, +0.0000017331,0.0000017160,0.0000017219,0.0000017718,0.0000018276, +0.0000018395,0.0000018213,0.0000017997,0.0000017981,0.0000018050, +0.0000018108,0.0000018305,0.0000018679,0.0000018998,0.0000019119, +0.0000019080,0.0000019003,0.0000018957,0.0000018975,0.0000019041, +0.0000019030,0.0000019021,0.0000018910,0.0000018708,0.0000018586, +0.0000018642,0.0000018849,0.0000018814,0.0000018215,0.0000017680, +0.0000017645,0.0000017607,0.0000017455,0.0000017264,0.0000017169, +0.0000017171,0.0000017264,0.0000017424,0.0000017555,0.0000017614, +0.0000017643,0.0000017664,0.0000017678,0.0000017684,0.0000017674, +0.0000017661,0.0000017644,0.0000017619,0.0000017590,0.0000017576, +0.0000017582,0.0000017603,0.0000017624,0.0000017635,0.0000017622, +0.0000017598,0.0000017547,0.0000017469,0.0000017404,0.0000017381, +0.0000017377,0.0000017524,0.0000017764,0.0000018137,0.0000018572, +0.0000018982,0.0000019285,0.0000019450,0.0000019538,0.0000019619, +0.0000019707,0.0000019778,0.0000019825,0.0000019856,0.0000019886, +0.0000019912,0.0000019931,0.0000019926,0.0000019915,0.0000019901, +0.0000019890,0.0000019888,0.0000019890,0.0000019897,0.0000019905, +0.0000019907,0.0000019896,0.0000019872,0.0000019834,0.0000019787, +0.0000019739,0.0000019704,0.0000019689,0.0000019677,0.0000019659, +0.0000019625,0.0000019572,0.0000019498,0.0000019412,0.0000019341, +0.0000019274,0.0000019197,0.0000019138,0.0000019117,0.0000019131, +0.0000019185,0.0000019237,0.0000019264,0.0000019272,0.0000019259, +0.0000019204,0.0000019160,0.0000019144,0.0000019188,0.0000019289, +0.0000019308,0.0000019280,0.0000019273,0.0000019284,0.0000019289, +0.0000019263,0.0000019230,0.0000019212,0.0000019197,0.0000019175, +0.0000019147,0.0000019121,0.0000019087,0.0000019025,0.0000018941, +0.0000018845,0.0000018759,0.0000018703,0.0000018670,0.0000018666, +0.0000018667,0.0000018685,0.0000018753,0.0000018833,0.0000018889, +0.0000018922,0.0000018940,0.0000018950,0.0000018953,0.0000018950, +0.0000018941,0.0000018928,0.0000018914,0.0000018901,0.0000018887, +0.0000018874,0.0000018860,0.0000018846,0.0000018827,0.0000018804, +0.0000018780,0.0000018759,0.0000018743,0.0000018737,0.0000018736, +0.0000018730,0.0000018706,0.0000018691,0.0000018680,0.0000018678, +0.0000018692,0.0000018720,0.0000018752,0.0000018778,0.0000018803, +0.0000018828,0.0000018849,0.0000018869,0.0000018891,0.0000018911, +0.0000018931,0.0000018957,0.0000018984,0.0000019010,0.0000019041, +0.0000019076,0.0000019113,0.0000019138,0.0000019149,0.0000019154, +0.0000019152,0.0000019141,0.0000019129,0.0000019122,0.0000019114, +0.0000019104,0.0000019101,0.0000019111,0.0000019132,0.0000019144, +0.0000019137,0.0000019107,0.0000019069,0.0000019046,0.0000019035, +0.0000019043,0.0000019045,0.0000019034,0.0000019011,0.0000018990, +0.0000018970,0.0000018940,0.0000018890,0.0000018835,0.0000018817, +0.0000018821,0.0000018793,0.0000018730,0.0000018678,0.0000018647, +0.0000018608,0.0000018546,0.0000018489,0.0000018472,0.0000018485, +0.0000018505,0.0000018520,0.0000018535,0.0000018520,0.0000018512, +0.0000018473,0.0000018431,0.0000018415,0.0000018397,0.0000018362, +0.0000018343,0.0000018328,0.0000018318,0.0000018349,0.0000018406, +0.0000018387,0.0000018360,0.0000018305,0.0000018232,0.0000018210, +0.0000018226,0.0000018257,0.0000018271,0.0000018256,0.0000018209, +0.0000018130,0.0000018031,0.0000017950,0.0000017877,0.0000017814, +0.0000017772,0.0000017761,0.0000017763,0.0000017737,0.0000017675, +0.0000017578,0.0000017498,0.0000017474,0.0000017468,0.0000017408, +0.0000017286,0.0000017204,0.0000017211,0.0000017219,0.0000017130, +0.0000016989,0.0000016948,0.0000016952,0.0000016943,0.0000016944, +0.0000016966,0.0000016976,0.0000016959,0.0000016927,0.0000016887, +0.0000016828,0.0000016773,0.0000016736,0.0000016713,0.0000016705, +0.0000016719,0.0000016741,0.0000016757,0.0000016751,0.0000016743, +0.0000016773,0.0000016813,0.0000016808,0.0000016786,0.0000016787, +0.0000016791,0.0000016781,0.0000016788,0.0000016825,0.0000016861, +0.0000016876,0.0000016882,0.0000016896,0.0000016901,0.0000016865, +0.0000016835,0.0000016756,0.0000016615,0.0000016641,0.0000016778, +0.0000016771,0.0000016739,0.0000016799,0.0000016811,0.0000016694, +0.0000016514,0.0000016375,0.0000016304,0.0000016271,0.0000016267, +0.0000016282,0.0000016322,0.0000016341,0.0000016287,0.0000016205, +0.0000016158,0.0000016134,0.0000016111,0.0000016103,0.0000016062, +0.0000016016,0.0000016056,0.0000016102,0.0000016117,0.0000016156, +0.0000016224,0.0000016349,0.0000016473,0.0000016524,0.0000016533, +0.0000016538,0.0000016543,0.0000016556,0.0000016566,0.0000016563, +0.0000016543,0.0000016508,0.0000016475,0.0000016457,0.0000016478, +0.0000016510,0.0000016520,0.0000016513,0.0000016486,0.0000016460, +0.0000016470,0.0000016512,0.0000016560,0.0000016591,0.0000016634, +0.0000016722,0.0000016832,0.0000016899,0.0000016901,0.0000016920, +0.0000017140,0.0000017502,0.0000017722,0.0000017727,0.0000017649, +0.0000017561,0.0000017530,0.0000017555,0.0000017602,0.0000017635, +0.0000017656,0.0000017696,0.0000017764,0.0000017845,0.0000017926, +0.0000018000,0.0000018051,0.0000018061,0.0000018037,0.0000018007, +0.0000017953,0.0000017963,0.0000017991,0.0000018044,0.0000018088, +0.0000018106,0.0000018120,0.0000018136,0.0000018140,0.0000018116, +0.0000018099,0.0000018126,0.0000018153,0.0000018120,0.0000018029, +0.0000017940,0.0000017885,0.0000017861,0.0000017824,0.0000017737, +0.0000017696,0.0000017722,0.0000017714,0.0000017694,0.0000017610, +0.0000017613,0.0000017693,0.0000017679,0.0000017745,0.0000017782, +0.0000017768,0.0000017771,0.0000017678,0.0000017609,0.0000017628, +0.0000017703,0.0000017817,0.0000017987,0.0000018198,0.0000018314, +0.0000018423,0.0000018516,0.0000018608,0.0000018704,0.0000018732, +0.0000018750,0.0000018779,0.0000018797,0.0000018795,0.0000018770, +0.0000018757,0.0000018770,0.0000018800,0.0000018832,0.0000018862, +0.0000018886,0.0000018900,0.0000018904,0.0000018905,0.0000018918, +0.0000018934,0.0000018947,0.0000018965,0.0000018975,0.0000018974, +0.0000018958,0.0000018917,0.0000018850,0.0000018759,0.0000018661, +0.0000018574,0.0000018516,0.0000018502,0.0000018516,0.0000018551, +0.0000018588,0.0000018611,0.0000018606,0.0000018552,0.0000018439, +0.0000018289,0.0000018191,0.0000018116,0.0000018020,0.0000017961, +0.0000017923,0.0000017882,0.0000017874,0.0000017795,0.0000017611, +0.0000017330,0.0000017047,0.0000016995,0.0000017035,0.0000017091, +0.0000017185,0.0000017211,0.0000017143,0.0000017063,0.0000017034, +0.0000017048,0.0000017083,0.0000017121,0.0000017158,0.0000017174, +0.0000017183,0.0000017204,0.0000017254,0.0000017364,0.0000017465, +0.0000017436,0.0000017351,0.0000017276,0.0000017067,0.0000016796, +0.0000016751,0.0000017071,0.0000017548,0.0000017843,0.0000017958, +0.0000018033,0.0000018097,0.0000018148,0.0000018184,0.0000018196, +0.0000018191,0.0000018180,0.0000018175,0.0000018183,0.0000018201, +0.0000018219,0.0000018230,0.0000018229,0.0000018209,0.0000018172, +0.0000018122,0.0000018048,0.0000017917,0.0000017704,0.0000017470, +0.0000017337,0.0000017328,0.0000017333,0.0000017356,0.0000017385, +0.0000017390,0.0000017294,0.0000017055,0.0000016915,0.0000017101, +0.0000017509,0.0000017768,0.0000017768,0.0000017669,0.0000017753, +0.0000017864,0.0000017774,0.0000017680,0.0000017632,0.0000017635, +0.0000017648,0.0000017592,0.0000017607,0.0000017831,0.0000017975, +0.0000017790,0.0000017414,0.0000017550,0.0000017720,0.0000017831, +0.0000017904,0.0000017908,0.0000018419,0.0000019343,0.0000019402, +0.0000019289,0.0000019557,0.0000019895,0.0000020057,0.0000020019, +0.0000019656,0.0000019382,0.0000019714,0.0000019528,0.0000019418, +0.0000019536,0.0000019483,0.0000019458,0.0000019488,0.0000019551, +0.0000019592,0.0000019606,0.0000019548,0.0000019457,0.0000019456, +0.0000019441,0.0000019232,0.0000019110,0.0000019204,0.0000019264, +0.0000019372,0.0000019731,0.0000019948,0.0000019880,0.0000019777, +0.0000019873,0.0000019983,0.0000019975,0.0000019892,0.0000019835, +0.0000019823,0.0000019849,0.0000019889,0.0000019915,0.0000019964, +0.0000020069,0.0000020168,0.0000020152,0.0000019933,0.0000019793, +0.0000019895,0.0000019980,0.0000019844,0.0000019574,0.0000019417, +0.0000019682,0.0000020011,0.0000019937,0.0000019721,0.0000019684, +0.0000019769,0.0000019885,0.0000019972,0.0000020040,0.0000020120, +0.0000020190,0.0000020211,0.0000020196,0.0000020150,0.0000020095, +0.0000020054,0.0000020043,0.0000020085,0.0000020181,0.0000020268, +0.0000020308,0.0000020303,0.0000020264,0.0000020223,0.0000020199, +0.0000020209,0.0000020224,0.0000020115,0.0000019525,0.0000018826, +0.0000018385,0.0000018362,0.0000018529,0.0000018451,0.0000018575, +0.0000018864,0.0000018757,0.0000018523,0.0000018447,0.0000018474, +0.0000018601,0.0000018618,0.0000018356,0.0000018028,0.0000018005, +0.0000018197,0.0000018335,0.0000018364,0.0000018339,0.0000018466, +0.0000018422,0.0000018348,0.0000018205,0.0000018313,0.0000018873, +0.0000019087,0.0000018942,0.0000018779,0.0000018725,0.0000018717, +0.0000018716,0.0000018706,0.0000018691,0.0000018687,0.0000018697, +0.0000018720,0.0000018749,0.0000018791,0.0000018834,0.0000018857, +0.0000018853,0.0000018824,0.0000018799,0.0000018797,0.0000018796, +0.0000018757,0.0000018713,0.0000018754,0.0000018842,0.0000018828, +0.0000018754,0.0000018791,0.0000018866,0.0000018908,0.0000018885, +0.0000018865,0.0000018854,0.0000018804,0.0000018734,0.0000018617, +0.0000018569,0.0000018688,0.0000018733,0.0000018638,0.0000018485, +0.0000018395,0.0000018367,0.0000018467,0.0000018613,0.0000018781, +0.0000018960,0.0000019039,0.0000018816,0.0000018174,0.0000017436, +0.0000016947,0.0000016798,0.0000016773,0.0000016729,0.0000016647, +0.0000016573,0.0000016551,0.0000016586,0.0000016659,0.0000016696, +0.0000016688,0.0000016603,0.0000016457,0.0000016294,0.0000016166, +0.0000016122,0.0000016106,0.0000016104,0.0000016124,0.0000016142, +0.0000016149,0.0000016162,0.0000016204,0.0000016282,0.0000016351, +0.0000016375,0.0000016367,0.0000016338,0.0000016311,0.0000016299, +0.0000016297,0.0000016297,0.0000016299,0.0000016300,0.0000016293, +0.0000016276,0.0000016261,0.0000016256,0.0000016259,0.0000016248, +0.0000016201,0.0000016130,0.0000016101,0.0000016201,0.0000016369, +0.0000016428,0.0000016373,0.0000016241,0.0000016137,0.0000016207, +0.0000016443,0.0000016521,0.0000016471,0.0000016481,0.0000016534, +0.0000016632,0.0000017004,0.0000017700,0.0000018255,0.0000018460, +0.0000018523,0.0000018494,0.0000018124,0.0000017619,0.0000017398, +0.0000017413,0.0000017442,0.0000017452,0.0000017486,0.0000017544, +0.0000017586,0.0000017576,0.0000017441,0.0000017188,0.0000017049, +0.0000017334,0.0000017970,0.0000018375,0.0000018357,0.0000018100, +0.0000017965,0.0000018001,0.0000018053,0.0000018106,0.0000018273, +0.0000018557,0.0000018814,0.0000018961,0.0000019008,0.0000019002, +0.0000018984,0.0000018915,0.0000018763,0.0000018590,0.0000018406, +0.0000018269,0.0000018221,0.0000018306,0.0000018621,0.0000018817, +0.0000018470,0.0000017834,0.0000017651,0.0000017663,0.0000017627, +0.0000017537,0.0000017455,0.0000017436,0.0000017484,0.0000017564, +0.0000017607,0.0000017615,0.0000017615,0.0000017611,0.0000017604, +0.0000017597,0.0000017604,0.0000017626,0.0000017644,0.0000017651, +0.0000017651,0.0000017648,0.0000017656,0.0000017668,0.0000017681, +0.0000017692,0.0000017708,0.0000017724,0.0000017735,0.0000017707, +0.0000017637,0.0000017543,0.0000017430,0.0000017334,0.0000017346, +0.0000017409,0.0000017721,0.0000018198,0.0000018741,0.0000019156, +0.0000019377,0.0000019484,0.0000019579,0.0000019673,0.0000019751, +0.0000019814,0.0000019872,0.0000019923,0.0000019957,0.0000019976, +0.0000019998,0.0000020005,0.0000020000,0.0000019987,0.0000019968, +0.0000019946,0.0000019919,0.0000019876,0.0000019819,0.0000019766, +0.0000019727,0.0000019701,0.0000019680,0.0000019659,0.0000019634, +0.0000019602,0.0000019561,0.0000019506,0.0000019455,0.0000019408, +0.0000019359,0.0000019312,0.0000019260,0.0000019211,0.0000019187, +0.0000019187,0.0000019210,0.0000019243,0.0000019266,0.0000019293, +0.0000019311,0.0000019286,0.0000019228,0.0000019185,0.0000019162, +0.0000019205,0.0000019309,0.0000019345,0.0000019326,0.0000019314, +0.0000019322,0.0000019338,0.0000019318,0.0000019269,0.0000019243, +0.0000019234,0.0000019218,0.0000019194,0.0000019171,0.0000019141, +0.0000019083,0.0000018993,0.0000018886,0.0000018788,0.0000018711, +0.0000018668,0.0000018650,0.0000018648,0.0000018707,0.0000018810, +0.0000018895,0.0000018943,0.0000018969,0.0000018982,0.0000018985, +0.0000018976,0.0000018961,0.0000018949,0.0000018942,0.0000018937, +0.0000018931,0.0000018921,0.0000018911,0.0000018902,0.0000018888, +0.0000018870,0.0000018849,0.0000018823,0.0000018801,0.0000018781, +0.0000018759,0.0000018732,0.0000018700,0.0000018662,0.0000018620, +0.0000018578,0.0000018549,0.0000018543,0.0000018553,0.0000018586, +0.0000018630,0.0000018677,0.0000018720,0.0000018755,0.0000018781, +0.0000018799,0.0000018817,0.0000018836,0.0000018854,0.0000018877, +0.0000018913,0.0000018956,0.0000019000,0.0000019037,0.0000019062, +0.0000019080,0.0000019092,0.0000019098,0.0000019111,0.0000019134, +0.0000019156,0.0000019168,0.0000019178,0.0000019193,0.0000019209, +0.0000019211,0.0000019184,0.0000019133,0.0000019078,0.0000019040, +0.0000019021,0.0000019009,0.0000018992,0.0000018975,0.0000018957, +0.0000018936,0.0000018908,0.0000018864,0.0000018804,0.0000018759, +0.0000018762,0.0000018781,0.0000018760,0.0000018697,0.0000018638, +0.0000018598,0.0000018544,0.0000018472,0.0000018429,0.0000018446, +0.0000018492,0.0000018528,0.0000018541,0.0000018553,0.0000018543, +0.0000018537,0.0000018477,0.0000018438,0.0000018430,0.0000018412, +0.0000018381,0.0000018368,0.0000018347,0.0000018331,0.0000018351, +0.0000018404,0.0000018392,0.0000018357,0.0000018300,0.0000018240, +0.0000018235,0.0000018278,0.0000018324,0.0000018328,0.0000018298, +0.0000018239,0.0000018141,0.0000018032,0.0000017940,0.0000017851, +0.0000017786,0.0000017761,0.0000017763,0.0000017762,0.0000017733, +0.0000017655,0.0000017556,0.0000017509,0.0000017517,0.0000017502, +0.0000017409,0.0000017284,0.0000017226,0.0000017236,0.0000017241, +0.0000017145,0.0000017008,0.0000016967,0.0000016964,0.0000016947, +0.0000016944,0.0000016953,0.0000016951,0.0000016923,0.0000016883, +0.0000016834,0.0000016770,0.0000016723,0.0000016707,0.0000016702, +0.0000016710,0.0000016734,0.0000016759,0.0000016764,0.0000016750, +0.0000016764,0.0000016807,0.0000016814,0.0000016787,0.0000016780, +0.0000016791,0.0000016787,0.0000016776,0.0000016788,0.0000016828, +0.0000016862,0.0000016869,0.0000016866,0.0000016873,0.0000016861, +0.0000016833,0.0000016804,0.0000016679,0.0000016584,0.0000016679, +0.0000016787,0.0000016744,0.0000016719,0.0000016755,0.0000016736, +0.0000016620,0.0000016473,0.0000016362,0.0000016296,0.0000016269, +0.0000016270,0.0000016293,0.0000016329,0.0000016310,0.0000016224, +0.0000016154,0.0000016125,0.0000016106,0.0000016099,0.0000016084, +0.0000016025,0.0000016032,0.0000016089,0.0000016109,0.0000016144, +0.0000016222,0.0000016357,0.0000016489,0.0000016526,0.0000016514, +0.0000016491,0.0000016490,0.0000016507,0.0000016526,0.0000016536, +0.0000016543,0.0000016547,0.0000016553,0.0000016531,0.0000016494, +0.0000016484,0.0000016497,0.0000016516,0.0000016520,0.0000016507, +0.0000016489,0.0000016495,0.0000016523,0.0000016552,0.0000016579, +0.0000016633,0.0000016730,0.0000016842,0.0000016897,0.0000016885, +0.0000016901,0.0000017141,0.0000017521,0.0000017746,0.0000017760, +0.0000017671,0.0000017568,0.0000017525,0.0000017534,0.0000017592, +0.0000017655,0.0000017703,0.0000017750,0.0000017798,0.0000017858, +0.0000017922,0.0000017973,0.0000017995,0.0000017983,0.0000017956, +0.0000017925,0.0000017963,0.0000018031,0.0000018099,0.0000018116, +0.0000018094,0.0000018085,0.0000018108,0.0000018122,0.0000018104, +0.0000018091,0.0000018118,0.0000018142,0.0000018113,0.0000018030, +0.0000017937,0.0000017847,0.0000017795,0.0000017781,0.0000017736, +0.0000017695,0.0000017708,0.0000017697,0.0000017686,0.0000017603, +0.0000017578,0.0000017670,0.0000017671,0.0000017721,0.0000017771, +0.0000017752,0.0000017754,0.0000017678,0.0000017622,0.0000017637, +0.0000017701,0.0000017822,0.0000017997,0.0000018202,0.0000018324, +0.0000018432,0.0000018518,0.0000018597,0.0000018684,0.0000018714, +0.0000018734,0.0000018760,0.0000018781,0.0000018788,0.0000018779, +0.0000018764,0.0000018764,0.0000018779,0.0000018798,0.0000018825, +0.0000018852,0.0000018875,0.0000018889,0.0000018908,0.0000018935, +0.0000018956,0.0000018970,0.0000018970,0.0000018939,0.0000018862, +0.0000018740,0.0000018586,0.0000018417,0.0000018251,0.0000018110, +0.0000018014,0.0000017971,0.0000017975,0.0000018023,0.0000018093, +0.0000018171,0.0000018244,0.0000018293,0.0000018293,0.0000018231, +0.0000018133,0.0000018078,0.0000018026,0.0000017981,0.0000017963, +0.0000017925,0.0000017890,0.0000017880,0.0000017779,0.0000017552, +0.0000017211,0.0000017026,0.0000017067,0.0000017162,0.0000017264, +0.0000017302,0.0000017224,0.0000017124,0.0000017077,0.0000017077, +0.0000017102,0.0000017140,0.0000017178,0.0000017197,0.0000017206, +0.0000017223,0.0000017273,0.0000017388,0.0000017482,0.0000017442, +0.0000017350,0.0000017287,0.0000017083,0.0000016780,0.0000016607, +0.0000016658,0.0000017054,0.0000017563,0.0000017852,0.0000017961, +0.0000018024,0.0000018073,0.0000018115,0.0000018145,0.0000018153, +0.0000018147,0.0000018132,0.0000018120,0.0000018115,0.0000018113, +0.0000018108,0.0000018094,0.0000018072,0.0000018043,0.0000018000, +0.0000017919,0.0000017769,0.0000017564,0.0000017399,0.0000017349, +0.0000017355,0.0000017396,0.0000017454,0.0000017476,0.0000017402, +0.0000017200,0.0000016944,0.0000016939,0.0000017286,0.0000017697, +0.0000017814,0.0000017724,0.0000017724,0.0000017859,0.0000017843, +0.0000017732,0.0000017660,0.0000017616,0.0000017630,0.0000017597, +0.0000017557,0.0000017677,0.0000017915,0.0000017919,0.0000017628, +0.0000017407,0.0000017646,0.0000017766,0.0000017869,0.0000017910, +0.0000018062,0.0000018802,0.0000019445,0.0000019350,0.0000019355, +0.0000019761,0.0000019977,0.0000020090,0.0000019910,0.0000019508, +0.0000019540,0.0000019736,0.0000019408,0.0000019500,0.0000019518, +0.0000019433,0.0000019436,0.0000019486,0.0000019563,0.0000019617, +0.0000019648,0.0000019616,0.0000019491,0.0000019440,0.0000019447, +0.0000019332,0.0000019143,0.0000019202,0.0000019280,0.0000019310, +0.0000019590,0.0000019925,0.0000019921,0.0000019805,0.0000019815, +0.0000019942,0.0000020016,0.0000020047,0.0000020059,0.0000020066, +0.0000020082,0.0000020109,0.0000020127,0.0000020156,0.0000020188, +0.0000020179,0.0000020019,0.0000019809,0.0000019856,0.0000019970, +0.0000019903,0.0000019652,0.0000019419,0.0000019577,0.0000019947, +0.0000019983,0.0000019795,0.0000019705,0.0000019731,0.0000019818, +0.0000019926,0.0000020000,0.0000020077,0.0000020172,0.0000020234, +0.0000020239,0.0000020206,0.0000020158,0.0000020114,0.0000020084, +0.0000020084,0.0000020142,0.0000020234,0.0000020291,0.0000020300, +0.0000020273,0.0000020224,0.0000020193,0.0000020202,0.0000020222, +0.0000020157,0.0000019607,0.0000018893,0.0000018427,0.0000018312, +0.0000018512,0.0000018506,0.0000018473,0.0000018778,0.0000018846, +0.0000018610,0.0000018455,0.0000018449,0.0000018538,0.0000018631, +0.0000018476,0.0000018110,0.0000017977,0.0000018140,0.0000018321, +0.0000018390,0.0000018330,0.0000018391,0.0000018369,0.0000018311, +0.0000018193,0.0000018328,0.0000018992,0.0000019015,0.0000018734, +0.0000018538,0.0000018473,0.0000018477,0.0000018513,0.0000018551, +0.0000018573,0.0000018581,0.0000018587,0.0000018601,0.0000018624, +0.0000018656,0.0000018701,0.0000018730,0.0000018725,0.0000018691, +0.0000018656,0.0000018663,0.0000018723,0.0000018764,0.0000018720, +0.0000018672,0.0000018744,0.0000018828,0.0000018791,0.0000018758, +0.0000018791,0.0000018822,0.0000018842,0.0000018843,0.0000018811, +0.0000018752,0.0000018654,0.0000018599,0.0000018679,0.0000018718, +0.0000018616,0.0000018455,0.0000018364,0.0000018399,0.0000018531, +0.0000018684,0.0000018877,0.0000019065,0.0000019051,0.0000018728, +0.0000018044,0.0000017325,0.0000016910,0.0000016838,0.0000016807, +0.0000016757,0.0000016657,0.0000016587,0.0000016587,0.0000016630, +0.0000016663,0.0000016686,0.0000016647,0.0000016549,0.0000016410, +0.0000016272,0.0000016190,0.0000016154,0.0000016163,0.0000016177, +0.0000016181,0.0000016188,0.0000016186,0.0000016172,0.0000016147, +0.0000016150,0.0000016211,0.0000016313,0.0000016378,0.0000016379, +0.0000016351,0.0000016326,0.0000016304,0.0000016286,0.0000016284, +0.0000016294,0.0000016301,0.0000016292,0.0000016263,0.0000016220, +0.0000016191,0.0000016187,0.0000016177,0.0000016144,0.0000016110, +0.0000016112,0.0000016220,0.0000016369,0.0000016417,0.0000016358, +0.0000016229,0.0000016172,0.0000016289,0.0000016458,0.0000016469, +0.0000016429,0.0000016447,0.0000016500,0.0000016711,0.0000017287, +0.0000017961,0.0000018316,0.0000018426,0.0000018449,0.0000018243, +0.0000017712,0.0000017294,0.0000017225,0.0000017260,0.0000017281, +0.0000017301,0.0000017358,0.0000017438,0.0000017498,0.0000017524, +0.0000017462,0.0000017247,0.0000017028,0.0000017098,0.0000017621, +0.0000018227,0.0000018407,0.0000018236,0.0000018020,0.0000017954, +0.0000018005,0.0000018042,0.0000018076,0.0000018167,0.0000018314, +0.0000018449,0.0000018517,0.0000018517,0.0000018462,0.0000018356, +0.0000018239,0.0000018165,0.0000018143,0.0000018141,0.0000018126, +0.0000018154,0.0000018394,0.0000018723,0.0000018678,0.0000018141, +0.0000017743,0.0000017681,0.0000017698,0.0000017695,0.0000017661, +0.0000017618,0.0000017596,0.0000017606,0.0000017622,0.0000017629, +0.0000017626,0.0000017603,0.0000017573,0.0000017563,0.0000017580, +0.0000017626,0.0000017703,0.0000017769,0.0000017794,0.0000017791, +0.0000017771,0.0000017743,0.0000017716,0.0000017690,0.0000017686, +0.0000017698,0.0000017724,0.0000017752,0.0000017756,0.0000017755, +0.0000017694,0.0000017601,0.0000017477,0.0000017351,0.0000017370, +0.0000017500,0.0000017975,0.0000018601,0.0000019086,0.0000019321, +0.0000019437,0.0000019552,0.0000019659,0.0000019750,0.0000019827, +0.0000019893,0.0000019948,0.0000019992,0.0000020028,0.0000020051, +0.0000020044,0.0000020008,0.0000019951,0.0000019886,0.0000019815, +0.0000019753,0.0000019714,0.0000019696,0.0000019692,0.0000019681, +0.0000019658,0.0000019627,0.0000019594,0.0000019558,0.0000019521, +0.0000019484,0.0000019449,0.0000019410,0.0000019370,0.0000019338, +0.0000019311,0.0000019298,0.0000019302,0.0000019311,0.0000019319, +0.0000019326,0.0000019345,0.0000019373,0.0000019377,0.0000019328, +0.0000019267,0.0000019235,0.0000019213,0.0000019253,0.0000019338, +0.0000019388,0.0000019384,0.0000019369,0.0000019363,0.0000019375, +0.0000019364,0.0000019314,0.0000019271,0.0000019254,0.0000019236, +0.0000019210,0.0000019189,0.0000019174,0.0000019142,0.0000019075, +0.0000018992,0.0000018897,0.0000018810,0.0000018735,0.0000018681, +0.0000018681,0.0000018747,0.0000018833,0.0000018912,0.0000018973, +0.0000019020,0.0000019052,0.0000019055,0.0000019039,0.0000019025, +0.0000019023,0.0000019022,0.0000019019,0.0000019006,0.0000018991, +0.0000018972,0.0000018947,0.0000018923,0.0000018902,0.0000018882, +0.0000018861,0.0000018838,0.0000018810,0.0000018775,0.0000018737, +0.0000018697,0.0000018654,0.0000018605,0.0000018567,0.0000018549, +0.0000018545,0.0000018552,0.0000018569,0.0000018596,0.0000018625, +0.0000018644,0.0000018653,0.0000018662,0.0000018672,0.0000018681, +0.0000018685,0.0000018693,0.0000018716,0.0000018745,0.0000018778, +0.0000018810,0.0000018836,0.0000018857,0.0000018875,0.0000018893, +0.0000018924,0.0000018967,0.0000019009,0.0000019039,0.0000019061, +0.0000019076,0.0000019087,0.0000019084,0.0000019053,0.0000019006, +0.0000018961,0.0000018931,0.0000018915,0.0000018899,0.0000018881, +0.0000018865,0.0000018847,0.0000018826,0.0000018805,0.0000018771, +0.0000018730,0.0000018711,0.0000018725,0.0000018739,0.0000018706, +0.0000018625,0.0000018560,0.0000018528,0.0000018489,0.0000018440, +0.0000018418,0.0000018449,0.0000018515,0.0000018564,0.0000018575, +0.0000018574,0.0000018565,0.0000018546,0.0000018495,0.0000018454, +0.0000018453,0.0000018432,0.0000018404,0.0000018389,0.0000018365, +0.0000018347,0.0000018360,0.0000018409,0.0000018398,0.0000018354, +0.0000018302,0.0000018265,0.0000018283,0.0000018349,0.0000018398, +0.0000018394,0.0000018358,0.0000018271,0.0000018153,0.0000018023, +0.0000017903,0.0000017815,0.0000017783,0.0000017783,0.0000017789, +0.0000017780,0.0000017732,0.0000017655,0.0000017580,0.0000017549, +0.0000017551,0.0000017523,0.0000017424,0.0000017307,0.0000017250, +0.0000017261,0.0000017269,0.0000017184,0.0000017049,0.0000016986, +0.0000016970,0.0000016954,0.0000016953,0.0000016955,0.0000016939, +0.0000016899,0.0000016855,0.0000016797,0.0000016733,0.0000016702, +0.0000016702,0.0000016705,0.0000016723,0.0000016753,0.0000016769, +0.0000016758,0.0000016755,0.0000016794,0.0000016814,0.0000016794, +0.0000016785,0.0000016805,0.0000016817,0.0000016800,0.0000016783, +0.0000016797,0.0000016837,0.0000016863,0.0000016856,0.0000016845, +0.0000016838,0.0000016822,0.0000016815,0.0000016756,0.0000016607, +0.0000016577,0.0000016720,0.0000016783,0.0000016723,0.0000016696, +0.0000016697,0.0000016651,0.0000016547,0.0000016435,0.0000016340, +0.0000016284,0.0000016268,0.0000016274,0.0000016311,0.0000016325, +0.0000016260,0.0000016169,0.0000016125,0.0000016109,0.0000016095, +0.0000016092,0.0000016049,0.0000016021,0.0000016075,0.0000016110, +0.0000016136,0.0000016216,0.0000016352,0.0000016485,0.0000016517, +0.0000016488,0.0000016463,0.0000016468,0.0000016482,0.0000016493, +0.0000016491,0.0000016481,0.0000016486,0.0000016524,0.0000016562, +0.0000016566,0.0000016527,0.0000016491,0.0000016484,0.0000016495, +0.0000016505,0.0000016502,0.0000016500,0.0000016507,0.0000016526, +0.0000016547,0.0000016578,0.0000016644,0.0000016755,0.0000016864, +0.0000016897,0.0000016867,0.0000016883,0.0000017154,0.0000017555, +0.0000017778,0.0000017785,0.0000017686,0.0000017580,0.0000017518, +0.0000017521,0.0000017585,0.0000017675,0.0000017749,0.0000017808, +0.0000017851,0.0000017890,0.0000017924,0.0000017943,0.0000017938, +0.0000017918,0.0000017942,0.0000017992,0.0000018064,0.0000018111, +0.0000018103,0.0000018061,0.0000018056,0.0000018094,0.0000018108, +0.0000018086,0.0000018069,0.0000018092,0.0000018119,0.0000018098, +0.0000018029,0.0000017932,0.0000017812,0.0000017731,0.0000017729, +0.0000017724,0.0000017700,0.0000017700,0.0000017682,0.0000017674, +0.0000017602,0.0000017544,0.0000017643,0.0000017666,0.0000017702, +0.0000017756,0.0000017735,0.0000017732,0.0000017669,0.0000017628, +0.0000017650,0.0000017702,0.0000017827,0.0000018008,0.0000018208, +0.0000018333,0.0000018443,0.0000018519,0.0000018587,0.0000018670, +0.0000018699,0.0000018712,0.0000018739,0.0000018761,0.0000018772, +0.0000018785,0.0000018803,0.0000018819,0.0000018834,0.0000018856, +0.0000018882,0.0000018907,0.0000018920,0.0000018929,0.0000018939, +0.0000018937,0.0000018908,0.0000018837,0.0000018716,0.0000018548, +0.0000018349,0.0000018148,0.0000017959,0.0000017794,0.0000017651, +0.0000017540,0.0000017479,0.0000017471,0.0000017507,0.0000017580, +0.0000017677,0.0000017794,0.0000017920,0.0000018025,0.0000018080, +0.0000018059,0.0000018005,0.0000017985,0.0000017968,0.0000017973, +0.0000017973,0.0000017926,0.0000017903,0.0000017891,0.0000017758, +0.0000017457,0.0000017111,0.0000017050,0.0000017184,0.0000017321, +0.0000017379,0.0000017319,0.0000017199,0.0000017138,0.0000017127, +0.0000017131,0.0000017158,0.0000017196,0.0000017215,0.0000017223, +0.0000017243,0.0000017299,0.0000017417,0.0000017495,0.0000017447, +0.0000017354,0.0000017281,0.0000017062,0.0000016766,0.0000016602, +0.0000016539,0.0000016619,0.0000017025,0.0000017542,0.0000017844, +0.0000017955,0.0000018006,0.0000018042,0.0000018073,0.0000018095, +0.0000018100,0.0000018094,0.0000018083,0.0000018071,0.0000018057, +0.0000018039,0.0000018020,0.0000018000,0.0000017972,0.0000017916, +0.0000017807,0.0000017645,0.0000017486,0.0000017405,0.0000017385, +0.0000017429,0.0000017498,0.0000017544,0.0000017489,0.0000017310, +0.0000017024,0.0000016867,0.0000017077,0.0000017514,0.0000017798, +0.0000017801,0.0000017739,0.0000017836,0.0000017885,0.0000017794, +0.0000017702,0.0000017633,0.0000017608,0.0000017596,0.0000017555, +0.0000017571,0.0000017767,0.0000017948,0.0000017795,0.0000017497, +0.0000017482,0.0000017716,0.0000017802,0.0000017880,0.0000017940, +0.0000018323,0.0000019140,0.0000019447,0.0000019339,0.0000019491, +0.0000019895,0.0000020042,0.0000020066,0.0000019771,0.0000019491, +0.0000019685,0.0000019619,0.0000019398,0.0000019532,0.0000019451, +0.0000019408,0.0000019425,0.0000019489,0.0000019569,0.0000019624, +0.0000019651,0.0000019626,0.0000019515,0.0000019442,0.0000019447, +0.0000019382,0.0000019211,0.0000019217,0.0000019295,0.0000019294, +0.0000019493,0.0000019873,0.0000019953,0.0000019834,0.0000019774, +0.0000019825,0.0000019902,0.0000019957,0.0000019993,0.0000020028, +0.0000020081,0.0000020147,0.0000020209,0.0000020233,0.0000020218, +0.0000020095,0.0000019873,0.0000019824,0.0000019947,0.0000019954, +0.0000019741,0.0000019477,0.0000019503,0.0000019871,0.0000020030, +0.0000019875,0.0000019738,0.0000019718,0.0000019769,0.0000019872, +0.0000019967,0.0000020037,0.0000020129,0.0000020225,0.0000020270, +0.0000020259,0.0000020219,0.0000020170,0.0000020123,0.0000020104, +0.0000020132,0.0000020203,0.0000020263,0.0000020281,0.0000020265, +0.0000020220,0.0000020190,0.0000020200,0.0000020214,0.0000020182, +0.0000019683,0.0000018965,0.0000018483,0.0000018249,0.0000018459, +0.0000018558,0.0000018419,0.0000018619,0.0000018851,0.0000018712, +0.0000018498,0.0000018438,0.0000018482,0.0000018604,0.0000018564, +0.0000018236,0.0000017987,0.0000018056,0.0000018271,0.0000018401, +0.0000018350,0.0000018340,0.0000018316,0.0000018282,0.0000018179, +0.0000018345,0.0000018991,0.0000018888,0.0000018510,0.0000018291, +0.0000018183,0.0000018172,0.0000018207,0.0000018285,0.0000018384, +0.0000018464,0.0000018515,0.0000018543,0.0000018566,0.0000018592, +0.0000018619,0.0000018639,0.0000018624,0.0000018577,0.0000018523, +0.0000018501,0.0000018543,0.0000018658,0.0000018735,0.0000018688, +0.0000018637,0.0000018716,0.0000018796,0.0000018780,0.0000018768, +0.0000018789,0.0000018801,0.0000018791,0.0000018744,0.0000018665, +0.0000018621,0.0000018670,0.0000018687,0.0000018569,0.0000018403, +0.0000018348,0.0000018428,0.0000018564,0.0000018734,0.0000018958, +0.0000019120,0.0000019078,0.0000018638,0.0000017919,0.0000017237, +0.0000016908,0.0000016877,0.0000016849,0.0000016786,0.0000016674, +0.0000016602,0.0000016606,0.0000016645,0.0000016668,0.0000016663, +0.0000016617,0.0000016534,0.0000016429,0.0000016332,0.0000016261, +0.0000016224,0.0000016208,0.0000016193,0.0000016189,0.0000016184, +0.0000016185,0.0000016199,0.0000016234,0.0000016238,0.0000016217, +0.0000016225,0.0000016305,0.0000016388,0.0000016404,0.0000016376, +0.0000016339,0.0000016306,0.0000016298,0.0000016330,0.0000016374, +0.0000016393,0.0000016383,0.0000016333,0.0000016258,0.0000016188, +0.0000016157,0.0000016145,0.0000016135,0.0000016127,0.0000016181, +0.0000016299,0.0000016400,0.0000016397,0.0000016312,0.0000016229, +0.0000016245,0.0000016379,0.0000016443,0.0000016407,0.0000016391, +0.0000016417,0.0000016541,0.0000016974,0.0000017650,0.0000018142, +0.0000018312,0.0000018381,0.0000018339,0.0000017936,0.0000017372, +0.0000017115,0.0000017113,0.0000017130,0.0000017144,0.0000017180, +0.0000017236,0.0000017296,0.0000017349,0.0000017400,0.0000017411, +0.0000017295,0.0000017073,0.0000016998,0.0000017322,0.0000017956, +0.0000018348,0.0000018344,0.0000018137,0.0000017960,0.0000017947, +0.0000017990,0.0000018022,0.0000018026,0.0000018036,0.0000018057, +0.0000018065,0.0000018051,0.0000018021,0.0000018001,0.0000018014, +0.0000018073,0.0000018133,0.0000018140,0.0000018145,0.0000018147, +0.0000018246,0.0000018542,0.0000018718,0.0000018487,0.0000018037, +0.0000017807,0.0000017754,0.0000017749,0.0000017732,0.0000017701, +0.0000017676,0.0000017676,0.0000017692,0.0000017707,0.0000017711, +0.0000017693,0.0000017659,0.0000017646,0.0000017667,0.0000017758, +0.0000017895,0.0000018014,0.0000018055,0.0000018041,0.0000017969, +0.0000017881,0.0000017805,0.0000017744,0.0000017700,0.0000017673, +0.0000017672,0.0000017701,0.0000017732,0.0000017752,0.0000017757, +0.0000017757,0.0000017750,0.0000017631,0.0000017466,0.0000017294, +0.0000017385,0.0000017938,0.0000018645,0.0000019109,0.0000019283, +0.0000019411,0.0000019547,0.0000019669,0.0000019769,0.0000019851, +0.0000019929,0.0000019998,0.0000020042,0.0000020053,0.0000020023, +0.0000019953,0.0000019863,0.0000019783,0.0000019730,0.0000019704, +0.0000019697,0.0000019697,0.0000019696,0.0000019678,0.0000019645, +0.0000019611,0.0000019587,0.0000019573,0.0000019563,0.0000019544, +0.0000019517,0.0000019488,0.0000019466,0.0000019454,0.0000019451, +0.0000019454,0.0000019454,0.0000019442,0.0000019435,0.0000019447, +0.0000019473,0.0000019491,0.0000019471,0.0000019399,0.0000019330, +0.0000019302,0.0000019291,0.0000019310,0.0000019379,0.0000019436, +0.0000019453,0.0000019436,0.0000019410,0.0000019408,0.0000019410, +0.0000019367,0.0000019305,0.0000019267,0.0000019236,0.0000019200, +0.0000019180,0.0000019178,0.0000019180,0.0000019167,0.0000019124, +0.0000019055,0.0000018968,0.0000018872,0.0000018795,0.0000018770, +0.0000018794,0.0000018856,0.0000018927,0.0000018998,0.0000019062, +0.0000019109,0.0000019126,0.0000019126,0.0000019124,0.0000019122, +0.0000019121,0.0000019119,0.0000019121,0.0000019117,0.0000019097, +0.0000019064,0.0000019029,0.0000018992,0.0000018956,0.0000018925, +0.0000018898,0.0000018872,0.0000018842,0.0000018808,0.0000018761, +0.0000018706,0.0000018657,0.0000018626,0.0000018608,0.0000018602, +0.0000018603,0.0000018611,0.0000018626,0.0000018640,0.0000018649, +0.0000018658,0.0000018669,0.0000018677,0.0000018681,0.0000018684, +0.0000018693,0.0000018711,0.0000018735,0.0000018762,0.0000018784, +0.0000018793,0.0000018792,0.0000018791,0.0000018801,0.0000018824, +0.0000018844,0.0000018851,0.0000018853,0.0000018856,0.0000018857, +0.0000018850,0.0000018831,0.0000018807,0.0000018788,0.0000018777, +0.0000018772,0.0000018763,0.0000018752,0.0000018747,0.0000018743, +0.0000018738,0.0000018734,0.0000018713,0.0000018682,0.0000018663, +0.0000018666,0.0000018663,0.0000018619,0.0000018544,0.0000018510, +0.0000018500,0.0000018486,0.0000018453,0.0000018443,0.0000018477, +0.0000018548,0.0000018605,0.0000018614,0.0000018589,0.0000018578, +0.0000018559,0.0000018522,0.0000018475,0.0000018479,0.0000018454, +0.0000018429,0.0000018407,0.0000018375,0.0000018354,0.0000018368, +0.0000018417,0.0000018406,0.0000018352,0.0000018316,0.0000018308, +0.0000018353,0.0000018428,0.0000018466,0.0000018462,0.0000018402, +0.0000018282,0.0000018134,0.0000017982,0.0000017867,0.0000017827, +0.0000017830,0.0000017839,0.0000017834,0.0000017804,0.0000017759, +0.0000017710,0.0000017644,0.0000017588,0.0000017566,0.0000017534, +0.0000017449,0.0000017339,0.0000017275,0.0000017286,0.0000017304, +0.0000017239,0.0000017097,0.0000016997,0.0000016971,0.0000016969, +0.0000016976,0.0000016968,0.0000016931,0.0000016880,0.0000016830, +0.0000016767,0.0000016714,0.0000016704,0.0000016708,0.0000016715, +0.0000016739,0.0000016767,0.0000016766,0.0000016752,0.0000016777, +0.0000016811,0.0000016804,0.0000016796,0.0000016821,0.0000016853, +0.0000016848,0.0000016818,0.0000016800,0.0000016809,0.0000016841, +0.0000016853,0.0000016836,0.0000016815,0.0000016802,0.0000016803, +0.0000016796,0.0000016685,0.0000016558,0.0000016603,0.0000016751, +0.0000016770,0.0000016705,0.0000016670,0.0000016643,0.0000016577, +0.0000016489,0.0000016393,0.0000016314,0.0000016276,0.0000016269, +0.0000016288,0.0000016320,0.0000016295,0.0000016198,0.0000016130, +0.0000016116,0.0000016103,0.0000016096,0.0000016076,0.0000016028, +0.0000016056,0.0000016108,0.0000016132,0.0000016204,0.0000016336, +0.0000016473,0.0000016511,0.0000016484,0.0000016474,0.0000016492, +0.0000016502,0.0000016494,0.0000016477,0.0000016446,0.0000016428, +0.0000016447,0.0000016505,0.0000016564,0.0000016585,0.0000016546, +0.0000016486,0.0000016461,0.0000016460,0.0000016467,0.0000016479, +0.0000016501,0.0000016530,0.0000016553,0.0000016567,0.0000016597, +0.0000016673,0.0000016794,0.0000016887,0.0000016886,0.0000016813, +0.0000016862,0.0000017188,0.0000017601,0.0000017803,0.0000017799, +0.0000017700,0.0000017596,0.0000017527,0.0000017522,0.0000017583, +0.0000017688,0.0000017792,0.0000017860,0.0000017904,0.0000017930, +0.0000017944,0.0000017941,0.0000017927,0.0000017982,0.0000018017, +0.0000018065,0.0000018087,0.0000018065,0.0000018031,0.0000018046, +0.0000018090,0.0000018092,0.0000018048,0.0000018025,0.0000018052, +0.0000018086,0.0000018075,0.0000018017,0.0000017916,0.0000017782, +0.0000017685,0.0000017687,0.0000017708,0.0000017708,0.0000017701, +0.0000017667,0.0000017663,0.0000017608,0.0000017518,0.0000017605, +0.0000017661,0.0000017688,0.0000017738,0.0000017717,0.0000017709, +0.0000017656,0.0000017632,0.0000017664,0.0000017705,0.0000017829, +0.0000018018,0.0000018218,0.0000018342,0.0000018453,0.0000018523, +0.0000018572,0.0000018653,0.0000018691,0.0000018699,0.0000018721, +0.0000018744,0.0000018757,0.0000018776,0.0000018808,0.0000018841, +0.0000018871,0.0000018890,0.0000018900,0.0000018902,0.0000018895, +0.0000018869,0.0000018806,0.0000018687,0.0000018509,0.0000018301, +0.0000018091,0.0000017897,0.0000017729,0.0000017592,0.0000017481, +0.0000017390,0.0000017310,0.0000017245,0.0000017221,0.0000017234, +0.0000017275,0.0000017335,0.0000017420,0.0000017538,0.0000017678, +0.0000017812,0.0000017904,0.0000017923,0.0000017906,0.0000017923, +0.0000017947,0.0000017985,0.0000017985,0.0000017929,0.0000017919, +0.0000017901,0.0000017717,0.0000017338,0.0000017066,0.0000017129, +0.0000017330,0.0000017443,0.0000017414,0.0000017297,0.0000017213, +0.0000017189,0.0000017180,0.0000017188,0.0000017217,0.0000017232, +0.0000017235,0.0000017257,0.0000017327,0.0000017450,0.0000017516, +0.0000017458,0.0000017360,0.0000017256,0.0000017019,0.0000016743, +0.0000016601,0.0000016544,0.0000016514,0.0000016582,0.0000016964, +0.0000017488,0.0000017815,0.0000017938,0.0000017988,0.0000018014, +0.0000018029,0.0000018037,0.0000018037,0.0000018033,0.0000018026, +0.0000018015,0.0000017999,0.0000017979,0.0000017952,0.0000017904, +0.0000017817,0.0000017690,0.0000017558,0.0000017464,0.0000017436, +0.0000017471,0.0000017541,0.0000017593,0.0000017552,0.0000017391, +0.0000017116,0.0000016893,0.0000016901,0.0000017304,0.0000017732, +0.0000017849,0.0000017790,0.0000017822,0.0000017919,0.0000017855, +0.0000017749,0.0000017668,0.0000017608,0.0000017584,0.0000017534, +0.0000017523,0.0000017634,0.0000017850,0.0000017916,0.0000017645, +0.0000017408,0.0000017580,0.0000017756,0.0000017833,0.0000017893, +0.0000018014,0.0000018622,0.0000019370,0.0000019416,0.0000019373, +0.0000019640,0.0000019965,0.0000020062,0.0000019999,0.0000019663, +0.0000019550,0.0000019732,0.0000019486,0.0000019443,0.0000019510, +0.0000019406,0.0000019404,0.0000019431,0.0000019515,0.0000019592, +0.0000019634,0.0000019645,0.0000019598,0.0000019505,0.0000019447, +0.0000019446,0.0000019397,0.0000019263,0.0000019259,0.0000019318, +0.0000019289,0.0000019437,0.0000019814,0.0000019968,0.0000019895, +0.0000019792,0.0000019769,0.0000019782,0.0000019806,0.0000019848, +0.0000019915,0.0000020030,0.0000020169,0.0000020256,0.0000020263, +0.0000020169,0.0000019941,0.0000019813,0.0000019900,0.0000019969, +0.0000019846,0.0000019564,0.0000019438,0.0000019725,0.0000020018, +0.0000019969,0.0000019805,0.0000019736,0.0000019751,0.0000019829, +0.0000019934,0.0000020012,0.0000020087,0.0000020184,0.0000020262, +0.0000020287,0.0000020278,0.0000020240,0.0000020187,0.0000020151, +0.0000020158,0.0000020195,0.0000020230,0.0000020252,0.0000020244, +0.0000020200,0.0000020174,0.0000020191,0.0000020212,0.0000020198, +0.0000019766,0.0000019034,0.0000018551,0.0000018241,0.0000018349, +0.0000018607,0.0000018476,0.0000018472,0.0000018750,0.0000018785, +0.0000018580,0.0000018447,0.0000018445,0.0000018547,0.0000018603, +0.0000018372,0.0000018030,0.0000018000,0.0000018195,0.0000018377, +0.0000018377,0.0000018314,0.0000018270,0.0000018248,0.0000018168, +0.0000018354,0.0000018998,0.0000018732,0.0000018328,0.0000018177, +0.0000018095,0.0000018056,0.0000018034,0.0000018027,0.0000018087, +0.0000018200,0.0000018317,0.0000018418,0.0000018492,0.0000018546, +0.0000018584,0.0000018595,0.0000018571,0.0000018503,0.0000018424, +0.0000018364,0.0000018363,0.0000018442,0.0000018595,0.0000018701, +0.0000018659,0.0000018609,0.0000018665,0.0000018749,0.0000018768, +0.0000018762,0.0000018752,0.0000018711,0.0000018648,0.0000018626, +0.0000018665,0.0000018659,0.0000018523,0.0000018358,0.0000018333, +0.0000018432,0.0000018566,0.0000018776,0.0000019048,0.0000019131, +0.0000019005,0.0000018513,0.0000017785,0.0000017174,0.0000016920, +0.0000016904,0.0000016881,0.0000016805,0.0000016679,0.0000016598, +0.0000016605,0.0000016632,0.0000016645,0.0000016623,0.0000016583, +0.0000016518,0.0000016435,0.0000016350,0.0000016273,0.0000016218, +0.0000016187,0.0000016161,0.0000016151,0.0000016145,0.0000016148, +0.0000016152,0.0000016161,0.0000016199,0.0000016255,0.0000016302, +0.0000016298,0.0000016327,0.0000016400,0.0000016434,0.0000016414, +0.0000016368,0.0000016346,0.0000016372,0.0000016431,0.0000016472, +0.0000016475,0.0000016459,0.0000016428,0.0000016372,0.0000016296, +0.0000016228,0.0000016193,0.0000016190,0.0000016223,0.0000016299, +0.0000016381,0.0000016405,0.0000016351,0.0000016279,0.0000016270, +0.0000016342,0.0000016403,0.0000016386,0.0000016355,0.0000016365, +0.0000016438,0.0000016742,0.0000017338,0.0000017915,0.0000018175, +0.0000018265,0.0000018324,0.0000018225,0.0000017737,0.0000017204, +0.0000017032,0.0000017032,0.0000017025,0.0000017039,0.0000017085, +0.0000017122,0.0000017139,0.0000017158,0.0000017205,0.0000017282, +0.0000017281,0.0000017121,0.0000016978,0.0000017089,0.0000017634, +0.0000018197,0.0000018382,0.0000018267,0.0000018039,0.0000017931, +0.0000017928,0.0000017961,0.0000017978,0.0000017972,0.0000017956, +0.0000017940,0.0000017926,0.0000017925,0.0000017945,0.0000017987, +0.0000018050,0.0000018094,0.0000018103,0.0000018126,0.0000018162, +0.0000018190,0.0000018344,0.0000018596,0.0000018608,0.0000018405, +0.0000018152,0.0000018014,0.0000017970,0.0000017947,0.0000017937, +0.0000017931,0.0000017939,0.0000017961,0.0000017985,0.0000018007, +0.0000018021,0.0000018021,0.0000018023,0.0000018045,0.0000018122, +0.0000018240,0.0000018346,0.0000018376,0.0000018339,0.0000018202, +0.0000018027,0.0000017889,0.0000017806,0.0000017743,0.0000017686, +0.0000017650,0.0000017654,0.0000017681,0.0000017695,0.0000017694, +0.0000017707,0.0000017742,0.0000017789,0.0000017767,0.0000017502, +0.0000017250,0.0000017463,0.0000018156,0.0000018865,0.0000019151, +0.0000019278,0.0000019430,0.0000019577,0.0000019703,0.0000019804, +0.0000019904,0.0000020002,0.0000020061,0.0000020070,0.0000020017, +0.0000019923,0.0000019831,0.0000019765,0.0000019731,0.0000019719, +0.0000019717,0.0000019718,0.0000019708,0.0000019681,0.0000019652, +0.0000019637,0.0000019635,0.0000019637,0.0000019633,0.0000019618, +0.0000019602,0.0000019591,0.0000019588,0.0000019589,0.0000019593, +0.0000019594,0.0000019588,0.0000019589,0.0000019604,0.0000019618, +0.0000019616,0.0000019590,0.0000019522,0.0000019441,0.0000019397, +0.0000019394,0.0000019386,0.0000019389,0.0000019431,0.0000019491, +0.0000019521,0.0000019502,0.0000019460,0.0000019450,0.0000019458, +0.0000019421,0.0000019349,0.0000019291,0.0000019239,0.0000019188, +0.0000019163,0.0000019166,0.0000019196,0.0000019223,0.0000019226, +0.0000019199,0.0000019136,0.0000019051,0.0000018969,0.0000018914, +0.0000018895,0.0000018915,0.0000018965,0.0000019019,0.0000019083, +0.0000019145,0.0000019195,0.0000019214,0.0000019206,0.0000019197, +0.0000019201,0.0000019214,0.0000019224,0.0000019220,0.0000019211, +0.0000019199,0.0000019176,0.0000019136,0.0000019088,0.0000019041, +0.0000019002,0.0000018970,0.0000018938,0.0000018893,0.0000018836, +0.0000018780,0.0000018736,0.0000018701,0.0000018672,0.0000018645, +0.0000018623,0.0000018615,0.0000018617,0.0000018618,0.0000018624, +0.0000018631,0.0000018637,0.0000018640,0.0000018646,0.0000018662, +0.0000018690,0.0000018722,0.0000018755,0.0000018781,0.0000018798, +0.0000018807,0.0000018814,0.0000018828,0.0000018845,0.0000018856, +0.0000018855,0.0000018839,0.0000018813,0.0000018792,0.0000018774, +0.0000018757,0.0000018743,0.0000018732,0.0000018723,0.0000018711, +0.0000018694,0.0000018683,0.0000018689,0.0000018698,0.0000018707, +0.0000018706,0.0000018681,0.0000018648,0.0000018625,0.0000018621, +0.0000018615,0.0000018588,0.0000018548,0.0000018532,0.0000018539, +0.0000018534,0.0000018511,0.0000018501,0.0000018526,0.0000018588, +0.0000018642,0.0000018647,0.0000018611,0.0000018591,0.0000018578, +0.0000018547,0.0000018496,0.0000018502,0.0000018483,0.0000018455, +0.0000018423,0.0000018374,0.0000018349,0.0000018370,0.0000018423, +0.0000018418,0.0000018363,0.0000018352,0.0000018369,0.0000018428, +0.0000018494,0.0000018521,0.0000018503,0.0000018409,0.0000018252, +0.0000018093,0.0000017961,0.0000017897,0.0000017904,0.0000017920, +0.0000017911,0.0000017883,0.0000017849,0.0000017829,0.0000017796, +0.0000017718,0.0000017629,0.0000017575,0.0000017533,0.0000017459, +0.0000017357,0.0000017296,0.0000017305,0.0000017330,0.0000017292, +0.0000017149,0.0000017020,0.0000016987,0.0000017000,0.0000017009, +0.0000016989,0.0000016931,0.0000016867,0.0000016809,0.0000016747, +0.0000016718,0.0000016720,0.0000016719,0.0000016727,0.0000016754, +0.0000016768,0.0000016752,0.0000016759,0.0000016798,0.0000016811, +0.0000016809,0.0000016833,0.0000016874,0.0000016884,0.0000016864, +0.0000016838,0.0000016816,0.0000016812,0.0000016830,0.0000016832, +0.0000016805,0.0000016780,0.0000016779,0.0000016793,0.0000016756, +0.0000016606,0.0000016541,0.0000016643,0.0000016767,0.0000016755, +0.0000016689,0.0000016649,0.0000016599,0.0000016525,0.0000016438, +0.0000016349,0.0000016294,0.0000016273,0.0000016275,0.0000016307, +0.0000016316,0.0000016238,0.0000016142,0.0000016116,0.0000016118, +0.0000016112,0.0000016101,0.0000016051,0.0000016040,0.0000016099, +0.0000016129,0.0000016183,0.0000016308,0.0000016450,0.0000016509, +0.0000016498,0.0000016498,0.0000016516,0.0000016505,0.0000016477, +0.0000016451,0.0000016422,0.0000016403,0.0000016412,0.0000016451, +0.0000016511,0.0000016566,0.0000016586,0.0000016549,0.0000016483, +0.0000016445,0.0000016435,0.0000016444,0.0000016471,0.0000016519, +0.0000016560,0.0000016578,0.0000016585,0.0000016622,0.0000016723, +0.0000016843,0.0000016888,0.0000016827,0.0000016759,0.0000016883, +0.0000017256,0.0000017650,0.0000017820,0.0000017808,0.0000017716, +0.0000017614,0.0000017542,0.0000017533,0.0000017587,0.0000017697, +0.0000017808,0.0000017891,0.0000017938,0.0000017966,0.0000017975, +0.0000017968,0.0000017991,0.0000018009,0.0000018032,0.0000018042, +0.0000018028,0.0000018018,0.0000018046,0.0000018080,0.0000018062, +0.0000018009,0.0000017984,0.0000018016,0.0000018055,0.0000018049, +0.0000017995,0.0000017890,0.0000017762,0.0000017665,0.0000017664, +0.0000017695,0.0000017715,0.0000017706,0.0000017655,0.0000017651, +0.0000017615,0.0000017498,0.0000017559,0.0000017654,0.0000017678, +0.0000017720,0.0000017702,0.0000017684,0.0000017642,0.0000017637, +0.0000017677,0.0000017709,0.0000017829,0.0000018024,0.0000018227, +0.0000018351,0.0000018457,0.0000018528,0.0000018557,0.0000018623, +0.0000018676,0.0000018691,0.0000018709,0.0000018730,0.0000018744, +0.0000018753,0.0000018772,0.0000018791,0.0000018803,0.0000018803, +0.0000018795,0.0000018767,0.0000018693,0.0000018544,0.0000018328, +0.0000018092,0.0000017888,0.0000017727,0.0000017596,0.0000017487, +0.0000017397,0.0000017329,0.0000017280,0.0000017249,0.0000017222, +0.0000017195,0.0000017196,0.0000017220,0.0000017250,0.0000017286, +0.0000017327,0.0000017406,0.0000017520,0.0000017655,0.0000017771, +0.0000017820,0.0000017840,0.0000017898,0.0000017952,0.0000018005, +0.0000018001,0.0000017938,0.0000017938,0.0000017902,0.0000017646, +0.0000017218,0.0000017071,0.0000017255,0.0000017453,0.0000017484, +0.0000017395,0.0000017303,0.0000017264,0.0000017246,0.0000017241, +0.0000017251,0.0000017248,0.0000017244,0.0000017272,0.0000017358, +0.0000017484,0.0000017539,0.0000017473,0.0000017362,0.0000017207, +0.0000016942,0.0000016672,0.0000016502,0.0000016414,0.0000016397, +0.0000016415,0.0000016504,0.0000016862,0.0000017388,0.0000017757, +0.0000017904,0.0000017959,0.0000017987,0.0000017993,0.0000017990, +0.0000017983,0.0000017976,0.0000017966,0.0000017948,0.0000017915, +0.0000017864,0.0000017789,0.0000017696,0.0000017604,0.0000017535, +0.0000017503,0.0000017526,0.0000017583,0.0000017628,0.0000017597, +0.0000017427,0.0000017151,0.0000016888,0.0000016828,0.0000017080, +0.0000017561,0.0000017835,0.0000017840,0.0000017824,0.0000017914, +0.0000017915,0.0000017801,0.0000017709,0.0000017627,0.0000017579, +0.0000017531,0.0000017487,0.0000017539,0.0000017725,0.0000017885, +0.0000017819,0.0000017517,0.0000017424,0.0000017658,0.0000017778, +0.0000017856,0.0000017910,0.0000018145,0.0000018877,0.0000019411, +0.0000019394,0.0000019457,0.0000019769,0.0000020007,0.0000020078, +0.0000019918,0.0000019627,0.0000019643,0.0000019700,0.0000019439, +0.0000019477,0.0000019475,0.0000019402,0.0000019410,0.0000019461, +0.0000019557,0.0000019617,0.0000019632,0.0000019608,0.0000019548, +0.0000019482,0.0000019449,0.0000019448,0.0000019409,0.0000019320, +0.0000019317,0.0000019343,0.0000019286,0.0000019400,0.0000019769, +0.0000019989,0.0000019971,0.0000019880,0.0000019816,0.0000019803, +0.0000019809,0.0000019829,0.0000019884,0.0000020021,0.0000020200, +0.0000020278,0.0000020230,0.0000020027,0.0000019829,0.0000019848, +0.0000019968,0.0000019938,0.0000019705,0.0000019475,0.0000019589, +0.0000019954,0.0000020067,0.0000019918,0.0000019794,0.0000019774, +0.0000019817,0.0000019906,0.0000019999,0.0000020069,0.0000020142, +0.0000020225,0.0000020288,0.0000020310,0.0000020299,0.0000020257, +0.0000020212,0.0000020199,0.0000020211,0.0000020211,0.0000020216, +0.0000020210,0.0000020169,0.0000020148,0.0000020170,0.0000020205, +0.0000020206,0.0000019870,0.0000019131,0.0000018599,0.0000018265, +0.0000018243,0.0000018584,0.0000018593,0.0000018423,0.0000018598, +0.0000018776,0.0000018675,0.0000018496,0.0000018432,0.0000018486, +0.0000018591,0.0000018504,0.0000018143,0.0000017964,0.0000018103, +0.0000018326,0.0000018400,0.0000018312,0.0000018243,0.0000018209, +0.0000018165,0.0000018339,0.0000018999,0.0000018597,0.0000018264, +0.0000018276,0.0000018442,0.0000018487,0.0000018411,0.0000018251, +0.0000018108,0.0000018064,0.0000018112,0.0000018194,0.0000018311, +0.0000018423,0.0000018496,0.0000018520,0.0000018491,0.0000018416, +0.0000018317,0.0000018239,0.0000018215,0.0000018245,0.0000018352, +0.0000018525,0.0000018652,0.0000018650,0.0000018587,0.0000018594, +0.0000018636,0.0000018653,0.0000018635,0.0000018610,0.0000018615, +0.0000018638,0.0000018609,0.0000018457,0.0000018320,0.0000018325, +0.0000018429,0.0000018569,0.0000018836,0.0000019093,0.0000019144, +0.0000018867,0.0000018308,0.0000017616,0.0000017119,0.0000016943, +0.0000016918,0.0000016903,0.0000016826,0.0000016691,0.0000016596, +0.0000016599,0.0000016618,0.0000016601,0.0000016557,0.0000016504, +0.0000016442,0.0000016369,0.0000016294,0.0000016223,0.0000016169, +0.0000016129,0.0000016134,0.0000016154,0.0000016175,0.0000016200, +0.0000016217,0.0000016223,0.0000016220,0.0000016202,0.0000016207, +0.0000016275,0.0000016325,0.0000016353,0.0000016412,0.0000016464, +0.0000016461,0.0000016426,0.0000016419,0.0000016469,0.0000016521, +0.0000016534,0.0000016515,0.0000016493,0.0000016482,0.0000016470, +0.0000016438,0.0000016383,0.0000016337,0.0000016329,0.0000016361, +0.0000016406,0.0000016417,0.0000016381,0.0000016330,0.0000016309, +0.0000016340,0.0000016369,0.0000016360,0.0000016326,0.0000016324, +0.0000016368,0.0000016555,0.0000017010,0.0000017597,0.0000017994, +0.0000018148,0.0000018209,0.0000018285,0.0000018204,0.0000017743, +0.0000017200,0.0000016984,0.0000016967,0.0000016955,0.0000016963, +0.0000016996,0.0000017017,0.0000017019,0.0000017019,0.0000017038, +0.0000017110,0.0000017179,0.0000017134,0.0000016961,0.0000016936, +0.0000017304,0.0000017921,0.0000018328,0.0000018363,0.0000018188, +0.0000017989,0.0000017906,0.0000017891,0.0000017906,0.0000017915, +0.0000017907,0.0000017887,0.0000017872,0.0000017868,0.0000017873, +0.0000017894,0.0000017941,0.0000017977,0.0000017986,0.0000018029, +0.0000018113,0.0000018167,0.0000018223,0.0000018368,0.0000018514, +0.0000018520,0.0000018435,0.0000018340,0.0000018298,0.0000018273, +0.0000018270,0.0000018275,0.0000018292,0.0000018318,0.0000018346, +0.0000018372,0.0000018403,0.0000018435,0.0000018461,0.0000018487, +0.0000018514,0.0000018556,0.0000018595,0.0000018599,0.0000018546, +0.0000018394,0.0000018142,0.0000017929,0.0000017805,0.0000017742, +0.0000017678,0.0000017619,0.0000017607,0.0000017636,0.0000017666, +0.0000017666,0.0000017643,0.0000017644,0.0000017756,0.0000017876, +0.0000017773,0.0000017423,0.0000017243,0.0000017737,0.0000018614, +0.0000019053,0.0000019180,0.0000019337,0.0000019505,0.0000019653, +0.0000019767,0.0000019882,0.0000020007,0.0000020094,0.0000020121, +0.0000020073,0.0000019986,0.0000019895,0.0000019824,0.0000019777, +0.0000019751,0.0000019741,0.0000019735,0.0000019724,0.0000019711, +0.0000019704,0.0000019702,0.0000019698,0.0000019688,0.0000019678, +0.0000019674,0.0000019682,0.0000019697,0.0000019712,0.0000019724, +0.0000019733,0.0000019732,0.0000019724,0.0000019712,0.0000019692, +0.0000019665,0.0000019624,0.0000019567,0.0000019509,0.0000019477, +0.0000019481,0.0000019496,0.0000019482,0.0000019469,0.0000019493, +0.0000019545,0.0000019571,0.0000019555,0.0000019518,0.0000019505, +0.0000019508,0.0000019472,0.0000019402,0.0000019335,0.0000019263, +0.0000019193,0.0000019156,0.0000019159,0.0000019197,0.0000019245, +0.0000019280,0.0000019287,0.0000019264,0.0000019216,0.0000019153, +0.0000019086,0.0000019030,0.0000019006,0.0000019014,0.0000019053, +0.0000019112,0.0000019192,0.0000019267,0.0000019285,0.0000019265, +0.0000019259,0.0000019246,0.0000019220,0.0000019200,0.0000019209, +0.0000019236,0.0000019259,0.0000019264,0.0000019248,0.0000019215, +0.0000019171,0.0000019124,0.0000019075,0.0000019021,0.0000018963, +0.0000018908,0.0000018860,0.0000018817,0.0000018778,0.0000018736, +0.0000018694,0.0000018661,0.0000018637,0.0000018619,0.0000018606, +0.0000018600,0.0000018602,0.0000018611,0.0000018626,0.0000018644, +0.0000018666,0.0000018692,0.0000018725,0.0000018769,0.0000018806, +0.0000018835,0.0000018862,0.0000018886,0.0000018908,0.0000018924, +0.0000018923,0.0000018903,0.0000018870,0.0000018838,0.0000018812, +0.0000018791,0.0000018773,0.0000018757,0.0000018740,0.0000018718, +0.0000018698,0.0000018697,0.0000018709,0.0000018726,0.0000018748, +0.0000018752,0.0000018736,0.0000018712,0.0000018691,0.0000018686, +0.0000018684,0.0000018671,0.0000018649,0.0000018634,0.0000018627, +0.0000018610,0.0000018580,0.0000018562,0.0000018577,0.0000018627, +0.0000018672,0.0000018669,0.0000018638,0.0000018624,0.0000018599, +0.0000018564,0.0000018519,0.0000018527,0.0000018515,0.0000018484, +0.0000018437,0.0000018365,0.0000018337,0.0000018367,0.0000018429, +0.0000018441,0.0000018394,0.0000018399,0.0000018434,0.0000018486, +0.0000018539,0.0000018558,0.0000018518,0.0000018388,0.0000018224, +0.0000018090,0.0000018002,0.0000017984,0.0000018006,0.0000018011, +0.0000017989,0.0000017956,0.0000017934,0.0000017917,0.0000017873, +0.0000017791,0.0000017690,0.0000017596,0.0000017519,0.0000017439, +0.0000017356,0.0000017312,0.0000017320,0.0000017346,0.0000017335, +0.0000017224,0.0000017087,0.0000017031,0.0000017032,0.0000017041, +0.0000017011,0.0000016943,0.0000016866,0.0000016796,0.0000016742, +0.0000016732,0.0000016734,0.0000016729,0.0000016743,0.0000016764, +0.0000016755,0.0000016745,0.0000016777,0.0000016810,0.0000016821, +0.0000016842,0.0000016880,0.0000016900,0.0000016892,0.0000016874, +0.0000016852,0.0000016818,0.0000016800,0.0000016810,0.0000016799, +0.0000016766,0.0000016750,0.0000016766,0.0000016779,0.0000016688, +0.0000016546,0.0000016544,0.0000016679,0.0000016768,0.0000016741, +0.0000016677,0.0000016627,0.0000016567,0.0000016484,0.0000016388, +0.0000016314,0.0000016285,0.0000016275,0.0000016288,0.0000016315, +0.0000016278,0.0000016170,0.0000016115,0.0000016124,0.0000016131, +0.0000016120,0.0000016083,0.0000016043,0.0000016079,0.0000016130, +0.0000016164,0.0000016271,0.0000016422,0.0000016514,0.0000016516, +0.0000016520,0.0000016530,0.0000016495,0.0000016452,0.0000016428, +0.0000016406,0.0000016390,0.0000016397,0.0000016437,0.0000016486, +0.0000016525,0.0000016561,0.0000016576,0.0000016548,0.0000016486, +0.0000016443,0.0000016445,0.0000016466,0.0000016504,0.0000016541, +0.0000016564,0.0000016573,0.0000016598,0.0000016681,0.0000016798, +0.0000016863,0.0000016836,0.0000016759,0.0000016750,0.0000016949, +0.0000017339,0.0000017690,0.0000017826,0.0000017807,0.0000017723, +0.0000017626,0.0000017560,0.0000017560,0.0000017608,0.0000017695, +0.0000017797,0.0000017886,0.0000017946,0.0000017977,0.0000017980, +0.0000017961,0.0000017970,0.0000017987,0.0000018008,0.0000018014, +0.0000018026,0.0000018060,0.0000018072,0.0000018043,0.0000017984, +0.0000017961,0.0000017993,0.0000018027,0.0000018016,0.0000017955, +0.0000017854,0.0000017751,0.0000017666,0.0000017661,0.0000017690, +0.0000017721,0.0000017716,0.0000017647,0.0000017639,0.0000017621, +0.0000017490,0.0000017511,0.0000017638,0.0000017671,0.0000017705, +0.0000017690,0.0000017661,0.0000017629,0.0000017639,0.0000017688, +0.0000017713,0.0000017828,0.0000018024,0.0000018234,0.0000018356, +0.0000018453,0.0000018537,0.0000018555,0.0000018591,0.0000018636, +0.0000018654,0.0000018657,0.0000018657,0.0000018655,0.0000018652, +0.0000018649,0.0000018650,0.0000018654,0.0000018648,0.0000018591, +0.0000018424,0.0000018182,0.0000017945,0.0000017774,0.0000017665, +0.0000017573,0.0000017469,0.0000017370,0.0000017303,0.0000017277, +0.0000017264,0.0000017263,0.0000017263,0.0000017255,0.0000017258, +0.0000017271,0.0000017299,0.0000017319,0.0000017331,0.0000017348, +0.0000017388,0.0000017451,0.0000017564,0.0000017687,0.0000017752, +0.0000017812,0.0000017898,0.0000017969,0.0000018033,0.0000018013, +0.0000017951,0.0000017959,0.0000017888,0.0000017551,0.0000017142, +0.0000017135,0.0000017380,0.0000017505,0.0000017471,0.0000017388, +0.0000017345,0.0000017328,0.0000017321,0.0000017313,0.0000017282, +0.0000017257,0.0000017287,0.0000017394,0.0000017518,0.0000017558, +0.0000017490,0.0000017352,0.0000017124,0.0000016810,0.0000016535, +0.0000016367,0.0000016279,0.0000016266,0.0000016308,0.0000016354, +0.0000016431,0.0000016729,0.0000017231,0.0000017648,0.0000017840, +0.0000017903,0.0000017932,0.0000017942,0.0000017935,0.0000017917, +0.0000017892,0.0000017854,0.0000017799,0.0000017732,0.0000017664, +0.0000017612,0.0000017590,0.0000017582,0.0000017599,0.0000017621, +0.0000017611,0.0000017577,0.0000017393,0.0000017133,0.0000016890, +0.0000016770,0.0000016906,0.0000017350,0.0000017778,0.0000017881, +0.0000017851,0.0000017908,0.0000017945,0.0000017860,0.0000017758, +0.0000017665,0.0000017585,0.0000017533,0.0000017483,0.0000017485, +0.0000017601,0.0000017803,0.0000017878,0.0000017669,0.0000017442, +0.0000017489,0.0000017704,0.0000017796,0.0000017866,0.0000017933, +0.0000018304,0.0000019068,0.0000019427,0.0000019392,0.0000019563, +0.0000019869,0.0000020029,0.0000020059,0.0000019855,0.0000019645, +0.0000019694,0.0000019616,0.0000019410,0.0000019498,0.0000019455, +0.0000019412,0.0000019429,0.0000019504,0.0000019595,0.0000019624, +0.0000019605,0.0000019556,0.0000019507,0.0000019469,0.0000019453, +0.0000019452,0.0000019423,0.0000019375,0.0000019381,0.0000019369, +0.0000019286,0.0000019367,0.0000019715,0.0000019987,0.0000020010, +0.0000019970,0.0000019926,0.0000019902,0.0000019882,0.0000019872, +0.0000019908,0.0000020061,0.0000020241,0.0000020271,0.0000020106, +0.0000019885,0.0000019827,0.0000019921,0.0000019975,0.0000019850, +0.0000019587,0.0000019477,0.0000019758,0.0000020064,0.0000020060, +0.0000019923,0.0000019840,0.0000019836,0.0000019894,0.0000019982, +0.0000020067,0.0000020127,0.0000020185,0.0000020249,0.0000020303, +0.0000020319,0.0000020301,0.0000020262,0.0000020243,0.0000020239, +0.0000020220,0.0000020192,0.0000020173,0.0000020131,0.0000020112, +0.0000020136,0.0000020187,0.0000020202,0.0000019959,0.0000019239, +0.0000018646,0.0000018297,0.0000018204,0.0000018510,0.0000018671, +0.0000018465,0.0000018461,0.0000018707,0.0000018747,0.0000018581, +0.0000018443,0.0000018429,0.0000018553,0.0000018585,0.0000018303, +0.0000017989,0.0000018011,0.0000018239,0.0000018401,0.0000018335, +0.0000018239,0.0000018175,0.0000018140,0.0000018284,0.0000018965, +0.0000018504,0.0000018266,0.0000018645,0.0000018952,0.0000019023, +0.0000019011,0.0000018906,0.0000018677,0.0000018405,0.0000018202, +0.0000018123,0.0000018152,0.0000018241,0.0000018335,0.0000018376, +0.0000018354,0.0000018290,0.0000018223,0.0000018182,0.0000018168, +0.0000018167,0.0000018192,0.0000018275,0.0000018446,0.0000018611, +0.0000018649,0.0000018587,0.0000018550,0.0000018553,0.0000018567, +0.0000018594,0.0000018612,0.0000018558,0.0000018406,0.0000018288, +0.0000018296,0.0000018386,0.0000018547,0.0000018879,0.0000019113, +0.0000019082,0.0000018688,0.0000018060,0.0000017451,0.0000017098, +0.0000016975,0.0000016946,0.0000016917,0.0000016851,0.0000016712, +0.0000016603,0.0000016594,0.0000016612,0.0000016570,0.0000016489, +0.0000016408,0.0000016333,0.0000016264,0.0000016207,0.0000016155, +0.0000016133,0.0000016129,0.0000016142,0.0000016178,0.0000016214, +0.0000016237,0.0000016268,0.0000016280,0.0000016280,0.0000016273, +0.0000016255,0.0000016205,0.0000016194,0.0000016260,0.0000016335, +0.0000016413,0.0000016492,0.0000016516,0.0000016492,0.0000016491, +0.0000016540,0.0000016582,0.0000016578,0.0000016552,0.0000016533, +0.0000016527,0.0000016528,0.0000016528,0.0000016512,0.0000016482, +0.0000016463,0.0000016462,0.0000016459,0.0000016431,0.0000016391, +0.0000016369,0.0000016365,0.0000016358,0.0000016331,0.0000016300, +0.0000016297,0.0000016320,0.0000016423,0.0000016694,0.0000017133, +0.0000017623,0.0000017947,0.0000018088,0.0000018156,0.0000018243, +0.0000018239,0.0000017925,0.0000017359,0.0000017002,0.0000016944, +0.0000016937,0.0000016933,0.0000016934,0.0000016938,0.0000016965, +0.0000016997,0.0000016994,0.0000016998,0.0000017064,0.0000017095, +0.0000016980,0.0000016869,0.0000017015,0.0000017538,0.0000018103, +0.0000018359,0.0000018338,0.0000018156,0.0000017968,0.0000017874, +0.0000017847,0.0000017843,0.0000017833,0.0000017808,0.0000017787, +0.0000017779,0.0000017777,0.0000017797,0.0000017847,0.0000017885, +0.0000017892,0.0000017923,0.0000018006,0.0000018090,0.0000018135, +0.0000018176,0.0000018252,0.0000018322,0.0000018343,0.0000018332, +0.0000018324,0.0000018315,0.0000018315,0.0000018320,0.0000018328, +0.0000018335,0.0000018340,0.0000018349,0.0000018374,0.0000018412, +0.0000018453,0.0000018490,0.0000018516,0.0000018551,0.0000018581, +0.0000018585,0.0000018549,0.0000018411,0.0000018136,0.0000017903, +0.0000017765,0.0000017698,0.0000017635,0.0000017575,0.0000017556, +0.0000017582,0.0000017635,0.0000017661,0.0000017640,0.0000017608, +0.0000017656,0.0000017821,0.0000017890,0.0000017589,0.0000017228, +0.0000017453,0.0000018374,0.0000018969,0.0000019114,0.0000019272, +0.0000019457,0.0000019622,0.0000019750,0.0000019866,0.0000020004, +0.0000020122,0.0000020172,0.0000020165,0.0000020100,0.0000020003, +0.0000019902,0.0000019823,0.0000019776,0.0000019755,0.0000019752, +0.0000019754,0.0000019759,0.0000019759,0.0000019750,0.0000019735, +0.0000019722,0.0000019725,0.0000019741,0.0000019762,0.0000019782, +0.0000019798,0.0000019804,0.0000019794,0.0000019770,0.0000019736, +0.0000019704,0.0000019676,0.0000019651,0.0000019627,0.0000019594, +0.0000019560,0.0000019545,0.0000019558,0.0000019565,0.0000019552, +0.0000019542,0.0000019559,0.0000019591,0.0000019610,0.0000019602, +0.0000019578,0.0000019567,0.0000019559,0.0000019524,0.0000019465, +0.0000019396,0.0000019309,0.0000019227,0.0000019183,0.0000019184, +0.0000019225,0.0000019286,0.0000019331,0.0000019363,0.0000019372, +0.0000019356,0.0000019316,0.0000019248,0.0000019168,0.0000019103, +0.0000019080,0.0000019104,0.0000019166,0.0000019258,0.0000019330, +0.0000019338,0.0000019321,0.0000019261,0.0000019168,0.0000019125, +0.0000019166,0.0000019237,0.0000019280,0.0000019298,0.0000019305, +0.0000019303,0.0000019285,0.0000019255,0.0000019215,0.0000019164, +0.0000019109,0.0000019058,0.0000019014,0.0000018973,0.0000018929, +0.0000018883,0.0000018838,0.0000018799,0.0000018757,0.0000018708, +0.0000018666,0.0000018649,0.0000018650,0.0000018660,0.0000018671, +0.0000018682,0.0000018695,0.0000018716,0.0000018748,0.0000018791, +0.0000018830,0.0000018863,0.0000018895,0.0000018929,0.0000018966, +0.0000019000,0.0000019016,0.0000019011,0.0000018985,0.0000018956, +0.0000018933,0.0000018915,0.0000018897,0.0000018877,0.0000018853, +0.0000018832,0.0000018825,0.0000018837,0.0000018852,0.0000018869, +0.0000018888,0.0000018889,0.0000018871,0.0000018843,0.0000018824, +0.0000018820,0.0000018816,0.0000018799,0.0000018773,0.0000018743, +0.0000018714,0.0000018681,0.0000018647,0.0000018624,0.0000018628, +0.0000018664,0.0000018698,0.0000018702,0.0000018680,0.0000018661, +0.0000018620,0.0000018572,0.0000018544,0.0000018558,0.0000018550, +0.0000018513,0.0000018449,0.0000018349,0.0000018319,0.0000018352, +0.0000018425,0.0000018468,0.0000018435,0.0000018447,0.0000018485, +0.0000018519,0.0000018567,0.0000018578,0.0000018514,0.0000018377, +0.0000018237,0.0000018132,0.0000018079,0.0000018076,0.0000018090, +0.0000018099,0.0000018092,0.0000018072,0.0000018044,0.0000018000, +0.0000017941,0.0000017867,0.0000017765,0.0000017631,0.0000017505, +0.0000017411,0.0000017348,0.0000017315,0.0000017314,0.0000017341, +0.0000017358,0.0000017306,0.0000017183,0.0000017085,0.0000017060, +0.0000017059,0.0000017028,0.0000016954,0.0000016869,0.0000016794, +0.0000016753,0.0000016750,0.0000016743,0.0000016742,0.0000016759, +0.0000016759,0.0000016740,0.0000016753,0.0000016798,0.0000016829, +0.0000016852,0.0000016879,0.0000016905,0.0000016908,0.0000016894, +0.0000016878,0.0000016855,0.0000016806,0.0000016780,0.0000016780, +0.0000016754,0.0000016725,0.0000016725,0.0000016757,0.0000016744, +0.0000016612,0.0000016514,0.0000016569,0.0000016707,0.0000016763, +0.0000016733,0.0000016668,0.0000016606,0.0000016539,0.0000016442, +0.0000016341,0.0000016298,0.0000016285,0.0000016280,0.0000016303, +0.0000016300,0.0000016212,0.0000016119,0.0000016119,0.0000016143, +0.0000016142,0.0000016111,0.0000016058,0.0000016055,0.0000016122, +0.0000016161,0.0000016233,0.0000016378,0.0000016509,0.0000016536, +0.0000016535,0.0000016544,0.0000016503,0.0000016455,0.0000016437, +0.0000016411,0.0000016386,0.0000016384,0.0000016419,0.0000016475, +0.0000016518,0.0000016538,0.0000016553,0.0000016562,0.0000016544, +0.0000016500,0.0000016476,0.0000016494,0.0000016528,0.0000016549, +0.0000016554,0.0000016561,0.0000016590,0.0000016663,0.0000016765, +0.0000016827,0.0000016819,0.0000016763,0.0000016731,0.0000016792, +0.0000017044,0.0000017413,0.0000017706,0.0000017819,0.0000017802, +0.0000017725,0.0000017641,0.0000017594,0.0000017596,0.0000017624, +0.0000017690,0.0000017777,0.0000017857,0.0000017915,0.0000017943, +0.0000017913,0.0000017934,0.0000017960,0.0000017996,0.0000018022, +0.0000018046,0.0000018071,0.0000018068,0.0000018019,0.0000017959, +0.0000017946,0.0000017979,0.0000018001,0.0000017977,0.0000017901, +0.0000017812,0.0000017750,0.0000017690,0.0000017676,0.0000017695, +0.0000017725,0.0000017726,0.0000017646,0.0000017627,0.0000017616, +0.0000017479,0.0000017467,0.0000017615,0.0000017665,0.0000017688, +0.0000017678,0.0000017641,0.0000017615,0.0000017636,0.0000017696, +0.0000017720,0.0000017830,0.0000018020,0.0000018231,0.0000018356, +0.0000018443,0.0000018546,0.0000018569,0.0000018578,0.0000018589, +0.0000018582,0.0000018559,0.0000018532,0.0000018509,0.0000018506, +0.0000018525,0.0000018551,0.0000018521,0.0000018361,0.0000018096, +0.0000017858,0.0000017730,0.0000017680,0.0000017612,0.0000017487, +0.0000017356,0.0000017274,0.0000017271,0.0000017296,0.0000017333, +0.0000017352,0.0000017352,0.0000017343,0.0000017341,0.0000017350, +0.0000017367,0.0000017394,0.0000017411,0.0000017415,0.0000017411, +0.0000017415,0.0000017452,0.0000017536,0.0000017649,0.0000017725, +0.0000017815,0.0000017909,0.0000017992,0.0000018067,0.0000018016, +0.0000017964,0.0000017977,0.0000017856,0.0000017452,0.0000017132, +0.0000017247,0.0000017468,0.0000017501,0.0000017452,0.0000017418, +0.0000017415,0.0000017418,0.0000017404,0.0000017346,0.0000017287, +0.0000017310,0.0000017430,0.0000017552,0.0000017581,0.0000017503, +0.0000017319,0.0000017009,0.0000016644,0.0000016395,0.0000016302, +0.0000016295,0.0000016333,0.0000016351,0.0000016356,0.0000016376, +0.0000016401,0.0000016595,0.0000017018,0.0000017462,0.0000017724, +0.0000017817,0.0000017832,0.0000017826,0.0000017804,0.0000017767, +0.0000017717,0.0000017661,0.0000017615,0.0000017594,0.0000017602, +0.0000017624,0.0000017639,0.0000017632,0.0000017607,0.0000017468, +0.0000017275,0.0000017045,0.0000016858,0.0000016766,0.0000016794, +0.0000017133,0.0000017625,0.0000017880,0.0000017889,0.0000017914, +0.0000017976,0.0000017916,0.0000017804,0.0000017710,0.0000017617, +0.0000017546,0.0000017491,0.0000017471,0.0000017526,0.0000017691, +0.0000017852,0.0000017812,0.0000017525,0.0000017388,0.0000017546, +0.0000017723,0.0000017816,0.0000017874,0.0000017976,0.0000018467, +0.0000019207,0.0000019442,0.0000019419,0.0000019667,0.0000019944, +0.0000020039,0.0000020026,0.0000019823,0.0000019686,0.0000019708, +0.0000019543,0.0000019418,0.0000019509,0.0000019454,0.0000019427, +0.0000019461,0.0000019550,0.0000019614,0.0000019608,0.0000019558, +0.0000019513,0.0000019484,0.0000019466,0.0000019462,0.0000019464, +0.0000019445,0.0000019428,0.0000019440,0.0000019399,0.0000019302, +0.0000019350,0.0000019654,0.0000019934,0.0000020002,0.0000019993, +0.0000019972,0.0000019958,0.0000019930,0.0000019909,0.0000019951, +0.0000020121,0.0000020247,0.0000020177,0.0000019945,0.0000019824, +0.0000019874,0.0000019987,0.0000019959,0.0000019759,0.0000019533, +0.0000019546,0.0000019874,0.0000020116,0.0000020093,0.0000019984, +0.0000019906,0.0000019902,0.0000019965,0.0000020055,0.0000020126, +0.0000020165,0.0000020203,0.0000020259,0.0000020301,0.0000020304, +0.0000020285,0.0000020275,0.0000020272,0.0000020251,0.0000020206, +0.0000020148,0.0000020095,0.0000020076,0.0000020096,0.0000020156, +0.0000020191,0.0000020012,0.0000019317,0.0000018678,0.0000018337, +0.0000018123,0.0000018379,0.0000018716,0.0000018558,0.0000018407, +0.0000018594,0.0000018751,0.0000018658,0.0000018505,0.0000018406, +0.0000018465,0.0000018595,0.0000018477,0.0000018099,0.0000017967, +0.0000018135,0.0000018356,0.0000018366,0.0000018251,0.0000018157, +0.0000018130,0.0000018214,0.0000018920,0.0000018465,0.0000018401, +0.0000019002,0.0000019135,0.0000019138,0.0000019131,0.0000019143, +0.0000019141,0.0000018973,0.0000018683,0.0000018395,0.0000018196, +0.0000018160,0.0000018197,0.0000018239,0.0000018227,0.0000018191, +0.0000018194,0.0000018228,0.0000018283,0.0000018304,0.0000018268, +0.0000018205,0.0000018227,0.0000018342,0.0000018502,0.0000018595, +0.0000018601,0.0000018582,0.0000018576,0.0000018555,0.0000018477, +0.0000018345,0.0000018268,0.0000018288,0.0000018360,0.0000018537, +0.0000018924,0.0000019104,0.0000018965,0.0000018452,0.0000017788, +0.0000017310,0.0000017089,0.0000016997,0.0000016958,0.0000016938, +0.0000016877,0.0000016745,0.0000016628,0.0000016593,0.0000016606, +0.0000016558,0.0000016449,0.0000016338,0.0000016247,0.0000016184, +0.0000016149,0.0000016133,0.0000016133,0.0000016151,0.0000016171, +0.0000016210,0.0000016227,0.0000016232,0.0000016234,0.0000016231, +0.0000016220,0.0000016199,0.0000016179,0.0000016173,0.0000016176, +0.0000016144,0.0000016140,0.0000016252,0.0000016380,0.0000016488, +0.0000016547,0.0000016535,0.0000016531,0.0000016571,0.0000016603, +0.0000016600,0.0000016582,0.0000016572,0.0000016571,0.0000016569, +0.0000016569,0.0000016568,0.0000016554,0.0000016534,0.0000016516, +0.0000016496,0.0000016466,0.0000016434,0.0000016400,0.0000016363, +0.0000016324,0.0000016297,0.0000016291,0.0000016295,0.0000016349, +0.0000016497,0.0000016727,0.0000017030,0.0000017349,0.0000017651, +0.0000017895,0.0000018058,0.0000018173,0.0000018248,0.0000018137, +0.0000017652,0.0000017135,0.0000016949,0.0000016945,0.0000016937, +0.0000016914,0.0000016906,0.0000016981,0.0000017095,0.0000017099, +0.0000017009,0.0000016977,0.0000017016,0.0000016983,0.0000016834, +0.0000016815,0.0000017158,0.0000017748,0.0000018213,0.0000018376, +0.0000018356,0.0000018179,0.0000017974,0.0000017843,0.0000017786, +0.0000017766,0.0000017756,0.0000017753,0.0000017752,0.0000017753, +0.0000017777,0.0000017825,0.0000017855,0.0000017853,0.0000017858, +0.0000017895,0.0000017957,0.0000018012,0.0000018036,0.0000018042, +0.0000018054,0.0000018066,0.0000018071,0.0000018077,0.0000018081, +0.0000018086,0.0000018085,0.0000018077,0.0000018062,0.0000018049, +0.0000018047,0.0000018062,0.0000018090,0.0000018119,0.0000018142, +0.0000018180,0.0000018223,0.0000018279,0.0000018306,0.0000018287, +0.0000018172,0.0000017977,0.0000017801,0.0000017703,0.0000017658, +0.0000017600,0.0000017552,0.0000017539,0.0000017567,0.0000017612, +0.0000017654,0.0000017658,0.0000017621,0.0000017622,0.0000017755, +0.0000017895,0.0000017711,0.0000017206,0.0000017281,0.0000018163, +0.0000018881,0.0000019063,0.0000019222,0.0000019424,0.0000019606, +0.0000019745,0.0000019849,0.0000019968,0.0000020098,0.0000020188, +0.0000020209,0.0000020189,0.0000020107,0.0000019996,0.0000019890, +0.0000019814,0.0000019774,0.0000019764,0.0000019771,0.0000019779, +0.0000019779,0.0000019766,0.0000019744,0.0000019730,0.0000019733, +0.0000019747,0.0000019766,0.0000019783,0.0000019798,0.0000019805, +0.0000019797,0.0000019778,0.0000019760,0.0000019749,0.0000019744, +0.0000019736,0.0000019713,0.0000019668,0.0000019623,0.0000019606, +0.0000019611,0.0000019613,0.0000019607,0.0000019604,0.0000019612, +0.0000019627,0.0000019640,0.0000019643,0.0000019638,0.0000019627, +0.0000019611,0.0000019580,0.0000019536,0.0000019471,0.0000019380, +0.0000019296,0.0000019255,0.0000019272,0.0000019344,0.0000019421, +0.0000019477,0.0000019506,0.0000019514,0.0000019503,0.0000019467, +0.0000019397,0.0000019299,0.0000019209,0.0000019163,0.0000019179, +0.0000019243,0.0000019329,0.0000019383,0.0000019385,0.0000019303, +0.0000019156,0.0000019119,0.0000019216,0.0000019348,0.0000019390, +0.0000019379,0.0000019369,0.0000019365,0.0000019349,0.0000019318, +0.0000019286,0.0000019253,0.0000019216,0.0000019180,0.0000019153, +0.0000019130,0.0000019105,0.0000019080,0.0000019055,0.0000019027, +0.0000018986,0.0000018933,0.0000018891,0.0000018885,0.0000018895, +0.0000018908,0.0000018918,0.0000018931,0.0000018950,0.0000018969, +0.0000018983,0.0000018991,0.0000018993,0.0000018993,0.0000018994, +0.0000019002,0.0000019019,0.0000019039,0.0000019052,0.0000019051, +0.0000019042,0.0000019031,0.0000019024,0.0000019022,0.0000019020, +0.0000019009,0.0000018989,0.0000018968,0.0000018955,0.0000018955, +0.0000018949,0.0000018946,0.0000018938,0.0000018924,0.0000018899, +0.0000018877,0.0000018874,0.0000018882,0.0000018881,0.0000018873, +0.0000018853,0.0000018816,0.0000018778,0.0000018743,0.0000018715, +0.0000018690,0.0000018679,0.0000018696,0.0000018718,0.0000018732, +0.0000018729,0.0000018697,0.0000018639,0.0000018585,0.0000018576, +0.0000018584,0.0000018582,0.0000018539,0.0000018456,0.0000018337, +0.0000018310,0.0000018326,0.0000018409,0.0000018490,0.0000018483, +0.0000018487,0.0000018513,0.0000018534,0.0000018580,0.0000018584, +0.0000018507,0.0000018392,0.0000018282,0.0000018196,0.0000018162, +0.0000018166,0.0000018184,0.0000018203,0.0000018210,0.0000018195, +0.0000018156,0.0000018097,0.0000018032,0.0000017950,0.0000017829, +0.0000017674,0.0000017518,0.0000017402,0.0000017335,0.0000017301, +0.0000017289,0.0000017311,0.0000017355,0.0000017357,0.0000017277, +0.0000017160,0.0000017096,0.0000017071,0.0000017030,0.0000016956, +0.0000016874,0.0000016802,0.0000016771,0.0000016765,0.0000016752, +0.0000016758,0.0000016764,0.0000016743,0.0000016737,0.0000016776, +0.0000016829,0.0000016862,0.0000016880,0.0000016900,0.0000016915, +0.0000016911,0.0000016892,0.0000016879,0.0000016849,0.0000016784, +0.0000016751,0.0000016741,0.0000016708,0.0000016693,0.0000016713, +0.0000016744,0.0000016686,0.0000016543,0.0000016504,0.0000016598, +0.0000016726,0.0000016763,0.0000016728,0.0000016654,0.0000016583, +0.0000016507,0.0000016389,0.0000016312,0.0000016299,0.0000016287, +0.0000016288,0.0000016300,0.0000016252,0.0000016149,0.0000016113, +0.0000016149,0.0000016169,0.0000016139,0.0000016086,0.0000016050, +0.0000016097,0.0000016160,0.0000016205,0.0000016324,0.0000016474, +0.0000016544,0.0000016550,0.0000016557,0.0000016527,0.0000016479, +0.0000016466,0.0000016434,0.0000016397,0.0000016386,0.0000016401, +0.0000016444,0.0000016502,0.0000016534,0.0000016541,0.0000016540, +0.0000016549,0.0000016549,0.0000016529,0.0000016521,0.0000016548, +0.0000016579,0.0000016586,0.0000016582,0.0000016599,0.0000016649, +0.0000016726,0.0000016778,0.0000016780,0.0000016753,0.0000016732, +0.0000016749,0.0000016873,0.0000017138,0.0000017461,0.0000017703, +0.0000017807,0.0000017801,0.0000017735,0.0000017668,0.0000017634, +0.0000017631,0.0000017656,0.0000017705,0.0000017769,0.0000017834, +0.0000017879,0.0000017885,0.0000017916,0.0000017951,0.0000017991, +0.0000018020,0.0000018040,0.0000018051,0.0000018031,0.0000017972, +0.0000017926,0.0000017934,0.0000017968,0.0000017973,0.0000017922, +0.0000017834,0.0000017776,0.0000017759,0.0000017725,0.0000017706, +0.0000017711,0.0000017729,0.0000017731,0.0000017649,0.0000017618, +0.0000017613,0.0000017479,0.0000017424,0.0000017582,0.0000017659, +0.0000017674,0.0000017666,0.0000017625,0.0000017600,0.0000017631, +0.0000017700,0.0000017726,0.0000017833,0.0000018014,0.0000018220, +0.0000018353,0.0000018429,0.0000018543,0.0000018578,0.0000018575, +0.0000018553,0.0000018506,0.0000018457,0.0000018427,0.0000018420, +0.0000018440,0.0000018460,0.0000018397,0.0000018156,0.0000017877, +0.0000017734,0.0000017705,0.0000017670,0.0000017546,0.0000017372, +0.0000017259,0.0000017262,0.0000017312,0.0000017380,0.0000017426, +0.0000017443,0.0000017427,0.0000017395,0.0000017368,0.0000017367, +0.0000017389,0.0000017418,0.0000017456,0.0000017480,0.0000017490, +0.0000017480,0.0000017463,0.0000017478,0.0000017551,0.0000017654, +0.0000017732,0.0000017840,0.0000017925,0.0000018020,0.0000018094, +0.0000018017,0.0000017986,0.0000017989,0.0000017805,0.0000017347, +0.0000017158,0.0000017359,0.0000017485,0.0000017475,0.0000017459, +0.0000017485,0.0000017521,0.0000017514,0.0000017442,0.0000017361, +0.0000017364,0.0000017468,0.0000017575,0.0000017600,0.0000017517, +0.0000017270,0.0000016876,0.0000016505,0.0000016335,0.0000016346, +0.0000016467,0.0000016580,0.0000016618,0.0000016594,0.0000016510, +0.0000016429,0.0000016427,0.0000016506,0.0000016789,0.0000017181, +0.0000017500,0.0000017664,0.0000017707,0.0000017695,0.0000017666, +0.0000017631,0.0000017601,0.0000017584,0.0000017587,0.0000017596, +0.0000017598,0.0000017554,0.0000017459,0.0000017304,0.0000017108, +0.0000016927,0.0000016805,0.0000016752,0.0000016763,0.0000016953, +0.0000017420,0.0000017820,0.0000017909,0.0000017922,0.0000017986, +0.0000017974,0.0000017861,0.0000017756,0.0000017655,0.0000017573, +0.0000017515,0.0000017484,0.0000017490,0.0000017596,0.0000017773, +0.0000017860,0.0000017698,0.0000017411,0.0000017377,0.0000017571, +0.0000017732,0.0000017833,0.0000017879,0.0000018041,0.0000018622, +0.0000019298,0.0000019443,0.0000019462,0.0000019758,0.0000020002, +0.0000020037,0.0000019994,0.0000019798,0.0000019708,0.0000019690, +0.0000019502,0.0000019445,0.0000019514,0.0000019460,0.0000019447, +0.0000019500,0.0000019593,0.0000019620,0.0000019572,0.0000019510, +0.0000019483,0.0000019477,0.0000019474,0.0000019480,0.0000019482, +0.0000019473,0.0000019483,0.0000019499,0.0000019428,0.0000019307, +0.0000019334,0.0000019558,0.0000019812,0.0000019941,0.0000019973, +0.0000019975,0.0000019969,0.0000019948,0.0000019931,0.0000020004, +0.0000020164,0.0000020193,0.0000020024,0.0000019854,0.0000019830, +0.0000019935,0.0000019999,0.0000019915,0.0000019705,0.0000019496, +0.0000019586,0.0000019941,0.0000020155,0.0000020141,0.0000020045, +0.0000019970,0.0000019969,0.0000020033,0.0000020114,0.0000020156, +0.0000020171,0.0000020202,0.0000020247,0.0000020273,0.0000020282, +0.0000020288,0.0000020299,0.0000020294,0.0000020249,0.0000020165, +0.0000020068,0.0000020041,0.0000020055,0.0000020117,0.0000020179, +0.0000020043,0.0000019360,0.0000018677,0.0000018376,0.0000018131, +0.0000018209,0.0000018659,0.0000018688,0.0000018419,0.0000018462, +0.0000018673,0.0000018668,0.0000018555,0.0000018445,0.0000018401, +0.0000018539,0.0000018578,0.0000018275,0.0000017982,0.0000018031, +0.0000018268,0.0000018383,0.0000018278,0.0000018157,0.0000018117, +0.0000018145,0.0000018904,0.0000018467,0.0000018551,0.0000019108, +0.0000019129,0.0000019139,0.0000019139,0.0000019132,0.0000019156, +0.0000019195,0.0000019086,0.0000018848,0.0000018566,0.0000018302, +0.0000018192,0.0000018198,0.0000018192,0.0000018193,0.0000018247, +0.0000018367,0.0000018497,0.0000018545,0.0000018504,0.0000018440, +0.0000018305,0.0000018219,0.0000018248,0.0000018350,0.0000018439, +0.0000018468,0.0000018441,0.0000018363,0.0000018267,0.0000018223, +0.0000018258,0.0000018305,0.0000018475,0.0000018922,0.0000019122, +0.0000018863,0.0000018240,0.0000017593,0.0000017238,0.0000017092, +0.0000017000,0.0000016957,0.0000016947,0.0000016906,0.0000016793, +0.0000016661,0.0000016607,0.0000016604,0.0000016555,0.0000016432, +0.0000016304,0.0000016210,0.0000016154,0.0000016131,0.0000016138, +0.0000016142,0.0000016166,0.0000016184,0.0000016185,0.0000016201, +0.0000016186,0.0000016154,0.0000016119,0.0000016088,0.0000016059, +0.0000016028,0.0000015997,0.0000015979,0.0000015994,0.0000016052, +0.0000016074,0.0000016135,0.0000016286,0.0000016445,0.0000016551, +0.0000016562,0.0000016555,0.0000016581,0.0000016603,0.0000016600, +0.0000016589,0.0000016589,0.0000016602,0.0000016615,0.0000016618, +0.0000016614,0.0000016606,0.0000016587,0.0000016554,0.0000016507, +0.0000016466,0.0000016425,0.0000016388,0.0000016358,0.0000016330, +0.0000016318,0.0000016311,0.0000016321,0.0000016388,0.0000016500, +0.0000016611,0.0000016716,0.0000016862,0.0000017108,0.0000017455, +0.0000017802,0.0000018046,0.0000018207,0.0000018232,0.0000017949, +0.0000017367,0.0000017006,0.0000016963,0.0000016953,0.0000016913, +0.0000016914,0.0000017085,0.0000017340,0.0000017380,0.0000017163, +0.0000016966,0.0000016940,0.0000016944,0.0000016822,0.0000016725, +0.0000016862,0.0000017362,0.0000017934,0.0000018309,0.0000018429, +0.0000018417,0.0000018225,0.0000017977,0.0000017785,0.0000017686, +0.0000017672,0.0000017686,0.0000017698,0.0000017707,0.0000017734, +0.0000017779,0.0000017803,0.0000017805,0.0000017802,0.0000017809, +0.0000017838,0.0000017881,0.0000017908,0.0000017905,0.0000017884, +0.0000017861,0.0000017842,0.0000017833,0.0000017836,0.0000017843, +0.0000017844,0.0000017839,0.0000017829,0.0000017826,0.0000017836, +0.0000017865,0.0000017914,0.0000017962,0.0000017975,0.0000017940, +0.0000017884,0.0000017896,0.0000017899,0.0000017888,0.0000017818, +0.0000017724,0.0000017683,0.0000017674,0.0000017656,0.0000017606, +0.0000017566,0.0000017570,0.0000017602,0.0000017636,0.0000017662, +0.0000017669,0.0000017640,0.0000017620,0.0000017721,0.0000017901, +0.0000017801,0.0000017279,0.0000017194,0.0000017998,0.0000018790, +0.0000019018,0.0000019177,0.0000019395,0.0000019587,0.0000019734, +0.0000019828,0.0000019917,0.0000020029,0.0000020138,0.0000020204, +0.0000020214,0.0000020186,0.0000020105,0.0000020000,0.0000019905, +0.0000019843,0.0000019812,0.0000019798,0.0000019791,0.0000019785, +0.0000019764,0.0000019734,0.0000019712,0.0000019697,0.0000019694, +0.0000019702,0.0000019714,0.0000019734,0.0000019755,0.0000019769, +0.0000019774,0.0000019775,0.0000019781,0.0000019794,0.0000019801, +0.0000019787,0.0000019741,0.0000019691,0.0000019663,0.0000019654, +0.0000019647,0.0000019632,0.0000019630,0.0000019635,0.0000019650, +0.0000019668,0.0000019687,0.0000019693,0.0000019680,0.0000019659, +0.0000019640,0.0000019613,0.0000019556,0.0000019470,0.0000019395, +0.0000019384,0.0000019455,0.0000019567,0.0000019645,0.0000019672, +0.0000019670,0.0000019655,0.0000019630,0.0000019591,0.0000019520, +0.0000019420,0.0000019324,0.0000019273,0.0000019283,0.0000019342, +0.0000019402,0.0000019423,0.0000019378,0.0000019218,0.0000019161, +0.0000019289,0.0000019437,0.0000019456,0.0000019417,0.0000019402, +0.0000019406,0.0000019404,0.0000019370,0.0000019348,0.0000019315, +0.0000019275,0.0000019240,0.0000019218,0.0000019208,0.0000019204, +0.0000019200,0.0000019194,0.0000019183,0.0000019161,0.0000019126, +0.0000019103,0.0000019108,0.0000019129,0.0000019147,0.0000019163, +0.0000019180,0.0000019198,0.0000019211,0.0000019215,0.0000019215, +0.0000019212,0.0000019207,0.0000019200,0.0000019190,0.0000019178, +0.0000019165,0.0000019149,0.0000019123,0.0000019092,0.0000019065, +0.0000019050,0.0000019046,0.0000019040,0.0000019023,0.0000018998, +0.0000018973,0.0000018957,0.0000018955,0.0000018946,0.0000018932, +0.0000018921,0.0000018908,0.0000018883,0.0000018869,0.0000018876, +0.0000018890,0.0000018895,0.0000018900,0.0000018891,0.0000018864, +0.0000018831,0.0000018798,0.0000018769,0.0000018735,0.0000018704, +0.0000018705,0.0000018732,0.0000018749,0.0000018755,0.0000018723, +0.0000018657,0.0000018605,0.0000018601,0.0000018603,0.0000018610, +0.0000018560,0.0000018459,0.0000018338,0.0000018306,0.0000018307, +0.0000018390,0.0000018510,0.0000018525,0.0000018516,0.0000018521, +0.0000018543,0.0000018589,0.0000018579,0.0000018514,0.0000018433, +0.0000018343,0.0000018277,0.0000018262,0.0000018283,0.0000018309, +0.0000018318,0.0000018314,0.0000018300,0.0000018272,0.0000018221, +0.0000018141,0.0000018023,0.0000017881,0.0000017729,0.0000017559, +0.0000017408,0.0000017319,0.0000017280,0.0000017267,0.0000017285, +0.0000017332,0.0000017364,0.0000017341,0.0000017247,0.0000017158, +0.0000017087,0.0000017016,0.0000016950,0.0000016881,0.0000016822, +0.0000016798,0.0000016776,0.0000016764,0.0000016770,0.0000016757, +0.0000016736,0.0000016752,0.0000016815,0.0000016868,0.0000016887, +0.0000016892,0.0000016912,0.0000016922,0.0000016912,0.0000016895, +0.0000016884,0.0000016833,0.0000016752,0.0000016723,0.0000016702, +0.0000016671,0.0000016672,0.0000016709,0.0000016718,0.0000016611, +0.0000016497,0.0000016509,0.0000016625,0.0000016732,0.0000016758, +0.0000016716,0.0000016628,0.0000016558,0.0000016460,0.0000016343, +0.0000016312,0.0000016304,0.0000016286,0.0000016291,0.0000016279, +0.0000016198,0.0000016121,0.0000016140,0.0000016186,0.0000016174, +0.0000016116,0.0000016062,0.0000016068,0.0000016144,0.0000016190, +0.0000016268,0.0000016420,0.0000016541,0.0000016566,0.0000016571, +0.0000016557,0.0000016515,0.0000016498,0.0000016462,0.0000016413, +0.0000016397,0.0000016401,0.0000016420,0.0000016459,0.0000016502, +0.0000016529,0.0000016532,0.0000016529,0.0000016542,0.0000016555, +0.0000016550,0.0000016548,0.0000016566,0.0000016589,0.0000016599, +0.0000016610,0.0000016634,0.0000016678,0.0000016718,0.0000016730, +0.0000016730,0.0000016735,0.0000016750,0.0000016807,0.0000016958, +0.0000017207,0.0000017477,0.0000017691,0.0000017804,0.0000017805, +0.0000017748,0.0000017693,0.0000017673,0.0000017677,0.0000017698, +0.0000017742,0.0000017796,0.0000017842,0.0000017883,0.0000017910, +0.0000017940,0.0000017972,0.0000017992,0.0000018001,0.0000018000, +0.0000017973,0.0000017927,0.0000017912,0.0000017929,0.0000017946, +0.0000017924,0.0000017843,0.0000017771,0.0000017759,0.0000017771, +0.0000017757,0.0000017741,0.0000017733,0.0000017731,0.0000017730, +0.0000017655,0.0000017612,0.0000017608,0.0000017483,0.0000017390, +0.0000017537,0.0000017651,0.0000017665,0.0000017656,0.0000017611, +0.0000017586,0.0000017623,0.0000017702,0.0000017729,0.0000017832, +0.0000018009,0.0000018206,0.0000018344,0.0000018406,0.0000018512, +0.0000018559,0.0000018540,0.0000018488,0.0000018427,0.0000018384, +0.0000018386,0.0000018428,0.0000018432,0.0000018301,0.0000018032, +0.0000017809,0.0000017742,0.0000017734,0.0000017664,0.0000017482, +0.0000017287,0.0000017239,0.0000017301,0.0000017404,0.0000017461, +0.0000017464,0.0000017449,0.0000017410,0.0000017359,0.0000017310, +0.0000017290,0.0000017310,0.0000017359,0.0000017414,0.0000017471, +0.0000017513,0.0000017544,0.0000017537,0.0000017510,0.0000017516, +0.0000017590,0.0000017681,0.0000017762,0.0000017874,0.0000017941, +0.0000018048,0.0000018112,0.0000018021,0.0000018008,0.0000017998, +0.0000017729,0.0000017272,0.0000017227,0.0000017426,0.0000017463, +0.0000017453,0.0000017506,0.0000017593,0.0000017619,0.0000017557, +0.0000017468,0.0000017457,0.0000017528,0.0000017602,0.0000017612, +0.0000017520,0.0000017216,0.0000016764,0.0000016431,0.0000016355, +0.0000016487,0.0000016697,0.0000016855,0.0000016915,0.0000016908, +0.0000016834,0.0000016699,0.0000016555,0.0000016459,0.0000016460, +0.0000016590,0.0000016858,0.0000017152,0.0000017361,0.0000017460, +0.0000017489,0.0000017482,0.0000017462,0.0000017433,0.0000017397, +0.0000017355,0.0000017291,0.0000017198,0.0000017079,0.0000016949, +0.0000016843,0.0000016787,0.0000016763,0.0000016750,0.0000016838, +0.0000017200,0.0000017678,0.0000017909,0.0000017929,0.0000017985, +0.0000018014,0.0000017926,0.0000017810,0.0000017704,0.0000017608, +0.0000017544,0.0000017501,0.0000017494,0.0000017541,0.0000017673, +0.0000017829,0.0000017808,0.0000017552,0.0000017333,0.0000017371, +0.0000017567,0.0000017744,0.0000017843,0.0000017877,0.0000018113, +0.0000018758,0.0000019346,0.0000019428,0.0000019498,0.0000019834, +0.0000020051,0.0000020056,0.0000019972,0.0000019796,0.0000019735, +0.0000019670,0.0000019486,0.0000019473,0.0000019519,0.0000019475, +0.0000019471,0.0000019543,0.0000019630,0.0000019619,0.0000019542, +0.0000019494,0.0000019483,0.0000019490,0.0000019500,0.0000019503, +0.0000019500,0.0000019508,0.0000019540,0.0000019542,0.0000019448, +0.0000019317,0.0000019304,0.0000019449,0.0000019672,0.0000019862, +0.0000019957,0.0000019981,0.0000019978,0.0000019960,0.0000019959, +0.0000020040,0.0000020115,0.0000020062,0.0000019924,0.0000019843, +0.0000019879,0.0000019987,0.0000019998,0.0000019890,0.0000019690, +0.0000019509,0.0000019618,0.0000019951,0.0000020155,0.0000020164, +0.0000020093,0.0000020037,0.0000020042,0.0000020095,0.0000020143, +0.0000020153,0.0000020163,0.0000020200,0.0000020239,0.0000020269, +0.0000020294,0.0000020316,0.0000020327,0.0000020300,0.0000020212, +0.0000020085,0.0000020012,0.0000020014,0.0000020074,0.0000020148, +0.0000020052,0.0000019390,0.0000018672,0.0000018380,0.0000018164, +0.0000018141,0.0000018556,0.0000018778,0.0000018521,0.0000018388, +0.0000018519,0.0000018550,0.0000018518,0.0000018493,0.0000018388, +0.0000018441,0.0000018592,0.0000018463,0.0000018085,0.0000017975, +0.0000018154,0.0000018358,0.0000018318,0.0000018180,0.0000018103, +0.0000018105,0.0000018837,0.0000018493,0.0000018686,0.0000019090, +0.0000019107,0.0000019173,0.0000019239,0.0000019211,0.0000019154, +0.0000019170,0.0000019224,0.0000019121,0.0000018919,0.0000018699, +0.0000018441,0.0000018297,0.0000018274,0.0000018310,0.0000018423, +0.0000018567,0.0000018603,0.0000018549,0.0000018434,0.0000018405, +0.0000018423,0.0000018374,0.0000018297,0.0000018233,0.0000018224, +0.0000018234,0.0000018219,0.0000018180,0.0000018183,0.0000018235, +0.0000018256,0.0000018400,0.0000018861,0.0000019092,0.0000018773, +0.0000018075,0.0000017481,0.0000017216,0.0000017097,0.0000017010, +0.0000016965,0.0000016960,0.0000016934,0.0000016846,0.0000016723, +0.0000016628,0.0000016601,0.0000016557,0.0000016426,0.0000016290, +0.0000016200,0.0000016155,0.0000016140,0.0000016129,0.0000016129, +0.0000016121,0.0000016120,0.0000016115,0.0000016102,0.0000016083, +0.0000016048,0.0000016001,0.0000015958,0.0000015925,0.0000015906, +0.0000015894,0.0000015878,0.0000015855,0.0000015850,0.0000015897, +0.0000016010,0.0000016076,0.0000016171,0.0000016335,0.0000016495, +0.0000016564,0.0000016567,0.0000016590,0.0000016608,0.0000016597, +0.0000016582,0.0000016585,0.0000016609,0.0000016648,0.0000016670, +0.0000016672,0.0000016657,0.0000016613,0.0000016545,0.0000016462, +0.0000016408,0.0000016398,0.0000016410,0.0000016410,0.0000016396, +0.0000016373,0.0000016356,0.0000016360,0.0000016386,0.0000016412, +0.0000016415,0.0000016417,0.0000016469,0.0000016637,0.0000016968, +0.0000017417,0.0000017828,0.0000018102,0.0000018232,0.0000018145, +0.0000017642,0.0000017129,0.0000016978,0.0000016966,0.0000016936, +0.0000016979,0.0000017266,0.0000017640,0.0000017724,0.0000017435, +0.0000017065,0.0000016909,0.0000016896,0.0000016825,0.0000016685, +0.0000016689,0.0000017025,0.0000017601,0.0000018095,0.0000018388, +0.0000018498,0.0000018487,0.0000018276,0.0000017973,0.0000017728, +0.0000017617,0.0000017570,0.0000017555,0.0000017534,0.0000017556, +0.0000017586,0.0000017606,0.0000017608,0.0000017621,0.0000017638, +0.0000017665,0.0000017693,0.0000017704,0.0000017697,0.0000017669, +0.0000017634,0.0000017604,0.0000017587,0.0000017588,0.0000017606, +0.0000017628,0.0000017643,0.0000017650,0.0000017671,0.0000017724, +0.0000017802,0.0000017892,0.0000017976,0.0000018010,0.0000017960, +0.0000017851,0.0000017769,0.0000017738,0.0000017703,0.0000017663, +0.0000017638,0.0000017690,0.0000017735,0.0000017752,0.0000017719, +0.0000017688,0.0000017691,0.0000017713,0.0000017715,0.0000017704, +0.0000017687,0.0000017647,0.0000017615,0.0000017703,0.0000017913, +0.0000017847,0.0000017351,0.0000017174,0.0000017869,0.0000018695, +0.0000018970,0.0000019136,0.0000019365,0.0000019560,0.0000019709, +0.0000019801,0.0000019864,0.0000019941,0.0000020037,0.0000020123, +0.0000020177,0.0000020198,0.0000020170,0.0000020115,0.0000020049, +0.0000019988,0.0000019939,0.0000019901,0.0000019872,0.0000019847, +0.0000019811,0.0000019767,0.0000019725,0.0000019695,0.0000019675, +0.0000019663,0.0000019656,0.0000019660,0.0000019674,0.0000019696, +0.0000019718,0.0000019733,0.0000019751,0.0000019775,0.0000019796, +0.0000019799,0.0000019780,0.0000019744,0.0000019703,0.0000019677, +0.0000019657,0.0000019641,0.0000019635,0.0000019642,0.0000019664, +0.0000019694,0.0000019719,0.0000019729,0.0000019720,0.0000019709, +0.0000019704,0.0000019686,0.0000019633,0.0000019560,0.0000019526, +0.0000019571,0.0000019695,0.0000019793,0.0000019818,0.0000019804, +0.0000019768,0.0000019726,0.0000019691,0.0000019653,0.0000019597, +0.0000019523,0.0000019450,0.0000019408,0.0000019415,0.0000019450, +0.0000019466,0.0000019451,0.0000019318,0.0000019196,0.0000019289, +0.0000019417,0.0000019426,0.0000019384,0.0000019331,0.0000019295, +0.0000019299,0.0000019320,0.0000019353,0.0000019372,0.0000019348, +0.0000019304,0.0000019263,0.0000019236,0.0000019228,0.0000019224, +0.0000019216,0.0000019207,0.0000019193,0.0000019172,0.0000019157, +0.0000019161,0.0000019177,0.0000019191,0.0000019200,0.0000019214, +0.0000019229,0.0000019240,0.0000019245,0.0000019251,0.0000019260, +0.0000019271,0.0000019283,0.0000019289,0.0000019291,0.0000019292, +0.0000019286,0.0000019268,0.0000019240,0.0000019205,0.0000019175, +0.0000019157,0.0000019138,0.0000019110,0.0000019079,0.0000019051, +0.0000019036,0.0000019035,0.0000019037,0.0000019040,0.0000019039, +0.0000019015,0.0000018973,0.0000018944,0.0000018939,0.0000018936, +0.0000018930,0.0000018923,0.0000018909,0.0000018891,0.0000018864, +0.0000018833,0.0000018799,0.0000018747,0.0000018699,0.0000018690, +0.0000018728,0.0000018754,0.0000018754,0.0000018730,0.0000018671, +0.0000018619,0.0000018620,0.0000018627,0.0000018626,0.0000018574, +0.0000018470,0.0000018354,0.0000018314,0.0000018311,0.0000018365, +0.0000018510,0.0000018555,0.0000018530,0.0000018520,0.0000018548, +0.0000018586,0.0000018575,0.0000018543,0.0000018491,0.0000018418, +0.0000018359,0.0000018358,0.0000018399,0.0000018421,0.0000018415, +0.0000018393,0.0000018382,0.0000018374,0.0000018339,0.0000018241, +0.0000018092,0.0000017933,0.0000017772,0.0000017594,0.0000017430, +0.0000017321,0.0000017275,0.0000017268,0.0000017278,0.0000017317, +0.0000017369,0.0000017388,0.0000017342,0.0000017236,0.0000017101, +0.0000017000,0.0000016941,0.0000016890,0.0000016852,0.0000016819, +0.0000016786,0.0000016781,0.0000016778,0.0000016747,0.0000016740, +0.0000016790,0.0000016863,0.0000016897,0.0000016895,0.0000016900, +0.0000016924,0.0000016927,0.0000016915,0.0000016904,0.0000016885, +0.0000016806,0.0000016726,0.0000016700,0.0000016666,0.0000016647, +0.0000016663,0.0000016700,0.0000016665,0.0000016537,0.0000016471, +0.0000016524,0.0000016644,0.0000016733,0.0000016748,0.0000016690, +0.0000016599,0.0000016522,0.0000016402,0.0000016330,0.0000016323, +0.0000016298,0.0000016285,0.0000016287,0.0000016245,0.0000016157, +0.0000016137,0.0000016186,0.0000016211,0.0000016155,0.0000016086, +0.0000016056,0.0000016109,0.0000016178,0.0000016227,0.0000016347, +0.0000016502,0.0000016572,0.0000016580,0.0000016585,0.0000016558, +0.0000016534,0.0000016492,0.0000016427,0.0000016411,0.0000016414, +0.0000016421,0.0000016437,0.0000016459,0.0000016484,0.0000016505, +0.0000016512,0.0000016516,0.0000016529,0.0000016548,0.0000016547, +0.0000016542,0.0000016545,0.0000016561,0.0000016582,0.0000016605, +0.0000016633,0.0000016663,0.0000016685,0.0000016704,0.0000016728, +0.0000016755,0.0000016785,0.0000016860,0.0000017022,0.0000017244, +0.0000017473,0.0000017672,0.0000017792,0.0000017798,0.0000017761, +0.0000017723,0.0000017712,0.0000017724,0.0000017760,0.0000017806, +0.0000017846,0.0000017894,0.0000017907,0.0000017924,0.0000017945, +0.0000017958,0.0000017963,0.0000017961,0.0000017941,0.0000017913, +0.0000017908,0.0000017913,0.0000017901,0.0000017836,0.0000017754, +0.0000017734,0.0000017759,0.0000017783,0.0000017779,0.0000017772, +0.0000017754,0.0000017731,0.0000017728,0.0000017662,0.0000017608, +0.0000017600,0.0000017490,0.0000017359,0.0000017482,0.0000017639, +0.0000017657,0.0000017647,0.0000017600,0.0000017574,0.0000017614, +0.0000017699,0.0000017729,0.0000017826,0.0000018002,0.0000018191, +0.0000018332,0.0000018377,0.0000018447,0.0000018485,0.0000018456, +0.0000018403,0.0000018376,0.0000018377,0.0000018419,0.0000018442, +0.0000018308,0.0000018013,0.0000017817,0.0000017778,0.0000017782, +0.0000017704,0.0000017496,0.0000017286,0.0000017245,0.0000017346, +0.0000017459,0.0000017482,0.0000017458,0.0000017395,0.0000017320, +0.0000017251,0.0000017197,0.0000017170,0.0000017184,0.0000017229, +0.0000017298,0.0000017379,0.0000017459,0.0000017525,0.0000017571, +0.0000017580,0.0000017550,0.0000017555,0.0000017629,0.0000017715, +0.0000017803,0.0000017902,0.0000017957,0.0000018083,0.0000018121, +0.0000018032,0.0000018030,0.0000017996,0.0000017635,0.0000017253, +0.0000017312,0.0000017442,0.0000017429,0.0000017470,0.0000017603, +0.0000017689,0.0000017666,0.0000017591,0.0000017570,0.0000017610, +0.0000017643,0.0000017635,0.0000017510,0.0000017163,0.0000016688, +0.0000016396,0.0000016421,0.0000016641,0.0000016891,0.0000017048, +0.0000017098,0.0000017094,0.0000017062,0.0000016990,0.0000016868, +0.0000016713,0.0000016566,0.0000016484,0.0000016502,0.0000016606, +0.0000016781,0.0000016933,0.0000017024,0.0000017057,0.0000017052, +0.0000017023,0.0000016978,0.0000016936,0.0000016908,0.0000016881, +0.0000016847,0.0000016817,0.0000016814,0.0000016805,0.0000016791, +0.0000016798,0.0000017005,0.0000017466,0.0000017843,0.0000017936, +0.0000017966,0.0000018021,0.0000017991,0.0000017874,0.0000017761, +0.0000017651,0.0000017580,0.0000017544,0.0000017523,0.0000017532, +0.0000017604,0.0000017754,0.0000017846,0.0000017699,0.0000017410, +0.0000017286,0.0000017346,0.0000017552,0.0000017763,0.0000017849, +0.0000017879,0.0000018183,0.0000018867,0.0000019375,0.0000019420, +0.0000019523,0.0000019891,0.0000020102,0.0000020082,0.0000019959, +0.0000019819,0.0000019766,0.0000019651,0.0000019489,0.0000019495, +0.0000019527,0.0000019493,0.0000019495,0.0000019585,0.0000019656, +0.0000019624,0.0000019550,0.0000019529,0.0000019540,0.0000019549, +0.0000019545,0.0000019530,0.0000019528,0.0000019558,0.0000019597, +0.0000019568,0.0000019447,0.0000019317,0.0000019289,0.0000019418, +0.0000019661,0.0000019880,0.0000019978,0.0000019996,0.0000019992, +0.0000019973,0.0000019981,0.0000020030,0.0000020029,0.0000019970, +0.0000019911,0.0000019878,0.0000019932,0.0000020020,0.0000019990, +0.0000019889,0.0000019705,0.0000019538,0.0000019637,0.0000019948, +0.0000020167,0.0000020196,0.0000020147,0.0000020108,0.0000020110, +0.0000020135,0.0000020142,0.0000020147,0.0000020175,0.0000020222, +0.0000020265,0.0000020301,0.0000020326,0.0000020352,0.0000020349, +0.0000020273,0.0000020140,0.0000020038,0.0000019986,0.0000020027, +0.0000020109,0.0000020046,0.0000019402,0.0000018665,0.0000018377, +0.0000018181,0.0000018072,0.0000018429,0.0000018827,0.0000018664, +0.0000018395,0.0000018381,0.0000018368,0.0000018365,0.0000018478, +0.0000018426,0.0000018364,0.0000018523,0.0000018576,0.0000018271, +0.0000017984,0.0000018037,0.0000018280,0.0000018353,0.0000018226, +0.0000018096,0.0000018079,0.0000018719,0.0000018527,0.0000018736, +0.0000019070,0.0000019117,0.0000019221,0.0000019372,0.0000019396, +0.0000019284,0.0000019172,0.0000019194,0.0000019253,0.0000019123, +0.0000018928,0.0000018787,0.0000018612,0.0000018527,0.0000018553, +0.0000018651,0.0000018680,0.0000018533,0.0000018218,0.0000017959, +0.0000017880,0.0000017956,0.0000018128,0.0000018299,0.0000018349, +0.0000018296,0.0000018250,0.0000018232,0.0000018249,0.0000018252, +0.0000018197,0.0000018275,0.0000018756,0.0000019072,0.0000018780, +0.0000018035,0.0000017434,0.0000017199,0.0000017078,0.0000017002, +0.0000016978,0.0000016981,0.0000016956,0.0000016898,0.0000016794, +0.0000016681,0.0000016611,0.0000016565,0.0000016432,0.0000016286, +0.0000016197,0.0000016159,0.0000016137,0.0000016102,0.0000016059, +0.0000016027,0.0000016006,0.0000015989,0.0000015983,0.0000015976, +0.0000015962,0.0000015933,0.0000015897,0.0000015872,0.0000015861, +0.0000015862,0.0000015882,0.0000015883,0.0000015863,0.0000015838, +0.0000015823,0.0000015866,0.0000015992,0.0000016071,0.0000016192, +0.0000016366,0.0000016513,0.0000016560,0.0000016586,0.0000016617, +0.0000016612,0.0000016585,0.0000016569,0.0000016583,0.0000016622, +0.0000016658,0.0000016665,0.0000016633,0.0000016563,0.0000016480, +0.0000016415,0.0000016394,0.0000016418,0.0000016450,0.0000016456, +0.0000016437,0.0000016410,0.0000016381,0.0000016362,0.0000016335, +0.0000016307,0.0000016280,0.0000016281,0.0000016363,0.0000016536, +0.0000016835,0.0000017201,0.0000017639,0.0000017973,0.0000018189, +0.0000018221,0.0000017886,0.0000017305,0.0000017007,0.0000016979, +0.0000016977,0.0000017096,0.0000017452,0.0000017831,0.0000017942, +0.0000017696,0.0000017236,0.0000016944,0.0000016869,0.0000016815, +0.0000016687,0.0000016614,0.0000016767,0.0000017257,0.0000017814, +0.0000018207,0.0000018447,0.0000018561,0.0000018548,0.0000018335, +0.0000018039,0.0000017792,0.0000017633,0.0000017510,0.0000017436, +0.0000017429,0.0000017360,0.0000017351,0.0000017346,0.0000017335, +0.0000017341,0.0000017363,0.0000017387,0.0000017394,0.0000017393, +0.0000017377,0.0000017347,0.0000017312,0.0000017280,0.0000017259, +0.0000017277,0.0000017355,0.0000017452,0.0000017502,0.0000017550, +0.0000017665,0.0000017792,0.0000017881,0.0000017972,0.0000018054, +0.0000018072,0.0000017997,0.0000017894,0.0000017811,0.0000017761, +0.0000017754,0.0000017789,0.0000017864,0.0000017930,0.0000017951, +0.0000017924,0.0000017884,0.0000017873,0.0000017863,0.0000017820, +0.0000017769,0.0000017717,0.0000017646,0.0000017603,0.0000017692, +0.0000017907,0.0000017863,0.0000017387,0.0000017151,0.0000017754, +0.0000018599,0.0000018918,0.0000019098,0.0000019339,0.0000019528, +0.0000019668,0.0000019761,0.0000019814,0.0000019860,0.0000019923, +0.0000020000,0.0000020073,0.0000020130,0.0000020159,0.0000020154, +0.0000020145,0.0000020118,0.0000020085,0.0000020054,0.0000020020, +0.0000019986,0.0000019945,0.0000019895,0.0000019839,0.0000019792, +0.0000019754,0.0000019720,0.0000019691,0.0000019670,0.0000019658, +0.0000019658,0.0000019664,0.0000019670,0.0000019679,0.0000019707, +0.0000019739,0.0000019759,0.0000019760,0.0000019748,0.0000019727, +0.0000019703,0.0000019677,0.0000019655,0.0000019646,0.0000019657, +0.0000019684,0.0000019713,0.0000019739,0.0000019758,0.0000019767, +0.0000019770,0.0000019766,0.0000019739,0.0000019687,0.0000019643, +0.0000019665,0.0000019777,0.0000019888,0.0000019917,0.0000019901, +0.0000019857,0.0000019794,0.0000019739,0.0000019701,0.0000019672, +0.0000019641,0.0000019609,0.0000019574,0.0000019551,0.0000019548, +0.0000019542,0.0000019527,0.0000019428,0.0000019254,0.0000019265, +0.0000019377,0.0000019406,0.0000019370,0.0000019140,0.0000018890, +0.0000018843,0.0000018908,0.0000019041,0.0000019201,0.0000019308, +0.0000019333,0.0000019308,0.0000019284,0.0000019255,0.0000019236, +0.0000019220,0.0000019209,0.0000019200,0.0000019184,0.0000019170, +0.0000019172,0.0000019184,0.0000019197,0.0000019215,0.0000019241, +0.0000019271,0.0000019292,0.0000019300,0.0000019319,0.0000019330, +0.0000019329,0.0000019330,0.0000019332,0.0000019327,0.0000019318, +0.0000019312,0.0000019308,0.0000019295,0.0000019271,0.0000019246, +0.0000019232,0.0000019219,0.0000019196,0.0000019182,0.0000019172, +0.0000019172,0.0000019185,0.0000019200,0.0000019207,0.0000019195, +0.0000019155,0.0000019107,0.0000019075,0.0000019066,0.0000019055, +0.0000019036,0.0000019011,0.0000018994,0.0000018966,0.0000018923, +0.0000018893,0.0000018846,0.0000018771,0.0000018706,0.0000018695, +0.0000018728,0.0000018746,0.0000018746,0.0000018723,0.0000018681, +0.0000018635,0.0000018645,0.0000018651,0.0000018640,0.0000018582, +0.0000018492,0.0000018392,0.0000018346,0.0000018334,0.0000018351, +0.0000018500,0.0000018564,0.0000018528,0.0000018516,0.0000018548, +0.0000018580,0.0000018578,0.0000018586,0.0000018562,0.0000018499, +0.0000018444,0.0000018443,0.0000018477,0.0000018498,0.0000018495, +0.0000018470,0.0000018448,0.0000018436,0.0000018405,0.0000018315, +0.0000018166,0.0000017986,0.0000017807,0.0000017640,0.0000017493, +0.0000017391,0.0000017342,0.0000017317,0.0000017306,0.0000017325, +0.0000017379,0.0000017429,0.0000017417,0.0000017302,0.0000017123, +0.0000016992,0.0000016939,0.0000016914,0.0000016882,0.0000016832, +0.0000016803,0.0000016800,0.0000016774,0.0000016745,0.0000016766, +0.0000016845,0.0000016905,0.0000016910,0.0000016898,0.0000016913, +0.0000016930,0.0000016929,0.0000016921,0.0000016915,0.0000016878, +0.0000016778,0.0000016708,0.0000016677,0.0000016637,0.0000016629, +0.0000016656,0.0000016670,0.0000016591,0.0000016474,0.0000016459, +0.0000016546,0.0000016659,0.0000016733,0.0000016733,0.0000016652, +0.0000016565,0.0000016468,0.0000016367,0.0000016339,0.0000016317, +0.0000016290,0.0000016288,0.0000016272,0.0000016201,0.0000016149, +0.0000016172,0.0000016233,0.0000016211,0.0000016121,0.0000016059, +0.0000016066,0.0000016147,0.0000016202,0.0000016279,0.0000016431, +0.0000016557,0.0000016583,0.0000016594,0.0000016591,0.0000016569, +0.0000016526,0.0000016444,0.0000016419,0.0000016431,0.0000016441, +0.0000016444,0.0000016445,0.0000016442,0.0000016447,0.0000016462, +0.0000016481,0.0000016489,0.0000016498,0.0000016519,0.0000016532, +0.0000016520,0.0000016506,0.0000016510,0.0000016534,0.0000016557, +0.0000016591,0.0000016629,0.0000016663,0.0000016697,0.0000016734, +0.0000016764,0.0000016800,0.0000016896,0.0000017063,0.0000017252, +0.0000017445,0.0000017641,0.0000017777,0.0000017814,0.0000017783, +0.0000017746,0.0000017745,0.0000017782,0.0000017830,0.0000017868, +0.0000017891,0.0000017898,0.0000017910,0.0000017931,0.0000017949, +0.0000017958,0.0000017959,0.0000017940,0.0000017913,0.0000017895, +0.0000017869,0.0000017803,0.0000017725,0.0000017702,0.0000017735, +0.0000017772,0.0000017787,0.0000017787,0.0000017789,0.0000017771, +0.0000017731,0.0000017721,0.0000017667,0.0000017603,0.0000017592, +0.0000017496,0.0000017341,0.0000017419,0.0000017619,0.0000017649, +0.0000017638,0.0000017590,0.0000017564,0.0000017605,0.0000017695, +0.0000017727,0.0000017816,0.0000017995,0.0000018181,0.0000018320, +0.0000018349,0.0000018377,0.0000018398,0.0000018383,0.0000018364, +0.0000018380,0.0000018436,0.0000018466,0.0000018373,0.0000018114, +0.0000017892,0.0000017823,0.0000017821,0.0000017749,0.0000017543, +0.0000017314,0.0000017257,0.0000017366,0.0000017485,0.0000017494, +0.0000017418,0.0000017303,0.0000017216,0.0000017161,0.0000017115, +0.0000017082,0.0000017090,0.0000017130,0.0000017190,0.0000017267, +0.0000017359,0.0000017446,0.0000017517,0.0000017589,0.0000017614, +0.0000017585,0.0000017591,0.0000017666,0.0000017752,0.0000017844, +0.0000017923,0.0000017978,0.0000018115,0.0000018123,0.0000018044, +0.0000018061,0.0000017963,0.0000017520,0.0000017245,0.0000017385, +0.0000017427,0.0000017418,0.0000017546,0.0000017703,0.0000017734, +0.0000017696,0.0000017677,0.0000017694,0.0000017706,0.0000017680, +0.0000017516,0.0000017115,0.0000016633,0.0000016424,0.0000016491, +0.0000016754,0.0000017000,0.0000017140,0.0000017176,0.0000017172, +0.0000017156,0.0000017125,0.0000017070,0.0000016980,0.0000016853, +0.0000016706,0.0000016579,0.0000016510,0.0000016508,0.0000016555, +0.0000016617,0.0000016658,0.0000016680,0.0000016685,0.0000016690, +0.0000016714,0.0000016760,0.0000016810,0.0000016839,0.0000016851, +0.0000016863,0.0000016851,0.0000016828,0.0000016896,0.0000017236, +0.0000017689,0.0000017920,0.0000017956,0.0000018007,0.0000018023, +0.0000017943,0.0000017824,0.0000017706,0.0000017612,0.0000017574, +0.0000017560,0.0000017555,0.0000017573,0.0000017670,0.0000017812, +0.0000017819,0.0000017578,0.0000017294,0.0000017224,0.0000017305, +0.0000017550,0.0000017785,0.0000017850,0.0000017885,0.0000018248, +0.0000018954,0.0000019391,0.0000019390,0.0000019506,0.0000019924, +0.0000020156,0.0000020109,0.0000019949,0.0000019842,0.0000019790, +0.0000019647,0.0000019502,0.0000019516,0.0000019543,0.0000019510, +0.0000019516,0.0000019624,0.0000019693,0.0000019660,0.0000019615, +0.0000019625,0.0000019640,0.0000019633,0.0000019607,0.0000019587, +0.0000019591,0.0000019619,0.0000019626,0.0000019560,0.0000019431, +0.0000019325,0.0000019342,0.0000019525,0.0000019780,0.0000019942, +0.0000019989,0.0000020007,0.0000020016,0.0000020004,0.0000019997, +0.0000019993,0.0000019978,0.0000019967,0.0000019928,0.0000019902, +0.0000019991,0.0000020042,0.0000019986,0.0000019905,0.0000019743, +0.0000019596,0.0000019677,0.0000019966,0.0000020183,0.0000020221, +0.0000020202,0.0000020176,0.0000020160,0.0000020149,0.0000020147, +0.0000020175,0.0000020227,0.0000020276,0.0000020313,0.0000020333, +0.0000020366,0.0000020378,0.0000020327,0.0000020209,0.0000020104, +0.0000020003,0.0000019989,0.0000020063,0.0000020025,0.0000019398, +0.0000018649,0.0000018360,0.0000018219,0.0000018032,0.0000018230, +0.0000018774,0.0000018814,0.0000018494,0.0000018349,0.0000018258, +0.0000018234,0.0000018415,0.0000018454,0.0000018346,0.0000018416, +0.0000018592,0.0000018472,0.0000018102,0.0000017984,0.0000018154, +0.0000018350,0.0000018284,0.0000018117,0.0000018060,0.0000018491, +0.0000018609,0.0000018711,0.0000019060,0.0000019148,0.0000019295, +0.0000019503,0.0000019524,0.0000019489,0.0000019339,0.0000019215, +0.0000019241,0.0000019293,0.0000019117,0.0000018911,0.0000018835, +0.0000018783,0.0000018780,0.0000018766,0.0000018621,0.0000018232, +0.0000017839,0.0000017729,0.0000017801,0.0000017915,0.0000017930, +0.0000017948,0.0000018069,0.0000018159,0.0000018267,0.0000018300, +0.0000018250,0.0000018149,0.0000018217,0.0000018662,0.0000019011, +0.0000018830,0.0000018083,0.0000017425,0.0000017188,0.0000017061, +0.0000016984,0.0000016977,0.0000016997,0.0000016976,0.0000016939, +0.0000016863,0.0000016746,0.0000016631,0.0000016576,0.0000016452, +0.0000016287,0.0000016195,0.0000016162,0.0000016124,0.0000016053, +0.0000015972,0.0000015920,0.0000015904,0.0000015907,0.0000015924, +0.0000015943,0.0000015960,0.0000015962,0.0000015939,0.0000015904, +0.0000015882,0.0000015878,0.0000015894,0.0000015938,0.0000015977, +0.0000015981,0.0000015942,0.0000015863,0.0000015800,0.0000015812, +0.0000015934,0.0000016038,0.0000016198,0.0000016387,0.0000016512, +0.0000016556,0.0000016603,0.0000016628,0.0000016612,0.0000016569, +0.0000016532,0.0000016528,0.0000016551,0.0000016561,0.0000016535, +0.0000016491,0.0000016450,0.0000016426,0.0000016416,0.0000016415, +0.0000016416,0.0000016410,0.0000016396,0.0000016374,0.0000016342, +0.0000016301,0.0000016255,0.0000016213,0.0000016185,0.0000016204, +0.0000016354,0.0000016654,0.0000016988,0.0000017301,0.0000017612, +0.0000017889,0.0000018116,0.0000018231,0.0000018060,0.0000017505, +0.0000017073,0.0000017002,0.0000017022,0.0000017217,0.0000017564, +0.0000017866,0.0000017978,0.0000017838,0.0000017382,0.0000017018, +0.0000016883,0.0000016805,0.0000016692,0.0000016575,0.0000016589, +0.0000016900,0.0000017447,0.0000017936,0.0000018254,0.0000018469, +0.0000018584,0.0000018567,0.0000018441,0.0000018258,0.0000018048, +0.0000017881,0.0000017746,0.0000017639,0.0000017543,0.0000017470, +0.0000017413,0.0000017363,0.0000017344,0.0000017349,0.0000017367, +0.0000017369,0.0000017331,0.0000017276,0.0000017242,0.0000017193, +0.0000017076,0.0000016981,0.0000017014,0.0000017199,0.0000017371, +0.0000017429,0.0000017506,0.0000017668,0.0000017791,0.0000017834, +0.0000017915,0.0000018042,0.0000018099,0.0000018093,0.0000018038, +0.0000017994,0.0000017973,0.0000017985,0.0000018032,0.0000018087, +0.0000018129,0.0000018131,0.0000018095,0.0000018058,0.0000018039, +0.0000017996,0.0000017915,0.0000017834,0.0000017743,0.0000017635, +0.0000017586,0.0000017694,0.0000017906,0.0000017826,0.0000017338, +0.0000017093,0.0000017672,0.0000018524,0.0000018873,0.0000019070, +0.0000019319,0.0000019500,0.0000019621,0.0000019708,0.0000019760, +0.0000019793,0.0000019830,0.0000019883,0.0000019950,0.0000020021, +0.0000020080,0.0000020118,0.0000020136,0.0000020135,0.0000020126, +0.0000020112,0.0000020087,0.0000020072,0.0000020050,0.0000020023, +0.0000019983,0.0000019948,0.0000019917,0.0000019884,0.0000019847, +0.0000019809,0.0000019771,0.0000019739,0.0000019712,0.0000019688, +0.0000019674,0.0000019679,0.0000019700,0.0000019718,0.0000019733, +0.0000019739,0.0000019737,0.0000019726,0.0000019709,0.0000019689, +0.0000019686,0.0000019705,0.0000019732,0.0000019756,0.0000019778, +0.0000019802,0.0000019821,0.0000019823,0.0000019807,0.0000019770, +0.0000019726,0.0000019726,0.0000019817,0.0000019935,0.0000019982, +0.0000019973,0.0000019931,0.0000019870,0.0000019801,0.0000019745, +0.0000019706,0.0000019685,0.0000019675,0.0000019677,0.0000019677, +0.0000019670,0.0000019648,0.0000019613,0.0000019538,0.0000019342, +0.0000019260,0.0000019350,0.0000019420,0.0000019371,0.0000018921, +0.0000018452,0.0000018337,0.0000018366,0.0000018439,0.0000018578, +0.0000018809,0.0000019068,0.0000019227,0.0000019293,0.0000019298, +0.0000019259,0.0000019214,0.0000019177,0.0000019143,0.0000019101, +0.0000019071,0.0000019064,0.0000019067,0.0000019072,0.0000019082, +0.0000019114,0.0000019161,0.0000019198,0.0000019231,0.0000019278, +0.0000019330,0.0000019366,0.0000019405,0.0000019427,0.0000019425, +0.0000019411,0.0000019412,0.0000019391,0.0000019361,0.0000019317, +0.0000019267,0.0000019232,0.0000019211,0.0000019202,0.0000019199, +0.0000019199,0.0000019209,0.0000019227,0.0000019235,0.0000019228, +0.0000019198,0.0000019150,0.0000019113,0.0000019096,0.0000019101, +0.0000019114,0.0000019120,0.0000019127,0.0000019124,0.0000019096, +0.0000019047,0.0000018993,0.0000018918,0.0000018827,0.0000018758, +0.0000018749,0.0000018749,0.0000018750,0.0000018747,0.0000018718, +0.0000018694,0.0000018664,0.0000018682,0.0000018671,0.0000018649, +0.0000018592,0.0000018529,0.0000018450,0.0000018401,0.0000018380, +0.0000018363,0.0000018486,0.0000018560,0.0000018517,0.0000018509, +0.0000018539,0.0000018563,0.0000018591,0.0000018640,0.0000018649, +0.0000018603,0.0000018552,0.0000018537,0.0000018553,0.0000018584, +0.0000018596,0.0000018568,0.0000018514,0.0000018468,0.0000018426, +0.0000018354,0.0000018227,0.0000018055,0.0000017876,0.0000017725, +0.0000017619,0.0000017546,0.0000017475,0.0000017407,0.0000017363, +0.0000017360,0.0000017401,0.0000017454,0.0000017457,0.0000017344, +0.0000017145,0.0000017000,0.0000016959,0.0000016946,0.0000016904, +0.0000016849,0.0000016827,0.0000016807,0.0000016762,0.0000016754, +0.0000016815,0.0000016899,0.0000016927,0.0000016915,0.0000016907, +0.0000016923,0.0000016931,0.0000016928,0.0000016931,0.0000016926, +0.0000016864,0.0000016752,0.0000016689,0.0000016651,0.0000016614, +0.0000016616,0.0000016634,0.0000016616,0.0000016514,0.0000016440, +0.0000016472,0.0000016576,0.0000016676,0.0000016730,0.0000016702, +0.0000016609,0.0000016519,0.0000016420,0.0000016361,0.0000016335, +0.0000016303,0.0000016291,0.0000016281,0.0000016240,0.0000016170, +0.0000016159,0.0000016224,0.0000016257,0.0000016173,0.0000016079, +0.0000016045,0.0000016094,0.0000016177,0.0000016234,0.0000016353, +0.0000016512,0.0000016587,0.0000016596,0.0000016605,0.0000016592, +0.0000016562,0.0000016477,0.0000016422,0.0000016437,0.0000016456, +0.0000016457,0.0000016451,0.0000016434,0.0000016407,0.0000016391, +0.0000016401,0.0000016425,0.0000016441,0.0000016454,0.0000016484, +0.0000016504,0.0000016490,0.0000016466,0.0000016455,0.0000016458, +0.0000016483,0.0000016534,0.0000016589,0.0000016635,0.0000016677, +0.0000016717,0.0000016748,0.0000016801,0.0000016924,0.0000017087, +0.0000017241,0.0000017414,0.0000017618,0.0000017773,0.0000017817, +0.0000017794,0.0000017771,0.0000017787,0.0000017829,0.0000017868, +0.0000017857,0.0000017869,0.0000017891,0.0000017925,0.0000017950, +0.0000017963,0.0000017963,0.0000017937,0.0000017892,0.0000017839, +0.0000017760,0.0000017681,0.0000017663,0.0000017706,0.0000017760, +0.0000017778,0.0000017782,0.0000017785,0.0000017794,0.0000017782, +0.0000017729,0.0000017709,0.0000017667,0.0000017596,0.0000017581, +0.0000017495,0.0000017322,0.0000017361,0.0000017588,0.0000017642, +0.0000017627,0.0000017578,0.0000017554,0.0000017598,0.0000017689, +0.0000017725,0.0000017809,0.0000017989,0.0000018168,0.0000018309, +0.0000018329,0.0000018337,0.0000018356,0.0000018363,0.0000018376, +0.0000018433,0.0000018495,0.0000018465,0.0000018277,0.0000018036, +0.0000017899,0.0000017872,0.0000017829,0.0000017645,0.0000017365, +0.0000017240,0.0000017317,0.0000017478,0.0000017502,0.0000017404, +0.0000017233,0.0000017124,0.0000017093,0.0000017071,0.0000017040, +0.0000017033,0.0000017073,0.0000017130,0.0000017198,0.0000017275, +0.0000017368,0.0000017455,0.0000017514,0.0000017590,0.0000017635, +0.0000017620,0.0000017627,0.0000017700,0.0000017787,0.0000017881, +0.0000017937,0.0000018005,0.0000018140,0.0000018119,0.0000018057, +0.0000018084,0.0000017891,0.0000017413,0.0000017302,0.0000017418, +0.0000017401,0.0000017462,0.0000017652,0.0000017758,0.0000017759, +0.0000017752,0.0000017764,0.0000017768,0.0000017741,0.0000017553, +0.0000017105,0.0000016603,0.0000016426,0.0000016535,0.0000016807, +0.0000017030,0.0000017152,0.0000017186,0.0000017198,0.0000017205, +0.0000017196,0.0000017165,0.0000017110,0.0000017032,0.0000016930, +0.0000016813,0.0000016698,0.0000016607,0.0000016555,0.0000016559, +0.0000016568,0.0000016593,0.0000016628,0.0000016658,0.0000016713, +0.0000016785,0.0000016850,0.0000016895,0.0000016920,0.0000016918, +0.0000016877,0.0000016863,0.0000017057,0.0000017482,0.0000017840, +0.0000017952,0.0000017985,0.0000018025,0.0000017995,0.0000017892, +0.0000017765,0.0000017648,0.0000017595,0.0000017587,0.0000017583, +0.0000017580,0.0000017606,0.0000017726,0.0000017826,0.0000017749, +0.0000017452,0.0000017202,0.0000017152,0.0000017273,0.0000017569, +0.0000017805,0.0000017849,0.0000017890,0.0000018301,0.0000019019, +0.0000019389,0.0000019357,0.0000019469,0.0000019904,0.0000020189, +0.0000020127,0.0000019950,0.0000019867,0.0000019819,0.0000019662, +0.0000019528,0.0000019535,0.0000019557,0.0000019532,0.0000019537, +0.0000019655,0.0000019745,0.0000019732,0.0000019719,0.0000019744, +0.0000019750,0.0000019727,0.0000019698,0.0000019683,0.0000019678, +0.0000019669,0.0000019626,0.0000019535,0.0000019431,0.0000019395, +0.0000019499,0.0000019714,0.0000019890,0.0000019951,0.0000019975, +0.0000020024,0.0000020058,0.0000020052,0.0000020028,0.0000020003, +0.0000019999,0.0000019998,0.0000019949,0.0000019943,0.0000020039, +0.0000020058,0.0000019993,0.0000019934,0.0000019783,0.0000019649, +0.0000019727,0.0000020000,0.0000020211,0.0000020258,0.0000020251, +0.0000020225,0.0000020193,0.0000020177,0.0000020202,0.0000020255, +0.0000020303,0.0000020329,0.0000020336,0.0000020369,0.0000020400, +0.0000020364,0.0000020268,0.0000020182,0.0000020055,0.0000020003, +0.0000020030,0.0000020000,0.0000019388,0.0000018639,0.0000018340, +0.0000018234,0.0000018079,0.0000018100,0.0000018657,0.0000018898, +0.0000018624,0.0000018403,0.0000018310,0.0000018214,0.0000018376, +0.0000018487,0.0000018342,0.0000018331,0.0000018523,0.0000018595, +0.0000018298,0.0000018014,0.0000018048,0.0000018278,0.0000018329, +0.0000018179,0.0000018052,0.0000018231,0.0000018721,0.0000018638, +0.0000019063,0.0000019179,0.0000019360,0.0000019534,0.0000019467, +0.0000019487,0.0000019504,0.0000019426,0.0000019317,0.0000019358, +0.0000019399,0.0000019191,0.0000018977,0.0000018907,0.0000018851, +0.0000018726,0.0000018401,0.0000017952,0.0000017768,0.0000018000, +0.0000018404,0.0000018669,0.0000018727,0.0000018635,0.0000018423, +0.0000018213,0.0000018085,0.0000018041,0.0000018071,0.0000018276, +0.0000018735,0.0000019068,0.0000018923,0.0000018233,0.0000017469, +0.0000017164,0.0000017030,0.0000016957,0.0000016963,0.0000016993, +0.0000016979,0.0000016959,0.0000016914,0.0000016810,0.0000016663, +0.0000016575,0.0000016471,0.0000016297,0.0000016188,0.0000016156, +0.0000016108,0.0000016007,0.0000015899,0.0000015839,0.0000015857, +0.0000015884,0.0000015939,0.0000015984,0.0000016028,0.0000016062, +0.0000016057,0.0000016015,0.0000015956,0.0000015916,0.0000015903, +0.0000015925,0.0000015989,0.0000016048,0.0000016073,0.0000016070, +0.0000016013,0.0000015903,0.0000015792,0.0000015755,0.0000015862, +0.0000016001,0.0000016204,0.0000016397,0.0000016509,0.0000016572, +0.0000016624,0.0000016631,0.0000016603,0.0000016526,0.0000016456, +0.0000016434,0.0000016446,0.0000016459,0.0000016458,0.0000016450, +0.0000016436,0.0000016421,0.0000016395,0.0000016374,0.0000016356, +0.0000016340,0.0000016319,0.0000016287,0.0000016252,0.0000016215, +0.0000016165,0.0000016115,0.0000016112,0.0000016246,0.0000016647, +0.0000017134,0.0000017499,0.0000017715,0.0000017873,0.0000018046, +0.0000018221,0.0000018177,0.0000017699,0.0000017167,0.0000017023, +0.0000017066,0.0000017295,0.0000017589,0.0000017817,0.0000017954, +0.0000017846,0.0000017431,0.0000017072,0.0000016932,0.0000016839, +0.0000016714,0.0000016579,0.0000016514,0.0000016598,0.0000016986, +0.0000017498,0.0000017921,0.0000018209,0.0000018403,0.0000018523, +0.0000018585,0.0000018579,0.0000018529,0.0000018448,0.0000018384, +0.0000018294,0.0000018176,0.0000018084,0.0000018035,0.0000018009, +0.0000018008,0.0000018014,0.0000017944,0.0000017738,0.0000017497, +0.0000017323,0.0000017231,0.0000017115,0.0000016977,0.0000016912, +0.0000017053,0.0000017267,0.0000017382,0.0000017429,0.0000017537, +0.0000017684,0.0000017748,0.0000017771,0.0000017864,0.0000017999, +0.0000018070,0.0000018075,0.0000018071,0.0000018081,0.0000018099, +0.0000018129,0.0000018163,0.0000018180,0.0000018190,0.0000018175, +0.0000018152,0.0000018144,0.0000018131,0.0000018076,0.0000017984, +0.0000017881,0.0000017748,0.0000017614,0.0000017592,0.0000017736, +0.0000017875,0.0000017730,0.0000017201,0.0000017038,0.0000017681, +0.0000018514,0.0000018863,0.0000019071,0.0000019319,0.0000019489, +0.0000019588,0.0000019659,0.0000019706,0.0000019736,0.0000019765, +0.0000019804,0.0000019859,0.0000019924,0.0000019986,0.0000020033, +0.0000020059,0.0000020065,0.0000020061,0.0000020052,0.0000020043, +0.0000020036,0.0000020032,0.0000020027,0.0000020015,0.0000020016, +0.0000020012,0.0000020010,0.0000020007,0.0000019991,0.0000019966, +0.0000019933,0.0000019896,0.0000019852,0.0000019803,0.0000019762, +0.0000019737,0.0000019727,0.0000019734,0.0000019743,0.0000019747, +0.0000019746,0.0000019738,0.0000019732,0.0000019741,0.0000019769, +0.0000019799,0.0000019817,0.0000019828,0.0000019844,0.0000019856, +0.0000019855,0.0000019836,0.0000019800,0.0000019786,0.0000019840, +0.0000019952,0.0000020023,0.0000020028,0.0000019993,0.0000019936, +0.0000019875,0.0000019816,0.0000019760,0.0000019723,0.0000019707, +0.0000019710,0.0000019730,0.0000019751,0.0000019749,0.0000019711, +0.0000019644,0.0000019460,0.0000019276,0.0000019321,0.0000019434, +0.0000019407,0.0000018853,0.0000018319,0.0000018202,0.0000018172, +0.0000018046,0.0000017847,0.0000017863,0.0000018163,0.0000018647, +0.0000019095,0.0000019335,0.0000019371,0.0000019304,0.0000019204, +0.0000019102,0.0000019006,0.0000018954,0.0000018936,0.0000018920, +0.0000018904,0.0000018873,0.0000018846,0.0000018858,0.0000018869, +0.0000018867,0.0000018887,0.0000018948,0.0000019046,0.0000019156, +0.0000019255,0.0000019319,0.0000019370,0.0000019421,0.0000019440, +0.0000019443,0.0000019409,0.0000019360,0.0000019328,0.0000019310, +0.0000019305,0.0000019303,0.0000019299,0.0000019304,0.0000019305, +0.0000019293,0.0000019267,0.0000019221,0.0000019168,0.0000019132, +0.0000019112,0.0000019112,0.0000019121,0.0000019136,0.0000019158, +0.0000019162,0.0000019154,0.0000019127,0.0000019065,0.0000018975, +0.0000018881,0.0000018828,0.0000018833,0.0000018821,0.0000018792, +0.0000018767,0.0000018727,0.0000018718,0.0000018709,0.0000018716, +0.0000018693,0.0000018649,0.0000018601,0.0000018578,0.0000018514, +0.0000018466,0.0000018447,0.0000018417,0.0000018477,0.0000018537, +0.0000018499,0.0000018491,0.0000018518,0.0000018543,0.0000018610, +0.0000018703,0.0000018748,0.0000018737,0.0000018689,0.0000018656, +0.0000018668,0.0000018717,0.0000018736,0.0000018697,0.0000018610, +0.0000018518,0.0000018438,0.0000018355,0.0000018248,0.0000018112, +0.0000017961,0.0000017844,0.0000017782,0.0000017718,0.0000017611, +0.0000017496,0.0000017419,0.0000017395,0.0000017415,0.0000017466, +0.0000017471,0.0000017363,0.0000017165,0.0000017025,0.0000016993, +0.0000016977,0.0000016924,0.0000016870,0.0000016842,0.0000016798, +0.0000016766,0.0000016790,0.0000016877,0.0000016938,0.0000016939, +0.0000016924,0.0000016922,0.0000016933,0.0000016932,0.0000016932, +0.0000016942,0.0000016929,0.0000016838,0.0000016726,0.0000016674, +0.0000016631,0.0000016600,0.0000016597,0.0000016597,0.0000016547, +0.0000016453,0.0000016430,0.0000016502,0.0000016607,0.0000016690, +0.0000016716,0.0000016659,0.0000016561,0.0000016472,0.0000016402, +0.0000016362,0.0000016323,0.0000016302,0.0000016285,0.0000016263, +0.0000016212,0.0000016171,0.0000016198,0.0000016266,0.0000016235, +0.0000016116,0.0000016044,0.0000016044,0.0000016129,0.0000016204, +0.0000016287,0.0000016439,0.0000016569,0.0000016602,0.0000016613, +0.0000016614,0.0000016595,0.0000016530,0.0000016440,0.0000016432, +0.0000016450,0.0000016448,0.0000016440,0.0000016431,0.0000016407, +0.0000016363,0.0000016325,0.0000016319,0.0000016339,0.0000016372, +0.0000016407,0.0000016443,0.0000016463,0.0000016455,0.0000016427, +0.0000016399,0.0000016389,0.0000016422,0.0000016480,0.0000016537, +0.0000016579,0.0000016624,0.0000016675,0.0000016728,0.0000016819, +0.0000016967,0.0000017115,0.0000017235,0.0000017385,0.0000017583, +0.0000017750,0.0000017803,0.0000017797,0.0000017795,0.0000017812, +0.0000017837,0.0000017811,0.0000017821,0.0000017852,0.0000017896, +0.0000017933,0.0000017952,0.0000017943,0.0000017890,0.0000017808, +0.0000017715,0.0000017639,0.0000017631,0.0000017682,0.0000017751, +0.0000017779,0.0000017773,0.0000017770,0.0000017778,0.0000017793, +0.0000017786,0.0000017720,0.0000017694,0.0000017661,0.0000017587, +0.0000017565,0.0000017486,0.0000017288,0.0000017297,0.0000017545, +0.0000017631,0.0000017613,0.0000017562,0.0000017549,0.0000017594, +0.0000017680,0.0000017725,0.0000017808,0.0000017986,0.0000018154, +0.0000018295,0.0000018321,0.0000018327,0.0000018356,0.0000018386, +0.0000018430,0.0000018493,0.0000018513,0.0000018430,0.0000018241, +0.0000018047,0.0000017935,0.0000017900,0.0000017798,0.0000017530, +0.0000017252,0.0000017225,0.0000017383,0.0000017495,0.0000017431, +0.0000017225,0.0000017079,0.0000017037,0.0000017021,0.0000017008, +0.0000017015,0.0000017052,0.0000017114,0.0000017181,0.0000017243, +0.0000017307,0.0000017395,0.0000017480,0.0000017525,0.0000017588, +0.0000017649,0.0000017656,0.0000017660,0.0000017727,0.0000017817, +0.0000017911,0.0000017949,0.0000018045,0.0000018180,0.0000018109, +0.0000018076,0.0000018077,0.0000017790,0.0000017363,0.0000017354, +0.0000017417,0.0000017399,0.0000017557,0.0000017741,0.0000017782, +0.0000017785,0.0000017805,0.0000017818,0.0000017803,0.0000017611, +0.0000017145,0.0000016629,0.0000016431,0.0000016528,0.0000016784, +0.0000016989,0.0000017120,0.0000017168,0.0000017188,0.0000017229, +0.0000017254,0.0000017243,0.0000017199,0.0000017122,0.0000017022, +0.0000016925,0.0000016846,0.0000016782,0.0000016724,0.0000016681, +0.0000016665,0.0000016674,0.0000016703,0.0000016743,0.0000016796, +0.0000016862,0.0000016922,0.0000016958,0.0000016969,0.0000016943, +0.0000016906,0.0000016963,0.0000017273,0.0000017688,0.0000017920, +0.0000017974,0.0000018011,0.0000018016,0.0000017946,0.0000017836, +0.0000017705,0.0000017615,0.0000017601,0.0000017604,0.0000017592, +0.0000017584,0.0000017634,0.0000017780,0.0000017835,0.0000017651, +0.0000017325,0.0000017115,0.0000017094,0.0000017270,0.0000017601, +0.0000017819,0.0000017846,0.0000017892,0.0000018334,0.0000019055, +0.0000019379,0.0000019327,0.0000019410,0.0000019851,0.0000020193, +0.0000020143,0.0000019959,0.0000019890,0.0000019850,0.0000019687, +0.0000019553,0.0000019554,0.0000019585,0.0000019560,0.0000019548, +0.0000019662,0.0000019792,0.0000019818,0.0000019826,0.0000019849, +0.0000019846,0.0000019817,0.0000019789,0.0000019767,0.0000019736, +0.0000019683,0.0000019603,0.0000019519,0.0000019482,0.0000019524, +0.0000019681,0.0000019847,0.0000019922,0.0000019940,0.0000019977, +0.0000020047,0.0000020103,0.0000020115,0.0000020093,0.0000020060, +0.0000020053,0.0000020041,0.0000019982,0.0000019993,0.0000020075, +0.0000020063,0.0000020008,0.0000019959,0.0000019803,0.0000019677, +0.0000019779,0.0000020046,0.0000020237,0.0000020289,0.0000020287, +0.0000020257,0.0000020233,0.0000020246,0.0000020288,0.0000020326, +0.0000020343,0.0000020337,0.0000020363,0.0000020408,0.0000020386, +0.0000020313,0.0000020250,0.0000020122,0.0000020035,0.0000020036, +0.0000019983,0.0000019379,0.0000018644,0.0000018339,0.0000018246, +0.0000018098,0.0000018090,0.0000018522,0.0000018975,0.0000018787, +0.0000018454,0.0000018385,0.0000018362,0.0000018449,0.0000018506, +0.0000018364,0.0000018295,0.0000018411,0.0000018606,0.0000018499, +0.0000018137,0.0000018018,0.0000018157,0.0000018347,0.0000018251, +0.0000018067,0.0000018052,0.0000018791,0.0000018548,0.0000019055, +0.0000019208,0.0000019398,0.0000019423,0.0000019062,0.0000019039, +0.0000019333,0.0000019555,0.0000019565,0.0000019507,0.0000019594, +0.0000019629,0.0000019450,0.0000019218,0.0000018977,0.0000018641, +0.0000018172,0.0000017879,0.0000018030,0.0000018540,0.0000018966, +0.0000019092,0.0000019095,0.0000019092,0.0000019074,0.0000019035, +0.0000018984,0.0000018952,0.0000018946,0.0000019012,0.0000019075, +0.0000018941,0.0000018353,0.0000017590,0.0000017197,0.0000017035, +0.0000016934,0.0000016936,0.0000016979,0.0000016973,0.0000016958, +0.0000016935,0.0000016846,0.0000016693,0.0000016555,0.0000016466, +0.0000016311,0.0000016180,0.0000016136,0.0000016093,0.0000015970, +0.0000015851,0.0000015821,0.0000015839,0.0000015908,0.0000015980, +0.0000016037,0.0000016068,0.0000016098,0.0000016097,0.0000016086, +0.0000016028,0.0000015963,0.0000015924,0.0000015906,0.0000015936, +0.0000016007,0.0000016061,0.0000016080,0.0000016084,0.0000016074, +0.0000016025,0.0000015926,0.0000015774,0.0000015685,0.0000015803, +0.0000015995,0.0000016219,0.0000016402,0.0000016499,0.0000016571, +0.0000016627,0.0000016632,0.0000016584,0.0000016479,0.0000016407, +0.0000016393,0.0000016413,0.0000016445,0.0000016462,0.0000016470, +0.0000016461,0.0000016430,0.0000016386,0.0000016352,0.0000016326, +0.0000016299,0.0000016272,0.0000016249,0.0000016231,0.0000016197, +0.0000016136,0.0000016087,0.0000016096,0.0000016402,0.0000017016, +0.0000017544,0.0000017797,0.0000017870,0.0000017976,0.0000018183, +0.0000018248,0.0000017865,0.0000017271,0.0000017034,0.0000017088, +0.0000017322,0.0000017569,0.0000017754,0.0000017883,0.0000017770, +0.0000017376,0.0000017071,0.0000016978,0.0000016895,0.0000016768, +0.0000016634,0.0000016512,0.0000016470,0.0000016591,0.0000016936, +0.0000017385,0.0000017778,0.0000018064,0.0000018266,0.0000018405, +0.0000018508,0.0000018560,0.0000018593,0.0000018632,0.0000018584, +0.0000018609,0.0000018630,0.0000018666,0.0000018684,0.0000018679, +0.0000018572,0.0000018188,0.0000017755,0.0000017402,0.0000017227, +0.0000017133,0.0000017051,0.0000017058,0.0000017162,0.0000017302, +0.0000017383,0.0000017408,0.0000017470,0.0000017587,0.0000017667, +0.0000017685,0.0000017716,0.0000017806,0.0000017907,0.0000017965, +0.0000018000,0.0000018043,0.0000018088,0.0000018121,0.0000018152, +0.0000018165,0.0000018162,0.0000018152,0.0000018142,0.0000018150, +0.0000018161,0.0000018157,0.0000018104,0.0000018009,0.0000017869, +0.0000017716,0.0000017612,0.0000017653,0.0000017815,0.0000017869, +0.0000017547,0.0000017028,0.0000017081,0.0000017849,0.0000018609, +0.0000018919,0.0000019122,0.0000019352,0.0000019498,0.0000019574, +0.0000019626,0.0000019662,0.0000019688,0.0000019714,0.0000019748, +0.0000019794,0.0000019850,0.0000019904,0.0000019941,0.0000019958, +0.0000019959,0.0000019952,0.0000019942,0.0000019933,0.0000019929, +0.0000019929,0.0000019938,0.0000019949,0.0000019961,0.0000019975, +0.0000019991,0.0000020012,0.0000020035,0.0000020054,0.0000020066, +0.0000020075,0.0000020080,0.0000020064,0.0000020019,0.0000019956, +0.0000019885,0.0000019832,0.0000019803,0.0000019780,0.0000019759, +0.0000019749,0.0000019757,0.0000019780,0.0000019811,0.0000019840, +0.0000019856,0.0000019864,0.0000019872,0.0000019881,0.0000019885, +0.0000019871,0.0000019850,0.0000019876,0.0000019968,0.0000020052, +0.0000020081,0.0000020065,0.0000020005,0.0000019945,0.0000019897, +0.0000019839,0.0000019784,0.0000019750,0.0000019736,0.0000019735, +0.0000019762,0.0000019792,0.0000019792,0.0000019745,0.0000019588, +0.0000019335,0.0000019296,0.0000019429,0.0000019471,0.0000018950, +0.0000018379,0.0000018205,0.0000018091,0.0000017756,0.0000017284, +0.0000017079,0.0000017259,0.0000017904,0.0000018683,0.0000019257, +0.0000019483,0.0000019496,0.0000019409,0.0000019276,0.0000019166, +0.0000019113,0.0000019084,0.0000019043,0.0000018974,0.0000018903, +0.0000018842,0.0000018792,0.0000018748,0.0000018669,0.0000018599, +0.0000018590,0.0000018634,0.0000018703,0.0000018775,0.0000018855, +0.0000018945,0.0000019044,0.0000019149,0.0000019236,0.0000019293, +0.0000019312,0.0000019340,0.0000019367,0.0000019380,0.0000019379, +0.0000019374,0.0000019377,0.0000019372,0.0000019355,0.0000019324, +0.0000019286,0.0000019238,0.0000019207,0.0000019186,0.0000019172, +0.0000019163,0.0000019166,0.0000019169,0.0000019162,0.0000019152, +0.0000019127,0.0000019075,0.0000018998,0.0000018923,0.0000018891, +0.0000018892,0.0000018890,0.0000018856,0.0000018815,0.0000018768, +0.0000018758,0.0000018755,0.0000018746,0.0000018700,0.0000018647, +0.0000018615,0.0000018621,0.0000018580,0.0000018519,0.0000018510, +0.0000018482,0.0000018486,0.0000018506,0.0000018470,0.0000018460, +0.0000018484,0.0000018521,0.0000018626,0.0000018769,0.0000018859, +0.0000018854,0.0000018803,0.0000018767,0.0000018782,0.0000018828, +0.0000018844,0.0000018810,0.0000018724,0.0000018614,0.0000018493, +0.0000018361,0.0000018240,0.0000018144,0.0000018060,0.0000017986, +0.0000017924,0.0000017839,0.0000017705,0.0000017558,0.0000017452, +0.0000017412,0.0000017422,0.0000017475,0.0000017486,0.0000017379, +0.0000017183,0.0000017054,0.0000017029,0.0000017003,0.0000016942, +0.0000016890,0.0000016846,0.0000016797,0.0000016794,0.0000016854, +0.0000016930,0.0000016955,0.0000016954,0.0000016949,0.0000016949, +0.0000016949,0.0000016940,0.0000016942,0.0000016951,0.0000016919, +0.0000016806,0.0000016705,0.0000016661,0.0000016617,0.0000016583, +0.0000016567,0.0000016551,0.0000016482,0.0000016417,0.0000016442, +0.0000016539,0.0000016631,0.0000016694,0.0000016690,0.0000016610, +0.0000016514,0.0000016445,0.0000016401,0.0000016358,0.0000016321, +0.0000016295,0.0000016271,0.0000016246,0.0000016202,0.0000016186, +0.0000016245,0.0000016277,0.0000016178,0.0000016064,0.0000016024, +0.0000016062,0.0000016161,0.0000016238,0.0000016357,0.0000016514, +0.0000016598,0.0000016616,0.0000016630,0.0000016627,0.0000016588, +0.0000016492,0.0000016434,0.0000016440,0.0000016434,0.0000016414, +0.0000016407,0.0000016404,0.0000016375,0.0000016323,0.0000016273, +0.0000016239,0.0000016250,0.0000016295,0.0000016348,0.0000016388, +0.0000016403,0.0000016395,0.0000016375,0.0000016353,0.0000016343, +0.0000016372,0.0000016420,0.0000016461,0.0000016507,0.0000016587, +0.0000016677,0.0000016761,0.0000016877,0.0000017025,0.0000017136, +0.0000017212,0.0000017338,0.0000017534,0.0000017703,0.0000017788, +0.0000017800,0.0000017803,0.0000017806,0.0000017782,0.0000017778, +0.0000017801,0.0000017834,0.0000017866,0.0000017877,0.0000017846, +0.0000017761,0.0000017665,0.0000017606,0.0000017610,0.0000017669, +0.0000017749,0.0000017791,0.0000017783,0.0000017755,0.0000017748, +0.0000017762,0.0000017785,0.0000017781,0.0000017705,0.0000017675, +0.0000017652,0.0000017577,0.0000017547,0.0000017470,0.0000017257, +0.0000017232,0.0000017493,0.0000017615,0.0000017599,0.0000017548, +0.0000017548,0.0000017592,0.0000017670,0.0000017725,0.0000017812, +0.0000017984,0.0000018138,0.0000018278,0.0000018319,0.0000018329, +0.0000018375,0.0000018435,0.0000018486,0.0000018514,0.0000018497, +0.0000018400,0.0000018252,0.0000018101,0.0000017997,0.0000017918, +0.0000017746,0.0000017430,0.0000017212,0.0000017235,0.0000017418, +0.0000017450,0.0000017279,0.0000017077,0.0000017013,0.0000016985, +0.0000016971,0.0000016999,0.0000017067,0.0000017143,0.0000017209, +0.0000017268,0.0000017317,0.0000017361,0.0000017425,0.0000017504, +0.0000017550,0.0000017600,0.0000017671,0.0000017687,0.0000017686, +0.0000017751,0.0000017845,0.0000017934,0.0000017965,0.0000018095, +0.0000018207,0.0000018101,0.0000018085,0.0000018048,0.0000017674, +0.0000017327,0.0000017396,0.0000017397,0.0000017445,0.0000017667, +0.0000017787,0.0000017794,0.0000017815,0.0000017853,0.0000017856, +0.0000017678,0.0000017218,0.0000016707,0.0000016452,0.0000016505, +0.0000016693,0.0000016890,0.0000017053,0.0000017127,0.0000017147, +0.0000017211,0.0000017285,0.0000017305,0.0000017286,0.0000017217, +0.0000017106,0.0000016983,0.0000016886,0.0000016834,0.0000016808, +0.0000016787,0.0000016776,0.0000016780,0.0000016801,0.0000016836, +0.0000016883,0.0000016937,0.0000016982,0.0000017002,0.0000016991, +0.0000016949,0.0000016953,0.0000017136,0.0000017502,0.0000017828, +0.0000017958,0.0000017992,0.0000018014,0.0000017982,0.0000017891, +0.0000017771,0.0000017650,0.0000017607,0.0000017612,0.0000017602, +0.0000017572,0.0000017575,0.0000017668,0.0000017807,0.0000017806, +0.0000017541,0.0000017217,0.0000017052,0.0000017061,0.0000017285, +0.0000017634,0.0000017831,0.0000017833,0.0000017879,0.0000018340, +0.0000019072,0.0000019396,0.0000019315,0.0000019318,0.0000019750, +0.0000020179,0.0000020160,0.0000019964,0.0000019912,0.0000019892, +0.0000019727,0.0000019573,0.0000019573,0.0000019633,0.0000019600, +0.0000019545,0.0000019640,0.0000019803,0.0000019877,0.0000019902, +0.0000019919,0.0000019913,0.0000019883,0.0000019847,0.0000019808, +0.0000019748,0.0000019666,0.0000019581,0.0000019530,0.0000019538, +0.0000019613,0.0000019742,0.0000019855,0.0000019919,0.0000019957, +0.0000019998,0.0000020056,0.0000020124,0.0000020169,0.0000020162, +0.0000020117,0.0000020090,0.0000020064,0.0000020014,0.0000020048, +0.0000020114,0.0000020074,0.0000020026,0.0000019978,0.0000019808, +0.0000019694,0.0000019829,0.0000020085,0.0000020256,0.0000020314, +0.0000020307,0.0000020286,0.0000020287,0.0000020309,0.0000020333, +0.0000020346,0.0000020337,0.0000020354,0.0000020408,0.0000020395, +0.0000020342,0.0000020298,0.0000020174,0.0000020088,0.0000020064, +0.0000019984,0.0000019365,0.0000018647,0.0000018347,0.0000018262, +0.0000018108,0.0000018032,0.0000018368,0.0000018943,0.0000018966, +0.0000018556,0.0000018380,0.0000018413,0.0000018494,0.0000018519, +0.0000018366,0.0000018299,0.0000018348,0.0000018527,0.0000018613, +0.0000018325,0.0000018052,0.0000018064,0.0000018277,0.0000018329, +0.0000018136,0.0000018009,0.0000018653,0.0000018516,0.0000019031, +0.0000019231,0.0000019384,0.0000019246,0.0000018606,0.0000018456, +0.0000018619,0.0000019076,0.0000019482,0.0000019629,0.0000019699, +0.0000019796,0.0000019778,0.0000019559,0.0000019106,0.0000018512, +0.0000018043,0.0000018002,0.0000018463,0.0000018952,0.0000019080, +0.0000019024,0.0000018870,0.0000018723,0.0000018673,0.0000018708, +0.0000018797,0.0000018890,0.0000018939,0.0000018916,0.0000018714, +0.0000018237,0.0000017630,0.0000017232,0.0000017047,0.0000016950, +0.0000016947,0.0000016987,0.0000016965,0.0000016945,0.0000016937, +0.0000016862,0.0000016700,0.0000016516,0.0000016406,0.0000016289, +0.0000016170,0.0000016126,0.0000016069,0.0000015932,0.0000015806, +0.0000015794,0.0000015858,0.0000015945,0.0000016007,0.0000016045, +0.0000016057,0.0000016044,0.0000016034,0.0000016022,0.0000016004, +0.0000015978,0.0000015954,0.0000015941,0.0000015954,0.0000015995, +0.0000016050,0.0000016081,0.0000016079,0.0000016064,0.0000016051, +0.0000016036,0.0000015999,0.0000015930,0.0000015786,0.0000015664, +0.0000015788,0.0000016014,0.0000016247,0.0000016419,0.0000016497, +0.0000016562,0.0000016621,0.0000016627,0.0000016569,0.0000016472, +0.0000016420,0.0000016427,0.0000016473,0.0000016525,0.0000016543, +0.0000016509,0.0000016441,0.0000016376,0.0000016335,0.0000016310, +0.0000016285,0.0000016264,0.0000016251,0.0000016246,0.0000016239, +0.0000016208,0.0000016132,0.0000016066,0.0000016180,0.0000016730, +0.0000017438,0.0000017813,0.0000017869,0.0000017919,0.0000018136, +0.0000018276,0.0000017996,0.0000017372,0.0000017049,0.0000017090, +0.0000017309,0.0000017532,0.0000017710,0.0000017821,0.0000017663, +0.0000017259,0.0000017019,0.0000016972,0.0000016902,0.0000016787, +0.0000016670,0.0000016546,0.0000016450,0.0000016388,0.0000016494, +0.0000016843,0.0000017323,0.0000017748,0.0000018026,0.0000018174, +0.0000018246,0.0000018293,0.0000018340,0.0000018397,0.0000018472, +0.0000018565,0.0000018658,0.0000018703,0.0000018636,0.0000018443, +0.0000018122,0.0000017703,0.0000017366,0.0000017219,0.0000017185, +0.0000017202,0.0000017257,0.0000017355,0.0000017424,0.0000017434, +0.0000017428,0.0000017454,0.0000017535,0.0000017605,0.0000017624, +0.0000017624,0.0000017644,0.0000017696,0.0000017769,0.0000017857, +0.0000017950,0.0000018035,0.0000018093,0.0000018119,0.0000018119, +0.0000018107,0.0000018091,0.0000018088,0.0000018108,0.0000018140, +0.0000018158,0.0000018146,0.0000018078,0.0000017950,0.0000017797, +0.0000017688,0.0000017676,0.0000017773,0.0000017864,0.0000017728, +0.0000017226,0.0000016943,0.0000017337,0.0000018203,0.0000018794, +0.0000019017,0.0000019209,0.0000019393,0.0000019498,0.0000019557, +0.0000019596,0.0000019617,0.0000019633,0.0000019657,0.0000019692, +0.0000019735,0.0000019777,0.0000019808,0.0000019824,0.0000019827, +0.0000019822,0.0000019814,0.0000019811,0.0000019812,0.0000019824, +0.0000019845,0.0000019874,0.0000019894,0.0000019918,0.0000019930, +0.0000019942,0.0000019958,0.0000019980,0.0000020001,0.0000020028, +0.0000020061,0.0000020099,0.0000020135,0.0000020161,0.0000020163, +0.0000020151,0.0000020120,0.0000020061,0.0000019984,0.0000019902, +0.0000019839,0.0000019811,0.0000019813,0.0000019835,0.0000019866, +0.0000019889,0.0000019898,0.0000019902,0.0000019911,0.0000019920, +0.0000019914,0.0000019920,0.0000019983,0.0000020066,0.0000020124, +0.0000020142,0.0000020104,0.0000020032,0.0000019982,0.0000019933, +0.0000019869,0.0000019811,0.0000019762,0.0000019719,0.0000019701, +0.0000019734,0.0000019775,0.0000019775,0.0000019660,0.0000019411, +0.0000019304,0.0000019406,0.0000019494,0.0000019092,0.0000018491, +0.0000018215,0.0000017863,0.0000017282,0.0000016789,0.0000016699, +0.0000017110,0.0000017908,0.0000018639,0.0000019140,0.0000019393, +0.0000019457,0.0000019443,0.0000019370,0.0000019294,0.0000019241, +0.0000019198,0.0000019140,0.0000019060,0.0000018977,0.0000018904, +0.0000018830,0.0000018746,0.0000018662,0.0000018586,0.0000018545, +0.0000018545,0.0000018554,0.0000018551,0.0000018538,0.0000018555, +0.0000018599,0.0000018668,0.0000018752,0.0000018836,0.0000018923, +0.0000019010,0.0000019088,0.0000019143,0.0000019177,0.0000019208, +0.0000019241,0.0000019267,0.0000019285,0.0000019293,0.0000019285, +0.0000019275,0.0000019266,0.0000019257,0.0000019247,0.0000019225, +0.0000019211,0.0000019191,0.0000019171,0.0000019145,0.0000019113, +0.0000019063,0.0000018996,0.0000018945,0.0000018931,0.0000018933, +0.0000018931,0.0000018904,0.0000018863,0.0000018824,0.0000018812, +0.0000018796,0.0000018765,0.0000018694,0.0000018652,0.0000018633, +0.0000018652,0.0000018639,0.0000018555,0.0000018555,0.0000018543, +0.0000018507,0.0000018485,0.0000018445,0.0000018426,0.0000018439, +0.0000018489,0.0000018637,0.0000018817,0.0000018919,0.0000018914, +0.0000018870,0.0000018835,0.0000018837,0.0000018857,0.0000018868, +0.0000018846,0.0000018782,0.0000018695,0.0000018583,0.0000018426, +0.0000018273,0.0000018196,0.0000018165,0.0000018104,0.0000018012, +0.0000017902,0.0000017759,0.0000017603,0.0000017475,0.0000017420, +0.0000017442,0.0000017509,0.0000017509,0.0000017380,0.0000017194, +0.0000017090,0.0000017064,0.0000017022,0.0000016959,0.0000016902, +0.0000016849,0.0000016827,0.0000016854,0.0000016915,0.0000016961, +0.0000016977,0.0000016992,0.0000016993,0.0000016986,0.0000016976, +0.0000016961,0.0000016953,0.0000016954,0.0000016899,0.0000016776, +0.0000016690,0.0000016650,0.0000016601,0.0000016554,0.0000016533, +0.0000016503,0.0000016433,0.0000016406,0.0000016473,0.0000016571, +0.0000016648,0.0000016686,0.0000016656,0.0000016561,0.0000016481, +0.0000016437,0.0000016400,0.0000016350,0.0000016314,0.0000016276, +0.0000016256,0.0000016235,0.0000016199,0.0000016214,0.0000016281, +0.0000016247,0.0000016112,0.0000016024,0.0000016010,0.0000016086, +0.0000016188,0.0000016282,0.0000016427,0.0000016564,0.0000016612, +0.0000016633,0.0000016648,0.0000016637,0.0000016564,0.0000016469, +0.0000016447,0.0000016444,0.0000016411,0.0000016387,0.0000016390, +0.0000016380,0.0000016347,0.0000016306,0.0000016256,0.0000016213, +0.0000016198,0.0000016229,0.0000016275,0.0000016316,0.0000016330, +0.0000016331,0.0000016325,0.0000016306,0.0000016311,0.0000016342, +0.0000016372,0.0000016418,0.0000016509,0.0000016629,0.0000016725, +0.0000016808,0.0000016930,0.0000017057,0.0000017126,0.0000017173, +0.0000017281,0.0000017459,0.0000017635,0.0000017749,0.0000017797, +0.0000017796,0.0000017774,0.0000017768,0.0000017764,0.0000017763, +0.0000017763,0.0000017745,0.0000017686,0.0000017608,0.0000017576, +0.0000017602,0.0000017672,0.0000017753,0.0000017803,0.0000017800, +0.0000017761,0.0000017720,0.0000017713,0.0000017737,0.0000017771, +0.0000017764,0.0000017685,0.0000017656,0.0000017636,0.0000017560, +0.0000017528,0.0000017448,0.0000017223,0.0000017174,0.0000017436, +0.0000017601,0.0000017587,0.0000017539,0.0000017548,0.0000017591, +0.0000017659,0.0000017728,0.0000017819,0.0000017981,0.0000018126, +0.0000018262,0.0000018314,0.0000018326,0.0000018387,0.0000018465, +0.0000018509,0.0000018507,0.0000018461,0.0000018386,0.0000018291, +0.0000018181,0.0000018060,0.0000017928,0.0000017707,0.0000017362, +0.0000017190,0.0000017274,0.0000017431,0.0000017384,0.0000017135, +0.0000017005,0.0000016981,0.0000016945,0.0000016949,0.0000017052, +0.0000017179,0.0000017245,0.0000017277,0.0000017324,0.0000017379, +0.0000017422,0.0000017462,0.0000017527,0.0000017582,0.0000017617, +0.0000017686,0.0000017717,0.0000017712,0.0000017775,0.0000017875, +0.0000017948,0.0000017988,0.0000018153,0.0000018220,0.0000018097, +0.0000018092,0.0000017988,0.0000017544,0.0000017326,0.0000017418, +0.0000017388,0.0000017535,0.0000017755,0.0000017799,0.0000017808, +0.0000017862,0.0000017892,0.0000017744,0.0000017309,0.0000016808, +0.0000016539,0.0000016515,0.0000016594,0.0000016715,0.0000016906, +0.0000017059,0.0000017105,0.0000017164,0.0000017278,0.0000017353, +0.0000017363,0.0000017332,0.0000017250,0.0000017126,0.0000016993, +0.0000016896,0.0000016850,0.0000016837,0.0000016838,0.0000016853, +0.0000016880,0.0000016916,0.0000016957,0.0000016994,0.0000017019, +0.0000017021,0.0000016994,0.0000016977,0.0000017076,0.0000017358, +0.0000017696,0.0000017913,0.0000017983,0.0000018006,0.0000017997, +0.0000017930,0.0000017832,0.0000017705,0.0000017609,0.0000017605, +0.0000017612,0.0000017566,0.0000017523,0.0000017558,0.0000017701, +0.0000017831,0.0000017752,0.0000017434,0.0000017130,0.0000017015, +0.0000017051,0.0000017309,0.0000017663,0.0000017845,0.0000017828, +0.0000017858,0.0000018321,0.0000019069,0.0000019452,0.0000019337, +0.0000019235,0.0000019584,0.0000020086,0.0000020152,0.0000019972, +0.0000019931,0.0000019935,0.0000019775,0.0000019597,0.0000019597, +0.0000019706,0.0000019672,0.0000019555,0.0000019588,0.0000019750, +0.0000019869,0.0000019919,0.0000019937,0.0000019933,0.0000019906, +0.0000019866,0.0000019823,0.0000019763,0.0000019688,0.0000019622, +0.0000019582,0.0000019569,0.0000019587,0.0000019648,0.0000019746, +0.0000019858,0.0000019954,0.0000020016,0.0000020064,0.0000020131, +0.0000020186,0.0000020171,0.0000020120,0.0000020105,0.0000020072, +0.0000020024,0.0000020082,0.0000020120,0.0000020074,0.0000020042, +0.0000019972,0.0000019785,0.0000019730,0.0000019883,0.0000020126, +0.0000020281,0.0000020327,0.0000020321,0.0000020312,0.0000020317, +0.0000020333,0.0000020345,0.0000020334,0.0000020345,0.0000020397, +0.0000020386,0.0000020352,0.0000020319,0.0000020202,0.0000020127, +0.0000020101,0.0000019997,0.0000019364,0.0000018660,0.0000018373, +0.0000018278,0.0000018136,0.0000017979,0.0000018218,0.0000018861, +0.0000019057,0.0000018751,0.0000018401,0.0000018347,0.0000018416, +0.0000018422,0.0000018328,0.0000018297,0.0000018335,0.0000018436, +0.0000018633,0.0000018521,0.0000018154,0.0000018052,0.0000018157, +0.0000018356,0.0000018250,0.0000018015,0.0000018300,0.0000018586, +0.0000018920,0.0000019258,0.0000019356,0.0000019114,0.0000018438, +0.0000018323,0.0000018240,0.0000018282,0.0000018633,0.0000019085, +0.0000019374,0.0000019498,0.0000019484,0.0000019236,0.0000018743, +0.0000018238,0.0000018068,0.0000018371,0.0000018868,0.0000019065, +0.0000018990,0.0000018677,0.0000018259,0.0000017938,0.0000017771, +0.0000017723,0.0000017739,0.0000017793,0.0000017835,0.0000017798, +0.0000017645,0.0000017415,0.0000017206,0.0000017060,0.0000016961, +0.0000016945,0.0000017001,0.0000016997,0.0000016958,0.0000016944, +0.0000016880,0.0000016716,0.0000016495,0.0000016323,0.0000016214, +0.0000016113,0.0000016089,0.0000016046,0.0000015891,0.0000015741, +0.0000015752,0.0000015862,0.0000015967,0.0000016018,0.0000016021, +0.0000016012,0.0000015988,0.0000015977,0.0000015980,0.0000015975, +0.0000015976,0.0000015999,0.0000016021,0.0000016052,0.0000016088, +0.0000016127,0.0000016159,0.0000016166,0.0000016142,0.0000016101, +0.0000016063,0.0000016039,0.0000016021,0.0000015994,0.0000015948, +0.0000015816,0.0000015658,0.0000015757,0.0000016001,0.0000016239, +0.0000016409,0.0000016474,0.0000016533,0.0000016600,0.0000016618, +0.0000016577,0.0000016522,0.0000016512,0.0000016546,0.0000016572, +0.0000016538,0.0000016462,0.0000016395,0.0000016356,0.0000016330, +0.0000016315,0.0000016301,0.0000016287,0.0000016276,0.0000016275, +0.0000016278,0.0000016273,0.0000016225,0.0000016130,0.0000016123, +0.0000016451,0.0000017228,0.0000017813,0.0000017917,0.0000017923, +0.0000018121,0.0000018315,0.0000018099,0.0000017468,0.0000017078, +0.0000017082,0.0000017275,0.0000017484,0.0000017672,0.0000017773, +0.0000017575,0.0000017157,0.0000016948,0.0000016918,0.0000016857, +0.0000016756,0.0000016658,0.0000016570,0.0000016477,0.0000016438, +0.0000016524,0.0000016845,0.0000017340,0.0000017788,0.0000018053, +0.0000018139,0.0000018149,0.0000018162,0.0000018178,0.0000018206, +0.0000018235,0.0000018237,0.0000018195,0.0000018088,0.0000017891, +0.0000017635,0.0000017411,0.0000017301,0.0000017291,0.0000017326, +0.0000017373,0.0000017424,0.0000017467,0.0000017482,0.0000017460, +0.0000017446,0.0000017462,0.0000017513,0.0000017565,0.0000017587, +0.0000017587,0.0000017583,0.0000017599,0.0000017645,0.0000017735, +0.0000017853,0.0000017968,0.0000018046,0.0000018074,0.0000018071, +0.0000018054,0.0000018039,0.0000018039,0.0000018059,0.0000018096, +0.0000018131,0.0000018139,0.0000018090,0.0000017969,0.0000017838, +0.0000017750,0.0000017737,0.0000017793,0.0000017853,0.0000017743, +0.0000017313,0.0000016926,0.0000017129,0.0000017909,0.0000018648, +0.0000018973,0.0000019123,0.0000019277,0.0000019387,0.0000019450, +0.0000019495,0.0000019527,0.0000019546,0.0000019565,0.0000019591, +0.0000019621,0.0000019647,0.0000019664,0.0000019674,0.0000019679, +0.0000019682,0.0000019691,0.0000019724,0.0000019757,0.0000019797, +0.0000019848,0.0000019891,0.0000019928,0.0000019956,0.0000019982, +0.0000019993,0.0000020003,0.0000020011,0.0000020019,0.0000020028, +0.0000020037,0.0000020049,0.0000020066,0.0000020085,0.0000020107, +0.0000020129,0.0000020161,0.0000020198,0.0000020214,0.0000020192, +0.0000020139,0.0000020071,0.0000020005,0.0000019953,0.0000019926, +0.0000019928,0.0000019939,0.0000019940,0.0000019936,0.0000019939, +0.0000019949,0.0000019962,0.0000020005,0.0000020072,0.0000020132, +0.0000020182,0.0000020198,0.0000020151,0.0000020084,0.0000020034, +0.0000019980,0.0000019905,0.0000019793,0.0000019660,0.0000019557, +0.0000019529,0.0000019577,0.0000019634,0.0000019610,0.0000019434, +0.0000019311,0.0000019396,0.0000019509,0.0000019218,0.0000018619, +0.0000018221,0.0000017633,0.0000016921,0.0000016594,0.0000016711, +0.0000017517,0.0000018449,0.0000018940,0.0000019101,0.0000019165, +0.0000019205,0.0000019224,0.0000019219,0.0000019196,0.0000019160, +0.0000019117,0.0000019066,0.0000018999,0.0000018926,0.0000018859, +0.0000018796,0.0000018716,0.0000018634,0.0000018556,0.0000018514, +0.0000018502,0.0000018527,0.0000018534,0.0000018524,0.0000018509, +0.0000018493,0.0000018482,0.0000018486,0.0000018507,0.0000018545, +0.0000018593,0.0000018638,0.0000018672,0.0000018706,0.0000018747, +0.0000018798,0.0000018851,0.0000018908,0.0000018973,0.0000019042, +0.0000019110,0.0000019179,0.0000019234,0.0000019258,0.0000019265, +0.0000019257,0.0000019228,0.0000019188,0.0000019149,0.0000019100, +0.0000019037,0.0000018968,0.0000018937,0.0000018946,0.0000018968, +0.0000018958,0.0000018927,0.0000018886,0.0000018856,0.0000018842, +0.0000018817,0.0000018764,0.0000018690,0.0000018670,0.0000018651, +0.0000018676,0.0000018668,0.0000018578,0.0000018572,0.0000018584, +0.0000018538,0.0000018488,0.0000018430,0.0000018396,0.0000018392, +0.0000018448,0.0000018627,0.0000018832,0.0000018933,0.0000018938, +0.0000018930,0.0000018910,0.0000018895,0.0000018895,0.0000018894, +0.0000018850,0.0000018773,0.0000018707,0.0000018649,0.0000018539, +0.0000018386,0.0000018284,0.0000018246,0.0000018181,0.0000018063, +0.0000017938,0.0000017791,0.0000017615,0.0000017479,0.0000017451, +0.0000017502,0.0000017554,0.0000017518,0.0000017375,0.0000017213, +0.0000017129,0.0000017092,0.0000017037,0.0000016968,0.0000016907, +0.0000016873,0.0000016881,0.0000016916,0.0000016954,0.0000016985, +0.0000017024,0.0000017051,0.0000017046,0.0000017032,0.0000017019, +0.0000016988,0.0000016961,0.0000016950,0.0000016876,0.0000016749, +0.0000016679,0.0000016640,0.0000016574,0.0000016518,0.0000016502, +0.0000016464,0.0000016409,0.0000016425,0.0000016513,0.0000016599, +0.0000016659,0.0000016672,0.0000016611,0.0000016520,0.0000016464, +0.0000016438,0.0000016390,0.0000016339,0.0000016292,0.0000016253, +0.0000016248,0.0000016223,0.0000016201,0.0000016247,0.0000016281, +0.0000016181,0.0000016050,0.0000015986,0.0000016004,0.0000016113, +0.0000016220,0.0000016337,0.0000016491,0.0000016594,0.0000016626, +0.0000016655,0.0000016667,0.0000016631,0.0000016538,0.0000016480, +0.0000016482,0.0000016450,0.0000016401,0.0000016390,0.0000016385, +0.0000016360,0.0000016335,0.0000016307,0.0000016270,0.0000016231, +0.0000016201,0.0000016199,0.0000016216,0.0000016243,0.0000016270, +0.0000016284,0.0000016276,0.0000016279,0.0000016303,0.0000016326, +0.0000016354,0.0000016426,0.0000016546,0.0000016661,0.0000016739, +0.0000016830,0.0000016958,0.0000017062,0.0000017100,0.0000017122, +0.0000017202,0.0000017360,0.0000017549,0.0000017703,0.0000017774, +0.0000017757,0.0000017780,0.0000017756,0.0000017706,0.0000017658, +0.0000017607,0.0000017557,0.0000017547,0.0000017603,0.0000017690, +0.0000017764,0.0000017804,0.0000017806,0.0000017762,0.0000017704, +0.0000017666,0.0000017671,0.0000017704,0.0000017747,0.0000017736, +0.0000017662,0.0000017640,0.0000017612,0.0000017535,0.0000017503, +0.0000017418,0.0000017185,0.0000017115,0.0000017374,0.0000017586, +0.0000017580,0.0000017533,0.0000017545,0.0000017584,0.0000017650, +0.0000017734,0.0000017832,0.0000017980,0.0000018115,0.0000018248, +0.0000018304,0.0000018316,0.0000018381,0.0000018469,0.0000018498, +0.0000018476,0.0000018425,0.0000018383,0.0000018339,0.0000018255, +0.0000018103,0.0000017935,0.0000017690,0.0000017337,0.0000017200, +0.0000017338,0.0000017460,0.0000017311,0.0000017052,0.0000016977, +0.0000016948,0.0000016912,0.0000016984,0.0000017152,0.0000017248, +0.0000017262,0.0000017281,0.0000017335,0.0000017407,0.0000017470, +0.0000017505,0.0000017550,0.0000017610,0.0000017642,0.0000017703, +0.0000017744,0.0000017737,0.0000017800,0.0000017907,0.0000017959, +0.0000018021,0.0000018208,0.0000018221,0.0000018099,0.0000018094, +0.0000017903,0.0000017449,0.0000017372,0.0000017401,0.0000017415, +0.0000017644,0.0000017802,0.0000017807,0.0000017843,0.0000017892, +0.0000017796,0.0000017406,0.0000016929,0.0000016633,0.0000016560, +0.0000016562,0.0000016573,0.0000016698,0.0000016924,0.0000017059, +0.0000017118,0.0000017237,0.0000017364,0.0000017419,0.0000017422, +0.0000017403,0.0000017337,0.0000017229,0.0000017111,0.0000017015, +0.0000016958,0.0000016937,0.0000016942,0.0000016960,0.0000016984, +0.0000017007,0.0000017022,0.0000017027,0.0000017020,0.0000017011, +0.0000017070,0.0000017269,0.0000017572,0.0000017838,0.0000017966, +0.0000017999,0.0000018005,0.0000017959,0.0000017870,0.0000017770, +0.0000017644,0.0000017589,0.0000017611,0.0000017592,0.0000017506, +0.0000017466,0.0000017543,0.0000017727,0.0000017821,0.0000017694, +0.0000017338,0.0000017064,0.0000017000,0.0000017059,0.0000017336, +0.0000017690,0.0000017860,0.0000017826,0.0000017837,0.0000018269, +0.0000019019,0.0000019452,0.0000019374,0.0000019168,0.0000019413, +0.0000019987,0.0000020156,0.0000019984,0.0000019957,0.0000019988, +0.0000019837,0.0000019624,0.0000019617,0.0000019804,0.0000019821, +0.0000019625,0.0000019564,0.0000019646,0.0000019765,0.0000019839, +0.0000019872,0.0000019879,0.0000019865,0.0000019835,0.0000019804, +0.0000019769,0.0000019724,0.0000019672,0.0000019624,0.0000019578, +0.0000019553,0.0000019565,0.0000019641,0.0000019780,0.0000019936, +0.0000020039,0.0000020087,0.0000020128,0.0000020143,0.0000020113, +0.0000020101,0.0000020114,0.0000020067,0.0000020048,0.0000020137, +0.0000020145,0.0000020081,0.0000020052,0.0000019925,0.0000019751, +0.0000019751,0.0000019946,0.0000020174,0.0000020308,0.0000020333, +0.0000020330,0.0000020323,0.0000020328,0.0000020337,0.0000020326, +0.0000020342,0.0000020391,0.0000020370,0.0000020347,0.0000020319, +0.0000020211,0.0000020151,0.0000020126,0.0000020018,0.0000019378, +0.0000018680,0.0000018413,0.0000018295,0.0000018134,0.0000017990, +0.0000018170,0.0000018789,0.0000019168,0.0000018980,0.0000018560, +0.0000018319,0.0000018283,0.0000018286,0.0000018283,0.0000018306, +0.0000018352,0.0000018375,0.0000018563,0.0000018658,0.0000018325, +0.0000018070,0.0000018084,0.0000018272,0.0000018338,0.0000018129, +0.0000018049,0.0000018686,0.0000018725,0.0000019237,0.0000019325, +0.0000019125,0.0000018470,0.0000018390,0.0000018295,0.0000018192, +0.0000018129,0.0000018191,0.0000018413,0.0000018592,0.0000018582, +0.0000018396,0.0000018188,0.0000018148,0.0000018398,0.0000018812, +0.0000019058,0.0000019021,0.0000018694,0.0000018138,0.0000017651, +0.0000017390,0.0000017266,0.0000017207,0.0000017177,0.0000017158, +0.0000017150,0.0000017144,0.0000017122,0.0000017077,0.0000017012, +0.0000016952,0.0000016941,0.0000016998,0.0000017017,0.0000016976, +0.0000016960,0.0000016905,0.0000016746,0.0000016502,0.0000016289, +0.0000016167,0.0000016092,0.0000016051,0.0000016009,0.0000015846, +0.0000015668,0.0000015678,0.0000015820,0.0000015956,0.0000016014, +0.0000016019,0.0000016008,0.0000016007,0.0000016005,0.0000016023, +0.0000016048,0.0000016074,0.0000016103,0.0000016136,0.0000016170, +0.0000016201,0.0000016224,0.0000016239,0.0000016244,0.0000016233, +0.0000016205,0.0000016168,0.0000016140,0.0000016119,0.0000016107, +0.0000016090,0.0000016053,0.0000015987,0.0000015844,0.0000015638, +0.0000015716,0.0000015981,0.0000016225,0.0000016387,0.0000016434, +0.0000016489,0.0000016567,0.0000016594,0.0000016586,0.0000016563, +0.0000016547,0.0000016503,0.0000016424,0.0000016368,0.0000016363, +0.0000016372,0.0000016368,0.0000016357,0.0000016350,0.0000016345, +0.0000016340,0.0000016336,0.0000016333,0.0000016331,0.0000016314, +0.0000016229,0.0000016128,0.0000016278,0.0000016988,0.0000017799, +0.0000018072,0.0000018044,0.0000018166,0.0000018382,0.0000018187, +0.0000017551,0.0000017110,0.0000017073,0.0000017240,0.0000017430, +0.0000017613,0.0000017747,0.0000017575,0.0000017155,0.0000016917, +0.0000016861,0.0000016827,0.0000016774,0.0000016775,0.0000016817, +0.0000016890,0.0000017015,0.0000017244,0.0000017553,0.0000017882, +0.0000018106,0.0000018151,0.0000018136,0.0000018089,0.0000018035, +0.0000017971,0.0000017910,0.0000017821,0.0000017699,0.0000017568, +0.0000017453,0.0000017369,0.0000017358,0.0000017333,0.0000017384, +0.0000017443,0.0000017476,0.0000017493,0.0000017498,0.0000017493, +0.0000017484,0.0000017478,0.0000017493,0.0000017523,0.0000017557, +0.0000017577,0.0000017589,0.0000017599,0.0000017612,0.0000017646, +0.0000017709,0.0000017803,0.0000017901,0.0000017972,0.0000018001, +0.0000018002,0.0000017997,0.0000017996,0.0000018007,0.0000018032, +0.0000018064,0.0000018097,0.0000018103,0.0000018058,0.0000017957, +0.0000017862,0.0000017817,0.0000017816,0.0000017853,0.0000017864, +0.0000017722,0.0000017313,0.0000016964,0.0000017114,0.0000017844, +0.0000018584,0.0000018939,0.0000019073,0.0000019189,0.0000019273, +0.0000019314,0.0000019347,0.0000019382,0.0000019413,0.0000019443, +0.0000019472,0.0000019499,0.0000019521,0.0000019537,0.0000019556, +0.0000019596,0.0000019631,0.0000019675,0.0000019737,0.0000019806, +0.0000019862,0.0000019891,0.0000019911,0.0000019929,0.0000019938, +0.0000019975,0.0000020007,0.0000020040,0.0000020071,0.0000020092, +0.0000020115,0.0000020135,0.0000020152,0.0000020165,0.0000020163, +0.0000020146,0.0000020123,0.0000020102,0.0000020095,0.0000020119, +0.0000020164,0.0000020202,0.0000020226,0.0000020216,0.0000020170, +0.0000020108,0.0000020063,0.0000020048,0.0000020045,0.0000020035, +0.0000020014,0.0000020000,0.0000020008,0.0000020046,0.0000020100, +0.0000020141,0.0000020178,0.0000020228,0.0000020255,0.0000020213, +0.0000020147,0.0000020095,0.0000020034,0.0000019885,0.0000019648, +0.0000019450,0.0000019363,0.0000019351,0.0000019394,0.0000019432, +0.0000019390,0.0000019332,0.0000019410,0.0000019527,0.0000019334, +0.0000018746,0.0000018250,0.0000017517,0.0000016854,0.0000016770, +0.0000017235,0.0000018145,0.0000018869,0.0000019084,0.0000019068, +0.0000019041,0.0000019053,0.0000019082,0.0000019098,0.0000019103, +0.0000019085,0.0000019051,0.0000019019,0.0000018975,0.0000018924, +0.0000018874,0.0000018824,0.0000018771,0.0000018711,0.0000018636, +0.0000018561,0.0000018493,0.0000018480,0.0000018463,0.0000018443, +0.0000018450,0.0000018451,0.0000018452,0.0000018449,0.0000018445, +0.0000018452,0.0000018456,0.0000018450,0.0000018434,0.0000018431, +0.0000018442,0.0000018462,0.0000018485,0.0000018514,0.0000018561, +0.0000018626,0.0000018715,0.0000018835,0.0000018973,0.0000019114, +0.0000019233,0.0000019285,0.0000019275,0.0000019220,0.0000019161, +0.0000019084,0.0000019007,0.0000018938,0.0000018925,0.0000018949, +0.0000018975,0.0000018959,0.0000018926,0.0000018873,0.0000018844, +0.0000018829,0.0000018806,0.0000018746,0.0000018703,0.0000018691, +0.0000018680,0.0000018690,0.0000018674,0.0000018598,0.0000018587, +0.0000018609,0.0000018580,0.0000018524,0.0000018447,0.0000018380, +0.0000018362,0.0000018404,0.0000018597,0.0000018815,0.0000018922, +0.0000018966,0.0000019013,0.0000019020,0.0000018996,0.0000018990, +0.0000018972,0.0000018886,0.0000018767,0.0000018693,0.0000018678, +0.0000018645,0.0000018524,0.0000018382,0.0000018307,0.0000018232, +0.0000018096,0.0000017951,0.0000017774,0.0000017585,0.0000017495, +0.0000017507,0.0000017560,0.0000017579,0.0000017519,0.0000017379, +0.0000017234,0.0000017157,0.0000017109,0.0000017043,0.0000016971, +0.0000016927,0.0000016922,0.0000016941,0.0000016960,0.0000016981, +0.0000017033,0.0000017102,0.0000017125,0.0000017105,0.0000017091, +0.0000017071,0.0000017007,0.0000016961,0.0000016943,0.0000016850, +0.0000016729,0.0000016676,0.0000016622,0.0000016534,0.0000016489, +0.0000016482,0.0000016443,0.0000016417,0.0000016463,0.0000016553, +0.0000016621,0.0000016659,0.0000016641,0.0000016567,0.0000016491, +0.0000016460,0.0000016431,0.0000016373,0.0000016321,0.0000016261, +0.0000016241,0.0000016237,0.0000016210,0.0000016213,0.0000016268, +0.0000016242,0.0000016105,0.0000015997,0.0000015958,0.0000016016, +0.0000016145,0.0000016261,0.0000016399,0.0000016545,0.0000016615, +0.0000016648,0.0000016682,0.0000016678,0.0000016611,0.0000016525, +0.0000016513,0.0000016510,0.0000016453,0.0000016420,0.0000016413, +0.0000016389,0.0000016351,0.0000016317,0.0000016294,0.0000016280, +0.0000016266,0.0000016241,0.0000016204,0.0000016189,0.0000016196, +0.0000016220,0.0000016234,0.0000016250,0.0000016273,0.0000016287, +0.0000016297,0.0000016340,0.0000016438,0.0000016561,0.0000016656, +0.0000016739,0.0000016853,0.0000016977,0.0000017050,0.0000017058, +0.0000017064,0.0000017117,0.0000017268,0.0000017482,0.0000017665, +0.0000017702,0.0000017794,0.0000017761,0.0000017664,0.0000017575, +0.0000017527,0.0000017530,0.0000017605,0.0000017709,0.0000017772, +0.0000017793,0.0000017791,0.0000017747,0.0000017679,0.0000017626, +0.0000017607,0.0000017626,0.0000017667,0.0000017714,0.0000017701, +0.0000017636,0.0000017619,0.0000017583,0.0000017505,0.0000017470, +0.0000017375,0.0000017138,0.0000017052,0.0000017304,0.0000017578, +0.0000017576,0.0000017527,0.0000017541,0.0000017576,0.0000017642, +0.0000017745,0.0000017849,0.0000017984,0.0000018110,0.0000018235, +0.0000018292,0.0000018302,0.0000018361,0.0000018445,0.0000018469, +0.0000018437,0.0000018392,0.0000018376,0.0000018372,0.0000018304, +0.0000018119,0.0000017929,0.0000017676,0.0000017333,0.0000017242, +0.0000017401,0.0000017468,0.0000017246,0.0000017012,0.0000016968, +0.0000016909,0.0000016919,0.0000017080,0.0000017209,0.0000017229, +0.0000017237,0.0000017276,0.0000017337,0.0000017416,0.0000017497, +0.0000017546,0.0000017573,0.0000017638,0.0000017670,0.0000017720, +0.0000017768,0.0000017765,0.0000017832,0.0000017938,0.0000017971, +0.0000018066,0.0000018243,0.0000018209,0.0000018101,0.0000018086, +0.0000017795,0.0000017394,0.0000017377,0.0000017382,0.0000017484, +0.0000017740,0.0000017817,0.0000017826,0.0000017880,0.0000017828, +0.0000017498,0.0000017049,0.0000016748,0.0000016628,0.0000016591, +0.0000016561,0.0000016586,0.0000016755,0.0000016969,0.0000017078, +0.0000017179,0.0000017334,0.0000017440,0.0000017474,0.0000017486, +0.0000017481,0.0000017444,0.0000017379,0.0000017298,0.0000017220, +0.0000017167,0.0000017141,0.0000017128,0.0000017113,0.0000017094, +0.0000017072,0.0000017053,0.0000017054,0.0000017106,0.0000017246, +0.0000017480,0.0000017744,0.0000017931,0.0000018003,0.0000018015, +0.0000017997,0.0000017910,0.0000017809,0.0000017707,0.0000017604, +0.0000017580,0.0000017596,0.0000017555,0.0000017457,0.0000017423, +0.0000017538,0.0000017748,0.0000017820,0.0000017637,0.0000017255, +0.0000017025,0.0000016998,0.0000017079,0.0000017363,0.0000017715, +0.0000017876,0.0000017831,0.0000017810,0.0000018182,0.0000018911, +0.0000019423,0.0000019428,0.0000019170,0.0000019262,0.0000019835, +0.0000020109,0.0000019997,0.0000019984,0.0000020053,0.0000019915, +0.0000019661,0.0000019623,0.0000019876,0.0000020001,0.0000019810, +0.0000019613,0.0000019602,0.0000019650,0.0000019703,0.0000019731, +0.0000019741,0.0000019737,0.0000019723,0.0000019706,0.0000019690, +0.0000019669,0.0000019643,0.0000019615,0.0000019589,0.0000019581, +0.0000019605,0.0000019695,0.0000019841,0.0000019980,0.0000020054, +0.0000020066,0.0000020059,0.0000020041,0.0000020055,0.0000020122, +0.0000020122,0.0000020042,0.0000020080,0.0000020168,0.0000020133, +0.0000020083,0.0000020030,0.0000019850,0.0000019715,0.0000019788, +0.0000020013,0.0000020226,0.0000020327,0.0000020338,0.0000020330, +0.0000020325,0.0000020329,0.0000020314,0.0000020335,0.0000020380, +0.0000020348,0.0000020331,0.0000020301,0.0000020205,0.0000020163, +0.0000020139,0.0000020019,0.0000019376,0.0000018697,0.0000018464, +0.0000018325,0.0000018118,0.0000017977,0.0000018164,0.0000018762, +0.0000019193,0.0000019152,0.0000018793,0.0000018455,0.0000018290, +0.0000018249,0.0000018276,0.0000018347,0.0000018392,0.0000018373, +0.0000018474,0.0000018695,0.0000018542,0.0000018129,0.0000018058, +0.0000018156,0.0000018370,0.0000018259,0.0000017984,0.0000018548, +0.0000018608,0.0000019126,0.0000019286,0.0000019232,0.0000018548, +0.0000018472,0.0000018455,0.0000018399,0.0000018296,0.0000018162, +0.0000018083,0.0000018071,0.0000018100,0.0000018131,0.0000018250, +0.0000018502,0.0000018843,0.0000019061,0.0000019047,0.0000018760, +0.0000018196,0.0000017644,0.0000017322,0.0000017162,0.0000017079, +0.0000017037,0.0000017013,0.0000016993,0.0000016974,0.0000016961, +0.0000016953,0.0000016943,0.0000016936,0.0000016948,0.0000016994, +0.0000017014,0.0000016981,0.0000016968,0.0000016937,0.0000016785, +0.0000016517,0.0000016268,0.0000016143,0.0000016095,0.0000016092, +0.0000016049,0.0000015872,0.0000015658,0.0000015612,0.0000015760, +0.0000015933,0.0000016009,0.0000016037,0.0000016073,0.0000016100, +0.0000016122,0.0000016141,0.0000016167,0.0000016198,0.0000016226, +0.0000016244,0.0000016245,0.0000016240,0.0000016235,0.0000016236, +0.0000016220,0.0000016204,0.0000016187,0.0000016169,0.0000016158, +0.0000016156,0.0000016167,0.0000016179,0.0000016185,0.0000016171, +0.0000016124,0.0000016033,0.0000015875,0.0000015629,0.0000015674, +0.0000015956,0.0000016209,0.0000016364,0.0000016394,0.0000016436, +0.0000016515,0.0000016553,0.0000016534,0.0000016467,0.0000016379, +0.0000016317,0.0000016314,0.0000016352,0.0000016388,0.0000016401, +0.0000016398,0.0000016393,0.0000016390,0.0000016388,0.0000016384, +0.0000016380,0.0000016375,0.0000016371,0.0000016325,0.0000016199, +0.0000016185,0.0000016735,0.0000017692,0.0000018238,0.0000018271, +0.0000018330,0.0000018469,0.0000018264,0.0000017608,0.0000017131, +0.0000017070,0.0000017207,0.0000017378,0.0000017524,0.0000017689, +0.0000017648,0.0000017317,0.0000017013,0.0000016894,0.0000016868, +0.0000016907,0.0000017047,0.0000017264,0.0000017488,0.0000017710, +0.0000017847,0.0000018011,0.0000018055,0.0000018011,0.0000017917, +0.0000017823,0.0000017722,0.0000017623,0.0000017540,0.0000017472, +0.0000017410,0.0000017364,0.0000017378,0.0000017356,0.0000017394, +0.0000017441,0.0000017473,0.0000017493,0.0000017504,0.0000017514, +0.0000017525,0.0000017531,0.0000017533,0.0000017536,0.0000017546, +0.0000017563,0.0000017584,0.0000017603,0.0000017617,0.0000017631, +0.0000017651,0.0000017684,0.0000017730,0.0000017782,0.0000017838, +0.0000017879,0.0000017906,0.0000017921,0.0000017942,0.0000017968, +0.0000017991,0.0000018023,0.0000018055,0.0000018080,0.0000018079, +0.0000018029,0.0000017952,0.0000017899,0.0000017891,0.0000017907, +0.0000017930,0.0000017906,0.0000017704,0.0000017284,0.0000016993, +0.0000017167,0.0000017871,0.0000018567,0.0000018885,0.0000019012, +0.0000019118,0.0000019200,0.0000019226,0.0000019236,0.0000019256, +0.0000019283,0.0000019320,0.0000019360,0.0000019399,0.0000019448, +0.0000019489,0.0000019535,0.0000019601,0.0000019673,0.0000019743, +0.0000019789,0.0000019839,0.0000019844,0.0000019797,0.0000019758, +0.0000019744,0.0000019772,0.0000019830,0.0000019894,0.0000019952, +0.0000019995,0.0000020028,0.0000020057,0.0000020087,0.0000020120, +0.0000020156,0.0000020193,0.0000020224,0.0000020239,0.0000020233, +0.0000020218,0.0000020177,0.0000020138,0.0000020119,0.0000020125, +0.0000020153,0.0000020195,0.0000020216,0.0000020209,0.0000020183, +0.0000020156,0.0000020144,0.0000020137,0.0000020123,0.0000020109, +0.0000020117,0.0000020149,0.0000020177,0.0000020185,0.0000020212, +0.0000020278,0.0000020317,0.0000020278,0.0000020207,0.0000020154, +0.0000020044,0.0000019758,0.0000019470,0.0000019358,0.0000019320, +0.0000019307,0.0000019342,0.0000019365,0.0000019386,0.0000019461, +0.0000019548,0.0000019443,0.0000018867,0.0000018299,0.0000017510, +0.0000016913,0.0000017110,0.0000017935,0.0000018713,0.0000019100, +0.0000019156,0.0000019143,0.0000019114,0.0000019094,0.0000019097, +0.0000019111,0.0000019115,0.0000019113,0.0000019095,0.0000019072, +0.0000019048,0.0000019024,0.0000019006,0.0000019002,0.0000019004, +0.0000018998,0.0000018965,0.0000018882,0.0000018774,0.0000018653, +0.0000018524,0.0000018422,0.0000018390,0.0000018360,0.0000018353, +0.0000018362,0.0000018371,0.0000018382,0.0000018388,0.0000018381, +0.0000018368,0.0000018359,0.0000018357,0.0000018361,0.0000018370, +0.0000018388,0.0000018413,0.0000018442,0.0000018480,0.0000018542, +0.0000018646,0.0000018822,0.0000019036,0.0000019204,0.0000019281, +0.0000019276,0.0000019217,0.0000019109,0.0000019006,0.0000018938, +0.0000018931,0.0000018945,0.0000018959,0.0000018946,0.0000018912, +0.0000018851,0.0000018814,0.0000018805,0.0000018783,0.0000018722, +0.0000018727,0.0000018736,0.0000018742,0.0000018723,0.0000018694, +0.0000018632,0.0000018617,0.0000018646,0.0000018624,0.0000018571, +0.0000018491,0.0000018385,0.0000018341,0.0000018367,0.0000018555, +0.0000018778,0.0000018897,0.0000018992,0.0000019098,0.0000019129, +0.0000019106,0.0000019093,0.0000019056,0.0000018932,0.0000018786, +0.0000018698,0.0000018692,0.0000018700,0.0000018622,0.0000018465, +0.0000018345,0.0000018248,0.0000018094,0.0000017920,0.0000017727, +0.0000017575,0.0000017539,0.0000017560,0.0000017596,0.0000017598, +0.0000017522,0.0000017373,0.0000017240,0.0000017172,0.0000017115, +0.0000017043,0.0000016982,0.0000016967,0.0000016979,0.0000016989, +0.0000016990,0.0000017027,0.0000017124,0.0000017204,0.0000017203, +0.0000017171,0.0000017160,0.0000017115,0.0000017012,0.0000016959, +0.0000016932,0.0000016824,0.0000016718,0.0000016672,0.0000016588, +0.0000016495,0.0000016480,0.0000016482,0.0000016438,0.0000016435, +0.0000016509,0.0000016588,0.0000016633,0.0000016643,0.0000016607, +0.0000016528,0.0000016474,0.0000016459,0.0000016414,0.0000016355, +0.0000016292,0.0000016236,0.0000016231,0.0000016222,0.0000016204, +0.0000016225,0.0000016255,0.0000016173,0.0000016033,0.0000015949, +0.0000015939,0.0000016041,0.0000016184,0.0000016311,0.0000016459, +0.0000016584,0.0000016635,0.0000016677,0.0000016703,0.0000016675, +0.0000016584,0.0000016532,0.0000016544,0.0000016513,0.0000016457, +0.0000016443,0.0000016430,0.0000016386,0.0000016329,0.0000016282, +0.0000016262,0.0000016264,0.0000016271,0.0000016264,0.0000016236, +0.0000016201,0.0000016183,0.0000016175,0.0000016191,0.0000016222, +0.0000016236,0.0000016248,0.0000016270,0.0000016340,0.0000016454, +0.0000016562,0.0000016651,0.0000016758,0.0000016887,0.0000016992, +0.0000017032,0.0000017020,0.0000016996,0.0000017039,0.0000017210, +0.0000017476,0.0000017630,0.0000017792,0.0000017760,0.0000017633, +0.0000017537,0.0000017528,0.0000017608,0.0000017721,0.0000017780, +0.0000017778,0.0000017752,0.0000017705,0.0000017639,0.0000017580, +0.0000017542,0.0000017542,0.0000017576,0.0000017626,0.0000017672, +0.0000017658,0.0000017605,0.0000017589,0.0000017546,0.0000017473, +0.0000017430,0.0000017319,0.0000017085,0.0000016987,0.0000017238, +0.0000017555,0.0000017574,0.0000017522,0.0000017536,0.0000017570, +0.0000017638,0.0000017759,0.0000017870,0.0000017993,0.0000018109, +0.0000018225,0.0000018281,0.0000018288,0.0000018328,0.0000018395, +0.0000018418,0.0000018395,0.0000018369,0.0000018376,0.0000018395, +0.0000018332,0.0000018122,0.0000017920,0.0000017658,0.0000017327, +0.0000017283,0.0000017457,0.0000017471,0.0000017181,0.0000017012, +0.0000016957,0.0000016892,0.0000016992,0.0000017154,0.0000017191, +0.0000017215,0.0000017261,0.0000017318,0.0000017370,0.0000017432, +0.0000017511,0.0000017570,0.0000017598,0.0000017666,0.0000017696, +0.0000017734,0.0000017789,0.0000017799,0.0000017875,0.0000017963, +0.0000017989,0.0000018126,0.0000018285,0.0000018184,0.0000018103, +0.0000018046,0.0000017659,0.0000017332,0.0000017385,0.0000017386, +0.0000017580,0.0000017799,0.0000017828,0.0000017856,0.0000017838, +0.0000017580,0.0000017161,0.0000016859,0.0000016722,0.0000016656, +0.0000016621,0.0000016612,0.0000016674,0.0000016846,0.0000017014, +0.0000017122,0.0000017268,0.0000017415,0.0000017481,0.0000017505, +0.0000017519,0.0000017520,0.0000017508,0.0000017483,0.0000017447, +0.0000017410,0.0000017381,0.0000017357,0.0000017326,0.0000017278, +0.0000017221,0.0000017182,0.0000017191,0.0000017272,0.0000017439, +0.0000017663,0.0000017870,0.0000017989,0.0000018029,0.0000018031, +0.0000017971,0.0000017856,0.0000017752,0.0000017651,0.0000017571, +0.0000017565,0.0000017569,0.0000017523,0.0000017440,0.0000017412, +0.0000017540,0.0000017765,0.0000017829,0.0000017587,0.0000017190, +0.0000016993,0.0000017003,0.0000017106,0.0000017384,0.0000017739, +0.0000017892,0.0000017844,0.0000017808,0.0000018056,0.0000018737, +0.0000019358,0.0000019481,0.0000019218,0.0000019149,0.0000019678, +0.0000020080,0.0000020007,0.0000020006,0.0000020111,0.0000019996, +0.0000019716,0.0000019626,0.0000019864,0.0000020120,0.0000020058, +0.0000019819,0.0000019682,0.0000019663,0.0000019668,0.0000019671, +0.0000019672,0.0000019669,0.0000019661,0.0000019647,0.0000019632, +0.0000019618,0.0000019609,0.0000019605,0.0000019605,0.0000019628, +0.0000019687,0.0000019779,0.0000019873,0.0000019941,0.0000019960, +0.0000019957,0.0000019957,0.0000020004,0.0000020114,0.0000020159, +0.0000020077,0.0000020036,0.0000020137,0.0000020173,0.0000020121, +0.0000020082,0.0000019959,0.0000019744,0.0000019700,0.0000019849, +0.0000020092,0.0000020275,0.0000020334,0.0000020334,0.0000020322, +0.0000020320,0.0000020304,0.0000020337,0.0000020365,0.0000020321, +0.0000020305,0.0000020266,0.0000020185,0.0000020165,0.0000020137, +0.0000020008,0.0000019359,0.0000018704,0.0000018528,0.0000018405, +0.0000018125,0.0000018002,0.0000018225,0.0000018784,0.0000019199, +0.0000019234,0.0000019006,0.0000018668,0.0000018442,0.0000018364, +0.0000018381,0.0000018426,0.0000018427,0.0000018397,0.0000018444, +0.0000018721,0.0000018726,0.0000018292,0.0000018045,0.0000018103, +0.0000018251,0.0000018388,0.0000018118,0.0000018118,0.0000018638, +0.0000018959,0.0000019288,0.0000019303,0.0000018646,0.0000018521, +0.0000018643,0.0000018656,0.0000018593,0.0000018514,0.0000018422, +0.0000018358,0.0000018370,0.0000018484,0.0000018671,0.0000018875, +0.0000019022,0.0000019041,0.0000018833,0.0000018290,0.0000017687, +0.0000017320,0.0000017150,0.0000017051,0.0000016981,0.0000016938, +0.0000016914,0.0000016912,0.0000016913,0.0000016908,0.0000016914, +0.0000016932,0.0000016970,0.0000017007,0.0000017010,0.0000016975, +0.0000016955,0.0000016938,0.0000016820,0.0000016554,0.0000016270, +0.0000016140,0.0000016112,0.0000016128,0.0000016089,0.0000015934, +0.0000015722,0.0000015651,0.0000015762,0.0000015915,0.0000016015, +0.0000016077,0.0000016156,0.0000016215,0.0000016233,0.0000016235, +0.0000016234,0.0000016247,0.0000016266,0.0000016269,0.0000016263, +0.0000016223,0.0000016174,0.0000016129,0.0000016083,0.0000016046, +0.0000016021,0.0000016005,0.0000016002,0.0000016021,0.0000016056, +0.0000016099,0.0000016143,0.0000016175,0.0000016192,0.0000016191, +0.0000016159,0.0000016071,0.0000015904,0.0000015621,0.0000015633, +0.0000015930,0.0000016195,0.0000016341,0.0000016354,0.0000016375, +0.0000016430,0.0000016444,0.0000016396,0.0000016319,0.0000016287, +0.0000016298,0.0000016338,0.0000016382,0.0000016414,0.0000016420, +0.0000016407,0.0000016388,0.0000016374,0.0000016376,0.0000016388, +0.0000016394,0.0000016395,0.0000016388,0.0000016282,0.0000016190, +0.0000016505,0.0000017470,0.0000018273,0.0000018508,0.0000018550, +0.0000018595,0.0000018336,0.0000017638,0.0000017138,0.0000017067, +0.0000017168,0.0000017330,0.0000017436,0.0000017562,0.0000017652, +0.0000017541,0.0000017314,0.0000017143,0.0000017096,0.0000017139, +0.0000017268,0.0000017427,0.0000017582,0.0000017675,0.0000017710, +0.0000017678,0.0000017605,0.0000017530,0.0000017462,0.0000017410, +0.0000017382,0.0000017401,0.0000017369,0.0000017371,0.0000017389, +0.0000017415,0.0000017447,0.0000017478,0.0000017516,0.0000017550, +0.0000017569,0.0000017575,0.0000017576,0.0000017580,0.0000017583, +0.0000017581,0.0000017578,0.0000017576,0.0000017578,0.0000017593, +0.0000017615,0.0000017635,0.0000017650,0.0000017665,0.0000017687, +0.0000017719,0.0000017756,0.0000017784,0.0000017806,0.0000017834, +0.0000017874,0.0000017911,0.0000017957,0.0000017996,0.0000018031, +0.0000018060,0.0000018074,0.0000018066,0.0000018019,0.0000017968, +0.0000017949,0.0000017960,0.0000017972,0.0000017987,0.0000017936, +0.0000017670,0.0000017236,0.0000016958,0.0000017166,0.0000017818, +0.0000018489,0.0000018798,0.0000018897,0.0000018982,0.0000019076, +0.0000019131,0.0000019153,0.0000019173,0.0000019204,0.0000019251, +0.0000019314,0.0000019375,0.0000019442,0.0000019511,0.0000019581, +0.0000019656,0.0000019706,0.0000019745,0.0000019736,0.0000019688, +0.0000019599,0.0000019505,0.0000019461,0.0000019512,0.0000019638, +0.0000019768,0.0000019856,0.0000019896,0.0000019908,0.0000019909, +0.0000019918,0.0000019936,0.0000019963,0.0000019997,0.0000020038, +0.0000020086,0.0000020137,0.0000020186,0.0000020227,0.0000020251, +0.0000020255,0.0000020230,0.0000020197,0.0000020155,0.0000020122, +0.0000020113,0.0000020135,0.0000020183,0.0000020205,0.0000020220, +0.0000020217,0.0000020214,0.0000020211,0.0000020200,0.0000020195, +0.0000020203,0.0000020210,0.0000020213,0.0000020252,0.0000020329, +0.0000020366,0.0000020324,0.0000020252,0.0000020187,0.0000019981, +0.0000019631,0.0000019446,0.0000019427,0.0000019389,0.0000019359, +0.0000019390,0.0000019450,0.0000019529,0.0000019573,0.0000019534, +0.0000018989,0.0000018381,0.0000017582,0.0000017013,0.0000017377, +0.0000018321,0.0000018902,0.0000019114,0.0000019141,0.0000019148, +0.0000019133,0.0000019105,0.0000019094,0.0000019105,0.0000019120, +0.0000019138,0.0000019145,0.0000019138,0.0000019117,0.0000019096, +0.0000019086,0.0000019094,0.0000019117,0.0000019138,0.0000019143, +0.0000019110,0.0000019089,0.0000019030,0.0000018893,0.0000018723, +0.0000018570,0.0000018434,0.0000018364,0.0000018323,0.0000018323, +0.0000018311,0.0000018304,0.0000018292,0.0000018279,0.0000018259, +0.0000018244,0.0000018243,0.0000018256,0.0000018286,0.0000018324, +0.0000018366,0.0000018413,0.0000018463,0.0000018521,0.0000018619, +0.0000018775,0.0000018975,0.0000019159,0.0000019257,0.0000019249, +0.0000019162,0.0000019050,0.0000018965,0.0000018934,0.0000018938, +0.0000018945,0.0000018930,0.0000018890,0.0000018834,0.0000018804, +0.0000018804,0.0000018780,0.0000018744,0.0000018786,0.0000018814, +0.0000018832,0.0000018782,0.0000018737,0.0000018675,0.0000018656, +0.0000018684,0.0000018664,0.0000018608,0.0000018543,0.0000018419, +0.0000018334,0.0000018348,0.0000018512,0.0000018734,0.0000018870, +0.0000019012,0.0000019165,0.0000019211,0.0000019180,0.0000019147, +0.0000019084,0.0000018946,0.0000018814,0.0000018733,0.0000018711, +0.0000018718,0.0000018672,0.0000018522,0.0000018363,0.0000018232, +0.0000018061,0.0000017872,0.0000017690,0.0000017584,0.0000017576, +0.0000017600,0.0000017626,0.0000017612,0.0000017504,0.0000017346, +0.0000017236,0.0000017178,0.0000017114,0.0000017042,0.0000017010, +0.0000017017,0.0000017026,0.0000017020,0.0000017032,0.0000017125, +0.0000017255,0.0000017307,0.0000017280,0.0000017243,0.0000017226, +0.0000017141,0.0000017012,0.0000016959,0.0000016918,0.0000016800, +0.0000016713,0.0000016659,0.0000016546,0.0000016481,0.0000016498, +0.0000016482,0.0000016440,0.0000016471,0.0000016557,0.0000016609, +0.0000016627,0.0000016622,0.0000016569,0.0000016495,0.0000016469, +0.0000016450,0.0000016392,0.0000016332,0.0000016256,0.0000016214, +0.0000016218,0.0000016206,0.0000016194,0.0000016222,0.0000016213, +0.0000016094,0.0000015972,0.0000015912,0.0000015937,0.0000016076, +0.0000016227,0.0000016358,0.0000016509,0.0000016608,0.0000016659, +0.0000016711,0.0000016720,0.0000016650,0.0000016558,0.0000016547, +0.0000016548,0.0000016491,0.0000016464,0.0000016454,0.0000016413, +0.0000016353,0.0000016293,0.0000016245,0.0000016212,0.0000016212, +0.0000016231,0.0000016251,0.0000016250,0.0000016232,0.0000016192, +0.0000016168,0.0000016158,0.0000016167,0.0000016180,0.0000016198, +0.0000016250,0.0000016348,0.0000016459,0.0000016560,0.0000016677, +0.0000016818,0.0000016939,0.0000016998,0.0000016998,0.0000016953, +0.0000016929,0.0000017004,0.0000017289,0.0000017591,0.0000017785, +0.0000017745,0.0000017615,0.0000017556,0.0000017613,0.0000017720, +0.0000017778,0.0000017769,0.0000017715,0.0000017647,0.0000017572, +0.0000017511,0.0000017472,0.0000017452,0.0000017470,0.0000017516, +0.0000017580,0.0000017624,0.0000017606,0.0000017569,0.0000017554, +0.0000017504,0.0000017436,0.0000017382,0.0000017253,0.0000017025, +0.0000016927,0.0000017177,0.0000017533,0.0000017571,0.0000017516, +0.0000017533,0.0000017566,0.0000017636,0.0000017778,0.0000017895, +0.0000018005,0.0000018111,0.0000018218,0.0000018267,0.0000018271, +0.0000018283,0.0000018322,0.0000018354,0.0000018351,0.0000018349, +0.0000018380,0.0000018412,0.0000018347,0.0000018124,0.0000017910, +0.0000017627,0.0000017318,0.0000017318,0.0000017500,0.0000017434, +0.0000017128,0.0000017025,0.0000016936,0.0000016915,0.0000017080, +0.0000017161,0.0000017193,0.0000017262,0.0000017334,0.0000017404, +0.0000017443,0.0000017459,0.0000017512,0.0000017581,0.0000017626, +0.0000017694,0.0000017721,0.0000017746,0.0000017807,0.0000017839, +0.0000017925,0.0000017982,0.0000018019,0.0000018196,0.0000018300, +0.0000018152,0.0000018104,0.0000017980,0.0000017530,0.0000017337, +0.0000017382,0.0000017415,0.0000017677,0.0000017833,0.0000017846, +0.0000017840,0.0000017648,0.0000017266,0.0000016966,0.0000016816, +0.0000016737,0.0000016709,0.0000016728,0.0000016736,0.0000016779, +0.0000016922,0.0000017063,0.0000017184,0.0000017336,0.0000017445, +0.0000017491,0.0000017516,0.0000017525,0.0000017523,0.0000017521, +0.0000017518,0.0000017506,0.0000017491,0.0000017481,0.0000017471, +0.0000017448,0.0000017404,0.0000017364,0.0000017362,0.0000017435, +0.0000017601,0.0000017803,0.0000017957,0.0000018024,0.0000018043, +0.0000018028,0.0000017931,0.0000017800,0.0000017700,0.0000017603, +0.0000017541,0.0000017535,0.0000017535,0.0000017529,0.0000017470, +0.0000017431,0.0000017547,0.0000017779,0.0000017824,0.0000017539, +0.0000017143,0.0000016986,0.0000017018,0.0000017128,0.0000017396, +0.0000017758,0.0000017906,0.0000017857,0.0000017807,0.0000017937, +0.0000018517,0.0000019226,0.0000019515,0.0000019297,0.0000019124, +0.0000019537,0.0000019994,0.0000019994,0.0000020026,0.0000020168, +0.0000020093,0.0000019793,0.0000019615,0.0000019766,0.0000020093, +0.0000020185,0.0000020057,0.0000019891,0.0000019800,0.0000019771, +0.0000019769,0.0000019775,0.0000019782,0.0000019783,0.0000019780, +0.0000019777,0.0000019775,0.0000019773,0.0000019771,0.0000019770, +0.0000019778,0.0000019792,0.0000019814,0.0000019840,0.0000019868, +0.0000019899,0.0000019945,0.0000020030,0.0000020135,0.0000020172, +0.0000020091,0.0000020007,0.0000020099,0.0000020195,0.0000020163, +0.0000020115,0.0000020035,0.0000019819,0.0000019660,0.0000019720, +0.0000019935,0.0000020168,0.0000020301,0.0000020323,0.0000020317, +0.0000020311,0.0000020298,0.0000020340,0.0000020358,0.0000020304, +0.0000020278,0.0000020226,0.0000020165,0.0000020149,0.0000020112, +0.0000019975,0.0000019330,0.0000018684,0.0000018577,0.0000018520, +0.0000018240,0.0000018064,0.0000018305,0.0000018856,0.0000019238, +0.0000019296,0.0000019189,0.0000018924,0.0000018682,0.0000018571, +0.0000018549,0.0000018525,0.0000018461,0.0000018422,0.0000018505, +0.0000018758,0.0000018908,0.0000018530,0.0000018084,0.0000018059, +0.0000018164,0.0000018360,0.0000018304,0.0000017970,0.0000018573, +0.0000018726,0.0000019271,0.0000019335,0.0000018816,0.0000018554, +0.0000018856,0.0000018980,0.0000018966,0.0000018883,0.0000018821, +0.0000018787,0.0000018791,0.0000018867,0.0000018973,0.0000019035, +0.0000019019,0.0000018817,0.0000018335,0.0000017756,0.0000017338, +0.0000017128,0.0000017043,0.0000016982,0.0000016925,0.0000016903, +0.0000016903,0.0000016914,0.0000016931,0.0000016945,0.0000016952, +0.0000016954,0.0000016958,0.0000016960,0.0000016954,0.0000016949, +0.0000016933,0.0000016834,0.0000016583,0.0000016274,0.0000016133, +0.0000016129,0.0000016163,0.0000016114,0.0000015951,0.0000015761, +0.0000015687,0.0000015788,0.0000015933,0.0000016036,0.0000016116, +0.0000016220,0.0000016301,0.0000016314,0.0000016274,0.0000016248, +0.0000016242,0.0000016240,0.0000016237,0.0000016213,0.0000016157, +0.0000016087,0.0000016015,0.0000015950,0.0000015900,0.0000015868, +0.0000015849,0.0000015838,0.0000015843,0.0000015868,0.0000015908, +0.0000015954,0.0000016004,0.0000016058,0.0000016104,0.0000016139, +0.0000016155,0.0000016149,0.0000016082,0.0000015922,0.0000015618, +0.0000015601,0.0000015906,0.0000016181,0.0000016323,0.0000016330, +0.0000016312,0.0000016330,0.0000016339,0.0000016312,0.0000016292, +0.0000016295,0.0000016325,0.0000016375,0.0000016413,0.0000016419, +0.0000016387,0.0000016336,0.0000016320,0.0000016350,0.0000016390, +0.0000016409,0.0000016409,0.0000016408,0.0000016350,0.0000016205, +0.0000016327,0.0000017178,0.0000018182,0.0000018594,0.0000018705, +0.0000018727,0.0000018393,0.0000017645,0.0000017136,0.0000017062, +0.0000017135,0.0000017285,0.0000017379,0.0000017438,0.0000017532, +0.0000017589,0.0000017550,0.0000017463,0.0000017413,0.0000017416, +0.0000017433,0.0000017454,0.0000017476,0.0000017461,0.0000017461, +0.0000017431,0.0000017411,0.0000017407,0.0000017399,0.0000017411, +0.0000017440,0.0000017470,0.0000017498,0.0000017528,0.0000017556, +0.0000017572,0.0000017582,0.0000017591,0.0000017605,0.0000017622, +0.0000017630,0.0000017617,0.0000017607,0.0000017588,0.0000017574, +0.0000017568,0.0000017566,0.0000017571,0.0000017581,0.0000017601, +0.0000017631,0.0000017658,0.0000017680,0.0000017704,0.0000017733, +0.0000017763,0.0000017790,0.0000017813,0.0000017839,0.0000017877, +0.0000017927,0.0000017976,0.0000018019,0.0000018051,0.0000018072, +0.0000018073,0.0000018053,0.0000018013,0.0000017978,0.0000017970, +0.0000017981,0.0000017990,0.0000017989,0.0000017921,0.0000017626, +0.0000017166,0.0000016876,0.0000017003,0.0000017548,0.0000018196, +0.0000018596,0.0000018700,0.0000018738,0.0000018807,0.0000018882, +0.0000018949,0.0000019018,0.0000019097,0.0000019188,0.0000019282, +0.0000019375,0.0000019447,0.0000019523,0.0000019579,0.0000019617, +0.0000019598,0.0000019515,0.0000019381,0.0000019243,0.0000019155, +0.0000019155,0.0000019241,0.0000019420,0.0000019640,0.0000019796, +0.0000019851,0.0000019830,0.0000019781,0.0000019745,0.0000019737, +0.0000019746,0.0000019764,0.0000019789,0.0000019826,0.0000019876, +0.0000019936,0.0000020004,0.0000020069,0.0000020126,0.0000020174, +0.0000020206,0.0000020215,0.0000020208,0.0000020190,0.0000020159, +0.0000020114,0.0000020084,0.0000020096,0.0000020139,0.0000020191, +0.0000020225,0.0000020239,0.0000020259,0.0000020247,0.0000020225, +0.0000020217,0.0000020223,0.0000020238,0.0000020284,0.0000020357, +0.0000020388,0.0000020344,0.0000020277,0.0000020181,0.0000019899, +0.0000019603,0.0000019540,0.0000019515,0.0000019412,0.0000019376, +0.0000019448,0.0000019546,0.0000019579,0.0000019578,0.0000019100, +0.0000018492,0.0000017710,0.0000017067,0.0000017317,0.0000018184, +0.0000018725,0.0000018814,0.0000018807,0.0000018814,0.0000018821, +0.0000018813,0.0000018817,0.0000018842,0.0000018876,0.0000018919, +0.0000018950,0.0000018952,0.0000018925,0.0000018883,0.0000018840, +0.0000018812,0.0000018800,0.0000018802,0.0000018822,0.0000018855, +0.0000018936,0.0000019002,0.0000019064,0.0000019055,0.0000018965, +0.0000018828,0.0000018672,0.0000018548,0.0000018454,0.0000018365, +0.0000018308,0.0000018249,0.0000018210,0.0000018159,0.0000018132, +0.0000018130,0.0000018149,0.0000018172,0.0000018205,0.0000018239, +0.0000018280,0.0000018331,0.0000018408,0.0000018504,0.0000018609, +0.0000018738,0.0000018921,0.0000019092,0.0000019167,0.0000019153, +0.0000019093,0.0000019019,0.0000018964,0.0000018943,0.0000018934, +0.0000018908,0.0000018864,0.0000018824,0.0000018817,0.0000018835, +0.0000018806,0.0000018806,0.0000018870,0.0000018921,0.0000018918, +0.0000018844,0.0000018787,0.0000018718,0.0000018685,0.0000018709, +0.0000018696,0.0000018633,0.0000018577,0.0000018470,0.0000018349, +0.0000018344,0.0000018474,0.0000018687,0.0000018846,0.0000019020, +0.0000019200,0.0000019258,0.0000019218,0.0000019154,0.0000019067, +0.0000018945,0.0000018855,0.0000018776,0.0000018726,0.0000018723, +0.0000018689,0.0000018546,0.0000018354,0.0000018187,0.0000017999, +0.0000017809,0.0000017660,0.0000017606,0.0000017610,0.0000017636, +0.0000017651,0.0000017605,0.0000017467,0.0000017318,0.0000017229, +0.0000017169,0.0000017099,0.0000017053,0.0000017053,0.0000017064, +0.0000017059,0.0000017061,0.0000017134,0.0000017281,0.0000017394, +0.0000017403,0.0000017353,0.0000017314,0.0000017277,0.0000017156, +0.0000017022,0.0000016968,0.0000016905,0.0000016781,0.0000016710, +0.0000016637,0.0000016522,0.0000016498,0.0000016517,0.0000016474, +0.0000016453,0.0000016519,0.0000016586,0.0000016608,0.0000016612, +0.0000016596,0.0000016532,0.0000016478,0.0000016471,0.0000016433, +0.0000016371,0.0000016300,0.0000016216,0.0000016195,0.0000016201, +0.0000016184,0.0000016173,0.0000016194,0.0000016149,0.0000016020, +0.0000015925,0.0000015892,0.0000015956,0.0000016120,0.0000016260, +0.0000016396,0.0000016544,0.0000016628,0.0000016691,0.0000016739, +0.0000016712,0.0000016609,0.0000016551,0.0000016555,0.0000016520, +0.0000016486,0.0000016479,0.0000016446,0.0000016390,0.0000016332, +0.0000016271,0.0000016212,0.0000016167,0.0000016151,0.0000016169, +0.0000016203,0.0000016240,0.0000016245,0.0000016222,0.0000016189, +0.0000016155,0.0000016137,0.0000016139,0.0000016170,0.0000016251, +0.0000016359,0.0000016475,0.0000016613,0.0000016769,0.0000016894, +0.0000016952,0.0000016956,0.0000016921,0.0000016865,0.0000016884, +0.0000017179,0.0000017610,0.0000017771,0.0000017712,0.0000017618, +0.0000017628,0.0000017714,0.0000017766,0.0000017757,0.0000017688, +0.0000017579,0.0000017472,0.0000017390,0.0000017349,0.0000017331, +0.0000017333,0.0000017374,0.0000017440,0.0000017525,0.0000017568, +0.0000017549,0.0000017529,0.0000017516,0.0000017458,0.0000017388, +0.0000017317,0.0000017174,0.0000016963,0.0000016872,0.0000017117, +0.0000017513,0.0000017570,0.0000017512,0.0000017528,0.0000017559, +0.0000017634,0.0000017794,0.0000017919,0.0000018019,0.0000018115, +0.0000018216,0.0000018262,0.0000018255,0.0000018239,0.0000018250, +0.0000018280,0.0000018303,0.0000018324,0.0000018378,0.0000018420, +0.0000018353,0.0000018116,0.0000017884,0.0000017572,0.0000017301, +0.0000017367,0.0000017539,0.0000017371,0.0000017108,0.0000017034, +0.0000016927,0.0000016985,0.0000017124,0.0000017168,0.0000017236, +0.0000017305,0.0000017376,0.0000017461,0.0000017515,0.0000017508, +0.0000017516,0.0000017576,0.0000017650,0.0000017723,0.0000017746, +0.0000017759,0.0000017821,0.0000017883,0.0000017971,0.0000018003, +0.0000018067,0.0000018264,0.0000018286,0.0000018121,0.0000018094, +0.0000017891,0.0000017434,0.0000017370,0.0000017369,0.0000017479, +0.0000017764,0.0000017853,0.0000017845,0.0000017705,0.0000017362, +0.0000017057,0.0000016908,0.0000016825,0.0000016794,0.0000016844, +0.0000016863,0.0000016814,0.0000016849,0.0000016993,0.0000017113, +0.0000017223,0.0000017337,0.0000017402,0.0000017443,0.0000017483, +0.0000017509,0.0000017522,0.0000017528,0.0000017522,0.0000017505, +0.0000017494,0.0000017497,0.0000017500,0.0000017486,0.0000017464, +0.0000017476,0.0000017564,0.0000017729,0.0000017903,0.0000018011, +0.0000018045,0.0000018047,0.0000018011,0.0000017880,0.0000017748, +0.0000017658,0.0000017562,0.0000017500,0.0000017482,0.0000017506, +0.0000017563,0.0000017525,0.0000017451,0.0000017561,0.0000017790, +0.0000017818,0.0000017500,0.0000017105,0.0000016984,0.0000017037, +0.0000017145,0.0000017395,0.0000017767,0.0000017920,0.0000017868, +0.0000017814,0.0000017852,0.0000018275,0.0000019014,0.0000019493, +0.0000019379,0.0000019131,0.0000019427,0.0000019920,0.0000019993, +0.0000020049,0.0000020215,0.0000020202,0.0000019919,0.0000019641, +0.0000019649,0.0000019897,0.0000020116,0.0000020127,0.0000020041, +0.0000019956,0.0000019914,0.0000019903,0.0000019915,0.0000019941, +0.0000019973,0.0000020012,0.0000020060,0.0000020102,0.0000020128, +0.0000020140,0.0000020141,0.0000020133,0.0000020119,0.0000020107, +0.0000020103,0.0000020113,0.0000020138,0.0000020161,0.0000020184, +0.0000020156,0.0000020043,0.0000019974,0.0000020061,0.0000020202, +0.0000020200,0.0000020136,0.0000020075,0.0000019890,0.0000019663, +0.0000019629,0.0000019781,0.0000020028,0.0000020229,0.0000020304, +0.0000020308,0.0000020306,0.0000020301,0.0000020349,0.0000020355, +0.0000020281,0.0000020247,0.0000020196,0.0000020158,0.0000020142, +0.0000020084,0.0000019924,0.0000019282,0.0000018653,0.0000018574, +0.0000018661,0.0000018444,0.0000018252,0.0000018458,0.0000018946, +0.0000019297,0.0000019384,0.0000019356,0.0000019200,0.0000018978, +0.0000018803,0.0000018673,0.0000018576,0.0000018504,0.0000018506, +0.0000018651,0.0000018872,0.0000019025,0.0000018776,0.0000018211, +0.0000018015,0.0000018128,0.0000018232,0.0000018423,0.0000018145, +0.0000018185,0.0000018626,0.0000019099,0.0000019328,0.0000019081, +0.0000018581,0.0000018987,0.0000019238,0.0000019242,0.0000019192, +0.0000019138,0.0000019104,0.0000019073,0.0000019068,0.0000019070, +0.0000018989,0.0000018721,0.0000018267,0.0000017753,0.0000017360, +0.0000017137,0.0000017027,0.0000016952,0.0000016903,0.0000016896, +0.0000016906,0.0000016920,0.0000016931,0.0000016934,0.0000016931, +0.0000016920,0.0000016902,0.0000016892,0.0000016897,0.0000016907, +0.0000016890,0.0000016801,0.0000016589,0.0000016295,0.0000016124, +0.0000016128,0.0000016170,0.0000016105,0.0000015946,0.0000015780, +0.0000015720,0.0000015816,0.0000015952,0.0000016065,0.0000016150, +0.0000016259,0.0000016340,0.0000016346,0.0000016323,0.0000016282, +0.0000016258,0.0000016242,0.0000016204,0.0000016147,0.0000016084, +0.0000016021,0.0000015957,0.0000015894,0.0000015836,0.0000015790, +0.0000015763,0.0000015750,0.0000015746,0.0000015751,0.0000015770, +0.0000015802,0.0000015840,0.0000015878,0.0000015922,0.0000015969, +0.0000016021,0.0000016072,0.0000016108,0.0000016124,0.0000016084, +0.0000015939,0.0000015624,0.0000015594,0.0000015885,0.0000016169, +0.0000016309,0.0000016310,0.0000016269,0.0000016264,0.0000016273, +0.0000016278,0.0000016286,0.0000016315,0.0000016365,0.0000016404, +0.0000016402,0.0000016348,0.0000016295,0.0000016308,0.0000016369, +0.0000016415,0.0000016427,0.0000016424,0.0000016419,0.0000016394, +0.0000016257,0.0000016226,0.0000016847,0.0000017897,0.0000018529, +0.0000018731,0.0000018762,0.0000018396,0.0000017633,0.0000017117, +0.0000017052,0.0000017130,0.0000017258,0.0000017348,0.0000017378, +0.0000017418,0.0000017482,0.0000017533,0.0000017546,0.0000017553, +0.0000017564,0.0000017561,0.0000017539,0.0000017519,0.0000017512, +0.0000017518,0.0000017534,0.0000017553,0.0000017576,0.0000017596, +0.0000017608,0.0000017612,0.0000017617,0.0000017623,0.0000017630, +0.0000017631,0.0000017626,0.0000017620,0.0000017612,0.0000017607, +0.0000017608,0.0000017610,0.0000017595,0.0000017591,0.0000017571, +0.0000017574,0.0000017588,0.0000017604,0.0000017624,0.0000017649, +0.0000017680,0.0000017710,0.0000017739,0.0000017768,0.0000017800, +0.0000017832,0.0000017859,0.0000017881,0.0000017903,0.0000017929, +0.0000017964,0.0000018002,0.0000018036,0.0000018053,0.0000018065, +0.0000018056,0.0000018027,0.0000017989,0.0000017965,0.0000017957, +0.0000017953,0.0000017950,0.0000017948,0.0000017883,0.0000017607, +0.0000017145,0.0000016781,0.0000016745,0.0000017015,0.0000017533, +0.0000018021,0.0000018305,0.0000018431,0.0000018507,0.0000018583, +0.0000018680,0.0000018802,0.0000018948,0.0000019094,0.0000019223, +0.0000019325,0.0000019371,0.0000019376,0.0000019327,0.0000019212, +0.0000019033,0.0000018807,0.0000018610,0.0000018517,0.0000018596, +0.0000018820,0.0000019132,0.0000019441,0.0000019700,0.0000019811, +0.0000019791,0.0000019716,0.0000019652,0.0000019636,0.0000019638, +0.0000019654,0.0000019666,0.0000019667,0.0000019668,0.0000019683, +0.0000019716,0.0000019773,0.0000019859,0.0000019962,0.0000020044, +0.0000020092,0.0000020120,0.0000020135,0.0000020141,0.0000020145, +0.0000020145,0.0000020125,0.0000020082,0.0000020043,0.0000020051, +0.0000020097,0.0000020160,0.0000020227,0.0000020267,0.0000020283, +0.0000020259,0.0000020239,0.0000020241,0.0000020255,0.0000020299, +0.0000020370,0.0000020388,0.0000020338,0.0000020279,0.0000020144, +0.0000019841,0.0000019651,0.0000019621,0.0000019485,0.0000019344, +0.0000019367,0.0000019483,0.0000019564,0.0000019577,0.0000019181, +0.0000018588,0.0000017905,0.0000017163,0.0000017171,0.0000017824, +0.0000018353,0.0000018477,0.0000018509,0.0000018543,0.0000018561, +0.0000018560,0.0000018559,0.0000018571,0.0000018562,0.0000018543, +0.0000018549,0.0000018543,0.0000018517,0.0000018475,0.0000018434, +0.0000018429,0.0000018432,0.0000018420,0.0000018379,0.0000018372, +0.0000018433,0.0000018517,0.0000018686,0.0000018868,0.0000018980, +0.0000019048,0.0000019021,0.0000018984,0.0000018884,0.0000018743, +0.0000018590,0.0000018447,0.0000018327,0.0000018242,0.0000018193, +0.0000018178,0.0000018185,0.0000018193,0.0000018181,0.0000018171, +0.0000018164,0.0000018180,0.0000018234,0.0000018325,0.0000018418, +0.0000018512,0.0000018659,0.0000018844,0.0000019010,0.0000019100, +0.0000019102,0.0000019060,0.0000019006,0.0000018954,0.0000018919, +0.0000018888,0.0000018848,0.0000018837,0.0000018847,0.0000018867, +0.0000018830,0.0000018872,0.0000018943,0.0000019004,0.0000018985, +0.0000018912,0.0000018834,0.0000018750,0.0000018708,0.0000018721, +0.0000018716,0.0000018657,0.0000018592,0.0000018511,0.0000018383, +0.0000018349,0.0000018446,0.0000018640,0.0000018827,0.0000019023, +0.0000019210,0.0000019278,0.0000019233,0.0000019138,0.0000019031, +0.0000018941,0.0000018892,0.0000018814,0.0000018743,0.0000018722, +0.0000018684,0.0000018537,0.0000018321,0.0000018125,0.0000017928, +0.0000017759,0.0000017654,0.0000017621,0.0000017625,0.0000017654, +0.0000017662,0.0000017585,0.0000017435,0.0000017297,0.0000017209, +0.0000017139,0.0000017091,0.0000017087,0.0000017098,0.0000017101, +0.0000017112,0.0000017178,0.0000017312,0.0000017449,0.0000017501, +0.0000017484,0.0000017422,0.0000017376,0.0000017311,0.0000017173, +0.0000017043,0.0000016973,0.0000016887,0.0000016768,0.0000016709, +0.0000016616,0.0000016517,0.0000016525,0.0000016522,0.0000016465, +0.0000016482,0.0000016556,0.0000016588,0.0000016594,0.0000016598, +0.0000016570,0.0000016503,0.0000016481,0.0000016469,0.0000016410, +0.0000016348,0.0000016261,0.0000016186,0.0000016178,0.0000016177, +0.0000016143,0.0000016139,0.0000016154,0.0000016080,0.0000015961, +0.0000015888,0.0000015881,0.0000015996,0.0000016162,0.0000016284, +0.0000016431,0.0000016571,0.0000016652,0.0000016726,0.0000016750, +0.0000016677,0.0000016577,0.0000016559,0.0000016544,0.0000016511, +0.0000016525,0.0000016539,0.0000016516,0.0000016459,0.0000016380, +0.0000016297,0.0000016218,0.0000016147,0.0000016114,0.0000016119, +0.0000016159,0.0000016205,0.0000016239,0.0000016259,0.0000016241, +0.0000016203,0.0000016172,0.0000016167,0.0000016222,0.0000016316, +0.0000016436,0.0000016587,0.0000016741,0.0000016856,0.0000016902, +0.0000016905,0.0000016879,0.0000016816,0.0000016837,0.0000017174, +0.0000017669,0.0000017756,0.0000017693,0.0000017659,0.0000017706, +0.0000017752,0.0000017743,0.0000017658,0.0000017511,0.0000017340, +0.0000017213,0.0000017151,0.0000017132,0.0000017129,0.0000017159, +0.0000017234,0.0000017339,0.0000017451,0.0000017494,0.0000017484, +0.0000017481,0.0000017473,0.0000017408,0.0000017324,0.0000017227, +0.0000017084,0.0000016899,0.0000016819,0.0000017062,0.0000017495, +0.0000017567,0.0000017509,0.0000017521,0.0000017549,0.0000017626, +0.0000017800,0.0000017935,0.0000018031,0.0000018120,0.0000018215, +0.0000018262,0.0000018247,0.0000018204,0.0000018200,0.0000018224, +0.0000018257,0.0000018301,0.0000018377,0.0000018421,0.0000018331, +0.0000018069,0.0000017829,0.0000017503,0.0000017286,0.0000017432, +0.0000017540,0.0000017290,0.0000017115,0.0000017029,0.0000016958, +0.0000017064,0.0000017142,0.0000017199,0.0000017247,0.0000017287, +0.0000017366,0.0000017466,0.0000017548,0.0000017562,0.0000017528, +0.0000017563,0.0000017664,0.0000017748,0.0000017771,0.0000017772, +0.0000017838,0.0000017929,0.0000018010,0.0000018029,0.0000018131, +0.0000018304,0.0000018259,0.0000018102,0.0000018074,0.0000017780, +0.0000017388,0.0000017370,0.0000017369,0.0000017562,0.0000017822, +0.0000017853,0.0000017757,0.0000017461,0.0000017142,0.0000016983, +0.0000016916,0.0000016882,0.0000016925,0.0000016972,0.0000016884, +0.0000016827,0.0000016917,0.0000017060,0.0000017139,0.0000017200, +0.0000017232,0.0000017243,0.0000017298,0.0000017402,0.0000017494, +0.0000017536,0.0000017536,0.0000017518,0.0000017501,0.0000017496, +0.0000017499,0.0000017499,0.0000017508,0.0000017557,0.0000017674, +0.0000017830,0.0000017965,0.0000018036,0.0000018057,0.0000018051, +0.0000017975,0.0000017823,0.0000017707,0.0000017622,0.0000017519, +0.0000017443,0.0000017426,0.0000017503,0.0000017614,0.0000017571, +0.0000017476,0.0000017582,0.0000017798,0.0000017810,0.0000017471, +0.0000017075,0.0000016976,0.0000017048,0.0000017156,0.0000017374, +0.0000017751,0.0000017932,0.0000017876,0.0000017827,0.0000017829, +0.0000018059,0.0000018731,0.0000019393,0.0000019463,0.0000019153, +0.0000019319,0.0000019813,0.0000019970,0.0000020068,0.0000020243, +0.0000020277,0.0000020099,0.0000019786,0.0000019630,0.0000019707, +0.0000019874,0.0000019996,0.0000020016,0.0000020010,0.0000020014, +0.0000020017,0.0000020029,0.0000020043,0.0000020065,0.0000020099, +0.0000020148,0.0000020205,0.0000020253,0.0000020291,0.0000020319, +0.0000020333,0.0000020329,0.0000020305,0.0000020270,0.0000020232, +0.0000020186,0.0000020129,0.0000020053,0.0000019962,0.0000019936, +0.0000020037,0.0000020197,0.0000020223,0.0000020157,0.0000020097, +0.0000019932,0.0000019681,0.0000019573,0.0000019645,0.0000019868, +0.0000020124,0.0000020270,0.0000020297,0.0000020301,0.0000020313, +0.0000020363,0.0000020350,0.0000020268,0.0000020227,0.0000020181, +0.0000020167,0.0000020133,0.0000020053,0.0000019870,0.0000019232, +0.0000018629,0.0000018573,0.0000018788,0.0000018774,0.0000018645, +0.0000018760,0.0000019096,0.0000019359,0.0000019456,0.0000019455, +0.0000019363,0.0000019172,0.0000018948,0.0000018749,0.0000018606, +0.0000018553,0.0000018656,0.0000018856,0.0000019028,0.0000019055, +0.0000018911,0.0000018396,0.0000018016,0.0000018041,0.0000018188, +0.0000018331,0.0000018345,0.0000018015,0.0000018530,0.0000018814, +0.0000019325,0.0000019267,0.0000018646,0.0000018980,0.0000019319, +0.0000019221,0.0000019119,0.0000019094,0.0000019078,0.0000019039, +0.0000018947,0.0000018770,0.0000018470,0.0000018063,0.0000017646, +0.0000017311,0.0000017101,0.0000017009,0.0000016954,0.0000016885, +0.0000016852,0.0000016874,0.0000016911,0.0000016926,0.0000016924, +0.0000016918,0.0000016911,0.0000016899,0.0000016874,0.0000016838, +0.0000016796,0.0000016739,0.0000016640,0.0000016463,0.0000016229, +0.0000016103,0.0000016118,0.0000016177,0.0000016112,0.0000015938, +0.0000015796,0.0000015764,0.0000015841,0.0000015976,0.0000016103, +0.0000016205,0.0000016305,0.0000016365,0.0000016375,0.0000016359, +0.0000016329,0.0000016300,0.0000016265,0.0000016200,0.0000016109, +0.0000016030,0.0000015979,0.0000015943,0.0000015906,0.0000015874, +0.0000015833,0.0000015808,0.0000015815,0.0000015828,0.0000015836, +0.0000015837,0.0000015837,0.0000015842,0.0000015851,0.0000015865, +0.0000015878,0.0000015886,0.0000015903,0.0000015927,0.0000015991, +0.0000016056,0.0000016105,0.0000016087,0.0000015953,0.0000015630, +0.0000015580,0.0000015865,0.0000016157,0.0000016301,0.0000016301, +0.0000016257,0.0000016227,0.0000016229,0.0000016249,0.0000016294, +0.0000016345,0.0000016376,0.0000016362,0.0000016308,0.0000016284, +0.0000016333,0.0000016390,0.0000016403,0.0000016399,0.0000016412, +0.0000016419,0.0000016415,0.0000016326,0.0000016251,0.0000016578, +0.0000017521,0.0000018292,0.0000018602,0.0000018664,0.0000018358, +0.0000017603,0.0000017098,0.0000017036,0.0000017143,0.0000017277, +0.0000017355,0.0000017382,0.0000017401,0.0000017436,0.0000017482, +0.0000017539,0.0000017591,0.0000017627,0.0000017645,0.0000017649, +0.0000017650,0.0000017651,0.0000017654,0.0000017661,0.0000017673, +0.0000017682,0.0000017681,0.0000017674,0.0000017663,0.0000017650, +0.0000017642,0.0000017640,0.0000017640,0.0000017639,0.0000017636, +0.0000017634,0.0000017639,0.0000017656,0.0000017674,0.0000017682, +0.0000017687,0.0000017693,0.0000017705,0.0000017725,0.0000017750, +0.0000017773,0.0000017794,0.0000017813,0.0000017831,0.0000017848, +0.0000017867,0.0000017891,0.0000017915,0.0000017932,0.0000017948, +0.0000017963,0.0000017973,0.0000017997,0.0000018017,0.0000018027, +0.0000018025,0.0000018009,0.0000017982,0.0000017952,0.0000017930, +0.0000017914,0.0000017895,0.0000017881,0.0000017879,0.0000017845, +0.0000017654,0.0000017255,0.0000016805,0.0000016538,0.0000016525, +0.0000016702,0.0000017091,0.0000017551,0.0000017933,0.0000018193, +0.0000018360,0.0000018492,0.0000018615,0.0000018726,0.0000018828, +0.0000018900,0.0000018897,0.0000018793,0.0000018610,0.0000018379, +0.0000018107,0.0000017819,0.0000017602,0.0000017560,0.0000017718, +0.0000018144,0.0000018606,0.0000019092,0.0000019506,0.0000019747, +0.0000019791,0.0000019734,0.0000019667,0.0000019636,0.0000019642, +0.0000019663,0.0000019682,0.0000019690,0.0000019687,0.0000019675, +0.0000019656,0.0000019637,0.0000019629,0.0000019614,0.0000019700, +0.0000019849,0.0000019993,0.0000020071,0.0000020091,0.0000020089, +0.0000020085,0.0000020089,0.0000020100,0.0000020101,0.0000020083, +0.0000020036,0.0000019999,0.0000020013,0.0000020072,0.0000020163, +0.0000020252,0.0000020288,0.0000020284,0.0000020265,0.0000020253, +0.0000020253,0.0000020303,0.0000020375,0.0000020367,0.0000020306, +0.0000020257,0.0000020079,0.0000019815,0.0000019718,0.0000019620, +0.0000019409,0.0000019330,0.0000019410,0.0000019502,0.0000019521, +0.0000019183,0.0000018615,0.0000018108,0.0000017416,0.0000017191, +0.0000017596,0.0000018175,0.0000018445,0.0000018555,0.0000018638, +0.0000018719,0.0000018762,0.0000018754,0.0000018710,0.0000018652, +0.0000018610,0.0000018587,0.0000018573,0.0000018565,0.0000018551, +0.0000018535,0.0000018530,0.0000018530,0.0000018515,0.0000018468, +0.0000018415,0.0000018391,0.0000018334,0.0000018366,0.0000018458, +0.0000018585,0.0000018737,0.0000018874,0.0000018996,0.0000019095, +0.0000019069,0.0000019044,0.0000018924,0.0000018777,0.0000018649, +0.0000018547,0.0000018479,0.0000018444,0.0000018405,0.0000018335, +0.0000018246,0.0000018173,0.0000018125,0.0000018130,0.0000018160, +0.0000018207,0.0000018274,0.0000018387,0.0000018539,0.0000018732, +0.0000018908,0.0000019016,0.0000019045,0.0000019014,0.0000018983, +0.0000018925,0.0000018876,0.0000018829,0.0000018814,0.0000018812, +0.0000018823,0.0000018802,0.0000018872,0.0000018946,0.0000019026, +0.0000019014,0.0000018950,0.0000018860,0.0000018775,0.0000018730, +0.0000018733,0.0000018725,0.0000018677,0.0000018603,0.0000018543, +0.0000018418,0.0000018366,0.0000018429,0.0000018595,0.0000018812, +0.0000019024,0.0000019204,0.0000019287,0.0000019238,0.0000019094, +0.0000018973,0.0000018927,0.0000018904,0.0000018829,0.0000018755, +0.0000018715,0.0000018664,0.0000018507,0.0000018270,0.0000018059, +0.0000017877,0.0000017740,0.0000017650,0.0000017617,0.0000017631, +0.0000017674,0.0000017665,0.0000017569,0.0000017419,0.0000017283, +0.0000017183,0.0000017125,0.0000017118,0.0000017137,0.0000017157, +0.0000017189,0.0000017262,0.0000017376,0.0000017494,0.0000017574, +0.0000017592,0.0000017552,0.0000017482,0.0000017427,0.0000017340, +0.0000017195,0.0000017058,0.0000016968,0.0000016865,0.0000016757, +0.0000016701,0.0000016594,0.0000016530,0.0000016550,0.0000016514, +0.0000016473,0.0000016520,0.0000016566,0.0000016572,0.0000016582, +0.0000016587,0.0000016542,0.0000016493,0.0000016485,0.0000016448, +0.0000016383,0.0000016320,0.0000016223,0.0000016161,0.0000016158, +0.0000016136,0.0000016093,0.0000016108,0.0000016112,0.0000016020, +0.0000015918,0.0000015871,0.0000015897,0.0000016044,0.0000016190, +0.0000016305,0.0000016467,0.0000016596,0.0000016683,0.0000016753, +0.0000016734,0.0000016631,0.0000016569,0.0000016559,0.0000016531, +0.0000016566,0.0000016666,0.0000016704,0.0000016679,0.0000016596, +0.0000016479,0.0000016365,0.0000016258,0.0000016164,0.0000016111, +0.0000016112,0.0000016142,0.0000016189,0.0000016246,0.0000016287, +0.0000016299,0.0000016290,0.0000016278,0.0000016293,0.0000016359, +0.0000016466,0.0000016605,0.0000016741,0.0000016829,0.0000016853, +0.0000016852,0.0000016830,0.0000016779,0.0000016844,0.0000017249, +0.0000017732,0.0000017760,0.0000017700,0.0000017704,0.0000017732, +0.0000017719,0.0000017610,0.0000017426,0.0000017210,0.0000017025, +0.0000016921,0.0000016885,0.0000016874,0.0000016876,0.0000016932, +0.0000017046,0.0000017195,0.0000017336,0.0000017393,0.0000017401, +0.0000017416,0.0000017411,0.0000017339,0.0000017239,0.0000017119, +0.0000016983,0.0000016830,0.0000016765,0.0000017012,0.0000017475, +0.0000017566,0.0000017508,0.0000017515,0.0000017541,0.0000017613, +0.0000017794,0.0000017941,0.0000018039,0.0000018123,0.0000018211, +0.0000018259,0.0000018239,0.0000018177,0.0000018160,0.0000018179, +0.0000018217,0.0000018280,0.0000018372,0.0000018410,0.0000018270, +0.0000017980,0.0000017750,0.0000017431,0.0000017314,0.0000017507, +0.0000017517,0.0000017219,0.0000017119,0.0000017014,0.0000017021, +0.0000017121,0.0000017166,0.0000017195,0.0000017202,0.0000017264, +0.0000017359,0.0000017451,0.0000017550,0.0000017592,0.0000017551, +0.0000017548,0.0000017670,0.0000017775,0.0000017791,0.0000017790, +0.0000017866,0.0000017974,0.0000018045,0.0000018068,0.0000018211, +0.0000018347,0.0000018227,0.0000018094,0.0000018029,0.0000017639, +0.0000017338,0.0000017371,0.0000017379,0.0000017642,0.0000017844, +0.0000017811,0.0000017563,0.0000017239,0.0000017035,0.0000016982, +0.0000016964,0.0000016992,0.0000017039,0.0000016948,0.0000016811, +0.0000016841,0.0000017002,0.0000017100,0.0000017104,0.0000017057, +0.0000016998,0.0000017009,0.0000017163,0.0000017386,0.0000017526, +0.0000017548,0.0000017539,0.0000017531,0.0000017530,0.0000017534, +0.0000017545,0.0000017571,0.0000017644,0.0000017768,0.0000017899, +0.0000017993,0.0000018044,0.0000018069,0.0000018048,0.0000017924, +0.0000017767,0.0000017676,0.0000017592,0.0000017468,0.0000017379, +0.0000017388,0.0000017526,0.0000017653,0.0000017590,0.0000017508, +0.0000017610,0.0000017806,0.0000017800,0.0000017449,0.0000017052, +0.0000016961,0.0000017050,0.0000017158,0.0000017331,0.0000017710, +0.0000017926,0.0000017878,0.0000017837,0.0000017836,0.0000017911, +0.0000018420,0.0000019194,0.0000019493,0.0000019199,0.0000019211, +0.0000019712,0.0000019953,0.0000020076,0.0000020255,0.0000020321, +0.0000020261,0.0000020048,0.0000019832,0.0000019749,0.0000019771, +0.0000019822,0.0000019898,0.0000019945,0.0000019991,0.0000020044, +0.0000020092,0.0000020106,0.0000020141,0.0000020149,0.0000020139, +0.0000020124,0.0000020113,0.0000020110,0.0000020112,0.0000020110, +0.0000020094,0.0000020064,0.0000020029,0.0000020000,0.0000019972, +0.0000019951,0.0000019918,0.0000019945,0.0000020084,0.0000020228, +0.0000020243,0.0000020171,0.0000020103,0.0000019947,0.0000019682, +0.0000019525,0.0000019542,0.0000019717,0.0000020001,0.0000020225, +0.0000020294,0.0000020302,0.0000020326,0.0000020383,0.0000020348, +0.0000020257,0.0000020217,0.0000020191,0.0000020195,0.0000020134, +0.0000020024,0.0000019815,0.0000019183,0.0000018606,0.0000018553, +0.0000018845,0.0000019040,0.0000019082,0.0000019161,0.0000019319, +0.0000019397,0.0000019441,0.0000019391,0.0000019267,0.0000019072, +0.0000018858,0.0000018694,0.0000018628,0.0000018705,0.0000018872, +0.0000019037,0.0000019078,0.0000019014,0.0000018858,0.0000018503, +0.0000018087,0.0000017980,0.0000018122,0.0000018226,0.0000018432, +0.0000018201,0.0000018180,0.0000018658,0.0000019170,0.0000019326, +0.0000018871,0.0000018855,0.0000019317,0.0000018955,0.0000018603, +0.0000018499,0.0000018459,0.0000018408,0.0000018297,0.0000018093, +0.0000017818,0.0000017512,0.0000017235,0.0000017056,0.0000016970, +0.0000016904,0.0000016848,0.0000016823,0.0000016828,0.0000016853, +0.0000016885,0.0000016902,0.0000016906,0.0000016905,0.0000016879, +0.0000016811,0.0000016717,0.0000016607,0.0000016488,0.0000016363, +0.0000016211,0.0000016074,0.0000016055,0.0000016086,0.0000016153, +0.0000016103,0.0000015958,0.0000015815,0.0000015791,0.0000015867, +0.0000015986,0.0000016123,0.0000016250,0.0000016359,0.0000016416, +0.0000016408,0.0000016397,0.0000016390,0.0000016369,0.0000016314, +0.0000016216,0.0000016088,0.0000015991,0.0000015947,0.0000015939, +0.0000015936,0.0000015935,0.0000015965,0.0000016002,0.0000016054, +0.0000016105,0.0000016146,0.0000016172,0.0000016183,0.0000016180, +0.0000016170,0.0000016151,0.0000016124,0.0000016093,0.0000016051, +0.0000015999,0.0000015938,0.0000015891,0.0000015914,0.0000015987, +0.0000016076,0.0000016081,0.0000015958,0.0000015638,0.0000015585, +0.0000015843,0.0000016144,0.0000016287,0.0000016316,0.0000016284, +0.0000016250,0.0000016250,0.0000016287,0.0000016329,0.0000016343, +0.0000016309,0.0000016250,0.0000016253,0.0000016324,0.0000016355, +0.0000016328,0.0000016307,0.0000016332,0.0000016383,0.0000016413, +0.0000016385,0.0000016265,0.0000016364,0.0000017134,0.0000017960, +0.0000018294,0.0000018358,0.0000018158,0.0000017532,0.0000017083, +0.0000017025,0.0000017157,0.0000017328,0.0000017425,0.0000017457, +0.0000017483,0.0000017523,0.0000017578,0.0000017642,0.0000017696, +0.0000017727,0.0000017734,0.0000017727,0.0000017713,0.0000017698, +0.0000017688,0.0000017683,0.0000017689,0.0000017700,0.0000017707, +0.0000017709,0.0000017716,0.0000017722,0.0000017727,0.0000017739, +0.0000017753,0.0000017760,0.0000017762,0.0000017762,0.0000017761, +0.0000017773,0.0000017771,0.0000017755,0.0000017754,0.0000017757, +0.0000017762,0.0000017773,0.0000017794,0.0000017811,0.0000017826, +0.0000017842,0.0000017857,0.0000017869,0.0000017883,0.0000017902, +0.0000017920,0.0000017934,0.0000017946,0.0000017954,0.0000017961, +0.0000017967,0.0000017967,0.0000017960,0.0000017946,0.0000017925, +0.0000017904,0.0000017886,0.0000017868,0.0000017848,0.0000017832, +0.0000017826,0.0000017799,0.0000017669,0.0000017356,0.0000016912, +0.0000016511,0.0000016322,0.0000016357,0.0000016553,0.0000016929, +0.0000017379,0.0000017752,0.0000017984,0.0000018092,0.0000018135, +0.0000018119,0.0000018034,0.0000017901,0.0000017757,0.0000017549, +0.0000017323,0.0000017048,0.0000016804,0.0000016645,0.0000016620, +0.0000016850,0.0000017313,0.0000017943,0.0000018621,0.0000019196, +0.0000019601,0.0000019780,0.0000019784,0.0000019721,0.0000019680, +0.0000019678,0.0000019684,0.0000019696,0.0000019701,0.0000019708, +0.0000019716,0.0000019721,0.0000019718,0.0000019696,0.0000019666, +0.0000019619,0.0000019580,0.0000019604,0.0000019748,0.0000019934, +0.0000020057,0.0000020097,0.0000020098,0.0000020094,0.0000020093, +0.0000020091,0.0000020089,0.0000020072,0.0000020024,0.0000019975, +0.0000019965,0.0000020005,0.0000020091,0.0000020195,0.0000020261, +0.0000020280,0.0000020263,0.0000020237,0.0000020239,0.0000020304, +0.0000020359,0.0000020322,0.0000020275,0.0000020210,0.0000019994, +0.0000019812,0.0000019757,0.0000019589,0.0000019407,0.0000019390, +0.0000019389,0.0000019316,0.0000019004,0.0000018546,0.0000018236, +0.0000017762,0.0000017397,0.0000017620,0.0000018167,0.0000018564, +0.0000018802,0.0000018970,0.0000019080,0.0000019122,0.0000019128, +0.0000019102,0.0000019054,0.0000019023,0.0000019007,0.0000019019, +0.0000019052,0.0000019068,0.0000019058,0.0000019045,0.0000019044, +0.0000019020,0.0000018965,0.0000018888,0.0000018809,0.0000018722, +0.0000018626,0.0000018548,0.0000018530,0.0000018503,0.0000018533, +0.0000018582,0.0000018736,0.0000018870,0.0000019009,0.0000019091, +0.0000019074,0.0000019043,0.0000018927,0.0000018800,0.0000018711, +0.0000018654,0.0000018589,0.0000018493,0.0000018378,0.0000018287, +0.0000018223,0.0000018179,0.0000018161,0.0000018165,0.0000018204, +0.0000018255,0.0000018363,0.0000018524,0.0000018720,0.0000018895, +0.0000018983,0.0000019015,0.0000018984,0.0000018917,0.0000018846, +0.0000018799,0.0000018762,0.0000018749,0.0000018725,0.0000018785, +0.0000018889,0.0000018987,0.0000018994,0.0000018939,0.0000018856, +0.0000018791,0.0000018762,0.0000018759,0.0000018741,0.0000018690, +0.0000018616,0.0000018571,0.0000018447,0.0000018392,0.0000018424, +0.0000018564,0.0000018804,0.0000019026,0.0000019193,0.0000019287, +0.0000019220,0.0000019028,0.0000018914,0.0000018909,0.0000018891, +0.0000018824,0.0000018760,0.0000018705,0.0000018635,0.0000018461, +0.0000018211,0.0000018009,0.0000017850,0.0000017720,0.0000017630, +0.0000017612,0.0000017650,0.0000017681,0.0000017659,0.0000017565, +0.0000017427,0.0000017294,0.0000017209,0.0000017194,0.0000017218, +0.0000017257,0.0000017309,0.0000017387,0.0000017474,0.0000017549, +0.0000017616,0.0000017664,0.0000017662,0.0000017609,0.0000017536, +0.0000017470,0.0000017363,0.0000017211,0.0000017061,0.0000016952, +0.0000016839,0.0000016747,0.0000016687,0.0000016582,0.0000016551, +0.0000016557,0.0000016507,0.0000016498,0.0000016541,0.0000016553, +0.0000016558,0.0000016581,0.0000016571,0.0000016515,0.0000016487, +0.0000016473,0.0000016413,0.0000016358,0.0000016290,0.0000016188, +0.0000016140,0.0000016131,0.0000016081,0.0000016051,0.0000016086, +0.0000016070,0.0000015976,0.0000015889,0.0000015860,0.0000015929, +0.0000016086,0.0000016206,0.0000016336,0.0000016503,0.0000016622, +0.0000016716,0.0000016759,0.0000016692,0.0000016593,0.0000016568, +0.0000016552,0.0000016582,0.0000016746,0.0000016871,0.0000016870, +0.0000016800,0.0000016673,0.0000016539,0.0000016421,0.0000016304, +0.0000016197,0.0000016135,0.0000016129,0.0000016153,0.0000016201, +0.0000016257,0.0000016303,0.0000016339,0.0000016365,0.0000016404, +0.0000016464,0.0000016551,0.0000016653,0.0000016748,0.0000016799, +0.0000016805,0.0000016801,0.0000016775,0.0000016744,0.0000016913, +0.0000017392,0.0000017778,0.0000017763,0.0000017722,0.0000017721, +0.0000017690,0.0000017549,0.0000017329,0.0000017091,0.0000016885, +0.0000016757,0.0000016697,0.0000016669,0.0000016646,0.0000016645, +0.0000016703,0.0000016832,0.0000017014,0.0000017179,0.0000017255, +0.0000017289,0.0000017323,0.0000017318,0.0000017235,0.0000017124, +0.0000017001,0.0000016885,0.0000016759,0.0000016709,0.0000016958, +0.0000017445,0.0000017562,0.0000017507,0.0000017510,0.0000017535, +0.0000017601,0.0000017781,0.0000017937,0.0000018039,0.0000018122, +0.0000018203,0.0000018250,0.0000018225,0.0000018144,0.0000018113, +0.0000018129,0.0000018180,0.0000018266,0.0000018368,0.0000018376, +0.0000018159,0.0000017886,0.0000017660,0.0000017364,0.0000017357, +0.0000017564,0.0000017432,0.0000017178,0.0000017100,0.0000017017, +0.0000017105,0.0000017162,0.0000017172,0.0000017145,0.0000017183, +0.0000017288,0.0000017382,0.0000017453,0.0000017535,0.0000017604, +0.0000017572,0.0000017535,0.0000017665,0.0000017796,0.0000017811, +0.0000017810,0.0000017899,0.0000018022,0.0000018075,0.0000018122, +0.0000018288,0.0000018354,0.0000018188,0.0000018097,0.0000017969, +0.0000017510,0.0000017351,0.0000017352,0.0000017416,0.0000017707, +0.0000017813,0.0000017663,0.0000017354,0.0000017103,0.0000017008, +0.0000017014,0.0000017049,0.0000017091,0.0000017007,0.0000016804, +0.0000016756,0.0000016915,0.0000017064,0.0000017064,0.0000016953, +0.0000016834,0.0000016803,0.0000016906,0.0000017195,0.0000017466, +0.0000017557,0.0000017559,0.0000017575,0.0000017595,0.0000017603, +0.0000017610,0.0000017644,0.0000017728,0.0000017837,0.0000017931, +0.0000017995,0.0000018043,0.0000018071,0.0000018028,0.0000017866, +0.0000017724,0.0000017656,0.0000017555,0.0000017406,0.0000017319, +0.0000017376,0.0000017559,0.0000017652,0.0000017592,0.0000017539, +0.0000017640,0.0000017812,0.0000017792,0.0000017434,0.0000017035, +0.0000016938,0.0000017036,0.0000017159,0.0000017282,0.0000017636, +0.0000017918,0.0000017892,0.0000017839,0.0000017855,0.0000017874, +0.0000018153,0.0000018906,0.0000019468,0.0000019278,0.0000019173, +0.0000019628,0.0000019931,0.0000020071,0.0000020256,0.0000020338, +0.0000020335,0.0000020268,0.0000020145,0.0000020030,0.0000019952, +0.0000019929,0.0000019934,0.0000019928,0.0000019951,0.0000019988, +0.0000020008,0.0000020048,0.0000020105,0.0000020157,0.0000020184, +0.0000020159,0.0000020118,0.0000020072,0.0000020048,0.0000020039, +0.0000020027,0.0000020015,0.0000020000,0.0000019985,0.0000019972, +0.0000019973,0.0000020042,0.0000020190,0.0000020287,0.0000020273, +0.0000020193,0.0000020105,0.0000019934,0.0000019668,0.0000019486, +0.0000019472,0.0000019619,0.0000019911,0.0000020181,0.0000020295, +0.0000020315,0.0000020347,0.0000020403,0.0000020347,0.0000020255, +0.0000020219,0.0000020220,0.0000020234,0.0000020149,0.0000020016, +0.0000019782,0.0000019153,0.0000018592,0.0000018527,0.0000018818, +0.0000019151,0.0000019303,0.0000019366,0.0000019408,0.0000019378, +0.0000019275,0.0000019103,0.0000018932,0.0000018780,0.0000018675, +0.0000018640,0.0000018750,0.0000018928,0.0000019094,0.0000019101, +0.0000018973,0.0000018771,0.0000018605,0.0000018423,0.0000018162, +0.0000017963,0.0000018008,0.0000018197,0.0000018276,0.0000018438, +0.0000018070,0.0000018458,0.0000018881,0.0000019352,0.0000019165, +0.0000018766,0.0000019234,0.0000018807,0.0000018188,0.0000017975, +0.0000017843,0.0000017753,0.0000017651,0.0000017509,0.0000017329, +0.0000017150,0.0000017018,0.0000016937,0.0000016872,0.0000016800, +0.0000016753,0.0000016768,0.0000016811,0.0000016831,0.0000016844, +0.0000016856,0.0000016858,0.0000016827,0.0000016731,0.0000016569, +0.0000016383,0.0000016218,0.0000016081,0.0000016016,0.0000016003, +0.0000016020,0.0000016101,0.0000016142,0.0000016093,0.0000015966, +0.0000015835,0.0000015813,0.0000015860,0.0000015978,0.0000016117, +0.0000016261,0.0000016397,0.0000016474,0.0000016474,0.0000016465, +0.0000016459,0.0000016448,0.0000016396,0.0000016263,0.0000016086, +0.0000015959,0.0000015912,0.0000015929,0.0000015960,0.0000016019, +0.0000016108,0.0000016196,0.0000016261,0.0000016302,0.0000016325, +0.0000016333,0.0000016331,0.0000016322,0.0000016313,0.0000016306, +0.0000016297,0.0000016289,0.0000016277,0.0000016254,0.0000016239, +0.0000016202,0.0000016101,0.0000015977,0.0000015889,0.0000015911, +0.0000016030,0.0000016071,0.0000015955,0.0000015640,0.0000015573, +0.0000015813,0.0000016119,0.0000016276,0.0000016313,0.0000016319, +0.0000016314,0.0000016322,0.0000016331,0.0000016322,0.0000016259, +0.0000016186,0.0000016196,0.0000016262,0.0000016273,0.0000016245, +0.0000016239,0.0000016259,0.0000016310,0.0000016371,0.0000016392, +0.0000016305,0.0000016278,0.0000016766,0.0000017604,0.0000017945, +0.0000017940,0.0000017785,0.0000017390,0.0000017066,0.0000017014, +0.0000017137,0.0000017344,0.0000017491,0.0000017557,0.0000017607, +0.0000017656,0.0000017700,0.0000017737,0.0000017760,0.0000017772, +0.0000017764,0.0000017739,0.0000017715,0.0000017701,0.0000017702, +0.0000017717,0.0000017745,0.0000017775,0.0000017802,0.0000017822, +0.0000017837,0.0000017851,0.0000017856,0.0000017848,0.0000017828, +0.0000017824,0.0000017800,0.0000017759,0.0000017717,0.0000017686, +0.0000017658,0.0000017632,0.0000017605,0.0000017577,0.0000017556, +0.0000017551,0.0000017560,0.0000017579,0.0000017604,0.0000017637, +0.0000017677,0.0000017716,0.0000017752,0.0000017788,0.0000017819, +0.0000017846,0.0000017867,0.0000017878,0.0000017883,0.0000017885, +0.0000017881,0.0000017871,0.0000017856,0.0000017841,0.0000017828, +0.0000017814,0.0000017795,0.0000017768,0.0000017722,0.0000017633, +0.0000017468,0.0000017196,0.0000016850,0.0000016532,0.0000016344, +0.0000016359,0.0000016512,0.0000016778,0.0000017072,0.0000017284, +0.0000017378,0.0000017438,0.0000017341,0.0000017212,0.0000017120, +0.0000016968,0.0000016929,0.0000016780,0.0000016663,0.0000016628, +0.0000016534,0.0000016599,0.0000016782,0.0000017080,0.0000017652, +0.0000018309,0.0000018951,0.0000019413,0.0000019699,0.0000019791, +0.0000019777,0.0000019720,0.0000019684,0.0000019663,0.0000019632, +0.0000019598,0.0000019572,0.0000019569,0.0000019598,0.0000019657, +0.0000019718,0.0000019735,0.0000019721,0.0000019693,0.0000019647, +0.0000019599,0.0000019608,0.0000019731,0.0000019903,0.0000020032, +0.0000020096,0.0000020119,0.0000020128,0.0000020124,0.0000020104, +0.0000020074,0.0000020036,0.0000019985,0.0000019945,0.0000019942, +0.0000019974,0.0000020046,0.0000020134,0.0000020201,0.0000020227, +0.0000020214,0.0000020198,0.0000020225,0.0000020301,0.0000020314, +0.0000020271,0.0000020240,0.0000020120,0.0000019907,0.0000019832, +0.0000019766,0.0000019564,0.0000019438,0.0000019292,0.0000018999, +0.0000018674,0.0000018402,0.0000018273,0.0000018045,0.0000017768, +0.0000017862,0.0000018271,0.0000018648,0.0000018967,0.0000019206, +0.0000019277,0.0000019204,0.0000019133,0.0000019091,0.0000019045, +0.0000019014,0.0000019025,0.0000019085,0.0000019164,0.0000019220, +0.0000019247,0.0000019270,0.0000019320,0.0000019333,0.0000019333, +0.0000019278,0.0000019215,0.0000019163,0.0000019102,0.0000019038, +0.0000018964,0.0000018874,0.0000018768,0.0000018643,0.0000018592, +0.0000018582,0.0000018585,0.0000018712,0.0000018872,0.0000019040, +0.0000019087,0.0000019054,0.0000018923,0.0000018815,0.0000018771, +0.0000018747,0.0000018696,0.0000018642,0.0000018577,0.0000018491, +0.0000018394,0.0000018311,0.0000018252,0.0000018201,0.0000018172, +0.0000018181,0.0000018243,0.0000018411,0.0000018623,0.0000018794, +0.0000018880,0.0000018892,0.0000018876,0.0000018867,0.0000018858, +0.0000018851,0.0000018811,0.0000018828,0.0000018922,0.0000018987, +0.0000018979,0.0000018918,0.0000018851,0.0000018816,0.0000018805, +0.0000018790,0.0000018756,0.0000018692,0.0000018627,0.0000018593, +0.0000018477,0.0000018424,0.0000018439,0.0000018560,0.0000018804, +0.0000019024,0.0000019174,0.0000019267,0.0000019179,0.0000018957, +0.0000018869,0.0000018880,0.0000018865,0.0000018809,0.0000018750, +0.0000018687,0.0000018600,0.0000018409,0.0000018161,0.0000017977, +0.0000017823,0.0000017689,0.0000017610,0.0000017614,0.0000017653, +0.0000017674,0.0000017655,0.0000017584,0.0000017475,0.0000017383, +0.0000017363,0.0000017385,0.0000017424,0.0000017474,0.0000017531, +0.0000017579,0.0000017609,0.0000017644,0.0000017697,0.0000017729, +0.0000017718,0.0000017655,0.0000017581,0.0000017503,0.0000017380, +0.0000017216,0.0000017050,0.0000016926,0.0000016811,0.0000016737, +0.0000016673,0.0000016581,0.0000016565,0.0000016554,0.0000016513, +0.0000016521,0.0000016539,0.0000016537,0.0000016557,0.0000016574, +0.0000016540,0.0000016490,0.0000016477,0.0000016440,0.0000016378, +0.0000016336,0.0000016258,0.0000016158,0.0000016121,0.0000016088, +0.0000016024,0.0000016027,0.0000016068,0.0000016039,0.0000015944, +0.0000015869,0.0000015866,0.0000015972,0.0000016121,0.0000016227, +0.0000016373,0.0000016535,0.0000016649,0.0000016741,0.0000016740, +0.0000016639,0.0000016575,0.0000016567,0.0000016580,0.0000016752, +0.0000016952,0.0000016975,0.0000016913,0.0000016775,0.0000016634, +0.0000016530,0.0000016430,0.0000016324,0.0000016226,0.0000016165, +0.0000016150,0.0000016170,0.0000016215,0.0000016271,0.0000016316, +0.0000016355,0.0000016415,0.0000016501,0.0000016586,0.0000016661, +0.0000016724,0.0000016754,0.0000016757,0.0000016750,0.0000016712, +0.0000016720,0.0000017062,0.0000017559,0.0000017795,0.0000017771, +0.0000017740,0.0000017677,0.0000017495,0.0000017237,0.0000016996, +0.0000016801,0.0000016669,0.0000016607,0.0000016577,0.0000016542, +0.0000016498,0.0000016483,0.0000016519,0.0000016633,0.0000016814, +0.0000016986,0.0000017080,0.0000017138,0.0000017187,0.0000017179, +0.0000017090,0.0000016980,0.0000016877,0.0000016790,0.0000016693, +0.0000016656,0.0000016895,0.0000017398,0.0000017550,0.0000017507, +0.0000017503,0.0000017529,0.0000017589,0.0000017762,0.0000017923, +0.0000018028,0.0000018112,0.0000018186,0.0000018225,0.0000018192, +0.0000018101,0.0000018068,0.0000018093,0.0000018166,0.0000018271, +0.0000018351,0.0000018302,0.0000018020,0.0000017802,0.0000017557, +0.0000017325,0.0000017444,0.0000017574,0.0000017317,0.0000017162, +0.0000017060,0.0000017060,0.0000017174,0.0000017190,0.0000017141, +0.0000017115,0.0000017194,0.0000017299,0.0000017389,0.0000017467, +0.0000017527,0.0000017591,0.0000017585,0.0000017526,0.0000017647, +0.0000017802,0.0000017826,0.0000017832,0.0000017932,0.0000018064, +0.0000018114,0.0000018185,0.0000018344,0.0000018340,0.0000018147, +0.0000018100,0.0000017893,0.0000017410,0.0000017358,0.0000017333, +0.0000017473,0.0000017720,0.0000017723,0.0000017481,0.0000017202, +0.0000017038,0.0000017021,0.0000017074,0.0000017140,0.0000017090, +0.0000016842,0.0000016684,0.0000016787,0.0000017004,0.0000017060, +0.0000016928,0.0000016789,0.0000016757,0.0000016781,0.0000017001, +0.0000017348,0.0000017542,0.0000017576,0.0000017606,0.0000017638, +0.0000017642,0.0000017649,0.0000017704,0.0000017796,0.0000017876, +0.0000017930,0.0000017979,0.0000018041,0.0000018073,0.0000017999, +0.0000017811,0.0000017694,0.0000017633,0.0000017501,0.0000017340, +0.0000017283,0.0000017400,0.0000017586,0.0000017647,0.0000017588, +0.0000017555,0.0000017663,0.0000017817,0.0000017787,0.0000017425, +0.0000017018,0.0000016905,0.0000017004,0.0000017155,0.0000017233, +0.0000017515,0.0000017875,0.0000017915,0.0000017842,0.0000017868, +0.0000017883,0.0000017976,0.0000018581,0.0000019342,0.0000019363, +0.0000019175,0.0000019534,0.0000019889,0.0000020052,0.0000020253, +0.0000020341,0.0000020341,0.0000020339,0.0000020323,0.0000020279, +0.0000020235,0.0000020199,0.0000020164,0.0000020140,0.0000020117, +0.0000020078,0.0000020016,0.0000019969,0.0000019951,0.0000019961, +0.0000020025,0.0000020083,0.0000020112,0.0000020115,0.0000020117, +0.0000020119,0.0000020110,0.0000020101,0.0000020086,0.0000020092, +0.0000020127,0.0000020217,0.0000020323,0.0000020351,0.0000020303, +0.0000020211,0.0000020108,0.0000019918,0.0000019647,0.0000019465, +0.0000019444,0.0000019579,0.0000019880,0.0000020168,0.0000020296, +0.0000020332,0.0000020377,0.0000020411,0.0000020340,0.0000020251, +0.0000020228,0.0000020257,0.0000020264,0.0000020156,0.0000020015, +0.0000019777,0.0000019169,0.0000018615,0.0000018488,0.0000018646, +0.0000018975,0.0000019206,0.0000019270,0.0000019217,0.0000019094, +0.0000018936,0.0000018771,0.0000018645,0.0000018617,0.0000018660, +0.0000018801,0.0000019001,0.0000019180,0.0000019165,0.0000018993, +0.0000018706,0.0000018444,0.0000018309,0.0000018246,0.0000018155, +0.0000017998,0.0000017947,0.0000018092,0.0000018232,0.0000018378, +0.0000018305,0.0000018129,0.0000018661,0.0000019202,0.0000019334, +0.0000018845,0.0000019018,0.0000018926,0.0000017976,0.0000017638, +0.0000017459,0.0000017330,0.0000017231,0.0000017138,0.0000017047, +0.0000016970,0.0000016905,0.0000016836,0.0000016758,0.0000016710, +0.0000016708,0.0000016738,0.0000016781,0.0000016805,0.0000016803, +0.0000016790,0.0000016756,0.0000016650,0.0000016452,0.0000016221, +0.0000016042,0.0000015974,0.0000015975,0.0000016021,0.0000016088, +0.0000016133,0.0000016134,0.0000016087,0.0000015974,0.0000015842, +0.0000015794,0.0000015833,0.0000015936,0.0000016094,0.0000016253, +0.0000016410,0.0000016521,0.0000016560,0.0000016561,0.0000016541, +0.0000016520,0.0000016477,0.0000016351,0.0000016126,0.0000015941, +0.0000015880,0.0000015904,0.0000015976,0.0000016098,0.0000016226, +0.0000016327,0.0000016380,0.0000016382,0.0000016353,0.0000016320, +0.0000016267,0.0000016218,0.0000016178,0.0000016151,0.0000016135, +0.0000016130,0.0000016138,0.0000016152,0.0000016173,0.0000016201, +0.0000016234,0.0000016261,0.0000016219,0.0000016119,0.0000015944, +0.0000015879,0.0000015978,0.0000016067,0.0000015951,0.0000015635, +0.0000015550,0.0000015777,0.0000016083,0.0000016246,0.0000016297, +0.0000016310,0.0000016311,0.0000016305,0.0000016273,0.0000016206, +0.0000016152,0.0000016167,0.0000016202,0.0000016193,0.0000016181, +0.0000016190,0.0000016199,0.0000016229,0.0000016301,0.0000016374, +0.0000016369,0.0000016245,0.0000016461,0.0000017241,0.0000017704, +0.0000017603,0.0000017392,0.0000017202,0.0000017045,0.0000017011, +0.0000017086,0.0000017289,0.0000017479,0.0000017589,0.0000017658, +0.0000017712,0.0000017730,0.0000017738,0.0000017743,0.0000017747, +0.0000017742,0.0000017731,0.0000017727,0.0000017736,0.0000017758, +0.0000017790,0.0000017800,0.0000017825,0.0000017836,0.0000017833, +0.0000017822,0.0000017813,0.0000017795,0.0000017770,0.0000017741, +0.0000017703,0.0000017652,0.0000017592,0.0000017530,0.0000017483, +0.0000017451,0.0000017425,0.0000017390,0.0000017343,0.0000017292, +0.0000017249,0.0000017219,0.0000017206,0.0000017210,0.0000017230, +0.0000017273,0.0000017326,0.0000017392,0.0000017461,0.0000017531, +0.0000017598,0.0000017654,0.0000017694,0.0000017720,0.0000017734, +0.0000017735,0.0000017723,0.0000017704,0.0000017678,0.0000017641, +0.0000017583,0.0000017497,0.0000017374,0.0000017211,0.0000017018, +0.0000016773,0.0000016604,0.0000016487,0.0000016447,0.0000016520, +0.0000016685,0.0000016872,0.0000017032,0.0000017099,0.0000017112, +0.0000017152,0.0000017235,0.0000017157,0.0000017185,0.0000017296, +0.0000017351,0.0000017409,0.0000017514,0.0000017576,0.0000017660, +0.0000017813,0.0000017999,0.0000018259,0.0000018599,0.0000018962, +0.0000019284,0.0000019525,0.0000019689,0.0000019739,0.0000019706, +0.0000019636,0.0000019568,0.0000019502,0.0000019425,0.0000019359, +0.0000019334,0.0000019352,0.0000019401,0.0000019469,0.0000019568, +0.0000019684,0.0000019748,0.0000019735,0.0000019700,0.0000019646, +0.0000019598,0.0000019625,0.0000019750,0.0000019897,0.0000020002, +0.0000020068,0.0000020117,0.0000020136,0.0000020126,0.0000020088, +0.0000020039,0.0000019991,0.0000019952,0.0000019937,0.0000019944, +0.0000019975,0.0000020025,0.0000020078,0.0000020120,0.0000020141, +0.0000020153,0.0000020181,0.0000020241,0.0000020266,0.0000020242, +0.0000020220,0.0000020167,0.0000019984,0.0000019857,0.0000019856, +0.0000019736,0.0000019545,0.0000019314,0.0000018858,0.0000018449, +0.0000018305,0.0000018290,0.0000018222,0.0000018094,0.0000018141, +0.0000018381,0.0000018665,0.0000019010,0.0000019276,0.0000019286, +0.0000019067,0.0000018796,0.0000018593,0.0000018448,0.0000018340, +0.0000018316,0.0000018380,0.0000018493,0.0000018619,0.0000018756, +0.0000018906,0.0000019078,0.0000019234,0.0000019348,0.0000019420, +0.0000019448,0.0000019415,0.0000019357,0.0000019311,0.0000019300, +0.0000019308,0.0000019280,0.0000019192,0.0000019043,0.0000018852, +0.0000018668,0.0000018521,0.0000018514,0.0000018656,0.0000018908, +0.0000019136,0.0000019150,0.0000019011,0.0000018901,0.0000018875, +0.0000018860,0.0000018840,0.0000018834,0.0000018828,0.0000018802, +0.0000018750,0.0000018663,0.0000018540,0.0000018402,0.0000018280, +0.0000018194,0.0000018156,0.0000018206,0.0000018293,0.0000018348, +0.0000018389,0.0000018476,0.0000018572,0.0000018677,0.0000018769, +0.0000018827,0.0000018892,0.0000019023,0.0000019074,0.0000019025, +0.0000018921,0.0000018845,0.0000018829,0.0000018824,0.0000018796, +0.0000018756,0.0000018682,0.0000018630,0.0000018614,0.0000018522, +0.0000018464,0.0000018473,0.0000018583,0.0000018812,0.0000019010, +0.0000019143,0.0000019232,0.0000019128,0.0000018891,0.0000018813, +0.0000018839,0.0000018830,0.0000018785,0.0000018728,0.0000018665, +0.0000018571,0.0000018371,0.0000018129,0.0000017949,0.0000017788, +0.0000017655,0.0000017600,0.0000017607,0.0000017638,0.0000017660, +0.0000017654,0.0000017611,0.0000017561,0.0000017554,0.0000017580, +0.0000017608,0.0000017631,0.0000017650,0.0000017658,0.0000017656, +0.0000017667,0.0000017714,0.0000017768,0.0000017785,0.0000017758, +0.0000017688,0.0000017617,0.0000017524,0.0000017384,0.0000017205, +0.0000017026,0.0000016891,0.0000016786,0.0000016731,0.0000016661, +0.0000016580,0.0000016572,0.0000016557,0.0000016527,0.0000016527, +0.0000016527,0.0000016533,0.0000016561,0.0000016556,0.0000016501, +0.0000016470,0.0000016453,0.0000016403,0.0000016357,0.0000016319, +0.0000016229,0.0000016136,0.0000016094,0.0000016032,0.0000015982, +0.0000016020,0.0000016060,0.0000016012,0.0000015917,0.0000015862, +0.0000015884,0.0000016014,0.0000016149,0.0000016250,0.0000016410, +0.0000016562,0.0000016679,0.0000016746,0.0000016694,0.0000016595, +0.0000016573,0.0000016579,0.0000016713,0.0000016951,0.0000017017, +0.0000016972,0.0000016834,0.0000016691,0.0000016608,0.0000016522, +0.0000016420,0.0000016317,0.0000016233,0.0000016182,0.0000016166, +0.0000016179,0.0000016225,0.0000016284,0.0000016329,0.0000016383, +0.0000016460,0.0000016542,0.0000016613,0.0000016665,0.0000016696, +0.0000016705,0.0000016690,0.0000016665,0.0000016793,0.0000017274, +0.0000017697,0.0000017796,0.0000017773,0.0000017693,0.0000017468, +0.0000017164,0.0000016917,0.0000016751,0.0000016637,0.0000016573, +0.0000016544,0.0000016522,0.0000016479,0.0000016429,0.0000016399, +0.0000016410,0.0000016488,0.0000016629,0.0000016774,0.0000016875, +0.0000016948,0.0000017002,0.0000016994,0.0000016913,0.0000016826, +0.0000016751,0.0000016697,0.0000016635,0.0000016607,0.0000016827, +0.0000017335,0.0000017528,0.0000017504,0.0000017493,0.0000017520, +0.0000017573,0.0000017736,0.0000017898,0.0000018005,0.0000018092, +0.0000018163,0.0000018191,0.0000018144,0.0000018050,0.0000018028, +0.0000018070,0.0000018170,0.0000018280,0.0000018322,0.0000018170, +0.0000017885,0.0000017713,0.0000017445,0.0000017322,0.0000017535, +0.0000017515,0.0000017226,0.0000017143,0.0000017037,0.0000017146, +0.0000017220,0.0000017187,0.0000017102,0.0000017103,0.0000017175, +0.0000017266,0.0000017362,0.0000017464,0.0000017529,0.0000017569, +0.0000017585,0.0000017525,0.0000017622,0.0000017798,0.0000017837, +0.0000017851,0.0000017969,0.0000018097,0.0000018154,0.0000018254, +0.0000018361,0.0000018303,0.0000018115,0.0000018082,0.0000017786, +0.0000017375,0.0000017359,0.0000017337,0.0000017525,0.0000017680, +0.0000017589,0.0000017324,0.0000017103,0.0000017025,0.0000017061, +0.0000017148,0.0000017172,0.0000016960,0.0000016690,0.0000016664, +0.0000016881,0.0000017042,0.0000016961,0.0000016800,0.0000016759, +0.0000016762,0.0000016877,0.0000017201,0.0000017490,0.0000017582, +0.0000017616,0.0000017644,0.0000017647,0.0000017677,0.0000017764, +0.0000017845,0.0000017884,0.0000017909,0.0000017960,0.0000018044, +0.0000018080,0.0000017960,0.0000017767,0.0000017677,0.0000017601, +0.0000017434,0.0000017290,0.0000017296,0.0000017450,0.0000017606, +0.0000017635,0.0000017585,0.0000017571,0.0000017675,0.0000017817, +0.0000017780,0.0000017417,0.0000017007,0.0000016874,0.0000016959, +0.0000017128,0.0000017196,0.0000017377,0.0000017768,0.0000017921, +0.0000017858,0.0000017866,0.0000017904,0.0000017916,0.0000018291, +0.0000019126,0.0000019400,0.0000019200,0.0000019454,0.0000019835, +0.0000020021,0.0000020245,0.0000020346,0.0000020335,0.0000020333, +0.0000020340,0.0000020328,0.0000020308,0.0000020289,0.0000020284, +0.0000020298,0.0000020303,0.0000020298,0.0000020246,0.0000020149, +0.0000020033,0.0000019913,0.0000019851,0.0000019852,0.0000019899, +0.0000019962,0.0000020014,0.0000020056,0.0000020088,0.0000020121, +0.0000020189,0.0000020291,0.0000020388,0.0000020437,0.0000020417, +0.0000020341,0.0000020239,0.0000020109,0.0000019904,0.0000019645, +0.0000019479,0.0000019456,0.0000019608,0.0000019910,0.0000020181, +0.0000020310,0.0000020358,0.0000020414,0.0000020420,0.0000020327, +0.0000020247,0.0000020250,0.0000020300,0.0000020310,0.0000020175, +0.0000020020,0.0000019779,0.0000019199,0.0000018673,0.0000018463, +0.0000018477,0.0000018640,0.0000018819,0.0000018882,0.0000018841, +0.0000018742,0.0000018670,0.0000018651,0.0000018643,0.0000018716, +0.0000018876,0.0000019078,0.0000019196,0.0000019203,0.0000019002, +0.0000018675,0.0000018353,0.0000018156,0.0000018102,0.0000018119, +0.0000018119,0.0000018052,0.0000017933,0.0000017975,0.0000018196, +0.0000018258,0.0000018452,0.0000018138,0.0000018334,0.0000018892, +0.0000019371,0.0000019103,0.0000018836,0.0000019064,0.0000018009, +0.0000017430,0.0000017239,0.0000017119,0.0000017011,0.0000016938, +0.0000016891,0.0000016850,0.0000016791,0.0000016711,0.0000016661, +0.0000016664,0.0000016698,0.0000016723,0.0000016747,0.0000016764, +0.0000016759,0.0000016713,0.0000016603,0.0000016395,0.0000016138, +0.0000015962,0.0000015945,0.0000016008,0.0000016095,0.0000016150, +0.0000016167,0.0000016156,0.0000016111,0.0000015996,0.0000015847, +0.0000015755,0.0000015771,0.0000015889,0.0000016074,0.0000016264, +0.0000016447,0.0000016586,0.0000016669,0.0000016699,0.0000016659, +0.0000016585,0.0000016530,0.0000016431,0.0000016209,0.0000015965, +0.0000015867,0.0000015886,0.0000015989,0.0000016145,0.0000016304, +0.0000016401,0.0000016426,0.0000016411,0.0000016342,0.0000016262, +0.0000016177,0.0000016102,0.0000016038,0.0000015982,0.0000015936, +0.0000015898,0.0000015870,0.0000015853,0.0000015855,0.0000015877, +0.0000015920,0.0000015981,0.0000016060,0.0000016150,0.0000016226, +0.0000016196,0.0000016044,0.0000015878,0.0000015934,0.0000016044, +0.0000015941,0.0000015647,0.0000015558,0.0000015751,0.0000016031, +0.0000016195,0.0000016245,0.0000016244,0.0000016232,0.0000016205, +0.0000016172,0.0000016161,0.0000016177,0.0000016170,0.0000016145, +0.0000016138,0.0000016139,0.0000016138,0.0000016152,0.0000016218, +0.0000016319,0.0000016378,0.0000016289,0.0000016285,0.0000016851, +0.0000017502,0.0000017477,0.0000017162,0.0000017031,0.0000017013, +0.0000017010,0.0000017038,0.0000017186,0.0000017392,0.0000017549, +0.0000017649,0.0000017709,0.0000017721,0.0000017711,0.0000017703, +0.0000017711,0.0000017721,0.0000017728,0.0000017737,0.0000017747, +0.0000017751,0.0000017743,0.0000017720,0.0000017689,0.0000017656, +0.0000017623,0.0000017594,0.0000017571,0.0000017555,0.0000017543, +0.0000017533,0.0000017520,0.0000017500,0.0000017467,0.0000017428, +0.0000017391,0.0000017364,0.0000017344,0.0000017317,0.0000017272, +0.0000017221,0.0000017165,0.0000017115,0.0000017046,0.0000016992, +0.0000016956,0.0000016919,0.0000016916,0.0000016932,0.0000016980, +0.0000017041,0.0000017116,0.0000017192,0.0000017256,0.0000017305, +0.0000017333,0.0000017335,0.0000017305,0.0000017253,0.0000017179, +0.0000017087,0.0000016977,0.0000016828,0.0000016671,0.0000016584, +0.0000016500,0.0000016479,0.0000016540,0.0000016665,0.0000016868, +0.0000017098,0.0000017292,0.0000017454,0.0000017599,0.0000017729, +0.0000017882,0.0000018022,0.0000018178,0.0000018331,0.0000018472, +0.0000018591,0.0000018716,0.0000018808,0.0000018872,0.0000018933, +0.0000018989,0.0000019046,0.0000019099,0.0000019174,0.0000019229, +0.0000019320,0.0000019430,0.0000019522,0.0000019530,0.0000019488, +0.0000019417,0.0000019343,0.0000019269,0.0000019216,0.0000019190, +0.0000019212,0.0000019263,0.0000019329,0.0000019390,0.0000019445, +0.0000019535,0.0000019662,0.0000019749,0.0000019752,0.0000019699, +0.0000019624,0.0000019581,0.0000019639,0.0000019769,0.0000019889, +0.0000019969,0.0000020014,0.0000020050,0.0000020069,0.0000020058, +0.0000020025,0.0000019986,0.0000019956,0.0000019939,0.0000019942, +0.0000019963,0.0000019996,0.0000020023,0.0000020052,0.0000020085, +0.0000020119,0.0000020163,0.0000020211,0.0000020223,0.0000020192, +0.0000020167,0.0000020153,0.0000020021,0.0000019865,0.0000019871, +0.0000019858,0.0000019680,0.0000019437,0.0000018985,0.0000018487, +0.0000018335,0.0000018370,0.0000018362,0.0000018311,0.0000018339, +0.0000018464,0.0000018665,0.0000018996,0.0000019257,0.0000019232, +0.0000018916,0.0000018443,0.0000017966,0.0000017603,0.0000017372, +0.0000017266,0.0000017277,0.0000017380,0.0000017529,0.0000017703, +0.0000017920,0.0000018189,0.0000018514,0.0000018850,0.0000019156, +0.0000019404,0.0000019536,0.0000019540,0.0000019464,0.0000019403, +0.0000019404,0.0000019446,0.0000019466,0.0000019441,0.0000019360, +0.0000019199,0.0000018954,0.0000018659,0.0000018475,0.0000018517, +0.0000018819,0.0000019130,0.0000019175,0.0000019084,0.0000019012, +0.0000018989,0.0000018951,0.0000018917,0.0000018919,0.0000018949, +0.0000018997,0.0000019030,0.0000019023,0.0000018973,0.0000018886, +0.0000018774,0.0000018656,0.0000018575,0.0000018475,0.0000018354, +0.0000018256,0.0000018204,0.0000018194,0.0000018250,0.0000018321, +0.0000018401,0.0000018552,0.0000018796,0.0000019003,0.0000019012, +0.0000018974,0.0000018880,0.0000018830,0.0000018800,0.0000018767, +0.0000018731,0.0000018661,0.0000018626,0.0000018635,0.0000018574, +0.0000018516,0.0000018523,0.0000018617,0.0000018813,0.0000018984, +0.0000019105,0.0000019178,0.0000019061,0.0000018810,0.0000018749, +0.0000018792,0.0000018787,0.0000018751,0.0000018698,0.0000018651, +0.0000018555,0.0000018348,0.0000018104,0.0000017916,0.0000017747, +0.0000017622,0.0000017580,0.0000017583,0.0000017607,0.0000017630, +0.0000017626,0.0000017618,0.0000017640,0.0000017681,0.0000017704, +0.0000017709,0.0000017704,0.0000017693,0.0000017682,0.0000017689, +0.0000017731,0.0000017792,0.0000017828,0.0000017825,0.0000017779, +0.0000017710,0.0000017639,0.0000017530,0.0000017372,0.0000017177, +0.0000016991,0.0000016860,0.0000016772,0.0000016727,0.0000016651, +0.0000016579,0.0000016577,0.0000016563,0.0000016532,0.0000016522, +0.0000016523,0.0000016539,0.0000016551,0.0000016517,0.0000016469, +0.0000016453,0.0000016424,0.0000016379,0.0000016350,0.0000016305, +0.0000016204,0.0000016114,0.0000016054,0.0000015979,0.0000015961, +0.0000016026,0.0000016052,0.0000015988,0.0000015896,0.0000015859, +0.0000015910,0.0000016057,0.0000016169,0.0000016278,0.0000016445, +0.0000016589,0.0000016705,0.0000016726,0.0000016636,0.0000016576, +0.0000016578,0.0000016666,0.0000016908,0.0000017032,0.0000017011, +0.0000016901,0.0000016776,0.0000016735,0.0000016683,0.0000016573, +0.0000016433,0.0000016304,0.0000016220,0.0000016183,0.0000016167, +0.0000016172,0.0000016221,0.0000016297,0.0000016362,0.0000016417, +0.0000016478,0.0000016541,0.0000016596,0.0000016632,0.0000016642, +0.0000016631,0.0000016659,0.0000016976,0.0000017486,0.0000017771, +0.0000017788,0.0000017711,0.0000017489,0.0000017142,0.0000016860, +0.0000016709,0.0000016619,0.0000016558,0.0000016525,0.0000016505, +0.0000016481,0.0000016440,0.0000016401,0.0000016375,0.0000016373, +0.0000016415,0.0000016495,0.0000016586,0.0000016664,0.0000016733, +0.0000016784,0.0000016779,0.0000016723,0.0000016674,0.0000016633, +0.0000016615,0.0000016587,0.0000016569,0.0000016755,0.0000017258, +0.0000017517,0.0000017500,0.0000017480,0.0000017507,0.0000017556, +0.0000017700,0.0000017857,0.0000017966,0.0000018065,0.0000018138, +0.0000018151,0.0000018090,0.0000018001,0.0000017994,0.0000018060, +0.0000018173,0.0000018267,0.0000018252,0.0000017996,0.0000017778, +0.0000017604,0.0000017351,0.0000017375,0.0000017584,0.0000017378, +0.0000017187,0.0000017090,0.0000017065,0.0000017233,0.0000017248, +0.0000017151,0.0000017077,0.0000017077,0.0000017132,0.0000017221, +0.0000017309,0.0000017426,0.0000017523,0.0000017552,0.0000017576, +0.0000017527,0.0000017595,0.0000017792,0.0000017848,0.0000017874, +0.0000018006,0.0000018123,0.0000018199,0.0000018313,0.0000018369, +0.0000018249,0.0000018094,0.0000018038,0.0000017637,0.0000017340, +0.0000017357,0.0000017347,0.0000017566,0.0000017620,0.0000017456, +0.0000017210,0.0000017050,0.0000017038,0.0000017124,0.0000017211, +0.0000017108,0.0000016800,0.0000016640,0.0000016733,0.0000016952, +0.0000016998,0.0000016853,0.0000016773,0.0000016768,0.0000016802, +0.0000017053,0.0000017406,0.0000017577,0.0000017614,0.0000017632, +0.0000017656,0.0000017729,0.0000017826,0.0000017868,0.0000017872, +0.0000017883,0.0000017952,0.0000018059,0.0000018074,0.0000017914, +0.0000017738,0.0000017669,0.0000017561,0.0000017366,0.0000017268, +0.0000017327,0.0000017503,0.0000017617,0.0000017624,0.0000017590, +0.0000017586,0.0000017680,0.0000017814,0.0000017772,0.0000017407, +0.0000017002,0.0000016869,0.0000016920,0.0000017070,0.0000017165, +0.0000017259,0.0000017603,0.0000017875,0.0000017869,0.0000017854, +0.0000017910,0.0000017921,0.0000018096,0.0000018849,0.0000019396, +0.0000019238,0.0000019377,0.0000019773,0.0000019986,0.0000020228, +0.0000020352,0.0000020331,0.0000020311,0.0000020310,0.0000020297, +0.0000020279,0.0000020263,0.0000020254,0.0000020264,0.0000020292, +0.0000020331,0.0000020351,0.0000020339,0.0000020290,0.0000020183, +0.0000020032,0.0000019905,0.0000019839,0.0000019849,0.0000019885, +0.0000019937,0.0000020048,0.0000020183,0.0000020349,0.0000020468, +0.0000020491,0.0000020466,0.0000020385,0.0000020273,0.0000020127, +0.0000019923,0.0000019699,0.0000019563,0.0000019560,0.0000019730, +0.0000019994,0.0000020212,0.0000020323,0.0000020392,0.0000020459, +0.0000020441,0.0000020314,0.0000020237,0.0000020255,0.0000020335, +0.0000020345,0.0000020184,0.0000020022,0.0000019783,0.0000019228, +0.0000018742,0.0000018516,0.0000018438,0.0000018462,0.0000018545, +0.0000018625,0.0000018667,0.0000018676,0.0000018675,0.0000018688, +0.0000018760,0.0000018920,0.0000019118,0.0000019224,0.0000019223, +0.0000018993,0.0000018601,0.0000018256,0.0000018046,0.0000017962, +0.0000017969,0.0000018025,0.0000018077,0.0000018078,0.0000017968, +0.0000017927,0.0000018062,0.0000018255,0.0000018308,0.0000018398, +0.0000018077,0.0000018587,0.0000019179,0.0000019320,0.0000018887, +0.0000019017,0.0000018381,0.0000017383,0.0000017108,0.0000016986, +0.0000016904,0.0000016825,0.0000016750,0.0000016688,0.0000016636, +0.0000016607,0.0000016611,0.0000016653,0.0000016693,0.0000016716, +0.0000016717,0.0000016708,0.0000016694,0.0000016618,0.0000016412, +0.0000016129,0.0000015947,0.0000015938,0.0000016041,0.0000016141, +0.0000016181,0.0000016193,0.0000016206,0.0000016176,0.0000016049, +0.0000015865,0.0000015729,0.0000015712,0.0000015820,0.0000016034, +0.0000016282,0.0000016511,0.0000016686,0.0000016814,0.0000016874, +0.0000016837,0.0000016718,0.0000016597,0.0000016477,0.0000016295, +0.0000016039,0.0000015876,0.0000015876,0.0000015986,0.0000016167, +0.0000016341,0.0000016440,0.0000016441,0.0000016398,0.0000016320, +0.0000016218,0.0000016126,0.0000016046,0.0000015965,0.0000015871, +0.0000015772,0.0000015684,0.0000015618,0.0000015572,0.0000015545, +0.0000015534,0.0000015544,0.0000015580,0.0000015642,0.0000015725, +0.0000015825,0.0000015947,0.0000016098,0.0000016210,0.0000016144, +0.0000015927,0.0000015910,0.0000016048,0.0000015944,0.0000015669, +0.0000015523,0.0000015682,0.0000015946,0.0000016114,0.0000016184, +0.0000016199,0.0000016185,0.0000016171,0.0000016173,0.0000016170, +0.0000016151,0.0000016141,0.0000016142,0.0000016141,0.0000016129, +0.0000016126,0.0000016150,0.0000016239,0.0000016342,0.0000016350, +0.0000016258,0.0000016491,0.0000017183,0.0000017438,0.0000017169, +0.0000016956,0.0000016964,0.0000017010,0.0000017027,0.0000017090, +0.0000017255,0.0000017445,0.0000017591,0.0000017680,0.0000017709, +0.0000017700,0.0000017681,0.0000017674,0.0000017673,0.0000017665, +0.0000017649,0.0000017622,0.0000017581,0.0000017528,0.0000017471, +0.0000017418,0.0000017372,0.0000017337,0.0000017317,0.0000017314, +0.0000017322,0.0000017335,0.0000017344,0.0000017346,0.0000017341, +0.0000017323,0.0000017295,0.0000017262,0.0000017227,0.0000017207, +0.0000017191,0.0000017170,0.0000017145,0.0000017115,0.0000017074, +0.0000017025,0.0000016978,0.0000016914,0.0000016849,0.0000016794, +0.0000016740,0.0000016696,0.0000016684,0.0000016680,0.0000016678, +0.0000016694,0.0000016717,0.0000016734,0.0000016725,0.0000016682, +0.0000016622,0.0000016579,0.0000016524,0.0000016463,0.0000016485, +0.0000016484,0.0000016618,0.0000016785,0.0000017028,0.0000017308, +0.0000017613,0.0000017892,0.0000018154,0.0000018335,0.0000018477, +0.0000018631,0.0000018759,0.0000018878,0.0000018933,0.0000018944, +0.0000019042,0.0000019042,0.0000019054,0.0000019109,0.0000019134, +0.0000019146,0.0000019164,0.0000019181,0.0000019188,0.0000019178, +0.0000019184,0.0000019205,0.0000019230,0.0000019256,0.0000019255, +0.0000019225,0.0000019186,0.0000019153,0.0000019133,0.0000019142, +0.0000019165,0.0000019197,0.0000019247,0.0000019306,0.0000019367, +0.0000019419,0.0000019466,0.0000019541,0.0000019667,0.0000019758, +0.0000019757,0.0000019681,0.0000019589,0.0000019568,0.0000019643, +0.0000019756,0.0000019858,0.0000019917,0.0000019927,0.0000019923, +0.0000019910,0.0000019896,0.0000019877,0.0000019862,0.0000019863, +0.0000019877,0.0000019907,0.0000019950,0.0000019988,0.0000020023, +0.0000020064,0.0000020107,0.0000020149,0.0000020180,0.0000020177, +0.0000020141,0.0000020118,0.0000020112,0.0000020007,0.0000019853, +0.0000019852,0.0000019910,0.0000019803,0.0000019567,0.0000019225, +0.0000018716,0.0000018458,0.0000018482,0.0000018494,0.0000018450, +0.0000018452,0.0000018526,0.0000018697,0.0000019001,0.0000019233, +0.0000019191,0.0000018868,0.0000018321,0.0000017630,0.0000017051, +0.0000016760,0.0000016659,0.0000016649,0.0000016692,0.0000016781, +0.0000016884,0.0000017006,0.0000017187,0.0000017462,0.0000017849, +0.0000018302,0.0000018781,0.0000019236,0.0000019528,0.0000019596, +0.0000019597,0.0000019515,0.0000019485,0.0000019502,0.0000019523, +0.0000019523,0.0000019487,0.0000019387,0.0000019188,0.0000018867, +0.0000018564,0.0000018517,0.0000018778,0.0000019119,0.0000019215, +0.0000019162,0.0000019106,0.0000019047,0.0000018990,0.0000018981, +0.0000019005,0.0000019027,0.0000019041,0.0000019055,0.0000019077, +0.0000019105,0.0000019138,0.0000019171,0.0000019163,0.0000019098, +0.0000018975,0.0000018850,0.0000018748,0.0000018608,0.0000018498, +0.0000018379,0.0000018311,0.0000018275,0.0000018399,0.0000018592, +0.0000018763,0.0000018920,0.0000018954,0.0000018890,0.0000018787, +0.0000018718,0.0000018675,0.0000018623,0.0000018624,0.0000018650, +0.0000018615,0.0000018573,0.0000018578,0.0000018647,0.0000018807, +0.0000018955,0.0000019071,0.0000019136,0.0000018970,0.0000018718, +0.0000018691,0.0000018739,0.0000018734,0.0000018700,0.0000018663, +0.0000018638,0.0000018546,0.0000018331,0.0000018078,0.0000017878, +0.0000017710,0.0000017598,0.0000017555,0.0000017549,0.0000017557, +0.0000017565,0.0000017574,0.0000017614,0.0000017669,0.0000017702, +0.0000017710,0.0000017707,0.0000017698,0.0000017695,0.0000017708, +0.0000017754,0.0000017814,0.0000017856,0.0000017865,0.0000017844, +0.0000017785,0.0000017722,0.0000017646,0.0000017516,0.0000017343, +0.0000017139,0.0000016956,0.0000016840,0.0000016766,0.0000016723, +0.0000016640,0.0000016582,0.0000016584,0.0000016564,0.0000016529, +0.0000016523,0.0000016532,0.0000016541,0.0000016525,0.0000016479, +0.0000016453,0.0000016434,0.0000016406,0.0000016376,0.0000016352, +0.0000016291,0.0000016181,0.0000016083,0.0000016005,0.0000015941, +0.0000015959,0.0000016036,0.0000016039,0.0000015963,0.0000015876, +0.0000015859,0.0000015947,0.0000016088,0.0000016179,0.0000016306, +0.0000016474,0.0000016615,0.0000016714,0.0000016687,0.0000016592, +0.0000016575,0.0000016631,0.0000016842,0.0000017035,0.0000017034, +0.0000016960,0.0000016864,0.0000016842,0.0000016831,0.0000016758, +0.0000016634,0.0000016470,0.0000016303,0.0000016206,0.0000016173, +0.0000016153,0.0000016150,0.0000016209,0.0000016309,0.0000016387, +0.0000016441,0.0000016493,0.0000016541,0.0000016574,0.0000016587, +0.0000016620,0.0000016780,0.0000017212,0.0000017631,0.0000017783, +0.0000017694,0.0000017500,0.0000017169,0.0000016849,0.0000016677, +0.0000016601,0.0000016544,0.0000016502,0.0000016474,0.0000016450, +0.0000016425,0.0000016402,0.0000016382,0.0000016365,0.0000016360, +0.0000016385,0.0000016426,0.0000016466,0.0000016501,0.0000016539, +0.0000016570,0.0000016571,0.0000016546,0.0000016538,0.0000016534, +0.0000016555,0.0000016555,0.0000016538,0.0000016685,0.0000017165, +0.0000017503,0.0000017499,0.0000017469,0.0000017492,0.0000017539, +0.0000017657,0.0000017805,0.0000017920,0.0000018027,0.0000018103, +0.0000018104,0.0000018036,0.0000017969,0.0000017983,0.0000018075, +0.0000018196,0.0000018257,0.0000018125,0.0000017848,0.0000017699, +0.0000017482,0.0000017313,0.0000017479,0.0000017544,0.0000017255, +0.0000017160,0.0000017041,0.0000017158,0.0000017287,0.0000017252, +0.0000017122,0.0000017044,0.0000017032,0.0000017094,0.0000017179, +0.0000017255,0.0000017365,0.0000017493,0.0000017533,0.0000017554, +0.0000017531,0.0000017573,0.0000017783,0.0000017854,0.0000017901, +0.0000018027,0.0000018144,0.0000018248,0.0000018353,0.0000018349, +0.0000018181,0.0000018079,0.0000017968,0.0000017490,0.0000017351, +0.0000017333,0.0000017373,0.0000017574,0.0000017557,0.0000017341, +0.0000017135,0.0000017039,0.0000017086,0.0000017200,0.0000017217, +0.0000016980,0.0000016707,0.0000016654,0.0000016796,0.0000016966, +0.0000016921,0.0000016800,0.0000016750,0.0000016745,0.0000016908, +0.0000017281,0.0000017551,0.0000017616,0.0000017627,0.0000017688, +0.0000017797,0.0000017875,0.0000017877,0.0000017859,0.0000017873, +0.0000017964,0.0000018081,0.0000018061,0.0000017872,0.0000017723, +0.0000017666,0.0000017521,0.0000017316,0.0000017250,0.0000017360, +0.0000017537,0.0000017619,0.0000017618,0.0000017597,0.0000017595, +0.0000017681,0.0000017813,0.0000017763,0.0000017395,0.0000017002, +0.0000016861,0.0000016892,0.0000017000,0.0000017111,0.0000017171, +0.0000017412,0.0000017767,0.0000017866,0.0000017849,0.0000017895, +0.0000017931,0.0000017974,0.0000018553,0.0000019318,0.0000019282, +0.0000019308,0.0000019704,0.0000019952,0.0000020202,0.0000020356, +0.0000020338,0.0000020300,0.0000020291,0.0000020284,0.0000020265, +0.0000020242,0.0000020217,0.0000020207,0.0000020220,0.0000020248, +0.0000020281,0.0000020315,0.0000020343,0.0000020336,0.0000020292, +0.0000020191,0.0000020066,0.0000019969,0.0000019931,0.0000019963, +0.0000020082,0.0000020267,0.0000020421,0.0000020491,0.0000020491, +0.0000020427,0.0000020316,0.0000020173,0.0000020004,0.0000019835, +0.0000019747,0.0000019771,0.0000019916,0.0000020115,0.0000020257, +0.0000020341,0.0000020432,0.0000020505,0.0000020460,0.0000020314, +0.0000020234,0.0000020274,0.0000020361,0.0000020349,0.0000020180, +0.0000020022,0.0000019797,0.0000019271,0.0000018805,0.0000018608, +0.0000018492,0.0000018471,0.0000018532,0.0000018650,0.0000018740, +0.0000018769,0.0000018759,0.0000018783,0.0000018907,0.0000019121, +0.0000019279,0.0000019255,0.0000019025,0.0000018599,0.0000018187, +0.0000017947,0.0000017871,0.0000017864,0.0000017880,0.0000017922, +0.0000017989,0.0000018044,0.0000018011,0.0000017903,0.0000017967, +0.0000018189,0.0000018278,0.0000018396,0.0000018247,0.0000018192, +0.0000018856,0.0000019381,0.0000019111,0.0000018880,0.0000018842, +0.0000017603,0.0000017041,0.0000016922,0.0000016825,0.0000016711, +0.0000016611,0.0000016545,0.0000016545,0.0000016576,0.0000016602, +0.0000016650,0.0000016709,0.0000016728,0.0000016699,0.0000016659, +0.0000016607,0.0000016458,0.0000016177,0.0000015927,0.0000015910, +0.0000016055,0.0000016190,0.0000016223,0.0000016236,0.0000016270, +0.0000016253,0.0000016131,0.0000015917,0.0000015730,0.0000015682, +0.0000015772,0.0000015996,0.0000016266,0.0000016540,0.0000016756, +0.0000016914,0.0000017003,0.0000017010,0.0000016905,0.0000016744, +0.0000016549,0.0000016363,0.0000016141,0.0000015928,0.0000015878, +0.0000015975,0.0000016167,0.0000016353,0.0000016454,0.0000016459, +0.0000016391,0.0000016286,0.0000016183,0.0000016092,0.0000016004, +0.0000015892,0.0000015751,0.0000015597,0.0000015461,0.0000015364, +0.0000015302,0.0000015266,0.0000015247,0.0000015236,0.0000015231, +0.0000015238,0.0000015270,0.0000015346,0.0000015462,0.0000015595, +0.0000015728,0.0000015914,0.0000016133,0.0000016181,0.0000015994, +0.0000015912,0.0000016029,0.0000015943,0.0000015669,0.0000015514, +0.0000015602,0.0000015820,0.0000016003,0.0000016094,0.0000016142, +0.0000016173,0.0000016176,0.0000016179,0.0000016179,0.0000016177, +0.0000016158,0.0000016113,0.0000016074,0.0000016086,0.0000016109, +0.0000016159,0.0000016265,0.0000016357,0.0000016307,0.0000016309, +0.0000016760,0.0000017335,0.0000017346,0.0000017022,0.0000016928, +0.0000016991,0.0000017038,0.0000017053,0.0000017124,0.0000017275, +0.0000017444,0.0000017571,0.0000017629,0.0000017631,0.0000017602, +0.0000017567,0.0000017531,0.0000017489,0.0000017437,0.0000017381, +0.0000017326,0.0000017276,0.0000017235,0.0000017204,0.0000017182, +0.0000017168,0.0000017158,0.0000017146,0.0000017128,0.0000017099, +0.0000017060,0.0000017033,0.0000017024,0.0000017029,0.0000017023, +0.0000017008,0.0000016995,0.0000016969,0.0000016953,0.0000016942, +0.0000016929,0.0000016921,0.0000016915,0.0000016893,0.0000016872, +0.0000016873,0.0000016816,0.0000016754,0.0000016711,0.0000016666, +0.0000016620,0.0000016564,0.0000016513,0.0000016469,0.0000016440, +0.0000016435,0.0000016447,0.0000016441,0.0000016432,0.0000016480, +0.0000016565,0.0000016715,0.0000016958,0.0000017257,0.0000017595, +0.0000017952,0.0000018257,0.0000018465,0.0000018658,0.0000018769, +0.0000018774,0.0000018842,0.0000018844,0.0000018840,0.0000018819, +0.0000018813,0.0000018799,0.0000018801,0.0000018808,0.0000018815, +0.0000018826,0.0000018847,0.0000018883,0.0000018927,0.0000018974, +0.0000019019,0.0000019059,0.0000019085,0.0000019101,0.0000019113, +0.0000019117,0.0000019111,0.0000019101,0.0000019093,0.0000019093, +0.0000019107,0.0000019132,0.0000019159,0.0000019191,0.0000019230, +0.0000019279,0.0000019332,0.0000019382,0.0000019424,0.0000019471, +0.0000019557,0.0000019689,0.0000019769,0.0000019751,0.0000019645, +0.0000019558,0.0000019559,0.0000019630,0.0000019719,0.0000019804, +0.0000019855,0.0000019863,0.0000019842,0.0000019818,0.0000019795, +0.0000019782,0.0000019787,0.0000019807,0.0000019836,0.0000019881, +0.0000019934,0.0000019984,0.0000020033,0.0000020079,0.0000020113, +0.0000020125,0.0000020117,0.0000020097,0.0000020087,0.0000020061, +0.0000019946,0.0000019817,0.0000019833,0.0000019931,0.0000019885, +0.0000019651,0.0000019408,0.0000019016,0.0000018622,0.0000018544, +0.0000018574,0.0000018538,0.0000018517,0.0000018585,0.0000018780, +0.0000019069,0.0000019250,0.0000019181,0.0000018873,0.0000018365, +0.0000017647,0.0000016987,0.0000016681,0.0000016630,0.0000016639, +0.0000016658,0.0000016683,0.0000016710,0.0000016713,0.0000016696, +0.0000016745,0.0000016933,0.0000017277,0.0000017750,0.0000018329, +0.0000018940,0.0000019438,0.0000019720,0.0000019764,0.0000019697, +0.0000019656,0.0000019661,0.0000019677,0.0000019657,0.0000019596, +0.0000019481,0.0000019295,0.0000019019,0.0000018684,0.0000018562, +0.0000018813,0.0000019149,0.0000019244,0.0000019210,0.0000019125, +0.0000019035,0.0000019012,0.0000019034,0.0000019050,0.0000019052, +0.0000019050,0.0000019065,0.0000019106,0.0000019157,0.0000019203, +0.0000019226,0.0000019188,0.0000019118,0.0000019094,0.0000019097, +0.0000019092,0.0000019068,0.0000018936,0.0000018678,0.0000018407, +0.0000018310,0.0000018296,0.0000018386,0.0000018592,0.0000018865, +0.0000018963,0.0000018865,0.0000018718,0.0000018642,0.0000018603, +0.0000018629,0.0000018660,0.0000018643,0.0000018618,0.0000018621, +0.0000018673,0.0000018801,0.0000018936,0.0000019046,0.0000019081, +0.0000018867,0.0000018635,0.0000018647,0.0000018678,0.0000018669, +0.0000018638,0.0000018626,0.0000018626,0.0000018536,0.0000018310, +0.0000018044,0.0000017844,0.0000017692,0.0000017592,0.0000017538, +0.0000017511,0.0000017496,0.0000017500,0.0000017543,0.0000017611, +0.0000017666,0.0000017691,0.0000017694,0.0000017694,0.0000017700, +0.0000017726,0.0000017780,0.0000017840,0.0000017880,0.0000017896, +0.0000017888,0.0000017848,0.0000017786,0.0000017726,0.0000017636, +0.0000017486,0.0000017307,0.0000017099,0.0000016933,0.0000016830, +0.0000016766,0.0000016719,0.0000016631,0.0000016583,0.0000016590, +0.0000016562,0.0000016535,0.0000016539,0.0000016539,0.0000016524, +0.0000016489,0.0000016461,0.0000016442,0.0000016425,0.0000016412, +0.0000016392,0.0000016355,0.0000016276,0.0000016157,0.0000016045, +0.0000015965,0.0000015922,0.0000015971,0.0000016039,0.0000016021, +0.0000015936,0.0000015863,0.0000015876,0.0000015986,0.0000016101, +0.0000016187,0.0000016335,0.0000016498,0.0000016643,0.0000016707, +0.0000016637,0.0000016575,0.0000016605,0.0000016779,0.0000017006, +0.0000017047,0.0000016999,0.0000016930,0.0000016894,0.0000016880, +0.0000016812,0.0000016743,0.0000016656,0.0000016510,0.0000016328, +0.0000016205,0.0000016162,0.0000016132,0.0000016128,0.0000016197, +0.0000016316,0.0000016414,0.0000016478,0.0000016533,0.0000016573, +0.0000016612,0.0000016714,0.0000016989,0.0000017391,0.0000017671, +0.0000017745,0.0000017454,0.0000017183,0.0000016878,0.0000016673, +0.0000016583,0.0000016528,0.0000016480,0.0000016447,0.0000016418, +0.0000016385,0.0000016361,0.0000016359,0.0000016359,0.0000016346, +0.0000016334,0.0000016353,0.0000016389,0.0000016411,0.0000016417, +0.0000016415,0.0000016412,0.0000016407,0.0000016408,0.0000016433, +0.0000016461,0.0000016516,0.0000016539,0.0000016521,0.0000016624, +0.0000017059,0.0000017460,0.0000017502,0.0000017465,0.0000017481, +0.0000017530,0.0000017622,0.0000017758,0.0000017874,0.0000017983, +0.0000018052,0.0000018047,0.0000017981,0.0000017952,0.0000017996, +0.0000018106,0.0000018210,0.0000018195,0.0000017943,0.0000017738, +0.0000017604,0.0000017367,0.0000017336,0.0000017553,0.0000017411, +0.0000017195,0.0000017091,0.0000017051,0.0000017262,0.0000017319, +0.0000017239,0.0000017095,0.0000016983,0.0000016979,0.0000017057, +0.0000017139,0.0000017205,0.0000017307,0.0000017445,0.0000017513, +0.0000017535,0.0000017528,0.0000017552,0.0000017763,0.0000017870, +0.0000017927,0.0000018034,0.0000018160,0.0000018295,0.0000018363, +0.0000018315,0.0000018108,0.0000018062,0.0000017881,0.0000017374, +0.0000017342,0.0000017312,0.0000017408,0.0000017572,0.0000017468, +0.0000017250,0.0000017094,0.0000017066,0.0000017158,0.0000017254, +0.0000017147,0.0000016862,0.0000016670,0.0000016663,0.0000016860, +0.0000016953,0.0000016859,0.0000016741,0.0000016694,0.0000016771, +0.0000017115,0.0000017482,0.0000017616,0.0000017637,0.0000017725, +0.0000017859,0.0000017910,0.0000017884,0.0000017856,0.0000017877, +0.0000017995,0.0000018116,0.0000018056,0.0000017849,0.0000017722, +0.0000017664,0.0000017490,0.0000017289,0.0000017254,0.0000017390, +0.0000017546,0.0000017606,0.0000017610,0.0000017599,0.0000017595, +0.0000017679,0.0000017815,0.0000017751,0.0000017379,0.0000017006, +0.0000016857,0.0000016869,0.0000016944,0.0000017030,0.0000017095, +0.0000017243,0.0000017598,0.0000017829,0.0000017844,0.0000017869, +0.0000017931,0.0000017945,0.0000018307,0.0000019157,0.0000019312, +0.0000019271,0.0000019619,0.0000019915,0.0000020156,0.0000020350, +0.0000020359,0.0000020316,0.0000020308,0.0000020307,0.0000020297, +0.0000020268,0.0000020232,0.0000020209,0.0000020202,0.0000020206, +0.0000020218,0.0000020243,0.0000020281,0.0000020322,0.0000020345, +0.0000020346,0.0000020320,0.0000020259,0.0000020203,0.0000020187, +0.0000020239,0.0000020342,0.0000020421,0.0000020447,0.0000020430, +0.0000020361,0.0000020262,0.0000020147,0.0000020046,0.0000020001, +0.0000020019,0.0000020108,0.0000020229,0.0000020312,0.0000020376, +0.0000020474,0.0000020536,0.0000020471,0.0000020330,0.0000020248, +0.0000020282,0.0000020382,0.0000020337,0.0000020161,0.0000020012, +0.0000019800,0.0000019306,0.0000018862,0.0000018725,0.0000018643, +0.0000018588,0.0000018654,0.0000018777,0.0000018849,0.0000018846, +0.0000018830,0.0000018897,0.0000019071,0.0000019267,0.0000019326, +0.0000019128,0.0000018685,0.0000018222,0.0000017928,0.0000017813, +0.0000017825,0.0000017840,0.0000017850,0.0000017872,0.0000017910, +0.0000017967,0.0000017994,0.0000017923,0.0000017910,0.0000018058, +0.0000018270,0.0000018302,0.0000018436,0.0000018125,0.0000018424, +0.0000019126,0.0000019356,0.0000018933,0.0000018933,0.0000018216, +0.0000017098,0.0000016878,0.0000016757,0.0000016592,0.0000016532, +0.0000016515,0.0000016519,0.0000016562,0.0000016619,0.0000016672, +0.0000016733,0.0000016747,0.0000016698,0.0000016619,0.0000016500, +0.0000016254,0.0000015959,0.0000015854,0.0000015967,0.0000016166, +0.0000016260,0.0000016284,0.0000016327,0.0000016332,0.0000016227, +0.0000015987,0.0000015769,0.0000015692,0.0000015747,0.0000015954, +0.0000016241,0.0000016542,0.0000016768,0.0000016923,0.0000016997, +0.0000017038,0.0000017043,0.0000016952,0.0000016732,0.0000016468, +0.0000016241,0.0000016028,0.0000015930,0.0000015963,0.0000016152, +0.0000016357,0.0000016466,0.0000016463,0.0000016382,0.0000016261, +0.0000016144,0.0000016049,0.0000015950,0.0000015807,0.0000015623, +0.0000015440,0.0000015297,0.0000015204,0.0000015155,0.0000015135, +0.0000015133,0.0000015141,0.0000015144,0.0000015142,0.0000015132, +0.0000015115,0.0000015097,0.0000015133,0.0000015226,0.0000015378, +0.0000015537,0.0000015727,0.0000016007,0.0000016177,0.0000016054, +0.0000015926,0.0000016005,0.0000015943,0.0000015677,0.0000015539, +0.0000015551,0.0000015686,0.0000015848,0.0000015976,0.0000016047, +0.0000016083,0.0000016112,0.0000016119,0.0000016089,0.0000016000, +0.0000015891,0.0000015841,0.0000015886,0.0000016005,0.0000016101, +0.0000016183,0.0000016293,0.0000016346,0.0000016292,0.0000016390, +0.0000017005,0.0000017419,0.0000017246,0.0000016955,0.0000016935, +0.0000017028,0.0000017064,0.0000017065,0.0000017114,0.0000017217, +0.0000017324,0.0000017388,0.0000017399,0.0000017373,0.0000017327, +0.0000017276,0.0000017228,0.0000017184,0.0000017149,0.0000017130, +0.0000017123,0.0000017123,0.0000017116,0.0000017091,0.0000017047, +0.0000017005,0.0000016988,0.0000017015,0.0000016997,0.0000017019, +0.0000017092,0.0000017180,0.0000017264,0.0000017322,0.0000017366, +0.0000017388,0.0000017388,0.0000017386,0.0000017375,0.0000017356, +0.0000017335,0.0000017302,0.0000017250,0.0000017204,0.0000017151, +0.0000017053,0.0000016947,0.0000016862,0.0000016794,0.0000016729, +0.0000016673,0.0000016616,0.0000016568,0.0000016555,0.0000016578, +0.0000016636,0.0000016739,0.0000016899,0.0000017141,0.0000017452, +0.0000017796,0.0000018156,0.0000018476,0.0000018656,0.0000018816, +0.0000018786,0.0000018772,0.0000018718,0.0000018622,0.0000018547, +0.0000018473,0.0000018424,0.0000018384,0.0000018367,0.0000018374, +0.0000018404,0.0000018454,0.0000018521,0.0000018588,0.0000018643, +0.0000018689,0.0000018736,0.0000018787,0.0000018842,0.0000018897, +0.0000018947,0.0000018991,0.0000019023,0.0000019042,0.0000019052, +0.0000019059,0.0000019066,0.0000019074,0.0000019084,0.0000019098, +0.0000019115,0.0000019136,0.0000019161,0.0000019199,0.0000019253, +0.0000019319,0.0000019379,0.0000019419,0.0000019471,0.0000019579, +0.0000019722,0.0000019785,0.0000019723,0.0000019607,0.0000019539, +0.0000019543,0.0000019605,0.0000019680,0.0000019755,0.0000019812, +0.0000019834,0.0000019832,0.0000019827,0.0000019823,0.0000019825, +0.0000019839,0.0000019853,0.0000019871,0.0000019904,0.0000019946, +0.0000019988,0.0000020021,0.0000020045,0.0000020057,0.0000020056, +0.0000020048,0.0000020029,0.0000019964,0.0000019848,0.0000019781, +0.0000019831,0.0000019936,0.0000019917,0.0000019694,0.0000019476, +0.0000019255,0.0000018849,0.0000018594,0.0000018594,0.0000018602, +0.0000018608,0.0000018709,0.0000018934,0.0000019187,0.0000019294, +0.0000019181,0.0000018869,0.0000018428,0.0000017795,0.0000017136, +0.0000016789,0.0000016745,0.0000016753,0.0000016743,0.0000016738, +0.0000016725,0.0000016710,0.0000016667,0.0000016592,0.0000016541, +0.0000016632,0.0000016882,0.0000017297,0.0000017880,0.0000018601, +0.0000019281,0.0000019734,0.0000019886,0.0000019922,0.0000019934, +0.0000019956,0.0000019948,0.0000019879,0.0000019745,0.0000019564, +0.0000019376,0.0000019123,0.0000018796,0.0000018663,0.0000018891, +0.0000019144,0.0000019233,0.0000019196,0.0000019111,0.0000019082, +0.0000019095,0.0000019121,0.0000019144,0.0000019153,0.0000019163, +0.0000019179,0.0000019204,0.0000019233,0.0000019233,0.0000019177, +0.0000019109,0.0000019098,0.0000019113,0.0000019166,0.0000019238, +0.0000019250,0.0000019130,0.0000018873,0.0000018523,0.0000018266, +0.0000018234,0.0000018315,0.0000018578,0.0000018888,0.0000018962, +0.0000018813,0.0000018663,0.0000018615,0.0000018641,0.0000018670, +0.0000018663,0.0000018648,0.0000018657,0.0000018699,0.0000018807, +0.0000018936,0.0000019040,0.0000019028,0.0000018764,0.0000018588, +0.0000018606,0.0000018622,0.0000018606,0.0000018578,0.0000018590, +0.0000018611,0.0000018528,0.0000018286,0.0000018010,0.0000017819, +0.0000017693,0.0000017600,0.0000017532,0.0000017491,0.0000017479, +0.0000017503,0.0000017567,0.0000017633,0.0000017672,0.0000017684, +0.0000017690,0.0000017709,0.0000017747,0.0000017807,0.0000017870, +0.0000017906,0.0000017922,0.0000017923,0.0000017900,0.0000017849, +0.0000017784,0.0000017721,0.0000017608,0.0000017450,0.0000017272, +0.0000017064,0.0000016916,0.0000016825,0.0000016766,0.0000016714, +0.0000016625,0.0000016592,0.0000016592,0.0000016566,0.0000016551, +0.0000016553,0.0000016529,0.0000016491,0.0000016467,0.0000016452, +0.0000016439,0.0000016438,0.0000016440,0.0000016412,0.0000016352, +0.0000016261,0.0000016124,0.0000016007,0.0000015933,0.0000015913, +0.0000015989,0.0000016035,0.0000015997,0.0000015911,0.0000015866, +0.0000015907,0.0000016017,0.0000016107,0.0000016205,0.0000016368, +0.0000016526,0.0000016668,0.0000016685,0.0000016592,0.0000016583, +0.0000016724,0.0000016960,0.0000017049,0.0000017026,0.0000016975, +0.0000016932,0.0000016888,0.0000016796,0.0000016729,0.0000016696, +0.0000016647,0.0000016547,0.0000016380,0.0000016232,0.0000016164, +0.0000016130,0.0000016126,0.0000016194,0.0000016330,0.0000016456, +0.0000016543,0.0000016618,0.0000016699,0.0000016847,0.0000017105, +0.0000017405,0.0000017583,0.0000017589,0.0000017141,0.0000016907, +0.0000016704,0.0000016584,0.0000016518,0.0000016464,0.0000016427, +0.0000016397,0.0000016357,0.0000016316,0.0000016299,0.0000016306, +0.0000016311,0.0000016300,0.0000016284,0.0000016303,0.0000016348, +0.0000016380,0.0000016381,0.0000016358,0.0000016326,0.0000016310, +0.0000016326,0.0000016372,0.0000016420,0.0000016495,0.0000016535, +0.0000016519,0.0000016573,0.0000016947,0.0000017396,0.0000017500, +0.0000017471,0.0000017477,0.0000017533,0.0000017613,0.0000017728, +0.0000017841,0.0000017945,0.0000017996,0.0000017979,0.0000017932, +0.0000017941,0.0000018020,0.0000018131,0.0000018181,0.0000018019, +0.0000017760,0.0000017643,0.0000017469,0.0000017290,0.0000017418, +0.0000017530,0.0000017264,0.0000017157,0.0000017015,0.0000017144, +0.0000017337,0.0000017341,0.0000017200,0.0000017013,0.0000016891, +0.0000016913,0.0000017021,0.0000017107,0.0000017158,0.0000017249, +0.0000017396,0.0000017498,0.0000017521,0.0000017525,0.0000017541, +0.0000017743,0.0000017887,0.0000017946,0.0000018036,0.0000018179, +0.0000018326,0.0000018356,0.0000018267,0.0000018064,0.0000018040, +0.0000017750,0.0000017301,0.0000017342,0.0000017300,0.0000017438, +0.0000017529,0.0000017368,0.0000017191,0.0000017088,0.0000017121, +0.0000017236,0.0000017259,0.0000017039,0.0000016787,0.0000016658, +0.0000016715,0.0000016909,0.0000016922,0.0000016784,0.0000016676, +0.0000016674,0.0000016926,0.0000017347,0.0000017591,0.0000017648, +0.0000017750,0.0000017898,0.0000017945,0.0000017899,0.0000017865, +0.0000017902,0.0000018040,0.0000018136,0.0000018057,0.0000017854, +0.0000017742,0.0000017668,0.0000017477,0.0000017289,0.0000017274, +0.0000017414,0.0000017541,0.0000017581,0.0000017597,0.0000017597, +0.0000017593,0.0000017679,0.0000017815,0.0000017733,0.0000017355, +0.0000017008,0.0000016859,0.0000016851,0.0000016906,0.0000016953, +0.0000017011,0.0000017111,0.0000017397,0.0000017726,0.0000017824, +0.0000017845,0.0000017918,0.0000017939,0.0000018130,0.0000018919, +0.0000019343,0.0000019239,0.0000019521,0.0000019860,0.0000020088, +0.0000020322,0.0000020391,0.0000020375,0.0000020370,0.0000020376, +0.0000020367,0.0000020336,0.0000020288,0.0000020250,0.0000020221, +0.0000020206,0.0000020207,0.0000020223,0.0000020255,0.0000020290, +0.0000020320,0.0000020341,0.0000020368,0.0000020384,0.0000020391, +0.0000020390,0.0000020385,0.0000020395,0.0000020402,0.0000020397, +0.0000020371,0.0000020325,0.0000020271,0.0000020228,0.0000020205, +0.0000020210,0.0000020262,0.0000020315,0.0000020364,0.0000020444, +0.0000020546,0.0000020567,0.0000020471,0.0000020356,0.0000020293, +0.0000020304,0.0000020366,0.0000020289,0.0000020122,0.0000019986, +0.0000019795,0.0000019353,0.0000018909,0.0000018839,0.0000018858, +0.0000018841,0.0000018861,0.0000018917,0.0000018918,0.0000018872, +0.0000018895,0.0000019033,0.0000019227,0.0000019318,0.0000019229, +0.0000018866,0.0000018366,0.0000017979,0.0000017808,0.0000017798, +0.0000017812,0.0000017852,0.0000017879,0.0000017884,0.0000017893, +0.0000017912,0.0000017949,0.0000017934,0.0000017880,0.0000017959, +0.0000018196,0.0000018305,0.0000018350,0.0000018355,0.0000018093, +0.0000018733,0.0000019347,0.0000019164,0.0000018893,0.0000018751, +0.0000017521,0.0000016858,0.0000016735,0.0000016535,0.0000016502, +0.0000016511,0.0000016514,0.0000016542,0.0000016632,0.0000016709, +0.0000016739,0.0000016743,0.0000016703,0.0000016584,0.0000016354, +0.0000016021,0.0000015788,0.0000015828,0.0000016050,0.0000016218, +0.0000016272,0.0000016332,0.0000016374,0.0000016310,0.0000016076, +0.0000015821,0.0000015714,0.0000015737,0.0000015892,0.0000016173, +0.0000016504,0.0000016752,0.0000016901,0.0000016952,0.0000016984, +0.0000017034,0.0000017063,0.0000016977,0.0000016704,0.0000016394, +0.0000016162,0.0000016017,0.0000015972,0.0000016125,0.0000016346, +0.0000016480,0.0000016484,0.0000016392,0.0000016253,0.0000016114, +0.0000016000,0.0000015889,0.0000015735,0.0000015532,0.0000015331, +0.0000015188,0.0000015112,0.0000015082,0.0000015080,0.0000015103, +0.0000015133,0.0000015166,0.0000015189,0.0000015198,0.0000015193, +0.0000015169,0.0000015126,0.0000015085,0.0000015077,0.0000015090, +0.0000015201,0.0000015370,0.0000015566,0.0000015866,0.0000016152, +0.0000016122,0.0000015945,0.0000015959,0.0000015927,0.0000015705, +0.0000015526,0.0000015504,0.0000015573,0.0000015695,0.0000015821, +0.0000015912,0.0000015947,0.0000015931,0.0000015878,0.0000015819, +0.0000015779,0.0000015756,0.0000015752,0.0000015820,0.0000015976, +0.0000016110,0.0000016214,0.0000016315,0.0000016322,0.0000016251, +0.0000016538,0.0000017186,0.0000017386,0.0000017142,0.0000016936, +0.0000016954,0.0000017029,0.0000017060,0.0000017053,0.0000017058, +0.0000017085,0.0000017108,0.0000017114,0.0000017101,0.0000017075, +0.0000017049,0.0000017039,0.0000017042,0.0000017051,0.0000017059, +0.0000017050,0.0000017023,0.0000016982,0.0000016940,0.0000016992, +0.0000017079,0.0000017247,0.0000017424,0.0000017624,0.0000017812, +0.0000017937,0.0000018026,0.0000018079,0.0000018108,0.0000018148, +0.0000018197,0.0000018226,0.0000018240,0.0000018237,0.0000018218, +0.0000018189,0.0000018169,0.0000018141,0.0000018099,0.0000018024, +0.0000017925,0.0000017826,0.0000017709,0.0000017592,0.0000017489, +0.0000017405,0.0000017343,0.0000017316,0.0000017342,0.0000017428, +0.0000017575,0.0000017762,0.0000018025,0.0000018294,0.0000018577, +0.0000018742,0.0000018774,0.0000018827,0.0000018701,0.0000018589, +0.0000018438,0.0000018316,0.0000018232,0.0000018174,0.0000018154, +0.0000018145,0.0000018145,0.0000018146,0.0000018150,0.0000018161, +0.0000018189,0.0000018248,0.0000018339,0.0000018448,0.0000018545, +0.0000018616,0.0000018670,0.0000018722,0.0000018774,0.0000018822, +0.0000018865,0.0000018902,0.0000018934,0.0000018960,0.0000018981, +0.0000018996,0.0000019007,0.0000019011,0.0000019009,0.0000019006, +0.0000019008,0.0000019021,0.0000019053,0.0000019103,0.0000019179, +0.0000019277,0.0000019364,0.0000019412,0.0000019473,0.0000019603, +0.0000019747,0.0000019773,0.0000019686,0.0000019575,0.0000019521, +0.0000019530,0.0000019598,0.0000019670,0.0000019729,0.0000019768, +0.0000019782,0.0000019785,0.0000019782,0.0000019787,0.0000019808, +0.0000019833,0.0000019852,0.0000019873,0.0000019898,0.0000019924, +0.0000019941,0.0000019952,0.0000019959,0.0000019955,0.0000019931, +0.0000019883,0.0000019814,0.0000019761,0.0000019784,0.0000019868, +0.0000019931,0.0000019881,0.0000019684,0.0000019489,0.0000019374, +0.0000019095,0.0000018723,0.0000018598,0.0000018641,0.0000018732, +0.0000018899,0.0000019116,0.0000019283,0.0000019295,0.0000019133, +0.0000018820,0.0000018457,0.0000017946,0.0000017330,0.0000016903, +0.0000016779,0.0000016757,0.0000016727,0.0000016690,0.0000016679, +0.0000016684,0.0000016671,0.0000016605,0.0000016525,0.0000016476, +0.0000016495,0.0000016651,0.0000016972,0.0000017509,0.0000018243, +0.0000019030,0.0000019640,0.0000019966,0.0000020123,0.0000020191, +0.0000020186,0.0000020104,0.0000020003,0.0000019863,0.0000019662, +0.0000019427,0.0000019157,0.0000018880,0.0000018797,0.0000018937, +0.0000019116,0.0000019198,0.0000019181,0.0000019181,0.0000019213, +0.0000019274,0.0000019332,0.0000019353,0.0000019349,0.0000019330, +0.0000019306,0.0000019290,0.0000019261,0.0000019200,0.0000019155, +0.0000019167,0.0000019183,0.0000019237,0.0000019296,0.0000019320, +0.0000019293,0.0000019175,0.0000018905,0.0000018525,0.0000018258, +0.0000018239,0.0000018354,0.0000018649,0.0000018957,0.0000018934, +0.0000018769,0.0000018679,0.0000018671,0.0000018689,0.0000018681, +0.0000018672,0.0000018689,0.0000018731,0.0000018834,0.0000018954, +0.0000019013,0.0000018944,0.0000018674,0.0000018544,0.0000018563, +0.0000018579,0.0000018568,0.0000018543,0.0000018567,0.0000018601, +0.0000018515,0.0000018264,0.0000017990,0.0000017815,0.0000017707, +0.0000017616,0.0000017545,0.0000017507,0.0000017518,0.0000017575, +0.0000017640,0.0000017680,0.0000017695,0.0000017705,0.0000017730, +0.0000017775,0.0000017840,0.0000017904,0.0000017936,0.0000017951, +0.0000017961,0.0000017956,0.0000017918,0.0000017842,0.0000017773, +0.0000017700,0.0000017564,0.0000017419,0.0000017235,0.0000017028, +0.0000016904,0.0000016820,0.0000016767,0.0000016711,0.0000016626, +0.0000016597,0.0000016601,0.0000016579,0.0000016569,0.0000016549, +0.0000016502,0.0000016468,0.0000016456,0.0000016450,0.0000016452, +0.0000016475,0.0000016474,0.0000016420,0.0000016348,0.0000016238, +0.0000016080,0.0000015970,0.0000015905,0.0000015915,0.0000016007, +0.0000016024,0.0000015970,0.0000015895,0.0000015876,0.0000015938, +0.0000016033,0.0000016112,0.0000016232,0.0000016399,0.0000016558, +0.0000016684,0.0000016648,0.0000016581,0.0000016672,0.0000016910, +0.0000017056,0.0000017052,0.0000017009,0.0000016975,0.0000016913, +0.0000016798,0.0000016706,0.0000016678,0.0000016654,0.0000016633, +0.0000016573,0.0000016436,0.0000016272,0.0000016182,0.0000016151, +0.0000016144,0.0000016208,0.0000016357,0.0000016512,0.0000016624, +0.0000016724,0.0000016861,0.0000017067,0.0000017259,0.0000017337, +0.0000017298,0.0000016892,0.0000016743,0.0000016615,0.0000016524, +0.0000016460,0.0000016413,0.0000016388,0.0000016349,0.0000016286, +0.0000016240,0.0000016232,0.0000016236,0.0000016233,0.0000016211, +0.0000016194,0.0000016221,0.0000016283,0.0000016333,0.0000016346, +0.0000016325,0.0000016284,0.0000016266,0.0000016300,0.0000016358, +0.0000016405,0.0000016485,0.0000016534,0.0000016514,0.0000016536, +0.0000016836,0.0000017314,0.0000017513,0.0000017495,0.0000017483, +0.0000017544,0.0000017623,0.0000017718,0.0000017822,0.0000017908, +0.0000017935,0.0000017908,0.0000017893,0.0000017946,0.0000018047, +0.0000018125,0.0000018055,0.0000017792,0.0000017633,0.0000017531, +0.0000017325,0.0000017279,0.0000017495,0.0000017398,0.0000017189, +0.0000017071,0.0000017016,0.0000017277,0.0000017393,0.0000017324, +0.0000017096,0.0000016877,0.0000016781,0.0000016829,0.0000016968, +0.0000017079,0.0000017122,0.0000017187,0.0000017333,0.0000017477, +0.0000017521,0.0000017536,0.0000017550,0.0000017727,0.0000017890, +0.0000017956,0.0000018046,0.0000018210,0.0000018328,0.0000018324, +0.0000018197,0.0000018025,0.0000017997,0.0000017584,0.0000017257, +0.0000017331,0.0000017290,0.0000017433,0.0000017446,0.0000017287, +0.0000017149,0.0000017105,0.0000017188,0.0000017289,0.0000017200, +0.0000016936,0.0000016743,0.0000016661,0.0000016775,0.0000016917, +0.0000016860,0.0000016717,0.0000016656,0.0000016760,0.0000017147, +0.0000017512,0.0000017645,0.0000017756,0.0000017911,0.0000017962, +0.0000017929,0.0000017904,0.0000017954,0.0000018089,0.0000018152, +0.0000018061,0.0000017874,0.0000017778,0.0000017686,0.0000017483, +0.0000017319,0.0000017312,0.0000017432,0.0000017523,0.0000017549, +0.0000017579,0.0000017591,0.0000017588,0.0000017677,0.0000017808, +0.0000017706,0.0000017328,0.0000017008,0.0000016872,0.0000016853, +0.0000016885,0.0000016907,0.0000016928,0.0000017002,0.0000017207, +0.0000017560,0.0000017777,0.0000017828,0.0000017892,0.0000017943, +0.0000018004,0.0000018643,0.0000019335,0.0000019248,0.0000019436, +0.0000019787,0.0000020012,0.0000020268,0.0000020404,0.0000020434, +0.0000020435,0.0000020433,0.0000020410,0.0000020384,0.0000020345, +0.0000020314,0.0000020278,0.0000020235,0.0000020212,0.0000020221, +0.0000020265,0.0000020315,0.0000020344,0.0000020353,0.0000020366, +0.0000020376,0.0000020382,0.0000020387,0.0000020388,0.0000020392, +0.0000020389,0.0000020377,0.0000020358,0.0000020337,0.0000020323, +0.0000020323,0.0000020335,0.0000020352,0.0000020372,0.0000020427, +0.0000020539,0.0000020630,0.0000020591,0.0000020470,0.0000020378, +0.0000020341,0.0000020350,0.0000020353,0.0000020230,0.0000020064, +0.0000019937,0.0000019768,0.0000019402,0.0000018947,0.0000018874, +0.0000018998,0.0000019063,0.0000019046,0.0000018983,0.0000018916, +0.0000018916,0.0000019024,0.0000019192,0.0000019288,0.0000019285, +0.0000019077,0.0000018596,0.0000018113,0.0000017849,0.0000017791, +0.0000017797,0.0000017844,0.0000017915,0.0000017964,0.0000017972, +0.0000017950,0.0000017920,0.0000017915,0.0000017919,0.0000017873, +0.0000017900,0.0000018050,0.0000018287,0.0000018307,0.0000018407, +0.0000018215,0.0000018229,0.0000019036,0.0000019404,0.0000018985, +0.0000018860,0.0000018359,0.0000017064,0.0000016728,0.0000016533, +0.0000016482,0.0000016483,0.0000016502,0.0000016548,0.0000016633, +0.0000016725,0.0000016748,0.0000016705,0.0000016641,0.0000016510, +0.0000016205,0.0000015835,0.0000015690,0.0000015813,0.0000016082, +0.0000016235,0.0000016282,0.0000016347,0.0000016329,0.0000016150, +0.0000015913,0.0000015776,0.0000015756,0.0000015841,0.0000016073, +0.0000016412,0.0000016704,0.0000016860,0.0000016894,0.0000016920, +0.0000016980,0.0000017063,0.0000017106,0.0000016984,0.0000016655, +0.0000016322,0.0000016113,0.0000016027,0.0000016105,0.0000016319, +0.0000016486,0.0000016502,0.0000016417,0.0000016261,0.0000016095, +0.0000015958,0.0000015835,0.0000015679,0.0000015480,0.0000015283, +0.0000015137,0.0000015060,0.0000015040,0.0000015048,0.0000015079, +0.0000015130,0.0000015190,0.0000015242,0.0000015279,0.0000015310, +0.0000015327,0.0000015330,0.0000015295,0.0000015235,0.0000015165, +0.0000015099,0.0000015074,0.0000015088,0.0000015228,0.0000015432, +0.0000015725,0.0000016070,0.0000016154,0.0000016006,0.0000015950, +0.0000015902,0.0000015714,0.0000015528,0.0000015465,0.0000015498, +0.0000015587,0.0000015691,0.0000015774,0.0000015822,0.0000015847, +0.0000015873,0.0000015902,0.0000015906,0.0000015867,0.0000015797, +0.0000015815,0.0000015969,0.0000016129,0.0000016248,0.0000016326, +0.0000016299,0.0000016281,0.0000016638,0.0000017204,0.0000017372, +0.0000017149,0.0000016934,0.0000016911,0.0000016966,0.0000017007, +0.0000017015,0.0000017005,0.0000016996,0.0000016992,0.0000016992, +0.0000016989,0.0000016986,0.0000016990,0.0000016992,0.0000016977, +0.0000016943,0.0000016914,0.0000016968,0.0000017015,0.0000017223, +0.0000017545,0.0000017889,0.0000018149,0.0000018317,0.0000018422, +0.0000018467,0.0000018411,0.0000018340,0.0000018335,0.0000018307, +0.0000018268,0.0000018252,0.0000018244,0.0000018250,0.0000018268, +0.0000018296,0.0000018348,0.0000018428,0.0000018435,0.0000018443, +0.0000018503,0.0000018554,0.0000018535,0.0000018456,0.0000018413, +0.0000018384,0.0000018356,0.0000018334,0.0000018343,0.0000018395, +0.0000018470,0.0000018538,0.0000018677,0.0000018770,0.0000018761, +0.0000018777,0.0000018663,0.0000018516,0.0000018353,0.0000018211, +0.0000018111,0.0000018074,0.0000018070,0.0000018069,0.0000018076, +0.0000018085,0.0000018096,0.0000018106,0.0000018121,0.0000018121, +0.0000018130,0.0000018101,0.0000018090,0.0000018126,0.0000018229, +0.0000018363,0.0000018478,0.0000018561,0.0000018629,0.0000018690, +0.0000018743,0.0000018787,0.0000018824,0.0000018853,0.0000018875, +0.0000018888,0.0000018890,0.0000018879,0.0000018858,0.0000018837, +0.0000018829,0.0000018837,0.0000018871,0.0000018927,0.0000019000, +0.0000019096,0.0000019224,0.0000019343,0.0000019404,0.0000019474, +0.0000019623,0.0000019753,0.0000019746,0.0000019654,0.0000019552, +0.0000019505,0.0000019533,0.0000019613,0.0000019683,0.0000019723, +0.0000019736,0.0000019737,0.0000019733,0.0000019739,0.0000019755, +0.0000019767,0.0000019766,0.0000019764,0.0000019770,0.0000019780, +0.0000019786,0.0000019787,0.0000019780,0.0000019766,0.0000019739, +0.0000019712,0.0000019715,0.0000019767,0.0000019850,0.0000019917, +0.0000019895,0.0000019779,0.0000019618,0.0000019477,0.0000019404, +0.0000019268,0.0000018913,0.0000018633,0.0000018643,0.0000018818, +0.0000019034,0.0000019194,0.0000019262,0.0000019188,0.0000018981, +0.0000018713,0.0000018424,0.0000018029,0.0000017538,0.0000017095, +0.0000016851,0.0000016771,0.0000016727,0.0000016688,0.0000016674, +0.0000016697,0.0000016736,0.0000016723,0.0000016631,0.0000016505, +0.0000016458,0.0000016455,0.0000016532,0.0000016771,0.0000017243, +0.0000017945,0.0000018750,0.0000019447,0.0000019924,0.0000020153, +0.0000020215,0.0000020145,0.0000020069,0.0000019981,0.0000019899, +0.0000019728,0.0000019437,0.0000019161,0.0000018966,0.0000018901, +0.0000018986,0.0000019111,0.0000019177,0.0000019216,0.0000019289, +0.0000019384,0.0000019447,0.0000019456,0.0000019441,0.0000019410, +0.0000019373,0.0000019340,0.0000019299,0.0000019248,0.0000019218, +0.0000019225,0.0000019221,0.0000019271,0.0000019326,0.0000019339, +0.0000019311,0.0000019243,0.0000019117,0.0000018814,0.0000018420, +0.0000018257,0.0000018286,0.0000018436,0.0000018791,0.0000018964, +0.0000018894,0.0000018772,0.0000018721,0.0000018716,0.0000018704, +0.0000018703,0.0000018728,0.0000018777,0.0000018881,0.0000018978, +0.0000018986,0.0000018831,0.0000018563,0.0000018501,0.0000018538, +0.0000018581,0.0000018576,0.0000018542,0.0000018560,0.0000018592, +0.0000018499,0.0000018246,0.0000017984,0.0000017825,0.0000017723, +0.0000017636,0.0000017579,0.0000017568,0.0000017607,0.0000017666, +0.0000017706,0.0000017721,0.0000017734,0.0000017762,0.0000017808, +0.0000017875,0.0000017938,0.0000017969,0.0000017989,0.0000018016, +0.0000018024,0.0000017998,0.0000017911,0.0000017814,0.0000017755, +0.0000017654,0.0000017523,0.0000017396,0.0000017193,0.0000016997, +0.0000016891,0.0000016813,0.0000016770,0.0000016714,0.0000016626, +0.0000016609,0.0000016615,0.0000016596,0.0000016574,0.0000016530, +0.0000016476,0.0000016454,0.0000016455,0.0000016458,0.0000016487, +0.0000016517,0.0000016492,0.0000016417,0.0000016338,0.0000016197, +0.0000016032,0.0000015933,0.0000015884,0.0000015933,0.0000016013, +0.0000016004,0.0000015947,0.0000015886,0.0000015894,0.0000015959, +0.0000016040,0.0000016123,0.0000016263,0.0000016428,0.0000016601, +0.0000016682,0.0000016612,0.0000016631,0.0000016843,0.0000017054, +0.0000017084,0.0000017047,0.0000017012,0.0000016962,0.0000016838, +0.0000016715,0.0000016677,0.0000016646,0.0000016619,0.0000016608, +0.0000016580,0.0000016481,0.0000016317,0.0000016211,0.0000016184, +0.0000016184,0.0000016240,0.0000016383,0.0000016546,0.0000016669, +0.0000016783,0.0000016910,0.0000017012,0.0000017040,0.0000017002, +0.0000016749,0.0000016651,0.0000016553,0.0000016470,0.0000016416, +0.0000016382,0.0000016352,0.0000016293,0.0000016219,0.0000016182, +0.0000016183,0.0000016181,0.0000016157,0.0000016114,0.0000016085, +0.0000016114,0.0000016191,0.0000016257,0.0000016284,0.0000016273, +0.0000016247,0.0000016252,0.0000016304,0.0000016361,0.0000016401, +0.0000016479,0.0000016534,0.0000016519,0.0000016519,0.0000016735, +0.0000017211,0.0000017512,0.0000017530,0.0000017504,0.0000017550, +0.0000017633,0.0000017720,0.0000017803,0.0000017857,0.0000017861, +0.0000017846,0.0000017871,0.0000017964,0.0000018055,0.0000018046, +0.0000017817,0.0000017614,0.0000017534,0.0000017394,0.0000017238, +0.0000017355,0.0000017485,0.0000017242,0.0000017137,0.0000016969, +0.0000017120,0.0000017383,0.0000017424,0.0000017222,0.0000016948, +0.0000016769,0.0000016691,0.0000016739,0.0000016888,0.0000017032, +0.0000017092,0.0000017128,0.0000017254,0.0000017438,0.0000017522, +0.0000017549,0.0000017577,0.0000017713,0.0000017881,0.0000017955, +0.0000018071,0.0000018237,0.0000018292,0.0000018270,0.0000018105, +0.0000017998,0.0000017927,0.0000017410,0.0000017268,0.0000017313, +0.0000017279,0.0000017388,0.0000017359,0.0000017236,0.0000017124, +0.0000017134,0.0000017255,0.0000017289,0.0000017106,0.0000016860, +0.0000016711,0.0000016683,0.0000016829,0.0000016906,0.0000016797, +0.0000016677,0.0000016673,0.0000016927,0.0000017352,0.0000017602, +0.0000017739,0.0000017907,0.0000017995,0.0000017979,0.0000017962, +0.0000018024,0.0000018138,0.0000018173,0.0000018067,0.0000017905, +0.0000017823,0.0000017718,0.0000017509,0.0000017358,0.0000017358, +0.0000017450,0.0000017507,0.0000017518,0.0000017559,0.0000017580, +0.0000017579,0.0000017673,0.0000017797,0.0000017677,0.0000017302, +0.0000017009,0.0000016888,0.0000016860,0.0000016876,0.0000016883, +0.0000016879,0.0000016914,0.0000017049,0.0000017362,0.0000017676, +0.0000017800,0.0000017862,0.0000017943,0.0000017962,0.0000018398, +0.0000019248,0.0000019303,0.0000019365,0.0000019714,0.0000019945, +0.0000020190,0.0000020373,0.0000020441,0.0000020442,0.0000020419, +0.0000020400,0.0000020390,0.0000020371,0.0000020360,0.0000020344, +0.0000020304,0.0000020250,0.0000020220,0.0000020252,0.0000020328, +0.0000020404,0.0000020440,0.0000020438,0.0000020417,0.0000020395, +0.0000020373,0.0000020363,0.0000020361,0.0000020360,0.0000020362, +0.0000020360,0.0000020364,0.0000020373,0.0000020380,0.0000020394, +0.0000020445,0.0000020543,0.0000020653,0.0000020680,0.0000020603, +0.0000020476,0.0000020398,0.0000020371,0.0000020387,0.0000020381, +0.0000020189,0.0000020007,0.0000019879,0.0000019715,0.0000019433, +0.0000018975,0.0000018812,0.0000018933,0.0000019041,0.0000019004, +0.0000018907,0.0000018891,0.0000018995,0.0000019172,0.0000019293, +0.0000019322,0.0000019209,0.0000018836,0.0000018327,0.0000017947, +0.0000017814,0.0000017808,0.0000017840,0.0000017922,0.0000018020, +0.0000018078,0.0000018088,0.0000018070,0.0000018011,0.0000017944, +0.0000017907,0.0000017876,0.0000017877,0.0000017951,0.0000018188, +0.0000018317,0.0000018323,0.0000018429,0.0000018135,0.0000018505, +0.0000019262,0.0000019295,0.0000018893,0.0000018798,0.0000017865, +0.0000016822,0.0000016606,0.0000016468,0.0000016467,0.0000016499, +0.0000016566,0.0000016647,0.0000016708,0.0000016736,0.0000016697, +0.0000016573,0.0000016374,0.0000016037,0.0000015715,0.0000015646, +0.0000015833,0.0000016093,0.0000016232,0.0000016301,0.0000016312, +0.0000016179,0.0000015964,0.0000015843,0.0000015833,0.0000015859, +0.0000015990,0.0000016291,0.0000016628,0.0000016817,0.0000016856, +0.0000016864,0.0000016918,0.0000017022,0.0000017119,0.0000017137, +0.0000016956,0.0000016565,0.0000016243,0.0000016110,0.0000016096, +0.0000016273,0.0000016477,0.0000016520,0.0000016453,0.0000016281, +0.0000016083,0.0000015917,0.0000015788,0.0000015640,0.0000015445, +0.0000015250,0.0000015105,0.0000015024,0.0000015002,0.0000015025, +0.0000015065,0.0000015119,0.0000015176,0.0000015218,0.0000015245, +0.0000015270,0.0000015297,0.0000015323,0.0000015345,0.0000015365, +0.0000015369,0.0000015352,0.0000015280,0.0000015188,0.0000015110, +0.0000015070,0.0000015116,0.0000015316,0.0000015598,0.0000015989, +0.0000016177,0.0000016068,0.0000015947,0.0000015873,0.0000015725, +0.0000015549,0.0000015479,0.0000015480,0.0000015522,0.0000015590, +0.0000015658,0.0000015709,0.0000015744,0.0000015777,0.0000015818, +0.0000015867,0.0000015867,0.0000015812,0.0000015824,0.0000015970, +0.0000016146,0.0000016275,0.0000016335,0.0000016283,0.0000016305, +0.0000016670,0.0000017222,0.0000017443,0.0000017264,0.0000017001, +0.0000016918,0.0000016880,0.0000016890,0.0000016910,0.0000016919, +0.0000016920,0.0000016917,0.0000016912,0.0000016912,0.0000016917, +0.0000016909,0.0000016933,0.0000016975,0.0000017142,0.0000017419, +0.0000017777,0.0000018136,0.0000018391,0.0000018539,0.0000018499, +0.0000018503,0.0000018373,0.0000018216,0.0000018049,0.0000017873, +0.0000017692,0.0000017517,0.0000017372,0.0000017268,0.0000017217, +0.0000017222,0.0000017268,0.0000017348,0.0000017460,0.0000017601, +0.0000017757,0.0000017911,0.0000018062,0.0000018208,0.0000018324, +0.0000018418,0.0000018514,0.0000018584,0.0000018617,0.0000018631, +0.0000018661,0.0000018678,0.0000018660,0.0000018635,0.0000018615, +0.0000018544,0.0000018418,0.0000018297,0.0000018170,0.0000018074, +0.0000018033,0.0000018021,0.0000018007,0.0000018007,0.0000017961, +0.0000017880,0.0000017808,0.0000017765,0.0000017773,0.0000017830, +0.0000017940,0.0000018073,0.0000018161,0.0000018139,0.0000018070, +0.0000018024,0.0000018035,0.0000018135,0.0000018268,0.0000018391, +0.0000018491,0.0000018570,0.0000018634,0.0000018682,0.0000018715, +0.0000018734,0.0000018739,0.0000018733,0.0000018714,0.0000018693, +0.0000018679,0.0000018677,0.0000018690,0.0000018718,0.0000018768, +0.0000018838,0.0000018925,0.0000019033,0.0000019180,0.0000019326, +0.0000019398,0.0000019476,0.0000019633,0.0000019737,0.0000019725, +0.0000019631,0.0000019539,0.0000019499,0.0000019537,0.0000019614, +0.0000019663,0.0000019672,0.0000019655,0.0000019624,0.0000019597, +0.0000019576,0.0000019568,0.0000019557,0.0000019544,0.0000019543, +0.0000019552,0.0000019564,0.0000019578,0.0000019597,0.0000019616, +0.0000019642,0.0000019683,0.0000019767,0.0000019856,0.0000019909, +0.0000019892,0.0000019789,0.0000019655,0.0000019558,0.0000019476, +0.0000019411,0.0000019349,0.0000019087,0.0000018738,0.0000018653, +0.0000018825,0.0000019048,0.0000019162,0.0000019118,0.0000018934, +0.0000018736,0.0000018565,0.0000018348,0.0000018047,0.0000017717, +0.0000017417,0.0000017193,0.0000017057,0.0000016986,0.0000016953, +0.0000016940,0.0000016956,0.0000017020,0.0000017064,0.0000016993, +0.0000016765,0.0000016548,0.0000016463,0.0000016447,0.0000016472, +0.0000016656,0.0000017062,0.0000017702,0.0000018454,0.0000019139, +0.0000019630,0.0000019870,0.0000019927,0.0000019922,0.0000019897, +0.0000019897,0.0000019891,0.0000019728,0.0000019411,0.0000019169, +0.0000019049,0.0000019000,0.0000019071,0.0000019165,0.0000019235, +0.0000019333,0.0000019442,0.0000019503,0.0000019508,0.0000019489, +0.0000019446,0.0000019391,0.0000019338,0.0000019282,0.0000019214, +0.0000019171,0.0000019158,0.0000019141,0.0000019209,0.0000019285, +0.0000019317,0.0000019290,0.0000019237,0.0000019179,0.0000018997, +0.0000018615,0.0000018316,0.0000018294,0.0000018337,0.0000018589, +0.0000018925,0.0000018982,0.0000018860,0.0000018772,0.0000018747, +0.0000018743,0.0000018750,0.0000018780,0.0000018838,0.0000018935, +0.0000018981,0.0000018936,0.0000018697,0.0000018482,0.0000018490, +0.0000018565,0.0000018665,0.0000018660,0.0000018580,0.0000018562, +0.0000018581,0.0000018484,0.0000018238,0.0000017992,0.0000017844, +0.0000017745,0.0000017665,0.0000017624,0.0000017634,0.0000017679, +0.0000017723,0.0000017746,0.0000017764,0.0000017793,0.0000017838, +0.0000017904,0.0000017966,0.0000018002,0.0000018042,0.0000018092, +0.0000018106,0.0000018077,0.0000017981,0.0000017859,0.0000017784, +0.0000017711,0.0000017596,0.0000017505,0.0000017375,0.0000017147, +0.0000016973,0.0000016881,0.0000016810,0.0000016781,0.0000016710, +0.0000016622,0.0000016619,0.0000016631,0.0000016611,0.0000016570, +0.0000016509,0.0000016463,0.0000016454,0.0000016459,0.0000016489, +0.0000016535,0.0000016546,0.0000016489,0.0000016410,0.0000016315, +0.0000016143,0.0000015986,0.0000015900,0.0000015877,0.0000015956, +0.0000016005,0.0000015985,0.0000015929,0.0000015889,0.0000015905, +0.0000015971,0.0000016050,0.0000016140,0.0000016294,0.0000016468, +0.0000016642,0.0000016667,0.0000016626,0.0000016767,0.0000017022, +0.0000017108,0.0000017093,0.0000017044,0.0000017011,0.0000016915, +0.0000016757,0.0000016688,0.0000016664,0.0000016636,0.0000016609, +0.0000016592,0.0000016576,0.0000016504,0.0000016360,0.0000016246, +0.0000016223,0.0000016226,0.0000016271,0.0000016390,0.0000016532, +0.0000016649,0.0000016741,0.0000016803,0.0000016825,0.0000016810, +0.0000016658,0.0000016583,0.0000016501,0.0000016433,0.0000016393, +0.0000016358,0.0000016310,0.0000016234,0.0000016174,0.0000016165, +0.0000016178,0.0000016167,0.0000016118,0.0000016061,0.0000016019, +0.0000016031,0.0000016096,0.0000016163,0.0000016200,0.0000016206, +0.0000016207,0.0000016235,0.0000016294,0.0000016354,0.0000016390, +0.0000016465,0.0000016531,0.0000016530,0.0000016522,0.0000016656, +0.0000017081,0.0000017475,0.0000017555,0.0000017539,0.0000017555, +0.0000017634,0.0000017719,0.0000017774,0.0000017792,0.0000017793, +0.0000017805,0.0000017875,0.0000017986,0.0000018025,0.0000017846, +0.0000017589,0.0000017489,0.0000017413,0.0000017255,0.0000017234, +0.0000017449,0.0000017376,0.0000017171,0.0000017031,0.0000016952, +0.0000017268,0.0000017450,0.0000017381,0.0000017057,0.0000016828, +0.0000016663,0.0000016608,0.0000016655,0.0000016789,0.0000016953, +0.0000017064,0.0000017090,0.0000017175,0.0000017380,0.0000017518, +0.0000017558,0.0000017611,0.0000017709,0.0000017876,0.0000017954, +0.0000018095,0.0000018238,0.0000018245,0.0000018213,0.0000018008, +0.0000017966,0.0000017830,0.0000017280,0.0000017280,0.0000017294, +0.0000017273,0.0000017344,0.0000017291,0.0000017194,0.0000017109, +0.0000017187,0.0000017294,0.0000017258,0.0000017004,0.0000016803, +0.0000016682,0.0000016703,0.0000016878,0.0000016878,0.0000016741, +0.0000016683,0.0000016768,0.0000017130,0.0000017493,0.0000017688, +0.0000017877,0.0000018018,0.0000018038,0.0000018036,0.0000018090, +0.0000018170,0.0000018179,0.0000018075,0.0000017945,0.0000017873, +0.0000017760,0.0000017553,0.0000017414,0.0000017413,0.0000017475, +0.0000017496,0.0000017490,0.0000017532,0.0000017563,0.0000017563, +0.0000017662,0.0000017786,0.0000017656,0.0000017279,0.0000017007, +0.0000016902,0.0000016868,0.0000016876,0.0000016873,0.0000016852, +0.0000016855,0.0000016932,0.0000017168,0.0000017523,0.0000017740, +0.0000017829,0.0000017925,0.0000017959,0.0000018209,0.0000019055, +0.0000019369,0.0000019300,0.0000019643,0.0000019887,0.0000020106, +0.0000020298,0.0000020381,0.0000020383,0.0000020374,0.0000020388, +0.0000020395,0.0000020375,0.0000020370,0.0000020368,0.0000020372, +0.0000020333,0.0000020262,0.0000020229,0.0000020266,0.0000020377, +0.0000020486,0.0000020534,0.0000020528,0.0000020498,0.0000020460, +0.0000020425,0.0000020408,0.0000020397,0.0000020396,0.0000020401, +0.0000020419,0.0000020454,0.0000020510,0.0000020594,0.0000020690, +0.0000020739,0.0000020693,0.0000020597,0.0000020500,0.0000020431, +0.0000020405,0.0000020427,0.0000020386,0.0000020163,0.0000019973, +0.0000019831,0.0000019649,0.0000019431,0.0000019009,0.0000018679, +0.0000018674,0.0000018759,0.0000018797,0.0000018821,0.0000018975, +0.0000019194,0.0000019306,0.0000019301,0.0000019269,0.0000019055, +0.0000018585,0.0000018110,0.0000017866,0.0000017816,0.0000017839, +0.0000017906,0.0000018003,0.0000018103,0.0000018172,0.0000018194, +0.0000018184,0.0000018129,0.0000018041,0.0000017951,0.0000017881, +0.0000017867,0.0000017928,0.0000018057,0.0000018289,0.0000018304, +0.0000018367,0.0000018353,0.0000018130,0.0000018842,0.0000019342, +0.0000019105,0.0000018855,0.0000018627,0.0000017403,0.0000016689, +0.0000016496,0.0000016469,0.0000016504,0.0000016587,0.0000016665, +0.0000016700,0.0000016695,0.0000016666,0.0000016537,0.0000016249, +0.0000015889,0.0000015647,0.0000015640,0.0000015867,0.0000016127, +0.0000016218,0.0000016265,0.0000016211,0.0000016025,0.0000015904, +0.0000015895,0.0000015910,0.0000015954,0.0000016169,0.0000016518, +0.0000016770,0.0000016837,0.0000016842,0.0000016885,0.0000016994, +0.0000017111,0.0000017188,0.0000017148,0.0000016869,0.0000016437, +0.0000016169,0.0000016115,0.0000016216,0.0000016433,0.0000016538, +0.0000016491,0.0000016317,0.0000016089,0.0000015885,0.0000015743, +0.0000015612,0.0000015432,0.0000015236,0.0000015088,0.0000015003, +0.0000014975,0.0000014998,0.0000015053,0.0000015109,0.0000015145, +0.0000015168,0.0000015183,0.0000015190,0.0000015204,0.0000015221, +0.0000015236,0.0000015255,0.0000015275,0.0000015306,0.0000015343, +0.0000015365,0.0000015342,0.0000015299,0.0000015195,0.0000015094, +0.0000015081,0.0000015207,0.0000015486,0.0000015873,0.0000016159, +0.0000016141,0.0000015990,0.0000015861,0.0000015731,0.0000015588, +0.0000015490,0.0000015483,0.0000015516,0.0000015546,0.0000015554, +0.0000015557,0.0000015557,0.0000015568,0.0000015616,0.0000015693, +0.0000015753,0.0000015777,0.0000015827,0.0000015968,0.0000016148, +0.0000016286,0.0000016338,0.0000016284,0.0000016310,0.0000016652, +0.0000017204,0.0000017409,0.0000017370,0.0000017207,0.0000017025, +0.0000016899,0.0000016864,0.0000016879,0.0000016879,0.0000016878, +0.0000016883,0.0000016964,0.0000017062,0.0000017181,0.0000017399, +0.0000017695,0.0000018008,0.0000018300,0.0000018502,0.0000018515, +0.0000018497,0.0000018332,0.0000018108,0.0000017840,0.0000017558, +0.0000017273,0.0000017007,0.0000016773,0.0000016578,0.0000016426, +0.0000016319,0.0000016255,0.0000016232,0.0000016247,0.0000016294, +0.0000016357,0.0000016429,0.0000016520,0.0000016642,0.0000016803, +0.0000016997,0.0000017212,0.0000017434,0.0000017643,0.0000017828, +0.0000017981,0.0000018101,0.0000018187,0.0000018241,0.0000018266, +0.0000018263,0.0000018228,0.0000018178,0.0000018121,0.0000018054, +0.0000017998,0.0000017963,0.0000017952,0.0000017930,0.0000017854, +0.0000017729,0.0000017577,0.0000017399,0.0000017244,0.0000017135, +0.0000017096,0.0000017116,0.0000017218,0.0000017430,0.0000017728, +0.0000018010,0.0000018153,0.0000018153,0.0000018051,0.0000017970, +0.0000017958,0.0000018036,0.0000018139,0.0000018260,0.0000018372, +0.0000018460,0.0000018519,0.0000018551,0.0000018567,0.0000018570, +0.0000018563,0.0000018554,0.0000018550,0.0000018554,0.0000018573, +0.0000018610,0.0000018660,0.0000018716,0.0000018785,0.0000018877, +0.0000018996,0.0000019154,0.0000019317,0.0000019401,0.0000019483, +0.0000019636,0.0000019726,0.0000019705,0.0000019614,0.0000019532, +0.0000019493,0.0000019520,0.0000019556,0.0000019549,0.0000019492, +0.0000019420,0.0000019377,0.0000019366,0.0000019371,0.0000019367, +0.0000019366,0.0000019376,0.0000019404,0.0000019451,0.0000019506, +0.0000019559,0.0000019637,0.0000019718,0.0000019803,0.0000019873, +0.0000019888,0.0000019848,0.0000019749,0.0000019644,0.0000019579, +0.0000019549,0.0000019497,0.0000019442,0.0000019390,0.0000019170, +0.0000018833,0.0000018702,0.0000018819,0.0000019028,0.0000019096, +0.0000018983,0.0000018709,0.0000018498,0.0000018401,0.0000018263, +0.0000018035,0.0000017815,0.0000017671,0.0000017579,0.0000017506, +0.0000017443,0.0000017401,0.0000017388,0.0000017387,0.0000017412, +0.0000017464,0.0000017465,0.0000017253,0.0000016854,0.0000016566, +0.0000016458,0.0000016421,0.0000016425,0.0000016587,0.0000016945, +0.0000017497,0.0000018132,0.0000018711,0.0000019108,0.0000019296, +0.0000019381,0.0000019456,0.0000019598,0.0000019795,0.0000019840, +0.0000019696,0.0000019369,0.0000019172,0.0000019113,0.0000019132, +0.0000019212,0.0000019291,0.0000019384,0.0000019487,0.0000019561, +0.0000019612,0.0000019644,0.0000019641,0.0000019599,0.0000019531, +0.0000019431,0.0000019314,0.0000019219,0.0000019145,0.0000019079, +0.0000019116,0.0000019178,0.0000019189,0.0000019178,0.0000019163, +0.0000019153,0.0000019069,0.0000018776,0.0000018403,0.0000018294, +0.0000018300,0.0000018450,0.0000018829,0.0000019011,0.0000018932, +0.0000018819,0.0000018790,0.0000018802,0.0000018822,0.0000018851, +0.0000018911,0.0000018987,0.0000018981,0.0000018839,0.0000018583, +0.0000018464,0.0000018524,0.0000018700,0.0000018833,0.0000018799, +0.0000018661,0.0000018584,0.0000018572,0.0000018468,0.0000018239, +0.0000018011,0.0000017865,0.0000017763,0.0000017691,0.0000017663, +0.0000017675,0.0000017714,0.0000017750,0.0000017782,0.0000017817, +0.0000017863,0.0000017928,0.0000017988,0.0000018037,0.0000018110, +0.0000018183,0.0000018192,0.0000018135,0.0000018036,0.0000017902, +0.0000017805,0.0000017739,0.0000017645,0.0000017568,0.0000017507, +0.0000017340,0.0000017106,0.0000016961,0.0000016877,0.0000016819, +0.0000016786,0.0000016696,0.0000016615,0.0000016631,0.0000016654, +0.0000016622,0.0000016567,0.0000016507,0.0000016465,0.0000016461, +0.0000016489,0.0000016539,0.0000016573,0.0000016553,0.0000016478, +0.0000016403,0.0000016278,0.0000016086,0.0000015947,0.0000015872, +0.0000015884,0.0000015975,0.0000015998,0.0000015970,0.0000015918, +0.0000015888,0.0000015916,0.0000015990,0.0000016056,0.0000016161, +0.0000016334,0.0000016522,0.0000016674,0.0000016663,0.0000016714, +0.0000016952,0.0000017129,0.0000017138,0.0000017090,0.0000017043, +0.0000016991,0.0000016838,0.0000016713,0.0000016684,0.0000016663, +0.0000016640,0.0000016610,0.0000016587,0.0000016566,0.0000016517, +0.0000016401,0.0000016288,0.0000016260,0.0000016269,0.0000016308, +0.0000016393,0.0000016498,0.0000016592,0.0000016655,0.0000016686, +0.0000016690,0.0000016571,0.0000016524,0.0000016470,0.0000016420, +0.0000016383,0.0000016333,0.0000016265,0.0000016190,0.0000016162, +0.0000016184,0.0000016208,0.0000016181,0.0000016119,0.0000016056, +0.0000016011,0.0000016005,0.0000016037,0.0000016083,0.0000016122, +0.0000016155,0.0000016177,0.0000016204,0.0000016261,0.0000016330, +0.0000016368,0.0000016440,0.0000016516,0.0000016532,0.0000016526, +0.0000016595,0.0000016939,0.0000017391,0.0000017597,0.0000017589, +0.0000017572,0.0000017628,0.0000017702,0.0000017734,0.0000017736, +0.0000017749,0.0000017808,0.0000017912,0.0000017998,0.0000017910, +0.0000017597,0.0000017429,0.0000017374,0.0000017269,0.0000017166, +0.0000017313,0.0000017450,0.0000017235,0.0000017119,0.0000016917, +0.0000017059,0.0000017382,0.0000017470,0.0000017243,0.0000016907, +0.0000016671,0.0000016521,0.0000016501,0.0000016564,0.0000016694, +0.0000016856,0.0000017011,0.0000017064,0.0000017106,0.0000017313, +0.0000017509,0.0000017565,0.0000017636,0.0000017712,0.0000017873, +0.0000017963,0.0000018103,0.0000018195,0.0000018194,0.0000018149, +0.0000017935,0.0000017941,0.0000017692,0.0000017179,0.0000017298, +0.0000017275,0.0000017260,0.0000017297,0.0000017257,0.0000017161, +0.0000017130,0.0000017233,0.0000017306,0.0000017174,0.0000016919, +0.0000016750,0.0000016658,0.0000016758,0.0000016885,0.0000016830, +0.0000016732,0.0000016719,0.0000016905,0.0000017303,0.0000017596, +0.0000017805,0.0000018004,0.0000018086,0.0000018099,0.0000018132, +0.0000018177,0.0000018171,0.0000018080,0.0000017977,0.0000017920, +0.0000017809,0.0000017619,0.0000017493,0.0000017484,0.0000017515, +0.0000017498,0.0000017465,0.0000017501,0.0000017540,0.0000017544, +0.0000017641,0.0000017779,0.0000017656,0.0000017272,0.0000017000, +0.0000016908,0.0000016879,0.0000016883,0.0000016876,0.0000016840, +0.0000016827,0.0000016860,0.0000017007,0.0000017339,0.0000017643, +0.0000017787,0.0000017892,0.0000017957,0.0000018059,0.0000018787, +0.0000019384,0.0000019275,0.0000019549,0.0000019834,0.0000020022, +0.0000020227,0.0000020303,0.0000020321,0.0000020368,0.0000020401, +0.0000020363,0.0000020291,0.0000020283,0.0000020321,0.0000020374, +0.0000020393,0.0000020367,0.0000020280,0.0000020218,0.0000020259, +0.0000020376,0.0000020501,0.0000020569,0.0000020587,0.0000020594, +0.0000020585,0.0000020580,0.0000020578,0.0000020588,0.0000020612, +0.0000020649,0.0000020696,0.0000020736,0.0000020748,0.0000020709, +0.0000020637,0.0000020572,0.0000020521,0.0000020473,0.0000020450, +0.0000020456,0.0000020368,0.0000020131,0.0000019960,0.0000019792, +0.0000019571,0.0000019386,0.0000019058,0.0000018632,0.0000018459, +0.0000018509,0.0000018677,0.0000018948,0.0000019231,0.0000019342, +0.0000019336,0.0000019300,0.0000019177,0.0000018826,0.0000018335, +0.0000017960,0.0000017835,0.0000017834,0.0000017889,0.0000017971, +0.0000018068,0.0000018160,0.0000018222,0.0000018257,0.0000018263, +0.0000018223,0.0000018137,0.0000018044,0.0000017940,0.0000017873, +0.0000017911,0.0000017967,0.0000018202,0.0000018309,0.0000018289, +0.0000018397,0.0000018224,0.0000018294,0.0000019114,0.0000019357, +0.0000018951,0.0000018848,0.0000018399,0.0000017058,0.0000016589, +0.0000016481,0.0000016516,0.0000016602,0.0000016662,0.0000016691, +0.0000016658,0.0000016610,0.0000016493,0.0000016163,0.0000015778, +0.0000015594,0.0000015613,0.0000015856,0.0000016132,0.0000016189, +0.0000016143,0.0000016029,0.0000015952,0.0000015980,0.0000016008, +0.0000015973,0.0000016059,0.0000016367,0.0000016685,0.0000016821, +0.0000016835,0.0000016868,0.0000016977,0.0000017111,0.0000017205, +0.0000017227,0.0000017119,0.0000016733,0.0000016302,0.0000016148, +0.0000016175,0.0000016358,0.0000016529,0.0000016523,0.0000016364, +0.0000016122,0.0000015882,0.0000015716,0.0000015596,0.0000015439, +0.0000015246,0.0000015085,0.0000014990,0.0000014957,0.0000014981, +0.0000015034,0.0000015080,0.0000015106,0.0000015116,0.0000015121, +0.0000015133,0.0000015152,0.0000015176,0.0000015199,0.0000015205, +0.0000015207,0.0000015204,0.0000015204,0.0000015223,0.0000015261, +0.0000015310,0.0000015349,0.0000015344,0.0000015295,0.0000015162, +0.0000015070,0.0000015121,0.0000015376,0.0000015750,0.0000016109, +0.0000016159,0.0000016050,0.0000015884,0.0000015738,0.0000015617, +0.0000015531,0.0000015511,0.0000015528,0.0000015555,0.0000015569, +0.0000015563,0.0000015547,0.0000015548,0.0000015557,0.0000015597, +0.0000015659,0.0000015722,0.0000015810,0.0000015957,0.0000016134, +0.0000016282,0.0000016328,0.0000016282,0.0000016285,0.0000016551, +0.0000016994,0.0000017374,0.0000017523,0.0000017522,0.0000017444, +0.0000017357,0.0000017331,0.0000017354,0.0000017426,0.0000017548, +0.0000017705,0.0000017890,0.0000018099,0.0000018290,0.0000018432, +0.0000018475,0.0000018503,0.0000018336,0.0000018081,0.0000017764, +0.0000017423,0.0000017087,0.0000016780,0.0000016512,0.0000016302, +0.0000016147,0.0000016041,0.0000015980,0.0000015942,0.0000015937, +0.0000015956,0.0000015967,0.0000015984,0.0000016013,0.0000016042, +0.0000016053,0.0000016071,0.0000016106,0.0000016164,0.0000016252, +0.0000016361,0.0000016489,0.0000016635,0.0000016796,0.0000016977, +0.0000017165,0.0000017333,0.0000017470,0.0000017577,0.0000017650, +0.0000017696,0.0000017719,0.0000017721,0.0000017700,0.0000017656, +0.0000017599,0.0000017512,0.0000017372,0.0000017192,0.0000017012, +0.0000016859,0.0000016752,0.0000016691,0.0000016670,0.0000016677, +0.0000016679,0.0000016737,0.0000016894,0.0000017210,0.0000017640, +0.0000018016,0.0000018184,0.0000018154,0.0000018044,0.0000017950, +0.0000017916,0.0000017911,0.0000018002,0.0000018097,0.0000018182, +0.0000018253,0.0000018296,0.0000018319,0.0000018325,0.0000018315, +0.0000018301,0.0000018296,0.0000018310,0.0000018362,0.0000018456, +0.0000018571,0.0000018679,0.0000018764,0.0000018855,0.0000018982, +0.0000019149,0.0000019321,0.0000019411,0.0000019492,0.0000019636, +0.0000019714,0.0000019689,0.0000019608,0.0000019532,0.0000019478, +0.0000019459,0.0000019437,0.0000019372,0.0000019302,0.0000019279, +0.0000019295,0.0000019333,0.0000019344,0.0000019347,0.0000019371, +0.0000019423,0.0000019502,0.0000019590,0.0000019686,0.0000019775, +0.0000019842,0.0000019867,0.0000019860,0.0000019787,0.0000019675, +0.0000019585,0.0000019558,0.0000019567,0.0000019562,0.0000019539, +0.0000019506,0.0000019420,0.0000019173,0.0000018857,0.0000018751, +0.0000018856,0.0000019033,0.0000019083,0.0000018960,0.0000018646, +0.0000018367,0.0000018246,0.0000018165,0.0000018025,0.0000017866, +0.0000017774,0.0000017752,0.0000017745,0.0000017721,0.0000017686, +0.0000017662,0.0000017658,0.0000017662,0.0000017685,0.0000017725, +0.0000017637,0.0000017235,0.0000016770,0.0000016580,0.0000016522, +0.0000016460,0.0000016465,0.0000016576,0.0000016872,0.0000017296, +0.0000017780,0.0000018222,0.0000018521,0.0000018673,0.0000018768, +0.0000018947,0.0000019323,0.0000019704,0.0000019805,0.0000019639, +0.0000019305,0.0000019179,0.0000019199,0.0000019269,0.0000019346, +0.0000019416,0.0000019546,0.0000019711,0.0000019854,0.0000019934, +0.0000019955,0.0000019928,0.0000019864,0.0000019755,0.0000019621, +0.0000019493,0.0000019355,0.0000019226,0.0000019167,0.0000019149, +0.0000019108,0.0000019062,0.0000019034,0.0000019032,0.0000019026, +0.0000018882,0.0000018521,0.0000018287,0.0000018270,0.0000018370, +0.0000018731,0.0000019012,0.0000019000,0.0000018889,0.0000018862, +0.0000018886,0.0000018908,0.0000018926,0.0000018973,0.0000019014, +0.0000018932,0.0000018691,0.0000018453,0.0000018473,0.0000018663, +0.0000018899,0.0000018978,0.0000018919,0.0000018762,0.0000018629, +0.0000018560,0.0000018452,0.0000018254,0.0000018042,0.0000017888, +0.0000017777,0.0000017705,0.0000017685,0.0000017696,0.0000017734, +0.0000017782,0.0000017828,0.0000017878,0.0000017942,0.0000018001, +0.0000018073,0.0000018185,0.0000018265,0.0000018248,0.0000018175, +0.0000018066,0.0000017931,0.0000017820,0.0000017746,0.0000017668, +0.0000017602,0.0000017573,0.0000017491,0.0000017286,0.0000017073, +0.0000016962,0.0000016884,0.0000016825,0.0000016781,0.0000016680, +0.0000016617,0.0000016649,0.0000016675,0.0000016634,0.0000016575, +0.0000016517,0.0000016481,0.0000016491,0.0000016536,0.0000016587, +0.0000016597,0.0000016544,0.0000016470,0.0000016392,0.0000016225, +0.0000016034,0.0000015909,0.0000015854,0.0000015902,0.0000015983, +0.0000015991,0.0000015968,0.0000015909,0.0000015892,0.0000015936, +0.0000015999,0.0000016060,0.0000016196,0.0000016387,0.0000016587, +0.0000016691,0.0000016701,0.0000016866,0.0000017102,0.0000017165, +0.0000017144,0.0000017076,0.0000017033,0.0000016941,0.0000016771, +0.0000016708,0.0000016673,0.0000016644,0.0000016601,0.0000016576, +0.0000016573,0.0000016561,0.0000016523,0.0000016430,0.0000016325, +0.0000016294,0.0000016314,0.0000016351,0.0000016402,0.0000016468, +0.0000016524,0.0000016563,0.0000016583,0.0000016497,0.0000016482, +0.0000016458,0.0000016424,0.0000016378,0.0000016308,0.0000016236, +0.0000016175,0.0000016174,0.0000016229,0.0000016247,0.0000016209, +0.0000016150,0.0000016092,0.0000016037,0.0000016009,0.0000016015, +0.0000016039,0.0000016074,0.0000016120,0.0000016157,0.0000016179, +0.0000016227,0.0000016295,0.0000016331,0.0000016406,0.0000016488, +0.0000016524,0.0000016532,0.0000016555,0.0000016804,0.0000017268, +0.0000017600,0.0000017649,0.0000017610,0.0000017626,0.0000017676, +0.0000017698,0.0000017702,0.0000017742,0.0000017843,0.0000017959, +0.0000017971,0.0000017697,0.0000017406,0.0000017310,0.0000017248, +0.0000017140,0.0000017145,0.0000017392,0.0000017345,0.0000017149, +0.0000017002,0.0000016894,0.0000017235,0.0000017458,0.0000017412, +0.0000017078,0.0000016737,0.0000016506,0.0000016412,0.0000016392, +0.0000016444,0.0000016585,0.0000016751,0.0000016923,0.0000017029, +0.0000017053,0.0000017245,0.0000017502,0.0000017576,0.0000017647, +0.0000017712,0.0000017862,0.0000017977,0.0000018084,0.0000018126, +0.0000018155,0.0000018067,0.0000017886,0.0000017902,0.0000017511, +0.0000017124,0.0000017305,0.0000017259,0.0000017250,0.0000017270, +0.0000017245,0.0000017142,0.0000017145,0.0000017270,0.0000017285, +0.0000017088,0.0000016846,0.0000016704,0.0000016672,0.0000016802, +0.0000016872,0.0000016810,0.0000016744,0.0000016764,0.0000017060, +0.0000017439,0.0000017698,0.0000017932,0.0000018090,0.0000018132, +0.0000018146,0.0000018165,0.0000018153,0.0000018082,0.0000018002, +0.0000017958,0.0000017858,0.0000017699,0.0000017599,0.0000017578, +0.0000017573,0.0000017522,0.0000017458,0.0000017473,0.0000017516, +0.0000017525,0.0000017614,0.0000017754,0.0000017660,0.0000017283, +0.0000016996,0.0000016907,0.0000016889,0.0000016894,0.0000016887, +0.0000016843,0.0000016814,0.0000016825,0.0000016897,0.0000017152, +0.0000017518,0.0000017732,0.0000017852,0.0000017957,0.0000017979, +0.0000018512,0.0000019311,0.0000019317,0.0000019423,0.0000019784, +0.0000019935,0.0000020153,0.0000020270,0.0000020314,0.0000020401, +0.0000020367,0.0000020181,0.0000020058,0.0000020063,0.0000020130, +0.0000020237,0.0000020343,0.0000020415,0.0000020388,0.0000020306, +0.0000020225,0.0000020220,0.0000020311,0.0000020422,0.0000020516, +0.0000020578,0.0000020619,0.0000020654,0.0000020683,0.0000020708, +0.0000020725,0.0000020732,0.0000020711,0.0000020656,0.0000020601, +0.0000020571,0.0000020548,0.0000020519,0.0000020499,0.0000020507, +0.0000020503,0.0000020327,0.0000020101,0.0000019950,0.0000019773, +0.0000019511,0.0000019322,0.0000019130,0.0000018781,0.0000018502, +0.0000018569,0.0000018889,0.0000019256,0.0000019421,0.0000019353, +0.0000019257,0.0000019204,0.0000019009,0.0000018576,0.0000018143, +0.0000017915,0.0000017846,0.0000017852,0.0000017920,0.0000018019, +0.0000018113,0.0000018186,0.0000018226,0.0000018254,0.0000018286, +0.0000018277,0.0000018215,0.0000018136,0.0000018044,0.0000017945, +0.0000017914,0.0000017927,0.0000018075,0.0000018303,0.0000018275, +0.0000018306,0.0000018408,0.0000018157,0.0000018558,0.0000019308, +0.0000019285,0.0000018883,0.0000018859,0.0000018156,0.0000016821, +0.0000016543,0.0000016507,0.0000016613,0.0000016690,0.0000016685, +0.0000016618,0.0000016557,0.0000016410,0.0000016067,0.0000015718, +0.0000015536,0.0000015522,0.0000015744,0.0000015996,0.0000016035, +0.0000015959,0.0000015920,0.0000016012,0.0000016117,0.0000016081, +0.0000016031,0.0000016208,0.0000016559,0.0000016779,0.0000016813, +0.0000016831,0.0000016939,0.0000017094,0.0000017216,0.0000017271, +0.0000017252,0.0000017041,0.0000016575,0.0000016202,0.0000016149, +0.0000016275,0.0000016478,0.0000016539,0.0000016419,0.0000016179, +0.0000015913,0.0000015715,0.0000015595,0.0000015460,0.0000015271, +0.0000015095,0.0000014980,0.0000014935,0.0000014954,0.0000015000, +0.0000015032,0.0000015055,0.0000015071,0.0000015087,0.0000015097, +0.0000015105,0.0000015111,0.0000015116,0.0000015124,0.0000015129, +0.0000015130,0.0000015125,0.0000015116,0.0000015119,0.0000015142, +0.0000015181,0.0000015235,0.0000015298,0.0000015348,0.0000015335, +0.0000015249,0.0000015113,0.0000015079,0.0000015259,0.0000015622, +0.0000015998,0.0000016199,0.0000016158,0.0000015984,0.0000015798, +0.0000015653,0.0000015567,0.0000015541,0.0000015549,0.0000015568, +0.0000015592,0.0000015604,0.0000015604,0.0000015594,0.0000015584, +0.0000015588,0.0000015608,0.0000015661,0.0000015768,0.0000015924, +0.0000016099,0.0000016245,0.0000016300,0.0000016276,0.0000016250, +0.0000016384,0.0000016705,0.0000017073,0.0000017383,0.0000017605, +0.0000017680,0.0000017862,0.0000017990,0.0000018107,0.0000018218, +0.0000018261,0.0000018269,0.0000018408,0.0000018330,0.0000018174, +0.0000017964,0.0000017679,0.0000017342,0.0000016993,0.0000016672, +0.0000016406,0.0000016209,0.0000016089,0.0000016024,0.0000015997, +0.0000015988,0.0000015961,0.0000015976,0.0000015988,0.0000016007, +0.0000016027,0.0000016039,0.0000016047,0.0000016056,0.0000016063, +0.0000016068,0.0000016069,0.0000016068,0.0000016083,0.0000016080, +0.0000016089,0.0000016113,0.0000016139,0.0000016171,0.0000016243, +0.0000016337,0.0000016452,0.0000016575,0.0000016690,0.0000016790, +0.0000016866,0.0000016917,0.0000016933,0.0000016912,0.0000016858, +0.0000016777,0.0000016676,0.0000016573,0.0000016496,0.0000016460, +0.0000016467,0.0000016503,0.0000016553,0.0000016608,0.0000016652, +0.0000016668,0.0000016653,0.0000016667,0.0000016818,0.0000017194, +0.0000017682,0.0000018054,0.0000018192,0.0000018178,0.0000018073, +0.0000017973,0.0000017925,0.0000017919,0.0000017928,0.0000017936, +0.0000017977,0.0000017993,0.0000018008,0.0000018013,0.0000018000, +0.0000018007,0.0000018046,0.0000018075,0.0000018134,0.0000018258, +0.0000018431,0.0000018625,0.0000018760,0.0000018851,0.0000018979, +0.0000019156,0.0000019332,0.0000019426,0.0000019503,0.0000019633, +0.0000019702,0.0000019677,0.0000019606,0.0000019523,0.0000019438, +0.0000019383,0.0000019330,0.0000019288,0.0000019281,0.0000019320, +0.0000019373,0.0000019394,0.0000019413,0.0000019466,0.0000019552, +0.0000019651,0.0000019747,0.0000019821,0.0000019856,0.0000019846, +0.0000019793,0.0000019718,0.0000019622,0.0000019539,0.0000019515, +0.0000019542,0.0000019567,0.0000019569,0.0000019564,0.0000019549, +0.0000019429,0.0000019104,0.0000018806,0.0000018769,0.0000018927, +0.0000019093,0.0000019120,0.0000018992,0.0000018689,0.0000018364, +0.0000018180,0.0000018091,0.0000018027,0.0000017938,0.0000017867, +0.0000017853,0.0000017859,0.0000017854,0.0000017830,0.0000017798, +0.0000017783,0.0000017782,0.0000017777,0.0000017756,0.0000017679, +0.0000017398,0.0000017016,0.0000016936,0.0000017047,0.0000016976, +0.0000016766,0.0000016626,0.0000016681,0.0000016850,0.0000017099, +0.0000017418,0.0000017768,0.0000018037,0.0000018194,0.0000018319, +0.0000018623,0.0000019200,0.0000019696,0.0000019764,0.0000019561, +0.0000019271,0.0000019223,0.0000019288,0.0000019370,0.0000019464, +0.0000019676,0.0000019932,0.0000020083,0.0000020107,0.0000020052, +0.0000019977,0.0000019918,0.0000019840,0.0000019757,0.0000019691, +0.0000019603,0.0000019506,0.0000019408,0.0000019269,0.0000019121, +0.0000019030,0.0000018973,0.0000018927,0.0000018939,0.0000018919, +0.0000018638,0.0000018278,0.0000018219,0.0000018312,0.0000018653, +0.0000019004,0.0000019060,0.0000018993,0.0000018968,0.0000018983, +0.0000018986,0.0000018991,0.0000019014,0.0000018996,0.0000018818, +0.0000018532,0.0000018431,0.0000018601,0.0000018868,0.0000019017, +0.0000019021,0.0000018973,0.0000018850,0.0000018689,0.0000018556, +0.0000018441,0.0000018278,0.0000018084,0.0000017919,0.0000017791, +0.0000017714,0.0000017701,0.0000017722,0.0000017773,0.0000017827, +0.0000017880,0.0000017942,0.0000018001,0.0000018097,0.0000018245, +0.0000018322,0.0000018281,0.0000018189,0.0000018074,0.0000017940, +0.0000017825,0.0000017740,0.0000017668,0.0000017615,0.0000017593, +0.0000017559,0.0000017436,0.0000017223,0.0000017054,0.0000016972, +0.0000016892,0.0000016825,0.0000016766,0.0000016660,0.0000016619, +0.0000016673,0.0000016694,0.0000016649,0.0000016588,0.0000016534, +0.0000016514,0.0000016533,0.0000016586,0.0000016625,0.0000016603, +0.0000016530,0.0000016470,0.0000016360,0.0000016161,0.0000015980, +0.0000015868,0.0000015844,0.0000015922,0.0000015990,0.0000016005, +0.0000015968,0.0000015901,0.0000015899,0.0000015948,0.0000015999, +0.0000016071,0.0000016249,0.0000016449,0.0000016641,0.0000016709, +0.0000016797,0.0000017034,0.0000017179,0.0000017187,0.0000017131, +0.0000017060,0.0000017018,0.0000016878,0.0000016745,0.0000016697, +0.0000016645,0.0000016584,0.0000016516,0.0000016504,0.0000016539, +0.0000016552,0.0000016523,0.0000016443,0.0000016353,0.0000016326, +0.0000016351,0.0000016385,0.0000016412,0.0000016436,0.0000016465, +0.0000016492,0.0000016459,0.0000016464,0.0000016457,0.0000016430, +0.0000016370,0.0000016287,0.0000016221,0.0000016183,0.0000016211, +0.0000016271,0.0000016271,0.0000016226,0.0000016181,0.0000016133, +0.0000016078,0.0000016029,0.0000016008,0.0000016020,0.0000016056, +0.0000016097,0.0000016137,0.0000016163,0.0000016207,0.0000016265, +0.0000016291,0.0000016365,0.0000016448,0.0000016502,0.0000016534, +0.0000016541,0.0000016693,0.0000017114,0.0000017555,0.0000017688, +0.0000017666,0.0000017638,0.0000017665,0.0000017685,0.0000017703, +0.0000017773,0.0000017908,0.0000017985,0.0000017843,0.0000017483, +0.0000017286,0.0000017198,0.0000017113,0.0000017055,0.0000017218, +0.0000017397,0.0000017202,0.0000017071,0.0000016862,0.0000016986, +0.0000017374,0.0000017478,0.0000017266,0.0000016881,0.0000016567, +0.0000016446,0.0000016383,0.0000016335,0.0000016344,0.0000016447, +0.0000016625,0.0000016815,0.0000016976,0.0000017020,0.0000017184, +0.0000017487,0.0000017596,0.0000017656,0.0000017711,0.0000017832, +0.0000017967,0.0000018031,0.0000018059,0.0000018132,0.0000017954, +0.0000017865,0.0000017841,0.0000017317,0.0000017131,0.0000017301, +0.0000017246,0.0000017240,0.0000017264,0.0000017221,0.0000017113, +0.0000017175,0.0000017289,0.0000017254,0.0000016989,0.0000016786, +0.0000016672,0.0000016688,0.0000016838,0.0000016857,0.0000016807, +0.0000016764,0.0000016867,0.0000017219,0.0000017547,0.0000017807, +0.0000018033,0.0000018128,0.0000018141,0.0000018142,0.0000018126, +0.0000018075,0.0000018018,0.0000017982,0.0000017909,0.0000017789, +0.0000017715,0.0000017680,0.0000017635,0.0000017557,0.0000017471, +0.0000017459,0.0000017496,0.0000017506,0.0000017581,0.0000017741, +0.0000017681,0.0000017309,0.0000016998,0.0000016902,0.0000016896, +0.0000016902,0.0000016898,0.0000016857,0.0000016810,0.0000016805, +0.0000016833,0.0000016991,0.0000017370,0.0000017667,0.0000017811, +0.0000017940,0.0000017975,0.0000018266,0.0000019107,0.0000019410, +0.0000019317,0.0000019697,0.0000019880,0.0000020024,0.0000020233, +0.0000020324,0.0000020383,0.0000020195,0.0000019967,0.0000019934, +0.0000019967,0.0000020017,0.0000020073,0.0000020174,0.0000020293, +0.0000020372,0.0000020396,0.0000020323,0.0000020238,0.0000020201, +0.0000020221,0.0000020306,0.0000020393,0.0000020467,0.0000020528, +0.0000020572,0.0000020592,0.0000020584,0.0000020557,0.0000020529, +0.0000020517,0.0000020505,0.0000020497,0.0000020502,0.0000020534, +0.0000020553,0.0000020480,0.0000020259,0.0000020092,0.0000019943, +0.0000019758,0.0000019481,0.0000019280,0.0000019230,0.0000019074, +0.0000018890,0.0000018984,0.0000019296,0.0000019468,0.0000019377, +0.0000019212,0.0000019162,0.0000019090,0.0000018786,0.0000018350, +0.0000018037,0.0000017936,0.0000017914,0.0000017919,0.0000017963, +0.0000018042,0.0000018123,0.0000018176,0.0000018186,0.0000018194, +0.0000018240,0.0000018275,0.0000018257,0.0000018209,0.0000018147, +0.0000018062,0.0000017971,0.0000017925,0.0000017954,0.0000018236, +0.0000018294,0.0000018231,0.0000018370,0.0000018345,0.0000018155, +0.0000018881,0.0000019356,0.0000019152,0.0000018863,0.0000018813, +0.0000017915,0.0000016657,0.0000016543,0.0000016588,0.0000016705, +0.0000016726,0.0000016647,0.0000016539,0.0000016346,0.0000015950, +0.0000015654,0.0000015523,0.0000015435,0.0000015529,0.0000015710, +0.0000015761,0.0000015801,0.0000015954,0.0000016156,0.0000016206, +0.0000016107,0.0000016114,0.0000016378,0.0000016688,0.0000016794, +0.0000016797,0.0000016853,0.0000017013,0.0000017174,0.0000017271, +0.0000017306,0.0000017236,0.0000016916,0.0000016419,0.0000016155, +0.0000016195,0.0000016382,0.0000016518,0.0000016473,0.0000016257, +0.0000015974,0.0000015736,0.0000015606,0.0000015493,0.0000015313, +0.0000015120,0.0000014986,0.0000014928,0.0000014930,0.0000014966, +0.0000014989,0.0000014994,0.0000015008,0.0000015026,0.0000015035, +0.0000015037,0.0000015043,0.0000015051,0.0000015052,0.0000015042, +0.0000015032,0.0000015021,0.0000015010,0.0000014999,0.0000014997, +0.0000015011,0.0000015042,0.0000015090,0.0000015153,0.0000015229, +0.0000015300,0.0000015332,0.0000015297,0.0000015166,0.0000015052, +0.0000015145,0.0000015466,0.0000015855,0.0000016150,0.0000016221, +0.0000016135,0.0000015963,0.0000015781,0.0000015649,0.0000015580, +0.0000015566,0.0000015566,0.0000015560,0.0000015552,0.0000015544, +0.0000015535,0.0000015532,0.0000015544,0.0000015579,0.0000015635, +0.0000015721,0.0000015862,0.0000016033,0.0000016181,0.0000016266, +0.0000016266,0.0000016245,0.0000016232,0.0000016360,0.0000016576, +0.0000016817,0.0000017045,0.0000017223,0.0000017346,0.0000017450, +0.0000017521,0.0000017533,0.0000017495,0.0000017401,0.0000017231, +0.0000017013,0.0000016770,0.0000016526,0.0000016310,0.0000016141, +0.0000016043,0.0000015997,0.0000016009,0.0000016021,0.0000016072, +0.0000016110,0.0000016151,0.0000016187,0.0000016213,0.0000016225, +0.0000016221,0.0000016210,0.0000016200,0.0000016190,0.0000016184, +0.0000016184,0.0000016189,0.0000016190,0.0000016176,0.0000016150, +0.0000016131,0.0000016124,0.0000016119,0.0000016101,0.0000016085, +0.0000016093,0.0000016059,0.0000016053,0.0000016093,0.0000016128, +0.0000016159,0.0000016183,0.0000016204,0.0000016214,0.0000016208, +0.0000016192,0.0000016175,0.0000016166,0.0000016176,0.0000016200, +0.0000016244,0.0000016303,0.0000016373,0.0000016454,0.0000016542, +0.0000016646,0.0000016733,0.0000016743,0.0000016698,0.0000016718, +0.0000016859,0.0000017262,0.0000017728,0.0000018050,0.0000018177, +0.0000018161,0.0000018141,0.0000018087,0.0000018038,0.0000017992, +0.0000017961,0.0000017948,0.0000017947,0.0000017970,0.0000017996, +0.0000018025,0.0000018069,0.0000018099,0.0000018114,0.0000018130, +0.0000018186,0.0000018313,0.0000018553,0.0000018753,0.0000018854, +0.0000018979,0.0000019164,0.0000019344,0.0000019438,0.0000019509, +0.0000019623,0.0000019684,0.0000019663,0.0000019602,0.0000019507, +0.0000019395,0.0000019336,0.0000019319,0.0000019333,0.0000019381, +0.0000019426,0.0000019457,0.0000019505,0.0000019594,0.0000019696, +0.0000019784,0.0000019846,0.0000019869,0.0000019842,0.0000019762, +0.0000019665,0.0000019589,0.0000019533,0.0000019509,0.0000019512, +0.0000019537,0.0000019552,0.0000019549,0.0000019548,0.0000019546, +0.0000019433,0.0000019079,0.0000018738,0.0000018688,0.0000018902, +0.0000019112,0.0000019139,0.0000019019,0.0000018766,0.0000018470, +0.0000018236,0.0000018108,0.0000018045,0.0000017992,0.0000017960, +0.0000017948,0.0000017945,0.0000017945,0.0000017934,0.0000017904, +0.0000017871,0.0000017849,0.0000017813,0.0000017729,0.0000017610, +0.0000017459,0.0000017434,0.0000017649,0.0000017963,0.0000017993, +0.0000017697,0.0000017262,0.0000016945,0.0000016869,0.0000016878, +0.0000016897,0.0000017090,0.0000017369,0.0000017631,0.0000017851, +0.0000018075,0.0000018519,0.0000019248,0.0000019724,0.0000019737, +0.0000019499,0.0000019302,0.0000019301,0.0000019414,0.0000019574, +0.0000019836,0.0000020101,0.0000020173,0.0000020070,0.0000019913, +0.0000019838,0.0000019793,0.0000019725,0.0000019671,0.0000019662, +0.0000019653,0.0000019664,0.0000019628,0.0000019477,0.0000019246, +0.0000019053,0.0000018944,0.0000018880,0.0000018870,0.0000018895, +0.0000018742,0.0000018345,0.0000018152,0.0000018247,0.0000018570, +0.0000018949,0.0000019079,0.0000019073,0.0000019056,0.0000019053, +0.0000019041,0.0000019040,0.0000019029,0.0000018907,0.0000018632, +0.0000018438,0.0000018539,0.0000018809,0.0000018982,0.0000019000, +0.0000018998,0.0000018976,0.0000018901,0.0000018746,0.0000018564, +0.0000018433,0.0000018303,0.0000018128,0.0000017956,0.0000017816, +0.0000017738,0.0000017734,0.0000017769,0.0000017822,0.0000017876, +0.0000017934,0.0000017988,0.0000018099,0.0000018273,0.0000018352, +0.0000018299,0.0000018195,0.0000018078,0.0000017942,0.0000017824, +0.0000017729,0.0000017650,0.0000017604,0.0000017590,0.0000017574, +0.0000017508,0.0000017355,0.0000017165,0.0000017046,0.0000016986, +0.0000016893,0.0000016816,0.0000016750,0.0000016652,0.0000016634, +0.0000016699,0.0000016715,0.0000016664,0.0000016606,0.0000016563, +0.0000016549,0.0000016580,0.0000016633,0.0000016647,0.0000016595, +0.0000016527,0.0000016455,0.0000016301,0.0000016088,0.0000015919, +0.0000015830,0.0000015845,0.0000015947,0.0000016009,0.0000016021, +0.0000015952,0.0000015893,0.0000015907,0.0000015956,0.0000015992, +0.0000016106,0.0000016314,0.0000016509,0.0000016681,0.0000016757, +0.0000016945,0.0000017146,0.0000017202,0.0000017188,0.0000017105, +0.0000017054,0.0000016993,0.0000016823,0.0000016738,0.0000016670, +0.0000016600,0.0000016494,0.0000016417,0.0000016424,0.0000016479, +0.0000016532,0.0000016522,0.0000016461,0.0000016384,0.0000016356, +0.0000016372,0.0000016397,0.0000016415,0.0000016429,0.0000016447, +0.0000016454,0.0000016466,0.0000016462,0.0000016434,0.0000016362, +0.0000016273,0.0000016218,0.0000016206,0.0000016248,0.0000016290, +0.0000016269,0.0000016223,0.0000016186,0.0000016148,0.0000016098, +0.0000016045,0.0000016011,0.0000016020,0.0000016058,0.0000016093, +0.0000016121,0.0000016149,0.0000016196,0.0000016248,0.0000016264, +0.0000016326,0.0000016401,0.0000016466,0.0000016528,0.0000016543, +0.0000016620,0.0000016952,0.0000017449,0.0000017724,0.0000017732, +0.0000017684,0.0000017677,0.0000017695,0.0000017740,0.0000017849, +0.0000017970,0.0000017964,0.0000017647,0.0000017340,0.0000017201, +0.0000017090,0.0000016994,0.0000017030,0.0000017298,0.0000017297, +0.0000017095,0.0000016938,0.0000016802,0.0000017160,0.0000017455, +0.0000017436,0.0000017072,0.0000016670,0.0000016507,0.0000016435, +0.0000016383,0.0000016335,0.0000016314,0.0000016344,0.0000016468, +0.0000016686,0.0000016909,0.0000017006,0.0000017126,0.0000017452, +0.0000017612,0.0000017666,0.0000017718,0.0000017788,0.0000017914, +0.0000017954,0.0000018030,0.0000018089,0.0000017849,0.0000017840, +0.0000017743,0.0000017150,0.0000017159,0.0000017294,0.0000017235, +0.0000017237,0.0000017257,0.0000017179,0.0000017105,0.0000017205, +0.0000017296,0.0000017168,0.0000016906,0.0000016737,0.0000016654, +0.0000016734,0.0000016844,0.0000016849,0.0000016827,0.0000016819, +0.0000016990,0.0000017343,0.0000017638,0.0000017905,0.0000018082, +0.0000018116,0.0000018114,0.0000018093,0.0000018052,0.0000018013, +0.0000017993,0.0000017952,0.0000017884,0.0000017830,0.0000017767, +0.0000017681,0.0000017586,0.0000017493,0.0000017466,0.0000017486, +0.0000017496,0.0000017550,0.0000017713,0.0000017697,0.0000017341, +0.0000017008,0.0000016897,0.0000016894,0.0000016901,0.0000016900, +0.0000016872,0.0000016816,0.0000016782,0.0000016790,0.0000016872, +0.0000017193,0.0000017585,0.0000017763,0.0000017899,0.0000017977, +0.0000018068,0.0000018800,0.0000019441,0.0000019313,0.0000019528, +0.0000019865,0.0000019905,0.0000020074,0.0000020247,0.0000020212, +0.0000019960,0.0000019911,0.0000020042,0.0000020128,0.0000020143, +0.0000020138,0.0000020136,0.0000020176,0.0000020228,0.0000020308, +0.0000020342,0.0000020331,0.0000020283,0.0000020223,0.0000020212, +0.0000020245,0.0000020286,0.0000020331,0.0000020377,0.0000020413, +0.0000020432,0.0000020439,0.0000020441,0.0000020440,0.0000020452, +0.0000020512,0.0000020583,0.0000020548,0.0000020365,0.0000020196, +0.0000020089,0.0000019921,0.0000019757,0.0000019474,0.0000019259, +0.0000019310,0.0000019360,0.0000019364,0.0000019420,0.0000019511, +0.0000019375,0.0000019120,0.0000019070,0.0000019105,0.0000018954, +0.0000018557,0.0000018177,0.0000018044,0.0000017996,0.0000017989, +0.0000018014,0.0000018048,0.0000018076,0.0000018114,0.0000018132, +0.0000018117,0.0000018118,0.0000018159,0.0000018212,0.0000018236, +0.0000018233,0.0000018213,0.0000018151,0.0000018051,0.0000017934, +0.0000017884,0.0000018118,0.0000018294,0.0000018211,0.0000018242, +0.0000018406,0.0000018226,0.0000018315,0.0000019150,0.0000019385, +0.0000019017,0.0000018863,0.0000018746,0.0000017691,0.0000016557, +0.0000016576,0.0000016687,0.0000016745,0.0000016696,0.0000016575, +0.0000016366,0.0000015919,0.0000015594,0.0000015532,0.0000015447, +0.0000015408,0.0000015493,0.0000015608,0.0000015799,0.0000016086, +0.0000016250,0.0000016205,0.0000016110,0.0000016224,0.0000016533, +0.0000016748,0.0000016782,0.0000016802,0.0000016909,0.0000017071, +0.0000017207,0.0000017292,0.0000017313,0.0000017181,0.0000016750, +0.0000016280,0.0000016160,0.0000016275,0.0000016459,0.0000016506, +0.0000016350,0.0000016073,0.0000015791,0.0000015622,0.0000015524, +0.0000015368,0.0000015161,0.0000015005,0.0000014930,0.0000014925, +0.0000014945,0.0000014957,0.0000014953,0.0000014949,0.0000014951, +0.0000014961,0.0000014982,0.0000014993,0.0000014964,0.0000014897, +0.0000014811,0.0000014732,0.0000014688,0.0000014677,0.0000014676, +0.0000014691,0.0000014738,0.0000014810,0.0000014887,0.0000014956, +0.0000015014,0.0000015064,0.0000015124,0.0000015205,0.0000015274, +0.0000015300,0.0000015225,0.0000015099,0.0000015089,0.0000015292, +0.0000015647,0.0000015972,0.0000016153,0.0000016229,0.0000016174, +0.0000016041,0.0000015908,0.0000015804,0.0000015732,0.0000015684, +0.0000015645,0.0000015600,0.0000015539,0.0000015526,0.0000015475, +0.0000015445,0.0000015478,0.0000015564,0.0000015673,0.0000015796, +0.0000015939,0.0000016082,0.0000016184,0.0000016228,0.0000016211, +0.0000016212,0.0000016195,0.0000016219,0.0000016259,0.0000016302, +0.0000016336,0.0000016387,0.0000016416,0.0000016410,0.0000016380, +0.0000016332,0.0000016260,0.0000016166,0.0000016102,0.0000016057, +0.0000016026,0.0000016006,0.0000016044,0.0000016096,0.0000016156, +0.0000016226,0.0000016289,0.0000016319,0.0000016319,0.0000016288, +0.0000016260,0.0000016212,0.0000016168,0.0000016135,0.0000016123, +0.0000016123,0.0000016133,0.0000016149,0.0000016173,0.0000016199, +0.0000016217,0.0000016227,0.0000016218,0.0000016219,0.0000016211, +0.0000016190,0.0000016162,0.0000016125,0.0000016089,0.0000016069, +0.0000016058,0.0000016054,0.0000016049,0.0000016045,0.0000016048, +0.0000016045,0.0000016050,0.0000016028,0.0000016037,0.0000016062, +0.0000016088,0.0000016110,0.0000016127,0.0000016152,0.0000016200, +0.0000016277,0.0000016370,0.0000016493,0.0000016660,0.0000016804, +0.0000016830,0.0000016749,0.0000016759,0.0000016911,0.0000017283, +0.0000017668,0.0000017935,0.0000018074,0.0000018131,0.0000018154, +0.0000018150,0.0000018135,0.0000018130,0.0000018133,0.0000018149, +0.0000018176,0.0000018181,0.0000018199,0.0000018197,0.0000018175, +0.0000018171,0.0000018188,0.0000018208,0.0000018266,0.0000018486, +0.0000018738,0.0000018860,0.0000018977,0.0000019159,0.0000019340, +0.0000019441,0.0000019507,0.0000019606,0.0000019662,0.0000019652, +0.0000019587,0.0000019465,0.0000019363,0.0000019353,0.0000019376, +0.0000019412,0.0000019457,0.0000019520,0.0000019614,0.0000019723, +0.0000019810,0.0000019864,0.0000019884,0.0000019874,0.0000019810, +0.0000019694,0.0000019583,0.0000019525,0.0000019508,0.0000019509, +0.0000019515,0.0000019526,0.0000019525,0.0000019509,0.0000019497, +0.0000019495,0.0000019448,0.0000019189,0.0000018800,0.0000018585, +0.0000018626,0.0000018806,0.0000018900,0.0000018850,0.0000018670, +0.0000018461,0.0000018257,0.0000018098,0.0000018022,0.0000017987, +0.0000017989,0.0000018024,0.0000018071,0.0000018129,0.0000018157, +0.0000018147,0.0000018109,0.0000018070,0.0000018013,0.0000017929, +0.0000017904,0.0000017995,0.0000018253,0.0000018587,0.0000018832, +0.0000018862,0.0000018707,0.0000018320,0.0000017801,0.0000017385, +0.0000017110,0.0000016923,0.0000016854,0.0000016927,0.0000017034, +0.0000017258,0.0000017627,0.0000018011,0.0000018602,0.0000019421, +0.0000019731,0.0000019730,0.0000019489,0.0000019397,0.0000019512, +0.0000019718,0.0000019969,0.0000020163,0.0000020120,0.0000019931, +0.0000019833,0.0000019802,0.0000019752,0.0000019680,0.0000019611, +0.0000019575,0.0000019571,0.0000019657,0.0000019704,0.0000019605, +0.0000019388,0.0000019156,0.0000018938,0.0000018834,0.0000018828, +0.0000018862,0.0000018801,0.0000018471,0.0000018149,0.0000018173, +0.0000018454,0.0000018834,0.0000019060,0.0000019086,0.0000019075, +0.0000019068,0.0000019065,0.0000019046,0.0000018960,0.0000018696, +0.0000018450,0.0000018497,0.0000018755,0.0000018919,0.0000018924, +0.0000018917,0.0000018928,0.0000018936,0.0000018915,0.0000018788, +0.0000018585,0.0000018435,0.0000018326,0.0000018167,0.0000017994, +0.0000017860,0.0000017791,0.0000017791,0.0000017825,0.0000017873, +0.0000017924,0.0000017970,0.0000018074,0.0000018266,0.0000018372, +0.0000018320,0.0000018211,0.0000018088,0.0000017943,0.0000017816, +0.0000017711,0.0000017623,0.0000017575,0.0000017559,0.0000017546, +0.0000017512,0.0000017425,0.0000017273,0.0000017123,0.0000017051, +0.0000016994,0.0000016887,0.0000016807,0.0000016731,0.0000016645, +0.0000016657,0.0000016727,0.0000016734,0.0000016686,0.0000016635, +0.0000016595,0.0000016591,0.0000016627,0.0000016664,0.0000016655, +0.0000016594,0.0000016518,0.0000016413,0.0000016221,0.0000016006, +0.0000015856,0.0000015810,0.0000015870,0.0000015977,0.0000016032, +0.0000016018,0.0000015924,0.0000015889,0.0000015921,0.0000015953, +0.0000015994,0.0000016168,0.0000016372,0.0000016567,0.0000016718, +0.0000016858,0.0000017078,0.0000017199,0.0000017217,0.0000017170, +0.0000017083,0.0000017058,0.0000016957,0.0000016798,0.0000016723, +0.0000016640,0.0000016539,0.0000016418,0.0000016347,0.0000016347, +0.0000016403,0.0000016478,0.0000016504,0.0000016480,0.0000016418, +0.0000016378,0.0000016387,0.0000016412,0.0000016428,0.0000016441, +0.0000016459,0.0000016471,0.0000016464,0.0000016434,0.0000016358, +0.0000016271,0.0000016224,0.0000016226,0.0000016266,0.0000016287, +0.0000016251,0.0000016213,0.0000016213,0.0000016209,0.0000016170, +0.0000016107,0.0000016058,0.0000016050,0.0000016076,0.0000016107, +0.0000016125,0.0000016145,0.0000016187,0.0000016239,0.0000016253, +0.0000016299,0.0000016353,0.0000016420,0.0000016507,0.0000016545, +0.0000016582,0.0000016807,0.0000017302,0.0000017713,0.0000017784, +0.0000017753,0.0000017723,0.0000017740,0.0000017816,0.0000017939, +0.0000018002,0.0000017848,0.0000017469,0.0000017255,0.0000017120, +0.0000016976,0.0000016922,0.0000017092,0.0000017310,0.0000017149, +0.0000017001,0.0000016782,0.0000016859,0.0000017306,0.0000017476, +0.0000017305,0.0000016835,0.0000016560,0.0000016482,0.0000016418, +0.0000016390,0.0000016367,0.0000016342,0.0000016332,0.0000016351, +0.0000016521,0.0000016819,0.0000016988,0.0000017085,0.0000017397, +0.0000017608,0.0000017672,0.0000017740,0.0000017752,0.0000017830, +0.0000017889,0.0000018050,0.0000018005,0.0000017778,0.0000017810, +0.0000017608,0.0000017073,0.0000017202,0.0000017285,0.0000017226, +0.0000017238,0.0000017239,0.0000017135,0.0000017106,0.0000017225, +0.0000017263,0.0000017085,0.0000016843,0.0000016702,0.0000016668, +0.0000016766,0.0000016847,0.0000016872,0.0000016852,0.0000016855, +0.0000017098,0.0000017440,0.0000017715,0.0000017963,0.0000018081, +0.0000018087,0.0000018062,0.0000018021,0.0000017991,0.0000017986, +0.0000017980,0.0000017961,0.0000017922,0.0000017830,0.0000017709, +0.0000017603,0.0000017510,0.0000017474,0.0000017487,0.0000017493, +0.0000017526,0.0000017681,0.0000017701,0.0000017373,0.0000017023, +0.0000016896,0.0000016885,0.0000016886,0.0000016885,0.0000016872, +0.0000016826,0.0000016764,0.0000016751,0.0000016788,0.0000017000, +0.0000017435,0.0000017700,0.0000017837,0.0000017966,0.0000017984, +0.0000018464,0.0000019317,0.0000019417,0.0000019347,0.0000019794, +0.0000019916,0.0000019892,0.0000019991,0.0000019950,0.0000019862, +0.0000020008,0.0000020232,0.0000020283,0.0000020300,0.0000020287, +0.0000020272,0.0000020234,0.0000020197,0.0000020187,0.0000020197, +0.0000020252,0.0000020303,0.0000020308,0.0000020301,0.0000020301, +0.0000020307,0.0000020313,0.0000020332,0.0000020359,0.0000020379, +0.0000020403,0.0000020451,0.0000020514,0.0000020549,0.0000020502, +0.0000020347,0.0000020221,0.0000020171,0.0000020050,0.0000019885, +0.0000019765,0.0000019457,0.0000019234,0.0000019349,0.0000019494, +0.0000019533,0.0000019487,0.0000019326,0.0000019062,0.0000018910, +0.0000018991,0.0000018994,0.0000018735,0.0000018328,0.0000018089, +0.0000018047,0.0000018061,0.0000018074,0.0000018093,0.0000018117, +0.0000018109,0.0000018091,0.0000018069,0.0000018041,0.0000018061, +0.0000018115,0.0000018152,0.0000018167,0.0000018186,0.0000018208, +0.0000018194,0.0000018095,0.0000017946,0.0000017835,0.0000017994, +0.0000018283,0.0000018211,0.0000018158,0.0000018313,0.0000018399, +0.0000018172,0.0000018555,0.0000019344,0.0000019350,0.0000018930, +0.0000018846,0.0000018658,0.0000017480,0.0000016559,0.0000016640, +0.0000016756,0.0000016741,0.0000016615,0.0000016428,0.0000015986, +0.0000015583,0.0000015547,0.0000015517,0.0000015478,0.0000015514, +0.0000015683,0.0000015952,0.0000016203,0.0000016264,0.0000016156, +0.0000016122,0.0000016347,0.0000016646,0.0000016758,0.0000016767, +0.0000016835,0.0000016973,0.0000017113,0.0000017222,0.0000017301, +0.0000017311,0.0000017078,0.0000016581,0.0000016217,0.0000016202, +0.0000016373,0.0000016492,0.0000016434,0.0000016197,0.0000015897, +0.0000015666,0.0000015553,0.0000015428,0.0000015220,0.0000015030, +0.0000014934,0.0000014922,0.0000014939,0.0000014948,0.0000014935, +0.0000014920,0.0000014911,0.0000014915,0.0000014918,0.0000014858, +0.0000014709,0.0000014539,0.0000014413,0.0000014345,0.0000014324, +0.0000014342,0.0000014360,0.0000014365,0.0000014338,0.0000014298, +0.0000014334,0.0000014456,0.0000014624,0.0000014785,0.0000014917, +0.0000014997,0.0000015034,0.0000015085,0.0000015177,0.0000015251, +0.0000015249,0.0000015137,0.0000015048,0.0000015128,0.0000015373, +0.0000015672,0.0000015935,0.0000016124,0.0000016176,0.0000016214, +0.0000016211,0.0000016182,0.0000016143,0.0000016103,0.0000016051, +0.0000015970,0.0000015865,0.0000015723,0.0000015567,0.0000015468, +0.0000015450,0.0000015472,0.0000015557,0.0000015688,0.0000015824, +0.0000015949,0.0000016064,0.0000016145,0.0000016182,0.0000016181, +0.0000016170,0.0000016162,0.0000016143,0.0000016151,0.0000016150, +0.0000016145,0.0000016139,0.0000016144,0.0000016157,0.0000016135, +0.0000016138,0.0000016164,0.0000016195,0.0000016218,0.0000016250, +0.0000016279,0.0000016302,0.0000016317,0.0000016310,0.0000016297, +0.0000016242,0.0000016173,0.0000016099,0.0000016025,0.0000015977, +0.0000015950,0.0000015939,0.0000015939,0.0000015951,0.0000015968, +0.0000015987,0.0000016013,0.0000016053,0.0000016106,0.0000016149, +0.0000016177,0.0000016204,0.0000016228,0.0000016230,0.0000016227, +0.0000016228,0.0000016195,0.0000016155,0.0000016120,0.0000016107, +0.0000016103,0.0000016096,0.0000016086,0.0000016078,0.0000016062, +0.0000016032,0.0000016018,0.0000016026,0.0000016037,0.0000016060, +0.0000016078,0.0000016087,0.0000016102,0.0000016160,0.0000016235, +0.0000016316,0.0000016489,0.0000016745,0.0000016891,0.0000016895, +0.0000016780,0.0000016780,0.0000016911,0.0000017175,0.0000017450, +0.0000017669,0.0000017833,0.0000017961,0.0000018052,0.0000018102, +0.0000018134,0.0000018154,0.0000018155,0.0000018121,0.0000018040, +0.0000017908,0.0000017789,0.0000017762,0.0000017859,0.0000018070, +0.0000018217,0.0000018268,0.0000018445,0.0000018709,0.0000018858, +0.0000018963,0.0000019129,0.0000019314,0.0000019434,0.0000019503, +0.0000019590,0.0000019647,0.0000019639,0.0000019551,0.0000019418, +0.0000019371,0.0000019386,0.0000019406,0.0000019445,0.0000019514, +0.0000019617,0.0000019726,0.0000019818,0.0000019876,0.0000019895, +0.0000019888,0.0000019826,0.0000019707,0.0000019581,0.0000019513, +0.0000019506,0.0000019515,0.0000019521,0.0000019522,0.0000019514, +0.0000019494,0.0000019471,0.0000019459,0.0000019450,0.0000019362, +0.0000019094,0.0000018737,0.0000018502,0.0000018405,0.0000018424, +0.0000018412,0.0000018357,0.0000018266,0.0000018224,0.0000018137, +0.0000018137,0.0000018170,0.0000018291,0.0000018443,0.0000018615, +0.0000018760,0.0000018836,0.0000018854,0.0000018839,0.0000018819, +0.0000018813,0.0000018815,0.0000018869,0.0000019015,0.0000019205, +0.0000019343,0.0000019370,0.0000019325,0.0000019245,0.0000019098, +0.0000018772,0.0000018305,0.0000017846,0.0000017476,0.0000017193, +0.0000017026,0.0000016919,0.0000016835,0.0000017083,0.0000017577, +0.0000018084,0.0000018871,0.0000019598,0.0000019750,0.0000019732, +0.0000019602,0.0000019638,0.0000019844,0.0000020054,0.0000020128, +0.0000020004,0.0000019893,0.0000019845,0.0000019775,0.0000019710, +0.0000019651,0.0000019598,0.0000019555,0.0000019514,0.0000019586, +0.0000019687,0.0000019661,0.0000019497,0.0000019272,0.0000019002, +0.0000018814,0.0000018788,0.0000018822,0.0000018812,0.0000018610, +0.0000018245,0.0000018140,0.0000018314,0.0000018664,0.0000018956, +0.0000019053,0.0000019060,0.0000019063,0.0000019058,0.0000018977, +0.0000018731,0.0000018436,0.0000018444,0.0000018706,0.0000018872, +0.0000018843,0.0000018799,0.0000018814,0.0000018853,0.0000018893, +0.0000018907,0.0000018822,0.0000018615,0.0000018443,0.0000018347, +0.0000018206,0.0000018042,0.0000017924,0.0000017861,0.0000017853, +0.0000017879,0.0000017921,0.0000017959,0.0000018033,0.0000018218, +0.0000018377,0.0000018356,0.0000018248,0.0000018118,0.0000017957, +0.0000017804,0.0000017680,0.0000017586,0.0000017536,0.0000017518, +0.0000017500,0.0000017473,0.0000017429,0.0000017341,0.0000017208, +0.0000017097,0.0000017055,0.0000016992,0.0000016878,0.0000016789, +0.0000016713,0.0000016655,0.0000016684,0.0000016750,0.0000016755, +0.0000016713,0.0000016665,0.0000016631,0.0000016630,0.0000016658, +0.0000016683,0.0000016668,0.0000016596,0.0000016494,0.0000016340, +0.0000016122,0.0000015922,0.0000015812,0.0000015809,0.0000015912, +0.0000016007,0.0000016046,0.0000015995,0.0000015900,0.0000015897, +0.0000015929,0.0000015941,0.0000016025,0.0000016238,0.0000016423, +0.0000016622,0.0000016778,0.0000016990,0.0000017161,0.0000017218, +0.0000017218,0.0000017139,0.0000017078,0.0000017063,0.0000016920, +0.0000016792,0.0000016707,0.0000016613,0.0000016482,0.0000016365, +0.0000016301,0.0000016289,0.0000016334,0.0000016413,0.0000016491, +0.0000016499,0.0000016456,0.0000016418,0.0000016417,0.0000016430, +0.0000016446,0.0000016459,0.0000016469,0.0000016461,0.0000016430, +0.0000016358,0.0000016278,0.0000016241,0.0000016243,0.0000016269, +0.0000016272,0.0000016225,0.0000016238,0.0000016339,0.0000016402, +0.0000016383,0.0000016305,0.0000016221,0.0000016175,0.0000016161, +0.0000016165,0.0000016161,0.0000016155,0.0000016181,0.0000016225, +0.0000016249,0.0000016281,0.0000016313,0.0000016373,0.0000016474, +0.0000016541,0.0000016567,0.0000016698,0.0000017129,0.0000017630, +0.0000017821,0.0000017820,0.0000017796,0.0000017813,0.0000017900, +0.0000017996,0.0000017981,0.0000017668,0.0000017346,0.0000017187, +0.0000017026,0.0000016868,0.0000016884,0.0000017166,0.0000017227, +0.0000017028,0.0000016868,0.0000016667,0.0000017009,0.0000017397, +0.0000017438,0.0000017093,0.0000016644,0.0000016509,0.0000016436, +0.0000016398,0.0000016408,0.0000016428,0.0000016425,0.0000016387, +0.0000016340,0.0000016378,0.0000016675,0.0000016946,0.0000017057, +0.0000017330,0.0000017584,0.0000017668,0.0000017767,0.0000017745, +0.0000017766,0.0000017891,0.0000018062,0.0000017889,0.0000017730, +0.0000017779,0.0000017449,0.0000017008,0.0000017247,0.0000017273, +0.0000017227,0.0000017239,0.0000017221,0.0000017106,0.0000017108, +0.0000017243,0.0000017242,0.0000017010,0.0000016797,0.0000016680, +0.0000016679,0.0000016792,0.0000016859,0.0000016897,0.0000016851, +0.0000016895,0.0000017210,0.0000017511,0.0000017755,0.0000017971, +0.0000018057,0.0000018049,0.0000018010,0.0000017977,0.0000017975, +0.0000017992,0.0000018002,0.0000017973,0.0000017857,0.0000017716, +0.0000017608,0.0000017514,0.0000017473,0.0000017491,0.0000017495, +0.0000017509,0.0000017651,0.0000017701,0.0000017401,0.0000017039, +0.0000016896,0.0000016875,0.0000016861,0.0000016855,0.0000016854, +0.0000016830,0.0000016758,0.0000016709,0.0000016721,0.0000016835, +0.0000017194,0.0000017578,0.0000017758,0.0000017908,0.0000017973, +0.0000018169,0.0000018998,0.0000019500,0.0000019305,0.0000019559, +0.0000019946,0.0000019923,0.0000019849,0.0000019835,0.0000019930, +0.0000020158,0.0000020305,0.0000020299,0.0000020274,0.0000020212, +0.0000020198,0.0000020213,0.0000020213,0.0000020187,0.0000020135, +0.0000020124,0.0000020138,0.0000020189,0.0000020250,0.0000020310, +0.0000020370,0.0000020406,0.0000020432,0.0000020467,0.0000020499, +0.0000020519,0.0000020494,0.0000020375,0.0000020222,0.0000020169, +0.0000020184,0.0000020120,0.0000019943,0.0000019862,0.0000019774, +0.0000019404,0.0000019154,0.0000019260,0.0000019436,0.0000019431, +0.0000019250,0.0000018979,0.0000018806,0.0000018828,0.0000018983, +0.0000018885,0.0000018488,0.0000018150,0.0000018073,0.0000018087, +0.0000018120,0.0000018145,0.0000018154,0.0000018145,0.0000018126, +0.0000018088,0.0000018035,0.0000018003,0.0000018036,0.0000018104, +0.0000018142,0.0000018123,0.0000018109,0.0000018129,0.0000018144, +0.0000018090,0.0000017933,0.0000017780,0.0000017885,0.0000018257, +0.0000018246,0.0000018102,0.0000018177,0.0000018404,0.0000018326, +0.0000018144,0.0000018822,0.0000019425,0.0000019281,0.0000018895, +0.0000018832,0.0000018543,0.0000017282,0.0000016572,0.0000016707, +0.0000016777,0.0000016680,0.0000016514,0.0000016149,0.0000015636, +0.0000015537,0.0000015573,0.0000015635,0.0000015735,0.0000015886, +0.0000016084,0.0000016228,0.0000016212,0.0000016108,0.0000016161, +0.0000016461,0.0000016717,0.0000016761,0.0000016775,0.0000016877, +0.0000017019,0.0000017142,0.0000017245,0.0000017323,0.0000017274, +0.0000016928,0.0000016427,0.0000016225,0.0000016299,0.0000016463, +0.0000016494,0.0000016330,0.0000016044,0.0000015762,0.0000015600, +0.0000015493,0.0000015307,0.0000015089,0.0000014954,0.0000014916, +0.0000014929,0.0000014944,0.0000014936,0.0000014913,0.0000014894, +0.0000014893,0.0000014856,0.0000014697,0.0000014466,0.0000014290, +0.0000014219,0.0000014216,0.0000014257,0.0000014297,0.0000014331, +0.0000014366,0.0000014384,0.0000014355,0.0000014288,0.0000014216, +0.0000014184,0.0000014229,0.0000014307,0.0000014467,0.0000014647, +0.0000014818,0.0000014937,0.0000015000,0.0000015061,0.0000015159, +0.0000015226,0.0000015184,0.0000015095,0.0000015057,0.0000015132, +0.0000015316,0.0000015554,0.0000015776,0.0000015949,0.0000016068, +0.0000016151,0.0000016192,0.0000016233,0.0000016273,0.0000016292, +0.0000016263,0.0000016197,0.0000016083,0.0000015922,0.0000015742, +0.0000015581,0.0000015522,0.0000015513,0.0000015555,0.0000015651, +0.0000015777,0.0000015894,0.0000015990,0.0000016062,0.0000016114, +0.0000016144,0.0000016157,0.0000016157,0.0000016175,0.0000016183, +0.0000016182,0.0000016192,0.0000016213,0.0000016230,0.0000016243, +0.0000016259,0.0000016278,0.0000016293,0.0000016315,0.0000016309, +0.0000016279,0.0000016232,0.0000016166,0.0000016087,0.0000016019, +0.0000015970,0.0000015934,0.0000015904,0.0000015887,0.0000015880, +0.0000015883,0.0000015886,0.0000015894,0.0000015909,0.0000015917, +0.0000015918,0.0000015936,0.0000015966,0.0000016008,0.0000016046, +0.0000016077,0.0000016111,0.0000016148,0.0000016185,0.0000016233, +0.0000016234,0.0000016224,0.0000016206,0.0000016173,0.0000016140, +0.0000016131,0.0000016126,0.0000016132,0.0000016125,0.0000016090, +0.0000016049,0.0000016009,0.0000015975,0.0000015994,0.0000016033, +0.0000016063,0.0000016070,0.0000016117,0.0000016196,0.0000016230, +0.0000016323,0.0000016594,0.0000016905,0.0000016998,0.0000016918, +0.0000016805,0.0000016798,0.0000016821,0.0000016962,0.0000017118, +0.0000017291,0.0000017455,0.0000017604,0.0000017707,0.0000017758, +0.0000017758,0.0000017689,0.0000017543,0.0000017355,0.0000017188, +0.0000017116,0.0000017149,0.0000017367,0.0000017786,0.0000018153, +0.0000018293,0.0000018420,0.0000018653,0.0000018831,0.0000018933, +0.0000019078,0.0000019262,0.0000019410,0.0000019496,0.0000019577, +0.0000019641,0.0000019621,0.0000019498,0.0000019391,0.0000019386, +0.0000019393,0.0000019395,0.0000019421,0.0000019475,0.0000019553, +0.0000019649,0.0000019752,0.0000019839,0.0000019884,0.0000019874, +0.0000019805,0.0000019687,0.0000019581,0.0000019539,0.0000019539, +0.0000019546,0.0000019544,0.0000019531,0.0000019512,0.0000019492, +0.0000019479,0.0000019471,0.0000019460,0.0000019385,0.0000019172, +0.0000018885,0.0000018640,0.0000018526,0.0000018500,0.0000018514, +0.0000018544,0.0000018610,0.0000018693,0.0000018809,0.0000018940, +0.0000019084,0.0000019253,0.0000019417,0.0000019531,0.0000019592, +0.0000019617,0.0000019627,0.0000019634,0.0000019654,0.0000019679, +0.0000019701,0.0000019721,0.0000019727,0.0000019700,0.0000019650, +0.0000019596,0.0000019534,0.0000019462,0.0000019329,0.0000019068, +0.0000018691,0.0000018291,0.0000017937,0.0000017685,0.0000017472, +0.0000017141,0.0000016895,0.0000017023,0.0000017664,0.0000018314, +0.0000019269,0.0000019665,0.0000019800,0.0000019782,0.0000019788, +0.0000019942,0.0000020039,0.0000019996,0.0000019935,0.0000019909, +0.0000019802,0.0000019676,0.0000019606,0.0000019558,0.0000019529, +0.0000019499,0.0000019477,0.0000019548,0.0000019647,0.0000019665, +0.0000019583,0.0000019367,0.0000019092,0.0000018852,0.0000018766, +0.0000018777,0.0000018788,0.0000018712,0.0000018418,0.0000018164, +0.0000018214,0.0000018473,0.0000018766,0.0000018935,0.0000018992, +0.0000018988,0.0000018910,0.0000018695,0.0000018439,0.0000018415, +0.0000018660,0.0000018856,0.0000018804,0.0000018676,0.0000018672, +0.0000018734,0.0000018791,0.0000018846,0.0000018890,0.0000018846, +0.0000018646,0.0000018454,0.0000018372,0.0000018253,0.0000018098, +0.0000017991,0.0000017928,0.0000017911,0.0000017926,0.0000017959, +0.0000018003,0.0000018138,0.0000018345,0.0000018408,0.0000018310, +0.0000018172,0.0000017998,0.0000017806,0.0000017647,0.0000017544, +0.0000017493,0.0000017476,0.0000017460,0.0000017435,0.0000017405, +0.0000017361,0.0000017273,0.0000017155,0.0000017082,0.0000017057, +0.0000016986,0.0000016861,0.0000016763,0.0000016705,0.0000016683, +0.0000016713,0.0000016766,0.0000016772,0.0000016737,0.0000016692, +0.0000016661,0.0000016656,0.0000016676,0.0000016704,0.0000016684, +0.0000016589,0.0000016441,0.0000016239,0.0000016026,0.0000015865, +0.0000015798,0.0000015843,0.0000015952,0.0000016032,0.0000016045, +0.0000015954,0.0000015892,0.0000015907,0.0000015923,0.0000015936, +0.0000016083,0.0000016300,0.0000016475,0.0000016678,0.0000016884, +0.0000017101,0.0000017196,0.0000017223,0.0000017202,0.0000017112, +0.0000017097,0.0000017061,0.0000016896,0.0000016799,0.0000016702, +0.0000016588,0.0000016445,0.0000016336,0.0000016282,0.0000016261, +0.0000016285,0.0000016355,0.0000016453,0.0000016493,0.0000016490, +0.0000016466,0.0000016450,0.0000016450,0.0000016465,0.0000016464, +0.0000016454,0.0000016425,0.0000016366,0.0000016299,0.0000016264, +0.0000016256,0.0000016266,0.0000016249,0.0000016217,0.0000016320, +0.0000016500,0.0000016578,0.0000016578,0.0000016543,0.0000016472, +0.0000016390,0.0000016329,0.0000016290,0.0000016248,0.0000016202, +0.0000016184,0.0000016202,0.0000016235,0.0000016269,0.0000016285, +0.0000016330,0.0000016436,0.0000016528,0.0000016571,0.0000016636, +0.0000016965,0.0000017500,0.0000017823,0.0000017865,0.0000017863, +0.0000017887,0.0000017961,0.0000018002,0.0000017860,0.0000017492, +0.0000017263,0.0000017117,0.0000016921,0.0000016789,0.0000016917, +0.0000017184,0.0000017104,0.0000016935,0.0000016691,0.0000016657, +0.0000017147,0.0000017424,0.0000017343,0.0000016853,0.0000016527, +0.0000016447,0.0000016390,0.0000016406,0.0000016449,0.0000016489, +0.0000016502,0.0000016477,0.0000016390,0.0000016312,0.0000016508, +0.0000016872,0.0000017033,0.0000017269,0.0000017553,0.0000017658, +0.0000017776,0.0000017773,0.0000017776,0.0000017952,0.0000018042, +0.0000017775,0.0000017720,0.0000017729,0.0000017267,0.0000017015, +0.0000017277,0.0000017264,0.0000017234,0.0000017240,0.0000017196, +0.0000017088,0.0000017129,0.0000017250,0.0000017200,0.0000016947, +0.0000016764,0.0000016672,0.0000016712,0.0000016812,0.0000016881, +0.0000016906,0.0000016845,0.0000016970,0.0000017300,0.0000017544, +0.0000017743,0.0000017922,0.0000018001,0.0000018004,0.0000017983, +0.0000017977,0.0000017998,0.0000018011,0.0000017979,0.0000017843, +0.0000017701,0.0000017608,0.0000017514,0.0000017457,0.0000017482, +0.0000017499,0.0000017502,0.0000017626,0.0000017680,0.0000017425, +0.0000017050,0.0000016894,0.0000016863,0.0000016833,0.0000016819, +0.0000016830,0.0000016827,0.0000016756,0.0000016674,0.0000016665, +0.0000016718,0.0000016935,0.0000017342,0.0000017643,0.0000017817, +0.0000017952,0.0000017990,0.0000018610,0.0000019416,0.0000019422, +0.0000019327,0.0000019767,0.0000020013,0.0000019988,0.0000019987, +0.0000020108,0.0000020250,0.0000020302,0.0000020276,0.0000020068, +0.0000019838,0.0000019773,0.0000019820,0.0000019905,0.0000019991, +0.0000020046,0.0000020057,0.0000020036,0.0000020028,0.0000020046, +0.0000020086,0.0000020143,0.0000020191,0.0000020216,0.0000020221, +0.0000020193,0.0000020145,0.0000020140,0.0000020169,0.0000020174, +0.0000020098,0.0000019915,0.0000019822,0.0000019863,0.0000019737, +0.0000019299,0.0000019008,0.0000019040,0.0000019104,0.0000019035, +0.0000018860,0.0000018747,0.0000018760,0.0000018881,0.0000018887, +0.0000018610,0.0000018234,0.0000018054,0.0000018056,0.0000018103, +0.0000018151,0.0000018172,0.0000018166,0.0000018147,0.0000018127, +0.0000018102,0.0000018068,0.0000018051,0.0000018089,0.0000018168, +0.0000018192,0.0000018145,0.0000018069,0.0000018040,0.0000018044, +0.0000018014,0.0000017898,0.0000017739,0.0000017795,0.0000018194, +0.0000018310,0.0000018074,0.0000018077,0.0000018264,0.0000018454, +0.0000018200,0.0000018252,0.0000019091,0.0000019427,0.0000019205, +0.0000018907,0.0000018861,0.0000018399,0.0000017121,0.0000016608, +0.0000016746,0.0000016757,0.0000016608,0.0000016343,0.0000015812, +0.0000015559,0.0000015600,0.0000015746,0.0000015882,0.0000015980, +0.0000016082,0.0000016181,0.0000016159,0.0000016086,0.0000016210, +0.0000016547,0.0000016766,0.0000016777,0.0000016803,0.0000016899, +0.0000017027,0.0000017149,0.0000017267,0.0000017329,0.0000017201, +0.0000016758,0.0000016330,0.0000016260,0.0000016411,0.0000016518, +0.0000016453,0.0000016207,0.0000015905,0.0000015678,0.0000015560, +0.0000015409,0.0000015186,0.0000015012,0.0000014933,0.0000014929, +0.0000014944,0.0000014940,0.0000014924,0.0000014906,0.0000014881, +0.0000014793,0.0000014577,0.0000014327,0.0000014208,0.0000014199, +0.0000014238,0.0000014271,0.0000014296,0.0000014320,0.0000014337, +0.0000014367,0.0000014416,0.0000014437,0.0000014401,0.0000014354, +0.0000014295,0.0000014238,0.0000014218,0.0000014239,0.0000014299, +0.0000014378,0.0000014519,0.0000014693,0.0000014854,0.0000014966, +0.0000015059,0.0000015155,0.0000015191,0.0000015144,0.0000015093, +0.0000015049,0.0000015087,0.0000015204,0.0000015349,0.0000015487, +0.0000015614,0.0000015728,0.0000015826,0.0000015918,0.0000016001, +0.0000016070,0.0000016128,0.0000016150,0.0000016107,0.0000016062, +0.0000015981,0.0000015860,0.0000015725,0.0000015597,0.0000015581, +0.0000015564,0.0000015592,0.0000015677,0.0000015774,0.0000015846, +0.0000015903,0.0000015963,0.0000016019,0.0000016059,0.0000016078, +0.0000016087,0.0000016103,0.0000016127,0.0000016146,0.0000016156, +0.0000016160,0.0000016160,0.0000016155,0.0000016142,0.0000016120, +0.0000016092,0.0000016056,0.0000016015,0.0000015977,0.0000015951, +0.0000015933,0.0000015919,0.0000015911,0.0000015927,0.0000015956, +0.0000015989,0.0000016007,0.0000016013,0.0000016016,0.0000016008, +0.0000015987,0.0000015959,0.0000015943,0.0000015955,0.0000015972, +0.0000015993,0.0000016001,0.0000016013,0.0000016034,0.0000016089, +0.0000016153,0.0000016200,0.0000016236,0.0000016233,0.0000016210, +0.0000016170,0.0000016131,0.0000016130,0.0000016151,0.0000016161, +0.0000016147,0.0000016085,0.0000015994,0.0000015950,0.0000015943, +0.0000016001,0.0000016032,0.0000016081,0.0000016182,0.0000016214, +0.0000016241,0.0000016429,0.0000016776,0.0000017021,0.0000017059, +0.0000016962,0.0000016873,0.0000016824,0.0000016817,0.0000016855, +0.0000016872,0.0000016932,0.0000017018,0.0000017064,0.0000017077, +0.0000017059,0.0000016990,0.0000016897,0.0000016843,0.0000016849, +0.0000016880,0.0000016926,0.0000017055,0.0000017489,0.0000018000, +0.0000018270,0.0000018386,0.0000018574,0.0000018769,0.0000018888, +0.0000019011,0.0000019186,0.0000019369,0.0000019492,0.0000019576, +0.0000019632,0.0000019597,0.0000019461,0.0000019383,0.0000019391, +0.0000019393,0.0000019391,0.0000019394,0.0000019413,0.0000019457, +0.0000019530,0.0000019633,0.0000019747,0.0000019835,0.0000019866, +0.0000019841,0.0000019765,0.0000019691,0.0000019656,0.0000019650, +0.0000019659,0.0000019673,0.0000019682,0.0000019681,0.0000019668, +0.0000019644,0.0000019613,0.0000019583,0.0000019529,0.0000019426, +0.0000019300,0.0000019228,0.0000019246,0.0000019323,0.0000019411, +0.0000019489,0.0000019580,0.0000019673,0.0000019746,0.0000019801, +0.0000019853,0.0000019893,0.0000019919,0.0000019938,0.0000019950, +0.0000019961,0.0000019970,0.0000019980,0.0000019985,0.0000019975, +0.0000019944,0.0000019907,0.0000019863,0.0000019817,0.0000019769, +0.0000019724,0.0000019686,0.0000019607,0.0000019467,0.0000019245, +0.0000018953,0.0000018634,0.0000018373,0.0000018227,0.0000018010, +0.0000017444,0.0000016879,0.0000017118,0.0000017915,0.0000018762, +0.0000019560,0.0000019695,0.0000019847,0.0000019886,0.0000019945, +0.0000019925,0.0000019869,0.0000019910,0.0000019887,0.0000019726, +0.0000019590,0.0000019542,0.0000019498,0.0000019455,0.0000019411, +0.0000019395,0.0000019489,0.0000019610,0.0000019654,0.0000019629, +0.0000019456,0.0000019188,0.0000018948,0.0000018782,0.0000018731, +0.0000018760,0.0000018758,0.0000018604,0.0000018345,0.0000018244, +0.0000018339,0.0000018523,0.0000018681,0.0000018725,0.0000018677, +0.0000018544,0.0000018416,0.0000018418,0.0000018650,0.0000018827, +0.0000018788,0.0000018611,0.0000018544,0.0000018578,0.0000018670, +0.0000018739,0.0000018798,0.0000018872,0.0000018867,0.0000018681, +0.0000018476,0.0000018402,0.0000018307,0.0000018159,0.0000018053, +0.0000017984,0.0000017955,0.0000017964,0.0000017992,0.0000018068, +0.0000018257,0.0000018416,0.0000018384,0.0000018248,0.0000018071, +0.0000017842,0.0000017632,0.0000017509,0.0000017457,0.0000017435, +0.0000017420,0.0000017398,0.0000017369,0.0000017344,0.0000017298, +0.0000017205,0.0000017116,0.0000017078,0.0000017059,0.0000016973, +0.0000016829,0.0000016741,0.0000016720,0.0000016719,0.0000016740, +0.0000016775,0.0000016780,0.0000016752,0.0000016713,0.0000016679, +0.0000016666,0.0000016692,0.0000016727,0.0000016694,0.0000016562, +0.0000016360,0.0000016140,0.0000015956,0.0000015828,0.0000015799, +0.0000015883,0.0000015982,0.0000016044,0.0000016018,0.0000015911, +0.0000015890,0.0000015907,0.0000015908,0.0000015951,0.0000016160, +0.0000016350,0.0000016534,0.0000016757,0.0000017009,0.0000017156, +0.0000017206,0.0000017220,0.0000017176,0.0000017110,0.0000017130, +0.0000017053,0.0000016897,0.0000016815,0.0000016698,0.0000016565, +0.0000016414,0.0000016322,0.0000016290,0.0000016269,0.0000016263, +0.0000016309,0.0000016406,0.0000016499,0.0000016531,0.0000016511, +0.0000016480,0.0000016495,0.0000016471,0.0000016451,0.0000016423, +0.0000016379,0.0000016326,0.0000016289,0.0000016263,0.0000016259, +0.0000016229,0.0000016222,0.0000016399,0.0000016568,0.0000016606, +0.0000016613,0.0000016632,0.0000016635,0.0000016589,0.0000016513, +0.0000016451,0.0000016389,0.0000016302,0.0000016210,0.0000016175, +0.0000016201,0.0000016253,0.0000016266,0.0000016288,0.0000016384, +0.0000016502,0.0000016576,0.0000016620,0.0000016840,0.0000017340, +0.0000017767,0.0000017886,0.0000017904,0.0000017936,0.0000017988, +0.0000017965,0.0000017672,0.0000017356,0.0000017191,0.0000017029, +0.0000016810,0.0000016753,0.0000016971,0.0000017130,0.0000016967, +0.0000016817,0.0000016538,0.0000016720,0.0000017249,0.0000017413, +0.0000017147,0.0000016634,0.0000016434,0.0000016368,0.0000016364, +0.0000016421,0.0000016468,0.0000016497,0.0000016511,0.0000016507, +0.0000016457,0.0000016338,0.0000016396,0.0000016767,0.0000017004, +0.0000017211,0.0000017519,0.0000017651,0.0000017778,0.0000017831, +0.0000017850,0.0000018026,0.0000017963,0.0000017708,0.0000017713, +0.0000017661,0.0000017106,0.0000017066,0.0000017277,0.0000017253, +0.0000017237,0.0000017227,0.0000017161,0.0000017076,0.0000017156, +0.0000017255,0.0000017141,0.0000016894,0.0000016734,0.0000016679, +0.0000016744,0.0000016829,0.0000016911,0.0000016901,0.0000016848, +0.0000017042,0.0000017355,0.0000017529,0.0000017665,0.0000017804, +0.0000017895,0.0000017939,0.0000017961,0.0000017987,0.0000017999, +0.0000017942,0.0000017799,0.0000017675,0.0000017605,0.0000017514, +0.0000017447,0.0000017466,0.0000017496,0.0000017501,0.0000017609, +0.0000017663,0.0000017438,0.0000017055,0.0000016887,0.0000016848, +0.0000016808,0.0000016792,0.0000016808,0.0000016813,0.0000016749, +0.0000016651,0.0000016619,0.0000016644,0.0000016748,0.0000017050, +0.0000017451,0.0000017710,0.0000017895,0.0000017954,0.0000018267, +0.0000019136,0.0000019527,0.0000019318,0.0000019414,0.0000019872, +0.0000020077,0.0000020127,0.0000020181,0.0000020224,0.0000020208, +0.0000020044,0.0000019678,0.0000019402,0.0000019386,0.0000019451, +0.0000019516,0.0000019587,0.0000019669,0.0000019759,0.0000019823, +0.0000019887,0.0000019953,0.0000019992,0.0000020028,0.0000020067, +0.0000020095,0.0000020130,0.0000020164,0.0000020172,0.0000020118, +0.0000019965,0.0000019791,0.0000019753,0.0000019829,0.0000019865, +0.0000019645,0.0000019153,0.0000018843,0.0000018790,0.0000018786, +0.0000018758,0.0000018730,0.0000018734,0.0000018848,0.0000018950, +0.0000018752,0.0000018334,0.0000018045,0.0000018021,0.0000018054, +0.0000018100,0.0000018137,0.0000018146,0.0000018146,0.0000018149, +0.0000018159,0.0000018165,0.0000018169,0.0000018172,0.0000018197, +0.0000018256,0.0000018294,0.0000018245,0.0000018112,0.0000018014, +0.0000017970,0.0000017934,0.0000017844,0.0000017739,0.0000017772, +0.0000018142,0.0000018334,0.0000018091,0.0000018007,0.0000018129, +0.0000018374,0.0000018418,0.0000018169,0.0000018463,0.0000019285, +0.0000019442,0.0000019155,0.0000018946,0.0000018872,0.0000018236, +0.0000016948,0.0000016605,0.0000016774,0.0000016709,0.0000016501, +0.0000016089,0.0000015583,0.0000015582,0.0000015745,0.0000015873, +0.0000015924,0.0000015994,0.0000016123,0.0000016148,0.0000016097, +0.0000016249,0.0000016601,0.0000016781,0.0000016789,0.0000016825, +0.0000016899,0.0000017012,0.0000017145,0.0000017280,0.0000017318, +0.0000017085,0.0000016600,0.0000016326,0.0000016347,0.0000016504, +0.0000016532,0.0000016372,0.0000016080,0.0000015798,0.0000015635, +0.0000015509,0.0000015307,0.0000015103,0.0000014992,0.0000014952, +0.0000014954,0.0000014954,0.0000014941,0.0000014932,0.0000014911, +0.0000014804,0.0000014545,0.0000014280,0.0000014179,0.0000014203, +0.0000014270,0.0000014303,0.0000014291,0.0000014246,0.0000014202, +0.0000014169,0.0000014174,0.0000014243,0.0000014332,0.0000014369, +0.0000014371,0.0000014365,0.0000014343,0.0000014314,0.0000014293, +0.0000014296,0.0000014326,0.0000014362,0.0000014394,0.0000014440, +0.0000014572,0.0000014766,0.0000014951,0.0000015077,0.0000015149, +0.0000015172,0.0000015149,0.0000015109,0.0000015094,0.0000015087, +0.0000015106,0.0000015154,0.0000015219,0.0000015293,0.0000015369, +0.0000015447,0.0000015528,0.0000015609,0.0000015690,0.0000015762, +0.0000015839,0.0000015912,0.0000015928,0.0000015952,0.0000015891, +0.0000015806,0.0000015704,0.0000015614,0.0000015610,0.0000015605, +0.0000015631,0.0000015650,0.0000015688,0.0000015732,0.0000015770, +0.0000015803,0.0000015838,0.0000015878,0.0000015921,0.0000015953, +0.0000015971,0.0000015980,0.0000015989,0.0000016003,0.0000016020, +0.0000016028,0.0000016030,0.0000016042,0.0000016055,0.0000016057, +0.0000016058,0.0000016062,0.0000016079,0.0000016111,0.0000016140, +0.0000016150,0.0000016130,0.0000016118,0.0000016120,0.0000016110, +0.0000016100,0.0000016100,0.0000016078,0.0000016061,0.0000016021, +0.0000015997,0.0000015988,0.0000015984,0.0000015971,0.0000015952, +0.0000015954,0.0000015985,0.0000016044,0.0000016127,0.0000016207, +0.0000016241,0.0000016231,0.0000016172,0.0000016117,0.0000016107, +0.0000016145,0.0000016196,0.0000016193,0.0000016115,0.0000015968, +0.0000015890,0.0000015913,0.0000015970,0.0000016030,0.0000016155, +0.0000016220,0.0000016219,0.0000016314,0.0000016617,0.0000016926, +0.0000017064,0.0000017064,0.0000017045,0.0000016992,0.0000016960, +0.0000016918,0.0000016871,0.0000016836,0.0000016816,0.0000016778, +0.0000016772,0.0000016783,0.0000016806,0.0000016842,0.0000016915, +0.0000016997,0.0000017034,0.0000017005,0.0000017004,0.0000017254, +0.0000017738,0.0000018126,0.0000018303,0.0000018459,0.0000018654, +0.0000018812,0.0000018939,0.0000019104,0.0000019314,0.0000019485, +0.0000019581,0.0000019629,0.0000019595,0.0000019475,0.0000019395, +0.0000019393,0.0000019405,0.0000019423,0.0000019442,0.0000019465, +0.0000019496,0.0000019543,0.0000019606,0.0000019697,0.0000019792, +0.0000019855,0.0000019870,0.0000019857,0.0000019833,0.0000019822, +0.0000019832,0.0000019861,0.0000019887,0.0000019902,0.0000019909, +0.0000019903,0.0000019875,0.0000019826,0.0000019781,0.0000019757, +0.0000019759,0.0000019796,0.0000019861,0.0000019927,0.0000019984, +0.0000020025,0.0000020065,0.0000020081,0.0000020093,0.0000020078, +0.0000020079,0.0000020092,0.0000020090,0.0000020085,0.0000020087, +0.0000020087,0.0000020105,0.0000020120,0.0000020125,0.0000020118, +0.0000020123,0.0000020103,0.0000020063,0.0000020009,0.0000019931, +0.0000019844,0.0000019787,0.0000019746,0.0000019682,0.0000019564, +0.0000019364,0.0000019115,0.0000018853,0.0000018678,0.0000018615, +0.0000018337,0.0000017521,0.0000016868,0.0000017422,0.0000018357, +0.0000019301,0.0000019581,0.0000019718,0.0000019819,0.0000019829, +0.0000019778,0.0000019793,0.0000019870,0.0000019830,0.0000019670, +0.0000019555,0.0000019527,0.0000019478,0.0000019423,0.0000019367, +0.0000019352,0.0000019431,0.0000019533,0.0000019597,0.0000019617, +0.0000019523,0.0000019291,0.0000019052,0.0000018858,0.0000018717, +0.0000018705,0.0000018758,0.0000018737,0.0000018586,0.0000018427, +0.0000018362,0.0000018387,0.0000018410,0.0000018401,0.0000018372, +0.0000018400,0.0000018494,0.0000018713,0.0000018841,0.0000018747, +0.0000018562,0.0000018445,0.0000018432,0.0000018491,0.0000018597, +0.0000018686,0.0000018754,0.0000018844,0.0000018874,0.0000018707, +0.0000018496,0.0000018435,0.0000018367,0.0000018226,0.0000018109, +0.0000018027,0.0000017989,0.0000017993,0.0000018029,0.0000018158, +0.0000018361,0.0000018435,0.0000018339,0.0000018169,0.0000017926, +0.0000017656,0.0000017490,0.0000017428,0.0000017391,0.0000017365, +0.0000017339,0.0000017307,0.0000017276,0.0000017252,0.0000017206, +0.0000017140,0.0000017084,0.0000017069,0.0000017046,0.0000016935, +0.0000016789,0.0000016737,0.0000016748,0.0000016751,0.0000016755, +0.0000016772,0.0000016775,0.0000016756,0.0000016721,0.0000016679, +0.0000016667,0.0000016709,0.0000016737,0.0000016686,0.0000016516, +0.0000016274,0.0000016061,0.0000015910,0.0000015805,0.0000015819, +0.0000015918,0.0000016003,0.0000016041,0.0000015962,0.0000015889, +0.0000015892,0.0000015897,0.0000015894,0.0000016004,0.0000016240, +0.0000016394,0.0000016606,0.0000016873,0.0000017096,0.0000017173, +0.0000017204,0.0000017210,0.0000017154,0.0000017141,0.0000017157, +0.0000017046,0.0000016925,0.0000016832,0.0000016695,0.0000016540, +0.0000016390,0.0000016342,0.0000016353,0.0000016334,0.0000016283, +0.0000016294,0.0000016376,0.0000016486,0.0000016529,0.0000016522, +0.0000016512,0.0000016490,0.0000016460,0.0000016427,0.0000016394, +0.0000016354,0.0000016308,0.0000016266,0.0000016253,0.0000016215, +0.0000016239,0.0000016427,0.0000016556,0.0000016569,0.0000016578, +0.0000016610,0.0000016653,0.0000016675,0.0000016643,0.0000016591, +0.0000016533,0.0000016436,0.0000016275,0.0000016160,0.0000016161, +0.0000016227,0.0000016245,0.0000016245,0.0000016323,0.0000016459, +0.0000016574,0.0000016627,0.0000016761,0.0000017180,0.0000017663, +0.0000017885,0.0000017921,0.0000017958,0.0000017983,0.0000017827, +0.0000017479,0.0000017259,0.0000017118,0.0000016920,0.0000016715, +0.0000016740,0.0000016996,0.0000017004,0.0000016854,0.0000016657, +0.0000016434,0.0000016837,0.0000017298,0.0000017332,0.0000016903, +0.0000016472,0.0000016340,0.0000016291,0.0000016325,0.0000016377, +0.0000016408,0.0000016417,0.0000016438,0.0000016459,0.0000016462, +0.0000016402,0.0000016345,0.0000016643,0.0000016965,0.0000017151, +0.0000017486,0.0000017652,0.0000017766,0.0000017894,0.0000017959, +0.0000018046,0.0000017854,0.0000017698,0.0000017710,0.0000017575, +0.0000017046,0.0000017114,0.0000017278,0.0000017242,0.0000017227, +0.0000017207,0.0000017138,0.0000017083,0.0000017173,0.0000017233, +0.0000017076,0.0000016847,0.0000016712,0.0000016691,0.0000016763, +0.0000016858,0.0000016928,0.0000016863,0.0000016850,0.0000017096, +0.0000017375,0.0000017475,0.0000017547,0.0000017652,0.0000017756, +0.0000017836,0.0000017895,0.0000017911,0.0000017857,0.0000017736, +0.0000017649,0.0000017599,0.0000017512,0.0000017438,0.0000017451, +0.0000017487,0.0000017499,0.0000017598,0.0000017652,0.0000017438, +0.0000017055,0.0000016877,0.0000016830,0.0000016787,0.0000016773, +0.0000016784,0.0000016785,0.0000016731,0.0000016637,0.0000016586, +0.0000016602,0.0000016650,0.0000016814,0.0000017200,0.0000017571, +0.0000017806,0.0000017939,0.0000018031,0.0000018750,0.0000019478, +0.0000019477,0.0000019257,0.0000019438,0.0000019782,0.0000019947, +0.0000019971,0.0000019938,0.0000019822,0.0000019574,0.0000019291, +0.0000019186,0.0000019296,0.0000019414,0.0000019513,0.0000019581, +0.0000019603,0.0000019606,0.0000019600,0.0000019619,0.0000019672, +0.0000019705,0.0000019725,0.0000019746,0.0000019768,0.0000019784, +0.0000019729,0.0000019685,0.0000019693,0.0000019767,0.0000019880, +0.0000019939,0.0000019864,0.0000019489,0.0000018998,0.0000018725, +0.0000018680,0.0000018702,0.0000018719,0.0000018705,0.0000018760, +0.0000018924,0.0000018868,0.0000018463,0.0000018065,0.0000017945, +0.0000017975,0.0000018030,0.0000018082,0.0000018096,0.0000018093, +0.0000018118,0.0000018175,0.0000018239,0.0000018276,0.0000018287, +0.0000018269,0.0000018260,0.0000018268,0.0000018310,0.0000018324, +0.0000018233,0.0000018080,0.0000017983,0.0000017903,0.0000017806, +0.0000017745,0.0000017839,0.0000018162,0.0000018339,0.0000018126, +0.0000017970,0.0000018047,0.0000018215,0.0000018461,0.0000018326, +0.0000018109,0.0000018675,0.0000019383,0.0000019429,0.0000019139, +0.0000018993,0.0000018869,0.0000018058,0.0000016738,0.0000016636, +0.0000016790,0.0000016637,0.0000016342,0.0000015799,0.0000015578, +0.0000015674,0.0000015789,0.0000015781,0.0000015832,0.0000016008, +0.0000016089,0.0000016095,0.0000016298,0.0000016640,0.0000016782, +0.0000016787,0.0000016827,0.0000016890,0.0000017000,0.0000017146, +0.0000017277,0.0000017278,0.0000016943,0.0000016472,0.0000016326, +0.0000016435,0.0000016555,0.0000016504,0.0000016265,0.0000015961, +0.0000015732,0.0000015606,0.0000015435,0.0000015215,0.0000015071, +0.0000015013,0.0000014982,0.0000014973,0.0000014958,0.0000014954, +0.0000014938,0.0000014854,0.0000014594,0.0000014306,0.0000014198, +0.0000014235,0.0000014289,0.0000014294,0.0000014254,0.0000014170, +0.0000014076,0.0000014000,0.0000013964,0.0000013968,0.0000014033, +0.0000014168,0.0000014262,0.0000014283,0.0000014295,0.0000014307, +0.0000014306,0.0000014302,0.0000014316,0.0000014350,0.0000014393, +0.0000014421,0.0000014424,0.0000014406,0.0000014413,0.0000014498, +0.0000014697,0.0000014914,0.0000015060,0.0000015129,0.0000015143, +0.0000015166,0.0000015174,0.0000015164,0.0000015142,0.0000015137, +0.0000015140,0.0000015160,0.0000015194,0.0000015235,0.0000015283, +0.0000015335,0.0000015393,0.0000015458,0.0000015529,0.0000015619, +0.0000015727,0.0000015826,0.0000015867,0.0000015862,0.0000015823, +0.0000015789,0.0000015758,0.0000015734,0.0000015712,0.0000015698, +0.0000015685,0.0000015688,0.0000015682,0.0000015684,0.0000015680, +0.0000015678,0.0000015688,0.0000015708,0.0000015741,0.0000015784, +0.0000015829,0.0000015862,0.0000015878,0.0000015893,0.0000015927, +0.0000015970,0.0000016014,0.0000016048,0.0000016064,0.0000016064, +0.0000016042,0.0000015992,0.0000015922,0.0000015857,0.0000015819, +0.0000015801,0.0000015803,0.0000015830,0.0000015878,0.0000015941, +0.0000016015,0.0000016041,0.0000016037,0.0000016040,0.0000016025, +0.0000016000,0.0000015969,0.0000015935,0.0000015923,0.0000015921, +0.0000015969,0.0000016056,0.0000016150,0.0000016227,0.0000016238, +0.0000016180,0.0000016096,0.0000016081,0.0000016137,0.0000016225, +0.0000016248,0.0000016086,0.0000015885,0.0000015844,0.0000015904, +0.0000015981,0.0000016130,0.0000016223,0.0000016217,0.0000016262, +0.0000016464,0.0000016734,0.0000016917,0.0000016988,0.0000017002, +0.0000017008,0.0000017024,0.0000017025,0.0000017014,0.0000017004, +0.0000016974,0.0000016947,0.0000016950,0.0000016979,0.0000017038, +0.0000017116,0.0000017193,0.0000017240,0.0000017241,0.0000017192, +0.0000017114,0.0000017154,0.0000017431,0.0000017818,0.0000018095, +0.0000018284,0.0000018479,0.0000018679,0.0000018851,0.0000019021, +0.0000019246,0.0000019468,0.0000019589,0.0000019629,0.0000019611, +0.0000019560,0.0000019538,0.0000019550,0.0000019573,0.0000019590, +0.0000019595,0.0000019591,0.0000019587,0.0000019593,0.0000019631, +0.0000019692,0.0000019769,0.0000019833,0.0000019874,0.0000019891, +0.0000019899,0.0000019906,0.0000019917,0.0000019945,0.0000020001, +0.0000020072,0.0000020119,0.0000020127,0.0000020097,0.0000020050, +0.0000020026,0.0000020032,0.0000020041,0.0000020030,0.0000020008, +0.0000019999,0.0000020011,0.0000020064,0.0000020114,0.0000020165, +0.0000020168,0.0000020137,0.0000020138,0.0000020065,0.0000019993, +0.0000019951,0.0000019937,0.0000019955,0.0000019997,0.0000020046, +0.0000020097,0.0000020173,0.0000020200,0.0000020215,0.0000020191, +0.0000020136,0.0000020039,0.0000019921,0.0000019816,0.0000019758, +0.0000019730,0.0000019644,0.0000019457,0.0000019218,0.0000018975, +0.0000018822,0.0000018770,0.0000018372,0.0000017318,0.0000016977, +0.0000018022,0.0000018918,0.0000019514,0.0000019525,0.0000019608, +0.0000019634,0.0000019660,0.0000019750,0.0000019815,0.0000019758, +0.0000019626,0.0000019543,0.0000019506,0.0000019398,0.0000019273, +0.0000019215,0.0000019260,0.0000019382,0.0000019461,0.0000019503, +0.0000019546,0.0000019518,0.0000019375,0.0000019160,0.0000018950, +0.0000018762,0.0000018670,0.0000018699,0.0000018754,0.0000018757, +0.0000018676,0.0000018573,0.0000018502,0.0000018460,0.0000018457, +0.0000018513,0.0000018636,0.0000018782,0.0000018817,0.0000018720, +0.0000018514,0.0000018376,0.0000018317,0.0000018328,0.0000018406, +0.0000018521,0.0000018628,0.0000018714,0.0000018830,0.0000018897, +0.0000018745,0.0000018519,0.0000018460,0.0000018425,0.0000018300, +0.0000018164,0.0000018063,0.0000018015,0.0000018020,0.0000018087, +0.0000018262,0.0000018426,0.0000018420,0.0000018285,0.0000018054, +0.0000017741,0.0000017500,0.0000017399,0.0000017342,0.0000017296, +0.0000017262,0.0000017228,0.0000017190,0.0000017153,0.0000017119, +0.0000017092,0.0000017064,0.0000017050,0.0000017049,0.0000017015, +0.0000016885,0.0000016760,0.0000016745,0.0000016777,0.0000016775, +0.0000016757,0.0000016755,0.0000016756,0.0000016745,0.0000016710, +0.0000016665,0.0000016671,0.0000016722,0.0000016737,0.0000016661, +0.0000016452,0.0000016193,0.0000016007,0.0000015870,0.0000015800, +0.0000015853,0.0000015945,0.0000016023,0.0000016007,0.0000015907, +0.0000015883,0.0000015888,0.0000015886,0.0000015900,0.0000016090, +0.0000016297,0.0000016451,0.0000016706,0.0000016989,0.0000017132, +0.0000017168,0.0000017197,0.0000017197,0.0000017154,0.0000017173, +0.0000017168,0.0000017054,0.0000016962,0.0000016844,0.0000016686, +0.0000016515,0.0000016396,0.0000016406,0.0000016432,0.0000016404, +0.0000016340,0.0000016315,0.0000016358,0.0000016452,0.0000016515, +0.0000016474,0.0000016490,0.0000016474,0.0000016443,0.0000016416, +0.0000016378,0.0000016323,0.0000016266,0.0000016244,0.0000016208, +0.0000016245,0.0000016420,0.0000016527,0.0000016535,0.0000016538, +0.0000016568,0.0000016613,0.0000016660,0.0000016680,0.0000016672, +0.0000016636,0.0000016556,0.0000016367,0.0000016168,0.0000016126, +0.0000016187,0.0000016211,0.0000016205,0.0000016273,0.0000016417, +0.0000016564,0.0000016636,0.0000016718,0.0000017041,0.0000017525, +0.0000017826,0.0000017913,0.0000017941,0.0000017895,0.0000017625, +0.0000017323,0.0000017180,0.0000017037,0.0000016800,0.0000016645, +0.0000016777,0.0000016969,0.0000016849,0.0000016742,0.0000016470, +0.0000016420,0.0000016938,0.0000017272,0.0000017204,0.0000016677, +0.0000016363,0.0000016248,0.0000016204,0.0000016227,0.0000016260, +0.0000016307,0.0000016315,0.0000016333,0.0000016351,0.0000016385, +0.0000016404,0.0000016344,0.0000016528,0.0000016915,0.0000017100, +0.0000017446,0.0000017650,0.0000017746,0.0000017933,0.0000018026, +0.0000017999,0.0000017770,0.0000017689,0.0000017733,0.0000017459, +0.0000016990,0.0000017170,0.0000017268,0.0000017225,0.0000017211, +0.0000017194,0.0000017124,0.0000017097,0.0000017191,0.0000017203, +0.0000017022,0.0000016810,0.0000016694,0.0000016694,0.0000016788, +0.0000016883,0.0000016904,0.0000016815,0.0000016830,0.0000017128, +0.0000017367,0.0000017424,0.0000017456,0.0000017530,0.0000017619, +0.0000017704,0.0000017754,0.0000017735,0.0000017665,0.0000017623, +0.0000017590,0.0000017510,0.0000017434,0.0000017440,0.0000017477, +0.0000017495,0.0000017590,0.0000017640,0.0000017429,0.0000017047, +0.0000016864,0.0000016812,0.0000016771,0.0000016755,0.0000016756, +0.0000016748,0.0000016708,0.0000016635,0.0000016581,0.0000016589, +0.0000016626,0.0000016683,0.0000016958,0.0000017390,0.0000017700, +0.0000017903,0.0000017948,0.0000018379,0.0000019233,0.0000019576, +0.0000019410,0.0000019227,0.0000019308,0.0000019448,0.0000019468, +0.0000019420,0.0000019299,0.0000019175,0.0000019159,0.0000019203, +0.0000019355,0.0000019519,0.0000019684,0.0000019837,0.0000019920, +0.0000019918,0.0000019884,0.0000019843,0.0000019805,0.0000019776, +0.0000019758,0.0000019754,0.0000019771,0.0000019814,0.0000019872, +0.0000019939,0.0000019993,0.0000019998,0.0000019949,0.0000019737, +0.0000019354,0.0000018963,0.0000018737,0.0000018693,0.0000018704, +0.0000018694,0.0000018691,0.0000018865,0.0000018917,0.0000018647, +0.0000018174,0.0000017933,0.0000017931,0.0000017951,0.0000018002, +0.0000018047,0.0000018046,0.0000018052,0.0000018101,0.0000018183, +0.0000018261,0.0000018314,0.0000018321,0.0000018286,0.0000018241, +0.0000018224,0.0000018244,0.0000018304,0.0000018313,0.0000018232, +0.0000018107,0.0000017977,0.0000017852,0.0000017783,0.0000017962, +0.0000018273,0.0000018357,0.0000018132,0.0000017924,0.0000018022, +0.0000018100,0.0000018338,0.0000018489,0.0000018182,0.0000018152, +0.0000018872,0.0000019404,0.0000019394,0.0000019155,0.0000019053, +0.0000018859,0.0000017856,0.0000016604,0.0000016689,0.0000016764, +0.0000016525,0.0000016126,0.0000015616,0.0000015620,0.0000015706, +0.0000015686,0.0000015706,0.0000015905,0.0000016021,0.0000016053, +0.0000016307,0.0000016647,0.0000016779,0.0000016786,0.0000016810, +0.0000016870,0.0000016999,0.0000017158,0.0000017274,0.0000017224, +0.0000016819,0.0000016415,0.0000016371,0.0000016516,0.0000016563, +0.0000016425,0.0000016141,0.0000015857,0.0000015692,0.0000015555, +0.0000015343,0.0000015162,0.0000015085,0.0000015039,0.0000015013, +0.0000014987,0.0000014972,0.0000014972,0.0000014906,0.0000014678, +0.0000014384,0.0000014252,0.0000014255,0.0000014294,0.0000014273, +0.0000014195,0.0000014107,0.0000014038,0.0000014005,0.0000013982, +0.0000013958,0.0000013945,0.0000013981,0.0000014116,0.0000014252, +0.0000014307,0.0000014300,0.0000014289,0.0000014271,0.0000014248, +0.0000014251,0.0000014275,0.0000014332,0.0000014391,0.0000014438, +0.0000014459,0.0000014452,0.0000014422,0.0000014420,0.0000014488, +0.0000014621,0.0000014773,0.0000014913,0.0000015032,0.0000015123, +0.0000015173,0.0000015204,0.0000015222,0.0000015224,0.0000015220, +0.0000015219,0.0000015226,0.0000015249,0.0000015278,0.0000015303, +0.0000015317,0.0000015329,0.0000015350,0.0000015409,0.0000015499, +0.0000015590,0.0000015663,0.0000015728,0.0000015783,0.0000015809, +0.0000015827,0.0000015843,0.0000015850,0.0000015845,0.0000015830, +0.0000015822,0.0000015812,0.0000015788,0.0000015741,0.0000015680, +0.0000015635,0.0000015599,0.0000015579,0.0000015580,0.0000015601, +0.0000015624,0.0000015648,0.0000015679,0.0000015706,0.0000015724, +0.0000015730,0.0000015713,0.0000015675,0.0000015620,0.0000015563, +0.0000015521,0.0000015502,0.0000015498,0.0000015491,0.0000015485, +0.0000015497,0.0000015529,0.0000015592,0.0000015698,0.0000015805, +0.0000015885,0.0000015966,0.0000016030,0.0000016015,0.0000016007, +0.0000015976,0.0000015941,0.0000015912,0.0000015899,0.0000015926, +0.0000016004,0.0000016117,0.0000016222,0.0000016249,0.0000016156, +0.0000016058,0.0000016060,0.0000016189,0.0000016292,0.0000016208, +0.0000015949,0.0000015829,0.0000015848,0.0000015941,0.0000016115, +0.0000016228,0.0000016230,0.0000016241,0.0000016348,0.0000016519, +0.0000016647,0.0000016698,0.0000016713,0.0000016734,0.0000016784, +0.0000016853,0.0000016929,0.0000016998,0.0000017046,0.0000017085, +0.0000017121,0.0000017162,0.0000017214,0.0000017254,0.0000017275, +0.0000017284,0.0000017289,0.0000017295,0.0000017260,0.0000017204, +0.0000017243,0.0000017464,0.0000017752,0.0000018003,0.0000018235, +0.0000018479,0.0000018723,0.0000018940,0.0000019168,0.0000019422, +0.0000019587,0.0000019629,0.0000019629,0.0000019628,0.0000019650, +0.0000019684,0.0000019703,0.0000019714,0.0000019723,0.0000019722, +0.0000019705,0.0000019682,0.0000019678,0.0000019712,0.0000019765, +0.0000019812,0.0000019849,0.0000019871,0.0000019884,0.0000019893, +0.0000019938,0.0000020049,0.0000020175,0.0000020257,0.0000020284, +0.0000020260,0.0000020215,0.0000020161,0.0000020095,0.0000020010, +0.0000019906,0.0000019798,0.0000019729,0.0000019746,0.0000019870, +0.0000020026,0.0000020121,0.0000020116,0.0000020007,0.0000019839, +0.0000019674,0.0000019554,0.0000019489,0.0000019475,0.0000019499, +0.0000019556,0.0000019641,0.0000019748,0.0000019882,0.0000020036, +0.0000020149,0.0000020201,0.0000020214,0.0000020195,0.0000020126, +0.0000019994,0.0000019853,0.0000019771,0.0000019752,0.0000019696, +0.0000019545,0.0000019300,0.0000019037,0.0000018872,0.0000018776, +0.0000018101,0.0000017030,0.0000017541,0.0000018637,0.0000019403, +0.0000019417,0.0000019423,0.0000019472,0.0000019569,0.0000019686, +0.0000019741,0.0000019691,0.0000019591,0.0000019528,0.0000019409, +0.0000019124,0.0000018880,0.0000018836,0.0000018950,0.0000019170, +0.0000019347,0.0000019438,0.0000019462,0.0000019459,0.0000019403, +0.0000019259,0.0000019049,0.0000018851,0.0000018705,0.0000018639, +0.0000018665,0.0000018734,0.0000018743,0.0000018731,0.0000018719, +0.0000018720,0.0000018737,0.0000018767,0.0000018787,0.0000018778, +0.0000018658,0.0000018489,0.0000018340,0.0000018232,0.0000018184, +0.0000018212,0.0000018316,0.0000018442,0.0000018568,0.0000018676, +0.0000018809,0.0000018891,0.0000018787,0.0000018551,0.0000018484, +0.0000018475,0.0000018374,0.0000018221,0.0000018099,0.0000018046, +0.0000018061,0.0000018172,0.0000018354,0.0000018437,0.0000018390, +0.0000018207,0.0000017895,0.0000017569,0.0000017387,0.0000017300, +0.0000017242,0.0000017212,0.0000017192,0.0000017162,0.0000017114, +0.0000017051,0.0000017003,0.0000016986,0.0000016998,0.0000017018, +0.0000017028,0.0000016971,0.0000016838,0.0000016750,0.0000016764, +0.0000016795,0.0000016784,0.0000016745,0.0000016725,0.0000016727, +0.0000016724,0.0000016685,0.0000016658,0.0000016685,0.0000016720, +0.0000016711,0.0000016610,0.0000016377,0.0000016127,0.0000015963, +0.0000015838,0.0000015816,0.0000015890,0.0000015974,0.0000016015, +0.0000015943,0.0000015882,0.0000015883,0.0000015887,0.0000015877, +0.0000015938,0.0000016182,0.0000016337,0.0000016530,0.0000016825, +0.0000017063,0.0000017131,0.0000017157,0.0000017196,0.0000017186, +0.0000017167,0.0000017190,0.0000017171,0.0000017082,0.0000017003, +0.0000016855,0.0000016685,0.0000016502,0.0000016429,0.0000016455, +0.0000016447,0.0000016415,0.0000016383,0.0000016337,0.0000016346, +0.0000016415,0.0000016389,0.0000016438,0.0000016463,0.0000016450, +0.0000016429,0.0000016392,0.0000016335,0.0000016272,0.0000016239, +0.0000016206,0.0000016239,0.0000016400,0.0000016507,0.0000016494, +0.0000016473,0.0000016507,0.0000016567,0.0000016613,0.0000016660, +0.0000016690,0.0000016684,0.0000016622,0.0000016449,0.0000016212, +0.0000016120,0.0000016145,0.0000016172,0.0000016173,0.0000016240, +0.0000016385,0.0000016548,0.0000016639,0.0000016696,0.0000016932, +0.0000017373,0.0000017708,0.0000017830,0.0000017841,0.0000017713, +0.0000017425,0.0000017211,0.0000017106,0.0000016935,0.0000016679, +0.0000016617,0.0000016821,0.0000016882,0.0000016714,0.0000016602, +0.0000016313,0.0000016460,0.0000016994,0.0000017236,0.0000017010, +0.0000016498,0.0000016284,0.0000016156,0.0000016095,0.0000016103, +0.0000016158,0.0000016234,0.0000016262,0.0000016274,0.0000016267, +0.0000016281,0.0000016343,0.0000016341,0.0000016444,0.0000016850, +0.0000017066,0.0000017400,0.0000017645,0.0000017725,0.0000017924, +0.0000018016,0.0000017896,0.0000017722,0.0000017698,0.0000017721, +0.0000017311,0.0000016982,0.0000017220,0.0000017247,0.0000017209, +0.0000017199,0.0000017185,0.0000017115,0.0000017121,0.0000017210, +0.0000017198,0.0000016978,0.0000016773,0.0000016679,0.0000016713, +0.0000016814,0.0000016884,0.0000016863,0.0000016752,0.0000016820, +0.0000017114,0.0000017330,0.0000017393,0.0000017420,0.0000017460, +0.0000017516,0.0000017579,0.0000017612,0.0000017603,0.0000017593, +0.0000017571,0.0000017509,0.0000017445,0.0000017435,0.0000017465, +0.0000017490,0.0000017585,0.0000017630,0.0000017419,0.0000017032, +0.0000016842,0.0000016794,0.0000016758,0.0000016736,0.0000016720, +0.0000016708,0.0000016687,0.0000016645,0.0000016601,0.0000016607, +0.0000016642,0.0000016653,0.0000016773,0.0000017175,0.0000017569, +0.0000017826,0.0000017935,0.0000018096,0.0000018869,0.0000019513, +0.0000019603,0.0000019388,0.0000019222,0.0000019196,0.0000019204, +0.0000019195,0.0000019176,0.0000019207,0.0000019274,0.0000019358, +0.0000019466,0.0000019613,0.0000019794,0.0000019964,0.0000020048, +0.0000020040,0.0000019999,0.0000019959,0.0000019930,0.0000019916, +0.0000019924,0.0000019950,0.0000019970,0.0000019997,0.0000020019, +0.0000020023,0.0000019996,0.0000019878,0.0000019638,0.0000019329, +0.0000019055,0.0000018875,0.0000018790,0.0000018751,0.0000018699, +0.0000018749,0.0000018983,0.0000018929,0.0000018441,0.0000018040, +0.0000017936,0.0000017923,0.0000017945,0.0000017996,0.0000018010, +0.0000017989,0.0000018007,0.0000018067,0.0000018125,0.0000018149, +0.0000018158,0.0000018169,0.0000018163,0.0000018141,0.0000018142, +0.0000018171,0.0000018218,0.0000018287,0.0000018310,0.0000018270, +0.0000018172,0.0000018022,0.0000017975,0.0000018142,0.0000018400, +0.0000018388,0.0000018132,0.0000017859,0.0000017997,0.0000018078, +0.0000018189,0.0000018469,0.0000018422,0.0000018069,0.0000018289, +0.0000019048,0.0000019404,0.0000019360,0.0000019191,0.0000019095, +0.0000018817,0.0000017661,0.0000016577,0.0000016740,0.0000016696, +0.0000016400,0.0000015879,0.0000015624,0.0000015670,0.0000015658, +0.0000015659,0.0000015864,0.0000016024,0.0000016039,0.0000016283, +0.0000016635,0.0000016753,0.0000016777,0.0000016794,0.0000016836, +0.0000016986,0.0000017171,0.0000017275,0.0000017169,0.0000016733, +0.0000016430,0.0000016447,0.0000016576,0.0000016551,0.0000016329, +0.0000016021,0.0000015783,0.0000015656,0.0000015474,0.0000015263, +0.0000015150,0.0000015103,0.0000015065,0.0000015036,0.0000015005, +0.0000015001,0.0000014966,0.0000014778,0.0000014480,0.0000014323, +0.0000014306,0.0000014305,0.0000014242,0.0000014135,0.0000014053, +0.0000014031,0.0000014044,0.0000014063,0.0000014076,0.0000014075, +0.0000014048,0.0000014059,0.0000014181,0.0000014342,0.0000014433, +0.0000014443,0.0000014417,0.0000014374,0.0000014315,0.0000014268, +0.0000014257,0.0000014275,0.0000014312,0.0000014355,0.0000014391, +0.0000014412,0.0000014440,0.0000014454,0.0000014453,0.0000014442, +0.0000014452,0.0000014480,0.0000014534,0.0000014638,0.0000014788, +0.0000014945,0.0000015073,0.0000015164,0.0000015223,0.0000015234, +0.0000015250,0.0000015271,0.0000015296,0.0000015325,0.0000015341, +0.0000015341,0.0000015331,0.0000015343,0.0000015366,0.0000015401, +0.0000015435,0.0000015473,0.0000015521,0.0000015576,0.0000015627, +0.0000015672,0.0000015717,0.0000015760,0.0000015800,0.0000015842, +0.0000015867,0.0000015889,0.0000015892,0.0000015880,0.0000015844, +0.0000015787,0.0000015718,0.0000015635,0.0000015571,0.0000015532, +0.0000015487,0.0000015458,0.0000015471,0.0000015483,0.0000015492, +0.0000015494,0.0000015486,0.0000015470,0.0000015454,0.0000015455, +0.0000015461,0.0000015473,0.0000015474,0.0000015456,0.0000015440, +0.0000015411,0.0000015422,0.0000015459,0.0000015519,0.0000015596, +0.0000015715,0.0000015834,0.0000015917,0.0000015991,0.0000015986, +0.0000015968,0.0000015933,0.0000015903,0.0000015892,0.0000015912, +0.0000015992,0.0000016123,0.0000016242,0.0000016216,0.0000016080, +0.0000016031,0.0000016125,0.0000016307,0.0000016301,0.0000016038, +0.0000015826,0.0000015821,0.0000015918,0.0000016114,0.0000016228, +0.0000016231,0.0000016231,0.0000016276,0.0000016347,0.0000016390, +0.0000016393,0.0000016377,0.0000016374,0.0000016409,0.0000016484, +0.0000016585,0.0000016697,0.0000016812,0.0000016918,0.0000017009, +0.0000017075,0.0000017123,0.0000017161,0.0000017180,0.0000017182, +0.0000017188,0.0000017216,0.0000017240,0.0000017240,0.0000017228, +0.0000017247,0.0000017378,0.0000017635,0.0000017943,0.0000018241, +0.0000018537,0.0000018833,0.0000019096,0.0000019341,0.0000019540, +0.0000019627,0.0000019629,0.0000019638,0.0000019637,0.0000019634, +0.0000019649,0.0000019671,0.0000019695,0.0000019719,0.0000019745, +0.0000019758,0.0000019764,0.0000019780,0.0000019801,0.0000019826, +0.0000019843,0.0000019857,0.0000019883,0.0000019956,0.0000020085, +0.0000020210,0.0000020287,0.0000020299,0.0000020218,0.0000020124, +0.0000020032,0.0000019919,0.0000019760,0.0000019599,0.0000019473, +0.0000019402,0.0000019447,0.0000019629,0.0000019841,0.0000019905, +0.0000019812,0.0000019598,0.0000019383,0.0000019242,0.0000019182, +0.0000019176,0.0000019179,0.0000019199,0.0000019243,0.0000019308, +0.0000019386,0.0000019487,0.0000019637,0.0000019815,0.0000020000, +0.0000020137,0.0000020187,0.0000020193,0.0000020159,0.0000020057, +0.0000019904,0.0000019793,0.0000019757,0.0000019750,0.0000019619, +0.0000019351,0.0000019056,0.0000018889,0.0000018594,0.0000017560, +0.0000017160,0.0000018399,0.0000019195,0.0000019386,0.0000019310, +0.0000019331,0.0000019443,0.0000019589,0.0000019656,0.0000019629, +0.0000019572,0.0000019474,0.0000019177,0.0000018739,0.0000018535, +0.0000018538,0.0000018622,0.0000018814,0.0000019069,0.0000019309, +0.0000019409,0.0000019405,0.0000019381,0.0000019324,0.0000019165, +0.0000018961,0.0000018808,0.0000018684,0.0000018619,0.0000018616, +0.0000018642,0.0000018680,0.0000018724,0.0000018746,0.0000018744, +0.0000018712,0.0000018650,0.0000018558,0.0000018446,0.0000018330, +0.0000018204,0.0000018085,0.0000018040,0.0000018093,0.0000018223, +0.0000018365,0.0000018509,0.0000018637,0.0000018780,0.0000018902, +0.0000018827,0.0000018594,0.0000018495,0.0000018505,0.0000018438, +0.0000018279,0.0000018140,0.0000018092,0.0000018119,0.0000018259, +0.0000018419,0.0000018455,0.0000018345,0.0000018090,0.0000017724, +0.0000017433,0.0000017286,0.0000017217,0.0000017195,0.0000017195, +0.0000017179,0.0000017143,0.0000017084,0.0000017012,0.0000016944, +0.0000016918,0.0000016938,0.0000016979,0.0000016992,0.0000016923, +0.0000016806,0.0000016755,0.0000016775,0.0000016795,0.0000016777, +0.0000016728,0.0000016702,0.0000016703,0.0000016695,0.0000016667, +0.0000016671,0.0000016694,0.0000016698,0.0000016668,0.0000016547, +0.0000016301,0.0000016073,0.0000015925,0.0000015830,0.0000015848, +0.0000015924,0.0000015994,0.0000015970,0.0000015895,0.0000015881, +0.0000015888,0.0000015883,0.0000015870,0.0000016020,0.0000016250, +0.0000016381,0.0000016627,0.0000016933,0.0000017087,0.0000017114, +0.0000017154,0.0000017188,0.0000017172,0.0000017170,0.0000017191, +0.0000017181,0.0000017129,0.0000017041,0.0000016874,0.0000016679, +0.0000016502,0.0000016458,0.0000016440,0.0000016358,0.0000016347, +0.0000016366,0.0000016364,0.0000016359,0.0000016376,0.0000016377, +0.0000016411,0.0000016431,0.0000016426,0.0000016393,0.0000016346, +0.0000016288,0.0000016245,0.0000016210,0.0000016224,0.0000016375, +0.0000016493,0.0000016431,0.0000016324,0.0000016357,0.0000016484, +0.0000016569,0.0000016619,0.0000016671,0.0000016685,0.0000016642, +0.0000016495,0.0000016268,0.0000016127,0.0000016114,0.0000016136, +0.0000016155,0.0000016219,0.0000016355,0.0000016526,0.0000016634, +0.0000016681,0.0000016853,0.0000017225,0.0000017547,0.0000017672, +0.0000017661,0.0000017500,0.0000017275,0.0000017132,0.0000017020, +0.0000016801,0.0000016577,0.0000016624,0.0000016838,0.0000016761, +0.0000016602,0.0000016421,0.0000016203,0.0000016557,0.0000017016, +0.0000017139,0.0000016791,0.0000016363,0.0000016211,0.0000016057, +0.0000015987,0.0000016018,0.0000016113,0.0000016197,0.0000016249, +0.0000016264,0.0000016247,0.0000016228,0.0000016248,0.0000016317, +0.0000016388,0.0000016768,0.0000017040,0.0000017351,0.0000017637, +0.0000017706,0.0000017869,0.0000017942,0.0000017806,0.0000017711, +0.0000017704,0.0000017674,0.0000017164,0.0000017015,0.0000017237, +0.0000017221,0.0000017192,0.0000017192,0.0000017174,0.0000017115, +0.0000017165,0.0000017258,0.0000017179,0.0000016921,0.0000016729, +0.0000016666,0.0000016742,0.0000016831,0.0000016857,0.0000016793, +0.0000016702,0.0000016784,0.0000017035,0.0000017237,0.0000017339, +0.0000017395,0.0000017424,0.0000017458,0.0000017512,0.0000017553, +0.0000017560,0.0000017539,0.0000017504,0.0000017463,0.0000017442, +0.0000017453,0.0000017483,0.0000017583,0.0000017629,0.0000017419, +0.0000017021,0.0000016817,0.0000016771,0.0000016745,0.0000016713, +0.0000016679,0.0000016666,0.0000016664,0.0000016651,0.0000016648, +0.0000016675,0.0000016711,0.0000016693,0.0000016687,0.0000016955, +0.0000017400,0.0000017719,0.0000017913,0.0000017951,0.0000018473, +0.0000019279,0.0000019620,0.0000019633,0.0000019526,0.0000019447, +0.0000019447,0.0000019480,0.0000019524,0.0000019565,0.0000019601, +0.0000019617,0.0000019638,0.0000019721,0.0000019865,0.0000019988, +0.0000020047,0.0000020024,0.0000019938,0.0000019870,0.0000019861, +0.0000019884,0.0000019933,0.0000019982,0.0000020020,0.0000020044, +0.0000020048,0.0000020018,0.0000019896,0.0000019694,0.0000019452, +0.0000019220,0.0000019036,0.0000018906,0.0000018806,0.0000018766, +0.0000018905,0.0000019057,0.0000018817,0.0000018306,0.0000018040, +0.0000017973,0.0000017945,0.0000017968,0.0000018012,0.0000018002, +0.0000017966,0.0000017981,0.0000018018,0.0000017996,0.0000017934, +0.0000017884,0.0000017874,0.0000017913,0.0000017977,0.0000018047, +0.0000018126,0.0000018170,0.0000018195,0.0000018268,0.0000018316, +0.0000018298,0.0000018237,0.0000018218,0.0000018335,0.0000018464, +0.0000018408,0.0000018136,0.0000017798,0.0000017924,0.0000018103, +0.0000018107,0.0000018356,0.0000018506,0.0000018291,0.0000018023, +0.0000018475,0.0000019172,0.0000019365,0.0000019316,0.0000019197, +0.0000019108,0.0000018735,0.0000017444,0.0000016551,0.0000016752, +0.0000016617,0.0000016255,0.0000015725,0.0000015660,0.0000015685, +0.0000015674,0.0000015839,0.0000016044,0.0000016074,0.0000016279, +0.0000016622,0.0000016736,0.0000016737,0.0000016761,0.0000016796, +0.0000016956,0.0000017174,0.0000017267,0.0000017119,0.0000016684, +0.0000016437,0.0000016515,0.0000016603,0.0000016514,0.0000016231, +0.0000015926,0.0000015743,0.0000015609,0.0000015390,0.0000015222, +0.0000015162,0.0000015114,0.0000015081,0.0000015050,0.0000015030, +0.0000015012,0.0000014897,0.0000014612,0.0000014394,0.0000014356, +0.0000014352,0.0000014261,0.0000014111,0.0000014004,0.0000013991, +0.0000014058,0.0000014145,0.0000014202,0.0000014257,0.0000014327, +0.0000014392,0.0000014456,0.0000014568,0.0000014726,0.0000014818, +0.0000014815,0.0000014750,0.0000014659,0.0000014554,0.0000014459, +0.0000014404,0.0000014394,0.0000014417,0.0000014433,0.0000014430, +0.0000014409,0.0000014383,0.0000014385,0.0000014417,0.0000014445, +0.0000014444,0.0000014417,0.0000014367,0.0000014337,0.0000014353, +0.0000014419,0.0000014512,0.0000014610,0.0000014719,0.0000014837, +0.0000014956,0.0000015075,0.0000015185,0.0000015277,0.0000015345, +0.0000015354,0.0000015365,0.0000015369,0.0000015381,0.0000015389, +0.0000015404,0.0000015411,0.0000015416,0.0000015419,0.0000015433, +0.0000015462,0.0000015495,0.0000015532,0.0000015565,0.0000015590, +0.0000015618,0.0000015664,0.0000015731,0.0000015809,0.0000015867, +0.0000015890,0.0000015885,0.0000015862,0.0000015826,0.0000015761, +0.0000015665,0.0000015546,0.0000015452,0.0000015415,0.0000015368, +0.0000015358,0.0000015381,0.0000015397,0.0000015403,0.0000015403, +0.0000015399,0.0000015403,0.0000015412,0.0000015408,0.0000015384, +0.0000015354,0.0000015341,0.0000015350,0.0000015374,0.0000015415, +0.0000015480,0.0000015565,0.0000015684,0.0000015804,0.0000015888, +0.0000015943,0.0000015931,0.0000015912,0.0000015886,0.0000015877, +0.0000015912,0.0000016014,0.0000016162,0.0000016220,0.0000016133, +0.0000016036,0.0000016105,0.0000016320,0.0000016362,0.0000016125, +0.0000015853,0.0000015814,0.0000015912,0.0000016120,0.0000016227, +0.0000016228,0.0000016224,0.0000016237,0.0000016251,0.0000016252, +0.0000016235,0.0000016201,0.0000016172,0.0000016168,0.0000016198, +0.0000016254,0.0000016330,0.0000016422,0.0000016526,0.0000016627, +0.0000016714,0.0000016788,0.0000016841,0.0000016860,0.0000016845, +0.0000016820,0.0000016815,0.0000016846,0.0000016926,0.0000017035, +0.0000017140,0.0000017219,0.0000017323,0.0000017568,0.0000017961, +0.0000018355,0.0000018681,0.0000018979,0.0000019234,0.0000019417, +0.0000019551,0.0000019615,0.0000019630,0.0000019638,0.0000019655, +0.0000019672,0.0000019694,0.0000019713,0.0000019719,0.0000019732, +0.0000019770,0.0000019821,0.0000019864,0.0000019884,0.0000019891, +0.0000019899,0.0000019929,0.0000020006,0.0000020109,0.0000020202, +0.0000020260,0.0000020191,0.0000020006,0.0000019865,0.0000019775, +0.0000019659,0.0000019489,0.0000019331,0.0000019253,0.0000019255, +0.0000019299,0.0000019444,0.0000019611,0.0000019601,0.0000019429, +0.0000019244,0.0000019135,0.0000019141,0.0000019180,0.0000019216, +0.0000019225,0.0000019218,0.0000019203,0.0000019221,0.0000019243, +0.0000019286,0.0000019353,0.0000019455,0.0000019641,0.0000019867, +0.0000020047,0.0000020142,0.0000020171,0.0000020168,0.0000020101, +0.0000019959,0.0000019822,0.0000019781,0.0000019780,0.0000019649, +0.0000019339,0.0000019034,0.0000018808,0.0000018117,0.0000017169, +0.0000018031,0.0000018993,0.0000019357,0.0000019206,0.0000019188, +0.0000019288,0.0000019473,0.0000019552,0.0000019551,0.0000019528, +0.0000019356,0.0000018900,0.0000018472,0.0000018399,0.0000018392, +0.0000018415,0.0000018526,0.0000018732,0.0000019016,0.0000019242, +0.0000019344,0.0000019363,0.0000019353,0.0000019272,0.0000019094, +0.0000018929,0.0000018817,0.0000018725,0.0000018643,0.0000018596, +0.0000018590,0.0000018596,0.0000018590,0.0000018570,0.0000018526, +0.0000018463,0.0000018405,0.0000018339,0.0000018240,0.0000018114, +0.0000017998,0.0000017947,0.0000018000,0.0000018144,0.0000018297, +0.0000018453,0.0000018602,0.0000018759,0.0000018910,0.0000018882, +0.0000018637,0.0000018500,0.0000018519,0.0000018486,0.0000018332, +0.0000018179,0.0000018127,0.0000018179,0.0000018339,0.0000018468, +0.0000018445,0.0000018274,0.0000017946,0.0000017568,0.0000017324, +0.0000017218,0.0000017185,0.0000017188,0.0000017185,0.0000017160, +0.0000017121,0.0000017072,0.0000017005,0.0000016921,0.0000016864, +0.0000016876,0.0000016928,0.0000016940,0.0000016868,0.0000016779, +0.0000016753,0.0000016762,0.0000016778,0.0000016766,0.0000016723, +0.0000016695,0.0000016688,0.0000016682,0.0000016682,0.0000016693, +0.0000016687,0.0000016660,0.0000016614,0.0000016477,0.0000016232, +0.0000016030,0.0000015895,0.0000015843,0.0000015882,0.0000015954, +0.0000015972,0.0000015912,0.0000015877,0.0000015890,0.0000015890, +0.0000015873,0.0000015895,0.0000016122,0.0000016287,0.0000016438, +0.0000016736,0.0000017003,0.0000017075,0.0000017100,0.0000017148, +0.0000017168,0.0000017154,0.0000017158,0.0000017192,0.0000017209, +0.0000017182,0.0000017082,0.0000016891,0.0000016668,0.0000016510, +0.0000016468,0.0000016344,0.0000016196,0.0000016206,0.0000016321, +0.0000016385,0.0000016356,0.0000016376,0.0000016380,0.0000016391, +0.0000016401,0.0000016390,0.0000016362,0.0000016316,0.0000016266, +0.0000016225,0.0000016222,0.0000016345,0.0000016486,0.0000016375, +0.0000016144,0.0000016125,0.0000016307,0.0000016495,0.0000016585, +0.0000016638,0.0000016667,0.0000016636,0.0000016527,0.0000016335, +0.0000016149,0.0000016087,0.0000016108,0.0000016157,0.0000016217, +0.0000016331,0.0000016506,0.0000016626,0.0000016674,0.0000016802, +0.0000017101,0.0000017378,0.0000017484,0.0000017452,0.0000017323, +0.0000017176,0.0000017061,0.0000016907,0.0000016648,0.0000016512, +0.0000016672,0.0000016814,0.0000016621,0.0000016491,0.0000016219, +0.0000016178,0.0000016648,0.0000017002,0.0000017016,0.0000016586, +0.0000016267,0.0000016130,0.0000015950,0.0000015901,0.0000015994, +0.0000016097,0.0000016177,0.0000016253,0.0000016294,0.0000016299, +0.0000016241,0.0000016194,0.0000016255,0.0000016350,0.0000016682, +0.0000017016,0.0000017303,0.0000017620,0.0000017694,0.0000017799, +0.0000017838,0.0000017761,0.0000017708,0.0000017700,0.0000017593, +0.0000017044,0.0000017044,0.0000017224,0.0000017190,0.0000017180, +0.0000017194,0.0000017163,0.0000017155,0.0000017253,0.0000017287, +0.0000017122,0.0000016850,0.0000016679,0.0000016670,0.0000016774, +0.0000016819,0.0000016790,0.0000016726,0.0000016666,0.0000016722, +0.0000016890,0.0000017060,0.0000017218,0.0000017345,0.0000017403, +0.0000017443,0.0000017493,0.0000017514,0.0000017501,0.0000017492, +0.0000017485,0.0000017460,0.0000017447,0.0000017470,0.0000017581, +0.0000017639,0.0000017433,0.0000017026,0.0000016799,0.0000016747, +0.0000016730,0.0000016688,0.0000016633,0.0000016617,0.0000016628, +0.0000016647,0.0000016696,0.0000016763,0.0000016799,0.0000016774, +0.0000016693,0.0000016782,0.0000017198,0.0000017587,0.0000017849, +0.0000017931,0.0000018128,0.0000018921,0.0000019500,0.0000019658, +0.0000019700,0.0000019737,0.0000019760,0.0000019772,0.0000019782, +0.0000019801,0.0000019830,0.0000019836,0.0000019844,0.0000019863, +0.0000019918,0.0000019978,0.0000020014,0.0000019982,0.0000019894, +0.0000019860,0.0000019887,0.0000019946,0.0000019995,0.0000020030, +0.0000020031,0.0000020005,0.0000019952,0.0000019841,0.0000019677, +0.0000019486,0.0000019290,0.0000019118,0.0000018989,0.0000018933, +0.0000018969,0.0000019145,0.0000019159,0.0000018716,0.0000018232, +0.0000018063,0.0000018019,0.0000017981,0.0000018005,0.0000018021, +0.0000017992,0.0000017970,0.0000017979,0.0000017961,0.0000017881, +0.0000017809,0.0000017754,0.0000017723,0.0000017722,0.0000017793, +0.0000017914,0.0000018048,0.0000018136,0.0000018145,0.0000018166, +0.0000018243,0.0000018293,0.0000018287,0.0000018335,0.0000018421, +0.0000018454,0.0000018341,0.0000018116,0.0000017784,0.0000017814, +0.0000018131,0.0000018080,0.0000018241,0.0000018495,0.0000018480, +0.0000018169,0.0000018064,0.0000018644,0.0000019202,0.0000019325, +0.0000019208,0.0000019141,0.0000019091,0.0000018562,0.0000017124, +0.0000016571,0.0000016739,0.0000016517,0.0000016088,0.0000015714, +0.0000015706,0.0000015711,0.0000015828,0.0000016043,0.0000016067, +0.0000016251,0.0000016607,0.0000016738,0.0000016722,0.0000016712, +0.0000016741,0.0000016916,0.0000017170,0.0000017268,0.0000017086, +0.0000016641,0.0000016464,0.0000016567,0.0000016620,0.0000016459, +0.0000016140,0.0000015861,0.0000015724,0.0000015547,0.0000015329, +0.0000015229,0.0000015175,0.0000015122,0.0000015091,0.0000015063, +0.0000015058,0.0000014998,0.0000014761,0.0000014491,0.0000014416, +0.0000014405,0.0000014314,0.0000014153,0.0000014020,0.0000014011, +0.0000014067,0.0000014186,0.0000014322,0.0000014492,0.0000014691, +0.0000014861,0.0000014972,0.0000015041,0.0000015104,0.0000015206, +0.0000015303,0.0000015343,0.0000015307,0.0000015206,0.0000015072, +0.0000014927,0.0000014820,0.0000014771,0.0000014784,0.0000014808, +0.0000014798,0.0000014744,0.0000014649,0.0000014530,0.0000014439, +0.0000014423,0.0000014423,0.0000014415,0.0000014375,0.0000014322, +0.0000014277,0.0000014262,0.0000014283,0.0000014317,0.0000014344, +0.0000014377,0.0000014430,0.0000014505,0.0000014609,0.0000014725, +0.0000014838,0.0000014937,0.0000015016,0.0000015080,0.0000015140, +0.0000015209,0.0000015286,0.0000015362,0.0000015413,0.0000015414, +0.0000015416,0.0000015436,0.0000015450,0.0000015471,0.0000015491, +0.0000015488,0.0000015466,0.0000015463,0.0000015485,0.0000015521, +0.0000015566,0.0000015626,0.0000015700,0.0000015782,0.0000015849, +0.0000015865,0.0000015879,0.0000015854,0.0000015783,0.0000015684, +0.0000015567,0.0000015439,0.0000015362,0.0000015330,0.0000015294, +0.0000015271,0.0000015255,0.0000015241,0.0000015244,0.0000015252, +0.0000015247,0.0000015232,0.0000015219,0.0000015222,0.0000015239, +0.0000015276,0.0000015321,0.0000015382,0.0000015464,0.0000015558, +0.0000015674,0.0000015788,0.0000015870,0.0000015902,0.0000015879, +0.0000015869,0.0000015877,0.0000015937,0.0000016067,0.0000016195, +0.0000016164,0.0000016080,0.0000016119,0.0000016314,0.0000016385, +0.0000016200,0.0000015908,0.0000015820,0.0000015926,0.0000016140, +0.0000016235,0.0000016233,0.0000016222,0.0000016218,0.0000016216, +0.0000016210,0.0000016193,0.0000016161,0.0000016118,0.0000016089, +0.0000016084,0.0000016094,0.0000016113,0.0000016147,0.0000016196, +0.0000016253,0.0000016317,0.0000016383,0.0000016430,0.0000016438, +0.0000016412,0.0000016374,0.0000016347,0.0000016348,0.0000016404, +0.0000016544,0.0000016760,0.0000017006,0.0000017195,0.0000017342, +0.0000017612,0.0000018075,0.0000018519,0.0000018819,0.0000019069, +0.0000019259,0.0000019347,0.0000019434,0.0000019500,0.0000019545, +0.0000019595,0.0000019650,0.0000019702,0.0000019745,0.0000019766, +0.0000019759,0.0000019772,0.0000019835,0.0000019907,0.0000019960, +0.0000019988,0.0000020017,0.0000020065,0.0000020123,0.0000020186, +0.0000020207,0.0000020047,0.0000019803,0.0000019691,0.0000019615, +0.0000019465,0.0000019277,0.0000019189,0.0000019232,0.0000019297, +0.0000019312,0.0000019339,0.0000019393,0.0000019344,0.0000019192, +0.0000019090,0.0000019108,0.0000019236,0.0000019333,0.0000019390, +0.0000019429,0.0000019443,0.0000019408,0.0000019324,0.0000019256, +0.0000019250,0.0000019270,0.0000019314,0.0000019372,0.0000019523, +0.0000019778,0.0000019975,0.0000020084,0.0000020151,0.0000020167, +0.0000020133,0.0000019999,0.0000019854,0.0000019799,0.0000019793, +0.0000019618,0.0000019255,0.0000018943,0.0000018420,0.0000017505, +0.0000017645,0.0000018850,0.0000019267,0.0000019152,0.0000019075, +0.0000019162,0.0000019357,0.0000019446,0.0000019446,0.0000019420, +0.0000019184,0.0000018670,0.0000018306,0.0000018264,0.0000018201, +0.0000018196,0.0000018280,0.0000018448,0.0000018668,0.0000018902, +0.0000019137,0.0000019303,0.0000019344,0.0000019309,0.0000019207, +0.0000019060,0.0000018939,0.0000018859,0.0000018774,0.0000018690, +0.0000018633,0.0000018593,0.0000018562,0.0000018520,0.0000018479, +0.0000018428,0.0000018378,0.0000018305,0.0000018210,0.0000018098, +0.0000017977,0.0000017896,0.0000017933,0.0000018075,0.0000018232, +0.0000018406,0.0000018585,0.0000018749,0.0000018910,0.0000018904, +0.0000018680,0.0000018507,0.0000018518,0.0000018511,0.0000018376, +0.0000018211,0.0000018152,0.0000018239,0.0000018407,0.0000018470, +0.0000018405,0.0000018179,0.0000017801,0.0000017440,0.0000017247, +0.0000017179,0.0000017168,0.0000017158,0.0000017124,0.0000017083, +0.0000017056,0.0000017037,0.0000016988,0.0000016900,0.0000016822, +0.0000016813,0.0000016855,0.0000016864,0.0000016810,0.0000016749, +0.0000016727,0.0000016731,0.0000016757,0.0000016767,0.0000016741, +0.0000016712,0.0000016706,0.0000016712,0.0000016722,0.0000016714, +0.0000016661,0.0000016610,0.0000016558,0.0000016408,0.0000016174, +0.0000015992,0.0000015874,0.0000015860,0.0000015918,0.0000015957, +0.0000015920,0.0000015874,0.0000015886,0.0000015893,0.0000015888, +0.0000015865,0.0000015964,0.0000016203,0.0000016307,0.0000016514, +0.0000016844,0.0000017025,0.0000017055,0.0000017087,0.0000017133, +0.0000017142,0.0000017134,0.0000017156,0.0000017209,0.0000017249, +0.0000017231,0.0000017113,0.0000016892,0.0000016652,0.0000016522, +0.0000016431,0.0000016204,0.0000016032,0.0000016083,0.0000016249, +0.0000016141,0.0000016311,0.0000016380,0.0000016387,0.0000016380, +0.0000016385,0.0000016384,0.0000016358,0.0000016299,0.0000016248, +0.0000016229,0.0000016317,0.0000016474,0.0000016358,0.0000016022, +0.0000015917,0.0000016062,0.0000016343,0.0000016534,0.0000016608, +0.0000016638,0.0000016625,0.0000016558,0.0000016408,0.0000016182, +0.0000016076,0.0000016092,0.0000016169,0.0000016231,0.0000016329, +0.0000016493,0.0000016616,0.0000016672,0.0000016781,0.0000017013, +0.0000017228,0.0000017305,0.0000017274,0.0000017198,0.0000017093, +0.0000016975,0.0000016768,0.0000016518,0.0000016484,0.0000016722, +0.0000016749,0.0000016515,0.0000016362,0.0000016055,0.0000016231, +0.0000016711,0.0000016947,0.0000016857,0.0000016413,0.0000016195, +0.0000016040,0.0000015846,0.0000015849,0.0000015996,0.0000016085, +0.0000016175,0.0000016282,0.0000016357,0.0000016389,0.0000016330, +0.0000016208,0.0000016186,0.0000016312,0.0000016605,0.0000016989, +0.0000017252,0.0000017592,0.0000017700,0.0000017744,0.0000017773, +0.0000017750,0.0000017693,0.0000017714,0.0000017470,0.0000017018, +0.0000017055,0.0000017210,0.0000017166,0.0000017185,0.0000017200, +0.0000017184,0.0000017233,0.0000017304,0.0000017283,0.0000017037, +0.0000016762,0.0000016636,0.0000016696,0.0000016793,0.0000016763, +0.0000016706,0.0000016680,0.0000016652,0.0000016642,0.0000016705, +0.0000016844,0.0000017071,0.0000017283,0.0000017388,0.0000017434, +0.0000017461,0.0000017465,0.0000017478,0.0000017497,0.0000017477, +0.0000017444,0.0000017458,0.0000017573,0.0000017655,0.0000017460, +0.0000017050,0.0000016798,0.0000016732,0.0000016714,0.0000016661, +0.0000016585,0.0000016556,0.0000016577,0.0000016638,0.0000016736, +0.0000016840,0.0000016872,0.0000016848,0.0000016753,0.0000016712, +0.0000016988,0.0000017420,0.0000017738,0.0000017919,0.0000017935, +0.0000018477,0.0000019252,0.0000019557,0.0000019645,0.0000019703, +0.0000019727,0.0000019732,0.0000019730,0.0000019744,0.0000019780, +0.0000019828,0.0000019896,0.0000019931,0.0000019950,0.0000019959, +0.0000019978,0.0000019954,0.0000019892,0.0000019899,0.0000019964, +0.0000019999,0.0000019957,0.0000019863,0.0000019757,0.0000019640, +0.0000019526,0.0000019421,0.0000019318,0.0000019237,0.0000019186, +0.0000019181,0.0000019226,0.0000019297,0.0000019282,0.0000018979, +0.0000018469,0.0000018160,0.0000018096,0.0000018053,0.0000018019, +0.0000018030,0.0000018018,0.0000017977,0.0000017971,0.0000017975, +0.0000017922,0.0000017858,0.0000017837,0.0000017812,0.0000017762, +0.0000017715,0.0000017707,0.0000017796,0.0000017953,0.0000018086, +0.0000018120,0.0000018097,0.0000018119,0.0000018173,0.0000018207, +0.0000018273,0.0000018358,0.0000018377,0.0000018251,0.0000018059, +0.0000017784,0.0000017734,0.0000018104,0.0000018118,0.0000018133, +0.0000018442,0.0000018519,0.0000018434,0.0000018113,0.0000018206, +0.0000018775,0.0000019181,0.0000019220,0.0000018985,0.0000018986, +0.0000019028,0.0000018248,0.0000016755,0.0000016636,0.0000016688, +0.0000016420,0.0000015976,0.0000015764,0.0000015729,0.0000015806, +0.0000016043,0.0000016101,0.0000016174,0.0000016534,0.0000016733, +0.0000016735,0.0000016703,0.0000016698,0.0000016874,0.0000017164, +0.0000017274,0.0000017072,0.0000016612,0.0000016470,0.0000016591, +0.0000016611,0.0000016389,0.0000016055,0.0000015821,0.0000015701, +0.0000015480,0.0000015299,0.0000015242,0.0000015180,0.0000015125, +0.0000015096,0.0000015073,0.0000015057,0.0000014903,0.0000014621, +0.0000014486,0.0000014466,0.0000014393,0.0000014225,0.0000014075, +0.0000014031,0.0000014111,0.0000014240,0.0000014414,0.0000014696, +0.0000015009,0.0000015212,0.0000015266,0.0000015243,0.0000015197, +0.0000015196,0.0000015253,0.0000015343,0.0000015428,0.0000015483, +0.0000015496,0.0000015518,0.0000015464,0.0000015393,0.0000015344, +0.0000015341,0.0000015364,0.0000015367,0.0000015333,0.0000015256, +0.0000015136,0.0000014988,0.0000014839,0.0000014711,0.0000014605, +0.0000014508,0.0000014408,0.0000014313,0.0000014270,0.0000014264, +0.0000014269,0.0000014281,0.0000014282,0.0000014275,0.0000014266, +0.0000014259,0.0000014276,0.0000014317,0.0000014365,0.0000014420, +0.0000014478,0.0000014544,0.0000014628,0.0000014736,0.0000014853, +0.0000014962,0.0000015048,0.0000015108,0.0000015162,0.0000015223, +0.0000015296,0.0000015370,0.0000015432,0.0000015461,0.0000015454, +0.0000015445,0.0000015441,0.0000015445,0.0000015447,0.0000015457, +0.0000015483,0.0000015529,0.0000015601,0.0000015701,0.0000015808, +0.0000015870,0.0000015891,0.0000015889,0.0000015832,0.0000015729, +0.0000015623,0.0000015506,0.0000015404,0.0000015326,0.0000015273, +0.0000015254,0.0000015263,0.0000015278,0.0000015281,0.0000015268, +0.0000015241,0.0000015216,0.0000015204,0.0000015218,0.0000015250, +0.0000015307,0.0000015378,0.0000015466,0.0000015573,0.0000015700, +0.0000015809,0.0000015871,0.0000015868,0.0000015869,0.0000015898, +0.0000015996,0.0000016130,0.0000016164,0.0000016116,0.0000016130, +0.0000016302,0.0000016387,0.0000016278,0.0000016005,0.0000015878, +0.0000015993,0.0000016177,0.0000016261,0.0000016247,0.0000016221, +0.0000016211,0.0000016205,0.0000016197,0.0000016175,0.0000016135, +0.0000016092,0.0000016061,0.0000016050,0.0000016047,0.0000016043, +0.0000016046,0.0000016059,0.0000016080,0.0000016117,0.0000016164, +0.0000016200,0.0000016210,0.0000016205,0.0000016197,0.0000016190, +0.0000016185,0.0000016187,0.0000016208,0.0000016308,0.0000016551, +0.0000016904,0.0000017209,0.0000017414,0.0000017727,0.0000018216, +0.0000018626,0.0000018842,0.0000019041,0.0000019173,0.0000019187, +0.0000019220,0.0000019287,0.0000019379,0.0000019493,0.0000019609, +0.0000019715,0.0000019775,0.0000019808,0.0000019800,0.0000019837, +0.0000019911,0.0000019983,0.0000020028,0.0000020070,0.0000020114, +0.0000020168,0.0000020160,0.0000019934,0.0000019693,0.0000019628, +0.0000019510,0.0000019297,0.0000019161,0.0000019173,0.0000019308, +0.0000019399,0.0000019384,0.0000019326,0.0000019287,0.0000019206, +0.0000019059,0.0000018986,0.0000019053,0.0000019147,0.0000019180, +0.0000019267,0.0000019434,0.0000019594,0.0000019669,0.0000019635, +0.0000019492,0.0000019338,0.0000019265,0.0000019282,0.0000019310, +0.0000019344,0.0000019480,0.0000019725,0.0000019925,0.0000020046, +0.0000020135,0.0000020170,0.0000020145,0.0000020019,0.0000019874, +0.0000019824,0.0000019782,0.0000019504,0.0000019097,0.0000018631, +0.0000017739,0.0000017446,0.0000018712,0.0000019212,0.0000019158, +0.0000019019,0.0000019071,0.0000019251,0.0000019344,0.0000019343, +0.0000019293,0.0000019016,0.0000018487,0.0000018149,0.0000018080, +0.0000017965,0.0000017934,0.0000018005,0.0000018151,0.0000018321, +0.0000018519,0.0000018786,0.0000019077,0.0000019275,0.0000019306, +0.0000019264,0.0000019181,0.0000019059,0.0000018939,0.0000018858, +0.0000018791,0.0000018720,0.0000018657,0.0000018600,0.0000018547, +0.0000018500,0.0000018446,0.0000018379,0.0000018309,0.0000018237, +0.0000018135,0.0000017993,0.0000017886,0.0000017892,0.0000018007, +0.0000018171,0.0000018376,0.0000018581,0.0000018750,0.0000018902, +0.0000018916,0.0000018710,0.0000018505,0.0000018501,0.0000018520, +0.0000018403,0.0000018228,0.0000018177,0.0000018307,0.0000018456, +0.0000018467,0.0000018352,0.0000018074,0.0000017663,0.0000017337, +0.0000017192,0.0000017147,0.0000017127,0.0000017078,0.0000017009, +0.0000016963,0.0000016956,0.0000016966,0.0000016952,0.0000016883, +0.0000016794,0.0000016757,0.0000016773,0.0000016785,0.0000016758, +0.0000016719,0.0000016699,0.0000016708,0.0000016748,0.0000016777, +0.0000016773,0.0000016764,0.0000016766,0.0000016772,0.0000016764, +0.0000016704,0.0000016611,0.0000016557,0.0000016505,0.0000016343, +0.0000016124,0.0000015958,0.0000015869,0.0000015891,0.0000015942, +0.0000015924,0.0000015869,0.0000015867,0.0000015900,0.0000015892, +0.0000015873,0.0000015864,0.0000016062,0.0000016238,0.0000016335, +0.0000016617,0.0000016923,0.0000017015,0.0000017038,0.0000017073, +0.0000017113,0.0000017125,0.0000017129,0.0000017170,0.0000017240, +0.0000017286,0.0000017268,0.0000017125,0.0000016875,0.0000016635, +0.0000016525,0.0000016362,0.0000016092,0.0000015938,0.0000015982, +0.0000015908,0.0000016049,0.0000016256,0.0000016379,0.0000016405, +0.0000016403,0.0000016408,0.0000016399,0.0000016339,0.0000016275, +0.0000016234,0.0000016288,0.0000016456,0.0000016375,0.0000016003, +0.0000015772,0.0000015828,0.0000016114,0.0000016415,0.0000016567, +0.0000016609,0.0000016606,0.0000016569,0.0000016459,0.0000016222, +0.0000016076,0.0000016084,0.0000016175,0.0000016248,0.0000016338, +0.0000016485,0.0000016605,0.0000016673,0.0000016780,0.0000016956, +0.0000017107,0.0000017155,0.0000017142,0.0000017097,0.0000017000, +0.0000016860,0.0000016621,0.0000016441,0.0000016523,0.0000016751, +0.0000016645,0.0000016445,0.0000016196,0.0000015970,0.0000016354, +0.0000016748,0.0000016891,0.0000016668,0.0000016279,0.0000016135, +0.0000015944,0.0000015776,0.0000015831,0.0000015987,0.0000016079, +0.0000016205,0.0000016323,0.0000016405,0.0000016455,0.0000016426, +0.0000016289,0.0000016173,0.0000016257,0.0000016534,0.0000016957, +0.0000017203,0.0000017564,0.0000017711,0.0000017732,0.0000017755, +0.0000017742,0.0000017680,0.0000017694,0.0000017332,0.0000016972, +0.0000017071,0.0000017184,0.0000017164,0.0000017208,0.0000017218, +0.0000017233,0.0000017280,0.0000017319,0.0000017229,0.0000016921, +0.0000016675,0.0000016630,0.0000016742,0.0000016778,0.0000016661, +0.0000016626,0.0000016656,0.0000016628,0.0000016579,0.0000016567, +0.0000016678,0.0000016949,0.0000017223,0.0000017366,0.0000017415, +0.0000017436,0.0000017463,0.0000017495,0.0000017486,0.0000017442, +0.0000017445,0.0000017564,0.0000017656,0.0000017488,0.0000017089, +0.0000016817,0.0000016731,0.0000016703,0.0000016636,0.0000016536, +0.0000016494,0.0000016533,0.0000016635,0.0000016780,0.0000016897, +0.0000016921,0.0000016888,0.0000016818,0.0000016720,0.0000016813, +0.0000017218,0.0000017596,0.0000017867,0.0000017924,0.0000018084, +0.0000018840,0.0000019392,0.0000019514,0.0000019544,0.0000019527, +0.0000019437,0.0000019335,0.0000019303,0.0000019370,0.0000019534, +0.0000019718,0.0000019864,0.0000019943,0.0000019958,0.0000019963, +0.0000019930,0.0000019891,0.0000019918,0.0000019968,0.0000019883, +0.0000019687,0.0000019505,0.0000019426,0.0000019392,0.0000019403, +0.0000019412,0.0000019420,0.0000019409,0.0000019392,0.0000019336, +0.0000019180,0.0000018879,0.0000018490,0.0000018211,0.0000018135, +0.0000018126,0.0000018075,0.0000018036,0.0000018055,0.0000018021, +0.0000017968,0.0000017970,0.0000017957,0.0000017911,0.0000017901, +0.0000017962,0.0000017973,0.0000017885,0.0000017772,0.0000017701, +0.0000017715,0.0000017865,0.0000018021,0.0000018087,0.0000018077, +0.0000018041,0.0000018037,0.0000018062,0.0000018132,0.0000018226, +0.0000018254,0.0000018143,0.0000017993,0.0000017758,0.0000017683, +0.0000018036,0.0000018186,0.0000018092,0.0000018377,0.0000018529, +0.0000018524,0.0000018406,0.0000018189,0.0000018394,0.0000018865, +0.0000019136,0.0000019047,0.0000018704,0.0000018808,0.0000018928, +0.0000017858,0.0000016642,0.0000016705,0.0000016626,0.0000016347, +0.0000015959,0.0000015791,0.0000015763,0.0000015982,0.0000016179, +0.0000016158,0.0000016438,0.0000016704,0.0000016720,0.0000016722, +0.0000016704,0.0000016862,0.0000017164,0.0000017287,0.0000017080, +0.0000016598,0.0000016480,0.0000016607,0.0000016587,0.0000016315, +0.0000015981,0.0000015797,0.0000015656,0.0000015415,0.0000015296, +0.0000015249,0.0000015165,0.0000015119,0.0000015095,0.0000015075, +0.0000015002,0.0000014759,0.0000014536,0.0000014503,0.0000014467, +0.0000014323,0.0000014169,0.0000014101,0.0000014152,0.0000014291, +0.0000014489,0.0000014811,0.0000015168,0.0000015363,0.0000015386, +0.0000015343,0.0000015290,0.0000015241,0.0000015222,0.0000015249, +0.0000015307,0.0000015369,0.0000015425,0.0000015475,0.0000015516, +0.0000015541,0.0000015536,0.0000015518,0.0000015508,0.0000015502, +0.0000015481,0.0000015431,0.0000015362,0.0000015275,0.0000015174, +0.0000015089,0.0000015026,0.0000014972,0.0000014910,0.0000014833, +0.0000014736,0.0000014633,0.0000014542,0.0000014469,0.0000014410, +0.0000014355,0.0000014303,0.0000014261,0.0000014236,0.0000014210, +0.0000014189,0.0000014173,0.0000014177,0.0000014192,0.0000014217, +0.0000014245,0.0000014277,0.0000014327,0.0000014393,0.0000014459, +0.0000014510,0.0000014561,0.0000014637,0.0000014732,0.0000014841, +0.0000014949,0.0000015043,0.0000015108,0.0000015153,0.0000015214, +0.0000015298,0.0000015379,0.0000015414,0.0000015403,0.0000015391, +0.0000015386,0.0000015399,0.0000015458,0.0000015544,0.0000015639, +0.0000015746,0.0000015855,0.0000015911,0.0000015929,0.0000015906, +0.0000015821,0.0000015738,0.0000015662,0.0000015607,0.0000015579, +0.0000015568,0.0000015550,0.0000015502,0.0000015428,0.0000015342, +0.0000015268,0.0000015219,0.0000015192,0.0000015202,0.0000015242, +0.0000015305,0.0000015384,0.0000015488,0.0000015627,0.0000015770, +0.0000015855,0.0000015870,0.0000015886,0.0000015952,0.0000016069, +0.0000016154,0.0000016126,0.0000016128,0.0000016282,0.0000016394, +0.0000016351,0.0000016151,0.0000016022,0.0000016083,0.0000016233, +0.0000016297,0.0000016275,0.0000016240,0.0000016218,0.0000016199, +0.0000016171,0.0000016133,0.0000016094,0.0000016063,0.0000016044, +0.0000016038,0.0000016031,0.0000016024,0.0000016025,0.0000016034, +0.0000016050,0.0000016079,0.0000016115,0.0000016141,0.0000016152, +0.0000016155,0.0000016152,0.0000016152,0.0000016158,0.0000016172, +0.0000016190,0.0000016211,0.0000016276,0.0000016487,0.0000016875, +0.0000017261,0.0000017522,0.0000017836,0.0000018280,0.0000018626, +0.0000018749,0.0000018934,0.0000019078,0.0000019097,0.0000019108, +0.0000019161,0.0000019261,0.0000019401,0.0000019560,0.0000019714, +0.0000019801,0.0000019813,0.0000019855,0.0000019907,0.0000019966, +0.0000020016,0.0000020065,0.0000020140,0.0000020136,0.0000019876, +0.0000019633,0.0000019574,0.0000019402,0.0000019176,0.0000019117, +0.0000019209,0.0000019357,0.0000019439,0.0000019425,0.0000019357, +0.0000019273,0.0000019126,0.0000018948,0.0000018894,0.0000018947, +0.0000018967,0.0000018962,0.0000018988,0.0000019124,0.0000019408, +0.0000019711,0.0000019849,0.0000019810,0.0000019630,0.0000019413, +0.0000019285,0.0000019291,0.0000019324,0.0000019324,0.0000019466, +0.0000019725,0.0000019899,0.0000020019,0.0000020123,0.0000020161, +0.0000020135,0.0000020013,0.0000019896,0.0000019853,0.0000019693, +0.0000019295,0.0000018813,0.0000017966,0.0000017428,0.0000018481, +0.0000019197,0.0000019193,0.0000019004,0.0000019016,0.0000019148, +0.0000019263,0.0000019260,0.0000019188,0.0000018906,0.0000018377, +0.0000018007,0.0000017894,0.0000017772,0.0000017744,0.0000017781, +0.0000017865,0.0000017974,0.0000018152,0.0000018417,0.0000018720, +0.0000018999,0.0000019191,0.0000019261,0.0000019247,0.0000019171, +0.0000019027,0.0000018900,0.0000018833,0.0000018779,0.0000018712, +0.0000018639,0.0000018572,0.0000018511,0.0000018449,0.0000018385, +0.0000018327,0.0000018265,0.0000018168,0.0000018025,0.0000017893, +0.0000017858,0.0000017949,0.0000018128,0.0000018360,0.0000018588, +0.0000018758,0.0000018906,0.0000018940,0.0000018736,0.0000018503, +0.0000018480,0.0000018518,0.0000018404,0.0000018229,0.0000018219, +0.0000018375,0.0000018477,0.0000018448,0.0000018291,0.0000017953, +0.0000017534,0.0000017260,0.0000017154,0.0000017109,0.0000017053, +0.0000016964,0.0000016887,0.0000016853,0.0000016860,0.0000016892, +0.0000016912,0.0000016881,0.0000016795,0.0000016735,0.0000016725, +0.0000016732,0.0000016724,0.0000016699,0.0000016686,0.0000016700, +0.0000016741,0.0000016782,0.0000016810,0.0000016828,0.0000016830, +0.0000016816,0.0000016764,0.0000016655,0.0000016553,0.0000016511, +0.0000016456,0.0000016288,0.0000016079,0.0000015923,0.0000015886, +0.0000015926,0.0000015929,0.0000015860,0.0000015837,0.0000015895, +0.0000015898,0.0000015878,0.0000015845,0.0000015909,0.0000016153, +0.0000016245,0.0000016392,0.0000016731,0.0000016952,0.0000016997, +0.0000017013,0.0000017053,0.0000017099,0.0000017118,0.0000017137, +0.0000017203,0.0000017283,0.0000017319,0.0000017282,0.0000017109, +0.0000016836,0.0000016617,0.0000016501,0.0000016290,0.0000016025, +0.0000015897,0.0000015861,0.0000015826,0.0000015949,0.0000016200, +0.0000016392,0.0000016446,0.0000016441,0.0000016427,0.0000016372, +0.0000016302,0.0000016248,0.0000016259,0.0000016423,0.0000016422, +0.0000016052,0.0000015757,0.0000015724,0.0000015879,0.0000016211, +0.0000016471,0.0000016565,0.0000016570,0.0000016555,0.0000016482, +0.0000016270,0.0000016089,0.0000016077,0.0000016167,0.0000016257, +0.0000016347,0.0000016468,0.0000016585,0.0000016671,0.0000016780, +0.0000016911,0.0000017005,0.0000017035,0.0000017034,0.0000016992, +0.0000016887,0.0000016714,0.0000016490,0.0000016423,0.0000016609, +0.0000016742,0.0000016538,0.0000016381,0.0000016025,0.0000015984, +0.0000016482,0.0000016774,0.0000016803,0.0000016483,0.0000016178, +0.0000016067,0.0000015855,0.0000015729,0.0000015826,0.0000015966, +0.0000016092,0.0000016244,0.0000016351,0.0000016420,0.0000016462, +0.0000016485,0.0000016383,0.0000016177,0.0000016195,0.0000016463, +0.0000016914,0.0000017165,0.0000017534,0.0000017724,0.0000017750, +0.0000017766,0.0000017725,0.0000017664,0.0000017631,0.0000017189, +0.0000016951,0.0000017081,0.0000017170,0.0000017202,0.0000017242, +0.0000017251,0.0000017251,0.0000017269,0.0000017288,0.0000017123, +0.0000016801,0.0000016610,0.0000016648,0.0000016773,0.0000016702, +0.0000016546,0.0000016568,0.0000016646,0.0000016622,0.0000016544, +0.0000016503,0.0000016593,0.0000016865,0.0000017168,0.0000017341, +0.0000017401,0.0000017432,0.0000017472,0.0000017482,0.0000017443, +0.0000017436,0.0000017553,0.0000017662,0.0000017521,0.0000017135, +0.0000016846,0.0000016743,0.0000016704,0.0000016616,0.0000016489, +0.0000016442,0.0000016512,0.0000016673,0.0000016853,0.0000016963, +0.0000016975,0.0000016921,0.0000016859,0.0000016768,0.0000016723, +0.0000017006,0.0000017424,0.0000017752,0.0000017924,0.0000017924, +0.0000018309,0.0000019033,0.0000019370,0.0000019378,0.0000019199, +0.0000018904,0.0000018667,0.0000018582,0.0000018659,0.0000018923, +0.0000019293,0.0000019630,0.0000019837,0.0000019937,0.0000019950, +0.0000019904,0.0000019886,0.0000019918,0.0000019861,0.0000019649, +0.0000019494,0.0000019464,0.0000019482,0.0000019506,0.0000019449, +0.0000019337,0.0000019172,0.0000018963,0.0000018729,0.0000018490, +0.0000018280,0.0000018162,0.0000018137,0.0000018153,0.0000018140, +0.0000018076,0.0000018057,0.0000018059,0.0000017999,0.0000017957, +0.0000017971,0.0000017952,0.0000017906,0.0000017961,0.0000018053, +0.0000018076,0.0000018012,0.0000017868,0.0000017736,0.0000017673, +0.0000017768,0.0000017958,0.0000018052,0.0000018064,0.0000018038, +0.0000017985,0.0000017977,0.0000018056,0.0000018144,0.0000018172, +0.0000018069,0.0000017929,0.0000017720,0.0000017642,0.0000017979, +0.0000018252,0.0000018135,0.0000018309,0.0000018566,0.0000018505, +0.0000018535,0.0000018427,0.0000018332,0.0000018580,0.0000018902, +0.0000019057,0.0000018867,0.0000018463,0.0000018715,0.0000018799, +0.0000017518,0.0000016633,0.0000016718,0.0000016561,0.0000016296, +0.0000015962,0.0000015805,0.0000015906,0.0000016203,0.0000016216, +0.0000016370,0.0000016663,0.0000016695,0.0000016712,0.0000016709, +0.0000016865,0.0000017168,0.0000017298,0.0000017103,0.0000016606, +0.0000016496,0.0000016626,0.0000016565,0.0000016247,0.0000015925, +0.0000015782,0.0000015601,0.0000015363,0.0000015301,0.0000015244, +0.0000015142,0.0000015105,0.0000015087,0.0000015059,0.0000014890, +0.0000014610,0.0000014505,0.0000014497,0.0000014400,0.0000014254, +0.0000014185,0.0000014211,0.0000014327,0.0000014512,0.0000014842, +0.0000015210,0.0000015398,0.0000015421,0.0000015416,0.0000015429, +0.0000015444,0.0000015444,0.0000015417,0.0000015402,0.0000015420, +0.0000015445,0.0000015450,0.0000015459,0.0000015479,0.0000015501, +0.0000015517,0.0000015514,0.0000015498,0.0000015468,0.0000015423, +0.0000015373,0.0000015320,0.0000015254,0.0000015159,0.0000015045, +0.0000014943,0.0000014878,0.0000014842,0.0000014818,0.0000014796, +0.0000014771,0.0000014741,0.0000014712,0.0000014683,0.0000014641, +0.0000014584,0.0000014513,0.0000014429,0.0000014341,0.0000014258, +0.0000014183,0.0000014159,0.0000014148,0.0000014138,0.0000014143, +0.0000014155,0.0000014158,0.0000014164,0.0000014179,0.0000014206, +0.0000014230,0.0000014253,0.0000014292,0.0000014351,0.0000014426, +0.0000014502,0.0000014573,0.0000014641,0.0000014719,0.0000014819, +0.0000014923,0.0000015007,0.0000015089,0.0000015194,0.0000015295, +0.0000015343,0.0000015346,0.0000015360,0.0000015379,0.0000015421, +0.0000015489,0.0000015580,0.0000015710,0.0000015864,0.0000015929, +0.0000015979,0.0000015971,0.0000015944,0.0000015892,0.0000015814, +0.0000015706,0.0000015592,0.0000015461,0.0000015370,0.0000015307, +0.0000015254,0.0000015203,0.0000015178,0.0000015166,0.0000015181, +0.0000015232,0.0000015308,0.0000015424,0.0000015588,0.0000015753, +0.0000015850,0.0000015883,0.0000015922,0.0000016015,0.0000016111, +0.0000016122,0.0000016124,0.0000016248,0.0000016395,0.0000016411, +0.0000016300,0.0000016207,0.0000016219,0.0000016305,0.0000016339, +0.0000016316,0.0000016276,0.0000016226,0.0000016167,0.0000016114, +0.0000016086,0.0000016070,0.0000016049,0.0000016032,0.0000016023, +0.0000016014,0.0000016007,0.0000016009,0.0000016016,0.0000016027, +0.0000016046,0.0000016068,0.0000016087,0.0000016099,0.0000016101, +0.0000016103,0.0000016107,0.0000016113,0.0000016123,0.0000016144, +0.0000016185,0.0000016239,0.0000016313,0.0000016517,0.0000016918, +0.0000017332,0.0000017599,0.0000017884,0.0000018285,0.0000018556, +0.0000018634,0.0000018828,0.0000019022,0.0000019084,0.0000019095, +0.0000019135,0.0000019219,0.0000019355,0.0000019528,0.0000019678, +0.0000019796,0.0000019875,0.0000019932,0.0000019975,0.0000020021, +0.0000020100,0.0000020120,0.0000019870,0.0000019603,0.0000019521, +0.0000019334,0.0000019128,0.0000019110,0.0000019212,0.0000019348, +0.0000019433,0.0000019421,0.0000019346,0.0000019236,0.0000019065, +0.0000018918,0.0000018906,0.0000018957,0.0000018986,0.0000019001, +0.0000018980,0.0000018972,0.0000019094,0.0000019454,0.0000019843, +0.0000019977,0.0000019919,0.0000019714,0.0000019444,0.0000019294, +0.0000019308,0.0000019319,0.0000019319,0.0000019497,0.0000019760, +0.0000019892,0.0000019997,0.0000020105,0.0000020143,0.0000020109, +0.0000020013,0.0000019933,0.0000019816,0.0000019491,0.0000018969, +0.0000018209,0.0000017606,0.0000018211,0.0000019142,0.0000019225, +0.0000019010,0.0000018975,0.0000019051,0.0000019171,0.0000019192, +0.0000019122,0.0000018856,0.0000018336,0.0000017927,0.0000017769, +0.0000017663,0.0000017638,0.0000017644,0.0000017658,0.0000017686, +0.0000017821,0.0000018062,0.0000018329,0.0000018594,0.0000018849, +0.0000019068,0.0000019208,0.0000019214,0.0000019110,0.0000018952, +0.0000018848,0.0000018797,0.0000018746,0.0000018682,0.0000018622, +0.0000018558,0.0000018491,0.0000018421,0.0000018351,0.0000018281, +0.0000018191,0.0000018061,0.0000017916,0.0000017856,0.0000017916, +0.0000018107,0.0000018361,0.0000018600,0.0000018767,0.0000018906, +0.0000018953,0.0000018771,0.0000018525,0.0000018471,0.0000018494, +0.0000018381,0.0000018218,0.0000018262,0.0000018445,0.0000018508, +0.0000018421,0.0000018211,0.0000017827,0.0000017427,0.0000017210, +0.0000017122,0.0000017053,0.0000016963,0.0000016871,0.0000016807, +0.0000016782,0.0000016796,0.0000016837,0.0000016878,0.0000016873, +0.0000016813,0.0000016738,0.0000016701,0.0000016698,0.0000016695, +0.0000016681,0.0000016677,0.0000016689,0.0000016724,0.0000016783, +0.0000016837,0.0000016857,0.0000016847,0.0000016809,0.0000016721, +0.0000016591,0.0000016503,0.0000016481,0.0000016420,0.0000016232, +0.0000016018,0.0000015905,0.0000015912,0.0000015932,0.0000015858, +0.0000015805,0.0000015863,0.0000015906,0.0000015872,0.0000015851, +0.0000015825,0.0000016005,0.0000016197,0.0000016254,0.0000016485, +0.0000016813,0.0000016942,0.0000016963,0.0000016985,0.0000017039, +0.0000017092,0.0000017121,0.0000017172,0.0000017258,0.0000017318, +0.0000017323,0.0000017264,0.0000017059,0.0000016779,0.0000016594, +0.0000016458,0.0000016222,0.0000015984,0.0000015943,0.0000015806, +0.0000015756,0.0000015881,0.0000016150,0.0000016391,0.0000016474, +0.0000016461,0.0000016402,0.0000016334,0.0000016273,0.0000016256, +0.0000016370,0.0000016435,0.0000016148,0.0000015789,0.0000015665, +0.0000015708,0.0000015978,0.0000016311,0.0000016483,0.0000016509, +0.0000016508,0.0000016474,0.0000016312,0.0000016110,0.0000016075, +0.0000016154,0.0000016254,0.0000016337,0.0000016435,0.0000016548, +0.0000016657,0.0000016765,0.0000016854,0.0000016905,0.0000016925, +0.0000016924,0.0000016874,0.0000016750,0.0000016557,0.0000016411, +0.0000016464,0.0000016698,0.0000016682,0.0000016461,0.0000016290, +0.0000015901,0.0000016100,0.0000016585,0.0000016769,0.0000016709, +0.0000016312,0.0000016086,0.0000015989,0.0000015786,0.0000015718, +0.0000015826,0.0000015957,0.0000016120,0.0000016263,0.0000016351, +0.0000016409,0.0000016448,0.0000016484,0.0000016443,0.0000016239, +0.0000016153,0.0000016400,0.0000016870,0.0000017140,0.0000017505, +0.0000017730,0.0000017783,0.0000017782,0.0000017683,0.0000017638, +0.0000017527,0.0000017073,0.0000016946,0.0000017100,0.0000017190, +0.0000017250,0.0000017277,0.0000017253,0.0000017172,0.0000017170, +0.0000017216,0.0000016996,0.0000016684,0.0000016588,0.0000016703, +0.0000016753,0.0000016582,0.0000016454,0.0000016537,0.0000016632, +0.0000016610,0.0000016539,0.0000016502,0.0000016548,0.0000016805, +0.0000017120,0.0000017304,0.0000017362,0.0000017404,0.0000017452, +0.0000017443,0.0000017435,0.0000017540,0.0000017667,0.0000017556, +0.0000017186,0.0000016881,0.0000016760,0.0000016711,0.0000016607, +0.0000016452,0.0000016410,0.0000016532,0.0000016771,0.0000016973, +0.0000017067,0.0000017073,0.0000017003,0.0000016903,0.0000016822, +0.0000016722,0.0000016827,0.0000017225,0.0000017603,0.0000017876, +0.0000017932,0.0000017958,0.0000018408,0.0000018902,0.0000018951, +0.0000018598,0.0000018259,0.0000018092,0.0000018045,0.0000018079, +0.0000018230,0.0000018585,0.0000019174,0.0000019614,0.0000019818, +0.0000019888,0.0000019880,0.0000019884,0.0000019848,0.0000019681, +0.0000019535,0.0000019511,0.0000019512,0.0000019387,0.0000019141, +0.0000018844,0.0000018576,0.0000018385,0.0000018273,0.0000018224, +0.0000018185,0.0000018179,0.0000018182,0.0000018170,0.0000018108, +0.0000018050,0.0000018057,0.0000018063,0.0000017984,0.0000017924, +0.0000017932,0.0000017935,0.0000017950,0.0000018091,0.0000018212, +0.0000018170,0.0000018108,0.0000017980,0.0000017792,0.0000017650, +0.0000017672,0.0000017871,0.0000018028,0.0000018069,0.0000018059, +0.0000018012,0.0000017980,0.0000018037,0.0000018126,0.0000018124, +0.0000018014,0.0000017876,0.0000017672,0.0000017597,0.0000017917, +0.0000018312,0.0000018235,0.0000018287,0.0000018580,0.0000018529, +0.0000018473,0.0000018580,0.0000018513,0.0000018544,0.0000018714, +0.0000018895,0.0000019054,0.0000018758,0.0000018349,0.0000018704, +0.0000018556,0.0000017089,0.0000016642,0.0000016674,0.0000016526, +0.0000016253,0.0000015919,0.0000015858,0.0000016159,0.0000016272, +0.0000016357,0.0000016634,0.0000016687,0.0000016698,0.0000016694, +0.0000016844,0.0000017169,0.0000017304,0.0000017133,0.0000016624, +0.0000016515,0.0000016633,0.0000016543,0.0000016196,0.0000015892, +0.0000015770,0.0000015551,0.0000015341,0.0000015309,0.0000015227, +0.0000015124,0.0000015096,0.0000015080,0.0000015009,0.0000014755, +0.0000014521,0.0000014492,0.0000014443,0.0000014309,0.0000014227, +0.0000014245,0.0000014355,0.0000014502,0.0000014794,0.0000015186, +0.0000015398,0.0000015421,0.0000015439,0.0000015501,0.0000015590, +0.0000015648,0.0000015660,0.0000015630,0.0000015586,0.0000015585, +0.0000015599,0.0000015584,0.0000015546,0.0000015517,0.0000015506, +0.0000015503,0.0000015495,0.0000015469,0.0000015434,0.0000015397, +0.0000015365,0.0000015347,0.0000015334,0.0000015310,0.0000015265, +0.0000015198,0.0000015116,0.0000015031,0.0000014952,0.0000014883, +0.0000014819,0.0000014771,0.0000014741,0.0000014715,0.0000014692, +0.0000014673,0.0000014653,0.0000014624,0.0000014576,0.0000014505, +0.0000014419,0.0000014337,0.0000014274,0.0000014233,0.0000014226, +0.0000014235,0.0000014237,0.0000014227,0.0000014225,0.0000014236, +0.0000014254,0.0000014254,0.0000014252,0.0000014276,0.0000014307, +0.0000014345,0.0000014381,0.0000014402,0.0000014423,0.0000014450, +0.0000014492,0.0000014543,0.0000014610,0.0000014691,0.0000014761, +0.0000014827,0.0000014951,0.0000015136,0.0000015302,0.0000015361, +0.0000015355,0.0000015351,0.0000015391,0.0000015478,0.0000015584, +0.0000015702,0.0000015800,0.0000015853,0.0000015826,0.0000015704, +0.0000015545,0.0000015417,0.0000015340,0.0000015316,0.0000015307, +0.0000015292,0.0000015263,0.0000015227,0.0000015190,0.0000015158, +0.0000015156,0.0000015177,0.0000015252,0.0000015388,0.0000015574, +0.0000015750,0.0000015852,0.0000015897,0.0000015960,0.0000016053, +0.0000016106,0.0000016110,0.0000016197,0.0000016355,0.0000016416, +0.0000016393,0.0000016342,0.0000016339,0.0000016370,0.0000016371, +0.0000016342,0.0000016275,0.0000016187,0.0000016108,0.0000016075, +0.0000016058,0.0000016009,0.0000015940,0.0000015894,0.0000015880, +0.0000015885,0.0000015901,0.0000015924,0.0000015943,0.0000015961, +0.0000015981,0.0000016002,0.0000016018,0.0000016024,0.0000016018, +0.0000016010,0.0000016007,0.0000016009,0.0000016024,0.0000016059, +0.0000016116,0.0000016183,0.0000016248,0.0000016344,0.0000016581, +0.0000016998,0.0000017407,0.0000017627,0.0000017879,0.0000018282, +0.0000018480,0.0000018548,0.0000018746,0.0000018978,0.0000019097, +0.0000019128,0.0000019156,0.0000019226,0.0000019347,0.0000019500, +0.0000019655,0.0000019790,0.0000019901,0.0000019991,0.0000020069, +0.0000020090,0.0000019885,0.0000019600,0.0000019500,0.0000019338, +0.0000019128,0.0000019089,0.0000019176,0.0000019296,0.0000019394, +0.0000019400,0.0000019302,0.0000019181,0.0000019060,0.0000018987, +0.0000018999,0.0000019046,0.0000019055,0.0000018951,0.0000018776, +0.0000018792,0.0000018951,0.0000019155,0.0000019597,0.0000019989, +0.0000020069,0.0000019989,0.0000019747,0.0000019443,0.0000019305, +0.0000019327,0.0000019311,0.0000019333,0.0000019568,0.0000019813, +0.0000019876,0.0000019970,0.0000020085,0.0000020126,0.0000020104, +0.0000020044,0.0000019923,0.0000019652,0.0000019142,0.0000018358, +0.0000017659,0.0000018037,0.0000019087,0.0000019239,0.0000019039, +0.0000018962,0.0000018975,0.0000019070,0.0000019120,0.0000019087, +0.0000018856,0.0000018360,0.0000017902,0.0000017715,0.0000017622, +0.0000017582,0.0000017557,0.0000017518,0.0000017478,0.0000017544, +0.0000017707,0.0000017906,0.0000018151,0.0000018442,0.0000018711, +0.0000018919,0.0000019043,0.0000019037,0.0000018924,0.0000018824, +0.0000018773,0.0000018736,0.0000018700,0.0000018661,0.0000018610, +0.0000018546,0.0000018470,0.0000018393,0.0000018314,0.0000018219, +0.0000018095,0.0000017952,0.0000017857,0.0000017908,0.0000018101, +0.0000018367,0.0000018615,0.0000018774,0.0000018897,0.0000018941, +0.0000018798,0.0000018554,0.0000018456,0.0000018447,0.0000018330, +0.0000018235,0.0000018335,0.0000018518,0.0000018516,0.0000018375, +0.0000018122,0.0000017711,0.0000017351,0.0000017175,0.0000017081, +0.0000016988,0.0000016894,0.0000016810,0.0000016749,0.0000016728, +0.0000016745,0.0000016792,0.0000016842,0.0000016860,0.0000016822, +0.0000016742,0.0000016683,0.0000016663,0.0000016658,0.0000016657, +0.0000016661,0.0000016674,0.0000016709,0.0000016772,0.0000016829, +0.0000016845,0.0000016826,0.0000016766,0.0000016652,0.0000016529, +0.0000016474,0.0000016469,0.0000016375,0.0000016152,0.0000015966, +0.0000015908,0.0000015930,0.0000015867,0.0000015781,0.0000015808, +0.0000015903,0.0000015874,0.0000015850,0.0000015811,0.0000015860, +0.0000016107,0.0000016205,0.0000016294,0.0000016587,0.0000016843, +0.0000016913,0.0000016929,0.0000016961,0.0000017025,0.0000017090, +0.0000017149,0.0000017229,0.0000017304,0.0000017323,0.0000017315, +0.0000017216,0.0000016982,0.0000016717,0.0000016559,0.0000016400, +0.0000016162,0.0000016106,0.0000015892,0.0000015748,0.0000015732, +0.0000015847,0.0000016119,0.0000016382,0.0000016473,0.0000016449, +0.0000016379,0.0000016315,0.0000016258,0.0000016313,0.0000016462, +0.0000016265,0.0000015871,0.0000015681,0.0000015644,0.0000015785, +0.0000016116,0.0000016365,0.0000016430,0.0000016438,0.0000016443, +0.0000016337,0.0000016141,0.0000016085,0.0000016142,0.0000016241, +0.0000016310,0.0000016388,0.0000016498,0.0000016628,0.0000016725, +0.0000016770,0.0000016794,0.0000016807,0.0000016802,0.0000016742, +0.0000016587,0.0000016431,0.0000016399,0.0000016567,0.0000016732, +0.0000016574,0.0000016418,0.0000016151,0.0000015867,0.0000016273, +0.0000016650,0.0000016758,0.0000016572,0.0000016160,0.0000015996, +0.0000015912,0.0000015739,0.0000015727,0.0000015836,0.0000015975, +0.0000016145,0.0000016261,0.0000016337,0.0000016385,0.0000016405, +0.0000016460,0.0000016478,0.0000016323,0.0000016151,0.0000016347, +0.0000016827,0.0000017126,0.0000017477,0.0000017722,0.0000017795, +0.0000017764,0.0000017635,0.0000017613,0.0000017389,0.0000016997, +0.0000016941,0.0000017131,0.0000017236,0.0000017290,0.0000017281, +0.0000017144,0.0000016975,0.0000017069,0.0000017122,0.0000016854, +0.0000016603,0.0000016606,0.0000016739,0.0000016693,0.0000016459, +0.0000016391,0.0000016498,0.0000016584,0.0000016578,0.0000016547, +0.0000016492,0.0000016528,0.0000016766,0.0000017062,0.0000017220, +0.0000017285,0.0000017379,0.0000017429,0.0000017438,0.0000017531, +0.0000017663,0.0000017585,0.0000017240,0.0000016923,0.0000016779, +0.0000016720,0.0000016603,0.0000016432,0.0000016411,0.0000016616, +0.0000016911,0.0000017097,0.0000017171,0.0000017187,0.0000017142, +0.0000017002,0.0000016878,0.0000016765,0.0000016731,0.0000017024, +0.0000017431,0.0000017755,0.0000017934,0.0000017911,0.0000017946, +0.0000018171,0.0000018213,0.0000018032,0.0000017968,0.0000017979, +0.0000017981,0.0000017981,0.0000017988,0.0000018021,0.0000018473, +0.0000019210,0.0000019626,0.0000019767,0.0000019810,0.0000019812, +0.0000019701,0.0000019585,0.0000019542,0.0000019428,0.0000019134, +0.0000018746,0.0000018436,0.0000018275,0.0000018241,0.0000018244, +0.0000018265,0.0000018279,0.0000018273,0.0000018227,0.0000018146, +0.0000018062,0.0000018030,0.0000018063,0.0000018055,0.0000017955, +0.0000017897,0.0000017890,0.0000017883,0.0000017982,0.0000018237, +0.0000018496,0.0000018488,0.0000018258,0.0000018085,0.0000017849, +0.0000017638,0.0000017617,0.0000017789,0.0000017977,0.0000018069, +0.0000018068,0.0000018058,0.0000018037,0.0000018056,0.0000018096, +0.0000018068,0.0000017957,0.0000017818,0.0000017620,0.0000017558, +0.0000017869,0.0000018308,0.0000018372,0.0000018352,0.0000018608, +0.0000018611,0.0000018416,0.0000018507,0.0000018641,0.0000018671, +0.0000018745,0.0000018760,0.0000018869,0.0000019049,0.0000018696, +0.0000018340,0.0000018659,0.0000018094,0.0000016745,0.0000016693, +0.0000016632,0.0000016522,0.0000016156,0.0000015882,0.0000016042, +0.0000016298,0.0000016340,0.0000016609,0.0000016705,0.0000016700, +0.0000016677,0.0000016803,0.0000017150,0.0000017317,0.0000017172, +0.0000016650,0.0000016526,0.0000016634,0.0000016517,0.0000016157, +0.0000015876,0.0000015757,0.0000015510,0.0000015349,0.0000015319, +0.0000015202,0.0000015112,0.0000015091,0.0000015071,0.0000014926, +0.0000014620,0.0000014484,0.0000014470,0.0000014367,0.0000014263, +0.0000014248,0.0000014351,0.0000014492,0.0000014711,0.0000015095, +0.0000015379,0.0000015425,0.0000015424,0.0000015471,0.0000015571, +0.0000015675,0.0000015728,0.0000015730,0.0000015695,0.0000015656, +0.0000015657,0.0000015696,0.0000015718,0.0000015695,0.0000015647, +0.0000015595,0.0000015553,0.0000015516,0.0000015474,0.0000015427, +0.0000015380,0.0000015347,0.0000015340,0.0000015349,0.0000015358, +0.0000015349,0.0000015311,0.0000015250,0.0000015190,0.0000015144, +0.0000015109,0.0000015078,0.0000015048,0.0000015015,0.0000014975, +0.0000014917,0.0000014828,0.0000014724,0.0000014653,0.0000014615, +0.0000014603,0.0000014597,0.0000014577,0.0000014537,0.0000014497, +0.0000014477,0.0000014479,0.0000014486,0.0000014481,0.0000014465, +0.0000014463,0.0000014475,0.0000014484,0.0000014472,0.0000014456, +0.0000014441,0.0000014436,0.0000014442,0.0000014444,0.0000014450, +0.0000014461,0.0000014474,0.0000014476,0.0000014449,0.0000014415, +0.0000014394,0.0000014403,0.0000014422,0.0000014483,0.0000014592, +0.0000014801,0.0000015086,0.0000015304,0.0000015344,0.0000015338, +0.0000015347,0.0000015381,0.0000015422,0.0000015450,0.0000015446, +0.0000015385,0.0000015316,0.0000015296,0.0000015305,0.0000015322, +0.0000015318,0.0000015299,0.0000015278,0.0000015262,0.0000015237, +0.0000015206,0.0000015172,0.0000015151,0.0000015154,0.0000015226, +0.0000015378,0.0000015580,0.0000015757,0.0000015855,0.0000015912, +0.0000015984,0.0000016053,0.0000016079,0.0000016130,0.0000016263, +0.0000016369,0.0000016403,0.0000016394,0.0000016392,0.0000016387, +0.0000016365,0.0000016310,0.0000016218,0.0000016130,0.0000016080, +0.0000016035,0.0000015927,0.0000015784,0.0000015685,0.0000015646, +0.0000015644,0.0000015660,0.0000015688,0.0000015719,0.0000015745, +0.0000015769,0.0000015794,0.0000015812,0.0000015820,0.0000015812, +0.0000015794,0.0000015775,0.0000015764,0.0000015768,0.0000015793, +0.0000015858,0.0000015963,0.0000016083,0.0000016180,0.0000016252, +0.0000016379,0.0000016665,0.0000017090,0.0000017458,0.0000017627, +0.0000017912,0.0000018312,0.0000018422,0.0000018481,0.0000018667, +0.0000018895,0.0000019052,0.0000019133,0.0000019187,0.0000019252, +0.0000019350,0.0000019478,0.0000019624,0.0000019778,0.0000019915, +0.0000019975,0.0000019855,0.0000019597,0.0000019493,0.0000019384, +0.0000019156,0.0000019048,0.0000019092,0.0000019214,0.0000019321, +0.0000019378,0.0000019319,0.0000019203,0.0000019125,0.0000019094, +0.0000019100,0.0000019105,0.0000019067,0.0000018791,0.0000018263, +0.0000018116,0.0000018527,0.0000018975,0.0000019305,0.0000019824, +0.0000020097,0.0000020133,0.0000020025,0.0000019732,0.0000019415, +0.0000019324,0.0000019334,0.0000019299,0.0000019358,0.0000019666, +0.0000019834,0.0000019843,0.0000019955,0.0000020092,0.0000020136, +0.0000020139,0.0000020039,0.0000019780,0.0000019319,0.0000018568, +0.0000017734,0.0000017913,0.0000018988,0.0000019195,0.0000019077, +0.0000018961,0.0000018933,0.0000018975,0.0000019033,0.0000019038, +0.0000018885,0.0000018439,0.0000017944,0.0000017700,0.0000017615, +0.0000017563,0.0000017508,0.0000017443,0.0000017384,0.0000017382, +0.0000017432,0.0000017512,0.0000017677,0.0000017947,0.0000018248, +0.0000018520,0.0000018712,0.0000018775,0.0000018754,0.0000018702, +0.0000018681,0.0000018673,0.0000018656,0.0000018631,0.0000018598, +0.0000018546,0.0000018486,0.0000018424,0.0000018349,0.0000018250, +0.0000018129,0.0000017994,0.0000017886,0.0000017911,0.0000018097, +0.0000018374,0.0000018627,0.0000018777,0.0000018879,0.0000018930, +0.0000018842,0.0000018585,0.0000018421,0.0000018372,0.0000018271, +0.0000018245,0.0000018422,0.0000018542,0.0000018489,0.0000018321, +0.0000018028,0.0000017612,0.0000017301,0.0000017146,0.0000017032, +0.0000016932,0.0000016841,0.0000016742,0.0000016654,0.0000016627, +0.0000016659,0.0000016733,0.0000016805,0.0000016842,0.0000016824, +0.0000016749,0.0000016672,0.0000016634,0.0000016626,0.0000016634, +0.0000016651,0.0000016665,0.0000016694,0.0000016748,0.0000016796, +0.0000016809,0.0000016779,0.0000016694,0.0000016573,0.0000016486, +0.0000016471,0.0000016457,0.0000016298,0.0000016067,0.0000015923, +0.0000015914,0.0000015885,0.0000015783,0.0000015757,0.0000015879, +0.0000015883,0.0000015837,0.0000015815,0.0000015788,0.0000015963, +0.0000016163,0.0000016211,0.0000016367,0.0000016666,0.0000016837, +0.0000016876,0.0000016894,0.0000016948,0.0000017036,0.0000017121, +0.0000017203,0.0000017282,0.0000017321,0.0000017314,0.0000017279, +0.0000017140,0.0000016883,0.0000016651,0.0000016515,0.0000016341, +0.0000016275,0.0000016040,0.0000015853,0.0000015760,0.0000015767, +0.0000015864,0.0000016088,0.0000016344,0.0000016447,0.0000016423, +0.0000016363,0.0000016284,0.0000016279,0.0000016433,0.0000016365, +0.0000015991,0.0000015736,0.0000015642,0.0000015660,0.0000015923, +0.0000016230,0.0000016349,0.0000016368,0.0000016397,0.0000016357, +0.0000016186,0.0000016099,0.0000016133,0.0000016209,0.0000016269, +0.0000016333,0.0000016447,0.0000016580,0.0000016649,0.0000016662, +0.0000016678,0.0000016693,0.0000016685,0.0000016590,0.0000016434, +0.0000016367,0.0000016447,0.0000016670,0.0000016710,0.0000016487, +0.0000016368,0.0000015986,0.0000015929,0.0000016428,0.0000016688, +0.0000016710,0.0000016413,0.0000016031,0.0000015908,0.0000015835, +0.0000015722,0.0000015738,0.0000015860,0.0000016003,0.0000016161, +0.0000016264,0.0000016326,0.0000016343,0.0000016340,0.0000016402, +0.0000016479,0.0000016391,0.0000016152,0.0000016304,0.0000016787, +0.0000017117,0.0000017449,0.0000017699,0.0000017793,0.0000017702, +0.0000017600,0.0000017556,0.0000017251,0.0000016940,0.0000016946, +0.0000017183,0.0000017277,0.0000017299,0.0000017186,0.0000016901, +0.0000016805,0.0000017014,0.0000017020,0.0000016725,0.0000016567, +0.0000016659,0.0000016745,0.0000016575,0.0000016360,0.0000016349, +0.0000016432,0.0000016490,0.0000016538,0.0000016552,0.0000016494, +0.0000016514,0.0000016717,0.0000016969,0.0000017114,0.0000017260, +0.0000017388,0.0000017436,0.0000017524,0.0000017662,0.0000017612, +0.0000017295,0.0000016971,0.0000016803,0.0000016729,0.0000016598, +0.0000016431,0.0000016451,0.0000016737,0.0000017033,0.0000017165, +0.0000017195,0.0000017245,0.0000017259,0.0000017152,0.0000016967, +0.0000016826,0.0000016727,0.0000016854,0.0000017239,0.0000017597, +0.0000017865,0.0000017939,0.0000017903,0.0000017881,0.0000017896, +0.0000017927,0.0000017959,0.0000017967,0.0000017962,0.0000017964, +0.0000017974,0.0000017966,0.0000017978,0.0000018535,0.0000019285, +0.0000019618,0.0000019687,0.0000019664,0.0000019610,0.0000019535, +0.0000019282,0.0000018834,0.0000018431,0.0000018267,0.0000018232, +0.0000018271,0.0000018313,0.0000018339,0.0000018323,0.0000018269, +0.0000018188,0.0000018105,0.0000018062,0.0000018064,0.0000018066, +0.0000018001,0.0000017911,0.0000017885,0.0000017865,0.0000017885, +0.0000018088,0.0000018399,0.0000018824,0.0000018922,0.0000018539, +0.0000018202,0.0000017922,0.0000017637,0.0000017591,0.0000017726, +0.0000017911,0.0000018029,0.0000018063,0.0000018079,0.0000018085, +0.0000018062,0.0000018047,0.0000017985,0.0000017889,0.0000017760, +0.0000017573,0.0000017530,0.0000017844,0.0000018295,0.0000018451, +0.0000018493,0.0000018688,0.0000018746,0.0000018458,0.0000018360, +0.0000018582,0.0000018722,0.0000018841,0.0000018843,0.0000018734, +0.0000018856,0.0000019070,0.0000018631,0.0000018385,0.0000018629, +0.0000017581,0.0000016723,0.0000016694,0.0000016642,0.0000016467, +0.0000015998,0.0000015941,0.0000016262,0.0000016293,0.0000016532, +0.0000016732,0.0000016716,0.0000016677,0.0000016764,0.0000017112, +0.0000017314,0.0000017221,0.0000016693,0.0000016532,0.0000016632, +0.0000016489,0.0000016127,0.0000015870,0.0000015740,0.0000015474, +0.0000015359,0.0000015328,0.0000015181,0.0000015110,0.0000015089, +0.0000015048,0.0000014826,0.0000014523,0.0000014463,0.0000014422, +0.0000014301,0.0000014262,0.0000014321,0.0000014455,0.0000014617, +0.0000014936,0.0000015313,0.0000015450,0.0000015450,0.0000015451, +0.0000015481,0.0000015547,0.0000015631,0.0000015699,0.0000015728, +0.0000015721,0.0000015698,0.0000015683,0.0000015714,0.0000015763, +0.0000015786,0.0000015781,0.0000015745,0.0000015691,0.0000015632, +0.0000015573,0.0000015509,0.0000015448,0.0000015411,0.0000015415, +0.0000015470,0.0000015547,0.0000015605,0.0000015618,0.0000015590, +0.0000015546,0.0000015518,0.0000015509,0.0000015506,0.0000015498, +0.0000015475,0.0000015432,0.0000015359,0.0000015246,0.0000015101, +0.0000014941,0.0000014789,0.0000014673,0.0000014624,0.0000014624, +0.0000014625,0.0000014613,0.0000014611,0.0000014624,0.0000014647, +0.0000014657,0.0000014648,0.0000014633,0.0000014645,0.0000014681, +0.0000014713,0.0000014721,0.0000014731,0.0000014739,0.0000014748, +0.0000014755,0.0000014734,0.0000014690,0.0000014638,0.0000014596, +0.0000014571,0.0000014546,0.0000014504,0.0000014430,0.0000014349, +0.0000014292,0.0000014255,0.0000014253,0.0000014340,0.0000014530, +0.0000014868,0.0000015214,0.0000015335,0.0000015333,0.0000015307, +0.0000015296,0.0000015300,0.0000015315,0.0000015330,0.0000015352, +0.0000015358,0.0000015337,0.0000015305,0.0000015271,0.0000015246, +0.0000015236,0.0000015222,0.0000015209,0.0000015190,0.0000015168, +0.0000015145,0.0000015145,0.0000015216,0.0000015377,0.0000015585, +0.0000015756,0.0000015854,0.0000015919,0.0000015984,0.0000016026, +0.0000016055,0.0000016138,0.0000016258,0.0000016341,0.0000016371, +0.0000016373,0.0000016356,0.0000016314,0.0000016243,0.0000016163, +0.0000016104,0.0000016021,0.0000015864,0.0000015692,0.0000015584, +0.0000015549,0.0000015530,0.0000015537,0.0000015555,0.0000015576, +0.0000015589,0.0000015592,0.0000015599,0.0000015618,0.0000015636, +0.0000015652,0.0000015664,0.0000015670,0.0000015674,0.0000015677, +0.0000015679,0.0000015682,0.0000015701,0.0000015765,0.0000015897, +0.0000016060,0.0000016186,0.0000016273,0.0000016436,0.0000016772, +0.0000017210,0.0000017496,0.0000017659,0.0000018003,0.0000018334, +0.0000018372,0.0000018415,0.0000018564,0.0000018757,0.0000018928, +0.0000019053,0.0000019144,0.0000019226,0.0000019323,0.0000019448, +0.0000019599,0.0000019718,0.0000019707,0.0000019545,0.0000019459, +0.0000019409,0.0000019204,0.0000019012,0.0000018996,0.0000019101, +0.0000019219,0.0000019308,0.0000019345,0.0000019291,0.0000019230, +0.0000019203,0.0000019174,0.0000019120,0.0000019071,0.0000018743, +0.0000017931,0.0000017476,0.0000017752,0.0000018532,0.0000019141, +0.0000019559,0.0000020039,0.0000020154,0.0000020146,0.0000020010, +0.0000019666,0.0000019378,0.0000019339,0.0000019316,0.0000019262, +0.0000019421,0.0000019752,0.0000019823,0.0000019825,0.0000019993, +0.0000020145,0.0000020187,0.0000020150,0.0000019899,0.0000019467, +0.0000018731,0.0000017821,0.0000017843,0.0000018914,0.0000019210, +0.0000019109,0.0000018979,0.0000018932,0.0000018914,0.0000018935, +0.0000018979,0.0000018916,0.0000018560,0.0000018045,0.0000017733, +0.0000017633,0.0000017563,0.0000017489,0.0000017424,0.0000017379, +0.0000017348,0.0000017328,0.0000017310,0.0000017351,0.0000017493, +0.0000017716,0.0000017985,0.0000018241,0.0000018435,0.0000018550, +0.0000018596,0.0000018616,0.0000018618,0.0000018594,0.0000018561, +0.0000018524,0.0000018482,0.0000018445,0.0000018405,0.0000018347, +0.0000018260,0.0000018158,0.0000018038,0.0000017930,0.0000017930, +0.0000018093,0.0000018378,0.0000018634,0.0000018774,0.0000018863, +0.0000018930,0.0000018866,0.0000018615,0.0000018397,0.0000018286, +0.0000018216,0.0000018287,0.0000018515,0.0000018589,0.0000018459, +0.0000018262,0.0000017938,0.0000017535,0.0000017266,0.0000017112, +0.0000016986,0.0000016889,0.0000016785,0.0000016640,0.0000016513, +0.0000016482,0.0000016537,0.0000016639,0.0000016742,0.0000016806, +0.0000016810,0.0000016760,0.0000016684,0.0000016626,0.0000016610, +0.0000016622,0.0000016645,0.0000016662,0.0000016688,0.0000016729, +0.0000016759,0.0000016755,0.0000016705,0.0000016607,0.0000016513, +0.0000016476,0.0000016477,0.0000016416,0.0000016195,0.0000015976, +0.0000015897,0.0000015894,0.0000015810,0.0000015734,0.0000015829, +0.0000015880,0.0000015819,0.0000015804,0.0000015770,0.0000015830, +0.0000016071,0.0000016172,0.0000016238,0.0000016454,0.0000016706, +0.0000016815,0.0000016843,0.0000016882,0.0000016972,0.0000017080, +0.0000017172,0.0000017252,0.0000017307,0.0000017311,0.0000017284, +0.0000017217,0.0000017032,0.0000016769,0.0000016591,0.0000016468, +0.0000016403,0.0000016184,0.0000015970,0.0000015843,0.0000015814, +0.0000015826,0.0000015867,0.0000016050,0.0000016286,0.0000016413, +0.0000016397,0.0000016317,0.0000016274,0.0000016379,0.0000016403, +0.0000016131,0.0000015815,0.0000015675,0.0000015609,0.0000015754, +0.0000016077,0.0000016268,0.0000016310,0.0000016359,0.0000016362, +0.0000016236,0.0000016118,0.0000016109,0.0000016153,0.0000016213, +0.0000016280,0.0000016393,0.0000016507,0.0000016546,0.0000016549, +0.0000016579,0.0000016599,0.0000016560,0.0000016431,0.0000016335, +0.0000016367,0.0000016546,0.0000016729,0.0000016622,0.0000016444, +0.0000016266,0.0000015871,0.0000016095,0.0000016538,0.0000016682, +0.0000016645,0.0000016253,0.0000015918,0.0000015817,0.0000015764, +0.0000015704,0.0000015770,0.0000015893,0.0000016031,0.0000016186, +0.0000016278,0.0000016296,0.0000016267,0.0000016250,0.0000016322, +0.0000016459,0.0000016436,0.0000016196,0.0000016274,0.0000016751, +0.0000017103,0.0000017417,0.0000017663,0.0000017733,0.0000017640, +0.0000017572,0.0000017472,0.0000017133,0.0000016915,0.0000016972, +0.0000017240,0.0000017294,0.0000017236,0.0000016957,0.0000016680, +0.0000016727,0.0000016997,0.0000016905,0.0000016615,0.0000016577, +0.0000016713,0.0000016696,0.0000016454,0.0000016308,0.0000016300, +0.0000016328,0.0000016375,0.0000016500,0.0000016532,0.0000016459, +0.0000016469,0.0000016659,0.0000016883,0.0000017101,0.0000017315, +0.0000017425,0.0000017517,0.0000017656,0.0000017638,0.0000017351, +0.0000017023,0.0000016831,0.0000016740,0.0000016593,0.0000016443, +0.0000016527,0.0000016841,0.0000017078,0.0000017141,0.0000017158, +0.0000017213,0.0000017283,0.0000017263,0.0000017093,0.0000016902, +0.0000016765,0.0000016753,0.0000017045,0.0000017420,0.0000017732, +0.0000017923,0.0000017927,0.0000017883,0.0000017890,0.0000017918, +0.0000017924,0.0000017930,0.0000017931,0.0000017927,0.0000017916, +0.0000017940,0.0000017966,0.0000018034,0.0000018639,0.0000019277, +0.0000019525,0.0000019542,0.0000019429,0.0000019066,0.0000018557, +0.0000018258,0.0000018231,0.0000018272,0.0000018307,0.0000018317, +0.0000018295,0.0000018247,0.0000018183,0.0000018133,0.0000018116, +0.0000018118,0.0000018112,0.0000018032,0.0000017915,0.0000017875, +0.0000017879,0.0000017852,0.0000017950,0.0000018225,0.0000018548, +0.0000019025,0.0000019263,0.0000018859,0.0000018309,0.0000018009, +0.0000017652,0.0000017548,0.0000017670,0.0000017842,0.0000017961, +0.0000018051,0.0000018096,0.0000018097,0.0000018055,0.0000017979, +0.0000017914,0.0000017820,0.0000017699,0.0000017537,0.0000017521, +0.0000017834,0.0000018270,0.0000018530,0.0000018652,0.0000018794, +0.0000018819,0.0000018581,0.0000018277,0.0000018391,0.0000018654, +0.0000018798,0.0000018926,0.0000018821,0.0000018654,0.0000018907, +0.0000019080,0.0000018529,0.0000018483,0.0000018358,0.0000017092, +0.0000016713,0.0000016689,0.0000016678,0.0000016264,0.0000015896, +0.0000016181,0.0000016282,0.0000016439,0.0000016747,0.0000016738, +0.0000016695,0.0000016741,0.0000017068,0.0000017309,0.0000017273, +0.0000016755,0.0000016541,0.0000016629,0.0000016466,0.0000016105, +0.0000015873,0.0000015733,0.0000015449,0.0000015367,0.0000015331, +0.0000015167,0.0000015116,0.0000015091,0.0000015011,0.0000014716, +0.0000014467,0.0000014447,0.0000014382,0.0000014302,0.0000014310, +0.0000014421,0.0000014555,0.0000014740,0.0000015104,0.0000015411, +0.0000015484,0.0000015485,0.0000015489,0.0000015498,0.0000015509, +0.0000015525,0.0000015570,0.0000015647,0.0000015713,0.0000015735, +0.0000015735,0.0000015745,0.0000015778,0.0000015810,0.0000015820, +0.0000015812,0.0000015780,0.0000015730,0.0000015667,0.0000015596, +0.0000015532,0.0000015514,0.0000015564,0.0000015697,0.0000015863, +0.0000016002,0.0000016084,0.0000016112,0.0000016108,0.0000016099, +0.0000016097,0.0000016101,0.0000016103,0.0000016101,0.0000016094, +0.0000016071,0.0000016008,0.0000015877,0.0000015662,0.0000015389, +0.0000015124,0.0000014929,0.0000014821,0.0000014762,0.0000014717, +0.0000014682,0.0000014673,0.0000014688,0.0000014711,0.0000014722, +0.0000014714,0.0000014706,0.0000014723,0.0000014754,0.0000014777, +0.0000014784,0.0000014801,0.0000014820,0.0000014862,0.0000014936, +0.0000015003,0.0000015048,0.0000015055,0.0000015016,0.0000014921, +0.0000014796,0.0000014687,0.0000014613,0.0000014539,0.0000014427, +0.0000014284,0.0000014179,0.0000014131,0.0000014204,0.0000014407, +0.0000014780,0.0000015162,0.0000015300,0.0000015303,0.0000015305, +0.0000015323,0.0000015352,0.0000015367,0.0000015362,0.0000015357, +0.0000015353,0.0000015348,0.0000015332,0.0000015311,0.0000015290, +0.0000015266,0.0000015232,0.0000015200,0.0000015163,0.0000015132, +0.0000015134,0.0000015211,0.0000015372,0.0000015572,0.0000015739, +0.0000015844,0.0000015914,0.0000015961,0.0000015985,0.0000016022, +0.0000016102,0.0000016191,0.0000016252,0.0000016275,0.0000016269, +0.0000016236,0.0000016180,0.0000016111,0.0000015999,0.0000015826, +0.0000015671,0.0000015600,0.0000015563,0.0000015537,0.0000015537, +0.0000015566,0.0000015591,0.0000015597,0.0000015594,0.0000015594, +0.0000015608,0.0000015629,0.0000015649,0.0000015667,0.0000015683, +0.0000015702,0.0000015720,0.0000015727,0.0000015722,0.0000015706, +0.0000015697,0.0000015700,0.0000015760,0.0000015890,0.0000016072, +0.0000016204,0.0000016301,0.0000016528,0.0000016927,0.0000017365, +0.0000017526,0.0000017724,0.0000018082,0.0000018325,0.0000018340, +0.0000018349,0.0000018459,0.0000018624,0.0000018799,0.0000018956, +0.0000019084,0.0000019191,0.0000019297,0.0000019413,0.0000019484, +0.0000019453,0.0000019410,0.0000019379,0.0000019204,0.0000018995, +0.0000018941,0.0000018993,0.0000019101,0.0000019196,0.0000019271, +0.0000019314,0.0000019289,0.0000019262,0.0000019201,0.0000019115, +0.0000019076,0.0000018794,0.0000017849,0.0000017228,0.0000017288, +0.0000017881,0.0000018819,0.0000019401,0.0000019892,0.0000020129, +0.0000020148,0.0000020140,0.0000019945,0.0000019546,0.0000019347, +0.0000019339,0.0000019265,0.0000019257,0.0000019538,0.0000019810, +0.0000019812,0.0000019877,0.0000020093,0.0000020232,0.0000020242, +0.0000020020,0.0000019597,0.0000018876,0.0000017913,0.0000017800, +0.0000018786,0.0000019206,0.0000019138,0.0000018997,0.0000018957, +0.0000018886,0.0000018862,0.0000018918,0.0000018939,0.0000018697, +0.0000018203,0.0000017814,0.0000017661,0.0000017578,0.0000017499, +0.0000017445,0.0000017405,0.0000017344,0.0000017287,0.0000017250, +0.0000017246,0.0000017286,0.0000017386,0.0000017532,0.0000017710, +0.0000017919,0.0000018126,0.0000018289,0.0000018403,0.0000018473, +0.0000018493,0.0000018478,0.0000018438,0.0000018398,0.0000018366, +0.0000018344,0.0000018307,0.0000018244,0.0000018174,0.0000018084, +0.0000017973,0.0000017939,0.0000018091,0.0000018379,0.0000018638, +0.0000018771,0.0000018846,0.0000018916,0.0000018883,0.0000018664, +0.0000018388,0.0000018236,0.0000018213,0.0000018391,0.0000018625, +0.0000018607,0.0000018419,0.0000018201,0.0000017851,0.0000017471, +0.0000017236,0.0000017077,0.0000016954,0.0000016856,0.0000016709, +0.0000016528,0.0000016406,0.0000016379,0.0000016415,0.0000016511, +0.0000016638,0.0000016745,0.0000016789,0.0000016772,0.0000016708, +0.0000016636,0.0000016603,0.0000016609,0.0000016637,0.0000016664, +0.0000016690,0.0000016712,0.0000016716,0.0000016690,0.0000016621, +0.0000016539,0.0000016494,0.0000016485,0.0000016479,0.0000016326, +0.0000016069,0.0000015900,0.0000015891,0.0000015854,0.0000015741, +0.0000015772,0.0000015860,0.0000015803,0.0000015772,0.0000015766, +0.0000015767,0.0000015947,0.0000016114,0.0000016175,0.0000016294, +0.0000016528,0.0000016721,0.0000016798,0.0000016830,0.0000016914, +0.0000017036,0.0000017139,0.0000017215,0.0000017278,0.0000017297, +0.0000017277,0.0000017228,0.0000017112,0.0000016886,0.0000016662, +0.0000016541,0.0000016473,0.0000016291,0.0000016063,0.0000015891, +0.0000015841,0.0000015867,0.0000015870,0.0000015879,0.0000016009, +0.0000016241,0.0000016376,0.0000016356,0.0000016280,0.0000016317, +0.0000016451,0.0000016275,0.0000015915,0.0000015722,0.0000015613, +0.0000015634,0.0000015913,0.0000016176,0.0000016261,0.0000016322, +0.0000016364,0.0000016284,0.0000016131,0.0000016077,0.0000016095, +0.0000016151,0.0000016229,0.0000016333,0.0000016421,0.0000016446, +0.0000016466,0.0000016507,0.0000016502,0.0000016414,0.0000016311, +0.0000016311,0.0000016443,0.0000016653,0.0000016721,0.0000016519, +0.0000016404,0.0000016078,0.0000015871,0.0000016302,0.0000016592, +0.0000016662,0.0000016525,0.0000016097,0.0000015809,0.0000015726, +0.0000015702,0.0000015699,0.0000015811,0.0000015927,0.0000016063, +0.0000016220,0.0000016283,0.0000016246,0.0000016184,0.0000016168, +0.0000016229,0.0000016399,0.0000016467,0.0000016241,0.0000016234, +0.0000016709,0.0000017088,0.0000017385,0.0000017616,0.0000017651, +0.0000017587,0.0000017530,0.0000017376,0.0000017047,0.0000016902, +0.0000017031,0.0000017279,0.0000017270,0.0000017056,0.0000016715, +0.0000016574,0.0000016783,0.0000016986,0.0000016761,0.0000016569, +0.0000016624,0.0000016734,0.0000016594,0.0000016351,0.0000016260, +0.0000016241,0.0000016214,0.0000016287,0.0000016473,0.0000016491, +0.0000016406,0.0000016429,0.0000016623,0.0000016893,0.0000017202, +0.0000017397,0.0000017509,0.0000017645,0.0000017659,0.0000017409, +0.0000017079,0.0000016864,0.0000016753,0.0000016590,0.0000016467, +0.0000016609,0.0000016910,0.0000017046,0.0000017050,0.0000017064, +0.0000017133,0.0000017236,0.0000017285,0.0000017205,0.0000016995, +0.0000016827,0.0000016747,0.0000016877,0.0000017229,0.0000017551, +0.0000017824,0.0000017941,0.0000017907,0.0000017880,0.0000017892, +0.0000017915,0.0000017964,0.0000017991,0.0000017960,0.0000017909, +0.0000017881,0.0000017931,0.0000018006,0.0000018092,0.0000018590, +0.0000019009,0.0000019048,0.0000018748,0.0000018333,0.0000018218, +0.0000018259,0.0000018302,0.0000018288,0.0000018237,0.0000018173, +0.0000018133,0.0000018134,0.0000018147,0.0000018162,0.0000018154, +0.0000018068,0.0000017938,0.0000017863,0.0000017858,0.0000017841, +0.0000017862,0.0000018069,0.0000018350,0.0000018582,0.0000018980, +0.0000019439,0.0000019172,0.0000018411,0.0000018080,0.0000017679, +0.0000017510,0.0000017608,0.0000017794,0.0000017964,0.0000018062, +0.0000018137,0.0000018135,0.0000018041,0.0000017934,0.0000017850, +0.0000017771,0.0000017669,0.0000017539,0.0000017519,0.0000017855, +0.0000018263,0.0000018575,0.0000018807,0.0000018860,0.0000018784, +0.0000018585,0.0000018287,0.0000018202,0.0000018476,0.0000018703, +0.0000018833,0.0000018933,0.0000018722,0.0000018620,0.0000019007, +0.0000018965,0.0000018438,0.0000018496,0.0000017816,0.0000016757, +0.0000016699,0.0000016741,0.0000016594,0.0000015985,0.0000016039, +0.0000016273,0.0000016355,0.0000016715,0.0000016749,0.0000016711, +0.0000016732,0.0000017031,0.0000017285,0.0000017314,0.0000016835, +0.0000016558,0.0000016625,0.0000016459,0.0000016098,0.0000015887, +0.0000015741,0.0000015446,0.0000015375,0.0000015334,0.0000015164, +0.0000015124,0.0000015101,0.0000014975,0.0000014628,0.0000014445, +0.0000014437,0.0000014350,0.0000014313,0.0000014380,0.0000014519, +0.0000014644,0.0000014836,0.0000015174,0.0000015415,0.0000015497, +0.0000015521,0.0000015532,0.0000015536,0.0000015528,0.0000015506, +0.0000015485,0.0000015496,0.0000015584,0.0000015690,0.0000015755, +0.0000015785,0.0000015808,0.0000015832,0.0000015844,0.0000015840, +0.0000015813,0.0000015766,0.0000015703,0.0000015631,0.0000015571, +0.0000015572,0.0000015678,0.0000015860,0.0000016054,0.0000016214, +0.0000016299,0.0000016310,0.0000016288,0.0000016264,0.0000016253, +0.0000016252,0.0000016261,0.0000016286,0.0000016324,0.0000016363, +0.0000016376,0.0000016358,0.0000016291,0.0000016164,0.0000015970, +0.0000015726,0.0000015483,0.0000015290,0.0000015162,0.0000015087, +0.0000015056,0.0000015071,0.0000015120,0.0000015186,0.0000015240, +0.0000015271,0.0000015301,0.0000015322,0.0000015321,0.0000015269, +0.0000015168,0.0000015059,0.0000014960,0.0000014921,0.0000014919, +0.0000014936,0.0000015043,0.0000015190,0.0000015322,0.0000015380, +0.0000015353,0.0000015247,0.0000015066,0.0000014858,0.0000014671, +0.0000014495,0.0000014294,0.0000014128,0.0000014063,0.0000014172, +0.0000014413,0.0000014752,0.0000015067,0.0000015258,0.0000015329, +0.0000015354,0.0000015363,0.0000015366,0.0000015383,0.0000015374, +0.0000015328,0.0000015251,0.0000015213,0.0000015220,0.0000015248, +0.0000015236,0.0000015255,0.0000015227,0.0000015174,0.0000015133, +0.0000015130,0.0000015202,0.0000015355,0.0000015541,0.0000015709, +0.0000015828,0.0000015898,0.0000015927,0.0000015938,0.0000015965, +0.0000016017,0.0000016071,0.0000016103,0.0000016112,0.0000016093, +0.0000016037,0.0000015930,0.0000015785,0.0000015674,0.0000015631, +0.0000015601,0.0000015560,0.0000015570,0.0000015616,0.0000015631, +0.0000015602,0.0000015575,0.0000015574,0.0000015602,0.0000015637, +0.0000015672,0.0000015712,0.0000015762,0.0000015823,0.0000015883, +0.0000015924,0.0000015935,0.0000015915,0.0000015861,0.0000015787, +0.0000015724,0.0000015712,0.0000015776,0.0000015923,0.0000016105, +0.0000016227,0.0000016359,0.0000016684,0.0000017138,0.0000017456, +0.0000017538,0.0000017755,0.0000018076,0.0000018298,0.0000018325, +0.0000018368,0.0000018454,0.0000018591,0.0000018750,0.0000018905, +0.0000019039,0.0000019156,0.0000019257,0.0000019312,0.0000019317, +0.0000019274,0.0000019121,0.0000018966,0.0000018941,0.0000018971, +0.0000019026,0.0000019101,0.0000019157,0.0000019211,0.0000019245, +0.0000019230,0.0000019170,0.0000019100,0.0000019081,0.0000018855, +0.0000017803,0.0000017213,0.0000017217,0.0000017459,0.0000018319, +0.0000019265,0.0000019726,0.0000020084,0.0000020115,0.0000020122, +0.0000020107,0.0000019797,0.0000019402,0.0000019336,0.0000019314, +0.0000019233,0.0000019359,0.0000019712,0.0000019869,0.0000019837, +0.0000020003,0.0000020224,0.0000020297,0.0000020134,0.0000019717, +0.0000019013,0.0000018060,0.0000017818,0.0000018603,0.0000019201, +0.0000019162,0.0000019000,0.0000018950,0.0000018864,0.0000018824, +0.0000018856,0.0000018915,0.0000018814,0.0000018411,0.0000017955, +0.0000017710,0.0000017608,0.0000017535,0.0000017477,0.0000017422, +0.0000017316,0.0000017187,0.0000017120,0.0000017115,0.0000017146, +0.0000017220,0.0000017306,0.0000017385,0.0000017486,0.0000017623, +0.0000017770,0.0000017910,0.0000018042,0.0000018159,0.0000018249, +0.0000018307,0.0000018322,0.0000018309,0.0000018280,0.0000018248, +0.0000018210,0.0000018174,0.0000018113,0.0000018000,0.0000017954, +0.0000018088,0.0000018375,0.0000018638,0.0000018767,0.0000018829, +0.0000018906,0.0000018914,0.0000018713,0.0000018407,0.0000018222, +0.0000018273,0.0000018527,0.0000018666,0.0000018579,0.0000018378, +0.0000018139,0.0000017768,0.0000017422,0.0000017210,0.0000017049, +0.0000016934,0.0000016812,0.0000016623,0.0000016440,0.0000016325, +0.0000016278,0.0000016294,0.0000016381,0.0000016517,0.0000016654, +0.0000016744,0.0000016770,0.0000016736,0.0000016665,0.0000016615, +0.0000016613,0.0000016639,0.0000016669,0.0000016689,0.0000016691, +0.0000016673,0.0000016624,0.0000016557,0.0000016516,0.0000016500, +0.0000016499,0.0000016427,0.0000016186,0.0000015938,0.0000015887, +0.0000015891,0.0000015778,0.0000015734,0.0000015817,0.0000015786, +0.0000015735,0.0000015748,0.0000015756,0.0000015842,0.0000016030, +0.0000016120,0.0000016206,0.0000016368,0.0000016595,0.0000016739, +0.0000016789,0.0000016859,0.0000016993,0.0000017114,0.0000017186, +0.0000017246,0.0000017284,0.0000017265,0.0000017213,0.0000017126, +0.0000016960,0.0000016731,0.0000016578,0.0000016496,0.0000016344, +0.0000016113,0.0000015903,0.0000015823,0.0000015870,0.0000015953, +0.0000015936,0.0000015883,0.0000015982,0.0000016216,0.0000016348, +0.0000016310,0.0000016288,0.0000016431,0.0000016387,0.0000016039, +0.0000015772,0.0000015639,0.0000015578,0.0000015757,0.0000016066, +0.0000016204,0.0000016273,0.0000016353,0.0000016311,0.0000016142, +0.0000016051,0.0000016048,0.0000016094,0.0000016184,0.0000016278, +0.0000016347,0.0000016374,0.0000016406,0.0000016421,0.0000016377, +0.0000016290,0.0000016261,0.0000016351,0.0000016549,0.0000016727, +0.0000016649,0.0000016457,0.0000016313,0.0000015897,0.0000015991, +0.0000016458,0.0000016604,0.0000016612,0.0000016361,0.0000015946, +0.0000015705,0.0000015653,0.0000015654,0.0000015702,0.0000015852, +0.0000015971,0.0000016110,0.0000016260,0.0000016274,0.0000016198, +0.0000016142,0.0000016133,0.0000016163,0.0000016315,0.0000016446, +0.0000016266,0.0000016193,0.0000016665,0.0000017073,0.0000017353, +0.0000017564,0.0000017578,0.0000017537,0.0000017477,0.0000017270, +0.0000016997,0.0000016897,0.0000017109,0.0000017269,0.0000017168, +0.0000016820,0.0000016567,0.0000016573,0.0000016843,0.0000016904, +0.0000016646,0.0000016578,0.0000016692,0.0000016707,0.0000016475, +0.0000016282,0.0000016232,0.0000016180,0.0000016130,0.0000016261, +0.0000016470,0.0000016453,0.0000016355,0.0000016416,0.0000016652, +0.0000017030,0.0000017340,0.0000017500,0.0000017632,0.0000017664, +0.0000017466,0.0000017136,0.0000016899,0.0000016767,0.0000016592, +0.0000016500,0.0000016678,0.0000016933,0.0000016977,0.0000016940, +0.0000016971,0.0000017064,0.0000017183,0.0000017276,0.0000017267, +0.0000017089,0.0000016895,0.0000016780,0.0000016780,0.0000017038, +0.0000017367,0.0000017640,0.0000017884,0.0000017948,0.0000017929, +0.0000017924,0.0000017991,0.0000018081,0.0000018121,0.0000018062, +0.0000017952,0.0000017879,0.0000017866,0.0000017978,0.0000018067, +0.0000018136,0.0000018235,0.0000018257,0.0000018256,0.0000018247, +0.0000018284,0.0000018266,0.0000018204,0.0000018132,0.0000018096, +0.0000018094,0.0000018119,0.0000018146,0.0000018138,0.0000018056, +0.0000017944,0.0000017881,0.0000017869,0.0000017846,0.0000017846, +0.0000017981,0.0000018263,0.0000018416,0.0000018435,0.0000018780, +0.0000019447,0.0000019422,0.0000018531,0.0000018139,0.0000017712, +0.0000017472,0.0000017565,0.0000017783,0.0000018028,0.0000018117, +0.0000018149,0.0000018143,0.0000018030,0.0000017866,0.0000017798, +0.0000017737,0.0000017673,0.0000017597,0.0000017603,0.0000017905, +0.0000018304,0.0000018634,0.0000018850,0.0000018845,0.0000018605, +0.0000018346,0.0000018175,0.0000018099,0.0000018236,0.0000018564, +0.0000018722,0.0000018853,0.0000018849,0.0000018545,0.0000018692, +0.0000019060,0.0000018732,0.0000018467,0.0000018380,0.0000017229, +0.0000016716,0.0000016740,0.0000016800,0.0000016271,0.0000015950, +0.0000016261,0.0000016314,0.0000016649,0.0000016758,0.0000016722, +0.0000016726,0.0000016996,0.0000017255,0.0000017359,0.0000016942, +0.0000016584,0.0000016620,0.0000016468,0.0000016111,0.0000015910, +0.0000015762,0.0000015459,0.0000015391,0.0000015337,0.0000015167, +0.0000015133,0.0000015115,0.0000014945,0.0000014568,0.0000014451, +0.0000014435,0.0000014336,0.0000014325,0.0000014424,0.0000014577, +0.0000014706,0.0000014888,0.0000015163,0.0000015366,0.0000015471, +0.0000015506,0.0000015513,0.0000015513,0.0000015509,0.0000015502, +0.0000015489,0.0000015468,0.0000015457,0.0000015515,0.0000015640, +0.0000015758,0.0000015830,0.0000015866,0.0000015874,0.0000015872, +0.0000015852,0.0000015811,0.0000015752,0.0000015680,0.0000015605, +0.0000015597,0.0000015679,0.0000015834,0.0000016011,0.0000016174, +0.0000016281,0.0000016317,0.0000016312,0.0000016296,0.0000016284, +0.0000016281,0.0000016286,0.0000016306,0.0000016346,0.0000016403, +0.0000016468,0.0000016522,0.0000016546,0.0000016535,0.0000016479, +0.0000016374,0.0000016241,0.0000016106,0.0000015997,0.0000015929, +0.0000015912,0.0000015932,0.0000016002,0.0000016091,0.0000016172, +0.0000016231,0.0000016270,0.0000016298,0.0000016311,0.0000016294, +0.0000016227,0.0000016112,0.0000015966,0.0000015775,0.0000015543, +0.0000015294,0.0000015098,0.0000015009,0.0000015005,0.0000015116, +0.0000015277,0.0000015444,0.0000015562,0.0000015571,0.0000015443, +0.0000015169,0.0000014794,0.0000014472,0.0000014235,0.0000014101, +0.0000014072,0.0000014197,0.0000014408,0.0000014639,0.0000014840, +0.0000014991,0.0000015079,0.0000015099,0.0000015064,0.0000014969, +0.0000014850,0.0000014759,0.0000014731,0.0000014778,0.0000014895, +0.0000015047,0.0000015167,0.0000015238,0.0000015203,0.0000015194, +0.0000015154,0.0000015143,0.0000015190,0.0000015316,0.0000015498, +0.0000015675,0.0000015802,0.0000015870,0.0000015890,0.0000015889, +0.0000015893,0.0000015906,0.0000015915,0.0000015913,0.0000015883, +0.0000015814,0.0000015732,0.0000015682,0.0000015661,0.0000015627, +0.0000015590,0.0000015615,0.0000015679,0.0000015663,0.0000015567, +0.0000015514,0.0000015545,0.0000015631,0.0000015714,0.0000015781, +0.0000015853,0.0000015940,0.0000016029,0.0000016104,0.0000016154, +0.0000016178,0.0000016177,0.0000016141,0.0000016063,0.0000015954, +0.0000015830,0.0000015726,0.0000015705,0.0000015802,0.0000015985, +0.0000016155,0.0000016261,0.0000016485,0.0000016888,0.0000017303, +0.0000017445,0.0000017505,0.0000017712,0.0000017954,0.0000018172, +0.0000018322,0.0000018433,0.0000018544,0.0000018672,0.0000018812, +0.0000018938,0.0000019036,0.0000019107,0.0000019137,0.0000019109, +0.0000019023,0.0000018973,0.0000019011,0.0000019061,0.0000019077, +0.0000019090,0.0000019117,0.0000019122,0.0000019146,0.0000019145, +0.0000019125,0.0000019101,0.0000019126,0.0000018840,0.0000017651, +0.0000017198,0.0000017314,0.0000017395,0.0000017879,0.0000018968, +0.0000019617,0.0000020029,0.0000020085,0.0000020036,0.0000020117, +0.0000020025,0.0000019571,0.0000019328,0.0000019337,0.0000019287, +0.0000019299,0.0000019560,0.0000019884,0.0000019891,0.0000019935, +0.0000020189,0.0000020332,0.0000020230,0.0000019837,0.0000019127, +0.0000018131,0.0000017761,0.0000018458,0.0000019167,0.0000019174, +0.0000018989,0.0000018910,0.0000018816,0.0000018775,0.0000018801, +0.0000018883,0.0000018895,0.0000018637,0.0000018168,0.0000017813, +0.0000017654,0.0000017574,0.0000017513,0.0000017442,0.0000017306, +0.0000017119,0.0000016986,0.0000016956,0.0000016973,0.0000017033, +0.0000017122,0.0000017211,0.0000017291,0.0000017363,0.0000017427, +0.0000017499,0.0000017598,0.0000017716,0.0000017856,0.0000018009, +0.0000018147,0.0000018232,0.0000018242,0.0000018211,0.0000018179, +0.0000018161,0.0000018118,0.0000018014,0.0000017962,0.0000018074, +0.0000018361,0.0000018632,0.0000018765,0.0000018820,0.0000018897, +0.0000018922,0.0000018755,0.0000018462,0.0000018313,0.0000018408, +0.0000018654,0.0000018717,0.0000018544,0.0000018335,0.0000018075, +0.0000017694,0.0000017384,0.0000017186,0.0000017028,0.0000016911, +0.0000016755,0.0000016541,0.0000016330,0.0000016182,0.0000016143, +0.0000016172,0.0000016261,0.0000016390,0.0000016535,0.0000016669, +0.0000016748,0.0000016753,0.0000016713,0.0000016662,0.0000016639, +0.0000016648,0.0000016671,0.0000016682,0.0000016672,0.0000016631, +0.0000016571,0.0000016531,0.0000016524,0.0000016515,0.0000016489, +0.0000016301,0.0000016012,0.0000015888,0.0000015905,0.0000015827, +0.0000015719,0.0000015764,0.0000015754,0.0000015700,0.0000015713, +0.0000015748,0.0000015782,0.0000015930,0.0000016056,0.0000016145, +0.0000016270,0.0000016475,0.0000016671,0.0000016749,0.0000016811, +0.0000016965,0.0000017103,0.0000017170,0.0000017226,0.0000017268, +0.0000017246,0.0000017177,0.0000017099,0.0000016973,0.0000016771, +0.0000016592,0.0000016492,0.0000016342,0.0000016109,0.0000015880, +0.0000015780,0.0000015840,0.0000016002,0.0000016075,0.0000015999, +0.0000015899,0.0000015972,0.0000016207,0.0000016312,0.0000016290, +0.0000016385,0.0000016424,0.0000016167,0.0000015829,0.0000015667, +0.0000015576,0.0000015640,0.0000015938,0.0000016135,0.0000016218, +0.0000016313,0.0000016303,0.0000016153,0.0000016037,0.0000016008, +0.0000016044,0.0000016132,0.0000016221,0.0000016279,0.0000016306, +0.0000016322,0.0000016316,0.0000016273,0.0000016231,0.0000016265, +0.0000016435,0.0000016657,0.0000016728,0.0000016535,0.0000016416, +0.0000016112,0.0000015821,0.0000016209,0.0000016537,0.0000016570, +0.0000016527,0.0000016173,0.0000015812,0.0000015627,0.0000015605, +0.0000015615,0.0000015723,0.0000015913,0.0000016028,0.0000016174, +0.0000016285,0.0000016260,0.0000016172,0.0000016146,0.0000016154, +0.0000016161,0.0000016245,0.0000016422,0.0000016295,0.0000016158, +0.0000016622,0.0000017049,0.0000017318,0.0000017514,0.0000017518, +0.0000017493,0.0000017397,0.0000017175,0.0000016954,0.0000016924, +0.0000017168,0.0000017238,0.0000016986,0.0000016632,0.0000016513, +0.0000016608,0.0000016888,0.0000016804,0.0000016598,0.0000016619, +0.0000016728,0.0000016623,0.0000016358,0.0000016241,0.0000016204, +0.0000016124,0.0000016114,0.0000016309,0.0000016478,0.0000016389, +0.0000016325,0.0000016439,0.0000016804,0.0000017229,0.0000017480, +0.0000017622,0.0000017669,0.0000017518,0.0000017193,0.0000016934, +0.0000016782,0.0000016596,0.0000016534,0.0000016724,0.0000016911, +0.0000016888,0.0000016841,0.0000016900,0.0000017025,0.0000017156, +0.0000017263,0.0000017288,0.0000017162,0.0000016960,0.0000016827, +0.0000016774,0.0000016874,0.0000017183,0.0000017454,0.0000017689, +0.0000017910,0.0000018005,0.0000018037,0.0000018089,0.0000018154, +0.0000018198,0.0000018166,0.0000018021,0.0000017910,0.0000017853, +0.0000017889,0.0000018048,0.0000018144,0.0000018169,0.0000018207, +0.0000018270,0.0000018275,0.0000018198,0.0000018105,0.0000018072, +0.0000018080,0.0000018093,0.0000018081,0.0000018047,0.0000017969, +0.0000017897,0.0000017873,0.0000017875,0.0000017853,0.0000017854, +0.0000017982,0.0000018234,0.0000018400,0.0000018380,0.0000018309, +0.0000018639,0.0000019453,0.0000019546,0.0000018642,0.0000018177, +0.0000017770,0.0000017433,0.0000017541,0.0000017819,0.0000018041, +0.0000018096,0.0000018064,0.0000018003,0.0000017917,0.0000017810, +0.0000017756,0.0000017755,0.0000017713,0.0000017669,0.0000017721, +0.0000018012,0.0000018393,0.0000018736,0.0000018825,0.0000018650, +0.0000018328,0.0000018084,0.0000017988,0.0000017979,0.0000018042, +0.0000018330,0.0000018616,0.0000018706,0.0000018771,0.0000018624, +0.0000018479,0.0000018905,0.0000018961,0.0000018486,0.0000018518, +0.0000017886,0.0000016810,0.0000016719,0.0000016834,0.0000016633, +0.0000016000,0.0000016189,0.0000016321,0.0000016536,0.0000016769, +0.0000016741,0.0000016723,0.0000016966,0.0000017223,0.0000017394, +0.0000017067,0.0000016628,0.0000016612,0.0000016489,0.0000016145, +0.0000015941,0.0000015786,0.0000015477,0.0000015407,0.0000015343, +0.0000015173,0.0000015142,0.0000015127,0.0000014929,0.0000014539, +0.0000014459,0.0000014427,0.0000014329,0.0000014344,0.0000014455, +0.0000014617,0.0000014755,0.0000014909,0.0000015105,0.0000015262, +0.0000015332,0.0000015340,0.0000015320,0.0000015291,0.0000015276, +0.0000015291,0.0000015348,0.0000015416,0.0000015450,0.0000015440, +0.0000015480,0.0000015596,0.0000015753,0.0000015864,0.0000015903, +0.0000015908,0.0000015892,0.0000015862,0.0000015816,0.0000015754, +0.0000015675,0.0000015635,0.0000015662,0.0000015742,0.0000015846, +0.0000015966,0.0000016085,0.0000016196,0.0000016278,0.0000016310, +0.0000016310,0.0000016301,0.0000016291,0.0000016283,0.0000016282, +0.0000016294,0.0000016329,0.0000016399,0.0000016492,0.0000016570, +0.0000016614,0.0000016615,0.0000016585,0.0000016547,0.0000016514, +0.0000016498,0.0000016499,0.0000016514,0.0000016539,0.0000016571, +0.0000016601,0.0000016621,0.0000016632,0.0000016640,0.0000016647, +0.0000016654,0.0000016656,0.0000016649,0.0000016642,0.0000016624, +0.0000016564,0.0000016444,0.0000016247,0.0000015994,0.0000015725, +0.0000015477,0.0000015298,0.0000015213,0.0000015197,0.0000015282, +0.0000015456,0.0000015580,0.0000015578,0.0000015291,0.0000014773, +0.0000014394,0.0000014189,0.0000014103,0.0000014090,0.0000014142, +0.0000014223,0.0000014289,0.0000014341,0.0000014356,0.0000014332, +0.0000014285,0.0000014243,0.0000014215,0.0000014211,0.0000014242, +0.0000014331,0.0000014495,0.0000014724,0.0000014959,0.0000015109, +0.0000015213,0.0000015192,0.0000015174,0.0000015152,0.0000015158, +0.0000015272,0.0000015453,0.0000015635,0.0000015768,0.0000015838, +0.0000015858,0.0000015850,0.0000015835,0.0000015818,0.0000015796, +0.0000015765,0.0000015716,0.0000015688,0.0000015673,0.0000015641, +0.0000015613,0.0000015648,0.0000015721,0.0000015688,0.0000015553, +0.0000015486,0.0000015571,0.0000015734,0.0000015851,0.0000015919, +0.0000016007,0.0000016123,0.0000016213,0.0000016250,0.0000016252, +0.0000016245,0.0000016239,0.0000016217,0.0000016179,0.0000016133, +0.0000016064,0.0000015942,0.0000015788,0.0000015697,0.0000015719, +0.0000015874,0.0000016068,0.0000016213,0.0000016344,0.0000016650, +0.0000017051,0.0000017368,0.0000017408,0.0000017427,0.0000017563, +0.0000017765,0.0000017960,0.0000018136,0.0000018312,0.0000018498, +0.0000018683,0.0000018840,0.0000018955,0.0000019022,0.0000019035, +0.0000019004,0.0000018991,0.0000019045,0.0000019110,0.0000019153, +0.0000019191,0.0000019176,0.0000019152,0.0000019141,0.0000019132, +0.0000019136,0.0000019151,0.0000019137,0.0000018628,0.0000017433, +0.0000017239,0.0000017455,0.0000017467,0.0000017647,0.0000018594, +0.0000019552,0.0000019958,0.0000020053,0.0000019951,0.0000020028, +0.0000020141,0.0000019819,0.0000019361,0.0000019314,0.0000019332, +0.0000019301,0.0000019466,0.0000019805,0.0000019948,0.0000019916, +0.0000020141,0.0000020357,0.0000020309,0.0000019953,0.0000019268, +0.0000018285,0.0000017801,0.0000018306,0.0000019101,0.0000019161, +0.0000018996,0.0000018881,0.0000018772,0.0000018700,0.0000018730, +0.0000018838,0.0000018918,0.0000018822,0.0000018436,0.0000017998, +0.0000017737,0.0000017616,0.0000017550,0.0000017488,0.0000017365, +0.0000017155,0.0000016971,0.0000016903,0.0000016901,0.0000016926, +0.0000016993,0.0000017087,0.0000017178,0.0000017251,0.0000017302, +0.0000017338,0.0000017369,0.0000017420,0.0000017507,0.0000017639, +0.0000017830,0.0000018038,0.0000018164,0.0000018186,0.0000018162, +0.0000018143,0.0000018105,0.0000018016,0.0000017965,0.0000018066, +0.0000018342,0.0000018623,0.0000018766,0.0000018817,0.0000018883, +0.0000018913,0.0000018804,0.0000018544,0.0000018433,0.0000018579, +0.0000018775,0.0000018717,0.0000018492,0.0000018289,0.0000018004, +0.0000017628,0.0000017352,0.0000017164,0.0000017013,0.0000016881, +0.0000016689,0.0000016432,0.0000016197,0.0000016064,0.0000016038, +0.0000016069,0.0000016150,0.0000016272,0.0000016419,0.0000016569, +0.0000016696,0.0000016756,0.0000016754,0.0000016709,0.0000016664, +0.0000016655,0.0000016667,0.0000016670,0.0000016644,0.0000016589, +0.0000016546,0.0000016544,0.0000016535,0.0000016521,0.0000016394, +0.0000016115,0.0000015911,0.0000015901,0.0000015870,0.0000015734, +0.0000015719,0.0000015704,0.0000015663,0.0000015674,0.0000015730, +0.0000015756,0.0000015842,0.0000015981,0.0000016085,0.0000016212, +0.0000016388,0.0000016606,0.0000016709,0.0000016777,0.0000016974, +0.0000017110,0.0000017169,0.0000017223,0.0000017250,0.0000017211, +0.0000017121,0.0000017044,0.0000016956,0.0000016771,0.0000016584, +0.0000016469,0.0000016301,0.0000016026,0.0000015805,0.0000015761, +0.0000015851,0.0000016015,0.0000016112,0.0000016111,0.0000015986, +0.0000015858,0.0000015965,0.0000016208,0.0000016305,0.0000016365, +0.0000016466,0.0000016282,0.0000015903,0.0000015698,0.0000015602, +0.0000015591,0.0000015810,0.0000016060,0.0000016159,0.0000016244, +0.0000016272,0.0000016167,0.0000016029,0.0000015988,0.0000016004, +0.0000016069,0.0000016138,0.0000016183,0.0000016209,0.0000016229, +0.0000016240,0.0000016241,0.0000016239,0.0000016332,0.0000016542, +0.0000016719,0.0000016641,0.0000016454,0.0000016325,0.0000015883, +0.0000015922,0.0000016400,0.0000016533,0.0000016532,0.0000016377, +0.0000015987,0.0000015708,0.0000015586,0.0000015574,0.0000015596, +0.0000015776,0.0000015987,0.0000016092,0.0000016236,0.0000016299, +0.0000016234,0.0000016173,0.0000016208,0.0000016252,0.0000016214, +0.0000016222,0.0000016390,0.0000016307,0.0000016126,0.0000016580, +0.0000017023,0.0000017273,0.0000017466,0.0000017470,0.0000017438, +0.0000017304,0.0000017098,0.0000016929,0.0000016949,0.0000017192, +0.0000017147,0.0000016791,0.0000016521,0.0000016489,0.0000016723, +0.0000016907,0.0000016692,0.0000016592,0.0000016684,0.0000016712, +0.0000016494,0.0000016273,0.0000016220,0.0000016167,0.0000016098, +0.0000016138,0.0000016368,0.0000016430,0.0000016327,0.0000016321, +0.0000016577,0.0000017058,0.0000017427,0.0000017609,0.0000017674, +0.0000017558,0.0000017247,0.0000016972,0.0000016797,0.0000016603, +0.0000016563,0.0000016752,0.0000016866,0.0000016808,0.0000016772, +0.0000016857,0.0000017005,0.0000017151,0.0000017266,0.0000017300, +0.0000017210,0.0000017013,0.0000016875,0.0000016804,0.0000016799, +0.0000016993,0.0000017293,0.0000017510,0.0000017696,0.0000017887, +0.0000018007,0.0000018054,0.0000018080,0.0000018155,0.0000018194, +0.0000018085,0.0000017942,0.0000017864,0.0000017833,0.0000017930, +0.0000018094,0.0000018182,0.0000018205,0.0000018181,0.0000018099, +0.0000018048,0.0000018055,0.0000018065,0.0000018041,0.0000017973, +0.0000017871,0.0000017832,0.0000017840,0.0000017859,0.0000017846, +0.0000017858,0.0000017989,0.0000018249,0.0000018428,0.0000018480, +0.0000018418,0.0000018318,0.0000018686,0.0000019548,0.0000019661, +0.0000018716,0.0000018168,0.0000017813,0.0000017421,0.0000017528, +0.0000017854,0.0000018024,0.0000017965,0.0000017820,0.0000017820, +0.0000017804,0.0000017774,0.0000017743,0.0000017769,0.0000017810, +0.0000017812,0.0000017875,0.0000018158,0.0000018563,0.0000018862, +0.0000018806,0.0000018422,0.0000018020,0.0000017853,0.0000017860, +0.0000017931,0.0000017942,0.0000018064,0.0000018432,0.0000018617, +0.0000018582,0.0000018543,0.0000018397,0.0000018672,0.0000019046, +0.0000018624,0.0000018473,0.0000018365,0.0000017213,0.0000016712, +0.0000016774,0.0000016847,0.0000016275,0.0000016099,0.0000016316, +0.0000016422,0.0000016753,0.0000016764,0.0000016725,0.0000016931, +0.0000017199,0.0000017402,0.0000017196,0.0000016673,0.0000016617, +0.0000016520,0.0000016192,0.0000015978,0.0000015814,0.0000015496, +0.0000015420,0.0000015353,0.0000015184,0.0000015153,0.0000015135, +0.0000014924,0.0000014550,0.0000014482,0.0000014420,0.0000014321, +0.0000014361,0.0000014482,0.0000014649,0.0000014796,0.0000014918, +0.0000015044,0.0000015128,0.0000015151,0.0000015133,0.0000015082, +0.0000015014,0.0000014959,0.0000014938,0.0000014978,0.0000015097, +0.0000015267,0.0000015399,0.0000015468,0.0000015527,0.0000015608, +0.0000015734,0.0000015853,0.0000015904,0.0000015914,0.0000015899, +0.0000015868,0.0000015833,0.0000015778,0.0000015741,0.0000015737, +0.0000015755,0.0000015792,0.0000015838,0.0000015878,0.0000015936, +0.0000016024,0.0000016119,0.0000016187,0.0000016224,0.0000016236, +0.0000016236,0.0000016234,0.0000016236,0.0000016241,0.0000016250, +0.0000016276,0.0000016344,0.0000016462,0.0000016579,0.0000016640, +0.0000016656,0.0000016654,0.0000016651,0.0000016652,0.0000016658, +0.0000016670,0.0000016689,0.0000016716,0.0000016745,0.0000016766, +0.0000016782,0.0000016796,0.0000016811,0.0000016824,0.0000016831, +0.0000016834,0.0000016846,0.0000016857,0.0000016858,0.0000016846, +0.0000016807,0.0000016753,0.0000016691,0.0000016610,0.0000016478, +0.0000016250,0.0000015917,0.0000015570,0.0000015364,0.0000015330, +0.0000015511,0.0000015558,0.0000015229,0.0000014692,0.0000014344, +0.0000014173,0.0000014086,0.0000014025,0.0000013969,0.0000013920, +0.0000013910,0.0000013914,0.0000013933,0.0000013959,0.0000013977, +0.0000013987,0.0000013990,0.0000014001,0.0000014071,0.0000014210, +0.0000014419,0.0000014672,0.0000014942,0.0000015110,0.0000015188, +0.0000015186,0.0000015135,0.0000015146,0.0000015243,0.0000015408, +0.0000015588,0.0000015727,0.0000015805,0.0000015832,0.0000015827, +0.0000015810,0.0000015786,0.0000015752,0.0000015714,0.0000015677, +0.0000015641,0.0000015627,0.0000015663,0.0000015733,0.0000015710, +0.0000015565,0.0000015488,0.0000015591,0.0000015803,0.0000015932, +0.0000015983,0.0000016077,0.0000016217,0.0000016306,0.0000016312, +0.0000016278,0.0000016239,0.0000016200,0.0000016158,0.0000016126, +0.0000016115,0.0000016109,0.0000016099,0.0000016015,0.0000015853, +0.0000015699,0.0000015663,0.0000015782,0.0000015980,0.0000016166, +0.0000016255,0.0000016437,0.0000016776,0.0000017131,0.0000017350, +0.0000017370,0.0000017372,0.0000017418,0.0000017512,0.0000017648, +0.0000017839,0.0000018074,0.0000018324,0.0000018546,0.0000018697, +0.0000018770,0.0000018762,0.0000018722,0.0000018670,0.0000018661, +0.0000018769,0.0000018979,0.0000019149,0.0000019187,0.0000019198, +0.0000019207,0.0000019211,0.0000019194,0.0000019027,0.0000018150, +0.0000017295,0.0000017341,0.0000017542,0.0000017521,0.0000017566, +0.0000018310,0.0000019463,0.0000019897,0.0000020014,0.0000019875, +0.0000019883,0.0000020137,0.0000020067,0.0000019526,0.0000019288, +0.0000019329,0.0000019345,0.0000019419,0.0000019716,0.0000019966, +0.0000019971,0.0000020103,0.0000020350,0.0000020363,0.0000020066, +0.0000019428,0.0000018433,0.0000017784,0.0000018166,0.0000019007, +0.0000019145,0.0000019030,0.0000018890,0.0000018778,0.0000018642, +0.0000018632,0.0000018763,0.0000018912,0.0000018945,0.0000018720, +0.0000018281,0.0000017906,0.0000017703,0.0000017603,0.0000017548, +0.0000017459,0.0000017291,0.0000017078,0.0000016934,0.0000016850, +0.0000016795,0.0000016835,0.0000016956,0.0000017076,0.0000017156, +0.0000017203,0.0000017236,0.0000017264,0.0000017280,0.0000017299, +0.0000017355,0.0000017509,0.0000017756,0.0000017999,0.0000018125, +0.0000018141,0.0000018120,0.0000018086,0.0000018018,0.0000017979, +0.0000018061,0.0000018325,0.0000018610,0.0000018764,0.0000018814, +0.0000018873,0.0000018914,0.0000018839,0.0000018647,0.0000018602, +0.0000018750,0.0000018824,0.0000018661,0.0000018433,0.0000018240, +0.0000017928,0.0000017568,0.0000017325,0.0000017148,0.0000016999, +0.0000016840,0.0000016601,0.0000016317,0.0000016110,0.0000016018, +0.0000015988,0.0000015994,0.0000016054,0.0000016166,0.0000016307, +0.0000016468,0.0000016626,0.0000016733,0.0000016768,0.0000016745, +0.0000016693,0.0000016661,0.0000016654,0.0000016645,0.0000016609, +0.0000016568,0.0000016561,0.0000016559,0.0000016537,0.0000016455, +0.0000016219,0.0000015960,0.0000015898,0.0000015895,0.0000015766, +0.0000015694,0.0000015649,0.0000015615,0.0000015635,0.0000015695, +0.0000015736,0.0000015787,0.0000015901,0.0000016028,0.0000016164, +0.0000016334,0.0000016559,0.0000016683,0.0000016772,0.0000017032, +0.0000017132,0.0000017181,0.0000017222,0.0000017215,0.0000017138, +0.0000017037,0.0000016980,0.0000016908,0.0000016712,0.0000016547, +0.0000016377,0.0000016134,0.0000015892,0.0000015794,0.0000015830, +0.0000015904,0.0000015986,0.0000016023,0.0000016038,0.0000015996, +0.0000015894,0.0000015813,0.0000015981,0.0000016236,0.0000016361, +0.0000016475,0.0000016371,0.0000016003,0.0000015741,0.0000015635, +0.0000015582,0.0000015702,0.0000015981,0.0000016108,0.0000016168, +0.0000016217,0.0000016164,0.0000016045,0.0000015986,0.0000015984, +0.0000016010,0.0000016050,0.0000016093,0.0000016140,0.0000016201, +0.0000016249,0.0000016272,0.0000016296,0.0000016426,0.0000016638, +0.0000016686,0.0000016501,0.0000016408,0.0000016108,0.0000015787, +0.0000016159,0.0000016481,0.0000016496,0.0000016468,0.0000016179, +0.0000015826,0.0000015635,0.0000015569,0.0000015563,0.0000015604, +0.0000015849,0.0000016044,0.0000016150,0.0000016278,0.0000016284, +0.0000016207,0.0000016209,0.0000016331,0.0000016404,0.0000016332, +0.0000016242,0.0000016334,0.0000016314,0.0000016091,0.0000016542, +0.0000016985,0.0000017217,0.0000017419,0.0000017420,0.0000017368, +0.0000017216,0.0000017040,0.0000016916,0.0000016979,0.0000017174, +0.0000017027,0.0000016627,0.0000016454,0.0000016521,0.0000016839, +0.0000016836,0.0000016622,0.0000016624,0.0000016717,0.0000016645, +0.0000016366,0.0000016232,0.0000016202,0.0000016132,0.0000016071, +0.0000016192,0.0000016390,0.0000016372,0.0000016298,0.0000016409, +0.0000016850,0.0000017327,0.0000017581,0.0000017674,0.0000017586, +0.0000017298,0.0000017011,0.0000016813,0.0000016612,0.0000016583, +0.0000016766,0.0000016830,0.0000016758,0.0000016741,0.0000016839, +0.0000017004,0.0000017170,0.0000017290,0.0000017320,0.0000017239, +0.0000017049,0.0000016910,0.0000016843,0.0000016798,0.0000016864, +0.0000017107,0.0000017372,0.0000017544,0.0000017668,0.0000017778, +0.0000017839,0.0000017866,0.0000018000,0.0000018167,0.0000018128, +0.0000017970,0.0000017879,0.0000017810,0.0000017830,0.0000017936, +0.0000018031,0.0000018043,0.0000017996,0.0000017995,0.0000018045, +0.0000018040,0.0000017944,0.0000017825,0.0000017811,0.0000017821, +0.0000017831,0.0000017838,0.0000017886,0.0000018046,0.0000018290, +0.0000018470,0.0000018578,0.0000018639,0.0000018530,0.0000018413, +0.0000018874,0.0000019657,0.0000019731,0.0000018752,0.0000018157, +0.0000017829,0.0000017422,0.0000017514,0.0000017829,0.0000017912, +0.0000017773,0.0000017631,0.0000017632,0.0000017651,0.0000017614, +0.0000017645,0.0000017721,0.0000017854,0.0000017966,0.0000018061, +0.0000018322,0.0000018718,0.0000018877,0.0000018679,0.0000018193, +0.0000017933,0.0000017849,0.0000017821,0.0000017862,0.0000017940, +0.0000017960,0.0000018144,0.0000018553,0.0000018561,0.0000018339, +0.0000018293,0.0000018501,0.0000019033,0.0000018830,0.0000018409, +0.0000018556,0.0000017743,0.0000016782,0.0000016707,0.0000016858, +0.0000016588,0.0000016141,0.0000016283,0.0000016360,0.0000016665, +0.0000016789,0.0000016723,0.0000016876,0.0000017158,0.0000017394, +0.0000017328,0.0000016758,0.0000016625,0.0000016559,0.0000016252, +0.0000016021,0.0000015849,0.0000015521,0.0000015429,0.0000015366, +0.0000015197,0.0000015166,0.0000015147,0.0000014924,0.0000014578, +0.0000014518,0.0000014424,0.0000014338,0.0000014387,0.0000014508, +0.0000014668,0.0000014806,0.0000014899,0.0000014977,0.0000015021, +0.0000015022,0.0000014986,0.0000014916,0.0000014833,0.0000014773, +0.0000014747,0.0000014748,0.0000014798,0.0000014913,0.0000015096, +0.0000015309,0.0000015488,0.0000015594,0.0000015644,0.0000015693, +0.0000015759,0.0000015814,0.0000015852,0.0000015865,0.0000015860, +0.0000015843,0.0000015829,0.0000015823,0.0000015828,0.0000015844, +0.0000015867,0.0000015878,0.0000015871,0.0000015856,0.0000015848, +0.0000015856,0.0000015876,0.0000015895,0.0000015908,0.0000015915, +0.0000015927,0.0000015959,0.0000016024,0.0000016112,0.0000016197, +0.0000016260,0.0000016320,0.0000016409,0.0000016525,0.0000016623, +0.0000016680,0.0000016718,0.0000016749,0.0000016777,0.0000016804, +0.0000016828,0.0000016848,0.0000016864,0.0000016876,0.0000016886, +0.0000016898,0.0000016911,0.0000016917,0.0000016920,0.0000016929, +0.0000016954,0.0000016974,0.0000016986,0.0000016990,0.0000016983, +0.0000016973,0.0000016966,0.0000016966,0.0000016979,0.0000016974, +0.0000016841,0.0000016494,0.0000015925,0.0000015397,0.0000015298, +0.0000015500,0.0000015500,0.0000015088,0.0000014585,0.0000014294, +0.0000014157,0.0000014031,0.0000013904,0.0000013863,0.0000013865, +0.0000013894,0.0000013921,0.0000013954,0.0000013973,0.0000013971, +0.0000013970,0.0000013971,0.0000013956,0.0000013999,0.0000014154, +0.0000014405,0.0000014707,0.0000015010,0.0000015168,0.0000015157, +0.0000015139,0.0000015133,0.0000015214,0.0000015365,0.0000015535, +0.0000015677,0.0000015762,0.0000015799,0.0000015801,0.0000015780, +0.0000015743,0.0000015700,0.0000015661,0.0000015654,0.0000015688, +0.0000015733,0.0000015713,0.0000015586,0.0000015490,0.0000015547, +0.0000015780,0.0000015959,0.0000016021,0.0000016108,0.0000016244, +0.0000016323,0.0000016322,0.0000016284,0.0000016220,0.0000016151, +0.0000016096,0.0000016057,0.0000016022,0.0000015998,0.0000016010, +0.0000016059,0.0000016054,0.0000015919,0.0000015731,0.0000015648, +0.0000015709,0.0000015898,0.0000016092,0.0000016200,0.0000016280, +0.0000016503,0.0000016816,0.0000017087,0.0000017255,0.0000017323, +0.0000017310,0.0000017325,0.0000017393,0.0000017498,0.0000017647, +0.0000017825,0.0000017984,0.0000018085,0.0000018098,0.0000018035, +0.0000017934,0.0000017873,0.0000017929,0.0000018148,0.0000018481, +0.0000018817,0.0000019015,0.0000019098,0.0000019092,0.0000018947, +0.0000018452,0.0000017613,0.0000017279,0.0000017477,0.0000017592, +0.0000017557,0.0000017559,0.0000018147,0.0000019335,0.0000019864, +0.0000019975,0.0000019795,0.0000019671,0.0000019978,0.0000020189, +0.0000019791,0.0000019303,0.0000019280,0.0000019356,0.0000019420, +0.0000019656,0.0000019966,0.0000020043,0.0000020092,0.0000020316, +0.0000020384,0.0000020172,0.0000019599,0.0000018610,0.0000017832, +0.0000018035,0.0000018849,0.0000019117,0.0000019074,0.0000018920, +0.0000018834,0.0000018654,0.0000018557,0.0000018645,0.0000018848, +0.0000018963,0.0000018916,0.0000018590,0.0000018157,0.0000017861, +0.0000017704,0.0000017609,0.0000017543,0.0000017435,0.0000017262, +0.0000017041,0.0000016815,0.0000016635,0.0000016623,0.0000016750, +0.0000016894,0.0000017005,0.0000017084,0.0000017135,0.0000017169, +0.0000017192,0.0000017196,0.0000017206,0.0000017282,0.0000017485, +0.0000017769,0.0000018005,0.0000018099,0.0000018098,0.0000018074, +0.0000018021,0.0000017987,0.0000018057,0.0000018308,0.0000018594, +0.0000018757,0.0000018812,0.0000018864,0.0000018911,0.0000018857, +0.0000018749,0.0000018758,0.0000018844,0.0000018802,0.0000018584, +0.0000018381,0.0000018184,0.0000017846,0.0000017517,0.0000017309, +0.0000017140,0.0000016979,0.0000016782,0.0000016505,0.0000016223, +0.0000016046,0.0000015975,0.0000015949,0.0000015945,0.0000015977, +0.0000016064,0.0000016202,0.0000016371,0.0000016539,0.0000016681, +0.0000016760,0.0000016755,0.0000016712,0.0000016665,0.0000016640, +0.0000016616,0.0000016586,0.0000016575,0.0000016577,0.0000016551, +0.0000016493,0.0000016302,0.0000016020,0.0000015893,0.0000015897, +0.0000015804,0.0000015691,0.0000015602,0.0000015561,0.0000015597, +0.0000015654,0.0000015703,0.0000015759,0.0000015839,0.0000015976, +0.0000016118,0.0000016297,0.0000016528,0.0000016677,0.0000016817, +0.0000017112,0.0000017150,0.0000017190,0.0000017188,0.0000017122, +0.0000017027,0.0000016959,0.0000016919,0.0000016796,0.0000016604, +0.0000016497,0.0000016139,0.0000015960,0.0000015851,0.0000015811, +0.0000015784,0.0000015717,0.0000015671,0.0000015668,0.0000015716, +0.0000015815,0.0000015887,0.0000015818,0.0000015823,0.0000016059, +0.0000016316,0.0000016466,0.0000016446,0.0000016123,0.0000015794, +0.0000015661,0.0000015590,0.0000015630,0.0000015898,0.0000016061, +0.0000016103,0.0000016143,0.0000016137,0.0000016073,0.0000016011, +0.0000015989,0.0000015994,0.0000016025,0.0000016085,0.0000016171, +0.0000016264,0.0000016316,0.0000016317,0.0000016355,0.0000016523, +0.0000016665,0.0000016559,0.0000016417,0.0000016305,0.0000015859, +0.0000015890,0.0000016357,0.0000016458,0.0000016452,0.0000016336, +0.0000015966,0.0000015701,0.0000015593,0.0000015569,0.0000015563, +0.0000015640,0.0000015913,0.0000016088,0.0000016202,0.0000016291, +0.0000016245,0.0000016196,0.0000016298,0.0000016473,0.0000016525, +0.0000016429,0.0000016261,0.0000016312,0.0000016308,0.0000016061, +0.0000016502,0.0000016937,0.0000017161,0.0000017365,0.0000017369, +0.0000017291,0.0000017144,0.0000017000,0.0000016885,0.0000017010, +0.0000017150,0.0000016875,0.0000016501,0.0000016416,0.0000016638, +0.0000016896,0.0000016732,0.0000016607,0.0000016672,0.0000016723, +0.0000016515,0.0000016273,0.0000016211,0.0000016163,0.0000016081, +0.0000016082,0.0000016264,0.0000016388,0.0000016321,0.0000016323, +0.0000016643,0.0000017175,0.0000017532,0.0000017660,0.0000017603, +0.0000017344,0.0000017050,0.0000016831,0.0000016621,0.0000016601, +0.0000016768,0.0000016807,0.0000016743,0.0000016742,0.0000016844, +0.0000017018,0.0000017206,0.0000017329,0.0000017347,0.0000017257, +0.0000017069,0.0000016933,0.0000016884,0.0000016836,0.0000016825, +0.0000016954,0.0000017196,0.0000017424,0.0000017575,0.0000017651, +0.0000017688,0.0000017702,0.0000017823,0.0000018089,0.0000018141, +0.0000018002,0.0000017889,0.0000017794,0.0000017775,0.0000017817, +0.0000017890,0.0000017924,0.0000017953,0.0000018039,0.0000018002, +0.0000017839,0.0000017791,0.0000017812,0.0000017836,0.0000017881, +0.0000017948,0.0000018098,0.0000018311,0.0000018454,0.0000018519, +0.0000018617,0.0000018671,0.0000018574,0.0000018557,0.0000019170, +0.0000019745,0.0000019710,0.0000018695,0.0000018143,0.0000017858, +0.0000017440,0.0000017499,0.0000017786,0.0000017779,0.0000017581, +0.0000017528,0.0000017512,0.0000017499,0.0000017423,0.0000017420, +0.0000017540,0.0000017767,0.0000018016,0.0000018218,0.0000018498, +0.0000018819,0.0000018889,0.0000018470,0.0000018097,0.0000018067, +0.0000018255,0.0000018271,0.0000018056,0.0000017900,0.0000017946, +0.0000018004,0.0000018282,0.0000018648,0.0000018490,0.0000018243, +0.0000018422,0.0000018960,0.0000018956,0.0000018395,0.0000018544, +0.0000018208,0.0000017056,0.0000016699,0.0000016784,0.0000016768, +0.0000016282,0.0000016248,0.0000016342,0.0000016518,0.0000016773, +0.0000016756,0.0000016815,0.0000017089,0.0000017351,0.0000017389, +0.0000016913,0.0000016653,0.0000016599,0.0000016324,0.0000016073, +0.0000015898,0.0000015562,0.0000015440,0.0000015385,0.0000015216, +0.0000015182,0.0000015164,0.0000014928,0.0000014604,0.0000014550, +0.0000014431,0.0000014354,0.0000014422,0.0000014529,0.0000014667, +0.0000014796,0.0000014872,0.0000014910,0.0000014925,0.0000014906, +0.0000014860,0.0000014787,0.0000014713,0.0000014683,0.0000014682, +0.0000014688,0.0000014718,0.0000014751,0.0000014812,0.0000014936, +0.0000015148,0.0000015383,0.0000015561,0.0000015644,0.0000015667, +0.0000015656,0.0000015658,0.0000015685,0.0000015720,0.0000015750, +0.0000015771,0.0000015781,0.0000015781,0.0000015783,0.0000015796, +0.0000015815,0.0000015820,0.0000015806,0.0000015778,0.0000015744, +0.0000015705,0.0000015668,0.0000015636,0.0000015612,0.0000015588, +0.0000015578,0.0000015591,0.0000015652,0.0000015773,0.0000015943, +0.0000016113,0.0000016233,0.0000016300,0.0000016350,0.0000016416, +0.0000016491,0.0000016552,0.0000016587,0.0000016603,0.0000016612, +0.0000016623,0.0000016641,0.0000016667,0.0000016703,0.0000016750, +0.0000016804,0.0000016849,0.0000016879,0.0000016901,0.0000016923, +0.0000016951,0.0000016968,0.0000016976,0.0000016973,0.0000016962, +0.0000016956,0.0000016961,0.0000016982,0.0000017008,0.0000017018, +0.0000017005,0.0000016986,0.0000016624,0.0000015869,0.0000015271, +0.0000015333,0.0000015548,0.0000015387,0.0000014947,0.0000014536, +0.0000014278,0.0000014123,0.0000014039,0.0000014009,0.0000014008, +0.0000014009,0.0000014017,0.0000014018,0.0000014010,0.0000013999, +0.0000013985,0.0000013950,0.0000013927,0.0000013928,0.0000013990, +0.0000014191,0.0000014526,0.0000014871,0.0000015089,0.0000015149, +0.0000015142,0.0000015122,0.0000015186,0.0000015320,0.0000015475, +0.0000015611,0.0000015708,0.0000015750,0.0000015753,0.0000015740, +0.0000015722,0.0000015715,0.0000015727,0.0000015733,0.0000015704, +0.0000015602,0.0000015485,0.0000015484,0.0000015670,0.0000015924, +0.0000016049,0.0000016116,0.0000016228,0.0000016310,0.0000016311, +0.0000016260,0.0000016182,0.0000016102,0.0000016026,0.0000015939, +0.0000015840,0.0000015753,0.0000015718,0.0000015758,0.0000015901, +0.0000016009,0.0000015964,0.0000015768,0.0000015636,0.0000015658, +0.0000015823,0.0000016002,0.0000016150,0.0000016201,0.0000016288, +0.0000016467,0.0000016693,0.0000016906,0.0000017029,0.0000017095, +0.0000017154,0.0000017199,0.0000017245,0.0000017303,0.0000017376, +0.0000017443,0.0000017460,0.0000017432,0.0000017388,0.0000017367, +0.0000017407,0.0000017514,0.0000017709,0.0000017972,0.0000018236, +0.0000018392,0.0000018390,0.0000018181,0.0000017738,0.0000017395, +0.0000017413,0.0000017584,0.0000017610,0.0000017582,0.0000017567, +0.0000018050,0.0000019205,0.0000019857,0.0000019945,0.0000019718, +0.0000019332,0.0000019537,0.0000020163,0.0000020101,0.0000019465, +0.0000019255,0.0000019345,0.0000019431,0.0000019619,0.0000019935, +0.0000020091,0.0000020116,0.0000020287,0.0000020389,0.0000020269, +0.0000019773,0.0000018791,0.0000017847,0.0000017896,0.0000018646, +0.0000019032,0.0000019078,0.0000018949,0.0000018888,0.0000018730, +0.0000018527,0.0000018528,0.0000018740,0.0000018929,0.0000018974, +0.0000018836,0.0000018468,0.0000018093,0.0000017879,0.0000017729, +0.0000017615,0.0000017531,0.0000017435,0.0000017249,0.0000016936, +0.0000016623,0.0000016522,0.0000016585,0.0000016706,0.0000016805, +0.0000016902,0.0000017000,0.0000017072,0.0000017117,0.0000017141, +0.0000017136,0.0000017153,0.0000017275,0.0000017537,0.0000017841, +0.0000018034,0.0000018081,0.0000018068,0.0000018021,0.0000017982, +0.0000018047,0.0000018291,0.0000018576,0.0000018747,0.0000018805, +0.0000018850,0.0000018889,0.0000018864,0.0000018824,0.0000018843, +0.0000018856,0.0000018736,0.0000018508,0.0000018337,0.0000018118, +0.0000017765,0.0000017480,0.0000017303,0.0000017132,0.0000016949, +0.0000016713,0.0000016415,0.0000016149,0.0000016002,0.0000015952, +0.0000015936,0.0000015924,0.0000015926,0.0000015984,0.0000016118, +0.0000016290,0.0000016462,0.0000016616,0.0000016723,0.0000016756, +0.0000016721,0.0000016671,0.0000016628,0.0000016596,0.0000016582, +0.0000016588,0.0000016562,0.0000016516,0.0000016360,0.0000016080, +0.0000015896,0.0000015894,0.0000015832,0.0000015702,0.0000015573, +0.0000015513,0.0000015560,0.0000015613,0.0000015659,0.0000015736, +0.0000015809,0.0000015931,0.0000016081,0.0000016261,0.0000016505, +0.0000016683,0.0000016883,0.0000017138,0.0000017148,0.0000017158, +0.0000017095,0.0000016997,0.0000016942,0.0000016884,0.0000016775, +0.0000016625,0.0000016495,0.0000016349,0.0000015960,0.0000015845, +0.0000015684,0.0000015482,0.0000015277,0.0000015138,0.0000015093, +0.0000015109,0.0000015197,0.0000015382,0.0000015647,0.0000015804, +0.0000015786,0.0000015873,0.0000016172,0.0000016418,0.0000016457, +0.0000016226,0.0000015858,0.0000015681,0.0000015609,0.0000015608, +0.0000015810,0.0000016012,0.0000016060,0.0000016081,0.0000016104, +0.0000016093,0.0000016058,0.0000016039,0.0000016046,0.0000016092, +0.0000016176,0.0000016279,0.0000016344,0.0000016341,0.0000016331, +0.0000016424,0.0000016596,0.0000016590,0.0000016413,0.0000016378, +0.0000016068,0.0000015762,0.0000016135,0.0000016425,0.0000016414, +0.0000016392,0.0000016133,0.0000015784,0.0000015617,0.0000015575, +0.0000015574,0.0000015572,0.0000015696,0.0000015959,0.0000016117, +0.0000016239,0.0000016265,0.0000016193,0.0000016218,0.0000016420, +0.0000016564,0.0000016567,0.0000016485,0.0000016313,0.0000016286, +0.0000016287,0.0000016032,0.0000016465,0.0000016890,0.0000017114, +0.0000017316,0.0000017306,0.0000017213,0.0000017096,0.0000016951, +0.0000016865,0.0000017053,0.0000017075,0.0000016725,0.0000016425, +0.0000016460,0.0000016779,0.0000016852,0.0000016642,0.0000016620, +0.0000016718,0.0000016658,0.0000016376,0.0000016221,0.0000016167, +0.0000016096,0.0000016060,0.0000016136,0.0000016329,0.0000016361, +0.0000016312,0.0000016472,0.0000016986,0.0000017450,0.0000017635, +0.0000017610,0.0000017385,0.0000017089,0.0000016850,0.0000016629, +0.0000016608,0.0000016761,0.0000016794,0.0000016750,0.0000016767, +0.0000016869,0.0000017047,0.0000017252,0.0000017378,0.0000017385, +0.0000017269,0.0000017078,0.0000016949,0.0000016917,0.0000016879, +0.0000016828,0.0000016873,0.0000017038,0.0000017258,0.0000017463, +0.0000017593,0.0000017647,0.0000017651,0.0000017697,0.0000017996, +0.0000018142,0.0000018032,0.0000017892,0.0000017779,0.0000017740, +0.0000017771,0.0000017840,0.0000017920,0.0000018029,0.0000017992, +0.0000017792,0.0000017771,0.0000017803,0.0000017900,0.0000018041, +0.0000018183,0.0000018307,0.0000018322,0.0000018281,0.0000018317, +0.0000018500,0.0000018625,0.0000018535,0.0000018717,0.0000019476, +0.0000019819,0.0000019537,0.0000018531,0.0000018085,0.0000017918, +0.0000017497,0.0000017473,0.0000017649,0.0000017623,0.0000017483, +0.0000017510,0.0000017536,0.0000017542,0.0000017495,0.0000017406, +0.0000017416,0.0000017580,0.0000017917,0.0000018270,0.0000018581, +0.0000018791,0.0000018735,0.0000018304,0.0000018143,0.0000018320, +0.0000018629,0.0000018821,0.0000018736,0.0000018319,0.0000017971, +0.0000017959,0.0000018080,0.0000018447,0.0000018814,0.0000018638, +0.0000018560,0.0000018990,0.0000019037,0.0000018420,0.0000018460, +0.0000018501,0.0000017421,0.0000016723,0.0000016713,0.0000016790, +0.0000016473,0.0000016219,0.0000016341,0.0000016384,0.0000016692, +0.0000016782,0.0000016793,0.0000017028,0.0000017254,0.0000017454, +0.0000017110,0.0000016712,0.0000016635,0.0000016406,0.0000016134, +0.0000015956,0.0000015626,0.0000015458,0.0000015408,0.0000015241, +0.0000015202,0.0000015183,0.0000014937,0.0000014629,0.0000014573, +0.0000014448,0.0000014379,0.0000014449,0.0000014530,0.0000014643, +0.0000014757,0.0000014812,0.0000014822,0.0000014820,0.0000014799, +0.0000014768,0.0000014728,0.0000014691,0.0000014688,0.0000014701, +0.0000014719,0.0000014741,0.0000014748,0.0000014752,0.0000014768, +0.0000014835,0.0000014964,0.0000015144,0.0000015341,0.0000015504, +0.0000015596,0.0000015617,0.0000015601,0.0000015580,0.0000015576, +0.0000015582,0.0000015586,0.0000015581,0.0000015573,0.0000015567, +0.0000015566,0.0000015566,0.0000015557,0.0000015533,0.0000015496, +0.0000015452,0.0000015405,0.0000015361,0.0000015327,0.0000015290, +0.0000015255,0.0000015238,0.0000015253,0.0000015319,0.0000015435, +0.0000015598,0.0000015794,0.0000015992,0.0000016155,0.0000016263, +0.0000016329,0.0000016369,0.0000016397,0.0000016419,0.0000016439, +0.0000016456,0.0000016469,0.0000016478,0.0000016485,0.0000016500, +0.0000016528,0.0000016561,0.0000016585,0.0000016603,0.0000016628, +0.0000016661,0.0000016698,0.0000016722,0.0000016742,0.0000016759, +0.0000016779,0.0000016807,0.0000016843,0.0000016885,0.0000016927, +0.0000016971,0.0000017017,0.0000017012,0.0000016934,0.0000016370, +0.0000015527,0.0000015265,0.0000015464,0.0000015503,0.0000015277, +0.0000014962,0.0000014693,0.0000014514,0.0000014429,0.0000014411, +0.0000014415,0.0000014417,0.0000014396,0.0000014349,0.0000014282, +0.0000014193,0.0000014086,0.0000013987,0.0000013923,0.0000013909, +0.0000013930,0.0000014075,0.0000014385,0.0000014779,0.0000015071, +0.0000015142,0.0000015128,0.0000015124,0.0000015167,0.0000015270, +0.0000015402,0.0000015529,0.0000015632,0.0000015704,0.0000015745, +0.0000015760,0.0000015760,0.0000015751,0.0000015711,0.0000015636, +0.0000015532,0.0000015478,0.0000015572,0.0000015830,0.0000016057, +0.0000016149,0.0000016219,0.0000016288,0.0000016289,0.0000016231, +0.0000016148,0.0000016042,0.0000015893,0.0000015717,0.0000015581, +0.0000015506,0.0000015469,0.0000015457,0.0000015504,0.0000015679, +0.0000015920,0.0000015981,0.0000015794,0.0000015628,0.0000015617, +0.0000015756,0.0000015915,0.0000016069,0.0000016153,0.0000016175, +0.0000016222,0.0000016325,0.0000016448,0.0000016550,0.0000016630, +0.0000016698,0.0000016758,0.0000016808,0.0000016851,0.0000016887, +0.0000016894,0.0000016876,0.0000016853,0.0000016854,0.0000016920, +0.0000017061,0.0000017247,0.0000017426,0.0000017585,0.0000017686, +0.0000017689,0.0000017608,0.0000017482,0.0000017471,0.0000017565, +0.0000017602,0.0000017569,0.0000017537,0.0000017560,0.0000017981, +0.0000019103,0.0000019864,0.0000019933,0.0000019644,0.0000018892, +0.0000018845,0.0000019935,0.0000020375,0.0000019726,0.0000019327, +0.0000019329,0.0000019425,0.0000019597,0.0000019924,0.0000020140, +0.0000020154,0.0000020261,0.0000020388,0.0000020344,0.0000019922, +0.0000018973,0.0000017986,0.0000017876,0.0000018429,0.0000018918, +0.0000019064,0.0000018987,0.0000018915,0.0000018811,0.0000018585, +0.0000018498,0.0000018655,0.0000018850,0.0000018952,0.0000018953, +0.0000018756,0.0000018378,0.0000018089,0.0000017927,0.0000017748, +0.0000017605,0.0000017534,0.0000017453,0.0000017205,0.0000016805, +0.0000016526,0.0000016513,0.0000016591,0.0000016659,0.0000016732, +0.0000016823,0.0000016931,0.0000017034,0.0000017084,0.0000017094, +0.0000017094,0.0000017143,0.0000017344,0.0000017669,0.0000017947, +0.0000018061,0.0000018064,0.0000018015,0.0000017967,0.0000018031, +0.0000018273,0.0000018557,0.0000018728,0.0000018790,0.0000018833, +0.0000018867,0.0000018863,0.0000018858,0.0000018863,0.0000018824, +0.0000018652,0.0000018440,0.0000018287,0.0000018035,0.0000017695, +0.0000017461,0.0000017299,0.0000017121,0.0000016912,0.0000016643, +0.0000016335,0.0000016092,0.0000015985,0.0000015958,0.0000015940, +0.0000015918,0.0000015908,0.0000015940,0.0000016058,0.0000016232, +0.0000016408,0.0000016566,0.0000016687,0.0000016732,0.0000016722, +0.0000016673,0.0000016623,0.0000016596,0.0000016599,0.0000016571, +0.0000016531,0.0000016404,0.0000016135,0.0000015912,0.0000015887, +0.0000015848,0.0000015715,0.0000015566,0.0000015482,0.0000015525, +0.0000015579,0.0000015617,0.0000015706,0.0000015800,0.0000015898, +0.0000016048,0.0000016221,0.0000016475,0.0000016683,0.0000016911, +0.0000017121,0.0000017119,0.0000017097,0.0000016998,0.0000016899, +0.0000016818,0.0000016692,0.0000016566,0.0000016439,0.0000016271, +0.0000016091,0.0000015667,0.0000015390,0.0000015143,0.0000015036, +0.0000014984,0.0000014966,0.0000014927,0.0000014881,0.0000014869, +0.0000014951,0.0000015204,0.0000015579,0.0000015768,0.0000015771, +0.0000015975,0.0000016306,0.0000016461,0.0000016311,0.0000015931, +0.0000015700,0.0000015626,0.0000015603,0.0000015727,0.0000015954, +0.0000016036,0.0000016054,0.0000016083,0.0000016106,0.0000016112, +0.0000016123,0.0000016152,0.0000016206,0.0000016279,0.0000016339, +0.0000016344,0.0000016311,0.0000016350,0.0000016506,0.0000016568, +0.0000016422,0.0000016358,0.0000016269,0.0000015807,0.0000015870, +0.0000016320,0.0000016385,0.0000016362,0.0000016258,0.0000015913, +0.0000015666,0.0000015566,0.0000015568,0.0000015575,0.0000015585, +0.0000015759,0.0000015986,0.0000016144,0.0000016247,0.0000016216, +0.0000016163,0.0000016301,0.0000016513,0.0000016575,0.0000016564, +0.0000016515,0.0000016343,0.0000016262,0.0000016255,0.0000016016, +0.0000016440,0.0000016863,0.0000017076,0.0000017248,0.0000017233, +0.0000017148,0.0000017056,0.0000016886,0.0000016863,0.0000017050, +0.0000016965,0.0000016591,0.0000016387,0.0000016582,0.0000016854, +0.0000016742,0.0000016606,0.0000016653,0.0000016715,0.0000016526, +0.0000016273,0.0000016166,0.0000016080,0.0000016046,0.0000016067, +0.0000016223,0.0000016363,0.0000016330,0.0000016365,0.0000016785, +0.0000017326,0.0000017598,0.0000017613,0.0000017421,0.0000017126, +0.0000016872,0.0000016636,0.0000016606,0.0000016751,0.0000016787, +0.0000016762,0.0000016799,0.0000016908,0.0000017091,0.0000017309, +0.0000017436,0.0000017429,0.0000017287,0.0000017087,0.0000016965, +0.0000016946,0.0000016926,0.0000016866,0.0000016851,0.0000016940, +0.0000017102,0.0000017304,0.0000017487,0.0000017590,0.0000017610, +0.0000017617,0.0000017915,0.0000018141,0.0000018056,0.0000017887, +0.0000017773,0.0000017739,0.0000017798,0.0000017896,0.0000018007, +0.0000017973,0.0000017781,0.0000017777,0.0000017782,0.0000017952, +0.0000018165,0.0000018188,0.0000018091,0.0000017977,0.0000017927, +0.0000018072,0.0000018409,0.0000018571,0.0000018553,0.0000018988, +0.0000019675,0.0000019753,0.0000019359,0.0000018374,0.0000018005, +0.0000017960,0.0000017599,0.0000017445,0.0000017499,0.0000017485, +0.0000017456,0.0000017507,0.0000017555,0.0000017561,0.0000017615, +0.0000017610,0.0000017541,0.0000017499,0.0000017695,0.0000018115, +0.0000018483,0.0000018664,0.0000018468,0.0000018152,0.0000018183, +0.0000018468,0.0000018686,0.0000018830,0.0000018943,0.0000018927, +0.0000018466,0.0000018011,0.0000018004,0.0000018191,0.0000018594, +0.0000019028,0.0000019103,0.0000019174,0.0000019050,0.0000018432, +0.0000018360,0.0000018603,0.0000017755,0.0000016829,0.0000016697, +0.0000016782,0.0000016640,0.0000016255,0.0000016301,0.0000016355, +0.0000016560,0.0000016757,0.0000016791,0.0000016998,0.0000017176, +0.0000017413,0.0000017281,0.0000016796,0.0000016662,0.0000016490, +0.0000016203,0.0000016013,0.0000015705,0.0000015486,0.0000015429, +0.0000015268,0.0000015222,0.0000015204,0.0000014945,0.0000014650, +0.0000014590,0.0000014466,0.0000014414,0.0000014472,0.0000014531, +0.0000014612,0.0000014705,0.0000014742,0.0000014740,0.0000014734, +0.0000014741,0.0000014746,0.0000014735,0.0000014716,0.0000014714, +0.0000014736,0.0000014783,0.0000014833,0.0000014848,0.0000014830, +0.0000014810,0.0000014807,0.0000014824,0.0000014851,0.0000014922, +0.0000015030,0.0000015161,0.0000015292,0.0000015400,0.0000015476, +0.0000015526,0.0000015549,0.0000015550,0.0000015537,0.0000015512, +0.0000015479,0.0000015454,0.0000015443,0.0000015430,0.0000015398, +0.0000015348,0.0000015289,0.0000015221,0.0000015136,0.0000015031, +0.0000014914,0.0000014812,0.0000014754,0.0000014756,0.0000014826, +0.0000014956,0.0000015120,0.0000015291,0.0000015460,0.0000015630, +0.0000015797,0.0000015942,0.0000016042,0.0000016090,0.0000016096, +0.0000016080,0.0000016057,0.0000016029,0.0000016002,0.0000015985, +0.0000015981,0.0000015997,0.0000016025,0.0000016043,0.0000016041, +0.0000016039,0.0000016051,0.0000016080,0.0000016110,0.0000016140, +0.0000016180,0.0000016231,0.0000016299,0.0000016398,0.0000016530, +0.0000016681,0.0000016811,0.0000016895,0.0000016956,0.0000017014, +0.0000016979,0.0000016637,0.0000015793,0.0000015262,0.0000015364, +0.0000015545,0.0000015529,0.0000015380,0.0000015224,0.0000015140, +0.0000015111,0.0000015098,0.0000015069,0.0000015012,0.0000014924, +0.0000014800,0.0000014642,0.0000014462,0.0000014282,0.0000014108, +0.0000013969,0.0000013911,0.0000013867,0.0000013991,0.0000014313, +0.0000014736,0.0000015038,0.0000015138,0.0000015128,0.0000015124, +0.0000015144,0.0000015207,0.0000015312,0.0000015435,0.0000015550, +0.0000015648,0.0000015716,0.0000015748,0.0000015743,0.0000015715, +0.0000015666,0.0000015623,0.0000015652,0.0000015829,0.0000016065, +0.0000016200,0.0000016234,0.0000016263,0.0000016257,0.0000016196, +0.0000016096,0.0000015939,0.0000015721,0.0000015522,0.0000015432, +0.0000015415,0.0000015411,0.0000015404,0.0000015383,0.0000015390, +0.0000015504,0.0000015787,0.0000015938,0.0000015815,0.0000015604, +0.0000015582,0.0000015704,0.0000015843,0.0000015965,0.0000016063, +0.0000016102,0.0000016117,0.0000016145,0.0000016179,0.0000016208, +0.0000016234,0.0000016260,0.0000016284,0.0000016303,0.0000016315, +0.0000016313,0.0000016294,0.0000016274,0.0000016275,0.0000016325, +0.0000016451,0.0000016663,0.0000016919,0.0000017163,0.0000017336, +0.0000017421,0.0000017486,0.0000017509,0.0000017518,0.0000017548, +0.0000017458,0.0000017319,0.0000017314,0.0000017485,0.0000017939, +0.0000019035,0.0000019889,0.0000019942,0.0000019560,0.0000018482, +0.0000018176,0.0000019530,0.0000020498,0.0000020036,0.0000019471, +0.0000019334,0.0000019412,0.0000019564,0.0000019884,0.0000020168, +0.0000020204,0.0000020246,0.0000020369,0.0000020380,0.0000020062, +0.0000019151,0.0000018101,0.0000017805,0.0000018223,0.0000018724, +0.0000019005,0.0000019055,0.0000018970,0.0000018877,0.0000018682, +0.0000018564,0.0000018645,0.0000018791,0.0000018864,0.0000018933, +0.0000018932,0.0000018711,0.0000018350,0.0000018104,0.0000017932, +0.0000017741,0.0000017617,0.0000017571,0.0000017450,0.0000017092, +0.0000016657,0.0000016501,0.0000016539,0.0000016611,0.0000016639, +0.0000016667,0.0000016771,0.0000016909,0.0000017014,0.0000017067, +0.0000017069,0.0000017078,0.0000017210,0.0000017513,0.0000017843, +0.0000018030,0.0000018054,0.0000018002,0.0000017949,0.0000018012, +0.0000018253,0.0000018531,0.0000018698,0.0000018766,0.0000018813, +0.0000018847,0.0000018857,0.0000018858,0.0000018847,0.0000018763, +0.0000018567,0.0000018382,0.0000018226,0.0000017944,0.0000017638, +0.0000017448,0.0000017290,0.0000017103,0.0000016871,0.0000016573, +0.0000016261,0.0000016058,0.0000015984,0.0000015950,0.0000015923, +0.0000015909,0.0000015901,0.0000015917,0.0000016021,0.0000016198, +0.0000016380,0.0000016530,0.0000016645,0.0000016706,0.0000016704, +0.0000016665,0.0000016625,0.0000016614,0.0000016572,0.0000016532, +0.0000016426,0.0000016179,0.0000015935,0.0000015887,0.0000015853, +0.0000015725,0.0000015576,0.0000015474,0.0000015493,0.0000015550, +0.0000015588,0.0000015674,0.0000015795,0.0000015883,0.0000016014, +0.0000016173,0.0000016422,0.0000016654,0.0000016885,0.0000017100, +0.0000017100,0.0000017055,0.0000016915,0.0000016745,0.0000016577, +0.0000016445,0.0000016304,0.0000016152,0.0000016023,0.0000015860, +0.0000015105,0.0000015029,0.0000015084,0.0000015208,0.0000015303, +0.0000015323,0.0000015283,0.0000015173,0.0000015005,0.0000014902, +0.0000014906,0.0000015189,0.0000015612,0.0000015731,0.0000015817, +0.0000016151,0.0000016433,0.0000016382,0.0000016008,0.0000015721, +0.0000015631,0.0000015599,0.0000015658,0.0000015884,0.0000016018, +0.0000016053,0.0000016080,0.0000016113,0.0000016147,0.0000016181, +0.0000016214,0.0000016253,0.0000016288,0.0000016296,0.0000016278, +0.0000016293,0.0000016416,0.0000016523,0.0000016424,0.0000016307, +0.0000016334,0.0000016010,0.0000015722,0.0000016102,0.0000016357, +0.0000016319,0.0000016293,0.0000016051,0.0000015751,0.0000015592, +0.0000015536,0.0000015561,0.0000015568,0.0000015626,0.0000015822, +0.0000016009,0.0000016174,0.0000016228,0.0000016152,0.0000016180, +0.0000016399,0.0000016554,0.0000016564,0.0000016561,0.0000016527, +0.0000016359,0.0000016245,0.0000016243,0.0000016021,0.0000016451, +0.0000016848,0.0000017033,0.0000017180,0.0000017163,0.0000017104, +0.0000016996,0.0000016820,0.0000016860,0.0000017012,0.0000016844, +0.0000016488,0.0000016453,0.0000016741,0.0000016830,0.0000016636, +0.0000016601,0.0000016684,0.0000016652,0.0000016390,0.0000016192, +0.0000016064,0.0000016004,0.0000016026,0.0000016128,0.0000016317, +0.0000016359,0.0000016327,0.0000016600,0.0000017167,0.0000017539, +0.0000017598,0.0000017452,0.0000017160,0.0000016896,0.0000016646, +0.0000016601,0.0000016740,0.0000016781,0.0000016776,0.0000016831, +0.0000016951,0.0000017142,0.0000017370,0.0000017501,0.0000017482, +0.0000017317,0.0000017107,0.0000016988,0.0000016973,0.0000016968, +0.0000016908,0.0000016854,0.0000016893,0.0000017006,0.0000017154, +0.0000017337,0.0000017498,0.0000017568,0.0000017571,0.0000017860, +0.0000018140,0.0000018063,0.0000017876,0.0000017800,0.0000017807, +0.0000017917,0.0000018008,0.0000017943,0.0000017764,0.0000017772, +0.0000017786,0.0000017972,0.0000018148,0.0000017979,0.0000017727, +0.0000017675,0.0000017754,0.0000017979,0.0000018343,0.0000018499, +0.0000018641,0.0000019284,0.0000019700,0.0000019637,0.0000019213, +0.0000018330,0.0000017925,0.0000017969,0.0000017748,0.0000017442, +0.0000017404,0.0000017431,0.0000017478,0.0000017513,0.0000017611, +0.0000017742,0.0000017734,0.0000017678,0.0000017670,0.0000017646, +0.0000017614,0.0000017809,0.0000018167,0.0000018325,0.0000018179, +0.0000018073,0.0000018262,0.0000018528,0.0000018604,0.0000018578, +0.0000018656,0.0000018897,0.0000018961,0.0000018515,0.0000018057, +0.0000018085,0.0000018302,0.0000018673,0.0000019121,0.0000019225, +0.0000018950,0.0000018351,0.0000018300,0.0000018663,0.0000018028, +0.0000016969,0.0000016690,0.0000016739,0.0000016749,0.0000016390, +0.0000016256,0.0000016360,0.0000016455,0.0000016704,0.0000016781, +0.0000016954,0.0000017131,0.0000017363,0.0000017384,0.0000016905, +0.0000016686,0.0000016569,0.0000016285,0.0000016069,0.0000015791, +0.0000015529,0.0000015450,0.0000015291,0.0000015237,0.0000015219, +0.0000014952,0.0000014664,0.0000014600,0.0000014487,0.0000014449, +0.0000014502,0.0000014541,0.0000014592,0.0000014664,0.0000014693, +0.0000014683,0.0000014688,0.0000014722,0.0000014747,0.0000014734, +0.0000014699,0.0000014696,0.0000014721,0.0000014780,0.0000014857, +0.0000014904,0.0000014922,0.0000014918,0.0000014898,0.0000014869, +0.0000014840,0.0000014827,0.0000014836,0.0000014855,0.0000014885, +0.0000014929,0.0000014995,0.0000015075,0.0000015140,0.0000015167, +0.0000015155,0.0000015115,0.0000015062,0.0000015015,0.0000014988, +0.0000014981,0.0000014961,0.0000014906,0.0000014820,0.0000014712, +0.0000014584,0.0000014450,0.0000014339,0.0000014265,0.0000014230, +0.0000014225,0.0000014246,0.0000014308,0.0000014438,0.0000014647, +0.0000014901,0.0000015138,0.0000015311,0.0000015430,0.0000015511, +0.0000015550,0.0000015549,0.0000015522,0.0000015477,0.0000015420, +0.0000015352,0.0000015280,0.0000015218,0.0000015178,0.0000015169, +0.0000015172,0.0000015160,0.0000015135,0.0000015127,0.0000015134, +0.0000015147,0.0000015166,0.0000015198,0.0000015261,0.0000015375, +0.0000015551,0.0000015798,0.0000016099,0.0000016407,0.0000016659, +0.0000016822,0.0000016908,0.0000016981,0.0000016987,0.0000016749, +0.0000016057,0.0000015474,0.0000015272,0.0000015399,0.0000015520, +0.0000015574,0.0000015573,0.0000015549,0.0000015516,0.0000015489, +0.0000015457,0.0000015407,0.0000015327,0.0000015202,0.0000015011, +0.0000014746,0.0000014455,0.0000014197,0.0000014005,0.0000013874, +0.0000013846,0.0000013953,0.0000014285,0.0000014715,0.0000015016, +0.0000015121,0.0000015121,0.0000015114,0.0000015110,0.0000015151, +0.0000015224,0.0000015327,0.0000015442,0.0000015548,0.0000015632, +0.0000015690,0.0000015728,0.0000015765,0.0000015828,0.0000015938, +0.0000016078,0.0000016181,0.0000016202,0.0000016187,0.0000016145, +0.0000016054,0.0000015914,0.0000015729,0.0000015550,0.0000015452, +0.0000015445,0.0000015475,0.0000015477,0.0000015456,0.0000015417, +0.0000015375,0.0000015340,0.0000015401,0.0000015677,0.0000015933, +0.0000015823,0.0000015592,0.0000015557,0.0000015674,0.0000015778, +0.0000015856,0.0000015922,0.0000015976,0.0000016007,0.0000016022, +0.0000016018,0.0000016006,0.0000015991,0.0000015972,0.0000015951, +0.0000015931,0.0000015916,0.0000015902,0.0000015892,0.0000015898, +0.0000015929,0.0000015995,0.0000016115,0.0000016308,0.0000016566, +0.0000016829,0.0000017030,0.0000017181,0.0000017268,0.0000017277, +0.0000017209,0.0000017058,0.0000016920,0.0000016962,0.0000017325, +0.0000017920,0.0000019001,0.0000019894,0.0000019936,0.0000019437, +0.0000018209,0.0000017789,0.0000019138,0.0000020444,0.0000020333, +0.0000019684,0.0000019404,0.0000019410,0.0000019544,0.0000019850, +0.0000020174,0.0000020243,0.0000020246,0.0000020361,0.0000020409, +0.0000020180,0.0000019324,0.0000018225,0.0000017796,0.0000018053, +0.0000018509,0.0000018853,0.0000019090,0.0000019062,0.0000018940, +0.0000018769,0.0000018647,0.0000018684,0.0000018768,0.0000018794, +0.0000018848,0.0000018938,0.0000018945,0.0000018713,0.0000018337, +0.0000018061,0.0000017896,0.0000017755,0.0000017656,0.0000017587, +0.0000017353,0.0000016876,0.0000016512,0.0000016497,0.0000016594, +0.0000016604,0.0000016585,0.0000016626,0.0000016762,0.0000016929, +0.0000017036,0.0000017057,0.0000017056,0.0000017130,0.0000017381, +0.0000017732,0.0000017982,0.0000018035,0.0000017986,0.0000017932, +0.0000017996,0.0000018230,0.0000018496,0.0000018659,0.0000018732, +0.0000018786,0.0000018827,0.0000018837,0.0000018834,0.0000018802, +0.0000018686,0.0000018489,0.0000018336,0.0000018159,0.0000017855, +0.0000017592,0.0000017435,0.0000017280,0.0000017084,0.0000016823, +0.0000016494,0.0000016197,0.0000016035,0.0000015957,0.0000015899, +0.0000015883,0.0000015888,0.0000015892,0.0000015913,0.0000016011, +0.0000016184,0.0000016365,0.0000016500,0.0000016593,0.0000016649, +0.0000016664,0.0000016643,0.0000016620,0.0000016562,0.0000016521, +0.0000016432,0.0000016205,0.0000015961,0.0000015899,0.0000015867, +0.0000015731,0.0000015591,0.0000015479,0.0000015470,0.0000015526, +0.0000015578,0.0000015652,0.0000015782,0.0000015876,0.0000015979, +0.0000016120,0.0000016346,0.0000016599,0.0000016814,0.0000017063, +0.0000017087,0.0000017006,0.0000016791,0.0000016529,0.0000016303, +0.0000016148,0.0000016010,0.0000015894,0.0000015676,0.0000015374, +0.0000015025,0.0000015233,0.0000015441,0.0000015577,0.0000015649, +0.0000015667,0.0000015651,0.0000015598,0.0000015443,0.0000015158, +0.0000014885,0.0000014903,0.0000015311,0.0000015658,0.0000015748, +0.0000015993,0.0000016349,0.0000016378,0.0000016068,0.0000015741, +0.0000015624,0.0000015591,0.0000015613,0.0000015812,0.0000015988, +0.0000016050,0.0000016079,0.0000016109,0.0000016143,0.0000016173, +0.0000016189,0.0000016205,0.0000016211,0.0000016217,0.0000016240, +0.0000016331,0.0000016448,0.0000016404,0.0000016260,0.0000016296, +0.0000016220,0.0000015748,0.0000015818,0.0000016261,0.0000016312, +0.0000016269,0.0000016161,0.0000015850,0.0000015647,0.0000015539, +0.0000015525,0.0000015542,0.0000015565,0.0000015692,0.0000015877, +0.0000016035,0.0000016189,0.0000016179,0.0000016113,0.0000016255, +0.0000016476,0.0000016539,0.0000016548,0.0000016571,0.0000016546, +0.0000016372,0.0000016263,0.0000016251,0.0000016044,0.0000016493, +0.0000016838,0.0000017001,0.0000017121,0.0000017109,0.0000017059, +0.0000016901,0.0000016766,0.0000016849,0.0000016946,0.0000016729, +0.0000016489,0.0000016587,0.0000016813,0.0000016729,0.0000016586, +0.0000016615,0.0000016691,0.0000016539,0.0000016268,0.0000016087, +0.0000015956,0.0000015967,0.0000016055,0.0000016222,0.0000016359, +0.0000016326,0.0000016450,0.0000016978,0.0000017453,0.0000017578, +0.0000017475,0.0000017194,0.0000016922,0.0000016658,0.0000016597, +0.0000016731,0.0000016782,0.0000016789,0.0000016861,0.0000016993, +0.0000017193,0.0000017428,0.0000017562,0.0000017537,0.0000017357, +0.0000017140,0.0000017023,0.0000017007,0.0000017005,0.0000016952, +0.0000016876,0.0000016875,0.0000016959,0.0000017065,0.0000017201, +0.0000017381,0.0000017514,0.0000017532,0.0000017837,0.0000018139, +0.0000018048,0.0000017874,0.0000017883,0.0000017940,0.0000017981, +0.0000017899,0.0000017736,0.0000017750,0.0000017762,0.0000017938, +0.0000018128,0.0000017807,0.0000017590,0.0000017631,0.0000017696, +0.0000017920,0.0000018286,0.0000018466,0.0000018730,0.0000019454, +0.0000019717,0.0000019500,0.0000019190,0.0000018480,0.0000017899, +0.0000017888,0.0000017858,0.0000017587,0.0000017452,0.0000017459, +0.0000017493,0.0000017555,0.0000017849,0.0000018223,0.0000018297, +0.0000018095,0.0000017791,0.0000017714,0.0000017716,0.0000017694, +0.0000017787,0.0000017908,0.0000017901,0.0000018022,0.0000018337, +0.0000018567,0.0000018632,0.0000018599,0.0000018513,0.0000018541, +0.0000018799,0.0000018933,0.0000018553,0.0000018124,0.0000018174, +0.0000018408,0.0000018623,0.0000018792,0.0000018663,0.0000018266, +0.0000018289,0.0000018711,0.0000018227,0.0000017134,0.0000016706, +0.0000016702,0.0000016769,0.0000016569,0.0000016266,0.0000016338, +0.0000016414,0.0000016646,0.0000016770,0.0000016879,0.0000017090, +0.0000017293,0.0000017413,0.0000017041,0.0000016734,0.0000016633, +0.0000016379,0.0000016131,0.0000015878,0.0000015586,0.0000015478, +0.0000015313,0.0000015246,0.0000015230,0.0000014957,0.0000014675, +0.0000014610,0.0000014506,0.0000014479,0.0000014527,0.0000014555, +0.0000014585,0.0000014638,0.0000014660,0.0000014651,0.0000014669, +0.0000014718,0.0000014742,0.0000014722,0.0000014690,0.0000014687, +0.0000014737,0.0000014798,0.0000014860,0.0000014906,0.0000014923, +0.0000014918,0.0000014903,0.0000014880,0.0000014851,0.0000014828, +0.0000014823,0.0000014833,0.0000014840,0.0000014839,0.0000014828, +0.0000014814,0.0000014798,0.0000014772,0.0000014726,0.0000014676, +0.0000014624,0.0000014569,0.0000014546,0.0000014551,0.0000014546, +0.0000014505,0.0000014417,0.0000014326,0.0000014256,0.0000014224, +0.0000014204,0.0000014193,0.0000014194,0.0000014210,0.0000014226, +0.0000014224,0.0000014206,0.0000014198,0.0000014211,0.0000014374, +0.0000014595,0.0000014807,0.0000014952,0.0000015013,0.0000015002, +0.0000014937,0.0000014845,0.0000014759,0.0000014691,0.0000014632, +0.0000014574,0.0000014532,0.0000014525,0.0000014552,0.0000014576, +0.0000014579,0.0000014583,0.0000014595,0.0000014591,0.0000014573, +0.0000014554,0.0000014540,0.0000014572,0.0000014663,0.0000014845, +0.0000015170,0.0000015640,0.0000016163,0.0000016555,0.0000016764, +0.0000016872,0.0000016960,0.0000016985,0.0000016803,0.0000016293, +0.0000015713,0.0000015427,0.0000015289,0.0000015278,0.0000015285, +0.0000015276,0.0000015269,0.0000015266,0.0000015279,0.0000015313, +0.0000015369,0.0000015387,0.0000015384,0.0000015214,0.0000014915, +0.0000014566,0.0000014245,0.0000014005,0.0000013855,0.0000013828, +0.0000013938,0.0000014275,0.0000014687,0.0000014983,0.0000015109, +0.0000015110,0.0000015097,0.0000015091,0.0000015119,0.0000015169, +0.0000015239,0.0000015323,0.0000015414,0.0000015506,0.0000015599, +0.0000015694,0.0000015794,0.0000015886,0.0000015944,0.0000015958, +0.0000015929,0.0000015850,0.0000015733,0.0000015595,0.0000015475, +0.0000015431,0.0000015458,0.0000015518,0.0000015565,0.0000015571, +0.0000015539,0.0000015480,0.0000015428,0.0000015380,0.0000015326, +0.0000015355,0.0000015624,0.0000015919,0.0000015810,0.0000015573, +0.0000015542,0.0000015650,0.0000015710,0.0000015757,0.0000015790, +0.0000015819,0.0000015835,0.0000015833,0.0000015819,0.0000015802, +0.0000015778,0.0000015750,0.0000015722,0.0000015704,0.0000015694, +0.0000015688,0.0000015688,0.0000015705,0.0000015748,0.0000015820, +0.0000015920,0.0000016057,0.0000016248,0.0000016454,0.0000016620, +0.0000016713,0.0000016734,0.0000016697,0.0000016610,0.0000016548, +0.0000016636,0.0000017119,0.0000017896,0.0000019000,0.0000019879, +0.0000019861,0.0000019260,0.0000018084,0.0000017735,0.0000018895, +0.0000020425,0.0000020548,0.0000019959,0.0000019535,0.0000019436, +0.0000019557,0.0000019854,0.0000020178,0.0000020262,0.0000020255, +0.0000020358,0.0000020433,0.0000020268,0.0000019511,0.0000018375, +0.0000017773,0.0000017954,0.0000018336,0.0000018592,0.0000018997, +0.0000019113,0.0000019014,0.0000018842,0.0000018717,0.0000018714, +0.0000018746,0.0000018750,0.0000018777,0.0000018843,0.0000018943, +0.0000018951,0.0000018739,0.0000018372,0.0000018069,0.0000017887, +0.0000017758,0.0000017661,0.0000017514,0.0000017105,0.0000016610, +0.0000016487,0.0000016582,0.0000016599,0.0000016541,0.0000016521, +0.0000016630,0.0000016837,0.0000016998,0.0000017054,0.0000017054, +0.0000017085,0.0000017280,0.0000017625,0.0000017918,0.0000018004, +0.0000017964,0.0000017917,0.0000017979,0.0000018200,0.0000018455, +0.0000018616,0.0000018691,0.0000018750,0.0000018794,0.0000018802, +0.0000018788,0.0000018738,0.0000018602,0.0000018424,0.0000018293, +0.0000018086,0.0000017780,0.0000017563,0.0000017426,0.0000017268, +0.0000017055,0.0000016757,0.0000016408,0.0000016144,0.0000016004, +0.0000015911,0.0000015853,0.0000015846,0.0000015865,0.0000015895, +0.0000015935,0.0000016015,0.0000016175,0.0000016349,0.0000016466, +0.0000016535,0.0000016582,0.0000016598,0.0000016586,0.0000016533, +0.0000016503,0.0000016426,0.0000016213,0.0000015984,0.0000015924, +0.0000015890,0.0000015743,0.0000015604,0.0000015490,0.0000015457, +0.0000015508,0.0000015574,0.0000015645,0.0000015764,0.0000015866, +0.0000015945,0.0000016067,0.0000016258,0.0000016529,0.0000016730, +0.0000017001,0.0000017080,0.0000016939,0.0000016619,0.0000016278, +0.0000016030,0.0000015861,0.0000015692,0.0000015399,0.0000015097, +0.0000014971,0.0000015250,0.0000015464,0.0000015604,0.0000015671, +0.0000015705,0.0000015718,0.0000015721,0.0000015729,0.0000015707, +0.0000015523,0.0000015137,0.0000014873,0.0000015010,0.0000015502, +0.0000015705,0.0000015855,0.0000016215,0.0000016364,0.0000016109, +0.0000015755,0.0000015610,0.0000015586,0.0000015596,0.0000015751, +0.0000015935,0.0000016018,0.0000016046,0.0000016064,0.0000016085, +0.0000016098,0.0000016101,0.0000016113,0.0000016143,0.0000016188, +0.0000016256,0.0000016345,0.0000016342,0.0000016213,0.0000016204, +0.0000016283,0.0000015954,0.0000015654,0.0000016025,0.0000016294, +0.0000016251,0.0000016215,0.0000015977,0.0000015709,0.0000015571, +0.0000015515,0.0000015514,0.0000015518,0.0000015583,0.0000015764, +0.0000015916,0.0000016060,0.0000016172,0.0000016110,0.0000016118, +0.0000016345,0.0000016485,0.0000016509,0.0000016557,0.0000016612, +0.0000016586,0.0000016395,0.0000016298,0.0000016268,0.0000016086, +0.0000016558,0.0000016842,0.0000016981,0.0000017068,0.0000017067, +0.0000016991,0.0000016799,0.0000016713,0.0000016837,0.0000016870, +0.0000016653,0.0000016539,0.0000016732,0.0000016808,0.0000016612, +0.0000016563,0.0000016645,0.0000016646,0.0000016395,0.0000016152, +0.0000015961,0.0000015898,0.0000015984,0.0000016119,0.0000016310, +0.0000016338,0.0000016351,0.0000016772,0.0000017329,0.0000017553, +0.0000017485,0.0000017228,0.0000016950,0.0000016671,0.0000016606, +0.0000016720,0.0000016785,0.0000016803,0.0000016888,0.0000017030, +0.0000017235,0.0000017476,0.0000017618,0.0000017595,0.0000017406, +0.0000017183,0.0000017069,0.0000017049,0.0000017041,0.0000016989, +0.0000016907,0.0000016882,0.0000016940,0.0000017026,0.0000017120, +0.0000017284,0.0000017456,0.0000017507,0.0000017850,0.0000018144, +0.0000018014,0.0000017893,0.0000017978,0.0000017980,0.0000017837, +0.0000017687,0.0000017734,0.0000017746,0.0000017865,0.0000018092, +0.0000017726,0.0000017499,0.0000017552,0.0000017625,0.0000017842, +0.0000018246,0.0000018450,0.0000018741,0.0000019459,0.0000019686, +0.0000019390,0.0000019155,0.0000018782,0.0000018085,0.0000017770, +0.0000017773,0.0000017686,0.0000017546,0.0000017490,0.0000017500, +0.0000017739,0.0000018232,0.0000018626,0.0000018755,0.0000018723, +0.0000018402,0.0000017946,0.0000017745,0.0000017718,0.0000017672, +0.0000017661,0.0000017793,0.0000018061,0.0000018408,0.0000018652, +0.0000018847,0.0000018957,0.0000018909,0.0000018674,0.0000018553, +0.0000018693,0.0000018878,0.0000018601,0.0000018205,0.0000018250, +0.0000018470,0.0000018501,0.0000018399,0.0000018266,0.0000018371, +0.0000018763,0.0000018390,0.0000017284,0.0000016749,0.0000016711, +0.0000016770,0.0000016710,0.0000016364,0.0000016308,0.0000016402, +0.0000016562,0.0000016754,0.0000016811,0.0000017021,0.0000017214, +0.0000017433,0.0000017207,0.0000016813,0.0000016680,0.0000016472, +0.0000016205,0.0000015959,0.0000015645,0.0000015509,0.0000015339, +0.0000015256,0.0000015242,0.0000014966,0.0000014684,0.0000014618, +0.0000014522,0.0000014495,0.0000014536,0.0000014562,0.0000014582, +0.0000014624,0.0000014642,0.0000014642,0.0000014663,0.0000014699, +0.0000014723,0.0000014729,0.0000014722,0.0000014724,0.0000014765, +0.0000014824,0.0000014872,0.0000014913,0.0000014937,0.0000014928, +0.0000014901,0.0000014865,0.0000014821,0.0000014785,0.0000014784, +0.0000014822,0.0000014862,0.0000014876,0.0000014866,0.0000014842, +0.0000014802,0.0000014747,0.0000014684,0.0000014622,0.0000014556, +0.0000014495,0.0000014449,0.0000014454,0.0000014483,0.0000014480, +0.0000014418,0.0000014327,0.0000014259,0.0000014230,0.0000014230, +0.0000014247,0.0000014281,0.0000014328,0.0000014369,0.0000014379, +0.0000014340,0.0000014261,0.0000014179,0.0000014147,0.0000014170, +0.0000014197,0.0000014272,0.0000014325,0.0000014335,0.0000014313, +0.0000014284,0.0000014287,0.0000014350,0.0000014391,0.0000014397, +0.0000014385,0.0000014382,0.0000014424,0.0000014485,0.0000014525, +0.0000014553,0.0000014578,0.0000014576,0.0000014536,0.0000014468, +0.0000014399,0.0000014347,0.0000014305,0.0000014335,0.0000014475, +0.0000014789,0.0000015349,0.0000016037,0.0000016527,0.0000016742, +0.0000016851,0.0000016944,0.0000016991,0.0000016879,0.0000016543, +0.0000016163,0.0000015880,0.0000015720,0.0000015639,0.0000015605, +0.0000015582,0.0000015544,0.0000015479,0.0000015379,0.0000015345, +0.0000015251,0.0000015360,0.0000015427,0.0000015298,0.0000014976, +0.0000014583,0.0000014231,0.0000013975,0.0000013825,0.0000013798, +0.0000013922,0.0000014244,0.0000014644,0.0000014942,0.0000015069, +0.0000015093,0.0000015090,0.0000015092,0.0000015107,0.0000015143, +0.0000015191,0.0000015244,0.0000015297,0.0000015351,0.0000015401, +0.0000015447,0.0000015484,0.0000015507,0.0000015511,0.0000015478, +0.0000015420,0.0000015374,0.0000015375,0.0000015406,0.0000015471, +0.0000015528,0.0000015553,0.0000015557,0.0000015545,0.0000015499, +0.0000015438,0.0000015411,0.0000015370,0.0000015310,0.0000015329, +0.0000015599,0.0000015894,0.0000015791,0.0000015557,0.0000015534, +0.0000015618,0.0000015638,0.0000015663,0.0000015675,0.0000015674, +0.0000015665,0.0000015661,0.0000015663,0.0000015658,0.0000015640, +0.0000015615,0.0000015589,0.0000015575,0.0000015570,0.0000015572, +0.0000015580,0.0000015603,0.0000015646,0.0000015715,0.0000015801, +0.0000015900,0.0000016028,0.0000016177,0.0000016295,0.0000016348, +0.0000016345,0.0000016321,0.0000016314,0.0000016414,0.0000016917, +0.0000017841,0.0000019018,0.0000019777,0.0000019713,0.0000019069, +0.0000018051,0.0000017778,0.0000018780,0.0000020228,0.0000020622, +0.0000020253,0.0000019785,0.0000019562,0.0000019615,0.0000019918, +0.0000020214,0.0000020279,0.0000020259,0.0000020356,0.0000020443, +0.0000020338,0.0000019686,0.0000018534,0.0000017800,0.0000017907, +0.0000018268,0.0000018376,0.0000018762,0.0000019085,0.0000019073, +0.0000018900,0.0000018750,0.0000018685,0.0000018667,0.0000018677, +0.0000018721,0.0000018766,0.0000018840,0.0000018922,0.0000018918, +0.0000018760,0.0000018454,0.0000018106,0.0000017852,0.0000017707, +0.0000017584,0.0000017265,0.0000016746,0.0000016508,0.0000016567, +0.0000016598,0.0000016522,0.0000016467,0.0000016531,0.0000016751, +0.0000016958,0.0000017048,0.0000017055,0.0000017069,0.0000017211, +0.0000017524,0.0000017839,0.0000017971,0.0000017947,0.0000017903, +0.0000017959,0.0000018166,0.0000018414,0.0000018571,0.0000018646, +0.0000018701,0.0000018736,0.0000018737,0.0000018719,0.0000018659, +0.0000018519,0.0000018373,0.0000018246,0.0000018004,0.0000017720, +0.0000017544,0.0000017414,0.0000017248,0.0000017010,0.0000016671, +0.0000016322,0.0000016096,0.0000015972,0.0000015876,0.0000015819, +0.0000015818,0.0000015869,0.0000015926,0.0000015959,0.0000016021, +0.0000016164,0.0000016325,0.0000016427,0.0000016478,0.0000016509, +0.0000016514,0.0000016494,0.0000016482,0.0000016404,0.0000016195, +0.0000015994,0.0000015953,0.0000015913,0.0000015759,0.0000015617, +0.0000015502,0.0000015455,0.0000015497,0.0000015580,0.0000015652, +0.0000015747,0.0000015848,0.0000015913,0.0000016015,0.0000016174, +0.0000016448,0.0000016651,0.0000016922,0.0000017072,0.0000016874, +0.0000016441,0.0000016032,0.0000015758,0.0000015452,0.0000015112, +0.0000014882,0.0000014855,0.0000015016,0.0000015362,0.0000015539, +0.0000015624,0.0000015652,0.0000015658,0.0000015673,0.0000015705, +0.0000015728,0.0000015742,0.0000015720,0.0000015424,0.0000014988, +0.0000014862,0.0000015289,0.0000015645,0.0000015746,0.0000016066, +0.0000016342,0.0000016126,0.0000015761,0.0000015599,0.0000015583, +0.0000015597,0.0000015706,0.0000015864,0.0000015947,0.0000015969, +0.0000015981,0.0000015995,0.0000016002,0.0000016016,0.0000016056, +0.0000016122,0.0000016186,0.0000016232,0.0000016231,0.0000016147, +0.0000016109,0.0000016229,0.0000016162,0.0000015700,0.0000015708, +0.0000016167,0.0000016256,0.0000016214,0.0000016110,0.0000015804, +0.0000015611,0.0000015520,0.0000015508,0.0000015494,0.0000015493, +0.0000015616,0.0000015820,0.0000015946,0.0000016074,0.0000016112, +0.0000016045,0.0000016169,0.0000016385,0.0000016445,0.0000016503, +0.0000016603,0.0000016671,0.0000016635,0.0000016431,0.0000016355, +0.0000016286,0.0000016148,0.0000016642,0.0000016851,0.0000016959, +0.0000017025,0.0000017018,0.0000016888,0.0000016706,0.0000016681, +0.0000016828,0.0000016802,0.0000016624,0.0000016642,0.0000016798, +0.0000016692,0.0000016538,0.0000016563,0.0000016652,0.0000016540, +0.0000016254,0.0000016024,0.0000015863,0.0000015898,0.0000016024, +0.0000016219,0.0000016337,0.0000016319,0.0000016575,0.0000017160, +0.0000017503,0.0000017490,0.0000017261,0.0000016979,0.0000016686, +0.0000016608,0.0000016708,0.0000016784,0.0000016819,0.0000016916, +0.0000017063,0.0000017266,0.0000017507,0.0000017667,0.0000017665, +0.0000017484,0.0000017248,0.0000017122,0.0000017094,0.0000017078, +0.0000017020,0.0000016937,0.0000016903,0.0000016940,0.0000017013, +0.0000017083,0.0000017236,0.0000017412,0.0000017500,0.0000017899, +0.0000018144,0.0000017976,0.0000017941,0.0000018007,0.0000017838, +0.0000017637,0.0000017700,0.0000017741,0.0000017808,0.0000018076, +0.0000017738,0.0000017407,0.0000017438,0.0000017517,0.0000017730, +0.0000018152,0.0000018427,0.0000018597,0.0000019247,0.0000019725, +0.0000019483,0.0000019102,0.0000018951,0.0000018608,0.0000018018, +0.0000017709,0.0000017619,0.0000017538,0.0000017532,0.0000017666, +0.0000018073,0.0000018521,0.0000018790,0.0000018897,0.0000018917, +0.0000018883,0.0000018601,0.0000018110,0.0000017768,0.0000017683, +0.0000017666,0.0000017837,0.0000018183,0.0000018526,0.0000018796, +0.0000019084,0.0000019299,0.0000019354,0.0000019257,0.0000018990, +0.0000018730,0.0000018727,0.0000018820,0.0000018641,0.0000018324, +0.0000018292,0.0000018413,0.0000018429,0.0000018333,0.0000018496, +0.0000018828,0.0000018459,0.0000017386,0.0000016802,0.0000016735, +0.0000016757,0.0000016788,0.0000016518,0.0000016316,0.0000016392, +0.0000016479,0.0000016701,0.0000016778,0.0000016946,0.0000017132, +0.0000017379,0.0000017340,0.0000016920,0.0000016717,0.0000016552, +0.0000016291,0.0000016038,0.0000015704,0.0000015536,0.0000015368, +0.0000015270,0.0000015254,0.0000014981,0.0000014690,0.0000014621, +0.0000014534,0.0000014501,0.0000014535,0.0000014560,0.0000014579, +0.0000014618,0.0000014637,0.0000014640,0.0000014652,0.0000014676, +0.0000014710,0.0000014748,0.0000014760,0.0000014766,0.0000014791, +0.0000014820,0.0000014857,0.0000014893,0.0000014925,0.0000014932, +0.0000014922,0.0000014899,0.0000014868,0.0000014835,0.0000014833, +0.0000014854,0.0000014874,0.0000014878,0.0000014865,0.0000014842, +0.0000014814,0.0000014768,0.0000014707,0.0000014635,0.0000014567, +0.0000014491,0.0000014445,0.0000014442,0.0000014479,0.0000014505, +0.0000014482,0.0000014404,0.0000014329,0.0000014307,0.0000014330, +0.0000014388,0.0000014456,0.0000014518,0.0000014579,0.0000014617, +0.0000014610,0.0000014537,0.0000014409,0.0000014284,0.0000014209, +0.0000014182,0.0000014185,0.0000014212,0.0000014232,0.0000014237, +0.0000014244,0.0000014292,0.0000014379,0.0000014461,0.0000014507, +0.0000014515,0.0000014518,0.0000014552,0.0000014619,0.0000014680, +0.0000014724,0.0000014754,0.0000014751,0.0000014704,0.0000014609, +0.0000014489,0.0000014378,0.0000014299,0.0000014264,0.0000014252, +0.0000014336,0.0000014642,0.0000015291,0.0000016077,0.0000016559, +0.0000016738,0.0000016839,0.0000016929,0.0000016966,0.0000016943, +0.0000016835,0.0000016692,0.0000016575,0.0000016503,0.0000016464, +0.0000016427,0.0000016364,0.0000016245,0.0000016043,0.0000015771, +0.0000015440,0.0000015363,0.0000015388,0.0000015450,0.0000015314, +0.0000014947,0.0000014521,0.0000014170,0.0000013927,0.0000013793, +0.0000013782,0.0000013890,0.0000014191,0.0000014566,0.0000014862, +0.0000015017,0.0000015075,0.0000015086,0.0000015097,0.0000015118, +0.0000015150,0.0000015187,0.0000015222,0.0000015250,0.0000015272, +0.0000015295,0.0000015311,0.0000015319,0.0000015322,0.0000015326, +0.0000015340,0.0000015362,0.0000015391,0.0000015417,0.0000015436, +0.0000015448,0.0000015464,0.0000015492,0.0000015500,0.0000015449, +0.0000015395,0.0000015379,0.0000015350,0.0000015292,0.0000015313, +0.0000015598,0.0000015875,0.0000015771,0.0000015544,0.0000015524, +0.0000015597,0.0000015598,0.0000015603,0.0000015599,0.0000015586, +0.0000015581,0.0000015586,0.0000015586,0.0000015571,0.0000015547, +0.0000015519,0.0000015498,0.0000015486,0.0000015482,0.0000015483, +0.0000015504,0.0000015542,0.0000015581,0.0000015640,0.0000015722, +0.0000015799,0.0000015885,0.0000016018,0.0000016149,0.0000016218, +0.0000016219,0.0000016203,0.0000016270,0.0000016731,0.0000017752, +0.0000019029,0.0000019649,0.0000019503,0.0000018931,0.0000018100, +0.0000017879,0.0000018619,0.0000019925,0.0000020575,0.0000020485, +0.0000020102,0.0000019837,0.0000019814,0.0000020031,0.0000020266, +0.0000020289,0.0000020263,0.0000020363,0.0000020459,0.0000020393, +0.0000019821,0.0000018683,0.0000017769,0.0000017863,0.0000018282, +0.0000018316,0.0000018532,0.0000018941,0.0000019089,0.0000018946, +0.0000018753,0.0000018600,0.0000018514,0.0000018532,0.0000018599, +0.0000018629,0.0000018658,0.0000018685,0.0000018696,0.0000018701, +0.0000018659,0.0000018444,0.0000018071,0.0000017758,0.0000017607, +0.0000017376,0.0000016894,0.0000016545,0.0000016558,0.0000016601, +0.0000016514,0.0000016419,0.0000016462,0.0000016671,0.0000016905, +0.0000017034,0.0000017062,0.0000017066,0.0000017169,0.0000017436, +0.0000017756,0.0000017932,0.0000017936,0.0000017897,0.0000017941, +0.0000018135,0.0000018373,0.0000018525,0.0000018597,0.0000018641, +0.0000018660,0.0000018656,0.0000018640,0.0000018576,0.0000018446, +0.0000018332,0.0000018188,0.0000017919,0.0000017673,0.0000017528, +0.0000017398,0.0000017225,0.0000016947,0.0000016569,0.0000016243, +0.0000016061,0.0000015946,0.0000015834,0.0000015775,0.0000015810, +0.0000015899,0.0000015958,0.0000015976,0.0000016017,0.0000016141, +0.0000016289,0.0000016388,0.0000016436,0.0000016456,0.0000016463, +0.0000016452,0.0000016356,0.0000016151,0.0000015991,0.0000015977, +0.0000015931,0.0000015773,0.0000015633,0.0000015515,0.0000015457, +0.0000015498,0.0000015595,0.0000015669,0.0000015737,0.0000015820, +0.0000015883,0.0000015965,0.0000016104,0.0000016358,0.0000016580, +0.0000016825,0.0000017066,0.0000016861,0.0000016349,0.0000015788, +0.0000015340,0.0000014968,0.0000014772,0.0000014774,0.0000014925, +0.0000015144,0.0000015408,0.0000015553,0.0000015563,0.0000015548, +0.0000015549,0.0000015565,0.0000015618,0.0000015697,0.0000015742, +0.0000015752,0.0000015595,0.0000015162,0.0000014830,0.0000015093, +0.0000015569,0.0000015666,0.0000015933,0.0000016293,0.0000016126, +0.0000015770,0.0000015594,0.0000015588,0.0000015607,0.0000015674, +0.0000015785,0.0000015851,0.0000015874,0.0000015890,0.0000015901, +0.0000015917,0.0000015943,0.0000016002,0.0000016070,0.0000016100, +0.0000016091,0.0000016044,0.0000016020,0.0000016115,0.0000016210, +0.0000015914,0.0000015567,0.0000015850,0.0000016223,0.0000016211, +0.0000016177,0.0000015963,0.0000015680,0.0000015544,0.0000015504, +0.0000015504,0.0000015470,0.0000015477,0.0000015654,0.0000015851, +0.0000015966,0.0000016053,0.0000016021,0.0000016010,0.0000016220, +0.0000016360,0.0000016424,0.0000016541,0.0000016651,0.0000016723, +0.0000016680,0.0000016472,0.0000016409,0.0000016289,0.0000016245, +0.0000016724,0.0000016850,0.0000016933,0.0000016986,0.0000016941, +0.0000016780,0.0000016632,0.0000016666,0.0000016808,0.0000016745, +0.0000016646,0.0000016737,0.0000016766,0.0000016555,0.0000016505, +0.0000016596,0.0000016624,0.0000016391,0.0000016120,0.0000015904, +0.0000015829,0.0000015925,0.0000016109,0.0000016305,0.0000016304, +0.0000016413,0.0000016951,0.0000017420,0.0000017484,0.0000017297, +0.0000017010,0.0000016703,0.0000016603,0.0000016696,0.0000016782, +0.0000016834,0.0000016944,0.0000017094,0.0000017284,0.0000017514, +0.0000017695,0.0000017732,0.0000017604,0.0000017360,0.0000017191, +0.0000017145,0.0000017122,0.0000017055,0.0000016969,0.0000016930, +0.0000016959,0.0000017014,0.0000017072,0.0000017230,0.0000017381, +0.0000017542,0.0000017984,0.0000018120,0.0000017954,0.0000017987, +0.0000017924,0.0000017630,0.0000017642,0.0000017725,0.0000017740, +0.0000018007,0.0000017810,0.0000017356,0.0000017349,0.0000017384, +0.0000017579,0.0000017936,0.0000018330,0.0000018462,0.0000018812, +0.0000019518,0.0000019753,0.0000019394,0.0000018998,0.0000018866, +0.0000018660,0.0000018263,0.0000017920,0.0000017780,0.0000017806, +0.0000018077,0.0000018441,0.0000018735,0.0000018955,0.0000019068, +0.0000019048,0.0000018977,0.0000018931,0.0000018735,0.0000018316, +0.0000017959,0.0000017887,0.0000018052,0.0000018354,0.0000018648, +0.0000018959,0.0000019227,0.0000019291,0.0000019352,0.0000019390, +0.0000019364,0.0000019285,0.0000019101,0.0000018946,0.0000018883, +0.0000018760,0.0000018521,0.0000018363,0.0000018378,0.0000018455, +0.0000018694,0.0000018895,0.0000018465,0.0000017424,0.0000016838, +0.0000016767,0.0000016756,0.0000016806,0.0000016671,0.0000016366, +0.0000016368,0.0000016449,0.0000016614,0.0000016756,0.0000016879, +0.0000017051,0.0000017309,0.0000017378,0.0000017033,0.0000016760, +0.0000016611,0.0000016376,0.0000016119,0.0000015773,0.0000015567, +0.0000015400,0.0000015288,0.0000015267,0.0000014996,0.0000014689, +0.0000014612,0.0000014536,0.0000014500,0.0000014526,0.0000014554, +0.0000014578,0.0000014612,0.0000014628,0.0000014628,0.0000014633, +0.0000014651,0.0000014697,0.0000014753,0.0000014774,0.0000014782, +0.0000014798,0.0000014815,0.0000014831,0.0000014851,0.0000014885, +0.0000014903,0.0000014910,0.0000014907,0.0000014890,0.0000014877, +0.0000014880,0.0000014902,0.0000014928,0.0000014940,0.0000014921, +0.0000014875,0.0000014819,0.0000014759,0.0000014690,0.0000014619, +0.0000014547,0.0000014480,0.0000014427,0.0000014419,0.0000014464, +0.0000014512,0.0000014517,0.0000014475,0.0000014432,0.0000014440, +0.0000014503,0.0000014584,0.0000014641,0.0000014666,0.0000014692, +0.0000014724,0.0000014746,0.0000014741,0.0000014693,0.0000014604, +0.0000014498,0.0000014405,0.0000014350,0.0000014339,0.0000014355, +0.0000014383,0.0000014424,0.0000014493,0.0000014588,0.0000014681, +0.0000014740,0.0000014756,0.0000014754,0.0000014758,0.0000014790, +0.0000014835,0.0000014878,0.0000014906,0.0000014903,0.0000014872, +0.0000014804,0.0000014687,0.0000014535,0.0000014376,0.0000014264, +0.0000014216,0.0000014217,0.0000014295,0.0000014676,0.0000015459, +0.0000016244,0.0000016613,0.0000016735,0.0000016825,0.0000016901, +0.0000016951,0.0000016945,0.0000016933,0.0000016909,0.0000016879, +0.0000016845,0.0000016805,0.0000016752,0.0000016684,0.0000016585, +0.0000016394,0.0000016030,0.0000015581,0.0000015367,0.0000015413, +0.0000015509,0.0000015289,0.0000014850,0.0000014425,0.0000014102, +0.0000013885,0.0000013766,0.0000013750,0.0000013838,0.0000014099, +0.0000014437,0.0000014731,0.0000014927,0.0000015020,0.0000015070, +0.0000015096,0.0000015113,0.0000015141,0.0000015179,0.0000015221, +0.0000015264,0.0000015298,0.0000015316,0.0000015323,0.0000015326, +0.0000015326,0.0000015321,0.0000015309,0.0000015302,0.0000015304, +0.0000015317,0.0000015356,0.0000015428,0.0000015493,0.0000015493, +0.0000015432,0.0000015374,0.0000015355,0.0000015328,0.0000015275, +0.0000015306,0.0000015615,0.0000015875,0.0000015747,0.0000015522, +0.0000015499,0.0000015578,0.0000015588,0.0000015570,0.0000015540, +0.0000015512,0.0000015504,0.0000015508,0.0000015507,0.0000015499, +0.0000015487,0.0000015475,0.0000015470,0.0000015462,0.0000015445, +0.0000015427,0.0000015445,0.0000015492,0.0000015537,0.0000015585, +0.0000015665,0.0000015714,0.0000015767,0.0000015893,0.0000016069, +0.0000016177,0.0000016167,0.0000016171,0.0000016548,0.0000017642, +0.0000019023,0.0000019507,0.0000019252,0.0000018882,0.0000018197, +0.0000017940,0.0000018398,0.0000019500,0.0000020488,0.0000020584, +0.0000020346,0.0000020140,0.0000020093,0.0000020195,0.0000020304, +0.0000020285,0.0000020266,0.0000020379,0.0000020482,0.0000020432, +0.0000019920,0.0000018828,0.0000017850,0.0000017853,0.0000018285, +0.0000018349,0.0000018422,0.0000018788,0.0000019046,0.0000018974, +0.0000018729,0.0000018505,0.0000018382,0.0000018387,0.0000018399, +0.0000018370,0.0000018337,0.0000018294,0.0000018244,0.0000018261, +0.0000018388,0.0000018474,0.0000018314,0.0000017912,0.0000017638, +0.0000017447,0.0000017014,0.0000016617,0.0000016577,0.0000016603, +0.0000016494,0.0000016364,0.0000016386,0.0000016586,0.0000016841, +0.0000017009,0.0000017061,0.0000017076,0.0000017154,0.0000017370, +0.0000017676,0.0000017891,0.0000017924,0.0000017891,0.0000017929, +0.0000018105,0.0000018324,0.0000018475,0.0000018549,0.0000018578, +0.0000018582,0.0000018578,0.0000018566,0.0000018496,0.0000018384, +0.0000018288,0.0000018113,0.0000017843,0.0000017641,0.0000017512, +0.0000017380,0.0000017190,0.0000016859,0.0000016464,0.0000016185, +0.0000016040,0.0000015904,0.0000015771,0.0000015740,0.0000015817, +0.0000015918,0.0000015972,0.0000015978,0.0000016010,0.0000016116, +0.0000016251,0.0000016349,0.0000016401,0.0000016416,0.0000016393, +0.0000016280,0.0000016094,0.0000015984,0.0000015989,0.0000015930, +0.0000015777,0.0000015643,0.0000015521,0.0000015466,0.0000015517, +0.0000015620,0.0000015693,0.0000015736,0.0000015790,0.0000015850, +0.0000015921,0.0000016049,0.0000016268,0.0000016514,0.0000016707, +0.0000017055,0.0000016912,0.0000016369,0.0000015640,0.0000015015, +0.0000014715,0.0000014716,0.0000014793,0.0000014959,0.0000015175, +0.0000015344,0.0000015457,0.0000015466,0.0000015444,0.0000015441, +0.0000015467,0.0000015513,0.0000015638,0.0000015739,0.0000015763, +0.0000015629,0.0000015241,0.0000014831,0.0000014948,0.0000015477, +0.0000015612,0.0000015824,0.0000016234,0.0000016118,0.0000015778, +0.0000015601,0.0000015597,0.0000015611,0.0000015640,0.0000015704, +0.0000015750,0.0000015777,0.0000015789,0.0000015795,0.0000015813, +0.0000015846,0.0000015904,0.0000015940,0.0000015943,0.0000015927, +0.0000015920,0.0000015998,0.0000016153,0.0000016115,0.0000015667, +0.0000015560,0.0000015987,0.0000016214,0.0000016164,0.0000016115, +0.0000015821,0.0000015600,0.0000015506,0.0000015502,0.0000015490, +0.0000015446,0.0000015486,0.0000015677,0.0000015853,0.0000015967, +0.0000015990,0.0000015928,0.0000016017,0.0000016235,0.0000016337, +0.0000016458,0.0000016575,0.0000016672,0.0000016761,0.0000016715, +0.0000016499,0.0000016451,0.0000016282,0.0000016373,0.0000016772, +0.0000016838,0.0000016916,0.0000016932,0.0000016846,0.0000016667, +0.0000016570,0.0000016676,0.0000016784,0.0000016712,0.0000016687, +0.0000016768,0.0000016622,0.0000016478,0.0000016511,0.0000016610, +0.0000016525,0.0000016241,0.0000015992,0.0000015820,0.0000015833, +0.0000015989,0.0000016222,0.0000016310,0.0000016323,0.0000016728, +0.0000017288,0.0000017460,0.0000017338,0.0000017047,0.0000016726, +0.0000016600,0.0000016684,0.0000016780,0.0000016845,0.0000016967, +0.0000017123,0.0000017295,0.0000017500,0.0000017686,0.0000017780, +0.0000017735,0.0000017532,0.0000017299,0.0000017197,0.0000017168, +0.0000017102,0.0000017012,0.0000016971,0.0000016986,0.0000017018, +0.0000017080,0.0000017256,0.0000017371,0.0000017649,0.0000018078, +0.0000018084,0.0000017950,0.0000017994,0.0000017722,0.0000017598, +0.0000017701,0.0000017679,0.0000017904,0.0000017890,0.0000017369, +0.0000017319,0.0000017291,0.0000017403,0.0000017666,0.0000018020, +0.0000018386,0.0000018543,0.0000018830,0.0000019374,0.0000019665, +0.0000019500,0.0000019071,0.0000018834,0.0000018720,0.0000018570, +0.0000018408,0.0000018339,0.0000018436,0.0000018683,0.0000018996, +0.0000019303,0.0000019466,0.0000019452,0.0000019278,0.0000019060, +0.0000018950,0.0000018835,0.0000018588,0.0000018374,0.0000018368, +0.0000018536,0.0000018784,0.0000019072,0.0000019246,0.0000019178, +0.0000018969,0.0000018918,0.0000019028,0.0000019165,0.0000019257, +0.0000019219,0.0000019184,0.0000019076,0.0000019005,0.0000018853, +0.0000018721,0.0000018729,0.0000018918,0.0000018918,0.0000018372, +0.0000017379,0.0000016849,0.0000016792,0.0000016759,0.0000016791, +0.0000016773,0.0000016476,0.0000016346,0.0000016430,0.0000016528, +0.0000016703,0.0000016821,0.0000016989,0.0000017230,0.0000017407, +0.0000017131,0.0000016821,0.0000016664,0.0000016451,0.0000016192, +0.0000015852,0.0000015613,0.0000015438,0.0000015311,0.0000015280, +0.0000015014,0.0000014683,0.0000014587,0.0000014523,0.0000014495, +0.0000014519,0.0000014551,0.0000014585,0.0000014614,0.0000014619, +0.0000014618,0.0000014621,0.0000014639,0.0000014682,0.0000014733, +0.0000014747,0.0000014752,0.0000014760,0.0000014772,0.0000014789, +0.0000014802,0.0000014830,0.0000014864,0.0000014886,0.0000014893, +0.0000014881,0.0000014865,0.0000014859,0.0000014870,0.0000014897, +0.0000014928,0.0000014946,0.0000014941,0.0000014909,0.0000014846, +0.0000014763,0.0000014677,0.0000014594,0.0000014518,0.0000014461, +0.0000014451,0.0000014491,0.0000014557,0.0000014588,0.0000014587, +0.0000014598,0.0000014653,0.0000014731,0.0000014777,0.0000014764, +0.0000014731,0.0000014722,0.0000014745,0.0000014775,0.0000014786, +0.0000014763,0.0000014719,0.0000014685,0.0000014669,0.0000014652, +0.0000014638,0.0000014642,0.0000014668,0.0000014701,0.0000014738, +0.0000014783,0.0000014834,0.0000014866,0.0000014871,0.0000014858, +0.0000014839,0.0000014830,0.0000014856,0.0000014904,0.0000014940, +0.0000014940,0.0000014917,0.0000014883,0.0000014812,0.0000014683, +0.0000014497,0.0000014293,0.0000014181,0.0000014160,0.0000014173, +0.0000014334,0.0000014916,0.0000015794,0.0000016427,0.0000016645, +0.0000016715,0.0000016786,0.0000016849,0.0000016886,0.0000016906, +0.0000016908,0.0000016886,0.0000016861,0.0000016838,0.0000016806, +0.0000016758,0.0000016700,0.0000016645,0.0000016467,0.0000016030, +0.0000015493,0.0000015305,0.0000015523,0.0000015562,0.0000015200, +0.0000014729,0.0000014345,0.0000014057,0.0000013857,0.0000013734, +0.0000013709,0.0000013773,0.0000013977,0.0000014256,0.0000014537, +0.0000014766,0.0000014940,0.0000015034,0.0000015075,0.0000015089, +0.0000015103,0.0000015136,0.0000015186,0.0000015240,0.0000015288, +0.0000015316,0.0000015324,0.0000015323,0.0000015310,0.0000015295, +0.0000015291,0.0000015301,0.0000015329,0.0000015392,0.0000015475, +0.0000015512,0.0000015486,0.0000015418,0.0000015365,0.0000015338, +0.0000015307,0.0000015251,0.0000015314,0.0000015642,0.0000015862, +0.0000015729,0.0000015508,0.0000015451,0.0000015503,0.0000015495, +0.0000015464,0.0000015438,0.0000015431,0.0000015445,0.0000015466, +0.0000015486,0.0000015500,0.0000015523,0.0000015550,0.0000015563, +0.0000015545,0.0000015486,0.0000015417,0.0000015408,0.0000015457, +0.0000015504,0.0000015547,0.0000015618,0.0000015641,0.0000015647, +0.0000015782,0.0000016016,0.0000016143,0.0000016127,0.0000016377, +0.0000017522,0.0000019000,0.0000019303,0.0000018956,0.0000018867, +0.0000018336,0.0000017983,0.0000018207,0.0000019020,0.0000020138, +0.0000020582,0.0000020500,0.0000020330,0.0000020290,0.0000020320, +0.0000020330,0.0000020280,0.0000020278,0.0000020411,0.0000020508, +0.0000020461,0.0000019983,0.0000018918,0.0000017875,0.0000017816, +0.0000018312,0.0000018423,0.0000018418,0.0000018699,0.0000018996, +0.0000018952,0.0000018670,0.0000018425,0.0000018341,0.0000018337, +0.0000018299,0.0000018250,0.0000018227,0.0000018195,0.0000018143, +0.0000018103,0.0000018119,0.0000018259,0.0000018350,0.0000018106, +0.0000017732,0.0000017503,0.0000017107,0.0000016674,0.0000016596, +0.0000016606,0.0000016463,0.0000016304,0.0000016304,0.0000016488, +0.0000016767,0.0000016972,0.0000017055,0.0000017094,0.0000017156, +0.0000017317,0.0000017596,0.0000017843,0.0000017903,0.0000017883, +0.0000017914,0.0000018063,0.0000018264,0.0000018422,0.0000018505, +0.0000018525,0.0000018523,0.0000018521,0.0000018500,0.0000018422, +0.0000018331,0.0000018232,0.0000018026,0.0000017782,0.0000017621, +0.0000017498,0.0000017365,0.0000017132,0.0000016752,0.0000016374, +0.0000016151,0.0000016011,0.0000015833,0.0000015723,0.0000015737, +0.0000015821,0.0000015918,0.0000015975,0.0000015989,0.0000016013, +0.0000016096,0.0000016206,0.0000016289,0.0000016313,0.0000016289, +0.0000016181,0.0000016041,0.0000015989,0.0000015992,0.0000015908, +0.0000015765,0.0000015643,0.0000015518,0.0000015480,0.0000015554, +0.0000015663,0.0000015734,0.0000015750,0.0000015771,0.0000015815, +0.0000015883,0.0000016003,0.0000016192,0.0000016447,0.0000016585, +0.0000017036,0.0000016995,0.0000016494,0.0000015662,0.0000014973, +0.0000014719,0.0000014732,0.0000014796,0.0000014926,0.0000015131, +0.0000015060,0.0000015219,0.0000015350,0.0000015393,0.0000015388, +0.0000015409,0.0000015463,0.0000015573,0.0000015725,0.0000015765, +0.0000015593,0.0000015204,0.0000014826,0.0000014848,0.0000015390, +0.0000015575,0.0000015741,0.0000016174,0.0000016086,0.0000015778, +0.0000015614,0.0000015599,0.0000015594,0.0000015596,0.0000015624, +0.0000015657,0.0000015677,0.0000015676,0.0000015681,0.0000015704, +0.0000015749,0.0000015791,0.0000015812,0.0000015825,0.0000015839, +0.0000015894,0.0000016037,0.0000016129,0.0000015908,0.0000015511, +0.0000015602,0.0000016073,0.0000016164,0.0000016128,0.0000016033, +0.0000015720,0.0000015547,0.0000015486,0.0000015499,0.0000015464, +0.0000015430,0.0000015499,0.0000015673,0.0000015845,0.0000015949, +0.0000015898,0.0000015865,0.0000016056,0.0000016236,0.0000016360, +0.0000016495,0.0000016576,0.0000016682,0.0000016793,0.0000016719, +0.0000016515,0.0000016475,0.0000016295,0.0000016503,0.0000016785, +0.0000016837,0.0000016883,0.0000016870,0.0000016731,0.0000016562, +0.0000016538,0.0000016696,0.0000016760,0.0000016702,0.0000016718, +0.0000016688,0.0000016484,0.0000016450,0.0000016547,0.0000016593, +0.0000016382,0.0000016110,0.0000015881,0.0000015784,0.0000015872, +0.0000016104,0.0000016294,0.0000016311,0.0000016532,0.0000017108, +0.0000017442,0.0000017369,0.0000017086,0.0000016755,0.0000016603, +0.0000016674,0.0000016776,0.0000016852,0.0000016982,0.0000017151, +0.0000017307,0.0000017472,0.0000017651,0.0000017780,0.0000017811, +0.0000017719,0.0000017472,0.0000017271,0.0000017208,0.0000017162, +0.0000017077,0.0000017021,0.0000017012,0.0000017029,0.0000017131, +0.0000017292,0.0000017421,0.0000017829,0.0000018142,0.0000018009, +0.0000017978,0.0000017894,0.0000017587,0.0000017671,0.0000017668, +0.0000017756,0.0000017919,0.0000017431,0.0000017305,0.0000017256, +0.0000017268,0.0000017450,0.0000017662,0.0000017957,0.0000018336, +0.0000018558,0.0000018663,0.0000018958,0.0000019421,0.0000019618, +0.0000019432,0.0000019036,0.0000018788,0.0000018682,0.0000018657, +0.0000018716,0.0000018948,0.0000019287,0.0000019549,0.0000019620, +0.0000019621,0.0000019636,0.0000019489,0.0000019195,0.0000018982, +0.0000018880,0.0000018766,0.0000018684,0.0000018713,0.0000018926, +0.0000019193,0.0000019225,0.0000018980,0.0000018562,0.0000018282, +0.0000018251,0.0000018350,0.0000018497,0.0000018654,0.0000018827, +0.0000018965,0.0000019064,0.0000019099,0.0000019039,0.0000019039, +0.0000019045,0.0000018842,0.0000018117,0.0000017223,0.0000016829, +0.0000016812,0.0000016772,0.0000016758,0.0000016801,0.0000016609, +0.0000016353,0.0000016388,0.0000016468,0.0000016619,0.0000016749, +0.0000016922,0.0000017135,0.0000017394,0.0000017240,0.0000016911, +0.0000016725,0.0000016521,0.0000016257,0.0000015929,0.0000015668, +0.0000015482,0.0000015338,0.0000015291,0.0000015033,0.0000014675, +0.0000014553,0.0000014498,0.0000014486,0.0000014518,0.0000014559, +0.0000014597,0.0000014618,0.0000014612,0.0000014612,0.0000014626, +0.0000014643,0.0000014663,0.0000014689,0.0000014707,0.0000014718, +0.0000014722,0.0000014732,0.0000014753,0.0000014771,0.0000014789, +0.0000014819,0.0000014850,0.0000014872,0.0000014879,0.0000014884, +0.0000014902,0.0000014927,0.0000014945,0.0000014958,0.0000014959, +0.0000014957,0.0000014949,0.0000014928,0.0000014884,0.0000014814, +0.0000014731,0.0000014653,0.0000014592,0.0000014579,0.0000014624, +0.0000014710,0.0000014774,0.0000014816,0.0000014864,0.0000014887, +0.0000014859,0.0000014817,0.0000014776,0.0000014757,0.0000014759, +0.0000014788,0.0000014826,0.0000014851,0.0000014843,0.0000014803, +0.0000014753,0.0000014723,0.0000014719,0.0000014723,0.0000014736, +0.0000014765,0.0000014798,0.0000014825,0.0000014856,0.0000014896, +0.0000014922,0.0000014927,0.0000014917,0.0000014892,0.0000014874, +0.0000014878,0.0000014923,0.0000014968,0.0000014971,0.0000014946, +0.0000014900,0.0000014841,0.0000014738,0.0000014560,0.0000014326, +0.0000014154,0.0000014096,0.0000014102,0.0000014171,0.0000014550, +0.0000015347,0.0000016146,0.0000016550,0.0000016648,0.0000016680, +0.0000016724,0.0000016768,0.0000016798,0.0000016813,0.0000016813, +0.0000016804,0.0000016794,0.0000016781,0.0000016755,0.0000016710, +0.0000016661,0.0000016619,0.0000016397,0.0000015812,0.0000015285, +0.0000015440,0.0000015671,0.0000015531,0.0000015079,0.0000014638, +0.0000014301,0.0000014036,0.0000013832,0.0000013711,0.0000013694, +0.0000013692,0.0000013822,0.0000014035,0.0000014300,0.0000014574, +0.0000014805,0.0000014965,0.0000015042,0.0000015064,0.0000015066, +0.0000015083,0.0000015128,0.0000015188,0.0000015252,0.0000015304, +0.0000015340,0.0000015366,0.0000015376,0.0000015383,0.0000015400, +0.0000015434,0.0000015484,0.0000015514,0.0000015500,0.0000015440, +0.0000015382,0.0000015351,0.0000015328,0.0000015284,0.0000015227, +0.0000015327,0.0000015656,0.0000015847,0.0000015741,0.0000015526, +0.0000015414,0.0000015411,0.0000015402,0.0000015399,0.0000015412, +0.0000015440,0.0000015472,0.0000015501,0.0000015553,0.0000015613, +0.0000015641,0.0000015657,0.0000015670,0.0000015658,0.0000015585, +0.0000015449,0.0000015387,0.0000015435,0.0000015484,0.0000015519, +0.0000015585,0.0000015578,0.0000015555,0.0000015722,0.0000016018, +0.0000016111,0.0000016254,0.0000017377,0.0000018926,0.0000019063, +0.0000018580,0.0000018828,0.0000018526,0.0000018007,0.0000018079, +0.0000018555,0.0000019579,0.0000020477,0.0000020572,0.0000020416, +0.0000020324,0.0000020321,0.0000020322,0.0000020301,0.0000020328, +0.0000020463,0.0000020550,0.0000020476,0.0000020012,0.0000018979, +0.0000017922,0.0000017829,0.0000018345,0.0000018497,0.0000018463, +0.0000018676,0.0000018945,0.0000018895,0.0000018597,0.0000018373, +0.0000018337,0.0000018372,0.0000018344,0.0000018303,0.0000018271, +0.0000018228,0.0000018191,0.0000018153,0.0000018119,0.0000018148, +0.0000018266,0.0000018212,0.0000017874,0.0000017560,0.0000017159, +0.0000016720,0.0000016617,0.0000016598,0.0000016435,0.0000016255, +0.0000016223,0.0000016392,0.0000016688,0.0000016933,0.0000017055, +0.0000017113,0.0000017159,0.0000017265,0.0000017510,0.0000017778, +0.0000017881,0.0000017868,0.0000017886,0.0000018010,0.0000018199, +0.0000018370,0.0000018467,0.0000018489,0.0000018489,0.0000018482, +0.0000018436,0.0000018356,0.0000018283,0.0000018164,0.0000017940, +0.0000017735,0.0000017602,0.0000017488,0.0000017340,0.0000017051, +0.0000016642,0.0000016301,0.0000016124,0.0000015955,0.0000015782, +0.0000015736,0.0000015760,0.0000015824,0.0000015915,0.0000015986, +0.0000016012,0.0000016032,0.0000016087,0.0000016154,0.0000016184, +0.0000016164,0.0000016086,0.0000016009,0.0000016000,0.0000015989, +0.0000015874,0.0000015743,0.0000015629,0.0000015523,0.0000015508, +0.0000015612,0.0000015734,0.0000015811,0.0000015809,0.0000015776, +0.0000015787,0.0000015848,0.0000015966,0.0000016138,0.0000016377, +0.0000016494,0.0000016919,0.0000017055,0.0000016682,0.0000015812, +0.0000015032,0.0000014726,0.0000014781,0.0000014803,0.0000014837, +0.0000014922,0.0000014792,0.0000014870,0.0000015062,0.0000015288, +0.0000015385,0.0000015391,0.0000015451,0.0000015532,0.0000015694, +0.0000015763,0.0000015532,0.0000015107,0.0000014792,0.0000014807, +0.0000015354,0.0000015568,0.0000015688,0.0000016105,0.0000016043, +0.0000015771,0.0000015624,0.0000015587,0.0000015554,0.0000015541, +0.0000015553,0.0000015577,0.0000015583,0.0000015581,0.0000015601, +0.0000015648,0.0000015697,0.0000015727,0.0000015753,0.0000015778, +0.0000015822,0.0000015922,0.0000016048,0.0000016033,0.0000015665, +0.0000015439,0.0000015694,0.0000016088,0.0000016116,0.0000016094, +0.0000015931,0.0000015640,0.0000015502,0.0000015477,0.0000015483, +0.0000015431,0.0000015416,0.0000015499,0.0000015657,0.0000015849, +0.0000015903,0.0000015798,0.0000015854,0.0000016111,0.0000016254, +0.0000016401,0.0000016504,0.0000016571,0.0000016703,0.0000016813, +0.0000016694,0.0000016548,0.0000016463,0.0000016297,0.0000016624, +0.0000016791,0.0000016823,0.0000016850,0.0000016780,0.0000016605, +0.0000016491,0.0000016541,0.0000016716,0.0000016738,0.0000016694, +0.0000016704,0.0000016528,0.0000016410,0.0000016452,0.0000016571, +0.0000016506,0.0000016245,0.0000015984,0.0000015788,0.0000015782, +0.0000015970,0.0000016227,0.0000016288,0.0000016387,0.0000016903, +0.0000017366,0.0000017382,0.0000017123,0.0000016786,0.0000016615, +0.0000016667,0.0000016771,0.0000016852,0.0000016984,0.0000017169, +0.0000017326,0.0000017448,0.0000017585,0.0000017723,0.0000017814, +0.0000017833,0.0000017685,0.0000017423,0.0000017263,0.0000017215, +0.0000017164,0.0000017103,0.0000017079,0.0000017107,0.0000017221, +0.0000017325,0.0000017590,0.0000018025,0.0000018106,0.0000017961, +0.0000017993,0.0000017697,0.0000017599,0.0000017693,0.0000017647, +0.0000017868,0.0000017581,0.0000017270,0.0000017239,0.0000017177, +0.0000017271,0.0000017453,0.0000017578,0.0000017759,0.0000018076, +0.0000018380,0.0000018528,0.0000018630,0.0000018951,0.0000019429, +0.0000019622,0.0000019487,0.0000019193,0.0000019050,0.0000019110, +0.0000019319,0.0000019473,0.0000019411,0.0000019242,0.0000019109, +0.0000019258,0.0000019534,0.0000019590,0.0000019386,0.0000019108, +0.0000018959,0.0000018906,0.0000018933,0.0000019103,0.0000019289, +0.0000019219,0.0000018829,0.0000018266,0.0000017812,0.0000017607, +0.0000017580,0.0000017617,0.0000017688,0.0000017788,0.0000017951, +0.0000018193,0.0000018447,0.0000018638,0.0000018714,0.0000018661, +0.0000018308,0.0000017635,0.0000017009,0.0000016783,0.0000016803, +0.0000016783,0.0000016728,0.0000016783,0.0000016723,0.0000016422, +0.0000016344,0.0000016417,0.0000016533,0.0000016670,0.0000016854, +0.0000017051,0.0000017320,0.0000017299,0.0000017006,0.0000016789, +0.0000016586,0.0000016316,0.0000015999,0.0000015720,0.0000015524, +0.0000015366,0.0000015300,0.0000015053,0.0000014669,0.0000014515, +0.0000014467,0.0000014473,0.0000014520,0.0000014567,0.0000014608, +0.0000014623,0.0000014610,0.0000014613,0.0000014641,0.0000014671, +0.0000014677,0.0000014670,0.0000014691,0.0000014717,0.0000014722, +0.0000014728,0.0000014743,0.0000014766,0.0000014784,0.0000014801, +0.0000014826,0.0000014860,0.0000014912,0.0000015005,0.0000015111, +0.0000015182,0.0000015207,0.0000015200,0.0000015171,0.0000015128, +0.0000015083,0.0000015042,0.0000015005,0.0000014963,0.0000014898, +0.0000014821,0.0000014758,0.0000014748,0.0000014800,0.0000014899, +0.0000014978,0.0000014998,0.0000014980,0.0000014918,0.0000014855, +0.0000014836,0.0000014854,0.0000014875,0.0000014885,0.0000014901, +0.0000014927,0.0000014952,0.0000014961,0.0000014939,0.0000014895, +0.0000014853,0.0000014832,0.0000014830,0.0000014841,0.0000014872, +0.0000014921,0.0000014962,0.0000014995,0.0000015018,0.0000015025, +0.0000015021,0.0000015005,0.0000014968,0.0000014927,0.0000014914, +0.0000014938,0.0000014971,0.0000014983,0.0000014969,0.0000014923, +0.0000014856,0.0000014756,0.0000014579,0.0000014340,0.0000014128, +0.0000014041,0.0000014040,0.0000014078,0.0000014327,0.0000014988, +0.0000015827,0.0000016399,0.0000016613,0.0000016652,0.0000016662, +0.0000016682,0.0000016707,0.0000016726,0.0000016732,0.0000016727, +0.0000016715,0.0000016713,0.0000016720,0.0000016702,0.0000016658, +0.0000016619,0.0000016559,0.0000016169,0.0000015504,0.0000015359, +0.0000015645,0.0000015745,0.0000015436,0.0000014976,0.0000014587, +0.0000014289,0.0000014035,0.0000013832,0.0000013699,0.0000013642, +0.0000013636,0.0000013694,0.0000013832,0.0000014063,0.0000014355, +0.0000014650,0.0000014876,0.0000014995,0.0000015039,0.0000015041, +0.0000015037,0.0000015042,0.0000015090,0.0000015170,0.0000015266, +0.0000015359,0.0000015428,0.0000015476,0.0000015516,0.0000015527, +0.0000015521,0.0000015485,0.0000015408,0.0000015343,0.0000015335, +0.0000015335,0.0000015318,0.0000015254,0.0000015207,0.0000015332, +0.0000015646,0.0000015821,0.0000015779,0.0000015607,0.0000015454, +0.0000015406,0.0000015416,0.0000015466,0.0000015515,0.0000015518, +0.0000015523,0.0000015575,0.0000015616,0.0000015549,0.0000015504, +0.0000015521,0.0000015606,0.0000015677,0.0000015645,0.0000015469, +0.0000015372,0.0000015429,0.0000015467,0.0000015495,0.0000015562, +0.0000015514,0.0000015499,0.0000015765,0.0000016044,0.0000016192, +0.0000017188,0.0000018782,0.0000018887,0.0000018151,0.0000018577, +0.0000018743,0.0000018068,0.0000018007,0.0000018261,0.0000018923, +0.0000020003,0.0000020514,0.0000020497,0.0000020385,0.0000020323, +0.0000020317,0.0000020323,0.0000020392,0.0000020521,0.0000020576, +0.0000020464,0.0000019992,0.0000018996,0.0000017968,0.0000017861, +0.0000018367,0.0000018540,0.0000018507,0.0000018684,0.0000018879, +0.0000018816,0.0000018502,0.0000018321,0.0000018343,0.0000018407, +0.0000018369,0.0000018313,0.0000018266,0.0000018219,0.0000018171, +0.0000018142,0.0000018135,0.0000018139,0.0000018213,0.0000018243, +0.0000017985,0.0000017609,0.0000017181,0.0000016745,0.0000016617, +0.0000016586,0.0000016421,0.0000016229,0.0000016176,0.0000016295, +0.0000016599,0.0000016884,0.0000017035,0.0000017110,0.0000017151, +0.0000017216,0.0000017419,0.0000017697,0.0000017847,0.0000017854, +0.0000017859,0.0000017960,0.0000018141,0.0000018322,0.0000018431, +0.0000018466,0.0000018469,0.0000018442,0.0000018372,0.0000018301, +0.0000018234,0.0000018086,0.0000017865,0.0000017699,0.0000017588, +0.0000017480,0.0000017297,0.0000016948,0.0000016528,0.0000016248, +0.0000016083,0.0000015898,0.0000015781,0.0000015768,0.0000015782, +0.0000015830,0.0000015927,0.0000016021,0.0000016056,0.0000016067, +0.0000016081,0.0000016089,0.0000016074,0.0000016031,0.0000016004, +0.0000016000,0.0000015953,0.0000015836,0.0000015716,0.0000015606, +0.0000015532,0.0000015568,0.0000015698,0.0000015830,0.0000015917, +0.0000015920,0.0000015840,0.0000015788,0.0000015826,0.0000015938, +0.0000016105,0.0000016313,0.0000016445,0.0000016778,0.0000017071, +0.0000016860,0.0000016020,0.0000015158,0.0000014741,0.0000014828, +0.0000014832,0.0000014804,0.0000014782,0.0000014759,0.0000014735, +0.0000014786,0.0000015021,0.0000015320,0.0000015399,0.0000015425, +0.0000015527,0.0000015638,0.0000015755,0.0000015522,0.0000015029, +0.0000014760,0.0000014839,0.0000015394,0.0000015580,0.0000015655, +0.0000016031,0.0000015984,0.0000015746,0.0000015613,0.0000015552, +0.0000015497,0.0000015484,0.0000015497,0.0000015511,0.0000015514, +0.0000015534,0.0000015585,0.0000015651,0.0000015690,0.0000015712, +0.0000015736,0.0000015773,0.0000015835,0.0000015920,0.0000015973, +0.0000015816,0.0000015460,0.0000015412,0.0000015777,0.0000016075, +0.0000016076,0.0000016056,0.0000015812,0.0000015568,0.0000015461, +0.0000015463,0.0000015455,0.0000015390,0.0000015389,0.0000015485, +0.0000015662,0.0000015856,0.0000015829,0.0000015729,0.0000015921, +0.0000016161,0.0000016297,0.0000016434,0.0000016503,0.0000016583, +0.0000016728,0.0000016807,0.0000016665,0.0000016577,0.0000016398, +0.0000016378,0.0000016721,0.0000016778,0.0000016808,0.0000016795, +0.0000016656,0.0000016508,0.0000016441,0.0000016562,0.0000016726, +0.0000016704,0.0000016685,0.0000016593,0.0000016396,0.0000016378, +0.0000016488,0.0000016559,0.0000016389,0.0000016113,0.0000015861, +0.0000015756,0.0000015847,0.0000016111,0.0000016257,0.0000016288, +0.0000016702,0.0000017256,0.0000017371,0.0000017156,0.0000016817, +0.0000016621,0.0000016657,0.0000016765,0.0000016845,0.0000016973, +0.0000017168,0.0000017339,0.0000017440,0.0000017521,0.0000017621, +0.0000017732,0.0000017827,0.0000017835,0.0000017658,0.0000017412, +0.0000017274,0.0000017231,0.0000017203,0.0000017191,0.0000017221, +0.0000017282,0.0000017455,0.0000017865,0.0000018131,0.0000018010, +0.0000017961,0.0000017932,0.0000017577,0.0000017684,0.0000017646, +0.0000017709,0.0000017757,0.0000017269,0.0000017213,0.0000017096, +0.0000017104,0.0000017237,0.0000017372,0.0000017455,0.0000017558, +0.0000017714,0.0000017954,0.0000018246,0.0000018480,0.0000018647, +0.0000018925,0.0000019339,0.0000019592,0.0000019608,0.0000019571, +0.0000019552,0.0000019412,0.0000019086,0.0000018708,0.0000018493, +0.0000018460,0.0000018666,0.0000019117,0.0000019489,0.0000019504, +0.0000019352,0.0000019236,0.0000019231,0.0000019289,0.0000019309, +0.0000019181,0.0000018708,0.0000018092,0.0000017557,0.0000017251, +0.0000017112,0.0000017071,0.0000017076,0.0000017103,0.0000017137, +0.0000017199,0.0000017328,0.0000017501,0.0000017627,0.0000017646, +0.0000017464,0.0000017111,0.0000016828,0.0000016757,0.0000016785, +0.0000016776,0.0000016703,0.0000016727,0.0000016768,0.0000016541, +0.0000016337,0.0000016370,0.0000016459,0.0000016588,0.0000016785, +0.0000016977,0.0000017257,0.0000017319,0.0000017106,0.0000016853, +0.0000016642,0.0000016372,0.0000016060,0.0000015764,0.0000015555, +0.0000015388,0.0000015305,0.0000015073,0.0000014670,0.0000014481, +0.0000014438,0.0000014459,0.0000014516,0.0000014566,0.0000014605, +0.0000014624,0.0000014617,0.0000014637,0.0000014674,0.0000014708, +0.0000014709,0.0000014685,0.0000014702,0.0000014745,0.0000014763, +0.0000014764,0.0000014775,0.0000014801,0.0000014827,0.0000014848, +0.0000014870,0.0000014895,0.0000014981,0.0000015144,0.0000015297, +0.0000015338,0.0000015338,0.0000015309,0.0000015296,0.0000015290, +0.0000015291,0.0000015276,0.0000015246,0.0000015201,0.0000015141, +0.0000015061,0.0000014980,0.0000014943,0.0000014960,0.0000015009, +0.0000015026,0.0000014996,0.0000014941,0.0000014907,0.0000014919, +0.0000014958,0.0000014987,0.0000014997,0.0000014989,0.0000014981, +0.0000014992,0.0000015014,0.0000015035,0.0000015043,0.0000015033, +0.0000015006,0.0000014978,0.0000014963,0.0000014964,0.0000014984, +0.0000015026,0.0000015070,0.0000015098,0.0000015108,0.0000015097, +0.0000015071,0.0000015035,0.0000014983,0.0000014924,0.0000014883, +0.0000014892,0.0000014924,0.0000014949,0.0000014959,0.0000014939, +0.0000014884,0.0000014789,0.0000014607,0.0000014342,0.0000014108, +0.0000014004,0.0000013989,0.0000014010,0.0000014188,0.0000014722, +0.0000015515,0.0000016184,0.0000016534,0.0000016646,0.0000016666, +0.0000016672,0.0000016682,0.0000016691,0.0000016694,0.0000016679, +0.0000016640,0.0000016628,0.0000016652,0.0000016679,0.0000016651, +0.0000016609,0.0000016568,0.0000016417,0.0000015829,0.0000015331, +0.0000015457,0.0000015772,0.0000015732,0.0000015340,0.0000014906, +0.0000014570,0.0000014305,0.0000014058,0.0000013842,0.0000013695, +0.0000013621,0.0000013601,0.0000013594,0.0000013695,0.0000013885, +0.0000014158,0.0000014468,0.0000014757,0.0000014957,0.0000015032, +0.0000015018,0.0000014975,0.0000014950,0.0000014982,0.0000015094, +0.0000015248,0.0000015404,0.0000015507,0.0000015534,0.0000015516, +0.0000015445,0.0000015336,0.0000015236,0.0000015223,0.0000015280, +0.0000015321,0.0000015304,0.0000015228,0.0000015201,0.0000015318, +0.0000015598,0.0000015809,0.0000015813,0.0000015740,0.0000015642, +0.0000015615,0.0000015642,0.0000015641,0.0000015559,0.0000015519, +0.0000015547,0.0000015479,0.0000015281,0.0000015179,0.0000015186, +0.0000015276,0.0000015466,0.0000015660,0.0000015671,0.0000015464, +0.0000015359,0.0000015430,0.0000015439,0.0000015481,0.0000015530, +0.0000015460,0.0000015525,0.0000015871,0.0000016144,0.0000016944, +0.0000018534,0.0000018843,0.0000017860,0.0000018079,0.0000018782, +0.0000018322,0.0000017999,0.0000018134,0.0000018424,0.0000019275, +0.0000020226,0.0000020497,0.0000020464,0.0000020394,0.0000020366, +0.0000020379,0.0000020464,0.0000020578,0.0000020588,0.0000020409, +0.0000019922,0.0000018937,0.0000017931,0.0000017863,0.0000018399, +0.0000018566,0.0000018531,0.0000018690,0.0000018850,0.0000018726, +0.0000018412,0.0000018278,0.0000018325,0.0000018374,0.0000018325, +0.0000018267,0.0000018194,0.0000018083,0.0000017976,0.0000017967, +0.0000018051,0.0000018131,0.0000018193,0.0000018226,0.0000018032, +0.0000017635,0.0000017169,0.0000016744,0.0000016615,0.0000016581, +0.0000016421,0.0000016223,0.0000016126,0.0000016211,0.0000016496, +0.0000016801,0.0000016985,0.0000017081,0.0000017128,0.0000017167, +0.0000017321,0.0000017595,0.0000017797,0.0000017833,0.0000017840, +0.0000017924,0.0000018092,0.0000018271,0.0000018393,0.0000018441, +0.0000018440,0.0000018389,0.0000018315,0.0000018259,0.0000018180, +0.0000018006,0.0000017809,0.0000017678,0.0000017580,0.0000017464, +0.0000017226,0.0000016821,0.0000016431,0.0000016205,0.0000016026, +0.0000015849,0.0000015775,0.0000015775,0.0000015795,0.0000015852, +0.0000015961,0.0000016056,0.0000016085,0.0000016083,0.0000016066, +0.0000016050,0.0000016026,0.0000016008,0.0000015974,0.0000015894, +0.0000015792,0.0000015684,0.0000015598,0.0000015577,0.0000015659, +0.0000015805,0.0000015934,0.0000016013,0.0000016025,0.0000015952, +0.0000015846,0.0000015835,0.0000015924,0.0000016085,0.0000016266, +0.0000016417,0.0000016660,0.0000017046,0.0000016988,0.0000016225, +0.0000015330,0.0000014758,0.0000014863,0.0000014885,0.0000014859, +0.0000014808,0.0000014874,0.0000014790,0.0000014748,0.0000014816, +0.0000015086,0.0000015386,0.0000015409,0.0000015499,0.0000015591, +0.0000015720,0.0000015593,0.0000015074,0.0000014794,0.0000014963, +0.0000015484,0.0000015590,0.0000015639,0.0000015951,0.0000015908, +0.0000015697,0.0000015571,0.0000015500,0.0000015444,0.0000015439, +0.0000015452,0.0000015460,0.0000015487,0.0000015541,0.0000015615, +0.0000015672,0.0000015696,0.0000015710,0.0000015739,0.0000015773, +0.0000015798,0.0000015836,0.0000015804,0.0000015533,0.0000015331, +0.0000015430,0.0000015850,0.0000016054,0.0000016055,0.0000015996, +0.0000015686,0.0000015492,0.0000015422,0.0000015442,0.0000015405, +0.0000015340,0.0000015363,0.0000015480,0.0000015706,0.0000015838, +0.0000015722,0.0000015735,0.0000016016,0.0000016214,0.0000016353, +0.0000016450,0.0000016518,0.0000016608,0.0000016755,0.0000016778, +0.0000016647,0.0000016557,0.0000016340,0.0000016521,0.0000016760, +0.0000016770,0.0000016774,0.0000016689,0.0000016560,0.0000016432, +0.0000016420,0.0000016615,0.0000016711,0.0000016672,0.0000016631, +0.0000016421,0.0000016333,0.0000016384,0.0000016535,0.0000016503, +0.0000016260,0.0000015977,0.0000015774,0.0000015768,0.0000015971, +0.0000016206,0.0000016263,0.0000016529,0.0000017110,0.0000017332, +0.0000017191,0.0000016845,0.0000016627,0.0000016651,0.0000016758, +0.0000016832,0.0000016953,0.0000017147,0.0000017328,0.0000017434, +0.0000017489,0.0000017535,0.0000017610,0.0000017725,0.0000017841, +0.0000017844,0.0000017679,0.0000017466,0.0000017335,0.0000017293, +0.0000017289,0.0000017316,0.0000017445,0.0000017768,0.0000018071, +0.0000018075,0.0000017929,0.0000017979,0.0000017754,0.0000017577, +0.0000017699,0.0000017632,0.0000017759,0.0000017391,0.0000017175, +0.0000017081,0.0000016988,0.0000017017,0.0000017123,0.0000017226, +0.0000017302,0.0000017369,0.0000017457,0.0000017588,0.0000017805, +0.0000018141,0.0000018486,0.0000018688,0.0000018848,0.0000019146, +0.0000019392,0.0000019380,0.0000019122,0.0000018760,0.0000018501, +0.0000018384,0.0000018337,0.0000018287,0.0000018332,0.0000018622, +0.0000019066,0.0000019365,0.0000019405,0.0000019410,0.0000019383, +0.0000019302,0.0000019072,0.0000018621,0.0000017998,0.0000017442, +0.0000017091,0.0000016885,0.0000016778,0.0000016744,0.0000016751, +0.0000016772,0.0000016789,0.0000016807,0.0000016836,0.0000016870, +0.0000016885,0.0000016860,0.0000016792,0.0000016747,0.0000016753, +0.0000016767,0.0000016757,0.0000016683,0.0000016675,0.0000016752, +0.0000016627,0.0000016369,0.0000016333,0.0000016401,0.0000016508, +0.0000016707,0.0000016920,0.0000017207,0.0000017354,0.0000017181, +0.0000016912,0.0000016686,0.0000016420,0.0000016114,0.0000015805, +0.0000015580,0.0000015404,0.0000015306,0.0000015092,0.0000014683, +0.0000014462,0.0000014417,0.0000014443,0.0000014501,0.0000014552, +0.0000014595,0.0000014627,0.0000014650,0.0000014671,0.0000014701, +0.0000014727,0.0000014725,0.0000014706,0.0000014718,0.0000014755, +0.0000014783,0.0000014792,0.0000014803,0.0000014832,0.0000014871, +0.0000014908,0.0000014937,0.0000014958,0.0000015044,0.0000015197, +0.0000015309,0.0000015310,0.0000015236,0.0000015158,0.0000015155, +0.0000015212,0.0000015284,0.0000015329,0.0000015338,0.0000015328, +0.0000015281,0.0000015197,0.0000015090,0.0000014998,0.0000014961, +0.0000014957,0.0000014961,0.0000014965,0.0000014986,0.0000015024, +0.0000015063,0.0000015084,0.0000015055,0.0000015027,0.0000014990, +0.0000014975,0.0000014988,0.0000015035,0.0000015069,0.0000015096, +0.0000015097,0.0000015089,0.0000015078,0.0000015066,0.0000015060, +0.0000015068,0.0000015099,0.0000015135,0.0000015162,0.0000015171, +0.0000015155,0.0000015117,0.0000015063,0.0000014995,0.0000014924, +0.0000014869,0.0000014846,0.0000014876,0.0000014924,0.0000014963, +0.0000014972,0.0000014942,0.0000014851,0.0000014644,0.0000014338, +0.0000014100,0.0000013986,0.0000013968,0.0000013976,0.0000014100, +0.0000014531,0.0000015248,0.0000015950,0.0000016406,0.0000016609, +0.0000016665,0.0000016671,0.0000016674,0.0000016679,0.0000016676, +0.0000016631,0.0000016550,0.0000016525,0.0000016569,0.0000016635, +0.0000016630,0.0000016567,0.0000016557,0.0000016506,0.0000016136, +0.0000015434,0.0000015252,0.0000015643,0.0000015821,0.0000015674, +0.0000015250,0.0000014853,0.0000014577,0.0000014343,0.0000014094, +0.0000013854,0.0000013678,0.0000013593,0.0000013583,0.0000013580, +0.0000013633,0.0000013771,0.0000014005,0.0000014321,0.0000014645, +0.0000014898,0.0000015016,0.0000015012,0.0000014940,0.0000014889, +0.0000014922,0.0000015089,0.0000015304,0.0000015443,0.0000015453, +0.0000015377,0.0000015262,0.0000015147,0.0000015091,0.0000015126, +0.0000015225,0.0000015306,0.0000015291,0.0000015218,0.0000015191, +0.0000015264,0.0000015482,0.0000015710,0.0000015807,0.0000015803, +0.0000015794,0.0000015775,0.0000015699,0.0000015574,0.0000015512, +0.0000015486,0.0000015287,0.0000015028,0.0000014955,0.0000014972, +0.0000015016,0.0000015119,0.0000015349,0.0000015634,0.0000015654, +0.0000015437,0.0000015371,0.0000015422,0.0000015413,0.0000015476, +0.0000015503,0.0000015450,0.0000015648,0.0000016029,0.0000016667, +0.0000018158,0.0000018872,0.0000017899,0.0000017512,0.0000018433, +0.0000018585,0.0000018110,0.0000018052,0.0000018186,0.0000018589, +0.0000019573,0.0000020334,0.0000020470,0.0000020460,0.0000020441, +0.0000020455,0.0000020533,0.0000020591,0.0000020548,0.0000020316, +0.0000019799,0.0000018805,0.0000017837,0.0000017873,0.0000018463, +0.0000018583,0.0000018530,0.0000018688,0.0000018796,0.0000018633, +0.0000018326,0.0000018209,0.0000018237,0.0000018257,0.0000018184, +0.0000018069,0.0000017940,0.0000017816,0.0000017726,0.0000017749, +0.0000017911,0.0000018092,0.0000018191,0.0000018230,0.0000018052, +0.0000017621,0.0000017130,0.0000016738,0.0000016624,0.0000016590, +0.0000016442,0.0000016251,0.0000016126,0.0000016146,0.0000016356, +0.0000016656,0.0000016892,0.0000017028,0.0000017092,0.0000017115, +0.0000017216,0.0000017477,0.0000017732,0.0000017815,0.0000017822, +0.0000017893,0.0000018043,0.0000018218,0.0000018349,0.0000018402, +0.0000018389,0.0000018328,0.0000018270,0.0000018221,0.0000018116, +0.0000017934,0.0000017775,0.0000017664,0.0000017568,0.0000017428, +0.0000017119,0.0000016691,0.0000016357,0.0000016152,0.0000015952, +0.0000015789,0.0000015747,0.0000015776,0.0000015827,0.0000015895, +0.0000015984,0.0000016052,0.0000016073,0.0000016064,0.0000016046, +0.0000016021,0.0000015982,0.0000015912,0.0000015828,0.0000015744, +0.0000015661,0.0000015616,0.0000015669,0.0000015791,0.0000015940, +0.0000016060,0.0000016117,0.0000016112,0.0000016048,0.0000015943, +0.0000015898,0.0000015941,0.0000016079,0.0000016240,0.0000016400, +0.0000016573,0.0000016999,0.0000017040,0.0000016389,0.0000015508, +0.0000014776,0.0000014887,0.0000014954,0.0000014962,0.0000014939, +0.0000015275,0.0000015054,0.0000014834,0.0000014770,0.0000014885, +0.0000015229,0.0000015406,0.0000015442,0.0000015583,0.0000015661, +0.0000015677,0.0000015317,0.0000015052,0.0000015250,0.0000015592, +0.0000015583,0.0000015632,0.0000015857,0.0000015814,0.0000015617, +0.0000015515,0.0000015459,0.0000015409,0.0000015403,0.0000015413, +0.0000015437,0.0000015504,0.0000015586,0.0000015651,0.0000015684, +0.0000015699,0.0000015710,0.0000015711,0.0000015690,0.0000015686, +0.0000015683,0.0000015516,0.0000015290,0.0000015260,0.0000015510, +0.0000015905,0.0000016024,0.0000016023,0.0000015854,0.0000015555, +0.0000015410,0.0000015389,0.0000015403,0.0000015342,0.0000015299, +0.0000015341,0.0000015528,0.0000015764,0.0000015760,0.0000015652, +0.0000015836,0.0000016109,0.0000016282,0.0000016392,0.0000016475, +0.0000016550,0.0000016647,0.0000016773,0.0000016720,0.0000016635, +0.0000016472,0.0000016357,0.0000016653,0.0000016753,0.0000016751, +0.0000016697,0.0000016607,0.0000016477,0.0000016367,0.0000016445, +0.0000016659,0.0000016671,0.0000016636,0.0000016478,0.0000016308, +0.0000016301,0.0000016442,0.0000016547,0.0000016404,0.0000016114, +0.0000015858,0.0000015767,0.0000015850,0.0000016119,0.0000016243, +0.0000016408,0.0000016947,0.0000017319,0.0000017221,0.0000016869, +0.0000016632,0.0000016648,0.0000016752,0.0000016816,0.0000016924, +0.0000017110,0.0000017293,0.0000017411,0.0000017470,0.0000017501, +0.0000017531,0.0000017599,0.0000017726,0.0000017848,0.0000017863, +0.0000017776,0.0000017638,0.0000017545,0.0000017530,0.0000017616, +0.0000017820,0.0000018024,0.0000018059,0.0000017932,0.0000017909, +0.0000017927,0.0000017598,0.0000017661,0.0000017648,0.0000017666, +0.0000017658,0.0000017177,0.0000017121,0.0000016967,0.0000016907, +0.0000016901,0.0000016932,0.0000017008,0.0000017080,0.0000017141, +0.0000017227,0.0000017349,0.0000017515,0.0000017752,0.0000018138, +0.0000018548,0.0000018709,0.0000018745,0.0000018818,0.0000018802, +0.0000018663,0.0000018525,0.0000018441,0.0000018370,0.0000018326, +0.0000018285,0.0000018273,0.0000018349,0.0000018588,0.0000018883, +0.0000019082,0.0000019149,0.0000019106,0.0000018901,0.0000018499, +0.0000017935,0.0000017395,0.0000017015,0.0000016767,0.0000016631, +0.0000016577,0.0000016569,0.0000016582,0.0000016605,0.0000016629, +0.0000016652,0.0000016672,0.0000016690,0.0000016704,0.0000016719, +0.0000016730,0.0000016743,0.0000016752,0.0000016732,0.0000016663, +0.0000016652,0.0000016736,0.0000016656,0.0000016399,0.0000016325, +0.0000016367,0.0000016453,0.0000016634,0.0000016861,0.0000017160, +0.0000017377,0.0000017243,0.0000016960,0.0000016724,0.0000016462, +0.0000016158,0.0000015841,0.0000015603,0.0000015417,0.0000015307, +0.0000015114,0.0000014709,0.0000014462,0.0000014410,0.0000014429, +0.0000014479,0.0000014532,0.0000014584,0.0000014642,0.0000014686, +0.0000014705,0.0000014713,0.0000014729,0.0000014734,0.0000014728, +0.0000014735,0.0000014755,0.0000014772,0.0000014789,0.0000014811, +0.0000014847,0.0000014895,0.0000014949,0.0000014995,0.0000015033, +0.0000015110,0.0000015218,0.0000015251,0.0000015182,0.0000015056, +0.0000014959,0.0000014928,0.0000014968,0.0000015084,0.0000015230, +0.0000015330,0.0000015353,0.0000015321,0.0000015239,0.0000015120, +0.0000015010,0.0000014954,0.0000014954,0.0000014988,0.0000015048, +0.0000015109,0.0000015142,0.0000015145,0.0000015083,0.0000014975, +0.0000014867,0.0000014785,0.0000014752,0.0000014778,0.0000014872, +0.0000014986,0.0000015083,0.0000015143,0.0000015168,0.0000015188, +0.0000015192,0.0000015198,0.0000015206,0.0000015214,0.0000015225, +0.0000015235,0.0000015238,0.0000015223,0.0000015182,0.0000015117, +0.0000015033,0.0000014950,0.0000014888,0.0000014866,0.0000014884, +0.0000014939,0.0000014999,0.0000015025,0.0000015005,0.0000014898, +0.0000014644,0.0000014314,0.0000014088,0.0000013999,0.0000013977, +0.0000013984,0.0000014071,0.0000014430,0.0000015075,0.0000015776, +0.0000016290,0.0000016546,0.0000016626,0.0000016642,0.0000016656, +0.0000016667,0.0000016652,0.0000016554,0.0000016435,0.0000016415, +0.0000016482,0.0000016574,0.0000016578,0.0000016501,0.0000016495, +0.0000016492,0.0000016340,0.0000015700,0.0000015222,0.0000015405, +0.0000015822,0.0000015886,0.0000015569,0.0000015144,0.0000014820, +0.0000014605,0.0000014384,0.0000014113,0.0000013846,0.0000013662, +0.0000013582,0.0000013581,0.0000013608,0.0000013654,0.0000013737, +0.0000013924,0.0000014226,0.0000014578,0.0000014880,0.0000015016, +0.0000014992,0.0000014879,0.0000014861,0.0000014975,0.0000015183, +0.0000015293,0.0000015285,0.0000015210,0.0000015120,0.0000015034, +0.0000015011,0.0000015052,0.0000015159,0.0000015259,0.0000015276, +0.0000015228,0.0000015188,0.0000015208,0.0000015320,0.0000015489, +0.0000015629,0.0000015690,0.0000015695,0.0000015646,0.0000015552, +0.0000015471,0.0000015349,0.0000015098,0.0000014911,0.0000014911, +0.0000014943,0.0000014974,0.0000014993,0.0000015061,0.0000015306, +0.0000015619,0.0000015628,0.0000015403,0.0000015369,0.0000015403, +0.0000015388,0.0000015477,0.0000015464,0.0000015495,0.0000015828, +0.0000016394,0.0000017729,0.0000018929,0.0000018225,0.0000017122, +0.0000017778,0.0000018592,0.0000018335,0.0000018018,0.0000018090, +0.0000018197,0.0000018764,0.0000019760,0.0000020360,0.0000020464, +0.0000020479,0.0000020523,0.0000020577,0.0000020583,0.0000020455, +0.0000020166,0.0000019613,0.0000018637,0.0000017833,0.0000017988, +0.0000018517,0.0000018575,0.0000018541,0.0000018705,0.0000018760, +0.0000018548,0.0000018251,0.0000018101,0.0000018074,0.0000018020, +0.0000017904,0.0000017783,0.0000017704,0.0000017649,0.0000017609, +0.0000017633,0.0000017820,0.0000018061,0.0000018198,0.0000018223, +0.0000018021,0.0000017575,0.0000017110,0.0000016751,0.0000016635, +0.0000016608,0.0000016493,0.0000016326,0.0000016176,0.0000016126, +0.0000016209,0.0000016462,0.0000016760,0.0000016959,0.0000017045, +0.0000017065,0.0000017129,0.0000017361,0.0000017649,0.0000017781, +0.0000017803,0.0000017858,0.0000017991,0.0000018164,0.0000018301, +0.0000018351,0.0000018330,0.0000018276,0.0000018232,0.0000018174, +0.0000018049,0.0000017880,0.0000017750,0.0000017647,0.0000017550, +0.0000017362,0.0000016988,0.0000016569,0.0000016286,0.0000016080, +0.0000015866,0.0000015734,0.0000015739,0.0000015810,0.0000015872, +0.0000015915,0.0000015949,0.0000015982,0.0000015993,0.0000015986, +0.0000015953,0.0000015901,0.0000015836,0.0000015768,0.0000015701, +0.0000015664,0.0000015701,0.0000015817,0.0000015974,0.0000016119, +0.0000016224,0.0000016261,0.0000016231,0.0000016134,0.0000016024, +0.0000015977,0.0000015992,0.0000016093,0.0000016232,0.0000016392, +0.0000016515,0.0000016953,0.0000017054,0.0000016507,0.0000015664, +0.0000014802,0.0000014902,0.0000015054,0.0000015209,0.0000015310, +0.0000015926,0.0000015651,0.0000015172,0.0000014812,0.0000014795, +0.0000015019,0.0000015386,0.0000015409,0.0000015558,0.0000015611, +0.0000015689,0.0000015597,0.0000015446,0.0000015551,0.0000015642, +0.0000015553,0.0000015614,0.0000015758,0.0000015714,0.0000015530, +0.0000015480,0.0000015434,0.0000015380,0.0000015373,0.0000015395, +0.0000015463,0.0000015559,0.0000015627,0.0000015663,0.0000015672, +0.0000015660,0.0000015619,0.0000015573,0.0000015553,0.0000015547, +0.0000015429,0.0000015223,0.0000015170,0.0000015292,0.0000015630, +0.0000015934,0.0000016000,0.0000015954,0.0000015655,0.0000015424, +0.0000015337,0.0000015359,0.0000015352,0.0000015286,0.0000015269, +0.0000015363,0.0000015634,0.0000015754,0.0000015647,0.0000015695, +0.0000015971,0.0000016201,0.0000016337,0.0000016420,0.0000016525, +0.0000016600,0.0000016692,0.0000016746,0.0000016668,0.0000016607, +0.0000016382,0.0000016461,0.0000016727,0.0000016732,0.0000016688, +0.0000016632,0.0000016534,0.0000016372,0.0000016320,0.0000016509, +0.0000016664,0.0000016633,0.0000016528,0.0000016314,0.0000016256, +0.0000016328,0.0000016510,0.0000016510,0.0000016261,0.0000015976, +0.0000015798,0.0000015787,0.0000016004,0.0000016202,0.0000016314, +0.0000016789,0.0000017259,0.0000017241,0.0000016893,0.0000016634, +0.0000016643,0.0000016743,0.0000016796,0.0000016890,0.0000017062, +0.0000017228,0.0000017346,0.0000017426,0.0000017477,0.0000017508, +0.0000017537,0.0000017598,0.0000017714,0.0000017836,0.0000017896, +0.0000017903,0.0000017894,0.0000017901,0.0000017936,0.0000018002, +0.0000018019,0.0000017920,0.0000017859,0.0000017920,0.0000017774, +0.0000017577,0.0000017704,0.0000017621,0.0000017707,0.0000017350, +0.0000017124,0.0000017056,0.0000016911,0.0000016849,0.0000016820, +0.0000016803,0.0000016807,0.0000016840,0.0000016909,0.0000016987, +0.0000017103,0.0000017289,0.0000017514,0.0000017809,0.0000018263, +0.0000018647,0.0000018717,0.0000018706,0.0000018681,0.0000018595, +0.0000018420,0.0000018190,0.0000018055,0.0000018047,0.0000018109, +0.0000018184,0.0000018245,0.0000018345,0.0000018498,0.0000018642, +0.0000018693,0.0000018619,0.0000018315,0.0000017844,0.0000017363, +0.0000016981,0.0000016705,0.0000016553,0.0000016495,0.0000016487, +0.0000016504,0.0000016533,0.0000016562,0.0000016586,0.0000016609, +0.0000016633,0.0000016660,0.0000016689,0.0000016713,0.0000016729, +0.0000016733,0.0000016709,0.0000016646,0.0000016652,0.0000016735, +0.0000016665,0.0000016419,0.0000016329,0.0000016361,0.0000016434, +0.0000016589,0.0000016806,0.0000017113,0.0000017389,0.0000017294, +0.0000016996,0.0000016757,0.0000016502,0.0000016194,0.0000015872, +0.0000015627,0.0000015433,0.0000015312,0.0000015139,0.0000014746, +0.0000014476,0.0000014412,0.0000014419,0.0000014457,0.0000014512, +0.0000014576,0.0000014649,0.0000014706,0.0000014729,0.0000014729, +0.0000014738,0.0000014759,0.0000014774,0.0000014782,0.0000014782, +0.0000014772,0.0000014776,0.0000014798,0.0000014836,0.0000014892, +0.0000014959,0.0000015023,0.0000015084,0.0000015158,0.0000015218, +0.0000015204,0.0000015103,0.0000015007,0.0000014963,0.0000014943, +0.0000014913,0.0000014916,0.0000014980,0.0000015125,0.0000015271, +0.0000015330,0.0000015299,0.0000015203,0.0000015095,0.0000015032, +0.0000015030,0.0000015071,0.0000015141,0.0000015181,0.0000015144, +0.0000015003,0.0000014824,0.0000014687,0.0000014594,0.0000014524, +0.0000014476,0.0000014475,0.0000014552,0.0000014683,0.0000014842, +0.0000014994,0.0000015112,0.0000015197,0.0000015249,0.0000015281, +0.0000015307,0.0000015307,0.0000015300,0.0000015286,0.0000015263, +0.0000015240,0.0000015187,0.0000015115,0.0000015031,0.0000014960, +0.0000014911,0.0000014900,0.0000014927,0.0000014977,0.0000015029, +0.0000015059,0.0000015021,0.0000014872,0.0000014581,0.0000014254, +0.0000014070,0.0000014035,0.0000014027,0.0000014025,0.0000014119, +0.0000014434,0.0000015042,0.0000015730,0.0000016250,0.0000016508, +0.0000016581,0.0000016605,0.0000016642,0.0000016661,0.0000016611, +0.0000016435,0.0000016306,0.0000016311,0.0000016411,0.0000016506, +0.0000016493,0.0000016396,0.0000016400,0.0000016475,0.0000016445, +0.0000016013,0.0000015284,0.0000015193,0.0000015660,0.0000015917, +0.0000015808,0.0000015431,0.0000015048,0.0000014806,0.0000014628, +0.0000014397,0.0000014105,0.0000013828,0.0000013647,0.0000013583, +0.0000013593,0.0000013644,0.0000013690,0.0000013759,0.0000013932, +0.0000014237,0.0000014624,0.0000014951,0.0000015022,0.0000014897, +0.0000014841,0.0000014932,0.0000015093,0.0000015172,0.0000015169, +0.0000015126,0.0000015052,0.0000014990,0.0000014980,0.0000014999, +0.0000015064,0.0000015161,0.0000015237,0.0000015240,0.0000015205, +0.0000015179,0.0000015197,0.0000015257,0.0000015310,0.0000015340, +0.0000015345,0.0000015318,0.0000015257,0.0000015140,0.0000014992, +0.0000014933,0.0000014973,0.0000015029,0.0000015054,0.0000015046, +0.0000015018,0.0000015055,0.0000015316,0.0000015633,0.0000015577, +0.0000015363,0.0000015379,0.0000015372,0.0000015383,0.0000015466, +0.0000015465,0.0000015621,0.0000016136,0.0000017306,0.0000018857, +0.0000018593,0.0000017132,0.0000017127,0.0000018147,0.0000018437, +0.0000018088,0.0000018006,0.0000018087,0.0000018238,0.0000018901, +0.0000019818,0.0000020294,0.0000020408,0.0000020472,0.0000020497, +0.0000020445,0.0000020255,0.0000019942,0.0000019331,0.0000018309, +0.0000017715,0.0000018101,0.0000018564,0.0000018545,0.0000018553, +0.0000018701,0.0000018703,0.0000018480,0.0000018192,0.0000018000, +0.0000017907,0.0000017800,0.0000017690,0.0000017633,0.0000017606, +0.0000017558,0.0000017522,0.0000017568,0.0000017788,0.0000018060, +0.0000018204,0.0000018196,0.0000017967,0.0000017548,0.0000017118, +0.0000016776,0.0000016661,0.0000016640,0.0000016561,0.0000016441, +0.0000016295,0.0000016155,0.0000016127,0.0000016262,0.0000016572, +0.0000016849,0.0000016989,0.0000017028,0.0000017065,0.0000017246, +0.0000017538,0.0000017726,0.0000017775,0.0000017819,0.0000017939, +0.0000018113,0.0000018252,0.0000018298,0.0000018274,0.0000018228, +0.0000018188,0.0000018120,0.0000017988,0.0000017842,0.0000017726, +0.0000017631,0.0000017518,0.0000017255,0.0000016840,0.0000016462, +0.0000016212,0.0000015991,0.0000015787,0.0000015732,0.0000015781, +0.0000015846,0.0000015876,0.0000015874,0.0000015869,0.0000015875, +0.0000015874,0.0000015849,0.0000015812,0.0000015771,0.0000015722, +0.0000015691,0.0000015724,0.0000015851,0.0000016029,0.0000016190, +0.0000016307,0.0000016380,0.0000016400,0.0000016370,0.0000016258, +0.0000016106,0.0000016030,0.0000016038,0.0000016116,0.0000016237, +0.0000016390,0.0000016476,0.0000016911,0.0000017062,0.0000016590, +0.0000015785,0.0000014853,0.0000014927,0.0000015210,0.0000015626, +0.0000015916,0.0000016101,0.0000016070,0.0000015737,0.0000015066, +0.0000014776,0.0000014897,0.0000015258,0.0000015409,0.0000015488, +0.0000015588,0.0000015638,0.0000015689,0.0000015677,0.0000015662, +0.0000015603,0.0000015511,0.0000015585,0.0000015679,0.0000015611, +0.0000015477,0.0000015469,0.0000015406,0.0000015359,0.0000015370, +0.0000015427,0.0000015528,0.0000015599,0.0000015622,0.0000015611, +0.0000015560,0.0000015485,0.0000015436,0.0000015435,0.0000015430, +0.0000015321,0.0000015138,0.0000015083,0.0000015161,0.0000015388, +0.0000015746,0.0000015949,0.0000015968,0.0000015747,0.0000015454, +0.0000015312,0.0000015296,0.0000015335,0.0000015289,0.0000015235, +0.0000015243,0.0000015484,0.0000015705,0.0000015654,0.0000015631, +0.0000015843,0.0000016104,0.0000016272,0.0000016360,0.0000016483, +0.0000016605,0.0000016649,0.0000016701,0.0000016672,0.0000016651, +0.0000016523,0.0000016354,0.0000016602,0.0000016720,0.0000016669, +0.0000016636,0.0000016577,0.0000016420,0.0000016280,0.0000016353, +0.0000016608,0.0000016637,0.0000016547,0.0000016354,0.0000016236, +0.0000016239,0.0000016410,0.0000016532,0.0000016406,0.0000016106, +0.0000015881,0.0000015783,0.0000015888,0.0000016131,0.0000016254, +0.0000016645,0.0000017188,0.0000017261,0.0000016913,0.0000016638, +0.0000016640,0.0000016732,0.0000016773,0.0000016853,0.0000016994, +0.0000017126,0.0000017233,0.0000017324,0.0000017404,0.0000017468, +0.0000017514,0.0000017546,0.0000017594,0.0000017681,0.0000017786, +0.0000017874,0.0000017924,0.0000017945,0.0000017941,0.0000017912, +0.0000017847,0.0000017819,0.0000017864,0.0000017870,0.0000017617, +0.0000017635,0.0000017667,0.0000017633,0.0000017663,0.0000017153, +0.0000017121,0.0000017020,0.0000016883,0.0000016814,0.0000016800, +0.0000016796,0.0000016798,0.0000016807,0.0000016809,0.0000016813, +0.0000016881,0.0000017068,0.0000017338,0.0000017617,0.0000017963, +0.0000018392,0.0000018665,0.0000018680,0.0000018563,0.0000018301, +0.0000017984,0.0000017746,0.0000017645,0.0000017644,0.0000017708, +0.0000017814,0.0000017932,0.0000018055,0.0000018165,0.0000018224, +0.0000018217,0.0000018041,0.0000017704,0.0000017314,0.0000016954, +0.0000016681,0.0000016533,0.0000016474,0.0000016471,0.0000016490, +0.0000016525,0.0000016555,0.0000016580,0.0000016604,0.0000016626, +0.0000016644,0.0000016663,0.0000016686,0.0000016702,0.0000016700, +0.0000016673,0.0000016642,0.0000016675,0.0000016736,0.0000016639, +0.0000016429,0.0000016354,0.0000016382,0.0000016445,0.0000016586, +0.0000016785,0.0000017087,0.0000017396,0.0000017336,0.0000017029, +0.0000016781,0.0000016535,0.0000016225,0.0000015898,0.0000015647, +0.0000015447,0.0000015322,0.0000015170,0.0000014792,0.0000014497, +0.0000014416,0.0000014412,0.0000014438,0.0000014497,0.0000014571, +0.0000014644,0.0000014706,0.0000014746,0.0000014769,0.0000014789, +0.0000014826,0.0000014858,0.0000014865,0.0000014858,0.0000014836, +0.0000014806,0.0000014801,0.0000014824,0.0000014876,0.0000014948, +0.0000015028,0.0000015109,0.0000015181,0.0000015211,0.0000015177, +0.0000015102,0.0000015069,0.0000015088,0.0000015107,0.0000015074, +0.0000015009,0.0000014966,0.0000014979,0.0000015061,0.0000015182, +0.0000015257,0.0000015246,0.0000015184,0.0000015133,0.0000015129, +0.0000015157,0.0000015174,0.0000015084,0.0000014861,0.0000014636, +0.0000014539,0.0000014548,0.0000014536,0.0000014511,0.0000014476, +0.0000014443,0.0000014455,0.0000014528,0.0000014624,0.0000014767, +0.0000014931,0.0000015081,0.0000015206,0.0000015294,0.0000015342, +0.0000015354,0.0000015340,0.0000015288,0.0000015223,0.0000015161, +0.0000015102,0.0000015039,0.0000014984,0.0000014940,0.0000014922, +0.0000014928,0.0000014963,0.0000015011,0.0000015051,0.0000015048, +0.0000014962,0.0000014741,0.0000014446,0.0000014176,0.0000014060, +0.0000014066,0.0000014082,0.0000014089,0.0000014181,0.0000014538, +0.0000015149,0.0000015817,0.0000016298,0.0000016508,0.0000016553, +0.0000016584,0.0000016642,0.0000016656,0.0000016514,0.0000016258, +0.0000016173,0.0000016246,0.0000016367,0.0000016430,0.0000016373, +0.0000016263,0.0000016273,0.0000016416,0.0000016469,0.0000016234, +0.0000015392,0.0000015113,0.0000015468,0.0000015856,0.0000015901, +0.0000015671,0.0000015274,0.0000014962,0.0000014787,0.0000014616, +0.0000014368,0.0000014070,0.0000013799,0.0000013626,0.0000013574, +0.0000013626,0.0000013702,0.0000013737,0.0000013812,0.0000014041, +0.0000014413,0.0000014835,0.0000015008,0.0000014897,0.0000014843, +0.0000014941,0.0000015060,0.0000015115,0.0000015118,0.0000015081, +0.0000015017,0.0000014979,0.0000014971,0.0000014975,0.0000014997, +0.0000015047,0.0000015117,0.0000015182,0.0000015199,0.0000015195, +0.0000015188,0.0000015174,0.0000015155,0.0000015139,0.0000015124, +0.0000015096,0.0000015061,0.0000015029,0.0000015040,0.0000015073, +0.0000015094,0.0000015106,0.0000015114,0.0000015097,0.0000015048, +0.0000015082,0.0000015359,0.0000015644,0.0000015511,0.0000015359, +0.0000015374,0.0000015347,0.0000015395,0.0000015472,0.0000015499, +0.0000015883,0.0000016849,0.0000018410,0.0000018848,0.0000017554, +0.0000016882,0.0000017513,0.0000018227,0.0000018217,0.0000017972, +0.0000018010,0.0000018094,0.0000018227,0.0000018920,0.0000019740, +0.0000020124,0.0000020202,0.0000020210,0.0000020123,0.0000019938, +0.0000019636,0.0000018927,0.0000017977,0.0000017772,0.0000018337, +0.0000018603,0.0000018519,0.0000018570,0.0000018692,0.0000018640, +0.0000018409,0.0000018139,0.0000017934,0.0000017810,0.0000017686, +0.0000017605,0.0000017579,0.0000017537,0.0000017471,0.0000017452, +0.0000017554,0.0000017818,0.0000018076,0.0000018187,0.0000018163, +0.0000017929,0.0000017539,0.0000017138,0.0000016812,0.0000016696, +0.0000016674,0.0000016620,0.0000016553,0.0000016456,0.0000016291, +0.0000016122,0.0000016107,0.0000016333,0.0000016677,0.0000016913, +0.0000016992,0.0000017014,0.0000017138,0.0000017416,0.0000017657, +0.0000017744,0.0000017783,0.0000017891,0.0000018063,0.0000018202, +0.0000018239,0.0000018213,0.0000018176,0.0000018141,0.0000018065, +0.0000017935,0.0000017810,0.0000017700,0.0000017612,0.0000017454, +0.0000017117,0.0000016699,0.0000016367,0.0000016127,0.0000015892, +0.0000015748,0.0000015760,0.0000015814,0.0000015827,0.0000015817, +0.0000015804,0.0000015794,0.0000015788,0.0000015775,0.0000015753, +0.0000015729,0.0000015709,0.0000015734,0.0000015864,0.0000016062, +0.0000016253,0.0000016373,0.0000016430,0.0000016459,0.0000016464, +0.0000016449,0.0000016382,0.0000016229,0.0000016084,0.0000016059, +0.0000016126,0.0000016242,0.0000016388,0.0000016455,0.0000016872, +0.0000017067,0.0000016650,0.0000015876,0.0000014924,0.0000014966, +0.0000015402,0.0000015986,0.0000016151,0.0000015857,0.0000015945, +0.0000016009,0.0000015516,0.0000014832,0.0000014812,0.0000015071, +0.0000015401,0.0000015420,0.0000015554,0.0000015555,0.0000015623, +0.0000015653,0.0000015600,0.0000015511,0.0000015489,0.0000015573, +0.0000015617,0.0000015513,0.0000015459,0.0000015456,0.0000015378, +0.0000015361,0.0000015412,0.0000015505,0.0000015571,0.0000015569, +0.0000015519,0.0000015427,0.0000015337,0.0000015310,0.0000015333, +0.0000015334,0.0000015215,0.0000015039,0.0000015000,0.0000015080, +0.0000015225,0.0000015541,0.0000015830,0.0000015913,0.0000015785, +0.0000015487,0.0000015300,0.0000015241,0.0000015286,0.0000015294, +0.0000015227,0.0000015192,0.0000015340,0.0000015626,0.0000015643, +0.0000015588,0.0000015767,0.0000016016,0.0000016200,0.0000016297, +0.0000016422,0.0000016599,0.0000016663,0.0000016663,0.0000016654, +0.0000016624,0.0000016627,0.0000016399,0.0000016420,0.0000016674, +0.0000016668,0.0000016621,0.0000016595,0.0000016470,0.0000016280, +0.0000016234,0.0000016459,0.0000016603,0.0000016556,0.0000016407, +0.0000016242,0.0000016200,0.0000016297,0.0000016510,0.0000016520, +0.0000016243,0.0000015988,0.0000015821,0.0000015816,0.0000016043, +0.0000016212,0.0000016526,0.0000017085,0.0000017236,0.0000016935, +0.0000016643,0.0000016638,0.0000016722,0.0000016752,0.0000016817, +0.0000016919,0.0000017009,0.0000017086,0.0000017165,0.0000017255, +0.0000017353,0.0000017450,0.0000017523,0.0000017568,0.0000017595, +0.0000017634,0.0000017695,0.0000017750,0.0000017775,0.0000017768, +0.0000017739,0.0000017736,0.0000017799,0.0000017859,0.0000017730, +0.0000017567,0.0000017704,0.0000017618,0.0000017672,0.0000017449, +0.0000017109,0.0000017110,0.0000017025,0.0000016895,0.0000016826, +0.0000016826,0.0000016848,0.0000016876,0.0000016889,0.0000016876, +0.0000016827,0.0000016786,0.0000016865,0.0000017176,0.0000017507, +0.0000017765,0.0000018065,0.0000018309,0.0000018328,0.0000018128, +0.0000017846,0.0000017603,0.0000017440,0.0000017369,0.0000017364, +0.0000017385,0.0000017438,0.0000017525,0.0000017638,0.0000017731, +0.0000017759,0.0000017699,0.0000017507,0.0000017226,0.0000016915, +0.0000016664,0.0000016536,0.0000016497,0.0000016497,0.0000016528, +0.0000016560,0.0000016581,0.0000016597,0.0000016614,0.0000016631, +0.0000016644,0.0000016652,0.0000016655,0.0000016654,0.0000016645, +0.0000016631,0.0000016642,0.0000016695,0.0000016709,0.0000016576, +0.0000016436,0.0000016381,0.0000016415,0.0000016474,0.0000016609, +0.0000016803,0.0000017090,0.0000017403,0.0000017365,0.0000017052, +0.0000016794,0.0000016555,0.0000016248,0.0000015922,0.0000015664, +0.0000015459,0.0000015335,0.0000015206,0.0000014844,0.0000014522, +0.0000014420,0.0000014410,0.0000014423,0.0000014486,0.0000014567, +0.0000014629,0.0000014696,0.0000014771,0.0000014840,0.0000014884, +0.0000014915,0.0000014940,0.0000014950,0.0000014951,0.0000014929, +0.0000014871,0.0000014819,0.0000014812,0.0000014847,0.0000014911, +0.0000014999,0.0000015097,0.0000015175,0.0000015195,0.0000015166, +0.0000015141,0.0000015174,0.0000015227,0.0000015245,0.0000015216, +0.0000015158,0.0000015079,0.0000015013,0.0000014994,0.0000015024, +0.0000015100,0.0000015171,0.0000015200,0.0000015196,0.0000015188, +0.0000015163,0.0000015028,0.0000014761,0.0000014524,0.0000014461, +0.0000014500,0.0000014567,0.0000014637,0.0000014681,0.0000014684, +0.0000014652,0.0000014619,0.0000014627,0.0000014662,0.0000014743, +0.0000014875,0.0000015029,0.0000015166,0.0000015281,0.0000015341, +0.0000015345,0.0000015287,0.0000015186,0.0000015089,0.0000015031, +0.0000015003,0.0000014991,0.0000014975,0.0000014959,0.0000014959, +0.0000014971,0.0000014999,0.0000015033,0.0000015027,0.0000014943, +0.0000014754,0.0000014510,0.0000014293,0.0000014140,0.0000014087, +0.0000014101,0.0000014114,0.0000014128,0.0000014271,0.0000014694, +0.0000015347,0.0000015987,0.0000016383,0.0000016518,0.0000016543, +0.0000016587,0.0000016652,0.0000016622,0.0000016316,0.0000016034, +0.0000016048,0.0000016220,0.0000016336,0.0000016346,0.0000016239, +0.0000016128,0.0000016158,0.0000016354,0.0000016475,0.0000016331, +0.0000015535,0.0000015080,0.0000015285,0.0000015728,0.0000015889, +0.0000015791,0.0000015484,0.0000015117,0.0000014886,0.0000014737, +0.0000014556,0.0000014295,0.0000014000,0.0000013742,0.0000013583, +0.0000013590,0.0000013715,0.0000013747,0.0000013758,0.0000013954, +0.0000014322,0.0000014755,0.0000014966,0.0000014896,0.0000014866, +0.0000014973,0.0000015056,0.0000015090,0.0000015092,0.0000015055, +0.0000015003,0.0000014973,0.0000014967,0.0000014970,0.0000014983, +0.0000014995,0.0000015010,0.0000015036,0.0000015077,0.0000015126, +0.0000015160,0.0000015154,0.0000015147,0.0000015137,0.0000015124, +0.0000015115,0.0000015115,0.0000015117,0.0000015110,0.0000015096, +0.0000015076,0.0000015071,0.0000015094,0.0000015105,0.0000015076, +0.0000015113,0.0000015422,0.0000015603,0.0000015438,0.0000015343, +0.0000015354,0.0000015324,0.0000015414,0.0000015465,0.0000015657, +0.0000016382,0.0000017792,0.0000018897,0.0000018131,0.0000017058, +0.0000017138,0.0000017826,0.0000018239,0.0000018032,0.0000017881, +0.0000018020,0.0000018035,0.0000018144,0.0000018780,0.0000019513, +0.0000019839,0.0000019840,0.0000019742,0.0000019624,0.0000019238, +0.0000018353,0.0000017779,0.0000018016,0.0000018570,0.0000018587, +0.0000018502,0.0000018604,0.0000018662,0.0000018543,0.0000018325, +0.0000018068,0.0000017852,0.0000017710,0.0000017607,0.0000017551, +0.0000017501,0.0000017439,0.0000017415,0.0000017443,0.0000017593, +0.0000017863,0.0000018086,0.0000018176,0.0000018146,0.0000017901, +0.0000017534,0.0000017164,0.0000016856,0.0000016732,0.0000016699, +0.0000016655,0.0000016620,0.0000016598,0.0000016501,0.0000016261, +0.0000016043,0.0000016088,0.0000016421,0.0000016773,0.0000016947, +0.0000016985,0.0000017064,0.0000017310,0.0000017585,0.0000017712, +0.0000017754,0.0000017849,0.0000018013,0.0000018141,0.0000018170, +0.0000018151,0.0000018130,0.0000018098,0.0000018011,0.0000017890, +0.0000017778,0.0000017675,0.0000017572,0.0000017347,0.0000016969, +0.0000016576,0.0000016275,0.0000016022,0.0000015810,0.0000015755, +0.0000015790,0.0000015789,0.0000015753,0.0000015742,0.0000015744, +0.0000015748,0.0000015745,0.0000015739,0.0000015725,0.0000015756, +0.0000015872,0.0000016068,0.0000016271,0.0000016414,0.0000016467, +0.0000016469,0.0000016467,0.0000016463,0.0000016453,0.0000016424, +0.0000016348,0.0000016186,0.0000016078,0.0000016115,0.0000016232, +0.0000016378,0.0000016441,0.0000016829,0.0000017081,0.0000016706, +0.0000015954,0.0000015023,0.0000015001,0.0000015580,0.0000016146, +0.0000016004,0.0000015799,0.0000015846,0.0000015924,0.0000015858, +0.0000015084,0.0000014775,0.0000014954,0.0000015346,0.0000015381, +0.0000015494,0.0000015499,0.0000015484,0.0000015508,0.0000015480, +0.0000015459,0.0000015506,0.0000015567,0.0000015530,0.0000015440, +0.0000015455,0.0000015426,0.0000015372,0.0000015412,0.0000015498, +0.0000015554,0.0000015524,0.0000015425,0.0000015307,0.0000015226, +0.0000015223,0.0000015263,0.0000015253,0.0000015117,0.0000014944, +0.0000014935,0.0000015027,0.0000015130,0.0000015376,0.0000015676, +0.0000015815,0.0000015743,0.0000015491,0.0000015289,0.0000015188, +0.0000015219,0.0000015278,0.0000015234,0.0000015162,0.0000015220, +0.0000015527,0.0000015617,0.0000015544,0.0000015705,0.0000015972, +0.0000016135,0.0000016233,0.0000016350,0.0000016557,0.0000016678, +0.0000016662,0.0000016631,0.0000016585,0.0000016616,0.0000016541, +0.0000016345,0.0000016525,0.0000016665,0.0000016618,0.0000016586, +0.0000016505,0.0000016320,0.0000016174,0.0000016318,0.0000016567, +0.0000016564,0.0000016447,0.0000016263,0.0000016187,0.0000016214, +0.0000016417,0.0000016550,0.0000016381,0.0000016092,0.0000015908, +0.0000015828,0.0000015960,0.0000016161,0.0000016427,0.0000016979, +0.0000017198,0.0000016962,0.0000016648,0.0000016629,0.0000016710, +0.0000016738,0.0000016785,0.0000016860,0.0000016918,0.0000016968, +0.0000017015,0.0000017073,0.0000017166,0.0000017301,0.0000017441, +0.0000017544,0.0000017591,0.0000017604,0.0000017612,0.0000017623, +0.0000017641,0.0000017665,0.0000017686,0.0000017734,0.0000017803, +0.0000017774,0.0000017597,0.0000017611,0.0000017705,0.0000017620, +0.0000017693,0.0000017213,0.0000017100,0.0000017111,0.0000017073, +0.0000016985,0.0000016934,0.0000016945,0.0000016980,0.0000016998, +0.0000016987,0.0000016959,0.0000016898,0.0000016797,0.0000016773, +0.0000017005,0.0000017388,0.0000017656,0.0000017844,0.0000017944, +0.0000017913,0.0000017748,0.0000017548,0.0000017372,0.0000017259, +0.0000017223,0.0000017209,0.0000017188,0.0000017183,0.0000017214, +0.0000017280,0.0000017335,0.0000017335,0.0000017250,0.0000017074, +0.0000016846,0.0000016647,0.0000016543,0.0000016523,0.0000016547, +0.0000016585,0.0000016606,0.0000016617,0.0000016624,0.0000016629, +0.0000016628,0.0000016626,0.0000016617,0.0000016608,0.0000016604, +0.0000016615,0.0000016630,0.0000016659,0.0000016681,0.0000016633, +0.0000016511,0.0000016423,0.0000016402,0.0000016437,0.0000016504, +0.0000016647,0.0000016849,0.0000017126,0.0000017433,0.0000017397, +0.0000017067,0.0000016797,0.0000016563,0.0000016258,0.0000015938, +0.0000015681,0.0000015475,0.0000015358,0.0000015248,0.0000014897, +0.0000014547,0.0000014421,0.0000014406,0.0000014415,0.0000014476, +0.0000014557,0.0000014615,0.0000014692,0.0000014805,0.0000014918, +0.0000014982,0.0000014993,0.0000014990,0.0000014982,0.0000014982, +0.0000014976,0.0000014940,0.0000014869,0.0000014823,0.0000014826, +0.0000014869,0.0000014948,0.0000015046,0.0000015121,0.0000015143, +0.0000015149,0.0000015188,0.0000015265,0.0000015312,0.0000015295, +0.0000015244,0.0000015198,0.0000015150,0.0000015084,0.0000015021, +0.0000014990,0.0000014996,0.0000015039,0.0000015096,0.0000015132, +0.0000015117,0.0000014997,0.0000014749,0.0000014499,0.0000014396, +0.0000014419,0.0000014534,0.0000014689,0.0000014819,0.0000014889, +0.0000014902,0.0000014881,0.0000014853,0.0000014844,0.0000014846, +0.0000014878,0.0000014949,0.0000015058,0.0000015169,0.0000015253, +0.0000015281,0.0000015249,0.0000015156,0.0000015062,0.0000015016, +0.0000014999,0.0000015014,0.0000015043,0.0000015058,0.0000015053, +0.0000015037,0.0000015007,0.0000014994,0.0000014972,0.0000014886, +0.0000014717,0.0000014503,0.0000014339,0.0000014246,0.0000014192, +0.0000014169,0.0000014151,0.0000014129,0.0000014149,0.0000014380, +0.0000014906,0.0000015600,0.0000016173,0.0000016450,0.0000016512, +0.0000016538,0.0000016606,0.0000016636,0.0000016466,0.0000016031, +0.0000015856,0.0000016012,0.0000016226,0.0000016287,0.0000016243, +0.0000016118,0.0000016030,0.0000016086,0.0000016319,0.0000016471, +0.0000016354,0.0000015569,0.0000014994,0.0000015186,0.0000015594, +0.0000015767,0.0000015801,0.0000015650,0.0000015268,0.0000014970, +0.0000014788,0.0000014648,0.0000014445,0.0000014158,0.0000013874, +0.0000013634,0.0000013583,0.0000013706,0.0000013735,0.0000013718, +0.0000013938,0.0000014319,0.0000014750,0.0000014960,0.0000014901, +0.0000014895,0.0000014990,0.0000015047,0.0000015072,0.0000015068, +0.0000015028,0.0000014983,0.0000014959,0.0000014952,0.0000014954, +0.0000014962,0.0000014967,0.0000014969,0.0000014973,0.0000014984, +0.0000015002,0.0000015017,0.0000015027,0.0000015040,0.0000015055, +0.0000015072,0.0000015085,0.0000015093,0.0000015091,0.0000015078, +0.0000015051,0.0000015021,0.0000015011,0.0000015058,0.0000015103, +0.0000015081,0.0000015149,0.0000015484,0.0000015585,0.0000015381, +0.0000015353,0.0000015323,0.0000015324,0.0000015436,0.0000015514, +0.0000015976,0.0000017177,0.0000018704,0.0000018630,0.0000017403, +0.0000017113,0.0000017475,0.0000018014,0.0000018110,0.0000017852, +0.0000017892,0.0000018020,0.0000017970,0.0000017990,0.0000018446, +0.0000019037,0.0000019328,0.0000019357,0.0000019141,0.0000018451, +0.0000017756,0.0000017824,0.0000018399,0.0000018617,0.0000018527, +0.0000018532,0.0000018620,0.0000018574,0.0000018395,0.0000018183, +0.0000017934,0.0000017729,0.0000017601,0.0000017521,0.0000017464, +0.0000017430,0.0000017425,0.0000017445,0.0000017497,0.0000017664, +0.0000017926,0.0000018106,0.0000018178,0.0000018129,0.0000017868, +0.0000017535,0.0000017200,0.0000016901,0.0000016765,0.0000016719, +0.0000016679,0.0000016657,0.0000016667,0.0000016639,0.0000016439, +0.0000016120,0.0000015982,0.0000016158,0.0000016566,0.0000016882, +0.0000016982,0.0000017028,0.0000017223,0.0000017507,0.0000017678, +0.0000017735,0.0000017817,0.0000017959,0.0000018071,0.0000018106, +0.0000018102,0.0000018097,0.0000018055,0.0000017960,0.0000017854, +0.0000017743,0.0000017643,0.0000017500,0.0000017217,0.0000016828, +0.0000016459,0.0000016167,0.0000015916,0.0000015765,0.0000015763, +0.0000015769,0.0000015724,0.0000015702,0.0000015718,0.0000015732, +0.0000015740,0.0000015761,0.0000015798,0.0000015900,0.0000016082, +0.0000016270,0.0000016411,0.0000016481,0.0000016484,0.0000016466, +0.0000016447,0.0000016434,0.0000016418,0.0000016409,0.0000016388, +0.0000016298,0.0000016141,0.0000016106,0.0000016208,0.0000016360, +0.0000016427,0.0000016762,0.0000017087,0.0000016771,0.0000016031, +0.0000015181,0.0000015035,0.0000015710,0.0000016155,0.0000015820, +0.0000015899,0.0000015913,0.0000015928,0.0000015934,0.0000015435, +0.0000014797,0.0000014862,0.0000015192,0.0000015378,0.0000015413, +0.0000015488,0.0000015405,0.0000015391,0.0000015410,0.0000015454, +0.0000015506,0.0000015498,0.0000015427,0.0000015418,0.0000015442, +0.0000015409,0.0000015426,0.0000015506,0.0000015544,0.0000015494, +0.0000015356,0.0000015224,0.0000015172,0.0000015195,0.0000015220, +0.0000015190,0.0000015032,0.0000014863,0.0000014895,0.0000015014, +0.0000015089,0.0000015269,0.0000015527,0.0000015667,0.0000015622, +0.0000015437,0.0000015266,0.0000015146,0.0000015147,0.0000015240, +0.0000015246,0.0000015164,0.0000015150,0.0000015414,0.0000015588, +0.0000015511,0.0000015647,0.0000015933,0.0000016102,0.0000016173, +0.0000016278,0.0000016491,0.0000016656,0.0000016675,0.0000016624, +0.0000016562,0.0000016547,0.0000016602,0.0000016423,0.0000016357, +0.0000016588,0.0000016641,0.0000016574,0.0000016512,0.0000016360, +0.0000016149,0.0000016190,0.0000016467,0.0000016562,0.0000016470, +0.0000016299,0.0000016209,0.0000016186,0.0000016310,0.0000016535, +0.0000016499,0.0000016204,0.0000016001,0.0000015861,0.0000015898, +0.0000016095,0.0000016347,0.0000016877,0.0000017198,0.0000016991, +0.0000016660,0.0000016620,0.0000016700,0.0000016728,0.0000016761, +0.0000016823,0.0000016878,0.0000016924,0.0000016956,0.0000016972, +0.0000017008,0.0000017104,0.0000017271,0.0000017441,0.0000017549, +0.0000017596,0.0000017612,0.0000017617,0.0000017634,0.0000017667, +0.0000017701,0.0000017745,0.0000017746,0.0000017646,0.0000017548, +0.0000017700,0.0000017654,0.0000017654,0.0000017633,0.0000017109, +0.0000017104,0.0000017142,0.0000017159,0.0000017128,0.0000017089, +0.0000017078,0.0000017072,0.0000017060,0.0000017044,0.0000017008, +0.0000016936,0.0000016826,0.0000016757,0.0000016873,0.0000017252, +0.0000017566,0.0000017689,0.0000017746,0.0000017669,0.0000017518, +0.0000017353,0.0000017226,0.0000017141,0.0000017068,0.0000017004, +0.0000016956,0.0000016931,0.0000016943,0.0000016979,0.0000016999, +0.0000016970,0.0000016883,0.0000016755,0.0000016634,0.0000016563, +0.0000016547,0.0000016580,0.0000016621,0.0000016634,0.0000016629, +0.0000016628,0.0000016631,0.0000016622,0.0000016610,0.0000016608, +0.0000016604,0.0000016625,0.0000016652,0.0000016673,0.0000016669, +0.0000016636,0.0000016550,0.0000016465,0.0000016408,0.0000016411, +0.0000016445,0.0000016528,0.0000016695,0.0000016911,0.0000017182, +0.0000017451,0.0000017403,0.0000017076,0.0000016798,0.0000016561, +0.0000016257,0.0000015945,0.0000015699,0.0000015496,0.0000015386, +0.0000015286,0.0000014940,0.0000014567,0.0000014420,0.0000014401, +0.0000014414,0.0000014469,0.0000014537,0.0000014602,0.0000014699, +0.0000014845,0.0000014979,0.0000015040,0.0000015032,0.0000015003, +0.0000014984,0.0000014985,0.0000014990,0.0000014980,0.0000014933, +0.0000014869,0.0000014836,0.0000014841,0.0000014893,0.0000014972, +0.0000015027,0.0000015059,0.0000015120,0.0000015240,0.0000015336, +0.0000015353,0.0000015311,0.0000015245,0.0000015193,0.0000015162, +0.0000015131,0.0000015074,0.0000015011,0.0000014972,0.0000014970, +0.0000014985,0.0000014982,0.0000014913,0.0000014752,0.0000014542, +0.0000014402,0.0000014381,0.0000014486,0.0000014690,0.0000014879, +0.0000014972,0.0000014988,0.0000014981,0.0000014975,0.0000014974, +0.0000014979,0.0000014992,0.0000015023,0.0000015074,0.0000015133, +0.0000015195,0.0000015225,0.0000015203,0.0000015129,0.0000015055, +0.0000015028,0.0000015039,0.0000015069,0.0000015108,0.0000015143, +0.0000015153,0.0000015121,0.0000015057,0.0000014955,0.0000014856, +0.0000014765,0.0000014650,0.0000014509,0.0000014385,0.0000014320, +0.0000014310,0.0000014303,0.0000014268,0.0000014199,0.0000014155, +0.0000014228,0.0000014586,0.0000015217,0.0000015897,0.0000016336, +0.0000016483,0.0000016505,0.0000016550,0.0000016628,0.0000016595, +0.0000016171,0.0000015743,0.0000015761,0.0000016053,0.0000016217, +0.0000016197,0.0000016119,0.0000016036,0.0000015994,0.0000016079, +0.0000016326,0.0000016466,0.0000016299,0.0000015490,0.0000014972, +0.0000015160,0.0000015502,0.0000015644,0.0000015761,0.0000015713, +0.0000015388,0.0000015050,0.0000014805,0.0000014668,0.0000014525, +0.0000014258,0.0000013968,0.0000013688,0.0000013592,0.0000013703, +0.0000013706,0.0000013702,0.0000013973,0.0000014358,0.0000014787, +0.0000014979,0.0000014919,0.0000014917,0.0000014968,0.0000015002, +0.0000015022,0.0000015019,0.0000014993,0.0000014963,0.0000014947, +0.0000014930,0.0000014914,0.0000014900,0.0000014897,0.0000014907, +0.0000014926,0.0000014944,0.0000014954,0.0000014954,0.0000014948, +0.0000014943,0.0000014947,0.0000014954,0.0000014962,0.0000014966, +0.0000014970,0.0000014971,0.0000014966,0.0000014957,0.0000014963, +0.0000015038,0.0000015104,0.0000015076,0.0000015203,0.0000015550, +0.0000015516,0.0000015351,0.0000015339,0.0000015294,0.0000015359, +0.0000015453,0.0000015695,0.0000016593,0.0000018119,0.0000018809, +0.0000017882,0.0000017284,0.0000017359,0.0000017674,0.0000018046, +0.0000017977,0.0000017780,0.0000017890,0.0000018048,0.0000017962, +0.0000017818,0.0000017901,0.0000018162,0.0000018222,0.0000017929, +0.0000017607,0.0000017774,0.0000018338,0.0000018621,0.0000018565, +0.0000018482,0.0000018576,0.0000018583,0.0000018397,0.0000018184, +0.0000017966,0.0000017737,0.0000017580,0.0000017501,0.0000017463, +0.0000017448,0.0000017456,0.0000017484,0.0000017514,0.0000017588, +0.0000017787,0.0000018016,0.0000018130,0.0000018185,0.0000018112, +0.0000017828,0.0000017541,0.0000017250,0.0000016956,0.0000016800, +0.0000016738,0.0000016707,0.0000016693,0.0000016684,0.0000016673, +0.0000016579,0.0000016325,0.0000016029,0.0000015983,0.0000016320, +0.0000016761,0.0000016974,0.0000017016,0.0000017154,0.0000017433, +0.0000017645,0.0000017725,0.0000017795,0.0000017911,0.0000018009, +0.0000018057,0.0000018074,0.0000018067,0.0000018006,0.0000017919, +0.0000017818,0.0000017699,0.0000017590,0.0000017403,0.0000017077, +0.0000016690,0.0000016336,0.0000016051,0.0000015833,0.0000015750, +0.0000015747,0.0000015730,0.0000015718,0.0000015739,0.0000015761, +0.0000015799,0.0000015868,0.0000015968,0.0000016111,0.0000016285, +0.0000016404,0.0000016471,0.0000016491,0.0000016487,0.0000016473, +0.0000016458,0.0000016425,0.0000016380,0.0000016358,0.0000016365, +0.0000016345,0.0000016233,0.0000016125,0.0000016175,0.0000016327, +0.0000016416,0.0000016667,0.0000017069,0.0000016851,0.0000016116, +0.0000015411,0.0000015091,0.0000015787,0.0000016094,0.0000015763, +0.0000015957,0.0000015953,0.0000015963,0.0000015924,0.0000015700, +0.0000014825,0.0000014802,0.0000015038,0.0000015360,0.0000015353, +0.0000015461,0.0000015421,0.0000015361,0.0000015372,0.0000015412, +0.0000015429,0.0000015400,0.0000015388,0.0000015425,0.0000015433, +0.0000015450,0.0000015515,0.0000015536,0.0000015475,0.0000015314, +0.0000015177,0.0000015154,0.0000015188,0.0000015196,0.0000015136, +0.0000014971,0.0000014824,0.0000014877,0.0000015019,0.0000015078, +0.0000015207,0.0000015400,0.0000015495,0.0000015449,0.0000015324, +0.0000015215,0.0000015105,0.0000015082,0.0000015192,0.0000015241, +0.0000015182,0.0000015123,0.0000015319,0.0000015533,0.0000015483, +0.0000015605,0.0000015895,0.0000016078,0.0000016139,0.0000016213, +0.0000016420,0.0000016607,0.0000016656,0.0000016628,0.0000016559, +0.0000016477,0.0000016546,0.0000016539,0.0000016333,0.0000016406, +0.0000016612,0.0000016590,0.0000016502,0.0000016386,0.0000016165, +0.0000016091,0.0000016329,0.0000016532,0.0000016483,0.0000016340, +0.0000016234,0.0000016212,0.0000016244,0.0000016453,0.0000016570, +0.0000016326,0.0000016086,0.0000015927,0.0000015863,0.0000016023, +0.0000016268,0.0000016773,0.0000017159,0.0000017018,0.0000016681, +0.0000016617,0.0000016696,0.0000016719,0.0000016741,0.0000016799, +0.0000016859,0.0000016910,0.0000016950,0.0000016970,0.0000016977, +0.0000016995,0.0000017077,0.0000017255,0.0000017423,0.0000017529, +0.0000017586,0.0000017607,0.0000017631,0.0000017668,0.0000017687, +0.0000017682,0.0000017625,0.0000017549,0.0000017573,0.0000017736, +0.0000017617,0.0000017711,0.0000017456,0.0000017108,0.0000017129, +0.0000017204,0.0000017268,0.0000017264,0.0000017196,0.0000017110, +0.0000017047,0.0000017030,0.0000017030,0.0000017009,0.0000016949, +0.0000016857,0.0000016759,0.0000016805,0.0000017117,0.0000017452, +0.0000017559,0.0000017583,0.0000017481,0.0000017335,0.0000017230, +0.0000017132,0.0000016998,0.0000016884,0.0000016832,0.0000016800, +0.0000016778,0.0000016778,0.0000016787,0.0000016781,0.0000016747, +0.0000016690,0.0000016628,0.0000016587,0.0000016572,0.0000016595, +0.0000016630,0.0000016635,0.0000016619,0.0000016612,0.0000016606, +0.0000016600,0.0000016610,0.0000016631,0.0000016670,0.0000016705, +0.0000016714,0.0000016697,0.0000016643,0.0000016569,0.0000016484, +0.0000016414,0.0000016396,0.0000016410,0.0000016461,0.0000016568, +0.0000016767,0.0000016990,0.0000017245,0.0000017470,0.0000017390, +0.0000017062,0.0000016789,0.0000016560,0.0000016258,0.0000015951, +0.0000015714,0.0000015516,0.0000015409,0.0000015307,0.0000014965, +0.0000014582,0.0000014418,0.0000014397,0.0000014414,0.0000014463, +0.0000014511,0.0000014585,0.0000014720,0.0000014872,0.0000014996, +0.0000015049,0.0000015039,0.0000015007,0.0000014991,0.0000014995, +0.0000015006,0.0000015013,0.0000015000,0.0000014939,0.0000014865, +0.0000014834,0.0000014851,0.0000014899,0.0000014937,0.0000014989, +0.0000015122,0.0000015294,0.0000015377,0.0000015367,0.0000015306, +0.0000015238,0.0000015179,0.0000015134,0.0000015117,0.0000015096, +0.0000015036,0.0000014963,0.0000014915,0.0000014883,0.0000014833, +0.0000014737,0.0000014594,0.0000014458,0.0000014402,0.0000014467, +0.0000014670,0.0000014876,0.0000014966,0.0000014969,0.0000014970, +0.0000014982,0.0000014994,0.0000015005,0.0000015019,0.0000015043, +0.0000015085,0.0000015143,0.0000015192,0.0000015208,0.0000015198, +0.0000015128,0.0000015044,0.0000015016,0.0000015036,0.0000015088, +0.0000015137,0.0000015156,0.0000015165,0.0000015131,0.0000015058, +0.0000014923,0.0000014753,0.0000014615,0.0000014527,0.0000014485, +0.0000014450,0.0000014407,0.0000014386,0.0000014394,0.0000014376, +0.0000014310,0.0000014224,0.0000014199,0.0000014398,0.0000014914, +0.0000015602,0.0000016172,0.0000016436,0.0000016489,0.0000016512, +0.0000016583,0.0000016606,0.0000016353,0.0000015802,0.0000015608, +0.0000015849,0.0000016114,0.0000016134,0.0000016023,0.0000015981, +0.0000015991,0.0000016000,0.0000016124,0.0000016371,0.0000016455, +0.0000016109,0.0000015305,0.0000014951,0.0000015192,0.0000015459, +0.0000015524,0.0000015666,0.0000015714,0.0000015468,0.0000015120, +0.0000014815,0.0000014638,0.0000014550,0.0000014311,0.0000013995, +0.0000013693,0.0000013605,0.0000013696,0.0000013674,0.0000013726, +0.0000014032,0.0000014378,0.0000014807,0.0000014993,0.0000014984, +0.0000014960,0.0000014974,0.0000015014,0.0000015066,0.0000015108, +0.0000015135,0.0000015146,0.0000015141,0.0000015117,0.0000015069, +0.0000014999,0.0000014924,0.0000014868,0.0000014836,0.0000014843, +0.0000014868,0.0000014894,0.0000014909,0.0000014915,0.0000014916, +0.0000014907,0.0000014891,0.0000014884,0.0000014872,0.0000014869, +0.0000014881,0.0000014897,0.0000014924,0.0000015044,0.0000015114, +0.0000015077,0.0000015303,0.0000015569,0.0000015422,0.0000015341, +0.0000015315,0.0000015287,0.0000015401,0.0000015526,0.0000016087, +0.0000017423,0.0000018646,0.0000018329,0.0000017393,0.0000017363, +0.0000017494,0.0000017861,0.0000018050,0.0000017772,0.0000017638, +0.0000017831,0.0000018111,0.0000018134,0.0000017899,0.0000017624, +0.0000017546,0.0000017627,0.0000017974,0.0000018413,0.0000018631, +0.0000018586,0.0000018500,0.0000018535,0.0000018564,0.0000018401, +0.0000018147,0.0000017927,0.0000017712,0.0000017561,0.0000017513, +0.0000017502,0.0000017484,0.0000017477,0.0000017503,0.0000017552, +0.0000017617,0.0000017752,0.0000017955,0.0000018083,0.0000018140, +0.0000018196,0.0000018095,0.0000017791,0.0000017564,0.0000017323, +0.0000017022,0.0000016837,0.0000016768,0.0000016750,0.0000016730, +0.0000016680,0.0000016643,0.0000016624,0.0000016506,0.0000016200, +0.0000015963,0.0000016111,0.0000016582,0.0000016929,0.0000017009, +0.0000017106,0.0000017374,0.0000017616,0.0000017720,0.0000017786, +0.0000017882,0.0000017971,0.0000018028,0.0000018047,0.0000018024, +0.0000017961,0.0000017886,0.0000017770,0.0000017642,0.0000017519, +0.0000017287,0.0000016940,0.0000016552,0.0000016211,0.0000015947, +0.0000015774,0.0000015727,0.0000015737,0.0000015773,0.0000015820, +0.0000015871,0.0000015939,0.0000016042,0.0000016174,0.0000016309, +0.0000016418,0.0000016471,0.0000016501,0.0000016512,0.0000016546, +0.0000016589,0.0000016594,0.0000016539,0.0000016425,0.0000016342, +0.0000016327,0.0000016330,0.0000016291,0.0000016175,0.0000016159, +0.0000016281,0.0000016397,0.0000016557,0.0000017023,0.0000016947, +0.0000016232,0.0000015662,0.0000015268,0.0000015852,0.0000016011, +0.0000015796,0.0000015992,0.0000016114,0.0000016023,0.0000015940, +0.0000015850,0.0000015006,0.0000014765,0.0000014940,0.0000015330, +0.0000015339,0.0000015380,0.0000015437,0.0000015393,0.0000015370, +0.0000015373,0.0000015373,0.0000015378,0.0000015404,0.0000015438, +0.0000015472,0.0000015520,0.0000015530,0.0000015453,0.0000015289, +0.0000015154,0.0000015142,0.0000015175,0.0000015164,0.0000015076, +0.0000014912,0.0000014810,0.0000014911,0.0000015048,0.0000015080, +0.0000015165,0.0000015301,0.0000015335,0.0000015273,0.0000015192, +0.0000015138,0.0000015054,0.0000015031,0.0000015149,0.0000015244, +0.0000015200,0.0000015098,0.0000015248,0.0000015478,0.0000015453, +0.0000015581,0.0000015873,0.0000016050,0.0000016115,0.0000016180, +0.0000016364,0.0000016553,0.0000016621,0.0000016618,0.0000016566, +0.0000016455,0.0000016431,0.0000016553,0.0000016425,0.0000016280, +0.0000016472,0.0000016583,0.0000016502,0.0000016389,0.0000016197, +0.0000016057,0.0000016206,0.0000016499,0.0000016496,0.0000016376, +0.0000016256,0.0000016251,0.0000016240,0.0000016355,0.0000016553, +0.0000016438,0.0000016168,0.0000016003,0.0000015888,0.0000015972, +0.0000016193,0.0000016655,0.0000017109,0.0000017055,0.0000016709, +0.0000016623,0.0000016697,0.0000016707,0.0000016718,0.0000016769, +0.0000016819,0.0000016860,0.0000016905,0.0000016959,0.0000017001, +0.0000017002,0.0000016989,0.0000017060,0.0000017232,0.0000017388, +0.0000017489,0.0000017545,0.0000017585,0.0000017619,0.0000017604, +0.0000017561,0.0000017533,0.0000017495,0.0000017661,0.0000017709, +0.0000017635,0.0000017774,0.0000017288,0.0000017150,0.0000017182, +0.0000017281,0.0000017360,0.0000017355,0.0000017248,0.0000017104, +0.0000017014,0.0000017012,0.0000017030,0.0000017009,0.0000016947, +0.0000016884,0.0000016794,0.0000016758,0.0000016962,0.0000017310, +0.0000017432,0.0000017405,0.0000017307,0.0000017212,0.0000017153, +0.0000017016,0.0000016855,0.0000016783,0.0000016766,0.0000016743, +0.0000016730,0.0000016725,0.0000016713,0.0000016690,0.0000016661, +0.0000016628,0.0000016599,0.0000016588,0.0000016600,0.0000016616, +0.0000016614,0.0000016589,0.0000016572,0.0000016569,0.0000016574, +0.0000016611,0.0000016675,0.0000016728,0.0000016732,0.0000016707, +0.0000016639,0.0000016557,0.0000016472,0.0000016404,0.0000016373, +0.0000016386,0.0000016425,0.0000016494,0.0000016639,0.0000016865, +0.0000017073,0.0000017311,0.0000017470,0.0000017353,0.0000017025, +0.0000016762,0.0000016548,0.0000016254,0.0000015953,0.0000015724, +0.0000015526,0.0000015418,0.0000015309,0.0000014967,0.0000014585, +0.0000014415,0.0000014394,0.0000014416,0.0000014459,0.0000014486, +0.0000014566,0.0000014734,0.0000014892,0.0000014987,0.0000015031, +0.0000015031,0.0000015012,0.0000015001,0.0000015004,0.0000015019, +0.0000015037,0.0000015039,0.0000015005,0.0000014931,0.0000014851, +0.0000014816,0.0000014818,0.0000014855,0.0000014969,0.0000015162, +0.0000015333,0.0000015388,0.0000015356,0.0000015279,0.0000015205, +0.0000015148,0.0000015109,0.0000015097,0.0000015104,0.0000015083, +0.0000015012,0.0000014924,0.0000014844,0.0000014753,0.0000014636, +0.0000014516,0.0000014448,0.0000014488,0.0000014674,0.0000014886, +0.0000014991,0.0000014999,0.0000014998,0.0000015013,0.0000015023, +0.0000015023,0.0000015024,0.0000015030,0.0000015045,0.0000015080, +0.0000015139,0.0000015189,0.0000015197,0.0000015149,0.0000015060, +0.0000014993,0.0000014992,0.0000015032,0.0000015083,0.0000015117, +0.0000015110,0.0000015050,0.0000014955,0.0000014840,0.0000014701, +0.0000014557,0.0000014456,0.0000014420,0.0000014444,0.0000014459, +0.0000014454,0.0000014434,0.0000014411,0.0000014366,0.0000014286, +0.0000014221,0.0000014259,0.0000014611,0.0000015254,0.0000015921, +0.0000016340,0.0000016468,0.0000016487,0.0000016540,0.0000016610, +0.0000016501,0.0000015971,0.0000015558,0.0000015667,0.0000015987, +0.0000016067,0.0000015919,0.0000015786,0.0000015835,0.0000015943, +0.0000016015,0.0000016184,0.0000016390,0.0000016340,0.0000015772, +0.0000015086,0.0000014977,0.0000015271,0.0000015447,0.0000015446, +0.0000015610,0.0000015727,0.0000015493,0.0000015156,0.0000014815, +0.0000014588,0.0000014539,0.0000014318,0.0000013951,0.0000013652, +0.0000013615,0.0000013673,0.0000013631,0.0000013780,0.0000014047, +0.0000014313,0.0000014748,0.0000015001,0.0000015026,0.0000015037, +0.0000015056,0.0000015071,0.0000015062,0.0000014997,0.0000014913, +0.0000014866,0.0000014875,0.0000014936,0.0000015023,0.0000015090, +0.0000015120,0.0000015089,0.0000015004,0.0000014908,0.0000014865, +0.0000014836,0.0000014843,0.0000014877,0.0000014904,0.0000014910, +0.0000014904,0.0000014878,0.0000014842,0.0000014813,0.0000014823, +0.0000014843,0.0000014909,0.0000015075,0.0000015094,0.0000015092, +0.0000015419,0.0000015523,0.0000015366,0.0000015333,0.0000015277, +0.0000015319,0.0000015436,0.0000015735,0.0000016788,0.0000018295, +0.0000018572,0.0000017589,0.0000017415,0.0000017508,0.0000017619, +0.0000017952,0.0000017844,0.0000017539,0.0000017528,0.0000017762, +0.0000018096,0.0000018336,0.0000018408,0.0000018464,0.0000018515, +0.0000018573,0.0000018613,0.0000018578,0.0000018507,0.0000018522, +0.0000018548,0.0000018399,0.0000018122,0.0000017871,0.0000017669, +0.0000017563,0.0000017551,0.0000017558,0.0000017529,0.0000017506, +0.0000017525,0.0000017584,0.0000017666,0.0000017787,0.0000017956, +0.0000018077,0.0000018093,0.0000018143,0.0000018202,0.0000018057, +0.0000017764,0.0000017610,0.0000017420,0.0000017102,0.0000016889, +0.0000016820,0.0000016794,0.0000016749,0.0000016673,0.0000016610, +0.0000016591,0.0000016567,0.0000016372,0.0000016040,0.0000015989, +0.0000016415,0.0000016862,0.0000017001,0.0000017077,0.0000017327, +0.0000017587,0.0000017718,0.0000017796,0.0000017879,0.0000017954, +0.0000017999,0.0000018005,0.0000017975,0.0000017930,0.0000017845, +0.0000017699,0.0000017576,0.0000017425,0.0000017163,0.0000016800, +0.0000016411,0.0000016096,0.0000015858,0.0000015729,0.0000015727, +0.0000015800,0.0000015889,0.0000015997,0.0000016090,0.0000016215, +0.0000016350,0.0000016438,0.0000016486,0.0000016522,0.0000016552, +0.0000016603,0.0000016719,0.0000016821,0.0000016844,0.0000016783, +0.0000016617,0.0000016429,0.0000016330,0.0000016298,0.0000016287, +0.0000016227,0.0000016173,0.0000016233,0.0000016363,0.0000016454, +0.0000016951,0.0000017028,0.0000016406,0.0000015849,0.0000015569, +0.0000015949,0.0000015926,0.0000015885,0.0000016106,0.0000016411, +0.0000016201,0.0000015967,0.0000015929,0.0000015229,0.0000014771, +0.0000014859,0.0000015193,0.0000015350,0.0000015300,0.0000015382, +0.0000015406,0.0000015396,0.0000015385,0.0000015384,0.0000015399, +0.0000015433,0.0000015479,0.0000015512,0.0000015504,0.0000015421, +0.0000015263,0.0000015142,0.0000015128,0.0000015146,0.0000015123, +0.0000015008,0.0000014852,0.0000014801,0.0000014961,0.0000015111, +0.0000015088,0.0000015126,0.0000015214,0.0000015202,0.0000015132, +0.0000015084,0.0000015059,0.0000014992,0.0000014984,0.0000015122, +0.0000015251,0.0000015230,0.0000015099,0.0000015192,0.0000015413, +0.0000015428,0.0000015571,0.0000015862,0.0000016025,0.0000016090, +0.0000016173,0.0000016335,0.0000016501,0.0000016582,0.0000016588, +0.0000016564,0.0000016468,0.0000016353,0.0000016447,0.0000016525, +0.0000016306,0.0000016288,0.0000016490,0.0000016505,0.0000016386, +0.0000016216,0.0000016028,0.0000016094,0.0000016407,0.0000016505, +0.0000016402,0.0000016284,0.0000016298,0.0000016289,0.0000016295, +0.0000016485,0.0000016528,0.0000016268,0.0000016076,0.0000015942, +0.0000015940,0.0000016117,0.0000016533,0.0000017042,0.0000017081, +0.0000016739,0.0000016644,0.0000016701,0.0000016697,0.0000016691, +0.0000016722,0.0000016760,0.0000016780,0.0000016799,0.0000016861, +0.0000016972,0.0000017032,0.0000016998,0.0000016960,0.0000017043, +0.0000017206,0.0000017338,0.0000017427,0.0000017494,0.0000017523, +0.0000017496,0.0000017480,0.0000017468,0.0000017500,0.0000017749, +0.0000017649,0.0000017681,0.0000017776,0.0000017232,0.0000017202, +0.0000017251,0.0000017339,0.0000017409,0.0000017407,0.0000017320, +0.0000017172,0.0000017072,0.0000017051,0.0000017061,0.0000017049, +0.0000016980,0.0000016910,0.0000016840,0.0000016759,0.0000016845, +0.0000017203,0.0000017390,0.0000017321,0.0000017223,0.0000017151, +0.0000017057,0.0000016892,0.0000016776,0.0000016743,0.0000016715, +0.0000016691,0.0000016684,0.0000016683,0.0000016670,0.0000016644, +0.0000016618,0.0000016601,0.0000016595,0.0000016600,0.0000016602, +0.0000016580,0.0000016545,0.0000016526,0.0000016530,0.0000016564, +0.0000016624,0.0000016699,0.0000016736,0.0000016709,0.0000016631, +0.0000016544,0.0000016454,0.0000016379,0.0000016350,0.0000016358, +0.0000016404,0.0000016468,0.0000016571,0.0000016752,0.0000016968, +0.0000017149,0.0000017377,0.0000017471,0.0000017298,0.0000016966, +0.0000016727,0.0000016524,0.0000016233,0.0000015940,0.0000015720, +0.0000015522,0.0000015413,0.0000015296,0.0000014950,0.0000014576, +0.0000014410,0.0000014391,0.0000014417,0.0000014456,0.0000014467, +0.0000014552,0.0000014738,0.0000014895,0.0000014972,0.0000015008, +0.0000015016,0.0000015011,0.0000015008,0.0000015012,0.0000015024, +0.0000015041,0.0000015051,0.0000015041,0.0000014989,0.0000014897, +0.0000014811,0.0000014782,0.0000014828,0.0000014997,0.0000015206, +0.0000015340,0.0000015362,0.0000015323,0.0000015232,0.0000015147, +0.0000015092,0.0000015056,0.0000015042,0.0000015052,0.0000015060, +0.0000015024,0.0000014942,0.0000014829,0.0000014700,0.0000014584, +0.0000014518,0.0000014514,0.0000014678,0.0000014877,0.0000014985, +0.0000015003,0.0000015014,0.0000015048,0.0000015083,0.0000015089, +0.0000015072,0.0000015052,0.0000015040,0.0000015037,0.0000015053, +0.0000015096,0.0000015142,0.0000015149,0.0000015094,0.0000015000, +0.0000014947,0.0000014962,0.0000015009,0.0000015039,0.0000015025, +0.0000014950,0.0000014839,0.0000014728,0.0000014644,0.0000014573, +0.0000014499,0.0000014437,0.0000014415,0.0000014433,0.0000014453, +0.0000014456,0.0000014431,0.0000014380,0.0000014316,0.0000014235, +0.0000014201,0.0000014319,0.0000014808,0.0000015504,0.0000016103, +0.0000016407,0.0000016467,0.0000016499,0.0000016578,0.0000016579, +0.0000016158,0.0000015635,0.0000015573,0.0000015868,0.0000016014, +0.0000015865,0.0000015627,0.0000015577,0.0000015698,0.0000015865, +0.0000016009,0.0000016206,0.0000016313,0.0000016050,0.0000015382, +0.0000014968,0.0000015060,0.0000015378,0.0000015450,0.0000015420, +0.0000015619,0.0000015713,0.0000015461,0.0000015147,0.0000014782, +0.0000014541,0.0000014507,0.0000014271,0.0000013856,0.0000013616, +0.0000013625,0.0000013616,0.0000013591,0.0000013807,0.0000013963, +0.0000014076,0.0000014368,0.0000014589,0.0000014633,0.0000014591, +0.0000014450,0.0000014269,0.0000014101,0.0000013989,0.0000013938, +0.0000013934,0.0000013963,0.0000014041,0.0000014183,0.0000014407, +0.0000014690,0.0000014949,0.0000015082,0.0000015137,0.0000015092, +0.0000014999,0.0000014916,0.0000014897,0.0000014903,0.0000014910, +0.0000014921,0.0000014898,0.0000014840,0.0000014796,0.0000014787, +0.0000014807,0.0000014936,0.0000015102,0.0000015060,0.0000015184, +0.0000015498,0.0000015440,0.0000015345,0.0000015301,0.0000015259, +0.0000015371,0.0000015537,0.0000016232,0.0000017635,0.0000018575, +0.0000017921,0.0000017490,0.0000017593,0.0000017515,0.0000017776, +0.0000017887,0.0000017598,0.0000017443,0.0000017469,0.0000017682, +0.0000017996,0.0000018278,0.0000018452,0.0000018534,0.0000018558, +0.0000018547,0.0000018518,0.0000018522,0.0000018514,0.0000018362, +0.0000018083,0.0000017811,0.0000017623,0.0000017570,0.0000017594, +0.0000017596,0.0000017557,0.0000017521,0.0000017527,0.0000017580, +0.0000017667,0.0000017790,0.0000017940,0.0000018058,0.0000018078, +0.0000018069,0.0000018177,0.0000018243,0.0000018019,0.0000017744, +0.0000017656,0.0000017524,0.0000017218,0.0000016971,0.0000016880, +0.0000016829,0.0000016754,0.0000016667,0.0000016593,0.0000016555, +0.0000016547,0.0000016463,0.0000016138,0.0000015970,0.0000016295, +0.0000016803,0.0000016998,0.0000017063,0.0000017291,0.0000017562, +0.0000017724,0.0000017818,0.0000017891,0.0000017939,0.0000017959, +0.0000017955,0.0000017938,0.0000017899,0.0000017772,0.0000017613, +0.0000017502,0.0000017323,0.0000017031,0.0000016652,0.0000016280, +0.0000015988,0.0000015780,0.0000015722,0.0000015783,0.0000015901, +0.0000016066,0.0000016187,0.0000016344,0.0000016466,0.0000016500, +0.0000016536,0.0000016589,0.0000016645,0.0000016766,0.0000016935, +0.0000017026,0.0000017033,0.0000016986,0.0000016860,0.0000016649, +0.0000016432,0.0000016303,0.0000016261,0.0000016248,0.0000016208, +0.0000016210,0.0000016319,0.0000016385,0.0000016843,0.0000017064, +0.0000016632,0.0000015994,0.0000015798,0.0000015981,0.0000015879, +0.0000015947,0.0000016316,0.0000016604,0.0000016445,0.0000015994, +0.0000015954,0.0000015440,0.0000014788,0.0000014811,0.0000015037, +0.0000015332,0.0000015300,0.0000015307,0.0000015365,0.0000015386, +0.0000015391,0.0000015405,0.0000015432,0.0000015464,0.0000015488, +0.0000015459,0.0000015376,0.0000015231,0.0000015124,0.0000015106, +0.0000015110,0.0000015082,0.0000014943,0.0000014798,0.0000014805, +0.0000015030,0.0000015182,0.0000015120,0.0000015091,0.0000015133, +0.0000015104,0.0000015038,0.0000015012,0.0000014993,0.0000014927, +0.0000014949,0.0000015112,0.0000015273,0.0000015268,0.0000015121, +0.0000015158,0.0000015362,0.0000015415,0.0000015580,0.0000015856, +0.0000016009,0.0000016096,0.0000016200,0.0000016336,0.0000016461, +0.0000016533,0.0000016549,0.0000016543,0.0000016486,0.0000016346, +0.0000016308,0.0000016487,0.0000016437,0.0000016234,0.0000016304, +0.0000016436,0.0000016388,0.0000016232,0.0000016031,0.0000015995, +0.0000016289,0.0000016492,0.0000016424,0.0000016304,0.0000016318, +0.0000016369,0.0000016319,0.0000016417,0.0000016548,0.0000016372, +0.0000016143,0.0000016002,0.0000015949,0.0000016051,0.0000016421, +0.0000016978,0.0000017119,0.0000016778,0.0000016650,0.0000016702, +0.0000016686,0.0000016657,0.0000016674,0.0000016711,0.0000016703, +0.0000016675,0.0000016692,0.0000016810,0.0000016979,0.0000017015, +0.0000016952,0.0000016934,0.0000017039,0.0000017193,0.0000017301, +0.0000017380,0.0000017424,0.0000017432,0.0000017437,0.0000017410, +0.0000017585,0.0000017770,0.0000017596,0.0000017730,0.0000017683, +0.0000017260,0.0000017264,0.0000017318,0.0000017377,0.0000017432, +0.0000017446,0.0000017409,0.0000017316,0.0000017229,0.0000017145, +0.0000017087,0.0000017067,0.0000017037,0.0000016971,0.0000016894, +0.0000016787,0.0000016761,0.0000017042,0.0000017338,0.0000017336, +0.0000017214,0.0000017102,0.0000016947,0.0000016804,0.0000016742, +0.0000016698,0.0000016645,0.0000016613,0.0000016611,0.0000016624, +0.0000016624,0.0000016612,0.0000016601,0.0000016597,0.0000016594, +0.0000016579,0.0000016545,0.0000016504,0.0000016489,0.0000016513, +0.0000016559,0.0000016645,0.0000016719,0.0000016738,0.0000016684, +0.0000016579,0.0000016477,0.0000016391,0.0000016362,0.0000016377, +0.0000016433,0.0000016484,0.0000016556,0.0000016690,0.0000016890, +0.0000017061,0.0000017217,0.0000017434,0.0000017469,0.0000017205, +0.0000016889,0.0000016686,0.0000016491,0.0000016204,0.0000015922, +0.0000015709,0.0000015509,0.0000015402,0.0000015274,0.0000014921, +0.0000014560,0.0000014405,0.0000014389,0.0000014418,0.0000014452, +0.0000014459,0.0000014546,0.0000014740,0.0000014885,0.0000014952, +0.0000014976,0.0000014984,0.0000014993,0.0000015002,0.0000015010, +0.0000015023,0.0000015041,0.0000015055,0.0000015059,0.0000015030, +0.0000014942,0.0000014830,0.0000014787,0.0000014849,0.0000015035, +0.0000015220,0.0000015316,0.0000015321,0.0000015280,0.0000015182, +0.0000015093,0.0000015043,0.0000015010,0.0000014991,0.0000014993, +0.0000014994,0.0000014961,0.0000014877,0.0000014761,0.0000014647, +0.0000014568,0.0000014558,0.0000014693,0.0000014873,0.0000014967, +0.0000014985,0.0000014997,0.0000015035,0.0000015083,0.0000015103, +0.0000015102,0.0000015084,0.0000015066,0.0000015052,0.0000015040, +0.0000015041,0.0000015058,0.0000015089,0.0000015094,0.0000015046, +0.0000014969,0.0000014933,0.0000014948,0.0000014982,0.0000014973, +0.0000014901,0.0000014780,0.0000014666,0.0000014595,0.0000014568, +0.0000014553,0.0000014517,0.0000014464,0.0000014413,0.0000014392, +0.0000014397,0.0000014407,0.0000014394,0.0000014344,0.0000014267, +0.0000014185,0.0000014167,0.0000014388,0.0000014978,0.0000015708, +0.0000016239,0.0000016435,0.0000016469,0.0000016538,0.0000016574, +0.0000016310,0.0000015723,0.0000015547,0.0000015781,0.0000015970, +0.0000015847,0.0000015580,0.0000015443,0.0000015459,0.0000015583, +0.0000015760,0.0000015962,0.0000016139,0.0000016064,0.0000015565, +0.0000015036,0.0000014948,0.0000015224,0.0000015463,0.0000015442, +0.0000015454,0.0000015654,0.0000015665,0.0000015396,0.0000015088, +0.0000014696,0.0000014493,0.0000014464,0.0000014166,0.0000013742, +0.0000013591,0.0000013616,0.0000013541,0.0000013548,0.0000013766, +0.0000013826,0.0000013780,0.0000013791,0.0000013807,0.0000013781, +0.0000013742,0.0000013737,0.0000013764,0.0000013797,0.0000013817, +0.0000013833,0.0000013849,0.0000013857,0.0000013858,0.0000013864, +0.0000013899,0.0000013998,0.0000014204,0.0000014519,0.0000014859, +0.0000015060,0.0000015165,0.0000015139,0.0000015032,0.0000014933, +0.0000014914,0.0000014915,0.0000014899,0.0000014836,0.0000014776, +0.0000014761,0.0000014807,0.0000015005,0.0000015109,0.0000015056, +0.0000015319,0.0000015486,0.0000015377,0.0000015323,0.0000015258, +0.0000015291,0.0000015419,0.0000015812,0.0000017022,0.0000018346, +0.0000018249,0.0000017590,0.0000017615,0.0000017604,0.0000017584, +0.0000017777,0.0000017700,0.0000017477,0.0000017418,0.0000017460, +0.0000017595,0.0000017853,0.0000018113,0.0000018295,0.0000018392, +0.0000018438,0.0000018454,0.0000018419,0.0000018252,0.0000017987, +0.0000017729,0.0000017580,0.0000017577,0.0000017625,0.0000017619, +0.0000017560,0.0000017508,0.0000017499,0.0000017538,0.0000017620, +0.0000017737,0.0000017867,0.0000017976,0.0000018017,0.0000018009, +0.0000018056,0.0000018224,0.0000018257,0.0000017998,0.0000017751, +0.0000017707,0.0000017644,0.0000017377,0.0000017073,0.0000016923, +0.0000016847,0.0000016751,0.0000016657,0.0000016588,0.0000016545, +0.0000016536,0.0000016505,0.0000016226,0.0000016004,0.0000016261, +0.0000016772,0.0000017002,0.0000017060,0.0000017266,0.0000017543, +0.0000017734,0.0000017840,0.0000017898,0.0000017916,0.0000017917, +0.0000017916,0.0000017911,0.0000017837,0.0000017667,0.0000017529, +0.0000017418,0.0000017216,0.0000016895,0.0000016503,0.0000016153, +0.0000015889,0.0000015741,0.0000015755,0.0000015864,0.0000016058, +0.0000016215,0.0000016414,0.0000016522,0.0000016531,0.0000016597, +0.0000016676,0.0000016773,0.0000016944,0.0000017080,0.0000017107, +0.0000017078,0.0000017035,0.0000016982,0.0000016871,0.0000016652, +0.0000016395,0.0000016258,0.0000016243,0.0000016246,0.0000016217, +0.0000016278,0.0000016358,0.0000016689,0.0000017067,0.0000016863, +0.0000016223,0.0000015897,0.0000015922,0.0000015878,0.0000015984, +0.0000016483,0.0000016650,0.0000016613,0.0000016046,0.0000015948, +0.0000015618,0.0000014794,0.0000014794,0.0000014903,0.0000015245, +0.0000015326,0.0000015294,0.0000015313,0.0000015351,0.0000015381, +0.0000015409,0.0000015429,0.0000015428,0.0000015400,0.0000015323, +0.0000015194,0.0000015095,0.0000015068,0.0000015075,0.0000015051, +0.0000014917,0.0000014824,0.0000014866,0.0000015121,0.0000015244, +0.0000015139,0.0000015071,0.0000015076,0.0000015045,0.0000014991, +0.0000014966,0.0000014940,0.0000014876,0.0000014923,0.0000015131, +0.0000015307,0.0000015313,0.0000015154,0.0000015156,0.0000015331, +0.0000015397,0.0000015608,0.0000015865,0.0000016025,0.0000016142, +0.0000016258,0.0000016356,0.0000016432,0.0000016484,0.0000016505, +0.0000016508,0.0000016486,0.0000016385,0.0000016250,0.0000016333, +0.0000016481,0.0000016312,0.0000016179,0.0000016293,0.0000016355, +0.0000016249,0.0000016055,0.0000015947,0.0000016170,0.0000016468, +0.0000016446,0.0000016338,0.0000016312,0.0000016418,0.0000016388, +0.0000016357,0.0000016530,0.0000016466,0.0000016210,0.0000016047, +0.0000015953,0.0000016007,0.0000016323,0.0000016893,0.0000017083, +0.0000016816,0.0000016649,0.0000016699,0.0000016677,0.0000016614, +0.0000016634,0.0000016669,0.0000016631,0.0000016581,0.0000016564, +0.0000016610,0.0000016805,0.0000016986,0.0000016979,0.0000016905, +0.0000016922,0.0000017064,0.0000017207,0.0000017297,0.0000017363, +0.0000017396,0.0000017385,0.0000017402,0.0000017695,0.0000017736, +0.0000017601,0.0000017824,0.0000017545,0.0000017310,0.0000017327, +0.0000017388,0.0000017423,0.0000017450,0.0000017460,0.0000017442, +0.0000017402,0.0000017357,0.0000017258,0.0000017126,0.0000017060, +0.0000017063,0.0000017040,0.0000016962,0.0000016844,0.0000016758, +0.0000016865,0.0000017208,0.0000017329,0.0000017216,0.0000017047, +0.0000016867,0.0000016766,0.0000016719,0.0000016646,0.0000016572, +0.0000016546,0.0000016560,0.0000016598,0.0000016612,0.0000016607, +0.0000016596,0.0000016580,0.0000016553,0.0000016516,0.0000016483, +0.0000016478,0.0000016501,0.0000016568,0.0000016665,0.0000016757, +0.0000016782,0.0000016715,0.0000016587,0.0000016469,0.0000016417, +0.0000016435,0.0000016505,0.0000016563,0.0000016598,0.0000016674, +0.0000016826,0.0000017007,0.0000017131,0.0000017281,0.0000017443, +0.0000017381,0.0000017074,0.0000016808,0.0000016647,0.0000016452, +0.0000016164,0.0000015898,0.0000015691,0.0000015490,0.0000015384, +0.0000015244,0.0000014883,0.0000014535,0.0000014396,0.0000014388, +0.0000014420,0.0000014448,0.0000014449,0.0000014545,0.0000014742, +0.0000014871,0.0000014923,0.0000014941,0.0000014953,0.0000014974, +0.0000014994,0.0000015006,0.0000015019,0.0000015044,0.0000015067, +0.0000015073,0.0000015053,0.0000014980,0.0000014870,0.0000014827, +0.0000014892,0.0000015060,0.0000015209,0.0000015284,0.0000015296, +0.0000015254,0.0000015158,0.0000015076,0.0000015022,0.0000014972, +0.0000014926,0.0000014908,0.0000014896,0.0000014841,0.0000014747, +0.0000014649,0.0000014593,0.0000014605,0.0000014735,0.0000014881, +0.0000014951,0.0000014964,0.0000014971,0.0000015008,0.0000015062, +0.0000015094,0.0000015098,0.0000015087,0.0000015080,0.0000015085, +0.0000015086,0.0000015069,0.0000015048,0.0000015047,0.0000015058, +0.0000015060,0.0000015027,0.0000014967,0.0000014939,0.0000014952, +0.0000014960,0.0000014907,0.0000014796,0.0000014673,0.0000014577, +0.0000014533,0.0000014527,0.0000014536,0.0000014523,0.0000014466, +0.0000014379,0.0000014309,0.0000014283,0.0000014289,0.0000014301, +0.0000014282,0.0000014221,0.0000014149,0.0000014151,0.0000014474, +0.0000015145,0.0000015878,0.0000016331,0.0000016456,0.0000016504, +0.0000016571,0.0000016440,0.0000015859,0.0000015510,0.0000015685, +0.0000015935,0.0000015856,0.0000015596,0.0000015447,0.0000015420, +0.0000015429,0.0000015502,0.0000015662,0.0000015853,0.0000015883, +0.0000015554,0.0000015072,0.0000014912,0.0000015095,0.0000015404, +0.0000015500,0.0000015460,0.0000015535,0.0000015670,0.0000015582, +0.0000015310,0.0000014977,0.0000014569,0.0000014440,0.0000014399, +0.0000014021,0.0000013635,0.0000013569,0.0000013603,0.0000013484, +0.0000013462,0.0000013601,0.0000013656,0.0000013650,0.0000013633, +0.0000013631,0.0000013633,0.0000013635,0.0000013637,0.0000013638, +0.0000013638,0.0000013656,0.0000013704,0.0000013771,0.0000013830, +0.0000013869,0.0000013890,0.0000013900,0.0000013889,0.0000013906, +0.0000014014,0.0000014259,0.0000014631,0.0000015035,0.0000015201, +0.0000015187,0.0000015026,0.0000014912,0.0000014893,0.0000014874, +0.0000014816,0.0000014759,0.0000014749,0.0000014861,0.0000015087, +0.0000015062,0.0000015122,0.0000015433,0.0000015427,0.0000015343, +0.0000015281,0.0000015233,0.0000015347,0.0000015568,0.0000016448, +0.0000017875,0.0000018406,0.0000017642,0.0000017601,0.0000017794, +0.0000017538,0.0000017618,0.0000017741,0.0000017605,0.0000017489, +0.0000017472,0.0000017468,0.0000017537,0.0000017703,0.0000017907, +0.0000018082,0.0000018179,0.0000018173,0.0000018055,0.0000017853, +0.0000017656,0.0000017567,0.0000017602,0.0000017646,0.0000017620, +0.0000017546,0.0000017488,0.0000017475,0.0000017505,0.0000017577, +0.0000017678,0.0000017789,0.0000017888,0.0000017947,0.0000017961, +0.0000017959,0.0000018058,0.0000018254,0.0000018263,0.0000018005, +0.0000017781,0.0000017742,0.0000017724,0.0000017530,0.0000017197, +0.0000016965,0.0000016859,0.0000016756,0.0000016650,0.0000016583, +0.0000016554,0.0000016566,0.0000016552,0.0000016284,0.0000016024, +0.0000016261,0.0000016783,0.0000017019,0.0000017065,0.0000017248, +0.0000017532,0.0000017741,0.0000017849,0.0000017889,0.0000017889, +0.0000017888,0.0000017892,0.0000017868,0.0000017729,0.0000017556, +0.0000017452,0.0000017324,0.0000017096,0.0000016750,0.0000016355, +0.0000016039,0.0000015820,0.0000015750,0.0000015804,0.0000015993, +0.0000016180,0.0000016414,0.0000016534,0.0000016551,0.0000016656, +0.0000016766,0.0000016897,0.0000017069,0.0000017130,0.0000017112, +0.0000017070,0.0000017000,0.0000016967,0.0000016948,0.0000016865, +0.0000016596,0.0000016323,0.0000016246,0.0000016271,0.0000016255, +0.0000016261,0.0000016345,0.0000016523,0.0000017002,0.0000017028, +0.0000016552,0.0000016083,0.0000015931,0.0000015948,0.0000016131, +0.0000016562,0.0000016649,0.0000016674,0.0000016110,0.0000015951, +0.0000015761,0.0000014873,0.0000014802,0.0000014829,0.0000015071, +0.0000015308,0.0000015316,0.0000015307,0.0000015322,0.0000015347, +0.0000015363,0.0000015364,0.0000015337,0.0000015265,0.0000015154, +0.0000015064,0.0000015028,0.0000015045,0.0000015039,0.0000014935, +0.0000014877,0.0000014993,0.0000015208,0.0000015274,0.0000015148, +0.0000015046,0.0000015038,0.0000015013,0.0000014971,0.0000014943, +0.0000014902,0.0000014869,0.0000014947,0.0000015190,0.0000015362, +0.0000015365,0.0000015203,0.0000015180,0.0000015322,0.0000015396, +0.0000015646,0.0000015899,0.0000016086,0.0000016220,0.0000016316, +0.0000016370,0.0000016405,0.0000016441,0.0000016462,0.0000016469, +0.0000016469,0.0000016420,0.0000016267,0.0000016200,0.0000016386, +0.0000016411,0.0000016194,0.0000016155,0.0000016267,0.0000016252, +0.0000016084,0.0000015937,0.0000016070,0.0000016412,0.0000016461, +0.0000016367,0.0000016295,0.0000016419,0.0000016480,0.0000016385, +0.0000016472,0.0000016530,0.0000016298,0.0000016099,0.0000015985, +0.0000015963,0.0000016216,0.0000016793,0.0000017109,0.0000016863, +0.0000016657,0.0000016698,0.0000016671,0.0000016579,0.0000016605, +0.0000016611,0.0000016576,0.0000016560,0.0000016551,0.0000016539, +0.0000016625,0.0000016885,0.0000017004,0.0000016940,0.0000016891, +0.0000016961,0.0000017112,0.0000017233,0.0000017316,0.0000017353, +0.0000017339,0.0000017461,0.0000017776,0.0000017647,0.0000017639, +0.0000017930,0.0000017435,0.0000017341,0.0000017391,0.0000017479, +0.0000017507,0.0000017492,0.0000017469,0.0000017438,0.0000017400, +0.0000017363,0.0000017285,0.0000017149,0.0000017048,0.0000017060, +0.0000017083,0.0000017036,0.0000016927,0.0000016768,0.0000016746, +0.0000017007,0.0000017232,0.0000017182,0.0000016996,0.0000016838, +0.0000016766,0.0000016711,0.0000016608,0.0000016525,0.0000016508, +0.0000016544,0.0000016601,0.0000016620,0.0000016610,0.0000016580, +0.0000016543,0.0000016513,0.0000016494,0.0000016494,0.0000016518, +0.0000016580,0.0000016683,0.0000016802,0.0000016857,0.0000016782, +0.0000016639,0.0000016530,0.0000016497,0.0000016576,0.0000016656, +0.0000016668,0.0000016675,0.0000016775,0.0000016938,0.0000017081, +0.0000017173,0.0000017341,0.0000017420,0.0000017244,0.0000016931, +0.0000016728,0.0000016603,0.0000016406,0.0000016119,0.0000015867, +0.0000015657,0.0000015459,0.0000015361,0.0000015198,0.0000014821, +0.0000014494,0.0000014381,0.0000014384,0.0000014421,0.0000014443, +0.0000014435,0.0000014539,0.0000014740,0.0000014854,0.0000014892, +0.0000014910,0.0000014931,0.0000014967,0.0000014998,0.0000015011, +0.0000015026,0.0000015058,0.0000015091,0.0000015095,0.0000015066, +0.0000014999,0.0000014903,0.0000014860,0.0000014917,0.0000015054, +0.0000015182,0.0000015257,0.0000015282,0.0000015244,0.0000015169, +0.0000015101,0.0000015055,0.0000015002,0.0000014937,0.0000014888, +0.0000014852,0.0000014798,0.0000014730,0.0000014704,0.0000014733, +0.0000014821,0.0000014907,0.0000014938,0.0000014941,0.0000014946, +0.0000014974,0.0000015024,0.0000015062,0.0000015075,0.0000015083, +0.0000015104,0.0000015138,0.0000015168,0.0000015172,0.0000015135, +0.0000015079,0.0000015049,0.0000015049,0.0000015050,0.0000015026, +0.0000014982,0.0000014956,0.0000014950,0.0000014924,0.0000014840, +0.0000014730,0.0000014618,0.0000014530,0.0000014480,0.0000014470, +0.0000014487,0.0000014496,0.0000014442,0.0000014339,0.0000014219, +0.0000014143,0.0000014122,0.0000014138,0.0000014156,0.0000014138, +0.0000014100,0.0000014160,0.0000014585,0.0000015338,0.0000016054, +0.0000016411,0.0000016490,0.0000016558,0.0000016528,0.0000016038, +0.0000015549,0.0000015599,0.0000015880,0.0000015880,0.0000015635, +0.0000015494,0.0000015456,0.0000015440,0.0000015432,0.0000015469, +0.0000015569,0.0000015602,0.0000015389,0.0000015010,0.0000014849, +0.0000014998,0.0000015331,0.0000015519,0.0000015507,0.0000015505, +0.0000015628,0.0000015662,0.0000015466,0.0000015197,0.0000014820, +0.0000014460,0.0000014407,0.0000014308,0.0000013875,0.0000013556, +0.0000013557,0.0000013605,0.0000013491,0.0000013411,0.0000013413, +0.0000013424,0.0000013421,0.0000013398,0.0000013364,0.0000013328, +0.0000013300,0.0000013279,0.0000013247,0.0000013224,0.0000013231, +0.0000013292,0.0000013408,0.0000013562,0.0000013720,0.0000013842, +0.0000013902,0.0000013915,0.0000013907,0.0000013874,0.0000013933, +0.0000014198,0.0000014662,0.0000015125,0.0000015251,0.0000015105, +0.0000014914,0.0000014851,0.0000014838,0.0000014800,0.0000014757, +0.0000014777,0.0000014974,0.0000015103,0.0000015033,0.0000015273, +0.0000015451,0.0000015374,0.0000015300,0.0000015228,0.0000015279, +0.0000015420,0.0000015969,0.0000017352,0.0000018346,0.0000017920, +0.0000017621,0.0000017893,0.0000017656,0.0000017487,0.0000017647, +0.0000017670,0.0000017584,0.0000017564,0.0000017529,0.0000017492, +0.0000017506,0.0000017588,0.0000017697,0.0000017766,0.0000017768, +0.0000017693,0.0000017614,0.0000017591,0.0000017633,0.0000017644, +0.0000017605,0.0000017544,0.0000017506,0.0000017502,0.0000017523, +0.0000017569,0.0000017627,0.0000017701,0.0000017781,0.0000017861, +0.0000017918,0.0000017931,0.0000017927,0.0000018035,0.0000018250, +0.0000018279,0.0000018040,0.0000017821,0.0000017777,0.0000017776, +0.0000017673,0.0000017356,0.0000017038,0.0000016870,0.0000016758, +0.0000016642,0.0000016586,0.0000016587,0.0000016596,0.0000016571, +0.0000016291,0.0000016049,0.0000016312,0.0000016825,0.0000017041, +0.0000017069,0.0000017233,0.0000017522,0.0000017739,0.0000017839, +0.0000017859,0.0000017857,0.0000017862,0.0000017855,0.0000017769, +0.0000017594,0.0000017457,0.0000017379,0.0000017227,0.0000016963, +0.0000016589,0.0000016219,0.0000015952,0.0000015784,0.0000015758, +0.0000015891,0.0000016097,0.0000016350,0.0000016517,0.0000016563, +0.0000016685,0.0000016831,0.0000016981,0.0000017121,0.0000017130, +0.0000017117,0.0000017041,0.0000016911,0.0000016875,0.0000016918, +0.0000016947,0.0000016830,0.0000016504,0.0000016292,0.0000016296, +0.0000016308,0.0000016284,0.0000016338,0.0000016406,0.0000016861, +0.0000017079,0.0000016856,0.0000016431,0.0000016181,0.0000016199, +0.0000016366,0.0000016604,0.0000016659,0.0000016690,0.0000016165, +0.0000015959,0.0000015875,0.0000014977,0.0000014819,0.0000014812, +0.0000014897,0.0000015174,0.0000015294,0.0000015311,0.0000015318, +0.0000015326,0.0000015316,0.0000015279,0.0000015207,0.0000015110, +0.0000015025,0.0000014989,0.0000015026,0.0000015049,0.0000015001, +0.0000014981,0.0000015096,0.0000015267,0.0000015285,0.0000015150, +0.0000015025,0.0000015009,0.0000014990,0.0000014960,0.0000014931, +0.0000014881,0.0000014875,0.0000015030,0.0000015276,0.0000015416, +0.0000015402,0.0000015242,0.0000015224,0.0000015321,0.0000015423, +0.0000015699,0.0000015964,0.0000016158,0.0000016280,0.0000016336, +0.0000016358,0.0000016380,0.0000016410,0.0000016431,0.0000016436, +0.0000016440,0.0000016429,0.0000016327,0.0000016160,0.0000016227, +0.0000016403,0.0000016292,0.0000016127,0.0000016162,0.0000016218, +0.0000016118,0.0000015926,0.0000015985,0.0000016327,0.0000016453, +0.0000016395,0.0000016297,0.0000016388,0.0000016518,0.0000016435, +0.0000016418,0.0000016531,0.0000016382,0.0000016158,0.0000016017, +0.0000015950,0.0000016109,0.0000016665,0.0000017065,0.0000016899, +0.0000016688,0.0000016700,0.0000016668,0.0000016554,0.0000016573, +0.0000016551,0.0000016555,0.0000016615,0.0000016640,0.0000016604, +0.0000016581,0.0000016743,0.0000016984,0.0000017006,0.0000016924, +0.0000016930,0.0000017037,0.0000017163,0.0000017259,0.0000017307, +0.0000017335,0.0000017567,0.0000017783,0.0000017579,0.0000017679, +0.0000018001,0.0000017393,0.0000017368,0.0000017475,0.0000017615, +0.0000017658,0.0000017615,0.0000017557,0.0000017482,0.0000017397, +0.0000017312,0.0000017235,0.0000017137,0.0000017031,0.0000017046, +0.0000017096,0.0000017092,0.0000017005,0.0000016822,0.0000016721, +0.0000016809,0.0000017026,0.0000017088,0.0000016968,0.0000016845, +0.0000016797,0.0000016725,0.0000016603,0.0000016518,0.0000016508, +0.0000016547,0.0000016600,0.0000016615,0.0000016603,0.0000016569, +0.0000016544,0.0000016541,0.0000016557,0.0000016569,0.0000016600, +0.0000016689,0.0000016824,0.0000016913,0.0000016866,0.0000016706, +0.0000016600,0.0000016632,0.0000016702,0.0000016730,0.0000016704, +0.0000016706,0.0000016827,0.0000017002,0.0000017116,0.0000017200, +0.0000017369,0.0000017357,0.0000017084,0.0000016808,0.0000016658, +0.0000016548,0.0000016341,0.0000016066,0.0000015836,0.0000015624, +0.0000015436,0.0000015343,0.0000015136,0.0000014735,0.0000014434, +0.0000014353,0.0000014370,0.0000014415,0.0000014427,0.0000014413, +0.0000014527,0.0000014730,0.0000014833,0.0000014862,0.0000014887, +0.0000014923,0.0000014966,0.0000015002,0.0000015024,0.0000015040, +0.0000015075,0.0000015111,0.0000015114,0.0000015080,0.0000015014, +0.0000014930,0.0000014888,0.0000014930,0.0000015039,0.0000015149, +0.0000015222,0.0000015257,0.0000015242,0.0000015196,0.0000015144, +0.0000015102,0.0000015049,0.0000014977,0.0000014915,0.0000014888, +0.0000014881,0.0000014878,0.0000014893,0.0000014926,0.0000014945, +0.0000014943,0.0000014938,0.0000014940,0.0000014955,0.0000014990, +0.0000015025,0.0000015041,0.0000015054,0.0000015096,0.0000015173, +0.0000015252,0.0000015294,0.0000015289,0.0000015229,0.0000015129, +0.0000015060,0.0000015047,0.0000015048,0.0000015032,0.0000014995, +0.0000014962,0.0000014936,0.0000014878,0.0000014785,0.0000014688, +0.0000014595,0.0000014505,0.0000014452,0.0000014444,0.0000014467, +0.0000014496,0.0000014451,0.0000014344,0.0000014207,0.0000014079, +0.0000013999,0.0000013956,0.0000013969,0.0000013988,0.0000013999, +0.0000014177,0.0000014752,0.0000015580,0.0000016235,0.0000016478, +0.0000016542,0.0000016570,0.0000016243,0.0000015619,0.0000015546, +0.0000015835,0.0000015899,0.0000015698,0.0000015538,0.0000015486, +0.0000015461,0.0000015440,0.0000015422,0.0000015403,0.0000015344, +0.0000015155,0.0000014877,0.0000014752,0.0000014901,0.0000015252, +0.0000015503,0.0000015541,0.0000015525,0.0000015595,0.0000015659, +0.0000015563,0.0000015333,0.0000015050,0.0000014647,0.0000014403, +0.0000014401,0.0000014219,0.0000013774,0.0000013501,0.0000013511, +0.0000013581,0.0000013547,0.0000013463,0.0000013413,0.0000013374, +0.0000013345,0.0000013327,0.0000013314,0.0000013300,0.0000013280, +0.0000013252,0.0000013210,0.0000013159,0.0000013112,0.0000013080, +0.0000013089,0.0000013210,0.0000013431,0.0000013664,0.0000013808, +0.0000013861,0.0000013878,0.0000013859,0.0000013821,0.0000013914, +0.0000014338,0.0000014956,0.0000015219,0.0000015108,0.0000014875, +0.0000014815,0.0000014832,0.0000014811,0.0000014774,0.0000014861, +0.0000015083,0.0000015044,0.0000015101,0.0000015408,0.0000015411, +0.0000015323,0.0000015251,0.0000015221,0.0000015338,0.0000015655, +0.0000016806,0.0000018150,0.0000018242,0.0000017705,0.0000017881, +0.0000017879,0.0000017478,0.0000017486,0.0000017629,0.0000017626, +0.0000017598,0.0000017595,0.0000017551,0.0000017516,0.0000017523, +0.0000017559,0.0000017594,0.0000017608,0.0000017610,0.0000017632, +0.0000017650,0.0000017625,0.0000017578,0.0000017549,0.0000017539, +0.0000017546,0.0000017561,0.0000017573,0.0000017595,0.0000017608, +0.0000017629,0.0000017677,0.0000017755,0.0000017840,0.0000017892, +0.0000017904,0.0000017964,0.0000018171,0.0000018280,0.0000018117, +0.0000017887,0.0000017798,0.0000017794,0.0000017754,0.0000017496, +0.0000017126,0.0000016890,0.0000016753,0.0000016637,0.0000016599, +0.0000016618,0.0000016637,0.0000016590,0.0000016288,0.0000016095, +0.0000016387,0.0000016874,0.0000017058,0.0000017073,0.0000017226, +0.0000017506,0.0000017721,0.0000017804,0.0000017810,0.0000017811, +0.0000017810,0.0000017759,0.0000017621,0.0000017465,0.0000017382, +0.0000017295,0.0000017114,0.0000016818,0.0000016435,0.0000016112, +0.0000015884,0.0000015759,0.0000015790,0.0000015972,0.0000016238, +0.0000016477,0.0000016561,0.0000016673,0.0000016851,0.0000017010, +0.0000017120,0.0000017130,0.0000017118,0.0000017023,0.0000016819, +0.0000016748,0.0000016799,0.0000016918,0.0000016966,0.0000016762, +0.0000016433,0.0000016336,0.0000016356,0.0000016336,0.0000016340, +0.0000016372,0.0000016666,0.0000017050,0.0000017044,0.0000016779, +0.0000016540,0.0000016492,0.0000016547,0.0000016672,0.0000016693, +0.0000016706,0.0000016191,0.0000015977,0.0000015960,0.0000015083, +0.0000014845,0.0000014828,0.0000014801,0.0000014970,0.0000015151, +0.0000015234,0.0000015252,0.0000015242,0.0000015206,0.0000015146, +0.0000015062,0.0000014976,0.0000014947,0.0000015010,0.0000015069, +0.0000015063,0.0000015063,0.0000015145,0.0000015275,0.0000015297, +0.0000015155,0.0000015008,0.0000014988,0.0000014974,0.0000014953, +0.0000014931,0.0000014909,0.0000014926,0.0000015141,0.0000015367, +0.0000015454,0.0000015422,0.0000015270,0.0000015250,0.0000015329, +0.0000015474,0.0000015775,0.0000016044,0.0000016207,0.0000016284, +0.0000016310,0.0000016322,0.0000016349,0.0000016389,0.0000016413, +0.0000016415,0.0000016413,0.0000016415,0.0000016367,0.0000016199, +0.0000016110,0.0000016293,0.0000016352,0.0000016174,0.0000016114, +0.0000016167,0.0000016137,0.0000015953,0.0000015915,0.0000016231, +0.0000016459,0.0000016424,0.0000016306,0.0000016339,0.0000016509, +0.0000016492,0.0000016406,0.0000016522,0.0000016468,0.0000016220, +0.0000016031,0.0000015937,0.0000016035,0.0000016518,0.0000017017, +0.0000016946,0.0000016697,0.0000016689,0.0000016669,0.0000016540, +0.0000016540,0.0000016498,0.0000016544,0.0000016683,0.0000016778, +0.0000016766,0.0000016684,0.0000016670,0.0000016882,0.0000017033, +0.0000016999,0.0000016962,0.0000017021,0.0000017124,0.0000017213, +0.0000017272,0.0000017364,0.0000017657,0.0000017724,0.0000017552, +0.0000017735,0.0000018041,0.0000017418,0.0000017423,0.0000017592, +0.0000017786,0.0000017863,0.0000017837,0.0000017768,0.0000017651, +0.0000017475,0.0000017283,0.0000017160,0.0000017094,0.0000017020, +0.0000017039,0.0000017106,0.0000017110,0.0000017064,0.0000016918, +0.0000016743,0.0000016698,0.0000016827,0.0000016947,0.0000016940, +0.0000016865,0.0000016817,0.0000016741,0.0000016636,0.0000016563, +0.0000016546,0.0000016567,0.0000016594,0.0000016602,0.0000016599, +0.0000016593,0.0000016609,0.0000016634,0.0000016641,0.0000016639, +0.0000016689,0.0000016820,0.0000016933,0.0000016933,0.0000016804, +0.0000016697,0.0000016728,0.0000016787,0.0000016761,0.0000016705, +0.0000016709,0.0000016848,0.0000017026,0.0000017125,0.0000017218, +0.0000017371,0.0000017261,0.0000016946,0.0000016708,0.0000016589, +0.0000016479,0.0000016259,0.0000016002,0.0000015794,0.0000015582, +0.0000015419,0.0000015328,0.0000015060,0.0000014635,0.0000014370, +0.0000014327,0.0000014351,0.0000014396,0.0000014397,0.0000014378, +0.0000014500,0.0000014710,0.0000014815,0.0000014841,0.0000014874, +0.0000014925,0.0000014974,0.0000015008,0.0000015036,0.0000015060, +0.0000015087,0.0000015118,0.0000015128,0.0000015092,0.0000015027, +0.0000014959,0.0000014929,0.0000014957,0.0000015038,0.0000015127, +0.0000015195,0.0000015242,0.0000015251,0.0000015229,0.0000015187, +0.0000015143,0.0000015092,0.0000015030,0.0000014978,0.0000014965, +0.0000014980,0.0000014995,0.0000014990,0.0000014970,0.0000014953, +0.0000014949,0.0000014953,0.0000014961,0.0000014978,0.0000015000, +0.0000015015,0.0000015024,0.0000015059,0.0000015152,0.0000015264, +0.0000015331,0.0000015357,0.0000015357,0.0000015303,0.0000015190, +0.0000015086,0.0000015049,0.0000015048,0.0000015037,0.0000015002, +0.0000014961,0.0000014919,0.0000014847,0.0000014753,0.0000014672, +0.0000014600,0.0000014546,0.0000014536,0.0000014553,0.0000014593, +0.0000014639,0.0000014614,0.0000014522,0.0000014378,0.0000014204, +0.0000014006,0.0000013847,0.0000013790,0.0000013811,0.0000013897, +0.0000014263,0.0000015012,0.0000015873,0.0000016398,0.0000016539, +0.0000016588,0.0000016435,0.0000015805,0.0000015504,0.0000015746, +0.0000015927,0.0000015768,0.0000015544,0.0000015428,0.0000015357, +0.0000015319,0.0000015295,0.0000015241,0.0000015119,0.0000014925, +0.0000014725,0.0000014670,0.0000014820,0.0000015173,0.0000015470, +0.0000015553,0.0000015554,0.0000015589,0.0000015651,0.0000015597, +0.0000015411,0.0000015188,0.0000014879,0.0000014513,0.0000014367, +0.0000014378,0.0000014174,0.0000013749,0.0000013478,0.0000013436, +0.0000013473,0.0000013464,0.0000013420,0.0000013366,0.0000013314, +0.0000013270,0.0000013231,0.0000013197,0.0000013170,0.0000013154, +0.0000013141,0.0000013131,0.0000013113,0.0000013085,0.0000013051, +0.0000013024,0.0000013037,0.0000013170,0.0000013436,0.0000013672, +0.0000013768,0.0000013808,0.0000013829,0.0000013780,0.0000013752, +0.0000014126,0.0000014859,0.0000015202,0.0000015057,0.0000014820, +0.0000014811,0.0000014860,0.0000014823,0.0000014817,0.0000014995, +0.0000015082,0.0000015011,0.0000015280,0.0000015434,0.0000015354, +0.0000015272,0.0000015208,0.0000015289,0.0000015472,0.0000016234, +0.0000017667,0.0000018333,0.0000017686,0.0000017739,0.0000018061, +0.0000017627,0.0000017406,0.0000017525,0.0000017612,0.0000017584, +0.0000017604,0.0000017619,0.0000017594,0.0000017580,0.0000017589, +0.0000017623,0.0000017664,0.0000017678,0.0000017658,0.0000017603, +0.0000017556,0.0000017535,0.0000017524,0.0000017521,0.0000017531, +0.0000017540,0.0000017533,0.0000017514,0.0000017499,0.0000017500, +0.0000017525,0.0000017588,0.0000017685,0.0000017787,0.0000017842, +0.0000017867,0.0000018020,0.0000018228,0.0000018199,0.0000017979, +0.0000017836,0.0000017813,0.0000017798,0.0000017591,0.0000017209, +0.0000016912,0.0000016741,0.0000016631,0.0000016620,0.0000016684, +0.0000016722,0.0000016627,0.0000016286,0.0000016151,0.0000016467, +0.0000016920,0.0000017073,0.0000017083,0.0000017219,0.0000017475, +0.0000017674,0.0000017742,0.0000017743,0.0000017738,0.0000017710, +0.0000017613,0.0000017471,0.0000017368,0.0000017314,0.0000017197, +0.0000016987,0.0000016665,0.0000016302,0.0000016026,0.0000015819, +0.0000015744,0.0000015842,0.0000016086,0.0000016383,0.0000016539, +0.0000016634,0.0000016815,0.0000016987,0.0000017099,0.0000017111, +0.0000017106,0.0000017036,0.0000016813,0.0000016670,0.0000016680, +0.0000016792,0.0000016959,0.0000016964,0.0000016676,0.0000016412, +0.0000016390,0.0000016397,0.0000016367,0.0000016377,0.0000016483, +0.0000016921,0.0000017102,0.0000017013,0.0000016832,0.0000016713, +0.0000016671,0.0000016777,0.0000016739,0.0000016727,0.0000016186, +0.0000016000,0.0000016031,0.0000015174,0.0000014873,0.0000014871, +0.0000014789,0.0000014814,0.0000014979,0.0000015057,0.0000015097, +0.0000015097,0.0000015067,0.0000015003,0.0000014920,0.0000014898, +0.0000014993,0.0000015093,0.0000015102,0.0000015099,0.0000015137, +0.0000015237,0.0000015294,0.0000015171,0.0000015000,0.0000014970, +0.0000014968,0.0000014964,0.0000014944,0.0000014934,0.0000015036, +0.0000015266,0.0000015426,0.0000015447,0.0000015404,0.0000015282, +0.0000015267,0.0000015344,0.0000015554,0.0000015869,0.0000016116, +0.0000016230,0.0000016259,0.0000016264,0.0000016273,0.0000016313, +0.0000016369,0.0000016406,0.0000016406,0.0000016391,0.0000016389, +0.0000016375,0.0000016262,0.0000016080,0.0000016143,0.0000016311, +0.0000016239,0.0000016119,0.0000016134,0.0000016134,0.0000015991, +0.0000015885,0.0000016137,0.0000016430,0.0000016442,0.0000016349, +0.0000016312,0.0000016455,0.0000016513,0.0000016403,0.0000016484, +0.0000016535,0.0000016290,0.0000016056,0.0000015957,0.0000015971, +0.0000016366,0.0000016953,0.0000016998,0.0000016731,0.0000016681, +0.0000016671,0.0000016534,0.0000016509,0.0000016464,0.0000016513, +0.0000016688,0.0000016852,0.0000016888,0.0000016840,0.0000016741, +0.0000016782,0.0000016987,0.0000017062,0.0000017027,0.0000017045, +0.0000017118,0.0000017187,0.0000017248,0.0000017413,0.0000017679, +0.0000017604,0.0000017555,0.0000017813,0.0000018080,0.0000017501, +0.0000017520,0.0000017717,0.0000017949,0.0000018064,0.0000018062, +0.0000018017,0.0000017908,0.0000017665,0.0000017335,0.0000017110, +0.0000017045,0.0000017015,0.0000017042,0.0000017112,0.0000017106, +0.0000017092,0.0000017003,0.0000016822,0.0000016692,0.0000016704, +0.0000016807,0.0000016858,0.0000016844,0.0000016798,0.0000016745, +0.0000016683,0.0000016634,0.0000016609,0.0000016603,0.0000016607, +0.0000016614,0.0000016628,0.0000016657,0.0000016690,0.0000016697, +0.0000016679,0.0000016693,0.0000016793,0.0000016917,0.0000016951, +0.0000016892,0.0000016812,0.0000016814,0.0000016831,0.0000016789, +0.0000016724,0.0000016714,0.0000016848,0.0000017030,0.0000017129, +0.0000017232,0.0000017352,0.0000017186,0.0000016877,0.0000016662, +0.0000016544,0.0000016410,0.0000016179,0.0000015944,0.0000015743, +0.0000015530,0.0000015403,0.0000015306,0.0000014979,0.0000014546, +0.0000014321,0.0000014302,0.0000014336,0.0000014371,0.0000014354, +0.0000014336,0.0000014468,0.0000014692,0.0000014805,0.0000014832, +0.0000014871,0.0000014935,0.0000014983,0.0000015014,0.0000015054, +0.0000015091,0.0000015121,0.0000015147,0.0000015149,0.0000015108, +0.0000015049,0.0000014995,0.0000014974,0.0000015000,0.0000015077, +0.0000015154,0.0000015201,0.0000015235,0.0000015258,0.0000015259, +0.0000015224,0.0000015178,0.0000015136,0.0000015092,0.0000015048, +0.0000015023,0.0000015018,0.0000015012,0.0000014993,0.0000014970, +0.0000014959,0.0000014961,0.0000014971,0.0000014984,0.0000014995, +0.0000014999,0.0000014999,0.0000015010,0.0000015081,0.0000015214, +0.0000015318,0.0000015342,0.0000015347,0.0000015348,0.0000015323, +0.0000015237,0.0000015117,0.0000015051,0.0000015044,0.0000015034, +0.0000014998,0.0000014956,0.0000014919,0.0000014852,0.0000014763, +0.0000014718,0.0000014696,0.0000014719,0.0000014759,0.0000014791, +0.0000014854,0.0000014917,0.0000014913,0.0000014839,0.0000014696, +0.0000014473,0.0000014136,0.0000013826,0.0000013693,0.0000013695, +0.0000013890,0.0000014482,0.0000015387,0.0000016177,0.0000016512, +0.0000016595,0.0000016560,0.0000016061,0.0000015541,0.0000015634, +0.0000015899,0.0000015824,0.0000015506,0.0000015234,0.0000015036, +0.0000014953,0.0000014951,0.0000014940,0.0000014863,0.0000014729, +0.0000014616,0.0000014622,0.0000014779,0.0000015115,0.0000015423, +0.0000015553,0.0000015567,0.0000015591,0.0000015629,0.0000015589, +0.0000015436,0.0000015247,0.0000015037,0.0000014729,0.0000014411, +0.0000014320,0.0000014367,0.0000014209,0.0000013866,0.0000013605, +0.0000013486,0.0000013460,0.0000013445,0.0000013419,0.0000013381, +0.0000013339,0.0000013298,0.0000013248,0.0000013189,0.0000013128, +0.0000013078,0.0000013050,0.0000013045,0.0000013044,0.0000013037, +0.0000013027,0.0000013009,0.0000012996,0.0000013043,0.0000013265, +0.0000013547,0.0000013679,0.0000013725,0.0000013767,0.0000013701, +0.0000013634,0.0000014068,0.0000014919,0.0000015234,0.0000014966, +0.0000014796,0.0000014860,0.0000014887,0.0000014830,0.0000014915, +0.0000015082,0.0000015002,0.0000015122,0.0000015430,0.0000015392, +0.0000015291,0.0000015224,0.0000015231,0.0000015351,0.0000015796, +0.0000017170,0.0000018213,0.0000017904,0.0000017665,0.0000018076, +0.0000017870,0.0000017417,0.0000017392,0.0000017538,0.0000017556, +0.0000017555,0.0000017617,0.0000017654,0.0000017671,0.0000017684, +0.0000017703,0.0000017699,0.0000017654,0.0000017585,0.0000017534, +0.0000017496,0.0000017462,0.0000017438,0.0000017434,0.0000017443, +0.0000017442,0.0000017426,0.0000017401,0.0000017377,0.0000017356, +0.0000017361,0.0000017413,0.0000017507,0.0000017617,0.0000017720, +0.0000017772,0.0000017851,0.0000018078,0.0000018205,0.0000018097, +0.0000017904,0.0000017834,0.0000017830,0.0000017647,0.0000017247, +0.0000016909,0.0000016720,0.0000016632,0.0000016676,0.0000016802, +0.0000016834,0.0000016655,0.0000016276,0.0000016170,0.0000016529, +0.0000016961,0.0000017092,0.0000017102,0.0000017208,0.0000017419, +0.0000017592,0.0000017657,0.0000017657,0.0000017642,0.0000017575, +0.0000017460,0.0000017351,0.0000017305,0.0000017240,0.0000017086, +0.0000016859,0.0000016521,0.0000016193,0.0000015945,0.0000015765, +0.0000015757,0.0000015932,0.0000016231,0.0000016477,0.0000016581, +0.0000016730,0.0000016917,0.0000017041,0.0000017065,0.0000017064, +0.0000017053,0.0000016875,0.0000016681,0.0000016651,0.0000016680, +0.0000016841,0.0000017012,0.0000016918,0.0000016573,0.0000016424, +0.0000016445,0.0000016421,0.0000016403,0.0000016408,0.0000016736, +0.0000017073,0.0000017121,0.0000017026,0.0000016900,0.0000016813, +0.0000016871,0.0000016774,0.0000016732,0.0000016156,0.0000016021, +0.0000016089,0.0000015249,0.0000014896,0.0000014906,0.0000014830, +0.0000014762,0.0000014848,0.0000014938,0.0000014955,0.0000014966, +0.0000014927,0.0000014852,0.0000014843,0.0000014967,0.0000015105, +0.0000015124,0.0000015099,0.0000015095,0.0000015162,0.0000015258, +0.0000015205,0.0000015026,0.0000014963,0.0000014975,0.0000014997, +0.0000015001,0.0000015016,0.0000015157,0.0000015369,0.0000015458, +0.0000015429,0.0000015369,0.0000015286,0.0000015277,0.0000015375, +0.0000015654,0.0000015973,0.0000016181,0.0000016253,0.0000016263, +0.0000016243,0.0000016245,0.0000016284,0.0000016346,0.0000016392, +0.0000016398,0.0000016376,0.0000016363,0.0000016360,0.0000016307, +0.0000016106,0.0000016047,0.0000016226,0.0000016259,0.0000016141, +0.0000016119,0.0000016129,0.0000016016,0.0000015887,0.0000016064, +0.0000016385,0.0000016439,0.0000016381,0.0000016298,0.0000016398, +0.0000016473,0.0000016399,0.0000016434,0.0000016527,0.0000016368, +0.0000016105,0.0000015972,0.0000015952,0.0000016232,0.0000016869, +0.0000017037,0.0000016767,0.0000016683,0.0000016679,0.0000016538, +0.0000016488,0.0000016455,0.0000016472,0.0000016619,0.0000016835, +0.0000016941,0.0000016923,0.0000016856,0.0000016784,0.0000016889, +0.0000017061,0.0000017088,0.0000017085,0.0000017116,0.0000017164, +0.0000017244,0.0000017463,0.0000017643,0.0000017494,0.0000017556, +0.0000017898,0.0000018127,0.0000017627,0.0000017638,0.0000017806, +0.0000018061,0.0000018182,0.0000018183,0.0000018176,0.0000018117, +0.0000017877,0.0000017446,0.0000017098,0.0000017007,0.0000017008, +0.0000017047,0.0000017115,0.0000017096,0.0000017085,0.0000017046, +0.0000016928,0.0000016770,0.0000016674,0.0000016700,0.0000016770, +0.0000016797,0.0000016783,0.0000016764,0.0000016736,0.0000016704, +0.0000016675,0.0000016656,0.0000016656,0.0000016671,0.0000016691, +0.0000016716,0.0000016725,0.0000016705,0.0000016699,0.0000016754, +0.0000016850,0.0000016916,0.0000016916,0.0000016886,0.0000016880, +0.0000016865,0.0000016814,0.0000016750,0.0000016733,0.0000016837, +0.0000017021,0.0000017131,0.0000017246,0.0000017338,0.0000017156, +0.0000016847,0.0000016638,0.0000016525,0.0000016365,0.0000016126, +0.0000015906,0.0000015698,0.0000015489,0.0000015393,0.0000015269, +0.0000014887,0.0000014469,0.0000014295,0.0000014288,0.0000014325, +0.0000014346,0.0000014309,0.0000014295,0.0000014448,0.0000014688, +0.0000014810,0.0000014836,0.0000014881,0.0000014952,0.0000014998, +0.0000015029,0.0000015076,0.0000015120,0.0000015150,0.0000015173, +0.0000015176,0.0000015144,0.0000015090,0.0000015039,0.0000015016, +0.0000015039,0.0000015110,0.0000015177,0.0000015209,0.0000015231, +0.0000015257,0.0000015271,0.0000015252,0.0000015209,0.0000015177, +0.0000015148,0.0000015105,0.0000015060,0.0000015033,0.0000015015, +0.0000014994,0.0000014975,0.0000014970,0.0000014973,0.0000014984, +0.0000014999,0.0000015001,0.0000014987,0.0000014976,0.0000014995, +0.0000015105,0.0000015251,0.0000015312,0.0000015307,0.0000015287, +0.0000015294,0.0000015302,0.0000015243,0.0000015131,0.0000015048, +0.0000015032,0.0000015023,0.0000014987,0.0000014956,0.0000014944, +0.0000014909,0.0000014849,0.0000014847,0.0000014883,0.0000014943, +0.0000014990,0.0000015027,0.0000015111,0.0000015196,0.0000015223, +0.0000015167,0.0000015027,0.0000014756,0.0000014313,0.0000013869, +0.0000013667,0.0000013663,0.0000014046,0.0000014887,0.0000015844, +0.0000016412,0.0000016583,0.0000016609,0.0000016312,0.0000015663, +0.0000015545,0.0000015851,0.0000015862,0.0000015482,0.0000015027, +0.0000014702,0.0000014560,0.0000014565,0.0000014607,0.0000014625, +0.0000014599,0.0000014600,0.0000014624,0.0000014796,0.0000015101, +0.0000015381,0.0000015528,0.0000015573,0.0000015595,0.0000015612, +0.0000015567,0.0000015423,0.0000015249,0.0000015089,0.0000014898, +0.0000014632,0.0000014362,0.0000014278,0.0000014343,0.0000014309, +0.0000014116,0.0000013940,0.0000013844,0.0000013817,0.0000013815, +0.0000013815,0.0000013807,0.0000013791,0.0000013754,0.0000013685, +0.0000013574,0.0000013433,0.0000013289,0.0000013163,0.0000013078, +0.0000013039,0.0000013029,0.0000013023,0.0000013003,0.0000012979, +0.0000013003,0.0000013198,0.0000013477,0.0000013604,0.0000013652, +0.0000013711,0.0000013598,0.0000013580,0.0000014263,0.0000015147, +0.0000015177,0.0000014859,0.0000014827,0.0000014920,0.0000014886, +0.0000014890,0.0000015044,0.0000015035,0.0000015022,0.0000015359, +0.0000015431,0.0000015322,0.0000015240,0.0000015199,0.0000015309, +0.0000015547,0.0000016559,0.0000017924,0.0000018196,0.0000017631, +0.0000017925,0.0000018159,0.0000017604,0.0000017329,0.0000017425, +0.0000017521,0.0000017517,0.0000017570,0.0000017651,0.0000017699, +0.0000017707,0.0000017687,0.0000017637,0.0000017578,0.0000017517, +0.0000017457,0.0000017418,0.0000017402,0.0000017402,0.0000017412, +0.0000017425,0.0000017431,0.0000017428,0.0000017411,0.0000017362, +0.0000017275,0.0000017206,0.0000017224,0.0000017324,0.0000017441, +0.0000017550,0.0000017658,0.0000017734,0.0000017891,0.0000018133, +0.0000018168,0.0000017991,0.0000017865,0.0000017845,0.0000017655, +0.0000017236,0.0000016883,0.0000016691,0.0000016644,0.0000016772, +0.0000016947,0.0000016937,0.0000016642,0.0000016249,0.0000016199, +0.0000016585,0.0000016997,0.0000017111,0.0000017120,0.0000017191, +0.0000017344,0.0000017484,0.0000017550,0.0000017556,0.0000017523, +0.0000017431,0.0000017330,0.0000017279,0.0000017246,0.0000017137, +0.0000016972,0.0000016734,0.0000016394,0.0000016098,0.0000015866, +0.0000015754,0.0000015821,0.0000016052,0.0000016347,0.0000016517, +0.0000016624,0.0000016798,0.0000016953,0.0000016993,0.0000016987, +0.0000017026,0.0000016961,0.0000016756,0.0000016668,0.0000016658, +0.0000016708,0.0000016924,0.0000017027,0.0000016801,0.0000016498, +0.0000016474,0.0000016484,0.0000016439,0.0000016414,0.0000016562, +0.0000016973,0.0000017134,0.0000017116,0.0000017038,0.0000016949, +0.0000016917,0.0000016794,0.0000016722,0.0000016119,0.0000016039, +0.0000016133,0.0000015305,0.0000014910,0.0000014920,0.0000014887, +0.0000014782,0.0000014768,0.0000014861,0.0000014875,0.0000014832, +0.0000014782,0.0000014777,0.0000014903,0.0000015076,0.0000015126, +0.0000015094,0.0000015032,0.0000015052,0.0000015184,0.0000015226, +0.0000015075,0.0000014967,0.0000014995,0.0000015058,0.0000015085, +0.0000015128,0.0000015273,0.0000015426,0.0000015438,0.0000015385, +0.0000015330,0.0000015287,0.0000015293,0.0000015434,0.0000015763, +0.0000016073,0.0000016238,0.0000016289,0.0000016293,0.0000016259, +0.0000016243,0.0000016274,0.0000016331,0.0000016374,0.0000016384, +0.0000016363,0.0000016345,0.0000016343,0.0000016326,0.0000016160, +0.0000015995,0.0000016118,0.0000016235,0.0000016157,0.0000016109, +0.0000016121,0.0000016027,0.0000015889,0.0000016015,0.0000016334, +0.0000016437,0.0000016415,0.0000016307,0.0000016351,0.0000016405, +0.0000016345,0.0000016373,0.0000016528,0.0000016445,0.0000016168, +0.0000015965,0.0000015898,0.0000016117,0.0000016748,0.0000017027, +0.0000016812,0.0000016663,0.0000016677,0.0000016553,0.0000016472, +0.0000016469,0.0000016472,0.0000016539,0.0000016725,0.0000016923, +0.0000016941,0.0000016892,0.0000016858,0.0000016848,0.0000016989, +0.0000017105,0.0000017129,0.0000017135,0.0000017169,0.0000017275, +0.0000017475,0.0000017531,0.0000017425,0.0000017545,0.0000017968, +0.0000018174,0.0000017739,0.0000017728,0.0000017845,0.0000018118, +0.0000018227,0.0000018249,0.0000018277,0.0000018235,0.0000018021, +0.0000017553,0.0000017109,0.0000016993,0.0000016999,0.0000017047, +0.0000017109,0.0000017090,0.0000017078,0.0000017057,0.0000017002, +0.0000016882,0.0000016739,0.0000016674,0.0000016706,0.0000016762, +0.0000016791,0.0000016803,0.0000016796,0.0000016774,0.0000016744, +0.0000016718,0.0000016712,0.0000016720,0.0000016728,0.0000016730, +0.0000016724,0.0000016711,0.0000016729,0.0000016787,0.0000016837, +0.0000016869,0.0000016899,0.0000016911,0.0000016890,0.0000016847, +0.0000016788,0.0000016757,0.0000016823,0.0000017004,0.0000017135, +0.0000017264,0.0000017344,0.0000017166,0.0000016850,0.0000016630, +0.0000016515,0.0000016333,0.0000016092,0.0000015876,0.0000015652, +0.0000015453,0.0000015386,0.0000015226,0.0000014796,0.0000014406, +0.0000014282,0.0000014286,0.0000014314,0.0000014315,0.0000014268, +0.0000014267,0.0000014444,0.0000014699,0.0000014824,0.0000014849, +0.0000014900,0.0000014978,0.0000015027,0.0000015062,0.0000015107, +0.0000015149,0.0000015172,0.0000015188,0.0000015191,0.0000015171, +0.0000015130,0.0000015088,0.0000015072,0.0000015095,0.0000015166, +0.0000015227,0.0000015247,0.0000015252,0.0000015267,0.0000015287, +0.0000015284,0.0000015251,0.0000015215,0.0000015194,0.0000015163, +0.0000015116,0.0000015077,0.0000015053,0.0000015034,0.0000015013, +0.0000014996,0.0000014990,0.0000014995,0.0000015004,0.0000014998, +0.0000014968,0.0000014950,0.0000014997,0.0000015142,0.0000015272, +0.0000015290,0.0000015235,0.0000015206,0.0000015226,0.0000015255, +0.0000015232,0.0000015132,0.0000015043,0.0000015022,0.0000015013, +0.0000014979,0.0000014961,0.0000014979,0.0000014991,0.0000014977, +0.0000014992,0.0000015040,0.0000015102,0.0000015165,0.0000015243, +0.0000015353,0.0000015468,0.0000015529,0.0000015491,0.0000015330, +0.0000014977,0.0000014430,0.0000013886,0.0000013654,0.0000013748, +0.0000014425,0.0000015457,0.0000016243,0.0000016547,0.0000016608, +0.0000016473,0.0000015880,0.0000015523,0.0000015734,0.0000015894, +0.0000015536,0.0000014920,0.0000014499,0.0000014341,0.0000014362, +0.0000014451,0.0000014547,0.0000014595,0.0000014663,0.0000014757, +0.0000014912,0.0000015139,0.0000015355,0.0000015488,0.0000015560, +0.0000015596,0.0000015599,0.0000015530,0.0000015376,0.0000015209, +0.0000015069,0.0000014940,0.0000014799,0.0000014598,0.0000014343, +0.0000014228,0.0000014285,0.0000014362,0.0000014324,0.0000014272, +0.0000014219,0.0000014184,0.0000014158,0.0000014133,0.0000014103, +0.0000014070,0.0000014030,0.0000013975,0.0000013893,0.0000013773, +0.0000013615,0.0000013416,0.0000013212,0.0000013083,0.0000013052, +0.0000013044,0.0000013014,0.0000012985,0.0000013021,0.0000013229, +0.0000013463,0.0000013544,0.0000013612,0.0000013610,0.0000013480, +0.0000013751,0.0000014785,0.0000015254,0.0000014997,0.0000014813, +0.0000014911,0.0000014941,0.0000014905,0.0000015011,0.0000015067, +0.0000014988,0.0000015216,0.0000015455,0.0000015363,0.0000015262, +0.0000015193,0.0000015267,0.0000015382,0.0000015992,0.0000017428, +0.0000018285,0.0000017736,0.0000017674,0.0000018209,0.0000017940, +0.0000017402,0.0000017330,0.0000017464,0.0000017514,0.0000017528, +0.0000017598,0.0000017652,0.0000017650,0.0000017619,0.0000017577, +0.0000017514,0.0000017446,0.0000017411,0.0000017399,0.0000017383, +0.0000017376,0.0000017386,0.0000017417,0.0000017457,0.0000017485, +0.0000017493,0.0000017449,0.0000017337,0.0000017158,0.0000017043, +0.0000017103,0.0000017284,0.0000017411,0.0000017521,0.0000017634, +0.0000017759,0.0000018010,0.0000018174,0.0000018060,0.0000017902, +0.0000017856,0.0000017634,0.0000017187,0.0000016837,0.0000016663, +0.0000016663,0.0000016881,0.0000017039,0.0000016965,0.0000016606, +0.0000016234,0.0000016205,0.0000016625,0.0000017016,0.0000017119, +0.0000017130,0.0000017170,0.0000017259,0.0000017360,0.0000017430, +0.0000017440,0.0000017391,0.0000017304,0.0000017250,0.0000017239, +0.0000017171,0.0000017032,0.0000016879,0.0000016612,0.0000016277, +0.0000016007,0.0000015817,0.0000015786,0.0000015899,0.0000016160, +0.0000016415,0.0000016538,0.0000016661,0.0000016835,0.0000016913, +0.0000016904,0.0000016953,0.0000017000,0.0000016872,0.0000016728, +0.0000016697,0.0000016665,0.0000016768,0.0000016996,0.0000016987, +0.0000016674,0.0000016511,0.0000016527,0.0000016489,0.0000016444, +0.0000016474,0.0000016853,0.0000017112,0.0000017131,0.0000017093, +0.0000017018,0.0000016920,0.0000016804,0.0000016660,0.0000016093, +0.0000016062,0.0000016163,0.0000015340,0.0000014917,0.0000014921, +0.0000014918,0.0000014841,0.0000014757,0.0000014782,0.0000014824, +0.0000014759,0.0000014711,0.0000014793,0.0000014985,0.0000015109, +0.0000015096,0.0000014994,0.0000014930,0.0000015032,0.0000015199, +0.0000015154,0.0000014994,0.0000015005,0.0000015124,0.0000015184, +0.0000015234,0.0000015352,0.0000015439,0.0000015409,0.0000015329, +0.0000015295,0.0000015275,0.0000015308,0.0000015514,0.0000015878, +0.0000016157,0.0000016275,0.0000016307,0.0000016309,0.0000016272, +0.0000016250,0.0000016284,0.0000016331,0.0000016360,0.0000016372, +0.0000016356,0.0000016338,0.0000016337,0.0000016330,0.0000016195, +0.0000015994,0.0000016033,0.0000016184,0.0000016164,0.0000016103, +0.0000016106,0.0000016039,0.0000015886,0.0000015969,0.0000016281, +0.0000016411,0.0000016443,0.0000016330,0.0000016324,0.0000016345, +0.0000016269,0.0000016278,0.0000016485,0.0000016516,0.0000016240, +0.0000015978,0.0000015891,0.0000016022,0.0000016587,0.0000017006, +0.0000016864,0.0000016676,0.0000016684,0.0000016578,0.0000016465, +0.0000016484,0.0000016529,0.0000016553,0.0000016610,0.0000016800, +0.0000016935,0.0000016884,0.0000016874,0.0000016890,0.0000016928, +0.0000017062,0.0000017140,0.0000017166,0.0000017200,0.0000017299, +0.0000017431,0.0000017393,0.0000017388,0.0000017544,0.0000018010, +0.0000018222,0.0000017826,0.0000017763,0.0000017879,0.0000018150, +0.0000018240,0.0000018315,0.0000018365,0.0000018303,0.0000018080, +0.0000017598,0.0000017100,0.0000016967,0.0000016984,0.0000017040, +0.0000017087,0.0000017089,0.0000017085,0.0000017054,0.0000017020, +0.0000016957,0.0000016860,0.0000016745,0.0000016712,0.0000016749, +0.0000016794,0.0000016825,0.0000016837,0.0000016824,0.0000016795, +0.0000016757,0.0000016733,0.0000016725,0.0000016723,0.0000016725, +0.0000016723,0.0000016725,0.0000016745,0.0000016773,0.0000016807, +0.0000016870,0.0000016913,0.0000016910,0.0000016872,0.0000016823, +0.0000016778,0.0000016816,0.0000016982,0.0000017132,0.0000017281, +0.0000017350,0.0000017201,0.0000016880,0.0000016647,0.0000016511, +0.0000016299,0.0000016055,0.0000015844,0.0000015623,0.0000015445, +0.0000015387,0.0000015181,0.0000014726,0.0000014375,0.0000014280, +0.0000014284,0.0000014300,0.0000014287,0.0000014234,0.0000014245, +0.0000014457,0.0000014715,0.0000014837,0.0000014865,0.0000014926, +0.0000015011,0.0000015065,0.0000015106,0.0000015151,0.0000015179, +0.0000015193,0.0000015206,0.0000015215,0.0000015206,0.0000015181, +0.0000015152,0.0000015137,0.0000015155,0.0000015215,0.0000015269, +0.0000015287,0.0000015288,0.0000015292,0.0000015307,0.0000015315, +0.0000015294,0.0000015250,0.0000015216,0.0000015188,0.0000015152, +0.0000015114,0.0000015089,0.0000015071,0.0000015047,0.0000015018, +0.0000014999,0.0000014996,0.0000014998,0.0000014982,0.0000014944, +0.0000014930,0.0000015012,0.0000015167,0.0000015261,0.0000015241, +0.0000015173,0.0000015150,0.0000015182,0.0000015219,0.0000015206, +0.0000015117,0.0000015029,0.0000015003,0.0000014997,0.0000014973, +0.0000014972,0.0000015014,0.0000015063,0.0000015079,0.0000015078, +0.0000015119,0.0000015208,0.0000015317,0.0000015460,0.0000015639, +0.0000015822,0.0000015897,0.0000015850,0.0000015617,0.0000015117, +0.0000014430,0.0000013849,0.0000013705,0.0000014072,0.0000015062, +0.0000016019,0.0000016493,0.0000016610,0.0000016556,0.0000016087, +0.0000015564,0.0000015629,0.0000015864,0.0000015642,0.0000014953, +0.0000014433,0.0000014290,0.0000014313,0.0000014460,0.0000014610, +0.0000014750,0.0000014879,0.0000014989,0.0000015095,0.0000015220, +0.0000015346,0.0000015447,0.0000015532,0.0000015590,0.0000015588, +0.0000015477,0.0000015288,0.0000015117,0.0000015000,0.0000014909, +0.0000014824,0.0000014748,0.0000014621,0.0000014369,0.0000014140, +0.0000014126,0.0000014251,0.0000014342,0.0000014369,0.0000014367, +0.0000014351,0.0000014337,0.0000014312,0.0000014278,0.0000014244, +0.0000014168,0.0000014082,0.0000013990,0.0000013892,0.0000013782, +0.0000013614,0.0000013364,0.0000013146,0.0000013077,0.0000013069, +0.0000013036,0.0000013012,0.0000013099,0.0000013333,0.0000013484, +0.0000013513,0.0000013547,0.0000013451,0.0000013586,0.0000014510, +0.0000015247,0.0000015112,0.0000014831,0.0000014881,0.0000014966, +0.0000014936,0.0000014995,0.0000015079,0.0000014988,0.0000015100, +0.0000015455,0.0000015404,0.0000015287,0.0000015212,0.0000015227, +0.0000015325,0.0000015621,0.0000016824,0.0000018110,0.0000018105, +0.0000017475,0.0000017911,0.0000018213,0.0000017662,0.0000017311, +0.0000017387,0.0000017499,0.0000017503,0.0000017556,0.0000017604, +0.0000017600,0.0000017558,0.0000017507,0.0000017468,0.0000017423, +0.0000017337,0.0000017224,0.0000017139,0.0000017112,0.0000017128, +0.0000017204,0.0000017334,0.0000017456,0.0000017503,0.0000017488, +0.0000017432,0.0000017238,0.0000016978,0.0000016883,0.0000017069, +0.0000017307,0.0000017430,0.0000017539,0.0000017665,0.0000017899, +0.0000018143,0.0000018108,0.0000017942,0.0000017862,0.0000017581, +0.0000017107,0.0000016783,0.0000016656,0.0000016723,0.0000016956, +0.0000017068,0.0000016942,0.0000016555,0.0000016226,0.0000016229, +0.0000016644,0.0000017014,0.0000017120,0.0000017128,0.0000017140, +0.0000017178,0.0000017249,0.0000017318,0.0000017325,0.0000017278, +0.0000017226,0.0000017213,0.0000017184,0.0000017076,0.0000016948, +0.0000016794,0.0000016486,0.0000016171,0.0000015938,0.0000015808, +0.0000015813,0.0000015970,0.0000016244,0.0000016452,0.0000016548, +0.0000016691,0.0000016828,0.0000016852,0.0000016878,0.0000016970, +0.0000016963,0.0000016811,0.0000016741,0.0000016700,0.0000016679, +0.0000016865,0.0000017037,0.0000016907,0.0000016620,0.0000016547, +0.0000016537,0.0000016498,0.0000016486,0.0000016754,0.0000017088, +0.0000017136,0.0000017102,0.0000017025,0.0000016907,0.0000016812, +0.0000016522,0.0000016078,0.0000016092,0.0000016172,0.0000015357, +0.0000014919,0.0000014915,0.0000014917,0.0000014891,0.0000014800, +0.0000014747,0.0000014776,0.0000014755,0.0000014704,0.0000014800, +0.0000015000,0.0000015085,0.0000015012,0.0000014863,0.0000014843, +0.0000015044,0.0000015191,0.0000015083,0.0000015014,0.0000015142, +0.0000015260,0.0000015316,0.0000015396,0.0000015424,0.0000015359, +0.0000015283,0.0000015271,0.0000015272,0.0000015331,0.0000015600, +0.0000015980,0.0000016194,0.0000016248,0.0000016296,0.0000016310, +0.0000016271,0.0000016259,0.0000016293,0.0000016327,0.0000016346, +0.0000016347,0.0000016344,0.0000016338,0.0000016335,0.0000016317, +0.0000016190,0.0000015972,0.0000015980,0.0000016141,0.0000016159, +0.0000016100,0.0000016091,0.0000016043,0.0000015888,0.0000015931, +0.0000016226,0.0000016378,0.0000016455,0.0000016366,0.0000016318, +0.0000016321,0.0000016204,0.0000016162,0.0000016400,0.0000016523, +0.0000016334,0.0000016015,0.0000015882,0.0000015938,0.0000016404, +0.0000016939,0.0000016918,0.0000016698,0.0000016679,0.0000016609, +0.0000016455,0.0000016458,0.0000016562,0.0000016630,0.0000016638, +0.0000016669,0.0000016835,0.0000016894,0.0000016848,0.0000016900, +0.0000016934,0.0000017005,0.0000017109,0.0000017163,0.0000017203, +0.0000017273,0.0000017329,0.0000017272,0.0000017374,0.0000017557, +0.0000018023,0.0000018280,0.0000017970,0.0000017853,0.0000017982, +0.0000018177,0.0000018253,0.0000018370,0.0000018427,0.0000018330, +0.0000018073,0.0000017572,0.0000017053,0.0000016936,0.0000016963, +0.0000017024,0.0000017054,0.0000017082,0.0000017097,0.0000017055, +0.0000017016,0.0000016971,0.0000016926,0.0000016864,0.0000016810, +0.0000016801,0.0000016817,0.0000016840,0.0000016857,0.0000016850, +0.0000016821,0.0000016775,0.0000016739,0.0000016727,0.0000016723, +0.0000016727,0.0000016727,0.0000016726,0.0000016731,0.0000016757, +0.0000016827,0.0000016891,0.0000016908,0.0000016880,0.0000016837, +0.0000016787,0.0000016809,0.0000016963,0.0000017124,0.0000017293, +0.0000017357,0.0000017218,0.0000016904,0.0000016668,0.0000016509, +0.0000016273,0.0000016030,0.0000015825,0.0000015610,0.0000015452, +0.0000015394,0.0000015153,0.0000014695,0.0000014380,0.0000014291, +0.0000014287,0.0000014288,0.0000014261,0.0000014212,0.0000014245, +0.0000014473,0.0000014727,0.0000014843,0.0000014878,0.0000014949, +0.0000015038,0.0000015094,0.0000015141,0.0000015188,0.0000015209, +0.0000015212,0.0000015228,0.0000015251,0.0000015255,0.0000015242, +0.0000015227,0.0000015221,0.0000015233,0.0000015273,0.0000015310, +0.0000015326,0.0000015332,0.0000015332,0.0000015333,0.0000015342, +0.0000015330,0.0000015287,0.0000015234,0.0000015191,0.0000015157, +0.0000015125,0.0000015099,0.0000015080,0.0000015056,0.0000015025, +0.0000015002,0.0000014991,0.0000014983,0.0000014959,0.0000014924, +0.0000014932,0.0000015038,0.0000015175,0.0000015226,0.0000015185, +0.0000015139,0.0000015136,0.0000015174,0.0000015197,0.0000015176, +0.0000015087,0.0000015000,0.0000014976,0.0000014975,0.0000014966, +0.0000014978,0.0000015041,0.0000015112,0.0000015121,0.0000015090, +0.0000015142,0.0000015282,0.0000015453,0.0000015696,0.0000015990, +0.0000016222,0.0000016272,0.0000016200,0.0000015840,0.0000015127, +0.0000014318,0.0000013829,0.0000013910,0.0000014717,0.0000015773, +0.0000016413,0.0000016615,0.0000016599,0.0000016249,0.0000015653, +0.0000015544,0.0000015829,0.0000015760,0.0000015099,0.0000014465, +0.0000014311,0.0000014368,0.0000014581,0.0000014814,0.0000014997, +0.0000015134,0.0000015223,0.0000015271,0.0000015310,0.0000015351, +0.0000015409,0.0000015499,0.0000015576,0.0000015576,0.0000015426, +0.0000015168,0.0000014952,0.0000014846,0.0000014812,0.0000014789, +0.0000014757,0.0000014728,0.0000014668,0.0000014461,0.0000014151, +0.0000013958,0.0000013949,0.0000014032,0.0000014103,0.0000014136, +0.0000014153,0.0000014174,0.0000014210,0.0000014246,0.0000014257, +0.0000014219,0.0000014147,0.0000014054,0.0000013940,0.0000013821, +0.0000013667,0.0000013417,0.0000013175,0.0000013099,0.0000013089, +0.0000013050,0.0000013074,0.0000013248,0.0000013429,0.0000013465, +0.0000013457,0.0000013405,0.0000013582,0.0000014503,0.0000015243, +0.0000015151,0.0000014861,0.0000014865,0.0000014966,0.0000014958, +0.0000014993,0.0000015074,0.0000014998,0.0000015028,0.0000015414, +0.0000015447,0.0000015318,0.0000015231,0.0000015194,0.0000015306, +0.0000015417,0.0000016157,0.0000017568,0.0000018351,0.0000017680, +0.0000017460,0.0000018108,0.0000017966,0.0000017413,0.0000017305, +0.0000017436,0.0000017499,0.0000017518,0.0000017535,0.0000017525, +0.0000017501,0.0000017493,0.0000017438,0.0000017260,0.0000017031, +0.0000016861,0.0000016779,0.0000016768,0.0000016798,0.0000016901, +0.0000017094,0.0000017333,0.0000017471,0.0000017474,0.0000017436, +0.0000017300,0.0000017015,0.0000016780,0.0000016859,0.0000017177, +0.0000017381,0.0000017472,0.0000017581,0.0000017817,0.0000018102, +0.0000018119,0.0000017973,0.0000017860,0.0000017501,0.0000017012, +0.0000016740,0.0000016688,0.0000016794,0.0000016993,0.0000017044, +0.0000016876,0.0000016489,0.0000016217,0.0000016247,0.0000016635, +0.0000016993,0.0000017106,0.0000017112,0.0000017110,0.0000017123, +0.0000017179,0.0000017237,0.0000017243,0.0000017215,0.0000017196, +0.0000017188,0.0000017114,0.0000016991,0.0000016887,0.0000016694, +0.0000016360,0.0000016078,0.0000015897,0.0000015808,0.0000015846, +0.0000016038,0.0000016304,0.0000016461,0.0000016562,0.0000016713, +0.0000016818,0.0000016846,0.0000016901,0.0000016974,0.0000016900, +0.0000016769,0.0000016741,0.0000016686,0.0000016744,0.0000016993, +0.0000017069,0.0000016829,0.0000016595,0.0000016560,0.0000016548, +0.0000016531,0.0000016716,0.0000017087,0.0000017148,0.0000017102, +0.0000017016,0.0000016887,0.0000016808,0.0000016329,0.0000016074, +0.0000016139,0.0000016156,0.0000015357,0.0000014934,0.0000014908, +0.0000014908,0.0000014902,0.0000014860,0.0000014779,0.0000014757, +0.0000014748,0.0000014714,0.0000014770,0.0000014952,0.0000015036, +0.0000014923,0.0000014762,0.0000014804,0.0000015044,0.0000015141, +0.0000015057,0.0000015108,0.0000015278,0.0000015362,0.0000015410, +0.0000015409,0.0000015318,0.0000015251,0.0000015253,0.0000015267, +0.0000015360,0.0000015683,0.0000016042,0.0000016169,0.0000016187, +0.0000016239,0.0000016290,0.0000016273,0.0000016265,0.0000016288, +0.0000016297,0.0000016288,0.0000016270,0.0000016255,0.0000016255, +0.0000016263,0.0000016244,0.0000016123,0.0000015938,0.0000015940, +0.0000016102,0.0000016157,0.0000016102,0.0000016077,0.0000016039, +0.0000015901,0.0000015907,0.0000016178,0.0000016337,0.0000016447, +0.0000016406,0.0000016321,0.0000016314,0.0000016192,0.0000016107, +0.0000016291,0.0000016531,0.0000016412,0.0000016072,0.0000015876, +0.0000015869,0.0000016230,0.0000016856,0.0000016982,0.0000016742, +0.0000016677,0.0000016640,0.0000016473,0.0000016422,0.0000016513, +0.0000016620,0.0000016678,0.0000016680,0.0000016707,0.0000016838, +0.0000016854,0.0000016856,0.0000016947,0.0000016986,0.0000017063, +0.0000017139,0.0000017177,0.0000017214,0.0000017220,0.0000017182, +0.0000017366,0.0000017584,0.0000018002,0.0000018312,0.0000018189, +0.0000018083,0.0000018140,0.0000018209,0.0000018288,0.0000018418, +0.0000018459,0.0000018292,0.0000018004,0.0000017462,0.0000016974, +0.0000016897,0.0000016938,0.0000016990,0.0000017012,0.0000017069, +0.0000017094,0.0000017057,0.0000017014,0.0000016961,0.0000016922, +0.0000016920,0.0000016924,0.0000016905,0.0000016888,0.0000016881, +0.0000016877,0.0000016867,0.0000016840,0.0000016797,0.0000016757, +0.0000016740,0.0000016737,0.0000016737,0.0000016730,0.0000016722, +0.0000016732,0.0000016786,0.0000016857,0.0000016880,0.0000016857, +0.0000016815,0.0000016764,0.0000016794,0.0000016951,0.0000017125, +0.0000017306,0.0000017362,0.0000017201,0.0000016899,0.0000016678, +0.0000016499,0.0000016248,0.0000016009,0.0000015810,0.0000015598, +0.0000015456,0.0000015395,0.0000015135,0.0000014689,0.0000014409, +0.0000014330,0.0000014311,0.0000014292,0.0000014250,0.0000014203, +0.0000014247,0.0000014480,0.0000014730,0.0000014844,0.0000014889, +0.0000014965,0.0000015050,0.0000015105,0.0000015156,0.0000015204, +0.0000015220,0.0000015218,0.0000015236,0.0000015280,0.0000015304, +0.0000015306,0.0000015308,0.0000015308,0.0000015308,0.0000015320, +0.0000015342,0.0000015362,0.0000015382,0.0000015385,0.0000015377, +0.0000015375,0.0000015367,0.0000015321,0.0000015254,0.0000015193, +0.0000015151,0.0000015117,0.0000015088,0.0000015066,0.0000015048, +0.0000015029,0.0000015009,0.0000014993,0.0000014972,0.0000014940, +0.0000014916,0.0000014948,0.0000015063,0.0000015169,0.0000015177, +0.0000015133,0.0000015115,0.0000015139,0.0000015173,0.0000015183, +0.0000015152,0.0000015063,0.0000014976,0.0000014953,0.0000014959, +0.0000014963,0.0000014984,0.0000015063,0.0000015135,0.0000015119, +0.0000015072,0.0000015138,0.0000015320,0.0000015577,0.0000015952, +0.0000016329,0.0000016495,0.0000016505,0.0000016414,0.0000015897, +0.0000014959,0.0000014168,0.0000013970,0.0000014481,0.0000015528, +0.0000016323,0.0000016607,0.0000016629,0.0000016373,0.0000015765, +0.0000015493,0.0000015731,0.0000015856,0.0000015328,0.0000014585, +0.0000014352,0.0000014435,0.0000014708,0.0000014987,0.0000015189, +0.0000015306,0.0000015362,0.0000015380,0.0000015375,0.0000015359, +0.0000015376,0.0000015463,0.0000015557,0.0000015563,0.0000015396, +0.0000015083,0.0000014783,0.0000014613,0.0000014580,0.0000014611, +0.0000014662,0.0000014690,0.0000014702,0.0000014690,0.0000014571, +0.0000014268,0.0000013943,0.0000013764,0.0000013730,0.0000013753, +0.0000013765,0.0000013778,0.0000013827,0.0000013923,0.0000014044, +0.0000014137,0.0000014165,0.0000014133,0.0000014071,0.0000013962, +0.0000013808,0.0000013623,0.0000013364,0.0000013156,0.0000013113, +0.0000013089,0.0000013087,0.0000013220,0.0000013399,0.0000013436, +0.0000013396,0.0000013408,0.0000013828,0.0000014746,0.0000015253, +0.0000015103,0.0000014868,0.0000014869,0.0000014959,0.0000014962, +0.0000014995,0.0000015063,0.0000015015,0.0000014977,0.0000015307, +0.0000015485,0.0000015352,0.0000015249,0.0000015180,0.0000015289, +0.0000015338,0.0000015681,0.0000016943,0.0000018246,0.0000018211, +0.0000017400,0.0000017629,0.0000018110,0.0000017677,0.0000017280, +0.0000017361,0.0000017500,0.0000017488,0.0000017487,0.0000017511, +0.0000017519,0.0000017463,0.0000017266,0.0000017002,0.0000016793, +0.0000016701,0.0000016670,0.0000016672,0.0000016697,0.0000016739, +0.0000016885,0.0000017152,0.0000017388,0.0000017458,0.0000017418, +0.0000017271,0.0000017013,0.0000016767,0.0000016749,0.0000017039, +0.0000017331,0.0000017441,0.0000017520,0.0000017750,0.0000018080, +0.0000018137,0.0000017998,0.0000017836,0.0000017400,0.0000016932, +0.0000016718,0.0000016693,0.0000016823,0.0000016957,0.0000016971, +0.0000016788,0.0000016416,0.0000016201,0.0000016238,0.0000016591, +0.0000016946,0.0000017079,0.0000017090,0.0000017086,0.0000017101, +0.0000017156,0.0000017204,0.0000017212,0.0000017198,0.0000017184, +0.0000017142,0.0000017033,0.0000016928,0.0000016831,0.0000016574, +0.0000016239,0.0000016012,0.0000015866,0.0000015816,0.0000015877, +0.0000016097,0.0000016333,0.0000016466,0.0000016593,0.0000016744, +0.0000016832,0.0000016855,0.0000016927,0.0000016947,0.0000016816, +0.0000016747,0.0000016730,0.0000016717,0.0000016887,0.0000017103, +0.0000017041,0.0000016735,0.0000016585,0.0000016583,0.0000016580, +0.0000016756,0.0000017129,0.0000017160,0.0000017096,0.0000016996, +0.0000016864,0.0000016736,0.0000016146,0.0000016078,0.0000016189, +0.0000016117,0.0000015344,0.0000014947,0.0000014907,0.0000014906, +0.0000014883,0.0000014886,0.0000014835,0.0000014788,0.0000014742, +0.0000014697,0.0000014723,0.0000014876,0.0000014971,0.0000014867, +0.0000014710,0.0000014783,0.0000015026,0.0000015116,0.0000015095, +0.0000015209,0.0000015361,0.0000015420,0.0000015401,0.0000015296, +0.0000015225,0.0000015240,0.0000015260,0.0000015384,0.0000015736, +0.0000016057,0.0000016115,0.0000016101,0.0000016190,0.0000016269, +0.0000016271,0.0000016267,0.0000016267,0.0000016257,0.0000016243, +0.0000016220,0.0000016172,0.0000016111,0.0000016080,0.0000016062, +0.0000015983,0.0000015878,0.0000015908,0.0000016076,0.0000016151, +0.0000016105,0.0000016065,0.0000016030,0.0000015911,0.0000015895, +0.0000016142,0.0000016296,0.0000016419,0.0000016438,0.0000016337, +0.0000016316,0.0000016208,0.0000016055,0.0000016178,0.0000016479, +0.0000016488,0.0000016152,0.0000015880,0.0000015844,0.0000016100, +0.0000016726,0.0000016972,0.0000016795,0.0000016676,0.0000016660, +0.0000016520,0.0000016397,0.0000016421,0.0000016504,0.0000016579, +0.0000016650,0.0000016688,0.0000016729,0.0000016820,0.0000016834, +0.0000016895,0.0000016999,0.0000017035,0.0000017096,0.0000017141, +0.0000017150,0.0000017138,0.0000017126,0.0000017353,0.0000017605, +0.0000017940,0.0000018298,0.0000018312,0.0000018259,0.0000018245, +0.0000018268,0.0000018354,0.0000018468,0.0000018447,0.0000018174, +0.0000017869,0.0000017277,0.0000016882,0.0000016856,0.0000016906, +0.0000016930,0.0000016958,0.0000017041,0.0000017069,0.0000017045, +0.0000017005,0.0000016957,0.0000016907,0.0000016921,0.0000016981, +0.0000017005,0.0000016988,0.0000016963,0.0000016934,0.0000016911, +0.0000016882,0.0000016837,0.0000016794,0.0000016770,0.0000016766, +0.0000016762,0.0000016750,0.0000016748,0.0000016775,0.0000016819, +0.0000016831,0.0000016793,0.0000016746,0.0000016704,0.0000016765, +0.0000016932,0.0000017125,0.0000017299,0.0000017323,0.0000017139, +0.0000016858,0.0000016660,0.0000016475,0.0000016214,0.0000015980, +0.0000015777,0.0000015568,0.0000015445,0.0000015398,0.0000015134, +0.0000014699,0.0000014436,0.0000014358,0.0000014329,0.0000014301, +0.0000014248,0.0000014199,0.0000014236,0.0000014461,0.0000014718, +0.0000014845,0.0000014904,0.0000014983,0.0000015058,0.0000015105, +0.0000015154,0.0000015203,0.0000015212,0.0000015197,0.0000015216, +0.0000015280,0.0000015328,0.0000015346,0.0000015365,0.0000015383, +0.0000015387,0.0000015381,0.0000015374,0.0000015381,0.0000015409, +0.0000015428,0.0000015423,0.0000015410,0.0000015402,0.0000015366, +0.0000015287,0.0000015196,0.0000015132,0.0000015088,0.0000015056, +0.0000015039,0.0000015035,0.0000015031,0.0000015018,0.0000014997, +0.0000014965,0.0000014927,0.0000014915,0.0000014970,0.0000015080, +0.0000015142,0.0000015122,0.0000015088,0.0000015095,0.0000015134, +0.0000015158,0.0000015159,0.0000015123,0.0000015041,0.0000014964, +0.0000014952,0.0000014972,0.0000014976,0.0000015005,0.0000015085, +0.0000015134,0.0000015093,0.0000015039,0.0000015112,0.0000015341, +0.0000015696,0.0000016182,0.0000016527,0.0000016560,0.0000016535, +0.0000016409,0.0000015720,0.0000014667,0.0000014143,0.0000014376, +0.0000015313,0.0000016219,0.0000016608,0.0000016640,0.0000016456, +0.0000015879,0.0000015453,0.0000015596,0.0000015865,0.0000015577, +0.0000014807,0.0000014438,0.0000014496,0.0000014779,0.0000015071, +0.0000015269,0.0000015371,0.0000015411,0.0000015425,0.0000015415, +0.0000015366,0.0000015346,0.0000015417,0.0000015537,0.0000015557, +0.0000015397,0.0000015080,0.0000014744,0.0000014500,0.0000014357, +0.0000014289,0.0000014293,0.0000014366,0.0000014463,0.0000014543, +0.0000014572,0.0000014488,0.0000014234,0.0000013914,0.0000013680, +0.0000013622,0.0000013620,0.0000013614,0.0000013617,0.0000013672, +0.0000013784,0.0000013920,0.0000014046,0.0000014104,0.0000014103, +0.0000014053,0.0000013925,0.0000013737,0.0000013505,0.0000013248, +0.0000013123,0.0000013114,0.0000013120,0.0000013233,0.0000013385, +0.0000013392,0.0000013375,0.0000013647,0.0000014389,0.0000015083, +0.0000015186,0.0000014980,0.0000014855,0.0000014892,0.0000014947, +0.0000014955,0.0000014992,0.0000015052,0.0000015018,0.0000014943, +0.0000015217,0.0000015498,0.0000015388,0.0000015273,0.0000015198, +0.0000015256,0.0000015349,0.0000015450,0.0000016258,0.0000017595, +0.0000018428,0.0000017765,0.0000017354,0.0000017963,0.0000017904, +0.0000017325,0.0000017318,0.0000017478,0.0000017487,0.0000017510, +0.0000017539,0.0000017493,0.0000017344,0.0000017141,0.0000016922, +0.0000016762,0.0000016706,0.0000016728,0.0000016763,0.0000016766, +0.0000016741,0.0000016756,0.0000016959,0.0000017275,0.0000017429, +0.0000017397,0.0000017209,0.0000016950,0.0000016759,0.0000016708, +0.0000016934,0.0000017289,0.0000017436,0.0000017480,0.0000017697, +0.0000018057,0.0000018129,0.0000018009,0.0000017794,0.0000017318, +0.0000016885,0.0000016694,0.0000016690,0.0000016814,0.0000016858, +0.0000016862,0.0000016700,0.0000016346,0.0000016175,0.0000016211, +0.0000016528,0.0000016891,0.0000017055,0.0000017078,0.0000017081, +0.0000017112,0.0000017171,0.0000017212,0.0000017214,0.0000017190, +0.0000017161,0.0000017080,0.0000016963,0.0000016878,0.0000016749, +0.0000016440,0.0000016143,0.0000015964,0.0000015839,0.0000015808, +0.0000015917,0.0000016142,0.0000016350,0.0000016493,0.0000016640, +0.0000016774,0.0000016828,0.0000016863,0.0000016938,0.0000016887, +0.0000016750,0.0000016733,0.0000016748,0.0000016812,0.0000017060, +0.0000017151,0.0000016946,0.0000016686,0.0000016634,0.0000016656, +0.0000016888,0.0000017190,0.0000017162,0.0000017079,0.0000016970, +0.0000016836,0.0000016539,0.0000016048,0.0000016092,0.0000016249, +0.0000016045,0.0000015328,0.0000014952,0.0000014912,0.0000014915, +0.0000014865,0.0000014878,0.0000014865,0.0000014842,0.0000014768, +0.0000014687,0.0000014677,0.0000014799,0.0000014910,0.0000014837, +0.0000014680,0.0000014754,0.0000015000,0.0000015108,0.0000015138, +0.0000015280,0.0000015408,0.0000015411,0.0000015313,0.0000015213, +0.0000015213,0.0000015250,0.0000015395,0.0000015760,0.0000016030, +0.0000016027,0.0000015999,0.0000016142,0.0000016258,0.0000016261, +0.0000016257,0.0000016253,0.0000016250,0.0000016259,0.0000016261, +0.0000016239,0.0000016161,0.0000016047,0.0000015949,0.0000015868, +0.0000015849,0.0000015901,0.0000016069,0.0000016140,0.0000016108, +0.0000016054,0.0000016015,0.0000015916,0.0000015893,0.0000016119, +0.0000016265,0.0000016376,0.0000016454,0.0000016359,0.0000016322, +0.0000016234,0.0000016057,0.0000016079,0.0000016381,0.0000016506, +0.0000016245,0.0000015901,0.0000015823,0.0000016001,0.0000016582, +0.0000016962,0.0000016844,0.0000016680,0.0000016663,0.0000016574, +0.0000016415,0.0000016362,0.0000016396,0.0000016445,0.0000016501, +0.0000016606,0.0000016693,0.0000016743,0.0000016798,0.0000016841, +0.0000016935,0.0000017039,0.0000017079,0.0000017098,0.0000017101, +0.0000017087,0.0000017079,0.0000017314,0.0000017616,0.0000017809, +0.0000018212,0.0000018326,0.0000018307,0.0000018307,0.0000018319, +0.0000018394,0.0000018496,0.0000018310,0.0000018010,0.0000017663, +0.0000017076,0.0000016813,0.0000016818,0.0000016858,0.0000016853, +0.0000016901,0.0000016990,0.0000017025,0.0000017011,0.0000016979, +0.0000016949,0.0000016914,0.0000016927,0.0000016997,0.0000017058, +0.0000017077,0.0000017065,0.0000017032,0.0000016996,0.0000016954, +0.0000016902,0.0000016856,0.0000016827,0.0000016815,0.0000016807, +0.0000016806,0.0000016814,0.0000016812,0.0000016781,0.0000016716, +0.0000016658,0.0000016642,0.0000016734,0.0000016923,0.0000017133, +0.0000017273,0.0000017250,0.0000017033,0.0000016780,0.0000016620, +0.0000016436,0.0000016177,0.0000015950,0.0000015740,0.0000015539, +0.0000015439,0.0000015400,0.0000015146,0.0000014723,0.0000014463, +0.0000014374,0.0000014333,0.0000014299,0.0000014240,0.0000014183, +0.0000014195,0.0000014398,0.0000014679,0.0000014844,0.0000014922, +0.0000015002,0.0000015064,0.0000015099,0.0000015147,0.0000015193, +0.0000015192,0.0000015161,0.0000015174,0.0000015251,0.0000015328, +0.0000015368,0.0000015399,0.0000015427,0.0000015433,0.0000015422, +0.0000015406,0.0000015405,0.0000015428,0.0000015450,0.0000015448, +0.0000015434,0.0000015423,0.0000015396,0.0000015326,0.0000015229, +0.0000015137,0.0000015066,0.0000015018,0.0000015005,0.0000015011, +0.0000015019,0.0000015015,0.0000014993,0.0000014956,0.0000014919, +0.0000014920,0.0000014990,0.0000015084,0.0000015106,0.0000015065, +0.0000015043,0.0000015069,0.0000015105,0.0000015120,0.0000015117, +0.0000015090,0.0000015024,0.0000014963,0.0000014964,0.0000015008, +0.0000015026,0.0000015036,0.0000015092,0.0000015110,0.0000015058, +0.0000015002,0.0000015084,0.0000015348,0.0000015791,0.0000016332, +0.0000016590,0.0000016543,0.0000016489,0.0000016286,0.0000015357, +0.0000014390,0.0000014328,0.0000015119,0.0000016103,0.0000016612, +0.0000016675,0.0000016502,0.0000015963,0.0000015440,0.0000015469, +0.0000015814,0.0000015760,0.0000015080,0.0000014536,0.0000014548, +0.0000014811,0.0000015086,0.0000015281,0.0000015384,0.0000015433, +0.0000015459,0.0000015452,0.0000015374,0.0000015300,0.0000015343, +0.0000015488,0.0000015545,0.0000015434,0.0000015148,0.0000014837, +0.0000014593,0.0000014431,0.0000014258,0.0000014054,0.0000013897, +0.0000013861,0.0000013952,0.0000014088,0.0000014159,0.0000014136, +0.0000013971,0.0000013760,0.0000013632,0.0000013604,0.0000013586, +0.0000013556,0.0000013568,0.0000013647,0.0000013749,0.0000013858, +0.0000013984,0.0000014068,0.0000014070,0.0000013991,0.0000013823, +0.0000013596,0.0000013335,0.0000013157,0.0000013121,0.0000013144, +0.0000013266,0.0000013360,0.0000013360,0.0000013577,0.0000014241, +0.0000014934,0.0000015142,0.0000015006,0.0000014879,0.0000014867, +0.0000014916,0.0000014936,0.0000014938,0.0000014978,0.0000015031, +0.0000014992,0.0000014910,0.0000015165,0.0000015496,0.0000015420, +0.0000015296,0.0000015207,0.0000015222,0.0000015374,0.0000015349, +0.0000015756,0.0000016927,0.0000018085,0.0000018181,0.0000017477, +0.0000017565,0.0000017933,0.0000017546,0.0000017273,0.0000017402, +0.0000017495,0.0000017518,0.0000017485,0.0000017411,0.0000017320, +0.0000017145,0.0000016907,0.0000016766,0.0000016766,0.0000016837, +0.0000016907,0.0000016920,0.0000016843,0.0000016740,0.0000016820, +0.0000017148,0.0000017389,0.0000017371,0.0000017139,0.0000016879, +0.0000016737,0.0000016691,0.0000016867,0.0000017248,0.0000017434, +0.0000017460,0.0000017657,0.0000018032,0.0000018117,0.0000018009, +0.0000017756,0.0000017264,0.0000016849,0.0000016670,0.0000016690, +0.0000016772,0.0000016729,0.0000016770,0.0000016637,0.0000016296, +0.0000016149,0.0000016178,0.0000016468,0.0000016845,0.0000017044, +0.0000017078,0.0000017097,0.0000017147,0.0000017206,0.0000017228, +0.0000017210,0.0000017178,0.0000017127,0.0000017009,0.0000016896, +0.0000016825,0.0000016642,0.0000016308,0.0000016075,0.0000015922, +0.0000015811,0.0000015824,0.0000015966,0.0000016176,0.0000016378, +0.0000016543,0.0000016677,0.0000016773,0.0000016820,0.0000016885, +0.0000016936,0.0000016805,0.0000016708,0.0000016752,0.0000016807, +0.0000016962,0.0000017163,0.0000017121,0.0000016886,0.0000016764, +0.0000016801,0.0000017067,0.0000017225,0.0000017138,0.0000017051, +0.0000016940,0.0000016764,0.0000016262,0.0000016037,0.0000016115, +0.0000016313,0.0000015944,0.0000015314,0.0000014955,0.0000014924, +0.0000014932,0.0000014862,0.0000014856,0.0000014868,0.0000014868, +0.0000014823,0.0000014710,0.0000014660,0.0000014741,0.0000014870, +0.0000014818,0.0000014670,0.0000014725,0.0000014964,0.0000015105, +0.0000015179,0.0000015326,0.0000015406,0.0000015359,0.0000015236, +0.0000015198,0.0000015221,0.0000015368,0.0000015732,0.0000015976, +0.0000015939,0.0000015898,0.0000016096,0.0000016247,0.0000016250, +0.0000016239,0.0000016242,0.0000016256,0.0000016274,0.0000016286, +0.0000016296,0.0000016294,0.0000016241,0.0000016119,0.0000015976, +0.0000015919,0.0000015965,0.0000016086,0.0000016131,0.0000016105, +0.0000016042,0.0000015993,0.0000015913,0.0000015899,0.0000016113, +0.0000016243,0.0000016341,0.0000016458,0.0000016384,0.0000016326, +0.0000016265,0.0000016073,0.0000016009,0.0000016268,0.0000016517, +0.0000016325,0.0000015936,0.0000015810,0.0000015922,0.0000016417, +0.0000016905,0.0000016886,0.0000016687,0.0000016665,0.0000016623, +0.0000016468,0.0000016363,0.0000016369,0.0000016413,0.0000016453, +0.0000016495,0.0000016598,0.0000016696,0.0000016740,0.0000016786, +0.0000016848,0.0000016956,0.0000017078,0.0000017105,0.0000017093, +0.0000017082,0.0000017050,0.0000017208,0.0000017619,0.0000017730, +0.0000017920,0.0000018158,0.0000018227,0.0000018216,0.0000018260, +0.0000018431,0.0000018395,0.0000018040,0.0000017845,0.0000017373, +0.0000016917,0.0000016773,0.0000016780,0.0000016795,0.0000016789, +0.0000016834,0.0000016899,0.0000016936,0.0000016943,0.0000016928, +0.0000016914,0.0000016912,0.0000016944,0.0000017006,0.0000017070, +0.0000017106,0.0000017115,0.0000017098,0.0000017064,0.0000017013, +0.0000016956,0.0000016905,0.0000016870,0.0000016849,0.0000016839, +0.0000016834,0.0000016821,0.0000016757,0.0000016670,0.0000016606, +0.0000016616,0.0000016743,0.0000016936,0.0000017156,0.0000017239, +0.0000017161,0.0000016915,0.0000016699,0.0000016576,0.0000016393, +0.0000016138,0.0000015920,0.0000015711,0.0000015523,0.0000015443, +0.0000015406,0.0000015145,0.0000014724,0.0000014472,0.0000014380, +0.0000014326,0.0000014282,0.0000014220,0.0000014154,0.0000014145, +0.0000014285,0.0000014585,0.0000014819,0.0000014928,0.0000015008, +0.0000015065,0.0000015095,0.0000015142,0.0000015182,0.0000015171, +0.0000015130,0.0000015126,0.0000015196,0.0000015298,0.0000015372, +0.0000015414,0.0000015440,0.0000015449,0.0000015440,0.0000015424, +0.0000015420,0.0000015433,0.0000015450,0.0000015452,0.0000015441, +0.0000015427,0.0000015402,0.0000015348,0.0000015261,0.0000015161, +0.0000015072,0.0000015014,0.0000014996,0.0000014998,0.0000015007, +0.0000015008,0.0000014991,0.0000014954,0.0000014920,0.0000014927, +0.0000015002,0.0000015073,0.0000015065,0.0000015014,0.0000015003, +0.0000015029,0.0000015053,0.0000015066,0.0000015074,0.0000015067, +0.0000015020,0.0000014975,0.0000014989,0.0000015058,0.0000015088, +0.0000015074,0.0000015076,0.0000015075,0.0000015027,0.0000014971, +0.0000015036,0.0000015315,0.0000015839,0.0000016417,0.0000016632, +0.0000016541,0.0000016462,0.0000015995,0.0000014894,0.0000014373, +0.0000014904,0.0000015959,0.0000016601,0.0000016715,0.0000016542, +0.0000016021,0.0000015460,0.0000015380,0.0000015700,0.0000015828, +0.0000015351,0.0000014697,0.0000014596,0.0000014825,0.0000015075, +0.0000015266,0.0000015387,0.0000015461,0.0000015515,0.0000015514, +0.0000015426,0.0000015286,0.0000015251,0.0000015389,0.0000015526, +0.0000015487,0.0000015266,0.0000014967,0.0000014743,0.0000014635, +0.0000014553,0.0000014377,0.0000014072,0.0000013729,0.0000013519, +0.0000013503,0.0000013597,0.0000013682,0.0000013725,0.0000013727, +0.0000013703,0.0000013695,0.0000013669,0.0000013608,0.0000013572, +0.0000013606,0.0000013679,0.0000013737,0.0000013828,0.0000013965, +0.0000014044,0.0000014018,0.0000013874,0.0000013647,0.0000013377, +0.0000013176,0.0000013135,0.0000013187,0.0000013295,0.0000013360, +0.0000013523,0.0000014103,0.0000014791,0.0000015045,0.0000014996, +0.0000014874,0.0000014861,0.0000014877,0.0000014902,0.0000014886, +0.0000014884,0.0000014929,0.0000014971,0.0000014913,0.0000014859, +0.0000015147,0.0000015491,0.0000015443,0.0000015318,0.0000015226, +0.0000015193,0.0000015382,0.0000015360,0.0000015475,0.0000016305, +0.0000017466,0.0000018190,0.0000017682,0.0000017402,0.0000017865, +0.0000017696,0.0000017243,0.0000017324,0.0000017471,0.0000017452, +0.0000017402,0.0000017427,0.0000017429,0.0000017218,0.0000016914, +0.0000016794,0.0000016849,0.0000017053,0.0000017305,0.0000017395, +0.0000017262,0.0000016908,0.0000016794,0.0000017023,0.0000017334, +0.0000017342,0.0000017077,0.0000016818,0.0000016706,0.0000016677, +0.0000016819,0.0000017211,0.0000017435,0.0000017455,0.0000017627, +0.0000018010,0.0000018117,0.0000018005,0.0000017728,0.0000017233, +0.0000016827,0.0000016658,0.0000016685,0.0000016719,0.0000016602, +0.0000016671,0.0000016596,0.0000016257,0.0000016113,0.0000016134, +0.0000016413,0.0000016805,0.0000017030,0.0000017087,0.0000017124, +0.0000017187,0.0000017232,0.0000017233,0.0000017200,0.0000017166, +0.0000017066,0.0000016917,0.0000016827,0.0000016758,0.0000016518, +0.0000016203,0.0000016015,0.0000015874,0.0000015817,0.0000015865, +0.0000016007,0.0000016217,0.0000016435,0.0000016584,0.0000016687, +0.0000016774,0.0000016827,0.0000016929,0.0000016895,0.0000016704, +0.0000016691,0.0000016818,0.0000016890,0.0000017106,0.0000017194, +0.0000017097,0.0000016976,0.0000017012,0.0000017204,0.0000017208, +0.0000017096,0.0000017012,0.0000016909,0.0000016585,0.0000016056, +0.0000016067,0.0000016154,0.0000016333,0.0000015820,0.0000015301, +0.0000014960,0.0000014943,0.0000014949,0.0000014879,0.0000014841, +0.0000014865,0.0000014869,0.0000014870,0.0000014768,0.0000014660, +0.0000014703,0.0000014831,0.0000014805,0.0000014662,0.0000014693, +0.0000014922,0.0000015101,0.0000015212,0.0000015358,0.0000015405, +0.0000015297,0.0000015197,0.0000015192,0.0000015308,0.0000015658, +0.0000015926,0.0000015876,0.0000015822,0.0000016050,0.0000016236, +0.0000016238,0.0000016226,0.0000016237,0.0000016249,0.0000016242, +0.0000016232,0.0000016241,0.0000016260,0.0000016291,0.0000016284, +0.0000016208,0.0000016119,0.0000016093,0.0000016127,0.0000016130, +0.0000016099,0.0000016026,0.0000015965,0.0000015902,0.0000015910, +0.0000016122,0.0000016233,0.0000016304,0.0000016457,0.0000016412, +0.0000016338,0.0000016285,0.0000016107,0.0000015994,0.0000016152, +0.0000016468,0.0000016400,0.0000015992,0.0000015802,0.0000015845, +0.0000016252,0.0000016832,0.0000016934,0.0000016716,0.0000016666, +0.0000016658,0.0000016531,0.0000016417,0.0000016403,0.0000016454, +0.0000016507,0.0000016525,0.0000016531,0.0000016602,0.0000016692, +0.0000016735,0.0000016780,0.0000016842,0.0000016964,0.0000017092, +0.0000017119,0.0000017107,0.0000017064,0.0000017071,0.0000017482, +0.0000017813,0.0000017827,0.0000017864,0.0000017962,0.0000018105, +0.0000018310,0.0000018352,0.0000018028,0.0000017843,0.0000017601, +0.0000017089,0.0000016834,0.0000016745,0.0000016742,0.0000016732, +0.0000016735,0.0000016753,0.0000016781,0.0000016810,0.0000016829, +0.0000016835,0.0000016845,0.0000016870,0.0000016932,0.0000017005, +0.0000017055,0.0000017085,0.0000017097,0.0000017091,0.0000017061, +0.0000017005,0.0000016941,0.0000016883,0.0000016843,0.0000016821, +0.0000016810,0.0000016789,0.0000016738,0.0000016667,0.0000016615, +0.0000016629,0.0000016770,0.0000016984,0.0000017184,0.0000017220, +0.0000017064,0.0000016818,0.0000016650,0.0000016541,0.0000016344, +0.0000016095,0.0000015894,0.0000015695,0.0000015522,0.0000015454, +0.0000015407,0.0000015119,0.0000014694,0.0000014451,0.0000014368, +0.0000014309,0.0000014254,0.0000014192,0.0000014127,0.0000014098, +0.0000014166,0.0000014441,0.0000014743,0.0000014905,0.0000014995, +0.0000015055,0.0000015093,0.0000015143,0.0000015174,0.0000015155, +0.0000015117,0.0000015107,0.0000015145,0.0000015250,0.0000015352, +0.0000015405,0.0000015422,0.0000015426,0.0000015425,0.0000015425, +0.0000015425,0.0000015430,0.0000015440,0.0000015441,0.0000015433, +0.0000015418,0.0000015391,0.0000015343,0.0000015271,0.0000015176, +0.0000015081,0.0000015018,0.0000014997,0.0000014997,0.0000015007, +0.0000015012,0.0000014996,0.0000014954,0.0000014916,0.0000014929, +0.0000015000,0.0000015046,0.0000015019,0.0000014973,0.0000014968, +0.0000014985,0.0000015001,0.0000015024,0.0000015054,0.0000015064, +0.0000015037,0.0000015000,0.0000015021,0.0000015104,0.0000015145, +0.0000015116,0.0000015069,0.0000015050,0.0000014999,0.0000014932, +0.0000014959,0.0000015246,0.0000015861,0.0000016492,0.0000016662, +0.0000016583,0.0000016388,0.0000015545,0.0000014628,0.0000014709, +0.0000015741,0.0000016569,0.0000016729,0.0000016584,0.0000016072, +0.0000015495,0.0000015330,0.0000015596,0.0000015853,0.0000015573, +0.0000014921,0.0000014679,0.0000014827,0.0000015062,0.0000015238, +0.0000015384,0.0000015477,0.0000015549,0.0000015571,0.0000015528, +0.0000015376,0.0000015236,0.0000015257,0.0000015421,0.0000015502, +0.0000015399,0.0000015148,0.0000014906,0.0000014774,0.0000014746, +0.0000014725,0.0000014597,0.0000014307,0.0000013933,0.0000013622, +0.0000013480,0.0000013487,0.0000013578,0.0000013664,0.0000013723, +0.0000013759,0.0000013753,0.0000013691,0.0000013624,0.0000013621, +0.0000013660,0.0000013686,0.0000013729,0.0000013848,0.0000013982, +0.0000014004,0.0000013889,0.0000013665,0.0000013377,0.0000013168, +0.0000013144,0.0000013231,0.0000013317,0.0000013466,0.0000013987, +0.0000014704,0.0000015005,0.0000014960,0.0000014860,0.0000014842, +0.0000014843,0.0000014807,0.0000014767,0.0000014738,0.0000014752, +0.0000014810,0.0000014841,0.0000014794,0.0000014812,0.0000015152, +0.0000015492,0.0000015462,0.0000015339,0.0000015248,0.0000015181, +0.0000015372,0.0000015468,0.0000015359,0.0000015837,0.0000016869, +0.0000017807,0.0000017766,0.0000017387,0.0000017784,0.0000017819, +0.0000017275,0.0000017271,0.0000017394,0.0000017349,0.0000017380, +0.0000017566,0.0000017621,0.0000017307,0.0000016920,0.0000016846, +0.0000017128,0.0000017753,0.0000018313,0.0000018452,0.0000018154, +0.0000017407,0.0000016853,0.0000016910,0.0000017263,0.0000017319, +0.0000017035,0.0000016756,0.0000016651,0.0000016641,0.0000016768, +0.0000017180,0.0000017434,0.0000017455,0.0000017603,0.0000017985, +0.0000018118,0.0000018004,0.0000017722,0.0000017232,0.0000016821, +0.0000016656,0.0000016672,0.0000016687,0.0000016490,0.0000016561, +0.0000016561,0.0000016229,0.0000016087,0.0000016103,0.0000016365, +0.0000016752,0.0000016998,0.0000017085,0.0000017147,0.0000017215, +0.0000017243,0.0000017228,0.0000017200,0.0000017123,0.0000016952, +0.0000016815,0.0000016773,0.0000016676,0.0000016383,0.0000016112, +0.0000015963,0.0000015868,0.0000015843,0.0000015905,0.0000016059, +0.0000016286,0.0000016486,0.0000016602,0.0000016705,0.0000016777, +0.0000016882,0.0000016963,0.0000016766,0.0000016600,0.0000016769, +0.0000016863,0.0000017002,0.0000017198,0.0000017224,0.0000017177, +0.0000017191,0.0000017238,0.0000017147,0.0000017053,0.0000016970, +0.0000016865,0.0000016327,0.0000016002,0.0000016104,0.0000016218, +0.0000016298,0.0000015681,0.0000015282,0.0000014970,0.0000014964, +0.0000014958,0.0000014903,0.0000014842,0.0000014860,0.0000014874, +0.0000014905,0.0000014827,0.0000014685,0.0000014684,0.0000014800, +0.0000014789,0.0000014653,0.0000014665,0.0000014886,0.0000015100, +0.0000015241,0.0000015368,0.0000015366,0.0000015245,0.0000015182, +0.0000015234,0.0000015530,0.0000015851,0.0000015835,0.0000015762, +0.0000015985,0.0000016216,0.0000016227,0.0000016212,0.0000016228, +0.0000016239,0.0000016202,0.0000016154,0.0000016160,0.0000016184, +0.0000016196,0.0000016227,0.0000016257,0.0000016239,0.0000016197, +0.0000016156,0.0000016132,0.0000016083,0.0000016002,0.0000015936, +0.0000015893,0.0000015923,0.0000016143,0.0000016239,0.0000016276, +0.0000016447,0.0000016438,0.0000016356,0.0000016302,0.0000016140, +0.0000015964,0.0000016046,0.0000016370,0.0000016457,0.0000016088, +0.0000015809,0.0000015790,0.0000016113,0.0000016722,0.0000016918, +0.0000016756,0.0000016664,0.0000016670,0.0000016591,0.0000016486, +0.0000016471,0.0000016525,0.0000016581,0.0000016605,0.0000016590, +0.0000016560,0.0000016599,0.0000016688,0.0000016727,0.0000016772, +0.0000016831,0.0000016940,0.0000017075,0.0000017111,0.0000017091, +0.0000017030,0.0000017137,0.0000017576,0.0000017832,0.0000017965, +0.0000018046,0.0000018113,0.0000018127,0.0000017909,0.0000017766, +0.0000017688,0.0000017238,0.0000016941,0.0000016798,0.0000016741, +0.0000016712,0.0000016690,0.0000016677,0.0000016667,0.0000016689, +0.0000016716,0.0000016727,0.0000016728,0.0000016739,0.0000016771, +0.0000016852,0.0000016953,0.0000017017,0.0000017041,0.0000017042, +0.0000017030,0.0000016995,0.0000016935,0.0000016864,0.0000016804, +0.0000016771,0.0000016756,0.0000016742,0.0000016719,0.0000016682, +0.0000016647,0.0000016690,0.0000016821,0.0000017029,0.0000017192, +0.0000017181,0.0000016976,0.0000016755,0.0000016633,0.0000016514, +0.0000016291,0.0000016057,0.0000015873,0.0000015686,0.0000015525, +0.0000015463,0.0000015394,0.0000015065,0.0000014621,0.0000014398, +0.0000014336,0.0000014282,0.0000014218,0.0000014156,0.0000014108, +0.0000014070,0.0000014077,0.0000014284,0.0000014623,0.0000014857, +0.0000014969,0.0000015037,0.0000015089,0.0000015145,0.0000015169, +0.0000015148,0.0000015120,0.0000015103,0.0000015114,0.0000015200, +0.0000015319,0.0000015389,0.0000015401,0.0000015391,0.0000015392, +0.0000015404,0.0000015413,0.0000015418,0.0000015422,0.0000015421, +0.0000015415,0.0000015397,0.0000015363,0.0000015318,0.0000015258, +0.0000015176,0.0000015085,0.0000015021,0.0000015000,0.0000015002, +0.0000015016,0.0000015021,0.0000014997,0.0000014945,0.0000014909, +0.0000014928,0.0000014992,0.0000015016,0.0000014978,0.0000014942, +0.0000014943,0.0000014953,0.0000014971,0.0000015009,0.0000015053, +0.0000015072,0.0000015063,0.0000015038,0.0000015052,0.0000015131, +0.0000015193,0.0000015175,0.0000015097,0.0000015042,0.0000014970, +0.0000014878,0.0000014863,0.0000015165,0.0000015894,0.0000016563, +0.0000016665,0.0000016603,0.0000016175,0.0000015087,0.0000014668, +0.0000015429,0.0000016466,0.0000016775,0.0000016631,0.0000016115, +0.0000015526,0.0000015323,0.0000015507,0.0000015832,0.0000015732, +0.0000015127,0.0000014738,0.0000014820,0.0000015048,0.0000015207, +0.0000015366,0.0000015475,0.0000015534,0.0000015572,0.0000015575, +0.0000015517,0.0000015374,0.0000015247,0.0000015270,0.0000015403, +0.0000015462,0.0000015354,0.0000015132,0.0000014922,0.0000014818, +0.0000014809,0.0000014803,0.0000014696,0.0000014466,0.0000014177, +0.0000013878,0.0000013641,0.0000013567,0.0000013635,0.0000013729, +0.0000013773,0.0000013768,0.0000013715,0.0000013654,0.0000013642, +0.0000013652,0.0000013660,0.0000013682,0.0000013769,0.0000013908, +0.0000013967,0.0000013880,0.0000013647,0.0000013350,0.0000013158, +0.0000013166,0.0000013254,0.0000013360,0.0000013769,0.0000014532, +0.0000015017,0.0000014975,0.0000014846,0.0000014809,0.0000014760, +0.0000014674,0.0000014595,0.0000014558,0.0000014567,0.0000014618, +0.0000014679,0.0000014701,0.0000014706,0.0000014825,0.0000015200, +0.0000015506,0.0000015480,0.0000015358,0.0000015262,0.0000015179, +0.0000015329,0.0000015523,0.0000015385,0.0000015539,0.0000016336, +0.0000017291,0.0000017794,0.0000017635,0.0000017825,0.0000017906, +0.0000017371,0.0000017237,0.0000017320,0.0000017280,0.0000017427, +0.0000017759,0.0000017811,0.0000017364,0.0000016905,0.0000016995, +0.0000017821,0.0000018872,0.0000019438,0.0000019496,0.0000019140, +0.0000018197,0.0000017149,0.0000016903,0.0000017212,0.0000017293, +0.0000017006,0.0000016693,0.0000016587,0.0000016586,0.0000016725, +0.0000017163,0.0000017442,0.0000017465,0.0000017585,0.0000017961, +0.0000018105,0.0000018006,0.0000017734,0.0000017267,0.0000016851, +0.0000016674,0.0000016665,0.0000016668,0.0000016415,0.0000016452, +0.0000016493,0.0000016202,0.0000016066,0.0000016075,0.0000016297, +0.0000016667,0.0000016946,0.0000017079,0.0000017166,0.0000017229, +0.0000017239,0.0000017226,0.0000017165,0.0000016995,0.0000016806, +0.0000016737,0.0000016731,0.0000016564,0.0000016248,0.0000016053, +0.0000015963,0.0000015883,0.0000015874,0.0000015956,0.0000016135, +0.0000016349,0.0000016514,0.0000016629,0.0000016720,0.0000016830, +0.0000016975,0.0000016874,0.0000016559,0.0000016642,0.0000016858, +0.0000016923,0.0000017155,0.0000017269,0.0000017269,0.0000017251, +0.0000017199,0.0000017078,0.0000017014,0.0000016932,0.0000016771, +0.0000016114,0.0000016037,0.0000016139,0.0000016285,0.0000016188, +0.0000015539,0.0000015251,0.0000014993,0.0000014984,0.0000014956, +0.0000014924,0.0000014855,0.0000014861,0.0000014893,0.0000014929, +0.0000014868,0.0000014725,0.0000014694,0.0000014777,0.0000014767, +0.0000014642,0.0000014647,0.0000014864,0.0000015104,0.0000015265, +0.0000015366,0.0000015322,0.0000015199,0.0000015171,0.0000015389, +0.0000015751,0.0000015803,0.0000015701,0.0000015903,0.0000016174, +0.0000016216,0.0000016200,0.0000016222,0.0000016238,0.0000016192, +0.0000016129,0.0000016115,0.0000016140,0.0000016160,0.0000016147, +0.0000016154,0.0000016190,0.0000016197,0.0000016159,0.0000016113, +0.0000016049,0.0000015967,0.0000015911,0.0000015881,0.0000015944, +0.0000016177,0.0000016255,0.0000016266,0.0000016428,0.0000016456, +0.0000016376,0.0000016313,0.0000016162,0.0000015971,0.0000015974, +0.0000016261,0.0000016461,0.0000016214,0.0000015837,0.0000015758, +0.0000015989,0.0000016597,0.0000016920,0.0000016789,0.0000016652, +0.0000016669,0.0000016641,0.0000016558,0.0000016537,0.0000016583, +0.0000016649,0.0000016698,0.0000016708,0.0000016654,0.0000016569, +0.0000016594,0.0000016686,0.0000016723,0.0000016763,0.0000016816, +0.0000016899,0.0000017008,0.0000017042,0.0000017009,0.0000016976, +0.0000017123,0.0000017430,0.0000017670,0.0000017772,0.0000017760, +0.0000017688,0.0000017651,0.0000017650,0.0000017319,0.0000017009, +0.0000016872,0.0000016780,0.0000016734,0.0000016695,0.0000016667, +0.0000016639,0.0000016630,0.0000016658,0.0000016692,0.0000016700, +0.0000016691,0.0000016682,0.0000016687,0.0000016739,0.0000016835, +0.0000016917,0.0000016962,0.0000016966,0.0000016952,0.0000016915, +0.0000016856,0.0000016789,0.0000016741,0.0000016718,0.0000016709, +0.0000016706,0.0000016702,0.0000016717,0.0000016781,0.0000016903, +0.0000017087,0.0000017186,0.0000017129,0.0000016907,0.0000016713, +0.0000016628,0.0000016482,0.0000016237,0.0000016025,0.0000015854, +0.0000015667,0.0000015505,0.0000015436,0.0000015342,0.0000014995, +0.0000014559,0.0000014351,0.0000014297,0.0000014243,0.0000014174, +0.0000014118,0.0000014089,0.0000014063,0.0000014043,0.0000014160, +0.0000014493,0.0000014792,0.0000014939,0.0000015015,0.0000015080, +0.0000015144,0.0000015165,0.0000015152,0.0000015143,0.0000015126, +0.0000015108,0.0000015159,0.0000015281,0.0000015360,0.0000015369, +0.0000015354,0.0000015360,0.0000015386,0.0000015407,0.0000015412, +0.0000015410,0.0000015408,0.0000015399,0.0000015374,0.0000015330, +0.0000015280,0.0000015226,0.0000015159,0.0000015080,0.0000015021, +0.0000015003,0.0000015009,0.0000015024,0.0000015022,0.0000014982, +0.0000014921,0.0000014896,0.0000014932,0.0000014996,0.0000014995, +0.0000014948,0.0000014925,0.0000014929,0.0000014939,0.0000014960, +0.0000015002,0.0000015047,0.0000015070,0.0000015074,0.0000015068, +0.0000015080,0.0000015149,0.0000015238,0.0000015251,0.0000015161, +0.0000015040,0.0000014935,0.0000014812,0.0000014768,0.0000015097, +0.0000015950,0.0000016626,0.0000016661,0.0000016538,0.0000015786, +0.0000014853,0.0000015088,0.0000016232,0.0000016788,0.0000016680, +0.0000016163,0.0000015555,0.0000015330,0.0000015470,0.0000015788, +0.0000015816,0.0000015328,0.0000014794,0.0000014777,0.0000015015, +0.0000015176,0.0000015330,0.0000015465,0.0000015502,0.0000015510, +0.0000015500,0.0000015511,0.0000015497,0.0000015403,0.0000015273, +0.0000015251,0.0000015351,0.0000015426,0.0000015353,0.0000015156, +0.0000014961,0.0000014872,0.0000014865,0.0000014818,0.0000014620, +0.0000014395,0.0000014253,0.0000014054,0.0000013769,0.0000013637, +0.0000013679,0.0000013759,0.0000013765,0.0000013712,0.0000013660, +0.0000013647,0.0000013644,0.0000013645,0.0000013669,0.0000013735, +0.0000013844,0.0000013897,0.0000013837,0.0000013592,0.0000013301, +0.0000013169,0.0000013197,0.0000013288,0.0000013597,0.0000014287, +0.0000014891,0.0000014981,0.0000014852,0.0000014785,0.0000014706, +0.0000014575,0.0000014502,0.0000014486,0.0000014502,0.0000014555, +0.0000014617,0.0000014665,0.0000014691,0.0000014748,0.0000014958, +0.0000015305,0.0000015523,0.0000015495,0.0000015372,0.0000015277, +0.0000015191,0.0000015267,0.0000015525,0.0000015450,0.0000015385, +0.0000015933,0.0000016775,0.0000017604,0.0000017902,0.0000018053, +0.0000018009,0.0000017454,0.0000017187,0.0000017225,0.0000017245, +0.0000017517,0.0000017940,0.0000017965,0.0000017394,0.0000016931, +0.0000017350,0.0000018587,0.0000019557,0.0000019769,0.0000019770, +0.0000019695,0.0000018991,0.0000017651,0.0000016998,0.0000017158, +0.0000017287,0.0000016999,0.0000016649,0.0000016547,0.0000016564, +0.0000016716,0.0000017157,0.0000017447,0.0000017475,0.0000017570, +0.0000017935,0.0000018126,0.0000018029,0.0000017771,0.0000017362, +0.0000016932,0.0000016717,0.0000016671,0.0000016670,0.0000016396, +0.0000016361,0.0000016434,0.0000016173,0.0000016042,0.0000016046, +0.0000016216,0.0000016569,0.0000016887,0.0000017070,0.0000017177, +0.0000017230,0.0000017234,0.0000017191,0.0000017032,0.0000016806, +0.0000016690,0.0000016695,0.0000016662,0.0000016424,0.0000016158, +0.0000016046,0.0000015979,0.0000015906,0.0000015913,0.0000016026, +0.0000016202,0.0000016393,0.0000016552,0.0000016656,0.0000016776, +0.0000016952,0.0000016963,0.0000016608,0.0000016487,0.0000016828, +0.0000016906,0.0000017085,0.0000017275,0.0000017276,0.0000017233, +0.0000017124,0.0000017033,0.0000016983,0.0000016883,0.0000016596, +0.0000016021,0.0000016104,0.0000016178,0.0000016315,0.0000016001, +0.0000015405,0.0000015208,0.0000015034,0.0000014998,0.0000014949, +0.0000014941,0.0000014864,0.0000014873,0.0000014926,0.0000014955, +0.0000014893,0.0000014758,0.0000014708,0.0000014762,0.0000014742, +0.0000014630,0.0000014638,0.0000014855,0.0000015119,0.0000015288, +0.0000015340,0.0000015271,0.0000015167,0.0000015248,0.0000015600, +0.0000015796,0.0000015685,0.0000015815,0.0000016128,0.0000016209, +0.0000016186,0.0000016209,0.0000016238,0.0000016205,0.0000016140, +0.0000016110,0.0000016109,0.0000016133,0.0000016141,0.0000016103, +0.0000016080,0.0000016095,0.0000016092,0.0000016053,0.0000015990, +0.0000015927,0.0000015889,0.0000015883,0.0000015980,0.0000016223, +0.0000016274,0.0000016264,0.0000016417,0.0000016471,0.0000016398, +0.0000016324,0.0000016183,0.0000015971,0.0000015919,0.0000016154, +0.0000016436,0.0000016316,0.0000015902,0.0000015722,0.0000015876, +0.0000016439,0.0000016891,0.0000016820,0.0000016643,0.0000016656, +0.0000016670,0.0000016619,0.0000016593,0.0000016635,0.0000016718, +0.0000016770,0.0000016793,0.0000016797,0.0000016718,0.0000016590, +0.0000016591,0.0000016680,0.0000016719,0.0000016745,0.0000016794, +0.0000016851,0.0000016932,0.0000016957,0.0000016926,0.0000016921, +0.0000017021,0.0000017207,0.0000017359,0.0000017437,0.0000017513, +0.0000017526,0.0000017289,0.0000017014,0.0000016909,0.0000016826, +0.0000016774,0.0000016710,0.0000016680,0.0000016671,0.0000016655, +0.0000016646,0.0000016661,0.0000016690,0.0000016704,0.0000016707, +0.0000016698,0.0000016695,0.0000016718,0.0000016770,0.0000016822, +0.0000016858,0.0000016866,0.0000016857,0.0000016826,0.0000016780, +0.0000016733,0.0000016703,0.0000016700,0.0000016703,0.0000016736, +0.0000016781,0.0000016866,0.0000017002,0.0000017139,0.0000017177, +0.0000017072,0.0000016849,0.0000016684,0.0000016612,0.0000016445, +0.0000016190,0.0000015994,0.0000015823,0.0000015628,0.0000015467, +0.0000015393,0.0000015292,0.0000014954,0.0000014536,0.0000014335, +0.0000014278,0.0000014213,0.0000014143,0.0000014095,0.0000014078, +0.0000014059,0.0000014023,0.0000014083,0.0000014384,0.0000014724, +0.0000014906,0.0000014991,0.0000015062,0.0000015132,0.0000015158, +0.0000015163,0.0000015199,0.0000015187,0.0000015123,0.0000015134, +0.0000015248,0.0000015339,0.0000015348,0.0000015322,0.0000015331, +0.0000015375,0.0000015413,0.0000015426,0.0000015422,0.0000015411, +0.0000015391,0.0000015355,0.0000015300,0.0000015238,0.0000015179, +0.0000015122,0.0000015062,0.0000015014,0.0000014996,0.0000015003, +0.0000015015,0.0000014998,0.0000014940,0.0000014881,0.0000014880, +0.0000014952,0.0000015006,0.0000014979,0.0000014927,0.0000014916, +0.0000014922,0.0000014930,0.0000014959,0.0000015005,0.0000015045, +0.0000015057,0.0000015071,0.0000015086,0.0000015112,0.0000015174, +0.0000015273,0.0000015313,0.0000015225,0.0000015048,0.0000014907, +0.0000014762,0.0000014691,0.0000015060,0.0000016036,0.0000016647, +0.0000016653,0.0000016353,0.0000015339,0.0000014935,0.0000015842, +0.0000016728,0.0000016734,0.0000016227,0.0000015602,0.0000015334, +0.0000015440,0.0000015764,0.0000015864,0.0000015495,0.0000014922, +0.0000014757,0.0000014965,0.0000015144,0.0000015283,0.0000015444, +0.0000015491,0.0000015466,0.0000015411,0.0000015385,0.0000015418, +0.0000015459,0.0000015406,0.0000015274,0.0000015213,0.0000015299, +0.0000015391,0.0000015352,0.0000015175,0.0000015005,0.0000014949, +0.0000014944,0.0000014783,0.0000014471,0.0000014288,0.0000014248, +0.0000014099,0.0000013805,0.0000013679,0.0000013716,0.0000013757, +0.0000013720,0.0000013666,0.0000013642,0.0000013631,0.0000013639, +0.0000013671,0.0000013721,0.0000013793,0.0000013830,0.0000013760, +0.0000013499,0.0000013233,0.0000013167,0.0000013221,0.0000013388, +0.0000013969,0.0000014739,0.0000014989,0.0000014872,0.0000014785, +0.0000014732,0.0000014593,0.0000014473,0.0000014475,0.0000014547, +0.0000014636,0.0000014716,0.0000014771,0.0000014816,0.0000014877, +0.0000014988,0.0000015193,0.0000015434,0.0000015542,0.0000015506, +0.0000015385,0.0000015291,0.0000015213,0.0000015225,0.0000015524, +0.0000015562,0.0000015368,0.0000015667,0.0000016332,0.0000017201, +0.0000017943,0.0000018293,0.0000018205,0.0000017501,0.0000017123, +0.0000017160,0.0000017257,0.0000017595,0.0000018057,0.0000018078, +0.0000017443,0.0000016979,0.0000017612,0.0000018910,0.0000019649, +0.0000019732,0.0000019742,0.0000019785,0.0000019511,0.0000018245, +0.0000017141,0.0000017083,0.0000017273,0.0000017000,0.0000016645, +0.0000016555,0.0000016596,0.0000016727,0.0000017152,0.0000017453, +0.0000017483,0.0000017556,0.0000017917,0.0000018143,0.0000018070, +0.0000017838,0.0000017500,0.0000017068,0.0000016790,0.0000016697, +0.0000016692,0.0000016391,0.0000016287,0.0000016362,0.0000016137, +0.0000016012,0.0000016013,0.0000016130,0.0000016463,0.0000016813, +0.0000017045,0.0000017166,0.0000017200,0.0000017183,0.0000017041, +0.0000016808,0.0000016642,0.0000016627,0.0000016645,0.0000016557, +0.0000016317,0.0000016122,0.0000016065,0.0000015984,0.0000015923, +0.0000015959,0.0000016088,0.0000016251,0.0000016450,0.0000016590, +0.0000016714,0.0000016904,0.0000017012,0.0000016716,0.0000016375, +0.0000016716,0.0000016936,0.0000017027,0.0000017237,0.0000017254, +0.0000017162,0.0000017055,0.0000017009,0.0000016951,0.0000016784, +0.0000016367,0.0000016022,0.0000016147,0.0000016224,0.0000016272, +0.0000015757,0.0000015300,0.0000015165,0.0000015082,0.0000015002, +0.0000014952,0.0000014959,0.0000014881,0.0000014896,0.0000014961, +0.0000014978,0.0000014902,0.0000014781,0.0000014736,0.0000014756, +0.0000014721,0.0000014619,0.0000014638,0.0000014863,0.0000015147, +0.0000015311,0.0000015323,0.0000015221,0.0000015170,0.0000015419, +0.0000015731,0.0000015699,0.0000015734,0.0000016062,0.0000016200, +0.0000016166,0.0000016180,0.0000016239,0.0000016223,0.0000016156, +0.0000016111,0.0000016094,0.0000016098,0.0000016116,0.0000016108, +0.0000016056,0.0000016015,0.0000015999,0.0000015973,0.0000015935, +0.0000015897,0.0000015878,0.0000015886,0.0000016036,0.0000016264, +0.0000016287,0.0000016273,0.0000016400,0.0000016471,0.0000016423, +0.0000016338,0.0000016201,0.0000015988,0.0000015915,0.0000016052, +0.0000016382,0.0000016387,0.0000015976,0.0000015700,0.0000015784, +0.0000016264,0.0000016809,0.0000016841,0.0000016638,0.0000016634, +0.0000016682,0.0000016657,0.0000016633,0.0000016681,0.0000016762, +0.0000016784,0.0000016787,0.0000016802,0.0000016805,0.0000016751, +0.0000016620,0.0000016597,0.0000016672,0.0000016711,0.0000016713, +0.0000016759,0.0000016822,0.0000016897,0.0000016952,0.0000016979, +0.0000017025,0.0000017140,0.0000017268,0.0000017355,0.0000017337, +0.0000017159,0.0000016972,0.0000016883,0.0000016814,0.0000016808, +0.0000016742,0.0000016684,0.0000016686,0.0000016712,0.0000016702, +0.0000016667,0.0000016650,0.0000016652,0.0000016670,0.0000016682, +0.0000016683,0.0000016696,0.0000016730,0.0000016773,0.0000016802, +0.0000016801,0.0000016796,0.0000016777,0.0000016746,0.0000016716, +0.0000016696,0.0000016698,0.0000016734,0.0000016776,0.0000016848, +0.0000016962,0.0000017096,0.0000017163,0.0000017140,0.0000016986, +0.0000016784,0.0000016660,0.0000016590,0.0000016403,0.0000016146, +0.0000015958,0.0000015774,0.0000015569,0.0000015416,0.0000015351, +0.0000015269,0.0000014958,0.0000014548,0.0000014338,0.0000014272, +0.0000014204,0.0000014136,0.0000014098,0.0000014081,0.0000014056, +0.0000014009,0.0000014041,0.0000014313,0.0000014667,0.0000014870, +0.0000014963,0.0000015037,0.0000015106,0.0000015142,0.0000015193, +0.0000015284,0.0000015275,0.0000015158,0.0000015128,0.0000015238, +0.0000015329,0.0000015331,0.0000015299,0.0000015311,0.0000015372, +0.0000015427,0.0000015450,0.0000015446,0.0000015425,0.0000015391, +0.0000015339,0.0000015266,0.0000015188,0.0000015128,0.0000015083, +0.0000015040,0.0000014998,0.0000014976,0.0000014979,0.0000014981, +0.0000014943,0.0000014872,0.0000014835,0.0000014880,0.0000014976, +0.0000015005,0.0000014959,0.0000014909,0.0000014898,0.0000014903, +0.0000014929,0.0000014991,0.0000015066,0.0000015101,0.0000015090, +0.0000015076,0.0000015100,0.0000015147,0.0000015206,0.0000015287, +0.0000015327,0.0000015255,0.0000015061,0.0000014907,0.0000014746, +0.0000014656,0.0000015088,0.0000016155,0.0000016635,0.0000016603, +0.0000016030,0.0000015112,0.0000015384,0.0000016518,0.0000016792, +0.0000016334,0.0000015665,0.0000015333,0.0000015420,0.0000015749, +0.0000015895,0.0000015639,0.0000015067,0.0000014793,0.0000014902, +0.0000015100,0.0000015231,0.0000015401,0.0000015488,0.0000015474, +0.0000015408,0.0000015348,0.0000015321,0.0000015337,0.0000015391, +0.0000015385,0.0000015255,0.0000015175,0.0000015263,0.0000015373, +0.0000015330,0.0000015161,0.0000015041,0.0000015020,0.0000014928, +0.0000014649,0.0000014380,0.0000014312,0.0000014255,0.0000013992, +0.0000013743,0.0000013706,0.0000013745,0.0000013725,0.0000013669, +0.0000013629,0.0000013615,0.0000013638,0.0000013679,0.0000013709, +0.0000013754,0.0000013771,0.0000013654,0.0000013370,0.0000013182, +0.0000013188,0.0000013288,0.0000013680,0.0000014447,0.0000014978, +0.0000014946,0.0000014792,0.0000014755,0.0000014673,0.0000014537, +0.0000014482,0.0000014517,0.0000014616,0.0000014729,0.0000014825, +0.0000014899,0.0000014980,0.0000015099,0.0000015254,0.0000015412, +0.0000015526,0.0000015557,0.0000015517,0.0000015403,0.0000015301, +0.0000015221,0.0000015202,0.0000015479,0.0000015624,0.0000015416, +0.0000015528,0.0000016024,0.0000016717,0.0000017633,0.0000018268, +0.0000018276,0.0000017607,0.0000017082,0.0000017145,0.0000017288, +0.0000017623,0.0000018094,0.0000018148,0.0000017516,0.0000017039, +0.0000017653,0.0000018921,0.0000019594,0.0000019652,0.0000019653, +0.0000019757,0.0000019749,0.0000018790,0.0000017372,0.0000017092, +0.0000017246,0.0000017013,0.0000016678,0.0000016600,0.0000016645, +0.0000016741,0.0000017139,0.0000017450,0.0000017484,0.0000017538, +0.0000017881,0.0000018158,0.0000018127,0.0000017922,0.0000017660, +0.0000017243,0.0000016890,0.0000016739,0.0000016722,0.0000016396, +0.0000016233,0.0000016286,0.0000016093,0.0000015975,0.0000015972, +0.0000016051,0.0000016352,0.0000016721,0.0000016980,0.0000017092, +0.0000017098,0.0000017004,0.0000016788,0.0000016599,0.0000016540, +0.0000016586,0.0000016611,0.0000016475,0.0000016244,0.0000016117, +0.0000016066,0.0000015985,0.0000015947,0.0000016010,0.0000016128, +0.0000016319,0.0000016514,0.0000016652,0.0000016848,0.0000017004, +0.0000016821,0.0000016345,0.0000016546,0.0000016963,0.0000016999, +0.0000017135,0.0000017171,0.0000017080,0.0000017015,0.0000016990, +0.0000016902,0.0000016621,0.0000016158,0.0000016069,0.0000016168, +0.0000016244,0.0000016108,0.0000015510,0.0000015237,0.0000015144, +0.0000015117,0.0000015001,0.0000014970,0.0000014979,0.0000014902, +0.0000014923,0.0000014988,0.0000014986,0.0000014897,0.0000014803, +0.0000014766,0.0000014760,0.0000014704,0.0000014610,0.0000014646, +0.0000014891,0.0000015188,0.0000015329,0.0000015287,0.0000015175, +0.0000015268,0.0000015612,0.0000015702,0.0000015645,0.0000015924, +0.0000016161,0.0000016131,0.0000016128,0.0000016217,0.0000016241, +0.0000016180,0.0000016118,0.0000016079,0.0000016071,0.0000016081, +0.0000016088,0.0000016071,0.0000016022,0.0000015975,0.0000015939, +0.0000015911,0.0000015898,0.0000015880,0.0000015922,0.0000016116, +0.0000016294,0.0000016288,0.0000016289,0.0000016388,0.0000016482, +0.0000016449,0.0000016354,0.0000016216,0.0000016013,0.0000015918, +0.0000015986,0.0000016290,0.0000016414,0.0000016060,0.0000015733, +0.0000015716,0.0000016103,0.0000016718,0.0000016857,0.0000016648, +0.0000016615,0.0000016679,0.0000016673,0.0000016661,0.0000016718, +0.0000016775,0.0000016785,0.0000016803,0.0000016828,0.0000016819, +0.0000016807,0.0000016782,0.0000016658,0.0000016596,0.0000016649, +0.0000016688,0.0000016687,0.0000016715,0.0000016787,0.0000016860, +0.0000016924,0.0000016988,0.0000017057,0.0000017096,0.0000017075, +0.0000016992,0.0000016908,0.0000016821,0.0000016749,0.0000016761, +0.0000016755,0.0000016685,0.0000016679,0.0000016720,0.0000016744, +0.0000016717,0.0000016671,0.0000016645,0.0000016623,0.0000016622, +0.0000016645,0.0000016664,0.0000016686,0.0000016738,0.0000016810, +0.0000016851,0.0000016853,0.0000016842,0.0000016816,0.0000016783, +0.0000016759,0.0000016749,0.0000016771,0.0000016839,0.0000016944, +0.0000017052,0.0000017119,0.0000017140,0.0000017041,0.0000016877, +0.0000016720,0.0000016646,0.0000016560,0.0000016347,0.0000016093, +0.0000015904,0.0000015703,0.0000015498,0.0000015369,0.0000015319, +0.0000015260,0.0000014988,0.0000014579,0.0000014339,0.0000014263, +0.0000014202,0.0000014148,0.0000014116,0.0000014093,0.0000014050, +0.0000013995,0.0000014010,0.0000014266,0.0000014626,0.0000014840, +0.0000014927,0.0000015002,0.0000015072,0.0000015128,0.0000015245, +0.0000015394,0.0000015362,0.0000015186,0.0000015132,0.0000015237, +0.0000015323,0.0000015308,0.0000015264,0.0000015272,0.0000015344, +0.0000015429,0.0000015471,0.0000015462,0.0000015426,0.0000015380, +0.0000015321,0.0000015241,0.0000015153,0.0000015087,0.0000015049, +0.0000015016,0.0000014975,0.0000014944,0.0000014936,0.0000014920, +0.0000014862,0.0000014797,0.0000014797,0.0000014897,0.0000014995, +0.0000014995,0.0000014934,0.0000014881,0.0000014865,0.0000014897, +0.0000014988,0.0000015137,0.0000015252,0.0000015271,0.0000015211, +0.0000015127,0.0000015118,0.0000015170,0.0000015223,0.0000015274, +0.0000015301,0.0000015242,0.0000015078,0.0000014927,0.0000014747, +0.0000014664,0.0000015195,0.0000016294,0.0000016622,0.0000016458, +0.0000015648,0.0000015148,0.0000016061,0.0000016781,0.0000016504, +0.0000015774,0.0000015369,0.0000015412,0.0000015721,0.0000015922, +0.0000015756,0.0000015223,0.0000014834,0.0000014858,0.0000015050, +0.0000015175,0.0000015333,0.0000015482,0.0000015484,0.0000015415, +0.0000015353,0.0000015331,0.0000015301,0.0000015281,0.0000015336, +0.0000015343,0.0000015222,0.0000015157,0.0000015270,0.0000015351, +0.0000015268,0.0000015117,0.0000015042,0.0000014977,0.0000014835, +0.0000014655,0.0000014514,0.0000014352,0.0000014055,0.0000013780, +0.0000013711,0.0000013720,0.0000013698,0.0000013645,0.0000013606, +0.0000013610,0.0000013656,0.0000013688,0.0000013697,0.0000013718, +0.0000013697,0.0000013502,0.0000013247,0.0000013181,0.0000013215, +0.0000013399,0.0000014056,0.0000014826,0.0000015017,0.0000014824, +0.0000014709,0.0000014669,0.0000014579,0.0000014492,0.0000014472, +0.0000014508,0.0000014582,0.0000014674,0.0000014761,0.0000014839, +0.0000014947,0.0000015123,0.0000015336,0.0000015488,0.0000015552, +0.0000015559,0.0000015529,0.0000015432,0.0000015316,0.0000015227, +0.0000015195,0.0000015412,0.0000015653,0.0000015507,0.0000015486, +0.0000015816,0.0000016334,0.0000017180,0.0000017989,0.0000018258, +0.0000017669,0.0000017047,0.0000017119,0.0000017291,0.0000017608, +0.0000018060,0.0000018174,0.0000017630,0.0000017049,0.0000017525, +0.0000018707,0.0000019455,0.0000019562,0.0000019561,0.0000019666, +0.0000019764,0.0000019175,0.0000017690,0.0000017098,0.0000017238, +0.0000017054,0.0000016725,0.0000016656,0.0000016690,0.0000016757, +0.0000017112,0.0000017443,0.0000017489,0.0000017507,0.0000017806, +0.0000018125,0.0000018159,0.0000018011,0.0000017815,0.0000017429, +0.0000017001,0.0000016786,0.0000016739,0.0000016389,0.0000016200, +0.0000016216,0.0000016045,0.0000015943,0.0000015938,0.0000015989, +0.0000016250,0.0000016604,0.0000016854,0.0000016939,0.0000016899, +0.0000016732,0.0000016552,0.0000016463,0.0000016493,0.0000016592, +0.0000016577,0.0000016389,0.0000016188,0.0000016108,0.0000016073, +0.0000015990,0.0000015979,0.0000016037,0.0000016190,0.0000016408, +0.0000016594,0.0000016779,0.0000016986,0.0000016913,0.0000016384, +0.0000016374,0.0000016931,0.0000016997,0.0000017034,0.0000017059, +0.0000017022,0.0000016996,0.0000016958,0.0000016808,0.0000016411, +0.0000016037,0.0000016116,0.0000016187,0.0000016224,0.0000015853, +0.0000015316,0.0000015204,0.0000015159,0.0000015133,0.0000015007, +0.0000015001,0.0000014995,0.0000014922,0.0000014945,0.0000014996, +0.0000014970,0.0000014886,0.0000014829,0.0000014794,0.0000014760, +0.0000014686,0.0000014602,0.0000014664,0.0000014945,0.0000015236, +0.0000015318,0.0000015225,0.0000015170,0.0000015443,0.0000015667, +0.0000015599,0.0000015750,0.0000016051,0.0000016063,0.0000016043, +0.0000016162,0.0000016241,0.0000016213,0.0000016162,0.0000016107, +0.0000016066,0.0000016045,0.0000016049,0.0000016052,0.0000016034, +0.0000015995,0.0000015956,0.0000015922,0.0000015905,0.0000015914, +0.0000016005,0.0000016202,0.0000016303,0.0000016282,0.0000016305, +0.0000016380,0.0000016486,0.0000016476,0.0000016371,0.0000016228, +0.0000016052,0.0000015940,0.0000015950,0.0000016201,0.0000016382, +0.0000016136,0.0000015761,0.0000015689,0.0000015975,0.0000016611, +0.0000016840,0.0000016671,0.0000016598,0.0000016665,0.0000016679, +0.0000016689,0.0000016743,0.0000016774,0.0000016801,0.0000016859, +0.0000016896,0.0000016894,0.0000016859,0.0000016824,0.0000016806, +0.0000016695,0.0000016596,0.0000016613,0.0000016659,0.0000016672, +0.0000016680,0.0000016717,0.0000016768,0.0000016805,0.0000016842, +0.0000016863,0.0000016849,0.0000016807,0.0000016746,0.0000016678, +0.0000016667,0.0000016683,0.0000016664,0.0000016661,0.0000016699, +0.0000016725,0.0000016734,0.0000016715,0.0000016690,0.0000016684, +0.0000016674,0.0000016674,0.0000016704,0.0000016734,0.0000016762, +0.0000016810,0.0000016892,0.0000016962,0.0000016989,0.0000016987, +0.0000016962,0.0000016927,0.0000016911,0.0000016932,0.0000016984, +0.0000017047,0.0000017076,0.0000017075,0.0000016998,0.0000016881, +0.0000016761,0.0000016681,0.0000016642,0.0000016522,0.0000016275, +0.0000016030,0.0000015840,0.0000015623,0.0000015425,0.0000015324, +0.0000015286,0.0000015243,0.0000015007,0.0000014594,0.0000014319, +0.0000014239,0.0000014199,0.0000014162,0.0000014140,0.0000014108, +0.0000014043,0.0000013982,0.0000014000,0.0000014246,0.0000014606, +0.0000014820,0.0000014888,0.0000014951,0.0000015032,0.0000015130, +0.0000015334,0.0000015511,0.0000015422,0.0000015200,0.0000015133, +0.0000015231,0.0000015296,0.0000015269,0.0000015206,0.0000015213, +0.0000015278,0.0000015384,0.0000015458,0.0000015464,0.0000015417, +0.0000015349,0.0000015282,0.0000015211,0.0000015131,0.0000015062, +0.0000015022,0.0000014989,0.0000014943,0.0000014904,0.0000014886, +0.0000014850,0.0000014775,0.0000014734,0.0000014786,0.0000014923, +0.0000014999,0.0000014977,0.0000014899,0.0000014844,0.0000014853, +0.0000014954,0.0000015160,0.0000015361,0.0000015466,0.0000015470, +0.0000015382,0.0000015231,0.0000015149,0.0000015172,0.0000015217, +0.0000015234,0.0000015234,0.0000015195,0.0000015091,0.0000014955, +0.0000014754,0.0000014715,0.0000015360,0.0000016416,0.0000016617, +0.0000016217,0.0000015309,0.0000015477,0.0000016613,0.0000016699, +0.0000015965,0.0000015400,0.0000015394,0.0000015690,0.0000015950, +0.0000015837,0.0000015365,0.0000014922,0.0000014853,0.0000015008, +0.0000015126,0.0000015250,0.0000015434,0.0000015487,0.0000015388, +0.0000015266,0.0000015252,0.0000015301,0.0000015292,0.0000015256, +0.0000015294,0.0000015293,0.0000015181,0.0000015178,0.0000015310, +0.0000015318,0.0000015170,0.0000015018,0.0000014941,0.0000014939, +0.0000014923,0.0000014718,0.0000014382,0.0000013975,0.0000013724, +0.0000013675,0.0000013672,0.0000013644,0.0000013602,0.0000013597, +0.0000013634,0.0000013687,0.0000013688,0.0000013675,0.0000013670, +0.0000013574,0.0000013332,0.0000013190,0.0000013209,0.0000013283, +0.0000013662,0.0000014502,0.0000015066,0.0000014989,0.0000014735, +0.0000014615,0.0000014562,0.0000014505,0.0000014471,0.0000014465, +0.0000014482,0.0000014527,0.0000014594,0.0000014667,0.0000014727, +0.0000014798,0.0000014954,0.0000015211,0.0000015435,0.0000015527, +0.0000015537,0.0000015531,0.0000015464,0.0000015340,0.0000015233, +0.0000015186,0.0000015331,0.0000015651,0.0000015613,0.0000015511, +0.0000015720,0.0000016083,0.0000016748,0.0000017536,0.0000017875, +0.0000017614,0.0000017119,0.0000017093,0.0000017273,0.0000017569, +0.0000017984,0.0000018128,0.0000017787,0.0000017221,0.0000017358, +0.0000018341,0.0000019227,0.0000019474,0.0000019490,0.0000019553, +0.0000019734,0.0000019458,0.0000018070,0.0000017162,0.0000017242, +0.0000017092,0.0000016774,0.0000016718,0.0000016733,0.0000016780, +0.0000017074,0.0000017423,0.0000017509,0.0000017502,0.0000017684, +0.0000018013,0.0000018122,0.0000018064,0.0000017947,0.0000017606, +0.0000017118,0.0000016836,0.0000016741,0.0000016362,0.0000016179, +0.0000016168,0.0000016000,0.0000015910,0.0000015912,0.0000015955, +0.0000016165,0.0000016462,0.0000016671,0.0000016702,0.0000016622, +0.0000016490,0.0000016401,0.0000016394,0.0000016512,0.0000016590, +0.0000016515,0.0000016288,0.0000016148,0.0000016125,0.0000016070, +0.0000015996,0.0000015986,0.0000016086,0.0000016284,0.0000016523, +0.0000016711,0.0000016948,0.0000016974,0.0000016479,0.0000016243, +0.0000016817,0.0000017006,0.0000017003,0.0000017000,0.0000016998, +0.0000016973,0.0000016897,0.0000016648,0.0000016201,0.0000016005, +0.0000016147,0.0000016185,0.0000016108,0.0000015575,0.0000015216, +0.0000015204,0.0000015198,0.0000015125,0.0000015027,0.0000015031, +0.0000014998,0.0000014931,0.0000014958,0.0000014983,0.0000014936, +0.0000014886,0.0000014861,0.0000014812,0.0000014748,0.0000014668, +0.0000014614,0.0000014709,0.0000015028,0.0000015277,0.0000015283, +0.0000015171,0.0000015276,0.0000015613,0.0000015612,0.0000015610, +0.0000015897,0.0000015961,0.0000015923,0.0000016067,0.0000016220, +0.0000016227,0.0000016204,0.0000016239,0.0000016192,0.0000016085, +0.0000016036,0.0000016011,0.0000016005,0.0000015988,0.0000015966, +0.0000015945,0.0000015943,0.0000016003,0.0000016142,0.0000016276, +0.0000016302,0.0000016276,0.0000016316,0.0000016375,0.0000016489, +0.0000016499,0.0000016387,0.0000016232,0.0000016095,0.0000016023, +0.0000015983,0.0000016128,0.0000016373,0.0000016200,0.0000015792, +0.0000015663,0.0000015874,0.0000016491,0.0000016829,0.0000016690, +0.0000016586,0.0000016651,0.0000016691,0.0000016719,0.0000016755, +0.0000016773,0.0000016834,0.0000016905,0.0000016921,0.0000016911, +0.0000016903,0.0000016890,0.0000016855,0.0000016831,0.0000016742, +0.0000016606,0.0000016576,0.0000016626,0.0000016662,0.0000016667, +0.0000016662,0.0000016659,0.0000016672,0.0000016692,0.0000016692, +0.0000016681,0.0000016657,0.0000016615,0.0000016575,0.0000016579, +0.0000016615,0.0000016662,0.0000016686,0.0000016699,0.0000016730, +0.0000016760,0.0000016790,0.0000016814,0.0000016813,0.0000016797, +0.0000016796,0.0000016815,0.0000016833,0.0000016859,0.0000016927, +0.0000017016,0.0000017080,0.0000017122,0.0000017144,0.0000017147, +0.0000017143,0.0000017101,0.0000017073,0.0000017014,0.0000016904, +0.0000016787,0.0000016697,0.0000016637,0.0000016632,0.0000016598, +0.0000016438,0.0000016187,0.0000015975,0.0000015793,0.0000015562, +0.0000015369,0.0000015280,0.0000015242,0.0000015214,0.0000015017, +0.0000014604,0.0000014290,0.0000014203,0.0000014188,0.0000014168, +0.0000014151,0.0000014121,0.0000014055,0.0000013992,0.0000014017, +0.0000014264,0.0000014612,0.0000014805,0.0000014850,0.0000014891, +0.0000014994,0.0000015170,0.0000015454,0.0000015589,0.0000015445, +0.0000015181,0.0000015126,0.0000015213,0.0000015250,0.0000015217, +0.0000015145,0.0000015130,0.0000015192,0.0000015306,0.0000015401, +0.0000015431,0.0000015397,0.0000015316,0.0000015232,0.0000015160, +0.0000015090,0.0000015030,0.0000014994,0.0000014956,0.0000014900, +0.0000014856,0.0000014829,0.0000014773,0.0000014695,0.0000014682, +0.0000014791,0.0000014942,0.0000014992,0.0000014944,0.0000014849, +0.0000014821,0.0000014903,0.0000015137,0.0000015401,0.0000015561, +0.0000015623,0.0000015629,0.0000015553,0.0000015373,0.0000015205, +0.0000015159,0.0000015176,0.0000015178,0.0000015153,0.0000015132, +0.0000015089,0.0000014966,0.0000014755,0.0000014787,0.0000015550, +0.0000016533,0.0000016557,0.0000015899,0.0000015265,0.0000016032, +0.0000016757,0.0000016272,0.0000015494,0.0000015348,0.0000015624, +0.0000015906,0.0000015875,0.0000015462,0.0000015023,0.0000014893, +0.0000014979,0.0000015083,0.0000015170,0.0000015355,0.0000015465, +0.0000015382,0.0000015170,0.0000015062,0.0000015128,0.0000015257, +0.0000015280,0.0000015243,0.0000015260,0.0000015220,0.0000015159, +0.0000015253,0.0000015312,0.0000015171,0.0000014961,0.0000014892, +0.0000014967,0.0000014972,0.0000014694,0.0000014191,0.0000013773, +0.0000013614,0.0000013608,0.0000013602,0.0000013582,0.0000013584, +0.0000013619,0.0000013683,0.0000013703,0.0000013672,0.0000013649, +0.0000013591,0.0000013394,0.0000013198,0.0000013187,0.0000013260, +0.0000013435,0.0000014073,0.0000014901,0.0000015173,0.0000015009, +0.0000014783,0.0000014702,0.0000014669,0.0000014621,0.0000014558, +0.0000014513,0.0000014518,0.0000014585,0.0000014682,0.0000014761, +0.0000014794,0.0000014795,0.0000014856,0.0000015014,0.0000015266, +0.0000015441,0.0000015491,0.0000015505,0.0000015480,0.0000015375, +0.0000015254,0.0000015191,0.0000015277,0.0000015596,0.0000015673, +0.0000015578,0.0000015687,0.0000015912,0.0000016422,0.0000017160, +0.0000017564,0.0000017446,0.0000017090,0.0000017041,0.0000017255, +0.0000017536,0.0000017865,0.0000018044,0.0000017894,0.0000017385, +0.0000017218,0.0000017924,0.0000018932,0.0000019399,0.0000019437, +0.0000019437,0.0000019618,0.0000019538,0.0000018406,0.0000017256, +0.0000017194,0.0000017139,0.0000016824,0.0000016765,0.0000016764, +0.0000016797,0.0000017004,0.0000017371,0.0000017513,0.0000017484, +0.0000017557,0.0000017841,0.0000018064,0.0000018094,0.0000018046, +0.0000017755,0.0000017223,0.0000016877,0.0000016719,0.0000016316, +0.0000016155,0.0000016119,0.0000015946,0.0000015877,0.0000015908, +0.0000015943,0.0000016079,0.0000016290,0.0000016422,0.0000016442, +0.0000016396,0.0000016349,0.0000016333,0.0000016401,0.0000016552, +0.0000016578,0.0000016400,0.0000016213,0.0000016146,0.0000016136, +0.0000016059,0.0000015984,0.0000016015,0.0000016172,0.0000016427, +0.0000016648,0.0000016884,0.0000016993,0.0000016578,0.0000016175, +0.0000016658,0.0000017008,0.0000017009,0.0000016999,0.0000016984, +0.0000016932,0.0000016791,0.0000016431,0.0000016054,0.0000016029, +0.0000016174,0.0000016168,0.0000015885,0.0000015342,0.0000015207, +0.0000015229,0.0000015224,0.0000015109,0.0000015044,0.0000015050, +0.0000014988,0.0000014935,0.0000014956,0.0000014937,0.0000014897, +0.0000014907,0.0000014895,0.0000014812,0.0000014726,0.0000014651, +0.0000014622,0.0000014783,0.0000015125,0.0000015289,0.0000015222, +0.0000015162,0.0000015462,0.0000015652,0.0000015541,0.0000015753, +0.0000015923,0.0000015827,0.0000015943,0.0000016152,0.0000016234, +0.0000016202,0.0000016264,0.0000016425,0.0000016389,0.0000016218, +0.0000016095,0.0000016042,0.0000016017,0.0000016010,0.0000016021, +0.0000016075,0.0000016171,0.0000016275,0.0000016306,0.0000016275, +0.0000016280,0.0000016324,0.0000016372,0.0000016490,0.0000016518, +0.0000016404,0.0000016234,0.0000016125,0.0000016115,0.0000016050, +0.0000016085,0.0000016327,0.0000016250,0.0000015830,0.0000015633, +0.0000015784,0.0000016349,0.0000016795,0.0000016710,0.0000016555, +0.0000016638,0.0000016727,0.0000016755,0.0000016759,0.0000016778, +0.0000016861,0.0000016917,0.0000016905,0.0000016875,0.0000016870, +0.0000016887,0.0000016907,0.0000016888,0.0000016849,0.0000016778, +0.0000016640,0.0000016557,0.0000016580,0.0000016632,0.0000016642, +0.0000016624,0.0000016626,0.0000016647,0.0000016653,0.0000016642, +0.0000016605,0.0000016542,0.0000016509,0.0000016548,0.0000016610, +0.0000016628,0.0000016640,0.0000016695,0.0000016782,0.0000016860, +0.0000016906,0.0000016915,0.0000016898,0.0000016859,0.0000016826, +0.0000016830,0.0000016858,0.0000016899,0.0000016978,0.0000017087, +0.0000017168,0.0000017192,0.0000017205,0.0000017184,0.0000017095, +0.0000016958,0.0000016810,0.0000016674,0.0000016581,0.0000016538, +0.0000016545,0.0000016553,0.0000016482,0.0000016294,0.0000016081, +0.0000015920,0.0000015739,0.0000015504,0.0000015323,0.0000015231, +0.0000015181,0.0000015162,0.0000015026,0.0000014624,0.0000014262, +0.0000014145,0.0000014140,0.0000014138,0.0000014141,0.0000014131, +0.0000014084,0.0000014032,0.0000014069,0.0000014317,0.0000014649, +0.0000014797,0.0000014807,0.0000014832,0.0000014962,0.0000015245, +0.0000015572,0.0000015639,0.0000015401,0.0000015147,0.0000015116, +0.0000015191,0.0000015208,0.0000015167,0.0000015107,0.0000015080, +0.0000015125,0.0000015226,0.0000015323,0.0000015366,0.0000015347, +0.0000015272,0.0000015178,0.0000015101,0.0000015039,0.0000014984, +0.0000014943,0.0000014902,0.0000014846,0.0000014798,0.0000014760, +0.0000014693,0.0000014626,0.0000014648,0.0000014796,0.0000014947, +0.0000014975,0.0000014900,0.0000014828,0.0000014863,0.0000015091, +0.0000015399,0.0000015606,0.0000015682,0.0000015717,0.0000015735, +0.0000015701,0.0000015550,0.0000015320,0.0000015154,0.0000015114, +0.0000015108,0.0000015075,0.0000015073,0.0000015071,0.0000014936, +0.0000014762,0.0000014885,0.0000015747,0.0000016560,0.0000016395, +0.0000015593,0.0000015471,0.0000016548,0.0000016613,0.0000015736, +0.0000015346,0.0000015530,0.0000015851,0.0000015845,0.0000015505, +0.0000015094,0.0000014948,0.0000014993,0.0000015064,0.0000015106, +0.0000015245,0.0000015426,0.0000015393,0.0000015160,0.0000014962, +0.0000014945,0.0000015063,0.0000015227,0.0000015258,0.0000015223, +0.0000015204,0.0000015160,0.0000015214,0.0000015294,0.0000015130, +0.0000014899,0.0000014881,0.0000014947,0.0000014780,0.0000014298, +0.0000013796,0.0000013546,0.0000013514,0.0000013525,0.0000013532, +0.0000013557,0.0000013610,0.0000013678,0.0000013712,0.0000013682, +0.0000013642,0.0000013609,0.0000013459,0.0000013234,0.0000013176, +0.0000013268,0.0000013330,0.0000013659,0.0000014502,0.0000015194, +0.0000015302,0.0000015167,0.0000015088,0.0000015076,0.0000015057, +0.0000014973,0.0000014824,0.0000014715,0.0000014733,0.0000014855, +0.0000014987,0.0000015062,0.0000015069,0.0000015039,0.0000014998, +0.0000015017,0.0000015170,0.0000015339,0.0000015426,0.0000015456, +0.0000015472,0.0000015412,0.0000015274,0.0000015178,0.0000015249, +0.0000015549,0.0000015693,0.0000015628,0.0000015690,0.0000015827, +0.0000016206,0.0000016874,0.0000017273,0.0000017243,0.0000017058, +0.0000017047,0.0000017251,0.0000017500,0.0000017753,0.0000017925, +0.0000017913,0.0000017557,0.0000017220,0.0000017587,0.0000018623, +0.0000019311,0.0000019400,0.0000019330,0.0000019392,0.0000019530, +0.0000018642,0.0000017326,0.0000017187,0.0000017193,0.0000016876, +0.0000016797,0.0000016795,0.0000016810,0.0000016907,0.0000017259, +0.0000017492,0.0000017501,0.0000017495,0.0000017680,0.0000017974, +0.0000018105,0.0000018110,0.0000017877,0.0000017310,0.0000016899, +0.0000016670,0.0000016253,0.0000016128,0.0000016069,0.0000015897, +0.0000015871,0.0000015918,0.0000015931,0.0000015986,0.0000016094, +0.0000016186,0.0000016239,0.0000016266,0.0000016297,0.0000016327, +0.0000016457,0.0000016575,0.0000016498,0.0000016283,0.0000016184, +0.0000016155,0.0000016131,0.0000016022,0.0000015985,0.0000016084, +0.0000016318,0.0000016580,0.0000016821,0.0000016982,0.0000016667, +0.0000016179,0.0000016479,0.0000016982,0.0000017001,0.0000016995, +0.0000016957,0.0000016865,0.0000016626,0.0000016208,0.0000015983, +0.0000016087,0.0000016185,0.0000016096,0.0000015618,0.0000015238, +0.0000015232,0.0000015257,0.0000015213,0.0000015085,0.0000015059, +0.0000015052,0.0000014970,0.0000014938,0.0000014927,0.0000014866, +0.0000014878,0.0000014948,0.0000014922,0.0000014803,0.0000014704, +0.0000014641,0.0000014647,0.0000014888,0.0000015211,0.0000015279, +0.0000015163,0.0000015279,0.0000015628,0.0000015556,0.0000015570, +0.0000015876,0.0000015864,0.0000015872,0.0000016080,0.0000016192, +0.0000016221,0.0000016211,0.0000016358,0.0000016610,0.0000016606, +0.0000016462,0.0000016337,0.0000016265,0.0000016233,0.0000016241, +0.0000016288,0.0000016341,0.0000016332,0.0000016278,0.0000016249, +0.0000016292,0.0000016330,0.0000016375,0.0000016495,0.0000016536, +0.0000016422,0.0000016242,0.0000016142,0.0000016167,0.0000016106, +0.0000016053,0.0000016272,0.0000016283,0.0000015871,0.0000015604, +0.0000015702,0.0000016186,0.0000016726,0.0000016746,0.0000016543, +0.0000016606,0.0000016760,0.0000016790,0.0000016754,0.0000016779, +0.0000016881,0.0000016912,0.0000016853,0.0000016794,0.0000016778, +0.0000016802,0.0000016866,0.0000016924,0.0000016918,0.0000016860, +0.0000016813,0.0000016706,0.0000016573,0.0000016527,0.0000016551, +0.0000016576,0.0000016596,0.0000016622,0.0000016628,0.0000016613, +0.0000016581,0.0000016535,0.0000016516,0.0000016544,0.0000016576, +0.0000016581,0.0000016629,0.0000016727,0.0000016818,0.0000016881, +0.0000016926,0.0000016945,0.0000016943,0.0000016934,0.0000016924, +0.0000016936,0.0000016969,0.0000016986,0.0000017009,0.0000017034, +0.0000017039,0.0000017025,0.0000016984,0.0000016888,0.0000016764, +0.0000016633,0.0000016524,0.0000016466,0.0000016464,0.0000016482, +0.0000016453,0.0000016323,0.0000016133,0.0000015972,0.0000015835, +0.0000015642,0.0000015417,0.0000015273,0.0000015192,0.0000015123, +0.0000015104,0.0000015031,0.0000014687,0.0000014277,0.0000014093, +0.0000014071,0.0000014075,0.0000014108,0.0000014129,0.0000014113, +0.0000014081,0.0000014126,0.0000014384,0.0000014695,0.0000014788, +0.0000014763,0.0000014792,0.0000014981,0.0000015347,0.0000015639, +0.0000015618,0.0000015321,0.0000015103,0.0000015104,0.0000015160, +0.0000015164,0.0000015134,0.0000015098,0.0000015063,0.0000015080, +0.0000015165,0.0000015264,0.0000015311,0.0000015287,0.0000015209, +0.0000015112,0.0000015037,0.0000014984,0.0000014936,0.0000014889, +0.0000014841,0.0000014787,0.0000014744,0.0000014701,0.0000014628, +0.0000014577,0.0000014628,0.0000014805,0.0000014947,0.0000014950, +0.0000014884,0.0000014873,0.0000015047,0.0000015358,0.0000015605, +0.0000015694,0.0000015718,0.0000015749,0.0000015780,0.0000015794, +0.0000015723,0.0000015504,0.0000015221,0.0000015071,0.0000015031, +0.0000015006,0.0000015018,0.0000015025,0.0000014880,0.0000014744, +0.0000015002,0.0000015942,0.0000016560,0.0000016155,0.0000015468, +0.0000015892,0.0000016709,0.0000016166,0.0000015391,0.0000015422, +0.0000015766,0.0000015843,0.0000015511,0.0000015137,0.0000014999, +0.0000015038,0.0000015085,0.0000015067,0.0000015140,0.0000015336, +0.0000015392,0.0000015199,0.0000014961,0.0000014897,0.0000014933, +0.0000015076,0.0000015219,0.0000015229,0.0000015185,0.0000015157, +0.0000015191,0.0000015261,0.0000015096,0.0000014881,0.0000014854, +0.0000014821,0.0000014360,0.0000013790,0.0000013480,0.0000013420, +0.0000013443,0.0000013480,0.0000013520,0.0000013582,0.0000013655, +0.0000013700,0.0000013685,0.0000013636,0.0000013603,0.0000013495, +0.0000013276,0.0000013155,0.0000013245,0.0000013356,0.0000013463, +0.0000014032,0.0000014885,0.0000015342,0.0000015384,0.0000015374, +0.0000015379,0.0000015379,0.0000015355,0.0000015250,0.0000015089, +0.0000014989,0.0000015019,0.0000015128,0.0000015218,0.0000015253, +0.0000015252,0.0000015244,0.0000015224,0.0000015200,0.0000015218, +0.0000015298,0.0000015365,0.0000015392,0.0000015426,0.0000015418, +0.0000015301,0.0000015174,0.0000015219,0.0000015494,0.0000015680, +0.0000015666,0.0000015705,0.0000015796,0.0000016037,0.0000016641, +0.0000017098,0.0000017110,0.0000016998,0.0000017031,0.0000017235, +0.0000017455,0.0000017669,0.0000017810,0.0000017831,0.0000017681, +0.0000017318,0.0000017427,0.0000018380,0.0000019222,0.0000019379, +0.0000019240,0.0000019074,0.0000019342,0.0000018834,0.0000017475, +0.0000017155,0.0000017220,0.0000016922,0.0000016800,0.0000016816, +0.0000016799,0.0000016819,0.0000017084,0.0000017405,0.0000017496, +0.0000017486,0.0000017557,0.0000017839,0.0000018082,0.0000018129, +0.0000017958,0.0000017352,0.0000016895,0.0000016587,0.0000016187, +0.0000016102,0.0000016033,0.0000015878,0.0000015874,0.0000015923, +0.0000015908,0.0000015895,0.0000015940,0.0000016031,0.0000016121, +0.0000016217,0.0000016296,0.0000016366,0.0000016504,0.0000016523, +0.0000016368,0.0000016221,0.0000016173,0.0000016159,0.0000016085, +0.0000015989,0.0000016026,0.0000016213,0.0000016493,0.0000016762, +0.0000016951,0.0000016754,0.0000016193,0.0000016301,0.0000016869, +0.0000016960,0.0000016961,0.0000016912,0.0000016756,0.0000016419, +0.0000016045,0.0000015981,0.0000016137,0.0000016176,0.0000015921, +0.0000015402,0.0000015229,0.0000015260,0.0000015270,0.0000015165, +0.0000015062,0.0000015068,0.0000015033,0.0000014950,0.0000014927, +0.0000014860,0.0000014811,0.0000014903,0.0000014986,0.0000014934, +0.0000014791,0.0000014689,0.0000014638,0.0000014702,0.0000015014, +0.0000015273,0.0000015222,0.0000015146,0.0000015478,0.0000015640, +0.0000015461,0.0000015709,0.0000015938,0.0000015913,0.0000016089, +0.0000016168,0.0000016184,0.0000016223,0.0000016226,0.0000016410, +0.0000016668,0.0000016715,0.0000016645,0.0000016558,0.0000016501, +0.0000016452,0.0000016399,0.0000016378,0.0000016292,0.0000016224, +0.0000016236,0.0000016309,0.0000016338,0.0000016382,0.0000016508, +0.0000016557,0.0000016439,0.0000016256,0.0000016151,0.0000016174, +0.0000016126,0.0000016043,0.0000016212,0.0000016302,0.0000015931, +0.0000015623,0.0000015636,0.0000016029,0.0000016630,0.0000016782, +0.0000016558,0.0000016543,0.0000016740,0.0000016798,0.0000016743, +0.0000016775,0.0000016884,0.0000016889,0.0000016791,0.0000016713, +0.0000016688,0.0000016688,0.0000016732,0.0000016834,0.0000016918, +0.0000016929,0.0000016877,0.0000016827,0.0000016775,0.0000016652, +0.0000016537,0.0000016484,0.0000016495,0.0000016544,0.0000016584, +0.0000016590,0.0000016570,0.0000016532,0.0000016492,0.0000016495, +0.0000016538,0.0000016598,0.0000016653,0.0000016716,0.0000016779, +0.0000016853,0.0000016929,0.0000017001,0.0000017045,0.0000017062, +0.0000017038,0.0000016980,0.0000016920,0.0000016834,0.0000016766, +0.0000016730,0.0000016707,0.0000016682,0.0000016643,0.0000016589, +0.0000016541,0.0000016509,0.0000016484,0.0000016479,0.0000016455, +0.0000016346,0.0000016161,0.0000015987,0.0000015857,0.0000015709, +0.0000015501,0.0000015315,0.0000015223,0.0000015149,0.0000015061, +0.0000015063,0.0000015053,0.0000014788,0.0000014368,0.0000014104, +0.0000014027,0.0000014021,0.0000014071,0.0000014131,0.0000014138, +0.0000014120,0.0000014179,0.0000014449,0.0000014729,0.0000014779, +0.0000014733,0.0000014771,0.0000015052,0.0000015454,0.0000015644, +0.0000015532,0.0000015243,0.0000015092,0.0000015091,0.0000015113, +0.0000015122,0.0000015122,0.0000015103,0.0000015065,0.0000015060, +0.0000015122,0.0000015216,0.0000015267,0.0000015235,0.0000015135, +0.0000015036,0.0000014976,0.0000014933,0.0000014889,0.0000014846, +0.0000014799,0.0000014745,0.0000014698,0.0000014648,0.0000014574, +0.0000014540,0.0000014624,0.0000014817,0.0000014945,0.0000014943, +0.0000014922,0.0000015021,0.0000015291,0.0000015559,0.0000015667, +0.0000015689,0.0000015711,0.0000015745,0.0000015780,0.0000015816, +0.0000015823,0.0000015690,0.0000015382,0.0000015087,0.0000014967, +0.0000014951,0.0000014970,0.0000014957,0.0000014805,0.0000014735, +0.0000015154,0.0000016139,0.0000016524,0.0000015911,0.0000015518, +0.0000016322,0.0000016595,0.0000015687,0.0000015356,0.0000015635, +0.0000015802,0.0000015539,0.0000015153,0.0000015050,0.0000015101, +0.0000015152,0.0000015085,0.0000015055,0.0000015217,0.0000015369, +0.0000015257,0.0000014989,0.0000014879,0.0000014888,0.0000014973, +0.0000015124,0.0000015208,0.0000015191,0.0000015156,0.0000015177, +0.0000015233,0.0000015096,0.0000014924,0.0000014866,0.0000014579, +0.0000013905,0.0000013452,0.0000013342,0.0000013374,0.0000013424, +0.0000013480,0.0000013548,0.0000013604,0.0000013646,0.0000013649, +0.0000013618,0.0000013585,0.0000013502,0.0000013316,0.0000013165, +0.0000013205,0.0000013371,0.0000013427,0.0000013635,0.0000014339, +0.0000015062,0.0000015378,0.0000015403,0.0000015401,0.0000015413, +0.0000015440,0.0000015440,0.0000015361,0.0000015241,0.0000015174, +0.0000015183,0.0000015239,0.0000015309,0.0000015362,0.0000015372, +0.0000015353,0.0000015324,0.0000015304,0.0000015300,0.0000015315, +0.0000015338,0.0000015342,0.0000015359,0.0000015388,0.0000015333, +0.0000015206,0.0000015196,0.0000015425,0.0000015670,0.0000015681, +0.0000015713,0.0000015791,0.0000015928,0.0000016463,0.0000017010, +0.0000017089,0.0000016991,0.0000017010,0.0000017189,0.0000017408, +0.0000017608,0.0000017726,0.0000017752,0.0000017716,0.0000017448, +0.0000017411,0.0000018243,0.0000019145,0.0000019355,0.0000019147, +0.0000018695,0.0000019051,0.0000018956,0.0000017607,0.0000017081, +0.0000017239,0.0000016977,0.0000016758,0.0000016805,0.0000016785, +0.0000016776,0.0000016892,0.0000017239,0.0000017468,0.0000017498, +0.0000017501,0.0000017675,0.0000018000,0.0000018154,0.0000018002, +0.0000017344,0.0000016868,0.0000016482,0.0000016113,0.0000016079, +0.0000016013,0.0000015872,0.0000015869,0.0000015916,0.0000015885, +0.0000015850,0.0000015881,0.0000015974,0.0000016084,0.0000016216, +0.0000016308,0.0000016399,0.0000016498,0.0000016434,0.0000016261, +0.0000016194,0.0000016163,0.0000016132,0.0000016027,0.0000016004, +0.0000016124,0.0000016390,0.0000016697,0.0000016923,0.0000016828, +0.0000016238,0.0000016160,0.0000016725,0.0000016902,0.0000016904, +0.0000016835,0.0000016595,0.0000016213,0.0000015975,0.0000016043, +0.0000016174,0.0000016110,0.0000015684,0.0000015273,0.0000015240, +0.0000015273,0.0000015246,0.0000015106,0.0000015049,0.0000015063, +0.0000014998,0.0000014936,0.0000014891,0.0000014790,0.0000014805, +0.0000014952,0.0000015013,0.0000014932,0.0000014786,0.0000014681, +0.0000014650,0.0000014797,0.0000015146,0.0000015279,0.0000015147, +0.0000015248,0.0000015635,0.0000015508,0.0000015490,0.0000015869, +0.0000016009,0.0000016088,0.0000016254,0.0000016151,0.0000016174, +0.0000016240,0.0000016238,0.0000016366,0.0000016566,0.0000016624, +0.0000016574,0.0000016497,0.0000016424,0.0000016342,0.0000016264, +0.0000016203,0.0000016196,0.0000016263,0.0000016332,0.0000016352, +0.0000016394,0.0000016520,0.0000016574,0.0000016451,0.0000016272, +0.0000016168,0.0000016134,0.0000016068,0.0000016005,0.0000016161, +0.0000016278,0.0000016011,0.0000015653,0.0000015596,0.0000015898, +0.0000016508,0.0000016790,0.0000016606,0.0000016481,0.0000016659, +0.0000016760,0.0000016716,0.0000016765,0.0000016876,0.0000016859, +0.0000016733,0.0000016641,0.0000016608,0.0000016584,0.0000016577, +0.0000016624,0.0000016754,0.0000016877,0.0000016924,0.0000016909, +0.0000016848,0.0000016799,0.0000016753,0.0000016661,0.0000016562, +0.0000016529,0.0000016525,0.0000016521,0.0000016505,0.0000016485, +0.0000016463,0.0000016485,0.0000016558,0.0000016625,0.0000016657, +0.0000016704,0.0000016774,0.0000016853,0.0000016916,0.0000016955, +0.0000016964,0.0000016932,0.0000016859,0.0000016768,0.0000016679, +0.0000016600,0.0000016545,0.0000016523,0.0000016507,0.0000016514, +0.0000016519,0.0000016532,0.0000016557,0.0000016551,0.0000016517, +0.0000016424,0.0000016240,0.0000016035,0.0000015878,0.0000015734, +0.0000015539,0.0000015332,0.0000015211,0.0000015175,0.0000015105, +0.0000015005,0.0000015021,0.0000015062,0.0000014927,0.0000014567, +0.0000014240,0.0000014071,0.0000014025,0.0000014055,0.0000014134, +0.0000014161,0.0000014150,0.0000014224,0.0000014509,0.0000014748, +0.0000014754,0.0000014718,0.0000014827,0.0000015181,0.0000015547, +0.0000015620,0.0000015411,0.0000015179,0.0000015105,0.0000015088, +0.0000015076,0.0000015093,0.0000015129,0.0000015137,0.0000015084, +0.0000015041,0.0000015065,0.0000015155,0.0000015218,0.0000015177, +0.0000015064,0.0000014975,0.0000014933,0.0000014893,0.0000014848, +0.0000014816,0.0000014776,0.0000014713,0.0000014656,0.0000014600, +0.0000014530,0.0000014512,0.0000014631,0.0000014832,0.0000014944, +0.0000014950,0.0000015007,0.0000015213,0.0000015475,0.0000015612, +0.0000015649,0.0000015677,0.0000015718,0.0000015759,0.0000015788, +0.0000015818,0.0000015844,0.0000015803,0.0000015573,0.0000015204, +0.0000014949,0.0000014911,0.0000014927,0.0000014876,0.0000014741, +0.0000014762,0.0000015348,0.0000016335,0.0000016414,0.0000015718, +0.0000015755,0.0000016604,0.0000016225,0.0000015406,0.0000015470, +0.0000015742,0.0000015595,0.0000015193,0.0000015070,0.0000015174, +0.0000015229,0.0000015147,0.0000015031,0.0000015090,0.0000015300, +0.0000015303,0.0000015060,0.0000014868,0.0000014852,0.0000014894, +0.0000015027,0.0000015172,0.0000015204,0.0000015162,0.0000015161, +0.0000015211,0.0000015141,0.0000014997,0.0000014870,0.0000014330, +0.0000013593,0.0000013318,0.0000013311,0.0000013359,0.0000013435, +0.0000013494,0.0000013541,0.0000013564,0.0000013573,0.0000013565, +0.0000013541,0.0000013478,0.0000013320,0.0000013161,0.0000013162, +0.0000013335,0.0000013459,0.0000013485,0.0000013767,0.0000014350, +0.0000014834,0.0000015005,0.0000014997,0.0000014951,0.0000014971, +0.0000015139,0.0000015329,0.0000015376,0.0000015309,0.0000015248, +0.0000015247,0.0000015326,0.0000015459,0.0000015585,0.0000015658, +0.0000015652,0.0000015574,0.0000015431,0.0000015327,0.0000015309, +0.0000015322,0.0000015318,0.0000015315,0.0000015346,0.0000015338, +0.0000015232,0.0000015188,0.0000015378,0.0000015636,0.0000015680, +0.0000015713,0.0000015802,0.0000015868,0.0000016291,0.0000016917, +0.0000017110,0.0000017024,0.0000016973,0.0000017121,0.0000017367, +0.0000017559,0.0000017662,0.0000017706,0.0000017711,0.0000017506, +0.0000017423,0.0000018187,0.0000019097,0.0000019321,0.0000019053, +0.0000018295,0.0000018614,0.0000018958,0.0000017752,0.0000017039, +0.0000017232,0.0000017069,0.0000016732,0.0000016733,0.0000016777, +0.0000016766,0.0000016790,0.0000017028,0.0000017366,0.0000017492, +0.0000017489,0.0000017565,0.0000017900,0.0000018149,0.0000018004, +0.0000017288,0.0000016823,0.0000016358,0.0000016046,0.0000016067, +0.0000016003,0.0000015865,0.0000015864,0.0000015897,0.0000015872, +0.0000015856,0.0000015909,0.0000015989,0.0000016100,0.0000016212, +0.0000016313,0.0000016418,0.0000016434,0.0000016309,0.0000016205, +0.0000016171,0.0000016147,0.0000016089,0.0000016009,0.0000016056, +0.0000016283,0.0000016619,0.0000016881,0.0000016867,0.0000016330, +0.0000016078,0.0000016570,0.0000016841,0.0000016839,0.0000016713, +0.0000016397,0.0000016048,0.0000015975,0.0000016124,0.0000016204, +0.0000015977,0.0000015483,0.0000015246,0.0000015265,0.0000015273, +0.0000015186,0.0000015059,0.0000015051,0.0000015039,0.0000014966, +0.0000014924,0.0000014833,0.0000014757,0.0000014840,0.0000014982, +0.0000015013,0.0000014924,0.0000014791,0.0000014674,0.0000014672, +0.0000014937,0.0000015237,0.0000015224,0.0000015130,0.0000015450, +0.0000015663,0.0000015376,0.0000015632,0.0000015981,0.0000016075, +0.0000016177,0.0000016271,0.0000016091,0.0000016162,0.0000016256, +0.0000016242,0.0000016270,0.0000016375,0.0000016396,0.0000016337, +0.0000016255,0.0000016194,0.0000016154,0.0000016159,0.0000016212, +0.0000016301,0.0000016359,0.0000016372,0.0000016405,0.0000016529, +0.0000016589,0.0000016463,0.0000016287,0.0000016189,0.0000016074, +0.0000015939,0.0000015924,0.0000016114,0.0000016296,0.0000016084, +0.0000015693,0.0000015598,0.0000015792,0.0000016365,0.0000016773, +0.0000016673,0.0000016452,0.0000016517,0.0000016649,0.0000016666, +0.0000016750,0.0000016860,0.0000016828,0.0000016686,0.0000016577, +0.0000016536,0.0000016492,0.0000016428,0.0000016414,0.0000016480, +0.0000016632,0.0000016807,0.0000016915,0.0000016930,0.0000016880, +0.0000016809,0.0000016770,0.0000016752,0.0000016741,0.0000016711, +0.0000016660,0.0000016609,0.0000016576,0.0000016549,0.0000016561, +0.0000016620,0.0000016687,0.0000016730,0.0000016755,0.0000016751, +0.0000016710,0.0000016656,0.0000016632,0.0000016640,0.0000016647, +0.0000016639,0.0000016615,0.0000016587,0.0000016546,0.0000016508, +0.0000016489,0.0000016500,0.0000016540,0.0000016579,0.0000016604, +0.0000016595,0.0000016529,0.0000016358,0.0000016135,0.0000015952, +0.0000015809,0.0000015630,0.0000015404,0.0000015216,0.0000015149, +0.0000015139,0.0000015061,0.0000014947,0.0000014963,0.0000015056, +0.0000015034,0.0000014836,0.0000014556,0.0000014288,0.0000014105, +0.0000014071,0.0000014126,0.0000014165,0.0000014166,0.0000014263, +0.0000014553,0.0000014738,0.0000014718,0.0000014713,0.0000014934, +0.0000015341,0.0000015599,0.0000015533,0.0000015273,0.0000015132, +0.0000015112,0.0000015093,0.0000015073,0.0000015109,0.0000015164, +0.0000015178,0.0000015117,0.0000015026,0.0000015024,0.0000015087, +0.0000015149,0.0000015116,0.0000015019,0.0000014952,0.0000014918, +0.0000014868,0.0000014817,0.0000014789,0.0000014749,0.0000014678, +0.0000014608,0.0000014546,0.0000014492,0.0000014500,0.0000014642, +0.0000014845,0.0000014944,0.0000014980,0.0000015124,0.0000015371, +0.0000015548,0.0000015600,0.0000015640,0.0000015713,0.0000015782, +0.0000015823,0.0000015840,0.0000015848,0.0000015852,0.0000015851, +0.0000015734,0.0000015384,0.0000015002,0.0000014891,0.0000014886, +0.0000014807,0.0000014718,0.0000014826,0.0000015576,0.0000016420, +0.0000016236,0.0000015690,0.0000016078,0.0000016590,0.0000015809, +0.0000015382,0.0000015620,0.0000015661,0.0000015293,0.0000015119, +0.0000015229,0.0000015342,0.0000015253,0.0000015045,0.0000014993, +0.0000015176,0.0000015317,0.0000015157,0.0000014903,0.0000014829, +0.0000014833,0.0000014909,0.0000015088,0.0000015208,0.0000015190, +0.0000015151,0.0000015185,0.0000015183,0.0000015101,0.0000014924, +0.0000014213,0.0000013440,0.0000013271,0.0000013276,0.0000013351, +0.0000013431,0.0000013471,0.0000013461,0.0000013456,0.0000013461, +0.0000013453,0.0000013404,0.0000013281,0.0000013149,0.0000013135, +0.0000013270,0.0000013454,0.0000013504,0.0000013555,0.0000013778, +0.0000014045,0.0000014179,0.0000014189,0.0000014155,0.0000014110, +0.0000014133,0.0000014453,0.0000014977,0.0000015295,0.0000015324, +0.0000015278,0.0000015318,0.0000015462,0.0000015601,0.0000015665, +0.0000015729,0.0000015773,0.0000015870,0.0000015765,0.0000015518, +0.0000015333,0.0000015308,0.0000015304,0.0000015301,0.0000015321, +0.0000015322,0.0000015229,0.0000015164,0.0000015343,0.0000015601, +0.0000015667,0.0000015719,0.0000015818,0.0000015836,0.0000016124, +0.0000016796,0.0000017162,0.0000017086,0.0000016964,0.0000017064, +0.0000017333,0.0000017519,0.0000017623,0.0000017674,0.0000017678, +0.0000017512,0.0000017445,0.0000018210,0.0000019085,0.0000019289, +0.0000018963,0.0000017951,0.0000018082,0.0000018919,0.0000017942, +0.0000016986,0.0000017177,0.0000017187,0.0000016791,0.0000016637, +0.0000016714,0.0000016733,0.0000016751,0.0000016851,0.0000017180, +0.0000017445,0.0000017498,0.0000017514,0.0000017819,0.0000018114, +0.0000017952,0.0000017190,0.0000016757,0.0000016235,0.0000015999, +0.0000016071,0.0000016011,0.0000015875,0.0000015844,0.0000015863, +0.0000015876,0.0000015907,0.0000015966,0.0000016044,0.0000016103, +0.0000016199,0.0000016323,0.0000016384,0.0000016335,0.0000016215, +0.0000016176,0.0000016152,0.0000016138,0.0000016039,0.0000016015, +0.0000016183,0.0000016530,0.0000016828,0.0000016878,0.0000016418, +0.0000016041,0.0000016406,0.0000016734,0.0000016744,0.0000016547, +0.0000016196,0.0000015948,0.0000016015,0.0000016197,0.0000016216, +0.0000015808,0.0000015363,0.0000015254,0.0000015273,0.0000015249, +0.0000015116,0.0000015033,0.0000015044,0.0000015003,0.0000014952, +0.0000014900,0.0000014782,0.0000014756,0.0000014878,0.0000014980, +0.0000014986,0.0000014922,0.0000014793,0.0000014669,0.0000014743, +0.0000015071,0.0000015237,0.0000015135,0.0000015177,0.0000015660, +0.0000015542,0.0000015338,0.0000015795,0.0000016033,0.0000016053, +0.0000016125,0.0000016194,0.0000015998,0.0000016120,0.0000016266, +0.0000016243,0.0000016219,0.0000016237,0.0000016229,0.0000016177, +0.0000016140,0.0000016135,0.0000016159,0.0000016244,0.0000016336, +0.0000016383,0.0000016381,0.0000016409,0.0000016535,0.0000016600, +0.0000016475,0.0000016297,0.0000016209,0.0000016026,0.0000015783, +0.0000015798,0.0000016049,0.0000016287,0.0000016151,0.0000015751, +0.0000015596,0.0000015706,0.0000016195,0.0000016702,0.0000016741, +0.0000016487,0.0000016408,0.0000016496,0.0000016591,0.0000016728, +0.0000016843,0.0000016805,0.0000016653,0.0000016523,0.0000016472, +0.0000016428,0.0000016331,0.0000016266,0.0000016279,0.0000016358, +0.0000016494,0.0000016675,0.0000016836,0.0000016906,0.0000016904, +0.0000016869,0.0000016804,0.0000016783,0.0000016797,0.0000016800, +0.0000016790,0.0000016768,0.0000016733,0.0000016716,0.0000016731, +0.0000016743,0.0000016710,0.0000016625,0.0000016528,0.0000016473, +0.0000016464,0.0000016479,0.0000016513,0.0000016550,0.0000016577, +0.0000016595,0.0000016591,0.0000016580,0.0000016570,0.0000016565, +0.0000016593,0.0000016607,0.0000016599,0.0000016543,0.0000016418, +0.0000016225,0.0000016040,0.0000015899,0.0000015745,0.0000015535, +0.0000015320,0.0000015184,0.0000015144,0.0000015138,0.0000015039, +0.0000014902,0.0000014886,0.0000014982,0.0000015044,0.0000015016, +0.0000014885,0.0000014610,0.0000014276,0.0000014115,0.0000014114, +0.0000014131,0.0000014147,0.0000014285,0.0000014560,0.0000014696, +0.0000014667,0.0000014742,0.0000015094,0.0000015488,0.0000015600, +0.0000015414,0.0000015168,0.0000015103,0.0000015117,0.0000015113, +0.0000015123,0.0000015180,0.0000015225,0.0000015229,0.0000015154, +0.0000015041,0.0000014991,0.0000015034,0.0000015071,0.0000015047, +0.0000014977,0.0000014936,0.0000014908,0.0000014853,0.0000014799, +0.0000014762,0.0000014710,0.0000014628,0.0000014554,0.0000014504, +0.0000014466,0.0000014493,0.0000014651,0.0000014849,0.0000014949, +0.0000015037,0.0000015241,0.0000015455,0.0000015550,0.0000015601, +0.0000015702,0.0000015812,0.0000015881,0.0000015910,0.0000015914, +0.0000015901,0.0000015880,0.0000015875,0.0000015837,0.0000015546, +0.0000015087,0.0000014873,0.0000014847,0.0000014762,0.0000014706, +0.0000014944,0.0000015816,0.0000016447,0.0000016071,0.0000015765, +0.0000016360,0.0000016356,0.0000015509,0.0000015460,0.0000015642, +0.0000015437,0.0000015166,0.0000015261,0.0000015455,0.0000015411, +0.0000015135,0.0000014959,0.0000015034,0.0000015257,0.0000015236, +0.0000014992,0.0000014834,0.0000014820,0.0000014832,0.0000014951, +0.0000015149,0.0000015224,0.0000015174,0.0000015159,0.0000015197, +0.0000015185,0.0000015056,0.0000014316,0.0000013428,0.0000013227, +0.0000013217,0.0000013296,0.0000013382,0.0000013378,0.0000013342, +0.0000013323,0.0000013308,0.0000013275,0.0000013200,0.0000013122, +0.0000013109,0.0000013199,0.0000013402,0.0000013519,0.0000013521, +0.0000013568,0.0000013679,0.0000013744,0.0000013746,0.0000013733, +0.0000013733,0.0000013724,0.0000013717,0.0000013945,0.0000014592, +0.0000015146,0.0000015296,0.0000015307,0.0000015406,0.0000015524, +0.0000015550,0.0000015480,0.0000015422,0.0000015482,0.0000015698, +0.0000015914,0.0000015882,0.0000015574,0.0000015335,0.0000015302, +0.0000015303,0.0000015312,0.0000015310,0.0000015239,0.0000015180, +0.0000015322,0.0000015572,0.0000015661,0.0000015733,0.0000015835, +0.0000015819,0.0000016007,0.0000016653,0.0000017137,0.0000017156, +0.0000017010,0.0000017042,0.0000017289,0.0000017486,0.0000017584, +0.0000017648,0.0000017662,0.0000017508,0.0000017518,0.0000018308, +0.0000019114,0.0000019276,0.0000018857,0.0000017546,0.0000017571, +0.0000018850,0.0000018111,0.0000016936,0.0000017073,0.0000017250, +0.0000016912,0.0000016580,0.0000016559,0.0000016661,0.0000016709, +0.0000016768,0.0000017007,0.0000017358,0.0000017500,0.0000017507, +0.0000017769,0.0000018071,0.0000017859,0.0000017076,0.0000016676, +0.0000016140,0.0000016000,0.0000016093,0.0000016038,0.0000015891, +0.0000015837,0.0000015847,0.0000015907,0.0000015969,0.0000016040, +0.0000016067,0.0000016082,0.0000016195,0.0000016312,0.0000016314, +0.0000016227,0.0000016171,0.0000016161,0.0000016166,0.0000016093, +0.0000016005,0.0000016101,0.0000016432,0.0000016770,0.0000016872, +0.0000016494,0.0000016046,0.0000016239,0.0000016562,0.0000016597, +0.0000016355,0.0000016028,0.0000015929,0.0000016095,0.0000016242, +0.0000016194,0.0000015636,0.0000015298,0.0000015247,0.0000015252, +0.0000015199,0.0000015057,0.0000015012,0.0000015019,0.0000014979, +0.0000014949,0.0000014859,0.0000014749,0.0000014777,0.0000014886, +0.0000014947,0.0000014959,0.0000014924,0.0000014779,0.0000014680, +0.0000014846,0.0000015165,0.0000015197,0.0000015072,0.0000015346, +0.0000015771,0.0000015367,0.0000015405,0.0000015922,0.0000016023, +0.0000015957,0.0000015962,0.0000016003,0.0000015854,0.0000016017, +0.0000016235,0.0000016258,0.0000016217,0.0000016199,0.0000016176, +0.0000016150,0.0000016151,0.0000016194,0.0000016281,0.0000016365, +0.0000016394,0.0000016380,0.0000016401,0.0000016532,0.0000016611, +0.0000016490,0.0000016299,0.0000016213,0.0000016011,0.0000015684, +0.0000015667,0.0000015961,0.0000016253,0.0000016211,0.0000015826, +0.0000015599,0.0000015644,0.0000016019,0.0000016585,0.0000016776, +0.0000016570,0.0000016376,0.0000016382,0.0000016512,0.0000016697, +0.0000016826,0.0000016801,0.0000016654,0.0000016501,0.0000016423, +0.0000016394,0.0000016305,0.0000016201,0.0000016185,0.0000016206, +0.0000016248,0.0000016343,0.0000016486,0.0000016660,0.0000016802, +0.0000016883,0.0000016901,0.0000016889,0.0000016864,0.0000016820, +0.0000016787,0.0000016755,0.0000016713,0.0000016665,0.0000016631, +0.0000016602,0.0000016548,0.0000016494,0.0000016464,0.0000016463, +0.0000016471,0.0000016487,0.0000016514,0.0000016545,0.0000016578, +0.0000016618,0.0000016652,0.0000016668,0.0000016657,0.0000016619, +0.0000016590,0.0000016518,0.0000016376,0.0000016191,0.0000016029, +0.0000015927,0.0000015840,0.0000015678,0.0000015455,0.0000015265, +0.0000015166,0.0000015156,0.0000015154,0.0000015050,0.0000014881, +0.0000014825,0.0000014865,0.0000014944,0.0000015001,0.0000015011, +0.0000014824,0.0000014429,0.0000014154,0.0000014095,0.0000014091, +0.0000014121,0.0000014292,0.0000014522,0.0000014600,0.0000014613, +0.0000014826,0.0000015272,0.0000015589,0.0000015565,0.0000015298, +0.0000015108,0.0000015109,0.0000015148,0.0000015171,0.0000015204, +0.0000015257,0.0000015283,0.0000015280,0.0000015205,0.0000015073, +0.0000014999,0.0000014993,0.0000015014,0.0000014984,0.0000014942, +0.0000014917,0.0000014884,0.0000014828,0.0000014774,0.0000014730, +0.0000014663,0.0000014573,0.0000014513,0.0000014483,0.0000014457, +0.0000014490,0.0000014655,0.0000014851,0.0000014968,0.0000015110, +0.0000015324,0.0000015480,0.0000015552,0.0000015662,0.0000015813, +0.0000015921,0.0000015972,0.0000015988,0.0000015979,0.0000015949, +0.0000015905,0.0000015891,0.0000015880,0.0000015642,0.0000015150, +0.0000014848,0.0000014800,0.0000014720,0.0000014712,0.0000015121, +0.0000016042,0.0000016463,0.0000015968,0.0000015974,0.0000016479, +0.0000016036,0.0000015455,0.0000015559,0.0000015562,0.0000015264, +0.0000015253,0.0000015511,0.0000015561,0.0000015299,0.0000014975, +0.0000014925,0.0000015129,0.0000015273,0.0000015112,0.0000014888, +0.0000014830,0.0000014823,0.0000014849,0.0000015011,0.0000015197, +0.0000015221,0.0000015162,0.0000015172,0.0000015239,0.0000015222, +0.0000014647,0.0000013601,0.0000013191,0.0000013143,0.0000013180, +0.0000013237,0.0000013228,0.0000013192,0.0000013166,0.0000013145, +0.0000013105,0.0000013094,0.0000013104,0.0000013128,0.0000013323, +0.0000013499,0.0000013531,0.0000013528,0.0000013552,0.0000013593, +0.0000013615,0.0000013618,0.0000013618,0.0000013627,0.0000013630, +0.0000013624,0.0000013748,0.0000014362,0.0000015021,0.0000015271, +0.0000015348,0.0000015465,0.0000015490,0.0000015363,0.0000015230, +0.0000015177,0.0000015181,0.0000015297,0.0000015676,0.0000016025, +0.0000015973,0.0000015562,0.0000015319,0.0000015311,0.0000015313, +0.0000015306,0.0000015252,0.0000015206,0.0000015302,0.0000015540, +0.0000015663,0.0000015750,0.0000015849,0.0000015829,0.0000015937, +0.0000016482,0.0000017060,0.0000017186,0.0000017059,0.0000017002, +0.0000017207,0.0000017459,0.0000017555,0.0000017608,0.0000017634, +0.0000017507,0.0000017620,0.0000018458,0.0000019179,0.0000019276, +0.0000018654,0.0000017188,0.0000017135,0.0000018706,0.0000018237, +0.0000016913,0.0000016958,0.0000017315,0.0000017058,0.0000016633, +0.0000016417,0.0000016528,0.0000016658,0.0000016760,0.0000016918, +0.0000017268,0.0000017485,0.0000017510,0.0000017752,0.0000018039, +0.0000017728,0.0000016961,0.0000016582,0.0000016097,0.0000016033, +0.0000016122,0.0000016066,0.0000015927,0.0000015845,0.0000015872, +0.0000015945,0.0000016032,0.0000016076,0.0000016046,0.0000016053, +0.0000016200,0.0000016270,0.0000016229,0.0000016166,0.0000016167, +0.0000016187,0.0000016139,0.0000016010,0.0000016043,0.0000016336, +0.0000016700,0.0000016852,0.0000016580,0.0000016064,0.0000016095, +0.0000016360,0.0000016406,0.0000016175,0.0000015941,0.0000015973, +0.0000016193,0.0000016271,0.0000016097,0.0000015504,0.0000015268, +0.0000015232,0.0000015221,0.0000015140,0.0000015014,0.0000014994, +0.0000014997,0.0000014981,0.0000014938,0.0000014816,0.0000014754, +0.0000014804,0.0000014862,0.0000014908,0.0000014949,0.0000014920, +0.0000014749,0.0000014699,0.0000014981,0.0000015203,0.0000015125, +0.0000015068,0.0000015564,0.0000015750,0.0000015209,0.0000015506, +0.0000015978,0.0000016012,0.0000015892,0.0000015843,0.0000015838, +0.0000015734,0.0000015872,0.0000016154,0.0000016260,0.0000016240, +0.0000016209,0.0000016192,0.0000016201,0.0000016252,0.0000016326, +0.0000016383,0.0000016395,0.0000016371,0.0000016387,0.0000016521, +0.0000016611,0.0000016506,0.0000016303,0.0000016213,0.0000016029, +0.0000015632,0.0000015543,0.0000015851,0.0000016197,0.0000016263, +0.0000015930,0.0000015637,0.0000015609,0.0000015869,0.0000016433, +0.0000016772,0.0000016666,0.0000016419,0.0000016351,0.0000016454, +0.0000016656,0.0000016808,0.0000016818,0.0000016693,0.0000016529, +0.0000016420,0.0000016376,0.0000016323,0.0000016218,0.0000016155, +0.0000016148,0.0000016087,0.0000016007,0.0000016020,0.0000016161, +0.0000016356,0.0000016572,0.0000016762,0.0000016870,0.0000016920, +0.0000016932,0.0000016928,0.0000016878,0.0000016792,0.0000016702, +0.0000016644,0.0000016617,0.0000016597,0.0000016571,0.0000016546, +0.0000016538,0.0000016546,0.0000016560,0.0000016572,0.0000016586, +0.0000016599,0.0000016615,0.0000016628,0.0000016620,0.0000016588, +0.0000016517,0.0000016370,0.0000016171,0.0000015983,0.0000015870, +0.0000015816,0.0000015726,0.0000015560,0.0000015378,0.0000015239, +0.0000015155,0.0000015151,0.0000015163,0.0000015063,0.0000014876, +0.0000014757,0.0000014743,0.0000014791,0.0000014908,0.0000015010, +0.0000014886,0.0000014475,0.0000014148,0.0000014061,0.0000014062, +0.0000014115,0.0000014283,0.0000014454,0.0000014505,0.0000014578, +0.0000014936,0.0000015428,0.0000015605,0.0000015484,0.0000015217, +0.0000015110,0.0000015142,0.0000015195,0.0000015230,0.0000015261, +0.0000015299,0.0000015321,0.0000015326,0.0000015279,0.0000015149, +0.0000015036,0.0000014996,0.0000014975,0.0000014939,0.0000014894, +0.0000014869,0.0000014840,0.0000014790,0.0000014740,0.0000014689, +0.0000014613,0.0000014534,0.0000014493,0.0000014468,0.0000014439, +0.0000014479,0.0000014657,0.0000014858,0.0000015003,0.0000015178, +0.0000015368,0.0000015486,0.0000015598,0.0000015778,0.0000015935, +0.0000016009,0.0000016036,0.0000016039,0.0000016015,0.0000015954, +0.0000015906,0.0000015896,0.0000015893,0.0000015686,0.0000015180, +0.0000014817,0.0000014743,0.0000014696,0.0000014763,0.0000015349, +0.0000016247,0.0000016410,0.0000015973,0.0000016202,0.0000016449, +0.0000015752,0.0000015458,0.0000015588,0.0000015422,0.0000015256, +0.0000015463,0.0000015640,0.0000015506,0.0000015113,0.0000014900, +0.0000014982,0.0000015232,0.0000015238,0.0000014990,0.0000014838, +0.0000014832,0.0000014829,0.0000014887,0.0000015078,0.0000015232, +0.0000015220,0.0000015161,0.0000015203,0.0000015299,0.0000015084, +0.0000014050,0.0000013281,0.0000013098,0.0000013078,0.0000013080, +0.0000013068,0.0000013048,0.0000013040,0.0000013070,0.0000013076, +0.0000013089,0.0000013095,0.0000013191,0.0000013445,0.0000013540, +0.0000013511,0.0000013513,0.0000013538,0.0000013554,0.0000013559, +0.0000013555,0.0000013543,0.0000013541,0.0000013555,0.0000013552, +0.0000013647,0.0000014248,0.0000014948,0.0000015262,0.0000015399, +0.0000015486,0.0000015387,0.0000015193,0.0000015127,0.0000015174, +0.0000015212,0.0000015220,0.0000015425,0.0000015916,0.0000016252, +0.0000015985,0.0000015464,0.0000015322,0.0000015324,0.0000015315, +0.0000015255,0.0000015184,0.0000015267,0.0000015513,0.0000015668, +0.0000015761,0.0000015853,0.0000015831,0.0000015865,0.0000016324, +0.0000016962,0.0000017215,0.0000017117,0.0000016959,0.0000017106, +0.0000017423,0.0000017547,0.0000017593,0.0000017606,0.0000017466, +0.0000017742,0.0000018670,0.0000019224,0.0000019224,0.0000018327, +0.0000016862,0.0000016796,0.0000018517,0.0000018370,0.0000016940, +0.0000016874,0.0000017312,0.0000017191,0.0000016748,0.0000016369, +0.0000016371,0.0000016594,0.0000016757,0.0000016894,0.0000017217, +0.0000017471,0.0000017514,0.0000017756,0.0000018008,0.0000017559, +0.0000016857,0.0000016480,0.0000016113,0.0000016067,0.0000016136, +0.0000016086,0.0000015965,0.0000015901,0.0000015915,0.0000015995, +0.0000016071,0.0000016063,0.0000015987,0.0000016036,0.0000016198, +0.0000016214,0.0000016163,0.0000016169,0.0000016201,0.0000016172, +0.0000016026,0.0000016006,0.0000016250,0.0000016617,0.0000016831, +0.0000016665,0.0000016124,0.0000016002,0.0000016174,0.0000016206, +0.0000016040,0.0000015936,0.0000016056,0.0000016275,0.0000016275, +0.0000015965,0.0000015429,0.0000015254,0.0000015211,0.0000015190, +0.0000015086,0.0000014981,0.0000014974,0.0000014989,0.0000014987, +0.0000014904,0.0000014792,0.0000014785,0.0000014824,0.0000014836, +0.0000014883,0.0000014951,0.0000014902,0.0000014724,0.0000014767, +0.0000015088,0.0000015193,0.0000015064,0.0000015148,0.0000015748, +0.0000015660,0.0000015123,0.0000015540,0.0000015976,0.0000015993, +0.0000015891,0.0000015867,0.0000015824,0.0000015717,0.0000015799, +0.0000016072,0.0000016241,0.0000016274,0.0000016264,0.0000016268, +0.0000016308,0.0000016361,0.0000016387,0.0000016387,0.0000016359, +0.0000016370,0.0000016504,0.0000016605,0.0000016521,0.0000016307, +0.0000016216,0.0000016068,0.0000015638,0.0000015445,0.0000015718, +0.0000016102,0.0000016279,0.0000016048,0.0000015697,0.0000015617, +0.0000015754,0.0000016250,0.0000016719,0.0000016745,0.0000016511, +0.0000016370,0.0000016421,0.0000016609,0.0000016779,0.0000016823, +0.0000016754,0.0000016602,0.0000016464,0.0000016383,0.0000016344, +0.0000016272,0.0000016177,0.0000016140,0.0000016100,0.0000015923, +0.0000015745,0.0000015693,0.0000015780,0.0000015998,0.0000016266, +0.0000016520,0.0000016725,0.0000016861,0.0000016919,0.0000016926, +0.0000016892,0.0000016828,0.0000016771,0.0000016738,0.0000016713, +0.0000016665,0.0000016610,0.0000016581,0.0000016577,0.0000016578, +0.0000016575,0.0000016569,0.0000016556,0.0000016538,0.0000016514, +0.0000016470,0.0000016365,0.0000016175,0.0000015975,0.0000015853, +0.0000015809,0.0000015748,0.0000015599,0.0000015404,0.0000015264, +0.0000015183,0.0000015130,0.0000015134,0.0000015153,0.0000015076, +0.0000014883,0.0000014728,0.0000014670,0.0000014681,0.0000014815, +0.0000014979,0.0000014868,0.0000014458,0.0000014129,0.0000014057, +0.0000014076,0.0000014159,0.0000014289,0.0000014375,0.0000014417, +0.0000014615,0.0000015090,0.0000015523,0.0000015584,0.0000015386, +0.0000015182,0.0000015151,0.0000015189,0.0000015225,0.0000015254, +0.0000015272,0.0000015298,0.0000015340,0.0000015378,0.0000015369, +0.0000015272,0.0000015133,0.0000015024,0.0000014944,0.0000014888, +0.0000014846,0.0000014823,0.0000014801,0.0000014755,0.0000014702, +0.0000014651,0.0000014582,0.0000014514,0.0000014475,0.0000014445, +0.0000014421,0.0000014467,0.0000014660,0.0000014875,0.0000015049, +0.0000015231,0.0000015387,0.0000015511,0.0000015702,0.0000015928, +0.0000016050,0.0000016076,0.0000016078,0.0000016064,0.0000016005, +0.0000015923,0.0000015876,0.0000015880,0.0000015887,0.0000015697, +0.0000015189,0.0000014794,0.0000014712,0.0000014701,0.0000014872, +0.0000015619,0.0000016375,0.0000016298,0.0000016013,0.0000016337, +0.0000016242,0.0000015558,0.0000015529,0.0000015568,0.0000015346, +0.0000015383,0.0000015640,0.0000015659,0.0000015346,0.0000014973, +0.0000014900,0.0000015101,0.0000015264,0.0000015132,0.0000014896, +0.0000014840,0.0000014835,0.0000014837,0.0000014937,0.0000015143, +0.0000015259,0.0000015223,0.0000015177,0.0000015258,0.0000015344, +0.0000014757,0.0000013656,0.0000013138,0.0000013053,0.0000013011, +0.0000012988,0.0000012995,0.0000013019,0.0000013070,0.0000013096, +0.0000013068,0.0000013066,0.0000013249,0.0000013527,0.0000013562, +0.0000013481,0.0000013453,0.0000013464,0.0000013464,0.0000013462, +0.0000013456,0.0000013447,0.0000013449,0.0000013480,0.0000013487, +0.0000013598,0.0000014221,0.0000014928,0.0000015276,0.0000015436, +0.0000015447,0.0000015272,0.0000015128,0.0000015162,0.0000015299, +0.0000015418,0.0000015464,0.0000015520,0.0000015840,0.0000016342, +0.0000016391,0.0000015798,0.0000015335,0.0000015313,0.0000015333, +0.0000015263,0.0000015175,0.0000015249,0.0000015496,0.0000015669, +0.0000015761,0.0000015842,0.0000015816,0.0000015816,0.0000016204, +0.0000016856,0.0000017208,0.0000017157,0.0000016957,0.0000017008, +0.0000017335,0.0000017516,0.0000017561,0.0000017477,0.0000017433, +0.0000018005,0.0000018916,0.0000019202,0.0000019002,0.0000017891, +0.0000016610,0.0000016562,0.0000018348,0.0000018445,0.0000016982, +0.0000016791,0.0000017250,0.0000017282,0.0000016872,0.0000016423, +0.0000016291,0.0000016532,0.0000016741,0.0000016905,0.0000017218, +0.0000017467,0.0000017515,0.0000017780,0.0000017935,0.0000017355, +0.0000016768,0.0000016394,0.0000016148,0.0000016081,0.0000016130, +0.0000016091,0.0000016012,0.0000015974,0.0000015979,0.0000016034, +0.0000016065,0.0000015990,0.0000015924,0.0000016055,0.0000016179, +0.0000016161,0.0000016168,0.0000016214,0.0000016196,0.0000016061, +0.0000015989,0.0000016175,0.0000016528,0.0000016820,0.0000016727, +0.0000016210,0.0000015971,0.0000016041,0.0000016049,0.0000015956, +0.0000015946,0.0000016147,0.0000016326,0.0000016234,0.0000015835, +0.0000015389,0.0000015248,0.0000015194,0.0000015167,0.0000015047, +0.0000014953,0.0000014959,0.0000014993,0.0000014974,0.0000014863, +0.0000014801,0.0000014829,0.0000014839,0.0000014821,0.0000014876, +0.0000014956,0.0000014874,0.0000014708,0.0000014848,0.0000015133, +0.0000015142,0.0000015035,0.0000015277,0.0000015884,0.0000015562, +0.0000015089,0.0000015466,0.0000015928,0.0000015978,0.0000015939, +0.0000015973,0.0000015945,0.0000015851,0.0000015862,0.0000016035, +0.0000016221,0.0000016293,0.0000016315,0.0000016333,0.0000016363, +0.0000016381,0.0000016372,0.0000016341,0.0000016349,0.0000016481, +0.0000016607,0.0000016535,0.0000016311,0.0000016197,0.0000016097, +0.0000015689,0.0000015406,0.0000015581,0.0000015965,0.0000016262, +0.0000016159,0.0000015775,0.0000015617,0.0000015672,0.0000016053, +0.0000016597,0.0000016784,0.0000016623,0.0000016426,0.0000016408, +0.0000016562,0.0000016736,0.0000016814,0.0000016801,0.0000016689, +0.0000016546,0.0000016437,0.0000016369,0.0000016327,0.0000016254, +0.0000016169,0.0000016140,0.0000016057,0.0000015833,0.0000015618, +0.0000015571,0.0000015631,0.0000015750,0.0000015938,0.0000016198, +0.0000016459,0.0000016665,0.0000016791,0.0000016828,0.0000016806, +0.0000016762,0.0000016735,0.0000016711,0.0000016662,0.0000016596, +0.0000016547,0.0000016530,0.0000016535,0.0000016532,0.0000016507, +0.0000016464,0.0000016404,0.0000016303,0.0000016135,0.0000015952, +0.0000015841,0.0000015797,0.0000015785,0.0000015700,0.0000015504, +0.0000015296,0.0000015172,0.0000015108,0.0000015069,0.0000015093, +0.0000015148,0.0000015100,0.0000014913,0.0000014732,0.0000014654, +0.0000014660,0.0000014796,0.0000014969,0.0000014821,0.0000014399, +0.0000014117,0.0000014080,0.0000014126,0.0000014222,0.0000014305, +0.0000014335,0.0000014386,0.0000014705,0.0000015245,0.0000015574, +0.0000015506,0.0000015271,0.0000015168,0.0000015197,0.0000015220, +0.0000015236,0.0000015255,0.0000015266,0.0000015285,0.0000015339, +0.0000015415,0.0000015435,0.0000015390,0.0000015268,0.0000015112, +0.0000014966,0.0000014852,0.0000014803,0.0000014792,0.0000014783, +0.0000014735,0.0000014675,0.0000014626,0.0000014566,0.0000014501, +0.0000014458,0.0000014425,0.0000014410,0.0000014464,0.0000014670, +0.0000014906,0.0000015103,0.0000015274,0.0000015412,0.0000015590, +0.0000015863,0.0000016089,0.0000016150,0.0000016133,0.0000016115, +0.0000016071,0.0000015964,0.0000015856,0.0000015829,0.0000015851, +0.0000015871,0.0000015684,0.0000015172,0.0000014770,0.0000014708, +0.0000014717,0.0000015040,0.0000015896,0.0000016435,0.0000016185, +0.0000016094,0.0000016361,0.0000015980,0.0000015518,0.0000015592, +0.0000015505,0.0000015378,0.0000015553,0.0000015691,0.0000015572, +0.0000015180,0.0000014894,0.0000014958,0.0000015198,0.0000015243, +0.0000015016,0.0000014845,0.0000014840,0.0000014833,0.0000014853, +0.0000014999,0.0000015205,0.0000015280,0.0000015222,0.0000015179, +0.0000015307,0.0000015305,0.0000014479,0.0000013447,0.0000013082, +0.0000013024,0.0000012998,0.0000013000,0.0000013046,0.0000013086, +0.0000013085,0.0000012997,0.0000013004,0.0000013253,0.0000013518, +0.0000013616,0.0000013550,0.0000013472,0.0000013453,0.0000013471, +0.0000013518,0.0000013578,0.0000013599,0.0000013562,0.0000013505, +0.0000013460,0.0000013592,0.0000014271,0.0000014959,0.0000015307, +0.0000015453,0.0000015388,0.0000015199,0.0000015142,0.0000015269, +0.0000015459,0.0000015634,0.0000015772,0.0000015846,0.0000015985, +0.0000016397,0.0000016644,0.0000016207,0.0000015498,0.0000015308, +0.0000015327,0.0000015275,0.0000015176,0.0000015251,0.0000015494, +0.0000015668,0.0000015752,0.0000015813,0.0000015798,0.0000015794, +0.0000016111,0.0000016731,0.0000017165,0.0000017197,0.0000016981, +0.0000016911,0.0000017225,0.0000017523,0.0000017475,0.0000017335, +0.0000017533,0.0000018427,0.0000019103,0.0000019158,0.0000018577, +0.0000017398,0.0000016449,0.0000016414,0.0000018147,0.0000018436, +0.0000017022,0.0000016710,0.0000017176,0.0000017303,0.0000016968, +0.0000016482,0.0000016226,0.0000016491,0.0000016727,0.0000016934, +0.0000017246,0.0000017463,0.0000017514,0.0000017819,0.0000017837, +0.0000017143,0.0000016696,0.0000016330,0.0000016180,0.0000016066, +0.0000016104,0.0000016100,0.0000016060,0.0000016046,0.0000016033, +0.0000016037,0.0000016002,0.0000015901,0.0000015911,0.0000016092, +0.0000016157,0.0000016167,0.0000016221,0.0000016212,0.0000016094, +0.0000015992,0.0000016115,0.0000016443,0.0000016778,0.0000016761, +0.0000016271,0.0000015959,0.0000015975,0.0000015966,0.0000015929, +0.0000015993,0.0000016242,0.0000016367,0.0000016170,0.0000015716, +0.0000015381,0.0000015246,0.0000015189,0.0000015153,0.0000015016, +0.0000014934,0.0000014955,0.0000014995,0.0000014947,0.0000014839, +0.0000014826,0.0000014859,0.0000014839,0.0000014816,0.0000014877, +0.0000014956,0.0000014842,0.0000014712,0.0000014920,0.0000015140, +0.0000015081,0.0000015029,0.0000015401,0.0000015955,0.0000015525, +0.0000015074,0.0000015312,0.0000015816,0.0000015977,0.0000015967, +0.0000016035,0.0000016075,0.0000016020,0.0000015984,0.0000016078, +0.0000016202,0.0000016284,0.0000016317,0.0000016341,0.0000016360, +0.0000016352,0.0000016319,0.0000016326,0.0000016452,0.0000016602, +0.0000016544,0.0000016322,0.0000016183,0.0000016108,0.0000015761, +0.0000015384,0.0000015450,0.0000015803,0.0000016172,0.0000016243, +0.0000015892,0.0000015628,0.0000015619,0.0000015869,0.0000016414, +0.0000016772,0.0000016717,0.0000016520,0.0000016436,0.0000016521, +0.0000016688,0.0000016789,0.0000016803,0.0000016752,0.0000016628, +0.0000016514,0.0000016429,0.0000016367,0.0000016327,0.0000016262, +0.0000016183,0.0000016140,0.0000016038,0.0000015798,0.0000015577, +0.0000015561,0.0000015688,0.0000015807,0.0000015871,0.0000015960, +0.0000016163,0.0000016378,0.0000016514,0.0000016579,0.0000016611, +0.0000016635,0.0000016645,0.0000016619,0.0000016552,0.0000016481, +0.0000016436,0.0000016416,0.0000016398,0.0000016356,0.0000016264, +0.0000016103,0.0000015916,0.0000015800,0.0000015773,0.0000015782, +0.0000015755,0.0000015625,0.0000015414,0.0000015229,0.0000015136, +0.0000015078,0.0000015024,0.0000015034,0.0000015115,0.0000015126, +0.0000014976,0.0000014780,0.0000014684,0.0000014692,0.0000014836, +0.0000014927,0.0000014747,0.0000014337,0.0000014129,0.0000014133, +0.0000014213,0.0000014284,0.0000014311,0.0000014319,0.0000014441, +0.0000014878,0.0000015395,0.0000015581,0.0000015395,0.0000015178, +0.0000015163,0.0000015223,0.0000015244,0.0000015254,0.0000015277, +0.0000015284,0.0000015284,0.0000015327,0.0000015409,0.0000015463, +0.0000015446,0.0000015364,0.0000015224,0.0000015050,0.0000014889, +0.0000014803,0.0000014787,0.0000014781,0.0000014733,0.0000014667, +0.0000014618,0.0000014563,0.0000014505,0.0000014464,0.0000014422, +0.0000014403,0.0000014465,0.0000014690,0.0000014951,0.0000015160, +0.0000015314,0.0000015471,0.0000015732,0.0000016050,0.0000016227, +0.0000016233,0.0000016188,0.0000016149,0.0000016061,0.0000015903, +0.0000015787,0.0000015783,0.0000015831,0.0000015860,0.0000015658, +0.0000015125,0.0000014744,0.0000014713,0.0000014772,0.0000015256, +0.0000016122,0.0000016442,0.0000016119,0.0000016201,0.0000016312, +0.0000015756,0.0000015515,0.0000015597,0.0000015466,0.0000015475, +0.0000015675,0.0000015706,0.0000015450,0.0000015052,0.0000014901, +0.0000015062,0.0000015238,0.0000015151,0.0000014913,0.0000014846, +0.0000014871,0.0000014862,0.0000014902,0.0000015078,0.0000015268, +0.0000015309,0.0000015215,0.0000015173,0.0000015329,0.0000015243, +0.0000014329,0.0000013360,0.0000013053,0.0000013032,0.0000013034, +0.0000013064,0.0000013085,0.0000013065,0.0000012929,0.0000012924, +0.0000013188,0.0000013397,0.0000013565,0.0000013658,0.0000013662, +0.0000013682,0.0000013738,0.0000013875,0.0000014062,0.0000014173, +0.0000014082,0.0000013769,0.0000013474,0.0000013622,0.0000014366, +0.0000015025,0.0000015355,0.0000015443,0.0000015330,0.0000015177, +0.0000015208,0.0000015388,0.0000015588,0.0000015796,0.0000016023, +0.0000016200,0.0000016317,0.0000016565,0.0000016817,0.0000016534, +0.0000015752,0.0000015311,0.0000015296,0.0000015259,0.0000015170, +0.0000015258,0.0000015508,0.0000015677,0.0000015741,0.0000015781, +0.0000015782,0.0000015784,0.0000016031,0.0000016609,0.0000017109, +0.0000017203,0.0000017026,0.0000016818,0.0000017075,0.0000017523, +0.0000017539,0.0000017487,0.0000018017,0.0000018872,0.0000019132, +0.0000018808,0.0000017896,0.0000016970,0.0000016371,0.0000016309, +0.0000017995,0.0000018436,0.0000017074,0.0000016668,0.0000017112, +0.0000017303,0.0000017034,0.0000016518,0.0000016205,0.0000016486, +0.0000016728,0.0000016976,0.0000017296,0.0000017457,0.0000017530, +0.0000017828,0.0000017737,0.0000016956,0.0000016631,0.0000016292, +0.0000016189,0.0000016022,0.0000016074,0.0000016117,0.0000016104, +0.0000016094,0.0000016042,0.0000015990,0.0000015913,0.0000015842, +0.0000015945,0.0000016136,0.0000016170,0.0000016222,0.0000016224, +0.0000016120,0.0000016005,0.0000016069,0.0000016363,0.0000016724, +0.0000016785,0.0000016318,0.0000015945,0.0000015956,0.0000015950, +0.0000015933,0.0000016057,0.0000016323,0.0000016392,0.0000016089, +0.0000015631,0.0000015383,0.0000015243,0.0000015186,0.0000015138, +0.0000014991,0.0000014928,0.0000014958,0.0000014987,0.0000014921, +0.0000014841,0.0000014857,0.0000014866,0.0000014821,0.0000014804, +0.0000014877,0.0000014949,0.0000014812,0.0000014726,0.0000014983, +0.0000015115,0.0000015035,0.0000015050,0.0000015500,0.0000016009, +0.0000015563,0.0000015099,0.0000015155,0.0000015625,0.0000015924, +0.0000015972,0.0000016044,0.0000016109,0.0000016123,0.0000016101, +0.0000016119,0.0000016180,0.0000016243,0.0000016287,0.0000016317, +0.0000016319,0.0000016288,0.0000016299,0.0000016438,0.0000016590, +0.0000016546,0.0000016337,0.0000016177,0.0000016118,0.0000015841, +0.0000015401,0.0000015322,0.0000015614,0.0000016028,0.0000016242, +0.0000016031,0.0000015687,0.0000015612,0.0000015732,0.0000016190, +0.0000016675,0.0000016755,0.0000016618,0.0000016498,0.0000016514, +0.0000016646,0.0000016757,0.0000016778,0.0000016766,0.0000016687, +0.0000016578,0.0000016498,0.0000016429,0.0000016369,0.0000016334, +0.0000016282,0.0000016205,0.0000016143,0.0000016035,0.0000015801, +0.0000015586,0.0000015586,0.0000015748,0.0000015896,0.0000015939, +0.0000015953,0.0000015998,0.0000016055,0.0000016158,0.0000016249, +0.0000016317,0.0000016364,0.0000016376,0.0000016330,0.0000016255, +0.0000016196,0.0000016158,0.0000016113,0.0000016018,0.0000015884, +0.0000015784,0.0000015763,0.0000015773,0.0000015771,0.0000015695, +0.0000015530,0.0000015320,0.0000015167,0.0000015115,0.0000015087, +0.0000015024,0.0000015002,0.0000015064,0.0000015117,0.0000015042, +0.0000014870,0.0000014764,0.0000014779,0.0000014902,0.0000014923, +0.0000014623,0.0000014263,0.0000014161,0.0000014212,0.0000014298, +0.0000014325,0.0000014313,0.0000014318,0.0000014543,0.0000015071, +0.0000015505,0.0000015531,0.0000015287,0.0000015133,0.0000015161, +0.0000015236,0.0000015273,0.0000015295,0.0000015326,0.0000015338, +0.0000015317,0.0000015311,0.0000015367,0.0000015435,0.0000015447, +0.0000015393,0.0000015287,0.0000015128,0.0000014956,0.0000014839, +0.0000014804,0.0000014786,0.0000014733,0.0000014667,0.0000014622, +0.0000014584,0.0000014546,0.0000014510,0.0000014454,0.0000014418, +0.0000014479,0.0000014723,0.0000015005,0.0000015212,0.0000015362, +0.0000015575,0.0000015912,0.0000016220,0.0000016326,0.0000016301, +0.0000016234,0.0000016161,0.0000016022,0.0000015832,0.0000015743, +0.0000015761,0.0000015841,0.0000015876,0.0000015621,0.0000015060, +0.0000014729,0.0000014727,0.0000014875,0.0000015508,0.0000016305, +0.0000016382,0.0000016108,0.0000016276,0.0000016142,0.0000015577, +0.0000015550,0.0000015566,0.0000015482,0.0000015591,0.0000015733, +0.0000015658,0.0000015318,0.0000014979,0.0000014955,0.0000015167, +0.0000015263,0.0000015043,0.0000014872,0.0000014911,0.0000014973, +0.0000014944,0.0000014990,0.0000015172,0.0000015321,0.0000015308, +0.0000015185,0.0000015152,0.0000015333,0.0000015252,0.0000014326, +0.0000013356,0.0000013052,0.0000013048,0.0000013069,0.0000013076, +0.0000013060,0.0000012948,0.0000012836,0.0000013014,0.0000013257, +0.0000013362,0.0000013486,0.0000013600,0.0000013668,0.0000013715, +0.0000013820,0.0000014087,0.0000014449,0.0000014567,0.0000014176, +0.0000013588,0.0000013709,0.0000014493,0.0000015113,0.0000015409, +0.0000015440,0.0000015293,0.0000015201,0.0000015300,0.0000015482, +0.0000015659,0.0000015908,0.0000016227,0.0000016493,0.0000016633, +0.0000016780,0.0000016936,0.0000016743,0.0000015989,0.0000015352, +0.0000015245,0.0000015214,0.0000015170,0.0000015275,0.0000015529, +0.0000015687,0.0000015737,0.0000015763,0.0000015778,0.0000015787, +0.0000015966,0.0000016515,0.0000017069,0.0000017229,0.0000017088, +0.0000016791,0.0000016870,0.0000017456,0.0000017933,0.0000018266, +0.0000018777,0.0000019073,0.0000018825,0.0000018027,0.0000017202, +0.0000016716,0.0000016342,0.0000016253,0.0000017892,0.0000018406, +0.0000017076,0.0000016598,0.0000017070,0.0000017308,0.0000017085, +0.0000016530,0.0000016216,0.0000016523,0.0000016750,0.0000017034, +0.0000017350,0.0000017450,0.0000017569,0.0000017868,0.0000017513, +0.0000016810,0.0000016553,0.0000016276,0.0000016168,0.0000015973, +0.0000016053,0.0000016126,0.0000016136,0.0000016097,0.0000016001, +0.0000015911,0.0000015826,0.0000015830,0.0000016055,0.0000016179, +0.0000016213,0.0000016229,0.0000016141,0.0000016011,0.0000016037, +0.0000016285,0.0000016649,0.0000016794,0.0000016391,0.0000015945, +0.0000015947,0.0000015958,0.0000015963,0.0000016114,0.0000016374, +0.0000016383,0.0000016020,0.0000015590,0.0000015386,0.0000015235, +0.0000015179,0.0000015124,0.0000014978,0.0000014926,0.0000014963, +0.0000014978,0.0000014907,0.0000014864,0.0000014875,0.0000014852, +0.0000014794,0.0000014788,0.0000014867,0.0000014930,0.0000014788, +0.0000014745,0.0000015021,0.0000015104,0.0000015013,0.0000015108, +0.0000015549,0.0000016016,0.0000015696,0.0000015193,0.0000015098, +0.0000015372,0.0000015746,0.0000015932,0.0000016011,0.0000016098, +0.0000016147,0.0000016154,0.0000016153,0.0000016178,0.0000016221, +0.0000016261,0.0000016272,0.0000016258,0.0000016282,0.0000016445, +0.0000016587,0.0000016544,0.0000016356,0.0000016177,0.0000016112, +0.0000015915,0.0000015436,0.0000015208,0.0000015396,0.0000015823, +0.0000016196,0.0000016162,0.0000015791,0.0000015606,0.0000015643, +0.0000015961,0.0000016491,0.0000016757,0.0000016700,0.0000016568, +0.0000016545,0.0000016626,0.0000016734,0.0000016758,0.0000016740, +0.0000016700,0.0000016620,0.0000016541,0.0000016492,0.0000016431, +0.0000016371,0.0000016336,0.0000016289,0.0000016219,0.0000016151, +0.0000016039,0.0000015820,0.0000015627,0.0000015627,0.0000015766, +0.0000015891,0.0000015957,0.0000015995,0.0000016000,0.0000015979, +0.0000015960,0.0000015975,0.0000015993,0.0000016017,0.0000015999, +0.0000015934,0.0000015852,0.0000015784,0.0000015760,0.0000015757, +0.0000015777,0.0000015808,0.0000015814,0.0000015766,0.0000015648, +0.0000015479,0.0000015283,0.0000015142,0.0000015110,0.0000015106, +0.0000015055,0.0000014991,0.0000015014,0.0000015096,0.0000015094, +0.0000014972,0.0000014859,0.0000014872,0.0000014959,0.0000014886, +0.0000014530,0.0000014223,0.0000014186,0.0000014288,0.0000014351, +0.0000014336,0.0000014308,0.0000014342,0.0000014687,0.0000015251, +0.0000015568,0.0000015485,0.0000015215,0.0000015111,0.0000015164, +0.0000015235,0.0000015287,0.0000015322,0.0000015349,0.0000015374, +0.0000015363,0.0000015319,0.0000015318,0.0000015381,0.0000015417, +0.0000015392,0.0000015306,0.0000015166,0.0000015010,0.0000014885, +0.0000014825,0.0000014785,0.0000014726,0.0000014668,0.0000014640, +0.0000014629,0.0000014617,0.0000014587,0.0000014510,0.0000014450, +0.0000014513,0.0000014772,0.0000015063,0.0000015260,0.0000015430, +0.0000015720,0.0000016097,0.0000016354,0.0000016401,0.0000016346, +0.0000016256,0.0000016143,0.0000015952,0.0000015769,0.0000015730, +0.0000015777,0.0000015879,0.0000015888,0.0000015555,0.0000014991, +0.0000014742,0.0000014751,0.0000015030,0.0000015791,0.0000016386, +0.0000016272,0.0000016115,0.0000016265,0.0000015927,0.0000015537, +0.0000015575,0.0000015530,0.0000015526,0.0000015681,0.0000015736, +0.0000015574,0.0000015193,0.0000014936,0.0000015016,0.0000015232, +0.0000015199,0.0000014942,0.0000014884,0.0000015046,0.0000015110, +0.0000015046,0.0000015088,0.0000015246,0.0000015324,0.0000015254, +0.0000015123,0.0000015103,0.0000015326,0.0000015304,0.0000014433, +0.0000013434,0.0000013049,0.0000013037,0.0000013059,0.0000013052, +0.0000012998,0.0000012860,0.0000012825,0.0000013045,0.0000013244, +0.0000013303,0.0000013330,0.0000013350,0.0000013337,0.0000013312, +0.0000013464,0.0000014061,0.0000014620,0.0000014418,0.0000013726, +0.0000013871,0.0000014647,0.0000015205,0.0000015458,0.0000015448, +0.0000015286,0.0000015260,0.0000015394,0.0000015531,0.0000015694, +0.0000016015,0.0000016419,0.0000016720,0.0000016851,0.0000016932, +0.0000017013,0.0000016871,0.0000016175,0.0000015443,0.0000015200, +0.0000015171,0.0000015160,0.0000015303,0.0000015553,0.0000015700, +0.0000015742,0.0000015764,0.0000015786,0.0000015795,0.0000015929, +0.0000016465,0.0000017057,0.0000017254,0.0000017161,0.0000016815, +0.0000016680,0.0000017151,0.0000018135,0.0000018830,0.0000018992, +0.0000018760,0.0000017952,0.0000017112,0.0000016750,0.0000016601, +0.0000016307,0.0000016224,0.0000017852,0.0000018401,0.0000017038, +0.0000016549,0.0000017041,0.0000017310,0.0000017131,0.0000016513, +0.0000016250,0.0000016581,0.0000016797,0.0000017122,0.0000017397, +0.0000017445,0.0000017651,0.0000017842,0.0000017225,0.0000016716, +0.0000016453,0.0000016256,0.0000016116,0.0000015922,0.0000016028, +0.0000016142,0.0000016141,0.0000016059,0.0000015923,0.0000015830, +0.0000015797,0.0000015938,0.0000016162,0.0000016210,0.0000016227, +0.0000016159,0.0000016023,0.0000016014,0.0000016212,0.0000016572, +0.0000016807,0.0000016507,0.0000015991,0.0000015929,0.0000015967, +0.0000015994,0.0000016164,0.0000016408,0.0000016367,0.0000015970, +0.0000015575,0.0000015388,0.0000015228,0.0000015174,0.0000015118, +0.0000014973,0.0000014927,0.0000014970,0.0000014972,0.0000014905, +0.0000014880,0.0000014876,0.0000014828,0.0000014776,0.0000014778, +0.0000014849,0.0000014907,0.0000014774,0.0000014781,0.0000015036, +0.0000015092,0.0000014998,0.0000015139,0.0000015551,0.0000015978, +0.0000015874,0.0000015395,0.0000015117,0.0000015154,0.0000015459, +0.0000015777,0.0000015955,0.0000016058,0.0000016127,0.0000016161, +0.0000016169,0.0000016188,0.0000016222,0.0000016241,0.0000016247, +0.0000016305,0.0000016462,0.0000016579,0.0000016531,0.0000016371, +0.0000016189,0.0000016099,0.0000015962,0.0000015513,0.0000015116, +0.0000015167,0.0000015566,0.0000016047,0.0000016226,0.0000015940, +0.0000015625,0.0000015591,0.0000015771,0.0000016241,0.0000016689, +0.0000016752,0.0000016636,0.0000016569,0.0000016606,0.0000016700, +0.0000016733,0.0000016698,0.0000016659,0.0000016625,0.0000016560, +0.0000016516,0.0000016495,0.0000016437,0.0000016367,0.0000016317, +0.0000016268,0.0000016204,0.0000016137,0.0000016035,0.0000015850, +0.0000015684,0.0000015684,0.0000015800,0.0000015892,0.0000015928, +0.0000015959,0.0000015992,0.0000016000,0.0000015983,0.0000015956, +0.0000015934,0.0000015896,0.0000015840,0.0000015786,0.0000015766, +0.0000015795,0.0000015855,0.0000015881,0.0000015863,0.0000015770, +0.0000015633,0.0000015486,0.0000015327,0.0000015192,0.0000015137, +0.0000015135,0.0000015094,0.0000015007,0.0000014981,0.0000015061, +0.0000015135,0.0000015072,0.0000014954,0.0000014950,0.0000014989, +0.0000014838,0.0000014454,0.0000014243,0.0000014266,0.0000014346, +0.0000014370,0.0000014331,0.0000014291,0.0000014389,0.0000014842, +0.0000015390,0.0000015579,0.0000015443,0.0000015189,0.0000015114, +0.0000015145,0.0000015216,0.0000015279,0.0000015330,0.0000015351, +0.0000015376,0.0000015371,0.0000015326,0.0000015300,0.0000015333, +0.0000015388,0.0000015376,0.0000015285,0.0000015147,0.0000015009, +0.0000014899,0.0000014825,0.0000014769,0.0000014711,0.0000014671, +0.0000014666,0.0000014681,0.0000014693,0.0000014671,0.0000014569, +0.0000014484,0.0000014553,0.0000014829,0.0000015119,0.0000015309, +0.0000015525,0.0000015885,0.0000016257,0.0000016448,0.0000016452, +0.0000016367,0.0000016246,0.0000016080,0.0000015870,0.0000015754, +0.0000015756,0.0000015843,0.0000015936,0.0000015886,0.0000015459, +0.0000014924,0.0000014765,0.0000014811,0.0000015235,0.0000016048, +0.0000016406,0.0000016167,0.0000016163,0.0000016210,0.0000015741, +0.0000015506,0.0000015575,0.0000015524,0.0000015601,0.0000015736, +0.0000015722,0.0000015471,0.0000015067,0.0000014918,0.0000015093, +0.0000015224,0.0000015087,0.0000014894,0.0000014975,0.0000015183, +0.0000015196,0.0000015115,0.0000015151,0.0000015243,0.0000015235, +0.0000015122,0.0000015025,0.0000015032,0.0000015273,0.0000015319, +0.0000014618,0.0000013577,0.0000013068,0.0000013003,0.0000013019, +0.0000013007,0.0000012948,0.0000012838,0.0000012848,0.0000013049, +0.0000013232,0.0000013305,0.0000013339,0.0000013347,0.0000013257, +0.0000013152,0.0000013541,0.0000014446,0.0000014510,0.0000013811, +0.0000014070,0.0000014810,0.0000015289,0.0000015494,0.0000015436, +0.0000015304,0.0000015337,0.0000015461,0.0000015549,0.0000015741, +0.0000016160,0.0000016610,0.0000016877,0.0000016959,0.0000016994, +0.0000017029,0.0000016906,0.0000016284,0.0000015536,0.0000015199, +0.0000015155,0.0000015170,0.0000015343,0.0000015585,0.0000015716, +0.0000015751,0.0000015768,0.0000015791,0.0000015798,0.0000015921, +0.0000016479,0.0000017079,0.0000017262,0.0000017213,0.0000016890, +0.0000016494,0.0000016672,0.0000017604,0.0000018396,0.0000018417, +0.0000017717,0.0000016861,0.0000016512,0.0000016555,0.0000016519, +0.0000016259,0.0000016188,0.0000017858,0.0000018343,0.0000016948, +0.0000016509,0.0000017022,0.0000017313,0.0000017148,0.0000016451, +0.0000016315,0.0000016647,0.0000016876,0.0000017235,0.0000017425, +0.0000017455,0.0000017754,0.0000017719,0.0000016956,0.0000016645, +0.0000016337,0.0000016219,0.0000016031,0.0000015870,0.0000015994, +0.0000016132,0.0000016114,0.0000015979,0.0000015848,0.0000015799, +0.0000015854,0.0000016091,0.0000016213,0.0000016213,0.0000016172, +0.0000016046,0.0000016000,0.0000016152,0.0000016498,0.0000016796, +0.0000016622,0.0000016082,0.0000015916,0.0000015963,0.0000016014, +0.0000016213,0.0000016438,0.0000016357,0.0000015933,0.0000015562, +0.0000015390,0.0000015223,0.0000015171,0.0000015123,0.0000014987, +0.0000014940,0.0000014977,0.0000014973,0.0000014911,0.0000014885, +0.0000014868,0.0000014814,0.0000014770,0.0000014770,0.0000014826, +0.0000014889,0.0000014770,0.0000014812,0.0000015031,0.0000015068, +0.0000014985,0.0000015131,0.0000015521,0.0000015886,0.0000015971, +0.0000015672,0.0000015292,0.0000015108,0.0000015200,0.0000015499, +0.0000015809,0.0000015987,0.0000016081,0.0000016135,0.0000016169, +0.0000016201,0.0000016239,0.0000016283,0.0000016366,0.0000016484, +0.0000016538,0.0000016490,0.0000016375,0.0000016205,0.0000016086, +0.0000015993,0.0000015612,0.0000015141,0.0000015009,0.0000015267, +0.0000015796,0.0000016193,0.0000016095,0.0000015709,0.0000015572, +0.0000015645,0.0000015976,0.0000016492,0.0000016760,0.0000016721, +0.0000016595,0.0000016574,0.0000016623,0.0000016657,0.0000016624, +0.0000016586,0.0000016587,0.0000016562,0.0000016513,0.0000016514, +0.0000016514,0.0000016438,0.0000016340,0.0000016277,0.0000016227, +0.0000016165,0.0000016104,0.0000016016,0.0000015858,0.0000015728, +0.0000015736,0.0000015831,0.0000015892,0.0000015894,0.0000015883, +0.0000015887,0.0000015904,0.0000015930,0.0000015958,0.0000015966, +0.0000015939,0.0000015894,0.0000015857,0.0000015856,0.0000015876, +0.0000015867,0.0000015788,0.0000015663,0.0000015541,0.0000015412, +0.0000015288,0.0000015216,0.0000015196,0.0000015150,0.0000015039, +0.0000014967,0.0000015026,0.0000015152,0.0000015153,0.0000015036, +0.0000015003,0.0000015000,0.0000014751,0.0000014389,0.0000014284, +0.0000014341,0.0000014405,0.0000014384,0.0000014320,0.0000014289, +0.0000014450,0.0000014990,0.0000015478,0.0000015573,0.0000015427, +0.0000015195,0.0000015115,0.0000015151,0.0000015229,0.0000015339, +0.0000015438,0.0000015471,0.0000015454,0.0000015404,0.0000015342, +0.0000015288,0.0000015304,0.0000015357,0.0000015348,0.0000015249, +0.0000015104,0.0000014969,0.0000014872,0.0000014801,0.0000014746, +0.0000014704,0.0000014689,0.0000014701,0.0000014733,0.0000014764, +0.0000014739,0.0000014612,0.0000014509,0.0000014587,0.0000014883, +0.0000015168,0.0000015367,0.0000015645,0.0000016050,0.0000016384, +0.0000016499,0.0000016474,0.0000016357,0.0000016188,0.0000015977, +0.0000015810,0.0000015783,0.0000015834,0.0000015924,0.0000015973, +0.0000015841,0.0000015328,0.0000014865,0.0000014789,0.0000014913, +0.0000015473,0.0000016234,0.0000016377,0.0000016127,0.0000016220, +0.0000016070,0.0000015575,0.0000015525,0.0000015567,0.0000015550, +0.0000015672,0.0000015755,0.0000015685,0.0000015343,0.0000014979, +0.0000014960,0.0000015158,0.0000015198,0.0000014991,0.0000014893, +0.0000015087,0.0000015256,0.0000015216,0.0000015135,0.0000015131, +0.0000015114,0.0000015030,0.0000014947,0.0000014931,0.0000014951, +0.0000015187,0.0000015318,0.0000014794,0.0000013787,0.0000013142, +0.0000012982,0.0000012962,0.0000012951,0.0000012909,0.0000012855, +0.0000012899,0.0000013059,0.0000013183,0.0000013264,0.0000013359, +0.0000013376,0.0000013179,0.0000013309,0.0000014269,0.0000014455, +0.0000013853,0.0000014273,0.0000014962,0.0000015358,0.0000015520, +0.0000015424,0.0000015342,0.0000015410,0.0000015502,0.0000015564, +0.0000015838,0.0000016353,0.0000016781,0.0000016962,0.0000016994, +0.0000017015,0.0000017031,0.0000016888,0.0000016311,0.0000015599, +0.0000015204,0.0000015139,0.0000015183,0.0000015394,0.0000015625, +0.0000015727,0.0000015750,0.0000015764,0.0000015783,0.0000015789, +0.0000015977,0.0000016591,0.0000017136,0.0000017255,0.0000017231, +0.0000016993,0.0000016463,0.0000016175,0.0000016595,0.0000017147, +0.0000017054,0.0000016500,0.0000016188,0.0000016276,0.0000016445, +0.0000016422,0.0000016200,0.0000016144,0.0000017920,0.0000018250, +0.0000016807,0.0000016498,0.0000017016,0.0000017317,0.0000017143, +0.0000016382,0.0000016398,0.0000016716,0.0000016993,0.0000017348, +0.0000017434,0.0000017501,0.0000017789,0.0000017453,0.0000016776, +0.0000016545,0.0000016242,0.0000016146,0.0000015942,0.0000015807, +0.0000015941,0.0000016100,0.0000016059,0.0000015908,0.0000015816, +0.0000015825,0.0000015991,0.0000016195,0.0000016201,0.0000016177, +0.0000016070,0.0000015997,0.0000016104,0.0000016427,0.0000016802, +0.0000016706,0.0000016162,0.0000015910,0.0000015952,0.0000016037, +0.0000016263,0.0000016459,0.0000016349,0.0000015908,0.0000015560, +0.0000015394,0.0000015218,0.0000015167,0.0000015138,0.0000015021, +0.0000014958,0.0000014982,0.0000014978,0.0000014923,0.0000014891, +0.0000014862,0.0000014807,0.0000014766,0.0000014761,0.0000014806, +0.0000014882,0.0000014773,0.0000014828,0.0000015015,0.0000015046, +0.0000014976,0.0000015087,0.0000015458,0.0000015760,0.0000015946, +0.0000015893,0.0000015600,0.0000015257,0.0000015115,0.0000015198, +0.0000015536,0.0000015847,0.0000016020,0.0000016103,0.0000016158, +0.0000016211,0.0000016274,0.0000016359,0.0000016445,0.0000016456, +0.0000016421,0.0000016354,0.0000016211,0.0000016077,0.0000016014, +0.0000015718,0.0000015232,0.0000014934,0.0000014986,0.0000015456, +0.0000016012,0.0000016166,0.0000015871,0.0000015579,0.0000015563, +0.0000015756,0.0000016201,0.0000016660,0.0000016770,0.0000016666, +0.0000016567,0.0000016550,0.0000016559,0.0000016540,0.0000016524, +0.0000016543,0.0000016542,0.0000016496,0.0000016500,0.0000016559, +0.0000016532,0.0000016401,0.0000016285,0.0000016223,0.0000016168, +0.0000016107,0.0000016058,0.0000015982,0.0000015840,0.0000015743, +0.0000015763,0.0000015830,0.0000015860,0.0000015847,0.0000015819, +0.0000015797,0.0000015793,0.0000015817,0.0000015844,0.0000015844, +0.0000015812,0.0000015766,0.0000015737,0.0000015729,0.0000015703, +0.0000015649,0.0000015584,0.0000015499,0.0000015389,0.0000015306, +0.0000015274,0.0000015232,0.0000015109,0.0000014966,0.0000014972, +0.0000015135,0.0000015200,0.0000015120,0.0000015062,0.0000014986, +0.0000014657,0.0000014330,0.0000014291,0.0000014401,0.0000014442, +0.0000014404,0.0000014323,0.0000014303,0.0000014541,0.0000015125, +0.0000015540,0.0000015587,0.0000015439,0.0000015247,0.0000015174, +0.0000015246,0.0000015379,0.0000015526,0.0000015656,0.0000015713, +0.0000015699,0.0000015601,0.0000015448,0.0000015315,0.0000015280, +0.0000015313,0.0000015318,0.0000015222,0.0000015064,0.0000014932, +0.0000014848,0.0000014790,0.0000014743,0.0000014712,0.0000014712, +0.0000014736,0.0000014772,0.0000014802,0.0000014770,0.0000014632, +0.0000014530,0.0000014620,0.0000014933,0.0000015216,0.0000015441, +0.0000015785,0.0000016200,0.0000016472,0.0000016534,0.0000016472, +0.0000016309,0.0000016091,0.0000015896,0.0000015822,0.0000015850, +0.0000015910,0.0000015970,0.0000015979,0.0000015733,0.0000015180, +0.0000014825,0.0000014822,0.0000015065,0.0000015736,0.0000016377, +0.0000016322,0.0000016138,0.0000016222,0.0000015902,0.0000015533, +0.0000015547,0.0000015557,0.0000015594,0.0000015725,0.0000015758, +0.0000015610,0.0000015207,0.0000014920,0.0000015013,0.0000015213, +0.0000015132,0.0000014899,0.0000014937,0.0000015183,0.0000015271, +0.0000015181,0.0000015084,0.0000015005,0.0000014901,0.0000014823, +0.0000014822,0.0000014849,0.0000014872,0.0000015087,0.0000015281, +0.0000014957,0.0000014028,0.0000013246,0.0000012957,0.0000012902, +0.0000012878,0.0000012854,0.0000012854,0.0000012916,0.0000013010, +0.0000013079,0.0000013200,0.0000013348,0.0000013228,0.0000013229, +0.0000014206,0.0000014386,0.0000013879,0.0000014453,0.0000015090, +0.0000015415,0.0000015543,0.0000015413,0.0000015378,0.0000015468, +0.0000015523,0.0000015600,0.0000016005,0.0000016572,0.0000016909, +0.0000016999,0.0000017013,0.0000017038,0.0000017041,0.0000016829, +0.0000016279,0.0000015636,0.0000015215,0.0000015117,0.0000015215, +0.0000015466,0.0000015658,0.0000015722,0.0000015742,0.0000015765, +0.0000015789,0.0000015829,0.0000016163,0.0000016790,0.0000017201, +0.0000017253,0.0000017216,0.0000017055,0.0000016537,0.0000015963, +0.0000015865,0.0000016030,0.0000015993,0.0000015896,0.0000015964, +0.0000016179,0.0000016337,0.0000016316,0.0000016153,0.0000016199, +0.0000018032,0.0000018150,0.0000016649,0.0000016475,0.0000017026, +0.0000017338,0.0000017089,0.0000016305,0.0000016546,0.0000016791, +0.0000017139,0.0000017421,0.0000017429,0.0000017608,0.0000017765, +0.0000017111,0.0000016672,0.0000016399,0.0000016165,0.0000016053, +0.0000015846,0.0000015727,0.0000015888,0.0000016073,0.0000016014, +0.0000015868,0.0000015829,0.0000015911,0.0000016131,0.0000016192, +0.0000016174,0.0000016090,0.0000016008,0.0000016070,0.0000016362, +0.0000016771,0.0000016774,0.0000016218,0.0000015898,0.0000015935, +0.0000016061,0.0000016314,0.0000016468,0.0000016342,0.0000015896, +0.0000015564,0.0000015405,0.0000015213,0.0000015155,0.0000015157, +0.0000015070,0.0000014985,0.0000014984,0.0000014981,0.0000014940, +0.0000014900,0.0000014857,0.0000014800,0.0000014758,0.0000014751, +0.0000014790,0.0000014879,0.0000014784,0.0000014832,0.0000015001, +0.0000015029,0.0000014976,0.0000015019,0.0000015354,0.0000015635, +0.0000015830,0.0000015945,0.0000015853,0.0000015562,0.0000015210, +0.0000015076,0.0000015229,0.0000015597,0.0000015904,0.0000016060, +0.0000016126,0.0000016181,0.0000016249,0.0000016306,0.0000016326, +0.0000016322,0.0000016298,0.0000016194,0.0000016072,0.0000016025, +0.0000015810,0.0000015346,0.0000014957,0.0000014851,0.0000015103, +0.0000015682,0.0000016131,0.0000016074,0.0000015689,0.0000015534, +0.0000015605,0.0000015897,0.0000016389,0.0000016728,0.0000016742, +0.0000016638,0.0000016540,0.0000016502,0.0000016487,0.0000016488, +0.0000016505,0.0000016503,0.0000016478,0.0000016499,0.0000016597, +0.0000016615,0.0000016479,0.0000016319,0.0000016222,0.0000016157, +0.0000016094,0.0000016053,0.0000016010,0.0000015907,0.0000015787, +0.0000015755,0.0000015770,0.0000015787,0.0000015787,0.0000015780, +0.0000015764,0.0000015748,0.0000015753,0.0000015762,0.0000015744, +0.0000015689,0.0000015619,0.0000015557,0.0000015530,0.0000015527, +0.0000015526,0.0000015498,0.0000015427,0.0000015352,0.0000015319, +0.0000015299,0.0000015212,0.0000015045,0.0000014971,0.0000015082, +0.0000015198,0.0000015165,0.0000015106,0.0000014966,0.0000014593, +0.0000014291,0.0000014286,0.0000014397,0.0000014441,0.0000014410, +0.0000014340,0.0000014330,0.0000014647,0.0000015239,0.0000015591, +0.0000015617,0.0000015500,0.0000015343,0.0000015331,0.0000015443, +0.0000015601,0.0000015728,0.0000015819,0.0000015866,0.0000015888, +0.0000015856,0.0000015690,0.0000015443,0.0000015279,0.0000015257, +0.0000015264,0.0000015199,0.0000015055,0.0000014925,0.0000014851, +0.0000014804,0.0000014764,0.0000014736,0.0000014738,0.0000014759, +0.0000014788,0.0000014810,0.0000014779,0.0000014637,0.0000014547, +0.0000014659,0.0000014984,0.0000015267,0.0000015535,0.0000015930, +0.0000016319,0.0000016520,0.0000016544,0.0000016447,0.0000016232, +0.0000016000,0.0000015878,0.0000015870,0.0000015875,0.0000015897, +0.0000015933,0.0000015911,0.0000015572,0.0000015054,0.0000014848, +0.0000014888,0.0000015266,0.0000016010,0.0000016428,0.0000016238, +0.0000016166,0.0000016166,0.0000015751,0.0000015524,0.0000015556, +0.0000015559,0.0000015648,0.0000015752,0.0000015740,0.0000015499, +0.0000015075,0.0000014913,0.0000015092,0.0000015209,0.0000015026, +0.0000014885,0.0000015023,0.0000015232,0.0000015224,0.0000015091, +0.0000014969,0.0000014860,0.0000014772,0.0000014718,0.0000014725, +0.0000014755,0.0000014789,0.0000015012,0.0000015236,0.0000014995, +0.0000014175,0.0000013345,0.0000012958,0.0000012859,0.0000012821, +0.0000012791,0.0000012798,0.0000012838,0.0000012900,0.0000013041, +0.0000013268,0.0000013220,0.0000013228,0.0000014217,0.0000014334, +0.0000013919,0.0000014618,0.0000015198,0.0000015459,0.0000015571, +0.0000015416,0.0000015409,0.0000015509,0.0000015526,0.0000015683, +0.0000016239,0.0000016782,0.0000016988,0.0000017017,0.0000017041, +0.0000017068,0.0000017038,0.0000016724,0.0000016206,0.0000015663, +0.0000015255,0.0000015167,0.0000015312,0.0000015545,0.0000015662, +0.0000015711,0.0000015781,0.0000015878,0.0000015964,0.0000016122, +0.0000016544,0.0000017026,0.0000017236,0.0000017241,0.0000017187, +0.0000017088,0.0000016649,0.0000015945,0.0000015578,0.0000015565, +0.0000015646,0.0000015768,0.0000015929,0.0000016117,0.0000016241, +0.0000016221,0.0000016127,0.0000016301,0.0000018152,0.0000017891, +0.0000016487,0.0000016458,0.0000017061,0.0000017365,0.0000016948, +0.0000016305,0.0000016697,0.0000016888,0.0000017292,0.0000017447, +0.0000017458,0.0000017746,0.0000017560,0.0000016829,0.0000016576, +0.0000016238,0.0000016094,0.0000015948,0.0000015731,0.0000015656, +0.0000015886,0.0000016072,0.0000015969,0.0000015849,0.0000015872, +0.0000016037,0.0000016175,0.0000016169,0.0000016099,0.0000016010, +0.0000016050,0.0000016301,0.0000016720,0.0000016833,0.0000016285, +0.0000015890,0.0000015913,0.0000016080,0.0000016359,0.0000016500, +0.0000016350,0.0000015902,0.0000015576,0.0000015424,0.0000015209, +0.0000015136,0.0000015174,0.0000015127,0.0000015028,0.0000014985, +0.0000014982,0.0000014958,0.0000014909,0.0000014849,0.0000014791, +0.0000014750,0.0000014741,0.0000014774,0.0000014874,0.0000014797, +0.0000014825,0.0000014986,0.0000015000,0.0000014975,0.0000014948, +0.0000015205,0.0000015502,0.0000015690,0.0000015839,0.0000015918, +0.0000015816,0.0000015511,0.0000015152,0.0000015056,0.0000015294, +0.0000015684,0.0000015963,0.0000016071,0.0000016101,0.0000016132, +0.0000016168,0.0000016195,0.0000016195,0.0000016141,0.0000016064, +0.0000016033,0.0000015880,0.0000015459,0.0000015025,0.0000014806, +0.0000014841,0.0000015281,0.0000015879,0.0000016155,0.0000015889, +0.0000015562,0.0000015531,0.0000015673,0.0000016029,0.0000016498, +0.0000016745,0.0000016748,0.0000016637,0.0000016529,0.0000016480, +0.0000016457,0.0000016465,0.0000016474,0.0000016485,0.0000016564, +0.0000016668,0.0000016669,0.0000016525,0.0000016354,0.0000016242, +0.0000016165,0.0000016090,0.0000016036,0.0000015999,0.0000015921, +0.0000015806,0.0000015754,0.0000015763,0.0000015758,0.0000015724, +0.0000015700,0.0000015704,0.0000015704,0.0000015705,0.0000015709, +0.0000015690,0.0000015620,0.0000015522,0.0000015433,0.0000015394, +0.0000015403,0.0000015417,0.0000015393,0.0000015342,0.0000015314, +0.0000015312,0.0000015276,0.0000015154,0.0000015043,0.0000015083, +0.0000015182,0.0000015161,0.0000015104,0.0000014962,0.0000014587, +0.0000014282,0.0000014272,0.0000014376,0.0000014418,0.0000014401, +0.0000014361,0.0000014382,0.0000014752,0.0000015333,0.0000015635, +0.0000015651,0.0000015573,0.0000015507,0.0000015539,0.0000015651, +0.0000015760,0.0000015825,0.0000015861,0.0000015883,0.0000015911, +0.0000015957,0.0000015912,0.0000015659,0.0000015355,0.0000015215, +0.0000015206,0.0000015181,0.0000015080,0.0000014961,0.0000014881, +0.0000014841,0.0000014808,0.0000014781,0.0000014776,0.0000014779, +0.0000014789,0.0000014806,0.0000014773,0.0000014633,0.0000014556, +0.0000014707,0.0000015036,0.0000015325,0.0000015642,0.0000016064, +0.0000016404,0.0000016550,0.0000016545,0.0000016400,0.0000016151, +0.0000015955,0.0000015889,0.0000015861,0.0000015776,0.0000015715, +0.0000015749,0.0000015718,0.0000015374,0.0000014978,0.0000014889, +0.0000014995,0.0000015504,0.0000016220,0.0000016395,0.0000016176, +0.0000016192,0.0000016043,0.0000015612,0.0000015514,0.0000015562, +0.0000015585,0.0000015696,0.0000015750,0.0000015687,0.0000015363, +0.0000014998,0.0000014971,0.0000015153,0.0000015156,0.0000014963, +0.0000014918,0.0000015107,0.0000015214,0.0000015121,0.0000014980, +0.0000014913,0.0000014873,0.0000014801,0.0000014693,0.0000014664, +0.0000014677,0.0000014772,0.0000015035,0.0000015115,0.0000014780, +0.0000014205,0.0000013451,0.0000012953,0.0000012840,0.0000012789, +0.0000012754,0.0000012754,0.0000012796,0.0000012959,0.0000013225, +0.0000013193,0.0000013215,0.0000014287,0.0000014311,0.0000014013, +0.0000014766,0.0000015284,0.0000015501,0.0000015584,0.0000015428, +0.0000015438,0.0000015517,0.0000015524,0.0000015825,0.0000016509, +0.0000016947,0.0000017028,0.0000017034,0.0000017077,0.0000017094, +0.0000016982,0.0000016589,0.0000016106,0.0000015694,0.0000015384, +0.0000015330,0.0000015451,0.0000015587,0.0000015649,0.0000015768, +0.0000015998,0.0000016225,0.0000016395,0.0000016616,0.0000016943, +0.0000017175,0.0000017233,0.0000017223,0.0000017152,0.0000017111, +0.0000016745,0.0000015990,0.0000015546,0.0000015504,0.0000015596, +0.0000015765,0.0000015934,0.0000016090,0.0000016178,0.0000016153, +0.0000016105,0.0000016453,0.0000018252,0.0000017557,0.0000016346, +0.0000016507,0.0000017135,0.0000017368,0.0000016743,0.0000016384, +0.0000016802,0.0000017033,0.0000017404,0.0000017440,0.0000017564, +0.0000017769,0.0000017186,0.0000016670,0.0000016423,0.0000016111, +0.0000016012,0.0000015820,0.0000015622,0.0000015652,0.0000015978, +0.0000016078,0.0000015903,0.0000015865,0.0000015951,0.0000016113, +0.0000016157,0.0000016107,0.0000016016,0.0000016036,0.0000016244, +0.0000016644,0.0000016867,0.0000016437,0.0000015910,0.0000015884, +0.0000016086,0.0000016390,0.0000016531,0.0000016372,0.0000015921, +0.0000015600,0.0000015447,0.0000015208,0.0000015118,0.0000015186, +0.0000015181,0.0000015075,0.0000014990,0.0000014982,0.0000014974, +0.0000014918,0.0000014841,0.0000014783,0.0000014744,0.0000014730, +0.0000014752,0.0000014859,0.0000014811,0.0000014810,0.0000014966, +0.0000014962,0.0000014970,0.0000014922,0.0000015042,0.0000015329, +0.0000015556,0.0000015693,0.0000015814,0.0000015876,0.0000015772, +0.0000015427,0.0000015099,0.0000015100,0.0000015404,0.0000015757, +0.0000015973,0.0000016045,0.0000016066,0.0000016079,0.0000016083, +0.0000016070,0.0000016050,0.0000016043,0.0000015936,0.0000015549, +0.0000015114,0.0000014828,0.0000014760,0.0000014917,0.0000015459, +0.0000016002,0.0000016053,0.0000015731,0.0000015516,0.0000015532, +0.0000015738,0.0000016112,0.0000016542,0.0000016753,0.0000016748, +0.0000016665,0.0000016570,0.0000016510,0.0000016502,0.0000016525, +0.0000016588,0.0000016686,0.0000016735,0.0000016681,0.0000016529, +0.0000016380,0.0000016284,0.0000016209,0.0000016122,0.0000016047, +0.0000015993,0.0000015910,0.0000015811,0.0000015766,0.0000015775, +0.0000015773,0.0000015725,0.0000015666,0.0000015628,0.0000015609, +0.0000015599,0.0000015596,0.0000015580,0.0000015527,0.0000015451, +0.0000015383,0.0000015344,0.0000015329,0.0000015313,0.0000015277, +0.0000015257,0.0000015266,0.0000015268,0.0000015203,0.0000015097, +0.0000015109,0.0000015208,0.0000015186,0.0000015094,0.0000014932, +0.0000014571,0.0000014282,0.0000014277,0.0000014369,0.0000014396, +0.0000014386,0.0000014376,0.0000014420,0.0000014820,0.0000015401, +0.0000015678,0.0000015694,0.0000015666,0.0000015668,0.0000015716, +0.0000015777,0.0000015817,0.0000015840,0.0000015854,0.0000015869, +0.0000015888,0.0000015939,0.0000015974,0.0000015853,0.0000015504, +0.0000015212,0.0000015143,0.0000015140,0.0000015099,0.0000015010, +0.0000014927,0.0000014879,0.0000014851,0.0000014828,0.0000014809, +0.0000014790,0.0000014786,0.0000014801,0.0000014766,0.0000014627, +0.0000014564,0.0000014756,0.0000015086,0.0000015390,0.0000015758, +0.0000016178,0.0000016459,0.0000016560,0.0000016529,0.0000016335, +0.0000016094,0.0000015947,0.0000015855,0.0000015701,0.0000015526, +0.0000015463,0.0000015507,0.0000015462,0.0000015188,0.0000014945, +0.0000014921,0.0000015122,0.0000015744,0.0000016362,0.0000016340, +0.0000016172,0.0000016193,0.0000015881,0.0000015535,0.0000015539, +0.0000015573,0.0000015631,0.0000015725,0.0000015736,0.0000015602, +0.0000015235,0.0000014949,0.0000015034,0.0000015200,0.0000015092, +0.0000014889,0.0000014962,0.0000015165,0.0000015163,0.0000015023, +0.0000014963,0.0000015024,0.0000015097,0.0000015028,0.0000014836, +0.0000014721,0.0000014731,0.0000014924,0.0000015108,0.0000014826, +0.0000014480,0.0000014208,0.0000013490,0.0000012947,0.0000012835, +0.0000012803,0.0000012776,0.0000012812,0.0000012992,0.0000013213, +0.0000013133,0.0000013201,0.0000014363,0.0000014228,0.0000014140, +0.0000014886,0.0000015349,0.0000015557,0.0000015566,0.0000015437, +0.0000015433,0.0000015480,0.0000015492,0.0000016036,0.0000016766, +0.0000017044,0.0000017052,0.0000017049,0.0000017109,0.0000017116, +0.0000016890,0.0000016453,0.0000016007,0.0000015714,0.0000015543, +0.0000015502,0.0000015530,0.0000015589,0.0000015712,0.0000016022, +0.0000016408,0.0000016687,0.0000016853,0.0000017007,0.0000017149, +0.0000017203,0.0000017218,0.0000017209,0.0000017126,0.0000017097, +0.0000016773,0.0000016022,0.0000015541,0.0000015478,0.0000015576, +0.0000015788,0.0000015964,0.0000016100,0.0000016146,0.0000016103, +0.0000016068,0.0000016662,0.0000018304,0.0000017188,0.0000016283, +0.0000016583,0.0000017235,0.0000017347,0.0000016546,0.0000016565, +0.0000016881,0.0000017209,0.0000017434,0.0000017462,0.0000017709, +0.0000017574,0.0000016833,0.0000016570,0.0000016229,0.0000016047, +0.0000015910,0.0000015689,0.0000015577,0.0000015757,0.0000016080, +0.0000016008,0.0000015874,0.0000015891,0.0000016023,0.0000016133, +0.0000016114,0.0000016022,0.0000016023,0.0000016194,0.0000016584, +0.0000016908,0.0000016602,0.0000015996,0.0000015847,0.0000016082, +0.0000016408,0.0000016549,0.0000016404,0.0000015961,0.0000015631, +0.0000015466,0.0000015212,0.0000015106,0.0000015186,0.0000015219, +0.0000015120,0.0000015007,0.0000014985,0.0000014983,0.0000014925, +0.0000014835,0.0000014777,0.0000014739,0.0000014714,0.0000014728, +0.0000014832,0.0000014828,0.0000014791,0.0000014940,0.0000014927, +0.0000014947,0.0000014915,0.0000014921,0.0000015115,0.0000015372, +0.0000015546,0.0000015665,0.0000015788,0.0000015824,0.0000015696, +0.0000015334,0.0000015093,0.0000015167,0.0000015465,0.0000015783, +0.0000015968,0.0000016046,0.0000016050,0.0000016049,0.0000016053, +0.0000016062,0.0000015977,0.0000015599,0.0000015183,0.0000014894, +0.0000014729,0.0000014755,0.0000015016,0.0000015591,0.0000016036, +0.0000016013,0.0000015639,0.0000015482,0.0000015544,0.0000015771, +0.0000016134,0.0000016514,0.0000016713,0.0000016739,0.0000016712, +0.0000016656,0.0000016640,0.0000016661,0.0000016711,0.0000016749, +0.0000016739,0.0000016658,0.0000016541,0.0000016440,0.0000016362, +0.0000016275,0.0000016163,0.0000016060,0.0000015974,0.0000015885, +0.0000015814,0.0000015796,0.0000015797,0.0000015784,0.0000015742, +0.0000015684,0.0000015614,0.0000015530,0.0000015462,0.0000015431, +0.0000015422,0.0000015405,0.0000015378,0.0000015353,0.0000015321, +0.0000015267,0.0000015204,0.0000015175,0.0000015194,0.0000015226, +0.0000015201,0.0000015107,0.0000015092,0.0000015208,0.0000015241, +0.0000015146,0.0000014952,0.0000014569,0.0000014257,0.0000014247, +0.0000014351,0.0000014385,0.0000014381,0.0000014378,0.0000014424, +0.0000014832,0.0000015423,0.0000015711,0.0000015737,0.0000015749, +0.0000015775,0.0000015805,0.0000015817,0.0000015824,0.0000015839, +0.0000015849,0.0000015854,0.0000015862,0.0000015895,0.0000015964, +0.0000015969,0.0000015676,0.0000015277,0.0000015100,0.0000015093, +0.0000015094,0.0000015038,0.0000014960,0.0000014902,0.0000014874, +0.0000014856,0.0000014831,0.0000014797,0.0000014786,0.0000014799, +0.0000014760,0.0000014618,0.0000014576,0.0000014802,0.0000015138, +0.0000015469,0.0000015877,0.0000016270,0.0000016498,0.0000016561, +0.0000016488,0.0000016271,0.0000016061,0.0000015894,0.0000015676, +0.0000015447,0.0000015326,0.0000015312,0.0000015329,0.0000015259, +0.0000015062,0.0000014940,0.0000014962,0.0000015287,0.0000015990, +0.0000016408,0.0000016289,0.0000016201,0.0000016150,0.0000015758, +0.0000015553,0.0000015564,0.0000015599,0.0000015675,0.0000015721, +0.0000015690,0.0000015494,0.0000015137,0.0000014982,0.0000015123, +0.0000015214,0.0000015023,0.0000014899,0.0000015051,0.0000015172, +0.0000015096,0.0000015015,0.0000015047,0.0000015152,0.0000015250, +0.0000015259,0.0000015112,0.0000014980,0.0000015011,0.0000015143, +0.0000014909,0.0000014189,0.0000014173,0.0000014202,0.0000013447, +0.0000012906,0.0000012876,0.0000012891,0.0000012953,0.0000013112, +0.0000013206,0.0000013018,0.0000013238,0.0000014421,0.0000014101, +0.0000014223,0.0000014983,0.0000015399,0.0000015621,0.0000015562, +0.0000015451,0.0000015393,0.0000015406,0.0000015481,0.0000016296, +0.0000016956,0.0000017085,0.0000017071,0.0000017060,0.0000017122, +0.0000017130,0.0000016794,0.0000016335,0.0000015937,0.0000015702, +0.0000015602,0.0000015553,0.0000015542,0.0000015655,0.0000015995, +0.0000016448,0.0000016798,0.0000016974,0.0000017062,0.0000017131, +0.0000017178,0.0000017181,0.0000017213,0.0000017192,0.0000017096, +0.0000017091,0.0000016769,0.0000015982,0.0000015506,0.0000015452, +0.0000015596,0.0000015834,0.0000016011,0.0000016132,0.0000016127, +0.0000016058,0.0000016041,0.0000016925,0.0000018261,0.0000016834, +0.0000016298,0.0000016682,0.0000017325,0.0000017236,0.0000016408, +0.0000016769,0.0000016983,0.0000017349,0.0000017435,0.0000017572, +0.0000017721,0.0000017170,0.0000016645,0.0000016423,0.0000016100, +0.0000016000,0.0000015781,0.0000015603,0.0000015618,0.0000015950, +0.0000016099,0.0000015913,0.0000015859,0.0000015932,0.0000016077, +0.0000016113,0.0000016039,0.0000016022,0.0000016166,0.0000016518, +0.0000016870,0.0000016708,0.0000016058,0.0000015812,0.0000016071, +0.0000016416,0.0000016565,0.0000016446,0.0000016012,0.0000015662, +0.0000015481,0.0000015221,0.0000015102,0.0000015171,0.0000015232, +0.0000015161,0.0000015034,0.0000014989,0.0000014986,0.0000014929, +0.0000014832,0.0000014771,0.0000014736,0.0000014702,0.0000014706, +0.0000014797,0.0000014846,0.0000014785,0.0000014907,0.0000014901, +0.0000014893,0.0000014927,0.0000014885,0.0000014929,0.0000015129, +0.0000015351,0.0000015507,0.0000015641,0.0000015776,0.0000015813, +0.0000015610,0.0000015245,0.0000015106,0.0000015206,0.0000015498, +0.0000015765,0.0000015933,0.0000016012,0.0000016043,0.0000016046, +0.0000015944,0.0000015592,0.0000015212,0.0000014972,0.0000014747, +0.0000014687,0.0000014796,0.0000015112,0.0000015690,0.0000016082, +0.0000015945,0.0000015579,0.0000015464,0.0000015543,0.0000015768, +0.0000016085,0.0000016411,0.0000016619,0.0000016705,0.0000016708, +0.0000016725,0.0000016735,0.0000016752,0.0000016754,0.0000016728, +0.0000016660,0.0000016578,0.0000016491,0.0000016381,0.0000016247, +0.0000016106,0.0000015999,0.0000015920,0.0000015865,0.0000015843, +0.0000015842,0.0000015833,0.0000015794,0.0000015733,0.0000015673, +0.0000015602,0.0000015498,0.0000015390,0.0000015320,0.0000015307, +0.0000015319,0.0000015332,0.0000015323,0.0000015277,0.0000015198, +0.0000015134,0.0000015136,0.0000015180,0.0000015183,0.0000015094, +0.0000015050,0.0000015147,0.0000015232,0.0000015178,0.0000015019, +0.0000014640,0.0000014260,0.0000014199,0.0000014306,0.0000014357, +0.0000014360,0.0000014360,0.0000014405,0.0000014802,0.0000015404, +0.0000015719,0.0000015773,0.0000015797,0.0000015830,0.0000015836, +0.0000015823,0.0000015826,0.0000015843,0.0000015845,0.0000015838, +0.0000015843,0.0000015858,0.0000015918,0.0000015971,0.0000015818, +0.0000015411,0.0000015115,0.0000015056,0.0000015057,0.0000015033, +0.0000014969,0.0000014907,0.0000014880,0.0000014870,0.0000014847, +0.0000014810,0.0000014796,0.0000014803,0.0000014752,0.0000014609, +0.0000014596,0.0000014847,0.0000015196,0.0000015563,0.0000015992, +0.0000016346,0.0000016529,0.0000016558,0.0000016428,0.0000016207, +0.0000015999,0.0000015728,0.0000015420,0.0000015261,0.0000015246, +0.0000015257,0.0000015225,0.0000015120,0.0000014992,0.0000014955, +0.0000015046,0.0000015512,0.0000016210,0.0000016418,0.0000016246, +0.0000016208,0.0000016056,0.0000015668,0.0000015544,0.0000015589, +0.0000015637,0.0000015692,0.0000015688,0.0000015606,0.0000015388, +0.0000015092,0.0000015036,0.0000015189,0.0000015171,0.0000014976, +0.0000014951,0.0000015114,0.0000015158,0.0000015081,0.0000015052, +0.0000014994,0.0000014907,0.0000014982,0.0000015167,0.0000015179, +0.0000015145,0.0000015131,0.0000014843,0.0000014038,0.0000013627, +0.0000014259,0.0000014231,0.0000013244,0.0000012896,0.0000012950, +0.0000013071,0.0000013172,0.0000013118,0.0000012929,0.0000013403, +0.0000014459,0.0000014004,0.0000014406,0.0000015069,0.0000015438, +0.0000015683,0.0000015530,0.0000015448,0.0000015347,0.0000015338, +0.0000015507,0.0000016539,0.0000017064,0.0000017103,0.0000017087, +0.0000017065,0.0000017117,0.0000017139,0.0000016752,0.0000016254, +0.0000015899,0.0000015686,0.0000015584,0.0000015547,0.0000015607, +0.0000015977,0.0000016465,0.0000016806,0.0000016954,0.0000017018, +0.0000017076,0.0000017128,0.0000017157,0.0000017161,0.0000017219, +0.0000017151,0.0000017068,0.0000017115,0.0000016697,0.0000015883, +0.0000015485,0.0000015469,0.0000015657,0.0000015889,0.0000016064, +0.0000016163,0.0000016090,0.0000016029,0.0000016045,0.0000017253, +0.0000018019,0.0000016548,0.0000016321,0.0000016837,0.0000017389, +0.0000016975,0.0000016475,0.0000016907,0.0000017134,0.0000017406, +0.0000017470,0.0000017704,0.0000017524,0.0000016809,0.0000016558, +0.0000016227,0.0000016056,0.0000015916,0.0000015657,0.0000015583, +0.0000015767,0.0000016092,0.0000016001,0.0000015845,0.0000015861, +0.0000015994,0.0000016097,0.0000016050,0.0000016023,0.0000016143, +0.0000016445,0.0000016844,0.0000016754,0.0000016120,0.0000015802, +0.0000016046,0.0000016415,0.0000016601,0.0000016500,0.0000016070, +0.0000015688,0.0000015492,0.0000015235,0.0000015087,0.0000015143, +0.0000015232,0.0000015197,0.0000015067,0.0000014994,0.0000014987, +0.0000014935,0.0000014832,0.0000014764,0.0000014737,0.0000014699, +0.0000014692,0.0000014758,0.0000014852,0.0000014796,0.0000014860, +0.0000014871,0.0000014824,0.0000014903,0.0000014902,0.0000014862, +0.0000014922,0.0000015099,0.0000015296,0.0000015478,0.0000015648, +0.0000015789,0.0000015764,0.0000015480,0.0000015162,0.0000015109, +0.0000015240,0.0000015450,0.0000015642,0.0000015778,0.0000015809, +0.0000015742,0.0000015501,0.0000015223,0.0000015023,0.0000014808, +0.0000014650,0.0000014702,0.0000014850,0.0000015199,0.0000015760, +0.0000016070,0.0000015883,0.0000015547,0.0000015446,0.0000015527, +0.0000015722,0.0000015974,0.0000016232,0.0000016429,0.0000016552, +0.0000016619,0.0000016652,0.0000016673,0.0000016676,0.0000016647, +0.0000016581,0.0000016479,0.0000016349,0.0000016202,0.0000016069, +0.0000015981,0.0000015936,0.0000015909,0.0000015893,0.0000015886, +0.0000015883,0.0000015857,0.0000015795,0.0000015709,0.0000015622, +0.0000015542,0.0000015455,0.0000015360,0.0000015296,0.0000015283, +0.0000015292,0.0000015300,0.0000015280,0.0000015219,0.0000015154, +0.0000015124,0.0000015143,0.0000015146,0.0000015076,0.0000015005, +0.0000015071,0.0000015176,0.0000015166,0.0000015063,0.0000014745, +0.0000014323,0.0000014188,0.0000014254,0.0000014318,0.0000014328, +0.0000014328,0.0000014356,0.0000014720,0.0000015344,0.0000015706, +0.0000015776,0.0000015807,0.0000015841,0.0000015843,0.0000015834, +0.0000015841,0.0000015853,0.0000015854,0.0000015829,0.0000015822, +0.0000015836,0.0000015877,0.0000015952,0.0000015909,0.0000015567, +0.0000015187,0.0000015035,0.0000015014,0.0000014989,0.0000014931, +0.0000014879,0.0000014871,0.0000014881,0.0000014871,0.0000014836, +0.0000014814,0.0000014811,0.0000014742,0.0000014600,0.0000014623, +0.0000014899,0.0000015265,0.0000015672,0.0000016102,0.0000016410, +0.0000016556,0.0000016538,0.0000016359,0.0000016131,0.0000015863, +0.0000015494,0.0000015211,0.0000015167,0.0000015223,0.0000015227, +0.0000015148,0.0000015035,0.0000014977,0.0000014980,0.0000015165, +0.0000015773,0.0000016394,0.0000016397,0.0000016234,0.0000016222, +0.0000015936,0.0000015585,0.0000015558,0.0000015622,0.0000015672, +0.0000015680,0.0000015617,0.0000015513,0.0000015308,0.0000015090, +0.0000015118,0.0000015246,0.0000015131,0.0000014927,0.0000015008, +0.0000015183,0.0000015173,0.0000015099,0.0000014892,0.0000014407, +0.0000014061,0.0000014229,0.0000014610,0.0000014838,0.0000014798, +0.0000014463,0.0000013807,0.0000013362,0.0000013922,0.0000014611, +0.0000013949,0.0000012977,0.0000012901,0.0000013011,0.0000013059, +0.0000012916,0.0000012865,0.0000013692,0.0000014516,0.0000013934, +0.0000014615,0.0000015134,0.0000015472,0.0000015734,0.0000015495, +0.0000015424,0.0000015336,0.0000015325,0.0000015567,0.0000016717, +0.0000017103,0.0000017096,0.0000017077,0.0000017060,0.0000017087, +0.0000017159,0.0000016831,0.0000016244,0.0000015883,0.0000015678, +0.0000015571,0.0000015595,0.0000015982,0.0000016511,0.0000016828, +0.0000016916,0.0000016947,0.0000017003,0.0000017071,0.0000017122, +0.0000017139,0.0000017161,0.0000017223,0.0000017081,0.0000017067, +0.0000017125,0.0000016538,0.0000015762,0.0000015505,0.0000015530, +0.0000015728,0.0000015949,0.0000016113,0.0000016159,0.0000016029, +0.0000016016,0.0000016141,0.0000017575,0.0000017704,0.0000016361, +0.0000016359,0.0000017032,0.0000017338,0.0000016684,0.0000016644, +0.0000016997,0.0000017276,0.0000017413,0.0000017608,0.0000017693, +0.0000017117,0.0000016633,0.0000016407,0.0000016100,0.0000016047, +0.0000015784,0.0000015594,0.0000015656,0.0000016000,0.0000016087, +0.0000015862,0.0000015816,0.0000015912,0.0000016071,0.0000016058, +0.0000016025,0.0000016115,0.0000016372,0.0000016805,0.0000016871, +0.0000016267,0.0000015837,0.0000016000,0.0000016403,0.0000016642, +0.0000016555,0.0000016129,0.0000015712,0.0000015501,0.0000015256, +0.0000015074,0.0000015111,0.0000015223,0.0000015221,0.0000015096, +0.0000015002,0.0000014991,0.0000014945,0.0000014836,0.0000014760, +0.0000014743,0.0000014709,0.0000014688,0.0000014726,0.0000014834, +0.0000014821,0.0000014814,0.0000014837,0.0000014766,0.0000014826, +0.0000014908,0.0000014869,0.0000014845,0.0000014895,0.0000015056, +0.0000015273,0.0000015494,0.0000015676,0.0000015782,0.0000015686, +0.0000015370,0.0000015129,0.0000015105,0.0000015202,0.0000015314, +0.0000015396,0.0000015402,0.0000015334,0.0000015215,0.0000015064, +0.0000014855,0.0000014663,0.0000014626,0.0000014755,0.0000014890, +0.0000015251,0.0000015784,0.0000016028,0.0000015851,0.0000015542, +0.0000015445,0.0000015494,0.0000015635,0.0000015810,0.0000015991, +0.0000016145,0.0000016265,0.0000016348,0.0000016394,0.0000016402, +0.0000016378,0.0000016318,0.0000016232,0.0000016137,0.0000016051, +0.0000015991,0.0000015957,0.0000015937,0.0000015920,0.0000015900, +0.0000015879,0.0000015853,0.0000015811,0.0000015744,0.0000015657, +0.0000015559,0.0000015470,0.0000015398,0.0000015340,0.0000015299, +0.0000015281,0.0000015281,0.0000015280,0.0000015250,0.0000015196, +0.0000015151,0.0000015139,0.0000015129,0.0000015057,0.0000014974, +0.0000015016,0.0000015122,0.0000015128,0.0000015060,0.0000014818, +0.0000014390,0.0000014173,0.0000014232,0.0000014293,0.0000014292, +0.0000014291,0.0000014314,0.0000014621,0.0000015238,0.0000015662, +0.0000015760,0.0000015793,0.0000015831,0.0000015847,0.0000015852, +0.0000015847,0.0000015850,0.0000015857,0.0000015838,0.0000015808, +0.0000015817,0.0000015849,0.0000015917,0.0000015937,0.0000015715, +0.0000015315,0.0000015055,0.0000014959,0.0000014906,0.0000014852, +0.0000014822,0.0000014843,0.0000014882,0.0000014892,0.0000014865, +0.0000014836,0.0000014822,0.0000014728,0.0000014588,0.0000014651, +0.0000014959,0.0000015351,0.0000015788,0.0000016200,0.0000016466, +0.0000016562,0.0000016506,0.0000016290,0.0000016030,0.0000015676, +0.0000015295,0.0000015131,0.0000015155,0.0000015213,0.0000015195, +0.0000015095,0.0000015002,0.0000014985,0.0000015023,0.0000015321, +0.0000016033,0.0000016451,0.0000016352,0.0000016261,0.0000016186, +0.0000015800,0.0000015576,0.0000015593,0.0000015658,0.0000015691, +0.0000015643,0.0000015534,0.0000015434,0.0000015271,0.0000015139, +0.0000015201,0.0000015255,0.0000015081,0.0000014968,0.0000015105, +0.0000015220,0.0000015187,0.0000014946,0.0000014300,0.0000013575, +0.0000013384,0.0000013578,0.0000013874,0.0000013998,0.0000013854, +0.0000013496,0.0000013314,0.0000013805,0.0000014705,0.0000014596, +0.0000013406,0.0000012874,0.0000012834,0.0000012800,0.0000012712, +0.0000012950,0.0000014033,0.0000014515,0.0000013899,0.0000014818, +0.0000015179,0.0000015505,0.0000015757,0.0000015465,0.0000015402, +0.0000015373,0.0000015360,0.0000015600,0.0000016812,0.0000017091, +0.0000017031,0.0000017005,0.0000016999,0.0000017017,0.0000017144, +0.0000017016,0.0000016447,0.0000015998,0.0000015775,0.0000015750, +0.0000016085,0.0000016596,0.0000016877,0.0000016905,0.0000016904, +0.0000016965,0.0000017044,0.0000017097,0.0000017123,0.0000017128, +0.0000017186,0.0000017197,0.0000016998,0.0000017128,0.0000017094, +0.0000016278,0.0000015656,0.0000015547,0.0000015602,0.0000015799, +0.0000016007,0.0000016150,0.0000016125,0.0000015961,0.0000016048, +0.0000016318,0.0000017796,0.0000017276,0.0000016261,0.0000016487, +0.0000017227,0.0000017213,0.0000016524,0.0000016852,0.0000017092, +0.0000017353,0.0000017496,0.0000017718,0.0000017445,0.0000016775, +0.0000016541,0.0000016195,0.0000016106,0.0000015995,0.0000015647, +0.0000015603,0.0000015850,0.0000016112,0.0000015930,0.0000015794, +0.0000015844,0.0000016011,0.0000016055,0.0000016029,0.0000016093, +0.0000016314,0.0000016727,0.0000016919,0.0000016490,0.0000015901, +0.0000015946,0.0000016374,0.0000016636,0.0000016599,0.0000016203, +0.0000015748,0.0000015513,0.0000015284,0.0000015082,0.0000015085, +0.0000015206,0.0000015239,0.0000015119,0.0000015008,0.0000014992, +0.0000014955,0.0000014845,0.0000014763,0.0000014747,0.0000014725, +0.0000014695,0.0000014707,0.0000014793,0.0000014838,0.0000014797, +0.0000014800,0.0000014730,0.0000014718,0.0000014845,0.0000014894, +0.0000014855,0.0000014844,0.0000014884,0.0000015045,0.0000015305, +0.0000015543,0.0000015725,0.0000015798,0.0000015584,0.0000015249, +0.0000015102,0.0000015106,0.0000015140,0.0000015158,0.0000015160, +0.0000015144,0.0000015056,0.0000014877,0.0000014693,0.0000014598, +0.0000014656,0.0000014808,0.0000014913,0.0000015272,0.0000015774, +0.0000015987,0.0000015869,0.0000015583,0.0000015440,0.0000015449, +0.0000015526,0.0000015625,0.0000015736,0.0000015846,0.0000015937, +0.0000015998,0.0000016031,0.0000016044,0.0000016032,0.0000016004, +0.0000015968,0.0000015928,0.0000015886,0.0000015843,0.0000015803, +0.0000015768,0.0000015740,0.0000015720,0.0000015702,0.0000015680, +0.0000015643,0.0000015586,0.0000015510,0.0000015428,0.0000015360, +0.0000015313,0.0000015280,0.0000015262,0.0000015257,0.0000015254, +0.0000015237,0.0000015209,0.0000015179,0.0000015139,0.0000015062, +0.0000014980,0.0000014993,0.0000015091,0.0000015103,0.0000015041, +0.0000014862,0.0000014459,0.0000014174,0.0000014204,0.0000014287, +0.0000014285,0.0000014269,0.0000014281,0.0000014531,0.0000015116, +0.0000015600,0.0000015736,0.0000015771,0.0000015822,0.0000015859, +0.0000015855,0.0000015794,0.0000015722,0.0000015768,0.0000015826, +0.0000015805,0.0000015806,0.0000015831,0.0000015885,0.0000015933, +0.0000015817,0.0000015471,0.0000015138,0.0000014941,0.0000014831, +0.0000014766,0.0000014754,0.0000014806,0.0000014880,0.0000014910, +0.0000014887,0.0000014850,0.0000014824,0.0000014712,0.0000014585, +0.0000014683,0.0000015027,0.0000015451,0.0000015906,0.0000016286, +0.0000016518,0.0000016583,0.0000016454,0.0000016201,0.0000015883, +0.0000015490,0.0000015200,0.0000015138,0.0000015182,0.0000015220, +0.0000015169,0.0000015054,0.0000014999,0.0000015013,0.0000015095, +0.0000015540,0.0000016256,0.0000016484,0.0000016323,0.0000016272, +0.0000016096,0.0000015713,0.0000015591,0.0000015628,0.0000015693, +0.0000015699,0.0000015591,0.0000015462,0.0000015381,0.0000015258, +0.0000015196,0.0000015263,0.0000015237,0.0000015023,0.0000014988, +0.0000015178,0.0000015249,0.0000015117,0.0000014484,0.0000013571, +0.0000013142,0.0000013161,0.0000013256,0.0000013331,0.0000013328, +0.0000013268,0.0000013377,0.0000013964,0.0000014814,0.0000014926, +0.0000013960,0.0000013046,0.0000012781,0.0000012653,0.0000012688, +0.0000013275,0.0000014326,0.0000014412,0.0000013942,0.0000014980, +0.0000015215,0.0000015546,0.0000015766,0.0000015443,0.0000015390, +0.0000015429,0.0000015411,0.0000015597,0.0000016819,0.0000017050, +0.0000016945,0.0000016908,0.0000016884,0.0000016894,0.0000017034, +0.0000017114,0.0000016824,0.0000016438,0.0000016270,0.0000016429, +0.0000016747,0.0000016917,0.0000016909,0.0000016885,0.0000016951, +0.0000017044,0.0000017093,0.0000017109,0.0000017111,0.0000017134, +0.0000017211,0.0000017089,0.0000016962,0.0000017211,0.0000016844, +0.0000015977,0.0000015596,0.0000015575,0.0000015667,0.0000015868, +0.0000016062,0.0000016135,0.0000016022,0.0000015927,0.0000016096, +0.0000016589,0.0000017828,0.0000016785,0.0000016238,0.0000016674, +0.0000017294,0.0000016958,0.0000016560,0.0000017003,0.0000017208, +0.0000017418,0.0000017657,0.0000017647,0.0000017034,0.0000016617, +0.0000016349,0.0000016120,0.0000016186,0.0000015854,0.0000015604, +0.0000015736,0.0000016077,0.0000016016,0.0000015790,0.0000015798, +0.0000015945,0.0000016035,0.0000016030,0.0000016078,0.0000016268, +0.0000016667,0.0000016944,0.0000016645,0.0000016002,0.0000015909, +0.0000016327,0.0000016619,0.0000016639,0.0000016307,0.0000015814, +0.0000015525,0.0000015312,0.0000015118,0.0000015080,0.0000015188, +0.0000015237,0.0000015133,0.0000015007,0.0000014985,0.0000014962, +0.0000014864,0.0000014770,0.0000014745,0.0000014737,0.0000014709, +0.0000014704,0.0000014745,0.0000014829,0.0000014809,0.0000014777, +0.0000014709,0.0000014631,0.0000014728,0.0000014883,0.0000014901, +0.0000014855,0.0000014831,0.0000014875,0.0000015105,0.0000015396, +0.0000015627,0.0000015805,0.0000015739,0.0000015408,0.0000015131, +0.0000015092,0.0000015112,0.0000015103,0.0000015050,0.0000014962, +0.0000014832,0.0000014699,0.0000014603,0.0000014590,0.0000014722, +0.0000014844,0.0000014909,0.0000015258,0.0000015739,0.0000015991, +0.0000015932,0.0000015664,0.0000015471,0.0000015420,0.0000015422, +0.0000015463,0.0000015530,0.0000015597,0.0000015657,0.0000015708, +0.0000015741,0.0000015754,0.0000015748,0.0000015729,0.0000015699, +0.0000015665,0.0000015637,0.0000015617,0.0000015601,0.0000015589, +0.0000015584,0.0000015583,0.0000015585,0.0000015578,0.0000015549, +0.0000015493,0.0000015422,0.0000015353,0.0000015293,0.0000015250, +0.0000015227,0.0000015226,0.0000015235,0.0000015238,0.0000015221, +0.0000015171,0.0000015080,0.0000015001,0.0000015021,0.0000015107, +0.0000015093,0.0000015009,0.0000014896,0.0000014552,0.0000014186, +0.0000014155,0.0000014283,0.0000014301,0.0000014271,0.0000014268, +0.0000014441,0.0000014965,0.0000015517,0.0000015727,0.0000015766, +0.0000015831,0.0000015862,0.0000015802,0.0000015612,0.0000015429, +0.0000015529,0.0000015739,0.0000015786,0.0000015788,0.0000015815, +0.0000015862,0.0000015925,0.0000015877,0.0000015609,0.0000015258, +0.0000014986,0.0000014809,0.0000014711,0.0000014698,0.0000014774, +0.0000014881,0.0000014929,0.0000014901,0.0000014856,0.0000014819, +0.0000014691,0.0000014594,0.0000014731,0.0000015108,0.0000015564, +0.0000016020,0.0000016363,0.0000016555,0.0000016566,0.0000016383, +0.0000016088,0.0000015717,0.0000015371,0.0000015219,0.0000015220, +0.0000015252,0.0000015242,0.0000015139,0.0000015027,0.0000015020, +0.0000015057,0.0000015218,0.0000015807,0.0000016420,0.0000016453, +0.0000016300,0.0000016264,0.0000015985,0.0000015642,0.0000015586, +0.0000015665,0.0000015721,0.0000015685,0.0000015538,0.0000015411, +0.0000015348,0.0000015266,0.0000015240,0.0000015295,0.0000015180, +0.0000014960,0.0000015030,0.0000015238,0.0000015271,0.0000014858, +0.0000013860,0.0000013105,0.0000013040,0.0000013131,0.0000013161, +0.0000013162,0.0000013167,0.0000013379,0.0000014066,0.0000014906, +0.0000015091,0.0000014390,0.0000013450,0.0000012966,0.0000012816, +0.0000012995,0.0000013770,0.0000014470,0.0000014273,0.0000014047, +0.0000015088,0.0000015255,0.0000015584,0.0000015760,0.0000015431, +0.0000015385,0.0000015462,0.0000015449,0.0000015601,0.0000016717, +0.0000017026,0.0000016906,0.0000016876,0.0000016804,0.0000016765, +0.0000016849,0.0000017023,0.0000017024,0.0000016926,0.0000016877, +0.0000016913,0.0000016925,0.0000016878,0.0000016859,0.0000016937, +0.0000017032,0.0000017073,0.0000017087,0.0000017089,0.0000017101, +0.0000017169,0.0000017181,0.0000016937,0.0000017015,0.0000017189, +0.0000016454,0.0000015763,0.0000015592,0.0000015598,0.0000015736, +0.0000015931,0.0000016078,0.0000016064,0.0000015924,0.0000015928, +0.0000016162,0.0000016962,0.0000017698,0.0000016401,0.0000016310, +0.0000016895,0.0000017245,0.0000016697,0.0000016736,0.0000017084, +0.0000017320,0.0000017546,0.0000017718,0.0000017340,0.0000016726, +0.0000016484,0.0000016176,0.0000016255,0.0000016158,0.0000015703, +0.0000015671,0.0000015982,0.0000016081,0.0000015839,0.0000015778, +0.0000015888,0.0000016009,0.0000016028,0.0000016070,0.0000016238, +0.0000016583,0.0000016870,0.0000016724,0.0000016121,0.0000015902, +0.0000016261,0.0000016601,0.0000016680,0.0000016424,0.0000015902, +0.0000015535,0.0000015339,0.0000015174,0.0000015103,0.0000015170, +0.0000015214,0.0000015135,0.0000015000,0.0000014970,0.0000014973, +0.0000014885,0.0000014778,0.0000014737,0.0000014738,0.0000014725, +0.0000014709,0.0000014714,0.0000014786,0.0000014831,0.0000014791, +0.0000014705,0.0000014602,0.0000014612,0.0000014782,0.0000014900, +0.0000014911,0.0000014837,0.0000014806,0.0000014938,0.0000015239, +0.0000015533,0.0000015758,0.0000015833,0.0000015546,0.0000015179, +0.0000015094,0.0000015115,0.0000015085,0.0000014963,0.0000014800, +0.0000014662,0.0000014598,0.0000014579,0.0000014628,0.0000014782, +0.0000014844,0.0000014886,0.0000015207,0.0000015675,0.0000015969, +0.0000015956,0.0000015770,0.0000015555,0.0000015417,0.0000015383, +0.0000015371,0.0000015396,0.0000015435,0.0000015477,0.0000015516, +0.0000015552,0.0000015581,0.0000015594,0.0000015586,0.0000015563, +0.0000015533,0.0000015515,0.0000015520,0.0000015546,0.0000015564, +0.0000015564,0.0000015560,0.0000015554,0.0000015536,0.0000015488, +0.0000015422,0.0000015364,0.0000015315,0.0000015274,0.0000015244, +0.0000015238,0.0000015242,0.0000015236,0.0000015188,0.0000015095, +0.0000015022,0.0000015052,0.0000015149,0.0000015134,0.0000015006, +0.0000014906,0.0000014656,0.0000014248,0.0000014129,0.0000014231, +0.0000014303,0.0000014288,0.0000014278,0.0000014369,0.0000014787, +0.0000015376,0.0000015712,0.0000015794,0.0000015851,0.0000015844, +0.0000015652,0.0000015355,0.0000015137,0.0000015266,0.0000015598, +0.0000015734,0.0000015757,0.0000015794,0.0000015839,0.0000015903, +0.0000015897,0.0000015697,0.0000015375,0.0000015076,0.0000014852, +0.0000014708,0.0000014682,0.0000014752,0.0000014885,0.0000014941, +0.0000014905,0.0000014854,0.0000014805,0.0000014664,0.0000014598, +0.0000014791,0.0000015198,0.0000015682,0.0000016125,0.0000016426, +0.0000016568,0.0000016524,0.0000016298,0.0000015949,0.0000015564, +0.0000015342,0.0000015305,0.0000015316,0.0000015318,0.0000015255, +0.0000015120,0.0000015045,0.0000015074,0.0000015117,0.0000015388, +0.0000016091,0.0000016498,0.0000016410,0.0000016306,0.0000016218, +0.0000015846,0.0000015576,0.0000015603,0.0000015702,0.0000015731, +0.0000015666,0.0000015504,0.0000015382,0.0000015332,0.0000015291, +0.0000015291,0.0000015289,0.0000015108,0.0000014987,0.0000015116, +0.0000015302,0.0000015189,0.0000014403,0.0000013316,0.0000012914, +0.0000012994,0.0000013121,0.0000013162,0.0000013167,0.0000013259, +0.0000013846,0.0000014729,0.0000015064,0.0000014668,0.0000013888, +0.0000013410,0.0000013308,0.0000013586,0.0000014245,0.0000014510, +0.0000014140,0.0000014208,0.0000015150,0.0000015297,0.0000015611, +0.0000015742,0.0000015429,0.0000015383,0.0000015472,0.0000015457, +0.0000015578,0.0000016505,0.0000017033,0.0000016909,0.0000016912, +0.0000016824,0.0000016730,0.0000016712,0.0000016804,0.0000016909, +0.0000016938,0.0000016915,0.0000016870,0.0000016817,0.0000016830, +0.0000016922,0.0000017008,0.0000017038,0.0000017047,0.0000017059, +0.0000017077,0.0000017127,0.0000017193,0.0000017020,0.0000016885, +0.0000017180,0.0000016952,0.0000016049,0.0000015654,0.0000015588, +0.0000015651,0.0000015795,0.0000015973,0.0000016032,0.0000015961, +0.0000015878,0.0000015984,0.0000016258,0.0000017344,0.0000017356, +0.0000016259,0.0000016468,0.0000017101,0.0000017069,0.0000016551, +0.0000016940,0.0000017164,0.0000017444,0.0000017677,0.0000017573, +0.0000016937,0.0000016569,0.0000016275,0.0000016231,0.0000016393, +0.0000015985,0.0000015710,0.0000015883,0.0000016104,0.0000015924, +0.0000015782,0.0000015847,0.0000015970,0.0000016022,0.0000016066, +0.0000016212,0.0000016508,0.0000016879,0.0000016877,0.0000016323, +0.0000015947,0.0000016184,0.0000016573,0.0000016687,0.0000016522, +0.0000015995,0.0000015555,0.0000015363,0.0000015248,0.0000015156, +0.0000015163,0.0000015188,0.0000015129,0.0000014989,0.0000014954, +0.0000014975,0.0000014906,0.0000014790,0.0000014732,0.0000014729, +0.0000014733,0.0000014718,0.0000014708,0.0000014739,0.0000014835, +0.0000014831,0.0000014730,0.0000014592,0.0000014533,0.0000014656, +0.0000014848,0.0000014936,0.0000014888,0.0000014806,0.0000014835, +0.0000015107,0.0000015448,0.0000015695,0.0000015819,0.0000015677, +0.0000015266,0.0000015091,0.0000015114,0.0000015102,0.0000014964, +0.0000014733,0.0000014596,0.0000014568,0.0000014585,0.0000014690, +0.0000014816,0.0000014822,0.0000014844,0.0000015114,0.0000015559, +0.0000015883,0.0000015939,0.0000015867,0.0000015689,0.0000015521, +0.0000015421,0.0000015377,0.0000015392,0.0000015406,0.0000015418, +0.0000015428,0.0000015440,0.0000015464,0.0000015498,0.0000015532, +0.0000015545,0.0000015527,0.0000015487,0.0000015471,0.0000015494, +0.0000015543,0.0000015571,0.0000015566,0.0000015540,0.0000015492, +0.0000015437,0.0000015398,0.0000015378,0.0000015359,0.0000015328, +0.0000015288,0.0000015243,0.0000015177,0.0000015091,0.0000015038, +0.0000015081,0.0000015184,0.0000015177,0.0000015027,0.0000014916, +0.0000014753,0.0000014358,0.0000014091,0.0000014156,0.0000014271, +0.0000014289,0.0000014286,0.0000014332,0.0000014616,0.0000015166, +0.0000015635,0.0000015817,0.0000015851,0.0000015748,0.0000015446, +0.0000015145,0.0000014959,0.0000015113,0.0000015478,0.0000015667, +0.0000015715,0.0000015759,0.0000015804,0.0000015861,0.0000015869, +0.0000015736,0.0000015476,0.0000015204,0.0000014956,0.0000014752, +0.0000014669,0.0000014743,0.0000014892,0.0000014941,0.0000014897, +0.0000014848,0.0000014788,0.0000014634,0.0000014595,0.0000014853, +0.0000015297,0.0000015799,0.0000016216,0.0000016474,0.0000016559, +0.0000016474,0.0000016189,0.0000015784,0.0000015457,0.0000015373, +0.0000015388,0.0000015389,0.0000015356,0.0000015251,0.0000015119, +0.0000015094,0.0000015134,0.0000015187,0.0000015594,0.0000016319, +0.0000016544,0.0000016367,0.0000016311,0.0000016133,0.0000015712, +0.0000015557,0.0000015635,0.0000015727,0.0000015741,0.0000015656, +0.0000015493,0.0000015369,0.0000015328,0.0000015316,0.0000015319, +0.0000015267,0.0000015053,0.0000014981,0.0000015196,0.0000015304, +0.0000014971,0.0000013897,0.0000012996,0.0000012857,0.0000013016, +0.0000013145,0.0000013192,0.0000013199,0.0000013447,0.0000014191, +0.0000014814,0.0000014784,0.0000014261,0.0000013876,0.0000013866, +0.0000014172,0.0000014546,0.0000014438,0.0000014073,0.0000014400, +0.0000015181,0.0000015339,0.0000015628,0.0000015718,0.0000015433, +0.0000015375,0.0000015477,0.0000015474,0.0000015546,0.0000016262, +0.0000017012,0.0000016931,0.0000016989,0.0000016922,0.0000016820, +0.0000016727,0.0000016704,0.0000016714,0.0000016741,0.0000016749, +0.0000016752,0.0000016811,0.0000016920,0.0000016986,0.0000017002, +0.0000017009,0.0000017032,0.0000017059,0.0000017102,0.0000017177, +0.0000017092,0.0000016842,0.0000016996,0.0000017196,0.0000016422, +0.0000015770,0.0000015601,0.0000015589,0.0000015696,0.0000015835, +0.0000015967,0.0000015973,0.0000015916,0.0000015883,0.0000016062, +0.0000016462,0.0000017539,0.0000016854,0.0000016194,0.0000016681, +0.0000017178,0.0000016811,0.0000016638,0.0000017063,0.0000017292, +0.0000017598,0.0000017684,0.0000017213,0.0000016664,0.0000016402, +0.0000016199,0.0000016450,0.0000016322,0.0000015866,0.0000015838, +0.0000016073,0.0000016008,0.0000015802,0.0000015826,0.0000015934, +0.0000016007,0.0000016063,0.0000016189,0.0000016437,0.0000016786, +0.0000016927,0.0000016563,0.0000016037,0.0000016123,0.0000016513, +0.0000016674,0.0000016585,0.0000016082,0.0000015600,0.0000015388, +0.0000015330,0.0000015217,0.0000015163,0.0000015165,0.0000015118, +0.0000014985,0.0000014936,0.0000014966,0.0000014927,0.0000014811, +0.0000014730,0.0000014713,0.0000014729,0.0000014726,0.0000014709, +0.0000014710,0.0000014796,0.0000014860,0.0000014788,0.0000014621, +0.0000014516,0.0000014555,0.0000014748,0.0000014926,0.0000014926, +0.0000014834,0.0000014794,0.0000015002,0.0000015367,0.0000015640, +0.0000015832,0.0000015770,0.0000015333,0.0000015085,0.0000015112, +0.0000015161,0.0000015041,0.0000014752,0.0000014568,0.0000014561, +0.0000014625,0.0000014757,0.0000014822,0.0000014785,0.0000014787, +0.0000015007,0.0000015416,0.0000015758,0.0000015920,0.0000015893, +0.0000015793,0.0000015672,0.0000015571,0.0000015511,0.0000015482, +0.0000015472,0.0000015472,0.0000015469,0.0000015452,0.0000015427, +0.0000015424,0.0000015445,0.0000015491,0.0000015525,0.0000015512, +0.0000015463,0.0000015450,0.0000015502,0.0000015558,0.0000015564, +0.0000015530,0.0000015492,0.0000015468,0.0000015460,0.0000015444, +0.0000015389,0.0000015301,0.0000015182,0.0000015071,0.0000015037, +0.0000015096,0.0000015208,0.0000015214,0.0000015057,0.0000014927, +0.0000014839,0.0000014530,0.0000014148,0.0000014076,0.0000014197, +0.0000014266,0.0000014280,0.0000014310,0.0000014491,0.0000014938, +0.0000015472,0.0000015768,0.0000015799,0.0000015584,0.0000015240, +0.0000015007,0.0000014880,0.0000015035,0.0000015402,0.0000015601, +0.0000015669,0.0000015722,0.0000015759,0.0000015806,0.0000015823, +0.0000015743,0.0000015563,0.0000015359,0.0000015113,0.0000014836, +0.0000014695,0.0000014757,0.0000014900,0.0000014936,0.0000014880, +0.0000014843,0.0000014767,0.0000014604,0.0000014611,0.0000014924, +0.0000015410,0.0000015916,0.0000016297,0.0000016518,0.0000016567, +0.0000016411,0.0000016046,0.0000015628,0.0000015426,0.0000015436, +0.0000015460,0.0000015430,0.0000015358,0.0000015231,0.0000015142, +0.0000015156,0.0000015183,0.0000015277,0.0000015849,0.0000016502, +0.0000016518,0.0000016333,0.0000016302,0.0000016007,0.0000015618, +0.0000015555,0.0000015665,0.0000015740,0.0000015740,0.0000015661, +0.0000015501,0.0000015367,0.0000015335,0.0000015336,0.0000015333, +0.0000015245,0.0000015002,0.0000015000,0.0000015261,0.0000015290, +0.0000014644,0.0000013558,0.0000012930,0.0000012906,0.0000013076, +0.0000013220,0.0000013263,0.0000013316,0.0000013739,0.0000014389, +0.0000014740,0.0000014564,0.0000014299,0.0000014316,0.0000014565, +0.0000014659,0.0000014303,0.0000014039,0.0000014596,0.0000015197, +0.0000015377,0.0000015633,0.0000015693,0.0000015443,0.0000015360, +0.0000015473,0.0000015478,0.0000015523,0.0000016066,0.0000016967, +0.0000016977,0.0000017040,0.0000017016,0.0000016954,0.0000016864, +0.0000016784,0.0000016743,0.0000016744,0.0000016781,0.0000016857, +0.0000016943,0.0000016975,0.0000016977,0.0000016986,0.0000017020, +0.0000017056,0.0000017097,0.0000017161,0.0000017121,0.0000016842, +0.0000016847,0.0000017174,0.0000016830,0.0000015941,0.0000015644, +0.0000015555,0.0000015613,0.0000015722,0.0000015859,0.0000015959, +0.0000015957,0.0000015936,0.0000015917,0.0000016159,0.0000016782, +0.0000017438,0.0000016397,0.0000016312,0.0000016894,0.0000017089, +0.0000016622,0.0000016852,0.0000017150,0.0000017459,0.0000017676, +0.0000017461,0.0000016833,0.0000016502,0.0000016247,0.0000016379, +0.0000016555,0.0000016148,0.0000015898,0.0000016019,0.0000016066, +0.0000015871,0.0000015829,0.0000015908,0.0000015986,0.0000016057, +0.0000016168,0.0000016377,0.0000016726,0.0000016954,0.0000016729, +0.0000016161,0.0000016098,0.0000016438,0.0000016631,0.0000016610, +0.0000016176,0.0000015674,0.0000015423,0.0000015405,0.0000015289, +0.0000015171,0.0000015145,0.0000015108,0.0000014990,0.0000014932, +0.0000014963,0.0000014949,0.0000014843,0.0000014738,0.0000014697, +0.0000014709,0.0000014725,0.0000014711,0.0000014700,0.0000014754, +0.0000014867,0.0000014858,0.0000014699,0.0000014539,0.0000014509, +0.0000014647,0.0000014879,0.0000014956,0.0000014879,0.0000014798, +0.0000014926,0.0000015303,0.0000015603,0.0000015805,0.0000015776, +0.0000015370,0.0000015070,0.0000015081,0.0000015182,0.0000015131, +0.0000014812,0.0000014585,0.0000014582,0.0000014691,0.0000014812, +0.0000014814,0.0000014758,0.0000014745,0.0000014916,0.0000015244, +0.0000015585,0.0000015794,0.0000015863,0.0000015842,0.0000015780, +0.0000015727,0.0000015675,0.0000015624,0.0000015590,0.0000015576, +0.0000015554,0.0000015490,0.0000015408,0.0000015367,0.0000015383, +0.0000015441,0.0000015516,0.0000015539,0.0000015491,0.0000015424, +0.0000015423,0.0000015479,0.0000015514,0.0000015510,0.0000015497, +0.0000015486,0.0000015454,0.0000015371,0.0000015236,0.0000015108, +0.0000015053,0.0000015117,0.0000015233,0.0000015240,0.0000015092, +0.0000014945,0.0000014899,0.0000014709,0.0000014307,0.0000014078, +0.0000014116,0.0000014216,0.0000014273,0.0000014303,0.0000014415, +0.0000014748,0.0000015244,0.0000015638,0.0000015667,0.0000015383, +0.0000015080,0.0000014922,0.0000014851,0.0000015015,0.0000015361, +0.0000015542,0.0000015622,0.0000015687,0.0000015726,0.0000015762, +0.0000015778,0.0000015735,0.0000015625,0.0000015485,0.0000015245, +0.0000014904,0.0000014715,0.0000014777,0.0000014907,0.0000014917, +0.0000014859,0.0000014839,0.0000014738,0.0000014578,0.0000014641, +0.0000015012,0.0000015538,0.0000016031,0.0000016373,0.0000016554, +0.0000016558,0.0000016330,0.0000015889,0.0000015516,0.0000015447, +0.0000015521,0.0000015523,0.0000015444,0.0000015325,0.0000015204, +0.0000015187,0.0000015225,0.0000015229,0.0000015433,0.0000016133, +0.0000016569,0.0000016445,0.0000016322,0.0000016267,0.0000015875, +0.0000015546,0.0000015563,0.0000015688,0.0000015743,0.0000015733, +0.0000015672,0.0000015519,0.0000015372,0.0000015339,0.0000015351, +0.0000015349,0.0000015211,0.0000014989,0.0000015076,0.0000015308, +0.0000015144,0.0000014355,0.0000013490,0.0000013051,0.0000013018, +0.0000013158,0.0000013305,0.0000013456,0.0000013756,0.0000014297, +0.0000014788,0.0000014869,0.0000014742,0.0000014721,0.0000014800, +0.0000014604,0.0000014137,0.0000014098,0.0000014783,0.0000015202, +0.0000015412,0.0000015618,0.0000015659,0.0000015449,0.0000015344, +0.0000015454,0.0000015469,0.0000015533,0.0000015850,0.0000016739, +0.0000017021,0.0000017039,0.0000017054,0.0000017033,0.0000016989, +0.0000016941,0.0000016912,0.0000016916,0.0000016953,0.0000016983, +0.0000016977,0.0000016956,0.0000016951,0.0000016991,0.0000017053, +0.0000017101,0.0000017148,0.0000017120,0.0000016846,0.0000016765, +0.0000017047,0.0000017091,0.0000016183,0.0000015700,0.0000015552, +0.0000015527,0.0000015647,0.0000015765,0.0000015910,0.0000015973, +0.0000015977,0.0000015982,0.0000015967,0.0000016310,0.0000017126, +0.0000017142,0.0000016248,0.0000016529,0.0000017007,0.0000016879, +0.0000016608,0.0000017038,0.0000017290,0.0000017619,0.0000017608, +0.0000017076,0.0000016594,0.0000016334,0.0000016287,0.0000016594, +0.0000016440,0.0000016046,0.0000015987,0.0000016079,0.0000015960, +0.0000015858,0.0000015896,0.0000015965,0.0000016046,0.0000016154, +0.0000016337,0.0000016646,0.0000016955,0.0000016840,0.0000016314, +0.0000016112,0.0000016351,0.0000016584,0.0000016634,0.0000016279, +0.0000015766,0.0000015466,0.0000015466,0.0000015361,0.0000015195, +0.0000015128,0.0000015092,0.0000015002,0.0000014942,0.0000014969, +0.0000014973,0.0000014872,0.0000014746,0.0000014676,0.0000014682, +0.0000014717,0.0000014711,0.0000014695,0.0000014724,0.0000014837, +0.0000014893,0.0000014800,0.0000014612,0.0000014511,0.0000014584, +0.0000014835,0.0000014968,0.0000014924,0.0000014805,0.0000014877, +0.0000015258,0.0000015585,0.0000015787,0.0000015786,0.0000015384, +0.0000015040,0.0000015047,0.0000015213,0.0000015195,0.0000014885, +0.0000014629,0.0000014636,0.0000014775,0.0000014864,0.0000014814, +0.0000014745,0.0000014758,0.0000014844,0.0000015057,0.0000015368, +0.0000015656,0.0000015808,0.0000015823,0.0000015825,0.0000015807, +0.0000015775,0.0000015724,0.0000015677,0.0000015641,0.0000015559, +0.0000015409,0.0000015296,0.0000015291,0.0000015354,0.0000015434, +0.0000015515,0.0000015570,0.0000015522,0.0000015399,0.0000015326, +0.0000015339,0.0000015383,0.0000015405,0.0000015401,0.0000015359, +0.0000015266,0.0000015163,0.0000015122,0.0000015177,0.0000015275, +0.0000015273,0.0000015130,0.0000014979,0.0000014943,0.0000014858, +0.0000014507,0.0000014156,0.0000014085,0.0000014161,0.0000014254, +0.0000014310,0.0000014395,0.0000014638,0.0000015034,0.0000015393, +0.0000015439,0.0000015206,0.0000014991,0.0000014878,0.0000014852, +0.0000015041,0.0000015356,0.0000015507,0.0000015582,0.0000015652, +0.0000015695,0.0000015730,0.0000015746,0.0000015718,0.0000015644, +0.0000015542,0.0000015305,0.0000014925,0.0000014742,0.0000014818, +0.0000014913,0.0000014885,0.0000014844,0.0000014836,0.0000014696, +0.0000014566,0.0000014692,0.0000015124,0.0000015676,0.0000016142, +0.0000016440,0.0000016576,0.0000016528,0.0000016221,0.0000015738, +0.0000015448,0.0000015498,0.0000015591,0.0000015559,0.0000015434, +0.0000015271,0.0000015196,0.0000015243,0.0000015277,0.0000015261, +0.0000015657,0.0000016408,0.0000016623,0.0000016374,0.0000016323, +0.0000016191,0.0000015742,0.0000015507,0.0000015576,0.0000015704, +0.0000015736,0.0000015725,0.0000015686,0.0000015539,0.0000015376, +0.0000015337,0.0000015355,0.0000015354,0.0000015170,0.0000014949, +0.0000015113,0.0000015315,0.0000014984,0.0000014202,0.0000013665, +0.0000013301,0.0000013096,0.0000013176,0.0000013429,0.0000013927, +0.0000014599,0.0000015138,0.0000015300,0.0000015233,0.0000015078, +0.0000014834,0.0000014374,0.0000014007,0.0000014272,0.0000014930, +0.0000015206,0.0000015441,0.0000015594,0.0000015610,0.0000015438, +0.0000015332,0.0000015432,0.0000015435,0.0000015518,0.0000015667, +0.0000016417,0.0000017023,0.0000017027,0.0000017063,0.0000017058, +0.0000017032,0.0000017006,0.0000016988,0.0000016986,0.0000016992, +0.0000016978,0.0000016928,0.0000016876,0.0000016886,0.0000016977, +0.0000017074,0.0000017123,0.0000017073,0.0000016822,0.0000016720, +0.0000016935,0.0000017124,0.0000016473,0.0000015755,0.0000015569, +0.0000015480,0.0000015563,0.0000015696,0.0000015849,0.0000015948, +0.0000015977,0.0000016027,0.0000016023,0.0000016032,0.0000016543, +0.0000017302,0.0000016682,0.0000016226,0.0000016776,0.0000017040, +0.0000016698,0.0000016791,0.0000017162,0.0000017474,0.0000017650, +0.0000017328,0.0000016737,0.0000016441,0.0000016259,0.0000016529, +0.0000016630,0.0000016269,0.0000016030,0.0000016055,0.0000016032, +0.0000015901,0.0000015897,0.0000015950,0.0000016033,0.0000016145, +0.0000016306,0.0000016568,0.0000016902,0.0000016963,0.0000016514, +0.0000016146,0.0000016263,0.0000016533,0.0000016619,0.0000016365, +0.0000015870,0.0000015509,0.0000015506,0.0000015417,0.0000015224, +0.0000015115,0.0000015076,0.0000015019,0.0000014961,0.0000014980, +0.0000014986,0.0000014888,0.0000014750,0.0000014658,0.0000014656, +0.0000014705,0.0000014709,0.0000014687,0.0000014711,0.0000014802, +0.0000014905,0.0000014888,0.0000014718,0.0000014557,0.0000014603, +0.0000014830,0.0000014989,0.0000014961,0.0000014810,0.0000014847, +0.0000015245,0.0000015603,0.0000015805,0.0000015801,0.0000015368, +0.0000015008,0.0000015026,0.0000015243,0.0000015268,0.0000014971, +0.0000014709,0.0000014719,0.0000014859,0.0000014913,0.0000014837, +0.0000014774,0.0000014776,0.0000014781,0.0000014899,0.0000015175, +0.0000015510,0.0000015746,0.0000015827,0.0000015826,0.0000015816, +0.0000015786,0.0000015739,0.0000015708,0.0000015647,0.0000015448, +0.0000015195,0.0000015122,0.0000015232,0.0000015373,0.0000015443, +0.0000015517,0.0000015582,0.0000015531,0.0000015367,0.0000015228, +0.0000015199,0.0000015228,0.0000015251,0.0000015244,0.0000015209, +0.0000015200,0.0000015257,0.0000015334,0.0000015320,0.0000015185, +0.0000015029,0.0000014986,0.0000014985,0.0000014729,0.0000014299, +0.0000014101,0.0000014131,0.0000014230,0.0000014322,0.0000014413, +0.0000014608,0.0000014911,0.0000015178,0.0000015212,0.0000015066, +0.0000014939,0.0000014837,0.0000014850,0.0000015094,0.0000015394, +0.0000015510,0.0000015569,0.0000015625,0.0000015665,0.0000015703, +0.0000015720,0.0000015686,0.0000015612,0.0000015540,0.0000015293, +0.0000014901,0.0000014756,0.0000014850,0.0000014916,0.0000014864, +0.0000014841,0.0000014827,0.0000014645,0.0000014561,0.0000014764, +0.0000015254,0.0000015819,0.0000016247,0.0000016501,0.0000016582, +0.0000016480,0.0000016082,0.0000015611,0.0000015458,0.0000015580, +0.0000015643,0.0000015561,0.0000015383,0.0000015209,0.0000015200, +0.0000015307,0.0000015301,0.0000015341,0.0000015917,0.0000016587, +0.0000016570,0.0000016322,0.0000016305,0.0000016078,0.0000015605, +0.0000015465,0.0000015587,0.0000015715,0.0000015727,0.0000015712, +0.0000015699,0.0000015560,0.0000015377,0.0000015332,0.0000015358, +0.0000015354,0.0000015132,0.0000014957,0.0000015162,0.0000015281, +0.0000014835,0.0000014223,0.0000013992,0.0000013560,0.0000013130, +0.0000013154,0.0000013588,0.0000014400,0.0000015195,0.0000015493, +0.0000015469,0.0000015133,0.0000014561,0.0000014055,0.0000013983, +0.0000014508,0.0000015017,0.0000015218,0.0000015459,0.0000015560, +0.0000015557,0.0000015414,0.0000015335,0.0000015436,0.0000015400, +0.0000015431,0.0000015571,0.0000016078,0.0000016891,0.0000017046, +0.0000017060,0.0000017062,0.0000017043,0.0000017023,0.0000016997, +0.0000016979,0.0000016956,0.0000016897,0.0000016790,0.0000016725, +0.0000016781,0.0000016930,0.0000017025,0.0000016964,0.0000016757, +0.0000016686,0.0000016874,0.0000017076,0.0000016710,0.0000015844, +0.0000015576,0.0000015463,0.0000015500,0.0000015669,0.0000015815, +0.0000015895,0.0000015943,0.0000016030,0.0000016094,0.0000016052, +0.0000016159,0.0000016830,0.0000017166,0.0000016345,0.0000016413, +0.0000016935,0.0000016876,0.0000016606,0.0000017017,0.0000017314, +0.0000017604,0.0000017511,0.0000016954,0.0000016538,0.0000016310, +0.0000016397,0.0000016666,0.0000016478,0.0000016151,0.0000016044, +0.0000016066,0.0000015972,0.0000015914,0.0000015944,0.0000016021, +0.0000016138,0.0000016279,0.0000016494,0.0000016850,0.0000017064, +0.0000016701,0.0000016170,0.0000016204,0.0000016473,0.0000016583, +0.0000016433,0.0000015970,0.0000015564,0.0000015528,0.0000015458, +0.0000015256,0.0000015110,0.0000015066,0.0000015034,0.0000014985, +0.0000014985,0.0000014985,0.0000014894,0.0000014749,0.0000014644, +0.0000014638,0.0000014693,0.0000014702,0.0000014675,0.0000014701, +0.0000014780,0.0000014886,0.0000014934,0.0000014821,0.0000014647, +0.0000014667,0.0000014872,0.0000015020,0.0000014985,0.0000014800, +0.0000014842,0.0000015277,0.0000015645,0.0000015823,0.0000015803, +0.0000015330,0.0000014978,0.0000015044,0.0000015300,0.0000015356, +0.0000015092,0.0000014832,0.0000014828,0.0000014930,0.0000014963, +0.0000014887,0.0000014811,0.0000014773,0.0000014767,0.0000014809, +0.0000015037,0.0000015397,0.0000015684,0.0000015802,0.0000015806, +0.0000015772,0.0000015723,0.0000015709,0.0000015702,0.0000015550, +0.0000015190,0.0000014945,0.0000015019,0.0000015265,0.0000015410, +0.0000015439,0.0000015514,0.0000015592,0.0000015541,0.0000015353, +0.0000015192,0.0000015161,0.0000015188,0.0000015234,0.0000015295, +0.0000015373,0.0000015411,0.0000015364,0.0000015229,0.0000015082, +0.0000015032,0.0000015050,0.0000014921,0.0000014503,0.0000014179, +0.0000014133,0.0000014230,0.0000014341,0.0000014449,0.0000014622, +0.0000014864,0.0000015049,0.0000015065,0.0000014981,0.0000014892, +0.0000014788,0.0000014836,0.0000015161,0.0000015444,0.0000015541, +0.0000015591,0.0000015627,0.0000015652,0.0000015684,0.0000015692, +0.0000015640,0.0000015566,0.0000015502,0.0000015228,0.0000014858, +0.0000014781,0.0000014888,0.0000014916,0.0000014850,0.0000014847, +0.0000014801,0.0000014601,0.0000014560,0.0000014865,0.0000015397, +0.0000015954,0.0000016337,0.0000016548,0.0000016599,0.0000016409, +0.0000015930,0.0000015527,0.0000015503,0.0000015638,0.0000015659, +0.0000015523,0.0000015304,0.0000015181,0.0000015262,0.0000015365, +0.0000015319,0.0000015482,0.0000016189,0.0000016682,0.0000016486, +0.0000016302,0.0000016296,0.0000015927,0.0000015484,0.0000015425, +0.0000015596,0.0000015724,0.0000015713,0.0000015683,0.0000015690, +0.0000015572,0.0000015382,0.0000015331,0.0000015358,0.0000015349, +0.0000015109,0.0000014981,0.0000015190,0.0000015277,0.0000014761, +0.0000014323,0.0000014322,0.0000013906,0.0000013222,0.0000013071, +0.0000013480,0.0000014210,0.0000014783,0.0000014864,0.0000014516, +0.0000014023,0.0000013891,0.0000014154,0.0000014727,0.0000015047, +0.0000015249,0.0000015469,0.0000015522,0.0000015499,0.0000015390, +0.0000015345,0.0000015459,0.0000015441,0.0000015357,0.0000015454, +0.0000015762,0.0000016550,0.0000017049,0.0000017038,0.0000017022, +0.0000017002,0.0000017026,0.0000017041,0.0000017015,0.0000016945, +0.0000016805,0.0000016644,0.0000016595,0.0000016666,0.0000016760, +0.0000016761,0.0000016661,0.0000016682,0.0000016853,0.0000017046, +0.0000016835,0.0000015972,0.0000015567,0.0000015466,0.0000015494, +0.0000015687,0.0000015831,0.0000015854,0.0000015908,0.0000016055, +0.0000016151,0.0000016141,0.0000016066,0.0000016375,0.0000017030, +0.0000016824,0.0000016232,0.0000016658,0.0000016949,0.0000016692, +0.0000016763,0.0000017189,0.0000017498,0.0000017601,0.0000017203, +0.0000016667,0.0000016402,0.0000016318,0.0000016606,0.0000016610, +0.0000016310,0.0000016074,0.0000016066,0.0000016044,0.0000015944, +0.0000015948,0.0000016013,0.0000016127,0.0000016259,0.0000016441, +0.0000016765,0.0000016996,0.0000016827,0.0000016317,0.0000016199, +0.0000016412,0.0000016591,0.0000016486,0.0000016070,0.0000015616, +0.0000015542,0.0000015487,0.0000015290,0.0000015118,0.0000015063, +0.0000015040,0.0000014998,0.0000014987,0.0000014984,0.0000014894, +0.0000014742,0.0000014628,0.0000014624,0.0000014683,0.0000014688, +0.0000014659,0.0000014692,0.0000014777,0.0000014865,0.0000014945, +0.0000014899,0.0000014758,0.0000014782,0.0000014942,0.0000015051, +0.0000014989,0.0000014778,0.0000014875,0.0000015346,0.0000015688, +0.0000015835,0.0000015795,0.0000015283,0.0000014969,0.0000015082, +0.0000015359,0.0000015457,0.0000015249,0.0000015006,0.0000014933, +0.0000014984,0.0000014993,0.0000014923,0.0000014832,0.0000014783, +0.0000014763,0.0000014799,0.0000014996,0.0000015319,0.0000015618, +0.0000015764,0.0000015766,0.0000015714,0.0000015695,0.0000015710, +0.0000015641,0.0000015255,0.0000014805,0.0000014729,0.0000015040, +0.0000015346,0.0000015406,0.0000015406,0.0000015499,0.0000015595, +0.0000015556,0.0000015408,0.0000015310,0.0000015317,0.0000015395, +0.0000015484,0.0000015497,0.0000015411,0.0000015255,0.0000015120, +0.0000015070,0.0000015114,0.0000015069,0.0000014706,0.0000014306, +0.0000014199,0.0000014264,0.0000014383,0.0000014495,0.0000014653, +0.0000014858,0.0000014988,0.0000014991,0.0000014933,0.0000014838, +0.0000014754,0.0000014882,0.0000015242,0.0000015490,0.0000015574, +0.0000015623,0.0000015648,0.0000015659,0.0000015670,0.0000015657, +0.0000015599,0.0000015550,0.0000015462,0.0000015135,0.0000014821, +0.0000014811,0.0000014915,0.0000014906,0.0000014847,0.0000014852, +0.0000014759,0.0000014566,0.0000014605,0.0000014981,0.0000015549, +0.0000016078,0.0000016411,0.0000016576,0.0000016584,0.0000016308, +0.0000015787,0.0000015475,0.0000015564,0.0000015706,0.0000015649, +0.0000015438,0.0000015223,0.0000015193,0.0000015345,0.0000015393, +0.0000015360,0.0000015687,0.0000016434,0.0000016700,0.0000016385, +0.0000016297,0.0000016243,0.0000015761,0.0000015403,0.0000015424, +0.0000015614,0.0000015738,0.0000015689,0.0000015612,0.0000015636, +0.0000015573,0.0000015390,0.0000015330,0.0000015355,0.0000015355, +0.0000015110,0.0000014977,0.0000015198,0.0000015262,0.0000014746, +0.0000014438,0.0000014629,0.0000014337,0.0000013510,0.0000013088, +0.0000013138,0.0000013433,0.0000013648,0.0000013629,0.0000013718, +0.0000013953,0.0000014475,0.0000014868,0.0000015059,0.0000015289, +0.0000015469,0.0000015500,0.0000015460,0.0000015377,0.0000015337, +0.0000015431,0.0000015545,0.0000015419,0.0000015374,0.0000015509, +0.0000016109,0.0000016878,0.0000017019,0.0000016914,0.0000016812, +0.0000016872,0.0000016998,0.0000017071,0.0000017044,0.0000016845, +0.0000016612,0.0000016524,0.0000016530,0.0000016563,0.0000016617, +0.0000016692,0.0000016869,0.0000017018,0.0000016890,0.0000016085, +0.0000015572,0.0000015506,0.0000015549,0.0000015762,0.0000015885, +0.0000015842,0.0000015865,0.0000016103,0.0000016255,0.0000016254, +0.0000016148,0.0000016107,0.0000016660,0.0000017085,0.0000016436, +0.0000016335,0.0000016847,0.0000016837,0.0000016631,0.0000017012, +0.0000017354,0.0000017592,0.0000017413,0.0000016859,0.0000016494, +0.0000016320,0.0000016469,0.0000016649,0.0000016458,0.0000016171, +0.0000016062,0.0000016089,0.0000016005,0.0000015966,0.0000016012, +0.0000016115,0.0000016245,0.0000016405,0.0000016681,0.0000017009, +0.0000016948,0.0000016445,0.0000016211,0.0000016357,0.0000016555, +0.0000016512,0.0000016176,0.0000015665,0.0000015542,0.0000015511, +0.0000015332,0.0000015139,0.0000015062,0.0000015032,0.0000014994, +0.0000014988,0.0000014989,0.0000014894,0.0000014729,0.0000014610, +0.0000014614,0.0000014671,0.0000014667,0.0000014644,0.0000014688, +0.0000014787,0.0000014860,0.0000014932,0.0000014927,0.0000014858, +0.0000014902,0.0000015005,0.0000015065,0.0000014967,0.0000014759, +0.0000014947,0.0000015430,0.0000015719,0.0000015842,0.0000015760, +0.0000015246,0.0000014980,0.0000015115,0.0000015410,0.0000015553, +0.0000015428,0.0000015205,0.0000015091,0.0000015086,0.0000015078, +0.0000014995,0.0000014881,0.0000014813,0.0000014810,0.0000014878, +0.0000015007,0.0000015276,0.0000015573,0.0000015737,0.0000015765, +0.0000015761,0.0000015775,0.0000015714,0.0000015319,0.0000014729, +0.0000014480,0.0000014737,0.0000015210,0.0000015393,0.0000015347, +0.0000015346,0.0000015470,0.0000015574,0.0000015579,0.0000015537, +0.0000015526,0.0000015544,0.0000015523,0.0000015417,0.0000015267, +0.0000015146,0.0000015096,0.0000015141,0.0000015155,0.0000014885, +0.0000014456,0.0000014277,0.0000014337,0.0000014453,0.0000014557, +0.0000014688,0.0000014861,0.0000014974,0.0000014973,0.0000014908, +0.0000014783,0.0000014749,0.0000014960,0.0000015331,0.0000015530, +0.0000015608,0.0000015656,0.0000015672,0.0000015667,0.0000015654, +0.0000015632,0.0000015594,0.0000015562,0.0000015402,0.0000015014, +0.0000014780,0.0000014829,0.0000014917,0.0000014884,0.0000014842, +0.0000014838,0.0000014694,0.0000014530,0.0000014658,0.0000015114, +0.0000015707,0.0000016185,0.0000016470,0.0000016593,0.0000016542, +0.0000016182,0.0000015660,0.0000015479,0.0000015597,0.0000015671, +0.0000015551,0.0000015313,0.0000015156,0.0000015247,0.0000015411, +0.0000015391,0.0000015405,0.0000015927,0.0000016619,0.0000016648, +0.0000016300,0.0000016300,0.0000016143,0.0000015603,0.0000015348, +0.0000015425,0.0000015640,0.0000015761,0.0000015658,0.0000015501, +0.0000015541,0.0000015551,0.0000015394,0.0000015325,0.0000015353, +0.0000015367,0.0000015131,0.0000014963,0.0000015176,0.0000015237, +0.0000014807,0.0000014540,0.0000014727,0.0000014692,0.0000014110, +0.0000013548,0.0000013309,0.0000013335,0.0000013568,0.0000013915, +0.0000014354,0.0000014727,0.0000014918,0.0000015099,0.0000015322, +0.0000015459,0.0000015495,0.0000015438,0.0000015372,0.0000015315, +0.0000015346,0.0000015556,0.0000015537,0.0000015394,0.0000015376, +0.0000015690,0.0000016477,0.0000016961,0.0000016860,0.0000016617, +0.0000016586,0.0000016732,0.0000016942,0.0000017088,0.0000017064, +0.0000016856,0.0000016672,0.0000016643,0.0000016708,0.0000016808, +0.0000016914,0.0000017001,0.0000016885,0.0000016153,0.0000015575, +0.0000015511,0.0000015638,0.0000015847,0.0000015929,0.0000015842, +0.0000015845,0.0000016125,0.0000016313,0.0000016349,0.0000016292, +0.0000016135,0.0000016270,0.0000016915,0.0000016851,0.0000016293, +0.0000016568,0.0000016886,0.0000016709,0.0000016782,0.0000017219, +0.0000017528,0.0000017553,0.0000017095,0.0000016611,0.0000016362, +0.0000016352,0.0000016605,0.0000016556,0.0000016300,0.0000016088, +0.0000016101,0.0000016072,0.0000015997,0.0000016021,0.0000016110, +0.0000016230,0.0000016373,0.0000016604,0.0000016937,0.0000017033, +0.0000016617,0.0000016215,0.0000016301,0.0000016551,0.0000016571, +0.0000016272,0.0000015719,0.0000015541,0.0000015535,0.0000015378, +0.0000015170,0.0000015062,0.0000015011,0.0000014979,0.0000014992, +0.0000014998,0.0000014891,0.0000014711,0.0000014591,0.0000014605, +0.0000014659,0.0000014647,0.0000014635,0.0000014693,0.0000014800, +0.0000014863,0.0000014901,0.0000014924,0.0000014930,0.0000014984, +0.0000015040,0.0000015062,0.0000014931,0.0000014769,0.0000015049, +0.0000015510,0.0000015743,0.0000015848,0.0000015728,0.0000015222, +0.0000014991,0.0000015142,0.0000015456,0.0000015605,0.0000015585, +0.0000015454,0.0000015365,0.0000015347,0.0000015312,0.0000015197, +0.0000015045,0.0000014946,0.0000014907,0.0000014934,0.0000015011, +0.0000015268,0.0000015575,0.0000015765,0.0000015851,0.0000015869, +0.0000015768,0.0000015353,0.0000014734,0.0000014369,0.0000014514, +0.0000014990,0.0000015323,0.0000015342,0.0000015281,0.0000015315, +0.0000015408,0.0000015467,0.0000015472,0.0000015456,0.0000015414, +0.0000015331,0.0000015234,0.0000015156,0.0000015122,0.0000015166, +0.0000015193,0.0000015008,0.0000014601,0.0000014383,0.0000014424, +0.0000014540,0.0000014632,0.0000014730,0.0000014864,0.0000014963, +0.0000014969,0.0000014896,0.0000014771,0.0000014786,0.0000015064, +0.0000015400,0.0000015569,0.0000015641,0.0000015687,0.0000015690, +0.0000015667,0.0000015642,0.0000015632,0.0000015618,0.0000015575, +0.0000015311,0.0000014880,0.0000014720,0.0000014823,0.0000014908, +0.0000014860,0.0000014835,0.0000014822,0.0000014614,0.0000014518, +0.0000014735,0.0000015268,0.0000015865,0.0000016274,0.0000016515, +0.0000016592,0.0000016469,0.0000016032,0.0000015543,0.0000015455, +0.0000015593,0.0000015591,0.0000015424,0.0000015205,0.0000015144, +0.0000015323,0.0000015424,0.0000015367,0.0000015500,0.0000016169, +0.0000016748,0.0000016551,0.0000016238,0.0000016314,0.0000016025, +0.0000015455,0.0000015305,0.0000015435,0.0000015667,0.0000015775, +0.0000015618,0.0000015365,0.0000015406,0.0000015504,0.0000015406, +0.0000015316,0.0000015344,0.0000015367,0.0000015172,0.0000014963, +0.0000015126,0.0000015234,0.0000014931,0.0000014624,0.0000014731, +0.0000014889,0.0000014729,0.0000014442,0.0000014280,0.0000014332, +0.0000014538,0.0000014702,0.0000014806,0.0000014948,0.0000015165, +0.0000015333,0.0000015440,0.0000015500,0.0000015451,0.0000015379, +0.0000015321,0.0000015284,0.0000015428,0.0000015528,0.0000015462, +0.0000015365,0.0000015424,0.0000015962,0.0000016728,0.0000016900, +0.0000016604,0.0000016477,0.0000016547,0.0000016645,0.0000016844, +0.0000017029,0.0000017072,0.0000017000,0.0000016932,0.0000016917, +0.0000016951,0.0000016978,0.0000016828,0.0000016161,0.0000015602, +0.0000015531,0.0000015700,0.0000015911,0.0000015933,0.0000015809, +0.0000015798,0.0000016103,0.0000016314,0.0000016349,0.0000016373, +0.0000016273,0.0000016132,0.0000016529,0.0000016969,0.0000016500, +0.0000016318,0.0000016783,0.0000016809,0.0000016673,0.0000017037, +0.0000017395,0.0000017574,0.0000017319,0.0000016784,0.0000016444, +0.0000016294,0.0000016480,0.0000016580,0.0000016424,0.0000016167, +0.0000016094,0.0000016124,0.0000016048,0.0000016044,0.0000016115, +0.0000016215,0.0000016339,0.0000016534,0.0000016893,0.0000017112, +0.0000016755,0.0000016242,0.0000016267,0.0000016546,0.0000016622, +0.0000016349,0.0000015794,0.0000015564,0.0000015561,0.0000015422, +0.0000015201,0.0000015066,0.0000014992,0.0000014967,0.0000014994, +0.0000015003,0.0000014885,0.0000014692,0.0000014574,0.0000014596, +0.0000014651,0.0000014637,0.0000014633,0.0000014698,0.0000014805, +0.0000014864,0.0000014867,0.0000014900,0.0000014968,0.0000015016, +0.0000015053,0.0000015055,0.0000014889,0.0000014816,0.0000015153, +0.0000015580,0.0000015762,0.0000015852,0.0000015707,0.0000015207, +0.0000015004,0.0000015170,0.0000015485,0.0000015663,0.0000015727, +0.0000015695,0.0000015666,0.0000015643,0.0000015582,0.0000015454, +0.0000015296,0.0000015145,0.0000015007,0.0000014941,0.0000015015, +0.0000015301,0.0000015618,0.0000015818,0.0000015865,0.0000015777, +0.0000015384,0.0000014768,0.0000014344,0.0000014352,0.0000014746, +0.0000015175,0.0000015333,0.0000015296,0.0000015273,0.0000015282, +0.0000015271,0.0000015229,0.0000015185,0.0000015155,0.0000015133, +0.0000015115,0.0000015122,0.0000015190,0.0000015234,0.0000015081, +0.0000014706,0.0000014479,0.0000014514,0.0000014625,0.0000014701, +0.0000014770,0.0000014868,0.0000014943,0.0000014946,0.0000014874, +0.0000014810,0.0000014909,0.0000015227,0.0000015470,0.0000015578, +0.0000015663,0.0000015698,0.0000015686,0.0000015651,0.0000015640, +0.0000015652,0.0000015657,0.0000015559,0.0000015177,0.0000014764, +0.0000014697,0.0000014831,0.0000014872,0.0000014826,0.0000014823, +0.0000014762,0.0000014523,0.0000014506,0.0000014860,0.0000015444, +0.0000016014,0.0000016347,0.0000016546,0.0000016582,0.0000016369, +0.0000015872,0.0000015462,0.0000015463,0.0000015578,0.0000015509, +0.0000015320,0.0000015157,0.0000015189,0.0000015383,0.0000015399, +0.0000015352,0.0000015646,0.0000016413,0.0000016733,0.0000016431, +0.0000016226,0.0000016287,0.0000015870,0.0000015367,0.0000015303, +0.0000015447,0.0000015692,0.0000015773,0.0000015570,0.0000015238, +0.0000015263,0.0000015467,0.0000015430,0.0000015325,0.0000015334, +0.0000015364,0.0000015239,0.0000014964,0.0000015013,0.0000015233, +0.0000015110,0.0000014758,0.0000014661,0.0000014804,0.0000014858, +0.0000014888,0.0000014835,0.0000014766,0.0000014778,0.0000014840, +0.0000015037,0.0000015228,0.0000015321,0.0000015426,0.0000015519, +0.0000015501,0.0000015437,0.0000015366,0.0000015269,0.0000015308, +0.0000015454,0.0000015481,0.0000015417,0.0000015365,0.0000015541, +0.0000016236,0.0000016840,0.0000016740,0.0000016551,0.0000016682, +0.0000016731,0.0000016697,0.0000016746,0.0000016832,0.0000016881, +0.0000016912,0.0000016961,0.0000016964,0.0000016722,0.0000016100, +0.0000015624,0.0000015579,0.0000015760,0.0000015944,0.0000015945, +0.0000015786,0.0000015725,0.0000016012,0.0000016297,0.0000016311, +0.0000016333,0.0000016374,0.0000016227,0.0000016242,0.0000016795, +0.0000016811,0.0000016330,0.0000016524,0.0000016843,0.0000016722, +0.0000016825,0.0000017271,0.0000017546,0.0000017481,0.0000017005, +0.0000016558,0.0000016318,0.0000016352,0.0000016542,0.0000016502, +0.0000016287,0.0000016117,0.0000016144,0.0000016115,0.0000016080, +0.0000016130,0.0000016204,0.0000016309,0.0000016483,0.0000016802, +0.0000017026,0.0000016854,0.0000016373,0.0000016269,0.0000016511, +0.0000016623,0.0000016415,0.0000015879,0.0000015588,0.0000015582, +0.0000015454,0.0000015229,0.0000015075,0.0000014982,0.0000014960, +0.0000014998,0.0000015007,0.0000014879,0.0000014678,0.0000014563, +0.0000014594,0.0000014648,0.0000014634,0.0000014636,0.0000014695, +0.0000014798,0.0000014858,0.0000014840,0.0000014881,0.0000014979, +0.0000015005,0.0000015046,0.0000015041,0.0000014850,0.0000014837, +0.0000015252,0.0000015639,0.0000015772,0.0000015850,0.0000015699, +0.0000015213,0.0000015020,0.0000015193,0.0000015507,0.0000015707, +0.0000015777,0.0000015813,0.0000015793,0.0000015731,0.0000015669, +0.0000015597,0.0000015500,0.0000015318,0.0000015065,0.0000014947, +0.0000015038,0.0000015360,0.0000015654,0.0000015743,0.0000015704, +0.0000015411,0.0000014852,0.0000014409,0.0000014341,0.0000014530, +0.0000014915,0.0000015225,0.0000015300,0.0000015285,0.0000015261, +0.0000015226,0.0000015170,0.0000015111,0.0000015071,0.0000015059, +0.0000015087,0.0000015184,0.0000015234,0.0000015087,0.0000014741, +0.0000014542,0.0000014575,0.0000014684,0.0000014748,0.0000014798, +0.0000014867,0.0000014922,0.0000014913,0.0000014859,0.0000014879, +0.0000015078,0.0000015365,0.0000015529,0.0000015601,0.0000015663, +0.0000015688,0.0000015661,0.0000015631,0.0000015639,0.0000015658, +0.0000015659,0.0000015485,0.0000015030,0.0000014702,0.0000014721, +0.0000014849,0.0000014851,0.0000014792,0.0000014793,0.0000014671, +0.0000014463,0.0000014573,0.0000015016,0.0000015630,0.0000016140, +0.0000016404,0.0000016565,0.0000016555,0.0000016259,0.0000015722, +0.0000015381,0.0000015460,0.0000015537,0.0000015447,0.0000015255, +0.0000015144,0.0000015247,0.0000015405,0.0000015340,0.0000015337, +0.0000015857,0.0000016613,0.0000016730,0.0000016319,0.0000016251, +0.0000016261,0.0000015711,0.0000015313,0.0000015296,0.0000015456, +0.0000015711,0.0000015775,0.0000015537,0.0000015141,0.0000015135, +0.0000015422,0.0000015460,0.0000015333,0.0000015312,0.0000015358, +0.0000015312,0.0000015057,0.0000014970,0.0000015141,0.0000015176, +0.0000014977,0.0000014763,0.0000014725,0.0000014745,0.0000014773, +0.0000014761,0.0000014801,0.0000014970,0.0000015161,0.0000015245, +0.0000015293,0.0000015420,0.0000015546,0.0000015565,0.0000015534, +0.0000015446,0.0000015294,0.0000015257,0.0000015371,0.0000015459, +0.0000015454,0.0000015387,0.0000015360,0.0000015701,0.0000016449, +0.0000016790,0.0000016684,0.0000016833,0.0000017095,0.0000017055, +0.0000016983,0.0000016951,0.0000016955,0.0000016971,0.0000016883, +0.0000016524,0.0000015977,0.0000015638,0.0000015626,0.0000015807, +0.0000015964,0.0000015961,0.0000015799,0.0000015660,0.0000015842, +0.0000016154,0.0000016262,0.0000016256,0.0000016316,0.0000016342, +0.0000016209,0.0000016470,0.0000016876,0.0000016509,0.0000016323, +0.0000016734,0.0000016771,0.0000016703,0.0000017093,0.0000017447, +0.0000017556,0.0000017224,0.0000016718,0.0000016398,0.0000016283, +0.0000016443,0.0000016517,0.0000016401,0.0000016172,0.0000016142, +0.0000016169,0.0000016129,0.0000016154,0.0000016201,0.0000016283, +0.0000016437,0.0000016713,0.0000017047,0.0000017014,0.0000016514, +0.0000016267,0.0000016477,0.0000016620,0.0000016478,0.0000015966, +0.0000015631,0.0000015597,0.0000015475,0.0000015254,0.0000015089, +0.0000014979,0.0000014952,0.0000015000,0.0000015009,0.0000014876, +0.0000014671,0.0000014561,0.0000014597,0.0000014647,0.0000014639, +0.0000014642,0.0000014685,0.0000014785,0.0000014854,0.0000014832, +0.0000014874,0.0000014957,0.0000014958,0.0000015031,0.0000015032, +0.0000014819,0.0000014875,0.0000015357,0.0000015674,0.0000015771, +0.0000015849,0.0000015708,0.0000015251,0.0000015040,0.0000015199, +0.0000015492,0.0000015696,0.0000015784,0.0000015786,0.0000015725, +0.0000015640,0.0000015608,0.0000015609,0.0000015591,0.0000015401, +0.0000015098,0.0000014968,0.0000015097,0.0000015409,0.0000015591, +0.0000015605,0.0000015452,0.0000014983,0.0000014525,0.0000014385, +0.0000014420,0.0000014615,0.0000014940,0.0000015214,0.0000015305, +0.0000015297,0.0000015248,0.0000015186,0.0000015133,0.0000015108, +0.0000015121,0.0000015175,0.0000015180,0.0000014988,0.0000014679, +0.0000014541,0.0000014590,0.0000014696,0.0000014763,0.0000014807, +0.0000014855,0.0000014889,0.0000014884,0.0000014884,0.0000015011, +0.0000015266,0.0000015466,0.0000015552,0.0000015611,0.0000015668, +0.0000015659,0.0000015620,0.0000015608,0.0000015633,0.0000015652, +0.0000015625,0.0000015341,0.0000014876,0.0000014677,0.0000014776, +0.0000014872,0.0000014829,0.0000014775,0.0000014761,0.0000014568, +0.0000014440,0.0000014670,0.0000015195,0.0000015816,0.0000016236, +0.0000016447,0.0000016576,0.0000016510,0.0000016150,0.0000015593, +0.0000015340,0.0000015445,0.0000015512,0.0000015402,0.0000015221, +0.0000015168,0.0000015287,0.0000015365,0.0000015263,0.0000015402, +0.0000016085,0.0000016748,0.0000016662,0.0000016260,0.0000016312, +0.0000016190,0.0000015568,0.0000015281,0.0000015295,0.0000015455, +0.0000015732,0.0000015796,0.0000015522,0.0000015101,0.0000015048, +0.0000015352,0.0000015462,0.0000015349,0.0000015292,0.0000015332, +0.0000015348,0.0000015188,0.0000014958,0.0000014970,0.0000015136, +0.0000015129,0.0000015008,0.0000014899,0.0000014869,0.0000014912, +0.0000015009,0.0000015141,0.0000015203,0.0000015217,0.0000015264, +0.0000015429,0.0000015554,0.0000015603,0.0000015637,0.0000015570, +0.0000015380,0.0000015246,0.0000015279,0.0000015398,0.0000015439, +0.0000015414,0.0000015346,0.0000015385,0.0000015861,0.0000016542, +0.0000016736,0.0000016824,0.0000017129,0.0000017190,0.0000017075, +0.0000016980,0.0000016844,0.0000016574,0.0000016167,0.0000015792, +0.0000015627,0.0000015672,0.0000015844,0.0000015983,0.0000015982, +0.0000015853,0.0000015669,0.0000015687,0.0000015891,0.0000016064, +0.0000016135,0.0000016197,0.0000016298,0.0000016284,0.0000016274, +0.0000016730,0.0000016750,0.0000016323,0.0000016504,0.0000016791, +0.0000016694,0.0000016886,0.0000017338,0.0000017529,0.0000017405, +0.0000016920,0.0000016502,0.0000016267,0.0000016323,0.0000016489, +0.0000016471,0.0000016278,0.0000016147,0.0000016197,0.0000016181, +0.0000016183,0.0000016209,0.0000016263,0.0000016391,0.0000016628, +0.0000016984,0.0000017096,0.0000016653,0.0000016311,0.0000016443, +0.0000016626,0.0000016542,0.0000016066,0.0000015687,0.0000015613, +0.0000015497,0.0000015277,0.0000015099,0.0000014974,0.0000014943, +0.0000014999,0.0000015009,0.0000014878,0.0000014674,0.0000014566, +0.0000014599,0.0000014650,0.0000014654,0.0000014652,0.0000014673, +0.0000014779,0.0000014867,0.0000014840,0.0000014867,0.0000014905, +0.0000014904,0.0000015034,0.0000014995,0.0000014775,0.0000014970, +0.0000015440,0.0000015690,0.0000015763,0.0000015842,0.0000015726, +0.0000015316,0.0000015073,0.0000015180,0.0000015442,0.0000015648, +0.0000015734,0.0000015717,0.0000015628,0.0000015551,0.0000015555, +0.0000015614,0.0000015624,0.0000015448,0.0000015133,0.0000015006, +0.0000015137,0.0000015405,0.0000015560,0.0000015533,0.0000015166, +0.0000014674,0.0000014443,0.0000014426,0.0000014448,0.0000014574, +0.0000014834,0.0000015105,0.0000015252,0.0000015266,0.0000015253, +0.0000015224,0.0000015186,0.0000015115,0.0000014978,0.0000014762, +0.0000014560,0.0000014514,0.0000014573,0.0000014670,0.0000014739, +0.0000014789,0.0000014830,0.0000014858,0.0000014884,0.0000014979, +0.0000015183,0.0000015404,0.0000015512,0.0000015553,0.0000015618, +0.0000015650,0.0000015632,0.0000015590,0.0000015584,0.0000015599, +0.0000015607,0.0000015541,0.0000015177,0.0000014758,0.0000014690, +0.0000014829,0.0000014882,0.0000014824,0.0000014785,0.0000014727, +0.0000014479,0.0000014452,0.0000014790,0.0000015390,0.0000015986, +0.0000016300,0.0000016483,0.0000016568,0.0000016459,0.0000016045, +0.0000015481,0.0000015315,0.0000015443,0.0000015499,0.0000015351, +0.0000015167,0.0000015155,0.0000015303,0.0000015301,0.0000015229, +0.0000015541,0.0000016326,0.0000016818,0.0000016564,0.0000016235, +0.0000016347,0.0000016066,0.0000015440,0.0000015281,0.0000015294, +0.0000015456,0.0000015758,0.0000015818,0.0000015527,0.0000015106, +0.0000014989,0.0000015245,0.0000015459,0.0000015389,0.0000015276, +0.0000015293,0.0000015340,0.0000015291,0.0000015076,0.0000014938, +0.0000014992,0.0000015087,0.0000015103,0.0000015105,0.0000015111, +0.0000015167,0.0000015189,0.0000015153,0.0000015156,0.0000015268, +0.0000015459,0.0000015555,0.0000015602,0.0000015688,0.0000015686, +0.0000015513,0.0000015312,0.0000015222,0.0000015263,0.0000015349, +0.0000015370,0.0000015348,0.0000015309,0.0000015433,0.0000015993, +0.0000016596,0.0000016779,0.0000016931,0.0000016964,0.0000016564, +0.0000016174,0.0000015953,0.0000015750,0.0000015616,0.0000015599, +0.0000015702,0.0000015871,0.0000015989,0.0000016003,0.0000015931, +0.0000015772,0.0000015677,0.0000015696,0.0000015761,0.0000015858, +0.0000016006,0.0000016175,0.0000016276,0.0000016247,0.0000016459, +0.0000016797,0.0000016486,0.0000016339,0.0000016694,0.0000016724, +0.0000016740,0.0000017169,0.0000017503,0.0000017524,0.0000017132, +0.0000016652,0.0000016323,0.0000016237,0.0000016416,0.0000016488, +0.0000016388,0.0000016187,0.0000016202,0.0000016232,0.0000016217, +0.0000016225,0.0000016249,0.0000016346,0.0000016551,0.0000016902, +0.0000017097,0.0000016785,0.0000016350,0.0000016416,0.0000016649, +0.0000016610,0.0000016181,0.0000015748,0.0000015629,0.0000015523, +0.0000015296,0.0000015100,0.0000014966,0.0000014935,0.0000014989, +0.0000015002,0.0000014887,0.0000014684,0.0000014573,0.0000014600, +0.0000014664,0.0000014682,0.0000014660,0.0000014664,0.0000014798, +0.0000014896,0.0000014850,0.0000014853,0.0000014837,0.0000014882, +0.0000015054,0.0000014940,0.0000014772,0.0000015069,0.0000015500, +0.0000015693,0.0000015746,0.0000015815,0.0000015752,0.0000015428, +0.0000015144,0.0000015146,0.0000015352,0.0000015583,0.0000015696, +0.0000015680,0.0000015606,0.0000015547,0.0000015557,0.0000015628, +0.0000015658,0.0000015496,0.0000015190,0.0000015042,0.0000015140, +0.0000015418,0.0000015570,0.0000015411,0.0000014931,0.0000014530, +0.0000014424,0.0000014419,0.0000014425,0.0000014468,0.0000014580, +0.0000014739,0.0000014877,0.0000014941,0.0000014926,0.0000014826, +0.0000014645,0.0000014481,0.0000014453,0.0000014491,0.0000014561, +0.0000014625,0.0000014684,0.0000014742,0.0000014799,0.0000014847, +0.0000014947,0.0000015124,0.0000015335,0.0000015450,0.0000015482, +0.0000015525,0.0000015607,0.0000015642,0.0000015607,0.0000015569, +0.0000015553,0.0000015547,0.0000015548,0.0000015412,0.0000014991, +0.0000014680,0.0000014717,0.0000014863,0.0000014876,0.0000014812, +0.0000014794,0.0000014669,0.0000014412,0.0000014530,0.0000014963, +0.0000015590,0.0000016123,0.0000016342,0.0000016519,0.0000016565, +0.0000016401,0.0000015942,0.0000015379,0.0000015250,0.0000015426, +0.0000015446,0.0000015251,0.0000015102,0.0000015155,0.0000015290, +0.0000015225,0.0000015218,0.0000015745,0.0000016532,0.0000016805, +0.0000016457,0.0000016243,0.0000016371,0.0000015910,0.0000015335, +0.0000015275,0.0000015271,0.0000015455,0.0000015779,0.0000015830, +0.0000015546,0.0000015146,0.0000014950,0.0000015123,0.0000015419, +0.0000015442,0.0000015293,0.0000015251,0.0000015303,0.0000015325, +0.0000015219,0.0000015048,0.0000014976,0.0000014982,0.0000015016, +0.0000015058,0.0000015075,0.0000015084,0.0000015081,0.0000015151, +0.0000015331,0.0000015495,0.0000015544,0.0000015566,0.0000015665, +0.0000015725,0.0000015635,0.0000015450,0.0000015264,0.0000015163, +0.0000015184,0.0000015234,0.0000015274,0.0000015290,0.0000015289, +0.0000015484,0.0000016089,0.0000016629,0.0000016821,0.0000016830, +0.0000016401,0.0000015738,0.0000015564,0.0000015566,0.0000015608, +0.0000015718,0.0000015876,0.0000015980,0.0000016001,0.0000015968, +0.0000015874,0.0000015755,0.0000015684,0.0000015677,0.0000015681, +0.0000015751,0.0000015965,0.0000016209,0.0000016268,0.0000016325, +0.0000016695,0.0000016679,0.0000016323,0.0000016503,0.0000016739, +0.0000016693,0.0000016967,0.0000017418,0.0000017571,0.0000017328, +0.0000016839,0.0000016428,0.0000016234,0.0000016324,0.0000016480, +0.0000016465,0.0000016268,0.0000016205,0.0000016262,0.0000016254, +0.0000016243,0.0000016244,0.0000016306,0.0000016488,0.0000016803, +0.0000017078,0.0000016907,0.0000016443,0.0000016385,0.0000016632, +0.0000016662,0.0000016304,0.0000015829,0.0000015647,0.0000015547, +0.0000015318,0.0000015097,0.0000014956,0.0000014924,0.0000014970, +0.0000014993,0.0000014899,0.0000014697,0.0000014580,0.0000014603, +0.0000014688,0.0000014712,0.0000014658,0.0000014676,0.0000014845, +0.0000014917,0.0000014852,0.0000014833,0.0000014784,0.0000014907, +0.0000015057,0.0000014868,0.0000014783,0.0000015151,0.0000015532, +0.0000015686,0.0000015720,0.0000015804,0.0000015820,0.0000015563, +0.0000015217,0.0000015146,0.0000015267,0.0000015490,0.0000015635, +0.0000015657,0.0000015624,0.0000015573,0.0000015570,0.0000015632, +0.0000015688,0.0000015573,0.0000015265,0.0000015067,0.0000015120, +0.0000015409,0.0000015521,0.0000015295,0.0000014812,0.0000014472, +0.0000014406,0.0000014407,0.0000014414,0.0000014412,0.0000014400, +0.0000014382,0.0000014381,0.0000014404,0.0000014413,0.0000014395, +0.0000014409,0.0000014474,0.0000014531,0.0000014564,0.0000014620, +0.0000014692,0.0000014781,0.0000014901,0.0000015072,0.0000015264, +0.0000015395,0.0000015416,0.0000015397,0.0000015467,0.0000015573, +0.0000015619,0.0000015595,0.0000015549,0.0000015509,0.0000015510, +0.0000015515,0.0000015270,0.0000014813,0.0000014630,0.0000014735, +0.0000014850,0.0000014833,0.0000014794,0.0000014783,0.0000014599, +0.0000014416,0.0000014666,0.0000015153,0.0000015780,0.0000016214, +0.0000016368,0.0000016552,0.0000016554,0.0000016332,0.0000015843, +0.0000015292,0.0000015203,0.0000015400,0.0000015380,0.0000015134, +0.0000015030,0.0000015146,0.0000015255,0.0000015159,0.0000015289, +0.0000015968,0.0000016702,0.0000016805,0.0000016331,0.0000016259, +0.0000016362,0.0000015727,0.0000015261,0.0000015278,0.0000015238, +0.0000015457,0.0000015787,0.0000015829,0.0000015579,0.0000015206, +0.0000014964,0.0000015016,0.0000015317,0.0000015461,0.0000015353, +0.0000015232,0.0000015238,0.0000015294,0.0000015296,0.0000015213, +0.0000015109,0.0000015043,0.0000015031,0.0000015048,0.0000015076, +0.0000015145,0.0000015269,0.0000015423,0.0000015516,0.0000015526, +0.0000015523,0.0000015591,0.0000015697,0.0000015691,0.0000015571, +0.0000015413,0.0000015233,0.0000015109,0.0000015090,0.0000015135, +0.0000015215,0.0000015257,0.0000015268,0.0000015539,0.0000016161, +0.0000016671,0.0000016828,0.0000016675,0.0000016057,0.0000015600, +0.0000015586,0.0000015688,0.0000015830,0.0000015938,0.0000015966, +0.0000015940,0.0000015900,0.0000015840,0.0000015779,0.0000015781, +0.0000015808,0.0000015778,0.0000015787,0.0000016010,0.0000016257, +0.0000016293,0.0000016508,0.0000016750,0.0000016433,0.0000016350, +0.0000016671,0.0000016683,0.0000016803,0.0000017260,0.0000017552, +0.0000017477,0.0000017042,0.0000016573,0.0000016261,0.0000016255, +0.0000016433,0.0000016497,0.0000016366,0.0000016237,0.0000016278, +0.0000016288,0.0000016259,0.0000016248,0.0000016280,0.0000016437, +0.0000016709,0.0000017002,0.0000016973,0.0000016562,0.0000016384, +0.0000016593,0.0000016697,0.0000016417,0.0000015925,0.0000015674, +0.0000015575,0.0000015353,0.0000015104,0.0000014946,0.0000014905, +0.0000014945,0.0000014980,0.0000014914,0.0000014708,0.0000014586, +0.0000014610,0.0000014718,0.0000014732,0.0000014654,0.0000014712, +0.0000014898,0.0000014926,0.0000014849,0.0000014812,0.0000014768, +0.0000014955,0.0000015027,0.0000014800,0.0000014790,0.0000015197, +0.0000015547,0.0000015670,0.0000015697,0.0000015787,0.0000015831, +0.0000015685,0.0000015338,0.0000015131,0.0000015172,0.0000015361, +0.0000015528,0.0000015592,0.0000015584,0.0000015557,0.0000015544, +0.0000015604,0.0000015676,0.0000015633,0.0000015378,0.0000015121, +0.0000015145,0.0000015337,0.0000015450,0.0000015261,0.0000014839, +0.0000014508,0.0000014405,0.0000014412,0.0000014411,0.0000014388, +0.0000014368,0.0000014376,0.0000014406,0.0000014427,0.0000014424, +0.0000014432,0.0000014466,0.0000014516,0.0000014585,0.0000014700, +0.0000014862,0.0000015053,0.0000015222,0.0000015298,0.0000015342, +0.0000015307,0.0000015307,0.0000015406,0.0000015528,0.0000015583, +0.0000015565,0.0000015520,0.0000015482,0.0000015486,0.0000015449, +0.0000015103,0.0000014669,0.0000014598,0.0000014745,0.0000014826, +0.0000014797,0.0000014778,0.0000014738,0.0000014515,0.0000014497, +0.0000014830,0.0000015356,0.0000015955,0.0000016260,0.0000016387, +0.0000016580,0.0000016518,0.0000016261,0.0000015753,0.0000015209, +0.0000015147,0.0000015364,0.0000015310,0.0000015032,0.0000014960, +0.0000015135,0.0000015191,0.0000015114,0.0000015421,0.0000016207, +0.0000016820,0.0000016714,0.0000016236,0.0000016326,0.0000016339, +0.0000015539,0.0000015248,0.0000015275,0.0000015189,0.0000015460, +0.0000015779,0.0000015814,0.0000015614,0.0000015279,0.0000015015, +0.0000014966,0.0000015172,0.0000015439,0.0000015427,0.0000015267, +0.0000015201,0.0000015231,0.0000015277,0.0000015294,0.0000015272, +0.0000015243,0.0000015237,0.0000015259,0.0000015320,0.0000015404, +0.0000015478,0.0000015508,0.0000015506,0.0000015489,0.0000015506, +0.0000015611,0.0000015692,0.0000015644,0.0000015516,0.0000015392, +0.0000015219,0.0000015083,0.0000015059,0.0000015105,0.0000015201, +0.0000015233,0.0000015270,0.0000015601,0.0000016228,0.0000016706, +0.0000016815,0.0000016591,0.0000015994,0.0000015658,0.0000015668, +0.0000015792,0.0000015883,0.0000015895,0.0000015890,0.0000015916, +0.0000015979,0.0000016089,0.0000016216,0.0000016205,0.0000015984, +0.0000015867,0.0000016098,0.0000016272,0.0000016373,0.0000016693, +0.0000016609,0.0000016306,0.0000016519,0.0000016693,0.0000016702, +0.0000017071,0.0000017475,0.0000017548,0.0000017239,0.0000016745, +0.0000016358,0.0000016232,0.0000016374,0.0000016495,0.0000016451, +0.0000016291,0.0000016284,0.0000016312,0.0000016274,0.0000016243, +0.0000016259,0.0000016386,0.0000016613,0.0000016928,0.0000017048, +0.0000016676,0.0000016405,0.0000016563,0.0000016673,0.0000016518, +0.0000016032,0.0000015710,0.0000015604,0.0000015409,0.0000015134, +0.0000014943,0.0000014884,0.0000014921,0.0000014980,0.0000014928, +0.0000014717,0.0000014593,0.0000014625,0.0000014748,0.0000014734, +0.0000014663,0.0000014759,0.0000014924,0.0000014910,0.0000014845, +0.0000014791,0.0000014775,0.0000014990,0.0000015000,0.0000014760, +0.0000014770,0.0000015225,0.0000015538,0.0000015644,0.0000015666, +0.0000015750,0.0000015853,0.0000015788,0.0000015460,0.0000015183, +0.0000015152,0.0000015233,0.0000015337,0.0000015407,0.0000015455, +0.0000015472,0.0000015474,0.0000015535,0.0000015661,0.0000015716, +0.0000015566,0.0000015313,0.0000015178,0.0000015221,0.0000015330, +0.0000015289,0.0000015021,0.0000014693,0.0000014503,0.0000014452, +0.0000014428,0.0000014396,0.0000014394,0.0000014421,0.0000014440, +0.0000014445,0.0000014474,0.0000014562,0.0000014695,0.0000014856, +0.0000015040,0.0000015234,0.0000015304,0.0000015276,0.0000015193, +0.0000015155,0.0000015217,0.0000015349,0.0000015475,0.0000015533, +0.0000015523,0.0000015483,0.0000015466,0.0000015476,0.0000015366, +0.0000014929,0.0000014570,0.0000014598,0.0000014765,0.0000014811, +0.0000014781,0.0000014767,0.0000014676,0.0000014457,0.0000014554, +0.0000014979,0.0000015559,0.0000016106,0.0000016273,0.0000016403, +0.0000016592,0.0000016474,0.0000016192,0.0000015661,0.0000015121, +0.0000015084,0.0000015320,0.0000015260,0.0000014976,0.0000014923, +0.0000015094,0.0000015086,0.0000015077,0.0000015634,0.0000016446, +0.0000016878,0.0000016597,0.0000016213,0.0000016396,0.0000016205, +0.0000015378,0.0000015282,0.0000015245,0.0000015159,0.0000015481, +0.0000015754,0.0000015775,0.0000015646,0.0000015355,0.0000015096, +0.0000014965,0.0000015044,0.0000015319,0.0000015471,0.0000015374, +0.0000015228,0.0000015192,0.0000015226,0.0000015277,0.0000015309, +0.0000015343,0.0000015371,0.0000015404,0.0000015435,0.0000015464, +0.0000015471,0.0000015471,0.0000015454,0.0000015445,0.0000015520, +0.0000015669,0.0000015696,0.0000015575,0.0000015471,0.0000015378, +0.0000015217,0.0000015085,0.0000015053,0.0000015132,0.0000015214, +0.0000015232,0.0000015304,0.0000015674,0.0000016291,0.0000016721, +0.0000016785,0.0000016634,0.0000016146,0.0000015761,0.0000015706, +0.0000015747,0.0000015827,0.0000015961,0.0000016180,0.0000016425, +0.0000016609,0.0000016673,0.0000016502,0.0000016073,0.0000015944, +0.0000016184,0.0000016312,0.0000016542,0.0000016694,0.0000016398, +0.0000016383,0.0000016640,0.0000016655,0.0000016889,0.0000017355, +0.0000017537,0.0000017402,0.0000016938,0.0000016483,0.0000016258, +0.0000016324,0.0000016470,0.0000016502,0.0000016376,0.0000016306, +0.0000016324,0.0000016288,0.0000016244,0.0000016241,0.0000016335, +0.0000016534,0.0000016830,0.0000016993,0.0000016810,0.0000016472, +0.0000016522,0.0000016681,0.0000016609,0.0000016158,0.0000015759, +0.0000015633,0.0000015485,0.0000015205,0.0000014963,0.0000014873, +0.0000014901,0.0000014975,0.0000014939,0.0000014726,0.0000014603, +0.0000014645,0.0000014776,0.0000014737,0.0000014684,0.0000014797, +0.0000014920,0.0000014888,0.0000014836,0.0000014768,0.0000014775, +0.0000014996,0.0000014984,0.0000014718,0.0000014768,0.0000015208, +0.0000015502,0.0000015613,0.0000015642,0.0000015721,0.0000015842, +0.0000015838,0.0000015606,0.0000015319,0.0000015158,0.0000015122, +0.0000015145,0.0000015197,0.0000015276,0.0000015334,0.0000015359, +0.0000015417,0.0000015554,0.0000015688,0.0000015690,0.0000015559, +0.0000015365,0.0000015246,0.0000015227,0.0000015238,0.0000015173, +0.0000015017,0.0000014822,0.0000014668,0.0000014593,0.0000014593, +0.0000014635,0.0000014685,0.0000014737,0.0000014818,0.0000014951, +0.0000015107,0.0000015178,0.0000015249,0.0000015221,0.0000015108, +0.0000015006,0.0000015005,0.0000015115,0.0000015266,0.0000015403, +0.0000015476,0.0000015475,0.0000015452,0.0000015460,0.0000015470, +0.0000015253,0.0000014786,0.0000014542,0.0000014632,0.0000014783, +0.0000014805,0.0000014775,0.0000014750,0.0000014612,0.0000014463, +0.0000014702,0.0000015149,0.0000015751,0.0000016209,0.0000016272, +0.0000016424,0.0000016594,0.0000016427,0.0000016124,0.0000015573, +0.0000015044,0.0000015024,0.0000015293,0.0000015272,0.0000015009, +0.0000014954,0.0000015057,0.0000015007,0.0000015167,0.0000015900, +0.0000016642,0.0000016886,0.0000016505,0.0000016251,0.0000016429, +0.0000016031,0.0000015274,0.0000015320,0.0000015173,0.0000015110, +0.0000015513,0.0000015718,0.0000015738,0.0000015673,0.0000015427, +0.0000015184,0.0000015043,0.0000015008,0.0000015163,0.0000015418, +0.0000015479,0.0000015371,0.0000015251,0.0000015222,0.0000015244, +0.0000015286,0.0000015332,0.0000015371,0.0000015400,0.0000015417, +0.0000015427,0.0000015431,0.0000015418,0.0000015417,0.0000015493, +0.0000015669,0.0000015740,0.0000015608,0.0000015470,0.0000015427, +0.0000015342,0.0000015190,0.0000015084,0.0000015104,0.0000015186, +0.0000015225,0.0000015260,0.0000015377,0.0000015759,0.0000016359, +0.0000016736,0.0000016771,0.0000016725,0.0000016485,0.0000016175, +0.0000016038,0.0000016072,0.0000016304,0.0000016614,0.0000016846, +0.0000016949,0.0000016913,0.0000016552,0.0000016049,0.0000016029, +0.0000016251,0.0000016430,0.0000016668,0.0000016547,0.0000016333, +0.0000016527,0.0000016631,0.0000016738,0.0000017182,0.0000017532, +0.0000017514,0.0000017131,0.0000016648,0.0000016317,0.0000016293, +0.0000016437,0.0000016517,0.0000016462,0.0000016348,0.0000016330, +0.0000016300,0.0000016248,0.0000016228,0.0000016296,0.0000016479, +0.0000016743,0.0000017008,0.0000016951,0.0000016576,0.0000016487, +0.0000016641,0.0000016681,0.0000016291,0.0000015824,0.0000015661, +0.0000015569,0.0000015315,0.0000015023,0.0000014869,0.0000014883, +0.0000014971,0.0000014945,0.0000014733,0.0000014614,0.0000014668, +0.0000014804,0.0000014747,0.0000014710,0.0000014812,0.0000014894, +0.0000014865,0.0000014823,0.0000014743,0.0000014798,0.0000015026, +0.0000014951,0.0000014686,0.0000014749,0.0000015142,0.0000015442, +0.0000015581,0.0000015624,0.0000015683,0.0000015797,0.0000015825, +0.0000015742,0.0000015494,0.0000015252,0.0000015087,0.0000015016, +0.0000015041,0.0000015111,0.0000015172,0.0000015204,0.0000015260, +0.0000015374,0.0000015521,0.0000015642,0.0000015669,0.0000015611, +0.0000015506,0.0000015380,0.0000015271,0.0000015204,0.0000015168, +0.0000015136,0.0000015101,0.0000015099,0.0000015126,0.0000015176, +0.0000015220,0.0000015206,0.0000015228,0.0000015183,0.0000015076, +0.0000014956,0.0000014866,0.0000014842,0.0000014890,0.0000015005, +0.0000015160,0.0000015317,0.0000015417,0.0000015440,0.0000015436, +0.0000015454,0.0000015443,0.0000015134,0.0000014673,0.0000014529, +0.0000014654,0.0000014785,0.0000014794,0.0000014761,0.0000014709, +0.0000014531,0.0000014518,0.0000014855,0.0000015321,0.0000015921, +0.0000016249,0.0000016258,0.0000016451,0.0000016602,0.0000016390, +0.0000016065,0.0000015499,0.0000014991,0.0000014983,0.0000015263, +0.0000015317,0.0000015141,0.0000015072,0.0000015050,0.0000014999, +0.0000015340,0.0000016174,0.0000016796,0.0000016896,0.0000016406, +0.0000016268,0.0000016435,0.0000015847,0.0000015237,0.0000015337, +0.0000015057,0.0000015107,0.0000015554,0.0000015677,0.0000015690, +0.0000015658,0.0000015484,0.0000015261,0.0000015141,0.0000015066, +0.0000015090,0.0000015259,0.0000015436,0.0000015481,0.0000015407, +0.0000015337,0.0000015314,0.0000015326,0.0000015354,0.0000015381, +0.0000015400,0.0000015413,0.0000015423,0.0000015432,0.0000015461, +0.0000015566,0.0000015709,0.0000015735,0.0000015579,0.0000015424, +0.0000015399,0.0000015376,0.0000015263,0.0000015141,0.0000015118, +0.0000015172,0.0000015215,0.0000015262,0.0000015361,0.0000015482, +0.0000015833,0.0000016417,0.0000016738,0.0000016769,0.0000016769, +0.0000016790,0.0000016760,0.0000016758,0.0000016858,0.0000016993, +0.0000017073,0.0000017086,0.0000016938,0.0000016418,0.0000016059, +0.0000016135,0.0000016349,0.0000016609,0.0000016645,0.0000016341, +0.0000016412,0.0000016604,0.0000016654,0.0000017002,0.0000017451, +0.0000017571,0.0000017305,0.0000016826,0.0000016424,0.0000016297, +0.0000016405,0.0000016509,0.0000016522,0.0000016411,0.0000016342, +0.0000016310,0.0000016255,0.0000016230,0.0000016274,0.0000016434, +0.0000016654,0.0000016956,0.0000017050,0.0000016674,0.0000016455, +0.0000016593,0.0000016720,0.0000016417,0.0000015916,0.0000015692, +0.0000015639,0.0000015446,0.0000015127,0.0000014893,0.0000014873, +0.0000014964,0.0000014945,0.0000014735,0.0000014622,0.0000014690, +0.0000014829,0.0000014759,0.0000014727,0.0000014799,0.0000014857, +0.0000014843,0.0000014804,0.0000014722,0.0000014837,0.0000015044, +0.0000014934,0.0000014680,0.0000014721,0.0000015034,0.0000015350, +0.0000015537,0.0000015609,0.0000015648,0.0000015734,0.0000015827, +0.0000015818,0.0000015663,0.0000015408,0.0000015149,0.0000014992, +0.0000014949,0.0000014988,0.0000015036,0.0000015072,0.0000015116, +0.0000015188,0.0000015282,0.0000015367,0.0000015438,0.0000015505, +0.0000015551,0.0000015556,0.0000015529,0.0000015478,0.0000015427, +0.0000015388,0.0000015371,0.0000015357,0.0000015314,0.0000015228, +0.0000015107,0.0000014968,0.0000014831,0.0000014736,0.0000014704, +0.0000014726,0.0000014800,0.0000014918,0.0000015076,0.0000015260, +0.0000015388,0.0000015428,0.0000015434,0.0000015452,0.0000015399, +0.0000015033,0.0000014605,0.0000014527,0.0000014662,0.0000014768, +0.0000014765,0.0000014734,0.0000014649,0.0000014475,0.0000014550, +0.0000014986,0.0000015496,0.0000016064,0.0000016232,0.0000016231, +0.0000016481,0.0000016610,0.0000016360,0.0000016027,0.0000015450, +0.0000014960,0.0000014939,0.0000015213,0.0000015355,0.0000015302, +0.0000015200,0.0000015031,0.0000014986,0.0000015580,0.0000016424, +0.0000016902,0.0000016865,0.0000016295,0.0000016324,0.0000016437, +0.0000015645,0.0000015252,0.0000015290,0.0000014936,0.0000015150, +0.0000015586,0.0000015641,0.0000015617,0.0000015628,0.0000015540, +0.0000015326,0.0000015204,0.0000015175,0.0000015140,0.0000015183, +0.0000015325,0.0000015457,0.0000015500,0.0000015490,0.0000015468, +0.0000015460,0.0000015464,0.0000015474,0.0000015484,0.0000015496, +0.0000015521,0.0000015584,0.0000015661,0.0000015700,0.0000015622, +0.0000015444,0.0000015354,0.0000015367,0.0000015362,0.0000015268, +0.0000015169,0.0000015143,0.0000015172,0.0000015215,0.0000015274, +0.0000015391,0.0000015496,0.0000015589,0.0000015912,0.0000016508, +0.0000016791,0.0000016736,0.0000016747,0.0000016918,0.0000017076, +0.0000017154,0.0000017167,0.0000017166,0.0000017122,0.0000016784, +0.0000016247,0.0000016078,0.0000016246,0.0000016513,0.0000016690, +0.0000016444,0.0000016325,0.0000016535,0.0000016596,0.0000016827, +0.0000017312,0.0000017560,0.0000017441,0.0000017006,0.0000016557, +0.0000016334,0.0000016384,0.0000016492,0.0000016542,0.0000016481, +0.0000016372,0.0000016322,0.0000016266,0.0000016233,0.0000016259, +0.0000016391,0.0000016573,0.0000016858,0.0000017029,0.0000016791, +0.0000016485,0.0000016532,0.0000016700,0.0000016534,0.0000016044, +0.0000015744,0.0000015688,0.0000015569,0.0000015264,0.0000014947, +0.0000014871,0.0000014957,0.0000014941,0.0000014730,0.0000014632, +0.0000014714,0.0000014850,0.0000014771,0.0000014727,0.0000014764, +0.0000014816,0.0000014822,0.0000014784,0.0000014717,0.0000014866, +0.0000015041,0.0000014933,0.0000014692,0.0000014653,0.0000014900, +0.0000015228,0.0000015459,0.0000015574,0.0000015620,0.0000015681, +0.0000015769,0.0000015814,0.0000015778,0.0000015595,0.0000015305, +0.0000015047,0.0000014946,0.0000014931,0.0000014953,0.0000014972, +0.0000014994,0.0000015035,0.0000015088,0.0000015135,0.0000015163, +0.0000015170,0.0000015166,0.0000015161,0.0000015155,0.0000015143, +0.0000015119,0.0000015077,0.0000015014,0.0000014933,0.0000014846, +0.0000014766,0.0000014708,0.0000014668,0.0000014655,0.0000014672, +0.0000014750,0.0000014889,0.0000015085,0.0000015288,0.0000015413, +0.0000015440,0.0000015443,0.0000015454,0.0000015365,0.0000014954, +0.0000014565,0.0000014517,0.0000014664,0.0000014752,0.0000014743, +0.0000014699,0.0000014577,0.0000014450,0.0000014670,0.0000015132, +0.0000015672,0.0000016172,0.0000016188,0.0000016218,0.0000016510, +0.0000016620,0.0000016330,0.0000015992,0.0000015413,0.0000014945, +0.0000014899,0.0000015156,0.0000015387,0.0000015409,0.0000015239, +0.0000015021,0.0000015141,0.0000015890,0.0000016635,0.0000016959, +0.0000016752,0.0000016225,0.0000016407,0.0000016365,0.0000015459, +0.0000015249,0.0000015203,0.0000014859,0.0000015206,0.0000015565, +0.0000015571,0.0000015560,0.0000015597,0.0000015566,0.0000015402, +0.0000015249,0.0000015211,0.0000015221,0.0000015227,0.0000015284, +0.0000015393,0.0000015484,0.0000015526,0.0000015548,0.0000015551, +0.0000015562,0.0000015573,0.0000015578,0.0000015588,0.0000015612, +0.0000015607,0.0000015523,0.0000015398,0.0000015328,0.0000015340, +0.0000015356,0.0000015312,0.0000015225,0.0000015165,0.0000015153, +0.0000015179,0.0000015243,0.0000015334,0.0000015453,0.0000015567, +0.0000015601,0.0000015644,0.0000016030,0.0000016634,0.0000016827, +0.0000016662,0.0000016635,0.0000016852,0.0000017087,0.0000017181, +0.0000017180,0.0000017028,0.0000016523,0.0000016103,0.0000016149, +0.0000016405,0.0000016660,0.0000016552,0.0000016319,0.0000016437, +0.0000016570,0.0000016694,0.0000017146,0.0000017530,0.0000017524, +0.0000017173,0.0000016711,0.0000016398,0.0000016381,0.0000016479, +0.0000016536,0.0000016534,0.0000016425,0.0000016341,0.0000016280, +0.0000016233,0.0000016248,0.0000016353,0.0000016512,0.0000016771, +0.0000017069,0.0000016952,0.0000016548,0.0000016509,0.0000016696, +0.0000016631,0.0000016202,0.0000015846,0.0000015747,0.0000015678, +0.0000015410,0.0000015023,0.0000014877,0.0000014946,0.0000014933, +0.0000014723,0.0000014641,0.0000014737,0.0000014867,0.0000014778, +0.0000014710,0.0000014717,0.0000014778,0.0000014801,0.0000014770, +0.0000014721,0.0000014866,0.0000015016,0.0000014942,0.0000014689, +0.0000014636,0.0000014787,0.0000015063,0.0000015319,0.0000015499, +0.0000015591,0.0000015640,0.0000015703,0.0000015782,0.0000015802, +0.0000015732,0.0000015496,0.0000015212,0.0000015009,0.0000014933, +0.0000014928,0.0000014925,0.0000014931,0.0000014942,0.0000014947, +0.0000014946,0.0000014950,0.0000014954,0.0000014943,0.0000014909, +0.0000014874,0.0000014852,0.0000014843,0.0000014838,0.0000014826, +0.0000014790,0.0000014741,0.0000014689,0.0000014682,0.0000014722, +0.0000014849,0.0000015025,0.0000015221,0.0000015391,0.0000015469, +0.0000015467,0.0000015459,0.0000015467,0.0000015337,0.0000014892, +0.0000014534,0.0000014523,0.0000014678,0.0000014751,0.0000014734, +0.0000014667,0.0000014509,0.0000014494,0.0000014820,0.0000015282, +0.0000015839,0.0000016241,0.0000016161,0.0000016236,0.0000016537, +0.0000016619,0.0000016294,0.0000015954,0.0000015387,0.0000014931, +0.0000014875,0.0000015076,0.0000015353,0.0000015392,0.0000015174, +0.0000015012,0.0000015335,0.0000016169,0.0000016782,0.0000016963, +0.0000016634,0.0000016206,0.0000016476,0.0000016213,0.0000015305, +0.0000015265,0.0000015079,0.0000014826,0.0000015230,0.0000015513, +0.0000015536,0.0000015568,0.0000015585,0.0000015569,0.0000015484, +0.0000015320,0.0000015222,0.0000015224,0.0000015251,0.0000015286, +0.0000015345,0.0000015416,0.0000015477,0.0000015515,0.0000015539, +0.0000015552,0.0000015547,0.0000015526,0.0000015489,0.0000015428, +0.0000015369,0.0000015354,0.0000015363,0.0000015353,0.0000015304, +0.0000015230,0.0000015174,0.0000015159,0.0000015174,0.0000015248, +0.0000015356,0.0000015465,0.0000015556,0.0000015628,0.0000015656, +0.0000015640,0.0000015727,0.0000016255,0.0000016803,0.0000016800, +0.0000016525,0.0000016540,0.0000016860,0.0000017122,0.0000017133, +0.0000016790,0.0000016292,0.0000016141,0.0000016303,0.0000016598, +0.0000016623,0.0000016335,0.0000016355,0.0000016525,0.0000016605, +0.0000016973,0.0000017433,0.0000017557,0.0000017318,0.0000016864, +0.0000016494,0.0000016400,0.0000016476,0.0000016528,0.0000016557, +0.0000016490,0.0000016374,0.0000016297,0.0000016242,0.0000016242, +0.0000016328,0.0000016480,0.0000016705,0.0000017017,0.0000017026, +0.0000016646,0.0000016517,0.0000016647,0.0000016688,0.0000016366, +0.0000016011,0.0000015863,0.0000015799,0.0000015555,0.0000015109, +0.0000014869,0.0000014932,0.0000014924,0.0000014716,0.0000014647, +0.0000014758,0.0000014883,0.0000014777,0.0000014686,0.0000014663, +0.0000014737,0.0000014783,0.0000014773,0.0000014732,0.0000014835, +0.0000014978,0.0000014941,0.0000014734,0.0000014640,0.0000014699, +0.0000014888,0.0000015128,0.0000015363,0.0000015529,0.0000015609, +0.0000015651,0.0000015704,0.0000015770,0.0000015755,0.0000015646, +0.0000015441,0.0000015217,0.0000015041,0.0000014948,0.0000014939, +0.0000014958,0.0000014950,0.0000014928,0.0000014895,0.0000014878, +0.0000014870,0.0000014861,0.0000014851,0.0000014842,0.0000014829, +0.0000014821,0.0000014800,0.0000014776,0.0000014788,0.0000014863, +0.0000014989,0.0000015133,0.0000015279,0.0000015413,0.0000015507, +0.0000015523,0.0000015491,0.0000015476,0.0000015476,0.0000015316, +0.0000014853,0.0000014515,0.0000014526,0.0000014686,0.0000014745, +0.0000014726,0.0000014630,0.0000014466,0.0000014523,0.0000014968, +0.0000015439,0.0000015985,0.0000016272,0.0000016135,0.0000016259, +0.0000016557,0.0000016610,0.0000016256,0.0000015928,0.0000015377, +0.0000014908,0.0000014831,0.0000014984,0.0000015222,0.0000015232, +0.0000015034,0.0000014971,0.0000015545,0.0000016392,0.0000016875, +0.0000016969,0.0000016521,0.0000016205,0.0000016485,0.0000016009, +0.0000015213,0.0000015264,0.0000014952,0.0000014829,0.0000015236, +0.0000015488,0.0000015593,0.0000015645,0.0000015624,0.0000015584, +0.0000015536,0.0000015421,0.0000015280,0.0000015212,0.0000015212, +0.0000015241,0.0000015280,0.0000015328,0.0000015379,0.0000015420, +0.0000015443,0.0000015448,0.0000015432,0.0000015409,0.0000015398, +0.0000015395,0.0000015380,0.0000015333,0.0000015268,0.0000015215, +0.0000015181,0.0000015169,0.0000015208,0.0000015305,0.0000015426, +0.0000015529,0.0000015598,0.0000015641,0.0000015660,0.0000015665, +0.0000015641,0.0000015640,0.0000015987,0.0000016668,0.0000016935, +0.0000016591,0.0000016390,0.0000016697,0.0000017074,0.0000016972, +0.0000016455,0.0000016152,0.0000016224,0.0000016517,0.0000016667, +0.0000016441,0.0000016317,0.0000016465,0.0000016536,0.0000016803, +0.0000017303,0.0000017539,0.0000017424,0.0000017021,0.0000016601, +0.0000016443,0.0000016481,0.0000016529,0.0000016567,0.0000016550, +0.0000016426,0.0000016323,0.0000016256,0.0000016243,0.0000016314, +0.0000016463,0.0000016643,0.0000016952,0.0000017092,0.0000016740, +0.0000016530,0.0000016600,0.0000016702,0.0000016498,0.0000016211, +0.0000016050,0.0000015966,0.0000015710,0.0000015197,0.0000014871, +0.0000014913,0.0000014913,0.0000014710,0.0000014652,0.0000014772, +0.0000014891,0.0000014771,0.0000014656,0.0000014611,0.0000014698, +0.0000014774,0.0000014777,0.0000014730,0.0000014795,0.0000014922, +0.0000014908,0.0000014807,0.0000014711,0.0000014700,0.0000014744, +0.0000014906,0.0000015160,0.0000015405,0.0000015554,0.0000015606, +0.0000015629,0.0000015667,0.0000015712,0.0000015710,0.0000015624, +0.0000015470,0.0000015289,0.0000015140,0.0000015057,0.0000015032, +0.0000015023,0.0000015001,0.0000014972,0.0000014946,0.0000014917, +0.0000014881,0.0000014848,0.0000014843,0.0000014868,0.0000014929, +0.0000015026,0.0000015159,0.0000015306,0.0000015422,0.0000015488, +0.0000015519,0.0000015537,0.0000015538,0.0000015505,0.0000015487, +0.0000015483,0.0000015282,0.0000014819,0.0000014533,0.0000014553, +0.0000014686,0.0000014736,0.0000014710,0.0000014589,0.0000014459, +0.0000014653,0.0000015133,0.0000015600,0.0000016101,0.0000016264, +0.0000016128,0.0000016285,0.0000016565,0.0000016603,0.0000016232, +0.0000015911,0.0000015391,0.0000014901,0.0000014807,0.0000014907, +0.0000015046,0.0000015026,0.0000014924,0.0000015027,0.0000015782, +0.0000016559,0.0000016946,0.0000016989,0.0000016411,0.0000016215, +0.0000016468,0.0000015817,0.0000015182,0.0000015227,0.0000014848, +0.0000014823,0.0000015240,0.0000015544,0.0000015702,0.0000015728, +0.0000015700,0.0000015642,0.0000015572,0.0000015495,0.0000015389, +0.0000015283,0.0000015227,0.0000015225,0.0000015227,0.0000015252, +0.0000015287,0.0000015316,0.0000015335,0.0000015343,0.0000015341, +0.0000015331,0.0000015302,0.0000015257,0.0000015224,0.0000015207, +0.0000015204,0.0000015216,0.0000015289,0.0000015401,0.0000015514, +0.0000015591,0.0000015626,0.0000015646,0.0000015665,0.0000015660, +0.0000015632,0.0000015633,0.0000015644,0.0000015928,0.0000016598, +0.0000016890,0.0000016597,0.0000016365,0.0000016718,0.0000016973, +0.0000016655,0.0000016181,0.0000016163,0.0000016441,0.0000016669, +0.0000016515,0.0000016309,0.0000016413,0.0000016507,0.0000016667, +0.0000017162,0.0000017523,0.0000017495,0.0000017165,0.0000016731, +0.0000016473,0.0000016486,0.0000016537,0.0000016559,0.0000016587, +0.0000016492,0.0000016364,0.0000016276,0.0000016253,0.0000016311, +0.0000016447,0.0000016596,0.0000016873,0.0000017072,0.0000016865, +0.0000016546,0.0000016541,0.0000016674,0.0000016579,0.0000016389, +0.0000016268,0.0000016174,0.0000015887,0.0000015290,0.0000014871, +0.0000014892,0.0000014897,0.0000014700,0.0000014656,0.0000014776, +0.0000014899,0.0000014766,0.0000014632,0.0000014574,0.0000014669, +0.0000014759,0.0000014771,0.0000014729,0.0000014764,0.0000014864, +0.0000014905,0.0000014882,0.0000014806,0.0000014711,0.0000014669, +0.0000014729,0.0000014935,0.0000015200,0.0000015421,0.0000015537, +0.0000015576,0.0000015599,0.0000015629,0.0000015660,0.0000015647, +0.0000015608,0.0000015527,0.0000015431,0.0000015328,0.0000015220, +0.0000015123,0.0000015061,0.0000015037,0.0000015039,0.0000015052, +0.0000015083,0.0000015142,0.0000015233,0.0000015332,0.0000015422, +0.0000015493,0.0000015522,0.0000015530,0.0000015529,0.0000015528, +0.0000015522,0.0000015504,0.0000015489,0.0000015482,0.0000015238, +0.0000014778,0.0000014541,0.0000014583,0.0000014690,0.0000014723, +0.0000014681,0.0000014526,0.0000014510,0.0000014812,0.0000015284, +0.0000015752,0.0000016193,0.0000016234,0.0000016126,0.0000016298, +0.0000016560,0.0000016592,0.0000016226,0.0000015904,0.0000015429, +0.0000014906,0.0000014772,0.0000014832,0.0000014877,0.0000014858, +0.0000014851,0.0000015152,0.0000015989,0.0000016673,0.0000017004, +0.0000017007,0.0000016306,0.0000016260,0.0000016435,0.0000015660, +0.0000015174,0.0000015155,0.0000014772,0.0000014839,0.0000015294, +0.0000015645,0.0000015755,0.0000015767,0.0000015768,0.0000015719, +0.0000015630,0.0000015542,0.0000015462,0.0000015380,0.0000015310, +0.0000015265,0.0000015247,0.0000015252,0.0000015268,0.0000015270, +0.0000015278,0.0000015266,0.0000015249,0.0000015239,0.0000015238, +0.0000015244,0.0000015248,0.0000015277,0.0000015376,0.0000015492, +0.0000015566,0.0000015610,0.0000015638,0.0000015673,0.0000015727, +0.0000015748,0.0000015682,0.0000015621,0.0000015617,0.0000015663, +0.0000016015,0.0000016667,0.0000016891,0.0000016520,0.0000016447, +0.0000016809,0.0000016763,0.0000016329,0.0000016172,0.0000016355, +0.0000016631,0.0000016575,0.0000016320,0.0000016362,0.0000016466, +0.0000016569,0.0000016997,0.0000017444,0.0000017540,0.0000017293, +0.0000016861,0.0000016534,0.0000016487,0.0000016544,0.0000016552, +0.0000016597,0.0000016560,0.0000016420,0.0000016304,0.0000016269, +0.0000016311,0.0000016431,0.0000016564,0.0000016793,0.0000017075, +0.0000016943,0.0000016619,0.0000016514,0.0000016652,0.0000016612, +0.0000016505,0.0000016447,0.0000016373,0.0000016071,0.0000015389, +0.0000014867,0.0000014865,0.0000014877,0.0000014684,0.0000014649, +0.0000014768,0.0000014907,0.0000014764,0.0000014621,0.0000014567, +0.0000014640,0.0000014716,0.0000014739,0.0000014736,0.0000014759, +0.0000014826,0.0000014883,0.0000014903,0.0000014866,0.0000014767, +0.0000014673,0.0000014666,0.0000014753,0.0000014951,0.0000015194, +0.0000015392,0.0000015510,0.0000015557,0.0000015571,0.0000015578, +0.0000015586,0.0000015593,0.0000015598,0.0000015593,0.0000015575, +0.0000015541,0.0000015507,0.0000015482,0.0000015473,0.0000015484, +0.0000015502,0.0000015524,0.0000015516,0.0000015511,0.0000015513, +0.0000015518,0.0000015509,0.0000015499,0.0000015504,0.0000015510, +0.0000015497,0.0000015488,0.0000015463,0.0000015182,0.0000014740, +0.0000014560,0.0000014612,0.0000014708,0.0000014722,0.0000014640, +0.0000014471,0.0000014511,0.0000014954,0.0000015422,0.0000015888, +0.0000016256,0.0000016225,0.0000016135,0.0000016299,0.0000016551, +0.0000016581,0.0000016247,0.0000015908,0.0000015487,0.0000014930, +0.0000014736,0.0000014764,0.0000014755,0.0000014756,0.0000014837, +0.0000015287,0.0000016149,0.0000016757,0.0000017047,0.0000016954, +0.0000016216,0.0000016316,0.0000016422,0.0000015513,0.0000015165, +0.0000015063,0.0000014724,0.0000014879,0.0000015403,0.0000015723, +0.0000015756,0.0000015774,0.0000015781,0.0000015736,0.0000015649, +0.0000015553,0.0000015476,0.0000015417,0.0000015371,0.0000015338, +0.0000015321,0.0000015315,0.0000015311,0.0000015308,0.0000015306, +0.0000015301,0.0000015291,0.0000015289,0.0000015282,0.0000015306, +0.0000015418,0.0000015529,0.0000015576,0.0000015608,0.0000015694, +0.0000015817,0.0000015961,0.0000016077,0.0000016035,0.0000015831, +0.0000015679,0.0000015655,0.0000015756,0.0000016226,0.0000016706, +0.0000016665,0.0000016432,0.0000016626,0.0000016770,0.0000016421, +0.0000016185,0.0000016293,0.0000016582,0.0000016630,0.0000016377, +0.0000016327,0.0000016439,0.0000016488,0.0000016833,0.0000017347, +0.0000017518,0.0000017388,0.0000017002,0.0000016612,0.0000016488, +0.0000016541,0.0000016553,0.0000016590,0.0000016610,0.0000016488, +0.0000016346,0.0000016292,0.0000016314,0.0000016417,0.0000016546, +0.0000016732,0.0000017020,0.0000016995,0.0000016693,0.0000016502, +0.0000016601,0.0000016610,0.0000016557,0.0000016544,0.0000016507, +0.0000016229,0.0000015493,0.0000014867,0.0000014844,0.0000014858, +0.0000014664,0.0000014634,0.0000014750,0.0000014916,0.0000014771, +0.0000014625,0.0000014566,0.0000014603,0.0000014651,0.0000014697, +0.0000014746,0.0000014770,0.0000014803,0.0000014848,0.0000014881, +0.0000014868,0.0000014814,0.0000014737,0.0000014674,0.0000014676, +0.0000014771,0.0000014942,0.0000015155,0.0000015343,0.0000015463, +0.0000015519,0.0000015538,0.0000015544,0.0000015559,0.0000015580, +0.0000015590,0.0000015581,0.0000015576,0.0000015578,0.0000015578, +0.0000015573,0.0000015555,0.0000015531,0.0000015513,0.0000015506, +0.0000015500,0.0000015487,0.0000015471,0.0000015471,0.0000015481, +0.0000015479,0.0000015479,0.0000015437,0.0000015131,0.0000014715, +0.0000014574,0.0000014626,0.0000014720,0.0000014733,0.0000014599, +0.0000014441,0.0000014600,0.0000015108,0.0000015554,0.0000016003, +0.0000016280,0.0000016197,0.0000016145,0.0000016286,0.0000016536, +0.0000016570,0.0000016294,0.0000015927,0.0000015571,0.0000014977, +0.0000014729,0.0000014722,0.0000014687,0.0000014726,0.0000014862, +0.0000015417,0.0000016279,0.0000016823,0.0000017072,0.0000016888, +0.0000016150,0.0000016375,0.0000016348,0.0000015392,0.0000015138, +0.0000014967,0.0000014709,0.0000014952,0.0000015522,0.0000015748, +0.0000015757,0.0000015781,0.0000015775,0.0000015730,0.0000015669, +0.0000015602,0.0000015545,0.0000015498,0.0000015457,0.0000015426, +0.0000015407,0.0000015392,0.0000015371,0.0000015344,0.0000015315, +0.0000015286,0.0000015279,0.0000015324,0.0000015446,0.0000015543, +0.0000015561,0.0000015643,0.0000015824,0.0000016012,0.0000016195, +0.0000016388,0.0000016474,0.0000016319,0.0000016003,0.0000015783, +0.0000015756,0.0000015999,0.0000016481,0.0000016622,0.0000016488, +0.0000016520,0.0000016649,0.0000016467,0.0000016195,0.0000016261, +0.0000016556,0.0000016668,0.0000016426,0.0000016312,0.0000016429, +0.0000016463,0.0000016702,0.0000017228,0.0000017532,0.0000017453, +0.0000017125,0.0000016722,0.0000016501,0.0000016532,0.0000016561, +0.0000016575,0.0000016628,0.0000016557,0.0000016403,0.0000016317, +0.0000016320,0.0000016406,0.0000016538,0.0000016684,0.0000016965, +0.0000017056,0.0000016811,0.0000016515,0.0000016556,0.0000016601, +0.0000016571,0.0000016570,0.0000016557,0.0000016335,0.0000015597, +0.0000014895,0.0000014835,0.0000014844,0.0000014647,0.0000014623, +0.0000014723,0.0000014927,0.0000014793,0.0000014638,0.0000014581, +0.0000014585,0.0000014600,0.0000014669,0.0000014750,0.0000014783, +0.0000014796,0.0000014815,0.0000014826,0.0000014821,0.0000014801, +0.0000014764,0.0000014722,0.0000014698,0.0000014695,0.0000014758, +0.0000014893,0.0000015076,0.0000015241,0.0000015351,0.0000015427, +0.0000015497,0.0000015553,0.0000015578,0.0000015573,0.0000015558, +0.0000015551,0.0000015550,0.0000015547,0.0000015534,0.0000015511, +0.0000015495,0.0000015485,0.0000015470,0.0000015451,0.0000015437, +0.0000015436,0.0000015440,0.0000015448,0.0000015384,0.0000015071, +0.0000014695,0.0000014577,0.0000014626,0.0000014722,0.0000014724, +0.0000014554,0.0000014454,0.0000014718,0.0000015243,0.0000015673, +0.0000016097,0.0000016282,0.0000016172,0.0000016157,0.0000016263, +0.0000016515,0.0000016559,0.0000016366,0.0000015965,0.0000015672, +0.0000015057,0.0000014736,0.0000014696,0.0000014652,0.0000014735, +0.0000014906,0.0000015530,0.0000016376,0.0000016869,0.0000017077, +0.0000016817,0.0000016124,0.0000016430,0.0000016249,0.0000015294, +0.0000015101,0.0000014883,0.0000014725,0.0000015045,0.0000015615, +0.0000015749,0.0000015759,0.0000015789,0.0000015783,0.0000015772, +0.0000015761,0.0000015741,0.0000015707,0.0000015662,0.0000015607, +0.0000015547,0.0000015486,0.0000015420,0.0000015352,0.0000015298, +0.0000015303,0.0000015385,0.0000015530,0.0000015596,0.0000015580, +0.0000015699,0.0000015976,0.0000016177,0.0000016210,0.0000016277, +0.0000016378,0.0000016401,0.0000016248,0.0000015995,0.0000015862, +0.0000015964,0.0000016300,0.0000016485,0.0000016402,0.0000016481, +0.0000016629,0.0000016486,0.0000016255,0.0000016257,0.0000016501, +0.0000016630,0.0000016477,0.0000016342,0.0000016399,0.0000016430, +0.0000016590,0.0000017087,0.0000017468,0.0000017485,0.0000017227, +0.0000016829,0.0000016538,0.0000016517,0.0000016564,0.0000016570, +0.0000016626,0.0000016609,0.0000016467,0.0000016348,0.0000016328, +0.0000016398,0.0000016532,0.0000016654,0.0000016897,0.0000017037, +0.0000016886,0.0000016528,0.0000016521,0.0000016588,0.0000016579, +0.0000016573,0.0000016552,0.0000016394,0.0000015704,0.0000014939, +0.0000014828,0.0000014828,0.0000014638,0.0000014614,0.0000014691, +0.0000014935,0.0000014830,0.0000014659,0.0000014613,0.0000014593, +0.0000014603,0.0000014671,0.0000014742,0.0000014784,0.0000014792, +0.0000014793,0.0000014779,0.0000014758,0.0000014741,0.0000014734, +0.0000014738,0.0000014744,0.0000014721,0.0000014704,0.0000014722, +0.0000014798,0.0000014923,0.0000015051,0.0000015154,0.0000015245, +0.0000015335,0.0000015400,0.0000015421,0.0000015410,0.0000015400, +0.0000015397,0.0000015399,0.0000015412,0.0000015435,0.0000015444, +0.0000015427,0.0000015396,0.0000015380,0.0000015390,0.0000015408, +0.0000015322,0.0000015000,0.0000014668,0.0000014581,0.0000014641, +0.0000014731,0.0000014698,0.0000014501,0.0000014472,0.0000014839, +0.0000015362,0.0000015778,0.0000016162,0.0000016282,0.0000016157, +0.0000016157,0.0000016236,0.0000016493,0.0000016553,0.0000016449, +0.0000016026,0.0000015774,0.0000015170,0.0000014767,0.0000014687, +0.0000014636,0.0000014752,0.0000014943,0.0000015620,0.0000016452, +0.0000016903,0.0000017070,0.0000016756,0.0000016120,0.0000016458, +0.0000016143,0.0000015225,0.0000015052,0.0000014814,0.0000014760, +0.0000015134,0.0000015665,0.0000015744,0.0000015768,0.0000015792, +0.0000015790,0.0000015814,0.0000015848,0.0000015860,0.0000015846, +0.0000015799,0.0000015713,0.0000015604,0.0000015496,0.0000015407, +0.0000015375,0.0000015458,0.0000015628,0.0000015692,0.0000015607, +0.0000015698,0.0000016069,0.0000016284,0.0000016198,0.0000016000, +0.0000015925,0.0000015943,0.0000015970,0.0000015944,0.0000015897, +0.0000015947,0.0000016193,0.0000016323,0.0000016322,0.0000016456, +0.0000016614,0.0000016473,0.0000016261,0.0000016254,0.0000016478, +0.0000016652,0.0000016519,0.0000016347,0.0000016387,0.0000016413, +0.0000016495,0.0000016938,0.0000017415,0.0000017509,0.0000017303, +0.0000016940,0.0000016590,0.0000016493,0.0000016553,0.0000016573, +0.0000016618,0.0000016645,0.0000016534,0.0000016386,0.0000016338, +0.0000016384,0.0000016518,0.0000016633,0.0000016824,0.0000017056, +0.0000016930,0.0000016606,0.0000016504,0.0000016573,0.0000016589, +0.0000016581,0.0000016537,0.0000016425,0.0000015808,0.0000014993, +0.0000014819,0.0000014821,0.0000014635,0.0000014608,0.0000014658, +0.0000014919,0.0000014876,0.0000014696,0.0000014644,0.0000014645, +0.0000014671,0.0000014705,0.0000014749,0.0000014778,0.0000014789, +0.0000014782,0.0000014755,0.0000014717,0.0000014681,0.0000014684, +0.0000014726,0.0000014762,0.0000014768,0.0000014734,0.0000014689, +0.0000014639,0.0000014664,0.0000014750,0.0000014849,0.0000014898, +0.0000014903,0.0000014919,0.0000014962,0.0000015011,0.0000015070, +0.0000015161,0.0000015284,0.0000015384,0.0000015410,0.0000015377, +0.0000015336,0.0000015341,0.0000015362,0.0000015256,0.0000014937, +0.0000014641,0.0000014581,0.0000014656,0.0000014735,0.0000014662, +0.0000014469,0.0000014509,0.0000014989,0.0000015472,0.0000015870, +0.0000016209,0.0000016254,0.0000016156,0.0000016179,0.0000016217, +0.0000016473,0.0000016557,0.0000016526,0.0000016107,0.0000015862, +0.0000015317,0.0000014823,0.0000014682,0.0000014640,0.0000014784, +0.0000014981,0.0000015693,0.0000016515,0.0000016931,0.0000017054, +0.0000016706,0.0000016109,0.0000016451,0.0000016055,0.0000015167, +0.0000014989,0.0000014778,0.0000014775,0.0000015199,0.0000015685, +0.0000015753,0.0000015787,0.0000015792,0.0000015801,0.0000015858, +0.0000015911,0.0000015917,0.0000015885,0.0000015799,0.0000015675, +0.0000015550,0.0000015464,0.0000015482,0.0000015656,0.0000015789, +0.0000015711,0.0000015639,0.0000015940,0.0000016350,0.0000016323, +0.0000015960,0.0000015706,0.0000015663,0.0000015723,0.0000015773, +0.0000015846,0.0000015975,0.0000016138,0.0000016202,0.0000016225, +0.0000016460,0.0000016591,0.0000016444,0.0000016244,0.0000016234, +0.0000016455,0.0000016675,0.0000016556,0.0000016356,0.0000016396, +0.0000016400,0.0000016421,0.0000016820,0.0000017327,0.0000017473, +0.0000017357,0.0000017040,0.0000016665,0.0000016493,0.0000016532, +0.0000016573,0.0000016614,0.0000016666,0.0000016601,0.0000016440, +0.0000016344,0.0000016368,0.0000016499,0.0000016619,0.0000016764, +0.0000016990,0.0000016982,0.0000016669,0.0000016496,0.0000016546, +0.0000016595,0.0000016597,0.0000016532,0.0000016443,0.0000015906, +0.0000015057,0.0000014816,0.0000014818,0.0000014642,0.0000014604, +0.0000014630,0.0000014875,0.0000014932,0.0000014751,0.0000014681, +0.0000014722,0.0000014759,0.0000014774,0.0000014778,0.0000014785, +0.0000014788,0.0000014771,0.0000014736,0.0000014692,0.0000014668, +0.0000014683,0.0000014709,0.0000014755,0.0000014804,0.0000014800, +0.0000014720,0.0000014615,0.0000014541,0.0000014561,0.0000014645, +0.0000014725,0.0000014759,0.0000014774,0.0000014815,0.0000014907, +0.0000015073,0.0000015276,0.0000015383,0.0000015372,0.0000015325, +0.0000015315,0.0000015317,0.0000015175,0.0000014856,0.0000014618, +0.0000014589,0.0000014669,0.0000014717,0.0000014610,0.0000014447, +0.0000014615,0.0000015137,0.0000015567,0.0000015949,0.0000016248, +0.0000016246,0.0000016170,0.0000016221,0.0000016214,0.0000016449, +0.0000016567,0.0000016576,0.0000016213,0.0000015924,0.0000015478, +0.0000014895,0.0000014684,0.0000014643,0.0000014798,0.0000015003, +0.0000015736,0.0000016561,0.0000016946,0.0000017032,0.0000016670, +0.0000016106,0.0000016431,0.0000015988,0.0000015109,0.0000014929, +0.0000014765,0.0000014779,0.0000015236,0.0000015696,0.0000015774, +0.0000015808,0.0000015800,0.0000015826,0.0000015900,0.0000015932, +0.0000015918,0.0000015850,0.0000015736,0.0000015603,0.0000015516, +0.0000015554,0.0000015770,0.0000015886,0.0000015738,0.0000015662, +0.0000015978,0.0000016397,0.0000016370,0.0000015983,0.0000015755, +0.0000015740,0.0000015797,0.0000015889,0.0000016021,0.0000016128, +0.0000016158,0.0000016255,0.0000016533,0.0000016550,0.0000016371, +0.0000016248,0.0000016248,0.0000016444,0.0000016647,0.0000016558, +0.0000016379,0.0000016404,0.0000016410,0.0000016397,0.0000016720, +0.0000017237,0.0000017473,0.0000017399,0.0000017122,0.0000016740, +0.0000016494,0.0000016508,0.0000016568,0.0000016609,0.0000016679, +0.0000016657,0.0000016505,0.0000016365,0.0000016356,0.0000016478, +0.0000016614,0.0000016726,0.0000016940,0.0000016978,0.0000016737, +0.0000016473,0.0000016509,0.0000016599,0.0000016614,0.0000016541, +0.0000016453,0.0000015998,0.0000015148,0.0000014809,0.0000014815, +0.0000014657,0.0000014599,0.0000014610,0.0000014802,0.0000014950, +0.0000014842,0.0000014748,0.0000014774,0.0000014823,0.0000014839, +0.0000014826,0.0000014809,0.0000014792,0.0000014758,0.0000014715, +0.0000014703,0.0000014716,0.0000014718,0.0000014722,0.0000014748, +0.0000014810,0.0000014833,0.0000014781,0.0000014640,0.0000014521, +0.0000014497,0.0000014562,0.0000014681,0.0000014771,0.0000014831, +0.0000014963,0.0000015182,0.0000015343,0.0000015358,0.0000015318, +0.0000015309,0.0000015295,0.0000015108,0.0000014780,0.0000014582, +0.0000014591,0.0000014677,0.0000014699,0.0000014544,0.0000014457, +0.0000014729,0.0000015268,0.0000015653,0.0000016015,0.0000016258, +0.0000016217,0.0000016187,0.0000016280,0.0000016220,0.0000016417, +0.0000016575,0.0000016603,0.0000016333,0.0000015976,0.0000015640, +0.0000014989,0.0000014687,0.0000014641,0.0000014791,0.0000015002, +0.0000015749,0.0000016598,0.0000016959,0.0000017012,0.0000016658, +0.0000016112,0.0000016413,0.0000015953,0.0000015057,0.0000014871, +0.0000014745,0.0000014784,0.0000015249,0.0000015700,0.0000015805, +0.0000015837,0.0000015819,0.0000015851,0.0000015920,0.0000015938, +0.0000015915,0.0000015842,0.0000015713,0.0000015586,0.0000015594, +0.0000015807,0.0000015998,0.0000015892,0.0000015680,0.0000015798, +0.0000016196,0.0000016383,0.0000016244,0.0000016083,0.0000016025, +0.0000016049,0.0000016119,0.0000016179,0.0000016248,0.0000016410, +0.0000016555,0.0000016408,0.0000016276,0.0000016236,0.0000016252, +0.0000016458,0.0000016647,0.0000016558,0.0000016392,0.0000016407, +0.0000016416,0.0000016384,0.0000016633,0.0000017145,0.0000017459, +0.0000017431,0.0000017192,0.0000016815,0.0000016519,0.0000016482, +0.0000016553,0.0000016604,0.0000016679,0.0000016698,0.0000016573, +0.0000016402,0.0000016355,0.0000016460,0.0000016610,0.0000016702, +0.0000016885,0.0000017018,0.0000016823,0.0000016501,0.0000016482, +0.0000016586,0.0000016623,0.0000016559,0.0000016459,0.0000016088, +0.0000015271,0.0000014828,0.0000014812,0.0000014678,0.0000014590, +0.0000014591,0.0000014706,0.0000014946,0.0000014971,0.0000014856, +0.0000014814,0.0000014835,0.0000014855,0.0000014850,0.0000014835, +0.0000014808,0.0000014766,0.0000014748,0.0000014783,0.0000014818, +0.0000014807,0.0000014776,0.0000014787,0.0000014835,0.0000014823, +0.0000014710,0.0000014546,0.0000014466,0.0000014490,0.0000014607, +0.0000014750,0.0000014924,0.0000015144,0.0000015307,0.0000015334, +0.0000015306,0.0000015302,0.0000015273,0.0000015059,0.0000014729, +0.0000014564,0.0000014585,0.0000014677,0.0000014673,0.0000014501, +0.0000014467,0.0000014858,0.0000015387,0.0000015732,0.0000016076, +0.0000016260,0.0000016186,0.0000016220,0.0000016360,0.0000016246, +0.0000016375,0.0000016579,0.0000016625,0.0000016460,0.0000016032, +0.0000015784,0.0000015122,0.0000014711,0.0000014638,0.0000014767, +0.0000014981,0.0000015734,0.0000016624,0.0000016970,0.0000016996, +0.0000016667,0.0000016137,0.0000016404,0.0000015947,0.0000015011, +0.0000014821,0.0000014730,0.0000014791,0.0000015236,0.0000015696, +0.0000015841,0.0000015865,0.0000015841,0.0000015869,0.0000015927, +0.0000015948,0.0000015935,0.0000015859,0.0000015718,0.0000015649, +0.0000015782,0.0000016049,0.0000016145,0.0000015943,0.0000015775, +0.0000015893,0.0000016135,0.0000016263,0.0000016271,0.0000016258, +0.0000016267,0.0000016319,0.0000016372,0.0000016496,0.0000016472, +0.0000016244,0.0000016229,0.0000016239,0.0000016252,0.0000016475, +0.0000016651,0.0000016551,0.0000016405,0.0000016420,0.0000016425, +0.0000016376,0.0000016560,0.0000017067,0.0000017428,0.0000017448, +0.0000017249,0.0000016893,0.0000016548,0.0000016459,0.0000016529, +0.0000016595,0.0000016675,0.0000016720,0.0000016635,0.0000016451, +0.0000016368,0.0000016444,0.0000016606,0.0000016686,0.0000016830, +0.0000016989,0.0000016883,0.0000016523,0.0000016426,0.0000016549, +0.0000016626,0.0000016579,0.0000016463,0.0000016176,0.0000015419, +0.0000014858,0.0000014811,0.0000014698,0.0000014575,0.0000014576, +0.0000014631,0.0000014901,0.0000015053,0.0000014990,0.0000014888, +0.0000014830,0.0000014817,0.0000014822,0.0000014823,0.0000014806, +0.0000014803,0.0000014831,0.0000014885,0.0000014904,0.0000014873, +0.0000014820,0.0000014783,0.0000014716,0.0000014596,0.0000014475, +0.0000014434,0.0000014494,0.0000014656,0.0000014888,0.0000015123, +0.0000015271,0.0000015296,0.0000015283,0.0000015289,0.0000015224, +0.0000014995,0.0000014707,0.0000014569,0.0000014596,0.0000014666, +0.0000014632,0.0000014480,0.0000014531,0.0000015014,0.0000015497, +0.0000015812,0.0000016127,0.0000016268,0.0000016173,0.0000016262, +0.0000016452,0.0000016297,0.0000016334,0.0000016575,0.0000016642, +0.0000016571,0.0000016100,0.0000015886,0.0000015286,0.0000014758, +0.0000014645,0.0000014742,0.0000014944,0.0000015687,0.0000016640, +0.0000016983,0.0000016994,0.0000016697,0.0000016171,0.0000016399, +0.0000015968,0.0000014989,0.0000014791,0.0000014724,0.0000014786, +0.0000015197,0.0000015671,0.0000015868,0.0000015885,0.0000015860, +0.0000015880,0.0000015932,0.0000015957,0.0000015954,0.0000015881, +0.0000015771,0.0000015768,0.0000015972,0.0000016215,0.0000016284, +0.0000016146,0.0000016000,0.0000016005,0.0000016088,0.0000016174, +0.0000016226,0.0000016274,0.0000016321,0.0000016322,0.0000016203, +0.0000016142,0.0000016261,0.0000016247,0.0000016264,0.0000016505, +0.0000016631,0.0000016527,0.0000016399,0.0000016436,0.0000016436, +0.0000016356,0.0000016515,0.0000017002,0.0000017401,0.0000017460, +0.0000017296,0.0000016953,0.0000016585,0.0000016454,0.0000016501, +0.0000016583,0.0000016666,0.0000016729,0.0000016684,0.0000016509, +0.0000016382,0.0000016434,0.0000016603,0.0000016691,0.0000016796, +0.0000016953,0.0000016942,0.0000016603,0.0000016420,0.0000016495, +0.0000016611,0.0000016599,0.0000016470,0.0000016255,0.0000015580, +0.0000014924,0.0000014801,0.0000014708,0.0000014571,0.0000014573, +0.0000014610,0.0000014814,0.0000015051,0.0000015110,0.0000015012, +0.0000014889,0.0000014801,0.0000014782,0.0000014766,0.0000014752, +0.0000014775,0.0000014813,0.0000014833,0.0000014824,0.0000014767, +0.0000014689,0.0000014600,0.0000014526,0.0000014484,0.0000014528, +0.0000014715,0.0000014956,0.0000015167,0.0000015271,0.0000015275, +0.0000015264,0.0000015252,0.0000015148,0.0000014897,0.0000014667, +0.0000014594,0.0000014619,0.0000014661,0.0000014598,0.0000014481, +0.0000014637,0.0000015166,0.0000015592,0.0000015885,0.0000016170, +0.0000016255,0.0000016171,0.0000016313,0.0000016553,0.0000016363, +0.0000016318,0.0000016562,0.0000016654,0.0000016653,0.0000016188, +0.0000015939,0.0000015464,0.0000014826,0.0000014658,0.0000014730, +0.0000014903,0.0000015612,0.0000016644,0.0000016994,0.0000017016, +0.0000016737,0.0000016192,0.0000016371,0.0000016009,0.0000015009, +0.0000014769,0.0000014723,0.0000014771,0.0000015132,0.0000015617, +0.0000015878,0.0000015905,0.0000015876,0.0000015887,0.0000015929, +0.0000015963,0.0000015967,0.0000015920,0.0000015852,0.0000015870, +0.0000016017,0.0000016219,0.0000016301,0.0000016255,0.0000016173, +0.0000016120,0.0000016111,0.0000016139,0.0000016149,0.0000016143, +0.0000016108,0.0000016207,0.0000016284,0.0000016209,0.0000016289, +0.0000016555,0.0000016606,0.0000016488,0.0000016390,0.0000016443, +0.0000016440,0.0000016360,0.0000016495,0.0000016949,0.0000017351, +0.0000017442,0.0000017335,0.0000017009,0.0000016617,0.0000016440, +0.0000016473,0.0000016562,0.0000016651,0.0000016731,0.0000016719, +0.0000016570,0.0000016423,0.0000016443,0.0000016601,0.0000016701, +0.0000016768,0.0000016907,0.0000016983,0.0000016670,0.0000016370, +0.0000016432,0.0000016584,0.0000016612,0.0000016482,0.0000016316, +0.0000015749,0.0000015020,0.0000014777,0.0000014716,0.0000014594, +0.0000014587,0.0000014628,0.0000014729,0.0000014955,0.0000015117, +0.0000015138,0.0000015030,0.0000014915,0.0000014827,0.0000014742, +0.0000014729,0.0000014726,0.0000014731,0.0000014748,0.0000014738, +0.0000014707,0.0000014705,0.0000014738,0.0000014835,0.0000014999, +0.0000015177,0.0000015284,0.0000015304,0.0000015286,0.0000015273, +0.0000015211,0.0000015036,0.0000014781,0.0000014602,0.0000014587, +0.0000014632,0.0000014657,0.0000014580,0.0000014527,0.0000014776, +0.0000015313,0.0000015680,0.0000015959,0.0000016217,0.0000016236, +0.0000016159,0.0000016363,0.0000016661,0.0000016450,0.0000016301, +0.0000016538,0.0000016659,0.0000016675,0.0000016297,0.0000015966, +0.0000015632,0.0000014913,0.0000014675,0.0000014740,0.0000014872, +0.0000015521,0.0000016636,0.0000016998,0.0000017059,0.0000016783, +0.0000016210,0.0000016319,0.0000016065,0.0000015073,0.0000014747, +0.0000014725,0.0000014755,0.0000015050,0.0000015529,0.0000015857, +0.0000015919,0.0000015895,0.0000015890,0.0000015925,0.0000015964, +0.0000015982,0.0000015965,0.0000015922,0.0000015908,0.0000015972, +0.0000016082,0.0000016179,0.0000016215,0.0000016189,0.0000016173, +0.0000016164,0.0000016159,0.0000016184,0.0000016241,0.0000016210, +0.0000016184,0.0000016365,0.0000016603,0.0000016560,0.0000016421, +0.0000016362,0.0000016422,0.0000016437,0.0000016381,0.0000016479, +0.0000016902,0.0000017321,0.0000017440,0.0000017365,0.0000017066, +0.0000016660,0.0000016440,0.0000016449,0.0000016537,0.0000016630, +0.0000016722,0.0000016745,0.0000016631,0.0000016480,0.0000016466, +0.0000016604,0.0000016712,0.0000016739,0.0000016857,0.0000017011, +0.0000016759,0.0000016400,0.0000016381,0.0000016543,0.0000016604, +0.0000016492,0.0000016355,0.0000015914,0.0000015158,0.0000014785, +0.0000014730,0.0000014640,0.0000014612,0.0000014646,0.0000014679, +0.0000014815,0.0000015018,0.0000015143,0.0000015164,0.0000015092, +0.0000015019,0.0000014934,0.0000014894,0.0000014885,0.0000014903, +0.0000014934,0.0000015000,0.0000015079,0.0000015170,0.0000015268, +0.0000015340,0.0000015362,0.0000015334,0.0000015307,0.0000015261, +0.0000015134,0.0000014905,0.0000014661,0.0000014550,0.0000014562, +0.0000014619,0.0000014631,0.0000014552,0.0000014557,0.0000014924, +0.0000015439,0.0000015756,0.0000016028,0.0000016250,0.0000016244, +0.0000016133,0.0000016409,0.0000016771,0.0000016554,0.0000016288, +0.0000016495,0.0000016656,0.0000016679,0.0000016421,0.0000015989, +0.0000015766,0.0000015025,0.0000014697,0.0000014769,0.0000014874, +0.0000015441,0.0000016612,0.0000017000,0.0000017114,0.0000016847, +0.0000016268,0.0000016269,0.0000016125,0.0000015184,0.0000014750, +0.0000014734,0.0000014743,0.0000014953,0.0000015387,0.0000015783, +0.0000015922,0.0000015917,0.0000015907,0.0000015935,0.0000015969, +0.0000015993,0.0000016001,0.0000015987,0.0000015975,0.0000015980, +0.0000016016,0.0000016067,0.0000016107,0.0000016130,0.0000016141, +0.0000016154,0.0000016167,0.0000016179,0.0000016271,0.0000016473, +0.0000016601,0.0000016462,0.0000016338,0.0000016313,0.0000016378, +0.0000016427,0.0000016385,0.0000016468,0.0000016872,0.0000017301, +0.0000017445,0.0000017388,0.0000017112,0.0000016705,0.0000016450, +0.0000016428,0.0000016510,0.0000016607,0.0000016704,0.0000016753, +0.0000016686,0.0000016540,0.0000016498,0.0000016611,0.0000016723, +0.0000016735,0.0000016807,0.0000016998,0.0000016845,0.0000016425, +0.0000016315,0.0000016489,0.0000016592,0.0000016503,0.0000016376, +0.0000016062,0.0000015351,0.0000014834,0.0000014736,0.0000014691, +0.0000014648,0.0000014660,0.0000014669,0.0000014723,0.0000014851, +0.0000015016,0.0000015121,0.0000015176,0.0000015196,0.0000015179, +0.0000015202,0.0000015212,0.0000015253,0.0000015297,0.0000015344, +0.0000015374,0.0000015387,0.0000015380,0.0000015358,0.0000015299, +0.0000015184,0.0000014987,0.0000014749,0.0000014589,0.0000014539, +0.0000014559,0.0000014604,0.0000014594,0.0000014538,0.0000014628, +0.0000015069,0.0000015546,0.0000015828,0.0000016094,0.0000016277, +0.0000016238,0.0000016144,0.0000016464,0.0000016869,0.0000016667, +0.0000016299,0.0000016442,0.0000016643,0.0000016678,0.0000016544, +0.0000016032,0.0000015851,0.0000015159,0.0000014728,0.0000014808, +0.0000014912,0.0000015378,0.0000016564,0.0000017002,0.0000017147, +0.0000016932,0.0000016355,0.0000016215,0.0000016177,0.0000015340, +0.0000014780,0.0000014744,0.0000014740,0.0000014856,0.0000015206, +0.0000015629,0.0000015878,0.0000015934,0.0000015943,0.0000015957, +0.0000015984,0.0000016014,0.0000016036,0.0000016044,0.0000016052, +0.0000016062,0.0000016076,0.0000016104,0.0000016131,0.0000016162, +0.0000016204,0.0000016283,0.0000016408,0.0000016504,0.0000016501, +0.0000016335,0.0000016247,0.0000016227,0.0000016313,0.0000016424, +0.0000016362,0.0000016456,0.0000016865,0.0000017290,0.0000017434, +0.0000017406,0.0000017153,0.0000016745,0.0000016458,0.0000016408, +0.0000016483,0.0000016586,0.0000016684,0.0000016756,0.0000016729, +0.0000016602,0.0000016536,0.0000016618,0.0000016737,0.0000016735, +0.0000016767,0.0000016971,0.0000016938,0.0000016497,0.0000016286, +0.0000016425,0.0000016576,0.0000016521,0.0000016389,0.0000016183, +0.0000015576,0.0000014943,0.0000014741,0.0000014729,0.0000014686, +0.0000014665,0.0000014672,0.0000014680,0.0000014727,0.0000014831, +0.0000014959,0.0000015063,0.0000015128,0.0000015207,0.0000015246, +0.0000015293,0.0000015318,0.0000015337,0.0000015339,0.0000015322, +0.0000015267,0.0000015153,0.0000014980,0.0000014781,0.0000014614, +0.0000014548,0.0000014545,0.0000014570,0.0000014587,0.0000014553, +0.0000014542,0.0000014725,0.0000015204,0.0000015633,0.0000015895, +0.0000016150,0.0000016293,0.0000016240,0.0000016183,0.0000016517, +0.0000016947,0.0000016773,0.0000016334,0.0000016385,0.0000016622, +0.0000016675,0.0000016645,0.0000016111,0.0000015890,0.0000015310, +0.0000014766,0.0000014833,0.0000014949,0.0000015322,0.0000016479, +0.0000016995,0.0000017149,0.0000017030,0.0000016461,0.0000016198, +0.0000016225,0.0000015530,0.0000014837,0.0000014756,0.0000014741, +0.0000014769,0.0000015010,0.0000015407,0.0000015741,0.0000015911, +0.0000015956,0.0000015988,0.0000016008,0.0000016045,0.0000016088, +0.0000016127,0.0000016157,0.0000016189,0.0000016222,0.0000016269, +0.0000016325,0.0000016386,0.0000016436,0.0000016456,0.0000016356, +0.0000016208,0.0000016125,0.0000016101,0.0000016229,0.0000016412, +0.0000016342,0.0000016449,0.0000016872,0.0000017289,0.0000017436, +0.0000017421,0.0000017190,0.0000016779,0.0000016467,0.0000016398, +0.0000016458,0.0000016569,0.0000016666,0.0000016745,0.0000016758, +0.0000016662,0.0000016574,0.0000016628,0.0000016750,0.0000016747, +0.0000016750,0.0000016932,0.0000017006,0.0000016615,0.0000016291, +0.0000016366,0.0000016538,0.0000016534,0.0000016406,0.0000016271, +0.0000015809,0.0000015137,0.0000014785,0.0000014743,0.0000014726, +0.0000014690,0.0000014673,0.0000014670,0.0000014680,0.0000014715, +0.0000014769,0.0000014831,0.0000014891,0.0000014936,0.0000014970, +0.0000014991,0.0000014977,0.0000014935,0.0000014863,0.0000014759, +0.0000014651,0.0000014567,0.0000014553,0.0000014552,0.0000014561, +0.0000014583,0.0000014578,0.0000014529,0.0000014546,0.0000014839, +0.0000015330,0.0000015709,0.0000015957,0.0000016195,0.0000016298, +0.0000016221,0.0000016207,0.0000016558,0.0000016995,0.0000016864, +0.0000016375,0.0000016336,0.0000016595,0.0000016673,0.0000016702, +0.0000016228,0.0000015901,0.0000015465,0.0000014826,0.0000014841, +0.0000014988,0.0000015274,0.0000016354,0.0000016975,0.0000017156, +0.0000017113,0.0000016593,0.0000016199,0.0000016244,0.0000015748, +0.0000014957,0.0000014746,0.0000014736,0.0000014729,0.0000014849, +0.0000015152,0.0000015504,0.0000015771,0.0000015925,0.0000015993, +0.0000016021,0.0000016050,0.0000016098,0.0000016163,0.0000016220, +0.0000016252,0.0000016314,0.0000016339,0.0000016334,0.0000016275, +0.0000016157,0.0000016037,0.0000015954,0.0000015970,0.0000016153, +0.0000016397,0.0000016311,0.0000016445,0.0000016882,0.0000017291, +0.0000017434,0.0000017432,0.0000017217,0.0000016805,0.0000016479, +0.0000016383,0.0000016436,0.0000016553,0.0000016649,0.0000016732, +0.0000016771,0.0000016716,0.0000016623,0.0000016644,0.0000016756, +0.0000016765,0.0000016732,0.0000016874,0.0000017048,0.0000016736, +0.0000016278,0.0000016269,0.0000016486,0.0000016537,0.0000016433, +0.0000016323,0.0000016014,0.0000015393,0.0000014898,0.0000014755, +0.0000014743,0.0000014712,0.0000014683,0.0000014672,0.0000014680, +0.0000014683,0.0000014686,0.0000014687,0.0000014692,0.0000014690, +0.0000014685,0.0000014668,0.0000014642,0.0000014597,0.0000014566, +0.0000014552,0.0000014550,0.0000014556,0.0000014576,0.0000014589, +0.0000014564,0.0000014539,0.0000014613,0.0000014978,0.0000015454, +0.0000015783,0.0000016021,0.0000016229,0.0000016287,0.0000016211, +0.0000016210,0.0000016591,0.0000017022,0.0000016936,0.0000016431, +0.0000016325,0.0000016566,0.0000016674,0.0000016732,0.0000016364, +0.0000015910,0.0000015600,0.0000014900,0.0000014850,0.0000015023, +0.0000015242,0.0000016201,0.0000016936,0.0000017151,0.0000017200, +0.0000016751,0.0000016234,0.0000016230,0.0000015950,0.0000015168, +0.0000014755,0.0000014732,0.0000014722,0.0000014754,0.0000014927, +0.0000015209,0.0000015498,0.0000015731,0.0000015878,0.0000015969, +0.0000016046,0.0000016074,0.0000016097,0.0000016116,0.0000016113, +0.0000016077,0.0000016000,0.0000015887,0.0000015785,0.0000015732, +0.0000015855,0.0000016123,0.0000016399,0.0000016299,0.0000016453, +0.0000016895,0.0000017297,0.0000017429,0.0000017432,0.0000017232, +0.0000016819,0.0000016493,0.0000016374,0.0000016414,0.0000016533, +0.0000016633,0.0000016714,0.0000016778,0.0000016760,0.0000016674, +0.0000016667,0.0000016762,0.0000016786,0.0000016738,0.0000016819, +0.0000017050,0.0000016872,0.0000016365,0.0000016239,0.0000016423, +0.0000016543,0.0000016466,0.0000016354,0.0000016169,0.0000015682, +0.0000015110,0.0000014803,0.0000014743,0.0000014726,0.0000014701, +0.0000014690,0.0000014688,0.0000014683,0.0000014670,0.0000014655, +0.0000014635,0.0000014617,0.0000014598,0.0000014589,0.0000014578, +0.0000014565,0.0000014559,0.0000014571,0.0000014593,0.0000014594, +0.0000014557,0.0000014546,0.0000014727,0.0000015143,0.0000015577, +0.0000015858,0.0000016078,0.0000016254,0.0000016283,0.0000016214, +0.0000016235,0.0000016636,0.0000017034,0.0000016989,0.0000016496, +0.0000016309,0.0000016542,0.0000016681,0.0000016759,0.0000016508, +0.0000015942,0.0000015706,0.0000015015,0.0000014843,0.0000015058, +0.0000015248,0.0000016044,0.0000016862,0.0000017112,0.0000017228, +0.0000016922,0.0000016323,0.0000016165,0.0000016127,0.0000015503, +0.0000014860,0.0000014716,0.0000014711,0.0000014709,0.0000014777, +0.0000014935,0.0000015149,0.0000015353,0.0000015498,0.0000015581, +0.0000015641,0.0000015681,0.0000015691,0.0000015661,0.0000015596, +0.0000015532,0.0000015513,0.0000015583,0.0000015791,0.0000016133, +0.0000016393,0.0000016293,0.0000016475,0.0000016930,0.0000017314, +0.0000017426,0.0000017427,0.0000017233,0.0000016822,0.0000016503, +0.0000016363,0.0000016387,0.0000016509,0.0000016617,0.0000016692, +0.0000016768,0.0000016787,0.0000016725,0.0000016702,0.0000016774, +0.0000016806,0.0000016758,0.0000016778,0.0000017019,0.0000016973, +0.0000016473,0.0000016200,0.0000016353,0.0000016521,0.0000016492, +0.0000016378,0.0000016265,0.0000015948,0.0000015409,0.0000014959, +0.0000014764,0.0000014729,0.0000014715,0.0000014712,0.0000014703, +0.0000014690,0.0000014673,0.0000014651,0.0000014634,0.0000014622, +0.0000014613,0.0000014612,0.0000014613,0.0000014618,0.0000014616, +0.0000014588,0.0000014566,0.0000014617,0.0000014890,0.0000015326, +0.0000015699,0.0000015937,0.0000016131,0.0000016263,0.0000016265, +0.0000016208,0.0000016275,0.0000016682,0.0000017048,0.0000017028, +0.0000016567,0.0000016309,0.0000016519,0.0000016694,0.0000016784, +0.0000016642,0.0000016009,0.0000015783,0.0000015182,0.0000014856, +0.0000015091,0.0000015298,0.0000015905,0.0000016750,0.0000017048, +0.0000017226,0.0000017081,0.0000016472,0.0000016140,0.0000016191, +0.0000015905,0.0000015250,0.0000014838,0.0000014705,0.0000014708, +0.0000014719,0.0000014758,0.0000014836,0.0000014936,0.0000015027, +0.0000015099,0.0000015136,0.0000015157,0.0000015176,0.0000015214, +0.0000015328,0.0000015524,0.0000015835,0.0000016182,0.0000016358, +0.0000016268,0.0000016496,0.0000016974,0.0000017342,0.0000017435, +0.0000017432,0.0000017227,0.0000016818,0.0000016514,0.0000016351, +0.0000016352,0.0000016483,0.0000016601,0.0000016671,0.0000016748, +0.0000016794,0.0000016766,0.0000016741,0.0000016790,0.0000016824, +0.0000016786,0.0000016773,0.0000016972,0.0000017035,0.0000016634, +0.0000016228,0.0000016280,0.0000016468,0.0000016498,0.0000016407, +0.0000016317,0.0000016140,0.0000015741,0.0000015250,0.0000014902, +0.0000014755,0.0000014725,0.0000014716,0.0000014702,0.0000014681, +0.0000014663,0.0000014650,0.0000014647,0.0000014641,0.0000014638, +0.0000014615,0.0000014578,0.0000014555,0.0000014569,0.0000014740, +0.0000015100,0.0000015511,0.0000015814,0.0000016014,0.0000016178, +0.0000016257,0.0000016234,0.0000016192,0.0000016294,0.0000016716, +0.0000017067,0.0000017061,0.0000016635,0.0000016325,0.0000016505, +0.0000016713,0.0000016808,0.0000016750,0.0000016109,0.0000015836, +0.0000015367,0.0000014899,0.0000015117,0.0000015345,0.0000015799, +0.0000016612,0.0000016976,0.0000017207,0.0000017199,0.0000016691, +0.0000016166,0.0000016117,0.0000016099,0.0000015702,0.0000015224, +0.0000014932,0.0000014800,0.0000014731,0.0000014705,0.0000014726, +0.0000014728,0.0000014734,0.0000014776,0.0000014929,0.0000015065, +0.0000015302,0.0000015602,0.0000015957,0.0000016233,0.0000016308, +0.0000016258,0.0000016537,0.0000017025,0.0000017362,0.0000017434, +0.0000017436,0.0000017211,0.0000016804,0.0000016523,0.0000016349, +0.0000016325,0.0000016455,0.0000016585,0.0000016655,0.0000016726, +0.0000016788,0.0000016789,0.0000016769,0.0000016806,0.0000016842, +0.0000016827,0.0000016777,0.0000016930,0.0000017087,0.0000016804, +0.0000016328,0.0000016234,0.0000016400,0.0000016482,0.0000016438, +0.0000016352,0.0000016250,0.0000016013,0.0000015617,0.0000015215, +0.0000014940,0.0000014796,0.0000014722,0.0000014685,0.0000014660, +0.0000014633,0.0000014594,0.0000014568,0.0000014533,0.0000014527, +0.0000014566,0.0000014708,0.0000014986,0.0000015356,0.0000015692, +0.0000015918,0.0000016083,0.0000016217,0.0000016246,0.0000016201, +0.0000016167,0.0000016308,0.0000016745,0.0000017080,0.0000017082, +0.0000016694,0.0000016345,0.0000016496,0.0000016738,0.0000016830, +0.0000016829,0.0000016229,0.0000015878,0.0000015535,0.0000014971, +0.0000015130,0.0000015406,0.0000015736,0.0000016461,0.0000016885, +0.0000017138,0.0000017251,0.0000016963,0.0000016361,0.0000016085, +0.0000016096,0.0000015990,0.0000015684,0.0000015392,0.0000015168, +0.0000014998,0.0000014897,0.0000014842,0.0000014845,0.0000015013, +0.0000015245,0.0000015525,0.0000015815,0.0000016080,0.0000016231, +0.0000016272,0.0000016296,0.0000016623,0.0000017093,0.0000017374, +0.0000017433,0.0000017432,0.0000017171,0.0000016768,0.0000016519, +0.0000016351,0.0000016309,0.0000016426,0.0000016571,0.0000016645, +0.0000016710,0.0000016775,0.0000016797,0.0000016793,0.0000016823, +0.0000016863,0.0000016880,0.0000016810,0.0000016893,0.0000017098, +0.0000016968,0.0000016472,0.0000016223,0.0000016324,0.0000016446, +0.0000016452,0.0000016391,0.0000016309,0.0000016182,0.0000015945, +0.0000015624,0.0000015319,0.0000015092,0.0000014937,0.0000014838, +0.0000014775,0.0000014734,0.0000014731,0.0000014764,0.0000014881, +0.0000015084,0.0000015358,0.0000015640,0.0000015854,0.0000016009, +0.0000016138,0.0000016227,0.0000016232,0.0000016170,0.0000016149, +0.0000016329,0.0000016774,0.0000017085,0.0000017086,0.0000016739, +0.0000016370,0.0000016491,0.0000016761,0.0000016853,0.0000016867, +0.0000016355,0.0000015916,0.0000015667,0.0000015068,0.0000015136, +0.0000015464,0.0000015714,0.0000016314,0.0000016774,0.0000017023, +0.0000017259,0.0000017188,0.0000016698,0.0000016234,0.0000016123, +0.0000016102,0.0000016026,0.0000015901,0.0000015766,0.0000015649, +0.0000015618,0.0000015689,0.0000015763,0.0000015875,0.0000016032, +0.0000016154,0.0000016201,0.0000016243,0.0000016383,0.0000016755, +0.0000017174,0.0000017389,0.0000017430,0.0000017402,0.0000017106, +0.0000016718,0.0000016508,0.0000016357,0.0000016290,0.0000016403, +0.0000016562,0.0000016644,0.0000016704,0.0000016762,0.0000016795, +0.0000016810,0.0000016846,0.0000016893,0.0000016943,0.0000016864, +0.0000016869,0.0000017084,0.0000017095,0.0000016642,0.0000016249, +0.0000016242,0.0000016383,0.0000016446,0.0000016422,0.0000016355, +0.0000016273,0.0000016148,0.0000015963,0.0000015750,0.0000015564, +0.0000015425,0.0000015339,0.0000015307,0.0000015336,0.0000015429, +0.0000015569,0.0000015727,0.0000015867,0.0000015979,0.0000016083, +0.0000016187,0.0000016218,0.0000016191,0.0000016125,0.0000016124, +0.0000016348,0.0000016808,0.0000017101,0.0000017090,0.0000016771, +0.0000016405,0.0000016492,0.0000016780,0.0000016874,0.0000016887, +0.0000016476,0.0000015961,0.0000015761,0.0000015195,0.0000015160, +0.0000015502,0.0000015718,0.0000016182,0.0000016652,0.0000016895, +0.0000017190,0.0000017259,0.0000017028,0.0000016584,0.0000016291, +0.0000016198,0.0000016191,0.0000016190,0.0000016184,0.0000016144, +0.0000016144,0.0000016111,0.0000016095,0.0000016143,0.0000016193, +0.0000016293,0.0000016528,0.0000016904,0.0000017249,0.0000017409, +0.0000017434,0.0000017347,0.0000017017,0.0000016663,0.0000016499, +0.0000016367,0.0000016276,0.0000016384,0.0000016562,0.0000016651, +0.0000016708,0.0000016756,0.0000016788,0.0000016820,0.0000016873, +0.0000016934,0.0000017001,0.0000016930,0.0000016883,0.0000017042, +0.0000017144,0.0000016831,0.0000016348,0.0000016216,0.0000016296, +0.0000016398,0.0000016424,0.0000016400,0.0000016333,0.0000016251, +0.0000016156,0.0000016051,0.0000015956,0.0000015886,0.0000015853, +0.0000015855,0.0000015889,0.0000015940,0.0000016000,0.0000016079, +0.0000016161,0.0000016219,0.0000016214,0.0000016140,0.0000016076, +0.0000016105,0.0000016379,0.0000016848,0.0000017119,0.0000017097, +0.0000016800,0.0000016445,0.0000016503,0.0000016795,0.0000016892, +0.0000016903,0.0000016582,0.0000016020,0.0000015821,0.0000015333, +0.0000015183,0.0000015514,0.0000015726,0.0000016066,0.0000016525, +0.0000016759,0.0000017040,0.0000017292,0.0000017262,0.0000016977, +0.0000016656,0.0000016436,0.0000016316,0.0000016238,0.0000016185, +0.0000016152,0.0000016145,0.0000016192,0.0000016299,0.0000016483, +0.0000016746,0.0000017065,0.0000017315,0.0000017416,0.0000017417, +0.0000017264,0.0000016907,0.0000016608,0.0000016493,0.0000016374, +0.0000016271,0.0000016364,0.0000016567,0.0000016669,0.0000016718, +0.0000016757,0.0000016779,0.0000016821,0.0000016899,0.0000016981, +0.0000017049,0.0000016995,0.0000016913,0.0000017002,0.0000017147, +0.0000016984,0.0000016513,0.0000016224,0.0000016217,0.0000016313, +0.0000016391,0.0000016409,0.0000016374,0.0000016321,0.0000016261, +0.0000016209,0.0000016164,0.0000016132,0.0000016116,0.0000016121, +0.0000016148,0.0000016192,0.0000016216,0.0000016225,0.0000016167, +0.0000016087,0.0000016036,0.0000016104,0.0000016423,0.0000016891, +0.0000017122,0.0000017091,0.0000016822,0.0000016485,0.0000016519, +0.0000016809,0.0000016908,0.0000016916,0.0000016667,0.0000016090, +0.0000015850,0.0000015462,0.0000015229,0.0000015507,0.0000015724, +0.0000015964,0.0000016398,0.0000016644,0.0000016858,0.0000017167, +0.0000017312,0.0000017254,0.0000017071,0.0000016859,0.0000016684, +0.0000016581,0.0000016550,0.0000016573,0.0000016657,0.0000016803, +0.0000017016,0.0000017224,0.0000017368,0.0000017399,0.0000017353, +0.0000017133,0.0000016786,0.0000016553,0.0000016479,0.0000016373, +0.0000016271,0.0000016342,0.0000016564,0.0000016688,0.0000016733, +0.0000016767,0.0000016776,0.0000016811,0.0000016907,0.0000017015, +0.0000017073,0.0000017041,0.0000016953,0.0000016975,0.0000017133, +0.0000017111,0.0000016701,0.0000016274,0.0000016167,0.0000016204, +0.0000016296,0.0000016354,0.0000016371,0.0000016340,0.0000016316, +0.0000016305,0.0000016273,0.0000016268,0.0000016250,0.0000016248, +0.0000016229,0.0000016172,0.0000016090,0.0000016013,0.0000016012, +0.0000016121,0.0000016474,0.0000016925,0.0000017126,0.0000017084, +0.0000016840,0.0000016520,0.0000016533,0.0000016818,0.0000016923, +0.0000016929,0.0000016732,0.0000016167,0.0000015863,0.0000015565, +0.0000015301,0.0000015499,0.0000015707,0.0000015872,0.0000016268, +0.0000016569,0.0000016717,0.0000016971,0.0000017236,0.0000017333, +0.0000017319,0.0000017242,0.0000017183,0.0000017143,0.0000017135, +0.0000017170,0.0000017237,0.0000017312,0.0000017354,0.0000017347, +0.0000017224,0.0000016968,0.0000016669,0.0000016511,0.0000016456, +0.0000016357,0.0000016271,0.0000016312,0.0000016545,0.0000016699, +0.0000016745,0.0000016782,0.0000016785,0.0000016798,0.0000016892, +0.0000017019,0.0000017066,0.0000017056,0.0000016989,0.0000016975, +0.0000017095,0.0000017150,0.0000016900,0.0000016420,0.0000016141, +0.0000016097,0.0000016154,0.0000016224,0.0000016266,0.0000016278, +0.0000016285,0.0000016269,0.0000016249,0.0000016208,0.0000016147, +0.0000016064,0.0000015982,0.0000015945,0.0000015973,0.0000016149, +0.0000016537,0.0000016965,0.0000017131,0.0000017083,0.0000016853, +0.0000016544,0.0000016539,0.0000016819,0.0000016935,0.0000016934, +0.0000016781,0.0000016248,0.0000015872,0.0000015640,0.0000015394, +0.0000015498,0.0000015677,0.0000015789,0.0000016121,0.0000016484, +0.0000016637,0.0000016787,0.0000017020,0.0000017203,0.0000017296, +0.0000017333,0.0000017345,0.0000017339,0.0000017310,0.0000017295, +0.0000017267,0.0000017188,0.0000017014,0.0000016775,0.0000016571, +0.0000016488,0.0000016439,0.0000016335,0.0000016260,0.0000016276, +0.0000016504,0.0000016699,0.0000016751,0.0000016791,0.0000016799, +0.0000016789,0.0000016856,0.0000016989,0.0000017015,0.0000017042, +0.0000017011,0.0000016980,0.0000017057,0.0000017173,0.0000017076, +0.0000016663,0.0000016236,0.0000016035,0.0000016002,0.0000016033, +0.0000016064,0.0000016081,0.0000016075,0.0000016050,0.0000016005, +0.0000015941,0.0000015886,0.0000015895,0.0000015973,0.0000016209, +0.0000016617,0.0000017000,0.0000017123,0.0000017082,0.0000016863, +0.0000016552,0.0000016529,0.0000016811,0.0000016941,0.0000016938, +0.0000016819,0.0000016329,0.0000015889,0.0000015694,0.0000015487, +0.0000015506,0.0000015642,0.0000015725,0.0000015970,0.0000016343, +0.0000016554,0.0000016644,0.0000016771,0.0000016920,0.0000017044, +0.0000017117,0.0000017124,0.0000017085,0.0000017016,0.0000016907, +0.0000016760,0.0000016600,0.0000016494,0.0000016464,0.0000016416, +0.0000016313,0.0000016250,0.0000016260,0.0000016445,0.0000016684, +0.0000016755,0.0000016790,0.0000016813,0.0000016791,0.0000016813, +0.0000016920,0.0000016920,0.0000016982,0.0000017006,0.0000016993, +0.0000017028,0.0000017149,0.0000017171,0.0000016912,0.0000016483, +0.0000016136,0.0000015958,0.0000015913,0.0000015894,0.0000015874, +0.0000015856,0.0000015840,0.0000015846,0.0000015890,0.0000016035, +0.0000016336,0.0000016736,0.0000017052,0.0000017140,0.0000017084, +0.0000016869,0.0000016554,0.0000016513,0.0000016797,0.0000016942, +0.0000016935,0.0000016847,0.0000016408,0.0000015920,0.0000015729, +0.0000015557,0.0000015518,0.0000015605,0.0000015679,0.0000015849, +0.0000016179,0.0000016439,0.0000016541,0.0000016589,0.0000016637, +0.0000016671,0.0000016677,0.0000016650,0.0000016606,0.0000016541, +0.0000016474,0.0000016441,0.0000016425,0.0000016367,0.0000016279, +0.0000016234,0.0000016244,0.0000016382,0.0000016648,0.0000016756, +0.0000016783,0.0000016819,0.0000016806,0.0000016793,0.0000016840, +0.0000016819,0.0000016885,0.0000016960,0.0000016990,0.0000017008, +0.0000017097,0.0000017185,0.0000017124,0.0000016840,0.0000016470, +0.0000016181,0.0000016033,0.0000015958,0.0000015927,0.0000015952, +0.0000016054,0.0000016259,0.0000016569,0.0000016915,0.0000017111, +0.0000017136,0.0000017075,0.0000016860,0.0000016551,0.0000016501, +0.0000016783,0.0000016944,0.0000016926,0.0000016857,0.0000016486, +0.0000015967,0.0000015752,0.0000015621,0.0000015537,0.0000015568, +0.0000015637,0.0000015761,0.0000015993,0.0000016244,0.0000016392, +0.0000016449,0.0000016460,0.0000016454,0.0000016441,0.0000016422, +0.0000016399,0.0000016378,0.0000016351,0.0000016296,0.0000016237, +0.0000016213,0.0000016217,0.0000016322,0.0000016592,0.0000016749, +0.0000016772,0.0000016811,0.0000016823,0.0000016798,0.0000016788, +0.0000016760,0.0000016789,0.0000016878,0.0000016956,0.0000016991, +0.0000017048,0.0000017145,0.0000017191,0.0000017125,0.0000016915, +0.0000016692,0.0000016552,0.0000016506,0.0000016561,0.0000016704, +0.0000016895,0.0000017081,0.0000017155,0.0000017146,0.0000017057, +0.0000016844,0.0000016550,0.0000016500,0.0000016774,0.0000016945, +0.0000016917,0.0000016855,0.0000016560,0.0000016033,0.0000015776, +0.0000015680,0.0000015572,0.0000015550,0.0000015607,0.0000015702, +0.0000015837,0.0000016014,0.0000016160,0.0000016247,0.0000016282, +0.0000016284,0.0000016270,0.0000016256,0.0000016235,0.0000016210, +0.0000016194,0.0000016191,0.0000016193,0.0000016268,0.0000016521, +0.0000016734,0.0000016764,0.0000016790,0.0000016831,0.0000016819, +0.0000016781,0.0000016752,0.0000016726,0.0000016780,0.0000016879, +0.0000016954,0.0000017010,0.0000017082,0.0000017161,0.0000017200, +0.0000017188,0.0000017100,0.0000017066,0.0000017095,0.0000017142, +0.0000017140,0.0000017160,0.0000017119,0.0000017020,0.0000016807, +0.0000016542,0.0000016509,0.0000016772,0.0000016940,0.0000016908, +0.0000016849,0.0000016632,0.0000016128,0.0000015812,0.0000015721, +0.0000015619,0.0000015569,0.0000015615,0.0000015691,0.0000015766, +0.0000015856,0.0000015939,0.0000015997,0.0000016031,0.0000016060, +0.0000016094,0.0000016124,0.0000016152,0.0000016163,0.0000016163, +0.0000016217,0.0000016438,0.0000016701,0.0000016766,0.0000016771, +0.0000016822,0.0000016844,0.0000016810,0.0000016788,0.0000016712, +0.0000016709,0.0000016774,0.0000016874,0.0000016964,0.0000017028, +0.0000017087,0.0000017141,0.0000017165,0.0000017156,0.0000017148, +0.0000017145,0.0000017117,0.0000017063,0.0000016951,0.0000016741, +0.0000016507,0.0000016500,0.0000016765,0.0000016935,0.0000016901, +0.0000016839,0.0000016684,0.0000016245,0.0000015871,0.0000015750, +0.0000015682,0.0000015643,0.0000015667,0.0000015731,0.0000015792, +0.0000015846,0.0000015890,0.0000015943,0.0000016001,0.0000016054, +0.0000016103,0.0000016123,0.0000016122,0.0000016161,0.0000016358, +0.0000016647,0.0000016770,0.0000016770,0.0000016801,0.0000016854, +0.0000016851,0.0000016846,0.0000016750,0.0000016686,0.0000016679, +0.0000016742,0.0000016856,0.0000016951,0.0000017007,0.0000017044, +0.0000017065,0.0000017062,0.0000017041,0.0000016976,0.0000016843, +0.0000016645,0.0000016493,0.0000016527,0.0000016772,0.0000016938, +0.0000016900,0.0000016827,0.0000016713,0.0000016376,0.0000015966, +0.0000015783,0.0000015736,0.0000015726,0.0000015745,0.0000015793, +0.0000015854,0.0000015916,0.0000015972,0.0000016020,0.0000016050, +0.0000016069,0.0000016076,0.0000016115,0.0000016295,0.0000016584, +0.0000016768,0.0000016774,0.0000016782,0.0000016841,0.0000016877, +0.0000016892,0.0000016825,0.0000016712,0.0000016629,0.0000016612, +0.0000016672,0.0000016755,0.0000016821,0.0000016843,0.0000016827, +0.0000016779,0.0000016669,0.0000016527,0.0000016460,0.0000016551, +0.0000016785,0.0000016933,0.0000016899,0.0000016816,0.0000016737, +0.0000016501,0.0000016107,0.0000015853,0.0000015772,0.0000015769, +0.0000015790,0.0000015842,0.0000015903,0.0000015956,0.0000015990, +0.0000016002,0.0000016015,0.0000016071,0.0000016244,0.0000016522, +0.0000016741,0.0000016781,0.0000016773,0.0000016812,0.0000016876, +0.0000016901,0.0000016887,0.0000016799,0.0000016678,0.0000016587, +0.0000016533,0.0000016510,0.0000016528,0.0000016502,0.0000016452, +0.0000016440,0.0000016474,0.0000016619,0.0000016825,0.0000016929, +0.0000016883,0.0000016803,0.0000016751,0.0000016604,0.0000016282, +0.0000015990,0.0000015831,0.0000015796,0.0000015826,0.0000015860, +0.0000015902,0.0000015935,0.0000015978,0.0000016043,0.0000016219, +0.0000016485,0.0000016709,0.0000016781,0.0000016773,0.0000016782, +0.0000016844,0.0000016872,0.0000016910,0.0000016893,0.0000016814, +0.0000016703,0.0000016597,0.0000016538,0.0000016521,0.0000016530, +0.0000016614,0.0000016740,0.0000016881,0.0000016936,0.0000016874, +0.0000016788,0.0000016749,0.0000016681,0.0000016472,0.0000016224, +0.0000016033,0.0000015941,0.0000015931,0.0000015947,0.0000016002, +0.0000016103,0.0000016270,0.0000016494,0.0000016692,0.0000016777, +0.0000016773,0.0000016763,0.0000016800,0.0000016825,0.0000016892, +0.0000016920,0.0000016917,0.0000016889,0.0000016850,0.0000016830, +0.0000016853,0.0000016900,0.0000016899,0.0000016912,0.0000016854, +0.0000016783,0.0000016739,0.0000016723,0.0000016627,0.0000016489, +0.0000016361,0.0000016282,0.0000016271,0.0000016329,0.0000016439, +0.0000016580,0.0000016708,0.0000016763,0.0000016765,0.0000016753, +0.0000016766,0.0000016780,0.0000016830,0.0000016876,0.0000016903, +0.0000016920,0.0000016924,0.0000016919,0.0000016901,0.0000016867, +0.0000016816,0.0000016757,0.0000016733,0.0000016734,0.0000016720, +0.0000016677,0.0000016647,0.0000016645,0.0000016663,0.0000016700, +0.0000016734,0.0000016752,0.0000016753,0.0000016747,0.0000016749, +0.0000016751,0.0000016766,0.0000016782,0.0000016794,0.0000016797, +0.0000016793,0.0000016781,0.0000016763,0.0000016744,0.0000016733, +0.0000016729,0.0000016728,0.0000016729,0.0000016732,0.0000016734, +0.0000016736,0.0000016739,0.0000016739,0.0000016739,0.0000016742 +}; + +static void usage(const char* prog) +{ + printf("usage: %s packingType packingStage outfile\n", prog); + exit(1); +} +// SIMPLE +// max min avg sd skew kurt const +// 2.97473e-06 1.26532e-06 2.17382e-06 3.84169e-07 0.32796 -1.03089 0 +// +// CCSDS +// 2.8052e-06 2.6129e-06 2.61477e-06 1.36989e-08 7.77715 62.686 0 + +int main(int argc, char** argv) +{ + size_t values_len = sizeof(values)/sizeof(values[0]); // 654400; + const char* sample_filename = "gg_sfc_grib2"; // GRIB2 ?? + //const char* sample_filename = "GRIB2"; //constant field + codes_handle* h = NULL; + size_t str_len = 0; + int packing_stage; + char* packing_type; + char* outfile_name; + + if (argc != 4) usage(argv[0]); + + packing_type = argv[1]; + packing_stage = atoi(argv[2]); + outfile_name = argv[3]; + assert(packing_stage == 1 || packing_stage == 2); + + printf("Using sample_filename = %s\n", sample_filename); + h = codes_grib_handle_new_from_samples(0, sample_filename); + assert(h); + assert( 654400==values_len ); + + CODES_CHECK(codes_set_long(h, "bitsPerValue", 16), 0); + if (packing_stage == 1) { + printf("Set packingType to %s\n", packing_type); + CODES_CHECK(codes_set_string(h, "packingType", packing_type, &str_len), 0); + } + + printf("Set values\n"); + CODES_CHECK(codes_set_double_array(h, "values", values, values_len), 0); + + if (packing_stage == 2) { + printf("Set packingType to %s\n", packing_type); + CODES_CHECK(codes_set_string(h, "packingType", packing_type, &str_len), 0); //WORKS + } + + CODES_CHECK(codes_write_message(h, outfile_name, "w"), 0); + codes_handle_delete(h); + + return 0; +} From 98c687ef15beb8babebffddfcdcc7adc71c583ca Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 21 Jan 2021 21:18:59 +0000 Subject: [PATCH 249/683] CCSDS packing: add other cases --- src/grib_accessor_class_data_ccsds_packing.c | 4 -- tests/CMakeLists.txt | 1 + tests/grib_packing_order.c | 45 +++++++++-------- tests/grib_packing_order.sh | 51 ++++++++++++++++++++ 4 files changed, 76 insertions(+), 25 deletions(-) create mode 100755 tests/grib_packing_order.sh diff --git a/src/grib_accessor_class_data_ccsds_packing.c b/src/grib_accessor_class_data_ccsds_packing.c index fa013e8ed..37b59c7dc 100644 --- a/src/grib_accessor_class_data_ccsds_packing.c +++ b/src/grib_accessor_class_data_ccsds_packing.c @@ -330,7 +330,6 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) unsigned char* buf = NULL; unsigned char* encoded = NULL; size_t n_vals = 0; - //long nn = 0; long binary_scale_factor = 0; long decimal_scale_factor = 0; @@ -350,9 +349,6 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) self->dirty = 1; - //if ((err = grib_value_count(a, &nn)) != GRIB_SUCCESS) - // return err; - //n_vals = nn; n_vals = *len; if ((err = grib_get_long_internal(hand, self->bits_per_value, &bits_per_value)) != GRIB_SUCCESS) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index d3bed0f04..66f455556 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -65,6 +65,7 @@ if( HAVE_BUILD_TOOLS ) grib_calendar grib_md5 grib_cfNames + grib_packing_order filter_substr grib_uerra grib_2nd_order_numValues diff --git a/tests/grib_packing_order.c b/tests/grib_packing_order.c index 480421ab6..d501681b9 100644 --- a/tests/grib_packing_order.c +++ b/tests/grib_packing_order.c @@ -1,8 +1,8 @@ -#include -#include #include #include "eccodes.h" + +/* Values taken from an actual IFS forecast run for paramId=133 (Specific humidity) */ const double values[] = { 0.0000026822,0.0000026803,0.0000026786,0.0000026773,0.0000026768, 0.0000026771,0.0000026783,0.0000026801,0.0000026820,0.0000026840, @@ -130888,41 +130888,44 @@ const double values[] = { static void usage(const char* prog) { - printf("usage: %s packingType packingStage outfile\n", prog); + printf("Usage: %s packingType packingStage outfile\n", prog); + printf("packingStage: either packing_type_before_values or values_before_packing_type\n"); exit(1); } -// SIMPLE -// max min avg sd skew kurt const -// 2.97473e-06 1.26532e-06 2.17382e-06 3.84169e-07 0.32796 -1.03089 0 -// -// CCSDS -// 2.8052e-06 2.6129e-06 2.61477e-06 1.36989e-08 7.77715 62.686 0 + +typedef enum { + PACKING_TYPE_BEFORE_VALUES, + VALUES_BEFORE_PACKING_TYPE +} PackingStage; int main(int argc, char** argv) { - size_t values_len = sizeof(values)/sizeof(values[0]); // 654400; - const char* sample_filename = "gg_sfc_grib2"; // GRIB2 ?? - //const char* sample_filename = "GRIB2"; //constant field + size_t values_len = sizeof(values)/sizeof(values[0]); /* 654400 */ + const char* sample_filename = "gg_sfc_grib2"; codes_handle* h = NULL; size_t str_len = 0; - int packing_stage; + PackingStage packing_stage; char* packing_type; char* outfile_name; if (argc != 4) usage(argv[0]); packing_type = argv[1]; - packing_stage = atoi(argv[2]); - outfile_name = argv[3]; - assert(packing_stage == 1 || packing_stage == 2); - + if (strcmp(argv[2], "packing_type_before_values")==0) + packing_stage = PACKING_TYPE_BEFORE_VALUES; + else if (strcmp(argv[2], "values_before_packing_type")==0) + packing_stage = VALUES_BEFORE_PACKING_TYPE; + else + exit(1); + + outfile_name = argv[3]; + printf("Using sample_filename = %s\n", sample_filename); h = codes_grib_handle_new_from_samples(0, sample_filename); assert(h); - assert( 654400==values_len ); CODES_CHECK(codes_set_long(h, "bitsPerValue", 16), 0); - if (packing_stage == 1) { + if (packing_stage == PACKING_TYPE_BEFORE_VALUES) { printf("Set packingType to %s\n", packing_type); CODES_CHECK(codes_set_string(h, "packingType", packing_type, &str_len), 0); } @@ -130930,9 +130933,9 @@ int main(int argc, char** argv) printf("Set values\n"); CODES_CHECK(codes_set_double_array(h, "values", values, values_len), 0); - if (packing_stage == 2) { + if (packing_stage == VALUES_BEFORE_PACKING_TYPE) { printf("Set packingType to %s\n", packing_type); - CODES_CHECK(codes_set_string(h, "packingType", packing_type, &str_len), 0); //WORKS + CODES_CHECK(codes_set_string(h, "packingType", packing_type, &str_len), 0); } CODES_CHECK(codes_write_message(h, outfile_name, "w"), 0); diff --git a/tests/grib_packing_order.sh b/tests/grib_packing_order.sh new file mode 100755 index 000000000..0cde5130d --- /dev/null +++ b/tests/grib_packing_order.sh @@ -0,0 +1,51 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +REDIRECT=/dev/null +label="grib_packing_order" +temp=${label}".grib.tmp" +temp_simple1=${label}".simple1.tmp" +temp_simple2=${label}".simple2.tmp" +temp_ccsds1=${label}".ccsds1.tmp" +temp_ccsds2=${label}".ccsds2.tmp" +temp_jpeg1=${label}".jpeg1.tmp" +temp_jpeg2=${label}".jpeg2.tmp" + +# Simple Packing +$EXEC ${test_dir}/grib_packing_order grid_simple packing_type_before_values $temp_simple1 +$EXEC ${test_dir}/grib_packing_order grid_simple values_before_packing_type $temp_simple2 +grib_check_key_equals $temp_simple1 packingType grid_simple +${tools_dir}/grib_compare $temp_simple1 $temp_simple2 + +if [ $HAVE_AEC -eq 1 ]; then + # CCSDS (AEC) Packing + $EXEC ${test_dir}/grib_packing_order grid_ccsds packing_type_before_values $temp_ccsds1 + $EXEC ${test_dir}/grib_packing_order grid_ccsds values_before_packing_type $temp_ccsds2 + grib_check_key_equals $temp_ccsds1 packingType grid_ccsds + ${tools_dir}/grib_compare $temp_ccsds1 $temp_ccsds2 + + ${tools_dir}/grib_compare -c data:n $temp_simple1 $temp_ccsds1 +fi + +if [ $HAVE_JPEG -eq 1 ]; then + # JPEG Packing + $EXEC ${test_dir}/grib_packing_order grid_jpeg packing_type_before_values $temp_jpeg1 + $EXEC ${test_dir}/grib_packing_order grid_jpeg values_before_packing_type $temp_jpeg2 + grib_check_key_equals $temp_jpeg1 packingType grid_jpeg + ${tools_dir}/grib_compare $temp_jpeg1 $temp_jpeg2 + + ${tools_dir}/grib_compare -c data:n $temp_simple1 $temp_jpeg1 +fi + + +# Clean up +rm -f $temp_simple1 $temp_simple2 $temp_ccsds1 $temp_ccsds2 $temp_jpeg1 $temp_jpeg2 From 564666e3ad45142838529de9f539d4da4f84144f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 22 Jan 2021 15:05:22 +0000 Subject: [PATCH 250/683] Testing: reduce the number of values and file size --- tests/grib_packing_order.c | 106129 +--------------------------------- 1 file changed, 6 insertions(+), 106123 deletions(-) diff --git a/tests/grib_packing_order.c b/tests/grib_packing_order.c index d501681b9..ea2acf637 100644 --- a/tests/grib_packing_order.c +++ b/tests/grib_packing_order.c @@ -24766,106124 +24766,7 @@ const double values[] = { 0.0000027048,0.0000027057,0.0000027090,0.0000027173,0.0000027302, 0.0000027467,0.0000027646,0.0000027774,0.0000027795,0.0000027785, 0.0000027886,0.0000028067,0.0000028160,0.0000028155,0.0000028093, -0.0000028036,0.0000028071,0.0000028152,0.0000028178,0.0000028148, -0.0000028087,0.0000028032,0.0000027967,0.0000027883,0.0000027802, -0.0000027760,0.0000027761,0.0000027809,0.0000027892,0.0000027980, -0.0000028052,0.0000028103,0.0000028131,0.0000028134,0.0000028120, -0.0000028061,0.0000027969,0.0000027870,0.0000027779,0.0000027698, -0.0000027631,0.0000027591,0.0000027567,0.0000027543,0.0000027505, -0.0000027445,0.0000027377,0.0000027303,0.0000027182,0.0000026963, -0.0000026667,0.0000026438,0.0000026369,0.0000026391,0.0000026389, -0.0000026352,0.0000026276,0.0000026176,0.0000026084,0.0000025976, -0.0000025890,0.0000025823,0.0000025771,0.0000025750,0.0000025797, -0.0000025906,0.0000026062,0.0000026240,0.0000026424,0.0000026598, -0.0000026755,0.0000026887,0.0000026999,0.0000027096,0.0000027170, -0.0000027216,0.0000027242,0.0000027255,0.0000027264,0.0000027284, -0.0000027313,0.0000027323,0.0000027331,0.0000027331,0.0000027316, -0.0000027298,0.0000027293,0.0000027299,0.0000027301,0.0000027281, -0.0000027233,0.0000027168,0.0000027083,0.0000027018,0.0000027003, -0.0000027014,0.0000027021,0.0000027021,0.0000027008,0.0000026975, -0.0000026927,0.0000026861,0.0000026794,0.0000026744,0.0000026694, -0.0000026649,0.0000026620,0.0000026594,0.0000026574,0.0000026566, -0.0000026586,0.0000026632,0.0000026686,0.0000026735,0.0000026771, -0.0000026787,0.0000026794,0.0000026794,0.0000026785,0.0000026775, -0.0000026767,0.0000026780,0.0000026806,0.0000026829,0.0000026848, -0.0000026855,0.0000026834,0.0000026790,0.0000026760,0.0000026774, -0.0000026814,0.0000026842,0.0000026832,0.0000026787,0.0000026782, -0.0000026825,0.0000026820,0.0000026853,0.0000026942,0.0000026931, -0.0000026909,0.0000026808,0.0000026336,0.0000025911,0.0000025856, -0.0000025955,0.0000026114,0.0000026400,0.0000026735,0.0000026997, -0.0000027132,0.0000027151,0.0000027149,0.0000027195,0.0000027292, -0.0000027408,0.0000027487,0.0000027497,0.0000027458,0.0000027421, -0.0000027443,0.0000027542,0.0000027661,0.0000027751,0.0000027791, -0.0000027812,0.0000027853,0.0000027897,0.0000027927,0.0000027973, -0.0000028016,0.0000027999,0.0000027964,0.0000027971,0.0000027954, -0.0000027907,0.0000027886,0.0000027886,0.0000027892,0.0000027944, -0.0000028077,0.0000028203,0.0000028247,0.0000028231,0.0000028097, -0.0000027922,0.0000027893,0.0000028008,0.0000028010,0.0000027941, -0.0000027946,0.0000027932,0.0000027930,0.0000028037,0.0000028143, -0.0000028182,0.0000028190,0.0000028179,0.0000028155,0.0000028135, -0.0000028120,0.0000028099,0.0000028063,0.0000027997,0.0000027891, -0.0000027755,0.0000027623,0.0000027543,0.0000027522,0.0000027537, -0.0000027563,0.0000027586,0.0000027604,0.0000027602,0.0000027570, -0.0000027508,0.0000027427,0.0000027289,0.0000027090,0.0000026932, -0.0000026884,0.0000026898,0.0000026959,0.0000027059,0.0000027178, -0.0000027310,0.0000027401,0.0000027409,0.0000027375,0.0000027354, -0.0000027360,0.0000027417,0.0000027514,0.0000027556,0.0000027542, -0.0000027525,0.0000027510,0.0000027445,0.0000027354,0.0000027299, -0.0000027247,0.0000027136,0.0000026997,0.0000026873,0.0000026738, -0.0000026560,0.0000026368,0.0000026216,0.0000026131,0.0000026101, -0.0000026093,0.0000026061,0.0000025989,0.0000025917,0.0000025883, -0.0000025875,0.0000025852,0.0000025794,0.0000025708,0.0000025611, -0.0000025516,0.0000025429,0.0000025372,0.0000025354,0.0000025354, -0.0000025359,0.0000025370,0.0000025400,0.0000025451,0.0000025502, -0.0000025535,0.0000025535,0.0000025499,0.0000025440,0.0000025370, -0.0000025294,0.0000025242,0.0000025293,0.0000025476,0.0000025721, -0.0000025915,0.0000026010,0.0000026040,0.0000026065,0.0000026117, -0.0000026177,0.0000026209,0.0000026200,0.0000026143,0.0000026072, -0.0000026025,0.0000026025,0.0000026069,0.0000026139,0.0000026209, -0.0000026264,0.0000026300,0.0000026318,0.0000026324,0.0000026329, -0.0000026343,0.0000026362,0.0000026385,0.0000026420,0.0000026468, -0.0000026516,0.0000026549,0.0000026564,0.0000026569,0.0000026579, -0.0000026609,0.0000026667,0.0000026747,0.0000026830,0.0000026912, -0.0000027003,0.0000027086,0.0000027137,0.0000027152,0.0000027141, -0.0000027104,0.0000027048,0.0000026988,0.0000026961,0.0000026972, -0.0000027000,0.0000027017,0.0000027018,0.0000027026,0.0000027073, -0.0000027156,0.0000027233,0.0000027273,0.0000027277,0.0000027286, -0.0000027336,0.0000027386,0.0000027394,0.0000027391,0.0000027431, -0.0000027524,0.0000027623,0.0000027683,0.0000027694,0.0000027687, -0.0000027683,0.0000027707,0.0000027762,0.0000027824,0.0000027883, -0.0000027945,0.0000028001,0.0000028043,0.0000028048,0.0000028004, -0.0000027918,0.0000027830,0.0000027767,0.0000027725,0.0000027687, -0.0000027646,0.0000027614,0.0000027590,0.0000027577,0.0000027586, -0.0000027634,0.0000027701,0.0000027751,0.0000027756,0.0000027738, -0.0000027698,0.0000027666,0.0000027634,0.0000027597,0.0000027582, -0.0000027600,0.0000027642,0.0000027678,0.0000027689,0.0000027682, -0.0000027665,0.0000027658,0.0000027684,0.0000027752,0.0000027825, -0.0000027863,0.0000027857,0.0000027815,0.0000027780,0.0000027788, -0.0000027791,0.0000027697,0.0000027505,0.0000027323,0.0000027216, -0.0000027136,0.0000027035,0.0000026925,0.0000026838,0.0000026789, -0.0000026764,0.0000026739,0.0000026721,0.0000026737,0.0000026768, -0.0000026776,0.0000026746,0.0000026700,0.0000026666,0.0000026629, -0.0000026549,0.0000026427,0.0000026337,0.0000026322,0.0000026354, -0.0000026379,0.0000026362,0.0000026284,0.0000026172,0.0000026087, -0.0000026059,0.0000026059,0.0000026069,0.0000026098,0.0000026148, -0.0000026211,0.0000026251,0.0000026253,0.0000026219,0.0000026169, -0.0000026123,0.0000026089,0.0000026066,0.0000026038,0.0000025994, -0.0000025945,0.0000025907,0.0000025873,0.0000025827,0.0000025767, -0.0000025725,0.0000025708,0.0000025682,0.0000025640,0.0000025622, -0.0000025607,0.0000025514,0.0000025333,0.0000025139,0.0000025012, -0.0000024962,0.0000024957,0.0000024986,0.0000025049,0.0000025101, -0.0000025120,0.0000025102,0.0000025020,0.0000024884,0.0000024715, -0.0000024509,0.0000024325,0.0000024310,0.0000024664,0.0000025275, -0.0000025628,0.0000025793,0.0000026231,0.0000026806,0.0000027261, -0.0000027595,0.0000027689,0.0000027622,0.0000027455,0.0000027276, -0.0000027192,0.0000027185,0.0000027230,0.0000027308,0.0000027371, -0.0000027410,0.0000027441,0.0000027462,0.0000027474,0.0000027473, -0.0000027456,0.0000027431,0.0000027413,0.0000027408,0.0000027393, -0.0000027351,0.0000027297,0.0000027260,0.0000027214,0.0000027103, -0.0000027032,0.0000027031,0.0000026985,0.0000026942,0.0000026942, -0.0000026926,0.0000026873,0.0000026853,0.0000026883,0.0000026934, -0.0000026963,0.0000026987,0.0000027007,0.0000027015,0.0000027019, -0.0000027037,0.0000027052,0.0000027053,0.0000027051,0.0000027049, -0.0000027055,0.0000027076,0.0000027088,0.0000027090,0.0000027095, -0.0000027092,0.0000027028,0.0000026941,0.0000026875,0.0000026885, -0.0000026975,0.0000027029,0.0000027021,0.0000027046,0.0000027081, -0.0000027040,0.0000026908,0.0000026799,0.0000026760,0.0000026754, -0.0000026759,0.0000026763,0.0000026744,0.0000026705,0.0000026698, -0.0000026722,0.0000026757,0.0000026785,0.0000026786,0.0000026744, -0.0000026681,0.0000026642,0.0000026649,0.0000026638,0.0000026583, -0.0000026505,0.0000026423,0.0000026318,0.0000026145,0.0000025865, -0.0000025503,0.0000025140,0.0000024828,0.0000024597,0.0000024472, -0.0000024443,0.0000024433,0.0000024416,0.0000024392,0.0000024377, -0.0000024380,0.0000024399,0.0000024422,0.0000024441,0.0000024457, -0.0000024466,0.0000024456,0.0000024440,0.0000024471,0.0000024584, -0.0000024711,0.0000024785,0.0000024797,0.0000024765,0.0000024700, -0.0000024622,0.0000024556,0.0000024535,0.0000024530,0.0000024414, -0.0000024211,0.0000024099,0.0000024098,0.0000024124,0.0000024130, -0.0000024099,0.0000024032,0.0000023956,0.0000023892,0.0000023848, -0.0000023831,0.0000023836,0.0000023858,0.0000023878,0.0000023885, -0.0000023886,0.0000023876,0.0000023850,0.0000023809,0.0000023758, -0.0000023709,0.0000023655,0.0000023555,0.0000023458,0.0000023511, -0.0000023728,0.0000023896,0.0000023981,0.0000024111,0.0000024258, -0.0000024327,0.0000024371,0.0000024465,0.0000024554,0.0000024762, -0.0000025271,0.0000025755,0.0000025975,0.0000026100,0.0000026169, -0.0000026142,0.0000026039,0.0000025836,0.0000025711,0.0000025763, -0.0000025596,0.0000025306,0.0000025497,0.0000026286,0.0000026952, -0.0000027422,0.0000027707,0.0000027729,0.0000027697,0.0000027641, -0.0000027680,0.0000027671,0.0000027553,0.0000027512,0.0000027574, -0.0000027656,0.0000027745,0.0000027795,0.0000027796,0.0000027783, -0.0000027776,0.0000027769,0.0000027751,0.0000027726,0.0000027689, -0.0000027641,0.0000027582,0.0000027516,0.0000027447,0.0000027389, -0.0000027348,0.0000027312,0.0000027286,0.0000027286,0.0000027298, -0.0000027296,0.0000027287,0.0000027267,0.0000027248,0.0000027237, -0.0000027223,0.0000027204,0.0000027186,0.0000027170,0.0000027144, -0.0000027090,0.0000027049,0.0000027042,0.0000027047,0.0000027040, -0.0000027014,0.0000026959,0.0000026900,0.0000026857,0.0000026834, -0.0000026812,0.0000026802,0.0000026794,0.0000026751,0.0000026719, -0.0000026746,0.0000026787,0.0000026798,0.0000026797,0.0000026822, -0.0000026853,0.0000026801,0.0000026700,0.0000026663,0.0000026676, -0.0000026658,0.0000026572,0.0000026416,0.0000026133,0.0000025913, -0.0000025823,0.0000025700,0.0000025567,0.0000025490,0.0000025395, -0.0000025322,0.0000025426,0.0000025519,0.0000025471,0.0000025407, -0.0000025374,0.0000025355,0.0000025340,0.0000025319,0.0000025299, -0.0000025301,0.0000025331,0.0000025377,0.0000025429,0.0000025467, -0.0000025496,0.0000025500,0.0000025331,0.0000024952,0.0000024647, -0.0000024533,0.0000024424,0.0000024321,0.0000024308,0.0000024310, -0.0000024299,0.0000024324,0.0000024455,0.0000024630,0.0000024719, -0.0000024756,0.0000024772,0.0000024763,0.0000024751,0.0000024734, -0.0000024702,0.0000024695,0.0000024778,0.0000024987,0.0000025250, -0.0000025546,0.0000025792,0.0000025900,0.0000025913,0.0000025892, -0.0000025856,0.0000025832,0.0000025845,0.0000025882,0.0000025878, -0.0000025782,0.0000025663,0.0000025609,0.0000025526,0.0000025468, -0.0000025568,0.0000025707,0.0000025749,0.0000025758,0.0000025718, -0.0000025639,0.0000025589,0.0000025574,0.0000025556,0.0000025524, -0.0000025485,0.0000025449,0.0000025424,0.0000025395,0.0000025368, -0.0000025359,0.0000025368,0.0000025387,0.0000025397,0.0000025390, -0.0000025337,0.0000025182,0.0000024990,0.0000024933,0.0000025060, -0.0000025219,0.0000025257,0.0000025270,0.0000025300,0.0000025226, -0.0000025062,0.0000025047,0.0000025145,0.0000025158,0.0000025046, -0.0000024945,0.0000024927,0.0000024952,0.0000024999,0.0000025002, -0.0000024996,0.0000025177,0.0000025620,0.0000026039,0.0000026199, -0.0000026195,0.0000026179,0.0000026102,0.0000025970,0.0000025833, -0.0000025709,0.0000025607,0.0000025501,0.0000025448,0.0000025511, -0.0000025660,0.0000025809,0.0000025900,0.0000025932,0.0000025921, -0.0000025899,0.0000025911,0.0000025975,0.0000026076,0.0000026156, -0.0000026222,0.0000026271,0.0000026308,0.0000026329,0.0000026336, -0.0000026336,0.0000026328,0.0000026319,0.0000026308,0.0000026294, -0.0000026278,0.0000026260,0.0000026244,0.0000026223,0.0000026197, -0.0000026167,0.0000026140,0.0000026122,0.0000026112,0.0000026105, -0.0000026098,0.0000026094,0.0000026103,0.0000026129,0.0000026166, -0.0000026210,0.0000026253,0.0000026287,0.0000026297,0.0000026288, -0.0000026253,0.0000026223,0.0000026214,0.0000026202,0.0000026188, -0.0000026175,0.0000026200,0.0000026289,0.0000026413,0.0000026516, -0.0000026564,0.0000026553,0.0000026492,0.0000026444,0.0000026441, -0.0000026453,0.0000026434,0.0000026400,0.0000026411,0.0000026466, -0.0000026543,0.0000026631,0.0000026719,0.0000026818,0.0000026945, -0.0000027081,0.0000027197,0.0000027277,0.0000027326,0.0000027360, -0.0000027379,0.0000027378,0.0000027359,0.0000027322,0.0000027254, -0.0000027166,0.0000027094,0.0000027076,0.0000027138,0.0000027273, -0.0000027432,0.0000027543,0.0000027612,0.0000027637,0.0000027626, -0.0000027570,0.0000027467,0.0000027324,0.0000027198,0.0000027139, -0.0000027132,0.0000027106,0.0000027005,0.0000026826,0.0000026602, -0.0000026380,0.0000026208,0.0000026130,0.0000026128,0.0000026145, -0.0000026136,0.0000026101,0.0000026071,0.0000026044,0.0000026018, -0.0000026004,0.0000026004,0.0000026015,0.0000026045,0.0000026075, -0.0000026079,0.0000026051,0.0000025991,0.0000025908,0.0000025824, -0.0000025755,0.0000025704,0.0000025658,0.0000025616,0.0000025588, -0.0000025589,0.0000025620,0.0000025672,0.0000025738,0.0000025812, -0.0000025871,0.0000025910,0.0000025953,0.0000026019,0.0000026105, -0.0000026218,0.0000026355,0.0000026495,0.0000026629,0.0000026766, -0.0000026888,0.0000026964,0.0000026991,0.0000026992,0.0000027003, -0.0000027057,0.0000027179,0.0000027350,0.0000027512,0.0000027630, -0.0000027707,0.0000027762,0.0000027799,0.0000027827,0.0000027851, -0.0000027866,0.0000027858,0.0000027829,0.0000027801,0.0000027787, -0.0000027777,0.0000027748,0.0000027679,0.0000027579,0.0000027491, -0.0000027440,0.0000027409,0.0000027371,0.0000027340,0.0000027334, -0.0000027350,0.0000027381,0.0000027417,0.0000027438,0.0000027431, -0.0000027386,0.0000027307,0.0000027207,0.0000027104,0.0000027036, -0.0000027020,0.0000027031,0.0000027055,0.0000027077,0.0000027098, -0.0000027143,0.0000027225,0.0000027329,0.0000027458,0.0000027620, -0.0000027746,0.0000027767,0.0000027768,0.0000027896,0.0000028088, -0.0000028150,0.0000028132,0.0000028072,0.0000028043,0.0000028079, -0.0000028140,0.0000028152,0.0000028107,0.0000028053,0.0000028009, -0.0000027945,0.0000027868,0.0000027819,0.0000027817,0.0000027848, -0.0000027890,0.0000027938,0.0000027980,0.0000028014,0.0000028054, -0.0000028092,0.0000028114,0.0000028106,0.0000028056,0.0000027971, -0.0000027881,0.0000027797,0.0000027719,0.0000027650,0.0000027593, -0.0000027544,0.0000027502,0.0000027467,0.0000027430,0.0000027383, -0.0000027321,0.0000027234,0.0000027087,0.0000026856,0.0000026620, -0.0000026468,0.0000026404,0.0000026384,0.0000026350,0.0000026286, -0.0000026190,0.0000026075,0.0000025942,0.0000025823,0.0000025728, -0.0000025641,0.0000025548,0.0000025530,0.0000025570,0.0000025667, -0.0000025807,0.0000025961,0.0000026109,0.0000026242,0.0000026363, -0.0000026483,0.0000026609,0.0000026733,0.0000026839,0.0000026922, -0.0000026984,0.0000027033,0.0000027092,0.0000027151,0.0000027194, -0.0000027228,0.0000027246,0.0000027246,0.0000027239,0.0000027238, -0.0000027240,0.0000027235,0.0000027211,0.0000027162,0.0000027092, -0.0000027021,0.0000026984,0.0000026979,0.0000026996,0.0000027015, -0.0000027020,0.0000027013,0.0000026983,0.0000026947,0.0000026888, -0.0000026833,0.0000026785,0.0000026731,0.0000026686,0.0000026658, -0.0000026629,0.0000026602,0.0000026596,0.0000026617,0.0000026651, -0.0000026688,0.0000026724,0.0000026745,0.0000026749,0.0000026753, -0.0000026754,0.0000026741,0.0000026718,0.0000026698,0.0000026705, -0.0000026737,0.0000026780,0.0000026821,0.0000026840,0.0000026825, -0.0000026796,0.0000026798,0.0000026829,0.0000026857,0.0000026863, -0.0000026834,0.0000026776,0.0000026744,0.0000026785,0.0000026797, -0.0000026772,0.0000026858,0.0000026919,0.0000026907,0.0000026892, -0.0000026740,0.0000026223,0.0000025841,0.0000025828,0.0000025967, -0.0000026125,0.0000026372,0.0000026674,0.0000026925,0.0000027063, -0.0000027093,0.0000027070,0.0000027050,0.0000027083,0.0000027175, -0.0000027289,0.0000027365,0.0000027374,0.0000027384,0.0000027457, -0.0000027571,0.0000027685,0.0000027744,0.0000027745,0.0000027759, -0.0000027817,0.0000027876,0.0000027936,0.0000028003,0.0000028030, -0.0000028003,0.0000027987,0.0000027973,0.0000027920,0.0000027897, -0.0000027910,0.0000027916,0.0000027936,0.0000028029,0.0000028140, -0.0000028186,0.0000028194,0.0000028122,0.0000027956,0.0000027837, -0.0000027904,0.0000028006,0.0000027975,0.0000027941,0.0000027946, -0.0000027923,0.0000027942,0.0000028046,0.0000028134,0.0000028168, -0.0000028165,0.0000028133,0.0000028079,0.0000028032,0.0000027993, -0.0000027943,0.0000027865,0.0000027756,0.0000027644,0.0000027559, -0.0000027518,0.0000027516,0.0000027539,0.0000027568,0.0000027593, -0.0000027610,0.0000027611,0.0000027570,0.0000027486,0.0000027389, -0.0000027271,0.0000027106,0.0000026946,0.0000026872,0.0000026873, -0.0000026925,0.0000027027,0.0000027150,0.0000027286,0.0000027408, -0.0000027446,0.0000027433,0.0000027422,0.0000027420,0.0000027436, -0.0000027498,0.0000027551,0.0000027534,0.0000027487,0.0000027452, -0.0000027393,0.0000027303,0.0000027240,0.0000027204,0.0000027128, -0.0000027002,0.0000026872,0.0000026740,0.0000026579,0.0000026404, -0.0000026261,0.0000026174,0.0000026143,0.0000026134,0.0000026101, -0.0000026035,0.0000025982,0.0000025963,0.0000025947,0.0000025894, -0.0000025788,0.0000025648,0.0000025520,0.0000025429,0.0000025360, -0.0000025309,0.0000025283,0.0000025276,0.0000025273,0.0000025274, -0.0000025286,0.0000025313,0.0000025350,0.0000025389,0.0000025425, -0.0000025429,0.0000025397,0.0000025349,0.0000025305,0.0000025255, -0.0000025195,0.0000025157,0.0000025229,0.0000025417,0.0000025650, -0.0000025832,0.0000025931,0.0000025975,0.0000026012,0.0000026067, -0.0000026118,0.0000026136,0.0000026109,0.0000026050,0.0000026003, -0.0000025995,0.0000026021,0.0000026069,0.0000026126,0.0000026184, -0.0000026237,0.0000026278,0.0000026305,0.0000026324,0.0000026342, -0.0000026349,0.0000026347,0.0000026356,0.0000026388,0.0000026427, -0.0000026451,0.0000026462,0.0000026470,0.0000026488,0.0000026521, -0.0000026575,0.0000026652,0.0000026728,0.0000026785,0.0000026846, -0.0000026938,0.0000027048,0.0000027132,0.0000027164,0.0000027162, -0.0000027141,0.0000027102,0.0000027061,0.0000027028,0.0000027012, -0.0000027010,0.0000027012,0.0000027026,0.0000027059,0.0000027116, -0.0000027192,0.0000027259,0.0000027282,0.0000027264,0.0000027247, -0.0000027274,0.0000027333,0.0000027378,0.0000027409,0.0000027468, -0.0000027567,0.0000027665,0.0000027707,0.0000027692,0.0000027656, -0.0000027645,0.0000027680,0.0000027755,0.0000027846,0.0000027935, -0.0000028005,0.0000028055,0.0000028085,0.0000028093,0.0000028060, -0.0000027984,0.0000027890,0.0000027809,0.0000027753,0.0000027715, -0.0000027685,0.0000027657,0.0000027630,0.0000027622,0.0000027652, -0.0000027703,0.0000027735,0.0000027746,0.0000027737,0.0000027703, -0.0000027667,0.0000027645,0.0000027612,0.0000027580,0.0000027573, -0.0000027603,0.0000027651,0.0000027677,0.0000027677,0.0000027666, -0.0000027660,0.0000027682,0.0000027737,0.0000027804,0.0000027847, -0.0000027848,0.0000027816,0.0000027787,0.0000027795,0.0000027815, -0.0000027775,0.0000027612,0.0000027410,0.0000027283,0.0000027209, -0.0000027108,0.0000026994,0.0000026904,0.0000026852,0.0000026823, -0.0000026800,0.0000026788,0.0000026803,0.0000026830,0.0000026831, -0.0000026798,0.0000026760,0.0000026738,0.0000026713,0.0000026635, -0.0000026497,0.0000026385,0.0000026357,0.0000026376,0.0000026386, -0.0000026344,0.0000026235,0.0000026108,0.0000026027,0.0000026004, -0.0000026003,0.0000026003,0.0000026016,0.0000026063,0.0000026146, -0.0000026209,0.0000026221,0.0000026190,0.0000026138,0.0000026085, -0.0000026045,0.0000026020,0.0000025996,0.0000025964,0.0000025931, -0.0000025891,0.0000025832,0.0000025762,0.0000025707,0.0000025672, -0.0000025646,0.0000025611,0.0000025592,0.0000025573,0.0000025489, -0.0000025316,0.0000025124,0.0000024996,0.0000024943,0.0000024918, -0.0000024893,0.0000024896,0.0000024955,0.0000025031,0.0000025072, -0.0000025056,0.0000024971,0.0000024838,0.0000024702,0.0000024547, -0.0000024341,0.0000024246,0.0000024455,0.0000025056,0.0000025530, -0.0000025712,0.0000026075,0.0000026666,0.0000027165,0.0000027535, -0.0000027691,0.0000027654,0.0000027509,0.0000027324,0.0000027208, -0.0000027188,0.0000027209,0.0000027269,0.0000027334,0.0000027390, -0.0000027448,0.0000027492,0.0000027517,0.0000027521,0.0000027510, -0.0000027487,0.0000027469,0.0000027470,0.0000027469,0.0000027429, -0.0000027365,0.0000027300,0.0000027251,0.0000027152,0.0000027028, -0.0000027002,0.0000026991,0.0000026949,0.0000026948,0.0000026953, -0.0000026918,0.0000026864,0.0000026859,0.0000026893,0.0000026927, -0.0000026949,0.0000026957,0.0000026950,0.0000026938,0.0000026950, -0.0000026964,0.0000026961,0.0000026959,0.0000026971,0.0000027007, -0.0000027043,0.0000027052,0.0000027038,0.0000027039,0.0000027037, -0.0000026992,0.0000026927,0.0000026868,0.0000026875,0.0000026959, -0.0000027018,0.0000027002,0.0000027011,0.0000027047,0.0000027041, -0.0000026962,0.0000026857,0.0000026788,0.0000026767,0.0000026762, -0.0000026766,0.0000026760,0.0000026732,0.0000026717,0.0000026736, -0.0000026771,0.0000026803,0.0000026805,0.0000026775,0.0000026723, -0.0000026695,0.0000026688,0.0000026667,0.0000026596,0.0000026503, -0.0000026392,0.0000026226,0.0000025952,0.0000025593,0.0000025219, -0.0000024892,0.0000024649,0.0000024504,0.0000024438,0.0000024417, -0.0000024396,0.0000024363,0.0000024326,0.0000024296,0.0000024292, -0.0000024318,0.0000024360,0.0000024389,0.0000024397,0.0000024396, -0.0000024405,0.0000024413,0.0000024394,0.0000024374,0.0000024413, -0.0000024519,0.0000024618,0.0000024651,0.0000024637,0.0000024581, -0.0000024519,0.0000024495,0.0000024499,0.0000024462,0.0000024299, -0.0000024131,0.0000024086,0.0000024104,0.0000024131,0.0000024133, -0.0000024096,0.0000024030,0.0000023952,0.0000023874,0.0000023820, -0.0000023804,0.0000023814,0.0000023846,0.0000023870,0.0000023876, -0.0000023874,0.0000023864,0.0000023838,0.0000023805,0.0000023764, -0.0000023716,0.0000023674,0.0000023604,0.0000023489,0.0000023466, -0.0000023588,0.0000023793,0.0000023912,0.0000023990,0.0000024134, -0.0000024271,0.0000024329,0.0000024412,0.0000024511,0.0000024599, -0.0000025017,0.0000025597,0.0000025918,0.0000026051,0.0000026121, -0.0000026124,0.0000026004,0.0000025802,0.0000025712,0.0000025767, -0.0000025549,0.0000025273,0.0000025496,0.0000026287,0.0000026937, -0.0000027381,0.0000027680,0.0000027713,0.0000027686,0.0000027617, -0.0000027631,0.0000027657,0.0000027577,0.0000027481,0.0000027493, -0.0000027562,0.0000027656,0.0000027732,0.0000027758,0.0000027756, -0.0000027756,0.0000027753,0.0000027735,0.0000027705,0.0000027654, -0.0000027597,0.0000027540,0.0000027485,0.0000027432,0.0000027383, -0.0000027343,0.0000027312,0.0000027295,0.0000027292,0.0000027294, -0.0000027266,0.0000027264,0.0000027261,0.0000027261,0.0000027260, -0.0000027257,0.0000027250,0.0000027243,0.0000027223,0.0000027180, -0.0000027125,0.0000027084,0.0000027065,0.0000027048,0.0000027007, -0.0000026946,0.0000026899,0.0000026887,0.0000026888,0.0000026889, -0.0000026863,0.0000026831,0.0000026820,0.0000026800,0.0000026750, -0.0000026735,0.0000026781,0.0000026804,0.0000026796,0.0000026792, -0.0000026840,0.0000026854,0.0000026767,0.0000026669,0.0000026641, -0.0000026637,0.0000026581,0.0000026475,0.0000026254,0.0000026004, -0.0000025885,0.0000025771,0.0000025629,0.0000025543,0.0000025467, -0.0000025379,0.0000025434,0.0000025540,0.0000025517,0.0000025441, -0.0000025394,0.0000025366,0.0000025346,0.0000025319,0.0000025292, -0.0000025290,0.0000025310,0.0000025353,0.0000025418,0.0000025473, -0.0000025505,0.0000025523,0.0000025481,0.0000025205,0.0000024797, -0.0000024576,0.0000024471,0.0000024341,0.0000024292,0.0000024306, -0.0000024297,0.0000024284,0.0000024358,0.0000024543,0.0000024660, -0.0000024695,0.0000024732,0.0000024751,0.0000024753,0.0000024749, -0.0000024740,0.0000024710,0.0000024702,0.0000024757,0.0000024913, -0.0000025144,0.0000025412,0.0000025676,0.0000025836,0.0000025894, -0.0000025885,0.0000025853,0.0000025842,0.0000025858,0.0000025864, -0.0000025829,0.0000025722,0.0000025618,0.0000025581,0.0000025501, -0.0000025463,0.0000025586,0.0000025720,0.0000025767,0.0000025777, -0.0000025728,0.0000025647,0.0000025601,0.0000025579,0.0000025557, -0.0000025522,0.0000025483,0.0000025448,0.0000025428,0.0000025409, -0.0000025387,0.0000025374,0.0000025388,0.0000025423,0.0000025443, -0.0000025416,0.0000025342,0.0000025230,0.0000025096,0.0000025033, -0.0000025106,0.0000025253,0.0000025318,0.0000025310,0.0000025316, -0.0000025285,0.0000025135,0.0000025033,0.0000025094,0.0000025185, -0.0000025168,0.0000025062,0.0000024972,0.0000024943,0.0000024946, -0.0000024956,0.0000024944,0.0000024976,0.0000025205,0.0000025639, -0.0000026019,0.0000026165,0.0000026172,0.0000026150,0.0000026094, -0.0000025976,0.0000025813,0.0000025661,0.0000025535,0.0000025448, -0.0000025440,0.0000025514,0.0000025638,0.0000025747,0.0000025819, -0.0000025846,0.0000025848,0.0000025867,0.0000025919,0.0000026009, -0.0000026096,0.0000026164,0.0000026207,0.0000026237,0.0000026255, -0.0000026261,0.0000026260,0.0000026251,0.0000026244,0.0000026236, -0.0000026226,0.0000026214,0.0000026205,0.0000026196,0.0000026181, -0.0000026161,0.0000026134,0.0000026107,0.0000026085,0.0000026066, -0.0000026043,0.0000026015,0.0000025988,0.0000025970,0.0000025972, -0.0000025992,0.0000026034,0.0000026094,0.0000026159,0.0000026216, -0.0000026248,0.0000026246,0.0000026225,0.0000026224,0.0000026228, -0.0000026211,0.0000026176,0.0000026170,0.0000026217,0.0000026321, -0.0000026428,0.0000026490,0.0000026491,0.0000026456,0.0000026443, -0.0000026462,0.0000026471,0.0000026430,0.0000026373,0.0000026375, -0.0000026424,0.0000026507,0.0000026601,0.0000026695,0.0000026796, -0.0000026915,0.0000027036,0.0000027138,0.0000027211,0.0000027258, -0.0000027299,0.0000027332,0.0000027342,0.0000027333,0.0000027292, -0.0000027211,0.0000027106,0.0000027019,0.0000026986,0.0000027039, -0.0000027174,0.0000027343,0.0000027474,0.0000027553,0.0000027576, -0.0000027548,0.0000027456,0.0000027324,0.0000027221,0.0000027190, -0.0000027178,0.0000027128,0.0000027014,0.0000026846,0.0000026641, -0.0000026418,0.0000026219,0.0000026097,0.0000026068,0.0000026100, -0.0000026140,0.0000026148,0.0000026123,0.0000026090,0.0000026051, -0.0000026001,0.0000025968,0.0000025967,0.0000025992,0.0000026034, -0.0000026062,0.0000026062,0.0000026026,0.0000025960,0.0000025876, -0.0000025794,0.0000025729,0.0000025681,0.0000025639,0.0000025598, -0.0000025556,0.0000025543,0.0000025554,0.0000025576,0.0000025613, -0.0000025670,0.0000025726,0.0000025762,0.0000025801,0.0000025863, -0.0000025944,0.0000026042,0.0000026167,0.0000026311,0.0000026461, -0.0000026618,0.0000026766,0.0000026863,0.0000026906,0.0000026923, -0.0000026943,0.0000026984,0.0000027049,0.0000027143,0.0000027249, -0.0000027349,0.0000027436,0.0000027508,0.0000027566,0.0000027609, -0.0000027649,0.0000027687,0.0000027707,0.0000027700,0.0000027683, -0.0000027673,0.0000027672,0.0000027655,0.0000027589,0.0000027479, -0.0000027364,0.0000027286,0.0000027251,0.0000027222,0.0000027200, -0.0000027205,0.0000027244,0.0000027303,0.0000027364,0.0000027403, -0.0000027406,0.0000027374,0.0000027306,0.0000027207,0.0000027105, -0.0000027035,0.0000027021,0.0000027049,0.0000027096,0.0000027135, -0.0000027154,0.0000027169,0.0000027213,0.0000027281,0.0000027352, -0.0000027450,0.0000027602,0.0000027729,0.0000027753,0.0000027770, -0.0000027927,0.0000028106,0.0000028147,0.0000028109,0.0000028074, -0.0000028065,0.0000028090,0.0000028120,0.0000028107,0.0000028057, -0.0000028014,0.0000027972,0.0000027918,0.0000027871,0.0000027861, -0.0000027895,0.0000027946,0.0000027980,0.0000027988,0.0000027988, -0.0000027978,0.0000027998,0.0000028036,0.0000028076,0.0000028076, -0.0000028027,0.0000027948,0.0000027860,0.0000027778,0.0000027705, -0.0000027638,0.0000027570,0.0000027504,0.0000027452,0.0000027427, -0.0000027414,0.0000027385,0.0000027333,0.0000027268,0.0000027193, -0.0000027069,0.0000026885,0.0000026675,0.0000026504,0.0000026404, -0.0000026342,0.0000026294,0.0000026223,0.0000026117,0.0000025984, -0.0000025851,0.0000025733,0.0000025629,0.0000025536,0.0000025491, -0.0000025499,0.0000025551,0.0000025640,0.0000025733,0.0000025813, -0.0000025874,0.0000025924,0.0000025986,0.0000026076,0.0000026185, -0.0000026292,0.0000026393,0.0000026483,0.0000026560,0.0000026650, -0.0000026735,0.0000026813,0.0000026879,0.0000026926,0.0000026953, -0.0000026966,0.0000026983,0.0000026997,0.0000027001,0.0000026982, -0.0000026944,0.0000026897,0.0000026874,0.0000026878,0.0000026899, -0.0000026939,0.0000026965,0.0000026973,0.0000026969,0.0000026955, -0.0000026927,0.0000026882,0.0000026844,0.0000026795,0.0000026741, -0.0000026698,0.0000026668,0.0000026630,0.0000026598,0.0000026596, -0.0000026614,0.0000026630,0.0000026652,0.0000026683,0.0000026699, -0.0000026697,0.0000026698,0.0000026697,0.0000026681,0.0000026647, -0.0000026618,0.0000026622,0.0000026674,0.0000026749,0.0000026815, -0.0000026845,0.0000026845,0.0000026839,0.0000026855,0.0000026884, -0.0000026893,0.0000026873,0.0000026827,0.0000026771,0.0000026727, -0.0000026738,0.0000026765,0.0000026725,0.0000026739,0.0000026852, -0.0000026901,0.0000026891,0.0000026863,0.0000026657,0.0000026137, -0.0000025803,0.0000025808,0.0000025980,0.0000026143,0.0000026343, -0.0000026590,0.0000026815,0.0000026965,0.0000027020,0.0000026984, -0.0000026915,0.0000026880,0.0000026955,0.0000027095,0.0000027211, -0.0000027307,0.0000027414,0.0000027523,0.0000027629,0.0000027704, -0.0000027711,0.0000027690,0.0000027716,0.0000027789,0.0000027872, -0.0000027962,0.0000028033,0.0000028036,0.0000028012,0.0000027999, -0.0000027946,0.0000027900,0.0000027917,0.0000027941,0.0000027945, -0.0000027990,0.0000028077,0.0000028123,0.0000028134,0.0000028114, -0.0000028004,0.0000027842,0.0000027799,0.0000027922,0.0000027997, -0.0000027963,0.0000027939,0.0000027946,0.0000027931,0.0000027956, -0.0000028045,0.0000028121,0.0000028148,0.0000028140,0.0000028092, -0.0000028017,0.0000027940,0.0000027863,0.0000027778,0.0000027692, -0.0000027625,0.0000027567,0.0000027537,0.0000027532,0.0000027547, -0.0000027571,0.0000027595,0.0000027616,0.0000027621,0.0000027579, -0.0000027479,0.0000027368,0.0000027272,0.0000027134,0.0000026952, -0.0000026830,0.0000026814,0.0000026869,0.0000026979,0.0000027104, -0.0000027234,0.0000027368,0.0000027440,0.0000027442,0.0000027439, -0.0000027451,0.0000027467,0.0000027506,0.0000027558,0.0000027559, -0.0000027496,0.0000027420,0.0000027341,0.0000027248,0.0000027173, -0.0000027143,0.0000027096,0.0000026988,0.0000026855,0.0000026725, -0.0000026579,0.0000026422,0.0000026294,0.0000026219,0.0000026192, -0.0000026181,0.0000026147,0.0000026094,0.0000026058,0.0000026041, -0.0000026002,0.0000025911,0.0000025751,0.0000025573,0.0000025439, -0.0000025365,0.0000025316,0.0000025274,0.0000025248,0.0000025239, -0.0000025237,0.0000025238,0.0000025244,0.0000025260,0.0000025284, -0.0000025312,0.0000025337,0.0000025350,0.0000025341,0.0000025305, -0.0000025264,0.0000025238,0.0000025217,0.0000025177,0.0000025130, -0.0000025102,0.0000025170,0.0000025357,0.0000025584,0.0000025770, -0.0000025874,0.0000025920,0.0000025960,0.0000026013,0.0000026048, -0.0000026043,0.0000025998,0.0000025952,0.0000025938,0.0000025958, -0.0000025999,0.0000026045,0.0000026095,0.0000026153,0.0000026210, -0.0000026258,0.0000026299,0.0000026329,0.0000026335,0.0000026319, -0.0000026305,0.0000026309,0.0000026332,0.0000026352,0.0000026365, -0.0000026377,0.0000026396,0.0000026436,0.0000026497,0.0000026566, -0.0000026630,0.0000026684,0.0000026741,0.0000026815,0.0000026909, -0.0000027012,0.0000027095,0.0000027140,0.0000027153,0.0000027156, -0.0000027146,0.0000027121,0.0000027085,0.0000027043,0.0000027012, -0.0000027009,0.0000027043,0.0000027101,0.0000027158,0.0000027212, -0.0000027258,0.0000027261,0.0000027223,0.0000027180,0.0000027214, -0.0000027310,0.0000027397,0.0000027452,0.0000027521,0.0000027623, -0.0000027707,0.0000027723,0.0000027680,0.0000027625,0.0000027592, -0.0000027621,0.0000027712,0.0000027840,0.0000027953,0.0000028028, -0.0000028079,0.0000028118,0.0000028145,0.0000028117,0.0000028041, -0.0000027939,0.0000027849,0.0000027788,0.0000027753,0.0000027729, -0.0000027698,0.0000027671,0.0000027682,0.0000027719,0.0000027743, -0.0000027749,0.0000027740,0.0000027717,0.0000027681,0.0000027650, -0.0000027636,0.0000027615,0.0000027582,0.0000027581,0.0000027622, -0.0000027663,0.0000027669,0.0000027658,0.0000027655,0.0000027679, -0.0000027735,0.0000027802,0.0000027845,0.0000027846,0.0000027821, -0.0000027801,0.0000027806,0.0000027818,0.0000027810,0.0000027698, -0.0000027503,0.0000027354,0.0000027271,0.0000027176,0.0000027061, -0.0000026977,0.0000026934,0.0000026903,0.0000026872,0.0000026857, -0.0000026865,0.0000026883,0.0000026873,0.0000026839,0.0000026817, -0.0000026815,0.0000026807,0.0000026727,0.0000026577,0.0000026454, -0.0000026422,0.0000026432,0.0000026425,0.0000026348,0.0000026207, -0.0000026072,0.0000025990,0.0000025958,0.0000025944,0.0000025932, -0.0000025935,0.0000025972,0.0000026065,0.0000026149,0.0000026169, -0.0000026140,0.0000026085,0.0000026028,0.0000025984,0.0000025960, -0.0000025946,0.0000025933,0.0000025916,0.0000025878,0.0000025811, -0.0000025732,0.0000025667,0.0000025612,0.0000025563,0.0000025541, -0.0000025524,0.0000025439,0.0000025267,0.0000025087,0.0000024966, -0.0000024909,0.0000024889,0.0000024874,0.0000024853,0.0000024849, -0.0000024885,0.0000024942,0.0000024979,0.0000024973,0.0000024909, -0.0000024791,0.0000024677,0.0000024564,0.0000024384,0.0000024195, -0.0000024276,0.0000024804,0.0000025385,0.0000025623,0.0000025907, -0.0000026494,0.0000027052,0.0000027464,0.0000027691,0.0000027678, -0.0000027561,0.0000027388,0.0000027245,0.0000027203,0.0000027210, -0.0000027252,0.0000027319,0.0000027393,0.0000027473,0.0000027539, -0.0000027574,0.0000027581,0.0000027572,0.0000027543,0.0000027514, -0.0000027512,0.0000027521,0.0000027494,0.0000027432,0.0000027354, -0.0000027290,0.0000027212,0.0000027065,0.0000026980,0.0000026981, -0.0000026957,0.0000026954,0.0000026965,0.0000026950,0.0000026905, -0.0000026877,0.0000026884,0.0000026902,0.0000026918,0.0000026930, -0.0000026927,0.0000026915,0.0000026921,0.0000026935,0.0000026927, -0.0000026920,0.0000026941,0.0000026977,0.0000027008,0.0000027000, -0.0000026981,0.0000026984,0.0000026985,0.0000026952,0.0000026901, -0.0000026847,0.0000026859,0.0000026939,0.0000027002,0.0000026981, -0.0000026976,0.0000027007,0.0000027018,0.0000026984,0.0000026918, -0.0000026842,0.0000026798,0.0000026777,0.0000026777,0.0000026780, -0.0000026765,0.0000026754,0.0000026763,0.0000026787,0.0000026810, -0.0000026810,0.0000026780,0.0000026741,0.0000026729,0.0000026709, -0.0000026660,0.0000026584,0.0000026485,0.0000026331,0.0000026068, -0.0000025703,0.0000025325,0.0000024996,0.0000024734,0.0000024586, -0.0000024509,0.0000024464,0.0000024438,0.0000024409,0.0000024365, -0.0000024310,0.0000024260,0.0000024240,0.0000024255,0.0000024302, -0.0000024351,0.0000024376,0.0000024376,0.0000024356,0.0000024338, -0.0000024342,0.0000024345,0.0000024315,0.0000024295,0.0000024340, -0.0000024439,0.0000024508,0.0000024519,0.0000024484,0.0000024455, -0.0000024458,0.0000024455,0.0000024356,0.0000024192,0.0000024094, -0.0000024088,0.0000024110,0.0000024134,0.0000024138,0.0000024110, -0.0000024045,0.0000023950,0.0000023854,0.0000023793,0.0000023779, -0.0000023794,0.0000023831,0.0000023859,0.0000023864,0.0000023861, -0.0000023853,0.0000023833,0.0000023808,0.0000023780,0.0000023743, -0.0000023700,0.0000023650,0.0000023568,0.0000023482,0.0000023499, -0.0000023668,0.0000023849,0.0000023936,0.0000024020,0.0000024168, -0.0000024283,0.0000024370,0.0000024483,0.0000024529,0.0000024827, -0.0000025440,0.0000025861,0.0000026012,0.0000026078,0.0000026088, -0.0000025958,0.0000025765,0.0000025710,0.0000025768,0.0000025506, -0.0000025250,0.0000025494,0.0000026279,0.0000026900,0.0000027329, -0.0000027634,0.0000027696,0.0000027659,0.0000027604,0.0000027576, -0.0000027613,0.0000027593,0.0000027497,0.0000027446,0.0000027466, -0.0000027531,0.0000027612,0.0000027670,0.0000027698,0.0000027707, -0.0000027705,0.0000027694,0.0000027665,0.0000027625,0.0000027577, -0.0000027526,0.0000027472,0.0000027415,0.0000027358,0.0000027309, -0.0000027277,0.0000027265,0.0000027265,0.0000027265,0.0000027231, -0.0000027239,0.0000027251,0.0000027262,0.0000027268,0.0000027270, -0.0000027274,0.0000027274,0.0000027253,0.0000027209,0.0000027157, -0.0000027106,0.0000027060,0.0000026993,0.0000026915,0.0000026863, -0.0000026872,0.0000026899,0.0000026926,0.0000026929,0.0000026903, -0.0000026862,0.0000026829,0.0000026814,0.0000026791,0.0000026757, -0.0000026769,0.0000026807,0.0000026808,0.0000026781,0.0000026794, -0.0000026849,0.0000026840,0.0000026734,0.0000026645,0.0000026623, -0.0000026591,0.0000026525,0.0000026372,0.0000026121,0.0000025947, -0.0000025833,0.0000025685,0.0000025585,0.0000025531,0.0000025441, -0.0000025438,0.0000025531,0.0000025543,0.0000025483,0.0000025427, -0.0000025395,0.0000025371,0.0000025340,0.0000025310,0.0000025306, -0.0000025326,0.0000025355,0.0000025407,0.0000025461,0.0000025499, -0.0000025519,0.0000025517,0.0000025411,0.0000025041,0.0000024679, -0.0000024534,0.0000024421,0.0000024314,0.0000024301,0.0000024305, -0.0000024271,0.0000024280,0.0000024436,0.0000024590,0.0000024629, -0.0000024656,0.0000024705,0.0000024746,0.0000024764,0.0000024755, -0.0000024730,0.0000024709,0.0000024696,0.0000024735,0.0000024851, -0.0000025051,0.0000025275,0.0000025541,0.0000025755,0.0000025845, -0.0000025850,0.0000025841,0.0000025842,0.0000025842,0.0000025823, -0.0000025777,0.0000025679,0.0000025596,0.0000025563,0.0000025480, -0.0000025461,0.0000025610,0.0000025732,0.0000025781,0.0000025787, -0.0000025732,0.0000025650,0.0000025598,0.0000025569,0.0000025539, -0.0000025497,0.0000025461,0.0000025426,0.0000025402,0.0000025393, -0.0000025390,0.0000025399,0.0000025420,0.0000025459,0.0000025489, -0.0000025459,0.0000025362,0.0000025247,0.0000025166,0.0000025134, -0.0000025174,0.0000025284,0.0000025367,0.0000025363,0.0000025338, -0.0000025317,0.0000025223,0.0000025077,0.0000025039,0.0000025150, -0.0000025225,0.0000025186,0.0000025085,0.0000024991,0.0000024941, -0.0000024917,0.0000024903,0.0000024895,0.0000024955,0.0000025210, -0.0000025619,0.0000025968,0.0000026111,0.0000026132,0.0000026126, -0.0000026096,0.0000025970,0.0000025786,0.0000025606,0.0000025476, -0.0000025438,0.0000025455,0.0000025518,0.0000025595,0.0000025670, -0.0000025725,0.0000025769,0.0000025809,0.0000025859,0.0000025930, -0.0000026005,0.0000026067,0.0000026106,0.0000026129,0.0000026142, -0.0000026144,0.0000026142,0.0000026133,0.0000026130,0.0000026126, -0.0000026120,0.0000026114,0.0000026115,0.0000026116,0.0000026114, -0.0000026106,0.0000026092,0.0000026077,0.0000026063,0.0000026049, -0.0000026029,0.0000025999,0.0000025965,0.0000025933,0.0000025908, -0.0000025892,0.0000025896,0.0000025930,0.0000025994,0.0000026074, -0.0000026145,0.0000026180,0.0000026186,0.0000026203,0.0000026237, -0.0000026241,0.0000026207,0.0000026175,0.0000026191,0.0000026263, -0.0000026352,0.0000026409,0.0000026417,0.0000026405,0.0000026420, -0.0000026462,0.0000026473,0.0000026426,0.0000026362,0.0000026350, -0.0000026390,0.0000026461,0.0000026547,0.0000026645,0.0000026755, -0.0000026868,0.0000026969,0.0000027059,0.0000027138,0.0000027201, -0.0000027255,0.0000027300,0.0000027322,0.0000027315,0.0000027266, -0.0000027165,0.0000027039,0.0000026942,0.0000026911,0.0000026973, -0.0000027109,0.0000027262,0.0000027393,0.0000027464,0.0000027475, -0.0000027427,0.0000027324,0.0000027238,0.0000027219,0.0000027220, -0.0000027152,0.0000026999,0.0000026818,0.0000026641,0.0000026465, -0.0000026292,0.0000026159,0.0000026089,0.0000026079,0.0000026113, -0.0000026152,0.0000026161,0.0000026139,0.0000026102,0.0000026048, -0.0000025973,0.0000025919,0.0000025919,0.0000025962,0.0000026010, -0.0000026031,0.0000026024,0.0000025978,0.0000025911,0.0000025831, -0.0000025756,0.0000025696,0.0000025662,0.0000025642,0.0000025611, -0.0000025567,0.0000025534,0.0000025514,0.0000025505,0.0000025510, -0.0000025533,0.0000025567,0.0000025597,0.0000025631,0.0000025691, -0.0000025771,0.0000025858,0.0000025960,0.0000026088,0.0000026232, -0.0000026396,0.0000026578,0.0000026728,0.0000026814,0.0000026853, -0.0000026878,0.0000026918,0.0000026979,0.0000027043,0.0000027097, -0.0000027149,0.0000027207,0.0000027264,0.0000027321,0.0000027371, -0.0000027422,0.0000027480,0.0000027532,0.0000027557,0.0000027559, -0.0000027559,0.0000027570,0.0000027575,0.0000027535,0.0000027443, -0.0000027324,0.0000027223,0.0000027167,0.0000027137,0.0000027118, -0.0000027114,0.0000027138,0.0000027205,0.0000027288,0.0000027346, -0.0000027357,0.0000027336,0.0000027292,0.0000027227,0.0000027146, -0.0000027087,0.0000027072,0.0000027093,0.0000027136,0.0000027175, -0.0000027192,0.0000027195,0.0000027211,0.0000027258,0.0000027313, -0.0000027367,0.0000027456,0.0000027602,0.0000027720,0.0000027742, -0.0000027786,0.0000027964,0.0000028120,0.0000028130,0.0000028097, -0.0000028090,0.0000028093,0.0000028095,0.0000028084,0.0000028050, -0.0000028006,0.0000027970,0.0000027932,0.0000027904,0.0000027900, -0.0000027927,0.0000027983,0.0000028044,0.0000028070,0.0000028056, -0.0000028008,0.0000027972,0.0000027957,0.0000027993,0.0000028029, -0.0000028029,0.0000027983,0.0000027904,0.0000027814,0.0000027729, -0.0000027658,0.0000027590,0.0000027516,0.0000027443,0.0000027396, -0.0000027386,0.0000027388,0.0000027373,0.0000027337,0.0000027286, -0.0000027254,0.0000027221,0.0000027127,0.0000026942,0.0000026718, -0.0000026522,0.0000026385,0.0000026303,0.0000026238,0.0000026159, -0.0000026058,0.0000025942,0.0000025826,0.0000025717,0.0000025614, -0.0000025549,0.0000025544,0.0000025590,0.0000025655,0.0000025708, -0.0000025734,0.0000025734,0.0000025723,0.0000025721,0.0000025744, -0.0000025791,0.0000025851,0.0000025922,0.0000025984,0.0000026042, -0.0000026112,0.0000026178,0.0000026256,0.0000026331,0.0000026395, -0.0000026442,0.0000026478,0.0000026513,0.0000026547,0.0000026569, -0.0000026567,0.0000026564,0.0000026575,0.0000026619,0.0000026684, -0.0000026763,0.0000026841,0.0000026882,0.0000026890,0.0000026886, -0.0000026879,0.0000026856,0.0000026827,0.0000026797,0.0000026762, -0.0000026716,0.0000026678,0.0000026649,0.0000026606,0.0000026575, -0.0000026575,0.0000026585,0.0000026591,0.0000026610,0.0000026638, -0.0000026645,0.0000026634,0.0000026627,0.0000026618,0.0000026593, -0.0000026547,0.0000026512,0.0000026521,0.0000026594,0.0000026697, -0.0000026784,0.0000026836,0.0000026861,0.0000026881,0.0000026900, -0.0000026916,0.0000026906,0.0000026869,0.0000026822,0.0000026776, -0.0000026721,0.0000026699,0.0000026722,0.0000026698,0.0000026639, -0.0000026733,0.0000026867,0.0000026887,0.0000026860,0.0000026808, -0.0000026579,0.0000026106,0.0000025787,0.0000025802,0.0000026000, -0.0000026169,0.0000026303,0.0000026479,0.0000026679,0.0000026836, -0.0000026900,0.0000026875,0.0000026792,0.0000026757,0.0000026789, -0.0000026895,0.0000027065,0.0000027276,0.0000027455,0.0000027581, -0.0000027667,0.0000027695,0.0000027669,0.0000027643,0.0000027680, -0.0000027774,0.0000027888,0.0000027996,0.0000028042,0.0000028034, -0.0000028025,0.0000027985,0.0000027914,0.0000027909,0.0000027949, -0.0000027964,0.0000027972,0.0000028021,0.0000028063,0.0000028068, -0.0000028061,0.0000028016,0.0000027884,0.0000027766,0.0000027803, -0.0000027951,0.0000027998,0.0000027956,0.0000027943,0.0000027954, -0.0000027944,0.0000027966,0.0000028039,0.0000028100,0.0000028119, -0.0000028108,0.0000028050,0.0000027959,0.0000027858,0.0000027765, -0.0000027697,0.0000027650,0.0000027621,0.0000027603,0.0000027589, -0.0000027577,0.0000027579,0.0000027591,0.0000027608,0.0000027613, -0.0000027578,0.0000027475,0.0000027366,0.0000027293,0.0000027174, -0.0000026968,0.0000026800,0.0000026767,0.0000026823,0.0000026950, -0.0000027077,0.0000027186,0.0000027304,0.0000027396,0.0000027423, -0.0000027426,0.0000027444,0.0000027468,0.0000027502,0.0000027553, -0.0000027572,0.0000027523,0.0000027412,0.0000027297,0.0000027193, -0.0000027117,0.0000027085,0.0000027054,0.0000026969,0.0000026840, -0.0000026710,0.0000026581,0.0000026448,0.0000026333,0.0000026261, -0.0000026233,0.0000026217,0.0000026187,0.0000026146,0.0000026112, -0.0000026087,0.0000026034,0.0000025898,0.0000025693,0.0000025509, -0.0000025400,0.0000025345,0.0000025301,0.0000025260,0.0000025241, -0.0000025240,0.0000025244,0.0000025245,0.0000025245,0.0000025249, -0.0000025259,0.0000025275,0.0000025289,0.0000025299,0.0000025303, -0.0000025294,0.0000025270,0.0000025241,0.0000025214,0.0000025197, -0.0000025182,0.0000025145,0.0000025087,0.0000025073,0.0000025135, -0.0000025326,0.0000025562,0.0000025742,0.0000025833,0.0000025874, -0.0000025915,0.0000025955,0.0000025968,0.0000025945,0.0000025906, -0.0000025887,0.0000025898,0.0000025931,0.0000025963,0.0000025998, -0.0000026051,0.0000026120,0.0000026192,0.0000026251,0.0000026285, -0.0000026292,0.0000026273,0.0000026238,0.0000026212,0.0000026208, -0.0000026224,0.0000026252,0.0000026279,0.0000026305,0.0000026346, -0.0000026415,0.0000026488,0.0000026541,0.0000026590,0.0000026655, -0.0000026731,0.0000026812,0.0000026897,0.0000026980,0.0000027049, -0.0000027099,0.0000027134,0.0000027153,0.0000027166,0.0000027159, -0.0000027122,0.0000027069,0.0000027023,0.0000027027,0.0000027077, -0.0000027141,0.0000027184,0.0000027221,0.0000027250,0.0000027229, -0.0000027161,0.0000027116,0.0000027184,0.0000027321,0.0000027435, -0.0000027507,0.0000027582,0.0000027668,0.0000027730,0.0000027726, -0.0000027661,0.0000027578,0.0000027526,0.0000027550,0.0000027670, -0.0000027824,0.0000027950,0.0000028035,0.0000028107,0.0000028160, -0.0000028189,0.0000028165,0.0000028088,0.0000027978,0.0000027875, -0.0000027815,0.0000027794,0.0000027768,0.0000027733,0.0000027721, -0.0000027742,0.0000027763,0.0000027767,0.0000027754,0.0000027734, -0.0000027707,0.0000027675,0.0000027668,0.0000027676,0.0000027650, -0.0000027609,0.0000027616,0.0000027654,0.0000027670,0.0000027661, -0.0000027653,0.0000027670,0.0000027718,0.0000027787,0.0000027840, -0.0000027846,0.0000027825,0.0000027806,0.0000027806,0.0000027808, -0.0000027807,0.0000027745,0.0000027593,0.0000027429,0.0000027329, -0.0000027242,0.0000027130,0.0000027050,0.0000027021,0.0000026991, -0.0000026947,0.0000026918,0.0000026915,0.0000026918,0.0000026897, -0.0000026866,0.0000026861,0.0000026885,0.0000026891,0.0000026812, -0.0000026656,0.0000026529,0.0000026498,0.0000026512,0.0000026491, -0.0000026375,0.0000026205,0.0000026060,0.0000025973,0.0000025932, -0.0000025903,0.0000025873,0.0000025858,0.0000025886,0.0000025978, -0.0000026072,0.0000026097,0.0000026072,0.0000026018,0.0000025960, -0.0000025919,0.0000025903,0.0000025904,0.0000025910,0.0000025907, -0.0000025880,0.0000025822,0.0000025732,0.0000025623,0.0000025531, -0.0000025478,0.0000025448,0.0000025360,0.0000025198,0.0000025031, -0.0000024929,0.0000024885,0.0000024858,0.0000024837,0.0000024832, -0.0000024845,0.0000024860,0.0000024866,0.0000024866,0.0000024864, -0.0000024854,0.0000024812,0.0000024725,0.0000024632,0.0000024551, -0.0000024417,0.0000024227,0.0000024179,0.0000024546,0.0000025174, -0.0000025524,0.0000025751,0.0000026291,0.0000026901,0.0000027353, -0.0000027641,0.0000027695,0.0000027613,0.0000027467,0.0000027308, -0.0000027235,0.0000027235,0.0000027272,0.0000027341,0.0000027426, -0.0000027514,0.0000027588,0.0000027627,0.0000027634,0.0000027627, -0.0000027599,0.0000027562,0.0000027548,0.0000027552,0.0000027542, -0.0000027486,0.0000027400,0.0000027323,0.0000027264,0.0000027128, -0.0000026985,0.0000026966,0.0000026959,0.0000026960,0.0000026975, -0.0000026963,0.0000026939,0.0000026917,0.0000026910,0.0000026910, -0.0000026905,0.0000026903,0.0000026902,0.0000026899,0.0000026908, -0.0000026925,0.0000026922,0.0000026914,0.0000026930,0.0000026956, -0.0000026956,0.0000026934,0.0000026923,0.0000026939,0.0000026938, -0.0000026906,0.0000026863,0.0000026816,0.0000026833,0.0000026915, -0.0000026985,0.0000026963,0.0000026944,0.0000026966,0.0000026991, -0.0000026980,0.0000026950,0.0000026900,0.0000026848,0.0000026812, -0.0000026801,0.0000026805,0.0000026804,0.0000026797,0.0000026799, -0.0000026808,0.0000026811,0.0000026797,0.0000026767,0.0000026748, -0.0000026740,0.0000026708,0.0000026634,0.0000026550,0.0000026440, -0.0000026233,0.0000025887,0.0000025486,0.0000025138,0.0000024870, -0.0000024690,0.0000024596,0.0000024558,0.0000024530,0.0000024501, -0.0000024464,0.0000024419,0.0000024349,0.0000024274,0.0000024223, -0.0000024210,0.0000024234,0.0000024287,0.0000024333,0.0000024351, -0.0000024348,0.0000024323,0.0000024284,0.0000024265,0.0000024272, -0.0000024268,0.0000024232,0.0000024217,0.0000024262,0.0000024345, -0.0000024404,0.0000024417,0.0000024412,0.0000024403,0.0000024341, -0.0000024212,0.0000024102,0.0000024076,0.0000024091,0.0000024117, -0.0000024142,0.0000024147,0.0000024130,0.0000024065,0.0000023955, -0.0000023844,0.0000023773,0.0000023753,0.0000023768,0.0000023809, -0.0000023844,0.0000023857,0.0000023859,0.0000023855,0.0000023840, -0.0000023819,0.0000023801,0.0000023774,0.0000023730,0.0000023689, -0.0000023648,0.0000023570,0.0000023522,0.0000023591,0.0000023769, -0.0000023910,0.0000023959,0.0000024051,0.0000024204,0.0000024328, -0.0000024460,0.0000024504,0.0000024700,0.0000025306,0.0000025807, -0.0000025981,0.0000026040,0.0000026051,0.0000025903,0.0000025735, -0.0000025716,0.0000025761,0.0000025478,0.0000025232,0.0000025478, -0.0000026248,0.0000026836,0.0000027267,0.0000027556,0.0000027667, -0.0000027625,0.0000027584,0.0000027539,0.0000027544,0.0000027567, -0.0000027531,0.0000027464,0.0000027429,0.0000027428,0.0000027474, -0.0000027531,0.0000027580,0.0000027606,0.0000027618,0.0000027618, -0.0000027597,0.0000027567,0.0000027524,0.0000027470,0.0000027405, -0.0000027338,0.0000027277,0.0000027232,0.0000027214,0.0000027215, -0.0000027223,0.0000027227,0.0000027222,0.0000027238,0.0000027254, -0.0000027263,0.0000027269,0.0000027272,0.0000027275,0.0000027273, -0.0000027258,0.0000027224,0.0000027166,0.0000027085,0.0000026983, -0.0000026882,0.0000026822,0.0000026836,0.0000026887,0.0000026939, -0.0000026954,0.0000026939,0.0000026906,0.0000026866,0.0000026824, -0.0000026799,0.0000026799,0.0000026782,0.0000026764,0.0000026796, -0.0000026816,0.0000026793,0.0000026761,0.0000026804,0.0000026861, -0.0000026829,0.0000026712,0.0000026633,0.0000026601,0.0000026558, -0.0000026465,0.0000026251,0.0000026028,0.0000025887,0.0000025736, -0.0000025619,0.0000025577,0.0000025505,0.0000025455,0.0000025497, -0.0000025541,0.0000025511,0.0000025462,0.0000025427,0.0000025402, -0.0000025373,0.0000025348,0.0000025345,0.0000025368,0.0000025390, -0.0000025418,0.0000025449,0.0000025483,0.0000025504,0.0000025507, -0.0000025488,0.0000025281,0.0000024865,0.0000024609,0.0000024521, -0.0000024396,0.0000024319,0.0000024319,0.0000024294,0.0000024258, -0.0000024330,0.0000024504,0.0000024579,0.0000024584,0.0000024627, -0.0000024695,0.0000024757,0.0000024780,0.0000024759,0.0000024723, -0.0000024695,0.0000024689,0.0000024723,0.0000024814,0.0000024971, -0.0000025169,0.0000025404,0.0000025659,0.0000025789,0.0000025804, -0.0000025808,0.0000025813,0.0000025809,0.0000025789,0.0000025747, -0.0000025649,0.0000025583,0.0000025543,0.0000025466,0.0000025475, -0.0000025634,0.0000025739,0.0000025790,0.0000025792,0.0000025726, -0.0000025643,0.0000025588,0.0000025551,0.0000025515,0.0000025476, -0.0000025437,0.0000025393,0.0000025355,0.0000025349,0.0000025370, -0.0000025408,0.0000025461,0.0000025512,0.0000025531,0.0000025497, -0.0000025406,0.0000025294,0.0000025213,0.0000025190,0.0000025218, -0.0000025310,0.0000025397,0.0000025411,0.0000025377,0.0000025336, -0.0000025279,0.0000025163,0.0000025058,0.0000025085,0.0000025203, -0.0000025272,0.0000025221,0.0000025111,0.0000025002,0.0000024917, -0.0000024881,0.0000024855,0.0000024854,0.0000024938,0.0000025183, -0.0000025548,0.0000025876,0.0000026041,0.0000026092,0.0000026103, -0.0000026084,0.0000025965,0.0000025768,0.0000025572,0.0000025455, -0.0000025457,0.0000025478,0.0000025522,0.0000025565,0.0000025613, -0.0000025676,0.0000025736,0.0000025796,0.0000025861,0.0000025926, -0.0000025977,0.0000026011,0.0000026026,0.0000026028,0.0000026021, -0.0000026015,0.0000026010,0.0000026009,0.0000026003,0.0000025992, -0.0000025983,0.0000025982,0.0000025986,0.0000025988,0.0000025986, -0.0000025982,0.0000025976,0.0000025968,0.0000025959,0.0000025951, -0.0000025941,0.0000025925,0.0000025905,0.0000025883,0.0000025858, -0.0000025837,0.0000025836,0.0000025872,0.0000025952,0.0000026041, -0.0000026098,0.0000026123,0.0000026164,0.0000026228,0.0000026256, -0.0000026234,0.0000026200,0.0000026202,0.0000026244,0.0000026299, -0.0000026332,0.0000026336,0.0000026340,0.0000026374,0.0000026424, -0.0000026436,0.0000026405,0.0000026352,0.0000026332,0.0000026356, -0.0000026407,0.0000026479,0.0000026579,0.0000026700,0.0000026814, -0.0000026906,0.0000026987,0.0000027070,0.0000027145,0.0000027212, -0.0000027269,0.0000027302,0.0000027297,0.0000027238,0.0000027123, -0.0000026991,0.0000026902,0.0000026884,0.0000026948,0.0000027067, -0.0000027184,0.0000027287,0.0000027341,0.0000027342,0.0000027303, -0.0000027251,0.0000027233,0.0000027227,0.0000027158,0.0000026986, -0.0000026767,0.0000026582,0.0000026451,0.0000026347,0.0000026251, -0.0000026176,0.0000026135,0.0000026127,0.0000026137,0.0000026154, -0.0000026147,0.0000026116,0.0000026072,0.0000026010,0.0000025926, -0.0000025862,0.0000025863,0.0000025913,0.0000025966,0.0000025987, -0.0000025978,0.0000025933,0.0000025873,0.0000025803,0.0000025729, -0.0000025669,0.0000025643,0.0000025645,0.0000025643,0.0000025610, -0.0000025559,0.0000025510,0.0000025470,0.0000025444,0.0000025425, -0.0000025416,0.0000025425,0.0000025459,0.0000025528,0.0000025616, -0.0000025693,0.0000025770,0.0000025864,0.0000025973,0.0000026110, -0.0000026299,0.0000026505,0.0000026667,0.0000026765,0.0000026817, -0.0000026855,0.0000026905,0.0000026966,0.0000027016,0.0000027054, -0.0000027093,0.0000027132,0.0000027170,0.0000027207,0.0000027248, -0.0000027303,0.0000027372,0.0000027427,0.0000027447,0.0000027445, -0.0000027451,0.0000027466,0.0000027453,0.0000027399,0.0000027310, -0.0000027222,0.0000027158,0.0000027118,0.0000027094,0.0000027082, -0.0000027083,0.0000027109,0.0000027175,0.0000027244,0.0000027271, -0.0000027270,0.0000027262,0.0000027251,0.0000027218,0.0000027175, -0.0000027149,0.0000027146,0.0000027162,0.0000027185,0.0000027198, -0.0000027199,0.0000027203,0.0000027226,0.0000027271,0.0000027326, -0.0000027389,0.0000027480,0.0000027609,0.0000027708,0.0000027744, -0.0000027818,0.0000028000,0.0000028132,0.0000028123,0.0000028098, -0.0000028111,0.0000028114,0.0000028082,0.0000028035,0.0000027992, -0.0000027960,0.0000027937,0.0000027921,0.0000027923,0.0000027950, -0.0000028004,0.0000028072,0.0000028125,0.0000028141,0.0000028115, -0.0000028055,0.0000027993,0.0000027969,0.0000027975,0.0000027982, -0.0000027970,0.0000027925,0.0000027852,0.0000027762,0.0000027669, -0.0000027593,0.0000027519,0.0000027444,0.0000027381,0.0000027346, -0.0000027343,0.0000027354,0.0000027359,0.0000027340,0.0000027313, -0.0000027307,0.0000027313,0.0000027280,0.0000027163,0.0000026977, -0.0000026759,0.0000026551,0.0000026386,0.0000026267,0.0000026180, -0.0000026106,0.0000026026,0.0000025931,0.0000025831,0.0000025739, -0.0000025682,0.0000025673,0.0000025698,0.0000025722,0.0000025734, -0.0000025730,0.0000025711,0.0000025678,0.0000025644,0.0000025623, -0.0000025627,0.0000025648,0.0000025675,0.0000025690,0.0000025708, -0.0000025723,0.0000025738,0.0000025778,0.0000025822,0.0000025861, -0.0000025890,0.0000025918,0.0000025952,0.0000025998,0.0000026034, -0.0000026058,0.0000026104,0.0000026173,0.0000026276,0.0000026407, -0.0000026547,0.0000026673,0.0000026753,0.0000026793,0.0000026805, -0.0000026795,0.0000026767,0.0000026738,0.0000026714,0.0000026686, -0.0000026645,0.0000026618,0.0000026600,0.0000026570,0.0000026552, -0.0000026555,0.0000026562,0.0000026566,0.0000026581,0.0000026595, -0.0000026587,0.0000026565,0.0000026547,0.0000026530,0.0000026498, -0.0000026453,0.0000026430,0.0000026450,0.0000026528,0.0000026631, -0.0000026717,0.0000026790,0.0000026850,0.0000026890,0.0000026911, -0.0000026917,0.0000026896,0.0000026866,0.0000026830,0.0000026782, -0.0000026717,0.0000026668,0.0000026672,0.0000026664,0.0000026587, -0.0000026616,0.0000026785,0.0000026877,0.0000026857,0.0000026803, -0.0000026737,0.0000026530,0.0000026104,0.0000025797,0.0000025816, -0.0000026032,0.0000026179,0.0000026244,0.0000026347,0.0000026515, -0.0000026668,0.0000026747,0.0000026753,0.0000026727,0.0000026685, -0.0000026664,0.0000026751,0.0000026971,0.0000027240,0.0000027459, -0.0000027601,0.0000027666,0.0000027669,0.0000027622,0.0000027596, -0.0000027653,0.0000027775,0.0000027913,0.0000028008,0.0000028039, -0.0000028046,0.0000028028,0.0000027950,0.0000027898,0.0000027926, -0.0000027970,0.0000027975,0.0000027985,0.0000028005,0.0000028005, -0.0000027989,0.0000027973,0.0000027911,0.0000027797,0.0000027734, -0.0000027816,0.0000027965,0.0000028002,0.0000027959,0.0000027954, -0.0000027964,0.0000027959,0.0000027976,0.0000028030,0.0000028075, -0.0000028089,0.0000028068,0.0000028005,0.0000027916,0.0000027827, -0.0000027760,0.0000027724,0.0000027708,0.0000027692,0.0000027664, -0.0000027629,0.0000027605,0.0000027602,0.0000027606,0.0000027608, -0.0000027576,0.0000027487,0.0000027390,0.0000027335,0.0000027229, -0.0000027008,0.0000026811,0.0000026758,0.0000026805,0.0000026940, -0.0000027077,0.0000027174,0.0000027272,0.0000027354,0.0000027388, -0.0000027395,0.0000027414,0.0000027441,0.0000027475,0.0000027525, -0.0000027565,0.0000027545,0.0000027441,0.0000027295,0.0000027166, -0.0000027081,0.0000027040,0.0000027010,0.0000026946,0.0000026837, -0.0000026709,0.0000026588,0.0000026480,0.0000026380,0.0000026301, -0.0000026259,0.0000026240,0.0000026221,0.0000026188,0.0000026147, -0.0000026112,0.0000026037,0.0000025854,0.0000025626,0.0000025469, -0.0000025398,0.0000025351,0.0000025297,0.0000025257,0.0000025246, -0.0000025250,0.0000025256,0.0000025259,0.0000025260,0.0000025266, -0.0000025274,0.0000025283,0.0000025284,0.0000025275,0.0000025264, -0.0000025249,0.0000025244,0.0000025247,0.0000025251,0.0000025235, -0.0000025208,0.0000025188,0.0000025177,0.0000025143,0.0000025081, -0.0000025052,0.0000025129,0.0000025329,0.0000025559,0.0000025729, -0.0000025811,0.0000025845,0.0000025869,0.0000025890,0.0000025897, -0.0000025880,0.0000025858,0.0000025852,0.0000025860,0.0000025871, -0.0000025888,0.0000025931,0.0000026007,0.0000026097,0.0000026163, -0.0000026188,0.0000026187,0.0000026168,0.0000026138,0.0000026097, -0.0000026063,0.0000026060,0.0000026095,0.0000026150,0.0000026206, -0.0000026260,0.0000026326,0.0000026406,0.0000026470,0.0000026514, -0.0000026575,0.0000026657,0.0000026741,0.0000026818,0.0000026881, -0.0000026934,0.0000026986,0.0000027037,0.0000027084,0.0000027129, -0.0000027157,0.0000027167,0.0000027145,0.0000027099,0.0000027061, -0.0000027077,0.0000027122,0.0000027165,0.0000027202,0.0000027232, -0.0000027234,0.0000027172,0.0000027088,0.0000027068,0.0000027178, -0.0000027337,0.0000027465,0.0000027555,0.0000027629,0.0000027691, -0.0000027726,0.0000027709,0.0000027634,0.0000027521,0.0000027460, -0.0000027507,0.0000027649,0.0000027814,0.0000027950,0.0000028060, -0.0000028148,0.0000028200,0.0000028226,0.0000028203,0.0000028111, -0.0000027981,0.0000027881,0.0000027842,0.0000027826,0.0000027798, -0.0000027776,0.0000027777,0.0000027788,0.0000027791,0.0000027775, -0.0000027750,0.0000027730,0.0000027714,0.0000027712,0.0000027731, -0.0000027735,0.0000027691,0.0000027645,0.0000027650,0.0000027672, -0.0000027673,0.0000027666,0.0000027673,0.0000027708,0.0000027765, -0.0000027817,0.0000027829,0.0000027812,0.0000027789,0.0000027776, -0.0000027764,0.0000027768,0.0000027753,0.0000027664,0.0000027508, -0.0000027390,0.0000027307,0.0000027205,0.0000027125,0.0000027102, -0.0000027076,0.0000027019,0.0000026971,0.0000026953,0.0000026939, -0.0000026904,0.0000026873,0.0000026884,0.0000026930,0.0000026947, -0.0000026879,0.0000026732,0.0000026608,0.0000026576,0.0000026590, -0.0000026561,0.0000026420,0.0000026223,0.0000026062,0.0000025971, -0.0000025923,0.0000025886,0.0000025840,0.0000025801,0.0000025810, -0.0000025887,0.0000025979,0.0000026012,0.0000025995,0.0000025945, -0.0000025892,0.0000025860,0.0000025854,0.0000025871,0.0000025892, -0.0000025900,0.0000025890,0.0000025833,0.0000025720,0.0000025574, -0.0000025464,0.0000025389,0.0000025274,0.0000025112,0.0000024962, -0.0000024884,0.0000024863,0.0000024845,0.0000024815,0.0000024800, -0.0000024822,0.0000024862,0.0000024884,0.0000024871,0.0000024817, -0.0000024751,0.0000024699,0.0000024669,0.0000024630,0.0000024577, -0.0000024519,0.0000024420,0.0000024231,0.0000024122,0.0000024304, -0.0000024913,0.0000025400,0.0000025616,0.0000026050,0.0000026689, -0.0000027194,0.0000027555,0.0000027683,0.0000027646,0.0000027538, -0.0000027402,0.0000027298,0.0000027280,0.0000027313,0.0000027377, -0.0000027461,0.0000027544,0.0000027613,0.0000027652,0.0000027659, -0.0000027654,0.0000027637,0.0000027612,0.0000027594,0.0000027584, -0.0000027572,0.0000027532,0.0000027443,0.0000027346,0.0000027289, -0.0000027192,0.0000027023,0.0000026960,0.0000026959,0.0000026964, -0.0000026987,0.0000026975,0.0000026958,0.0000026950,0.0000026950, -0.0000026945,0.0000026921,0.0000026897,0.0000026883,0.0000026878, -0.0000026883,0.0000026899,0.0000026907,0.0000026912,0.0000026924, -0.0000026923,0.0000026888,0.0000026859,0.0000026869,0.0000026894, -0.0000026890,0.0000026855,0.0000026817,0.0000026784,0.0000026808, -0.0000026885,0.0000026964,0.0000026943,0.0000026918,0.0000026934, -0.0000026966,0.0000026974,0.0000026961,0.0000026934,0.0000026900, -0.0000026863,0.0000026841,0.0000026838,0.0000026842,0.0000026840, -0.0000026832,0.0000026822,0.0000026808,0.0000026779,0.0000026750, -0.0000026748,0.0000026742,0.0000026693,0.0000026606,0.0000026512, -0.0000026372,0.0000026112,0.0000025743,0.0000025372,0.0000025066, -0.0000024837,0.0000024704,0.0000024643,0.0000024617,0.0000024592, -0.0000024562,0.0000024523,0.0000024475,0.0000024404,0.0000024317, -0.0000024242,0.0000024198,0.0000024194,0.0000024226,0.0000024266, -0.0000024294,0.0000024306,0.0000024303,0.0000024286,0.0000024246, -0.0000024205,0.0000024198,0.0000024210,0.0000024206,0.0000024175, -0.0000024161,0.0000024196,0.0000024260,0.0000024297,0.0000024299, -0.0000024259,0.0000024172,0.0000024083,0.0000024054,0.0000024070, -0.0000024101,0.0000024132,0.0000024153,0.0000024153,0.0000024131, -0.0000024075,0.0000023980,0.0000023859,0.0000023761,0.0000023725, -0.0000023735,0.0000023778,0.0000023828,0.0000023858,0.0000023870, -0.0000023873,0.0000023862,0.0000023837,0.0000023813,0.0000023794, -0.0000023767,0.0000023737,0.0000023719,0.0000023680,0.0000023605, -0.0000023597,0.0000023695,0.0000023866,0.0000023941,0.0000023973, -0.0000024110,0.0000024281,0.0000024434,0.0000024486,0.0000024609, -0.0000025201,0.0000025761,0.0000025951,0.0000026005,0.0000026021, -0.0000025856,0.0000025721,0.0000025732,0.0000025768,0.0000025471, -0.0000025207,0.0000025445,0.0000026176,0.0000026744,0.0000027189, -0.0000027449,0.0000027613,0.0000027594,0.0000027543,0.0000027513, -0.0000027489,0.0000027498,0.0000027513,0.0000027495,0.0000027452, -0.0000027411,0.0000027411,0.0000027421,0.0000027447,0.0000027469, -0.0000027485,0.0000027486,0.0000027473,0.0000027446,0.0000027406, -0.0000027360,0.0000027308,0.0000027258,0.0000027215,0.0000027187, -0.0000027180,0.0000027188,0.0000027199,0.0000027211,0.0000027245, -0.0000027254,0.0000027256,0.0000027252,0.0000027249,0.0000027250, -0.0000027256,0.0000027258,0.0000027245,0.0000027199,0.0000027103, -0.0000026977,0.0000026870,0.0000026802,0.0000026806,0.0000026857, -0.0000026934,0.0000026967,0.0000026956,0.0000026919,0.0000026872, -0.0000026832,0.0000026791,0.0000026762,0.0000026773,0.0000026780, -0.0000026763,0.0000026772,0.0000026809,0.0000026805,0.0000026762, -0.0000026762,0.0000026840,0.0000026885,0.0000026821,0.0000026696, -0.0000026618,0.0000026577,0.0000026522,0.0000026375,0.0000026136, -0.0000025945,0.0000025784,0.0000025651,0.0000025605,0.0000025561, -0.0000025488,0.0000025459,0.0000025492,0.0000025499,0.0000025471, -0.0000025445,0.0000025419,0.0000025396,0.0000025384,0.0000025392, -0.0000025420,0.0000025445,0.0000025459,0.0000025464,0.0000025475, -0.0000025490,0.0000025491,0.0000025487,0.0000025426,0.0000025104, -0.0000024729,0.0000024596,0.0000024505,0.0000024386,0.0000024351, -0.0000024340,0.0000024278,0.0000024266,0.0000024402,0.0000024532, -0.0000024543,0.0000024560,0.0000024627,0.0000024704,0.0000024769, -0.0000024793,0.0000024764,0.0000024710,0.0000024688,0.0000024691, -0.0000024728,0.0000024804,0.0000024921,0.0000025098,0.0000025296, -0.0000025564,0.0000025741,0.0000025780,0.0000025786,0.0000025789, -0.0000025782,0.0000025767,0.0000025727,0.0000025629,0.0000025572, -0.0000025526,0.0000025457,0.0000025498,0.0000025652,0.0000025745, -0.0000025787,0.0000025787,0.0000025714,0.0000025631,0.0000025578, -0.0000025532,0.0000025494,0.0000025455,0.0000025395,0.0000025325, -0.0000025277,0.0000025283,0.0000025326,0.0000025396,0.0000025480, -0.0000025541,0.0000025565,0.0000025534,0.0000025463,0.0000025368, -0.0000025267,0.0000025221,0.0000025242,0.0000025326,0.0000025423, -0.0000025460,0.0000025425,0.0000025359,0.0000025310,0.0000025243, -0.0000025135,0.0000025079,0.0000025137,0.0000025265,0.0000025325, -0.0000025263,0.0000025131,0.0000024994,0.0000024888,0.0000024848, -0.0000024818,0.0000024826,0.0000024909,0.0000025111,0.0000025427, -0.0000025750,0.0000025955,0.0000026038,0.0000026079,0.0000026061, -0.0000025960,0.0000025770,0.0000025574,0.0000025468,0.0000025462, -0.0000025490,0.0000025527,0.0000025566,0.0000025619,0.0000025678, -0.0000025737,0.0000025797,0.0000025855,0.0000025898,0.0000025927, -0.0000025934,0.0000025927,0.0000025913,0.0000025905,0.0000025899, -0.0000025890,0.0000025871,0.0000025848,0.0000025833,0.0000025834, -0.0000025845,0.0000025854,0.0000025861,0.0000025868,0.0000025871, -0.0000025870,0.0000025866,0.0000025862,0.0000025860,0.0000025858, -0.0000025856,0.0000025851,0.0000025841,0.0000025825,0.0000025810, -0.0000025823,0.0000025885,0.0000025969,0.0000026033,0.0000026077, -0.0000026138,0.0000026216,0.0000026253,0.0000026243,0.0000026224, -0.0000026226,0.0000026251,0.0000026272,0.0000026271,0.0000026263, -0.0000026270,0.0000026302,0.0000026345,0.0000026355,0.0000026331, -0.0000026290,0.0000026280,0.0000026312,0.0000026366,0.0000026434, -0.0000026529,0.0000026647,0.0000026760,0.0000026853,0.0000026936, -0.0000027019,0.0000027097,0.0000027173,0.0000027241,0.0000027283, -0.0000027281,0.0000027220,0.0000027105,0.0000026980,0.0000026900, -0.0000026884,0.0000026931,0.0000027019,0.0000027096,0.0000027162, -0.0000027209,0.0000027233,0.0000027245,0.0000027248,0.0000027233, -0.0000027148,0.0000026969,0.0000026729,0.0000026501,0.0000026361, -0.0000026306,0.0000026283,0.0000026252,0.0000026214,0.0000026175, -0.0000026155,0.0000026144,0.0000026130,0.0000026100,0.0000026058, -0.0000026011,0.0000025953,0.0000025876,0.0000025810,0.0000025803, -0.0000025850,0.0000025906,0.0000025934,0.0000025933,0.0000025903, -0.0000025862,0.0000025804,0.0000025729,0.0000025665,0.0000025638, -0.0000025649,0.0000025669,0.0000025660,0.0000025610,0.0000025539, -0.0000025474,0.0000025416,0.0000025356,0.0000025298,0.0000025271, -0.0000025293,0.0000025376,0.0000025481,0.0000025563,0.0000025616, -0.0000025675,0.0000025741,0.0000025828,0.0000025975,0.0000026187, -0.0000026413,0.0000026598,0.0000026726,0.0000026803,0.0000026854, -0.0000026898,0.0000026939,0.0000026977,0.0000027017,0.0000027059, -0.0000027097,0.0000027129,0.0000027158,0.0000027198,0.0000027261, -0.0000027329,0.0000027363,0.0000027360,0.0000027349,0.0000027348, -0.0000027343,0.0000027318,0.0000027270,0.0000027219,0.0000027177, -0.0000027151,0.0000027136,0.0000027124,0.0000027112,0.0000027104, -0.0000027110,0.0000027141,0.0000027174,0.0000027199,0.0000027218, -0.0000027240,0.0000027246,0.0000027227,0.0000027203,0.0000027182, -0.0000027173,0.0000027181,0.0000027195,0.0000027199,0.0000027198, -0.0000027203,0.0000027222,0.0000027267,0.0000027343,0.0000027426, -0.0000027505,0.0000027602,0.0000027703,0.0000027768,0.0000027854, -0.0000028025,0.0000028134,0.0000028115,0.0000028101,0.0000028119, -0.0000028102,0.0000028043,0.0000027985,0.0000027956,0.0000027948, -0.0000027947,0.0000027947,0.0000027961,0.0000028005,0.0000028070, -0.0000028133,0.0000028175,0.0000028181,0.0000028154,0.0000028105, -0.0000028058,0.0000028028,0.0000027998,0.0000027975,0.0000027933, -0.0000027881,0.0000027808,0.0000027716,0.0000027619,0.0000027536, -0.0000027462,0.0000027397,0.0000027348,0.0000027320,0.0000027315, -0.0000027326,0.0000027337,0.0000027338,0.0000027354,0.0000027374, -0.0000027380,0.0000027358,0.0000027292,0.0000027185,0.0000027025, -0.0000026819,0.0000026599,0.0000026405,0.0000026263,0.0000026162, -0.0000026077,0.0000025996,0.0000025919,0.0000025853,0.0000025817, -0.0000025816,0.0000025827,0.0000025826,0.0000025799,0.0000025752, -0.0000025702,0.0000025659,0.0000025620,0.0000025586,0.0000025569, -0.0000025563,0.0000025568,0.0000025567,0.0000025567,0.0000025544, -0.0000025525,0.0000025530,0.0000025528,0.0000025512,0.0000025484, -0.0000025473,0.0000025489,0.0000025530,0.0000025574,0.0000025627, -0.0000025714,0.0000025825,0.0000025965,0.0000026119,0.0000026269, -0.0000026411,0.0000026533,0.0000026632,0.0000026694,0.0000026714, -0.0000026694,0.0000026664,0.0000026636,0.0000026603,0.0000026562, -0.0000026535,0.0000026529,0.0000026524,0.0000026525,0.0000026536, -0.0000026545,0.0000026550,0.0000026558,0.0000026554,0.0000026533, -0.0000026496,0.0000026469,0.0000026451,0.0000026431,0.0000026414, -0.0000026414,0.0000026444,0.0000026513,0.0000026591,0.0000026659, -0.0000026740,0.0000026817,0.0000026868,0.0000026890,0.0000026891, -0.0000026871,0.0000026858,0.0000026836,0.0000026781,0.0000026704, -0.0000026634,0.0000026618,0.0000026617,0.0000026565,0.0000026549, -0.0000026678,0.0000026831,0.0000026856,0.0000026801,0.0000026732, -0.0000026667,0.0000026496,0.0000026116,0.0000025828,0.0000025855, -0.0000026049,0.0000026156,0.0000026154,0.0000026195,0.0000026325, -0.0000026480,0.0000026595,0.0000026662,0.0000026677,0.0000026645, -0.0000026623,0.0000026691,0.0000026909,0.0000027186,0.0000027422, -0.0000027570,0.0000027642,0.0000027628,0.0000027568,0.0000027549, -0.0000027636,0.0000027787,0.0000027925,0.0000028014,0.0000028054, -0.0000028060,0.0000028000,0.0000027908,0.0000027887,0.0000027941, -0.0000027980,0.0000027978,0.0000027964,0.0000027948,0.0000027922, -0.0000027901,0.0000027881,0.0000027819,0.0000027722,0.0000027701, -0.0000027835,0.0000027981,0.0000028007,0.0000027972,0.0000027966, -0.0000027977,0.0000027979,0.0000027990,0.0000028019,0.0000028048, -0.0000028051,0.0000028024,0.0000027969,0.0000027904,0.0000027842, -0.0000027799,0.0000027776,0.0000027748,0.0000027705,0.0000027665, -0.0000027633,0.0000027622,0.0000027620,0.0000027616,0.0000027587, -0.0000027513,0.0000027434,0.0000027394,0.0000027305,0.0000027082, -0.0000026855,0.0000026777,0.0000026807,0.0000026929,0.0000027074, -0.0000027187,0.0000027281,0.0000027349,0.0000027375,0.0000027377, -0.0000027386,0.0000027404,0.0000027427,0.0000027462,0.0000027504, -0.0000027513,0.0000027462,0.0000027342,0.0000027203,0.0000027090, -0.0000027020,0.0000026979,0.0000026925,0.0000026836,0.0000026717, -0.0000026598,0.0000026503,0.0000026418,0.0000026335,0.0000026280, -0.0000026260,0.0000026255,0.0000026229,0.0000026176,0.0000026122, -0.0000026012,0.0000025790,0.0000025563,0.0000025444,0.0000025396, -0.0000025339,0.0000025278,0.0000025244,0.0000025239,0.0000025241, -0.0000025244,0.0000025248,0.0000025256,0.0000025270,0.0000025287, -0.0000025305,0.0000025315,0.0000025315,0.0000025299,0.0000025268, -0.0000025230,0.0000025211,0.0000025208,0.0000025228,0.0000025243, -0.0000025236,0.0000025209,0.0000025188,0.0000025177,0.0000025150, -0.0000025092,0.0000025061,0.0000025134,0.0000025327,0.0000025559, -0.0000025726,0.0000025799,0.0000025818,0.0000025828,0.0000025841, -0.0000025843,0.0000025832,0.0000025817,0.0000025803,0.0000025788, -0.0000025784,0.0000025812,0.0000025885,0.0000025975,0.0000026035, -0.0000026049,0.0000026038,0.0000026026,0.0000026013,0.0000025981, -0.0000025930,0.0000025897,0.0000025909,0.0000025977,0.0000026074, -0.0000026168,0.0000026246,0.0000026320,0.0000026393,0.0000026453, -0.0000026513,0.0000026596,0.0000026685,0.0000026758,0.0000026812, -0.0000026842,0.0000026861,0.0000026892,0.0000026943,0.0000027005, -0.0000027068,0.0000027129,0.0000027171,0.0000027184,0.0000027164, -0.0000027139,0.0000027133,0.0000027159,0.0000027194,0.0000027227, -0.0000027236,0.0000027198,0.0000027098,0.0000027021,0.0000027041, -0.0000027163,0.0000027328,0.0000027475,0.0000027581,0.0000027650, -0.0000027692,0.0000027712,0.0000027684,0.0000027588,0.0000027472, -0.0000027431,0.0000027495,0.0000027645,0.0000027822,0.0000027982, -0.0000028100,0.0000028177,0.0000028230,0.0000028247,0.0000028205, -0.0000028085,0.0000027955,0.0000027883,0.0000027864,0.0000027853, -0.0000027837,0.0000027830,0.0000027830,0.0000027823,0.0000027801, -0.0000027769,0.0000027749,0.0000027748,0.0000027752,0.0000027763, -0.0000027787,0.0000027778,0.0000027719,0.0000027663,0.0000027659, -0.0000027674,0.0000027676,0.0000027684,0.0000027712,0.0000027756, -0.0000027796,0.0000027806,0.0000027785,0.0000027754,0.0000027724, -0.0000027698,0.0000027703,0.0000027732,0.0000027703,0.0000027579, -0.0000027451,0.0000027370,0.0000027284,0.0000027202,0.0000027169, -0.0000027144,0.0000027081,0.0000027020,0.0000026985,0.0000026952, -0.0000026903,0.0000026872,0.0000026892,0.0000026951,0.0000026973, -0.0000026923,0.0000026800,0.0000026693,0.0000026663,0.0000026668, -0.0000026619,0.0000026465,0.0000026254,0.0000026081,0.0000025978, -0.0000025922,0.0000025883,0.0000025833,0.0000025774,0.0000025755, -0.0000025797,0.0000025878,0.0000025925,0.0000025917,0.0000025875, -0.0000025828,0.0000025804,0.0000025810,0.0000025843,0.0000025878, -0.0000025897,0.0000025892,0.0000025822,0.0000025685,0.0000025536, -0.0000025401,0.0000025243,0.0000025054,0.0000024907,0.0000024848, -0.0000024839,0.0000024831,0.0000024810,0.0000024791,0.0000024799, -0.0000024840,0.0000024877,0.0000024882,0.0000024847,0.0000024769, -0.0000024672,0.0000024590,0.0000024551,0.0000024537,0.0000024516, -0.0000024476,0.0000024404,0.0000024255,0.0000024070,0.0000024117, -0.0000024624,0.0000025225,0.0000025494,0.0000025810,0.0000026437, -0.0000027015,0.0000027431,0.0000027687,0.0000027676,0.0000027575, -0.0000027479,0.0000027383,0.0000027341,0.0000027355,0.0000027404, -0.0000027475,0.0000027552,0.0000027608,0.0000027644,0.0000027653, -0.0000027650,0.0000027638,0.0000027628,0.0000027630,0.0000027627, -0.0000027605,0.0000027561,0.0000027483,0.0000027372,0.0000027296, -0.0000027233,0.0000027076,0.0000026971,0.0000026962,0.0000026967, -0.0000026998,0.0000026993,0.0000026975,0.0000026969,0.0000026982, -0.0000026986,0.0000026961,0.0000026919,0.0000026885,0.0000026866, -0.0000026860,0.0000026876,0.0000026896,0.0000026916,0.0000026920, -0.0000026877,0.0000026815,0.0000026794,0.0000026818,0.0000026844, -0.0000026830,0.0000026797,0.0000026770,0.0000026761,0.0000026792, -0.0000026858,0.0000026934,0.0000026920,0.0000026892,0.0000026906, -0.0000026941,0.0000026965,0.0000026971,0.0000026954,0.0000026933, -0.0000026911,0.0000026889,0.0000026877,0.0000026875,0.0000026868, -0.0000026853,0.0000026832,0.0000026798,0.0000026762,0.0000026740, -0.0000026746,0.0000026734,0.0000026674,0.0000026589,0.0000026484, -0.0000026308,0.0000026004,0.0000025646,0.0000025335,0.0000025076, -0.0000024861,0.0000024735,0.0000024681,0.0000024658,0.0000024637, -0.0000024610,0.0000024575,0.0000024520,0.0000024443,0.0000024349, -0.0000024262,0.0000024203,0.0000024187,0.0000024201,0.0000024224, -0.0000024238,0.0000024247,0.0000024253,0.0000024253,0.0000024243, -0.0000024216,0.0000024174,0.0000024148,0.0000024163,0.0000024187, -0.0000024183,0.0000024159,0.0000024143,0.0000024143,0.0000024150, -0.0000024134,0.0000024089,0.0000024040,0.0000024025,0.0000024043, -0.0000024081,0.0000024117,0.0000024141,0.0000024145,0.0000024132, -0.0000024102,0.0000024059,0.0000023996,0.0000023897,0.0000023778, -0.0000023700,0.0000023692,0.0000023739,0.0000023808,0.0000023861, -0.0000023894,0.0000023907,0.0000023894,0.0000023853,0.0000023815, -0.0000023803,0.0000023801,0.0000023792,0.0000023786,0.0000023773, -0.0000023711,0.0000023628,0.0000023646,0.0000023798,0.0000023918, -0.0000023945,0.0000024044,0.0000024227,0.0000024402,0.0000024468, -0.0000024543,0.0000025123,0.0000025721,0.0000025919,0.0000025977, -0.0000025996,0.0000025819,0.0000025719,0.0000025747,0.0000025781, -0.0000025477,0.0000025177,0.0000025399,0.0000026049,0.0000026631, -0.0000027074,0.0000027324,0.0000027520,0.0000027558,0.0000027501, -0.0000027469,0.0000027452,0.0000027436,0.0000027444,0.0000027469, -0.0000027476,0.0000027458,0.0000027436,0.0000027414,0.0000027411, -0.0000027410,0.0000027411,0.0000027406,0.0000027399,0.0000027381, -0.0000027356,0.0000027326,0.0000027296,0.0000027272,0.0000027247, -0.0000027225,0.0000027218,0.0000027221,0.0000027229,0.0000027235, -0.0000027180,0.0000027185,0.0000027193,0.0000027201,0.0000027214, -0.0000027225,0.0000027230,0.0000027217,0.0000027169,0.0000027084, -0.0000026973,0.0000026868,0.0000026824,0.0000026803,0.0000026835, -0.0000026902,0.0000026956,0.0000026966,0.0000026931,0.0000026865, -0.0000026803,0.0000026767,0.0000026739,0.0000026718,0.0000026727, -0.0000026751,0.0000026750,0.0000026747,0.0000026783,0.0000026801, -0.0000026773,0.0000026750,0.0000026795,0.0000026880,0.0000026894, -0.0000026797,0.0000026673,0.0000026601,0.0000026557,0.0000026474, -0.0000026272,0.0000026031,0.0000025831,0.0000025677,0.0000025619, -0.0000025598,0.0000025537,0.0000025462,0.0000025430,0.0000025426, -0.0000025420,0.0000025411,0.0000025399,0.0000025386,0.0000025388, -0.0000025410,0.0000025455,0.0000025493,0.0000025508,0.0000025505, -0.0000025490,0.0000025485,0.0000025482,0.0000025475,0.0000025471, -0.0000025317,0.0000024924,0.0000024670,0.0000024590,0.0000024476, -0.0000024402,0.0000024392,0.0000024342,0.0000024267,0.0000024309, -0.0000024465,0.0000024528,0.0000024527,0.0000024572,0.0000024646, -0.0000024718,0.0000024781,0.0000024806,0.0000024771,0.0000024712, -0.0000024693,0.0000024702,0.0000024749,0.0000024819,0.0000024905, -0.0000025061,0.0000025238,0.0000025491,0.0000025708,0.0000025777, -0.0000025778,0.0000025775,0.0000025768,0.0000025760,0.0000025715, -0.0000025613,0.0000025564,0.0000025509,0.0000025448,0.0000025517, -0.0000025668,0.0000025745,0.0000025783,0.0000025779,0.0000025700, -0.0000025630,0.0000025568,0.0000025510,0.0000025474,0.0000025416, -0.0000025312,0.0000025212,0.0000025171,0.0000025189,0.0000025248, -0.0000025339,0.0000025445,0.0000025537,0.0000025573,0.0000025570, -0.0000025524,0.0000025437,0.0000025333,0.0000025267,0.0000025269, -0.0000025334,0.0000025434,0.0000025479,0.0000025462,0.0000025394, -0.0000025335,0.0000025296,0.0000025222,0.0000025125,0.0000025109, -0.0000025202,0.0000025330,0.0000025366,0.0000025284,0.0000025135, -0.0000024984,0.0000024871,0.0000024816,0.0000024791,0.0000024802, -0.0000024846,0.0000025001,0.0000025278,0.0000025604,0.0000025850, -0.0000025975,0.0000026036,0.0000026044,0.0000025971,0.0000025796, -0.0000025607,0.0000025494,0.0000025471,0.0000025490,0.0000025537, -0.0000025594,0.0000025650,0.0000025699,0.0000025748,0.0000025795, -0.0000025826,0.0000025841,0.0000025837,0.0000025819,0.0000025799, -0.0000025781,0.0000025765,0.0000025748,0.0000025736,0.0000025734, -0.0000025752,0.0000025782,0.0000025812,0.0000025842,0.0000025856, -0.0000025871,0.0000025877,0.0000025879,0.0000025875,0.0000025867, -0.0000025856,0.0000025847,0.0000025841,0.0000025843,0.0000025844, -0.0000025835,0.0000025819,0.0000025824,0.0000025867,0.0000025934, -0.0000025999,0.0000026059,0.0000026131,0.0000026208,0.0000026242, -0.0000026240,0.0000026235,0.0000026243,0.0000026260,0.0000026261, -0.0000026233,0.0000026213,0.0000026220,0.0000026242,0.0000026259, -0.0000026252,0.0000026220,0.0000026188,0.0000026190,0.0000026225, -0.0000026294,0.0000026388,0.0000026501,0.0000026611,0.0000026709, -0.0000026797,0.0000026887,0.0000026975,0.0000027055,0.0000027139, -0.0000027221,0.0000027272,0.0000027272,0.0000027214,0.0000027106, -0.0000026987,0.0000026902,0.0000026877,0.0000026891,0.0000026946, -0.0000026998,0.0000027048,0.0000027115,0.0000027186,0.0000027241, -0.0000027246,0.0000027157,0.0000026957,0.0000026703,0.0000026458, -0.0000026280,0.0000026217,0.0000026227,0.0000026250,0.0000026251, -0.0000026220,0.0000026175,0.0000026145,0.0000026130,0.0000026108, -0.0000026064,0.0000026008,0.0000025958,0.0000025905,0.0000025837, -0.0000025769,0.0000025751,0.0000025785,0.0000025842,0.0000025880, -0.0000025889,0.0000025881,0.0000025862,0.0000025816,0.0000025741, -0.0000025672,0.0000025642,0.0000025652,0.0000025678,0.0000025685, -0.0000025652,0.0000025581,0.0000025499,0.0000025416,0.0000025324, -0.0000025230,0.0000025171,0.0000025167,0.0000025241,0.0000025355, -0.0000025458,0.0000025512,0.0000025548,0.0000025591,0.0000025636, -0.0000025715,0.0000025867,0.0000026088,0.0000026335,0.0000026553, -0.0000026711,0.0000026805,0.0000026857,0.0000026888,0.0000026912, -0.0000026940,0.0000026977,0.0000027018,0.0000027052,0.0000027078, -0.0000027111,0.0000027168,0.0000027238,0.0000027284,0.0000027291, -0.0000027273,0.0000027254,0.0000027240,0.0000027229,0.0000027216, -0.0000027200,0.0000027192,0.0000027198,0.0000027213,0.0000027224, -0.0000027220,0.0000027197,0.0000027166,0.0000027139,0.0000027130, -0.0000027142,0.0000027161,0.0000027186,0.0000027214,0.0000027221, -0.0000027212,0.0000027198,0.0000027184,0.0000027179,0.0000027189, -0.0000027198,0.0000027193,0.0000027186,0.0000027190,0.0000027213, -0.0000027278,0.0000027380,0.0000027464,0.0000027514,0.0000027600, -0.0000027724,0.0000027796,0.0000027880,0.0000028041,0.0000028134, -0.0000028113,0.0000028101,0.0000028102,0.0000028063,0.0000027997, -0.0000027962,0.0000027962,0.0000027976,0.0000027984,0.0000027985, -0.0000028004,0.0000028056,0.0000028119,0.0000028167,0.0000028188, -0.0000028177,0.0000028154,0.0000028131,0.0000028116,0.0000028094, -0.0000028052,0.0000028001,0.0000027943,0.0000027870,0.0000027778, -0.0000027673,0.0000027576,0.0000027492,0.0000027425,0.0000027372, -0.0000027333,0.0000027309,0.0000027297,0.0000027301,0.0000027316, -0.0000027345,0.0000027392,0.0000027427,0.0000027431,0.0000027406, -0.0000027360,0.0000027303,0.0000027212,0.0000027066,0.0000026875, -0.0000026674,0.0000026490,0.0000026321,0.0000026174,0.0000026060, -0.0000025975,0.0000025914,0.0000025897,0.0000025913,0.0000025931, -0.0000025927,0.0000025888,0.0000025817,0.0000025736,0.0000025659, -0.0000025606,0.0000025565,0.0000025519,0.0000025482,0.0000025476, -0.0000025485,0.0000025490,0.0000025463,0.0000025442,0.0000025440, -0.0000025413,0.0000025346,0.0000025264,0.0000025215,0.0000025212, -0.0000025235,0.0000025271,0.0000025337,0.0000025448,0.0000025597, -0.0000025767,0.0000025915,0.0000026039,0.0000026152,0.0000026257, -0.0000026374,0.0000026493,0.0000026589,0.0000026632,0.0000026616, -0.0000026582,0.0000026546,0.0000026500,0.0000026463,0.0000026455, -0.0000026462,0.0000026474,0.0000026497,0.0000026511,0.0000026521, -0.0000026524,0.0000026512,0.0000026477,0.0000026423,0.0000026396, -0.0000026393,0.0000026404,0.0000026419,0.0000026437,0.0000026469, -0.0000026519,0.0000026571,0.0000026628,0.0000026704,0.0000026774, -0.0000026821,0.0000026841,0.0000026845,0.0000026839,0.0000026834, -0.0000026819,0.0000026762,0.0000026676,0.0000026595,0.0000026559, -0.0000026565,0.0000026556,0.0000026530,0.0000026590,0.0000026755, -0.0000026841,0.0000026808,0.0000026729,0.0000026655,0.0000026606, -0.0000026470,0.0000026115,0.0000025857,0.0000025887,0.0000026032, -0.0000026076,0.0000026031,0.0000026019,0.0000026126,0.0000026316, -0.0000026496,0.0000026616,0.0000026658,0.0000026648,0.0000026633, -0.0000026697,0.0000026865,0.0000027104,0.0000027340,0.0000027522, -0.0000027607,0.0000027571,0.0000027495,0.0000027506,0.0000027627, -0.0000027793,0.0000027943,0.0000028039,0.0000028067,0.0000028040, -0.0000027949,0.0000027874,0.0000027887,0.0000027949,0.0000027975, -0.0000027955,0.0000027911,0.0000027869,0.0000027833,0.0000027813, -0.0000027788,0.0000027728,0.0000027666,0.0000027688,0.0000027836, -0.0000027985,0.0000028023,0.0000027995,0.0000027984,0.0000027994, -0.0000027998,0.0000028000,0.0000028009,0.0000028012,0.0000028000, -0.0000027965,0.0000027917,0.0000027861,0.0000027810,0.0000027771, -0.0000027733,0.0000027694,0.0000027661,0.0000027639,0.0000027632, -0.0000027631,0.0000027625,0.0000027597,0.0000027539,0.0000027479, -0.0000027453,0.0000027381,0.0000027164,0.0000026915,0.0000026802, -0.0000026815,0.0000026919,0.0000027061,0.0000027189,0.0000027306, -0.0000027382,0.0000027397,0.0000027392,0.0000027391,0.0000027399, -0.0000027411,0.0000027422,0.0000027443,0.0000027464,0.0000027458, -0.0000027396,0.0000027277,0.0000027142,0.0000027034,0.0000026965, -0.0000026907,0.0000026828,0.0000026718,0.0000026601,0.0000026512, -0.0000026435,0.0000026349,0.0000026290,0.0000026283,0.0000026290, -0.0000026268,0.0000026202,0.0000026124,0.0000025972,0.0000025717, -0.0000025503,0.0000025416,0.0000025372,0.0000025310,0.0000025259, -0.0000025246,0.0000025245,0.0000025242,0.0000025244,0.0000025252, -0.0000025262,0.0000025273,0.0000025281,0.0000025287,0.0000025292, -0.0000025302,0.0000025312,0.0000025314,0.0000025284,0.0000025262, -0.0000025228,0.0000025202,0.0000025196,0.0000025214,0.0000025229, -0.0000025232,0.0000025212,0.0000025185,0.0000025177,0.0000025165, -0.0000025114,0.0000025069,0.0000025131,0.0000025324,0.0000025556, -0.0000025718,0.0000025785,0.0000025799,0.0000025799,0.0000025797, -0.0000025789,0.0000025774,0.0000025751,0.0000025723,0.0000025710, -0.0000025727,0.0000025783,0.0000025851,0.0000025890,0.0000025896, -0.0000025888,0.0000025877,0.0000025865,0.0000025841,0.0000025790, -0.0000025734,0.0000025721,0.0000025780,0.0000025902,0.0000026048, -0.0000026170,0.0000026248,0.0000026314,0.0000026387,0.0000026465, -0.0000026556,0.0000026645,0.0000026708,0.0000026749,0.0000026764, -0.0000026759,0.0000026752,0.0000026775,0.0000026834,0.0000026910, -0.0000026998,0.0000027101,0.0000027193,0.0000027248,0.0000027247, -0.0000027217,0.0000027189,0.0000027200,0.0000027229,0.0000027245, -0.0000027223,0.0000027132,0.0000027016,0.0000026954,0.0000026988, -0.0000027120,0.0000027297,0.0000027466,0.0000027588,0.0000027655, -0.0000027688,0.0000027686,0.0000027631,0.0000027526,0.0000027431, -0.0000027416,0.0000027497,0.0000027668,0.0000027870,0.0000028028, -0.0000028126,0.0000028193,0.0000028237,0.0000028239,0.0000028159, -0.0000028028,0.0000027929,0.0000027896,0.0000027895,0.0000027894, -0.0000027891,0.0000027885,0.0000027870,0.0000027838,0.0000027798, -0.0000027769,0.0000027765,0.0000027772,0.0000027776,0.0000027796, -0.0000027812,0.0000027789,0.0000027710,0.0000027648,0.0000027646, -0.0000027668,0.0000027688,0.0000027716,0.0000027755,0.0000027790, -0.0000027799,0.0000027778,0.0000027741,0.0000027692,0.0000027646, -0.0000027639,0.0000027684,0.0000027704,0.0000027635,0.0000027516, -0.0000027429,0.0000027356,0.0000027276,0.0000027223,0.0000027191, -0.0000027132,0.0000027063,0.0000027013,0.0000026965,0.0000026904, -0.0000026870,0.0000026890,0.0000026952,0.0000026974,0.0000026940, -0.0000026852,0.0000026780,0.0000026761,0.0000026742,0.0000026661, -0.0000026499,0.0000026298,0.0000026124,0.0000026003,0.0000025932, -0.0000025893,0.0000025852,0.0000025786,0.0000025732,0.0000025737, -0.0000025797,0.0000025849,0.0000025851,0.0000025814,0.0000025768, -0.0000025748,0.0000025767,0.0000025817,0.0000025867,0.0000025888, -0.0000025875,0.0000025784,0.0000025644,0.0000025494,0.0000025306, -0.0000025072,0.0000024893,0.0000024831,0.0000024827,0.0000024828, -0.0000024810,0.0000024788,0.0000024791,0.0000024820,0.0000024851, -0.0000024861,0.0000024836,0.0000024778,0.0000024701,0.0000024615, -0.0000024535,0.0000024477,0.0000024447,0.0000024436,0.0000024420, -0.0000024377,0.0000024272,0.0000024104,0.0000024035,0.0000024358, -0.0000024980,0.0000025374,0.0000025609,0.0000026145,0.0000026785, -0.0000027237,0.0000027575,0.0000027680,0.0000027613,0.0000027518, -0.0000027437,0.0000027392,0.0000027391,0.0000027420,0.0000027476, -0.0000027543,0.0000027592,0.0000027612,0.0000027613,0.0000027606, -0.0000027601,0.0000027604,0.0000027626,0.0000027647,0.0000027641, -0.0000027592,0.0000027513,0.0000027404,0.0000027304,0.0000027252, -0.0000027121,0.0000026997,0.0000026969,0.0000026973,0.0000027007, -0.0000027011,0.0000026994,0.0000026982,0.0000027000,0.0000027017, -0.0000027005,0.0000026962,0.0000026907,0.0000026866,0.0000026852, -0.0000026870,0.0000026904,0.0000026924,0.0000026900,0.0000026819, -0.0000026749,0.0000026741,0.0000026765,0.0000026781,0.0000026757, -0.0000026733,0.0000026728,0.0000026753,0.0000026794,0.0000026847, -0.0000026904,0.0000026891,0.0000026859,0.0000026877,0.0000026919, -0.0000026940,0.0000026961,0.0000026964,0.0000026949,0.0000026934, -0.0000026915,0.0000026899,0.0000026889,0.0000026878,0.0000026861, -0.0000026832,0.0000026787,0.0000026746,0.0000026732,0.0000026737, -0.0000026710,0.0000026643,0.0000026568,0.0000026462,0.0000026257, -0.0000025937,0.0000025603,0.0000025341,0.0000025140,0.0000024943, -0.0000024786,0.0000024702,0.0000024669,0.0000024655,0.0000024645, -0.0000024621,0.0000024567,0.0000024481,0.0000024376,0.0000024277, -0.0000024210,0.0000024183,0.0000024192,0.0000024213,0.0000024218, -0.0000024210,0.0000024203,0.0000024204,0.0000024205,0.0000024202, -0.0000024193,0.0000024167,0.0000024138,0.0000024142,0.0000024182, -0.0000024210,0.0000024206,0.0000024170,0.0000024129,0.0000024092, -0.0000024056,0.0000024024,0.0000024015,0.0000024026,0.0000024055, -0.0000024089,0.0000024115,0.0000024124,0.0000024114,0.0000024082, -0.0000024044,0.0000024011,0.0000023983,0.0000023927,0.0000023812, -0.0000023697,0.0000023660,0.0000023692,0.0000023777,0.0000023865, -0.0000023916,0.0000023925,0.0000023907,0.0000023860,0.0000023813, -0.0000023801,0.0000023812,0.0000023826,0.0000023832,0.0000023830, -0.0000023795,0.0000023694,0.0000023644,0.0000023731,0.0000023881, -0.0000023932,0.0000023994,0.0000024171,0.0000024368,0.0000024449, -0.0000024490,0.0000025063,0.0000025687,0.0000025894,0.0000025961, -0.0000025980,0.0000025790,0.0000025716,0.0000025760,0.0000025786, -0.0000025498,0.0000025146,0.0000025339,0.0000025860,0.0000026506, -0.0000026902,0.0000027190,0.0000027387,0.0000027491,0.0000027471, -0.0000027419,0.0000027398,0.0000027394,0.0000027393,0.0000027408, -0.0000027436,0.0000027449,0.0000027441,0.0000027441,0.0000027438, -0.0000027439,0.0000027437,0.0000027434,0.0000027430,0.0000027420, -0.0000027404,0.0000027379,0.0000027354,0.0000027322,0.0000027283, -0.0000027245,0.0000027223,0.0000027217,0.0000027199,0.0000027182, -0.0000027057,0.0000027098,0.0000027138,0.0000027168,0.0000027185, -0.0000027181,0.0000027159,0.0000027116,0.0000027046,0.0000026970, -0.0000026909,0.0000026850,0.0000026827,0.0000026826,0.0000026864, -0.0000026918,0.0000026952,0.0000026936,0.0000026868,0.0000026779, -0.0000026712,0.0000026686,0.0000026673,0.0000026663,0.0000026673, -0.0000026703,0.0000026721,0.0000026720,0.0000026742,0.0000026775, -0.0000026773,0.0000026757,0.0000026766,0.0000026838,0.0000026904, -0.0000026879,0.0000026765,0.0000026654,0.0000026590,0.0000026541, -0.0000026407,0.0000026158,0.0000025900,0.0000025706,0.0000025621, -0.0000025609,0.0000025581,0.0000025501,0.0000025419,0.0000025363, -0.0000025336,0.0000025328,0.0000025324,0.0000025323,0.0000025344, -0.0000025389,0.0000025453,0.0000025514,0.0000025546,0.0000025551, -0.0000025523,0.0000025493,0.0000025478,0.0000025468,0.0000025473, -0.0000025440,0.0000025143,0.0000024786,0.0000024647,0.0000024549, -0.0000024449,0.0000024429,0.0000024411,0.0000024324,0.0000024275, -0.0000024372,0.0000024503,0.0000024522,0.0000024544,0.0000024608, -0.0000024669,0.0000024730,0.0000024793,0.0000024822,0.0000024789, -0.0000024733,0.0000024714,0.0000024730,0.0000024782,0.0000024849, -0.0000024909,0.0000025043,0.0000025215,0.0000025438,0.0000025671, -0.0000025776,0.0000025787,0.0000025778,0.0000025771,0.0000025766, -0.0000025708,0.0000025600,0.0000025554,0.0000025488,0.0000025443, -0.0000025537,0.0000025679,0.0000025748,0.0000025780,0.0000025774, -0.0000025707,0.0000025632,0.0000025554,0.0000025494,0.0000025447, -0.0000025354,0.0000025209,0.0000025104,0.0000025087,0.0000025111, -0.0000025169,0.0000025253,0.0000025361,0.0000025475,0.0000025564, -0.0000025594,0.0000025576,0.0000025500,0.0000025400,0.0000025328, -0.0000025303,0.0000025345,0.0000025427,0.0000025484,0.0000025481, -0.0000025429,0.0000025368,0.0000025326,0.0000025283,0.0000025210, -0.0000025146,0.0000025166,0.0000025262,0.0000025365,0.0000025383, -0.0000025296,0.0000025147,0.0000024989,0.0000024861,0.0000024792, -0.0000024770,0.0000024765,0.0000024782,0.0000024882,0.0000025124, -0.0000025458,0.0000025746,0.0000025912,0.0000026003,0.0000026024, -0.0000025986,0.0000025836,0.0000025657,0.0000025533,0.0000025497, -0.0000025504,0.0000025550,0.0000025603,0.0000025647,0.0000025686, -0.0000025720,0.0000025735,0.0000025734,0.0000025717,0.0000025698, -0.0000025687,0.0000025687,0.0000025696,0.0000025712,0.0000025731, -0.0000025769,0.0000025815,0.0000025863,0.0000025906,0.0000025941, -0.0000025963,0.0000025975,0.0000025976,0.0000025968,0.0000025953, -0.0000025931,0.0000025901,0.0000025870,0.0000025852,0.0000025850, -0.0000025858,0.0000025863,0.0000025855,0.0000025853,0.0000025877, -0.0000025924,0.0000025986,0.0000026058,0.0000026138,0.0000026202, -0.0000026226,0.0000026225,0.0000026229,0.0000026245,0.0000026262, -0.0000026260,0.0000026227,0.0000026204,0.0000026216,0.0000026243, -0.0000026239,0.0000026194,0.0000026139,0.0000026104,0.0000026099, -0.0000026119,0.0000026179,0.0000026298,0.0000026448,0.0000026575, -0.0000026662,0.0000026738,0.0000026827,0.0000026924,0.0000027014, -0.0000027112,0.0000027212,0.0000027274,0.0000027281,0.0000027233, -0.0000027130,0.0000027007,0.0000026898,0.0000026836,0.0000026828, -0.0000026862,0.0000026915,0.0000026979,0.0000027078,0.0000027177, -0.0000027214,0.0000027154,0.0000026975,0.0000026721,0.0000026457, -0.0000026255,0.0000026157,0.0000026154,0.0000026192,0.0000026229, -0.0000026230,0.0000026186,0.0000026134,0.0000026113,0.0000026113, -0.0000026099,0.0000026051,0.0000025982,0.0000025921,0.0000025869, -0.0000025805,0.0000025734,0.0000025707,0.0000025727,0.0000025780, -0.0000025826,0.0000025849,0.0000025861,0.0000025859,0.0000025821, -0.0000025747,0.0000025677,0.0000025644,0.0000025649,0.0000025669, -0.0000025679,0.0000025662,0.0000025611,0.0000025524,0.0000025420, -0.0000025312,0.0000025212,0.0000025143,0.0000025122,0.0000025162, -0.0000025257,0.0000025368,0.0000025448,0.0000025493,0.0000025540, -0.0000025573,0.0000025598,0.0000025663,0.0000025807,0.0000026039, -0.0000026304,0.0000026535,0.0000026692,0.0000026782,0.0000026832, -0.0000026863,0.0000026887,0.0000026915,0.0000026948,0.0000026976, -0.0000026994,0.0000027011,0.0000027048,0.0000027108,0.0000027160, -0.0000027177,0.0000027169,0.0000027151,0.0000027133,0.0000027129, -0.0000027147,0.0000027165,0.0000027183,0.0000027216,0.0000027268, -0.0000027317,0.0000027340,0.0000027332,0.0000027292,0.0000027234, -0.0000027167,0.0000027120,0.0000027113,0.0000027117,0.0000027136, -0.0000027163,0.0000027178,0.0000027183,0.0000027182,0.0000027173, -0.0000027173,0.0000027183,0.0000027180,0.0000027162,0.0000027158, -0.0000027180,0.0000027225,0.0000027311,0.0000027426,0.0000027492, -0.0000027522,0.0000027619,0.0000027748,0.0000027810,0.0000027895, -0.0000028055,0.0000028134,0.0000028110,0.0000028081,0.0000028056, -0.0000028005,0.0000027967,0.0000027968,0.0000027987,0.0000028008, -0.0000028017,0.0000028020,0.0000028043,0.0000028095,0.0000028144, -0.0000028175,0.0000028176,0.0000028158,0.0000028136,0.0000028131, -0.0000028129,0.0000028118,0.0000028086,0.0000028040,0.0000027977, -0.0000027889,0.0000027780,0.0000027664,0.0000027558,0.0000027467, -0.0000027398,0.0000027352,0.0000027315,0.0000027290,0.0000027280, -0.0000027285,0.0000027303,0.0000027344,0.0000027396,0.0000027434, -0.0000027442,0.0000027433,0.0000027400,0.0000027357,0.0000027294, -0.0000027201,0.0000027086,0.0000026951,0.0000026791,0.0000026597, -0.0000026394,0.0000026215,0.0000026072,0.0000025967,0.0000025929, -0.0000025948,0.0000025971,0.0000025978,0.0000025957,0.0000025900, -0.0000025816,0.0000025719,0.0000025638,0.0000025565,0.0000025487, -0.0000025412,0.0000025391,0.0000025402,0.0000025409,0.0000025385, -0.0000025376,0.0000025382,0.0000025352,0.0000025267,0.0000025169, -0.0000025113,0.0000025105,0.0000025111,0.0000025125,0.0000025177, -0.0000025282,0.0000025435,0.0000025604,0.0000025742,0.0000025870, -0.0000025966,0.0000026027,0.0000026107,0.0000026230,0.0000026399, -0.0000026543,0.0000026580,0.0000026549,0.0000026512,0.0000026471, -0.0000026430,0.0000026409,0.0000026406,0.0000026417,0.0000026440, -0.0000026455,0.0000026472,0.0000026478,0.0000026461,0.0000026409, -0.0000026350,0.0000026335,0.0000026361,0.0000026403,0.0000026432, -0.0000026457,0.0000026481,0.0000026505,0.0000026540,0.0000026592, -0.0000026652,0.0000026707,0.0000026748,0.0000026770,0.0000026781, -0.0000026789,0.0000026785,0.0000026771,0.0000026721,0.0000026635, -0.0000026544,0.0000026500,0.0000026519,0.0000026545,0.0000026530, -0.0000026544,0.0000026668,0.0000026792,0.0000026802,0.0000026728, -0.0000026647,0.0000026584,0.0000026566,0.0000026437,0.0000026084, -0.0000025863,0.0000025880,0.0000025952,0.0000025947,0.0000025874, -0.0000025850,0.0000025979,0.0000026231,0.0000026461,0.0000026598, -0.0000026668,0.0000026690,0.0000026698,0.0000026724,0.0000026805, -0.0000027006,0.0000027268,0.0000027492,0.0000027558,0.0000027488, -0.0000027424,0.0000027472,0.0000027625,0.0000027819,0.0000027976, -0.0000028049,0.0000028051,0.0000027992,0.0000027905,0.0000027863, -0.0000027884,0.0000027934,0.0000027958,0.0000027913,0.0000027844, -0.0000027787,0.0000027753,0.0000027734,0.0000027708,0.0000027661, -0.0000027620,0.0000027665,0.0000027829,0.0000027986,0.0000028030, -0.0000028019,0.0000028003,0.0000028006,0.0000028010,0.0000028008, -0.0000027998,0.0000027982,0.0000027947,0.0000027894,0.0000027832, -0.0000027774,0.0000027720,0.0000027673,0.0000027647,0.0000027638, -0.0000027637,0.0000027640,0.0000027640,0.0000027629,0.0000027598, -0.0000027549,0.0000027511,0.0000027496,0.0000027433,0.0000027225, -0.0000026963,0.0000026826,0.0000026827,0.0000026923,0.0000027053, -0.0000027176,0.0000027306,0.0000027409,0.0000027441,0.0000027436, -0.0000027430,0.0000027429,0.0000027430,0.0000027427,0.0000027432, -0.0000027452,0.0000027466,0.0000027445,0.0000027360,0.0000027224, -0.0000027087,0.0000026985,0.0000026908,0.0000026824,0.0000026714, -0.0000026594,0.0000026501,0.0000026423,0.0000026338,0.0000026286, -0.0000026294,0.0000026318,0.0000026296,0.0000026222,0.0000026120, -0.0000025926,0.0000025648,0.0000025451,0.0000025384,0.0000025344, -0.0000025290,0.0000025260,0.0000025259,0.0000025255,0.0000025245, -0.0000025247,0.0000025257,0.0000025261,0.0000025259,0.0000025252, -0.0000025238,0.0000025222,0.0000025207,0.0000025208,0.0000025217, -0.0000025235,0.0000025260,0.0000025281,0.0000025268,0.0000025237, -0.0000025201,0.0000025175,0.0000025188,0.0000025224,0.0000025231, -0.0000025214,0.0000025189,0.0000025184,0.0000025177,0.0000025125, -0.0000025071,0.0000025123,0.0000025310,0.0000025538,0.0000025693, -0.0000025759,0.0000025774,0.0000025766,0.0000025748,0.0000025726, -0.0000025700,0.0000025677,0.0000025669,0.0000025677,0.0000025705, -0.0000025733,0.0000025747,0.0000025751,0.0000025739,0.0000025713, -0.0000025687,0.0000025665,0.0000025626,0.0000025569,0.0000025541, -0.0000025587,0.0000025725,0.0000025906,0.0000026069,0.0000026177, -0.0000026244,0.0000026319,0.0000026417,0.0000026518,0.0000026603, -0.0000026660,0.0000026693,0.0000026705,0.0000026693,0.0000026655, -0.0000026633,0.0000026654,0.0000026725,0.0000026827,0.0000026954, -0.0000027103,0.0000027239,0.0000027311,0.0000027324,0.0000027283, -0.0000027240,0.0000027234,0.0000027245,0.0000027237,0.0000027164, -0.0000027034,0.0000026924,0.0000026884,0.0000026940,0.0000027084, -0.0000027271,0.0000027448,0.0000027581,0.0000027652,0.0000027655, -0.0000027618,0.0000027546,0.0000027458,0.0000027404,0.0000027420, -0.0000027537,0.0000027742,0.0000027937,0.0000028060,0.0000028137, -0.0000028195,0.0000028220,0.0000028182,0.0000028081,0.0000027982, -0.0000027941,0.0000027939,0.0000027946,0.0000027947,0.0000027942, -0.0000027922,0.0000027882,0.0000027830,0.0000027787,0.0000027769, -0.0000027774,0.0000027779,0.0000027781,0.0000027794,0.0000027802, -0.0000027764,0.0000027663,0.0000027600,0.0000027614,0.0000027664, -0.0000027709,0.0000027747,0.0000027784,0.0000027802,0.0000027792, -0.0000027756,0.0000027701,0.0000027639,0.0000027620,0.0000027645, -0.0000027692,0.0000027675,0.0000027587,0.0000027494,0.0000027423, -0.0000027351,0.0000027281,0.0000027232,0.0000027177,0.0000027103, -0.0000027041,0.0000026985,0.0000026919,0.0000026873,0.0000026886, -0.0000026941,0.0000026962,0.0000026936,0.0000026884,0.0000026858, -0.0000026855,0.0000026812,0.0000026696,0.0000026528,0.0000026350, -0.0000026187,0.0000026056,0.0000025966,0.0000025918,0.0000025888, -0.0000025833,0.0000025758,0.0000025732,0.0000025764,0.0000025808, -0.0000025812,0.0000025771,0.0000025718,0.0000025696,0.0000025724, -0.0000025790,0.0000025853,0.0000025874,0.0000025840,0.0000025737, -0.0000025602,0.0000025429,0.0000025191,0.0000024961,0.0000024850, -0.0000024836,0.0000024828,0.0000024813,0.0000024799,0.0000024799, -0.0000024816,0.0000024835,0.0000024840,0.0000024827,0.0000024793, -0.0000024732,0.0000024655,0.0000024576,0.0000024506,0.0000024448, -0.0000024392,0.0000024354,0.0000024341,0.0000024330,0.0000024278, -0.0000024143,0.0000024032,0.0000024154,0.0000024701,0.0000025226, -0.0000025452,0.0000025838,0.0000026497,0.0000027022,0.0000027404, -0.0000027659,0.0000027661,0.0000027564,0.0000027480,0.0000027431, -0.0000027428,0.0000027446,0.0000027477,0.0000027524,0.0000027559, -0.0000027563,0.0000027551,0.0000027538,0.0000027538,0.0000027555, -0.0000027590,0.0000027637,0.0000027653,0.0000027625,0.0000027542, -0.0000027433,0.0000027317,0.0000027258,0.0000027155,0.0000027027, -0.0000026984,0.0000026985,0.0000027016,0.0000027025,0.0000027006, -0.0000026993,0.0000027010,0.0000027037,0.0000027040,0.0000027003, -0.0000026940,0.0000026883,0.0000026864,0.0000026890,0.0000026920, -0.0000026914,0.0000026852,0.0000026757,0.0000026697,0.0000026690, -0.0000026707,0.0000026710,0.0000026678,0.0000026673,0.0000026697, -0.0000026747,0.0000026806,0.0000026848,0.0000026883,0.0000026864, -0.0000026825,0.0000026838,0.0000026898,0.0000026924,0.0000026929, -0.0000026938,0.0000026938,0.0000026928,0.0000026909,0.0000026890, -0.0000026878,0.0000026867,0.0000026850,0.0000026819,0.0000026773, -0.0000026735,0.0000026725,0.0000026715,0.0000026671,0.0000026604, -0.0000026537,0.0000026429,0.0000026203,0.0000025895,0.0000025603, -0.0000025376,0.0000025218,0.0000025070,0.0000024902,0.0000024760, -0.0000024683,0.0000024658,0.0000024657,0.0000024650,0.0000024612, -0.0000024533,0.0000024424,0.0000024309,0.0000024219,0.0000024178, -0.0000024180,0.0000024208,0.0000024218,0.0000024206,0.0000024181, -0.0000024164,0.0000024163,0.0000024173,0.0000024184,0.0000024190, -0.0000024186,0.0000024163,0.0000024147,0.0000024173,0.0000024221, -0.0000024242,0.0000024230,0.0000024180,0.0000024119,0.0000024071, -0.0000024042,0.0000024035,0.0000024041,0.0000024053,0.0000024064, -0.0000024071,0.0000024072,0.0000024055,0.0000024015,0.0000023975, -0.0000023955,0.0000023946,0.0000023924,0.0000023848,0.0000023722, -0.0000023648,0.0000023667,0.0000023756,0.0000023854,0.0000023905, -0.0000023910,0.0000023895,0.0000023862,0.0000023816,0.0000023791, -0.0000023801,0.0000023826,0.0000023842,0.0000023842,0.0000023826, -0.0000023736,0.0000023636,0.0000023672,0.0000023829,0.0000023910, -0.0000023953,0.0000024118,0.0000024330,0.0000024423,0.0000024443, -0.0000025019,0.0000025665,0.0000025874,0.0000025947,0.0000025958, -0.0000025761,0.0000025714,0.0000025768,0.0000025786,0.0000025534, -0.0000025129,0.0000025257,0.0000025634,0.0000026344,0.0000026692, -0.0000027031,0.0000027227,0.0000027370,0.0000027423,0.0000027386, -0.0000027338,0.0000027333,0.0000027358,0.0000027376,0.0000027381, -0.0000027372,0.0000027366,0.0000027373,0.0000027381,0.0000027391, -0.0000027395,0.0000027390,0.0000027376,0.0000027357,0.0000027331, -0.0000027291,0.0000027247,0.0000027198,0.0000027143,0.0000027091, -0.0000027052,0.0000027030,0.0000027019,0.0000027026,0.0000027030, -0.0000027062,0.0000027091,0.0000027106,0.0000027106,0.0000027102, -0.0000027090,0.0000027060,0.0000027016,0.0000026967,0.0000026914, -0.0000026861,0.0000026838,0.0000026840,0.0000026877,0.0000026914, -0.0000026917,0.0000026861,0.0000026766,0.0000026672,0.0000026622, -0.0000026611,0.0000026608,0.0000026602,0.0000026609,0.0000026638, -0.0000026675,0.0000026685,0.0000026690,0.0000026722,0.0000026749, -0.0000026764,0.0000026766,0.0000026797,0.0000026871,0.0000026895, -0.0000026839,0.0000026728,0.0000026638,0.0000026583,0.0000026504, -0.0000026306,0.0000026015,0.0000025755,0.0000025617,0.0000025597, -0.0000025589,0.0000025537,0.0000025453,0.0000025370,0.0000025313, -0.0000025289,0.0000025273,0.0000025275,0.0000025300,0.0000025358, -0.0000025436,0.0000025515,0.0000025565,0.0000025584,0.0000025557, -0.0000025509,0.0000025480,0.0000025466,0.0000025474,0.0000025480, -0.0000025303,0.0000024926,0.0000024702,0.0000024593,0.0000024477, -0.0000024440,0.0000024444,0.0000024399,0.0000024297,0.0000024295, -0.0000024440,0.0000024521,0.0000024537,0.0000024590,0.0000024649, -0.0000024691,0.0000024747,0.0000024808,0.0000024840,0.0000024816, -0.0000024767,0.0000024749,0.0000024768,0.0000024822,0.0000024887, -0.0000024930,0.0000025043,0.0000025213,0.0000025403,0.0000025624, -0.0000025765,0.0000025798,0.0000025799,0.0000025792,0.0000025780, -0.0000025699,0.0000025589,0.0000025544,0.0000025468,0.0000025441, -0.0000025558,0.0000025694,0.0000025755,0.0000025787,0.0000025780, -0.0000025712,0.0000025626,0.0000025542,0.0000025476,0.0000025407, -0.0000025280,0.0000025127,0.0000025040,0.0000025038,0.0000025073, -0.0000025129,0.0000025192,0.0000025273,0.0000025384,0.0000025503, -0.0000025589,0.0000025592,0.0000025549,0.0000025470,0.0000025404, -0.0000025371,0.0000025384,0.0000025426,0.0000025465,0.0000025474, -0.0000025454,0.0000025404,0.0000025357,0.0000025324,0.0000025282, -0.0000025228,0.0000025190,0.0000025215,0.0000025291,0.0000025375, -0.0000025389,0.0000025315,0.0000025175,0.0000025004,0.0000024861, -0.0000024777,0.0000024750,0.0000024732,0.0000024712,0.0000024772, -0.0000024982,0.0000025328,0.0000025655,0.0000025861,0.0000025975, -0.0000026015,0.0000025998,0.0000025874,0.0000025717,0.0000025600, -0.0000025556,0.0000025561,0.0000025595,0.0000025619,0.0000025645, -0.0000025670,0.0000025679,0.0000025687,0.0000025684,0.0000025686, -0.0000025714,0.0000025751,0.0000025794,0.0000025845,0.0000025893, -0.0000025937,0.0000025975,0.0000025998,0.0000026006,0.0000026008, -0.0000026006,0.0000025998,0.0000025990,0.0000025984,0.0000025984, -0.0000025983,0.0000025963,0.0000025921,0.0000025883,0.0000025866, -0.0000025870,0.0000025885,0.0000025895,0.0000025894,0.0000025897, -0.0000025924,0.0000025983,0.0000026061,0.0000026143,0.0000026195, -0.0000026204,0.0000026200,0.0000026210,0.0000026236,0.0000026262, -0.0000026265,0.0000026239,0.0000026218,0.0000026240,0.0000026293, -0.0000026307,0.0000026255,0.0000026172,0.0000026114,0.0000026097, -0.0000026081,0.0000026090,0.0000026175,0.0000026333,0.0000026492, -0.0000026601,0.0000026674,0.0000026758,0.0000026861,0.0000026966, -0.0000027076,0.0000027191,0.0000027275,0.0000027298,0.0000027255, -0.0000027153,0.0000027028,0.0000026902,0.0000026817,0.0000026795, -0.0000026813,0.0000026878,0.0000026964,0.0000027067,0.0000027126, -0.0000027105,0.0000026973,0.0000026758,0.0000026514,0.0000026295, -0.0000026154,0.0000026101,0.0000026118,0.0000026165,0.0000026198, -0.0000026191,0.0000026149,0.0000026115,0.0000026106,0.0000026102, -0.0000026083,0.0000026034,0.0000025965,0.0000025899,0.0000025842, -0.0000025774,0.0000025695,0.0000025656,0.0000025670,0.0000025719, -0.0000025775,0.0000025819,0.0000025850,0.0000025859,0.0000025824, -0.0000025752,0.0000025682,0.0000025645,0.0000025640,0.0000025648, -0.0000025654,0.0000025652,0.0000025620,0.0000025538,0.0000025420, -0.0000025299,0.0000025212,0.0000025157,0.0000025131,0.0000025153, -0.0000025217,0.0000025299,0.0000025392,0.0000025469,0.0000025532, -0.0000025574,0.0000025592,0.0000025611,0.0000025662,0.0000025815, -0.0000026049,0.0000026300,0.0000026500,0.0000026630,0.0000026709, -0.0000026765,0.0000026812,0.0000026854,0.0000026894,0.0000026927, -0.0000026941,0.0000026942,0.0000026945,0.0000026968,0.0000027004, -0.0000027020,0.0000027008,0.0000026985,0.0000026964,0.0000026961, -0.0000027001,0.0000027061,0.0000027118,0.0000027180,0.0000027260, -0.0000027344,0.0000027398,0.0000027412,0.0000027384,0.0000027314, -0.0000027223,0.0000027136,0.0000027082,0.0000027062,0.0000027056, -0.0000027070,0.0000027102,0.0000027129,0.0000027141,0.0000027137, -0.0000027125,0.0000027130,0.0000027136,0.0000027127,0.0000027123, -0.0000027152,0.0000027201,0.0000027265,0.0000027372,0.0000027484, -0.0000027524,0.0000027544,0.0000027644,0.0000027763,0.0000027816, -0.0000027911,0.0000028071,0.0000028129,0.0000028093,0.0000028035, -0.0000027987,0.0000027955,0.0000027954,0.0000027975,0.0000028002, -0.0000028020,0.0000028029,0.0000028035,0.0000028062,0.0000028102, -0.0000028136,0.0000028148,0.0000028143,0.0000028125,0.0000028119, -0.0000028120,0.0000028120,0.0000028105,0.0000028074,0.0000028033, -0.0000027969,0.0000027893,0.0000027798,0.0000027703,0.0000027606, -0.0000027506,0.0000027418,0.0000027354,0.0000027308,0.0000027283, -0.0000027281,0.0000027287,0.0000027302,0.0000027326,0.0000027363, -0.0000027398,0.0000027421,0.0000027426,0.0000027414,0.0000027386, -0.0000027331,0.0000027259,0.0000027188,0.0000027113,0.0000027013, -0.0000026867,0.0000026678,0.0000026475,0.0000026280,0.0000026107, -0.0000025994,0.0000025958,0.0000025967,0.0000025973,0.0000025970, -0.0000025955,0.0000025904,0.0000025817,0.0000025717,0.0000025614, -0.0000025499,0.0000025396,0.0000025357,0.0000025342,0.0000025334, -0.0000025310,0.0000025303,0.0000025306,0.0000025279,0.0000025208, -0.0000025129,0.0000025095,0.0000025097,0.0000025098,0.0000025109, -0.0000025155,0.0000025245,0.0000025339,0.0000025442,0.0000025534, -0.0000025653,0.0000025755,0.0000025821,0.0000025887,0.0000025987, -0.0000026177,0.0000026402,0.0000026524,0.0000026523,0.0000026491, -0.0000026466,0.0000026430,0.0000026401,0.0000026385,0.0000026387, -0.0000026400,0.0000026410,0.0000026422,0.0000026425,0.0000026407, -0.0000026344,0.0000026292,0.0000026294,0.0000026347,0.0000026402, -0.0000026434,0.0000026457,0.0000026471,0.0000026478,0.0000026505, -0.0000026543,0.0000026581,0.0000026620,0.0000026657,0.0000026680, -0.0000026698,0.0000026714,0.0000026717,0.0000026706,0.0000026658, -0.0000026573,0.0000026484,0.0000026452,0.0000026485,0.0000026531, -0.0000026526,0.0000026523,0.0000026599,0.0000026726,0.0000026775, -0.0000026719,0.0000026637,0.0000026578,0.0000026552,0.0000026564, -0.0000026384,0.0000026008,0.0000025805,0.0000025797,0.0000025819, -0.0000025792,0.0000025741,0.0000025742,0.0000025925,0.0000026227, -0.0000026474,0.0000026620,0.0000026706,0.0000026751,0.0000026735, -0.0000026710,0.0000026743,0.0000026938,0.0000027246,0.0000027470, -0.0000027487,0.0000027395,0.0000027362,0.0000027454,0.0000027653, -0.0000027862,0.0000027989,0.0000028027,0.0000028007,0.0000027944, -0.0000027876,0.0000027841,0.0000027862,0.0000027917,0.0000027919, -0.0000027858,0.0000027779,0.0000027728,0.0000027700,0.0000027683, -0.0000027656,0.0000027611,0.0000027589,0.0000027648,0.0000027810, -0.0000027975,0.0000028042,0.0000028041,0.0000028017,0.0000028007, -0.0000028007,0.0000028003,0.0000027990,0.0000027962,0.0000027915, -0.0000027851,0.0000027782,0.0000027714,0.0000027653,0.0000027623, -0.0000027624,0.0000027633,0.0000027646,0.0000027649,0.0000027634, -0.0000027595,0.0000027548,0.0000027523,0.0000027519,0.0000027458, -0.0000027253,0.0000026982,0.0000026843,0.0000026855,0.0000026957, -0.0000027074,0.0000027170,0.0000027285,0.0000027400,0.0000027459, -0.0000027469,0.0000027465,0.0000027462,0.0000027457,0.0000027443, -0.0000027432,0.0000027442,0.0000027462,0.0000027457,0.0000027401, -0.0000027283,0.0000027143,0.0000027026,0.0000026939,0.0000026849, -0.0000026730,0.0000026594,0.0000026481,0.0000026391,0.0000026306, -0.0000026266,0.0000026289,0.0000026324,0.0000026306,0.0000026229, -0.0000026115,0.0000025891,0.0000025595,0.0000025410,0.0000025359, -0.0000025334,0.0000025294,0.0000025275,0.0000025266,0.0000025249, -0.0000025239,0.0000025246,0.0000025254,0.0000025248,0.0000025236, -0.0000025226,0.0000025219,0.0000025206,0.0000025182,0.0000025157, -0.0000025134,0.0000025104,0.0000025106,0.0000025147,0.0000025211, -0.0000025252,0.0000025258,0.0000025225,0.0000025167,0.0000025144, -0.0000025174,0.0000025224,0.0000025242,0.0000025217,0.0000025181, -0.0000025189,0.0000025196,0.0000025132,0.0000025061,0.0000025102, -0.0000025290,0.0000025502,0.0000025644,0.0000025708,0.0000025723, -0.0000025711,0.0000025685,0.0000025659,0.0000025642,0.0000025632, -0.0000025620,0.0000025606,0.0000025600,0.0000025601,0.0000025595, -0.0000025568,0.0000025528,0.0000025501,0.0000025491,0.0000025475, -0.0000025432,0.0000025394,0.0000025417,0.0000025557,0.0000025762, -0.0000025953,0.0000026098,0.0000026193,0.0000026267,0.0000026360, -0.0000026463,0.0000026549,0.0000026607,0.0000026643,0.0000026657, -0.0000026647,0.0000026601,0.0000026537,0.0000026508,0.0000026546, -0.0000026649,0.0000026782,0.0000026940,0.0000027117,0.0000027278, -0.0000027365,0.0000027378,0.0000027329,0.0000027269,0.0000027235, -0.0000027217,0.0000027169,0.0000027060,0.0000026932,0.0000026859, -0.0000026847,0.0000026919,0.0000027061,0.0000027241,0.0000027431, -0.0000027568,0.0000027602,0.0000027567,0.0000027513,0.0000027469, -0.0000027425,0.0000027412,0.0000027473,0.0000027635,0.0000027834, -0.0000027985,0.0000028076,0.0000028140,0.0000028172,0.0000028161, -0.0000028100,0.0000028031,0.0000028003,0.0000028002,0.0000028002, -0.0000027996,0.0000027987,0.0000027962,0.0000027910,0.0000027847, -0.0000027793,0.0000027764,0.0000027759,0.0000027762,0.0000027751, -0.0000027745,0.0000027767,0.0000027767,0.0000027694,0.0000027584, -0.0000027537,0.0000027589,0.0000027671,0.0000027732,0.0000027772, -0.0000027797,0.0000027802,0.0000027788,0.0000027745,0.0000027683, -0.0000027640,0.0000027647,0.0000027689,0.0000027703,0.0000027655, -0.0000027568,0.0000027495,0.0000027432,0.0000027358,0.0000027285, -0.0000027221,0.0000027143,0.0000027073,0.0000027015,0.0000026953, -0.0000026899,0.0000026893,0.0000026931,0.0000026948,0.0000026927, -0.0000026904,0.0000026919,0.0000026931,0.0000026875,0.0000026736, -0.0000026564,0.0000026411,0.0000026270,0.0000026143,0.0000026036, -0.0000025963,0.0000025927,0.0000025892,0.0000025824,0.0000025770, -0.0000025774,0.0000025805,0.0000025806,0.0000025756,0.0000025689, -0.0000025661,0.0000025687,0.0000025765,0.0000025835,0.0000025853, -0.0000025803,0.0000025698,0.0000025561,0.0000025354,0.0000025099, -0.0000024927,0.0000024881,0.0000024872,0.0000024847,0.0000024814, -0.0000024808,0.0000024826,0.0000024844,0.0000024843,0.0000024824, -0.0000024803,0.0000024778,0.0000024730,0.0000024657,0.0000024575, -0.0000024497,0.0000024435,0.0000024368,0.0000024299,0.0000024265, -0.0000024265,0.0000024260,0.0000024186,0.0000024051,0.0000024049, -0.0000024434,0.0000025020,0.0000025338,0.0000025582,0.0000026144, -0.0000026761,0.0000027176,0.0000027524,0.0000027659,0.0000027613, -0.0000027524,0.0000027475,0.0000027468,0.0000027479,0.0000027480, -0.0000027494,0.0000027513,0.0000027503,0.0000027474,0.0000027452, -0.0000027459,0.0000027494,0.0000027542,0.0000027597,0.0000027641, -0.0000027639,0.0000027576,0.0000027462,0.0000027337,0.0000027269, -0.0000027180,0.0000027053,0.0000027004,0.0000027006,0.0000027027, -0.0000027031,0.0000027014,0.0000027001,0.0000027016,0.0000027051, -0.0000027064,0.0000027033,0.0000026973,0.0000026918,0.0000026903, -0.0000026922,0.0000026923,0.0000026869,0.0000026789,0.0000026708, -0.0000026657,0.0000026637,0.0000026643,0.0000026639,0.0000026611, -0.0000026626,0.0000026680,0.0000026749,0.0000026816,0.0000026854, -0.0000026871,0.0000026847,0.0000026796,0.0000026796,0.0000026857, -0.0000026917,0.0000026922,0.0000026907,0.0000026894,0.0000026884, -0.0000026868,0.0000026853,0.0000026847,0.0000026843,0.0000026826, -0.0000026794,0.0000026752,0.0000026721,0.0000026712,0.0000026683, -0.0000026623,0.0000026559,0.0000026494,0.0000026372,0.0000026135, -0.0000025858,0.0000025621,0.0000025432,0.0000025299,0.0000025207, -0.0000025088,0.0000024929,0.0000024781,0.0000024687,0.0000024654, -0.0000024650,0.0000024636,0.0000024582,0.0000024489,0.0000024367, -0.0000024250,0.0000024175,0.0000024161,0.0000024187,0.0000024212, -0.0000024209,0.0000024186,0.0000024159,0.0000024141,0.0000024140, -0.0000024159,0.0000024185,0.0000024202,0.0000024207,0.0000024195, -0.0000024162,0.0000024159,0.0000024204,0.0000024253,0.0000024261, -0.0000024230,0.0000024168,0.0000024109,0.0000024069,0.0000024045, -0.0000024028,0.0000024014,0.0000024000,0.0000023998,0.0000023998, -0.0000023983,0.0000023953,0.0000023931,0.0000023922,0.0000023911, -0.0000023893,0.0000023854,0.0000023775,0.0000023695,0.0000023684, -0.0000023743,0.0000023817,0.0000023865,0.0000023881,0.0000023874, -0.0000023853,0.0000023817,0.0000023780,0.0000023776,0.0000023796, -0.0000023819,0.0000023822,0.0000023811,0.0000023731,0.0000023610, -0.0000023610,0.0000023768,0.0000023877,0.0000023917,0.0000024072, -0.0000024292,0.0000024396,0.0000024408,0.0000024989,0.0000025651, -0.0000025857,0.0000025934,0.0000025943,0.0000025735,0.0000025705, -0.0000025770,0.0000025785,0.0000025583,0.0000025124,0.0000025150, -0.0000025424,0.0000026081,0.0000026493,0.0000026813,0.0000027059, -0.0000027209,0.0000027318,0.0000027349,0.0000027309,0.0000027271, -0.0000027292,0.0000027338,0.0000027354,0.0000027332,0.0000027295, -0.0000027269,0.0000027255,0.0000027254,0.0000027254,0.0000027244, -0.0000027222,0.0000027198,0.0000027172,0.0000027137,0.0000027101, -0.0000027063,0.0000027024,0.0000026990,0.0000026971,0.0000026967, -0.0000026977,0.0000027000,0.0000026978,0.0000027013,0.0000027055, -0.0000027090,0.0000027110,0.0000027117,0.0000027116,0.0000027105, -0.0000027066,0.0000027000,0.0000026924,0.0000026860,0.0000026842, -0.0000026855,0.0000026879,0.0000026880,0.0000026834,0.0000026756, -0.0000026676,0.0000026616,0.0000026590,0.0000026592,0.0000026590, -0.0000026574,0.0000026561,0.0000026573,0.0000026608,0.0000026629, -0.0000026630,0.0000026649,0.0000026695,0.0000026748,0.0000026771, -0.0000026780,0.0000026820,0.0000026864,0.0000026855,0.0000026778, -0.0000026684,0.0000026611,0.0000026546,0.0000026422,0.0000026175, -0.0000025866,0.0000025640,0.0000025568,0.0000025562,0.0000025542, -0.0000025484,0.0000025410,0.0000025345,0.0000025311,0.0000025297, -0.0000025297,0.0000025316,0.0000025370,0.0000025446,0.0000025519, -0.0000025573,0.0000025599,0.0000025580,0.0000025526,0.0000025486, -0.0000025464,0.0000025467,0.0000025490,0.0000025377,0.0000025030, -0.0000024756,0.0000024627,0.0000024488,0.0000024423,0.0000024438, -0.0000024441,0.0000024365,0.0000024281,0.0000024354,0.0000024490, -0.0000024536,0.0000024579,0.0000024640,0.0000024685,0.0000024725, -0.0000024774,0.0000024827,0.0000024867,0.0000024854,0.0000024813, -0.0000024799,0.0000024821,0.0000024878,0.0000024925,0.0000024949, -0.0000025051,0.0000025220,0.0000025381,0.0000025574,0.0000025738, -0.0000025810,0.0000025822,0.0000025817,0.0000025789,0.0000025683, -0.0000025580,0.0000025531,0.0000025450,0.0000025441,0.0000025582, -0.0000025711,0.0000025767,0.0000025796,0.0000025782,0.0000025712, -0.0000025622,0.0000025529,0.0000025458,0.0000025360,0.0000025216, -0.0000025076,0.0000024999,0.0000025001,0.0000025048,0.0000025106, -0.0000025166,0.0000025232,0.0000025313,0.0000025418,0.0000025517, -0.0000025578,0.0000025563,0.0000025528,0.0000025488,0.0000025458, -0.0000025446,0.0000025447,0.0000025456,0.0000025462,0.0000025452, -0.0000025428,0.0000025393,0.0000025363,0.0000025332,0.0000025294, -0.0000025252,0.0000025218,0.0000025232,0.0000025294,0.0000025373, -0.0000025396,0.0000025341,0.0000025202,0.0000025023,0.0000024870, -0.0000024772,0.0000024726,0.0000024689,0.0000024645,0.0000024685, -0.0000024877,0.0000025232,0.0000025584,0.0000025821,0.0000025952, -0.0000026011,0.0000025987,0.0000025896,0.0000025793,0.0000025721, -0.0000025688,0.0000025688,0.0000025698,0.0000025716,0.0000025741, -0.0000025762,0.0000025783,0.0000025811,0.0000025851,0.0000025893, -0.0000025933,0.0000025966,0.0000025992,0.0000026005,0.0000026008, -0.0000026006,0.0000025986,0.0000025965,0.0000025946,0.0000025927, -0.0000025912,0.0000025906,0.0000025905,0.0000025908,0.0000025929, -0.0000025953,0.0000025949,0.0000025924,0.0000025896,0.0000025888, -0.0000025902,0.0000025923,0.0000025924,0.0000025916,0.0000025928, -0.0000025982,0.0000026065,0.0000026140,0.0000026182,0.0000026184, -0.0000026177,0.0000026189,0.0000026219,0.0000026248,0.0000026257, -0.0000026249,0.0000026249,0.0000026282,0.0000026345,0.0000026376, -0.0000026359,0.0000026303,0.0000026246,0.0000026198,0.0000026141, -0.0000026089,0.0000026096,0.0000026197,0.0000026354,0.0000026493, -0.0000026587,0.0000026677,0.0000026784,0.0000026893,0.0000027010, -0.0000027142,0.0000027248,0.0000027280,0.0000027253,0.0000027162, -0.0000027042,0.0000026920,0.0000026822,0.0000026788,0.0000026804, -0.0000026873,0.0000026957,0.0000027013,0.0000027008,0.0000026928, -0.0000026768,0.0000026559,0.0000026348,0.0000026189,0.0000026100, -0.0000026074,0.0000026094,0.0000026132,0.0000026157,0.0000026168, -0.0000026159,0.0000026142,0.0000026125,0.0000026106,0.0000026074, -0.0000026025,0.0000025969,0.0000025914,0.0000025853,0.0000025769, -0.0000025675,0.0000025615,0.0000025618,0.0000025662,0.0000025723, -0.0000025789,0.0000025846,0.0000025865,0.0000025835,0.0000025765, -0.0000025696,0.0000025652,0.0000025634,0.0000025625,0.0000025623, -0.0000025623,0.0000025605,0.0000025542,0.0000025422,0.0000025287, -0.0000025200,0.0000025171,0.0000025168,0.0000025191,0.0000025223, -0.0000025271,0.0000025335,0.0000025422,0.0000025512,0.0000025579, -0.0000025608,0.0000025615,0.0000025636,0.0000025715,0.0000025872, -0.0000026078,0.0000026272,0.0000026422,0.0000026525,0.0000026602, -0.0000026673,0.0000026739,0.0000026803,0.0000026856,0.0000026880, -0.0000026873,0.0000026852,0.0000026840,0.0000026852,0.0000026867, -0.0000026853,0.0000026815,0.0000026767,0.0000026741,0.0000026770, -0.0000026853,0.0000026955,0.0000027056,0.0000027160,0.0000027269, -0.0000027356,0.0000027394,0.0000027387,0.0000027329,0.0000027240, -0.0000027145,0.0000027063,0.0000027012,0.0000026988,0.0000026981, -0.0000027002,0.0000027040,0.0000027061,0.0000027056,0.0000027030, -0.0000027022,0.0000027040,0.0000027057,0.0000027072,0.0000027117, -0.0000027182,0.0000027245,0.0000027331,0.0000027460,0.0000027555, -0.0000027561,0.0000027570,0.0000027664,0.0000027764,0.0000027810, -0.0000027923,0.0000028078,0.0000028113,0.0000028045,0.0000027963, -0.0000027912,0.0000027904,0.0000027927,0.0000027965,0.0000027996, -0.0000028012,0.0000028020,0.0000028032,0.0000028049,0.0000028066, -0.0000028077,0.0000028079,0.0000028074,0.0000028073,0.0000028079, -0.0000028089,0.0000028089,0.0000028065,0.0000028021,0.0000027968, -0.0000027907,0.0000027842,0.0000027780,0.0000027742,0.0000027673, -0.0000027589,0.0000027501,0.0000027431,0.0000027385,0.0000027362, -0.0000027352,0.0000027336,0.0000027324,0.0000027328,0.0000027347, -0.0000027362,0.0000027379,0.0000027394,0.0000027413,0.0000027417, -0.0000027377,0.0000027306,0.0000027229,0.0000027163,0.0000027099, -0.0000027012,0.0000026887,0.0000026734,0.0000026560,0.0000026363, -0.0000026172,0.0000026032,0.0000025964,0.0000025948,0.0000025950, -0.0000025959,0.0000025947,0.0000025892,0.0000025796,0.0000025680, -0.0000025553,0.0000025434,0.0000025364,0.0000025326,0.0000025302, -0.0000025272,0.0000025250,0.0000025234,0.0000025206,0.0000025152, -0.0000025098,0.0000025088,0.0000025103,0.0000025125,0.0000025163, -0.0000025226,0.0000025291,0.0000025342,0.0000025368,0.0000025374, -0.0000025418,0.0000025473,0.0000025546,0.0000025641,0.0000025764, -0.0000025950,0.0000026203,0.0000026417,0.0000026496,0.0000026485, -0.0000026478,0.0000026453,0.0000026415,0.0000026386,0.0000026386, -0.0000026393,0.0000026399,0.0000026390,0.0000026383,0.0000026363, -0.0000026296,0.0000026255,0.0000026271,0.0000026338,0.0000026391, -0.0000026425,0.0000026448,0.0000026454,0.0000026462,0.0000026490, -0.0000026513,0.0000026530,0.0000026554,0.0000026581,0.0000026601, -0.0000026619,0.0000026640,0.0000026652,0.0000026637,0.0000026579, -0.0000026496,0.0000026429,0.0000026419,0.0000026464,0.0000026512, -0.0000026512,0.0000026509,0.0000026559,0.0000026674,0.0000026739, -0.0000026706,0.0000026623,0.0000026576,0.0000026549,0.0000026560, -0.0000026553,0.0000026242,0.0000025839,0.0000025671,0.0000025674, -0.0000025683,0.0000025674,0.0000025663,0.0000025734,0.0000025973, -0.0000026294,0.0000026531,0.0000026664,0.0000026748,0.0000026768, -0.0000026730,0.0000026672,0.0000026694,0.0000026937,0.0000027274, -0.0000027433,0.0000027393,0.0000027309,0.0000027322,0.0000027476, -0.0000027699,0.0000027883,0.0000027971,0.0000027983,0.0000027953, -0.0000027907,0.0000027850,0.0000027815,0.0000027837,0.0000027875, -0.0000027868,0.0000027811,0.0000027744,0.0000027701,0.0000027679, -0.0000027661,0.0000027631,0.0000027593,0.0000027583,0.0000027628, -0.0000027773,0.0000027942,0.0000028041,0.0000028053,0.0000028023, -0.0000027998,0.0000027988,0.0000027984,0.0000027974,0.0000027950, -0.0000027911,0.0000027857,0.0000027790,0.0000027718,0.0000027657, -0.0000027627,0.0000027625,0.0000027637,0.0000027642,0.0000027626, -0.0000027584,0.0000027540,0.0000027523,0.0000027522,0.0000027463, -0.0000027244,0.0000026980,0.0000026867,0.0000026910,0.0000027036, -0.0000027136,0.0000027193,0.0000027271,0.0000027368,0.0000027438, -0.0000027467,0.0000027466,0.0000027460,0.0000027447,0.0000027421, -0.0000027390,0.0000027375,0.0000027379,0.0000027382,0.0000027351, -0.0000027267,0.0000027150,0.0000027042,0.0000026961,0.0000026886, -0.0000026767,0.0000026612,0.0000026472,0.0000026358,0.0000026265, -0.0000026230,0.0000026261,0.0000026311,0.0000026300,0.0000026223, -0.0000026110,0.0000025880,0.0000025573,0.0000025390,0.0000025351, -0.0000025340,0.0000025319,0.0000025301,0.0000025265,0.0000025231, -0.0000025232,0.0000025246,0.0000025239,0.0000025214,0.0000025195, -0.0000025193,0.0000025205,0.0000025221,0.0000025227,0.0000025227, -0.0000025209,0.0000025169,0.0000025113,0.0000025069,0.0000025065, -0.0000025108,0.0000025170,0.0000025219,0.0000025220,0.0000025173, -0.0000025127,0.0000025124,0.0000025177,0.0000025248,0.0000025259, -0.0000025212,0.0000025183,0.0000025202,0.0000025197,0.0000025113, -0.0000025040,0.0000025092,0.0000025267,0.0000025450,0.0000025570, -0.0000025624,0.0000025635,0.0000025621,0.0000025597,0.0000025574, -0.0000025547,0.0000025508,0.0000025463,0.0000025433,0.0000025420, -0.0000025404,0.0000025377,0.0000025350,0.0000025340,0.0000025343, -0.0000025347,0.0000025328,0.0000025293,0.0000025298,0.0000025410, -0.0000025623,0.0000025840,0.0000026019,0.0000026150,0.0000026231, -0.0000026305,0.0000026395,0.0000026478,0.0000026544,0.0000026590, -0.0000026609,0.0000026606,0.0000026566,0.0000026489,0.0000026417, -0.0000026410,0.0000026483,0.0000026620,0.0000026779,0.0000026953, -0.0000027142,0.0000027308,0.0000027388,0.0000027400,0.0000027336, -0.0000027246,0.0000027177,0.0000027126,0.0000027059,0.0000026969, -0.0000026877,0.0000026821,0.0000026817,0.0000026893,0.0000027041, -0.0000027240,0.0000027417,0.0000027506,0.0000027500,0.0000027461, -0.0000027448,0.0000027448,0.0000027442,0.0000027477,0.0000027576, -0.0000027742,0.0000027899,0.0000028009,0.0000028083,0.0000028120, -0.0000028122,0.0000028090,0.0000028062,0.0000028064,0.0000028076, -0.0000028069,0.0000028044,0.0000028019,0.0000027979,0.0000027914, -0.0000027841,0.0000027780,0.0000027746,0.0000027735,0.0000027730, -0.0000027710,0.0000027687,0.0000027691,0.0000027716,0.0000027691, -0.0000027596,0.0000027494,0.0000027495,0.0000027588,0.0000027693, -0.0000027758,0.0000027784,0.0000027796,0.0000027801,0.0000027787, -0.0000027746,0.0000027707,0.0000027701,0.0000027719,0.0000027732, -0.0000027709,0.0000027640,0.0000027567,0.0000027512,0.0000027444, -0.0000027354,0.0000027270,0.0000027189,0.0000027115,0.0000027056, -0.0000027000,0.0000026940,0.0000026917,0.0000026937,0.0000026949, -0.0000026928,0.0000026925,0.0000026966,0.0000026986,0.0000026923, -0.0000026778,0.0000026620,0.0000026490,0.0000026372,0.0000026256, -0.0000026142,0.0000026040,0.0000025974,0.0000025944,0.0000025902, -0.0000025841,0.0000025816,0.0000025826,0.0000025820,0.0000025768, -0.0000025691,0.0000025645,0.0000025664,0.0000025746,0.0000025820, -0.0000025835,0.0000025782,0.0000025680,0.0000025534,0.0000025303, -0.0000025056,0.0000024934,0.0000024920,0.0000024910,0.0000024876, -0.0000024844,0.0000024834,0.0000024850,0.0000024861,0.0000024851, -0.0000024820,0.0000024795,0.0000024783,0.0000024754,0.0000024692, -0.0000024606,0.0000024512,0.0000024429,0.0000024357,0.0000024269, -0.0000024206,0.0000024206,0.0000024229,0.0000024214,0.0000024110, -0.0000024029,0.0000024214,0.0000024765,0.0000025216,0.0000025404, -0.0000025780,0.0000026432,0.0000026928,0.0000027286,0.0000027589, -0.0000027650,0.0000027560,0.0000027494,0.0000027479,0.0000027481, -0.0000027474,0.0000027466,0.0000027470,0.0000027453,0.0000027404, -0.0000027364,0.0000027364,0.0000027417,0.0000027485,0.0000027544, -0.0000027604,0.0000027629,0.0000027600,0.0000027496,0.0000027363, -0.0000027281,0.0000027205,0.0000027077,0.0000027025,0.0000027033, -0.0000027046,0.0000027037,0.0000027018,0.0000027008,0.0000027022, -0.0000027062,0.0000027083,0.0000027058,0.0000027010,0.0000026975, -0.0000026963,0.0000026939,0.0000026891,0.0000026808,0.0000026735, -0.0000026675,0.0000026619,0.0000026586,0.0000026581,0.0000026575, -0.0000026558,0.0000026592,0.0000026660,0.0000026741,0.0000026807, -0.0000026849,0.0000026866,0.0000026841,0.0000026786,0.0000026770, -0.0000026800,0.0000026868,0.0000026910,0.0000026908,0.0000026881, -0.0000026856,0.0000026835,0.0000026821,0.0000026814,0.0000026808, -0.0000026789,0.0000026753,0.0000026722,0.0000026700,0.0000026682, -0.0000026639,0.0000026574,0.0000026515,0.0000026443,0.0000026297, -0.0000026051,0.0000025823,0.0000025655,0.0000025507,0.0000025386, -0.0000025310,0.0000025248,0.0000025155,0.0000025022,0.0000024864, -0.0000024734,0.0000024669,0.0000024642,0.0000024606,0.0000024546, -0.0000024446,0.0000024312,0.0000024198,0.0000024142,0.0000024150, -0.0000024184,0.0000024196,0.0000024190,0.0000024170,0.0000024150, -0.0000024141,0.0000024142,0.0000024162,0.0000024191,0.0000024211, -0.0000024214,0.0000024209,0.0000024185,0.0000024167,0.0000024186, -0.0000024235,0.0000024257,0.0000024241,0.0000024189,0.0000024122, -0.0000024065,0.0000024019,0.0000023981,0.0000023948,0.0000023927, -0.0000023925,0.0000023932,0.0000023933,0.0000023927,0.0000023917, -0.0000023906,0.0000023888,0.0000023862,0.0000023849,0.0000023834, -0.0000023776,0.0000023726,0.0000023731,0.0000023773,0.0000023819, -0.0000023841,0.0000023839,0.0000023834,0.0000023822,0.0000023783, -0.0000023753,0.0000023759,0.0000023776,0.0000023778,0.0000023758, -0.0000023683,0.0000023557,0.0000023542,0.0000023704,0.0000023835, -0.0000023884,0.0000024040,0.0000024260,0.0000024373,0.0000024385, -0.0000024959,0.0000025637,0.0000025845,0.0000025923,0.0000025930, -0.0000025716,0.0000025689,0.0000025759,0.0000025775,0.0000025631, -0.0000025158,0.0000025030,0.0000025254,0.0000025712,0.0000026281, -0.0000026568,0.0000026860,0.0000027045,0.0000027171,0.0000027267, -0.0000027284,0.0000027246,0.0000027234,0.0000027271,0.0000027311, -0.0000027313,0.0000027281,0.0000027243,0.0000027206,0.0000027194, -0.0000027185,0.0000027171,0.0000027150,0.0000027127,0.0000027103, -0.0000027074,0.0000027042,0.0000027013,0.0000026981,0.0000026953, -0.0000026931,0.0000026924,0.0000026930,0.0000026950,0.0000027054, -0.0000027111,0.0000027165,0.0000027207,0.0000027226,0.0000027217, -0.0000027195,0.0000027163,0.0000027102,0.0000027012,0.0000026923, -0.0000026865,0.0000026852,0.0000026857,0.0000026843,0.0000026799, -0.0000026747,0.0000026701,0.0000026657,0.0000026624,0.0000026613, -0.0000026616,0.0000026609,0.0000026583,0.0000026549,0.0000026538, -0.0000026551,0.0000026568,0.0000026571,0.0000026575,0.0000026616, -0.0000026686,0.0000026746,0.0000026769,0.0000026785,0.0000026813, -0.0000026828,0.0000026791,0.0000026707,0.0000026626,0.0000026555, -0.0000026466,0.0000026308,0.0000026041,0.0000025754,0.0000025583, -0.0000025534,0.0000025513,0.0000025481,0.0000025436,0.0000025390, -0.0000025377,0.0000025391,0.0000025406,0.0000025421,0.0000025458, -0.0000025502,0.0000025542,0.0000025579,0.0000025604,0.0000025588, -0.0000025535,0.0000025490,0.0000025457,0.0000025456,0.0000025472, -0.0000025367,0.0000025054,0.0000024785,0.0000024648,0.0000024494, -0.0000024392,0.0000024399,0.0000024440,0.0000024419,0.0000024322, -0.0000024299,0.0000024424,0.0000024524,0.0000024568,0.0000024629, -0.0000024682,0.0000024725,0.0000024769,0.0000024805,0.0000024858, -0.0000024901,0.0000024898,0.0000024869,0.0000024858,0.0000024878, -0.0000024927,0.0000024951,0.0000024964,0.0000025065,0.0000025232, -0.0000025378,0.0000025539,0.0000025704,0.0000025800,0.0000025830, -0.0000025831,0.0000025787,0.0000025662,0.0000025574,0.0000025517, -0.0000025437,0.0000025457,0.0000025615,0.0000025728,0.0000025779, -0.0000025803,0.0000025782,0.0000025715,0.0000025619,0.0000025519, -0.0000025440,0.0000025317,0.0000025173,0.0000025048,0.0000024966, -0.0000024965,0.0000025013,0.0000025080,0.0000025153,0.0000025220, -0.0000025279,0.0000025349,0.0000025430,0.0000025494,0.0000025531, -0.0000025541,0.0000025554,0.0000025544,0.0000025524,0.0000025498, -0.0000025472,0.0000025456,0.0000025441,0.0000025431,0.0000025417, -0.0000025397,0.0000025368,0.0000025336,0.0000025301,0.0000025258, -0.0000025222,0.0000025232,0.0000025288,0.0000025368,0.0000025390, -0.0000025350,0.0000025220,0.0000025049,0.0000024889,0.0000024764, -0.0000024680,0.0000024637,0.0000024594,0.0000024626,0.0000024817, -0.0000025161,0.0000025517,0.0000025770,0.0000025909,0.0000025959, -0.0000025941,0.0000025912,0.0000025867,0.0000025844,0.0000025843, -0.0000025853,0.0000025872,0.0000025897,0.0000025922,0.0000025949, -0.0000025976,0.0000025994,0.0000026002,0.0000025997,0.0000025990, -0.0000025971,0.0000025946,0.0000025910,0.0000025862,0.0000025805, -0.0000025745,0.0000025686,0.0000025637,0.0000025613,0.0000025626, -0.0000025683,0.0000025761,0.0000025822,0.0000025865,0.0000025911, -0.0000025936,0.0000025928,0.0000025913,0.0000025924,0.0000025946, -0.0000025943,0.0000025924,0.0000025928,0.0000025983,0.0000026059, -0.0000026125,0.0000026160,0.0000026162,0.0000026157,0.0000026167, -0.0000026191,0.0000026216,0.0000026232,0.0000026245,0.0000026276, -0.0000026333,0.0000026387,0.0000026405,0.0000026398,0.0000026387, -0.0000026361,0.0000026308,0.0000026237,0.0000026165,0.0000026122, -0.0000026137,0.0000026225,0.0000026348,0.0000026457,0.0000026559, -0.0000026677,0.0000026795,0.0000026911,0.0000027049,0.0000027182, -0.0000027246,0.0000027232,0.0000027156,0.0000027044,0.0000026931, -0.0000026836,0.0000026784,0.0000026786,0.0000026831,0.0000026875, -0.0000026879,0.0000026837,0.0000026732,0.0000026565,0.0000026370, -0.0000026196,0.0000026087,0.0000026037,0.0000026028,0.0000026045, -0.0000026081,0.0000026129,0.0000026177,0.0000026200,0.0000026193, -0.0000026167,0.0000026134,0.0000026092,0.0000026042,0.0000025995, -0.0000025955,0.0000025900,0.0000025809,0.0000025698,0.0000025614, -0.0000025599,0.0000025629,0.0000025684,0.0000025762,0.0000025840, -0.0000025874,0.0000025857,0.0000025793,0.0000025724,0.0000025674, -0.0000025641,0.0000025618,0.0000025604,0.0000025587,0.0000025564, -0.0000025518,0.0000025423,0.0000025289,0.0000025182,0.0000025151, -0.0000025179,0.0000025230,0.0000025262,0.0000025286,0.0000025312, -0.0000025365,0.0000025450,0.0000025541,0.0000025597,0.0000025620, -0.0000025636,0.0000025681,0.0000025777,0.0000025916,0.0000026066, -0.0000026198,0.0000026308,0.0000026397,0.0000026485,0.0000026570, -0.0000026652,0.0000026726,0.0000026766,0.0000026754,0.0000026709, -0.0000026671,0.0000026669,0.0000026690,0.0000026703,0.0000026682, -0.0000026627,0.0000026570,0.0000026558,0.0000026611,0.0000026721, -0.0000026853,0.0000026979,0.0000027090,0.0000027186,0.0000027252, -0.0000027273,0.0000027248,0.0000027186,0.0000027107,0.0000027024, -0.0000026953,0.0000026916,0.0000026910,0.0000026922,0.0000026951, -0.0000026965,0.0000026953,0.0000026915,0.0000026891,0.0000026907, -0.0000026949,0.0000026989,0.0000027049,0.0000027141,0.0000027232, -0.0000027310,0.0000027422,0.0000027558,0.0000027609,0.0000027586, -0.0000027583,0.0000027672,0.0000027756,0.0000027802,0.0000027930, -0.0000028074,0.0000028078,0.0000027976,0.0000027878,0.0000027835, -0.0000027839,0.0000027878,0.0000027927,0.0000027959,0.0000027975, -0.0000027987,0.0000027992,0.0000027988,0.0000027982,0.0000027976, -0.0000027969,0.0000027965,0.0000027971,0.0000027987,0.0000028004, -0.0000028002,0.0000027972,0.0000027922,0.0000027861,0.0000027800, -0.0000027758,0.0000027739,0.0000027723,0.0000027680,0.0000027636, -0.0000027587,0.0000027556,0.0000027536,0.0000027520,0.0000027495, -0.0000027455,0.0000027417,0.0000027395,0.0000027376,0.0000027364, -0.0000027368,0.0000027390,0.0000027432,0.0000027455,0.0000027428, -0.0000027352,0.0000027261,0.0000027182,0.0000027116,0.0000027047, -0.0000026967,0.0000026881,0.0000026780,0.0000026636,0.0000026441, -0.0000026223,0.0000026044,0.0000025943,0.0000025916,0.0000025931, -0.0000025939,0.0000025910,0.0000025833,0.0000025718,0.0000025595, -0.0000025486,0.0000025413,0.0000025357,0.0000025315,0.0000025271, -0.0000025230,0.0000025202,0.0000025162,0.0000025111,0.0000025076, -0.0000025079,0.0000025107,0.0000025148,0.0000025209,0.0000025294, -0.0000025361,0.0000025386,0.0000025375,0.0000025336,0.0000025292, -0.0000025251,0.0000025265,0.0000025343,0.0000025492,0.0000025694, -0.0000025949,0.0000026234,0.0000026431,0.0000026489,0.0000026508, -0.0000026494,0.0000026447,0.0000026400,0.0000026390,0.0000026404, -0.0000026404,0.0000026382,0.0000026366,0.0000026341,0.0000026275, -0.0000026233,0.0000026255,0.0000026322,0.0000026374,0.0000026413, -0.0000026432,0.0000026436,0.0000026459,0.0000026491,0.0000026502, -0.0000026505,0.0000026519,0.0000026536,0.0000026551,0.0000026567, -0.0000026590,0.0000026604,0.0000026579,0.0000026505,0.0000026427, -0.0000026386,0.0000026401,0.0000026449,0.0000026482,0.0000026487, -0.0000026496,0.0000026545,0.0000026645,0.0000026709,0.0000026693, -0.0000026615,0.0000026568,0.0000026557,0.0000026558,0.0000026571, -0.0000026436,0.0000025961,0.0000025608,0.0000025543,0.0000025569, -0.0000025588,0.0000025624,0.0000025702,0.0000025833,0.0000026090, -0.0000026390,0.0000026594,0.0000026696,0.0000026745,0.0000026744, -0.0000026683,0.0000026614,0.0000026696,0.0000027018,0.0000027309, -0.0000027372,0.0000027295,0.0000027253,0.0000027322,0.0000027514, -0.0000027727,0.0000027874,0.0000027930,0.0000027930,0.0000027910, -0.0000027877,0.0000027820,0.0000027784,0.0000027800,0.0000027826, -0.0000027827,0.0000027786,0.0000027735,0.0000027702,0.0000027686, -0.0000027669,0.0000027635,0.0000027593,0.0000027577,0.0000027606, -0.0000027723,0.0000027887,0.0000028007,0.0000028038,0.0000028016, -0.0000027987,0.0000027962,0.0000027951,0.0000027946,0.0000027932, -0.0000027904,0.0000027865,0.0000027808,0.0000027739,0.0000027676, -0.0000027639,0.0000027627,0.0000027618,0.0000027594,0.0000027553, -0.0000027519,0.0000027512,0.0000027516,0.0000027441,0.0000027210, -0.0000026961,0.0000026888,0.0000026996,0.0000027152,0.0000027228, -0.0000027249,0.0000027285,0.0000027338,0.0000027388,0.0000027418, -0.0000027418,0.0000027394,0.0000027357,0.0000027313,0.0000027267, -0.0000027237,0.0000027223,0.0000027210,0.0000027177,0.0000027117, -0.0000027040,0.0000026973,0.0000026931,0.0000026885,0.0000026790, -0.0000026641,0.0000026472,0.0000026327,0.0000026225,0.0000026189, -0.0000026218,0.0000026271,0.0000026272,0.0000026203,0.0000026093, -0.0000025874,0.0000025580,0.0000025395,0.0000025360,0.0000025361, -0.0000025352,0.0000025325,0.0000025266,0.0000025223,0.0000025232, -0.0000025237,0.0000025210,0.0000025170,0.0000025158,0.0000025163, -0.0000025184,0.0000025211,0.0000025235,0.0000025258,0.0000025281, -0.0000025292,0.0000025280,0.0000025234,0.0000025157,0.0000025084, -0.0000025067,0.0000025079,0.0000025134,0.0000025165,0.0000025155, -0.0000025124,0.0000025100,0.0000025126,0.0000025210,0.0000025277, -0.0000025266,0.0000025189,0.0000025164,0.0000025191,0.0000025177, -0.0000025094,0.0000025033,0.0000025093,0.0000025249,0.0000025393, -0.0000025475,0.0000025501,0.0000025502,0.0000025484,0.0000025455, -0.0000025419,0.0000025366,0.0000025299,0.0000025238,0.0000025206, -0.0000025201,0.0000025207,0.0000025212,0.0000025211,0.0000025218, -0.0000025235,0.0000025248,0.0000025246,0.0000025244,0.0000025310, -0.0000025495,0.0000025728,0.0000025932,0.0000026089,0.0000026186, -0.0000026246,0.0000026315,0.0000026397,0.0000026476,0.0000026532, -0.0000026560,0.0000026561,0.0000026527,0.0000026459,0.0000026375, -0.0000026328,0.0000026354,0.0000026479,0.0000026649,0.0000026810, -0.0000026973,0.0000027158,0.0000027318,0.0000027397,0.0000027374, -0.0000027279,0.0000027153,0.0000027058,0.0000027009,0.0000026969, -0.0000026907,0.0000026813,0.0000026742,0.0000026765,0.0000026896, -0.0000027079,0.0000027243,0.0000027359,0.0000027413,0.0000027414, -0.0000027415,0.0000027450,0.0000027482,0.0000027504,0.0000027565, -0.0000027678,0.0000027814,0.0000027930,0.0000028018,0.0000028070, -0.0000028081,0.0000028069,0.0000028065,0.0000028099,0.0000028141, -0.0000028138,0.0000028091,0.0000028035,0.0000027973,0.0000027893, -0.0000027811,0.0000027748,0.0000027716,0.0000027707,0.0000027696, -0.0000027666,0.0000027629,0.0000027614,0.0000027628,0.0000027645, -0.0000027602,0.0000027509,0.0000027472,0.0000027510,0.0000027623, -0.0000027722,0.0000027766,0.0000027780,0.0000027793,0.0000027799, -0.0000027792,0.0000027777,0.0000027774,0.0000027776,0.0000027771, -0.0000027749,0.0000027695,0.0000027629,0.0000027577,0.0000027522, -0.0000027430,0.0000027330,0.0000027241,0.0000027166,0.0000027102, -0.0000027048,0.0000026986,0.0000026954,0.0000026965,0.0000026970, -0.0000026948,0.0000026955,0.0000027007,0.0000027021,0.0000026945, -0.0000026814,0.0000026690,0.0000026586,0.0000026484,0.0000026380, -0.0000026270,0.0000026147,0.0000026041,0.0000025992,0.0000025969, -0.0000025920,0.0000025871,0.0000025855,0.0000025845,0.0000025798, -0.0000025714,0.0000025650,0.0000025654,0.0000025728,0.0000025812, -0.0000025833,0.0000025778,0.0000025679,0.0000025530,0.0000025294, -0.0000025053,0.0000024947,0.0000024944,0.0000024937,0.0000024910, -0.0000024888,0.0000024885,0.0000024887,0.0000024889,0.0000024873, -0.0000024836,0.0000024803,0.0000024792,0.0000024786,0.0000024742, -0.0000024655,0.0000024548,0.0000024443,0.0000024352,0.0000024256, -0.0000024174,0.0000024161,0.0000024203,0.0000024228,0.0000024182, -0.0000024065,0.0000024100,0.0000024507,0.0000025040,0.0000025304, -0.0000025500,0.0000026023,0.0000026639,0.0000027033,0.0000027380, -0.0000027616,0.0000027602,0.0000027509,0.0000027462,0.0000027457, -0.0000027453,0.0000027441,0.0000027439,0.0000027415,0.0000027344, -0.0000027287,0.0000027274,0.0000027320,0.0000027410,0.0000027483, -0.0000027549,0.0000027606,0.0000027607,0.0000027526,0.0000027392, -0.0000027300,0.0000027230,0.0000027101,0.0000027047,0.0000027059, -0.0000027065,0.0000027042,0.0000027021,0.0000027018,0.0000027030, -0.0000027073,0.0000027100,0.0000027089,0.0000027066,0.0000027049, -0.0000027011,0.0000026936,0.0000026829,0.0000026747,0.0000026696, -0.0000026646,0.0000026581,0.0000026542,0.0000026529,0.0000026521, -0.0000026514,0.0000026558,0.0000026631,0.0000026714,0.0000026779, -0.0000026823,0.0000026848,0.0000026839,0.0000026794,0.0000026762, -0.0000026764,0.0000026794,0.0000026839,0.0000026865,0.0000026863, -0.0000026844,0.0000026817,0.0000026793,0.0000026773,0.0000026752, -0.0000026728,0.0000026700,0.0000026682,0.0000026666,0.0000026636, -0.0000026584,0.0000026529,0.0000026471,0.0000026380,0.0000026199, -0.0000025963,0.0000025799,0.0000025705,0.0000025615,0.0000025525, -0.0000025450,0.0000025388,0.0000025327,0.0000025248,0.0000025134, -0.0000024987,0.0000024838,0.0000024720,0.0000024639,0.0000024578, -0.0000024511,0.0000024403,0.0000024261,0.0000024150,0.0000024120, -0.0000024141,0.0000024170,0.0000024176,0.0000024174,0.0000024170, -0.0000024165,0.0000024164,0.0000024168,0.0000024177,0.0000024195, -0.0000024210,0.0000024214,0.0000024214,0.0000024210,0.0000024186, -0.0000024171,0.0000024190,0.0000024217,0.0000024216,0.0000024181, -0.0000024119,0.0000024047,0.0000023982,0.0000023933,0.0000023896, -0.0000023877,0.0000023877,0.0000023896,0.0000023922,0.0000023934, -0.0000023926,0.0000023908,0.0000023881,0.0000023857,0.0000023854, -0.0000023856,0.0000023822,0.0000023762,0.0000023740,0.0000023750, -0.0000023774,0.0000023796,0.0000023812,0.0000023824,0.0000023827, -0.0000023788,0.0000023738,0.0000023723,0.0000023728,0.0000023720, -0.0000023686,0.0000023606,0.0000023482,0.0000023468,0.0000023641, -0.0000023794,0.0000023858,0.0000024015,0.0000024229,0.0000024354, -0.0000024367,0.0000024927,0.0000025621,0.0000025838,0.0000025913, -0.0000025919,0.0000025704,0.0000025659,0.0000025731,0.0000025744, -0.0000025666,0.0000025241,0.0000024949,0.0000025090,0.0000025356, -0.0000025946,0.0000026350,0.0000026618,0.0000026870,0.0000027020, -0.0000027138,0.0000027217,0.0000027228,0.0000027214,0.0000027223, -0.0000027250,0.0000027265,0.0000027258,0.0000027237,0.0000027212, -0.0000027200,0.0000027188,0.0000027171,0.0000027149,0.0000027121, -0.0000027088,0.0000027050,0.0000027012,0.0000026979,0.0000026948, -0.0000026928,0.0000026918,0.0000026920,0.0000026946,0.0000026994, -0.0000027181,0.0000027240,0.0000027287,0.0000027316,0.0000027315, -0.0000027279,0.0000027232,0.0000027182,0.0000027105,0.0000027012, -0.0000026921,0.0000026861,0.0000026837,0.0000026811,0.0000026772, -0.0000026740,0.0000026726,0.0000026703,0.0000026659,0.0000026622, -0.0000026605,0.0000026606,0.0000026604,0.0000026585,0.0000026547, -0.0000026521,0.0000026518,0.0000026525,0.0000026527,0.0000026518, -0.0000026534,0.0000026594,0.0000026670,0.0000026724,0.0000026749, -0.0000026769,0.0000026787,0.0000026780,0.0000026720,0.0000026635, -0.0000026551,0.0000026465,0.0000026355,0.0000026188,0.0000025952, -0.0000025721,0.0000025583,0.0000025520,0.0000025484,0.0000025457, -0.0000025447,0.0000025474,0.0000025525,0.0000025560,0.0000025575, -0.0000025585,0.0000025581,0.0000025577,0.0000025591,0.0000025604, -0.0000025589,0.0000025529,0.0000025477,0.0000025442,0.0000025444, -0.0000025433,0.0000025285,0.0000024996,0.0000024771,0.0000024649, -0.0000024495,0.0000024361,0.0000024349,0.0000024406,0.0000024430, -0.0000024377,0.0000024297,0.0000024347,0.0000024481,0.0000024554, -0.0000024614,0.0000024673,0.0000024727,0.0000024780,0.0000024819, -0.0000024852,0.0000024893,0.0000024935,0.0000024941,0.0000024919, -0.0000024911,0.0000024932,0.0000024962,0.0000024963,0.0000024982, -0.0000025093,0.0000025260,0.0000025403,0.0000025524,0.0000025651, -0.0000025764,0.0000025827,0.0000025832,0.0000025772,0.0000025642, -0.0000025570,0.0000025498,0.0000025429,0.0000025492,0.0000025646, -0.0000025741,0.0000025787,0.0000025810,0.0000025785,0.0000025723, -0.0000025620,0.0000025514,0.0000025423,0.0000025285,0.0000025151, -0.0000025034,0.0000024941,0.0000024934,0.0000024982,0.0000025062, -0.0000025149,0.0000025216,0.0000025259,0.0000025301,0.0000025350, -0.0000025396,0.0000025441,0.0000025498,0.0000025560,0.0000025581, -0.0000025586,0.0000025560,0.0000025520,0.0000025478,0.0000025444, -0.0000025429,0.0000025422,0.0000025411,0.0000025389,0.0000025361, -0.0000025329,0.0000025291,0.0000025249,0.0000025218,0.0000025223, -0.0000025280,0.0000025353,0.0000025378,0.0000025356,0.0000025244, -0.0000025075,0.0000024892,0.0000024736,0.0000024642,0.0000024592, -0.0000024580,0.0000024607,0.0000024772,0.0000025083,0.0000025420, -0.0000025680,0.0000025828,0.0000025892,0.0000025907,0.0000025891, -0.0000025897,0.0000025905,0.0000025919,0.0000025938,0.0000025948, -0.0000025961,0.0000025975,0.0000025976,0.0000025961,0.0000025931, -0.0000025887,0.0000025835,0.0000025781,0.0000025716,0.0000025637, -0.0000025543,0.0000025438,0.0000025338,0.0000025252,0.0000025186, -0.0000025147,0.0000025153,0.0000025249,0.0000025438,0.0000025633, -0.0000025754,0.0000025833,0.0000025908,0.0000025945,0.0000025946, -0.0000025957,0.0000025973,0.0000025963,0.0000025932,0.0000025927, -0.0000025969,0.0000026033,0.0000026093,0.0000026130,0.0000026140, -0.0000026137,0.0000026139,0.0000026145,0.0000026156,0.0000026174, -0.0000026211,0.0000026276,0.0000026347,0.0000026406,0.0000026423, -0.0000026421,0.0000026418,0.0000026411,0.0000026374,0.0000026303, -0.0000026230,0.0000026181,0.0000026154,0.0000026165,0.0000026228, -0.0000026317,0.0000026413,0.0000026537,0.0000026673,0.0000026794, -0.0000026929,0.0000027078,0.0000027182,0.0000027199,0.0000027137, -0.0000027035,0.0000026926,0.0000026833,0.0000026770,0.0000026739, -0.0000026725,0.0000026707,0.0000026675,0.0000026620,0.0000026516, -0.0000026360,0.0000026195,0.0000026068,0.0000026000,0.0000025977, -0.0000025967,0.0000025976,0.0000026036,0.0000026127,0.0000026203, -0.0000026235,0.0000026238,0.0000026212,0.0000026170,0.0000026116, -0.0000026060,0.0000026007,0.0000025965,0.0000025919,0.0000025843, -0.0000025734,0.0000025638,0.0000025611,0.0000025634,0.0000025684, -0.0000025758,0.0000025843,0.0000025898,0.0000025894,0.0000025840, -0.0000025771,0.0000025714,0.0000025673,0.0000025641,0.0000025610, -0.0000025569,0.0000025524,0.0000025481,0.0000025418,0.0000025304, -0.0000025179,0.0000025123,0.0000025148,0.0000025228,0.0000025287, -0.0000025322,0.0000025329,0.0000025342,0.0000025386,0.0000025469, -0.0000025550,0.0000025595,0.0000025609,0.0000025631,0.0000025689, -0.0000025784,0.0000025892,0.0000025996,0.0000026092,0.0000026179, -0.0000026265,0.0000026356,0.0000026447,0.0000026532,0.0000026583, -0.0000026578,0.0000026525,0.0000026456,0.0000026425,0.0000026438, -0.0000026479,0.0000026506,0.0000026489,0.0000026448,0.0000026421, -0.0000026426,0.0000026496,0.0000026624,0.0000026762,0.0000026874, -0.0000026955,0.0000027020,0.0000027062,0.0000027075,0.0000027065, -0.0000027025,0.0000026966,0.0000026900,0.0000026853,0.0000026843, -0.0000026855,0.0000026879,0.0000026887,0.0000026856,0.0000026803, -0.0000026774,0.0000026785,0.0000026840,0.0000026906,0.0000026982, -0.0000027089,0.0000027207,0.0000027299,0.0000027394,0.0000027529, -0.0000027635,0.0000027643,0.0000027587,0.0000027582,0.0000027675, -0.0000027751,0.0000027797,0.0000027932,0.0000028053,0.0000028023, -0.0000027904,0.0000027798,0.0000027755,0.0000027763,0.0000027809, -0.0000027861,0.0000027893,0.0000027909,0.0000027915,0.0000027909, -0.0000027895,0.0000027882,0.0000027870,0.0000027865,0.0000027868, -0.0000027879,0.0000027890,0.0000027887,0.0000027858,0.0000027814, -0.0000027763,0.0000027707,0.0000027666,0.0000027653,0.0000027665, -0.0000027664,0.0000027650,0.0000027629,0.0000027626,0.0000027637, -0.0000027645,0.0000027642,0.0000027622,0.0000027586,0.0000027545, -0.0000027501,0.0000027450,0.0000027407,0.0000027399,0.0000027431, -0.0000027476,0.0000027494,0.0000027462,0.0000027386,0.0000027300, -0.0000027220,0.0000027140,0.0000027054,0.0000026980,0.0000026924, -0.0000026871,0.0000026802,0.0000026682,0.0000026484,0.0000026241, -0.0000026030,0.0000025916,0.0000025896,0.0000025902,0.0000025883, -0.0000025815,0.0000025712,0.0000025601,0.0000025516,0.0000025465, -0.0000025425,0.0000025376,0.0000025312,0.0000025249,0.0000025199, -0.0000025147,0.0000025095,0.0000025074,0.0000025081,0.0000025108, -0.0000025151,0.0000025218,0.0000025307,0.0000025373,0.0000025394, -0.0000025383,0.0000025337,0.0000025271,0.0000025187,0.0000025138, -0.0000025133,0.0000025218,0.0000025395,0.0000025655,0.0000025977, -0.0000026295,0.0000026486,0.0000026542,0.0000026537,0.0000026494, -0.0000026427,0.0000026400,0.0000026411,0.0000026410,0.0000026387, -0.0000026367,0.0000026334,0.0000026264,0.0000026221,0.0000026240, -0.0000026302,0.0000026358,0.0000026395,0.0000026409,0.0000026424, -0.0000026462,0.0000026486,0.0000026483,0.0000026477,0.0000026480, -0.0000026488,0.0000026503,0.0000026526,0.0000026552,0.0000026565, -0.0000026528,0.0000026449,0.0000026377,0.0000026353,0.0000026387, -0.0000026433,0.0000026451,0.0000026460,0.0000026487,0.0000026545, -0.0000026631,0.0000026687,0.0000026682,0.0000026611,0.0000026559, -0.0000026557,0.0000026556,0.0000026567,0.0000026528,0.0000026086, -0.0000025598,0.0000025441,0.0000025468,0.0000025514,0.0000025587, -0.0000025704,0.0000025822,0.0000025959,0.0000026206,0.0000026474, -0.0000026626,0.0000026680,0.0000026698,0.0000026683,0.0000026617, -0.0000026588,0.0000026788,0.0000027136,0.0000027318,0.0000027294, -0.0000027217,0.0000027222,0.0000027343,0.0000027536,0.0000027725, -0.0000027838,0.0000027877,0.0000027883,0.0000027879,0.0000027844, -0.0000027783,0.0000027756,0.0000027763,0.0000027790,0.0000027799, -0.0000027774,0.0000027742,0.0000027723,0.0000027715,0.0000027694, -0.0000027649,0.0000027599,0.0000027577,0.0000027587,0.0000027669, -0.0000027810,0.0000027938,0.0000028000,0.0000028000,0.0000027966, -0.0000027930,0.0000027912,0.0000027905,0.0000027897,0.0000027880, -0.0000027844,0.0000027799,0.0000027742,0.0000027686,0.0000027642, -0.0000027602,0.0000027556,0.0000027508,0.0000027482,0.0000027485, -0.0000027487,0.0000027390,0.0000027147,0.0000026942,0.0000026937, -0.0000027103,0.0000027272,0.0000027317,0.0000027315,0.0000027323, -0.0000027336,0.0000027348,0.0000027359,0.0000027347,0.0000027307, -0.0000027253,0.0000027191,0.0000027129,0.0000027077,0.0000027042, -0.0000027014,0.0000026973,0.0000026908,0.0000026839,0.0000026799, -0.0000026799,0.0000026794,0.0000026755,0.0000026648,0.0000026486, -0.0000026316,0.0000026193,0.0000026151,0.0000026170,0.0000026213, -0.0000026225,0.0000026171,0.0000026067,0.0000025867,0.0000025602, -0.0000025425,0.0000025387,0.0000025389,0.0000025376,0.0000025335, -0.0000025263,0.0000025229,0.0000025244,0.0000025239,0.0000025203, -0.0000025176,0.0000025176,0.0000025191,0.0000025209,0.0000025225, -0.0000025239,0.0000025255,0.0000025277,0.0000025302,0.0000025329, -0.0000025355,0.0000025354,0.0000025295,0.0000025179,0.0000025073, -0.0000025045,0.0000025063,0.0000025104,0.0000025118,0.0000025107, -0.0000025088,0.0000025092,0.0000025163,0.0000025262,0.0000025280, -0.0000025214,0.0000025139,0.0000025140,0.0000025180,0.0000025157, -0.0000025079,0.0000025051,0.0000025121,0.0000025237,0.0000025321, -0.0000025358,0.0000025362,0.0000025347,0.0000025316,0.0000025268, -0.0000025196,0.0000025106,0.0000025037,0.0000025025,0.0000025058, -0.0000025099,0.0000025120,0.0000025123,0.0000025133,0.0000025165, -0.0000025202,0.0000025222,0.0000025223,0.0000025257,0.0000025400, -0.0000025629,0.0000025845,0.0000026013,0.0000026123,0.0000026179, -0.0000026232,0.0000026313,0.0000026400,0.0000026462,0.0000026496, -0.0000026500,0.0000026475,0.0000026423,0.0000026349,0.0000026279, -0.0000026269,0.0000026359,0.0000026524,0.0000026686,0.0000026824, -0.0000026980,0.0000027157,0.0000027292,0.0000027334,0.0000027276, -0.0000027150,0.0000027016,0.0000026933,0.0000026911,0.0000026888, -0.0000026791,0.0000026667,0.0000026644,0.0000026777,0.0000026967, -0.0000027102,0.0000027189,0.0000027283,0.0000027354,0.0000027383, -0.0000027435,0.0000027507,0.0000027543,0.0000027578,0.0000027650, -0.0000027746,0.0000027849,0.0000027945,0.0000028007,0.0000028033, -0.0000028034,0.0000028048,0.0000028108,0.0000028177,0.0000028189, -0.0000028130,0.0000028038,0.0000027941,0.0000027847,0.0000027770, -0.0000027709,0.0000027675,0.0000027664,0.0000027658,0.0000027630, -0.0000027590,0.0000027557,0.0000027547,0.0000027560,0.0000027574, -0.0000027551,0.0000027514,0.0000027504,0.0000027564,0.0000027655, -0.0000027724,0.0000027755,0.0000027772,0.0000027791,0.0000027801, -0.0000027813,0.0000027822,0.0000027826,0.0000027812,0.0000027778, -0.0000027728,0.0000027672,0.0000027622,0.0000027576,0.0000027503, -0.0000027402,0.0000027301,0.0000027221,0.0000027153,0.0000027097, -0.0000027035,0.0000027003,0.0000027011,0.0000027009,0.0000026982, -0.0000026997,0.0000027049,0.0000027044,0.0000026951,0.0000026838, -0.0000026755,0.0000026680,0.0000026590,0.0000026496,0.0000026398, -0.0000026270,0.0000026130,0.0000026044,0.0000026022,0.0000025991, -0.0000025928,0.0000025884,0.0000025867,0.0000025831,0.0000025753, -0.0000025671,0.0000025650,0.0000025700,0.0000025794,0.0000025826, -0.0000025784,0.0000025686,0.0000025542,0.0000025315,0.0000025071, -0.0000024952,0.0000024945,0.0000024948,0.0000024942,0.0000024936, -0.0000024941,0.0000024943,0.0000024931,0.0000024911,0.0000024881, -0.0000024848,0.0000024827,0.0000024816,0.0000024789,0.0000024712, -0.0000024596,0.0000024478,0.0000024370,0.0000024260,0.0000024159, -0.0000024128,0.0000024183,0.0000024249,0.0000024246,0.0000024159, -0.0000024101,0.0000024306,0.0000024805,0.0000025206,0.0000025353, -0.0000025640,0.0000026250,0.0000026774,0.0000027102,0.0000027441, -0.0000027622,0.0000027567,0.0000027467,0.0000027430,0.0000027428, -0.0000027428,0.0000027418,0.0000027370,0.0000027272,0.0000027191, -0.0000027174,0.0000027212,0.0000027310,0.0000027413,0.0000027488, -0.0000027558,0.0000027590,0.0000027547,0.0000027423,0.0000027320, -0.0000027253,0.0000027127,0.0000027067,0.0000027079,0.0000027079, -0.0000027049,0.0000027026,0.0000027031,0.0000027046,0.0000027087, -0.0000027119,0.0000027129,0.0000027128,0.0000027114,0.0000027043, -0.0000026899,0.0000026755,0.0000026697,0.0000026666,0.0000026613, -0.0000026544,0.0000026504,0.0000026489,0.0000026480,0.0000026475, -0.0000026514,0.0000026581,0.0000026662,0.0000026725,0.0000026767, -0.0000026795,0.0000026810,0.0000026797,0.0000026769,0.0000026762, -0.0000026764,0.0000026772,0.0000026785,0.0000026792,0.0000026789, -0.0000026770,0.0000026740,0.0000026709,0.0000026682,0.0000026662, -0.0000026649,0.0000026637,0.0000026615,0.0000026579,0.0000026529, -0.0000026482,0.0000026417,0.0000026296,0.0000026090,0.0000025891, -0.0000025803,0.0000025753,0.0000025719,0.0000025688,0.0000025652, -0.0000025607,0.0000025556,0.0000025484,0.0000025383,0.0000025259, -0.0000025117,0.0000024954,0.0000024790,0.0000024653,0.0000024557, -0.0000024479,0.0000024357,0.0000024200,0.0000024101,0.0000024091, -0.0000024126,0.0000024152,0.0000024161,0.0000024178,0.0000024196, -0.0000024203,0.0000024215,0.0000024227,0.0000024222,0.0000024209, -0.0000024207,0.0000024211,0.0000024210,0.0000024211,0.0000024198, -0.0000024161,0.0000024140,0.0000024153,0.0000024159,0.0000024140, -0.0000024094,0.0000024032,0.0000023970,0.0000023918,0.0000023879, -0.0000023856,0.0000023858,0.0000023896,0.0000023936,0.0000023945, -0.0000023932,0.0000023911,0.0000023893,0.0000023875,0.0000023866, -0.0000023860,0.0000023833,0.0000023787,0.0000023749,0.0000023731, -0.0000023736,0.0000023763,0.0000023795,0.0000023816,0.0000023820, -0.0000023782,0.0000023716,0.0000023677,0.0000023667,0.0000023647, -0.0000023603,0.0000023521,0.0000023404,0.0000023403,0.0000023593, -0.0000023760,0.0000023838,0.0000023995,0.0000024200,0.0000024344, -0.0000024362,0.0000024885,0.0000025593,0.0000025834,0.0000025903, -0.0000025909,0.0000025699,0.0000025620,0.0000025684,0.0000025699, -0.0000025657,0.0000025355,0.0000024959,0.0000024927,0.0000025113, -0.0000025507,0.0000026087,0.0000026399,0.0000026651,0.0000026870, -0.0000026998,0.0000027096,0.0000027160,0.0000027184,0.0000027202, -0.0000027220,0.0000027228,0.0000027226,0.0000027218,0.0000027209, -0.0000027205,0.0000027200,0.0000027186,0.0000027160,0.0000027128, -0.0000027088,0.0000027048,0.0000027012,0.0000026990,0.0000026983, -0.0000026990,0.0000027005,0.0000027030,0.0000027073,0.0000027126, -0.0000027236,0.0000027284,0.0000027334,0.0000027356,0.0000027343, -0.0000027294,0.0000027240,0.0000027182,0.0000027097,0.0000026986, -0.0000026876,0.0000026800,0.0000026768,0.0000026747,0.0000026738, -0.0000026735,0.0000026720,0.0000026668,0.0000026599,0.0000026542, -0.0000026513,0.0000026513,0.0000026523,0.0000026524,0.0000026503, -0.0000026480,0.0000026471,0.0000026478,0.0000026485,0.0000026475, -0.0000026469,0.0000026494,0.0000026558,0.0000026627,0.0000026676, -0.0000026709,0.0000026734,0.0000026743,0.0000026719,0.0000026645, -0.0000026553,0.0000026457,0.0000026358,0.0000026246,0.0000026109, -0.0000025935,0.0000025771,0.0000025657,0.0000025589,0.0000025559, -0.0000025569,0.0000025613,0.0000025670,0.0000025704,0.0000025713, -0.0000025696,0.0000025647,0.0000025611,0.0000025610,0.0000025606, -0.0000025575,0.0000025503,0.0000025447,0.0000025419,0.0000025416, -0.0000025349,0.0000025142,0.0000024884,0.0000024721,0.0000024622, -0.0000024479,0.0000024336,0.0000024300,0.0000024352,0.0000024416, -0.0000024406,0.0000024326,0.0000024299,0.0000024412,0.0000024526, -0.0000024596,0.0000024660,0.0000024718,0.0000024780,0.0000024832, -0.0000024874,0.0000024901,0.0000024928,0.0000024965,0.0000024977, -0.0000024964,0.0000024958,0.0000024970,0.0000024976,0.0000024973, -0.0000025020,0.0000025143,0.0000025311,0.0000025444,0.0000025514, -0.0000025595,0.0000025721,0.0000025815,0.0000025826,0.0000025749, -0.0000025624,0.0000025559,0.0000025473,0.0000025436,0.0000025531, -0.0000025670,0.0000025749,0.0000025798,0.0000025814,0.0000025790, -0.0000025729,0.0000025624,0.0000025511,0.0000025406,0.0000025262, -0.0000025146,0.0000025028,0.0000024925,0.0000024915,0.0000024967, -0.0000025056,0.0000025148,0.0000025212,0.0000025243,0.0000025265, -0.0000025289,0.0000025313,0.0000025344,0.0000025400,0.0000025479, -0.0000025550,0.0000025593,0.0000025593,0.0000025569,0.0000025532, -0.0000025488,0.0000025452,0.0000025424,0.0000025403,0.0000025386, -0.0000025367,0.0000025338,0.0000025306,0.0000025271,0.0000025233, -0.0000025210,0.0000025214,0.0000025264,0.0000025337,0.0000025374, -0.0000025362,0.0000025258,0.0000025082,0.0000024878,0.0000024713, -0.0000024624,0.0000024585,0.0000024575,0.0000024572,0.0000024701, -0.0000024964,0.0000025269,0.0000025524,0.0000025698,0.0000025794, -0.0000025842,0.0000025863,0.0000025876,0.0000025887,0.0000025895, -0.0000025896,0.0000025889,0.0000025871,0.0000025842,0.0000025791, -0.0000025718,0.0000025628,0.0000025525,0.0000025416,0.0000025308, -0.0000025205,0.0000025111,0.0000025028,0.0000024967,0.0000024933, -0.0000024911,0.0000024871,0.0000024826,0.0000024851,0.0000025017, -0.0000025305,0.0000025577,0.0000025743,0.0000025851,0.0000025932, -0.0000025975,0.0000025995,0.0000026004,0.0000025988,0.0000025949, -0.0000025934,0.0000025949,0.0000025984,0.0000026032,0.0000026081, -0.0000026117,0.0000026130,0.0000026125,0.0000026106,0.0000026092, -0.0000026099,0.0000026126,0.0000026192,0.0000026283,0.0000026360, -0.0000026406,0.0000026427,0.0000026436,0.0000026427,0.0000026398, -0.0000026344,0.0000026274,0.0000026219,0.0000026187,0.0000026166, -0.0000026171,0.0000026208,0.0000026273,0.0000026377,0.0000026513, -0.0000026649,0.0000026785,0.0000026939,0.0000027074,0.0000027132, -0.0000027109,0.0000027028,0.0000026921,0.0000026822,0.0000026749, -0.0000026690,0.0000026623,0.0000026538,0.0000026456,0.0000026379, -0.0000026281,0.0000026166,0.0000026061,0.0000025989,0.0000025952, -0.0000025933,0.0000025923,0.0000025939,0.0000026032,0.0000026142, -0.0000026218,0.0000026251,0.0000026253,0.0000026223,0.0000026166, -0.0000026098,0.0000026030,0.0000025964,0.0000025909,0.0000025865, -0.0000025809,0.0000025722,0.0000025632,0.0000025604,0.0000025642, -0.0000025707,0.0000025781,0.0000025864,0.0000025929,0.0000025936, -0.0000025887,0.0000025809,0.0000025741,0.0000025696,0.0000025666, -0.0000025638,0.0000025593,0.0000025533,0.0000025473,0.0000025416, -0.0000025324,0.0000025200,0.0000025116,0.0000025102,0.0000025181, -0.0000025275,0.0000025334,0.0000025358,0.0000025352,0.0000025358, -0.0000025407,0.0000025491,0.0000025556,0.0000025571,0.0000025567, -0.0000025579,0.0000025633,0.0000025713,0.0000025800,0.0000025893, -0.0000025979,0.0000026053,0.0000026129,0.0000026213,0.0000026294, -0.0000026346,0.0000026351,0.0000026305,0.0000026216,0.0000026128, -0.0000026094,0.0000026120,0.0000026178,0.0000026220,0.0000026235, -0.0000026239,0.0000026245,0.0000026282,0.0000026379,0.0000026518, -0.0000026642,0.0000026721,0.0000026770,0.0000026813,0.0000026851, -0.0000026880,0.0000026890,0.0000026871,0.0000026829,0.0000026787, -0.0000026772,0.0000026787,0.0000026815,0.0000026824,0.0000026788, -0.0000026714,0.0000026673,0.0000026686,0.0000026754,0.0000026842, -0.0000026946,0.0000027061,0.0000027182,0.0000027291,0.0000027388, -0.0000027501,0.0000027620,0.0000027671,0.0000027640,0.0000027562, -0.0000027569,0.0000027682,0.0000027752,0.0000027787,0.0000027908, -0.0000028006,0.0000027962,0.0000027839,0.0000027734,0.0000027685, -0.0000027686,0.0000027726,0.0000027771,0.0000027800,0.0000027813, -0.0000027812,0.0000027807,0.0000027807,0.0000027810,0.0000027816, -0.0000027832,0.0000027847,0.0000027855,0.0000027840,0.0000027785, -0.0000027698,0.0000027610,0.0000027528,0.0000027461,0.0000027437, -0.0000027464,0.0000027512,0.0000027547,0.0000027573,0.0000027598, -0.0000027627,0.0000027652,0.0000027668,0.0000027668,0.0000027668, -0.0000027653,0.0000027621,0.0000027567,0.0000027498,0.0000027449, -0.0000027448,0.0000027483,0.0000027512,0.0000027508,0.0000027464, -0.0000027400,0.0000027338,0.0000027272,0.0000027180,0.0000027077, -0.0000026998,0.0000026942,0.0000026893,0.0000026856,0.0000026808, -0.0000026697,0.0000026495,0.0000026235,0.0000026007,0.0000025891, -0.0000025850,0.0000025823,0.0000025771,0.0000025682,0.0000025581, -0.0000025511,0.0000025495,0.0000025484,0.0000025449,0.0000025383, -0.0000025307,0.0000025235,0.0000025166,0.0000025116,0.0000025099, -0.0000025105,0.0000025122,0.0000025150,0.0000025199,0.0000025272, -0.0000025319,0.0000025336,0.0000025326,0.0000025299,0.0000025249, -0.0000025196,0.0000025149,0.0000025095,0.0000025064,0.0000025135, -0.0000025351,0.0000025686,0.0000026079,0.0000026420,0.0000026556, -0.0000026579,0.0000026544,0.0000026462,0.0000026411,0.0000026408, -0.0000026404,0.0000026387,0.0000026370,0.0000026332,0.0000026262, -0.0000026218,0.0000026225,0.0000026283,0.0000026342,0.0000026369, -0.0000026386,0.0000026423,0.0000026462,0.0000026469,0.0000026453, -0.0000026440,0.0000026428,0.0000026422,0.0000026433,0.0000026463, -0.0000026494,0.0000026505,0.0000026469,0.0000026403,0.0000026338, -0.0000026327,0.0000026371,0.0000026416,0.0000026430,0.0000026446, -0.0000026488,0.0000026549,0.0000026621,0.0000026670,0.0000026670, -0.0000026598,0.0000026542,0.0000026544,0.0000026545,0.0000026549, -0.0000026531,0.0000026153,0.0000025606,0.0000025371,0.0000025389, -0.0000025473,0.0000025571,0.0000025706,0.0000025835,0.0000025922, -0.0000026065,0.0000026306,0.0000026516,0.0000026607,0.0000026631, -0.0000026646,0.0000026624,0.0000026561,0.0000026633,0.0000026953, -0.0000027231,0.0000027275,0.0000027203,0.0000027169,0.0000027216, -0.0000027355,0.0000027532,0.0000027686,0.0000027777,0.0000027827, -0.0000027855,0.0000027847,0.0000027801,0.0000027755,0.0000027729, -0.0000027738,0.0000027767,0.0000027777,0.0000027762,0.0000027746, -0.0000027743,0.0000027741,0.0000027714,0.0000027657,0.0000027598, -0.0000027570,0.0000027568,0.0000027617,0.0000027732,0.0000027869, -0.0000027956,0.0000027966,0.0000027930,0.0000027892,0.0000027867, -0.0000027858,0.0000027855,0.0000027841,0.0000027813,0.0000027774, -0.0000027728,0.0000027672,0.0000027604,0.0000027528,0.0000027463, -0.0000027436,0.0000027445,0.0000027436,0.0000027306,0.0000027069, -0.0000026946,0.0000027008,0.0000027221,0.0000027367,0.0000027383, -0.0000027367,0.0000027361,0.0000027351,0.0000027339,0.0000027329, -0.0000027303,0.0000027257,0.0000027196,0.0000027122,0.0000027036, -0.0000026955,0.0000026896,0.0000026861,0.0000026824,0.0000026761, -0.0000026679,0.0000026617,0.0000026608,0.0000026637,0.0000026646, -0.0000026608,0.0000026494,0.0000026340,0.0000026202,0.0000026131, -0.0000026130,0.0000026158,0.0000026163,0.0000026119,0.0000026026, -0.0000025850,0.0000025624,0.0000025473,0.0000025435,0.0000025425, -0.0000025389,0.0000025327,0.0000025253,0.0000025235,0.0000025253, -0.0000025248,0.0000025229,0.0000025232,0.0000025242,0.0000025247, -0.0000025242,0.0000025243,0.0000025245,0.0000025255,0.0000025275, -0.0000025295,0.0000025320,0.0000025347,0.0000025382,0.0000025413, -0.0000025398,0.0000025288,0.0000025134,0.0000025040,0.0000025033, -0.0000025065,0.0000025083,0.0000025084,0.0000025074,0.0000025074, -0.0000025122,0.0000025216,0.0000025277,0.0000025239,0.0000025134, -0.0000025090,0.0000025136,0.0000025178,0.0000025155,0.0000025112, -0.0000025107,0.0000025149,0.0000025200,0.0000025230,0.0000025227, -0.0000025196,0.0000025152,0.0000025092,0.0000025011,0.0000024936, -0.0000024911,0.0000024940,0.0000025005,0.0000025055,0.0000025072, -0.0000025077,0.0000025097,0.0000025137,0.0000025183,0.0000025213, -0.0000025218,0.0000025235,0.0000025341,0.0000025546,0.0000025763, -0.0000025930,0.0000026042,0.0000026099,0.0000026146,0.0000026225, -0.0000026311,0.0000026373,0.0000026410,0.0000026423,0.0000026411, -0.0000026375,0.0000026320,0.0000026254,0.0000026220,0.0000026259, -0.0000026393,0.0000026560,0.0000026698,0.0000026822,0.0000026969, -0.0000027113,0.0000027196,0.0000027192,0.0000027112,0.0000026987, -0.0000026881,0.0000026836,0.0000026817,0.0000026729,0.0000026579, -0.0000026522,0.0000026644,0.0000026864,0.0000026996,0.0000027034, -0.0000027120,0.0000027255,0.0000027348,0.0000027420,0.0000027515, -0.0000027570,0.0000027595,0.0000027642,0.0000027704,0.0000027783, -0.0000027869,0.0000027929,0.0000027964,0.0000027985,0.0000028018, -0.0000028092,0.0000028179,0.0000028201,0.0000028143,0.0000028026, -0.0000027901,0.0000027802,0.0000027731,0.0000027668,0.0000027627, -0.0000027616,0.0000027620,0.0000027612,0.0000027586,0.0000027547, -0.0000027510,0.0000027496,0.0000027521,0.0000027565,0.0000027590, -0.0000027570,0.0000027561,0.0000027594,0.0000027654,0.0000027705, -0.0000027736,0.0000027761,0.0000027788,0.0000027815,0.0000027832, -0.0000027840,0.0000027829,0.0000027791,0.0000027741,0.0000027697, -0.0000027652,0.0000027606,0.0000027556,0.0000027473,0.0000027365, -0.0000027275,0.0000027209,0.0000027151,0.0000027088,0.0000027057, -0.0000027064,0.0000027055,0.0000027020,0.0000027034,0.0000027085, -0.0000027061,0.0000026954,0.0000026855,0.0000026802,0.0000026752, -0.0000026676,0.0000026591,0.0000026504,0.0000026387,0.0000026234, -0.0000026109,0.0000026066,0.0000026047,0.0000025986,0.0000025915, -0.0000025881,0.0000025858,0.0000025801,0.0000025710,0.0000025650, -0.0000025664,0.0000025750,0.0000025809,0.0000025788,0.0000025698, -0.0000025562,0.0000025357,0.0000025113,0.0000024960,0.0000024934, -0.0000024943,0.0000024953,0.0000024964,0.0000024974,0.0000024980, -0.0000024976,0.0000024956,0.0000024929,0.0000024903,0.0000024877, -0.0000024856,0.0000024833,0.0000024775,0.0000024661,0.0000024526, -0.0000024407,0.0000024286,0.0000024165,0.0000024127,0.0000024170, -0.0000024261,0.0000024291,0.0000024244,0.0000024161,0.0000024205, -0.0000024551,0.0000025031,0.0000025287,0.0000025408,0.0000025814, -0.0000026442,0.0000026862,0.0000027154,0.0000027472,0.0000027583, -0.0000027525,0.0000027440,0.0000027420,0.0000027421,0.0000027391, -0.0000027311,0.0000027185,0.0000027077,0.0000027057,0.0000027091, -0.0000027186,0.0000027320,0.0000027424,0.0000027500,0.0000027564, -0.0000027560,0.0000027456,0.0000027340,0.0000027277,0.0000027155, -0.0000027086,0.0000027100,0.0000027090,0.0000027056,0.0000027032, -0.0000027046,0.0000027067,0.0000027106,0.0000027144,0.0000027174, -0.0000027185,0.0000027151,0.0000027046,0.0000026858,0.0000026696, -0.0000026649,0.0000026630,0.0000026577,0.0000026510,0.0000026467, -0.0000026457,0.0000026453,0.0000026455,0.0000026480,0.0000026527, -0.0000026589,0.0000026644,0.0000026682,0.0000026703,0.0000026721, -0.0000026740,0.0000026751,0.0000026758,0.0000026761,0.0000026757, -0.0000026752,0.0000026745,0.0000026736,0.0000026718,0.0000026687, -0.0000026653,0.0000026625,0.0000026607,0.0000026595,0.0000026577, -0.0000026548,0.0000026511,0.0000026469,0.0000026419,0.0000026338, -0.0000026187,0.0000025990,0.0000025863,0.0000025822,0.0000025804, -0.0000025795,0.0000025802,0.0000025809,0.0000025808,0.0000025798, -0.0000025767,0.0000025695,0.0000025577,0.0000025417,0.0000025232, -0.0000025044,0.0000024850,0.0000024669,0.0000024544,0.0000024445, -0.0000024299,0.0000024136,0.0000024049,0.0000024059,0.0000024110, -0.0000024142,0.0000024166,0.0000024201,0.0000024237,0.0000024259, -0.0000024279,0.0000024293,0.0000024285,0.0000024256,0.0000024225, -0.0000024205,0.0000024190,0.0000024186,0.0000024188,0.0000024155, -0.0000024099,0.0000024077,0.0000024081,0.0000024074,0.0000024048, -0.0000024013,0.0000023968,0.0000023917,0.0000023874,0.0000023856, -0.0000023867,0.0000023906,0.0000023934,0.0000023933,0.0000023922, -0.0000023916,0.0000023914,0.0000023904,0.0000023883,0.0000023858, -0.0000023826,0.0000023788,0.0000023750,0.0000023725,0.0000023725, -0.0000023750,0.0000023779,0.0000023794,0.0000023794,0.0000023760, -0.0000023686,0.0000023624,0.0000023593,0.0000023566,0.0000023521, -0.0000023441,0.0000023343,0.0000023366,0.0000023562,0.0000023736, -0.0000023825,0.0000023983,0.0000024181,0.0000024341,0.0000024364, -0.0000024821,0.0000025542,0.0000025830,0.0000025895,0.0000025900, -0.0000025702,0.0000025581,0.0000025615,0.0000025642,0.0000025630, -0.0000025461,0.0000025061,0.0000024822,0.0000024933,0.0000025153, -0.0000025689,0.0000026198,0.0000026450,0.0000026694,0.0000026878, -0.0000026975,0.0000027052,0.0000027111,0.0000027153,0.0000027193, -0.0000027218,0.0000027223,0.0000027216,0.0000027211,0.0000027211, -0.0000027209,0.0000027193,0.0000027160,0.0000027122,0.0000027079, -0.0000027036,0.0000027004,0.0000026996,0.0000027014,0.0000027042, -0.0000027074,0.0000027110,0.0000027153,0.0000027195,0.0000027259, -0.0000027296,0.0000027346,0.0000027364,0.0000027340,0.0000027287, -0.0000027222,0.0000027144,0.0000027032,0.0000026890,0.0000026768, -0.0000026707,0.0000026705,0.0000026719,0.0000026720,0.0000026688, -0.0000026627,0.0000026546,0.0000026471,0.0000026413,0.0000026377, -0.0000026368,0.0000026373,0.0000026388,0.0000026392,0.0000026391, -0.0000026384,0.0000026386,0.0000026398,0.0000026407,0.0000026403, -0.0000026401,0.0000026429,0.0000026486,0.0000026550,0.0000026603, -0.0000026646,0.0000026676,0.0000026684,0.0000026649,0.0000026570, -0.0000026476,0.0000026381,0.0000026284,0.0000026187,0.0000026083, -0.0000025975,0.0000025877,0.0000025797,0.0000025752,0.0000025748, -0.0000025763,0.0000025789,0.0000025805,0.0000025797,0.0000025752, -0.0000025685,0.0000025639,0.0000025629,0.0000025610,0.0000025547, -0.0000025466,0.0000025411,0.0000025386,0.0000025333,0.0000025180, -0.0000024950,0.0000024756,0.0000024652,0.0000024569,0.0000024444, -0.0000024320,0.0000024268,0.0000024299,0.0000024378,0.0000024402, -0.0000024357,0.0000024295,0.0000024345,0.0000024475,0.0000024568, -0.0000024643,0.0000024702,0.0000024768,0.0000024832,0.0000024881, -0.0000024928,0.0000024946,0.0000024960,0.0000024990,0.0000025007, -0.0000025001,0.0000024994,0.0000024994,0.0000024986,0.0000024997, -0.0000025085,0.0000025215,0.0000025370,0.0000025479,0.0000025506, -0.0000025554,0.0000025693,0.0000025804,0.0000025815,0.0000025713, -0.0000025605,0.0000025531,0.0000025446,0.0000025441,0.0000025569, -0.0000025691,0.0000025761,0.0000025808,0.0000025818,0.0000025793, -0.0000025735,0.0000025629,0.0000025505,0.0000025392,0.0000025254, -0.0000025152,0.0000025027,0.0000024917,0.0000024909,0.0000024960, -0.0000025048,0.0000025142,0.0000025204,0.0000025230,0.0000025241, -0.0000025249,0.0000025257,0.0000025272,0.0000025308,0.0000025370, -0.0000025445,0.0000025515,0.0000025561,0.0000025577,0.0000025577, -0.0000025549,0.0000025509,0.0000025457,0.0000025406,0.0000025375, -0.0000025355,0.0000025335,0.0000025312,0.0000025284,0.0000025250, -0.0000025213,0.0000025195,0.0000025200,0.0000025244,0.0000025320, -0.0000025374,0.0000025363,0.0000025261,0.0000025076,0.0000024862, -0.0000024697,0.0000024617,0.0000024587,0.0000024549,0.0000024557, -0.0000024641,0.0000024821,0.0000025055,0.0000025274,0.0000025448, -0.0000025576,0.0000025661,0.0000025708,0.0000025728,0.0000025729, -0.0000025714,0.0000025677,0.0000025621,0.0000025541,0.0000025432, -0.0000025308,0.0000025186,0.0000025076,0.0000024987,0.0000024933, -0.0000024912,0.0000024913,0.0000024925,0.0000024933,0.0000024961, -0.0000024966,0.0000024928,0.0000024821,0.0000024766,0.0000024776, -0.0000024962,0.0000025301,0.0000025602,0.0000025777,0.0000025894, -0.0000025982,0.0000026030,0.0000026032,0.0000026013,0.0000025983, -0.0000025958,0.0000025947,0.0000025941,0.0000025955,0.0000025998, -0.0000026061,0.0000026115,0.0000026137,0.0000026126,0.0000026099, -0.0000026073,0.0000026060,0.0000026081,0.0000026134,0.0000026204, -0.0000026283,0.0000026362,0.0000026412,0.0000026423,0.0000026403, -0.0000026358,0.0000026300,0.0000026244,0.0000026204,0.0000026174, -0.0000026151,0.0000026152,0.0000026180,0.0000026234,0.0000026332, -0.0000026466,0.0000026611,0.0000026772,0.0000026929,0.0000027030, -0.0000027049,0.0000027002,0.0000026912,0.0000026815,0.0000026735, -0.0000026658,0.0000026560,0.0000026435,0.0000026305,0.0000026190, -0.0000026098,0.0000026030,0.0000025983,0.0000025952,0.0000025932, -0.0000025920,0.0000025930,0.0000025975,0.0000026064,0.0000026156, -0.0000026215,0.0000026238,0.0000026233,0.0000026183,0.0000026104, -0.0000026023,0.0000025955,0.0000025894,0.0000025835,0.0000025785, -0.0000025733,0.0000025656,0.0000025567,0.0000025537,0.0000025592, -0.0000025693,0.0000025789,0.0000025874,0.0000025939,0.0000025948, -0.0000025893,0.0000025805,0.0000025719,0.0000025659,0.0000025632, -0.0000025623,0.0000025612,0.0000025578,0.0000025522,0.0000025446, -0.0000025345,0.0000025230,0.0000025131,0.0000025086,0.0000025117, -0.0000025219,0.0000025317,0.0000025369,0.0000025372,0.0000025363, -0.0000025375,0.0000025430,0.0000025506,0.0000025540,0.0000025529, -0.0000025497,0.0000025489,0.0000025528,0.0000025596,0.0000025691, -0.0000025795,0.0000025876,0.0000025938,0.0000025995,0.0000026049, -0.0000026082,0.0000026070,0.0000026011,0.0000025912,0.0000025792, -0.0000025691,0.0000025662,0.0000025704,0.0000025780,0.0000025847, -0.0000025903,0.0000025951,0.0000026001,0.0000026079,0.0000026196, -0.0000026325,0.0000026423,0.0000026475,0.0000026509,0.0000026552, -0.0000026610,0.0000026670,0.0000026700,0.0000026699,0.0000026682, -0.0000026679,0.0000026702,0.0000026736,0.0000026743,0.0000026704, -0.0000026630,0.0000026573,0.0000026588,0.0000026668,0.0000026779, -0.0000026910,0.0000027052,0.0000027175,0.0000027274,0.0000027377, -0.0000027488,0.0000027594,0.0000027667,0.0000027675,0.0000027606, -0.0000027530,0.0000027570,0.0000027693,0.0000027750,0.0000027764, -0.0000027849,0.0000027925,0.0000027890,0.0000027785,0.0000027694, -0.0000027642,0.0000027636,0.0000027656,0.0000027683,0.0000027705, -0.0000027715,0.0000027723,0.0000027741,0.0000027767,0.0000027789, -0.0000027817,0.0000027839,0.0000027853,0.0000027838,0.0000027775, -0.0000027660,0.0000027515,0.0000027368,0.0000027235,0.0000027142, -0.0000027114,0.0000027149,0.0000027216,0.0000027297,0.0000027384, -0.0000027467,0.0000027542,0.0000027600,0.0000027636,0.0000027657, -0.0000027666,0.0000027655,0.0000027620,0.0000027562,0.0000027487, -0.0000027450,0.0000027460,0.0000027491,0.0000027501,0.0000027485, -0.0000027438,0.0000027390,0.0000027357,0.0000027307,0.0000027217, -0.0000027119,0.0000027043,0.0000026987,0.0000026927,0.0000026875, -0.0000026840,0.0000026799,0.0000026697,0.0000026489,0.0000026207, -0.0000025961,0.0000025820,0.0000025746,0.0000025708,0.0000025647, -0.0000025558,0.0000025492,0.0000025486,0.0000025499,0.0000025488, -0.0000025450,0.0000025393,0.0000025324,0.0000025242,0.0000025164, -0.0000025129,0.0000025133,0.0000025138,0.0000025148,0.0000025173, -0.0000025213,0.0000025229,0.0000025223,0.0000025204,0.0000025190, -0.0000025181,0.0000025190,0.0000025191,0.0000025144,0.0000025056, -0.0000025003,0.0000025108,0.0000025395,0.0000025814,0.0000026274, -0.0000026554,0.0000026611,0.0000026586,0.0000026500,0.0000026424, -0.0000026400,0.0000026392,0.0000026380,0.0000026365,0.0000026327, -0.0000026264,0.0000026217,0.0000026216,0.0000026272,0.0000026326, -0.0000026343,0.0000026376,0.0000026422,0.0000026442,0.0000026434, -0.0000026412,0.0000026400,0.0000026380,0.0000026363,0.0000026364, -0.0000026391,0.0000026419,0.0000026425,0.0000026397,0.0000026348, -0.0000026299,0.0000026306,0.0000026359,0.0000026404,0.0000026427, -0.0000026451,0.0000026503,0.0000026559,0.0000026616,0.0000026652, -0.0000026638,0.0000026562,0.0000026512,0.0000026520,0.0000026516, -0.0000026505,0.0000026496,0.0000026149,0.0000025599,0.0000025333, -0.0000025342,0.0000025455,0.0000025572,0.0000025699,0.0000025830, -0.0000025918,0.0000025996,0.0000026147,0.0000026362,0.0000026520, -0.0000026569,0.0000026593,0.0000026601,0.0000026549,0.0000026547, -0.0000026791,0.0000027118,0.0000027235,0.0000027196,0.0000027136, -0.0000027137,0.0000027212,0.0000027345,0.0000027486,0.0000027611, -0.0000027721,0.0000027801,0.0000027824,0.0000027810,0.0000027772, -0.0000027730,0.0000027714,0.0000027731,0.0000027756,0.0000027758, -0.0000027746,0.0000027746,0.0000027756,0.0000027756,0.0000027717, -0.0000027644,0.0000027580,0.0000027553,0.0000027549,0.0000027576, -0.0000027666,0.0000027793,0.0000027886,0.0000027908,0.0000027881, -0.0000027845,0.0000027818,0.0000027808,0.0000027807,0.0000027800, -0.0000027778,0.0000027740,0.0000027686,0.0000027605,0.0000027501, -0.0000027420,0.0000027397,0.0000027405,0.0000027371,0.0000027202, -0.0000027003,0.0000026953,0.0000027104,0.0000027330,0.0000027423, -0.0000027413,0.0000027393,0.0000027383,0.0000027361,0.0000027340, -0.0000027322,0.0000027293,0.0000027246,0.0000027178,0.0000027088, -0.0000026981,0.0000026880,0.0000026811,0.0000026775,0.0000026744, -0.0000026685,0.0000026598,0.0000026511,0.0000026461,0.0000026460, -0.0000026495,0.0000026509,0.0000026468,0.0000026360,0.0000026230, -0.0000026139,0.0000026110,0.0000026115,0.0000026104,0.0000026053, -0.0000025972,0.0000025829,0.0000025646,0.0000025525,0.0000025496, -0.0000025467,0.0000025398,0.0000025313,0.0000025240,0.0000025228, -0.0000025255,0.0000025265,0.0000025270,0.0000025281,0.0000025275, -0.0000025256,0.0000025235,0.0000025215,0.0000025201,0.0000025200, -0.0000025220,0.0000025256,0.0000025299,0.0000025334,0.0000025359, -0.0000025390,0.0000025433,0.0000025442,0.0000025360,0.0000025194, -0.0000025064,0.0000025039,0.0000025051,0.0000025058,0.0000025062, -0.0000025062,0.0000025065,0.0000025101,0.0000025185,0.0000025264, -0.0000025255,0.0000025150,0.0000025069,0.0000025080,0.0000025149, -0.0000025187,0.0000025191,0.0000025168,0.0000025162,0.0000025174, -0.0000025177,0.0000025146,0.0000025095,0.0000025040,0.0000024989, -0.0000024930,0.0000024888,0.0000024893,0.0000024943,0.0000025011, -0.0000025051,0.0000025062,0.0000025073,0.0000025097,0.0000025129, -0.0000025169,0.0000025205,0.0000025219,0.0000025229,0.0000025303, -0.0000025476,0.0000025683,0.0000025850,0.0000025959,0.0000026013, -0.0000026058,0.0000026130,0.0000026203,0.0000026263,0.0000026308, -0.0000026334,0.0000026336,0.0000026320,0.0000026289,0.0000026241, -0.0000026198,0.0000026198,0.0000026279,0.0000026433,0.0000026588, -0.0000026699,0.0000026798,0.0000026904,0.0000026991,0.0000027028, -0.0000027008,0.0000026945,0.0000026865,0.0000026797,0.0000026741, -0.0000026647,0.0000026503,0.0000026426,0.0000026511,0.0000026739, -0.0000026896,0.0000026911,0.0000026957,0.0000027126,0.0000027301, -0.0000027409,0.0000027511,0.0000027579,0.0000027600,0.0000027634, -0.0000027677,0.0000027734,0.0000027798,0.0000027846,0.0000027885, -0.0000027926,0.0000027979,0.0000028060,0.0000028150,0.0000028182, -0.0000028124,0.0000028003,0.0000027877,0.0000027783,0.0000027703, -0.0000027634,0.0000027600,0.0000027595,0.0000027606,0.0000027617, -0.0000027617,0.0000027584,0.0000027522,0.0000027470,0.0000027472, -0.0000027548,0.0000027634,0.0000027647,0.0000027611,0.0000027580, -0.0000027586,0.0000027631,0.0000027678,0.0000027714,0.0000027746, -0.0000027783,0.0000027812,0.0000027826,0.0000027820,0.0000027787, -0.0000027743,0.0000027707,0.0000027669,0.0000027621,0.0000027580, -0.0000027526,0.0000027427,0.0000027325,0.0000027262,0.0000027208, -0.0000027142,0.0000027109,0.0000027113,0.0000027098,0.0000027054, -0.0000027060,0.0000027095,0.0000027063,0.0000026957,0.0000026871, -0.0000026835,0.0000026799,0.0000026739,0.0000026664,0.0000026584, -0.0000026482,0.0000026341,0.0000026195,0.0000026115,0.0000026093, -0.0000026045,0.0000025959,0.0000025898,0.0000025877,0.0000025846, -0.0000025768,0.0000025675,0.0000025642,0.0000025688,0.0000025763, -0.0000025778,0.0000025708,0.0000025584,0.0000025406,0.0000025177, -0.0000024987,0.0000024921,0.0000024928,0.0000024948,0.0000024966, -0.0000024980,0.0000024989,0.0000024993,0.0000024989,0.0000024963, -0.0000024931,0.0000024911,0.0000024892,0.0000024873,0.0000024835, -0.0000024738,0.0000024594,0.0000024456,0.0000024328,0.0000024196, -0.0000024117,0.0000024159,0.0000024261,0.0000024323,0.0000024304, -0.0000024227,0.0000024190,0.0000024356,0.0000024774,0.0000025173, -0.0000025323,0.0000025491,0.0000026004,0.0000026595,0.0000026913, -0.0000027185,0.0000027470,0.0000027538,0.0000027488,0.0000027438, -0.0000027420,0.0000027363,0.0000027250,0.0000027108,0.0000026975, -0.0000026932,0.0000026961,0.0000027051,0.0000027198,0.0000027343, -0.0000027437,0.0000027519,0.0000027547,0.0000027486,0.0000027368, -0.0000027303,0.0000027185,0.0000027107,0.0000027123,0.0000027102, -0.0000027064,0.0000027042,0.0000027063,0.0000027089,0.0000027127, -0.0000027171,0.0000027217,0.0000027224,0.0000027183,0.0000027041, -0.0000026829,0.0000026662,0.0000026597,0.0000026578,0.0000026532, -0.0000026467,0.0000026425,0.0000026418,0.0000026430,0.0000026450, -0.0000026471,0.0000026503,0.0000026535,0.0000026565,0.0000026586, -0.0000026595,0.0000026604,0.0000026622,0.0000026652,0.0000026683, -0.0000026706,0.0000026718,0.0000026721,0.0000026712,0.0000026700, -0.0000026678,0.0000026642,0.0000026603,0.0000026565,0.0000026535, -0.0000026512,0.0000026488,0.0000026458,0.0000026426,0.0000026382, -0.0000026326,0.0000026232,0.0000026074,0.0000025925,0.0000025877, -0.0000025865,0.0000025853,0.0000025849,0.0000025864,0.0000025891, -0.0000025915,0.0000025935,0.0000025944,0.0000025924,0.0000025855, -0.0000025733,0.0000025546,0.0000025315,0.0000025088,0.0000024871, -0.0000024666,0.0000024517,0.0000024398,0.0000024234,0.0000024069, -0.0000024004,0.0000024034,0.0000024098,0.0000024147,0.0000024187, -0.0000024230,0.0000024272,0.0000024300,0.0000024318,0.0000024335, -0.0000024340,0.0000024321,0.0000024262,0.0000024200,0.0000024159, -0.0000024141,0.0000024143,0.0000024126,0.0000024061,0.0000024008, -0.0000024002,0.0000024006,0.0000024001,0.0000023977,0.0000023942, -0.0000023905,0.0000023876,0.0000023864,0.0000023872,0.0000023895, -0.0000023908,0.0000023908,0.0000023910,0.0000023918,0.0000023928, -0.0000023923,0.0000023894,0.0000023849,0.0000023805,0.0000023776, -0.0000023758,0.0000023743,0.0000023739,0.0000023743,0.0000023750, -0.0000023752,0.0000023750,0.0000023725,0.0000023652,0.0000023568, -0.0000023519,0.0000023492,0.0000023452,0.0000023384,0.0000023305, -0.0000023344,0.0000023542,0.0000023722,0.0000023822,0.0000023982, -0.0000024170,0.0000024338,0.0000024364,0.0000024730,0.0000025454, -0.0000025824,0.0000025892,0.0000025893,0.0000025716,0.0000025561, -0.0000025546,0.0000025562,0.0000025564,0.0000025495,0.0000025210, -0.0000024857,0.0000024776,0.0000024946,0.0000025270,0.0000025886, -0.0000026293,0.0000026512,0.0000026744,0.0000026886,0.0000026950, -0.0000027006,0.0000027062,0.0000027124,0.0000027184,0.0000027215, -0.0000027217,0.0000027216,0.0000027212,0.0000027205,0.0000027175, -0.0000027127,0.0000027067,0.0000027011,0.0000026968,0.0000026950, -0.0000026971,0.0000027018,0.0000027071,0.0000027125,0.0000027172, -0.0000027212,0.0000027237,0.0000027239,0.0000027268,0.0000027318, -0.0000027333,0.0000027300,0.0000027231,0.0000027146,0.0000027040, -0.0000026898,0.0000026755,0.0000026667,0.0000026647,0.0000026662, -0.0000026661,0.0000026613,0.0000026534,0.0000026453,0.0000026384, -0.0000026327,0.0000026281,0.0000026246,0.0000026223,0.0000026211, -0.0000026216,0.0000026227,0.0000026249,0.0000026263,0.0000026264, -0.0000026265,0.0000026277,0.0000026294,0.0000026299,0.0000026303, -0.0000026325,0.0000026377,0.0000026440,0.0000026499,0.0000026551, -0.0000026588,0.0000026602,0.0000026577,0.0000026516,0.0000026442, -0.0000026360,0.0000026272,0.0000026186,0.0000026109,0.0000026042, -0.0000025978,0.0000025927,0.0000025894,0.0000025873,0.0000025865, -0.0000025859,0.0000025829,0.0000025769,0.0000025698,0.0000025657, -0.0000025634,0.0000025584,0.0000025499,0.0000025423,0.0000025371, -0.0000025307,0.0000025164,0.0000024952,0.0000024761,0.0000024645, -0.0000024576,0.0000024501,0.0000024400,0.0000024309,0.0000024260, -0.0000024264,0.0000024333,0.0000024378,0.0000024366,0.0000024302, -0.0000024299,0.0000024417,0.0000024528,0.0000024619,0.0000024687, -0.0000024746,0.0000024822,0.0000024877,0.0000024931,0.0000024978, -0.0000024982,0.0000024983,0.0000025009,0.0000025030,0.0000025031, -0.0000025025,0.0000025012,0.0000025007,0.0000025059,0.0000025169, -0.0000025289,0.0000025423,0.0000025496,0.0000025500,0.0000025546, -0.0000025701,0.0000025808,0.0000025791,0.0000025671,0.0000025580, -0.0000025490,0.0000025428,0.0000025474,0.0000025609,0.0000025712, -0.0000025776,0.0000025816,0.0000025821,0.0000025796,0.0000025743, -0.0000025633,0.0000025501,0.0000025390,0.0000025262,0.0000025166, -0.0000025033,0.0000024916,0.0000024908,0.0000024959,0.0000025037, -0.0000025129,0.0000025196,0.0000025222,0.0000025230,0.0000025230, -0.0000025228,0.0000025231,0.0000025250,0.0000025286,0.0000025331, -0.0000025389,0.0000025457,0.0000025525,0.0000025572,0.0000025579, -0.0000025565,0.0000025519,0.0000025443,0.0000025379,0.0000025345, -0.0000025327,0.0000025312,0.0000025292,0.0000025260,0.0000025220, -0.0000025190,0.0000025175,0.0000025177,0.0000025223,0.0000025312, -0.0000025373,0.0000025363,0.0000025258,0.0000025058,0.0000024840, -0.0000024688,0.0000024620,0.0000024589,0.0000024567,0.0000024565, -0.0000024584,0.0000024667,0.0000024788,0.0000024924,0.0000025057, -0.0000025164,0.0000025230,0.0000025259,0.0000025258,0.0000025235, -0.0000025190,0.0000025130,0.0000025056,0.0000024972,0.0000024897, -0.0000024847,0.0000024827,0.0000024831,0.0000024864,0.0000024913, -0.0000024969,0.0000025014,0.0000025055,0.0000025096,0.0000025128, -0.0000025114,0.0000025024,0.0000024896,0.0000024777,0.0000024786, -0.0000025007,0.0000025374,0.0000025669,0.0000025838,0.0000025961, -0.0000026041,0.0000026058,0.0000026039,0.0000026016,0.0000025993, -0.0000025967,0.0000025936,0.0000025931,0.0000025945,0.0000025998, -0.0000026064,0.0000026114,0.0000026138,0.0000026143,0.0000026128, -0.0000026098,0.0000026075,0.0000026067,0.0000026079,0.0000026126, -0.0000026207,0.0000026297,0.0000026364,0.0000026381,0.0000026358, -0.0000026305,0.0000026251,0.0000026208,0.0000026173,0.0000026141, -0.0000026131,0.0000026141,0.0000026161,0.0000026193,0.0000026277, -0.0000026415,0.0000026574,0.0000026735,0.0000026876,0.0000026944, -0.0000026933,0.0000026871,0.0000026783,0.0000026698,0.0000026609, -0.0000026502,0.0000026372,0.0000026224,0.0000026085,0.0000025993, -0.0000025953,0.0000025935,0.0000025928,0.0000025934,0.0000025964, -0.0000026015,0.0000026063,0.0000026104,0.0000026157,0.0000026193, -0.0000026194,0.0000026159,0.0000026093,0.0000026017,0.0000025952, -0.0000025908,0.0000025867,0.0000025824,0.0000025773,0.0000025712, -0.0000025630,0.0000025526,0.0000025460,0.0000025492,0.0000025609, -0.0000025736,0.0000025836,0.0000025902,0.0000025911,0.0000025854, -0.0000025762,0.0000025670,0.0000025597,0.0000025555,0.0000025543, -0.0000025553,0.0000025567,0.0000025565,0.0000025518,0.0000025400, -0.0000025272,0.0000025172,0.0000025104,0.0000025080,0.0000025147, -0.0000025262,0.0000025348,0.0000025382,0.0000025383,0.0000025376, -0.0000025391,0.0000025443,0.0000025500,0.0000025514,0.0000025479, -0.0000025426,0.0000025406,0.0000025431,0.0000025500,0.0000025602, -0.0000025698,0.0000025765,0.0000025799,0.0000025807,0.0000025786, -0.0000025723,0.0000025621,0.0000025519,0.0000025418,0.0000025303, -0.0000025224,0.0000025224,0.0000025289,0.0000025384,0.0000025482, -0.0000025569,0.0000025651,0.0000025733,0.0000025828,0.0000025934, -0.0000026032,0.0000026103,0.0000026150,0.0000026196,0.0000026269, -0.0000026370,0.0000026452,0.0000026490,0.0000026506,0.0000026530, -0.0000026569,0.0000026601,0.0000026600,0.0000026558,0.0000026489, -0.0000026451,0.0000026468,0.0000026560,0.0000026697,0.0000026854, -0.0000027025,0.0000027175,0.0000027264,0.0000027346,0.0000027465, -0.0000027576,0.0000027646,0.0000027669,0.0000027644,0.0000027554, -0.0000027494,0.0000027563,0.0000027698,0.0000027730,0.0000027709, -0.0000027739,0.0000027791,0.0000027789,0.0000027731,0.0000027668, -0.0000027628,0.0000027618,0.0000027621,0.0000027631,0.0000027646, -0.0000027659,0.0000027671,0.0000027689,0.0000027707,0.0000027719, -0.0000027731,0.0000027738,0.0000027731,0.0000027691,0.0000027602, -0.0000027469,0.0000027314,0.0000027159,0.0000027019,0.0000026919, -0.0000026868,0.0000026859,0.0000026894,0.0000026970,0.0000027071, -0.0000027183,0.0000027306,0.0000027416,0.0000027501,0.0000027565, -0.0000027608,0.0000027617,0.0000027586,0.0000027524,0.0000027453, -0.0000027424,0.0000027435,0.0000027448,0.0000027445,0.0000027425, -0.0000027394,0.0000027366,0.0000027345,0.0000027303,0.0000027238, -0.0000027167,0.0000027110,0.0000027059,0.0000026990,0.0000026913, -0.0000026852,0.0000026821,0.0000026788,0.0000026679,0.0000026448, -0.0000026136,0.0000025860,0.0000025709,0.0000025644,0.0000025602, -0.0000025532,0.0000025464,0.0000025445,0.0000025466,0.0000025485, -0.0000025498,0.0000025496,0.0000025457,0.0000025362,0.0000025237, -0.0000025162,0.0000025144,0.0000025132,0.0000025123,0.0000025130, -0.0000025142,0.0000025131,0.0000025095,0.0000025063,0.0000025059, -0.0000025088,0.0000025141,0.0000025183,0.0000025186,0.0000025117, -0.0000025012,0.0000024975,0.0000025157,0.0000025550,0.0000026069, -0.0000026491,0.0000026616,0.0000026610,0.0000026530,0.0000026439, -0.0000026396,0.0000026382,0.0000026368,0.0000026352,0.0000026318, -0.0000026267,0.0000026221,0.0000026216,0.0000026268,0.0000026309, -0.0000026326,0.0000026367,0.0000026394,0.0000026387,0.0000026368, -0.0000026346,0.0000026340,0.0000026331,0.0000026318,0.0000026317, -0.0000026337,0.0000026356,0.0000026355,0.0000026330,0.0000026287, -0.0000026266,0.0000026297,0.0000026358,0.0000026403,0.0000026444, -0.0000026485,0.0000026539,0.0000026584,0.0000026616,0.0000026623, -0.0000026575,0.0000026498,0.0000026473,0.0000026481,0.0000026464, -0.0000026447,0.0000026431,0.0000026097,0.0000025566,0.0000025320, -0.0000025331,0.0000025447,0.0000025572,0.0000025683,0.0000025799, -0.0000025897,0.0000025960,0.0000026040,0.0000026209,0.0000026413, -0.0000026508,0.0000026539,0.0000026563,0.0000026526,0.0000026493, -0.0000026656,0.0000026996,0.0000027185,0.0000027183,0.0000027123, -0.0000027095,0.0000027115,0.0000027188,0.0000027287,0.0000027409, -0.0000027563,0.0000027707,0.0000027783,0.0000027804,0.0000027785, -0.0000027749,0.0000027720,0.0000027722,0.0000027742,0.0000027747, -0.0000027738,0.0000027738,0.0000027754,0.0000027766,0.0000027756, -0.0000027696,0.0000027607,0.0000027544,0.0000027527,0.0000027525, -0.0000027542,0.0000027614,0.0000027727,0.0000027813,0.0000027840, -0.0000027826,0.0000027798,0.0000027769,0.0000027758,0.0000027761, -0.0000027762,0.0000027742,0.0000027687,0.0000027588,0.0000027462, -0.0000027376,0.0000027364,0.0000027372,0.0000027298,0.0000027106, -0.0000026962,0.0000027003,0.0000027215,0.0000027407,0.0000027449, -0.0000027416,0.0000027395,0.0000027386,0.0000027362,0.0000027337, -0.0000027314,0.0000027275,0.0000027205,0.0000027099,0.0000026972, -0.0000026844,0.0000026737,0.0000026677,0.0000026661,0.0000026656, -0.0000026625,0.0000026555,0.0000026469,0.0000026400,0.0000026354, -0.0000026343,0.0000026358,0.0000026363,0.0000026322,0.0000026225, -0.0000026134,0.0000026087,0.0000026071,0.0000026047,0.0000025992, -0.0000025918,0.0000025808,0.0000025668,0.0000025573,0.0000025549, -0.0000025505,0.0000025411,0.0000025309,0.0000025232,0.0000025223, -0.0000025256,0.0000025280,0.0000025287,0.0000025279,0.0000025256, -0.0000025225,0.0000025186,0.0000025139,0.0000025098,0.0000025075, -0.0000025081,0.0000025123,0.0000025192,0.0000025269,0.0000025329, -0.0000025362,0.0000025387,0.0000025430,0.0000025452,0.0000025395, -0.0000025235,0.0000025091,0.0000025053,0.0000025053,0.0000025045, -0.0000025047,0.0000025052,0.0000025061,0.0000025098,0.0000025177, -0.0000025256,0.0000025257,0.0000025166,0.0000025057,0.0000025038, -0.0000025101,0.0000025186,0.0000025232,0.0000025234,0.0000025215, -0.0000025202,0.0000025178,0.0000025132,0.0000025073,0.0000025016, -0.0000024968,0.0000024930,0.0000024920,0.0000024938,0.0000024991, -0.0000025043,0.0000025067,0.0000025078,0.0000025092,0.0000025106, -0.0000025122,0.0000025151,0.0000025189,0.0000025212,0.0000025223, -0.0000025278,0.0000025425,0.0000025622,0.0000025787,0.0000025888, -0.0000025938,0.0000025981,0.0000026043,0.0000026105,0.0000026158, -0.0000026204,0.0000026241,0.0000026260,0.0000026264,0.0000026258, -0.0000026236,0.0000026198,0.0000026173,0.0000026205,0.0000026334, -0.0000026494,0.0000026602,0.0000026662,0.0000026722,0.0000026791, -0.0000026845,0.0000026866,0.0000026858,0.0000026831,0.0000026778, -0.0000026702,0.0000026590,0.0000026461,0.0000026376,0.0000026412, -0.0000026601,0.0000026778,0.0000026811,0.0000026828,0.0000026996, -0.0000027237,0.0000027396,0.0000027503,0.0000027579,0.0000027594, -0.0000027617,0.0000027656,0.0000027699,0.0000027737,0.0000027771, -0.0000027807,0.0000027857,0.0000027928,0.0000028017,0.0000028102, -0.0000028133,0.0000028082,0.0000027979,0.0000027867,0.0000027772, -0.0000027689,0.0000027623,0.0000027598,0.0000027604,0.0000027621, -0.0000027641,0.0000027652,0.0000027632,0.0000027567,0.0000027485, -0.0000027457,0.0000027514,0.0000027630,0.0000027686,0.0000027663, -0.0000027592,0.0000027546,0.0000027560,0.0000027606,0.0000027650, -0.0000027685,0.0000027726,0.0000027763,0.0000027785,0.0000027790, -0.0000027772,0.0000027740,0.0000027709,0.0000027675,0.0000027627, -0.0000027584,0.0000027550,0.0000027471,0.0000027365,0.0000027300, -0.0000027254,0.0000027192,0.0000027155,0.0000027153,0.0000027134, -0.0000027084,0.0000027077,0.0000027093,0.0000027053,0.0000026955, -0.0000026884,0.0000026859,0.0000026830,0.0000026781,0.0000026717, -0.0000026641,0.0000026552,0.0000026437,0.0000026300,0.0000026192, -0.0000026144,0.0000026104,0.0000026019,0.0000025932,0.0000025894, -0.0000025879,0.0000025827,0.0000025732,0.0000025650,0.0000025640, -0.0000025688,0.0000025731,0.0000025702,0.0000025602,0.0000025449, -0.0000025249,0.0000025040,0.0000024922,0.0000024911,0.0000024939, -0.0000024962,0.0000024977,0.0000024988,0.0000024994,0.0000024993, -0.0000024982,0.0000024957,0.0000024935,0.0000024921,0.0000024903, -0.0000024876,0.0000024807,0.0000024671,0.0000024516,0.0000024379, -0.0000024244,0.0000024145,0.0000024149,0.0000024250,0.0000024329, -0.0000024335,0.0000024289,0.0000024232,0.0000024268,0.0000024523, -0.0000024951,0.0000025253,0.0000025358,0.0000025616,0.0000026198, -0.0000026702,0.0000026941,0.0000027194,0.0000027434,0.0000027485, -0.0000027462,0.0000027413,0.0000027322,0.0000027187,0.0000027041, -0.0000026896,0.0000026822,0.0000026837,0.0000026916,0.0000027057, -0.0000027235,0.0000027365,0.0000027464,0.0000027529,0.0000027509, -0.0000027399,0.0000027327,0.0000027217,0.0000027132,0.0000027144, -0.0000027114,0.0000027072,0.0000027055,0.0000027080,0.0000027112, -0.0000027148,0.0000027196,0.0000027248,0.0000027244,0.0000027192, -0.0000027040,0.0000026820,0.0000026648,0.0000026559,0.0000026519, -0.0000026478,0.0000026407,0.0000026368,0.0000026358,0.0000026380, -0.0000026425,0.0000026460,0.0000026498,0.0000026521,0.0000026534, -0.0000026531,0.0000026521,0.0000026515,0.0000026518,0.0000026536, -0.0000026563,0.0000026589,0.0000026605,0.0000026619,0.0000026622, -0.0000026611,0.0000026594,0.0000026560,0.0000026518,0.0000026471, -0.0000026427,0.0000026395,0.0000026371,0.0000026341,0.0000026313, -0.0000026280,0.0000026224,0.0000026120,0.0000025984,0.0000025918, -0.0000025898,0.0000025898,0.0000025887,0.0000025883,0.0000025899, -0.0000025927,0.0000025955,0.0000025987,0.0000026025,0.0000026044, -0.0000026016,0.0000025920,0.0000025774,0.0000025567,0.0000025314, -0.0000025072,0.0000024842,0.0000024627,0.0000024473,0.0000024337, -0.0000024156,0.0000024005,0.0000023970,0.0000024018,0.0000024097, -0.0000024161,0.0000024208,0.0000024249,0.0000024284,0.0000024308, -0.0000024325,0.0000024344,0.0000024355,0.0000024350,0.0000024292, -0.0000024196,0.0000024117,0.0000024079,0.0000024076,0.0000024072, -0.0000024027,0.0000023964,0.0000023938,0.0000023945,0.0000023949, -0.0000023933,0.0000023911,0.0000023895,0.0000023880,0.0000023865, -0.0000023857,0.0000023862,0.0000023875,0.0000023881,0.0000023884, -0.0000023893,0.0000023909,0.0000023912,0.0000023893,0.0000023846, -0.0000023800,0.0000023780,0.0000023772,0.0000023763,0.0000023753, -0.0000023737,0.0000023719,0.0000023710,0.0000023707,0.0000023688, -0.0000023621,0.0000023522,0.0000023457,0.0000023428,0.0000023403, -0.0000023353,0.0000023281,0.0000023320,0.0000023519,0.0000023714, -0.0000023828,0.0000023987,0.0000024161,0.0000024325,0.0000024375, -0.0000024624,0.0000025316,0.0000025795,0.0000025884,0.0000025884, -0.0000025736,0.0000025560,0.0000025489,0.0000025474,0.0000025470, -0.0000025459,0.0000025324,0.0000025002,0.0000024749,0.0000024794, -0.0000024996,0.0000025465,0.0000026070,0.0000026372,0.0000026582, -0.0000026792,0.0000026885,0.0000026914,0.0000026955,0.0000027020, -0.0000027093,0.0000027151,0.0000027182,0.0000027191,0.0000027186, -0.0000027162,0.0000027112,0.0000027048,0.0000026979,0.0000026925, -0.0000026902,0.0000026917,0.0000026973,0.0000027044,0.0000027107, -0.0000027156,0.0000027193,0.0000027221,0.0000027233,0.0000027178, -0.0000027198,0.0000027243,0.0000027250,0.0000027210,0.0000027124, -0.0000027022,0.0000026899,0.0000026759,0.0000026648,0.0000026590, -0.0000026568,0.0000026546,0.0000026502,0.0000026423,0.0000026342, -0.0000026277,0.0000026221,0.0000026173,0.0000026130,0.0000026099, -0.0000026076,0.0000026056,0.0000026044,0.0000026040,0.0000026058, -0.0000026093,0.0000026122,0.0000026129,0.0000026131,0.0000026145, -0.0000026164,0.0000026178,0.0000026186,0.0000026205,0.0000026246, -0.0000026301,0.0000026362,0.0000026423,0.0000026476,0.0000026513, -0.0000026519,0.0000026486,0.0000026435,0.0000026364,0.0000026289, -0.0000026220,0.0000026157,0.0000026097,0.0000026039,0.0000025986, -0.0000025939,0.0000025909,0.0000025879,0.0000025833,0.0000025765, -0.0000025703,0.0000025661,0.0000025611,0.0000025523,0.0000025438, -0.0000025377,0.0000025296,0.0000025145,0.0000024933,0.0000024741, -0.0000024622,0.0000024559,0.0000024502,0.0000024435,0.0000024364, -0.0000024303,0.0000024259,0.0000024249,0.0000024297,0.0000024344, -0.0000024351,0.0000024310,0.0000024283,0.0000024363,0.0000024485, -0.0000024585,0.0000024669,0.0000024725,0.0000024796,0.0000024868, -0.0000024921,0.0000024982,0.0000025016,0.0000025005,0.0000025000, -0.0000025023,0.0000025046,0.0000025050,0.0000025039,0.0000025025, -0.0000025051,0.0000025144,0.0000025248,0.0000025359,0.0000025462, -0.0000025495,0.0000025495,0.0000025588,0.0000025754,0.0000025811, -0.0000025739,0.0000025628,0.0000025540,0.0000025447,0.0000025431, -0.0000025519,0.0000025645,0.0000025731,0.0000025787,0.0000025817, -0.0000025816,0.0000025800,0.0000025749,0.0000025634,0.0000025502, -0.0000025399,0.0000025278,0.0000025182,0.0000025044,0.0000024918, -0.0000024910,0.0000024963,0.0000025029,0.0000025118,0.0000025191, -0.0000025221,0.0000025228,0.0000025226,0.0000025217,0.0000025206, -0.0000025213,0.0000025233,0.0000025259,0.0000025291,0.0000025338, -0.0000025408,0.0000025490,0.0000025556,0.0000025580,0.0000025572, -0.0000025501,0.0000025413,0.0000025353,0.0000025326,0.0000025314, -0.0000025298,0.0000025269,0.0000025223,0.0000025183,0.0000025161, -0.0000025154,0.0000025161,0.0000025217,0.0000025322,0.0000025377, -0.0000025368,0.0000025240,0.0000025033,0.0000024831,0.0000024691, -0.0000024626,0.0000024603,0.0000024585,0.0000024557,0.0000024558, -0.0000024554,0.0000024576,0.0000024610,0.0000024655,0.0000024697, -0.0000024718,0.0000024722,0.0000024721,0.0000024721,0.0000024719, -0.0000024716,0.0000024713,0.0000024720,0.0000024740,0.0000024769, -0.0000024802,0.0000024843,0.0000024891,0.0000024937,0.0000024978, -0.0000025017,0.0000025065,0.0000025121,0.0000025137,0.0000025136, -0.0000025077,0.0000024949,0.0000024809,0.0000024818,0.0000025092, -0.0000025480,0.0000025752,0.0000025901,0.0000026010,0.0000026063, -0.0000026076,0.0000026063,0.0000026045,0.0000026019,0.0000025980, -0.0000025958,0.0000025965,0.0000026006,0.0000026065,0.0000026110, -0.0000026142,0.0000026162,0.0000026164,0.0000026152,0.0000026133, -0.0000026107,0.0000026083,0.0000026074,0.0000026092,0.0000026147, -0.0000026234,0.0000026312,0.0000026334,0.0000026304,0.0000026246, -0.0000026196,0.0000026162,0.0000026129,0.0000026106,0.0000026113, -0.0000026137,0.0000026145,0.0000026162,0.0000026241,0.0000026372, -0.0000026516,0.0000026653,0.0000026752,0.0000026780,0.0000026753, -0.0000026686,0.0000026604,0.0000026514,0.0000026400,0.0000026266, -0.0000026128,0.0000026008,0.0000025932,0.0000025902,0.0000025906, -0.0000025944,0.0000026012,0.0000026085,0.0000026131,0.0000026139, -0.0000026124,0.0000026128,0.0000026131,0.0000026107,0.0000026061, -0.0000026008,0.0000025964,0.0000025930,0.0000025906,0.0000025889, -0.0000025863,0.0000025819,0.0000025755,0.0000025668,0.0000025554, -0.0000025455,0.0000025442,0.0000025525,0.0000025652,0.0000025761, -0.0000025832,0.0000025849,0.0000025812,0.0000025742,0.0000025662, -0.0000025589,0.0000025533,0.0000025496,0.0000025470,0.0000025481, -0.0000025526,0.0000025545,0.0000025481,0.0000025352,0.0000025223, -0.0000025131,0.0000025081,0.0000025097,0.0000025189,0.0000025299, -0.0000025369,0.0000025388,0.0000025386,0.0000025387,0.0000025403, -0.0000025442,0.0000025482,0.0000025487,0.0000025445,0.0000025390, -0.0000025369,0.0000025379,0.0000025432,0.0000025505,0.0000025571, -0.0000025592,0.0000025560,0.0000025475,0.0000025351,0.0000025228, -0.0000025153,0.0000025108,0.0000025040,0.0000024965,0.0000024933, -0.0000024950,0.0000025016,0.0000025112,0.0000025215,0.0000025313, -0.0000025408,0.0000025500,0.0000025586,0.0000025662,0.0000025734, -0.0000025803,0.0000025868,0.0000025947,0.0000026051,0.0000026157, -0.0000026237,0.0000026293,0.0000026353,0.0000026413,0.0000026438, -0.0000026428,0.0000026372,0.0000026295,0.0000026257,0.0000026284, -0.0000026403,0.0000026575,0.0000026764,0.0000026961,0.0000027145, -0.0000027260,0.0000027317,0.0000027414,0.0000027544,0.0000027626, -0.0000027654,0.0000027647,0.0000027590,0.0000027498,0.0000027472, -0.0000027561,0.0000027674,0.0000027686,0.0000027628,0.0000027594, -0.0000027602,0.0000027612,0.0000027604,0.0000027589,0.0000027571, -0.0000027553,0.0000027537,0.0000027537,0.0000027542,0.0000027539, -0.0000027532,0.0000027528,0.0000027522,0.0000027519,0.0000027514, -0.0000027511,0.0000027503,0.0000027468,0.0000027394,0.0000027292, -0.0000027180,0.0000027066,0.0000026958,0.0000026870,0.0000026801, -0.0000026747,0.0000026729,0.0000026748,0.0000026789,0.0000026869, -0.0000026988,0.0000027119,0.0000027241,0.0000027345,0.0000027425, -0.0000027464,0.0000027455,0.0000027417,0.0000027381,0.0000027371, -0.0000027373,0.0000027372,0.0000027365,0.0000027359,0.0000027347, -0.0000027330,0.0000027310,0.0000027277,0.0000027234,0.0000027204, -0.0000027180,0.0000027138,0.0000027064,0.0000026971,0.0000026886, -0.0000026832,0.0000026801,0.0000026757,0.0000026635,0.0000026372, -0.0000026031,0.0000025748,0.0000025610,0.0000025551,0.0000025500, -0.0000025428,0.0000025391,0.0000025411,0.0000025460,0.0000025520, -0.0000025577,0.0000025569,0.0000025489,0.0000025330,0.0000025197, -0.0000025139,0.0000025104,0.0000025079,0.0000025072,0.0000025068, -0.0000025035,0.0000024980,0.0000024946,0.0000024961,0.0000025022, -0.0000025083,0.0000025132,0.0000025181,0.0000025172,0.0000025081, -0.0000024975,0.0000025018,0.0000025328,0.0000025852,0.0000026387, -0.0000026613,0.0000026608,0.0000026546,0.0000026456,0.0000026398, -0.0000026378,0.0000026357,0.0000026334,0.0000026307,0.0000026270, -0.0000026227,0.0000026221,0.0000026266,0.0000026294,0.0000026313, -0.0000026338,0.0000026330,0.0000026307,0.0000026292,0.0000026271, -0.0000026269,0.0000026270,0.0000026266,0.0000026276,0.0000026301, -0.0000026321,0.0000026316,0.0000026283,0.0000026245,0.0000026255, -0.0000026308,0.0000026376,0.0000026432,0.0000026499,0.0000026552, -0.0000026592,0.0000026610,0.0000026606,0.0000026562,0.0000026482, -0.0000026429,0.0000026427,0.0000026422,0.0000026392,0.0000026385, -0.0000026353,0.0000025994,0.0000025506,0.0000025315,0.0000025335, -0.0000025444,0.0000025565,0.0000025660,0.0000025757,0.0000025856, -0.0000025921,0.0000025971,0.0000026088,0.0000026300,0.0000026439, -0.0000026485,0.0000026523,0.0000026494,0.0000026425,0.0000026536, -0.0000026872,0.0000027119,0.0000027158,0.0000027121,0.0000027076, -0.0000027057,0.0000027068,0.0000027111,0.0000027216,0.0000027388, -0.0000027579,0.0000027714,0.0000027773,0.0000027780,0.0000027762, -0.0000027739,0.0000027736,0.0000027745,0.0000027744,0.0000027731, -0.0000027730,0.0000027746,0.0000027762,0.0000027764,0.0000027728, -0.0000027640,0.0000027541,0.0000027492,0.0000027488,0.0000027495, -0.0000027517,0.0000027581,0.0000027674,0.0000027749,0.0000027783, -0.0000027783,0.0000027756,0.0000027724,0.0000027712,0.0000027719, -0.0000027716,0.0000027664,0.0000027550,0.0000027415,0.0000027339, -0.0000027337,0.0000027326,0.0000027207,0.0000027046,0.0000026978, -0.0000027092,0.0000027318,0.0000027457,0.0000027448,0.0000027402, -0.0000027385,0.0000027372,0.0000027341,0.0000027301,0.0000027244, -0.0000027151,0.0000027014,0.0000026851,0.0000026699,0.0000026579, -0.0000026492,0.0000026448,0.0000026445,0.0000026468,0.0000026489, -0.0000026479,0.0000026433,0.0000026377,0.0000026327,0.0000026276, -0.0000026229,0.0000026208,0.0000026195,0.0000026150,0.0000026083, -0.0000026034,0.0000026012,0.0000025989,0.0000025943,0.0000025879, -0.0000025788,0.0000025686,0.0000025615,0.0000025588,0.0000025532, -0.0000025428,0.0000025318,0.0000025234,0.0000025223,0.0000025264, -0.0000025294,0.0000025285,0.0000025248,0.0000025212,0.0000025173, -0.0000025109,0.0000025024,0.0000024946,0.0000024894,0.0000024882, -0.0000024915,0.0000024991,0.0000025097,0.0000025215,0.0000025311, -0.0000025358,0.0000025382,0.0000025428,0.0000025457,0.0000025407, -0.0000025253,0.0000025115,0.0000025069,0.0000025055,0.0000025043, -0.0000025042,0.0000025046,0.0000025061,0.0000025109,0.0000025188, -0.0000025252,0.0000025246,0.0000025166,0.0000025059,0.0000025025, -0.0000025059,0.0000025142,0.0000025214,0.0000025239,0.0000025238, -0.0000025216,0.0000025179,0.0000025119,0.0000025048,0.0000024986, -0.0000024952,0.0000024948,0.0000024971,0.0000025017,0.0000025063, -0.0000025092,0.0000025105,0.0000025115,0.0000025118,0.0000025112, -0.0000025111,0.0000025134,0.0000025168,0.0000025196,0.0000025216, -0.0000025270,0.0000025404,0.0000025588,0.0000025741,0.0000025836, -0.0000025888,0.0000025934,0.0000025989,0.0000026036,0.0000026074, -0.0000026115,0.0000026157,0.0000026187,0.0000026210,0.0000026227, -0.0000026224,0.0000026194,0.0000026161,0.0000026172,0.0000026269, -0.0000026414,0.0000026520,0.0000026565,0.0000026593,0.0000026641, -0.0000026697,0.0000026730,0.0000026739,0.0000026752,0.0000026750, -0.0000026688,0.0000026568,0.0000026445,0.0000026354,0.0000026346, -0.0000026473,0.0000026649,0.0000026727,0.0000026744,0.0000026888, -0.0000027164,0.0000027376,0.0000027492,0.0000027570,0.0000027584, -0.0000027595,0.0000027638,0.0000027677,0.0000027699,0.0000027719, -0.0000027742,0.0000027783,0.0000027856,0.0000027954,0.0000028043, -0.0000028077,0.0000028044,0.0000027955,0.0000027849,0.0000027757, -0.0000027681,0.0000027628,0.0000027613,0.0000027629,0.0000027654, -0.0000027672,0.0000027675,0.0000027660,0.0000027610,0.0000027526, -0.0000027472,0.0000027501,0.0000027606,0.0000027682,0.0000027680, -0.0000027609,0.0000027531,0.0000027512,0.0000027540,0.0000027576, -0.0000027610,0.0000027655,0.0000027701,0.0000027732,0.0000027746, -0.0000027747,0.0000027731,0.0000027705,0.0000027673,0.0000027626, -0.0000027582,0.0000027551,0.0000027492,0.0000027390,0.0000027316, -0.0000027278,0.0000027234,0.0000027197,0.0000027186,0.0000027160, -0.0000027110,0.0000027095,0.0000027102,0.0000027044,0.0000026939, -0.0000026882,0.0000026870,0.0000026848,0.0000026807,0.0000026751, -0.0000026682,0.0000026602,0.0000026514,0.0000026409,0.0000026301, -0.0000026222,0.0000026168,0.0000026091,0.0000025989,0.0000025918, -0.0000025896,0.0000025870,0.0000025796,0.0000025693,0.0000025628, -0.0000025619,0.0000025652,0.0000025659,0.0000025603,0.0000025481, -0.0000025319,0.0000025122,0.0000024957,0.0000024899,0.0000024919, -0.0000024954,0.0000024964,0.0000024975,0.0000024988,0.0000024994, -0.0000024990,0.0000024980,0.0000024962,0.0000024950,0.0000024936, -0.0000024911,0.0000024859,0.0000024746,0.0000024584,0.0000024431, -0.0000024298,0.0000024183,0.0000024153,0.0000024231,0.0000024326, -0.0000024349,0.0000024320,0.0000024279,0.0000024269,0.0000024365, -0.0000024681,0.0000025087,0.0000025311,0.0000025418,0.0000025781, -0.0000026376,0.0000026769,0.0000026948,0.0000027180,0.0000027372, -0.0000027410,0.0000027375,0.0000027274,0.0000027131,0.0000026975, -0.0000026822,0.0000026735,0.0000026739,0.0000026791,0.0000026907, -0.0000027098,0.0000027279,0.0000027406,0.0000027501,0.0000027515, -0.0000027430,0.0000027351,0.0000027254,0.0000027161,0.0000027161, -0.0000027134,0.0000027081,0.0000027071,0.0000027100,0.0000027136, -0.0000027170,0.0000027218,0.0000027262,0.0000027254,0.0000027188, -0.0000027042,0.0000026836,0.0000026667,0.0000026557,0.0000026482, -0.0000026425,0.0000026349,0.0000026303,0.0000026288,0.0000026296, -0.0000026338,0.0000026394,0.0000026442,0.0000026482,0.0000026507, -0.0000026511,0.0000026496,0.0000026479,0.0000026471,0.0000026476, -0.0000026492,0.0000026506,0.0000026510,0.0000026509,0.0000026509, -0.0000026500,0.0000026477,0.0000026446,0.0000026404,0.0000026356, -0.0000026308,0.0000026272,0.0000026245,0.0000026226,0.0000026214, -0.0000026202,0.0000026165,0.0000026068,0.0000025976,0.0000025931, -0.0000025934,0.0000025933,0.0000025925,0.0000025927,0.0000025942, -0.0000025965,0.0000025990,0.0000026014,0.0000026044,0.0000026071, -0.0000026069,0.0000026001,0.0000025860,0.0000025676,0.0000025455, -0.0000025216,0.0000024989,0.0000024760,0.0000024560,0.0000024416, -0.0000024260,0.0000024072,0.0000023956,0.0000023951,0.0000024021, -0.0000024108,0.0000024175,0.0000024220,0.0000024253,0.0000024282, -0.0000024303,0.0000024319,0.0000024334,0.0000024346,0.0000024347, -0.0000024301,0.0000024190,0.0000024080,0.0000024016,0.0000024006, -0.0000024013,0.0000023995,0.0000023944,0.0000023897,0.0000023887, -0.0000023892,0.0000023892,0.0000023890,0.0000023886,0.0000023873, -0.0000023849,0.0000023826,0.0000023825,0.0000023835,0.0000023829, -0.0000023820,0.0000023824,0.0000023850,0.0000023882,0.0000023887, -0.0000023857,0.0000023810,0.0000023784,0.0000023776,0.0000023771, -0.0000023763,0.0000023740,0.0000023701,0.0000023676,0.0000023668, -0.0000023656,0.0000023599,0.0000023496,0.0000023411,0.0000023381, -0.0000023365,0.0000023334,0.0000023267,0.0000023290,0.0000023479, -0.0000023698,0.0000023834,0.0000023988,0.0000024146,0.0000024294, -0.0000024381,0.0000024523,0.0000025122,0.0000025713,0.0000025881, -0.0000025879,0.0000025764,0.0000025580,0.0000025478,0.0000025407, -0.0000025377,0.0000025376,0.0000025333,0.0000025155,0.0000024841, -0.0000024688,0.0000024847,0.0000025112,0.0000025722,0.0000026230, -0.0000026443,0.0000026653,0.0000026823,0.0000026860,0.0000026871, -0.0000026914,0.0000026977,0.0000027040,0.0000027086,0.0000027106, -0.0000027102,0.0000027073,0.0000027024,0.0000026967,0.0000026912, -0.0000026879,0.0000026878,0.0000026916,0.0000026981,0.0000027045, -0.0000027091,0.0000027125,0.0000027155,0.0000027181,0.0000027184, -0.0000027099,0.0000027104,0.0000027131,0.0000027131,0.0000027088, -0.0000027000,0.0000026892,0.0000026766,0.0000026631,0.0000026522, -0.0000026452,0.0000026403,0.0000026356,0.0000026301,0.0000026233, -0.0000026168,0.0000026105,0.0000026039,0.0000025981,0.0000025932, -0.0000025901,0.0000025881,0.0000025870,0.0000025857,0.0000025844, -0.0000025838,0.0000025861,0.0000025911,0.0000025958,0.0000025987, -0.0000026006,0.0000026021,0.0000026042,0.0000026065,0.0000026081, -0.0000026096,0.0000026121,0.0000026162,0.0000026221,0.0000026292, -0.0000026363,0.0000026421,0.0000026448,0.0000026438,0.0000026397, -0.0000026340,0.0000026282,0.0000026225,0.0000026162,0.0000026095, -0.0000026032,0.0000025969,0.0000025918,0.0000025869,0.0000025809, -0.0000025747,0.0000025692,0.0000025633,0.0000025541,0.0000025443, -0.0000025376,0.0000025295,0.0000025138,0.0000024919,0.0000024721, -0.0000024599,0.0000024538,0.0000024493,0.0000024443,0.0000024395, -0.0000024356,0.0000024310,0.0000024269,0.0000024253,0.0000024277, -0.0000024311,0.0000024327,0.0000024306,0.0000024272,0.0000024322, -0.0000024441,0.0000024546,0.0000024642,0.0000024707,0.0000024765, -0.0000024844,0.0000024907,0.0000024967,0.0000025024,0.0000025040, -0.0000025022,0.0000025015,0.0000025036,0.0000025052,0.0000025049, -0.0000025038,0.0000025051,0.0000025124,0.0000025227,0.0000025327, -0.0000025424,0.0000025475,0.0000025479,0.0000025526,0.0000025694, -0.0000025808,0.0000025782,0.0000025663,0.0000025575,0.0000025480, -0.0000025421,0.0000025457,0.0000025573,0.0000025678,0.0000025748, -0.0000025801,0.0000025817,0.0000025815,0.0000025806,0.0000025748, -0.0000025631,0.0000025508,0.0000025410,0.0000025293,0.0000025202, -0.0000025065,0.0000024930,0.0000024918,0.0000024965,0.0000025024, -0.0000025110,0.0000025191,0.0000025222,0.0000025228,0.0000025226, -0.0000025211,0.0000025193,0.0000025178,0.0000025185,0.0000025207, -0.0000025233,0.0000025261,0.0000025304,0.0000025378,0.0000025469, -0.0000025546,0.0000025571,0.0000025537,0.0000025458,0.0000025385, -0.0000025347,0.0000025331,0.0000025310,0.0000025279,0.0000025230, -0.0000025171,0.0000025140,0.0000025142,0.0000025143,0.0000025158, -0.0000025241,0.0000025351,0.0000025407,0.0000025367,0.0000025223, -0.0000025026,0.0000024834,0.0000024699,0.0000024635,0.0000024618, -0.0000024606,0.0000024587,0.0000024559,0.0000024528,0.0000024517, -0.0000024499,0.0000024498,0.0000024496,0.0000024496,0.0000024505, -0.0000024528,0.0000024556,0.0000024581,0.0000024599,0.0000024618, -0.0000024643,0.0000024670,0.0000024696,0.0000024723,0.0000024754, -0.0000024787,0.0000024819,0.0000024856,0.0000024907,0.0000024973, -0.0000025039,0.0000025090,0.0000025104,0.0000025088,0.0000024968, -0.0000024814,0.0000024858,0.0000025186,0.0000025577,0.0000025815, -0.0000025936,0.0000026019,0.0000026072,0.0000026094,0.0000026098, -0.0000026081,0.0000026041,0.0000026013,0.0000026018,0.0000026058, -0.0000026110,0.0000026154,0.0000026193,0.0000026220,0.0000026225, -0.0000026210,0.0000026181,0.0000026151,0.0000026128,0.0000026109, -0.0000026088,0.0000026082,0.0000026122,0.0000026209,0.0000026276, -0.0000026285,0.0000026241,0.0000026179,0.0000026140,0.0000026113, -0.0000026086,0.0000026081,0.0000026108,0.0000026141,0.0000026151, -0.0000026163,0.0000026224,0.0000026329,0.0000026436,0.0000026518, -0.0000026557,0.0000026549,0.0000026507,0.0000026450,0.0000026379, -0.0000026271,0.0000026149,0.0000026038,0.0000025962,0.0000025928, -0.0000025928,0.0000025974,0.0000026055,0.0000026139,0.0000026191, -0.0000026197,0.0000026164,0.0000026107,0.0000026053,0.0000026033, -0.0000026018,0.0000025999,0.0000025976,0.0000025953,0.0000025938, -0.0000025927,0.0000025921,0.0000025908,0.0000025875,0.0000025815, -0.0000025731,0.0000025629,0.0000025529,0.0000025492,0.0000025530, -0.0000025622,0.0000025724,0.0000025798,0.0000025823,0.0000025809, -0.0000025760,0.0000025695,0.0000025629,0.0000025570,0.0000025521, -0.0000025475,0.0000025442,0.0000025443,0.0000025473,0.0000025487, -0.0000025433,0.0000025310,0.0000025179,0.0000025100,0.0000025081, -0.0000025129,0.0000025229,0.0000025325,0.0000025371,0.0000025386, -0.0000025396,0.0000025403,0.0000025413,0.0000025433,0.0000025465, -0.0000025468,0.0000025431,0.0000025381,0.0000025354,0.0000025344, -0.0000025356,0.0000025386,0.0000025393,0.0000025347,0.0000025227, -0.0000025073,0.0000024962,0.0000024939,0.0000024948,0.0000024925, -0.0000024884,0.0000024849,0.0000024838,0.0000024846,0.0000024894, -0.0000024974,0.0000025064,0.0000025155,0.0000025249,0.0000025335, -0.0000025398,0.0000025457,0.0000025528,0.0000025611,0.0000025691, -0.0000025771,0.0000025866,0.0000025971,0.0000026074,0.0000026175, -0.0000026257,0.0000026285,0.0000026272,0.0000026214,0.0000026129, -0.0000026062,0.0000026079,0.0000026207,0.0000026407,0.0000026630, -0.0000026857,0.0000027076,0.0000027234,0.0000027299,0.0000027351, -0.0000027474,0.0000027595,0.0000027637,0.0000027634,0.0000027598, -0.0000027528,0.0000027463,0.0000027452,0.0000027522,0.0000027600, -0.0000027603,0.0000027532,0.0000027450,0.0000027395,0.0000027370, -0.0000027362,0.0000027356,0.0000027343,0.0000027321,0.0000027309, -0.0000027310,0.0000027314,0.0000027315,0.0000027315,0.0000027315, -0.0000027320,0.0000027320,0.0000027322,0.0000027328,0.0000027325, -0.0000027295,0.0000027236,0.0000027163,0.0000027088,0.0000027014, -0.0000026940,0.0000026876,0.0000026796,0.0000026733,0.0000026707, -0.0000026680,0.0000026661,0.0000026683,0.0000026751,0.0000026844, -0.0000026946,0.0000027048,0.0000027136,0.0000027186,0.0000027199, -0.0000027201,0.0000027204,0.0000027215,0.0000027221,0.0000027219, -0.0000027230,0.0000027251,0.0000027269,0.0000027274,0.0000027268, -0.0000027247,0.0000027225,0.0000027214,0.0000027219,0.0000027193, -0.0000027129,0.0000027039,0.0000026942,0.0000026859,0.0000026795, -0.0000026757,0.0000026720,0.0000026569,0.0000026273,0.0000025909, -0.0000025636,0.0000025524,0.0000025457,0.0000025384,0.0000025337, -0.0000025348,0.0000025417,0.0000025525,0.0000025602,0.0000025630, -0.0000025571,0.0000025409,0.0000025232,0.0000025126,0.0000025072, -0.0000025037,0.0000025012,0.0000024993,0.0000024947,0.0000024887, -0.0000024862,0.0000024895,0.0000024973,0.0000025033,0.0000025080, -0.0000025143,0.0000025188,0.0000025165,0.0000025042,0.0000024998, -0.0000025170,0.0000025664,0.0000026268,0.0000026583,0.0000026595, -0.0000026543,0.0000026472,0.0000026408,0.0000026378,0.0000026349, -0.0000026317,0.0000026297,0.0000026270,0.0000026233,0.0000026228, -0.0000026263,0.0000026280,0.0000026293,0.0000026284,0.0000026253, -0.0000026246,0.0000026243,0.0000026225,0.0000026220,0.0000026215, -0.0000026208,0.0000026223,0.0000026256,0.0000026287,0.0000026287, -0.0000026251,0.0000026232,0.0000026266,0.0000026345,0.0000026425, -0.0000026499,0.0000026575,0.0000026616,0.0000026624,0.0000026606, -0.0000026555,0.0000026464,0.0000026389,0.0000026370,0.0000026370, -0.0000026343,0.0000026317,0.0000026329,0.0000026254,0.0000025839, -0.0000025421,0.0000025308,0.0000025343,0.0000025440,0.0000025556, -0.0000025641,0.0000025717,0.0000025810,0.0000025871,0.0000025911, -0.0000026001,0.0000026196,0.0000026360,0.0000026426,0.0000026480, -0.0000026455,0.0000026355,0.0000026420,0.0000026747,0.0000027037, -0.0000027129,0.0000027118,0.0000027079,0.0000027031,0.0000026990, -0.0000026984,0.0000027055,0.0000027223,0.0000027431,0.0000027604, -0.0000027707,0.0000027746,0.0000027753,0.0000027748,0.0000027751, -0.0000027757,0.0000027748,0.0000027731,0.0000027725,0.0000027733, -0.0000027744,0.0000027748,0.0000027725,0.0000027643,0.0000027526, -0.0000027443,0.0000027427,0.0000027441,0.0000027465,0.0000027499, -0.0000027558,0.0000027636,0.0000027705,0.0000027744,0.0000027744, -0.0000027715,0.0000027681,0.0000027666,0.0000027654,0.0000027604, -0.0000027492,0.0000027372,0.0000027318,0.0000027310,0.0000027249, -0.0000027108,0.0000027020,0.0000027045,0.0000027202,0.0000027396, -0.0000027459,0.0000027424,0.0000027366,0.0000027347,0.0000027326, -0.0000027272,0.0000027182,0.0000027047,0.0000026875,0.0000026695, -0.0000026539,0.0000026432,0.0000026363,0.0000026311,0.0000026275, -0.0000026261,0.0000026271,0.0000026305,0.0000026340,0.0000026357, -0.0000026347,0.0000026316,0.0000026267,0.0000026191,0.0000026112, -0.0000026060,0.0000026028,0.0000025991,0.0000025954,0.0000025933, -0.0000025923,0.0000025896,0.0000025846,0.0000025772,0.0000025693, -0.0000025640,0.0000025613,0.0000025552,0.0000025450,0.0000025340, -0.0000025247,0.0000025233,0.0000025277,0.0000025307,0.0000025282, -0.0000025224,0.0000025177,0.0000025116,0.0000025001,0.0000024858, -0.0000024736,0.0000024660,0.0000024633,0.0000024644,0.0000024706, -0.0000024815,0.0000024969,0.0000025143,0.0000025285,0.0000025354, -0.0000025384,0.0000025435,0.0000025465,0.0000025405,0.0000025253, -0.0000025127,0.0000025082,0.0000025061,0.0000025045,0.0000025043, -0.0000025044,0.0000025068,0.0000025133,0.0000025206,0.0000025244, -0.0000025232,0.0000025160,0.0000025069,0.0000025028,0.0000025034, -0.0000025085,0.0000025148,0.0000025188,0.0000025202,0.0000025185, -0.0000025132,0.0000025053,0.0000024975,0.0000024930,0.0000024929, -0.0000024964,0.0000025022,0.0000025084,0.0000025129,0.0000025150, -0.0000025154,0.0000025150,0.0000025135,0.0000025115,0.0000025111, -0.0000025130,0.0000025157,0.0000025182,0.0000025212,0.0000025276, -0.0000025408,0.0000025576,0.0000025712,0.0000025801,0.0000025863, -0.0000025919,0.0000025971,0.0000026004,0.0000026028,0.0000026056, -0.0000026089,0.0000026126,0.0000026165,0.0000026193,0.0000026196, -0.0000026176,0.0000026149,0.0000026153,0.0000026223,0.0000026340, -0.0000026443,0.0000026494,0.0000026516,0.0000026546,0.0000026592, -0.0000026622,0.0000026632,0.0000026662,0.0000026704,0.0000026680, -0.0000026571,0.0000026434,0.0000026325,0.0000026293,0.0000026368, -0.0000026537,0.0000026662,0.0000026695,0.0000026809,0.0000027086, -0.0000027336,0.0000027469,0.0000027552,0.0000027568,0.0000027570, -0.0000027616,0.0000027664,0.0000027684,0.0000027691,0.0000027692, -0.0000027708,0.0000027761,0.0000027860,0.0000027970,0.0000028025, -0.0000028009,0.0000027923,0.0000027819,0.0000027735,0.0000027677, -0.0000027644,0.0000027636,0.0000027658,0.0000027686,0.0000027696, -0.0000027685,0.0000027663,0.0000027625,0.0000027558,0.0000027507, -0.0000027514,0.0000027595,0.0000027663,0.0000027668,0.0000027605, -0.0000027517,0.0000027475,0.0000027483,0.0000027503,0.0000027527, -0.0000027576,0.0000027636,0.0000027678,0.0000027701,0.0000027714, -0.0000027710,0.0000027690,0.0000027658,0.0000027615,0.0000027575, -0.0000027546,0.0000027497,0.0000027401,0.0000027314,0.0000027276, -0.0000027254,0.0000027226,0.0000027209,0.0000027179,0.0000027129, -0.0000027119,0.0000027128,0.0000027051,0.0000026924,0.0000026864, -0.0000026864,0.0000026853,0.0000026818,0.0000026771,0.0000026710, -0.0000026640,0.0000026570,0.0000026500,0.0000026418,0.0000026329, -0.0000026251,0.0000026172,0.0000026069,0.0000025966,0.0000025911, -0.0000025892,0.0000025849,0.0000025757,0.0000025653,0.0000025592, -0.0000025577,0.0000025585,0.0000025566,0.0000025492,0.0000025375, -0.0000025215,0.0000025028,0.0000024902,0.0000024880,0.0000024915, -0.0000024941,0.0000024943,0.0000024961,0.0000024990,0.0000025005, -0.0000025001,0.0000024990,0.0000024975,0.0000024965,0.0000024940, -0.0000024896,0.0000024809,0.0000024660,0.0000024495,0.0000024353, -0.0000024231,0.0000024179,0.0000024211,0.0000024306,0.0000024346, -0.0000024335,0.0000024301,0.0000024288,0.0000024312,0.0000024472, -0.0000024826,0.0000025194,0.0000025362,0.0000025521,0.0000025975, -0.0000026532,0.0000026801,0.0000026930,0.0000027135,0.0000027276, -0.0000027288,0.0000027217,0.0000027081,0.0000026906,0.0000026741, -0.0000026628,0.0000026622,0.0000026676,0.0000026768,0.0000026937, -0.0000027170,0.0000027344,0.0000027462,0.0000027517,0.0000027462, -0.0000027379,0.0000027299,0.0000027193,0.0000027182,0.0000027152, -0.0000027090,0.0000027088,0.0000027123,0.0000027166,0.0000027198, -0.0000027241,0.0000027268,0.0000027251,0.0000027174,0.0000027045, -0.0000026871,0.0000026719,0.0000026600,0.0000026509,0.0000026427, -0.0000026340,0.0000026274,0.0000026254,0.0000026241,0.0000026254, -0.0000026284,0.0000026318,0.0000026361,0.0000026398,0.0000026425, -0.0000026429,0.0000026422,0.0000026418,0.0000026422,0.0000026435, -0.0000026450,0.0000026450,0.0000026438,0.0000026422,0.0000026402, -0.0000026371,0.0000026326,0.0000026283,0.0000026235,0.0000026197, -0.0000026181,0.0000026172,0.0000026175,0.0000026189,0.0000026191, -0.0000026166,0.0000026103,0.0000026037,0.0000026020,0.0000026020, -0.0000026015,0.0000026016,0.0000026026,0.0000026039,0.0000026049, -0.0000026056,0.0000026063,0.0000026066,0.0000026067,0.0000026042, -0.0000025965,0.0000025820,0.0000025643,0.0000025452,0.0000025253, -0.0000025052,0.0000024844,0.0000024639,0.0000024480,0.0000024344, -0.0000024170,0.0000024008,0.0000023946,0.0000023971,0.0000024047, -0.0000024123,0.0000024179,0.0000024219,0.0000024249,0.0000024275, -0.0000024292,0.0000024302,0.0000024309,0.0000024316,0.0000024317, -0.0000024281,0.0000024170,0.0000024043,0.0000023958,0.0000023943, -0.0000023961,0.0000023968,0.0000023933,0.0000023877,0.0000023844, -0.0000023846,0.0000023857,0.0000023862,0.0000023858,0.0000023843, -0.0000023813,0.0000023781,0.0000023765,0.0000023757,0.0000023744, -0.0000023740,0.0000023752,0.0000023786,0.0000023839,0.0000023875, -0.0000023862,0.0000023815,0.0000023780,0.0000023768,0.0000023761, -0.0000023760,0.0000023748,0.0000023699,0.0000023652,0.0000023634, -0.0000023626,0.0000023585,0.0000023481,0.0000023381,0.0000023340, -0.0000023326,0.0000023312,0.0000023260,0.0000023260,0.0000023424, -0.0000023666,0.0000023828,0.0000023980,0.0000024125,0.0000024249, -0.0000024366,0.0000024449,0.0000024888,0.0000025544,0.0000025856, -0.0000025877,0.0000025799,0.0000025622,0.0000025491,0.0000025388, -0.0000025314,0.0000025288,0.0000025292,0.0000025240,0.0000025011, -0.0000024713,0.0000024723,0.0000024918,0.0000025352,0.0000026001, -0.0000026341,0.0000026503,0.0000026711,0.0000026826,0.0000026833, -0.0000026843,0.0000026878,0.0000026928,0.0000026973,0.0000026999, -0.0000026998,0.0000026979,0.0000026950,0.0000026923,0.0000026893, -0.0000026871,0.0000026869,0.0000026897,0.0000026941,0.0000026983, -0.0000027024,0.0000027062,0.0000027098,0.0000027122,0.0000027118, -0.0000026967,0.0000026964,0.0000026978,0.0000026973,0.0000026934, -0.0000026851,0.0000026738,0.0000026603,0.0000026461,0.0000026341, -0.0000026264,0.0000026213,0.0000026170,0.0000026121,0.0000026057, -0.0000025988,0.0000025912,0.0000025834,0.0000025766,0.0000025707, -0.0000025672,0.0000025648,0.0000025634,0.0000025621,0.0000025610, -0.0000025597,0.0000025598,0.0000025630,0.0000025692,0.0000025760, -0.0000025823,0.0000025870,0.0000025904,0.0000025936,0.0000025968, -0.0000025995,0.0000026016,0.0000026035,0.0000026065,0.0000026112, -0.0000026173,0.0000026239,0.0000026293,0.0000026325,0.0000026331, -0.0000026312,0.0000026274,0.0000026223,0.0000026161,0.0000026091, -0.0000026016,0.0000025943,0.0000025880,0.0000025826,0.0000025773, -0.0000025715,0.0000025645,0.0000025553,0.0000025450,0.0000025366, -0.0000025284,0.0000025131,0.0000024912,0.0000024710,0.0000024587, -0.0000024526,0.0000024489,0.0000024455,0.0000024426,0.0000024392, -0.0000024363,0.0000024327,0.0000024285,0.0000024260,0.0000024268, -0.0000024285,0.0000024304,0.0000024297,0.0000024263,0.0000024292, -0.0000024400,0.0000024503,0.0000024604,0.0000024685,0.0000024738, -0.0000024809,0.0000024881,0.0000024946,0.0000025008,0.0000025053, -0.0000025059,0.0000025039,0.0000025034,0.0000025047,0.0000025051, -0.0000025049,0.0000025062,0.0000025124,0.0000025221,0.0000025320, -0.0000025406,0.0000025453,0.0000025458,0.0000025497,0.0000025661, -0.0000025794,0.0000025799,0.0000025683,0.0000025585,0.0000025499, -0.0000025427,0.0000025427,0.0000025513,0.0000025624,0.0000025703, -0.0000025771,0.0000025815,0.0000025819,0.0000025816,0.0000025805, -0.0000025742,0.0000025629,0.0000025515,0.0000025421,0.0000025311, -0.0000025225,0.0000025093,0.0000024952,0.0000024936,0.0000024967, -0.0000025017,0.0000025101,0.0000025186,0.0000025221,0.0000025227, -0.0000025221,0.0000025205,0.0000025176,0.0000025142,0.0000025127, -0.0000025139,0.0000025174,0.0000025212,0.0000025246,0.0000025292, -0.0000025365,0.0000025452,0.0000025515,0.0000025525,0.0000025481, -0.0000025420,0.0000025384,0.0000025367,0.0000025338,0.0000025293, -0.0000025239,0.0000025171,0.0000025120,0.0000025118,0.0000025137, -0.0000025146,0.0000025182,0.0000025284,0.0000025390,0.0000025424, -0.0000025360,0.0000025218,0.0000025032,0.0000024854,0.0000024726, -0.0000024662,0.0000024636,0.0000024625,0.0000024616,0.0000024599, -0.0000024571,0.0000024551,0.0000024529,0.0000024507,0.0000024494, -0.0000024496,0.0000024510,0.0000024522,0.0000024530,0.0000024533, -0.0000024539,0.0000024557,0.0000024586,0.0000024619,0.0000024648, -0.0000024675,0.0000024703,0.0000024728,0.0000024752,0.0000024784, -0.0000024834,0.0000024901,0.0000024965,0.0000025033,0.0000025106, -0.0000025097,0.0000024954,0.0000024805,0.0000024890,0.0000025255, -0.0000025626,0.0000025843,0.0000025943,0.0000026003,0.0000026052, -0.0000026077,0.0000026067,0.0000026029,0.0000025993,0.0000025988, -0.0000026020,0.0000026070,0.0000026120,0.0000026178,0.0000026228, -0.0000026267,0.0000026280,0.0000026264,0.0000026220,0.0000026169, -0.0000026141,0.0000026129,0.0000026107,0.0000026102,0.0000026138, -0.0000026208,0.0000026250,0.0000026233,0.0000026171,0.0000026119, -0.0000026094,0.0000026071,0.0000026048,0.0000026057,0.0000026111, -0.0000026173,0.0000026194,0.0000026202,0.0000026239,0.0000026305, -0.0000026365,0.0000026396,0.0000026393,0.0000026372,0.0000026352, -0.0000026317,0.0000026240,0.0000026134,0.0000026064,0.0000026045, -0.0000026060,0.0000026094,0.0000026132,0.0000026169,0.0000026196, -0.0000026203,0.0000026189,0.0000026134,0.0000026053,0.0000025993, -0.0000025980,0.0000025992,0.0000025992,0.0000025976,0.0000025963, -0.0000025953,0.0000025943,0.0000025934,0.0000025921,0.0000025898, -0.0000025852,0.0000025778,0.0000025690,0.0000025610,0.0000025581, -0.0000025600,0.0000025658,0.0000025742,0.0000025818,0.0000025846, -0.0000025834,0.0000025792,0.0000025730,0.0000025664,0.0000025610, -0.0000025573,0.0000025543,0.0000025505,0.0000025457,0.0000025419, -0.0000025413,0.0000025418,0.0000025373,0.0000025269,0.0000025142, -0.0000025090,0.0000025110,0.0000025173,0.0000025268,0.0000025341, -0.0000025375,0.0000025398,0.0000025418,0.0000025422,0.0000025420, -0.0000025434,0.0000025457,0.0000025460,0.0000025428,0.0000025374, -0.0000025325,0.0000025286,0.0000025264,0.0000025250,0.0000025213, -0.0000025112,0.0000024965,0.0000024859,0.0000024852,0.0000024890, -0.0000024882,0.0000024861,0.0000024838,0.0000024828,0.0000024815, -0.0000024809,0.0000024839,0.0000024899,0.0000024972,0.0000025063, -0.0000025161,0.0000025233,0.0000025278,0.0000025329,0.0000025404, -0.0000025480,0.0000025540,0.0000025612,0.0000025714,0.0000025842, -0.0000025974,0.0000026080,0.0000026139,0.0000026145,0.0000026108, -0.0000026041,0.0000025972,0.0000025956,0.0000026048,0.0000026241, -0.0000026472,0.0000026714,0.0000026959,0.0000027166,0.0000027274, -0.0000027303,0.0000027378,0.0000027517,0.0000027611,0.0000027625, -0.0000027595,0.0000027539,0.0000027480,0.0000027433,0.0000027419, -0.0000027447,0.0000027482,0.0000027476,0.0000027417,0.0000027325, -0.0000027233,0.0000027161,0.0000027111,0.0000027075,0.0000027044, -0.0000027018,0.0000027015,0.0000027027,0.0000027055,0.0000027091, -0.0000027123,0.0000027149,0.0000027172,0.0000027190,0.0000027209, -0.0000027219,0.0000027207,0.0000027168,0.0000027106,0.0000027041, -0.0000026983,0.0000026930,0.0000026884,0.0000026822,0.0000026747, -0.0000026696,0.0000026669,0.0000026636,0.0000026605,0.0000026602, -0.0000026621,0.0000026657,0.0000026708,0.0000026774,0.0000026836, -0.0000026868,0.0000026888,0.0000026905,0.0000026926,0.0000026949, -0.0000026957,0.0000026964,0.0000026985,0.0000027028,0.0000027083, -0.0000027137,0.0000027184,0.0000027211,0.0000027209,0.0000027212, -0.0000027215,0.0000027199,0.0000027169,0.0000027102,0.0000027001, -0.0000026894,0.0000026801,0.0000026751,0.0000026732,0.0000026675, -0.0000026492,0.0000026162,0.0000025794,0.0000025545,0.0000025428, -0.0000025344,0.0000025288,0.0000025280,0.0000025350,0.0000025480, -0.0000025584,0.0000025623,0.0000025574,0.0000025442,0.0000025260, -0.0000025124,0.0000025052,0.0000024995,0.0000024948,0.0000024916, -0.0000024873,0.0000024832,0.0000024817,0.0000024847,0.0000024917, -0.0000024988,0.0000025046,0.0000025104,0.0000025183,0.0000025221, -0.0000025139,0.0000025018,0.0000025095,0.0000025519,0.0000026154, -0.0000026538,0.0000026565,0.0000026525,0.0000026475,0.0000026417, -0.0000026384,0.0000026352,0.0000026309,0.0000026291,0.0000026269, -0.0000026239,0.0000026236,0.0000026259,0.0000026266,0.0000026264, -0.0000026218,0.0000026196,0.0000026208,0.0000026189,0.0000026160, -0.0000026160,0.0000026168,0.0000026166,0.0000026176,0.0000026205, -0.0000026229,0.0000026226,0.0000026202,0.0000026217,0.0000026286, -0.0000026380,0.0000026475,0.0000026556,0.0000026613,0.0000026626, -0.0000026611,0.0000026552,0.0000026464,0.0000026373,0.0000026323, -0.0000026313,0.0000026296,0.0000026263,0.0000026259,0.0000026276, -0.0000026087,0.0000025629,0.0000025328,0.0000025294,0.0000025350, -0.0000025432,0.0000025543,0.0000025625,0.0000025683,0.0000025763, -0.0000025817,0.0000025852,0.0000025931,0.0000026106,0.0000026277, -0.0000026368,0.0000026436,0.0000026414,0.0000026292,0.0000026311, -0.0000026613,0.0000026934,0.0000027081,0.0000027109,0.0000027093, -0.0000027033,0.0000026958,0.0000026920,0.0000026948,0.0000027080, -0.0000027276,0.0000027465,0.0000027604,0.0000027683,0.0000027720, -0.0000027739,0.0000027754,0.0000027762,0.0000027750,0.0000027729, -0.0000027716,0.0000027709,0.0000027703,0.0000027699,0.0000027669, -0.0000027581,0.0000027457,0.0000027365,0.0000027340,0.0000027353, -0.0000027387,0.0000027428,0.0000027478,0.0000027544,0.0000027614, -0.0000027676,0.0000027709,0.0000027707,0.0000027671,0.0000027633, -0.0000027600,0.0000027543,0.0000027448,0.0000027355,0.0000027303, -0.0000027250,0.0000027141,0.0000027035,0.0000027030,0.0000027125, -0.0000027286,0.0000027422,0.0000027440,0.0000027368,0.0000027295, -0.0000027264,0.0000027223,0.0000027125,0.0000026961,0.0000026755, -0.0000026563,0.0000026424,0.0000026342,0.0000026301,0.0000026274, -0.0000026244,0.0000026212,0.0000026181,0.0000026157,0.0000026155, -0.0000026185,0.0000026238,0.0000026282,0.0000026287,0.0000026264, -0.0000026200,0.0000026112,0.0000026024,0.0000025959,0.0000025914, -0.0000025881,0.0000025863,0.0000025857,0.0000025847,0.0000025811, -0.0000025754,0.0000025697,0.0000025650,0.0000025616,0.0000025556, -0.0000025467,0.0000025367,0.0000025275,0.0000025256,0.0000025293, -0.0000025317,0.0000025287,0.0000025224,0.0000025164,0.0000025060, -0.0000024876,0.0000024677,0.0000024536,0.0000024459,0.0000024424, -0.0000024417,0.0000024442,0.0000024508,0.0000024627,0.0000024819, -0.0000025059,0.0000025256,0.0000025354,0.0000025399,0.0000025450, -0.0000025468,0.0000025390,0.0000025242,0.0000025136,0.0000025094, -0.0000025062,0.0000025048,0.0000025046,0.0000025048,0.0000025087, -0.0000025160,0.0000025214,0.0000025225,0.0000025206,0.0000025151, -0.0000025083,0.0000025033,0.0000025018,0.0000025032,0.0000025062, -0.0000025095,0.0000025111,0.0000025093,0.0000025032,0.0000024954, -0.0000024901,0.0000024897,0.0000024930,0.0000024993,0.0000025074, -0.0000025150,0.0000025196,0.0000025209,0.0000025200,0.0000025175, -0.0000025150,0.0000025132,0.0000025131,0.0000025147,0.0000025165, -0.0000025179,0.0000025211,0.0000025285,0.0000025417,0.0000025571, -0.0000025696,0.0000025787,0.0000025865,0.0000025932,0.0000025975, -0.0000025995,0.0000026004,0.0000026019,0.0000026051,0.0000026098, -0.0000026139,0.0000026159,0.0000026159,0.0000026142,0.0000026124, -0.0000026127,0.0000026176,0.0000026266,0.0000026363,0.0000026433, -0.0000026464,0.0000026483,0.0000026514,0.0000026543,0.0000026570, -0.0000026617,0.0000026669,0.0000026675,0.0000026583,0.0000026421, -0.0000026287,0.0000026247,0.0000026302,0.0000026465,0.0000026617, -0.0000026666,0.0000026753,0.0000027008,0.0000027275,0.0000027425, -0.0000027519,0.0000027544,0.0000027542,0.0000027594,0.0000027658, -0.0000027684,0.0000027680,0.0000027650,0.0000027630,0.0000027661, -0.0000027756,0.0000027888,0.0000027965,0.0000027959,0.0000027882, -0.0000027788,0.0000027715,0.0000027679,0.0000027665,0.0000027661, -0.0000027681,0.0000027707,0.0000027710,0.0000027689,0.0000027657, -0.0000027613,0.0000027565,0.0000027535,0.0000027546,0.0000027602, -0.0000027645,0.0000027643,0.0000027581,0.0000027487,0.0000027430, -0.0000027429,0.0000027437,0.0000027447,0.0000027496,0.0000027572, -0.0000027632,0.0000027664,0.0000027680,0.0000027680,0.0000027663, -0.0000027630,0.0000027591,0.0000027559,0.0000027533,0.0000027494, -0.0000027407,0.0000027305,0.0000027254,0.0000027242,0.0000027229, -0.0000027217,0.0000027188,0.0000027138,0.0000027139,0.0000027155, -0.0000027077,0.0000026927,0.0000026847,0.0000026843,0.0000026840, -0.0000026815,0.0000026776,0.0000026727,0.0000026667,0.0000026608, -0.0000026564,0.0000026517,0.0000026443,0.0000026354,0.0000026266, -0.0000026169,0.0000026054,0.0000025957,0.0000025909,0.0000025883, -0.0000025820,0.0000025716,0.0000025615,0.0000025550,0.0000025514, -0.0000025498,0.0000025471,0.0000025403,0.0000025292,0.0000025133, -0.0000024966,0.0000024873,0.0000024861,0.0000024888,0.0000024909, -0.0000024923,0.0000024966,0.0000025011,0.0000025023,0.0000025012, -0.0000024998,0.0000024981,0.0000024962,0.0000024923,0.0000024858, -0.0000024734,0.0000024570,0.0000024418,0.0000024290,0.0000024204, -0.0000024202,0.0000024277,0.0000024346,0.0000024340,0.0000024304, -0.0000024285,0.0000024302,0.0000024370,0.0000024578,0.0000024952, -0.0000025283,0.0000025432,0.0000025668,0.0000026184,0.0000026646, -0.0000026788,0.0000026889,0.0000027068,0.0000027168,0.0000027146, -0.0000027022,0.0000026841,0.0000026665,0.0000026518,0.0000026477, -0.0000026541,0.0000026640,0.0000026774,0.0000027026,0.0000027262, -0.0000027412,0.0000027503,0.0000027492,0.0000027410,0.0000027346, -0.0000027237,0.0000027203,0.0000027169,0.0000027100,0.0000027099, -0.0000027147,0.0000027197,0.0000027227,0.0000027265,0.0000027275, -0.0000027244,0.0000027160,0.0000027049,0.0000026917,0.0000026790, -0.0000026684,0.0000026597,0.0000026510,0.0000026415,0.0000026340, -0.0000026310,0.0000026286,0.0000026279,0.0000026280,0.0000026285, -0.0000026298,0.0000026309,0.0000026322,0.0000026327,0.0000026321, -0.0000026315,0.0000026316,0.0000026324,0.0000026340,0.0000026345, -0.0000026338,0.0000026319,0.0000026296,0.0000026259,0.0000026212, -0.0000026167,0.0000026136,0.0000026119,0.0000026131,0.0000026162, -0.0000026182,0.0000026198,0.0000026205,0.0000026197,0.0000026179, -0.0000026166,0.0000026161,0.0000026158,0.0000026152,0.0000026153, -0.0000026158,0.0000026152,0.0000026133,0.0000026098,0.0000026070, -0.0000026032,0.0000025971,0.0000025886,0.0000025773,0.0000025634, -0.0000025481,0.0000025324,0.0000025168,0.0000025005,0.0000024828, -0.0000024651,0.0000024508,0.0000024389,0.0000024244,0.0000024088, -0.0000023991,0.0000023984,0.0000024023,0.0000024078,0.0000024128, -0.0000024172,0.0000024209,0.0000024239,0.0000024260,0.0000024267, -0.0000024268,0.0000024267,0.0000024269,0.0000024269,0.0000024237, -0.0000024133,0.0000024003,0.0000023904,0.0000023888,0.0000023917, -0.0000023933,0.0000023915,0.0000023867,0.0000023829,0.0000023820, -0.0000023823,0.0000023824,0.0000023813,0.0000023789,0.0000023750, -0.0000023701,0.0000023672,0.0000023668,0.0000023674,0.0000023687, -0.0000023707,0.0000023736,0.0000023787,0.0000023836,0.0000023840, -0.0000023800,0.0000023765,0.0000023748,0.0000023743,0.0000023748, -0.0000023748,0.0000023704,0.0000023641,0.0000023605,0.0000023595, -0.0000023573,0.0000023487,0.0000023373,0.0000023305,0.0000023287, -0.0000023283,0.0000023254,0.0000023245,0.0000023360,0.0000023608, -0.0000023801,0.0000023949,0.0000024091,0.0000024199,0.0000024319, -0.0000024406,0.0000024666,0.0000025272,0.0000025767,0.0000025876, -0.0000025831,0.0000025680,0.0000025535,0.0000025401,0.0000025285, -0.0000025234,0.0000025235,0.0000025233,0.0000025126,0.0000024835, -0.0000024644,0.0000024814,0.0000025087,0.0000025696,0.0000026217, -0.0000026397,0.0000026561,0.0000026746,0.0000026822,0.0000026824, -0.0000026828,0.0000026848,0.0000026879,0.0000026907,0.0000026919, -0.0000026920,0.0000026919,0.0000026911,0.0000026888,0.0000026860, -0.0000026851,0.0000026862,0.0000026890,0.0000026928,0.0000026964, -0.0000026988,0.0000027001,0.0000027003,0.0000026990,0.0000026751, -0.0000026753,0.0000026768,0.0000026765,0.0000026730,0.0000026654, -0.0000026546,0.0000026412,0.0000026282,0.0000026177,0.0000026109, -0.0000026056,0.0000026007,0.0000025948,0.0000025879,0.0000025801, -0.0000025725,0.0000025659,0.0000025601,0.0000025544,0.0000025504, -0.0000025476,0.0000025452,0.0000025427,0.0000025404,0.0000025382, -0.0000025366,0.0000025367,0.0000025398,0.0000025454,0.0000025526, -0.0000025608,0.0000025690,0.0000025763,0.0000025823,0.0000025871, -0.0000025911,0.0000025943,0.0000025970,0.0000025994,0.0000026021, -0.0000026053,0.0000026090,0.0000026127,0.0000026154,0.0000026161, -0.0000026149,0.0000026114,0.0000026060,0.0000025996,0.0000025928, -0.0000025868,0.0000025819,0.0000025775,0.0000025721,0.0000025643, -0.0000025544,0.0000025445,0.0000025361,0.0000025264,0.0000025111, -0.0000024901,0.0000024703,0.0000024577,0.0000024523,0.0000024494, -0.0000024476,0.0000024452,0.0000024432,0.0000024406,0.0000024375, -0.0000024338,0.0000024294,0.0000024264,0.0000024262,0.0000024269, -0.0000024284,0.0000024285,0.0000024256,0.0000024269,0.0000024364, -0.0000024460,0.0000024557,0.0000024652,0.0000024711,0.0000024774, -0.0000024848,0.0000024915,0.0000024985,0.0000025040,0.0000025073, -0.0000025074,0.0000025061,0.0000025062,0.0000025071,0.0000025080, -0.0000025100,0.0000025152,0.0000025235,0.0000025324,0.0000025395, -0.0000025431,0.0000025445,0.0000025503,0.0000025665,0.0000025792, -0.0000025794,0.0000025681,0.0000025579,0.0000025499,0.0000025430, -0.0000025420,0.0000025479,0.0000025584,0.0000025669,0.0000025735, -0.0000025797,0.0000025820,0.0000025816,0.0000025815,0.0000025794, -0.0000025730,0.0000025623,0.0000025519,0.0000025430,0.0000025326, -0.0000025248,0.0000025123,0.0000024978,0.0000024947,0.0000024968, -0.0000025008,0.0000025089,0.0000025177,0.0000025217,0.0000025223, -0.0000025212,0.0000025189,0.0000025153,0.0000025112,0.0000025077, -0.0000025072,0.0000025101,0.0000025153,0.0000025206,0.0000025248, -0.0000025293,0.0000025354,0.0000025422,0.0000025468,0.0000025466, -0.0000025435,0.0000025413,0.0000025404,0.0000025376,0.0000025316, -0.0000025248,0.0000025178,0.0000025113,0.0000025086,0.0000025116, -0.0000025151,0.0000025175,0.0000025221,0.0000025315,0.0000025403, -0.0000025422,0.0000025357,0.0000025225,0.0000025063,0.0000024908, -0.0000024785,0.0000024706,0.0000024666,0.0000024649,0.0000024640, -0.0000024631,0.0000024617,0.0000024595,0.0000024572,0.0000024548, -0.0000024537,0.0000024541,0.0000024543,0.0000024538,0.0000024528, -0.0000024530,0.0000024544,0.0000024576,0.0000024613,0.0000024646, -0.0000024669,0.0000024689,0.0000024707,0.0000024722,0.0000024739, -0.0000024764,0.0000024806,0.0000024856,0.0000024916,0.0000025021, -0.0000025135,0.0000025130,0.0000024916,0.0000024762,0.0000024888, -0.0000025242,0.0000025580,0.0000025793,0.0000025910,0.0000025985, -0.0000026023,0.0000026021,0.0000025987,0.0000025943,0.0000025916, -0.0000025920,0.0000025945,0.0000025975,0.0000026022,0.0000026086, -0.0000026164,0.0000026239,0.0000026276,0.0000026278,0.0000026231, -0.0000026172,0.0000026153,0.0000026154,0.0000026136,0.0000026128, -0.0000026160,0.0000026212,0.0000026219,0.0000026170,0.0000026112, -0.0000026081,0.0000026063,0.0000026041,0.0000026028,0.0000026051, -0.0000026140,0.0000026232,0.0000026271,0.0000026284,0.0000026305, -0.0000026342,0.0000026372,0.0000026384,0.0000026400,0.0000026419, -0.0000026418,0.0000026384,0.0000026324,0.0000026271,0.0000026250, -0.0000026253,0.0000026257,0.0000026245,0.0000026216,0.0000026185, -0.0000026157,0.0000026122,0.0000026077,0.0000026030,0.0000026002, -0.0000026003,0.0000026022,0.0000026026,0.0000026007,0.0000025980, -0.0000025956,0.0000025937,0.0000025926,0.0000025916,0.0000025896, -0.0000025858,0.0000025799,0.0000025730,0.0000025663,0.0000025640, -0.0000025665,0.0000025718,0.0000025789,0.0000025855,0.0000025880, -0.0000025865,0.0000025815,0.0000025747,0.0000025677,0.0000025622, -0.0000025594,0.0000025586,0.0000025579,0.0000025545,0.0000025473, -0.0000025394,0.0000025355,0.0000025351,0.0000025317,0.0000025230, -0.0000025147,0.0000025124,0.0000025158,0.0000025231,0.0000025308, -0.0000025356,0.0000025386,0.0000025425,0.0000025455,0.0000025455, -0.0000025444,0.0000025448,0.0000025464,0.0000025460,0.0000025420, -0.0000025348,0.0000025271,0.0000025207,0.0000025167,0.0000025140, -0.0000025094,0.0000024999,0.0000024886,0.0000024838,0.0000024853, -0.0000024846,0.0000024832,0.0000024812,0.0000024808,0.0000024804, -0.0000024785,0.0000024770,0.0000024776,0.0000024816,0.0000024888, -0.0000024993,0.0000025091,0.0000025149,0.0000025186,0.0000025238, -0.0000025302,0.0000025354,0.0000025419,0.0000025515,0.0000025637, -0.0000025770,0.0000025896,0.0000025991,0.0000026038,0.0000026044, -0.0000026024,0.0000025974,0.0000025942,0.0000025982,0.0000026139, -0.0000026352,0.0000026574,0.0000026809,0.0000027040,0.0000027202, -0.0000027258,0.0000027287,0.0000027394,0.0000027538,0.0000027610, -0.0000027596,0.0000027540,0.0000027480,0.0000027432,0.0000027391, -0.0000027368,0.0000027370,0.0000027375,0.0000027355,0.0000027302, -0.0000027219,0.0000027123,0.0000027027,0.0000026941,0.0000026871, -0.0000026813,0.0000026781,0.0000026779,0.0000026803,0.0000026858, -0.0000026920,0.0000026971,0.0000027017,0.0000027053,0.0000027086, -0.0000027108,0.0000027109,0.0000027083,0.0000027033,0.0000026978, -0.0000026938,0.0000026908,0.0000026876,0.0000026838,0.0000026774, -0.0000026695,0.0000026635,0.0000026595,0.0000026551,0.0000026519, -0.0000026508,0.0000026505,0.0000026508,0.0000026522,0.0000026552, -0.0000026578,0.0000026593,0.0000026608,0.0000026622,0.0000026640, -0.0000026663,0.0000026673,0.0000026675,0.0000026686,0.0000026721, -0.0000026785,0.0000026877,0.0000026991,0.0000027093,0.0000027149, -0.0000027179,0.0000027185,0.0000027184,0.0000027174,0.0000027140, -0.0000027052,0.0000026938,0.0000026832,0.0000026765,0.0000026733, -0.0000026703,0.0000026625,0.0000026416,0.0000026059,0.0000025690, -0.0000025441,0.0000025318,0.0000025257,0.0000025225,0.0000025276, -0.0000025391,0.0000025503,0.0000025557,0.0000025534,0.0000025417, -0.0000025272,0.0000025136,0.0000025030,0.0000024936,0.0000024875, -0.0000024850,0.0000024832,0.0000024818,0.0000024811,0.0000024829, -0.0000024877,0.0000024953,0.0000025026,0.0000025084,0.0000025162, -0.0000025241,0.0000025227,0.0000025095,0.0000025068,0.0000025400, -0.0000026049,0.0000026476,0.0000026516,0.0000026488,0.0000026463, -0.0000026423,0.0000026395,0.0000026362,0.0000026311,0.0000026290, -0.0000026268,0.0000026248,0.0000026244,0.0000026253,0.0000026252, -0.0000026224,0.0000026160,0.0000026157,0.0000026108,0.0000025987, -0.0000025922,0.0000025943,0.0000026012,0.0000026071,0.0000026123, -0.0000026162,0.0000026167,0.0000026137,0.0000026124,0.0000026168, -0.0000026271,0.0000026379,0.0000026474,0.0000026549,0.0000026585, -0.0000026579,0.0000026546,0.0000026467,0.0000026382,0.0000026318, -0.0000026277,0.0000026244,0.0000026213,0.0000026202,0.0000026220, -0.0000026161,0.0000025810,0.0000025401,0.0000025255,0.0000025280, -0.0000025351,0.0000025421,0.0000025529,0.0000025606,0.0000025647, -0.0000025713,0.0000025765,0.0000025797,0.0000025866,0.0000026024, -0.0000026197,0.0000026308,0.0000026388,0.0000026374,0.0000026246, -0.0000026224,0.0000026462,0.0000026794,0.0000027002,0.0000027089, -0.0000027102,0.0000027055,0.0000026969,0.0000026908,0.0000026899, -0.0000026974,0.0000027128,0.0000027310,0.0000027473,0.0000027591, -0.0000027663,0.0000027708,0.0000027738,0.0000027751,0.0000027740, -0.0000027717,0.0000027690,0.0000027659,0.0000027630,0.0000027606, -0.0000027553,0.0000027449,0.0000027329,0.0000027257,0.0000027246, -0.0000027260,0.0000027286,0.0000027322,0.0000027379,0.0000027457, -0.0000027535,0.0000027600,0.0000027652,0.0000027676,0.0000027660, -0.0000027620,0.0000027577,0.0000027520,0.0000027438,0.0000027351, -0.0000027258,0.0000027141,0.0000027039,0.0000027021,0.0000027085, -0.0000027195,0.0000027317,0.0000027399,0.0000027386,0.0000027292, -0.0000027194,0.0000027131,0.0000027053,0.0000026909,0.0000026705, -0.0000026497,0.0000026349,0.0000026271,0.0000026231,0.0000026202, -0.0000026172,0.0000026144,0.0000026119,0.0000026097,0.0000026083, -0.0000026072,0.0000026069,0.0000026099,0.0000026168,0.0000026227, -0.0000026238,0.0000026210,0.0000026138,0.0000026056,0.0000025975, -0.0000025913,0.0000025862,0.0000025827,0.0000025810,0.0000025800, -0.0000025775,0.0000025733,0.0000025694,0.0000025651,0.0000025606, -0.0000025549,0.0000025474,0.0000025390,0.0000025310,0.0000025285, -0.0000025315,0.0000025336,0.0000025303,0.0000025237,0.0000025163, -0.0000025007,0.0000024765,0.0000024553,0.0000024429,0.0000024356, -0.0000024304,0.0000024275,0.0000024279,0.0000024319,0.0000024383, -0.0000024483,0.0000024680,0.0000024975,0.0000025232,0.0000025362, -0.0000025423,0.0000025472,0.0000025466,0.0000025365,0.0000025229, -0.0000025144,0.0000025096,0.0000025060,0.0000025052,0.0000025051, -0.0000025059,0.0000025113,0.0000025179,0.0000025202,0.0000025195, -0.0000025172,0.0000025136,0.0000025085,0.0000025031,0.0000025001, -0.0000024992,0.0000025003,0.0000025020,0.0000025025,0.0000025007, -0.0000024964,0.0000024916,0.0000024902,0.0000024920,0.0000024980, -0.0000025066,0.0000025156,0.0000025225,0.0000025254,0.0000025252, -0.0000025231,0.0000025206,0.0000025188,0.0000025181,0.0000025183, -0.0000025193,0.0000025191,0.0000025187,0.0000025216,0.0000025294, -0.0000025420,0.0000025563,0.0000025681,0.0000025780,0.0000025876, -0.0000025945,0.0000025973,0.0000025978,0.0000025982,0.0000026000, -0.0000026043,0.0000026092,0.0000026118,0.0000026123,0.0000026119, -0.0000026108,0.0000026092,0.0000026089,0.0000026120,0.0000026188, -0.0000026276,0.0000026361,0.0000026418,0.0000026444,0.0000026466, -0.0000026508,0.0000026573,0.0000026628,0.0000026674,0.0000026685, -0.0000026605,0.0000026417,0.0000026262,0.0000026226,0.0000026276, -0.0000026425,0.0000026582,0.0000026644,0.0000026713,0.0000026936, -0.0000027198,0.0000027362,0.0000027469,0.0000027505,0.0000027509, -0.0000027572,0.0000027653,0.0000027681,0.0000027664,0.0000027609, -0.0000027566,0.0000027588,0.0000027675,0.0000027806,0.0000027886, -0.0000027890,0.0000027836,0.0000027764,0.0000027705,0.0000027684, -0.0000027678,0.0000027680,0.0000027697,0.0000027716,0.0000027716, -0.0000027688,0.0000027642,0.0000027596,0.0000027565,0.0000027564, -0.0000027588,0.0000027623,0.0000027636,0.0000027617,0.0000027544, -0.0000027442,0.0000027376,0.0000027372,0.0000027378,0.0000027381, -0.0000027427,0.0000027517,0.0000027596,0.0000027637,0.0000027655, -0.0000027654,0.0000027631,0.0000027592,0.0000027554,0.0000027528, -0.0000027509,0.0000027479,0.0000027403,0.0000027297,0.0000027226, -0.0000027205,0.0000027206,0.0000027209,0.0000027186,0.0000027141, -0.0000027147,0.0000027169,0.0000027104,0.0000026943,0.0000026844, -0.0000026825,0.0000026817,0.0000026794,0.0000026764,0.0000026730, -0.0000026683,0.0000026631,0.0000026600,0.0000026581,0.0000026538, -0.0000026459,0.0000026365,0.0000026272,0.0000026170,0.0000026054, -0.0000025958,0.0000025907,0.0000025865,0.0000025787,0.0000025679, -0.0000025576,0.0000025501,0.0000025452,0.0000025432,0.0000025401, -0.0000025337,0.0000025234,0.0000025092,0.0000024939,0.0000024842, -0.0000024824,0.0000024849,0.0000024882,0.0000024930,0.0000024998, -0.0000025037,0.0000025036,0.0000025019,0.0000024998,0.0000024974, -0.0000024940,0.0000024888,0.0000024793,0.0000024646,0.0000024490, -0.0000024356,0.0000024251,0.0000024212,0.0000024262,0.0000024341, -0.0000024352,0.0000024308,0.0000024278,0.0000024291,0.0000024334, -0.0000024427,0.0000024677,0.0000025079,0.0000025368,0.0000025530, -0.0000025861,0.0000026378,0.0000026686,0.0000026738,0.0000026830, -0.0000026977,0.0000027014,0.0000026935,0.0000026774,0.0000026600, -0.0000026427,0.0000026319,0.0000026370,0.0000026498,0.0000026620, -0.0000026856,0.0000027150,0.0000027353,0.0000027473,0.0000027503, -0.0000027443,0.0000027390,0.0000027293,0.0000027231,0.0000027189, -0.0000027121,0.0000027114,0.0000027159,0.0000027216,0.0000027248, -0.0000027281,0.0000027283,0.0000027244,0.0000027160,0.0000027057, -0.0000026956,0.0000026864,0.0000026787,0.0000026719,0.0000026651, -0.0000026566,0.0000026487,0.0000026422,0.0000026390,0.0000026371, -0.0000026353,0.0000026348,0.0000026344,0.0000026339,0.0000026325, -0.0000026313,0.0000026320,0.0000026290,0.0000026275,0.0000026261, -0.0000026247,0.0000026236,0.0000026223,0.0000026203,0.0000026184, -0.0000026149,0.0000026114,0.0000026083,0.0000026068,0.0000026082, -0.0000026118,0.0000026155,0.0000026184,0.0000026202,0.0000026213, -0.0000026228,0.0000026247,0.0000026266,0.0000026276,0.0000026275, -0.0000026263,0.0000026252,0.0000026229,0.0000026199,0.0000026141, -0.0000026060,0.0000025952,0.0000025828,0.0000025696,0.0000025567, -0.0000025449,0.0000025342,0.0000025235,0.0000025120,0.0000025003, -0.0000024879,0.0000024739,0.0000024599,0.0000024483,0.0000024386, -0.0000024275,0.0000024148,0.0000024059,0.0000024041,0.0000024058, -0.0000024079,0.0000024096,0.0000024122,0.0000024154,0.0000024188, -0.0000024215,0.0000024228,0.0000024228,0.0000024222,0.0000024216, -0.0000024213,0.0000024207,0.0000024175,0.0000024079,0.0000023954, -0.0000023854,0.0000023837,0.0000023873,0.0000023898,0.0000023893, -0.0000023862,0.0000023823,0.0000023803,0.0000023796,0.0000023785, -0.0000023760,0.0000023718,0.0000023666,0.0000023617,0.0000023607, -0.0000023618,0.0000023641,0.0000023666,0.0000023686,0.0000023702, -0.0000023725,0.0000023764,0.0000023783,0.0000023766,0.0000023741, -0.0000023725,0.0000023717,0.0000023721,0.0000023723,0.0000023700, -0.0000023637,0.0000023582,0.0000023565,0.0000023559,0.0000023509, -0.0000023395,0.0000023294,0.0000023256,0.0000023252,0.0000023245, -0.0000023235,0.0000023300,0.0000023517,0.0000023744,0.0000023897, -0.0000024038,0.0000024150,0.0000024252,0.0000024366,0.0000024507, -0.0000024945,0.0000025546,0.0000025851,0.0000025865,0.0000025741, -0.0000025597,0.0000025450,0.0000025292,0.0000025209,0.0000025187, -0.0000025190,0.0000025163,0.0000024966,0.0000024665,0.0000024715, -0.0000024943,0.0000025391,0.0000026020,0.0000026327,0.0000026440, -0.0000026613,0.0000026767,0.0000026823,0.0000026825,0.0000026824, -0.0000026831,0.0000026849,0.0000026872,0.0000026894,0.0000026908, -0.0000026906,0.0000026886,0.0000026863,0.0000026854,0.0000026858, -0.0000026862,0.0000026847,0.0000026812,0.0000026780,0.0000026764, -0.0000026762,0.0000026762,0.0000026553,0.0000026554,0.0000026562, -0.0000026557,0.0000026524,0.0000026457,0.0000026368,0.0000026253, -0.0000026145,0.0000026054,0.0000025981,0.0000025911,0.0000025843, -0.0000025775,0.0000025714,0.0000025656,0.0000025607,0.0000025567, -0.0000025526,0.0000025478,0.0000025432,0.0000025399,0.0000025373, -0.0000025348,0.0000025320,0.0000025290,0.0000025260,0.0000025233, -0.0000025224,0.0000025235,0.0000025261,0.0000025305,0.0000025376, -0.0000025471,0.0000025570,0.0000025659,0.0000025732,0.0000025792, -0.0000025844,0.0000025887,0.0000025917,0.0000025934,0.0000025945, -0.0000025957,0.0000025971,0.0000025976,0.0000025968,0.0000025946, -0.0000025911,0.0000025871,0.0000025831,0.0000025794,0.0000025754, -0.0000025698,0.0000025618,0.0000025515,0.0000025414,0.0000025335, -0.0000025241,0.0000025079,0.0000024870,0.0000024688,0.0000024571, -0.0000024514,0.0000024495,0.0000024489,0.0000024478,0.0000024462, -0.0000024442,0.0000024410,0.0000024372,0.0000024329,0.0000024287, -0.0000024263,0.0000024256,0.0000024258,0.0000024271,0.0000024274, -0.0000024251,0.0000024259,0.0000024336,0.0000024421,0.0000024505, -0.0000024608,0.0000024678,0.0000024737,0.0000024810,0.0000024879, -0.0000024953,0.0000025019,0.0000025064,0.0000025089,0.0000025093, -0.0000025096,0.0000025112,0.0000025138,0.0000025164,0.0000025200, -0.0000025257,0.0000025324,0.0000025379,0.0000025413,0.0000025448, -0.0000025551,0.0000025709,0.0000025792,0.0000025768,0.0000025648, -0.0000025548,0.0000025482,0.0000025426,0.0000025417,0.0000025465, -0.0000025552,0.0000025640,0.0000025707,0.0000025774,0.0000025821, -0.0000025822,0.0000025815,0.0000025808,0.0000025772,0.0000025710, -0.0000025614,0.0000025516,0.0000025432,0.0000025338,0.0000025267, -0.0000025150,0.0000025003,0.0000024955,0.0000024971,0.0000025004, -0.0000025081,0.0000025170,0.0000025212,0.0000025218,0.0000025196, -0.0000025163,0.0000025127,0.0000025088,0.0000025051,0.0000025032, -0.0000025043,0.0000025083,0.0000025149,0.0000025212,0.0000025253, -0.0000025287,0.0000025333,0.0000025388,0.0000025418,0.0000025421, -0.0000025418,0.0000025423,0.0000025407,0.0000025345,0.0000025260, -0.0000025186,0.0000025121,0.0000025074,0.0000025085,0.0000025147, -0.0000025181,0.0000025190,0.0000025241,0.0000025331,0.0000025403, -0.0000025416,0.0000025360,0.0000025257,0.0000025129,0.0000024996, -0.0000024879,0.0000024788,0.0000024728,0.0000024692,0.0000024670, -0.0000024654,0.0000024639,0.0000024618,0.0000024597,0.0000024591, -0.0000024597,0.0000024600,0.0000024591,0.0000024575,0.0000024564, -0.0000024572,0.0000024600,0.0000024636,0.0000024664,0.0000024681, -0.0000024694,0.0000024698,0.0000024703,0.0000024716,0.0000024734, -0.0000024754,0.0000024785,0.0000024824,0.0000024904,0.0000025067, -0.0000025204,0.0000025134,0.0000024878,0.0000024727,0.0000024820, -0.0000025095,0.0000025375,0.0000025592,0.0000025744,0.0000025830, -0.0000025858,0.0000025844,0.0000025808,0.0000025776,0.0000025767, -0.0000025777,0.0000025810,0.0000025866,0.0000025944,0.0000026032, -0.0000026106,0.0000026167,0.0000026217,0.0000026225,0.0000026198, -0.0000026166,0.0000026170,0.0000026177,0.0000026157,0.0000026152, -0.0000026176,0.0000026196,0.0000026177,0.0000026129,0.0000026083, -0.0000026055,0.0000026031,0.0000026007,0.0000026004,0.0000026067, -0.0000026181,0.0000026284,0.0000026354,0.0000026394,0.0000026416, -0.0000026442,0.0000026477,0.0000026525,0.0000026577,0.0000026597, -0.0000026583,0.0000026530,0.0000026460,0.0000026398,0.0000026353, -0.0000026311,0.0000026261,0.0000026195,0.0000026123,0.0000026076, -0.0000026065,0.0000026064,0.0000026063,0.0000026069,0.0000026075, -0.0000026081,0.0000026071,0.0000026038,0.0000025989,0.0000025945, -0.0000025920,0.0000025913,0.0000025914,0.0000025899,0.0000025857, -0.0000025800,0.0000025744,0.0000025694,0.0000025674,0.0000025702, -0.0000025755,0.0000025815,0.0000025867,0.0000025889,0.0000025877, -0.0000025829,0.0000025761,0.0000025688,0.0000025627,0.0000025596, -0.0000025592,0.0000025601,0.0000025599,0.0000025561,0.0000025468, -0.0000025363,0.0000025296,0.0000025263,0.0000025263,0.0000025238, -0.0000025198,0.0000025183,0.0000025225,0.0000025290,0.0000025335, -0.0000025365,0.0000025410,0.0000025470,0.0000025502,0.0000025500, -0.0000025481,0.0000025471,0.0000025468,0.0000025456,0.0000025406, -0.0000025315,0.0000025216,0.0000025143,0.0000025100,0.0000025081, -0.0000025065,0.0000025011,0.0000024930,0.0000024871,0.0000024829, -0.0000024790,0.0000024757,0.0000024745,0.0000024758,0.0000024770, -0.0000024755,0.0000024725,0.0000024705,0.0000024715,0.0000024791, -0.0000024900,0.0000024983,0.0000025031,0.0000025076,0.0000025134, -0.0000025192,0.0000025271,0.0000025378,0.0000025490,0.0000025603, -0.0000025730,0.0000025851,0.0000025942,0.0000026005,0.0000026038, -0.0000026028,0.0000025985,0.0000025979,0.0000026085,0.0000026272, -0.0000026465,0.0000026659,0.0000026872,0.0000027065,0.0000027176, -0.0000027208,0.0000027267,0.0000027408,0.0000027546,0.0000027583, -0.0000027551,0.0000027481,0.0000027418,0.0000027372,0.0000027347, -0.0000027341,0.0000027341,0.0000027326,0.0000027287,0.0000027230, -0.0000027156,0.0000027061,0.0000026962,0.0000026866,0.0000026772, -0.0000026706,0.0000026674,0.0000026678,0.0000026723,0.0000026788, -0.0000026849,0.0000026904,0.0000026943,0.0000026969,0.0000026985, -0.0000026977,0.0000026939,0.0000026876,0.0000026810,0.0000026769, -0.0000026761,0.0000026778,0.0000026794,0.0000026792,0.0000026737, -0.0000026682,0.0000026624,0.0000026565,0.0000026502,0.0000026447, -0.0000026413,0.0000026387,0.0000026374,0.0000026375,0.0000026382, -0.0000026388,0.0000026390,0.0000026400,0.0000026403,0.0000026411, -0.0000026431,0.0000026443,0.0000026437,0.0000026429,0.0000026440, -0.0000026480,0.0000026568,0.0000026708,0.0000026854,0.0000026971, -0.0000027056,0.0000027109,0.0000027143,0.0000027164,0.0000027136, -0.0000027083,0.0000026988,0.0000026890,0.0000026814,0.0000026752, -0.0000026706,0.0000026674,0.0000026582,0.0000026333,0.0000025947, -0.0000025574,0.0000025347,0.0000025251,0.0000025211,0.0000025225, -0.0000025293,0.0000025386,0.0000025448,0.0000025447,0.0000025369, -0.0000025262,0.0000025147,0.0000025012,0.0000024878,0.0000024812, -0.0000024814,0.0000024826,0.0000024830,0.0000024833,0.0000024848, -0.0000024880,0.0000024937,0.0000025011,0.0000025083,0.0000025147, -0.0000025256,0.0000025292,0.0000025155,0.0000025071,0.0000025306, -0.0000025966,0.0000026424,0.0000026468,0.0000026448,0.0000026443, -0.0000026425,0.0000026405,0.0000026373,0.0000026319,0.0000026292, -0.0000026271,0.0000026257,0.0000026249,0.0000026246,0.0000026237, -0.0000026182,0.0000026124,0.0000026085,0.0000025840,0.0000025575, -0.0000025481,0.0000025510,0.0000025625,0.0000025770,0.0000025930, -0.0000026052,0.0000026093,0.0000026063,0.0000026054,0.0000026109, -0.0000026218,0.0000026324,0.0000026420,0.0000026487,0.0000026511, -0.0000026500,0.0000026463,0.0000026399,0.0000026333,0.0000026281, -0.0000026231,0.0000026176,0.0000026152,0.0000026167,0.0000026144, -0.0000025891,0.0000025466,0.0000025222,0.0000025213,0.0000025280, -0.0000025341,0.0000025404,0.0000025511,0.0000025580,0.0000025608, -0.0000025661,0.0000025713,0.0000025744,0.0000025801,0.0000025941, -0.0000026121,0.0000026239,0.0000026327,0.0000026336,0.0000026224, -0.0000026159,0.0000026296,0.0000026605,0.0000026876,0.0000027034, -0.0000027097,0.0000027085,0.0000027014,0.0000026932,0.0000026891, -0.0000026910,0.0000027009,0.0000027159,0.0000027327,0.0000027478, -0.0000027590,0.0000027661,0.0000027706,0.0000027724,0.0000027715, -0.0000027685,0.0000027636,0.0000027572,0.0000027517,0.0000027475, -0.0000027405,0.0000027294,0.0000027195,0.0000027166,0.0000027186, -0.0000027211,0.0000027220,0.0000027219,0.0000027247,0.0000027325, -0.0000027430,0.0000027517,0.0000027582,0.0000027624,0.0000027627, -0.0000027602,0.0000027566,0.0000027510,0.0000027418,0.0000027294, -0.0000027149,0.0000027019,0.0000026981,0.0000027044,0.0000027140, -0.0000027223,0.0000027295,0.0000027338,0.0000027319,0.0000027226, -0.0000027102,0.0000026991,0.0000026870,0.0000026705,0.0000026511, -0.0000026340,0.0000026228,0.0000026165,0.0000026120,0.0000026080, -0.0000026045,0.0000026019,0.0000026003,0.0000025987,0.0000025973, -0.0000025976,0.0000025992,0.0000026005,0.0000026041,0.0000026115, -0.0000026173,0.0000026181,0.0000026147,0.0000026086,0.0000026028, -0.0000025966,0.0000025900,0.0000025842,0.0000025799,0.0000025769, -0.0000025743,0.0000025714,0.0000025684,0.0000025645,0.0000025601, -0.0000025545,0.0000025479,0.0000025410,0.0000025345,0.0000025318, -0.0000025345,0.0000025366,0.0000025333,0.0000025265,0.0000025168, -0.0000024960,0.0000024692,0.0000024505,0.0000024395,0.0000024283, -0.0000024176,0.0000024109,0.0000024097,0.0000024134,0.0000024219, -0.0000024314,0.0000024402,0.0000024584,0.0000024915,0.0000025224, -0.0000025382,0.0000025453,0.0000025481,0.0000025451,0.0000025338, -0.0000025220,0.0000025144,0.0000025088,0.0000025062,0.0000025060, -0.0000025057,0.0000025078,0.0000025140,0.0000025183,0.0000025178, -0.0000025157,0.0000025138,0.0000025116,0.0000025078,0.0000025033, -0.0000025001,0.0000024988,0.0000024993,0.0000025001,0.0000025004, -0.0000025002,0.0000024995,0.0000024994,0.0000025010,0.0000025056, -0.0000025120,0.0000025187,0.0000025244,0.0000025277,0.0000025285, -0.0000025281,0.0000025272,0.0000025264,0.0000025257,0.0000025252, -0.0000025252,0.0000025247,0.0000025224,0.0000025204,0.0000025221, -0.0000025300,0.0000025422,0.0000025552,0.0000025664,0.0000025778, -0.0000025886,0.0000025943,0.0000025946,0.0000025939,0.0000025948, -0.0000025986,0.0000026040,0.0000026081,0.0000026093,0.0000026093, -0.0000026094,0.0000026088,0.0000026066,0.0000026046,0.0000026056, -0.0000026107,0.0000026187,0.0000026288,0.0000026381,0.0000026435, -0.0000026469,0.0000026526,0.0000026612,0.0000026680,0.0000026718, -0.0000026722,0.0000026643,0.0000026446,0.0000026271,0.0000026231, -0.0000026273,0.0000026400,0.0000026551,0.0000026625,0.0000026688, -0.0000026879,0.0000027124,0.0000027293,0.0000027406,0.0000027451, -0.0000027465,0.0000027544,0.0000027634,0.0000027658,0.0000027629, -0.0000027571,0.0000027535,0.0000027558,0.0000027629,0.0000027730, -0.0000027798,0.0000027813,0.0000027793,0.0000027750,0.0000027704, -0.0000027683,0.0000027680,0.0000027689,0.0000027704,0.0000027717, -0.0000027713,0.0000027683,0.0000027634,0.0000027597,0.0000027591, -0.0000027617,0.0000027640,0.0000027647,0.0000027629,0.0000027582, -0.0000027496,0.0000027389,0.0000027323,0.0000027322,0.0000027334, -0.0000027339,0.0000027378,0.0000027470,0.0000027558,0.0000027611, -0.0000027637,0.0000027636,0.0000027605,0.0000027551,0.0000027506, -0.0000027481,0.0000027471,0.0000027449,0.0000027386,0.0000027289, -0.0000027200,0.0000027164,0.0000027167,0.0000027187,0.0000027172, -0.0000027138,0.0000027149,0.0000027169,0.0000027113,0.0000026957, -0.0000026849,0.0000026821,0.0000026804,0.0000026773,0.0000026742, -0.0000026717,0.0000026686,0.0000026645,0.0000026619,0.0000026614, -0.0000026599,0.0000026547,0.0000026460,0.0000026365,0.0000026277, -0.0000026178,0.0000026061,0.0000025960,0.0000025900,0.0000025843, -0.0000025751,0.0000025638,0.0000025536,0.0000025462,0.0000025423, -0.0000025393,0.0000025361,0.0000025306,0.0000025217,0.0000025080, -0.0000024918,0.0000024809,0.0000024785,0.0000024817,0.0000024879, -0.0000024967,0.0000025043,0.0000025061,0.0000025036,0.0000025005, -0.0000024973,0.0000024948,0.0000024907,0.0000024831,0.0000024707, -0.0000024563,0.0000024429,0.0000024313,0.0000024241,0.0000024248, -0.0000024321,0.0000024359,0.0000024317,0.0000024264,0.0000024259, -0.0000024305,0.0000024358,0.0000024472,0.0000024795,0.0000025205, -0.0000025461,0.0000025672,0.0000026071,0.0000026505,0.0000026655, -0.0000026663,0.0000026752,0.0000026833,0.0000026801,0.0000026693, -0.0000026545,0.0000026386,0.0000026260,0.0000026251,0.0000026339, -0.0000026466,0.0000026674,0.0000026996,0.0000027271,0.0000027432, -0.0000027500,0.0000027472,0.0000027430,0.0000027359,0.0000027273, -0.0000027216,0.0000027144,0.0000027129,0.0000027164,0.0000027214, -0.0000027249,0.0000027280,0.0000027279,0.0000027242,0.0000027166, -0.0000027068,0.0000026984,0.0000026917,0.0000026863,0.0000026796, -0.0000026723,0.0000026619,0.0000026492,0.0000026386,0.0000026307, -0.0000026242,0.0000026195,0.0000026167,0.0000026174,0.0000026181, -0.0000026204,0.0000026222,0.0000026253,0.0000026269,0.0000026257, -0.0000026285,0.0000026258,0.0000026237,0.0000026229,0.0000026190, -0.0000026172,0.0000026122,0.0000026085,0.0000026060,0.0000026051, -0.0000026069,0.0000026110,0.0000026151,0.0000026183,0.0000026208, -0.0000026231,0.0000026260,0.0000026294,0.0000026321,0.0000026332, -0.0000026329,0.0000026302,0.0000026270,0.0000026220,0.0000026131, -0.0000025997,0.0000025826,0.0000025642,0.0000025473,0.0000025335, -0.0000025225,0.0000025142,0.0000025072,0.0000025001,0.0000024917, -0.0000024828,0.0000024739,0.0000024641,0.0000024537,0.0000024439, -0.0000024351,0.0000024264,0.0000024188,0.0000024129,0.0000024118, -0.0000024127,0.0000024124,0.0000024100,0.0000024089,0.0000024096, -0.0000024115,0.0000024141,0.0000024164,0.0000024178,0.0000024183, -0.0000024180,0.0000024171,0.0000024158,0.0000024133,0.0000024089, -0.0000024000,0.0000023897,0.0000023811,0.0000023792,0.0000023833, -0.0000023864,0.0000023869,0.0000023857,0.0000023826,0.0000023799, -0.0000023778,0.0000023748,0.0000023705,0.0000023655,0.0000023612, -0.0000023586,0.0000023582,0.0000023598,0.0000023622,0.0000023643, -0.0000023658,0.0000023668,0.0000023670,0.0000023681,0.0000023702, -0.0000023708,0.0000023706,0.0000023699,0.0000023689,0.0000023684, -0.0000023685,0.0000023675,0.0000023625,0.0000023562,0.0000023533, -0.0000023533,0.0000023524,0.0000023448,0.0000023327,0.0000023250, -0.0000023232,0.0000023234,0.0000023234,0.0000023244,0.0000023395, -0.0000023645,0.0000023827,0.0000023966,0.0000024094,0.0000024186, -0.0000024295,0.0000024410,0.0000024661,0.0000025197,0.0000025704, -0.0000025846,0.0000025786,0.0000025664,0.0000025518,0.0000025331, -0.0000025199,0.0000025151,0.0000025142,0.0000025141,0.0000025046, -0.0000024755,0.0000024673,0.0000024874,0.0000025156,0.0000025748, -0.0000026229,0.0000026378,0.0000026490,0.0000026652,0.0000026773, -0.0000026824,0.0000026834,0.0000026835,0.0000026845,0.0000026867, -0.0000026894,0.0000026914,0.0000026915,0.0000026905,0.0000026885, -0.0000026859,0.0000026806,0.0000026720,0.0000026622,0.0000026543, -0.0000026501,0.0000026501,0.0000026530,0.0000026555,0.0000026415, -0.0000026421,0.0000026419,0.0000026408,0.0000026370,0.0000026307, -0.0000026227,0.0000026124,0.0000026020,0.0000025925,0.0000025840, -0.0000025754,0.0000025681,0.0000025629,0.0000025601,0.0000025579, -0.0000025553,0.0000025521,0.0000025476,0.0000025419,0.0000025357, -0.0000025309,0.0000025278,0.0000025257,0.0000025240,0.0000025226, -0.0000025211,0.0000025192,0.0000025175,0.0000025168,0.0000025170, -0.0000025173,0.0000025188,0.0000025225,0.0000025285,0.0000025363, -0.0000025451,0.0000025537,0.0000025620,0.0000025696,0.0000025759, -0.0000025806,0.0000025835,0.0000025850,0.0000025858,0.0000025858, -0.0000025848,0.0000025831,0.0000025808,0.0000025778,0.0000025744, -0.0000025700,0.0000025640,0.0000025557,0.0000025461,0.0000025370, -0.0000025292,0.0000025197,0.0000025038,0.0000024830,0.0000024651, -0.0000024549,0.0000024504,0.0000024489,0.0000024489,0.0000024489, -0.0000024478,0.0000024456,0.0000024431,0.0000024397,0.0000024354, -0.0000024309,0.0000024273,0.0000024257,0.0000024251,0.0000024251, -0.0000024262,0.0000024265,0.0000024248,0.0000024256,0.0000024317, -0.0000024385,0.0000024453,0.0000024557,0.0000024640,0.0000024698, -0.0000024769,0.0000024841,0.0000024918,0.0000024994,0.0000025046, -0.0000025082,0.0000025105,0.0000025123,0.0000025149,0.0000025190, -0.0000025223,0.0000025244,0.0000025268,0.0000025307,0.0000025358, -0.0000025407,0.0000025496,0.0000025639,0.0000025764,0.0000025785, -0.0000025720,0.0000025595,0.0000025497,0.0000025443,0.0000025408, -0.0000025407,0.0000025463,0.0000025540,0.0000025615,0.0000025679, -0.0000025745,0.0000025810,0.0000025834,0.0000025823,0.0000025817, -0.0000025794,0.0000025745,0.0000025691,0.0000025598,0.0000025504, -0.0000025428,0.0000025349,0.0000025284,0.0000025172,0.0000025028, -0.0000024972,0.0000024981,0.0000025007,0.0000025082,0.0000025168, -0.0000025210,0.0000025211,0.0000025179,0.0000025138,0.0000025104, -0.0000025072,0.0000025042,0.0000025023,0.0000025014,0.0000025026, -0.0000025078,0.0000025158,0.0000025219,0.0000025248,0.0000025271, -0.0000025309,0.0000025350,0.0000025385,0.0000025413,0.0000025425, -0.0000025422,0.0000025373,0.0000025278,0.0000025193,0.0000025134, -0.0000025079,0.0000025063,0.0000025119,0.0000025179,0.0000025198, -0.0000025205,0.0000025246,0.0000025322,0.0000025390,0.0000025407, -0.0000025380,0.0000025313,0.0000025218,0.0000025111,0.0000025008, -0.0000024917,0.0000024841,0.0000024783,0.0000024743,0.0000024714, -0.0000024686,0.0000024660,0.0000024651,0.0000024653,0.0000024654, -0.0000024645,0.0000024627,0.0000024613,0.0000024618,0.0000024645, -0.0000024681,0.0000024707,0.0000024718,0.0000024718,0.0000024701, -0.0000024684,0.0000024685,0.0000024702,0.0000024720,0.0000024738, -0.0000024764,0.0000024810,0.0000024933,0.0000025138,0.0000025254, -0.0000025131,0.0000024863,0.0000024756,0.0000024752,0.0000024870, -0.0000025048,0.0000025211,0.0000025317,0.0000025364,0.0000025363, -0.0000025341,0.0000025311,0.0000025288,0.0000025283,0.0000025308, -0.0000025394,0.0000025552,0.0000025757,0.0000025947,0.0000026066, -0.0000026117,0.0000026141,0.0000026157,0.0000026159,0.0000026166, -0.0000026189,0.0000026196,0.0000026175,0.0000026160,0.0000026168, -0.0000026177,0.0000026167,0.0000026127,0.0000026066,0.0000026018, -0.0000025986,0.0000025978,0.0000026014,0.0000026101,0.0000026207, -0.0000026311,0.0000026392,0.0000026436,0.0000026468,0.0000026504, -0.0000026556,0.0000026618,0.0000026641,0.0000026627,0.0000026561, -0.0000026472,0.0000026384,0.0000026302,0.0000026241,0.0000026188, -0.0000026131,0.0000026076,0.0000026054,0.0000026068,0.0000026100, -0.0000026126,0.0000026143,0.0000026143,0.0000026124,0.0000026097, -0.0000026050,0.0000025988,0.0000025935,0.0000025911,0.0000025915, -0.0000025927,0.0000025921,0.0000025876,0.0000025810,0.0000025750, -0.0000025706,0.0000025690,0.0000025719,0.0000025775,0.0000025826, -0.0000025863,0.0000025885,0.0000025881,0.0000025848,0.0000025787, -0.0000025710,0.0000025635,0.0000025588,0.0000025576,0.0000025584, -0.0000025595,0.0000025593,0.0000025547,0.0000025446,0.0000025321, -0.0000025224,0.0000025204,0.0000025250,0.0000025276,0.0000025251, -0.0000025243,0.0000025285,0.0000025332,0.0000025354,0.0000025383, -0.0000025442,0.0000025507,0.0000025537,0.0000025539,0.0000025515, -0.0000025485,0.0000025466,0.0000025448,0.0000025397,0.0000025303, -0.0000025194,0.0000025112,0.0000025076,0.0000025079,0.0000025105, -0.0000025095,0.0000025024,0.0000024918,0.0000024799,0.0000024708, -0.0000024664,0.0000024681,0.0000024731,0.0000024760,0.0000024744, -0.0000024682,0.0000024622,0.0000024618,0.0000024684,0.0000024771, -0.0000024835,0.0000024884,0.0000024950,0.0000025032,0.0000025131, -0.0000025245,0.0000025357,0.0000025463,0.0000025580,0.0000025711, -0.0000025842,0.0000025958,0.0000026047,0.0000026081,0.0000026053, -0.0000026021,0.0000026069,0.0000026214,0.0000026379,0.0000026528, -0.0000026688,0.0000026859,0.0000027004,0.0000027084,0.0000027141, -0.0000027258,0.0000027420,0.0000027531,0.0000027545,0.0000027494, -0.0000027419,0.0000027351,0.0000027316,0.0000027321,0.0000027341, -0.0000027345,0.0000027323,0.0000027274,0.0000027212,0.0000027138, -0.0000027049,0.0000026943,0.0000026833,0.0000026738,0.0000026677, -0.0000026665,0.0000026689,0.0000026730,0.0000026764,0.0000026795, -0.0000026818,0.0000026829,0.0000026824,0.0000026798,0.0000026744, -0.0000026665,0.0000026573,0.0000026498,0.0000026457,0.0000026454, -0.0000026482,0.0000026513,0.0000026540,0.0000026560,0.0000026559, -0.0000026555,0.0000026538,0.0000026470,0.0000026425,0.0000026370, -0.0000026317,0.0000026289,0.0000026280,0.0000026279,0.0000026273, -0.0000026273,0.0000026274,0.0000026263,0.0000026258,0.0000026275, -0.0000026280,0.0000026270,0.0000026252,0.0000026241,0.0000026258, -0.0000026326,0.0000026438,0.0000026565,0.0000026691,0.0000026815, -0.0000026931,0.0000027024,0.0000027091,0.0000027116,0.0000027076, -0.0000027031,0.0000026963,0.0000026885,0.0000026799,0.0000026728, -0.0000026686,0.0000026644,0.0000026518,0.0000026230,0.0000025831, -0.0000025498,0.0000025317,0.0000025236,0.0000025221,0.0000025229, -0.0000025281,0.0000025333,0.0000025345,0.0000025295,0.0000025232, -0.0000025155,0.0000025021,0.0000024863,0.0000024796,0.0000024810, -0.0000024830,0.0000024845,0.0000024864,0.0000024886,0.0000024900, -0.0000024935,0.0000025000,0.0000025083,0.0000025141,0.0000025247, -0.0000025310,0.0000025208,0.0000025068,0.0000025237,0.0000025918, -0.0000026404,0.0000026445,0.0000026427,0.0000026430,0.0000026425, -0.0000026409,0.0000026379,0.0000026329,0.0000026299,0.0000026277, -0.0000026266,0.0000026252,0.0000026239,0.0000026221,0.0000026145, -0.0000026102,0.0000025927,0.0000025452,0.0000025159,0.0000025087, -0.0000025085,0.0000025159,0.0000025293,0.0000025504,0.0000025723, -0.0000025879,0.0000025950,0.0000026002,0.0000026083,0.0000026180, -0.0000026275,0.0000026365,0.0000026421,0.0000026441,0.0000026433, -0.0000026401,0.0000026356,0.0000026299,0.0000026243,0.0000026177, -0.0000026126,0.0000026128,0.0000026119,0.0000025926,0.0000025505, -0.0000025188,0.0000025132,0.0000025200,0.0000025281,0.0000025319, -0.0000025379,0.0000025485,0.0000025545,0.0000025563,0.0000025604, -0.0000025654,0.0000025685,0.0000025732,0.0000025853,0.0000026034, -0.0000026153,0.0000026250,0.0000026298,0.0000026221,0.0000026111, -0.0000026145,0.0000026377,0.0000026678,0.0000026909,0.0000027046, -0.0000027095,0.0000027069,0.0000026984,0.0000026898,0.0000026877, -0.0000026928,0.0000027035,0.0000027184,0.0000027352,0.0000027502, -0.0000027604,0.0000027662,0.0000027683,0.0000027673,0.0000027626, -0.0000027542,0.0000027446,0.0000027377,0.0000027332,0.0000027265, -0.0000027174,0.0000027121,0.0000027137,0.0000027182,0.0000027218, -0.0000027219,0.0000027183,0.0000027149,0.0000027179,0.0000027274, -0.0000027390,0.0000027485,0.0000027546,0.0000027559,0.0000027545, -0.0000027511,0.0000027439,0.0000027314,0.0000027154,0.0000027013, -0.0000026947,0.0000026985,0.0000027079,0.0000027158,0.0000027202, -0.0000027229,0.0000027248,0.0000027241,0.0000027168,0.0000027034, -0.0000026884,0.0000026730,0.0000026566,0.0000026400,0.0000026255, -0.0000026149,0.0000026081,0.0000026037,0.0000026002,0.0000025969, -0.0000025942,0.0000025925,0.0000025914,0.0000025899,0.0000025884, -0.0000025892,0.0000025930,0.0000025962,0.0000025997,0.0000026059, -0.0000026106,0.0000026107,0.0000026078,0.0000026044,0.0000026014, -0.0000025968,0.0000025906,0.0000025840,0.0000025780,0.0000025734, -0.0000025704,0.0000025676,0.0000025636,0.0000025594,0.0000025547, -0.0000025490,0.0000025435,0.0000025379,0.0000025350,0.0000025377, -0.0000025407,0.0000025380,0.0000025314,0.0000025187,0.0000024932, -0.0000024665,0.0000024505,0.0000024369,0.0000024190,0.0000024032, -0.0000023946,0.0000023921,0.0000023932,0.0000023991,0.0000024119, -0.0000024266,0.0000024369,0.0000024545,0.0000024903,0.0000025246, -0.0000025414,0.0000025475,0.0000025485,0.0000025428,0.0000025314, -0.0000025210,0.0000025128,0.0000025074,0.0000025065,0.0000025067, -0.0000025066,0.0000025104,0.0000025162,0.0000025176,0.0000025150, -0.0000025127,0.0000025115,0.0000025101,0.0000025074,0.0000025041, -0.0000025013,0.0000025001,0.0000025008,0.0000025022,0.0000025045, -0.0000025076,0.0000025114,0.0000025156,0.0000025199,0.0000025237, -0.0000025266,0.0000025286,0.0000025306,0.0000025324,0.0000025333, -0.0000025336,0.0000025338,0.0000025340,0.0000025337,0.0000025322, -0.0000025305,0.0000025288,0.0000025255,0.0000025225,0.0000025231, -0.0000025302,0.0000025418,0.0000025537,0.0000025653,0.0000025787, -0.0000025892,0.0000025916,0.0000025901,0.0000025892,0.0000025917, -0.0000025970,0.0000026026,0.0000026062,0.0000026070,0.0000026072, -0.0000026079,0.0000026075,0.0000026044,0.0000026005,0.0000026003, -0.0000026049,0.0000026134,0.0000026250,0.0000026374,0.0000026462, -0.0000026508,0.0000026570,0.0000026664,0.0000026747,0.0000026780, -0.0000026774,0.0000026700,0.0000026522,0.0000026329,0.0000026255, -0.0000026276,0.0000026381,0.0000026527,0.0000026617,0.0000026684, -0.0000026857,0.0000027078,0.0000027230,0.0000027332,0.0000027384, -0.0000027414,0.0000027504,0.0000027593,0.0000027611,0.0000027582, -0.0000027543,0.0000027537,0.0000027563,0.0000027606,0.0000027665, -0.0000027713,0.0000027746,0.0000027760,0.0000027740,0.0000027703, -0.0000027677,0.0000027673,0.0000027686,0.0000027700,0.0000027707, -0.0000027703,0.0000027680,0.0000027650,0.0000027641,0.0000027661, -0.0000027688,0.0000027690,0.0000027665,0.0000027611,0.0000027533, -0.0000027432,0.0000027334,0.0000027286,0.0000027289,0.0000027306, -0.0000027320,0.0000027352,0.0000027426,0.0000027508,0.0000027570, -0.0000027611,0.0000027620,0.0000027590,0.0000027521,0.0000027458, -0.0000027421,0.0000027415,0.0000027403,0.0000027358,0.0000027275, -0.0000027183,0.0000027131,0.0000027134,0.0000027152,0.0000027141, -0.0000027124,0.0000027146,0.0000027166,0.0000027105,0.0000026952, -0.0000026850,0.0000026822,0.0000026804,0.0000026771,0.0000026736, -0.0000026702,0.0000026677,0.0000026653,0.0000026634,0.0000026628, -0.0000026627,0.0000026606,0.0000026544,0.0000026453,0.0000026362, -0.0000026282,0.0000026189,0.0000026069,0.0000025960,0.0000025886, -0.0000025810,0.0000025703,0.0000025598,0.0000025520,0.0000025458, -0.0000025409,0.0000025386,0.0000025362,0.0000025308,0.0000025214, -0.0000025069,0.0000024892,0.0000024774,0.0000024761,0.0000024821, -0.0000024921,0.0000025023,0.0000025067,0.0000025050,0.0000025007, -0.0000024972,0.0000024947,0.0000024916,0.0000024854,0.0000024751, -0.0000024622,0.0000024492,0.0000024375,0.0000024280,0.0000024248, -0.0000024294,0.0000024354,0.0000024333,0.0000024266,0.0000024238, -0.0000024267,0.0000024325,0.0000024371,0.0000024536,0.0000024940, -0.0000025342,0.0000025583,0.0000025835,0.0000026240,0.0000026547, -0.0000026588,0.0000026593,0.0000026650,0.0000026662,0.0000026609, -0.0000026498,0.0000026371,0.0000026260,0.0000026203,0.0000026218, -0.0000026306,0.0000026489,0.0000026808,0.0000027154,0.0000027378, -0.0000027485,0.0000027489,0.0000027458,0.0000027425,0.0000027332, -0.0000027253,0.0000027166,0.0000027139,0.0000027171,0.0000027200, -0.0000027238,0.0000027262,0.0000027258,0.0000027224,0.0000027156, -0.0000027067,0.0000026999,0.0000026943,0.0000026888,0.0000026804, -0.0000026651,0.0000026410,0.0000026158,0.0000025941,0.0000025790, -0.0000025681,0.0000025620,0.0000025574,0.0000025571,0.0000025586, -0.0000025634,0.0000025696,0.0000025769,0.0000025845,0.0000025900, -0.0000025969,0.0000026038,0.0000026103,0.0000026176,0.0000026188, -0.0000026219,0.0000026184,0.0000026173,0.0000026135,0.0000026127, -0.0000026138,0.0000026164,0.0000026202,0.0000026235,0.0000026264, -0.0000026293,0.0000026322,0.0000026352,0.0000026368,0.0000026363, -0.0000026346,0.0000026301,0.0000026207,0.0000026065,0.0000025884, -0.0000025675,0.0000025466,0.0000025292,0.0000025174,0.0000025102, -0.0000025048,0.0000025000,0.0000024952,0.0000024897,0.0000024828, -0.0000024748,0.0000024670,0.0000024593,0.0000024510,0.0000024421, -0.0000024336,0.0000024272,0.0000024219,0.0000024200,0.0000024205, -0.0000024203,0.0000024183,0.0000024132,0.0000024070,0.0000024033, -0.0000024023,0.0000024033,0.0000024059,0.0000024090,0.0000024117, -0.0000024140,0.0000024148,0.0000024139,0.0000024111,0.0000024061, -0.0000023989,0.0000023902,0.0000023827,0.0000023773,0.0000023755, -0.0000023795,0.0000023836,0.0000023846,0.0000023850,0.0000023836, -0.0000023804,0.0000023768,0.0000023721,0.0000023671,0.0000023627, -0.0000023598,0.0000023580,0.0000023573,0.0000023574,0.0000023585, -0.0000023600,0.0000023610,0.0000023623,0.0000023626,0.0000023621, -0.0000023627,0.0000023639,0.0000023655,0.0000023659,0.0000023649, -0.0000023636,0.0000023622,0.0000023606,0.0000023582,0.0000023537, -0.0000023498,0.0000023498,0.0000023508,0.0000023489,0.0000023398, -0.0000023287,0.0000023233,0.0000023227,0.0000023230,0.0000023231, -0.0000023293,0.0000023501,0.0000023729,0.0000023885,0.0000024020, -0.0000024124,0.0000024208,0.0000024322,0.0000024475,0.0000024834, -0.0000025399,0.0000025780,0.0000025816,0.0000025728,0.0000025590, -0.0000025394,0.0000025208,0.0000025126,0.0000025100,0.0000025099, -0.0000025070,0.0000024856,0.0000024618,0.0000024777,0.0000025015, -0.0000025449,0.0000026040,0.0000026328,0.0000026421,0.0000026538, -0.0000026670,0.0000026766,0.0000026820,0.0000026842,0.0000026866, -0.0000026888,0.0000026911,0.0000026924,0.0000026920,0.0000026895, -0.0000026832,0.0000026734,0.0000026613,0.0000026496,0.0000026406, -0.0000026349,0.0000026322,0.0000026331,0.0000026372,0.0000026407, -0.0000026276,0.0000026292,0.0000026295,0.0000026283,0.0000026243, -0.0000026176,0.0000026088,0.0000025983,0.0000025873,0.0000025776, -0.0000025692,0.0000025616,0.0000025563,0.0000025542,0.0000025540, -0.0000025528,0.0000025496,0.0000025439,0.0000025356,0.0000025261, -0.0000025171,0.0000025104,0.0000025064,0.0000025039,0.0000025024, -0.0000025021,0.0000025027,0.0000025037,0.0000025049,0.0000025064, -0.0000025089,0.0000025116,0.0000025140,0.0000025162,0.0000025186, -0.0000025210,0.0000025245,0.0000025289,0.0000025352,0.0000025427, -0.0000025502,0.0000025568,0.0000025624,0.0000025666,0.0000025696, -0.0000025710,0.0000025711,0.0000025699,0.0000025674,0.0000025636, -0.0000025588,0.0000025527,0.0000025457,0.0000025379,0.0000025304, -0.0000025232,0.0000025133,0.0000024973,0.0000024774,0.0000024605, -0.0000024510,0.0000024475,0.0000024471,0.0000024479,0.0000024483, -0.0000024473,0.0000024456,0.0000024437,0.0000024414,0.0000024381, -0.0000024338,0.0000024296,0.0000024268,0.0000024254,0.0000024249, -0.0000024250,0.0000024261,0.0000024263,0.0000024253,0.0000024261, -0.0000024304,0.0000024350,0.0000024399,0.0000024501,0.0000024595, -0.0000024656,0.0000024722,0.0000024801,0.0000024883,0.0000024968, -0.0000025027,0.0000025066,0.0000025097,0.0000025126,0.0000025163, -0.0000025214,0.0000025254,0.0000025267,0.0000025267,0.0000025286, -0.0000025344,0.0000025448,0.0000025590,0.0000025730,0.0000025783, -0.0000025757,0.0000025645,0.0000025523,0.0000025439,0.0000025397, -0.0000025380,0.0000025393,0.0000025462,0.0000025543,0.0000025604, -0.0000025657,0.0000025715,0.0000025785,0.0000025833,0.0000025837, -0.0000025823,0.0000025816,0.0000025768,0.0000025720,0.0000025674, -0.0000025579,0.0000025489,0.0000025425,0.0000025363,0.0000025299, -0.0000025187,0.0000025050,0.0000024994,0.0000024994,0.0000025021, -0.0000025095,0.0000025175,0.0000025209,0.0000025205,0.0000025167, -0.0000025125,0.0000025092,0.0000025067,0.0000025048,0.0000025031, -0.0000025011,0.0000025003,0.0000025027,0.0000025100,0.0000025179, -0.0000025222,0.0000025233,0.0000025248,0.0000025281,0.0000025331, -0.0000025384,0.0000025416,0.0000025418,0.0000025387,0.0000025298, -0.0000025199,0.0000025145,0.0000025104,0.0000025067,0.0000025089, -0.0000025161,0.0000025207,0.0000025209,0.0000025196,0.0000025225, -0.0000025302,0.0000025382,0.0000025407,0.0000025413,0.0000025376, -0.0000025310,0.0000025234,0.0000025155,0.0000025072,0.0000024995, -0.0000024933,0.0000024884,0.0000024840,0.0000024806,0.0000024784, -0.0000024769,0.0000024759,0.0000024744,0.0000024719,0.0000024694, -0.0000024682,0.0000024693,0.0000024720,0.0000024744,0.0000024758, -0.0000024757,0.0000024734,0.0000024694,0.0000024664,0.0000024664, -0.0000024684,0.0000024701,0.0000024720,0.0000024751,0.0000024822, -0.0000024988,0.0000025196,0.0000025281,0.0000025159,0.0000024957, -0.0000024790,0.0000024752,0.0000024757,0.0000024827,0.0000024878, -0.0000024916,0.0000024934,0.0000024933,0.0000024919,0.0000024890, -0.0000024841,0.0000024807,0.0000024831,0.0000024932,0.0000025138, -0.0000025455,0.0000025786,0.0000025998,0.0000026055,0.0000026064, -0.0000026092,0.0000026133,0.0000026176,0.0000026208,0.0000026206, -0.0000026169,0.0000026152,0.0000026171,0.0000026199,0.0000026189, -0.0000026127,0.0000026040,0.0000025978,0.0000025962,0.0000025978, -0.0000026043,0.0000026125,0.0000026213,0.0000026284,0.0000026331, -0.0000026365,0.0000026399,0.0000026446,0.0000026502,0.0000026520, -0.0000026501,0.0000026434,0.0000026342,0.0000026256,0.0000026199, -0.0000026168,0.0000026142,0.0000026111,0.0000026079,0.0000026073, -0.0000026102,0.0000026141,0.0000026170,0.0000026178,0.0000026168, -0.0000026134,0.0000026098,0.0000026052,0.0000025996,0.0000025943, -0.0000025917,0.0000025924,0.0000025936,0.0000025934,0.0000025898, -0.0000025839,0.0000025778,0.0000025726,0.0000025704,0.0000025725, -0.0000025783,0.0000025835,0.0000025866,0.0000025887,0.0000025892, -0.0000025869,0.0000025816,0.0000025734,0.0000025643,0.0000025574, -0.0000025544,0.0000025543,0.0000025553,0.0000025564,0.0000025561, -0.0000025511,0.0000025409,0.0000025283,0.0000025186,0.0000025182, -0.0000025264,0.0000025315,0.0000025301,0.0000025292,0.0000025334, -0.0000025365,0.0000025373,0.0000025396,0.0000025455,0.0000025519, -0.0000025555,0.0000025558,0.0000025531,0.0000025489,0.0000025461, -0.0000025439,0.0000025391,0.0000025303,0.0000025200,0.0000025124, -0.0000025097,0.0000025111,0.0000025161,0.0000025187,0.0000025130, -0.0000024973,0.0000024776,0.0000024646,0.0000024629,0.0000024665, -0.0000024729,0.0000024759,0.0000024728,0.0000024635,0.0000024546, -0.0000024523,0.0000024571,0.0000024643,0.0000024708,0.0000024789, -0.0000024901,0.0000025017,0.0000025134,0.0000025240,0.0000025345, -0.0000025455,0.0000025579,0.0000025721,0.0000025871,0.0000026000, -0.0000026081,0.0000026089,0.0000026051,0.0000026059,0.0000026155, -0.0000026290,0.0000026412,0.0000026526,0.0000026638,0.0000026748, -0.0000026847,0.0000026945,0.0000027087,0.0000027268,0.0000027423, -0.0000027491,0.0000027480,0.0000027420,0.0000027338,0.0000027277, -0.0000027271,0.0000027308,0.0000027342,0.0000027343,0.0000027311, -0.0000027256,0.0000027192,0.0000027118,0.0000027018,0.0000026893, -0.0000026770,0.0000026647,0.0000026572,0.0000026545,0.0000026535, -0.0000026519,0.0000026505,0.0000026502,0.0000026498,0.0000026490, -0.0000026468,0.0000026424,0.0000026361,0.0000026290,0.0000026228, -0.0000026193,0.0000026180,0.0000026173,0.0000026168,0.0000026163, -0.0000026164,0.0000026182,0.0000026210,0.0000026253,0.0000026294, -0.0000026325,0.0000026344,0.0000026329,0.0000026289,0.0000026251, -0.0000026218,0.0000026198,0.0000026187,0.0000026193,0.0000026193, -0.0000026180,0.0000026178,0.0000026182,0.0000026175,0.0000026160, -0.0000026136,0.0000026118,0.0000026134,0.0000026189,0.0000026264, -0.0000026348,0.0000026435,0.0000026541,0.0000026662,0.0000026786, -0.0000026909,0.0000027002,0.0000027045,0.0000027044,0.0000027024, -0.0000026960,0.0000026873,0.0000026783,0.0000026707,0.0000026654, -0.0000026595,0.0000026438,0.0000026130,0.0000025762,0.0000025478, -0.0000025327,0.0000025263,0.0000025237,0.0000025249,0.0000025251, -0.0000025248,0.0000025216,0.0000025182,0.0000025141,0.0000025059, -0.0000024923,0.0000024840,0.0000024829,0.0000024847,0.0000024863, -0.0000024883,0.0000024902,0.0000024909,0.0000024927,0.0000024983, -0.0000025071,0.0000025136,0.0000025225,0.0000025312,0.0000025250, -0.0000025080,0.0000025193,0.0000025892,0.0000026408,0.0000026447, -0.0000026425,0.0000026429,0.0000026423,0.0000026405,0.0000026379, -0.0000026338,0.0000026308,0.0000026283,0.0000026271,0.0000026253, -0.0000026232,0.0000026203,0.0000026120,0.0000026075,0.0000025716, -0.0000025149,0.0000024985,0.0000024953,0.0000024914,0.0000024908, -0.0000024941,0.0000025056,0.0000025230,0.0000025430,0.0000025628, -0.0000025824,0.0000026012,0.0000026150,0.0000026255,0.0000026338, -0.0000026380,0.0000026392,0.0000026383,0.0000026352,0.0000026311, -0.0000026257,0.0000026195,0.0000026133,0.0000026113,0.0000026113, -0.0000025967,0.0000025566,0.0000025176,0.0000025067,0.0000025120, -0.0000025217,0.0000025271,0.0000025283,0.0000025343,0.0000025451, -0.0000025501,0.0000025511,0.0000025542,0.0000025591,0.0000025619, -0.0000025656,0.0000025754,0.0000025926,0.0000026054,0.0000026158, -0.0000026254,0.0000026223,0.0000026107,0.0000026054,0.0000026158, -0.0000026413,0.0000026689,0.0000026912,0.0000027056,0.0000027087, -0.0000027037,0.0000026925,0.0000026866,0.0000026879,0.0000026951, -0.0000027064,0.0000027220,0.0000027394,0.0000027531,0.0000027605, -0.0000027621,0.0000027604,0.0000027532,0.0000027412,0.0000027300, -0.0000027239,0.0000027211,0.0000027165,0.0000027111,0.0000027103, -0.0000027137,0.0000027199,0.0000027249,0.0000027254,0.0000027205, -0.0000027134,0.0000027104,0.0000027143,0.0000027238,0.0000027341, -0.0000027416,0.0000027437,0.0000027424,0.0000027373,0.0000027277, -0.0000027140,0.0000027008,0.0000026936,0.0000026941,0.0000027015, -0.0000027099,0.0000027144,0.0000027146,0.0000027130,0.0000027127, -0.0000027123,0.0000027066,0.0000026939,0.0000026779,0.0000026623, -0.0000026476,0.0000026335,0.0000026210,0.0000026115,0.0000026051, -0.0000026001,0.0000025952,0.0000025904,0.0000025866,0.0000025844, -0.0000025834,0.0000025830,0.0000025828,0.0000025822,0.0000025832, -0.0000025882,0.0000025930,0.0000025957,0.0000025994,0.0000026022, -0.0000026019,0.0000026008,0.0000026003,0.0000025987,0.0000025953, -0.0000025897,0.0000025824,0.0000025755,0.0000025707,0.0000025671, -0.0000025630,0.0000025590,0.0000025548,0.0000025502,0.0000025467, -0.0000025422,0.0000025385,0.0000025407,0.0000025441,0.0000025425, -0.0000025361,0.0000025212,0.0000024927,0.0000024672,0.0000024522, -0.0000024346,0.0000024121,0.0000023949,0.0000023866,0.0000023838, -0.0000023839,0.0000023851,0.0000023898,0.0000024040,0.0000024232, -0.0000024368,0.0000024561,0.0000024947,0.0000025296,0.0000025446, -0.0000025490,0.0000025477,0.0000025400,0.0000025292,0.0000025188, -0.0000025097,0.0000025065,0.0000025072,0.0000025076,0.0000025083, -0.0000025132,0.0000025174,0.0000025161,0.0000025124,0.0000025103, -0.0000025090,0.0000025075,0.0000025052,0.0000025021,0.0000024998, -0.0000024997,0.0000025014,0.0000025041,0.0000025077,0.0000025127, -0.0000025187,0.0000025251,0.0000025302,0.0000025329,0.0000025345, -0.0000025356,0.0000025373,0.0000025393,0.0000025405,0.0000025409, -0.0000025410,0.0000025409,0.0000025395,0.0000025362,0.0000025334, -0.0000025317,0.0000025282,0.0000025243,0.0000025245,0.0000025308, -0.0000025413,0.0000025530,0.0000025662,0.0000025805,0.0000025886, -0.0000025884,0.0000025861,0.0000025859,0.0000025896,0.0000025959, -0.0000026015,0.0000026044,0.0000026051,0.0000026054,0.0000026061, -0.0000026055,0.0000026020,0.0000025983,0.0000025985,0.0000026042, -0.0000026141,0.0000026265,0.0000026404,0.0000026510,0.0000026563, -0.0000026617,0.0000026711,0.0000026803,0.0000026831,0.0000026821, -0.0000026764,0.0000026610,0.0000026391,0.0000026267,0.0000026273, -0.0000026370,0.0000026523,0.0000026632,0.0000026715,0.0000026881, -0.0000027067,0.0000027175,0.0000027253,0.0000027310,0.0000027358, -0.0000027450,0.0000027529,0.0000027543,0.0000027534,0.0000027526, -0.0000027545,0.0000027572,0.0000027595,0.0000027619,0.0000027656, -0.0000027711,0.0000027740,0.0000027730,0.0000027700,0.0000027673, -0.0000027666,0.0000027673,0.0000027682,0.0000027688,0.0000027690, -0.0000027686,0.0000027693,0.0000027725,0.0000027758,0.0000027759, -0.0000027728,0.0000027672,0.0000027588,0.0000027478,0.0000027364, -0.0000027291,0.0000027270,0.0000027276,0.0000027295,0.0000027317, -0.0000027343,0.0000027386,0.0000027446,0.0000027510,0.0000027571, -0.0000027602,0.0000027582,0.0000027507,0.0000027421,0.0000027363, -0.0000027346,0.0000027342,0.0000027317,0.0000027255,0.0000027175, -0.0000027115,0.0000027105,0.0000027106,0.0000027098,0.0000027099, -0.0000027134,0.0000027155,0.0000027080,0.0000026925,0.0000026835, -0.0000026819,0.0000026810,0.0000026787,0.0000026753,0.0000026710, -0.0000026674,0.0000026656,0.0000026645,0.0000026639,0.0000026637, -0.0000026633,0.0000026607,0.0000026540,0.0000026444,0.0000026358, -0.0000026289,0.0000026196,0.0000026065,0.0000025944,0.0000025854, -0.0000025758,0.0000025658,0.0000025585,0.0000025530,0.0000025472, -0.0000025434,0.0000025416,0.0000025385,0.0000025319,0.0000025216, -0.0000025050,0.0000024854,0.0000024749,0.0000024769,0.0000024868, -0.0000024994,0.0000025067,0.0000025059,0.0000025008,0.0000024967, -0.0000024938,0.0000024918,0.0000024869,0.0000024780,0.0000024665, -0.0000024546,0.0000024429,0.0000024324,0.0000024260,0.0000024268, -0.0000024323,0.0000024333,0.0000024271,0.0000024222,0.0000024235, -0.0000024294,0.0000024332,0.0000024374,0.0000024652,0.0000025124, -0.0000025493,0.0000025709,0.0000025981,0.0000026332,0.0000026494, -0.0000026495,0.0000026523,0.0000026557,0.0000026539,0.0000026468, -0.0000026372,0.0000026259,0.0000026165,0.0000026138,0.0000026165, -0.0000026310,0.0000026599,0.0000026988,0.0000027295,0.0000027451, -0.0000027488,0.0000027477,0.0000027468,0.0000027403,0.0000027301, -0.0000027196,0.0000027147,0.0000027171,0.0000027184,0.0000027215, -0.0000027230,0.0000027222,0.0000027188,0.0000027127,0.0000027052, -0.0000026998,0.0000026946,0.0000026851,0.0000026647,0.0000026326, -0.0000025939,0.0000025617,0.0000025405,0.0000025280,0.0000025208, -0.0000025212,0.0000025188,0.0000025187,0.0000025201,0.0000025205, -0.0000025223,0.0000025255,0.0000025303,0.0000025346,0.0000025365, -0.0000025416,0.0000025527,0.0000025657,0.0000025770,0.0000025891, -0.0000025997,0.0000026099,0.0000026141,0.0000026198,0.0000026220, -0.0000026278,0.0000026314,0.0000026341,0.0000026366,0.0000026388, -0.0000026400,0.0000026401,0.0000026388,0.0000026361,0.0000026300, -0.0000026182,0.0000025991,0.0000025754,0.0000025523,0.0000025328, -0.0000025197,0.0000025122,0.0000025097,0.0000025075,0.0000025044, -0.0000025007,0.0000024959,0.0000024907,0.0000024844,0.0000024767, -0.0000024688,0.0000024613,0.0000024532,0.0000024452,0.0000024374, -0.0000024315,0.0000024281,0.0000024277,0.0000024282,0.0000024274, -0.0000024228,0.0000024156,0.0000024056,0.0000023961,0.0000023905, -0.0000023897,0.0000023916,0.0000023961,0.0000024012,0.0000024063, -0.0000024106,0.0000024122,0.0000024110,0.0000024066,0.0000023993, -0.0000023897,0.0000023807,0.0000023751,0.0000023725,0.0000023723, -0.0000023763,0.0000023814,0.0000023828,0.0000023840,0.0000023841, -0.0000023810,0.0000023762,0.0000023708,0.0000023659,0.0000023619, -0.0000023594,0.0000023572,0.0000023541,0.0000023523,0.0000023524, -0.0000023538,0.0000023547,0.0000023566,0.0000023588,0.0000023587, -0.0000023585,0.0000023584,0.0000023590,0.0000023594,0.0000023585, -0.0000023563,0.0000023534,0.0000023507,0.0000023493,0.0000023479, -0.0000023455,0.0000023450,0.0000023475,0.0000023488,0.0000023457, -0.0000023357,0.0000023265,0.0000023229,0.0000023226,0.0000023228, -0.0000023232,0.0000023352,0.0000023594,0.0000023795,0.0000023934, -0.0000024053,0.0000024134,0.0000024218,0.0000024349,0.0000024563, -0.0000025016,0.0000025561,0.0000025801,0.0000025771,0.0000025658, -0.0000025468,0.0000025236,0.0000025106,0.0000025062,0.0000025051, -0.0000025050,0.0000024927,0.0000024647,0.0000024652,0.0000024923, -0.0000025196,0.0000025748,0.0000026214,0.0000026378,0.0000026461, -0.0000026566,0.0000026663,0.0000026741,0.0000026802,0.0000026844, -0.0000026868,0.0000026877,0.0000026865,0.0000026823,0.0000026749, -0.0000026650,0.0000026551,0.0000026460,0.0000026386,0.0000026327, -0.0000026281,0.0000026246,0.0000026233,0.0000026246,0.0000026266, -0.0000026155,0.0000026153,0.0000026152,0.0000026137,0.0000026094, -0.0000026024,0.0000025930,0.0000025830,0.0000025733,0.0000025655, -0.0000025593,0.0000025537,0.0000025501,0.0000025491,0.0000025484, -0.0000025450,0.0000025376,0.0000025264,0.0000025133,0.0000025006, -0.0000024904,0.0000024833,0.0000024790,0.0000024760,0.0000024738, -0.0000024728,0.0000024729,0.0000024740,0.0000024762,0.0000024793, -0.0000024836,0.0000024895,0.0000024961,0.0000025026,0.0000025091, -0.0000025143,0.0000025179,0.0000025202,0.0000025223,0.0000025250, -0.0000025285,0.0000025324,0.0000025364,0.0000025401,0.0000025432, -0.0000025455,0.0000025465,0.0000025462,0.0000025444,0.0000025409, -0.0000025369,0.0000025324,0.0000025274,0.0000025218,0.0000025145, -0.0000025034,0.0000024875,0.0000024693,0.0000024542,0.0000024457, -0.0000024433,0.0000024442,0.0000024453,0.0000024460,0.0000024457, -0.0000024446,0.0000024432,0.0000024423,0.0000024405,0.0000024373, -0.0000024335,0.0000024299,0.0000024276,0.0000024261,0.0000024252, -0.0000024251,0.0000024261,0.0000024267,0.0000024266,0.0000024274, -0.0000024296,0.0000024319,0.0000024348,0.0000024443,0.0000024543, -0.0000024612,0.0000024674,0.0000024757,0.0000024852,0.0000024946, -0.0000025013,0.0000025054,0.0000025083,0.0000025110,0.0000025152, -0.0000025213,0.0000025263,0.0000025276,0.0000025271,0.0000025283, -0.0000025370,0.0000025528,0.0000025688,0.0000025765,0.0000025770, -0.0000025693,0.0000025555,0.0000025438,0.0000025376,0.0000025353, -0.0000025354,0.0000025377,0.0000025455,0.0000025547,0.0000025604, -0.0000025644,0.0000025694,0.0000025757,0.0000025818,0.0000025840, -0.0000025831,0.0000025824,0.0000025799,0.0000025736,0.0000025700, -0.0000025657,0.0000025560,0.0000025476,0.0000025428,0.0000025374, -0.0000025305,0.0000025196,0.0000025072,0.0000025017,0.0000025013, -0.0000025041,0.0000025117,0.0000025187,0.0000025212,0.0000025202, -0.0000025166,0.0000025127,0.0000025097,0.0000025076,0.0000025065, -0.0000025056,0.0000025034,0.0000025010,0.0000025017,0.0000025064, -0.0000025141,0.0000025196,0.0000025209,0.0000025208,0.0000025222, -0.0000025263,0.0000025324,0.0000025376,0.0000025399,0.0000025374, -0.0000025305,0.0000025205,0.0000025150,0.0000025130,0.0000025096, -0.0000025090,0.0000025131,0.0000025199,0.0000025221,0.0000025188, -0.0000025162,0.0000025199,0.0000025292,0.0000025377,0.0000025430, -0.0000025453,0.0000025429,0.0000025387,0.0000025335,0.0000025275, -0.0000025211,0.0000025151,0.0000025094,0.0000025043,0.0000025007, -0.0000024978,0.0000024951,0.0000024932,0.0000024916,0.0000024890, -0.0000024853,0.0000024812,0.0000024783,0.0000024768,0.0000024765, -0.0000024772,0.0000024780,0.0000024771,0.0000024731,0.0000024675, -0.0000024641,0.0000024645,0.0000024663,0.0000024680,0.0000024707, -0.0000024753,0.0000024855,0.0000025034,0.0000025228,0.0000025305, -0.0000025236,0.0000025103,0.0000024990,0.0000024942,0.0000024932, -0.0000024939,0.0000024960,0.0000024978,0.0000024983,0.0000024974, -0.0000024940,0.0000024865,0.0000024765,0.0000024727,0.0000024673, -0.0000024696,0.0000024868,0.0000025212,0.0000025627,0.0000025907, -0.0000025991,0.0000026004,0.0000026050,0.0000026125,0.0000026193, -0.0000026217,0.0000026195,0.0000026159,0.0000026169,0.0000026209, -0.0000026227,0.0000026201,0.0000026118,0.0000026020,0.0000025957, -0.0000025952,0.0000025993,0.0000026058,0.0000026133,0.0000026191, -0.0000026221,0.0000026235,0.0000026248,0.0000026276,0.0000026319, -0.0000026347,0.0000026344,0.0000026312,0.0000026256,0.0000026200, -0.0000026168,0.0000026161,0.0000026156,0.0000026135,0.0000026105, -0.0000026093,0.0000026106,0.0000026140,0.0000026169,0.0000026176, -0.0000026163,0.0000026127,0.0000026089,0.0000026052,0.0000026009, -0.0000025957,0.0000025922,0.0000025920,0.0000025929,0.0000025923, -0.0000025895,0.0000025854,0.0000025809,0.0000025763,0.0000025731, -0.0000025735,0.0000025777,0.0000025828,0.0000025862,0.0000025881, -0.0000025887,0.0000025874,0.0000025829,0.0000025748,0.0000025649, -0.0000025562,0.0000025514,0.0000025503,0.0000025507,0.0000025518, -0.0000025530,0.0000025524,0.0000025471,0.0000025374,0.0000025255, -0.0000025172,0.0000025185,0.0000025300,0.0000025354,0.0000025337, -0.0000025325,0.0000025364,0.0000025381,0.0000025374,0.0000025386, -0.0000025437,0.0000025501,0.0000025548,0.0000025559,0.0000025536, -0.0000025493,0.0000025456,0.0000025419,0.0000025365,0.0000025292, -0.0000025219,0.0000025166,0.0000025145,0.0000025158,0.0000025219, -0.0000025262,0.0000025232,0.0000025061,0.0000024831,0.0000024676, -0.0000024641,0.0000024654,0.0000024722,0.0000024748,0.0000024698, -0.0000024569,0.0000024462,0.0000024437,0.0000024484,0.0000024573, -0.0000024683,0.0000024819,0.0000024962,0.0000025083,0.0000025187, -0.0000025288,0.0000025390,0.0000025498,0.0000025620,0.0000025767, -0.0000025911,0.0000026026,0.0000026074,0.0000026061,0.0000026037, -0.0000026072,0.0000026175,0.0000026285,0.0000026377,0.0000026448, -0.0000026499,0.0000026545,0.0000026630,0.0000026807,0.0000027053, -0.0000027273,0.0000027398,0.0000027422,0.0000027395,0.0000027323, -0.0000027253,0.0000027230,0.0000027249,0.0000027287,0.0000027303, -0.0000027292,0.0000027244,0.0000027173,0.0000027089,0.0000026986, -0.0000026848,0.0000026678,0.0000026497,0.0000026343,0.0000026248, -0.0000026193,0.0000026146,0.0000026099,0.0000026073,0.0000026056, -0.0000026044,0.0000026029,0.0000025998,0.0000025951,0.0000025902, -0.0000025873,0.0000025874,0.0000025906,0.0000025934,0.0000025947, -0.0000025944,0.0000025923,0.0000025889,0.0000025863,0.0000025853, -0.0000025856,0.0000025891,0.0000025964,0.0000026050,0.0000026118, -0.0000026145,0.0000026134,0.0000026106,0.0000026069,0.0000026047, -0.0000026045,0.0000026046,0.0000026049,0.0000026063,0.0000026068, -0.0000026057,0.0000026039,0.0000026012,0.0000025997,0.0000026025, -0.0000026084,0.0000026160,0.0000026231,0.0000026289,0.0000026348, -0.0000026416,0.0000026498,0.0000026612,0.0000026759,0.0000026907, -0.0000027013,0.0000027032,0.0000027021,0.0000026959,0.0000026860, -0.0000026752,0.0000026668,0.0000026613,0.0000026536,0.0000026363, -0.0000026067,0.0000025736,0.0000025492,0.0000025367,0.0000025308, -0.0000025270,0.0000025237,0.0000025205,0.0000025154,0.0000025120, -0.0000025108,0.0000025089,0.0000025023,0.0000024946,0.0000024900, -0.0000024891,0.0000024894,0.0000024898,0.0000024900,0.0000024893, -0.0000024896,0.0000024945,0.0000025035,0.0000025122,0.0000025201, -0.0000025296,0.0000025275,0.0000025113,0.0000025168,0.0000025865, -0.0000026415,0.0000026459,0.0000026434,0.0000026431,0.0000026417, -0.0000026397,0.0000026375,0.0000026347,0.0000026314,0.0000026284, -0.0000026274,0.0000026255,0.0000026226,0.0000026186,0.0000026105, -0.0000026042,0.0000025552,0.0000025043,0.0000024984,0.0000024950, -0.0000024909,0.0000024884,0.0000024863,0.0000024859,0.0000024895, -0.0000024972,0.0000025143,0.0000025399,0.0000025714,0.0000025969, -0.0000026158,0.0000026283,0.0000026339,0.0000026353,0.0000026342, -0.0000026308,0.0000026264,0.0000026212,0.0000026157,0.0000026120, -0.0000026115,0.0000026029,0.0000025679,0.0000025232,0.0000025032, -0.0000025058,0.0000025147,0.0000025223,0.0000025242,0.0000025239, -0.0000025304,0.0000025417,0.0000025461,0.0000025458,0.0000025480, -0.0000025526,0.0000025550,0.0000025577,0.0000025648,0.0000025794, -0.0000025948,0.0000026065,0.0000026181,0.0000026212,0.0000026132, -0.0000026028,0.0000026012,0.0000026148,0.0000026393,0.0000026675, -0.0000026920,0.0000027055,0.0000027055,0.0000026960,0.0000026871, -0.0000026856,0.0000026899,0.0000026978,0.0000027100,0.0000027273, -0.0000027437,0.0000027528,0.0000027537,0.0000027506,0.0000027409, -0.0000027272,0.0000027170,0.0000027136,0.0000027128,0.0000027104, -0.0000027078,0.0000027088,0.0000027136,0.0000027200,0.0000027258, -0.0000027272,0.0000027248,0.0000027173,0.0000027115,0.0000027111, -0.0000027151,0.0000027211,0.0000027266,0.0000027284,0.0000027262, -0.0000027202,0.0000027109,0.0000027010,0.0000026942,0.0000026930, -0.0000026964,0.0000027034,0.0000027096,0.0000027111,0.0000027077, -0.0000027024,0.0000026986,0.0000026958,0.0000026899,0.0000026790, -0.0000026657,0.0000026531,0.0000026414,0.0000026302,0.0000026204, -0.0000026122,0.0000026046,0.0000025966,0.0000025890,0.0000025826, -0.0000025781,0.0000025753,0.0000025739,0.0000025737,0.0000025746, -0.0000025764,0.0000025772,0.0000025784,0.0000025843,0.0000025901, -0.0000025909,0.0000025914,0.0000025930,0.0000025934,0.0000025938, -0.0000025948,0.0000025947,0.0000025919,0.0000025864,0.0000025796, -0.0000025733,0.0000025681,0.0000025636,0.0000025597,0.0000025556, -0.0000025521,0.0000025505,0.0000025468,0.0000025422,0.0000025435, -0.0000025473,0.0000025464,0.0000025400,0.0000025231,0.0000024931, -0.0000024691,0.0000024548,0.0000024345,0.0000024100,0.0000023926, -0.0000023835,0.0000023784,0.0000023769,0.0000023783,0.0000023805, -0.0000023848,0.0000023999,0.0000024226,0.0000024395,0.0000024629, -0.0000025039,0.0000025358,0.0000025470,0.0000025485,0.0000025455, -0.0000025372,0.0000025264,0.0000025146,0.0000025065,0.0000025062, -0.0000025085,0.0000025089,0.0000025107,0.0000025151,0.0000025167, -0.0000025133,0.0000025088,0.0000025056,0.0000025032,0.0000025015, -0.0000024993,0.0000024965,0.0000024952,0.0000024961,0.0000024985, -0.0000025019,0.0000025064,0.0000025128,0.0000025205,0.0000025276, -0.0000025331,0.0000025373,0.0000025403,0.0000025422,0.0000025439, -0.0000025457,0.0000025464,0.0000025459,0.0000025450,0.0000025439, -0.0000025412,0.0000025372,0.0000025345,0.0000025330,0.0000025301, -0.0000025267,0.0000025268,0.0000025322,0.0000025418,0.0000025540, -0.0000025689,0.0000025825,0.0000025870,0.0000025858,0.0000025837, -0.0000025847,0.0000025897,0.0000025961,0.0000026006,0.0000026024, -0.0000026026,0.0000026027,0.0000026028,0.0000026019,0.0000025993, -0.0000025978,0.0000026003,0.0000026079,0.0000026185,0.0000026310, -0.0000026449,0.0000026562,0.0000026620,0.0000026668,0.0000026754, -0.0000026837,0.0000026863,0.0000026856,0.0000026811,0.0000026663, -0.0000026424,0.0000026265,0.0000026267,0.0000026373,0.0000026545, -0.0000026678,0.0000026777,0.0000026932,0.0000027072,0.0000027124, -0.0000027176,0.0000027237,0.0000027294,0.0000027373,0.0000027438, -0.0000027468,0.0000027490,0.0000027512,0.0000027548,0.0000027583, -0.0000027598,0.0000027605,0.0000027644,0.0000027704,0.0000027737, -0.0000027728,0.0000027702,0.0000027675,0.0000027666,0.0000027666, -0.0000027669,0.0000027676,0.0000027686,0.0000027708,0.0000027758, -0.0000027826,0.0000027852,0.0000027820,0.0000027751,0.0000027668, -0.0000027562,0.0000027430,0.0000027321,0.0000027275,0.0000027269, -0.0000027277,0.0000027296,0.0000027322,0.0000027340,0.0000027354, -0.0000027389,0.0000027444,0.0000027517,0.0000027571,0.0000027570, -0.0000027502,0.0000027397,0.0000027313,0.0000027274,0.0000027267, -0.0000027258,0.0000027222,0.0000027162,0.0000027109,0.0000027074, -0.0000027056,0.0000027053,0.0000027070,0.0000027116,0.0000027141, -0.0000027051,0.0000026887,0.0000026806,0.0000026808,0.0000026815, -0.0000026814,0.0000026798,0.0000026753,0.0000026700,0.0000026666, -0.0000026654,0.0000026649,0.0000026647,0.0000026646,0.0000026640, -0.0000026609,0.0000026535,0.0000026437,0.0000026359,0.0000026294, -0.0000026185,0.0000026035,0.0000025902,0.0000025802,0.0000025710, -0.0000025638,0.0000025593,0.0000025553,0.0000025511,0.0000025478, -0.0000025452,0.0000025411,0.0000025338,0.0000025211,0.0000024994, -0.0000024792,0.0000024744,0.0000024826,0.0000024961,0.0000025055, -0.0000025059,0.0000025010,0.0000024962,0.0000024932,0.0000024913, -0.0000024879,0.0000024805,0.0000024698,0.0000024582,0.0000024467, -0.0000024360,0.0000024280,0.0000024254,0.0000024283,0.0000024310, -0.0000024274,0.0000024196,0.0000024180,0.0000024248,0.0000024310, -0.0000024308,0.0000024425,0.0000024834,0.0000025325,0.0000025626, -0.0000025807,0.0000026069,0.0000026346,0.0000026431,0.0000026431, -0.0000026456,0.0000026463,0.0000026442,0.0000026380,0.0000026236, -0.0000026051,0.0000025998,0.0000026024,0.0000026151,0.0000026396, -0.0000026780,0.0000027172,0.0000027402,0.0000027479,0.0000027484, -0.0000027484,0.0000027465,0.0000027363,0.0000027242,0.0000027166, -0.0000027167,0.0000027168,0.0000027183,0.0000027190,0.0000027182, -0.0000027150,0.0000027098,0.0000027036,0.0000026978,0.0000026884, -0.0000026678,0.0000026308,0.0000025870,0.0000025497,0.0000025293, -0.0000025243,0.0000025214,0.0000025203,0.0000025224,0.0000025224, -0.0000025221,0.0000025221,0.0000025215,0.0000025212,0.0000025193, -0.0000025178,0.0000025168,0.0000025130,0.0000025088,0.0000025089, -0.0000025122,0.0000025178,0.0000025243,0.0000025356,0.0000025515, -0.0000025689,0.0000025845,0.0000026007,0.0000026136,0.0000026246, -0.0000026320,0.0000026366,0.0000026392,0.0000026388,0.0000026369, -0.0000026323,0.0000026237,0.0000026105,0.0000025910,0.0000025656, -0.0000025390,0.0000025214,0.0000025130,0.0000025120,0.0000025119, -0.0000025107,0.0000025088,0.0000025051,0.0000025009,0.0000024967, -0.0000024923,0.0000024874,0.0000024809,0.0000024731,0.0000024658, -0.0000024587,0.0000024514,0.0000024446,0.0000024392,0.0000024356, -0.0000024342,0.0000024319,0.0000024299,0.0000024238,0.0000024139, -0.0000024007,0.0000023872,0.0000023775,0.0000023742,0.0000023757, -0.0000023809,0.0000023883,0.0000023958,0.0000024028,0.0000024079, -0.0000024092,0.0000024069,0.0000024006,0.0000023921,0.0000023829, -0.0000023738,0.0000023686,0.0000023686,0.0000023695,0.0000023742, -0.0000023800,0.0000023813,0.0000023822,0.0000023828,0.0000023805, -0.0000023758,0.0000023705,0.0000023654,0.0000023616,0.0000023585, -0.0000023542,0.0000023490,0.0000023460,0.0000023457,0.0000023473, -0.0000023491,0.0000023517,0.0000023548,0.0000023572,0.0000023574, -0.0000023551,0.0000023524,0.0000023505,0.0000023485,0.0000023459, -0.0000023425,0.0000023395,0.0000023381,0.0000023382,0.0000023384, -0.0000023384,0.0000023407,0.0000023455,0.0000023473,0.0000023426, -0.0000023327,0.0000023258,0.0000023232,0.0000023231,0.0000023232, -0.0000023263,0.0000023436,0.0000023679,0.0000023847,0.0000023966, -0.0000024063,0.0000024124,0.0000024224,0.0000024384,0.0000024684, -0.0000025219,0.0000025678,0.0000025780,0.0000025720,0.0000025538, -0.0000025277,0.0000025095,0.0000025020,0.0000024998,0.0000024999, -0.0000024959,0.0000024720,0.0000024583,0.0000024822,0.0000025043, -0.0000025409,0.0000025965,0.0000026293,0.0000026404,0.0000026480, -0.0000026553,0.0000026620,0.0000026681,0.0000026721,0.0000026732, -0.0000026720,0.0000026689,0.0000026642,0.0000026578,0.0000026512, -0.0000026456,0.0000026404,0.0000026354,0.0000026312,0.0000026275, -0.0000026236,0.0000026201,0.0000026184,0.0000026174,0.0000026100, -0.0000026068,0.0000026047,0.0000026010,0.0000025954,0.0000025884, -0.0000025802,0.0000025722,0.0000025653,0.0000025600,0.0000025552, -0.0000025497,0.0000025454,0.0000025425,0.0000025386,0.0000025305, -0.0000025173,0.0000025022,0.0000024881,0.0000024765,0.0000024679, -0.0000024617,0.0000024572,0.0000024537,0.0000024510,0.0000024490, -0.0000024478,0.0000024475,0.0000024481,0.0000024498,0.0000024524, -0.0000024567,0.0000024632,0.0000024709,0.0000024798,0.0000024892, -0.0000024973,0.0000025041,0.0000025097,0.0000025140,0.0000025168, -0.0000025187,0.0000025199,0.0000025210,0.0000025222,0.0000025232, -0.0000025238,0.0000025238,0.0000025228,0.0000025208,0.0000025184, -0.0000025152,0.0000025100,0.0000025017,0.0000024894,0.0000024737, -0.0000024577,0.0000024457,0.0000024395,0.0000024379,0.0000024397, -0.0000024420,0.0000024433,0.0000024432,0.0000024430,0.0000024434, -0.0000024434,0.0000024427,0.0000024403,0.0000024367,0.0000024337, -0.0000024317,0.0000024295,0.0000024273,0.0000024258,0.0000024253, -0.0000024262,0.0000024274,0.0000024283,0.0000024285,0.0000024290, -0.0000024289,0.0000024295,0.0000024384,0.0000024488,0.0000024562, -0.0000024625,0.0000024716,0.0000024823,0.0000024930,0.0000025005, -0.0000025050,0.0000025074,0.0000025090,0.0000025127,0.0000025198, -0.0000025267,0.0000025291,0.0000025293,0.0000025326,0.0000025441, -0.0000025609,0.0000025722,0.0000025761,0.0000025715,0.0000025603, -0.0000025465,0.0000025362,0.0000025315,0.0000025316,0.0000025332, -0.0000025364,0.0000025447,0.0000025546,0.0000025605,0.0000025638, -0.0000025677,0.0000025737,0.0000025797,0.0000025831,0.0000025833, -0.0000025827,0.0000025819,0.0000025767,0.0000025707,0.0000025685, -0.0000025640,0.0000025543,0.0000025471,0.0000025433,0.0000025376, -0.0000025302,0.0000025203,0.0000025094,0.0000025041,0.0000025035, -0.0000025065,0.0000025143,0.0000025200,0.0000025216,0.0000025204, -0.0000025171,0.0000025137,0.0000025112,0.0000025097,0.0000025092, -0.0000025088,0.0000025073,0.0000025045,0.0000025030,0.0000025048, -0.0000025110,0.0000025170,0.0000025187,0.0000025179,0.0000025174, -0.0000025192,0.0000025238,0.0000025296,0.0000025338,0.0000025337, -0.0000025280,0.0000025199,0.0000025151,0.0000025147,0.0000025135, -0.0000025108,0.0000025105,0.0000025162,0.0000025214,0.0000025204, -0.0000025152,0.0000025137,0.0000025187,0.0000025282,0.0000025379, -0.0000025449,0.0000025475,0.0000025465,0.0000025427,0.0000025381, -0.0000025336,0.0000025291,0.0000025242,0.0000025196,0.0000025164, -0.0000025135,0.0000025104,0.0000025086,0.0000025080,0.0000025066, -0.0000025036,0.0000024991,0.0000024932,0.0000024864,0.0000024805, -0.0000024777,0.0000024780,0.0000024790,0.0000024769,0.0000024711, -0.0000024649,0.0000024623,0.0000024628,0.0000024643,0.0000024667, -0.0000024707,0.0000024768,0.0000024880,0.0000025053,0.0000025221, -0.0000025280,0.0000025303,0.0000025271,0.0000025245,0.0000025244, -0.0000025264,0.0000025287,0.0000025303,0.0000025308,0.0000025305, -0.0000025276,0.0000025203,0.0000025086,0.0000024960,0.0000024823, -0.0000024697,0.0000024670,0.0000024763,0.0000025077,0.0000025523, -0.0000025838,0.0000025933,0.0000025963,0.0000026048,0.0000026155, -0.0000026210,0.0000026208,0.0000026183,0.0000026180,0.0000026213, -0.0000026247,0.0000026245,0.0000026193,0.0000026109,0.0000026026, -0.0000025973,0.0000025968,0.0000026000,0.0000026064,0.0000026122, -0.0000026152,0.0000026161,0.0000026161,0.0000026168,0.0000026195, -0.0000026231,0.0000026252,0.0000026251,0.0000026229,0.0000026200, -0.0000026182,0.0000026181,0.0000026178,0.0000026148,0.0000026101, -0.0000026070,0.0000026075,0.0000026105,0.0000026137,0.0000026150, -0.0000026142,0.0000026112,0.0000026074,0.0000026042,0.0000026007, -0.0000025961,0.0000025923,0.0000025911,0.0000025915,0.0000025909, -0.0000025885,0.0000025853,0.0000025820,0.0000025788,0.0000025761, -0.0000025755,0.0000025778,0.0000025815,0.0000025844,0.0000025861, -0.0000025871,0.0000025866,0.0000025829,0.0000025751,0.0000025649, -0.0000025555,0.0000025496,0.0000025476,0.0000025480,0.0000025492, -0.0000025509,0.0000025514,0.0000025498,0.0000025441,0.0000025343, -0.0000025234,0.0000025170,0.0000025200,0.0000025333,0.0000025390, -0.0000025352,0.0000025339,0.0000025366,0.0000025365,0.0000025344, -0.0000025349,0.0000025404,0.0000025479,0.0000025530,0.0000025541, -0.0000025529,0.0000025496,0.0000025450,0.0000025399,0.0000025345, -0.0000025290,0.0000025241,0.0000025209,0.0000025199,0.0000025217, -0.0000025273,0.0000025327,0.0000025315,0.0000025169,0.0000024922, -0.0000024715,0.0000024636,0.0000024640,0.0000024702,0.0000024725, -0.0000024664,0.0000024517,0.0000024401,0.0000024387,0.0000024461, -0.0000024596,0.0000024753,0.0000024918,0.0000025058,0.0000025178, -0.0000025288,0.0000025384,0.0000025473,0.0000025575,0.0000025693, -0.0000025825,0.0000025952,0.0000026040,0.0000026057,0.0000026026, -0.0000026014,0.0000026061,0.0000026142,0.0000026220,0.0000026273, -0.0000026291,0.0000026295,0.0000026313,0.0000026436,0.0000026697, -0.0000026998,0.0000027212,0.0000027302,0.0000027308,0.0000027261, -0.0000027196,0.0000027160,0.0000027160,0.0000027173,0.0000027175, -0.0000027155,0.0000027104,0.0000027019,0.0000026913,0.0000026798, -0.0000026666,0.0000026503,0.0000026321,0.0000026155,0.0000026042, -0.0000025978,0.0000025930,0.0000025883,0.0000025844,0.0000025816, -0.0000025796,0.0000025773,0.0000025735,0.0000025681,0.0000025625, -0.0000025595,0.0000025601,0.0000025641,0.0000025676,0.0000025706, -0.0000025734,0.0000025745,0.0000025735,0.0000025710,0.0000025677, -0.0000025639,0.0000025600,0.0000025589,0.0000025618,0.0000025677, -0.0000025746,0.0000025808,0.0000025849,0.0000025863,0.0000025845, -0.0000025817,0.0000025791,0.0000025774,0.0000025778,0.0000025796, -0.0000025808,0.0000025803,0.0000025794,0.0000025772,0.0000025759, -0.0000025791,0.0000025865,0.0000025973,0.0000026080,0.0000026165, -0.0000026225,0.0000026265,0.0000026286,0.0000026332,0.0000026454, -0.0000026638,0.0000026831,0.0000026970,0.0000027033,0.0000027016, -0.0000026939,0.0000026822,0.0000026713,0.0000026632,0.0000026568, -0.0000026487,0.0000026314,0.0000026035,0.0000025737,0.0000025530, -0.0000025424,0.0000025364,0.0000025303,0.0000025229,0.0000025151, -0.0000025091,0.0000025060,0.0000025078,0.0000025092,0.0000025063, -0.0000025000,0.0000024954,0.0000024936,0.0000024926,0.0000024900, -0.0000024869,0.0000024858,0.0000024888,0.0000024972,0.0000025082, -0.0000025171,0.0000025270,0.0000025288,0.0000025139,0.0000025152, -0.0000025820,0.0000026411,0.0000026462,0.0000026438,0.0000026427, -0.0000026403,0.0000026385,0.0000026371,0.0000026350,0.0000026313, -0.0000026280,0.0000026275,0.0000026259,0.0000026221,0.0000026175, -0.0000026096,0.0000026020,0.0000025470,0.0000025008,0.0000024992, -0.0000024946,0.0000024897,0.0000024872,0.0000024854,0.0000024849, -0.0000024831,0.0000024801,0.0000024829,0.0000024967,0.0000025237, -0.0000025533,0.0000025818,0.0000026046,0.0000026189,0.0000026260, -0.0000026279,0.0000026261,0.0000026224,0.0000026180,0.0000026140, -0.0000026114,0.0000026061,0.0000025811,0.0000025363,0.0000025056, -0.0000025022,0.0000025099,0.0000025185,0.0000025216,0.0000025211, -0.0000025205,0.0000025271,0.0000025383,0.0000025423,0.0000025405, -0.0000025414,0.0000025458,0.0000025485,0.0000025504,0.0000025548, -0.0000025650,0.0000025827,0.0000025971,0.0000026078,0.0000026161, -0.0000026152,0.0000026052,0.0000025968,0.0000025970,0.0000026108, -0.0000026367,0.0000026673,0.0000026918,0.0000027020,0.0000026981, -0.0000026902,0.0000026856,0.0000026870,0.0000026923,0.0000027013, -0.0000027166,0.0000027336,0.0000027430,0.0000027436,0.0000027389, -0.0000027283,0.0000027158,0.0000027082,0.0000027073,0.0000027078, -0.0000027059,0.0000027039,0.0000027051,0.0000027097,0.0000027157, -0.0000027215,0.0000027251,0.0000027244,0.0000027200,0.0000027156, -0.0000027145,0.0000027155,0.0000027174,0.0000027191,0.0000027193, -0.0000027161,0.0000027108,0.0000027040,0.0000026985,0.0000026945, -0.0000026945,0.0000026983,0.0000027040,0.0000027071,0.0000027059, -0.0000027004,0.0000026933,0.0000026866,0.0000026807,0.0000026741, -0.0000026656,0.0000026564,0.0000026475,0.0000026388,0.0000026303, -0.0000026219,0.0000026127,0.0000026021,0.0000025913,0.0000025822, -0.0000025753,0.0000025702,0.0000025670,0.0000025650,0.0000025645, -0.0000025652,0.0000025677,0.0000025707,0.0000025719,0.0000025732, -0.0000025801,0.0000025861,0.0000025849,0.0000025829,0.0000025840, -0.0000025861,0.0000025877,0.0000025893,0.0000025897,0.0000025874, -0.0000025823,0.0000025760,0.0000025701,0.0000025646,0.0000025597, -0.0000025559,0.0000025539,0.0000025537,0.0000025503,0.0000025452, -0.0000025462,0.0000025503,0.0000025497,0.0000025433,0.0000025250, -0.0000024940,0.0000024710,0.0000024574,0.0000024362,0.0000024108, -0.0000023933,0.0000023826,0.0000023722,0.0000023646,0.0000023646, -0.0000023705,0.0000023760,0.0000023819,0.0000024001,0.0000024257, -0.0000024451,0.0000024740,0.0000025157,0.0000025413,0.0000025478, -0.0000025473,0.0000025427,0.0000025340,0.0000025218,0.0000025091, -0.0000025045,0.0000025074,0.0000025105,0.0000025109,0.0000025123, -0.0000025146,0.0000025135,0.0000025087,0.0000025039,0.0000025003, -0.0000024980,0.0000024956,0.0000024922,0.0000024890,0.0000024882, -0.0000024893,0.0000024927,0.0000024975,0.0000025040,0.0000025122, -0.0000025210,0.0000025291,0.0000025356,0.0000025403,0.0000025434, -0.0000025455,0.0000025474,0.0000025489,0.0000025487,0.0000025466, -0.0000025444,0.0000025424,0.0000025394,0.0000025361,0.0000025347, -0.0000025343,0.0000025318,0.0000025288,0.0000025288,0.0000025333, -0.0000025426,0.0000025560,0.0000025718,0.0000025835,0.0000025857, -0.0000025835,0.0000025828,0.0000025851,0.0000025901,0.0000025950, -0.0000025978,0.0000025984,0.0000025980,0.0000025974,0.0000025969, -0.0000025964,0.0000025961,0.0000025980,0.0000026043,0.0000026142, -0.0000026250,0.0000026367,0.0000026498,0.0000026613,0.0000026680, -0.0000026723,0.0000026788,0.0000026858,0.0000026888,0.0000026883, -0.0000026833,0.0000026686,0.0000026439,0.0000026265,0.0000026270, -0.0000026396,0.0000026593,0.0000026749,0.0000026858,0.0000026986, -0.0000027065,0.0000027074,0.0000027106,0.0000027161,0.0000027209, -0.0000027270,0.0000027333,0.0000027387,0.0000027432,0.0000027479, -0.0000027535,0.0000027585,0.0000027604,0.0000027615,0.0000027657, -0.0000027712,0.0000027746,0.0000027739,0.0000027709,0.0000027684, -0.0000027675,0.0000027673,0.0000027675,0.0000027684,0.0000027702, -0.0000027745,0.0000027825,0.0000027909,0.0000027922,0.0000027865, -0.0000027767,0.0000027657,0.0000027533,0.0000027404,0.0000027310, -0.0000027277,0.0000027276,0.0000027283,0.0000027308,0.0000027336, -0.0000027336,0.0000027328,0.0000027346,0.0000027386,0.0000027455, -0.0000027526,0.0000027547,0.0000027496,0.0000027383,0.0000027271, -0.0000027205,0.0000027181,0.0000027179,0.0000027163,0.0000027129, -0.0000027083,0.0000027039,0.0000027018,0.0000027021,0.0000027046, -0.0000027096,0.0000027121,0.0000027020,0.0000026847,0.0000026774, -0.0000026791,0.0000026820,0.0000026845,0.0000026850,0.0000026819, -0.0000026761,0.0000026707,0.0000026673,0.0000026660,0.0000026660, -0.0000026663,0.0000026662,0.0000026654,0.0000026618,0.0000026537, -0.0000026436,0.0000026360,0.0000026283,0.0000026144,0.0000025976, -0.0000025845,0.0000025752,0.0000025679,0.0000025635,0.0000025611, -0.0000025585,0.0000025549,0.0000025513,0.0000025480,0.0000025429, -0.0000025333,0.0000025133,0.0000024870,0.0000024761,0.0000024804, -0.0000024941,0.0000025036,0.0000025046,0.0000025002,0.0000024952, -0.0000024922,0.0000024903,0.0000024883,0.0000024819,0.0000024717, -0.0000024601,0.0000024489,0.0000024381,0.0000024298,0.0000024245, -0.0000024239,0.0000024274,0.0000024264,0.0000024182,0.0000024134, -0.0000024184,0.0000024276,0.0000024290,0.0000024288,0.0000024551, -0.0000025076,0.0000025510,0.0000025712,0.0000025855,0.0000026115, -0.0000026331,0.0000026361,0.0000026352,0.0000026379,0.0000026399, -0.0000026374,0.0000026205,0.0000025902,0.0000025771,0.0000025817, -0.0000025988,0.0000026218,0.0000026558,0.0000026998,0.0000027324, -0.0000027455,0.0000027482,0.0000027486,0.0000027493,0.0000027430, -0.0000027300,0.0000027200,0.0000027174,0.0000027157,0.0000027150, -0.0000027151,0.0000027145,0.0000027122,0.0000027079,0.0000027013, -0.0000026918,0.0000026744,0.0000026405,0.0000025936,0.0000025546, -0.0000025354,0.0000025293,0.0000025283,0.0000025291,0.0000025291, -0.0000025301,0.0000025295,0.0000025288,0.0000025274,0.0000025259, -0.0000025229,0.0000025179,0.0000025111,0.0000025047,0.0000024993, -0.0000024950,0.0000024920,0.0000024908,0.0000024923,0.0000024943, -0.0000024978,0.0000025035,0.0000025123,0.0000025239,0.0000025361, -0.0000025525,0.0000025702,0.0000025857,0.0000025978,0.0000026050, -0.0000026076,0.0000026063,0.0000026005,0.0000025900,0.0000025746, -0.0000025547,0.0000025329,0.0000025151,0.0000025075,0.0000025099, -0.0000025117,0.0000025127,0.0000025088,0.0000025015,0.0000024935, -0.0000024869,0.0000024831,0.0000024815,0.0000024806,0.0000024785, -0.0000024745,0.0000024692,0.0000024632,0.0000024568,0.0000024503, -0.0000024442,0.0000024393,0.0000024354,0.0000024315,0.0000024255, -0.0000024157,0.0000024026,0.0000023876,0.0000023732,0.0000023628, -0.0000023593,0.0000023612,0.0000023672,0.0000023757,0.0000023850, -0.0000023935,0.0000024004,0.0000024044,0.0000024044,0.0000024001, -0.0000023925,0.0000023845,0.0000023773,0.0000023699,0.0000023651, -0.0000023651,0.0000023669,0.0000023720,0.0000023777,0.0000023787, -0.0000023785,0.0000023792,0.0000023782,0.0000023750,0.0000023703, -0.0000023648,0.0000023604,0.0000023558,0.0000023496,0.0000023436, -0.0000023401,0.0000023394,0.0000023406,0.0000023431,0.0000023466, -0.0000023501,0.0000023535,0.0000023546,0.0000023527,0.0000023482, -0.0000023429,0.0000023382,0.0000023342,0.0000023306,0.0000023277, -0.0000023262,0.0000023264,0.0000023284,0.0000023304,0.0000023322, -0.0000023374,0.0000023440,0.0000023454,0.0000023390,0.0000023308, -0.0000023263,0.0000023246,0.0000023243,0.0000023243,0.0000023318, -0.0000023537,0.0000023756,0.0000023887,0.0000023983,0.0000024051, -0.0000024109,0.0000024239,0.0000024453,0.0000024868,0.0000025433, -0.0000025744,0.0000025760,0.0000025603,0.0000025326,0.0000025097, -0.0000024981,0.0000024939,0.0000024950,0.0000024951,0.0000024797, -0.0000024557,0.0000024665,0.0000024939,0.0000025135,0.0000025586, -0.0000026077,0.0000026317,0.0000026404,0.0000026457,0.0000026500, -0.0000026538,0.0000026560,0.0000026558,0.0000026542,0.0000026526, -0.0000026505,0.0000026471,0.0000026429,0.0000026387,0.0000026342, -0.0000026297,0.0000026260,0.0000026232,0.0000026205,0.0000026174, -0.0000026154,0.0000026139,0.0000026060,0.0000026030,0.0000026004, -0.0000025952,0.0000025883,0.0000025814,0.0000025747,0.0000025685, -0.0000025631,0.0000025578,0.0000025514,0.0000025444,0.0000025382, -0.0000025317,0.0000025221,0.0000025087,0.0000024937,0.0000024800, -0.0000024677,0.0000024573,0.0000024497,0.0000024441,0.0000024395, -0.0000024361,0.0000024341,0.0000024330,0.0000024320,0.0000024316, -0.0000024317,0.0000024322,0.0000024328,0.0000024341,0.0000024371, -0.0000024419,0.0000024483,0.0000024562,0.0000024643,0.0000024716, -0.0000024787,0.0000024857,0.0000024920,0.0000024971,0.0000025005, -0.0000025027,0.0000025042,0.0000025051,0.0000025054,0.0000025049, -0.0000025036,0.0000025013,0.0000024976,0.0000024918,0.0000024826, -0.0000024701,0.0000024561,0.0000024436,0.0000024352,0.0000024318, -0.0000024324,0.0000024347,0.0000024376,0.0000024396,0.0000024409, -0.0000024419,0.0000024431,0.0000024447,0.0000024455,0.0000024443, -0.0000024410,0.0000024371,0.0000024351,0.0000024341,0.0000024314, -0.0000024287,0.0000024269,0.0000024259,0.0000024267,0.0000024284, -0.0000024296,0.0000024289,0.0000024276,0.0000024252,0.0000024248, -0.0000024323,0.0000024430,0.0000024508,0.0000024574,0.0000024677, -0.0000024801,0.0000024920,0.0000024999,0.0000025052,0.0000025076, -0.0000025082,0.0000025108,0.0000025183,0.0000025273,0.0000025319, -0.0000025347,0.0000025413,0.0000025526,0.0000025646,0.0000025711, -0.0000025694,0.0000025615,0.0000025500,0.0000025386,0.0000025302, -0.0000025269,0.0000025281,0.0000025314,0.0000025356,0.0000025439, -0.0000025540,0.0000025603,0.0000025631,0.0000025665,0.0000025717, -0.0000025776,0.0000025818,0.0000025831,0.0000025828,0.0000025824, -0.0000025798,0.0000025730,0.0000025684,0.0000025672,0.0000025622, -0.0000025532,0.0000025472,0.0000025432,0.0000025368,0.0000025296, -0.0000025212,0.0000025118,0.0000025064,0.0000025056,0.0000025091, -0.0000025167,0.0000025211,0.0000025217,0.0000025204,0.0000025174, -0.0000025145,0.0000025128,0.0000025121,0.0000025120,0.0000025120, -0.0000025111,0.0000025087,0.0000025056,0.0000025055,0.0000025092, -0.0000025142,0.0000025161,0.0000025152,0.0000025133,0.0000025127, -0.0000025148,0.0000025193,0.0000025241,0.0000025262,0.0000025232, -0.0000025178,0.0000025152,0.0000025158,0.0000025166,0.0000025147, -0.0000025116,0.0000025128,0.0000025175,0.0000025202,0.0000025165, -0.0000025122,0.0000025117,0.0000025172,0.0000025266,0.0000025368, -0.0000025452,0.0000025471,0.0000025463,0.0000025426,0.0000025377, -0.0000025331,0.0000025287,0.0000025254,0.0000025235,0.0000025213, -0.0000025188,0.0000025177,0.0000025178,0.0000025174,0.0000025159, -0.0000025134,0.0000025082,0.0000024993,0.0000024885,0.0000024804, -0.0000024782,0.0000024790,0.0000024787,0.0000024752,0.0000024686, -0.0000024629,0.0000024606,0.0000024613,0.0000024635,0.0000024664, -0.0000024706,0.0000024776,0.0000024893,0.0000025041,0.0000025167, -0.0000025249,0.0000025291,0.0000025299,0.0000025324,0.0000025370, -0.0000025406,0.0000025434,0.0000025462,0.0000025472,0.0000025466, -0.0000025432,0.0000025359,0.0000025252,0.0000025109,0.0000024929, -0.0000024746,0.0000024638,0.0000024704,0.0000025027,0.0000025483, -0.0000025798,0.0000025910,0.0000025982,0.0000026094,0.0000026180, -0.0000026203,0.0000026197,0.0000026200,0.0000026224,0.0000026252, -0.0000026260,0.0000026236,0.0000026183,0.0000026118,0.0000026063, -0.0000026034,0.0000026027,0.0000026054,0.0000026082,0.0000026099, -0.0000026104,0.0000026102,0.0000026098,0.0000026107,0.0000026142, -0.0000026175,0.0000026195,0.0000026196,0.0000026187,0.0000026176, -0.0000026166,0.0000026152,0.0000026125,0.0000026083,0.0000026050, -0.0000026044,0.0000026062,0.0000026091,0.0000026111,0.0000026109, -0.0000026086,0.0000026053,0.0000026022,0.0000025992,0.0000025956, -0.0000025925,0.0000025915,0.0000025917,0.0000025910,0.0000025888, -0.0000025855,0.0000025822,0.0000025793,0.0000025771,0.0000025764, -0.0000025779,0.0000025807,0.0000025830,0.0000025842,0.0000025848, -0.0000025845,0.0000025810,0.0000025737,0.0000025640,0.0000025549, -0.0000025490,0.0000025465,0.0000025466,0.0000025484,0.0000025505, -0.0000025517,0.0000025514,0.0000025486,0.0000025411,0.0000025306, -0.0000025211,0.0000025163,0.0000025213,0.0000025350,0.0000025404, -0.0000025358,0.0000025333,0.0000025335,0.0000025319,0.0000025299, -0.0000025315,0.0000025385,0.0000025461,0.0000025505,0.0000025517, -0.0000025512,0.0000025482,0.0000025447,0.0000025410,0.0000025362, -0.0000025307,0.0000025264,0.0000025248,0.0000025254,0.0000025286, -0.0000025336,0.0000025377,0.0000025372,0.0000025257,0.0000025021, -0.0000024767,0.0000024636,0.0000024624,0.0000024677,0.0000024711, -0.0000024636,0.0000024484,0.0000024377,0.0000024394,0.0000024506, -0.0000024672,0.0000024849,0.0000025019,0.0000025168,0.0000025312, -0.0000025421,0.0000025498,0.0000025570,0.0000025652,0.0000025753, -0.0000025872,0.0000025985,0.0000026047,0.0000026043,0.0000026018, -0.0000026014,0.0000026042,0.0000026083,0.0000026114,0.0000026114, -0.0000026086,0.0000026075,0.0000026131,0.0000026306,0.0000026580, -0.0000026843,0.0000027002,0.0000027058,0.0000027048,0.0000027000, -0.0000026955,0.0000026936,0.0000026928,0.0000026916,0.0000026892, -0.0000026851,0.0000026784,0.0000026689,0.0000026579,0.0000026467, -0.0000026350,0.0000026221,0.0000026098,0.0000026017,0.0000025969, -0.0000025929,0.0000025890,0.0000025852,0.0000025815,0.0000025786, -0.0000025758,0.0000025719,0.0000025665,0.0000025606,0.0000025566, -0.0000025568,0.0000025596,0.0000025616,0.0000025627,0.0000025645, -0.0000025634,0.0000025624,0.0000025600,0.0000025568,0.0000025533, -0.0000025497,0.0000025460,0.0000025438,0.0000025425,0.0000025418, -0.0000025422,0.0000025448,0.0000025485,0.0000025525,0.0000025540, -0.0000025528,0.0000025494,0.0000025454,0.0000025434,0.0000025426, -0.0000025420,0.0000025414,0.0000025414,0.0000025403,0.0000025388, -0.0000025404,0.0000025471,0.0000025590,0.0000025732,0.0000025873, -0.0000025999,0.0000026093,0.0000026140,0.0000026170,0.0000026241, -0.0000026364,0.0000026544,0.0000026749,0.0000026920,0.0000027006, -0.0000026982,0.0000026901,0.0000026789,0.0000026684,0.0000026599, -0.0000026537,0.0000026448,0.0000026278,0.0000026021,0.0000025766, -0.0000025588,0.0000025491,0.0000025421,0.0000025340,0.0000025237, -0.0000025130,0.0000025046,0.0000025037,0.0000025089,0.0000025130, -0.0000025089,0.0000025016,0.0000024973,0.0000024957,0.0000024915, -0.0000024867,0.0000024836,0.0000024833,0.0000024896,0.0000025013, -0.0000025130,0.0000025239,0.0000025280,0.0000025145,0.0000025104, -0.0000025741,0.0000026389,0.0000026460,0.0000026434,0.0000026411, -0.0000026381,0.0000026372,0.0000026367,0.0000026347,0.0000026307, -0.0000026275,0.0000026277,0.0000026264,0.0000026220,0.0000026173, -0.0000026097,0.0000026020,0.0000025472,0.0000024991,0.0000024979, -0.0000024922,0.0000024857,0.0000024823,0.0000024812,0.0000024823, -0.0000024818,0.0000024794,0.0000024792,0.0000024829,0.0000024933, -0.0000025099,0.0000025328,0.0000025578,0.0000025793,0.0000025953, -0.0000026055,0.0000026101,0.0000026109,0.0000026080,0.0000026044, -0.0000025987,0.0000025836,0.0000025499,0.0000025138,0.0000025021, -0.0000025062,0.0000025161,0.0000025213,0.0000025213,0.0000025196, -0.0000025186,0.0000025246,0.0000025348,0.0000025383,0.0000025347, -0.0000025340,0.0000025385,0.0000025422,0.0000025437,0.0000025457, -0.0000025512,0.0000025679,0.0000025863,0.0000025967,0.0000026047, -0.0000026108,0.0000026081,0.0000025990,0.0000025917,0.0000025919, -0.0000026075,0.0000026359,0.0000026673,0.0000026897,0.0000026969, -0.0000026937,0.0000026880,0.0000026863,0.0000026893,0.0000026960, -0.0000027087,0.0000027243,0.0000027331,0.0000027333,0.0000027278, -0.0000027184,0.0000027086,0.0000027034,0.0000027034,0.0000027038, -0.0000027013,0.0000026982,0.0000026985,0.0000027022,0.0000027079, -0.0000027135,0.0000027175,0.0000027186,0.0000027177,0.0000027165, -0.0000027168,0.0000027186,0.0000027196,0.0000027200,0.0000027192, -0.0000027161,0.0000027111,0.0000027053,0.0000026998,0.0000026964, -0.0000026966,0.0000026999,0.0000027035,0.0000027035,0.0000026994, -0.0000026930,0.0000026864,0.0000026799,0.0000026733,0.0000026667, -0.0000026599,0.0000026530,0.0000026457,0.0000026384,0.0000026311, -0.0000026219,0.0000026098,0.0000025966,0.0000025853,0.0000025761, -0.0000025680,0.0000025609,0.0000025563,0.0000025547,0.0000025548, -0.0000025565,0.0000025599,0.0000025632,0.0000025654,0.0000025659, -0.0000025677,0.0000025757,0.0000025819,0.0000025794,0.0000025752, -0.0000025763,0.0000025805,0.0000025835,0.0000025843,0.0000025838, -0.0000025807,0.0000025756,0.0000025699,0.0000025642,0.0000025596, -0.0000025569,0.0000025564,0.0000025567,0.0000025528,0.0000025471, -0.0000025489,0.0000025535,0.0000025526,0.0000025458,0.0000025270, -0.0000024957,0.0000024730,0.0000024602,0.0000024391,0.0000024129, -0.0000023952,0.0000023834,0.0000023675,0.0000023507,0.0000023443, -0.0000023490,0.0000023623,0.0000023720,0.0000023812,0.0000024044, -0.0000024319,0.0000024542,0.0000024886,0.0000025271,0.0000025447, -0.0000025469,0.0000025453,0.0000025395,0.0000025298,0.0000025151, -0.0000025039,0.0000025041,0.0000025097,0.0000025126,0.0000025121, -0.0000025116,0.0000025113,0.0000025091,0.0000025053,0.0000025021, -0.0000024984,0.0000024928,0.0000024858,0.0000024801,0.0000024774, -0.0000024776,0.0000024805,0.0000024863,0.0000024940,0.0000025027, -0.0000025118,0.0000025210,0.0000025294,0.0000025364,0.0000025412, -0.0000025441,0.0000025461,0.0000025480,0.0000025489,0.0000025479, -0.0000025446,0.0000025409,0.0000025380,0.0000025355,0.0000025342, -0.0000025350,0.0000025356,0.0000025332,0.0000025301,0.0000025297, -0.0000025338,0.0000025435,0.0000025582,0.0000025743,0.0000025840, -0.0000025847,0.0000025832,0.0000025831,0.0000025847,0.0000025875, -0.0000025902,0.0000025919,0.0000025920,0.0000025908,0.0000025895, -0.0000025890,0.0000025898,0.0000025927,0.0000025991,0.0000026095, -0.0000026213,0.0000026318,0.0000026423,0.0000026542,0.0000026657, -0.0000026726,0.0000026765,0.0000026815,0.0000026875,0.0000026908, -0.0000026903,0.0000026847,0.0000026699,0.0000026452,0.0000026279, -0.0000026291,0.0000026433,0.0000026651,0.0000026822,0.0000026930, -0.0000027022,0.0000027050,0.0000027028,0.0000027042,0.0000027077, -0.0000027106,0.0000027157,0.0000027225,0.0000027284,0.0000027342, -0.0000027420,0.0000027500,0.0000027561,0.0000027601,0.0000027636, -0.0000027673,0.0000027716,0.0000027748,0.0000027744,0.0000027716, -0.0000027697,0.0000027689,0.0000027688,0.0000027696,0.0000027705, -0.0000027725,0.0000027773,0.0000027860,0.0000027948,0.0000027951, -0.0000027885,0.0000027775,0.0000027645,0.0000027513,0.0000027393, -0.0000027318,0.0000027288,0.0000027284,0.0000027295,0.0000027326, -0.0000027347,0.0000027330,0.0000027308,0.0000027312,0.0000027334, -0.0000027388,0.0000027464,0.0000027504,0.0000027476,0.0000027371, -0.0000027246,0.0000027152,0.0000027101,0.0000027090,0.0000027088, -0.0000027071,0.0000027039,0.0000027011,0.0000027004,0.0000027010, -0.0000027038,0.0000027086,0.0000027098,0.0000026979,0.0000026801, -0.0000026744,0.0000026769,0.0000026824,0.0000026872,0.0000026892, -0.0000026877,0.0000026831,0.0000026775,0.0000026720,0.0000026686, -0.0000026680,0.0000026684,0.0000026686,0.0000026686,0.0000026678, -0.0000026635,0.0000026536,0.0000026430,0.0000026353,0.0000026246, -0.0000026074,0.0000025904,0.0000025791,0.0000025714,0.0000025666, -0.0000025647,0.0000025635,0.0000025611,0.0000025567,0.0000025524, -0.0000025487,0.0000025417,0.0000025237,0.0000024957,0.0000024773, -0.0000024804,0.0000024935,0.0000025022,0.0000025026,0.0000024985, -0.0000024939,0.0000024912,0.0000024898,0.0000024879,0.0000024828, -0.0000024735,0.0000024618,0.0000024501,0.0000024393,0.0000024310, -0.0000024249,0.0000024205,0.0000024212,0.0000024228,0.0000024173, -0.0000024107,0.0000024127,0.0000024225,0.0000024269,0.0000024244, -0.0000024351,0.0000024797,0.0000025330,0.0000025629,0.0000025731, -0.0000025874,0.0000026132,0.0000026284,0.0000026290,0.0000026310, -0.0000026357,0.0000026342,0.0000026145,0.0000025776,0.0000025517, -0.0000025518,0.0000025748,0.0000026041,0.0000026356,0.0000026783, -0.0000027201,0.0000027413,0.0000027469,0.0000027478,0.0000027500, -0.0000027481,0.0000027359,0.0000027241,0.0000027188,0.0000027158, -0.0000027132,0.0000027126,0.0000027113,0.0000027091,0.0000027042, -0.0000026948,0.0000026797,0.0000026548,0.0000026133,0.0000025689, -0.0000025448,0.0000025362,0.0000025334,0.0000025327,0.0000025331, -0.0000025319,0.0000025308,0.0000025303,0.0000025292,0.0000025283, -0.0000025255,0.0000025184,0.0000025074,0.0000024924,0.0000024769, -0.0000024640,0.0000024545,0.0000024485,0.0000024475,0.0000024509, -0.0000024585,0.0000024685,0.0000024787,0.0000024877,0.0000024979, -0.0000025044,0.0000025111,0.0000025187,0.0000025278,0.0000025372, -0.0000025435,0.0000025478,0.0000025500,0.0000025485,0.0000025430, -0.0000025338,0.0000025231,0.0000025133,0.0000025076,0.0000025068, -0.0000025099,0.0000025119,0.0000025085,0.0000024961,0.0000024797, -0.0000024653,0.0000024552,0.0000024505,0.0000024503,0.0000024531, -0.0000024575,0.0000024606,0.0000024612,0.0000024594,0.0000024550, -0.0000024490,0.0000024425,0.0000024357,0.0000024282,0.0000024199, -0.0000024093,0.0000023955,0.0000023803,0.0000023658,0.0000023539, -0.0000023458,0.0000023437,0.0000023463,0.0000023533,0.0000023637, -0.0000023753,0.0000023855,0.0000023929,0.0000023976,0.0000023988, -0.0000023968,0.0000023911,0.0000023831,0.0000023761,0.0000023712, -0.0000023668,0.0000023628,0.0000023615,0.0000023627,0.0000023672, -0.0000023726,0.0000023734,0.0000023724,0.0000023731,0.0000023736, -0.0000023724,0.0000023689,0.0000023636,0.0000023582,0.0000023516, -0.0000023444,0.0000023388,0.0000023356,0.0000023328,0.0000023315, -0.0000023326,0.0000023354,0.0000023392,0.0000023439,0.0000023475, -0.0000023478,0.0000023447,0.0000023389,0.0000023322,0.0000023261, -0.0000023210,0.0000023172,0.0000023151,0.0000023148,0.0000023169, -0.0000023209,0.0000023246,0.0000023289,0.0000023371,0.0000023439, -0.0000023433,0.0000023364,0.0000023306,0.0000023278,0.0000023265, -0.0000023260,0.0000023262,0.0000023391,0.0000023638,0.0000023821, -0.0000023914,0.0000023983,0.0000024025,0.0000024108,0.0000024286, -0.0000024594,0.0000025127,0.0000025614,0.0000025748,0.0000025657, -0.0000025381,0.0000025115,0.0000024950,0.0000024871,0.0000024890, -0.0000024921,0.0000024849,0.0000024599,0.0000024550,0.0000024792, -0.0000024982,0.0000025203,0.0000025669,0.0000026096,0.0000026307, -0.0000026382,0.0000026409,0.0000026423,0.0000026434,0.0000026433, -0.0000026426,0.0000026420,0.0000026406,0.0000026377,0.0000026332, -0.0000026278,0.0000026216,0.0000026156,0.0000026112,0.0000026088, -0.0000026077,0.0000026068,0.0000026071,0.0000026080,0.0000025965, -0.0000025963,0.0000025962,0.0000025928,0.0000025864,0.0000025797, -0.0000025736,0.0000025677,0.0000025615,0.0000025539,0.0000025447, -0.0000025360,0.0000025271,0.0000025154,0.0000025008,0.0000024863, -0.0000024735,0.0000024607,0.0000024475,0.0000024371,0.0000024314, -0.0000024276,0.0000024241,0.0000024217,0.0000024211,0.0000024214, -0.0000024219,0.0000024223,0.0000024231,0.0000024241,0.0000024249, -0.0000024256,0.0000024269,0.0000024293,0.0000024327,0.0000024373, -0.0000024423,0.0000024472,0.0000024516,0.0000024558,0.0000024596, -0.0000024632,0.0000024666,0.0000024695,0.0000024721,0.0000024739, -0.0000024747,0.0000024741,0.0000024722,0.0000024687,0.0000024630, -0.0000024553,0.0000024460,0.0000024363,0.0000024284,0.0000024239, -0.0000024233,0.0000024260,0.0000024298,0.0000024331,0.0000024359, -0.0000024382,0.0000024404,0.0000024428,0.0000024456,0.0000024480, -0.0000024484,0.0000024463,0.0000024420,0.0000024384,0.0000024372, -0.0000024360,0.0000024331,0.0000024305,0.0000024284,0.0000024272, -0.0000024279,0.0000024297,0.0000024306,0.0000024287,0.0000024259, -0.0000024213,0.0000024198,0.0000024265,0.0000024372,0.0000024452, -0.0000024521,0.0000024638,0.0000024784,0.0000024911,0.0000024988, -0.0000025048,0.0000025087,0.0000025093,0.0000025113,0.0000025186, -0.0000025290,0.0000025361,0.0000025423,0.0000025515,0.0000025601, -0.0000025638,0.0000025644,0.0000025599,0.0000025507,0.0000025408, -0.0000025322,0.0000025257,0.0000025234,0.0000025253,0.0000025295, -0.0000025346,0.0000025429,0.0000025527,0.0000025592,0.0000025622, -0.0000025651,0.0000025699,0.0000025752,0.0000025798,0.0000025823, -0.0000025825,0.0000025824,0.0000025812,0.0000025761,0.0000025693, -0.0000025665,0.0000025657,0.0000025604,0.0000025526,0.0000025470, -0.0000025423,0.0000025353,0.0000025289,0.0000025226,0.0000025144, -0.0000025081,0.0000025071,0.0000025115,0.0000025184,0.0000025214, -0.0000025218,0.0000025198,0.0000025163,0.0000025136,0.0000025129, -0.0000025138,0.0000025144,0.0000025144,0.0000025139,0.0000025121, -0.0000025087,0.0000025063,0.0000025076,0.0000025115,0.0000025133, -0.0000025121,0.0000025094,0.0000025077,0.0000025080,0.0000025107, -0.0000025146,0.0000025175,0.0000025175,0.0000025163,0.0000025160, -0.0000025169,0.0000025188,0.0000025188,0.0000025149,0.0000025114, -0.0000025119,0.0000025161,0.0000025158,0.0000025117,0.0000025077, -0.0000025091,0.0000025154,0.0000025244,0.0000025346,0.0000025427, -0.0000025463,0.0000025449,0.0000025395,0.0000025328,0.0000025270, -0.0000025241,0.0000025237,0.0000025232,0.0000025224,0.0000025229, -0.0000025238,0.0000025235,0.0000025222,0.0000025205,0.0000025172, -0.0000025098,0.0000024980,0.0000024859,0.0000024791,0.0000024779, -0.0000024789,0.0000024782,0.0000024734,0.0000024662,0.0000024608, -0.0000024600,0.0000024610,0.0000024624,0.0000024649,0.0000024703, -0.0000024791,0.0000024892,0.0000024988,0.0000025074,0.0000025140, -0.0000025184,0.0000025221,0.0000025260,0.0000025299,0.0000025339, -0.0000025377,0.0000025407,0.0000025429,0.0000025430,0.0000025385, -0.0000025338,0.0000025263,0.0000025129,0.0000024931,0.0000024727, -0.0000024617,0.0000024695,0.0000025040,0.0000025505,0.0000025820, -0.0000025943,0.0000026026,0.0000026119,0.0000026173,0.0000026186, -0.0000026203,0.0000026237,0.0000026266,0.0000026272,0.0000026256, -0.0000026224,0.0000026184,0.0000026151,0.0000026132,0.0000026126, -0.0000026128,0.0000026121,0.0000026105,0.0000026089,0.0000026074, -0.0000026059,0.0000026054,0.0000026073,0.0000026103,0.0000026136, -0.0000026157,0.0000026157,0.0000026149,0.0000026136,0.0000026117, -0.0000026088,0.0000026048,0.0000026008,0.0000025987,0.0000025989, -0.0000026015,0.0000026042,0.0000026047,0.0000026037,0.0000026021, -0.0000026001,0.0000025973,0.0000025944,0.0000025923,0.0000025924, -0.0000025930,0.0000025927,0.0000025907,0.0000025871,0.0000025827, -0.0000025790,0.0000025766,0.0000025755,0.0000025762,0.0000025785, -0.0000025811,0.0000025829,0.0000025835,0.0000025823,0.0000025784, -0.0000025715,0.0000025631,0.0000025552,0.0000025496,0.0000025466, -0.0000025459,0.0000025468,0.0000025498,0.0000025526,0.0000025542, -0.0000025530,0.0000025472,0.0000025370,0.0000025263,0.0000025183, -0.0000025150,0.0000025222,0.0000025368,0.0000025414,0.0000025355, -0.0000025302,0.0000025286,0.0000025269,0.0000025262,0.0000025295, -0.0000025363,0.0000025430,0.0000025472,0.0000025486,0.0000025478, -0.0000025461,0.0000025453,0.0000025443,0.0000025412,0.0000025360, -0.0000025309,0.0000025288,0.0000025304,0.0000025353,0.0000025400, -0.0000025415,0.0000025396,0.0000025312,0.0000025104,0.0000024826, -0.0000024645,0.0000024616,0.0000024678,0.0000024699,0.0000024626, -0.0000024487,0.0000024415,0.0000024458,0.0000024592,0.0000024761, -0.0000024944,0.0000025123,0.0000025288,0.0000025424,0.0000025511, -0.0000025568,0.0000025621,0.0000025687,0.0000025784,0.0000025896, -0.0000025992,0.0000026043,0.0000026042,0.0000026023,0.0000026016, -0.0000026025,0.0000026032,0.0000026005,0.0000025942,0.0000025908, -0.0000025930,0.0000026030,0.0000026201,0.0000026407,0.0000026576, -0.0000026668,0.0000026689,0.0000026675,0.0000026637,0.0000026609, -0.0000026597,0.0000026590,0.0000026579,0.0000026560,0.0000026528, -0.0000026478,0.0000026407,0.0000026324,0.0000026239,0.0000026155, -0.0000026080,0.0000026027,0.0000025996,0.0000025970,0.0000025939, -0.0000025910,0.0000025878,0.0000025845,0.0000025812,0.0000025774, -0.0000025728,0.0000025684,0.0000025655,0.0000025658,0.0000025679, -0.0000025700,0.0000025715,0.0000025717,0.0000025705,0.0000025678, -0.0000025638,0.0000025585,0.0000025522,0.0000025467,0.0000025411, -0.0000025369,0.0000025338,0.0000025309,0.0000025265,0.0000025216, -0.0000025184,0.0000025184,0.0000025208,0.0000025229,0.0000025235, -0.0000025212,0.0000025175,0.0000025143,0.0000025112,0.0000025084, -0.0000025067,0.0000025065,0.0000025060,0.0000025046,0.0000025039, -0.0000025071,0.0000025144,0.0000025254,0.0000025393,0.0000025553, -0.0000025721,0.0000025875,0.0000026002,0.0000026110,0.0000026201, -0.0000026308,0.0000026461,0.0000026656,0.0000026845,0.0000026945, -0.0000026932,0.0000026867,0.0000026763,0.0000026658,0.0000026576, -0.0000026504,0.0000026410,0.0000026251,0.0000026034,0.0000025813, -0.0000025653,0.0000025559,0.0000025486,0.0000025395,0.0000025270, -0.0000025117,0.0000025024,0.0000025044,0.0000025122,0.0000025134, -0.0000025069,0.0000024998,0.0000024971,0.0000024935,0.0000024891, -0.0000024839,0.0000024811,0.0000024832,0.0000024929,0.0000025067, -0.0000025199,0.0000025272,0.0000025157,0.0000025049,0.0000025631, -0.0000026347,0.0000026452,0.0000026419,0.0000026381,0.0000026355, -0.0000026359,0.0000026361,0.0000026340,0.0000026296,0.0000026269, -0.0000026278,0.0000026270,0.0000026224,0.0000026180,0.0000026108, -0.0000026038,0.0000025553,0.0000024994,0.0000024946,0.0000024895, -0.0000024808,0.0000024757,0.0000024749,0.0000024771,0.0000024778, -0.0000024774,0.0000024788,0.0000024833,0.0000024898,0.0000024966, -0.0000025045,0.0000025178,0.0000025313,0.0000025464,0.0000025597, -0.0000025701,0.0000025762,0.0000025764,0.0000025725,0.0000025646, -0.0000025478,0.0000025214,0.0000025032,0.0000025025,0.0000025118, -0.0000025207,0.0000025229,0.0000025223,0.0000025192,0.0000025173, -0.0000025220,0.0000025309,0.0000025332,0.0000025285,0.0000025259, -0.0000025304,0.0000025358,0.0000025370,0.0000025370,0.0000025391, -0.0000025510,0.0000025711,0.0000025853,0.0000025911,0.0000025980, -0.0000026047,0.0000026028,0.0000025934,0.0000025858,0.0000025883, -0.0000026070,0.0000026366,0.0000026665,0.0000026872,0.0000026939, -0.0000026920,0.0000026879,0.0000026882,0.0000026931,0.0000027032, -0.0000027163,0.0000027245,0.0000027246,0.0000027198,0.0000027120, -0.0000027047,0.0000027007,0.0000027000,0.0000026994,0.0000026960, -0.0000026925,0.0000026927,0.0000026964,0.0000027014,0.0000027058, -0.0000027094,0.0000027116,0.0000027121,0.0000027128,0.0000027152, -0.0000027182,0.0000027201,0.0000027208,0.0000027203,0.0000027177, -0.0000027131,0.0000027076,0.0000027025,0.0000026998,0.0000026999, -0.0000027014,0.0000027017,0.0000026989,0.0000026931,0.0000026869, -0.0000026821,0.0000026776,0.0000026722,0.0000026658,0.0000026588, -0.0000026512,0.0000026439,0.0000026372,0.0000026297,0.0000026184, -0.0000026040,0.0000025904,0.0000025799,0.0000025711,0.0000025620, -0.0000025531,0.0000025468,0.0000025444,0.0000025450,0.0000025483, -0.0000025531,0.0000025576,0.0000025597,0.0000025602,0.0000025603, -0.0000025631,0.0000025721,0.0000025788,0.0000025760,0.0000025700, -0.0000025705,0.0000025759,0.0000025794,0.0000025796,0.0000025773, -0.0000025729,0.0000025680,0.0000025637,0.0000025606,0.0000025592, -0.0000025595,0.0000025594,0.0000025541,0.0000025490,0.0000025525, -0.0000025579,0.0000025560,0.0000025483,0.0000025294,0.0000024979, -0.0000024754,0.0000024638,0.0000024436,0.0000024164,0.0000023976, -0.0000023855,0.0000023669,0.0000023430,0.0000023268,0.0000023247, -0.0000023365,0.0000023560,0.0000023692,0.0000023838,0.0000024126, -0.0000024406,0.0000024663,0.0000025044,0.0000025360,0.0000025455, -0.0000025452,0.0000025421,0.0000025358,0.0000025232,0.0000025072, -0.0000025012,0.0000025060,0.0000025124,0.0000025138,0.0000025115, -0.0000025089,0.0000025081,0.0000025077,0.0000025064,0.0000025018, -0.0000024917,0.0000024798,0.0000024717,0.0000024690,0.0000024697, -0.0000024724,0.0000024777,0.0000024855,0.0000024944,0.0000025034, -0.0000025120,0.0000025205,0.0000025287,0.0000025357,0.0000025403, -0.0000025430,0.0000025453,0.0000025474,0.0000025482,0.0000025470, -0.0000025428,0.0000025376,0.0000025335,0.0000025318,0.0000025325, -0.0000025356,0.0000025371,0.0000025346,0.0000025308,0.0000025299, -0.0000025340,0.0000025449,0.0000025616,0.0000025781,0.0000025849, -0.0000025848,0.0000025835,0.0000025826,0.0000025828,0.0000025840, -0.0000025856,0.0000025862,0.0000025849,0.0000025823,0.0000025803, -0.0000025802,0.0000025837,0.0000025906,0.0000026007,0.0000026137, -0.0000026259,0.0000026357,0.0000026455,0.0000026570,0.0000026681, -0.0000026747,0.0000026786,0.0000026833,0.0000026888,0.0000026918, -0.0000026914,0.0000026857,0.0000026710,0.0000026478,0.0000026306, -0.0000026316,0.0000026470,0.0000026702,0.0000026878,0.0000026980, -0.0000027047,0.0000027040,0.0000026995,0.0000026995,0.0000027003, -0.0000027016,0.0000027068,0.0000027125,0.0000027171,0.0000027242, -0.0000027342,0.0000027436,0.0000027510,0.0000027579,0.0000027633, -0.0000027672,0.0000027711,0.0000027736,0.0000027733,0.0000027716, -0.0000027708,0.0000027705,0.0000027709,0.0000027720,0.0000027726, -0.0000027737,0.0000027773,0.0000027857,0.0000027941,0.0000027950, -0.0000027880,0.0000027773,0.0000027641,0.0000027507,0.0000027394, -0.0000027327,0.0000027300,0.0000027298,0.0000027309,0.0000027336, -0.0000027349,0.0000027324,0.0000027292,0.0000027281,0.0000027289, -0.0000027321,0.0000027387,0.0000027437,0.0000027431,0.0000027352, -0.0000027239,0.0000027134,0.0000027056,0.0000027023,0.0000027019, -0.0000027014,0.0000027001,0.0000027000,0.0000027005,0.0000027011, -0.0000027044,0.0000027086,0.0000027069,0.0000026919,0.0000026747, -0.0000026709,0.0000026749,0.0000026821,0.0000026886,0.0000026919, -0.0000026914,0.0000026885,0.0000026842,0.0000026785,0.0000026732, -0.0000026710,0.0000026708,0.0000026710,0.0000026712,0.0000026718, -0.0000026708,0.0000026637,0.0000026516,0.0000026412,0.0000026323, -0.0000026172,0.0000025979,0.0000025836,0.0000025751,0.0000025697, -0.0000025678,0.0000025673,0.0000025658,0.0000025615,0.0000025556, -0.0000025518,0.0000025469,0.0000025306,0.0000025014,0.0000024798, -0.0000024814,0.0000024939,0.0000025009,0.0000024998,0.0000024956, -0.0000024916,0.0000024892,0.0000024882,0.0000024864,0.0000024824, -0.0000024745,0.0000024634,0.0000024513,0.0000024402,0.0000024314, -0.0000024249,0.0000024185,0.0000024154,0.0000024168,0.0000024147, -0.0000024073,0.0000024062,0.0000024163,0.0000024244,0.0000024230, -0.0000024241,0.0000024541,0.0000025098,0.0000025512,0.0000025657, -0.0000025709,0.0000025872,0.0000026098,0.0000026212,0.0000026254, -0.0000026290,0.0000026251,0.0000026032,0.0000025669,0.0000025324, -0.0000025207,0.0000025412,0.0000025815,0.0000026173,0.0000026561, -0.0000027024,0.0000027343,0.0000027442,0.0000027464,0.0000027488, -0.0000027496,0.0000027413,0.0000027284,0.0000027216,0.0000027167, -0.0000027126,0.0000027120,0.0000027088,0.0000027041,0.0000026963, -0.0000026833,0.0000026641,0.0000026353,0.0000025935,0.0000025590, -0.0000025459,0.0000025390,0.0000025350,0.0000025342,0.0000025351, -0.0000025336,0.0000025312,0.0000025306,0.0000025300,0.0000025299, -0.0000025281,0.0000025223,0.0000025095,0.0000024902,0.0000024666, -0.0000024434,0.0000024245,0.0000024090,0.0000023982,0.0000023941, -0.0000023966,0.0000024049,0.0000024183,0.0000024354,0.0000024546, -0.0000024741,0.0000024918,0.0000025047,0.0000025126,0.0000025177, -0.0000025196,0.0000025189,0.0000025173,0.0000025149,0.0000025137, -0.0000025113,0.0000025099,0.0000025096,0.0000025083,0.0000025089, -0.0000025102,0.0000025095,0.0000024980,0.0000024760,0.0000024525, -0.0000024349,0.0000024245,0.0000024189,0.0000024166,0.0000024170, -0.0000024210,0.0000024280,0.0000024346,0.0000024383,0.0000024383, -0.0000024343,0.0000024276,0.0000024192,0.0000024093,0.0000023975, -0.0000023842,0.0000023697,0.0000023558,0.0000023445,0.0000023365, -0.0000023316,0.0000023303,0.0000023320,0.0000023378,0.0000023484, -0.0000023624,0.0000023761,0.0000023858,0.0000023910,0.0000023929, -0.0000023917,0.0000023873,0.0000023810,0.0000023735,0.0000023668, -0.0000023635,0.0000023623,0.0000023602,0.0000023575,0.0000023568, -0.0000023597,0.0000023643,0.0000023651,0.0000023645,0.0000023655, -0.0000023677,0.0000023683,0.0000023666,0.0000023622,0.0000023553, -0.0000023470,0.0000023397,0.0000023353,0.0000023310,0.0000023251, -0.0000023194,0.0000023181,0.0000023199,0.0000023236,0.0000023277, -0.0000023320,0.0000023353,0.0000023360,0.0000023341,0.0000023291, -0.0000023227,0.0000023161,0.0000023106,0.0000023071,0.0000023059, -0.0000023066,0.0000023101,0.0000023158,0.0000023216,0.0000023296, -0.0000023400,0.0000023451,0.0000023421,0.0000023356,0.0000023320, -0.0000023301,0.0000023286,0.0000023283,0.0000023318,0.0000023505, -0.0000023739,0.0000023867,0.0000023927,0.0000023966,0.0000024005, -0.0000024146,0.0000024397,0.0000024843,0.0000025413,0.0000025724, -0.0000025700,0.0000025436,0.0000025143,0.0000024927,0.0000024789, -0.0000024801,0.0000024881,0.0000024878,0.0000024670,0.0000024459, -0.0000024576,0.0000024844,0.0000024969,0.0000025193,0.0000025625, -0.0000026030,0.0000026257,0.0000026338,0.0000026355,0.0000026359, -0.0000026359,0.0000026355,0.0000026341,0.0000026307,0.0000026250, -0.0000026174,0.0000026083,0.0000025987,0.0000025904,0.0000025855, -0.0000025840,0.0000025850,0.0000025870,0.0000025904,0.0000025949, -0.0000025789,0.0000025823,0.0000025860,0.0000025863,0.0000025826, -0.0000025769,0.0000025703,0.0000025634,0.0000025556,0.0000025464, -0.0000025356,0.0000025243,0.0000025110,0.0000024956,0.0000024808, -0.0000024676,0.0000024537,0.0000024385,0.0000024263,0.0000024206, -0.0000024198,0.0000024200,0.0000024188,0.0000024173,0.0000024171, -0.0000024178,0.0000024187,0.0000024186,0.0000024184,0.0000024196, -0.0000024209,0.0000024222,0.0000024238,0.0000024263,0.0000024295, -0.0000024331,0.0000024366,0.0000024399,0.0000024424,0.0000024438, -0.0000024440,0.0000024434,0.0000024424,0.0000024415,0.0000024408, -0.0000024396,0.0000024384,0.0000024365,0.0000024340,0.0000024308, -0.0000024268,0.0000024224,0.0000024183,0.0000024150,0.0000024143, -0.0000024160,0.0000024195,0.0000024240,0.0000024281,0.0000024316, -0.0000024352,0.0000024390,0.0000024425,0.0000024455,0.0000024484, -0.0000024506,0.0000024509,0.0000024482,0.0000024434,0.0000024406, -0.0000024397,0.0000024375,0.0000024345,0.0000024323,0.0000024301, -0.0000024288,0.0000024293,0.0000024313,0.0000024314,0.0000024283, -0.0000024242,0.0000024179,0.0000024147,0.0000024208,0.0000024315, -0.0000024395,0.0000024470,0.0000024605,0.0000024768,0.0000024897, -0.0000024971,0.0000025036,0.0000025095,0.0000025117,0.0000025145, -0.0000025218,0.0000025324,0.0000025416,0.0000025509,0.0000025601, -0.0000025644,0.0000025626,0.0000025574,0.0000025499,0.0000025415, -0.0000025344,0.0000025279,0.0000025226,0.0000025216,0.0000025238, -0.0000025284,0.0000025335,0.0000025413,0.0000025512,0.0000025579, -0.0000025608,0.0000025630,0.0000025670,0.0000025722,0.0000025766, -0.0000025799,0.0000025818,0.0000025819,0.0000025812,0.0000025781, -0.0000025716,0.0000025663,0.0000025649,0.0000025639,0.0000025592, -0.0000025522,0.0000025465,0.0000025406,0.0000025334,0.0000025287, -0.0000025246,0.0000025164,0.0000025092,0.0000025081,0.0000025134, -0.0000025193,0.0000025214,0.0000025209,0.0000025178,0.0000025135, -0.0000025113,0.0000025120,0.0000025143,0.0000025158,0.0000025157, -0.0000025153,0.0000025141,0.0000025110,0.0000025072,0.0000025063, -0.0000025085,0.0000025100,0.0000025086,0.0000025061,0.0000025045, -0.0000025044,0.0000025061,0.0000025090,0.0000025120,0.0000025141, -0.0000025156,0.0000025167,0.0000025178,0.0000025196,0.0000025214, -0.0000025184,0.0000025106,0.0000025059,0.0000025097,0.0000025136, -0.0000025116,0.0000025063,0.0000025046,0.0000025074,0.0000025129, -0.0000025208,0.0000025315,0.0000025408,0.0000025443,0.0000025409, -0.0000025328,0.0000025246,0.0000025204,0.0000025202,0.0000025212, -0.0000025228,0.0000025255,0.0000025278,0.0000025278,0.0000025260, -0.0000025231,0.0000025198,0.0000025149,0.0000025056,0.0000024927, -0.0000024817,0.0000024777,0.0000024785,0.0000024796,0.0000024774, -0.0000024711,0.0000024634,0.0000024595,0.0000024591,0.0000024597, -0.0000024605,0.0000024642,0.0000024715,0.0000024794,0.0000024856, -0.0000024911,0.0000024965,0.0000025013,0.0000025052,0.0000025086, -0.0000025120,0.0000025155,0.0000025190,0.0000025223,0.0000025249, -0.0000025267,0.0000025269,0.0000025263,0.0000025242,0.0000025180, -0.0000025049,0.0000024854,0.0000024679,0.0000024616,0.0000024728, -0.0000025123,0.0000025607,0.0000025884,0.0000025972,0.0000026040, -0.0000026114,0.0000026156,0.0000026181,0.0000026223,0.0000026269, -0.0000026294,0.0000026284,0.0000026256,0.0000026233,0.0000026221, -0.0000026218,0.0000026210,0.0000026203,0.0000026185,0.0000026151, -0.0000026111,0.0000026077,0.0000026051,0.0000026029,0.0000026023, -0.0000026031,0.0000026056,0.0000026082,0.0000026092,0.0000026089, -0.0000026076,0.0000026054,0.0000026021,0.0000025977,0.0000025933, -0.0000025906,0.0000025902,0.0000025928,0.0000025959,0.0000025975, -0.0000025982,0.0000025988,0.0000025982,0.0000025958,0.0000025930, -0.0000025916,0.0000025924,0.0000025940,0.0000025946,0.0000025934, -0.0000025900,0.0000025845,0.0000025792,0.0000025756,0.0000025737, -0.0000025731,0.0000025746,0.0000025778,0.0000025807,0.0000025818, -0.0000025801,0.0000025757,0.0000025696,0.0000025633,0.0000025574, -0.0000025524,0.0000025478,0.0000025442,0.0000025429,0.0000025453, -0.0000025505,0.0000025554,0.0000025571,0.0000025535,0.0000025443, -0.0000025319,0.0000025215,0.0000025156,0.0000025148,0.0000025241, -0.0000025390,0.0000025425,0.0000025347,0.0000025268,0.0000025236, -0.0000025225,0.0000025236,0.0000025272,0.0000025329,0.0000025391, -0.0000025438,0.0000025453,0.0000025451,0.0000025449,0.0000025460, -0.0000025471,0.0000025469,0.0000025433,0.0000025377,0.0000025335, -0.0000025349,0.0000025407,0.0000025444,0.0000025429,0.0000025388, -0.0000025326,0.0000025166,0.0000024914,0.0000024699,0.0000024651, -0.0000024690,0.0000024699,0.0000024643,0.0000024536,0.0000024499, -0.0000024559,0.0000024691,0.0000024861,0.0000025044,0.0000025219, -0.0000025377,0.0000025484,0.0000025545,0.0000025579,0.0000025616, -0.0000025689,0.0000025788,0.0000025885,0.0000025971,0.0000026024, -0.0000026028,0.0000026011,0.0000026008,0.0000026014,0.0000026001, -0.0000025928,0.0000025841,0.0000025816,0.0000025863,0.0000025961, -0.0000026082,0.0000026200,0.0000026287,0.0000026335,0.0000026347, -0.0000026337,0.0000026316,0.0000026299,0.0000026289,0.0000026285, -0.0000026287,0.0000026285,0.0000026273,0.0000026241,0.0000026190, -0.0000026129,0.0000026068,0.0000026021,0.0000025992,0.0000025977, -0.0000025965,0.0000025948,0.0000025927,0.0000025902,0.0000025865, -0.0000025820,0.0000025769,0.0000025715,0.0000025668,0.0000025643, -0.0000025643,0.0000025659,0.0000025684,0.0000025711,0.0000025736, -0.0000025750,0.0000025732,0.0000025714,0.0000025674,0.0000025620, -0.0000025555,0.0000025486,0.0000025421,0.0000025354,0.0000025301, -0.0000025237,0.0000025156,0.0000025067,0.0000025001,0.0000024968, -0.0000024967,0.0000024973,0.0000024968,0.0000024950,0.0000024933, -0.0000024913,0.0000024892,0.0000024874,0.0000024865,0.0000024865, -0.0000024867,0.0000024862,0.0000024855,0.0000024858,0.0000024872, -0.0000024903,0.0000024959,0.0000025058,0.0000025212,0.0000025411, -0.0000025634,0.0000025855,0.0000026038,0.0000026164,0.0000026254, -0.0000026372,0.0000026554,0.0000026747,0.0000026867,0.0000026877, -0.0000026838,0.0000026739,0.0000026640,0.0000026551,0.0000026471, -0.0000026379,0.0000026247,0.0000026060,0.0000025870,0.0000025726, -0.0000025636,0.0000025564,0.0000025459,0.0000025283,0.0000025104, -0.0000025031,0.0000025080,0.0000025134,0.0000025107,0.0000025020, -0.0000024972,0.0000024954,0.0000024920,0.0000024862,0.0000024812, -0.0000024801,0.0000024858,0.0000024986,0.0000025144,0.0000025256, -0.0000025176,0.0000025041,0.0000025491,0.0000026277,0.0000026437, -0.0000026397,0.0000026346,0.0000026328,0.0000026342,0.0000026348, -0.0000026325,0.0000026279,0.0000026261,0.0000026280,0.0000026276, -0.0000026233,0.0000026196,0.0000026127,0.0000026060,0.0000025691, -0.0000025052,0.0000024910,0.0000024870,0.0000024776,0.0000024703, -0.0000024695,0.0000024730,0.0000024746,0.0000024743,0.0000024759, -0.0000024811,0.0000024887,0.0000024961,0.0000025029,0.0000025086, -0.0000025115,0.0000025145,0.0000025194,0.0000025255,0.0000025304, -0.0000025316,0.0000025282,0.0000025233,0.0000025154,0.0000025046, -0.0000025012,0.0000025050,0.0000025165,0.0000025232,0.0000025241, -0.0000025233,0.0000025198,0.0000025168,0.0000025196,0.0000025264, -0.0000025274,0.0000025223,0.0000025179,0.0000025221,0.0000025287, -0.0000025301,0.0000025285,0.0000025286,0.0000025350,0.0000025513, -0.0000025693,0.0000025784,0.0000025829,0.0000025915,0.0000025999, -0.0000025977,0.0000025875,0.0000025816,0.0000025877,0.0000026083, -0.0000026371,0.0000026660,0.0000026863,0.0000026936,0.0000026917, -0.0000026897,0.0000026919,0.0000026990,0.0000027094,0.0000027172, -0.0000027182,0.0000027150,0.0000027090,0.0000027034,0.0000026995, -0.0000026966,0.0000026936,0.0000026902,0.0000026882,0.0000026902, -0.0000026948,0.0000026989,0.0000027009,0.0000027028,0.0000027057, -0.0000027082,0.0000027094,0.0000027115,0.0000027148,0.0000027173, -0.0000027184,0.0000027183,0.0000027165,0.0000027135,0.0000027101, -0.0000027072,0.0000027055,0.0000027038,0.0000027014,0.0000026982, -0.0000026938,0.0000026886,0.0000026841,0.0000026806,0.0000026769, -0.0000026714,0.0000026645,0.0000026565,0.0000026483,0.0000026410, -0.0000026344,0.0000026255,0.0000026124,0.0000025978,0.0000025856, -0.0000025765,0.0000025684,0.0000025598,0.0000025513,0.0000025446, -0.0000025406,0.0000025397,0.0000025421,0.0000025472,0.0000025527, -0.0000025563,0.0000025567,0.0000025555,0.0000025553,0.0000025588, -0.0000025691,0.0000025771,0.0000025745,0.0000025677,0.0000025665, -0.0000025709,0.0000025747,0.0000025751,0.0000025727,0.0000025686, -0.0000025648,0.0000025622,0.0000025613,0.0000025614,0.0000025599, -0.0000025540,0.0000025511,0.0000025562,0.0000025621,0.0000025591, -0.0000025509,0.0000025322,0.0000025004,0.0000024777,0.0000024678, -0.0000024493,0.0000024214,0.0000024005,0.0000023884,0.0000023704, -0.0000023438,0.0000023214,0.0000023112,0.0000023136,0.0000023297, -0.0000023523,0.0000023687,0.0000023904,0.0000024234,0.0000024508, -0.0000024809,0.0000025188,0.0000025407,0.0000025433,0.0000025423, -0.0000025392,0.0000025306,0.0000025138,0.0000025005,0.0000025010, -0.0000025092,0.0000025144,0.0000025136,0.0000025098,0.0000025079, -0.0000025087,0.0000025101,0.0000025069,0.0000024940,0.0000024778, -0.0000024689,0.0000024672,0.0000024680,0.0000024703,0.0000024741, -0.0000024798,0.0000024871,0.0000024949,0.0000025028,0.0000025107, -0.0000025188,0.0000025270,0.0000025341,0.0000025393,0.0000025426, -0.0000025454,0.0000025477,0.0000025485,0.0000025464,0.0000025409, -0.0000025342,0.0000025295,0.0000025285,0.0000025317,0.0000025372, -0.0000025387,0.0000025356,0.0000025311,0.0000025299,0.0000025348, -0.0000025480,0.0000025669,0.0000025816,0.0000025848,0.0000025842, -0.0000025823,0.0000025801,0.0000025796,0.0000025803,0.0000025805, -0.0000025788,0.0000025756,0.0000025724,0.0000025710,0.0000025729, -0.0000025798,0.0000025895,0.0000026013,0.0000026154,0.0000026280, -0.0000026365,0.0000026446,0.0000026552,0.0000026661,0.0000026738, -0.0000026791,0.0000026843,0.0000026893,0.0000026921,0.0000026915, -0.0000026860,0.0000026729,0.0000026511,0.0000026333,0.0000026337, -0.0000026501,0.0000026739,0.0000026914,0.0000027019,0.0000027066, -0.0000027037,0.0000026985,0.0000026981,0.0000026966,0.0000026969, -0.0000027013,0.0000027057,0.0000027095,0.0000027164,0.0000027258, -0.0000027355,0.0000027449,0.0000027539,0.0000027604,0.0000027649, -0.0000027681,0.0000027700,0.0000027705,0.0000027709,0.0000027712, -0.0000027719,0.0000027737,0.0000027748,0.0000027744,0.0000027736, -0.0000027744,0.0000027801,0.0000027881,0.0000027908,0.0000027854, -0.0000027758,0.0000027644,0.0000027517,0.0000027400,0.0000027327, -0.0000027305,0.0000027309,0.0000027318,0.0000027330,0.0000027340, -0.0000027323,0.0000027284,0.0000027253,0.0000027250,0.0000027262, -0.0000027303,0.0000027348,0.0000027354,0.0000027309,0.0000027229, -0.0000027135,0.0000027047,0.0000026990,0.0000026977,0.0000026978, -0.0000026983,0.0000026995,0.0000027005,0.0000027022,0.0000027063, -0.0000027086,0.0000027020,0.0000026838,0.0000026691,0.0000026675, -0.0000026726,0.0000026807,0.0000026884,0.0000026932,0.0000026934, -0.0000026914,0.0000026882,0.0000026833,0.0000026777,0.0000026742, -0.0000026734,0.0000026732,0.0000026731,0.0000026738,0.0000026744, -0.0000026712,0.0000026602,0.0000026472,0.0000026374,0.0000026250, -0.0000026056,0.0000025888,0.0000025792,0.0000025732,0.0000025710, -0.0000025707,0.0000025697,0.0000025657,0.0000025587,0.0000025538, -0.0000025499,0.0000025345,0.0000025049,0.0000024824,0.0000024836, -0.0000024955,0.0000024999,0.0000024968,0.0000024915,0.0000024881, -0.0000024862,0.0000024850,0.0000024831,0.0000024798,0.0000024736, -0.0000024638,0.0000024521,0.0000024408,0.0000024310,0.0000024242, -0.0000024170,0.0000024102,0.0000024095,0.0000024100,0.0000024047, -0.0000024021,0.0000024088,0.0000024193,0.0000024217,0.0000024200, -0.0000024362,0.0000024848,0.0000025346,0.0000025570,0.0000025613, -0.0000025666,0.0000025827,0.0000026008,0.0000026111,0.0000026130, -0.0000026077,0.0000025873,0.0000025565,0.0000025235,0.0000024997, -0.0000025058,0.0000025483,0.0000025966,0.0000026358,0.0000026805, -0.0000027227,0.0000027404,0.0000027441,0.0000027467,0.0000027494, -0.0000027458,0.0000027327,0.0000027240,0.0000027193,0.0000027133, -0.0000027120,0.0000027079,0.0000026977,0.0000026854,0.0000026702, -0.0000026502,0.0000026211,0.0000025833,0.0000025588,0.0000025493, -0.0000025421,0.0000025369,0.0000025360,0.0000025375,0.0000025364, -0.0000025326,0.0000025322,0.0000025315,0.0000025313,0.0000025312, -0.0000025297,0.0000025228,0.0000025066,0.0000024812,0.0000024521, -0.0000024256,0.0000024006,0.0000023800,0.0000023650,0.0000023578, -0.0000023569,0.0000023614,0.0000023709,0.0000023849,0.0000024029, -0.0000024248,0.0000024499,0.0000024756,0.0000024968,0.0000025108, -0.0000025173,0.0000025183,0.0000025169,0.0000025144,0.0000025121, -0.0000025108,0.0000025106,0.0000025112,0.0000025111,0.0000025106, -0.0000025040,0.0000024847,0.0000024569,0.0000024321,0.0000024162, -0.0000024080,0.0000024046,0.0000024022,0.0000023992,0.0000023969, -0.0000023973,0.0000024008,0.0000024051,0.0000024076,0.0000024065, -0.0000024011,0.0000023930,0.0000023835,0.0000023726,0.0000023614, -0.0000023506,0.0000023412,0.0000023343,0.0000023293,0.0000023254, -0.0000023234,0.0000023237,0.0000023269,0.0000023346,0.0000023470, -0.0000023617,0.0000023745,0.0000023826,0.0000023861,0.0000023860, -0.0000023827,0.0000023774,0.0000023711,0.0000023643,0.0000023576, -0.0000023547,0.0000023557,0.0000023558,0.0000023528,0.0000023495, -0.0000023502,0.0000023538,0.0000023553,0.0000023554,0.0000023578, -0.0000023617,0.0000023641,0.0000023638,0.0000023601,0.0000023516, -0.0000023420,0.0000023360,0.0000023322,0.0000023257,0.0000023156, -0.0000023076,0.0000023056,0.0000023073,0.0000023110,0.0000023140, -0.0000023162,0.0000023179,0.0000023192,0.0000023204,0.0000023203, -0.0000023183,0.0000023140,0.0000023084,0.0000023037,0.0000023009, -0.0000023000,0.0000023014,0.0000023058,0.0000023133,0.0000023227, -0.0000023345,0.0000023450,0.0000023463,0.0000023406,0.0000023363, -0.0000023341,0.0000023320,0.0000023303,0.0000023298,0.0000023393, -0.0000023637,0.0000023828,0.0000023897,0.0000023924,0.0000023941, -0.0000024031,0.0000024247,0.0000024617,0.0000025184,0.0000025640, -0.0000025707,0.0000025489,0.0000025181,0.0000024918,0.0000024705, -0.0000024681,0.0000024805,0.0000024851,0.0000024734,0.0000024490, -0.0000024448,0.0000024626,0.0000024824,0.0000024902,0.0000025091, -0.0000025459,0.0000025841,0.0000026103,0.0000026226,0.0000026262, -0.0000026264,0.0000026251,0.0000026210,0.0000026136,0.0000026029, -0.0000025901,0.0000025759,0.0000025626,0.0000025536,0.0000025501, -0.0000025513,0.0000025555,0.0000025600,0.0000025661,0.0000025737, -0.0000025540,0.0000025600,0.0000025666,0.0000025708,0.0000025708, -0.0000025672,0.0000025603,0.0000025518,0.0000025427,0.0000025325, -0.0000025207,0.0000025070,0.0000024918,0.0000024772,0.0000024631, -0.0000024477,0.0000024316,0.0000024192,0.0000024141,0.0000024171, -0.0000024211,0.0000024220,0.0000024205,0.0000024195,0.0000024201, -0.0000024213,0.0000024210,0.0000024206,0.0000024194,0.0000024191, -0.0000024194,0.0000024205,0.0000024213,0.0000024239,0.0000024273, -0.0000024313,0.0000024350,0.0000024383,0.0000024409,0.0000024422, -0.0000024423,0.0000024413,0.0000024384,0.0000024352,0.0000024309, -0.0000024254,0.0000024209,0.0000024168,0.0000024131,0.0000024101, -0.0000024083,0.0000024077,0.0000024079,0.0000024090,0.0000024114, -0.0000024143,0.0000024182,0.0000024221,0.0000024263,0.0000024312, -0.0000024365,0.0000024415,0.0000024452,0.0000024480,0.0000024502, -0.0000024519,0.0000024522,0.0000024494,0.0000024444,0.0000024425, -0.0000024418,0.0000024388,0.0000024356,0.0000024337,0.0000024315, -0.0000024302,0.0000024307,0.0000024326,0.0000024324,0.0000024277, -0.0000024226,0.0000024153,0.0000024101,0.0000024153,0.0000024259, -0.0000024339,0.0000024421,0.0000024575,0.0000024751,0.0000024877, -0.0000024950,0.0000025019,0.0000025094,0.0000025137,0.0000025183, -0.0000025262,0.0000025369,0.0000025479,0.0000025593,0.0000025670, -0.0000025656,0.0000025605,0.0000025518,0.0000025425,0.0000025357, -0.0000025313,0.0000025260,0.0000025212,0.0000025208,0.0000025239, -0.0000025285,0.0000025330,0.0000025401,0.0000025498,0.0000025567, -0.0000025594,0.0000025609,0.0000025637,0.0000025683,0.0000025723, -0.0000025759,0.0000025792,0.0000025806,0.0000025802,0.0000025781, -0.0000025736,0.0000025674,0.0000025638,0.0000025631,0.0000025622, -0.0000025584,0.0000025520,0.0000025452,0.0000025382,0.0000025320, -0.0000025294,0.0000025262,0.0000025174,0.0000025098,0.0000025096, -0.0000025145,0.0000025188,0.0000025203,0.0000025188,0.0000025139, -0.0000025090,0.0000025078,0.0000025098,0.0000025136,0.0000025159, -0.0000025163,0.0000025159,0.0000025150,0.0000025124,0.0000025078, -0.0000025046,0.0000025049,0.0000025060,0.0000025057,0.0000025042, -0.0000025032,0.0000025033,0.0000025048,0.0000025069,0.0000025095, -0.0000025124,0.0000025148,0.0000025166,0.0000025181,0.0000025200, -0.0000025219,0.0000025197,0.0000025099,0.0000025013,0.0000025026, -0.0000025090,0.0000025097,0.0000025052,0.0000025010,0.0000025013, -0.0000025048,0.0000025101,0.0000025186,0.0000025299,0.0000025384, -0.0000025388,0.0000025327,0.0000025235,0.0000025172,0.0000025161, -0.0000025175,0.0000025209,0.0000025256,0.0000025295,0.0000025305, -0.0000025288,0.0000025240,0.0000025191,0.0000025157,0.0000025101, -0.0000024988,0.0000024854,0.0000024784,0.0000024785,0.0000024806, -0.0000024807,0.0000024761,0.0000024674,0.0000024604,0.0000024581, -0.0000024581,0.0000024580,0.0000024595,0.0000024648,0.0000024719, -0.0000024772,0.0000024800,0.0000024823,0.0000024853,0.0000024886, -0.0000024918,0.0000024948,0.0000024979,0.0000025004,0.0000025016, -0.0000025017,0.0000025021,0.0000025039,0.0000025067,0.0000025095, -0.0000025101,0.0000025037,0.0000024913,0.0000024761,0.0000024638, -0.0000024622,0.0000024805,0.0000025280,0.0000025723,0.0000025917, -0.0000025972,0.0000026034,0.0000026104,0.0000026147,0.0000026184, -0.0000026240,0.0000026294,0.0000026313,0.0000026299,0.0000026281, -0.0000026280,0.0000026287,0.0000026279,0.0000026269,0.0000026246, -0.0000026207,0.0000026152,0.0000026094,0.0000026047,0.0000026004, -0.0000025976,0.0000025966,0.0000025971,0.0000025993,0.0000026015, -0.0000026024,0.0000026021,0.0000026009,0.0000025985,0.0000025948, -0.0000025904,0.0000025869,0.0000025854,0.0000025870,0.0000025897, -0.0000025916,0.0000025934,0.0000025956,0.0000025966,0.0000025952, -0.0000025928,0.0000025916,0.0000025926,0.0000025950,0.0000025964, -0.0000025955,0.0000025926,0.0000025874,0.0000025808,0.0000025754, -0.0000025721,0.0000025705,0.0000025715,0.0000025747,0.0000025779, -0.0000025792,0.0000025775,0.0000025734,0.0000025688,0.0000025648, -0.0000025607,0.0000025553,0.0000025482,0.0000025410,0.0000025362, -0.0000025364,0.0000025419,0.0000025503,0.0000025569,0.0000025580, -0.0000025522,0.0000025396,0.0000025260,0.0000025172,0.0000025145, -0.0000025154,0.0000025269,0.0000025413,0.0000025436,0.0000025346, -0.0000025238,0.0000025190,0.0000025186,0.0000025208,0.0000025244, -0.0000025292,0.0000025348,0.0000025396,0.0000025426,0.0000025441, -0.0000025450,0.0000025466,0.0000025485,0.0000025501,0.0000025499, -0.0000025448,0.0000025391,0.0000025389,0.0000025441,0.0000025464, -0.0000025424,0.0000025356,0.0000025302,0.0000025213,0.0000024995, -0.0000024780,0.0000024703,0.0000024706,0.0000024717,0.0000024681, -0.0000024629,0.0000024623,0.0000024679,0.0000024810,0.0000024975, -0.0000025140,0.0000025288,0.0000025410,0.0000025489,0.0000025527, -0.0000025542,0.0000025583,0.0000025664,0.0000025751,0.0000025835, -0.0000025919,0.0000025970,0.0000025978,0.0000025981,0.0000025997, -0.0000026007,0.0000025981,0.0000025893,0.0000025818,0.0000025813, -0.0000025850,0.0000025904,0.0000025961,0.0000026010,0.0000026040, -0.0000026052,0.0000026058,0.0000026062,0.0000026058,0.0000026049, -0.0000026044,0.0000026050,0.0000026065,0.0000026076,0.0000026069, -0.0000026050,0.0000026025,0.0000026003,0.0000025990,0.0000025983, -0.0000025972,0.0000025957,0.0000025931,0.0000025894,0.0000025859, -0.0000025813,0.0000025758,0.0000025696,0.0000025634,0.0000025583, -0.0000025559,0.0000025551,0.0000025559,0.0000025579,0.0000025596, -0.0000025611,0.0000025631,0.0000025647,0.0000025650,0.0000025637, -0.0000025611,0.0000025580,0.0000025544,0.0000025500,0.0000025450, -0.0000025391,0.0000025324,0.0000025231,0.0000025109,0.0000024997, -0.0000024885,0.0000024812,0.0000024773,0.0000024752,0.0000024734, -0.0000024722,0.0000024716,0.0000024705,0.0000024697,0.0000024699, -0.0000024707,0.0000024720,0.0000024735,0.0000024750,0.0000024766, -0.0000024774,0.0000024769,0.0000024753,0.0000024739,0.0000024755, -0.0000024822,0.0000024951,0.0000025142,0.0000025397,0.0000025683, -0.0000025929,0.0000026087,0.0000026188,0.0000026297,0.0000026459, -0.0000026638,0.0000026778,0.0000026840,0.0000026795,0.0000026712, -0.0000026618,0.0000026528,0.0000026447,0.0000026363,0.0000026248, -0.0000026091,0.0000025926,0.0000025797,0.0000025712,0.0000025630, -0.0000025487,0.0000025288,0.0000025122,0.0000025070,0.0000025104, -0.0000025116,0.0000025057,0.0000024976,0.0000024955,0.0000024935, -0.0000024883,0.0000024835,0.0000024803,0.0000024808,0.0000024900, -0.0000025067,0.0000025214,0.0000025198,0.0000025039,0.0000025318, -0.0000026176,0.0000026416,0.0000026374,0.0000026315,0.0000026305, -0.0000026322,0.0000026329,0.0000026304,0.0000026260,0.0000026252, -0.0000026280,0.0000026280,0.0000026246,0.0000026214,0.0000026146, -0.0000026076,0.0000025849,0.0000025209,0.0000024891,0.0000024840, -0.0000024765,0.0000024678,0.0000024650,0.0000024692,0.0000024730, -0.0000024734,0.0000024734,0.0000024758,0.0000024827,0.0000024925, -0.0000025014,0.0000025078,0.0000025110,0.0000025117,0.0000025105, -0.0000025100,0.0000025081,0.0000025050,0.0000025016,0.0000024997, -0.0000024997,0.0000024998,0.0000025019,0.0000025095,0.0000025201, -0.0000025247,0.0000025252,0.0000025246,0.0000025212,0.0000025176, -0.0000025187,0.0000025228,0.0000025225,0.0000025169,0.0000025115, -0.0000025141,0.0000025208,0.0000025232,0.0000025208,0.0000025188, -0.0000025212,0.0000025311,0.0000025472,0.0000025619,0.0000025697, -0.0000025756,0.0000025857,0.0000025943,0.0000025916,0.0000025829, -0.0000025792,0.0000025883,0.0000026098,0.0000026378,0.0000026659, -0.0000026862,0.0000026934,0.0000026931,0.0000026923,0.0000026955, -0.0000027029,0.0000027101,0.0000027131,0.0000027121,0.0000027082, -0.0000027037,0.0000026997,0.0000026946,0.0000026887,0.0000026849, -0.0000026852,0.0000026893,0.0000026950,0.0000026985,0.0000026990, -0.0000026982,0.0000026998,0.0000027040,0.0000027073,0.0000027097, -0.0000027126,0.0000027155,0.0000027167,0.0000027166,0.0000027156, -0.0000027143,0.0000027131,0.0000027120,0.0000027096,0.0000027053, -0.0000026994,0.0000026942,0.0000026905,0.0000026872,0.0000026841, -0.0000026807,0.0000026751,0.0000026674,0.0000026594,0.0000026522, -0.0000026457,0.0000026394,0.0000026316,0.0000026203,0.0000026063, -0.0000025932,0.0000025831,0.0000025753,0.0000025681,0.0000025605, -0.0000025534,0.0000025476,0.0000025433,0.0000025409,0.0000025414, -0.0000025439,0.0000025482,0.0000025522,0.0000025540,0.0000025529, -0.0000025505,0.0000025500,0.0000025545,0.0000025668,0.0000025759, -0.0000025746,0.0000025680,0.0000025652,0.0000025668,0.0000025691, -0.0000025695,0.0000025681,0.0000025649,0.0000025620,0.0000025607, -0.0000025605,0.0000025579,0.0000025523,0.0000025518,0.0000025597, -0.0000025648,0.0000025613,0.0000025532,0.0000025347,0.0000025028, -0.0000024796,0.0000024711,0.0000024551,0.0000024272,0.0000024039, -0.0000023914,0.0000023761,0.0000023498,0.0000023235,0.0000023078, -0.0000023034,0.0000023078,0.0000023276,0.0000023516,0.0000023717, -0.0000024009,0.0000024349,0.0000024623,0.0000024965,0.0000025294, -0.0000025410,0.0000025408,0.0000025398,0.0000025357,0.0000025221, -0.0000025040,0.0000024974,0.0000025036,0.0000025124,0.0000025148, -0.0000025121,0.0000025088,0.0000025098,0.0000025135,0.0000025122, -0.0000024999,0.0000024826,0.0000024725,0.0000024702,0.0000024696, -0.0000024692,0.0000024707,0.0000024745,0.0000024799,0.0000024859, -0.0000024911,0.0000024967,0.0000025037,0.0000025121,0.0000025212, -0.0000025296,0.0000025363,0.0000025410,0.0000025445,0.0000025469, -0.0000025472,0.0000025437,0.0000025372,0.0000025307,0.0000025266, -0.0000025271,0.0000025327,0.0000025393,0.0000025401,0.0000025357, -0.0000025308,0.0000025304,0.0000025373,0.0000025531,0.0000025724, -0.0000025834,0.0000025845,0.0000025835,0.0000025803,0.0000025764, -0.0000025748,0.0000025742,0.0000025719,0.0000025677,0.0000025638, -0.0000025623,0.0000025635,0.0000025682,0.0000025769,0.0000025874, -0.0000025992,0.0000026129,0.0000026245,0.0000026316,0.0000026384, -0.0000026486,0.0000026603,0.0000026706,0.0000026785,0.0000026842, -0.0000026887,0.0000026911,0.0000026907,0.0000026854,0.0000026737, -0.0000026532,0.0000026350,0.0000026349,0.0000026514,0.0000026752, -0.0000026939,0.0000027049,0.0000027087,0.0000027049,0.0000027005, -0.0000026991,0.0000026968,0.0000026963,0.0000026991,0.0000027035, -0.0000027076,0.0000027122,0.0000027188,0.0000027283,0.0000027394, -0.0000027489,0.0000027552,0.0000027592,0.0000027620,0.0000027639, -0.0000027658,0.0000027682,0.0000027702,0.0000027727,0.0000027760, -0.0000027779,0.0000027770,0.0000027738,0.0000027711,0.0000027722, -0.0000027770,0.0000027804,0.0000027783,0.0000027724,0.0000027645, -0.0000027533,0.0000027406,0.0000027318,0.0000027289,0.0000027299, -0.0000027307,0.0000027309,0.0000027324,0.0000027327,0.0000027287, -0.0000027242,0.0000027222,0.0000027221,0.0000027236,0.0000027254, -0.0000027260,0.0000027242,0.0000027203,0.0000027136,0.0000027054, -0.0000026989,0.0000026960,0.0000026959,0.0000026969,0.0000026981, -0.0000027002,0.0000027038,0.0000027072,0.0000027062,0.0000026932, -0.0000026745,0.0000026641,0.0000026648,0.0000026700,0.0000026783, -0.0000026875,0.0000026930,0.0000026936,0.0000026918,0.0000026887, -0.0000026840,0.0000026788,0.0000026758,0.0000026750,0.0000026751, -0.0000026748,0.0000026749,0.0000026761,0.0000026753,0.0000026665, -0.0000026524,0.0000026410,0.0000026303,0.0000026125,0.0000025943, -0.0000025836,0.0000025770,0.0000025741,0.0000025738,0.0000025729, -0.0000025686,0.0000025613,0.0000025560,0.0000025522,0.0000025363, -0.0000025063,0.0000024855,0.0000024879,0.0000024977,0.0000024989, -0.0000024930,0.0000024872,0.0000024842,0.0000024817,0.0000024792, -0.0000024769,0.0000024741,0.0000024698,0.0000024620,0.0000024520, -0.0000024413,0.0000024307,0.0000024228,0.0000024158,0.0000024074, -0.0000024029,0.0000024034,0.0000024010,0.0000023968,0.0000024014, -0.0000024129,0.0000024202,0.0000024192,0.0000024266,0.0000024625, -0.0000025137,0.0000025447,0.0000025525,0.0000025542,0.0000025606, -0.0000025730,0.0000025842,0.0000025874,0.0000025841,0.0000025698, -0.0000025472,0.0000025215,0.0000024948,0.0000024832,0.0000025097, -0.0000025670,0.0000026152,0.0000026577,0.0000027049,0.0000027345, -0.0000027414,0.0000027440,0.0000027469,0.0000027474,0.0000027374, -0.0000027258,0.0000027216,0.0000027158,0.0000027123,0.0000027076, -0.0000026923,0.0000026758,0.0000026599,0.0000026407,0.0000026132, -0.0000025802,0.0000025603,0.0000025534,0.0000025459,0.0000025402, -0.0000025386,0.0000025405,0.0000025410,0.0000025382,0.0000025379, -0.0000025368,0.0000025350,0.0000025341,0.0000025339,0.0000025334, -0.0000025282,0.0000025107,0.0000024803,0.0000024453,0.0000024128, -0.0000023854,0.0000023632,0.0000023491,0.0000023406,0.0000023372, -0.0000023375,0.0000023420,0.0000023508,0.0000023628,0.0000023784, -0.0000023987,0.0000024241,0.0000024519,0.0000024772,0.0000024966, -0.0000025080,0.0000025133,0.0000025139,0.0000025128,0.0000025117, -0.0000025113,0.0000025100,0.0000025067,0.0000024951,0.0000024715, -0.0000024437,0.0000024219,0.0000024078,0.0000023990,0.0000023952, -0.0000023947,0.0000023945,0.0000023925,0.0000023886,0.0000023845, -0.0000023819,0.0000023806,0.0000023788,0.0000023748,0.0000023690, -0.0000023625,0.0000023560,0.0000023495,0.0000023435,0.0000023382, -0.0000023334,0.0000023292,0.0000023250,0.0000023219,0.0000023214, -0.0000023231,0.0000023275,0.0000023359,0.0000023471,0.0000023584, -0.0000023679,0.0000023744,0.0000023773,0.0000023768,0.0000023733, -0.0000023683,0.0000023625,0.0000023560,0.0000023495,0.0000023462, -0.0000023472,0.0000023487,0.0000023469,0.0000023422,0.0000023406, -0.0000023428,0.0000023448,0.0000023463,0.0000023500,0.0000023557, -0.0000023598,0.0000023601,0.0000023562,0.0000023465,0.0000023369, -0.0000023328,0.0000023291,0.0000023189,0.0000023060,0.0000022992, -0.0000022990,0.0000023017,0.0000023048,0.0000023072,0.0000023082, -0.0000023078,0.0000023060,0.0000023046,0.0000023042,0.0000023055, -0.0000023067,0.0000023055,0.0000023025,0.0000022994,0.0000022969, -0.0000022964,0.0000022981,0.0000023042,0.0000023147,0.0000023284, -0.0000023420,0.0000023478,0.0000023452,0.0000023403,0.0000023377, -0.0000023353,0.0000023334,0.0000023316,0.0000023346,0.0000023538, -0.0000023778,0.0000023892,0.0000023911,0.0000023913,0.0000023950, -0.0000024124,0.0000024440,0.0000024962,0.0000025510,0.0000025694, -0.0000025533,0.0000025228,0.0000024925,0.0000024638,0.0000024552, -0.0000024677,0.0000024809,0.0000024783,0.0000024575,0.0000024387, -0.0000024400,0.0000024599,0.0000024760,0.0000024831,0.0000024954, -0.0000025198,0.0000025481,0.0000025703,0.0000025828,0.0000025874, -0.0000025858,0.0000025794,0.0000025688,0.0000025551,0.0000025402, -0.0000025261,0.0000025147,0.0000025084,0.0000025079,0.0000025132, -0.0000025220,0.0000025300,0.0000025379,0.0000025466,0.0000025260, -0.0000025323,0.0000025391,0.0000025450,0.0000025470,0.0000025456, -0.0000025400,0.0000025312,0.0000025212,0.0000025103,0.0000024986, -0.0000024860,0.0000024724,0.0000024582,0.0000024423,0.0000024262, -0.0000024155,0.0000024135,0.0000024167,0.0000024239,0.0000024258, -0.0000024225,0.0000024176,0.0000024155,0.0000024164,0.0000024191, -0.0000024213,0.0000024229,0.0000024237,0.0000024225,0.0000024224, -0.0000024223,0.0000024222,0.0000024233,0.0000024256,0.0000024292, -0.0000024322,0.0000024350,0.0000024376,0.0000024397,0.0000024409, -0.0000024409,0.0000024395,0.0000024370,0.0000024329,0.0000024275, -0.0000024216,0.0000024160,0.0000024114,0.0000024080,0.0000024063, -0.0000024063,0.0000024073,0.0000024089,0.0000024110,0.0000024135, -0.0000024168,0.0000024204,0.0000024253,0.0000024320,0.0000024388, -0.0000024437,0.0000024467,0.0000024485,0.0000024503,0.0000024517, -0.0000024523,0.0000024498,0.0000024447,0.0000024432,0.0000024427, -0.0000024396,0.0000024364,0.0000024345,0.0000024324,0.0000024312, -0.0000024314,0.0000024333,0.0000024325,0.0000024266,0.0000024209, -0.0000024134,0.0000024067,0.0000024101,0.0000024203,0.0000024285, -0.0000024376,0.0000024546,0.0000024732,0.0000024854,0.0000024926, -0.0000024999,0.0000025083,0.0000025144,0.0000025208,0.0000025297, -0.0000025407,0.0000025536,0.0000025661,0.0000025714,0.0000025679, -0.0000025590,0.0000025482,0.0000025389,0.0000025338,0.0000025307, -0.0000025258,0.0000025218,0.0000025217,0.0000025252,0.0000025294, -0.0000025334,0.0000025403,0.0000025500,0.0000025567,0.0000025587, -0.0000025593,0.0000025606,0.0000025641,0.0000025679,0.0000025709, -0.0000025743,0.0000025777,0.0000025786,0.0000025773,0.0000025734, -0.0000025682,0.0000025632,0.0000025612,0.0000025609,0.0000025609, -0.0000025579,0.0000025510,0.0000025431,0.0000025361,0.0000025315, -0.0000025302,0.0000025272,0.0000025179,0.0000025107,0.0000025108, -0.0000025143,0.0000025175,0.0000025180,0.0000025148,0.0000025085, -0.0000025041,0.0000025038,0.0000025064,0.0000025112,0.0000025152, -0.0000025168,0.0000025165,0.0000025155,0.0000025128,0.0000025076, -0.0000025029,0.0000025009,0.0000025016,0.0000025027,0.0000025029, -0.0000025029,0.0000025035,0.0000025048,0.0000025063,0.0000025083, -0.0000025110,0.0000025138,0.0000025161,0.0000025180,0.0000025200, -0.0000025211,0.0000025173,0.0000025061,0.0000024970,0.0000024975, -0.0000025045,0.0000025074,0.0000025035,0.0000024976,0.0000024964, -0.0000024994,0.0000025040,0.0000025095,0.0000025185,0.0000025287, -0.0000025335,0.0000025303,0.0000025224,0.0000025152,0.0000025130, -0.0000025145,0.0000025189,0.0000025251,0.0000025302,0.0000025322, -0.0000025305,0.0000025246,0.0000025184,0.0000025152,0.0000025123, -0.0000025030,0.0000024890,0.0000024799,0.0000024791,0.0000024818, -0.0000024831,0.0000024803,0.0000024723,0.0000024634,0.0000024585, -0.0000024574,0.0000024572,0.0000024574,0.0000024599,0.0000024655, -0.0000024708,0.0000024729,0.0000024731,0.0000024737,0.0000024751, -0.0000024771,0.0000024794,0.0000024817,0.0000024826,0.0000024806, -0.0000024771,0.0000024752,0.0000024770,0.0000024828,0.0000024892, -0.0000024936,0.0000024941,0.0000024889,0.0000024796,0.0000024693, -0.0000024621,0.0000024645,0.0000024949,0.0000025437,0.0000025796, -0.0000025921,0.0000025962,0.0000026029,0.0000026102,0.0000026152, -0.0000026198,0.0000026255,0.0000026302,0.0000026318,0.0000026324, -0.0000026337,0.0000026344,0.0000026333,0.0000026315,0.0000026290, -0.0000026257,0.0000026211,0.0000026152,0.0000026090,0.0000026037, -0.0000025996,0.0000025971,0.0000025961,0.0000025971,0.0000025995, -0.0000026014,0.0000026019,0.0000026016,0.0000026006,0.0000025981, -0.0000025936,0.0000025888,0.0000025857,0.0000025857,0.0000025874, -0.0000025890,0.0000025906,0.0000025934,0.0000025959,0.0000025961, -0.0000025951,0.0000025948,0.0000025955,0.0000025972,0.0000025981, -0.0000025971,0.0000025943,0.0000025896,0.0000025831,0.0000025764, -0.0000025714,0.0000025692,0.0000025701,0.0000025734,0.0000025765, -0.0000025775,0.0000025758,0.0000025726,0.0000025699,0.0000025678, -0.0000025639,0.0000025568,0.0000025472,0.0000025371,0.0000025296, -0.0000025271,0.0000025298,0.0000025389,0.0000025500,0.0000025577, -0.0000025573,0.0000025484,0.0000025332,0.0000025200,0.0000025143, -0.0000025136,0.0000025177,0.0000025291,0.0000025424,0.0000025447, -0.0000025365,0.0000025242,0.0000025171,0.0000025158,0.0000025177, -0.0000025221,0.0000025269,0.0000025316,0.0000025363,0.0000025405, -0.0000025434,0.0000025450,0.0000025468,0.0000025493,0.0000025520, -0.0000025525,0.0000025491,0.0000025436,0.0000025425,0.0000025451, -0.0000025457,0.0000025399,0.0000025300,0.0000025263,0.0000025231, -0.0000025085,0.0000024868,0.0000024762,0.0000024749,0.0000024740, -0.0000024730,0.0000024734,0.0000024751,0.0000024819,0.0000024939, -0.0000025078,0.0000025207,0.0000025321,0.0000025408,0.0000025460, -0.0000025478,0.0000025492,0.0000025544,0.0000025617,0.0000025685, -0.0000025758,0.0000025824,0.0000025865,0.0000025891,0.0000025927, -0.0000025979,0.0000026005,0.0000025983,0.0000025912,0.0000025856, -0.0000025846,0.0000025858,0.0000025883,0.0000025903,0.0000025899, -0.0000025871,0.0000025844,0.0000025842,0.0000025855,0.0000025861, -0.0000025868,0.0000025888,0.0000025918,0.0000025950,0.0000025971, -0.0000025981,0.0000025987,0.0000025994,0.0000025996,0.0000025994, -0.0000025978,0.0000025954,0.0000025914,0.0000025862,0.0000025810, -0.0000025754,0.0000025696,0.0000025643,0.0000025589,0.0000025549, -0.0000025533,0.0000025532,0.0000025538,0.0000025544,0.0000025549, -0.0000025550,0.0000025551,0.0000025543,0.0000025526,0.0000025500, -0.0000025468,0.0000025440,0.0000025425,0.0000025425,0.0000025429, -0.0000025418,0.0000025387,0.0000025335,0.0000025245,0.0000025130, -0.0000024994,0.0000024861,0.0000024744,0.0000024633,0.0000024573, -0.0000024539,0.0000024533,0.0000024535,0.0000024531,0.0000024524, -0.0000024517,0.0000024515,0.0000024523,0.0000024538,0.0000024563, -0.0000024595,0.0000024622,0.0000024634,0.0000024628,0.0000024613, -0.0000024604,0.0000024621,0.0000024672,0.0000024768,0.0000024938, -0.0000025190,0.0000025487,0.0000025771,0.0000025986,0.0000026122, -0.0000026232,0.0000026367,0.0000026532,0.0000026682,0.0000026756, -0.0000026737,0.0000026684,0.0000026600,0.0000026516,0.0000026432, -0.0000026346,0.0000026243,0.0000026111,0.0000025971,0.0000025852, -0.0000025765,0.0000025663,0.0000025511,0.0000025315,0.0000025149, -0.0000025092,0.0000025110,0.0000025088,0.0000024988,0.0000024944, -0.0000024936,0.0000024900,0.0000024858,0.0000024809,0.0000024775, -0.0000024823,0.0000024973,0.0000025159,0.0000025207,0.0000025032, -0.0000025170,0.0000026040,0.0000026381,0.0000026354,0.0000026291, -0.0000026282,0.0000026299,0.0000026308,0.0000026283,0.0000026244, -0.0000026242,0.0000026279,0.0000026284,0.0000026255,0.0000026227, -0.0000026165,0.0000026083,0.0000025970,0.0000025459,0.0000024923, -0.0000024803,0.0000024759,0.0000024674,0.0000024623,0.0000024645, -0.0000024700,0.0000024730,0.0000024727,0.0000024719,0.0000024755, -0.0000024852,0.0000024956,0.0000025038,0.0000025096,0.0000025124, -0.0000025126,0.0000025115,0.0000025088,0.0000025043,0.0000025002, -0.0000024982,0.0000024991,0.0000025013,0.0000025065,0.0000025151, -0.0000025233,0.0000025266,0.0000025269,0.0000025260,0.0000025225, -0.0000025188,0.0000025191,0.0000025211,0.0000025199,0.0000025134, -0.0000025070,0.0000025077,0.0000025133,0.0000025167,0.0000025149, -0.0000025108,0.0000025102,0.0000025143,0.0000025241,0.0000025387, -0.0000025531,0.0000025624,0.0000025692,0.0000025794,0.0000025879, -0.0000025853,0.0000025788,0.0000025783,0.0000025898,0.0000026112, -0.0000026377,0.0000026654,0.0000026865,0.0000026946,0.0000026938, -0.0000026931,0.0000026964,0.0000027021,0.0000027065,0.0000027086, -0.0000027077,0.0000027045,0.0000027011,0.0000026954,0.0000026877, -0.0000026820,0.0000026826,0.0000026878,0.0000026938,0.0000026975, -0.0000026979,0.0000026960,0.0000026954,0.0000026980,0.0000027025, -0.0000027065,0.0000027100,0.0000027136,0.0000027161,0.0000027166, -0.0000027158,0.0000027147,0.0000027138,0.0000027123,0.0000027088, -0.0000027028,0.0000026960,0.0000026909,0.0000026883,0.0000026864, -0.0000026833,0.0000026778,0.0000026697,0.0000026604,0.0000026526, -0.0000026475,0.0000026434,0.0000026376,0.0000026284,0.0000026159, -0.0000026024,0.0000025909,0.0000025822,0.0000025751,0.0000025683, -0.0000025615,0.0000025556,0.0000025512,0.0000025475,0.0000025447, -0.0000025439,0.0000025447,0.0000025464,0.0000025481,0.0000025500, -0.0000025503,0.0000025477,0.0000025442,0.0000025439,0.0000025507, -0.0000025647,0.0000025748,0.0000025751,0.0000025700,0.0000025650, -0.0000025627,0.0000025625,0.0000025621,0.0000025603,0.0000025581, -0.0000025571,0.0000025566,0.0000025537,0.0000025507,0.0000025540, -0.0000025636,0.0000025670,0.0000025629,0.0000025546,0.0000025369, -0.0000025050,0.0000024812,0.0000024735,0.0000024603,0.0000024333, -0.0000024077,0.0000023937,0.0000023817,0.0000023581,0.0000023286, -0.0000023067,0.0000022964,0.0000022954,0.0000023059,0.0000023290, -0.0000023535,0.0000023787,0.0000024136,0.0000024461,0.0000024751, -0.0000025110,0.0000025348,0.0000025383,0.0000025382,0.0000025375, -0.0000025295,0.0000025111,0.0000024968,0.0000024977,0.0000025075, -0.0000025145,0.0000025140,0.0000025109,0.0000025112,0.0000025159, -0.0000025172,0.0000025073,0.0000024916,0.0000024819,0.0000024781, -0.0000024741,0.0000024705,0.0000024700,0.0000024734,0.0000024794, -0.0000024854,0.0000024897,0.0000024922,0.0000024943,0.0000024977, -0.0000025037,0.0000025122,0.0000025213,0.0000025296,0.0000025359, -0.0000025402,0.0000025427,0.0000025423,0.0000025385,0.0000025329, -0.0000025282,0.0000025261,0.0000025279,0.0000025352,0.0000025415, -0.0000025406,0.0000025351,0.0000025306,0.0000025314,0.0000025410, -0.0000025590,0.0000025768,0.0000025843,0.0000025845,0.0000025833, -0.0000025781,0.0000025719,0.0000025683,0.0000025652,0.0000025600, -0.0000025548,0.0000025532,0.0000025548,0.0000025582,0.0000025636, -0.0000025721,0.0000025815,0.0000025919,0.0000026044,0.0000026154, -0.0000026220,0.0000026287,0.0000026397,0.0000026538,0.0000026668, -0.0000026761,0.0000026820,0.0000026857,0.0000026879,0.0000026879, -0.0000026834,0.0000026725,0.0000026535,0.0000026356,0.0000026345, -0.0000026508,0.0000026753,0.0000026954,0.0000027074,0.0000027111, -0.0000027081,0.0000027040,0.0000027027,0.0000026996,0.0000026973, -0.0000026996,0.0000027047,0.0000027084,0.0000027106,0.0000027152, -0.0000027243,0.0000027352,0.0000027432,0.0000027477,0.0000027504, -0.0000027527,0.0000027556,0.0000027593,0.0000027631,0.0000027670, -0.0000027719,0.0000027771,0.0000027803,0.0000027796,0.0000027754, -0.0000027700,0.0000027655,0.0000027647,0.0000027665,0.0000027679, -0.0000027669,0.0000027633,0.0000027546,0.0000027418,0.0000027308, -0.0000027250,0.0000027244,0.0000027259,0.0000027278,0.0000027310, -0.0000027333,0.0000027307,0.0000027254,0.0000027215,0.0000027201, -0.0000027194,0.0000027185,0.0000027176,0.0000027170,0.0000027160, -0.0000027125,0.0000027066,0.0000027003,0.0000026957,0.0000026944, -0.0000026950,0.0000026966,0.0000027000,0.0000027042,0.0000027047, -0.0000026975,0.0000026812,0.0000026662,0.0000026606,0.0000026623, -0.0000026675,0.0000026760,0.0000026857,0.0000026917,0.0000026925, -0.0000026902,0.0000026857,0.0000026802,0.0000026762,0.0000026748, -0.0000026751,0.0000026762,0.0000026765,0.0000026763,0.0000026772, -0.0000026767,0.0000026694,0.0000026556,0.0000026440,0.0000026341, -0.0000026182,0.0000025998,0.0000025879,0.0000025806,0.0000025766, -0.0000025760,0.0000025749,0.0000025703,0.0000025632,0.0000025583, -0.0000025535,0.0000025355,0.0000025048,0.0000024877,0.0000024923, -0.0000025002,0.0000024976,0.0000024893,0.0000024833,0.0000024795, -0.0000024745,0.0000024698,0.0000024674,0.0000024658,0.0000024635, -0.0000024580,0.0000024505,0.0000024416,0.0000024307,0.0000024211, -0.0000024143,0.0000024057,0.0000023971,0.0000023957,0.0000023951, -0.0000023911,0.0000023934,0.0000024055,0.0000024174,0.0000024203, -0.0000024240,0.0000024461,0.0000024903,0.0000025280,0.0000025414, -0.0000025444,0.0000025475,0.0000025518,0.0000025571,0.0000025613, -0.0000025613,0.0000025539,0.0000025402,0.0000025238,0.0000025023, -0.0000024801,0.0000024815,0.0000025280,0.0000025893,0.0000026360, -0.0000026823,0.0000027236,0.0000027379,0.0000027407,0.0000027436, -0.0000027460,0.0000027416,0.0000027285,0.0000027221,0.0000027184, -0.0000027142,0.0000027087,0.0000026903,0.0000026713,0.0000026551, -0.0000026361,0.0000026106,0.0000025811,0.0000025627,0.0000025565, -0.0000025499,0.0000025444,0.0000025423,0.0000025439,0.0000025460, -0.0000025455,0.0000025467,0.0000025466,0.0000025450,0.0000025424, -0.0000025396,0.0000025376,0.0000025369,0.0000025330,0.0000025137, -0.0000024779,0.0000024364,0.0000023995,0.0000023713,0.0000023544, -0.0000023446,0.0000023377,0.0000023324,0.0000023291,0.0000023280, -0.0000023325,0.0000023409,0.0000023510,0.0000023631,0.0000023796, -0.0000024012,0.0000024263,0.0000024515,0.0000024734,0.0000024893, -0.0000024984,0.0000025016,0.0000025014,0.0000024994,0.0000024936, -0.0000024800,0.0000024575,0.0000024341,0.0000024164,0.0000024021, -0.0000023896,0.0000023822,0.0000023808,0.0000023825,0.0000023847, -0.0000023848,0.0000023822,0.0000023773,0.0000023716,0.0000023661, -0.0000023608,0.0000023559,0.0000023516,0.0000023486,0.0000023464, -0.0000023432,0.0000023394,0.0000023347,0.0000023297,0.0000023252, -0.0000023215,0.0000023205,0.0000023215,0.0000023245,0.0000023295, -0.0000023363,0.0000023434,0.0000023501,0.0000023561,0.0000023609, -0.0000023640,0.0000023645,0.0000023627,0.0000023593,0.0000023547, -0.0000023489,0.0000023431,0.0000023390,0.0000023386,0.0000023402, -0.0000023401,0.0000023358,0.0000023322,0.0000023327,0.0000023351, -0.0000023379,0.0000023428,0.0000023498,0.0000023550,0.0000023552, -0.0000023502,0.0000023403,0.0000023328,0.0000023297,0.0000023241, -0.0000023117,0.0000023000,0.0000022960,0.0000022976,0.0000023012, -0.0000023040,0.0000023055,0.0000023059,0.0000023054,0.0000023034, -0.0000022996,0.0000022953,0.0000022922,0.0000022920,0.0000022941, -0.0000022955,0.0000022951,0.0000022938,0.0000022932,0.0000022937, -0.0000022969,0.0000023059,0.0000023213,0.0000023384,0.0000023488, -0.0000023482,0.0000023432,0.0000023408,0.0000023390,0.0000023373, -0.0000023350,0.0000023342,0.0000023458,0.0000023721,0.0000023889, -0.0000023913,0.0000023911,0.0000023911,0.0000024025,0.0000024295, -0.0000024760,0.0000025352,0.0000025662,0.0000025565,0.0000025282, -0.0000024947,0.0000024589,0.0000024422,0.0000024518,0.0000024709, -0.0000024758,0.0000024661,0.0000024446,0.0000024310,0.0000024357, -0.0000024529,0.0000024690,0.0000024781,0.0000024847,0.0000024943, -0.0000025062,0.0000025158,0.0000025205,0.0000025200,0.0000025162, -0.0000025096,0.0000025017,0.0000024934,0.0000024858,0.0000024798, -0.0000024755,0.0000024739,0.0000024770,0.0000024858,0.0000024968, -0.0000025076,0.0000025181,0.0000024958,0.0000025028,0.0000025092, -0.0000025145,0.0000025165,0.0000025154,0.0000025111,0.0000025038, -0.0000024947,0.0000024850,0.0000024748,0.0000024635,0.0000024499, -0.0000024356,0.0000024226,0.0000024133,0.0000024129,0.0000024190, -0.0000024264,0.0000024278,0.0000024213,0.0000024095,0.0000024016, -0.0000023994,0.0000024003,0.0000024038,0.0000024091,0.0000024152, -0.0000024203,0.0000024228,0.0000024244,0.0000024254,0.0000024259, -0.0000024260,0.0000024274,0.0000024297,0.0000024316,0.0000024333, -0.0000024347,0.0000024359,0.0000024370,0.0000024375,0.0000024375, -0.0000024369,0.0000024348,0.0000024308,0.0000024264,0.0000024208, -0.0000024160,0.0000024122,0.0000024097,0.0000024084,0.0000024085, -0.0000024096,0.0000024108,0.0000024126,0.0000024156,0.0000024194, -0.0000024250,0.0000024327,0.0000024398,0.0000024439,0.0000024462, -0.0000024474,0.0000024484,0.0000024498,0.0000024509,0.0000024490, -0.0000024438,0.0000024423,0.0000024424,0.0000024396,0.0000024365, -0.0000024347,0.0000024326,0.0000024312,0.0000024313,0.0000024330, -0.0000024319,0.0000024252,0.0000024191,0.0000024120,0.0000024044, -0.0000024050,0.0000024145,0.0000024229,0.0000024328,0.0000024514, -0.0000024712,0.0000024831,0.0000024904,0.0000024981,0.0000025066, -0.0000025136,0.0000025216,0.0000025317,0.0000025438,0.0000025582, -0.0000025706,0.0000025732,0.0000025689,0.0000025582,0.0000025463, -0.0000025382,0.0000025345,0.0000025311,0.0000025267,0.0000025237, -0.0000025243,0.0000025277,0.0000025315,0.0000025350,0.0000025420, -0.0000025519,0.0000025580,0.0000025593,0.0000025589,0.0000025588, -0.0000025602,0.0000025630,0.0000025659,0.0000025689,0.0000025725, -0.0000025754,0.0000025757,0.0000025726,0.0000025673,0.0000025623, -0.0000025592,0.0000025583,0.0000025591,0.0000025597,0.0000025568, -0.0000025492,0.0000025411,0.0000025350,0.0000025319,0.0000025312, -0.0000025279,0.0000025187,0.0000025119,0.0000025113,0.0000025133, -0.0000025158,0.0000025152,0.0000025099,0.0000025037,0.0000024998, -0.0000024995,0.0000025020,0.0000025075,0.0000025134,0.0000025168, -0.0000025172,0.0000025160,0.0000025125,0.0000025069,0.0000025012, -0.0000024973,0.0000024967,0.0000024980,0.0000024994,0.0000025007, -0.0000025021,0.0000025037,0.0000025047,0.0000025060,0.0000025083, -0.0000025108,0.0000025129,0.0000025147,0.0000025156,0.0000025142, -0.0000025077,0.0000024987,0.0000024941,0.0000024957,0.0000025017, -0.0000025043,0.0000025009,0.0000024943,0.0000024925,0.0000024962, -0.0000025010,0.0000025044,0.0000025100,0.0000025193,0.0000025261, -0.0000025260,0.0000025196,0.0000025126,0.0000025100,0.0000025118, -0.0000025175,0.0000025252,0.0000025311,0.0000025331,0.0000025314, -0.0000025252,0.0000025184,0.0000025151,0.0000025131,0.0000025051, -0.0000024914,0.0000024815,0.0000024803,0.0000024837,0.0000024858, -0.0000024840,0.0000024771,0.0000024678,0.0000024604,0.0000024576, -0.0000024573,0.0000024572,0.0000024576,0.0000024604,0.0000024649, -0.0000024678,0.0000024680,0.0000024674,0.0000024672,0.0000024673, -0.0000024678,0.0000024681,0.0000024659,0.0000024599,0.0000024528, -0.0000024494,0.0000024518,0.0000024606,0.0000024699,0.0000024760, -0.0000024801,0.0000024812,0.0000024783,0.0000024737,0.0000024673, -0.0000024627,0.0000024722,0.0000025095,0.0000025568,0.0000025846, -0.0000025923,0.0000025963,0.0000026036,0.0000026114,0.0000026173, -0.0000026218,0.0000026257,0.0000026288,0.0000026319,0.0000026351, -0.0000026372,0.0000026367,0.0000026343,0.0000026307,0.0000026268, -0.0000026227,0.0000026180,0.0000026127,0.0000026076,0.0000026034, -0.0000026005,0.0000025988,0.0000025992,0.0000026013,0.0000026033, -0.0000026043,0.0000026043,0.0000026037,0.0000026021,0.0000025990, -0.0000025945,0.0000025903,0.0000025883,0.0000025889,0.0000025903, -0.0000025918,0.0000025942,0.0000025974,0.0000025995,0.0000026003, -0.0000026007,0.0000026005,0.0000025998,0.0000025989,0.0000025974, -0.0000025949,0.0000025909,0.0000025851,0.0000025782,0.0000025719, -0.0000025689,0.0000025696,0.0000025732,0.0000025766,0.0000025780, -0.0000025769,0.0000025744,0.0000025727,0.0000025714,0.0000025668, -0.0000025572,0.0000025449,0.0000025334,0.0000025246,0.0000025195, -0.0000025193,0.0000025254,0.0000025368,0.0000025492,0.0000025560, -0.0000025546,0.0000025428,0.0000025264,0.0000025147,0.0000025122, -0.0000025147,0.0000025199,0.0000025306,0.0000025426,0.0000025461, -0.0000025405,0.0000025291,0.0000025194,0.0000025161,0.0000025171, -0.0000025215,0.0000025262,0.0000025302,0.0000025339,0.0000025378, -0.0000025413,0.0000025442,0.0000025472,0.0000025501,0.0000025518, -0.0000025516,0.0000025493,0.0000025468,0.0000025447,0.0000025450, -0.0000025440,0.0000025353,0.0000025244,0.0000025234,0.0000025257, -0.0000025168,0.0000024992,0.0000024873,0.0000024809,0.0000024778, -0.0000024788,0.0000024818,0.0000024866,0.0000024949,0.0000025054, -0.0000025162,0.0000025258,0.0000025338,0.0000025393,0.0000025422, -0.0000025434,0.0000025468,0.0000025526,0.0000025574,0.0000025615, -0.0000025662,0.0000025705,0.0000025739,0.0000025785,0.0000025866, -0.0000025950,0.0000025992,0.0000025983,0.0000025941,0.0000025901, -0.0000025887,0.0000025892,0.0000025904,0.0000025901,0.0000025864, -0.0000025796,0.0000025744,0.0000025736,0.0000025754,0.0000025779, -0.0000025817,0.0000025867,0.0000025912,0.0000025941,0.0000025950, -0.0000025949,0.0000025951,0.0000025952,0.0000025949,0.0000025941, -0.0000025924,0.0000025896,0.0000025853,0.0000025805,0.0000025761, -0.0000025709,0.0000025654,0.0000025599,0.0000025552,0.0000025520, -0.0000025505,0.0000025498,0.0000025491,0.0000025481,0.0000025468, -0.0000025459,0.0000025445,0.0000025414,0.0000025370,0.0000025315, -0.0000025260,0.0000025222,0.0000025209,0.0000025217,0.0000025244, -0.0000025275,0.0000025294,0.0000025275,0.0000025221,0.0000025143, -0.0000025028,0.0000024893,0.0000024734,0.0000024594,0.0000024494, -0.0000024421,0.0000024397,0.0000024389,0.0000024392,0.0000024390, -0.0000024372,0.0000024346,0.0000024326,0.0000024318,0.0000024326, -0.0000024347,0.0000024372,0.0000024397,0.0000024418,0.0000024433, -0.0000024444,0.0000024464,0.0000024497,0.0000024553,0.0000024640, -0.0000024784,0.0000025005,0.0000025300,0.0000025609,0.0000025863, -0.0000026036,0.0000026153,0.0000026264,0.0000026412,0.0000026574, -0.0000026679,0.0000026690,0.0000026653,0.0000026592,0.0000026509, -0.0000026413,0.0000026322,0.0000026230,0.0000026120,0.0000025994, -0.0000025887,0.0000025797,0.0000025695,0.0000025541,0.0000025329, -0.0000025138,0.0000025102,0.0000025097,0.0000025011,0.0000024937, -0.0000024927,0.0000024908,0.0000024865,0.0000024815,0.0000024758, -0.0000024753,0.0000024868,0.0000025070,0.0000025199,0.0000025085, -0.0000025053,0.0000025847,0.0000026320,0.0000026328,0.0000026269, -0.0000026254,0.0000026274,0.0000026284,0.0000026263,0.0000026235, -0.0000026242,0.0000026279,0.0000026284,0.0000026258,0.0000026233, -0.0000026180,0.0000026084,0.0000026020,0.0000025730,0.0000025108, -0.0000024789,0.0000024734,0.0000024681,0.0000024619,0.0000024604, -0.0000024643,0.0000024699,0.0000024717,0.0000024699,0.0000024700, -0.0000024777,0.0000024883,0.0000024969,0.0000025035,0.0000025085, -0.0000025117,0.0000025137,0.0000025133,0.0000025098,0.0000025062, -0.0000025039,0.0000025038,0.0000025068,0.0000025128,0.0000025201, -0.0000025260,0.0000025287,0.0000025289,0.0000025277,0.0000025239, -0.0000025201,0.0000025198,0.0000025207,0.0000025198,0.0000025128, -0.0000025044,0.0000025036,0.0000025074,0.0000025110,0.0000025107, -0.0000025067,0.0000025029,0.0000025022,0.0000025056,0.0000025148, -0.0000025296,0.0000025459,0.0000025563,0.0000025629,0.0000025729, -0.0000025813,0.0000025803,0.0000025764,0.0000025788,0.0000025919, -0.0000026115,0.0000026365,0.0000026649,0.0000026867,0.0000026941, -0.0000026928,0.0000026914,0.0000026935,0.0000026978,0.0000027028, -0.0000027058,0.0000027053,0.0000027031,0.0000026986,0.0000026898, -0.0000026821,0.0000026807,0.0000026846,0.0000026897,0.0000026930, -0.0000026943,0.0000026940,0.0000026932,0.0000026940,0.0000026967, -0.0000027003,0.0000027037,0.0000027071,0.0000027103,0.0000027119, -0.0000027115,0.0000027100,0.0000027086,0.0000027064,0.0000027024, -0.0000026972,0.0000026916,0.0000026870,0.0000026838,0.0000026811, -0.0000026770,0.0000026700,0.0000026614,0.0000026532,0.0000026471, -0.0000026431,0.0000026391,0.0000026328,0.0000026237,0.0000026123, -0.0000025999,0.0000025891,0.0000025811,0.0000025744,0.0000025679, -0.0000025618,0.0000025567,0.0000025530,0.0000025498,0.0000025474, -0.0000025471,0.0000025486,0.0000025494,0.0000025485,0.0000025479, -0.0000025473,0.0000025456,0.0000025423,0.0000025395,0.0000025403, -0.0000025488,0.0000025626,0.0000025728,0.0000025742,0.0000025708, -0.0000025646,0.0000025595,0.0000025564,0.0000025542,0.0000025529, -0.0000025525,0.0000025520,0.0000025504,0.0000025507,0.0000025573, -0.0000025660,0.0000025678,0.0000025622,0.0000025551,0.0000025381, -0.0000025065,0.0000024822,0.0000024754,0.0000024647,0.0000024392, -0.0000024120,0.0000023959,0.0000023860,0.0000023666,0.0000023356, -0.0000023067,0.0000022895,0.0000022857,0.0000022902,0.0000023074, -0.0000023329,0.0000023585,0.0000023897,0.0000024268,0.0000024569, -0.0000024888,0.0000025218,0.0000025354,0.0000025358,0.0000025359, -0.0000025334,0.0000025191,0.0000025005,0.0000024943,0.0000025009, -0.0000025115,0.0000025151,0.0000025134,0.0000025129,0.0000025173, -0.0000025198,0.0000025135,0.0000025013,0.0000024934,0.0000024883, -0.0000024813,0.0000024761,0.0000024752,0.0000024778,0.0000024831, -0.0000024892,0.0000024935,0.0000024958,0.0000024965,0.0000024965, -0.0000024970,0.0000024998,0.0000025060,0.0000025146,0.0000025234, -0.0000025301,0.0000025343,0.0000025361,0.0000025356,0.0000025327, -0.0000025297,0.0000025273,0.0000025264,0.0000025301,0.0000025383, -0.0000025427,0.0000025405,0.0000025345,0.0000025313,0.0000025333, -0.0000025454,0.0000025648,0.0000025796,0.0000025838,0.0000025838, -0.0000025816,0.0000025737,0.0000025649,0.0000025590,0.0000025535, -0.0000025478,0.0000025455,0.0000025472,0.0000025510,0.0000025541, -0.0000025579,0.0000025644,0.0000025719,0.0000025811,0.0000025930, -0.0000026035,0.0000026103,0.0000026182,0.0000026313,0.0000026472, -0.0000026612,0.0000026715,0.0000026774,0.0000026800,0.0000026822, -0.0000026832,0.0000026801,0.0000026707,0.0000026535,0.0000026357, -0.0000026339,0.0000026505,0.0000026760,0.0000026971,0.0000027098, -0.0000027140,0.0000027109,0.0000027071,0.0000027063,0.0000027036, -0.0000027009,0.0000027023,0.0000027066,0.0000027089,0.0000027098, -0.0000027140,0.0000027223,0.0000027313,0.0000027369,0.0000027389, -0.0000027396,0.0000027420,0.0000027466,0.0000027519,0.0000027573, -0.0000027632,0.0000027698,0.0000027759,0.0000027799,0.0000027804, -0.0000027776,0.0000027709,0.0000027631,0.0000027570,0.0000027551, -0.0000027568,0.0000027595,0.0000027599,0.0000027549,0.0000027443, -0.0000027313,0.0000027211,0.0000027167,0.0000027180,0.0000027235, -0.0000027297,0.0000027331,0.0000027329,0.0000027291,0.0000027238, -0.0000027200,0.0000027171,0.0000027140,0.0000027116,0.0000027109, -0.0000027111,0.0000027100,0.0000027066,0.0000027014,0.0000026963, -0.0000026938,0.0000026942,0.0000026962,0.0000026990,0.0000027002, -0.0000026957,0.0000026838,0.0000026698,0.0000026610,0.0000026589, -0.0000026602,0.0000026660,0.0000026748,0.0000026836,0.0000026890, -0.0000026892,0.0000026858,0.0000026799,0.0000026739,0.0000026711, -0.0000026714,0.0000026739,0.0000026768,0.0000026782,0.0000026780, -0.0000026781,0.0000026771,0.0000026699,0.0000026570,0.0000026460, -0.0000026371,0.0000026227,0.0000026046,0.0000025916,0.0000025831, -0.0000025781,0.0000025775,0.0000025764,0.0000025712,0.0000025641, -0.0000025600,0.0000025537,0.0000025321,0.0000025015,0.0000024900, -0.0000024978,0.0000025030,0.0000024964,0.0000024868,0.0000024801, -0.0000024730,0.0000024642,0.0000024582,0.0000024567,0.0000024565, -0.0000024559,0.0000024529,0.0000024479,0.0000024409,0.0000024304, -0.0000024196,0.0000024131,0.0000024049,0.0000023935,0.0000023882, -0.0000023878,0.0000023860,0.0000023872,0.0000023979,0.0000024132, -0.0000024215,0.0000024252,0.0000024370,0.0000024681,0.0000025070, -0.0000025280,0.0000025332,0.0000025373,0.0000025406,0.0000025418, -0.0000025435,0.0000025443,0.0000025425,0.0000025371,0.0000025281, -0.0000025133,0.0000024897,0.0000024703,0.0000024898,0.0000025537, -0.0000026129,0.0000026589,0.0000027060,0.0000027332,0.0000027372, -0.0000027395,0.0000027424,0.0000027428,0.0000027327,0.0000027226, -0.0000027192,0.0000027163,0.0000027119,0.0000026931,0.0000026719, -0.0000026566,0.0000026378,0.0000026135,0.0000025871,0.0000025665, -0.0000025577,0.0000025524,0.0000025482,0.0000025461,0.0000025473, -0.0000025504,0.0000025516,0.0000025540,0.0000025560,0.0000025561, -0.0000025543,0.0000025507,0.0000025455,0.0000025411,0.0000025400, -0.0000025351,0.0000025115,0.0000024683,0.0000024211,0.0000023830, -0.0000023605,0.0000023517,0.0000023470,0.0000023410,0.0000023344, -0.0000023281,0.0000023237,0.0000023227,0.0000023277,0.0000023354, -0.0000023438,0.0000023530,0.0000023656,0.0000023829,0.0000024047, -0.0000024282,0.0000024497,0.0000024651,0.0000024725,0.0000024731, -0.0000024693,0.0000024583,0.0000024414,0.0000024246,0.0000024104, -0.0000023951,0.0000023795,0.0000023698,0.0000023674,0.0000023686, -0.0000023707,0.0000023721,0.0000023728,0.0000023724,0.0000023698, -0.0000023639,0.0000023565,0.0000023503,0.0000023459,0.0000023440, -0.0000023438,0.0000023425,0.0000023391,0.0000023342,0.0000023291, -0.0000023248,0.0000023220,0.0000023206,0.0000023207,0.0000023223, -0.0000023246,0.0000023279,0.0000023318,0.0000023355,0.0000023390, -0.0000023422,0.0000023454,0.0000023480,0.0000023492,0.0000023496, -0.0000023496,0.0000023478,0.0000023441,0.0000023393,0.0000023347, -0.0000023315,0.0000023318,0.0000023328,0.0000023300,0.0000023257, -0.0000023250,0.0000023269,0.0000023310,0.0000023370,0.0000023441, -0.0000023488,0.0000023482,0.0000023416,0.0000023338,0.0000023294, -0.0000023257,0.0000023176,0.0000023061,0.0000022981,0.0000022971, -0.0000023000,0.0000023040,0.0000023066,0.0000023076,0.0000023073, -0.0000023061,0.0000023037,0.0000023000,0.0000022950,0.0000022886, -0.0000022825,0.0000022797,0.0000022804,0.0000022831,0.0000022858, -0.0000022879,0.0000022901,0.0000022924,0.0000022988,0.0000023138, -0.0000023340,0.0000023482,0.0000023498,0.0000023455,0.0000023432, -0.0000023421,0.0000023406,0.0000023390,0.0000023378,0.0000023433, -0.0000023663,0.0000023879,0.0000023937,0.0000023918,0.0000023897, -0.0000023951,0.0000024171,0.0000024581,0.0000025173,0.0000025603, -0.0000025594,0.0000025336,0.0000024981,0.0000024572,0.0000024323, -0.0000024335,0.0000024536,0.0000024707,0.0000024723,0.0000024572, -0.0000024366,0.0000024270,0.0000024311,0.0000024439,0.0000024578, -0.0000024688,0.0000024770,0.0000024829,0.0000024866,0.0000024890, -0.0000024899,0.0000024895,0.0000024877,0.0000024851,0.0000024817, -0.0000024780,0.0000024744,0.0000024697,0.0000024645,0.0000024618, -0.0000024633,0.0000024684,0.0000024763,0.0000024867,0.0000024642, -0.0000024706,0.0000024780,0.0000024840,0.0000024862,0.0000024852, -0.0000024815,0.0000024755,0.0000024677,0.0000024587,0.0000024491, -0.0000024381,0.0000024274,0.0000024187,0.0000024160,0.0000024158, -0.0000024207,0.0000024275,0.0000024280,0.0000024189,0.0000024035, -0.0000023905,0.0000023852,0.0000023850,0.0000023868,0.0000023894, -0.0000023930,0.0000023988,0.0000024062,0.0000024131,0.0000024187, -0.0000024228,0.0000024251,0.0000024263,0.0000024280,0.0000024300, -0.0000024314,0.0000024325,0.0000024328,0.0000024326,0.0000024322, -0.0000024317,0.0000024312,0.0000024310,0.0000024303,0.0000024290, -0.0000024266,0.0000024230,0.0000024187,0.0000024158,0.0000024129, -0.0000024107,0.0000024097,0.0000024097,0.0000024103,0.0000024112, -0.0000024137,0.0000024179,0.0000024240,0.0000024317,0.0000024381, -0.0000024418,0.0000024434,0.0000024440,0.0000024444,0.0000024459, -0.0000024475,0.0000024465,0.0000024415,0.0000024397,0.0000024402, -0.0000024384,0.0000024358,0.0000024340,0.0000024316,0.0000024299, -0.0000024301,0.0000024321,0.0000024308,0.0000024237,0.0000024172, -0.0000024107,0.0000024023,0.0000024010,0.0000024083,0.0000024172, -0.0000024277,0.0000024472,0.0000024684,0.0000024805,0.0000024882, -0.0000024965,0.0000025050,0.0000025121,0.0000025212,0.0000025330, -0.0000025467,0.0000025616,0.0000025728,0.0000025738,0.0000025691, -0.0000025578,0.0000025461,0.0000025397,0.0000025359,0.0000025319, -0.0000025281,0.0000025265,0.0000025279,0.0000025312,0.0000025346, -0.0000025379,0.0000025446,0.0000025540,0.0000025598,0.0000025602, -0.0000025588,0.0000025574,0.0000025576,0.0000025592,0.0000025612, -0.0000025633,0.0000025662,0.0000025700,0.0000025725,0.0000025720, -0.0000025674,0.0000025613,0.0000025572,0.0000025554,0.0000025555, -0.0000025576,0.0000025585,0.0000025548,0.0000025471,0.0000025398, -0.0000025348,0.0000025329,0.0000025322,0.0000025284,0.0000025196, -0.0000025129,0.0000025113,0.0000025125,0.0000025141,0.0000025120, -0.0000025060,0.0000025005,0.0000024966,0.0000024952,0.0000024970, -0.0000025028,0.0000025104,0.0000025163,0.0000025184,0.0000025166, -0.0000025122,0.0000025063,0.0000024997,0.0000024946,0.0000024917, -0.0000024910,0.0000024916,0.0000024931,0.0000024951,0.0000024964, -0.0000024968,0.0000024974,0.0000024988,0.0000025004,0.0000025019, -0.0000025030,0.0000025030,0.0000025007,0.0000024967,0.0000024939, -0.0000024938,0.0000024963,0.0000024996,0.0000025003,0.0000024959, -0.0000024906,0.0000024908,0.0000024954,0.0000024992,0.0000025010, -0.0000025047,0.0000025127,0.0000025195,0.0000025202,0.0000025146, -0.0000025078,0.0000025062,0.0000025090,0.0000025165,0.0000025257, -0.0000025325,0.0000025342,0.0000025322,0.0000025257,0.0000025191, -0.0000025156,0.0000025131,0.0000025055,0.0000024924,0.0000024831, -0.0000024827,0.0000024864,0.0000024888,0.0000024873,0.0000024814, -0.0000024723,0.0000024632,0.0000024583,0.0000024576,0.0000024576, -0.0000024575,0.0000024579,0.0000024603,0.0000024632,0.0000024643, -0.0000024638,0.0000024628,0.0000024615,0.0000024603,0.0000024584, -0.0000024528,0.0000024423,0.0000024320,0.0000024281,0.0000024315, -0.0000024419,0.0000024532,0.0000024613,0.0000024675,0.0000024725, -0.0000024749,0.0000024753,0.0000024732,0.0000024658,0.0000024624, -0.0000024799,0.0000025264,0.0000025698,0.0000025891,0.0000025937, -0.0000025979,0.0000026051,0.0000026130,0.0000026191,0.0000026226, -0.0000026249,0.0000026279,0.0000026317,0.0000026348,0.0000026359, -0.0000026344,0.0000026311,0.0000026269,0.0000026225,0.0000026180, -0.0000026130,0.0000026082,0.0000026040,0.0000026009,0.0000025996, -0.0000026002,0.0000026028,0.0000026052,0.0000026063,0.0000026066, -0.0000026062,0.0000026048,0.0000026023,0.0000025985,0.0000025945, -0.0000025919,0.0000025924,0.0000025944,0.0000025965,0.0000025987, -0.0000026016,0.0000026041,0.0000026053,0.0000026052,0.0000026038, -0.0000026010,0.0000025984,0.0000025966,0.0000025947,0.0000025916, -0.0000025868,0.0000025807,0.0000025740,0.0000025696,0.0000025698, -0.0000025732,0.0000025768,0.0000025788,0.0000025792,0.0000025782, -0.0000025770,0.0000025748,0.0000025684,0.0000025563,0.0000025421, -0.0000025301,0.0000025220,0.0000025168,0.0000025143,0.0000025154, -0.0000025232,0.0000025356,0.0000025478,0.0000025534,0.0000025502, -0.0000025367,0.0000025208,0.0000025122,0.0000025117,0.0000025158, -0.0000025215,0.0000025305,0.0000025410,0.0000025454,0.0000025438, -0.0000025363,0.0000025267,0.0000025206,0.0000025195,0.0000025225, -0.0000025269,0.0000025303,0.0000025326,0.0000025357,0.0000025398, -0.0000025441,0.0000025473,0.0000025482,0.0000025481,0.0000025482, -0.0000025484,0.0000025478,0.0000025469,0.0000025453,0.0000025412, -0.0000025312,0.0000025218,0.0000025223,0.0000025268,0.0000025253, -0.0000025137,0.0000025000,0.0000024892,0.0000024833,0.0000024831, -0.0000024865,0.0000024941,0.0000025039,0.0000025139,0.0000025225, -0.0000025302,0.0000025355,0.0000025387,0.0000025404,0.0000025435, -0.0000025488,0.0000025528,0.0000025538,0.0000025548,0.0000025571, -0.0000025598,0.0000025637,0.0000025714,0.0000025820,0.0000025915, -0.0000025966,0.0000025971,0.0000025944,0.0000025915,0.0000025909, -0.0000025913,0.0000025916,0.0000025902,0.0000025846,0.0000025780, -0.0000025748,0.0000025754,0.0000025780,0.0000025812,0.0000025840, -0.0000025860,0.0000025863,0.0000025851,0.0000025835,0.0000025833, -0.0000025846,0.0000025861,0.0000025873,0.0000025876,0.0000025870, -0.0000025845,0.0000025802,0.0000025762,0.0000025716,0.0000025650, -0.0000025569,0.0000025489,0.0000025423,0.0000025368,0.0000025324, -0.0000025286,0.0000025254,0.0000025225,0.0000025201,0.0000025182, -0.0000025159,0.0000025123,0.0000025073,0.0000025017,0.0000024967, -0.0000024934,0.0000024921,0.0000024928,0.0000024960,0.0000025011, -0.0000025062,0.0000025102,0.0000025119,0.0000025091,0.0000025010, -0.0000024911,0.0000024770,0.0000024625,0.0000024494,0.0000024404, -0.0000024350,0.0000024301,0.0000024285,0.0000024275,0.0000024257, -0.0000024228,0.0000024194,0.0000024168,0.0000024154,0.0000024148, -0.0000024151,0.0000024165,0.0000024193,0.0000024229,0.0000024261, -0.0000024290,0.0000024332,0.0000024386,0.0000024445,0.0000024531, -0.0000024662,0.0000024867,0.0000025140,0.0000025441,0.0000025713, -0.0000025918,0.0000026048,0.0000026155,0.0000026296,0.0000026464, -0.0000026592,0.0000026648,0.0000026628,0.0000026587,0.0000026497, -0.0000026389,0.0000026295,0.0000026214,0.0000026117,0.0000026011, -0.0000025911,0.0000025818,0.0000025712,0.0000025546,0.0000025292, -0.0000025122,0.0000025096,0.0000025039,0.0000024934,0.0000024911, -0.0000024906,0.0000024861,0.0000024807,0.0000024734,0.0000024682, -0.0000024758,0.0000024955,0.0000025154,0.0000025122,0.0000024998, -0.0000025600,0.0000026239,0.0000026313,0.0000026246,0.0000026221, -0.0000026241,0.0000026252,0.0000026241,0.0000026230,0.0000026249, -0.0000026281,0.0000026283,0.0000026253,0.0000026229,0.0000026183, -0.0000026082,0.0000026016,0.0000025920,0.0000025406,0.0000024856, -0.0000024701,0.0000024673,0.0000024631,0.0000024595,0.0000024587, -0.0000024634,0.0000024685,0.0000024681,0.0000024662,0.0000024711, -0.0000024811,0.0000024904,0.0000024969,0.0000025016,0.0000025053, -0.0000025100,0.0000025128,0.0000025118,0.0000025103,0.0000025085, -0.0000025079,0.0000025106,0.0000025164,0.0000025228,0.0000025279, -0.0000025305,0.0000025311,0.0000025297,0.0000025260,0.0000025221, -0.0000025208,0.0000025208,0.0000025198,0.0000025139,0.0000025049, -0.0000025014,0.0000025035,0.0000025069,0.0000025079,0.0000025049, -0.0000024990,0.0000024946,0.0000024929,0.0000024964,0.0000025059, -0.0000025220,0.0000025400,0.0000025503,0.0000025565,0.0000025666, -0.0000025746,0.0000025760,0.0000025762,0.0000025819,0.0000025934, -0.0000026103,0.0000026346,0.0000026629,0.0000026840,0.0000026910, -0.0000026891,0.0000026872,0.0000026886,0.0000026943,0.0000027008, -0.0000027042,0.0000027041,0.0000027019,0.0000026949,0.0000026852, -0.0000026802,0.0000026808,0.0000026833,0.0000026850,0.0000026868, -0.0000026887,0.0000026902,0.0000026917,0.0000026939,0.0000026963, -0.0000026983,0.0000026996,0.0000027009,0.0000027018,0.0000027012, -0.0000026993,0.0000026973,0.0000026953,0.0000026923,0.0000026887, -0.0000026849,0.0000026807,0.0000026762,0.0000026720,0.0000026675, -0.0000026617,0.0000026549,0.0000026485,0.0000026428,0.0000026373, -0.0000026318,0.0000026258,0.0000026184,0.0000026081,0.0000025960, -0.0000025861,0.0000025793,0.0000025734,0.0000025675,0.0000025622, -0.0000025576,0.0000025542,0.0000025521,0.0000025513,0.0000025520, -0.0000025546,0.0000025571,0.0000025569,0.0000025543,0.0000025507, -0.0000025466,0.0000025432,0.0000025400,0.0000025393,0.0000025413, -0.0000025497,0.0000025611,0.0000025690,0.0000025709,0.0000025682, -0.0000025625,0.0000025567,0.0000025525,0.0000025503,0.0000025496, -0.0000025493,0.0000025494,0.0000025530,0.0000025609,0.0000025675, -0.0000025667,0.0000025603,0.0000025537,0.0000025374,0.0000025062, -0.0000024822,0.0000024765,0.0000024685,0.0000024446,0.0000024166, -0.0000023980,0.0000023888,0.0000023739,0.0000023437,0.0000023091, -0.0000022838,0.0000022733,0.0000022756,0.0000022888,0.0000023117, -0.0000023384,0.0000023668,0.0000024031,0.0000024388,0.0000024682, -0.0000025020,0.0000025275,0.0000025329,0.0000025335,0.0000025334, -0.0000025248,0.0000025066,0.0000024943,0.0000024958,0.0000025059, -0.0000025147,0.0000025160,0.0000025149,0.0000025174,0.0000025215, -0.0000025187,0.0000025098,0.0000025039,0.0000024990,0.0000024906, -0.0000024842,0.0000024828,0.0000024828,0.0000024847,0.0000024880, -0.0000024915,0.0000024938,0.0000024952,0.0000024957,0.0000024951, -0.0000024946,0.0000024961,0.0000025016,0.0000025102,0.0000025190, -0.0000025251,0.0000025282,0.0000025292,0.0000025290,0.0000025286, -0.0000025286,0.0000025282,0.0000025286,0.0000025340,0.0000025423, -0.0000025449,0.0000025405,0.0000025338,0.0000025313,0.0000025360, -0.0000025512,0.0000025696,0.0000025798,0.0000025818,0.0000025818, -0.0000025773,0.0000025668,0.0000025565,0.0000025494,0.0000025438, -0.0000025401,0.0000025404,0.0000025443,0.0000025486,0.0000025502, -0.0000025512,0.0000025545,0.0000025600,0.0000025689,0.0000025809, -0.0000025915,0.0000025987,0.0000026080,0.0000026223,0.0000026385, -0.0000026533,0.0000026647,0.0000026709,0.0000026729,0.0000026751, -0.0000026775,0.0000026764,0.0000026698,0.0000026543,0.0000026366, -0.0000026348,0.0000026512,0.0000026773,0.0000026989,0.0000027115, -0.0000027146,0.0000027120,0.0000027088,0.0000027086,0.0000027079, -0.0000027067,0.0000027072,0.0000027086,0.0000027091,0.0000027096, -0.0000027126,0.0000027185,0.0000027251,0.0000027287,0.0000027289, -0.0000027293,0.0000027327,0.0000027392,0.0000027460,0.0000027526, -0.0000027592,0.0000027657,0.0000027713,0.0000027759,0.0000027787, -0.0000027781,0.0000027732,0.0000027646,0.0000027557,0.0000027495, -0.0000027485,0.0000027520,0.0000027551,0.0000027542,0.0000027476, -0.0000027354,0.0000027213,0.0000027122,0.0000027113,0.0000027181, -0.0000027271,0.0000027326,0.0000027340,0.0000027327,0.0000027278, -0.0000027219,0.0000027163,0.0000027114,0.0000027081,0.0000027065, -0.0000027061,0.0000027062,0.0000027050,0.0000027015,0.0000026972, -0.0000026946,0.0000026948,0.0000026956,0.0000026941,0.0000026891, -0.0000026802,0.0000026699,0.0000026625,0.0000026599,0.0000026588, -0.0000026596,0.0000026659,0.0000026749,0.0000026822,0.0000026854, -0.0000026840,0.0000026790,0.0000026728,0.0000026677,0.0000026658, -0.0000026679,0.0000026729,0.0000026778,0.0000026802,0.0000026800, -0.0000026794,0.0000026769,0.0000026686,0.0000026564,0.0000026469, -0.0000026390,0.0000026255,0.0000026084,0.0000025949,0.0000025848, -0.0000025788,0.0000025785,0.0000025776,0.0000025714,0.0000025641, -0.0000025605,0.0000025518,0.0000025262,0.0000024988,0.0000024945, -0.0000025036,0.0000025042,0.0000024950,0.0000024854,0.0000024761, -0.0000024641,0.0000024529,0.0000024477,0.0000024472,0.0000024479, -0.0000024484,0.0000024476,0.0000024448,0.0000024396,0.0000024302, -0.0000024190,0.0000024120,0.0000024046,0.0000023918,0.0000023816, -0.0000023799,0.0000023801,0.0000023818,0.0000023913,0.0000024079, -0.0000024208,0.0000024270,0.0000024340,0.0000024513,0.0000024830, -0.0000025111,0.0000025210,0.0000025249,0.0000025311,0.0000025352, -0.0000025365,0.0000025374,0.0000025377,0.0000025366,0.0000025312, -0.0000025199,0.0000025021,0.0000024767,0.0000024693,0.0000025124, -0.0000025833,0.0000026361,0.0000026828,0.0000027232,0.0000027338, -0.0000027349,0.0000027377,0.0000027395,0.0000027363,0.0000027248, -0.0000027186,0.0000027170,0.0000027153,0.0000027000,0.0000026769, -0.0000026622,0.0000026449,0.0000026219,0.0000025981,0.0000025773, -0.0000025632,0.0000025552,0.0000025515,0.0000025497,0.0000025509, -0.0000025554,0.0000025592,0.0000025631,0.0000025669,0.0000025684, -0.0000025682,0.0000025654,0.0000025589,0.0000025509,0.0000025447, -0.0000025436,0.0000025356,0.0000025031,0.0000024508,0.0000024000, -0.0000023670,0.0000023553,0.0000023531,0.0000023497,0.0000023441, -0.0000023373,0.0000023302,0.0000023230,0.0000023183,0.0000023189, -0.0000023239,0.0000023301,0.0000023364,0.0000023445,0.0000023562, -0.0000023715,0.0000023902,0.0000024097,0.0000024255,0.0000024346, -0.0000024366,0.0000024331,0.0000024244,0.0000024145,0.0000024031, -0.0000023873,0.0000023707,0.0000023610,0.0000023593,0.0000023607, -0.0000023617,0.0000023610,0.0000023595,0.0000023596,0.0000023605, -0.0000023582,0.0000023517,0.0000023443,0.0000023391,0.0000023375, -0.0000023385,0.0000023391,0.0000023372,0.0000023329,0.0000023287, -0.0000023250,0.0000023223,0.0000023208,0.0000023201,0.0000023203, -0.0000023202,0.0000023205,0.0000023223,0.0000023245,0.0000023265, -0.0000023287,0.0000023308,0.0000023328,0.0000023340,0.0000023347, -0.0000023366,0.0000023399,0.0000023418,0.0000023409,0.0000023373, -0.0000023327,0.0000023281,0.0000023258,0.0000023257,0.0000023235, -0.0000023201,0.0000023193,0.0000023213,0.0000023263,0.0000023327, -0.0000023385,0.0000023411,0.0000023390,0.0000023327,0.0000023280, -0.0000023259,0.0000023212,0.0000023124,0.0000023039,0.0000023005, -0.0000023020,0.0000023058,0.0000023086,0.0000023090,0.0000023087, -0.0000023077,0.0000023059,0.0000023035,0.0000023002,0.0000022959, -0.0000022900,0.0000022819,0.0000022734,0.0000022683,0.0000022675, -0.0000022707,0.0000022768,0.0000022836,0.0000022889,0.0000022941, -0.0000023070,0.0000023288,0.0000023468,0.0000023502,0.0000023470, -0.0000023447,0.0000023441,0.0000023433,0.0000023428,0.0000023392, -0.0000023411,0.0000023613,0.0000023864,0.0000023957,0.0000023934, -0.0000023891,0.0000023898,0.0000024071,0.0000024426,0.0000024983, -0.0000025505,0.0000025594,0.0000025393,0.0000025032,0.0000024580, -0.0000024282,0.0000024236,0.0000024337,0.0000024539,0.0000024685, -0.0000024680,0.0000024530,0.0000024350,0.0000024276,0.0000024280, -0.0000024333,0.0000024414,0.0000024505,0.0000024588,0.0000024653, -0.0000024700,0.0000024732,0.0000024741,0.0000024727,0.0000024703, -0.0000024680,0.0000024664,0.0000024660,0.0000024650,0.0000024630, -0.0000024608,0.0000024593,0.0000024581,0.0000024575,0.0000024596, -0.0000024465,0.0000024463,0.0000024494,0.0000024532,0.0000024554, -0.0000024548,0.0000024519,0.0000024469,0.0000024400,0.0000024331, -0.0000024262,0.0000024205,0.0000024188,0.0000024179,0.0000024201, -0.0000024240,0.0000024257,0.0000024241,0.0000024154,0.0000024005, -0.0000023869,0.0000023801,0.0000023791,0.0000023806,0.0000023835, -0.0000023865,0.0000023880,0.0000023888,0.0000023919,0.0000023975, -0.0000024047,0.0000024117,0.0000024167,0.0000024200,0.0000024227, -0.0000024250,0.0000024267,0.0000024278,0.0000024280,0.0000024274, -0.0000024262,0.0000024248,0.0000024237,0.0000024227,0.0000024218, -0.0000024212,0.0000024205,0.0000024192,0.0000024174,0.0000024154, -0.0000024131,0.0000024107,0.0000024090,0.0000024081,0.0000024078, -0.0000024081,0.0000024101,0.0000024147,0.0000024215,0.0000024283, -0.0000024333,0.0000024362,0.0000024377,0.0000024384,0.0000024393, -0.0000024412,0.0000024429,0.0000024428,0.0000024382,0.0000024358, -0.0000024365,0.0000024360,0.0000024342,0.0000024325,0.0000024295, -0.0000024273,0.0000024274,0.0000024296,0.0000024287,0.0000024218, -0.0000024149,0.0000024091,0.0000024007,0.0000023967,0.0000024022, -0.0000024113,0.0000024223,0.0000024419,0.0000024642,0.0000024773, -0.0000024855,0.0000024948,0.0000025037,0.0000025110,0.0000025207, -0.0000025345,0.0000025498,0.0000025638,0.0000025723,0.0000025740, -0.0000025689,0.0000025576,0.0000025471,0.0000025412,0.0000025375, -0.0000025335,0.0000025306,0.0000025301,0.0000025320,0.0000025353, -0.0000025382,0.0000025416,0.0000025479,0.0000025563,0.0000025612, -0.0000025614,0.0000025598,0.0000025567,0.0000025552,0.0000025562, -0.0000025579,0.0000025595,0.0000025609,0.0000025633,0.0000025668, -0.0000025692,0.0000025680,0.0000025622,0.0000025563,0.0000025526, -0.0000025513,0.0000025529,0.0000025562,0.0000025571,0.0000025524, -0.0000025454,0.0000025395,0.0000025356,0.0000025342,0.0000025333, -0.0000025287,0.0000025202,0.0000025130,0.0000025110,0.0000025122, -0.0000025129,0.0000025098,0.0000025039,0.0000024987,0.0000024946, -0.0000024916,0.0000024922,0.0000024974,0.0000025063,0.0000025149, -0.0000025184,0.0000025176,0.0000025129,0.0000025061,0.0000024987, -0.0000024925,0.0000024872,0.0000024836,0.0000024819,0.0000024820, -0.0000024828,0.0000024830,0.0000024828,0.0000024831,0.0000024842, -0.0000024859,0.0000024880,0.0000024901,0.0000024920,0.0000024929, -0.0000024936,0.0000024940,0.0000024947,0.0000024957,0.0000024956, -0.0000024933,0.0000024888,0.0000024877,0.0000024914,0.0000024954, -0.0000024969,0.0000024975,0.0000025016,0.0000025093,0.0000025150, -0.0000025140,0.0000025074,0.0000025015,0.0000025016,0.0000025072, -0.0000025168,0.0000025275,0.0000025348,0.0000025363,0.0000025327, -0.0000025259,0.0000025196,0.0000025159,0.0000025126,0.0000025046, -0.0000024923,0.0000024847,0.0000024856,0.0000024896,0.0000024919, -0.0000024904,0.0000024851,0.0000024764,0.0000024662,0.0000024591, -0.0000024573,0.0000024576,0.0000024578,0.0000024578,0.0000024584, -0.0000024600,0.0000024611,0.0000024607,0.0000024592,0.0000024572, -0.0000024553,0.0000024522,0.0000024442,0.0000024299,0.0000024168, -0.0000024134,0.0000024171,0.0000024271,0.0000024386,0.0000024482, -0.0000024562,0.0000024646,0.0000024716,0.0000024751,0.0000024757, -0.0000024697,0.0000024597,0.0000024621,0.0000024959,0.0000025460, -0.0000025810,0.0000025931,0.0000025960,0.0000026000,0.0000026061, -0.0000026126,0.0000026175,0.0000026211,0.0000026246,0.0000026281, -0.0000026307,0.0000026317,0.0000026313,0.0000026293,0.0000026262, -0.0000026231,0.0000026199,0.0000026159,0.0000026115,0.0000026072, -0.0000026039,0.0000026021,0.0000026027,0.0000026055,0.0000026087, -0.0000026108,0.0000026113,0.0000026106,0.0000026086,0.0000026054, -0.0000026010,0.0000025968,0.0000025943,0.0000025950,0.0000025978, -0.0000026013,0.0000026041,0.0000026062,0.0000026074,0.0000026074, -0.0000026065,0.0000026041,0.0000026004,0.0000025970,0.0000025951, -0.0000025938,0.0000025914,0.0000025879,0.0000025834,0.0000025778, -0.0000025729,0.0000025717,0.0000025738,0.0000025772,0.0000025796, -0.0000025809,0.0000025814,0.0000025808,0.0000025775,0.0000025684, -0.0000025538,0.0000025385,0.0000025276,0.0000025213,0.0000025171, -0.0000025134,0.0000025120,0.0000025145,0.0000025228,0.0000025349, -0.0000025460,0.0000025499,0.0000025453,0.0000025319,0.0000025173, -0.0000025110,0.0000025115,0.0000025159,0.0000025214,0.0000025292, -0.0000025373,0.0000025432,0.0000025440,0.0000025416,0.0000025367, -0.0000025296,0.0000025259,0.0000025264,0.0000025292,0.0000025318, -0.0000025338,0.0000025361,0.0000025396,0.0000025434,0.0000025446, -0.0000025436,0.0000025427,0.0000025432,0.0000025461,0.0000025495, -0.0000025494,0.0000025456,0.0000025393,0.0000025285,0.0000025194, -0.0000025204,0.0000025282,0.0000025323,0.0000025275,0.0000025131, -0.0000024985,0.0000024891,0.0000024860,0.0000024879,0.0000024968, -0.0000025079,0.0000025182,0.0000025278,0.0000025347,0.0000025386, -0.0000025402,0.0000025424,0.0000025475,0.0000025524,0.0000025533, -0.0000025516,0.0000025497,0.0000025493,0.0000025523,0.0000025597, -0.0000025707,0.0000025818,0.0000025904,0.0000025950,0.0000025956, -0.0000025936,0.0000025914,0.0000025906,0.0000025907,0.0000025907, -0.0000025890,0.0000025847,0.0000025804,0.0000025783,0.0000025779, -0.0000025785,0.0000025784,0.0000025780,0.0000025771,0.0000025753, -0.0000025734,0.0000025731,0.0000025753,0.0000025784,0.0000025803, -0.0000025801,0.0000025783,0.0000025750,0.0000025702,0.0000025650, -0.0000025599,0.0000025528,0.0000025433,0.0000025348,0.0000025279, -0.0000025222,0.0000025166,0.0000025114,0.0000025067,0.0000025020, -0.0000024976,0.0000024937,0.0000024901,0.0000024863,0.0000024816, -0.0000024760,0.0000024700,0.0000024642,0.0000024595,0.0000024565, -0.0000024566,0.0000024592,0.0000024645,0.0000024716,0.0000024798, -0.0000024877,0.0000024929,0.0000024929,0.0000024874,0.0000024767, -0.0000024646,0.0000024530,0.0000024434,0.0000024356,0.0000024292, -0.0000024245,0.0000024193,0.0000024156,0.0000024124,0.0000024094, -0.0000024069,0.0000024051,0.0000024034,0.0000024019,0.0000024013, -0.0000024026,0.0000024060,0.0000024098,0.0000024141,0.0000024190, -0.0000024237,0.0000024286,0.0000024353,0.0000024445,0.0000024576, -0.0000024762,0.0000024998,0.0000025267,0.0000025540,0.0000025771, -0.0000025929,0.0000026049,0.0000026193,0.0000026370,0.0000026526, -0.0000026606,0.0000026611,0.0000026576,0.0000026477,0.0000026361, -0.0000026272,0.0000026200,0.0000026117,0.0000026017,0.0000025909, -0.0000025814,0.0000025713,0.0000025500,0.0000025235,0.0000025106, -0.0000025056,0.0000024953,0.0000024902,0.0000024894,0.0000024850, -0.0000024785,0.0000024702,0.0000024619,0.0000024650,0.0000024822, -0.0000025060,0.0000025147,0.0000025001,0.0000025335,0.0000026118, -0.0000026300,0.0000026230,0.0000026186,0.0000026199,0.0000026210, -0.0000026212,0.0000026222,0.0000026253,0.0000026281,0.0000026278, -0.0000026246,0.0000026212,0.0000026168,0.0000026071,0.0000026001, -0.0000025970,0.0000025688,0.0000025044,0.0000024690,0.0000024650, -0.0000024644,0.0000024609,0.0000024566,0.0000024564,0.0000024623, -0.0000024653,0.0000024641,0.0000024663,0.0000024745,0.0000024844, -0.0000024918,0.0000024964,0.0000024988,0.0000025028,0.0000025075, -0.0000025101,0.0000025102,0.0000025090,0.0000025081,0.0000025104, -0.0000025162,0.0000025229,0.0000025286,0.0000025318,0.0000025331, -0.0000025321,0.0000025289,0.0000025247,0.0000025220,0.0000025212, -0.0000025199,0.0000025156,0.0000025074,0.0000025013,0.0000025016, -0.0000025042,0.0000025051,0.0000025031,0.0000024971,0.0000024904, -0.0000024853,0.0000024843,0.0000024880,0.0000024984,0.0000025170, -0.0000025350,0.0000025443,0.0000025505,0.0000025599,0.0000025692, -0.0000025750,0.0000025795,0.0000025851,0.0000025937,0.0000026083, -0.0000026309,0.0000026566,0.0000026753,0.0000026825,0.0000026829, -0.0000026819,0.0000026847,0.0000026915,0.0000026985,0.0000027022, -0.0000027023,0.0000026991,0.0000026906,0.0000026815,0.0000026776, -0.0000026769,0.0000026764,0.0000026770,0.0000026794,0.0000026825, -0.0000026854,0.0000026891,0.0000026930,0.0000026959,0.0000026969, -0.0000026962,0.0000026950,0.0000026932,0.0000026901,0.0000026868, -0.0000026840,0.0000026812,0.0000026785,0.0000026763,0.0000026736, -0.0000026695,0.0000026650,0.0000026609,0.0000026568,0.0000026515, -0.0000026449,0.0000026371,0.0000026294,0.0000026239,0.0000026196, -0.0000026127,0.0000026013,0.0000025898,0.0000025823,0.0000025775, -0.0000025727,0.0000025676,0.0000025630,0.0000025591,0.0000025571, -0.0000025573,0.0000025580,0.0000025585,0.0000025598,0.0000025624, -0.0000025650,0.0000025651,0.0000025629,0.0000025578,0.0000025514, -0.0000025465,0.0000025443,0.0000025446,0.0000025478,0.0000025539, -0.0000025603,0.0000025643,0.0000025650,0.0000025630,0.0000025588, -0.0000025545,0.0000025518,0.0000025507,0.0000025506,0.0000025524, -0.0000025575,0.0000025638,0.0000025671,0.0000025641,0.0000025576, -0.0000025514,0.0000025349,0.0000025044,0.0000024809,0.0000024762, -0.0000024709,0.0000024494,0.0000024209,0.0000023998,0.0000023899, -0.0000023791,0.0000023519,0.0000023138,0.0000022812,0.0000022638, -0.0000022617,0.0000022718,0.0000022918,0.0000023178,0.0000023457, -0.0000023783,0.0000024168,0.0000024496,0.0000024799,0.0000025126, -0.0000025290,0.0000025305,0.0000025305,0.0000025268,0.0000025126, -0.0000024978,0.0000024942,0.0000025005,0.0000025113,0.0000025176, -0.0000025179,0.0000025180,0.0000025203,0.0000025202,0.0000025162, -0.0000025132,0.0000025098,0.0000025013,0.0000024934,0.0000024893, -0.0000024859,0.0000024844,0.0000024859,0.0000024880,0.0000024886, -0.0000024880,0.0000024875,0.0000024878,0.0000024879,0.0000024882, -0.0000024904,0.0000024963,0.0000025050,0.0000025134,0.0000025193, -0.0000025221,0.0000025231,0.0000025243,0.0000025270,0.0000025299, -0.0000025307,0.0000025324,0.0000025395,0.0000025467,0.0000025461, -0.0000025392,0.0000025329,0.0000025322,0.0000025406,0.0000025576, -0.0000025725,0.0000025779,0.0000025785,0.0000025776,0.0000025701, -0.0000025583,0.0000025490,0.0000025430,0.0000025387,0.0000025366, -0.0000025376,0.0000025421,0.0000025454,0.0000025452,0.0000025441, -0.0000025453,0.0000025509,0.0000025603,0.0000025720,0.0000025819, -0.0000025886,0.0000025975,0.0000026115,0.0000026278,0.0000026435, -0.0000026565,0.0000026633,0.0000026647,0.0000026669,0.0000026714, -0.0000026734,0.0000026693,0.0000026564,0.0000026403,0.0000026372, -0.0000026526,0.0000026781,0.0000026989,0.0000027095,0.0000027129, -0.0000027117,0.0000027095,0.0000027101,0.0000027120,0.0000027125, -0.0000027120,0.0000027112,0.0000027102,0.0000027092,0.0000027094, -0.0000027115,0.0000027148,0.0000027170,0.0000027178,0.0000027201, -0.0000027262,0.0000027344,0.0000027421,0.0000027489,0.0000027545, -0.0000027597,0.0000027645,0.0000027695,0.0000027742,0.0000027761, -0.0000027735,0.0000027676,0.0000027584,0.0000027501,0.0000027464, -0.0000027476,0.0000027511,0.0000027531,0.0000027508,0.0000027416, -0.0000027271,0.0000027139,0.0000027096,0.0000027136,0.0000027225, -0.0000027301,0.0000027335,0.0000027335,0.0000027306,0.0000027244, -0.0000027172,0.0000027114,0.0000027075,0.0000027049,0.0000027029, -0.0000027030,0.0000027031,0.0000027016,0.0000026991,0.0000026969, -0.0000026953,0.0000026919,0.0000026838,0.0000026734,0.0000026648, -0.0000026608,0.0000026606,0.0000026606,0.0000026604,0.0000026614, -0.0000026678,0.0000026765,0.0000026811,0.0000026815,0.0000026767, -0.0000026700,0.0000026649,0.0000026622,0.0000026619,0.0000026661, -0.0000026730,0.0000026793,0.0000026824,0.0000026823,0.0000026811, -0.0000026767,0.0000026664,0.0000026545,0.0000026469,0.0000026400, -0.0000026269,0.0000026108,0.0000025973,0.0000025858,0.0000025801, -0.0000025802,0.0000025784,0.0000025707,0.0000025636,0.0000025597, -0.0000025471,0.0000025194,0.0000024980,0.0000024998,0.0000025073, -0.0000025043,0.0000024943,0.0000024842,0.0000024708,0.0000024548, -0.0000024439,0.0000024401,0.0000024395,0.0000024397,0.0000024410, -0.0000024417,0.0000024407,0.0000024377,0.0000024298,0.0000024189, -0.0000024110,0.0000024045,0.0000023916,0.0000023778,0.0000023738, -0.0000023747,0.0000023770,0.0000023853,0.0000024016,0.0000024178, -0.0000024276,0.0000024345,0.0000024425,0.0000024604,0.0000024884, -0.0000025071,0.0000025126,0.0000025188,0.0000025268,0.0000025315, -0.0000025337,0.0000025345,0.0000025337,0.0000025292,0.0000025188, -0.0000025051,0.0000024875,0.0000024683,0.0000024804,0.0000025441, -0.0000026106,0.0000026589,0.0000027047,0.0000027298,0.0000027312, -0.0000027324,0.0000027353,0.0000027359,0.0000027285,0.0000027182, -0.0000027154,0.0000027156,0.0000027086,0.0000026848,0.0000026691, -0.0000026556,0.0000026354,0.0000026131,0.0000025939,0.0000025788, -0.0000025675,0.0000025613,0.0000025589,0.0000025604,0.0000025662, -0.0000025728,0.0000025796,0.0000025858,0.0000025888,0.0000025893, -0.0000025875,0.0000025801,0.0000025678,0.0000025556,0.0000025494, -0.0000025484,0.0000025324,0.0000024863,0.0000024257,0.0000023785, -0.0000023587,0.0000023556,0.0000023536,0.0000023489,0.0000023432, -0.0000023379,0.0000023308,0.0000023221,0.0000023147,0.0000023119, -0.0000023147,0.0000023197,0.0000023242,0.0000023295,0.0000023380, -0.0000023504,0.0000023655,0.0000023809,0.0000023941,0.0000024034, -0.0000024073,0.0000024065,0.0000024027,0.0000023943,0.0000023794, -0.0000023636,0.0000023554,0.0000023544,0.0000023564,0.0000023578, -0.0000023571,0.0000023535,0.0000023497,0.0000023482,0.0000023473, -0.0000023430,0.0000023359,0.0000023299,0.0000023278,0.0000023287, -0.0000023319,0.0000023338,0.0000023319,0.0000023290,0.0000023263, -0.0000023232,0.0000023201,0.0000023179,0.0000023170,0.0000023161, -0.0000023148,0.0000023149,0.0000023168,0.0000023188,0.0000023204, -0.0000023218,0.0000023235,0.0000023247,0.0000023247,0.0000023246, -0.0000023267,0.0000023314,0.0000023361,0.0000023374,0.0000023358, -0.0000023320,0.0000023272,0.0000023227,0.0000023198,0.0000023168, -0.0000023147,0.0000023148,0.0000023175,0.0000023228,0.0000023290, -0.0000023331,0.0000023333,0.0000023303,0.0000023259,0.0000023241, -0.0000023225,0.0000023173,0.0000023098,0.0000023054,0.0000023053, -0.0000023080,0.0000023103,0.0000023100,0.0000023078,0.0000023049, -0.0000023027,0.0000023011,0.0000022993,0.0000022971,0.0000022940, -0.0000022893,0.0000022823,0.0000022737,0.0000022643,0.0000022571, -0.0000022552,0.0000022607,0.0000022722,0.0000022836,0.0000022912, -0.0000023021,0.0000023234,0.0000023443,0.0000023505,0.0000023477, -0.0000023454,0.0000023455,0.0000023454,0.0000023454,0.0000023424, -0.0000023412,0.0000023581,0.0000023848,0.0000023982,0.0000023962, -0.0000023899,0.0000023877,0.0000023990,0.0000024292,0.0000024794, -0.0000025368,0.0000025576,0.0000025442,0.0000025106,0.0000024627, -0.0000024286,0.0000024220,0.0000024231,0.0000024339,0.0000024519, -0.0000024651,0.0000024661,0.0000024553,0.0000024400,0.0000024293, -0.0000024269,0.0000024276,0.0000024292,0.0000024323,0.0000024358, -0.0000024384,0.0000024403,0.0000024408,0.0000024397,0.0000024377, -0.0000024365,0.0000024373,0.0000024404,0.0000024455,0.0000024510, -0.0000024551,0.0000024572,0.0000024571,0.0000024550,0.0000024511, -0.0000024462,0.0000024419,0.0000024395,0.0000024379,0.0000024354, -0.0000024335,0.0000024312,0.0000024282,0.0000024261,0.0000024235, -0.0000024219,0.0000024217,0.0000024230,0.0000024242,0.0000024240, -0.0000024227,0.0000024185,0.0000024102,0.0000023981,0.0000023860, -0.0000023787,0.0000023769,0.0000023773,0.0000023789,0.0000023824, -0.0000023867,0.0000023888,0.0000023883,0.0000023870,0.0000023872, -0.0000023911,0.0000023977,0.0000024040,0.0000024088,0.0000024124, -0.0000024151,0.0000024171,0.0000024187,0.0000024197,0.0000024198, -0.0000024188,0.0000024173,0.0000024159,0.0000024145,0.0000024130, -0.0000024118,0.0000024109,0.0000024102,0.0000024097,0.0000024091, -0.0000024078,0.0000024058,0.0000024037,0.0000024024,0.0000024021, -0.0000024024,0.0000024046,0.0000024095,0.0000024165,0.0000024227, -0.0000024265,0.0000024287,0.0000024301,0.0000024312,0.0000024333, -0.0000024362,0.0000024383,0.0000024384,0.0000024345,0.0000024311, -0.0000024319,0.0000024326,0.0000024318,0.0000024303,0.0000024270, -0.0000024237,0.0000024233,0.0000024251,0.0000024253,0.0000024198, -0.0000024128,0.0000024074,0.0000023996,0.0000023930,0.0000023959, -0.0000024052,0.0000024165,0.0000024355,0.0000024583,0.0000024730, -0.0000024818,0.0000024924,0.0000025025,0.0000025108,0.0000025213, -0.0000025363,0.0000025521,0.0000025646,0.0000025710,0.0000025721, -0.0000025675,0.0000025575,0.0000025486,0.0000025431,0.0000025391, -0.0000025363,0.0000025343,0.0000025346,0.0000025361,0.0000025390, -0.0000025420,0.0000025453,0.0000025508,0.0000025579,0.0000025626, -0.0000025630,0.0000025617,0.0000025583,0.0000025551,0.0000025539, -0.0000025548,0.0000025567,0.0000025581,0.0000025589,0.0000025608, -0.0000025641,0.0000025657,0.0000025629,0.0000025569,0.0000025520, -0.0000025480,0.0000025473,0.0000025505,0.0000025545,0.0000025546, -0.0000025498,0.0000025442,0.0000025397,0.0000025368,0.0000025355, -0.0000025336,0.0000025286,0.0000025204,0.0000025129,0.0000025114, -0.0000025128,0.0000025128,0.0000025087,0.0000025031,0.0000024980, -0.0000024932,0.0000024894,0.0000024889,0.0000024925,0.0000025014, -0.0000025118,0.0000025184,0.0000025185,0.0000025143,0.0000025067, -0.0000024985,0.0000024908,0.0000024844,0.0000024790,0.0000024755, -0.0000024737,0.0000024731,0.0000024730,0.0000024733,0.0000024743, -0.0000024765,0.0000024799,0.0000024834,0.0000024869,0.0000024901, -0.0000024923,0.0000024936,0.0000024937,0.0000024928,0.0000024905, -0.0000024871,0.0000024838,0.0000024835,0.0000024875,0.0000024918, -0.0000024933,0.0000024930,0.0000024944,0.0000025005,0.0000025081, -0.0000025107,0.0000025065,0.0000024989,0.0000024959,0.0000024994, -0.0000025083,0.0000025197,0.0000025308,0.0000025373,0.0000025375, -0.0000025323,0.0000025250,0.0000025190,0.0000025151,0.0000025115, -0.0000025032,0.0000024919,0.0000024868,0.0000024888,0.0000024936, -0.0000024955,0.0000024939,0.0000024885,0.0000024800,0.0000024691, -0.0000024601,0.0000024568,0.0000024571,0.0000024579,0.0000024582, -0.0000024581,0.0000024583,0.0000024586,0.0000024579,0.0000024560, -0.0000024538,0.0000024517,0.0000024483,0.0000024388,0.0000024216, -0.0000024069,0.0000024041,0.0000024075,0.0000024159,0.0000024260, -0.0000024358,0.0000024461,0.0000024584,0.0000024689,0.0000024739, -0.0000024750,0.0000024714,0.0000024616,0.0000024569,0.0000024724, -0.0000025176,0.0000025644,0.0000025895,0.0000025962,0.0000025983, -0.0000026012,0.0000026051,0.0000026086,0.0000026121,0.0000026166, -0.0000026215,0.0000026253,0.0000026277,0.0000026283,0.0000026275, -0.0000026254,0.0000026233,0.0000026215,0.0000026191,0.0000026161, -0.0000026125,0.0000026088,0.0000026063,0.0000026058,0.0000026076, -0.0000026108,0.0000026135,0.0000026152,0.0000026147,0.0000026122, -0.0000026083,0.0000026036,0.0000025992,0.0000025968,0.0000025979, -0.0000026014,0.0000026058,0.0000026091,0.0000026100,0.0000026090, -0.0000026074,0.0000026056,0.0000026024,0.0000025978,0.0000025935, -0.0000025915,0.0000025907,0.0000025891,0.0000025869,0.0000025843, -0.0000025805,0.0000025764,0.0000025745,0.0000025754,0.0000025783, -0.0000025806,0.0000025818,0.0000025828,0.0000025822,0.0000025774, -0.0000025662,0.0000025496,0.0000025344,0.0000025252,0.0000025212, -0.0000025191,0.0000025156,0.0000025117,0.0000025108,0.0000025144, -0.0000025230,0.0000025343,0.0000025438,0.0000025467,0.0000025416, -0.0000025280,0.0000025150,0.0000025104,0.0000025111,0.0000025147, -0.0000025204,0.0000025266,0.0000025337,0.0000025383,0.0000025409, -0.0000025428,0.0000025423,0.0000025386,0.0000025343,0.0000025327, -0.0000025339,0.0000025358,0.0000025367,0.0000025375,0.0000025393, -0.0000025401,0.0000025392,0.0000025377,0.0000025369,0.0000025381, -0.0000025443,0.0000025515,0.0000025519,0.0000025465,0.0000025378, -0.0000025267,0.0000025175,0.0000025188,0.0000025297,0.0000025404, -0.0000025398,0.0000025264,0.0000025084,0.0000024939,0.0000024866, -0.0000024876,0.0000024956,0.0000025072,0.0000025207,0.0000025322, -0.0000025396,0.0000025428,0.0000025447,0.0000025495,0.0000025558, -0.0000025583,0.0000025565,0.0000025517,0.0000025473,0.0000025462, -0.0000025514,0.0000025634,0.0000025760,0.0000025853,0.0000025918, -0.0000025956,0.0000025965,0.0000025950,0.0000025920,0.0000025899, -0.0000025886,0.0000025867,0.0000025828,0.0000025778,0.0000025733, -0.0000025703,0.0000025690,0.0000025687,0.0000025686,0.0000025683, -0.0000025677,0.0000025664,0.0000025652,0.0000025654,0.0000025662, -0.0000025662,0.0000025644,0.0000025604,0.0000025549,0.0000025482, -0.0000025421,0.0000025378,0.0000025325,0.0000025248,0.0000025175, -0.0000025113,0.0000025055,0.0000024987,0.0000024909,0.0000024840, -0.0000024779,0.0000024722,0.0000024671,0.0000024624,0.0000024580, -0.0000024537,0.0000024496,0.0000024458,0.0000024418,0.0000024370, -0.0000024311,0.0000024256,0.0000024221,0.0000024218,0.0000024248, -0.0000024310,0.0000024405,0.0000024519,0.0000024627,0.0000024703, -0.0000024729,0.0000024692,0.0000024615,0.0000024530,0.0000024445, -0.0000024374,0.0000024309,0.0000024245,0.0000024177,0.0000024110, -0.0000024055,0.0000024011,0.0000023979,0.0000023960,0.0000023946, -0.0000023930,0.0000023914,0.0000023914,0.0000023933,0.0000023966, -0.0000024010,0.0000024058,0.0000024104,0.0000024152,0.0000024213, -0.0000024293,0.0000024393,0.0000024519,0.0000024675,0.0000024866, -0.0000025097,0.0000025360,0.0000025611,0.0000025809,0.0000025953, -0.0000026106,0.0000026289,0.0000026468,0.0000026577,0.0000026591, -0.0000026560,0.0000026455,0.0000026343,0.0000026257,0.0000026189, -0.0000026105,0.0000025994,0.0000025886,0.0000025813,0.0000025684, -0.0000025418,0.0000025163,0.0000025067,0.0000024987,0.0000024895, -0.0000024873,0.0000024838,0.0000024762,0.0000024659,0.0000024558, -0.0000024535,0.0000024673,0.0000024930,0.0000025140,0.0000025045, -0.0000025126,0.0000025917,0.0000026269,0.0000026222,0.0000026155, -0.0000026155,0.0000026164,0.0000026176,0.0000026201,0.0000026240, -0.0000026266,0.0000026258,0.0000026216,0.0000026168,0.0000026118, -0.0000026031,0.0000025956,0.0000025964,0.0000025840,0.0000025246, -0.0000024719,0.0000024630,0.0000024645,0.0000024629,0.0000024566, -0.0000024526,0.0000024545,0.0000024598,0.0000024621,0.0000024634, -0.0000024692,0.0000024785,0.0000024869,0.0000024927,0.0000024956, -0.0000024977,0.0000025003,0.0000025039,0.0000025065,0.0000025075, -0.0000025070,0.0000025079,0.0000025125,0.0000025200,0.0000025275, -0.0000025320,0.0000025346,0.0000025348,0.0000025318,0.0000025273, -0.0000025230,0.0000025209,0.0000025199,0.0000025164,0.0000025096, -0.0000025020,0.0000024999,0.0000025017,0.0000025025,0.0000025002, -0.0000024948,0.0000024870,0.0000024803,0.0000024760,0.0000024761, -0.0000024815,0.0000024946,0.0000025140,0.0000025309,0.0000025388, -0.0000025443,0.0000025541,0.0000025670,0.0000025777,0.0000025839, -0.0000025876,0.0000025933,0.0000026048,0.0000026229,0.0000026435, -0.0000026603,0.0000026702,0.0000026742,0.0000026759,0.0000026804, -0.0000026878,0.0000026951,0.0000026990,0.0000026993,0.0000026949, -0.0000026854,0.0000026764,0.0000026714,0.0000026689,0.0000026679, -0.0000026684,0.0000026701,0.0000026720,0.0000026752,0.0000026805, -0.0000026869,0.0000026921,0.0000026943,0.0000026941,0.0000026919, -0.0000026882,0.0000026841,0.0000026797,0.0000026752,0.0000026717, -0.0000026696,0.0000026680,0.0000026650,0.0000026605,0.0000026558, -0.0000026510,0.0000026452,0.0000026375,0.0000026289,0.0000026217, -0.0000026173,0.0000026126,0.0000026037,0.0000025923,0.0000025838, -0.0000025794,0.0000025765,0.0000025726,0.0000025686,0.0000025650, -0.0000025635,0.0000025638,0.0000025652,0.0000025653,0.0000025637, -0.0000025620,0.0000025624,0.0000025653,0.0000025679,0.0000025697, -0.0000025686,0.0000025647,0.0000025597,0.0000025563,0.0000025553, -0.0000025560,0.0000025577,0.0000025597,0.0000025614,0.0000025620, -0.0000025616,0.0000025598,0.0000025574,0.0000025557,0.0000025552, -0.0000025561,0.0000025593,0.0000025636,0.0000025664,0.0000025658, -0.0000025606,0.0000025546,0.0000025483,0.0000025307,0.0000025008, -0.0000024786,0.0000024747,0.0000024716,0.0000024526,0.0000024241, -0.0000024007,0.0000023894,0.0000023817,0.0000023589,0.0000023199, -0.0000022817,0.0000022580,0.0000022525,0.0000022572,0.0000022736, -0.0000022976,0.0000023253,0.0000023553,0.0000023918,0.0000024293, -0.0000024594,0.0000024914,0.0000025193,0.0000025277,0.0000025278, -0.0000025264,0.0000025169,0.0000025025,0.0000024957,0.0000024978, -0.0000025067,0.0000025157,0.0000025193,0.0000025192,0.0000025193, -0.0000025194,0.0000025193,0.0000025200,0.0000025192,0.0000025123, -0.0000025030,0.0000024959,0.0000024891,0.0000024842,0.0000024845, -0.0000024872,0.0000024880,0.0000024854,0.0000024812,0.0000024788, -0.0000024788,0.0000024797,0.0000024816,0.0000024858,0.0000024926, -0.0000025006,0.0000025080,0.0000025138,0.0000025170,0.0000025190, -0.0000025228,0.0000025290,0.0000025330,0.0000025338,0.0000025374, -0.0000025455,0.0000025495,0.0000025457,0.0000025376,0.0000025330, -0.0000025349,0.0000025468,0.0000025627,0.0000025722,0.0000025740, -0.0000025739,0.0000025706,0.0000025611,0.0000025507,0.0000025438, -0.0000025392,0.0000025359,0.0000025348,0.0000025361,0.0000025388, -0.0000025403,0.0000025401,0.0000025402,0.0000025431,0.0000025491, -0.0000025573,0.0000025665,0.0000025744,0.0000025794,0.0000025867, -0.0000025997,0.0000026160,0.0000026327,0.0000026466,0.0000026539, -0.0000026556,0.0000026589,0.0000026661,0.0000026709,0.0000026690, -0.0000026603,0.0000026466,0.0000026413,0.0000026532,0.0000026764, -0.0000026948,0.0000027038,0.0000027091,0.0000027109,0.0000027104, -0.0000027124,0.0000027154,0.0000027164,0.0000027154,0.0000027132, -0.0000027106,0.0000027076,0.0000027044,0.0000027022,0.0000027021, -0.0000027033,0.0000027054,0.0000027103,0.0000027189,0.0000027285, -0.0000027369,0.0000027433,0.0000027482,0.0000027529,0.0000027578, -0.0000027633,0.0000027684,0.0000027711,0.0000027707,0.0000027671, -0.0000027615,0.0000027552,0.0000027504,0.0000027483,0.0000027503, -0.0000027526,0.0000027524,0.0000027469,0.0000027359,0.0000027233, -0.0000027157,0.0000027145,0.0000027191,0.0000027253,0.0000027294, -0.0000027308,0.0000027294,0.0000027248,0.0000027189,0.0000027139, -0.0000027101,0.0000027062,0.0000027031,0.0000027027,0.0000027031, -0.0000027028,0.0000027010,0.0000026978,0.0000026928,0.0000026836, -0.0000026707,0.0000026599,0.0000026558,0.0000026579,0.0000026611, -0.0000026626,0.0000026627,0.0000026648,0.0000026714,0.0000026783, -0.0000026797,0.0000026763,0.0000026678,0.0000026599,0.0000026567, -0.0000026569,0.0000026597,0.0000026664,0.0000026747,0.0000026811, -0.0000026842,0.0000026845,0.0000026832,0.0000026770,0.0000026647, -0.0000026529,0.0000026468,0.0000026402,0.0000026269,0.0000026118, -0.0000025983,0.0000025866,0.0000025823,0.0000025825,0.0000025786, -0.0000025696,0.0000025630,0.0000025573,0.0000025389,0.0000025103, -0.0000024985,0.0000025051,0.0000025106,0.0000025042,0.0000024942, -0.0000024822,0.0000024646,0.0000024475,0.0000024381,0.0000024339, -0.0000024318,0.0000024310,0.0000024319,0.0000024339,0.0000024351, -0.0000024346,0.0000024292,0.0000024189,0.0000024105,0.0000024045, -0.0000023927,0.0000023769,0.0000023692,0.0000023702,0.0000023732, -0.0000023798,0.0000023945,0.0000024130,0.0000024263,0.0000024352, -0.0000024402,0.0000024452,0.0000024621,0.0000024867,0.0000025013, -0.0000025078,0.0000025147,0.0000025211,0.0000025249,0.0000025255, -0.0000025239,0.0000025197,0.0000025105,0.0000024986,0.0000024884, -0.0000024729,0.0000024672,0.0000025037,0.0000025789,0.0000026352, -0.0000026806,0.0000027193,0.0000027282,0.0000027269,0.0000027295, -0.0000027320,0.0000027305,0.0000027203,0.0000027131,0.0000027134, -0.0000027140,0.0000026973,0.0000026762,0.0000026662,0.0000026512, -0.0000026319,0.0000026127,0.0000025980,0.0000025879,0.0000025816, -0.0000025782,0.0000025796,0.0000025853,0.0000025918,0.0000025990, -0.0000026061,0.0000026100,0.0000026120,0.0000026126,0.0000026089, -0.0000025946,0.0000025745,0.0000025593,0.0000025553,0.0000025511, -0.0000025203,0.0000024595,0.0000023984,0.0000023658,0.0000023579, -0.0000023559,0.0000023509,0.0000023450,0.0000023400,0.0000023347, -0.0000023274,0.0000023186,0.0000023101,0.0000023054,0.0000023067, -0.0000023109,0.0000023146,0.0000023178,0.0000023237,0.0000023340, -0.0000023478,0.0000023617,0.0000023736,0.0000023823,0.0000023868, -0.0000023870,0.0000023817,0.0000023700,0.0000023566,0.0000023498, -0.0000023501,0.0000023521,0.0000023541,0.0000023548,0.0000023533, -0.0000023486,0.0000023426,0.0000023381,0.0000023339,0.0000023271, -0.0000023204,0.0000023160,0.0000023149,0.0000023172,0.0000023239, -0.0000023289,0.0000023290,0.0000023276,0.0000023246,0.0000023197, -0.0000023152,0.0000023123,0.0000023108,0.0000023098,0.0000023101, -0.0000023121,0.0000023149,0.0000023168,0.0000023171,0.0000023172, -0.0000023179,0.0000023190,0.0000023193,0.0000023194,0.0000023207, -0.0000023243,0.0000023293,0.0000023334,0.0000023339,0.0000023318, -0.0000023274,0.0000023218,0.0000023163,0.0000023117,0.0000023095, -0.0000023104,0.0000023138,0.0000023189,0.0000023239,0.0000023265, -0.0000023256,0.0000023232,0.0000023219,0.0000023214,0.0000023191, -0.0000023144,0.0000023104,0.0000023094,0.0000023104,0.0000023115, -0.0000023109,0.0000023078,0.0000023029,0.0000022977,0.0000022939, -0.0000022919,0.0000022910,0.0000022900,0.0000022880,0.0000022851, -0.0000022807,0.0000022737,0.0000022645,0.0000022542,0.0000022469, -0.0000022466,0.0000022574,0.0000022749,0.0000022883,0.0000022987, -0.0000023181,0.0000023409,0.0000023500,0.0000023476,0.0000023459, -0.0000023466,0.0000023471,0.0000023476,0.0000023452,0.0000023434, -0.0000023564,0.0000023842,0.0000023999,0.0000023987,0.0000023911, -0.0000023871,0.0000023934,0.0000024176,0.0000024618,0.0000025202, -0.0000025535,0.0000025471,0.0000025189,0.0000024715,0.0000024322, -0.0000024224,0.0000024228,0.0000024248,0.0000024332,0.0000024475, -0.0000024615,0.0000024664,0.0000024615,0.0000024492,0.0000024371, -0.0000024294,0.0000024279,0.0000024283,0.0000024294,0.0000024301, -0.0000024313,0.0000024317,0.0000024304,0.0000024275,0.0000024247, -0.0000024242,0.0000024236,0.0000024257,0.0000024311,0.0000024380, -0.0000024454,0.0000024506,0.0000024531,0.0000024514,0.0000024454, -0.0000024432,0.0000024408,0.0000024391,0.0000024362,0.0000024332, -0.0000024308,0.0000024292,0.0000024285,0.0000024280,0.0000024270, -0.0000024266,0.0000024246,0.0000024213,0.0000024169,0.0000024114, -0.0000024044,0.0000023954,0.0000023855,0.0000023779,0.0000023745, -0.0000023742,0.0000023750,0.0000023769,0.0000023808,0.0000023863, -0.0000023898,0.0000023899,0.0000023875,0.0000023851,0.0000023848, -0.0000023881,0.0000023933,0.0000023980,0.0000024015,0.0000024039, -0.0000024057,0.0000024075,0.0000024094,0.0000024106,0.0000024107, -0.0000024100,0.0000024088,0.0000024072,0.0000024054,0.0000024034, -0.0000024013,0.0000023994,0.0000023983,0.0000023976,0.0000023967, -0.0000023955,0.0000023942,0.0000023934,0.0000023939,0.0000023951, -0.0000023980,0.0000024035,0.0000024106,0.0000024164,0.0000024196, -0.0000024213,0.0000024224,0.0000024236,0.0000024264,0.0000024305, -0.0000024336,0.0000024342,0.0000024310,0.0000024265,0.0000024268, -0.0000024286,0.0000024287,0.0000024274,0.0000024240,0.0000024197, -0.0000024180,0.0000024189,0.0000024198,0.0000024172,0.0000024112, -0.0000024057,0.0000023987,0.0000023904,0.0000023900,0.0000023985, -0.0000024101,0.0000024280,0.0000024515,0.0000024678,0.0000024772, -0.0000024889,0.0000025010,0.0000025112,0.0000025226,0.0000025378, -0.0000025528,0.0000025629,0.0000025686,0.0000025691,0.0000025650, -0.0000025569,0.0000025503,0.0000025452,0.0000025412,0.0000025393, -0.0000025386,0.0000025388,0.0000025401,0.0000025426,0.0000025455, -0.0000025483,0.0000025526,0.0000025583,0.0000025625,0.0000025639, -0.0000025634,0.0000025614,0.0000025578,0.0000025542,0.0000025525, -0.0000025533,0.0000025560,0.0000025574,0.0000025576,0.0000025592, -0.0000025618,0.0000025615,0.0000025572,0.0000025527,0.0000025482, -0.0000025435,0.0000025439,0.0000025481,0.0000025517,0.0000025508, -0.0000025468,0.0000025432,0.0000025402,0.0000025381,0.0000025365, -0.0000025333,0.0000025281,0.0000025201,0.0000025130,0.0000025122, -0.0000025138,0.0000025127,0.0000025076,0.0000025017,0.0000024963, -0.0000024916,0.0000024878,0.0000024861,0.0000024882,0.0000024959, -0.0000025071,0.0000025162,0.0000025183,0.0000025154,0.0000025085, -0.0000024999,0.0000024911,0.0000024833,0.0000024775,0.0000024734, -0.0000024715,0.0000024711,0.0000024719,0.0000024740,0.0000024770, -0.0000024801,0.0000024829,0.0000024854,0.0000024881,0.0000024901, -0.0000024911,0.0000024904,0.0000024881,0.0000024842,0.0000024799, -0.0000024773,0.0000024779,0.0000024825,0.0000024868,0.0000024884, -0.0000024882,0.0000024891,0.0000024940,0.0000025015,0.0000025056, -0.0000025039,0.0000024966,0.0000024912,0.0000024929,0.0000025012, -0.0000025123,0.0000025245,0.0000025347,0.0000025389,0.0000025372, -0.0000025304,0.0000025229,0.0000025169,0.0000025135,0.0000025099, -0.0000025015,0.0000024920,0.0000024894,0.0000024934,0.0000024986, -0.0000025000,0.0000024978,0.0000024917,0.0000024827,0.0000024712, -0.0000024611,0.0000024567,0.0000024567,0.0000024579,0.0000024583, -0.0000024579,0.0000024572,0.0000024567,0.0000024557,0.0000024540, -0.0000024517,0.0000024492,0.0000024454,0.0000024343,0.0000024150, -0.0000023997,0.0000023972,0.0000024001,0.0000024069,0.0000024156, -0.0000024255,0.0000024382,0.0000024533,0.0000024658,0.0000024715, -0.0000024725,0.0000024701,0.0000024629,0.0000024551,0.0000024592, -0.0000024915,0.0000025405,0.0000025783,0.0000025947,0.0000025986, -0.0000025998,0.0000026009,0.0000026018,0.0000026032,0.0000026061, -0.0000026099,0.0000026137,0.0000026173,0.0000026204,0.0000026221, -0.0000026221,0.0000026215,0.0000026209,0.0000026201,0.0000026190, -0.0000026166,0.0000026129,0.0000026093,0.0000026073,0.0000026079, -0.0000026104,0.0000026134,0.0000026158,0.0000026161,0.0000026143, -0.0000026106,0.0000026065,0.0000026025,0.0000026002,0.0000026015, -0.0000026054,0.0000026099,0.0000026128,0.0000026128,0.0000026102, -0.0000026065,0.0000026029,0.0000025982,0.0000025917,0.0000025858, -0.0000025835,0.0000025837,0.0000025833,0.0000025826,0.0000025819, -0.0000025797,0.0000025767,0.0000025753,0.0000025762,0.0000025787, -0.0000025809,0.0000025819,0.0000025821,0.0000025806,0.0000025739, -0.0000025606,0.0000025438,0.0000025302,0.0000025233,0.0000025212, -0.0000025205,0.0000025180,0.0000025127,0.0000025085,0.0000025085, -0.0000025139,0.0000025233,0.0000025334,0.0000025415,0.0000025438, -0.0000025381,0.0000025250,0.0000025140,0.0000025104,0.0000025101, -0.0000025134,0.0000025184,0.0000025255,0.0000025304,0.0000025328, -0.0000025349,0.0000025374,0.0000025391,0.0000025394,0.0000025385, -0.0000025379,0.0000025387,0.0000025395,0.0000025393,0.0000025380, -0.0000025363,0.0000025348,0.0000025326,0.0000025310,0.0000025312, -0.0000025345,0.0000025443,0.0000025540,0.0000025546,0.0000025474, -0.0000025368,0.0000025245,0.0000025175,0.0000025190,0.0000025313, -0.0000025468,0.0000025513,0.0000025384,0.0000025166,0.0000024974, -0.0000024868,0.0000024865,0.0000024936,0.0000025072,0.0000025219, -0.0000025348,0.0000025429,0.0000025470,0.0000025515,0.0000025585, -0.0000025639,0.0000025649,0.0000025618,0.0000025553,0.0000025491, -0.0000025483,0.0000025564,0.0000025704,0.0000025817,0.0000025885, -0.0000025933,0.0000025967,0.0000025975,0.0000025949,0.0000025904, -0.0000025853,0.0000025796,0.0000025732,0.0000025673,0.0000025629, -0.0000025600,0.0000025582,0.0000025574,0.0000025570,0.0000025567, -0.0000025561,0.0000025544,0.0000025518,0.0000025494,0.0000025475, -0.0000025454,0.0000025425,0.0000025379,0.0000025312,0.0000025235, -0.0000025169,0.0000025130,0.0000025091,0.0000025020,0.0000024932, -0.0000024840,0.0000024754,0.0000024671,0.0000024584,0.0000024507, -0.0000024454,0.0000024414,0.0000024378,0.0000024343,0.0000024305, -0.0000024259,0.0000024208,0.0000024166,0.0000024143,0.0000024128, -0.0000024104,0.0000024068,0.0000024027,0.0000023984,0.0000023946, -0.0000023927,0.0000023947,0.0000024015,0.0000024115,0.0000024231, -0.0000024344,0.0000024439,0.0000024493,0.0000024507,0.0000024471, -0.0000024415,0.0000024352,0.0000024296,0.0000024239,0.0000024187, -0.0000024124,0.0000024058,0.0000023993,0.0000023940,0.0000023902, -0.0000023875,0.0000023854,0.0000023835,0.0000023832,0.0000023846, -0.0000023867,0.0000023889,0.0000023916,0.0000023954,0.0000024005, -0.0000024076,0.0000024168,0.0000024267,0.0000024364,0.0000024469, -0.0000024592,0.0000024743,0.0000024937,0.0000025189,0.0000025460, -0.0000025692,0.0000025870,0.0000026037,0.0000026234,0.0000026417, -0.0000026540,0.0000026576,0.0000026542,0.0000026444,0.0000026326, -0.0000026239,0.0000026168,0.0000026068,0.0000025953,0.0000025875, -0.0000025806,0.0000025620,0.0000025296,0.0000025092,0.0000025008, -0.0000024893,0.0000024852,0.0000024825,0.0000024744,0.0000024615, -0.0000024487,0.0000024428,0.0000024513,0.0000024769,0.0000025062, -0.0000025103,0.0000024987,0.0000025624,0.0000026183,0.0000026202, -0.0000026131,0.0000026110,0.0000026116,0.0000026132,0.0000026166, -0.0000026201,0.0000026218,0.0000026201,0.0000026148,0.0000026083, -0.0000026022,0.0000025955,0.0000025914,0.0000025936,0.0000025835, -0.0000025307,0.0000024745,0.0000024621,0.0000024637,0.0000024640, -0.0000024586,0.0000024517,0.0000024482,0.0000024526,0.0000024583, -0.0000024609,0.0000024653,0.0000024727,0.0000024808,0.0000024874, -0.0000024922,0.0000024948,0.0000024950,0.0000024965,0.0000024992, -0.0000025026,0.0000025044,0.0000025055,0.0000025082,0.0000025146, -0.0000025235,0.0000025304,0.0000025347,0.0000025366,0.0000025340, -0.0000025292,0.0000025239,0.0000025196,0.0000025179,0.0000025156, -0.0000025105,0.0000025030,0.0000024985,0.0000024989,0.0000024997, -0.0000024972,0.0000024913,0.0000024829,0.0000024754,0.0000024692, -0.0000024672,0.0000024698,0.0000024786,0.0000024937,0.0000025128, -0.0000025270,0.0000025331,0.0000025389,0.0000025517,0.0000025689, -0.0000025820,0.0000025872,0.0000025889,0.0000025914,0.0000025980, -0.0000026096,0.0000026247,0.0000026405,0.0000026536,0.0000026622, -0.0000026684,0.0000026750,0.0000026829,0.0000026904,0.0000026947, -0.0000026952,0.0000026892,0.0000026783,0.0000026682,0.0000026629, -0.0000026609,0.0000026592,0.0000026572,0.0000026551,0.0000026543, -0.0000026568,0.0000026633,0.0000026723,0.0000026808,0.0000026862, -0.0000026879,0.0000026865,0.0000026839,0.0000026794,0.0000026737, -0.0000026683,0.0000026640,0.0000026609,0.0000026570,0.0000026515, -0.0000026453,0.0000026393,0.0000026331,0.0000026268,0.0000026207, -0.0000026153,0.0000026096,0.0000026016,0.0000025918,0.0000025840, -0.0000025803,0.0000025785,0.0000025764,0.0000025734,0.0000025705, -0.0000025692,0.0000025700,0.0000025713,0.0000025715,0.0000025695, -0.0000025659,0.0000025628,0.0000025617,0.0000025623,0.0000025645, -0.0000025672,0.0000025696,0.0000025695,0.0000025677,0.0000025653, -0.0000025638,0.0000025637,0.0000025642,0.0000025645,0.0000025642, -0.0000025636,0.0000025626,0.0000025615,0.0000025604,0.0000025599, -0.0000025604,0.0000025624,0.0000025656,0.0000025676,0.0000025674, -0.0000025640,0.0000025576,0.0000025521,0.0000025445,0.0000025249, -0.0000024957,0.0000024754,0.0000024725,0.0000024709,0.0000024535, -0.0000024253,0.0000024005,0.0000023879,0.0000023820,0.0000023630, -0.0000023249,0.0000022839,0.0000022562,0.0000022454,0.0000022469, -0.0000022583,0.0000022790,0.0000023053,0.0000023343,0.0000023671, -0.0000024055,0.0000024398,0.0000024689,0.0000025011,0.0000025224, -0.0000025254,0.0000025248,0.0000025190,0.0000025075,0.0000024986, -0.0000024983,0.0000025042,0.0000025123,0.0000025181,0.0000025193, -0.0000025186,0.0000025179,0.0000025191,0.0000025233,0.0000025254, -0.0000025208,0.0000025122,0.0000025035,0.0000024934,0.0000024849, -0.0000024829,0.0000024864,0.0000024888,0.0000024872,0.0000024821, -0.0000024783,0.0000024773,0.0000024778,0.0000024789,0.0000024815, -0.0000024869,0.0000024941,0.0000025007,0.0000025062,0.0000025105, -0.0000025137,0.0000025179,0.0000025254,0.0000025331,0.0000025360, -0.0000025371,0.0000025434,0.0000025511,0.0000025511,0.0000025441, -0.0000025363,0.0000025338,0.0000025396,0.0000025529,0.0000025652, -0.0000025696,0.0000025694,0.0000025680,0.0000025622,0.0000025532, -0.0000025456,0.0000025402,0.0000025363,0.0000025343,0.0000025343, -0.0000025349,0.0000025355,0.0000025365,0.0000025387,0.0000025417, -0.0000025456,0.0000025506,0.0000025564,0.0000025632,0.0000025688, -0.0000025718,0.0000025767,0.0000025877,0.0000026030,0.0000026194, -0.0000026338,0.0000026432,0.0000026476,0.0000026524,0.0000026612, -0.0000026680,0.0000026689,0.0000026647,0.0000026531,0.0000026446, -0.0000026509,0.0000026708,0.0000026877,0.0000026968,0.0000027044, -0.0000027102,0.0000027128,0.0000027159,0.0000027190,0.0000027195, -0.0000027168,0.0000027124,0.0000027082,0.0000027033,0.0000026974, -0.0000026927,0.0000026903,0.0000026904,0.0000026931,0.0000026988, -0.0000027068,0.0000027156,0.0000027236,0.0000027311,0.0000027384, -0.0000027457,0.0000027529,0.0000027590,0.0000027630,0.0000027642, -0.0000027641,0.0000027636,0.0000027626,0.0000027609,0.0000027576, -0.0000027543,0.0000027531,0.0000027531,0.0000027523,0.0000027492, -0.0000027433,0.0000027351,0.0000027273,0.0000027226,0.0000027207, -0.0000027211,0.0000027221,0.0000027228,0.0000027228,0.0000027213, -0.0000027189,0.0000027162,0.0000027136,0.0000027102,0.0000027063, -0.0000027044,0.0000027041,0.0000027034,0.0000027006,0.0000026943, -0.0000026845,0.0000026717,0.0000026597,0.0000026538,0.0000026542, -0.0000026586,0.0000026627,0.0000026642,0.0000026653,0.0000026691, -0.0000026751,0.0000026787,0.0000026773,0.0000026685,0.0000026567, -0.0000026493,0.0000026488,0.0000026526,0.0000026594,0.0000026686, -0.0000026774,0.0000026830,0.0000026860,0.0000026868,0.0000026853, -0.0000026774,0.0000026640,0.0000026528,0.0000026469,0.0000026393, -0.0000026258,0.0000026117,0.0000025985,0.0000025876,0.0000025848, -0.0000025841,0.0000025780,0.0000025688,0.0000025622,0.0000025520, -0.0000025277,0.0000025030,0.0000025002,0.0000025097,0.0000025109, -0.0000025036,0.0000024939,0.0000024788,0.0000024590,0.0000024432, -0.0000024342,0.0000024283,0.0000024247,0.0000024234,0.0000024238, -0.0000024258,0.0000024289,0.0000024303,0.0000024273,0.0000024186, -0.0000024108,0.0000024049,0.0000023944,0.0000023788,0.0000023679, -0.0000023669,0.0000023703,0.0000023758,0.0000023883,0.0000024071, -0.0000024232,0.0000024347,0.0000024400,0.0000024395,0.0000024415, -0.0000024583,0.0000024822,0.0000024981,0.0000025059,0.0000025107, -0.0000025138,0.0000025142,0.0000025127,0.0000025097,0.0000025025, -0.0000024911,0.0000024810,0.0000024744,0.0000024670,0.0000024786, -0.0000025401,0.0000026083,0.0000026569,0.0000026996,0.0000027234, -0.0000027227,0.0000027225,0.0000027263,0.0000027276,0.0000027230, -0.0000027129,0.0000027092,0.0000027121,0.0000027101,0.0000026891, -0.0000026739,0.0000026654,0.0000026505,0.0000026333,0.0000026174, -0.0000026059,0.0000026000,0.0000025971,0.0000025981,0.0000026021, -0.0000026069,0.0000026118,0.0000026173,0.0000026212,0.0000026244, -0.0000026278,0.0000026300,0.0000026238,0.0000026020,0.0000025763, -0.0000025627,0.0000025607,0.0000025452,0.0000024946,0.0000024264, -0.0000023790,0.0000023631,0.0000023590,0.0000023532,0.0000023463, -0.0000023401,0.0000023347,0.0000023284,0.0000023203,0.0000023118, -0.0000023044,0.0000023003,0.0000022995,0.0000023016,0.0000023049, -0.0000023087,0.0000023134,0.0000023211,0.0000023328,0.0000023457, -0.0000023565,0.0000023643,0.0000023674,0.0000023656,0.0000023583, -0.0000023491,0.0000023441,0.0000023449,0.0000023471,0.0000023482, -0.0000023493,0.0000023500,0.0000023490,0.0000023446,0.0000023375, -0.0000023300,0.0000023218,0.0000023140,0.0000023078,0.0000023031, -0.0000023014,0.0000023054,0.0000023166,0.0000023252,0.0000023266, -0.0000023251,0.0000023199,0.0000023129,0.0000023076,0.0000023048, -0.0000023042,0.0000023051,0.0000023072,0.0000023106,0.0000023139, -0.0000023153,0.0000023147,0.0000023136,0.0000023136,0.0000023151, -0.0000023159,0.0000023157,0.0000023158,0.0000023172,0.0000023207, -0.0000023260,0.0000023299,0.0000023303,0.0000023278,0.0000023221, -0.0000023150,0.0000023084,0.0000023049,0.0000023053,0.0000023087, -0.0000023129,0.0000023167,0.0000023183,0.0000023180,0.0000023180, -0.0000023186,0.0000023178,0.0000023152,0.0000023129,0.0000023124, -0.0000023129,0.0000023132,0.0000023121,0.0000023084,0.0000023023, -0.0000022951,0.0000022886,0.0000022840,0.0000022819,0.0000022813, -0.0000022812,0.0000022805,0.0000022787,0.0000022759,0.0000022714, -0.0000022640,0.0000022546,0.0000022441,0.0000022382,0.0000022433, -0.0000022634,0.0000022840,0.0000022962,0.0000023133,0.0000023367, -0.0000023480,0.0000023471,0.0000023465,0.0000023481,0.0000023487, -0.0000023493,0.0000023472,0.0000023448,0.0000023561,0.0000023840, -0.0000024020,0.0000024017,0.0000023932,0.0000023862,0.0000023877, -0.0000024074,0.0000024462,0.0000025014,0.0000025459,0.0000025504, -0.0000025282,0.0000024840,0.0000024394,0.0000024232,0.0000024240, -0.0000024256,0.0000024273,0.0000024323,0.0000024414,0.0000024530, -0.0000024615,0.0000024628,0.0000024571,0.0000024473,0.0000024388, -0.0000024340,0.0000024328,0.0000024331,0.0000024340,0.0000024343, -0.0000024340,0.0000024330,0.0000024307,0.0000024277,0.0000024251, -0.0000024228,0.0000024216,0.0000024225,0.0000024268,0.0000024331, -0.0000024400,0.0000024446,0.0000024296,0.0000024335,0.0000024358, -0.0000024368,0.0000024363,0.0000024345,0.0000024321,0.0000024298, -0.0000024276,0.0000024251,0.0000024220,0.0000024179,0.0000024132, -0.0000024088,0.0000024046,0.0000023993,0.0000023919,0.0000023837, -0.0000023770,0.0000023733,0.0000023718,0.0000023718,0.0000023731, -0.0000023758,0.0000023800,0.0000023854,0.0000023894,0.0000023902, -0.0000023884,0.0000023855,0.0000023843,0.0000023855,0.0000023885, -0.0000023918,0.0000023941,0.0000023950,0.0000023956,0.0000023968, -0.0000023989,0.0000024010,0.0000024023,0.0000024030,0.0000024030, -0.0000024022,0.0000024009,0.0000023988,0.0000023957,0.0000023925, -0.0000023897,0.0000023875,0.0000023861,0.0000023855,0.0000023852, -0.0000023854,0.0000023865,0.0000023888,0.0000023925,0.0000023983, -0.0000024050,0.0000024102,0.0000024132,0.0000024149,0.0000024156, -0.0000024162,0.0000024190,0.0000024242,0.0000024285,0.0000024301, -0.0000024281,0.0000024225,0.0000024218,0.0000024242,0.0000024248, -0.0000024237,0.0000024205,0.0000024152,0.0000024118,0.0000024116, -0.0000024131,0.0000024132,0.0000024097,0.0000024043,0.0000023979, -0.0000023886,0.0000023852,0.0000023914,0.0000024030,0.0000024200, -0.0000024427,0.0000024614,0.0000024718,0.0000024842,0.0000024982, -0.0000025111,0.0000025235,0.0000025379,0.0000025516,0.0000025606, -0.0000025648,0.0000025651,0.0000025617,0.0000025557,0.0000025514, -0.0000025478,0.0000025439,0.0000025418,0.0000025406,0.0000025408, -0.0000025425,0.0000025452,0.0000025484,0.0000025508,0.0000025533, -0.0000025569,0.0000025606,0.0000025624,0.0000025626,0.0000025623, -0.0000025608,0.0000025573,0.0000025529,0.0000025506,0.0000025522, -0.0000025562,0.0000025579,0.0000025573,0.0000025579,0.0000025591, -0.0000025568,0.0000025527,0.0000025495,0.0000025443,0.0000025394, -0.0000025404,0.0000025451,0.0000025475,0.0000025462,0.0000025437, -0.0000025418,0.0000025404,0.0000025392,0.0000025369,0.0000025326, -0.0000025272,0.0000025194,0.0000025134,0.0000025134,0.0000025143, -0.0000025111,0.0000025046,0.0000024981,0.0000024927,0.0000024886, -0.0000024860,0.0000024844,0.0000024851,0.0000024905,0.0000025008, -0.0000025113,0.0000025165,0.0000025158,0.0000025108,0.0000025028, -0.0000024936,0.0000024856,0.0000024795,0.0000024758,0.0000024748, -0.0000024753,0.0000024778,0.0000024814,0.0000024844,0.0000024853, -0.0000024856,0.0000024865,0.0000024870,0.0000024865,0.0000024845, -0.0000024812,0.0000024770,0.0000024730,0.0000024711,0.0000024723, -0.0000024761,0.0000024799,0.0000024817,0.0000024825,0.0000024846, -0.0000024895,0.0000024963,0.0000025005,0.0000024997,0.0000024936, -0.0000024868,0.0000024867,0.0000024943,0.0000025060,0.0000025180, -0.0000025296,0.0000025377,0.0000025395,0.0000025353,0.0000025274, -0.0000025193,0.0000025137,0.0000025116,0.0000025087,0.0000025002, -0.0000024932,0.0000024932,0.0000024985,0.0000025038,0.0000025049, -0.0000025015,0.0000024942,0.0000024841,0.0000024721,0.0000024618, -0.0000024571,0.0000024569,0.0000024581,0.0000024583,0.0000024573, -0.0000024560,0.0000024556,0.0000024550,0.0000024534,0.0000024504, -0.0000024466,0.0000024414,0.0000024287,0.0000024082,0.0000023932, -0.0000023909,0.0000023934,0.0000023992,0.0000024074,0.0000024180, -0.0000024324,0.0000024488,0.0000024617,0.0000024676,0.0000024685, -0.0000024669,0.0000024623,0.0000024553,0.0000024536,0.0000024728, -0.0000025148,0.0000025585,0.0000025858,0.0000025970,0.0000025996, -0.0000025992,0.0000025985,0.0000025991,0.0000026007,0.0000026024, -0.0000026039,0.0000026061,0.0000026093,0.0000026121,0.0000026135, -0.0000026144,0.0000026158,0.0000026173,0.0000026179,0.0000026168, -0.0000026138,0.0000026102,0.0000026074,0.0000026065,0.0000026077, -0.0000026105,0.0000026136,0.0000026153,0.0000026148,0.0000026122, -0.0000026090,0.0000026055,0.0000026037,0.0000026046,0.0000026079, -0.0000026118,0.0000026142,0.0000026139,0.0000026108,0.0000026053, -0.0000025983,0.0000025900,0.0000025812,0.0000025745,0.0000025726, -0.0000025738,0.0000025747,0.0000025752,0.0000025760,0.0000025753, -0.0000025732,0.0000025723,0.0000025744,0.0000025771,0.0000025794, -0.0000025802,0.0000025788,0.0000025749,0.0000025657,0.0000025516, -0.0000025370,0.0000025271,0.0000025224,0.0000025206,0.0000025201, -0.0000025182,0.0000025130,0.0000025075,0.0000025045,0.0000025058, -0.0000025133,0.0000025232,0.0000025322,0.0000025396,0.0000025411, -0.0000025347,0.0000025229,0.0000025142,0.0000025108,0.0000025102, -0.0000025127,0.0000025189,0.0000025253,0.0000025291,0.0000025306, -0.0000025305,0.0000025299,0.0000025305,0.0000025331,0.0000025359, -0.0000025377,0.0000025389,0.0000025396,0.0000025386,0.0000025352, -0.0000025313,0.0000025279,0.0000025248,0.0000025241,0.0000025261, -0.0000025323,0.0000025455,0.0000025574,0.0000025563,0.0000025472, -0.0000025346,0.0000025227,0.0000025174,0.0000025204,0.0000025352, -0.0000025536,0.0000025596,0.0000025482,0.0000025235,0.0000025005, -0.0000024885,0.0000024882,0.0000024979,0.0000025110,0.0000025254, -0.0000025386,0.0000025471,0.0000025524,0.0000025582,0.0000025644, -0.0000025682,0.0000025686,0.0000025656,0.0000025589,0.0000025521, -0.0000025516,0.0000025606,0.0000025739,0.0000025839,0.0000025897, -0.0000025936,0.0000025955,0.0000025952,0.0000025923,0.0000025869, -0.0000025796,0.0000025716,0.0000025645,0.0000025590,0.0000025546, -0.0000025511,0.0000025483,0.0000025459,0.0000025436,0.0000025412, -0.0000025384,0.0000025351,0.0000025317,0.0000025282,0.0000025241, -0.0000025197,0.0000025147,0.0000025079,0.0000024987,0.0000024891, -0.0000024814,0.0000024746,0.0000024661,0.0000024562,0.0000024466, -0.0000024394,0.0000024347,0.0000024313,0.0000024288,0.0000024273, -0.0000024264,0.0000024253,0.0000024237,0.0000024214,0.0000024179, -0.0000024131,0.0000024073,0.0000024014,0.0000023967,0.0000023926, -0.0000023888,0.0000023857,0.0000023830,0.0000023799,0.0000023762, -0.0000023727,0.0000023715,0.0000023736,0.0000023783,0.0000023855, -0.0000023954,0.0000024067,0.0000024173,0.0000024252,0.0000024293, -0.0000024298,0.0000024272,0.0000024234,0.0000024199,0.0000024166, -0.0000024124,0.0000024078,0.0000024020,0.0000023964,0.0000023909, -0.0000023863,0.0000023823,0.0000023798,0.0000023785,0.0000023792, -0.0000023799,0.0000023802,0.0000023801,0.0000023810,0.0000023841, -0.0000023905,0.0000024010,0.0000024134,0.0000024244,0.0000024332, -0.0000024414,0.0000024510,0.0000024630,0.0000024803,0.0000025037, -0.0000025326,0.0000025598,0.0000025813,0.0000025998,0.0000026184, -0.0000026364,0.0000026501,0.0000026567,0.0000026533,0.0000026423, -0.0000026303,0.0000026215,0.0000026123,0.0000026013,0.0000025926, -0.0000025875,0.0000025778,0.0000025485,0.0000025159,0.0000025022, -0.0000024901,0.0000024834,0.0000024806,0.0000024733,0.0000024580, -0.0000024418,0.0000024340,0.0000024367,0.0000024588,0.0000024920, -0.0000025111,0.0000024983,0.0000025293,0.0000026034,0.0000026195, -0.0000026119,0.0000026066,0.0000026064,0.0000026080,0.0000026114, -0.0000026137,0.0000026140,0.0000026108,0.0000026038,0.0000025961, -0.0000025905,0.0000025882,0.0000025887,0.0000025892,0.0000025709, -0.0000025170,0.0000024701,0.0000024613,0.0000024629,0.0000024643, -0.0000024603,0.0000024512,0.0000024451,0.0000024462,0.0000024523, -0.0000024575,0.0000024621,0.0000024674,0.0000024738,0.0000024798, -0.0000024851,0.0000024890,0.0000024895,0.0000024899,0.0000024911, -0.0000024940,0.0000024984,0.0000025016,0.0000025044,0.0000025087, -0.0000025169,0.0000025260,0.0000025328,0.0000025367,0.0000025353, -0.0000025303,0.0000025244,0.0000025179,0.0000025140,0.0000025120, -0.0000025088,0.0000025030,0.0000024970,0.0000024957,0.0000024963, -0.0000024943,0.0000024877,0.0000024785,0.0000024700,0.0000024630, -0.0000024592,0.0000024605,0.0000024676,0.0000024793,0.0000024944, -0.0000025109,0.0000025226,0.0000025289,0.0000025374,0.0000025539, -0.0000025728,0.0000025847,0.0000025884,0.0000025880,0.0000025868, -0.0000025879,0.0000025936,0.0000026041,0.0000026187,0.0000026339, -0.0000026475,0.0000026591,0.0000026685,0.0000026771,0.0000026850, -0.0000026906,0.0000026895,0.0000026810,0.0000026685,0.0000026594, -0.0000026559,0.0000026531,0.0000026477,0.0000026409,0.0000026352, -0.0000026325,0.0000026341,0.0000026403,0.0000026506,0.0000026610, -0.0000026682,0.0000026717,0.0000026727,0.0000026705,0.0000026657, -0.0000026596,0.0000026535,0.0000026483,0.0000026433,0.0000026372, -0.0000026308,0.0000026251,0.0000026205,0.0000026164,0.0000026123, -0.0000026063,0.0000025978,0.0000025887,0.0000025822,0.0000025794, -0.0000025787,0.0000025780,0.0000025767,0.0000025747,0.0000025731, -0.0000025730,0.0000025735,0.0000025725,0.0000025701,0.0000025659, -0.0000025620,0.0000025587,0.0000025568,0.0000025565,0.0000025578, -0.0000025604,0.0000025635,0.0000025663,0.0000025679,0.0000025671, -0.0000025663,0.0000025654,0.0000025651,0.0000025655,0.0000025658, -0.0000025657,0.0000025650,0.0000025642,0.0000025638,0.0000025641, -0.0000025654,0.0000025675,0.0000025688,0.0000025684,0.0000025661, -0.0000025614,0.0000025555,0.0000025503,0.0000025404,0.0000025183, -0.0000024899,0.0000024716,0.0000024697,0.0000024686,0.0000024516, -0.0000024238,0.0000023989,0.0000023860,0.0000023812,0.0000023644, -0.0000023267,0.0000022847,0.0000022565,0.0000022445,0.0000022429, -0.0000022479,0.0000022632,0.0000022868,0.0000023145,0.0000023446, -0.0000023799,0.0000024180,0.0000024487,0.0000024779,0.0000025084, -0.0000025230,0.0000025234,0.0000025196,0.0000025109,0.0000025025, -0.0000025000,0.0000025035,0.0000025099,0.0000025156,0.0000025181, -0.0000025176,0.0000025168,0.0000025180,0.0000025236,0.0000025279, -0.0000025256,0.0000025186,0.0000025101,0.0000024986,0.0000024866, -0.0000024824,0.0000024843,0.0000024885,0.0000024884,0.0000024837, -0.0000024806,0.0000024815,0.0000024840,0.0000024856,0.0000024863, -0.0000024889,0.0000024943,0.0000025006,0.0000025053,0.0000025078, -0.0000025096,0.0000025132,0.0000025206,0.0000025302,0.0000025364, -0.0000025379,0.0000025415,0.0000025500,0.0000025544,0.0000025508, -0.0000025425,0.0000025362,0.0000025364,0.0000025447,0.0000025573, -0.0000025654,0.0000025663,0.0000025648,0.0000025608,0.0000025546, -0.0000025483,0.0000025426,0.0000025380,0.0000025356,0.0000025353, -0.0000025354,0.0000025351,0.0000025354,0.0000025370,0.0000025407, -0.0000025450,0.0000025488,0.0000025524,0.0000025566,0.0000025615, -0.0000025652,0.0000025660,0.0000025681,0.0000025760,0.0000025886, -0.0000026034,0.0000026190,0.0000026328,0.0000026409,0.0000026465, -0.0000026556,0.0000026650,0.0000026692,0.0000026677,0.0000026570, -0.0000026443,0.0000026457,0.0000026627,0.0000026804,0.0000026908, -0.0000027004,0.0000027109,0.0000027171,0.0000027207,0.0000027226, -0.0000027208,0.0000027153,0.0000027086,0.0000027024,0.0000026960, -0.0000026897,0.0000026843,0.0000026808,0.0000026804,0.0000026829, -0.0000026871,0.0000026914,0.0000026959,0.0000027017,0.0000027106, -0.0000027224,0.0000027346,0.0000027451,0.0000027526,0.0000027562, -0.0000027573,0.0000027582,0.0000027600,0.0000027627,0.0000027646, -0.0000027646,0.0000027627,0.0000027590,0.0000027549,0.0000027517, -0.0000027492,0.0000027468,0.0000027434,0.0000027391,0.0000027341, -0.0000027279,0.0000027216,0.0000027164,0.0000027126,0.0000027112, -0.0000027119,0.0000027135,0.0000027142,0.0000027136,0.0000027117, -0.0000027078,0.0000027051,0.0000027032,0.0000027006,0.0000026944, -0.0000026840,0.0000026714,0.0000026600,0.0000026538,0.0000026536, -0.0000026567,0.0000026609,0.0000026641,0.0000026661,0.0000026690, -0.0000026733,0.0000026773,0.0000026778,0.0000026707,0.0000026559, -0.0000026427,0.0000026384,0.0000026426,0.0000026511,0.0000026606, -0.0000026712,0.0000026799,0.0000026849,0.0000026881,0.0000026891, -0.0000026866,0.0000026773,0.0000026643,0.0000026542,0.0000026475, -0.0000026378,0.0000026242,0.0000026110,0.0000025982,0.0000025893, -0.0000025870,0.0000025841,0.0000025767,0.0000025683,0.0000025600, -0.0000025429,0.0000025150,0.0000024987,0.0000025031,0.0000025116, -0.0000025098,0.0000025026,0.0000024922,0.0000024749,0.0000024551, -0.0000024402,0.0000024306,0.0000024239,0.0000024204,0.0000024193, -0.0000024195,0.0000024210,0.0000024239,0.0000024264,0.0000024251, -0.0000024183,0.0000024113,0.0000024057,0.0000023964,0.0000023818, -0.0000023694,0.0000023663,0.0000023683,0.0000023729,0.0000023832, -0.0000024007,0.0000024174,0.0000024314,0.0000024383,0.0000024380, -0.0000024332,0.0000024338,0.0000024501,0.0000024750,0.0000024942, -0.0000025040,0.0000025080,0.0000025090,0.0000025077,0.0000025050, -0.0000024981,0.0000024871,0.0000024753,0.0000024698,0.0000024660, -0.0000024642,0.0000025007,0.0000025764,0.0000026329,0.0000026753, -0.0000027111,0.0000027204,0.0000027167,0.0000027186,0.0000027227, -0.0000027232,0.0000027155,0.0000027066,0.0000027058,0.0000027101, -0.0000027059,0.0000026869,0.0000026747,0.0000026674,0.0000026538, -0.0000026379,0.0000026247,0.0000026161,0.0000026110,0.0000026104, -0.0000026127,0.0000026155,0.0000026187,0.0000026229,0.0000026272, -0.0000026313,0.0000026357,0.0000026397,0.0000026408,0.0000026286, -0.0000025993,0.0000025743,0.0000025663,0.0000025595,0.0000025239, -0.0000024584,0.0000023985,0.0000023721,0.0000023647,0.0000023575, -0.0000023498,0.0000023428,0.0000023359,0.0000023288,0.0000023205, -0.0000023115,0.0000023042,0.0000022979,0.0000022938,0.0000022925, -0.0000022930,0.0000022952,0.0000022998,0.0000023055,0.0000023128, -0.0000023222,0.0000023323,0.0000023414,0.0000023474,0.0000023485, -0.0000023458,0.0000023411,0.0000023388,0.0000023400,0.0000023416, -0.0000023414,0.0000023412,0.0000023419,0.0000023429,0.0000023430, -0.0000023406,0.0000023335,0.0000023231,0.0000023138,0.0000023067, -0.0000023004,0.0000022950,0.0000022922,0.0000022972,0.0000023115, -0.0000023217,0.0000023227,0.0000023194,0.0000023123,0.0000023043, -0.0000022989,0.0000022976,0.0000022989,0.0000023007,0.0000023033, -0.0000023069,0.0000023102,0.0000023122,0.0000023122,0.0000023111, -0.0000023106,0.0000023114,0.0000023116,0.0000023108,0.0000023099, -0.0000023095,0.0000023106,0.0000023149,0.0000023213,0.0000023257, -0.0000023261,0.0000023223,0.0000023152,0.0000023075,0.0000023023, -0.0000023009,0.0000023022,0.0000023051,0.0000023082,0.0000023106, -0.0000023122,0.0000023139,0.0000023147,0.0000023136,0.0000023122, -0.0000023122,0.0000023132,0.0000023135,0.0000023128,0.0000023093, -0.0000023026,0.0000022939,0.0000022852,0.0000022786,0.0000022739, -0.0000022714,0.0000022711,0.0000022721,0.0000022730,0.0000022722, -0.0000022698,0.0000022666,0.0000022618,0.0000022544,0.0000022449, -0.0000022354,0.0000022342,0.0000022516,0.0000022778,0.0000022939, -0.0000023098,0.0000023331,0.0000023467,0.0000023471,0.0000023472, -0.0000023491,0.0000023498,0.0000023501,0.0000023481,0.0000023458, -0.0000023562,0.0000023842,0.0000024037,0.0000024046,0.0000023956, -0.0000023869,0.0000023845,0.0000023983,0.0000024324,0.0000024821, -0.0000025323,0.0000025480,0.0000025365,0.0000025001,0.0000024523, -0.0000024266,0.0000024246,0.0000024274,0.0000024289,0.0000024300, -0.0000024312,0.0000024349,0.0000024418,0.0000024496,0.0000024541, -0.0000024544,0.0000024503,0.0000024440,0.0000024388,0.0000024349, -0.0000024325,0.0000024315,0.0000024318,0.0000024326,0.0000024332, -0.0000024331,0.0000024322,0.0000024282,0.0000024228,0.0000024190, -0.0000024161,0.0000024157,0.0000024190,0.0000024245,0.0000024069, -0.0000024106,0.0000024145,0.0000024179,0.0000024198,0.0000024196, -0.0000024181,0.0000024153,0.0000024119,0.0000024084,0.0000024053, -0.0000024026,0.0000024002,0.0000023977,0.0000023940,0.0000023882, -0.0000023816,0.0000023759,0.0000023729,0.0000023719,0.0000023710, -0.0000023708,0.0000023718,0.0000023750,0.0000023796,0.0000023846, -0.0000023885,0.0000023896,0.0000023885,0.0000023862,0.0000023852, -0.0000023859,0.0000023881,0.0000023899,0.0000023904,0.0000023900, -0.0000023895,0.0000023900,0.0000023917,0.0000023936,0.0000023950, -0.0000023960,0.0000023966,0.0000023969,0.0000023971,0.0000023963, -0.0000023943,0.0000023913,0.0000023881,0.0000023849,0.0000023825, -0.0000023817,0.0000023819,0.0000023823,0.0000023833,0.0000023854, -0.0000023887,0.0000023936,0.0000023990,0.0000024036,0.0000024066, -0.0000024088,0.0000024096,0.0000024095,0.0000024115,0.0000024174, -0.0000024230,0.0000024258,0.0000024255,0.0000024200,0.0000024173, -0.0000024192,0.0000024205,0.0000024193,0.0000024165,0.0000024109, -0.0000024058,0.0000024039,0.0000024047,0.0000024073,0.0000024074, -0.0000024034,0.0000023972,0.0000023877,0.0000023811,0.0000023840, -0.0000023950,0.0000024116,0.0000024329,0.0000024536,0.0000024659, -0.0000024781,0.0000024934,0.0000025090,0.0000025226,0.0000025357, -0.0000025481,0.0000025570,0.0000025604,0.0000025602,0.0000025575, -0.0000025537,0.0000025516,0.0000025497,0.0000025466,0.0000025431, -0.0000025405,0.0000025404,0.0000025421,0.0000025450,0.0000025482, -0.0000025510,0.0000025530,0.0000025545,0.0000025560,0.0000025570, -0.0000025574,0.0000025578,0.0000025583,0.0000025578,0.0000025552, -0.0000025515,0.0000025498,0.0000025521,0.0000025567,0.0000025582, -0.0000025569,0.0000025565,0.0000025561,0.0000025530,0.0000025501, -0.0000025471,0.0000025406,0.0000025357,0.0000025372,0.0000025411, -0.0000025422,0.0000025410,0.0000025403,0.0000025405,0.0000025404, -0.0000025397,0.0000025364,0.0000025316,0.0000025260,0.0000025185, -0.0000025139,0.0000025143,0.0000025134,0.0000025071,0.0000024986, -0.0000024911,0.0000024855,0.0000024827,0.0000024822,0.0000024823, -0.0000024828,0.0000024861,0.0000024938,0.0000025039,0.0000025117, -0.0000025146,0.0000025123,0.0000025059,0.0000024978,0.0000024903, -0.0000024844,0.0000024812,0.0000024807,0.0000024823,0.0000024850, -0.0000024869,0.0000024865,0.0000024852,0.0000024842,0.0000024834, -0.0000024815,0.0000024782,0.0000024744,0.0000024709,0.0000024684, -0.0000024675,0.0000024681,0.0000024699,0.0000024720,0.0000024741, -0.0000024769,0.0000024810,0.0000024864,0.0000024926,0.0000024958, -0.0000024951,0.0000024901,0.0000024834,0.0000024810,0.0000024868, -0.0000024990,0.0000025121,0.0000025238,0.0000025335,0.0000025388, -0.0000025380,0.0000025319,0.0000025232,0.0000025153,0.0000025115, -0.0000025111,0.0000025080,0.0000024999,0.0000024952,0.0000024971, -0.0000025031,0.0000025077,0.0000025082,0.0000025039,0.0000024953, -0.0000024837,0.0000024713,0.0000024620,0.0000024579,0.0000024578, -0.0000024584,0.0000024579,0.0000024559,0.0000024545,0.0000024546, -0.0000024548,0.0000024531,0.0000024489,0.0000024436,0.0000024365, -0.0000024214,0.0000024003,0.0000023869,0.0000023854,0.0000023874, -0.0000023925,0.0000024013,0.0000024133,0.0000024287,0.0000024446, -0.0000024566,0.0000024628,0.0000024641,0.0000024634,0.0000024606, -0.0000024556,0.0000024534,0.0000024626,0.0000024934,0.0000025342, -0.0000025679,0.0000025879,0.0000025966,0.0000025982,0.0000025970, -0.0000025969,0.0000025984,0.0000025998,0.0000026006,0.0000026017, -0.0000026036,0.0000026057,0.0000026073,0.0000026088,0.0000026106, -0.0000026126,0.0000026141,0.0000026144,0.0000026127,0.0000026093, -0.0000026058,0.0000026037,0.0000026033,0.0000026044,0.0000026079, -0.0000026119,0.0000026134,0.0000026124,0.0000026096,0.0000026068, -0.0000026052,0.0000026057,0.0000026084,0.0000026119,0.0000026136, -0.0000026133,0.0000026096,0.0000026019,0.0000025909,0.0000025793, -0.0000025693,0.0000025628,0.0000025612,0.0000025627,0.0000025644, -0.0000025660,0.0000025678,0.0000025681,0.0000025667,0.0000025658, -0.0000025673,0.0000025694,0.0000025713,0.0000025720,0.0000025706, -0.0000025646,0.0000025540,0.0000025406,0.0000025304,0.0000025251, -0.0000025218,0.0000025193,0.0000025186,0.0000025173,0.0000025123, -0.0000025065,0.0000025020,0.0000025002,0.0000025028,0.0000025120, -0.0000025226,0.0000025309,0.0000025371,0.0000025374,0.0000025308, -0.0000025217,0.0000025154,0.0000025128,0.0000025120,0.0000025157, -0.0000025220,0.0000025278,0.0000025316,0.0000025324,0.0000025301, -0.0000025260,0.0000025232,0.0000025237,0.0000025275,0.0000025308, -0.0000025332,0.0000025342,0.0000025337,0.0000025295,0.0000025238, -0.0000025190,0.0000025168,0.0000025176,0.0000025216,0.0000025318, -0.0000025495,0.0000025582,0.0000025556,0.0000025455,0.0000025321, -0.0000025215,0.0000025183,0.0000025239,0.0000025403,0.0000025583, -0.0000025647,0.0000025546,0.0000025287,0.0000025039,0.0000024935, -0.0000024960,0.0000025070,0.0000025204,0.0000025348,0.0000025479, -0.0000025563,0.0000025614,0.0000025659,0.0000025694,0.0000025711, -0.0000025708,0.0000025677,0.0000025613,0.0000025550,0.0000025548, -0.0000025623,0.0000025730,0.0000025823,0.0000025888,0.0000025926, -0.0000025942,0.0000025938,0.0000025910,0.0000025853,0.0000025774, -0.0000025688,0.0000025600,0.0000025510,0.0000025432,0.0000025379, -0.0000025346,0.0000025318,0.0000025287,0.0000025251,0.0000025208, -0.0000025156,0.0000025094,0.0000025023,0.0000024947,0.0000024866, -0.0000024774,0.0000024656,0.0000024521,0.0000024411,0.0000024344, -0.0000024291,0.0000024238,0.0000024197,0.0000024177,0.0000024176, -0.0000024183,0.0000024186,0.0000024182,0.0000024173,0.0000024158, -0.0000024141,0.0000024126,0.0000024108,0.0000024086,0.0000024056, -0.0000024017,0.0000023973,0.0000023919,0.0000023860,0.0000023804, -0.0000023750,0.0000023701,0.0000023656,0.0000023619,0.0000023598, -0.0000023587,0.0000023580,0.0000023583,0.0000023605,0.0000023655, -0.0000023730,0.0000023822,0.0000023915,0.0000023993,0.0000024051, -0.0000024086,0.0000024102,0.0000024103,0.0000024097,0.0000024082, -0.0000024052,0.0000024020,0.0000023968,0.0000023933,0.0000023884, -0.0000023843,0.0000023810,0.0000023794,0.0000023779,0.0000023769, -0.0000023754,0.0000023737,0.0000023721,0.0000023718,0.0000023742, -0.0000023818,0.0000023943,0.0000024085,0.0000024203,0.0000024285, -0.0000024354,0.0000024438,0.0000024543,0.0000024688,0.0000024922, -0.0000025229,0.0000025542,0.0000025784,0.0000025962,0.0000026128, -0.0000026311,0.0000026482,0.0000026560,0.0000026512,0.0000026395, -0.0000026273,0.0000026169,0.0000026064,0.0000025972,0.0000025918, -0.0000025871,0.0000025674,0.0000025285,0.0000025053,0.0000024916, -0.0000024814,0.0000024777,0.0000024723,0.0000024556,0.0000024362, -0.0000024264,0.0000024257,0.0000024399,0.0000024732,0.0000025059, -0.0000025033,0.0000025041,0.0000025794,0.0000026173,0.0000026117, -0.0000026030,0.0000026010,0.0000026019,0.0000026042,0.0000026052, -0.0000026038,0.0000025993,0.0000025920,0.0000025853,0.0000025826, -0.0000025827,0.0000025794,0.0000025657,0.0000025317,0.0000024868, -0.0000024620,0.0000024599,0.0000024619,0.0000024642,0.0000024604, -0.0000024510,0.0000024434,0.0000024417,0.0000024452,0.0000024524, -0.0000024588,0.0000024631,0.0000024678,0.0000024723,0.0000024766, -0.0000024807,0.0000024813,0.0000024818,0.0000024826,0.0000024846, -0.0000024898,0.0000024953,0.0000024999,0.0000025037,0.0000025099, -0.0000025194,0.0000025284,0.0000025349,0.0000025354,0.0000025308, -0.0000025244,0.0000025168,0.0000025101,0.0000025068,0.0000025044, -0.0000025006,0.0000024949,0.0000024921,0.0000024921,0.0000024908, -0.0000024843,0.0000024739,0.0000024644,0.0000024568,0.0000024519, -0.0000024522,0.0000024588,0.0000024691,0.0000024802,0.0000024933, -0.0000025076,0.0000025192,0.0000025281,0.0000025404,0.0000025580, -0.0000025745,0.0000025839,0.0000025861,0.0000025842,0.0000025803, -0.0000025774,0.0000025780,0.0000025853,0.0000025980,0.0000026141, -0.0000026330,0.0000026499,0.0000026618,0.0000026715,0.0000026808, -0.0000026849,0.0000026816,0.0000026702,0.0000026587,0.0000026526, -0.0000026488,0.0000026414,0.0000026313,0.0000026225,0.0000026166, -0.0000026141,0.0000026146,0.0000026197,0.0000026285,0.0000026373, -0.0000026437,0.0000026473,0.0000026479,0.0000026457,0.0000026413, -0.0000026361,0.0000026313,0.0000026272,0.0000026226,0.0000026174, -0.0000026127,0.0000026088,0.0000026050,0.0000026001,0.0000025932, -0.0000025856,0.0000025801,0.0000025781,0.0000025776,0.0000025770, -0.0000025767,0.0000025763,0.0000025753,0.0000025743,0.0000025732, -0.0000025704,0.0000025657,0.0000025600,0.0000025552,0.0000025523, -0.0000025503,0.0000025489,0.0000025482,0.0000025484,0.0000025500, -0.0000025527,0.0000025557,0.0000025587,0.0000025618,0.0000025643, -0.0000025653,0.0000025648,0.0000025641,0.0000025640,0.0000025645, -0.0000025654,0.0000025654,0.0000025655,0.0000025660,0.0000025670, -0.0000025679,0.0000025677,0.0000025656,0.0000025624,0.0000025577, -0.0000025529,0.0000025474,0.0000025351,0.0000025116,0.0000024846, -0.0000024687,0.0000024675,0.0000024653,0.0000024472,0.0000024195, -0.0000023957,0.0000023838,0.0000023799,0.0000023639,0.0000023256, -0.0000022828,0.0000022559,0.0000022454,0.0000022422,0.0000022433, -0.0000022515,0.0000022702,0.0000022961,0.0000023246,0.0000023556, -0.0000023926,0.0000024285,0.0000024562,0.0000024861,0.0000025130, -0.0000025213,0.0000025198,0.0000025133,0.0000025057,0.0000025018, -0.0000025031,0.0000025083,0.0000025136,0.0000025164,0.0000025163, -0.0000025155,0.0000025172,0.0000025233,0.0000025287,0.0000025274, -0.0000025215,0.0000025143,0.0000025026,0.0000024884,0.0000024806, -0.0000024815,0.0000024862,0.0000024875,0.0000024841,0.0000024822, -0.0000024856,0.0000024929,0.0000024974,0.0000024982,0.0000024992, -0.0000025024,0.0000025063,0.0000025091,0.0000025096,0.0000025089, -0.0000025098,0.0000025154,0.0000025254,0.0000025342,0.0000025377, -0.0000025400,0.0000025474,0.0000025556,0.0000025560,0.0000025496, -0.0000025416,0.0000025378,0.0000025399,0.0000025493,0.0000025597, -0.0000025637,0.0000025629,0.0000025590,0.0000025541,0.0000025500, -0.0000025458,0.0000025412,0.0000025383,0.0000025380,0.0000025383, -0.0000025379,0.0000025369,0.0000025371,0.0000025396,0.0000025440, -0.0000025487,0.0000025526,0.0000025554,0.0000025582,0.0000025617, -0.0000025634,0.0000025623,0.0000025619,0.0000025666,0.0000025757, -0.0000025877,0.0000026042,0.0000026225,0.0000026346,0.0000026410, -0.0000026503,0.0000026627,0.0000026692,0.0000026685,0.0000026584, -0.0000026423,0.0000026392,0.0000026536,0.0000026735,0.0000026867, -0.0000026985,0.0000027123,0.0000027209,0.0000027232,0.0000027228, -0.0000027182,0.0000027107,0.0000027024,0.0000026949,0.0000026882, -0.0000026824,0.0000026772,0.0000026736,0.0000026728,0.0000026749, -0.0000026771,0.0000026776,0.0000026780,0.0000026808,0.0000026886, -0.0000027005,0.0000027137,0.0000027255,0.0000027352,0.0000027420, -0.0000027469,0.0000027519,0.0000027582,0.0000027634,0.0000027676, -0.0000027700,0.0000027693,0.0000027649,0.0000027584,0.0000027522, -0.0000027484,0.0000027469,0.0000027459,0.0000027450,0.0000027423, -0.0000027355,0.0000027258,0.0000027155,0.0000027060,0.0000026999, -0.0000026990,0.0000027014,0.0000027042,0.0000027058,0.0000027058, -0.0000027039,0.0000027000,0.0000026955,0.0000026896,0.0000026806, -0.0000026693,0.0000026587,0.0000026531,0.0000026530,0.0000026565, -0.0000026603,0.0000026631,0.0000026656,0.0000026690,0.0000026731, -0.0000026761,0.0000026769,0.0000026716,0.0000026572,0.0000026386, -0.0000026278,0.0000026288,0.0000026401,0.0000026516,0.0000026626, -0.0000026734,0.0000026816,0.0000026865,0.0000026895,0.0000026901, -0.0000026865,0.0000026769,0.0000026660,0.0000026574,0.0000026484, -0.0000026358,0.0000026224,0.0000026097,0.0000025982,0.0000025916, -0.0000025883,0.0000025831,0.0000025755,0.0000025670,0.0000025543, -0.0000025298,0.0000025043,0.0000024983,0.0000025061,0.0000025107, -0.0000025074,0.0000025008,0.0000024892,0.0000024713,0.0000024525, -0.0000024377,0.0000024282,0.0000024223,0.0000024192,0.0000024183, -0.0000024186,0.0000024194,0.0000024216,0.0000024241,0.0000024235, -0.0000024183,0.0000024118,0.0000024064,0.0000023984,0.0000023856, -0.0000023727,0.0000023669,0.0000023677,0.0000023707,0.0000023782, -0.0000023938,0.0000024104,0.0000024246,0.0000024340,0.0000024354, -0.0000024303,0.0000024235,0.0000024230,0.0000024374,0.0000024611, -0.0000024812,0.0000024932,0.0000024981,0.0000024980,0.0000024956, -0.0000024890,0.0000024797,0.0000024702,0.0000024643,0.0000024646, -0.0000024645,0.0000024771,0.0000025386,0.0000026064,0.0000026524, -0.0000026905,0.0000027147,0.0000027142,0.0000027113,0.0000027150, -0.0000027182,0.0000027164,0.0000027080,0.0000027021,0.0000027034, -0.0000027087,0.0000027058,0.0000026891,0.0000026775,0.0000026719, -0.0000026617,0.0000026483,0.0000026372,0.0000026293,0.0000026260, -0.0000026260,0.0000026275,0.0000026299,0.0000026344,0.0000026405, -0.0000026460,0.0000026493,0.0000026498,0.0000026494,0.0000026446, -0.0000026209,0.0000025890,0.0000025721,0.0000025670,0.0000025444, -0.0000024894,0.0000024229,0.0000023843,0.0000023725,0.0000023641, -0.0000023547,0.0000023477,0.0000023401,0.0000023314,0.0000023222, -0.0000023120,0.0000023042,0.0000022976,0.0000022904,0.0000022858, -0.0000022849,0.0000022856,0.0000022871,0.0000022914,0.0000022991, -0.0000023075,0.0000023154,0.0000023234,0.0000023308,0.0000023350, -0.0000023357,0.0000023346,0.0000023343,0.0000023353,0.0000023355, -0.0000023341,0.0000023326,0.0000023328,0.0000023340,0.0000023354, -0.0000023364,0.0000023348,0.0000023276,0.0000023181,0.0000023104, -0.0000023040,0.0000022977,0.0000022916,0.0000022874,0.0000022922, -0.0000023073,0.0000023168,0.0000023166,0.0000023115,0.0000023038, -0.0000022957,0.0000022917,0.0000022920,0.0000022938,0.0000022952, -0.0000022972,0.0000023001,0.0000023035,0.0000023066,0.0000023082, -0.0000023085,0.0000023078,0.0000023069,0.0000023058,0.0000023043, -0.0000023028,0.0000023014,0.0000023012,0.0000023034,0.0000023099, -0.0000023175,0.0000023216,0.0000023213,0.0000023169,0.0000023095, -0.0000023026,0.0000022987,0.0000022981,0.0000022991,0.0000023021, -0.0000023059,0.0000023090,0.0000023107,0.0000023108,0.0000023103, -0.0000023102,0.0000023113,0.0000023123,0.0000023119,0.0000023087, -0.0000023025,0.0000022944,0.0000022856,0.0000022772,0.0000022698, -0.0000022640,0.0000022607,0.0000022600,0.0000022611,0.0000022634, -0.0000022649,0.0000022640,0.0000022616,0.0000022583,0.0000022534, -0.0000022455,0.0000022351,0.0000022296,0.0000022415,0.0000022703, -0.0000022911,0.0000023075,0.0000023304,0.0000023454,0.0000023471, -0.0000023478,0.0000023499,0.0000023503,0.0000023503,0.0000023484, -0.0000023461,0.0000023563,0.0000023844,0.0000024049,0.0000024070, -0.0000023981,0.0000023881,0.0000023842,0.0000023926,0.0000024206, -0.0000024638,0.0000025138,0.0000025432,0.0000025415,0.0000025168, -0.0000024716,0.0000024348,0.0000024263,0.0000024277,0.0000024296, -0.0000024310,0.0000024315,0.0000024317,0.0000024321,0.0000024336, -0.0000024365,0.0000024397,0.0000024421,0.0000024422,0.0000024399, -0.0000024361,0.0000024320,0.0000024292,0.0000024281,0.0000024286, -0.0000024301,0.0000024322,0.0000024335,0.0000024323,0.0000024282, -0.0000024218,0.0000024156,0.0000024100,0.0000024064,0.0000024054, -0.0000023948,0.0000023940,0.0000023946,0.0000023964,0.0000023982, -0.0000023988,0.0000023989,0.0000023979,0.0000023965,0.0000023952, -0.0000023941,0.0000023930,0.0000023915,0.0000023892,0.0000023854, -0.0000023811,0.0000023780,0.0000023755,0.0000023744,0.0000023731, -0.0000023713,0.0000023700,0.0000023703,0.0000023736,0.0000023789, -0.0000023840,0.0000023872,0.0000023879,0.0000023872,0.0000023861, -0.0000023862,0.0000023874,0.0000023890,0.0000023895,0.0000023887, -0.0000023874,0.0000023870,0.0000023876,0.0000023890,0.0000023902, -0.0000023908,0.0000023910,0.0000023909,0.0000023908,0.0000023911, -0.0000023912,0.0000023908,0.0000023897,0.0000023877,0.0000023851, -0.0000023826,0.0000023816,0.0000023816,0.0000023816,0.0000023817, -0.0000023823,0.0000023840,0.0000023877,0.0000023924,0.0000023968, -0.0000024001,0.0000024029,0.0000024040,0.0000024037,0.0000024047, -0.0000024106,0.0000024173,0.0000024216,0.0000024225,0.0000024185, -0.0000024134,0.0000024138,0.0000024154,0.0000024147,0.0000024123, -0.0000024074,0.0000024012,0.0000023967,0.0000023957,0.0000023990, -0.0000024032,0.0000024024,0.0000023971,0.0000023875,0.0000023784, -0.0000023775,0.0000023863,0.0000024023,0.0000024228,0.0000024441, -0.0000024592,0.0000024709,0.0000024862,0.0000025039,0.0000025193, -0.0000025315,0.0000025427,0.0000025516,0.0000025550,0.0000025547, -0.0000025524,0.0000025509,0.0000025508,0.0000025506,0.0000025482, -0.0000025434,0.0000025393,0.0000025383,0.0000025394,0.0000025416, -0.0000025443,0.0000025471,0.0000025491,0.0000025501,0.0000025503, -0.0000025499,0.0000025490,0.0000025486,0.0000025494,0.0000025511, -0.0000025526,0.0000025529,0.0000025514,0.0000025505,0.0000025529, -0.0000025570,0.0000025579,0.0000025557,0.0000025546,0.0000025536, -0.0000025512,0.0000025492,0.0000025451,0.0000025366,0.0000025318, -0.0000025335,0.0000025357,0.0000025354,0.0000025354,0.0000025365, -0.0000025386,0.0000025403,0.0000025395,0.0000025353,0.0000025307, -0.0000025246,0.0000025173,0.0000025140,0.0000025139,0.0000025095, -0.0000024994,0.0000024895,0.0000024821,0.0000024771,0.0000024752, -0.0000024757,0.0000024776,0.0000024799,0.0000024827,0.0000024877, -0.0000024957,0.0000025045,0.0000025103,0.0000025108,0.0000025075, -0.0000025014,0.0000024948,0.0000024895,0.0000024866,0.0000024861, -0.0000024869,0.0000024875,0.0000024870,0.0000024846,0.0000024819, -0.0000024795,0.0000024767,0.0000024730,0.0000024697,0.0000024676, -0.0000024664,0.0000024660,0.0000024657,0.0000024654,0.0000024656, -0.0000024681,0.0000024731,0.0000024783,0.0000024843,0.0000024895, -0.0000024920,0.0000024906,0.0000024860,0.0000024800,0.0000024772, -0.0000024800,0.0000024909,0.0000025051,0.0000025179,0.0000025283, -0.0000025356,0.0000025378,0.0000025345,0.0000025273,0.0000025193, -0.0000025136,0.0000025123,0.0000025122,0.0000025078,0.0000025006, -0.0000024981,0.0000025005,0.0000025056,0.0000025088,0.0000025084, -0.0000025034,0.0000024935,0.0000024814,0.0000024700,0.0000024622, -0.0000024589,0.0000024588,0.0000024588,0.0000024571,0.0000024545, -0.0000024535,0.0000024541,0.0000024545,0.0000024522,0.0000024470, -0.0000024406,0.0000024308,0.0000024127,0.0000023921,0.0000023812, -0.0000023804,0.0000023819,0.0000023872,0.0000023978,0.0000024115, -0.0000024262,0.0000024400,0.0000024507,0.0000024573,0.0000024596, -0.0000024593,0.0000024578,0.0000024548,0.0000024532,0.0000024586, -0.0000024791,0.0000025112,0.0000025444,0.0000025703,0.0000025864, -0.0000025940,0.0000025959,0.0000025957,0.0000025961,0.0000025972, -0.0000025987,0.0000026003,0.0000026021,0.0000026040,0.0000026057, -0.0000026074,0.0000026086,0.0000026094,0.0000026101,0.0000026108, -0.0000026106,0.0000026083,0.0000026046,0.0000026019,0.0000026008, -0.0000026007,0.0000026032,0.0000026085,0.0000026122,0.0000026119, -0.0000026090,0.0000026061,0.0000026042,0.0000026042,0.0000026066, -0.0000026101,0.0000026117,0.0000026105,0.0000026055,0.0000025961, -0.0000025833,0.0000025700,0.0000025588,0.0000025518,0.0000025501, -0.0000025514,0.0000025534,0.0000025557,0.0000025583,0.0000025595, -0.0000025581,0.0000025565,0.0000025561,0.0000025563,0.0000025568, -0.0000025570,0.0000025562,0.0000025508,0.0000025413,0.0000025317, -0.0000025260,0.0000025237,0.0000025209,0.0000025179,0.0000025171, -0.0000025168,0.0000025126,0.0000025064,0.0000025010,0.0000024969, -0.0000024953,0.0000024997,0.0000025108,0.0000025215,0.0000025285, -0.0000025329,0.0000025323,0.0000025275,0.0000025215,0.0000025170, -0.0000025155,0.0000025172,0.0000025217,0.0000025275,0.0000025331, -0.0000025372,0.0000025379,0.0000025342,0.0000025266,0.0000025202, -0.0000025183,0.0000025186,0.0000025210,0.0000025229,0.0000025247, -0.0000025248,0.0000025203,0.0000025136,0.0000025099,0.0000025094, -0.0000025115,0.0000025192,0.0000025351,0.0000025526,0.0000025577, -0.0000025537,0.0000025424,0.0000025297,0.0000025209,0.0000025204, -0.0000025287,0.0000025445,0.0000025604,0.0000025664,0.0000025568, -0.0000025334,0.0000025116,0.0000025051,0.0000025089,0.0000025206, -0.0000025343,0.0000025488,0.0000025610,0.0000025683,0.0000025725, -0.0000025751,0.0000025759,0.0000025752,0.0000025735,0.0000025702, -0.0000025650,0.0000025602,0.0000025592,0.0000025631,0.0000025699, -0.0000025772,0.0000025833,0.0000025875,0.0000025894,0.0000025894, -0.0000025864,0.0000025797,0.0000025703,0.0000025594,0.0000025479, -0.0000025380,0.0000025319,0.0000025288,0.0000025261,0.0000025215, -0.0000025137,0.0000025029,0.0000024911,0.0000024801,0.0000024706, -0.0000024618,0.0000024523,0.0000024424,0.0000024321,0.0000024215, -0.0000024135,0.0000024110,0.0000024119,0.0000024127,0.0000024126, -0.0000024123,0.0000024116,0.0000024098,0.0000024070,0.0000024036, -0.0000024003,0.0000023971,0.0000023942,0.0000023914,0.0000023890, -0.0000023874,0.0000023862,0.0000023851,0.0000023843,0.0000023834, -0.0000023816,0.0000023796,0.0000023770,0.0000023725,0.0000023662, -0.0000023594,0.0000023545,0.0000023512,0.0000023490,0.0000023473, -0.0000023468,0.0000023474,0.0000023490,0.0000023516,0.0000023556, -0.0000023610,0.0000023669,0.0000023727,0.0000023787,0.0000023848, -0.0000023908,0.0000023955,0.0000023978,0.0000023974,0.0000023952, -0.0000023921,0.0000023891,0.0000023864,0.0000023847,0.0000023828, -0.0000023825,0.0000023807,0.0000023784,0.0000023756,0.0000023723, -0.0000023698,0.0000023672,0.0000023657,0.0000023675,0.0000023748, -0.0000023878,0.0000024021,0.0000024142,0.0000024228,0.0000024306, -0.0000024381,0.0000024472,0.0000024613,0.0000024853,0.0000025185, -0.0000025516,0.0000025757,0.0000025917,0.0000026077,0.0000026292, -0.0000026477,0.0000026544,0.0000026488,0.0000026356,0.0000026225, -0.0000026112,0.0000026014,0.0000025948,0.0000025913,0.0000025813, -0.0000025453,0.0000025116,0.0000024944,0.0000024788,0.0000024737, -0.0000024705,0.0000024546,0.0000024319,0.0000024188,0.0000024176, -0.0000024239,0.0000024519,0.0000024908,0.0000025067,0.0000024950, -0.0000025459,0.0000026065,0.0000026099,0.0000026014,0.0000025966, -0.0000025959,0.0000025962,0.0000025955,0.0000025934,0.0000025900, -0.0000025848,0.0000025782,0.0000025717,0.0000025623,0.0000025436, -0.0000025154,0.0000024842,0.0000024628,0.0000024580,0.0000024588, -0.0000024603,0.0000024617,0.0000024583,0.0000024494,0.0000024418, -0.0000024382,0.0000024389,0.0000024464,0.0000024548,0.0000024591, -0.0000024631,0.0000024669,0.0000024701,0.0000024735,0.0000024735, -0.0000024731,0.0000024735,0.0000024756,0.0000024812,0.0000024882, -0.0000024944,0.0000024989,0.0000025043,0.0000025130,0.0000025225, -0.0000025308,0.0000025339,0.0000025307,0.0000025237,0.0000025159, -0.0000025076,0.0000025024,0.0000024995,0.0000024966,0.0000024923, -0.0000024884,0.0000024874,0.0000024863,0.0000024804,0.0000024698, -0.0000024594,0.0000024508,0.0000024452,0.0000024452,0.0000024510, -0.0000024603,0.0000024696,0.0000024788,0.0000024904,0.0000025044, -0.0000025180,0.0000025305,0.0000025445,0.0000025602,0.0000025732, -0.0000025799,0.0000025815,0.0000025789,0.0000025729,0.0000025668, -0.0000025654,0.0000025702,0.0000025812,0.0000025994,0.0000026225, -0.0000026428,0.0000026566,0.0000026678,0.0000026761,0.0000026778, -0.0000026705,0.0000026590,0.0000026510,0.0000026453,0.0000026361, -0.0000026244,0.0000026147,0.0000026088,0.0000026058,0.0000026045, -0.0000026047,0.0000026078,0.0000026130,0.0000026178,0.0000026208, -0.0000026216,0.0000026208,0.0000026183,0.0000026152,0.0000026122, -0.0000026102,0.0000026079,0.0000026042,0.0000025997,0.0000025951, -0.0000025909,0.0000025870,0.0000025826,0.0000025794,0.0000025784, -0.0000025771,0.0000025752,0.0000025739,0.0000025739,0.0000025743, -0.0000025738,0.0000025719,0.0000025679,0.0000025620,0.0000025560, -0.0000025511,0.0000025484,0.0000025473,0.0000025468,0.0000025461, -0.0000025450,0.0000025441,0.0000025440,0.0000025448,0.0000025461, -0.0000025474,0.0000025495,0.0000025529,0.0000025566,0.0000025592, -0.0000025601,0.0000025600,0.0000025598,0.0000025597,0.0000025599, -0.0000025601,0.0000025602,0.0000025601,0.0000025597,0.0000025591, -0.0000025584,0.0000025567,0.0000025535,0.0000025493,0.0000025423, -0.0000025271,0.0000025029,0.0000024787,0.0000024669,0.0000024658, -0.0000024606,0.0000024405,0.0000024133,0.0000023915,0.0000023813, -0.0000023781,0.0000023614,0.0000023219,0.0000022792,0.0000022542, -0.0000022453,0.0000022420,0.0000022415,0.0000022454,0.0000022571, -0.0000022789,0.0000023065,0.0000023349,0.0000023668,0.0000024041, -0.0000024367,0.0000024628,0.0000024929,0.0000025150,0.0000025190, -0.0000025153,0.0000025084,0.0000025041,0.0000025037,0.0000025067, -0.0000025117,0.0000025149,0.0000025153,0.0000025148,0.0000025166, -0.0000025221,0.0000025267,0.0000025255,0.0000025211,0.0000025152, -0.0000025037,0.0000024891,0.0000024806,0.0000024798,0.0000024832, -0.0000024859,0.0000024841,0.0000024817,0.0000024863,0.0000024985, -0.0000025074,0.0000025095,0.0000025107,0.0000025136,0.0000025158, -0.0000025157,0.0000025136,0.0000025110,0.0000025099,0.0000025117, -0.0000025199,0.0000025304,0.0000025363,0.0000025386,0.0000025441, -0.0000025538,0.0000025587,0.0000025558,0.0000025482,0.0000025413, -0.0000025394,0.0000025433,0.0000025523,0.0000025601,0.0000025616, -0.0000025586,0.0000025534,0.0000025497,0.0000025476,0.0000025449, -0.0000025421,0.0000025413,0.0000025416,0.0000025413,0.0000025404, -0.0000025403,0.0000025416,0.0000025441,0.0000025474,0.0000025517, -0.0000025557,0.0000025584,0.0000025606,0.0000025630,0.0000025634, -0.0000025609,0.0000025585,0.0000025606,0.0000025665,0.0000025753, -0.0000025911,0.0000026126,0.0000026284,0.0000026363,0.0000026464, -0.0000026606,0.0000026689,0.0000026682,0.0000026588,0.0000026414, -0.0000026340,0.0000026450,0.0000026664,0.0000026843,0.0000026982, -0.0000027125,0.0000027216,0.0000027225,0.0000027187,0.0000027123, -0.0000027044,0.0000026954,0.0000026871,0.0000026808,0.0000026758, -0.0000026707,0.0000026666,0.0000026654,0.0000026674,0.0000026687, -0.0000026683,0.0000026680,0.0000026691,0.0000026731,0.0000026791, -0.0000026864,0.0000026953,0.0000027054,0.0000027156,0.0000027263, -0.0000027394,0.0000027522,0.0000027620,0.0000027685,0.0000027715, -0.0000027716,0.0000027683,0.0000027622,0.0000027544,0.0000027483, -0.0000027455,0.0000027447,0.0000027448,0.0000027438,0.0000027386, -0.0000027289,0.0000027173,0.0000027048,0.0000026952,0.0000026902, -0.0000026890,0.0000026898,0.0000026910,0.0000026916,0.0000026906, -0.0000026868,0.0000026808,0.0000026733,0.0000026648,0.0000026569, -0.0000026523,0.0000026525,0.0000026557,0.0000026599,0.0000026625, -0.0000026644,0.0000026675,0.0000026719,0.0000026754,0.0000026759, -0.0000026700,0.0000026566,0.0000026378,0.0000026202,0.0000026146, -0.0000026236,0.0000026404,0.0000026537,0.0000026645,0.0000026750, -0.0000026824,0.0000026868,0.0000026895,0.0000026893,0.0000026848, -0.0000026770,0.0000026695,0.0000026615,0.0000026489,0.0000026337, -0.0000026204,0.0000026081,0.0000025987,0.0000025934,0.0000025882, -0.0000025821,0.0000025742,0.0000025629,0.0000025437,0.0000025160, -0.0000024981,0.0000024999,0.0000025067,0.0000025076,0.0000025043, -0.0000024980,0.0000024853,0.0000024680,0.0000024508,0.0000024367, -0.0000024278,0.0000024225,0.0000024187,0.0000024170,0.0000024170, -0.0000024184,0.0000024210,0.0000024233,0.0000024231,0.0000024188, -0.0000024126,0.0000024071,0.0000024002,0.0000023895,0.0000023776, -0.0000023697,0.0000023686,0.0000023698,0.0000023734,0.0000023856, -0.0000024021,0.0000024155,0.0000024255,0.0000024303,0.0000024276, -0.0000024198,0.0000024128,0.0000024136,0.0000024249,0.0000024414, -0.0000024559,0.0000024651,0.0000024673,0.0000024666,0.0000024618, -0.0000024563,0.0000024548,0.0000024561,0.0000024605,0.0000024632, -0.0000024625,0.0000025004,0.0000025760,0.0000026288,0.0000026670, -0.0000026998,0.0000027118,0.0000027063,0.0000027059,0.0000027106, -0.0000027118,0.0000027083,0.0000027016,0.0000026996,0.0000027029, -0.0000027098,0.0000027088,0.0000026963,0.0000026832,0.0000026760, -0.0000026703,0.0000026634,0.0000026558,0.0000026505,0.0000026482, -0.0000026484,0.0000026500,0.0000026539,0.0000026600,0.0000026658, -0.0000026685,0.0000026653,0.0000026586,0.0000026524,0.0000026348, -0.0000026027,0.0000025792,0.0000025712,0.0000025588,0.0000025160, -0.0000024492,0.0000023990,0.0000023806,0.0000023716,0.0000023609, -0.0000023526,0.0000023456,0.0000023358,0.0000023250,0.0000023139, -0.0000023047,0.0000022982,0.0000022908,0.0000022822,0.0000022773, -0.0000022773,0.0000022791,0.0000022810,0.0000022851,0.0000022936, -0.0000023028,0.0000023104,0.0000023177,0.0000023241,0.0000023281, -0.0000023298,0.0000023310,0.0000023316,0.0000023303,0.0000023271, -0.0000023244,0.0000023241,0.0000023256,0.0000023279,0.0000023292, -0.0000023290,0.0000023263,0.0000023205,0.0000023143,0.0000023087, -0.0000023025,0.0000022955,0.0000022890,0.0000022840,0.0000022881, -0.0000023021,0.0000023107,0.0000023093,0.0000023036,0.0000022962, -0.0000022895,0.0000022874,0.0000022883,0.0000022892,0.0000022896, -0.0000022907,0.0000022932,0.0000022968,0.0000022999,0.0000023024, -0.0000023042,0.0000023043,0.0000023020,0.0000022987,0.0000022961, -0.0000022948,0.0000022934,0.0000022924,0.0000022929,0.0000022973, -0.0000023055,0.0000023136,0.0000023174,0.0000023167,0.0000023126, -0.0000023066,0.0000023012,0.0000022982,0.0000022980,0.0000023002, -0.0000023038,0.0000023065,0.0000023076,0.0000023078,0.0000023082, -0.0000023091,0.0000023098,0.0000023094,0.0000023065,0.0000023009, -0.0000022937,0.0000022865,0.0000022795,0.0000022717,0.0000022633, -0.0000022555,0.0000022498,0.0000022471,0.0000022469,0.0000022495, -0.0000022540,0.0000022566,0.0000022562,0.0000022541,0.0000022509, -0.0000022445,0.0000022354,0.0000022286,0.0000022350,0.0000022619, -0.0000022870,0.0000023056,0.0000023286,0.0000023438,0.0000023460, -0.0000023478,0.0000023501,0.0000023503,0.0000023501,0.0000023485, -0.0000023464,0.0000023565,0.0000023844,0.0000024056,0.0000024085, -0.0000024003,0.0000023902,0.0000023824,0.0000023856,0.0000024095, -0.0000024469,0.0000024924,0.0000025311,0.0000025410,0.0000025306, -0.0000024952,0.0000024517,0.0000024301,0.0000024284,0.0000024297, -0.0000024309,0.0000024319,0.0000024323,0.0000024319,0.0000024313, -0.0000024309,0.0000024311,0.0000024323,0.0000024338,0.0000024343, -0.0000024340,0.0000024319,0.0000024294,0.0000024275,0.0000024265, -0.0000024265,0.0000024283,0.0000024308,0.0000024317,0.0000024304, -0.0000024257,0.0000024183,0.0000024099,0.0000024026,0.0000023975, -0.0000023904,0.0000023872,0.0000023854,0.0000023853,0.0000023860, -0.0000023870,0.0000023883,0.0000023890,0.0000023894,0.0000023892, -0.0000023884,0.0000023874,0.0000023867,0.0000023855,0.0000023842, -0.0000023827,0.0000023816,0.0000023808,0.0000023803,0.0000023783, -0.0000023739,0.0000023700,0.0000023692,0.0000023722,0.0000023781, -0.0000023834,0.0000023851,0.0000023847,0.0000023844,0.0000023851, -0.0000023865,0.0000023885,0.0000023896,0.0000023893,0.0000023883, -0.0000023870,0.0000023869,0.0000023877,0.0000023888,0.0000023895, -0.0000023895,0.0000023890,0.0000023883,0.0000023874,0.0000023868, -0.0000023863,0.0000023857,0.0000023851,0.0000023842,0.0000023826, -0.0000023808,0.0000023799,0.0000023795,0.0000023791,0.0000023786, -0.0000023780,0.0000023784,0.0000023812,0.0000023861,0.0000023911, -0.0000023951,0.0000023982,0.0000023994,0.0000023990,0.0000023993, -0.0000024045,0.0000024120,0.0000024178,0.0000024200,0.0000024174, -0.0000024106,0.0000024083,0.0000024096,0.0000024098,0.0000024080, -0.0000024045,0.0000023988,0.0000023923,0.0000023880,0.0000023894, -0.0000023961,0.0000023996,0.0000023973,0.0000023882,0.0000023774, -0.0000023730,0.0000023778,0.0000023919,0.0000024122,0.0000024331, -0.0000024512,0.0000024632,0.0000024769,0.0000024954,0.0000025138, -0.0000025264,0.0000025358,0.0000025444,0.0000025488,0.0000025488, -0.0000025473,0.0000025474,0.0000025491,0.0000025500,0.0000025478, -0.0000025424,0.0000025374,0.0000025359,0.0000025360,0.0000025363, -0.0000025372,0.0000025388,0.0000025402,0.0000025407,0.0000025406, -0.0000025402,0.0000025395,0.0000025386,0.0000025382,0.0000025392, -0.0000025429,0.0000025479,0.0000025514,0.0000025516,0.0000025508, -0.0000025528,0.0000025564,0.0000025562,0.0000025534,0.0000025525, -0.0000025521,0.0000025509,0.0000025488,0.0000025424,0.0000025326, -0.0000025282,0.0000025290,0.0000025288,0.0000025280,0.0000025292, -0.0000025326,0.0000025370,0.0000025400,0.0000025384,0.0000025341, -0.0000025296,0.0000025225,0.0000025157,0.0000025133,0.0000025106, -0.0000025013,0.0000024891,0.0000024808,0.0000024753,0.0000024712, -0.0000024689,0.0000024689,0.0000024710,0.0000024750,0.0000024794, -0.0000024835,0.0000024890,0.0000024963,0.0000025029,0.0000025064, -0.0000025059,0.0000025026,0.0000024978,0.0000024934,0.0000024901, -0.0000024882,0.0000024873,0.0000024862,0.0000024839,0.0000024804, -0.0000024769,0.0000024731,0.0000024693,0.0000024667,0.0000024658, -0.0000024655,0.0000024645,0.0000024630,0.0000024618,0.0000024615, -0.0000024642,0.0000024704,0.0000024774,0.0000024833,0.0000024872, -0.0000024886,0.0000024867,0.0000024822,0.0000024772,0.0000024743, -0.0000024754,0.0000024832,0.0000024966,0.0000025104,0.0000025220, -0.0000025309,0.0000025354,0.0000025347,0.0000025299,0.0000025234, -0.0000025179,0.0000025154,0.0000025152,0.0000025136,0.0000025077, -0.0000025015,0.0000025003,0.0000025024,0.0000025059,0.0000025077, -0.0000025065,0.0000025001,0.0000024896,0.0000024782,0.0000024688, -0.0000024627,0.0000024601,0.0000024596,0.0000024590,0.0000024567, -0.0000024542,0.0000024537,0.0000024545,0.0000024546,0.0000024514, -0.0000024452,0.0000024374,0.0000024245,0.0000024043,0.0000023856, -0.0000023773,0.0000023762,0.0000023775,0.0000023841,0.0000023969, -0.0000024115,0.0000024244,0.0000024351,0.0000024441,0.0000024509, -0.0000024542,0.0000024546,0.0000024538,0.0000024529,0.0000024525, -0.0000024566,0.0000024706,0.0000024937,0.0000025209,0.0000025475, -0.0000025687,0.0000025824,0.0000025904,0.0000025946,0.0000025956, -0.0000025957,0.0000025964,0.0000025981,0.0000026003,0.0000026025, -0.0000026043,0.0000026057,0.0000026061,0.0000026058,0.0000026053, -0.0000026057,0.0000026064,0.0000026052,0.0000026015,0.0000025981, -0.0000025966,0.0000025963,0.0000025984,0.0000026040,0.0000026092, -0.0000026102,0.0000026078,0.0000026041,0.0000026014,0.0000026011, -0.0000026033,0.0000026070,0.0000026087,0.0000026066,0.0000026005, -0.0000025904,0.0000025773,0.0000025628,0.0000025496,0.0000025413, -0.0000025393,0.0000025407,0.0000025431,0.0000025463,0.0000025499, -0.0000025515,0.0000025498,0.0000025471,0.0000025442,0.0000025421, -0.0000025409,0.0000025409,0.0000025408,0.0000025381,0.0000025331, -0.0000025283,0.0000025259,0.0000025242,0.0000025214,0.0000025177, -0.0000025158,0.0000025151,0.0000025123,0.0000025074,0.0000025017, -0.0000024966,0.0000024925,0.0000024922,0.0000024988,0.0000025111, -0.0000025209,0.0000025257,0.0000025279,0.0000025274,0.0000025247, -0.0000025209,0.0000025187,0.0000025200,0.0000025241,0.0000025294, -0.0000025349,0.0000025396,0.0000025428,0.0000025431,0.0000025383, -0.0000025295,0.0000025212,0.0000025166,0.0000025146,0.0000025124, -0.0000025121,0.0000025136,0.0000025136,0.0000025091,0.0000025040, -0.0000025031,0.0000025036,0.0000025085,0.0000025207,0.0000025387, -0.0000025538,0.0000025564,0.0000025497,0.0000025391,0.0000025271, -0.0000025212,0.0000025235,0.0000025327,0.0000025466,0.0000025602, -0.0000025634,0.0000025546,0.0000025391,0.0000025263,0.0000025229, -0.0000025270,0.0000025372,0.0000025511,0.0000025648,0.0000025746, -0.0000025803,0.0000025832,0.0000025837,0.0000025823,0.0000025794, -0.0000025762,0.0000025732,0.0000025698,0.0000025661,0.0000025644, -0.0000025659,0.0000025696,0.0000025731,0.0000025761,0.0000025788, -0.0000025807,0.0000025806,0.0000025766,0.0000025687,0.0000025595, -0.0000025498,0.0000025404,0.0000025329,0.0000025270,0.0000025193, -0.0000025073,0.0000024917,0.0000024751,0.0000024603,0.0000024493, -0.0000024420,0.0000024360,0.0000024292,0.0000024216,0.0000024147, -0.0000024092,0.0000024056,0.0000024050,0.0000024072,0.0000024088, -0.0000024085,0.0000024065,0.0000024037,0.0000024003,0.0000023960, -0.0000023909,0.0000023863,0.0000023826,0.0000023794,0.0000023762, -0.0000023727,0.0000023692,0.0000023666,0.0000023650,0.0000023643, -0.0000023638,0.0000023636,0.0000023638,0.0000023645,0.0000023653, -0.0000023650,0.0000023629,0.0000023587,0.0000023533,0.0000023479, -0.0000023427,0.0000023391,0.0000023378,0.0000023384,0.0000023399, -0.0000023408,0.0000023412,0.0000023423,0.0000023436,0.0000023450, -0.0000023473,0.0000023519,0.0000023602,0.0000023701,0.0000023785, -0.0000023826,0.0000023823,0.0000023799,0.0000023772,0.0000023760, -0.0000023764,0.0000023786,0.0000023803,0.0000023819,0.0000023810, -0.0000023798,0.0000023763,0.0000023720,0.0000023682,0.0000023645, -0.0000023627,0.0000023635,0.0000023702,0.0000023815,0.0000023947, -0.0000024071,0.0000024181,0.0000024267,0.0000024339,0.0000024428, -0.0000024585,0.0000024840,0.0000025173,0.0000025497,0.0000025728, -0.0000025881,0.0000026061,0.0000026287,0.0000026479,0.0000026515, -0.0000026446,0.0000026302,0.0000026168,0.0000026060,0.0000025978, -0.0000025933,0.0000025892,0.0000025620,0.0000025207,0.0000024988, -0.0000024790,0.0000024696,0.0000024682,0.0000024541,0.0000024289, -0.0000024128,0.0000024112,0.0000024139,0.0000024309,0.0000024694, -0.0000025027,0.0000024945,0.0000025125,0.0000025869,0.0000026097, -0.0000026022,0.0000025947,0.0000025917,0.0000025894,0.0000025871, -0.0000025862,0.0000025848,0.0000025759,0.0000025581,0.0000025367, -0.0000025142,0.0000024909,0.0000024707,0.0000024602,0.0000024577, -0.0000024578,0.0000024570,0.0000024562,0.0000024552,0.0000024517, -0.0000024453,0.0000024387,0.0000024341,0.0000024337,0.0000024410, -0.0000024504,0.0000024553,0.0000024590,0.0000024627,0.0000024661, -0.0000024689,0.0000024689,0.0000024673,0.0000024665,0.0000024678, -0.0000024734,0.0000024811,0.0000024886,0.0000024941,0.0000024997, -0.0000025078,0.0000025170,0.0000025258,0.0000025308,0.0000025292, -0.0000025223,0.0000025146,0.0000025061,0.0000024994,0.0000024954, -0.0000024928,0.0000024899,0.0000024856,0.0000024833,0.0000024816, -0.0000024764,0.0000024666,0.0000024559,0.0000024462,0.0000024398, -0.0000024397,0.0000024451,0.0000024525,0.0000024606,0.0000024685, -0.0000024765,0.0000024875,0.0000025026,0.0000025189,0.0000025338, -0.0000025474,0.0000025602,0.0000025700,0.0000025749,0.0000025752, -0.0000025709,0.0000025636,0.0000025578,0.0000025562,0.0000025601, -0.0000025715,0.0000025923,0.0000026180,0.0000026395,0.0000026538, -0.0000026642,0.0000026699,0.0000026673,0.0000026583,0.0000026501, -0.0000026426,0.0000026312,0.0000026183,0.0000026090,0.0000026046, -0.0000026033,0.0000026028,0.0000026022,0.0000026021,0.0000026036, -0.0000026053,0.0000026058,0.0000026047,0.0000026026,0.0000026001, -0.0000025976,0.0000025953,0.0000025940,0.0000025933,0.0000025912, -0.0000025876,0.0000025833,0.0000025807,0.0000025800,0.0000025804, -0.0000025798,0.0000025784,0.0000025748,0.0000025708,0.0000025694, -0.0000025698,0.0000025702,0.0000025691,0.0000025658,0.0000025609, -0.0000025557,0.0000025517,0.0000025494,0.0000025481,0.0000025475, -0.0000025465,0.0000025459,0.0000025449,0.0000025434,0.0000025425, -0.0000025429,0.0000025438,0.0000025443,0.0000025444,0.0000025452, -0.0000025474,0.0000025502,0.0000025526,0.0000025540,0.0000025546, -0.0000025545,0.0000025537,0.0000025528,0.0000025521,0.0000025519, -0.0000025519,0.0000025522,0.0000025523,0.0000025511,0.0000025484, -0.0000025439,0.0000025342,0.0000025156,0.0000024917,0.0000024726, -0.0000024658,0.0000024655,0.0000024561,0.0000024325,0.0000024067, -0.0000023876,0.0000023793,0.0000023756,0.0000023563,0.0000023154, -0.0000022748,0.0000022527,0.0000022438,0.0000022388,0.0000022380, -0.0000022421,0.0000022496,0.0000022644,0.0000022891,0.0000023173, -0.0000023450,0.0000023773,0.0000024136,0.0000024426,0.0000024684, -0.0000024977,0.0000025145,0.0000025158,0.0000025113,0.0000025056, -0.0000025044,0.0000025061,0.0000025099,0.0000025135,0.0000025147, -0.0000025148,0.0000025165,0.0000025200,0.0000025216,0.0000025202, -0.0000025175,0.0000025129,0.0000025017,0.0000024876,0.0000024798, -0.0000024785,0.0000024801,0.0000024833,0.0000024834,0.0000024801, -0.0000024835,0.0000024983,0.0000025124,0.0000025176,0.0000025189, -0.0000025210,0.0000025224,0.0000025212,0.0000025176,0.0000025133, -0.0000025103,0.0000025104,0.0000025153,0.0000025252,0.0000025335, -0.0000025369,0.0000025405,0.0000025496,0.0000025585,0.0000025599, -0.0000025549,0.0000025472,0.0000025420,0.0000025415,0.0000025457, -0.0000025534,0.0000025588,0.0000025581,0.0000025536,0.0000025490, -0.0000025473,0.0000025467,0.0000025453,0.0000025447,0.0000025450, -0.0000025448,0.0000025441,0.0000025442,0.0000025459,0.0000025479, -0.0000025492,0.0000025506,0.0000025534,0.0000025570,0.0000025599, -0.0000025628,0.0000025647,0.0000025643,0.0000025605,0.0000025568, -0.0000025570,0.0000025611,0.0000025681,0.0000025824,0.0000026041, -0.0000026224,0.0000026326,0.0000026425,0.0000026570,0.0000026673, -0.0000026671,0.0000026585,0.0000026422,0.0000026327,0.0000026377, -0.0000026598,0.0000026824,0.0000026982,0.0000027104,0.0000027182, -0.0000027182,0.0000027129,0.0000027057,0.0000026977,0.0000026882, -0.0000026794,0.0000026735,0.0000026691,0.0000026637,0.0000026590, -0.0000026576,0.0000026595,0.0000026609,0.0000026618,0.0000026628, -0.0000026638,0.0000026642,0.0000026639,0.0000026645,0.0000026686, -0.0000026766,0.0000026878,0.0000027026,0.0000027199,0.0000027365, -0.0000027500,0.0000027600,0.0000027665,0.0000027688,0.0000027680, -0.0000027632,0.0000027570,0.0000027502,0.0000027450,0.0000027420, -0.0000027412,0.0000027408,0.0000027363,0.0000027278,0.0000027173, -0.0000027056,0.0000026958,0.0000026889,0.0000026847,0.0000026810, -0.0000026795,0.0000026786,0.0000026768,0.0000026727,0.0000026671, -0.0000026611,0.0000026559,0.0000026535,0.0000026528,0.0000026558, -0.0000026590,0.0000026612,0.0000026629,0.0000026654,0.0000026693, -0.0000026730,0.0000026745,0.0000026677,0.0000026529,0.0000026359, -0.0000026188,0.0000026055,0.0000026065,0.0000026242,0.0000026439, -0.0000026557,0.0000026661,0.0000026762,0.0000026823,0.0000026857, -0.0000026872,0.0000026858,0.0000026821,0.0000026782,0.0000026739, -0.0000026647,0.0000026489,0.0000026323,0.0000026189,0.0000026078, -0.0000025999,0.0000025936,0.0000025874,0.0000025807,0.0000025706, -0.0000025545,0.0000025291,0.0000025049,0.0000024979,0.0000025022, -0.0000025050,0.0000025040,0.0000025017,0.0000024948,0.0000024812, -0.0000024651,0.0000024499,0.0000024374,0.0000024285,0.0000024212, -0.0000024149,0.0000024120,0.0000024115,0.0000024141,0.0000024188, -0.0000024227,0.0000024233,0.0000024196,0.0000024135,0.0000024078, -0.0000024018,0.0000023934,0.0000023835,0.0000023747,0.0000023702, -0.0000023702,0.0000023709,0.0000023772,0.0000023915,0.0000024055, -0.0000024156,0.0000024228,0.0000024242,0.0000024175,0.0000024081, -0.0000024043,0.0000024080,0.0000024167,0.0000024256,0.0000024324, -0.0000024338,0.0000024334,0.0000024291,0.0000024237,0.0000024246, -0.0000024365,0.0000024514,0.0000024619,0.0000024628,0.0000024773, -0.0000025389,0.0000026041,0.0000026448,0.0000026787,0.0000027032, -0.0000027068,0.0000026988,0.0000027008,0.0000027045,0.0000027041, -0.0000027005,0.0000026969,0.0000026983,0.0000027051,0.0000027120, -0.0000027140,0.0000027068,0.0000026937,0.0000026830,0.0000026769, -0.0000026730,0.0000026707,0.0000026692,0.0000026686,0.0000026688, -0.0000026700,0.0000026727,0.0000026760,0.0000026783,0.0000026758, -0.0000026666,0.0000026569,0.0000026421,0.0000026115,0.0000025856, -0.0000025750,0.0000025668,0.0000025349,0.0000024735,0.0000024152, -0.0000023884,0.0000023779,0.0000023675,0.0000023573,0.0000023503, -0.0000023412,0.0000023291,0.0000023168,0.0000023062,0.0000022983, -0.0000022918,0.0000022835,0.0000022745,0.0000022698,0.0000022708, -0.0000022742,0.0000022765,0.0000022808,0.0000022890,0.0000022979, -0.0000023055,0.0000023128,0.0000023190,0.0000023229,0.0000023255, -0.0000023265,0.0000023254,0.0000023214,0.0000023175,0.0000023162, -0.0000023171,0.0000023203,0.0000023230,0.0000023233,0.0000023210, -0.0000023173,0.0000023140,0.0000023110,0.0000023067,0.0000023003, -0.0000022928,0.0000022862,0.0000022810,0.0000022834,0.0000022953, -0.0000023030,0.0000023019,0.0000022968,0.0000022905,0.0000022856, -0.0000022845,0.0000022849,0.0000022843,0.0000022838,0.0000022846, -0.0000022875,0.0000022911,0.0000022937,0.0000022957,0.0000022979, -0.0000022987,0.0000022969,0.0000022929,0.0000022888,0.0000022861, -0.0000022848,0.0000022838,0.0000022838,0.0000022863,0.0000022930, -0.0000023018,0.0000023094,0.0000023127,0.0000023120,0.0000023091, -0.0000023053,0.0000023020,0.0000023004,0.0000023009,0.0000023027, -0.0000023041,0.0000023047,0.0000023054,0.0000023065,0.0000023069, -0.0000023058,0.0000023022,0.0000022970,0.0000022909,0.0000022849, -0.0000022796,0.0000022739,0.0000022664,0.0000022573,0.0000022480, -0.0000022396,0.0000022335,0.0000022315,0.0000022334,0.0000022390, -0.0000022455,0.0000022486,0.0000022487,0.0000022470,0.0000022424, -0.0000022346,0.0000022277,0.0000022301,0.0000022535,0.0000022818, -0.0000023039,0.0000023272,0.0000023424,0.0000023454,0.0000023476, -0.0000023498,0.0000023498,0.0000023497,0.0000023485,0.0000023466, -0.0000023567,0.0000023842,0.0000024054,0.0000024084,0.0000024020, -0.0000023923,0.0000023841,0.0000023829,0.0000023992,0.0000024317, -0.0000024710,0.0000025123,0.0000025361,0.0000025367,0.0000025168, -0.0000024779,0.0000024431,0.0000024315,0.0000024312,0.0000024313, -0.0000024317,0.0000024323,0.0000024322,0.0000024312,0.0000024304, -0.0000024303,0.0000024307,0.0000024310,0.0000024315,0.0000024319, -0.0000024318,0.0000024309,0.0000024292,0.0000024270,0.0000024253, -0.0000024252,0.0000024270,0.0000024287,0.0000024288,0.0000024257, -0.0000024193,0.0000024108,0.0000024024,0.0000023956,0.0000023916, -0.0000023861,0.0000023824,0.0000023812,0.0000023809,0.0000023817, -0.0000023833,0.0000023850,0.0000023863,0.0000023868,0.0000023870, -0.0000023871,0.0000023874,0.0000023874,0.0000023865,0.0000023855, -0.0000023845,0.0000023840,0.0000023850,0.0000023840,0.0000023786, -0.0000023716,0.0000023691,0.0000023715,0.0000023774,0.0000023819, -0.0000023820,0.0000023807,0.0000023811,0.0000023838,0.0000023867, -0.0000023887,0.0000023897,0.0000023897,0.0000023895,0.0000023893, -0.0000023894,0.0000023891,0.0000023888,0.0000023886,0.0000023877, -0.0000023866,0.0000023856,0.0000023846,0.0000023837,0.0000023830, -0.0000023822,0.0000023814,0.0000023806,0.0000023796,0.0000023784, -0.0000023778,0.0000023774,0.0000023769,0.0000023764,0.0000023757, -0.0000023754,0.0000023771,0.0000023816,0.0000023869,0.0000023916, -0.0000023949,0.0000023961,0.0000023957,0.0000023957,0.0000023996, -0.0000024072,0.0000024143,0.0000024178,0.0000024166,0.0000024087, -0.0000024032,0.0000024032,0.0000024042,0.0000024034,0.0000024013, -0.0000023977,0.0000023913,0.0000023843,0.0000023822,0.0000023867, -0.0000023944,0.0000023964,0.0000023901,0.0000023783,0.0000023702, -0.0000023708,0.0000023813,0.0000024004,0.0000024215,0.0000024411, -0.0000024555,0.0000024671,0.0000024833,0.0000025040,0.0000025200, -0.0000025289,0.0000025363,0.0000025416,0.0000025426,0.0000025424, -0.0000025439,0.0000025466,0.0000025481,0.0000025461,0.0000025404, -0.0000025352,0.0000025330,0.0000025322,0.0000025309,0.0000025294, -0.0000025288,0.0000025287,0.0000025280,0.0000025269,0.0000025258, -0.0000025254,0.0000025259,0.0000025274,0.0000025288,0.0000025311, -0.0000025371,0.0000025449,0.0000025502,0.0000025507,0.0000025499, -0.0000025516,0.0000025545,0.0000025533,0.0000025511,0.0000025512, -0.0000025515,0.0000025510,0.0000025477,0.0000025385,0.0000025287, -0.0000025246,0.0000025232,0.0000025209,0.0000025207,0.0000025233, -0.0000025291,0.0000025360,0.0000025389,0.0000025367,0.0000025329, -0.0000025278,0.0000025196,0.0000025136,0.0000025104,0.0000025033, -0.0000024910,0.0000024811,0.0000024760,0.0000024718,0.0000024676, -0.0000024647,0.0000024633,0.0000024644,0.0000024687,0.0000024747, -0.0000024800,0.0000024844,0.0000024893,0.0000024947,0.0000024991, -0.0000025014,0.0000025012,0.0000024988,0.0000024955,0.0000024915, -0.0000024878,0.0000024851,0.0000024823,0.0000024789,0.0000024754, -0.0000024718,0.0000024678,0.0000024650,0.0000024641,0.0000024637, -0.0000024619,0.0000024592,0.0000024577,0.0000024579,0.0000024611, -0.0000024681,0.0000024766,0.0000024827,0.0000024856,0.0000024859, -0.0000024837,0.0000024796,0.0000024754,0.0000024731,0.0000024734, -0.0000024777,0.0000024884,0.0000025019,0.0000025141,0.0000025242, -0.0000025308,0.0000025326,0.0000025305,0.0000025261,0.0000025221, -0.0000025196,0.0000025189,0.0000025181,0.0000025141,0.0000025073, -0.0000025021,0.0000025012,0.0000025026,0.0000025044,0.0000025047, -0.0000025015,0.0000024940,0.0000024846,0.0000024759,0.0000024688, -0.0000024638,0.0000024618,0.0000024612,0.0000024600,0.0000024575, -0.0000024557,0.0000024558,0.0000024568,0.0000024560,0.0000024511, -0.0000024432,0.0000024334,0.0000024179,0.0000023973,0.0000023815, -0.0000023755,0.0000023739,0.0000023750,0.0000023830,0.0000023974, -0.0000024117,0.0000024221,0.0000024299,0.0000024372,0.0000024440, -0.0000024484,0.0000024496,0.0000024494,0.0000024499,0.0000024508, -0.0000024544,0.0000024650,0.0000024820,0.0000025020,0.0000025244, -0.0000025471,0.0000025650,0.0000025774,0.0000025870,0.0000025936, -0.0000025960,0.0000025964,0.0000025967,0.0000025981,0.0000026002, -0.0000026017,0.0000026020,0.0000026013,0.0000025996,0.0000025981, -0.0000025987,0.0000026005,0.0000026005,0.0000025974,0.0000025934, -0.0000025914,0.0000025911,0.0000025927,0.0000025977,0.0000026035, -0.0000026058,0.0000026053,0.0000026022,0.0000025991,0.0000025985, -0.0000026004,0.0000026037,0.0000026052,0.0000026026,0.0000025956, -0.0000025851,0.0000025721,0.0000025571,0.0000025425,0.0000025332, -0.0000025313,0.0000025337,0.0000025372,0.0000025414,0.0000025462, -0.0000025488,0.0000025468,0.0000025434,0.0000025390,0.0000025354, -0.0000025332,0.0000025328,0.0000025339,0.0000025343,0.0000025333, -0.0000025314,0.0000025308,0.0000025291,0.0000025256,0.0000025208, -0.0000025165,0.0000025134,0.0000025104,0.0000025066,0.0000025015, -0.0000024963,0.0000024916,0.0000024893,0.0000024905,0.0000024993, -0.0000025117,0.0000025194,0.0000025214,0.0000025223,0.0000025228, -0.0000025226,0.0000025218,0.0000025219,0.0000025248,0.0000025302, -0.0000025358,0.0000025400,0.0000025427,0.0000025444,0.0000025443, -0.0000025405,0.0000025329,0.0000025243,0.0000025179,0.0000025131, -0.0000025085,0.0000025060,0.0000025050,0.0000025043,0.0000025012, -0.0000024989,0.0000024991,0.0000025015,0.0000025090,0.0000025233, -0.0000025399,0.0000025511,0.0000025517,0.0000025454,0.0000025355, -0.0000025254,0.0000025230,0.0000025270,0.0000025356,0.0000025480, -0.0000025574,0.0000025570,0.0000025506,0.0000025447,0.0000025427, -0.0000025431,0.0000025476,0.0000025580,0.0000025722,0.0000025848, -0.0000025923,0.0000025957,0.0000025965,0.0000025949,0.0000025907, -0.0000025860,0.0000025822,0.0000025795,0.0000025771,0.0000025744, -0.0000025734,0.0000025747,0.0000025764,0.0000025766,0.0000025761, -0.0000025759,0.0000025760,0.0000025750,0.0000025700,0.0000025620, -0.0000025527,0.0000025418,0.0000025294,0.0000025163,0.0000025016, -0.0000024847,0.0000024684,0.0000024556,0.0000024461,0.0000024390, -0.0000024332,0.0000024268,0.0000024191,0.0000024114,0.0000024048, -0.0000023998,0.0000023959,0.0000023937,0.0000023941,0.0000023959, -0.0000023969,0.0000023963,0.0000023947,0.0000023927,0.0000023903, -0.0000023869,0.0000023828,0.0000023788,0.0000023752,0.0000023719, -0.0000023688,0.0000023652,0.0000023612,0.0000023577,0.0000023554, -0.0000023542,0.0000023533,0.0000023519,0.0000023500,0.0000023484, -0.0000023485,0.0000023503,0.0000023522,0.0000023533,0.0000023515, -0.0000023467,0.0000023405,0.0000023349,0.0000023309,0.0000023291, -0.0000023299,0.0000023317,0.0000023333,0.0000023340,0.0000023332, -0.0000023310,0.0000023280,0.0000023268,0.0000023302,0.0000023386, -0.0000023492,0.0000023573,0.0000023609,0.0000023610,0.0000023594, -0.0000023585,0.0000023598,0.0000023629,0.0000023677,0.0000023726, -0.0000023773,0.0000023799,0.0000023788,0.0000023778,0.0000023738, -0.0000023692,0.0000023639,0.0000023614,0.0000023623,0.0000023670, -0.0000023757,0.0000023875,0.0000024014,0.0000024143,0.0000024241, -0.0000024317,0.0000024427,0.0000024600,0.0000024849,0.0000025170, -0.0000025489,0.0000025721,0.0000025872,0.0000026047,0.0000026297, -0.0000026482,0.0000026508,0.0000026393,0.0000026243,0.0000026117, -0.0000026019,0.0000025954,0.0000025929,0.0000025756,0.0000025316, -0.0000025037,0.0000024817,0.0000024667,0.0000024641,0.0000024525, -0.0000024273,0.0000024092,0.0000024053,0.0000024080,0.0000024146, -0.0000024458,0.0000024881,0.0000024987,0.0000024912,0.0000025570, -0.0000026040,0.0000026047,0.0000025950,0.0000025901,0.0000025853, -0.0000025824,0.0000025821,0.0000025728,0.0000025459,0.0000025123, -0.0000024866,0.0000024709,0.0000024627,0.0000024596,0.0000024592, -0.0000024582,0.0000024562,0.0000024515,0.0000024475,0.0000024444, -0.0000024414,0.0000024376,0.0000024329,0.0000024288,0.0000024286, -0.0000024367,0.0000024462,0.0000024514,0.0000024550,0.0000024589, -0.0000024632,0.0000024661,0.0000024663,0.0000024645,0.0000024629, -0.0000024631,0.0000024674,0.0000024741,0.0000024822,0.0000024887, -0.0000024950,0.0000025030,0.0000025122,0.0000025207,0.0000025262, -0.0000025261,0.0000025201,0.0000025125,0.0000025044,0.0000024970, -0.0000024920,0.0000024897,0.0000024880,0.0000024843,0.0000024806, -0.0000024780,0.0000024732,0.0000024643,0.0000024542,0.0000024437, -0.0000024368,0.0000024369,0.0000024419,0.0000024476,0.0000024535, -0.0000024608,0.0000024679,0.0000024751,0.0000024863,0.0000025025, -0.0000025203,0.0000025360,0.0000025489,0.0000025593,0.0000025661, -0.0000025684,0.0000025666,0.0000025610,0.0000025546,0.0000025512, -0.0000025510,0.0000025554,0.0000025692,0.0000025932,0.0000026193, -0.0000026387,0.0000026515,0.0000026597,0.0000026608,0.0000026557, -0.0000026486,0.0000026400,0.0000026268,0.0000026130,0.0000026044, -0.0000026014,0.0000026015,0.0000026020,0.0000026017,0.0000026015, -0.0000026020,0.0000026024,0.0000026014,0.0000025987,0.0000025952, -0.0000025917,0.0000025886,0.0000025856,0.0000025838,0.0000025839, -0.0000025838,0.0000025820,0.0000025806,0.0000025789,0.0000025801, -0.0000025815,0.0000025807,0.0000025764,0.0000025699,0.0000025651, -0.0000025641,0.0000025649,0.0000025651,0.0000025635,0.0000025603, -0.0000025568,0.0000025543,0.0000025526,0.0000025505,0.0000025484, -0.0000025451,0.0000025416,0.0000025384,0.0000025356,0.0000025333, -0.0000025321,0.0000025322,0.0000025336,0.0000025361,0.0000025387, -0.0000025414,0.0000025444,0.0000025473,0.0000025497,0.0000025514, -0.0000025526,0.0000025535,0.0000025538,0.0000025533,0.0000025524, -0.0000025517,0.0000025510,0.0000025502,0.0000025488,0.0000025462, -0.0000025424,0.0000025352,0.0000025213,0.0000025007,0.0000024805, -0.0000024688,0.0000024667,0.0000024652,0.0000024511,0.0000024256, -0.0000024015,0.0000023850,0.0000023783,0.0000023728,0.0000023487, -0.0000023062,0.0000022702,0.0000022527,0.0000022428,0.0000022335, -0.0000022304,0.0000022360,0.0000022453,0.0000022549,0.0000022730, -0.0000023004,0.0000023279,0.0000023542,0.0000023869,0.0000024214, -0.0000024468,0.0000024726,0.0000025003,0.0000025130,0.0000025127, -0.0000025079,0.0000025043,0.0000025052,0.0000025087,0.0000025124, -0.0000025145,0.0000025152,0.0000025161,0.0000025166,0.0000025151, -0.0000025123,0.0000025108,0.0000025075,0.0000024975,0.0000024846, -0.0000024773,0.0000024764,0.0000024773,0.0000024801,0.0000024815, -0.0000024798,0.0000024814,0.0000024937,0.0000025111,0.0000025210, -0.0000025235,0.0000025246,0.0000025253,0.0000025240,0.0000025202, -0.0000025151,0.0000025107,0.0000025093,0.0000025120,0.0000025198, -0.0000025291,0.0000025346,0.0000025374,0.0000025441,0.0000025546, -0.0000025602,0.0000025591,0.0000025535,0.0000025469,0.0000025431, -0.0000025431,0.0000025475,0.0000025541,0.0000025567,0.0000025544, -0.0000025492,0.0000025464,0.0000025464,0.0000025469,0.0000025475, -0.0000025484,0.0000025485,0.0000025477,0.0000025477,0.0000025494, -0.0000025519,0.0000025538,0.0000025542,0.0000025537,0.0000025539, -0.0000025559,0.0000025594,0.0000025634,0.0000025663,0.0000025659, -0.0000025615,0.0000025562,0.0000025551,0.0000025592,0.0000025662, -0.0000025785,0.0000025978,0.0000026168,0.0000026286,0.0000026376, -0.0000026514,0.0000026636,0.0000026648,0.0000026580,0.0000026443, -0.0000026327,0.0000026334,0.0000026531,0.0000026786,0.0000026965, -0.0000027065,0.0000027122,0.0000027124,0.0000027071,0.0000026994, -0.0000026909,0.0000026809,0.0000026716,0.0000026660,0.0000026617, -0.0000026565,0.0000026522,0.0000026508,0.0000026516,0.0000026524, -0.0000026535,0.0000026547,0.0000026545,0.0000026522,0.0000026487, -0.0000026471,0.0000026497,0.0000026576,0.0000026687,0.0000026831, -0.0000026995,0.0000027149,0.0000027283,0.0000027395,0.0000027479, -0.0000027536,0.0000027578,0.0000027591,0.0000027568,0.0000027525, -0.0000027469,0.0000027417,0.0000027383,0.0000027349,0.0000027292, -0.0000027214,0.0000027128,0.0000027048,0.0000026979,0.0000026919, -0.0000026862,0.0000026813,0.0000026777,0.0000026754,0.0000026719, -0.0000026671,0.0000026632,0.0000026587,0.0000026561,0.0000026556, -0.0000026568,0.0000026590,0.0000026601,0.0000026610,0.0000026629, -0.0000026662,0.0000026698,0.0000026709,0.0000026640,0.0000026479, -0.0000026310,0.0000026182,0.0000026058,0.0000025975,0.0000026057, -0.0000026299,0.0000026487,0.0000026572,0.0000026671,0.0000026763, -0.0000026813,0.0000026830,0.0000026827,0.0000026811,0.0000026801, -0.0000026800,0.0000026777,0.0000026662,0.0000026485,0.0000026313, -0.0000026178,0.0000026082,0.0000026005,0.0000025933,0.0000025868, -0.0000025776,0.0000025633,0.0000025413,0.0000025142,0.0000024993, -0.0000025006,0.0000025038,0.0000025028,0.0000025019,0.0000024998, -0.0000024913,0.0000024778,0.0000024639,0.0000024511,0.0000024393, -0.0000024276,0.0000024158,0.0000024061,0.0000024018,0.0000024010, -0.0000024042,0.0000024116,0.0000024191,0.0000024218,0.0000024203, -0.0000024147,0.0000024088,0.0000024035,0.0000023968,0.0000023890, -0.0000023808,0.0000023739,0.0000023710,0.0000023699,0.0000023703, -0.0000023797,0.0000023941,0.0000024061,0.0000024133,0.0000024160, -0.0000024129,0.0000024047,0.0000023983,0.0000023987,0.0000024045, -0.0000024115,0.0000024170,0.0000024178,0.0000024169,0.0000024121, -0.0000024039,0.0000023994,0.0000024084,0.0000024327,0.0000024554, -0.0000024634,0.0000024625,0.0000025012,0.0000025754,0.0000026239, -0.0000026576,0.0000026868,0.0000027028,0.0000026991,0.0000026914, -0.0000026943,0.0000026968,0.0000026958,0.0000026949,0.0000026954, -0.0000026998,0.0000027066,0.0000027135,0.0000027168,0.0000027155, -0.0000027080,0.0000026985,0.0000026904,0.0000026858,0.0000026838, -0.0000026822,0.0000026805,0.0000026787,0.0000026777,0.0000026773, -0.0000026785,0.0000026773,0.0000026691,0.0000026583,0.0000026415, -0.0000026127,0.0000025889,0.0000025783,0.0000025719,0.0000025475, -0.0000024926,0.0000024309,0.0000023968,0.0000023829,0.0000023727, -0.0000023620,0.0000023541,0.0000023464,0.0000023345,0.0000023211, -0.0000023096,0.0000022999,0.0000022918,0.0000022842,0.0000022761, -0.0000022682,0.0000022648,0.0000022659,0.0000022696,0.0000022731, -0.0000022780,0.0000022854,0.0000022931,0.0000023005,0.0000023071, -0.0000023121,0.0000023158,0.0000023179,0.0000023178,0.0000023151, -0.0000023111,0.0000023085,0.0000023088,0.0000023113,0.0000023151, -0.0000023171,0.0000023166,0.0000023136,0.0000023104,0.0000023086, -0.0000023073,0.0000023037,0.0000022967,0.0000022891,0.0000022834, -0.0000022782,0.0000022782,0.0000022863,0.0000022928,0.0000022928, -0.0000022894,0.0000022840,0.0000022794,0.0000022778,0.0000022765, -0.0000022741,0.0000022727,0.0000022734,0.0000022765,0.0000022804, -0.0000022831,0.0000022850,0.0000022877,0.0000022900,0.0000022904, -0.0000022882,0.0000022842,0.0000022800,0.0000022772,0.0000022757, -0.0000022756,0.0000022776,0.0000022821,0.0000022884,0.0000022959, -0.0000023025,0.0000023064,0.0000023069,0.0000023053,0.0000023029, -0.0000023009,0.0000023006,0.0000023011,0.0000023019,0.0000023025, -0.0000023030,0.0000023031,0.0000023014,0.0000022969,0.0000022909, -0.0000022851,0.0000022805,0.0000022766,0.0000022725,0.0000022668, -0.0000022590,0.0000022496,0.0000022400,0.0000022310,0.0000022234, -0.0000022198,0.0000022205,0.0000022250,0.0000022321,0.0000022384, -0.0000022408,0.0000022406,0.0000022381,0.0000022326,0.0000022262, -0.0000022256,0.0000022455,0.0000022763,0.0000023018,0.0000023257, -0.0000023406,0.0000023444,0.0000023473,0.0000023493,0.0000023493, -0.0000023497,0.0000023488,0.0000023471,0.0000023569,0.0000023834, -0.0000024044,0.0000024088,0.0000024036,0.0000023946,0.0000023863, -0.0000023827,0.0000023916,0.0000024181,0.0000024514,0.0000024895, -0.0000025223,0.0000025336,0.0000025285,0.0000025052,0.0000024685, -0.0000024417,0.0000024345,0.0000024335,0.0000024324,0.0000024321, -0.0000024324,0.0000024317,0.0000024303,0.0000024296,0.0000024296, -0.0000024292,0.0000024288,0.0000024289,0.0000024296,0.0000024304, -0.0000024306,0.0000024291,0.0000024271,0.0000024257,0.0000024259, -0.0000024262,0.0000024256,0.0000024232,0.0000024187,0.0000024124, -0.0000024053,0.0000023983,0.0000023968,0.0000023907,0.0000023863, -0.0000023842,0.0000023833,0.0000023834,0.0000023847,0.0000023865, -0.0000023879,0.0000023887,0.0000023890,0.0000023887,0.0000023881, -0.0000023867,0.0000023847,0.0000023827,0.0000023818,0.0000023828, -0.0000023854,0.0000023867,0.0000023827,0.0000023740,0.0000023695, -0.0000023714,0.0000023763,0.0000023787,0.0000023779,0.0000023770, -0.0000023792,0.0000023835,0.0000023869,0.0000023886,0.0000023900, -0.0000023913,0.0000023919,0.0000023922,0.0000023908,0.0000023886, -0.0000023861,0.0000023838,0.0000023816,0.0000023798,0.0000023785, -0.0000023775,0.0000023767,0.0000023762,0.0000023759,0.0000023756, -0.0000023754,0.0000023753,0.0000023754,0.0000023757,0.0000023760, -0.0000023760,0.0000023759,0.0000023755,0.0000023751,0.0000023757, -0.0000023789,0.0000023837,0.0000023886,0.0000023923,0.0000023937, -0.0000023934,0.0000023937,0.0000023964,0.0000024031,0.0000024112, -0.0000024159,0.0000024160,0.0000024084,0.0000023997,0.0000023969, -0.0000023977,0.0000023982,0.0000023973,0.0000023957,0.0000023918, -0.0000023847,0.0000023785,0.0000023784,0.0000023858,0.0000023929, -0.0000023917,0.0000023814,0.0000023702,0.0000023669,0.0000023722, -0.0000023877,0.0000024090,0.0000024290,0.0000024464,0.0000024584, -0.0000024703,0.0000024890,0.0000025096,0.0000025217,0.0000025281, -0.0000025337,0.0000025366,0.0000025377,0.0000025402,0.0000025436, -0.0000025453,0.0000025438,0.0000025385,0.0000025332,0.0000025302, -0.0000025285,0.0000025261,0.0000025234,0.0000025210,0.0000025193, -0.0000025177,0.0000025160,0.0000025141,0.0000025124,0.0000025116, -0.0000025133,0.0000025178,0.0000025225,0.0000025272,0.0000025343, -0.0000025428,0.0000025481,0.0000025484,0.0000025476,0.0000025496, -0.0000025518,0.0000025504,0.0000025496,0.0000025505,0.0000025511, -0.0000025503,0.0000025448,0.0000025343,0.0000025253,0.0000025207, -0.0000025163,0.0000025128,0.0000025132,0.0000025181,0.0000025270, -0.0000025354,0.0000025372,0.0000025347,0.0000025310,0.0000025247, -0.0000025161,0.0000025100,0.0000025037,0.0000024936,0.0000024834, -0.0000024775,0.0000024729,0.0000024668,0.0000024613,0.0000024582, -0.0000024573,0.0000024587,0.0000024628,0.0000024687,0.0000024751, -0.0000024806,0.0000024851,0.0000024886,0.0000024916,0.0000024942, -0.0000024963,0.0000024967,0.0000024948,0.0000024908,0.0000024857, -0.0000024811,0.0000024771,0.0000024739,0.0000024716,0.0000024690, -0.0000024656,0.0000024629,0.0000024610,0.0000024585,0.0000024554, -0.0000024535,0.0000024539,0.0000024572,0.0000024644,0.0000024738, -0.0000024806,0.0000024835,0.0000024836,0.0000024817,0.0000024783, -0.0000024746,0.0000024727,0.0000024728,0.0000024748,0.0000024816, -0.0000024933,0.0000025055,0.0000025157,0.0000025240,0.0000025287, -0.0000025293,0.0000025270,0.0000025245,0.0000025231,0.0000025222, -0.0000025216,0.0000025193,0.0000025138,0.0000025070,0.0000025022, -0.0000025007,0.0000025011,0.0000025018,0.0000025007,0.0000024959, -0.0000024886,0.0000024814,0.0000024754,0.0000024699,0.0000024659, -0.0000024644,0.0000024640,0.0000024629,0.0000024611,0.0000024598, -0.0000024598,0.0000024599,0.0000024573,0.0000024502,0.0000024406, -0.0000024291,0.0000024120,0.0000023919,0.0000023787,0.0000023743, -0.0000023728,0.0000023739,0.0000023825,0.0000023974,0.0000024107, -0.0000024185,0.0000024238,0.0000024298,0.0000024368,0.0000024426, -0.0000024450,0.0000024455,0.0000024470,0.0000024494,0.0000024525, -0.0000024601,0.0000024738,0.0000024894,0.0000025058,0.0000025249, -0.0000025447,0.0000025607,0.0000025729,0.0000025841,0.0000025934, -0.0000025978,0.0000025983,0.0000025978,0.0000025980,0.0000025983, -0.0000025978,0.0000025959,0.0000025926,0.0000025891,0.0000025882, -0.0000025899,0.0000025914,0.0000025903,0.0000025877,0.0000025861, -0.0000025861,0.0000025882,0.0000025930,0.0000025988,0.0000026026, -0.0000026030,0.0000026010,0.0000025985,0.0000025975,0.0000025985, -0.0000026004,0.0000026009,0.0000025977,0.0000025901,0.0000025799, -0.0000025678,0.0000025531,0.0000025384,0.0000025302,0.0000025298, -0.0000025329,0.0000025373,0.0000025419,0.0000025471,0.0000025506, -0.0000025496,0.0000025465,0.0000025420,0.0000025385,0.0000025372, -0.0000025375,0.0000025392,0.0000025415,0.0000025432,0.0000025431, -0.0000025416,0.0000025376,0.0000025320,0.0000025260,0.0000025204, -0.0000025153,0.0000025105,0.0000025057,0.0000025004,0.0000024952, -0.0000024907,0.0000024872,0.0000024863,0.0000024904,0.0000025010, -0.0000025124,0.0000025176,0.0000025177,0.0000025187,0.0000025208, -0.0000025226,0.0000025239,0.0000025259,0.0000025301,0.0000025354, -0.0000025388,0.0000025402,0.0000025411,0.0000025418,0.0000025418, -0.0000025395,0.0000025343,0.0000025278,0.0000025212,0.0000025143, -0.0000025077,0.0000025032,0.0000025016,0.0000025010,0.0000024994, -0.0000024973,0.0000024986,0.0000025024,0.0000025115,0.0000025249, -0.0000025381,0.0000025468,0.0000025470,0.0000025417,0.0000025324, -0.0000025258,0.0000025262,0.0000025307,0.0000025387,0.0000025478, -0.0000025516,0.0000025485,0.0000025456,0.0000025470,0.0000025514, -0.0000025571,0.0000025646,0.0000025755,0.0000025904,0.0000026035, -0.0000026113,0.0000026129,0.0000026122,0.0000026081,0.0000026016, -0.0000025954,0.0000025904,0.0000025872,0.0000025849,0.0000025825, -0.0000025806,0.0000025799,0.0000025792,0.0000025776,0.0000025757, -0.0000025744,0.0000025733,0.0000025702,0.0000025639,0.0000025543, -0.0000025406,0.0000025230,0.0000025045,0.0000024874,0.0000024732, -0.0000024626,0.0000024556,0.0000024493,0.0000024420,0.0000024314, -0.0000024179,0.0000024047,0.0000023948,0.0000023884,0.0000023840, -0.0000023810,0.0000023791,0.0000023796,0.0000023827,0.0000023865, -0.0000023889,0.0000023903,0.0000023906,0.0000023899,0.0000023877, -0.0000023842,0.0000023799,0.0000023755,0.0000023712,0.0000023670, -0.0000023627,0.0000023581,0.0000023535,0.0000023497,0.0000023476, -0.0000023469,0.0000023463,0.0000023449,0.0000023423,0.0000023395, -0.0000023374,0.0000023363,0.0000023373,0.0000023408,0.0000023438, -0.0000023435,0.0000023399,0.0000023333,0.0000023265,0.0000023212, -0.0000023189,0.0000023202,0.0000023238,0.0000023276,0.0000023295, -0.0000023282,0.0000023238,0.0000023192,0.0000023145,0.0000023160, -0.0000023211,0.0000023278,0.0000023328,0.0000023348,0.0000023351, -0.0000023356,0.0000023375,0.0000023409,0.0000023459,0.0000023526, -0.0000023603,0.0000023679,0.0000023742,0.0000023773,0.0000023768, -0.0000023757,0.0000023704,0.0000023652,0.0000023623,0.0000023624, -0.0000023647,0.0000023712,0.0000023828,0.0000023976,0.0000024127, -0.0000024238,0.0000024330,0.0000024457,0.0000024626,0.0000024859, -0.0000025180,0.0000025518,0.0000025728,0.0000025846,0.0000026049, -0.0000026332,0.0000026499,0.0000026469,0.0000026334,0.0000026190, -0.0000026077,0.0000025987,0.0000025950,0.0000025856,0.0000025434, -0.0000025085,0.0000024861,0.0000024646,0.0000024590,0.0000024487, -0.0000024254,0.0000024069,0.0000024007,0.0000024031,0.0000024058, -0.0000024235,0.0000024659,0.0000024983,0.0000024882,0.0000025212, -0.0000025893,0.0000026059,0.0000025973,0.0000025902,0.0000025839, -0.0000025811,0.0000025733,0.0000025415,0.0000024982,0.0000024702, -0.0000024614,0.0000024618,0.0000024630,0.0000024622,0.0000024603, -0.0000024556,0.0000024479,0.0000024392,0.0000024335,0.0000024304, -0.0000024283,0.0000024262,0.0000024240,0.0000024223,0.0000024239, -0.0000024337,0.0000024425,0.0000024475,0.0000024509,0.0000024553, -0.0000024608,0.0000024644,0.0000024647,0.0000024631,0.0000024612, -0.0000024611,0.0000024639,0.0000024684,0.0000024752,0.0000024818, -0.0000024889,0.0000024973,0.0000025065,0.0000025149,0.0000025206, -0.0000025214,0.0000025167,0.0000025095,0.0000025020,0.0000024943, -0.0000024889,0.0000024868,0.0000024864,0.0000024842,0.0000024793, -0.0000024753,0.0000024711,0.0000024631,0.0000024534,0.0000024430, -0.0000024367,0.0000024371,0.0000024423,0.0000024472,0.0000024512, -0.0000024560,0.0000024625,0.0000024686,0.0000024760,0.0000024876, -0.0000025036,0.0000025214,0.0000025371,0.0000025489,0.0000025565, -0.0000025600,0.0000025601,0.0000025570,0.0000025519,0.0000025483, -0.0000025477,0.0000025486,0.0000025556,0.0000025739,0.0000025995, -0.0000026223,0.0000026382,0.0000026485,0.0000026526,0.0000026514, -0.0000026460,0.0000026366,0.0000026223,0.0000026088,0.0000026008, -0.0000025985,0.0000025992,0.0000026004,0.0000026005,0.0000026003, -0.0000026006,0.0000026006,0.0000025994,0.0000025965,0.0000025929, -0.0000025895,0.0000025864,0.0000025829,0.0000025803,0.0000025808, -0.0000025826,0.0000025824,0.0000025821,0.0000025818,0.0000025816, -0.0000025811,0.0000025775,0.0000025704,0.0000025631,0.0000025593, -0.0000025594,0.0000025605,0.0000025607,0.0000025592,0.0000025572, -0.0000025558,0.0000025549,0.0000025530,0.0000025477,0.0000025404, -0.0000025333,0.0000025276,0.0000025232,0.0000025194,0.0000025164, -0.0000025147,0.0000025146,0.0000025154,0.0000025173,0.0000025201, -0.0000025237,0.0000025283,0.0000025340,0.0000025397,0.0000025445, -0.0000025481,0.0000025507,0.0000025521,0.0000025524,0.0000025519, -0.0000025505,0.0000025486,0.0000025462,0.0000025433,0.0000025395, -0.0000025330,0.0000025216,0.0000025047,0.0000024863,0.0000024730, -0.0000024683,0.0000024684,0.0000024638,0.0000024448,0.0000024200, -0.0000023989,0.0000023843,0.0000023783,0.0000023693,0.0000023385, -0.0000022952,0.0000022655,0.0000022535,0.0000022434,0.0000022302, -0.0000022222,0.0000022257,0.0000022385,0.0000022496,0.0000022607, -0.0000022832,0.0000023121,0.0000023372,0.0000023620,0.0000023950, -0.0000024271,0.0000024495,0.0000024754,0.0000025007,0.0000025105, -0.0000025096,0.0000025051,0.0000025029,0.0000025058,0.0000025103, -0.0000025133,0.0000025142,0.0000025134,0.0000025105,0.0000025060, -0.0000025026,0.0000025017,0.0000024991,0.0000024911,0.0000024808, -0.0000024737,0.0000024716,0.0000024730,0.0000024771,0.0000024796, -0.0000024784,0.0000024778,0.0000024874,0.0000025052,0.0000025189, -0.0000025240,0.0000025251,0.0000025255,0.0000025252,0.0000025218, -0.0000025160,0.0000025105,0.0000025086,0.0000025099,0.0000025157, -0.0000025240,0.0000025312,0.0000025348,0.0000025390,0.0000025482, -0.0000025576,0.0000025604,0.0000025579,0.0000025524,0.0000025467, -0.0000025440,0.0000025445,0.0000025496,0.0000025547,0.0000025548, -0.0000025502,0.0000025455,0.0000025448,0.0000025463,0.0000025485, -0.0000025506,0.0000025516,0.0000025509,0.0000025503,0.0000025515, -0.0000025541,0.0000025566,0.0000025579,0.0000025578,0.0000025556, -0.0000025533,0.0000025533,0.0000025563,0.0000025616,0.0000025668, -0.0000025677,0.0000025629,0.0000025561,0.0000025548,0.0000025595, -0.0000025675,0.0000025779,0.0000025934,0.0000026111,0.0000026234, -0.0000026314,0.0000026433,0.0000026571,0.0000026619,0.0000026576, -0.0000026470,0.0000026346,0.0000026324,0.0000026468,0.0000026719, -0.0000026923,0.0000027025,0.0000027070,0.0000027069,0.0000027012, -0.0000026926,0.0000026835,0.0000026732,0.0000026645,0.0000026592, -0.0000026547,0.0000026498,0.0000026462,0.0000026443,0.0000026427, -0.0000026404,0.0000026379,0.0000026343,0.0000026293,0.0000026237, -0.0000026198,0.0000026205,0.0000026257,0.0000026344,0.0000026457, -0.0000026596,0.0000026742,0.0000026877,0.0000026999,0.0000027102, -0.0000027182,0.0000027258,0.0000027340,0.0000027416,0.0000027471, -0.0000027493,0.0000027475,0.0000027434,0.0000027376,0.0000027307, -0.0000027218,0.0000027130,0.0000027060,0.0000027008,0.0000026969, -0.0000026931,0.0000026888,0.0000026843,0.0000026812,0.0000026779, -0.0000026732,0.0000026684,0.0000026646,0.0000026616,0.0000026598, -0.0000026595,0.0000026597,0.0000026599,0.0000026602,0.0000026611, -0.0000026629,0.0000026658,0.0000026647,0.0000026570,0.0000026414, -0.0000026244,0.0000026143,0.0000026075,0.0000025977,0.0000025960, -0.0000026124,0.0000026390,0.0000026523,0.0000026583,0.0000026678, -0.0000026753,0.0000026785,0.0000026786,0.0000026775,0.0000026771, -0.0000026803,0.0000026829,0.0000026798,0.0000026659,0.0000026473, -0.0000026303,0.0000026179,0.0000026087,0.0000026000,0.0000025930, -0.0000025853,0.0000025717,0.0000025517,0.0000025255,0.0000025044, -0.0000024999,0.0000025039,0.0000025041,0.0000025018,0.0000025011, -0.0000024972,0.0000024874,0.0000024759,0.0000024653,0.0000024535, -0.0000024395,0.0000024230,0.0000024069,0.0000023949,0.0000023894, -0.0000023881,0.0000023906,0.0000023984,0.0000024098,0.0000024180, -0.0000024194,0.0000024156,0.0000024103,0.0000024054,0.0000023998, -0.0000023934,0.0000023870,0.0000023794,0.0000023734,0.0000023695, -0.0000023659,0.0000023696,0.0000023821,0.0000023950,0.0000024025, -0.0000024048,0.0000024036,0.0000023991,0.0000023940,0.0000023929, -0.0000023963,0.0000024020,0.0000024077,0.0000024090,0.0000024082, -0.0000024037,0.0000023964,0.0000023896,0.0000023894,0.0000024091, -0.0000024405,0.0000024614,0.0000024634,0.0000024778,0.0000025390, -0.0000026026,0.0000026375,0.0000026670,0.0000026897,0.0000026969, -0.0000026904,0.0000026830,0.0000026860,0.0000026891,0.0000026903, -0.0000026926,0.0000026961,0.0000027010,0.0000027069,0.0000027125, -0.0000027158,0.0000027158,0.0000027135,0.0000027096,0.0000027045, -0.0000026986,0.0000026926,0.0000026870,0.0000026818,0.0000026782, -0.0000026765,0.0000026755,0.0000026716,0.0000026626,0.0000026508, -0.0000026326,0.0000026073,0.0000025889,0.0000025809,0.0000025754, -0.0000025545,0.0000025048,0.0000024434,0.0000024051,0.0000023879, -0.0000023762,0.0000023656,0.0000023570,0.0000023503,0.0000023400, -0.0000023260,0.0000023135,0.0000023032,0.0000022938,0.0000022845, -0.0000022765,0.0000022703,0.0000022647,0.0000022611,0.0000022615, -0.0000022654,0.0000022707,0.0000022762,0.0000022825,0.0000022894, -0.0000022956,0.0000023002,0.0000023038,0.0000023064,0.0000023073, -0.0000023065,0.0000023036,0.0000023005,0.0000023000,0.0000023019, -0.0000023058,0.0000023092,0.0000023106,0.0000023101,0.0000023080, -0.0000023056,0.0000023041,0.0000023028,0.0000022989,0.0000022917, -0.0000022849,0.0000022809,0.0000022761,0.0000022731,0.0000022758, -0.0000022794,0.0000022798,0.0000022773,0.0000022722,0.0000022671, -0.0000022647,0.0000022628,0.0000022598,0.0000022576,0.0000022574, -0.0000022593,0.0000022620,0.0000022642,0.0000022665,0.0000022698, -0.0000022731,0.0000022760,0.0000022778,0.0000022776,0.0000022755, -0.0000022730,0.0000022706,0.0000022693,0.0000022701,0.0000022726, -0.0000022760,0.0000022807,0.0000022867,0.0000022927,0.0000022972, -0.0000022990,0.0000022987,0.0000022975,0.0000022971,0.0000022977, -0.0000022985,0.0000022986,0.0000022977,0.0000022948,0.0000022903, -0.0000022849,0.0000022792,0.0000022746,0.0000022712,0.0000022679, -0.0000022636,0.0000022573,0.0000022492,0.0000022407,0.0000022327, -0.0000022252,0.0000022186,0.0000022143,0.0000022134,0.0000022155, -0.0000022210,0.0000022275,0.0000022312,0.0000022318,0.0000022315, -0.0000022288,0.0000022247,0.0000022236,0.0000022386,0.0000022706, -0.0000022993,0.0000023240,0.0000023386,0.0000023430,0.0000023468, -0.0000023489,0.0000023489,0.0000023495,0.0000023488,0.0000023474, -0.0000023563,0.0000023818,0.0000024029,0.0000024081,0.0000024048, -0.0000023967,0.0000023887,0.0000023819,0.0000023838,0.0000024049, -0.0000024338,0.0000024655,0.0000025004,0.0000025246,0.0000025288, -0.0000025222,0.0000024989,0.0000024664,0.0000024443,0.0000024375, -0.0000024353,0.0000024325,0.0000024311,0.0000024305,0.0000024296, -0.0000024289,0.0000024289,0.0000024285,0.0000024275,0.0000024261, -0.0000024255,0.0000024261,0.0000024274,0.0000024282,0.0000024281, -0.0000024273,0.0000024268,0.0000024260,0.0000024246,0.0000024222, -0.0000024188,0.0000024146,0.0000024095,0.0000024034,0.0000024021, -0.0000023968,0.0000023930,0.0000023906,0.0000023892,0.0000023886, -0.0000023892,0.0000023901,0.0000023905,0.0000023903,0.0000023894, -0.0000023882,0.0000023862,0.0000023835,0.0000023808,0.0000023789, -0.0000023786,0.0000023803,0.0000023843,0.0000023871,0.0000023840, -0.0000023753,0.0000023699,0.0000023711,0.0000023744,0.0000023747, -0.0000023740,0.0000023748,0.0000023791,0.0000023841,0.0000023870, -0.0000023887,0.0000023908,0.0000023920,0.0000023922,0.0000023902, -0.0000023863,0.0000023816,0.0000023773,0.0000023739,0.0000023713, -0.0000023694,0.0000023682,0.0000023675,0.0000023670,0.0000023667, -0.0000023667,0.0000023666,0.0000023666,0.0000023669,0.0000023677, -0.0000023692,0.0000023707,0.0000023718,0.0000023729,0.0000023739, -0.0000023744,0.0000023748,0.0000023768,0.0000023808,0.0000023857, -0.0000023897,0.0000023917,0.0000023919,0.0000023926,0.0000023948, -0.0000024001,0.0000024081,0.0000024140,0.0000024148,0.0000024095, -0.0000023990,0.0000023921,0.0000023907,0.0000023918,0.0000023926, -0.0000023925,0.0000023910,0.0000023865,0.0000023793,0.0000023741, -0.0000023769,0.0000023863,0.0000023906,0.0000023852,0.0000023731, -0.0000023653,0.0000023658,0.0000023760,0.0000023952,0.0000024162, -0.0000024346,0.0000024496,0.0000024599,0.0000024725,0.0000024925, -0.0000025109,0.0000025199,0.0000025252,0.0000025296,0.0000025326, -0.0000025361,0.0000025401,0.0000025420,0.0000025413,0.0000025373, -0.0000025321,0.0000025280,0.0000025249,0.0000025214,0.0000025175, -0.0000025140,0.0000025111,0.0000025084,0.0000025065,0.0000025056, -0.0000025046,0.0000025033,0.0000025028,0.0000025050,0.0000025117, -0.0000025191,0.0000025252,0.0000025326,0.0000025407,0.0000025450, -0.0000025449,0.0000025447,0.0000025474,0.0000025484,0.0000025476, -0.0000025482,0.0000025499,0.0000025503,0.0000025485,0.0000025409, -0.0000025303,0.0000025223,0.0000025159,0.0000025087,0.0000025056, -0.0000025076,0.0000025149,0.0000025264,0.0000025346,0.0000025349, -0.0000025319,0.0000025281,0.0000025202,0.0000025109,0.0000025034, -0.0000024950,0.0000024865,0.0000024802,0.0000024742,0.0000024650, -0.0000024551,0.0000024488,0.0000024468,0.0000024473,0.0000024508, -0.0000024564,0.0000024626,0.0000024695,0.0000024769,0.0000024829, -0.0000024857,0.0000024863,0.0000024869,0.0000024889,0.0000024911, -0.0000024910,0.0000024875,0.0000024819,0.0000024764,0.0000024726, -0.0000024712,0.0000024702,0.0000024676,0.0000024634,0.0000024591, -0.0000024551,0.0000024520,0.0000024500,0.0000024502,0.0000024532, -0.0000024595,0.0000024689,0.0000024771,0.0000024808,0.0000024810, -0.0000024799,0.0000024775,0.0000024744,0.0000024724,0.0000024724, -0.0000024735,0.0000024768,0.0000024849,0.0000024963,0.0000025065, -0.0000025154,0.0000025228,0.0000025264,0.0000025265,0.0000025251, -0.0000025247,0.0000025247,0.0000025242,0.0000025229,0.0000025195, -0.0000025138,0.0000025076,0.0000025023,0.0000024995,0.0000024988, -0.0000024987,0.0000024969,0.0000024923,0.0000024863,0.0000024808, -0.0000024760,0.0000024715,0.0000024686,0.0000024682,0.0000024684, -0.0000024677,0.0000024660,0.0000024645,0.0000024637,0.0000024622, -0.0000024568,0.0000024477,0.0000024374,0.0000024255,0.0000024077, -0.0000023877,0.0000023760,0.0000023726,0.0000023717,0.0000023730, -0.0000023814,0.0000023957,0.0000024074,0.0000024129,0.0000024163, -0.0000024215,0.0000024291,0.0000024366,0.0000024409,0.0000024425, -0.0000024452,0.0000024491,0.0000024522,0.0000024571,0.0000024678, -0.0000024816,0.0000024941,0.0000025070,0.0000025238,0.0000025425, -0.0000025580,0.0000025703,0.0000025824,0.0000025936,0.0000025989, -0.0000025994,0.0000025974,0.0000025952,0.0000025932,0.0000025905, -0.0000025862,0.0000025809,0.0000025775,0.0000025773,0.0000025784, -0.0000025792,0.0000025789,0.0000025788,0.0000025796,0.0000025824, -0.0000025878,0.0000025943,0.0000025992,0.0000026010,0.0000026008, -0.0000025990,0.0000025971,0.0000025959,0.0000025957,0.0000025953, -0.0000025922,0.0000025855,0.0000025759,0.0000025643,0.0000025511, -0.0000025389,0.0000025326,0.0000025331,0.0000025376,0.0000025423, -0.0000025460,0.0000025500,0.0000025536,0.0000025540,0.0000025524, -0.0000025497,0.0000025485,0.0000025492,0.0000025513,0.0000025532, -0.0000025549,0.0000025553,0.0000025534,0.0000025489,0.0000025425, -0.0000025348,0.0000025281,0.0000025235,0.0000025199,0.0000025150, -0.0000025087,0.0000025015,0.0000024951,0.0000024900,0.0000024860, -0.0000024841,0.0000024847,0.0000024913,0.0000025032,0.0000025125, -0.0000025145,0.0000025139,0.0000025163,0.0000025200,0.0000025229, -0.0000025262,0.0000025303,0.0000025350,0.0000025380,0.0000025384, -0.0000025375,0.0000025361,0.0000025361,0.0000025365,0.0000025358, -0.0000025339,0.0000025306,0.0000025251,0.0000025183,0.0000025098, -0.0000025036,0.0000025026,0.0000025028,0.0000024999,0.0000024982, -0.0000025001,0.0000025049,0.0000025134,0.0000025239,0.0000025349, -0.0000025427,0.0000025437,0.0000025385,0.0000025311,0.0000025280, -0.0000025303,0.0000025356,0.0000025414,0.0000025448,0.0000025432, -0.0000025387,0.0000025395,0.0000025459,0.0000025542,0.0000025615, -0.0000025696,0.0000025819,0.0000025971,0.0000026101,0.0000026177, -0.0000026198,0.0000026183,0.0000026131,0.0000026048,0.0000025966, -0.0000025906,0.0000025871,0.0000025847,0.0000025808,0.0000025746, -0.0000025679,0.0000025621,0.0000025578,0.0000025549,0.0000025540, -0.0000025536,0.0000025501,0.0000025418,0.0000025291,0.0000025136, -0.0000024979,0.0000024847,0.0000024750,0.0000024678,0.0000024615, -0.0000024527,0.0000024397,0.0000024206,0.0000024008,0.0000023863, -0.0000023790,0.0000023767,0.0000023762,0.0000023765,0.0000023764, -0.0000023767,0.0000023786,0.0000023823,0.0000023855,0.0000023874, -0.0000023883,0.0000023884,0.0000023872,0.0000023842,0.0000023801, -0.0000023752,0.0000023697,0.0000023636,0.0000023576,0.0000023520, -0.0000023464,0.0000023415,0.0000023385,0.0000023372,0.0000023362, -0.0000023356,0.0000023355,0.0000023351,0.0000023336,0.0000023312, -0.0000023284,0.0000023270,0.0000023283,0.0000023313,0.0000023347, -0.0000023348,0.0000023308,0.0000023240,0.0000023163,0.0000023108, -0.0000023097,0.0000023123,0.0000023176,0.0000023233,0.0000023265, -0.0000023254,0.0000023202,0.0000023145,0.0000023105,0.0000023087, -0.0000023092,0.0000023092,0.0000023094,0.0000023092,0.0000023101, -0.0000023120,0.0000023152,0.0000023198,0.0000023265,0.0000023354, -0.0000023455,0.0000023553,0.0000023644,0.0000023716,0.0000023750, -0.0000023733,0.0000023709,0.0000023663,0.0000023634,0.0000023624, -0.0000023645,0.0000023704,0.0000023802,0.0000023965,0.0000024141, -0.0000024262,0.0000024361,0.0000024487,0.0000024643,0.0000024880, -0.0000025237,0.0000025559,0.0000025711,0.0000025829,0.0000026091, -0.0000026391,0.0000026492,0.0000026424,0.0000026278,0.0000026148, -0.0000026040,0.0000025973,0.0000025925,0.0000025558,0.0000025134, -0.0000024904,0.0000024655,0.0000024553,0.0000024440,0.0000024214, -0.0000024049,0.0000023988,0.0000023992,0.0000024026,0.0000024080, -0.0000024417,0.0000024859,0.0000024924,0.0000024941,0.0000025638, -0.0000026036,0.0000026007,0.0000025924,0.0000025846,0.0000025809, -0.0000025554,0.0000025015,0.0000024657,0.0000024603,0.0000024626, -0.0000024661,0.0000024673,0.0000024626,0.0000024542,0.0000024426, -0.0000024301,0.0000024199,0.0000024155,0.0000024140,0.0000024132, -0.0000024132,0.0000024146,0.0000024160,0.0000024212,0.0000024318, -0.0000024393,0.0000024434,0.0000024469,0.0000024521,0.0000024590, -0.0000024636,0.0000024640,0.0000024621,0.0000024601,0.0000024604, -0.0000024629,0.0000024656,0.0000024697,0.0000024745,0.0000024810, -0.0000024894,0.0000024989,0.0000025077,0.0000025138,0.0000025153, -0.0000025115,0.0000025050,0.0000024982,0.0000024911,0.0000024856, -0.0000024838,0.0000024844,0.0000024837,0.0000024787,0.0000024736, -0.0000024697,0.0000024626,0.0000024531,0.0000024434,0.0000024382, -0.0000024392,0.0000024456,0.0000024517,0.0000024543,0.0000024566, -0.0000024609,0.0000024659,0.0000024723,0.0000024807,0.0000024919, -0.0000025062,0.0000025218,0.0000025355,0.0000025453,0.0000025502, -0.0000025515,0.0000025508,0.0000025485,0.0000025452,0.0000025439, -0.0000025448,0.0000025486,0.0000025608,0.0000025832,0.0000026066, -0.0000026248,0.0000026373,0.0000026440,0.0000026454,0.0000026420, -0.0000026322,0.0000026176,0.0000026055,0.0000025982,0.0000025955, -0.0000025965,0.0000025988,0.0000025994,0.0000025990,0.0000025982, -0.0000025969,0.0000025952,0.0000025932,0.0000025912,0.0000025895, -0.0000025873,0.0000025838,0.0000025805,0.0000025804,0.0000025824, -0.0000025832,0.0000025832,0.0000025829,0.0000025808,0.0000025766, -0.0000025699,0.0000025617,0.0000025560,0.0000025544,0.0000025557, -0.0000025573,0.0000025574,0.0000025565,0.0000025559,0.0000025556, -0.0000025533,0.0000025466,0.0000025376,0.0000025292,0.0000025232, -0.0000025189,0.0000025156,0.0000025124,0.0000025088,0.0000025055, -0.0000025031,0.0000025021,0.0000025026,0.0000025043,0.0000025068, -0.0000025098,0.0000025139,0.0000025191,0.0000025244,0.0000025295, -0.0000025341,0.0000025378,0.0000025400,0.0000025408,0.0000025405, -0.0000025390,0.0000025361,0.0000025319,0.0000025256,0.0000025158, -0.0000025022,0.0000024874,0.0000024759,0.0000024702,0.0000024694, -0.0000024688,0.0000024586,0.0000024374,0.0000024160,0.0000023979, -0.0000023851,0.0000023794,0.0000023645,0.0000023264,0.0000022839, -0.0000022610,0.0000022529,0.0000022435,0.0000022301,0.0000022190, -0.0000022168,0.0000022276,0.0000022437,0.0000022537,0.0000022681, -0.0000022950,0.0000023230,0.0000023447,0.0000023684,0.0000024015, -0.0000024306,0.0000024510,0.0000024765,0.0000024994,0.0000025074, -0.0000025067,0.0000025027,0.0000025011,0.0000025043,0.0000025079, -0.0000025086,0.0000025058,0.0000025009,0.0000024961,0.0000024932, -0.0000024913,0.0000024880,0.0000024827,0.0000024762,0.0000024692, -0.0000024640,0.0000024649,0.0000024723,0.0000024791,0.0000024793, -0.0000024774,0.0000024814,0.0000024968,0.0000025130,0.0000025213, -0.0000025236,0.0000025242,0.0000025246,0.0000025230,0.0000025173, -0.0000025104,0.0000025074,0.0000025085,0.0000025129,0.0000025197, -0.0000025268,0.0000025317,0.0000025349,0.0000025413,0.0000025513, -0.0000025583,0.0000025592,0.0000025563,0.0000025509,0.0000025460, -0.0000025441,0.0000025463,0.0000025514,0.0000025540,0.0000025515, -0.0000025460,0.0000025434,0.0000025441,0.0000025466,0.0000025500, -0.0000025526,0.0000025528,0.0000025520,0.0000025523,0.0000025545, -0.0000025574,0.0000025596,0.0000025602,0.0000025589,0.0000025557, -0.0000025522,0.0000025508,0.0000025528,0.0000025586,0.0000025656, -0.0000025682,0.0000025643,0.0000025577,0.0000025560,0.0000025607, -0.0000025690,0.0000025782,0.0000025899,0.0000026045,0.0000026166, -0.0000026241,0.0000026335,0.0000026485,0.0000026584,0.0000026574, -0.0000026502,0.0000026396,0.0000026336,0.0000026407,0.0000026626, -0.0000026858,0.0000026985,0.0000027018,0.0000027003,0.0000026933, -0.0000026842,0.0000026752,0.0000026661,0.0000026587,0.0000026526, -0.0000026466,0.0000026418,0.0000026386,0.0000026351,0.0000026287, -0.0000026194,0.0000026083,0.0000025964,0.0000025863,0.0000025814, -0.0000025815,0.0000025858,0.0000025935,0.0000026036,0.0000026160, -0.0000026299,0.0000026435,0.0000026560,0.0000026670,0.0000026755, -0.0000026829,0.0000026909,0.0000027005,0.0000027118,0.0000027233, -0.0000027330,0.0000027386,0.0000027391,0.0000027354,0.0000027282, -0.0000027186,0.0000027091,0.0000027019,0.0000026970,0.0000026932, -0.0000026903,0.0000026870,0.0000026836,0.0000026810,0.0000026778, -0.0000026732,0.0000026687,0.0000026652,0.0000026625,0.0000026611, -0.0000026610,0.0000026611,0.0000026614,0.0000026615,0.0000026613, -0.0000026611,0.0000026565,0.0000026463,0.0000026320,0.0000026174, -0.0000026085,0.0000026057,0.0000026003,0.0000025928,0.0000025986, -0.0000026255,0.0000026476,0.0000026544,0.0000026601,0.0000026678, -0.0000026726,0.0000026741,0.0000026736,0.0000026730,0.0000026760, -0.0000026824,0.0000026858,0.0000026800,0.0000026641,0.0000026453, -0.0000026295,0.0000026184,0.0000026086,0.0000025996,0.0000025922, -0.0000025807,0.0000025620,0.0000025362,0.0000025104,0.0000025003, -0.0000025035,0.0000025067,0.0000025047,0.0000025023,0.0000024996, -0.0000024927,0.0000024836,0.0000024760,0.0000024675,0.0000024542, -0.0000024351,0.0000024143,0.0000023967,0.0000023846,0.0000023787, -0.0000023769,0.0000023775,0.0000023828,0.0000023943,0.0000024080, -0.0000024154,0.0000024153,0.0000024112,0.0000024067,0.0000024021, -0.0000023971,0.0000023923,0.0000023854,0.0000023772,0.0000023708, -0.0000023651,0.0000023633,0.0000023703,0.0000023813,0.0000023895, -0.0000023924,0.0000023923,0.0000023902,0.0000023879,0.0000023886, -0.0000023925,0.0000023977,0.0000024033,0.0000024046,0.0000024038, -0.0000023985,0.0000023910,0.0000023851,0.0000023833,0.0000023913, -0.0000024209,0.0000024528,0.0000024634,0.0000024619,0.0000025012, -0.0000025740,0.0000026195,0.0000026464,0.0000026719,0.0000026868, -0.0000026900,0.0000026827,0.0000026740,0.0000026754,0.0000026817, -0.0000026865,0.0000026911,0.0000026959,0.0000027006,0.0000027053, -0.0000027083,0.0000027094,0.0000027099,0.0000027087,0.0000027052, -0.0000026997,0.0000026924,0.0000026842,0.0000026771,0.0000026728, -0.0000026700,0.0000026658,0.0000026579,0.0000026470,0.0000026341, -0.0000026166,0.0000025978,0.0000025872,0.0000025829,0.0000025776, -0.0000025566,0.0000025093,0.0000024507,0.0000024120,0.0000023926, -0.0000023786,0.0000023679,0.0000023592,0.0000023527,0.0000023443, -0.0000023306,0.0000023165,0.0000023053,0.0000022965,0.0000022868, -0.0000022773,0.0000022709,0.0000022661,0.0000022615,0.0000022580, -0.0000022578,0.0000022623,0.0000022690,0.0000022747,0.0000022803, -0.0000022863,0.0000022905,0.0000022931,0.0000022950,0.0000022964, -0.0000022966,0.0000022954,0.0000022929,0.0000022916,0.0000022928, -0.0000022963,0.0000023000,0.0000023030,0.0000023044,0.0000023042, -0.0000023032,0.0000023019,0.0000023005,0.0000022981,0.0000022931, -0.0000022858,0.0000022805,0.0000022782,0.0000022737,0.0000022686, -0.0000022663,0.0000022655,0.0000022646,0.0000022628,0.0000022591, -0.0000022557,0.0000022548,0.0000022539,0.0000022518,0.0000022494, -0.0000022481,0.0000022478,0.0000022481,0.0000022482,0.0000022486, -0.0000022498,0.0000022512,0.0000022529,0.0000022554,0.0000022585, -0.0000022613,0.0000022636,0.0000022648,0.0000022649,0.0000022650, -0.0000022658,0.0000022672,0.0000022693,0.0000022727,0.0000022767, -0.0000022806,0.0000022838,0.0000022856,0.0000022864,0.0000022869, -0.0000022878,0.0000022881,0.0000022875,0.0000022853,0.0000022814, -0.0000022771,0.0000022732,0.0000022697,0.0000022658,0.0000022613, -0.0000022564,0.0000022512,0.0000022455,0.0000022395,0.0000022336, -0.0000022279,0.0000022222,0.0000022168,0.0000022118,0.0000022083, -0.0000022079,0.0000022114,0.0000022174,0.0000022218,0.0000022231, -0.0000022235,0.0000022230,0.0000022215,0.0000022208,0.0000022332, -0.0000022652,0.0000022968,0.0000023225,0.0000023366,0.0000023416, -0.0000023463,0.0000023485,0.0000023481,0.0000023483,0.0000023479, -0.0000023470,0.0000023548,0.0000023793,0.0000024007,0.0000024072, -0.0000024053,0.0000023982,0.0000023906,0.0000023838,0.0000023823, -0.0000023932,0.0000024179,0.0000024441,0.0000024739,0.0000025049, -0.0000025228,0.0000025246,0.0000025187,0.0000024986,0.0000024698, -0.0000024490,0.0000024409,0.0000024361,0.0000024312,0.0000024283, -0.0000024269,0.0000024263,0.0000024265,0.0000024270,0.0000024268, -0.0000024256,0.0000024241,0.0000024231,0.0000024228,0.0000024234, -0.0000024240,0.0000024245,0.0000024250,0.0000024255,0.0000024250, -0.0000024231,0.0000024204,0.0000024172,0.0000024129,0.0000024078, -0.0000024046,0.0000024002,0.0000023969,0.0000023944,0.0000023926, -0.0000023913,0.0000023910,0.0000023908,0.0000023902,0.0000023895, -0.0000023884,0.0000023870,0.0000023851,0.0000023828,0.0000023803, -0.0000023787,0.0000023785,0.0000023802,0.0000023841,0.0000023872, -0.0000023843,0.0000023750,0.0000023696,0.0000023703,0.0000023716, -0.0000023712,0.0000023715,0.0000023744,0.0000023798,0.0000023844, -0.0000023867,0.0000023886,0.0000023903,0.0000023902,0.0000023871, -0.0000023817,0.0000023757,0.0000023705,0.0000023665,0.0000023636, -0.0000023613,0.0000023595,0.0000023582,0.0000023574,0.0000023574, -0.0000023580,0.0000023591,0.0000023599,0.0000023599,0.0000023597, -0.0000023600,0.0000023610,0.0000023625,0.0000023642,0.0000023666, -0.0000023698,0.0000023725,0.0000023737,0.0000023752,0.0000023785, -0.0000023832,0.0000023873,0.0000023897,0.0000023909,0.0000023921, -0.0000023941,0.0000023982,0.0000024054,0.0000024117,0.0000024134, -0.0000024105,0.0000024008,0.0000023904,0.0000023849,0.0000023845, -0.0000023868,0.0000023888,0.0000023888,0.0000023872,0.0000023820, -0.0000023742,0.0000023722,0.0000023786,0.0000023871,0.0000023875, -0.0000023781,0.0000023669,0.0000023628,0.0000023672,0.0000023814, -0.0000024021,0.0000024213,0.0000024380,0.0000024510,0.0000024605, -0.0000024736,0.0000024931,0.0000025088,0.0000025167,0.0000025216, -0.0000025259,0.0000025304,0.0000025349,0.0000025378,0.0000025382, -0.0000025358,0.0000025315,0.0000025264,0.0000025214,0.0000025159, -0.0000025099,0.0000025048,0.0000025006,0.0000024971,0.0000024947, -0.0000024937,0.0000024939,0.0000024945,0.0000024956,0.0000024968, -0.0000025002,0.0000025082,0.0000025167,0.0000025237,0.0000025314, -0.0000025385,0.0000025410,0.0000025404,0.0000025415,0.0000025445, -0.0000025449,0.0000025451,0.0000025475,0.0000025495,0.0000025496, -0.0000025456,0.0000025365,0.0000025263,0.0000025183,0.0000025095, -0.0000025017,0.0000025005,0.0000025040,0.0000025138,0.0000025264, -0.0000025321,0.0000025306,0.0000025277,0.0000025231,0.0000025134, -0.0000025028,0.0000024949,0.0000024887,0.0000024835,0.0000024764, -0.0000024645,0.0000024504,0.0000024402,0.0000024358,0.0000024347, -0.0000024358,0.0000024404,0.0000024479,0.0000024561,0.0000024645, -0.0000024732,0.0000024804,0.0000024839,0.0000024837,0.0000024824, -0.0000024827,0.0000024842,0.0000024844,0.0000024819,0.0000024765, -0.0000024714,0.0000024691,0.0000024689,0.0000024677,0.0000024641, -0.0000024590,0.0000024537,0.0000024500,0.0000024479,0.0000024473, -0.0000024494,0.0000024547,0.0000024631,0.0000024721,0.0000024773, -0.0000024782,0.0000024777,0.0000024765,0.0000024744,0.0000024722, -0.0000024716,0.0000024725,0.0000024741,0.0000024784,0.0000024871, -0.0000024975,0.0000025069,0.0000025155,0.0000025220,0.0000025247, -0.0000025245,0.0000025243,0.0000025251,0.0000025258,0.0000025254, -0.0000025238,0.0000025205,0.0000025154,0.0000025092,0.0000025030, -0.0000024983,0.0000024963,0.0000024956,0.0000024940,0.0000024905, -0.0000024856,0.0000024809,0.0000024766,0.0000024734,0.0000024723, -0.0000024729,0.0000024733,0.0000024722,0.0000024700,0.0000024681, -0.0000024663,0.0000024625,0.0000024547,0.0000024443,0.0000024347, -0.0000024234,0.0000024045,0.0000023838,0.0000023724,0.0000023699, -0.0000023698,0.0000023711,0.0000023789,0.0000023918,0.0000024017, -0.0000024051,0.0000024069,0.0000024119,0.0000024206,0.0000024301, -0.0000024365,0.0000024399,0.0000024442,0.0000024497,0.0000024535, -0.0000024569,0.0000024644,0.0000024764,0.0000024877,0.0000024966, -0.0000025079,0.0000025242,0.0000025421,0.0000025571,0.0000025689, -0.0000025805,0.0000025917,0.0000025979,0.0000025972,0.0000025936, -0.0000025893,0.0000025848,0.0000025793,0.0000025728,0.0000025675, -0.0000025656,0.0000025661,0.0000025677,0.0000025699,0.0000025715, -0.0000025728,0.0000025760,0.0000025820,0.0000025893,0.0000025949, -0.0000025979,0.0000025987,0.0000025978,0.0000025953,0.0000025925, -0.0000025908,0.0000025902,0.0000025881,0.0000025822,0.0000025730, -0.0000025624,0.0000025520,0.0000025441,0.0000025410,0.0000025425, -0.0000025462,0.0000025480,0.0000025481,0.0000025487,0.0000025507, -0.0000025514,0.0000025511,0.0000025496,0.0000025488,0.0000025509, -0.0000025542,0.0000025558,0.0000025555,0.0000025536,0.0000025498, -0.0000025441,0.0000025367,0.0000025299,0.0000025248,0.0000025223, -0.0000025211,0.0000025196,0.0000025163,0.0000025089,0.0000024993, -0.0000024909,0.0000024853,0.0000024820,0.0000024809,0.0000024840, -0.0000024937,0.0000025048,0.0000025108,0.0000025108,0.0000025113, -0.0000025153,0.0000025198,0.0000025240,0.0000025290,0.0000025337, -0.0000025366,0.0000025373,0.0000025352,0.0000025315,0.0000025293, -0.0000025291,0.0000025303,0.0000025319,0.0000025324,0.0000025317, -0.0000025299,0.0000025231,0.0000025140,0.0000025082,0.0000025070, -0.0000025058,0.0000025022,0.0000025007,0.0000025022,0.0000025060, -0.0000025129,0.0000025213,0.0000025317,0.0000025402,0.0000025414, -0.0000025372,0.0000025320,0.0000025316,0.0000025355,0.0000025405, -0.0000025422,0.0000025397,0.0000025334,0.0000025302,0.0000025333, -0.0000025413,0.0000025501,0.0000025568,0.0000025631,0.0000025731, -0.0000025872,0.0000026011,0.0000026109,0.0000026154,0.0000026147, -0.0000026095,0.0000026011,0.0000025917,0.0000025842,0.0000025797, -0.0000025751,0.0000025667,0.0000025542,0.0000025412,0.0000025306, -0.0000025230,0.0000025184,0.0000025169,0.0000025165,0.0000025134, -0.0000025067,0.0000024993,0.0000024925,0.0000024858,0.0000024785, -0.0000024708,0.0000024606,0.0000024443,0.0000024228,0.0000024004, -0.0000023834,0.0000023753,0.0000023746,0.0000023773,0.0000023808, -0.0000023822,0.0000023812,0.0000023785,0.0000023765,0.0000023773, -0.0000023798,0.0000023820,0.0000023829,0.0000023828,0.0000023820, -0.0000023801,0.0000023770,0.0000023726,0.0000023670,0.0000023601, -0.0000023526,0.0000023460,0.0000023405,0.0000023352,0.0000023311, -0.0000023292,0.0000023281,0.0000023270,0.0000023260,0.0000023254, -0.0000023253,0.0000023254,0.0000023248,0.0000023234,0.0000023218, -0.0000023204,0.0000023204,0.0000023223,0.0000023253,0.0000023256, -0.0000023209,0.0000023133,0.0000023057,0.0000023021,0.0000023024, -0.0000023059,0.0000023120,0.0000023187,0.0000023230,0.0000023220, -0.0000023193,0.0000023151,0.0000023111,0.0000023057,0.0000023025, -0.0000022966,0.0000022929,0.0000022909,0.0000022904,0.0000022918, -0.0000022947,0.0000023002,0.0000023082,0.0000023180,0.0000023288, -0.0000023403,0.0000023517,0.0000023615,0.0000023680,0.0000023698, -0.0000023678,0.0000023657,0.0000023635,0.0000023654,0.0000023677, -0.0000023695,0.0000023794,0.0000023993,0.0000024184,0.0000024294, -0.0000024386,0.0000024507,0.0000024659,0.0000024936,0.0000025309, -0.0000025583,0.0000025684,0.0000025838,0.0000026175,0.0000026440, -0.0000026482,0.0000026369,0.0000026229,0.0000026108,0.0000026010, -0.0000025971,0.0000025681,0.0000025193,0.0000024938,0.0000024682, -0.0000024539,0.0000024391,0.0000024156,0.0000024018,0.0000023985, -0.0000023977,0.0000024015,0.0000024038,0.0000024208,0.0000024649, -0.0000024934,0.0000024861,0.0000025303,0.0000025913,0.0000026027, -0.0000025962,0.0000025874,0.0000025813,0.0000025358,0.0000024756, -0.0000024603,0.0000024624,0.0000024675,0.0000024702,0.0000024667, -0.0000024541,0.0000024378,0.0000024208,0.0000024066,0.0000023985, -0.0000023978,0.0000023995,0.0000024014,0.0000024044,0.0000024090, -0.0000024130,0.0000024207,0.0000024305,0.0000024358,0.0000024393, -0.0000024432,0.0000024496,0.0000024578,0.0000024631,0.0000024634, -0.0000024610,0.0000024588,0.0000024597,0.0000024628,0.0000024650, -0.0000024671,0.0000024692,0.0000024736,0.0000024806,0.0000024900, -0.0000024990,0.0000025054,0.0000025075,0.0000025045,0.0000024988, -0.0000024929,0.0000024868,0.0000024818,0.0000024803,0.0000024816, -0.0000024821,0.0000024783,0.0000024727,0.0000024687,0.0000024624, -0.0000024534,0.0000024447,0.0000024406,0.0000024420,0.0000024493, -0.0000024588,0.0000024640,0.0000024649,0.0000024652,0.0000024672, -0.0000024719,0.0000024792,0.0000024879,0.0000024975,0.0000025081, -0.0000025193,0.0000025297,0.0000025371,0.0000025404,0.0000025417, -0.0000025421,0.0000025412,0.0000025398,0.0000025406,0.0000025441, -0.0000025526,0.0000025709,0.0000025934,0.0000026121,0.0000026261, -0.0000026352,0.0000026386,0.0000026371,0.0000026274,0.0000026133, -0.0000026028,0.0000025958,0.0000025920,0.0000025932,0.0000025972, -0.0000025986,0.0000025975,0.0000025950,0.0000025919,0.0000025891, -0.0000025878,0.0000025885,0.0000025898,0.0000025897,0.0000025869, -0.0000025830,0.0000025815,0.0000025823,0.0000025827,0.0000025820, -0.0000025806,0.0000025769,0.0000025698,0.0000025609,0.0000025536, -0.0000025504,0.0000025510,0.0000025533,0.0000025547,0.0000025548, -0.0000025549,0.0000025553,0.0000025530,0.0000025459,0.0000025366, -0.0000025295,0.0000025255,0.0000025225,0.0000025186,0.0000025155, -0.0000025125,0.0000025089,0.0000025051,0.0000025014,0.0000024980, -0.0000024954,0.0000024943,0.0000024946,0.0000024962,0.0000024991, -0.0000025032,0.0000025076,0.0000025117,0.0000025153,0.0000025184, -0.0000025209,0.0000025224,0.0000025227,0.0000025215,0.0000025182, -0.0000025128,0.0000025053,0.0000024957,0.0000024852,0.0000024764, -0.0000024714,0.0000024700,0.0000024698,0.0000024659,0.0000024504, -0.0000024304,0.0000024129,0.0000023965,0.0000023861,0.0000023796, -0.0000023567,0.0000023126,0.0000022740,0.0000022574,0.0000022504, -0.0000022411,0.0000022304,0.0000022198,0.0000022122,0.0000022166, -0.0000022339,0.0000022487,0.0000022581,0.0000022776,0.0000023070, -0.0000023320,0.0000023501,0.0000023736,0.0000024064,0.0000024324, -0.0000024511,0.0000024761,0.0000024969,0.0000025042,0.0000025043, -0.0000025008,0.0000024983,0.0000024983,0.0000024980,0.0000024948, -0.0000024904,0.0000024875,0.0000024848,0.0000024804,0.0000024762, -0.0000024738,0.0000024703,0.0000024630,0.0000024556,0.0000024548, -0.0000024636,0.0000024761,0.0000024806,0.0000024781,0.0000024782, -0.0000024883,0.0000025046,0.0000025158,0.0000025202,0.0000025215, -0.0000025225,0.0000025229,0.0000025194,0.0000025120,0.0000025069, -0.0000025076,0.0000025116,0.0000025171,0.0000025230,0.0000025281, -0.0000025313,0.0000025355,0.0000025437,0.0000025530,0.0000025578, -0.0000025576,0.0000025541,0.0000025486,0.0000025446,0.0000025444, -0.0000025481,0.0000025521,0.0000025521,0.0000025479,0.0000025433, -0.0000025421,0.0000025432,0.0000025465,0.0000025506,0.0000025526, -0.0000025526,0.0000025524,0.0000025534,0.0000025558,0.0000025587, -0.0000025607,0.0000025611,0.0000025593,0.0000025557,0.0000025515, -0.0000025492,0.0000025501,0.0000025551,0.0000025625,0.0000025674, -0.0000025658,0.0000025606,0.0000025585,0.0000025620,0.0000025694, -0.0000025774,0.0000025860,0.0000025973,0.0000026090,0.0000026164, -0.0000026236,0.0000026382,0.0000026535,0.0000026566,0.0000026524, -0.0000026432,0.0000026341,0.0000026345,0.0000026519,0.0000026761, -0.0000026919,0.0000026950,0.0000026921,0.0000026838,0.0000026746, -0.0000026666,0.0000026590,0.0000026516,0.0000026437,0.0000026367, -0.0000026316,0.0000026261,0.0000026169,0.0000026033,0.0000025870, -0.0000025702,0.0000025572,0.0000025511,0.0000025520,0.0000025567, -0.0000025637,0.0000025726,0.0000025832,0.0000025962,0.0000026102, -0.0000026227,0.0000026332,0.0000026412,0.0000026466,0.0000026512, -0.0000026569,0.0000026650,0.0000026761,0.0000026890,0.0000027015, -0.0000027115,0.0000027171,0.0000027188,0.0000027171,0.0000027132, -0.0000027079,0.0000027017,0.0000026961,0.0000026911,0.0000026870, -0.0000026828,0.0000026784,0.0000026747,0.0000026712,0.0000026674, -0.0000026642,0.0000026619,0.0000026608,0.0000026613,0.0000026627, -0.0000026636,0.0000026637,0.0000026621,0.0000026565,0.0000026467, -0.0000026331,0.0000026194,0.0000026086,0.0000026024,0.0000026009, -0.0000025993,0.0000025932,0.0000025925,0.0000026110,0.0000026402, -0.0000026527,0.0000026563,0.0000026621,0.0000026668,0.0000026692, -0.0000026698,0.0000026694,0.0000026714,0.0000026775,0.0000026853, -0.0000026866,0.0000026778,0.0000026608,0.0000026426,0.0000026285, -0.0000026177,0.0000026077,0.0000025994,0.0000025895,0.0000025729, -0.0000025486,0.0000025199,0.0000025009,0.0000025011,0.0000025077, -0.0000025095,0.0000025070,0.0000025026,0.0000024958,0.0000024874, -0.0000024816,0.0000024766,0.0000024667,0.0000024491,0.0000024266, -0.0000024047,0.0000023881,0.0000023772,0.0000023716,0.0000023691, -0.0000023679,0.0000023693,0.0000023771,0.0000023918,0.0000024056, -0.0000024112,0.0000024102,0.0000024069,0.0000024033,0.0000023996, -0.0000023959,0.0000023904,0.0000023821,0.0000023742,0.0000023668, -0.0000023607,0.0000023606,0.0000023674,0.0000023754,0.0000023791, -0.0000023792,0.0000023785,0.0000023789,0.0000023833,0.0000023899, -0.0000023962,0.0000024027,0.0000024049,0.0000024051,0.0000023999, -0.0000023910,0.0000023830,0.0000023802,0.0000023821,0.0000024030, -0.0000024379,0.0000024613,0.0000024620,0.0000024764,0.0000025367, -0.0000025994,0.0000026280,0.0000026510,0.0000026717,0.0000026803, -0.0000026816,0.0000026758,0.0000026665,0.0000026651,0.0000026707, -0.0000026783,0.0000026844,0.0000026898,0.0000026943,0.0000026967, -0.0000026968,0.0000026958,0.0000026934,0.0000026895,0.0000026843, -0.0000026781,0.0000026718,0.0000026661,0.0000026615,0.0000026561, -0.0000026473,0.0000026356,0.0000026236,0.0000026112,0.0000025983, -0.0000025892,0.0000025864,0.0000025845,0.0000025776,0.0000025533, -0.0000025059,0.0000024516,0.0000024162,0.0000023967,0.0000023807, -0.0000023691,0.0000023611,0.0000023541,0.0000023461,0.0000023331, -0.0000023179,0.0000023050,0.0000022966,0.0000022886,0.0000022802, -0.0000022723,0.0000022668,0.0000022629,0.0000022593,0.0000022558, -0.0000022554,0.0000022606,0.0000022677,0.0000022732,0.0000022783, -0.0000022826,0.0000022849,0.0000022856,0.0000022864,0.0000022874, -0.0000022877,0.0000022869,0.0000022853,0.0000022854,0.0000022880, -0.0000022911,0.0000022939,0.0000022967,0.0000022983,0.0000022985, -0.0000022985,0.0000022991,0.0000022980,0.0000022939,0.0000022871, -0.0000022801,0.0000022762,0.0000022746,0.0000022707,0.0000022652, -0.0000022599,0.0000022559,0.0000022545,0.0000022545,0.0000022536, -0.0000022531,0.0000022532,0.0000022530,0.0000022510,0.0000022481, -0.0000022456,0.0000022441,0.0000022432,0.0000022424,0.0000022417, -0.0000022411,0.0000022397,0.0000022376,0.0000022356,0.0000022351, -0.0000022363,0.0000022400,0.0000022454,0.0000022512,0.0000022564, -0.0000022601,0.0000022619,0.0000022626,0.0000022637,0.0000022652, -0.0000022662,0.0000022668,0.0000022672,0.0000022679,0.0000022687, -0.0000022695,0.0000022700,0.0000022700,0.0000022693,0.0000022680, -0.0000022662,0.0000022639,0.0000022606,0.0000022553,0.0000022486, -0.0000022420,0.0000022372,0.0000022341,0.0000022316,0.0000022289, -0.0000022253,0.0000022202,0.0000022148,0.0000022096,0.0000022044, -0.0000022017,0.0000022031,0.0000022084,0.0000022136,0.0000022154, -0.0000022156,0.0000022158,0.0000022168,0.0000022172,0.0000022286, -0.0000022602,0.0000022941,0.0000023211,0.0000023347,0.0000023400, -0.0000023454,0.0000023472,0.0000023465,0.0000023463,0.0000023464, -0.0000023460,0.0000023524,0.0000023757,0.0000023976,0.0000024059, -0.0000024053,0.0000023996,0.0000023925,0.0000023861,0.0000023811, -0.0000023840,0.0000024021,0.0000024260,0.0000024491,0.0000024766, -0.0000025038,0.0000025195,0.0000025209,0.0000025176,0.0000025025, -0.0000024774,0.0000024551,0.0000024431,0.0000024361,0.0000024298, -0.0000024249,0.0000024218,0.0000024203,0.0000024202,0.0000024210, -0.0000024218,0.0000024222,0.0000024221,0.0000024219,0.0000024207, -0.0000024193,0.0000024187,0.0000024193,0.0000024203,0.0000024210, -0.0000024208,0.0000024195,0.0000024171,0.0000024136,0.0000024094, -0.0000024002,0.0000023968,0.0000023939,0.0000023913,0.0000023890, -0.0000023872,0.0000023860,0.0000023855,0.0000023853,0.0000023853, -0.0000023853,0.0000023851,0.0000023847,0.0000023831,0.0000023813, -0.0000023800,0.0000023798,0.0000023814,0.0000023852,0.0000023874, -0.0000023835,0.0000023735,0.0000023684,0.0000023685,0.0000023686, -0.0000023688,0.0000023707,0.0000023750,0.0000023801,0.0000023839, -0.0000023861,0.0000023872,0.0000023867,0.0000023835,0.0000023776, -0.0000023710,0.0000023655,0.0000023617,0.0000023592,0.0000023571, -0.0000023550,0.0000023533,0.0000023519,0.0000023507,0.0000023498, -0.0000023500,0.0000023516,0.0000023542,0.0000023561,0.0000023567, -0.0000023570,0.0000023574,0.0000023580,0.0000023590,0.0000023612, -0.0000023652,0.0000023695,0.0000023723,0.0000023741,0.0000023771, -0.0000023814,0.0000023855,0.0000023883,0.0000023902,0.0000023919, -0.0000023940,0.0000023971,0.0000024030,0.0000024092,0.0000024117, -0.0000024104,0.0000024031,0.0000023922,0.0000023827,0.0000023788, -0.0000023800,0.0000023842,0.0000023864,0.0000023864,0.0000023847, -0.0000023783,0.0000023723,0.0000023732,0.0000023809,0.0000023864, -0.0000023833,0.0000023718,0.0000023628,0.0000023619,0.0000023704, -0.0000023868,0.0000024068,0.0000024244,0.0000024395,0.0000024514, -0.0000024605,0.0000024732,0.0000024905,0.0000025046,0.0000025128, -0.0000025179,0.0000025229,0.0000025281,0.0000025320,0.0000025337, -0.0000025332,0.0000025301,0.0000025246,0.0000025176,0.0000025097, -0.0000025018,0.0000024951,0.0000024900,0.0000024862,0.0000024834, -0.0000024823,0.0000024823,0.0000024824,0.0000024836,0.0000024871, -0.0000024911,0.0000024969,0.0000025062,0.0000025150,0.0000025224, -0.0000025301,0.0000025352,0.0000025357,0.0000025355,0.0000025382, -0.0000025409,0.0000025415,0.0000025437,0.0000025473,0.0000025485, -0.0000025473,0.0000025411,0.0000025310,0.0000025214,0.0000025124, -0.0000025025,0.0000024965,0.0000024970,0.0000025026,0.0000025147, -0.0000025257,0.0000025274,0.0000025247,0.0000025221,0.0000025154, -0.0000025034,0.0000024932,0.0000024885,0.0000024860,0.0000024794, -0.0000024655,0.0000024489,0.0000024368,0.0000024316,0.0000024300, -0.0000024289,0.0000024292,0.0000024323,0.0000024386,0.0000024474, -0.0000024579,0.0000024683,0.0000024764,0.0000024809,0.0000024818, -0.0000024806,0.0000024797,0.0000024795,0.0000024787,0.0000024755, -0.0000024706,0.0000024666,0.0000024653,0.0000024649,0.0000024629, -0.0000024592,0.0000024547,0.0000024512,0.0000024484,0.0000024467, -0.0000024466,0.0000024503,0.0000024577,0.0000024665,0.0000024730, -0.0000024754,0.0000024753,0.0000024748,0.0000024737,0.0000024718, -0.0000024705,0.0000024710,0.0000024726,0.0000024748,0.0000024801, -0.0000024892,0.0000024994,0.0000025089,0.0000025168,0.0000025217, -0.0000025230,0.0000025224,0.0000025230,0.0000025249,0.0000025260, -0.0000025259,0.0000025248,0.0000025227,0.0000025187,0.0000025120, -0.0000025040,0.0000024975,0.0000024941,0.0000024928,0.0000024916, -0.0000024890,0.0000024849,0.0000024805,0.0000024771,0.0000024757, -0.0000024762,0.0000024773,0.0000024771,0.0000024748,0.0000024723, -0.0000024700,0.0000024670,0.0000024613,0.0000024519,0.0000024418, -0.0000024336,0.0000024225,0.0000024018,0.0000023794,0.0000023679, -0.0000023665,0.0000023668,0.0000023684,0.0000023752,0.0000023863, -0.0000023939,0.0000023957,0.0000023965,0.0000024015,0.0000024117, -0.0000024230,0.0000024312,0.0000024367,0.0000024430,0.0000024501, -0.0000024554,0.0000024584,0.0000024637,0.0000024730,0.0000024835, -0.0000024922,0.0000025003,0.0000025112,0.0000025264,0.0000025435, -0.0000025577,0.0000025679,0.0000025773,0.0000025868,0.0000025928, -0.0000025926,0.0000025876,0.0000025809,0.0000025732,0.0000025650, -0.0000025586,0.0000025558,0.0000025558,0.0000025579,0.0000025624, -0.0000025666,0.0000025690,0.0000025715,0.0000025769,0.0000025846, -0.0000025912,0.0000025950,0.0000025962,0.0000025962,0.0000025943, -0.0000025911,0.0000025884,0.0000025872,0.0000025850,0.0000025795, -0.0000025713,0.0000025626,0.0000025557,0.0000025526,0.0000025521, -0.0000025524,0.0000025519,0.0000025487,0.0000025425,0.0000025368, -0.0000025351,0.0000025351,0.0000025350,0.0000025333,0.0000025309, -0.0000025310,0.0000025338,0.0000025355,0.0000025350,0.0000025318, -0.0000025277,0.0000025218,0.0000025154,0.0000025106,0.0000025089, -0.0000025097,0.0000025136,0.0000025176,0.0000025192,0.0000025163, -0.0000025093,0.0000024974,0.0000024867,0.0000024810,0.0000024787, -0.0000024793,0.0000024858,0.0000024965,0.0000025052,0.0000025083, -0.0000025083,0.0000025097,0.0000025143,0.0000025202,0.0000025266, -0.0000025316,0.0000025337,0.0000025334,0.0000025308,0.0000025271, -0.0000025240,0.0000025226,0.0000025230,0.0000025256,0.0000025284, -0.0000025310,0.0000025340,0.0000025340,0.0000025282,0.0000025201, -0.0000025143,0.0000025115,0.0000025090,0.0000025054,0.0000025029, -0.0000025019,0.0000025048,0.0000025107,0.0000025187,0.0000025300, -0.0000025390,0.0000025411,0.0000025374,0.0000025336,0.0000025350, -0.0000025407,0.0000025440,0.0000025412,0.0000025330,0.0000025249, -0.0000025247,0.0000025296,0.0000025367,0.0000025436,0.0000025480, -0.0000025511,0.0000025577,0.0000025699,0.0000025842,0.0000025960, -0.0000026034,0.0000026060,0.0000026040,0.0000025958,0.0000025847, -0.0000025735,0.0000025635,0.0000025539,0.0000025427,0.0000025290, -0.0000025153,0.0000025043,0.0000024966,0.0000024914,0.0000024883, -0.0000024874,0.0000024868,0.0000024858,0.0000024846,0.0000024819, -0.0000024748,0.0000024623,0.0000024444,0.0000024226,0.0000024008, -0.0000023845,0.0000023769,0.0000023763,0.0000023787,0.0000023838, -0.0000023868,0.0000023866,0.0000023834,0.0000023792,0.0000023750, -0.0000023730,0.0000023731,0.0000023740,0.0000023744,0.0000023741, -0.0000023732,0.0000023716,0.0000023694,0.0000023660,0.0000023612, -0.0000023551,0.0000023478,0.0000023403,0.0000023341,0.0000023291, -0.0000023254,0.0000023229,0.0000023212,0.0000023205,0.0000023206, -0.0000023195,0.0000023175,0.0000023160,0.0000023157,0.0000023162, -0.0000023170,0.0000023169,0.0000023155,0.0000023132,0.0000023120, -0.0000023133,0.0000023160,0.0000023158,0.0000023099,0.0000023026, -0.0000022973,0.0000022957,0.0000022967,0.0000023003,0.0000023066, -0.0000023137,0.0000023186,0.0000023209,0.0000023206,0.0000023173, -0.0000023127,0.0000023057,0.0000022981,0.0000022908,0.0000022851, -0.0000022814,0.0000022794,0.0000022796,0.0000022812,0.0000022853, -0.0000022918,0.0000023009,0.0000023123,0.0000023252,0.0000023379, -0.0000023492,0.0000023576,0.0000023622,0.0000023639,0.0000023656, -0.0000023690,0.0000023692,0.0000023679,0.0000023691,0.0000023823, -0.0000024059,0.0000024232,0.0000024312,0.0000024402,0.0000024518, -0.0000024693,0.0000025019,0.0000025383,0.0000025582,0.0000025656, -0.0000025907,0.0000026282,0.0000026482,0.0000026449,0.0000026317, -0.0000026183,0.0000026063,0.0000026011,0.0000025795,0.0000025273, -0.0000024965,0.0000024713,0.0000024550,0.0000024365,0.0000024097, -0.0000023972,0.0000023973,0.0000023985,0.0000024020,0.0000024047, -0.0000024088,0.0000024429,0.0000024855,0.0000024880,0.0000025005, -0.0000025697,0.0000026029,0.0000025998,0.0000025912,0.0000025830, -0.0000025244,0.0000024674,0.0000024603,0.0000024654,0.0000024710, -0.0000024709,0.0000024597,0.0000024385,0.0000024163,0.0000023984, -0.0000023875,0.0000023847,0.0000023888,0.0000023946,0.0000023986, -0.0000024034,0.0000024090,0.0000024136,0.0000024212,0.0000024286, -0.0000024320,0.0000024354,0.0000024400,0.0000024480,0.0000024577, -0.0000024628,0.0000024628,0.0000024597,0.0000024568,0.0000024581, -0.0000024618,0.0000024647,0.0000024667,0.0000024670,0.0000024693, -0.0000024736,0.0000024814,0.0000024896,0.0000024956,0.0000024984, -0.0000024963,0.0000024914,0.0000024863,0.0000024809,0.0000024768, -0.0000024758,0.0000024780,0.0000024803,0.0000024782,0.0000024728, -0.0000024677,0.0000024620,0.0000024540,0.0000024466,0.0000024437, -0.0000024454,0.0000024521,0.0000024630,0.0000024721,0.0000024761, -0.0000024757,0.0000024745,0.0000024749,0.0000024790,0.0000024861, -0.0000024936,0.0000025010,0.0000025076,0.0000025140,0.0000025202, -0.0000025253,0.0000025293,0.0000025328,0.0000025349,0.0000025358, -0.0000025367,0.0000025405,0.0000025473,0.0000025617,0.0000025827, -0.0000026011,0.0000026153,0.0000026265,0.0000026323,0.0000026320, -0.0000026228,0.0000026098,0.0000026003,0.0000025925,0.0000025878, -0.0000025894,0.0000025948,0.0000025968,0.0000025949,0.0000025912, -0.0000025870,0.0000025831,0.0000025812,0.0000025833,0.0000025883, -0.0000025907,0.0000025892,0.0000025858,0.0000025836,0.0000025832, -0.0000025825,0.0000025803,0.0000025774,0.0000025720,0.0000025634, -0.0000025540,0.0000025484,0.0000025475,0.0000025493,0.0000025515, -0.0000025526,0.0000025538,0.0000025548,0.0000025534,0.0000025466, -0.0000025376,0.0000025318,0.0000025292,0.0000025257,0.0000025196, -0.0000025097,0.0000025001,0.0000024927,0.0000024875,0.0000024845, -0.0000024828,0.0000024819,0.0000024811,0.0000024801,0.0000024793, -0.0000024787,0.0000024790,0.0000024808,0.0000024844,0.0000024888, -0.0000024928,0.0000024957,0.0000024974,0.0000024981,0.0000024978, -0.0000024964,0.0000024932,0.0000024885,0.0000024829,0.0000024774, -0.0000024731,0.0000024705,0.0000024696,0.0000024698,0.0000024688, -0.0000024588,0.0000024409,0.0000024249,0.0000024095,0.0000023942, -0.0000023867,0.0000023772,0.0000023450,0.0000022983,0.0000022666, -0.0000022547,0.0000022464,0.0000022367,0.0000022290,0.0000022212, -0.0000022120,0.0000022094,0.0000022223,0.0000022418,0.0000022525, -0.0000022638,0.0000022888,0.0000023181,0.0000023386,0.0000023535, -0.0000023776,0.0000024101,0.0000024330,0.0000024505,0.0000024748, -0.0000024941,0.0000025010,0.0000025021,0.0000024996,0.0000024949, -0.0000024906,0.0000024871,0.0000024841,0.0000024815,0.0000024771, -0.0000024709,0.0000024666,0.0000024654,0.0000024627,0.0000024554, -0.0000024468,0.0000024439,0.0000024523,0.0000024692,0.0000024807, -0.0000024807,0.0000024781,0.0000024819,0.0000024953,0.0000025079, -0.0000025143,0.0000025168,0.0000025189,0.0000025216,0.0000025212, -0.0000025150,0.0000025085,0.0000025072,0.0000025103,0.0000025154, -0.0000025209,0.0000025256,0.0000025287,0.0000025313,0.0000025368, -0.0000025457,0.0000025536,0.0000025564,0.0000025554,0.0000025512, -0.0000025460,0.0000025440,0.0000025461,0.0000025501,0.0000025517, -0.0000025499,0.0000025452,0.0000025418,0.0000025411,0.0000025429, -0.0000025470,0.0000025506,0.0000025516,0.0000025517,0.0000025518, -0.0000025527,0.0000025547,0.0000025579,0.0000025607,0.0000025614, -0.0000025603,0.0000025572,0.0000025528,0.0000025492,0.0000025488, -0.0000025521,0.0000025589,0.0000025651,0.0000025657,0.0000025624, -0.0000025606,0.0000025626,0.0000025682,0.0000025749,0.0000025820, -0.0000025912,0.0000026014,0.0000026084,0.0000026144,0.0000026280, -0.0000026465,0.0000026549,0.0000026524,0.0000026442,0.0000026335, -0.0000026293,0.0000026409,0.0000026638,0.0000026825,0.0000026877, -0.0000026840,0.0000026742,0.0000026644,0.0000026568,0.0000026498, -0.0000026419,0.0000026337,0.0000026256,0.0000026163,0.0000026038, -0.0000025886,0.0000025729,0.0000025588,0.0000025486,0.0000025450, -0.0000025441,0.0000025485,0.0000025539,0.0000025613,0.0000025689, -0.0000025778,0.0000025906,0.0000026039,0.0000026149,0.0000026228, -0.0000026278,0.0000026302,0.0000026317,0.0000026340,0.0000026381, -0.0000026446,0.0000026529,0.0000026622,0.0000026709,0.0000026782, -0.0000026837,0.0000026886,0.0000026933,0.0000026966,0.0000026971, -0.0000026943,0.0000026902,0.0000026857,0.0000026802,0.0000026739, -0.0000026685,0.0000026646,0.0000026618,0.0000026602,0.0000026604, -0.0000026614,0.0000026636,0.0000026650,0.0000026645,0.0000026608, -0.0000026512,0.0000026360,0.0000026197,0.0000026063,0.0000025977, -0.0000025941,0.0000025937,0.0000025944,0.0000025907,0.0000025871, -0.0000026003,0.0000026296,0.0000026504,0.0000026551,0.0000026589, -0.0000026633,0.0000026654,0.0000026666,0.0000026668,0.0000026679, -0.0000026726,0.0000026816,0.0000026875,0.0000026847,0.0000026734, -0.0000026563,0.0000026394,0.0000026264,0.0000026156,0.0000026063, -0.0000025977,0.0000025842,0.0000025626,0.0000025331,0.0000025081, -0.0000025003,0.0000025053,0.0000025117,0.0000025130,0.0000025095, -0.0000025007,0.0000024902,0.0000024835,0.0000024798,0.0000024727, -0.0000024588,0.0000024397,0.0000024186,0.0000023986,0.0000023831, -0.0000023730,0.0000023679,0.0000023650,0.0000023615,0.0000023605, -0.0000023631,0.0000023741,0.0000023894,0.0000024008,0.0000024052, -0.0000024048,0.0000024029,0.0000024004,0.0000023976,0.0000023936, -0.0000023871,0.0000023790,0.0000023709,0.0000023617,0.0000023560, -0.0000023560,0.0000023605,0.0000023657,0.0000023665,0.0000023653, -0.0000023661,0.0000023726,0.0000023828,0.0000023917,0.0000023995, -0.0000024037,0.0000024052,0.0000024023,0.0000023950,0.0000023849, -0.0000023787,0.0000023787,0.0000023905,0.0000024207,0.0000024529, -0.0000024625,0.0000024609,0.0000024976,0.0000025675,0.0000026128, -0.0000026305,0.0000026512,0.0000026665,0.0000026707,0.0000026721, -0.0000026698,0.0000026634,0.0000026596,0.0000026608,0.0000026649, -0.0000026696,0.0000026741,0.0000026770,0.0000026774,0.0000026762, -0.0000026739,0.0000026708,0.0000026678,0.0000026642,0.0000026597, -0.0000026534,0.0000026448,0.0000026340,0.0000026212,0.0000026084, -0.0000025979,0.0000025899,0.0000025852,0.0000025849,0.0000025862, -0.0000025840,0.0000025723,0.0000025426,0.0000024947,0.0000024468, -0.0000024174,0.0000023997,0.0000023829,0.0000023699,0.0000023622, -0.0000023548,0.0000023455,0.0000023327,0.0000023179,0.0000023034, -0.0000022937,0.0000022882,0.0000022822,0.0000022750,0.0000022686, -0.0000022642,0.0000022611,0.0000022576,0.0000022544,0.0000022543, -0.0000022595,0.0000022666,0.0000022718,0.0000022757,0.0000022783, -0.0000022790,0.0000022790,0.0000022801,0.0000022812,0.0000022813, -0.0000022801,0.0000022794,0.0000022811,0.0000022837,0.0000022853, -0.0000022872,0.0000022899,0.0000022922,0.0000022932,0.0000022948, -0.0000022968,0.0000022959,0.0000022898,0.0000022818,0.0000022754, -0.0000022720,0.0000022699,0.0000022666,0.0000022620,0.0000022565, -0.0000022525,0.0000022521,0.0000022535,0.0000022537,0.0000022534, -0.0000022533,0.0000022524,0.0000022488,0.0000022439,0.0000022397, -0.0000022372,0.0000022360,0.0000022358,0.0000022363,0.0000022366, -0.0000022359,0.0000022334,0.0000022298,0.0000022262,0.0000022231, -0.0000022218,0.0000022228,0.0000022269,0.0000022339,0.0000022424, -0.0000022501,0.0000022551,0.0000022573,0.0000022581,0.0000022580, -0.0000022564,0.0000022540,0.0000022523,0.0000022521,0.0000022529, -0.0000022539,0.0000022553,0.0000022567,0.0000022575,0.0000022570, -0.0000022538,0.0000022481,0.0000022406,0.0000022334,0.0000022285, -0.0000022261,0.0000022255,0.0000022254,0.0000022247,0.0000022219, -0.0000022168,0.0000022113,0.0000022065,0.0000022018,0.0000021981, -0.0000021975,0.0000022010,0.0000022065,0.0000022093,0.0000022088, -0.0000022083,0.0000022113,0.0000022127,0.0000022243,0.0000022556, -0.0000022914,0.0000023197,0.0000023328,0.0000023381,0.0000023441, -0.0000023455,0.0000023442,0.0000023436,0.0000023440,0.0000023441, -0.0000023490,0.0000023709,0.0000023937,0.0000024040,0.0000024048, -0.0000024005,0.0000023941,0.0000023879,0.0000023826,0.0000023815, -0.0000023882,0.0000024071,0.0000024282,0.0000024483,0.0000024727, -0.0000024980,0.0000025141,0.0000025180,0.0000025172,0.0000025077, -0.0000024870,0.0000024634,0.0000024470,0.0000024365,0.0000024278, -0.0000024202,0.0000024150,0.0000024115,0.0000024104,0.0000024114, -0.0000024140,0.0000024170,0.0000024186,0.0000024185,0.0000024174, -0.0000024164,0.0000024158,0.0000024154,0.0000024148,0.0000024139, -0.0000024124,0.0000024101,0.0000024073,0.0000024039,0.0000023945, -0.0000023910,0.0000023879,0.0000023851,0.0000023831,0.0000023817, -0.0000023809,0.0000023810,0.0000023819,0.0000023833,0.0000023847, -0.0000023856,0.0000023858,0.0000023851,0.0000023837,0.0000023819, -0.0000023815,0.0000023834,0.0000023869,0.0000023879,0.0000023816, -0.0000023709,0.0000023661,0.0000023659,0.0000023663,0.0000023678, -0.0000023711,0.0000023757,0.0000023800,0.0000023831,0.0000023844, -0.0000023835,0.0000023801,0.0000023744,0.0000023683,0.0000023633, -0.0000023600,0.0000023573,0.0000023547,0.0000023523,0.0000023505, -0.0000023492,0.0000023483,0.0000023475,0.0000023468,0.0000023460, -0.0000023457,0.0000023470,0.0000023500,0.0000023531,0.0000023550, -0.0000023561,0.0000023568,0.0000023572,0.0000023584,0.0000023613, -0.0000023657,0.0000023699,0.0000023730,0.0000023763,0.0000023805, -0.0000023847,0.0000023879,0.0000023900,0.0000023918,0.0000023938, -0.0000023963,0.0000024006,0.0000024065,0.0000024096,0.0000024095, -0.0000024048,0.0000023954,0.0000023845,0.0000023768,0.0000023748, -0.0000023780,0.0000023832,0.0000023854,0.0000023859,0.0000023833, -0.0000023761,0.0000023724,0.0000023750,0.0000023819,0.0000023842, -0.0000023779,0.0000023666,0.0000023608,0.0000023634,0.0000023741, -0.0000023907,0.0000024097,0.0000024260,0.0000024398,0.0000024511, -0.0000024598,0.0000024710,0.0000024854,0.0000024987,0.0000025078, -0.0000025142,0.0000025200,0.0000025247,0.0000025277,0.0000025285, -0.0000025269,0.0000025217,0.0000025137,0.0000025041,0.0000024952, -0.0000024884,0.0000024833,0.0000024795,0.0000024765,0.0000024747, -0.0000024744,0.0000024743,0.0000024739,0.0000024746,0.0000024789, -0.0000024851,0.0000024937,0.0000025046,0.0000025136,0.0000025211, -0.0000025277,0.0000025303,0.0000025295,0.0000025306,0.0000025345, -0.0000025369,0.0000025390,0.0000025436,0.0000025474,0.0000025476, -0.0000025434,0.0000025348,0.0000025245,0.0000025150,0.0000025048, -0.0000024962,0.0000024939,0.0000024959,0.0000025039,0.0000025160, -0.0000025226,0.0000025209,0.0000025178,0.0000025145,0.0000025047, -0.0000024924,0.0000024863,0.0000024855,0.0000024817,0.0000024679, -0.0000024496,0.0000024366,0.0000024319,0.0000024309,0.0000024302, -0.0000024291,0.0000024289,0.0000024294,0.0000024322,0.0000024382, -0.0000024480,0.0000024597,0.0000024694,0.0000024754,0.0000024782, -0.0000024791,0.0000024791,0.0000024781,0.0000024752,0.0000024707, -0.0000024662,0.0000024633,0.0000024623,0.0000024612,0.0000024591, -0.0000024568,0.0000024540,0.0000024516,0.0000024488,0.0000024467, -0.0000024474,0.0000024527,0.0000024610,0.0000024684,0.0000024721, -0.0000024727,0.0000024725,0.0000024719,0.0000024706,0.0000024691, -0.0000024695,0.0000024714,0.0000024733,0.0000024763,0.0000024827, -0.0000024923,0.0000025024,0.0000025114,0.0000025178,0.0000025207, -0.0000025205,0.0000025195,0.0000025204,0.0000025233,0.0000025256, -0.0000025264,0.0000025264,0.0000025259,0.0000025229,0.0000025157, -0.0000025060,0.0000024976,0.0000024926,0.0000024905,0.0000024890, -0.0000024865,0.0000024829,0.0000024796,0.0000024778,0.0000024780, -0.0000024795,0.0000024805,0.0000024793,0.0000024763,0.0000024732, -0.0000024702,0.0000024662,0.0000024595,0.0000024500,0.0000024407, -0.0000024340,0.0000024225,0.0000023997,0.0000023756,0.0000023637, -0.0000023629,0.0000023636,0.0000023651,0.0000023709,0.0000023803, -0.0000023864,0.0000023869,0.0000023870,0.0000023916,0.0000024031, -0.0000024158,0.0000024252,0.0000024324,0.0000024406,0.0000024496, -0.0000024561,0.0000024597,0.0000024638,0.0000024716,0.0000024818, -0.0000024912,0.0000024988,0.0000025061,0.0000025160,0.0000025302, -0.0000025466,0.0000025596,0.0000025668,0.0000025721,0.0000025790, -0.0000025846,0.0000025847,0.0000025794,0.0000025705,0.0000025607, -0.0000025530,0.0000025489,0.0000025482,0.0000025501,0.0000025558, -0.0000025629,0.0000025679,0.0000025708,0.0000025749,0.0000025816, -0.0000025885,0.0000025930,0.0000025946,0.0000025949,0.0000025934, -0.0000025903,0.0000025871,0.0000025853,0.0000025829,0.0000025782, -0.0000025717,0.0000025654,0.0000025615,0.0000025605,0.0000025597, -0.0000025563,0.0000025505,0.0000025408,0.0000025276,0.0000025173, -0.0000025141,0.0000025148,0.0000025158,0.0000025139,0.0000025100, -0.0000025072,0.0000025077,0.0000025097,0.0000025097,0.0000025076, -0.0000025037,0.0000024982,0.0000024927,0.0000024883,0.0000024866, -0.0000024880,0.0000024935,0.0000025010,0.0000025090,0.0000025141, -0.0000025140,0.0000025062,0.0000024936,0.0000024821,0.0000024765, -0.0000024765,0.0000024804,0.0000024892,0.0000024993,0.0000025052, -0.0000025065,0.0000025065,0.0000025083,0.0000025139,0.0000025216, -0.0000025276,0.0000025295,0.0000025285,0.0000025249,0.0000025211, -0.0000025186,0.0000025176,0.0000025178,0.0000025195,0.0000025224, -0.0000025264,0.0000025319,0.0000025361,0.0000025371,0.0000025336, -0.0000025266,0.0000025196,0.0000025148,0.0000025121,0.0000025079, -0.0000025021,0.0000024996,0.0000025026,0.0000025087,0.0000025175, -0.0000025291,0.0000025395,0.0000025419,0.0000025377,0.0000025349, -0.0000025386,0.0000025447,0.0000025454,0.0000025384,0.0000025276, -0.0000025225,0.0000025241,0.0000025288,0.0000025347,0.0000025397, -0.0000025416,0.0000025423,0.0000025469,0.0000025575,0.0000025708, -0.0000025823,0.0000025897,0.0000025922,0.0000025896,0.0000025798, -0.0000025652,0.0000025495,0.0000025361,0.0000025250,0.0000025133, -0.0000025002,0.0000024870,0.0000024759,0.0000024695,0.0000024674, -0.0000024670,0.0000024667,0.0000024657,0.0000024641,0.0000024613, -0.0000024548,0.0000024420,0.0000024234,0.0000024032,0.0000023873, -0.0000023793,0.0000023782,0.0000023803,0.0000023842,0.0000023869, -0.0000023873,0.0000023860,0.0000023825,0.0000023784,0.0000023743, -0.0000023706,0.0000023681,0.0000023668,0.0000023658,0.0000023644, -0.0000023627,0.0000023608,0.0000023588,0.0000023560,0.0000023520, -0.0000023466,0.0000023406,0.0000023345,0.0000023284,0.0000023225, -0.0000023180,0.0000023158,0.0000023137,0.0000023120,0.0000023122, -0.0000023133,0.0000023135,0.0000023116,0.0000023085,0.0000023066, -0.0000023069,0.0000023087,0.0000023103,0.0000023105,0.0000023092, -0.0000023061,0.0000023037,0.0000023042,0.0000023063,0.0000023054, -0.0000023004,0.0000022944,0.0000022913,0.0000022908,0.0000022922, -0.0000022963,0.0000023025,0.0000023092,0.0000023150,0.0000023183, -0.0000023194,0.0000023179,0.0000023131,0.0000023067,0.0000022979, -0.0000022895,0.0000022832,0.0000022798,0.0000022766,0.0000022759, -0.0000022741,0.0000022750,0.0000022785,0.0000022866,0.0000022982, -0.0000023113,0.0000023247,0.0000023366,0.0000023462,0.0000023542, -0.0000023637,0.0000023711,0.0000023729,0.0000023707,0.0000023673, -0.0000023705,0.0000023897,0.0000024138,0.0000024257,0.0000024316, -0.0000024410,0.0000024529,0.0000024759,0.0000025120,0.0000025438, -0.0000025558,0.0000025676,0.0000026036,0.0000026399,0.0000026488, -0.0000026408,0.0000026261,0.0000026125,0.0000026051,0.0000025897, -0.0000025376,0.0000025000,0.0000024746,0.0000024581,0.0000024376, -0.0000024051,0.0000023906,0.0000023940,0.0000024000,0.0000024042, -0.0000024079,0.0000024083,0.0000024244,0.0000024686,0.0000024923, -0.0000024856,0.0000025416,0.0000025956,0.0000026032,0.0000025952, -0.0000025870,0.0000025230,0.0000024658,0.0000024609,0.0000024673, -0.0000024732,0.0000024686,0.0000024487,0.0000024213,0.0000023978, -0.0000023853,0.0000023817,0.0000023836,0.0000023911,0.0000023984, -0.0000024031,0.0000024078,0.0000024120,0.0000024153,0.0000024210, -0.0000024256,0.0000024283,0.0000024320,0.0000024375,0.0000024475, -0.0000024583,0.0000024625,0.0000024621,0.0000024583,0.0000024544, -0.0000024553,0.0000024591,0.0000024628,0.0000024654,0.0000024661, -0.0000024677,0.0000024700,0.0000024753,0.0000024815,0.0000024864, -0.0000024888,0.0000024873,0.0000024829,0.0000024778,0.0000024731, -0.0000024707,0.0000024710,0.0000024744,0.0000024781,0.0000024779, -0.0000024730,0.0000024666,0.0000024612,0.0000024549,0.0000024488, -0.0000024469,0.0000024494,0.0000024548,0.0000024633,0.0000024728, -0.0000024801,0.0000024831,0.0000024831,0.0000024823,0.0000024825, -0.0000024855,0.0000024904,0.0000024961,0.0000025012,0.0000025044, -0.0000025064,0.0000025086,0.0000025131,0.0000025200,0.0000025262, -0.0000025307,0.0000025336,0.0000025376,0.0000025436,0.0000025547, -0.0000025739,0.0000025921,0.0000026053,0.0000026175,0.0000026260, -0.0000026269,0.0000026193,0.0000026076,0.0000025974,0.0000025876, -0.0000025822,0.0000025849,0.0000025912,0.0000025932,0.0000025910, -0.0000025876,0.0000025840,0.0000025796,0.0000025761,0.0000025767, -0.0000025825,0.0000025881,0.0000025884,0.0000025859,0.0000025845, -0.0000025849,0.0000025840,0.0000025807,0.0000025757,0.0000025684, -0.0000025592,0.0000025512,0.0000025474,0.0000025471,0.0000025486, -0.0000025501,0.0000025520,0.0000025547,0.0000025551,0.0000025499, -0.0000025408,0.0000025350,0.0000025326,0.0000025284,0.0000025173, -0.0000025020,0.0000024879,0.0000024769,0.0000024684,0.0000024618, -0.0000024573,0.0000024546,0.0000024536,0.0000024535,0.0000024539, -0.0000024547,0.0000024553,0.0000024554,0.0000024549,0.0000024552, -0.0000024568,0.0000024601,0.0000024636,0.0000024659,0.0000024668, -0.0000024668,0.0000024663,0.0000024656,0.0000024650,0.0000024647, -0.0000024651,0.0000024659,0.0000024668,0.0000024681,0.0000024685, -0.0000024629,0.0000024485,0.0000024335,0.0000024205,0.0000024043, -0.0000023915,0.0000023865,0.0000023707,0.0000023297,0.0000022851, -0.0000022617,0.0000022523,0.0000022417,0.0000022318,0.0000022266, -0.0000022217,0.0000022133,0.0000022072,0.0000022127,0.0000022322, -0.0000022481,0.0000022558,0.0000022720,0.0000023005,0.0000023271, -0.0000023427,0.0000023554,0.0000023807,0.0000024128,0.0000024331, -0.0000024494,0.0000024732,0.0000024912,0.0000024975,0.0000024994, -0.0000024981,0.0000024919,0.0000024858,0.0000024821,0.0000024777, -0.0000024705,0.0000024635,0.0000024597,0.0000024578,0.0000024544, -0.0000024478,0.0000024403,0.0000024372,0.0000024422,0.0000024590, -0.0000024767,0.0000024823,0.0000024802,0.0000024798,0.0000024877, -0.0000024996,0.0000025071,0.0000025101,0.0000025127,0.0000025172, -0.0000025199,0.0000025178,0.0000025111,0.0000025078,0.0000025090, -0.0000025139,0.0000025199,0.0000025252,0.0000025282,0.0000025295, -0.0000025322,0.0000025387,0.0000025473,0.0000025534,0.0000025547, -0.0000025528,0.0000025486,0.0000025453,0.0000025455,0.0000025491, -0.0000025514,0.0000025507,0.0000025468,0.0000025420,0.0000025399, -0.0000025405,0.0000025439,0.0000025481,0.0000025503,0.0000025507, -0.0000025506,0.0000025501,0.0000025497,0.0000025508,0.0000025544, -0.0000025581,0.0000025602,0.0000025603,0.0000025592,0.0000025556, -0.0000025513,0.0000025492,0.0000025506,0.0000025557,0.0000025618, -0.0000025637,0.0000025619,0.0000025608,0.0000025621,0.0000025658, -0.0000025715,0.0000025784,0.0000025863,0.0000025944,0.0000026012, -0.0000026069,0.0000026186,0.0000026375,0.0000026506,0.0000026509, -0.0000026443,0.0000026344,0.0000026271,0.0000026317,0.0000026502, -0.0000026699,0.0000026787,0.0000026759,0.0000026653,0.0000026542, -0.0000026462,0.0000026395,0.0000026320,0.0000026226,0.0000026095, -0.0000025930,0.0000025767,0.0000025648,0.0000025569,0.0000025521, -0.0000025518,0.0000025545,0.0000025585,0.0000025607,0.0000025625, -0.0000025657,0.0000025706,0.0000025781,0.0000025890,0.0000025996, -0.0000026079,0.0000026139,0.0000026181,0.0000026207,0.0000026222, -0.0000026230,0.0000026235,0.0000026240,0.0000026258,0.0000026288, -0.0000026324,0.0000026366,0.0000026416,0.0000026483,0.0000026570, -0.0000026662,0.0000026736,0.0000026776,0.0000026786,0.0000026770, -0.0000026731,0.0000026677,0.0000026632,0.0000026607,0.0000026597, -0.0000026597,0.0000026605,0.0000026622,0.0000026634,0.0000026615, -0.0000026554,0.0000026426,0.0000026247,0.0000026067,0.0000025936, -0.0000025859,0.0000025820,0.0000025819,0.0000025845,0.0000025856, -0.0000025825,0.0000025899,0.0000026182,0.0000026454,0.0000026541, -0.0000026569,0.0000026612,0.0000026638,0.0000026651,0.0000026658, -0.0000026661,0.0000026689,0.0000026771,0.0000026856,0.0000026872, -0.0000026806,0.0000026677,0.0000026513,0.0000026358,0.0000026231, -0.0000026129,0.0000026044,0.0000025936,0.0000025764,0.0000025500, -0.0000025196,0.0000025030,0.0000025037,0.0000025104,0.0000025162, -0.0000025168,0.0000025092,0.0000024956,0.0000024851,0.0000024799, -0.0000024734,0.0000024620,0.0000024476,0.0000024319,0.0000024145, -0.0000023962,0.0000023809,0.0000023707,0.0000023658,0.0000023627, -0.0000023580,0.0000023541,0.0000023541,0.0000023603,0.0000023715, -0.0000023838,0.0000023934,0.0000023981,0.0000023990,0.0000023986, -0.0000023974,0.0000023949,0.0000023902,0.0000023832,0.0000023751, -0.0000023653,0.0000023558,0.0000023498,0.0000023483,0.0000023521, -0.0000023546,0.0000023539,0.0000023534,0.0000023572,0.0000023672, -0.0000023785,0.0000023887,0.0000023945,0.0000023979,0.0000023984, -0.0000023955,0.0000023879,0.0000023795,0.0000023784,0.0000023829, -0.0000024044,0.0000024385,0.0000024615,0.0000024592,0.0000024698, -0.0000025269,0.0000025881,0.0000026168,0.0000026284,0.0000026466, -0.0000026592,0.0000026602,0.0000026608,0.0000026618,0.0000026607, -0.0000026594,0.0000026594,0.0000026604,0.0000026627,0.0000026645, -0.0000026658,0.0000026659,0.0000026652,0.0000026635,0.0000026607, -0.0000026555,0.0000026475,0.0000026365,0.0000026230,0.0000026092, -0.0000025966,0.0000025867,0.0000025807,0.0000025788,0.0000025805, -0.0000025831,0.0000025829,0.0000025767,0.0000025577,0.0000025222, -0.0000024763,0.0000024379,0.0000024165,0.0000024016,0.0000023855, -0.0000023718,0.0000023630,0.0000023545,0.0000023433,0.0000023303, -0.0000023173,0.0000023030,0.0000022916,0.0000022852,0.0000022815, -0.0000022769,0.0000022710,0.0000022661,0.0000022631,0.0000022603, -0.0000022567,0.0000022537,0.0000022535,0.0000022583,0.0000022654, -0.0000022702,0.0000022728,0.0000022742,0.0000022743,0.0000022753, -0.0000022767,0.0000022769,0.0000022755,0.0000022742,0.0000022748, -0.0000022772,0.0000022786,0.0000022791,0.0000022806,0.0000022842, -0.0000022875,0.0000022893,0.0000022918,0.0000022947,0.0000022932, -0.0000022859,0.0000022780,0.0000022719,0.0000022678,0.0000022647, -0.0000022616,0.0000022578,0.0000022536,0.0000022512,0.0000022518, -0.0000022535,0.0000022538,0.0000022532,0.0000022515,0.0000022475, -0.0000022408,0.0000022339,0.0000022285,0.0000022250,0.0000022231, -0.0000022225,0.0000022232,0.0000022244,0.0000022249,0.0000022240, -0.0000022217,0.0000022190,0.0000022166,0.0000022147,0.0000022142, -0.0000022147,0.0000022166,0.0000022207,0.0000022274,0.0000022355, -0.0000022421,0.0000022464,0.0000022485,0.0000022483,0.0000022461, -0.0000022436,0.0000022427,0.0000022431,0.0000022438,0.0000022448, -0.0000022454,0.0000022450,0.0000022426,0.0000022377,0.0000022312, -0.0000022252,0.0000022211,0.0000022195,0.0000022191,0.0000022191, -0.0000022193,0.0000022191,0.0000022169,0.0000022127,0.0000022084, -0.0000022049,0.0000022011,0.0000021976,0.0000021961,0.0000021968, -0.0000022004,0.0000022038,0.0000022035,0.0000022026,0.0000022055, -0.0000022085,0.0000022200,0.0000022509,0.0000022883,0.0000023179, -0.0000023309,0.0000023361,0.0000023423,0.0000023436,0.0000023416, -0.0000023404,0.0000023409,0.0000023411,0.0000023448,0.0000023649, -0.0000023888,0.0000024009,0.0000024029,0.0000024001,0.0000023946, -0.0000023888,0.0000023838,0.0000023801,0.0000023799,0.0000023883, -0.0000024058,0.0000024245,0.0000024420,0.0000024622,0.0000024852, -0.0000025041,0.0000025140,0.0000025145,0.0000025112,0.0000024970, -0.0000024736,0.0000024521,0.0000024371,0.0000024254,0.0000024156, -0.0000024083,0.0000024038,0.0000024019,0.0000024033,0.0000024062, -0.0000024088,0.0000024106,0.0000024122,0.0000024136,0.0000024147, -0.0000024147,0.0000024132,0.0000024106,0.0000024075,0.0000024040, -0.0000024008,0.0000023976,0.0000023957,0.0000023924,0.0000023894, -0.0000023869,0.0000023853,0.0000023845,0.0000023845,0.0000023849, -0.0000023859,0.0000023878,0.0000023898,0.0000023909,0.0000023910, -0.0000023898,0.0000023870,0.0000023840,0.0000023834,0.0000023857, -0.0000023883,0.0000023876,0.0000023782,0.0000023673,0.0000023633, -0.0000023633,0.0000023648,0.0000023679,0.0000023719,0.0000023760, -0.0000023796,0.0000023817,0.0000023811,0.0000023776,0.0000023720, -0.0000023663,0.0000023622,0.0000023597,0.0000023567,0.0000023529, -0.0000023495,0.0000023477,0.0000023471,0.0000023476,0.0000023473, -0.0000023465,0.0000023454,0.0000023450,0.0000023446,0.0000023438, -0.0000023438,0.0000023465,0.0000023507,0.0000023535,0.0000023550, -0.0000023559,0.0000023568,0.0000023588,0.0000023624,0.0000023670, -0.0000023712,0.0000023755,0.0000023804,0.0000023848,0.0000023883, -0.0000023906,0.0000023918,0.0000023932,0.0000023951,0.0000023981, -0.0000024030,0.0000024068,0.0000024074,0.0000024052,0.0000023985, -0.0000023884,0.0000023785,0.0000023726,0.0000023724,0.0000023778, -0.0000023838,0.0000023859,0.0000023863,0.0000023817,0.0000023745, -0.0000023724,0.0000023762,0.0000023814,0.0000023812,0.0000023728, -0.0000023633,0.0000023610,0.0000023656,0.0000023768,0.0000023930, -0.0000024112,0.0000024262,0.0000024389,0.0000024495,0.0000024580, -0.0000024674,0.0000024793,0.0000024913,0.0000025013,0.0000025092, -0.0000025151,0.0000025191,0.0000025208,0.0000025205,0.0000025169, -0.0000025100,0.0000025009,0.0000024915,0.0000024844,0.0000024795, -0.0000024759,0.0000024724,0.0000024693,0.0000024677,0.0000024677, -0.0000024677,0.0000024675,0.0000024681,0.0000024718,0.0000024790, -0.0000024903,0.0000025026,0.0000025120,0.0000025193,0.0000025239, -0.0000025238,0.0000025228,0.0000025260,0.0000025306,0.0000025335, -0.0000025384,0.0000025446,0.0000025466,0.0000025446,0.0000025375, -0.0000025274,0.0000025172,0.0000025068,0.0000024971,0.0000024922, -0.0000024926,0.0000024964,0.0000025060,0.0000025157,0.0000025169, -0.0000025130,0.0000025104,0.0000025047,0.0000024932,0.0000024844, -0.0000024831,0.0000024819,0.0000024706,0.0000024518,0.0000024379, -0.0000024333,0.0000024330,0.0000024330,0.0000024323,0.0000024312, -0.0000024305,0.0000024301,0.0000024298,0.0000024317,0.0000024377, -0.0000024474,0.0000024580,0.0000024667,0.0000024726,0.0000024765, -0.0000024786,0.0000024780,0.0000024744,0.0000024689,0.0000024644, -0.0000024622,0.0000024611,0.0000024599,0.0000024586,0.0000024576, -0.0000024565,0.0000024540,0.0000024505,0.0000024483,0.0000024501, -0.0000024564,0.0000024640,0.0000024687,0.0000024700,0.0000024699, -0.0000024695,0.0000024686,0.0000024674,0.0000024676,0.0000024700, -0.0000024727,0.0000024751,0.0000024791,0.0000024860,0.0000024953, -0.0000025048,0.0000025123,0.0000025170,0.0000025185,0.0000025177, -0.0000025164,0.0000025174,0.0000025211,0.0000025249,0.0000025272, -0.0000025284,0.0000025287,0.0000025271,0.0000025208,0.0000025106, -0.0000025001,0.0000024925,0.0000024881,0.0000024853,0.0000024825, -0.0000024799,0.0000024786,0.0000024788,0.0000024803,0.0000024821, -0.0000024828,0.0000024811,0.0000024773,0.0000024734,0.0000024696, -0.0000024648,0.0000024580,0.0000024493,0.0000024414,0.0000024356, -0.0000024238,0.0000023989,0.0000023724,0.0000023604,0.0000023599, -0.0000023609,0.0000023619,0.0000023669,0.0000023755,0.0000023804, -0.0000023793,0.0000023781,0.0000023825,0.0000023951,0.0000024091, -0.0000024193,0.0000024273,0.0000024367,0.0000024468,0.0000024544, -0.0000024589,0.0000024636,0.0000024718,0.0000024822,0.0000024915, -0.0000024988,0.0000025053,0.0000025121,0.0000025210,0.0000025344, -0.0000025498,0.0000025603,0.0000025632,0.0000025643,0.0000025684, -0.0000025737,0.0000025755,0.0000025703,0.0000025611,0.0000025526, -0.0000025474,0.0000025452,0.0000025462,0.0000025510,0.0000025588, -0.0000025664,0.0000025718,0.0000025762,0.0000025817,0.0000025878, -0.0000025923,0.0000025939,0.0000025937,0.0000025919,0.0000025892, -0.0000025865,0.0000025848,0.0000025825,0.0000025784,0.0000025737, -0.0000025694,0.0000025659,0.0000025638,0.0000025606,0.0000025531, -0.0000025412,0.0000025263,0.0000025120,0.0000025039,0.0000025041, -0.0000025081,0.0000025113,0.0000025111,0.0000025079,0.0000025037, -0.0000025020,0.0000025030,0.0000025035,0.0000025019,0.0000024982, -0.0000024929,0.0000024871,0.0000024817,0.0000024772,0.0000024750, -0.0000024752,0.0000024787,0.0000024855,0.0000024941,0.0000025019, -0.0000025054,0.0000025006,0.0000024899,0.0000024775,0.0000024738, -0.0000024764,0.0000024834,0.0000024933,0.0000025014,0.0000025046, -0.0000025049,0.0000025051,0.0000025088,0.0000025157,0.0000025220, -0.0000025248,0.0000025244,0.0000025209,0.0000025162,0.0000025127, -0.0000025120,0.0000025134,0.0000025155,0.0000025169,0.0000025203, -0.0000025263,0.0000025326,0.0000025375,0.0000025395,0.0000025379, -0.0000025310,0.0000025227,0.0000025179,0.0000025150,0.0000025080, -0.0000024995,0.0000024969,0.0000025013,0.0000025094,0.0000025177, -0.0000025300,0.0000025412,0.0000025427,0.0000025383,0.0000025368, -0.0000025409,0.0000025454,0.0000025440,0.0000025356,0.0000025257, -0.0000025233,0.0000025260,0.0000025302,0.0000025351,0.0000025388, -0.0000025396,0.0000025393,0.0000025423,0.0000025511,0.0000025614, -0.0000025673,0.0000025680,0.0000025649,0.0000025563,0.0000025424, -0.0000025256,0.0000025102,0.0000024991,0.0000024910,0.0000024830, -0.0000024736,0.0000024628,0.0000024530,0.0000024476,0.0000024461, -0.0000024457,0.0000024441,0.0000024402,0.0000024346,0.0000024273, -0.0000024171,0.0000024048,0.0000023934,0.0000023860,0.0000023835, -0.0000023857,0.0000023893,0.0000023908,0.0000023894,0.0000023864, -0.0000023833,0.0000023799,0.0000023763,0.0000023724,0.0000023680, -0.0000023638,0.0000023607,0.0000023580,0.0000023549,0.0000023514, -0.0000023482,0.0000023452,0.0000023422,0.0000023390,0.0000023350, -0.0000023305,0.0000023259,0.0000023214,0.0000023161,0.0000023103, -0.0000023062,0.0000023041,0.0000023026,0.0000023012,0.0000023014, -0.0000023038,0.0000023061,0.0000023055,0.0000023024,0.0000022992, -0.0000022984,0.0000023001,0.0000023029,0.0000023052,0.0000023058, -0.0000023036,0.0000022984,0.0000022947,0.0000022956,0.0000022985, -0.0000022979,0.0000022932,0.0000022887,0.0000022874,0.0000022883, -0.0000022913,0.0000022953,0.0000022998,0.0000023046,0.0000023093, -0.0000023133,0.0000023148,0.0000023150,0.0000023117,0.0000023051, -0.0000022983,0.0000022921,0.0000022870,0.0000022823,0.0000022777, -0.0000022739,0.0000022702,0.0000022673,0.0000022692,0.0000022755, -0.0000022863,0.0000022994,0.0000023130,0.0000023257,0.0000023386, -0.0000023538,0.0000023679,0.0000023747,0.0000023751,0.0000023695, -0.0000023666,0.0000023758,0.0000024000,0.0000024195,0.0000024252, -0.0000024310,0.0000024414,0.0000024568,0.0000024862,0.0000025228, -0.0000025467,0.0000025536,0.0000025771,0.0000026207,0.0000026495, -0.0000026485,0.0000026342,0.0000026191,0.0000026094,0.0000025981, -0.0000025499,0.0000025058,0.0000024790,0.0000024624,0.0000024415, -0.0000024037,0.0000023841,0.0000023890,0.0000024005,0.0000024078, -0.0000024119,0.0000024114,0.0000024151,0.0000024493,0.0000024887, -0.0000024855,0.0000025118,0.0000025788,0.0000026041,0.0000025989, -0.0000025929,0.0000025303,0.0000024687,0.0000024615,0.0000024691, -0.0000024737,0.0000024644,0.0000024377,0.0000024070,0.0000023886, -0.0000023846,0.0000023857,0.0000023907,0.0000023992,0.0000024062, -0.0000024098,0.0000024124,0.0000024140,0.0000024157,0.0000024193, -0.0000024222,0.0000024252,0.0000024294,0.0000024361,0.0000024482, -0.0000024588,0.0000024617,0.0000024609,0.0000024567,0.0000024518, -0.0000024518,0.0000024550,0.0000024588,0.0000024618,0.0000024634, -0.0000024659,0.0000024681,0.0000024720,0.0000024761,0.0000024793, -0.0000024802,0.0000024782,0.0000024734,0.0000024677,0.0000024643, -0.0000024645,0.0000024670,0.0000024714,0.0000024758,0.0000024768, -0.0000024728,0.0000024656,0.0000024604,0.0000024558,0.0000024510, -0.0000024494,0.0000024524,0.0000024574,0.0000024630,0.0000024696, -0.0000024762,0.0000024811,0.0000024840,0.0000024859,0.0000024865, -0.0000024883,0.0000024899,0.0000024924,0.0000024957,0.0000024980, -0.0000024980,0.0000024962,0.0000024972,0.0000025047,0.0000025151, -0.0000025242,0.0000025308,0.0000025354,0.0000025407,0.0000025490, -0.0000025659,0.0000025848,0.0000025968,0.0000026079,0.0000026184, -0.0000026214,0.0000026166,0.0000026058,0.0000025931,0.0000025806, -0.0000025757,0.0000025800,0.0000025868,0.0000025882,0.0000025862, -0.0000025841,0.0000025824,0.0000025790,0.0000025744,0.0000025717, -0.0000025743,0.0000025807,0.0000025837,0.0000025834,0.0000025836, -0.0000025854,0.0000025854,0.0000025824,0.0000025760,0.0000025678, -0.0000025595,0.0000025525,0.0000025493,0.0000025485,0.0000025489, -0.0000025502,0.0000025537,0.0000025560,0.0000025539,0.0000025460, -0.0000025398,0.0000025372,0.0000025319,0.0000025179,0.0000024994, -0.0000024844,0.0000024754,0.0000024694,0.0000024643,0.0000024583, -0.0000024519,0.0000024467,0.0000024425,0.0000024395,0.0000024377, -0.0000024365,0.0000024365,0.0000024372,0.0000024375,0.0000024371, -0.0000024365,0.0000024374,0.0000024398,0.0000024426,0.0000024448, -0.0000024465,0.0000024481,0.0000024498,0.0000024519,0.0000024549, -0.0000024586,0.0000024627,0.0000024660,0.0000024670,0.0000024640, -0.0000024526,0.0000024393,0.0000024286,0.0000024143,0.0000023975, -0.0000023896,0.0000023842,0.0000023584,0.0000023124,0.0000022746, -0.0000022586,0.0000022491,0.0000022368,0.0000022276,0.0000022238, -0.0000022213,0.0000022149,0.0000022063,0.0000022064,0.0000022222, -0.0000022422,0.0000022520,0.0000022609,0.0000022824,0.0000023113, -0.0000023335,0.0000023443,0.0000023561,0.0000023831,0.0000024146, -0.0000024327,0.0000024483,0.0000024713,0.0000024883,0.0000024941, -0.0000024964,0.0000024954,0.0000024891,0.0000024818,0.0000024744, -0.0000024655,0.0000024585,0.0000024549,0.0000024514,0.0000024469, -0.0000024423,0.0000024372,0.0000024331,0.0000024349,0.0000024483, -0.0000024689,0.0000024822,0.0000024831,0.0000024804,0.0000024831, -0.0000024922,0.0000025001,0.0000025032,0.0000025048,0.0000025092, -0.0000025157,0.0000025183,0.0000025139,0.0000025085,0.0000025078, -0.0000025119,0.0000025193,0.0000025260,0.0000025293,0.0000025300, -0.0000025308,0.0000025342,0.0000025408,0.0000025480,0.0000025519, -0.0000025521,0.0000025503,0.0000025475,0.0000025462,0.0000025479, -0.0000025504,0.0000025503,0.0000025466,0.0000025411,0.0000025376, -0.0000025376,0.0000025404,0.0000025450,0.0000025485,0.0000025492, -0.0000025489,0.0000025482,0.0000025469,0.0000025459,0.0000025467, -0.0000025501,0.0000025544,0.0000025573,0.0000025588,0.0000025591, -0.0000025582,0.0000025547,0.0000025508,0.0000025497,0.0000025527, -0.0000025580,0.0000025599,0.0000025588,0.0000025585,0.0000025602, -0.0000025628,0.0000025672,0.0000025738,0.0000025815,0.0000025887, -0.0000025951,0.0000026011,0.0000026103,0.0000026272,0.0000026441, -0.0000026485,0.0000026441,0.0000026363,0.0000026276,0.0000026254, -0.0000026356,0.0000026530,0.0000026648,0.0000026655,0.0000026573, -0.0000026460,0.0000026372,0.0000026300,0.0000026206,0.0000026061, -0.0000025869,0.0000025691,0.0000025592,0.0000025567,0.0000025581, -0.0000025617,0.0000025682,0.0000025738,0.0000025753,0.0000025737, -0.0000025715,0.0000025710,0.0000025729,0.0000025777,0.0000025847, -0.0000025912,0.0000025967,0.0000026021,0.0000026074,0.0000026113, -0.0000026135,0.0000026137,0.0000026123,0.0000026104,0.0000026092, -0.0000026082,0.0000026072,0.0000026068,0.0000026078,0.0000026110, -0.0000026169,0.0000026249,0.0000026335,0.0000026411,0.0000026461, -0.0000026481,0.0000026482,0.0000026479,0.0000026485,0.0000026505, -0.0000026528,0.0000026542,0.0000026547,0.0000026535,0.0000026500, -0.0000026427,0.0000026306,0.0000026134,0.0000025949,0.0000025806, -0.0000025718,0.0000025664,0.0000025645,0.0000025685,0.0000025753, -0.0000025774,0.0000025824,0.0000026065,0.0000026381,0.0000026525, -0.0000026549,0.0000026587,0.0000026627,0.0000026652,0.0000026664, -0.0000026664,0.0000026679,0.0000026738,0.0000026827,0.0000026869, -0.0000026841,0.0000026751,0.0000026618,0.0000026461,0.0000026313, -0.0000026196,0.0000026103,0.0000026007,0.0000025874,0.0000025661, -0.0000025368,0.0000025124,0.0000025050,0.0000025087,0.0000025164, -0.0000025211,0.0000025185,0.0000025056,0.0000024902,0.0000024805, -0.0000024728,0.0000024625,0.0000024513,0.0000024404,0.0000024283, -0.0000024131,0.0000023958,0.0000023802,0.0000023691,0.0000023640, -0.0000023611,0.0000023560,0.0000023507,0.0000023494,0.0000023515, -0.0000023570,0.0000023655,0.0000023759,0.0000023849,0.0000023902, -0.0000023928,0.0000023940,0.0000023939,0.0000023911,0.0000023854, -0.0000023780,0.0000023687,0.0000023579,0.0000023479,0.0000023419, -0.0000023413,0.0000023438,0.0000023445,0.0000023439,0.0000023444, -0.0000023506,0.0000023610,0.0000023721,0.0000023799,0.0000023849, -0.0000023877,0.0000023888,0.0000023869,0.0000023805,0.0000023764, -0.0000023783,0.0000023909,0.0000024208,0.0000024521,0.0000024611, -0.0000024585,0.0000024868,0.0000025511,0.0000025980,0.0000026146, -0.0000026226,0.0000026383,0.0000026499,0.0000026508,0.0000026486, -0.0000026487,0.0000026512,0.0000026540,0.0000026561,0.0000026579, -0.0000026594,0.0000026599,0.0000026592,0.0000026574,0.0000026535, -0.0000026477,0.0000026393,0.0000026286,0.0000026165,0.0000026042, -0.0000025929,0.0000025840,0.0000025785,0.0000025762,0.0000025768, -0.0000025783,0.0000025776,0.0000025725,0.0000025581,0.0000025309, -0.0000024926,0.0000024539,0.0000024278,0.0000024141,0.0000024021, -0.0000023879,0.0000023751,0.0000023648,0.0000023539,0.0000023406, -0.0000023277,0.0000023169,0.0000023053,0.0000022928,0.0000022828, -0.0000022783,0.0000022766,0.0000022727,0.0000022678,0.0000022651, -0.0000022631,0.0000022601,0.0000022563,0.0000022530,0.0000022523, -0.0000022568,0.0000022637,0.0000022679,0.0000022697,0.0000022701, -0.0000022711,0.0000022730,0.0000022738,0.0000022726,0.0000022707, -0.0000022705,0.0000022717,0.0000022731,0.0000022735,0.0000022737, -0.0000022758,0.0000022803,0.0000022843,0.0000022864,0.0000022893, -0.0000022919,0.0000022897,0.0000022825,0.0000022753,0.0000022691, -0.0000022638,0.0000022594,0.0000022562,0.0000022530,0.0000022502, -0.0000022492,0.0000022500,0.0000022515,0.0000022514,0.0000022492, -0.0000022443,0.0000022372,0.0000022295,0.0000022230,0.0000022176, -0.0000022131,0.0000022100,0.0000022083,0.0000022081,0.0000022087, -0.0000022091,0.0000022085,0.0000022064,0.0000022038,0.0000022019, -0.0000022015,0.0000022025,0.0000022055,0.0000022093,0.0000022126, -0.0000022153,0.0000022182,0.0000022218,0.0000022252,0.0000022278, -0.0000022295,0.0000022299,0.0000022296,0.0000022295,0.0000022296, -0.0000022298,0.0000022294,0.0000022280,0.0000022255,0.0000022225, -0.0000022197,0.0000022173,0.0000022156,0.0000022147,0.0000022140, -0.0000022129,0.0000022124,0.0000022128,0.0000022131,0.0000022119, -0.0000022097,0.0000022075,0.0000022058,0.0000022036,0.0000022006, -0.0000021977,0.0000021963,0.0000021974,0.0000021998,0.0000022001, -0.0000021985,0.0000022000,0.0000022041,0.0000022159,0.0000022461, -0.0000022847,0.0000023154,0.0000023286,0.0000023338,0.0000023402, -0.0000023413,0.0000023385,0.0000023366,0.0000023369,0.0000023377, -0.0000023406,0.0000023576,0.0000023822,0.0000023969,0.0000024000, -0.0000023984,0.0000023939,0.0000023884,0.0000023836,0.0000023799, -0.0000023770,0.0000023771,0.0000023847,0.0000023994,0.0000024158, -0.0000024305,0.0000024460,0.0000024653,0.0000024859,0.0000025022, -0.0000025107,0.0000025120,0.0000025052,0.0000024845,0.0000024592, -0.0000024388,0.0000024241,0.0000024129,0.0000024049,0.0000024003, -0.0000023982,0.0000023970,0.0000023977,0.0000023995,0.0000024025, -0.0000024063,0.0000024099,0.0000024121,0.0000024122,0.0000024107, -0.0000024083,0.0000024055,0.0000024023,0.0000023989,0.0000023992, -0.0000023972,0.0000023953,0.0000023941,0.0000023945,0.0000023955, -0.0000023961,0.0000023959,0.0000023954,0.0000023957,0.0000023970, -0.0000023982,0.0000023982,0.0000023955,0.0000023902,0.0000023858, -0.0000023851,0.0000023873,0.0000023886,0.0000023848,0.0000023731, -0.0000023631,0.0000023604,0.0000023614,0.0000023649,0.0000023690, -0.0000023727,0.0000023761,0.0000023788,0.0000023790,0.0000023758, -0.0000023701,0.0000023645,0.0000023611,0.0000023597,0.0000023568, -0.0000023515,0.0000023469,0.0000023461,0.0000023479,0.0000023502, -0.0000023511,0.0000023507,0.0000023495,0.0000023475,0.0000023451, -0.0000023439,0.0000023438,0.0000023428,0.0000023424,0.0000023452, -0.0000023499,0.0000023526,0.0000023537,0.0000023551,0.0000023574, -0.0000023610,0.0000023653,0.0000023698,0.0000023748,0.0000023805, -0.0000023855,0.0000023892,0.0000023913,0.0000023917,0.0000023921, -0.0000023935,0.0000023956,0.0000023993,0.0000024029,0.0000024043, -0.0000024036,0.0000023997,0.0000023920,0.0000023823,0.0000023738, -0.0000023700,0.0000023723,0.0000023798,0.0000023851,0.0000023872, -0.0000023862,0.0000023794,0.0000023735,0.0000023731,0.0000023765, -0.0000023798,0.0000023773,0.0000023687,0.0000023621,0.0000023613, -0.0000023672,0.0000023784,0.0000023942,0.0000024113,0.0000024253, -0.0000024364,0.0000024464,0.0000024551,0.0000024636,0.0000024732, -0.0000024831,0.0000024929,0.0000025011,0.0000025067,0.0000025098, -0.0000025105,0.0000025087,0.0000025043,0.0000024980,0.0000024906, -0.0000024829,0.0000024767,0.0000024722,0.0000024688,0.0000024654, -0.0000024623,0.0000024608,0.0000024607,0.0000024611,0.0000024617, -0.0000024629,0.0000024656,0.0000024728,0.0000024857,0.0000024996, -0.0000025099,0.0000025166,0.0000025181,0.0000025164,0.0000025170, -0.0000025222,0.0000025269,0.0000025323,0.0000025402,0.0000025459, -0.0000025462,0.0000025403,0.0000025306,0.0000025198,0.0000025091, -0.0000024985,0.0000024915,0.0000024904,0.0000024919,0.0000024980, -0.0000025078,0.0000025127,0.0000025096,0.0000025051,0.0000025022, -0.0000024944,0.0000024845,0.0000024808,0.0000024804,0.0000024719, -0.0000024543,0.0000024397,0.0000024348,0.0000024346,0.0000024349, -0.0000024343,0.0000024328,0.0000024317,0.0000024312,0.0000024304, -0.0000024292,0.0000024289,0.0000024307,0.0000024357,0.0000024441, -0.0000024543,0.0000024643,0.0000024719,0.0000024762,0.0000024770, -0.0000024742,0.0000024698,0.0000024653,0.0000024623,0.0000024606, -0.0000024596,0.0000024595,0.0000024595,0.0000024583,0.0000024552, -0.0000024518,0.0000024509,0.0000024542,0.0000024604,0.0000024655, -0.0000024675,0.0000024675,0.0000024672,0.0000024665,0.0000024656, -0.0000024656,0.0000024678,0.0000024711,0.0000024743,0.0000024776, -0.0000024824,0.0000024897,0.0000024983,0.0000025057,0.0000025109, -0.0000025142,0.0000025153,0.0000025149,0.0000025144,0.0000025155, -0.0000025190,0.0000025236,0.0000025276,0.0000025299,0.0000025312, -0.0000025310,0.0000025269,0.0000025176,0.0000025052,0.0000024937, -0.0000024858,0.0000024815,0.0000024790,0.0000024780,0.0000024785, -0.0000024804,0.0000024831,0.0000024850,0.0000024851,0.0000024826, -0.0000024780,0.0000024730,0.0000024684,0.0000024635,0.0000024574, -0.0000024499,0.0000024432,0.0000024377,0.0000024254,0.0000023989, -0.0000023709,0.0000023588,0.0000023588,0.0000023597,0.0000023603, -0.0000023648,0.0000023729,0.0000023758,0.0000023728,0.0000023700, -0.0000023741,0.0000023866,0.0000024016,0.0000024132,0.0000024222, -0.0000024317,0.0000024416,0.0000024495,0.0000024557,0.0000024627, -0.0000024720,0.0000024822,0.0000024913,0.0000024985,0.0000025048, -0.0000025104,0.0000025158,0.0000025235,0.0000025360,0.0000025497, -0.0000025571,0.0000025569,0.0000025558,0.0000025577,0.0000025626, -0.0000025646,0.0000025619,0.0000025562,0.0000025505,0.0000025470, -0.0000025468,0.0000025498,0.0000025560,0.0000025638,0.0000025712, -0.0000025777,0.0000025838,0.0000025896,0.0000025937,0.0000025949, -0.0000025937,0.0000025911,0.0000025885,0.0000025867,0.0000025858, -0.0000025841,0.0000025807,0.0000025767,0.0000025722,0.0000025667, -0.0000025612,0.0000025538,0.0000025424,0.0000025284,0.0000025150, -0.0000025053,0.0000025022,0.0000025042,0.0000025097,0.0000025146, -0.0000025169,0.0000025162,0.0000025126,0.0000025092,0.0000025082, -0.0000025080,0.0000025067,0.0000025034,0.0000024984,0.0000024926, -0.0000024867,0.0000024809,0.0000024758,0.0000024720,0.0000024693, -0.0000024679,0.0000024692,0.0000024746,0.0000024848,0.0000024952, -0.0000024967,0.0000024857,0.0000024739,0.0000024723,0.0000024780, -0.0000024872,0.0000024966,0.0000025025,0.0000025040,0.0000025039, -0.0000025061,0.0000025117,0.0000025172,0.0000025201,0.0000025202, -0.0000025178,0.0000025132,0.0000025080,0.0000025053,0.0000025070, -0.0000025106,0.0000025122,0.0000025135,0.0000025183,0.0000025262, -0.0000025337,0.0000025393,0.0000025417,0.0000025399,0.0000025326, -0.0000025249,0.0000025213,0.0000025160,0.0000025058,0.0000024971, -0.0000024969,0.0000025041,0.0000025116,0.0000025188,0.0000025323, -0.0000025433,0.0000025428,0.0000025377,0.0000025368,0.0000025409, -0.0000025438,0.0000025411,0.0000025339,0.0000025269,0.0000025264, -0.0000025287,0.0000025324,0.0000025365,0.0000025392,0.0000025396, -0.0000025384,0.0000025381,0.0000025401,0.0000025410,0.0000025389, -0.0000025344,0.0000025273,0.0000025172,0.0000025035,0.0000024883, -0.0000024753,0.0000024660,0.0000024592,0.0000024524,0.0000024443, -0.0000024354,0.0000024275,0.0000024222,0.0000024194,0.0000024176, -0.0000024154,0.0000024120,0.0000024080,0.0000024037,0.0000023991, -0.0000023955,0.0000023934,0.0000023939,0.0000023962,0.0000023977, -0.0000023961,0.0000023907,0.0000023842,0.0000023770,0.0000023712, -0.0000023670,0.0000023638,0.0000023606,0.0000023569,0.0000023532, -0.0000023498,0.0000023459,0.0000023416,0.0000023379,0.0000023347, -0.0000023310,0.0000023271,0.0000023240,0.0000023218,0.0000023194, -0.0000023158,0.0000023104,0.0000023038,0.0000022971,0.0000022926, -0.0000022903,0.0000022890,0.0000022887,0.0000022903,0.0000022941, -0.0000022976,0.0000022984,0.0000022968,0.0000022934,0.0000022917, -0.0000022929,0.0000022965,0.0000023004,0.0000023025,0.0000023015, -0.0000022961,0.0000022897,0.0000022879,0.0000022908,0.0000022943, -0.0000022927,0.0000022882,0.0000022865,0.0000022872,0.0000022904, -0.0000022933,0.0000022951,0.0000022967,0.0000022991,0.0000023020, -0.0000023055,0.0000023082,0.0000023082,0.0000023062,0.0000023027, -0.0000022995,0.0000022962,0.0000022909,0.0000022851,0.0000022786, -0.0000022719,0.0000022661,0.0000022625,0.0000022616,0.0000022667, -0.0000022769,0.0000022901,0.0000023052,0.0000023220,0.0000023402, -0.0000023585,0.0000023729,0.0000023773,0.0000023739,0.0000023671, -0.0000023682,0.0000023856,0.0000024097,0.0000024197,0.0000024225, -0.0000024314,0.0000024439,0.0000024654,0.0000024992,0.0000025315, -0.0000025466,0.0000025572,0.0000025954,0.0000026393,0.0000026518, -0.0000026428,0.0000026263,0.0000026142,0.0000026050,0.0000025628, -0.0000025143,0.0000024852,0.0000024679,0.0000024472,0.0000024065, -0.0000023812,0.0000023832,0.0000023991,0.0000024106,0.0000024158, -0.0000024169,0.0000024151,0.0000024329,0.0000024766,0.0000024900, -0.0000024907,0.0000025551,0.0000026007,0.0000026005,0.0000025979, -0.0000025429,0.0000024747,0.0000024626,0.0000024707,0.0000024741, -0.0000024609,0.0000024284,0.0000023987,0.0000023883,0.0000023900, -0.0000023943,0.0000023996,0.0000024060,0.0000024109,0.0000024125, -0.0000024131,0.0000024135,0.0000024146,0.0000024170,0.0000024197, -0.0000024235,0.0000024282,0.0000024366,0.0000024499,0.0000024588, -0.0000024602,0.0000024593,0.0000024550,0.0000024496,0.0000024487, -0.0000024509,0.0000024538,0.0000024560,0.0000024582,0.0000024616, -0.0000024647,0.0000024686,0.0000024720,0.0000024736,0.0000024727, -0.0000024691,0.0000024630,0.0000024574,0.0000024563,0.0000024592, -0.0000024638,0.0000024688,0.0000024733,0.0000024751,0.0000024720, -0.0000024651,0.0000024595,0.0000024561,0.0000024525,0.0000024510, -0.0000024538,0.0000024590,0.0000024638,0.0000024677,0.0000024709, -0.0000024740,0.0000024767,0.0000024799,0.0000024838,0.0000024876, -0.0000024904,0.0000024920,0.0000024928,0.0000024930,0.0000024919, -0.0000024886,0.0000024863,0.0000024905,0.0000025026,0.0000025163, -0.0000025273,0.0000025335,0.0000025382,0.0000025443,0.0000025581, -0.0000025778,0.0000025905,0.0000025987,0.0000026089,0.0000026151, -0.0000026128,0.0000026024,0.0000025865,0.0000025721,0.0000025691, -0.0000025758,0.0000025826,0.0000025829,0.0000025808,0.0000025800, -0.0000025800,0.0000025784,0.0000025744,0.0000025695,0.0000025678, -0.0000025717,0.0000025767,0.0000025788,0.0000025808,0.0000025840, -0.0000025853,0.0000025834,0.0000025776,0.0000025700,0.0000025628, -0.0000025573,0.0000025537,0.0000025511,0.0000025506,0.0000025527, -0.0000025567,0.0000025562,0.0000025505,0.0000025438,0.0000025416, -0.0000025376,0.0000025232,0.0000025030,0.0000024880,0.0000024816, -0.0000024769,0.0000024724,0.0000024667,0.0000024609,0.0000024553, -0.0000024495,0.0000024437,0.0000024389,0.0000024341,0.0000024309, -0.0000024290,0.0000024287,0.0000024294,0.0000024307,0.0000024308, -0.0000024307,0.0000024317,0.0000024340,0.0000024365,0.0000024391, -0.0000024419,0.0000024451,0.0000024484,0.0000024526,0.0000024577, -0.0000024629,0.0000024654,0.0000024634,0.0000024542,0.0000024427, -0.0000024340,0.0000024223,0.0000024043,0.0000023915,0.0000023886, -0.0000023777,0.0000023416,0.0000022954,0.0000022672,0.0000022561, -0.0000022453,0.0000022331,0.0000022251,0.0000022214,0.0000022195, -0.0000022156,0.0000022068,0.0000022023,0.0000022131,0.0000022346, -0.0000022489,0.0000022555,0.0000022687,0.0000022935,0.0000023198, -0.0000023365,0.0000023439,0.0000023562,0.0000023850,0.0000024159, -0.0000024322,0.0000024469,0.0000024691,0.0000024853,0.0000024901, -0.0000024918,0.0000024906,0.0000024826,0.0000024713,0.0000024616, -0.0000024556,0.0000024520,0.0000024474,0.0000024421,0.0000024386, -0.0000024359,0.0000024327,0.0000024319,0.0000024399,0.0000024592, -0.0000024780,0.0000024840,0.0000024826,0.0000024813,0.0000024865, -0.0000024938,0.0000024972,0.0000024975,0.0000024993,0.0000025064, -0.0000025139,0.0000025152,0.0000025108,0.0000025075,0.0000025094, -0.0000025170,0.0000025260,0.0000025310,0.0000025318,0.0000025315, -0.0000025323,0.0000025359,0.0000025420,0.0000025472,0.0000025489, -0.0000025486,0.0000025478,0.0000025466,0.0000025466,0.0000025482, -0.0000025486,0.0000025456,0.0000025396,0.0000025348,0.0000025336, -0.0000025355,0.0000025399,0.0000025440,0.0000025455,0.0000025453, -0.0000025443,0.0000025432,0.0000025422,0.0000025422,0.0000025440, -0.0000025479,0.0000025521,0.0000025545,0.0000025553,0.0000025567, -0.0000025583,0.0000025572,0.0000025528,0.0000025491,0.0000025494, -0.0000025533,0.0000025550,0.0000025533,0.0000025534,0.0000025567, -0.0000025594,0.0000025623,0.0000025681,0.0000025764,0.0000025836, -0.0000025897,0.0000025959,0.0000026033,0.0000026169,0.0000026351, -0.0000026450,0.0000026439,0.0000026383,0.0000026294,0.0000026216, -0.0000026230,0.0000026343,0.0000026472,0.0000026522,0.0000026488, -0.0000026396,0.0000026298,0.0000026192,0.0000026048,0.0000025854, -0.0000025661,0.0000025554,0.0000025542,0.0000025581,0.0000025649, -0.0000025725,0.0000025793,0.0000025822,0.0000025810,0.0000025768, -0.0000025735,0.0000025720,0.0000025719,0.0000025741,0.0000025780, -0.0000025820,0.0000025868,0.0000025927,0.0000025977,0.0000026005, -0.0000026010,0.0000025993,0.0000025966,0.0000025948,0.0000025939, -0.0000025928,0.0000025910,0.0000025887,0.0000025866,0.0000025854, -0.0000025860,0.0000025885,0.0000025929,0.0000025979,0.0000026014, -0.0000026038,0.0000026074,0.0000026133,0.0000026207,0.0000026280, -0.0000026331,0.0000026345,0.0000026335,0.0000026298,0.0000026232, -0.0000026134,0.0000025993,0.0000025823,0.0000025664,0.0000025547, -0.0000025471,0.0000025436,0.0000025473,0.0000025587,0.0000025690, -0.0000025760,0.0000025955,0.0000026287,0.0000026495,0.0000026531, -0.0000026558,0.0000026602,0.0000026646,0.0000026679,0.0000026690, -0.0000026696,0.0000026736,0.0000026810,0.0000026865,0.0000026854, -0.0000026791,0.0000026690,0.0000026555,0.0000026401,0.0000026266, -0.0000026165,0.0000026072,0.0000025955,0.0000025790,0.0000025539, -0.0000025277,0.0000025131,0.0000025115,0.0000025160,0.0000025234, -0.0000025257,0.0000025176,0.0000025010,0.0000024856,0.0000024730, -0.0000024620,0.0000024537,0.0000024472,0.0000024392,0.0000024279, -0.0000024129,0.0000023960,0.0000023806,0.0000023689,0.0000023628, -0.0000023593,0.0000023546,0.0000023496,0.0000023469,0.0000023465, -0.0000023478,0.0000023512,0.0000023581,0.0000023675,0.0000023758, -0.0000023818,0.0000023864,0.0000023892,0.0000023891,0.0000023859, -0.0000023796,0.0000023711,0.0000023601,0.0000023483,0.0000023390, -0.0000023345,0.0000023355,0.0000023365,0.0000023361,0.0000023357, -0.0000023384,0.0000023460,0.0000023562,0.0000023644,0.0000023700, -0.0000023740,0.0000023777,0.0000023798,0.0000023789,0.0000023753, -0.0000023755,0.0000023814,0.0000024032,0.0000024360,0.0000024576, -0.0000024553,0.0000024577,0.0000025065,0.0000025670,0.0000025996, -0.0000026094,0.0000026142,0.0000026269,0.0000026393,0.0000026420, -0.0000026392,0.0000026369,0.0000026381,0.0000026409,0.0000026434, -0.0000026454,0.0000026456,0.0000026436,0.0000026405,0.0000026359, -0.0000026298,0.0000026223,0.0000026138,0.0000026052,0.0000025968, -0.0000025892,0.0000025834,0.0000025790,0.0000025755,0.0000025730, -0.0000025698,0.0000025627,0.0000025488,0.0000025251,0.0000024926, -0.0000024586,0.0000024328,0.0000024191,0.0000024110,0.0000024011, -0.0000023895,0.0000023783,0.0000023665,0.0000023529,0.0000023384, -0.0000023262,0.0000023180,0.0000023085,0.0000022961,0.0000022838, -0.0000022759,0.0000022739,0.0000022727,0.0000022688,0.0000022661, -0.0000022652,0.0000022632,0.0000022597,0.0000022555,0.0000022517, -0.0000022508,0.0000022551,0.0000022615,0.0000022649,0.0000022656, -0.0000022664,0.0000022685,0.0000022702,0.0000022700,0.0000022685, -0.0000022679,0.0000022681,0.0000022687,0.0000022693,0.0000022695, -0.0000022698,0.0000022723,0.0000022773,0.0000022815,0.0000022838, -0.0000022861,0.0000022881,0.0000022857,0.0000022794,0.0000022727, -0.0000022663,0.0000022599,0.0000022547,0.0000022513,0.0000022487, -0.0000022470,0.0000022463,0.0000022464,0.0000022463,0.0000022445, -0.0000022403,0.0000022339,0.0000022269,0.0000022205,0.0000022150, -0.0000022097,0.0000022047,0.0000022007,0.0000021979,0.0000021964, -0.0000021958,0.0000021954,0.0000021946,0.0000021928,0.0000021903, -0.0000021878,0.0000021860,0.0000021860,0.0000021888,0.0000021942, -0.0000022008,0.0000022067,0.0000022107,0.0000022128,0.0000022136, -0.0000022133,0.0000022122,0.0000022112,0.0000022105,0.0000022106, -0.0000022112,0.0000022117,0.0000022117,0.0000022112,0.0000022104, -0.0000022100,0.0000022102,0.0000022103,0.0000022100,0.0000022091, -0.0000022077,0.0000022065,0.0000022061,0.0000022067,0.0000022077, -0.0000022083,0.0000022088,0.0000022096,0.0000022102,0.0000022100, -0.0000022077,0.0000022035,0.0000021997,0.0000021980,0.0000021986, -0.0000021986,0.0000021963,0.0000021954,0.0000021997,0.0000022116, -0.0000022411,0.0000022803,0.0000023122,0.0000023260,0.0000023312, -0.0000023377,0.0000023388,0.0000023355,0.0000023327,0.0000023322, -0.0000023337,0.0000023365,0.0000023494,0.0000023733,0.0000023912, -0.0000023964,0.0000023952,0.0000023913,0.0000023865,0.0000023821, -0.0000023784,0.0000023752,0.0000023730,0.0000023737,0.0000023788, -0.0000023887,0.0000024017,0.0000024148,0.0000024272,0.0000024414, -0.0000024604,0.0000024816,0.0000024997,0.0000025075,0.0000025063, -0.0000024929,0.0000024682,0.0000024440,0.0000024268,0.0000024150, -0.0000024061,0.0000023996,0.0000023959,0.0000023939,0.0000023941, -0.0000023952,0.0000023993,0.0000024037,0.0000024070,0.0000024083, -0.0000024085,0.0000024080,0.0000024064,0.0000024042,0.0000024017, -0.0000023984,0.0000023967,0.0000023961,0.0000023964,0.0000023986, -0.0000024017,0.0000024049,0.0000024060,0.0000024050,0.0000024035, -0.0000024035,0.0000024046,0.0000024045,0.0000023997,0.0000023921, -0.0000023873,0.0000023870,0.0000023881,0.0000023874,0.0000023796, -0.0000023668,0.0000023587,0.0000023577,0.0000023609,0.0000023661, -0.0000023705,0.0000023737,0.0000023760,0.0000023770,0.0000023746, -0.0000023690,0.0000023631,0.0000023601,0.0000023595,0.0000023575, -0.0000023518,0.0000023459,0.0000023450,0.0000023490,0.0000023544, -0.0000023574,0.0000023576,0.0000023562,0.0000023545,0.0000023526, -0.0000023496,0.0000023458,0.0000023438,0.0000023436,0.0000023429, -0.0000023427,0.0000023462,0.0000023503,0.0000023514,0.0000023527, -0.0000023562,0.0000023609,0.0000023656,0.0000023702,0.0000023751, -0.0000023806,0.0000023857,0.0000023895,0.0000023915,0.0000023914, -0.0000023910,0.0000023917,0.0000023933,0.0000023956,0.0000023986, -0.0000024005,0.0000024007,0.0000023983,0.0000023934,0.0000023862, -0.0000023775,0.0000023706,0.0000023693,0.0000023746,0.0000023825, -0.0000023871,0.0000023883,0.0000023847,0.0000023770,0.0000023730, -0.0000023730,0.0000023755,0.0000023772,0.0000023740,0.0000023661, -0.0000023617,0.0000023619,0.0000023680,0.0000023794,0.0000023943, -0.0000024101,0.0000024226,0.0000024324,0.0000024420,0.0000024513, -0.0000024597,0.0000024673,0.0000024748,0.0000024833,0.0000024906, -0.0000024957,0.0000024984,0.0000024984,0.0000024964,0.0000024927, -0.0000024883,0.0000024824,0.0000024755,0.0000024693,0.0000024648, -0.0000024617,0.0000024587,0.0000024560,0.0000024545,0.0000024542, -0.0000024547,0.0000024563,0.0000024579,0.0000024598,0.0000024664, -0.0000024808,0.0000024965,0.0000025074,0.0000025129,0.0000025123, -0.0000025101,0.0000025129,0.0000025191,0.0000025251,0.0000025338, -0.0000025429,0.0000025464,0.0000025438,0.0000025347,0.0000025236, -0.0000025124,0.0000025008,0.0000024916,0.0000024885,0.0000024892, -0.0000024925,0.0000025006,0.0000025080,0.0000025076,0.0000025016, -0.0000024979,0.0000024942,0.0000024862,0.0000024801,0.0000024787, -0.0000024722,0.0000024561,0.0000024414,0.0000024359,0.0000024356, -0.0000024356,0.0000024349,0.0000024327,0.0000024302,0.0000024289, -0.0000024285,0.0000024277,0.0000024265,0.0000024263,0.0000024268, -0.0000024280,0.0000024317,0.0000024401,0.0000024518,0.0000024629, -0.0000024699,0.0000024725,0.0000024724,0.0000024705,0.0000024677, -0.0000024642,0.0000024610,0.0000024596,0.0000024596,0.0000024595, -0.0000024576,0.0000024542,0.0000024526,0.0000024538,0.0000024580, -0.0000024624,0.0000024651,0.0000024656,0.0000024655,0.0000024650, -0.0000024641,0.0000024638,0.0000024654,0.0000024685,0.0000024721, -0.0000024760,0.0000024807,0.0000024872,0.0000024948,0.0000025016, -0.0000025060,0.0000025087,0.0000025102,0.0000025113,0.0000025123, -0.0000025134,0.0000025149,0.0000025175,0.0000025217,0.0000025266, -0.0000025306,0.0000025331,0.0000025334,0.0000025312,0.0000025237, -0.0000025108,0.0000024963,0.0000024856,0.0000024806,0.0000024785, -0.0000024784,0.0000024799,0.0000024825,0.0000024855,0.0000024874, -0.0000024870,0.0000024834,0.0000024777,0.0000024717,0.0000024666, -0.0000024621,0.0000024571,0.0000024507,0.0000024442,0.0000024385, -0.0000024263,0.0000024000,0.0000023725,0.0000023608,0.0000023613, -0.0000023620,0.0000023618,0.0000023655,0.0000023719,0.0000023732, -0.0000023680,0.0000023637,0.0000023661,0.0000023764,0.0000023916, -0.0000024055,0.0000024163,0.0000024258,0.0000024348,0.0000024430, -0.0000024511,0.0000024604,0.0000024704,0.0000024803,0.0000024893, -0.0000024967,0.0000025022,0.0000025063,0.0000025098,0.0000025141, -0.0000025212,0.0000025327,0.0000025454,0.0000025521,0.0000025510, -0.0000025477,0.0000025473,0.0000025505,0.0000025552,0.0000025571, -0.0000025559,0.0000025533,0.0000025514,0.0000025518,0.0000025553, -0.0000025620,0.0000025698,0.0000025773,0.0000025847,0.0000025919, -0.0000025968,0.0000025982,0.0000025965,0.0000025927,0.0000025896, -0.0000025884,0.0000025886,0.0000025873,0.0000025832,0.0000025781, -0.0000025715,0.0000025620,0.0000025514,0.0000025409,0.0000025304, -0.0000025207,0.0000025124,0.0000025060,0.0000025048,0.0000025091, -0.0000025154,0.0000025206,0.0000025241,0.0000025237,0.0000025200, -0.0000025152,0.0000025108,0.0000025077,0.0000025054,0.0000025023, -0.0000024980,0.0000024932,0.0000024879,0.0000024823,0.0000024775, -0.0000024734,0.0000024696,0.0000024644,0.0000024588,0.0000024550, -0.0000024560,0.0000024685,0.0000024867,0.0000024927,0.0000024825, -0.0000024715,0.0000024716,0.0000024800,0.0000024901,0.0000024988, -0.0000025035,0.0000025042,0.0000025054,0.0000025097,0.0000025143, -0.0000025172,0.0000025173,0.0000025147,0.0000025100,0.0000025041, -0.0000024987,0.0000024977,0.0000025011,0.0000025043,0.0000025058, -0.0000025083,0.0000025160,0.0000025261,0.0000025341,0.0000025402, -0.0000025426,0.0000025395,0.0000025325,0.0000025270,0.0000025229, -0.0000025144,0.0000025032,0.0000024973,0.0000025000,0.0000025080, -0.0000025133,0.0000025207,0.0000025342,0.0000025423,0.0000025414, -0.0000025360,0.0000025355,0.0000025386,0.0000025402,0.0000025374, -0.0000025321,0.0000025284,0.0000025286,0.0000025302,0.0000025335, -0.0000025371,0.0000025391,0.0000025384,0.0000025325,0.0000025224, -0.0000025130,0.0000025065,0.0000025026,0.0000025001,0.0000024965, -0.0000024893,0.0000024780,0.0000024647,0.0000024522,0.0000024424, -0.0000024354,0.0000024282,0.0000024195,0.0000024117,0.0000024069, -0.0000024047,0.0000024043,0.0000024043,0.0000024039,0.0000024036, -0.0000024035,0.0000024032,0.0000024031,0.0000024030,0.0000024024, -0.0000024014,0.0000023989,0.0000023940,0.0000023854,0.0000023760, -0.0000023679,0.0000023619,0.0000023578,0.0000023543,0.0000023510, -0.0000023480,0.0000023452,0.0000023429,0.0000023404,0.0000023370, -0.0000023330,0.0000023290,0.0000023247,0.0000023203,0.0000023172, -0.0000023162,0.0000023161,0.0000023143,0.0000023089,0.0000023009, -0.0000022929,0.0000022854,0.0000022797,0.0000022770,0.0000022765, -0.0000022775,0.0000022811,0.0000022858,0.0000022898,0.0000022919, -0.0000022915,0.0000022888,0.0000022864,0.0000022868,0.0000022909, -0.0000022959,0.0000022993,0.0000022994,0.0000022950,0.0000022881, -0.0000022836,0.0000022845,0.0000022895,0.0000022917,0.0000022897, -0.0000022877,0.0000022882,0.0000022909,0.0000022940,0.0000022948, -0.0000022949,0.0000022930,0.0000022925,0.0000022939,0.0000022966, -0.0000022991,0.0000023000,0.0000023003,0.0000023014,0.0000023001, -0.0000022970,0.0000022921,0.0000022849,0.0000022768,0.0000022690, -0.0000022619,0.0000022568,0.0000022554,0.0000022608,0.0000022715, -0.0000022870,0.0000023064,0.0000023266,0.0000023463,0.0000023653, -0.0000023772,0.0000023775,0.0000023706,0.0000023667,0.0000023743, -0.0000023968,0.0000024129,0.0000024161,0.0000024225,0.0000024345, -0.0000024500,0.0000024776,0.0000025120,0.0000025382,0.0000025476, -0.0000025709,0.0000026195,0.0000026524,0.0000026508,0.0000026347, -0.0000026205,0.0000026113,0.0000025753,0.0000025244,0.0000024926, -0.0000024742,0.0000024539,0.0000024127,0.0000023805,0.0000023788, -0.0000023959,0.0000024125,0.0000024194,0.0000024217,0.0000024189, -0.0000024237,0.0000024606,0.0000024914,0.0000024846,0.0000025280, -0.0000025890,0.0000026005,0.0000026004,0.0000025583,0.0000024842, -0.0000024646,0.0000024720,0.0000024750,0.0000024590,0.0000024223, -0.0000023960,0.0000023914,0.0000023963,0.0000024009,0.0000024047, -0.0000024089,0.0000024120,0.0000024124,0.0000024120,0.0000024120, -0.0000024134,0.0000024157,0.0000024191,0.0000024235,0.0000024289, -0.0000024393,0.0000024526,0.0000024581,0.0000024583,0.0000024574, -0.0000024536,0.0000024488,0.0000024472,0.0000024480,0.0000024493, -0.0000024501,0.0000024518,0.0000024546,0.0000024580,0.0000024624, -0.0000024657,0.0000024666,0.0000024641,0.0000024591,0.0000024527, -0.0000024492,0.0000024511,0.0000024558,0.0000024611,0.0000024659, -0.0000024702,0.0000024722,0.0000024704,0.0000024641,0.0000024576, -0.0000024547,0.0000024529,0.0000024523,0.0000024542,0.0000024588, -0.0000024642,0.0000024679,0.0000024697,0.0000024700,0.0000024697, -0.0000024705,0.0000024736,0.0000024787,0.0000024846,0.0000024891, -0.0000024906,0.0000024901,0.0000024881,0.0000024842,0.0000024800, -0.0000024804,0.0000024903,0.0000025071,0.0000025226,0.0000025316, -0.0000025360,0.0000025408,0.0000025509,0.0000025702,0.0000025862, -0.0000025920,0.0000025981,0.0000026051,0.0000026053,0.0000025950, -0.0000025774,0.0000025640,0.0000025640,0.0000025737,0.0000025797, -0.0000025788,0.0000025757,0.0000025750,0.0000025757,0.0000025755, -0.0000025732,0.0000025688,0.0000025647,0.0000025649,0.0000025689, -0.0000025733,0.0000025770,0.0000025814,0.0000025842,0.0000025835, -0.0000025795,0.0000025736,0.0000025680,0.0000025629,0.0000025582, -0.0000025544,0.0000025540,0.0000025568,0.0000025588,0.0000025546, -0.0000025475,0.0000025446,0.0000025423,0.0000025303,0.0000025097, -0.0000024939,0.0000024879,0.0000024852,0.0000024798,0.0000024723, -0.0000024651,0.0000024602,0.0000024573,0.0000024543,0.0000024499, -0.0000024442,0.0000024376,0.0000024316,0.0000024264,0.0000024230, -0.0000024227,0.0000024243,0.0000024266,0.0000024278,0.0000024284, -0.0000024303,0.0000024333,0.0000024364,0.0000024399,0.0000024439, -0.0000024489,0.0000024541,0.0000024589,0.0000024619,0.0000024609, -0.0000024539,0.0000024446,0.0000024373,0.0000024277,0.0000024100, -0.0000023930,0.0000023876,0.0000023859,0.0000023661,0.0000023226, -0.0000022811,0.0000022617,0.0000022529,0.0000022413,0.0000022307, -0.0000022241,0.0000022195,0.0000022168,0.0000022144,0.0000022077, -0.0000022008,0.0000022065,0.0000022263,0.0000022443,0.0000022526, -0.0000022608,0.0000022784,0.0000023032,0.0000023248,0.0000023365, -0.0000023425,0.0000023566,0.0000023868,0.0000024168,0.0000024317, -0.0000024453,0.0000024668,0.0000024821,0.0000024851,0.0000024851, -0.0000024813,0.0000024705,0.0000024592,0.0000024537,0.0000024507, -0.0000024457,0.0000024398,0.0000024363,0.0000024349,0.0000024328, -0.0000024313,0.0000024345,0.0000024499,0.0000024711,0.0000024839, -0.0000024851,0.0000024824,0.0000024831,0.0000024886,0.0000024925, -0.0000024922,0.0000024916,0.0000024950,0.0000025049,0.0000025130, -0.0000025127,0.0000025079,0.0000025066,0.0000025125,0.0000025231, -0.0000025313,0.0000025336,0.0000025334,0.0000025329,0.0000025335, -0.0000025368,0.0000025420,0.0000025451,0.0000025453,0.0000025452, -0.0000025451,0.0000025448,0.0000025448,0.0000025450,0.0000025430, -0.0000025378,0.0000025323,0.0000025300,0.0000025306,0.0000025336, -0.0000025372,0.0000025390,0.0000025391,0.0000025380,0.0000025367, -0.0000025361,0.0000025364,0.0000025384,0.0000025420,0.0000025467, -0.0000025510,0.0000025532,0.0000025533,0.0000025537,0.0000025559, -0.0000025568,0.0000025537,0.0000025484,0.0000025461,0.0000025481, -0.0000025491,0.0000025462,0.0000025461,0.0000025514,0.0000025558, -0.0000025579,0.0000025622,0.0000025708,0.0000025790,0.0000025850, -0.0000025907,0.0000025970,0.0000026077,0.0000026246,0.0000026393, -0.0000026430,0.0000026398,0.0000026323,0.0000026219,0.0000026154, -0.0000026180,0.0000026278,0.0000026355,0.0000026370,0.0000026315, -0.0000026207,0.0000026063,0.0000025877,0.0000025673,0.0000025533, -0.0000025507,0.0000025542,0.0000025603,0.0000025676,0.0000025741, -0.0000025783,0.0000025787,0.0000025760,0.0000025716,0.0000025682, -0.0000025666,0.0000025678,0.0000025721,0.0000025765,0.0000025814, -0.0000025870,0.0000025919,0.0000025950,0.0000025943,0.0000025911, -0.0000025857,0.0000025801,0.0000025764,0.0000025747,0.0000025740, -0.0000025733,0.0000025721,0.0000025701,0.0000025676,0.0000025653, -0.0000025640,0.0000025640,0.0000025642,0.0000025639,0.0000025649, -0.0000025701,0.0000025796,0.0000025906,0.0000025996,0.0000026043, -0.0000026047,0.0000026029,0.0000025986,0.0000025915,0.0000025808, -0.0000025665,0.0000025510,0.0000025379,0.0000025286,0.0000025241, -0.0000025254,0.0000025379,0.0000025547,0.0000025678,0.0000025856, -0.0000026181,0.0000026447,0.0000026513,0.0000026528,0.0000026570, -0.0000026624,0.0000026677,0.0000026712,0.0000026730,0.0000026759, -0.0000026814,0.0000026863,0.0000026868,0.0000026814,0.0000026733, -0.0000026626,0.0000026485,0.0000026338,0.0000026224,0.0000026135, -0.0000026030,0.0000025885,0.0000025679,0.0000025439,0.0000025266, -0.0000025197,0.0000025198,0.0000025252,0.0000025306,0.0000025281, -0.0000025146,0.0000024974,0.0000024801,0.0000024634,0.0000024533, -0.0000024503,0.0000024480,0.0000024406,0.0000024273,0.0000024092, -0.0000023911,0.0000023767,0.0000023670,0.0000023616,0.0000023581, -0.0000023542,0.0000023500,0.0000023467,0.0000023441,0.0000023429, -0.0000023429,0.0000023448,0.0000023507,0.0000023587,0.0000023668, -0.0000023743,0.0000023802,0.0000023833,0.0000023832,0.0000023794, -0.0000023722,0.0000023617,0.0000023499,0.0000023387,0.0000023306, -0.0000023286,0.0000023291,0.0000023287,0.0000023273,0.0000023282, -0.0000023332,0.0000023418,0.0000023497,0.0000023549,0.0000023584, -0.0000023632,0.0000023695,0.0000023733,0.0000023729,0.0000023721, -0.0000023748,0.0000023877,0.0000024165,0.0000024451,0.0000024545, -0.0000024516,0.0000024676,0.0000025235,0.0000025740,0.0000025959, -0.0000026022,0.0000026065,0.0000026153,0.0000026251,0.0000026291, -0.0000026281,0.0000026271,0.0000026273,0.0000026283,0.0000026291, -0.0000026292,0.0000026276,0.0000026243,0.0000026204,0.0000026162, -0.0000026119,0.0000026075,0.0000026027,0.0000025971,0.0000025907, -0.0000025841,0.0000025767,0.0000025683,0.0000025594,0.0000025487, -0.0000025322,0.0000025090,0.0000024805,0.0000024514,0.0000024294, -0.0000024182,0.0000024131,0.0000024076,0.0000023995,0.0000023902, -0.0000023797,0.0000023665,0.0000023512,0.0000023370,0.0000023269, -0.0000023198,0.0000023111,0.0000022989,0.0000022863,0.0000022763, -0.0000022710,0.0000022698,0.0000022686,0.0000022666,0.0000022658, -0.0000022650,0.0000022625,0.0000022587,0.0000022543,0.0000022503, -0.0000022495,0.0000022537,0.0000022590,0.0000022609,0.0000022617, -0.0000022637,0.0000022658,0.0000022666,0.0000022661,0.0000022660, -0.0000022662,0.0000022660,0.0000022664,0.0000022669,0.0000022666, -0.0000022664,0.0000022687,0.0000022738,0.0000022780,0.0000022798, -0.0000022818,0.0000022835,0.0000022812,0.0000022757,0.0000022698, -0.0000022631,0.0000022561,0.0000022505,0.0000022473,0.0000022454, -0.0000022441,0.0000022429,0.0000022412,0.0000022387,0.0000022351, -0.0000022310,0.0000022260,0.0000022202,0.0000022147,0.0000022094, -0.0000022038,0.0000021982,0.0000021934,0.0000021897,0.0000021870, -0.0000021851,0.0000021838,0.0000021830,0.0000021821,0.0000021804, -0.0000021780,0.0000021758,0.0000021751,0.0000021761,0.0000021793, -0.0000021844,0.0000021906,0.0000021965,0.0000022009,0.0000022036, -0.0000022049,0.0000022048,0.0000022039,0.0000022032,0.0000022034, -0.0000022040,0.0000022048,0.0000022051,0.0000022051,0.0000022052, -0.0000022051,0.0000022043,0.0000022032,0.0000022025,0.0000022021, -0.0000022018,0.0000022015,0.0000022016,0.0000022026,0.0000022042, -0.0000022067,0.0000022103,0.0000022147,0.0000022179,0.0000022184, -0.0000022160,0.0000022115,0.0000022063,0.0000022018,0.0000021994, -0.0000021984,0.0000021950,0.0000021919,0.0000021957,0.0000022073, -0.0000022358,0.0000022751,0.0000023081,0.0000023232,0.0000023283, -0.0000023344,0.0000023357,0.0000023325,0.0000023286,0.0000023270, -0.0000023286,0.0000023319,0.0000023415,0.0000023623,0.0000023825, -0.0000023906,0.0000023904,0.0000023871,0.0000023830,0.0000023788, -0.0000023749,0.0000023718,0.0000023698,0.0000023689,0.0000023691, -0.0000023708,0.0000023755,0.0000023844,0.0000023961,0.0000024078, -0.0000024194,0.0000024344,0.0000024550,0.0000024778,0.0000024948, -0.0000025010,0.0000024952,0.0000024776,0.0000024541,0.0000024347, -0.0000024211,0.0000024112,0.0000024036,0.0000023984,0.0000023958, -0.0000023961,0.0000023986,0.0000024019,0.0000024048,0.0000024064, -0.0000024072,0.0000024070,0.0000024055,0.0000024032,0.0000024008, -0.0000023998,0.0000023975,0.0000023963,0.0000023963,0.0000023979, -0.0000024010,0.0000024056,0.0000024100,0.0000024115,0.0000024098, -0.0000024092,0.0000024098,0.0000024087,0.0000024013,0.0000023927, -0.0000023886,0.0000023886,0.0000023883,0.0000023838,0.0000023721, -0.0000023600,0.0000023548,0.0000023557,0.0000023616,0.0000023679, -0.0000023718,0.0000023744,0.0000023755,0.0000023738,0.0000023687, -0.0000023624,0.0000023590,0.0000023593,0.0000023586,0.0000023533, -0.0000023467,0.0000023445,0.0000023494,0.0000023573,0.0000023620, -0.0000023627,0.0000023612,0.0000023593,0.0000023574,0.0000023557, -0.0000023544,0.0000023518,0.0000023473,0.0000023441,0.0000023438, -0.0000023431,0.0000023441,0.0000023480,0.0000023497,0.0000023501, -0.0000023542,0.0000023608,0.0000023671,0.0000023723,0.0000023766, -0.0000023808,0.0000023851,0.0000023889,0.0000023913,0.0000023913, -0.0000023906,0.0000023906,0.0000023913,0.0000023925,0.0000023947, -0.0000023968,0.0000023973,0.0000023953,0.0000023918,0.0000023881, -0.0000023821,0.0000023737,0.0000023692,0.0000023709,0.0000023783, -0.0000023857,0.0000023892,0.0000023886,0.0000023818,0.0000023746, -0.0000023717,0.0000023712,0.0000023734,0.0000023750,0.0000023711, -0.0000023648,0.0000023621,0.0000023627,0.0000023688,0.0000023798, -0.0000023934,0.0000024072,0.0000024184,0.0000024273,0.0000024363, -0.0000024460,0.0000024547,0.0000024615,0.0000024679,0.0000024741, -0.0000024802,0.0000024850,0.0000024878,0.0000024883,0.0000024867, -0.0000024839,0.0000024801,0.0000024749,0.0000024686,0.0000024626, -0.0000024577,0.0000024545,0.0000024521,0.0000024502,0.0000024492, -0.0000024489,0.0000024492,0.0000024512,0.0000024531,0.0000024541, -0.0000024601,0.0000024762,0.0000024937,0.0000025049,0.0000025083, -0.0000025061,0.0000025053,0.0000025100,0.0000025173,0.0000025258, -0.0000025369,0.0000025453,0.0000025462,0.0000025396,0.0000025283, -0.0000025169,0.0000025048,0.0000024933,0.0000024872,0.0000024871, -0.0000024890,0.0000024950,0.0000025033,0.0000025063,0.0000025012, -0.0000024946,0.0000024920,0.0000024880,0.0000024817,0.0000024782, -0.0000024723,0.0000024576,0.0000024426,0.0000024365,0.0000024364, -0.0000024361,0.0000024341,0.0000024310,0.0000024272,0.0000024239, -0.0000024223,0.0000024217,0.0000024207,0.0000024201,0.0000024211, -0.0000024228,0.0000024231,0.0000024237,0.0000024278,0.0000024368, -0.0000024483,0.0000024579,0.0000024636,0.0000024672,0.0000024688, -0.0000024682,0.0000024666,0.0000024636,0.0000024613,0.0000024598, -0.0000024579,0.0000024549,0.0000024528,0.0000024535,0.0000024565, -0.0000024599,0.0000024624,0.0000024636,0.0000024639,0.0000024639, -0.0000024633,0.0000024625,0.0000024628,0.0000024650,0.0000024690, -0.0000024740,0.0000024798,0.0000024865,0.0000024944,0.0000025013, -0.0000025054,0.0000025068,0.0000025068,0.0000025067,0.0000025075, -0.0000025097,0.0000025125,0.0000025153,0.0000025179,0.0000025209, -0.0000025254,0.0000025304,0.0000025337,0.0000025340,0.0000025322, -0.0000025263,0.0000025156,0.0000025017,0.0000024898,0.0000024833, -0.0000024810,0.0000024810,0.0000024822,0.0000024846,0.0000024872, -0.0000024888,0.0000024879,0.0000024833,0.0000024762,0.0000024691, -0.0000024637,0.0000024600,0.0000024558,0.0000024497,0.0000024432, -0.0000024377,0.0000024274,0.0000024042,0.0000023783,0.0000023670, -0.0000023668,0.0000023657,0.0000023638,0.0000023663,0.0000023707, -0.0000023702,0.0000023643,0.0000023592,0.0000023589,0.0000023657, -0.0000023809,0.0000023980,0.0000024115,0.0000024207,0.0000024287, -0.0000024373,0.0000024466,0.0000024567,0.0000024669,0.0000024766, -0.0000024856,0.0000024929,0.0000024971,0.0000024989,0.0000025008, -0.0000025037,0.0000025075,0.0000025142,0.0000025262,0.0000025395, -0.0000025468,0.0000025455,0.0000025405,0.0000025384,0.0000025419, -0.0000025503,0.0000025569,0.0000025587,0.0000025570,0.0000025551, -0.0000025557,0.0000025606,0.0000025685,0.0000025766,0.0000025845, -0.0000025924,0.0000025986,0.0000026014,0.0000026010,0.0000025973, -0.0000025933,0.0000025915,0.0000025911,0.0000025887,0.0000025832, -0.0000025757,0.0000025649,0.0000025509,0.0000025379,0.0000025288, -0.0000025232,0.0000025196,0.0000025155,0.0000025116,0.0000025113, -0.0000025154,0.0000025199,0.0000025229,0.0000025242,0.0000025222, -0.0000025149,0.0000025051,0.0000024956,0.0000024875,0.0000024817, -0.0000024777,0.0000024744,0.0000024712,0.0000024687,0.0000024666, -0.0000024643,0.0000024618,0.0000024598,0.0000024575,0.0000024533, -0.0000024475,0.0000024410,0.0000024402,0.0000024558,0.0000024811, -0.0000024901,0.0000024792,0.0000024688,0.0000024712,0.0000024819, -0.0000024921,0.0000025007,0.0000025049,0.0000025065,0.0000025095, -0.0000025127,0.0000025148,0.0000025152,0.0000025129,0.0000025078, -0.0000025013,0.0000024940,0.0000024893,0.0000024896,0.0000024928, -0.0000024957,0.0000024973,0.0000025026,0.0000025135,0.0000025252, -0.0000025348,0.0000025411,0.0000025418,0.0000025372,0.0000025319, -0.0000025280,0.0000025218,0.0000025112,0.0000025017,0.0000024993, -0.0000025039,0.0000025098,0.0000025139,0.0000025219,0.0000025349, -0.0000025415,0.0000025388,0.0000025332,0.0000025333,0.0000025358, -0.0000025351,0.0000025319,0.0000025286,0.0000025278,0.0000025280, -0.0000025296,0.0000025330,0.0000025363,0.0000025357,0.0000025285, -0.0000025138,0.0000024971,0.0000024853,0.0000024795,0.0000024765, -0.0000024732,0.0000024675,0.0000024579,0.0000024447,0.0000024300, -0.0000024166,0.0000024075,0.0000024023,0.0000023973,0.0000023919, -0.0000023892,0.0000023893,0.0000023906,0.0000023933,0.0000023963, -0.0000023989,0.0000024014,0.0000024040,0.0000024062,0.0000024064, -0.0000024038,0.0000023992,0.0000023925,0.0000023846,0.0000023766, -0.0000023697,0.0000023641,0.0000023593,0.0000023550,0.0000023512, -0.0000023476,0.0000023443,0.0000023419,0.0000023402,0.0000023387, -0.0000023365,0.0000023329,0.0000023274,0.0000023210,0.0000023158, -0.0000023130,0.0000023124,0.0000023124,0.0000023109,0.0000023058, -0.0000022978,0.0000022898,0.0000022823,0.0000022756,0.0000022709, -0.0000022688,0.0000022693,0.0000022718,0.0000022759,0.0000022805, -0.0000022844,0.0000022864,0.0000022863,0.0000022844,0.0000022815, -0.0000022807,0.0000022849,0.0000022917,0.0000022965,0.0000022973, -0.0000022940,0.0000022881,0.0000022827,0.0000022818,0.0000022856, -0.0000022906,0.0000022921,0.0000022909,0.0000022903,0.0000022921, -0.0000022949,0.0000022961,0.0000022950,0.0000022914,0.0000022876, -0.0000022854,0.0000022854,0.0000022869,0.0000022892,0.0000022927, -0.0000022967,0.0000022986,0.0000022982,0.0000022960,0.0000022892, -0.0000022808,0.0000022729,0.0000022643,0.0000022559,0.0000022509, -0.0000022523,0.0000022595,0.0000022730,0.0000022927,0.0000023144, -0.0000023349,0.0000023553,0.0000023729,0.0000023791,0.0000023750, -0.0000023670,0.0000023679,0.0000023838,0.0000024035,0.0000024110, -0.0000024154,0.0000024264,0.0000024389,0.0000024604,0.0000024929, -0.0000025251,0.0000025430,0.0000025540,0.0000025952,0.0000026433, -0.0000026557,0.0000026450,0.0000026287,0.0000026178,0.0000025872, -0.0000025357,0.0000025007,0.0000024809,0.0000024611,0.0000024206, -0.0000023837,0.0000023779,0.0000023918,0.0000024119,0.0000024215, -0.0000024246,0.0000024242,0.0000024228,0.0000024456,0.0000024854, -0.0000024848,0.0000025024,0.0000025698,0.0000025993,0.0000026004, -0.0000025743,0.0000024973,0.0000024675,0.0000024726,0.0000024767, -0.0000024595,0.0000024197,0.0000023959,0.0000023943,0.0000024004, -0.0000024044,0.0000024079,0.0000024112,0.0000024128,0.0000024123, -0.0000024119,0.0000024125,0.0000024141,0.0000024168,0.0000024210, -0.0000024262,0.0000024334,0.0000024447,0.0000024543,0.0000024562, -0.0000024555,0.0000024551,0.0000024530,0.0000024491,0.0000024468, -0.0000024463,0.0000024462,0.0000024462,0.0000024469,0.0000024479, -0.0000024499,0.0000024535,0.0000024564,0.0000024566,0.0000024537, -0.0000024491,0.0000024448,0.0000024447,0.0000024488,0.0000024535, -0.0000024582,0.0000024625,0.0000024662,0.0000024678,0.0000024666, -0.0000024611,0.0000024542,0.0000024513,0.0000024515,0.0000024526, -0.0000024543,0.0000024575,0.0000024627,0.0000024677,0.0000024706, -0.0000024705,0.0000024682,0.0000024656,0.0000024653,0.0000024681, -0.0000024736,0.0000024796,0.0000024833,0.0000024846,0.0000024846, -0.0000024819,0.0000024773,0.0000024750,0.0000024804,0.0000024972, -0.0000025163,0.0000025293,0.0000025343,0.0000025382,0.0000025455, -0.0000025618,0.0000025820,0.0000025900,0.0000025898,0.0000025923, -0.0000025930,0.0000025836,0.0000025677,0.0000025595,0.0000025631, -0.0000025735,0.0000025788,0.0000025766,0.0000025724,0.0000025709, -0.0000025715,0.0000025720,0.0000025708,0.0000025676,0.0000025632, -0.0000025608,0.0000025622,0.0000025676,0.0000025733,0.0000025786, -0.0000025826,0.0000025837,0.0000025817,0.0000025772,0.0000025723, -0.0000025673,0.0000025623,0.0000025591,0.0000025593,0.0000025603, -0.0000025580,0.0000025514,0.0000025470,0.0000025453,0.0000025374, -0.0000025178,0.0000024999,0.0000024933,0.0000024908,0.0000024856, -0.0000024763,0.0000024670,0.0000024609,0.0000024583,0.0000024576, -0.0000024569,0.0000024559,0.0000024531,0.0000024481,0.0000024413, -0.0000024335,0.0000024257,0.0000024212,0.0000024197,0.0000024214, -0.0000024241,0.0000024264,0.0000024284,0.0000024317,0.0000024359, -0.0000024405,0.0000024455,0.0000024508,0.0000024551,0.0000024570, -0.0000024559,0.0000024511,0.0000024452,0.0000024397,0.0000024308, -0.0000024141,0.0000023951,0.0000023860,0.0000023857,0.0000023799, -0.0000023496,0.0000023037,0.0000022703,0.0000022573,0.0000022486, -0.0000022375,0.0000022292,0.0000022238,0.0000022183,0.0000022141, -0.0000022122,0.0000022075,0.0000022007,0.0000022028,0.0000022191, -0.0000022385,0.0000022497,0.0000022567,0.0000022688,0.0000022885, -0.0000023101,0.0000023264,0.0000023353,0.0000023414,0.0000023575, -0.0000023888,0.0000024177,0.0000024309,0.0000024434,0.0000024642, -0.0000024785,0.0000024805,0.0000024779,0.0000024705,0.0000024601, -0.0000024532,0.0000024502,0.0000024457,0.0000024391,0.0000024346, -0.0000024335,0.0000024330,0.0000024312,0.0000024318,0.0000024422, -0.0000024627,0.0000024813,0.0000024869,0.0000024848,0.0000024824, -0.0000024847,0.0000024894,0.0000024897,0.0000024864,0.0000024856, -0.0000024929,0.0000025045,0.0000025104,0.0000025085,0.0000025045, -0.0000025064,0.0000025163,0.0000025277,0.0000025339,0.0000025348, -0.0000025346,0.0000025342,0.0000025347,0.0000025375,0.0000025413, -0.0000025427,0.0000025421,0.0000025420,0.0000025418,0.0000025407, -0.0000025394,0.0000025379,0.0000025346,0.0000025303,0.0000025278, -0.0000025278,0.0000025290,0.0000025308,0.0000025319,0.0000025317, -0.0000025309,0.0000025298,0.0000025292,0.0000025296,0.0000025316, -0.0000025351,0.0000025400,0.0000025455,0.0000025504,0.0000025532, -0.0000025532,0.0000025523,0.0000025530,0.0000025544,0.0000025525, -0.0000025471,0.0000025428,0.0000025431,0.0000025430,0.0000025389, -0.0000025383,0.0000025454,0.0000025527,0.0000025548,0.0000025572, -0.0000025653,0.0000025750,0.0000025812,0.0000025854,0.0000025907, -0.0000025994,0.0000026136,0.0000026305,0.0000026402,0.0000026405, -0.0000026356,0.0000026255,0.0000026134,0.0000026071,0.0000026103, -0.0000026176,0.0000026218,0.0000026196,0.0000026092,0.0000025932, -0.0000025738,0.0000025564,0.0000025490,0.0000025499,0.0000025548, -0.0000025596,0.0000025639,0.0000025669,0.0000025674,0.0000025653, -0.0000025615,0.0000025587,0.0000025578,0.0000025610,0.0000025679, -0.0000025768,0.0000025852,0.0000025922,0.0000025969,0.0000025991, -0.0000025989,0.0000025957,0.0000025886,0.0000025803,0.0000025721, -0.0000025650,0.0000025595,0.0000025557,0.0000025534,0.0000025522, -0.0000025515,0.0000025510,0.0000025501,0.0000025490,0.0000025475, -0.0000025453,0.0000025440,0.0000025454,0.0000025513,0.0000025605, -0.0000025694,0.0000025751,0.0000025767,0.0000025756,0.0000025735, -0.0000025697,0.0000025625,0.0000025515,0.0000025385,0.0000025266, -0.0000025172,0.0000025109,0.0000025095,0.0000025172,0.0000025363, -0.0000025545,0.0000025741,0.0000026066,0.0000026382,0.0000026494, -0.0000026505,0.0000026531,0.0000026587,0.0000026654,0.0000026709, -0.0000026750,0.0000026790,0.0000026837,0.0000026873,0.0000026873, -0.0000026833,0.0000026758,0.0000026670,0.0000026554,0.0000026412, -0.0000026284,0.0000026190,0.0000026097,0.0000025970,0.0000025785, -0.0000025562,0.0000025399,0.0000025322,0.0000025291,0.0000025303, -0.0000025357,0.0000025376,0.0000025289,0.0000025130,0.0000024953, -0.0000024746,0.0000024571,0.0000024506,0.0000024506,0.0000024492, -0.0000024397,0.0000024200,0.0000023961,0.0000023756,0.0000023618, -0.0000023552,0.0000023540,0.0000023551,0.0000023542,0.0000023516, -0.0000023476,0.0000023433,0.0000023403,0.0000023389,0.0000023383, -0.0000023392,0.0000023431,0.0000023501,0.0000023586,0.0000023667, -0.0000023727,0.0000023754,0.0000023751,0.0000023707,0.0000023619, -0.0000023511,0.0000023398,0.0000023291,0.0000023229,0.0000023220, -0.0000023219,0.0000023204,0.0000023195,0.0000023216,0.0000023282, -0.0000023353,0.0000023400,0.0000023426,0.0000023464,0.0000023545, -0.0000023636,0.0000023680,0.0000023679,0.0000023693,0.0000023759, -0.0000023970,0.0000024270,0.0000024467,0.0000024480,0.0000024449, -0.0000024729,0.0000025328,0.0000025739,0.0000025882,0.0000025949, -0.0000026017,0.0000026074,0.0000026118,0.0000026141,0.0000026149, -0.0000026153,0.0000026153,0.0000026152,0.0000026148,0.0000026144, -0.0000026132,0.0000026121,0.0000026108,0.0000026089,0.0000026057, -0.0000026008,0.0000025939,0.0000025856,0.0000025754,0.0000025634, -0.0000025485,0.0000025304,0.0000025095,0.0000024853,0.0000024596, -0.0000024369,0.0000024205,0.0000024127,0.0000024110,0.0000024090, -0.0000024042,0.0000023976,0.0000023897,0.0000023786,0.0000023643, -0.0000023494,0.0000023374,0.0000023289,0.0000023221,0.0000023128, -0.0000023001,0.0000022877,0.0000022779,0.0000022702,0.0000022662, -0.0000022663,0.0000022668,0.0000022662,0.0000022655,0.0000022642, -0.0000022614,0.0000022574,0.0000022526,0.0000022491,0.0000022492, -0.0000022529,0.0000022561,0.0000022574,0.0000022591,0.0000022613, -0.0000022627,0.0000022628,0.0000022632,0.0000022642,0.0000022644, -0.0000022646,0.0000022651,0.0000022649,0.0000022633,0.0000022628, -0.0000022650,0.0000022698,0.0000022735,0.0000022752,0.0000022776, -0.0000022787,0.0000022761,0.0000022716,0.0000022664,0.0000022595, -0.0000022523,0.0000022468,0.0000022443,0.0000022432,0.0000022416, -0.0000022383,0.0000022341,0.0000022303,0.0000022273,0.0000022247, -0.0000022211,0.0000022157,0.0000022102,0.0000022048,0.0000021990, -0.0000021928,0.0000021870,0.0000021824,0.0000021786,0.0000021754, -0.0000021735,0.0000021732,0.0000021731,0.0000021721,0.0000021703, -0.0000021689,0.0000021686,0.0000021691,0.0000021710,0.0000021743, -0.0000021784,0.0000021829,0.0000021865,0.0000021887,0.0000021902, -0.0000021915,0.0000021926,0.0000021940,0.0000021959,0.0000021977, -0.0000021987,0.0000021984,0.0000021977,0.0000021972,0.0000021965, -0.0000021957,0.0000021957,0.0000021964,0.0000021976,0.0000021987, -0.0000021991,0.0000021996,0.0000022010,0.0000022037,0.0000022083, -0.0000022150,0.0000022216,0.0000022250,0.0000022251,0.0000022225, -0.0000022185,0.0000022138,0.0000022084,0.0000022033,0.0000021995, -0.0000021949,0.0000021894,0.0000021919,0.0000022029,0.0000022303, -0.0000022689,0.0000023031,0.0000023203,0.0000023248,0.0000023305, -0.0000023324,0.0000023296,0.0000023248,0.0000023218,0.0000023229, -0.0000023267,0.0000023341,0.0000023501,0.0000023703,0.0000023825, -0.0000023841,0.0000023818,0.0000023776,0.0000023726,0.0000023675, -0.0000023636,0.0000023616,0.0000023611,0.0000023615,0.0000023620, -0.0000023621,0.0000023633,0.0000023677,0.0000023768,0.0000023891, -0.0000024016,0.0000024140,0.0000024289,0.0000024489,0.0000024707, -0.0000024864,0.0000024905,0.0000024816,0.0000024651,0.0000024458, -0.0000024312,0.0000024214,0.0000024137,0.0000024081,0.0000024056, -0.0000024057,0.0000024073,0.0000024093,0.0000024107,0.0000024113, -0.0000024111,0.0000024097,0.0000024069,0.0000024032,0.0000024085, -0.0000024046,0.0000024018,0.0000024004,0.0000023994,0.0000023994, -0.0000024027,0.0000024092,0.0000024130,0.0000024127,0.0000024124, -0.0000024129,0.0000024100,0.0000024012,0.0000023923,0.0000023891, -0.0000023888,0.0000023863,0.0000023773,0.0000023637,0.0000023536, -0.0000023512,0.0000023552,0.0000023632,0.0000023696,0.0000023727, -0.0000023740,0.0000023735,0.0000023694,0.0000023629,0.0000023580, -0.0000023581,0.0000023591,0.0000023557,0.0000023484,0.0000023453, -0.0000023486,0.0000023577,0.0000023649,0.0000023667,0.0000023653, -0.0000023629,0.0000023599,0.0000023580,0.0000023562,0.0000023555, -0.0000023560,0.0000023540,0.0000023484,0.0000023445,0.0000023439, -0.0000023439,0.0000023463,0.0000023486,0.0000023485,0.0000023512, -0.0000023590,0.0000023674,0.0000023737,0.0000023779,0.0000023809, -0.0000023840,0.0000023877,0.0000023908,0.0000023917,0.0000023910, -0.0000023902,0.0000023899,0.0000023900,0.0000023913,0.0000023932, -0.0000023938,0.0000023919,0.0000023886,0.0000023873,0.0000023851, -0.0000023780,0.0000023709,0.0000023702,0.0000023744,0.0000023830, -0.0000023891,0.0000023904,0.0000023867,0.0000023778,0.0000023718, -0.0000023688,0.0000023685,0.0000023717,0.0000023729,0.0000023690, -0.0000023644,0.0000023631,0.0000023643,0.0000023694,0.0000023796, -0.0000023912,0.0000024028,0.0000024132,0.0000024215,0.0000024296, -0.0000024388,0.0000024480,0.0000024560,0.0000024617,0.0000024664, -0.0000024714,0.0000024760,0.0000024795,0.0000024807,0.0000024797, -0.0000024772,0.0000024738,0.0000024692,0.0000024631,0.0000024563, -0.0000024503,0.0000024470,0.0000024455,0.0000024448,0.0000024446, -0.0000024444,0.0000024446,0.0000024465,0.0000024483,0.0000024485, -0.0000024542,0.0000024722,0.0000024916,0.0000025024,0.0000025037, -0.0000025013,0.0000025020,0.0000025083,0.0000025171,0.0000025282, -0.0000025400,0.0000025457,0.0000025435,0.0000025340,0.0000025225, -0.0000025105,0.0000024975,0.0000024878,0.0000024850,0.0000024861, -0.0000024909,0.0000024990,0.0000025048,0.0000025028,0.0000024947, -0.0000024895,0.0000024881,0.0000024843,0.0000024791,0.0000024723, -0.0000024591,0.0000024441,0.0000024372,0.0000024370,0.0000024368, -0.0000024334,0.0000024280,0.0000024232,0.0000024192,0.0000024161, -0.0000024141,0.0000024127,0.0000024111,0.0000024107,0.0000024128, -0.0000024159,0.0000024175,0.0000024177,0.0000024190,0.0000024234, -0.0000024313,0.0000024411,0.0000024503,0.0000024583,0.0000024637, -0.0000024665,0.0000024670,0.0000024666,0.0000024647,0.0000024614, -0.0000024571,0.0000024535,0.0000024529,0.0000024553,0.0000024584, -0.0000024606,0.0000024616,0.0000024622,0.0000024624,0.0000024624, -0.0000024619,0.0000024615,0.0000024621,0.0000024652,0.0000024711, -0.0000024787,0.0000024862,0.0000024936,0.0000025011,0.0000025065, -0.0000025086,0.0000025081,0.0000025063,0.0000025047,0.0000025049, -0.0000025072,0.0000025113,0.0000025160,0.0000025199,0.0000025229, -0.0000025259,0.0000025291,0.0000025320,0.0000025329,0.0000025312, -0.0000025269,0.0000025197,0.0000025099,0.0000024995,0.0000024917, -0.0000024874,0.0000024856,0.0000024856,0.0000024868,0.0000024887, -0.0000024897,0.0000024883,0.0000024827,0.0000024744,0.0000024660, -0.0000024603,0.0000024568,0.0000024529,0.0000024474,0.0000024416, -0.0000024370,0.0000024296,0.0000024109,0.0000023871,0.0000023745, -0.0000023723,0.0000023694,0.0000023659,0.0000023669,0.0000023695, -0.0000023675,0.0000023611,0.0000023555,0.0000023539,0.0000023578, -0.0000023725,0.0000023932,0.0000024093,0.0000024183,0.0000024253, -0.0000024336,0.0000024430,0.0000024530,0.0000024633,0.0000024730, -0.0000024812,0.0000024873,0.0000024900,0.0000024899,0.0000024900, -0.0000024912,0.0000024933,0.0000024966,0.0000025041,0.0000025177, -0.0000025329,0.0000025411,0.0000025397,0.0000025347,0.0000025331, -0.0000025389,0.0000025499,0.0000025581,0.0000025593,0.0000025572, -0.0000025562,0.0000025593,0.0000025665,0.0000025748,0.0000025836, -0.0000025919,0.0000025985,0.0000026029,0.0000026040,0.0000026012, -0.0000025965,0.0000025934,0.0000025909,0.0000025868,0.0000025788, -0.0000025673,0.0000025525,0.0000025371,0.0000025262,0.0000025216, -0.0000025213,0.0000025218,0.0000025208,0.0000025178,0.0000025171, -0.0000025191,0.0000025203,0.0000025195,0.0000025154,0.0000025066, -0.0000024935,0.0000024806,0.0000024709,0.0000024641,0.0000024600, -0.0000024570,0.0000024541,0.0000024515,0.0000024502,0.0000024496, -0.0000024481,0.0000024464,0.0000024441,0.0000024407,0.0000024376, -0.0000024344,0.0000024312,0.0000024281,0.0000024294,0.0000024498, -0.0000024806,0.0000024879,0.0000024760,0.0000024662,0.0000024723, -0.0000024830,0.0000024932,0.0000025026,0.0000025076,0.0000025109, -0.0000025123,0.0000025129,0.0000025127,0.0000025110,0.0000025069, -0.0000025008,0.0000024934,0.0000024867,0.0000024832,0.0000024835, -0.0000024865,0.0000024881,0.0000024903,0.0000024981,0.0000025111, -0.0000025250,0.0000025356,0.0000025401,0.0000025388,0.0000025343, -0.0000025303,0.0000025262,0.0000025186,0.0000025089,0.0000025027, -0.0000025020,0.0000025055,0.0000025099,0.0000025140,0.0000025223, -0.0000025340,0.0000025394,0.0000025358,0.0000025318,0.0000025325, -0.0000025331,0.0000025297,0.0000025252,0.0000025228,0.0000025247, -0.0000025267,0.0000025294,0.0000025317,0.0000025299,0.0000025202, -0.0000025050,0.0000024902,0.0000024795,0.0000024723,0.0000024662, -0.0000024596,0.0000024511,0.0000024406,0.0000024285,0.0000024149, -0.0000024002,0.0000023875,0.0000023795,0.0000023744,0.0000023709, -0.0000023701,0.0000023721,0.0000023757,0.0000023798,0.0000023850, -0.0000023910,0.0000023968,0.0000024012,0.0000024037,0.0000024035, -0.0000023998,0.0000023936,0.0000023865,0.0000023800,0.0000023747, -0.0000023701,0.0000023655,0.0000023607,0.0000023564,0.0000023528, -0.0000023495,0.0000023459,0.0000023425,0.0000023399,0.0000023378, -0.0000023346,0.0000023299,0.0000023245,0.0000023186,0.0000023134, -0.0000023102,0.0000023083,0.0000023058,0.0000023018,0.0000022959, -0.0000022894,0.0000022833,0.0000022781,0.0000022738,0.0000022702, -0.0000022679,0.0000022683,0.0000022701,0.0000022731,0.0000022762, -0.0000022796,0.0000022817,0.0000022819,0.0000022812,0.0000022800, -0.0000022769,0.0000022751,0.0000022791,0.0000022880,0.0000022948, -0.0000022961,0.0000022932,0.0000022882,0.0000022835,0.0000022816, -0.0000022840,0.0000022902,0.0000022941,0.0000022942,0.0000022936, -0.0000022943,0.0000022960,0.0000022970,0.0000022962,0.0000022925, -0.0000022868,0.0000022817,0.0000022773,0.0000022762,0.0000022780, -0.0000022824,0.0000022883,0.0000022935,0.0000022965,0.0000022959, -0.0000022909,0.0000022827,0.0000022754,0.0000022678,0.0000022581, -0.0000022503,0.0000022485,0.0000022531,0.0000022645,0.0000022819, -0.0000023033,0.0000023252,0.0000023459,0.0000023659,0.0000023787, -0.0000023784,0.0000023701,0.0000023644,0.0000023730,0.0000023927, -0.0000024058,0.0000024103,0.0000024191,0.0000024305,0.0000024473, -0.0000024766,0.0000025098,0.0000025360,0.0000025460,0.0000025722, -0.0000026243,0.0000026571,0.0000026542,0.0000026384,0.0000026250, -0.0000025989,0.0000025480,0.0000025095,0.0000024878,0.0000024685, -0.0000024288,0.0000023897,0.0000023782,0.0000023881,0.0000024091, -0.0000024226,0.0000024257,0.0000024278,0.0000024245,0.0000024347, -0.0000024735,0.0000024881,0.0000024858,0.0000025465,0.0000025941, -0.0000025998,0.0000025886,0.0000025143,0.0000024717,0.0000024735, -0.0000024788,0.0000024629,0.0000024212,0.0000023975,0.0000023966, -0.0000024028,0.0000024077,0.0000024121,0.0000024144,0.0000024148, -0.0000024151,0.0000024165,0.0000024187,0.0000024207,0.0000024240, -0.0000024290,0.0000024345,0.0000024414,0.0000024494,0.0000024542, -0.0000024530,0.0000024517,0.0000024528,0.0000024527,0.0000024491, -0.0000024463,0.0000024448,0.0000024442,0.0000024442,0.0000024444, -0.0000024441,0.0000024441,0.0000024456,0.0000024469,0.0000024463, -0.0000024440,0.0000024413,0.0000024403,0.0000024425,0.0000024472, -0.0000024510,0.0000024550,0.0000024587,0.0000024611,0.0000024615, -0.0000024599,0.0000024550,0.0000024485,0.0000024462,0.0000024478, -0.0000024507,0.0000024537,0.0000024564,0.0000024603,0.0000024655, -0.0000024699,0.0000024711,0.0000024694,0.0000024649,0.0000024614, -0.0000024613,0.0000024646,0.0000024698,0.0000024734,0.0000024753, -0.0000024771,0.0000024776,0.0000024755,0.0000024728,0.0000024742, -0.0000024877,0.0000025087,0.0000025257,0.0000025331,0.0000025362, -0.0000025422,0.0000025541,0.0000025745,0.0000025897,0.0000025895, -0.0000025838,0.0000025806,0.0000025735,0.0000025631,0.0000025599, -0.0000025672,0.0000025771,0.0000025802,0.0000025770,0.0000025716, -0.0000025688,0.0000025691,0.0000025702,0.0000025698,0.0000025671, -0.0000025626,0.0000025580,0.0000025570,0.0000025617,0.0000025695, -0.0000025760,0.0000025808,0.0000025835,0.0000025831,0.0000025802, -0.0000025756,0.0000025710,0.0000025672,0.0000025653,0.0000025645, -0.0000025615,0.0000025549,0.0000025490,0.0000025477,0.0000025432, -0.0000025268,0.0000025072,0.0000024971,0.0000024946,0.0000024900, -0.0000024802,0.0000024697,0.0000024624,0.0000024584,0.0000024558, -0.0000024541,0.0000024530,0.0000024528,0.0000024526,0.0000024510, -0.0000024477,0.0000024428,0.0000024358,0.0000024282,0.0000024228, -0.0000024214,0.0000024230,0.0000024257,0.0000024287,0.0000024323, -0.0000024369,0.0000024419,0.0000024463,0.0000024496,0.0000024517, -0.0000024510,0.0000024479,0.0000024438,0.0000024393,0.0000024312, -0.0000024157,0.0000023968,0.0000023854,0.0000023842,0.0000023840, -0.0000023691,0.0000023306,0.0000022870,0.0000022622,0.0000022529, -0.0000022436,0.0000022338,0.0000022280,0.0000022241,0.0000022186, -0.0000022129,0.0000022104,0.0000022071,0.0000022005,0.0000021998, -0.0000022132,0.0000022326,0.0000022459,0.0000022537,0.0000022630, -0.0000022782,0.0000022969,0.0000023137,0.0000023264,0.0000023342, -0.0000023411,0.0000023591,0.0000023911,0.0000024183,0.0000024297, -0.0000024415,0.0000024616,0.0000024752,0.0000024765,0.0000024715, -0.0000024631,0.0000024553,0.0000024507,0.0000024464,0.0000024400, -0.0000024344,0.0000024327,0.0000024330,0.0000024322,0.0000024313, -0.0000024366,0.0000024538,0.0000024753,0.0000024877,0.0000024879, -0.0000024833,0.0000024824,0.0000024866,0.0000024891,0.0000024860, -0.0000024815,0.0000024829,0.0000024926,0.0000025040,0.0000025074, -0.0000025040,0.0000025018,0.0000025065,0.0000025189,0.0000025301, -0.0000025349,0.0000025358,0.0000025357,0.0000025356,0.0000025361, -0.0000025383,0.0000025406,0.0000025408,0.0000025399,0.0000025390, -0.0000025377,0.0000025351,0.0000025326,0.0000025308,0.0000025289, -0.0000025279,0.0000025276,0.0000025277,0.0000025272,0.0000025261, -0.0000025248,0.0000025239,0.0000025235,0.0000025237,0.0000025250, -0.0000025272,0.0000025304,0.0000025349,0.0000025399,0.0000025451, -0.0000025500,0.0000025535,0.0000025543,0.0000025525,0.0000025511, -0.0000025514,0.0000025506,0.0000025456,0.0000025403,0.0000025388, -0.0000025374,0.0000025326,0.0000025321,0.0000025409,0.0000025502, -0.0000025528,0.0000025536,0.0000025601,0.0000025702,0.0000025774, -0.0000025808,0.0000025849,0.0000025921,0.0000026030,0.0000026186, -0.0000026335,0.0000026398,0.0000026378,0.0000026296,0.0000026159, -0.0000026049,0.0000026015,0.0000026041,0.0000026070,0.0000026059, -0.0000025975,0.0000025831,0.0000025659,0.0000025526,0.0000025487, -0.0000025504,0.0000025541,0.0000025563,0.0000025570,0.0000025555, -0.0000025521,0.0000025482,0.0000025456,0.0000025458,0.0000025514, -0.0000025625,0.0000025758,0.0000025879,0.0000025971,0.0000026025, -0.0000026048,0.0000026053,0.0000026035,0.0000025975,0.0000025888, -0.0000025797,0.0000025712,0.0000025627,0.0000025539,0.0000025456, -0.0000025388,0.0000025346,0.0000025336,0.0000025353,0.0000025382, -0.0000025397,0.0000025390,0.0000025374,0.0000025373,0.0000025402, -0.0000025464,0.0000025537,0.0000025588,0.0000025602,0.0000025592, -0.0000025574,0.0000025551,0.0000025510,0.0000025437,0.0000025337, -0.0000025234,0.0000025148,0.0000025074,0.0000025022,0.0000025033, -0.0000025168,0.0000025369,0.0000025599,0.0000025932,0.0000026301, -0.0000026476,0.0000026491,0.0000026501,0.0000026542,0.0000026611, -0.0000026682,0.0000026742,0.0000026803,0.0000026862,0.0000026897, -0.0000026886,0.0000026844,0.0000026775,0.0000026699,0.0000026602, -0.0000026476,0.0000026345,0.0000026242,0.0000026154,0.0000026043, -0.0000025880,0.0000025661,0.0000025485,0.0000025425,0.0000025415, -0.0000025406,0.0000025428,0.0000025459,0.0000025427,0.0000025302, -0.0000025147,0.0000024952,0.0000024730,0.0000024576,0.0000024528, -0.0000024521,0.0000024473,0.0000024311,0.0000024052,0.0000023784, -0.0000023576,0.0000023439,0.0000023368,0.0000023371,0.0000023438, -0.0000023507,0.0000023517,0.0000023489,0.0000023437,0.0000023392, -0.0000023368,0.0000023357,0.0000023345,0.0000023341,0.0000023364, -0.0000023419,0.0000023496,0.0000023571,0.0000023622,0.0000023646, -0.0000023638,0.0000023586,0.0000023500,0.0000023401,0.0000023291, -0.0000023195,0.0000023160,0.0000023155,0.0000023148,0.0000023129, -0.0000023125,0.0000023165,0.0000023226,0.0000023271,0.0000023283, -0.0000023298,0.0000023369,0.0000023493,0.0000023597,0.0000023632, -0.0000023640,0.0000023680,0.0000023804,0.0000024068,0.0000024321, -0.0000024423,0.0000024378,0.0000024381,0.0000024780,0.0000025357, -0.0000025683,0.0000025790,0.0000025888,0.0000025990,0.0000026049, -0.0000026073,0.0000026090,0.0000026111,0.0000026134,0.0000026148, -0.0000026152,0.0000026147,0.0000026134,0.0000026108,0.0000026074, -0.0000026034,0.0000025982,0.0000025911,0.0000025817,0.0000025692, -0.0000025530,0.0000025331,0.0000025095,0.0000024833,0.0000024574, -0.0000024349,0.0000024182,0.0000024089,0.0000024059,0.0000024065, -0.0000024070,0.0000024052,0.0000024008,0.0000023952,0.0000023870, -0.0000023752,0.0000023615,0.0000023496,0.0000023400,0.0000023322, -0.0000023244,0.0000023139,0.0000023004,0.0000022877,0.0000022786, -0.0000022705,0.0000022641,0.0000022635,0.0000022663,0.0000022671, -0.0000022659,0.0000022646,0.0000022630,0.0000022600,0.0000022555, -0.0000022509,0.0000022488,0.0000022497,0.0000022521,0.0000022537, -0.0000022550,0.0000022566,0.0000022585,0.0000022592,0.0000022599, -0.0000022616,0.0000022625,0.0000022631,0.0000022636,0.0000022635, -0.0000022620,0.0000022598,0.0000022592,0.0000022613,0.0000022658, -0.0000022690,0.0000022711,0.0000022739,0.0000022742,0.0000022713, -0.0000022679,0.0000022630,0.0000022557,0.0000022484,0.0000022438, -0.0000022420,0.0000022404,0.0000022367,0.0000022314,0.0000022268, -0.0000022243,0.0000022223,0.0000022200,0.0000022165,0.0000022114, -0.0000022059,0.0000022009,0.0000021955,0.0000021891,0.0000021825, -0.0000021769,0.0000021722,0.0000021684,0.0000021664,0.0000021661, -0.0000021665,0.0000021666,0.0000021660,0.0000021656,0.0000021658, -0.0000021660,0.0000021670,0.0000021690,0.0000021719,0.0000021753, -0.0000021781,0.0000021798,0.0000021808,0.0000021818,0.0000021827, -0.0000021842,0.0000021864,0.0000021888,0.0000021906,0.0000021911, -0.0000021912,0.0000021914,0.0000021915,0.0000021919,0.0000021928, -0.0000021945,0.0000021966,0.0000021982,0.0000021991,0.0000022001, -0.0000022024,0.0000022068,0.0000022135,0.0000022213,0.0000022270, -0.0000022285,0.0000022279,0.0000022259,0.0000022232,0.0000022202, -0.0000022162,0.0000022095,0.0000022022,0.0000021958,0.0000021886, -0.0000021884,0.0000021983,0.0000022241,0.0000022614,0.0000022969, -0.0000023168,0.0000023214,0.0000023268,0.0000023299,0.0000023274, -0.0000023220,0.0000023175,0.0000023170,0.0000023205,0.0000023270, -0.0000023388,0.0000023563,0.0000023712,0.0000023765,0.0000023755, -0.0000023709,0.0000023639,0.0000023562,0.0000023494,0.0000023453, -0.0000023445,0.0000023458,0.0000023487,0.0000023518,0.0000023530, -0.0000023528,0.0000023539,0.0000023590,0.0000023695,0.0000023838, -0.0000023976,0.0000024095,0.0000024232,0.0000024413,0.0000024604, -0.0000024716,0.0000024742,0.0000024660,0.0000024537,0.0000024413, -0.0000024322,0.0000024267,0.0000024235,0.0000024218,0.0000024212, -0.0000024208,0.0000024202,0.0000024194,0.0000024187,0.0000024179, -0.0000024158,0.0000024124,0.0000024163,0.0000024113,0.0000024071, -0.0000024044,0.0000024021,0.0000023997,0.0000024003,0.0000024063, -0.0000024120,0.0000024129,0.0000024130,0.0000024134,0.0000024095, -0.0000023989,0.0000023908,0.0000023882,0.0000023866,0.0000023808, -0.0000023686,0.0000023554,0.0000023482,0.0000023485,0.0000023557, -0.0000023650,0.0000023707,0.0000023728,0.0000023727,0.0000023702, -0.0000023645,0.0000023586,0.0000023566,0.0000023583,0.0000023579, -0.0000023520,0.0000023459,0.0000023468,0.0000023554,0.0000023650, -0.0000023694,0.0000023689,0.0000023660,0.0000023625,0.0000023579, -0.0000023542,0.0000023524,0.0000023530,0.0000023559,0.0000023582, -0.0000023551,0.0000023480,0.0000023445,0.0000023442,0.0000023457, -0.0000023484,0.0000023484,0.0000023491,0.0000023565,0.0000023665, -0.0000023739,0.0000023785,0.0000023809,0.0000023829,0.0000023865, -0.0000023904,0.0000023922,0.0000023918,0.0000023904,0.0000023889, -0.0000023878,0.0000023881,0.0000023893,0.0000023897,0.0000023879, -0.0000023849,0.0000023847,0.0000023856,0.0000023817,0.0000023742, -0.0000023711,0.0000023726,0.0000023800,0.0000023880,0.0000023911, -0.0000023901,0.0000023823,0.0000023730,0.0000023679,0.0000023652, -0.0000023660,0.0000023698,0.0000023708,0.0000023676,0.0000023647, -0.0000023646,0.0000023660,0.0000023701,0.0000023782,0.0000023882, -0.0000023981,0.0000024074,0.0000024153,0.0000024224,0.0000024308, -0.0000024408,0.0000024496,0.0000024557,0.0000024601,0.0000024643, -0.0000024687,0.0000024728,0.0000024748,0.0000024746,0.0000024728, -0.0000024702,0.0000024652,0.0000024576,0.0000024489,0.0000024417, -0.0000024384,0.0000024381,0.0000024389,0.0000024398,0.0000024402, -0.0000024408,0.0000024425,0.0000024437,0.0000024435,0.0000024495, -0.0000024697,0.0000024902,0.0000024999,0.0000024998,0.0000024974, -0.0000025001,0.0000025079,0.0000025184,0.0000025310,0.0000025419, -0.0000025445,0.0000025393,0.0000025289,0.0000025175,0.0000025037, -0.0000024911,0.0000024844,0.0000024839,0.0000024869,0.0000024948, -0.0000025027,0.0000025041,0.0000024977,0.0000024894,0.0000024866, -0.0000024858,0.0000024814,0.0000024729,0.0000024600,0.0000024461, -0.0000024386,0.0000024376,0.0000024377,0.0000024340,0.0000024259, -0.0000024182,0.0000024140,0.0000024113,0.0000024078,0.0000024042, -0.0000024011,0.0000023988,0.0000023985,0.0000024011,0.0000024051, -0.0000024082,0.0000024101,0.0000024116,0.0000024135,0.0000024172, -0.0000024237,0.0000024335,0.0000024450,0.0000024549,0.0000024615, -0.0000024654,0.0000024669,0.0000024658,0.0000024631,0.0000024587, -0.0000024560,0.0000024567,0.0000024592,0.0000024609,0.0000024616, -0.0000024619,0.0000024620,0.0000024618,0.0000024617,0.0000024615, -0.0000024615,0.0000024627,0.0000024672,0.0000024753,0.0000024843, -0.0000024916,0.0000024981,0.0000025045,0.0000025088,0.0000025100, -0.0000025088,0.0000025060,0.0000025042,0.0000025041,0.0000025061, -0.0000025105,0.0000025167,0.0000025229,0.0000025266,0.0000025276, -0.0000025281,0.0000025292,0.0000025302,0.0000025298,0.0000025274, -0.0000025238,0.0000025187,0.0000025118,0.0000025040,0.0000024973, -0.0000024926,0.0000024901,0.0000024896,0.0000024900,0.0000024899, -0.0000024876,0.0000024819,0.0000024730,0.0000024636,0.0000024570, -0.0000024531,0.0000024496,0.0000024455,0.0000024409,0.0000024373, -0.0000024326,0.0000024185,0.0000023964,0.0000023813,0.0000023769, -0.0000023731,0.0000023686,0.0000023679,0.0000023691,0.0000023663, -0.0000023596,0.0000023535,0.0000023510,0.0000023529,0.0000023664, -0.0000023894,0.0000024085,0.0000024180,0.0000024234,0.0000024302, -0.0000024388,0.0000024487,0.0000024591,0.0000024688,0.0000024762, -0.0000024804,0.0000024814,0.0000024798,0.0000024775,0.0000024765, -0.0000024771,0.0000024794,0.0000024843,0.0000024938,0.0000025096, -0.0000025265,0.0000025351,0.0000025339,0.0000025298,0.0000025299, -0.0000025376,0.0000025500,0.0000025576,0.0000025573,0.0000025560, -0.0000025583,0.0000025642,0.0000025722,0.0000025814,0.0000025902, -0.0000025975,0.0000026027,0.0000026049,0.0000026027,0.0000025979, -0.0000025930,0.0000025881,0.0000025812,0.0000025700,0.0000025553, -0.0000025393,0.0000025262,0.0000025199,0.0000025198,0.0000025231, -0.0000025260,0.0000025254,0.0000025220,0.0000025202,0.0000025199, -0.0000025178,0.0000025105,0.0000024985,0.0000024849,0.0000024736, -0.0000024674,0.0000024653,0.0000024638,0.0000024617,0.0000024591, -0.0000024561,0.0000024534,0.0000024522,0.0000024525,0.0000024517, -0.0000024496,0.0000024460,0.0000024396,0.0000024304,0.0000024210, -0.0000024123,0.0000024121,0.0000024159,0.0000024245,0.0000024503, -0.0000024830,0.0000024889,0.0000024743,0.0000024666,0.0000024729, -0.0000024828,0.0000024940,0.0000025052,0.0000025114,0.0000025126, -0.0000025118,0.0000025099,0.0000025081,0.0000025055,0.0000025012, -0.0000024950,0.0000024887,0.0000024838,0.0000024813,0.0000024821, -0.0000024834,0.0000024845,0.0000024875,0.0000024966,0.0000025113, -0.0000025259,0.0000025353,0.0000025368,0.0000025344,0.0000025305, -0.0000025274,0.0000025234,0.0000025159,0.0000025080,0.0000025039, -0.0000025036,0.0000025058,0.0000025095,0.0000025142,0.0000025220, -0.0000025320,0.0000025365,0.0000025341,0.0000025320,0.0000025321, -0.0000025310,0.0000025252,0.0000025184,0.0000025173,0.0000025219, -0.0000025262,0.0000025280,0.0000025232,0.0000025107,0.0000024953, -0.0000024819,0.0000024723,0.0000024640,0.0000024546,0.0000024446, -0.0000024353,0.0000024255,0.0000024148,0.0000024037,0.0000023918, -0.0000023808,0.0000023707,0.0000023615,0.0000023552,0.0000023543, -0.0000023590,0.0000023670,0.0000023750,0.0000023814,0.0000023870, -0.0000023922,0.0000023957,0.0000023970,0.0000023966,0.0000023936, -0.0000023891,0.0000023846,0.0000023803,0.0000023756,0.0000023708, -0.0000023659,0.0000023615,0.0000023580,0.0000023554,0.0000023529, -0.0000023494,0.0000023448,0.0000023393,0.0000023334,0.0000023275, -0.0000023217,0.0000023169,0.0000023131,0.0000023093,0.0000023050, -0.0000023000,0.0000022941,0.0000022875,0.0000022819,0.0000022781, -0.0000022756,0.0000022737,0.0000022719,0.0000022705,0.0000022699, -0.0000022703,0.0000022731,0.0000022769,0.0000022796,0.0000022813, -0.0000022819,0.0000022813,0.0000022788,0.0000022770,0.0000022761, -0.0000022730,0.0000022702,0.0000022739,0.0000022850,0.0000022942, -0.0000022960,0.0000022932,0.0000022889,0.0000022851,0.0000022835, -0.0000022853,0.0000022904,0.0000022953,0.0000022972,0.0000022974, -0.0000022974,0.0000022975,0.0000022975,0.0000022968,0.0000022940, -0.0000022881,0.0000022803,0.0000022739,0.0000022696,0.0000022695, -0.0000022730,0.0000022791,0.0000022858,0.0000022912,0.0000022932, -0.0000022896,0.0000022827,0.0000022759,0.0000022700,0.0000022610, -0.0000022515,0.0000022479,0.0000022504,0.0000022601,0.0000022745, -0.0000022939,0.0000023168,0.0000023385,0.0000023586,0.0000023754, -0.0000023799,0.0000023732,0.0000023639,0.0000023658,0.0000023826, -0.0000023997,0.0000024061,0.0000024127,0.0000024235,0.0000024377, -0.0000024637,0.0000024955,0.0000025247,0.0000025417,0.0000025551, -0.0000026004,0.0000026486,0.0000026588,0.0000026485,0.0000026333, -0.0000026101,0.0000025608,0.0000025185,0.0000024946,0.0000024752, -0.0000024363,0.0000023969,0.0000023820,0.0000023875,0.0000024058, -0.0000024214,0.0000024258,0.0000024287,0.0000024283,0.0000024297, -0.0000024596,0.0000024891,0.0000024817,0.0000025216,0.0000025828, -0.0000025995,0.0000025973,0.0000025338,0.0000024791,0.0000024744, -0.0000024808,0.0000024685,0.0000024255,0.0000023998,0.0000023988, -0.0000024042,0.0000024111,0.0000024165,0.0000024181,0.0000024195, -0.0000024236,0.0000024282,0.0000024318,0.0000024336,0.0000024366, -0.0000024405,0.0000024440,0.0000024473,0.0000024504,0.0000024511, -0.0000024483,0.0000024475,0.0000024510,0.0000024520,0.0000024482, -0.0000024448,0.0000024432,0.0000024422,0.0000024424,0.0000024426, -0.0000024420,0.0000024411,0.0000024407,0.0000024408,0.0000024397, -0.0000024378,0.0000024365,0.0000024369,0.0000024399,0.0000024444, -0.0000024478,0.0000024512,0.0000024536,0.0000024542,0.0000024533, -0.0000024509,0.0000024466,0.0000024416,0.0000024403,0.0000024425, -0.0000024466,0.0000024511,0.0000024548,0.0000024581,0.0000024619, -0.0000024664,0.0000024696,0.0000024691,0.0000024643,0.0000024582, -0.0000024553,0.0000024569,0.0000024621,0.0000024662,0.0000024675, -0.0000024682,0.0000024698,0.0000024713,0.0000024716,0.0000024716, -0.0000024800,0.0000025000,0.0000025203,0.0000025315,0.0000025348, -0.0000025395,0.0000025485,0.0000025638,0.0000025846,0.0000025930, -0.0000025879,0.0000025790,0.0000025719,0.0000025672,0.0000025689, -0.0000025771,0.0000025838,0.0000025838,0.0000025788,0.0000025719, -0.0000025673,0.0000025666,0.0000025684,0.0000025697,0.0000025682, -0.0000025637,0.0000025576,0.0000025536,0.0000025551,0.0000025634, -0.0000025725,0.0000025785,0.0000025821,0.0000025831,0.0000025816, -0.0000025782,0.0000025746,0.0000025720,0.0000025700,0.0000025663, -0.0000025597,0.0000025514,0.0000025481,0.0000025468,0.0000025353, -0.0000025150,0.0000025012,0.0000024971,0.0000024931,0.0000024842, -0.0000024739,0.0000024660,0.0000024606,0.0000024553,0.0000024491, -0.0000024427,0.0000024381,0.0000024366,0.0000024374,0.0000024394, -0.0000024404,0.0000024395,0.0000024370,0.0000024317,0.0000024271, -0.0000024237,0.0000024231,0.0000024248,0.0000024277,0.0000024310, -0.0000024353,0.0000024395,0.0000024426,0.0000024442,0.0000024445, -0.0000024434,0.0000024408,0.0000024361,0.0000024274,0.0000024136, -0.0000023972,0.0000023852,0.0000023821,0.0000023823,0.0000023782, -0.0000023540,0.0000023115,0.0000022738,0.0000022564,0.0000022483, -0.0000022386,0.0000022306,0.0000022266,0.0000022245,0.0000022204, -0.0000022143,0.0000022101,0.0000022070,0.0000022013,0.0000021987, -0.0000022090,0.0000022273,0.0000022417,0.0000022507,0.0000022591, -0.0000022713,0.0000022874,0.0000023025,0.0000023153,0.0000023264, -0.0000023338,0.0000023414,0.0000023616,0.0000023940,0.0000024186, -0.0000024281,0.0000024396,0.0000024591,0.0000024718,0.0000024723, -0.0000024664,0.0000024588,0.0000024524,0.0000024468,0.0000024406, -0.0000024348,0.0000024324,0.0000024331,0.0000024338,0.0000024322, -0.0000024337,0.0000024457,0.0000024666,0.0000024844,0.0000024894, -0.0000024859,0.0000024817,0.0000024840,0.0000024887,0.0000024884, -0.0000024827,0.0000024786,0.0000024820,0.0000024925,0.0000025013, -0.0000025028,0.0000024988,0.0000024973,0.0000025050,0.0000025189, -0.0000025301,0.0000025348,0.0000025360,0.0000025368,0.0000025372, -0.0000025377,0.0000025390,0.0000025404,0.0000025405,0.0000025392, -0.0000025373,0.0000025346,0.0000025313,0.0000025291,0.0000025289, -0.0000025292,0.0000025297,0.0000025294,0.0000025273,0.0000025235, -0.0000025198,0.0000025181,0.0000025182,0.0000025196,0.0000025222, -0.0000025252,0.0000025288,0.0000025331,0.0000025377,0.0000025420, -0.0000025462,0.0000025503,0.0000025537,0.0000025550,0.0000025537, -0.0000025510,0.0000025497,0.0000025485,0.0000025446,0.0000025392, -0.0000025355,0.0000025322,0.0000025279,0.0000025285,0.0000025382, -0.0000025479,0.0000025510,0.0000025509,0.0000025547,0.0000025637, -0.0000025725,0.0000025769,0.0000025800,0.0000025855,0.0000025934, -0.0000026056,0.0000026220,0.0000026347,0.0000026374,0.0000026332, -0.0000026230,0.0000026109,0.0000026020,0.0000025983,0.0000025974, -0.0000025956,0.0000025891,0.0000025774,0.0000025630,0.0000025521, -0.0000025491,0.0000025509,0.0000025531,0.0000025535,0.0000025516, -0.0000025461,0.0000025400,0.0000025363,0.0000025361,0.0000025409, -0.0000025533,0.0000025702,0.0000025855,0.0000025961,0.0000026019, -0.0000026045,0.0000026050,0.0000026048,0.0000026023,0.0000025961, -0.0000025874,0.0000025782,0.0000025697,0.0000025614,0.0000025522, -0.0000025419,0.0000025320,0.0000025249,0.0000025225,0.0000025241, -0.0000025290,0.0000025331,0.0000025348,0.0000025354,0.0000025361, -0.0000025385,0.0000025432,0.0000025485,0.0000025520,0.0000025525, -0.0000025518,0.0000025504,0.0000025480,0.0000025435,0.0000025363, -0.0000025273,0.0000025187,0.0000025106,0.0000025021,0.0000024971, -0.0000025018,0.0000025191,0.0000025430,0.0000025770,0.0000026182, -0.0000026441,0.0000026485,0.0000026487,0.0000026510,0.0000026567, -0.0000026643,0.0000026714,0.0000026787,0.0000026866,0.0000026914, -0.0000026910,0.0000026865,0.0000026780,0.0000026710,0.0000026637, -0.0000026532,0.0000026406,0.0000026296,0.0000026207,0.0000026109, -0.0000025971,0.0000025768,0.0000025561,0.0000025480,0.0000025507, -0.0000025531,0.0000025537,0.0000025560,0.0000025556,0.0000025471, -0.0000025340,0.0000025186,0.0000024967,0.0000024754,0.0000024634, -0.0000024583,0.0000024525,0.0000024398,0.0000024168,0.0000023902, -0.0000023672,0.0000023494,0.0000023354,0.0000023253,0.0000023218, -0.0000023262,0.0000023376,0.0000023459,0.0000023471,0.0000023443, -0.0000023394,0.0000023362,0.0000023348,0.0000023337,0.0000023320, -0.0000023303,0.0000023304,0.0000023335,0.0000023389,0.0000023445, -0.0000023491,0.0000023512,0.0000023496,0.0000023446,0.0000023378, -0.0000023292,0.0000023198,0.0000023137,0.0000023111,0.0000023097, -0.0000023074,0.0000023059,0.0000023075,0.0000023125,0.0000023164, -0.0000023163,0.0000023160,0.0000023199,0.0000023321,0.0000023474, -0.0000023570,0.0000023594,0.0000023626,0.0000023693,0.0000023871, -0.0000024135,0.0000024311,0.0000024335,0.0000024283,0.0000024349, -0.0000024779,0.0000025306,0.0000025608,0.0000025739,0.0000025837, -0.0000025941,0.0000026020,0.0000026069,0.0000026102,0.0000026131, -0.0000026150,0.0000026154,0.0000026143,0.0000026107,0.0000026047, -0.0000025980,0.0000025913,0.0000025838,0.0000025731,0.0000025580, -0.0000025380,0.0000025130,0.0000024851,0.0000024573,0.0000024324, -0.0000024133,0.0000024020,0.0000023980,0.0000023988,0.0000024004, -0.0000024012,0.0000024013,0.0000024003,0.0000023971,0.0000023913, -0.0000023825,0.0000023712,0.0000023601,0.0000023517,0.0000023438, -0.0000023360,0.0000023264,0.0000023145,0.0000023006,0.0000022876, -0.0000022785,0.0000022708,0.0000022639,0.0000022621,0.0000022651, -0.0000022680,0.0000022672,0.0000022650,0.0000022635,0.0000022615, -0.0000022578,0.0000022532,0.0000022499,0.0000022492,0.0000022499, -0.0000022509,0.0000022516,0.0000022525,0.0000022542,0.0000022557, -0.0000022568,0.0000022587,0.0000022601,0.0000022611,0.0000022619, -0.0000022618,0.0000022606,0.0000022585,0.0000022563,0.0000022558, -0.0000022579,0.0000022621,0.0000022649,0.0000022674,0.0000022702, -0.0000022699,0.0000022676,0.0000022651,0.0000022600,0.0000022519, -0.0000022446,0.0000022406,0.0000022383,0.0000022347,0.0000022296, -0.0000022251,0.0000022225,0.0000022209,0.0000022183,0.0000022153, -0.0000022120,0.0000022075,0.0000022025,0.0000021978,0.0000021927, -0.0000021862,0.0000021793,0.0000021735,0.0000021688,0.0000021653, -0.0000021633,0.0000021627,0.0000021630,0.0000021638,0.0000021643, -0.0000021645,0.0000021647,0.0000021654,0.0000021661,0.0000021670, -0.0000021686,0.0000021709,0.0000021736,0.0000021760,0.0000021777, -0.0000021791,0.0000021801,0.0000021808,0.0000021823,0.0000021850, -0.0000021879,0.0000021899,0.0000021910,0.0000021916,0.0000021920, -0.0000021926,0.0000021936,0.0000021955,0.0000021977,0.0000022001, -0.0000022021,0.0000022042,0.0000022077,0.0000022129,0.0000022191, -0.0000022252,0.0000022287,0.0000022292,0.0000022285,0.0000022271, -0.0000022257,0.0000022249,0.0000022234,0.0000022171,0.0000022072, -0.0000021983,0.0000021902,0.0000021869,0.0000021941,0.0000022168, -0.0000022522,0.0000022889,0.0000023126,0.0000023187,0.0000023236, -0.0000023282,0.0000023267,0.0000023213,0.0000023154,0.0000023127, -0.0000023141,0.0000023197,0.0000023295,0.0000023437,0.0000023582, -0.0000023668,0.0000023678,0.0000023635,0.0000023546,0.0000023443, -0.0000023352,0.0000023290,0.0000023258,0.0000023253,0.0000023273, -0.0000023315,0.0000023365,0.0000023405,0.0000023424,0.0000023427, -0.0000023445,0.0000023516,0.0000023647,0.0000023803,0.0000023941, -0.0000024055,0.0000024168,0.0000024300,0.0000024436,0.0000024518, -0.0000024530,0.0000024482,0.0000024405,0.0000024356,0.0000024351, -0.0000024369,0.0000024373,0.0000024360,0.0000024338,0.0000024309, -0.0000024279,0.0000024253,0.0000024230,0.0000024202,0.0000024216, -0.0000024155,0.0000024090,0.0000024046,0.0000024022,0.0000023998, -0.0000023986,0.0000024026,0.0000024088,0.0000024110,0.0000024119, -0.0000024122,0.0000024068,0.0000023959,0.0000023888,0.0000023861, -0.0000023822,0.0000023730,0.0000023595,0.0000023483,0.0000023444, -0.0000023478,0.0000023572,0.0000023662,0.0000023707,0.0000023716, -0.0000023706,0.0000023664,0.0000023606,0.0000023568,0.0000023569, -0.0000023584,0.0000023561,0.0000023498,0.0000023468,0.0000023523, -0.0000023630,0.0000023704,0.0000023716,0.0000023687,0.0000023634, -0.0000023571,0.0000023512,0.0000023471,0.0000023452,0.0000023454, -0.0000023500,0.0000023570,0.0000023588,0.0000023533,0.0000023466, -0.0000023450,0.0000023459,0.0000023487,0.0000023490,0.0000023481, -0.0000023531,0.0000023638,0.0000023728,0.0000023781,0.0000023807, -0.0000023828,0.0000023861,0.0000023902,0.0000023923,0.0000023923, -0.0000023904,0.0000023877,0.0000023855,0.0000023846,0.0000023849, -0.0000023847,0.0000023831,0.0000023811,0.0000023819,0.0000023847, -0.0000023841,0.0000023779,0.0000023740,0.0000023738,0.0000023780, -0.0000023861,0.0000023907,0.0000023911,0.0000023863,0.0000023756, -0.0000023678,0.0000023637,0.0000023616,0.0000023636,0.0000023679, -0.0000023691,0.0000023670,0.0000023658,0.0000023670,0.0000023688, -0.0000023710,0.0000023768,0.0000023854,0.0000023938,0.0000024014, -0.0000024083,0.0000024156,0.0000024238,0.0000024328,0.0000024418, -0.0000024492,0.0000024544,0.0000024585,0.0000024629,0.0000024673, -0.0000024700,0.0000024705,0.0000024696,0.0000024664,0.0000024593, -0.0000024494,0.0000024392,0.0000024315,0.0000024289,0.0000024298, -0.0000024322,0.0000024346,0.0000024362,0.0000024374,0.0000024389, -0.0000024391,0.0000024385,0.0000024461,0.0000024691,0.0000024895, -0.0000024970,0.0000024960,0.0000024950,0.0000024992,0.0000025085, -0.0000025205,0.0000025337,0.0000025422,0.0000025420,0.0000025346, -0.0000025246,0.0000025121,0.0000024970,0.0000024863,0.0000024828, -0.0000024837,0.0000024896,0.0000024988,0.0000025038,0.0000025014, -0.0000024921,0.0000024857,0.0000024850,0.0000024832,0.0000024744, -0.0000024607,0.0000024478,0.0000024406,0.0000024390,0.0000024390, -0.0000024356,0.0000024259,0.0000024148,0.0000024079,0.0000024053, -0.0000024023,0.0000023968,0.0000023908,0.0000023859,0.0000023828, -0.0000023825,0.0000023849,0.0000023893,0.0000023940,0.0000023987, -0.0000024029,0.0000024058,0.0000024075,0.0000024103,0.0000024172, -0.0000024288,0.0000024422,0.0000024535,0.0000024606,0.0000024634, -0.0000024633,0.0000024618,0.0000024601,0.0000024610,0.0000024639, -0.0000024661,0.0000024668,0.0000024667,0.0000024661,0.0000024647, -0.0000024637,0.0000024637,0.0000024643,0.0000024647,0.0000024662, -0.0000024708,0.0000024789,0.0000024872,0.0000024935,0.0000024995, -0.0000025054,0.0000025091,0.0000025097,0.0000025086,0.0000025061, -0.0000025044,0.0000025045,0.0000025064,0.0000025105,0.0000025173, -0.0000025249,0.0000025294,0.0000025300,0.0000025287,0.0000025275, -0.0000025275,0.0000025281,0.0000025283,0.0000025276,0.0000025258, -0.0000025224,0.0000025167,0.0000025090,0.0000025012,0.0000024955, -0.0000024922,0.0000024902,0.0000024884,0.0000024858,0.0000024807, -0.0000024720,0.0000024616,0.0000024539,0.0000024501,0.0000024480, -0.0000024452,0.0000024419,0.0000024388,0.0000024363,0.0000024264, -0.0000024057,0.0000023880,0.0000023815,0.0000023775,0.0000023725, -0.0000023707,0.0000023705,0.0000023666,0.0000023592,0.0000023530, -0.0000023506,0.0000023510,0.0000023607,0.0000023826,0.0000024050, -0.0000024173,0.0000024218,0.0000024261,0.0000024326,0.0000024411, -0.0000024511,0.0000024612,0.0000024686,0.0000024722,0.0000024723, -0.0000024695,0.0000024650,0.0000024612,0.0000024601,0.0000024613, -0.0000024658,0.0000024729,0.0000024847,0.0000025026,0.0000025207, -0.0000025296,0.0000025287,0.0000025260,0.0000025280,0.0000025373, -0.0000025493,0.0000025553,0.0000025558,0.0000025574,0.0000025622, -0.0000025693,0.0000025780,0.0000025868,0.0000025948,0.0000026009, -0.0000026036,0.0000026027,0.0000025976,0.0000025909,0.0000025832, -0.0000025730,0.0000025594,0.0000025440,0.0000025299,0.0000025207, -0.0000025184,0.0000025212,0.0000025267,0.0000025289,0.0000025274, -0.0000025235,0.0000025209,0.0000025182,0.0000025105,0.0000024973, -0.0000024833,0.0000024738,0.0000024695,0.0000024684,0.0000024682, -0.0000024675,0.0000024652,0.0000024619,0.0000024574,0.0000024530, -0.0000024513,0.0000024526,0.0000024546,0.0000024556,0.0000024558, -0.0000024542,0.0000024457,0.0000024296,0.0000024084,0.0000023957, -0.0000023949,0.0000024076,0.0000024251,0.0000024537,0.0000024854, -0.0000024890,0.0000024739,0.0000024670,0.0000024721,0.0000024823, -0.0000024947,0.0000025067,0.0000025119,0.0000025117,0.0000025083, -0.0000025053,0.0000025032,0.0000025002,0.0000024959,0.0000024909, -0.0000024868,0.0000024838,0.0000024822,0.0000024823,0.0000024838, -0.0000024858,0.0000024897,0.0000024989,0.0000025134,0.0000025269, -0.0000025330,0.0000025324,0.0000025287,0.0000025253,0.0000025237, -0.0000025202,0.0000025128,0.0000025068,0.0000025044,0.0000025042, -0.0000025059,0.0000025096,0.0000025144,0.0000025209,0.0000025288, -0.0000025333,0.0000025329,0.0000025315,0.0000025308,0.0000025276, -0.0000025203,0.0000025140,0.0000025160,0.0000025213,0.0000025238, -0.0000025182,0.0000025031,0.0000024863,0.0000024742,0.0000024642, -0.0000024526,0.0000024411,0.0000024309,0.0000024218,0.0000024117, -0.0000024014,0.0000023927,0.0000023858,0.0000023792,0.0000023722, -0.0000023630,0.0000023531,0.0000023465,0.0000023453,0.0000023519, -0.0000023627,0.0000023729,0.0000023806,0.0000023866,0.0000023908, -0.0000023923,0.0000023914,0.0000023882,0.0000023835,0.0000023784, -0.0000023737,0.0000023684,0.0000023630,0.0000023588,0.0000023564, -0.0000023559,0.0000023559,0.0000023553,0.0000023528,0.0000023475, -0.0000023396,0.0000023299,0.0000023215,0.0000023160,0.0000023120, -0.0000023078,0.0000023021,0.0000022949,0.0000022870,0.0000022799, -0.0000022745,0.0000022708,0.0000022693,0.0000022698,0.0000022707, -0.0000022707,0.0000022700,0.0000022699,0.0000022711,0.0000022744, -0.0000022801,0.0000022857,0.0000022890,0.0000022892,0.0000022865, -0.0000022819,0.0000022772,0.0000022740,0.0000022730,0.0000022701, -0.0000022666,0.0000022700,0.0000022828,0.0000022945,0.0000022972, -0.0000022945,0.0000022903,0.0000022873,0.0000022866,0.0000022877, -0.0000022917,0.0000022965,0.0000022997,0.0000023009,0.0000023008, -0.0000023001,0.0000022988,0.0000022970,0.0000022947,0.0000022896, -0.0000022811,0.0000022727,0.0000022671,0.0000022650,0.0000022671, -0.0000022719,0.0000022785,0.0000022849,0.0000022882,0.0000022873, -0.0000022815,0.0000022751,0.0000022705,0.0000022629,0.0000022533, -0.0000022481,0.0000022500,0.0000022581,0.0000022700,0.0000022870, -0.0000023099,0.0000023327,0.0000023526,0.0000023712,0.0000023795, -0.0000023756,0.0000023653,0.0000023620,0.0000023738,0.0000023927, -0.0000024022,0.0000024074,0.0000024170,0.0000024303,0.0000024535, -0.0000024833,0.0000025121,0.0000025355,0.0000025457,0.0000025770, -0.0000026301,0.0000026592,0.0000026561,0.0000026422,0.0000026203, -0.0000025731,0.0000025277,0.0000025010,0.0000024811,0.0000024422, -0.0000024034,0.0000023884,0.0000023900,0.0000024033,0.0000024186, -0.0000024248,0.0000024276,0.0000024308,0.0000024289,0.0000024467, -0.0000024832,0.0000024824,0.0000024985,0.0000025650,0.0000025980, -0.0000026015,0.0000025550,0.0000024898,0.0000024755,0.0000024819, -0.0000024755,0.0000024324,0.0000024024,0.0000024003,0.0000024049, -0.0000024133,0.0000024204,0.0000024226,0.0000024278,0.0000024363, -0.0000024417,0.0000024441,0.0000024445,0.0000024459,0.0000024472, -0.0000024472,0.0000024477,0.0000024477,0.0000024452,0.0000024423, -0.0000024437,0.0000024495,0.0000024506,0.0000024463,0.0000024431, -0.0000024418,0.0000024405,0.0000024402,0.0000024403,0.0000024395, -0.0000024382,0.0000024371,0.0000024370,0.0000024360,0.0000024339, -0.0000024324,0.0000024328,0.0000024354,0.0000024396,0.0000024429, -0.0000024457,0.0000024466,0.0000024457,0.0000024439,0.0000024412, -0.0000024379,0.0000024350,0.0000024348,0.0000024373,0.0000024415, -0.0000024466,0.0000024513,0.0000024549,0.0000024575,0.0000024609, -0.0000024650,0.0000024661,0.0000024623,0.0000024540,0.0000024480, -0.0000024477,0.0000024528,0.0000024596,0.0000024628,0.0000024624, -0.0000024621,0.0000024646,0.0000024688,0.0000024708,0.0000024754, -0.0000024915,0.0000025131,0.0000025285,0.0000025338,0.0000025367, -0.0000025443,0.0000025547,0.0000025717,0.0000025903,0.0000025966, -0.0000025908,0.0000025834,0.0000025824,0.0000025858,0.0000025906, -0.0000025911,0.0000025865,0.0000025792,0.0000025699,0.0000025633, -0.0000025617,0.0000025635,0.0000025669,0.0000025682,0.0000025656, -0.0000025596,0.0000025532,0.0000025504,0.0000025552,0.0000025653, -0.0000025744,0.0000025796,0.0000025817,0.0000025813,0.0000025790, -0.0000025760,0.0000025737,0.0000025709,0.0000025644,0.0000025556, -0.0000025496,0.0000025480,0.0000025415,0.0000025235,0.0000025058, -0.0000024984,0.0000024946,0.0000024870,0.0000024777,0.0000024703, -0.0000024641,0.0000024559,0.0000024443,0.0000024316,0.0000024202, -0.0000024117,0.0000024074,0.0000024075,0.0000024114,0.0000024173, -0.0000024226,0.0000024256,0.0000024256,0.0000024239,0.0000024214, -0.0000024196,0.0000024198,0.0000024222,0.0000024256,0.0000024291, -0.0000024324,0.0000024349,0.0000024360,0.0000024358,0.0000024340, -0.0000024296,0.0000024213,0.0000024090,0.0000023957,0.0000023858, -0.0000023822,0.0000023826,0.0000023813,0.0000023687,0.0000023371, -0.0000022948,0.0000022641,0.0000022516,0.0000022436,0.0000022343, -0.0000022278,0.0000022252,0.0000022248,0.0000022232,0.0000022182, -0.0000022123,0.0000022081,0.0000022030,0.0000022006,0.0000022070, -0.0000022232,0.0000022379,0.0000022477,0.0000022561,0.0000022661, -0.0000022799,0.0000022943,0.0000023058,0.0000023168,0.0000023273, -0.0000023340,0.0000023429,0.0000023655,0.0000023973,0.0000024182, -0.0000024258,0.0000024377,0.0000024565,0.0000024678,0.0000024676, -0.0000024621,0.0000024553,0.0000024482,0.0000024410,0.0000024352, -0.0000024322,0.0000024330,0.0000024357,0.0000024358,0.0000024347, -0.0000024404,0.0000024569,0.0000024767,0.0000024881,0.0000024882, -0.0000024831,0.0000024817,0.0000024866,0.0000024898,0.0000024875, -0.0000024804,0.0000024778,0.0000024818,0.0000024909,0.0000024971, -0.0000024973,0.0000024936,0.0000024929,0.0000025020,0.0000025169, -0.0000025281,0.0000025331,0.0000025353,0.0000025369,0.0000025379, -0.0000025387,0.0000025397,0.0000025407,0.0000025409,0.0000025398, -0.0000025372,0.0000025338,0.0000025309,0.0000025300,0.0000025309, -0.0000025317,0.0000025310,0.0000025289,0.0000025240,0.0000025184, -0.0000025154,0.0000025154,0.0000025176,0.0000025213,0.0000025253, -0.0000025295,0.0000025342,0.0000025388,0.0000025427,0.0000025457, -0.0000025483,0.0000025507,0.0000025533,0.0000025551,0.0000025549, -0.0000025519,0.0000025492,0.0000025471,0.0000025438,0.0000025383, -0.0000025325,0.0000025271,0.0000025240,0.0000025262,0.0000025363, -0.0000025457,0.0000025489,0.0000025484,0.0000025497,0.0000025566, -0.0000025662,0.0000025723,0.0000025752,0.0000025789,0.0000025848, -0.0000025939,0.0000026085,0.0000026252,0.0000026352,0.0000026359, -0.0000026311,0.0000026219,0.0000026113,0.0000026022,0.0000025962, -0.0000025916,0.0000025851,0.0000025752,0.0000025630,0.0000025536, -0.0000025509,0.0000025515,0.0000025528,0.0000025528,0.0000025494, -0.0000025420,0.0000025355,0.0000025333,0.0000025351,0.0000025441, -0.0000025608,0.0000025787,0.0000025917,0.0000025987,0.0000026011, -0.0000026007,0.0000025997,0.0000025990,0.0000025970,0.0000025926, -0.0000025854,0.0000025758,0.0000025655,0.0000025563,0.0000025475, -0.0000025378,0.0000025281,0.0000025209,0.0000025179,0.0000025186, -0.0000025223,0.0000025273,0.0000025317,0.0000025346,0.0000025359, -0.0000025367,0.0000025383,0.0000025409,0.0000025436,0.0000025455, -0.0000025462,0.0000025459,0.0000025438,0.0000025390,0.0000025318, -0.0000025237,0.0000025154,0.0000025053,0.0000024949,0.0000024929, -0.0000025037,0.0000025261,0.0000025595,0.0000026029,0.0000026366, -0.0000026474,0.0000026486,0.0000026502,0.0000026543,0.0000026607, -0.0000026681,0.0000026758,0.0000026844,0.0000026917,0.0000026932, -0.0000026893,0.0000026802,0.0000026708,0.0000026643,0.0000026568, -0.0000026463,0.0000026358,0.0000026269,0.0000026173,0.0000026053, -0.0000025882,0.0000025664,0.0000025539,0.0000025537,0.0000025612, -0.0000025656,0.0000025672,0.0000025681,0.0000025632,0.0000025516, -0.0000025395,0.0000025228,0.0000024994,0.0000024808,0.0000024711, -0.0000024636,0.0000024511,0.0000024295,0.0000024036,0.0000023816, -0.0000023647,0.0000023492,0.0000023351,0.0000023240,0.0000023160, -0.0000023145,0.0000023214,0.0000023312,0.0000023380,0.0000023400, -0.0000023379,0.0000023351,0.0000023338,0.0000023333,0.0000023324, -0.0000023307,0.0000023276,0.0000023250,0.0000023246,0.0000023268, -0.0000023309,0.0000023347,0.0000023361,0.0000023344,0.0000023317, -0.0000023274,0.0000023211,0.0000023148,0.0000023104,0.0000023069, -0.0000023033,0.0000023003,0.0000023000,0.0000023042,0.0000023081, -0.0000023067,0.0000023045,0.0000023059,0.0000023145,0.0000023312, -0.0000023475,0.0000023549,0.0000023579,0.0000023628,0.0000023716, -0.0000023928,0.0000024153,0.0000024250,0.0000024242,0.0000024201, -0.0000024289,0.0000024703,0.0000025217,0.0000025563,0.0000025720, -0.0000025799,0.0000025866,0.0000025931,0.0000025989,0.0000026035, -0.0000026060,0.0000026061,0.0000026037,0.0000025995,0.0000025926, -0.0000025833,0.0000025723,0.0000025594,0.0000025419,0.0000025184, -0.0000024909,0.0000024613,0.0000024344,0.0000024136,0.0000024000, -0.0000023930,0.0000023913,0.0000023923,0.0000023934,0.0000023939, -0.0000023939,0.0000023941,0.0000023938,0.0000023915,0.0000023860, -0.0000023783,0.0000023693,0.0000023609,0.0000023540,0.0000023468, -0.0000023387,0.0000023277,0.0000023146,0.0000023007,0.0000022878, -0.0000022784,0.0000022714,0.0000022652,0.0000022620,0.0000022637, -0.0000022678,0.0000022683,0.0000022659,0.0000022638,0.0000022620, -0.0000022590,0.0000022549,0.0000022513,0.0000022495,0.0000022493, -0.0000022494,0.0000022494,0.0000022495,0.0000022507,0.0000022525, -0.0000022537,0.0000022554,0.0000022569,0.0000022583,0.0000022599, -0.0000022601,0.0000022591,0.0000022576,0.0000022553,0.0000022529, -0.0000022523,0.0000022544,0.0000022580,0.0000022605,0.0000022640, -0.0000022670,0.0000022666,0.0000022651,0.0000022626,0.0000022562, -0.0000022474,0.0000022404,0.0000022361,0.0000022320,0.0000022272, -0.0000022235,0.0000022212,0.0000022194,0.0000022171,0.0000022140, -0.0000022108,0.0000022078,0.0000022040,0.0000021999,0.0000021956, -0.0000021902,0.0000021835,0.0000021770,0.0000021717,0.0000021676, -0.0000021643,0.0000021616,0.0000021601,0.0000021598,0.0000021605, -0.0000021617,0.0000021624,0.0000021627,0.0000021636,0.0000021644, -0.0000021646,0.0000021648,0.0000021660,0.0000021684,0.0000021713, -0.0000021739,0.0000021764,0.0000021785,0.0000021798,0.0000021816, -0.0000021849,0.0000021887,0.0000021918,0.0000021936,0.0000021949, -0.0000021960,0.0000021967,0.0000021978,0.0000021999,0.0000022028, -0.0000022061,0.0000022090,0.0000022108,0.0000022129,0.0000022164, -0.0000022214,0.0000022262,0.0000022288,0.0000022290,0.0000022282, -0.0000022271,0.0000022266,0.0000022274,0.0000022281,0.0000022248, -0.0000022147,0.0000022033,0.0000021934,0.0000021871,0.0000021912, -0.0000022085,0.0000022413,0.0000022787,0.0000023066,0.0000023163, -0.0000023204,0.0000023266,0.0000023273,0.0000023229,0.0000023165, -0.0000023109,0.0000023095,0.0000023122,0.0000023205,0.0000023327, -0.0000023458,0.0000023557,0.0000023591,0.0000023559,0.0000023458, -0.0000023339,0.0000023248,0.0000023193,0.0000023164,0.0000023149, -0.0000023136,0.0000023134,0.0000023144,0.0000023178,0.0000023234, -0.0000023292,0.0000023326,0.0000023342,0.0000023374,0.0000023459, -0.0000023605,0.0000023776,0.0000023926,0.0000024037,0.0000024123, -0.0000024204,0.0000024279,0.0000024329,0.0000024345,0.0000024340, -0.0000024342,0.0000024363,0.0000024397,0.0000024418,0.0000024420, -0.0000024412,0.0000024381,0.0000024336,0.0000024294,0.0000024259, -0.0000024244,0.0000024186,0.0000024102,0.0000024034,0.0000024005, -0.0000023985,0.0000023961,0.0000023975,0.0000024030,0.0000024066, -0.0000024083,0.0000024086,0.0000024029,0.0000023927,0.0000023862, -0.0000023827,0.0000023764,0.0000023646,0.0000023515,0.0000023434, -0.0000023423,0.0000023478,0.0000023585,0.0000023663,0.0000023694, -0.0000023694,0.0000023676,0.0000023633,0.0000023588,0.0000023570, -0.0000023579,0.0000023580,0.0000023544,0.0000023500,0.0000023516, -0.0000023611,0.0000023709,0.0000023741,0.0000023713,0.0000023639, -0.0000023544,0.0000023460,0.0000023414,0.0000023407,0.0000023412, -0.0000023406,0.0000023428,0.0000023517,0.0000023591,0.0000023577, -0.0000023501,0.0000023460,0.0000023462,0.0000023488,0.0000023495, -0.0000023476,0.0000023502,0.0000023602,0.0000023703,0.0000023765, -0.0000023799,0.0000023825,0.0000023860,0.0000023899,0.0000023923, -0.0000023920,0.0000023893,0.0000023858,0.0000023828,0.0000023808, -0.0000023799,0.0000023792,0.0000023778,0.0000023773,0.0000023800, -0.0000023842,0.0000023853,0.0000023814,0.0000023776,0.0000023765, -0.0000023780,0.0000023840,0.0000023893,0.0000023904,0.0000023883, -0.0000023791,0.0000023684,0.0000023626,0.0000023593,0.0000023582, -0.0000023614,0.0000023663,0.0000023679,0.0000023671,0.0000023674, -0.0000023698,0.0000023718,0.0000023727,0.0000023761,0.0000023826, -0.0000023899,0.0000023955,0.0000024012,0.0000024089,0.0000024171, -0.0000024251,0.0000024337,0.0000024419,0.0000024480,0.0000024529, -0.0000024577,0.0000024624,0.0000024652,0.0000024654,0.0000024640, -0.0000024586,0.0000024491,0.0000024379,0.0000024274,0.0000024206, -0.0000024197,0.0000024216,0.0000024255,0.0000024294,0.0000024326, -0.0000024345,0.0000024356,0.0000024349,0.0000024341,0.0000024447, -0.0000024700,0.0000024891,0.0000024941,0.0000024930,0.0000024934, -0.0000024996,0.0000025100,0.0000025236,0.0000025359,0.0000025409, -0.0000025380,0.0000025308,0.0000025206,0.0000025062,0.0000024917, -0.0000024837,0.0000024826,0.0000024855,0.0000024931,0.0000025010, -0.0000025025,0.0000024962,0.0000024864,0.0000024829,0.0000024825, -0.0000024758,0.0000024619,0.0000024493,0.0000024431,0.0000024416, -0.0000024414,0.0000024383,0.0000024280,0.0000024140,0.0000024034, -0.0000023981,0.0000023947,0.0000023895,0.0000023822,0.0000023751, -0.0000023693,0.0000023654,0.0000023642,0.0000023661,0.0000023703, -0.0000023759,0.0000023832,0.0000023911,0.0000023970,0.0000023998, -0.0000024016,0.0000024057,0.0000024146,0.0000024276,0.0000024411, -0.0000024510,0.0000024562,0.0000024577,0.0000024579,0.0000024595, -0.0000024638,0.0000024686,0.0000024720,0.0000024737,0.0000024738, -0.0000024726,0.0000024704,0.0000024692,0.0000024694,0.0000024699, -0.0000024698,0.0000024704,0.0000024737,0.0000024801,0.0000024868, -0.0000024927,0.0000024985,0.0000025038,0.0000025073,0.0000025085, -0.0000025080,0.0000025064,0.0000025055,0.0000025060,0.0000025078, -0.0000025117,0.0000025182,0.0000025255,0.0000025304,0.0000025317, -0.0000025304,0.0000025278,0.0000025263,0.0000025269,0.0000025287, -0.0000025301,0.0000025301,0.0000025288,0.0000025256,0.0000025190, -0.0000025098,0.0000025010,0.0000024941,0.0000024890,0.0000024852, -0.0000024826,0.0000024787,0.0000024709,0.0000024602,0.0000024522, -0.0000024491,0.0000024479,0.0000024466,0.0000024440,0.0000024419, -0.0000024411,0.0000024344,0.0000024154,0.0000023951,0.0000023864, -0.0000023830,0.0000023778,0.0000023743,0.0000023724,0.0000023675, -0.0000023599,0.0000023537,0.0000023507,0.0000023503,0.0000023549, -0.0000023725,0.0000023968,0.0000024139,0.0000024202,0.0000024224, -0.0000024260,0.0000024319,0.0000024401,0.0000024494,0.0000024572, -0.0000024615,0.0000024620,0.0000024592,0.0000024536,0.0000024478, -0.0000024441,0.0000024434,0.0000024464,0.0000024528,0.0000024619, -0.0000024762,0.0000024966,0.0000025157,0.0000025249,0.0000025251, -0.0000025242,0.0000025267,0.0000025358,0.0000025470,0.0000025535, -0.0000025563,0.0000025600,0.0000025659,0.0000025733,0.0000025818, -0.0000025900,0.0000025966,0.0000026009,0.0000026012,0.0000025964, -0.0000025879,0.0000025775,0.0000025648,0.0000025507,0.0000025375, -0.0000025265,0.0000025195,0.0000025189,0.0000025243,0.0000025298, -0.0000025303,0.0000025271,0.0000025230,0.0000025180,0.0000025099, -0.0000024978,0.0000024857,0.0000024785,0.0000024749,0.0000024720, -0.0000024692,0.0000024667,0.0000024640,0.0000024600,0.0000024546, -0.0000024487,0.0000024430,0.0000024398,0.0000024399,0.0000024427, -0.0000024471,0.0000024524,0.0000024558,0.0000024559,0.0000024493, -0.0000024300,0.0000024021,0.0000023812,0.0000023812,0.0000024048, -0.0000024286,0.0000024578,0.0000024859,0.0000024884,0.0000024741, -0.0000024668,0.0000024719,0.0000024817,0.0000024940,0.0000025049, -0.0000025088,0.0000025073,0.0000025037,0.0000025007,0.0000024978, -0.0000024944,0.0000024904,0.0000024871,0.0000024850,0.0000024838, -0.0000024825,0.0000024835,0.0000024867,0.0000024894,0.0000024936, -0.0000025028,0.0000025157,0.0000025255,0.0000025280,0.0000025262, -0.0000025222,0.0000025198,0.0000025191,0.0000025150,0.0000025086, -0.0000025051,0.0000025044,0.0000025044,0.0000025062,0.0000025100, -0.0000025140,0.0000025184,0.0000025250,0.0000025307,0.0000025317, -0.0000025305,0.0000025277,0.0000025221,0.0000025151,0.0000025139, -0.0000025186,0.0000025214,0.0000025167,0.0000025019,0.0000024839, -0.0000024701,0.0000024600,0.0000024477,0.0000024340,0.0000024239, -0.0000024173,0.0000024105,0.0000024029,0.0000023961,0.0000023899, -0.0000023845,0.0000023795,0.0000023726,0.0000023635,0.0000023530, -0.0000023445,0.0000023409,0.0000023445,0.0000023522,0.0000023605, -0.0000023673,0.0000023726,0.0000023761,0.0000023764,0.0000023742, -0.0000023703,0.0000023654,0.0000023612,0.0000023572,0.0000023543, -0.0000023533,0.0000023540,0.0000023563,0.0000023578,0.0000023576, -0.0000023545,0.0000023480,0.0000023385,0.0000023291,0.0000023214, -0.0000023156,0.0000023089,0.0000022999,0.0000022904,0.0000022824, -0.0000022759,0.0000022709,0.0000022674,0.0000022654,0.0000022648, -0.0000022655,0.0000022672,0.0000022691,0.0000022702,0.0000022705, -0.0000022711,0.0000022735,0.0000022783,0.0000022847,0.0000022913, -0.0000022952,0.0000022952,0.0000022910,0.0000022835,0.0000022759, -0.0000022717,0.0000022709,0.0000022682,0.0000022640,0.0000022671, -0.0000022816,0.0000022955,0.0000022989,0.0000022964,0.0000022926, -0.0000022903,0.0000022900,0.0000022909,0.0000022936,0.0000022978, -0.0000023016,0.0000023039,0.0000023043,0.0000023033,0.0000023008, -0.0000022976,0.0000022945,0.0000022900,0.0000022824,0.0000022739, -0.0000022675,0.0000022648,0.0000022650,0.0000022677,0.0000022729, -0.0000022788,0.0000022831,0.0000022838,0.0000022795,0.0000022739, -0.0000022695,0.0000022630,0.0000022542,0.0000022492,0.0000022510, -0.0000022576,0.0000022680,0.0000022832,0.0000023051,0.0000023281, -0.0000023481,0.0000023672,0.0000023791,0.0000023772,0.0000023661, -0.0000023597,0.0000023666,0.0000023858,0.0000023984,0.0000024030, -0.0000024108,0.0000024239,0.0000024450,0.0000024733,0.0000025002, -0.0000025256,0.0000025408,0.0000025582,0.0000026058,0.0000026494, -0.0000026582,0.0000026501,0.0000026292,0.0000025836,0.0000025364, -0.0000025070,0.0000024864,0.0000024464,0.0000024085,0.0000023957, -0.0000023956,0.0000024028,0.0000024151,0.0000024224,0.0000024245, -0.0000024310,0.0000024296,0.0000024366,0.0000024726,0.0000024859, -0.0000024823,0.0000025436,0.0000025935,0.0000026027,0.0000025760, -0.0000025044,0.0000024769,0.0000024822,0.0000024811,0.0000024416, -0.0000024056,0.0000024011,0.0000024049,0.0000024143,0.0000024239, -0.0000024284,0.0000024376,0.0000024467,0.0000024489,0.0000024480, -0.0000024473,0.0000024475,0.0000024468,0.0000024454,0.0000024441, -0.0000024417,0.0000024377,0.0000024364,0.0000024405,0.0000024475, -0.0000024482,0.0000024445,0.0000024423,0.0000024414,0.0000024398, -0.0000024384,0.0000024378,0.0000024363,0.0000024343,0.0000024325, -0.0000024320,0.0000024312,0.0000024291,0.0000024273,0.0000024275, -0.0000024293,0.0000024327,0.0000024354,0.0000024373,0.0000024374, -0.0000024361,0.0000024345,0.0000024326,0.0000024308,0.0000024297, -0.0000024301,0.0000024324,0.0000024361,0.0000024410,0.0000024459, -0.0000024499,0.0000024521,0.0000024544,0.0000024586,0.0000024612, -0.0000024581,0.0000024482,0.0000024399,0.0000024383,0.0000024423, -0.0000024511,0.0000024580,0.0000024592,0.0000024573,0.0000024581, -0.0000024643,0.0000024701,0.0000024741,0.0000024851,0.0000025049, -0.0000025233,0.0000025322,0.0000025344,0.0000025396,0.0000025487, -0.0000025595,0.0000025764,0.0000025933,0.0000025986,0.0000025994, -0.0000025991,0.0000025999,0.0000025992,0.0000025940,0.0000025854, -0.0000025743,0.0000025634,0.0000025564,0.0000025546,0.0000025564, -0.0000025604,0.0000025639,0.0000025649,0.0000025616,0.0000025553, -0.0000025500,0.0000025499,0.0000025557,0.0000025655,0.0000025737, -0.0000025776,0.0000025779,0.0000025765,0.0000025742,0.0000025717, -0.0000025668,0.0000025589,0.0000025518,0.0000025496,0.0000025464, -0.0000025320,0.0000025120,0.0000025001,0.0000024950,0.0000024885, -0.0000024803,0.0000024737,0.0000024670,0.0000024559,0.0000024399, -0.0000024224,0.0000024078,0.0000023971,0.0000023898,0.0000023852, -0.0000023834,0.0000023842,0.0000023877,0.0000023937,0.0000024012, -0.0000024078,0.0000024120,0.0000024130,0.0000024123,0.0000024116, -0.0000024125,0.0000024158,0.0000024198,0.0000024228,0.0000024243, -0.0000024242,0.0000024224,0.0000024187,0.0000024126,0.0000024041, -0.0000023949,0.0000023877,0.0000023845,0.0000023843,0.0000023838, -0.0000023769,0.0000023566,0.0000023205,0.0000022808,0.0000022567, -0.0000022473,0.0000022394,0.0000022312,0.0000022260,0.0000022244, -0.0000022255,0.0000022265,0.0000022237,0.0000022169,0.0000022108, -0.0000022052,0.0000022016,0.0000022061,0.0000022207,0.0000022349, -0.0000022452,0.0000022537,0.0000022625,0.0000022738,0.0000022874, -0.0000022991,0.0000023086,0.0000023193,0.0000023290,0.0000023351, -0.0000023460,0.0000023707,0.0000024001,0.0000024168,0.0000024232, -0.0000024359,0.0000024539,0.0000024630,0.0000024624,0.0000024581, -0.0000024510,0.0000024424,0.0000024354,0.0000024315,0.0000024317, -0.0000024361,0.0000024398,0.0000024392,0.0000024399,0.0000024491, -0.0000024665,0.0000024824,0.0000024873,0.0000024852,0.0000024812, -0.0000024835,0.0000024901,0.0000024926,0.0000024875,0.0000024794, -0.0000024768,0.0000024809,0.0000024881,0.0000024924,0.0000024924, -0.0000024892,0.0000024891,0.0000024983,0.0000025127,0.0000025241, -0.0000025300,0.0000025333,0.0000025358,0.0000025378,0.0000025390, -0.0000025398,0.0000025402,0.0000025401,0.0000025390,0.0000025362, -0.0000025332,0.0000025312,0.0000025310,0.0000025316,0.0000025309, -0.0000025285,0.0000025244,0.0000025195,0.0000025160,0.0000025152, -0.0000025176,0.0000025221,0.0000025269,0.0000025314,0.0000025362, -0.0000025411,0.0000025452,0.0000025480,0.0000025491,0.0000025495, -0.0000025502,0.0000025522,0.0000025546,0.0000025548,0.0000025523, -0.0000025485,0.0000025454,0.0000025422,0.0000025367,0.0000025292, -0.0000025222,0.0000025193,0.0000025235,0.0000025340,0.0000025433, -0.0000025468,0.0000025461,0.0000025458,0.0000025502,0.0000025584, -0.0000025656,0.0000025696,0.0000025730,0.0000025782,0.0000025856, -0.0000025973,0.0000026134,0.0000026283,0.0000026361,0.0000026368, -0.0000026329,0.0000026245,0.0000026141,0.0000026035,0.0000025938, -0.0000025850,0.0000025752,0.0000025645,0.0000025564,0.0000025533, -0.0000025526,0.0000025529,0.0000025528,0.0000025490,0.0000025419, -0.0000025361,0.0000025352,0.0000025399,0.0000025520,0.0000025691, -0.0000025850,0.0000025953,0.0000025992,0.0000025988,0.0000025956, -0.0000025930,0.0000025923,0.0000025914,0.0000025890,0.0000025837, -0.0000025742,0.0000025620,0.0000025510,0.0000025420,0.0000025329, -0.0000025241,0.0000025181,0.0000025157,0.0000025157,0.0000025176, -0.0000025219,0.0000025271,0.0000025315,0.0000025338,0.0000025342, -0.0000025338,0.0000025338,0.0000025350,0.0000025376,0.0000025393, -0.0000025396,0.0000025370,0.0000025315,0.0000025249,0.0000025183, -0.0000025096,0.0000024972,0.0000024886,0.0000024924,0.0000025107, -0.0000025419,0.0000025858,0.0000026260,0.0000026442,0.0000026478, -0.0000026500,0.0000026538,0.0000026592,0.0000026653,0.0000026724, -0.0000026810,0.0000026891,0.0000026930,0.0000026918,0.0000026835, -0.0000026728,0.0000026647,0.0000026580,0.0000026497,0.0000026406, -0.0000026330,0.0000026250,0.0000026136,0.0000025991,0.0000025791, -0.0000025600,0.0000025553,0.0000025624,0.0000025721,0.0000025775, -0.0000025789,0.0000025774,0.0000025679,0.0000025553,0.0000025439, -0.0000025255,0.0000025026,0.0000024870,0.0000024779,0.0000024673, -0.0000024479,0.0000024203,0.0000023955,0.0000023788,0.0000023653, -0.0000023499,0.0000023350,0.0000023242,0.0000023170,0.0000023134, -0.0000023137,0.0000023171,0.0000023226,0.0000023273,0.0000023292, -0.0000023289,0.0000023289,0.0000023302,0.0000023316,0.0000023315, -0.0000023296,0.0000023256,0.0000023199,0.0000023161,0.0000023163, -0.0000023184,0.0000023206,0.0000023217,0.0000023224,0.0000023217, -0.0000023192,0.0000023151,0.0000023113,0.0000023072,0.0000023024, -0.0000022974,0.0000022950,0.0000022972,0.0000023008,0.0000022988, -0.0000022948,0.0000022949,0.0000022995,0.0000023135,0.0000023338, -0.0000023482,0.0000023528,0.0000023566,0.0000023615,0.0000023733, -0.0000023957,0.0000024114,0.0000024155,0.0000024137,0.0000024104, -0.0000024191,0.0000024585,0.0000025104,0.0000025483,0.0000025680, -0.0000025768,0.0000025808,0.0000025833,0.0000025860,0.0000025881, -0.0000025882,0.0000025854,0.0000025798,0.0000025711,0.0000025578, -0.0000025402,0.0000025191,0.0000024944,0.0000024670,0.0000024406, -0.0000024181,0.0000024027,0.0000023943,0.0000023901,0.0000023879, -0.0000023866,0.0000023855,0.0000023847,0.0000023851,0.0000023860, -0.0000023868,0.0000023866,0.0000023849,0.0000023812,0.0000023761, -0.0000023693,0.0000023616,0.0000023539,0.0000023461,0.0000023378, -0.0000023269,0.0000023143,0.0000023009,0.0000022877,0.0000022783, -0.0000022722,0.0000022670,0.0000022634,0.0000022631,0.0000022665, -0.0000022685,0.0000022666,0.0000022638,0.0000022618,0.0000022590, -0.0000022551,0.0000022514,0.0000022492,0.0000022484,0.0000022482, -0.0000022477,0.0000022474,0.0000022479,0.0000022495,0.0000022505, -0.0000022516,0.0000022533,0.0000022550,0.0000022572,0.0000022579, -0.0000022574,0.0000022567,0.0000022549,0.0000022522,0.0000022495, -0.0000022487,0.0000022505,0.0000022534,0.0000022571,0.0000022619, -0.0000022642,0.0000022638,0.0000022627,0.0000022588,0.0000022509, -0.0000022421,0.0000022355,0.0000022300,0.0000022252,0.0000022219, -0.0000022195,0.0000022173,0.0000022152,0.0000022127,0.0000022094, -0.0000022061,0.0000022032,0.0000022003,0.0000021971,0.0000021930, -0.0000021875,0.0000021813,0.0000021755,0.0000021712,0.0000021676, -0.0000021636,0.0000021598,0.0000021568,0.0000021555,0.0000021555, -0.0000021565,0.0000021575,0.0000021580,0.0000021587,0.0000021596, -0.0000021598,0.0000021592,0.0000021589,0.0000021603,0.0000021638, -0.0000021685,0.0000021737,0.0000021780,0.0000021811,0.0000021843, -0.0000021888,0.0000021934,0.0000021969,0.0000021993,0.0000022013, -0.0000022030,0.0000022042,0.0000022053,0.0000022069,0.0000022094, -0.0000022121,0.0000022132,0.0000022130,0.0000022135,0.0000022161, -0.0000022207,0.0000022256,0.0000022280,0.0000022280,0.0000022270, -0.0000022261,0.0000022262,0.0000022283,0.0000022312,0.0000022308, -0.0000022231,0.0000022108,0.0000021988,0.0000021892,0.0000021886, -0.0000022005,0.0000022290,0.0000022659,0.0000022984,0.0000023139, -0.0000023175,0.0000023240,0.0000023277,0.0000023258,0.0000023203, -0.0000023130,0.0000023073,0.0000023067,0.0000023116,0.0000023226, -0.0000023350,0.0000023451,0.0000023500,0.0000023482,0.0000023381, -0.0000023255,0.0000023172,0.0000023139,0.0000023130,0.0000023122, -0.0000023111,0.0000023091,0.0000023060,0.0000023033,0.0000023033, -0.0000023072,0.0000023142,0.0000023214,0.0000023265,0.0000023300, -0.0000023352,0.0000023452,0.0000023597,0.0000023758,0.0000023900, -0.0000024007,0.0000024085,0.0000024148,0.0000024202,0.0000024243, -0.0000024272,0.0000024300,0.0000024331,0.0000024363,0.0000024386, -0.0000024396,0.0000024390,0.0000024363,0.0000024324,0.0000024287, -0.0000024228,0.0000024188,0.0000024108,0.0000024021,0.0000023971, -0.0000023953,0.0000023924,0.0000023912,0.0000023949,0.0000023995, -0.0000024023,0.0000024030,0.0000023983,0.0000023892,0.0000023831, -0.0000023790,0.0000023705,0.0000023572,0.0000023456,0.0000023404, -0.0000023412,0.0000023485,0.0000023591,0.0000023657,0.0000023671, -0.0000023668,0.0000023649,0.0000023615,0.0000023588,0.0000023580, -0.0000023581,0.0000023565,0.0000023529,0.0000023527,0.0000023599, -0.0000023706,0.0000023762,0.0000023744,0.0000023652,0.0000023528, -0.0000023407,0.0000023326,0.0000023308,0.0000023353,0.0000023403, -0.0000023409,0.0000023414,0.0000023481,0.0000023584,0.0000023601, -0.0000023533,0.0000023472,0.0000023468,0.0000023489,0.0000023495, -0.0000023470,0.0000023478,0.0000023566,0.0000023674,0.0000023743, -0.0000023782,0.0000023817,0.0000023851,0.0000023883,0.0000023903, -0.0000023900,0.0000023871,0.0000023830,0.0000023799,0.0000023770, -0.0000023749,0.0000023738,0.0000023732,0.0000023743,0.0000023787, -0.0000023843,0.0000023870,0.0000023845,0.0000023810,0.0000023800, -0.0000023799,0.0000023826,0.0000023875,0.0000023894,0.0000023885, -0.0000023821,0.0000023705,0.0000023617,0.0000023577,0.0000023554, -0.0000023554,0.0000023596,0.0000023649,0.0000023674,0.0000023681, -0.0000023699,0.0000023730,0.0000023750,0.0000023753,0.0000023762, -0.0000023800,0.0000023856,0.0000023896,0.0000023937,0.0000024013, -0.0000024102,0.0000024184,0.0000024269,0.0000024349,0.0000024416, -0.0000024470,0.0000024522,0.0000024566,0.0000024583,0.0000024578, -0.0000024546,0.0000024470,0.0000024361,0.0000024249,0.0000024153, -0.0000024105,0.0000024108,0.0000024143,0.0000024195,0.0000024252, -0.0000024295,0.0000024319,0.0000024324,0.0000024309,0.0000024304, -0.0000024454,0.0000024721,0.0000024885,0.0000024912,0.0000024908, -0.0000024932,0.0000025010,0.0000025125,0.0000025267,0.0000025373, -0.0000025387,0.0000025351,0.0000025281,0.0000025161,0.0000025004, -0.0000024881,0.0000024829,0.0000024835,0.0000024882,0.0000024954, -0.0000024998,0.0000024980,0.0000024884,0.0000024802,0.0000024785, -0.0000024748,0.0000024634,0.0000024512,0.0000024455,0.0000024452, -0.0000024453,0.0000024422,0.0000024323,0.0000024163,0.0000024018, -0.0000023925,0.0000023859,0.0000023801,0.0000023740,0.0000023676, -0.0000023615,0.0000023562,0.0000023521,0.0000023503,0.0000023511, -0.0000023536,0.0000023579,0.0000023658,0.0000023760,0.0000023851, -0.0000023911,0.0000023951,0.0000023995,0.0000024062,0.0000024156, -0.0000024261,0.0000024360,0.0000024439,0.0000024492,0.0000024535, -0.0000024585,0.0000024643,0.0000024694,0.0000024734,0.0000024757, -0.0000024759,0.0000024753,0.0000024735,0.0000024731,0.0000024735, -0.0000024734,0.0000024725,0.0000024723,0.0000024743,0.0000024787, -0.0000024844,0.0000024899,0.0000024951,0.0000025000,0.0000025039, -0.0000025063,0.0000025068,0.0000025063,0.0000025060,0.0000025069, -0.0000025095,0.0000025136,0.0000025193,0.0000025252,0.0000025296, -0.0000025318,0.0000025316,0.0000025295,0.0000025272,0.0000025269, -0.0000025284,0.0000025309,0.0000025314,0.0000025309,0.0000025292, -0.0000025244,0.0000025157,0.0000025049,0.0000024949,0.0000024869, -0.0000024814,0.0000024784,0.0000024757,0.0000024698,0.0000024604, -0.0000024523,0.0000024492,0.0000024487,0.0000024490,0.0000024483, -0.0000024472,0.0000024467,0.0000024419,0.0000024246,0.0000024028, -0.0000023923,0.0000023895,0.0000023844,0.0000023785,0.0000023739, -0.0000023682,0.0000023612,0.0000023550,0.0000023508,0.0000023488, -0.0000023500,0.0000023615,0.0000023833,0.0000024043,0.0000024156, -0.0000024191,0.0000024206,0.0000024236,0.0000024288,0.0000024359, -0.0000024434,0.0000024488,0.0000024503,0.0000024489,0.0000024444, -0.0000024384,0.0000024327,0.0000024293,0.0000024293,0.0000024334, -0.0000024418,0.0000024533,0.0000024700,0.0000024927,0.0000025135, -0.0000025229,0.0000025228,0.0000025213,0.0000025233,0.0000025325, -0.0000025451,0.0000025539,0.0000025581,0.0000025625,0.0000025689, -0.0000025765,0.0000025844,0.0000025915,0.0000025969,0.0000025988, -0.0000025952,0.0000025855,0.0000025723,0.0000025583,0.0000025462, -0.0000025365,0.0000025272,0.0000025219,0.0000025223,0.0000025273, -0.0000025304,0.0000025295,0.0000025255,0.0000025194,0.0000025095, -0.0000024964,0.0000024856,0.0000024807,0.0000024793,0.0000024766, -0.0000024707,0.0000024633,0.0000024565,0.0000024510,0.0000024460, -0.0000024406,0.0000024350,0.0000024297,0.0000024257,0.0000024235, -0.0000024236,0.0000024273,0.0000024339,0.0000024420,0.0000024482, -0.0000024494,0.0000024436,0.0000024283,0.0000023970,0.0000023728, -0.0000023764,0.0000024063,0.0000024334,0.0000024606,0.0000024856, -0.0000024875,0.0000024755,0.0000024683,0.0000024719,0.0000024806, -0.0000024908,0.0000024993,0.0000025022,0.0000025010,0.0000024982, -0.0000024952,0.0000024907,0.0000024858,0.0000024822,0.0000024806, -0.0000024811,0.0000024817,0.0000024824,0.0000024852,0.0000024895, -0.0000024927,0.0000024976,0.0000025060,0.0000025158,0.0000025221, -0.0000025218,0.0000025184,0.0000025150,0.0000025136,0.0000025123, -0.0000025082,0.0000025040,0.0000025032,0.0000025034,0.0000025046, -0.0000025070,0.0000025098,0.0000025122,0.0000025155,0.0000025216, -0.0000025272,0.0000025294,0.0000025283,0.0000025235,0.0000025157, -0.0000025122,0.0000025162,0.0000025191,0.0000025173,0.0000025048, -0.0000024873,0.0000024729,0.0000024611,0.0000024473,0.0000024313, -0.0000024182,0.0000024104,0.0000024057,0.0000024014,0.0000023971, -0.0000023928,0.0000023883,0.0000023828,0.0000023760,0.0000023678, -0.0000023581,0.0000023475,0.0000023372,0.0000023289,0.0000023271, -0.0000023312,0.0000023373,0.0000023429,0.0000023490,0.0000023537, -0.0000023556,0.0000023557,0.0000023550,0.0000023549,0.0000023549, -0.0000023555,0.0000023571,0.0000023591,0.0000023607,0.0000023606, -0.0000023579,0.0000023523,0.0000023434,0.0000023335,0.0000023255, -0.0000023186,0.0000023105,0.0000022999,0.0000022881,0.0000022784, -0.0000022723,0.0000022697,0.0000022682,0.0000022662,0.0000022643, -0.0000022632,0.0000022633,0.0000022646,0.0000022676,0.0000022712, -0.0000022731,0.0000022742,0.0000022758,0.0000022786,0.0000022826, -0.0000022877,0.0000022929,0.0000022967,0.0000022970,0.0000022930, -0.0000022843,0.0000022748,0.0000022705,0.0000022701,0.0000022676, -0.0000022627,0.0000022655,0.0000022820,0.0000022973,0.0000023009, -0.0000022988,0.0000022957,0.0000022937,0.0000022932,0.0000022936, -0.0000022956,0.0000022994,0.0000023033,0.0000023062,0.0000023070, -0.0000023061,0.0000023031,0.0000022989,0.0000022948,0.0000022901, -0.0000022838,0.0000022766,0.0000022705,0.0000022665,0.0000022650, -0.0000022658,0.0000022689,0.0000022740,0.0000022788,0.0000022802, -0.0000022776,0.0000022725,0.0000022676,0.0000022611,0.0000022541, -0.0000022508,0.0000022523,0.0000022584,0.0000022681,0.0000022820, -0.0000023023,0.0000023249,0.0000023449,0.0000023639,0.0000023776, -0.0000023777,0.0000023671,0.0000023583,0.0000023615,0.0000023796, -0.0000023946,0.0000023993,0.0000024052,0.0000024177,0.0000024372, -0.0000024647,0.0000024896,0.0000025137,0.0000025349,0.0000025465, -0.0000025805,0.0000026306,0.0000026561,0.0000026537,0.0000026361, -0.0000025916,0.0000025437,0.0000025123,0.0000024909,0.0000024491, -0.0000024122,0.0000024027,0.0000024023,0.0000024044,0.0000024120, -0.0000024187,0.0000024203,0.0000024278,0.0000024305,0.0000024311, -0.0000024601,0.0000024872,0.0000024779,0.0000025206,0.0000025845, -0.0000026027,0.0000025933,0.0000025233,0.0000024815,0.0000024825, -0.0000024853,0.0000024525,0.0000024102,0.0000024015,0.0000024044, -0.0000024140,0.0000024267,0.0000024343,0.0000024455,0.0000024512, -0.0000024499,0.0000024478,0.0000024471,0.0000024468,0.0000024444, -0.0000024413,0.0000024384,0.0000024347,0.0000024310,0.0000024314, -0.0000024375,0.0000024442,0.0000024450,0.0000024432,0.0000024423, -0.0000024417,0.0000024397,0.0000024373,0.0000024357,0.0000024332, -0.0000024302,0.0000024272,0.0000024253,0.0000024240,0.0000024219, -0.0000024201,0.0000024203,0.0000024217,0.0000024243,0.0000024261, -0.0000024274,0.0000024277,0.0000024271,0.0000024267,0.0000024261, -0.0000024257,0.0000024254,0.0000024259,0.0000024274,0.0000024302, -0.0000024344,0.0000024390,0.0000024432,0.0000024454,0.0000024472, -0.0000024514,0.0000024548,0.0000024512,0.0000024397,0.0000024308, -0.0000024291,0.0000024330,0.0000024422,0.0000024517,0.0000024558, -0.0000024550,0.0000024542,0.0000024594,0.0000024685,0.0000024746, -0.0000024822,0.0000024976,0.0000025160,0.0000025283,0.0000025327, -0.0000025352,0.0000025428,0.0000025523,0.0000025621,0.0000025764, -0.0000025907,0.0000025988,0.0000026010,0.0000026002,0.0000025962, -0.0000025879,0.0000025764,0.0000025649,0.0000025558,0.0000025508, -0.0000025494,0.0000025505,0.0000025535,0.0000025567,0.0000025595, -0.0000025602,0.0000025573,0.0000025524,0.0000025495,0.0000025499, -0.0000025551,0.0000025626,0.0000025684,0.0000025704,0.0000025697, -0.0000025676,0.0000025641,0.0000025586,0.0000025528,0.0000025503, -0.0000025494,0.0000025399,0.0000025205,0.0000025038,0.0000024954, -0.0000024887,0.0000024815,0.0000024757,0.0000024688,0.0000024558, -0.0000024367,0.0000024170,0.0000024021,0.0000023931,0.0000023876, -0.0000023832,0.0000023798,0.0000023774,0.0000023763,0.0000023763, -0.0000023773,0.0000023800,0.0000023845,0.0000023903,0.0000023959, -0.0000023999,0.0000024016,0.0000024021,0.0000024033,0.0000024061, -0.0000024088,0.0000024098,0.0000024083,0.0000024052,0.0000024015, -0.0000023979,0.0000023943,0.0000023909,0.0000023886,0.0000023877, -0.0000023874,0.0000023824,0.0000023691,0.0000023435,0.0000023055, -0.0000022697,0.0000022510,0.0000022431,0.0000022355,0.0000022285, -0.0000022242,0.0000022234,0.0000022262,0.0000022297,0.0000022290, -0.0000022225,0.0000022145,0.0000022080,0.0000022039,0.0000022072, -0.0000022195,0.0000022331,0.0000022433,0.0000022519,0.0000022604, -0.0000022698,0.0000022813,0.0000022932,0.0000023028,0.0000023120, -0.0000023228,0.0000023315,0.0000023377,0.0000023509,0.0000023764, -0.0000024020,0.0000024144,0.0000024206,0.0000024347,0.0000024514, -0.0000024576,0.0000024571,0.0000024528,0.0000024448,0.0000024363, -0.0000024308,0.0000024292,0.0000024333,0.0000024409,0.0000024441, -0.0000024439,0.0000024460,0.0000024568,0.0000024725,0.0000024836, -0.0000024855,0.0000024819,0.0000024810,0.0000024869,0.0000024932, -0.0000024937,0.0000024875,0.0000024787,0.0000024762,0.0000024794, -0.0000024851,0.0000024885,0.0000024883,0.0000024857,0.0000024858, -0.0000024936,0.0000025063,0.0000025176,0.0000025253,0.0000025303, -0.0000025340,0.0000025367,0.0000025381,0.0000025385,0.0000025381, -0.0000025370,0.0000025351,0.0000025324,0.0000025299,0.0000025283, -0.0000025279,0.0000025275,0.0000025261,0.0000025235,0.0000025205, -0.0000025178,0.0000025166,0.0000025176,0.0000025212,0.0000025260, -0.0000025312,0.0000025364,0.0000025417,0.0000025467,0.0000025504, -0.0000025518,0.0000025510,0.0000025492,0.0000025487,0.0000025505, -0.0000025532,0.0000025541,0.0000025519,0.0000025474,0.0000025430, -0.0000025392,0.0000025337,0.0000025257,0.0000025180,0.0000025152, -0.0000025196,0.0000025301,0.0000025404,0.0000025452,0.0000025446, -0.0000025434,0.0000025449,0.0000025499,0.0000025564,0.0000025621, -0.0000025674,0.0000025735,0.0000025805,0.0000025895,0.0000026024, -0.0000026177,0.0000026310,0.0000026382,0.0000026394,0.0000026360, -0.0000026276,0.0000026161,0.0000026036,0.0000025916,0.0000025798, -0.0000025688,0.0000025608,0.0000025569,0.0000025554,0.0000025548, -0.0000025544,0.0000025515,0.0000025460,0.0000025416,0.0000025419, -0.0000025478,0.0000025600,0.0000025758,0.0000025901,0.0000025985, -0.0000025999,0.0000025969,0.0000025917,0.0000025883,0.0000025875, -0.0000025871,0.0000025858,0.0000025817,0.0000025728,0.0000025608, -0.0000025495,0.0000025400,0.0000025303,0.0000025213,0.0000025155, -0.0000025127,0.0000025122,0.0000025129,0.0000025160,0.0000025205, -0.0000025250,0.0000025284,0.0000025297,0.0000025291,0.0000025279, -0.0000025286,0.0000025312,0.0000025332,0.0000025327,0.0000025280, -0.0000025216,0.0000025167,0.0000025113,0.0000025007,0.0000024883, -0.0000024858,0.0000024975,0.0000025256,0.0000025684,0.0000026129, -0.0000026379,0.0000026449,0.0000026485,0.0000026532,0.0000026588, -0.0000026644,0.0000026697,0.0000026765,0.0000026846,0.0000026903, -0.0000026915,0.0000026862,0.0000026757,0.0000026667,0.0000026599, -0.0000026523,0.0000026439,0.0000026372,0.0000026318,0.0000026228, -0.0000026094,0.0000025923,0.0000025720,0.0000025595,0.0000025609, -0.0000025719,0.0000025825,0.0000025877,0.0000025886,0.0000025840, -0.0000025708,0.0000025579,0.0000025461,0.0000025268,0.0000025049, -0.0000024914,0.0000024821,0.0000024688,0.0000024439,0.0000024136, -0.0000023916,0.0000023781,0.0000023653,0.0000023488,0.0000023321, -0.0000023209,0.0000023164,0.0000023145,0.0000023134,0.0000023118, -0.0000023113,0.0000023128,0.0000023147,0.0000023153,0.0000023162, -0.0000023193,0.0000023242,0.0000023285,0.0000023301,0.0000023278, -0.0000023223,0.0000023160,0.0000023106,0.0000023081,0.0000023073, -0.0000023078,0.0000023102,0.0000023124,0.0000023127,0.0000023114, -0.0000023101,0.0000023079,0.0000023036,0.0000022973,0.0000022919, -0.0000022913,0.0000022940,0.0000022916,0.0000022864,0.0000022857, -0.0000022884,0.0000022978,0.0000023175,0.0000023377,0.0000023470, -0.0000023498,0.0000023535,0.0000023583,0.0000023734,0.0000023941, -0.0000024039,0.0000024055,0.0000024045,0.0000024028,0.0000024101, -0.0000024434,0.0000024902,0.0000025286,0.0000025516,0.0000025627, -0.0000025671,0.0000025682,0.0000025676,0.0000025648,0.0000025585, -0.0000025481,0.0000025337,0.0000025150,0.0000024924,0.0000024679, -0.0000024440,0.0000024231,0.0000024077,0.0000023983,0.0000023934, -0.0000023897,0.0000023849,0.0000023800,0.0000023769,0.0000023752, -0.0000023755,0.0000023772,0.0000023789,0.0000023797,0.0000023804, -0.0000023800,0.0000023780,0.0000023740,0.0000023671,0.0000023584, -0.0000023494,0.0000023412,0.0000023333,0.0000023239,0.0000023131, -0.0000023005,0.0000022872,0.0000022780,0.0000022728,0.0000022686, -0.0000022650,0.0000022635,0.0000022651,0.0000022679,0.0000022671, -0.0000022638,0.0000022609,0.0000022582,0.0000022544,0.0000022506, -0.0000022481,0.0000022468,0.0000022461,0.0000022455,0.0000022449, -0.0000022448,0.0000022459,0.0000022470,0.0000022479,0.0000022494, -0.0000022516,0.0000022540,0.0000022551,0.0000022550,0.0000022551, -0.0000022545,0.0000022520,0.0000022489,0.0000022463,0.0000022454, -0.0000022466,0.0000022498,0.0000022556,0.0000022606,0.0000022620, -0.0000022620,0.0000022602,0.0000022538,0.0000022448,0.0000022368, -0.0000022298,0.0000022241,0.0000022209,0.0000022183,0.0000022156, -0.0000022132,0.0000022108,0.0000022076,0.0000022043,0.0000022011, -0.0000021983,0.0000021955,0.0000021924,0.0000021889,0.0000021843, -0.0000021790,0.0000021744,0.0000021709,0.0000021679,0.0000021636, -0.0000021585,0.0000021545,0.0000021517,0.0000021501,0.0000021498, -0.0000021499,0.0000021499,0.0000021505,0.0000021522,0.0000021534, -0.0000021534,0.0000021526,0.0000021529,0.0000021570,0.0000021647, -0.0000021732,0.0000021796,0.0000021842,0.0000021885,0.0000021927, -0.0000021971,0.0000022010,0.0000022043,0.0000022071,0.0000022090, -0.0000022098,0.0000022098,0.0000022101,0.0000022113,0.0000022126, -0.0000022124,0.0000022109,0.0000022105,0.0000022130,0.0000022186, -0.0000022243,0.0000022267,0.0000022263,0.0000022251,0.0000022248, -0.0000022255,0.0000022280,0.0000022323,0.0000022344,0.0000022309, -0.0000022202,0.0000022066,0.0000021944,0.0000021889,0.0000021945, -0.0000022160,0.0000022507,0.0000022869,0.0000023097,0.0000023157, -0.0000023216,0.0000023278,0.0000023282,0.0000023244,0.0000023175, -0.0000023092,0.0000023042,0.0000023052,0.0000023130,0.0000023248, -0.0000023360,0.0000023422,0.0000023414,0.0000023323,0.0000023198, -0.0000023123,0.0000023105,0.0000023102,0.0000023100,0.0000023099, -0.0000023092,0.0000023070,0.0000023034,0.0000023000,0.0000022975, -0.0000022976,0.0000023017,0.0000023101,0.0000023198,0.0000023278, -0.0000023342,0.0000023409,0.0000023494,0.0000023594,0.0000023703, -0.0000023813,0.0000023915,0.0000024004,0.0000024076,0.0000024131, -0.0000024172,0.0000024205,0.0000024232,0.0000024253,0.0000024267, -0.0000024274,0.0000024272,0.0000024260,0.0000024246,0.0000024124, -0.0000024129,0.0000024088,0.0000024003,0.0000023934,0.0000023906, -0.0000023877,0.0000023842,0.0000023850,0.0000023895,0.0000023939, -0.0000023957,0.0000023930,0.0000023855,0.0000023799,0.0000023760, -0.0000023665,0.0000023523,0.0000023420,0.0000023393,0.0000023413, -0.0000023494,0.0000023587,0.0000023637,0.0000023644,0.0000023642, -0.0000023628,0.0000023608,0.0000023593,0.0000023584,0.0000023569, -0.0000023543,0.0000023537,0.0000023597,0.0000023696,0.0000023753, -0.0000023745,0.0000023656,0.0000023519,0.0000023383,0.0000023281, -0.0000023228,0.0000023242,0.0000023319,0.0000023399,0.0000023429, -0.0000023438,0.0000023490,0.0000023587,0.0000023623,0.0000023565, -0.0000023488,0.0000023477,0.0000023493,0.0000023494,0.0000023464, -0.0000023460,0.0000023533,0.0000023641,0.0000023715,0.0000023760, -0.0000023800,0.0000023832,0.0000023852,0.0000023861,0.0000023854, -0.0000023830,0.0000023801,0.0000023771,0.0000023737,0.0000023709, -0.0000023699,0.0000023703,0.0000023726,0.0000023776,0.0000023842, -0.0000023884,0.0000023874,0.0000023837,0.0000023828,0.0000023824, -0.0000023828,0.0000023861,0.0000023884,0.0000023878,0.0000023835, -0.0000023738,0.0000023626,0.0000023559,0.0000023531,0.0000023519, -0.0000023530,0.0000023581,0.0000023640,0.0000023678,0.0000023701, -0.0000023725,0.0000023756,0.0000023778,0.0000023776,0.0000023770, -0.0000023779,0.0000023810,0.0000023835,0.0000023861,0.0000023933, -0.0000024030,0.0000024127,0.0000024217,0.0000024297,0.0000024362, -0.0000024416,0.0000024466,0.0000024496,0.0000024496,0.0000024482, -0.0000024435,0.0000024344,0.0000024232,0.0000024123,0.0000024039, -0.0000024015,0.0000024032,0.0000024081,0.0000024151,0.0000024221, -0.0000024271,0.0000024297,0.0000024299,0.0000024274,0.0000024281, -0.0000024475,0.0000024737,0.0000024872,0.0000024893,0.0000024895, -0.0000024942,0.0000025030,0.0000025153,0.0000025295,0.0000025373, -0.0000025373,0.0000025334,0.0000025255,0.0000025113,0.0000024966, -0.0000024874,0.0000024843,0.0000024857,0.0000024904,0.0000024950, -0.0000024960,0.0000024903,0.0000024795,0.0000024729,0.0000024702, -0.0000024636,0.0000024540,0.0000024486,0.0000024488,0.0000024498, -0.0000024476,0.0000024381,0.0000024217,0.0000024041,0.0000023903, -0.0000023794,0.0000023706,0.0000023649,0.0000023612,0.0000023574, -0.0000023534,0.0000023495,0.0000023464,0.0000023448,0.0000023443, -0.0000023444,0.0000023460,0.0000023512,0.0000023602,0.0000023706, -0.0000023800,0.0000023880,0.0000023952,0.0000024018,0.0000024080, -0.0000024140,0.0000024206,0.0000024284,0.0000024372,0.0000024466, -0.0000024558,0.0000024634,0.0000024690,0.0000024726,0.0000024745, -0.0000024745,0.0000024735,0.0000024726,0.0000024728,0.0000024730, -0.0000024725,0.0000024712,0.0000024707,0.0000024716,0.0000024746, -0.0000024792,0.0000024841,0.0000024888,0.0000024938,0.0000024985, -0.0000025021,0.0000025038,0.0000025042,0.0000025045,0.0000025063, -0.0000025099,0.0000025147,0.0000025198,0.0000025244,0.0000025280, -0.0000025305,0.0000025317,0.0000025311,0.0000025294,0.0000025278, -0.0000025278,0.0000025294,0.0000025308,0.0000025307,0.0000025289, -0.0000025247,0.0000025172,0.0000025065,0.0000024948,0.0000024849, -0.0000024777,0.0000024739,0.0000024719,0.0000024684,0.0000024615, -0.0000024535,0.0000024492,0.0000024497,0.0000024523,0.0000024541, -0.0000024534,0.0000024519,0.0000024479,0.0000024334,0.0000024119, -0.0000023990,0.0000023959,0.0000023913,0.0000023832,0.0000023755, -0.0000023692,0.0000023638,0.0000023584,0.0000023526,0.0000023483, -0.0000023472,0.0000023519,0.0000023668,0.0000023870,0.0000024038, -0.0000024125,0.0000024150,0.0000024159,0.0000024182,0.0000024228, -0.0000024288,0.0000024342,0.0000024374,0.0000024381,0.0000024365, -0.0000024319,0.0000024259,0.0000024201,0.0000024165,0.0000024178, -0.0000024251,0.0000024356,0.0000024483,0.0000024677,0.0000024936, -0.0000025144,0.0000025202,0.0000025182,0.0000025157,0.0000025183, -0.0000025304,0.0000025464,0.0000025562,0.0000025606,0.0000025656, -0.0000025725,0.0000025803,0.0000025880,0.0000025941,0.0000025966, -0.0000025937,0.0000025831,0.0000025684,0.0000025551,0.0000025460, -0.0000025385,0.0000025307,0.0000025266,0.0000025271,0.0000025298, -0.0000025306,0.0000025279,0.0000025216,0.0000025106,0.0000024956, -0.0000024834,0.0000024799,0.0000024798,0.0000024772,0.0000024695, -0.0000024587,0.0000024478,0.0000024393,0.0000024340,0.0000024303, -0.0000024265,0.0000024225,0.0000024192,0.0000024164,0.0000024134, -0.0000024107,0.0000024103,0.0000024130,0.0000024191,0.0000024271, -0.0000024340,0.0000024371,0.0000024355,0.0000024235,0.0000023966, -0.0000023742,0.0000023775,0.0000024083,0.0000024370,0.0000024611, -0.0000024834,0.0000024867,0.0000024796,0.0000024715,0.0000024723, -0.0000024785,0.0000024861,0.0000024923,0.0000024943,0.0000024932, -0.0000024908,0.0000024860,0.0000024791,0.0000024733,0.0000024708, -0.0000024722,0.0000024753,0.0000024775,0.0000024797,0.0000024847, -0.0000024904,0.0000024947,0.0000024996,0.0000025066,0.0000025133, -0.0000025157,0.0000025139,0.0000025097,0.0000025070,0.0000025059, -0.0000025045,0.0000025016,0.0000025001,0.0000025006,0.0000025023, -0.0000025051,0.0000025075,0.0000025088,0.0000025101,0.0000025130, -0.0000025179,0.0000025231,0.0000025261,0.0000025252,0.0000025192, -0.0000025134,0.0000025152,0.0000025177,0.0000025150,0.0000025037, -0.0000024876,0.0000024728,0.0000024597,0.0000024445,0.0000024271, -0.0000024124,0.0000024028,0.0000023980,0.0000023960,0.0000023939, -0.0000023916,0.0000023886,0.0000023827,0.0000023740,0.0000023637, -0.0000023528,0.0000023420,0.0000023322,0.0000023228,0.0000023139, -0.0000023108,0.0000023137,0.0000023193,0.0000023252,0.0000023317, -0.0000023372,0.0000023418,0.0000023466,0.0000023511,0.0000023553, -0.0000023589,0.0000023615,0.0000023624,0.0000023613,0.0000023583, -0.0000023513,0.0000023420,0.0000023322,0.0000023241,0.0000023173, -0.0000023088,0.0000022975,0.0000022864,0.0000022783,0.0000022731, -0.0000022698,0.0000022682,0.0000022675,0.0000022672,0.0000022661, -0.0000022651,0.0000022649,0.0000022664,0.0000022690,0.0000022725, -0.0000022755,0.0000022774,0.0000022791,0.0000022813,0.0000022842, -0.0000022870,0.0000022895,0.0000022920,0.0000022945,0.0000022954, -0.0000022924,0.0000022837,0.0000022741,0.0000022706,0.0000022708, -0.0000022683,0.0000022618,0.0000022657,0.0000022842,0.0000022999, -0.0000023029,0.0000023014,0.0000022991,0.0000022968,0.0000022953, -0.0000022952,0.0000022971,0.0000023007,0.0000023046,0.0000023072, -0.0000023083,0.0000023078,0.0000023051,0.0000023011,0.0000022966, -0.0000022913,0.0000022854,0.0000022792,0.0000022729,0.0000022678, -0.0000022649,0.0000022641,0.0000022659,0.0000022706,0.0000022757, -0.0000022778,0.0000022762,0.0000022709,0.0000022644,0.0000022582, -0.0000022535,0.0000022516,0.0000022534,0.0000022604,0.0000022698, -0.0000022824,0.0000023016,0.0000023234,0.0000023428,0.0000023611, -0.0000023757,0.0000023772,0.0000023678,0.0000023574,0.0000023581, -0.0000023744,0.0000023907,0.0000023960,0.0000024005,0.0000024119, -0.0000024300,0.0000024565,0.0000024802,0.0000025017,0.0000025260, -0.0000025398,0.0000025598,0.0000026056,0.0000026450,0.0000026537, -0.0000026400,0.0000025969,0.0000025491,0.0000025168,0.0000024943, -0.0000024508,0.0000024147,0.0000024087,0.0000024094,0.0000024080, -0.0000024100,0.0000024143,0.0000024153,0.0000024216,0.0000024296, -0.0000024288,0.0000024487,0.0000024833,0.0000024782,0.0000024979, -0.0000025685,0.0000026019,0.0000026029,0.0000025458,0.0000024898, -0.0000024828,0.0000024870,0.0000024637,0.0000024167,0.0000024018, -0.0000024039,0.0000024127,0.0000024284,0.0000024391,0.0000024498, -0.0000024524,0.0000024499,0.0000024477,0.0000024470,0.0000024457, -0.0000024419,0.0000024370,0.0000024326,0.0000024283,0.0000024256, -0.0000024273,0.0000024340,0.0000024400,0.0000024416,0.0000024424, -0.0000024428,0.0000024424,0.0000024400,0.0000024362,0.0000024334, -0.0000024303,0.0000024267,0.0000024226,0.0000024189,0.0000024167, -0.0000024145,0.0000024127,0.0000024127,0.0000024140,0.0000024165, -0.0000024182,0.0000024192,0.0000024201,0.0000024205,0.0000024210, -0.0000024212,0.0000024212,0.0000024211,0.0000024212,0.0000024218, -0.0000024238,0.0000024273,0.0000024315,0.0000024353,0.0000024374, -0.0000024396,0.0000024441,0.0000024466,0.0000024412,0.0000024286, -0.0000024207,0.0000024203,0.0000024252,0.0000024347,0.0000024450, -0.0000024512,0.0000024527,0.0000024523,0.0000024552,0.0000024652, -0.0000024752,0.0000024820,0.0000024927,0.0000025082,0.0000025217, -0.0000025296,0.0000025326,0.0000025366,0.0000025451,0.0000025543, -0.0000025622,0.0000025717,0.0000025805,0.0000025845,0.0000025845, -0.0000025806,0.0000025732,0.0000025647,0.0000025576,0.0000025535, -0.0000025504,0.0000025487,0.0000025478,0.0000025483,0.0000025498, -0.0000025519,0.0000025549,0.0000025563,0.0000025543,0.0000025514, -0.0000025498,0.0000025504,0.0000025533,0.0000025571,0.0000025595, -0.0000025594,0.0000025574,0.0000025539,0.0000025505,0.0000025494, -0.0000025501,0.0000025450,0.0000025288,0.0000025100,0.0000024976, -0.0000024889,0.0000024810,0.0000024754,0.0000024690,0.0000024556, -0.0000024355,0.0000024158,0.0000024014,0.0000023918,0.0000023853, -0.0000023802,0.0000023758,0.0000023724,0.0000023702,0.0000023697, -0.0000023705,0.0000023719,0.0000023737,0.0000023753,0.0000023769, -0.0000023791,0.0000023826,0.0000023868,0.0000023904,0.0000023924, -0.0000023933,0.0000023943,0.0000023952,0.0000023948,0.0000023936, -0.0000023926,0.0000023925,0.0000023928,0.0000023927,0.0000023924, -0.0000023916,0.0000023871,0.0000023767,0.0000023592,0.0000023302, -0.0000022918,0.0000022608,0.0000022464,0.0000022393,0.0000022322, -0.0000022260,0.0000022225,0.0000022226,0.0000022265,0.0000022315, -0.0000022329,0.0000022279,0.0000022187,0.0000022108,0.0000022067, -0.0000022089,0.0000022193,0.0000022321,0.0000022420,0.0000022505, -0.0000022593,0.0000022682,0.0000022777,0.0000022884,0.0000022986, -0.0000023072,0.0000023168,0.0000023272,0.0000023346,0.0000023413, -0.0000023570,0.0000023820,0.0000024027,0.0000024113,0.0000024184, -0.0000024341,0.0000024483,0.0000024515,0.0000024508,0.0000024462, -0.0000024384,0.0000024315,0.0000024280,0.0000024294,0.0000024377, -0.0000024466,0.0000024486,0.0000024478,0.0000024512,0.0000024620, -0.0000024748,0.0000024819,0.0000024817,0.0000024802,0.0000024828, -0.0000024909,0.0000024968,0.0000024955,0.0000024872,0.0000024784, -0.0000024761,0.0000024783,0.0000024828,0.0000024854,0.0000024844, -0.0000024816,0.0000024819,0.0000024881,0.0000024983,0.0000025087, -0.0000025176,0.0000025250,0.0000025306,0.0000025339,0.0000025353, -0.0000025353,0.0000025344,0.0000025319,0.0000025285,0.0000025250, -0.0000025220,0.0000025206,0.0000025207,0.0000025213,0.0000025215, -0.0000025212,0.0000025202,0.0000025189,0.0000025179,0.0000025186, -0.0000025216,0.0000025264,0.0000025323,0.0000025384,0.0000025440, -0.0000025494,0.0000025533,0.0000025542,0.0000025522,0.0000025489, -0.0000025472,0.0000025484,0.0000025512,0.0000025526,0.0000025507, -0.0000025459,0.0000025407,0.0000025356,0.0000025298,0.0000025224, -0.0000025150,0.0000025117,0.0000025146,0.0000025244,0.0000025363, -0.0000025435,0.0000025438,0.0000025420,0.0000025412,0.0000025425, -0.0000025462,0.0000025522,0.0000025602,0.0000025689,0.0000025769, -0.0000025842,0.0000025934,0.0000026063,0.0000026211,0.0000026336, -0.0000026406,0.0000026413,0.0000026367,0.0000026280,0.0000026166, -0.0000026043,0.0000025915,0.0000025797,0.0000025708,0.0000025654, -0.0000025628,0.0000025618,0.0000025615,0.0000025595,0.0000025558, -0.0000025524,0.0000025520,0.0000025564,0.0000025664,0.0000025808, -0.0000025939,0.0000026007,0.0000026004,0.0000025956,0.0000025893, -0.0000025856,0.0000025844,0.0000025835,0.0000025822,0.0000025787, -0.0000025711,0.0000025605,0.0000025504,0.0000025402,0.0000025289, -0.0000025187,0.0000025119,0.0000025081,0.0000025069,0.0000025074, -0.0000025101,0.0000025138,0.0000025175,0.0000025207,0.0000025224, -0.0000025222,0.0000025217,0.0000025238,0.0000025268,0.0000025279, -0.0000025248,0.0000025178,0.0000025121,0.0000025089,0.0000025023, -0.0000024897,0.0000024815,0.0000024881,0.0000025108,0.0000025512, -0.0000025987,0.0000026300,0.0000026397,0.0000026448,0.0000026508, -0.0000026578,0.0000026638,0.0000026685,0.0000026733,0.0000026793, -0.0000026852,0.0000026888,0.0000026864,0.0000026779,0.0000026688, -0.0000026621,0.0000026557,0.0000026476,0.0000026406,0.0000026367, -0.0000026312,0.0000026205,0.0000026053,0.0000025861,0.0000025683, -0.0000025627,0.0000025690,0.0000025814,0.0000025917,0.0000025962, -0.0000025965,0.0000025888,0.0000025730,0.0000025597,0.0000025473, -0.0000025270,0.0000025060,0.0000024934,0.0000024836,0.0000024679, -0.0000024393,0.0000024084,0.0000023889,0.0000023765,0.0000023630, -0.0000023457,0.0000023277,0.0000023152,0.0000023115,0.0000023118, -0.0000023122,0.0000023111,0.0000023085,0.0000023059,0.0000023041, -0.0000023019,0.0000023008,0.0000023022,0.0000023069,0.0000023138, -0.0000023205,0.0000023244,0.0000023238,0.0000023186,0.0000023120, -0.0000023056,0.0000023004,0.0000022974,0.0000022979,0.0000023005, -0.0000023028,0.0000023038,0.0000023047,0.0000023051,0.0000023039, -0.0000022988,0.0000022916,0.0000022875,0.0000022881,0.0000022856, -0.0000022789,0.0000022771,0.0000022796,0.0000022858,0.0000023009, -0.0000023234,0.0000023390,0.0000023435,0.0000023455,0.0000023478, -0.0000023538,0.0000023722,0.0000023901,0.0000023956,0.0000023969, -0.0000023991,0.0000023995,0.0000024046,0.0000024256,0.0000024583, -0.0000024896,0.0000025116,0.0000025241,0.0000025284,0.0000025275, -0.0000025223,0.0000025127,0.0000024986,0.0000024809,0.0000024610, -0.0000024414,0.0000024244,0.0000024115,0.0000024030,0.0000023970, -0.0000023924,0.0000023877,0.0000023815,0.0000023742,0.0000023687, -0.0000023667,0.0000023668,0.0000023681,0.0000023708,0.0000023731, -0.0000023748,0.0000023764,0.0000023764,0.0000023738,0.0000023679, -0.0000023594,0.0000023503,0.0000023416,0.0000023341,0.0000023274, -0.0000023197,0.0000023104,0.0000022989,0.0000022865,0.0000022776, -0.0000022730,0.0000022693,0.0000022660,0.0000022639,0.0000022640, -0.0000022665,0.0000022672,0.0000022646,0.0000022604,0.0000022567, -0.0000022532,0.0000022498,0.0000022473,0.0000022457,0.0000022444, -0.0000022434,0.0000022424,0.0000022418,0.0000022422,0.0000022435, -0.0000022451,0.0000022466,0.0000022484,0.0000022506,0.0000022519, -0.0000022521,0.0000022528,0.0000022529,0.0000022514,0.0000022488, -0.0000022460,0.0000022433,0.0000022424,0.0000022440,0.0000022493, -0.0000022558,0.0000022594,0.0000022607,0.0000022610,0.0000022571, -0.0000022482,0.0000022394,0.0000022316,0.0000022246,0.0000022202, -0.0000022172,0.0000022145,0.0000022123,0.0000022099,0.0000022063, -0.0000022026,0.0000021992,0.0000021961,0.0000021933,0.0000021908, -0.0000021883,0.0000021852,0.0000021814,0.0000021767,0.0000021726, -0.0000021699,0.0000021672,0.0000021632,0.0000021584,0.0000021538, -0.0000021502,0.0000021469,0.0000021447,0.0000021432,0.0000021419, -0.0000021415,0.0000021427,0.0000021450,0.0000021470,0.0000021477, -0.0000021479,0.0000021508,0.0000021586,0.0000021692,0.0000021786, -0.0000021854,0.0000021897,0.0000021934,0.0000021977,0.0000022022, -0.0000022061,0.0000022090,0.0000022099,0.0000022096,0.0000022088, -0.0000022086,0.0000022090,0.0000022092,0.0000022080,0.0000022056, -0.0000022052,0.0000022089,0.0000022158,0.0000022223,0.0000022248, -0.0000022241,0.0000022229,0.0000022230,0.0000022243,0.0000022270, -0.0000022315,0.0000022362,0.0000022366,0.0000022296,0.0000022167, -0.0000022024,0.0000021917,0.0000021913,0.0000022045,0.0000022347, -0.0000022717,0.0000023016,0.0000023142,0.0000023191,0.0000023266, -0.0000023296,0.0000023275,0.0000023219,0.0000023134,0.0000023055, -0.0000023028,0.0000023058,0.0000023150,0.0000023264,0.0000023348, -0.0000023358,0.0000023292,0.0000023179,0.0000023101,0.0000023078, -0.0000023073,0.0000023069,0.0000023073,0.0000023080,0.0000023079, -0.0000023066,0.0000023043,0.0000023011,0.0000022979,0.0000022964, -0.0000022972,0.0000023022,0.0000023120,0.0000023242,0.0000023345, -0.0000023417,0.0000023469,0.0000023517,0.0000023572,0.0000023640, -0.0000023717,0.0000023796,0.0000023865,0.0000023921,0.0000023966, -0.0000024003,0.0000024030,0.0000024052,0.0000024069,0.0000024082, -0.0000024094,0.0000024108,0.0000023947,0.0000023991,0.0000024001, -0.0000023959,0.0000023892,0.0000023849,0.0000023823,0.0000023779, -0.0000023753,0.0000023776,0.0000023828,0.0000023870,0.0000023870, -0.0000023822,0.0000023772,0.0000023739,0.0000023655,0.0000023517, -0.0000023414,0.0000023395,0.0000023422,0.0000023500,0.0000023579, -0.0000023617,0.0000023625,0.0000023625,0.0000023618,0.0000023606, -0.0000023592,0.0000023573,0.0000023548,0.0000023544,0.0000023593, -0.0000023677,0.0000023724,0.0000023716,0.0000023620,0.0000023488, -0.0000023366,0.0000023273,0.0000023215,0.0000023206,0.0000023240, -0.0000023325,0.0000023408,0.0000023459,0.0000023492,0.0000023539, -0.0000023609,0.0000023642,0.0000023590,0.0000023502,0.0000023483, -0.0000023500,0.0000023496,0.0000023463,0.0000023458,0.0000023510, -0.0000023608,0.0000023686,0.0000023736,0.0000023778,0.0000023803, -0.0000023809,0.0000023806,0.0000023792,0.0000023770,0.0000023757, -0.0000023740,0.0000023707,0.0000023677,0.0000023672,0.0000023685, -0.0000023716,0.0000023768,0.0000023835,0.0000023888,0.0000023894, -0.0000023858,0.0000023846,0.0000023845,0.0000023840,0.0000023855, -0.0000023876,0.0000023872,0.0000023838,0.0000023768,0.0000023659, -0.0000023558,0.0000023504,0.0000023488,0.0000023488,0.0000023513, -0.0000023574,0.0000023642,0.0000023691,0.0000023720,0.0000023746, -0.0000023777,0.0000023796,0.0000023798,0.0000023782,0.0000023770, -0.0000023769,0.0000023770,0.0000023786,0.0000023855,0.0000023962, -0.0000024072,0.0000024175,0.0000024263,0.0000024327,0.0000024379, -0.0000024415,0.0000024424,0.0000024414,0.0000024385,0.0000024318, -0.0000024216,0.0000024104,0.0000023995,0.0000023922,0.0000023914, -0.0000023952,0.0000024027,0.0000024118,0.0000024196,0.0000024250, -0.0000024274,0.0000024271,0.0000024248,0.0000024277,0.0000024492, -0.0000024743,0.0000024856,0.0000024871,0.0000024892,0.0000024962, -0.0000025057,0.0000025186,0.0000025318,0.0000025372,0.0000025362, -0.0000025321,0.0000025224,0.0000025080,0.0000024961,0.0000024895, -0.0000024871,0.0000024886,0.0000024920,0.0000024935,0.0000024912, -0.0000024821,0.0000024713,0.0000024654,0.0000024619,0.0000024567, -0.0000024528,0.0000024532,0.0000024547,0.0000024537,0.0000024453, -0.0000024290,0.0000024096,0.0000023922,0.0000023769,0.0000023639, -0.0000023563,0.0000023544,0.0000023537,0.0000023523,0.0000023502, -0.0000023478,0.0000023455,0.0000023439,0.0000023432,0.0000023427, -0.0000023420,0.0000023436,0.0000023485,0.0000023569,0.0000023677, -0.0000023792,0.0000023893,0.0000023969,0.0000024026,0.0000024068, -0.0000024110,0.0000024168,0.0000024251,0.0000024359,0.0000024474, -0.0000024574,0.0000024649,0.0000024698,0.0000024724,0.0000024728, -0.0000024722,0.0000024718,0.0000024718,0.0000024712,0.0000024699, -0.0000024682,0.0000024668,0.0000024664,0.0000024679,0.0000024712, -0.0000024750,0.0000024793,0.0000024843,0.0000024898,0.0000024947, -0.0000024979,0.0000024993,0.0000025005,0.0000025033,0.0000025078, -0.0000025129,0.0000025179,0.0000025222,0.0000025255,0.0000025281, -0.0000025303,0.0000025314,0.0000025308,0.0000025288,0.0000025267, -0.0000025262,0.0000025274,0.0000025282,0.0000025267,0.0000025224, -0.0000025157,0.0000025064,0.0000024947,0.0000024832,0.0000024744, -0.0000024696,0.0000024680,0.0000024666,0.0000024617,0.0000024541, -0.0000024489,0.0000024498,0.0000024548,0.0000024592,0.0000024592, -0.0000024564,0.0000024525,0.0000024419,0.0000024222,0.0000024061, -0.0000024007,0.0000023966,0.0000023875,0.0000023773,0.0000023701, -0.0000023666,0.0000023635,0.0000023571,0.0000023494,0.0000023449, -0.0000023452,0.0000023521,0.0000023665,0.0000023843,0.0000023988, -0.0000024062,0.0000024081,0.0000024085,0.0000024101,0.0000024135, -0.0000024180,0.0000024231,0.0000024271,0.0000024282,0.0000024259, -0.0000024209,0.0000024149,0.0000024098,0.0000024085,0.0000024126, -0.0000024213,0.0000024320,0.0000024468,0.0000024706,0.0000024981, -0.0000025144,0.0000025159,0.0000025119,0.0000025097,0.0000025149, -0.0000025315,0.0000025487,0.0000025582,0.0000025638,0.0000025706, -0.0000025785,0.0000025866,0.0000025926,0.0000025948,0.0000025911, -0.0000025803,0.0000025671,0.0000025561,0.0000025487,0.0000025418, -0.0000025351,0.0000025323,0.0000025323,0.0000025324,0.0000025302, -0.0000025247,0.0000025136,0.0000024964,0.0000024812,0.0000024764, -0.0000024768,0.0000024742,0.0000024646,0.0000024515,0.0000024389, -0.0000024292,0.0000024232,0.0000024197,0.0000024168,0.0000024134, -0.0000024102,0.0000024080,0.0000024068,0.0000024057,0.0000024039, -0.0000024018,0.0000024006,0.0000024016,0.0000024056,0.0000024115, -0.0000024177,0.0000024224,0.0000024248,0.0000024202,0.0000024024, -0.0000023811,0.0000023809,0.0000024093,0.0000024377,0.0000024593, -0.0000024810,0.0000024903,0.0000024841,0.0000024757,0.0000024733, -0.0000024761,0.0000024818,0.0000024865,0.0000024874,0.0000024856, -0.0000024817,0.0000024746,0.0000024661,0.0000024605,0.0000024610, -0.0000024646,0.0000024688,0.0000024723,0.0000024762,0.0000024818, -0.0000024883,0.0000024929,0.0000024975,0.0000025026,0.0000025067, -0.0000025074,0.0000025043,0.0000024997,0.0000024975,0.0000024970, -0.0000024968,0.0000024965,0.0000024968,0.0000024982,0.0000025012, -0.0000025054,0.0000025074,0.0000025076,0.0000025081,0.0000025101, -0.0000025143,0.0000025185,0.0000025211,0.0000025202,0.0000025169, -0.0000025176,0.0000025204,0.0000025163,0.0000025017,0.0000024829, -0.0000024671,0.0000024541,0.0000024392,0.0000024221,0.0000024083, -0.0000024002,0.0000023955,0.0000023929,0.0000023907,0.0000023884, -0.0000023851,0.0000023782,0.0000023686,0.0000023573,0.0000023463, -0.0000023355,0.0000023266,0.0000023196,0.0000023133,0.0000023069, -0.0000023046,0.0000023069,0.0000023125,0.0000023194,0.0000023263, -0.0000023318,0.0000023366,0.0000023416,0.0000023468,0.0000023511, -0.0000023540,0.0000023547,0.0000023523,0.0000023457,0.0000023362, -0.0000023264,0.0000023186,0.0000023129,0.0000023058,0.0000022956, -0.0000022843,0.0000022769,0.0000022749,0.0000022744,0.0000022721, -0.0000022700,0.0000022688,0.0000022692,0.0000022698,0.0000022697, -0.0000022694,0.0000022702,0.0000022719,0.0000022742,0.0000022764, -0.0000022777,0.0000022787,0.0000022803,0.0000022833,0.0000022865, -0.0000022890,0.0000022897,0.0000022895,0.0000022906,0.0000022920, -0.0000022899,0.0000022823,0.0000022744,0.0000022718,0.0000022730, -0.0000022689,0.0000022619,0.0000022675,0.0000022887,0.0000023029, -0.0000023051,0.0000023042,0.0000023018,0.0000022982,0.0000022957, -0.0000022954,0.0000022975,0.0000023013,0.0000023048,0.0000023072, -0.0000023086,0.0000023087,0.0000023071,0.0000023043,0.0000022999, -0.0000022939,0.0000022872,0.0000022803,0.0000022730,0.0000022670, -0.0000022631,0.0000022619,0.0000022636,0.0000022686,0.0000022741, -0.0000022767,0.0000022750,0.0000022679,0.0000022599,0.0000022549, -0.0000022523,0.0000022512,0.0000022548,0.0000022635,0.0000022724, -0.0000022841,0.0000023028,0.0000023234,0.0000023415,0.0000023591, -0.0000023739,0.0000023768,0.0000023680,0.0000023574,0.0000023562, -0.0000023706,0.0000023872,0.0000023932,0.0000023966,0.0000024062, -0.0000024229,0.0000024482,0.0000024717,0.0000024905,0.0000025148, -0.0000025342,0.0000025464,0.0000025809,0.0000026260,0.0000026469, -0.0000026384,0.0000025989,0.0000025523,0.0000025202,0.0000024967, -0.0000024517,0.0000024159,0.0000024126,0.0000024162,0.0000024129, -0.0000024095,0.0000024099,0.0000024093,0.0000024132,0.0000024259, -0.0000024279,0.0000024386,0.0000024747,0.0000024832,0.0000024823, -0.0000025485,0.0000025983,0.0000026067,0.0000025696,0.0000025030, -0.0000024827,0.0000024870,0.0000024739,0.0000024254,0.0000024024, -0.0000024031,0.0000024111,0.0000024289,0.0000024417,0.0000024515, -0.0000024533,0.0000024507,0.0000024484,0.0000024469,0.0000024441, -0.0000024389,0.0000024329,0.0000024277,0.0000024232,0.0000024217, -0.0000024242,0.0000024307,0.0000024359,0.0000024387,0.0000024418, -0.0000024435,0.0000024432,0.0000024401,0.0000024349,0.0000024306, -0.0000024271,0.0000024232,0.0000024184,0.0000024135,0.0000024104, -0.0000024080,0.0000024060,0.0000024058,0.0000024073,0.0000024099, -0.0000024120,0.0000024133,0.0000024144,0.0000024152,0.0000024160, -0.0000024163,0.0000024163,0.0000024160,0.0000024154,0.0000024154, -0.0000024167,0.0000024202,0.0000024241,0.0000024271,0.0000024290, -0.0000024322,0.0000024366,0.0000024367,0.0000024282,0.0000024161, -0.0000024112,0.0000024130,0.0000024191,0.0000024291,0.0000024393, -0.0000024455,0.0000024487,0.0000024502,0.0000024525,0.0000024612, -0.0000024740,0.0000024833,0.0000024911,0.0000025021,0.0000025138, -0.0000025236,0.0000025299,0.0000025332,0.0000025374,0.0000025458, -0.0000025546,0.0000025602,0.0000025641,0.0000025659,0.0000025659, -0.0000025644,0.0000025617,0.0000025588,0.0000025565,0.0000025549, -0.0000025533,0.0000025508,0.0000025476,0.0000025446,0.0000025433, -0.0000025440,0.0000025471,0.0000025516,0.0000025540,0.0000025530, -0.0000025516,0.0000025509,0.0000025512,0.0000025514,0.0000025518, -0.0000025509,0.0000025488,0.0000025470,0.0000025471,0.0000025485, -0.0000025471,0.0000025347,0.0000025161,0.0000025013,0.0000024905, -0.0000024806,0.0000024738,0.0000024676,0.0000024546,0.0000024345, -0.0000024153,0.0000024015,0.0000023912,0.0000023815,0.0000023729, -0.0000023665,0.0000023620,0.0000023591,0.0000023575,0.0000023572, -0.0000023579,0.0000023599,0.0000023633,0.0000023679,0.0000023721, -0.0000023744,0.0000023751,0.0000023758,0.0000023780,0.0000023814, -0.0000023840,0.0000023851,0.0000023857,0.0000023868,0.0000023881, -0.0000023898,0.0000023916,0.0000023932,0.0000023943,0.0000023943, -0.0000023912,0.0000023827,0.0000023695,0.0000023494,0.0000023172, -0.0000022799,0.0000022536,0.0000022421,0.0000022359,0.0000022296, -0.0000022239,0.0000022209,0.0000022220,0.0000022265,0.0000022315, -0.0000022340,0.0000022319,0.0000022232,0.0000022138,0.0000022092, -0.0000022106,0.0000022195,0.0000022320,0.0000022417,0.0000022495, -0.0000022585,0.0000022684,0.0000022778,0.0000022871,0.0000022967, -0.0000023054,0.0000023134,0.0000023229,0.0000023319,0.0000023378, -0.0000023459,0.0000023639,0.0000023865,0.0000024014,0.0000024075, -0.0000024170,0.0000024337,0.0000024451,0.0000024465,0.0000024447, -0.0000024402,0.0000024340,0.0000024285,0.0000024265,0.0000024317, -0.0000024432,0.0000024512,0.0000024518,0.0000024512,0.0000024549, -0.0000024639,0.0000024735,0.0000024781,0.0000024782,0.0000024793, -0.0000024859,0.0000024946,0.0000024979,0.0000024956,0.0000024867, -0.0000024781,0.0000024757,0.0000024775,0.0000024809,0.0000024820, -0.0000024799,0.0000024766,0.0000024766,0.0000024819,0.0000024904, -0.0000024990,0.0000025072,0.0000025151,0.0000025221,0.0000025271, -0.0000025296,0.0000025299,0.0000025286,0.0000025252,0.0000025209, -0.0000025167,0.0000025140,0.0000025136,0.0000025152,0.0000025179, -0.0000025202,0.0000025215,0.0000025215,0.0000025202,0.0000025180, -0.0000025170,0.0000025188,0.0000025236,0.0000025299,0.0000025367, -0.0000025436,0.0000025497,0.0000025537,0.0000025547,0.0000025530, -0.0000025490,0.0000025457,0.0000025455,0.0000025479,0.0000025494, -0.0000025484,0.0000025442,0.0000025384,0.0000025323,0.0000025261, -0.0000025194,0.0000025128,0.0000025091,0.0000025101,0.0000025182, -0.0000025305,0.0000025401,0.0000025423,0.0000025409,0.0000025390, -0.0000025379,0.0000025383,0.0000025418,0.0000025502,0.0000025618, -0.0000025722,0.0000025797,0.0000025866,0.0000025961,0.0000026089, -0.0000026232,0.0000026347,0.0000026400,0.0000026395,0.0000026350, -0.0000026269,0.0000026172,0.0000026066,0.0000025966,0.0000025881, -0.0000025816,0.0000025775,0.0000025762,0.0000025757,0.0000025743, -0.0000025715,0.0000025678,0.0000025647,0.0000025652,0.0000025718, -0.0000025842,0.0000025962,0.0000026012,0.0000025999,0.0000025940, -0.0000025874,0.0000025834,0.0000025816,0.0000025800,0.0000025782, -0.0000025748,0.0000025683,0.0000025595,0.0000025498,0.0000025383, -0.0000025248,0.0000025137,0.0000025071,0.0000025037,0.0000025026, -0.0000025030,0.0000025048,0.0000025073,0.0000025095,0.0000025111, -0.0000025122,0.0000025129,0.0000025151,0.0000025187,0.0000025212, -0.0000025196,0.0000025137,0.0000025073,0.0000025042,0.0000025007, -0.0000024912,0.0000024811,0.0000024806,0.0000024987,0.0000025350, -0.0000025833,0.0000026212,0.0000026357,0.0000026399,0.0000026460, -0.0000026544,0.0000026622,0.0000026671,0.0000026708,0.0000026753, -0.0000026798,0.0000026834,0.0000026835,0.0000026780,0.0000026700, -0.0000026634,0.0000026580,0.0000026514,0.0000026440,0.0000026395, -0.0000026371,0.0000026308,0.0000026189,0.0000026024,0.0000025823, -0.0000025685,0.0000025680,0.0000025774,0.0000025906,0.0000025997, -0.0000026031,0.0000026027,0.0000025930,0.0000025754,0.0000025617, -0.0000025484,0.0000025272,0.0000025062,0.0000024938,0.0000024831, -0.0000024645,0.0000024335,0.0000024033,0.0000023856,0.0000023730, -0.0000023583,0.0000023412,0.0000023239,0.0000023108,0.0000023054, -0.0000023053,0.0000023066,0.0000023074,0.0000023071,0.0000023051, -0.0000023015,0.0000022968,0.0000022923,0.0000022895,0.0000022897, -0.0000022927,0.0000022987,0.0000023058,0.0000023117,0.0000023139, -0.0000023119,0.0000023066,0.0000022998,0.0000022931,0.0000022896, -0.0000022893,0.0000022915,0.0000022945,0.0000022973,0.0000022999, -0.0000023013,0.0000022996,0.0000022931,0.0000022863,0.0000022842, -0.0000022813,0.0000022736,0.0000022691,0.0000022716,0.0000022772, -0.0000022866,0.0000023060,0.0000023270,0.0000023366,0.0000023379, -0.0000023390,0.0000023405,0.0000023493,0.0000023693,0.0000023843, -0.0000023879,0.0000023910,0.0000023970,0.0000024015,0.0000024062, -0.0000024152,0.0000024287,0.0000024422,0.0000024532,0.0000024599, -0.0000024611,0.0000024581,0.0000024511,0.0000024411,0.0000024305, -0.0000024207,0.0000024129,0.0000024071,0.0000024026,0.0000023975, -0.0000023905,0.0000023828,0.0000023762,0.0000023699,0.0000023635, -0.0000023594,0.0000023588,0.0000023601,0.0000023625,0.0000023661, -0.0000023696,0.0000023719,0.0000023725,0.0000023702,0.0000023649, -0.0000023573,0.0000023488,0.0000023405,0.0000023333,0.0000023271, -0.0000023216,0.0000023147,0.0000023064,0.0000022963,0.0000022853, -0.0000022772,0.0000022727,0.0000022692,0.0000022662,0.0000022640, -0.0000022634,0.0000022648,0.0000022668,0.0000022661,0.0000022620, -0.0000022571,0.0000022525,0.0000022492,0.0000022471,0.0000022461, -0.0000022447,0.0000022434,0.0000022419,0.0000022409,0.0000022406, -0.0000022412,0.0000022430,0.0000022450,0.0000022463,0.0000022475, -0.0000022489,0.0000022495,0.0000022505,0.0000022512,0.0000022503, -0.0000022484,0.0000022462,0.0000022433,0.0000022408,0.0000022406, -0.0000022442,0.0000022510,0.0000022561,0.0000022587,0.0000022606, -0.0000022597,0.0000022524,0.0000022426,0.0000022342,0.0000022266, -0.0000022206,0.0000022163,0.0000022134,0.0000022117,0.0000022099, -0.0000022066,0.0000022026,0.0000021988,0.0000021952,0.0000021923, -0.0000021906,0.0000021894,0.0000021872,0.0000021841,0.0000021802, -0.0000021753,0.0000021708,0.0000021679,0.0000021650,0.0000021615, -0.0000021574,0.0000021531,0.0000021492,0.0000021457,0.0000021433, -0.0000021411,0.0000021387,0.0000021363,0.0000021351,0.0000021358, -0.0000021381,0.0000021404,0.0000021420,0.0000021439,0.0000021493, -0.0000021590,0.0000021704,0.0000021806,0.0000021876,0.0000021918, -0.0000021957,0.0000022003,0.0000022044,0.0000022068,0.0000022072, -0.0000022062,0.0000022051,0.0000022042,0.0000022037,0.0000022033, -0.0000022013,0.0000021992,0.0000021997,0.0000022047,0.0000022127, -0.0000022196,0.0000022222,0.0000022215,0.0000022207,0.0000022212, -0.0000022228,0.0000022252,0.0000022296,0.0000022353,0.0000022386, -0.0000022363,0.0000022269,0.0000022125,0.0000021984,0.0000021922, -0.0000021971,0.0000022191,0.0000022539,0.0000022890,0.0000023108, -0.0000023173,0.0000023235,0.0000023295,0.0000023291,0.0000023247, -0.0000023175,0.0000023087,0.0000023026,0.0000023016,0.0000023063, -0.0000023166,0.0000023267,0.0000023305,0.0000023264,0.0000023168, -0.0000023093,0.0000023065,0.0000023057,0.0000023050,0.0000023048, -0.0000023050,0.0000023052,0.0000023051,0.0000023045,0.0000023039, -0.0000023031,0.0000023023,0.0000023014,0.0000023013,0.0000023028, -0.0000023087,0.0000023167,0.0000023266,0.0000023363,0.0000023440, -0.0000023495,0.0000023535,0.0000023575,0.0000023617,0.0000023660, -0.0000023700,0.0000023737,0.0000023769,0.0000023796,0.0000023820, -0.0000023842,0.0000023861,0.0000023877,0.0000023903,0.0000023747, -0.0000023803,0.0000023851,0.0000023861,0.0000023825,0.0000023784, -0.0000023762,0.0000023727,0.0000023680,0.0000023663,0.0000023699, -0.0000023760,0.0000023797,0.0000023786,0.0000023750,0.0000023722, -0.0000023667,0.0000023547,0.0000023433,0.0000023398,0.0000023425, -0.0000023497,0.0000023569,0.0000023607,0.0000023617,0.0000023617, -0.0000023611,0.0000023595,0.0000023575,0.0000023558,0.0000023556, -0.0000023593,0.0000023662,0.0000023697,0.0000023658,0.0000023556, -0.0000023428,0.0000023331,0.0000023269,0.0000023232,0.0000023214, -0.0000023232,0.0000023294,0.0000023374,0.0000023446,0.0000023505, -0.0000023554,0.0000023595,0.0000023636,0.0000023655,0.0000023607, -0.0000023510,0.0000023485,0.0000023503,0.0000023496,0.0000023463, -0.0000023459,0.0000023503,0.0000023583,0.0000023659,0.0000023715, -0.0000023757,0.0000023776,0.0000023772,0.0000023754,0.0000023731, -0.0000023709,0.0000023702,0.0000023696,0.0000023673,0.0000023648, -0.0000023644,0.0000023666,0.0000023703,0.0000023755,0.0000023821, -0.0000023882,0.0000023900,0.0000023877,0.0000023861,0.0000023865, -0.0000023861,0.0000023861,0.0000023872,0.0000023870,0.0000023841, -0.0000023786,0.0000023700,0.0000023589,0.0000023502,0.0000023459, -0.0000023454,0.0000023470,0.0000023513,0.0000023582,0.0000023654, -0.0000023703,0.0000023732,0.0000023758,0.0000023786,0.0000023808, -0.0000023811,0.0000023792,0.0000023764,0.0000023735,0.0000023710, -0.0000023718,0.0000023790,0.0000023901,0.0000024022,0.0000024141, -0.0000024235,0.0000024304,0.0000024350,0.0000024366,0.0000024356, -0.0000024331,0.0000024278,0.0000024189,0.0000024080,0.0000023966, -0.0000023858,0.0000023799,0.0000023809,0.0000023873,0.0000023977, -0.0000024085,0.0000024173,0.0000024232,0.0000024257,0.0000024253, -0.0000024228,0.0000024271,0.0000024503,0.0000024741,0.0000024837, -0.0000024855,0.0000024899,0.0000024988,0.0000025090,0.0000025221, -0.0000025337,0.0000025369,0.0000025352,0.0000025303,0.0000025198, -0.0000025075,0.0000024986,0.0000024931,0.0000024906,0.0000024917, -0.0000024933,0.0000024927,0.0000024864,0.0000024753,0.0000024656, -0.0000024610,0.0000024588,0.0000024580,0.0000024595,0.0000024613, -0.0000024604,0.0000024529,0.0000024372,0.0000024173,0.0000023978, -0.0000023789,0.0000023613,0.0000023500,0.0000023475,0.0000023487, -0.0000023500,0.0000023500,0.0000023491,0.0000023473,0.0000023453, -0.0000023442,0.0000023439,0.0000023433,0.0000023425,0.0000023430, -0.0000023440,0.0000023486,0.0000023569,0.0000023677,0.0000023789, -0.0000023888,0.0000023964,0.0000024020,0.0000024069,0.0000024119, -0.0000024180,0.0000024260,0.0000024356,0.0000024455,0.0000024543, -0.0000024616,0.0000024669,0.0000024699,0.0000024716,0.0000024718, -0.0000024722,0.0000024714,0.0000024697,0.0000024676,0.0000024655, -0.0000024636,0.0000024633,0.0000024644,0.0000024666,0.0000024697, -0.0000024737,0.0000024791,0.0000024849,0.0000024896,0.0000024925, -0.0000024954,0.0000024995,0.0000025043,0.0000025093,0.0000025140, -0.0000025179,0.0000025212,0.0000025244,0.0000025276,0.0000025298, -0.0000025299,0.0000025283,0.0000025251,0.0000025227,0.0000025228, -0.0000025238,0.0000025229,0.0000025191,0.0000025132,0.0000025052, -0.0000024945,0.0000024825,0.0000024726,0.0000024674,0.0000024658, -0.0000024650,0.0000024613,0.0000024540,0.0000024481,0.0000024487, -0.0000024552,0.0000024622,0.0000024639,0.0000024608,0.0000024565, -0.0000024485,0.0000024313,0.0000024128,0.0000024039,0.0000023997, -0.0000023913,0.0000023798,0.0000023709,0.0000023678,0.0000023672, -0.0000023628,0.0000023535,0.0000023455,0.0000023424,0.0000023435, -0.0000023500,0.0000023629,0.0000023783,0.0000023908,0.0000023975, -0.0000023999,0.0000024005,0.0000024016,0.0000024048,0.0000024102, -0.0000024163,0.0000024202,0.0000024202,0.0000024171,0.0000024123, -0.0000024076,0.0000024045,0.0000024047,0.0000024096,0.0000024195, -0.0000024328,0.0000024515,0.0000024775,0.0000025018,0.0000025120, -0.0000025106,0.0000025063,0.0000025057,0.0000025149,0.0000025330, -0.0000025502,0.0000025618,0.0000025701,0.0000025782,0.0000025856, -0.0000025912,0.0000025927,0.0000025882,0.0000025784,0.0000025682, -0.0000025598,0.0000025523,0.0000025451,0.0000025402,0.0000025388, -0.0000025375,0.0000025340,0.0000025285,0.0000025183,0.0000025003, -0.0000024810,0.0000024720,0.0000024718,0.0000024688,0.0000024580, -0.0000024431,0.0000024291,0.0000024189,0.0000024131,0.0000024104, -0.0000024083,0.0000024048,0.0000024001,0.0000023958,0.0000023925, -0.0000023909,0.0000023913,0.0000023925,0.0000023929,0.0000023923, -0.0000023918,0.0000023926,0.0000023950,0.0000023982,0.0000024023, -0.0000024096,0.0000024192,0.0000024219,0.0000024116,0.0000023888, -0.0000023853,0.0000024055,0.0000024356,0.0000024570,0.0000024772, -0.0000024884,0.0000024872,0.0000024812,0.0000024762,0.0000024757, -0.0000024788,0.0000024819,0.0000024820,0.0000024792,0.0000024737, -0.0000024652,0.0000024563,0.0000024524,0.0000024536,0.0000024572, -0.0000024626,0.0000024683,0.0000024724,0.0000024778,0.0000024836, -0.0000024871,0.0000024900,0.0000024933,0.0000024956,0.0000024957, -0.0000024927,0.0000024888,0.0000024874,0.0000024881,0.0000024906, -0.0000024926,0.0000024938,0.0000024958,0.0000024999,0.0000025041, -0.0000025059,0.0000025062,0.0000025062,0.0000025077,0.0000025110, -0.0000025138,0.0000025136,0.0000025131,0.0000025159,0.0000025209, -0.0000025200,0.0000025066,0.0000024838,0.0000024629,0.0000024480, -0.0000024345,0.0000024202,0.0000024083,0.0000024015,0.0000023972, -0.0000023936,0.0000023907,0.0000023877,0.0000023823,0.0000023736, -0.0000023629,0.0000023514,0.0000023406,0.0000023312,0.0000023249, -0.0000023211,0.0000023182,0.0000023141,0.0000023092,0.0000023067, -0.0000023079,0.0000023131,0.0000023200,0.0000023262,0.0000023302, -0.0000023338,0.0000023368,0.0000023390,0.0000023400,0.0000023388, -0.0000023345,0.0000023274,0.0000023199,0.0000023139,0.0000023094, -0.0000023045,0.0000022968,0.0000022879,0.0000022809,0.0000022780, -0.0000022766,0.0000022771,0.0000022763,0.0000022747,0.0000022734, -0.0000022728,0.0000022727,0.0000022727,0.0000022722,0.0000022716, -0.0000022716,0.0000022723,0.0000022738,0.0000022751,0.0000022754, -0.0000022758,0.0000022776,0.0000022812,0.0000022853,0.0000022883, -0.0000022880,0.0000022865,0.0000022868,0.0000022883,0.0000022867, -0.0000022806,0.0000022746,0.0000022738,0.0000022746,0.0000022671, -0.0000022606,0.0000022728,0.0000022946,0.0000023057,0.0000023078, -0.0000023066,0.0000023026,0.0000022976,0.0000022945,0.0000022943, -0.0000022969,0.0000023012,0.0000023047,0.0000023069,0.0000023088, -0.0000023097,0.0000023092,0.0000023075,0.0000023033,0.0000022961, -0.0000022876,0.0000022784,0.0000022699,0.0000022628,0.0000022595, -0.0000022594,0.0000022626,0.0000022683,0.0000022739,0.0000022760, -0.0000022723,0.0000022627,0.0000022551,0.0000022522,0.0000022501, -0.0000022507,0.0000022574,0.0000022670,0.0000022749,0.0000022870, -0.0000023057,0.0000023244,0.0000023407,0.0000023576,0.0000023727, -0.0000023760,0.0000023679,0.0000023574,0.0000023551,0.0000023680, -0.0000023845,0.0000023910,0.0000023933,0.0000024008,0.0000024158, -0.0000024397,0.0000024642,0.0000024805,0.0000025029,0.0000025269, -0.0000025388,0.0000025616,0.0000026040,0.0000026344,0.0000026331, -0.0000025975,0.0000025535,0.0000025225,0.0000024982,0.0000024519, -0.0000024161,0.0000024153,0.0000024223,0.0000024181,0.0000024102, -0.0000024063,0.0000024033,0.0000024052,0.0000024191,0.0000024269, -0.0000024309,0.0000024633,0.0000024865,0.0000024787,0.0000025270, -0.0000025900,0.0000026067,0.0000025909,0.0000025204,0.0000024843, -0.0000024855,0.0000024808,0.0000024365,0.0000024041,0.0000024023, -0.0000024091,0.0000024276,0.0000024425,0.0000024522,0.0000024543, -0.0000024517,0.0000024489,0.0000024458,0.0000024411,0.0000024351, -0.0000024294,0.0000024244,0.0000024204,0.0000024198,0.0000024227, -0.0000024283,0.0000024330,0.0000024366,0.0000024412,0.0000024441, -0.0000024439,0.0000024406,0.0000024344,0.0000024284,0.0000024242, -0.0000024197,0.0000024141,0.0000024085,0.0000024041,0.0000024012, -0.0000023991,0.0000023990,0.0000024008,0.0000024034,0.0000024058, -0.0000024076,0.0000024089,0.0000024096,0.0000024105,0.0000024108, -0.0000024108,0.0000024103,0.0000024088,0.0000024080,0.0000024091, -0.0000024127,0.0000024163,0.0000024187,0.0000024210,0.0000024250, -0.0000024278,0.0000024246,0.0000024137,0.0000024046,0.0000024036, -0.0000024076,0.0000024149,0.0000024255,0.0000024353,0.0000024400, -0.0000024432,0.0000024473,0.0000024511,0.0000024578,0.0000024704, -0.0000024829,0.0000024911,0.0000024987,0.0000025072,0.0000025157, -0.0000025241,0.0000025305,0.0000025336,0.0000025373,0.0000025444, -0.0000025516,0.0000025556,0.0000025569,0.0000025567,0.0000025567, -0.0000025567,0.0000025564,0.0000025557,0.0000025550,0.0000025538, -0.0000025514,0.0000025469,0.0000025410,0.0000025365,0.0000025355, -0.0000025380,0.0000025435,0.0000025491,0.0000025522,0.0000025526, -0.0000025523,0.0000025517,0.0000025511,0.0000025499,0.0000025482, -0.0000025466,0.0000025460,0.0000025477,0.0000025469,0.0000025376, -0.0000025206,0.0000025048,0.0000024927,0.0000024815,0.0000024725, -0.0000024654,0.0000024529,0.0000024334,0.0000024140,0.0000023997, -0.0000023886,0.0000023776,0.0000023666,0.0000023576,0.0000023511, -0.0000023463,0.0000023428,0.0000023409,0.0000023410,0.0000023432, -0.0000023467,0.0000023505,0.0000023547,0.0000023599,0.0000023656, -0.0000023705,0.0000023731,0.0000023738,0.0000023746,0.0000023768, -0.0000023792,0.0000023808,0.0000023823,0.0000023844,0.0000023871, -0.0000023900,0.0000023927,0.0000023941,0.0000023927,0.0000023857, -0.0000023752,0.0000023618,0.0000023397,0.0000023055,0.0000022703, -0.0000022479,0.0000022381,0.0000022325,0.0000022267,0.0000022213, -0.0000022193,0.0000022211,0.0000022260,0.0000022308,0.0000022344, -0.0000022343,0.0000022271,0.0000022169,0.0000022117,0.0000022125, -0.0000022203,0.0000022326,0.0000022423,0.0000022493,0.0000022579, -0.0000022694,0.0000022807,0.0000022900,0.0000022987,0.0000023072, -0.0000023146,0.0000023216,0.0000023296,0.0000023362,0.0000023412, -0.0000023519,0.0000023709,0.0000023890,0.0000023985,0.0000024043, -0.0000024167,0.0000024334,0.0000024424,0.0000024426,0.0000024405, -0.0000024370,0.0000024315,0.0000024264,0.0000024266,0.0000024358, -0.0000024486,0.0000024549,0.0000024547,0.0000024542,0.0000024565, -0.0000024629,0.0000024702,0.0000024743,0.0000024759,0.0000024804, -0.0000024893,0.0000024972,0.0000024992,0.0000024949,0.0000024858, -0.0000024776,0.0000024752,0.0000024769,0.0000024791,0.0000024792, -0.0000024763,0.0000024722,0.0000024713,0.0000024752,0.0000024824, -0.0000024899,0.0000024962,0.0000025023,0.0000025090,0.0000025150, -0.0000025189,0.0000025202,0.0000025193,0.0000025162,0.0000025122, -0.0000025088,0.0000025077,0.0000025090,0.0000025123,0.0000025162, -0.0000025195,0.0000025216,0.0000025219,0.0000025203,0.0000025170, -0.0000025147,0.0000025157,0.0000025197,0.0000025254,0.0000025321, -0.0000025396,0.0000025465,0.0000025513,0.0000025531,0.0000025520, -0.0000025480,0.0000025438,0.0000025420,0.0000025432,0.0000025448, -0.0000025446,0.0000025415,0.0000025363,0.0000025299,0.0000025233, -0.0000025171,0.0000025117,0.0000025081,0.0000025073,0.0000025127, -0.0000025239,0.0000025351,0.0000025395,0.0000025391,0.0000025380, -0.0000025369,0.0000025351,0.0000025345,0.0000025399,0.0000025512, -0.0000025636,0.0000025731,0.0000025800,0.0000025868,0.0000025965, -0.0000026099,0.0000026231,0.0000026321,0.0000026363,0.0000026355, -0.0000026326,0.0000026265,0.0000026190,0.0000026122,0.0000026068, -0.0000026018,0.0000025978,0.0000025958,0.0000025946,0.0000025930, -0.0000025899,0.0000025848,0.0000025785,0.0000025748,0.0000025776, -0.0000025867,0.0000025961,0.0000025998,0.0000025975,0.0000025908, -0.0000025842,0.0000025803,0.0000025781,0.0000025764,0.0000025741, -0.0000025703,0.0000025642,0.0000025565,0.0000025465,0.0000025322, -0.0000025171,0.0000025076,0.0000025038,0.0000025021,0.0000025009, -0.0000024998,0.0000024991,0.0000024989,0.0000024991,0.0000024993, -0.0000025004,0.0000025036,0.0000025078,0.0000025108,0.0000025106, -0.0000025062,0.0000025006,0.0000024979,0.0000024967,0.0000024907, -0.0000024806,0.0000024778,0.0000024879,0.0000025196,0.0000025672, -0.0000026108,0.0000026313,0.0000026360,0.0000026404,0.0000026486, -0.0000026583,0.0000026649,0.0000026679,0.0000026712,0.0000026755, -0.0000026787,0.0000026791,0.0000026759,0.0000026695,0.0000026632, -0.0000026587,0.0000026536,0.0000026471,0.0000026415,0.0000026395, -0.0000026378,0.0000026306,0.0000026183,0.0000026008,0.0000025813, -0.0000025725,0.0000025750,0.0000025862,0.0000025992,0.0000026069, -0.0000026088,0.0000026073,0.0000025959,0.0000025780,0.0000025642, -0.0000025496,0.0000025269,0.0000025056,0.0000024931,0.0000024811, -0.0000024590,0.0000024263,0.0000023979,0.0000023818,0.0000023679, -0.0000023523,0.0000023362,0.0000023207,0.0000023075,0.0000022996, -0.0000022980,0.0000022987,0.0000022997,0.0000023014,0.0000023026, -0.0000023010,0.0000022970,0.0000022921,0.0000022880,0.0000022835, -0.0000022808,0.0000022808,0.0000022835,0.0000022881,0.0000022926, -0.0000022955,0.0000022967,0.0000022948,0.0000022902,0.0000022850, -0.0000022812,0.0000022808,0.0000022847,0.0000022905,0.0000022949, -0.0000022975,0.0000022981,0.0000022948,0.0000022870,0.0000022817, -0.0000022783,0.0000022700,0.0000022630,0.0000022639,0.0000022702, -0.0000022764,0.0000022886,0.0000023102,0.0000023268,0.0000023306, -0.0000023305,0.0000023312,0.0000023340,0.0000023455,0.0000023653, -0.0000023787,0.0000023827,0.0000023874,0.0000023958,0.0000024045, -0.0000024105,0.0000024141,0.0000024162,0.0000024172,0.0000024180, -0.0000024182,0.0000024179,0.0000024173,0.0000024154,0.0000024128, -0.0000024101,0.0000024069,0.0000024020,0.0000023957,0.0000023880, -0.0000023792,0.0000023710,0.0000023653,0.0000023604,0.0000023553, -0.0000023520,0.0000023526,0.0000023552,0.0000023588,0.0000023628, -0.0000023655,0.0000023660,0.0000023640,0.0000023595,0.0000023535, -0.0000023468,0.0000023402,0.0000023332,0.0000023269,0.0000023212, -0.0000023161,0.0000023097,0.0000023019,0.0000022932,0.0000022835, -0.0000022760,0.0000022716,0.0000022685,0.0000022661,0.0000022643, -0.0000022633,0.0000022635,0.0000022657,0.0000022668,0.0000022649, -0.0000022603,0.0000022551,0.0000022507,0.0000022480,0.0000022468, -0.0000022461,0.0000022452,0.0000022439,0.0000022426,0.0000022417, -0.0000022413,0.0000022418,0.0000022432,0.0000022445,0.0000022451, -0.0000022463,0.0000022477,0.0000022492,0.0000022500,0.0000022493, -0.0000022477,0.0000022460,0.0000022436,0.0000022409,0.0000022398, -0.0000022414,0.0000022471,0.0000022531,0.0000022565,0.0000022590, -0.0000022599,0.0000022558,0.0000022468,0.0000022378,0.0000022296, -0.0000022224,0.0000022165,0.0000022126,0.0000022110,0.0000022098, -0.0000022074,0.0000022039,0.0000022000,0.0000021959,0.0000021922, -0.0000021904,0.0000021899,0.0000021891,0.0000021872,0.0000021845, -0.0000021808,0.0000021760,0.0000021709,0.0000021672,0.0000021634, -0.0000021594,0.0000021553,0.0000021509,0.0000021466,0.0000021433, -0.0000021418,0.0000021407,0.0000021389,0.0000021363,0.0000021337, -0.0000021320,0.0000021312,0.0000021308,0.0000021319,0.0000021343, -0.0000021396,0.0000021481,0.0000021585,0.0000021699,0.0000021796, -0.0000021860,0.0000021904,0.0000021943,0.0000021977,0.0000022000, -0.0000022008,0.0000022007,0.0000022002,0.0000021989,0.0000021974, -0.0000021959,0.0000021936,0.0000021925,0.0000021944,0.0000022007, -0.0000022091,0.0000022158,0.0000022190,0.0000022193,0.0000022190, -0.0000022192,0.0000022206,0.0000022230,0.0000022270,0.0000022330, -0.0000022386,0.0000022398,0.0000022350,0.0000022234,0.0000022083, -0.0000021959,0.0000021944,0.0000022060,0.0000022358,0.0000022721, -0.0000023022,0.0000023159,0.0000023208,0.0000023273,0.0000023291, -0.0000023262,0.0000023203,0.0000023121,0.0000023040,0.0000022997, -0.0000023007,0.0000023078,0.0000023177,0.0000023238,0.0000023225, -0.0000023154,0.0000023090,0.0000023066,0.0000023062,0.0000023050, -0.0000023033,0.0000023020,0.0000023014,0.0000023015,0.0000023019, -0.0000023022,0.0000023030,0.0000023046,0.0000023063,0.0000023075, -0.0000023086,0.0000023106,0.0000023130,0.0000023162,0.0000023216, -0.0000023279,0.0000023354,0.0000023424,0.0000023485,0.0000023536, -0.0000023576,0.0000023609,0.0000023636,0.0000023656,0.0000023670, -0.0000023679,0.0000023688,0.0000023693,0.0000023695,0.0000023709, -0.0000023621,0.0000023650,0.0000023696,0.0000023728,0.0000023725, -0.0000023705,0.0000023693,0.0000023679,0.0000023639,0.0000023589, -0.0000023578,0.0000023620,0.0000023684,0.0000023722,0.0000023724, -0.0000023706,0.0000023678,0.0000023611,0.0000023509,0.0000023437, -0.0000023432,0.0000023479,0.0000023541,0.0000023585,0.0000023600, -0.0000023599,0.0000023590,0.0000023574,0.0000023566,0.0000023573, -0.0000023596,0.0000023624,0.0000023645,0.0000023581,0.0000023467, -0.0000023352,0.0000023280,0.0000023247,0.0000023234,0.0000023232, -0.0000023252,0.0000023305,0.0000023377,0.0000023441,0.0000023497, -0.0000023552,0.0000023599,0.0000023629,0.0000023656,0.0000023666, -0.0000023614,0.0000023512,0.0000023484,0.0000023502,0.0000023491, -0.0000023458,0.0000023459,0.0000023503,0.0000023571,0.0000023636, -0.0000023691,0.0000023731,0.0000023748,0.0000023745,0.0000023719, -0.0000023685,0.0000023659,0.0000023647,0.0000023643,0.0000023627, -0.0000023609,0.0000023611,0.0000023637,0.0000023681,0.0000023733, -0.0000023799,0.0000023867,0.0000023898,0.0000023888,0.0000023877, -0.0000023887,0.0000023888,0.0000023879,0.0000023872,0.0000023866, -0.0000023846,0.0000023801,0.0000023733,0.0000023639,0.0000023537, -0.0000023462,0.0000023424,0.0000023432,0.0000023473,0.0000023532, -0.0000023600,0.0000023667,0.0000023712,0.0000023736,0.0000023757, -0.0000023787,0.0000023810,0.0000023812,0.0000023795,0.0000023757, -0.0000023707,0.0000023663,0.0000023669,0.0000023739,0.0000023854, -0.0000023987,0.0000024111,0.0000024205,0.0000024273,0.0000024303, -0.0000024296,0.0000024270,0.0000024225,0.0000024150,0.0000024051, -0.0000023941,0.0000023828,0.0000023733,0.0000023699,0.0000023725, -0.0000023816,0.0000023937,0.0000024057,0.0000024156,0.0000024220, -0.0000024246,0.0000024240,0.0000024211,0.0000024266,0.0000024508, -0.0000024735,0.0000024824,0.0000024853,0.0000024915,0.0000025016, -0.0000025123,0.0000025251,0.0000025349,0.0000025364,0.0000025340, -0.0000025284,0.0000025186,0.0000025092,0.0000025025,0.0000024976, -0.0000024953,0.0000024955,0.0000024957,0.0000024921,0.0000024823, -0.0000024706,0.0000024629,0.0000024613,0.0000024632,0.0000024669, -0.0000024696,0.0000024687,0.0000024613,0.0000024458,0.0000024254, -0.0000024058,0.0000023854,0.0000023633,0.0000023471,0.0000023418, -0.0000023427,0.0000023457,0.0000023481,0.0000023489,0.0000023482, -0.0000023464,0.0000023446,0.0000023441,0.0000023445,0.0000023444, -0.0000023440,0.0000023444,0.0000023454,0.0000023478,0.0000023507, -0.0000023565,0.0000023655,0.0000023767,0.0000023875,0.0000023964, -0.0000024036,0.0000024099,0.0000024158,0.0000024219,0.0000024287, -0.0000024361,0.0000024437,0.0000024511,0.0000024576,0.0000024627, -0.0000024669,0.0000024696,0.0000024714,0.0000024714,0.0000024709, -0.0000024694,0.0000024672,0.0000024648,0.0000024632,0.0000024629, -0.0000024631,0.0000024643,0.0000024665,0.0000024706,0.0000024760, -0.0000024810,0.0000024854,0.0000024901,0.0000024954,0.0000025007, -0.0000025056,0.0000025098,0.0000025131,0.0000025161,0.0000025198, -0.0000025237,0.0000025264,0.0000025270,0.0000025260,0.0000025232, -0.0000025199,0.0000025185,0.0000025190,0.0000025191,0.0000025162, -0.0000025104,0.0000025033,0.0000024941,0.0000024831,0.0000024733, -0.0000024676,0.0000024655,0.0000024645,0.0000024611,0.0000024538, -0.0000024477,0.0000024476,0.0000024542,0.0000024628,0.0000024670, -0.0000024649,0.0000024595,0.0000024521,0.0000024379,0.0000024196, -0.0000024076,0.0000024023,0.0000023951,0.0000023832,0.0000023723, -0.0000023679,0.0000023682,0.0000023672,0.0000023607,0.0000023511, -0.0000023437,0.0000023416,0.0000023425,0.0000023478,0.0000023579, -0.0000023701,0.0000023811,0.0000023894,0.0000023943,0.0000023968, -0.0000023989,0.0000024024,0.0000024078,0.0000024129,0.0000024153, -0.0000024147,0.0000024121,0.0000024081,0.0000024039,0.0000024008, -0.0000024018,0.0000024095,0.0000024228,0.0000024380,0.0000024575, -0.0000024819,0.0000025015,0.0000025074,0.0000025055,0.0000025030, -0.0000025050,0.0000025165,0.0000025356,0.0000025542,0.0000025679, -0.0000025772,0.0000025837,0.0000025879,0.0000025885,0.0000025842, -0.0000025765,0.0000025692,0.0000025624,0.0000025547,0.0000025482, -0.0000025459,0.0000025458,0.0000025422,0.0000025345,0.0000025241, -0.0000025071,0.0000024856,0.0000024712,0.0000024671,0.0000024623, -0.0000024503,0.0000024349,0.0000024211,0.0000024109,0.0000024043, -0.0000024005,0.0000023982,0.0000023952,0.0000023904,0.0000023851, -0.0000023798,0.0000023748,0.0000023711,0.0000023705,0.0000023725, -0.0000023755,0.0000023783,0.0000023810,0.0000023834,0.0000023845, -0.0000023855,0.0000023870,0.0000023919,0.0000024033,0.0000024179, -0.0000024271,0.0000024207,0.0000023984,0.0000023853,0.0000024006, -0.0000024300,0.0000024537,0.0000024721,0.0000024847,0.0000024883, -0.0000024850,0.0000024808,0.0000024785,0.0000024777,0.0000024776, -0.0000024757,0.0000024723,0.0000024660,0.0000024577,0.0000024505, -0.0000024473,0.0000024474,0.0000024504,0.0000024569,0.0000024633, -0.0000024674,0.0000024718,0.0000024765,0.0000024787,0.0000024797, -0.0000024810,0.0000024821,0.0000024824,0.0000024806,0.0000024780, -0.0000024779,0.0000024806,0.0000024851,0.0000024883,0.0000024902, -0.0000024935,0.0000024977,0.0000025014,0.0000025037,0.0000025044, -0.0000025046,0.0000025058,0.0000025082,0.0000025079,0.0000025060, -0.0000025072,0.0000025149,0.0000025163,0.0000025078,0.0000024889, -0.0000024675,0.0000024484,0.0000024317,0.0000024167,0.0000024060, -0.0000024010,0.0000023982,0.0000023951,0.0000023914,0.0000023874, -0.0000023803,0.0000023692,0.0000023569,0.0000023457,0.0000023365, -0.0000023301,0.0000023263,0.0000023254,0.0000023256,0.0000023250, -0.0000023218,0.0000023170,0.0000023133,0.0000023138,0.0000023172, -0.0000023212,0.0000023250,0.0000023278,0.0000023301,0.0000023309, -0.0000023293,0.0000023240,0.0000023173,0.0000023120,0.0000023090, -0.0000023072,0.0000023042,0.0000022986,0.0000022923,0.0000022888, -0.0000022874,0.0000022872,0.0000022859,0.0000022839,0.0000022824, -0.0000022813,0.0000022792,0.0000022767,0.0000022738,0.0000022720, -0.0000022701,0.0000022686,0.0000022669,0.0000022658,0.0000022661, -0.0000022673,0.0000022685,0.0000022695,0.0000022709,0.0000022737, -0.0000022773,0.0000022819,0.0000022849,0.0000022840,0.0000022824, -0.0000022832,0.0000022850,0.0000022834,0.0000022781,0.0000022739, -0.0000022747,0.0000022730,0.0000022626,0.0000022627,0.0000022820, -0.0000023002,0.0000023085,0.0000023102,0.0000023069,0.0000023005, -0.0000022952,0.0000022924,0.0000022928,0.0000022965,0.0000023014, -0.0000023049,0.0000023069,0.0000023091,0.0000023105,0.0000023106, -0.0000023089,0.0000023041,0.0000022955,0.0000022846,0.0000022734, -0.0000022628,0.0000022566,0.0000022561,0.0000022584,0.0000022633, -0.0000022697,0.0000022746,0.0000022745,0.0000022667,0.0000022564, -0.0000022507,0.0000022488,0.0000022481,0.0000022519,0.0000022613, -0.0000022700,0.0000022775,0.0000022915,0.0000023097,0.0000023257, -0.0000023400,0.0000023566,0.0000023718,0.0000023750,0.0000023673, -0.0000023572,0.0000023548,0.0000023667,0.0000023828,0.0000023891, -0.0000023903,0.0000023958,0.0000024089,0.0000024319,0.0000024575, -0.0000024716,0.0000024914,0.0000025182,0.0000025337,0.0000025491, -0.0000025838,0.0000026169,0.0000026213,0.0000025927,0.0000025530, -0.0000025237,0.0000024988,0.0000024513,0.0000024159,0.0000024175, -0.0000024273,0.0000024231,0.0000024117,0.0000024039,0.0000023985, -0.0000023980,0.0000024105,0.0000024244,0.0000024260,0.0000024515, -0.0000024856,0.0000024799,0.0000025048,0.0000025746,0.0000026061, -0.0000026047,0.0000025416,0.0000024898,0.0000024830,0.0000024827, -0.0000024492,0.0000024082,0.0000024009,0.0000024069,0.0000024245, -0.0000024413,0.0000024520,0.0000024551,0.0000024525,0.0000024484, -0.0000024433,0.0000024368,0.0000024308,0.0000024264,0.0000024228, -0.0000024201,0.0000024201,0.0000024228,0.0000024270,0.0000024312, -0.0000024356,0.0000024409,0.0000024448,0.0000024448,0.0000024413, -0.0000024345,0.0000024274,0.0000024225,0.0000024168,0.0000024102, -0.0000024039,0.0000023983,0.0000023943,0.0000023922,0.0000023925, -0.0000023948,0.0000023975,0.0000023999,0.0000024018,0.0000024034, -0.0000024044,0.0000024055,0.0000024058,0.0000024054,0.0000024039, -0.0000024012,0.0000023998,0.0000024012,0.0000024050,0.0000024084, -0.0000024105,0.0000024132,0.0000024168,0.0000024168,0.0000024101, -0.0000024004,0.0000023955,0.0000023973,0.0000024032,0.0000024114, -0.0000024228,0.0000024324,0.0000024361,0.0000024383,0.0000024438, -0.0000024501,0.0000024559,0.0000024657,0.0000024793,0.0000024900, -0.0000024971,0.0000025030,0.0000025087,0.0000025156,0.0000025239, -0.0000025307,0.0000025340,0.0000025361,0.0000025397,0.0000025437, -0.0000025468,0.0000025478,0.0000025481,0.0000025483,0.0000025480, -0.0000025475,0.0000025474,0.0000025473,0.0000025463,0.0000025425, -0.0000025358,0.0000025290,0.0000025261,0.0000025280,0.0000025336, -0.0000025402,0.0000025461,0.0000025501,0.0000025519,0.0000025519, -0.0000025512,0.0000025499,0.0000025486,0.0000025478,0.0000025474, -0.0000025463,0.0000025381,0.0000025227,0.0000025070,0.0000024944, -0.0000024825,0.0000024720,0.0000024634,0.0000024510,0.0000024317, -0.0000024119,0.0000023970,0.0000023853,0.0000023738,0.0000023624, -0.0000023517,0.0000023419,0.0000023340,0.0000023275,0.0000023222, -0.0000023185,0.0000023176,0.0000023192,0.0000023243,0.0000023319, -0.0000023400,0.0000023471,0.0000023527,0.0000023578,0.0000023635, -0.0000023687,0.0000023721,0.0000023742,0.0000023763,0.0000023785, -0.0000023802,0.0000023822,0.0000023847,0.0000023877,0.0000023900, -0.0000023902,0.0000023858,0.0000023776,0.0000023682,0.0000023546, -0.0000023297,0.0000022949,0.0000022627,0.0000022434,0.0000022349, -0.0000022296,0.0000022238,0.0000022184,0.0000022169,0.0000022192, -0.0000022245,0.0000022299,0.0000022344,0.0000022358,0.0000022302, -0.0000022199,0.0000022139,0.0000022142,0.0000022214,0.0000022336, -0.0000022438,0.0000022503,0.0000022579,0.0000022702,0.0000022840, -0.0000022949,0.0000023032,0.0000023114,0.0000023191,0.0000023249, -0.0000023301,0.0000023358,0.0000023401,0.0000023457,0.0000023588, -0.0000023764,0.0000023890,0.0000023949,0.0000024022,0.0000024169, -0.0000024329,0.0000024405,0.0000024408,0.0000024392,0.0000024358, -0.0000024299,0.0000024259,0.0000024287,0.0000024412,0.0000024539, -0.0000024581,0.0000024575,0.0000024561,0.0000024562,0.0000024604, -0.0000024669,0.0000024714,0.0000024750,0.0000024820,0.0000024912, -0.0000024972,0.0000024979,0.0000024932,0.0000024842,0.0000024760, -0.0000024734,0.0000024752,0.0000024775,0.0000024775,0.0000024741, -0.0000024690,0.0000024665,0.0000024687,0.0000024746,0.0000024812, -0.0000024865,0.0000024916,0.0000024974,0.0000025029,0.0000025067, -0.0000025078,0.0000025069,0.0000025038,0.0000025005,0.0000024991, -0.0000024998,0.0000025027,0.0000025072,0.0000025121,0.0000025166, -0.0000025200,0.0000025211,0.0000025194,0.0000025161,0.0000025136, -0.0000025139,0.0000025167,0.0000025212,0.0000025271,0.0000025344, -0.0000025415,0.0000025466,0.0000025489,0.0000025486,0.0000025453, -0.0000025406,0.0000025377,0.0000025379,0.0000025395,0.0000025399, -0.0000025379,0.0000025340,0.0000025283,0.0000025217,0.0000025161, -0.0000025118,0.0000025080,0.0000025062,0.0000025088,0.0000025181, -0.0000025293,0.0000025358,0.0000025370,0.0000025378,0.0000025384, -0.0000025360,0.0000025329,0.0000025337,0.0000025404,0.0000025513, -0.0000025619,0.0000025702,0.0000025769,0.0000025848,0.0000025962, -0.0000026091,0.0000026199,0.0000026272,0.0000026315,0.0000026329, -0.0000026305,0.0000026264,0.0000026223,0.0000026202,0.0000026187, -0.0000026168,0.0000026150,0.0000026132,0.0000026108,0.0000026065, -0.0000025996,0.0000025913,0.0000025849,0.0000025839,0.0000025883, -0.0000025941,0.0000025963,0.0000025929,0.0000025854,0.0000025788, -0.0000025755,0.0000025740,0.0000025725,0.0000025698,0.0000025653, -0.0000025592,0.0000025515,0.0000025398,0.0000025232,0.0000025096, -0.0000025046,0.0000025036,0.0000025019,0.0000024990,0.0000024948, -0.0000024904,0.0000024875,0.0000024862,0.0000024863,0.0000024891, -0.0000024939,0.0000024976,0.0000024982,0.0000024952,0.0000024910, -0.0000024892,0.0000024897,0.0000024876,0.0000024793,0.0000024737, -0.0000024806,0.0000025056,0.0000025505,0.0000025985,0.0000026262, -0.0000026337,0.0000026362,0.0000026421,0.0000026520,0.0000026611, -0.0000026654,0.0000026673,0.0000026703,0.0000026738,0.0000026750, -0.0000026730,0.0000026682,0.0000026622,0.0000026577,0.0000026540, -0.0000026490,0.0000026432,0.0000026400,0.0000026395,0.0000026378, -0.0000026300,0.0000026178,0.0000025998,0.0000025824,0.0000025777, -0.0000025831,0.0000025950,0.0000026069,0.0000026128,0.0000026132, -0.0000026098,0.0000025975,0.0000025806,0.0000025670,0.0000025505, -0.0000025256,0.0000025040,0.0000024918,0.0000024780,0.0000024519, -0.0000024182,0.0000023924,0.0000023776,0.0000023625,0.0000023464, -0.0000023311,0.0000023155,0.0000023002,0.0000022897,0.0000022871, -0.0000022882,0.0000022900,0.0000022925,0.0000022951,0.0000022959, -0.0000022947,0.0000022926,0.0000022894,0.0000022850,0.0000022801, -0.0000022765,0.0000022737,0.0000022722,0.0000022713,0.0000022710, -0.0000022714,0.0000022727,0.0000022747,0.0000022756,0.0000022738, -0.0000022721,0.0000022750,0.0000022829,0.0000022905,0.0000022946, -0.0000022957,0.0000022948,0.0000022890,0.0000022811,0.0000022764, -0.0000022684,0.0000022592,0.0000022580,0.0000022633,0.0000022696, -0.0000022753,0.0000022907,0.0000023119,0.0000023231,0.0000023239, -0.0000023240,0.0000023261,0.0000023308,0.0000023433,0.0000023615, -0.0000023742,0.0000023795,0.0000023841,0.0000023925,0.0000024016, -0.0000024082,0.0000024119,0.0000024136,0.0000024138,0.0000024133, -0.0000024120,0.0000024108,0.0000024090,0.0000024061,0.0000024020, -0.0000023966,0.0000023901,0.0000023831,0.0000023756,0.0000023688, -0.0000023628,0.0000023572,0.0000023529,0.0000023490,0.0000023472, -0.0000023486,0.0000023519,0.0000023549,0.0000023568,0.0000023568, -0.0000023553,0.0000023525,0.0000023489,0.0000023447,0.0000023403, -0.0000023353,0.0000023289,0.0000023218,0.0000023154,0.0000023101, -0.0000023042,0.0000022975,0.0000022900,0.0000022816,0.0000022744, -0.0000022702,0.0000022680,0.0000022666,0.0000022650,0.0000022637, -0.0000022632,0.0000022645,0.0000022666,0.0000022671,0.0000022652, -0.0000022612,0.0000022564,0.0000022523,0.0000022496,0.0000022483, -0.0000022476,0.0000022468,0.0000022457,0.0000022447,0.0000022437, -0.0000022424,0.0000022418,0.0000022423,0.0000022429,0.0000022441, -0.0000022463,0.0000022486,0.0000022497,0.0000022491,0.0000022475, -0.0000022457,0.0000022437,0.0000022416,0.0000022400,0.0000022409, -0.0000022449,0.0000022507,0.0000022547,0.0000022572,0.0000022593, -0.0000022577,0.0000022503,0.0000022418,0.0000022333,0.0000022252, -0.0000022181,0.0000022131,0.0000022107,0.0000022093,0.0000022072, -0.0000022039,0.0000021999,0.0000021956,0.0000021915,0.0000021888, -0.0000021879,0.0000021879,0.0000021875,0.0000021862,0.0000021844, -0.0000021818,0.0000021782,0.0000021736,0.0000021691,0.0000021641, -0.0000021589,0.0000021539,0.0000021487,0.0000021431,0.0000021390, -0.0000021382,0.0000021388,0.0000021392,0.0000021384,0.0000021365, -0.0000021342,0.0000021312,0.0000021278,0.0000021258,0.0000021255, -0.0000021293,0.0000021366,0.0000021459,0.0000021563,0.0000021664, -0.0000021743,0.0000021801,0.0000021847,0.0000021884,0.0000021910, -0.0000021929,0.0000021946,0.0000021954,0.0000021945,0.0000021921, -0.0000021894,0.0000021870,0.0000021866,0.0000021895,0.0000021966, -0.0000022046,0.0000022111,0.0000022150,0.0000022170,0.0000022177, -0.0000022174,0.0000022178,0.0000022202,0.0000022242,0.0000022297, -0.0000022360,0.0000022399,0.0000022392,0.0000022320,0.0000022194, -0.0000022045,0.0000021958,0.0000021987,0.0000022186,0.0000022523, -0.0000022877,0.0000023111,0.0000023187,0.0000023238,0.0000023283, -0.0000023271,0.0000023225,0.0000023154,0.0000023070,0.0000023008, -0.0000022993,0.0000023021,0.0000023090,0.0000023157,0.0000023173, -0.0000023141,0.0000023098,0.0000023079,0.0000023074,0.0000023057, -0.0000023024,0.0000022994,0.0000022977,0.0000022973,0.0000022976, -0.0000022986,0.0000023005,0.0000023032,0.0000023060,0.0000023085, -0.0000023114,0.0000023150,0.0000023182,0.0000023205,0.0000023229, -0.0000023256,0.0000023286,0.0000023322,0.0000023362,0.0000023400, -0.0000023449,0.0000023496,0.0000023533,0.0000023559,0.0000023578, -0.0000023591,0.0000023598,0.0000023601,0.0000023603,0.0000023608, -0.0000023546,0.0000023566,0.0000023589,0.0000023612,0.0000023623, -0.0000023621,0.0000023617,0.0000023619,0.0000023607,0.0000023561, -0.0000023506,0.0000023489,0.0000023526,0.0000023597,0.0000023654, -0.0000023679,0.0000023682,0.0000023666,0.0000023618,0.0000023546, -0.0000023496,0.0000023490,0.0000023522,0.0000023552,0.0000023571, -0.0000023583,0.0000023582,0.0000023585,0.0000023596,0.0000023611, -0.0000023606,0.0000023564,0.0000023477,0.0000023360,0.0000023265, -0.0000023219,0.0000023210,0.0000023215,0.0000023227,0.0000023252, -0.0000023313,0.0000023393,0.0000023460,0.0000023505,0.0000023544, -0.0000023586,0.0000023623,0.0000023645,0.0000023670,0.0000023680, -0.0000023615,0.0000023510,0.0000023484,0.0000023499,0.0000023484, -0.0000023447,0.0000023450,0.0000023502,0.0000023567,0.0000023622, -0.0000023665,0.0000023695,0.0000023709,0.0000023709,0.0000023685, -0.0000023647,0.0000023617,0.0000023600,0.0000023592,0.0000023576, -0.0000023561,0.0000023566,0.0000023599,0.0000023648,0.0000023700, -0.0000023766,0.0000023839,0.0000023885,0.0000023892,0.0000023889, -0.0000023903,0.0000023913,0.0000023903,0.0000023880,0.0000023861, -0.0000023847,0.0000023821,0.0000023768,0.0000023691,0.0000023602, -0.0000023512,0.0000023437,0.0000023413,0.0000023432,0.0000023490, -0.0000023552,0.0000023618,0.0000023679,0.0000023714,0.0000023728, -0.0000023746,0.0000023777,0.0000023800,0.0000023803,0.0000023783, -0.0000023741,0.0000023684,0.0000023640,0.0000023640,0.0000023702, -0.0000023822,0.0000023961,0.0000024077,0.0000024162,0.0000024212, -0.0000024217,0.0000024196,0.0000024158,0.0000024100,0.0000024020, -0.0000023924,0.0000023822,0.0000023722,0.0000023647,0.0000023633, -0.0000023683,0.0000023790,0.0000023909,0.0000024036,0.0000024145, -0.0000024209,0.0000024237,0.0000024227,0.0000024198,0.0000024258, -0.0000024503,0.0000024729,0.0000024822,0.0000024857,0.0000024932, -0.0000025042,0.0000025157,0.0000025278,0.0000025355,0.0000025360, -0.0000025327,0.0000025267,0.0000025184,0.0000025117,0.0000025065, -0.0000025024,0.0000025008,0.0000025006,0.0000024990,0.0000024926, -0.0000024813,0.0000024707,0.0000024659,0.0000024677,0.0000024735, -0.0000024778,0.0000024778,0.0000024709,0.0000024557,0.0000024342, -0.0000024136,0.0000023947,0.0000023711,0.0000023489,0.0000023389, -0.0000023378,0.0000023400,0.0000023437,0.0000023469,0.0000023475, -0.0000023465,0.0000023448,0.0000023433,0.0000023431,0.0000023437, -0.0000023438,0.0000023443,0.0000023461,0.0000023485,0.0000023495, -0.0000023500,0.0000023499,0.0000023536,0.0000023625,0.0000023749, -0.0000023874,0.0000023980,0.0000024066,0.0000024140,0.0000024210, -0.0000024279,0.0000024343,0.0000024400,0.0000024452,0.0000024499, -0.0000024546,0.0000024593,0.0000024634,0.0000024666,0.0000024683, -0.0000024684,0.0000024680,0.0000024668,0.0000024650,0.0000024640, -0.0000024633,0.0000024630,0.0000024633,0.0000024643,0.0000024669, -0.0000024710,0.0000024755,0.0000024804,0.0000024858,0.0000024916, -0.0000024970,0.0000025020,0.0000025061,0.0000025094,0.0000025124, -0.0000025158,0.0000025193,0.0000025221,0.0000025232,0.0000025227, -0.0000025205,0.0000025172,0.0000025149,0.0000025150,0.0000025159, -0.0000025143,0.0000025090,0.0000025017,0.0000024938,0.0000024849, -0.0000024762,0.0000024701,0.0000024670,0.0000024652,0.0000024616, -0.0000024547,0.0000024488,0.0000024479,0.0000024530,0.0000024616, -0.0000024674,0.0000024668,0.0000024615,0.0000024543,0.0000024429, -0.0000024265,0.0000024127,0.0000024059,0.0000023994,0.0000023882, -0.0000023761,0.0000023690,0.0000023680,0.0000023690,0.0000023676, -0.0000023611,0.0000023520,0.0000023450,0.0000023426,0.0000023432, -0.0000023469,0.0000023541,0.0000023637,0.0000023743,0.0000023840, -0.0000023915,0.0000023962,0.0000023994,0.0000024024,0.0000024060, -0.0000024099,0.0000024126,0.0000024129,0.0000024107,0.0000024062, -0.0000024014,0.0000023996,0.0000024029,0.0000024135,0.0000024269, -0.0000024409,0.0000024592,0.0000024813,0.0000024981,0.0000025036, -0.0000025029,0.0000025029,0.0000025078,0.0000025208,0.0000025397, -0.0000025583,0.0000025715,0.0000025790,0.0000025823,0.0000025824, -0.0000025792,0.0000025738,0.0000025687,0.0000025623,0.0000025549, -0.0000025510,0.0000025518,0.0000025519,0.0000025454,0.0000025327, -0.0000025149,0.0000024928,0.0000024750,0.0000024665,0.0000024586, -0.0000024441,0.0000024271,0.0000024136,0.0000024049,0.0000023988, -0.0000023929,0.0000023873,0.0000023832,0.0000023791,0.0000023750, -0.0000023711,0.0000023670,0.0000023618,0.0000023563,0.0000023525, -0.0000023513,0.0000023527,0.0000023553,0.0000023605,0.0000023677, -0.0000023731,0.0000023764,0.0000023787,0.0000023821,0.0000023895, -0.0000024009,0.0000024152,0.0000024261,0.0000024263,0.0000024120, -0.0000023927,0.0000023930,0.0000024209,0.0000024464,0.0000024629, -0.0000024760,0.0000024835,0.0000024870,0.0000024866,0.0000024840, -0.0000024796,0.0000024755,0.0000024714,0.0000024666,0.0000024605, -0.0000024542,0.0000024490,0.0000024468,0.0000024467,0.0000024486, -0.0000024538,0.0000024587,0.0000024615,0.0000024639,0.0000024665, -0.0000024679,0.0000024684,0.0000024684,0.0000024690,0.0000024700, -0.0000024699,0.0000024693,0.0000024706,0.0000024744,0.0000024789, -0.0000024829,0.0000024862,0.0000024904,0.0000024951,0.0000024984, -0.0000025008,0.0000025026,0.0000025028,0.0000025024,0.0000025022, -0.0000025013,0.0000025013,0.0000025057,0.0000025063,0.0000024977, -0.0000024835,0.0000024674,0.0000024503,0.0000024321,0.0000024159, -0.0000024050,0.0000023993,0.0000023969,0.0000023951,0.0000023917, -0.0000023850,0.0000023756,0.0000023638,0.0000023508,0.0000023407, -0.0000023346,0.0000023314,0.0000023307,0.0000023316,0.0000023331, -0.0000023341,0.0000023327,0.0000023296,0.0000023255,0.0000023219, -0.0000023204,0.0000023205,0.0000023211,0.0000023231,0.0000023245, -0.0000023241,0.0000023209,0.0000023154,0.0000023099,0.0000023069, -0.0000023061,0.0000023047,0.0000023008,0.0000022961,0.0000022944, -0.0000022955,0.0000022983,0.0000022988,0.0000022969,0.0000022933, -0.0000022893,0.0000022857,0.0000022811,0.0000022769,0.0000022716, -0.0000022666,0.0000022623,0.0000022596,0.0000022583,0.0000022576, -0.0000022576,0.0000022582,0.0000022601,0.0000022627,0.0000022650, -0.0000022680,0.0000022714,0.0000022754,0.0000022794,0.0000022803, -0.0000022784,0.0000022778,0.0000022803,0.0000022816,0.0000022796, -0.0000022750,0.0000022731,0.0000022739,0.0000022675,0.0000022599, -0.0000022713,0.0000022923,0.0000023050,0.0000023110,0.0000023106, -0.0000023040,0.0000022965,0.0000022920,0.0000022907,0.0000022922, -0.0000022969,0.0000023021,0.0000023050,0.0000023066,0.0000023088, -0.0000023103,0.0000023100,0.0000023075,0.0000023012,0.0000022904, -0.0000022771,0.0000022636,0.0000022542,0.0000022521,0.0000022549, -0.0000022599,0.0000022657,0.0000022719,0.0000022744,0.0000022696, -0.0000022589,0.0000022504,0.0000022467,0.0000022463,0.0000022487, -0.0000022560,0.0000022655,0.0000022720,0.0000022809,0.0000022971, -0.0000023137,0.0000023263,0.0000023392,0.0000023564,0.0000023712, -0.0000023739,0.0000023660,0.0000023569,0.0000023550,0.0000023667, -0.0000023822,0.0000023876,0.0000023878,0.0000023916,0.0000024029, -0.0000024251,0.0000024511,0.0000024637,0.0000024810,0.0000025097, -0.0000025286,0.0000025418,0.0000025687,0.0000025984,0.0000026049, -0.0000025854,0.0000025519,0.0000025238,0.0000024981,0.0000024497, -0.0000024152,0.0000024189,0.0000024310,0.0000024274,0.0000024139, -0.0000024028,0.0000023943,0.0000023918,0.0000024011,0.0000024187, -0.0000024228,0.0000024404,0.0000024784,0.0000024850,0.0000024892, -0.0000025556,0.0000026032,0.0000026110,0.0000025654,0.0000025001, -0.0000024815,0.0000024823,0.0000024615,0.0000024155,0.0000024004, -0.0000024047,0.0000024196,0.0000024382,0.0000024508,0.0000024554, -0.0000024532,0.0000024476,0.0000024403,0.0000024324,0.0000024266, -0.0000024239,0.0000024225,0.0000024217,0.0000024223,0.0000024239, -0.0000024269,0.0000024308,0.0000024357,0.0000024413,0.0000024456, -0.0000024457,0.0000024421,0.0000024349,0.0000024270,0.0000024215, -0.0000024149,0.0000024070,0.0000023998,0.0000023939,0.0000023892, -0.0000023868,0.0000023874,0.0000023899,0.0000023924,0.0000023943, -0.0000023959,0.0000023975,0.0000023989,0.0000024003,0.0000024004, -0.0000023989,0.0000023955,0.0000023918,0.0000023907,0.0000023932, -0.0000023978,0.0000024010,0.0000024025,0.0000024046,0.0000024063, -0.0000024039,0.0000023969,0.0000023906,0.0000023889,0.0000023921, -0.0000023987,0.0000024076,0.0000024193,0.0000024290,0.0000024326, -0.0000024345,0.0000024404,0.0000024487,0.0000024549,0.0000024618, -0.0000024731,0.0000024856,0.0000024946,0.0000025003,0.0000025043, -0.0000025084,0.0000025143,0.0000025228,0.0000025303,0.0000025333, -0.0000025334,0.0000025334,0.0000025340,0.0000025346,0.0000025349, -0.0000025353,0.0000025356,0.0000025360,0.0000025366,0.0000025371, -0.0000025369,0.0000025346,0.0000025291,0.0000025218,0.0000025169, -0.0000025175,0.0000025235,0.0000025307,0.0000025366,0.0000025419, -0.0000025465,0.0000025492,0.0000025499,0.0000025498,0.0000025489, -0.0000025484,0.0000025450,0.0000025363,0.0000025222,0.0000025078, -0.0000024953,0.0000024833,0.0000024718,0.0000024617,0.0000024489, -0.0000024300,0.0000024092,0.0000023928,0.0000023807,0.0000023702, -0.0000023599,0.0000023492,0.0000023379,0.0000023261,0.0000023159, -0.0000023082,0.0000023023,0.0000022978,0.0000022951,0.0000022947, -0.0000022973,0.0000023033,0.0000023126,0.0000023245,0.0000023366, -0.0000023454,0.0000023506,0.0000023552,0.0000023609,0.0000023671, -0.0000023726,0.0000023768,0.0000023795,0.0000023814,0.0000023829, -0.0000023841,0.0000023839,0.0000023809,0.0000023754,0.0000023695, -0.0000023622,0.0000023469,0.0000023195,0.0000022851,0.0000022560, -0.0000022398,0.0000022326,0.0000022271,0.0000022209,0.0000022157, -0.0000022145,0.0000022170,0.0000022222,0.0000022287,0.0000022345, -0.0000022364,0.0000022327,0.0000022226,0.0000022156,0.0000022153, -0.0000022221,0.0000022344,0.0000022456,0.0000022524,0.0000022588, -0.0000022706,0.0000022863,0.0000022991,0.0000023075,0.0000023149, -0.0000023231,0.0000023301,0.0000023345,0.0000023381,0.0000023415, -0.0000023446,0.0000023517,0.0000023654,0.0000023792,0.0000023870, -0.0000023914,0.0000024011,0.0000024176,0.0000024324,0.0000024393, -0.0000024401,0.0000024391,0.0000024349,0.0000024280,0.0000024248, -0.0000024323,0.0000024475,0.0000024590,0.0000024613,0.0000024595, -0.0000024556,0.0000024539,0.0000024579,0.0000024643,0.0000024693, -0.0000024746,0.0000024829,0.0000024912,0.0000024952,0.0000024952, -0.0000024905,0.0000024813,0.0000024725,0.0000024688,0.0000024709, -0.0000024745,0.0000024755,0.0000024728,0.0000024673,0.0000024630, -0.0000024630,0.0000024672,0.0000024728,0.0000024780,0.0000024836, -0.0000024897,0.0000024952,0.0000024985,0.0000024990,0.0000024973, -0.0000024941,0.0000024916,0.0000024912,0.0000024926,0.0000024961, -0.0000025011,0.0000025068,0.0000025122,0.0000025164,0.0000025184, -0.0000025177,0.0000025151,0.0000025130,0.0000025127,0.0000025143, -0.0000025178,0.0000025234,0.0000025305,0.0000025370,0.0000025414, -0.0000025434,0.0000025434,0.0000025404,0.0000025357,0.0000025322, -0.0000025321,0.0000025341,0.0000025353,0.0000025342,0.0000025315, -0.0000025274,0.0000025217,0.0000025164,0.0000025128,0.0000025092, -0.0000025061,0.0000025068,0.0000025133,0.0000025235,0.0000025315, -0.0000025348,0.0000025377,0.0000025406,0.0000025397,0.0000025356, -0.0000025328,0.0000025344,0.0000025403,0.0000025482,0.0000025570, -0.0000025655,0.0000025739,0.0000025837,0.0000025957,0.0000026074, -0.0000026163,0.0000026229,0.0000026275,0.0000026296,0.0000026292, -0.0000026279,0.0000026283,0.0000026294,0.0000026294,0.0000026283, -0.0000026263,0.0000026232,0.0000026181,0.0000026105,0.0000026016, -0.0000025933,0.0000025888,0.0000025890,0.0000025911,0.0000025915, -0.0000025869,0.0000025787,0.0000025722,0.0000025700,0.0000025697, -0.0000025684,0.0000025654,0.0000025604,0.0000025542,0.0000025457, -0.0000025315,0.0000025145,0.0000025056,0.0000025049,0.0000025035, -0.0000024988,0.0000024920,0.0000024846,0.0000024781,0.0000024740, -0.0000024726,0.0000024737,0.0000024771,0.0000024815,0.0000024836, -0.0000024826,0.0000024799,0.0000024792,0.0000024811,0.0000024812, -0.0000024760,0.0000024700,0.0000024742,0.0000024948,0.0000025347, -0.0000025843,0.0000026193,0.0000026315,0.0000026339,0.0000026371, -0.0000026448,0.0000026554,0.0000026627,0.0000026650,0.0000026660, -0.0000026680,0.0000026697,0.0000026691,0.0000026659,0.0000026612, -0.0000026568,0.0000026532,0.0000026496,0.0000026449,0.0000026401, -0.0000026390,0.0000026395,0.0000026366,0.0000026284,0.0000026163, -0.0000025988,0.0000025848,0.0000025832,0.0000025908,0.0000026025, -0.0000026123,0.0000026154,0.0000026147,0.0000026104,0.0000025986, -0.0000025829,0.0000025694,0.0000025506,0.0000025230,0.0000025010, -0.0000024894,0.0000024738,0.0000024435,0.0000024098,0.0000023877, -0.0000023737,0.0000023581,0.0000023416,0.0000023247,0.0000023057, -0.0000022868,0.0000022736,0.0000022692,0.0000022710,0.0000022755, -0.0000022806,0.0000022847,0.0000022867,0.0000022872,0.0000022876, -0.0000022874,0.0000022856,0.0000022818,0.0000022779,0.0000022737, -0.0000022690,0.0000022635,0.0000022576,0.0000022519,0.0000022476, -0.0000022469,0.0000022504,0.0000022559,0.0000022605,0.0000022651, -0.0000022732,0.0000022836,0.0000022911,0.0000022938,0.0000022938, -0.0000022907,0.0000022829,0.0000022759,0.0000022682,0.0000022580, -0.0000022530,0.0000022560,0.0000022634,0.0000022681,0.0000022747, -0.0000022925,0.0000023116,0.0000023192,0.0000023202,0.0000023216, -0.0000023247,0.0000023301,0.0000023411,0.0000023565,0.0000023693, -0.0000023764,0.0000023812,0.0000023863,0.0000023918,0.0000023963, -0.0000023991,0.0000024001,0.0000023991,0.0000023967,0.0000023939, -0.0000023910,0.0000023883,0.0000023854,0.0000023817,0.0000023771, -0.0000023719,0.0000023661,0.0000023604,0.0000023555,0.0000023511, -0.0000023476,0.0000023460,0.0000023452,0.0000023456,0.0000023465, -0.0000023471,0.0000023471,0.0000023463,0.0000023451,0.0000023438, -0.0000023424,0.0000023401,0.0000023367,0.0000023319,0.0000023253, -0.0000023169,0.0000023092,0.0000023033,0.0000022980,0.0000022926, -0.0000022868,0.0000022799,0.0000022733,0.0000022692,0.0000022677, -0.0000022672,0.0000022664,0.0000022650,0.0000022638,0.0000022639, -0.0000022657,0.0000022677,0.0000022683,0.0000022666,0.0000022633, -0.0000022594,0.0000022558,0.0000022530,0.0000022512,0.0000022498, -0.0000022486,0.0000022475,0.0000022465,0.0000022447,0.0000022424, -0.0000022411,0.0000022410,0.0000022422,0.0000022448,0.0000022480, -0.0000022498,0.0000022496,0.0000022479,0.0000022460,0.0000022443, -0.0000022425,0.0000022414,0.0000022421,0.0000022451,0.0000022497, -0.0000022534,0.0000022557,0.0000022579,0.0000022577,0.0000022526, -0.0000022450,0.0000022368,0.0000022280,0.0000022199,0.0000022140, -0.0000022112,0.0000022094,0.0000022067,0.0000022028,0.0000021982, -0.0000021937,0.0000021901,0.0000021877,0.0000021868,0.0000021868, -0.0000021871,0.0000021870,0.0000021863,0.0000021853,0.0000021837, -0.0000021811,0.0000021770,0.0000021718,0.0000021661,0.0000021599, -0.0000021540,0.0000021478,0.0000021409,0.0000021353,0.0000021336, -0.0000021349,0.0000021373,0.0000021387,0.0000021391,0.0000021390, -0.0000021369,0.0000021335,0.0000021294,0.0000021263,0.0000021256, -0.0000021283,0.0000021335,0.0000021423,0.0000021517,0.0000021598, -0.0000021665,0.0000021725,0.0000021779,0.0000021821,0.0000021855, -0.0000021886,0.0000021906,0.0000021904,0.0000021880,0.0000021849, -0.0000021825,0.0000021821,0.0000021853,0.0000021922,0.0000021996, -0.0000022060,0.0000022109,0.0000022143,0.0000022160,0.0000022153, -0.0000022149,0.0000022168,0.0000022213,0.0000022264,0.0000022320, -0.0000022375,0.0000022397,0.0000022369,0.0000022285,0.0000022157, -0.0000022021,0.0000021979,0.0000022055,0.0000022324,0.0000022685, -0.0000023000,0.0000023161,0.0000023207,0.0000023252,0.0000023267, -0.0000023237,0.0000023179,0.0000023101,0.0000023028,0.0000022998, -0.0000023002,0.0000023035,0.0000023085,0.0000023119,0.0000023122, -0.0000023112,0.0000023102,0.0000023092,0.0000023065,0.0000023019, -0.0000022973,0.0000022944,0.0000022929,0.0000022928,0.0000022940, -0.0000022968,0.0000023005,0.0000023042,0.0000023074,0.0000023104, -0.0000023143,0.0000023182,0.0000023216,0.0000023252,0.0000023286, -0.0000023317,0.0000023343,0.0000023365,0.0000023384,0.0000023404, -0.0000023427,0.0000023449,0.0000023461,0.0000023465,0.0000023476, -0.0000023485,0.0000023497,0.0000023512,0.0000023529,0.0000023439, -0.0000023463,0.0000023490,0.0000023514,0.0000023532,0.0000023542, -0.0000023546,0.0000023553,0.0000023559,0.0000023544,0.0000023491, -0.0000023429,0.0000023402,0.0000023435,0.0000023505,0.0000023585, -0.0000023644,0.0000023676,0.0000023686,0.0000023670,0.0000023629, -0.0000023594,0.0000023583,0.0000023588,0.0000023599,0.0000023614, -0.0000023628,0.0000023635,0.0000023617,0.0000023575,0.0000023487, -0.0000023366,0.0000023249,0.0000023175,0.0000023154,0.0000023163, -0.0000023175,0.0000023193,0.0000023235,0.0000023305,0.0000023392, -0.0000023471,0.0000023525,0.0000023558,0.0000023585,0.0000023613, -0.0000023638,0.0000023656,0.0000023684,0.0000023687,0.0000023608, -0.0000023505,0.0000023484,0.0000023497,0.0000023476,0.0000023433, -0.0000023433,0.0000023490,0.0000023560,0.0000023613,0.0000023647, -0.0000023665,0.0000023668,0.0000023662,0.0000023638,0.0000023602, -0.0000023575,0.0000023560,0.0000023551,0.0000023537,0.0000023519, -0.0000023519,0.0000023551,0.0000023603,0.0000023660,0.0000023730, -0.0000023804,0.0000023861,0.0000023885,0.0000023892,0.0000023905, -0.0000023922,0.0000023921,0.0000023896,0.0000023865,0.0000023842, -0.0000023829,0.0000023805,0.0000023750,0.0000023675,0.0000023593, -0.0000023505,0.0000023434,0.0000023414,0.0000023443,0.0000023504, -0.0000023571,0.0000023635,0.0000023684,0.0000023705,0.0000023710, -0.0000023725,0.0000023753,0.0000023774,0.0000023779,0.0000023764, -0.0000023725,0.0000023672,0.0000023631,0.0000023626,0.0000023682, -0.0000023805,0.0000023936,0.0000024035,0.0000024099,0.0000024123, -0.0000024114,0.0000024088,0.0000024047,0.0000023987,0.0000023911, -0.0000023822,0.0000023735,0.0000023654,0.0000023600,0.0000023602, -0.0000023677,0.0000023784,0.0000023896,0.0000024021,0.0000024129, -0.0000024194,0.0000024224,0.0000024215,0.0000024189,0.0000024246, -0.0000024493,0.0000024723,0.0000024822,0.0000024863,0.0000024946, -0.0000025067,0.0000025189,0.0000025299,0.0000025357,0.0000025353, -0.0000025316,0.0000025253,0.0000025185,0.0000025137,0.0000025100, -0.0000025074,0.0000025067,0.0000025063,0.0000025032,0.0000024956, -0.0000024849,0.0000024763,0.0000024742,0.0000024782,0.0000024835, -0.0000024852,0.0000024803,0.0000024668,0.0000024455,0.0000024227, -0.0000024034,0.0000023820,0.0000023564,0.0000023398,0.0000023364, -0.0000023362,0.0000023380,0.0000023420,0.0000023453,0.0000023455, -0.0000023443,0.0000023425,0.0000023410,0.0000023406,0.0000023409, -0.0000023412,0.0000023424,0.0000023458,0.0000023498,0.0000023517, -0.0000023511,0.0000023487,0.0000023476,0.0000023512,0.0000023606, -0.0000023740,0.0000023880,0.0000023997,0.0000024091,0.0000024179, -0.0000024267,0.0000024345,0.0000024404,0.0000024443,0.0000024471, -0.0000024498,0.0000024531,0.0000024564,0.0000024591,0.0000024606, -0.0000024608,0.0000024606,0.0000024600,0.0000024597,0.0000024597, -0.0000024601,0.0000024607,0.0000024616,0.0000024633,0.0000024661, -0.0000024700,0.0000024747,0.0000024796,0.0000024845,0.0000024892, -0.0000024937,0.0000024983,0.0000025028,0.0000025067,0.0000025098, -0.0000025127,0.0000025156,0.0000025180,0.0000025192,0.0000025187, -0.0000025170,0.0000025143,0.0000025122,0.0000025123,0.0000025137, -0.0000025137,0.0000025092,0.0000025016,0.0000024941,0.0000024870, -0.0000024798,0.0000024735,0.0000024695,0.0000024668,0.0000024632, -0.0000024571,0.0000024515,0.0000024500,0.0000024524,0.0000024593, -0.0000024657,0.0000024669,0.0000024635,0.0000024571,0.0000024473, -0.0000024327,0.0000024182,0.0000024099,0.0000024039,0.0000023946, -0.0000023833,0.0000023740,0.0000023691,0.0000023686,0.0000023702, -0.0000023697,0.0000023648,0.0000023567,0.0000023491,0.0000023452, -0.0000023458,0.0000023486,0.0000023536,0.0000023603,0.0000023686, -0.0000023775,0.0000023861,0.0000023935,0.0000023983,0.0000024012, -0.0000024044,0.0000024087,0.0000024123,0.0000024133,0.0000024108, -0.0000024054,0.0000024009,0.0000024008,0.0000024066,0.0000024169, -0.0000024274,0.0000024390,0.0000024564,0.0000024781,0.0000024951, -0.0000025026,0.0000025043,0.0000025064,0.0000025131,0.0000025266, -0.0000025443,0.0000025602,0.0000025702,0.0000025743,0.0000025745, -0.0000025724,0.0000025692,0.0000025653,0.0000025591,0.0000025537, -0.0000025535,0.0000025567,0.0000025558,0.0000025455,0.0000025255, -0.0000025007,0.0000024805,0.0000024680,0.0000024565,0.0000024403, -0.0000024227,0.0000024090,0.0000024005,0.0000023943,0.0000023872, -0.0000023784,0.0000023707,0.0000023663,0.0000023647,0.0000023653, -0.0000023655,0.0000023633,0.0000023586,0.0000023524,0.0000023457, -0.0000023396,0.0000023361,0.0000023340,0.0000023349,0.0000023409, -0.0000023504,0.0000023601,0.0000023677,0.0000023737,0.0000023814, -0.0000023897,0.0000023991,0.0000024116,0.0000024245,0.0000024303, -0.0000024198,0.0000023986,0.0000023903,0.0000024064,0.0000024331, -0.0000024513,0.0000024649,0.0000024767,0.0000024852,0.0000024890, -0.0000024887,0.0000024848,0.0000024781,0.0000024722,0.0000024666, -0.0000024612,0.0000024567,0.0000024533,0.0000024519,0.0000024508, -0.0000024514,0.0000024538,0.0000024567,0.0000024576,0.0000024566, -0.0000024552,0.0000024552,0.0000024556,0.0000024562,0.0000024575, -0.0000024592,0.0000024606,0.0000024622,0.0000024644,0.0000024674, -0.0000024720,0.0000024769,0.0000024813,0.0000024862,0.0000024905, -0.0000024939,0.0000024968,0.0000024984,0.0000024977,0.0000024956, -0.0000024948,0.0000024960,0.0000024983,0.0000024964,0.0000024863, -0.0000024714,0.0000024577,0.0000024453,0.0000024324,0.0000024200, -0.0000024098,0.0000024036,0.0000023994,0.0000023950,0.0000023894, -0.0000023800,0.0000023682,0.0000023566,0.0000023463,0.0000023396, -0.0000023366,0.0000023360,0.0000023367,0.0000023375,0.0000023374, -0.0000023372,0.0000023366,0.0000023359,0.0000023347,0.0000023316, -0.0000023276,0.0000023244,0.0000023224,0.0000023217,0.0000023215, -0.0000023197,0.0000023154,0.0000023109,0.0000023083,0.0000023070, -0.0000023054,0.0000023025,0.0000022992,0.0000022977,0.0000022994, -0.0000023035,0.0000023057,0.0000023057,0.0000023035,0.0000022989, -0.0000022924,0.0000022865,0.0000022794,0.0000022716,0.0000022637, -0.0000022566,0.0000022511,0.0000022475,0.0000022467,0.0000022474, -0.0000022487,0.0000022502,0.0000022528,0.0000022576,0.0000022624, -0.0000022658,0.0000022691,0.0000022727,0.0000022762,0.0000022774, -0.0000022751,0.0000022731,0.0000022745,0.0000022775,0.0000022773, -0.0000022741,0.0000022714,0.0000022723,0.0000022702,0.0000022617, -0.0000022643,0.0000022847,0.0000023004,0.0000023088,0.0000023114, -0.0000023077,0.0000022985,0.0000022919,0.0000022899,0.0000022900, -0.0000022926,0.0000022973,0.0000023011,0.0000023027,0.0000023039, -0.0000023058,0.0000023070,0.0000023064,0.0000023026,0.0000022936, -0.0000022799,0.0000022649,0.0000022533,0.0000022488,0.0000022512, -0.0000022569,0.0000022630,0.0000022688,0.0000022726,0.0000022709, -0.0000022615,0.0000022512,0.0000022454,0.0000022445,0.0000022468, -0.0000022525,0.0000022610,0.0000022682,0.0000022745,0.0000022869, -0.0000023035,0.0000023162,0.0000023259,0.0000023389,0.0000023570, -0.0000023714,0.0000023724,0.0000023643,0.0000023563,0.0000023555, -0.0000023677,0.0000023825,0.0000023870,0.0000023865,0.0000023891, -0.0000023985,0.0000024195,0.0000024452,0.0000024572,0.0000024723, -0.0000025025,0.0000025236,0.0000025367,0.0000025590,0.0000025833, -0.0000025904,0.0000025787,0.0000025506,0.0000025228,0.0000024958, -0.0000024474,0.0000024142,0.0000024196,0.0000024331,0.0000024310, -0.0000024168,0.0000024021,0.0000023908,0.0000023863,0.0000023927, -0.0000024108,0.0000024202,0.0000024306,0.0000024668,0.0000024889, -0.0000024852,0.0000025351,0.0000025959,0.0000026117,0.0000025893, -0.0000025158,0.0000024815,0.0000024806,0.0000024710,0.0000024271, -0.0000024013,0.0000024030,0.0000024139,0.0000024331,0.0000024484, -0.0000024555,0.0000024540,0.0000024472,0.0000024385,0.0000024296, -0.0000024238,0.0000024223,0.0000024230,0.0000024250,0.0000024263, -0.0000024268,0.0000024282,0.0000024315,0.0000024364,0.0000024420, -0.0000024464,0.0000024464,0.0000024428,0.0000024358,0.0000024275, -0.0000024213,0.0000024142,0.0000024056,0.0000023979,0.0000023919, -0.0000023867,0.0000023840,0.0000023840,0.0000023857,0.0000023870, -0.0000023878,0.0000023888,0.0000023905,0.0000023922,0.0000023933, -0.0000023924,0.0000023894,0.0000023851,0.0000023821,0.0000023825, -0.0000023865,0.0000023918,0.0000023940,0.0000023936,0.0000023938, -0.0000023937,0.0000023908,0.0000023863,0.0000023835,0.0000023835, -0.0000023874,0.0000023940,0.0000024023,0.0000024131,0.0000024230, -0.0000024278,0.0000024306,0.0000024365,0.0000024456,0.0000024536, -0.0000024592,0.0000024666,0.0000024778,0.0000024889,0.0000024963, -0.0000025011,0.0000025043,0.0000025068,0.0000025119,0.0000025199, -0.0000025271,0.0000025303,0.0000025302,0.0000025288,0.0000025281, -0.0000025278,0.0000025282,0.0000025293,0.0000025307,0.0000025316, -0.0000025316,0.0000025305,0.0000025281,0.0000025235,0.0000025168, -0.0000025105,0.0000025083,0.0000025126,0.0000025205,0.0000025273, -0.0000025323,0.0000025373,0.0000025422,0.0000025455,0.0000025469, -0.0000025459,0.0000025414,0.0000025322,0.0000025192,0.0000025062, -0.0000024952,0.0000024836,0.0000024716,0.0000024606,0.0000024475, -0.0000024282,0.0000024066,0.0000023884,0.0000023749,0.0000023643, -0.0000023549,0.0000023451,0.0000023340,0.0000023219,0.0000023105, -0.0000023008,0.0000022937,0.0000022884,0.0000022841,0.0000022807, -0.0000022786,0.0000022784,0.0000022806,0.0000022858,0.0000022940, -0.0000023062,0.0000023219,0.0000023356,0.0000023434,0.0000023475, -0.0000023521,0.0000023585,0.0000023657,0.0000023719,0.0000023757, -0.0000023766,0.0000023757,0.0000023726,0.0000023684,0.0000023649, -0.0000023621,0.0000023550,0.0000023372,0.0000023085,0.0000022759, -0.0000022500,0.0000022365,0.0000022306,0.0000022251,0.0000022184, -0.0000022136,0.0000022129,0.0000022150,0.0000022191,0.0000022264, -0.0000022341,0.0000022376,0.0000022346,0.0000022248,0.0000022173, -0.0000022164,0.0000022225,0.0000022345,0.0000022468,0.0000022548, -0.0000022605,0.0000022709,0.0000022873,0.0000023019,0.0000023106, -0.0000023169,0.0000023245,0.0000023331,0.0000023398,0.0000023434, -0.0000023457,0.0000023475,0.0000023504,0.0000023584,0.0000023700, -0.0000023792,0.0000023835,0.0000023884,0.0000024013,0.0000024189, -0.0000024321,0.0000024381,0.0000024395,0.0000024383,0.0000024325, -0.0000024254,0.0000024259,0.0000024378,0.0000024540,0.0000024633, -0.0000024640,0.0000024601,0.0000024543,0.0000024524,0.0000024563, -0.0000024622,0.0000024676,0.0000024745,0.0000024834,0.0000024900, -0.0000024923,0.0000024920,0.0000024868,0.0000024769,0.0000024664, -0.0000024609,0.0000024618,0.0000024663,0.0000024700,0.0000024698, -0.0000024653,0.0000024606,0.0000024594,0.0000024615,0.0000024658, -0.0000024705,0.0000024760,0.0000024828,0.0000024893,0.0000024934, -0.0000024942,0.0000024926,0.0000024897,0.0000024880,0.0000024879, -0.0000024892,0.0000024921,0.0000024964,0.0000025010,0.0000025055, -0.0000025094,0.0000025121,0.0000025130,0.0000025120,0.0000025099, -0.0000025088,0.0000025096,0.0000025134,0.0000025196,0.0000025268, -0.0000025329,0.0000025366,0.0000025379,0.0000025378,0.0000025346, -0.0000025297,0.0000025261,0.0000025261,0.0000025290,0.0000025314, -0.0000025310,0.0000025291,0.0000025266,0.0000025224,0.0000025177, -0.0000025141,0.0000025106,0.0000025071,0.0000025064,0.0000025103, -0.0000025187,0.0000025271,0.0000025319,0.0000025360,0.0000025410, -0.0000025427,0.0000025402,0.0000025364,0.0000025349,0.0000025367, -0.0000025398,0.0000025457,0.0000025542,0.0000025634,0.0000025730, -0.0000025839,0.0000025957,0.0000026062,0.0000026139,0.0000026195, -0.0000026238,0.0000026273,0.0000026293,0.0000026324,0.0000026349, -0.0000026356,0.0000026347,0.0000026322,0.0000026285,0.0000026232, -0.0000026161,0.0000026075,0.0000025986,0.0000025920,0.0000025890, -0.0000025881,0.0000025865,0.0000025810,0.0000025726,0.0000025666, -0.0000025655,0.0000025662,0.0000025651,0.0000025615,0.0000025565, -0.0000025500,0.0000025398,0.0000025235,0.0000025089,0.0000025051, -0.0000025045,0.0000024986,0.0000024889,0.0000024790,0.0000024704, -0.0000024639,0.0000024603,0.0000024594,0.0000024608,0.0000024644, -0.0000024677,0.0000024690,0.0000024687,0.0000024690,0.0000024716, -0.0000024732,0.0000024699,0.0000024652,0.0000024684,0.0000024858, -0.0000025211,0.0000025696,0.0000026104,0.0000026287,0.0000026328, -0.0000026342,0.0000026383,0.0000026477,0.0000026577,0.0000026629, -0.0000026642,0.0000026646,0.0000026650,0.0000026642,0.0000026620, -0.0000026589,0.0000026557,0.0000026527,0.0000026497,0.0000026463, -0.0000026416,0.0000026377,0.0000026380,0.0000026386,0.0000026338, -0.0000026253,0.0000026138,0.0000025979,0.0000025872,0.0000025882, -0.0000025966,0.0000026073,0.0000026143,0.0000026155,0.0000026142, -0.0000026099,0.0000025991,0.0000025846,0.0000025708,0.0000025496, -0.0000025195,0.0000024975,0.0000024863,0.0000024684,0.0000024347, -0.0000024021,0.0000023841,0.0000023710,0.0000023559,0.0000023385, -0.0000023165,0.0000022918,0.0000022713,0.0000022574,0.0000022503, -0.0000022500,0.0000022543,0.0000022615,0.0000022688,0.0000022740, -0.0000022769,0.0000022785,0.0000022795,0.0000022796,0.0000022788, -0.0000022773,0.0000022744,0.0000022698,0.0000022632,0.0000022551, -0.0000022463,0.0000022370,0.0000022291,0.0000022259,0.0000022284, -0.0000022372,0.0000022480,0.0000022594,0.0000022721,0.0000022836, -0.0000022902,0.0000022918,0.0000022911,0.0000022855,0.0000022772, -0.0000022691,0.0000022585,0.0000022501,0.0000022499,0.0000022567, -0.0000022637,0.0000022670,0.0000022752,0.0000022943,0.0000023117, -0.0000023186,0.0000023201,0.0000023219,0.0000023248,0.0000023294, -0.0000023379,0.0000023503,0.0000023622,0.0000023706,0.0000023755, -0.0000023786,0.0000023805,0.0000023818,0.0000023821,0.0000023809, -0.0000023786,0.0000023760,0.0000023734,0.0000023717,0.0000023702, -0.0000023681,0.0000023650,0.0000023612,0.0000023576,0.0000023544, -0.0000023517,0.0000023489,0.0000023466,0.0000023436,0.0000023405, -0.0000023380,0.0000023372,0.0000023376,0.0000023384,0.0000023391, -0.0000023393,0.0000023391,0.0000023382,0.0000023360,0.0000023325, -0.0000023278,0.0000023214,0.0000023128,0.0000023039,0.0000022970, -0.0000022915,0.0000022871,0.0000022832,0.0000022786,0.0000022732, -0.0000022689,0.0000022673,0.0000022675,0.0000022677,0.0000022671, -0.0000022658,0.0000022648,0.0000022651,0.0000022667,0.0000022681, -0.0000022679,0.0000022660,0.0000022632,0.0000022607,0.0000022580, -0.0000022556,0.0000022536,0.0000022519,0.0000022503,0.0000022489, -0.0000022471,0.0000022444,0.0000022419,0.0000022409,0.0000022413, -0.0000022436,0.0000022471,0.0000022499,0.0000022503,0.0000022490, -0.0000022469,0.0000022452,0.0000022440,0.0000022435,0.0000022443, -0.0000022468,0.0000022502,0.0000022531,0.0000022545,0.0000022560, -0.0000022566,0.0000022536,0.0000022471,0.0000022397,0.0000022304, -0.0000022211,0.0000022145,0.0000022110,0.0000022090,0.0000022063, -0.0000022021,0.0000021977,0.0000021938,0.0000021908,0.0000021891, -0.0000021885,0.0000021887,0.0000021888,0.0000021889,0.0000021888, -0.0000021886,0.0000021877,0.0000021864,0.0000021841,0.0000021807, -0.0000021758,0.0000021698,0.0000021626,0.0000021553,0.0000021479, -0.0000021399,0.0000021332,0.0000021304,0.0000021313,0.0000021340, -0.0000021368,0.0000021391,0.0000021411,0.0000021427,0.0000021423, -0.0000021397,0.0000021353,0.0000021311,0.0000021291,0.0000021294, -0.0000021330,0.0000021394,0.0000021463,0.0000021525,0.0000021591, -0.0000021666,0.0000021735,0.0000021789,0.0000021828,0.0000021852, -0.0000021858,0.0000021848,0.0000021826,0.0000021798,0.0000021788, -0.0000021816,0.0000021879,0.0000021946,0.0000022010,0.0000022065, -0.0000022104,0.0000022126,0.0000022125,0.0000022114,0.0000022127, -0.0000022177,0.0000022233,0.0000022283,0.0000022337,0.0000022381, -0.0000022386,0.0000022340,0.0000022252,0.0000022128,0.0000022010, -0.0000021995,0.0000022149,0.0000022469,0.0000022825,0.0000023083, -0.0000023179,0.0000023218,0.0000023256,0.0000023246,0.0000023200, -0.0000023133,0.0000023056,0.0000023011,0.0000023004,0.0000023015, -0.0000023040,0.0000023070,0.0000023099,0.0000023118,0.0000023121, -0.0000023111,0.0000023076,0.0000023024,0.0000022973,0.0000022934, -0.0000022910,0.0000022904,0.0000022914,0.0000022938,0.0000022965, -0.0000022994,0.0000023024,0.0000023055,0.0000023096,0.0000023143, -0.0000023188,0.0000023230,0.0000023271,0.0000023310,0.0000023343, -0.0000023373,0.0000023400,0.0000023423,0.0000023444,0.0000023457, -0.0000023465,0.0000023459,0.0000023447,0.0000023435,0.0000023430, -0.0000023427,0.0000023426,0.0000023377,0.0000023366,0.0000023372, -0.0000023391,0.0000023417,0.0000023447,0.0000023471,0.0000023489, -0.0000023504,0.0000023508,0.0000023487,0.0000023435,0.0000023376, -0.0000023344,0.0000023350,0.0000023416,0.0000023505,0.0000023590, -0.0000023656,0.0000023701,0.0000023699,0.0000023709,0.0000023699, -0.0000023691,0.0000023682,0.0000023663,0.0000023654,0.0000023609, -0.0000023523,0.0000023403,0.0000023274,0.0000023164,0.0000023102, -0.0000023092,0.0000023109,0.0000023123,0.0000023141,0.0000023189, -0.0000023278,0.0000023381,0.0000023468,0.0000023532,0.0000023574, -0.0000023601,0.0000023621,0.0000023640,0.0000023657,0.0000023673, -0.0000023698,0.0000023686,0.0000023592,0.0000023496,0.0000023481, -0.0000023496,0.0000023473,0.0000023423,0.0000023415,0.0000023466, -0.0000023538,0.0000023591,0.0000023622,0.0000023636,0.0000023632, -0.0000023613,0.0000023583,0.0000023549,0.0000023528,0.0000023521, -0.0000023518,0.0000023508,0.0000023493,0.0000023485,0.0000023508, -0.0000023551,0.0000023606,0.0000023682,0.0000023762,0.0000023826, -0.0000023868,0.0000023888,0.0000023900,0.0000023913,0.0000023921, -0.0000023910,0.0000023881,0.0000023847,0.0000023828,0.0000023821, -0.0000023799,0.0000023749,0.0000023679,0.0000023599,0.0000023514, -0.0000023443,0.0000023426,0.0000023454,0.0000023519,0.0000023589, -0.0000023644,0.0000023677,0.0000023684,0.0000023681,0.0000023690, -0.0000023716,0.0000023739,0.0000023750,0.0000023742,0.0000023712, -0.0000023668,0.0000023631,0.0000023626,0.0000023679,0.0000023793, -0.0000023905,0.0000023986,0.0000024028,0.0000024032,0.0000024022, -0.0000023996,0.0000023954,0.0000023895,0.0000023820,0.0000023747, -0.0000023679,0.0000023613,0.0000023578,0.0000023597,0.0000023679, -0.0000023785,0.0000023891,0.0000024006,0.0000024108,0.0000024175, -0.0000024208,0.0000024205,0.0000024184,0.0000024232,0.0000024473, -0.0000024712,0.0000024820,0.0000024868,0.0000024952,0.0000025088, -0.0000025219,0.0000025316,0.0000025359,0.0000025349,0.0000025303, -0.0000025239,0.0000025184,0.0000025153,0.0000025131,0.0000025120, -0.0000025121,0.0000025114,0.0000025082,0.0000025013,0.0000024916, -0.0000024843,0.0000024831,0.0000024860,0.0000024881,0.0000024865, -0.0000024768,0.0000024581,0.0000024346,0.0000024133,0.0000023929, -0.0000023676,0.0000023448,0.0000023364,0.0000023357,0.0000023354, -0.0000023362,0.0000023398,0.0000023431,0.0000023435,0.0000023422, -0.0000023398,0.0000023377,0.0000023369,0.0000023371,0.0000023373, -0.0000023384,0.0000023421,0.0000023473,0.0000023511,0.0000023513, -0.0000023497,0.0000023472,0.0000023461,0.0000023498,0.0000023592, -0.0000023726,0.0000023867,0.0000023994,0.0000024105,0.0000024206, -0.0000024299,0.0000024376,0.0000024428,0.0000024455,0.0000024471, -0.0000024485,0.0000024500,0.0000024510,0.0000024511,0.0000024507, -0.0000024503,0.0000024499,0.0000024496,0.0000024494,0.0000024499, -0.0000024511,0.0000024536,0.0000024578,0.0000024635,0.0000024698, -0.0000024760,0.0000024812,0.0000024853,0.0000024887,0.0000024918, -0.0000024955,0.0000024996,0.0000025035,0.0000025069,0.0000025099, -0.0000025125,0.0000025143,0.0000025147,0.0000025141,0.0000025129, -0.0000025114,0.0000025103,0.0000025106,0.0000025125,0.0000025133, -0.0000025105,0.0000025030,0.0000024948,0.0000024883,0.0000024828, -0.0000024774,0.0000024727,0.0000024691,0.0000024656,0.0000024606, -0.0000024551,0.0000024520,0.0000024526,0.0000024573,0.0000024635, -0.0000024669,0.0000024656,0.0000024602,0.0000024512,0.0000024375, -0.0000024223,0.0000024122,0.0000024071,0.0000024010,0.0000023920, -0.0000023822,0.0000023735,0.0000023693,0.0000023702,0.0000023733, -0.0000023744,0.0000023708,0.0000023633,0.0000023561,0.0000023521, -0.0000023515,0.0000023528,0.0000023548,0.0000023580,0.0000023626, -0.0000023699,0.0000023797,0.0000023895,0.0000023965,0.0000024006, -0.0000024046,0.0000024095,0.0000024132,0.0000024136,0.0000024101, -0.0000024051,0.0000024028,0.0000024046,0.0000024101,0.0000024173, -0.0000024253,0.0000024362,0.0000024532,0.0000024756,0.0000024954, -0.0000025047,0.0000025081,0.0000025126,0.0000025212,0.0000025340, -0.0000025479,0.0000025589,0.0000025646,0.0000025652,0.0000025635, -0.0000025615,0.0000025583,0.0000025537,0.0000025521,0.0000025558, -0.0000025594,0.0000025562,0.0000025394,0.0000025126,0.0000024878, -0.0000024716,0.0000024570,0.0000024374,0.0000024187,0.0000024063, -0.0000023990,0.0000023927,0.0000023835,0.0000023712,0.0000023603, -0.0000023556,0.0000023567,0.0000023621,0.0000023682,0.0000023715, -0.0000023718,0.0000023673,0.0000023592,0.0000023497,0.0000023399, -0.0000023316,0.0000023243,0.0000023188,0.0000023176,0.0000023230, -0.0000023313,0.0000023412,0.0000023528,0.0000023656,0.0000023773, -0.0000023867,0.0000023959,0.0000024060,0.0000024166,0.0000024239, -0.0000024225,0.0000024084,0.0000023910,0.0000023899,0.0000024127, -0.0000024382,0.0000024549,0.0000024692,0.0000024807,0.0000024877, -0.0000024895,0.0000024868,0.0000024821,0.0000024756,0.0000024695, -0.0000024638,0.0000024589,0.0000024561,0.0000024542,0.0000024520, -0.0000024507,0.0000024510,0.0000024530,0.0000024535,0.0000024511, -0.0000024469,0.0000024446,0.0000024447,0.0000024459,0.0000024472, -0.0000024489,0.0000024521,0.0000024546,0.0000024562,0.0000024584, -0.0000024630,0.0000024689,0.0000024749,0.0000024799,0.0000024838, -0.0000024875,0.0000024908,0.0000024920,0.0000024910,0.0000024882, -0.0000024879,0.0000024890,0.0000024855,0.0000024769,0.0000024645, -0.0000024531,0.0000024442,0.0000024358,0.0000024280,0.0000024219, -0.0000024155,0.0000024081,0.0000023991,0.0000023889,0.0000023768, -0.0000023641,0.0000023533,0.0000023456,0.0000023416,0.0000023411, -0.0000023426,0.0000023439,0.0000023430,0.0000023405,0.0000023388, -0.0000023376,0.0000023368,0.0000023362,0.0000023350,0.0000023323, -0.0000023290,0.0000023261,0.0000023236,0.0000023206,0.0000023162, -0.0000023119,0.0000023091,0.0000023078,0.0000023063,0.0000023032, -0.0000023000,0.0000022993,0.0000023012,0.0000023041,0.0000023061, -0.0000023064,0.0000023063,0.0000023041,0.0000022997,0.0000022926, -0.0000022839,0.0000022736,0.0000022620,0.0000022516,0.0000022438, -0.0000022386,0.0000022363,0.0000022362,0.0000022381,0.0000022410, -0.0000022436,0.0000022473,0.0000022533,0.0000022603,0.0000022664, -0.0000022700,0.0000022728,0.0000022763,0.0000022776,0.0000022743, -0.0000022701,0.0000022695,0.0000022722,0.0000022726,0.0000022702, -0.0000022679,0.0000022692,0.0000022690,0.0000022626,0.0000022618, -0.0000022781,0.0000022963,0.0000023059,0.0000023103,0.0000023095, -0.0000023013,0.0000022927,0.0000022893,0.0000022890,0.0000022895, -0.0000022916,0.0000022940,0.0000022954,0.0000022961,0.0000022976, -0.0000022997,0.0000023007,0.0000022996,0.0000022930,0.0000022806, -0.0000022656,0.0000022531,0.0000022475,0.0000022483,0.0000022540, -0.0000022605,0.0000022664,0.0000022703,0.0000022701,0.0000022629, -0.0000022527,0.0000022457,0.0000022435,0.0000022453,0.0000022510, -0.0000022582,0.0000022648,0.0000022708,0.0000022805,0.0000022950, -0.0000023079,0.0000023164,0.0000023250,0.0000023393,0.0000023586, -0.0000023715,0.0000023701,0.0000023622,0.0000023555,0.0000023563, -0.0000023697,0.0000023835,0.0000023870,0.0000023862,0.0000023879, -0.0000023956,0.0000024156,0.0000024404,0.0000024521,0.0000024657, -0.0000024969,0.0000025196,0.0000025316,0.0000025525,0.0000025739, -0.0000025808,0.0000025741,0.0000025485,0.0000025206,0.0000024923, -0.0000024443,0.0000024135,0.0000024206,0.0000024351,0.0000024345, -0.0000024191,0.0000024019,0.0000023888,0.0000023821,0.0000023862, -0.0000024021,0.0000024166,0.0000024230,0.0000024540,0.0000024887, -0.0000024857,0.0000025126,0.0000025821,0.0000026126,0.0000026069, -0.0000025366,0.0000024849,0.0000024775,0.0000024756,0.0000024421, -0.0000024056,0.0000024009,0.0000024083,0.0000024258,0.0000024441, -0.0000024545,0.0000024548,0.0000024481,0.0000024381,0.0000024286, -0.0000024229,0.0000024221,0.0000024240,0.0000024284,0.0000024311, -0.0000024315,0.0000024318,0.0000024335,0.0000024372,0.0000024424, -0.0000024469,0.0000024470,0.0000024438,0.0000024375,0.0000024299, -0.0000024229,0.0000024150,0.0000024063,0.0000023983,0.0000023922, -0.0000023870,0.0000023837,0.0000023826,0.0000023826,0.0000023821, -0.0000023812,0.0000023812,0.0000023828,0.0000023845,0.0000023852, -0.0000023833,0.0000023792,0.0000023756,0.0000023745,0.0000023765, -0.0000023817,0.0000023866,0.0000023864,0.0000023828,0.0000023812, -0.0000023811,0.0000023799,0.0000023780,0.0000023775,0.0000023787, -0.0000023825,0.0000023881,0.0000023947,0.0000024038,0.0000024138, -0.0000024209,0.0000024251,0.0000024306,0.0000024396,0.0000024496, -0.0000024568,0.0000024618,0.0000024690,0.0000024793,0.0000024891, -0.0000024964,0.0000025010,0.0000025031,0.0000025044,0.0000025076, -0.0000025137,0.0000025200,0.0000025238,0.0000025254,0.0000025257, -0.0000025259,0.0000025265,0.0000025279,0.0000025298,0.0000025309, -0.0000025308,0.0000025290,0.0000025256,0.0000025211,0.0000025154, -0.0000025095,0.0000025045,0.0000025043,0.0000025091,0.0000025156, -0.0000025211,0.0000025259,0.0000025308,0.0000025344,0.0000025351, -0.0000025317,0.0000025239,0.0000025136,0.0000025033,0.0000024936, -0.0000024831,0.0000024712,0.0000024598,0.0000024469,0.0000024281, -0.0000024052,0.0000023847,0.0000023693,0.0000023574,0.0000023473, -0.0000023378,0.0000023281,0.0000023185,0.0000023103,0.0000023043, -0.0000022996,0.0000022941,0.0000022904,0.0000022852,0.0000022805, -0.0000022750,0.0000022701,0.0000022678,0.0000022686,0.0000022725, -0.0000022789,0.0000022891,0.0000023052,0.0000023231,0.0000023354, -0.0000023411,0.0000023448,0.0000023495,0.0000023553,0.0000023604, -0.0000023628,0.0000023624,0.0000023603,0.0000023579,0.0000023568, -0.0000023546,0.0000023454,0.0000023256,0.0000022972,0.0000022672, -0.0000022448,0.0000022338,0.0000022287,0.0000022230,0.0000022161, -0.0000022119,0.0000022120,0.0000022134,0.0000022159,0.0000022227, -0.0000022322,0.0000022381,0.0000022362,0.0000022267,0.0000022187, -0.0000022176,0.0000022227,0.0000022338,0.0000022468,0.0000022566, -0.0000022627,0.0000022714,0.0000022870,0.0000023035,0.0000023135, -0.0000023194,0.0000023257,0.0000023341,0.0000023431,0.0000023492, -0.0000023517,0.0000023523,0.0000023530,0.0000023563,0.0000023637, -0.0000023718,0.0000023769,0.0000023796,0.0000023865,0.0000024025, -0.0000024206,0.0000024320,0.0000024376,0.0000024389,0.0000024358, -0.0000024283,0.0000024241,0.0000024295,0.0000024442,0.0000024591, -0.0000024661,0.0000024653,0.0000024595,0.0000024531,0.0000024519, -0.0000024556,0.0000024609,0.0000024668,0.0000024752,0.0000024838, -0.0000024881,0.0000024890,0.0000024884,0.0000024826,0.0000024716, -0.0000024592,0.0000024507,0.0000024496,0.0000024529,0.0000024583, -0.0000024608,0.0000024592,0.0000024561,0.0000024550,0.0000024568, -0.0000024610,0.0000024654,0.0000024698,0.0000024755,0.0000024822, -0.0000024878,0.0000024902,0.0000024895,0.0000024876,0.0000024860, -0.0000024856,0.0000024867,0.0000024887,0.0000024911,0.0000024937, -0.0000024965,0.0000024995,0.0000025025,0.0000025042,0.0000025040, -0.0000025023,0.0000025012,0.0000025023,0.0000025068,0.0000025136, -0.0000025210,0.0000025274,0.0000025313,0.0000025327,0.0000025324, -0.0000025288,0.0000025237,0.0000025203,0.0000025207,0.0000025244, -0.0000025280,0.0000025286,0.0000025272,0.0000025256,0.0000025230, -0.0000025190,0.0000025149,0.0000025113,0.0000025079,0.0000025066, -0.0000025091,0.0000025155,0.0000025233,0.0000025285,0.0000025327, -0.0000025387,0.0000025431,0.0000025442,0.0000025418,0.0000025397, -0.0000025392,0.0000025396,0.0000025431,0.0000025481,0.0000025560, -0.0000025647,0.0000025741,0.0000025850,0.0000025962,0.0000026054, -0.0000026115,0.0000026161,0.0000026214,0.0000026273,0.0000026328, -0.0000026362,0.0000026367,0.0000026354,0.0000026328,0.0000026289, -0.0000026235,0.0000026169,0.0000026088,0.0000026002,0.0000025933, -0.0000025889,0.0000025860,0.0000025824,0.0000025763,0.0000025687, -0.0000025637,0.0000025635,0.0000025645,0.0000025631,0.0000025588, -0.0000025535,0.0000025463,0.0000025340,0.0000025170,0.0000025063, -0.0000025045,0.0000024992,0.0000024868,0.0000024738,0.0000024635, -0.0000024557,0.0000024507,0.0000024478,0.0000024474,0.0000024498, -0.0000024538,0.0000024566,0.0000024577,0.0000024591,0.0000024618, -0.0000024637,0.0000024616,0.0000024584,0.0000024622,0.0000024778, -0.0000025090,0.0000025551,0.0000025991,0.0000026235,0.0000026315, -0.0000026334,0.0000026347,0.0000026399,0.0000026496,0.0000026582, -0.0000026622,0.0000026631,0.0000026632,0.0000026620,0.0000026588, -0.0000026556,0.0000026535,0.0000026516,0.0000026493,0.0000026470, -0.0000026438,0.0000026388,0.0000026357,0.0000026364,0.0000026354, -0.0000026287,0.0000026207,0.0000026107,0.0000025971,0.0000025893, -0.0000025917,0.0000026004,0.0000026092,0.0000026137,0.0000026136, -0.0000026122,0.0000026090,0.0000025993,0.0000025857,0.0000025714, -0.0000025473,0.0000025157,0.0000024941,0.0000024827,0.0000024623, -0.0000024273,0.0000023980,0.0000023842,0.0000023723,0.0000023573, -0.0000023372,0.0000023093,0.0000022811,0.0000022615,0.0000022487, -0.0000022392,0.0000022335,0.0000022334,0.0000022377,0.0000022449, -0.0000022531,0.0000022606,0.0000022658,0.0000022684,0.0000022694, -0.0000022702,0.0000022711,0.0000022709,0.0000022680,0.0000022620, -0.0000022539,0.0000022448,0.0000022351,0.0000022253,0.0000022172, -0.0000022132,0.0000022149,0.0000022230,0.0000022365,0.0000022528, -0.0000022693,0.0000022818,0.0000022879,0.0000022890,0.0000022866, -0.0000022794,0.0000022711,0.0000022603,0.0000022489,0.0000022455, -0.0000022497,0.0000022585,0.0000022645,0.0000022677,0.0000022776, -0.0000022968,0.0000023140,0.0000023208,0.0000023221,0.0000023230, -0.0000023250,0.0000023288,0.0000023354,0.0000023439,0.0000023521, -0.0000023586,0.0000023630,0.0000023652,0.0000023657,0.0000023652, -0.0000023644,0.0000023630,0.0000023600,0.0000023570,0.0000023555, -0.0000023552,0.0000023548,0.0000023539,0.0000023531,0.0000023529, -0.0000023528,0.0000023515,0.0000023487,0.0000023434,0.0000023369, -0.0000023305,0.0000023277,0.0000023284,0.0000023308,0.0000023332, -0.0000023347,0.0000023351,0.0000023341,0.0000023322,0.0000023295, -0.0000023262,0.0000023224,0.0000023172,0.0000023097,0.0000023001, -0.0000022923,0.0000022861,0.0000022816,0.0000022789,0.0000022767, -0.0000022736,0.0000022696,0.0000022670,0.0000022668,0.0000022676, -0.0000022684,0.0000022682,0.0000022672,0.0000022662,0.0000022656, -0.0000022654,0.0000022650,0.0000022638,0.0000022620,0.0000022605, -0.0000022591,0.0000022575,0.0000022559,0.0000022546,0.0000022528, -0.0000022510,0.0000022494,0.0000022468,0.0000022440,0.0000022424, -0.0000022422,0.0000022436,0.0000022464,0.0000022495,0.0000022510, -0.0000022504,0.0000022484,0.0000022464,0.0000022455,0.0000022458, -0.0000022473,0.0000022495,0.0000022521,0.0000022538,0.0000022543, -0.0000022545,0.0000022545,0.0000022526,0.0000022481,0.0000022418, -0.0000022328,0.0000022227,0.0000022155,0.0000022112,0.0000022081, -0.0000022050,0.0000022017,0.0000021988,0.0000021962,0.0000021944, -0.0000021928,0.0000021920,0.0000021916,0.0000021911,0.0000021908, -0.0000021906,0.0000021906,0.0000021906,0.0000021902,0.0000021890, -0.0000021873,0.0000021847,0.0000021807,0.0000021752,0.0000021678, -0.0000021593,0.0000021501,0.0000021409,0.0000021332,0.0000021290, -0.0000021287,0.0000021311,0.0000021346,0.0000021386,0.0000021427, -0.0000021457,0.0000021473,0.0000021475,0.0000021449,0.0000021403, -0.0000021359,0.0000021333,0.0000021331,0.0000021351,0.0000021373, -0.0000021403,0.0000021462,0.0000021553,0.0000021650,0.0000021724, -0.0000021771,0.0000021796,0.0000021810,0.0000021813,0.0000021805, -0.0000021778,0.0000021764,0.0000021785,0.0000021838,0.0000021896, -0.0000021957,0.0000022014,0.0000022052,0.0000022072,0.0000022078, -0.0000022076,0.0000022084,0.0000022129,0.0000022193,0.0000022246, -0.0000022296,0.0000022349,0.0000022377,0.0000022363,0.0000022308, -0.0000022224,0.0000022104,0.0000022015,0.0000022044,0.0000022265, -0.0000022609,0.0000022939,0.0000023135,0.0000023194,0.0000023229, -0.0000023247,0.0000023221,0.0000023168,0.0000023094,0.0000023030, -0.0000023008,0.0000023012,0.0000023025,0.0000023046,0.0000023081, -0.0000023120,0.0000023140,0.0000023133,0.0000023097,0.0000023050, -0.0000022998,0.0000022941,0.0000022895,0.0000022874,0.0000022874, -0.0000022888,0.0000022912,0.0000022935,0.0000022954,0.0000022973, -0.0000023009,0.0000023059,0.0000023112,0.0000023164,0.0000023214, -0.0000023258,0.0000023295,0.0000023327,0.0000023358,0.0000023390, -0.0000023420,0.0000023445,0.0000023460,0.0000023462,0.0000023458, -0.0000023452,0.0000023443,0.0000023424,0.0000023401,0.0000023365, -0.0000023339,0.0000023315,0.0000023303,0.0000023305,0.0000023328, -0.0000023363,0.0000023400,0.0000023428,0.0000023443,0.0000023446, -0.0000023432,0.0000023394,0.0000023347,0.0000023308,0.0000023301, -0.0000023340,0.0000023412,0.0000023501,0.0000023580,0.0000023638, -0.0000023671,0.0000023682,0.0000023676,0.0000023650,0.0000023603, -0.0000023533,0.0000023436,0.0000023317,0.0000023204,0.0000023116, -0.0000023063,0.0000023051,0.0000023060,0.0000023068,0.0000023076, -0.0000023125,0.0000023218,0.0000023344,0.0000023454,0.0000023527, -0.0000023579,0.0000023612,0.0000023627,0.0000023637,0.0000023652, -0.0000023672,0.0000023695,0.0000023708,0.0000023670,0.0000023567, -0.0000023481,0.0000023474,0.0000023495,0.0000023475,0.0000023425, -0.0000023411,0.0000023441,0.0000023500,0.0000023546,0.0000023574, -0.0000023585,0.0000023579,0.0000023556,0.0000023519,0.0000023485, -0.0000023469,0.0000023470,0.0000023476,0.0000023474,0.0000023465, -0.0000023457,0.0000023473,0.0000023509,0.0000023555,0.0000023623, -0.0000023700,0.0000023769,0.0000023827,0.0000023867,0.0000023887, -0.0000023895,0.0000023903,0.0000023906,0.0000023891,0.0000023863, -0.0000023835,0.0000023821,0.0000023813,0.0000023794,0.0000023753, -0.0000023691,0.0000023613,0.0000023523,0.0000023456,0.0000023443, -0.0000023471,0.0000023536,0.0000023598,0.0000023640,0.0000023655, -0.0000023651,0.0000023640,0.0000023647,0.0000023671,0.0000023700, -0.0000023719,0.0000023716,0.0000023697,0.0000023669,0.0000023640, -0.0000023639,0.0000023692,0.0000023784,0.0000023876,0.0000023936, -0.0000023957,0.0000023958,0.0000023945,0.0000023918,0.0000023879, -0.0000023819,0.0000023756,0.0000023700,0.0000023643,0.0000023588, -0.0000023571,0.0000023598,0.0000023680,0.0000023784,0.0000023887, -0.0000023990,0.0000024084,0.0000024150,0.0000024186,0.0000024195, -0.0000024186,0.0000024219,0.0000024443,0.0000024689,0.0000024815, -0.0000024869,0.0000024952,0.0000025103,0.0000025245,0.0000025329, -0.0000025360,0.0000025345,0.0000025291,0.0000025226,0.0000025181, -0.0000025161,0.0000025153,0.0000025156,0.0000025161,0.0000025155, -0.0000025129,0.0000025068,0.0000024976,0.0000024904,0.0000024881, -0.0000024886,0.0000024883,0.0000024830,0.0000024694,0.0000024484, -0.0000024261,0.0000024052,0.0000023808,0.0000023544,0.0000023385, -0.0000023358,0.0000023356,0.0000023347,0.0000023346,0.0000023374, -0.0000023405,0.0000023411,0.0000023395,0.0000023364,0.0000023334, -0.0000023319,0.0000023319,0.0000023321,0.0000023329,0.0000023361, -0.0000023415,0.0000023466,0.0000023493,0.0000023497,0.0000023484, -0.0000023462,0.0000023460,0.0000023491,0.0000023567,0.0000023692, -0.0000023844,0.0000023991,0.0000024111,0.0000024207,0.0000024292, -0.0000024363,0.0000024409,0.0000024431,0.0000024437,0.0000024437, -0.0000024430,0.0000024417,0.0000024405,0.0000024400,0.0000024399, -0.0000024393,0.0000024386,0.0000024386,0.0000024395,0.0000024427, -0.0000024487,0.0000024570,0.0000024663,0.0000024752,0.0000024817, -0.0000024859,0.0000024887,0.0000024911,0.0000024938,0.0000024968, -0.0000024998,0.0000025032,0.0000025068,0.0000025096,0.0000025106, -0.0000025101,0.0000025090,0.0000025085,0.0000025087,0.0000025090, -0.0000025098,0.0000025117,0.0000025130,0.0000025114,0.0000025046, -0.0000024957,0.0000024891,0.0000024855,0.0000024818,0.0000024770, -0.0000024721,0.0000024683,0.0000024641,0.0000024588,0.0000024542, -0.0000024533,0.0000024562,0.0000024618,0.0000024662,0.0000024663, -0.0000024623,0.0000024543,0.0000024410,0.0000024244,0.0000024119, -0.0000024069,0.0000024047,0.0000023996,0.0000023915,0.0000023822, -0.0000023746,0.0000023719,0.0000023732,0.0000023772,0.0000023801, -0.0000023788,0.0000023745,0.0000023687,0.0000023633,0.0000023592, -0.0000023569,0.0000023569,0.0000023577,0.0000023604,0.0000023662, -0.0000023755,0.0000023856,0.0000023944,0.0000024012,0.0000024063, -0.0000024102,0.0000024124,0.0000024120,0.0000024097,0.0000024075, -0.0000024072,0.0000024089,0.0000024122,0.0000024173,0.0000024238, -0.0000024336,0.0000024517,0.0000024769,0.0000024984,0.0000025090, -0.0000025147,0.0000025217,0.0000025309,0.0000025407,0.0000025494, -0.0000025544,0.0000025552,0.0000025544,0.0000025527,0.0000025508, -0.0000025496,0.0000025516,0.0000025572,0.0000025595,0.0000025495, -0.0000025259,0.0000024992,0.0000024784,0.0000024599,0.0000024381, -0.0000024171,0.0000024037,0.0000023972,0.0000023916,0.0000023821, -0.0000023684,0.0000023560,0.0000023519,0.0000023549,0.0000023626, -0.0000023732,0.0000023819,0.0000023878,0.0000023900,0.0000023877, -0.0000023804,0.0000023688,0.0000023541,0.0000023397,0.0000023276, -0.0000023176,0.0000023124,0.0000023121,0.0000023126,0.0000023137, -0.0000023220,0.0000023351,0.0000023498,0.0000023632,0.0000023751, -0.0000023863,0.0000023959,0.0000024051,0.0000024142,0.0000024188, -0.0000024098,0.0000023936,0.0000023801,0.0000023909,0.0000024211, -0.0000024459,0.0000024627,0.0000024755,0.0000024824,0.0000024847, -0.0000024840,0.0000024803,0.0000024749,0.0000024681,0.0000024611, -0.0000024562,0.0000024534,0.0000024508,0.0000024481,0.0000024444, -0.0000024420,0.0000024427,0.0000024448,0.0000024438,0.0000024401, -0.0000024377,0.0000024382,0.0000024394,0.0000024403,0.0000024425, -0.0000024457,0.0000024476,0.0000024480,0.0000024487,0.0000024519, -0.0000024583,0.0000024654,0.0000024716,0.0000024768,0.0000024822, -0.0000024864,0.0000024880,0.0000024849,0.0000024803,0.0000024768, -0.0000024720,0.0000024657,0.0000024601,0.0000024538,0.0000024478, -0.0000024427,0.0000024381,0.0000024332,0.0000024264,0.0000024168, -0.0000024046,0.0000023916,0.0000023781,0.0000023655,0.0000023553, -0.0000023484,0.0000023458,0.0000023462,0.0000023483,0.0000023489, -0.0000023472,0.0000023442,0.0000023422,0.0000023413,0.0000023400, -0.0000023379,0.0000023365,0.0000023351,0.0000023325,0.0000023286, -0.0000023238,0.0000023178,0.0000023121,0.0000023094,0.0000023088, -0.0000023079,0.0000023046,0.0000023001,0.0000022983,0.0000022996, -0.0000023019,0.0000023033,0.0000023036,0.0000023030,0.0000023023, -0.0000023011,0.0000022976,0.0000022893,0.0000022765,0.0000022624, -0.0000022486,0.0000022383,0.0000022330,0.0000022301,0.0000022290, -0.0000022301,0.0000022331,0.0000022370,0.0000022406,0.0000022444, -0.0000022499,0.0000022580,0.0000022675,0.0000022742,0.0000022773, -0.0000022801,0.0000022809,0.0000022762,0.0000022694,0.0000022669, -0.0000022677,0.0000022670,0.0000022642,0.0000022624,0.0000022644, -0.0000022659,0.0000022617,0.0000022609,0.0000022738,0.0000022927, -0.0000023037,0.0000023083,0.0000023087,0.0000023033,0.0000022943, -0.0000022896,0.0000022887,0.0000022879,0.0000022869,0.0000022864, -0.0000022863,0.0000022866,0.0000022879,0.0000022902,0.0000022929, -0.0000022936,0.0000022900,0.0000022796,0.0000022653,0.0000022528, -0.0000022469,0.0000022469,0.0000022516,0.0000022582,0.0000022643, -0.0000022681,0.0000022680,0.0000022626,0.0000022534,0.0000022461, -0.0000022438,0.0000022451,0.0000022501,0.0000022573,0.0000022633, -0.0000022690,0.0000022776,0.0000022899,0.0000023012,0.0000023086, -0.0000023149,0.0000023242,0.0000023409,0.0000023611,0.0000023698, -0.0000023663,0.0000023596,0.0000023548,0.0000023581,0.0000023725, -0.0000023849,0.0000023877,0.0000023864,0.0000023876,0.0000023944, -0.0000024139,0.0000024372,0.0000024476,0.0000024603,0.0000024922, -0.0000025166,0.0000025264,0.0000025462,0.0000025683,0.0000025765, -0.0000025709,0.0000025446,0.0000025175,0.0000024875,0.0000024402, -0.0000024142,0.0000024227,0.0000024375,0.0000024366,0.0000024211, -0.0000024022,0.0000023877,0.0000023792,0.0000023813,0.0000023943, -0.0000024121,0.0000024180,0.0000024416,0.0000024828,0.0000024902, -0.0000024944,0.0000025630,0.0000026100,0.0000026156,0.0000025623, -0.0000024942,0.0000024760,0.0000024759,0.0000024573,0.0000024155, -0.0000023999,0.0000024037,0.0000024172,0.0000024370,0.0000024514, -0.0000024552,0.0000024504,0.0000024396,0.0000024289,0.0000024232, -0.0000024229,0.0000024252,0.0000024308,0.0000024356,0.0000024375, -0.0000024372,0.0000024367,0.0000024380,0.0000024418,0.0000024469, -0.0000024473,0.0000024449,0.0000024399,0.0000024340,0.0000024272, -0.0000024193,0.0000024103,0.0000024013,0.0000023944,0.0000023889, -0.0000023847,0.0000023824,0.0000023808,0.0000023786,0.0000023761, -0.0000023750,0.0000023759,0.0000023775,0.0000023782,0.0000023762, -0.0000023725,0.0000023701,0.0000023702,0.0000023730,0.0000023778, -0.0000023804,0.0000023768,0.0000023711,0.0000023696,0.0000023708, -0.0000023714,0.0000023711,0.0000023717,0.0000023738,0.0000023770, -0.0000023805,0.0000023849,0.0000023919,0.0000024019,0.0000024113, -0.0000024175,0.0000024228,0.0000024308,0.0000024414,0.0000024512, -0.0000024573,0.0000024618,0.0000024688,0.0000024788,0.0000024884, -0.0000024955,0.0000024996,0.0000025009,0.0000025004,0.0000025007, -0.0000025039,0.0000025088,0.0000025136,0.0000025171,0.0000025197, -0.0000025215,0.0000025232,0.0000025250,0.0000025266,0.0000025274, -0.0000025268,0.0000025243,0.0000025204,0.0000025158,0.0000025110, -0.0000025063,0.0000025029,0.0000025020,0.0000025032,0.0000025063, -0.0000025104,0.0000025142,0.0000025165,0.0000025158,0.0000025121, -0.0000025061,0.0000024994,0.0000024916,0.0000024817,0.0000024699, -0.0000024586,0.0000024462,0.0000024288,0.0000024063,0.0000023839, -0.0000023657,0.0000023515,0.0000023400,0.0000023298,0.0000023212, -0.0000023151,0.0000023119,0.0000023110,0.0000023113,0.0000023111, -0.0000023100,0.0000023083,0.0000023050,0.0000022992,0.0000022901, -0.0000022779,0.0000022670,0.0000022598,0.0000022588,0.0000022622, -0.0000022678,0.0000022760,0.0000022902,0.0000023095,0.0000023260, -0.0000023352,0.0000023396,0.0000023431,0.0000023469,0.0000023498, -0.0000023513,0.0000023514,0.0000023508,0.0000023498,0.0000023460, -0.0000023343,0.0000023133,0.0000022862,0.0000022593,0.0000022402, -0.0000022313,0.0000022271,0.0000022214,0.0000022143,0.0000022105, -0.0000022108,0.0000022119,0.0000022133,0.0000022190,0.0000022285, -0.0000022369,0.0000022379,0.0000022292,0.0000022198,0.0000022186, -0.0000022232,0.0000022325,0.0000022456,0.0000022572,0.0000022647, -0.0000022719,0.0000022858,0.0000023034,0.0000023162,0.0000023237, -0.0000023299,0.0000023371,0.0000023457,0.0000023531,0.0000023566, -0.0000023567,0.0000023560,0.0000023567,0.0000023604,0.0000023661, -0.0000023708,0.0000023734,0.0000023759,0.0000023852,0.0000024040, -0.0000024221,0.0000024320,0.0000024361,0.0000024359,0.0000024307, -0.0000024241,0.0000024247,0.0000024350,0.0000024501,0.0000024629, -0.0000024683,0.0000024662,0.0000024583,0.0000024519,0.0000024519, -0.0000024559,0.0000024609,0.0000024673,0.0000024762,0.0000024834, -0.0000024857,0.0000024860,0.0000024846,0.0000024781,0.0000024664, -0.0000024527,0.0000024414,0.0000024365,0.0000024380,0.0000024425, -0.0000024462,0.0000024467,0.0000024452,0.0000024449,0.0000024479, -0.0000024534,0.0000024587,0.0000024628,0.0000024673,0.0000024730, -0.0000024790,0.0000024829,0.0000024840,0.0000024831,0.0000024817, -0.0000024812,0.0000024821,0.0000024836,0.0000024853,0.0000024866, -0.0000024878,0.0000024894,0.0000024915,0.0000024927,0.0000024924, -0.0000024910,0.0000024904,0.0000024922,0.0000024972,0.0000025044, -0.0000025123,0.0000025193,0.0000025240,0.0000025261,0.0000025262, -0.0000025232,0.0000025186,0.0000025155,0.0000025162,0.0000025204, -0.0000025251,0.0000025267,0.0000025257,0.0000025245,0.0000025230, -0.0000025198,0.0000025151,0.0000025107,0.0000025075,0.0000025066, -0.0000025087,0.0000025139,0.0000025212,0.0000025262,0.0000025296, -0.0000025355,0.0000025425,0.0000025463,0.0000025464,0.0000025460, -0.0000025466,0.0000025469,0.0000025473,0.0000025497,0.0000025552, -0.0000025611,0.0000025682,0.0000025769,0.0000025866,0.0000025960, -0.0000026037,0.0000026092,0.0000026144,0.0000026211,0.0000026283, -0.0000026331,0.0000026342,0.0000026333,0.0000026308,0.0000026271, -0.0000026217,0.0000026150,0.0000026070,0.0000025991,0.0000025929, -0.0000025887,0.0000025852,0.0000025804,0.0000025739,0.0000025674, -0.0000025634,0.0000025636,0.0000025645,0.0000025624,0.0000025572, -0.0000025510,0.0000025429,0.0000025288,0.0000025126,0.0000025046, -0.0000025003,0.0000024878,0.0000024709,0.0000024580,0.0000024490, -0.0000024428,0.0000024390,0.0000024377,0.0000024388,0.0000024430, -0.0000024476,0.0000024499,0.0000024508,0.0000024524,0.0000024537, -0.0000024519,0.0000024497,0.0000024550,0.0000024700,0.0000024980, -0.0000025409,0.0000025865,0.0000026155,0.0000026275,0.0000026318, -0.0000026332,0.0000026351,0.0000026413,0.0000026501,0.0000026573, -0.0000026610,0.0000026619,0.0000026617,0.0000026594,0.0000026553, -0.0000026522,0.0000026505,0.0000026485,0.0000026464,0.0000026447, -0.0000026413,0.0000026358,0.0000026334,0.0000026335,0.0000026299, -0.0000026219,0.0000026151,0.0000026070,0.0000025959,0.0000025908, -0.0000025937,0.0000026019,0.0000026088,0.0000026110,0.0000026105, -0.0000026099,0.0000026081,0.0000025990,0.0000025860,0.0000025705, -0.0000025435,0.0000025116,0.0000024918,0.0000024799,0.0000024567, -0.0000024221,0.0000023973,0.0000023865,0.0000023767,0.0000023613, -0.0000023364,0.0000023035,0.0000022758,0.0000022587,0.0000022454, -0.0000022332,0.0000022243,0.0000022197,0.0000022187,0.0000022215, -0.0000022274,0.0000022356,0.0000022443,0.0000022517,0.0000022569, -0.0000022603,0.0000022626,0.0000022634,0.0000022618,0.0000022573, -0.0000022500,0.0000022412,0.0000022319,0.0000022233,0.0000022172, -0.0000022124,0.0000022085,0.0000022075,0.0000022122,0.0000022251, -0.0000022454,0.0000022658,0.0000022789,0.0000022843,0.0000022846, -0.0000022809,0.0000022737,0.0000022633,0.0000022501,0.0000022419, -0.0000022429,0.0000022508,0.0000022604,0.0000022670,0.0000022714, -0.0000022805,0.0000022984,0.0000023153,0.0000023224,0.0000023241, -0.0000023242,0.0000023256,0.0000023287,0.0000023328,0.0000023371, -0.0000023408,0.0000023441,0.0000023464,0.0000023471,0.0000023465, -0.0000023454,0.0000023443,0.0000023427,0.0000023411,0.0000023414, -0.0000023432,0.0000023452,0.0000023470,0.0000023490,0.0000023505, -0.0000023499,0.0000023467,0.0000023415,0.0000023348,0.0000023276, -0.0000023220,0.0000023209,0.0000023235,0.0000023262,0.0000023279, -0.0000023286,0.0000023279,0.0000023257,0.0000023233,0.0000023212, -0.0000023194,0.0000023168,0.0000023123,0.0000023053,0.0000022963, -0.0000022882,0.0000022822,0.0000022775,0.0000022746,0.0000022735, -0.0000022727,0.0000022707,0.0000022677,0.0000022658,0.0000022659, -0.0000022674,0.0000022689,0.0000022692,0.0000022682,0.0000022661, -0.0000022635,0.0000022606,0.0000022581,0.0000022562,0.0000022552, -0.0000022551,0.0000022553,0.0000022553,0.0000022548,0.0000022537, -0.0000022520,0.0000022504,0.0000022485,0.0000022462,0.0000022443, -0.0000022439,0.0000022448,0.0000022466,0.0000022489,0.0000022508, -0.0000022513,0.0000022501,0.0000022481,0.0000022470,0.0000022475, -0.0000022500,0.0000022527,0.0000022546,0.0000022558,0.0000022556, -0.0000022545,0.0000022531,0.0000022504,0.0000022470,0.0000022430, -0.0000022354,0.0000022251,0.0000022172,0.0000022124,0.0000022083, -0.0000022041,0.0000022010,0.0000022000,0.0000021995,0.0000021992, -0.0000021977,0.0000021958,0.0000021940,0.0000021925,0.0000021916, -0.0000021920,0.0000021929,0.0000021938,0.0000021948,0.0000021954, -0.0000021951,0.0000021936,0.0000021909,0.0000021871,0.0000021815, -0.0000021742,0.0000021651,0.0000021551,0.0000021450,0.0000021362, -0.0000021301,0.0000021281,0.0000021296,0.0000021337,0.0000021391, -0.0000021439,0.0000021477,0.0000021505,0.0000021516,0.0000021501, -0.0000021460,0.0000021420,0.0000021397,0.0000021390,0.0000021386, -0.0000021372,0.0000021362,0.0000021381,0.0000021451,0.0000021555, -0.0000021650,0.0000021709,0.0000021737,0.0000021758,0.0000021774, -0.0000021777,0.0000021754,0.0000021737,0.0000021755,0.0000021803, -0.0000021851,0.0000021905,0.0000021961,0.0000021996,0.0000022006, -0.0000022010,0.0000022021,0.0000022038,0.0000022074,0.0000022135, -0.0000022198,0.0000022253,0.0000022310,0.0000022356,0.0000022365, -0.0000022338,0.0000022280,0.0000022202,0.0000022093,0.0000022042, -0.0000022116,0.0000022391,0.0000022746,0.0000023032,0.0000023165, -0.0000023206,0.0000023239,0.0000023238,0.0000023198,0.0000023139, -0.0000023066,0.0000023019,0.0000023014,0.0000023025,0.0000023046, -0.0000023078,0.0000023124,0.0000023157,0.0000023161,0.0000023135, -0.0000023092,0.0000023036,0.0000022964,0.0000022889,0.0000022833, -0.0000022805,0.0000022799,0.0000022805,0.0000022824,0.0000022846, -0.0000022870,0.0000022906,0.0000022954,0.0000023002,0.0000023049, -0.0000023097,0.0000023144,0.0000023187,0.0000023226,0.0000023262, -0.0000023295,0.0000023327,0.0000023354,0.0000023373,0.0000023385, -0.0000023394,0.0000023399,0.0000023399,0.0000023395,0.0000023384, -0.0000023269,0.0000023274,0.0000023272,0.0000023263,0.0000023253, -0.0000023252,0.0000023265,0.0000023291,0.0000023319,0.0000023343, -0.0000023361,0.0000023375,0.0000023377,0.0000023361,0.0000023327, -0.0000023299,0.0000023292,0.0000023297,0.0000023341,0.0000023396, -0.0000023449,0.0000023484,0.0000023495,0.0000023484,0.0000023453, -0.0000023399,0.0000023326,0.0000023244,0.0000023164,0.0000023101, -0.0000023058,0.0000023035,0.0000023030,0.0000023020,0.0000023012, -0.0000023042,0.0000023136,0.0000023273,0.0000023405,0.0000023504, -0.0000023570,0.0000023611,0.0000023628,0.0000023629,0.0000023626, -0.0000023640,0.0000023675,0.0000023711,0.0000023709,0.0000023639, -0.0000023535,0.0000023462,0.0000023462,0.0000023489,0.0000023475, -0.0000023433,0.0000023416,0.0000023432,0.0000023468,0.0000023499, -0.0000023516,0.0000023517,0.0000023503,0.0000023476,0.0000023439, -0.0000023406,0.0000023392,0.0000023398,0.0000023411,0.0000023415, -0.0000023410,0.0000023407,0.0000023428,0.0000023471,0.0000023520, -0.0000023578,0.0000023639,0.0000023695,0.0000023752,0.0000023805, -0.0000023842,0.0000023863,0.0000023874,0.0000023879,0.0000023879, -0.0000023866,0.0000023844,0.0000023825,0.0000023810,0.0000023796, -0.0000023783,0.0000023762,0.0000023707,0.0000023615,0.0000023528, -0.0000023478,0.0000023465,0.0000023487,0.0000023540,0.0000023593, -0.0000023621,0.0000023625,0.0000023611,0.0000023597,0.0000023599, -0.0000023621,0.0000023655,0.0000023680,0.0000023691,0.0000023692, -0.0000023682,0.0000023666,0.0000023670,0.0000023718,0.0000023786, -0.0000023851,0.0000023886,0.0000023901,0.0000023902,0.0000023888, -0.0000023866,0.0000023830,0.0000023776,0.0000023725,0.0000023679, -0.0000023627,0.0000023585,0.0000023579,0.0000023608,0.0000023682, -0.0000023783,0.0000023884,0.0000023977,0.0000024058,0.0000024116, -0.0000024158,0.0000024187,0.0000024188,0.0000024205,0.0000024400, -0.0000024652,0.0000024804,0.0000024867,0.0000024948,0.0000025109, -0.0000025262,0.0000025340,0.0000025361,0.0000025342,0.0000025280, -0.0000025213,0.0000025174,0.0000025163,0.0000025164,0.0000025175, -0.0000025183,0.0000025181,0.0000025161,0.0000025097,0.0000025005, -0.0000024930,0.0000024890,0.0000024876,0.0000024850,0.0000024765, -0.0000024604,0.0000024405,0.0000024204,0.0000023969,0.0000023683, -0.0000023450,0.0000023354,0.0000023350,0.0000023354,0.0000023341, -0.0000023335,0.0000023353,0.0000023380,0.0000023381,0.0000023359, -0.0000023322,0.0000023283,0.0000023255,0.0000023247,0.0000023248, -0.0000023257,0.0000023287,0.0000023338,0.0000023396,0.0000023442, -0.0000023473,0.0000023480,0.0000023472,0.0000023463,0.0000023466, -0.0000023480,0.0000023543,0.0000023671,0.0000023840,0.0000023995, -0.0000024109,0.0000024195,0.0000024269,0.0000024331,0.0000024372, -0.0000024386,0.0000024384,0.0000024368,0.0000024347,0.0000024328, -0.0000024314,0.0000024305,0.0000024300,0.0000024301,0.0000024309, -0.0000024326,0.0000024359,0.0000024416,0.0000024495,0.0000024597, -0.0000024703,0.0000024787,0.0000024843,0.0000024879,0.0000024905, -0.0000024926,0.0000024943,0.0000024962,0.0000024993,0.0000025034, -0.0000025065,0.0000025070,0.0000025059,0.0000025046,0.0000025045, -0.0000025058,0.0000025078,0.0000025095,0.0000025110,0.0000025118, -0.0000025109,0.0000025055,0.0000024972,0.0000024907,0.0000024877, -0.0000024853,0.0000024809,0.0000024754,0.0000024708,0.0000024672, -0.0000024625,0.0000024572,0.0000024546,0.0000024560,0.0000024604, -0.0000024645,0.0000024653,0.0000024629,0.0000024565,0.0000024439, -0.0000024255,0.0000024098,0.0000024035,0.0000024047,0.0000024055, -0.0000024022,0.0000023943,0.0000023859,0.0000023794,0.0000023769, -0.0000023794,0.0000023836,0.0000023879,0.0000023898,0.0000023878, -0.0000023819,0.0000023738,0.0000023661,0.0000023612,0.0000023601, -0.0000023610,0.0000023633,0.0000023664,0.0000023721,0.0000023812, -0.0000023925,0.0000024019,0.0000024069,0.0000024088,0.0000024102, -0.0000024115,0.0000024125,0.0000024128,0.0000024126,0.0000024124, -0.0000024131,0.0000024161,0.0000024223,0.0000024345,0.0000024546, -0.0000024801,0.0000025017,0.0000025151,0.0000025238,0.0000025319, -0.0000025393,0.0000025445,0.0000025468,0.0000025475,0.0000025475, -0.0000025467,0.0000025461,0.0000025472,0.0000025507,0.0000025542, -0.0000025508,0.0000025338,0.0000025103,0.0000024886,0.0000024671, -0.0000024424,0.0000024190,0.0000024044,0.0000023974,0.0000023919, -0.0000023823,0.0000023686,0.0000023572,0.0000023542,0.0000023597, -0.0000023680,0.0000023747,0.0000023799,0.0000023842,0.0000023886, -0.0000023918,0.0000023933,0.0000023923,0.0000023870,0.0000023773, -0.0000023622,0.0000023458,0.0000023318,0.0000023237,0.0000023200, -0.0000023170,0.0000023149,0.0000023153,0.0000023197,0.0000023273, -0.0000023365,0.0000023436,0.0000023553,0.0000023672,0.0000023778, -0.0000023878,0.0000023976,0.0000024061,0.0000024078,0.0000023972, -0.0000023818,0.0000023792,0.0000023999,0.0000024331,0.0000024564, -0.0000024696,0.0000024765,0.0000024797,0.0000024801,0.0000024777, -0.0000024721,0.0000024655,0.0000024597,0.0000024561,0.0000024542, -0.0000024519,0.0000024479,0.0000024413,0.0000024348,0.0000024317, -0.0000024312,0.0000024323,0.0000024310,0.0000024304,0.0000024321, -0.0000024343,0.0000024371,0.0000024410,0.0000024442,0.0000024456, -0.0000024452,0.0000024440,0.0000024448,0.0000024480,0.0000024550, -0.0000024640,0.0000024721,0.0000024785,0.0000024819,0.0000024800, -0.0000024732,0.0000024661,0.0000024601,0.0000024549,0.0000024525, -0.0000024510,0.0000024484,0.0000024446,0.0000024404,0.0000024359, -0.0000024292,0.0000024198,0.0000024067,0.0000023921,0.0000023775, -0.0000023649,0.0000023559,0.0000023512,0.0000023498,0.0000023501, -0.0000023510,0.0000023507,0.0000023492,0.0000023478,0.0000023464, -0.0000023452,0.0000023438,0.0000023413,0.0000023385,0.0000023371, -0.0000023350,0.0000023298,0.0000023219,0.0000023138,0.0000023080, -0.0000023068,0.0000023076,0.0000023065,0.0000023021,0.0000022980, -0.0000022972,0.0000022980,0.0000022980,0.0000022974,0.0000022972, -0.0000022975,0.0000022980,0.0000022978,0.0000022918,0.0000022787, -0.0000022621,0.0000022474,0.0000022360,0.0000022285,0.0000022265, -0.0000022269,0.0000022274,0.0000022285,0.0000022319,0.0000022362, -0.0000022406,0.0000022441,0.0000022487,0.0000022564,0.0000022675, -0.0000022773,0.0000022827,0.0000022865,0.0000022867,0.0000022805, -0.0000022706,0.0000022656,0.0000022649,0.0000022621,0.0000022579, -0.0000022566,0.0000022591,0.0000022612,0.0000022592,0.0000022601, -0.0000022719,0.0000022906,0.0000023021,0.0000023060,0.0000023065, -0.0000023032,0.0000022961,0.0000022901,0.0000022879,0.0000022865, -0.0000022836,0.0000022807,0.0000022789,0.0000022785,0.0000022795, -0.0000022815,0.0000022843,0.0000022863,0.0000022854,0.0000022773, -0.0000022639,0.0000022519,0.0000022462,0.0000022465,0.0000022502, -0.0000022561,0.0000022620,0.0000022659,0.0000022657,0.0000022607, -0.0000022525,0.0000022460,0.0000022442,0.0000022463,0.0000022509, -0.0000022569,0.0000022636,0.0000022700,0.0000022779,0.0000022880, -0.0000022971,0.0000023026,0.0000023066,0.0000023126,0.0000023243, -0.0000023446,0.0000023634,0.0000023670,0.0000023621,0.0000023570, -0.0000023554,0.0000023615,0.0000023761,0.0000023867,0.0000023888, -0.0000023872,0.0000023882,0.0000023949,0.0000024143,0.0000024347, -0.0000024430,0.0000024555,0.0000024881,0.0000025143,0.0000025219, -0.0000025384,0.0000025617,0.0000025719,0.0000025657,0.0000025382, -0.0000025135,0.0000024809,0.0000024350,0.0000024163,0.0000024262, -0.0000024389,0.0000024377,0.0000024229,0.0000024028,0.0000023872, -0.0000023780,0.0000023774,0.0000023879,0.0000024055,0.0000024143, -0.0000024306,0.0000024725,0.0000024943,0.0000024886,0.0000025400, -0.0000026020,0.0000026176,0.0000025893,0.0000025112,0.0000024762, -0.0000024745,0.0000024683,0.0000024306,0.0000024014,0.0000024001, -0.0000024091,0.0000024273,0.0000024452,0.0000024542,0.0000024526, -0.0000024430,0.0000024307,0.0000024245,0.0000024244,0.0000024268, -0.0000024325,0.0000024390,0.0000024427,0.0000024427,0.0000024411, -0.0000024394,0.0000024406,0.0000024450,0.0000024469,0.0000024453, -0.0000024418,0.0000024386,0.0000024335,0.0000024263,0.0000024171, -0.0000024068,0.0000023982,0.0000023919,0.0000023874,0.0000023836, -0.0000023803,0.0000023771,0.0000023739,0.0000023715,0.0000023718, -0.0000023732,0.0000023742,0.0000023731,0.0000023701,0.0000023675, -0.0000023667,0.0000023686,0.0000023721,0.0000023722,0.0000023664, -0.0000023615,0.0000023617,0.0000023637,0.0000023647,0.0000023651, -0.0000023659,0.0000023678,0.0000023702,0.0000023722,0.0000023744, -0.0000023789,0.0000023876,0.0000023988,0.0000024078,0.0000024140, -0.0000024208,0.0000024307,0.0000024420,0.0000024504,0.0000024553, -0.0000024602,0.0000024677,0.0000024773,0.0000024865,0.0000024932, -0.0000024965,0.0000024968,0.0000024944,0.0000024918,0.0000024918, -0.0000024950,0.0000024997,0.0000025052,0.0000025098,0.0000025133, -0.0000025157,0.0000025176,0.0000025193,0.0000025203,0.0000025200, -0.0000025179,0.0000025149,0.0000025119,0.0000025092,0.0000025059, -0.0000025020,0.0000024981,0.0000024964,0.0000024971,0.0000024989, -0.0000025005,0.0000025003,0.0000024987,0.0000024952,0.0000024893, -0.0000024800,0.0000024687,0.0000024572,0.0000024447,0.0000024282, -0.0000024069,0.0000023844,0.0000023646,0.0000023483,0.0000023350, -0.0000023244,0.0000023168,0.0000023135,0.0000023139,0.0000023167, -0.0000023204,0.0000023228,0.0000023232,0.0000023221,0.0000023201, -0.0000023173,0.0000023136,0.0000023085,0.0000023002,0.0000022861, -0.0000022681,0.0000022549,0.0000022517,0.0000022541,0.0000022601, -0.0000022673,0.0000022791,0.0000022974,0.0000023162,0.0000023286, -0.0000023349,0.0000023386,0.0000023416,0.0000023438,0.0000023447, -0.0000023443,0.0000023421,0.0000023360,0.0000023223,0.0000023008, -0.0000022759,0.0000022523,0.0000022361,0.0000022291,0.0000022256, -0.0000022199,0.0000022132,0.0000022097,0.0000022096,0.0000022099, -0.0000022113,0.0000022163,0.0000022243,0.0000022333,0.0000022371, -0.0000022323,0.0000022212,0.0000022185,0.0000022236,0.0000022313, -0.0000022429,0.0000022560,0.0000022653,0.0000022722,0.0000022835, -0.0000023012,0.0000023173,0.0000023283,0.0000023361,0.0000023423, -0.0000023487,0.0000023552,0.0000023588,0.0000023588,0.0000023572, -0.0000023565,0.0000023585,0.0000023624,0.0000023661,0.0000023686, -0.0000023698,0.0000023727,0.0000023849,0.0000024058,0.0000024230, -0.0000024308,0.0000024322,0.0000024298,0.0000024245,0.0000024231, -0.0000024292,0.0000024413,0.0000024549,0.0000024658,0.0000024691, -0.0000024656,0.0000024570,0.0000024515,0.0000024524,0.0000024567, -0.0000024616,0.0000024679,0.0000024764,0.0000024821,0.0000024830, -0.0000024829,0.0000024809,0.0000024741,0.0000024623,0.0000024482, -0.0000024357,0.0000024275,0.0000024258,0.0000024280,0.0000024310, -0.0000024318,0.0000024313,0.0000024313,0.0000024345,0.0000024404, -0.0000024463,0.0000024506,0.0000024543,0.0000024586,0.0000024635, -0.0000024679,0.0000024705,0.0000024712,0.0000024707,0.0000024704, -0.0000024711,0.0000024730,0.0000024753,0.0000024767,0.0000024770, -0.0000024772,0.0000024776,0.0000024776,0.0000024764,0.0000024747, -0.0000024741,0.0000024765,0.0000024824,0.0000024906,0.0000024998, -0.0000025079,0.0000025137,0.0000025171,0.0000025184,0.0000025172, -0.0000025141,0.0000025118,0.0000025125,0.0000025167,0.0000025220, -0.0000025245,0.0000025242,0.0000025232,0.0000025223,0.0000025196, -0.0000025145,0.0000025087,0.0000025052,0.0000025051,0.0000025080, -0.0000025135,0.0000025210,0.0000025261,0.0000025292,0.0000025343, -0.0000025418,0.0000025478,0.0000025506,0.0000025524,0.0000025555, -0.0000025582,0.0000025583,0.0000025581,0.0000025595,0.0000025628, -0.0000025679,0.0000025737,0.0000025800,0.0000025872,0.0000025953, -0.0000026026,0.0000026081,0.0000026138,0.0000026200,0.0000026252, -0.0000026275,0.0000026273,0.0000026252,0.0000026220,0.0000026173, -0.0000026110,0.0000026033,0.0000025960,0.0000025912,0.0000025884, -0.0000025852,0.0000025799,0.0000025734,0.0000025671,0.0000025640, -0.0000025642,0.0000025649,0.0000025620,0.0000025558,0.0000025495, -0.0000025406,0.0000025250,0.0000025091,0.0000025011,0.0000024913, -0.0000024725,0.0000024551,0.0000024445,0.0000024368,0.0000024311, -0.0000024289,0.0000024298,0.0000024342,0.0000024406,0.0000024450, -0.0000024464,0.0000024466,0.0000024456,0.0000024429,0.0000024409, -0.0000024465,0.0000024623,0.0000024877,0.0000025271,0.0000025735, -0.0000026062,0.0000026209,0.0000026281,0.0000026314,0.0000026323, -0.0000026352,0.0000026416,0.0000026488,0.0000026551,0.0000026591, -0.0000026605,0.0000026600,0.0000026573,0.0000026540,0.0000026518, -0.0000026498,0.0000026469,0.0000026447,0.0000026430,0.0000026386, -0.0000026329,0.0000026309,0.0000026298,0.0000026234,0.0000026146, -0.0000026090,0.0000026026,0.0000025938,0.0000025906,0.0000025945, -0.0000026019,0.0000026069,0.0000026081,0.0000026085,0.0000026095, -0.0000026076,0.0000025979,0.0000025851,0.0000025679,0.0000025379, -0.0000025072,0.0000024903,0.0000024778,0.0000024520,0.0000024184, -0.0000023978,0.0000023898,0.0000023809,0.0000023633,0.0000023331, -0.0000022989,0.0000022751,0.0000022598,0.0000022440,0.0000022283, -0.0000022170,0.0000022107,0.0000022075,0.0000022066,0.0000022075, -0.0000022105,0.0000022175,0.0000022276,0.0000022381,0.0000022465, -0.0000022522,0.0000022547,0.0000022541,0.0000022504,0.0000022441, -0.0000022356,0.0000022263,0.0000022185,0.0000022152,0.0000022140, -0.0000022115,0.0000022069,0.0000022039,0.0000022053,0.0000022169, -0.0000022389,0.0000022608,0.0000022742,0.0000022794,0.0000022796, -0.0000022754,0.0000022666,0.0000022535,0.0000022422,0.0000022393, -0.0000022436,0.0000022530,0.0000022644,0.0000022718,0.0000022759, -0.0000022825,0.0000022966,0.0000023119,0.0000023221,0.0000023257, -0.0000023273,0.0000023285,0.0000023300,0.0000023313,0.0000023321, -0.0000023329,0.0000023343,0.0000023360,0.0000023365,0.0000023357, -0.0000023343,0.0000023336,0.0000023338,0.0000023350,0.0000023368, -0.0000023383,0.0000023401,0.0000023414,0.0000023410,0.0000023387, -0.0000023351,0.0000023312,0.0000023275,0.0000023232,0.0000023187, -0.0000023168,0.0000023180,0.0000023191,0.0000023195,0.0000023189, -0.0000023172,0.0000023151,0.0000023141,0.0000023142,0.0000023137, -0.0000023113,0.0000023063,0.0000022991,0.0000022906,0.0000022825, -0.0000022779,0.0000022743,0.0000022718,0.0000022706,0.0000022706, -0.0000022706,0.0000022691,0.0000022663,0.0000022643,0.0000022647, -0.0000022670,0.0000022690,0.0000022692,0.0000022672,0.0000022636, -0.0000022587,0.0000022540,0.0000022507,0.0000022487,0.0000022484, -0.0000022493,0.0000022508,0.0000022522,0.0000022528,0.0000022521, -0.0000022506,0.0000022488,0.0000022473,0.0000022459,0.0000022452, -0.0000022457,0.0000022471,0.0000022488,0.0000022503,0.0000022513, -0.0000022512,0.0000022498,0.0000022484,0.0000022485,0.0000022516, -0.0000022554,0.0000022573,0.0000022579,0.0000022576,0.0000022561, -0.0000022537,0.0000022502,0.0000022461,0.0000022427,0.0000022372, -0.0000022275,0.0000022187,0.0000022136,0.0000022089,0.0000022039, -0.0000022009,0.0000022005,0.0000022012,0.0000022021,0.0000022011, -0.0000021987,0.0000021957,0.0000021939,0.0000021935,0.0000021953, -0.0000021984,0.0000022014,0.0000022035,0.0000022048,0.0000022058, -0.0000022058,0.0000022044,0.0000022014,0.0000021970,0.0000021906, -0.0000021820,0.0000021718,0.0000021609,0.0000021503,0.0000021414, -0.0000021347,0.0000021309,0.0000021310,0.0000021344,0.0000021390, -0.0000021437,0.0000021485,0.0000021523,0.0000021539,0.0000021529, -0.0000021487,0.0000021445,0.0000021436,0.0000021447,0.0000021453, -0.0000021431,0.0000021395,0.0000021380,0.0000021397,0.0000021462, -0.0000021556,0.0000021635,0.0000021680,0.0000021706,0.0000021731, -0.0000021742,0.0000021729,0.0000021711,0.0000021724,0.0000021769, -0.0000021814,0.0000021860,0.0000021912,0.0000021942,0.0000021941, -0.0000021936,0.0000021947,0.0000021978,0.0000022016,0.0000022068, -0.0000022135,0.0000022199,0.0000022262,0.0000022320,0.0000022351, -0.0000022349,0.0000022308,0.0000022256,0.0000022184,0.0000022092, -0.0000022073,0.0000022207,0.0000022524,0.0000022870,0.0000023101, -0.0000023186,0.0000023223,0.0000023245,0.0000023224,0.0000023178, -0.0000023114,0.0000023046,0.0000023019,0.0000023027,0.0000023051, -0.0000023086,0.0000023129,0.0000023168,0.0000023181,0.0000023171, -0.0000023138,0.0000023080,0.0000022999,0.0000022912,0.0000022840, -0.0000022796,0.0000022772,0.0000022757,0.0000022746,0.0000022742, -0.0000022746,0.0000022766,0.0000022803,0.0000022848,0.0000022896, -0.0000022942,0.0000022987,0.0000023029,0.0000023069,0.0000023106, -0.0000023143,0.0000023179,0.0000023209,0.0000023229,0.0000023242, -0.0000023252,0.0000023257,0.0000023256,0.0000023257,0.0000023262, -0.0000023088,0.0000023109,0.0000023136,0.0000023162,0.0000023185, -0.0000023202,0.0000023214,0.0000023225,0.0000023237,0.0000023252, -0.0000023271,0.0000023292,0.0000023308,0.0000023317,0.0000023314, -0.0000023306,0.0000023303,0.0000023306,0.0000023309,0.0000023326, -0.0000023329,0.0000023340,0.0000023335,0.0000023318,0.0000023292, -0.0000023255,0.0000023209,0.0000023158,0.0000023109,0.0000023071, -0.0000023045,0.0000023028,0.0000023004,0.0000022968,0.0000022969, -0.0000023046,0.0000023184,0.0000023327,0.0000023445,0.0000023538, -0.0000023596,0.0000023617,0.0000023617,0.0000023601,0.0000023594, -0.0000023613,0.0000023671,0.0000023713,0.0000023688,0.0000023599, -0.0000023504,0.0000023445,0.0000023446,0.0000023469,0.0000023461, -0.0000023433,0.0000023420,0.0000023431,0.0000023451,0.0000023465, -0.0000023466,0.0000023451,0.0000023422,0.0000023386,0.0000023346, -0.0000023312,0.0000023297,0.0000023305,0.0000023319,0.0000023321, -0.0000023314,0.0000023313,0.0000023342,0.0000023401,0.0000023472, -0.0000023541,0.0000023599,0.0000023643,0.0000023679,0.0000023718, -0.0000023758,0.0000023791,0.0000023815,0.0000023825,0.0000023827, -0.0000023832,0.0000023834,0.0000023824,0.0000023810,0.0000023789, -0.0000023778,0.0000023782,0.0000023773,0.0000023707,0.0000023613, -0.0000023546,0.0000023503,0.0000023479,0.0000023489,0.0000023532, -0.0000023574,0.0000023593,0.0000023590,0.0000023570,0.0000023551, -0.0000023548,0.0000023566,0.0000023603,0.0000023644,0.0000023678, -0.0000023698,0.0000023704,0.0000023701,0.0000023712,0.0000023751, -0.0000023799,0.0000023834,0.0000023858,0.0000023872,0.0000023876, -0.0000023867,0.0000023849,0.0000023815,0.0000023770,0.0000023728, -0.0000023687,0.0000023645,0.0000023611,0.0000023606,0.0000023633, -0.0000023698,0.0000023788,0.0000023881,0.0000023962,0.0000024026, -0.0000024076,0.0000024130,0.0000024182,0.0000024198,0.0000024197, -0.0000024348,0.0000024605,0.0000024784,0.0000024860,0.0000024939, -0.0000025103,0.0000025269,0.0000025349,0.0000025364,0.0000025339, -0.0000025271,0.0000025201,0.0000025166,0.0000025161,0.0000025167, -0.0000025182,0.0000025193,0.0000025193,0.0000025170,0.0000025100, -0.0000025007,0.0000024926,0.0000024870,0.0000024832,0.0000024779, -0.0000024676,0.0000024523,0.0000024355,0.0000024160,0.0000023884, -0.0000023580,0.0000023388,0.0000023345,0.0000023349,0.0000023351, -0.0000023338,0.0000023331,0.0000023340,0.0000023353,0.0000023347, -0.0000023323,0.0000023287,0.0000023239,0.0000023194,0.0000023168, -0.0000023161,0.0000023167,0.0000023194,0.0000023246,0.0000023313, -0.0000023377,0.0000023425,0.0000023451,0.0000023463,0.0000023467, -0.0000023470,0.0000023468,0.0000023473,0.0000023540,0.0000023677, -0.0000023851,0.0000024008,0.0000024116,0.0000024186,0.0000024246, -0.0000024300,0.0000024334,0.0000024344,0.0000024335,0.0000024316, -0.0000024289,0.0000024258,0.0000024233,0.0000024227,0.0000024235, -0.0000024256,0.0000024291,0.0000024337,0.0000024386,0.0000024445, -0.0000024530,0.0000024630,0.0000024725,0.0000024801,0.0000024856, -0.0000024890,0.0000024910,0.0000024921,0.0000024936,0.0000024964, -0.0000025004,0.0000025035,0.0000025040,0.0000025024,0.0000025008, -0.0000025006,0.0000025025,0.0000025059,0.0000025089,0.0000025103, -0.0000025105,0.0000025095,0.0000025056,0.0000024989,0.0000024925, -0.0000024887,0.0000024862,0.0000024827,0.0000024777,0.0000024729, -0.0000024695,0.0000024659,0.0000024604,0.0000024564,0.0000024563, -0.0000024590,0.0000024622,0.0000024634,0.0000024623,0.0000024580, -0.0000024468,0.0000024276,0.0000024087,0.0000024003,0.0000024022, -0.0000024080,0.0000024115,0.0000024092,0.0000024029,0.0000023954, -0.0000023889,0.0000023849,0.0000023854,0.0000023894,0.0000023944, -0.0000023974,0.0000023960,0.0000023904,0.0000023808,0.0000023713, -0.0000023662,0.0000023653,0.0000023656,0.0000023653,0.0000023653, -0.0000023688,0.0000023780,0.0000023907,0.0000024005,0.0000024050, -0.0000024072,0.0000024104,0.0000024143,0.0000024171,0.0000024176, -0.0000024156,0.0000024129,0.0000024122,0.0000024158,0.0000024244, -0.0000024380,0.0000024583,0.0000024819,0.0000025034,0.0000025200, -0.0000025315,0.0000025388,0.0000025422,0.0000025432,0.0000025436, -0.0000025436,0.0000025433,0.0000025435,0.0000025450,0.0000025467, -0.0000025443,0.0000025329,0.0000025155,0.0000024980,0.0000024780, -0.0000024520,0.0000024262,0.0000024092,0.0000024003,0.0000023942, -0.0000023840,0.0000023698,0.0000023599,0.0000023603,0.0000023673, -0.0000023732,0.0000023739,0.0000023724,0.0000023722,0.0000023748, -0.0000023791,0.0000023825,0.0000023844,0.0000023855,0.0000023848, -0.0000023808,0.0000023725,0.0000023612,0.0000023512,0.0000023448, -0.0000023415,0.0000023388,0.0000023367,0.0000023369,0.0000023384, -0.0000023396,0.0000023402,0.0000023402,0.0000023398,0.0000023411, -0.0000023442,0.0000023521,0.0000023631,0.0000023748,0.0000023858, -0.0000023948,0.0000023967,0.0000023880,0.0000023790,0.0000023844, -0.0000024125,0.0000024451,0.0000024627,0.0000024716,0.0000024765, -0.0000024778,0.0000024760,0.0000024716,0.0000024672,0.0000024646, -0.0000024644,0.0000024640,0.0000024620,0.0000024573,0.0000024491, -0.0000024380,0.0000024290,0.0000024239,0.0000024227,0.0000024210, -0.0000024203,0.0000024211,0.0000024247,0.0000024310,0.0000024381, -0.0000024434,0.0000024451,0.0000024454,0.0000024437,0.0000024422, -0.0000024426,0.0000024481,0.0000024566,0.0000024633,0.0000024665, -0.0000024651,0.0000024600,0.0000024538,0.0000024499,0.0000024467, -0.0000024445,0.0000024429,0.0000024413,0.0000024391,0.0000024350, -0.0000024304,0.0000024240,0.0000024146,0.0000024021,0.0000023881, -0.0000023739,0.0000023625,0.0000023562,0.0000023533,0.0000023518, -0.0000023507,0.0000023503,0.0000023510,0.0000023515,0.0000023521, -0.0000023516,0.0000023490,0.0000023465,0.0000023443,0.0000023416, -0.0000023387,0.0000023349,0.0000023278,0.0000023182,0.0000023105, -0.0000023067,0.0000023056,0.0000023048,0.0000023019,0.0000022980, -0.0000022959,0.0000022955,0.0000022941,0.0000022918,0.0000022908, -0.0000022919,0.0000022945,0.0000022958,0.0000022920,0.0000022791, -0.0000022610,0.0000022451,0.0000022346,0.0000022289,0.0000022246, -0.0000022234,0.0000022262,0.0000022287,0.0000022302,0.0000022332, -0.0000022371,0.0000022414,0.0000022451,0.0000022491,0.0000022560, -0.0000022675,0.0000022790,0.0000022863,0.0000022920,0.0000022929, -0.0000022856,0.0000022740,0.0000022661,0.0000022629,0.0000022579, -0.0000022526,0.0000022516,0.0000022544,0.0000022562,0.0000022550, -0.0000022574,0.0000022720,0.0000022907,0.0000023016,0.0000023046, -0.0000023036,0.0000023010,0.0000022966,0.0000022908,0.0000022861, -0.0000022838,0.0000022810,0.0000022771,0.0000022742,0.0000022731, -0.0000022735,0.0000022752,0.0000022774,0.0000022794,0.0000022794, -0.0000022736,0.0000022615,0.0000022502,0.0000022451,0.0000022458, -0.0000022495,0.0000022544,0.0000022597,0.0000022635,0.0000022632, -0.0000022581,0.0000022504,0.0000022452,0.0000022444,0.0000022474, -0.0000022524,0.0000022581,0.0000022646,0.0000022727,0.0000022816, -0.0000022895,0.0000022954,0.0000022986,0.0000023005,0.0000023031, -0.0000023104,0.0000023268,0.0000023499,0.0000023640,0.0000023627, -0.0000023576,0.0000023553,0.0000023561,0.0000023661,0.0000023800, -0.0000023882,0.0000023897,0.0000023887,0.0000023895,0.0000023969, -0.0000024162,0.0000024328,0.0000024387,0.0000024517,0.0000024849, -0.0000025124,0.0000025189,0.0000025303,0.0000025514,0.0000025618, -0.0000025548,0.0000025309,0.0000025088,0.0000024721,0.0000024296, -0.0000024193,0.0000024297,0.0000024400,0.0000024384,0.0000024244, -0.0000024039,0.0000023873,0.0000023774,0.0000023745,0.0000023828, -0.0000023979,0.0000024105,0.0000024214,0.0000024604,0.0000024948, -0.0000024895,0.0000025135,0.0000025865,0.0000026187,0.0000026105, -0.0000025356,0.0000024812,0.0000024725,0.0000024724,0.0000024482, -0.0000024088,0.0000023983,0.0000024029,0.0000024166,0.0000024356, -0.0000024497,0.0000024532,0.0000024476,0.0000024343,0.0000024257, -0.0000024258,0.0000024286,0.0000024344,0.0000024414,0.0000024458, -0.0000024467,0.0000024455,0.0000024421,0.0000024398,0.0000024412, -0.0000024439,0.0000024444,0.0000024427,0.0000024418,0.0000024394, -0.0000024339,0.0000024256,0.0000024148,0.0000024043,0.0000023963, -0.0000023912,0.0000023867,0.0000023819,0.0000023776,0.0000023744, -0.0000023717,0.0000023711,0.0000023721,0.0000023728,0.0000023720, -0.0000023691,0.0000023647,0.0000023610,0.0000023611,0.0000023634, -0.0000023629,0.0000023585,0.0000023561,0.0000023574,0.0000023594, -0.0000023599,0.0000023600,0.0000023601,0.0000023606,0.0000023622, -0.0000023641,0.0000023657,0.0000023676,0.0000023731,0.0000023830, -0.0000023945,0.0000024040,0.0000024112,0.0000024193,0.0000024303, -0.0000024408,0.0000024476,0.0000024523,0.0000024582,0.0000024664, -0.0000024755,0.0000024835,0.0000024892,0.0000024920,0.0000024914, -0.0000024875,0.0000024828,0.0000024802,0.0000024810,0.0000024854, -0.0000024917,0.0000024985,0.0000025040,0.0000025077,0.0000025102, -0.0000025121,0.0000025132,0.0000025131,0.0000025116,0.0000025099, -0.0000025087,0.0000025069,0.0000025035,0.0000024992,0.0000024955, -0.0000024935,0.0000024929,0.0000024933,0.0000024928,0.0000024907, -0.0000024859,0.0000024778,0.0000024675,0.0000024563,0.0000024436, -0.0000024267,0.0000024056,0.0000023832,0.0000023630,0.0000023459, -0.0000023321,0.0000023223,0.0000023168,0.0000023157,0.0000023166, -0.0000023212,0.0000023264,0.0000023305,0.0000023326,0.0000023325, -0.0000023308,0.0000023281,0.0000023250,0.0000023208,0.0000023153, -0.0000023093,0.0000023025,0.0000022906,0.0000022714,0.0000022530, -0.0000022455,0.0000022482,0.0000022551,0.0000022621,0.0000022716, -0.0000022875,0.0000023059,0.0000023202,0.0000023285,0.0000023331, -0.0000023357,0.0000023368,0.0000023362,0.0000023328,0.0000023245, -0.0000023091,0.0000022887,0.0000022666,0.0000022463,0.0000022330, -0.0000022278,0.0000022246,0.0000022188,0.0000022122,0.0000022090, -0.0000022085,0.0000022078,0.0000022090,0.0000022142,0.0000022204, -0.0000022283,0.0000022360,0.0000022350,0.0000022245,0.0000022192, -0.0000022236,0.0000022307,0.0000022397,0.0000022523,0.0000022637, -0.0000022714,0.0000022803,0.0000022963,0.0000023149,0.0000023297, -0.0000023407,0.0000023472,0.0000023510,0.0000023555,0.0000023591, -0.0000023595,0.0000023574,0.0000023555,0.0000023561,0.0000023594, -0.0000023630,0.0000023653,0.0000023663,0.0000023666,0.0000023705, -0.0000023858,0.0000024073,0.0000024217,0.0000024259,0.0000024250, -0.0000024220,0.0000024204,0.0000024252,0.0000024358,0.0000024473, -0.0000024588,0.0000024683,0.0000024710,0.0000024651,0.0000024559, -0.0000024517,0.0000024530,0.0000024573,0.0000024620,0.0000024679, -0.0000024753,0.0000024797,0.0000024800,0.0000024794,0.0000024772, -0.0000024709,0.0000024599,0.0000024463,0.0000024333,0.0000024243, -0.0000024194,0.0000024190,0.0000024200,0.0000024206,0.0000024203, -0.0000024203,0.0000024226,0.0000024273,0.0000024324,0.0000024364, -0.0000024390,0.0000024412,0.0000024436,0.0000024462,0.0000024487, -0.0000024505,0.0000024510,0.0000024508,0.0000024512,0.0000024533, -0.0000024564,0.0000024591,0.0000024604,0.0000024604,0.0000024598, -0.0000024588,0.0000024572,0.0000024551,0.0000024542,0.0000024564, -0.0000024627,0.0000024721,0.0000024825,0.0000024924,0.0000025002, -0.0000025053,0.0000025084,0.0000025102,0.0000025100,0.0000025090, -0.0000025093,0.0000025128,0.0000025179,0.0000025212,0.0000025217, -0.0000025208,0.0000025200,0.0000025181,0.0000025131,0.0000025060, -0.0000025023,0.0000025028,0.0000025070,0.0000025131,0.0000025208, -0.0000025267,0.0000025303,0.0000025354,0.0000025431,0.0000025504, -0.0000025549,0.0000025582,0.0000025633,0.0000025686,0.0000025706, -0.0000025698,0.0000025690,0.0000025700,0.0000025726,0.0000025755, -0.0000025790,0.0000025823,0.0000025880,0.0000025953,0.0000026020, -0.0000026069,0.0000026109,0.0000026150,0.0000026180,0.0000026187, -0.0000026173,0.0000026143,0.0000026103,0.0000026049,0.0000025983, -0.0000025925,0.0000025894,0.0000025879,0.0000025853,0.0000025802, -0.0000025735,0.0000025676,0.0000025649,0.0000025649,0.0000025647, -0.0000025611,0.0000025548,0.0000025492,0.0000025399,0.0000025223, -0.0000025055,0.0000024950,0.0000024791,0.0000024570,0.0000024420, -0.0000024333,0.0000024255,0.0000024207,0.0000024209,0.0000024256, -0.0000024338,0.0000024406,0.0000024434,0.0000024436,0.0000024412, -0.0000024367,0.0000024341,0.0000024400,0.0000024558,0.0000024787, -0.0000025134,0.0000025594,0.0000025964,0.0000026136,0.0000026220, -0.0000026277,0.0000026298,0.0000026314,0.0000026351,0.0000026404, -0.0000026459,0.0000026517,0.0000026566,0.0000026588,0.0000026582, -0.0000026558,0.0000026538,0.0000026524,0.0000026499,0.0000026466, -0.0000026443,0.0000026417,0.0000026362,0.0000026310,0.0000026292, -0.0000026258,0.0000026168,0.0000026079,0.0000026035,0.0000025982, -0.0000025916,0.0000025903,0.0000025954,0.0000026023,0.0000026061, -0.0000026075,0.0000026090,0.0000026104,0.0000026073,0.0000025959, -0.0000025826,0.0000025627,0.0000025304,0.0000025022,0.0000024885, -0.0000024752,0.0000024469,0.0000024151,0.0000023989,0.0000023930, -0.0000023841,0.0000023628,0.0000023284,0.0000022957,0.0000022757, -0.0000022609,0.0000022427,0.0000022248,0.0000022122,0.0000022045, -0.0000021991,0.0000021959,0.0000021946,0.0000021947,0.0000021978, -0.0000022052,0.0000022156,0.0000022263,0.0000022351,0.0000022414, -0.0000022443,0.0000022431,0.0000022382,0.0000022302,0.0000022208, -0.0000022131,0.0000022106,0.0000022116,0.0000022135,0.0000022119, -0.0000022077,0.0000022034,0.0000022032,0.0000022119,0.0000022327, -0.0000022545,0.0000022685,0.0000022741,0.0000022741,0.0000022686, -0.0000022580,0.0000022457,0.0000022394,0.0000022404,0.0000022467, -0.0000022574,0.0000022688,0.0000022761,0.0000022794,0.0000022841, -0.0000022926,0.0000023034,0.0000023141,0.0000023221,0.0000023267, -0.0000023294,0.0000023308,0.0000023313,0.0000023308,0.0000023308, -0.0000023317,0.0000023324,0.0000023321,0.0000023304,0.0000023278, -0.0000023257,0.0000023241,0.0000023233,0.0000023233,0.0000023247, -0.0000023262,0.0000023271,0.0000023274,0.0000023274,0.0000023264, -0.0000023243,0.0000023200,0.0000023146,0.0000023102,0.0000023085, -0.0000023088,0.0000023088,0.0000023077,0.0000023060,0.0000023055, -0.0000023069,0.0000023087,0.0000023082,0.0000023050,0.0000022991, -0.0000022914,0.0000022832,0.0000022759,0.0000022717,0.0000022698, -0.0000022689,0.0000022686,0.0000022690,0.0000022698,0.0000022698, -0.0000022680,0.0000022651,0.0000022636,0.0000022640,0.0000022660, -0.0000022673,0.0000022666,0.0000022635,0.0000022587,0.0000022532, -0.0000022485,0.0000022452,0.0000022436,0.0000022436,0.0000022449, -0.0000022474,0.0000022497,0.0000022512,0.0000022512,0.0000022500, -0.0000022485,0.0000022473,0.0000022465,0.0000022465,0.0000022473, -0.0000022488,0.0000022501,0.0000022511,0.0000022516,0.0000022510, -0.0000022497,0.0000022493,0.0000022516,0.0000022562,0.0000022593, -0.0000022599,0.0000022596,0.0000022583,0.0000022557,0.0000022520, -0.0000022475,0.0000022433,0.0000022383,0.0000022294,0.0000022199, -0.0000022143,0.0000022096,0.0000022036,0.0000022006,0.0000022010, -0.0000022019,0.0000022025,0.0000022020,0.0000022000,0.0000021973, -0.0000021959,0.0000021975,0.0000022016,0.0000022074,0.0000022129, -0.0000022165,0.0000022175,0.0000022172,0.0000022168,0.0000022159, -0.0000022145,0.0000022121,0.0000022081,0.0000022015,0.0000021920, -0.0000021803,0.0000021678,0.0000021563,0.0000021475,0.0000021415, -0.0000021379,0.0000021369,0.0000021381,0.0000021407,0.0000021444, -0.0000021489,0.0000021527,0.0000021542,0.0000021538,0.0000021505, -0.0000021464,0.0000021449,0.0000021463,0.0000021490,0.0000021492, -0.0000021468,0.0000021433,0.0000021414,0.0000021422,0.0000021468, -0.0000021545,0.0000021614,0.0000021655,0.0000021682,0.0000021698, -0.0000021696,0.0000021679,0.0000021684,0.0000021726,0.0000021775, -0.0000021820,0.0000021865,0.0000021888,0.0000021881,0.0000021867, -0.0000021870,0.0000021900,0.0000021948,0.0000022002,0.0000022067, -0.0000022138,0.0000022206,0.0000022269,0.0000022319,0.0000022339, -0.0000022324,0.0000022279,0.0000022234,0.0000022170,0.0000022104, -0.0000022117,0.0000022324,0.0000022667,0.0000022984,0.0000023156, -0.0000023215,0.0000023248,0.0000023250,0.0000023209,0.0000023156, -0.0000023093,0.0000023045,0.0000023039,0.0000023058,0.0000023092, -0.0000023133,0.0000023171,0.0000023193,0.0000023193,0.0000023171, -0.0000023121,0.0000023043,0.0000022960,0.0000022893,0.0000022842, -0.0000022800,0.0000022758,0.0000022716,0.0000022677,0.0000022651, -0.0000022642,0.0000022651,0.0000022673,0.0000022703,0.0000022735, -0.0000022771,0.0000022809,0.0000022851,0.0000022894,0.0000022937, -0.0000022980,0.0000023020,0.0000023050,0.0000023071,0.0000023085, -0.0000023090,0.0000023084,0.0000023077,0.0000023078,0.0000022913, -0.0000022925,0.0000022948,0.0000022982,0.0000023026,0.0000023074, -0.0000023120,0.0000023155,0.0000023181,0.0000023201,0.0000023222, -0.0000023238,0.0000023248,0.0000023255,0.0000023262,0.0000023277, -0.0000023300,0.0000023323,0.0000023335,0.0000023337,0.0000023330, -0.0000023322,0.0000023308,0.0000023284,0.0000023257,0.0000023221, -0.0000023176,0.0000023126,0.0000023085,0.0000023065,0.0000023052, -0.0000023022,0.0000022970,0.0000022934,0.0000022970,0.0000023090, -0.0000023234,0.0000023361,0.0000023472,0.0000023562,0.0000023599, -0.0000023594,0.0000023567,0.0000023547,0.0000023553,0.0000023592, -0.0000023662,0.0000023696,0.0000023646,0.0000023558,0.0000023480, -0.0000023432,0.0000023427,0.0000023435,0.0000023427,0.0000023413, -0.0000023411,0.0000023419,0.0000023432,0.0000023434,0.0000023420, -0.0000023391,0.0000023352,0.0000023304,0.0000023254,0.0000023215, -0.0000023198,0.0000023205,0.0000023214,0.0000023208,0.0000023190, -0.0000023180,0.0000023203,0.0000023268,0.0000023359,0.0000023454, -0.0000023536,0.0000023596,0.0000023632,0.0000023659,0.0000023681, -0.0000023702,0.0000023727,0.0000023743,0.0000023746,0.0000023753, -0.0000023771,0.0000023787,0.0000023792,0.0000023782,0.0000023768, -0.0000023770,0.0000023784,0.0000023771,0.0000023705,0.0000023625, -0.0000023565,0.0000023519,0.0000023483,0.0000023480,0.0000023512, -0.0000023547,0.0000023561,0.0000023551,0.0000023527,0.0000023504, -0.0000023493,0.0000023510,0.0000023556,0.0000023616,0.0000023672, -0.0000023708,0.0000023727,0.0000023740,0.0000023761,0.0000023788, -0.0000023815,0.0000023840,0.0000023862,0.0000023874,0.0000023877, -0.0000023872,0.0000023856,0.0000023827,0.0000023790,0.0000023751, -0.0000023716,0.0000023680,0.0000023648,0.0000023644,0.0000023670, -0.0000023728,0.0000023801,0.0000023880,0.0000023945,0.0000023989, -0.0000024035,0.0000024104,0.0000024173,0.0000024202,0.0000024200, -0.0000024296,0.0000024547,0.0000024751,0.0000024847,0.0000024930, -0.0000025087,0.0000025261,0.0000025351,0.0000025361,0.0000025334, -0.0000025262,0.0000025189,0.0000025154,0.0000025153,0.0000025165, -0.0000025183,0.0000025193,0.0000025190,0.0000025158,0.0000025081, -0.0000024987,0.0000024900,0.0000024825,0.0000024762,0.0000024689, -0.0000024592,0.0000024470,0.0000024329,0.0000024125,0.0000023817, -0.0000023517,0.0000023365,0.0000023343,0.0000023349,0.0000023350, -0.0000023340,0.0000023331,0.0000023330,0.0000023330,0.0000023320, -0.0000023301,0.0000023271,0.0000023218,0.0000023163,0.0000023112, -0.0000023084,0.0000023076,0.0000023091,0.0000023141,0.0000023216, -0.0000023298,0.0000023365,0.0000023410,0.0000023437,0.0000023456, -0.0000023471,0.0000023476,0.0000023474,0.0000023488,0.0000023555, -0.0000023692,0.0000023867,0.0000024018,0.0000024112,0.0000024170, -0.0000024221,0.0000024269,0.0000024301,0.0000024308,0.0000024296, -0.0000024265,0.0000024226,0.0000024192,0.0000024177,0.0000024179, -0.0000024201,0.0000024253,0.0000024317,0.0000024371,0.0000024418, -0.0000024477,0.0000024557,0.0000024651,0.0000024741,0.0000024813, -0.0000024861,0.0000024891,0.0000024911,0.0000024930,0.0000024952, -0.0000024980,0.0000025002,0.0000025005,0.0000024988,0.0000024967, -0.0000024962,0.0000024982,0.0000025028,0.0000025072,0.0000025092, -0.0000025089,0.0000025073,0.0000025042,0.0000024995,0.0000024938, -0.0000024890,0.0000024854,0.0000024823,0.0000024785,0.0000024741, -0.0000024705,0.0000024675,0.0000024626,0.0000024574,0.0000024559, -0.0000024571,0.0000024599,0.0000024615,0.0000024611,0.0000024584, -0.0000024500,0.0000024324,0.0000024115,0.0000023992,0.0000023986, -0.0000024070,0.0000024176,0.0000024233,0.0000024215,0.0000024147, -0.0000024059,0.0000023973,0.0000023912,0.0000023899,0.0000023916, -0.0000023959,0.0000023987,0.0000023984,0.0000023933,0.0000023849, -0.0000023765,0.0000023710,0.0000023686,0.0000023674,0.0000023659, -0.0000023649,0.0000023671,0.0000023752,0.0000023866,0.0000023965, -0.0000024032,0.0000024080,0.0000024127,0.0000024173,0.0000024196, -0.0000024186,0.0000024147,0.0000024118,0.0000024122,0.0000024171, -0.0000024271,0.0000024423,0.0000024608,0.0000024813,0.0000025023, -0.0000025199,0.0000025318,0.0000025381,0.0000025408,0.0000025413, -0.0000025410,0.0000025402,0.0000025393,0.0000025380,0.0000025339, -0.0000025250,0.0000025133,0.0000025014,0.0000024867,0.0000024647, -0.0000024393,0.0000024200,0.0000024094,0.0000024017,0.0000023903, -0.0000023748,0.0000023641,0.0000023659,0.0000023744,0.0000023783, -0.0000023757,0.0000023709,0.0000023708,0.0000023727,0.0000023762, -0.0000023810,0.0000023843,0.0000023846,0.0000023827,0.0000023796, -0.0000023750,0.0000023679,0.0000023597,0.0000023531,0.0000023502, -0.0000023498,0.0000023498,0.0000023503,0.0000023533,0.0000023576, -0.0000023608,0.0000023631,0.0000023635,0.0000023609,0.0000023550, -0.0000023466,0.0000023386,0.0000023342,0.0000023386,0.0000023493, -0.0000023621,0.0000023748,0.0000023861,0.0000023896,0.0000023839, -0.0000023798,0.0000023945,0.0000024261,0.0000024529,0.0000024669, -0.0000024730,0.0000024742,0.0000024728,0.0000024692,0.0000024677, -0.0000024685,0.0000024696,0.0000024695,0.0000024681,0.0000024661, -0.0000024602,0.0000024487,0.0000024352,0.0000024251,0.0000024202, -0.0000024177,0.0000024152,0.0000024131,0.0000024136,0.0000024179, -0.0000024266,0.0000024347,0.0000024398,0.0000024419,0.0000024413, -0.0000024390,0.0000024382,0.0000024396,0.0000024418,0.0000024425, -0.0000024413,0.0000024400,0.0000024394,0.0000024402,0.0000024405, -0.0000024390,0.0000024356,0.0000024317,0.0000024281,0.0000024246, -0.0000024210,0.0000024163,0.0000024068,0.0000023938,0.0000023801, -0.0000023682,0.0000023600,0.0000023558,0.0000023533,0.0000023510, -0.0000023491,0.0000023493,0.0000023520,0.0000023544,0.0000023551, -0.0000023544,0.0000023515,0.0000023482,0.0000023457,0.0000023428, -0.0000023375,0.0000023296,0.0000023209,0.0000023137,0.0000023094, -0.0000023072,0.0000023052,0.0000023023,0.0000022984,0.0000022954, -0.0000022934,0.0000022923,0.0000022906,0.0000022888,0.0000022888, -0.0000022903,0.0000022919,0.0000022901,0.0000022781,0.0000022601, -0.0000022437,0.0000022329,0.0000022270,0.0000022248,0.0000022236, -0.0000022225,0.0000022240,0.0000022284,0.0000022315,0.0000022341, -0.0000022378,0.0000022413,0.0000022446,0.0000022486,0.0000022556, -0.0000022677,0.0000022804,0.0000022888,0.0000022954,0.0000022973, -0.0000022905,0.0000022787,0.0000022688,0.0000022619,0.0000022541, -0.0000022480,0.0000022476,0.0000022505,0.0000022521,0.0000022517, -0.0000022561,0.0000022737,0.0000022929,0.0000023025,0.0000023041, -0.0000023013,0.0000022978,0.0000022952,0.0000022908,0.0000022841, -0.0000022801,0.0000022781,0.0000022749,0.0000022716,0.0000022697, -0.0000022694,0.0000022705,0.0000022724,0.0000022743,0.0000022743, -0.0000022693,0.0000022581,0.0000022479,0.0000022438,0.0000022451, -0.0000022491,0.0000022533,0.0000022574,0.0000022607,0.0000022602, -0.0000022552,0.0000022479,0.0000022432,0.0000022438,0.0000022481, -0.0000022542,0.0000022601,0.0000022673,0.0000022766,0.0000022862, -0.0000022933,0.0000022966,0.0000022967,0.0000022959,0.0000022964, -0.0000022991,0.0000023108,0.0000023328,0.0000023544,0.0000023604, -0.0000023565,0.0000023543,0.0000023543,0.0000023592,0.0000023716, -0.0000023831,0.0000023893,0.0000023911,0.0000023909,0.0000023918, -0.0000024004,0.0000024187,0.0000024304,0.0000024348,0.0000024492, -0.0000024824,0.0000025104,0.0000025173,0.0000025238,0.0000025390, -0.0000025474,0.0000025415,0.0000025247,0.0000025028,0.0000024608, -0.0000024254,0.0000024221,0.0000024339,0.0000024408,0.0000024386, -0.0000024257,0.0000024054,0.0000023878,0.0000023774,0.0000023727, -0.0000023784,0.0000023909,0.0000024060,0.0000024147,0.0000024475, -0.0000024900,0.0000024946,0.0000024931,0.0000025628,0.0000026152, -0.0000026218,0.0000025666,0.0000024942,0.0000024725,0.0000024727, -0.0000024632,0.0000024243,0.0000023986,0.0000023984,0.0000024073, -0.0000024238,0.0000024415,0.0000024514,0.0000024501,0.0000024396, -0.0000024286,0.0000024268,0.0000024298,0.0000024359,0.0000024431, -0.0000024474,0.0000024488,0.0000024483,0.0000024454,0.0000024412, -0.0000024389,0.0000024388,0.0000024401,0.0000024418,0.0000024426, -0.0000024421,0.0000024400,0.0000024345,0.0000024253,0.0000024142, -0.0000024041,0.0000023970,0.0000023920,0.0000023870,0.0000023819, -0.0000023784,0.0000023754,0.0000023734,0.0000023729,0.0000023728, -0.0000023714,0.0000023675,0.0000023613,0.0000023553,0.0000023532, -0.0000023544,0.0000023553,0.0000023543,0.0000023542,0.0000023556, -0.0000023572,0.0000023573,0.0000023565,0.0000023548,0.0000023533, -0.0000023537,0.0000023564,0.0000023591,0.0000023602,0.0000023617, -0.0000023666,0.0000023767,0.0000023896,0.0000024003,0.0000024078, -0.0000024165,0.0000024277,0.0000024374,0.0000024436,0.0000024492, -0.0000024566,0.0000024652,0.0000024730,0.0000024793,0.0000024840, -0.0000024861,0.0000024850,0.0000024809,0.0000024759,0.0000024727, -0.0000024724,0.0000024760,0.0000024829,0.0000024908,0.0000024974, -0.0000025018,0.0000025049,0.0000025072,0.0000025083,0.0000025081, -0.0000025069,0.0000025057,0.0000025044,0.0000025021,0.0000024989, -0.0000024956,0.0000024929,0.0000024909,0.0000024887,0.0000024856, -0.0000024807,0.0000024737,0.0000024653,0.0000024555,0.0000024430, -0.0000024257,0.0000024040,0.0000023808,0.0000023601,0.0000023433, -0.0000023310,0.0000023232,0.0000023196,0.0000023187,0.0000023222, -0.0000023266,0.0000023316,0.0000023359,0.0000023387,0.0000023396, -0.0000023387,0.0000023364,0.0000023336,0.0000023307,0.0000023272, -0.0000023225,0.0000023159,0.0000023077,0.0000022998,0.0000022901, -0.0000022729,0.0000022522,0.0000022414,0.0000022439,0.0000022521, -0.0000022592,0.0000022666,0.0000022792,0.0000022956,0.0000023099, -0.0000023191,0.0000023241,0.0000023259,0.0000023254,0.0000023211, -0.0000023108,0.0000022952,0.0000022773,0.0000022590,0.0000022422, -0.0000022315,0.0000022274,0.0000022243,0.0000022183,0.0000022116, -0.0000022082,0.0000022069,0.0000022052,0.0000022062,0.0000022117, -0.0000022173,0.0000022228,0.0000022319,0.0000022363,0.0000022288, -0.0000022188,0.0000022216,0.0000022303,0.0000022372,0.0000022473, -0.0000022598,0.0000022691,0.0000022768,0.0000022897,0.0000023085, -0.0000023262,0.0000023405,0.0000023499,0.0000023529,0.0000023548, -0.0000023579,0.0000023593,0.0000023572,0.0000023538,0.0000023530, -0.0000023560,0.0000023605,0.0000023636,0.0000023643,0.0000023634, -0.0000023631,0.0000023699,0.0000023876,0.0000024066,0.0000024159, -0.0000024171,0.0000024166,0.0000024168,0.0000024212,0.0000024315, -0.0000024426,0.0000024521,0.0000024622,0.0000024698,0.0000024707, -0.0000024640,0.0000024549,0.0000024514,0.0000024530,0.0000024572, -0.0000024614,0.0000024665,0.0000024725,0.0000024758,0.0000024755, -0.0000024746,0.0000024725,0.0000024668,0.0000024568,0.0000024444, -0.0000024322,0.0000024229,0.0000024172,0.0000024145,0.0000024138, -0.0000024138,0.0000024137,0.0000024138,0.0000024150,0.0000024181, -0.0000024225,0.0000024263,0.0000024282,0.0000024284,0.0000024279, -0.0000024275,0.0000024278,0.0000024286,0.0000024287,0.0000024280, -0.0000024280,0.0000024298,0.0000024335,0.0000024379,0.0000024412, -0.0000024426,0.0000024425,0.0000024419,0.0000024409,0.0000024393, -0.0000024379,0.0000024390,0.0000024439,0.0000024523,0.0000024628, -0.0000024737,0.0000024831,0.0000024904,0.0000024964,0.0000025020, -0.0000025058,0.0000025067,0.0000025067,0.0000025087,0.0000025129, -0.0000025165,0.0000025175,0.0000025169,0.0000025162,0.0000025151, -0.0000025110,0.0000025043,0.0000025002,0.0000025010,0.0000025053, -0.0000025112,0.0000025190,0.0000025264,0.0000025313,0.0000025371, -0.0000025453,0.0000025533,0.0000025585,0.0000025629,0.0000025691, -0.0000025764,0.0000025803,0.0000025806,0.0000025802,0.0000025804, -0.0000025807,0.0000025807,0.0000025809,0.0000025819,0.0000025846, -0.0000025897,0.0000025960,0.0000026004,0.0000026027,0.0000026046, -0.0000026069,0.0000026085,0.0000026083,0.0000026058,0.0000026021, -0.0000025979,0.0000025934,0.0000025896,0.0000025878,0.0000025872, -0.0000025850,0.0000025800,0.0000025732,0.0000025679,0.0000025655, -0.0000025649,0.0000025636,0.0000025596,0.0000025544,0.0000025501, -0.0000025398,0.0000025202,0.0000025020,0.0000024879,0.0000024670, -0.0000024443,0.0000024312,0.0000024226,0.0000024152,0.0000024133, -0.0000024175,0.0000024258,0.0000024347,0.0000024397,0.0000024402, -0.0000024376,0.0000024324,0.0000024291,0.0000024351,0.0000024515, -0.0000024727,0.0000025019,0.0000025447,0.0000025846,0.0000026051, -0.0000026142,0.0000026219,0.0000026260,0.0000026279,0.0000026306, -0.0000026342,0.0000026378,0.0000026419,0.0000026474,0.0000026532, -0.0000026565,0.0000026565,0.0000026549,0.0000026539,0.0000026527, -0.0000026500,0.0000026468,0.0000026442,0.0000026403,0.0000026342, -0.0000026299,0.0000026275,0.0000026212,0.0000026106,0.0000026031, -0.0000026004,0.0000025962,0.0000025914,0.0000025920,0.0000025984, -0.0000026047,0.0000026078,0.0000026093,0.0000026110,0.0000026117, -0.0000026061,0.0000025927,0.0000025779,0.0000025545,0.0000025212, -0.0000024970,0.0000024864,0.0000024719,0.0000024420,0.0000024126, -0.0000024002,0.0000023961,0.0000023856,0.0000023598,0.0000023230, -0.0000022929,0.0000022751,0.0000022597,0.0000022412,0.0000022235, -0.0000022104,0.0000022017,0.0000021949,0.0000021894,0.0000021860, -0.0000021853,0.0000021867,0.0000021912,0.0000021980,0.0000022057, -0.0000022138,0.0000022215,0.0000022279,0.0000022315,0.0000022304, -0.0000022252,0.0000022170,0.0000022093,0.0000022062,0.0000022076, -0.0000022115,0.0000022136,0.0000022129,0.0000022089,0.0000022040, -0.0000022025,0.0000022094,0.0000022276,0.0000022479,0.0000022623, -0.0000022685,0.0000022679,0.0000022615,0.0000022510,0.0000022422, -0.0000022407,0.0000022442,0.0000022516,0.0000022613,0.0000022716, -0.0000022792,0.0000022838,0.0000022877,0.0000022908,0.0000022959, -0.0000023019,0.0000023075,0.0000023119,0.0000023154,0.0000023175, -0.0000023180,0.0000023180,0.0000023176,0.0000023173,0.0000023167, -0.0000023149,0.0000023119,0.0000023085,0.0000023054,0.0000023036, -0.0000023049,0.0000023091,0.0000023141,0.0000023182,0.0000023207, -0.0000023214,0.0000023200,0.0000023164,0.0000023108,0.0000023051, -0.0000023005,0.0000022985,0.0000022984,0.0000022990,0.0000022981, -0.0000022970,0.0000022982,0.0000023009,0.0000023025,0.0000023011, -0.0000022965,0.0000022898,0.0000022819,0.0000022741,0.0000022674, -0.0000022632,0.0000022623,0.0000022634,0.0000022653,0.0000022673, -0.0000022690,0.0000022698,0.0000022695,0.0000022675,0.0000022649, -0.0000022633,0.0000022629,0.0000022633,0.0000022631,0.0000022611, -0.0000022575,0.0000022528,0.0000022482,0.0000022445,0.0000022422, -0.0000022413,0.0000022415,0.0000022429,0.0000022454,0.0000022482, -0.0000022507,0.0000022520,0.0000022520,0.0000022512,0.0000022499, -0.0000022489,0.0000022486,0.0000022491,0.0000022502,0.0000022514, -0.0000022522,0.0000022519,0.0000022507,0.0000022500,0.0000022510, -0.0000022551,0.0000022593,0.0000022612,0.0000022613,0.0000022604, -0.0000022583,0.0000022546,0.0000022500,0.0000022457,0.0000022403, -0.0000022319,0.0000022221,0.0000022151,0.0000022105,0.0000022043, -0.0000021998,0.0000022007,0.0000022022,0.0000022026,0.0000022019, -0.0000022006,0.0000021989,0.0000021988,0.0000022027,0.0000022096, -0.0000022171,0.0000022234,0.0000022275,0.0000022286,0.0000022270, -0.0000022243,0.0000022214,0.0000022195,0.0000022181,0.0000022166, -0.0000022145,0.0000022096,0.0000022015,0.0000021900,0.0000021764, -0.0000021633,0.0000021535,0.0000021479,0.0000021455,0.0000021451, -0.0000021457,0.0000021471,0.0000021495,0.0000021523,0.0000021542, -0.0000021542,0.0000021534,0.0000021509,0.0000021472,0.0000021455, -0.0000021466,0.0000021501,0.0000021524,0.0000021525,0.0000021510, -0.0000021474,0.0000021449,0.0000021451,0.0000021487,0.0000021542, -0.0000021596,0.0000021633,0.0000021650,0.0000021652,0.0000021641, -0.0000021638,0.0000021668,0.0000021724,0.0000021772,0.0000021810, -0.0000021827,0.0000021820,0.0000021806,0.0000021805,0.0000021826, -0.0000021872,0.0000021934,0.0000022003,0.0000022077,0.0000022148, -0.0000022213,0.0000022273,0.0000022315,0.0000022320,0.0000022294, -0.0000022248,0.0000022215,0.0000022166,0.0000022124,0.0000022191, -0.0000022460,0.0000022820,0.0000023090,0.0000023204,0.0000023244, -0.0000023261,0.0000023237,0.0000023188,0.0000023140,0.0000023089, -0.0000023057,0.0000023064,0.0000023095,0.0000023130,0.0000023163, -0.0000023189,0.0000023193,0.0000023182,0.0000023145,0.0000023087, -0.0000023019,0.0000022960,0.0000022910,0.0000022856,0.0000022789, -0.0000022717,0.0000022643,0.0000022576,0.0000022529,0.0000022491, -0.0000022481,0.0000022488,0.0000022503,0.0000022521,0.0000022548, -0.0000022580,0.0000022616,0.0000022656,0.0000022698,0.0000022741, -0.0000022783,0.0000022820,0.0000022854,0.0000022880,0.0000022894, -0.0000022900,0.0000022906,0.0000022739,0.0000022764,0.0000022785, -0.0000022810,0.0000022842,0.0000022886,0.0000022940,0.0000022997, -0.0000023053,0.0000023106,0.0000023150,0.0000023184,0.0000023204, -0.0000023216,0.0000023231,0.0000023253,0.0000023280,0.0000023307, -0.0000023328,0.0000023337,0.0000023332,0.0000023319,0.0000023299, -0.0000023271,0.0000023235,0.0000023192,0.0000023146,0.0000023112, -0.0000023088,0.0000023087,0.0000023068,0.0000023002,0.0000022938, -0.0000022939,0.0000023019,0.0000023147,0.0000023270,0.0000023386, -0.0000023501,0.0000023569,0.0000023574,0.0000023534,0.0000023493, -0.0000023485,0.0000023516,0.0000023575,0.0000023638,0.0000023646, -0.0000023593,0.0000023525,0.0000023461,0.0000023418,0.0000023405, -0.0000023396,0.0000023381,0.0000023374,0.0000023378,0.0000023388, -0.0000023396,0.0000023391,0.0000023366,0.0000023333,0.0000023296, -0.0000023246,0.0000023188,0.0000023143,0.0000023124,0.0000023126, -0.0000023131,0.0000023119,0.0000023087,0.0000023058,0.0000023054, -0.0000023096,0.0000023179,0.0000023281,0.0000023384,0.0000023474, -0.0000023540,0.0000023585,0.0000023615,0.0000023632,0.0000023651, -0.0000023667,0.0000023673,0.0000023674,0.0000023681,0.0000023699, -0.0000023725,0.0000023747,0.0000023751,0.0000023753,0.0000023768, -0.0000023783,0.0000023771,0.0000023712,0.0000023636,0.0000023580, -0.0000023526,0.0000023475,0.0000023463,0.0000023487,0.0000023517, -0.0000023523,0.0000023508,0.0000023484,0.0000023454,0.0000023444, -0.0000023461,0.0000023514,0.0000023598,0.0000023672,0.0000023716, -0.0000023747,0.0000023776,0.0000023798,0.0000023817,0.0000023839, -0.0000023860,0.0000023876,0.0000023886,0.0000023890,0.0000023885, -0.0000023870,0.0000023840,0.0000023798,0.0000023761,0.0000023732, -0.0000023703,0.0000023676,0.0000023679,0.0000023712,0.0000023764, -0.0000023820,0.0000023878,0.0000023925,0.0000023954,0.0000023996, -0.0000024074,0.0000024157,0.0000024198,0.0000024197,0.0000024251, -0.0000024478,0.0000024701,0.0000024823,0.0000024918,0.0000025064, -0.0000025238,0.0000025342,0.0000025355,0.0000025329,0.0000025256, -0.0000025179,0.0000025144,0.0000025145,0.0000025161,0.0000025175, -0.0000025180,0.0000025173,0.0000025128,0.0000025046,0.0000024951, -0.0000024857,0.0000024767,0.0000024685,0.0000024610,0.0000024535, -0.0000024446,0.0000024320,0.0000024107,0.0000023787,0.0000023497, -0.0000023365,0.0000023350,0.0000023354,0.0000023355,0.0000023347, -0.0000023331,0.0000023322,0.0000023318,0.0000023310,0.0000023296, -0.0000023269,0.0000023219,0.0000023153,0.0000023086,0.0000023042, -0.0000023017,0.0000023014,0.0000023040,0.0000023106,0.0000023200, -0.0000023297,0.0000023367,0.0000023408,0.0000023434,0.0000023458, -0.0000023477,0.0000023484,0.0000023489,0.0000023507,0.0000023573, -0.0000023701,0.0000023864,0.0000024005,0.0000024093,0.0000024145, -0.0000024190,0.0000024233,0.0000024259,0.0000024257,0.0000024235, -0.0000024200,0.0000024164,0.0000024137,0.0000024126,0.0000024139, -0.0000024189,0.0000024265,0.0000024335,0.0000024388,0.0000024437, -0.0000024503,0.0000024586,0.0000024673,0.0000024754,0.0000024822, -0.0000024876,0.0000024911,0.0000024933,0.0000024944,0.0000024952, -0.0000024961,0.0000024960,0.0000024940,0.0000024918,0.0000024913, -0.0000024936,0.0000024990,0.0000025048,0.0000025074,0.0000025067, -0.0000025043,0.0000025018,0.0000024989,0.0000024946,0.0000024893, -0.0000024844,0.0000024809,0.0000024780,0.0000024744,0.0000024704, -0.0000024671,0.0000024630,0.0000024576,0.0000024544,0.0000024547, -0.0000024574,0.0000024595,0.0000024598,0.0000024585,0.0000024531, -0.0000024394,0.0000024187,0.0000024021,0.0000023991,0.0000024054, -0.0000024188,0.0000024305,0.0000024354,0.0000024331,0.0000024250, -0.0000024141,0.0000024033,0.0000023949,0.0000023909,0.0000023906, -0.0000023929,0.0000023958,0.0000023965,0.0000023944,0.0000023881, -0.0000023800,0.0000023735,0.0000023698,0.0000023676,0.0000023655, -0.0000023645,0.0000023661,0.0000023722,0.0000023818,0.0000023926, -0.0000024021,0.0000024089,0.0000024144,0.0000024184,0.0000024189, -0.0000024164,0.0000024132,0.0000024119,0.0000024126,0.0000024182, -0.0000024302,0.0000024461,0.0000024631,0.0000024801,0.0000024964, -0.0000025109,0.0000025229,0.0000025310,0.0000025347,0.0000025346, -0.0000025318,0.0000025274,0.0000025219,0.0000025145,0.0000025067, -0.0000025001,0.0000024906,0.0000024739,0.0000024528,0.0000024349, -0.0000024232,0.0000024135,0.0000024010,0.0000023842,0.0000023714, -0.0000023722,0.0000023801,0.0000023842,0.0000023821,0.0000023773, -0.0000023775,0.0000023803,0.0000023834,0.0000023870,0.0000023919, -0.0000023964,0.0000023971,0.0000023934,0.0000023871,0.0000023803, -0.0000023716,0.0000023631,0.0000023571,0.0000023547,0.0000023544, -0.0000023535,0.0000023529,0.0000023548,0.0000023573,0.0000023601, -0.0000023630,0.0000023657,0.0000023675,0.0000023672,0.0000023642, -0.0000023597,0.0000023505,0.0000023402,0.0000023330,0.0000023304, -0.0000023354,0.0000023509,0.0000023684,0.0000023828,0.0000023890, -0.0000023876,0.0000023887,0.0000024060,0.0000024357,0.0000024573, -0.0000024661,0.0000024675,0.0000024656,0.0000024631,0.0000024631, -0.0000024647,0.0000024658,0.0000024665,0.0000024669,0.0000024659, -0.0000024622,0.0000024559,0.0000024446,0.0000024322,0.0000024236, -0.0000024197,0.0000024171,0.0000024137,0.0000024108,0.0000024100, -0.0000024126,0.0000024175,0.0000024240,0.0000024284,0.0000024298, -0.0000024297,0.0000024287,0.0000024276,0.0000024257,0.0000024233, -0.0000024239,0.0000024271,0.0000024323,0.0000024359,0.0000024359, -0.0000024325,0.0000024263,0.0000024193,0.0000024142,0.0000024114, -0.0000024081,0.0000024002,0.0000023876,0.0000023751,0.0000023656, -0.0000023596,0.0000023544,0.0000023503,0.0000023483,0.0000023484, -0.0000023500,0.0000023528,0.0000023544,0.0000023543,0.0000023534, -0.0000023519,0.0000023490,0.0000023445,0.0000023378,0.0000023294, -0.0000023209,0.0000023147,0.0000023115,0.0000023094,0.0000023076, -0.0000023051,0.0000023018,0.0000022994,0.0000022971,0.0000022940, -0.0000022912,0.0000022905,0.0000022902,0.0000022911,0.0000022918, -0.0000022883,0.0000022760,0.0000022578,0.0000022426,0.0000022334, -0.0000022277,0.0000022235,0.0000022210,0.0000022212,0.0000022216, -0.0000022223,0.0000022252,0.0000022295,0.0000022329,0.0000022367, -0.0000022398,0.0000022424,0.0000022464,0.0000022542,0.0000022672, -0.0000022810,0.0000022907,0.0000022972,0.0000022980,0.0000022932, -0.0000022833,0.0000022730,0.0000022616,0.0000022508,0.0000022447, -0.0000022448,0.0000022473,0.0000022484,0.0000022497,0.0000022565, -0.0000022769,0.0000022965,0.0000023048,0.0000023042,0.0000023000, -0.0000022953,0.0000022927,0.0000022890,0.0000022819,0.0000022764, -0.0000022749,0.0000022730,0.0000022699,0.0000022676,0.0000022668, -0.0000022674,0.0000022689,0.0000022703,0.0000022699,0.0000022648, -0.0000022539,0.0000022448,0.0000022422,0.0000022445,0.0000022486, -0.0000022523,0.0000022554,0.0000022578,0.0000022569,0.0000022519, -0.0000022451,0.0000022411,0.0000022426,0.0000022485,0.0000022559, -0.0000022633,0.0000022718,0.0000022821,0.0000022918,0.0000022974, -0.0000022990,0.0000022972,0.0000022940,0.0000022905,0.0000022905, -0.0000022972,0.0000023158,0.0000023404,0.0000023544,0.0000023537, -0.0000023510,0.0000023523,0.0000023551,0.0000023650,0.0000023777, -0.0000023856,0.0000023906,0.0000023931,0.0000023940,0.0000023959, -0.0000024059,0.0000024209,0.0000024270,0.0000024314,0.0000024480, -0.0000024803,0.0000025081,0.0000025161,0.0000025196,0.0000025285, -0.0000025342,0.0000025315,0.0000025202,0.0000024917,0.0000024478, -0.0000024236,0.0000024273,0.0000024381,0.0000024417,0.0000024390, -0.0000024266,0.0000024069,0.0000023885,0.0000023774,0.0000023714, -0.0000023741,0.0000023853,0.0000024000,0.0000024101,0.0000024350, -0.0000024791,0.0000024979,0.0000024884,0.0000025321,0.0000026013, -0.0000026237,0.0000025980,0.0000025169,0.0000024755,0.0000024715, -0.0000024707,0.0000024447,0.0000024070,0.0000023961,0.0000024012, -0.0000024131,0.0000024302,0.0000024452,0.0000024499,0.0000024442, -0.0000024341,0.0000024289,0.0000024303,0.0000024362,0.0000024432, -0.0000024481,0.0000024503,0.0000024498,0.0000024477,0.0000024443, -0.0000024396,0.0000024362,0.0000024345,0.0000024368,0.0000024395, -0.0000024416,0.0000024423,0.0000024409,0.0000024357,0.0000024271, -0.0000024164,0.0000024067,0.0000023997,0.0000023941,0.0000023889, -0.0000023847,0.0000023814,0.0000023783,0.0000023765,0.0000023753, -0.0000023725,0.0000023669,0.0000023599,0.0000023537,0.0000023505, -0.0000023506,0.0000023517,0.0000023529,0.0000023536,0.0000023547, -0.0000023560,0.0000023564,0.0000023553,0.0000023515,0.0000023475, -0.0000023462,0.0000023487,0.0000023529,0.0000023552,0.0000023551, -0.0000023549,0.0000023590,0.0000023698,0.0000023838,0.0000023946, -0.0000024021,0.0000024112,0.0000024230,0.0000024330,0.0000024401, -0.0000024472,0.0000024556,0.0000024635,0.0000024695,0.0000024740, -0.0000024769,0.0000024778,0.0000024765,0.0000024737,0.0000024709, -0.0000024693,0.0000024701,0.0000024739,0.0000024801,0.0000024867, -0.0000024926,0.0000024975,0.0000025017,0.0000025046,0.0000025056, -0.0000025049,0.0000025033,0.0000025010,0.0000024982,0.0000024949, -0.0000024915,0.0000024882,0.0000024848,0.0000024808,0.0000024756, -0.0000024692,0.0000024617,0.0000024528,0.0000024408,0.0000024239, -0.0000024023,0.0000023792,0.0000023581,0.0000023414,0.0000023304, -0.0000023247,0.0000023233,0.0000023244,0.0000023273,0.0000023321, -0.0000023366,0.0000023402,0.0000023423,0.0000023432,0.0000023432, -0.0000023428,0.0000023418,0.0000023400,0.0000023376,0.0000023341, -0.0000023294,0.0000023235,0.0000023158,0.0000023057,0.0000022960, -0.0000022871,0.0000022721,0.0000022515,0.0000022394,0.0000022420, -0.0000022509,0.0000022574,0.0000022624,0.0000022717,0.0000022854, -0.0000022982,0.0000023067,0.0000023107,0.0000023110,0.0000023066, -0.0000022963,0.0000022824,0.0000022678,0.0000022533,0.0000022400, -0.0000022313,0.0000022274,0.0000022244,0.0000022187,0.0000022117, -0.0000022074,0.0000022053,0.0000022026,0.0000022025,0.0000022083, -0.0000022147,0.0000022184,0.0000022257,0.0000022349,0.0000022334, -0.0000022221,0.0000022193,0.0000022283,0.0000022360,0.0000022426, -0.0000022537,0.0000022651,0.0000022733,0.0000022830,0.0000022995, -0.0000023187,0.0000023358,0.0000023489,0.0000023545,0.0000023548, -0.0000023556,0.0000023570,0.0000023560,0.0000023520,0.0000023495, -0.0000023513,0.0000023570,0.0000023622,0.0000023636,0.0000023617, -0.0000023596,0.0000023612,0.0000023715,0.0000023885,0.0000024018, -0.0000024063,0.0000024080,0.0000024115,0.0000024173,0.0000024270, -0.0000024387,0.0000024478,0.0000024560,0.0000024656,0.0000024719, -0.0000024709,0.0000024626,0.0000024533,0.0000024506,0.0000024520, -0.0000024559,0.0000024598,0.0000024640,0.0000024684,0.0000024701, -0.0000024693,0.0000024674,0.0000024646,0.0000024591,0.0000024502, -0.0000024388,0.0000024272,0.0000024182,0.0000024124,0.0000024090, -0.0000024075,0.0000024071,0.0000024073,0.0000024077,0.0000024087, -0.0000024107,0.0000024145,0.0000024192,0.0000024224,0.0000024228, -0.0000024218,0.0000024199,0.0000024184,0.0000024170,0.0000024153, -0.0000024130,0.0000024112,0.0000024116,0.0000024145,0.0000024194, -0.0000024243,0.0000024276,0.0000024295,0.0000024307,0.0000024316, -0.0000024312,0.0000024296,0.0000024285,0.0000024304,0.0000024364, -0.0000024453,0.0000024550,0.0000024644,0.0000024732,0.0000024822, -0.0000024919,0.0000025003,0.0000025041,0.0000025043,0.0000025049, -0.0000025076,0.0000025109,0.0000025123,0.0000025120,0.0000025116, -0.0000025116,0.0000025095,0.0000025045,0.0000025004,0.0000025001, -0.0000025034,0.0000025088,0.0000025165,0.0000025250,0.0000025313, -0.0000025375,0.0000025459,0.0000025540,0.0000025602,0.0000025657, -0.0000025727,0.0000025810,0.0000025863,0.0000025881,0.0000025890, -0.0000025891,0.0000025881,0.0000025864,0.0000025848,0.0000025840, -0.0000025847,0.0000025876,0.0000025915,0.0000025946,0.0000025955, -0.0000025954,0.0000025958,0.0000025975,0.0000025990,0.0000025982, -0.0000025955,0.0000025922,0.0000025891,0.0000025865,0.0000025855, -0.0000025852,0.0000025834,0.0000025782,0.0000025716,0.0000025672, -0.0000025653,0.0000025640,0.0000025618,0.0000025582,0.0000025551, -0.0000025519,0.0000025404,0.0000025190,0.0000024988,0.0000024809, -0.0000024566,0.0000024341,0.0000024218,0.0000024131,0.0000024088, -0.0000024114,0.0000024188,0.0000024273,0.0000024332,0.0000024344, -0.0000024324,0.0000024282,0.0000024251,0.0000024306,0.0000024472, -0.0000024679,0.0000024928,0.0000025313,0.0000025730,0.0000025962, -0.0000026053,0.0000026140,0.0000026206,0.0000026234,0.0000026259, -0.0000026294,0.0000026323,0.0000026342,0.0000026370,0.0000026421, -0.0000026486,0.0000026532,0.0000026543,0.0000026540,0.0000026538, -0.0000026524,0.0000026496,0.0000026469,0.0000026441,0.0000026391, -0.0000026329,0.0000026289,0.0000026249,0.0000026163,0.0000026065, -0.0000026021,0.0000026007,0.0000025973,0.0000025940,0.0000025960, -0.0000026026,0.0000026080,0.0000026101,0.0000026113,0.0000026121, -0.0000026115,0.0000026030,0.0000025880,0.0000025712,0.0000025446, -0.0000025121,0.0000024926,0.0000024849,0.0000024694,0.0000024387, -0.0000024119,0.0000024020,0.0000023983,0.0000023849,0.0000023542, -0.0000023163,0.0000022887,0.0000022719,0.0000022562,0.0000022387, -0.0000022225,0.0000022096,0.0000022000,0.0000021933,0.0000021882, -0.0000021842,0.0000021815,0.0000021811,0.0000021830,0.0000021865, -0.0000021909,0.0000021954,0.0000022004,0.0000022060,0.0000022120, -0.0000022163,0.0000022172,0.0000022135,0.0000022075,0.0000022038, -0.0000022043,0.0000022079,0.0000022120,0.0000022138,0.0000022128, -0.0000022098,0.0000022055,0.0000022042,0.0000022090,0.0000022237, -0.0000022414,0.0000022560,0.0000022634,0.0000022626,0.0000022558, -0.0000022469,0.0000022425,0.0000022436,0.0000022489,0.0000022557, -0.0000022637,0.0000022732,0.0000022821,0.0000022884,0.0000022915, -0.0000022929,0.0000022951,0.0000022964,0.0000022977,0.0000022998, -0.0000023017,0.0000023027,0.0000023031,0.0000023030,0.0000023028, -0.0000023026,0.0000023020,0.0000023009,0.0000022994,0.0000022977, -0.0000022961,0.0000022977,0.0000023019,0.0000023063,0.0000023091, -0.0000023094,0.0000023080,0.0000023046,0.0000022997,0.0000022945, -0.0000022904,0.0000022881,0.0000022877,0.0000022888,0.0000022900, -0.0000022902,0.0000022904,0.0000022921,0.0000022942,0.0000022940, -0.0000022909,0.0000022850,0.0000022774,0.0000022693,0.0000022615, -0.0000022553,0.0000022513,0.0000022504,0.0000022534,0.0000022579, -0.0000022629,0.0000022670,0.0000022694,0.0000022704,0.0000022698, -0.0000022675,0.0000022650,0.0000022630,0.0000022610,0.0000022592, -0.0000022572,0.0000022543,0.0000022508,0.0000022473,0.0000022441, -0.0000022420,0.0000022411,0.0000022411,0.0000022415,0.0000022429, -0.0000022447,0.0000022478,0.0000022516,0.0000022549,0.0000022565, -0.0000022563,0.0000022547,0.0000022526,0.0000022512,0.0000022511, -0.0000022519,0.0000022529,0.0000022527,0.0000022515,0.0000022505, -0.0000022504,0.0000022531,0.0000022574,0.0000022606,0.0000022622, -0.0000022623,0.0000022608,0.0000022579,0.0000022535,0.0000022488, -0.0000022436,0.0000022357,0.0000022258,0.0000022175,0.0000022117, -0.0000022053,0.0000021999,0.0000021997,0.0000022016,0.0000022023, -0.0000022018,0.0000022015,0.0000022015,0.0000022033,0.0000022087, -0.0000022172,0.0000022253,0.0000022309,0.0000022333,0.0000022328, -0.0000022307,0.0000022272,0.0000022230,0.0000022195,0.0000022177, -0.0000022167,0.0000022158,0.0000022143,0.0000022110,0.0000022057, -0.0000021967,0.0000021846,0.0000021713,0.0000021604,0.0000021541, -0.0000021521,0.0000021523,0.0000021532,0.0000021548,0.0000021574, -0.0000021600,0.0000021603,0.0000021581,0.0000021551,0.0000021519, -0.0000021479,0.0000021455,0.0000021466,0.0000021506,0.0000021540, -0.0000021559,0.0000021561,0.0000021542,0.0000021512,0.0000021490, -0.0000021493,0.0000021512,0.0000021541,0.0000021581,0.0000021608, -0.0000021611,0.0000021599,0.0000021583,0.0000021600,0.0000021653, -0.0000021707,0.0000021736,0.0000021741,0.0000021736,0.0000021731, -0.0000021741,0.0000021765,0.0000021803,0.0000021865,0.0000021940, -0.0000022017,0.0000022090,0.0000022156,0.0000022220,0.0000022276, -0.0000022305,0.0000022298,0.0000022260,0.0000022225,0.0000022205, -0.0000022173,0.0000022168,0.0000022304,0.0000022627,0.0000022967, -0.0000023172,0.0000023239,0.0000023262,0.0000023261,0.0000023217, -0.0000023173,0.0000023136,0.0000023094,0.0000023076,0.0000023091, -0.0000023119,0.0000023143,0.0000023163,0.0000023177,0.0000023176, -0.0000023152,0.0000023110,0.0000023062,0.0000023019,0.0000022979, -0.0000022934,0.0000022876,0.0000022806,0.0000022727,0.0000022641, -0.0000022560,0.0000022489,0.0000022431,0.0000022397,0.0000022383, -0.0000022374,0.0000022370,0.0000022382,0.0000022393,0.0000022406, -0.0000022418,0.0000022434,0.0000022456,0.0000022487,0.0000022525, -0.0000022569,0.0000022616,0.0000022662,0.0000022704,0.0000022493, -0.0000022561,0.0000022613,0.0000022651,0.0000022683,0.0000022718, -0.0000022762,0.0000022811,0.0000022864,0.0000022920,0.0000022979, -0.0000023039,0.0000023095,0.0000023149,0.0000023201,0.0000023244, -0.0000023275,0.0000023296,0.0000023309,0.0000023311,0.0000023302, -0.0000023285,0.0000023263,0.0000023233,0.0000023200,0.0000023171, -0.0000023143,0.0000023131,0.0000023134,0.0000023127,0.0000023063, -0.0000022969,0.0000022932,0.0000022984,0.0000023088,0.0000023194, -0.0000023298,0.0000023417,0.0000023520,0.0000023548,0.0000023505, -0.0000023453,0.0000023431,0.0000023444,0.0000023489,0.0000023546, -0.0000023582,0.0000023580,0.0000023551,0.0000023503,0.0000023443, -0.0000023402,0.0000023382,0.0000023359,0.0000023338,0.0000023333, -0.0000023339,0.0000023347,0.0000023351,0.0000023341,0.0000023314, -0.0000023283,0.0000023254,0.0000023210,0.0000023155,0.0000023109, -0.0000023086,0.0000023084,0.0000023087,0.0000023077,0.0000023043, -0.0000022997,0.0000022962,0.0000022964,0.0000023009,0.0000023082, -0.0000023169,0.0000023259,0.0000023341,0.0000023411,0.0000023470, -0.0000023515,0.0000023552,0.0000023588,0.0000023615,0.0000023627, -0.0000023625,0.0000023621,0.0000023631,0.0000023662,0.0000023693, -0.0000023717,0.0000023741,0.0000023768,0.0000023784,0.0000023773, -0.0000023715,0.0000023650,0.0000023592,0.0000023520,0.0000023460, -0.0000023445,0.0000023461,0.0000023474,0.0000023476,0.0000023468, -0.0000023442,0.0000023414,0.0000023405,0.0000023422,0.0000023491, -0.0000023589,0.0000023669,0.0000023721,0.0000023762,0.0000023792, -0.0000023815,0.0000023838,0.0000023856,0.0000023868,0.0000023877, -0.0000023887,0.0000023896,0.0000023890,0.0000023867,0.0000023830, -0.0000023788,0.0000023755,0.0000023731,0.0000023707,0.0000023697, -0.0000023711,0.0000023746,0.0000023795,0.0000023840,0.0000023876, -0.0000023905,0.0000023922,0.0000023957,0.0000024041,0.0000024135, -0.0000024190,0.0000024193,0.0000024211,0.0000024397,0.0000024634, -0.0000024786,0.0000024901,0.0000025040,0.0000025203,0.0000025319, -0.0000025346,0.0000025323,0.0000025254,0.0000025176,0.0000025139, -0.0000025138,0.0000025152,0.0000025156,0.0000025156,0.0000025140, -0.0000025085,0.0000025001,0.0000024905,0.0000024807,0.0000024708, -0.0000024620,0.0000024557,0.0000024511,0.0000024446,0.0000024326, -0.0000024115,0.0000023803,0.0000023516,0.0000023378,0.0000023360, -0.0000023363,0.0000023362,0.0000023352,0.0000023331,0.0000023316, -0.0000023311,0.0000023307,0.0000023298,0.0000023278,0.0000023232, -0.0000023162,0.0000023088,0.0000023037,0.0000023000,0.0000022982, -0.0000022977,0.0000023009,0.0000023093,0.0000023211,0.0000023319, -0.0000023386,0.0000023421,0.0000023441,0.0000023457,0.0000023471, -0.0000023487,0.0000023505,0.0000023530,0.0000023588,0.0000023700, -0.0000023849,0.0000023982,0.0000024067,0.0000024113,0.0000024147, -0.0000024179,0.0000024197,0.0000024193,0.0000024170,0.0000024135, -0.0000024103,0.0000024084,0.0000024087,0.0000024117,0.0000024187, -0.0000024276,0.0000024354,0.0000024415,0.0000024472,0.0000024536, -0.0000024609,0.0000024692,0.0000024778,0.0000024855,0.0000024907, -0.0000024927,0.0000024926,0.0000024919,0.0000024912,0.0000024902, -0.0000024885,0.0000024871,0.0000024872,0.0000024900,0.0000024958, -0.0000025021,0.0000025053,0.0000025049,0.0000025026,0.0000025002, -0.0000024979,0.0000024948,0.0000024900,0.0000024843,0.0000024799, -0.0000024770,0.0000024739,0.0000024695,0.0000024654,0.0000024622, -0.0000024577,0.0000024535,0.0000024526,0.0000024548,0.0000024576, -0.0000024589,0.0000024585,0.0000024556,0.0000024461,0.0000024285, -0.0000024108,0.0000024032,0.0000024069,0.0000024175,0.0000024308, -0.0000024412,0.0000024449,0.0000024423,0.0000024329,0.0000024199, -0.0000024071,0.0000023973,0.0000023910,0.0000023878,0.0000023878, -0.0000023906,0.0000023933,0.0000023921,0.0000023876,0.0000023808, -0.0000023741,0.0000023694,0.0000023666,0.0000023650,0.0000023647, -0.0000023661,0.0000023700,0.0000023775,0.0000023882,0.0000023993, -0.0000024084,0.0000024140,0.0000024157,0.0000024149,0.0000024131, -0.0000024123,0.0000024115,0.0000024125,0.0000024198,0.0000024335, -0.0000024496,0.0000024638,0.0000024750,0.0000024855,0.0000024969, -0.0000025075,0.0000025141,0.0000025153,0.0000025122,0.0000025072, -0.0000025028,0.0000024991,0.0000024959,0.0000024902,0.0000024787, -0.0000024630,0.0000024486,0.0000024379,0.0000024282,0.0000024143, -0.0000023951,0.0000023794,0.0000023784,0.0000023866,0.0000023910, -0.0000023893,0.0000023865,0.0000023866,0.0000023872,0.0000023861, -0.0000023858,0.0000023875,0.0000023919,0.0000023982,0.0000024016, -0.0000024007,0.0000023952,0.0000023874,0.0000023779,0.0000023678, -0.0000023601,0.0000023563,0.0000023551,0.0000023535,0.0000023520, -0.0000023530,0.0000023535,0.0000023538,0.0000023549,0.0000023566, -0.0000023583,0.0000023594,0.0000023598,0.0000023592,0.0000023574, -0.0000023539,0.0000023481,0.0000023402,0.0000023279,0.0000023207, -0.0000023255,0.0000023450,0.0000023691,0.0000023873,0.0000023932, -0.0000023934,0.0000023994,0.0000024158,0.0000024384,0.0000024525, -0.0000024572,0.0000024568,0.0000024550,0.0000024560,0.0000024572, -0.0000024579,0.0000024588,0.0000024598,0.0000024597,0.0000024582, -0.0000024551,0.0000024486,0.0000024394,0.0000024306,0.0000024251, -0.0000024230,0.0000024208,0.0000024161,0.0000024108,0.0000024066, -0.0000024069,0.0000024108,0.0000024143,0.0000024188,0.0000024219, -0.0000024235,0.0000024231,0.0000024214,0.0000024214,0.0000024237, -0.0000024277,0.0000024315,0.0000024322,0.0000024297,0.0000024236, -0.0000024157,0.0000024094,0.0000024051,0.0000024013,0.0000023959, -0.0000023870,0.0000023766,0.0000023669,0.0000023581,0.0000023518, -0.0000023479,0.0000023479,0.0000023493,0.0000023510,0.0000023516, -0.0000023518,0.0000023512,0.0000023507,0.0000023496,0.0000023460, -0.0000023388,0.0000023298,0.0000023217,0.0000023167,0.0000023139, -0.0000023121,0.0000023097,0.0000023069,0.0000023044,0.0000023022, -0.0000023009,0.0000022997,0.0000022971,0.0000022948,0.0000022945, -0.0000022955,0.0000022958,0.0000022913,0.0000022783,0.0000022586, -0.0000022427,0.0000022351,0.0000022314,0.0000022274,0.0000022231, -0.0000022197,0.0000022187,0.0000022198,0.0000022214,0.0000022229, -0.0000022258,0.0000022297,0.0000022340,0.0000022374,0.0000022392, -0.0000022427,0.0000022517,0.0000022661,0.0000022806,0.0000022911, -0.0000022975,0.0000022978,0.0000022928,0.0000022859,0.0000022768, -0.0000022619,0.0000022481,0.0000022427,0.0000022432,0.0000022449, -0.0000022453,0.0000022472,0.0000022581,0.0000022809,0.0000023003, -0.0000023076,0.0000023061,0.0000023004,0.0000022950,0.0000022909, -0.0000022858,0.0000022789,0.0000022732,0.0000022716,0.0000022707, -0.0000022683,0.0000022661,0.0000022654,0.0000022659,0.0000022670, -0.0000022675,0.0000022656,0.0000022590,0.0000022486,0.0000022413, -0.0000022399,0.0000022432,0.0000022478,0.0000022515,0.0000022537, -0.0000022549,0.0000022536,0.0000022488,0.0000022420,0.0000022389, -0.0000022420,0.0000022496,0.0000022583,0.0000022677,0.0000022785, -0.0000022896,0.0000022982,0.0000023026,0.0000023021,0.0000022990, -0.0000022943,0.0000022879,0.0000022836,0.0000022860,0.0000023007, -0.0000023253,0.0000023447,0.0000023484,0.0000023462,0.0000023483, -0.0000023517,0.0000023585,0.0000023729,0.0000023828,0.0000023877, -0.0000023922,0.0000023955,0.0000023981,0.0000024019,0.0000024122, -0.0000024214,0.0000024225,0.0000024285,0.0000024472,0.0000024777, -0.0000025050,0.0000025147,0.0000025173,0.0000025222,0.0000025265, -0.0000025264,0.0000025127,0.0000024741,0.0000024356,0.0000024252, -0.0000024335,0.0000024417,0.0000024432,0.0000024391,0.0000024270, -0.0000024080,0.0000023893,0.0000023776,0.0000023704,0.0000023702, -0.0000023805,0.0000023934,0.0000024065,0.0000024239,0.0000024657, -0.0000024967,0.0000024893,0.0000025017,0.0000025767,0.0000026218, -0.0000026192,0.0000025499,0.0000024863,0.0000024715,0.0000024710, -0.0000024614,0.0000024261,0.0000023990,0.0000023978,0.0000024060, -0.0000024185,0.0000024344,0.0000024448,0.0000024450,0.0000024403, -0.0000024341,0.0000024320,0.0000024352,0.0000024407,0.0000024464, -0.0000024505,0.0000024515,0.0000024500,0.0000024474,0.0000024432, -0.0000024379,0.0000024333,0.0000024326,0.0000024338,0.0000024369, -0.0000024404,0.0000024419,0.0000024413,0.0000024379,0.0000024306, -0.0000024215,0.0000024120,0.0000024042,0.0000023981,0.0000023929, -0.0000023886,0.0000023841,0.0000023816,0.0000023806,0.0000023776, -0.0000023707,0.0000023626,0.0000023563,0.0000023528,0.0000023518, -0.0000023521,0.0000023529,0.0000023535,0.0000023539,0.0000023546, -0.0000023558,0.0000023552,0.0000023511,0.0000023452,0.0000023411, -0.0000023417,0.0000023453,0.0000023490,0.0000023503,0.0000023491, -0.0000023482,0.0000023522,0.0000023631,0.0000023764,0.0000023869, -0.0000023952,0.0000024051,0.0000024170,0.0000024280,0.0000024374, -0.0000024462,0.0000024545,0.0000024614,0.0000024658,0.0000024682, -0.0000024689,0.0000024683,0.0000024669,0.0000024658,0.0000024654, -0.0000024664,0.0000024689,0.0000024726,0.0000024771,0.0000024820, -0.0000024873,0.0000024926,0.0000024971,0.0000024997,0.0000025002, -0.0000024989,0.0000024962,0.0000024925,0.0000024884,0.0000024842, -0.0000024803,0.0000024763,0.0000024716,0.0000024655,0.0000024578, -0.0000024480,0.0000024351,0.0000024183,0.0000023981,0.0000023764, -0.0000023567,0.0000023412,0.0000023317,0.0000023290,0.0000023277, -0.0000023301,0.0000023329,0.0000023358,0.0000023391,0.0000023421, -0.0000023442,0.0000023454,0.0000023468,0.0000023489,0.0000023514, -0.0000023531,0.0000023535,0.0000023520,0.0000023483,0.0000023424, -0.0000023349,0.0000023262,0.0000023158,0.0000023032,0.0000022917, -0.0000022830,0.0000022700,0.0000022508,0.0000022390,0.0000022414, -0.0000022499,0.0000022554,0.0000022585,0.0000022645,0.0000022751, -0.0000022858,0.0000022922,0.0000022934,0.0000022902,0.0000022824, -0.0000022721,0.0000022614,0.0000022504,0.0000022396,0.0000022316, -0.0000022275,0.0000022246,0.0000022195,0.0000022123,0.0000022069, -0.0000022037,0.0000022005,0.0000021992,0.0000022036,0.0000022112, -0.0000022159,0.0000022198,0.0000022292,0.0000022348,0.0000022282, -0.0000022188,0.0000022237,0.0000022348,0.0000022403,0.0000022466, -0.0000022574,0.0000022682,0.0000022773,0.0000022897,0.0000023076, -0.0000023269,0.0000023441,0.0000023544,0.0000023560,0.0000023548, -0.0000023545,0.0000023536,0.0000023495,0.0000023452,0.0000023456, -0.0000023516,0.0000023591,0.0000023622,0.0000023611,0.0000023579, -0.0000023578,0.0000023631,0.0000023741,0.0000023863,0.0000023935, -0.0000023976,0.0000024045,0.0000024133,0.0000024229,0.0000024345, -0.0000024445,0.0000024517,0.0000024600,0.0000024688,0.0000024723, -0.0000024699,0.0000024605,0.0000024516,0.0000024492,0.0000024503, -0.0000024538,0.0000024576,0.0000024609,0.0000024636,0.0000024642, -0.0000024620,0.0000024581,0.0000024532,0.0000024468,0.0000024383, -0.0000024275,0.0000024163,0.0000024075,0.0000024019,0.0000023989, -0.0000023977,0.0000023977,0.0000023985,0.0000024003,0.0000024026, -0.0000024047,0.0000024077,0.0000024122,0.0000024166,0.0000024191, -0.0000024196,0.0000024188,0.0000024175,0.0000024157,0.0000024129, -0.0000024096,0.0000024050,0.0000024030,0.0000024038,0.0000024073, -0.0000024123,0.0000024170,0.0000024210,0.0000024246,0.0000024274, -0.0000024280,0.0000024262,0.0000024232,0.0000024224,0.0000024260, -0.0000024327,0.0000024400,0.0000024473,0.0000024555,0.0000024659, -0.0000024790,0.0000024918,0.0000024997,0.0000025018,0.0000025019, -0.0000025032,0.0000025053,0.0000025067,0.0000025071,0.0000025075, -0.0000025084,0.0000025086,0.0000025067,0.0000025027,0.0000025010, -0.0000025030,0.0000025077,0.0000025148,0.0000025234,0.0000025301, -0.0000025356,0.0000025430,0.0000025517,0.0000025595,0.0000025665, -0.0000025741,0.0000025824,0.0000025881,0.0000025911,0.0000025928, -0.0000025935,0.0000025925,0.0000025902,0.0000025879,0.0000025865, -0.0000025863,0.0000025873,0.0000025888,0.0000025899,0.0000025896, -0.0000025880,0.0000025868,0.0000025880,0.0000025911,0.0000025930, -0.0000025922,0.0000025893,0.0000025856,0.0000025828,0.0000025819, -0.0000025817,0.0000025797,0.0000025745,0.0000025689,0.0000025658, -0.0000025645,0.0000025625,0.0000025597,0.0000025574,0.0000025567, -0.0000025542,0.0000025417,0.0000025186,0.0000024963,0.0000024755, -0.0000024489,0.0000024262,0.0000024142,0.0000024074,0.0000024078, -0.0000024131,0.0000024210,0.0000024259,0.0000024261,0.0000024240, -0.0000024216,0.0000024213,0.0000024276,0.0000024435,0.0000024627, -0.0000024837,0.0000025175,0.0000025610,0.0000025895,0.0000025978, -0.0000026048,0.0000026132,0.0000026179,0.0000026203,0.0000026236, -0.0000026271,0.0000026290,0.0000026295,0.0000026308,0.0000026353, -0.0000026422,0.0000026482,0.0000026512,0.0000026523,0.0000026525, -0.0000026509,0.0000026483,0.0000026463,0.0000026436,0.0000026383, -0.0000026325,0.0000026284,0.0000026226,0.0000026133,0.0000026059, -0.0000026042,0.0000026036,0.0000026002,0.0000025975,0.0000025997, -0.0000026053,0.0000026093,0.0000026107,0.0000026116,0.0000026119, -0.0000026092,0.0000025979,0.0000025818,0.0000025637,0.0000025351, -0.0000025047,0.0000024904,0.0000024850,0.0000024685,0.0000024372, -0.0000024119,0.0000024031,0.0000023985,0.0000023815,0.0000023465, -0.0000023085,0.0000022825,0.0000022657,0.0000022505,0.0000022341, -0.0000022191,0.0000022075,0.0000021988,0.0000021927,0.0000021889, -0.0000021857,0.0000021827,0.0000021805,0.0000021790,0.0000021787, -0.0000021798,0.0000021814,0.0000021826,0.0000021844,0.0000021885, -0.0000021956,0.0000022029,0.0000022065,0.0000022053,0.0000022027, -0.0000022022,0.0000022044,0.0000022083,0.0000022116,0.0000022130, -0.0000022127,0.0000022114,0.0000022082,0.0000022065,0.0000022103, -0.0000022211,0.0000022349,0.0000022492,0.0000022584,0.0000022585, -0.0000022521,0.0000022454,0.0000022441,0.0000022476,0.0000022534, -0.0000022589,0.0000022654,0.0000022733,0.0000022818,0.0000022894, -0.0000022930,0.0000022960,0.0000022974,0.0000022979,0.0000022989, -0.0000023003,0.0000023012,0.0000023016,0.0000023014,0.0000023012, -0.0000023010,0.0000022998,0.0000022974,0.0000022945,0.0000022912, -0.0000022872,0.0000022865,0.0000022874,0.0000022874,0.0000022865, -0.0000022846,0.0000022820,0.0000022790,0.0000022764,0.0000022744, -0.0000022736,0.0000022738,0.0000022754,0.0000022774,0.0000022791, -0.0000022813,0.0000022830,0.0000022847,0.0000022852,0.0000022833, -0.0000022787,0.0000022720,0.0000022643,0.0000022564,0.0000022489, -0.0000022429,0.0000022387,0.0000022373,0.0000022396,0.0000022455, -0.0000022534,0.0000022612,0.0000022666,0.0000022697,0.0000022706, -0.0000022695,0.0000022673,0.0000022651,0.0000022622,0.0000022587, -0.0000022549,0.0000022512,0.0000022480,0.0000022452,0.0000022430, -0.0000022415,0.0000022410,0.0000022411,0.0000022418,0.0000022429, -0.0000022440,0.0000022455,0.0000022487,0.0000022537,0.0000022586, -0.0000022613,0.0000022614,0.0000022590,0.0000022555,0.0000022533, -0.0000022530,0.0000022535,0.0000022531,0.0000022519,0.0000022510, -0.0000022504,0.0000022512,0.0000022546,0.0000022585,0.0000022611, -0.0000022628,0.0000022627,0.0000022609,0.0000022577,0.0000022531, -0.0000022477,0.0000022404,0.0000022305,0.0000022211,0.0000022141, -0.0000022073,0.0000022007,0.0000021993,0.0000022006,0.0000022010, -0.0000022009,0.0000022014,0.0000022034,0.0000022080,0.0000022154, -0.0000022240,0.0000022312,0.0000022351,0.0000022362,0.0000022341, -0.0000022308,0.0000022261,0.0000022207,0.0000022159,0.0000022133, -0.0000022125,0.0000022122,0.0000022120,0.0000022114,0.0000022094, -0.0000022049,0.0000021978,0.0000021880,0.0000021766,0.0000021665, -0.0000021607,0.0000021588,0.0000021585,0.0000021590,0.0000021607, -0.0000021640,0.0000021675,0.0000021686,0.0000021667,0.0000021627, -0.0000021576,0.0000021516,0.0000021470,0.0000021463,0.0000021496, -0.0000021544,0.0000021581,0.0000021591,0.0000021581,0.0000021566, -0.0000021550,0.0000021540,0.0000021533,0.0000021526,0.0000021536, -0.0000021567,0.0000021583,0.0000021569,0.0000021535,0.0000021531, -0.0000021576,0.0000021625,0.0000021643,0.0000021643,0.0000021633, -0.0000021631,0.0000021655,0.0000021702,0.0000021747,0.0000021802, -0.0000021879,0.0000021963,0.0000022038,0.0000022104,0.0000022166, -0.0000022228,0.0000022277,0.0000022293,0.0000022274,0.0000022232, -0.0000022211,0.0000022210,0.0000022207,0.0000022237,0.0000022446, -0.0000022793,0.0000023084,0.0000023219,0.0000023257,0.0000023267, -0.0000023247,0.0000023202,0.0000023172,0.0000023146,0.0000023110, -0.0000023093,0.0000023100,0.0000023117,0.0000023131,0.0000023143, -0.0000023148,0.0000023141,0.0000023111,0.0000023072,0.0000023044, -0.0000023026,0.0000023005,0.0000022971,0.0000022929,0.0000022879, -0.0000022817,0.0000022750,0.0000022669,0.0000022581,0.0000022497, -0.0000022433,0.0000022391,0.0000022372,0.0000022365,0.0000022359, -0.0000022349,0.0000022326,0.0000022287,0.0000022249,0.0000022222, -0.0000022213,0.0000022230,0.0000022272,0.0000022337,0.0000022414, -0.0000022177,0.0000022273,0.0000022364,0.0000022442,0.0000022505, -0.0000022559,0.0000022607,0.0000022652,0.0000022695,0.0000022739, -0.0000022784,0.0000022836,0.0000022904,0.0000022995,0.0000023099, -0.0000023193,0.0000023258,0.0000023296,0.0000023311,0.0000023309, -0.0000023295,0.0000023274,0.0000023252,0.0000023229,0.0000023209, -0.0000023192,0.0000023185,0.0000023190,0.0000023186,0.0000023135, -0.0000023030,0.0000022961,0.0000022973,0.0000023058,0.0000023150, -0.0000023230,0.0000023334,0.0000023448,0.0000023504,0.0000023472, -0.0000023413,0.0000023394,0.0000023411,0.0000023435,0.0000023473, -0.0000023506,0.0000023523,0.0000023531,0.0000023523,0.0000023478, -0.0000023420,0.0000023382,0.0000023358,0.0000023328,0.0000023307, -0.0000023302,0.0000023303,0.0000023302,0.0000023297,0.0000023283, -0.0000023258,0.0000023230,0.0000023201,0.0000023166,0.0000023122, -0.0000023084,0.0000023062,0.0000023059,0.0000023063,0.0000023062, -0.0000023037,0.0000022991,0.0000022941,0.0000022917,0.0000022924, -0.0000022956,0.0000023002,0.0000023056,0.0000023115,0.0000023176, -0.0000023239,0.0000023299,0.0000023357,0.0000023420,0.0000023490, -0.0000023551,0.0000023588,0.0000023596,0.0000023587,0.0000023585, -0.0000023600,0.0000023636,0.0000023691,0.0000023737,0.0000023769, -0.0000023781,0.0000023770,0.0000023725,0.0000023664,0.0000023587, -0.0000023508,0.0000023453,0.0000023429,0.0000023418,0.0000023419, -0.0000023430,0.0000023432,0.0000023412,0.0000023389,0.0000023381, -0.0000023406,0.0000023481,0.0000023575,0.0000023659,0.0000023723, -0.0000023764,0.0000023791,0.0000023817,0.0000023838,0.0000023848, -0.0000023855,0.0000023870,0.0000023890,0.0000023895,0.0000023882, -0.0000023855,0.0000023817,0.0000023776,0.0000023742,0.0000023718, -0.0000023705,0.0000023707,0.0000023726,0.0000023765,0.0000023817, -0.0000023856,0.0000023877,0.0000023891,0.0000023897,0.0000023923, -0.0000024005,0.0000024109,0.0000024179,0.0000024189,0.0000024185, -0.0000024307,0.0000024547,0.0000024732,0.0000024871,0.0000025015, -0.0000025164,0.0000025283,0.0000025331,0.0000025317,0.0000025257, -0.0000025179,0.0000025133,0.0000025128,0.0000025136,0.0000025134, -0.0000025128,0.0000025102,0.0000025040,0.0000024957,0.0000024863, -0.0000024760,0.0000024660,0.0000024578,0.0000024529,0.0000024507, -0.0000024456,0.0000024343,0.0000024150,0.0000023862,0.0000023568, -0.0000023399,0.0000023362,0.0000023368,0.0000023370,0.0000023358, -0.0000023330,0.0000023310,0.0000023305,0.0000023307,0.0000023302, -0.0000023287,0.0000023246,0.0000023177,0.0000023104,0.0000023052, -0.0000023015,0.0000022988,0.0000022966,0.0000022960,0.0000023005, -0.0000023115,0.0000023250,0.0000023355,0.0000023412,0.0000023433, -0.0000023441,0.0000023448,0.0000023464,0.0000023487,0.0000023517, -0.0000023553,0.0000023608,0.0000023702,0.0000023830,0.0000023951, -0.0000024030,0.0000024069,0.0000024092,0.0000024117,0.0000024135, -0.0000024129,0.0000024104,0.0000024078,0.0000024061,0.0000024055, -0.0000024067,0.0000024122,0.0000024218,0.0000024321,0.0000024400, -0.0000024454,0.0000024500,0.0000024557,0.0000024631,0.0000024716, -0.0000024802,0.0000024867,0.0000024896,0.0000024896,0.0000024878, -0.0000024857,0.0000024840,0.0000024831,0.0000024830,0.0000024845, -0.0000024880,0.0000024938,0.0000025001,0.0000025038,0.0000025043, -0.0000025027,0.0000025001,0.0000024973,0.0000024945,0.0000024904, -0.0000024848,0.0000024793,0.0000024753,0.0000024720,0.0000024677, -0.0000024635,0.0000024611,0.0000024579,0.0000024536,0.0000024513, -0.0000024524,0.0000024553,0.0000024579,0.0000024585,0.0000024567, -0.0000024502,0.0000024377,0.0000024234,0.0000024143,0.0000024140, -0.0000024198,0.0000024297,0.0000024404,0.0000024482,0.0000024506, -0.0000024474,0.0000024375,0.0000024245,0.0000024118,0.0000024010, -0.0000023922,0.0000023865,0.0000023835,0.0000023837,0.0000023857, -0.0000023871,0.0000023849,0.0000023794,0.0000023731,0.0000023686, -0.0000023660,0.0000023652,0.0000023655,0.0000023660,0.0000023678, -0.0000023736,0.0000023839,0.0000023956,0.0000024044,0.0000024076, -0.0000024078,0.0000024083,0.0000024100,0.0000024105,0.0000024098, -0.0000024121,0.0000024209,0.0000024349,0.0000024497,0.0000024610, -0.0000024688,0.0000024756,0.0000024830,0.0000024893,0.0000024914, -0.0000024909,0.0000024904,0.0000024906,0.0000024901,0.0000024868, -0.0000024787,0.0000024678,0.0000024580,0.0000024504,0.0000024419, -0.0000024283,0.0000024071,0.0000023868,0.0000023819,0.0000023902, -0.0000023972,0.0000023961,0.0000023939,0.0000023930,0.0000023913, -0.0000023879,0.0000023842,0.0000023823,0.0000023831,0.0000023867, -0.0000023925,0.0000023973,0.0000023976,0.0000023920,0.0000023826, -0.0000023718,0.0000023611,0.0000023539,0.0000023508,0.0000023498, -0.0000023478,0.0000023450,0.0000023434,0.0000023409,0.0000023389, -0.0000023379,0.0000023381,0.0000023390,0.0000023406,0.0000023420, -0.0000023430,0.0000023437,0.0000023441,0.0000023443,0.0000023435, -0.0000023399,0.0000023325,0.0000023221,0.0000023148,0.0000023242, -0.0000023507,0.0000023776,0.0000023936,0.0000023978,0.0000023989, -0.0000024042,0.0000024161,0.0000024291,0.0000024362,0.0000024379, -0.0000024384,0.0000024395,0.0000024393,0.0000024388,0.0000024396, -0.0000024410,0.0000024439,0.0000024466,0.0000024488,0.0000024478, -0.0000024429,0.0000024369,0.0000024306,0.0000024281,0.0000024268, -0.0000024237,0.0000024179,0.0000024105,0.0000024074,0.0000024081, -0.0000024108,0.0000024156,0.0000024203,0.0000024250,0.0000024280, -0.0000024295,0.0000024297,0.0000024298,0.0000024293,0.0000024282, -0.0000024247,0.0000024197,0.0000024134,0.0000024077,0.0000024032, -0.0000023980,0.0000023923,0.0000023862,0.0000023767,0.0000023651, -0.0000023553,0.0000023498,0.0000023488,0.0000023499,0.0000023508, -0.0000023501,0.0000023496,0.0000023498,0.0000023494,0.0000023476, -0.0000023437,0.0000023378,0.0000023317,0.0000023268,0.0000023223, -0.0000023185,0.0000023150,0.0000023112,0.0000023069,0.0000023031, -0.0000023013,0.0000023008,0.0000023008,0.0000023005,0.0000022996, -0.0000022991,0.0000022997,0.0000023002,0.0000022963,0.0000022847, -0.0000022636,0.0000022447,0.0000022363,0.0000022346,0.0000022327, -0.0000022292,0.0000022246,0.0000022209,0.0000022188,0.0000022192, -0.0000022209,0.0000022222,0.0000022237,0.0000022260,0.0000022303, -0.0000022346,0.0000022365,0.0000022392,0.0000022478,0.0000022639, -0.0000022794,0.0000022900,0.0000022954,0.0000022956,0.0000022912, -0.0000022860,0.0000022780,0.0000022622,0.0000022465,0.0000022420, -0.0000022429,0.0000022438,0.0000022438,0.0000022460,0.0000022608, -0.0000022854,0.0000023038,0.0000023093,0.0000023071,0.0000023014, -0.0000022967,0.0000022911,0.0000022830,0.0000022752,0.0000022700, -0.0000022684,0.0000022681,0.0000022668,0.0000022651,0.0000022646, -0.0000022650,0.0000022655,0.0000022645,0.0000022602,0.0000022519, -0.0000022419,0.0000022362,0.0000022373,0.0000022411,0.0000022461, -0.0000022505,0.0000022525,0.0000022526,0.0000022508,0.0000022461, -0.0000022396,0.0000022377,0.0000022418,0.0000022519,0.0000022622, -0.0000022733,0.0000022865,0.0000022985,0.0000023053,0.0000023074, -0.0000023054,0.0000023010,0.0000022950,0.0000022879,0.0000022803, -0.0000022798,0.0000022886,0.0000023108,0.0000023334,0.0000023421, -0.0000023404,0.0000023419,0.0000023474,0.0000023525,0.0000023656, -0.0000023803,0.0000023861,0.0000023897,0.0000023941,0.0000023988, -0.0000024034,0.0000024090,0.0000024175,0.0000024193,0.0000024172, -0.0000024260,0.0000024463,0.0000024740,0.0000025007,0.0000025123, -0.0000025153,0.0000025190,0.0000025227,0.0000025205,0.0000024955, -0.0000024530,0.0000024281,0.0000024288,0.0000024399,0.0000024445, -0.0000024437,0.0000024387,0.0000024270,0.0000024088,0.0000023903, -0.0000023781,0.0000023697,0.0000023671,0.0000023761,0.0000023875, -0.0000024023,0.0000024150,0.0000024503,0.0000024894,0.0000024955, -0.0000024856,0.0000025430,0.0000026090,0.0000026247,0.0000025872, -0.0000025095,0.0000024740,0.0000024688,0.0000024670,0.0000024484, -0.0000024141,0.0000023984,0.0000024019,0.0000024100,0.0000024218, -0.0000024344,0.0000024412,0.0000024425,0.0000024409,0.0000024376, -0.0000024358,0.0000024373,0.0000024413,0.0000024467,0.0000024509, -0.0000024517,0.0000024507,0.0000024475,0.0000024428,0.0000024377, -0.0000024337,0.0000024318,0.0000024327,0.0000024352,0.0000024380, -0.0000024406,0.0000024416,0.0000024400,0.0000024354,0.0000024278, -0.0000024189,0.0000024107,0.0000024041,0.0000023975,0.0000023908, -0.0000023866,0.0000023854,0.0000023840,0.0000023795,0.0000023718, -0.0000023643,0.0000023601,0.0000023581,0.0000023563,0.0000023550, -0.0000023542,0.0000023534,0.0000023531,0.0000023541,0.0000023548, -0.0000023525,0.0000023461,0.0000023400,0.0000023372,0.0000023375, -0.0000023398,0.0000023421,0.0000023427,0.0000023421,0.0000023425, -0.0000023470,0.0000023563,0.0000023681,0.0000023788,0.0000023879, -0.0000023978,0.0000024094,0.0000024218,0.0000024333,0.0000024434, -0.0000024519,0.0000024581,0.0000024617,0.0000024633,0.0000024629, -0.0000024613,0.0000024601,0.0000024598,0.0000024605,0.0000024622, -0.0000024647,0.0000024676,0.0000024705,0.0000024740,0.0000024781, -0.0000024822,0.0000024855,0.0000024870,0.0000024869,0.0000024850, -0.0000024821,0.0000024787,0.0000024748,0.0000024707,0.0000024660, -0.0000024599,0.0000024517,0.0000024404,0.0000024258,0.0000024084, -0.0000023894,0.0000023707,0.0000023544,0.0000023427,0.0000023349, -0.0000023315,0.0000023325,0.0000023345,0.0000023371,0.0000023390, -0.0000023404,0.0000023415,0.0000023432,0.0000023457,0.0000023489, -0.0000023526,0.0000023564,0.0000023599,0.0000023628,0.0000023645, -0.0000023644,0.0000023624,0.0000023577,0.0000023506,0.0000023411, -0.0000023295,0.0000023156,0.0000023003,0.0000022872,0.0000022787, -0.0000022673,0.0000022498,0.0000022388,0.0000022409,0.0000022486, -0.0000022533,0.0000022552,0.0000022583,0.0000022649,0.0000022723, -0.0000022760,0.0000022749,0.0000022700,0.0000022638,0.0000022571, -0.0000022493,0.0000022404,0.0000022327,0.0000022285,0.0000022256, -0.0000022206,0.0000022130,0.0000022063,0.0000022024,0.0000021992, -0.0000021980,0.0000022000,0.0000022060,0.0000022128,0.0000022164, -0.0000022219,0.0000022325,0.0000022346,0.0000022232,0.0000022187, -0.0000022300,0.0000022399,0.0000022426,0.0000022480,0.0000022592, -0.0000022714,0.0000022823,0.0000022962,0.0000023145,0.0000023341, -0.0000023505,0.0000023572,0.0000023563,0.0000023538,0.0000023514, -0.0000023467,0.0000023410,0.0000023394,0.0000023444,0.0000023528, -0.0000023586,0.0000023593,0.0000023576,0.0000023571,0.0000023603, -0.0000023670,0.0000023747,0.0000023809,0.0000023866,0.0000023965, -0.0000024089,0.0000024197,0.0000024308,0.0000024413,0.0000024484, -0.0000024548,0.0000024638,0.0000024714,0.0000024733,0.0000024682, -0.0000024579,0.0000024494,0.0000024472,0.0000024483,0.0000024517, -0.0000024551,0.0000024572,0.0000024582,0.0000024577,0.0000024544, -0.0000024483,0.0000024407,0.0000024326,0.0000024237,0.0000024134, -0.0000024028,0.0000023943,0.0000023891,0.0000023870,0.0000023869, -0.0000023874,0.0000023887,0.0000023916,0.0000023953,0.0000023984, -0.0000024010,0.0000024043,0.0000024083,0.0000024121,0.0000024146, -0.0000024161,0.0000024170,0.0000024160,0.0000024142,0.0000024104, -0.0000024055,0.0000024017,0.0000024009,0.0000024023,0.0000024061, -0.0000024112,0.0000024168,0.0000024219,0.0000024254,0.0000024261, -0.0000024240,0.0000024200,0.0000024174,0.0000024189,0.0000024238, -0.0000024293,0.0000024340,0.0000024397,0.0000024494,0.0000024638, -0.0000024799,0.0000024923,0.0000024979,0.0000024994,0.0000025000, -0.0000025006,0.0000025012,0.0000025022,0.0000025039,0.0000025062, -0.0000025088,0.0000025092,0.0000025066,0.0000025038,0.0000025043, -0.0000025081,0.0000025140,0.0000025214,0.0000025275,0.0000025319, -0.0000025381,0.0000025475,0.0000025574,0.0000025657,0.0000025728, -0.0000025801,0.0000025865,0.0000025903,0.0000025927,0.0000025939, -0.0000025931,0.0000025910,0.0000025886,0.0000025874,0.0000025872, -0.0000025873,0.0000025873,0.0000025869,0.0000025854,0.0000025827, -0.0000025810,0.0000025821,0.0000025862,0.0000025901,0.0000025908, -0.0000025881,0.0000025831,0.0000025793,0.0000025782,0.0000025776, -0.0000025748,0.0000025699,0.0000025657,0.0000025641,0.0000025632, -0.0000025606,0.0000025580,0.0000025577,0.0000025583,0.0000025564, -0.0000025432,0.0000025184,0.0000024946,0.0000024720,0.0000024439, -0.0000024209,0.0000024100,0.0000024067,0.0000024100,0.0000024170, -0.0000024208,0.0000024194,0.0000024157,0.0000024131,0.0000024145, -0.0000024237,0.0000024411,0.0000024595,0.0000024756,0.0000025028, -0.0000025460,0.0000025813,0.0000025928,0.0000025976,0.0000026051, -0.0000026119,0.0000026150,0.0000026171,0.0000026201,0.0000026230, -0.0000026239,0.0000026232,0.0000026233,0.0000026270,0.0000026341, -0.0000026413,0.0000026463,0.0000026489,0.0000026493,0.0000026478, -0.0000026458,0.0000026443,0.0000026416,0.0000026369,0.0000026322, -0.0000026281,0.0000026215,0.0000026129,0.0000026081,0.0000026080, -0.0000026069,0.0000026026,0.0000025995,0.0000026013,0.0000026055, -0.0000026085,0.0000026097,0.0000026100,0.0000026095,0.0000026048, -0.0000025914,0.0000025750,0.0000025564,0.0000025275,0.0000025005, -0.0000024907,0.0000024864,0.0000024687,0.0000024362,0.0000024114, -0.0000024027,0.0000023964,0.0000023753,0.0000023370,0.0000022994, -0.0000022743,0.0000022571,0.0000022419,0.0000022269,0.0000022137, -0.0000022046,0.0000021992,0.0000021947,0.0000021916,0.0000021888, -0.0000021858,0.0000021826,0.0000021788,0.0000021748,0.0000021718, -0.0000021705,0.0000021702,0.0000021698,0.0000021709,0.0000021760, -0.0000021848,0.0000021936,0.0000021984,0.0000021997,0.0000022002, -0.0000022012,0.0000022034,0.0000022070,0.0000022108,0.0000022131, -0.0000022143,0.0000022140,0.0000022118,0.0000022105,0.0000022132, -0.0000022194,0.0000022285,0.0000022425,0.0000022539,0.0000022549, -0.0000022505,0.0000022461,0.0000022470,0.0000022521,0.0000022570, -0.0000022609,0.0000022649,0.0000022698,0.0000022765,0.0000022829, -0.0000022878,0.0000022916,0.0000022943,0.0000022963,0.0000022975, -0.0000022982,0.0000022977,0.0000022962,0.0000022938,0.0000022905, -0.0000022857,0.0000022796,0.0000022732,0.0000022669,0.0000022602, -0.0000022576,0.0000022570,0.0000022560,0.0000022551,0.0000022549, -0.0000022552,0.0000022561,0.0000022580,0.0000022601,0.0000022621, -0.0000022633,0.0000022647,0.0000022656,0.0000022675,0.0000022700, -0.0000022726,0.0000022740,0.0000022741,0.0000022717,0.0000022672, -0.0000022613,0.0000022547,0.0000022479,0.0000022411,0.0000022354, -0.0000022310,0.0000022287,0.0000022288,0.0000022326,0.0000022399, -0.0000022499,0.0000022590,0.0000022651,0.0000022685,0.0000022693, -0.0000022684,0.0000022667,0.0000022645,0.0000022611,0.0000022569, -0.0000022519,0.0000022479,0.0000022441,0.0000022420,0.0000022411, -0.0000022408,0.0000022410,0.0000022420,0.0000022438,0.0000022458, -0.0000022466,0.0000022475,0.0000022507,0.0000022565,0.0000022622, -0.0000022649,0.0000022643,0.0000022609,0.0000022569,0.0000022549, -0.0000022546,0.0000022537,0.0000022519,0.0000022510,0.0000022508, -0.0000022508,0.0000022522,0.0000022555,0.0000022590,0.0000022618, -0.0000022634,0.0000022632,0.0000022615,0.0000022581,0.0000022528, -0.0000022457,0.0000022361,0.0000022257,0.0000022171,0.0000022101, -0.0000022029,0.0000021994,0.0000022001,0.0000022003,0.0000021996, -0.0000022005,0.0000022034,0.0000022098,0.0000022191,0.0000022286, -0.0000022354,0.0000022385,0.0000022385,0.0000022357,0.0000022305, -0.0000022235,0.0000022168,0.0000022118,0.0000022088,0.0000022078, -0.0000022080,0.0000022087,0.0000022090,0.0000022087,0.0000022075, -0.0000022033,0.0000021964,0.0000021876,0.0000021774,0.0000021688, -0.0000021644,0.0000021638,0.0000021646,0.0000021657,0.0000021673, -0.0000021697,0.0000021724,0.0000021746,0.0000021749,0.0000021727, -0.0000021679,0.0000021610,0.0000021531,0.0000021482,0.0000021484, -0.0000021531,0.0000021588,0.0000021613,0.0000021609,0.0000021598, -0.0000021591,0.0000021589,0.0000021588,0.0000021559,0.0000021525, -0.0000021531,0.0000021556,0.0000021551,0.0000021506,0.0000021483, -0.0000021505,0.0000021545,0.0000021557,0.0000021547,0.0000021525, -0.0000021516,0.0000021540,0.0000021616,0.0000021698,0.0000021761, -0.0000021831,0.0000021915,0.0000021997,0.0000022065,0.0000022120, -0.0000022179,0.0000022237,0.0000022277,0.0000022280,0.0000022245, -0.0000022212,0.0000022218,0.0000022236,0.0000022243,0.0000022327, -0.0000022600,0.0000022938,0.0000023164,0.0000023240,0.0000023260, -0.0000023262,0.0000023235,0.0000023203,0.0000023190,0.0000023167, -0.0000023128,0.0000023098,0.0000023088,0.0000023091,0.0000023095, -0.0000023099,0.0000023099,0.0000023088,0.0000023065,0.0000023043, -0.0000023030,0.0000023024,0.0000023018,0.0000023008,0.0000022983, -0.0000022948,0.0000022908,0.0000022859,0.0000022794,0.0000022713, -0.0000022625,0.0000022539,0.0000022466,0.0000022411,0.0000022377, -0.0000022358,0.0000022335,0.0000022294,0.0000022234,0.0000022159, -0.0000022094,0.0000022039,0.0000022023,0.0000022039,0.0000022093, -0.0000021936,0.0000021982,0.0000022059,0.0000022159,0.0000022260, -0.0000022351,0.0000022427,0.0000022488,0.0000022542,0.0000022592, -0.0000022638,0.0000022682,0.0000022735,0.0000022813,0.0000022925, -0.0000023054,0.0000023176,0.0000023266,0.0000023313,0.0000023324, -0.0000023313,0.0000023295,0.0000023275,0.0000023257,0.0000023241, -0.0000023229,0.0000023229,0.0000023234,0.0000023200,0.0000023098, -0.0000023005,0.0000022993,0.0000023044,0.0000023130,0.0000023198, -0.0000023271,0.0000023382,0.0000023454,0.0000023441,0.0000023374, -0.0000023344,0.0000023371,0.0000023409,0.0000023440,0.0000023464, -0.0000023482,0.0000023498,0.0000023510,0.0000023494,0.0000023441, -0.0000023389,0.0000023358,0.0000023331,0.0000023301,0.0000023282, -0.0000023274,0.0000023263,0.0000023245,0.0000023228,0.0000023208, -0.0000023182,0.0000023152,0.0000023119,0.0000023086,0.0000023056, -0.0000023031,0.0000023017,0.0000023017,0.0000023027,0.0000023036, -0.0000023026,0.0000022991,0.0000022945,0.0000022914,0.0000022910, -0.0000022923,0.0000022940,0.0000022959,0.0000022981,0.0000023013, -0.0000023050,0.0000023087,0.0000023133,0.0000023190,0.0000023268, -0.0000023367,0.0000023468,0.0000023550,0.0000023581,0.0000023572, -0.0000023549,0.0000023549,0.0000023601,0.0000023672,0.0000023730, -0.0000023767,0.0000023778,0.0000023773,0.0000023735,0.0000023659, -0.0000023577,0.0000023507,0.0000023447,0.0000023401,0.0000023367, -0.0000023366,0.0000023389,0.0000023404,0.0000023394,0.0000023378, -0.0000023375,0.0000023410,0.0000023478,0.0000023557,0.0000023640, -0.0000023709,0.0000023750,0.0000023782,0.0000023806,0.0000023821, -0.0000023827,0.0000023842,0.0000023870,0.0000023890,0.0000023887, -0.0000023871,0.0000023851,0.0000023817,0.0000023773,0.0000023733, -0.0000023712,0.0000023707,0.0000023714,0.0000023734,0.0000023771, -0.0000023825,0.0000023867,0.0000023882,0.0000023884,0.0000023881, -0.0000023896,0.0000023971,0.0000024081,0.0000024163,0.0000024179, -0.0000024162,0.0000024224,0.0000024441,0.0000024659,0.0000024826, -0.0000024984,0.0000025128,0.0000025242,0.0000025304,0.0000025303, -0.0000025260,0.0000025182,0.0000025125,0.0000025110,0.0000025117, -0.0000025115,0.0000025103,0.0000025067,0.0000025002,0.0000024925, -0.0000024833,0.0000024732,0.0000024634,0.0000024554,0.0000024515, -0.0000024505,0.0000024466,0.0000024370,0.0000024209,0.0000023953, -0.0000023650,0.0000023436,0.0000023364,0.0000023365,0.0000023372, -0.0000023361,0.0000023330,0.0000023305,0.0000023299,0.0000023304, -0.0000023305,0.0000023295,0.0000023260,0.0000023195,0.0000023122, -0.0000023068,0.0000023040,0.0000023016,0.0000022987,0.0000022961, -0.0000022969,0.0000023043,0.0000023167,0.0000023294,0.0000023383, -0.0000023426,0.0000023439,0.0000023442,0.0000023441,0.0000023450, -0.0000023482,0.0000023532,0.0000023580,0.0000023629,0.0000023699, -0.0000023803,0.0000023913,0.0000023986,0.0000024018,0.0000024037, -0.0000024060,0.0000024073,0.0000024067,0.0000024054,0.0000024048, -0.0000024048,0.0000024054,0.0000024090,0.0000024171,0.0000024278, -0.0000024369,0.0000024429,0.0000024470,0.0000024513,0.0000024565, -0.0000024632,0.0000024711,0.0000024786,0.0000024835,0.0000024845, -0.0000024829,0.0000024801,0.0000024783,0.0000024782,0.0000024797, -0.0000024830,0.0000024876,0.0000024931,0.0000024987,0.0000025028, -0.0000025043,0.0000025036,0.0000025012,0.0000024979,0.0000024944, -0.0000024902,0.0000024848,0.0000024788,0.0000024734,0.0000024692, -0.0000024654,0.0000024619,0.0000024602,0.0000024581,0.0000024542, -0.0000024506,0.0000024500,0.0000024523,0.0000024563,0.0000024585, -0.0000024574,0.0000024524,0.0000024446,0.0000024356,0.0000024286, -0.0000024264,0.0000024284,0.0000024334,0.0000024409,0.0000024471, -0.0000024511,0.0000024519,0.0000024478,0.0000024392,0.0000024285, -0.0000024174,0.0000024062,0.0000023952,0.0000023857,0.0000023791, -0.0000023762,0.0000023771,0.0000023796,0.0000023798,0.0000023772, -0.0000023733,0.0000023693,0.0000023665,0.0000023659,0.0000023659, -0.0000023662,0.0000023683,0.0000023736,0.0000023812,0.0000023893, -0.0000023952,0.0000023974,0.0000023987,0.0000024024,0.0000024064, -0.0000024075,0.0000024078,0.0000024121,0.0000024210,0.0000024333, -0.0000024457,0.0000024552,0.0000024623,0.0000024684,0.0000024732, -0.0000024765,0.0000024788,0.0000024808,0.0000024821,0.0000024806, -0.0000024754,0.0000024684,0.0000024625,0.0000024579,0.0000024517, -0.0000024403,0.0000024196,0.0000023952,0.0000023835,0.0000023878, -0.0000023965,0.0000023978,0.0000023973,0.0000023969,0.0000023939, -0.0000023886,0.0000023846,0.0000023822,0.0000023805,0.0000023804, -0.0000023819,0.0000023855,0.0000023895,0.0000023897,0.0000023834, -0.0000023725,0.0000023614,0.0000023531,0.0000023488,0.0000023453, -0.0000023411,0.0000023358,0.0000023315,0.0000023293,0.0000023263, -0.0000023237,0.0000023223,0.0000023221,0.0000023231,0.0000023244, -0.0000023247,0.0000023236,0.0000023231,0.0000023243,0.0000023263, -0.0000023287,0.0000023296,0.0000023299,0.0000023291,0.0000023264, -0.0000023220,0.0000023191,0.0000023318,0.0000023602,0.0000023847, -0.0000023981,0.0000024016,0.0000024012,0.0000024034,0.0000024071, -0.0000024084,0.0000024097,0.0000024084,0.0000024082,0.0000024072, -0.0000024073,0.0000024088,0.0000024114,0.0000024157,0.0000024237, -0.0000024334,0.0000024411,0.0000024427,0.0000024399,0.0000024348, -0.0000024308,0.0000024287,0.0000024269,0.0000024234,0.0000024182, -0.0000024137,0.0000024122,0.0000024128,0.0000024147,0.0000024209, -0.0000024276,0.0000024322,0.0000024341,0.0000024335,0.0000024297, -0.0000024255,0.0000024202,0.0000024153,0.0000024109,0.0000024062, -0.0000024011,0.0000023946,0.0000023865,0.0000023790,0.0000023696, -0.0000023596,0.0000023539,0.0000023527,0.0000023530,0.0000023528, -0.0000023514,0.0000023491,0.0000023480,0.0000023472,0.0000023459, -0.0000023415,0.0000023360,0.0000023321,0.0000023299,0.0000023280, -0.0000023253,0.0000023197,0.0000023123,0.0000023046,0.0000022989, -0.0000022962,0.0000022955,0.0000022965,0.0000022983,0.0000023002, -0.0000023011,0.0000023011,0.0000023012,0.0000022991,0.0000022878, -0.0000022681,0.0000022494,0.0000022389,0.0000022358,0.0000022344, -0.0000022327,0.0000022303,0.0000022272,0.0000022241,0.0000022216, -0.0000022207,0.0000022217,0.0000022224,0.0000022231,0.0000022243, -0.0000022268,0.0000022310,0.0000022343,0.0000022372,0.0000022449, -0.0000022606,0.0000022770,0.0000022882,0.0000022930,0.0000022920, -0.0000022889,0.0000022848,0.0000022760,0.0000022608,0.0000022463, -0.0000022413,0.0000022430,0.0000022437,0.0000022427,0.0000022471, -0.0000022654,0.0000022903,0.0000023066,0.0000023094,0.0000023068, -0.0000023019,0.0000022984,0.0000022922,0.0000022820,0.0000022723, -0.0000022669,0.0000022654,0.0000022656,0.0000022653,0.0000022641, -0.0000022633,0.0000022631,0.0000022623,0.0000022596,0.0000022533, -0.0000022438,0.0000022351,0.0000022317,0.0000022342,0.0000022388, -0.0000022442,0.0000022491,0.0000022516,0.0000022516,0.0000022489, -0.0000022436,0.0000022371,0.0000022366,0.0000022428,0.0000022559, -0.0000022683,0.0000022804,0.0000022944,0.0000023067,0.0000023125, -0.0000023123,0.0000023085,0.0000023031,0.0000022963,0.0000022881, -0.0000022802,0.0000022760,0.0000022806,0.0000022989,0.0000023218, -0.0000023348,0.0000023351,0.0000023349,0.0000023411,0.0000023470, -0.0000023570,0.0000023748,0.0000023851,0.0000023882,0.0000023919, -0.0000023967,0.0000024033,0.0000024097,0.0000024158,0.0000024201, -0.0000024151,0.0000024116,0.0000024242,0.0000024452,0.0000024698, -0.0000024944,0.0000025071,0.0000025116,0.0000025154,0.0000025168, -0.0000025047,0.0000024695,0.0000024356,0.0000024272,0.0000024364, -0.0000024459,0.0000024467,0.0000024435,0.0000024380,0.0000024268, -0.0000024093,0.0000023911,0.0000023785,0.0000023693,0.0000023650, -0.0000023717,0.0000023827,0.0000023966,0.0000024087,0.0000024351, -0.0000024762,0.0000024962,0.0000024848,0.0000025063,0.0000025823, -0.0000026234,0.0000026149,0.0000025449,0.0000024854,0.0000024687, -0.0000024664,0.0000024624,0.0000024379,0.0000024088,0.0000024006, -0.0000024051,0.0000024122,0.0000024212,0.0000024311,0.0000024387, -0.0000024434,0.0000024444,0.0000024411,0.0000024376,0.0000024368, -0.0000024396,0.0000024448,0.0000024496,0.0000024516,0.0000024501, -0.0000024470,0.0000024435,0.0000024404,0.0000024374,0.0000024354, -0.0000024343,0.0000024347,0.0000024360,0.0000024385,0.0000024402, -0.0000024402,0.0000024388,0.0000024333,0.0000024260,0.0000024186, -0.0000024102,0.0000024009,0.0000023932,0.0000023892,0.0000023881, -0.0000023881,0.0000023845,0.0000023772,0.0000023714,0.0000023680, -0.0000023646,0.0000023610,0.0000023577,0.0000023548,0.0000023528, -0.0000023524,0.0000023530,0.0000023529,0.0000023494,0.0000023430, -0.0000023372,0.0000023340,0.0000023319,0.0000023315,0.0000023315, -0.0000023318,0.0000023334,0.0000023370,0.0000023423,0.0000023500, -0.0000023597,0.0000023698,0.0000023791,0.0000023884,0.0000023994, -0.0000024122,0.0000024247,0.0000024357,0.0000024447,0.0000024513, -0.0000024562,0.0000024588,0.0000024592,0.0000024585,0.0000024576, -0.0000024573,0.0000024578,0.0000024588,0.0000024600,0.0000024613, -0.0000024628,0.0000024649,0.0000024672,0.0000024693,0.0000024709, -0.0000024713,0.0000024704,0.0000024686,0.0000024659,0.0000024617, -0.0000024560,0.0000024486,0.0000024391,0.0000024270,0.0000024123, -0.0000023954,0.0000023781,0.0000023627,0.0000023507,0.0000023429, -0.0000023399,0.0000023376,0.0000023368,0.0000023375,0.0000023386, -0.0000023399,0.0000023409,0.0000023415,0.0000023426,0.0000023449, -0.0000023486,0.0000023528,0.0000023566,0.0000023596,0.0000023620, -0.0000023643,0.0000023663,0.0000023675,0.0000023673,0.0000023655, -0.0000023615,0.0000023550,0.0000023450,0.0000023312,0.0000023146, -0.0000022970,0.0000022831,0.0000022750,0.0000022645,0.0000022482, -0.0000022382,0.0000022402,0.0000022468,0.0000022512,0.0000022529, -0.0000022539,0.0000022566,0.0000022601,0.0000022613,0.0000022600, -0.0000022570,0.0000022531,0.0000022477,0.0000022403,0.0000022335, -0.0000022299,0.0000022274,0.0000022223,0.0000022140,0.0000022062, -0.0000022016,0.0000021985,0.0000021973,0.0000021987,0.0000022021, -0.0000022076,0.0000022133,0.0000022167,0.0000022246,0.0000022352, -0.0000022315,0.0000022194,0.0000022222,0.0000022361,0.0000022424, -0.0000022426,0.0000022482,0.0000022614,0.0000022755,0.0000022876, -0.0000023021,0.0000023201,0.0000023393,0.0000023539,0.0000023577, -0.0000023553,0.0000023507,0.0000023450,0.0000023384,0.0000023350, -0.0000023370,0.0000023442,0.0000023519,0.0000023559,0.0000023562, -0.0000023567,0.0000023597,0.0000023650,0.0000023695,0.0000023723, -0.0000023766,0.0000023877,0.0000024038,0.0000024173,0.0000024280, -0.0000024384,0.0000024460,0.0000024510,0.0000024581,0.0000024673, -0.0000024731,0.0000024727,0.0000024657,0.0000024548,0.0000024470, -0.0000024448,0.0000024458,0.0000024489,0.0000024515,0.0000024523, -0.0000024524,0.0000024512,0.0000024468,0.0000024391,0.0000024298, -0.0000024202,0.0000024108,0.0000024014,0.0000023922,0.0000023846, -0.0000023798,0.0000023780,0.0000023778,0.0000023778,0.0000023783, -0.0000023801,0.0000023831,0.0000023861,0.0000023885,0.0000023908, -0.0000023937,0.0000023973,0.0000024011,0.0000024048,0.0000024079, -0.0000024100,0.0000024109,0.0000024094,0.0000024058,0.0000024030, -0.0000024015,0.0000024016,0.0000024040,0.0000024089,0.0000024150, -0.0000024206,0.0000024241,0.0000024247,0.0000024224,0.0000024180, -0.0000024137,0.0000024130,0.0000024163,0.0000024211,0.0000024246, -0.0000024281,0.0000024352,0.0000024485,0.0000024661,0.0000024820, -0.0000024919,0.0000024963,0.0000024977,0.0000024976,0.0000024971, -0.0000024976,0.0000025001,0.0000025041,0.0000025087,0.0000025116, -0.0000025108,0.0000025076,0.0000025068,0.0000025091,0.0000025134, -0.0000025194,0.0000025251,0.0000025284,0.0000025331,0.0000025429, -0.0000025544,0.0000025633,0.0000025691,0.0000025751,0.0000025812, -0.0000025857,0.0000025890,0.0000025911,0.0000025912,0.0000025895, -0.0000025875,0.0000025871,0.0000025872,0.0000025869,0.0000025862, -0.0000025847,0.0000025820,0.0000025793,0.0000025784,0.0000025798, -0.0000025837,0.0000025878,0.0000025890,0.0000025864,0.0000025811, -0.0000025772,0.0000025757,0.0000025741,0.0000025706,0.0000025663, -0.0000025637,0.0000025631,0.0000025622,0.0000025595,0.0000025579, -0.0000025588,0.0000025596,0.0000025581,0.0000025444,0.0000025184, -0.0000024932,0.0000024694,0.0000024404,0.0000024175,0.0000024092, -0.0000024095,0.0000024154,0.0000024203,0.0000024182,0.0000024119, -0.0000024078,0.0000024084,0.0000024165,0.0000024361,0.0000024568, -0.0000024706,0.0000024897,0.0000025285,0.0000025693,0.0000025875, -0.0000025920,0.0000025977,0.0000026054,0.0000026102,0.0000026121, -0.0000026134,0.0000026152,0.0000026171,0.0000026171,0.0000026155, -0.0000026149,0.0000026179,0.0000026247,0.0000026326,0.0000026392, -0.0000026431,0.0000026438,0.0000026427,0.0000026415,0.0000026403, -0.0000026379,0.0000026343,0.0000026313,0.0000026277,0.0000026212, -0.0000026140,0.0000026108,0.0000026109,0.0000026086,0.0000026031, -0.0000025994,0.0000026003,0.0000026032,0.0000026058,0.0000026070, -0.0000026067,0.0000026052,0.0000025994,0.0000025849,0.0000025689, -0.0000025508,0.0000025235,0.0000025001,0.0000024923,0.0000024881, -0.0000024688,0.0000024350,0.0000024097,0.0000024005,0.0000023922, -0.0000023669,0.0000023256,0.0000022886,0.0000022643,0.0000022464, -0.0000022313,0.0000022184,0.0000022090,0.0000022041,0.0000022015, -0.0000021995,0.0000021968,0.0000021937,0.0000021899,0.0000021854, -0.0000021805,0.0000021751,0.0000021698,0.0000021660,0.0000021643, -0.0000021638,0.0000021643,0.0000021665,0.0000021714,0.0000021788, -0.0000021857,0.0000021905,0.0000021940,0.0000021962,0.0000021977, -0.0000022011,0.0000022065,0.0000022116,0.0000022149,0.0000022165, -0.0000022163,0.0000022147,0.0000022144,0.0000022164,0.0000022187, -0.0000022238,0.0000022358,0.0000022484,0.0000022522,0.0000022505, -0.0000022487,0.0000022512,0.0000022558,0.0000022591,0.0000022607, -0.0000022617,0.0000022637,0.0000022673,0.0000022706,0.0000022734, -0.0000022756,0.0000022769,0.0000022772,0.0000022763,0.0000022745, -0.0000022718,0.0000022683,0.0000022636,0.0000022581,0.0000022520, -0.0000022457,0.0000022395,0.0000022334,0.0000022314,0.0000022315, -0.0000022322,0.0000022341,0.0000022370,0.0000022404,0.0000022438, -0.0000022483,0.0000022529,0.0000022567,0.0000022587,0.0000022592, -0.0000022583,0.0000022585,0.0000022597,0.0000022622,0.0000022636, -0.0000022639,0.0000022625,0.0000022592,0.0000022545,0.0000022486, -0.0000022422,0.0000022356,0.0000022298,0.0000022254,0.0000022223, -0.0000022221,0.0000022240,0.0000022287,0.0000022362,0.0000022462, -0.0000022555,0.0000022615,0.0000022649,0.0000022665,0.0000022665, -0.0000022654,0.0000022636,0.0000022609,0.0000022567,0.0000022518, -0.0000022470,0.0000022434,0.0000022420,0.0000022418,0.0000022419, -0.0000022423,0.0000022437,0.0000022465,0.0000022487,0.0000022493, -0.0000022498,0.0000022533,0.0000022598,0.0000022651,0.0000022665, -0.0000022649,0.0000022606,0.0000022570,0.0000022560,0.0000022551, -0.0000022525,0.0000022507,0.0000022507,0.0000022512,0.0000022516, -0.0000022532,0.0000022565,0.0000022602,0.0000022632,0.0000022644, -0.0000022639,0.0000022620,0.0000022582,0.0000022518,0.0000022428, -0.0000022320,0.0000022217,0.0000022132,0.0000022054,0.0000022007, -0.0000022004,0.0000022005,0.0000021989,0.0000021993,0.0000022028, -0.0000022097,0.0000022193,0.0000022291,0.0000022367,0.0000022404, -0.0000022406,0.0000022375,0.0000022306,0.0000022219,0.0000022143, -0.0000022093,0.0000022068,0.0000022058,0.0000022051,0.0000022060, -0.0000022073,0.0000022082,0.0000022082,0.0000022072,0.0000022033, -0.0000021964,0.0000021877,0.0000021778,0.0000021693,0.0000021651, -0.0000021652,0.0000021679,0.0000021714,0.0000021746,0.0000021769, -0.0000021783,0.0000021796,0.0000021807,0.0000021804,0.0000021782, -0.0000021732,0.0000021642,0.0000021544,0.0000021501,0.0000021522, -0.0000021576,0.0000021618,0.0000021625,0.0000021619,0.0000021612, -0.0000021615,0.0000021629,0.0000021617,0.0000021560,0.0000021516, -0.0000021523,0.0000021527,0.0000021490,0.0000021459,0.0000021466, -0.0000021492,0.0000021497,0.0000021476,0.0000021438,0.0000021407, -0.0000021416,0.0000021502,0.0000021636,0.0000021737,0.0000021803, -0.0000021878,0.0000021962,0.0000022037,0.0000022092,0.0000022140, -0.0000022192,0.0000022240,0.0000022266,0.0000022257,0.0000022221, -0.0000022211,0.0000022236,0.0000022262,0.0000022283,0.0000022439, -0.0000022753,0.0000023048,0.0000023200,0.0000023239,0.0000023256, -0.0000023258,0.0000023237,0.0000023221,0.0000023213,0.0000023185, -0.0000023139,0.0000023097,0.0000023071,0.0000023057,0.0000023049, -0.0000023043,0.0000023038,0.0000023029,0.0000023020,0.0000023015, -0.0000023015,0.0000023014,0.0000023010,0.0000022997,0.0000022975, -0.0000022941,0.0000022902,0.0000022863,0.0000022824,0.0000022785, -0.0000022739,0.0000022662,0.0000022576,0.0000022490,0.0000022418, -0.0000022369,0.0000022330,0.0000022277,0.0000022198,0.0000022110, -0.0000022037,0.0000021984,0.0000021946,0.0000021919,0.0000021897, -0.0000021871,0.0000021851,0.0000021889,0.0000021968,0.0000022080, -0.0000022197,0.0000022301,0.0000022383,0.0000022449,0.0000022510, -0.0000022569,0.0000022628,0.0000022690,0.0000022768,0.0000022879, -0.0000023022,0.0000023166,0.0000023271,0.0000023319,0.0000023322, -0.0000023307,0.0000023289,0.0000023265,0.0000023246,0.0000023241, -0.0000023248,0.0000023240,0.0000023165,0.0000023050,0.0000023006, -0.0000023041,0.0000023113,0.0000023183,0.0000023240,0.0000023327, -0.0000023426,0.0000023428,0.0000023348,0.0000023293,0.0000023309, -0.0000023361,0.0000023405,0.0000023438,0.0000023464,0.0000023486, -0.0000023503,0.0000023496,0.0000023449,0.0000023392,0.0000023354, -0.0000023329,0.0000023302,0.0000023274,0.0000023256,0.0000023239, -0.0000023211,0.0000023175,0.0000023145,0.0000023119,0.0000023092, -0.0000023058,0.0000023019,0.0000022987,0.0000022967,0.0000022955, -0.0000022948,0.0000022952,0.0000022965,0.0000022978,0.0000022976, -0.0000022955,0.0000022925,0.0000022905,0.0000022906,0.0000022917, -0.0000022931,0.0000022941,0.0000022942,0.0000022951,0.0000022966, -0.0000022977,0.0000022998,0.0000023030,0.0000023079,0.0000023158, -0.0000023265,0.0000023395,0.0000023513,0.0000023567,0.0000023558, -0.0000023527,0.0000023528,0.0000023577,0.0000023653,0.0000023722, -0.0000023762,0.0000023780,0.0000023778,0.0000023730,0.0000023651, -0.0000023577,0.0000023508,0.0000023437,0.0000023371,0.0000023329, -0.0000023324,0.0000023356,0.0000023384,0.0000023386,0.0000023379, -0.0000023387,0.0000023428,0.0000023481,0.0000023539,0.0000023609, -0.0000023674,0.0000023723,0.0000023762,0.0000023788,0.0000023803, -0.0000023816,0.0000023842,0.0000023868,0.0000023879,0.0000023876, -0.0000023869,0.0000023856,0.0000023825,0.0000023780,0.0000023742, -0.0000023721,0.0000023717,0.0000023724,0.0000023737,0.0000023769, -0.0000023824,0.0000023874,0.0000023889,0.0000023881,0.0000023871, -0.0000023877,0.0000023935,0.0000024043,0.0000024134,0.0000024159, -0.0000024132,0.0000024142,0.0000024318,0.0000024563,0.0000024761, -0.0000024938,0.0000025093,0.0000025205,0.0000025268,0.0000025283, -0.0000025253,0.0000025180,0.0000025114,0.0000025091,0.0000025100, -0.0000025102,0.0000025085,0.0000025040,0.0000024974,0.0000024906, -0.0000024822,0.0000024724,0.0000024629,0.0000024548,0.0000024505, -0.0000024494,0.0000024470,0.0000024402,0.0000024279,0.0000024061, -0.0000023766,0.0000023511,0.0000023385,0.0000023363,0.0000023365, -0.0000023360,0.0000023335,0.0000023308,0.0000023297,0.0000023298, -0.0000023305,0.0000023307,0.0000023286,0.0000023230,0.0000023150, -0.0000023086,0.0000023061,0.0000023053,0.0000023037,0.0000023014, -0.0000023003,0.0000023041,0.0000023115,0.0000023217,0.0000023315, -0.0000023388,0.0000023433,0.0000023450,0.0000023445,0.0000023441, -0.0000023447,0.0000023488,0.0000023549,0.0000023603,0.0000023644, -0.0000023697,0.0000023778,0.0000023867,0.0000023933,0.0000023967, -0.0000023986,0.0000024004,0.0000024015,0.0000024017,0.0000024024, -0.0000024042,0.0000024060,0.0000024086,0.0000024136,0.0000024217, -0.0000024303,0.0000024376,0.0000024429,0.0000024469,0.0000024506, -0.0000024549,0.0000024610,0.0000024684,0.0000024748,0.0000024778, -0.0000024776,0.0000024756,0.0000024743,0.0000024748,0.0000024775, -0.0000024822,0.0000024877,0.0000024928,0.0000024975,0.0000025014, -0.0000025036,0.0000025036,0.0000025023,0.0000024994,0.0000024951, -0.0000024898,0.0000024841,0.0000024780,0.0000024721,0.0000024669, -0.0000024632,0.0000024609,0.0000024599,0.0000024580,0.0000024543, -0.0000024500,0.0000024480,0.0000024496,0.0000024542,0.0000024581, -0.0000024582,0.0000024551,0.0000024500,0.0000024446,0.0000024402, -0.0000024386,0.0000024398,0.0000024430,0.0000024473,0.0000024501, -0.0000024513,0.0000024504,0.0000024474,0.0000024428,0.0000024374, -0.0000024310,0.0000024226,0.0000024120,0.0000024003,0.0000023884, -0.0000023779,0.0000023710,0.0000023684,0.0000023704,0.0000023741, -0.0000023757,0.0000023744,0.0000023714,0.0000023684,0.0000023670, -0.0000023669,0.0000023686,0.0000023720,0.0000023753,0.0000023790, -0.0000023825,0.0000023853,0.0000023881,0.0000023927,0.0000023989, -0.0000024036,0.0000024061,0.0000024089,0.0000024135,0.0000024205, -0.0000024292,0.0000024383,0.0000024470,0.0000024549,0.0000024615, -0.0000024661,0.0000024689,0.0000024706,0.0000024710,0.0000024691, -0.0000024660,0.0000024636,0.0000024615,0.0000024574,0.0000024480, -0.0000024296,0.0000024046,0.0000023864,0.0000023851,0.0000023917, -0.0000023948,0.0000023947,0.0000023959,0.0000023951,0.0000023898, -0.0000023841,0.0000023814,0.0000023806,0.0000023793,0.0000023778, -0.0000023776,0.0000023794,0.0000023827,0.0000023834,0.0000023782, -0.0000023685,0.0000023585,0.0000023506,0.0000023446,0.0000023375, -0.0000023293,0.0000023222,0.0000023190,0.0000023184,0.0000023175, -0.0000023164,0.0000023169,0.0000023188,0.0000023213,0.0000023233, -0.0000023238,0.0000023218,0.0000023171,0.0000023128,0.0000023103, -0.0000023104,0.0000023136,0.0000023163,0.0000023179,0.0000023222, -0.0000023270,0.0000023293,0.0000023261,0.0000023254,0.0000023399, -0.0000023681,0.0000023904,0.0000024001,0.0000024011,0.0000023988, -0.0000023952,0.0000023927,0.0000023901,0.0000023870,0.0000023858, -0.0000023857,0.0000023868,0.0000023895,0.0000023918,0.0000023946, -0.0000023999,0.0000024103,0.0000024244,0.0000024353,0.0000024375, -0.0000024363,0.0000024314,0.0000024276,0.0000024257,0.0000024241, -0.0000024214,0.0000024198,0.0000024187,0.0000024173,0.0000024182, -0.0000024214,0.0000024249,0.0000024282,0.0000024283,0.0000024256, -0.0000024205,0.0000024154,0.0000024116,0.0000024074,0.0000024019, -0.0000023948,0.0000023856,0.0000023748,0.0000023664,0.0000023598, -0.0000023565,0.0000023565,0.0000023590,0.0000023590,0.0000023553, -0.0000023519,0.0000023482,0.0000023438,0.0000023395,0.0000023376, -0.0000023358,0.0000023337,0.0000023317,0.0000023299,0.0000023270, -0.0000023222,0.0000023138,0.0000023037,0.0000022953,0.0000022909, -0.0000022897,0.0000022906,0.0000022928,0.0000022952,0.0000022979, -0.0000022999,0.0000023003,0.0000022972,0.0000022865,0.0000022683, -0.0000022502,0.0000022402,0.0000022374,0.0000022362,0.0000022342, -0.0000022324,0.0000022313,0.0000022301,0.0000022289,0.0000022266, -0.0000022235,0.0000022229,0.0000022229,0.0000022227,0.0000022235, -0.0000022250,0.0000022277,0.0000022313,0.0000022356,0.0000022442, -0.0000022592,0.0000022744,0.0000022851,0.0000022893,0.0000022883, -0.0000022862,0.0000022823,0.0000022720,0.0000022578,0.0000022470, -0.0000022428,0.0000022435,0.0000022440,0.0000022426,0.0000022498, -0.0000022710,0.0000022951,0.0000023082,0.0000023098,0.0000023058, -0.0000023016,0.0000022991,0.0000022923,0.0000022812,0.0000022710, -0.0000022646,0.0000022622,0.0000022624,0.0000022630,0.0000022624, -0.0000022611,0.0000022595,0.0000022569,0.0000022524,0.0000022452, -0.0000022364,0.0000022303,0.0000022289,0.0000022317,0.0000022369, -0.0000022428,0.0000022480,0.0000022508,0.0000022507,0.0000022477, -0.0000022418,0.0000022353,0.0000022351,0.0000022449,0.0000022617, -0.0000022768,0.0000022893,0.0000023021,0.0000023130,0.0000023179, -0.0000023174,0.0000023127,0.0000023056,0.0000022977,0.0000022895, -0.0000022810,0.0000022755,0.0000022770,0.0000022910,0.0000023114, -0.0000023256,0.0000023281,0.0000023277,0.0000023336,0.0000023414, -0.0000023484,0.0000023656,0.0000023822,0.0000023875,0.0000023904, -0.0000023943,0.0000024002,0.0000024088,0.0000024162,0.0000024202, -0.0000024190,0.0000024084,0.0000024060,0.0000024230,0.0000024442, -0.0000024650,0.0000024845,0.0000024970,0.0000025031,0.0000025058, -0.0000025011,0.0000024771,0.0000024444,0.0000024285,0.0000024316, -0.0000024450,0.0000024509,0.0000024479,0.0000024427,0.0000024370, -0.0000024260,0.0000024092,0.0000023915,0.0000023789,0.0000023691, -0.0000023632,0.0000023679,0.0000023789,0.0000023901,0.0000024038, -0.0000024217,0.0000024606,0.0000024911,0.0000024902,0.0000024828, -0.0000025427,0.0000026080,0.0000026232,0.0000025856,0.0000025119, -0.0000024735,0.0000024650,0.0000024638,0.0000024569,0.0000024311, -0.0000024076,0.0000024030,0.0000024066,0.0000024106,0.0000024177, -0.0000024284,0.0000024390,0.0000024460,0.0000024483,0.0000024441, -0.0000024379,0.0000024351,0.0000024367,0.0000024419,0.0000024468, -0.0000024488,0.0000024479,0.0000024464,0.0000024457,0.0000024450, -0.0000024440,0.0000024419,0.0000024388,0.0000024359,0.0000024351, -0.0000024353,0.0000024373,0.0000024393,0.0000024387,0.0000024366, -0.0000024322,0.0000024252,0.0000024153,0.0000024047,0.0000023967, -0.0000023927,0.0000023934,0.0000023942,0.0000023916,0.0000023867, -0.0000023819,0.0000023770,0.0000023714,0.0000023659,0.0000023608, -0.0000023563,0.0000023528,0.0000023514,0.0000023509,0.0000023500, -0.0000023467,0.0000023417,0.0000023362,0.0000023312,0.0000023268, -0.0000023224,0.0000023196,0.0000023193,0.0000023233,0.0000023297, -0.0000023363,0.0000023431,0.0000023509,0.0000023596,0.0000023680, -0.0000023768,0.0000023872,0.0000023991,0.0000024110,0.0000024217, -0.0000024308,0.0000024385,0.0000024450,0.0000024494,0.0000024519, -0.0000024531,0.0000024536,0.0000024542,0.0000024548,0.0000024553, -0.0000024560,0.0000024566,0.0000024571,0.0000024577,0.0000024579, -0.0000024577,0.0000024568,0.0000024548,0.0000024516,0.0000024467, -0.0000024396,0.0000024302,0.0000024190,0.0000024065,0.0000023929, -0.0000023789,0.0000023659,0.0000023550,0.0000023478,0.0000023439, -0.0000023418,0.0000023414,0.0000023411,0.0000023402,0.0000023393, -0.0000023390,0.0000023395,0.0000023410,0.0000023434,0.0000023467, -0.0000023501,0.0000023528,0.0000023548,0.0000023568,0.0000023592, -0.0000023619,0.0000023644,0.0000023663,0.0000023674,0.0000023676, -0.0000023672,0.0000023654,0.0000023620,0.0000023561,0.0000023459, -0.0000023308,0.0000023120,0.0000022928,0.0000022791,0.0000022718, -0.0000022612,0.0000022456,0.0000022371,0.0000022390,0.0000022444, -0.0000022489,0.0000022513,0.0000022518,0.0000022522,0.0000022529, -0.0000022525,0.0000022510,0.0000022486,0.0000022445,0.0000022385, -0.0000022336,0.0000022316,0.0000022296,0.0000022246,0.0000022157, -0.0000022067,0.0000022013,0.0000021982,0.0000021969,0.0000021984, -0.0000022006,0.0000022026,0.0000022077,0.0000022126,0.0000022168, -0.0000022274,0.0000022343,0.0000022271,0.0000022196,0.0000022273, -0.0000022404,0.0000022434,0.0000022424,0.0000022487,0.0000022639, -0.0000022797,0.0000022925,0.0000023061,0.0000023232,0.0000023428, -0.0000023556,0.0000023571,0.0000023523,0.0000023454,0.0000023378, -0.0000023323,0.0000023319,0.0000023365,0.0000023440,0.0000023506, -0.0000023542,0.0000023564,0.0000023600,0.0000023647,0.0000023680, -0.0000023689,0.0000023703,0.0000023797,0.0000023978,0.0000024150, -0.0000024261,0.0000024355,0.0000024438,0.0000024486,0.0000024534, -0.0000024616,0.0000024700,0.0000024729,0.0000024709,0.0000024627, -0.0000024517,0.0000024440,0.0000024413,0.0000024422,0.0000024446, -0.0000024463,0.0000024466,0.0000024462,0.0000024439,0.0000024390, -0.0000024315,0.0000024216,0.0000024111,0.0000024021,0.0000023943, -0.0000023872,0.0000023802,0.0000023741,0.0000023700,0.0000023672, -0.0000023653,0.0000023645,0.0000023650,0.0000023665,0.0000023687, -0.0000023708,0.0000023725,0.0000023741,0.0000023764,0.0000023799, -0.0000023842,0.0000023885,0.0000023927,0.0000023964,0.0000023988, -0.0000023995,0.0000023997,0.0000024000,0.0000024006,0.0000024027, -0.0000024069,0.0000024124,0.0000024181,0.0000024222,0.0000024232, -0.0000024212,0.0000024164,0.0000024113,0.0000024083,0.0000024096, -0.0000024136,0.0000024169,0.0000024191,0.0000024237,0.0000024344, -0.0000024510,0.0000024689,0.0000024827,0.0000024909,0.0000024948, -0.0000024954,0.0000024939,0.0000024929,0.0000024950,0.0000025009, -0.0000025075,0.0000025124,0.0000025137,0.0000025116,0.0000025094, -0.0000025100,0.0000025131,0.0000025184,0.0000025236,0.0000025260, -0.0000025289,0.0000025373,0.0000025491,0.0000025585,0.0000025639, -0.0000025684,0.0000025733,0.0000025775,0.0000025811,0.0000025840, -0.0000025853,0.0000025847,0.0000025843,0.0000025852,0.0000025859, -0.0000025855,0.0000025839,0.0000025814,0.0000025791,0.0000025779, -0.0000025783,0.0000025797,0.0000025824,0.0000025849,0.0000025852, -0.0000025829,0.0000025790,0.0000025758,0.0000025737,0.0000025712, -0.0000025673,0.0000025639,0.0000025626,0.0000025624,0.0000025614, -0.0000025591,0.0000025585,0.0000025598,0.0000025609,0.0000025594, -0.0000025454,0.0000025183,0.0000024921,0.0000024671,0.0000024372, -0.0000024153,0.0000024102,0.0000024144,0.0000024215,0.0000024224, -0.0000024158,0.0000024081,0.0000024059,0.0000024104,0.0000024280, -0.0000024513,0.0000024666,0.0000024796,0.0000025107,0.0000025541, -0.0000025807,0.0000025865,0.0000025907,0.0000025982,0.0000026046, -0.0000026078,0.0000026088,0.0000026088,0.0000026092,0.0000026098, -0.0000026088,0.0000026067,0.0000026060,0.0000026085,0.0000026147, -0.0000026227,0.0000026301,0.0000026347,0.0000026358,0.0000026354, -0.0000026349,0.0000026341,0.0000026328,0.0000026313,0.0000026300, -0.0000026271,0.0000026210,0.0000026149,0.0000026127,0.0000026118, -0.0000026080,0.0000026011,0.0000025971,0.0000025971,0.0000025991, -0.0000026020,0.0000026035,0.0000026027,0.0000026008,0.0000025941, -0.0000025790,0.0000025639,0.0000025479,0.0000025232,0.0000025018, -0.0000024941,0.0000024890,0.0000024687,0.0000024338,0.0000024073, -0.0000023971,0.0000023867,0.0000023574,0.0000023130,0.0000022760, -0.0000022526,0.0000022353,0.0000022215,0.0000022116,0.0000022069, -0.0000022056,0.0000022058,0.0000022051,0.0000022031,0.0000022002, -0.0000021959,0.0000021902,0.0000021845,0.0000021787,0.0000021728, -0.0000021679,0.0000021649,0.0000021638,0.0000021641,0.0000021653, -0.0000021664,0.0000021686,0.0000021718,0.0000021756,0.0000021804, -0.0000021856,0.0000021902,0.0000021950,0.0000022010,0.0000022076, -0.0000022135,0.0000022170,0.0000022178,0.0000022171,0.0000022162, -0.0000022167,0.0000022181,0.0000022186,0.0000022205,0.0000022287, -0.0000022407,0.0000022491,0.0000022512,0.0000022522,0.0000022546, -0.0000022572,0.0000022580,0.0000022576,0.0000022568,0.0000022569, -0.0000022579,0.0000022589,0.0000022596,0.0000022594,0.0000022585, -0.0000022571,0.0000022553,0.0000022528,0.0000022495,0.0000022451, -0.0000022401,0.0000022345,0.0000022280,0.0000022215,0.0000022159, -0.0000022148,0.0000022162,0.0000022193,0.0000022233,0.0000022280, -0.0000022323,0.0000022362,0.0000022404,0.0000022451,0.0000022499, -0.0000022534,0.0000022551,0.0000022546,0.0000022540,0.0000022544, -0.0000022551,0.0000022561,0.0000022567,0.0000022558,0.0000022530, -0.0000022482,0.0000022421,0.0000022355,0.0000022288,0.0000022228, -0.0000022183,0.0000022147,0.0000022137,0.0000022158,0.0000022199, -0.0000022255,0.0000022327,0.0000022420,0.0000022508,0.0000022569, -0.0000022610,0.0000022635,0.0000022644,0.0000022643,0.0000022636, -0.0000022620,0.0000022592,0.0000022549,0.0000022497,0.0000022460, -0.0000022448,0.0000022448,0.0000022447,0.0000022446,0.0000022461, -0.0000022488,0.0000022504,0.0000022506,0.0000022514,0.0000022562, -0.0000022630,0.0000022669,0.0000022669,0.0000022635,0.0000022591, -0.0000022568,0.0000022561,0.0000022538,0.0000022512,0.0000022508, -0.0000022517,0.0000022522,0.0000022522,0.0000022538,0.0000022576, -0.0000022618,0.0000022647,0.0000022650,0.0000022639,0.0000022619, -0.0000022574,0.0000022496,0.0000022394,0.0000022283,0.0000022180, -0.0000022088,0.0000022023,0.0000022013,0.0000022019,0.0000022003, -0.0000021991,0.0000022019,0.0000022090,0.0000022184,0.0000022276, -0.0000022354,0.0000022406,0.0000022411,0.0000022381,0.0000022303, -0.0000022212,0.0000022134,0.0000022086,0.0000022069,0.0000022062, -0.0000022055,0.0000022049,0.0000022055,0.0000022073,0.0000022090, -0.0000022101,0.0000022096,0.0000022060,0.0000021994,0.0000021909, -0.0000021817,0.0000021729,0.0000021672,0.0000021665,0.0000021693, -0.0000021742,0.0000021793,0.0000021833,0.0000021856,0.0000021863, -0.0000021865,0.0000021864,0.0000021857,0.0000021833,0.0000021766, -0.0000021658,0.0000021570,0.0000021549,0.0000021572,0.0000021609, -0.0000021626,0.0000021628,0.0000021627,0.0000021626,0.0000021645, -0.0000021655,0.0000021614,0.0000021536,0.0000021493,0.0000021487, -0.0000021471,0.0000021448,0.0000021449,0.0000021465,0.0000021462, -0.0000021429,0.0000021378,0.0000021324,0.0000021313,0.0000021376, -0.0000021537,0.0000021699,0.0000021793,0.0000021860,0.0000021939, -0.0000022020,0.0000022083,0.0000022122,0.0000022159,0.0000022200, -0.0000022236,0.0000022254,0.0000022240,0.0000022214,0.0000022223, -0.0000022266,0.0000022289,0.0000022346,0.0000022563,0.0000022875, -0.0000023112,0.0000023208,0.0000023231,0.0000023249,0.0000023255, -0.0000023245,0.0000023238,0.0000023231,0.0000023199,0.0000023148, -0.0000023100,0.0000023065,0.0000023042,0.0000023024,0.0000023010, -0.0000022996,0.0000022987,0.0000022985,0.0000022989,0.0000022989, -0.0000022982,0.0000022968,0.0000022949,0.0000022917,0.0000022876, -0.0000022834,0.0000022799,0.0000022776,0.0000022768,0.0000022757, -0.0000022734,0.0000022669,0.0000022570,0.0000022465,0.0000022384, -0.0000022328,0.0000022268,0.0000022182,0.0000022090,0.0000022020, -0.0000021973,0.0000021935,0.0000021950,0.0000021899,0.0000021845, -0.0000021805,0.0000021789,0.0000021840,0.0000021938,0.0000022075, -0.0000022210,0.0000022320,0.0000022399,0.0000022463,0.0000022530, -0.0000022600,0.0000022665,0.0000022741,0.0000022859,0.0000023017, -0.0000023171,0.0000023269,0.0000023298,0.0000023289,0.0000023265, -0.0000023238,0.0000023226,0.0000023239,0.0000023248,0.0000023215, -0.0000023115,0.0000023037,0.0000023039,0.0000023099,0.0000023168, -0.0000023222,0.0000023288,0.0000023389,0.0000023437,0.0000023361, -0.0000023252,0.0000023239,0.0000023289,0.0000023344,0.0000023388, -0.0000023434,0.0000023478,0.0000023505,0.0000023509,0.0000023466, -0.0000023397,0.0000023347,0.0000023322,0.0000023302,0.0000023276, -0.0000023250,0.0000023228,0.0000023197,0.0000023152,0.0000023105, -0.0000023069,0.0000023042,0.0000023014,0.0000022976,0.0000022930, -0.0000022898,0.0000022885,0.0000022879,0.0000022873,0.0000022875, -0.0000022883,0.0000022888,0.0000022883,0.0000022869,0.0000022854, -0.0000022852,0.0000022867,0.0000022886,0.0000022904,0.0000022915, -0.0000022915,0.0000022917,0.0000022927,0.0000022927,0.0000022933, -0.0000022955,0.0000022992,0.0000023047,0.0000023115,0.0000023205, -0.0000023342,0.0000023480,0.0000023550,0.0000023545,0.0000023525, -0.0000023525,0.0000023567,0.0000023640,0.0000023707,0.0000023755, -0.0000023781,0.0000023772,0.0000023720,0.0000023649,0.0000023576, -0.0000023505,0.0000023433,0.0000023358,0.0000023303,0.0000023296, -0.0000023328,0.0000023365,0.0000023382,0.0000023387,0.0000023409, -0.0000023449,0.0000023486,0.0000023521,0.0000023574,0.0000023635, -0.0000023689,0.0000023730,0.0000023759,0.0000023783,0.0000023812, -0.0000023840,0.0000023857,0.0000023861,0.0000023864,0.0000023866, -0.0000023859,0.0000023835,0.0000023801,0.0000023771,0.0000023747, -0.0000023738,0.0000023739,0.0000023745,0.0000023766,0.0000023816, -0.0000023872,0.0000023893,0.0000023883,0.0000023867,0.0000023863, -0.0000023894,0.0000023993,0.0000024092,0.0000024127,0.0000024102, -0.0000024092,0.0000024197,0.0000024439,0.0000024675,0.0000024876, -0.0000025049,0.0000025170,0.0000025235,0.0000025255,0.0000025237, -0.0000025171,0.0000025102,0.0000025078,0.0000025090,0.0000025096, -0.0000025074,0.0000025022,0.0000024959,0.0000024899,0.0000024822, -0.0000024730,0.0000024636,0.0000024554,0.0000024501,0.0000024483, -0.0000024471,0.0000024433,0.0000024342,0.0000024166,0.0000023903, -0.0000023636,0.0000023459,0.0000023383,0.0000023361,0.0000023356, -0.0000023345,0.0000023322,0.0000023302,0.0000023297,0.0000023316, -0.0000023342,0.0000023341,0.0000023299,0.0000023207,0.0000023119, -0.0000023080,0.0000023081,0.0000023088,0.0000023083,0.0000023074, -0.0000023082,0.0000023128,0.0000023177,0.0000023239,0.0000023310, -0.0000023383,0.0000023439,0.0000023461,0.0000023456,0.0000023443, -0.0000023452,0.0000023500,0.0000023564,0.0000023618,0.0000023656, -0.0000023694,0.0000023748,0.0000023815,0.0000023874,0.0000023913, -0.0000023940,0.0000023956,0.0000023968,0.0000023987,0.0000024019, -0.0000024054,0.0000024083,0.0000024113,0.0000024158,0.0000024220, -0.0000024292,0.0000024361,0.0000024420,0.0000024462,0.0000024493, -0.0000024530,0.0000024580,0.0000024638,0.0000024687,0.0000024716, -0.0000024727,0.0000024730,0.0000024737,0.0000024764,0.0000024811, -0.0000024863,0.0000024911,0.0000024952,0.0000024987,0.0000025012, -0.0000025024,0.0000025020,0.0000025003,0.0000024963,0.0000024903, -0.0000024839,0.0000024778,0.0000024718,0.0000024663,0.0000024622, -0.0000024601,0.0000024594,0.0000024575,0.0000024539,0.0000024499, -0.0000024478,0.0000024485,0.0000024521,0.0000024566,0.0000024588, -0.0000024573,0.0000024539,0.0000024505,0.0000024483,0.0000024484, -0.0000024499,0.0000024527,0.0000024560,0.0000024579,0.0000024578, -0.0000024541,0.0000024477,0.0000024419,0.0000024376,0.0000024347, -0.0000024312,0.0000024258,0.0000024188,0.0000024096,0.0000023970, -0.0000023821,0.0000023692,0.0000023629,0.0000023633,0.0000023681, -0.0000023731,0.0000023755,0.0000023744,0.0000023718,0.0000023701, -0.0000023707,0.0000023734,0.0000023763,0.0000023779,0.0000023773, -0.0000023771,0.0000023789,0.0000023838,0.0000023906,0.0000023971, -0.0000024025,0.0000024074,0.0000024114,0.0000024154,0.0000024205, -0.0000024269,0.0000024335,0.0000024402,0.0000024472,0.0000024529, -0.0000024567,0.0000024591,0.0000024607,0.0000024615,0.0000024620, -0.0000024617,0.0000024588,0.0000024513,0.0000024361,0.0000024127, -0.0000023911,0.0000023845,0.0000023886,0.0000023907,0.0000023896, -0.0000023906,0.0000023923,0.0000023911,0.0000023863,0.0000023815, -0.0000023785,0.0000023774,0.0000023764,0.0000023744,0.0000023732, -0.0000023743,0.0000023777,0.0000023800,0.0000023775,0.0000023700, -0.0000023608,0.0000023507,0.0000023396,0.0000023287,0.0000023193, -0.0000023129,0.0000023112,0.0000023106,0.0000023103,0.0000023108, -0.0000023130,0.0000023163,0.0000023209,0.0000023247,0.0000023255, -0.0000023240,0.0000023195,0.0000023136,0.0000023080,0.0000023041, -0.0000023026,0.0000023024,0.0000023068,0.0000023125,0.0000023169, -0.0000023222,0.0000023298,0.0000023334,0.0000023300,0.0000023304, -0.0000023471,0.0000023742,0.0000023909,0.0000023966,0.0000023944, -0.0000023895,0.0000023851,0.0000023818,0.0000023800,0.0000023796, -0.0000023808,0.0000023842,0.0000023865,0.0000023879,0.0000023894, -0.0000023907,0.0000023944,0.0000024049,0.0000024180,0.0000024285, -0.0000024316,0.0000024287,0.0000024254,0.0000024223,0.0000024207, -0.0000024207,0.0000024216,0.0000024219,0.0000024224,0.0000024222, -0.0000024225,0.0000024226,0.0000024212,0.0000024179,0.0000024137, -0.0000024088,0.0000024044,0.0000023997,0.0000023926,0.0000023838, -0.0000023743,0.0000023642,0.0000023582,0.0000023562,0.0000023571, -0.0000023608,0.0000023637,0.0000023628,0.0000023576,0.0000023514, -0.0000023442,0.0000023374,0.0000023333,0.0000023334,0.0000023341, -0.0000023327,0.0000023296,0.0000023245,0.0000023176,0.0000023101, -0.0000023028,0.0000022952,0.0000022893,0.0000022863,0.0000022850, -0.0000022854,0.0000022877,0.0000022907,0.0000022932,0.0000022946, -0.0000022917,0.0000022810,0.0000022648,0.0000022489,0.0000022394, -0.0000022366,0.0000022365,0.0000022356,0.0000022344,0.0000022336, -0.0000022347,0.0000022354,0.0000022342,0.0000022316,0.0000022275, -0.0000022240,0.0000022226,0.0000022221,0.0000022230,0.0000022243, -0.0000022257,0.0000022285,0.0000022333,0.0000022437,0.0000022599, -0.0000022736,0.0000022816,0.0000022846,0.0000022842,0.0000022835, -0.0000022785,0.0000022664,0.0000022544,0.0000022479,0.0000022452, -0.0000022454,0.0000022447,0.0000022442,0.0000022548,0.0000022776, -0.0000022996,0.0000023099,0.0000023090,0.0000023040,0.0000023003, -0.0000022980,0.0000022911,0.0000022799,0.0000022696,0.0000022627, -0.0000022589,0.0000022584,0.0000022595,0.0000022596,0.0000022580, -0.0000022550,0.0000022505,0.0000022445,0.0000022376,0.0000022310, -0.0000022274,0.0000022283,0.0000022312,0.0000022364,0.0000022425, -0.0000022479,0.0000022506,0.0000022500,0.0000022459,0.0000022394, -0.0000022343,0.0000022368,0.0000022494,0.0000022691,0.0000022863, -0.0000022988,0.0000023090,0.0000023172,0.0000023209,0.0000023205, -0.0000023164,0.0000023095,0.0000023005,0.0000022910,0.0000022822, -0.0000022765,0.0000022765,0.0000022860,0.0000023042,0.0000023177, -0.0000023207,0.0000023195,0.0000023247,0.0000023348,0.0000023413, -0.0000023551,0.0000023754,0.0000023857,0.0000023893,0.0000023932, -0.0000023971,0.0000024047,0.0000024147,0.0000024214,0.0000024221, -0.0000024146,0.0000024012,0.0000024025,0.0000024218,0.0000024433, -0.0000024592,0.0000024716,0.0000024812,0.0000024869,0.0000024868, -0.0000024735,0.0000024489,0.0000024303,0.0000024297,0.0000024414, -0.0000024532,0.0000024545,0.0000024477,0.0000024414,0.0000024356, -0.0000024248,0.0000024083,0.0000023914,0.0000023790,0.0000023687, -0.0000023620,0.0000023646,0.0000023753,0.0000023841,0.0000023987, -0.0000024114,0.0000024436,0.0000024794,0.0000024910,0.0000024785, -0.0000024993,0.0000025748,0.0000026200,0.0000026137,0.0000025517, -0.0000024897,0.0000024658,0.0000024609,0.0000024608,0.0000024521, -0.0000024281,0.0000024082,0.0000024038,0.0000024042,0.0000024067, -0.0000024151,0.0000024273,0.0000024394,0.0000024484,0.0000024505, -0.0000024462,0.0000024379,0.0000024333,0.0000024344,0.0000024383, -0.0000024420,0.0000024443,0.0000024459,0.0000024466,0.0000024473, -0.0000024486,0.0000024492,0.0000024475,0.0000024438,0.0000024397, -0.0000024356,0.0000024339,0.0000024345,0.0000024359,0.0000024367, -0.0000024370,0.0000024357,0.0000024293,0.0000024199,0.0000024104, -0.0000024033,0.0000024007,0.0000024007,0.0000024019,0.0000024018, -0.0000023989,0.0000023935,0.0000023869,0.0000023798,0.0000023732, -0.0000023667,0.0000023600,0.0000023543,0.0000023505,0.0000023485, -0.0000023466,0.0000023444,0.0000023409,0.0000023360,0.0000023298, -0.0000023229,0.0000023159,0.0000023108,0.0000023099,0.0000023137, -0.0000023204,0.0000023278,0.0000023347,0.0000023415,0.0000023482, -0.0000023556,0.0000023639,0.0000023731,0.0000023830,0.0000023929, -0.0000024019,0.0000024099,0.0000024175,0.0000024242,0.0000024296, -0.0000024336,0.0000024365,0.0000024388,0.0000024407,0.0000024421, -0.0000024429,0.0000024432,0.0000024426,0.0000024414,0.0000024395, -0.0000024366,0.0000024328,0.0000024279,0.0000024219,0.0000024144, -0.0000024050,0.0000023940,0.0000023825,0.0000023715,0.0000023617, -0.0000023537,0.0000023479,0.0000023447,0.0000023443,0.0000023441, -0.0000023436,0.0000023425,0.0000023413,0.0000023397,0.0000023388, -0.0000023388,0.0000023401,0.0000023438,0.0000023485,0.0000023529, -0.0000023556,0.0000023566,0.0000023571,0.0000023584,0.0000023611, -0.0000023647,0.0000023674,0.0000023684,0.0000023685,0.0000023682, -0.0000023679,0.0000023670,0.0000023650,0.0000023614,0.0000023555, -0.0000023450,0.0000023283,0.0000023073,0.0000022877,0.0000022758, -0.0000022688,0.0000022566,0.0000022419,0.0000022356,0.0000022370, -0.0000022413,0.0000022462,0.0000022498,0.0000022510,0.0000022507, -0.0000022493,0.0000022469,0.0000022438,0.0000022399,0.0000022357, -0.0000022334,0.0000022332,0.0000022319,0.0000022269,0.0000022177, -0.0000022078,0.0000022019,0.0000021988,0.0000021972,0.0000021987, -0.0000022008,0.0000022007,0.0000022019,0.0000022069,0.0000022110, -0.0000022171,0.0000022297,0.0000022339,0.0000022237,0.0000022194, -0.0000022316,0.0000022434,0.0000022441,0.0000022425,0.0000022494, -0.0000022658,0.0000022832,0.0000022961,0.0000023082,0.0000023250, -0.0000023445,0.0000023560,0.0000023549,0.0000023477,0.0000023393, -0.0000023316,0.0000023290,0.0000023312,0.0000023380,0.0000023458, -0.0000023520,0.0000023564,0.0000023606,0.0000023648,0.0000023675, -0.0000023678,0.0000023677,0.0000023741,0.0000023917,0.0000024116, -0.0000024246,0.0000024332,0.0000024409,0.0000024464,0.0000024505, -0.0000024567,0.0000024657,0.0000024722,0.0000024727,0.0000024681, -0.0000024589,0.0000024479,0.0000024395,0.0000024360,0.0000024365, -0.0000024385,0.0000024397,0.0000024398,0.0000024388,0.0000024364, -0.0000024320,0.0000024248,0.0000024151,0.0000024051,0.0000023970, -0.0000023907,0.0000023839,0.0000023751,0.0000023658,0.0000023583, -0.0000023532,0.0000023499,0.0000023489,0.0000023491,0.0000023502, -0.0000023517,0.0000023529,0.0000023537,0.0000023544,0.0000023553, -0.0000023575,0.0000023612,0.0000023655,0.0000023701,0.0000023748, -0.0000023793,0.0000023835,0.0000023874,0.0000023907,0.0000023932, -0.0000023959,0.0000024000,0.0000024055,0.0000024114,0.0000024167, -0.0000024197,0.0000024194,0.0000024155,0.0000024099,0.0000024055, -0.0000024045,0.0000024063,0.0000024089,0.0000024109,0.0000024143, -0.0000024224,0.0000024367,0.0000024544,0.0000024704,0.0000024820, -0.0000024895,0.0000024927,0.0000024914,0.0000024889,0.0000024897, -0.0000024958,0.0000025043,0.0000025111,0.0000025142,0.0000025142, -0.0000025120,0.0000025113,0.0000025136,0.0000025183,0.0000025228, -0.0000025245,0.0000025255,0.0000025303,0.0000025404,0.0000025506, -0.0000025567,0.0000025602,0.0000025637,0.0000025670,0.0000025700, -0.0000025732,0.0000025753,0.0000025762,0.0000025780,0.0000025810, -0.0000025827,0.0000025821,0.0000025800,0.0000025784,0.0000025779, -0.0000025783,0.0000025790,0.0000025798,0.0000025804,0.0000025802, -0.0000025791,0.0000025774,0.0000025753,0.0000025732,0.0000025709, -0.0000025681,0.0000025647,0.0000025626,0.0000025623,0.0000025622, -0.0000025608,0.0000025590,0.0000025589,0.0000025607,0.0000025617, -0.0000025602,0.0000025454,0.0000025178,0.0000024911,0.0000024649, -0.0000024339,0.0000024136,0.0000024120,0.0000024197,0.0000024260, -0.0000024237,0.0000024148,0.0000024078,0.0000024078,0.0000024205, -0.0000024438,0.0000024620,0.0000024719,0.0000024938,0.0000025353, -0.0000025707,0.0000025825,0.0000025845,0.0000025902,0.0000025980, -0.0000026030,0.0000026049,0.0000026048,0.0000026033,0.0000026021, -0.0000026012,0.0000025994,0.0000025974,0.0000025972,0.0000025995, -0.0000026049,0.0000026124,0.0000026197,0.0000026244,0.0000026261, -0.0000026264,0.0000026263,0.0000026263,0.0000026270,0.0000026283, -0.0000026287,0.0000026264,0.0000026203,0.0000026149,0.0000026130, -0.0000026109,0.0000026044,0.0000025966,0.0000025930,0.0000025930, -0.0000025953,0.0000025991,0.0000026005,0.0000025992,0.0000025968, -0.0000025893,0.0000025738,0.0000025604,0.0000025478,0.0000025254, -0.0000025039,0.0000024948,0.0000024889,0.0000024687,0.0000024331, -0.0000024049,0.0000023931,0.0000023806,0.0000023478,0.0000023008, -0.0000022632,0.0000022410,0.0000022260,0.0000022144,0.0000022076, -0.0000022062,0.0000022080,0.0000022097,0.0000022099,0.0000022085, -0.0000022058,0.0000022015,0.0000021962,0.0000021904,0.0000021844, -0.0000021784,0.0000021733,0.0000021700,0.0000021680,0.0000021664, -0.0000021656,0.0000021650,0.0000021637,0.0000021618,0.0000021620, -0.0000021643,0.0000021699,0.0000021779,0.0000021870,0.0000021953, -0.0000022025,0.0000022092,0.0000022146,0.0000022172,0.0000022173, -0.0000022161,0.0000022153,0.0000022167,0.0000022184,0.0000022185, -0.0000022186,0.0000022230,0.0000022321,0.0000022421,0.0000022495, -0.0000022536,0.0000022552,0.0000022550,0.0000022538,0.0000022518, -0.0000022499,0.0000022491,0.0000022493,0.0000022492,0.0000022483, -0.0000022468,0.0000022450,0.0000022429,0.0000022401,0.0000022361, -0.0000022311,0.0000022258,0.0000022205,0.0000022147,0.0000022097, -0.0000022058,0.0000022063,0.0000022101,0.0000022147,0.0000022195, -0.0000022247,0.0000022295,0.0000022332,0.0000022363,0.0000022392, -0.0000022425,0.0000022456,0.0000022482,0.0000022500,0.0000022502, -0.0000022500,0.0000022490,0.0000022497,0.0000022499,0.0000022486, -0.0000022456,0.0000022413,0.0000022361,0.0000022305,0.0000022246, -0.0000022185,0.0000022134,0.0000022092,0.0000022066,0.0000022067, -0.0000022094,0.0000022149,0.0000022217,0.0000022292,0.0000022378, -0.0000022464,0.0000022531,0.0000022577,0.0000022610,0.0000022634, -0.0000022645,0.0000022648,0.0000022645,0.0000022630,0.0000022591, -0.0000022539,0.0000022501,0.0000022485,0.0000022483,0.0000022477, -0.0000022474,0.0000022487,0.0000022502,0.0000022507,0.0000022507, -0.0000022528,0.0000022591,0.0000022654,0.0000022673,0.0000022656, -0.0000022612,0.0000022577,0.0000022568,0.0000022552,0.0000022521, -0.0000022510,0.0000022520,0.0000022532,0.0000022528,0.0000022524, -0.0000022546,0.0000022591,0.0000022633,0.0000022650,0.0000022645, -0.0000022630,0.0000022606,0.0000022553,0.0000022465,0.0000022356, -0.0000022244,0.0000022136,0.0000022053,0.0000022026,0.0000022034, -0.0000022028,0.0000022011,0.0000022022,0.0000022083,0.0000022170, -0.0000022255,0.0000022332,0.0000022392,0.0000022411,0.0000022381, -0.0000022299,0.0000022207,0.0000022134,0.0000022089,0.0000022074, -0.0000022074,0.0000022076,0.0000022071,0.0000022066,0.0000022073, -0.0000022095,0.0000022123,0.0000022142,0.0000022140,0.0000022110, -0.0000022049,0.0000021971,0.0000021888,0.0000021804,0.0000021736, -0.0000021710,0.0000021724,0.0000021770,0.0000021826,0.0000021878, -0.0000021913,0.0000021926,0.0000021926,0.0000021925,0.0000021920, -0.0000021906,0.0000021864,0.0000021779,0.0000021684,0.0000021619, -0.0000021601,0.0000021611,0.0000021622,0.0000021626,0.0000021631, -0.0000021635,0.0000021645,0.0000021662,0.0000021655,0.0000021590, -0.0000021508,0.0000021459,0.0000021434,0.0000021425,0.0000021429, -0.0000021440,0.0000021436,0.0000021399,0.0000021337,0.0000021266, -0.0000021234,0.0000021267,0.0000021413,0.0000021622,0.0000021774, -0.0000021857,0.0000021929,0.0000022014,0.0000022090,0.0000022131, -0.0000022150,0.0000022174,0.0000022204,0.0000022234,0.0000022247, -0.0000022231,0.0000022214,0.0000022243,0.0000022293,0.0000022314, -0.0000022415,0.0000022675,0.0000022964,0.0000023146,0.0000023206, -0.0000023221,0.0000023248,0.0000023266,0.0000023263,0.0000023261, -0.0000023253,0.0000023219,0.0000023164,0.0000023113,0.0000023074, -0.0000023043,0.0000023017,0.0000022994,0.0000022977,0.0000022964, -0.0000022954,0.0000022944,0.0000022931,0.0000022917,0.0000022898, -0.0000022868,0.0000022833,0.0000022796,0.0000022755,0.0000022720, -0.0000022706,0.0000022714,0.0000022735,0.0000022739,0.0000022709, -0.0000022620,0.0000022494,0.0000022390,0.0000022319,0.0000022247, -0.0000022156,0.0000022070,0.0000022017,0.0000021985,0.0000021993, -0.0000021960,0.0000021908,0.0000021843,0.0000021790,0.0000021772, -0.0000021776,0.0000021863,0.0000022013,0.0000022183,0.0000022312, -0.0000022386,0.0000022441,0.0000022506,0.0000022576,0.0000022642, -0.0000022729,0.0000022872,0.0000023049,0.0000023190,0.0000023245, -0.0000023238,0.0000023213,0.0000023194,0.0000023202,0.0000023233, -0.0000023237,0.0000023173,0.0000023084,0.0000023060,0.0000023092, -0.0000023153,0.0000023208,0.0000023257,0.0000023348,0.0000023430, -0.0000023405,0.0000023270,0.0000023190,0.0000023210,0.0000023276, -0.0000023332,0.0000023384,0.0000023447,0.0000023500,0.0000023513, -0.0000023489,0.0000023422,0.0000023359,0.0000023322,0.0000023299, -0.0000023278,0.0000023252,0.0000023223,0.0000023193,0.0000023153, -0.0000023104,0.0000023056,0.0000023020,0.0000022992,0.0000022962, -0.0000022919,0.0000022865,0.0000022825,0.0000022809,0.0000022802, -0.0000022794,0.0000022791,0.0000022790,0.0000022782,0.0000022767, -0.0000022753,0.0000022744,0.0000022751,0.0000022776,0.0000022803, -0.0000022827,0.0000022842,0.0000022844,0.0000022847,0.0000022864, -0.0000022872,0.0000022874,0.0000022889,0.0000022926,0.0000022991, -0.0000023059,0.0000023107,0.0000023180,0.0000023310,0.0000023453, -0.0000023531,0.0000023549,0.0000023534,0.0000023534,0.0000023565, -0.0000023627,0.0000023691,0.0000023749,0.0000023773,0.0000023758, -0.0000023715,0.0000023646,0.0000023572,0.0000023505,0.0000023437, -0.0000023358,0.0000023298,0.0000023285,0.0000023307,0.0000023351, -0.0000023380,0.0000023399,0.0000023429,0.0000023465,0.0000023489, -0.0000023511,0.0000023548,0.0000023594,0.0000023638,0.0000023680, -0.0000023724,0.0000023766,0.0000023802,0.0000023824,0.0000023832, -0.0000023834,0.0000023845,0.0000023857,0.0000023856,0.0000023847, -0.0000023835,0.0000023816,0.0000023785,0.0000023765,0.0000023760, -0.0000023758,0.0000023766,0.0000023804,0.0000023862,0.0000023891, -0.0000023882,0.0000023862,0.0000023848,0.0000023857,0.0000023931, -0.0000024031,0.0000024080,0.0000024071,0.0000024036,0.0000024083, -0.0000024294,0.0000024568,0.0000024802,0.0000024991,0.0000025130, -0.0000025207,0.0000025230,0.0000025214,0.0000025156,0.0000025092, -0.0000025067,0.0000025082,0.0000025093,0.0000025074,0.0000025024, -0.0000024961,0.0000024901,0.0000024832,0.0000024745,0.0000024656, -0.0000024574,0.0000024511,0.0000024480,0.0000024469,0.0000024448, -0.0000024384,0.0000024247,0.0000024035,0.0000023795,0.0000023598, -0.0000023472,0.0000023406,0.0000023383,0.0000023377,0.0000023362, -0.0000023340,0.0000023333,0.0000023359,0.0000023406,0.0000023424, -0.0000023391,0.0000023293,0.0000023176,0.0000023107,0.0000023102, -0.0000023116,0.0000023130,0.0000023140,0.0000023151,0.0000023170, -0.0000023186,0.0000023209,0.0000023248,0.0000023307,0.0000023377, -0.0000023437,0.0000023457,0.0000023462,0.0000023460,0.0000023476, -0.0000023516,0.0000023570,0.0000023624,0.0000023661,0.0000023683, -0.0000023711,0.0000023757,0.0000023814,0.0000023866,0.0000023902, -0.0000023925,0.0000023950,0.0000023983,0.0000024019,0.0000024054, -0.0000024083,0.0000024111,0.0000024151,0.0000024206,0.0000024276, -0.0000024351,0.0000024411,0.0000024449,0.0000024473,0.0000024500, -0.0000024538,0.0000024585,0.0000024634,0.0000024679,0.0000024713, -0.0000024737,0.0000024764,0.0000024794,0.0000024827,0.0000024862, -0.0000024897,0.0000024935,0.0000024971,0.0000024997,0.0000025007, -0.0000024999,0.0000024970,0.0000024919,0.0000024855,0.0000024793, -0.0000024735,0.0000024677,0.0000024624,0.0000024589,0.0000024575, -0.0000024558,0.0000024531,0.0000024501,0.0000024484,0.0000024485, -0.0000024509,0.0000024550,0.0000024580,0.0000024576,0.0000024557, -0.0000024545,0.0000024547,0.0000024561,0.0000024585,0.0000024613, -0.0000024636,0.0000024651,0.0000024649,0.0000024621,0.0000024565, -0.0000024491,0.0000024417,0.0000024358,0.0000024319,0.0000024297, -0.0000024280,0.0000024249,0.0000024181,0.0000024064,0.0000023910, -0.0000023759,0.0000023654,0.0000023619,0.0000023629,0.0000023688, -0.0000023749,0.0000023780,0.0000023776,0.0000023765,0.0000023774, -0.0000023799,0.0000023808,0.0000023792,0.0000023762,0.0000023750, -0.0000023766,0.0000023822,0.0000023890,0.0000023952,0.0000024016, -0.0000024083,0.0000024141,0.0000024189,0.0000024238,0.0000024286, -0.0000024332,0.0000024385,0.0000024439,0.0000024489,0.0000024530, -0.0000024563,0.0000024590,0.0000024603,0.0000024584,0.0000024520, -0.0000024395,0.0000024189,0.0000023966,0.0000023862,0.0000023872, -0.0000023900,0.0000023870,0.0000023860,0.0000023895,0.0000023912, -0.0000023906,0.0000023870,0.0000023803,0.0000023743,0.0000023725, -0.0000023728,0.0000023722,0.0000023711,0.0000023712,0.0000023732, -0.0000023767,0.0000023778,0.0000023734,0.0000023655,0.0000023540, -0.0000023381,0.0000023230,0.0000023128,0.0000023069,0.0000023057, -0.0000023047,0.0000023039,0.0000023052,0.0000023069,0.0000023090, -0.0000023135,0.0000023179,0.0000023199,0.0000023188,0.0000023145, -0.0000023083,0.0000023033,0.0000023021,0.0000023014,0.0000022996, -0.0000022996,0.0000023024,0.0000023086,0.0000023136,0.0000023185, -0.0000023265,0.0000023354,0.0000023377,0.0000023322,0.0000023334, -0.0000023501,0.0000023737,0.0000023854,0.0000023865,0.0000023825, -0.0000023780,0.0000023756,0.0000023758,0.0000023769,0.0000023796, -0.0000023831,0.0000023861,0.0000023893,0.0000023902,0.0000023895, -0.0000023897,0.0000023939,0.0000024022,0.0000024117,0.0000024183, -0.0000024203,0.0000024197,0.0000024172,0.0000024163,0.0000024177, -0.0000024195,0.0000024218,0.0000024246,0.0000024260,0.0000024252, -0.0000024227,0.0000024184,0.0000024128,0.0000024064,0.0000023994, -0.0000023923,0.0000023855,0.0000023773,0.0000023695,0.0000023625, -0.0000023584,0.0000023581,0.0000023598,0.0000023624,0.0000023646, -0.0000023637,0.0000023578,0.0000023486,0.0000023408,0.0000023358, -0.0000023337,0.0000023326,0.0000023306,0.0000023247,0.0000023168, -0.0000023087,0.0000023019,0.0000022973,0.0000022941,0.0000022897, -0.0000022851,0.0000022822,0.0000022802,0.0000022794,0.0000022813, -0.0000022842,0.0000022854,0.0000022816,0.0000022709,0.0000022562, -0.0000022435,0.0000022363,0.0000022346,0.0000022353,0.0000022357, -0.0000022359,0.0000022365,0.0000022379,0.0000022399,0.0000022417, -0.0000022404,0.0000022358,0.0000022310,0.0000022267,0.0000022225, -0.0000022202,0.0000022214,0.0000022245,0.0000022252,0.0000022266, -0.0000022316,0.0000022434,0.0000022607,0.0000022737,0.0000022784, -0.0000022799,0.0000022808,0.0000022808,0.0000022741,0.0000022610, -0.0000022511,0.0000022481,0.0000022472,0.0000022471,0.0000022457, -0.0000022471,0.0000022612,0.0000022851,0.0000023038,0.0000023104, -0.0000023087,0.0000023019,0.0000022975,0.0000022950,0.0000022885, -0.0000022776,0.0000022671,0.0000022594,0.0000022550,0.0000022539, -0.0000022555,0.0000022565,0.0000022549,0.0000022508,0.0000022452, -0.0000022386,0.0000022322,0.0000022283,0.0000022275,0.0000022294, -0.0000022331,0.0000022379,0.0000022435,0.0000022484,0.0000022503, -0.0000022490,0.0000022434,0.0000022367,0.0000022342,0.0000022400, -0.0000022572,0.0000022783,0.0000022955,0.0000023069,0.0000023139, -0.0000023185,0.0000023214,0.0000023218,0.0000023192,0.0000023135, -0.0000023049,0.0000022943,0.0000022837,0.0000022766,0.0000022761, -0.0000022828,0.0000022979,0.0000023124,0.0000023166,0.0000023142, -0.0000023161,0.0000023265,0.0000023344,0.0000023443,0.0000023653, -0.0000023814,0.0000023867,0.0000023917,0.0000023959,0.0000024002, -0.0000024095,0.0000024198,0.0000024244,0.0000024222,0.0000024078, -0.0000023954,0.0000024003,0.0000024212,0.0000024416,0.0000024522, -0.0000024576,0.0000024627,0.0000024657,0.0000024615,0.0000024471, -0.0000024325,0.0000024283,0.0000024371,0.0000024523,0.0000024587, -0.0000024552,0.0000024458,0.0000024395,0.0000024338,0.0000024228, -0.0000024066,0.0000023904,0.0000023785,0.0000023682,0.0000023612, -0.0000023622,0.0000023715,0.0000023793,0.0000023923,0.0000024046, -0.0000024276,0.0000024643,0.0000024853,0.0000024810,0.0000024726, -0.0000025261,0.0000025979,0.0000026180,0.0000025923,0.0000025230, -0.0000024740,0.0000024592,0.0000024570,0.0000024575,0.0000024496, -0.0000024279,0.0000024089,0.0000024012,0.0000024003,0.0000024044, -0.0000024136,0.0000024258,0.0000024386,0.0000024491,0.0000024521, -0.0000024477,0.0000024388,0.0000024334,0.0000024328,0.0000024342, -0.0000024380,0.0000024416,0.0000024442,0.0000024463,0.0000024482, -0.0000024491,0.0000024492,0.0000024482,0.0000024462,0.0000024429, -0.0000024385,0.0000024346,0.0000024323,0.0000024317,0.0000024340, -0.0000024360,0.0000024347,0.0000024310,0.0000024249,0.0000024185, -0.0000024142,0.0000024116,0.0000024113,0.0000024127,0.0000024133, -0.0000024104,0.0000024048,0.0000023980,0.0000023911,0.0000023840, -0.0000023762,0.0000023676,0.0000023596,0.0000023531,0.0000023483, -0.0000023451,0.0000023427,0.0000023397,0.0000023348,0.0000023283, -0.0000023203,0.0000023127,0.0000023076,0.0000023068,0.0000023079, -0.0000023124,0.0000023187,0.0000023251,0.0000023308,0.0000023364, -0.0000023426,0.0000023494,0.0000023566,0.0000023640,0.0000023711, -0.0000023776,0.0000023837,0.0000023897,0.0000023952,0.0000023997, -0.0000024032,0.0000024061,0.0000024089,0.0000024108,0.0000024117, -0.0000024116,0.0000024103,0.0000024079,0.0000024044,0.0000023998, -0.0000023943,0.0000023881,0.0000023816,0.0000023748,0.0000023679, -0.0000023608,0.0000023545,0.0000023494,0.0000023458,0.0000023438, -0.0000023430,0.0000023425,0.0000023431,0.0000023432,0.0000023424, -0.0000023410,0.0000023394,0.0000023391,0.0000023393,0.0000023412, -0.0000023447,0.0000023496,0.0000023542,0.0000023576,0.0000023599, -0.0000023615,0.0000023633,0.0000023652,0.0000023670,0.0000023689, -0.0000023704,0.0000023706,0.0000023697,0.0000023684,0.0000023676, -0.0000023673,0.0000023667,0.0000023644,0.0000023601,0.0000023537, -0.0000023420,0.0000023232,0.0000023008,0.0000022827,0.0000022733, -0.0000022648,0.0000022503,0.0000022373,0.0000022336,0.0000022345, -0.0000022378,0.0000022428,0.0000022476,0.0000022500,0.0000022494, -0.0000022462,0.0000022413,0.0000022366,0.0000022341,0.0000022340, -0.0000022351,0.0000022344,0.0000022293,0.0000022199,0.0000022094, -0.0000022028,0.0000022002,0.0000021992,0.0000022003,0.0000022019, -0.0000022008,0.0000021993,0.0000022006,0.0000022053,0.0000022092, -0.0000022173,0.0000022301,0.0000022319,0.0000022219,0.0000022208, -0.0000022342,0.0000022447,0.0000022449,0.0000022432,0.0000022492, -0.0000022666,0.0000022858,0.0000022985,0.0000023090,0.0000023255, -0.0000023444,0.0000023531,0.0000023508,0.0000023429,0.0000023338, -0.0000023277,0.0000023276,0.0000023331,0.0000023416,0.0000023499, -0.0000023567,0.0000023619,0.0000023656,0.0000023675,0.0000023675, -0.0000023673,0.0000023721,0.0000023880,0.0000024080,0.0000024225, -0.0000024316,0.0000024385,0.0000024437,0.0000024479,0.0000024531, -0.0000024612,0.0000024693,0.0000024720,0.0000024705,0.0000024645, -0.0000024542,0.0000024420,0.0000024324,0.0000024281,0.0000024283, -0.0000024300,0.0000024313,0.0000024316,0.0000024310,0.0000024288, -0.0000024246,0.0000024180,0.0000024091,0.0000023996,0.0000023914, -0.0000023839,0.0000023751,0.0000023640,0.0000023528,0.0000023442, -0.0000023379,0.0000023337,0.0000023324,0.0000023330,0.0000023344, -0.0000023356,0.0000023362,0.0000023365,0.0000023367,0.0000023372, -0.0000023383,0.0000023408,0.0000023442,0.0000023482,0.0000023524, -0.0000023572,0.0000023629,0.0000023693,0.0000023750,0.0000023792, -0.0000023829,0.0000023876,0.0000023933,0.0000023994,0.0000024057, -0.0000024113,0.0000024141,0.0000024129,0.0000024084,0.0000024034, -0.0000024004,0.0000023999,0.0000024010,0.0000024030,0.0000024064, -0.0000024129,0.0000024244,0.0000024401,0.0000024562,0.0000024695, -0.0000024802,0.0000024874,0.0000024890,0.0000024870,0.0000024861, -0.0000024904,0.0000024994,0.0000025079,0.0000025133,0.0000025150, -0.0000025139,0.0000025126,0.0000025140,0.0000025180,0.0000025222, -0.0000025236,0.0000025225,0.0000025233,0.0000025306,0.0000025411, -0.0000025480,0.0000025507,0.0000025526,0.0000025547,0.0000025572, -0.0000025602,0.0000025628,0.0000025652,0.0000025691,0.0000025741, -0.0000025773,0.0000025775,0.0000025768,0.0000025770,0.0000025779, -0.0000025786,0.0000025788,0.0000025781,0.0000025763,0.0000025740, -0.0000025718,0.0000025705,0.0000025696,0.0000025682,0.0000025662, -0.0000025640,0.0000025622,0.0000025615,0.0000025619,0.0000025617, -0.0000025603,0.0000025591,0.0000025598,0.0000025618,0.0000025625, -0.0000025599,0.0000025436,0.0000025159,0.0000024893,0.0000024621, -0.0000024308,0.0000024123,0.0000024139,0.0000024239,0.0000024288, -0.0000024242,0.0000024150,0.0000024105,0.0000024154,0.0000024350, -0.0000024569,0.0000024672,0.0000024794,0.0000025136,0.0000025556, -0.0000025775,0.0000025813,0.0000025835,0.0000025895,0.0000025964, -0.0000026007,0.0000026016,0.0000026004,0.0000025971,0.0000025940, -0.0000025916,0.0000025893,0.0000025881,0.0000025886,0.0000025912, -0.0000025960,0.0000026026,0.0000026089,0.0000026134,0.0000026158, -0.0000026167,0.0000026170,0.0000026181,0.0000026212,0.0000026252, -0.0000026267,0.0000026247,0.0000026188,0.0000026136,0.0000026111, -0.0000026069,0.0000025986,0.0000025910,0.0000025885,0.0000025893, -0.0000025931,0.0000025980,0.0000025992,0.0000025965,0.0000025931, -0.0000025850,0.0000025703,0.0000025593,0.0000025499,0.0000025288, -0.0000025056,0.0000024941,0.0000024875,0.0000024687,0.0000024332, -0.0000024026,0.0000023888,0.0000023751,0.0000023403,0.0000022913, -0.0000022534,0.0000022327,0.0000022198,0.0000022100,0.0000022054, -0.0000022059,0.0000022090,0.0000022117,0.0000022118,0.0000022105, -0.0000022075,0.0000022037,0.0000022001,0.0000021957,0.0000021903, -0.0000021844,0.0000021792,0.0000021755,0.0000021726,0.0000021695, -0.0000021665,0.0000021639,0.0000021604,0.0000021559,0.0000021523, -0.0000021518,0.0000021542,0.0000021621,0.0000021744,0.0000021867, -0.0000021965,0.0000022038,0.0000022093,0.0000022128,0.0000022145, -0.0000022144,0.0000022126,0.0000022121,0.0000022140,0.0000022170, -0.0000022184,0.0000022195,0.0000022210,0.0000022261,0.0000022340, -0.0000022419,0.0000022471,0.0000022489,0.0000022484,0.0000022465, -0.0000022433,0.0000022410,0.0000022398,0.0000022391,0.0000022382, -0.0000022367,0.0000022347,0.0000022321,0.0000022292,0.0000022252, -0.0000022207,0.0000022163,0.0000022124,0.0000022085,0.0000022049, -0.0000022026,0.0000022038,0.0000022076,0.0000022124,0.0000022176, -0.0000022228,0.0000022276,0.0000022315,0.0000022347,0.0000022368, -0.0000022379,0.0000022387,0.0000022399,0.0000022423,0.0000022431, -0.0000022422,0.0000022411,0.0000022414,0.0000022419,0.0000022410, -0.0000022389,0.0000022360,0.0000022327,0.0000022288,0.0000022239, -0.0000022182,0.0000022127,0.0000022078,0.0000022040,0.0000022020, -0.0000022017,0.0000022038,0.0000022101,0.0000022180,0.0000022258, -0.0000022342,0.0000022427,0.0000022496,0.0000022548,0.0000022592, -0.0000022627,0.0000022650,0.0000022661,0.0000022665,0.0000022654, -0.0000022622,0.0000022577,0.0000022538,0.0000022520,0.0000022515, -0.0000022506,0.0000022505,0.0000022509,0.0000022506,0.0000022499, -0.0000022503,0.0000022546,0.0000022620,0.0000022666,0.0000022666, -0.0000022631,0.0000022588,0.0000022574,0.0000022569,0.0000022543, -0.0000022516,0.0000022515,0.0000022533,0.0000022540,0.0000022531, -0.0000022532,0.0000022562,0.0000022607,0.0000022636,0.0000022640, -0.0000022628,0.0000022610,0.0000022583,0.0000022522,0.0000022426, -0.0000022313,0.0000022199,0.0000022098,0.0000022046,0.0000022049, -0.0000022054,0.0000022039,0.0000022045,0.0000022089,0.0000022161, -0.0000022236,0.0000022307,0.0000022370,0.0000022396,0.0000022373, -0.0000022302,0.0000022212,0.0000022137,0.0000022091,0.0000022073, -0.0000022073,0.0000022081,0.0000022091,0.0000022098,0.0000022109, -0.0000022127,0.0000022151,0.0000022172,0.0000022182,0.0000022179, -0.0000022155,0.0000022103,0.0000022034,0.0000021963,0.0000021890, -0.0000021824,0.0000021790,0.0000021799,0.0000021838,0.0000021886, -0.0000021930,0.0000021961,0.0000021972,0.0000021973,0.0000021977, -0.0000021978,0.0000021969,0.0000021936,0.0000021874,0.0000021799, -0.0000021728,0.0000021672,0.0000021640,0.0000021626,0.0000021620, -0.0000021624,0.0000021634,0.0000021641,0.0000021652,0.0000021659, -0.0000021636,0.0000021553,0.0000021457,0.0000021394,0.0000021380, -0.0000021388,0.0000021402,0.0000021399,0.0000021364,0.0000021301, -0.0000021222,0.0000021173,0.0000021180,0.0000021285,0.0000021506, -0.0000021729,0.0000021855,0.0000021929,0.0000022016,0.0000022105, -0.0000022152,0.0000022161,0.0000022170,0.0000022188,0.0000022214, -0.0000022245,0.0000022251,0.0000022223,0.0000022215,0.0000022262, -0.0000022305,0.0000022343,0.0000022501,0.0000022777,0.0000023022, -0.0000023154,0.0000023193,0.0000023214,0.0000023258,0.0000023287, -0.0000023287,0.0000023280,0.0000023272,0.0000023246,0.0000023195, -0.0000023138,0.0000023091,0.0000023056,0.0000023025,0.0000022997, -0.0000022970,0.0000022942,0.0000022916,0.0000022888,0.0000022868, -0.0000022852,0.0000022834,0.0000022809,0.0000022778,0.0000022746, -0.0000022718,0.0000022695,0.0000022682,0.0000022688,0.0000022715, -0.0000022737,0.0000022723,0.0000022631,0.0000022487,0.0000022364, -0.0000022281,0.0000022202,0.0000022117,0.0000022053,0.0000022017, -0.0000022007,0.0000021989,0.0000021958,0.0000021907,0.0000021847, -0.0000021792,0.0000021762,0.0000021772,0.0000021864,0.0000022040, -0.0000022217,0.0000022324,0.0000022375,0.0000022426,0.0000022494, -0.0000022561,0.0000022634,0.0000022760,0.0000022945,0.0000023111, -0.0000023182,0.0000023175,0.0000023155,0.0000023151,0.0000023182, -0.0000023218,0.0000023202,0.0000023129,0.0000023078,0.0000023093, -0.0000023141,0.0000023194,0.0000023237,0.0000023300,0.0000023409, -0.0000023438,0.0000023334,0.0000023183,0.0000023158,0.0000023205, -0.0000023275,0.0000023343,0.0000023410,0.0000023472,0.0000023506, -0.0000023493,0.0000023440,0.0000023382,0.0000023341,0.0000023310, -0.0000023279,0.0000023250,0.0000023221,0.0000023189,0.0000023154, -0.0000023115,0.0000023072,0.0000023028,0.0000022991,0.0000022960, -0.0000022923,0.0000022871,0.0000022812,0.0000022762,0.0000022731, -0.0000022715,0.0000022702,0.0000022695,0.0000022688,0.0000022671, -0.0000022652,0.0000022640,0.0000022638,0.0000022647,0.0000022671, -0.0000022700,0.0000022727,0.0000022744,0.0000022747,0.0000022748, -0.0000022766,0.0000022788,0.0000022799,0.0000022813,0.0000022841, -0.0000022909,0.0000023004,0.0000023073,0.0000023111,0.0000023171, -0.0000023293,0.0000023429,0.0000023527,0.0000023560,0.0000023549, -0.0000023546,0.0000023574,0.0000023621,0.0000023684,0.0000023736, -0.0000023754,0.0000023745,0.0000023707,0.0000023640,0.0000023568, -0.0000023506,0.0000023442,0.0000023369,0.0000023304,0.0000023281, -0.0000023297,0.0000023336,0.0000023374,0.0000023410,0.0000023445, -0.0000023473,0.0000023490,0.0000023504,0.0000023525,0.0000023553, -0.0000023588,0.0000023638,0.0000023695,0.0000023743,0.0000023778, -0.0000023797,0.0000023803,0.0000023810,0.0000023823,0.0000023840, -0.0000023851,0.0000023862,0.0000023869,0.0000023857,0.0000023826, -0.0000023806,0.0000023794,0.0000023779,0.0000023774,0.0000023796, -0.0000023844,0.0000023879,0.0000023877,0.0000023858,0.0000023834, -0.0000023824,0.0000023859,0.0000023949,0.0000024017,0.0000024026, -0.0000023991,0.0000023991,0.0000024148,0.0000024434,0.0000024707, -0.0000024916,0.0000025075,0.0000025178,0.0000025211,0.0000025196, -0.0000025139,0.0000025077,0.0000025057,0.0000025073,0.0000025094, -0.0000025090,0.0000025048,0.0000024982,0.0000024916,0.0000024850, -0.0000024772,0.0000024688,0.0000024606,0.0000024537,0.0000024489, -0.0000024468,0.0000024453,0.0000024406,0.0000024300,0.0000024136, -0.0000023944,0.0000023769,0.0000023629,0.0000023529,0.0000023480, -0.0000023468,0.0000023456,0.0000023432,0.0000023418,0.0000023441, -0.0000023482,0.0000023499,0.0000023477,0.0000023388,0.0000023254, -0.0000023148,0.0000023114,0.0000023127,0.0000023152,0.0000023182, -0.0000023209,0.0000023229,0.0000023237,0.0000023244,0.0000023250, -0.0000023267,0.0000023304,0.0000023362,0.0000023420,0.0000023463, -0.0000023485,0.0000023495,0.0000023514,0.0000023535,0.0000023575, -0.0000023618,0.0000023648,0.0000023660,0.0000023670,0.0000023701, -0.0000023755,0.0000023818,0.0000023875,0.0000023919,0.0000023950, -0.0000023977,0.0000024004,0.0000024030,0.0000024058,0.0000024095, -0.0000024143,0.0000024206,0.0000024273,0.0000024334,0.0000024381, -0.0000024416,0.0000024443,0.0000024472,0.0000024505,0.0000024548, -0.0000024599,0.0000024652,0.0000024701,0.0000024740,0.0000024767, -0.0000024784,0.0000024799,0.0000024820,0.0000024855,0.0000024900, -0.0000024941,0.0000024968,0.0000024976,0.0000024963,0.0000024933, -0.0000024885,0.0000024831,0.0000024773,0.0000024709,0.0000024639, -0.0000024585,0.0000024553,0.0000024528,0.0000024506,0.0000024487, -0.0000024478,0.0000024481,0.0000024503,0.0000024539,0.0000024564, -0.0000024569,0.0000024568,0.0000024576,0.0000024591,0.0000024610, -0.0000024645,0.0000024685,0.0000024712,0.0000024721,0.0000024715, -0.0000024694,0.0000024657,0.0000024604,0.0000024537,0.0000024461, -0.0000024386,0.0000024325,0.0000024294,0.0000024282,0.0000024264, -0.0000024226,0.0000024147,0.0000024031,0.0000023899,0.0000023767, -0.0000023666,0.0000023650,0.0000023672,0.0000023737,0.0000023798, -0.0000023835,0.0000023852,0.0000023860,0.0000023859,0.0000023851, -0.0000023821,0.0000023772,0.0000023737,0.0000023743,0.0000023793, -0.0000023858,0.0000023920,0.0000023991,0.0000024079,0.0000024163, -0.0000024234,0.0000024289,0.0000024335,0.0000024379,0.0000024425, -0.0000024473,0.0000024517,0.0000024548,0.0000024561,0.0000024553, -0.0000024515,0.0000024420,0.0000024246,0.0000024029,0.0000023879, -0.0000023871,0.0000023917,0.0000023903,0.0000023851,0.0000023866, -0.0000023909,0.0000023935,0.0000023946,0.0000023908,0.0000023801, -0.0000023711,0.0000023684,0.0000023693,0.0000023707,0.0000023712, -0.0000023707,0.0000023708,0.0000023727,0.0000023755,0.0000023751, -0.0000023699,0.0000023593,0.0000023424,0.0000023241,0.0000023114, -0.0000023041,0.0000023015,0.0000023010,0.0000023010,0.0000023020, -0.0000023036,0.0000023043,0.0000023067,0.0000023100,0.0000023132, -0.0000023142,0.0000023125,0.0000023068,0.0000023005,0.0000022972, -0.0000022959,0.0000022968,0.0000022989,0.0000023001,0.0000023010, -0.0000023049,0.0000023120,0.0000023168,0.0000023225,0.0000023328, -0.0000023406,0.0000023390,0.0000023282,0.0000023296,0.0000023484, -0.0000023678,0.0000023743,0.0000023729,0.0000023700,0.0000023696, -0.0000023692,0.0000023703,0.0000023724,0.0000023758,0.0000023814, -0.0000023870,0.0000023889,0.0000023888,0.0000023889,0.0000023913, -0.0000023954,0.0000023995,0.0000024026,0.0000024044,0.0000024057, -0.0000024067,0.0000024084,0.0000024106,0.0000024135,0.0000024174, -0.0000024222,0.0000024251,0.0000024246,0.0000024220,0.0000024166, -0.0000024097,0.0000024016,0.0000023937,0.0000023858,0.0000023787, -0.0000023712,0.0000023651,0.0000023616,0.0000023602,0.0000023598, -0.0000023607,0.0000023620,0.0000023604,0.0000023539,0.0000023465, -0.0000023415,0.0000023377,0.0000023335,0.0000023274,0.0000023181, -0.0000023068,0.0000022980,0.0000022929,0.0000022902,0.0000022883, -0.0000022867,0.0000022838,0.0000022793,0.0000022760,0.0000022741, -0.0000022732,0.0000022733,0.0000022723,0.0000022670,0.0000022563, -0.0000022441,0.0000022347,0.0000022309,0.0000022303,0.0000022328, -0.0000022357,0.0000022399,0.0000022424,0.0000022434,0.0000022441, -0.0000022450,0.0000022459,0.0000022443,0.0000022387,0.0000022335, -0.0000022297,0.0000022239,0.0000022181,0.0000022186,0.0000022234, -0.0000022252,0.0000022257,0.0000022311,0.0000022447,0.0000022621, -0.0000022734,0.0000022763,0.0000022762,0.0000022775,0.0000022773, -0.0000022693,0.0000022571,0.0000022504,0.0000022483,0.0000022488, -0.0000022484,0.0000022471,0.0000022513,0.0000022693,0.0000022927, -0.0000023076,0.0000023101,0.0000023070,0.0000022998,0.0000022942, -0.0000022905,0.0000022841,0.0000022736,0.0000022627,0.0000022545, -0.0000022506,0.0000022501,0.0000022524,0.0000022540,0.0000022529, -0.0000022481,0.0000022420,0.0000022353,0.0000022298,0.0000022280, -0.0000022287,0.0000022325,0.0000022371,0.0000022413,0.0000022456, -0.0000022493,0.0000022503,0.0000022474,0.0000022403,0.0000022342, -0.0000022340,0.0000022452,0.0000022667,0.0000022887,0.0000023044, -0.0000023131,0.0000023165,0.0000023175,0.0000023200,0.0000023219, -0.0000023212,0.0000023171,0.0000023097,0.0000022986,0.0000022864, -0.0000022775,0.0000022748,0.0000022797,0.0000022926,0.0000023062, -0.0000023129,0.0000023113,0.0000023110,0.0000023183,0.0000023275, -0.0000023338,0.0000023522,0.0000023737,0.0000023829,0.0000023881, -0.0000023943,0.0000023980,0.0000024033,0.0000024143,0.0000024234, -0.0000024251,0.0000024174,0.0000023999,0.0000023913,0.0000023996, -0.0000024207,0.0000024380,0.0000024444,0.0000024457,0.0000024475, -0.0000024478,0.0000024418,0.0000024326,0.0000024289,0.0000024352, -0.0000024501,0.0000024606,0.0000024613,0.0000024534,0.0000024431, -0.0000024373,0.0000024315,0.0000024201,0.0000024040,0.0000023888, -0.0000023779,0.0000023685,0.0000023611,0.0000023604,0.0000023676, -0.0000023758,0.0000023854,0.0000023997,0.0000024146,0.0000024478, -0.0000024749,0.0000024801,0.0000024659,0.0000024785,0.0000025540, -0.0000026094,0.0000026138,0.0000025671,0.0000024991,0.0000024615, -0.0000024531,0.0000024536,0.0000024554,0.0000024495,0.0000024292, -0.0000024071,0.0000023979,0.0000023980,0.0000024033,0.0000024119, -0.0000024232,0.0000024359,0.0000024476,0.0000024521,0.0000024490, -0.0000024414,0.0000024343,0.0000024310,0.0000024325,0.0000024362, -0.0000024400,0.0000024434,0.0000024457,0.0000024459,0.0000024449, -0.0000024442,0.0000024441,0.0000024440,0.0000024427,0.0000024396, -0.0000024358,0.0000024318,0.0000024309,0.0000024314,0.0000024323, -0.0000024323,0.0000024308,0.0000024291,0.0000024279,0.0000024265, -0.0000024254,0.0000024251,0.0000024253,0.0000024240,0.0000024204, -0.0000024154,0.0000024097,0.0000024036,0.0000023968,0.0000023886, -0.0000023796,0.0000023707,0.0000023625,0.0000023559,0.0000023507, -0.0000023461,0.0000023409,0.0000023347,0.0000023272,0.0000023193, -0.0000023127,0.0000023084,0.0000023068,0.0000023072,0.0000023088, -0.0000023124,0.0000023160,0.0000023202,0.0000023245,0.0000023290, -0.0000023337,0.0000023383,0.0000023429,0.0000023475,0.0000023515, -0.0000023553,0.0000023591,0.0000023625,0.0000023652,0.0000023675, -0.0000023697,0.0000023712,0.0000023716,0.0000023715,0.0000023704, -0.0000023683,0.0000023652,0.0000023615,0.0000023573,0.0000023532, -0.0000023497,0.0000023468,0.0000023450,0.0000023441,0.0000023435, -0.0000023435,0.0000023433,0.0000023427,0.0000023420,0.0000023409, -0.0000023404,0.0000023400,0.0000023397,0.0000023400,0.0000023400, -0.0000023417,0.0000023445,0.0000023479,0.0000023518,0.0000023556, -0.0000023591,0.0000023622,0.0000023653,0.0000023682,0.0000023705, -0.0000023716,0.0000023711,0.0000023696,0.0000023697,0.0000023696, -0.0000023694,0.0000023683,0.0000023667,0.0000023658,0.0000023660, -0.0000023657,0.0000023630,0.0000023578,0.0000023502,0.0000023367, -0.0000023160,0.0000022936,0.0000022785,0.0000022703,0.0000022584, -0.0000022423,0.0000022330,0.0000022317,0.0000022318,0.0000022341, -0.0000022390,0.0000022442,0.0000022462,0.0000022449,0.0000022405, -0.0000022361,0.0000022343,0.0000022351,0.0000022369,0.0000022365, -0.0000022317,0.0000022225,0.0000022114,0.0000022039,0.0000022017, -0.0000022020,0.0000022033,0.0000022041,0.0000022026,0.0000021991, -0.0000021973,0.0000021989,0.0000022029,0.0000022070,0.0000022178, -0.0000022321,0.0000022313,0.0000022198,0.0000022209,0.0000022352, -0.0000022452,0.0000022454,0.0000022438,0.0000022488,0.0000022671, -0.0000022876,0.0000022993,0.0000023081,0.0000023244,0.0000023434, -0.0000023503,0.0000023474,0.0000023383,0.0000023296,0.0000023262, -0.0000023287,0.0000023372,0.0000023473,0.0000023562,0.0000023628, -0.0000023667,0.0000023684,0.0000023682,0.0000023684,0.0000023739, -0.0000023881,0.0000024061,0.0000024204,0.0000024299,0.0000024366, -0.0000024411,0.0000024448,0.0000024498,0.0000024574,0.0000024660, -0.0000024709,0.0000024709,0.0000024674,0.0000024595,0.0000024473, -0.0000024335,0.0000024223,0.0000024172,0.0000024173,0.0000024194, -0.0000024216,0.0000024228,0.0000024226,0.0000024206,0.0000024165, -0.0000024095,0.0000023996,0.0000023885,0.0000023783,0.0000023691, -0.0000023594,0.0000023483,0.0000023373,0.0000023283,0.0000023213, -0.0000023168,0.0000023156,0.0000023166,0.0000023187,0.0000023202, -0.0000023209,0.0000023209,0.0000023209,0.0000023212,0.0000023221, -0.0000023240,0.0000023268,0.0000023302,0.0000023336,0.0000023371, -0.0000023420,0.0000023486,0.0000023556,0.0000023620,0.0000023678, -0.0000023736,0.0000023794,0.0000023851,0.0000023910,0.0000023974, -0.0000024031,0.0000024055,0.0000024036,0.0000023993,0.0000023952, -0.0000023931,0.0000023929,0.0000023950,0.0000023991,0.0000024053, -0.0000024145,0.0000024271,0.0000024416,0.0000024550,0.0000024673, -0.0000024788,0.0000024858,0.0000024863,0.0000024851,0.0000024867, -0.0000024937,0.0000025025,0.0000025097,0.0000025141,0.0000025144, -0.0000025136,0.0000025137,0.0000025168,0.0000025209,0.0000025226, -0.0000025202,0.0000025181,0.0000025222,0.0000025316,0.0000025383, -0.0000025400,0.0000025404,0.0000025415,0.0000025436,0.0000025465, -0.0000025498,0.0000025535,0.0000025589,0.0000025657,0.0000025710, -0.0000025736,0.0000025749,0.0000025759,0.0000025766,0.0000025768, -0.0000025760,0.0000025737,0.0000025705,0.0000025674,0.0000025648, -0.0000025636,0.0000025624,0.0000025609,0.0000025595,0.0000025588, -0.0000025588,0.0000025597,0.0000025610,0.0000025613,0.0000025604, -0.0000025601,0.0000025614,0.0000025630,0.0000025632,0.0000025588, -0.0000025404,0.0000025121,0.0000024862,0.0000024587,0.0000024276, -0.0000024117,0.0000024154,0.0000024263,0.0000024300,0.0000024239, -0.0000024160,0.0000024147,0.0000024256,0.0000024484,0.0000024646, -0.0000024711,0.0000024925,0.0000025342,0.0000025676,0.0000025783, -0.0000025803,0.0000025831,0.0000025877,0.0000025931,0.0000025968, -0.0000025974,0.0000025955,0.0000025911,0.0000025862,0.0000025822, -0.0000025795,0.0000025789,0.0000025804,0.0000025837,0.0000025882, -0.0000025934,0.0000025984,0.0000026025,0.0000026054,0.0000026072, -0.0000026084,0.0000026110,0.0000026160,0.0000026212,0.0000026232, -0.0000026216,0.0000026161,0.0000026108,0.0000026068,0.0000026009, -0.0000025923,0.0000025858,0.0000025846,0.0000025872,0.0000025927, -0.0000025980,0.0000025987,0.0000025945,0.0000025896,0.0000025817, -0.0000025688,0.0000025603,0.0000025533,0.0000025329,0.0000025071, -0.0000024922,0.0000024846,0.0000024681,0.0000024335,0.0000024002, -0.0000023845,0.0000023711,0.0000023366,0.0000022866,0.0000022485, -0.0000022291,0.0000022173,0.0000022085,0.0000022047,0.0000022051, -0.0000022078,0.0000022100,0.0000022102,0.0000022086,0.0000022059, -0.0000022029,0.0000022007,0.0000021979,0.0000021934,0.0000021881, -0.0000021829,0.0000021784,0.0000021745,0.0000021706,0.0000021670, -0.0000021623,0.0000021565,0.0000021511,0.0000021462,0.0000021431, -0.0000021428,0.0000021479,0.0000021591,0.0000021730,0.0000021859, -0.0000021960,0.0000022026,0.0000022062,0.0000022081,0.0000022090, -0.0000022085,0.0000022070,0.0000022069,0.0000022097,0.0000022147, -0.0000022190,0.0000022217,0.0000022232,0.0000022254,0.0000022291, -0.0000022330,0.0000022356,0.0000022370,0.0000022369,0.0000022357, -0.0000022342,0.0000022329,0.0000022314,0.0000022299,0.0000022285, -0.0000022266,0.0000022240,0.0000022216,0.0000022186,0.0000022151, -0.0000022117,0.0000022088,0.0000022059,0.0000022034,0.0000022017, -0.0000022028,0.0000022062,0.0000022112,0.0000022168,0.0000022220, -0.0000022261,0.0000022290,0.0000022318,0.0000022339,0.0000022347, -0.0000022344,0.0000022339,0.0000022345,0.0000022346,0.0000022334, -0.0000022333,0.0000022338,0.0000022347,0.0000022345,0.0000022330, -0.0000022306,0.0000022280,0.0000022248,0.0000022207,0.0000022159, -0.0000022112,0.0000022071,0.0000022033,0.0000022004,0.0000021990, -0.0000021984,0.0000022006,0.0000022068,0.0000022148,0.0000022230, -0.0000022310,0.0000022390,0.0000022461,0.0000022519,0.0000022569, -0.0000022610,0.0000022643,0.0000022662,0.0000022667,0.0000022662, -0.0000022643,0.0000022608,0.0000022572,0.0000022551,0.0000022539, -0.0000022531,0.0000022527,0.0000022520,0.0000022500,0.0000022489, -0.0000022505,0.0000022569,0.0000022638,0.0000022658,0.0000022641, -0.0000022601,0.0000022578,0.0000022579,0.0000022570,0.0000022540, -0.0000022520,0.0000022525,0.0000022542,0.0000022545,0.0000022539, -0.0000022544,0.0000022575,0.0000022611,0.0000022624,0.0000022619, -0.0000022603,0.0000022581,0.0000022545,0.0000022480,0.0000022383, -0.0000022271,0.0000022160,0.0000022085,0.0000022071,0.0000022082, -0.0000022076,0.0000022077,0.0000022111,0.0000022171,0.0000022234, -0.0000022295,0.0000022353,0.0000022381,0.0000022360,0.0000022300, -0.0000022224,0.0000022152,0.0000022095,0.0000022062,0.0000022055, -0.0000022064,0.0000022079,0.0000022102,0.0000022136,0.0000022172, -0.0000022194,0.0000022202,0.0000022202,0.0000022197,0.0000022187, -0.0000022168,0.0000022130,0.0000022073,0.0000022011,0.0000021951, -0.0000021900,0.0000021879,0.0000021891,0.0000021927,0.0000021968, -0.0000022002,0.0000022020,0.0000022019,0.0000022015,0.0000022019, -0.0000022025,0.0000022020,0.0000021991,0.0000021942,0.0000021885, -0.0000021828,0.0000021769,0.0000021709,0.0000021658,0.0000021625, -0.0000021617,0.0000021624,0.0000021635,0.0000021644,0.0000021649, -0.0000021649,0.0000021594,0.0000021482,0.0000021368,0.0000021324, -0.0000021332,0.0000021352,0.0000021351,0.0000021318,0.0000021261, -0.0000021186,0.0000021134,0.0000021129,0.0000021185,0.0000021375, -0.0000021650,0.0000021845,0.0000021938,0.0000022021,0.0000022117, -0.0000022174,0.0000022180,0.0000022179,0.0000022186,0.0000022202, -0.0000022233,0.0000022255,0.0000022239,0.0000022212,0.0000022225, -0.0000022282,0.0000022320,0.0000022387,0.0000022588,0.0000022851, -0.0000023051,0.0000023160,0.0000023196,0.0000023218,0.0000023270, -0.0000023312,0.0000023312,0.0000023294,0.0000023284,0.0000023271, -0.0000023245,0.0000023207,0.0000023161,0.0000023114,0.0000023067, -0.0000023020,0.0000022976,0.0000022937,0.0000022901,0.0000022869, -0.0000022845,0.0000022827,0.0000022804,0.0000022774,0.0000022749, -0.0000022732,0.0000022715,0.0000022696,0.0000022686,0.0000022692, -0.0000022717,0.0000022734,0.0000022710,0.0000022590,0.0000022427, -0.0000022304,0.0000022221,0.0000022146,0.0000022077,0.0000022032, -0.0000022002,0.0000021994,0.0000021987,0.0000021964,0.0000021922, -0.0000021861,0.0000021802,0.0000021778,0.0000021807,0.0000021936, -0.0000022119,0.0000022259,0.0000022327,0.0000022372,0.0000022433, -0.0000022499,0.0000022567,0.0000022684,0.0000022870,0.0000023048, -0.0000023124,0.0000023116,0.0000023099,0.0000023111,0.0000023160, -0.0000023190,0.0000023161,0.0000023101,0.0000023090,0.0000023129, -0.0000023182,0.0000023225,0.0000023264,0.0000023353,0.0000023451, -0.0000023427,0.0000023249,0.0000023124,0.0000023139,0.0000023212, -0.0000023295,0.0000023375,0.0000023439,0.0000023475,0.0000023472, -0.0000023431,0.0000023384,0.0000023353,0.0000023328,0.0000023294, -0.0000023253,0.0000023215,0.0000023184,0.0000023153,0.0000023121, -0.0000023085,0.0000023040,0.0000022990,0.0000022949,0.0000022916, -0.0000022876,0.0000022823,0.0000022766,0.0000022714,0.0000022675, -0.0000022643,0.0000022620,0.0000022602,0.0000022589,0.0000022571, -0.0000022555,0.0000022553,0.0000022565,0.0000022585,0.0000022603, -0.0000022631,0.0000022659,0.0000022672,0.0000022675,0.0000022669, -0.0000022673,0.0000022694,0.0000022713,0.0000022737,0.0000022761, -0.0000022814,0.0000022910,0.0000023012,0.0000023078,0.0000023116, -0.0000023177,0.0000023280,0.0000023419,0.0000023534,0.0000023576, -0.0000023572,0.0000023573,0.0000023592,0.0000023623,0.0000023668, -0.0000023709,0.0000023730,0.0000023725,0.0000023691,0.0000023631, -0.0000023564,0.0000023503,0.0000023445,0.0000023379,0.0000023320, -0.0000023292,0.0000023296,0.0000023324,0.0000023372,0.0000023421, -0.0000023456,0.0000023473,0.0000023481,0.0000023489,0.0000023505, -0.0000023525,0.0000023567,0.0000023627,0.0000023681,0.0000023724, -0.0000023756,0.0000023776,0.0000023788,0.0000023799,0.0000023809, -0.0000023823,0.0000023846,0.0000023875,0.0000023895,0.0000023888, -0.0000023867,0.0000023853,0.0000023835,0.0000023804,0.0000023781, -0.0000023789,0.0000023825,0.0000023861,0.0000023867,0.0000023851, -0.0000023823,0.0000023791,0.0000023788,0.0000023850,0.0000023933, -0.0000023961,0.0000023943,0.0000023939,0.0000024027,0.0000024278, -0.0000024579,0.0000024820,0.0000025000,0.0000025132,0.0000025193, -0.0000025185,0.0000025124,0.0000025061,0.0000025043,0.0000025065, -0.0000025099,0.0000025110,0.0000025081,0.0000025018,0.0000024947, -0.0000024879,0.0000024806,0.0000024729,0.0000024655,0.0000024584, -0.0000024525,0.0000024487,0.0000024461,0.0000024418,0.0000024329, -0.0000024199,0.0000024055,0.0000023923,0.0000023808,0.0000023712, -0.0000023653,0.0000023629,0.0000023611,0.0000023579,0.0000023551, -0.0000023546,0.0000023556,0.0000023557,0.0000023533,0.0000023465, -0.0000023344,0.0000023214,0.0000023139,0.0000023136,0.0000023159, -0.0000023197,0.0000023231,0.0000023269,0.0000023299,0.0000023319, -0.0000023318,0.0000023303,0.0000023300,0.0000023306,0.0000023347, -0.0000023405,0.0000023467,0.0000023510,0.0000023539,0.0000023545, -0.0000023553,0.0000023571,0.0000023599,0.0000023623,0.0000023629, -0.0000023631,0.0000023650,0.0000023700,0.0000023776,0.0000023855, -0.0000023914,0.0000023946,0.0000023961,0.0000023974,0.0000023999, -0.0000024041,0.0000024098,0.0000024160,0.0000024214,0.0000024260, -0.0000024304,0.0000024344,0.0000024379,0.0000024411,0.0000024444, -0.0000024479,0.0000024514,0.0000024555,0.0000024602,0.0000024650, -0.0000024689,0.0000024715,0.0000024732,0.0000024748,0.0000024774, -0.0000024812,0.0000024854,0.0000024892,0.0000024922,0.0000024939, -0.0000024930,0.0000024912,0.0000024877,0.0000024824,0.0000024753, -0.0000024673,0.0000024603,0.0000024548,0.0000024507,0.0000024474, -0.0000024450,0.0000024440,0.0000024448,0.0000024478,0.0000024512, -0.0000024536,0.0000024555,0.0000024572,0.0000024594,0.0000024614, -0.0000024637,0.0000024673,0.0000024719,0.0000024758,0.0000024778, -0.0000024779,0.0000024764,0.0000024734,0.0000024688,0.0000024635, -0.0000024583,0.0000024529,0.0000024463,0.0000024388,0.0000024319, -0.0000024274,0.0000024246,0.0000024217,0.0000024179,0.0000024119, -0.0000024030,0.0000023920,0.0000023815,0.0000023739,0.0000023722, -0.0000023738,0.0000023797,0.0000023880,0.0000023937,0.0000023942, -0.0000023925,0.0000023897,0.0000023845,0.0000023772,0.0000023717, -0.0000023705,0.0000023741,0.0000023808,0.0000023880,0.0000023957, -0.0000024054,0.0000024161,0.0000024252,0.0000024317,0.0000024368, -0.0000024412,0.0000024450,0.0000024479,0.0000024493,0.0000024489, -0.0000024464,0.0000024406,0.0000024281,0.0000024099,0.0000023939, -0.0000023891,0.0000023941,0.0000023964,0.0000023897,0.0000023858, -0.0000023903,0.0000023959,0.0000024011,0.0000024026,0.0000023948, -0.0000023809,0.0000023711,0.0000023681,0.0000023682,0.0000023693, -0.0000023708,0.0000023718,0.0000023713,0.0000023707,0.0000023718, -0.0000023732,0.0000023714,0.0000023643,0.0000023500,0.0000023317, -0.0000023166,0.0000023072,0.0000023011,0.0000023007,0.0000023017, -0.0000023022,0.0000023028,0.0000023030,0.0000023035,0.0000023053, -0.0000023086,0.0000023112,0.0000023113,0.0000023078,0.0000023027, -0.0000022979,0.0000022953,0.0000022950,0.0000022956,0.0000022971, -0.0000022994,0.0000023010,0.0000023039,0.0000023107,0.0000023159, -0.0000023198,0.0000023274,0.0000023378,0.0000023411,0.0000023316, -0.0000023201,0.0000023229,0.0000023422,0.0000023582,0.0000023646, -0.0000023651,0.0000023627,0.0000023603,0.0000023595,0.0000023590, -0.0000023622,0.0000023692,0.0000023755,0.0000023801,0.0000023829, -0.0000023859,0.0000023902,0.0000023932,0.0000023944,0.0000023939, -0.0000023920,0.0000023903,0.0000023909,0.0000023939,0.0000023971, -0.0000024011,0.0000024067,0.0000024124,0.0000024167,0.0000024182, -0.0000024169,0.0000024127,0.0000024059,0.0000023978,0.0000023892, -0.0000023810,0.0000023729,0.0000023659,0.0000023610,0.0000023578, -0.0000023569,0.0000023571,0.0000023569,0.0000023540,0.0000023496, -0.0000023461,0.0000023424,0.0000023364,0.0000023254,0.0000023115, -0.0000022986,0.0000022892,0.0000022847,0.0000022840,0.0000022836, -0.0000022820,0.0000022802,0.0000022779,0.0000022746,0.0000022719, -0.0000022695,0.0000022651,0.0000022581,0.0000022486,0.0000022383, -0.0000022294,0.0000022244,0.0000022234,0.0000022267,0.0000022310, -0.0000022377,0.0000022459,0.0000022534,0.0000022562,0.0000022539, -0.0000022497,0.0000022480,0.0000022477,0.0000022454,0.0000022399, -0.0000022352,0.0000022317,0.0000022251,0.0000022175,0.0000022172, -0.0000022216,0.0000022242,0.0000022251,0.0000022314,0.0000022473, -0.0000022647,0.0000022736,0.0000022747,0.0000022743,0.0000022752, -0.0000022730,0.0000022639,0.0000022539,0.0000022509,0.0000022511, -0.0000022518,0.0000022505,0.0000022495,0.0000022575,0.0000022790, -0.0000023005,0.0000023107,0.0000023106,0.0000023052,0.0000022974, -0.0000022907,0.0000022850,0.0000022776,0.0000022668,0.0000022560, -0.0000022486,0.0000022461,0.0000022478,0.0000022507,0.0000022526, -0.0000022519,0.0000022475,0.0000022412,0.0000022342,0.0000022287, -0.0000022278,0.0000022303,0.0000022353,0.0000022406,0.0000022448, -0.0000022482,0.0000022505,0.0000022496,0.0000022451,0.0000022379, -0.0000022335,0.0000022357,0.0000022515,0.0000022754,0.0000022966, -0.0000023106,0.0000023178,0.0000023191,0.0000023177,0.0000023179, -0.0000023202,0.0000023212,0.0000023192,0.0000023131,0.0000023028, -0.0000022895,0.0000022784,0.0000022742,0.0000022771,0.0000022869, -0.0000022993,0.0000023082,0.0000023085,0.0000023065,0.0000023119, -0.0000023215,0.0000023255,0.0000023373,0.0000023615,0.0000023773, -0.0000023831,0.0000023902,0.0000023961,0.0000023996,0.0000024069, -0.0000024185,0.0000024250,0.0000024240,0.0000024104,0.0000023929, -0.0000023890,0.0000024003,0.0000024191,0.0000024320,0.0000024364, -0.0000024368,0.0000024377,0.0000024362,0.0000024315,0.0000024292, -0.0000024347,0.0000024480,0.0000024606,0.0000024638,0.0000024599, -0.0000024496,0.0000024402,0.0000024351,0.0000024290,0.0000024168, -0.0000024005,0.0000023867,0.0000023772,0.0000023692,0.0000023616, -0.0000023594,0.0000023643,0.0000023727,0.0000023796,0.0000023943, -0.0000024058,0.0000024318,0.0000024612,0.0000024725,0.0000024674, -0.0000024569,0.0000024968,0.0000025766,0.0000026130,0.0000026017, -0.0000025420,0.0000024795,0.0000024523,0.0000024475,0.0000024504, -0.0000024543,0.0000024505,0.0000024289,0.0000024053,0.0000023957, -0.0000023969,0.0000024020,0.0000024095,0.0000024190,0.0000024314, -0.0000024430,0.0000024499,0.0000024498,0.0000024443,0.0000024365, -0.0000024323,0.0000024326,0.0000024357,0.0000024401,0.0000024434, -0.0000024437,0.0000024418,0.0000024390,0.0000024372,0.0000024365, -0.0000024372,0.0000024377,0.0000024372,0.0000024353,0.0000024340, -0.0000024320,0.0000024305,0.0000024297,0.0000024293,0.0000024304, -0.0000024329,0.0000024359,0.0000024378,0.0000024388,0.0000024388, -0.0000024373,0.0000024341,0.0000024300,0.0000024253,0.0000024202, -0.0000024146,0.0000024082,0.0000024009,0.0000023929,0.0000023849, -0.0000023778,0.0000023714,0.0000023652,0.0000023583,0.0000023506, -0.0000023417,0.0000023323,0.0000023239,0.0000023174,0.0000023128, -0.0000023102,0.0000023091,0.0000023098,0.0000023103,0.0000023110, -0.0000023128,0.0000023147,0.0000023174,0.0000023202,0.0000023225, -0.0000023248,0.0000023267,0.0000023281,0.0000023296,0.0000023314, -0.0000023330,0.0000023346,0.0000023362,0.0000023378,0.0000023388, -0.0000023394,0.0000023398,0.0000023397,0.0000023389,0.0000023378, -0.0000023371,0.0000023368,0.0000023370,0.0000023376,0.0000023390, -0.0000023406,0.0000023418,0.0000023423,0.0000023422,0.0000023414, -0.0000023402,0.0000023391,0.0000023390,0.0000023390,0.0000023403, -0.0000023424,0.0000023453,0.0000023484,0.0000023519,0.0000023552, -0.0000023583,0.0000023614,0.0000023643,0.0000023674,0.0000023703, -0.0000023724,0.0000023733,0.0000023724,0.0000023702,0.0000023666, -0.0000023640,0.0000023633,0.0000023642,0.0000023651,0.0000023649, -0.0000023642,0.0000023638,0.0000023642,0.0000023637,0.0000023599, -0.0000023535,0.0000023447,0.0000023294,0.0000023072,0.0000022865, -0.0000022748,0.0000022656,0.0000022494,0.0000022344,0.0000022304, -0.0000022301,0.0000022298,0.0000022315,0.0000022358,0.0000022393, -0.0000022397,0.0000022379,0.0000022356,0.0000022348,0.0000022357, -0.0000022372,0.0000022371,0.0000022335,0.0000022251,0.0000022133, -0.0000022045,0.0000022029,0.0000022045,0.0000022062,0.0000022072, -0.0000022064,0.0000022027,0.0000021975,0.0000021949,0.0000021964, -0.0000022003,0.0000022052,0.0000022179,0.0000022317,0.0000022294, -0.0000022188,0.0000022210,0.0000022349,0.0000022445,0.0000022452, -0.0000022443,0.0000022494,0.0000022676,0.0000022880,0.0000022983, -0.0000023059,0.0000023222,0.0000023407,0.0000023471,0.0000023441, -0.0000023350,0.0000023275,0.0000023262,0.0000023324,0.0000023433, -0.0000023545,0.0000023630,0.0000023679,0.0000023700,0.0000023704, -0.0000023719,0.0000023789,0.0000023920,0.0000024070,0.0000024192, -0.0000024280,0.0000024346,0.0000024389,0.0000024417,0.0000024457, -0.0000024529,0.0000024619,0.0000024684,0.0000024696,0.0000024676, -0.0000024620,0.0000024519,0.0000024376,0.0000024222,0.0000024099, -0.0000024045,0.0000024053,0.0000024088,0.0000024125,0.0000024144, -0.0000024146,0.0000024121,0.0000024057,0.0000023951,0.0000023818, -0.0000023684,0.0000023573,0.0000023484,0.0000023399,0.0000023304, -0.0000023203,0.0000023110,0.0000023033,0.0000022980,0.0000022961, -0.0000022968,0.0000022990,0.0000023011,0.0000023023,0.0000023027, -0.0000023027,0.0000023028,0.0000023035,0.0000023054,0.0000023088, -0.0000023133,0.0000023174,0.0000023206,0.0000023241,0.0000023288, -0.0000023350,0.0000023425,0.0000023510,0.0000023594,0.0000023666, -0.0000023721,0.0000023766,0.0000023818,0.0000023881,0.0000023931, -0.0000023943,0.0000023921,0.0000023883,0.0000023852,0.0000023843, -0.0000023864,0.0000023915,0.0000023982,0.0000024062,0.0000024162, -0.0000024282,0.0000024404,0.0000024529,0.0000024669,0.0000024796, -0.0000024855,0.0000024855,0.0000024854,0.0000024890,0.0000024964, -0.0000025041,0.0000025105,0.0000025137,0.0000025133,0.0000025123, -0.0000025142,0.0000025184,0.0000025203,0.0000025181,0.0000025143, -0.0000025150,0.0000025221,0.0000025286,0.0000025303,0.0000025298, -0.0000025293,0.0000025304,0.0000025334,0.0000025377,0.0000025427, -0.0000025496,0.0000025583,0.0000025663,0.0000025710,0.0000025730, -0.0000025733,0.0000025732,0.0000025723,0.0000025705,0.0000025678, -0.0000025645,0.0000025613,0.0000025588,0.0000025571,0.0000025548, -0.0000025530,0.0000025527,0.0000025535,0.0000025554,0.0000025582, -0.0000025608,0.0000025616,0.0000025614,0.0000025615,0.0000025624, -0.0000025634,0.0000025632,0.0000025558,0.0000025340,0.0000025052, -0.0000024809,0.0000024537,0.0000024234,0.0000024109,0.0000024159, -0.0000024274,0.0000024296,0.0000024231,0.0000024174,0.0000024196, -0.0000024362,0.0000024582,0.0000024684,0.0000024773,0.0000025083, -0.0000025495,0.0000025725,0.0000025779,0.0000025802,0.0000025824, -0.0000025849,0.0000025884,0.0000025907,0.0000025911,0.0000025897, -0.0000025855,0.0000025796,0.0000025743,0.0000025711,0.0000025707, -0.0000025729,0.0000025770,0.0000025813,0.0000025852,0.0000025886, -0.0000025918,0.0000025950,0.0000025980,0.0000026010,0.0000026054, -0.0000026114,0.0000026166,0.0000026184,0.0000026169,0.0000026119, -0.0000026064,0.0000026011,0.0000025945,0.0000025868,0.0000025821, -0.0000025825,0.0000025872,0.0000025936,0.0000025981,0.0000025978, -0.0000025925,0.0000025866,0.0000025797,0.0000025690,0.0000025615, -0.0000025558,0.0000025363,0.0000025082,0.0000024893,0.0000024803, -0.0000024665,0.0000024342,0.0000023984,0.0000023804,0.0000023692, -0.0000023378,0.0000022880,0.0000022489,0.0000022299,0.0000022186, -0.0000022103,0.0000022057,0.0000022043,0.0000022047,0.0000022057, -0.0000022053,0.0000022036,0.0000022014,0.0000021995,0.0000021983, -0.0000021967,0.0000021926,0.0000021878,0.0000021834,0.0000021787, -0.0000021735,0.0000021685,0.0000021642,0.0000021590,0.0000021528, -0.0000021461,0.0000021403,0.0000021371,0.0000021367,0.0000021394, -0.0000021462,0.0000021571,0.0000021700,0.0000021821,0.0000021918, -0.0000021979,0.0000022004,0.0000022007,0.0000022004,0.0000021999, -0.0000022001,0.0000022019,0.0000022060,0.0000022124,0.0000022195, -0.0000022252,0.0000022283,0.0000022293,0.0000022300,0.0000022292, -0.0000022280,0.0000022273,0.0000022271,0.0000022271,0.0000022270, -0.0000022263,0.0000022248,0.0000022231,0.0000022211,0.0000022188, -0.0000022167,0.0000022145,0.0000022120,0.0000022097,0.0000022076, -0.0000022061,0.0000022051,0.0000022043,0.0000022050,0.0000022076, -0.0000022118,0.0000022172,0.0000022219,0.0000022249,0.0000022267, -0.0000022282,0.0000022296,0.0000022307,0.0000022312,0.0000022307, -0.0000022301,0.0000022293,0.0000022279,0.0000022278,0.0000022276, -0.0000022276,0.0000022267,0.0000022251,0.0000022229,0.0000022202, -0.0000022170,0.0000022130,0.0000022085,0.0000022045,0.0000022017, -0.0000021993,0.0000021971,0.0000021963,0.0000021963,0.0000021969, -0.0000021996,0.0000022051,0.0000022124,0.0000022201,0.0000022278, -0.0000022355,0.0000022425,0.0000022486,0.0000022537,0.0000022580, -0.0000022616,0.0000022643,0.0000022658,0.0000022662,0.0000022655, -0.0000022630,0.0000022598,0.0000022571,0.0000022552,0.0000022543, -0.0000022540,0.0000022519,0.0000022486,0.0000022477,0.0000022512, -0.0000022587,0.0000022637,0.0000022641,0.0000022613,0.0000022585, -0.0000022580,0.0000022583,0.0000022572,0.0000022546,0.0000022530, -0.0000022535,0.0000022548,0.0000022551,0.0000022544,0.0000022547, -0.0000022571,0.0000022594,0.0000022598,0.0000022588,0.0000022568, -0.0000022539,0.0000022498,0.0000022434,0.0000022343,0.0000022237, -0.0000022145,0.0000022107,0.0000022113,0.0000022120,0.0000022122, -0.0000022148,0.0000022200,0.0000022257,0.0000022305,0.0000022351, -0.0000022378,0.0000022361,0.0000022303,0.0000022234,0.0000022172, -0.0000022110,0.0000022056,0.0000022028,0.0000022026,0.0000022041, -0.0000022070,0.0000022122,0.0000022186,0.0000022225,0.0000022227, -0.0000022215,0.0000022202,0.0000022191,0.0000022177,0.0000022159, -0.0000022128,0.0000022084,0.0000022032,0.0000021982,0.0000021945, -0.0000021941,0.0000021966,0.0000022010,0.0000022048,0.0000022074, -0.0000022084,0.0000022078,0.0000022066,0.0000022060,0.0000022061, -0.0000022057,0.0000022030,0.0000021984,0.0000021939,0.0000021901, -0.0000021858,0.0000021794,0.0000021721,0.0000021660,0.0000021626, -0.0000021617,0.0000021620,0.0000021629,0.0000021632,0.0000021632, -0.0000021608,0.0000021518,0.0000021377,0.0000021283,0.0000021272, -0.0000021296,0.0000021300,0.0000021272,0.0000021224,0.0000021162, -0.0000021119,0.0000021113,0.0000021126,0.0000021254,0.0000021543, -0.0000021813,0.0000021943,0.0000022022,0.0000022120,0.0000022190, -0.0000022200,0.0000022194,0.0000022193,0.0000022205,0.0000022231, -0.0000022257,0.0000022260,0.0000022230,0.0000022207,0.0000022236, -0.0000022291,0.0000022326,0.0000022432,0.0000022664,0.0000022904, -0.0000023075,0.0000023178,0.0000023214,0.0000023230,0.0000023283, -0.0000023338,0.0000023347,0.0000023329,0.0000023315,0.0000023309, -0.0000023300,0.0000023278,0.0000023240,0.0000023189,0.0000023131, -0.0000023072,0.0000023018,0.0000022968,0.0000022916,0.0000022872, -0.0000022836,0.0000022802,0.0000022771,0.0000022750,0.0000022739, -0.0000022731,0.0000022721,0.0000022707,0.0000022696,0.0000022700, -0.0000022721,0.0000022723,0.0000022652,0.0000022495,0.0000022332, -0.0000022223,0.0000022145,0.0000022076,0.0000022025,0.0000021968, -0.0000021979,0.0000022005,0.0000022015,0.0000021998,0.0000021947, -0.0000021869,0.0000021805,0.0000021801,0.0000021878,0.0000022038, -0.0000022198,0.0000022288,0.0000022336,0.0000022395,0.0000022457, -0.0000022521,0.0000022638,0.0000022829,0.0000023007,0.0000023076, -0.0000023063,0.0000023046,0.0000023077,0.0000023137,0.0000023156, -0.0000023124,0.0000023094,0.0000023113,0.0000023162,0.0000023213, -0.0000023252,0.0000023299,0.0000023407,0.0000023478,0.0000023370, -0.0000023171,0.0000023095,0.0000023137,0.0000023226,0.0000023316, -0.0000023385,0.0000023431,0.0000023435,0.0000023403,0.0000023361, -0.0000023338,0.0000023327,0.0000023304,0.0000023264,0.0000023218, -0.0000023179,0.0000023153,0.0000023129,0.0000023097,0.0000023049, -0.0000022989,0.0000022927,0.0000022884,0.0000022855,0.0000022825, -0.0000022784,0.0000022737,0.0000022697,0.0000022661,0.0000022624, -0.0000022592,0.0000022560,0.0000022535,0.0000022516,0.0000022506, -0.0000022510,0.0000022533,0.0000022564,0.0000022583,0.0000022605, -0.0000022633,0.0000022645,0.0000022649,0.0000022639,0.0000022628, -0.0000022630,0.0000022640,0.0000022669,0.0000022698,0.0000022733, -0.0000022813,0.0000022916,0.0000023011,0.0000023085,0.0000023134, -0.0000023179,0.0000023273,0.0000023423,0.0000023547,0.0000023593, -0.0000023600,0.0000023600,0.0000023604,0.0000023617,0.0000023645, -0.0000023681,0.0000023703,0.0000023697,0.0000023667,0.0000023625, -0.0000023567,0.0000023503,0.0000023440,0.0000023389,0.0000023346, -0.0000023311,0.0000023303,0.0000023327,0.0000023377,0.0000023429, -0.0000023453,0.0000023457,0.0000023460,0.0000023472,0.0000023486, -0.0000023516,0.0000023576,0.0000023636,0.0000023681,0.0000023719, -0.0000023746,0.0000023767,0.0000023786,0.0000023798,0.0000023803, -0.0000023812,0.0000023843,0.0000023886,0.0000023916,0.0000023916, -0.0000023901,0.0000023890,0.0000023867,0.0000023823,0.0000023789, -0.0000023787,0.0000023810,0.0000023840,0.0000023849,0.0000023838, -0.0000023808,0.0000023755,0.0000023715,0.0000023742,0.0000023833, -0.0000023890,0.0000023892,0.0000023881,0.0000023923,0.0000024117, -0.0000024417,0.0000024694,0.0000024904,0.0000025065,0.0000025159, -0.0000025162,0.0000025111,0.0000025046,0.0000025027,0.0000025053, -0.0000025099,0.0000025128,0.0000025115,0.0000025060,0.0000024989, -0.0000024920,0.0000024847,0.0000024775,0.0000024711,0.0000024648, -0.0000024588,0.0000024535,0.0000024491,0.0000024437,0.0000024352, -0.0000024243,0.0000024129,0.0000024034,0.0000023961,0.0000023897, -0.0000023849,0.0000023823,0.0000023799,0.0000023758,0.0000023709, -0.0000023670,0.0000023639,0.0000023603,0.0000023559,0.0000023514, -0.0000023434,0.0000023308,0.0000023189,0.0000023145,0.0000023158, -0.0000023187,0.0000023221,0.0000023275,0.0000023330,0.0000023383, -0.0000023408,0.0000023401,0.0000023372,0.0000023338,0.0000023343, -0.0000023357,0.0000023409,0.0000023482,0.0000023546,0.0000023579, -0.0000023581,0.0000023565,0.0000023559,0.0000023574,0.0000023591, -0.0000023595,0.0000023595,0.0000023609,0.0000023650,0.0000023728, -0.0000023815,0.0000023882,0.0000023920,0.0000023941,0.0000023962, -0.0000024001,0.0000024061,0.0000024126,0.0000024179,0.0000024222, -0.0000024258,0.0000024288,0.0000024314,0.0000024341,0.0000024371, -0.0000024399,0.0000024422,0.0000024444,0.0000024474,0.0000024511, -0.0000024550,0.0000024589,0.0000024624,0.0000024655,0.0000024687, -0.0000024723,0.0000024764,0.0000024806,0.0000024847,0.0000024882, -0.0000024906,0.0000024911,0.0000024900,0.0000024866,0.0000024804, -0.0000024728,0.0000024650,0.0000024579,0.0000024518,0.0000024466, -0.0000024432,0.0000024406,0.0000024403,0.0000024425,0.0000024453, -0.0000024481,0.0000024514,0.0000024550,0.0000024580,0.0000024606, -0.0000024634,0.0000024667,0.0000024710,0.0000024754,0.0000024782, -0.0000024799,0.0000024806,0.0000024790,0.0000024752,0.0000024709, -0.0000024674,0.0000024645,0.0000024608,0.0000024554,0.0000024480, -0.0000024382,0.0000024284,0.0000024222,0.0000024182,0.0000024160, -0.0000024138,0.0000024097,0.0000024031,0.0000023958,0.0000023894, -0.0000023826,0.0000023794,0.0000023817,0.0000023900,0.0000023972, -0.0000023993,0.0000023973,0.0000023925,0.0000023848,0.0000023757, -0.0000023682,0.0000023653,0.0000023682,0.0000023750,0.0000023829, -0.0000023913,0.0000024013,0.0000024116,0.0000024200,0.0000024263, -0.0000024313,0.0000024346,0.0000024368,0.0000024385,0.0000024386, -0.0000024349,0.0000024256,0.0000024120,0.0000023991,0.0000023932, -0.0000023967,0.0000024021,0.0000023989,0.0000023902,0.0000023889, -0.0000023941,0.0000024020,0.0000024087,0.0000024080,0.0000023967, -0.0000023821,0.0000023724,0.0000023699,0.0000023697,0.0000023692, -0.0000023696,0.0000023713,0.0000023729,0.0000023719,0.0000023705, -0.0000023704,0.0000023694,0.0000023655,0.0000023564,0.0000023420, -0.0000023278,0.0000023169,0.0000023078,0.0000023047,0.0000023044, -0.0000023049,0.0000023051,0.0000023046,0.0000023032,0.0000023027, -0.0000023052,0.0000023092,0.0000023102,0.0000023084,0.0000023033, -0.0000022980,0.0000022956,0.0000022961,0.0000022977,0.0000022980, -0.0000022977,0.0000022991,0.0000023012,0.0000023040,0.0000023096, -0.0000023161,0.0000023193,0.0000023223,0.0000023317,0.0000023380, -0.0000023349,0.0000023211,0.0000023105,0.0000023170,0.0000023383, -0.0000023551,0.0000023606,0.0000023586,0.0000023556,0.0000023529, -0.0000023517,0.0000023539,0.0000023591,0.0000023640,0.0000023673, -0.0000023697,0.0000023751,0.0000023845,0.0000023913,0.0000023923, -0.0000023896,0.0000023857,0.0000023822,0.0000023804,0.0000023806, -0.0000023832,0.0000023874,0.0000023934,0.0000023990,0.0000024023, -0.0000024046,0.0000024059,0.0000024044,0.0000023993,0.0000023909, -0.0000023820,0.0000023723,0.0000023631,0.0000023563,0.0000023529, -0.0000023525,0.0000023514,0.0000023490,0.0000023469,0.0000023460, -0.0000023443,0.0000023377,0.0000023252,0.0000023088,0.0000022945, -0.0000022859,0.0000022815,0.0000022795,0.0000022792,0.0000022789, -0.0000022776,0.0000022764,0.0000022750,0.0000022718,0.0000022663, -0.0000022576,0.0000022455,0.0000022334,0.0000022240,0.0000022189, -0.0000022173,0.0000022205,0.0000022252,0.0000022340,0.0000022441, -0.0000022535,0.0000022609,0.0000022663,0.0000022667,0.0000022613, -0.0000022540,0.0000022505,0.0000022491,0.0000022459,0.0000022409, -0.0000022369,0.0000022330,0.0000022256,0.0000022173,0.0000022166, -0.0000022207,0.0000022227,0.0000022243,0.0000022330,0.0000022505, -0.0000022666,0.0000022736,0.0000022739,0.0000022735,0.0000022729, -0.0000022681,0.0000022591,0.0000022528,0.0000022516,0.0000022551, -0.0000022561,0.0000022541,0.0000022540,0.0000022659,0.0000022893, -0.0000023073,0.0000023127,0.0000023105,0.0000023031,0.0000022948, -0.0000022870,0.0000022786,0.0000022688,0.0000022576,0.0000022481, -0.0000022432,0.0000022430,0.0000022463,0.0000022500,0.0000022519, -0.0000022517,0.0000022483,0.0000022418,0.0000022339,0.0000022281, -0.0000022275,0.0000022313,0.0000022373,0.0000022429,0.0000022472, -0.0000022502,0.0000022512,0.0000022492,0.0000022434,0.0000022363, -0.0000022342,0.0000022406,0.0000022592,0.0000022829,0.0000023023, -0.0000023141,0.0000023200,0.0000023209,0.0000023193,0.0000023176, -0.0000023178,0.0000023190,0.0000023185,0.0000023139,0.0000023046, -0.0000022919,0.0000022798,0.0000022741,0.0000022747,0.0000022812, -0.0000022920,0.0000023017,0.0000023048,0.0000023040,0.0000023076, -0.0000023175,0.0000023215,0.0000023244,0.0000023449,0.0000023680, -0.0000023775,0.0000023838,0.0000023921,0.0000023969,0.0000024014, -0.0000024106,0.0000024213,0.0000024250,0.0000024201,0.0000024027, -0.0000023880,0.0000023879,0.0000024010,0.0000024156,0.0000024247, -0.0000024279,0.0000024290,0.0000024297,0.0000024286,0.0000024289, -0.0000024347,0.0000024468,0.0000024588,0.0000024642,0.0000024633, -0.0000024560,0.0000024450,0.0000024373,0.0000024330,0.0000024263, -0.0000024126,0.0000023966,0.0000023847,0.0000023767,0.0000023696, -0.0000023619,0.0000023588,0.0000023619,0.0000023692,0.0000023757, -0.0000023882,0.0000024001,0.0000024173,0.0000024466,0.0000024624, -0.0000024638,0.0000024511,0.0000024515,0.0000025198,0.0000025914, -0.0000026095,0.0000025836,0.0000025190,0.0000024649,0.0000024451, -0.0000024431,0.0000024482,0.0000024537,0.0000024494,0.0000024287, -0.0000024061,0.0000023956,0.0000023956,0.0000024002,0.0000024060, -0.0000024141,0.0000024250,0.0000024366,0.0000024457,0.0000024492, -0.0000024465,0.0000024401,0.0000024352,0.0000024341,0.0000024372, -0.0000024405,0.0000024420,0.0000024410,0.0000024380,0.0000024350, -0.0000024327,0.0000024304,0.0000024295,0.0000024292,0.0000024301, -0.0000024322,0.0000024332,0.0000024328,0.0000024317,0.0000024300, -0.0000024306,0.0000024334,0.0000024373,0.0000024413,0.0000024448, -0.0000024473,0.0000024476,0.0000024459,0.0000024430,0.0000024391, -0.0000024345,0.0000024292,0.0000024233,0.0000024171,0.0000024103, -0.0000024033,0.0000023973,0.0000023926,0.0000023881,0.0000023827, -0.0000023757,0.0000023670,0.0000023571,0.0000023473,0.0000023385, -0.0000023310,0.0000023247,0.0000023190,0.0000023143,0.0000023118, -0.0000023106,0.0000023106,0.0000023108,0.0000023113,0.0000023122, -0.0000023130,0.0000023136,0.0000023145,0.0000023152,0.0000023154, -0.0000023158,0.0000023163,0.0000023172,0.0000023185,0.0000023202, -0.0000023219,0.0000023237,0.0000023259,0.0000023278,0.0000023292, -0.0000023305,0.0000023319,0.0000023334,0.0000023348,0.0000023361, -0.0000023374,0.0000023386,0.0000023400,0.0000023406,0.0000023405, -0.0000023404,0.0000023398,0.0000023401,0.0000023411,0.0000023428, -0.0000023449,0.0000023479,0.0000023515,0.0000023550,0.0000023583, -0.0000023612,0.0000023638,0.0000023660,0.0000023681,0.0000023701, -0.0000023720,0.0000023728,0.0000023727,0.0000023711,0.0000023679, -0.0000023638,0.0000023598,0.0000023577,0.0000023579,0.0000023593, -0.0000023607,0.0000023615,0.0000023617,0.0000023615,0.0000023615, -0.0000023603,0.0000023553,0.0000023478,0.0000023377,0.0000023205, -0.0000022981,0.0000022805,0.0000022709,0.0000022582,0.0000022392, -0.0000022283,0.0000022283,0.0000022293,0.0000022292,0.0000022304, -0.0000022325,0.0000022334,0.0000022334,0.0000022336,0.0000022344, -0.0000022353,0.0000022360,0.0000022361,0.0000022341,0.0000022276, -0.0000022155,0.0000022052,0.0000022033,0.0000022062,0.0000022083, -0.0000022090,0.0000022092,0.0000022080,0.0000022031,0.0000021958, -0.0000021922,0.0000021937,0.0000021976,0.0000022032,0.0000022176, -0.0000022308,0.0000022274,0.0000022179,0.0000022207,0.0000022333, -0.0000022426,0.0000022450,0.0000022453,0.0000022509,0.0000022676, -0.0000022868,0.0000022965,0.0000023031,0.0000023189,0.0000023376, -0.0000023448,0.0000023420,0.0000023335,0.0000023274,0.0000023290, -0.0000023387,0.0000023520,0.0000023634,0.0000023706,0.0000023740, -0.0000023752,0.0000023775,0.0000023852,0.0000023980,0.0000024106, -0.0000024198,0.0000024266,0.0000024324,0.0000024366,0.0000024388, -0.0000024414,0.0000024473,0.0000024564,0.0000024642,0.0000024665, -0.0000024654,0.0000024616,0.0000024540,0.0000024418,0.0000024261, -0.0000024097,0.0000023975,0.0000023940,0.0000023957,0.0000024010, -0.0000024056,0.0000024071,0.0000024058,0.0000023998,0.0000023887, -0.0000023740,0.0000023584,0.0000023444,0.0000023337,0.0000023262, -0.0000023194,0.0000023111,0.0000023009,0.0000022903,0.0000022812, -0.0000022753,0.0000022735,0.0000022741,0.0000022767,0.0000022794, -0.0000022813,0.0000022822,0.0000022822,0.0000022819,0.0000022819, -0.0000022830,0.0000022861,0.0000022911,0.0000022968,0.0000023024, -0.0000023075,0.0000023119,0.0000023163,0.0000023229,0.0000023321, -0.0000023426,0.0000023524,0.0000023599,0.0000023647,0.0000023684, -0.0000023730,0.0000023785,0.0000023824,0.0000023830,0.0000023805, -0.0000023771,0.0000023757,0.0000023773,0.0000023825,0.0000023899, -0.0000023980,0.0000024066,0.0000024164,0.0000024272,0.0000024388, -0.0000024529,0.0000024687,0.0000024811,0.0000024858,0.0000024854, -0.0000024863,0.0000024909,0.0000024976,0.0000025047,0.0000025104, -0.0000025117,0.0000025101,0.0000025104,0.0000025142,0.0000025169, -0.0000025155,0.0000025104,0.0000025086,0.0000025134,0.0000025206, -0.0000025235,0.0000025225,0.0000025202,0.0000025200,0.0000025229, -0.0000025284,0.0000025352,0.0000025439,0.0000025548,0.0000025647, -0.0000025702,0.0000025713,0.0000025705,0.0000025687,0.0000025666, -0.0000025642,0.0000025613,0.0000025580,0.0000025549,0.0000025526, -0.0000025501,0.0000025477,0.0000025470,0.0000025480,0.0000025505, -0.0000025544,0.0000025586,0.0000025617,0.0000025625,0.0000025620, -0.0000025617,0.0000025618,0.0000025622,0.0000025607,0.0000025489, -0.0000025233,0.0000024951,0.0000024729,0.0000024461,0.0000024173, -0.0000024074,0.0000024152,0.0000024273,0.0000024284,0.0000024216, -0.0000024181,0.0000024244,0.0000024449,0.0000024642,0.0000024710, -0.0000024849,0.0000025211,0.0000025576,0.0000025733,0.0000025774, -0.0000025798,0.0000025809,0.0000025819,0.0000025831,0.0000025836, -0.0000025834,0.0000025824,0.0000025792,0.0000025739,0.0000025685, -0.0000025652,0.0000025648,0.0000025673,0.0000025718,0.0000025761, -0.0000025791,0.0000025811,0.0000025830,0.0000025857,0.0000025896, -0.0000025946,0.0000026008,0.0000026072,0.0000026120,0.0000026131, -0.0000026113,0.0000026061,0.0000026003,0.0000025950,0.0000025889, -0.0000025829,0.0000025803,0.0000025822,0.0000025884,0.0000025947, -0.0000025978,0.0000025966,0.0000025904,0.0000025843,0.0000025789, -0.0000025698,0.0000025620,0.0000025567,0.0000025387,0.0000025087, -0.0000024859,0.0000024750,0.0000024641,0.0000024360,0.0000023985, -0.0000023774,0.0000023690,0.0000023429,0.0000022941,0.0000022533, -0.0000022338,0.0000022239,0.0000022163,0.0000022099,0.0000022049, -0.0000022019,0.0000022010,0.0000022006,0.0000021989,0.0000021969, -0.0000021955,0.0000021945,0.0000021927,0.0000021886,0.0000021842, -0.0000021799,0.0000021752,0.0000021698,0.0000021644,0.0000021581, -0.0000021528,0.0000021476,0.0000021411,0.0000021345,0.0000021310, -0.0000021316,0.0000021349,0.0000021392,0.0000021453,0.0000021543, -0.0000021646,0.0000021747,0.0000021838,0.0000021901,0.0000021916, -0.0000021906,0.0000021894,0.0000021901,0.0000021935,0.0000021983, -0.0000022037,0.0000022106,0.0000022185,0.0000022259,0.0000022297, -0.0000022324,0.0000022324,0.0000022306,0.0000022282,0.0000022264, -0.0000022251,0.0000022243,0.0000022232,0.0000022217,0.0000022198, -0.0000022182,0.0000022166,0.0000022148,0.0000022133,0.0000022118, -0.0000022104,0.0000022093,0.0000022086,0.0000022082,0.0000022081, -0.0000022084,0.0000022100,0.0000022134,0.0000022182,0.0000022226, -0.0000022249,0.0000022252,0.0000022248,0.0000022248,0.0000022259, -0.0000022273,0.0000022273,0.0000022264,0.0000022253,0.0000022232, -0.0000022213,0.0000022200,0.0000022190,0.0000022185,0.0000022176, -0.0000022161,0.0000022139,0.0000022106,0.0000022064,0.0000022016, -0.0000021966,0.0000021932,0.0000021910,0.0000021897,0.0000021898, -0.0000021914,0.0000021932,0.0000021953,0.0000021989,0.0000022039, -0.0000022105,0.0000022180,0.0000022251,0.0000022319,0.0000022387, -0.0000022450,0.0000022500,0.0000022540,0.0000022579,0.0000022616, -0.0000022644,0.0000022659,0.0000022657,0.0000022642,0.0000022611, -0.0000022578,0.0000022553,0.0000022547,0.0000022543,0.0000022507, -0.0000022468,0.0000022464,0.0000022515,0.0000022588,0.0000022624, -0.0000022618,0.0000022594,0.0000022581,0.0000022585,0.0000022590, -0.0000022581,0.0000022558,0.0000022542,0.0000022544,0.0000022552, -0.0000022550,0.0000022537,0.0000022533,0.0000022547,0.0000022562, -0.0000022564,0.0000022548,0.0000022525,0.0000022493,0.0000022450, -0.0000022390,0.0000022308,0.0000022223,0.0000022163,0.0000022152, -0.0000022159,0.0000022168,0.0000022197,0.0000022246,0.0000022298, -0.0000022340,0.0000022370,0.0000022388,0.0000022376,0.0000022324, -0.0000022257,0.0000022199,0.0000022140,0.0000022072,0.0000022012, -0.0000021990,0.0000021996,0.0000022020,0.0000022072,0.0000022154, -0.0000022222,0.0000022238,0.0000022227,0.0000022205,0.0000022185, -0.0000022172,0.0000022158,0.0000022140,0.0000022113,0.0000022076, -0.0000022033,0.0000021992,0.0000021967,0.0000021973,0.0000022013, -0.0000022065,0.0000022107,0.0000022132,0.0000022139,0.0000022134, -0.0000022118,0.0000022102,0.0000022094,0.0000022085,0.0000022057, -0.0000022009,0.0000021969,0.0000021945,0.0000021925,0.0000021874, -0.0000021799,0.0000021728,0.0000021673,0.0000021635,0.0000021616, -0.0000021613,0.0000021610,0.0000021606,0.0000021592,0.0000021539, -0.0000021408,0.0000021274,0.0000021233,0.0000021250,0.0000021257, -0.0000021234,0.0000021200,0.0000021153,0.0000021114,0.0000021104, -0.0000021104,0.0000021165,0.0000021423,0.0000021753,0.0000021937, -0.0000022020,0.0000022119,0.0000022200,0.0000022218,0.0000022213, -0.0000022209,0.0000022217,0.0000022243,0.0000022269,0.0000022278, -0.0000022262,0.0000022219,0.0000022205,0.0000022238,0.0000022290, -0.0000022345,0.0000022500,0.0000022740,0.0000022942,0.0000023088, -0.0000023194,0.0000023237,0.0000023247,0.0000023287,0.0000023351, -0.0000023385,0.0000023379,0.0000023355,0.0000023336,0.0000023325, -0.0000023309,0.0000023282,0.0000023239,0.0000023184,0.0000023123, -0.0000023055,0.0000022988,0.0000022929,0.0000022876,0.0000022828, -0.0000022792,0.0000022768,0.0000022755,0.0000022751,0.0000022750, -0.0000022738,0.0000022716,0.0000022698,0.0000022700,0.0000022707, -0.0000022683,0.0000022560,0.0000022376,0.0000022221,0.0000022117, -0.0000022042,0.0000021988,0.0000021916,0.0000021948,0.0000022005, -0.0000022040,0.0000022049,0.0000022025,0.0000021955,0.0000021859, -0.0000021815,0.0000021844,0.0000021975,0.0000022140,0.0000022248, -0.0000022304,0.0000022363,0.0000022426,0.0000022492,0.0000022618, -0.0000022815,0.0000022982,0.0000023031,0.0000023015,0.0000023007, -0.0000023054,0.0000023118,0.0000023129,0.0000023100,0.0000023094, -0.0000023137,0.0000023190,0.0000023238,0.0000023278,0.0000023344, -0.0000023455,0.0000023477,0.0000023304,0.0000023116,0.0000023085, -0.0000023142,0.0000023231,0.0000023312,0.0000023363,0.0000023382, -0.0000023368,0.0000023329,0.0000023303,0.0000023299,0.0000023294, -0.0000023266,0.0000023222,0.0000023182,0.0000023154,0.0000023134, -0.0000023107,0.0000023059,0.0000022993,0.0000022922,0.0000022865, -0.0000022828,0.0000022807,0.0000022796,0.0000022777,0.0000022748, -0.0000022713,0.0000022680,0.0000022646,0.0000022609,0.0000022570, -0.0000022535,0.0000022517,0.0000022512,0.0000022511,0.0000022528, -0.0000022558,0.0000022576,0.0000022594,0.0000022621,0.0000022636, -0.0000022645,0.0000022642,0.0000022622,0.0000022610,0.0000022606, -0.0000022622,0.0000022650,0.0000022668,0.0000022727,0.0000022824, -0.0000022925,0.0000023024,0.0000023101,0.0000023141,0.0000023177, -0.0000023278,0.0000023433,0.0000023557,0.0000023608,0.0000023624, -0.0000023624,0.0000023615,0.0000023616,0.0000023631,0.0000023655, -0.0000023669,0.0000023669,0.0000023657,0.0000023632,0.0000023577, -0.0000023498,0.0000023435,0.0000023403,0.0000023375,0.0000023344, -0.0000023330,0.0000023343,0.0000023384,0.0000023422,0.0000023436, -0.0000023438,0.0000023443,0.0000023455,0.0000023478,0.0000023529, -0.0000023592,0.0000023643,0.0000023687,0.0000023718,0.0000023739, -0.0000023762,0.0000023785,0.0000023799,0.0000023803,0.0000023813, -0.0000023848,0.0000023900,0.0000023935,0.0000023939,0.0000023925, -0.0000023911,0.0000023884,0.0000023837,0.0000023800,0.0000023792, -0.0000023801,0.0000023817,0.0000023824,0.0000023818,0.0000023785, -0.0000023720,0.0000023650,0.0000023644,0.0000023722,0.0000023799, -0.0000023824,0.0000023824,0.0000023848,0.0000023982,0.0000024241, -0.0000024535,0.0000024783,0.0000024974,0.0000025096,0.0000025137, -0.0000025103,0.0000025040,0.0000025009,0.0000025033,0.0000025091, -0.0000025134,0.0000025136,0.0000025099,0.0000025036,0.0000024966, -0.0000024890,0.0000024819,0.0000024763,0.0000024714,0.0000024661, -0.0000024598,0.0000024534,0.0000024469,0.0000024392,0.0000024294, -0.0000024196,0.0000024122,0.0000024076,0.0000024044,0.0000024018, -0.0000023999,0.0000023976,0.0000023934,0.0000023872,0.0000023803, -0.0000023734,0.0000023660,0.0000023590,0.0000023548,0.0000023506, -0.0000023415,0.0000023279,0.0000023177,0.0000023150,0.0000023159, -0.0000023184,0.0000023241,0.0000023323,0.0000023407,0.0000023469, -0.0000023493,0.0000023486,0.0000023453,0.0000023420,0.0000023392, -0.0000023411,0.0000023445,0.0000023508,0.0000023575,0.0000023612, -0.0000023603,0.0000023574,0.0000023559,0.0000023555,0.0000023559, -0.0000023561,0.0000023558,0.0000023567,0.0000023601,0.0000023663, -0.0000023738,0.0000023814,0.0000023879,0.0000023929,0.0000023980, -0.0000024041,0.0000024104,0.0000024160,0.0000024207,0.0000024243, -0.0000024266,0.0000024281,0.0000024292,0.0000024303,0.0000024311, -0.0000024317,0.0000024324,0.0000024338,0.0000024358,0.0000024387, -0.0000024426,0.0000024469,0.0000024510,0.0000024549,0.0000024597, -0.0000024655,0.0000024717,0.0000024769,0.0000024810,0.0000024843, -0.0000024870,0.0000024886,0.0000024872,0.0000024840,0.0000024786, -0.0000024722,0.0000024652,0.0000024582,0.0000024517,0.0000024459, -0.0000024414,0.0000024395,0.0000024396,0.0000024410,0.0000024433, -0.0000024471,0.0000024515,0.0000024553,0.0000024581,0.0000024610, -0.0000024638,0.0000024670,0.0000024704,0.0000024734,0.0000024759, -0.0000024778,0.0000024784,0.0000024771,0.0000024759,0.0000024748, -0.0000024736,0.0000024713,0.0000024678,0.0000024630,0.0000024554, -0.0000024447,0.0000024332,0.0000024227,0.0000024158,0.0000024117, -0.0000024101,0.0000024075,0.0000024050,0.0000024034,0.0000024008, -0.0000023961,0.0000023906,0.0000023892,0.0000023914,0.0000023968, -0.0000024003,0.0000023992,0.0000023932,0.0000023838,0.0000023728, -0.0000023641,0.0000023598,0.0000023615,0.0000023682,0.0000023768, -0.0000023856,0.0000023952,0.0000024040,0.0000024110,0.0000024167, -0.0000024209,0.0000024234,0.0000024244,0.0000024229,0.0000024172, -0.0000024080,0.0000023988,0.0000023940,0.0000023965,0.0000024046, -0.0000024065,0.0000023981,0.0000023920,0.0000023924,0.0000023986, -0.0000024082,0.0000024138,0.0000024099,0.0000023970,0.0000023826, -0.0000023725,0.0000023697,0.0000023691,0.0000023684,0.0000023684, -0.0000023695,0.0000023721,0.0000023735,0.0000023723,0.0000023700, -0.0000023673,0.0000023637,0.0000023577,0.0000023485,0.0000023381, -0.0000023279,0.0000023195,0.0000023136,0.0000023101,0.0000023082, -0.0000023073,0.0000023063,0.0000023042,0.0000023021,0.0000023034, -0.0000023096,0.0000023127,0.0000023109,0.0000023047,0.0000022987, -0.0000022967,0.0000022982,0.0000023022,0.0000023049,0.0000023050, -0.0000023032,0.0000023006,0.0000023014,0.0000023042,0.0000023091, -0.0000023169,0.0000023193,0.0000023199,0.0000023255,0.0000023325, -0.0000023331,0.0000023268,0.0000023127,0.0000023081,0.0000023200, -0.0000023380,0.0000023492,0.0000023522,0.0000023519,0.0000023510, -0.0000023523,0.0000023551,0.0000023579,0.0000023604,0.0000023605, -0.0000023597,0.0000023629,0.0000023732,0.0000023847,0.0000023893, -0.0000023877,0.0000023829,0.0000023792,0.0000023759,0.0000023740, -0.0000023752,0.0000023781,0.0000023823,0.0000023848,0.0000023861, -0.0000023884,0.0000023905,0.0000023901,0.0000023858,0.0000023783, -0.0000023685,0.0000023592,0.0000023532,0.0000023504,0.0000023484, -0.0000023445,0.0000023422,0.0000023422,0.0000023418,0.0000023364, -0.0000023233,0.0000023072,0.0000022943,0.0000022875,0.0000022847, -0.0000022823,0.0000022797,0.0000022775,0.0000022752,0.0000022739, -0.0000022731,0.0000022706,0.0000022636,0.0000022519,0.0000022382, -0.0000022264,0.0000022196,0.0000022186,0.0000022198,0.0000022253, -0.0000022338,0.0000022435,0.0000022518,0.0000022583,0.0000022643, -0.0000022693,0.0000022718,0.0000022693,0.0000022624,0.0000022546, -0.0000022521,0.0000022507,0.0000022463,0.0000022418,0.0000022392, -0.0000022344,0.0000022255,0.0000022176,0.0000022167,0.0000022202, -0.0000022216,0.0000022246,0.0000022360,0.0000022540,0.0000022678, -0.0000022722,0.0000022730,0.0000022731,0.0000022704,0.0000022629, -0.0000022551,0.0000022531,0.0000022552,0.0000022597,0.0000022601, -0.0000022572,0.0000022601,0.0000022763,0.0000022992,0.0000023120, -0.0000023129,0.0000023088,0.0000023007,0.0000022918,0.0000022826, -0.0000022708,0.0000022580,0.0000022476,0.0000022410,0.0000022390, -0.0000022414,0.0000022455,0.0000022493,0.0000022514,0.0000022516, -0.0000022491,0.0000022421,0.0000022329,0.0000022272,0.0000022272, -0.0000022321,0.0000022388,0.0000022444,0.0000022486,0.0000022516, -0.0000022518,0.0000022489,0.0000022431,0.0000022379,0.0000022385, -0.0000022485,0.0000022682,0.0000022892,0.0000023055,0.0000023160, -0.0000023213,0.0000023220,0.0000023208,0.0000023185,0.0000023168, -0.0000023162,0.0000023152,0.0000023116,0.0000023037,0.0000022925, -0.0000022809,0.0000022739,0.0000022732,0.0000022762,0.0000022835, -0.0000022929,0.0000022985,0.0000023001,0.0000023037,0.0000023141, -0.0000023215,0.0000023191,0.0000023278,0.0000023529,0.0000023702, -0.0000023769,0.0000023850,0.0000023925,0.0000023968,0.0000024036, -0.0000024135,0.0000024221,0.0000024236,0.0000024145,0.0000023961, -0.0000023859,0.0000023888,0.0000024005,0.0000024110,0.0000024166, -0.0000024190,0.0000024212,0.0000024234,0.0000024267,0.0000024341, -0.0000024463,0.0000024572,0.0000024624,0.0000024631,0.0000024592, -0.0000024505,0.0000024406,0.0000024349,0.0000024308,0.0000024225, -0.0000024076,0.0000023930,0.0000023834,0.0000023763,0.0000023694, -0.0000023619,0.0000023585,0.0000023606,0.0000023661,0.0000023730, -0.0000023828,0.0000023961,0.0000024062,0.0000024316,0.0000024520, -0.0000024565,0.0000024515,0.0000024404,0.0000024620,0.0000025392, -0.0000025946,0.0000025992,0.0000025640,0.0000025021,0.0000024558, -0.0000024402,0.0000024395,0.0000024455,0.0000024504,0.0000024468, -0.0000024312,0.0000024093,0.0000023964,0.0000023951,0.0000023975, -0.0000024022,0.0000024089,0.0000024180,0.0000024290,0.0000024388, -0.0000024448,0.0000024460,0.0000024438,0.0000024400,0.0000024386, -0.0000024391,0.0000024398,0.0000024390,0.0000024368,0.0000024344, -0.0000024323,0.0000024299,0.0000024271,0.0000024239,0.0000024213, -0.0000024222,0.0000024243,0.0000024277,0.0000024313,0.0000024333, -0.0000024360,0.0000024381,0.0000024402,0.0000024425,0.0000024453, -0.0000024482,0.0000024496,0.0000024497,0.0000024488,0.0000024474, -0.0000024443,0.0000024403,0.0000024354,0.0000024299,0.0000024238, -0.0000024173,0.0000024117,0.0000024076,0.0000024044,0.0000024008, -0.0000023960,0.0000023896,0.0000023819,0.0000023740,0.0000023667, -0.0000023599,0.0000023529,0.0000023447,0.0000023357,0.0000023274, -0.0000023214,0.0000023177,0.0000023156,0.0000023141,0.0000023134, -0.0000023126,0.0000023120,0.0000023126,0.0000023135,0.0000023139, -0.0000023141,0.0000023144,0.0000023150,0.0000023161,0.0000023176, -0.0000023193,0.0000023211,0.0000023231,0.0000023252,0.0000023273, -0.0000023292,0.0000023307,0.0000023322,0.0000023338,0.0000023351, -0.0000023361,0.0000023372,0.0000023386,0.0000023403,0.0000023414, -0.0000023425,0.0000023434,0.0000023445,0.0000023460,0.0000023478, -0.0000023500,0.0000023533,0.0000023571,0.0000023607,0.0000023636, -0.0000023656,0.0000023670,0.0000023682,0.0000023696,0.0000023711, -0.0000023727,0.0000023736,0.0000023736,0.0000023724,0.0000023700, -0.0000023665,0.0000023622,0.0000023587,0.0000023571,0.0000023570, -0.0000023573,0.0000023580,0.0000023590,0.0000023593,0.0000023585, -0.0000023580,0.0000023557,0.0000023496,0.0000023415,0.0000023298, -0.0000023111,0.0000022903,0.0000022760,0.0000022652,0.0000022477, -0.0000022296,0.0000022245,0.0000022279,0.0000022300,0.0000022298, -0.0000022298,0.0000022295,0.0000022294,0.0000022305,0.0000022324, -0.0000022336,0.0000022339,0.0000022340,0.0000022337,0.0000022295, -0.0000022179,0.0000022062,0.0000022039,0.0000022074,0.0000022093, -0.0000022093,0.0000022094,0.0000022096,0.0000022086,0.0000022028, -0.0000021939,0.0000021896,0.0000021914,0.0000021949,0.0000022012, -0.0000022169,0.0000022289,0.0000022254,0.0000022170,0.0000022199, -0.0000022311,0.0000022400,0.0000022443,0.0000022470,0.0000022524, -0.0000022670,0.0000022853,0.0000022943,0.0000022994,0.0000023144, -0.0000023340,0.0000023434,0.0000023411,0.0000023339,0.0000023308, -0.0000023349,0.0000023481,0.0000023632,0.0000023742,0.0000023802, -0.0000023829,0.0000023854,0.0000023920,0.0000024037,0.0000024150, -0.0000024219,0.0000024262,0.0000024304,0.0000024340,0.0000024359, -0.0000024373,0.0000024411,0.0000024492,0.0000024581,0.0000024623, -0.0000024617,0.0000024587,0.0000024533,0.0000024441,0.0000024306, -0.0000024141,0.0000023978,0.0000023871,0.0000023850,0.0000023893, -0.0000023956,0.0000023988,0.0000023980,0.0000023921,0.0000023817, -0.0000023674,0.0000023509,0.0000023347,0.0000023210,0.0000023112, -0.0000023040,0.0000022969,0.0000022879,0.0000022774,0.0000022669, -0.0000022582,0.0000022530,0.0000022510,0.0000022512,0.0000022532, -0.0000022561,0.0000022587,0.0000022606,0.0000022617,0.0000022618, -0.0000022613,0.0000022608,0.0000022614,0.0000022641,0.0000022695, -0.0000022770,0.0000022854,0.0000022930,0.0000022990,0.0000023049, -0.0000023127,0.0000023232,0.0000023353,0.0000023462,0.0000023538, -0.0000023576,0.0000023604,0.0000023648,0.0000023701,0.0000023735, -0.0000023732,0.0000023705,0.0000023683,0.0000023685,0.0000023726, -0.0000023797,0.0000023883,0.0000023971,0.0000024059,0.0000024154, -0.0000024259,0.0000024387,0.0000024548,0.0000024717,0.0000024827, -0.0000024853,0.0000024849,0.0000024865,0.0000024911,0.0000024979, -0.0000025053,0.0000025089,0.0000025074,0.0000025063,0.0000025089, -0.0000025127,0.0000025122,0.0000025071,0.0000025035,0.0000025068, -0.0000025144,0.0000025187,0.0000025180,0.0000025150,0.0000025142, -0.0000025176,0.0000025245,0.0000025330,0.0000025431,0.0000025548, -0.0000025650,0.0000025699,0.0000025701,0.0000025678,0.0000025643, -0.0000025608,0.0000025575,0.0000025540,0.0000025506,0.0000025478, -0.0000025457,0.0000025440,0.0000025433,0.0000025445,0.0000025473, -0.0000025510,0.0000025558,0.0000025602,0.0000025627,0.0000025628, -0.0000025612,0.0000025596,0.0000025590,0.0000025585,0.0000025534, -0.0000025363,0.0000025083,0.0000024828,0.0000024622,0.0000024350, -0.0000024095,0.0000024031,0.0000024137,0.0000024257,0.0000024255, -0.0000024186,0.0000024168,0.0000024277,0.0000024505,0.0000024673, -0.0000024732,0.0000024912,0.0000025289,0.0000025604,0.0000025730, -0.0000025766,0.0000025787,0.0000025792,0.0000025791,0.0000025787, -0.0000025774,0.0000025757,0.0000025739,0.0000025714,0.0000025680, -0.0000025644,0.0000025622,0.0000025620,0.0000025641,0.0000025683, -0.0000025726,0.0000025755,0.0000025769,0.0000025775,0.0000025791, -0.0000025827,0.0000025885,0.0000025956,0.0000026022,0.0000026067, -0.0000026077,0.0000026053,0.0000025997,0.0000025939,0.0000025892, -0.0000025847,0.0000025806,0.0000025794,0.0000025829,0.0000025900, -0.0000025956,0.0000025971,0.0000025950,0.0000025883,0.0000025824, -0.0000025785,0.0000025705,0.0000025617,0.0000025564,0.0000025400, -0.0000025083,0.0000024819,0.0000024693,0.0000024611,0.0000024386, -0.0000024018,0.0000023766,0.0000023698,0.0000023507,0.0000023050, -0.0000022617,0.0000022408,0.0000022319,0.0000022246,0.0000022164, -0.0000022077,0.0000022012,0.0000021975,0.0000021962,0.0000021957, -0.0000021945,0.0000021935,0.0000021922,0.0000021890,0.0000021839, -0.0000021791,0.0000021740,0.0000021682,0.0000021641,0.0000021592, -0.0000021527,0.0000021466,0.0000021414,0.0000021358,0.0000021307, -0.0000021273,0.0000021266,0.0000021288,0.0000021328,0.0000021371, -0.0000021423,0.0000021488,0.0000021559,0.0000021643,0.0000021732, -0.0000021792,0.0000021800,0.0000021790,0.0000021791,0.0000021823, -0.0000021880,0.0000021948,0.0000022016,0.0000022086,0.0000022154, -0.0000022215,0.0000022265,0.0000022300,0.0000022314,0.0000022319, -0.0000022313,0.0000022308,0.0000022300,0.0000022282,0.0000022259, -0.0000022235,0.0000022213,0.0000022195,0.0000022179,0.0000022165, -0.0000022149,0.0000022135,0.0000022118,0.0000022101,0.0000022090, -0.0000022088,0.0000022091,0.0000022101,0.0000022131,0.0000022180, -0.0000022228,0.0000022258,0.0000022256,0.0000022234,0.0000022214, -0.0000022215,0.0000022224,0.0000022224,0.0000022212,0.0000022195, -0.0000022173,0.0000022148,0.0000022144,0.0000022144,0.0000022150, -0.0000022145,0.0000022131,0.0000022109,0.0000022079,0.0000022042, -0.0000021996,0.0000021941,0.0000021891,0.0000021854,0.0000021825, -0.0000021813,0.0000021826,0.0000021850,0.0000021879,0.0000021918, -0.0000021970,0.0000022029,0.0000022097,0.0000022161,0.0000022215, -0.0000022272,0.0000022340,0.0000022406,0.0000022455,0.0000022498, -0.0000022543,0.0000022585,0.0000022624,0.0000022649,0.0000022654, -0.0000022639,0.0000022609,0.0000022572,0.0000022549,0.0000022548, -0.0000022535,0.0000022487,0.0000022445,0.0000022449,0.0000022508, -0.0000022577,0.0000022606,0.0000022600,0.0000022584,0.0000022583, -0.0000022595,0.0000022603,0.0000022594,0.0000022572,0.0000022555, -0.0000022550,0.0000022549,0.0000022542,0.0000022525,0.0000022513, -0.0000022516,0.0000022523,0.0000022519,0.0000022503,0.0000022482, -0.0000022451,0.0000022409,0.0000022354,0.0000022291,0.0000022234, -0.0000022202,0.0000022199,0.0000022207,0.0000022238,0.0000022290, -0.0000022343,0.0000022385,0.0000022408,0.0000022414,0.0000022402, -0.0000022355,0.0000022289,0.0000022232,0.0000022178,0.0000022110, -0.0000022029,0.0000021969,0.0000021959,0.0000021973,0.0000022012, -0.0000022091,0.0000022182,0.0000022226,0.0000022227,0.0000022211, -0.0000022189,0.0000022168,0.0000022154,0.0000022141,0.0000022122, -0.0000022094,0.0000022058,0.0000022017,0.0000021983,0.0000021972, -0.0000021988,0.0000022031,0.0000022085,0.0000022133,0.0000022168, -0.0000022180,0.0000022179,0.0000022165,0.0000022145,0.0000022126, -0.0000022107,0.0000022078,0.0000022029,0.0000021984,0.0000021965, -0.0000021965,0.0000021940,0.0000021877,0.0000021807,0.0000021752, -0.0000021702,0.0000021654,0.0000021613,0.0000021589,0.0000021573, -0.0000021558,0.0000021529,0.0000021435,0.0000021300,0.0000021226, -0.0000021225,0.0000021228,0.0000021209,0.0000021183,0.0000021145, -0.0000021108,0.0000021098,0.0000021101,0.0000021114,0.0000021311, -0.0000021671,0.0000021920,0.0000022022,0.0000022119,0.0000022205, -0.0000022227,0.0000022222,0.0000022222,0.0000022231,0.0000022256, -0.0000022287,0.0000022306,0.0000022301,0.0000022260,0.0000022214, -0.0000022214,0.0000022264,0.0000022315,0.0000022396,0.0000022583, -0.0000022806,0.0000022966,0.0000023093,0.0000023209,0.0000023260, -0.0000023262,0.0000023283,0.0000023344,0.0000023396,0.0000023405, -0.0000023388,0.0000023365,0.0000023346,0.0000023327,0.0000023298, -0.0000023258,0.0000023205,0.0000023145,0.0000023080,0.0000023017, -0.0000022960,0.0000022912,0.0000022868,0.0000022830,0.0000022806, -0.0000022797,0.0000022792,0.0000022783,0.0000022760,0.0000022729, -0.0000022708,0.0000022702,0.0000022694,0.0000022615,0.0000022439, -0.0000022243,0.0000022099,0.0000022000,0.0000021937,0.0000021856, -0.0000021890,0.0000021967,0.0000022024,0.0000022048,0.0000022057, -0.0000022034,0.0000021940,0.0000021841,0.0000021824,0.0000021914, -0.0000022075,0.0000022201,0.0000022268,0.0000022329,0.0000022397, -0.0000022476,0.0000022617,0.0000022815,0.0000022964,0.0000022994, -0.0000022977,0.0000022984,0.0000023044,0.0000023101,0.0000023104, -0.0000023088,0.0000023105,0.0000023159,0.0000023214,0.0000023259, -0.0000023303,0.0000023392,0.0000023487,0.0000023448,0.0000023237, -0.0000023084,0.0000023082,0.0000023142,0.0000023216,0.0000023271, -0.0000023296,0.0000023304,0.0000023290,0.0000023263,0.0000023255, -0.0000023258,0.0000023249,0.0000023218,0.0000023179,0.0000023150, -0.0000023132,0.0000023110,0.0000023063,0.0000022995,0.0000022924, -0.0000022867,0.0000022840,0.0000022813,0.0000022802,0.0000022804, -0.0000022803,0.0000022787,0.0000022753,0.0000022714,0.0000022679, -0.0000022643,0.0000022600,0.0000022558,0.0000022542,0.0000022541, -0.0000022539,0.0000022548,0.0000022569,0.0000022584,0.0000022599, -0.0000022623,0.0000022638,0.0000022652,0.0000022652,0.0000022627, -0.0000022608,0.0000022598,0.0000022596,0.0000022615,0.0000022622, -0.0000022654,0.0000022740,0.0000022843,0.0000022943,0.0000023033, -0.0000023101,0.0000023139,0.0000023183,0.0000023287,0.0000023434, -0.0000023556,0.0000023623,0.0000023645,0.0000023642,0.0000023629, -0.0000023623,0.0000023628,0.0000023636,0.0000023650,0.0000023661, -0.0000023657,0.0000023636,0.0000023584,0.0000023503,0.0000023443, -0.0000023425,0.0000023415,0.0000023389,0.0000023362,0.0000023363, -0.0000023387,0.0000023411,0.0000023423,0.0000023427,0.0000023434, -0.0000023452,0.0000023492,0.0000023547,0.0000023598,0.0000023644, -0.0000023683,0.0000023708,0.0000023730,0.0000023755,0.0000023779, -0.0000023800,0.0000023815,0.0000023833,0.0000023866,0.0000023915, -0.0000023950,0.0000023956,0.0000023943,0.0000023925,0.0000023892, -0.0000023847,0.0000023811,0.0000023792,0.0000023789,0.0000023794, -0.0000023797,0.0000023789,0.0000023755,0.0000023692,0.0000023609, -0.0000023574,0.0000023611,0.0000023686,0.0000023742,0.0000023768, -0.0000023794,0.0000023886,0.0000024084,0.0000024356,0.0000024632, -0.0000024858,0.0000025014,0.0000025090,0.0000025078,0.0000025032, -0.0000024993,0.0000025009,0.0000025071,0.0000025128,0.0000025149, -0.0000025131,0.0000025084,0.0000025020,0.0000024941,0.0000024865, -0.0000024809,0.0000024772,0.0000024728,0.0000024662,0.0000024585, -0.0000024515,0.0000024449,0.0000024372,0.0000024292,0.0000024225, -0.0000024182,0.0000024158,0.0000024142,0.0000024129,0.0000024113, -0.0000024078,0.0000024016,0.0000023932,0.0000023835,0.0000023737, -0.0000023649,0.0000023592,0.0000023562,0.0000023512,0.0000023399, -0.0000023257,0.0000023163,0.0000023138,0.0000023148,0.0000023188, -0.0000023269,0.0000023376,0.0000023470,0.0000023518,0.0000023556, -0.0000023564,0.0000023552,0.0000023526,0.0000023503,0.0000023480, -0.0000023495,0.0000023533,0.0000023583,0.0000023608,0.0000023604, -0.0000023586,0.0000023562,0.0000023551,0.0000023536,0.0000023525, -0.0000023519,0.0000023523,0.0000023542,0.0000023584,0.0000023651, -0.0000023734,0.0000023824,0.0000023918,0.0000024006,0.0000024083, -0.0000024146,0.0000024195,0.0000024233,0.0000024258,0.0000024273, -0.0000024278,0.0000024276,0.0000024266,0.0000024249,0.0000024232, -0.0000024222,0.0000024220,0.0000024233,0.0000024261,0.0000024297, -0.0000024334,0.0000024374,0.0000024426,0.0000024500,0.0000024588, -0.0000024667,0.0000024724,0.0000024764,0.0000024797,0.0000024823, -0.0000024834,0.0000024830,0.0000024807,0.0000024775,0.0000024728, -0.0000024673,0.0000024613,0.0000024549,0.0000024488,0.0000024443, -0.0000024418,0.0000024415,0.0000024429,0.0000024466,0.0000024511, -0.0000024549,0.0000024578,0.0000024608,0.0000024633,0.0000024653, -0.0000024668,0.0000024680,0.0000024687,0.0000024694,0.0000024704, -0.0000024715,0.0000024732,0.0000024754,0.0000024782,0.0000024790, -0.0000024775,0.0000024739,0.0000024679,0.0000024599,0.0000024504, -0.0000024396,0.0000024280,0.0000024172,0.0000024098,0.0000024052, -0.0000024025,0.0000024024,0.0000024039,0.0000024068,0.0000024072, -0.0000024048,0.0000024008,0.0000023974,0.0000023966,0.0000023968, -0.0000023957,0.0000023907,0.0000023815,0.0000023699,0.0000023598, -0.0000023549,0.0000023558,0.0000023608,0.0000023673,0.0000023747, -0.0000023829,0.0000023910,0.0000023978,0.0000024023,0.0000024039, -0.0000024033,0.0000023999,0.0000023946,0.0000023899,0.0000023878, -0.0000023908,0.0000023996,0.0000024071,0.0000024045,0.0000023952, -0.0000023921,0.0000023948,0.0000024039,0.0000024159,0.0000024182, -0.0000024104,0.0000023973,0.0000023832,0.0000023729,0.0000023686, -0.0000023673,0.0000023663,0.0000023661,0.0000023670,0.0000023694, -0.0000023725,0.0000023735,0.0000023715,0.0000023677,0.0000023629, -0.0000023566,0.0000023494,0.0000023426,0.0000023358,0.0000023300, -0.0000023239,0.0000023193,0.0000023154,0.0000023116,0.0000023078, -0.0000023038,0.0000023011,0.0000023027,0.0000023109,0.0000023160, -0.0000023143,0.0000023083,0.0000023026,0.0000023004,0.0000023023, -0.0000023073,0.0000023117,0.0000023134,0.0000023130,0.0000023096, -0.0000023046,0.0000023016,0.0000023046,0.0000023103,0.0000023173, -0.0000023198,0.0000023184,0.0000023215,0.0000023293,0.0000023318, -0.0000023313,0.0000023229,0.0000023117,0.0000023114,0.0000023203, -0.0000023309,0.0000023378,0.0000023423,0.0000023472,0.0000023510, -0.0000023528,0.0000023544,0.0000023557,0.0000023560,0.0000023554, -0.0000023576,0.0000023640,0.0000023741,0.0000023835,0.0000023853, -0.0000023819,0.0000023779,0.0000023740,0.0000023710,0.0000023699, -0.0000023708,0.0000023706,0.0000023699,0.0000023700,0.0000023712, -0.0000023729,0.0000023729,0.0000023695,0.0000023627,0.0000023562, -0.0000023521,0.0000023479,0.0000023430,0.0000023384,0.0000023379, -0.0000023391,0.0000023356,0.0000023237,0.0000023071,0.0000022949, -0.0000022904,0.0000022886,0.0000022870,0.0000022849,0.0000022821, -0.0000022785,0.0000022746,0.0000022701,0.0000022646,0.0000022566, -0.0000022465,0.0000022374,0.0000022304,0.0000022278,0.0000022281, -0.0000022347,0.0000022423,0.0000022494,0.0000022554,0.0000022597, -0.0000022620,0.0000022633,0.0000022648,0.0000022682,0.0000022706, -0.0000022672,0.0000022588,0.0000022532,0.0000022526,0.0000022517, -0.0000022470,0.0000022433,0.0000022421,0.0000022371,0.0000022260, -0.0000022181,0.0000022177,0.0000022195,0.0000022209,0.0000022265, -0.0000022405,0.0000022568,0.0000022678,0.0000022706,0.0000022717, -0.0000022721,0.0000022674,0.0000022583,0.0000022527,0.0000022530, -0.0000022585,0.0000022633,0.0000022629,0.0000022608,0.0000022675, -0.0000022875,0.0000023073,0.0000023145,0.0000023128,0.0000023061, -0.0000022975,0.0000022881,0.0000022766,0.0000022614,0.0000022470, -0.0000022386,0.0000022358,0.0000022365,0.0000022397,0.0000022441, -0.0000022479,0.0000022504,0.0000022512,0.0000022484,0.0000022400, -0.0000022299,0.0000022249,0.0000022271,0.0000022333,0.0000022403, -0.0000022456,0.0000022497,0.0000022527,0.0000022528,0.0000022494, -0.0000022450,0.0000022422,0.0000022464,0.0000022587,0.0000022769, -0.0000022944,0.0000023077,0.0000023165,0.0000023211,0.0000023226, -0.0000023216,0.0000023193,0.0000023165,0.0000023138,0.0000023117, -0.0000023081,0.0000023010,0.0000022915,0.0000022816,0.0000022737, -0.0000022711,0.0000022719,0.0000022759,0.0000022832,0.0000022899, -0.0000022936,0.0000022981,0.0000023087,0.0000023209,0.0000023207, -0.0000023184,0.0000023344,0.0000023580,0.0000023700,0.0000023768, -0.0000023854,0.0000023916,0.0000023972,0.0000024059,0.0000024150, -0.0000024213,0.0000024212,0.0000024085,0.0000023916,0.0000023855, -0.0000023891,0.0000023983,0.0000024053,0.0000024088,0.0000024116, -0.0000024161,0.0000024227,0.0000024320,0.0000024445,0.0000024555, -0.0000024607,0.0000024613,0.0000024596,0.0000024540,0.0000024448, -0.0000024370,0.0000024326,0.0000024278,0.0000024179,0.0000024028, -0.0000023902,0.0000023823,0.0000023753,0.0000023685,0.0000023617, -0.0000023584,0.0000023601,0.0000023640,0.0000023709,0.0000023791, -0.0000023927,0.0000024001,0.0000024171,0.0000024402,0.0000024486, -0.0000024472,0.0000024372,0.0000024317,0.0000024728,0.0000025494, -0.0000025888,0.0000025859,0.0000025489,0.0000024919,0.0000024512, -0.0000024375,0.0000024366,0.0000024411,0.0000024460,0.0000024465, -0.0000024354,0.0000024153,0.0000023992,0.0000023937,0.0000023939, -0.0000023976,0.0000024036,0.0000024115,0.0000024206,0.0000024297, -0.0000024377,0.0000024429,0.0000024449,0.0000024452,0.0000024438, -0.0000024419,0.0000024390,0.0000024358,0.0000024333,0.0000024313, -0.0000024298,0.0000024275,0.0000024241,0.0000024207,0.0000024186, -0.0000024168,0.0000024173,0.0000024217,0.0000024277,0.0000024353, -0.0000024414,0.0000024453,0.0000024477,0.0000024488,0.0000024496, -0.0000024501,0.0000024495,0.0000024486,0.0000024473,0.0000024454, -0.0000024429,0.0000024399,0.0000024360,0.0000024318,0.0000024272, -0.0000024230,0.0000024195,0.0000024165,0.0000024132,0.0000024092, -0.0000024042,0.0000023983,0.0000023923,0.0000023871,0.0000023831, -0.0000023793,0.0000023742,0.0000023669,0.0000023580,0.0000023489, -0.0000023413,0.0000023358,0.0000023315,0.0000023279,0.0000023247, -0.0000023221,0.0000023203,0.0000023193,0.0000023188,0.0000023184, -0.0000023184,0.0000023187,0.0000023194,0.0000023202,0.0000023213, -0.0000023228,0.0000023246,0.0000023266,0.0000023285,0.0000023304, -0.0000023321,0.0000023337,0.0000023354,0.0000023371,0.0000023387, -0.0000023404,0.0000023422,0.0000023441,0.0000023459,0.0000023474, -0.0000023488,0.0000023500,0.0000023514,0.0000023533,0.0000023560, -0.0000023599,0.0000023637,0.0000023665,0.0000023680,0.0000023686, -0.0000023691,0.0000023704,0.0000023725,0.0000023749,0.0000023770, -0.0000023786,0.0000023793,0.0000023792,0.0000023781,0.0000023757, -0.0000023718,0.0000023673,0.0000023639,0.0000023616,0.0000023595, -0.0000023576,0.0000023570,0.0000023571,0.0000023565,0.0000023552, -0.0000023540,0.0000023507,0.0000023439,0.0000023349,0.0000023215, -0.0000023024,0.0000022840,0.0000022703,0.0000022552,0.0000022357, -0.0000022227,0.0000022234,0.0000022289,0.0000022305,0.0000022301, -0.0000022292,0.0000022283,0.0000022282,0.0000022292,0.0000022303, -0.0000022311,0.0000022318,0.0000022323,0.0000022305,0.0000022201, -0.0000022075,0.0000022044,0.0000022083,0.0000022100,0.0000022085, -0.0000022076,0.0000022082,0.0000022093,0.0000022083,0.0000022022, -0.0000021926,0.0000021880,0.0000021893,0.0000021921,0.0000021988, -0.0000022155,0.0000022271,0.0000022234,0.0000022159,0.0000022187, -0.0000022289,0.0000022371,0.0000022432,0.0000022482,0.0000022537, -0.0000022663,0.0000022829,0.0000022909,0.0000022945,0.0000023090, -0.0000023307,0.0000023427,0.0000023409,0.0000023345,0.0000023335, -0.0000023427,0.0000023586,0.0000023732,0.0000023835,0.0000023897, -0.0000023933,0.0000023986,0.0000024082,0.0000024183,0.0000024241, -0.0000024269,0.0000024294,0.0000024316,0.0000024325,0.0000024328, -0.0000024349,0.0000024411,0.0000024501,0.0000024562,0.0000024568, -0.0000024543,0.0000024501,0.0000024437,0.0000024336,0.0000024197, -0.0000024032,0.0000023883,0.0000023799,0.0000023790,0.0000023826, -0.0000023863,0.0000023866,0.0000023822,0.0000023728,0.0000023599, -0.0000023445,0.0000023276,0.0000023116,0.0000022985,0.0000022888, -0.0000022810,0.0000022736,0.0000022654,0.0000022557,0.0000022452, -0.0000022359,0.0000022298,0.0000022275,0.0000022276,0.0000022305, -0.0000022347,0.0000022388,0.0000022426,0.0000022456,0.0000022470, -0.0000022468,0.0000022452,0.0000022430,0.0000022418,0.0000022431, -0.0000022479,0.0000022562,0.0000022670,0.0000022777,0.0000022863, -0.0000022940,0.0000023036,0.0000023165,0.0000023307,0.0000023420, -0.0000023478,0.0000023502,0.0000023529,0.0000023577,0.0000023631, -0.0000023657,0.0000023647,0.0000023624,0.0000023615,0.0000023632, -0.0000023685,0.0000023764,0.0000023858,0.0000023953,0.0000024044, -0.0000024140,0.0000024254,0.0000024402,0.0000024581,0.0000024747, -0.0000024830,0.0000024836,0.0000024831,0.0000024855,0.0000024911, -0.0000024988,0.0000025047,0.0000025048,0.0000025026,0.0000025036, -0.0000025073,0.0000025082,0.0000025048,0.0000025008,0.0000025020, -0.0000025088,0.0000025148,0.0000025157,0.0000025136,0.0000025133, -0.0000025170,0.0000025249,0.0000025344,0.0000025444,0.0000025549, -0.0000025636,0.0000025679,0.0000025677,0.0000025645,0.0000025595, -0.0000025544,0.0000025498,0.0000025457,0.0000025428,0.0000025410, -0.0000025405,0.0000025409,0.0000025425,0.0000025450,0.0000025487, -0.0000025535,0.0000025581,0.0000025611,0.0000025626,0.0000025613, -0.0000025582,0.0000025555,0.0000025534,0.0000025496,0.0000025394, -0.0000025174,0.0000024899,0.0000024686,0.0000024483,0.0000024209, -0.0000024001,0.0000023987,0.0000024115,0.0000024225,0.0000024204, -0.0000024137,0.0000024145,0.0000024295,0.0000024538,0.0000024692, -0.0000024752,0.0000024947,0.0000025315,0.0000025607,0.0000025718, -0.0000025752,0.0000025771,0.0000025774,0.0000025769,0.0000025755, -0.0000025731,0.0000025697,0.0000025662,0.0000025633,0.0000025612, -0.0000025604,0.0000025606,0.0000025612,0.0000025626,0.0000025657, -0.0000025698,0.0000025733,0.0000025749,0.0000025752,0.0000025757, -0.0000025778,0.0000025825,0.0000025889,0.0000025953,0.0000025998, -0.0000026007,0.0000025987,0.0000025935,0.0000025883,0.0000025849, -0.0000025823,0.0000025801,0.0000025797,0.0000025843,0.0000025914, -0.0000025961,0.0000025966,0.0000025933,0.0000025862,0.0000025806, -0.0000025778,0.0000025703,0.0000025600,0.0000025537,0.0000025388, -0.0000025070,0.0000024780,0.0000024638,0.0000024575,0.0000024412, -0.0000024069,0.0000023783,0.0000023703,0.0000023591,0.0000023196, -0.0000022736,0.0000022489,0.0000022402,0.0000022334,0.0000022240, -0.0000022129,0.0000022032,0.0000021968,0.0000021928,0.0000021920, -0.0000021924,0.0000021932,0.0000021925,0.0000021887,0.0000021812, -0.0000021744,0.0000021676,0.0000021606,0.0000021562,0.0000021524, -0.0000021482,0.0000021431,0.0000021380,0.0000021335,0.0000021301, -0.0000021269,0.0000021245,0.0000021234,0.0000021249,0.0000021286, -0.0000021324,0.0000021356,0.0000021396,0.0000021454,0.0000021528, -0.0000021604,0.0000021652,0.0000021674,0.0000021691,0.0000021721, -0.0000021767,0.0000021830,0.0000021903,0.0000021975,0.0000022036, -0.0000022086,0.0000022131,0.0000022175,0.0000022217,0.0000022254, -0.0000022283,0.0000022308,0.0000022321,0.0000022326,0.0000022324, -0.0000022311,0.0000022291,0.0000022268,0.0000022244,0.0000022218, -0.0000022190,0.0000022165,0.0000022138,0.0000022107,0.0000022084, -0.0000022075,0.0000022077,0.0000022088,0.0000022111,0.0000022155, -0.0000022207,0.0000022251,0.0000022266,0.0000022252,0.0000022226, -0.0000022210,0.0000022204,0.0000022200,0.0000022187,0.0000022171, -0.0000022161,0.0000022151,0.0000022156,0.0000022161,0.0000022165, -0.0000022149,0.0000022121,0.0000022089,0.0000022060,0.0000022032, -0.0000021997,0.0000021951,0.0000021903,0.0000021859,0.0000021817, -0.0000021777,0.0000021755,0.0000021756,0.0000021772,0.0000021807, -0.0000021864,0.0000021935,0.0000022010,0.0000022074,0.0000022122, -0.0000022163,0.0000022215,0.0000022284,0.0000022351,0.0000022405, -0.0000022458,0.0000022507,0.0000022550,0.0000022595,0.0000022630, -0.0000022641,0.0000022629,0.0000022599,0.0000022563,0.0000022545, -0.0000022543,0.0000022519,0.0000022460,0.0000022420,0.0000022430, -0.0000022493,0.0000022561,0.0000022591,0.0000022588,0.0000022580, -0.0000022586,0.0000022601,0.0000022608,0.0000022604,0.0000022586, -0.0000022566,0.0000022551,0.0000022543,0.0000022534,0.0000022517, -0.0000022497,0.0000022487,0.0000022483,0.0000022477,0.0000022463, -0.0000022444,0.0000022414,0.0000022377,0.0000022336,0.0000022294, -0.0000022258,0.0000022237,0.0000022240,0.0000022271,0.0000022327, -0.0000022380,0.0000022420,0.0000022445,0.0000022449,0.0000022436, -0.0000022393,0.0000022327,0.0000022266,0.0000022216,0.0000022153, -0.0000022067,0.0000021981,0.0000021933,0.0000021930,0.0000021958, -0.0000022024,0.0000022120,0.0000022187,0.0000022201,0.0000022200, -0.0000022193,0.0000022179,0.0000022158,0.0000022137,0.0000022119, -0.0000022097,0.0000022066,0.0000022025,0.0000021982,0.0000021952, -0.0000021950,0.0000021978,0.0000022027,0.0000022081,0.0000022131, -0.0000022173,0.0000022199,0.0000022206,0.0000022197,0.0000022178, -0.0000022153,0.0000022122,0.0000022090,0.0000022045,0.0000021994, -0.0000021974,0.0000021982,0.0000021989,0.0000021954,0.0000021889, -0.0000021830,0.0000021785,0.0000021736,0.0000021662,0.0000021589, -0.0000021542,0.0000021510,0.0000021487,0.0000021444,0.0000021346, -0.0000021250,0.0000021220,0.0000021215,0.0000021195,0.0000021163, -0.0000021128,0.0000021100,0.0000021097,0.0000021104,0.0000021108, -0.0000021226,0.0000021578,0.0000021888,0.0000022014,0.0000022104, -0.0000022195,0.0000022231,0.0000022232,0.0000022239,0.0000022254, -0.0000022278,0.0000022312,0.0000022341,0.0000022349,0.0000022333, -0.0000022285,0.0000022250,0.0000022263,0.0000022301,0.0000022348, -0.0000022465,0.0000022676,0.0000022866,0.0000022980,0.0000023090, -0.0000023214,0.0000023281,0.0000023283,0.0000023277,0.0000023304, -0.0000023364,0.0000023407,0.0000023412,0.0000023393,0.0000023364, -0.0000023334,0.0000023300,0.0000023259,0.0000023211,0.0000023161, -0.0000023113,0.0000023068,0.0000023023,0.0000022975,0.0000022929, -0.0000022895,0.0000022874,0.0000022858,0.0000022842,0.0000022821, -0.0000022788,0.0000022747,0.0000022716,0.0000022701,0.0000022659, -0.0000022523,0.0000022307,0.0000022107,0.0000021970,0.0000021883, -0.0000021792,0.0000021809,0.0000021887,0.0000021962,0.0000021998, -0.0000022035,0.0000022062,0.0000022023,0.0000021902,0.0000021819, -0.0000021849,0.0000021994,0.0000022142,0.0000022225,0.0000022289, -0.0000022363,0.0000022463,0.0000022626,0.0000022821,0.0000022943, -0.0000022961,0.0000022948,0.0000022974,0.0000023040,0.0000023085, -0.0000023081,0.0000023082,0.0000023119,0.0000023178,0.0000023231, -0.0000023274,0.0000023328,0.0000023435,0.0000023506,0.0000023410, -0.0000023183,0.0000023067,0.0000023082,0.0000023132,0.0000023176, -0.0000023198,0.0000023207,0.0000023212,0.0000023204,0.0000023195, -0.0000023202,0.0000023209,0.0000023197,0.0000023170,0.0000023142, -0.0000023122,0.0000023101,0.0000023060,0.0000022996,0.0000022933, -0.0000022884,0.0000022855,0.0000022847,0.0000022844,0.0000022846, -0.0000022852,0.0000022855,0.0000022842,0.0000022799,0.0000022749, -0.0000022707,0.0000022672,0.0000022629,0.0000022585,0.0000022571, -0.0000022574,0.0000022574,0.0000022580,0.0000022594,0.0000022604, -0.0000022614,0.0000022636,0.0000022656,0.0000022671,0.0000022673, -0.0000022645,0.0000022614,0.0000022597,0.0000022578,0.0000022581, -0.0000022588,0.0000022604,0.0000022663,0.0000022757,0.0000022854, -0.0000022946,0.0000023024,0.0000023099,0.0000023150,0.0000023198, -0.0000023291,0.0000023429,0.0000023562,0.0000023638,0.0000023658, -0.0000023658,0.0000023649,0.0000023637,0.0000023630,0.0000023633, -0.0000023647,0.0000023656,0.0000023650,0.0000023636,0.0000023597, -0.0000023521,0.0000023463,0.0000023453,0.0000023454,0.0000023426, -0.0000023394,0.0000023386,0.0000023393,0.0000023408,0.0000023419, -0.0000023426,0.0000023440,0.0000023475,0.0000023522,0.0000023565, -0.0000023603,0.0000023641,0.0000023674,0.0000023699,0.0000023724, -0.0000023750,0.0000023780,0.0000023811,0.0000023838,0.0000023858, -0.0000023887,0.0000023930,0.0000023963,0.0000023969,0.0000023955, -0.0000023932,0.0000023897,0.0000023854,0.0000023814,0.0000023784, -0.0000023773,0.0000023775,0.0000023774,0.0000023758,0.0000023722, -0.0000023663,0.0000023579,0.0000023504,0.0000023496,0.0000023552, -0.0000023637,0.0000023700,0.0000023747,0.0000023825,0.0000023968, -0.0000024188,0.0000024459,0.0000024715,0.0000024906,0.0000025013, -0.0000025044,0.0000025012,0.0000024978,0.0000024985,0.0000025042, -0.0000025104,0.0000025144,0.0000025155,0.0000025131,0.0000025075, -0.0000024998,0.0000024917,0.0000024856,0.0000024820,0.0000024783, -0.0000024722,0.0000024643,0.0000024572,0.0000024517,0.0000024472, -0.0000024423,0.0000024368,0.0000024317,0.0000024279,0.0000024250, -0.0000024229,0.0000024212,0.0000024185,0.0000024134,0.0000024050, -0.0000023944,0.0000023834,0.0000023737,0.0000023666,0.0000023625, -0.0000023589,0.0000023518,0.0000023391,0.0000023249,0.0000023154, -0.0000023137,0.0000023148,0.0000023200,0.0000023297,0.0000023407, -0.0000023495,0.0000023565,0.0000023600,0.0000023635,0.0000023655, -0.0000023647,0.0000023614,0.0000023580,0.0000023551,0.0000023548, -0.0000023566,0.0000023589,0.0000023594,0.0000023588,0.0000023573, -0.0000023549,0.0000023523,0.0000023508,0.0000023487,0.0000023478, -0.0000023487,0.0000023516,0.0000023575,0.0000023666,0.0000023779, -0.0000023898,0.0000024009,0.0000024101,0.0000024169,0.0000024214, -0.0000024243,0.0000024260,0.0000024270,0.0000024272,0.0000024263, -0.0000024238,0.0000024206,0.0000024167,0.0000024138,0.0000024122, -0.0000024127,0.0000024146,0.0000024177,0.0000024214,0.0000024260, -0.0000024326,0.0000024414,0.0000024508,0.0000024592,0.0000024655, -0.0000024702,0.0000024735,0.0000024754,0.0000024767,0.0000024770, -0.0000024763,0.0000024737,0.0000024715,0.0000024682,0.0000024634, -0.0000024579,0.0000024523,0.0000024476,0.0000024452,0.0000024450, -0.0000024473,0.0000024515,0.0000024550,0.0000024583,0.0000024618, -0.0000024647,0.0000024663,0.0000024669,0.0000024667,0.0000024655, -0.0000024639,0.0000024625,0.0000024620,0.0000024633,0.0000024672, -0.0000024729,0.0000024785,0.0000024809,0.0000024809,0.0000024779, -0.0000024723,0.0000024647,0.0000024553,0.0000024442,0.0000024328, -0.0000024226,0.0000024134,0.0000024048,0.0000024003,0.0000023999, -0.0000024032,0.0000024078,0.0000024115,0.0000024145,0.0000024127, -0.0000024079,0.0000024008,0.0000023954,0.0000023910,0.0000023856, -0.0000023781,0.0000023685,0.0000023596,0.0000023542,0.0000023530, -0.0000023547,0.0000023576,0.0000023614,0.0000023668,0.0000023736, -0.0000023789,0.0000023807,0.0000023804,0.0000023793,0.0000023781, -0.0000023777,0.0000023815,0.0000023916,0.0000024034,0.0000024059, -0.0000023991,0.0000023934,0.0000023939,0.0000023999,0.0000024119, -0.0000024206,0.0000024200,0.0000024109,0.0000023988,0.0000023852, -0.0000023747,0.0000023699,0.0000023675,0.0000023661,0.0000023654, -0.0000023651,0.0000023661,0.0000023688,0.0000023713,0.0000023712, -0.0000023685,0.0000023638,0.0000023572,0.0000023500,0.0000023432, -0.0000023391,0.0000023361,0.0000023323,0.0000023287,0.0000023252, -0.0000023200,0.0000023124,0.0000023051,0.0000023021,0.0000023060, -0.0000023150,0.0000023186,0.0000023161,0.0000023112,0.0000023070, -0.0000023066,0.0000023094,0.0000023129,0.0000023147,0.0000023147, -0.0000023148,0.0000023140,0.0000023119,0.0000023084,0.0000023040, -0.0000023066,0.0000023122,0.0000023175,0.0000023205,0.0000023195, -0.0000023220,0.0000023294,0.0000023326,0.0000023334,0.0000023315, -0.0000023192,0.0000023102,0.0000023124,0.0000023172,0.0000023236, -0.0000023302,0.0000023363,0.0000023397,0.0000023400,0.0000023392, -0.0000023402,0.0000023428,0.0000023478,0.0000023545,0.0000023606, -0.0000023673,0.0000023753,0.0000023798,0.0000023800,0.0000023783, -0.0000023750,0.0000023704,0.0000023674,0.0000023639,0.0000023598, -0.0000023564,0.0000023546,0.0000023544,0.0000023568,0.0000023582, -0.0000023568,0.0000023533,0.0000023484,0.0000023418,0.0000023359, -0.0000023342,0.0000023354,0.0000023346,0.0000023256,0.0000023101, -0.0000022968,0.0000022924,0.0000022922,0.0000022906,0.0000022882, -0.0000022864,0.0000022843,0.0000022800,0.0000022731,0.0000022625, -0.0000022504,0.0000022415,0.0000022371,0.0000022380,0.0000022409, -0.0000022461,0.0000022524,0.0000022588,0.0000022633,0.0000022661, -0.0000022679,0.0000022686,0.0000022668,0.0000022644,0.0000022636, -0.0000022639,0.0000022633,0.0000022582,0.0000022521,0.0000022511, -0.0000022530,0.0000022527,0.0000022484,0.0000022453,0.0000022450, -0.0000022402,0.0000022284,0.0000022199,0.0000022195,0.0000022196, -0.0000022202,0.0000022290,0.0000022460,0.0000022589,0.0000022652, -0.0000022685,0.0000022705,0.0000022706,0.0000022643,0.0000022549, -0.0000022515,0.0000022546,0.0000022620,0.0000022665,0.0000022657, -0.0000022656,0.0000022769,0.0000022979,0.0000023126,0.0000023145, -0.0000023106,0.0000023027,0.0000022932,0.0000022826,0.0000022686, -0.0000022514,0.0000022377,0.0000022326,0.0000022324,0.0000022345, -0.0000022379,0.0000022420,0.0000022457,0.0000022486,0.0000022493, -0.0000022450,0.0000022354,0.0000022260,0.0000022238,0.0000022274, -0.0000022352,0.0000022420,0.0000022468,0.0000022508,0.0000022538, -0.0000022540,0.0000022515,0.0000022480,0.0000022491,0.0000022565, -0.0000022693,0.0000022846,0.0000022984,0.0000023090,0.0000023166, -0.0000023201,0.0000023215,0.0000023209,0.0000023195,0.0000023172, -0.0000023137,0.0000023098,0.0000023054,0.0000022994,0.0000022913, -0.0000022824,0.0000022747,0.0000022696,0.0000022687,0.0000022705, -0.0000022749,0.0000022805,0.0000022857,0.0000022916,0.0000023014, -0.0000023164,0.0000023231,0.0000023175,0.0000023198,0.0000023406, -0.0000023602,0.0000023696,0.0000023767,0.0000023845,0.0000023906, -0.0000023980,0.0000024075,0.0000024155,0.0000024195,0.0000024172, -0.0000024034,0.0000023891,0.0000023856,0.0000023885,0.0000023953, -0.0000023999,0.0000024030,0.0000024078,0.0000024163,0.0000024276, -0.0000024401,0.0000024513,0.0000024579,0.0000024591,0.0000024582, -0.0000024554,0.0000024488,0.0000024401,0.0000024343,0.0000024303, -0.0000024244,0.0000024131,0.0000023987,0.0000023883,0.0000023808, -0.0000023734,0.0000023671,0.0000023613,0.0000023582,0.0000023600, -0.0000023632,0.0000023698,0.0000023772,0.0000023897,0.0000023983, -0.0000024063,0.0000024274,0.0000024412,0.0000024409,0.0000024352, -0.0000024244,0.0000024276,0.0000024827,0.0000025510,0.0000025804, -0.0000025733,0.0000025390,0.0000024880,0.0000024501,0.0000024357, -0.0000024334,0.0000024364,0.0000024428,0.0000024462,0.0000024413, -0.0000024238,0.0000024039,0.0000023928,0.0000023911,0.0000023926, -0.0000023976,0.0000024047,0.0000024125,0.0000024208,0.0000024287, -0.0000024367,0.0000024436,0.0000024470,0.0000024467,0.0000024441, -0.0000024397,0.0000024349,0.0000024313,0.0000024291,0.0000024273, -0.0000024249,0.0000024224,0.0000024203,0.0000024184,0.0000024170, -0.0000024174,0.0000024201,0.0000024255,0.0000024334,0.0000024406, -0.0000024463,0.0000024501,0.0000024520,0.0000024526,0.0000024515, -0.0000024493,0.0000024469,0.0000024444,0.0000024417,0.0000024390, -0.0000024360,0.0000024329,0.0000024298,0.0000024273,0.0000024251, -0.0000024228,0.0000024202,0.0000024171,0.0000024133,0.0000024087, -0.0000024038,0.0000023994,0.0000023963,0.0000023942,0.0000023922, -0.0000023891,0.0000023842,0.0000023778,0.0000023710,0.0000023647, -0.0000023593,0.0000023544,0.0000023500,0.0000023458,0.0000023420, -0.0000023389,0.0000023366,0.0000023347,0.0000023336,0.0000023332, -0.0000023330,0.0000023328,0.0000023328,0.0000023335,0.0000023347, -0.0000023361,0.0000023377,0.0000023393,0.0000023409,0.0000023424, -0.0000023439,0.0000023456,0.0000023471,0.0000023483,0.0000023493, -0.0000023504,0.0000023518,0.0000023535,0.0000023554,0.0000023576, -0.0000023601,0.0000023628,0.0000023657,0.0000023687,0.0000023711, -0.0000023725,0.0000023732,0.0000023738,0.0000023748,0.0000023768, -0.0000023798,0.0000023833,0.0000023867,0.0000023893,0.0000023912, -0.0000023922,0.0000023922,0.0000023906,0.0000023870,0.0000023821, -0.0000023771,0.0000023731,0.0000023694,0.0000023645,0.0000023597, -0.0000023568,0.0000023551,0.0000023535,0.0000023515,0.0000023496, -0.0000023453,0.0000023380,0.0000023283,0.0000023133,0.0000022941, -0.0000022764,0.0000022603,0.0000022424,0.0000022258,0.0000022205, -0.0000022244,0.0000022293,0.0000022306,0.0000022303,0.0000022294, -0.0000022283,0.0000022278,0.0000022279,0.0000022289,0.0000022306, -0.0000022322,0.0000022308,0.0000022212,0.0000022086,0.0000022048, -0.0000022084,0.0000022098,0.0000022069,0.0000022051,0.0000022064, -0.0000022085,0.0000022089,0.0000022077,0.0000022019,0.0000021921, -0.0000021872,0.0000021876,0.0000021897,0.0000021959,0.0000022130, -0.0000022249,0.0000022211,0.0000022140,0.0000022171,0.0000022271, -0.0000022348,0.0000022418,0.0000022490,0.0000022545,0.0000022648, -0.0000022794,0.0000022867,0.0000022895,0.0000023034,0.0000023270, -0.0000023416,0.0000023406,0.0000023351,0.0000023379,0.0000023509, -0.0000023665,0.0000023794,0.0000023899,0.0000023974,0.0000024038, -0.0000024119,0.0000024202,0.0000024253,0.0000024276,0.0000024292, -0.0000024299,0.0000024291,0.0000024281,0.0000024287,0.0000024329, -0.0000024409,0.0000024485,0.0000024509,0.0000024496,0.0000024460, -0.0000024413,0.0000024344,0.0000024241,0.0000024101,0.0000023943, -0.0000023808,0.0000023723,0.0000023686,0.0000023686,0.0000023692, -0.0000023671,0.0000023601,0.0000023489,0.0000023353,0.0000023199, -0.0000023037,0.0000022891,0.0000022779,0.0000022697,0.0000022628, -0.0000022553,0.0000022458,0.0000022343,0.0000022228,0.0000022136, -0.0000022088,0.0000022081,0.0000022101,0.0000022141,0.0000022186, -0.0000022234,0.0000022284,0.0000022325,0.0000022350,0.0000022360, -0.0000022352,0.0000022328,0.0000022296,0.0000022271,0.0000022266, -0.0000022297,0.0000022377,0.0000022499,0.0000022629,0.0000022744, -0.0000022850,0.0000022978,0.0000023133,0.0000023280,0.0000023374, -0.0000023411,0.0000023427,0.0000023460,0.0000023517,0.0000023566, -0.0000023580,0.0000023569,0.0000023553,0.0000023550,0.0000023576, -0.0000023634,0.0000023722,0.0000023827,0.0000023929,0.0000024025, -0.0000024131,0.0000024265,0.0000024432,0.0000024619,0.0000024762, -0.0000024807,0.0000024799,0.0000024807,0.0000024848,0.0000024915, -0.0000024989,0.0000025018,0.0000024998,0.0000024990,0.0000025014, -0.0000025042,0.0000025033,0.0000024993,0.0000024987,0.0000025042, -0.0000025117,0.0000025147,0.0000025139,0.0000025137,0.0000025177, -0.0000025260,0.0000025355,0.0000025441,0.0000025520,0.0000025588, -0.0000025627,0.0000025628,0.0000025592,0.0000025532,0.0000025467, -0.0000025413,0.0000025378,0.0000025363,0.0000025365,0.0000025381, -0.0000025402,0.0000025428,0.0000025462,0.0000025506,0.0000025553, -0.0000025588,0.0000025602,0.0000025596,0.0000025570,0.0000025530, -0.0000025483,0.0000025425,0.0000025340,0.0000025179,0.0000024933, -0.0000024703,0.0000024526,0.0000024308,0.0000024052,0.0000023902, -0.0000023933,0.0000024081,0.0000024167,0.0000024140,0.0000024089, -0.0000024122,0.0000024303,0.0000024557,0.0000024709,0.0000024769, -0.0000024948,0.0000025278,0.0000025553,0.0000025677,0.0000025722, -0.0000025744,0.0000025748,0.0000025741,0.0000025724,0.0000025696, -0.0000025656,0.0000025610,0.0000025570,0.0000025551,0.0000025559, -0.0000025585,0.0000025609,0.0000025623,0.0000025643,0.0000025676, -0.0000025714,0.0000025739,0.0000025748,0.0000025746,0.0000025749, -0.0000025770,0.0000025816,0.0000025871,0.0000025912,0.0000025924, -0.0000025912,0.0000025877,0.0000025843,0.0000025827,0.0000025820, -0.0000025808,0.0000025811,0.0000025854,0.0000025919,0.0000025959, -0.0000025961,0.0000025925,0.0000025855,0.0000025799,0.0000025771, -0.0000025697,0.0000025576,0.0000025493,0.0000025357,0.0000025053, -0.0000024746,0.0000024593,0.0000024536,0.0000024435,0.0000024152, -0.0000023828,0.0000023704,0.0000023656,0.0000023359,0.0000022885, -0.0000022575,0.0000022473,0.0000022416,0.0000022325,0.0000022203, -0.0000022088,0.0000021995,0.0000021929,0.0000021889,0.0000021889, -0.0000021919,0.0000021934,0.0000021909,0.0000021830,0.0000021742, -0.0000021639,0.0000021562,0.0000021501,0.0000021453,0.0000021427, -0.0000021401,0.0000021368,0.0000021331,0.0000021301,0.0000021274, -0.0000021254,0.0000021229,0.0000021204,0.0000021207,0.0000021229, -0.0000021253,0.0000021273,0.0000021302,0.0000021343,0.0000021402, -0.0000021463,0.0000021517,0.0000021571,0.0000021621,0.0000021665, -0.0000021715,0.0000021777,0.0000021841,0.0000021897,0.0000021938, -0.0000021971,0.0000022009,0.0000022058,0.0000022114,0.0000022172, -0.0000022225,0.0000022264,0.0000022292,0.0000022311,0.0000022317, -0.0000022306,0.0000022289,0.0000022265,0.0000022234,0.0000022200, -0.0000022168,0.0000022136,0.0000022105,0.0000022080,0.0000022067, -0.0000022067,0.0000022078,0.0000022097,0.0000022129,0.0000022173, -0.0000022223,0.0000022268,0.0000022289,0.0000022286,0.0000022269, -0.0000022253,0.0000022243,0.0000022235,0.0000022230,0.0000022227, -0.0000022229,0.0000022234,0.0000022233,0.0000022220,0.0000022178, -0.0000022123,0.0000022073,0.0000022039,0.0000022015,0.0000021988, -0.0000021954,0.0000021917,0.0000021882,0.0000021841,0.0000021794, -0.0000021746,0.0000021713,0.0000021698,0.0000021704,0.0000021734, -0.0000021795,0.0000021872,0.0000021950,0.0000022014,0.0000022061, -0.0000022102,0.0000022155,0.0000022221,0.0000022284,0.0000022349, -0.0000022414,0.0000022468,0.0000022511,0.0000022559,0.0000022598, -0.0000022615,0.0000022611,0.0000022586,0.0000022555,0.0000022541, -0.0000022536,0.0000022498,0.0000022435,0.0000022395,0.0000022409, -0.0000022474,0.0000022541,0.0000022572,0.0000022573,0.0000022572, -0.0000022580,0.0000022595,0.0000022607,0.0000022607,0.0000022599, -0.0000022576,0.0000022553,0.0000022539,0.0000022531,0.0000022513, -0.0000022487,0.0000022464,0.0000022451,0.0000022440,0.0000022424, -0.0000022405,0.0000022380,0.0000022353,0.0000022326,0.0000022299, -0.0000022272,0.0000022263,0.0000022286,0.0000022346,0.0000022407, -0.0000022446,0.0000022466,0.0000022473,0.0000022468,0.0000022438, -0.0000022376,0.0000022307,0.0000022255,0.0000022198,0.0000022112, -0.0000022013,0.0000021932,0.0000021897,0.0000021904,0.0000021956, -0.0000022051,0.0000022138,0.0000022167,0.0000022167,0.0000022172, -0.0000022172,0.0000022156,0.0000022127,0.0000022097,0.0000022073, -0.0000022049,0.0000022015,0.0000021970,0.0000021925,0.0000021897, -0.0000021899,0.0000021936,0.0000021991,0.0000022047,0.0000022100, -0.0000022153,0.0000022195,0.0000022212,0.0000022210,0.0000022195, -0.0000022166,0.0000022126,0.0000022090,0.0000022050,0.0000022001, -0.0000021975,0.0000021985,0.0000022009,0.0000022008,0.0000021967, -0.0000021911,0.0000021868,0.0000021833,0.0000021760,0.0000021645, -0.0000021536,0.0000021468,0.0000021437,0.0000021421,0.0000021371, -0.0000021293,0.0000021237,0.0000021212,0.0000021189,0.0000021152, -0.0000021113,0.0000021095,0.0000021101,0.0000021111,0.0000021116, -0.0000021170,0.0000021473,0.0000021825,0.0000021991,0.0000022080, -0.0000022183,0.0000022240,0.0000022251,0.0000022264,0.0000022288, -0.0000022314,0.0000022344,0.0000022378,0.0000022399,0.0000022403, -0.0000022391,0.0000022361,0.0000022334,0.0000022329,0.0000022349, -0.0000022423,0.0000022588,0.0000022785,0.0000022911,0.0000022980, -0.0000023077,0.0000023202,0.0000023275,0.0000023276,0.0000023252, -0.0000023254,0.0000023306,0.0000023369,0.0000023404,0.0000023400, -0.0000023375,0.0000023339,0.0000023297,0.0000023253,0.0000023209, -0.0000023168,0.0000023131,0.0000023097,0.0000023061,0.0000023026, -0.0000022995,0.0000022968,0.0000022943,0.0000022921,0.0000022898, -0.0000022866,0.0000022816,0.0000022758,0.0000022718,0.0000022693, -0.0000022612,0.0000022422,0.0000022175,0.0000021972,0.0000021844, -0.0000021735,0.0000021722,0.0000021785,0.0000021879,0.0000021931, -0.0000021970,0.0000022032,0.0000022058,0.0000021980,0.0000021838, -0.0000021794,0.0000021899,0.0000022065,0.0000022175,0.0000022243, -0.0000022322,0.0000022444,0.0000022631,0.0000022824,0.0000022921, -0.0000022926,0.0000022926,0.0000022969,0.0000023036,0.0000023069, -0.0000023066,0.0000023084,0.0000023135,0.0000023192,0.0000023241, -0.0000023285,0.0000023356,0.0000023474,0.0000023515,0.0000023372, -0.0000023144,0.0000023063,0.0000023080,0.0000023113,0.0000023126, -0.0000023120,0.0000023117,0.0000023118,0.0000023119,0.0000023125, -0.0000023141,0.0000023154,0.0000023153,0.0000023137,0.0000023118, -0.0000023095,0.0000023056,0.0000023000,0.0000022942,0.0000022911, -0.0000022894,0.0000022892,0.0000022901,0.0000022913,0.0000022916, -0.0000022918,0.0000022916,0.0000022891,0.0000022837,0.0000022779, -0.0000022733,0.0000022695,0.0000022653,0.0000022612,0.0000022599, -0.0000022606,0.0000022613,0.0000022622,0.0000022636,0.0000022642, -0.0000022643,0.0000022658,0.0000022684,0.0000022702,0.0000022708, -0.0000022686,0.0000022643,0.0000022608,0.0000022571,0.0000022555, -0.0000022558,0.0000022569,0.0000022607,0.0000022674,0.0000022754, -0.0000022851,0.0000022931,0.0000023016,0.0000023109,0.0000023170, -0.0000023210,0.0000023293,0.0000023435,0.0000023571,0.0000023643, -0.0000023667,0.0000023676,0.0000023670,0.0000023656,0.0000023640, -0.0000023637,0.0000023644,0.0000023642,0.0000023638,0.0000023638, -0.0000023612,0.0000023541,0.0000023483,0.0000023477,0.0000023479, -0.0000023454,0.0000023422,0.0000023404,0.0000023405,0.0000023415, -0.0000023424,0.0000023437,0.0000023472,0.0000023518,0.0000023557, -0.0000023586,0.0000023617,0.0000023649,0.0000023677,0.0000023702, -0.0000023727,0.0000023756,0.0000023789,0.0000023823,0.0000023857, -0.0000023883,0.0000023909,0.0000023941,0.0000023967,0.0000023971, -0.0000023955,0.0000023931,0.0000023901,0.0000023857,0.0000023808, -0.0000023771,0.0000023761,0.0000023760,0.0000023753,0.0000023731, -0.0000023693,0.0000023637,0.0000023550,0.0000023452,0.0000023396, -0.0000023420,0.0000023510,0.0000023611,0.0000023696,0.0000023784, -0.0000023894,0.0000024056,0.0000024286,0.0000024542,0.0000024760, -0.0000024902,0.0000024970,0.0000024975,0.0000024962,0.0000024966, -0.0000025006,0.0000025064,0.0000025125,0.0000025160,0.0000025161, -0.0000025121,0.0000025053,0.0000024974,0.0000024906,0.0000024863, -0.0000024829,0.0000024777,0.0000024703,0.0000024634,0.0000024590, -0.0000024575,0.0000024560,0.0000024534,0.0000024495,0.0000024447, -0.0000024392,0.0000024340,0.0000024301,0.0000024269,0.0000024226, -0.0000024155,0.0000024057,0.0000023948,0.0000023849,0.0000023773, -0.0000023715,0.0000023662,0.0000023608,0.0000023524,0.0000023398, -0.0000023259,0.0000023163,0.0000023150,0.0000023161,0.0000023216, -0.0000023310,0.0000023420,0.0000023519,0.0000023588,0.0000023652, -0.0000023695,0.0000023734,0.0000023745,0.0000023723,0.0000023673, -0.0000023621,0.0000023582,0.0000023566,0.0000023560,0.0000023565, -0.0000023572,0.0000023571,0.0000023556,0.0000023532,0.0000023502, -0.0000023475,0.0000023466,0.0000023459,0.0000023480,0.0000023540, -0.0000023633,0.0000023748,0.0000023870,0.0000023982,0.0000024076, -0.0000024149,0.0000024198,0.0000024231,0.0000024251,0.0000024259, -0.0000024256,0.0000024235,0.0000024204,0.0000024163,0.0000024118, -0.0000024083,0.0000024060,0.0000024059,0.0000024074,0.0000024103, -0.0000024140,0.0000024184,0.0000024243,0.0000024319,0.0000024406, -0.0000024489,0.0000024559,0.0000024612,0.0000024648,0.0000024675, -0.0000024690,0.0000024695,0.0000024693,0.0000024687,0.0000024675, -0.0000024643,0.0000024606,0.0000024556,0.0000024504,0.0000024462, -0.0000024448,0.0000024453,0.0000024474,0.0000024500,0.0000024537, -0.0000024582,0.0000024620,0.0000024643,0.0000024651,0.0000024651, -0.0000024639,0.0000024616,0.0000024587,0.0000024558,0.0000024545, -0.0000024561,0.0000024613,0.0000024683,0.0000024744,0.0000024784, -0.0000024792,0.0000024788,0.0000024752,0.0000024685,0.0000024588, -0.0000024478,0.0000024375,0.0000024282,0.0000024190,0.0000024109, -0.0000024048,0.0000024022,0.0000024017,0.0000024047,0.0000024101, -0.0000024152,0.0000024180,0.0000024162,0.0000024109,0.0000024029, -0.0000023934,0.0000023836,0.0000023740,0.0000023656,0.0000023592, -0.0000023550,0.0000023535,0.0000023533,0.0000023539,0.0000023565, -0.0000023598,0.0000023636,0.0000023664,0.0000023678,0.0000023691, -0.0000023714,0.0000023756,0.0000023857,0.0000023973,0.0000024025, -0.0000023991,0.0000023936,0.0000023936,0.0000023986,0.0000024084, -0.0000024216,0.0000024265,0.0000024205,0.0000024112,0.0000024012, -0.0000023882,0.0000023770,0.0000023718,0.0000023691,0.0000023671, -0.0000023662,0.0000023658,0.0000023656,0.0000023658,0.0000023668, -0.0000023672,0.0000023663,0.0000023633,0.0000023584,0.0000023524, -0.0000023460,0.0000023418,0.0000023391,0.0000023368,0.0000023335, -0.0000023302,0.0000023235,0.0000023144,0.0000023081,0.0000023083, -0.0000023153,0.0000023224,0.0000023232,0.0000023198,0.0000023152, -0.0000023119,0.0000023130,0.0000023163,0.0000023178,0.0000023157, -0.0000023111,0.0000023069,0.0000023057,0.0000023067,0.0000023098, -0.0000023104,0.0000023082,0.0000023103,0.0000023152,0.0000023182, -0.0000023221,0.0000023223,0.0000023241,0.0000023312,0.0000023350, -0.0000023335,0.0000023325,0.0000023274,0.0000023147,0.0000023116, -0.0000023168,0.0000023224,0.0000023268,0.0000023297,0.0000023298, -0.0000023272,0.0000023225,0.0000023209,0.0000023235,0.0000023316, -0.0000023441,0.0000023570,0.0000023657,0.0000023703,0.0000023721, -0.0000023735,0.0000023763,0.0000023765,0.0000023741,0.0000023687, -0.0000023626,0.0000023562,0.0000023507,0.0000023470,0.0000023448, -0.0000023473,0.0000023488,0.0000023461,0.0000023400,0.0000023348, -0.0000023323,0.0000023325,0.0000023324,0.0000023271,0.0000023131, -0.0000022999,0.0000022946,0.0000022936,0.0000022935,0.0000022908, -0.0000022881,0.0000022871,0.0000022848,0.0000022778,0.0000022653, -0.0000022527,0.0000022450,0.0000022434,0.0000022470,0.0000022546, -0.0000022618,0.0000022659,0.0000022682,0.0000022707,0.0000022731, -0.0000022749,0.0000022753,0.0000022741,0.0000022709,0.0000022664, -0.0000022627,0.0000022593,0.0000022543,0.0000022482,0.0000022457, -0.0000022493,0.0000022534,0.0000022534,0.0000022505,0.0000022486, -0.0000022482,0.0000022430,0.0000022317,0.0000022226,0.0000022208, -0.0000022202,0.0000022209,0.0000022321,0.0000022504,0.0000022610, -0.0000022633,0.0000022658,0.0000022683,0.0000022677,0.0000022604, -0.0000022523,0.0000022514,0.0000022574,0.0000022653,0.0000022682, -0.0000022675,0.0000022717,0.0000022866,0.0000023056,0.0000023147, -0.0000023140,0.0000023075,0.0000022980,0.0000022873,0.0000022750, -0.0000022591,0.0000022422,0.0000022313,0.0000022289,0.0000022303, -0.0000022325,0.0000022355,0.0000022390,0.0000022426,0.0000022452, -0.0000022452,0.0000022395,0.0000022302,0.0000022233,0.0000022231, -0.0000022293,0.0000022375,0.0000022434,0.0000022481,0.0000022525, -0.0000022556,0.0000022561,0.0000022549,0.0000022541,0.0000022578, -0.0000022672,0.0000022793,0.0000022913,0.0000023017,0.0000023091, -0.0000023149,0.0000023189,0.0000023197,0.0000023193,0.0000023185, -0.0000023175,0.0000023155,0.0000023114,0.0000023061,0.0000023003, -0.0000022934,0.0000022852,0.0000022772,0.0000022703,0.0000022671, -0.0000022673,0.0000022693,0.0000022723,0.0000022769,0.0000022842, -0.0000022941,0.0000023094,0.0000023224,0.0000023212,0.0000023161, -0.0000023252,0.0000023455,0.0000023615,0.0000023693,0.0000023760, -0.0000023830,0.0000023900,0.0000023986,0.0000024080,0.0000024149, -0.0000024171,0.0000024140,0.0000024004,0.0000023883,0.0000023858, -0.0000023882,0.0000023931,0.0000023971,0.0000024017,0.0000024092, -0.0000024209,0.0000024334,0.0000024441,0.0000024526,0.0000024556, -0.0000024547,0.0000024537,0.0000024509,0.0000024439,0.0000024366, -0.0000024321,0.0000024278,0.0000024209,0.0000024086,0.0000023953, -0.0000023862,0.0000023785,0.0000023712,0.0000023656,0.0000023603, -0.0000023579,0.0000023603,0.0000023638,0.0000023695,0.0000023772, -0.0000023879,0.0000023980,0.0000024013,0.0000024160,0.0000024327, -0.0000024346,0.0000024295,0.0000024234,0.0000024175,0.0000024291, -0.0000024860,0.0000025462,0.0000025698,0.0000025636,0.0000025340, -0.0000024877,0.0000024503,0.0000024338,0.0000024310,0.0000024335, -0.0000024415,0.0000024481,0.0000024477,0.0000024330,0.0000024115, -0.0000023952,0.0000023881,0.0000023868,0.0000023906,0.0000023970, -0.0000024046,0.0000024121,0.0000024204,0.0000024297,0.0000024383, -0.0000024442,0.0000024462,0.0000024446,0.0000024412,0.0000024365, -0.0000024325,0.0000024294,0.0000024267,0.0000024243,0.0000024231, -0.0000024227,0.0000024220,0.0000024213,0.0000024213,0.0000024234, -0.0000024271,0.0000024310,0.0000024358,0.0000024402,0.0000024442, -0.0000024475,0.0000024491,0.0000024489,0.0000024475,0.0000024454, -0.0000024424,0.0000024402,0.0000024373,0.0000024342,0.0000024316, -0.0000024292,0.0000024271,0.0000024250,0.0000024227,0.0000024199, -0.0000024169,0.0000024134,0.0000024094,0.0000024055,0.0000024027, -0.0000024011,0.0000024001,0.0000023990,0.0000023975,0.0000023949, -0.0000023915,0.0000023873,0.0000023829,0.0000023784,0.0000023742, -0.0000023702,0.0000023664,0.0000023629,0.0000023600,0.0000023574, -0.0000023553,0.0000023540,0.0000023530,0.0000023520,0.0000023509, -0.0000023503,0.0000023502,0.0000023506,0.0000023514,0.0000023522, -0.0000023529,0.0000023536,0.0000023544,0.0000023554,0.0000023564, -0.0000023574,0.0000023585,0.0000023599,0.0000023619,0.0000023644, -0.0000023670,0.0000023696,0.0000023722,0.0000023745,0.0000023764, -0.0000023781,0.0000023794,0.0000023806,0.0000023822,0.0000023842, -0.0000023865,0.0000023890,0.0000023923,0.0000023963,0.0000024007, -0.0000024046,0.0000024076,0.0000024094,0.0000024101,0.0000024091, -0.0000024054,0.0000024000,0.0000023939,0.0000023882,0.0000023831, -0.0000023773,0.0000023701,0.0000023622,0.0000023560,0.0000023527, -0.0000023500,0.0000023473,0.0000023445,0.0000023396,0.0000023319, -0.0000023207,0.0000023035,0.0000022838,0.0000022653,0.0000022474, -0.0000022303,0.0000022204,0.0000022211,0.0000022261,0.0000022292, -0.0000022304,0.0000022307,0.0000022298,0.0000022283,0.0000022275, -0.0000022282,0.0000022307,0.0000022330,0.0000022317,0.0000022224, -0.0000022101,0.0000022060,0.0000022081,0.0000022085,0.0000022041, -0.0000022016,0.0000022047,0.0000022092,0.0000022099,0.0000022086, -0.0000022071,0.0000022021,0.0000021924,0.0000021865,0.0000021864, -0.0000021870,0.0000021923,0.0000022102,0.0000022228,0.0000022186, -0.0000022111,0.0000022143,0.0000022248,0.0000022329,0.0000022409, -0.0000022490,0.0000022539,0.0000022620,0.0000022754,0.0000022828, -0.0000022849,0.0000022979,0.0000023229,0.0000023401,0.0000023412, -0.0000023390,0.0000023445,0.0000023576,0.0000023710,0.0000023831, -0.0000023944,0.0000024040,0.0000024126,0.0000024203,0.0000024250, -0.0000024271,0.0000024285,0.0000024288,0.0000024266,0.0000024236, -0.0000024229,0.0000024255,0.0000024316,0.0000024394,0.0000024448, -0.0000024453,0.0000024426,0.0000024381,0.0000024330,0.0000024262, -0.0000024160,0.0000024012,0.0000023839,0.0000023684,0.0000023572, -0.0000023507,0.0000023478,0.0000023460,0.0000023423,0.0000023348, -0.0000023240,0.0000023111,0.0000022975,0.0000022846,0.0000022739, -0.0000022652,0.0000022566,0.0000022471,0.0000022367,0.0000022253, -0.0000022140,0.0000022041,0.0000021975,0.0000021942,0.0000021938, -0.0000021955,0.0000021979,0.0000022014,0.0000022062,0.0000022113, -0.0000022155,0.0000022186,0.0000022205,0.0000022212,0.0000022208, -0.0000022195,0.0000022179,0.0000022159,0.0000022143,0.0000022159, -0.0000022228,0.0000022352,0.0000022502,0.0000022650,0.0000022795, -0.0000022950,0.0000023109,0.0000023240,0.0000023314,0.0000023340, -0.0000023360,0.0000023402,0.0000023455,0.0000023490,0.0000023499, -0.0000023489,0.0000023475,0.0000023478,0.0000023509,0.0000023575, -0.0000023676,0.0000023794,0.0000023903,0.0000024012,0.0000024138, -0.0000024288,0.0000024467,0.0000024644,0.0000024744,0.0000024761, -0.0000024762,0.0000024788,0.0000024840,0.0000024920,0.0000024981, -0.0000024980,0.0000024952,0.0000024957,0.0000024997,0.0000025010, -0.0000024984,0.0000024968,0.0000025011,0.0000025092,0.0000025136, -0.0000025137,0.0000025134,0.0000025167,0.0000025245,0.0000025333, -0.0000025404,0.0000025461,0.0000025512,0.0000025546,0.0000025547, -0.0000025513,0.0000025449,0.0000025381,0.0000025336,0.0000025319, -0.0000025323,0.0000025341,0.0000025366,0.0000025392,0.0000025423, -0.0000025464,0.0000025511,0.0000025546,0.0000025557,0.0000025552, -0.0000025535,0.0000025496,0.0000025430,0.0000025347,0.0000025251, -0.0000025114,0.0000024906,0.0000024686,0.0000024519,0.0000024343, -0.0000024115,0.0000023901,0.0000023818,0.0000023888,0.0000024048, -0.0000024116,0.0000024083,0.0000024052,0.0000024107,0.0000024301, -0.0000024557,0.0000024718,0.0000024778,0.0000024908,0.0000025166, -0.0000025418,0.0000025568,0.0000025639,0.0000025672,0.0000025680, -0.0000025674,0.0000025660,0.0000025638,0.0000025608,0.0000025569, -0.0000025533,0.0000025511,0.0000025517,0.0000025551,0.0000025593, -0.0000025623,0.0000025643,0.0000025668,0.0000025700,0.0000025731, -0.0000025748,0.0000025746,0.0000025736,0.0000025731,0.0000025749, -0.0000025787,0.0000025824,0.0000025840,0.0000025838,0.0000025823, -0.0000025814,0.0000025817,0.0000025823,0.0000025822,0.0000025829, -0.0000025865,0.0000025919,0.0000025951,0.0000025951,0.0000025919, -0.0000025854,0.0000025793,0.0000025761,0.0000025687,0.0000025556, -0.0000025456,0.0000025335,0.0000025056,0.0000024741,0.0000024571, -0.0000024504,0.0000024450,0.0000024251,0.0000023919,0.0000023720, -0.0000023691,0.0000023509,0.0000023066,0.0000022680,0.0000022528, -0.0000022484,0.0000022416,0.0000022299,0.0000022172,0.0000022068, -0.0000021975,0.0000021897,0.0000021864,0.0000021881,0.0000021918, -0.0000021919,0.0000021876,0.0000021787,0.0000021672,0.0000021581, -0.0000021508,0.0000021448,0.0000021412,0.0000021395,0.0000021371, -0.0000021336,0.0000021299,0.0000021275,0.0000021271,0.0000021258, -0.0000021225,0.0000021191,0.0000021173,0.0000021177,0.0000021185, -0.0000021187,0.0000021197,0.0000021225,0.0000021275,0.0000021334, -0.0000021402,0.0000021480,0.0000021545,0.0000021600,0.0000021657, -0.0000021714,0.0000021760,0.0000021791,0.0000021810,0.0000021828, -0.0000021863,0.0000021919,0.0000021997,0.0000022084,0.0000022159, -0.0000022217,0.0000022252,0.0000022269,0.0000022270,0.0000022264, -0.0000022245,0.0000022218,0.0000022184,0.0000022149,0.0000022115, -0.0000022085,0.0000022065,0.0000022053,0.0000022056,0.0000022074, -0.0000022100,0.0000022128,0.0000022162,0.0000022208,0.0000022259, -0.0000022303,0.0000022327,0.0000022334,0.0000022334,0.0000022332, -0.0000022328,0.0000022322,0.0000022315,0.0000022308,0.0000022301, -0.0000022291,0.0000022266,0.0000022212,0.0000022136,0.0000022064, -0.0000022019,0.0000021993,0.0000021967,0.0000021940,0.0000021913, -0.0000021889,0.0000021857,0.0000021811,0.0000021761,0.0000021715, -0.0000021679,0.0000021656,0.0000021652,0.0000021672,0.0000021717, -0.0000021782,0.0000021856,0.0000021925,0.0000021982,0.0000022033, -0.0000022089,0.0000022151,0.0000022212,0.0000022283,0.0000022358, -0.0000022419,0.0000022471,0.0000022521,0.0000022562,0.0000022588, -0.0000022592,0.0000022575,0.0000022552,0.0000022539,0.0000022525, -0.0000022481,0.0000022414,0.0000022374,0.0000022386,0.0000022449, -0.0000022516,0.0000022548,0.0000022555,0.0000022558,0.0000022567, -0.0000022580,0.0000022597,0.0000022607,0.0000022602,0.0000022583, -0.0000022554,0.0000022536,0.0000022527,0.0000022512,0.0000022482, -0.0000022450,0.0000022422,0.0000022398,0.0000022376,0.0000022359, -0.0000022342,0.0000022325,0.0000022308,0.0000022289,0.0000022277, -0.0000022293,0.0000022345,0.0000022407,0.0000022454,0.0000022475, -0.0000022481,0.0000022481,0.0000022468,0.0000022427,0.0000022359, -0.0000022299,0.0000022250,0.0000022168,0.0000022057,0.0000021957, -0.0000021885,0.0000021860,0.0000021881,0.0000021965,0.0000022072, -0.0000022129,0.0000022133,0.0000022136,0.0000022143,0.0000022131, -0.0000022093,0.0000022055,0.0000022031,0.0000022014,0.0000021996, -0.0000021965,0.0000021923,0.0000021882,0.0000021861,0.0000021865, -0.0000021897,0.0000021950,0.0000022008,0.0000022063,0.0000022121, -0.0000022174,0.0000022205,0.0000022211,0.0000022196,0.0000022166, -0.0000022120,0.0000022079,0.0000022042,0.0000021999,0.0000021970, -0.0000021978,0.0000022009,0.0000022030,0.0000022024,0.0000021987, -0.0000021948,0.0000021920,0.0000021870,0.0000021755,0.0000021593, -0.0000021460,0.0000021402,0.0000021384,0.0000021364,0.0000021326, -0.0000021276,0.0000021232,0.0000021194,0.0000021152,0.0000021112, -0.0000021098,0.0000021109,0.0000021126,0.0000021115,0.0000021117, -0.0000021353,0.0000021733,0.0000021957,0.0000022060,0.0000022169, -0.0000022245,0.0000022267,0.0000022284,0.0000022318,0.0000022349, -0.0000022377,0.0000022406,0.0000022433,0.0000022453,0.0000022470, -0.0000022476,0.0000022468,0.0000022447,0.0000022441,0.0000022479, -0.0000022593,0.0000022751,0.0000022871,0.0000022922,0.0000022962, -0.0000023045,0.0000023159,0.0000023242,0.0000023254,0.0000023225, -0.0000023210,0.0000023238,0.0000023309,0.0000023366,0.0000023384, -0.0000023375,0.0000023348,0.0000023308,0.0000023261,0.0000023216, -0.0000023176,0.0000023140,0.0000023111,0.0000023089,0.0000023069, -0.0000023048,0.0000023026,0.0000023003,0.0000022979,0.0000022947, -0.0000022897,0.0000022831,0.0000022763,0.0000022715,0.0000022666, -0.0000022544,0.0000022312,0.0000022043,0.0000021838,0.0000021714, -0.0000021656,0.0000021682,0.0000021781,0.0000021865,0.0000021904, -0.0000021966,0.0000022046,0.0000022036,0.0000021897,0.0000021776, -0.0000021812,0.0000021971,0.0000022113,0.0000022194,0.0000022273, -0.0000022415,0.0000022627,0.0000022818,0.0000022897,0.0000022899, -0.0000022915,0.0000022970,0.0000023030,0.0000023053,0.0000023057, -0.0000023093,0.0000023150,0.0000023200,0.0000023245,0.0000023294, -0.0000023388,0.0000023510,0.0000023522,0.0000023336,0.0000023125, -0.0000023070,0.0000023083,0.0000023097,0.0000023084,0.0000023058, -0.0000023047,0.0000023049,0.0000023060,0.0000023074,0.0000023093, -0.0000023115,0.0000023127,0.0000023127,0.0000023105,0.0000023065, -0.0000023015,0.0000022968,0.0000022936,0.0000022931,0.0000022943, -0.0000022957,0.0000022964,0.0000022974,0.0000022975,0.0000022972, -0.0000022960,0.0000022921,0.0000022858,0.0000022803,0.0000022762, -0.0000022721,0.0000022679,0.0000022648,0.0000022640,0.0000022649, -0.0000022663,0.0000022672,0.0000022685,0.0000022687,0.0000022681, -0.0000022689,0.0000022713,0.0000022734,0.0000022751,0.0000022740, -0.0000022696,0.0000022647,0.0000022589,0.0000022551,0.0000022542, -0.0000022545,0.0000022568,0.0000022609,0.0000022661,0.0000022746, -0.0000022833,0.0000022914,0.0000023017,0.0000023124,0.0000023184, -0.0000023219,0.0000023303,0.0000023437,0.0000023559,0.0000023633, -0.0000023672,0.0000023685,0.0000023683,0.0000023669,0.0000023650, -0.0000023635,0.0000023627,0.0000023623,0.0000023632,0.0000023642, -0.0000023623,0.0000023557,0.0000023504,0.0000023498,0.0000023499, -0.0000023475,0.0000023441,0.0000023422,0.0000023421,0.0000023427, -0.0000023438,0.0000023472,0.0000023523,0.0000023566,0.0000023595, -0.0000023617,0.0000023644,0.0000023668,0.0000023691,0.0000023714, -0.0000023740,0.0000023772,0.0000023801,0.0000023832,0.0000023866, -0.0000023897,0.0000023923,0.0000023944,0.0000023959,0.0000023961, -0.0000023946,0.0000023926,0.0000023900,0.0000023856,0.0000023800, -0.0000023756,0.0000023740,0.0000023738,0.0000023731,0.0000023707, -0.0000023666,0.0000023604,0.0000023514,0.0000023408,0.0000023324, -0.0000023311,0.0000023373,0.0000023501,0.0000023632,0.0000023748, -0.0000023849,0.0000023967,0.0000024138,0.0000024352,0.0000024570, -0.0000024744,0.0000024851,0.0000024903,0.0000024927,0.0000024947, -0.0000024978,0.0000025030,0.0000025102,0.0000025158,0.0000025163, -0.0000025144,0.0000025096,0.0000025027,0.0000024959,0.0000024909, -0.0000024868,0.0000024819,0.0000024756,0.0000024695,0.0000024660, -0.0000024657,0.0000024671,0.0000024685,0.0000024678,0.0000024645, -0.0000024579,0.0000024496,0.0000024420,0.0000024359,0.0000024305, -0.0000024242,0.0000024162,0.0000024066,0.0000023975,0.0000023900, -0.0000023834,0.0000023760,0.0000023687,0.0000023621,0.0000023543, -0.0000023431,0.0000023297,0.0000023201,0.0000023164,0.0000023170, -0.0000023228,0.0000023331,0.0000023439,0.0000023531,0.0000023609, -0.0000023677,0.0000023741,0.0000023776,0.0000023803,0.0000023787, -0.0000023745,0.0000023689,0.0000023632,0.0000023582,0.0000023559, -0.0000023546,0.0000023549,0.0000023553,0.0000023553,0.0000023542, -0.0000023522,0.0000023502,0.0000023481,0.0000023473,0.0000023489, -0.0000023540,0.0000023621,0.0000023723,0.0000023828,0.0000023929, -0.0000024021,0.0000024097,0.0000024152,0.0000024193,0.0000024214, -0.0000024218,0.0000024207,0.0000024183,0.0000024150,0.0000024109, -0.0000024078,0.0000024053,0.0000024040,0.0000024036,0.0000024052, -0.0000024078,0.0000024103,0.0000024128,0.0000024163,0.0000024218, -0.0000024285,0.0000024359,0.0000024429,0.0000024488,0.0000024534, -0.0000024565,0.0000024582,0.0000024594,0.0000024600,0.0000024598, -0.0000024588,0.0000024562,0.0000024522,0.0000024471,0.0000024420, -0.0000024382,0.0000024364,0.0000024366,0.0000024383,0.0000024418, -0.0000024465,0.0000024510,0.0000024543,0.0000024566,0.0000024579, -0.0000024575,0.0000024556,0.0000024526,0.0000024493,0.0000024473, -0.0000024483,0.0000024521,0.0000024576,0.0000024636,0.0000024689, -0.0000024727,0.0000024750,0.0000024753,0.0000024721,0.0000024668, -0.0000024596,0.0000024520,0.0000024436,0.0000024341,0.0000024254, -0.0000024189,0.0000024135,0.0000024081,0.0000024037,0.0000024034, -0.0000024055,0.0000024110,0.0000024168,0.0000024194,0.0000024179, -0.0000024127,0.0000024047,0.0000023938,0.0000023814,0.0000023701, -0.0000023615,0.0000023558,0.0000023533,0.0000023532,0.0000023549, -0.0000023578,0.0000023606,0.0000023634,0.0000023666,0.0000023705, -0.0000023774,0.0000023862,0.0000023944,0.0000023971,0.0000023949, -0.0000023904,0.0000023904,0.0000023956,0.0000024037,0.0000024173, -0.0000024294,0.0000024294,0.0000024211,0.0000024123,0.0000024043, -0.0000023919,0.0000023787,0.0000023721,0.0000023697,0.0000023678, -0.0000023666,0.0000023659,0.0000023657,0.0000023654,0.0000023648, -0.0000023632,0.0000023606,0.0000023579,0.0000023553,0.0000023519, -0.0000023481,0.0000023441,0.0000023402,0.0000023367,0.0000023322, -0.0000023257,0.0000023175,0.0000023125,0.0000023124,0.0000023177, -0.0000023246,0.0000023275,0.0000023269,0.0000023246,0.0000023212, -0.0000023183,0.0000023196,0.0000023211,0.0000023186,0.0000023124, -0.0000023033,0.0000022943,0.0000022886,0.0000022875,0.0000022918, -0.0000023023,0.0000023114,0.0000023147,0.0000023158,0.0000023178, -0.0000023198,0.0000023242,0.0000023251,0.0000023268,0.0000023333, -0.0000023365,0.0000023319,0.0000023289,0.0000023304,0.0000023244, -0.0000023185,0.0000023213,0.0000023273,0.0000023311,0.0000023313, -0.0000023289,0.0000023234,0.0000023175,0.0000023141,0.0000023125, -0.0000023153,0.0000023283,0.0000023460,0.0000023613,0.0000023673, -0.0000023671,0.0000023672,0.0000023702,0.0000023742,0.0000023746, -0.0000023709,0.0000023647,0.0000023570,0.0000023507,0.0000023445, -0.0000023405,0.0000023389,0.0000023363,0.0000023327,0.0000023313, -0.0000023315,0.0000023313,0.0000023267,0.0000023162,0.0000023026, -0.0000022959,0.0000022958,0.0000022958,0.0000022942,0.0000022906, -0.0000022877,0.0000022865,0.0000022806,0.0000022695,0.0000022587, -0.0000022543,0.0000022550,0.0000022604,0.0000022675,0.0000022724, -0.0000022748,0.0000022762,0.0000022766,0.0000022775,0.0000022782, -0.0000022783,0.0000022778,0.0000022753,0.0000022708,0.0000022660, -0.0000022611,0.0000022549,0.0000022468,0.0000022416,0.0000022424, -0.0000022481,0.0000022527,0.0000022534,0.0000022527,0.0000022523, -0.0000022511,0.0000022452,0.0000022353,0.0000022263,0.0000022220, -0.0000022210,0.0000022233,0.0000022363,0.0000022530,0.0000022613, -0.0000022619,0.0000022636,0.0000022657,0.0000022631,0.0000022563, -0.0000022509,0.0000022531,0.0000022608,0.0000022675,0.0000022688, -0.0000022698,0.0000022787,0.0000022956,0.0000023107,0.0000023139, -0.0000023113,0.0000023034,0.0000022924,0.0000022798,0.0000022657, -0.0000022497,0.0000022354,0.0000022281,0.0000022273,0.0000022284, -0.0000022299,0.0000022323,0.0000022355,0.0000022388,0.0000022409, -0.0000022392,0.0000022332,0.0000022266,0.0000022236,0.0000022254, -0.0000022325,0.0000022401,0.0000022448,0.0000022492,0.0000022545, -0.0000022588,0.0000022603,0.0000022605,0.0000022622,0.0000022677, -0.0000022775,0.0000022885,0.0000022979,0.0000023050,0.0000023091, -0.0000023122,0.0000023157,0.0000023171,0.0000023172,0.0000023174, -0.0000023178,0.0000023177,0.0000023150,0.0000023099,0.0000023041, -0.0000022981,0.0000022906,0.0000022818,0.0000022735,0.0000022675, -0.0000022659,0.0000022664,0.0000022673,0.0000022696,0.0000022763, -0.0000022865,0.0000023012,0.0000023188,0.0000023237,0.0000023169, -0.0000023166,0.0000023303,0.0000023484,0.0000023621,0.0000023688, -0.0000023745,0.0000023812,0.0000023893,0.0000023983,0.0000024069, -0.0000024132,0.0000024152,0.0000024123,0.0000023999,0.0000023893, -0.0000023872,0.0000023896,0.0000023942,0.0000023987,0.0000024053, -0.0000024148,0.0000024258,0.0000024360,0.0000024445,0.0000024495, -0.0000024495,0.0000024485,0.0000024484,0.0000024451,0.0000024383, -0.0000024335,0.0000024299,0.0000024251,0.0000024171,0.0000024042, -0.0000023924,0.0000023839,0.0000023757,0.0000023688,0.0000023638, -0.0000023590,0.0000023576,0.0000023608,0.0000023649,0.0000023699, -0.0000023780,0.0000023870,0.0000023975,0.0000024007,0.0000024080, -0.0000024236,0.0000024297,0.0000024245,0.0000024189,0.0000024147, -0.0000024106,0.0000024282,0.0000024844,0.0000025384,0.0000025597, -0.0000025540,0.0000025294,0.0000024880,0.0000024511,0.0000024328, -0.0000024299,0.0000024341,0.0000024426,0.0000024497,0.0000024508, -0.0000024419,0.0000024225,0.0000024027,0.0000023890,0.0000023838, -0.0000023845,0.0000023886,0.0000023952,0.0000024035,0.0000024126, -0.0000024215,0.0000024299,0.0000024367,0.0000024411,0.0000024426, -0.0000024418,0.0000024397,0.0000024366,0.0000024333,0.0000024298, -0.0000024275,0.0000024267,0.0000024265,0.0000024261,0.0000024259, -0.0000024265,0.0000024285,0.0000024308,0.0000024328,0.0000024341, -0.0000024345,0.0000024360,0.0000024374,0.0000024384,0.0000024389, -0.0000024387,0.0000024381,0.0000024375,0.0000024363,0.0000024347, -0.0000024335,0.0000024315,0.0000024301,0.0000024285,0.0000024262, -0.0000024237,0.0000024209,0.0000024177,0.0000024138,0.0000024094, -0.0000024056,0.0000024029,0.0000024016,0.0000024011,0.0000024007, -0.0000024005,0.0000023996,0.0000023982,0.0000023959,0.0000023929, -0.0000023892,0.0000023854,0.0000023820,0.0000023789,0.0000023762, -0.0000023738,0.0000023717,0.0000023700,0.0000023687,0.0000023675, -0.0000023661,0.0000023645,0.0000023631,0.0000023623,0.0000023621, -0.0000023622,0.0000023625,0.0000023629,0.0000023637,0.0000023651, -0.0000023670,0.0000023693,0.0000023718,0.0000023743,0.0000023768, -0.0000023794,0.0000023814,0.0000023828,0.0000023838,0.0000023849, -0.0000023863,0.0000023881,0.0000023900,0.0000023922,0.0000023946, -0.0000023974,0.0000024003,0.0000024032,0.0000024061,0.0000024096, -0.0000024137,0.0000024177,0.0000024209,0.0000024230,0.0000024239, -0.0000024235,0.0000024208,0.0000024160,0.0000024102,0.0000024038, -0.0000023973,0.0000023906,0.0000023832,0.0000023742,0.0000023635, -0.0000023546,0.0000023495,0.0000023459,0.0000023426,0.0000023390, -0.0000023332,0.0000023242,0.0000023099,0.0000022906,0.0000022712, -0.0000022529,0.0000022344,0.0000022211,0.0000022193,0.0000022244, -0.0000022280,0.0000022294,0.0000022304,0.0000022305,0.0000022292, -0.0000022282,0.0000022290,0.0000022324,0.0000022353,0.0000022338, -0.0000022245,0.0000022123,0.0000022071,0.0000022082,0.0000022070, -0.0000022005,0.0000021974,0.0000022031,0.0000022123,0.0000022155, -0.0000022123,0.0000022083,0.0000022068,0.0000022027,0.0000021933, -0.0000021862,0.0000021848,0.0000021843,0.0000021889,0.0000022072, -0.0000022198,0.0000022155,0.0000022072,0.0000022104,0.0000022215, -0.0000022310,0.0000022399,0.0000022480,0.0000022524,0.0000022596, -0.0000022721,0.0000022796,0.0000022814,0.0000022928,0.0000023182, -0.0000023388,0.0000023431,0.0000023436,0.0000023507,0.0000023630, -0.0000023748,0.0000023865,0.0000023984,0.0000024087,0.0000024171, -0.0000024228,0.0000024250,0.0000024261,0.0000024267,0.0000024245, -0.0000024200,0.0000024177,0.0000024189,0.0000024236,0.0000024296, -0.0000024361,0.0000024402,0.0000024402,0.0000024368,0.0000024313, -0.0000024255,0.0000024182,0.0000024062,0.0000023876,0.0000023660, -0.0000023478,0.0000023359,0.0000023288,0.0000023246,0.0000023220, -0.0000023186,0.0000023126,0.0000023037,0.0000022935,0.0000022838, -0.0000022746,0.0000022648,0.0000022539,0.0000022421,0.0000022309, -0.0000022208,0.0000022111,0.0000022009,0.0000021912,0.0000021835, -0.0000021787,0.0000021762,0.0000021749,0.0000021755,0.0000021786, -0.0000021837,0.0000021891,0.0000021934,0.0000021966,0.0000021988, -0.0000022002,0.0000022013,0.0000022025,0.0000022038,0.0000022044, -0.0000022040,0.0000022035,0.0000022053,0.0000022118,0.0000022244, -0.0000022413,0.0000022593,0.0000022765,0.0000022925,0.0000023069, -0.0000023180,0.0000023245,0.0000023276,0.0000023301,0.0000023338, -0.0000023379,0.0000023409,0.0000023415,0.0000023399,0.0000023388, -0.0000023398,0.0000023434,0.0000023511,0.0000023631,0.0000023763, -0.0000023886,0.0000024012,0.0000024151,0.0000024312,0.0000024491, -0.0000024638,0.0000024705,0.0000024718,0.0000024731,0.0000024770, -0.0000024849,0.0000024936,0.0000024958,0.0000024925,0.0000024910, -0.0000024944,0.0000024980,0.0000024974,0.0000024959,0.0000024987, -0.0000025056,0.0000025107,0.0000025112,0.0000025103,0.0000025124, -0.0000025192,0.0000025275,0.0000025338,0.0000025382,0.0000025417, -0.0000025440,0.0000025439,0.0000025407,0.0000025351,0.0000025301, -0.0000025279,0.0000025282,0.0000025299,0.0000025317,0.0000025337, -0.0000025365,0.0000025403,0.0000025447,0.0000025481,0.0000025494, -0.0000025490,0.0000025471,0.0000025428,0.0000025350,0.0000025251, -0.0000025144,0.0000025012,0.0000024829,0.0000024633,0.0000024483, -0.0000024343,0.0000024147,0.0000023931,0.0000023776,0.0000023755, -0.0000023874,0.0000024035,0.0000024084,0.0000024046,0.0000024029, -0.0000024102,0.0000024292,0.0000024537,0.0000024708,0.0000024770, -0.0000024843,0.0000025007,0.0000025209,0.0000025365,0.0000025456, -0.0000025501,0.0000025518,0.0000025521,0.0000025516,0.0000025508, -0.0000025498,0.0000025490,0.0000025483,0.0000025482,0.0000025489, -0.0000025517,0.0000025562,0.0000025607,0.0000025642,0.0000025668, -0.0000025695,0.0000025719,0.0000025738,0.0000025742,0.0000025733, -0.0000025714,0.0000025705,0.0000025719,0.0000025747,0.0000025769, -0.0000025776,0.0000025778,0.0000025788,0.0000025806,0.0000025824, -0.0000025835,0.0000025847,0.0000025874,0.0000025913,0.0000025939, -0.0000025942,0.0000025915,0.0000025853,0.0000025785,0.0000025744, -0.0000025676,0.0000025544,0.0000025432,0.0000025329,0.0000025086, -0.0000024776,0.0000024594,0.0000024519,0.0000024471,0.0000024350, -0.0000024048,0.0000023773,0.0000023701,0.0000023622,0.0000023268, -0.0000022825,0.0000022590,0.0000022533,0.0000022500,0.0000022412, -0.0000022282,0.0000022166,0.0000022070,0.0000021967,0.0000021882, -0.0000021847,0.0000021863,0.0000021883,0.0000021882,0.0000021835, -0.0000021752,0.0000021671,0.0000021594,0.0000021522,0.0000021459, -0.0000021430,0.0000021406,0.0000021366,0.0000021319,0.0000021286, -0.0000021281,0.0000021283,0.0000021268,0.0000021233,0.0000021188, -0.0000021149,0.0000021125,0.0000021111,0.0000021104,0.0000021102, -0.0000021125,0.0000021172,0.0000021233,0.0000021305,0.0000021384, -0.0000021455,0.0000021521,0.0000021585,0.0000021635,0.0000021664, -0.0000021677,0.0000021679,0.0000021691,0.0000021722,0.0000021780, -0.0000021869,0.0000021972,0.0000022067,0.0000022142,0.0000022189, -0.0000022213,0.0000022216,0.0000022203,0.0000022179,0.0000022146, -0.0000022110,0.0000022078,0.0000022051,0.0000022035,0.0000022028, -0.0000022035,0.0000022061,0.0000022105,0.0000022149,0.0000022187, -0.0000022225,0.0000022265,0.0000022301,0.0000022326,0.0000022338, -0.0000022346,0.0000022354,0.0000022352,0.0000022343,0.0000022331, -0.0000022315,0.0000022299,0.0000022291,0.0000022276,0.0000022226, -0.0000022143,0.0000022058,0.0000022000,0.0000021966,0.0000021942, -0.0000021918,0.0000021895,0.0000021874,0.0000021849,0.0000021810, -0.0000021761,0.0000021713,0.0000021671,0.0000021638,0.0000021616, -0.0000021609,0.0000021621,0.0000021650,0.0000021700,0.0000021762, -0.0000021826,0.0000021886,0.0000021945,0.0000022014,0.0000022080, -0.0000022138,0.0000022209,0.0000022287,0.0000022361,0.0000022430, -0.0000022487,0.0000022533,0.0000022565,0.0000022577,0.0000022569, -0.0000022552,0.0000022536,0.0000022516,0.0000022469,0.0000022398, -0.0000022352,0.0000022359,0.0000022419,0.0000022487,0.0000022525, -0.0000022540,0.0000022548,0.0000022555,0.0000022564,0.0000022580, -0.0000022594,0.0000022596,0.0000022578,0.0000022551,0.0000022530, -0.0000022521,0.0000022510,0.0000022483,0.0000022443,0.0000022399, -0.0000022357,0.0000022328,0.0000022312,0.0000022301,0.0000022290, -0.0000022282,0.0000022278,0.0000022293,0.0000022337,0.0000022391, -0.0000022434,0.0000022464,0.0000022477,0.0000022482,0.0000022478, -0.0000022457,0.0000022407,0.0000022345,0.0000022298,0.0000022234, -0.0000022120,0.0000022000,0.0000021906,0.0000021840,0.0000021824, -0.0000021868,0.0000021978,0.0000022070,0.0000022095,0.0000022098, -0.0000022104,0.0000022094,0.0000022053,0.0000022010,0.0000021989, -0.0000021988,0.0000021987,0.0000021975,0.0000021950,0.0000021912, -0.0000021877,0.0000021864,0.0000021872,0.0000021902,0.0000021949, -0.0000022005,0.0000022061,0.0000022114,0.0000022163,0.0000022200, -0.0000022211,0.0000022198,0.0000022164,0.0000022117,0.0000022068, -0.0000022023,0.0000021979,0.0000021952,0.0000021957,0.0000021989, -0.0000022027,0.0000022043,0.0000022038,0.0000022018,0.0000021996, -0.0000021964,0.0000021881,0.0000021713,0.0000021518,0.0000021396, -0.0000021354,0.0000021334,0.0000021324,0.0000021307,0.0000021267, -0.0000021220,0.0000021175,0.0000021129,0.0000021107,0.0000021120, -0.0000021146,0.0000021137,0.0000021121,0.0000021245,0.0000021610, -0.0000021902,0.0000022032,0.0000022145,0.0000022237,0.0000022270, -0.0000022294,0.0000022337,0.0000022377,0.0000022406,0.0000022431, -0.0000022454,0.0000022475,0.0000022496,0.0000022521,0.0000022546, -0.0000022564,0.0000022581,0.0000022618,0.0000022687,0.0000022777, -0.0000022847,0.0000022878,0.0000022890,0.0000022927,0.0000023009, -0.0000023118,0.0000023199,0.0000023216,0.0000023187,0.0000023161, -0.0000023180,0.0000023243,0.0000023308,0.0000023345,0.0000023356, -0.0000023343,0.0000023311,0.0000023273,0.0000023230,0.0000023191, -0.0000023161,0.0000023136,0.0000023116,0.0000023101,0.0000023084, -0.0000023062,0.0000023038,0.0000023012,0.0000022972,0.0000022910, -0.0000022827,0.0000022743,0.0000022682,0.0000022615,0.0000022460, -0.0000022188,0.0000021903,0.0000021762,0.0000021619,0.0000021600, -0.0000021678,0.0000021795,0.0000021860,0.0000021906,0.0000021996, -0.0000022048,0.0000021966,0.0000021804,0.0000021754,0.0000021870, -0.0000022039,0.0000022141,0.0000022223,0.0000022381,0.0000022619, -0.0000022811,0.0000022877,0.0000022881,0.0000022912,0.0000022975, -0.0000023024,0.0000023039,0.0000023057,0.0000023107,0.0000023163, -0.0000023204,0.0000023245,0.0000023307,0.0000023426,0.0000023540, -0.0000023516,0.0000023313,0.0000023127,0.0000023089,0.0000023098, -0.0000023092,0.0000023062,0.0000023025,0.0000023013,0.0000023021, -0.0000023043,0.0000023062,0.0000023082,0.0000023104,0.0000023120, -0.0000023117,0.0000023088,0.0000023044,0.0000023005,0.0000022980, -0.0000022974,0.0000022981,0.0000022998,0.0000023006,0.0000023001, -0.0000022999,0.0000023000,0.0000022996,0.0000022980,0.0000022933, -0.0000022865,0.0000022820,0.0000022795,0.0000022757,0.0000022719, -0.0000022695,0.0000022690,0.0000022698,0.0000022714,0.0000022721, -0.0000022727,0.0000022727,0.0000022721,0.0000022726,0.0000022743, -0.0000022768,0.0000022794,0.0000022792,0.0000022755,0.0000022707, -0.0000022643,0.0000022581,0.0000022546,0.0000022538,0.0000022542, -0.0000022562,0.0000022591,0.0000022652,0.0000022728,0.0000022807, -0.0000022901,0.0000023022,0.0000023133,0.0000023191,0.0000023228, -0.0000023297,0.0000023406,0.0000023521,0.0000023612,0.0000023665, -0.0000023681,0.0000023681,0.0000023666,0.0000023644,0.0000023621, -0.0000023610,0.0000023615,0.0000023634,0.0000023647,0.0000023632, -0.0000023574,0.0000023527,0.0000023519,0.0000023512,0.0000023482, -0.0000023452,0.0000023435,0.0000023433,0.0000023438,0.0000023463, -0.0000023512,0.0000023563,0.0000023601,0.0000023630,0.0000023657, -0.0000023679,0.0000023695,0.0000023711,0.0000023731,0.0000023760, -0.0000023790,0.0000023814,0.0000023839,0.0000023868,0.0000023903, -0.0000023926,0.0000023936,0.0000023943,0.0000023941,0.0000023929, -0.0000023918,0.0000023898,0.0000023855,0.0000023794,0.0000023741, -0.0000023714,0.0000023708,0.0000023702,0.0000023679,0.0000023633, -0.0000023563,0.0000023471,0.0000023365,0.0000023269,0.0000023228, -0.0000023263,0.0000023383,0.0000023549,0.0000023701,0.0000023815, -0.0000023911,0.0000024025,0.0000024173,0.0000024354,0.0000024539, -0.0000024688,0.0000024792,0.0000024864,0.0000024915,0.0000024962, -0.0000025016,0.0000025083,0.0000025138,0.0000025158,0.0000025143, -0.0000025110,0.0000025059,0.0000025004,0.0000024956,0.0000024907, -0.0000024855,0.0000024800,0.0000024748,0.0000024713,0.0000024712, -0.0000024740,0.0000024787,0.0000024818,0.0000024814,0.0000024767, -0.0000024681,0.0000024577,0.0000024478,0.0000024395,0.0000024326, -0.0000024253,0.0000024168,0.0000024085,0.0000024015,0.0000023953, -0.0000023879,0.0000023790,0.0000023711,0.0000023653,0.0000023590, -0.0000023493,0.0000023370,0.0000023258,0.0000023188,0.0000023199, -0.0000023261,0.0000023348,0.0000023445,0.0000023539,0.0000023620, -0.0000023687,0.0000023744,0.0000023788,0.0000023801,0.0000023805, -0.0000023778,0.0000023735,0.0000023680,0.0000023629,0.0000023590, -0.0000023564,0.0000023551,0.0000023550,0.0000023548,0.0000023550, -0.0000023556,0.0000023553,0.0000023538,0.0000023528,0.0000023536, -0.0000023562,0.0000023621,0.0000023697,0.0000023783,0.0000023872, -0.0000023954,0.0000024021,0.0000024072,0.0000024111,0.0000024129, -0.0000024129,0.0000024114,0.0000024092,0.0000024070,0.0000024056, -0.0000024049,0.0000024039,0.0000024035,0.0000024043,0.0000024060, -0.0000024073,0.0000024076,0.0000024076,0.0000024084,0.0000024111, -0.0000024158,0.0000024218,0.0000024276,0.0000024325,0.0000024365, -0.0000024395,0.0000024415,0.0000024425,0.0000024427,0.0000024419, -0.0000024397,0.0000024360,0.0000024305,0.0000024243,0.0000024187, -0.0000024150,0.0000024137,0.0000024144,0.0000024174,0.0000024216, -0.0000024261,0.0000024307,0.0000024358,0.0000024407,0.0000024439, -0.0000024446,0.0000024434,0.0000024411,0.0000024397,0.0000024403, -0.0000024430,0.0000024473,0.0000024529,0.0000024585,0.0000024631, -0.0000024667,0.0000024686,0.0000024679,0.0000024648,0.0000024607, -0.0000024561,0.0000024519,0.0000024462,0.0000024405,0.0000024347, -0.0000024285,0.0000024230,0.0000024180,0.0000024130,0.0000024086, -0.0000024082,0.0000024091,0.0000024124,0.0000024147,0.0000024147, -0.0000024126,0.0000024104,0.0000024044,0.0000023964,0.0000023879, -0.0000023794,0.0000023723,0.0000023678,0.0000023661,0.0000023664, -0.0000023681,0.0000023719,0.0000023773,0.0000023833,0.0000023891, -0.0000023925,0.0000023929,0.0000023883,0.0000023847,0.0000023854, -0.0000023909,0.0000023976,0.0000024081,0.0000024241,0.0000024330, -0.0000024308,0.0000024228,0.0000024150,0.0000024086,0.0000023973, -0.0000023819,0.0000023728,0.0000023704,0.0000023690,0.0000023677, -0.0000023666,0.0000023654,0.0000023640,0.0000023635,0.0000023620, -0.0000023583,0.0000023530,0.0000023481,0.0000023445,0.0000023413, -0.0000023380,0.0000023337,0.0000023280,0.0000023213,0.0000023152, -0.0000023116,0.0000023133,0.0000023192,0.0000023252,0.0000023285, -0.0000023289,0.0000023281,0.0000023266,0.0000023246,0.0000023236, -0.0000023242,0.0000023226,0.0000023155,0.0000023043,0.0000022932, -0.0000022839,0.0000022764,0.0000022712,0.0000022705,0.0000022778, -0.0000022949,0.0000023127,0.0000023204,0.0000023200,0.0000023200, -0.0000023211,0.0000023253,0.0000023269,0.0000023279,0.0000023337, -0.0000023360,0.0000023290,0.0000023236,0.0000023299,0.0000023346, -0.0000023320,0.0000023317,0.0000023347,0.0000023368,0.0000023358, -0.0000023312,0.0000023251,0.0000023200,0.0000023153,0.0000023098, -0.0000023078,0.0000023147,0.0000023318,0.0000023496,0.0000023608, -0.0000023650,0.0000023645,0.0000023645,0.0000023675,0.0000023704, -0.0000023689,0.0000023640,0.0000023582,0.0000023505,0.0000023425, -0.0000023364,0.0000023324,0.0000023310,0.0000023320,0.0000023325, -0.0000023299,0.0000023197,0.0000023061,0.0000022973,0.0000022956, -0.0000022970,0.0000022970,0.0000022945,0.0000022911,0.0000022869, -0.0000022812,0.0000022714,0.0000022637,0.0000022624,0.0000022667, -0.0000022729,0.0000022771,0.0000022808,0.0000022831,0.0000022838, -0.0000022840,0.0000022829,0.0000022811,0.0000022793,0.0000022777, -0.0000022764,0.0000022739,0.0000022695,0.0000022645,0.0000022594, -0.0000022515,0.0000022427,0.0000022384,0.0000022416,0.0000022476, -0.0000022512,0.0000022526,0.0000022542,0.0000022552,0.0000022533, -0.0000022473,0.0000022391,0.0000022301,0.0000022235,0.0000022215, -0.0000022268,0.0000022415,0.0000022551,0.0000022599,0.0000022606, -0.0000022619,0.0000022620,0.0000022578,0.0000022531,0.0000022521, -0.0000022571,0.0000022650,0.0000022684,0.0000022691,0.0000022736, -0.0000022866,0.0000023019,0.0000023109,0.0000023127,0.0000023071, -0.0000022978,0.0000022854,0.0000022711,0.0000022564,0.0000022424, -0.0000022318,0.0000022269,0.0000022262,0.0000022265,0.0000022272, -0.0000022287,0.0000022314,0.0000022344,0.0000022354,0.0000022331, -0.0000022289,0.0000022266,0.0000022262,0.0000022301,0.0000022366, -0.0000022425,0.0000022466,0.0000022513,0.0000022577,0.0000022632, -0.0000022663,0.0000022685,0.0000022716,0.0000022772,0.0000022861, -0.0000022961,0.0000023041,0.0000023085,0.0000023097,0.0000023101, -0.0000023121,0.0000023137,0.0000023145,0.0000023157,0.0000023178, -0.0000023195,0.0000023192,0.0000023157,0.0000023101,0.0000023045, -0.0000022977,0.0000022890,0.0000022792,0.0000022714,0.0000022665, -0.0000022650,0.0000022649,0.0000022652,0.0000022701,0.0000022793, -0.0000022926,0.0000023115,0.0000023238,0.0000023218,0.0000023143, -0.0000023195,0.0000023335,0.0000023500,0.0000023629,0.0000023683, -0.0000023726,0.0000023792,0.0000023880,0.0000023969,0.0000024048, -0.0000024104,0.0000024130,0.0000024114,0.0000024019,0.0000023931, -0.0000023914,0.0000023949,0.0000023998,0.0000024053,0.0000024120, -0.0000024197,0.0000024281,0.0000024357,0.0000024411,0.0000024430, -0.0000024428,0.0000024431,0.0000024423,0.0000024373,0.0000024318, -0.0000024296,0.0000024269,0.0000024219,0.0000024131,0.0000024005, -0.0000023896,0.0000023809,0.0000023728,0.0000023669,0.0000023624, -0.0000023582,0.0000023575,0.0000023619,0.0000023666,0.0000023712, -0.0000023795,0.0000023868,0.0000023963,0.0000024005,0.0000024027, -0.0000024150,0.0000024246,0.0000024215,0.0000024147,0.0000024123, -0.0000024099,0.0000024074,0.0000024265,0.0000024780,0.0000025264, -0.0000025466,0.0000025429,0.0000025229,0.0000024863,0.0000024503, -0.0000024329,0.0000024323,0.0000024374,0.0000024440,0.0000024499, -0.0000024517,0.0000024489,0.0000024352,0.0000024158,0.0000023983, -0.0000023874,0.0000023830,0.0000023836,0.0000023867,0.0000023938, -0.0000024020,0.0000024108,0.0000024191,0.0000024264,0.0000024327, -0.0000024378,0.0000024409,0.0000024416,0.0000024416,0.0000024390, -0.0000024361,0.0000024335,0.0000024318,0.0000024307,0.0000024299, -0.0000024296,0.0000024302,0.0000024316,0.0000024331,0.0000024343, -0.0000024344,0.0000024337,0.0000024324,0.0000024304,0.0000024286, -0.0000024272,0.0000024257,0.0000024248,0.0000024247,0.0000024249, -0.0000024255,0.0000024263,0.0000024269,0.0000024275,0.0000024273, -0.0000024266,0.0000024247,0.0000024236,0.0000024206,0.0000024170, -0.0000024128,0.0000024085,0.0000024052,0.0000024030,0.0000024018, -0.0000024012,0.0000024012,0.0000024010,0.0000024005,0.0000023992, -0.0000023967,0.0000023934,0.0000023899,0.0000023864,0.0000023835, -0.0000023812,0.0000023791,0.0000023776,0.0000023765,0.0000023756, -0.0000023745,0.0000023731,0.0000023716,0.0000023707,0.0000023705, -0.0000023710,0.0000023720,0.0000023733,0.0000023752,0.0000023775, -0.0000023804,0.0000023835,0.0000023863,0.0000023886,0.0000023905, -0.0000023920,0.0000023931,0.0000023937,0.0000023942,0.0000023951, -0.0000023966,0.0000023987,0.0000024011,0.0000024033,0.0000024054, -0.0000024075,0.0000024097,0.0000024117,0.0000024136,0.0000024157, -0.0000024184,0.0000024214,0.0000024241,0.0000024264,0.0000024279, -0.0000024283,0.0000024274,0.0000024250,0.0000024212,0.0000024162, -0.0000024101,0.0000024029,0.0000023950,0.0000023865,0.0000023758, -0.0000023629,0.0000023520,0.0000023458,0.0000023416,0.0000023376, -0.0000023323,0.0000023242,0.0000023126,0.0000022960,0.0000022772, -0.0000022596,0.0000022409,0.0000022241,0.0000022186,0.0000022229, -0.0000022281,0.0000022296,0.0000022303,0.0000022307,0.0000022297, -0.0000022290,0.0000022305,0.0000022348,0.0000022379,0.0000022363, -0.0000022273,0.0000022154,0.0000022092,0.0000022088,0.0000022054, -0.0000021972,0.0000021936,0.0000022019,0.0000022159,0.0000022244, -0.0000022231,0.0000022155,0.0000022087,0.0000022066,0.0000022033, -0.0000021942,0.0000021861,0.0000021834,0.0000021816,0.0000021853, -0.0000022033,0.0000022166,0.0000022127,0.0000022032,0.0000022056, -0.0000022170,0.0000022285,0.0000022388,0.0000022468,0.0000022512, -0.0000022577,0.0000022694,0.0000022775,0.0000022793,0.0000022887, -0.0000023138,0.0000023387,0.0000023478,0.0000023495,0.0000023567, -0.0000023683,0.0000023793,0.0000023901,0.0000024011,0.0000024110, -0.0000024180,0.0000024210,0.0000024214,0.0000024215,0.0000024210, -0.0000024181,0.0000024143,0.0000024137,0.0000024173,0.0000024223, -0.0000024275,0.0000024334,0.0000024374,0.0000024368,0.0000024315, -0.0000024241,0.0000024160,0.0000024055,0.0000023891,0.0000023668, -0.0000023437,0.0000023257,0.0000023141,0.0000023076,0.0000023046, -0.0000023029,0.0000023008,0.0000022967,0.0000022904,0.0000022828, -0.0000022737,0.0000022630,0.0000022516,0.0000022408,0.0000022311, -0.0000022218,0.0000022123,0.0000022019,0.0000021898,0.0000021770, -0.0000021663,0.0000021590,0.0000021537,0.0000021497,0.0000021491, -0.0000021522,0.0000021577,0.0000021634,0.0000021682,0.0000021721, -0.0000021746,0.0000021761,0.0000021775,0.0000021795,0.0000021822, -0.0000021852,0.0000021883,0.0000021916,0.0000021945,0.0000021981, -0.0000022048,0.0000022174,0.0000022357,0.0000022560,0.0000022741, -0.0000022885,0.0000023006,0.0000023108,0.0000023179,0.0000023217, -0.0000023238,0.0000023267,0.0000023305,0.0000023328,0.0000023318, -0.0000023297,0.0000023294,0.0000023309,0.0000023354,0.0000023452, -0.0000023597,0.0000023747,0.0000023882,0.0000024015,0.0000024159, -0.0000024323,0.0000024495,0.0000024620,0.0000024667,0.0000024678, -0.0000024705,0.0000024777,0.0000024879,0.0000024934,0.0000024913, -0.0000024881,0.0000024898,0.0000024946,0.0000024960,0.0000024950, -0.0000024956,0.0000025001,0.0000025047,0.0000025058,0.0000025050, -0.0000025061,0.0000025115,0.0000025194,0.0000025257,0.0000025292, -0.0000025309,0.0000025317,0.0000025310,0.0000025285,0.0000025253, -0.0000025235,0.0000025236,0.0000025251,0.0000025268,0.0000025278, -0.0000025295,0.0000025326,0.0000025364,0.0000025398,0.0000025415, -0.0000025416,0.0000025391,0.0000025333,0.0000025242,0.0000025134, -0.0000025019,0.0000024884,0.0000024719,0.0000024554,0.0000024429, -0.0000024316,0.0000024154,0.0000023953,0.0000023782,0.0000023705, -0.0000023746,0.0000023896,0.0000024040,0.0000024062,0.0000024023, -0.0000024021,0.0000024105,0.0000024280,0.0000024500,0.0000024668, -0.0000024736,0.0000024773,0.0000024856,0.0000024985,0.0000025106, -0.0000025186,0.0000025229,0.0000025250,0.0000025259,0.0000025261, -0.0000025265,0.0000025279,0.0000025308,0.0000025350,0.0000025398, -0.0000025445,0.0000025488,0.0000025530,0.0000025574,0.0000025616, -0.0000025654,0.0000025685,0.0000025705,0.0000025717,0.0000025722, -0.0000025720,0.0000025703,0.0000025682,0.0000025679,0.0000025695, -0.0000025715,0.0000025731,0.0000025746,0.0000025766,0.0000025792, -0.0000025818,0.0000025838,0.0000025854,0.0000025876,0.0000025905, -0.0000025930,0.0000025936,0.0000025913,0.0000025853,0.0000025778, -0.0000025728,0.0000025668,0.0000025544,0.0000025428,0.0000025338, -0.0000025134,0.0000024833,0.0000024641,0.0000024563,0.0000024507, -0.0000024443,0.0000024217,0.0000023889,0.0000023722,0.0000023686, -0.0000023466,0.0000023024,0.0000022688,0.0000022578,0.0000022560, -0.0000022516,0.0000022409,0.0000022274,0.0000022163,0.0000022058, -0.0000021949,0.0000021863,0.0000021823,0.0000021816,0.0000021815, -0.0000021807,0.0000021776,0.0000021759,0.0000021722,0.0000021669, -0.0000021603,0.0000021557,0.0000021516,0.0000021466,0.0000021400, -0.0000021334,0.0000021293,0.0000021292,0.0000021291,0.0000021276, -0.0000021235,0.0000021177,0.0000021123,0.0000021085,0.0000021069, -0.0000021059,0.0000021052,0.0000021074,0.0000021117,0.0000021173, -0.0000021235,0.0000021299,0.0000021361,0.0000021422,0.0000021481, -0.0000021530,0.0000021560,0.0000021570,0.0000021568,0.0000021573, -0.0000021598,0.0000021655,0.0000021745,0.0000021847,0.0000021943, -0.0000022022,0.0000022081,0.0000022120,0.0000022129,0.0000022124, -0.0000022101,0.0000022071,0.0000022042,0.0000022023,0.0000022013, -0.0000022012,0.0000022026,0.0000022057,0.0000022105,0.0000022160, -0.0000022207,0.0000022244,0.0000022275,0.0000022299,0.0000022315, -0.0000022320,0.0000022325,0.0000022327,0.0000022321,0.0000022312, -0.0000022301,0.0000022282,0.0000022257,0.0000022243,0.0000022237, -0.0000022205,0.0000022139,0.0000022056,0.0000021985,0.0000021938, -0.0000021910,0.0000021889,0.0000021868,0.0000021849,0.0000021829, -0.0000021797,0.0000021750,0.0000021699,0.0000021651,0.0000021615, -0.0000021589,0.0000021575,0.0000021573,0.0000021587,0.0000021615, -0.0000021650,0.0000021693,0.0000021739,0.0000021787,0.0000021855, -0.0000021938,0.0000022004,0.0000022064,0.0000022136,0.0000022215, -0.0000022301,0.0000022386,0.0000022457,0.0000022510,0.0000022548, -0.0000022567,0.0000022567,0.0000022555,0.0000022534,0.0000022510, -0.0000022459,0.0000022384,0.0000022335,0.0000022335,0.0000022392, -0.0000022463,0.0000022509,0.0000022532,0.0000022542,0.0000022546, -0.0000022550,0.0000022558,0.0000022568,0.0000022571,0.0000022562, -0.0000022543,0.0000022526,0.0000022517,0.0000022507,0.0000022485, -0.0000022443,0.0000022387,0.0000022334,0.0000022299,0.0000022284, -0.0000022275,0.0000022271,0.0000022275,0.0000022287,0.0000022319, -0.0000022365,0.0000022405,0.0000022432,0.0000022452,0.0000022469, -0.0000022477,0.0000022469,0.0000022437,0.0000022385,0.0000022335, -0.0000022284,0.0000022193,0.0000022066,0.0000021951,0.0000021860, -0.0000021799,0.0000021793,0.0000021870,0.0000021985,0.0000022047, -0.0000022058,0.0000022063,0.0000022053,0.0000022010,0.0000021973, -0.0000021966,0.0000021970,0.0000021976,0.0000021976,0.0000021967, -0.0000021947,0.0000021918,0.0000021890,0.0000021883,0.0000021899, -0.0000021936,0.0000021980,0.0000022032,0.0000022090,0.0000022140, -0.0000022181,0.0000022215,0.0000022227,0.0000022211,0.0000022176, -0.0000022131,0.0000022075,0.0000022010,0.0000021953,0.0000021919, -0.0000021920,0.0000021952,0.0000021998,0.0000022036,0.0000022052, -0.0000022058,0.0000022060,0.0000022046,0.0000021989,0.0000021854, -0.0000021638,0.0000021443,0.0000021342,0.0000021308,0.0000021308, -0.0000021314,0.0000021299,0.0000021258,0.0000021208,0.0000021157, -0.0000021126,0.0000021133,0.0000021159,0.0000021161,0.0000021119, -0.0000021167,0.0000021471,0.0000021812,0.0000021987,0.0000022103, -0.0000022210,0.0000022263,0.0000022297,0.0000022348,0.0000022396, -0.0000022428,0.0000022454,0.0000022477,0.0000022492,0.0000022504, -0.0000022520,0.0000022547,0.0000022583,0.0000022624,0.0000022672, -0.0000022723,0.0000022775,0.0000022812,0.0000022830,0.0000022837, -0.0000022853,0.0000022899,0.0000022983,0.0000023083,0.0000023154, -0.0000023173,0.0000023145,0.0000023118,0.0000023133,0.0000023189, -0.0000023249,0.0000023290,0.0000023310,0.0000023310,0.0000023291, -0.0000023263,0.0000023236,0.0000023207,0.0000023176,0.0000023149, -0.0000023129,0.0000023112,0.0000023091,0.0000023070,0.0000023051, -0.0000023022,0.0000022970,0.0000022887,0.0000022786,0.0000022697, -0.0000022637,0.0000022553,0.0000022351,0.0000022042,0.0000021873, -0.0000021629,0.0000021553,0.0000021590,0.0000021724,0.0000021828, -0.0000021870,0.0000021936,0.0000022026,0.0000022016,0.0000021858, -0.0000021732,0.0000021779,0.0000021954,0.0000022086,0.0000022177, -0.0000022355,0.0000022618,0.0000022811,0.0000022865,0.0000022873, -0.0000022918,0.0000022983,0.0000023019,0.0000023032,0.0000023066, -0.0000023125,0.0000023172,0.0000023205,0.0000023246,0.0000023326, -0.0000023464,0.0000023564,0.0000023510,0.0000023303,0.0000023138, -0.0000023114,0.0000023120,0.0000023102,0.0000023060,0.0000023020, -0.0000023008,0.0000023022,0.0000023052,0.0000023080,0.0000023097, -0.0000023109,0.0000023110,0.0000023097,0.0000023075,0.0000023052, -0.0000023041,0.0000023031,0.0000023023,0.0000023019,0.0000023017, -0.0000023015,0.0000023001,0.0000022996,0.0000022996,0.0000022993, -0.0000022978,0.0000022933,0.0000022872,0.0000022835,0.0000022822, -0.0000022799,0.0000022767,0.0000022745,0.0000022734,0.0000022734, -0.0000022749,0.0000022759,0.0000022760,0.0000022763,0.0000022764, -0.0000022767,0.0000022780,0.0000022811,0.0000022843,0.0000022846, -0.0000022817,0.0000022778,0.0000022724,0.0000022648,0.0000022579, -0.0000022546,0.0000022534,0.0000022530,0.0000022542,0.0000022585, -0.0000022639,0.0000022702,0.0000022785,0.0000022897,0.0000023026, -0.0000023128,0.0000023186,0.0000023214,0.0000023261,0.0000023357, -0.0000023477,0.0000023578,0.0000023635,0.0000023661,0.0000023665, -0.0000023652,0.0000023628,0.0000023609,0.0000023607,0.0000023619, -0.0000023638,0.0000023655,0.0000023642,0.0000023589,0.0000023546, -0.0000023530,0.0000023512,0.0000023484,0.0000023455,0.0000023437, -0.0000023434,0.0000023447,0.0000023486,0.0000023537,0.0000023581, -0.0000023618,0.0000023654,0.0000023686,0.0000023708,0.0000023724, -0.0000023738,0.0000023755,0.0000023784,0.0000023812,0.0000023833, -0.0000023850,0.0000023872,0.0000023900,0.0000023916,0.0000023919, -0.0000023920,0.0000023914,0.0000023906,0.0000023905,0.0000023897, -0.0000023856,0.0000023787,0.0000023719,0.0000023681,0.0000023673, -0.0000023670,0.0000023647,0.0000023597,0.0000023519,0.0000023421, -0.0000023312,0.0000023222,0.0000023170,0.0000023178,0.0000023276, -0.0000023448,0.0000023630,0.0000023769,0.0000023865,0.0000023944, -0.0000024029,0.0000024148,0.0000024310,0.0000024485,0.0000024640, -0.0000024759,0.0000024856,0.0000024942,0.0000025012,0.0000025069, -0.0000025115,0.0000025136,0.0000025127,0.0000025096,0.0000025060, -0.0000025024,0.0000024987,0.0000024944,0.0000024896,0.0000024849, -0.0000024800,0.0000024758,0.0000024749,0.0000024777,0.0000024830, -0.0000024878,0.0000024902,0.0000024892,0.0000024836,0.0000024737, -0.0000024618,0.0000024508,0.0000024417,0.0000024337,0.0000024256, -0.0000024176,0.0000024102,0.0000024039,0.0000023973,0.0000023896, -0.0000023818,0.0000023755,0.0000023709,0.0000023661,0.0000023577, -0.0000023454,0.0000023333,0.0000023258,0.0000023270,0.0000023299, -0.0000023366,0.0000023455,0.0000023543,0.0000023616,0.0000023675, -0.0000023724,0.0000023762,0.0000023782,0.0000023785,0.0000023767, -0.0000023745,0.0000023717,0.0000023684,0.0000023650,0.0000023617, -0.0000023591,0.0000023572,0.0000023569,0.0000023584,0.0000023602, -0.0000023612,0.0000023611,0.0000023605,0.0000023601,0.0000023614, -0.0000023629,0.0000023671,0.0000023736,0.0000023806,0.0000023869, -0.0000023923,0.0000023966,0.0000023991,0.0000023998,0.0000023994, -0.0000023983,0.0000023976,0.0000023980,0.0000023996,0.0000024012, -0.0000024024,0.0000024040,0.0000024057,0.0000024066,0.0000024063, -0.0000024049,0.0000024030,0.0000024019,0.0000024024,0.0000024049, -0.0000024082,0.0000024114,0.0000024145,0.0000024170,0.0000024184, -0.0000024189,0.0000024186,0.0000024174,0.0000024150,0.0000024113, -0.0000024061,0.0000024000,0.0000023944,0.0000023902,0.0000023878, -0.0000023872,0.0000023888,0.0000023910,0.0000023933,0.0000023966, -0.0000024016,0.0000024078,0.0000024140,0.0000024194,0.0000024234, -0.0000024264,0.0000024286,0.0000024306,0.0000024331,0.0000024370, -0.0000024423,0.0000024475,0.0000024521,0.0000024565,0.0000024597, -0.0000024605,0.0000024589,0.0000024560,0.0000024530,0.0000024501, -0.0000024473,0.0000024464,0.0000024455,0.0000024431,0.0000024395, -0.0000024351,0.0000024316,0.0000024280,0.0000024226,0.0000024165, -0.0000024119,0.0000024099,0.0000024067,0.0000024047,0.0000024033, -0.0000024026,0.0000024004,0.0000023989,0.0000023973,0.0000023946, -0.0000023921,0.0000023904,0.0000023893,0.0000023888,0.0000023888, -0.0000023890,0.0000023885,0.0000023872,0.0000023840,0.0000023808, -0.0000023793,0.0000023829,0.0000023881,0.0000023940,0.0000024017, -0.0000024159,0.0000024308,0.0000024354,0.0000024327,0.0000024267, -0.0000024203,0.0000024142,0.0000024049,0.0000023888,0.0000023759, -0.0000023725,0.0000023714,0.0000023701,0.0000023694,0.0000023674, -0.0000023630,0.0000023600,0.0000023589,0.0000023567,0.0000023526, -0.0000023471,0.0000023420,0.0000023361,0.0000023314,0.0000023264, -0.0000023218,0.0000023180,0.0000023156,0.0000023161,0.0000023197, -0.0000023240,0.0000023270,0.0000023291,0.0000023301,0.0000023291, -0.0000023272,0.0000023261,0.0000023260,0.0000023243,0.0000023193, -0.0000023089,0.0000022963,0.0000022857,0.0000022782,0.0000022720, -0.0000022663,0.0000022623,0.0000022621,0.0000022709,0.0000022901, -0.0000023129,0.0000023237,0.0000023223,0.0000023208,0.0000023211, -0.0000023250,0.0000023269,0.0000023266,0.0000023315,0.0000023336, -0.0000023276,0.0000023205,0.0000023276,0.0000023411,0.0000023484, -0.0000023487,0.0000023466,0.0000023443,0.0000023396,0.0000023331, -0.0000023270,0.0000023223,0.0000023159,0.0000023084,0.0000023043, -0.0000023076,0.0000023195,0.0000023353,0.0000023500,0.0000023588, -0.0000023611,0.0000023613,0.0000023633,0.0000023659,0.0000023661, -0.0000023630,0.0000023576,0.0000023497,0.0000023417,0.0000023366, -0.0000023350,0.0000023341,0.0000023327,0.0000023258,0.0000023115, -0.0000022994,0.0000022953,0.0000022960,0.0000022972,0.0000022967, -0.0000022945,0.0000022902,0.0000022815,0.0000022723,0.0000022669, -0.0000022674,0.0000022734,0.0000022800,0.0000022831,0.0000022855, -0.0000022892,0.0000022909,0.0000022900,0.0000022877,0.0000022846, -0.0000022811,0.0000022785,0.0000022776,0.0000022771,0.0000022753, -0.0000022715,0.0000022660,0.0000022590,0.0000022494,0.0000022407, -0.0000022382,0.0000022412,0.0000022461,0.0000022491,0.0000022520, -0.0000022550,0.0000022563,0.0000022546,0.0000022494,0.0000022426, -0.0000022339,0.0000022255,0.0000022227,0.0000022306,0.0000022465, -0.0000022571,0.0000022592,0.0000022597,0.0000022604,0.0000022578, -0.0000022522,0.0000022498,0.0000022541,0.0000022623,0.0000022692, -0.0000022699,0.0000022701,0.0000022788,0.0000022941,0.0000023064, -0.0000023093,0.0000023081,0.0000023014,0.0000022906,0.0000022765, -0.0000022618,0.0000022488,0.0000022386,0.0000022313,0.0000022271, -0.0000022252,0.0000022244,0.0000022246,0.0000022251,0.0000022268, -0.0000022293,0.0000022299,0.0000022284,0.0000022273,0.0000022279, -0.0000022310,0.0000022354,0.0000022406,0.0000022451,0.0000022495, -0.0000022555,0.0000022628,0.0000022694,0.0000022741,0.0000022775, -0.0000022811,0.0000022860,0.0000022933,0.0000023017,0.0000023085, -0.0000023119,0.0000023109,0.0000023097,0.0000023104,0.0000023113, -0.0000023120,0.0000023138,0.0000023169,0.0000023201,0.0000023219, -0.0000023211,0.0000023169,0.0000023115,0.0000023055,0.0000022972, -0.0000022868,0.0000022771,0.0000022704,0.0000022656,0.0000022634, -0.0000022633,0.0000022658,0.0000022734,0.0000022849,0.0000023023, -0.0000023202,0.0000023242,0.0000023177,0.0000023133,0.0000023209, -0.0000023346,0.0000023515,0.0000023643,0.0000023682,0.0000023707, -0.0000023768,0.0000023859,0.0000023944,0.0000024014,0.0000024060, -0.0000024092,0.0000024099,0.0000024050,0.0000023989,0.0000023983, -0.0000024027,0.0000024073,0.0000024117,0.0000024164,0.0000024228, -0.0000024289,0.0000024328,0.0000024352,0.0000024372,0.0000024380, -0.0000024379,0.0000024348,0.0000024288,0.0000024260,0.0000024262, -0.0000024240,0.0000024189,0.0000024099,0.0000023978,0.0000023869, -0.0000023779,0.0000023704,0.0000023656,0.0000023620,0.0000023585, -0.0000023584,0.0000023635,0.0000023684,0.0000023725,0.0000023805, -0.0000023872,0.0000023952,0.0000023999,0.0000024002,0.0000024078, -0.0000024182,0.0000024186,0.0000024122,0.0000024089,0.0000024090, -0.0000024061,0.0000024031,0.0000024213,0.0000024663,0.0000025087, -0.0000025273,0.0000025273,0.0000025099,0.0000024790,0.0000024484, -0.0000024361,0.0000024373,0.0000024420,0.0000024453,0.0000024484, -0.0000024512,0.0000024502,0.0000024444,0.0000024313,0.0000024157, -0.0000024014,0.0000023906,0.0000023847,0.0000023843,0.0000023870, -0.0000023910,0.0000023981,0.0000024059,0.0000024140,0.0000024219, -0.0000024298,0.0000024369,0.0000024417,0.0000024437,0.0000024447, -0.0000024433,0.0000024409,0.0000024379,0.0000024352,0.0000024332, -0.0000024322,0.0000024320,0.0000024323,0.0000024327,0.0000024330, -0.0000024328,0.0000024320,0.0000024301,0.0000024275,0.0000024244, -0.0000024211,0.0000024179,0.0000024154,0.0000024136,0.0000024126, -0.0000024126,0.0000024136,0.0000024156,0.0000024179,0.0000024199, -0.0000024211,0.0000024221,0.0000024218,0.0000024211,0.0000024182, -0.0000024163,0.0000024127,0.0000024093,0.0000024072,0.0000024059, -0.0000024051,0.0000024051,0.0000024049,0.0000024044,0.0000024035, -0.0000024017,0.0000023989,0.0000023957,0.0000023925,0.0000023898, -0.0000023877,0.0000023862,0.0000023854,0.0000023847,0.0000023838, -0.0000023828,0.0000023820,0.0000023817,0.0000023823,0.0000023835, -0.0000023849,0.0000023865,0.0000023883,0.0000023902,0.0000023922, -0.0000023942,0.0000023960,0.0000023977,0.0000023991,0.0000024002, -0.0000024012,0.0000024021,0.0000024029,0.0000024039,0.0000024051, -0.0000024066,0.0000024082,0.0000024097,0.0000024109,0.0000024119, -0.0000024127,0.0000024132,0.0000024140,0.0000024151,0.0000024164, -0.0000024186,0.0000024212,0.0000024237,0.0000024257,0.0000024270, -0.0000024272,0.0000024262,0.0000024245,0.0000024221,0.0000024183, -0.0000024127,0.0000024053,0.0000023968,0.0000023872,0.0000023750, -0.0000023607,0.0000023488,0.0000023419,0.0000023370,0.0000023313, -0.0000023230,0.0000023121,0.0000022988,0.0000022828,0.0000022666, -0.0000022489,0.0000022298,0.0000022193,0.0000022211,0.0000022270, -0.0000022301,0.0000022313,0.0000022320,0.0000022315,0.0000022307, -0.0000022321,0.0000022365,0.0000022397,0.0000022381,0.0000022299, -0.0000022189,0.0000022122,0.0000022098,0.0000022039,0.0000021942, -0.0000021910,0.0000022017,0.0000022198,0.0000022325,0.0000022352, -0.0000022302,0.0000022189,0.0000022090,0.0000022061,0.0000022042, -0.0000021962,0.0000021865,0.0000021815,0.0000021783,0.0000021813, -0.0000021989,0.0000022143,0.0000022108,0.0000022007,0.0000022012, -0.0000022118,0.0000022247,0.0000022370,0.0000022459,0.0000022504, -0.0000022562,0.0000022670,0.0000022754,0.0000022780,0.0000022863, -0.0000023100,0.0000023372,0.0000023515,0.0000023558,0.0000023623, -0.0000023730,0.0000023837,0.0000023934,0.0000024032,0.0000024120, -0.0000024173,0.0000024184,0.0000024183,0.0000024181,0.0000024174, -0.0000024151,0.0000024130,0.0000024140,0.0000024180,0.0000024224, -0.0000024273,0.0000024328,0.0000024350,0.0000024319,0.0000024233, -0.0000024124,0.0000024005,0.0000023860,0.0000023675,0.0000023460, -0.0000023245,0.0000023068,0.0000022962,0.0000022922,0.0000022913, -0.0000022907,0.0000022893,0.0000022858,0.0000022794,0.0000022698, -0.0000022583,0.0000022476,0.0000022395,0.0000022327,0.0000022251, -0.0000022156,0.0000022039,0.0000021904,0.0000021751,0.0000021598, -0.0000021471,0.0000021379,0.0000021300,0.0000021239,0.0000021223, -0.0000021250,0.0000021305,0.0000021365,0.0000021425,0.0000021476, -0.0000021509,0.0000021528,0.0000021542,0.0000021558,0.0000021578, -0.0000021608,0.0000021656,0.0000021725,0.0000021804,0.0000021874, -0.0000021930,0.0000022003,0.0000022135,0.0000022331,0.0000022542, -0.0000022707,0.0000022825,0.0000022931,0.0000023037,0.0000023119, -0.0000023159,0.0000023176,0.0000023204,0.0000023234,0.0000023232, -0.0000023203,0.0000023190,0.0000023198,0.0000023222,0.0000023286, -0.0000023419,0.0000023592,0.0000023748,0.0000023881,0.0000024012, -0.0000024161,0.0000024335,0.0000024503,0.0000024598,0.0000024624, -0.0000024646,0.0000024707,0.0000024812,0.0000024904,0.0000024916, -0.0000024880,0.0000024873,0.0000024914,0.0000024943,0.0000024932, -0.0000024915,0.0000024930,0.0000024969,0.0000024994,0.0000024996, -0.0000025001,0.0000025042,0.0000025115,0.0000025177,0.0000025202, -0.0000025204,0.0000025194,0.0000025180,0.0000025169,0.0000025168, -0.0000025177,0.0000025191,0.0000025206,0.0000025217,0.0000025225, -0.0000025246,0.0000025274,0.0000025304,0.0000025329,0.0000025333, -0.0000025304,0.0000025231,0.0000025129,0.0000025018,0.0000024899, -0.0000024755,0.0000024593,0.0000024455,0.0000024363,0.0000024274, -0.0000024136,0.0000023958,0.0000023792,0.0000023698,0.0000023696, -0.0000023780,0.0000023939,0.0000024045,0.0000024039,0.0000024006, -0.0000024020,0.0000024111,0.0000024261,0.0000024440,0.0000024592, -0.0000024671,0.0000024704,0.0000024748,0.0000024817,0.0000024881, -0.0000024921,0.0000024941,0.0000024948,0.0000024946,0.0000024941, -0.0000024945,0.0000024966,0.0000025012,0.0000025084,0.0000025183, -0.0000025297,0.0000025401,0.0000025480,0.0000025535,0.0000025574, -0.0000025611,0.0000025647,0.0000025674,0.0000025686,0.0000025691, -0.0000025690,0.0000025679,0.0000025664,0.0000025658,0.0000025663, -0.0000025679,0.0000025699,0.0000025723,0.0000025750,0.0000025777, -0.0000025803,0.0000025829,0.0000025849,0.0000025866,0.0000025892, -0.0000025919,0.0000025927,0.0000025910,0.0000025848,0.0000025767, -0.0000025711,0.0000025661,0.0000025553,0.0000025438,0.0000025356, -0.0000025187,0.0000024905,0.0000024703,0.0000024624,0.0000024558, -0.0000024511,0.0000024376,0.0000024061,0.0000023794,0.0000023722, -0.0000023635,0.0000023288,0.0000022869,0.0000022657,0.0000022609, -0.0000022592,0.0000022525,0.0000022388,0.0000022245,0.0000022128, -0.0000022016,0.0000021910,0.0000021829,0.0000021784,0.0000021752, -0.0000021725,0.0000021718,0.0000021758,0.0000021798,0.0000021807, -0.0000021778,0.0000021734,0.0000021681,0.0000021613,0.0000021535, -0.0000021448,0.0000021363,0.0000021318,0.0000021305,0.0000021296, -0.0000021269,0.0000021223,0.0000021162,0.0000021107,0.0000021081, -0.0000021071,0.0000021062,0.0000021064,0.0000021078,0.0000021110, -0.0000021152,0.0000021193,0.0000021236,0.0000021277,0.0000021319, -0.0000021367,0.0000021412,0.0000021445,0.0000021462,0.0000021467, -0.0000021474,0.0000021496,0.0000021549,0.0000021625,0.0000021711, -0.0000021791,0.0000021866,0.0000021929,0.0000021975,0.0000022005, -0.0000022014,0.0000022009,0.0000021999,0.0000021996,0.0000022001, -0.0000022011,0.0000022027,0.0000022061,0.0000022107,0.0000022160, -0.0000022205,0.0000022244,0.0000022272,0.0000022290,0.0000022299, -0.0000022300,0.0000022299,0.0000022291,0.0000022276,0.0000022264, -0.0000022249,0.0000022225,0.0000022193,0.0000022166,0.0000022159, -0.0000022146,0.0000022111,0.0000022049,0.0000021972,0.0000021906, -0.0000021865,0.0000021846,0.0000021832,0.0000021817,0.0000021803, -0.0000021780,0.0000021742,0.0000021692,0.0000021636,0.0000021591, -0.0000021563,0.0000021544,0.0000021537,0.0000021549,0.0000021575, -0.0000021601,0.0000021629,0.0000021660,0.0000021684,0.0000021724, -0.0000021796,0.0000021870,0.0000021934,0.0000022001,0.0000022076, -0.0000022154,0.0000022241,0.0000022339,0.0000022425,0.0000022491, -0.0000022536,0.0000022558,0.0000022565,0.0000022558,0.0000022533, -0.0000022504,0.0000022457,0.0000022379,0.0000022325,0.0000022323, -0.0000022377,0.0000022445,0.0000022496,0.0000022524,0.0000022538, -0.0000022541,0.0000022539,0.0000022535,0.0000022534,0.0000022536, -0.0000022535,0.0000022530,0.0000022522,0.0000022512,0.0000022500, -0.0000022483,0.0000022448,0.0000022394,0.0000022340,0.0000022303, -0.0000022286,0.0000022280,0.0000022283,0.0000022295,0.0000022310, -0.0000022333,0.0000022365,0.0000022392,0.0000022409,0.0000022433, -0.0000022457,0.0000022464,0.0000022451,0.0000022413,0.0000022364, -0.0000022319,0.0000022252,0.0000022141,0.0000022021,0.0000021911, -0.0000021814,0.0000021763,0.0000021781,0.0000021883,0.0000021984, -0.0000022019,0.0000022025,0.0000022017,0.0000021971,0.0000021930, -0.0000021932,0.0000021947,0.0000021942,0.0000021929,0.0000021923, -0.0000021918,0.0000021910,0.0000021894,0.0000021879,0.0000021879, -0.0000021905,0.0000021950,0.0000022005,0.0000022066,0.0000022132, -0.0000022185,0.0000022225,0.0000022252,0.0000022260,0.0000022244, -0.0000022210,0.0000022171,0.0000022111,0.0000022028,0.0000021946, -0.0000021894,0.0000021883,0.0000021906,0.0000021952,0.0000022006, -0.0000022044,0.0000022070,0.0000022098,0.0000022110,0.0000022075, -0.0000021973,0.0000021783,0.0000021544,0.0000021367,0.0000021293, -0.0000021288,0.0000021305,0.0000021310,0.0000021288,0.0000021240, -0.0000021186,0.0000021148,0.0000021144,0.0000021163,0.0000021174, -0.0000021138,0.0000021120,0.0000021316,0.0000021686,0.0000021920, -0.0000022045,0.0000022165,0.0000022244,0.0000022293,0.0000022350, -0.0000022402,0.0000022436,0.0000022468,0.0000022504,0.0000022528, -0.0000022532,0.0000022533,0.0000022541,0.0000022563,0.0000022596, -0.0000022635,0.0000022676,0.0000022716,0.0000022750,0.0000022778, -0.0000022794,0.0000022804,0.0000022828,0.0000022887,0.0000022975, -0.0000023064,0.0000023118,0.0000023125,0.0000023093,0.0000023069, -0.0000023092,0.0000023146,0.0000023198,0.0000023237,0.0000023257, -0.0000023262,0.0000023255,0.0000023241,0.0000023221,0.0000023193, -0.0000023165,0.0000023138,0.0000023113,0.0000023094,0.0000023079, -0.0000023065,0.0000023040,0.0000022994,0.0000022921,0.0000022828, -0.0000022729,0.0000022647,0.0000022583,0.0000022462,0.0000022204, -0.0000022000,0.0000021677,0.0000021516,0.0000021532,0.0000021673, -0.0000021811,0.0000021858,0.0000021894,0.0000021984,0.0000022033, -0.0000021923,0.0000021739,0.0000021712,0.0000021866,0.0000022026, -0.0000022140,0.0000022339,0.0000022625,0.0000022822,0.0000022868, -0.0000022880,0.0000022932,0.0000022987,0.0000023012,0.0000023032, -0.0000023083,0.0000023142,0.0000023177,0.0000023203,0.0000023248, -0.0000023354,0.0000023504,0.0000023579,0.0000023509,0.0000023307, -0.0000023167,0.0000023148,0.0000023147,0.0000023121,0.0000023072, -0.0000023027,0.0000023015,0.0000023033,0.0000023070,0.0000023102, -0.0000023110,0.0000023106,0.0000023094,0.0000023087,0.0000023089, -0.0000023100,0.0000023102,0.0000023081,0.0000023048,0.0000023026, -0.0000023007,0.0000022991,0.0000022975,0.0000022968,0.0000022968, -0.0000022967,0.0000022957,0.0000022922,0.0000022880,0.0000022852, -0.0000022840,0.0000022828,0.0000022808,0.0000022785,0.0000022765, -0.0000022754,0.0000022764,0.0000022780,0.0000022784,0.0000022794, -0.0000022805,0.0000022803,0.0000022812,0.0000022853,0.0000022895, -0.0000022902,0.0000022886,0.0000022858,0.0000022813,0.0000022738, -0.0000022647,0.0000022584,0.0000022544,0.0000022522,0.0000022516, -0.0000022544,0.0000022582,0.0000022625,0.0000022685,0.0000022778, -0.0000022892,0.0000023000,0.0000023094,0.0000023153,0.0000023181, -0.0000023225,0.0000023311,0.0000023419,0.0000023518,0.0000023592, -0.0000023631,0.0000023639,0.0000023627,0.0000023611,0.0000023606, -0.0000023611,0.0000023622,0.0000023645,0.0000023663,0.0000023648, -0.0000023601,0.0000023559,0.0000023535,0.0000023513,0.0000023484, -0.0000023452,0.0000023435,0.0000023439,0.0000023464,0.0000023502, -0.0000023541,0.0000023578,0.0000023617,0.0000023658,0.0000023693, -0.0000023721,0.0000023745,0.0000023763,0.0000023786,0.0000023814, -0.0000023842,0.0000023863,0.0000023871,0.0000023876,0.0000023887, -0.0000023898,0.0000023900,0.0000023895,0.0000023887,0.0000023885, -0.0000023894,0.0000023894,0.0000023853,0.0000023772,0.0000023689, -0.0000023644,0.0000023637,0.0000023635,0.0000023613,0.0000023558, -0.0000023472,0.0000023365,0.0000023252,0.0000023174,0.0000023142, -0.0000023145,0.0000023208,0.0000023349,0.0000023533,0.0000023697, -0.0000023811,0.0000023880,0.0000023924,0.0000023979,0.0000024085, -0.0000024250,0.0000024438,0.0000024611,0.0000024764,0.0000024895, -0.0000024993,0.0000025056,0.0000025095,0.0000025106,0.0000025097, -0.0000025070,0.0000025040,0.0000025014,0.0000024989,0.0000024966, -0.0000024936,0.0000024907,0.0000024868,0.0000024822,0.0000024794, -0.0000024804,0.0000024843,0.0000024884,0.0000024917,0.0000024923, -0.0000024907,0.0000024845,0.0000024744,0.0000024626,0.0000024514, -0.0000024420,0.0000024340,0.0000024261,0.0000024182,0.0000024104, -0.0000024030,0.0000023965,0.0000023906,0.0000023854,0.0000023813, -0.0000023781,0.0000023736,0.0000023660,0.0000023560,0.0000023450, -0.0000023365,0.0000023314,0.0000023324,0.0000023376,0.0000023453, -0.0000023533,0.0000023606,0.0000023664,0.0000023700,0.0000023717, -0.0000023728,0.0000023734,0.0000023739,0.0000023731,0.0000023724, -0.0000023707,0.0000023686,0.0000023664,0.0000023643,0.0000023632, -0.0000023634,0.0000023643,0.0000023657,0.0000023672,0.0000023685, -0.0000023687,0.0000023676,0.0000023656,0.0000023655,0.0000023656, -0.0000023685,0.0000023727,0.0000023772,0.0000023815,0.0000023842, -0.0000023853,0.0000023849,0.0000023838,0.0000023835,0.0000023849, -0.0000023885,0.0000023928,0.0000023969,0.0000024003,0.0000024032, -0.0000024052,0.0000024058,0.0000024048,0.0000024027,0.0000024002, -0.0000023975,0.0000023962,0.0000023965,0.0000023978,0.0000023994, -0.0000024006,0.0000024009,0.0000024006,0.0000023997,0.0000023982, -0.0000023961,0.0000023931,0.0000023895,0.0000023855,0.0000023816, -0.0000023781,0.0000023751,0.0000023735,0.0000023734,0.0000023734, -0.0000023730,0.0000023730,0.0000023747,0.0000023781,0.0000023827, -0.0000023874,0.0000023921,0.0000023968,0.0000024013,0.0000024062, -0.0000024122,0.0000024192,0.0000024264,0.0000024336,0.0000024404, -0.0000024464,0.0000024508,0.0000024529,0.0000024526,0.0000024508, -0.0000024485,0.0000024459,0.0000024440,0.0000024438,0.0000024453, -0.0000024478,0.0000024508,0.0000024527,0.0000024524,0.0000024487, -0.0000024431,0.0000024375,0.0000024311,0.0000024224,0.0000024120, -0.0000024033,0.0000023975,0.0000023918,0.0000023897,0.0000023886, -0.0000023890,0.0000023904,0.0000023920,0.0000023930,0.0000023926, -0.0000023922,0.0000023913,0.0000023893,0.0000023856,0.0000023819, -0.0000023808,0.0000023805,0.0000023852,0.0000023916,0.0000023962, -0.0000024011,0.0000024117,0.0000024272,0.0000024376,0.0000024385, -0.0000024368,0.0000024335,0.0000024272,0.0000024199,0.0000024122, -0.0000023984,0.0000023824,0.0000023756,0.0000023743,0.0000023723, -0.0000023709,0.0000023698,0.0000023653,0.0000023574,0.0000023514, -0.0000023491,0.0000023479,0.0000023459,0.0000023419,0.0000023385, -0.0000023341,0.0000023303,0.0000023271,0.0000023248,0.0000023236, -0.0000023236,0.0000023243,0.0000023257,0.0000023291,0.0000023321, -0.0000023327,0.0000023313,0.0000023300,0.0000023291,0.0000023269, -0.0000023213,0.0000023118,0.0000023009,0.0000022909,0.0000022825, -0.0000022748,0.0000022687,0.0000022640,0.0000022605,0.0000022592, -0.0000022617,0.0000022701,0.0000022871,0.0000023111,0.0000023241, -0.0000023221,0.0000023197,0.0000023195,0.0000023235,0.0000023242, -0.0000023228,0.0000023276,0.0000023306,0.0000023271,0.0000023212, -0.0000023259,0.0000023441,0.0000023593,0.0000023653,0.0000023640, -0.0000023584,0.0000023496,0.0000023397,0.0000023314,0.0000023241, -0.0000023146,0.0000023044,0.0000022987,0.0000023007,0.0000023112, -0.0000023256,0.0000023385,0.0000023489,0.0000023564,0.0000023596, -0.0000023615,0.0000023645,0.0000023666,0.0000023642,0.0000023589, -0.0000023522,0.0000023472,0.0000023436,0.0000023382,0.0000023317, -0.0000023191,0.0000023037,0.0000022957,0.0000022941,0.0000022950, -0.0000022958,0.0000022954,0.0000022912,0.0000022827,0.0000022728, -0.0000022696,0.0000022718,0.0000022781,0.0000022836,0.0000022865, -0.0000022888,0.0000022907,0.0000022923,0.0000022927,0.0000022911, -0.0000022883,0.0000022850,0.0000022819,0.0000022796,0.0000022791, -0.0000022794,0.0000022780,0.0000022742,0.0000022684,0.0000022596, -0.0000022486,0.0000022401,0.0000022385,0.0000022403,0.0000022434, -0.0000022462,0.0000022509,0.0000022553,0.0000022567,0.0000022557, -0.0000022516,0.0000022451,0.0000022364,0.0000022280,0.0000022261, -0.0000022352,0.0000022499,0.0000022580,0.0000022591,0.0000022597, -0.0000022593,0.0000022545,0.0000022491,0.0000022497,0.0000022573, -0.0000022676,0.0000022723,0.0000022721,0.0000022747,0.0000022851, -0.0000022986,0.0000023067,0.0000023085,0.0000023035,0.0000022942, -0.0000022812,0.0000022656,0.0000022526,0.0000022442,0.0000022382, -0.0000022331,0.0000022282,0.0000022248,0.0000022229,0.0000022220, -0.0000022214,0.0000022220,0.0000022242,0.0000022256,0.0000022256, -0.0000022275,0.0000022314,0.0000022360,0.0000022397,0.0000022437, -0.0000022482,0.0000022540,0.0000022618,0.0000022698,0.0000022770, -0.0000022824,0.0000022868,0.0000022904,0.0000022939,0.0000022991, -0.0000023056,0.0000023107,0.0000023134,0.0000023126,0.0000023106, -0.0000023107,0.0000023113,0.0000023114,0.0000023127,0.0000023163, -0.0000023206,0.0000023236,0.0000023245,0.0000023223,0.0000023171, -0.0000023117,0.0000023051,0.0000022952,0.0000022840,0.0000022750, -0.0000022688,0.0000022638,0.0000022624,0.0000022639,0.0000022698, -0.0000022793,0.0000022931,0.0000023122,0.0000023238,0.0000023227, -0.0000023141,0.0000023120,0.0000023202,0.0000023347,0.0000023530, -0.0000023656,0.0000023682,0.0000023692,0.0000023740,0.0000023828, -0.0000023907,0.0000023965,0.0000023998,0.0000024032,0.0000024071, -0.0000024065,0.0000024039,0.0000024046,0.0000024083,0.0000024116, -0.0000024146,0.0000024198,0.0000024256,0.0000024284,0.0000024289, -0.0000024309,0.0000024342,0.0000024349,0.0000024334,0.0000024279, -0.0000024224,0.0000024225,0.0000024237,0.0000024216,0.0000024168, -0.0000024077,0.0000023953,0.0000023843,0.0000023758,0.0000023694, -0.0000023657,0.0000023629,0.0000023603,0.0000023605,0.0000023657, -0.0000023702,0.0000023732,0.0000023805,0.0000023874,0.0000023939, -0.0000023985,0.0000023977,0.0000024019,0.0000024120,0.0000024144, -0.0000024098,0.0000024057,0.0000024060,0.0000024063,0.0000024015, -0.0000023978,0.0000024128,0.0000024500,0.0000024868,0.0000025056, -0.0000025068,0.0000024918,0.0000024682,0.0000024474,0.0000024409, -0.0000024434,0.0000024461,0.0000024464,0.0000024469,0.0000024482, -0.0000024488,0.0000024471,0.0000024424,0.0000024326,0.0000024203, -0.0000024078,0.0000023977,0.0000023907,0.0000023876,0.0000023869, -0.0000023892,0.0000023924,0.0000023999,0.0000024088,0.0000024184, -0.0000024281,0.0000024368,0.0000024434,0.0000024470,0.0000024476, -0.0000024473,0.0000024443,0.0000024407,0.0000024371,0.0000024345, -0.0000024327,0.0000024313,0.0000024299,0.0000024291,0.0000024279, -0.0000024260,0.0000024236,0.0000024211,0.0000024185,0.0000024159, -0.0000024133,0.0000024106,0.0000024080,0.0000024060,0.0000024049, -0.0000024049,0.0000024061,0.0000024080,0.0000024101,0.0000024120, -0.0000024136,0.0000024145,0.0000024147,0.0000024143,0.0000024130, -0.0000024111,0.0000024098,0.0000024088,0.0000024080,0.0000024079, -0.0000024078,0.0000024083,0.0000024096,0.0000024098,0.0000024085, -0.0000024066,0.0000024049,0.0000024030,0.0000024013,0.0000024001, -0.0000023992,0.0000023986,0.0000023980,0.0000023971,0.0000023960, -0.0000023954,0.0000023955,0.0000023961,0.0000023967,0.0000023971, -0.0000023976,0.0000023982,0.0000023986,0.0000023988,0.0000023997, -0.0000024008,0.0000024017,0.0000024030,0.0000024045,0.0000024058, -0.0000024067,0.0000024076,0.0000024087,0.0000024100,0.0000024113, -0.0000024120,0.0000024123,0.0000024124,0.0000024128,0.0000024130, -0.0000024130,0.0000024127,0.0000024129,0.0000024140,0.0000024163, -0.0000024188,0.0000024212,0.0000024233,0.0000024245,0.0000024244, -0.0000024235,0.0000024224,0.0000024205,0.0000024173,0.0000024124, -0.0000024056,0.0000023967,0.0000023858,0.0000023726,0.0000023574, -0.0000023449,0.0000023374,0.0000023315,0.0000023230,0.0000023111, -0.0000022990,0.0000022872,0.0000022738,0.0000022573,0.0000022375, -0.0000022231,0.0000022210,0.0000022257,0.0000022300,0.0000022319, -0.0000022332,0.0000022332,0.0000022321,0.0000022328,0.0000022364, -0.0000022397,0.0000022388,0.0000022320,0.0000022223,0.0000022154, -0.0000022109,0.0000022024,0.0000021922,0.0000021905,0.0000022033, -0.0000022245,0.0000022387,0.0000022423,0.0000022412,0.0000022339, -0.0000022205,0.0000022093,0.0000022065,0.0000022054,0.0000021978, -0.0000021869,0.0000021805,0.0000021763,0.0000021780,0.0000021945, -0.0000022115,0.0000022095,0.0000021993,0.0000021981,0.0000022063, -0.0000022198,0.0000022348,0.0000022455,0.0000022500,0.0000022546, -0.0000022641,0.0000022735,0.0000022781,0.0000022859,0.0000023063, -0.0000023338,0.0000023533,0.0000023611,0.0000023666,0.0000023757, -0.0000023862,0.0000023965,0.0000024065,0.0000024143,0.0000024181, -0.0000024186,0.0000024182,0.0000024179,0.0000024171,0.0000024148, -0.0000024136,0.0000024150,0.0000024185,0.0000024222,0.0000024268, -0.0000024303,0.0000024291,0.0000024212,0.0000024084,0.0000023947, -0.0000023808,0.0000023655,0.0000023479,0.0000023281,0.0000023082, -0.0000022925,0.0000022849,0.0000022833,0.0000022833,0.0000022823, -0.0000022789,0.0000022729,0.0000022640,0.0000022536,0.0000022441, -0.0000022370,0.0000022314,0.0000022249,0.0000022159,0.0000022046, -0.0000021909,0.0000021753,0.0000021584,0.0000021424,0.0000021287, -0.0000021168,0.0000021065,0.0000020999,0.0000020982,0.0000021007, -0.0000021063,0.0000021136,0.0000021213,0.0000021276,0.0000021319, -0.0000021344,0.0000021357,0.0000021361,0.0000021361,0.0000021370, -0.0000021405,0.0000021478,0.0000021588,0.0000021712,0.0000021817, -0.0000021899,0.0000021986,0.0000022126,0.0000022323,0.0000022518, -0.0000022658,0.0000022755,0.0000022856,0.0000022975,0.0000023067, -0.0000023107,0.0000023126,0.0000023150,0.0000023153,0.0000023119, -0.0000023088,0.0000023093,0.0000023115,0.0000023153,0.0000023253, -0.0000023428,0.0000023613,0.0000023754,0.0000023877,0.0000024017, -0.0000024185,0.0000024366,0.0000024504,0.0000024565,0.0000024595, -0.0000024645,0.0000024746,0.0000024868,0.0000024922,0.0000024900, -0.0000024876,0.0000024895,0.0000024923,0.0000024913,0.0000024880, -0.0000024873,0.0000024900,0.0000024938,0.0000024956,0.0000024963, -0.0000024992,0.0000025051,0.0000025108,0.0000025128,0.0000025120, -0.0000025095,0.0000025077,0.0000025076,0.0000025092,0.0000025114, -0.0000025130,0.0000025140,0.0000025151,0.0000025163,0.0000025188, -0.0000025214,0.0000025243,0.0000025257,0.0000025225,0.0000025137, -0.0000025029,0.0000024926,0.0000024809,0.0000024656,0.0000024489, -0.0000024364,0.0000024293,0.0000024223,0.0000024104,0.0000023949, -0.0000023796,0.0000023694,0.0000023686,0.0000023735,0.0000023851, -0.0000023977,0.0000024029,0.0000024005,0.0000023985,0.0000024021, -0.0000024113,0.0000024233,0.0000024367,0.0000024490,0.0000024574, -0.0000024622,0.0000024666,0.0000024705,0.0000024725,0.0000024729, -0.0000024722,0.0000024705,0.0000024682,0.0000024663,0.0000024657, -0.0000024666,0.0000024694,0.0000024751,0.0000024853,0.0000024997, -0.0000025161,0.0000025315,0.0000025435,0.0000025512,0.0000025557, -0.0000025587,0.0000025611,0.0000025632,0.0000025649,0.0000025657, -0.0000025654,0.0000025646,0.0000025643,0.0000025646,0.0000025657, -0.0000025675,0.0000025700,0.0000025729,0.0000025755,0.0000025780, -0.0000025806,0.0000025827,0.0000025843,0.0000025866,0.0000025897, -0.0000025913,0.0000025898,0.0000025834,0.0000025746,0.0000025689, -0.0000025649,0.0000025558,0.0000025448,0.0000025373,0.0000025236, -0.0000024978,0.0000024762,0.0000024678,0.0000024615,0.0000024556, -0.0000024497,0.0000024263,0.0000023932,0.0000023757,0.0000023719, -0.0000023542,0.0000023138,0.0000022796,0.0000022667,0.0000022644, -0.0000022611,0.0000022503,0.0000022338,0.0000022187,0.0000022066, -0.0000021953,0.0000021853,0.0000021781,0.0000021733,0.0000021688, -0.0000021665,0.0000021697,0.0000021766,0.0000021836,0.0000021894, -0.0000021890,0.0000021843,0.0000021760,0.0000021672,0.0000021587, -0.0000021492,0.0000021398,0.0000021349,0.0000021319,0.0000021289, -0.0000021253,0.0000021206,0.0000021152,0.0000021110,0.0000021091, -0.0000021089,0.0000021088,0.0000021092,0.0000021102,0.0000021123, -0.0000021151,0.0000021176,0.0000021200,0.0000021219,0.0000021240, -0.0000021266,0.0000021294,0.0000021320,0.0000021342,0.0000021360, -0.0000021381,0.0000021410,0.0000021448,0.0000021502,0.0000021568, -0.0000021635,0.0000021698,0.0000021755,0.0000021808,0.0000021849, -0.0000021878,0.0000021896,0.0000021912,0.0000021941,0.0000021974, -0.0000022008,0.0000022047,0.0000022092,0.0000022142,0.0000022189, -0.0000022228,0.0000022254,0.0000022268,0.0000022273,0.0000022272, -0.0000022264,0.0000022248,0.0000022224,0.0000022200,0.0000022175, -0.0000022144,0.0000022107,0.0000022079,0.0000022069,0.0000022063, -0.0000022053,0.0000022019,0.0000021950,0.0000021870,0.0000021816, -0.0000021794,0.0000021785,0.0000021775,0.0000021765,0.0000021751, -0.0000021727,0.0000021690,0.0000021638,0.0000021584,0.0000021548, -0.0000021526,0.0000021513,0.0000021519,0.0000021542,0.0000021566, -0.0000021590,0.0000021622,0.0000021645,0.0000021668,0.0000021715, -0.0000021776,0.0000021832,0.0000021889,0.0000021954,0.0000022026, -0.0000022100,0.0000022183,0.0000022283,0.0000022387,0.0000022473, -0.0000022521,0.0000022546,0.0000022563,0.0000022559,0.0000022530, -0.0000022505,0.0000022464,0.0000022392,0.0000022336,0.0000022333, -0.0000022372,0.0000022431,0.0000022482,0.0000022515,0.0000022533, -0.0000022535,0.0000022528,0.0000022516,0.0000022505,0.0000022501, -0.0000022504,0.0000022510,0.0000022509,0.0000022501,0.0000022490, -0.0000022475,0.0000022452,0.0000022415,0.0000022374,0.0000022341, -0.0000022322,0.0000022315,0.0000022317,0.0000022321,0.0000022322, -0.0000022331,0.0000022350,0.0000022370,0.0000022393,0.0000022421, -0.0000022440,0.0000022442,0.0000022423,0.0000022382,0.0000022336, -0.0000022285,0.0000022201,0.0000022097,0.0000021991,0.0000021868, -0.0000021764,0.0000021734,0.0000021782,0.0000021897,0.0000021974, -0.0000021993,0.0000021991,0.0000021948,0.0000021890,0.0000021883, -0.0000021908,0.0000021903,0.0000021857,0.0000021824,0.0000021825, -0.0000021834,0.0000021837,0.0000021835,0.0000021835,0.0000021843, -0.0000021871,0.0000021917,0.0000021984,0.0000022068,0.0000022152, -0.0000022215,0.0000022261,0.0000022289,0.0000022294,0.0000022279, -0.0000022253,0.0000022221,0.0000022165,0.0000022076,0.0000021977, -0.0000021902,0.0000021872,0.0000021876,0.0000021904,0.0000021959, -0.0000022018,0.0000022062,0.0000022106,0.0000022143,0.0000022138, -0.0000022062,0.0000021911,0.0000021681,0.0000021442,0.0000021304, -0.0000021277,0.0000021290,0.0000021307,0.0000021299,0.0000021257, -0.0000021203,0.0000021165,0.0000021152,0.0000021156,0.0000021163, -0.0000021147,0.0000021107,0.0000021195,0.0000021519,0.0000021821, -0.0000021975,0.0000022100,0.0000022207,0.0000022276,0.0000022341, -0.0000022397,0.0000022433,0.0000022472,0.0000022523,0.0000022558, -0.0000022565,0.0000022558,0.0000022551,0.0000022551,0.0000022561, -0.0000022581,0.0000022612,0.0000022652,0.0000022694,0.0000022732, -0.0000022757,0.0000022769,0.0000022788,0.0000022835,0.0000022910, -0.0000022987,0.0000023044,0.0000023073,0.0000023067,0.0000023037, -0.0000023029,0.0000023055,0.0000023112,0.0000023164,0.0000023196, -0.0000023210,0.0000023213,0.0000023207,0.0000023197,0.0000023182, -0.0000023159,0.0000023131,0.0000023105,0.0000023085,0.0000023071, -0.0000023058,0.0000023036,0.0000022995,0.0000022933,0.0000022855, -0.0000022761,0.0000022663,0.0000022588,0.0000022512,0.0000022327, -0.0000022080,0.0000021722,0.0000021514,0.0000021515,0.0000021656, -0.0000021810,0.0000021864,0.0000021882,0.0000021955,0.0000022028, -0.0000021973,0.0000021777,0.0000021683,0.0000021792,0.0000021970, -0.0000022112,0.0000022332,0.0000022637,0.0000022839,0.0000022882, -0.0000022897,0.0000022943,0.0000022983,0.0000023003,0.0000023041, -0.0000023107,0.0000023156,0.0000023177,0.0000023200,0.0000023257, -0.0000023390,0.0000023542,0.0000023588,0.0000023510,0.0000023324, -0.0000023207,0.0000023190,0.0000023183,0.0000023152,0.0000023101, -0.0000023047,0.0000023028,0.0000023043,0.0000023074,0.0000023095, -0.0000023095,0.0000023089,0.0000023091,0.0000023112,0.0000023142, -0.0000023158,0.0000023141,0.0000023101,0.0000023052,0.0000023010, -0.0000022972,0.0000022943,0.0000022926,0.0000022920,0.0000022922, -0.0000022927,0.0000022927,0.0000022911,0.0000022887,0.0000022866, -0.0000022851,0.0000022842,0.0000022831,0.0000022808,0.0000022782, -0.0000022764,0.0000022769,0.0000022787,0.0000022793,0.0000022809, -0.0000022820,0.0000022817,0.0000022825,0.0000022872,0.0000022927, -0.0000022947,0.0000022945,0.0000022931,0.0000022897,0.0000022834, -0.0000022748,0.0000022662,0.0000022590,0.0000022539,0.0000022518, -0.0000022529,0.0000022555,0.0000022585,0.0000022625,0.0000022691, -0.0000022770,0.0000022843,0.0000022928,0.0000023027,0.0000023102, -0.0000023151,0.0000023202,0.0000023264,0.0000023345,0.0000023446, -0.0000023538,0.0000023592,0.0000023608,0.0000023607,0.0000023604, -0.0000023608,0.0000023613,0.0000023628,0.0000023655,0.0000023669, -0.0000023654,0.0000023614,0.0000023574,0.0000023545,0.0000023519, -0.0000023486,0.0000023457,0.0000023450,0.0000023463,0.0000023488, -0.0000023515,0.0000023544,0.0000023574,0.0000023611,0.0000023650, -0.0000023684,0.0000023719,0.0000023750,0.0000023776,0.0000023808, -0.0000023841,0.0000023879,0.0000023902,0.0000023902,0.0000023886, -0.0000023877,0.0000023875,0.0000023873,0.0000023867,0.0000023861, -0.0000023865,0.0000023881,0.0000023885,0.0000023845,0.0000023753, -0.0000023658,0.0000023607,0.0000023601,0.0000023597,0.0000023573, -0.0000023518,0.0000023427,0.0000023308,0.0000023192,0.0000023135, -0.0000023130,0.0000023144,0.0000023189,0.0000023285,0.0000023429, -0.0000023591,0.0000023726,0.0000023807,0.0000023834,0.0000023845, -0.0000023890,0.0000024009,0.0000024199,0.0000024420,0.0000024636, -0.0000024813,0.0000024942,0.0000025022,0.0000025065,0.0000025077, -0.0000025069,0.0000025045,0.0000025015,0.0000024988,0.0000024971, -0.0000024962,0.0000024956,0.0000024953,0.0000024938,0.0000024902, -0.0000024867,0.0000024854,0.0000024858,0.0000024875,0.0000024900, -0.0000024912,0.0000024903,0.0000024881,0.0000024818,0.0000024720, -0.0000024608,0.0000024504,0.0000024414,0.0000024333,0.0000024260, -0.0000024182,0.0000024096,0.0000024015,0.0000023953,0.0000023915, -0.0000023891,0.0000023870,0.0000023844,0.0000023810,0.0000023760, -0.0000023679,0.0000023579,0.0000023480,0.0000023407,0.0000023383, -0.0000023397,0.0000023444,0.0000023512,0.0000023578,0.0000023626, -0.0000023652,0.0000023667,0.0000023681,0.0000023692,0.0000023696, -0.0000023694,0.0000023688,0.0000023681,0.0000023675,0.0000023673, -0.0000023682,0.0000023689,0.0000023695,0.0000023701,0.0000023713, -0.0000023732,0.0000023748,0.0000023747,0.0000023730,0.0000023699, -0.0000023669,0.0000023656,0.0000023640,0.0000023651,0.0000023673, -0.0000023700,0.0000023718,0.0000023718,0.0000023705,0.0000023694, -0.0000023703,0.0000023739,0.0000023794,0.0000023858,0.0000023918, -0.0000023969,0.0000024008,0.0000024032,0.0000024038,0.0000024028, -0.0000024007,0.0000023974,0.0000023941,0.0000023920,0.0000023916, -0.0000023920,0.0000023919,0.0000023915,0.0000023905,0.0000023889, -0.0000023864,0.0000023834,0.0000023801,0.0000023770,0.0000023742, -0.0000023715,0.0000023686,0.0000023654,0.0000023628,0.0000023608, -0.0000023592,0.0000023575,0.0000023559,0.0000023557,0.0000023574, -0.0000023608,0.0000023647,0.0000023680,0.0000023707,0.0000023730, -0.0000023760,0.0000023803,0.0000023862,0.0000023940,0.0000024035, -0.0000024135,0.0000024230,0.0000024311,0.0000024371,0.0000024410, -0.0000024434,0.0000024443,0.0000024434,0.0000024416,0.0000024414, -0.0000024438,0.0000024478,0.0000024528,0.0000024585,0.0000024636, -0.0000024652,0.0000024632,0.0000024579,0.0000024510,0.0000024434, -0.0000024344,0.0000024228,0.0000024099,0.0000023972,0.0000023880, -0.0000023837,0.0000023810,0.0000023814,0.0000023834,0.0000023850, -0.0000023863,0.0000023875,0.0000023887,0.0000023891,0.0000023890, -0.0000023895,0.0000023919,0.0000023947,0.0000023979,0.0000024012, -0.0000024054,0.0000024135,0.0000024262,0.0000024381,0.0000024434, -0.0000024434,0.0000024432,0.0000024425,0.0000024366,0.0000024271, -0.0000024184,0.0000024074,0.0000023906,0.0000023792,0.0000023768, -0.0000023746,0.0000023709,0.0000023694,0.0000023675,0.0000023595, -0.0000023462,0.0000023358,0.0000023316,0.0000023308,0.0000023318, -0.0000023326,0.0000023319,0.0000023302,0.0000023277,0.0000023251, -0.0000023235,0.0000023245,0.0000023272,0.0000023314,0.0000023341, -0.0000023344,0.0000023336,0.0000023337,0.0000023346,0.0000023329, -0.0000023273,0.0000023173,0.0000023058,0.0000022965,0.0000022881, -0.0000022802,0.0000022721,0.0000022649,0.0000022604,0.0000022583, -0.0000022588,0.0000022611,0.0000022646,0.0000022707,0.0000022844, -0.0000023069,0.0000023208,0.0000023198,0.0000023176,0.0000023176, -0.0000023202,0.0000023203,0.0000023190,0.0000023242,0.0000023280, -0.0000023272,0.0000023241,0.0000023280,0.0000023458,0.0000023641, -0.0000023744,0.0000023783,0.0000023749,0.0000023657,0.0000023542, -0.0000023426,0.0000023296,0.0000023144,0.0000022998,0.0000022930, -0.0000022930,0.0000023038,0.0000023185,0.0000023311,0.0000023411, -0.0000023486,0.0000023539,0.0000023586,0.0000023642,0.0000023665, -0.0000023652,0.0000023602,0.0000023548,0.0000023493,0.0000023404, -0.0000023271,0.0000023111,0.0000022994,0.0000022952,0.0000022939, -0.0000022931,0.0000022930,0.0000022896,0.0000022809,0.0000022723, -0.0000022696,0.0000022735,0.0000022812,0.0000022858,0.0000022888, -0.0000022922,0.0000022932,0.0000022919,0.0000022911,0.0000022913, -0.0000022910,0.0000022894,0.0000022867,0.0000022840,0.0000022817, -0.0000022804,0.0000022801,0.0000022788,0.0000022751,0.0000022685, -0.0000022586,0.0000022479,0.0000022411,0.0000022393,0.0000022390, -0.0000022395,0.0000022429,0.0000022491,0.0000022545,0.0000022569, -0.0000022569,0.0000022542,0.0000022470,0.0000022371,0.0000022302, -0.0000022308,0.0000022418,0.0000022533,0.0000022575,0.0000022587, -0.0000022602,0.0000022585,0.0000022534,0.0000022510,0.0000022542, -0.0000022642,0.0000022732,0.0000022761,0.0000022769,0.0000022828, -0.0000022925,0.0000023011,0.0000023046,0.0000023042,0.0000022974, -0.0000022851,0.0000022695,0.0000022540,0.0000022451,0.0000022420, -0.0000022399,0.0000022356,0.0000022304,0.0000022258,0.0000022225, -0.0000022199,0.0000022179,0.0000022177,0.0000022200,0.0000022229, -0.0000022251,0.0000022285,0.0000022345,0.0000022393,0.0000022424, -0.0000022465,0.0000022526,0.0000022606,0.0000022699,0.0000022780, -0.0000022846,0.0000022902,0.0000022948,0.0000022986,0.0000023009, -0.0000023038,0.0000023080,0.0000023117,0.0000023140,0.0000023140, -0.0000023125,0.0000023124,0.0000023132,0.0000023129,0.0000023135, -0.0000023166,0.0000023215,0.0000023257,0.0000023274,0.0000023265, -0.0000023219,0.0000023160,0.0000023103,0.0000023027,0.0000022915, -0.0000022804,0.0000022718,0.0000022659,0.0000022627,0.0000022633, -0.0000022677,0.0000022757,0.0000022858,0.0000023017,0.0000023181, -0.0000023226,0.0000023190,0.0000023108,0.0000023094,0.0000023184, -0.0000023347,0.0000023541,0.0000023663,0.0000023685,0.0000023687, -0.0000023717,0.0000023791,0.0000023861,0.0000023906,0.0000023926, -0.0000023959,0.0000024020,0.0000024056,0.0000024064,0.0000024081, -0.0000024106,0.0000024128,0.0000024167,0.0000024234,0.0000024276, -0.0000024271,0.0000024267,0.0000024300,0.0000024332,0.0000024331, -0.0000024301,0.0000024230,0.0000024192,0.0000024212,0.0000024221, -0.0000024198,0.0000024152,0.0000024054,0.0000023929,0.0000023825, -0.0000023745,0.0000023689,0.0000023667,0.0000023651,0.0000023629, -0.0000023640,0.0000023685,0.0000023721,0.0000023741,0.0000023799, -0.0000023867,0.0000023921,0.0000023966,0.0000023966,0.0000023980, -0.0000024062,0.0000024110,0.0000024078,0.0000024028,0.0000024019, -0.0000024026,0.0000024013,0.0000023952,0.0000023908,0.0000024014, -0.0000024322,0.0000024645,0.0000024817,0.0000024837,0.0000024744, -0.0000024604,0.0000024504,0.0000024490,0.0000024513,0.0000024514, -0.0000024486,0.0000024460,0.0000024455,0.0000024459,0.0000024457, -0.0000024439,0.0000024404,0.0000024335,0.0000024253,0.0000024168, -0.0000024082,0.0000024004,0.0000023933,0.0000023882,0.0000023872, -0.0000023896,0.0000023959,0.0000024051,0.0000024160,0.0000024272, -0.0000024371,0.0000024445,0.0000024487,0.0000024494,0.0000024489, -0.0000024458,0.0000024420,0.0000024381,0.0000024340,0.0000024302, -0.0000024273,0.0000024251,0.0000024214,0.0000024182,0.0000024148, -0.0000024114,0.0000024085,0.0000024061,0.0000024040,0.0000024022, -0.0000024006,0.0000023995,0.0000023992,0.0000023999,0.0000024014, -0.0000024031,0.0000024047,0.0000024057,0.0000024061,0.0000024060, -0.0000024055,0.0000024049,0.0000024042,0.0000024034,0.0000024023, -0.0000024016,0.0000024017,0.0000024026,0.0000024039,0.0000024056, -0.0000024072,0.0000024078,0.0000024079,0.0000024083,0.0000024081, -0.0000024068,0.0000024062,0.0000024065,0.0000024068,0.0000024068, -0.0000024062,0.0000024048,0.0000024034,0.0000024026,0.0000024022, -0.0000024018,0.0000024011,0.0000024002,0.0000023999,0.0000023997, -0.0000023991,0.0000023991,0.0000023997,0.0000024002,0.0000024013, -0.0000024029,0.0000024047,0.0000024062,0.0000024076,0.0000024089, -0.0000024101,0.0000024114,0.0000024119,0.0000024117,0.0000024112, -0.0000024108,0.0000024101,0.0000024088,0.0000024075,0.0000024069, -0.0000024073,0.0000024092,0.0000024119,0.0000024146,0.0000024173, -0.0000024196,0.0000024205,0.0000024203,0.0000024197,0.0000024190, -0.0000024173,0.0000024141,0.0000024106,0.0000024048,0.0000023955, -0.0000023831,0.0000023689,0.0000023531,0.0000023402,0.0000023323, -0.0000023248,0.0000023127,0.0000022989,0.0000022890,0.0000022801, -0.0000022656,0.0000022461,0.0000022294,0.0000022242,0.0000022264, -0.0000022305,0.0000022323,0.0000022329,0.0000022333,0.0000022327, -0.0000022326,0.0000022348,0.0000022378,0.0000022377,0.0000022329, -0.0000022253,0.0000022186,0.0000022120,0.0000022012,0.0000021904, -0.0000021907,0.0000022071,0.0000022303,0.0000022436,0.0000022455, -0.0000022441,0.0000022409,0.0000022333,0.0000022199,0.0000022087, -0.0000022065,0.0000022066,0.0000021993,0.0000021876,0.0000021800, -0.0000021748,0.0000021747,0.0000021896,0.0000022078,0.0000022073, -0.0000021980,0.0000021953,0.0000022010,0.0000022142,0.0000022313, -0.0000022449,0.0000022503,0.0000022532,0.0000022611,0.0000022720, -0.0000022798,0.0000022871,0.0000023028,0.0000023282,0.0000023523, -0.0000023647,0.0000023698,0.0000023759,0.0000023854,0.0000023970, -0.0000024082,0.0000024158,0.0000024191,0.0000024195,0.0000024191, -0.0000024187,0.0000024172,0.0000024140,0.0000024120,0.0000024126, -0.0000024148,0.0000024179,0.0000024208,0.0000024213,0.0000024162, -0.0000024041,0.0000023894,0.0000023756,0.0000023620,0.0000023466, -0.0000023293,0.0000023115,0.0000022951,0.0000022833,0.0000022780, -0.0000022766,0.0000022747,0.0000022700,0.0000022632,0.0000022558, -0.0000022482,0.0000022404,0.0000022332,0.0000022270,0.0000022205, -0.0000022120,0.0000022011,0.0000021888,0.0000021748,0.0000021590, -0.0000021417,0.0000021245,0.0000021090,0.0000020955,0.0000020856, -0.0000020808,0.0000020806,0.0000020835,0.0000020896,0.0000020982, -0.0000021069,0.0000021140,0.0000021192,0.0000021225,0.0000021237, -0.0000021233,0.0000021212,0.0000021191,0.0000021194,0.0000021239, -0.0000021337,0.0000021483,0.0000021647,0.0000021787,0.0000021887, -0.0000021984,0.0000022126,0.0000022311,0.0000022481,0.0000022594, -0.0000022677,0.0000022789,0.0000022928,0.0000023032,0.0000023075, -0.0000023095,0.0000023098,0.0000023061,0.0000023004,0.0000022990, -0.0000023019,0.0000023052,0.0000023115,0.0000023266,0.0000023471, -0.0000023637,0.0000023759,0.0000023895,0.0000024058,0.0000024231, -0.0000024390,0.0000024495,0.0000024548,0.0000024597,0.0000024687, -0.0000024822,0.0000024923,0.0000024934,0.0000024901,0.0000024893, -0.0000024907,0.0000024904,0.0000024869,0.0000024848,0.0000024859, -0.0000024896,0.0000024928,0.0000024943,0.0000024960,0.0000025001, -0.0000025053,0.0000025081,0.0000025074,0.0000025044,0.0000025019, -0.0000025014,0.0000025027,0.0000025047,0.0000025059,0.0000025069, -0.0000025081,0.0000025098,0.0000025131,0.0000025166,0.0000025189, -0.0000025172,0.0000025083,0.0000024961,0.0000024858,0.0000024751, -0.0000024598,0.0000024428,0.0000024306,0.0000024237,0.0000024166, -0.0000024056,0.0000023921,0.0000023791,0.0000023690,0.0000023663, -0.0000023712,0.0000023806,0.0000023907,0.0000023983,0.0000023996, -0.0000023968,0.0000023967,0.0000024023,0.0000024110,0.0000024201, -0.0000024293,0.0000024380,0.0000024454,0.0000024510,0.0000024553, -0.0000024579,0.0000024582,0.0000024568,0.0000024541,0.0000024511, -0.0000024484,0.0000024465,0.0000024458,0.0000024456,0.0000024460, -0.0000024484,0.0000024544,0.0000024649,0.0000024799,0.0000024982, -0.0000025173,0.0000025337,0.0000025449,0.0000025507,0.0000025535, -0.0000025556,0.0000025584,0.0000025612,0.0000025630,0.0000025638, -0.0000025640,0.0000025643,0.0000025649,0.0000025659,0.0000025675, -0.0000025697,0.0000025721,0.0000025744,0.0000025769,0.0000025790, -0.0000025806,0.0000025829,0.0000025864,0.0000025885,0.0000025871, -0.0000025807,0.0000025718,0.0000025661,0.0000025628,0.0000025547, -0.0000025443,0.0000025380,0.0000025274,0.0000025042,0.0000024817, -0.0000024726,0.0000024680,0.0000024607,0.0000024569,0.0000024445, -0.0000024126,0.0000023839,0.0000023744,0.0000023695,0.0000023442, -0.0000023039,0.0000022766,0.0000022681,0.0000022657,0.0000022594, -0.0000022454,0.0000022274,0.0000022115,0.0000021991,0.0000021881, -0.0000021789,0.0000021728,0.0000021686,0.0000021666,0.0000021678, -0.0000021717,0.0000021786,0.0000021887,0.0000021957,0.0000021958, -0.0000021893,0.0000021792,0.0000021700,0.0000021613,0.0000021510, -0.0000021432,0.0000021373,0.0000021324,0.0000021279,0.0000021234, -0.0000021189,0.0000021149,0.0000021119,0.0000021102,0.0000021099, -0.0000021103,0.0000021114,0.0000021127,0.0000021141,0.0000021160, -0.0000021171,0.0000021179,0.0000021178,0.0000021177,0.0000021179, -0.0000021187,0.0000021203,0.0000021225,0.0000021258,0.0000021295, -0.0000021325,0.0000021356,0.0000021397,0.0000021441,0.0000021487, -0.0000021539,0.0000021596,0.0000021652,0.0000021702,0.0000021738, -0.0000021767,0.0000021805,0.0000021852,0.0000021904,0.0000021961, -0.0000022020,0.0000022075,0.0000022127,0.0000022171,0.0000022199, -0.0000022213,0.0000022221,0.0000022218,0.0000022205,0.0000022184, -0.0000022155,0.0000022117,0.0000022080,0.0000022045,0.0000022009, -0.0000021982,0.0000021978,0.0000021978,0.0000021978,0.0000021964, -0.0000021918,0.0000021843,0.0000021779,0.0000021748,0.0000021737, -0.0000021729,0.0000021721,0.0000021712,0.0000021697,0.0000021675, -0.0000021638,0.0000021588,0.0000021547,0.0000021525,0.0000021508, -0.0000021506,0.0000021520,0.0000021539,0.0000021555,0.0000021581, -0.0000021610,0.0000021635,0.0000021674,0.0000021727,0.0000021781, -0.0000021829,0.0000021872,0.0000021917,0.0000021973,0.0000022040, -0.0000022118,0.0000022219,0.0000022340,0.0000022442,0.0000022498, -0.0000022533,0.0000022559,0.0000022556,0.0000022535,0.0000022514, -0.0000022478,0.0000022423,0.0000022373,0.0000022357,0.0000022381, -0.0000022420,0.0000022466,0.0000022501,0.0000022522,0.0000022525, -0.0000022517,0.0000022503,0.0000022488,0.0000022480,0.0000022478, -0.0000022480,0.0000022482,0.0000022481,0.0000022476,0.0000022467, -0.0000022451,0.0000022431,0.0000022407,0.0000022381,0.0000022361, -0.0000022350,0.0000022342,0.0000022334,0.0000022328,0.0000022329, -0.0000022340,0.0000022363,0.0000022392,0.0000022411,0.0000022413, -0.0000022408,0.0000022384,0.0000022340,0.0000022294,0.0000022231, -0.0000022148,0.0000022066,0.0000021959,0.0000021819,0.0000021721, -0.0000021710,0.0000021794,0.0000021903,0.0000021955,0.0000021962, -0.0000021940,0.0000021870,0.0000021831,0.0000021853,0.0000021865, -0.0000021820,0.0000021754,0.0000021735,0.0000021748,0.0000021770, -0.0000021783,0.0000021790,0.0000021795,0.0000021807,0.0000021833, -0.0000021876,0.0000021944,0.0000022035,0.0000022129,0.0000022207, -0.0000022266,0.0000022300,0.0000022308,0.0000022298,0.0000022279, -0.0000022253,0.0000022206,0.0000022128,0.0000022035,0.0000021950, -0.0000021898,0.0000021882,0.0000021889,0.0000021921,0.0000021978, -0.0000022035,0.0000022091,0.0000022149,0.0000022167,0.0000022122, -0.0000022001,0.0000021815,0.0000021567,0.0000021357,0.0000021277, -0.0000021281,0.0000021300,0.0000021299,0.0000021260,0.0000021205, -0.0000021166,0.0000021150,0.0000021144,0.0000021143,0.0000021144, -0.0000021094,0.0000021083,0.0000021322,0.0000021674,0.0000021891, -0.0000022024,0.0000022152,0.0000022248,0.0000022320,0.0000022381, -0.0000022426,0.0000022474,0.0000022533,0.0000022574,0.0000022582, -0.0000022577,0.0000022564,0.0000022558,0.0000022562,0.0000022574, -0.0000022596,0.0000022630,0.0000022669,0.0000022704,0.0000022731, -0.0000022754,0.0000022785,0.0000022832,0.0000022893,0.0000022949, -0.0000022995,0.0000023026,0.0000023029,0.0000022998,0.0000022969, -0.0000022975,0.0000023023,0.0000023090,0.0000023142,0.0000023163, -0.0000023165,0.0000023159,0.0000023152,0.0000023139,0.0000023117, -0.0000023093,0.0000023073,0.0000023055,0.0000023039,0.0000023027, -0.0000023012,0.0000022982,0.0000022933,0.0000022865,0.0000022776, -0.0000022674,0.0000022593,0.0000022534,0.0000022389,0.0000022090, -0.0000021733,0.0000021526,0.0000021526,0.0000021670,0.0000021828, -0.0000021884,0.0000021896,0.0000021950,0.0000022027,0.0000022010, -0.0000021832,0.0000021680,0.0000021742,0.0000021927,0.0000022093, -0.0000022331,0.0000022653,0.0000022858,0.0000022897,0.0000022909, -0.0000022941,0.0000022970,0.0000023000,0.0000023060,0.0000023129, -0.0000023163,0.0000023173,0.0000023198,0.0000023279,0.0000023430, -0.0000023568,0.0000023599,0.0000023511,0.0000023350,0.0000023256, -0.0000023241,0.0000023231,0.0000023196,0.0000023139,0.0000023079, -0.0000023048,0.0000023046,0.0000023057,0.0000023057,0.0000023060, -0.0000023083,0.0000023122,0.0000023159,0.0000023185,0.0000023181, -0.0000023143,0.0000023086,0.0000023026,0.0000022970,0.0000022920, -0.0000022883,0.0000022861,0.0000022857,0.0000022869,0.0000022890, -0.0000022906,0.0000022906,0.0000022897,0.0000022882,0.0000022866, -0.0000022854,0.0000022843,0.0000022825,0.0000022799,0.0000022782, -0.0000022781,0.0000022792,0.0000022797,0.0000022809,0.0000022814, -0.0000022808,0.0000022817,0.0000022862,0.0000022925,0.0000022962, -0.0000022976,0.0000022976,0.0000022957,0.0000022917,0.0000022854, -0.0000022769,0.0000022674,0.0000022600,0.0000022553,0.0000022544, -0.0000022557,0.0000022574,0.0000022603,0.0000022647,0.0000022692, -0.0000022720,0.0000022755,0.0000022835,0.0000022943,0.0000023041, -0.0000023120,0.0000023176,0.0000023214,0.0000023276,0.0000023369, -0.0000023469,0.0000023544,0.0000023585,0.0000023599,0.0000023601, -0.0000023604,0.0000023612,0.0000023636,0.0000023665,0.0000023679, -0.0000023671,0.0000023639,0.0000023601,0.0000023567,0.0000023532, -0.0000023496,0.0000023477,0.0000023485,0.0000023505,0.0000023522, -0.0000023541,0.0000023561,0.0000023585,0.0000023615,0.0000023645, -0.0000023676,0.0000023710,0.0000023740,0.0000023776,0.0000023817, -0.0000023866,0.0000023911,0.0000023941,0.0000023941,0.0000023911, -0.0000023874,0.0000023851,0.0000023844,0.0000023841,0.0000023837, -0.0000023845,0.0000023865,0.0000023870,0.0000023834,0.0000023736, -0.0000023629,0.0000023572,0.0000023559,0.0000023554,0.0000023530, -0.0000023475,0.0000023382,0.0000023260,0.0000023150,0.0000023111, -0.0000023120,0.0000023154,0.0000023201,0.0000023261,0.0000023348, -0.0000023468,0.0000023600,0.0000023698,0.0000023737,0.0000023733, -0.0000023737,0.0000023806,0.0000023969,0.0000024201,0.0000024455, -0.0000024680,0.0000024845,0.0000024945,0.0000025002,0.0000025035, -0.0000025046,0.0000025029,0.0000024998,0.0000024966,0.0000024947, -0.0000024944,0.0000024954,0.0000024970,0.0000024980,0.0000024969, -0.0000024946,0.0000024923,0.0000024901,0.0000024886,0.0000024881, -0.0000024881,0.0000024880,0.0000024869,0.0000024833,0.0000024767, -0.0000024677,0.0000024575,0.0000024473,0.0000024381,0.0000024313, -0.0000024251,0.0000024175,0.0000024086,0.0000024005,0.0000023952, -0.0000023928,0.0000023917,0.0000023907,0.0000023898,0.0000023880, -0.0000023845,0.0000023795,0.0000023723,0.0000023636,0.0000023553, -0.0000023485,0.0000023446,0.0000023443,0.0000023469,0.0000023510, -0.0000023550,0.0000023586,0.0000023620,0.0000023645,0.0000023655, -0.0000023651,0.0000023640,0.0000023632,0.0000023632,0.0000023644, -0.0000023663,0.0000023683,0.0000023702,0.0000023713,0.0000023728, -0.0000023746,0.0000023764,0.0000023775,0.0000023777,0.0000023764, -0.0000023738,0.0000023697,0.0000023652,0.0000023623,0.0000023591, -0.0000023589,0.0000023592,0.0000023597,0.0000023597,0.0000023594, -0.0000023597,0.0000023615,0.0000023653,0.0000023714,0.0000023786, -0.0000023856,0.0000023916,0.0000023962,0.0000023991,0.0000024003, -0.0000023996,0.0000023973,0.0000023941,0.0000023912,0.0000023895, -0.0000023882,0.0000023865,0.0000023845,0.0000023824,0.0000023796, -0.0000023756,0.0000023707,0.0000023655,0.0000023607,0.0000023568, -0.0000023536,0.0000023503,0.0000023471,0.0000023444,0.0000023414, -0.0000023384,0.0000023358,0.0000023338,0.0000023335,0.0000023349, -0.0000023381,0.0000023423,0.0000023469,0.0000023506,0.0000023525, -0.0000023529,0.0000023532,0.0000023549,0.0000023598,0.0000023676, -0.0000023768,0.0000023863,0.0000023954,0.0000024036,0.0000024104, -0.0000024167,0.0000024221,0.0000024272,0.0000024330,0.0000024391, -0.0000024436,0.0000024493,0.0000024542,0.0000024586,0.0000024629, -0.0000024670,0.0000024699,0.0000024708,0.0000024684,0.0000024631, -0.0000024547,0.0000024443,0.0000024328,0.0000024203,0.0000024076, -0.0000023961,0.0000023882,0.0000023844,0.0000023844,0.0000023852, -0.0000023867,0.0000023887,0.0000023915,0.0000023947,0.0000023974, -0.0000023997,0.0000024021,0.0000024038,0.0000024051,0.0000024083, -0.0000024156,0.0000024266,0.0000024370,0.0000024433,0.0000024460, -0.0000024474,0.0000024494,0.0000024503,0.0000024464,0.0000024371, -0.0000024257,0.0000024146,0.0000023995,0.0000023843,0.0000023794, -0.0000023779,0.0000023734,0.0000023688,0.0000023673,0.0000023642, -0.0000023500,0.0000023292,0.0000023146,0.0000023097,0.0000023099, -0.0000023127,0.0000023147,0.0000023156,0.0000023163,0.0000023171, -0.0000023195,0.0000023248,0.0000023305,0.0000023347,0.0000023339, -0.0000023315,0.0000023324,0.0000023353,0.0000023365,0.0000023327, -0.0000023240,0.0000023141,0.0000023047,0.0000022967,0.0000022889, -0.0000022800,0.0000022713,0.0000022641,0.0000022593,0.0000022572, -0.0000022585,0.0000022616,0.0000022642,0.0000022666,0.0000022705, -0.0000022806,0.0000023009,0.0000023162,0.0000023171,0.0000023151, -0.0000023153,0.0000023170,0.0000023177,0.0000023171,0.0000023219, -0.0000023271,0.0000023279,0.0000023281,0.0000023344,0.0000023488, -0.0000023654,0.0000023770,0.0000023815,0.0000023805,0.0000023755, -0.0000023673,0.0000023562,0.0000023412,0.0000023214,0.0000023010, -0.0000022871,0.0000022853,0.0000022965,0.0000023142,0.0000023284, -0.0000023358,0.0000023400,0.0000023448,0.0000023517,0.0000023584, -0.0000023614,0.0000023600,0.0000023551,0.0000023470,0.0000023352, -0.0000023193,0.0000023057,0.0000022991,0.0000022964,0.0000022942, -0.0000022903,0.0000022861,0.0000022776,0.0000022689,0.0000022674, -0.0000022719,0.0000022797,0.0000022861,0.0000022894,0.0000022932, -0.0000022956,0.0000022935,0.0000022902,0.0000022900,0.0000022916, -0.0000022924,0.0000022913,0.0000022884,0.0000022849,0.0000022813, -0.0000022782,0.0000022767,0.0000022757,0.0000022733,0.0000022670, -0.0000022569,0.0000022469,0.0000022417,0.0000022397,0.0000022372, -0.0000022353,0.0000022392,0.0000022466,0.0000022528,0.0000022568, -0.0000022584,0.0000022565,0.0000022482,0.0000022375,0.0000022329, -0.0000022351,0.0000022474,0.0000022575,0.0000022586,0.0000022588, -0.0000022610,0.0000022577,0.0000022533,0.0000022545,0.0000022630, -0.0000022733,0.0000022792,0.0000022810,0.0000022848,0.0000022928, -0.0000022998,0.0000023021,0.0000023026,0.0000022987,0.0000022888, -0.0000022736,0.0000022563,0.0000022429,0.0000022388,0.0000022419, -0.0000022416,0.0000022383,0.0000022330,0.0000022276,0.0000022226, -0.0000022185,0.0000022154,0.0000022147,0.0000022175,0.0000022216, -0.0000022255,0.0000022301,0.0000022360,0.0000022406,0.0000022442, -0.0000022500,0.0000022589,0.0000022691,0.0000022787,0.0000022864, -0.0000022918,0.0000022966,0.0000023011,0.0000023042,0.0000023055, -0.0000023062,0.0000023086,0.0000023115,0.0000023141,0.0000023152, -0.0000023150,0.0000023152,0.0000023160,0.0000023160,0.0000023157, -0.0000023175,0.0000023225,0.0000023276,0.0000023307,0.0000023308, -0.0000023273,0.0000023211,0.0000023144,0.0000023078,0.0000022990, -0.0000022874,0.0000022766,0.0000022682,0.0000022640,0.0000022633, -0.0000022666,0.0000022732,0.0000022812,0.0000022922,0.0000023081, -0.0000023193,0.0000023199,0.0000023150,0.0000023076,0.0000023064, -0.0000023171,0.0000023346,0.0000023537,0.0000023663,0.0000023690, -0.0000023684,0.0000023702,0.0000023760,0.0000023811,0.0000023839, -0.0000023859,0.0000023893,0.0000023960,0.0000024029,0.0000024069, -0.0000024095,0.0000024114,0.0000024134,0.0000024187,0.0000024257, -0.0000024280,0.0000024263,0.0000024263,0.0000024300,0.0000024322, -0.0000024318,0.0000024271,0.0000024196,0.0000024182,0.0000024209, -0.0000024209,0.0000024187,0.0000024138,0.0000024028,0.0000023909, -0.0000023812,0.0000023735,0.0000023696,0.0000023687,0.0000023676, -0.0000023662,0.0000023679,0.0000023717,0.0000023739,0.0000023746, -0.0000023787,0.0000023856,0.0000023902,0.0000023944,0.0000023955, -0.0000023955,0.0000024014,0.0000024075,0.0000024065,0.0000024014, -0.0000023986,0.0000023986,0.0000023983,0.0000023950,0.0000023879, -0.0000023833,0.0000023901,0.0000024138,0.0000024410,0.0000024583, -0.0000024644,0.0000024632,0.0000024580,0.0000024557,0.0000024563, -0.0000024572,0.0000024560,0.0000024514,0.0000024468,0.0000024439, -0.0000024432,0.0000024431,0.0000024415,0.0000024379,0.0000024345, -0.0000024319,0.0000024296,0.0000024247,0.0000024172,0.0000024086, -0.0000024000,0.0000023926,0.0000023894,0.0000023895,0.0000023937, -0.0000024032,0.0000024142,0.0000024253,0.0000024349,0.0000024423, -0.0000024467,0.0000024481,0.0000024475,0.0000024457,0.0000024418, -0.0000024368,0.0000024318,0.0000024268,0.0000024218,0.0000024173, -0.0000024125,0.0000024082,0.0000024041,0.0000023998,0.0000023965, -0.0000023935,0.0000023911,0.0000023896,0.0000023889,0.0000023897, -0.0000023916,0.0000023938,0.0000023961,0.0000023983,0.0000023997, -0.0000024001,0.0000023996,0.0000023986,0.0000023974,0.0000023960, -0.0000023943,0.0000023924,0.0000023912,0.0000023914,0.0000023924, -0.0000023939,0.0000023957,0.0000023976,0.0000023994,0.0000024007, -0.0000024015,0.0000024021,0.0000024029,0.0000024038,0.0000024047, -0.0000024053,0.0000024055,0.0000024050,0.0000024041,0.0000024033, -0.0000024026,0.0000024019,0.0000024009,0.0000023998,0.0000023990, -0.0000023982,0.0000023972,0.0000023966,0.0000023962,0.0000023960, -0.0000023964,0.0000023975,0.0000023991,0.0000024007,0.0000024021, -0.0000024034,0.0000024045,0.0000024053,0.0000024057,0.0000024054, -0.0000024047,0.0000024038,0.0000024026,0.0000024012,0.0000023999, -0.0000023991,0.0000023992,0.0000024008,0.0000024035,0.0000024062, -0.0000024088,0.0000024117,0.0000024140,0.0000024146,0.0000024147, -0.0000024149,0.0000024143,0.0000024125,0.0000024108,0.0000024087, -0.0000024034,0.0000023928,0.0000023792,0.0000023640,0.0000023477, -0.0000023347,0.0000023267,0.0000023167,0.0000023016,0.0000022895, -0.0000022833,0.0000022730,0.0000022549,0.0000022373,0.0000022292, -0.0000022297,0.0000022328,0.0000022340,0.0000022334,0.0000022326, -0.0000022319,0.0000022316,0.0000022326,0.0000022347,0.0000022355, -0.0000022331,0.0000022278,0.0000022213,0.0000022128,0.0000022010, -0.0000021908,0.0000021933,0.0000022127,0.0000022360,0.0000022472, -0.0000022475,0.0000022446,0.0000022415,0.0000022377,0.0000022301, -0.0000022177,0.0000022076,0.0000022063,0.0000022074,0.0000022012, -0.0000021891,0.0000021799,0.0000021725,0.0000021706,0.0000021846, -0.0000022031,0.0000022042,0.0000021951,0.0000021918,0.0000021964, -0.0000022088,0.0000022272,0.0000022436,0.0000022505,0.0000022522, -0.0000022588,0.0000022709,0.0000022816,0.0000022893,0.0000023004, -0.0000023214,0.0000023477,0.0000023658,0.0000023723,0.0000023754, -0.0000023822,0.0000023931,0.0000024044,0.0000024129,0.0000024171, -0.0000024177,0.0000024172,0.0000024160,0.0000024128,0.0000024080, -0.0000024049,0.0000024051,0.0000024068,0.0000024085,0.0000024092, -0.0000024078,0.0000023994,0.0000023853,0.0000023706,0.0000023572, -0.0000023433,0.0000023282,0.0000023133,0.0000022991,0.0000022859, -0.0000022754,0.0000022693,0.0000022651,0.0000022592,0.0000022517, -0.0000022450,0.0000022396,0.0000022335,0.0000022258,0.0000022181, -0.0000022113,0.0000022038,0.0000021941,0.0000021828,0.0000021701, -0.0000021557,0.0000021390,0.0000021205,0.0000021025,0.0000020876, -0.0000020770,0.0000020716,0.0000020705,0.0000020722,0.0000020756, -0.0000020814,0.0000020895,0.0000020977,0.0000021050,0.0000021112, -0.0000021153,0.0000021169,0.0000021163,0.0000021134,0.0000021091, -0.0000021057,0.0000021057,0.0000021108,0.0000021233,0.0000021414, -0.0000021606,0.0000021760,0.0000021874,0.0000021983,0.0000022124, -0.0000022287,0.0000022427,0.0000022518,0.0000022604,0.0000022744, -0.0000022909,0.0000023022,0.0000023067,0.0000023074,0.0000023035, -0.0000022952,0.0000022905,0.0000022922,0.0000022963,0.0000023012, -0.0000023122,0.0000023319,0.0000023518,0.0000023657,0.0000023788, -0.0000023947,0.0000024110,0.0000024269,0.0000024405,0.0000024498, -0.0000024563,0.0000024641,0.0000024769,0.0000024906,0.0000024962, -0.0000024934,0.0000024902,0.0000024900,0.0000024904,0.0000024882, -0.0000024851,0.0000024851,0.0000024872,0.0000024906,0.0000024929, -0.0000024943,0.0000024969,0.0000025016,0.0000025055,0.0000025059, -0.0000025032,0.0000024997,0.0000024978,0.0000024980,0.0000024990, -0.0000025001,0.0000025011,0.0000025026,0.0000025053,0.0000025101, -0.0000025142,0.0000025140,0.0000025075,0.0000024952,0.0000024833, -0.0000024720,0.0000024569,0.0000024401,0.0000024280,0.0000024204, -0.0000024113,0.0000023991,0.0000023865,0.0000023755,0.0000023668, -0.0000023637,0.0000023681,0.0000023775,0.0000023859,0.0000023919, -0.0000023958,0.0000023960,0.0000023946,0.0000023961,0.0000024020, -0.0000024092,0.0000024156,0.0000024215,0.0000024273,0.0000024324, -0.0000024362,0.0000024383,0.0000024389,0.0000024382,0.0000024358, -0.0000024320,0.0000024288,0.0000024272,0.0000024268,0.0000024273, -0.0000024278,0.0000024284,0.0000024303,0.0000024339,0.0000024396, -0.0000024483,0.0000024611,0.0000024783,0.0000024980,0.0000025170, -0.0000025320,0.0000025419,0.0000025475,0.0000025512,0.0000025548, -0.0000025585,0.0000025616,0.0000025635,0.0000025644,0.0000025649, -0.0000025651,0.0000025653,0.0000025660,0.0000025675,0.0000025693, -0.0000025716,0.0000025739,0.0000025759,0.0000025785,0.0000025819, -0.0000025838,0.0000025824,0.0000025761,0.0000025676,0.0000025624, -0.0000025599,0.0000025530,0.0000025435,0.0000025386,0.0000025303, -0.0000025092,0.0000024863,0.0000024762,0.0000024732,0.0000024661, -0.0000024601,0.0000024559,0.0000024340,0.0000023994,0.0000023785, -0.0000023739,0.0000023655,0.0000023358,0.0000022977,0.0000022750, -0.0000022681,0.0000022642,0.0000022553,0.0000022401,0.0000022218, -0.0000022049,0.0000021917,0.0000021808,0.0000021728,0.0000021682, -0.0000021675,0.0000021683,0.0000021715,0.0000021754,0.0000021815, -0.0000021905,0.0000021970,0.0000021989,0.0000021913,0.0000021801, -0.0000021702,0.0000021605,0.0000021512,0.0000021444,0.0000021381, -0.0000021321,0.0000021264,0.0000021214,0.0000021181,0.0000021155, -0.0000021131,0.0000021112,0.0000021105,0.0000021114,0.0000021136, -0.0000021151,0.0000021158,0.0000021166,0.0000021164,0.0000021159, -0.0000021144,0.0000021123,0.0000021103,0.0000021100,0.0000021107, -0.0000021135,0.0000021176,0.0000021211,0.0000021244,0.0000021276, -0.0000021305,0.0000021336,0.0000021372,0.0000021415,0.0000021465, -0.0000021516,0.0000021560,0.0000021602,0.0000021647,0.0000021698, -0.0000021749,0.0000021806,0.0000021871,0.0000021937,0.0000021995, -0.0000022047,0.0000022084,0.0000022108,0.0000022121,0.0000022122, -0.0000022110,0.0000022087,0.0000022056,0.0000022013,0.0000021971, -0.0000021940,0.0000021907,0.0000021882,0.0000021881,0.0000021895, -0.0000021904,0.0000021903,0.0000021880,0.0000021828,0.0000021766, -0.0000021721,0.0000021697,0.0000021687,0.0000021681,0.0000021674, -0.0000021664,0.0000021650,0.0000021625,0.0000021587,0.0000021549, -0.0000021529,0.0000021516,0.0000021510,0.0000021515,0.0000021528, -0.0000021538,0.0000021549,0.0000021567,0.0000021587,0.0000021616, -0.0000021662,0.0000021720,0.0000021780,0.0000021828,0.0000021858, -0.0000021883,0.0000021920,0.0000021974,0.0000022044,0.0000022144, -0.0000022271,0.0000022387,0.0000022466,0.0000022518,0.0000022549, -0.0000022554,0.0000022546,0.0000022527,0.0000022500,0.0000022463, -0.0000022425,0.0000022397,0.0000022396,0.0000022418,0.0000022450, -0.0000022480,0.0000022502,0.0000022507,0.0000022502,0.0000022493, -0.0000022483,0.0000022471,0.0000022460,0.0000022453,0.0000022452, -0.0000022457,0.0000022458,0.0000022455,0.0000022444,0.0000022432, -0.0000022417,0.0000022395,0.0000022377,0.0000022363,0.0000022353, -0.0000022344,0.0000022335,0.0000022334,0.0000022345,0.0000022367, -0.0000022385,0.0000022386,0.0000022379,0.0000022364,0.0000022331, -0.0000022288,0.0000022236,0.0000022168,0.0000022106,0.0000022038, -0.0000021915,0.0000021768,0.0000021692,0.0000021712,0.0000021812, -0.0000021902,0.0000021930,0.0000021927,0.0000021870,0.0000021796, -0.0000021788,0.0000021818,0.0000021806,0.0000021743,0.0000021699, -0.0000021697,0.0000021712,0.0000021729,0.0000021745,0.0000021758, -0.0000021771,0.0000021791,0.0000021823,0.0000021867,0.0000021925, -0.0000021997,0.0000022077,0.0000022159,0.0000022236,0.0000022289, -0.0000022307,0.0000022301,0.0000022286,0.0000022262,0.0000022220, -0.0000022156,0.0000022081,0.0000022009,0.0000021954,0.0000021922, -0.0000021909,0.0000021915,0.0000021947,0.0000021998,0.0000022061, -0.0000022130,0.0000022173,0.0000022154,0.0000022059,0.0000021914, -0.0000021710,0.0000021470,0.0000021312,0.0000021278,0.0000021288, -0.0000021290,0.0000021255,0.0000021200,0.0000021156,0.0000021139, -0.0000021131,0.0000021120,0.0000021116,0.0000021096,0.0000021062, -0.0000021154,0.0000021478,0.0000021783,0.0000021951,0.0000022089, -0.0000022210,0.0000022293,0.0000022356,0.0000022410,0.0000022468, -0.0000022533,0.0000022579,0.0000022595,0.0000022597,0.0000022595, -0.0000022594,0.0000022595,0.0000022599,0.0000022606,0.0000022623, -0.0000022652,0.0000022689,0.0000022731,0.0000022778,0.0000022829, -0.0000022876,0.0000022913,0.0000022944,0.0000022973,0.0000022987, -0.0000022975,0.0000022934,0.0000022903,0.0000022907,0.0000022948, -0.0000023014,0.0000023077,0.0000023110,0.0000023116,0.0000023115, -0.0000023108,0.0000023093,0.0000023071,0.0000023048,0.0000023030, -0.0000023014,0.0000023000,0.0000022991,0.0000022981,0.0000022960, -0.0000022918,0.0000022857,0.0000022774,0.0000022680,0.0000022606, -0.0000022546,0.0000022399,0.0000022032,0.0000021705,0.0000021541, -0.0000021564,0.0000021712,0.0000021854,0.0000021909,0.0000021927, -0.0000021967,0.0000022034,0.0000022044,0.0000021882,0.0000021691, -0.0000021721,0.0000021902,0.0000022081,0.0000022342,0.0000022680, -0.0000022879,0.0000022906,0.0000022910,0.0000022927,0.0000022955, -0.0000023007,0.0000023082,0.0000023141,0.0000023159,0.0000023165, -0.0000023202,0.0000023308,0.0000023464,0.0000023581,0.0000023601, -0.0000023512,0.0000023378,0.0000023308,0.0000023296,0.0000023283, -0.0000023243,0.0000023179,0.0000023114,0.0000023068,0.0000023037, -0.0000023016,0.0000023017,0.0000023050,0.0000023108,0.0000023162, -0.0000023182,0.0000023179,0.0000023157,0.0000023109,0.0000023045, -0.0000022979,0.0000022918,0.0000022868,0.0000022829,0.0000022801, -0.0000022794,0.0000022817,0.0000022858,0.0000022891,0.0000022905, -0.0000022909,0.0000022906,0.0000022896,0.0000022878,0.0000022865, -0.0000022853,0.0000022836,0.0000022821,0.0000022813,0.0000022816, -0.0000022816,0.0000022818,0.0000022811,0.0000022803,0.0000022807, -0.0000022842,0.0000022897,0.0000022947,0.0000022979,0.0000022994, -0.0000022989,0.0000022970,0.0000022934,0.0000022869,0.0000022782, -0.0000022700,0.0000022636,0.0000022604,0.0000022602,0.0000022602, -0.0000022611,0.0000022640,0.0000022667,0.0000022668,0.0000022659, -0.0000022678,0.0000022746,0.0000022848,0.0000022963,0.0000023067, -0.0000023129,0.0000023172,0.0000023219,0.0000023296,0.0000023394, -0.0000023491,0.0000023558,0.0000023587,0.0000023592,0.0000023593, -0.0000023609,0.0000023642,0.0000023675,0.0000023696,0.0000023699, -0.0000023677,0.0000023643,0.0000023601,0.0000023553,0.0000023516, -0.0000023513,0.0000023531,0.0000023549,0.0000023565,0.0000023577, -0.0000023584,0.0000023597,0.0000023620,0.0000023646,0.0000023675, -0.0000023702,0.0000023734,0.0000023773,0.0000023821,0.0000023881, -0.0000023931,0.0000023964,0.0000023975,0.0000023950,0.0000023892, -0.0000023842,0.0000023823,0.0000023819,0.0000023816,0.0000023823, -0.0000023843,0.0000023852,0.0000023819,0.0000023723,0.0000023611, -0.0000023539,0.0000023517,0.0000023510,0.0000023485,0.0000023432, -0.0000023342,0.0000023223,0.0000023122,0.0000023087,0.0000023101, -0.0000023156,0.0000023220,0.0000023269,0.0000023307,0.0000023365, -0.0000023455,0.0000023549,0.0000023608,0.0000023624,0.0000023628, -0.0000023678,0.0000023789,0.0000023972,0.0000024218,0.0000024480, -0.0000024689,0.0000024815,0.0000024892,0.0000024956,0.0000025003, -0.0000025014,0.0000024991,0.0000024957,0.0000024934,0.0000024931, -0.0000024947,0.0000024974,0.0000024999,0.0000025009,0.0000025005, -0.0000024990,0.0000024960,0.0000024924,0.0000024890,0.0000024866, -0.0000024847,0.0000024833,0.0000024812,0.0000024771,0.0000024705, -0.0000024617,0.0000024511,0.0000024408,0.0000024329,0.0000024271, -0.0000024216,0.0000024149,0.0000024073,0.0000024007,0.0000023965, -0.0000023943,0.0000023937,0.0000023936,0.0000023936,0.0000023939, -0.0000023936,0.0000023915,0.0000023868,0.0000023802,0.0000023720, -0.0000023633,0.0000023555,0.0000023491,0.0000023492,0.0000023475, -0.0000023479,0.0000023509,0.0000023549,0.0000023582,0.0000023601, -0.0000023608,0.0000023606,0.0000023602,0.0000023605,0.0000023614, -0.0000023631,0.0000023654,0.0000023676,0.0000023696,0.0000023720, -0.0000023745,0.0000023767,0.0000023784,0.0000023791,0.0000023787, -0.0000023767,0.0000023726,0.0000023666,0.0000023606,0.0000023563, -0.0000023520,0.0000023503,0.0000023499,0.0000023506,0.0000023519, -0.0000023538,0.0000023562,0.0000023599,0.0000023651,0.0000023711, -0.0000023773,0.0000023831,0.0000023881,0.0000023921,0.0000023945, -0.0000023945,0.0000023929,0.0000023907,0.0000023888,0.0000023865, -0.0000023833,0.0000023792,0.0000023758,0.0000023720,0.0000023672, -0.0000023613,0.0000023543,0.0000023474,0.0000023413,0.0000023363, -0.0000023325,0.0000023303,0.0000023288,0.0000023269,0.0000023243, -0.0000023216,0.0000023187,0.0000023166,0.0000023161,0.0000023175, -0.0000023205,0.0000023256,0.0000023307,0.0000023338,0.0000023344, -0.0000023338,0.0000023335,0.0000023353,0.0000023393,0.0000023449, -0.0000023519,0.0000023597,0.0000023671,0.0000023741,0.0000023811, -0.0000023873,0.0000023936,0.0000024021,0.0000024144,0.0000024297, -0.0000024438,0.0000024540,0.0000024586,0.0000024622,0.0000024644, -0.0000024662,0.0000024682,0.0000024703,0.0000024708,0.0000024687, -0.0000024626,0.0000024533,0.0000024417,0.0000024296,0.0000024182, -0.0000024090,0.0000024034,0.0000024008,0.0000023987,0.0000023971, -0.0000023966,0.0000023972,0.0000023989,0.0000024007,0.0000024025, -0.0000024044,0.0000024068,0.0000024107,0.0000024172,0.0000024253, -0.0000024327,0.0000024377,0.0000024412,0.0000024441,0.0000024481, -0.0000024524,0.0000024537,0.0000024517,0.0000024455,0.0000024343, -0.0000024218,0.0000024083,0.0000023928,0.0000023835,0.0000023814, -0.0000023787,0.0000023720,0.0000023667,0.0000023650,0.0000023578, -0.0000023363,0.0000023133,0.0000023003,0.0000022980,0.0000022997, -0.0000023025,0.0000023048,0.0000023076,0.0000023121,0.0000023175, -0.0000023241,0.0000023289,0.0000023293,0.0000023274,0.0000023275, -0.0000023313,0.0000023344,0.0000023324,0.0000023259,0.0000023180, -0.0000023115,0.0000023047,0.0000022977,0.0000022915,0.0000022836, -0.0000022752,0.0000022676,0.0000022617,0.0000022597,0.0000022601, -0.0000022627,0.0000022648,0.0000022659,0.0000022672,0.0000022691, -0.0000022763,0.0000022956,0.0000023125,0.0000023145,0.0000023138, -0.0000023139,0.0000023148,0.0000023155,0.0000023155,0.0000023219, -0.0000023278,0.0000023304,0.0000023344,0.0000023427,0.0000023535, -0.0000023659,0.0000023745,0.0000023776,0.0000023767,0.0000023731, -0.0000023681,0.0000023615,0.0000023505,0.0000023328,0.0000023085, -0.0000022878,0.0000022844,0.0000022928,0.0000023106,0.0000023265, -0.0000023336,0.0000023355,0.0000023382,0.0000023424,0.0000023462, -0.0000023470,0.0000023436,0.0000023359,0.0000023257,0.0000023158, -0.0000023070,0.0000023019,0.0000022991,0.0000022938,0.0000022845, -0.0000022743,0.0000022663,0.0000022641,0.0000022680,0.0000022759, -0.0000022827,0.0000022886,0.0000022936,0.0000022964,0.0000022959, -0.0000022925,0.0000022907,0.0000022922,0.0000022945,0.0000022948, -0.0000022932,0.0000022899,0.0000022854,0.0000022799,0.0000022749, -0.0000022717,0.0000022700,0.0000022685,0.0000022645,0.0000022555, -0.0000022462,0.0000022420,0.0000022399,0.0000022349,0.0000022312, -0.0000022352,0.0000022435,0.0000022504,0.0000022562,0.0000022594, -0.0000022574,0.0000022477,0.0000022366,0.0000022340,0.0000022399, -0.0000022509,0.0000022600,0.0000022611,0.0000022606,0.0000022624, -0.0000022593,0.0000022556,0.0000022597,0.0000022715,0.0000022813, -0.0000022851,0.0000022876,0.0000022944,0.0000023030,0.0000023058, -0.0000023026,0.0000022991,0.0000022919,0.0000022785,0.0000022601, -0.0000022423,0.0000022336,0.0000022356,0.0000022406,0.0000022432, -0.0000022410,0.0000022358,0.0000022294,0.0000022226,0.0000022173, -0.0000022143,0.0000022137,0.0000022164,0.0000022213,0.0000022262, -0.0000022313,0.0000022365,0.0000022417,0.0000022471,0.0000022553, -0.0000022666,0.0000022782,0.0000022872,0.0000022935,0.0000022982, -0.0000023024,0.0000023053,0.0000023070,0.0000023067,0.0000023062, -0.0000023077,0.0000023108,0.0000023140,0.0000023163,0.0000023176, -0.0000023187,0.0000023194,0.0000023195,0.0000023190,0.0000023195, -0.0000023231,0.0000023287,0.0000023329,0.0000023343,0.0000023328, -0.0000023274,0.0000023203,0.0000023126,0.0000023047,0.0000022952, -0.0000022841,0.0000022738,0.0000022664,0.0000022639,0.0000022653, -0.0000022704,0.0000022769,0.0000022847,0.0000022973,0.0000023117, -0.0000023171,0.0000023154,0.0000023114,0.0000023042,0.0000023031, -0.0000023165,0.0000023344,0.0000023520,0.0000023651,0.0000023689, -0.0000023684,0.0000023694,0.0000023734,0.0000023762,0.0000023777, -0.0000023804,0.0000023841,0.0000023903,0.0000023987,0.0000024056, -0.0000024096,0.0000024114,0.0000024137,0.0000024205,0.0000024273, -0.0000024285,0.0000024263,0.0000024266,0.0000024296,0.0000024310, -0.0000024297,0.0000024233,0.0000024174,0.0000024183,0.0000024211, -0.0000024198,0.0000024184,0.0000024121,0.0000024000,0.0000023893, -0.0000023797,0.0000023726,0.0000023707,0.0000023710,0.0000023705, -0.0000023702,0.0000023722,0.0000023744,0.0000023755,0.0000023747, -0.0000023771,0.0000023835,0.0000023877,0.0000023915,0.0000023936, -0.0000023938,0.0000023973,0.0000024039,0.0000024054,0.0000024018, -0.0000023977,0.0000023962,0.0000023956,0.0000023929,0.0000023876, -0.0000023812,0.0000023773,0.0000023797,0.0000023932,0.0000024132, -0.0000024319,0.0000024444,0.0000024507,0.0000024533,0.0000024547, -0.0000024559,0.0000024560,0.0000024535,0.0000024490,0.0000024442, -0.0000024403,0.0000024374,0.0000024348,0.0000024318,0.0000024288, -0.0000024272,0.0000024271,0.0000024273,0.0000024262,0.0000024239, -0.0000024215,0.0000024140,0.0000024056,0.0000023979,0.0000023923, -0.0000023912,0.0000023937,0.0000024012,0.0000024108,0.0000024203, -0.0000024286,0.0000024353,0.0000024399,0.0000024426,0.0000024429, -0.0000024412,0.0000024376,0.0000024340,0.0000024283,0.0000024225, -0.0000024163,0.0000024106,0.0000024052,0.0000024004,0.0000023960, -0.0000023918,0.0000023880,0.0000023854,0.0000023832,0.0000023818, -0.0000023810,0.0000023811,0.0000023822,0.0000023835,0.0000023854, -0.0000023870,0.0000023879,0.0000023886,0.0000023885,0.0000023879, -0.0000023865,0.0000023841,0.0000023822,0.0000023815,0.0000023816, -0.0000023821,0.0000023833,0.0000023852,0.0000023875,0.0000023895, -0.0000023910,0.0000023923,0.0000023939,0.0000023956,0.0000023974, -0.0000023989,0.0000024001,0.0000024009,0.0000024013,0.0000024014, -0.0000024012,0.0000024008,0.0000023999,0.0000023988,0.0000023977, -0.0000023964,0.0000023948,0.0000023931,0.0000023913,0.0000023899, -0.0000023888,0.0000023884,0.0000023888,0.0000023896,0.0000023906, -0.0000023918,0.0000023928,0.0000023939,0.0000023950,0.0000023958, -0.0000023961,0.0000023960,0.0000023957,0.0000023952,0.0000023947, -0.0000023944,0.0000023947,0.0000023961,0.0000023984,0.0000024010, -0.0000024030,0.0000024049,0.0000024072,0.0000024081,0.0000024078, -0.0000024082,0.0000024088,0.0000024083,0.0000024075,0.0000024073, -0.0000024062,0.0000024007,0.0000023886,0.0000023740,0.0000023583, -0.0000023417,0.0000023291,0.0000023204,0.0000023071,0.0000022919, -0.0000022840,0.0000022775,0.0000022631,0.0000022457,0.0000022360, -0.0000022347,0.0000022361,0.0000022371,0.0000022363,0.0000022339, -0.0000022319,0.0000022311,0.0000022315,0.0000022325,0.0000022330, -0.0000022321,0.0000022288,0.0000022231,0.0000022142,0.0000022028, -0.0000021957,0.0000022000,0.0000022200,0.0000022408,0.0000022491, -0.0000022487,0.0000022459,0.0000022421,0.0000022382,0.0000022337, -0.0000022259,0.0000022145,0.0000022060,0.0000022056,0.0000022076, -0.0000022030,0.0000021906,0.0000021795,0.0000021706,0.0000021673, -0.0000021794,0.0000021964,0.0000021988,0.0000021917,0.0000021886, -0.0000021928,0.0000022044,0.0000022230,0.0000022416,0.0000022505, -0.0000022521,0.0000022574,0.0000022696,0.0000022828,0.0000022923, -0.0000023003,0.0000023150,0.0000023397,0.0000023629,0.0000023739, -0.0000023763,0.0000023792,0.0000023864,0.0000023964,0.0000024055, -0.0000024099,0.0000024104,0.0000024100,0.0000024074,0.0000024024, -0.0000023974,0.0000023951,0.0000023956,0.0000023966,0.0000023969, -0.0000023966,0.0000023924,0.0000023813,0.0000023667,0.0000023525, -0.0000023395,0.0000023268,0.0000023150,0.0000023034,0.0000022911, -0.0000022776,0.0000022654,0.0000022562,0.0000022487,0.0000022412, -0.0000022340,0.0000022277,0.0000022219,0.0000022149,0.0000022062, -0.0000021977,0.0000021905,0.0000021828,0.0000021731,0.0000021608, -0.0000021462,0.0000021302,0.0000021136,0.0000020972,0.0000020834, -0.0000020739,0.0000020683,0.0000020671,0.0000020687,0.0000020715, -0.0000020745,0.0000020791,0.0000020854,0.0000020921,0.0000020988, -0.0000021052,0.0000021099,0.0000021122,0.0000021121,0.0000021096, -0.0000021044,0.0000020985,0.0000020943,0.0000020946,0.0000021018, -0.0000021166,0.0000021364,0.0000021563,0.0000021731,0.0000021867, -0.0000021987,0.0000022114,0.0000022249,0.0000022361,0.0000022443, -0.0000022553,0.0000022732,0.0000022920,0.0000023033,0.0000023060, -0.0000023027,0.0000022934,0.0000022849,0.0000022828,0.0000022873, -0.0000022928,0.0000023007,0.0000023169,0.0000023388,0.0000023564, -0.0000023695,0.0000023845,0.0000024004,0.0000024154,0.0000024303, -0.0000024436,0.0000024533,0.0000024608,0.0000024714,0.0000024862, -0.0000024964,0.0000024969,0.0000024925,0.0000024904,0.0000024909, -0.0000024905,0.0000024877,0.0000024856,0.0000024867,0.0000024895, -0.0000024926,0.0000024942,0.0000024960,0.0000024994,0.0000025034, -0.0000025048,0.0000025028,0.0000024989,0.0000024960,0.0000024949, -0.0000024952,0.0000024963,0.0000024973,0.0000024994,0.0000025041, -0.0000025100,0.0000025126,0.0000025092,0.0000024986,0.0000024856, -0.0000024729,0.0000024572,0.0000024395,0.0000024268,0.0000024187, -0.0000024078,0.0000023932,0.0000023796,0.0000023691,0.0000023617, -0.0000023588,0.0000023632,0.0000023729,0.0000023826,0.0000023874, -0.0000023903,0.0000023928,0.0000023934,0.0000023933,0.0000023950, -0.0000023993,0.0000024041,0.0000024083,0.0000024124,0.0000024163, -0.0000024186,0.0000024191,0.0000024181,0.0000024165,0.0000024143, -0.0000024105,0.0000024058,0.0000024023,0.0000024011,0.0000024014, -0.0000024026,0.0000024045,0.0000024072,0.0000024115,0.0000024171, -0.0000024230,0.0000024290,0.0000024357,0.0000024445,0.0000024573, -0.0000024746,0.0000024948,0.0000025147,0.0000025307,0.0000025413, -0.0000025480,0.0000025527,0.0000025566,0.0000025598,0.0000025622, -0.0000025634,0.0000025636,0.0000025632,0.0000025627,0.0000025627, -0.0000025636,0.0000025655,0.0000025680,0.0000025705,0.0000025736, -0.0000025767,0.0000025778,0.0000025757,0.0000025691,0.0000025612, -0.0000025571,0.0000025558,0.0000025503,0.0000025421,0.0000025385, -0.0000025318,0.0000025121,0.0000024890,0.0000024776,0.0000024753, -0.0000024695,0.0000024615,0.0000024582,0.0000024492,0.0000024196, -0.0000023883,0.0000023748,0.0000023724,0.0000023613,0.0000023302, -0.0000022946,0.0000022740,0.0000022670,0.0000022613,0.0000022508, -0.0000022354,0.0000022172,0.0000021997,0.0000021857,0.0000021746, -0.0000021679,0.0000021673,0.0000021687,0.0000021720,0.0000021763, -0.0000021795,0.0000021830,0.0000021903,0.0000021982,0.0000021994, -0.0000021916,0.0000021790,0.0000021671,0.0000021567,0.0000021485, -0.0000021428,0.0000021373,0.0000021310,0.0000021248,0.0000021203, -0.0000021179,0.0000021162,0.0000021144,0.0000021127,0.0000021119, -0.0000021133,0.0000021163,0.0000021175,0.0000021176,0.0000021169, -0.0000021154,0.0000021140,0.0000021116,0.0000021081,0.0000021050, -0.0000021031,0.0000021042,0.0000021079,0.0000021120,0.0000021149, -0.0000021172,0.0000021196,0.0000021225,0.0000021258,0.0000021293, -0.0000021330,0.0000021365,0.0000021395,0.0000021429,0.0000021476, -0.0000021534,0.0000021594,0.0000021653,0.0000021716,0.0000021782, -0.0000021838,0.0000021886,0.0000021929,0.0000021962,0.0000021982, -0.0000021989,0.0000021982,0.0000021959,0.0000021929,0.0000021894, -0.0000021857,0.0000021829,0.0000021805,0.0000021790,0.0000021794, -0.0000021815,0.0000021834,0.0000021844,0.0000021843,0.0000021819, -0.0000021772,0.0000021723,0.0000021687,0.0000021668,0.0000021659, -0.0000021650,0.0000021643,0.0000021634,0.0000021616,0.0000021585, -0.0000021552,0.0000021530,0.0000021523,0.0000021523,0.0000021526, -0.0000021532,0.0000021538,0.0000021539,0.0000021543,0.0000021548, -0.0000021557,0.0000021580,0.0000021625,0.0000021683,0.0000021745, -0.0000021799,0.0000021831,0.0000021851,0.0000021877,0.0000021910, -0.0000021964,0.0000022052,0.0000022172,0.0000022302,0.0000022411, -0.0000022485,0.0000022532,0.0000022556,0.0000022559,0.0000022546, -0.0000022523,0.0000022502,0.0000022479,0.0000022454,0.0000022432, -0.0000022429,0.0000022442,0.0000022456,0.0000022469,0.0000022475, -0.0000022477,0.0000022477,0.0000022473,0.0000022464,0.0000022451, -0.0000022438,0.0000022434,0.0000022435,0.0000022438,0.0000022438, -0.0000022433,0.0000022424,0.0000022411,0.0000022396,0.0000022379, -0.0000022367,0.0000022362,0.0000022355,0.0000022346,0.0000022341, -0.0000022346,0.0000022355,0.0000022356,0.0000022347,0.0000022331, -0.0000022305,0.0000022269,0.0000022223,0.0000022165,0.0000022115, -0.0000022076,0.0000022001,0.0000021860,0.0000021723,0.0000021678, -0.0000021726,0.0000021829,0.0000021892,0.0000021900,0.0000021874, -0.0000021793,0.0000021738,0.0000021748,0.0000021767,0.0000021749, -0.0000021703,0.0000021680,0.0000021684,0.0000021692,0.0000021696, -0.0000021702,0.0000021718,0.0000021743,0.0000021778,0.0000021819, -0.0000021864,0.0000021913,0.0000021970,0.0000022034,0.0000022104, -0.0000022184,0.0000022253,0.0000022289,0.0000022294,0.0000022282, -0.0000022258,0.0000022218,0.0000022160,0.0000022097,0.0000022040, -0.0000021997,0.0000021972,0.0000021955,0.0000021945,0.0000021951, -0.0000021981,0.0000022029,0.0000022097,0.0000022151,0.0000022156, -0.0000022092,0.0000021977,0.0000021827,0.0000021622,0.0000021415, -0.0000021298,0.0000021277,0.0000021273,0.0000021245,0.0000021191, -0.0000021140,0.0000021117,0.0000021113,0.0000021099,0.0000021085, -0.0000021083,0.0000021039,0.0000021037,0.0000021277,0.0000021638, -0.0000021876,0.0000022023,0.0000022160,0.0000022264,0.0000022331, -0.0000022388,0.0000022453,0.0000022523,0.0000022573,0.0000022599, -0.0000022617,0.0000022632,0.0000022636,0.0000022633,0.0000022628, -0.0000022625,0.0000022629,0.0000022654,0.0000022703,0.0000022767, -0.0000022832,0.0000022883,0.0000022916,0.0000022932,0.0000022943, -0.0000022948,0.0000022932,0.0000022891,0.0000022850,0.0000022838, -0.0000022853,0.0000022894,0.0000022950,0.0000023007,0.0000023047, -0.0000023069,0.0000023078,0.0000023076,0.0000023064,0.0000023045, -0.0000023020,0.0000022999,0.0000022985,0.0000022974,0.0000022961, -0.0000022944,0.0000022921,0.0000022883,0.0000022828,0.0000022755, -0.0000022679,0.0000022617,0.0000022545,0.0000022362,0.0000021902, -0.0000021653,0.0000021582,0.0000021635,0.0000021777,0.0000021883, -0.0000021933,0.0000021969,0.0000022002,0.0000022052,0.0000022068, -0.0000021918,0.0000021723,0.0000021726,0.0000021889,0.0000022084, -0.0000022372,0.0000022719,0.0000022896,0.0000022907,0.0000022900, -0.0000022907,0.0000022951,0.0000023026,0.0000023101,0.0000023140, -0.0000023146,0.0000023158,0.0000023211,0.0000023334,0.0000023483, -0.0000023580,0.0000023593,0.0000023510,0.0000023403,0.0000023358, -0.0000023350,0.0000023328,0.0000023282,0.0000023216,0.0000023144, -0.0000023070,0.0000023007,0.0000022982,0.0000023012,0.0000023073, -0.0000023132,0.0000023167,0.0000023168,0.0000023143,0.0000023108, -0.0000023063,0.0000023006,0.0000022943,0.0000022890,0.0000022848, -0.0000022810,0.0000022778,0.0000022767,0.0000022787,0.0000022837, -0.0000022881,0.0000022903,0.0000022918,0.0000022936,0.0000022943, -0.0000022928,0.0000022914,0.0000022910,0.0000022904,0.0000022889, -0.0000022871,0.0000022863,0.0000022858,0.0000022849,0.0000022833, -0.0000022823,0.0000022819,0.0000022833,0.0000022866,0.0000022908, -0.0000022955,0.0000022993,0.0000022997,0.0000022992,0.0000022975, -0.0000022937,0.0000022881,0.0000022817,0.0000022750,0.0000022701, -0.0000022686,0.0000022677,0.0000022678,0.0000022685,0.0000022692, -0.0000022676,0.0000022647,0.0000022631,0.0000022631,0.0000022673, -0.0000022749,0.0000022863,0.0000022973,0.0000023067,0.0000023132, -0.0000023181,0.0000023238,0.0000023318,0.0000023416,0.0000023505, -0.0000023559,0.0000023577,0.0000023587,0.0000023608,0.0000023643, -0.0000023682,0.0000023710,0.0000023719,0.0000023714,0.0000023683, -0.0000023633,0.0000023577,0.0000023548,0.0000023552,0.0000023567, -0.0000023582,0.0000023596,0.0000023597,0.0000023593,0.0000023601, -0.0000023618,0.0000023644,0.0000023670,0.0000023697,0.0000023734, -0.0000023772,0.0000023824,0.0000023883,0.0000023934,0.0000023971, -0.0000023990,0.0000023985,0.0000023933,0.0000023861,0.0000023815, -0.0000023798,0.0000023792,0.0000023798,0.0000023818,0.0000023827, -0.0000023803,0.0000023721,0.0000023607,0.0000023517,0.0000023476, -0.0000023462,0.0000023438,0.0000023387,0.0000023307,0.0000023198, -0.0000023107,0.0000023070,0.0000023083,0.0000023145,0.0000023221, -0.0000023275,0.0000023294,0.0000023305,0.0000023336,0.0000023390, -0.0000023447,0.0000023502,0.0000023552,0.0000023599,0.0000023664, -0.0000023777,0.0000023964,0.0000024212,0.0000024456,0.0000024631, -0.0000024742,0.0000024831,0.0000024911,0.0000024963,0.0000024970, -0.0000024946,0.0000024929,0.0000024930,0.0000024950,0.0000024979, -0.0000025007,0.0000025029,0.0000025040,0.0000025035,0.0000025010, -0.0000024968,0.0000024918,0.0000024867,0.0000024824,0.0000024796, -0.0000024778,0.0000024750,0.0000024701,0.0000024627,0.0000024525, -0.0000024417,0.0000024322,0.0000024254,0.0000024205,0.0000024164, -0.0000024111,0.0000024058,0.0000024013,0.0000023980,0.0000023963, -0.0000023957,0.0000023962,0.0000023984,0.0000024005,0.0000024014, -0.0000024008,0.0000023988,0.0000023946,0.0000023881,0.0000023801, -0.0000023712,0.0000023640,0.0000023566,0.0000023498,0.0000023494, -0.0000023473,0.0000023475,0.0000023496,0.0000023525,0.0000023549, -0.0000023565,0.0000023582,0.0000023594,0.0000023606,0.0000023618, -0.0000023630,0.0000023640,0.0000023653,0.0000023676,0.0000023707, -0.0000023741,0.0000023767,0.0000023787,0.0000023785,0.0000023778, -0.0000023746,0.0000023688,0.0000023615,0.0000023544,0.0000023483, -0.0000023453,0.0000023437,0.0000023443,0.0000023472,0.0000023503, -0.0000023532,0.0000023566,0.0000023604,0.0000023642,0.0000023682, -0.0000023727,0.0000023778,0.0000023825,0.0000023855,0.0000023865, -0.0000023862,0.0000023853,0.0000023836,0.0000023806,0.0000023765, -0.0000023722,0.0000023679,0.0000023630,0.0000023568,0.0000023493, -0.0000023412,0.0000023342,0.0000023293,0.0000023265,0.0000023256, -0.0000023252,0.0000023243,0.0000023225,0.0000023201,0.0000023166, -0.0000023124,0.0000023080,0.0000023057,0.0000023058,0.0000023083, -0.0000023124,0.0000023159,0.0000023176,0.0000023180,0.0000023181, -0.0000023190,0.0000023210,0.0000023241,0.0000023287,0.0000023342, -0.0000023397,0.0000023452,0.0000023505,0.0000023551,0.0000023604, -0.0000023677,0.0000023796,0.0000023952,0.0000024118,0.0000024281, -0.0000024432,0.0000024552,0.0000024624,0.0000024645,0.0000024640, -0.0000024638,0.0000024645,0.0000024653,0.0000024642,0.0000024621, -0.0000024573,0.0000024499,0.0000024404,0.0000024304,0.0000024233, -0.0000024200,0.0000024185,0.0000024174,0.0000024161,0.0000024146, -0.0000024136,0.0000024129,0.0000024127,0.0000024135,0.0000024161, -0.0000024197,0.0000024244,0.0000024286,0.0000024315,0.0000024339, -0.0000024371,0.0000024417,0.0000024477,0.0000024523,0.0000024537, -0.0000024526,0.0000024489,0.0000024403,0.0000024280,0.0000024148, -0.0000024016,0.0000023902,0.0000023851,0.0000023834,0.0000023793, -0.0000023713,0.0000023654,0.0000023622,0.0000023496,0.0000023252, -0.0000023043,0.0000022973,0.0000022978,0.0000023009,0.0000023035, -0.0000023059,0.0000023088,0.0000023135,0.0000023190,0.0000023215, -0.0000023216,0.0000023232,0.0000023267,0.0000023294,0.0000023272, -0.0000023216,0.0000023165,0.0000023132,0.0000023101,0.0000023052, -0.0000022992,0.0000022941,0.0000022883,0.0000022813,0.0000022741, -0.0000022679,0.0000022642,0.0000022632,0.0000022643,0.0000022654, -0.0000022661,0.0000022660,0.0000022666,0.0000022666,0.0000022725, -0.0000022925,0.0000023110,0.0000023144,0.0000023143,0.0000023129, -0.0000023131,0.0000023147,0.0000023154,0.0000023226,0.0000023302, -0.0000023345,0.0000023411,0.0000023493,0.0000023584,0.0000023663, -0.0000023705,0.0000023710,0.0000023689,0.0000023660,0.0000023628, -0.0000023581,0.0000023509,0.0000023398,0.0000023188,0.0000022954, -0.0000022866,0.0000022923,0.0000023074,0.0000023225,0.0000023315, -0.0000023353,0.0000023360,0.0000023367,0.0000023368,0.0000023345, -0.0000023303,0.0000023246,0.0000023196,0.0000023141,0.0000023072, -0.0000023008,0.0000022898,0.0000022755,0.0000022655,0.0000022626, -0.0000022643,0.0000022696,0.0000022771,0.0000022847,0.0000022928, -0.0000022970,0.0000022969,0.0000022955,0.0000022942,0.0000022942, -0.0000022959,0.0000022968,0.0000022959,0.0000022939,0.0000022904, -0.0000022851,0.0000022792,0.0000022738,0.0000022693,0.0000022657, -0.0000022639,0.0000022613,0.0000022534,0.0000022445,0.0000022410, -0.0000022389,0.0000022327,0.0000022282,0.0000022320,0.0000022403, -0.0000022481,0.0000022555,0.0000022594,0.0000022567,0.0000022451, -0.0000022353,0.0000022354,0.0000022439,0.0000022540,0.0000022610, -0.0000022638,0.0000022643,0.0000022638,0.0000022603,0.0000022595, -0.0000022664,0.0000022778,0.0000022863,0.0000022901,0.0000022952, -0.0000023044,0.0000023115,0.0000023114,0.0000023049,0.0000022955, -0.0000022842,0.0000022671,0.0000022457,0.0000022287,0.0000022249, -0.0000022324,0.0000022405,0.0000022440,0.0000022429,0.0000022379, -0.0000022303,0.0000022223,0.0000022168,0.0000022143,0.0000022140, -0.0000022166,0.0000022214,0.0000022269,0.0000022326,0.0000022385, -0.0000022445,0.0000022521,0.0000022621,0.0000022744,0.0000022863, -0.0000022945,0.0000022993,0.0000023033,0.0000023068,0.0000023086, -0.0000023072,0.0000023052,0.0000023043,0.0000023062,0.0000023100, -0.0000023142,0.0000023177,0.0000023205,0.0000023223,0.0000023229, -0.0000023228,0.0000023225,0.0000023227,0.0000023248,0.0000023294, -0.0000023341,0.0000023364,0.0000023364,0.0000023331,0.0000023272, -0.0000023198,0.0000023108,0.0000023020,0.0000022928,0.0000022828, -0.0000022733,0.0000022670,0.0000022651,0.0000022676,0.0000022727, -0.0000022784,0.0000022869,0.0000023000,0.0000023108,0.0000023129, -0.0000023115,0.0000023079,0.0000023007,0.0000023001,0.0000023158, -0.0000023339,0.0000023492,0.0000023624,0.0000023684,0.0000023686, -0.0000023687,0.0000023709,0.0000023725,0.0000023736,0.0000023765, -0.0000023803,0.0000023855,0.0000023937,0.0000024022,0.0000024079, -0.0000024101,0.0000024135,0.0000024216,0.0000024282,0.0000024287, -0.0000024260,0.0000024262,0.0000024285,0.0000024295,0.0000024266, -0.0000024193,0.0000024163,0.0000024193,0.0000024209,0.0000024195, -0.0000024180,0.0000024091,0.0000023975,0.0000023872,0.0000023774, -0.0000023726,0.0000023723,0.0000023728,0.0000023723,0.0000023726, -0.0000023750,0.0000023762,0.0000023763,0.0000023745,0.0000023756, -0.0000023813,0.0000023854,0.0000023887,0.0000023915,0.0000023915, -0.0000023938,0.0000024003,0.0000024038,0.0000024021,0.0000023982, -0.0000023958,0.0000023948,0.0000023924,0.0000023867,0.0000023804, -0.0000023762,0.0000023732,0.0000023709,0.0000023732,0.0000023831, -0.0000023975,0.0000024112,0.0000024210,0.0000024272,0.0000024313, -0.0000024338,0.0000024342,0.0000024324,0.0000024287,0.0000024237, -0.0000024180,0.0000024124,0.0000024074,0.0000024035,0.0000024019, -0.0000024026,0.0000024057,0.0000024097,0.0000024141,0.0000024178, -0.0000024198,0.0000024190,0.0000024163,0.0000024099,0.0000024021, -0.0000023960,0.0000023934,0.0000023952,0.0000023990,0.0000024054, -0.0000024116,0.0000024176,0.0000024231,0.0000024280,0.0000024317, -0.0000024334,0.0000024331,0.0000024308,0.0000024274,0.0000024219, -0.0000024172,0.0000024111,0.0000024056,0.0000024003,0.0000023955, -0.0000023916,0.0000023883,0.0000023859,0.0000023841,0.0000023824, -0.0000023803,0.0000023785,0.0000023762,0.0000023744,0.0000023724, -0.0000023721,0.0000023721,0.0000023722,0.0000023725,0.0000023718, -0.0000023703,0.0000023691,0.0000023684,0.0000023679,0.0000023678, -0.0000023684,0.0000023700,0.0000023726,0.0000023752,0.0000023775, -0.0000023796,0.0000023818,0.0000023842,0.0000023867,0.0000023890, -0.0000023912,0.0000023932,0.0000023948,0.0000023962,0.0000023973, -0.0000023978,0.0000023976,0.0000023968,0.0000023957,0.0000023942, -0.0000023922,0.0000023897,0.0000023868,0.0000023841,0.0000023817, -0.0000023799,0.0000023792,0.0000023794,0.0000023803,0.0000023818, -0.0000023835,0.0000023853,0.0000023874,0.0000023892,0.0000023905, -0.0000023913,0.0000023918,0.0000023921,0.0000023922,0.0000023922, -0.0000023927,0.0000023941,0.0000023963,0.0000023989,0.0000024009, -0.0000024023,0.0000024039,0.0000024048,0.0000024036,0.0000024017, -0.0000024012,0.0000024018,0.0000024018,0.0000024023,0.0000024039, -0.0000024033,0.0000023968,0.0000023836,0.0000023684,0.0000023521, -0.0000023353,0.0000023233,0.0000023129,0.0000022979,0.0000022855, -0.0000022789,0.0000022687,0.0000022539,0.0000022431,0.0000022393, -0.0000022394,0.0000022402,0.0000022400,0.0000022376,0.0000022341, -0.0000022318,0.0000022316,0.0000022317,0.0000022312,0.0000022304, -0.0000022286,0.0000022244,0.0000022168,0.0000022071,0.0000022026, -0.0000022102,0.0000022289,0.0000022447,0.0000022496,0.0000022494, -0.0000022476,0.0000022444,0.0000022398,0.0000022351,0.0000022297, -0.0000022215,0.0000022112,0.0000022041,0.0000022048,0.0000022079, -0.0000022044,0.0000021914,0.0000021789,0.0000021693,0.0000021649, -0.0000021739,0.0000021890,0.0000021929,0.0000021877,0.0000021846, -0.0000021889,0.0000022004,0.0000022188,0.0000022389,0.0000022505, -0.0000022528,0.0000022565,0.0000022678,0.0000022829,0.0000022950, -0.0000023021,0.0000023110,0.0000023304,0.0000023553,0.0000023716, -0.0000023760,0.0000023765,0.0000023807,0.0000023888,0.0000023965, -0.0000024002,0.0000024006,0.0000023986,0.0000023939,0.0000023884, -0.0000023847,0.0000023840,0.0000023851,0.0000023858,0.0000023857, -0.0000023836,0.0000023767,0.0000023643,0.0000023506,0.0000023381, -0.0000023269,0.0000023172,0.0000023079,0.0000022970,0.0000022833, -0.0000022678,0.0000022533,0.0000022420,0.0000022331,0.0000022247, -0.0000022162,0.0000022087,0.0000022018,0.0000021936,0.0000021837, -0.0000021740,0.0000021654,0.0000021564,0.0000021454,0.0000021323, -0.0000021186,0.0000021060,0.0000020947,0.0000020846,0.0000020766, -0.0000020704,0.0000020675,0.0000020680,0.0000020707,0.0000020737, -0.0000020766,0.0000020806,0.0000020865,0.0000020915,0.0000020962, -0.0000021011,0.0000021053,0.0000021079,0.0000021086,0.0000021068, -0.0000021019,0.0000020954,0.0000020888,0.0000020851,0.0000020866, -0.0000020951,0.0000021109,0.0000021311,0.0000021525,0.0000021720, -0.0000021874,0.0000021990,0.0000022092,0.0000022198,0.0000022292, -0.0000022384,0.0000022537,0.0000022758,0.0000022952,0.0000023038, -0.0000023025,0.0000022936,0.0000022817,0.0000022753,0.0000022779, -0.0000022845,0.0000022921,0.0000023042,0.0000023251,0.0000023467, -0.0000023616,0.0000023750,0.0000023905,0.0000024054,0.0000024202, -0.0000024358,0.0000024494,0.0000024584,0.0000024668,0.0000024806, -0.0000024945,0.0000024981,0.0000024952,0.0000024917,0.0000024917, -0.0000024926,0.0000024914,0.0000024891,0.0000024883,0.0000024901, -0.0000024933,0.0000024955,0.0000024966,0.0000024983,0.0000025011, -0.0000025027,0.0000025017,0.0000024982,0.0000024947,0.0000024928, -0.0000024926,0.0000024935,0.0000024946,0.0000024981,0.0000025049, -0.0000025109,0.0000025115,0.0000025044,0.0000024913,0.0000024773, -0.0000024613,0.0000024422,0.0000024269,0.0000024181,0.0000024072, -0.0000023905,0.0000023746,0.0000023635,0.0000023565,0.0000023536, -0.0000023568,0.0000023657,0.0000023777,0.0000023853,0.0000023876, -0.0000023891,0.0000023908,0.0000023914,0.0000023913,0.0000023918, -0.0000023934,0.0000023959,0.0000023988,0.0000024020,0.0000024040, -0.0000024038,0.0000024016,0.0000023983,0.0000023951,0.0000023917, -0.0000023874,0.0000023826,0.0000023786,0.0000023763,0.0000023752, -0.0000023754,0.0000023775,0.0000023816,0.0000023878,0.0000023957, -0.0000024039,0.0000024115,0.0000024178,0.0000024230,0.0000024285, -0.0000024374,0.0000024520,0.0000024720,0.0000024949,0.0000025167, -0.0000025336,0.0000025445,0.0000025506,0.0000025541,0.0000025564, -0.0000025581,0.0000025587,0.0000025586,0.0000025581,0.0000025578, -0.0000025581,0.0000025596,0.0000025620,0.0000025649,0.0000025681, -0.0000025705,0.0000025708,0.0000025676,0.0000025606,0.0000025531, -0.0000025499,0.0000025496,0.0000025453,0.0000025386,0.0000025364, -0.0000025314,0.0000025129,0.0000024898,0.0000024771,0.0000024743, -0.0000024700,0.0000024616,0.0000024570,0.0000024551,0.0000024386, -0.0000024058,0.0000023801,0.0000023720,0.0000023702,0.0000023581, -0.0000023288,0.0000022951,0.0000022741,0.0000022652,0.0000022579, -0.0000022466,0.0000022311,0.0000022136,0.0000021961,0.0000021815, -0.0000021709,0.0000021663,0.0000021672,0.0000021702,0.0000021757, -0.0000021810,0.0000021826,0.0000021841,0.0000021894,0.0000021973, -0.0000021991,0.0000021906,0.0000021756,0.0000021610,0.0000021492, -0.0000021431,0.0000021388,0.0000021345,0.0000021290,0.0000021240, -0.0000021209,0.0000021190,0.0000021178,0.0000021161,0.0000021140, -0.0000021132,0.0000021152,0.0000021180,0.0000021192,0.0000021182, -0.0000021164,0.0000021147,0.0000021133,0.0000021106,0.0000021065, -0.0000021026,0.0000021006,0.0000021024,0.0000021057,0.0000021085, -0.0000021105,0.0000021119,0.0000021136,0.0000021160,0.0000021191, -0.0000021225,0.0000021258,0.0000021283,0.0000021302,0.0000021334, -0.0000021379,0.0000021443,0.0000021515,0.0000021588,0.0000021653, -0.0000021709,0.0000021748,0.0000021781,0.0000021814,0.0000021836, -0.0000021845,0.0000021842,0.0000021824,0.0000021797,0.0000021773, -0.0000021750,0.0000021730,0.0000021718,0.0000021715,0.0000021727, -0.0000021747,0.0000021769,0.0000021787,0.0000021799,0.0000021799, -0.0000021778,0.0000021742,0.0000021705,0.0000021682,0.0000021667, -0.0000021651,0.0000021638,0.0000021631,0.0000021617,0.0000021596, -0.0000021569,0.0000021542,0.0000021529,0.0000021530,0.0000021539, -0.0000021545,0.0000021549,0.0000021550,0.0000021546,0.0000021538, -0.0000021530,0.0000021530,0.0000021548,0.0000021586,0.0000021635, -0.0000021694,0.0000021746,0.0000021782,0.0000021812,0.0000021834, -0.0000021852,0.0000021886,0.0000021950,0.0000022051,0.0000022183, -0.0000022313,0.0000022423,0.0000022503,0.0000022548,0.0000022564, -0.0000022558,0.0000022541,0.0000022535,0.0000022530,0.0000022510, -0.0000022483,0.0000022461,0.0000022446,0.0000022440,0.0000022434, -0.0000022436,0.0000022441,0.0000022447,0.0000022451,0.0000022449, -0.0000022440,0.0000022431,0.0000022425,0.0000022425,0.0000022427, -0.0000022428,0.0000022425,0.0000022417,0.0000022410,0.0000022397, -0.0000022382,0.0000022374,0.0000022372,0.0000022364,0.0000022347, -0.0000022331,0.0000022324,0.0000022320,0.0000022308,0.0000022287, -0.0000022260,0.0000022228,0.0000022191,0.0000022143,0.0000022102, -0.0000022077,0.0000022043,0.0000021950,0.0000021799,0.0000021685, -0.0000021672,0.0000021750,0.0000021840,0.0000021878,0.0000021878, -0.0000021819,0.0000021724,0.0000021679,0.0000021696,0.0000021717, -0.0000021712,0.0000021688,0.0000021675,0.0000021681,0.0000021686, -0.0000021679,0.0000021676,0.0000021689,0.0000021720,0.0000021762, -0.0000021803,0.0000021842,0.0000021889,0.0000021948,0.0000022011, -0.0000022074,0.0000022143,0.0000022202,0.0000022244,0.0000022262, -0.0000022264,0.0000022247,0.0000022209,0.0000022155,0.0000022097, -0.0000022049,0.0000022013,0.0000021996,0.0000021993,0.0000021991, -0.0000021989,0.0000021994,0.0000022020,0.0000022066,0.0000022116, -0.0000022129,0.0000022099,0.0000022013,0.0000021899,0.0000021752, -0.0000021558,0.0000021379,0.0000021284,0.0000021253,0.0000021226, -0.0000021179,0.0000021124,0.0000021090,0.0000021080,0.0000021068, -0.0000021047,0.0000021045,0.0000021038,0.0000021023,0.0000021113, -0.0000021443,0.0000021768,0.0000021952,0.0000022097,0.0000022226, -0.0000022308,0.0000022367,0.0000022435,0.0000022508,0.0000022560, -0.0000022592,0.0000022622,0.0000022651,0.0000022665,0.0000022662, -0.0000022657,0.0000022658,0.0000022669,0.0000022695,0.0000022740, -0.0000022799,0.0000022855,0.0000022897,0.0000022922,0.0000022930, -0.0000022921,0.0000022888,0.0000022839,0.0000022795,0.0000022776, -0.0000022782,0.0000022808,0.0000022852,0.0000022905,0.0000022958, -0.0000023000,0.0000023029,0.0000023043,0.0000023046,0.0000023037, -0.0000023015,0.0000022989,0.0000022968,0.0000022956,0.0000022942, -0.0000022920,0.0000022895,0.0000022869,0.0000022832,0.0000022781, -0.0000022724,0.0000022669,0.0000022609,0.0000022485,0.0000022230, -0.0000021760,0.0000021622,0.0000021627,0.0000021738,0.0000021856, -0.0000021922,0.0000021974,0.0000022020,0.0000022044,0.0000022080, -0.0000022090,0.0000021935,0.0000021739,0.0000021735,0.0000021892, -0.0000022106,0.0000022425,0.0000022762,0.0000022902,0.0000022896, -0.0000022877,0.0000022895,0.0000022964,0.0000023050,0.0000023108, -0.0000023126,0.0000023129,0.0000023153,0.0000023222,0.0000023351, -0.0000023485,0.0000023568,0.0000023574,0.0000023498,0.0000023421, -0.0000023399,0.0000023392,0.0000023360,0.0000023306,0.0000023239, -0.0000023154,0.0000023047,0.0000022980,0.0000022984,0.0000023040, -0.0000023092,0.0000023122,0.0000023132,0.0000023124,0.0000023100, -0.0000023075,0.0000023042,0.0000022998,0.0000022945,0.0000022904, -0.0000022869,0.0000022832,0.0000022797,0.0000022780,0.0000022796, -0.0000022845,0.0000022890,0.0000022916,0.0000022945,0.0000022986, -0.0000023017,0.0000023018,0.0000023010,0.0000023014,0.0000023018, -0.0000023004,0.0000022976,0.0000022950,0.0000022932,0.0000022909, -0.0000022883,0.0000022871,0.0000022858,0.0000022850,0.0000022860, -0.0000022881,0.0000022923,0.0000022977,0.0000022994,0.0000022993, -0.0000022987,0.0000022974,0.0000022951,0.0000022916,0.0000022861, -0.0000022811,0.0000022788,0.0000022773,0.0000022778,0.0000022787, -0.0000022784,0.0000022750,0.0000022693,0.0000022653,0.0000022627, -0.0000022622,0.0000022613,0.0000022660,0.0000022750,0.0000022869, -0.0000022987,0.0000023079,0.0000023140,0.0000023184,0.0000023239, -0.0000023325,0.0000023428,0.0000023511,0.0000023560,0.0000023582, -0.0000023601,0.0000023631,0.0000023668,0.0000023702,0.0000023723, -0.0000023723,0.0000023699,0.0000023649,0.0000023601,0.0000023580, -0.0000023578,0.0000023584,0.0000023595,0.0000023600,0.0000023593, -0.0000023587,0.0000023590,0.0000023603,0.0000023622,0.0000023648, -0.0000023684,0.0000023726,0.0000023765,0.0000023819,0.0000023876, -0.0000023925,0.0000023961,0.0000023989,0.0000024000,0.0000023982, -0.0000023912,0.0000023832,0.0000023786,0.0000023765,0.0000023767, -0.0000023787,0.0000023799,0.0000023787,0.0000023725,0.0000023614, -0.0000023506,0.0000023440,0.0000023412,0.0000023389,0.0000023344, -0.0000023276,0.0000023182,0.0000023101,0.0000023064,0.0000023073, -0.0000023127,0.0000023198,0.0000023258,0.0000023281,0.0000023275, -0.0000023264,0.0000023270,0.0000023311,0.0000023381,0.0000023457, -0.0000023520,0.0000023574,0.0000023638,0.0000023747,0.0000023929, -0.0000024159,0.0000024375,0.0000024539,0.0000024663,0.0000024765, -0.0000024847,0.0000024894,0.0000024908,0.0000024913,0.0000024924, -0.0000024948,0.0000024980,0.0000025012,0.0000025038,0.0000025050, -0.0000025047,0.0000025026,0.0000024987,0.0000024934,0.0000024874, -0.0000024815,0.0000024769,0.0000024737,0.0000024708,0.0000024668, -0.0000024598,0.0000024506,0.0000024399,0.0000024294,0.0000024214, -0.0000024165,0.0000024129,0.0000024096,0.0000024058,0.0000024024, -0.0000023994,0.0000023971,0.0000023962,0.0000023972,0.0000023998, -0.0000024021,0.0000024040,0.0000024057,0.0000024068,0.0000024065, -0.0000024042,0.0000024003,0.0000023945,0.0000023876,0.0000023799, -0.0000023714,0.0000023643,0.0000023570,0.0000023508,0.0000023481, -0.0000023462,0.0000023464,0.0000023476,0.0000023505,0.0000023542, -0.0000023577,0.0000023606,0.0000023621,0.0000023623,0.0000023622, -0.0000023625,0.0000023640,0.0000023662,0.0000023689,0.0000023721, -0.0000023748,0.0000023772,0.0000023769,0.0000023755,0.0000023711, -0.0000023642,0.0000023562,0.0000023492,0.0000023438,0.0000023428, -0.0000023427,0.0000023448,0.0000023475,0.0000023507,0.0000023540, -0.0000023571,0.0000023597,0.0000023623,0.0000023653,0.0000023688, -0.0000023720,0.0000023739,0.0000023747,0.0000023743,0.0000023729, -0.0000023707,0.0000023677,0.0000023639,0.0000023601,0.0000023560, -0.0000023512,0.0000023454,0.0000023392,0.0000023337,0.0000023308, -0.0000023299,0.0000023296,0.0000023290,0.0000023278,0.0000023262, -0.0000023237,0.0000023194,0.0000023133,0.0000023069,0.0000023015, -0.0000022975,0.0000022964,0.0000022979,0.0000023005,0.0000023026, -0.0000023037,0.0000023045,0.0000023059,0.0000023082,0.0000023110, -0.0000023145,0.0000023182,0.0000023220,0.0000023260,0.0000023291, -0.0000023312,0.0000023344,0.0000023400,0.0000023490,0.0000023617, -0.0000023762,0.0000023905,0.0000024042,0.0000024178,0.0000024316, -0.0000024443,0.0000024540,0.0000024594,0.0000024601,0.0000024584, -0.0000024561,0.0000024546,0.0000024538,0.0000024526,0.0000024514, -0.0000024487,0.0000024466,0.0000024436,0.0000024399,0.0000024360, -0.0000024332,0.0000024308,0.0000024292,0.0000024279,0.0000024267, -0.0000024251,0.0000024244,0.0000024248,0.0000024257,0.0000024269, -0.0000024288,0.0000024323,0.0000024366,0.0000024418,0.0000024470, -0.0000024507,0.0000024519,0.0000024508,0.0000024479,0.0000024418, -0.0000024316,0.0000024191,0.0000024076,0.0000023984,0.0000023915, -0.0000023884,0.0000023865,0.0000023807,0.0000023717,0.0000023654, -0.0000023598,0.0000023440,0.0000023214,0.0000023057,0.0000023018, -0.0000023033,0.0000023048,0.0000023053,0.0000023058,0.0000023094, -0.0000023133,0.0000023160,0.0000023189,0.0000023231,0.0000023255, -0.0000023222,0.0000023150,0.0000023097,0.0000023083,0.0000023084, -0.0000023076,0.0000023049,0.0000023006,0.0000022966,0.0000022923, -0.0000022861,0.0000022786,0.0000022720,0.0000022678,0.0000022651, -0.0000022652,0.0000022656,0.0000022659,0.0000022659,0.0000022656, -0.0000022645,0.0000022636,0.0000022706,0.0000022930,0.0000023127, -0.0000023161,0.0000023151,0.0000023124,0.0000023134,0.0000023154, -0.0000023159,0.0000023230,0.0000023323,0.0000023395,0.0000023459, -0.0000023528,0.0000023609,0.0000023656,0.0000023666,0.0000023647, -0.0000023618,0.0000023603,0.0000023562,0.0000023503,0.0000023456, -0.0000023395,0.0000023275,0.0000023066,0.0000022922,0.0000022940, -0.0000023049,0.0000023177,0.0000023291,0.0000023353,0.0000023363, -0.0000023365,0.0000023356,0.0000023335,0.0000023304,0.0000023267, -0.0000023206,0.0000023100,0.0000022982,0.0000022828,0.0000022690, -0.0000022628,0.0000022627,0.0000022650,0.0000022701,0.0000022782, -0.0000022880,0.0000022967,0.0000022977,0.0000022959,0.0000022968, -0.0000022985,0.0000022989,0.0000022984,0.0000022967,0.0000022945, -0.0000022918,0.0000022876,0.0000022819,0.0000022760,0.0000022720, -0.0000022682,0.0000022638,0.0000022612,0.0000022580,0.0000022501, -0.0000022413,0.0000022386,0.0000022362,0.0000022295,0.0000022258, -0.0000022303,0.0000022381,0.0000022464,0.0000022550,0.0000022587, -0.0000022542,0.0000022416,0.0000022343,0.0000022370,0.0000022476, -0.0000022566,0.0000022618,0.0000022656,0.0000022679,0.0000022652, -0.0000022613,0.0000022633,0.0000022730,0.0000022826,0.0000022886, -0.0000022936,0.0000023024,0.0000023129,0.0000023175,0.0000023158, -0.0000023072,0.0000022927,0.0000022757,0.0000022548,0.0000022324, -0.0000022193,0.0000022193,0.0000022294,0.0000022404,0.0000022449, -0.0000022441,0.0000022386,0.0000022301,0.0000022217,0.0000022168, -0.0000022150,0.0000022150,0.0000022173,0.0000022218,0.0000022279, -0.0000022350,0.0000022425,0.0000022501,0.0000022585,0.0000022691, -0.0000022812,0.0000022924,0.0000023001,0.0000023039,0.0000023066, -0.0000023090,0.0000023091,0.0000023063,0.0000023019,0.0000023012, -0.0000023043,0.0000023092,0.0000023148,0.0000023197,0.0000023236, -0.0000023260,0.0000023264,0.0000023256,0.0000023253,0.0000023258, -0.0000023274,0.0000023308,0.0000023350,0.0000023379,0.0000023383, -0.0000023363,0.0000023320,0.0000023268,0.0000023196,0.0000023102, -0.0000023014,0.0000022928,0.0000022835,0.0000022750,0.0000022686, -0.0000022665,0.0000022689,0.0000022733,0.0000022792,0.0000022889, -0.0000023009,0.0000023083,0.0000023090,0.0000023075,0.0000023042, -0.0000022979,0.0000022977,0.0000023149,0.0000023332,0.0000023458, -0.0000023585,0.0000023672,0.0000023685,0.0000023677,0.0000023689, -0.0000023704,0.0000023716,0.0000023739,0.0000023771,0.0000023815, -0.0000023889,0.0000023982,0.0000024049,0.0000024079,0.0000024130, -0.0000024221,0.0000024280,0.0000024276,0.0000024251,0.0000024255, -0.0000024276,0.0000024277,0.0000024223,0.0000024161,0.0000024162, -0.0000024202,0.0000024204,0.0000024196,0.0000024163,0.0000024056, -0.0000023949,0.0000023838,0.0000023755,0.0000023732,0.0000023737, -0.0000023740,0.0000023734,0.0000023741,0.0000023765,0.0000023773, -0.0000023762,0.0000023734,0.0000023741,0.0000023796,0.0000023838, -0.0000023864,0.0000023894,0.0000023900,0.0000023910,0.0000023968, -0.0000024020,0.0000024022,0.0000023992,0.0000023961,0.0000023944, -0.0000023927,0.0000023885,0.0000023812,0.0000023744,0.0000023707, -0.0000023683,0.0000023652,0.0000023631,0.0000023636,0.0000023683, -0.0000023744,0.0000023804,0.0000023859,0.0000023902,0.0000023924, -0.0000023927,0.0000023913,0.0000023881,0.0000023835,0.0000023786, -0.0000023738,0.0000023694,0.0000023665,0.0000023660,0.0000023685, -0.0000023735,0.0000023803,0.0000023880,0.0000023963,0.0000024047, -0.0000024118,0.0000024148,0.0000024151,0.0000024122,0.0000024059, -0.0000023999,0.0000023962,0.0000023953,0.0000023950,0.0000023962, -0.0000024001,0.0000024045,0.0000024089,0.0000024127,0.0000024154, -0.0000024170,0.0000024176,0.0000024173,0.0000024159,0.0000024130, -0.0000024097,0.0000024044,0.0000024011,0.0000023969,0.0000023936, -0.0000023916,0.0000023903,0.0000023892,0.0000023881,0.0000023862, -0.0000023829,0.0000023787,0.0000023742,0.0000023708,0.0000023677, -0.0000023651,0.0000023647,0.0000023628,0.0000023610,0.0000023598, -0.0000023585,0.0000023569,0.0000023562,0.0000023567,0.0000023572, -0.0000023584,0.0000023607,0.0000023631,0.0000023650,0.0000023670, -0.0000023696,0.0000023727,0.0000023761,0.0000023793,0.0000023824, -0.0000023856,0.0000023886,0.0000023913,0.0000023932,0.0000023942, -0.0000023942,0.0000023937,0.0000023925,0.0000023906,0.0000023880, -0.0000023849,0.0000023816,0.0000023784,0.0000023755,0.0000023736, -0.0000023731,0.0000023738,0.0000023754,0.0000023776,0.0000023798, -0.0000023824,0.0000023849,0.0000023869,0.0000023881,0.0000023889, -0.0000023894,0.0000023896,0.0000023896,0.0000023900,0.0000023913, -0.0000023934,0.0000023962,0.0000023988,0.0000024004,0.0000024021, -0.0000024039,0.0000024035,0.0000024003,0.0000023962,0.0000023944, -0.0000023945,0.0000023949,0.0000023973,0.0000024004,0.0000023999, -0.0000023925,0.0000023787,0.0000023624,0.0000023449,0.0000023288, -0.0000023174,0.0000023055,0.0000022911,0.0000022805,0.0000022715, -0.0000022601,0.0000022501,0.0000022448,0.0000022427,0.0000022427, -0.0000022430,0.0000022420,0.0000022384,0.0000022343,0.0000022321, -0.0000022315,0.0000022309,0.0000022302,0.0000022290,0.0000022260, -0.0000022200,0.0000022133,0.0000022130,0.0000022238,0.0000022388, -0.0000022479,0.0000022499,0.0000022498,0.0000022488,0.0000022466, -0.0000022426,0.0000022372,0.0000022319,0.0000022261,0.0000022182, -0.0000022088,0.0000022027,0.0000022041,0.0000022086,0.0000022050, -0.0000021917,0.0000021789,0.0000021684,0.0000021627,0.0000021680, -0.0000021834,0.0000021886,0.0000021832,0.0000021796,0.0000021838, -0.0000021958,0.0000022145,0.0000022356,0.0000022503,0.0000022545, -0.0000022563,0.0000022654,0.0000022813,0.0000022965,0.0000023051, -0.0000023104,0.0000023222,0.0000023430,0.0000023616,0.0000023693, -0.0000023710,0.0000023745,0.0000023804,0.0000023852,0.0000023866, -0.0000023858,0.0000023815,0.0000023754,0.0000023707,0.0000023693, -0.0000023705,0.0000023730,0.0000023744,0.0000023741,0.0000023709, -0.0000023624,0.0000023507,0.0000023393,0.0000023289,0.0000023196, -0.0000023113,0.0000023014,0.0000022884,0.0000022728,0.0000022563, -0.0000022411,0.0000022282,0.0000022170,0.0000022062,0.0000021962, -0.0000021877,0.0000021792,0.0000021686,0.0000021566,0.0000021451, -0.0000021349,0.0000021258,0.0000021172,0.0000021091,0.0000021021, -0.0000020959,0.0000020896,0.0000020818,0.0000020750,0.0000020696, -0.0000020679,0.0000020701,0.0000020750,0.0000020797,0.0000020844, -0.0000020897,0.0000020946,0.0000020986,0.0000021013,0.0000021030, -0.0000021054,0.0000021066,0.0000021064,0.0000021045,0.0000021000, -0.0000020934,0.0000020862,0.0000020796,0.0000020769,0.0000020800, -0.0000020897,0.0000021059,0.0000021275,0.0000021517,0.0000021735, -0.0000021887,0.0000021980,0.0000022058,0.0000022141,0.0000022230, -0.0000022357,0.0000022564,0.0000022808,0.0000022977,0.0000023012, -0.0000022937,0.0000022804,0.0000022702,0.0000022685,0.0000022754, -0.0000022847,0.0000022946,0.0000023121,0.0000023357,0.0000023541, -0.0000023667,0.0000023807,0.0000023962,0.0000024111,0.0000024270, -0.0000024434,0.0000024558,0.0000024642,0.0000024754,0.0000024898, -0.0000024976,0.0000024972,0.0000024939,0.0000024932,0.0000024944, -0.0000024951,0.0000024946,0.0000024936,0.0000024933,0.0000024946, -0.0000024967,0.0000024979,0.0000024983,0.0000024991,0.0000025000, -0.0000024997,0.0000024972,0.0000024940,0.0000024916,0.0000024909, -0.0000024911,0.0000024924,0.0000024972,0.0000025053,0.0000025110, -0.0000025095,0.0000024997,0.0000024849,0.0000024684,0.0000024489, -0.0000024299,0.0000024185,0.0000024095,0.0000023934,0.0000023748, -0.0000023611,0.0000023533,0.0000023509,0.0000023528,0.0000023590, -0.0000023702,0.0000023814,0.0000023871,0.0000023886,0.0000023892, -0.0000023894,0.0000023890,0.0000023883,0.0000023875,0.0000023872, -0.0000023881,0.0000023902,0.0000023922,0.0000023923,0.0000023904, -0.0000023864,0.0000023819,0.0000023779,0.0000023743,0.0000023703, -0.0000023659,0.0000023614,0.0000023575,0.0000023549,0.0000023544, -0.0000023560,0.0000023595,0.0000023648,0.0000023720,0.0000023801, -0.0000023884,0.0000023959,0.0000024024,0.0000024080,0.0000024137, -0.0000024211,0.0000024331,0.0000024514,0.0000024753,0.0000025008, -0.0000025226,0.0000025379,0.0000025468,0.0000025510,0.0000025520, -0.0000025517,0.0000025508,0.0000025503,0.0000025505,0.0000025515, -0.0000025530,0.0000025551,0.0000025579,0.0000025607,0.0000025625, -0.0000025620,0.0000025582,0.0000025514,0.0000025447,0.0000025421, -0.0000025419,0.0000025379,0.0000025324,0.0000025314,0.0000025279, -0.0000025105,0.0000024878,0.0000024745,0.0000024708,0.0000024673, -0.0000024597,0.0000024538,0.0000024531,0.0000024483,0.0000024258, -0.0000023942,0.0000023742,0.0000023694,0.0000023678,0.0000023572, -0.0000023317,0.0000022998,0.0000022758,0.0000022631,0.0000022544, -0.0000022425,0.0000022273,0.0000022106,0.0000021938,0.0000021798, -0.0000021690,0.0000021647,0.0000021668,0.0000021719,0.0000021793, -0.0000021840,0.0000021847,0.0000021843,0.0000021888,0.0000021968, -0.0000021973,0.0000021872,0.0000021696,0.0000021525,0.0000021409, -0.0000021360,0.0000021333,0.0000021297,0.0000021269,0.0000021244, -0.0000021232,0.0000021218,0.0000021200,0.0000021173,0.0000021149, -0.0000021141,0.0000021159,0.0000021183,0.0000021193,0.0000021182, -0.0000021167,0.0000021154,0.0000021139,0.0000021107,0.0000021060, -0.0000021028,0.0000021026,0.0000021033,0.0000021049,0.0000021068, -0.0000021084,0.0000021094,0.0000021100,0.0000021110,0.0000021129, -0.0000021159,0.0000021195,0.0000021226,0.0000021256,0.0000021284, -0.0000021328,0.0000021393,0.0000021466,0.0000021536,0.0000021597, -0.0000021640,0.0000021666,0.0000021687,0.0000021705,0.0000021716, -0.0000021716,0.0000021706,0.0000021685,0.0000021668,0.0000021657, -0.0000021651,0.0000021654,0.0000021661,0.0000021673,0.0000021689, -0.0000021708,0.0000021732,0.0000021754,0.0000021766,0.0000021767, -0.0000021756,0.0000021743,0.0000021732,0.0000021723,0.0000021702, -0.0000021672,0.0000021647,0.0000021630,0.0000021616,0.0000021601, -0.0000021583,0.0000021562,0.0000021548,0.0000021548,0.0000021552, -0.0000021558,0.0000021565,0.0000021564,0.0000021558,0.0000021544, -0.0000021528,0.0000021524,0.0000021538,0.0000021566,0.0000021608, -0.0000021656,0.0000021694,0.0000021726,0.0000021756,0.0000021779, -0.0000021795,0.0000021814,0.0000021850,0.0000021922,0.0000022032, -0.0000022175,0.0000022322,0.0000022436,0.0000022512,0.0000022549, -0.0000022556,0.0000022553,0.0000022559,0.0000022561,0.0000022554, -0.0000022536,0.0000022508,0.0000022472,0.0000022441,0.0000022417, -0.0000022404,0.0000022403,0.0000022411,0.0000022420,0.0000022421, -0.0000022418,0.0000022416,0.0000022418,0.0000022420,0.0000022425, -0.0000022428,0.0000022425,0.0000022420,0.0000022415,0.0000022405, -0.0000022390,0.0000022381,0.0000022374,0.0000022359,0.0000022333, -0.0000022307,0.0000022287,0.0000022264,0.0000022233,0.0000022200, -0.0000022170,0.0000022138,0.0000022104,0.0000022075,0.0000022059, -0.0000022040,0.0000021995,0.0000021886,0.0000021740,0.0000021663, -0.0000021686,0.0000021777,0.0000021848,0.0000021863,0.0000021850, -0.0000021769,0.0000021667,0.0000021629,0.0000021644,0.0000021672, -0.0000021688,0.0000021686,0.0000021681,0.0000021683,0.0000021683, -0.0000021670,0.0000021661,0.0000021672,0.0000021705,0.0000021749, -0.0000021790,0.0000021828,0.0000021874,0.0000021932,0.0000021995, -0.0000022056,0.0000022111,0.0000022155,0.0000022185,0.0000022208, -0.0000022224,0.0000022223,0.0000022195,0.0000022145,0.0000022090, -0.0000022048,0.0000022017,0.0000021998,0.0000022001,0.0000022019, -0.0000022035,0.0000022038,0.0000022041,0.0000022060,0.0000022086, -0.0000022092,0.0000022079,0.0000022026,0.0000021938,0.0000021830, -0.0000021689,0.0000021510,0.0000021348,0.0000021253,0.0000021203, -0.0000021157,0.0000021103,0.0000021059,0.0000021040,0.0000021034, -0.0000021017,0.0000021009,0.0000021022,0.0000021006,0.0000021015, -0.0000021239,0.0000021602,0.0000021865,0.0000022030,0.0000022178, -0.0000022284,0.0000022347,0.0000022412,0.0000022487,0.0000022545, -0.0000022581,0.0000022617,0.0000022654,0.0000022674,0.0000022676, -0.0000022679,0.0000022694,0.0000022717,0.0000022736,0.0000022756, -0.0000022793,0.0000022838,0.0000022874,0.0000022886,0.0000022878, -0.0000022844,0.0000022796,0.0000022755,0.0000022731,0.0000022730, -0.0000022742,0.0000022772,0.0000022816,0.0000022869,0.0000022921, -0.0000022964,0.0000022994,0.0000023007,0.0000023003,0.0000022985, -0.0000022962,0.0000022941,0.0000022921,0.0000022901,0.0000022877, -0.0000022851,0.0000022829,0.0000022805,0.0000022771,0.0000022731, -0.0000022692,0.0000022641,0.0000022530,0.0000022312,0.0000022018, -0.0000021684,0.0000021664,0.0000021737,0.0000021851,0.0000021925, -0.0000021982,0.0000022043,0.0000022074,0.0000022080,0.0000022110, -0.0000022107,0.0000021935,0.0000021733,0.0000021741,0.0000021911, -0.0000022155,0.0000022498,0.0000022804,0.0000022890,0.0000022871, -0.0000022858,0.0000022898,0.0000022987,0.0000023067,0.0000023103, -0.0000023106,0.0000023114,0.0000023151,0.0000023232,0.0000023356, -0.0000023473,0.0000023541,0.0000023539,0.0000023474,0.0000023423, -0.0000023420,0.0000023417,0.0000023377,0.0000023318,0.0000023241, -0.0000023131,0.0000023017,0.0000022981,0.0000023019,0.0000023067, -0.0000023085,0.0000023089,0.0000023092,0.0000023089,0.0000023079, -0.0000023065,0.0000023042,0.0000023007,0.0000022975,0.0000022951, -0.0000022923,0.0000022887,0.0000022852,0.0000022837,0.0000022856, -0.0000022904,0.0000022948,0.0000022980,0.0000023023,0.0000023081, -0.0000023132,0.0000023158,0.0000023163,0.0000023170,0.0000023181, -0.0000023172,0.0000023143,0.0000023097,0.0000023059,0.0000023021, -0.0000022983,0.0000022954,0.0000022913,0.0000022879,0.0000022874, -0.0000022879,0.0000022909,0.0000022961,0.0000022984,0.0000022986, -0.0000022987,0.0000022992,0.0000022990,0.0000022976,0.0000022935, -0.0000022900,0.0000022883,0.0000022868,0.0000022874,0.0000022898, -0.0000022906,0.0000022882,0.0000022825,0.0000022775,0.0000022722, -0.0000022663,0.0000022611,0.0000022596,0.0000022602,0.0000022671, -0.0000022774,0.0000022888,0.0000022991,0.0000023071,0.0000023127, -0.0000023175,0.0000023245,0.0000023344,0.0000023443,0.0000023517, -0.0000023562,0.0000023583,0.0000023604,0.0000023634,0.0000023666, -0.0000023696,0.0000023704,0.0000023684,0.0000023644,0.0000023616, -0.0000023600,0.0000023593,0.0000023591,0.0000023592,0.0000023584, -0.0000023571,0.0000023567,0.0000023568,0.0000023572,0.0000023583, -0.0000023604,0.0000023638,0.0000023682,0.0000023730,0.0000023790, -0.0000023847,0.0000023896,0.0000023936,0.0000023971,0.0000024002, -0.0000024012,0.0000023974,0.0000023884,0.0000023794,0.0000023741, -0.0000023731,0.0000023749,0.0000023771,0.0000023772,0.0000023730, -0.0000023631,0.0000023507,0.0000023413,0.0000023367,0.0000023342, -0.0000023307,0.0000023248,0.0000023173,0.0000023104,0.0000023070, -0.0000023073,0.0000023110,0.0000023164,0.0000023218,0.0000023250, -0.0000023252,0.0000023237,0.0000023236,0.0000023250,0.0000023287, -0.0000023342,0.0000023409,0.0000023479,0.0000023536,0.0000023595, -0.0000023699,0.0000023866,0.0000024067,0.0000024262,0.0000024427, -0.0000024562,0.0000024668,0.0000024746,0.0000024795,0.0000024829, -0.0000024858,0.0000024895,0.0000024940,0.0000024981,0.0000025013, -0.0000025030,0.0000025029,0.0000025010,0.0000024971,0.0000024919, -0.0000024862,0.0000024803,0.0000024744,0.0000024687,0.0000024635, -0.0000024583,0.0000024518,0.0000024436,0.0000024340,0.0000024238, -0.0000024152,0.0000024096,0.0000024061,0.0000024033,0.0000024005, -0.0000023977,0.0000023955,0.0000023938,0.0000023936,0.0000023952, -0.0000023978,0.0000024007,0.0000024033,0.0000024058,0.0000024079, -0.0000024087,0.0000024090,0.0000024086,0.0000024067,0.0000024033, -0.0000023991,0.0000023941,0.0000023881,0.0000023810,0.0000023730, -0.0000023649,0.0000023579,0.0000023520,0.0000023468,0.0000023454, -0.0000023463,0.0000023490,0.0000023533,0.0000023578,0.0000023611, -0.0000023624,0.0000023629,0.0000023629,0.0000023624,0.0000023625, -0.0000023638,0.0000023663,0.0000023699,0.0000023730,0.0000023754, -0.0000023746,0.0000023721,0.0000023673,0.0000023606,0.0000023539, -0.0000023490,0.0000023459,0.0000023441,0.0000023448,0.0000023466, -0.0000023495,0.0000023531,0.0000023564,0.0000023585,0.0000023599, -0.0000023614,0.0000023630,0.0000023640,0.0000023640,0.0000023627, -0.0000023604,0.0000023577,0.0000023551,0.0000023524,0.0000023499, -0.0000023476,0.0000023456,0.0000023435,0.0000023406,0.0000023389, -0.0000023386,0.0000023388,0.0000023383,0.0000023365,0.0000023333, -0.0000023295,0.0000023250,0.0000023201,0.0000023145,0.0000023079, -0.0000023008,0.0000022951,0.0000022918,0.0000022915,0.0000022927, -0.0000022949,0.0000022970,0.0000022983,0.0000023001,0.0000023035, -0.0000023077,0.0000023119,0.0000023152,0.0000023182,0.0000023212, -0.0000023230,0.0000023229,0.0000023228,0.0000023238,0.0000023270, -0.0000023328,0.0000023423,0.0000023546,0.0000023672,0.0000023786, -0.0000023889,0.0000023997,0.0000024111,0.0000024231,0.0000024349, -0.0000024440,0.0000024487,0.0000024496,0.0000024482,0.0000024462, -0.0000024451,0.0000024462,0.0000024500,0.0000024542,0.0000024562, -0.0000024563,0.0000024549,0.0000024519,0.0000024478,0.0000024438, -0.0000024403,0.0000024368,0.0000024337,0.0000024322,0.0000024320, -0.0000024327,0.0000024347,0.0000024369,0.0000024393,0.0000024418, -0.0000024441,0.0000024456,0.0000024460,0.0000024449,0.0000024427, -0.0000024386,0.0000024312,0.0000024211,0.0000024117,0.0000024052, -0.0000024003,0.0000023960,0.0000023929,0.0000023887,0.0000023800, -0.0000023701,0.0000023641,0.0000023572,0.0000023413,0.0000023229, -0.0000023120,0.0000023089,0.0000023074,0.0000023055,0.0000023060, -0.0000023089,0.0000023114,0.0000023141,0.0000023181,0.0000023209, -0.0000023175,0.0000023093,0.0000023030,0.0000023012,0.0000023014, -0.0000023019,0.0000023026,0.0000023017,0.0000022994,0.0000022969, -0.0000022936,0.0000022881,0.0000022805,0.0000022734,0.0000022686, -0.0000022660,0.0000022648,0.0000022655,0.0000022665,0.0000022667, -0.0000022661,0.0000022647,0.0000022629,0.0000022630,0.0000022737, -0.0000022979,0.0000023161,0.0000023179,0.0000023163,0.0000023139, -0.0000023152,0.0000023179,0.0000023163,0.0000023217,0.0000023334, -0.0000023422,0.0000023473,0.0000023530,0.0000023596,0.0000023622, -0.0000023622,0.0000023614,0.0000023596,0.0000023558,0.0000023492, -0.0000023434,0.0000023410,0.0000023389,0.0000023329,0.0000023166, -0.0000022993,0.0000022971,0.0000023028,0.0000023122,0.0000023240, -0.0000023314,0.0000023349,0.0000023368,0.0000023366,0.0000023344, -0.0000023296,0.0000023211,0.0000023072,0.0000022921,0.0000022787, -0.0000022684,0.0000022636,0.0000022629,0.0000022645,0.0000022703, -0.0000022809,0.0000022919,0.0000022969,0.0000022965,0.0000022957, -0.0000022988,0.0000023012,0.0000023010,0.0000022986,0.0000022947, -0.0000022908,0.0000022871,0.0000022825,0.0000022771,0.0000022718, -0.0000022685,0.0000022662,0.0000022627,0.0000022587,0.0000022531, -0.0000022448,0.0000022376,0.0000022358,0.0000022324,0.0000022250, -0.0000022232,0.0000022291,0.0000022379,0.0000022472,0.0000022555, -0.0000022576,0.0000022501,0.0000022378,0.0000022332,0.0000022390, -0.0000022509,0.0000022587,0.0000022626,0.0000022669,0.0000022705, -0.0000022667,0.0000022620,0.0000022663,0.0000022782,0.0000022861, -0.0000022899,0.0000022961,0.0000023081,0.0000023193,0.0000023222, -0.0000023185,0.0000023085,0.0000022902,0.0000022670,0.0000022421, -0.0000022195,0.0000022100,0.0000022158,0.0000022281,0.0000022398, -0.0000022446,0.0000022438,0.0000022379,0.0000022292,0.0000022213, -0.0000022172,0.0000022158,0.0000022160,0.0000022186,0.0000022235, -0.0000022307,0.0000022393,0.0000022482,0.0000022568,0.0000022652, -0.0000022752,0.0000022864,0.0000022964,0.0000023033,0.0000023064, -0.0000023073,0.0000023083,0.0000023073,0.0000023033,0.0000022990, -0.0000022989,0.0000023031,0.0000023096,0.0000023161,0.0000023223, -0.0000023269,0.0000023293,0.0000023295,0.0000023285,0.0000023275, -0.0000023279,0.0000023296,0.0000023322,0.0000023355,0.0000023385, -0.0000023396,0.0000023381,0.0000023345,0.0000023305,0.0000023266, -0.0000023199,0.0000023112,0.0000023024,0.0000022932,0.0000022843, -0.0000022760,0.0000022692,0.0000022671,0.0000022696,0.0000022744, -0.0000022815,0.0000022914,0.0000023008,0.0000023052,0.0000023050, -0.0000023038,0.0000023014,0.0000022964,0.0000022969,0.0000023143, -0.0000023327,0.0000023427,0.0000023536,0.0000023644,0.0000023680, -0.0000023673,0.0000023673,0.0000023687,0.0000023701,0.0000023719, -0.0000023743,0.0000023781,0.0000023848,0.0000023946,0.0000024023, -0.0000024065,0.0000024128,0.0000024223,0.0000024273,0.0000024262, -0.0000024241,0.0000024252,0.0000024267,0.0000024246,0.0000024181, -0.0000024143,0.0000024171,0.0000024206,0.0000024199,0.0000024194, -0.0000024134,0.0000024030,0.0000023920,0.0000023800,0.0000023749, -0.0000023750,0.0000023756,0.0000023749,0.0000023743,0.0000023753, -0.0000023773,0.0000023778,0.0000023758,0.0000023729,0.0000023732, -0.0000023786,0.0000023835,0.0000023859,0.0000023887,0.0000023897, -0.0000023900,0.0000023943,0.0000024003,0.0000024017,0.0000023996, -0.0000023962,0.0000023935,0.0000023916,0.0000023898,0.0000023854, -0.0000023776,0.0000023698,0.0000023655,0.0000023639,0.0000023628, -0.0000023612,0.0000023601,0.0000023589,0.0000023576,0.0000023587, -0.0000023603,0.0000023616,0.0000023624,0.0000023626,0.0000023616, -0.0000023597,0.0000023572,0.0000023543,0.0000023511,0.0000023479, -0.0000023457,0.0000023457,0.0000023474,0.0000023509,0.0000023562, -0.0000023633,0.0000023717,0.0000023814,0.0000023920,0.0000024021, -0.0000024098,0.0000024130,0.0000024111,0.0000024072,0.0000024016, -0.0000023968,0.0000023923,0.0000023903,0.0000023902,0.0000023904, -0.0000023922,0.0000023936,0.0000023944,0.0000023952,0.0000023963, -0.0000023977,0.0000023990,0.0000023996,0.0000023993,0.0000023987, -0.0000023974,0.0000023961,0.0000023941,0.0000023932,0.0000023931, -0.0000023920,0.0000023910,0.0000023898,0.0000023870,0.0000023833, -0.0000023796,0.0000023762,0.0000023728,0.0000023698,0.0000023674, -0.0000023656,0.0000023643,0.0000023625,0.0000023602,0.0000023584, -0.0000023574,0.0000023565,0.0000023559,0.0000023566,0.0000023586, -0.0000023585,0.0000023583,0.0000023595,0.0000023610,0.0000023635, -0.0000023667,0.0000023705,0.0000023745,0.0000023789,0.0000023836, -0.0000023876,0.0000023905,0.0000023925,0.0000023934,0.0000023930, -0.0000023919,0.0000023898,0.0000023868,0.0000023831,0.0000023793, -0.0000023755,0.0000023718,0.0000023696,0.0000023691,0.0000023695, -0.0000023711,0.0000023729,0.0000023753,0.0000023780,0.0000023806, -0.0000023822,0.0000023831,0.0000023839,0.0000023844,0.0000023846, -0.0000023850,0.0000023863,0.0000023887,0.0000023920,0.0000023953, -0.0000023975,0.0000023991,0.0000024014,0.0000024034,0.0000024023, -0.0000023974,0.0000023911,0.0000023872,0.0000023867,0.0000023881, -0.0000023925,0.0000023967,0.0000023961,0.0000023886,0.0000023735, -0.0000023552,0.0000023377,0.0000023233,0.0000023120,0.0000022996, -0.0000022858,0.0000022744,0.0000022640,0.0000022552,0.0000022506, -0.0000022478,0.0000022457,0.0000022451,0.0000022449,0.0000022435, -0.0000022394,0.0000022347,0.0000022322,0.0000022315,0.0000022312, -0.0000022304,0.0000022280,0.0000022246,0.0000022234,0.0000022285, -0.0000022392,0.0000022477,0.0000022501,0.0000022504,0.0000022503, -0.0000022500,0.0000022492,0.0000022470,0.0000022419,0.0000022351, -0.0000022289,0.0000022230,0.0000022154,0.0000022069,0.0000022015, -0.0000022033,0.0000022084,0.0000022053,0.0000021925,0.0000021794, -0.0000021684,0.0000021600,0.0000021638,0.0000021775,0.0000021834, -0.0000021781,0.0000021743,0.0000021777,0.0000021904,0.0000022100, -0.0000022323,0.0000022497,0.0000022560,0.0000022565,0.0000022624, -0.0000022780,0.0000022965,0.0000023083,0.0000023121,0.0000023170, -0.0000023303,0.0000023462,0.0000023550,0.0000023580,0.0000023611, -0.0000023646,0.0000023665,0.0000023665,0.0000023642,0.0000023587, -0.0000023528,0.0000023499,0.0000023509,0.0000023553,0.0000023600, -0.0000023621,0.0000023620,0.0000023587,0.0000023504,0.0000023401, -0.0000023303,0.0000023205,0.0000023113,0.0000023016,0.0000022897, -0.0000022753,0.0000022598,0.0000022435,0.0000022274,0.0000022125, -0.0000021986,0.0000021858,0.0000021740,0.0000021628,0.0000021510, -0.0000021384,0.0000021265,0.0000021173,0.0000021116,0.0000021079, -0.0000021048,0.0000021019,0.0000020991,0.0000020946,0.0000020883, -0.0000020807,0.0000020739,0.0000020698,0.0000020705,0.0000020769, -0.0000020851,0.0000020927,0.0000020998,0.0000021060,0.0000021107, -0.0000021136,0.0000021146,0.0000021142,0.0000021126,0.0000021104, -0.0000021075,0.0000021038,0.0000020989,0.0000020924,0.0000020844, -0.0000020769,0.0000020716,0.0000020708,0.0000020751,0.0000020860, -0.0000021038,0.0000021280,0.0000021542,0.0000021757,0.0000021891, -0.0000021960,0.0000022012,0.0000022083,0.0000022193,0.0000022372, -0.0000022622,0.0000022859,0.0000022969,0.0000022934,0.0000022809, -0.0000022675,0.0000022615,0.0000022655,0.0000022762,0.0000022872, -0.0000023011,0.0000023231,0.0000023452,0.0000023592,0.0000023711, -0.0000023863,0.0000024022,0.0000024177,0.0000024351,0.0000024512, -0.0000024619,0.0000024711,0.0000024836,0.0000024946,0.0000024975, -0.0000024963,0.0000024954,0.0000024964,0.0000024984,0.0000025003, -0.0000025007,0.0000024987,0.0000024967,0.0000024973,0.0000024987, -0.0000024989,0.0000024983,0.0000024977,0.0000024972,0.0000024958, -0.0000024935,0.0000024911,0.0000024896,0.0000024890,0.0000024900, -0.0000024956,0.0000025042,0.0000025086,0.0000025064,0.0000024952, -0.0000024788,0.0000024597,0.0000024381,0.0000024210,0.0000024121, -0.0000024009,0.0000023820,0.0000023644,0.0000023533,0.0000023493, -0.0000023510,0.0000023560,0.0000023638,0.0000023743,0.0000023836, -0.0000023888,0.0000023903,0.0000023898,0.0000023880,0.0000023865, -0.0000023856,0.0000023848,0.0000023841,0.0000023844,0.0000023854, -0.0000023857,0.0000023844,0.0000023811,0.0000023764,0.0000023716, -0.0000023675,0.0000023638,0.0000023598,0.0000023553,0.0000023500, -0.0000023449,0.0000023418,0.0000023413,0.0000023428,0.0000023455, -0.0000023491,0.0000023538,0.0000023596,0.0000023657,0.0000023719, -0.0000023785,0.0000023857,0.0000023929,0.0000023997,0.0000024074, -0.0000024188,0.0000024358,0.0000024582,0.0000024833,0.0000025073, -0.0000025270,0.0000025403,0.0000025463,0.0000025466,0.0000025447, -0.0000025426,0.0000025418,0.0000025426,0.0000025444,0.0000025463, -0.0000025484,0.0000025505,0.0000025515,0.0000025503,0.0000025466, -0.0000025412,0.0000025364,0.0000025347,0.0000025340,0.0000025296, -0.0000025245,0.0000025240,0.0000025212,0.0000025046,0.0000024825, -0.0000024694,0.0000024652,0.0000024618,0.0000024554,0.0000024495, -0.0000024477,0.0000024470,0.0000024377,0.0000024129,0.0000023848, -0.0000023693,0.0000023662,0.0000023642,0.0000023572,0.0000023373, -0.0000023079,0.0000022808,0.0000022629,0.0000022508,0.0000022386, -0.0000022237,0.0000022079,0.0000021921,0.0000021773,0.0000021663, -0.0000021630,0.0000021661,0.0000021732,0.0000021807,0.0000021857, -0.0000021865,0.0000021860,0.0000021892,0.0000021938,0.0000021937, -0.0000021829,0.0000021631,0.0000021438,0.0000021324,0.0000021275, -0.0000021260,0.0000021255,0.0000021251,0.0000021256,0.0000021263, -0.0000021259,0.0000021234,0.0000021198,0.0000021161,0.0000021152, -0.0000021163,0.0000021185,0.0000021198,0.0000021192,0.0000021179, -0.0000021163,0.0000021135,0.0000021097,0.0000021073,0.0000021060, -0.0000021050,0.0000021056,0.0000021068,0.0000021080,0.0000021093, -0.0000021101,0.0000021101,0.0000021098,0.0000021105,0.0000021126, -0.0000021164,0.0000021204,0.0000021236,0.0000021263,0.0000021305, -0.0000021359,0.0000021420,0.0000021480,0.0000021534,0.0000021569, -0.0000021585,0.0000021594,0.0000021598,0.0000021601,0.0000021599, -0.0000021586,0.0000021578,0.0000021579,0.0000021587,0.0000021602, -0.0000021617,0.0000021629,0.0000021638,0.0000021656,0.0000021686, -0.0000021718,0.0000021741,0.0000021755,0.0000021758,0.0000021764, -0.0000021774,0.0000021786,0.0000021783,0.0000021760,0.0000021724, -0.0000021688,0.0000021658,0.0000021636,0.0000021622,0.0000021612, -0.0000021594,0.0000021578,0.0000021568,0.0000021567,0.0000021572, -0.0000021575,0.0000021574,0.0000021570,0.0000021554,0.0000021537, -0.0000021533,0.0000021541,0.0000021565,0.0000021601,0.0000021637, -0.0000021661,0.0000021678,0.0000021694,0.0000021712,0.0000021733, -0.0000021751,0.0000021771,0.0000021807,0.0000021888,0.0000022018, -0.0000022171,0.0000022315,0.0000022427,0.0000022498,0.0000022535, -0.0000022550,0.0000022562,0.0000022570,0.0000022575,0.0000022570, -0.0000022548,0.0000022512,0.0000022468,0.0000022429,0.0000022399, -0.0000022385,0.0000022380,0.0000022382,0.0000022381,0.0000022382, -0.0000022386,0.0000022394,0.0000022406,0.0000022420,0.0000022427, -0.0000022428,0.0000022425,0.0000022422,0.0000022414,0.0000022398, -0.0000022382,0.0000022367,0.0000022345,0.0000022313,0.0000022277, -0.0000022234,0.0000022184,0.0000022140,0.0000022108,0.0000022081, -0.0000022055,0.0000022037,0.0000022030,0.0000022017,0.0000021993, -0.0000021937,0.0000021815,0.0000021690,0.0000021659,0.0000021713, -0.0000021802,0.0000021849,0.0000021854,0.0000021825,0.0000021728, -0.0000021631,0.0000021594,0.0000021601,0.0000021632,0.0000021668, -0.0000021690,0.0000021693,0.0000021688,0.0000021675,0.0000021656, -0.0000021650,0.0000021664,0.0000021698,0.0000021748,0.0000021798, -0.0000021841,0.0000021883,0.0000021925,0.0000021974,0.0000022028, -0.0000022076,0.0000022111,0.0000022132,0.0000022150,0.0000022172, -0.0000022180,0.0000022166,0.0000022125,0.0000022078,0.0000022044, -0.0000022019,0.0000022001,0.0000022003,0.0000022027,0.0000022061, -0.0000022085,0.0000022088,0.0000022083,0.0000022078,0.0000022063, -0.0000022040,0.0000022011,0.0000021955,0.0000021871,0.0000021772, -0.0000021640,0.0000021467,0.0000021304,0.0000021197,0.0000021132, -0.0000021074,0.0000021024,0.0000021001,0.0000021000,0.0000020999, -0.0000020995,0.0000021003,0.0000021007,0.0000021000,0.0000021077, -0.0000021395,0.0000021747,0.0000021963,0.0000022120,0.0000022247, -0.0000022323,0.0000022381,0.0000022455,0.0000022524,0.0000022569, -0.0000022607,0.0000022644,0.0000022669,0.0000022681,0.0000022692, -0.0000022711,0.0000022728,0.0000022736,0.0000022739,0.0000022751, -0.0000022780,0.0000022806,0.0000022812,0.0000022798,0.0000022768, -0.0000022734,0.0000022703,0.0000022685,0.0000022686,0.0000022704, -0.0000022736,0.0000022781,0.0000022833,0.0000022884,0.0000022925, -0.0000022951,0.0000022955,0.0000022941,0.0000022921,0.0000022902, -0.0000022880,0.0000022853,0.0000022822,0.0000022792,0.0000022772, -0.0000022759,0.0000022741,0.0000022715,0.0000022686,0.0000022642, -0.0000022530,0.0000022318,0.0000022050,0.0000021816,0.0000021704, -0.0000021775,0.0000021874,0.0000021942,0.0000022001,0.0000022073, -0.0000022116,0.0000022113,0.0000022110,0.0000022134,0.0000022108, -0.0000021913,0.0000021718,0.0000021756,0.0000021955,0.0000022234, -0.0000022588,0.0000022835,0.0000022876,0.0000022838,0.0000022843, -0.0000022917,0.0000023012,0.0000023071,0.0000023084,0.0000023086, -0.0000023104,0.0000023148,0.0000023236,0.0000023351,0.0000023448, -0.0000023499,0.0000023486,0.0000023431,0.0000023407,0.0000023418, -0.0000023419,0.0000023381,0.0000023311,0.0000023210,0.0000023088, -0.0000023011,0.0000023019,0.0000023061,0.0000023073,0.0000023064, -0.0000023060,0.0000023067,0.0000023071,0.0000023069,0.0000023059, -0.0000023042,0.0000023023,0.0000023014,0.0000023002,0.0000022976, -0.0000022942,0.0000022913,0.0000022907,0.0000022936,0.0000022986, -0.0000023035,0.0000023081,0.0000023140,0.0000023210,0.0000023275, -0.0000023319,0.0000023335,0.0000023340,0.0000023345,0.0000023337, -0.0000023310,0.0000023262,0.0000023218,0.0000023184,0.0000023147, -0.0000023097,0.0000023012,0.0000022932,0.0000022897,0.0000022890, -0.0000022913,0.0000022960,0.0000022984,0.0000022985,0.0000022988, -0.0000023004,0.0000023012,0.0000023009,0.0000022975,0.0000022950, -0.0000022943,0.0000022938,0.0000022949,0.0000022983,0.0000023013, -0.0000023019,0.0000022995,0.0000022967,0.0000022916,0.0000022831, -0.0000022735,0.0000022655,0.0000022610,0.0000022608,0.0000022646, -0.0000022707,0.0000022786,0.0000022873,0.0000022968,0.0000023055, -0.0000023120,0.0000023188,0.0000023263,0.0000023348,0.0000023441, -0.0000023508,0.0000023547,0.0000023575,0.0000023596,0.0000023618, -0.0000023645,0.0000023654,0.0000023641,0.0000023621,0.0000023603, -0.0000023597,0.0000023592,0.0000023589,0.0000023576,0.0000023552, -0.0000023536,0.0000023529,0.0000023526,0.0000023524,0.0000023527, -0.0000023536,0.0000023562,0.0000023603,0.0000023654,0.0000023716, -0.0000023780,0.0000023840,0.0000023894,0.0000023943,0.0000023989, -0.0000024015,0.0000024015,0.0000023950,0.0000023833,0.0000023735, -0.0000023699,0.0000023709,0.0000023739,0.0000023748,0.0000023727, -0.0000023647,0.0000023520,0.0000023401,0.0000023332,0.0000023298, -0.0000023270,0.0000023223,0.0000023168,0.0000023117,0.0000023080, -0.0000023074,0.0000023090,0.0000023126,0.0000023169,0.0000023201, -0.0000023223,0.0000023246,0.0000023260,0.0000023264,0.0000023253, -0.0000023256,0.0000023287,0.0000023353,0.0000023421,0.0000023477, -0.0000023546,0.0000023648,0.0000023787,0.0000023950,0.0000024116, -0.0000024273,0.0000024412,0.0000024527,0.0000024615,0.0000024675, -0.0000024721,0.0000024769,0.0000024821,0.0000024870,0.0000024909, -0.0000024937,0.0000024951,0.0000024947,0.0000024922,0.0000024880, -0.0000024827,0.0000024768,0.0000024696,0.0000024610,0.0000024523, -0.0000024443,0.0000024370,0.0000024302,0.0000024229,0.0000024150, -0.0000024077,0.0000024023,0.0000023987,0.0000023957,0.0000023927, -0.0000023897,0.0000023874,0.0000023860,0.0000023862,0.0000023877, -0.0000023902,0.0000023931,0.0000023961,0.0000023989,0.0000024018, -0.0000024042,0.0000024063,0.0000024081,0.0000024076,0.0000024064, -0.0000024046,0.0000024027,0.0000024002,0.0000023969,0.0000023925, -0.0000023868,0.0000023803,0.0000023725,0.0000023636,0.0000023559, -0.0000023500,0.0000023476,0.0000023471,0.0000023499,0.0000023538, -0.0000023575,0.0000023606,0.0000023626,0.0000023631,0.0000023626, -0.0000023623,0.0000023621,0.0000023632,0.0000023654,0.0000023684, -0.0000023706,0.0000023719,0.0000023703,0.0000023683,0.0000023653, -0.0000023614,0.0000023570,0.0000023523,0.0000023491,0.0000023479, -0.0000023491,0.0000023513,0.0000023541,0.0000023562,0.0000023573, -0.0000023581,0.0000023588,0.0000023591,0.0000023588,0.0000023578, -0.0000023558,0.0000023533,0.0000023506,0.0000023485,0.0000023469, -0.0000023461,0.0000023455,0.0000023458,0.0000023462,0.0000023466, -0.0000023467,0.0000023458,0.0000023438,0.0000023402,0.0000023352, -0.0000023294,0.0000023239,0.0000023196,0.0000023152,0.0000023093, -0.0000023019,0.0000022956,0.0000022920,0.0000022909,0.0000022916, -0.0000022939,0.0000022964,0.0000022979,0.0000023002,0.0000023048, -0.0000023103,0.0000023162,0.0000023211,0.0000023247,0.0000023273, -0.0000023285,0.0000023284,0.0000023273,0.0000023255,0.0000023245, -0.0000023248,0.0000023248,0.0000023287,0.0000023337,0.0000023397, -0.0000023477,0.0000023566,0.0000023652,0.0000023731,0.0000023815, -0.0000023918,0.0000024043,0.0000024174,0.0000024293,0.0000024380, -0.0000024419,0.0000024432,0.0000024457,0.0000024484,0.0000024512, -0.0000024544,0.0000024567,0.0000024581,0.0000024578,0.0000024557, -0.0000024530,0.0000024498,0.0000024466,0.0000024437,0.0000024412, -0.0000024390,0.0000024370,0.0000024356,0.0000024348,0.0000024346, -0.0000024344,0.0000024340,0.0000024338,0.0000024335,0.0000024324, -0.0000024305,0.0000024262,0.0000024194,0.0000024130,0.0000024093, -0.0000024068,0.0000024036,0.0000023990,0.0000023929,0.0000023834, -0.0000023719,0.0000023641,0.0000023593,0.0000023499,0.0000023349, -0.0000023228,0.0000023173,0.0000023140,0.0000023109,0.0000023107, -0.0000023116,0.0000023124,0.0000023135,0.0000023140,0.0000023102, -0.0000023017,0.0000022955,0.0000022948,0.0000022957,0.0000022955, -0.0000022949,0.0000022959,0.0000022967,0.0000022961,0.0000022944, -0.0000022923,0.0000022886,0.0000022820,0.0000022748,0.0000022694, -0.0000022660,0.0000022645,0.0000022653,0.0000022675,0.0000022692, -0.0000022692,0.0000022682,0.0000022663,0.0000022645,0.0000022665, -0.0000022797,0.0000023043,0.0000023193,0.0000023195,0.0000023188, -0.0000023163,0.0000023181,0.0000023202,0.0000023168,0.0000023207, -0.0000023319,0.0000023409,0.0000023461,0.0000023506,0.0000023539, -0.0000023561,0.0000023595,0.0000023597,0.0000023569,0.0000023522, -0.0000023462,0.0000023406,0.0000023381,0.0000023375,0.0000023349, -0.0000023239,0.0000023063,0.0000022991,0.0000023003,0.0000023072, -0.0000023147,0.0000023214,0.0000023277,0.0000023308,0.0000023296, -0.0000023248,0.0000023149,0.0000023016,0.0000022887,0.0000022794, -0.0000022706,0.0000022650,0.0000022638,0.0000022654,0.0000022725, -0.0000022844,0.0000022937,0.0000022959,0.0000022957,0.0000022971, -0.0000023002,0.0000023013,0.0000023005,0.0000022974,0.0000022924, -0.0000022874,0.0000022828,0.0000022778,0.0000022731,0.0000022683, -0.0000022642,0.0000022620,0.0000022598,0.0000022552,0.0000022470, -0.0000022377,0.0000022326,0.0000022316,0.0000022273,0.0000022218, -0.0000022228,0.0000022299,0.0000022397,0.0000022498,0.0000022563, -0.0000022555,0.0000022446,0.0000022344,0.0000022342,0.0000022434, -0.0000022554,0.0000022616,0.0000022643,0.0000022684,0.0000022716, -0.0000022671,0.0000022627,0.0000022684,0.0000022812,0.0000022880, -0.0000022908,0.0000022986,0.0000023122,0.0000023230,0.0000023250, -0.0000023206,0.0000023079,0.0000022868,0.0000022589,0.0000022301, -0.0000022084,0.0000022030,0.0000022124,0.0000022273,0.0000022387, -0.0000022427,0.0000022414,0.0000022358,0.0000022284,0.0000022217, -0.0000022181,0.0000022169,0.0000022171,0.0000022204,0.0000022269, -0.0000022358,0.0000022455,0.0000022545,0.0000022628,0.0000022708, -0.0000022800,0.0000022902,0.0000022988,0.0000023041,0.0000023058, -0.0000023058,0.0000023051,0.0000023033,0.0000022997,0.0000022968, -0.0000022979,0.0000023030,0.0000023104,0.0000023182,0.0000023250, -0.0000023297,0.0000023315,0.0000023315,0.0000023307,0.0000023296, -0.0000023292,0.0000023304,0.0000023325,0.0000023349,0.0000023376, -0.0000023395,0.0000023393,0.0000023361,0.0000023322,0.0000023290, -0.0000023254,0.0000023196,0.0000023115,0.0000023018,0.0000022921, -0.0000022834,0.0000022753,0.0000022693,0.0000022678,0.0000022712, -0.0000022773,0.0000022851,0.0000022937,0.0000023000,0.0000023019, -0.0000023015,0.0000023013,0.0000022996,0.0000022957,0.0000022974, -0.0000023145,0.0000023326,0.0000023404,0.0000023490,0.0000023613, -0.0000023677,0.0000023676,0.0000023661,0.0000023664,0.0000023683, -0.0000023703,0.0000023722,0.0000023754,0.0000023814,0.0000023915, -0.0000024001,0.0000024054,0.0000024127,0.0000024217,0.0000024251, -0.0000024238,0.0000024228,0.0000024244,0.0000024247,0.0000024209, -0.0000024147,0.0000024139,0.0000024181,0.0000024202,0.0000024198, -0.0000024190,0.0000024104,0.0000024003,0.0000023874,0.0000023774, -0.0000023762,0.0000023776,0.0000023778,0.0000023767,0.0000023756, -0.0000023761,0.0000023774,0.0000023779,0.0000023764,0.0000023736, -0.0000023738,0.0000023795,0.0000023848,0.0000023867,0.0000023887, -0.0000023900,0.0000023901,0.0000023926,0.0000023981,0.0000024007, -0.0000023993,0.0000023955,0.0000023916,0.0000023890,0.0000023882, -0.0000023874,0.0000023832,0.0000023752,0.0000023673,0.0000023628, -0.0000023612,0.0000023608,0.0000023601,0.0000023589,0.0000023572, -0.0000023556,0.0000023540,0.0000023530,0.0000023525,0.0000023526, -0.0000023524,0.0000023518,0.0000023506,0.0000023487,0.0000023462, -0.0000023432,0.0000023410,0.0000023400,0.0000023401,0.0000023413, -0.0000023438,0.0000023471,0.0000023512,0.0000023564,0.0000023631, -0.0000023720,0.0000023827,0.0000023941,0.0000024036,0.0000024088, -0.0000024102,0.0000024085,0.0000024034,0.0000023971,0.0000023919, -0.0000023878,0.0000023855,0.0000023840,0.0000023805,0.0000023789, -0.0000023778,0.0000023771,0.0000023771,0.0000023780,0.0000023796, -0.0000023817,0.0000023838,0.0000023856,0.0000023872,0.0000023891, -0.0000023906,0.0000023909,0.0000023906,0.0000023899,0.0000023880, -0.0000023854,0.0000023826,0.0000023803,0.0000023777,0.0000023759, -0.0000023747,0.0000023737,0.0000023728,0.0000023719,0.0000023706, -0.0000023690,0.0000023677,0.0000023665,0.0000023657,0.0000023656, -0.0000023654,0.0000023644,0.0000023630,0.0000023617,0.0000023604, -0.0000023600,0.0000023607,0.0000023621,0.0000023643,0.0000023669, -0.0000023714,0.0000023758,0.0000023802,0.0000023840,0.0000023874, -0.0000023898,0.0000023907,0.0000023904,0.0000023885,0.0000023853, -0.0000023823,0.0000023778,0.0000023737,0.0000023698,0.0000023677, -0.0000023668,0.0000023670,0.0000023682,0.0000023702,0.0000023727, -0.0000023748,0.0000023757,0.0000023761,0.0000023761,0.0000023762, -0.0000023765,0.0000023769,0.0000023781,0.0000023808,0.0000023848, -0.0000023895,0.0000023935,0.0000023959,0.0000023975,0.0000024003, -0.0000024028,0.0000024011,0.0000023937,0.0000023848,0.0000023795, -0.0000023790,0.0000023819,0.0000023883,0.0000023935,0.0000023932, -0.0000023849,0.0000023673,0.0000023477,0.0000023315,0.0000023187, -0.0000023075,0.0000022948,0.0000022808,0.0000022682,0.0000022584, -0.0000022542,0.0000022532,0.0000022508,0.0000022477,0.0000022465, -0.0000022465,0.0000022452,0.0000022412,0.0000022369,0.0000022348, -0.0000022344,0.0000022345,0.0000022340,0.0000022341,0.0000022380, -0.0000022459,0.0000022532,0.0000022552,0.0000022535,0.0000022521, -0.0000022520,0.0000022522,0.0000022526,0.0000022525,0.0000022500, -0.0000022435,0.0000022348,0.0000022271,0.0000022205,0.0000022133, -0.0000022061,0.0000022015,0.0000022031,0.0000022080,0.0000022058, -0.0000021936,0.0000021803,0.0000021687,0.0000021587,0.0000021594, -0.0000021709,0.0000021769,0.0000021724,0.0000021684,0.0000021711, -0.0000021842,0.0000022051,0.0000022288,0.0000022482,0.0000022569, -0.0000022574,0.0000022597,0.0000022731,0.0000022944,0.0000023102, -0.0000023145,0.0000023154,0.0000023218,0.0000023315,0.0000023370, -0.0000023388,0.0000023409,0.0000023428,0.0000023432,0.0000023428, -0.0000023403,0.0000023356,0.0000023317,0.0000023310,0.0000023345, -0.0000023413,0.0000023472,0.0000023502,0.0000023507,0.0000023473, -0.0000023391,0.0000023291,0.0000023186,0.0000023079,0.0000022977, -0.0000022871,0.0000022748,0.0000022609,0.0000022457,0.0000022291, -0.0000022120,0.0000021953,0.0000021789,0.0000021630,0.0000021478, -0.0000021340,0.0000021221,0.0000021130,0.0000021077,0.0000021061, -0.0000021060,0.0000021055,0.0000021033,0.0000021011,0.0000020983, -0.0000020944,0.0000020890,0.0000020828,0.0000020781,0.0000020775, -0.0000020821,0.0000020909,0.0000021005,0.0000021095,0.0000021167, -0.0000021222,0.0000021262,0.0000021282,0.0000021287,0.0000021278, -0.0000021250,0.0000021204,0.0000021146,0.0000021081,0.0000021011, -0.0000020932,0.0000020848,0.0000020761,0.0000020694,0.0000020659, -0.0000020673,0.0000020735,0.0000020859,0.0000021056,0.0000021313, -0.0000021576,0.0000021778,0.0000021886,0.0000021925,0.0000021960, -0.0000022043,0.0000022195,0.0000022425,0.0000022691,0.0000022878, -0.0000022913,0.0000022814,0.0000022668,0.0000022569,0.0000022567, -0.0000022665,0.0000022797,0.0000022924,0.0000023108,0.0000023340, -0.0000023515,0.0000023623,0.0000023752,0.0000023918,0.0000024085, -0.0000024256,0.0000024435,0.0000024573,0.0000024667,0.0000024771, -0.0000024888,0.0000024961,0.0000024974,0.0000024976,0.0000024992, -0.0000025016,0.0000025047,0.0000025068,0.0000025053,0.0000025010, -0.0000024983,0.0000024986,0.0000024991,0.0000024980,0.0000024960, -0.0000024942,0.0000024933,0.0000024922,0.0000024905,0.0000024886, -0.0000024870,0.0000024877,0.0000024934,0.0000025019,0.0000025053, -0.0000025028,0.0000024909,0.0000024732,0.0000024522,0.0000024296, -0.0000024143,0.0000024067,0.0000023939,0.0000023746,0.0000023592, -0.0000023512,0.0000023501,0.0000023544,0.0000023609,0.0000023682, -0.0000023763,0.0000023842,0.0000023895,0.0000023907,0.0000023892, -0.0000023862,0.0000023845,0.0000023842,0.0000023840,0.0000023837, -0.0000023837,0.0000023836,0.0000023826,0.0000023802,0.0000023764, -0.0000023720,0.0000023676,0.0000023636,0.0000023592,0.0000023542, -0.0000023487,0.0000023427,0.0000023377,0.0000023350,0.0000023350, -0.0000023365,0.0000023383,0.0000023404,0.0000023434,0.0000023475, -0.0000023514,0.0000023550,0.0000023592,0.0000023645,0.0000023706, -0.0000023779,0.0000023861,0.0000023960,0.0000024086,0.0000024241, -0.0000024431,0.0000024654,0.0000024896,0.0000025122,0.0000025293, -0.0000025384,0.0000025410,0.0000025392,0.0000025362,0.0000025348, -0.0000025353,0.0000025364,0.0000025376,0.0000025383,0.0000025382, -0.0000025366,0.0000025335,0.0000025301,0.0000025277,0.0000025271, -0.0000025259,0.0000025212,0.0000025167,0.0000025164,0.0000025132, -0.0000024963,0.0000024746,0.0000024620,0.0000024575,0.0000024537, -0.0000024487,0.0000024440,0.0000024414,0.0000024407,0.0000024384, -0.0000024251,0.0000024009,0.0000023772,0.0000023647,0.0000023614, -0.0000023606,0.0000023572,0.0000023429,0.0000023183,0.0000022904, -0.0000022666,0.0000022488,0.0000022342,0.0000022199,0.0000022046, -0.0000021879,0.0000021732,0.0000021636,0.0000021611,0.0000021646, -0.0000021727,0.0000021821,0.0000021887,0.0000021896,0.0000021880, -0.0000021890,0.0000021911,0.0000021902,0.0000021784,0.0000021567, -0.0000021355,0.0000021237,0.0000021194,0.0000021198,0.0000021218, -0.0000021237,0.0000021263,0.0000021293,0.0000021299,0.0000021276, -0.0000021231,0.0000021192,0.0000021180,0.0000021184,0.0000021199, -0.0000021207,0.0000021201,0.0000021182,0.0000021152,0.0000021123, -0.0000021117,0.0000021107,0.0000021096,0.0000021097,0.0000021105, -0.0000021114,0.0000021126,0.0000021139,0.0000021143,0.0000021134, -0.0000021121,0.0000021113,0.0000021123,0.0000021150,0.0000021187, -0.0000021216,0.0000021243,0.0000021276,0.0000021317,0.0000021366, -0.0000021423,0.0000021472,0.0000021494,0.0000021500,0.0000021497, -0.0000021493,0.0000021492,0.0000021488,0.0000021491,0.0000021504, -0.0000021527,0.0000021554,0.0000021574,0.0000021588,0.0000021599, -0.0000021620,0.0000021654,0.0000021692,0.0000021726,0.0000021748, -0.0000021763,0.0000021777,0.0000021793,0.0000021814,0.0000021831, -0.0000021833,0.0000021817,0.0000021787,0.0000021746,0.0000021699, -0.0000021660,0.0000021645,0.0000021638,0.0000021627,0.0000021610, -0.0000021594,0.0000021588,0.0000021584,0.0000021579,0.0000021576, -0.0000021568,0.0000021552,0.0000021540,0.0000021537,0.0000021543, -0.0000021565,0.0000021596,0.0000021624,0.0000021643,0.0000021649, -0.0000021649,0.0000021656,0.0000021677,0.0000021700,0.0000021715, -0.0000021736,0.0000021783,0.0000021871,0.0000021998,0.0000022147, -0.0000022288,0.0000022398,0.0000022466,0.0000022507,0.0000022537, -0.0000022559,0.0000022573,0.0000022572,0.0000022556,0.0000022535, -0.0000022503,0.0000022465,0.0000022422,0.0000022388,0.0000022367, -0.0000022352,0.0000022341,0.0000022335,0.0000022338,0.0000022351, -0.0000022372,0.0000022394,0.0000022410,0.0000022417,0.0000022419, -0.0000022418,0.0000022410,0.0000022394,0.0000022374,0.0000022349, -0.0000022318,0.0000022278,0.0000022226,0.0000022161,0.0000022101, -0.0000022061,0.0000022037,0.0000022018,0.0000022003,0.0000021996, -0.0000021986,0.0000021967,0.0000021944,0.0000021872,0.0000021742, -0.0000021655,0.0000021664,0.0000021744,0.0000021817,0.0000021841, -0.0000021841,0.0000021801,0.0000021706,0.0000021616,0.0000021578, -0.0000021577,0.0000021601,0.0000021646,0.0000021685,0.0000021696, -0.0000021686,0.0000021665,0.0000021647,0.0000021645,0.0000021665, -0.0000021703,0.0000021758,0.0000021818,0.0000021863,0.0000021895, -0.0000021919,0.0000021951,0.0000021993,0.0000022036,0.0000022070, -0.0000022092,0.0000022105,0.0000022116,0.0000022122,0.0000022116, -0.0000022090,0.0000022058,0.0000022035,0.0000022021,0.0000022010, -0.0000022012,0.0000022032,0.0000022069,0.0000022113,0.0000022134, -0.0000022128,0.0000022102,0.0000022054,0.0000022000,0.0000021968, -0.0000021945,0.0000021893,0.0000021819,0.0000021729,0.0000021592, -0.0000021405,0.0000021233,0.0000021121,0.0000021049,0.0000020993, -0.0000020962,0.0000020958,0.0000020974,0.0000020987,0.0000020992, -0.0000021001,0.0000021002,0.0000021012,0.0000021212,0.0000021583, -0.0000021874,0.0000022045,0.0000022187,0.0000022288,0.0000022348, -0.0000022418,0.0000022497,0.0000022556,0.0000022595,0.0000022631, -0.0000022660,0.0000022679,0.0000022693,0.0000022703,0.0000022709, -0.0000022705,0.0000022693,0.0000022691,0.0000022709,0.0000022734, -0.0000022746,0.0000022741,0.0000022716,0.0000022681,0.0000022649, -0.0000022638,0.0000022646,0.0000022666,0.0000022698,0.0000022745, -0.0000022797,0.0000022845,0.0000022880,0.0000022895,0.0000022889, -0.0000022870,0.0000022851,0.0000022834,0.0000022805,0.0000022767, -0.0000022730,0.0000022706,0.0000022695,0.0000022691,0.0000022682, -0.0000022661,0.0000022610,0.0000022488,0.0000022274,0.0000022021, -0.0000021819,0.0000021713,0.0000021822,0.0000021916,0.0000021979, -0.0000022035,0.0000022109,0.0000022161,0.0000022158,0.0000022137, -0.0000022142,0.0000022167,0.0000022100,0.0000021864,0.0000021720, -0.0000021804,0.0000022030,0.0000022345,0.0000022681,0.0000022838, -0.0000022830,0.0000022808,0.0000022846,0.0000022941,0.0000023027, -0.0000023061,0.0000023063,0.0000023072,0.0000023099,0.0000023145, -0.0000023231,0.0000023332,0.0000023413,0.0000023446,0.0000023420, -0.0000023373,0.0000023370,0.0000023397,0.0000023402,0.0000023359, -0.0000023270,0.0000023150,0.0000023057,0.0000023042,0.0000023073, -0.0000023092,0.0000023076,0.0000023051,0.0000023043,0.0000023048, -0.0000023057,0.0000023060,0.0000023054,0.0000023043,0.0000023042, -0.0000023047,0.0000023040,0.0000023015,0.0000022988,0.0000022973, -0.0000022976,0.0000023008,0.0000023057,0.0000023109,0.0000023168, -0.0000023244,0.0000023324,0.0000023396,0.0000023445,0.0000023460, -0.0000023455,0.0000023446,0.0000023425,0.0000023394,0.0000023358, -0.0000023331,0.0000023321,0.0000023307,0.0000023265,0.0000023166, -0.0000023053,0.0000022971,0.0000022927,0.0000022929,0.0000022966, -0.0000022993,0.0000022996,0.0000023003,0.0000023023,0.0000023037, -0.0000023037,0.0000023008,0.0000022981,0.0000022974,0.0000022973, -0.0000022990,0.0000023033,0.0000023078,0.0000023116,0.0000023131, -0.0000023135,0.0000023114,0.0000023049,0.0000022959,0.0000022860, -0.0000022772,0.0000022713,0.0000022677,0.0000022668,0.0000022691, -0.0000022700,0.0000022753,0.0000022848,0.0000022956,0.0000023057, -0.0000023129,0.0000023184,0.0000023255,0.0000023340,0.0000023420, -0.0000023490,0.0000023539,0.0000023561,0.0000023573,0.0000023581, -0.0000023580,0.0000023571,0.0000023555,0.0000023551,0.0000023559, -0.0000023567,0.0000023563,0.0000023541,0.0000023511,0.0000023489, -0.0000023477,0.0000023466,0.0000023460,0.0000023461,0.0000023468, -0.0000023489,0.0000023521,0.0000023564,0.0000023619,0.0000023682, -0.0000023751,0.0000023822,0.0000023894,0.0000023957,0.0000024002, -0.0000024021,0.0000023997,0.0000023898,0.0000023770,0.0000023688, -0.0000023668,0.0000023690,0.0000023714,0.0000023706,0.0000023654, -0.0000023546,0.0000023415,0.0000023319,0.0000023267,0.0000023237, -0.0000023204,0.0000023170,0.0000023136,0.0000023096,0.0000023070, -0.0000023067,0.0000023083,0.0000023114,0.0000023159,0.0000023218, -0.0000023269,0.0000023299,0.0000023300,0.0000023271,0.0000023243, -0.0000023216,0.0000023228,0.0000023276,0.0000023340,0.0000023417, -0.0000023500,0.0000023590,0.0000023693,0.0000023807,0.0000023932, -0.0000024068,0.0000024207,0.0000024336,0.0000024437,0.0000024514, -0.0000024576,0.0000024634,0.0000024686,0.0000024733,0.0000024774, -0.0000024806,0.0000024824,0.0000024823,0.0000024797,0.0000024748, -0.0000024679,0.0000024589,0.0000024483,0.0000024373,0.0000024272, -0.0000024196,0.0000024140,0.0000024091,0.0000024039,0.0000023988, -0.0000023945,0.0000023913,0.0000023882,0.0000023847,0.0000023810, -0.0000023778,0.0000023755,0.0000023748,0.0000023750,0.0000023758, -0.0000023770,0.0000023780,0.0000023790,0.0000023804,0.0000023821, -0.0000023839,0.0000023859,0.0000023881,0.0000023899,0.0000023915, -0.0000023926,0.0000023934,0.0000023936,0.0000023930,0.0000023896, -0.0000023870,0.0000023833,0.0000023780,0.0000023715,0.0000023646, -0.0000023584,0.0000023540,0.0000023517,0.0000023512,0.0000023511, -0.0000023528,0.0000023561,0.0000023594,0.0000023618,0.0000023629, -0.0000023635,0.0000023634,0.0000023635,0.0000023633,0.0000023641, -0.0000023653,0.0000023659,0.0000023668,0.0000023671,0.0000023670, -0.0000023652,0.0000023627,0.0000023596,0.0000023568,0.0000023553, -0.0000023550,0.0000023554,0.0000023559,0.0000023566,0.0000023567, -0.0000023565,0.0000023560,0.0000023550,0.0000023541,0.0000023531, -0.0000023515,0.0000023497,0.0000023481,0.0000023470,0.0000023464, -0.0000023464,0.0000023471,0.0000023478,0.0000023484,0.0000023472, -0.0000023453,0.0000023429,0.0000023393,0.0000023345,0.0000023289, -0.0000023238,0.0000023200,0.0000023167,0.0000023118,0.0000023051, -0.0000022986,0.0000022941,0.0000022921,0.0000022924,0.0000022948, -0.0000022976,0.0000023008,0.0000023060,0.0000023128,0.0000023203, -0.0000023278,0.0000023341,0.0000023386,0.0000023413,0.0000023429, -0.0000023443,0.0000023449,0.0000023446,0.0000023425,0.0000023387, -0.0000023350,0.0000023319,0.0000023294,0.0000023248,0.0000023216, -0.0000023217,0.0000023232,0.0000023260,0.0000023315,0.0000023395, -0.0000023495,0.0000023602,0.0000023725,0.0000023866,0.0000024009, -0.0000024159,0.0000024305,0.0000024417,0.0000024479,0.0000024505, -0.0000024515,0.0000024521,0.0000024517,0.0000024492,0.0000024459, -0.0000024422,0.0000024378,0.0000024334,0.0000024296,0.0000024261, -0.0000024227,0.0000024199,0.0000024184,0.0000024189,0.0000024198, -0.0000024207,0.0000024212,0.0000024218,0.0000024216,0.0000024198, -0.0000024173,0.0000024139,0.0000024113,0.0000024098,0.0000024083, -0.0000024055,0.0000024001,0.0000023918,0.0000023800,0.0000023677, -0.0000023601,0.0000023551,0.0000023477,0.0000023358,0.0000023254, -0.0000023209,0.0000023196,0.0000023179,0.0000023164,0.0000023144, -0.0000023133,0.0000023110,0.0000023043,0.0000022938,0.0000022867, -0.0000022859,0.0000022885,0.0000022904,0.0000022905,0.0000022902, -0.0000022913,0.0000022932,0.0000022939,0.0000022932,0.0000022918, -0.0000022895,0.0000022849,0.0000022790,0.0000022733,0.0000022688, -0.0000022663,0.0000022665,0.0000022687,0.0000022711,0.0000022727, -0.0000022730,0.0000022711,0.0000022679,0.0000022667,0.0000022703, -0.0000022862,0.0000023100,0.0000023216,0.0000023221,0.0000023218, -0.0000023189,0.0000023212,0.0000023222,0.0000023171,0.0000023173, -0.0000023270,0.0000023367,0.0000023420,0.0000023445,0.0000023475, -0.0000023529,0.0000023560,0.0000023559,0.0000023544,0.0000023511, -0.0000023448,0.0000023394,0.0000023363,0.0000023366,0.0000023364, -0.0000023278,0.0000023101,0.0000023000,0.0000022996,0.0000023009, -0.0000023049,0.0000023109,0.0000023157,0.0000023168,0.0000023138, -0.0000023071,0.0000022987,0.0000022897,0.0000022819,0.0000022737, -0.0000022681,0.0000022671,0.0000022693,0.0000022773,0.0000022870, -0.0000022925,0.0000022943,0.0000022956,0.0000022982,0.0000022999, -0.0000023000,0.0000022997,0.0000022973,0.0000022925,0.0000022869, -0.0000022816,0.0000022760,0.0000022707,0.0000022648,0.0000022596, -0.0000022567,0.0000022549,0.0000022507,0.0000022415,0.0000022313, -0.0000022270,0.0000022262,0.0000022221,0.0000022194,0.0000022242, -0.0000022340,0.0000022450,0.0000022528,0.0000022563,0.0000022523, -0.0000022397,0.0000022323,0.0000022369,0.0000022497,0.0000022615, -0.0000022665,0.0000022683,0.0000022718,0.0000022727,0.0000022669, -0.0000022633,0.0000022700,0.0000022824,0.0000022883,0.0000022913, -0.0000023008,0.0000023150,0.0000023243,0.0000023254,0.0000023210, -0.0000023059,0.0000022824,0.0000022525,0.0000022210,0.0000022012, -0.0000022001,0.0000022107,0.0000022268,0.0000022363,0.0000022394, -0.0000022375,0.0000022328,0.0000022275,0.0000022225,0.0000022192, -0.0000022180,0.0000022192,0.0000022236,0.0000022316,0.0000022419, -0.0000022521,0.0000022604,0.0000022674,0.0000022750,0.0000022836, -0.0000022925,0.0000022993,0.0000023029,0.0000023034,0.0000023019, -0.0000023001,0.0000022987,0.0000022970,0.0000022959,0.0000022979, -0.0000023038,0.0000023113,0.0000023196,0.0000023268,0.0000023310, -0.0000023319,0.0000023321,0.0000023315,0.0000023305,0.0000023301, -0.0000023305,0.0000023319,0.0000023337,0.0000023358,0.0000023379, -0.0000023387,0.0000023370,0.0000023333,0.0000023296,0.0000023264, -0.0000023227,0.0000023169,0.0000023084,0.0000022983,0.0000022891, -0.0000022810,0.0000022743,0.0000022703,0.0000022697,0.0000022744, -0.0000022817,0.0000022891,0.0000022952,0.0000022987,0.0000022992, -0.0000022992,0.0000022995,0.0000022984,0.0000022956,0.0000022989, -0.0000023159,0.0000023334,0.0000023400,0.0000023464,0.0000023590, -0.0000023675,0.0000023679,0.0000023649,0.0000023637,0.0000023654, -0.0000023679,0.0000023698,0.0000023727,0.0000023785,0.0000023885, -0.0000023974,0.0000024039,0.0000024122,0.0000024197,0.0000024215, -0.0000024206,0.0000024207,0.0000024225,0.0000024222,0.0000024174, -0.0000024128,0.0000024141,0.0000024191,0.0000024202,0.0000024202, -0.0000024169,0.0000024070,0.0000023966,0.0000023831,0.0000023767, -0.0000023787,0.0000023812,0.0000023812,0.0000023792,0.0000023771, -0.0000023762,0.0000023775,0.0000023784,0.0000023779,0.0000023760, -0.0000023766,0.0000023817,0.0000023868,0.0000023881,0.0000023892, -0.0000023906,0.0000023910,0.0000023922,0.0000023962,0.0000023992, -0.0000023985,0.0000023946,0.0000023898,0.0000023861,0.0000023850, -0.0000023851,0.0000023843,0.0000023802,0.0000023733,0.0000023668, -0.0000023630,0.0000023609,0.0000023599,0.0000023592,0.0000023581, -0.0000023565,0.0000023546,0.0000023534,0.0000023527,0.0000023521, -0.0000023512,0.0000023502,0.0000023490,0.0000023474,0.0000023450, -0.0000023425,0.0000023403,0.0000023391,0.0000023388,0.0000023391, -0.0000023405,0.0000023422,0.0000023454,0.0000023488,0.0000023515, -0.0000023542,0.0000023588,0.0000023663,0.0000023764,0.0000023876, -0.0000023980,0.0000024053,0.0000024083,0.0000024072,0.0000024034, -0.0000023973,0.0000023917,0.0000023865,0.0000023812,0.0000023764, -0.0000023726,0.0000023697,0.0000023671,0.0000023651,0.0000023645, -0.0000023645,0.0000023650,0.0000023661,0.0000023683,0.0000023715, -0.0000023752,0.0000023785,0.0000023809,0.0000023826,0.0000023833, -0.0000023826,0.0000023809,0.0000023787,0.0000023766,0.0000023755, -0.0000023751,0.0000023752,0.0000023750,0.0000023755,0.0000023757, -0.0000023755,0.0000023756,0.0000023760,0.0000023764,0.0000023772, -0.0000023781,0.0000023783,0.0000023776,0.0000023760,0.0000023739, -0.0000023713,0.0000023689,0.0000023678,0.0000023670,0.0000023661, -0.0000023668,0.0000023690,0.0000023703,0.0000023728,0.0000023739, -0.0000023766,0.0000023785,0.0000023794,0.0000023795,0.0000023785, -0.0000023774,0.0000023748,0.0000023720,0.0000023689,0.0000023669, -0.0000023656,0.0000023655,0.0000023671,0.0000023692,0.0000023717, -0.0000023743,0.0000023752,0.0000023747,0.0000023737,0.0000023716, -0.0000023700,0.0000023691,0.0000023695,0.0000023713,0.0000023745, -0.0000023792,0.0000023853,0.0000023910,0.0000023941,0.0000023960, -0.0000023998,0.0000024020,0.0000023983,0.0000023881,0.0000023772, -0.0000023719,0.0000023721,0.0000023767,0.0000023847,0.0000023906, -0.0000023905,0.0000023805,0.0000023607,0.0000023413,0.0000023269, -0.0000023148,0.0000023037,0.0000022909,0.0000022765,0.0000022634, -0.0000022558,0.0000022550,0.0000022553,0.0000022533,0.0000022500, -0.0000022488,0.0000022489,0.0000022481,0.0000022455,0.0000022434, -0.0000022428,0.0000022436,0.0000022459,0.0000022498,0.0000022553, -0.0000022607,0.0000022630,0.0000022615,0.0000022585,0.0000022569, -0.0000022570,0.0000022577,0.0000022581,0.0000022578,0.0000022566, -0.0000022531,0.0000022458,0.0000022361,0.0000022268,0.0000022189, -0.0000022124,0.0000022066,0.0000022026,0.0000022035,0.0000022074, -0.0000022057,0.0000021945,0.0000021811,0.0000021694,0.0000021584, -0.0000021561,0.0000021649,0.0000021708,0.0000021671,0.0000021632, -0.0000021652,0.0000021778,0.0000021992,0.0000022241,0.0000022453, -0.0000022567,0.0000022583,0.0000022584,0.0000022682,0.0000022897, -0.0000023094,0.0000023159,0.0000023162,0.0000023188,0.0000023225, -0.0000023232,0.0000023226,0.0000023234,0.0000023244,0.0000023246, -0.0000023244,0.0000023222,0.0000023189,0.0000023176,0.0000023187, -0.0000023236,0.0000023306,0.0000023360,0.0000023389,0.0000023395, -0.0000023354,0.0000023263,0.0000023153,0.0000023038,0.0000022926, -0.0000022824,0.0000022722,0.0000022603,0.0000022462,0.0000022304, -0.0000022131,0.0000021948,0.0000021760,0.0000021563,0.0000021373, -0.0000021217,0.0000021116,0.0000021062,0.0000021044,0.0000021048, -0.0000021058,0.0000021065,0.0000021056,0.0000021037,0.0000021019, -0.0000021003,0.0000020986,0.0000020963,0.0000020936,0.0000020919, -0.0000020931,0.0000020982,0.0000021068,0.0000021170,0.0000021269, -0.0000021348,0.0000021406,0.0000021440,0.0000021448,0.0000021443, -0.0000021423,0.0000021387,0.0000021331,0.0000021256,0.0000021168, -0.0000021075,0.0000020982,0.0000020883,0.0000020785,0.0000020704, -0.0000020658,0.0000020647,0.0000020672,0.0000020749,0.0000020887, -0.0000021094,0.0000021354,0.0000021610,0.0000021788,0.0000021861, -0.0000021878,0.0000021920,0.0000022036,0.0000022235,0.0000022497, -0.0000022741,0.0000022856,0.0000022810,0.0000022675,0.0000022546, -0.0000022507,0.0000022570,0.0000022712,0.0000022851,0.0000023002, -0.0000023213,0.0000023420,0.0000023545,0.0000023642,0.0000023795, -0.0000023983,0.0000024161,0.0000024336,0.0000024493,0.0000024608, -0.0000024705,0.0000024819,0.0000024918,0.0000024968,0.0000024987, -0.0000025018,0.0000025047,0.0000025075,0.0000025107,0.0000025113, -0.0000025075,0.0000025013,0.0000024983,0.0000024984,0.0000024979, -0.0000024949,0.0000024912,0.0000024893,0.0000024888,0.0000024883, -0.0000024870,0.0000024854,0.0000024857,0.0000024911,0.0000024991, -0.0000025023,0.0000024997,0.0000024876,0.0000024689,0.0000024462, -0.0000024230,0.0000024088,0.0000024022,0.0000023891,0.0000023711, -0.0000023583,0.0000023528,0.0000023536,0.0000023590,0.0000023654, -0.0000023709,0.0000023770,0.0000023833,0.0000023874,0.0000023882, -0.0000023863,0.0000023836,0.0000023825,0.0000023828,0.0000023831, -0.0000023829,0.0000023825,0.0000023815,0.0000023795,0.0000023767, -0.0000023729,0.0000023689,0.0000023650,0.0000023609,0.0000023558, -0.0000023496,0.0000023429,0.0000023368,0.0000023328,0.0000023318, -0.0000023329,0.0000023347,0.0000023363,0.0000023377,0.0000023399, -0.0000023425,0.0000023449,0.0000023471,0.0000023492,0.0000023514, -0.0000023541,0.0000023582,0.0000023647,0.0000023738,0.0000023853, -0.0000023986,0.0000024135,0.0000024305,0.0000024502,0.0000024719, -0.0000024941,0.0000025137,0.0000025276,0.0000025339,0.0000025341, -0.0000025317,0.0000025296,0.0000025287,0.0000025281,0.0000025272, -0.0000025258,0.0000025237,0.0000025213,0.0000025194,0.0000025188, -0.0000025186,0.0000025167,0.0000025121,0.0000025087,0.0000025089, -0.0000025051,0.0000024873,0.0000024656,0.0000024535,0.0000024489, -0.0000024446,0.0000024399,0.0000024366,0.0000024344,0.0000024330, -0.0000024321,0.0000024261,0.0000024111,0.0000023903,0.0000023705, -0.0000023590,0.0000023555,0.0000023563,0.0000023520,0.0000023445, -0.0000023275,0.0000023027,0.0000022749,0.0000022504,0.0000022316, -0.0000022156,0.0000021988,0.0000021820,0.0000021687,0.0000021608, -0.0000021589,0.0000021632,0.0000021741,0.0000021858,0.0000021925, -0.0000021930,0.0000021905,0.0000021883,0.0000021883,0.0000021858, -0.0000021740,0.0000021517,0.0000021295,0.0000021176,0.0000021140, -0.0000021158,0.0000021184,0.0000021218,0.0000021266,0.0000021301, -0.0000021305,0.0000021285,0.0000021251,0.0000021229,0.0000021216, -0.0000021212,0.0000021214,0.0000021211,0.0000021195,0.0000021166, -0.0000021151,0.0000021163,0.0000021166,0.0000021162,0.0000021164, -0.0000021172,0.0000021180,0.0000021188,0.0000021200,0.0000021207, -0.0000021200,0.0000021177,0.0000021145,0.0000021121,0.0000021115, -0.0000021134,0.0000021170,0.0000021200,0.0000021225,0.0000021250, -0.0000021280,0.0000021319,0.0000021364,0.0000021394,0.0000021407, -0.0000021407,0.0000021403,0.0000021402,0.0000021403,0.0000021412, -0.0000021434,0.0000021467,0.0000021502,0.0000021527,0.0000021549, -0.0000021570,0.0000021597,0.0000021631,0.0000021669,0.0000021707, -0.0000021738,0.0000021761,0.0000021780,0.0000021795,0.0000021812, -0.0000021830,0.0000021843,0.0000021845,0.0000021838,0.0000021822, -0.0000021783,0.0000021731,0.0000021690,0.0000021673,0.0000021670, -0.0000021664,0.0000021648,0.0000021631,0.0000021617,0.0000021603, -0.0000021587,0.0000021571,0.0000021555,0.0000021542,0.0000021537, -0.0000021537,0.0000021544,0.0000021563,0.0000021587,0.0000021610, -0.0000021626,0.0000021631,0.0000021628,0.0000021629,0.0000021639, -0.0000021654,0.0000021673,0.0000021695,0.0000021721,0.0000021766, -0.0000021848,0.0000021967,0.0000022110,0.0000022238,0.0000022336, -0.0000022410,0.0000022465,0.0000022507,0.0000022532,0.0000022542, -0.0000022541,0.0000022530,0.0000022510,0.0000022491,0.0000022458, -0.0000022419,0.0000022381,0.0000022351,0.0000022319,0.0000022296, -0.0000022290,0.0000022300,0.0000022321,0.0000022344,0.0000022364, -0.0000022378,0.0000022384,0.0000022386,0.0000022381,0.0000022365, -0.0000022339,0.0000022306,0.0000022269,0.0000022224,0.0000022166, -0.0000022106,0.0000022055,0.0000022022,0.0000022005,0.0000021989, -0.0000021973,0.0000021958,0.0000021938,0.0000021922,0.0000021894, -0.0000021798,0.0000021680,0.0000021640,0.0000021684,0.0000021769, -0.0000021821,0.0000021829,0.0000021826,0.0000021784,0.0000021703, -0.0000021626,0.0000021585,0.0000021575,0.0000021585,0.0000021619, -0.0000021662,0.0000021684,0.0000021679,0.0000021660,0.0000021645, -0.0000021644,0.0000021663,0.0000021705,0.0000021771,0.0000021837, -0.0000021880,0.0000021900,0.0000021914,0.0000021933,0.0000021961, -0.0000021996,0.0000022031,0.0000022059,0.0000022071,0.0000022072, -0.0000022069,0.0000022063,0.0000022049,0.0000022032,0.0000022023, -0.0000022022,0.0000022022,0.0000022028,0.0000022045,0.0000022077, -0.0000022124,0.0000022159,0.0000022165,0.0000022139,0.0000022073, -0.0000021984,0.0000021922,0.0000021904,0.0000021888,0.0000021841, -0.0000021772,0.0000021674,0.0000021519,0.0000021325,0.0000021156, -0.0000021045,0.0000020977,0.0000020935,0.0000020926,0.0000020939, -0.0000020969,0.0000020988,0.0000021000,0.0000021008,0.0000021005, -0.0000021076,0.0000021389,0.0000021748,0.0000021966,0.0000022118, -0.0000022241,0.0000022311,0.0000022373,0.0000022456,0.0000022533, -0.0000022581,0.0000022613,0.0000022644,0.0000022669,0.0000022683, -0.0000022686,0.0000022681,0.0000022668,0.0000022652,0.0000022646, -0.0000022657,0.0000022680,0.0000022689,0.0000022674,0.0000022642, -0.0000022609,0.0000022589,0.0000022587,0.0000022597,0.0000022620, -0.0000022654,0.0000022702,0.0000022756,0.0000022800,0.0000022823, -0.0000022824,0.0000022812,0.0000022796,0.0000022781,0.0000022757, -0.0000022719,0.0000022674,0.0000022641,0.0000022627,0.0000022626, -0.0000022627,0.0000022610,0.0000022544,0.0000022398,0.0000022181, -0.0000021956,0.0000021791,0.0000021726,0.0000021737,0.0000021963, -0.0000022026,0.0000022084,0.0000022153,0.0000022197,0.0000022198, -0.0000022176,0.0000022165,0.0000022183,0.0000022191,0.0000022047, -0.0000021807,0.0000021739,0.0000021883,0.0000022135,0.0000022476, -0.0000022750,0.0000022808,0.0000022787,0.0000022788,0.0000022861, -0.0000022964,0.0000023031,0.0000023042,0.0000023044,0.0000023066, -0.0000023094,0.0000023137,0.0000023216,0.0000023299,0.0000023364, -0.0000023385,0.0000023352,0.0000023314,0.0000023326,0.0000023359, -0.0000023360,0.0000023306,0.0000023200,0.0000023086,0.0000023041, -0.0000023073,0.0000023108,0.0000023105,0.0000023078,0.0000023047, -0.0000023028,0.0000023029,0.0000023041,0.0000023054,0.0000023060, -0.0000023063,0.0000023069,0.0000023075,0.0000023065,0.0000023044, -0.0000023028,0.0000023024,0.0000023032,0.0000023060,0.0000023102, -0.0000023150,0.0000023207,0.0000023285,0.0000023375,0.0000023451, -0.0000023499,0.0000023506,0.0000023489,0.0000023471,0.0000023443, -0.0000023406,0.0000023378,0.0000023368,0.0000023375,0.0000023381, -0.0000023360,0.0000023291,0.0000023202,0.0000023119,0.0000023043, -0.0000022996,0.0000022989,0.0000023005,0.0000023011,0.0000023024, -0.0000023050,0.0000023068,0.0000023069,0.0000023049,0.0000023022, -0.0000023009,0.0000022999,0.0000023010,0.0000023054,0.0000023108, -0.0000023168,0.0000023212,0.0000023241,0.0000023248,0.0000023219, -0.0000023161,0.0000023089,0.0000023014,0.0000022941,0.0000022869, -0.0000022796,0.0000022740,0.0000022694,0.0000022672,0.0000022682, -0.0000022744,0.0000022844,0.0000022950,0.0000023039,0.0000023114, -0.0000023179,0.0000023245,0.0000023321,0.0000023401,0.0000023471, -0.0000023513,0.0000023529,0.0000023526,0.0000023518,0.0000023491, -0.0000023471,0.0000023476,0.0000023495,0.0000023506,0.0000023506, -0.0000023493,0.0000023470,0.0000023453,0.0000023436,0.0000023415, -0.0000023405,0.0000023408,0.0000023422,0.0000023442,0.0000023467, -0.0000023502,0.0000023545,0.0000023594,0.0000023653,0.0000023726, -0.0000023813,0.0000023893,0.0000023958,0.0000023998,0.0000024002, -0.0000023949,0.0000023838,0.0000023717,0.0000023643,0.0000023631, -0.0000023648,0.0000023662,0.0000023644,0.0000023576,0.0000023459, -0.0000023338,0.0000023256,0.0000023211,0.0000023188,0.0000023173, -0.0000023151,0.0000023111,0.0000023070,0.0000023040,0.0000023037, -0.0000023069,0.0000023145,0.0000023228,0.0000023289,0.0000023320, -0.0000023327,0.0000023307,0.0000023264,0.0000023205,0.0000023162, -0.0000023159,0.0000023193,0.0000023262,0.0000023349,0.0000023438, -0.0000023518,0.0000023585,0.0000023652,0.0000023737,0.0000023849, -0.0000023973,0.0000024093,0.0000024198,0.0000024283,0.0000024354, -0.0000024413,0.0000024467,0.0000024519,0.0000024564,0.0000024599, -0.0000024620,0.0000024613,0.0000024573,0.0000024502,0.0000024407, -0.0000024299,0.0000024193,0.0000024099,0.0000024031,0.0000023984, -0.0000023947,0.0000023908,0.0000023865,0.0000023824,0.0000023786, -0.0000023747,0.0000023706,0.0000023664,0.0000023625,0.0000023595, -0.0000023573,0.0000023555,0.0000023542,0.0000023528,0.0000023512, -0.0000023496,0.0000023485,0.0000023479,0.0000023475,0.0000023474, -0.0000023481,0.0000023499,0.0000023527,0.0000023563,0.0000023603, -0.0000023641,0.0000023673,0.0000023698,0.0000023711,0.0000023716, -0.0000023710,0.0000023692,0.0000023667,0.0000023629,0.0000023608, -0.0000023582,0.0000023555,0.0000023523,0.0000023507,0.0000023510, -0.0000023527,0.0000023558,0.0000023591,0.0000023622,0.0000023641, -0.0000023651,0.0000023643,0.0000023630,0.0000023619,0.0000023613, -0.0000023610,0.0000023617,0.0000023629,0.0000023638,0.0000023645, -0.0000023638,0.0000023638,0.0000023640,0.0000023637,0.0000023628, -0.0000023615,0.0000023600,0.0000023586,0.0000023572,0.0000023557, -0.0000023541,0.0000023521,0.0000023506,0.0000023491,0.0000023472, -0.0000023454,0.0000023441,0.0000023434,0.0000023432,0.0000023437, -0.0000023440,0.0000023434,0.0000023421,0.0000023408,0.0000023394, -0.0000023372,0.0000023341,0.0000023305,0.0000023266,0.0000023229, -0.0000023195,0.0000023156,0.0000023105,0.0000023050,0.0000023008, -0.0000022990,0.0000022994,0.0000023019,0.0000023059,0.0000023118, -0.0000023191,0.0000023267,0.0000023336,0.0000023390,0.0000023432, -0.0000023465,0.0000023487,0.0000023504,0.0000023524,0.0000023549, -0.0000023568,0.0000023565,0.0000023546,0.0000023526,0.0000023505, -0.0000023470,0.0000023415,0.0000023338,0.0000023259,0.0000023188, -0.0000023107,0.0000023037,0.0000023021,0.0000023038,0.0000023098, -0.0000023192,0.0000023309,0.0000023430,0.0000023561,0.0000023719, -0.0000023898,0.0000024070,0.0000024216,0.0000024328,0.0000024407, -0.0000024446,0.0000024447,0.0000024422,0.0000024382,0.0000024328, -0.0000024274,0.0000024225,0.0000024184,0.0000024147,0.0000024115, -0.0000024096,0.0000024083,0.0000024078,0.0000024071,0.0000024063, -0.0000024052,0.0000024040,0.0000024025,0.0000024014,0.0000024010, -0.0000024014,0.0000024019,0.0000024004,0.0000023960,0.0000023892, -0.0000023800,0.0000023698,0.0000023600,0.0000023526,0.0000023458, -0.0000023371,0.0000023283,0.0000023228,0.0000023205,0.0000023202, -0.0000023192,0.0000023174,0.0000023141,0.0000023093,0.0000023008, -0.0000022895,0.0000022808,0.0000022785,0.0000022800,0.0000022826, -0.0000022854,0.0000022876,0.0000022896,0.0000022915,0.0000022936, -0.0000022947,0.0000022947,0.0000022936,0.0000022916,0.0000022888, -0.0000022851,0.0000022802,0.0000022750,0.0000022717,0.0000022707, -0.0000022715,0.0000022732,0.0000022746,0.0000022755,0.0000022749, -0.0000022717,0.0000022689,0.0000022693,0.0000022752,0.0000022928, -0.0000023155,0.0000023253,0.0000023253,0.0000023257,0.0000023222, -0.0000023236,0.0000023227,0.0000023138,0.0000023122,0.0000023199, -0.0000023285,0.0000023336,0.0000023388,0.0000023446,0.0000023492, -0.0000023519,0.0000023534,0.0000023536,0.0000023497,0.0000023443, -0.0000023388,0.0000023367,0.0000023370,0.0000023363,0.0000023281, -0.0000023136,0.0000023025,0.0000022980,0.0000022978,0.0000023007, -0.0000023038,0.0000023059,0.0000023060,0.0000023027,0.0000022982, -0.0000022923,0.0000022854,0.0000022789,0.0000022733,0.0000022718, -0.0000022753,0.0000022829,0.0000022880,0.0000022898,0.0000022924, -0.0000022953,0.0000022975,0.0000022985,0.0000022994,0.0000023001, -0.0000022985,0.0000022939,0.0000022886,0.0000022826,0.0000022761, -0.0000022688,0.0000022608,0.0000022547,0.0000022525,0.0000022515, -0.0000022472,0.0000022374,0.0000022265,0.0000022221,0.0000022212, -0.0000022190,0.0000022202,0.0000022283,0.0000022405,0.0000022514, -0.0000022561,0.0000022557,0.0000022473,0.0000022333,0.0000022312, -0.0000022416,0.0000022570,0.0000022677,0.0000022716,0.0000022734, -0.0000022760,0.0000022743,0.0000022667,0.0000022636,0.0000022710, -0.0000022822,0.0000022871,0.0000022915,0.0000023023,0.0000023161, -0.0000023241,0.0000023252,0.0000023192,0.0000023023,0.0000022774, -0.0000022471,0.0000022152,0.0000021979,0.0000021981,0.0000022099, -0.0000022256,0.0000022334,0.0000022348,0.0000022330,0.0000022296, -0.0000022266,0.0000022234,0.0000022203,0.0000022195,0.0000022224, -0.0000022287,0.0000022372,0.0000022474,0.0000022575,0.0000022651, -0.0000022709,0.0000022777,0.0000022857,0.0000022927,0.0000022974, -0.0000022994,0.0000022993,0.0000022977,0.0000022962,0.0000022956, -0.0000022956,0.0000022960,0.0000022986,0.0000023043,0.0000023121, -0.0000023198,0.0000023267,0.0000023305,0.0000023313,0.0000023312, -0.0000023312,0.0000023305,0.0000023298,0.0000023301,0.0000023309, -0.0000023323,0.0000023338,0.0000023356,0.0000023366,0.0000023363, -0.0000023341,0.0000023303,0.0000023262,0.0000023226,0.0000023184, -0.0000023119,0.0000023028,0.0000022935,0.0000022856,0.0000022791, -0.0000022745,0.0000022722,0.0000022729,0.0000022786,0.0000022858, -0.0000022917,0.0000022956,0.0000022973,0.0000022974,0.0000022974, -0.0000022980,0.0000022970,0.0000022957,0.0000023016,0.0000023193, -0.0000023355,0.0000023407,0.0000023455,0.0000023569,0.0000023664, -0.0000023674,0.0000023633,0.0000023602,0.0000023608,0.0000023638, -0.0000023666,0.0000023695,0.0000023749,0.0000023841,0.0000023929, -0.0000024008,0.0000024098,0.0000024155,0.0000024164,0.0000024159, -0.0000024172,0.0000024195,0.0000024191,0.0000024144,0.0000024122, -0.0000024154,0.0000024199,0.0000024201,0.0000024200,0.0000024138, -0.0000024040,0.0000023924,0.0000023803,0.0000023781,0.0000023822, -0.0000023843,0.0000023838,0.0000023813,0.0000023780,0.0000023763, -0.0000023780,0.0000023802,0.0000023808,0.0000023799,0.0000023802, -0.0000023841,0.0000023892,0.0000023906,0.0000023903,0.0000023912, -0.0000023923,0.0000023932,0.0000023955,0.0000023977,0.0000023973, -0.0000023936,0.0000023882,0.0000023840,0.0000023823,0.0000023825, -0.0000023823,0.0000023805,0.0000023764,0.0000023715,0.0000023674, -0.0000023639,0.0000023614,0.0000023599,0.0000023591,0.0000023585, -0.0000023579,0.0000023575,0.0000023571,0.0000023564,0.0000023551, -0.0000023533,0.0000023515,0.0000023495,0.0000023474,0.0000023458, -0.0000023446,0.0000023440,0.0000023437,0.0000023435,0.0000023432, -0.0000023431,0.0000023442,0.0000023457,0.0000023474,0.0000023494, -0.0000023514,0.0000023538,0.0000023579,0.0000023649,0.0000023741, -0.0000023838,0.0000023927,0.0000023998,0.0000024033,0.0000024033, -0.0000024004,0.0000023975,0.0000023914,0.0000023846,0.0000023783, -0.0000023731,0.0000023690,0.0000023654,0.0000023625,0.0000023600, -0.0000023578,0.0000023556,0.0000023547,0.0000023549,0.0000023565, -0.0000023590,0.0000023616,0.0000023642,0.0000023666,0.0000023682, -0.0000023686,0.0000023682,0.0000023679,0.0000023685,0.0000023694, -0.0000023707,0.0000023724,0.0000023739,0.0000023748,0.0000023755, -0.0000023766,0.0000023777,0.0000023789,0.0000023806,0.0000023832, -0.0000023855,0.0000023871,0.0000023876,0.0000023876,0.0000023870, -0.0000023854,0.0000023840,0.0000023828,0.0000023817,0.0000023799, -0.0000023781,0.0000023773,0.0000023768,0.0000023743,0.0000023730, -0.0000023727,0.0000023703,0.0000023683,0.0000023659,0.0000023633, -0.0000023612,0.0000023580,0.0000023558,0.0000023542,0.0000023540, -0.0000023550,0.0000023580,0.0000023624,0.0000023671,0.0000023716, -0.0000023752,0.0000023762,0.0000023761,0.0000023737,0.0000023699, -0.0000023666,0.0000023647,0.0000023651,0.0000023668,0.0000023690, -0.0000023729,0.0000023800,0.0000023876,0.0000023917,0.0000023950, -0.0000023993,0.0000024001,0.0000023935,0.0000023809,0.0000023698, -0.0000023655,0.0000023667,0.0000023723,0.0000023808,0.0000023877, -0.0000023878,0.0000023760,0.0000023549,0.0000023362,0.0000023230, -0.0000023119,0.0000023007,0.0000022878,0.0000022739,0.0000022615, -0.0000022552,0.0000022555,0.0000022572,0.0000022565,0.0000022545, -0.0000022539,0.0000022545,0.0000022549,0.0000022547,0.0000022548, -0.0000022562,0.0000022596,0.0000022645,0.0000022687,0.0000022705, -0.0000022700,0.0000022682,0.0000022669,0.0000022667,0.0000022672, -0.0000022676,0.0000022669,0.0000022649,0.0000022624,0.0000022592, -0.0000022544,0.0000022475,0.0000022382,0.0000022276,0.0000022190, -0.0000022136,0.0000022087,0.0000022041,0.0000022035,0.0000022065, -0.0000022055,0.0000021953,0.0000021822,0.0000021709,0.0000021592, -0.0000021541,0.0000021603,0.0000021652,0.0000021631,0.0000021588, -0.0000021600,0.0000021707,0.0000021915,0.0000022174,0.0000022406, -0.0000022553,0.0000022592,0.0000022585,0.0000022633,0.0000022823, -0.0000023050,0.0000023163,0.0000023179,0.0000023191,0.0000023203, -0.0000023189,0.0000023167,0.0000023158,0.0000023156,0.0000023157, -0.0000023151,0.0000023123,0.0000023097,0.0000023098,0.0000023124, -0.0000023173,0.0000023228,0.0000023264,0.0000023276,0.0000023270, -0.0000023218,0.0000023121,0.0000023008,0.0000022894,0.0000022782, -0.0000022678,0.0000022574,0.0000022451,0.0000022301,0.0000022132, -0.0000021949,0.0000021750,0.0000021539,0.0000021329,0.0000021162, -0.0000021071,0.0000021042,0.0000021042,0.0000021042,0.0000021058, -0.0000021078,0.0000021090,0.0000021091,0.0000021089,0.0000021090, -0.0000021092,0.0000021094,0.0000021090,0.0000021081,0.0000021078, -0.0000021096,0.0000021154,0.0000021255,0.0000021375,0.0000021490, -0.0000021580,0.0000021638,0.0000021663,0.0000021663,0.0000021643, -0.0000021606,0.0000021554,0.0000021486,0.0000021400,0.0000021294, -0.0000021180,0.0000021069,0.0000020958,0.0000020850,0.0000020757, -0.0000020691,0.0000020655,0.0000020652,0.0000020686,0.0000020777, -0.0000020923,0.0000021133,0.0000021395,0.0000021636,0.0000021780, -0.0000021824,0.0000021839,0.0000021905,0.0000022058,0.0000022295, -0.0000022562,0.0000022751,0.0000022785,0.0000022685,0.0000022551, -0.0000022474,0.0000022500,0.0000022622,0.0000022774,0.0000022916, -0.0000023091,0.0000023303,0.0000023462,0.0000023548,0.0000023664, -0.0000023855,0.0000024057,0.0000024232,0.0000024392,0.0000024525, -0.0000024633,0.0000024744,0.0000024858,0.0000024939,0.0000024986, -0.0000025029,0.0000025068,0.0000025095,0.0000025125,0.0000025151, -0.0000025136,0.0000025062,0.0000024991,0.0000024970,0.0000024969, -0.0000024941,0.0000024886,0.0000024843,0.0000024831,0.0000024836, -0.0000024843,0.0000024838,0.0000024840,0.0000024887,0.0000024961, -0.0000025000,0.0000024977,0.0000024858,0.0000024661,0.0000024421, -0.0000024180,0.0000024046,0.0000023992,0.0000023872,0.0000023703, -0.0000023593,0.0000023558,0.0000023571,0.0000023620,0.0000023678, -0.0000023726,0.0000023775,0.0000023817,0.0000023839,0.0000023840, -0.0000023826,0.0000023809,0.0000023802,0.0000023804,0.0000023807, -0.0000023803,0.0000023794,0.0000023777,0.0000023753,0.0000023719, -0.0000023676,0.0000023633,0.0000023592,0.0000023544,0.0000023484, -0.0000023413,0.0000023339,0.0000023284,0.0000023264,0.0000023274, -0.0000023305,0.0000023336,0.0000023359,0.0000023379,0.0000023401, -0.0000023422,0.0000023439,0.0000023455,0.0000023466,0.0000023467, -0.0000023465,0.0000023471,0.0000023489,0.0000023530,0.0000023607, -0.0000023720,0.0000023865,0.0000024030,0.0000024201,0.0000024370, -0.0000024549,0.0000024749,0.0000024955,0.0000025130,0.0000025241, -0.0000025283,0.0000025273,0.0000025251,0.0000025223,0.0000025195, -0.0000025169,0.0000025144,0.0000025120,0.0000025109,0.0000025108, -0.0000025102,0.0000025073,0.0000025028,0.0000025005,0.0000025011, -0.0000024961,0.0000024776,0.0000024565,0.0000024452,0.0000024408, -0.0000024360,0.0000024311,0.0000024287,0.0000024276,0.0000024261, -0.0000024244,0.0000024206,0.0000024117,0.0000023981,0.0000023815, -0.0000023643,0.0000023531,0.0000023484,0.0000023477,0.0000023473, -0.0000023424,0.0000023319,0.0000023131,0.0000022864,0.0000022570, -0.0000022313,0.0000022105,0.0000021922,0.0000021757,0.0000021640, -0.0000021579,0.0000021582,0.0000021663,0.0000021798,0.0000021905, -0.0000021960,0.0000021960,0.0000021916,0.0000021871,0.0000021843, -0.0000021795,0.0000021698,0.0000021500,0.0000021278,0.0000021146, -0.0000021124,0.0000021131,0.0000021155,0.0000021198,0.0000021244, -0.0000021276,0.0000021280,0.0000021260,0.0000021243,0.0000021235, -0.0000021226,0.0000021222,0.0000021217,0.0000021202,0.0000021179, -0.0000021180,0.0000021205,0.0000021225,0.0000021237,0.0000021244, -0.0000021254,0.0000021260,0.0000021267,0.0000021270,0.0000021274, -0.0000021271,0.0000021248,0.0000021207,0.0000021162,0.0000021128, -0.0000021115,0.0000021141,0.0000021176,0.0000021199,0.0000021220, -0.0000021238,0.0000021253,0.0000021275,0.0000021296,0.0000021308, -0.0000021313,0.0000021316,0.0000021324,0.0000021331,0.0000021342, -0.0000021365,0.0000021402,0.0000021443,0.0000021478,0.0000021512, -0.0000021546,0.0000021578,0.0000021608,0.0000021638,0.0000021672, -0.0000021706,0.0000021737,0.0000021760,0.0000021775,0.0000021788, -0.0000021804,0.0000021812,0.0000021816,0.0000021819,0.0000021817, -0.0000021804,0.0000021780,0.0000021753,0.0000021731,0.0000021719, -0.0000021716,0.0000021710,0.0000021698,0.0000021682,0.0000021662, -0.0000021637,0.0000021608,0.0000021579,0.0000021556,0.0000021545, -0.0000021542,0.0000021545,0.0000021555,0.0000021571,0.0000021587, -0.0000021597,0.0000021608,0.0000021613,0.0000021616,0.0000021618, -0.0000021618,0.0000021620,0.0000021631,0.0000021652,0.0000021680, -0.0000021708,0.0000021748,0.0000021823,0.0000021926,0.0000022039, -0.0000022149,0.0000022248,0.0000022330,0.0000022391,0.0000022433, -0.0000022460,0.0000022477,0.0000022482,0.0000022484,0.0000022481, -0.0000022466,0.0000022440,0.0000022409,0.0000022371,0.0000022329, -0.0000022294,0.0000022271,0.0000022266,0.0000022272,0.0000022286, -0.0000022302,0.0000022317,0.0000022329,0.0000022331,0.0000022324, -0.0000022308,0.0000022281,0.0000022250,0.0000022218,0.0000022179, -0.0000022134,0.0000022085,0.0000022040,0.0000022008,0.0000021987, -0.0000021965,0.0000021944,0.0000021922,0.0000021899,0.0000021886, -0.0000021832,0.0000021718,0.0000021639,0.0000021643,0.0000021711, -0.0000021785,0.0000021818,0.0000021821,0.0000021812,0.0000021775, -0.0000021715,0.0000021656,0.0000021614,0.0000021592,0.0000021585, -0.0000021592,0.0000021626,0.0000021662,0.0000021666,0.0000021648, -0.0000021631,0.0000021629,0.0000021651,0.0000021709,0.0000021789, -0.0000021856,0.0000021891,0.0000021904,0.0000021913,0.0000021920, -0.0000021934,0.0000021961,0.0000021996,0.0000022027,0.0000022044, -0.0000022045,0.0000022035,0.0000022024,0.0000022014,0.0000022006, -0.0000022006,0.0000022016,0.0000022027,0.0000022039,0.0000022058, -0.0000022091,0.0000022140,0.0000022177,0.0000022184,0.0000022166, -0.0000022102,0.0000021999,0.0000021901,0.0000021853,0.0000021847, -0.0000021833,0.0000021784,0.0000021708,0.0000021598,0.0000021438, -0.0000021252,0.0000021096,0.0000020993,0.0000020935,0.0000020913, -0.0000020916,0.0000020942,0.0000020977,0.0000021003,0.0000021018, -0.0000021020,0.0000021034,0.0000021227,0.0000021587,0.0000021875, -0.0000022047,0.0000022180,0.0000022268,0.0000022327,0.0000022408, -0.0000022498,0.0000022558,0.0000022591,0.0000022621,0.0000022650, -0.0000022668,0.0000022671,0.0000022659,0.0000022635,0.0000022607, -0.0000022586,0.0000022586,0.0000022598,0.0000022605,0.0000022592, -0.0000022567,0.0000022544,0.0000022532,0.0000022535,0.0000022553, -0.0000022583,0.0000022619,0.0000022663,0.0000022706,0.0000022735, -0.0000022747,0.0000022745,0.0000022735,0.0000022723,0.0000022703, -0.0000022667,0.0000022618,0.0000022573,0.0000022545,0.0000022539, -0.0000022542,0.0000022526,0.0000022443,0.0000022278,0.0000022068, -0.0000021875,0.0000021755,0.0000021721,0.0000021753,0.0000021860, -0.0000022076,0.0000022139,0.0000022197,0.0000022219,0.0000022215, -0.0000022201,0.0000022194,0.0000022204,0.0000022227,0.0000022171, -0.0000021945,0.0000021764,0.0000021801,0.0000021984,0.0000022272, -0.0000022609,0.0000022785,0.0000022780,0.0000022748,0.0000022783, -0.0000022883,0.0000022982,0.0000023024,0.0000023023,0.0000023031, -0.0000023061,0.0000023085,0.0000023124,0.0000023193,0.0000023257, -0.0000023307,0.0000023316,0.0000023281,0.0000023262,0.0000023285, -0.0000023313,0.0000023299,0.0000023229,0.0000023120,0.0000023037, -0.0000023036,0.0000023090,0.0000023118,0.0000023108,0.0000023076, -0.0000023038,0.0000023012,0.0000023013,0.0000023031,0.0000023053, -0.0000023072,0.0000023087,0.0000023094,0.0000023090,0.0000023072, -0.0000023057,0.0000023053,0.0000023056,0.0000023061,0.0000023081, -0.0000023111,0.0000023153,0.0000023201,0.0000023271,0.0000023361, -0.0000023442,0.0000023492,0.0000023501,0.0000023486,0.0000023468, -0.0000023443,0.0000023406,0.0000023384,0.0000023378,0.0000023386, -0.0000023393,0.0000023376,0.0000023328,0.0000023282,0.0000023244, -0.0000023200,0.0000023142,0.0000023081,0.0000023052,0.0000023037, -0.0000023039,0.0000023066,0.0000023093,0.0000023098,0.0000023088, -0.0000023071,0.0000023063,0.0000023046,0.0000023046,0.0000023073, -0.0000023116,0.0000023185,0.0000023251,0.0000023298,0.0000023325, -0.0000023326,0.0000023299,0.0000023250,0.0000023200,0.0000023155, -0.0000023104,0.0000023039,0.0000022960,0.0000022863,0.0000022770, -0.0000022701,0.0000022674,0.0000022686,0.0000022740,0.0000022818, -0.0000022923,0.0000023026,0.0000023109,0.0000023175,0.0000023236, -0.0000023302,0.0000023372,0.0000023433,0.0000023469,0.0000023479, -0.0000023469,0.0000023437,0.0000023420,0.0000023423,0.0000023436, -0.0000023443,0.0000023449,0.0000023451,0.0000023448,0.0000023441, -0.0000023418,0.0000023390,0.0000023378,0.0000023384,0.0000023402, -0.0000023418,0.0000023436,0.0000023471,0.0000023507,0.0000023540, -0.0000023582,0.0000023639,0.0000023713,0.0000023794,0.0000023877, -0.0000023942,0.0000023970,0.0000023963,0.0000023904,0.0000023787, -0.0000023661,0.0000023582,0.0000023571,0.0000023594,0.0000023612, -0.0000023590,0.0000023513,0.0000023394,0.0000023280,0.0000023204, -0.0000023176,0.0000023166,0.0000023150,0.0000023120,0.0000023075, -0.0000023031,0.0000023017,0.0000023056,0.0000023136,0.0000023219, -0.0000023286,0.0000023326,0.0000023334,0.0000023328,0.0000023301, -0.0000023248,0.0000023180,0.0000023140,0.0000023106,0.0000023120, -0.0000023177,0.0000023260,0.0000023347,0.0000023419,0.0000023471, -0.0000023523,0.0000023590,0.0000023670,0.0000023759,0.0000023849, -0.0000023929,0.0000023998,0.0000024056,0.0000024111,0.0000024163, -0.0000024213,0.0000024259,0.0000024295,0.0000024309,0.0000024295, -0.0000024250,0.0000024176,0.0000024090,0.0000024006,0.0000023936, -0.0000023881,0.0000023833,0.0000023787,0.0000023739,0.0000023686, -0.0000023628,0.0000023568,0.0000023510,0.0000023461,0.0000023422, -0.0000023393,0.0000023374,0.0000023358,0.0000023345,0.0000023335, -0.0000023324,0.0000023312,0.0000023299,0.0000023285,0.0000023270, -0.0000023253,0.0000023238,0.0000023227,0.0000023225,0.0000023235, -0.0000023257,0.0000023289,0.0000023327,0.0000023367,0.0000023406, -0.0000023442,0.0000023472,0.0000023494,0.0000023510,0.0000023522, -0.0000023532,0.0000023539,0.0000023541,0.0000023535,0.0000023521, -0.0000023504,0.0000023499,0.0000023501,0.0000023510,0.0000023531, -0.0000023561,0.0000023594,0.0000023620,0.0000023634,0.0000023630, -0.0000023627,0.0000023617,0.0000023600,0.0000023586,0.0000023579, -0.0000023573,0.0000023575,0.0000023585,0.0000023608,0.0000023638, -0.0000023656,0.0000023681,0.0000023683,0.0000023675,0.0000023656, -0.0000023631,0.0000023603,0.0000023572,0.0000023542,0.0000023518, -0.0000023499,0.0000023475,0.0000023448,0.0000023431,0.0000023417, -0.0000023410,0.0000023406,0.0000023402,0.0000023397,0.0000023391, -0.0000023387,0.0000023380,0.0000023365,0.0000023343,0.0000023319, -0.0000023291,0.0000023258,0.0000023225,0.0000023197,0.0000023171, -0.0000023150,0.0000023144,0.0000023152,0.0000023166,0.0000023188, -0.0000023226,0.0000023273,0.0000023322,0.0000023367,0.0000023403, -0.0000023429,0.0000023454,0.0000023477,0.0000023494,0.0000023508, -0.0000023525,0.0000023551,0.0000023566,0.0000023566,0.0000023557, -0.0000023542,0.0000023524,0.0000023503,0.0000023486,0.0000023468, -0.0000023436,0.0000023390,0.0000023323,0.0000023235,0.0000023143, -0.0000023059,0.0000023021,0.0000022980,0.0000022982,0.0000023010, -0.0000023073,0.0000023169,0.0000023312,0.0000023458,0.0000023587, -0.0000023705,0.0000023816,0.0000023903,0.0000023970,0.0000024001, -0.0000024003,0.0000023980,0.0000023940,0.0000023894,0.0000023845, -0.0000023795,0.0000023747,0.0000023698,0.0000023649,0.0000023619, -0.0000023601,0.0000023597,0.0000023601,0.0000023607,0.0000023619, -0.0000023639,0.0000023671,0.0000023704,0.0000023734,0.0000023740, -0.0000023719,0.0000023679,0.0000023627,0.0000023567,0.0000023498, -0.0000023416,0.0000023331,0.0000023250,0.0000023197,0.0000023179, -0.0000023177,0.0000023173,0.0000023156,0.0000023121,0.0000023053, -0.0000022951,0.0000022838,0.0000022763,0.0000022741,0.0000022751, -0.0000022764,0.0000022787,0.0000022832,0.0000022879,0.0000022923, -0.0000022957,0.0000022979,0.0000022991,0.0000022991,0.0000022979, -0.0000022959,0.0000022934,0.0000022904,0.0000022866,0.0000022819, -0.0000022785,0.0000022769,0.0000022761,0.0000022760,0.0000022771, -0.0000022773,0.0000022761,0.0000022744,0.0000022720,0.0000022702, -0.0000022723,0.0000022810,0.0000023010,0.0000023229,0.0000023294, -0.0000023301,0.0000023298,0.0000023245,0.0000023246,0.0000023199, -0.0000023090,0.0000023050,0.0000023105,0.0000023193,0.0000023281, -0.0000023356,0.0000023411,0.0000023455,0.0000023494,0.0000023520, -0.0000023517,0.0000023485,0.0000023432,0.0000023388,0.0000023378, -0.0000023374,0.0000023336,0.0000023287,0.0000023180,0.0000023045, -0.0000022991,0.0000022995,0.0000023007,0.0000023019,0.0000023036, -0.0000023027,0.0000023000,0.0000022954,0.0000022897,0.0000022839, -0.0000022785,0.0000022776,0.0000022829,0.0000022876,0.0000022878, -0.0000022871,0.0000022904,0.0000022936,0.0000022952,0.0000022968, -0.0000022992,0.0000023008,0.0000022998,0.0000022957,0.0000022899, -0.0000022835,0.0000022765,0.0000022674,0.0000022580,0.0000022518, -0.0000022503,0.0000022498,0.0000022453,0.0000022338,0.0000022222, -0.0000022183,0.0000022181,0.0000022188,0.0000022234,0.0000022349, -0.0000022481,0.0000022564,0.0000022582,0.0000022542,0.0000022409, -0.0000022299,0.0000022317,0.0000022475,0.0000022645,0.0000022732, -0.0000022760,0.0000022783,0.0000022803,0.0000022761,0.0000022670, -0.0000022640,0.0000022717,0.0000022810,0.0000022853,0.0000022914, -0.0000023035,0.0000023158,0.0000023221,0.0000023230,0.0000023158, -0.0000022975,0.0000022720,0.0000022422,0.0000022127,0.0000021977, -0.0000021984,0.0000022101,0.0000022237,0.0000022290,0.0000022295, -0.0000022287,0.0000022271,0.0000022260,0.0000022243,0.0000022219, -0.0000022218,0.0000022264,0.0000022345,0.0000022432,0.0000022522, -0.0000022609,0.0000022676,0.0000022727,0.0000022787,0.0000022855, -0.0000022907,0.0000022933,0.0000022941,0.0000022940,0.0000022932, -0.0000022934,0.0000022944,0.0000022954,0.0000022969,0.0000022998, -0.0000023051,0.0000023118,0.0000023187,0.0000023248,0.0000023285, -0.0000023297,0.0000023299,0.0000023303,0.0000023301,0.0000023289, -0.0000023282,0.0000023287,0.0000023298,0.0000023313,0.0000023330, -0.0000023346,0.0000023351,0.0000023342,0.0000023318,0.0000023272, -0.0000023226,0.0000023189,0.0000023140,0.0000023065,0.0000022976, -0.0000022896,0.0000022833,0.0000022788,0.0000022762,0.0000022753, -0.0000022773,0.0000022825,0.0000022876,0.0000022916,0.0000022944, -0.0000022954,0.0000022956,0.0000022961,0.0000022962,0.0000022952, -0.0000022960,0.0000023063,0.0000023244,0.0000023379,0.0000023419, -0.0000023455,0.0000023553,0.0000023646,0.0000023659,0.0000023614, -0.0000023565,0.0000023556,0.0000023584,0.0000023622,0.0000023656, -0.0000023704,0.0000023778,0.0000023859,0.0000023948,0.0000024034, -0.0000024078,0.0000024085,0.0000024092,0.0000024123,0.0000024158, -0.0000024159,0.0000024125,0.0000024122,0.0000024168,0.0000024200, -0.0000024200,0.0000024198,0.0000024109,0.0000024016,0.0000023888, -0.0000023793,0.0000023809,0.0000023860,0.0000023870,0.0000023856, -0.0000023823,0.0000023785,0.0000023773,0.0000023794,0.0000023826, -0.0000023840,0.0000023840,0.0000023843,0.0000023871,0.0000023920, -0.0000023939,0.0000023927,0.0000023918,0.0000023927,0.0000023943, -0.0000023959,0.0000023966,0.0000023955,0.0000023920,0.0000023872, -0.0000023835,0.0000023817,0.0000023813,0.0000023811,0.0000023799, -0.0000023771,0.0000023736,0.0000023702,0.0000023667,0.0000023635, -0.0000023613,0.0000023606,0.0000023608,0.0000023615,0.0000023621, -0.0000023623,0.0000023615,0.0000023599,0.0000023580,0.0000023558, -0.0000023535,0.0000023517,0.0000023505,0.0000023501,0.0000023503, -0.0000023504,0.0000023503,0.0000023500,0.0000023494,0.0000023490, -0.0000023486,0.0000023485,0.0000023493,0.0000023504,0.0000023518, -0.0000023539,0.0000023568,0.0000023617,0.0000023677,0.0000023741, -0.0000023804,0.0000023867,0.0000023925,0.0000023969,0.0000023989, -0.0000023981,0.0000023932,0.0000023877,0.0000023817,0.0000023765, -0.0000023718,0.0000023676,0.0000023636,0.0000023597,0.0000023560, -0.0000023526,0.0000023496,0.0000023479,0.0000023476,0.0000023481, -0.0000023486,0.0000023492,0.0000023498,0.0000023501,0.0000023502, -0.0000023509,0.0000023523,0.0000023542,0.0000023566,0.0000023594, -0.0000023620,0.0000023641,0.0000023661,0.0000023680,0.0000023700, -0.0000023724,0.0000023753,0.0000023783,0.0000023811,0.0000023836, -0.0000023858,0.0000023881,0.0000023900,0.0000023902,0.0000023905, -0.0000023930,0.0000023942,0.0000023938,0.0000023938,0.0000023927, -0.0000023916,0.0000023903,0.0000023874,0.0000023838,0.0000023797, -0.0000023756,0.0000023700,0.0000023635,0.0000023578,0.0000023523, -0.0000023461,0.0000023404,0.0000023366,0.0000023360,0.0000023374, -0.0000023416,0.0000023480,0.0000023551,0.0000023618,0.0000023676, -0.0000023716,0.0000023734,0.0000023715,0.0000023684,0.0000023645, -0.0000023626,0.0000023631,0.0000023644,0.0000023650,0.0000023677, -0.0000023748,0.0000023834,0.0000023896,0.0000023944,0.0000023983, -0.0000023966,0.0000023871,0.0000023734,0.0000023635,0.0000023612, -0.0000023625,0.0000023679,0.0000023769,0.0000023844,0.0000023839, -0.0000023714,0.0000023503,0.0000023323,0.0000023201,0.0000023097, -0.0000022983,0.0000022867,0.0000022745,0.0000022627,0.0000022563, -0.0000022567,0.0000022587,0.0000022597,0.0000022601,0.0000022611, -0.0000022626,0.0000022637,0.0000022645,0.0000022658,0.0000022689, -0.0000022730,0.0000022763,0.0000022779,0.0000022783,0.0000022786, -0.0000022795,0.0000022804,0.0000022803,0.0000022789,0.0000022768, -0.0000022743,0.0000022714,0.0000022675,0.0000022619,0.0000022557, -0.0000022493,0.0000022407,0.0000022300,0.0000022214,0.0000022166, -0.0000022123,0.0000022066,0.0000022042,0.0000022058,0.0000022053, -0.0000021964,0.0000021839,0.0000021733,0.0000021616,0.0000021541, -0.0000021563,0.0000021614,0.0000021599,0.0000021551,0.0000021548, -0.0000021633,0.0000021823,0.0000022086,0.0000022342,0.0000022523, -0.0000022598,0.0000022589,0.0000022597,0.0000022734,0.0000022968, -0.0000023134,0.0000023184,0.0000023197,0.0000023205,0.0000023193, -0.0000023166,0.0000023141,0.0000023130,0.0000023123,0.0000023098, -0.0000023058,0.0000023033,0.0000023041,0.0000023072,0.0000023112, -0.0000023147,0.0000023159,0.0000023155,0.0000023133,0.0000023076, -0.0000022981,0.0000022871,0.0000022758,0.0000022638,0.0000022522, -0.0000022411,0.0000022284,0.0000022129,0.0000021952,0.0000021754, -0.0000021541,0.0000021336,0.0000021175,0.0000021079,0.0000021045, -0.0000021045,0.0000021059,0.0000021079,0.0000021107,0.0000021138, -0.0000021165,0.0000021188,0.0000021207,0.0000021221,0.0000021227, -0.0000021229,0.0000021233,0.0000021245,0.0000021271,0.0000021317, -0.0000021397,0.0000021503,0.0000021612,0.0000021709,0.0000021781, -0.0000021822,0.0000021838,0.0000021834,0.0000021810,0.0000021767, -0.0000021715,0.0000021654,0.0000021574,0.0000021465,0.0000021330, -0.0000021190,0.0000021063,0.0000020948,0.0000020844,0.0000020761, -0.0000020699,0.0000020659,0.0000020659,0.0000020711,0.0000020814, -0.0000020964,0.0000021178,0.0000021434,0.0000021649,0.0000021761, -0.0000021792,0.0000021819,0.0000021911,0.0000022101,0.0000022363, -0.0000022606,0.0000022720,0.0000022688,0.0000022578,0.0000022471, -0.0000022452,0.0000022538,0.0000022686,0.0000022834,0.0000022984, -0.0000023173,0.0000023357,0.0000023464,0.0000023544,0.0000023703, -0.0000023925,0.0000024127,0.0000024289,0.0000024422,0.0000024538, -0.0000024656,0.0000024785,0.0000024894,0.0000024963,0.0000025015, -0.0000025069,0.0000025107,0.0000025131,0.0000025158,0.0000025165, -0.0000025117,0.0000025027,0.0000024963,0.0000024943,0.0000024922, -0.0000024864,0.0000024796,0.0000024761,0.0000024766,0.0000024794, -0.0000024812,0.0000024823,0.0000024863,0.0000024933,0.0000024979, -0.0000024968,0.0000024862,0.0000024658,0.0000024403,0.0000024157, -0.0000024020,0.0000023975,0.0000023870,0.0000023709,0.0000023610, -0.0000023584,0.0000023590,0.0000023627,0.0000023680,0.0000023732, -0.0000023779,0.0000023812,0.0000023826,0.0000023826,0.0000023816, -0.0000023802,0.0000023792,0.0000023792,0.0000023787,0.0000023780, -0.0000023772,0.0000023753,0.0000023720,0.0000023677,0.0000023624, -0.0000023568,0.0000023512,0.0000023447,0.0000023373,0.0000023289, -0.0000023210,0.0000023167,0.0000023167,0.0000023199,0.0000023249, -0.0000023294,0.0000023332,0.0000023367,0.0000023401,0.0000023427, -0.0000023445,0.0000023461,0.0000023471,0.0000023468,0.0000023454, -0.0000023435,0.0000023412,0.0000023391,0.0000023403,0.0000023459, -0.0000023567,0.0000023728,0.0000023913,0.0000024088,0.0000024244, -0.0000024394,0.0000024564,0.0000024762,0.0000024959,0.0000025112, -0.0000025189,0.0000025209,0.0000025187,0.0000025151,0.0000025118, -0.0000025088,0.0000025064,0.0000025051,0.0000025045,0.0000025026, -0.0000024990,0.0000024950,0.0000024937,0.0000024934,0.0000024858, -0.0000024670,0.0000024478,0.0000024379,0.0000024335,0.0000024283, -0.0000024233,0.0000024215,0.0000024212,0.0000024201,0.0000024174, -0.0000024132,0.0000024065,0.0000023972,0.0000023857,0.0000023732, -0.0000023578,0.0000023461,0.0000023403,0.0000023398,0.0000023392, -0.0000023367,0.0000023312,0.0000023190,0.0000022970,0.0000022659, -0.0000022332,0.0000022057,0.0000021855,0.0000021697,0.0000021604, -0.0000021589,0.0000021637,0.0000021739,0.0000021854,0.0000021940, -0.0000021974,0.0000021969,0.0000021914,0.0000021845,0.0000021793, -0.0000021745,0.0000021670,0.0000021512,0.0000021309,0.0000021162, -0.0000021114,0.0000021121,0.0000021147,0.0000021185,0.0000021219, -0.0000021231,0.0000021220,0.0000021214,0.0000021212,0.0000021211, -0.0000021212,0.0000021211,0.0000021204,0.0000021194,0.0000021210, -0.0000021246,0.0000021279,0.0000021304,0.0000021318,0.0000021330, -0.0000021340,0.0000021348,0.0000021351,0.0000021348,0.0000021344, -0.0000021326,0.0000021288,0.0000021237,0.0000021187,0.0000021153, -0.0000021147,0.0000021164,0.0000021179,0.0000021196,0.0000021220, -0.0000021235,0.0000021246,0.0000021255,0.0000021260,0.0000021262, -0.0000021265,0.0000021276,0.0000021285,0.0000021292,0.0000021309, -0.0000021337,0.0000021376,0.0000021416,0.0000021456,0.0000021495, -0.0000021529,0.0000021557,0.0000021581,0.0000021613,0.0000021650, -0.0000021687,0.0000021714,0.0000021729,0.0000021741,0.0000021757, -0.0000021763,0.0000021761,0.0000021756,0.0000021753,0.0000021749, -0.0000021746,0.0000021754,0.0000021764,0.0000021770,0.0000021768, -0.0000021768,0.0000021766,0.0000021759,0.0000021743,0.0000021718, -0.0000021686,0.0000021652,0.0000021620,0.0000021601,0.0000021592, -0.0000021589,0.0000021593,0.0000021601,0.0000021606,0.0000021607, -0.0000021608,0.0000021606,0.0000021604,0.0000021604,0.0000021610, -0.0000021609,0.0000021604,0.0000021600,0.0000021615,0.0000021640, -0.0000021665,0.0000021691,0.0000021728,0.0000021779,0.0000021849, -0.0000021938,0.0000022033,0.0000022122,0.0000022200,0.0000022261, -0.0000022308,0.0000022346,0.0000022377,0.0000022400,0.0000022419, -0.0000022426,0.0000022422,0.0000022406,0.0000022377,0.0000022351, -0.0000022320,0.0000022291,0.0000022266,0.0000022254,0.0000022250, -0.0000022254,0.0000022264,0.0000022273,0.0000022271,0.0000022263, -0.0000022250,0.0000022230,0.0000022207,0.0000022183,0.0000022152, -0.0000022113,0.0000022069,0.0000022024,0.0000021984,0.0000021955, -0.0000021936,0.0000021918,0.0000021892,0.0000021872,0.0000021843, -0.0000021751,0.0000021653,0.0000021627,0.0000021661,0.0000021732, -0.0000021789,0.0000021811,0.0000021812,0.0000021798,0.0000021766, -0.0000021725,0.0000021686,0.0000021659,0.0000021630,0.0000021594, -0.0000021578,0.0000021596,0.0000021634,0.0000021642,0.0000021622, -0.0000021604,0.0000021603,0.0000021642,0.0000021725,0.0000021814, -0.0000021872,0.0000021898,0.0000021907,0.0000021909,0.0000021904, -0.0000021910,0.0000021934,0.0000021968,0.0000022005,0.0000022031, -0.0000022035,0.0000022021,0.0000022005,0.0000021990,0.0000021982, -0.0000021984,0.0000021998,0.0000022017,0.0000022039,0.0000022067, -0.0000022113,0.0000022168,0.0000022204,0.0000022208,0.0000022183, -0.0000022128,0.0000022033,0.0000021915,0.0000021825,0.0000021794, -0.0000021794,0.0000021772,0.0000021712,0.0000021629,0.0000021515, -0.0000021361,0.0000021200,0.0000021073,0.0000020989,0.0000020943, -0.0000020929,0.0000020936,0.0000020967,0.0000021004,0.0000021030, -0.0000021035,0.0000021030,0.0000021101,0.0000021404,0.0000021749, -0.0000021962,0.0000022108,0.0000022218,0.0000022284,0.0000022353, -0.0000022446,0.0000022521,0.0000022562,0.0000022594,0.0000022624, -0.0000022640,0.0000022639,0.0000022618,0.0000022578,0.0000022530, -0.0000022493,0.0000022486,0.0000022499,0.0000022514,0.0000022511, -0.0000022492,0.0000022476,0.0000022477,0.0000022494,0.0000022523, -0.0000022558,0.0000022590,0.0000022620,0.0000022641,0.0000022654, -0.0000022663,0.0000022665,0.0000022657,0.0000022639,0.0000022606, -0.0000022557,0.0000022502,0.0000022459,0.0000022436,0.0000022422, -0.0000022384,0.0000022289,0.0000022138,0.0000021967,0.0000021818, -0.0000021724,0.0000021711,0.0000021777,0.0000021897,0.0000022006, -0.0000022202,0.0000022240,0.0000022237,0.0000022220,0.0000022209, -0.0000022210,0.0000022225,0.0000022249,0.0000022238,0.0000022074, -0.0000021826,0.0000021759,0.0000021890,0.0000022115,0.0000022431, -0.0000022716,0.0000022781,0.0000022739,0.0000022724,0.0000022793, -0.0000022906,0.0000022990,0.0000023010,0.0000023007,0.0000023026, -0.0000023058,0.0000023077,0.0000023110,0.0000023164,0.0000023214, -0.0000023246,0.0000023238,0.0000023205,0.0000023206,0.0000023247, -0.0000023268,0.0000023237,0.0000023147,0.0000023048,0.0000023005, -0.0000023033,0.0000023090,0.0000023113,0.0000023100,0.0000023063, -0.0000023023,0.0000023001,0.0000023006,0.0000023027,0.0000023051, -0.0000023072,0.0000023090,0.0000023100,0.0000023092,0.0000023070, -0.0000023054,0.0000023056,0.0000023067,0.0000023075,0.0000023086, -0.0000023105,0.0000023139,0.0000023185,0.0000023242,0.0000023322, -0.0000023404,0.0000023462,0.0000023484,0.0000023478,0.0000023465, -0.0000023441,0.0000023410,0.0000023399,0.0000023401,0.0000023404, -0.0000023403,0.0000023380,0.0000023332,0.0000023296,0.0000023283, -0.0000023280,0.0000023270,0.0000023224,0.0000023170,0.0000023125, -0.0000023089,0.0000023089,0.0000023111,0.0000023115,0.0000023112, -0.0000023107,0.0000023111,0.0000023102,0.0000023100,0.0000023112, -0.0000023134,0.0000023194,0.0000023272,0.0000023330,0.0000023365, -0.0000023385,0.0000023382,0.0000023344,0.0000023297,0.0000023265, -0.0000023240,0.0000023213,0.0000023172,0.0000023100,0.0000023003, -0.0000022899,0.0000022800,0.0000022731,0.0000022697,0.0000022694, -0.0000022714,0.0000022789,0.0000022900,0.0000023016,0.0000023113, -0.0000023176,0.0000023221,0.0000023271,0.0000023330,0.0000023377, -0.0000023405,0.0000023406,0.0000023395,0.0000023387,0.0000023393, -0.0000023402,0.0000023408,0.0000023417,0.0000023431,0.0000023438, -0.0000023432,0.0000023408,0.0000023382,0.0000023374,0.0000023384, -0.0000023397,0.0000023402,0.0000023417,0.0000023445,0.0000023474, -0.0000023505,0.0000023539,0.0000023578,0.0000023626,0.0000023687, -0.0000023763,0.0000023840,0.0000023900,0.0000023927,0.0000023919, -0.0000023849,0.0000023717,0.0000023585,0.0000023521,0.0000023526, -0.0000023560,0.0000023574,0.0000023549,0.0000023466,0.0000023346, -0.0000023235,0.0000023176,0.0000023156,0.0000023144,0.0000023123, -0.0000023086,0.0000023048,0.0000023039,0.0000023067,0.0000023120, -0.0000023188,0.0000023256,0.0000023304,0.0000023325,0.0000023326, -0.0000023321,0.0000023291,0.0000023238,0.0000023179,0.0000023116, -0.0000023092,0.0000023074,0.0000023097,0.0000023156,0.0000023225, -0.0000023286,0.0000023349,0.0000023411,0.0000023474,0.0000023538, -0.0000023596,0.0000023650,0.0000023698,0.0000023741,0.0000023782, -0.0000023822,0.0000023864,0.0000023909,0.0000023950,0.0000023979, -0.0000023987,0.0000023972,0.0000023932,0.0000023875,0.0000023814, -0.0000023760,0.0000023707,0.0000023648,0.0000023584,0.0000023516, -0.0000023445,0.0000023372,0.0000023299,0.0000023231,0.0000023182, -0.0000023159,0.0000023160,0.0000023172,0.0000023189,0.0000023209, -0.0000023231,0.0000023250,0.0000023263,0.0000023271,0.0000023264, -0.0000023257,0.0000023247,0.0000023235,0.0000023221,0.0000023209, -0.0000023204,0.0000023213,0.0000023216,0.0000023227,0.0000023244, -0.0000023269,0.0000023297,0.0000023325,0.0000023351,0.0000023375, -0.0000023401,0.0000023424,0.0000023440,0.0000023446,0.0000023447, -0.0000023452,0.0000023460,0.0000023471,0.0000023479,0.0000023485, -0.0000023495,0.0000023511,0.0000023529,0.0000023548,0.0000023568, -0.0000023588,0.0000023604,0.0000023615,0.0000023603,0.0000023592, -0.0000023580,0.0000023557,0.0000023535,0.0000023525,0.0000023530, -0.0000023551,0.0000023584,0.0000023619,0.0000023647,0.0000023669, -0.0000023670,0.0000023670,0.0000023660,0.0000023635,0.0000023597, -0.0000023563,0.0000023538,0.0000023510,0.0000023480,0.0000023454, -0.0000023436,0.0000023425,0.0000023416,0.0000023407,0.0000023399, -0.0000023392,0.0000023387,0.0000023380,0.0000023369,0.0000023352, -0.0000023328,0.0000023303,0.0000023283,0.0000023269,0.0000023264, -0.0000023267,0.0000023279,0.0000023303,0.0000023327,0.0000023340, -0.0000023345,0.0000023351,0.0000023361,0.0000023378,0.0000023397, -0.0000023418,0.0000023441,0.0000023468,0.0000023489,0.0000023500, -0.0000023507,0.0000023523,0.0000023541,0.0000023547,0.0000023537, -0.0000023516,0.0000023489,0.0000023460,0.0000023436,0.0000023417, -0.0000023404,0.0000023389,0.0000023371,0.0000023347,0.0000023332, -0.0000023317,0.0000023291,0.0000023264,0.0000023231,0.0000023184, -0.0000023115,0.0000023055,0.0000023023,0.0000023039,0.0000023088, -0.0000023155,0.0000023226,0.0000023292,0.0000023349,0.0000023387, -0.0000023397,0.0000023386,0.0000023354,0.0000023310,0.0000023263, -0.0000023221,0.0000023187,0.0000023151,0.0000023111,0.0000023073, -0.0000023046,0.0000023039,0.0000023049,0.0000023073,0.0000023102, -0.0000023139,0.0000023190,0.0000023259,0.0000023321,0.0000023385, -0.0000023437,0.0000023469,0.0000023472,0.0000023453,0.0000023419, -0.0000023369,0.0000023303,0.0000023235,0.0000023177,0.0000023141, -0.0000023118,0.0000023092,0.0000023055,0.0000023005,0.0000022942, -0.0000022855,0.0000022760,0.0000022696,0.0000022684,0.0000022701, -0.0000022724,0.0000022748,0.0000022786,0.0000022851,0.0000022932, -0.0000022999,0.0000023048,0.0000023076,0.0000023083,0.0000023073, -0.0000023048,0.0000023017,0.0000022983,0.0000022945,0.0000022914, -0.0000022880,0.0000022843,0.0000022827,0.0000022817,0.0000022801, -0.0000022789,0.0000022788,0.0000022761,0.0000022742,0.0000022738, -0.0000022723,0.0000022718,0.0000022771,0.0000022886,0.0000023104, -0.0000023292,0.0000023333,0.0000023351,0.0000023323,0.0000023255, -0.0000023234,0.0000023155,0.0000023018,0.0000022976,0.0000023046, -0.0000023157,0.0000023250,0.0000023319,0.0000023376,0.0000023429, -0.0000023471,0.0000023492,0.0000023492,0.0000023467,0.0000023420, -0.0000023395,0.0000023386,0.0000023350,0.0000023324,0.0000023299, -0.0000023204,0.0000023090,0.0000023048,0.0000023039,0.0000023037, -0.0000023047,0.0000023044,0.0000023026,0.0000022982,0.0000022924, -0.0000022863,0.0000022824,0.0000022847,0.0000022904,0.0000022911, -0.0000022877,0.0000022859,0.0000022881,0.0000022905,0.0000022925, -0.0000022960,0.0000022989,0.0000023001,0.0000022993,0.0000022955, -0.0000022900,0.0000022840,0.0000022771,0.0000022670,0.0000022570, -0.0000022512,0.0000022499,0.0000022491,0.0000022431,0.0000022296, -0.0000022182,0.0000022156,0.0000022174,0.0000022211,0.0000022300, -0.0000022427,0.0000022546,0.0000022597,0.0000022583,0.0000022492, -0.0000022333,0.0000022262,0.0000022349,0.0000022541,0.0000022705, -0.0000022773,0.0000022795,0.0000022832,0.0000022848,0.0000022780, -0.0000022674,0.0000022643,0.0000022721,0.0000022796,0.0000022833, -0.0000022910,0.0000023040,0.0000023149,0.0000023196,0.0000023194, -0.0000023107,0.0000022919,0.0000022665,0.0000022379,0.0000022118, -0.0000021997,0.0000022004,0.0000022116,0.0000022228,0.0000022256, -0.0000022245,0.0000022246,0.0000022253,0.0000022257,0.0000022253, -0.0000022246,0.0000022259,0.0000022315,0.0000022402,0.0000022488, -0.0000022565,0.0000022634,0.0000022687,0.0000022728,0.0000022779, -0.0000022832,0.0000022865,0.0000022880,0.0000022884,0.0000022888, -0.0000022895,0.0000022916,0.0000022944,0.0000022968,0.0000022991, -0.0000023019,0.0000023059,0.0000023115,0.0000023169,0.0000023214, -0.0000023252,0.0000023271,0.0000023284,0.0000023295,0.0000023298, -0.0000023282,0.0000023258,0.0000023243,0.0000023245,0.0000023257, -0.0000023282,0.0000023313,0.0000023337,0.0000023344,0.0000023335, -0.0000023304,0.0000023249,0.0000023201,0.0000023161,0.0000023107, -0.0000023029,0.0000022946,0.0000022878,0.0000022829,0.0000022801, -0.0000022785,0.0000022787,0.0000022804,0.0000022835,0.0000022866, -0.0000022895,0.0000022916,0.0000022925,0.0000022934,0.0000022943, -0.0000022940,0.0000022938,0.0000022988,0.0000023132,0.0000023300, -0.0000023401,0.0000023429,0.0000023461,0.0000023543,0.0000023624, -0.0000023639,0.0000023592,0.0000023533,0.0000023513,0.0000023533, -0.0000023576,0.0000023613,0.0000023649,0.0000023703,0.0000023775, -0.0000023865,0.0000023941,0.0000023976,0.0000023991,0.0000024023, -0.0000024080,0.0000024128,0.0000024133,0.0000024113,0.0000024124, -0.0000024170,0.0000024189,0.0000024195,0.0000024178,0.0000024078, -0.0000023987,0.0000023861,0.0000023799,0.0000023840,0.0000023882, -0.0000023883,0.0000023866,0.0000023831,0.0000023800,0.0000023793, -0.0000023818,0.0000023850,0.0000023868,0.0000023877,0.0000023881, -0.0000023903,0.0000023950,0.0000023974,0.0000023957,0.0000023925, -0.0000023921,0.0000023942,0.0000023962,0.0000023962,0.0000023943, -0.0000023908,0.0000023867,0.0000023835,0.0000023818,0.0000023813, -0.0000023809,0.0000023796,0.0000023768,0.0000023736,0.0000023705, -0.0000023677,0.0000023654,0.0000023638,0.0000023631,0.0000023634, -0.0000023646,0.0000023656,0.0000023656,0.0000023646,0.0000023630, -0.0000023612,0.0000023595,0.0000023578,0.0000023568,0.0000023565, -0.0000023567,0.0000023568,0.0000023567,0.0000023563,0.0000023558, -0.0000023551,0.0000023546,0.0000023544,0.0000023547,0.0000023553, -0.0000023555,0.0000023557,0.0000023562,0.0000023576,0.0000023601, -0.0000023636,0.0000023675,0.0000023709,0.0000023736,0.0000023767, -0.0000023808,0.0000023855,0.0000023893,0.0000023905,0.0000023886, -0.0000023850,0.0000023804,0.0000023758,0.0000023720,0.0000023683, -0.0000023645,0.0000023601,0.0000023554,0.0000023503,0.0000023458, -0.0000023430,0.0000023418,0.0000023413,0.0000023408,0.0000023403, -0.0000023393,0.0000023381,0.0000023374,0.0000023374,0.0000023383, -0.0000023401,0.0000023425,0.0000023450,0.0000023472,0.0000023492, -0.0000023512,0.0000023533,0.0000023558,0.0000023589,0.0000023624, -0.0000023660,0.0000023694,0.0000023726,0.0000023756,0.0000023785, -0.0000023811,0.0000023838,0.0000023871,0.0000023905,0.0000023932, -0.0000023961,0.0000023968,0.0000023973,0.0000023994,0.0000023991, -0.0000023976,0.0000023951,0.0000023918,0.0000023871,0.0000023809, -0.0000023739,0.0000023660,0.0000023580,0.0000023487,0.0000023393, -0.0000023326,0.0000023299,0.0000023262,0.0000023273,0.0000023320, -0.0000023382,0.0000023449,0.0000023514,0.0000023572,0.0000023624, -0.0000023656,0.0000023654,0.0000023626,0.0000023615,0.0000023623, -0.0000023633,0.0000023625,0.0000023633,0.0000023696,0.0000023801, -0.0000023882,0.0000023937,0.0000023957,0.0000023917,0.0000023799, -0.0000023664,0.0000023593,0.0000023579,0.0000023589,0.0000023639, -0.0000023733,0.0000023807,0.0000023795,0.0000023670,0.0000023465, -0.0000023290,0.0000023178,0.0000023079,0.0000022978,0.0000022886, -0.0000022782,0.0000022674,0.0000022605,0.0000022587,0.0000022596, -0.0000022615,0.0000022636,0.0000022658,0.0000022675,0.0000022688, -0.0000022710,0.0000022746,0.0000022787,0.0000022829,0.0000022871, -0.0000022909,0.0000022934,0.0000022946,0.0000022943,0.0000022915, -0.0000022879,0.0000022851,0.0000022827,0.0000022800,0.0000022771, -0.0000022725,0.0000022649,0.0000022572,0.0000022512,0.0000022439, -0.0000022341,0.0000022257,0.0000022214,0.0000022173,0.0000022099, -0.0000022041,0.0000022048,0.0000022055,0.0000021978,0.0000021864, -0.0000021770,0.0000021656,0.0000021547,0.0000021537,0.0000021582, -0.0000021573,0.0000021521,0.0000021500,0.0000021557,0.0000021723, -0.0000021973,0.0000022245,0.0000022471,0.0000022594,0.0000022600, -0.0000022576,0.0000022650,0.0000022857,0.0000023056,0.0000023151, -0.0000023186,0.0000023205,0.0000023198,0.0000023159,0.0000023117, -0.0000023096,0.0000023076,0.0000023036,0.0000022989,0.0000022962, -0.0000022971,0.0000023002,0.0000023034,0.0000023050,0.0000023045, -0.0000023022,0.0000022989,0.0000022931,0.0000022838,0.0000022728, -0.0000022613,0.0000022487,0.0000022364,0.0000022248,0.0000022117, -0.0000021954,0.0000021760,0.0000021553,0.0000021364,0.0000021221, -0.0000021126,0.0000021076,0.0000021073,0.0000021095,0.0000021130, -0.0000021170,0.0000021213,0.0000021259,0.0000021304,0.0000021343, -0.0000021372,0.0000021388,0.0000021399,0.0000021415,0.0000021446, -0.0000021489,0.0000021532,0.0000021577,0.0000021635,0.0000021702, -0.0000021768,0.0000021829,0.0000021876,0.0000021906,0.0000021919, -0.0000021916,0.0000021893,0.0000021854,0.0000021812,0.0000021769, -0.0000021719,0.0000021643,0.0000021518,0.0000021358,0.0000021202, -0.0000021068,0.0000020954,0.0000020856,0.0000020775,0.0000020707, -0.0000020665,0.0000020681,0.0000020754,0.0000020862,0.0000021009, -0.0000021222,0.0000021466,0.0000021657,0.0000021748,0.0000021772, -0.0000021808,0.0000021932,0.0000022161,0.0000022427,0.0000022620, -0.0000022667,0.0000022603,0.0000022485,0.0000022425,0.0000022464, -0.0000022593,0.0000022747,0.0000022890,0.0000023048,0.0000023229, -0.0000023369,0.0000023444,0.0000023553,0.0000023761,0.0000023999, -0.0000024183,0.0000024314,0.0000024425,0.0000024546,0.0000024690, -0.0000024830,0.0000024925,0.0000024984,0.0000025046,0.0000025102, -0.0000025129,0.0000025143,0.0000025161,0.0000025155,0.0000025078, -0.0000024974,0.0000024911,0.0000024883,0.0000024837,0.0000024758, -0.0000024693,0.0000024682,0.0000024721,0.0000024770,0.0000024802, -0.0000024843,0.0000024908,0.0000024962,0.0000024967,0.0000024879, -0.0000024675,0.0000024412,0.0000024156,0.0000024007,0.0000023965, -0.0000023884,0.0000023734,0.0000023633,0.0000023602,0.0000023600, -0.0000023622,0.0000023668,0.0000023725,0.0000023779,0.0000023819, -0.0000023842,0.0000023849,0.0000023844,0.0000023828,0.0000023812, -0.0000023800,0.0000023792,0.0000023786,0.0000023782,0.0000023762, -0.0000023722,0.0000023668,0.0000023605,0.0000023530,0.0000023454, -0.0000023367,0.0000023272,0.0000023171,0.0000023088,0.0000023054, -0.0000023068,0.0000023115,0.0000023176,0.0000023234,0.0000023287, -0.0000023340,0.0000023388,0.0000023422,0.0000023441,0.0000023456, -0.0000023467,0.0000023467,0.0000023456,0.0000023426,0.0000023379, -0.0000023324,0.0000023278,0.0000023270,0.0000023313,0.0000023423, -0.0000023589,0.0000023781,0.0000023964,0.0000024116,0.0000024249, -0.0000024394,0.0000024569,0.0000024758,0.0000024922,0.0000025034, -0.0000025086,0.0000025095,0.0000025079,0.0000025054,0.0000025031, -0.0000025012,0.0000024991,0.0000024962,0.0000024925,0.0000024895, -0.0000024884,0.0000024855,0.0000024744,0.0000024556,0.0000024393, -0.0000024315,0.0000024271,0.0000024212,0.0000024165,0.0000024150, -0.0000024146,0.0000024133,0.0000024102,0.0000024055,0.0000023990, -0.0000023913,0.0000023832,0.0000023751,0.0000023639,0.0000023500, -0.0000023390,0.0000023328,0.0000023316,0.0000023307,0.0000023288, -0.0000023254,0.0000023202,0.0000023038,0.0000022744,0.0000022368, -0.0000022028,0.0000021800,0.0000021657,0.0000021613,0.0000021636, -0.0000021715,0.0000021808,0.0000021897,0.0000021955,0.0000021973, -0.0000021946,0.0000021893,0.0000021819,0.0000021748,0.0000021697, -0.0000021648,0.0000021542,0.0000021372,0.0000021209,0.0000021130, -0.0000021132,0.0000021164,0.0000021190,0.0000021193,0.0000021182, -0.0000021175,0.0000021174,0.0000021177,0.0000021189,0.0000021198, -0.0000021203,0.0000021215,0.0000021245,0.0000021292,0.0000021335, -0.0000021366,0.0000021387,0.0000021402,0.0000021415,0.0000021427, -0.0000021434,0.0000021432,0.0000021425,0.0000021417,0.0000021390, -0.0000021341,0.0000021288,0.0000021244,0.0000021210,0.0000021199, -0.0000021197,0.0000021195,0.0000021216,0.0000021240,0.0000021260, -0.0000021276,0.0000021284,0.0000021286,0.0000021284,0.0000021290, -0.0000021298,0.0000021298,0.0000021299,0.0000021309,0.0000021331, -0.0000021356,0.0000021382,0.0000021406,0.0000021430,0.0000021454, -0.0000021477,0.0000021511,0.0000021553,0.0000021594,0.0000021626, -0.0000021643,0.0000021656,0.0000021675,0.0000021687,0.0000021687, -0.0000021681,0.0000021675,0.0000021667,0.0000021662,0.0000021678, -0.0000021716,0.0000021756,0.0000021781,0.0000021794,0.0000021808, -0.0000021812,0.0000021809,0.0000021797,0.0000021774,0.0000021745, -0.0000021716,0.0000021696,0.0000021685,0.0000021678,0.0000021677, -0.0000021681,0.0000021680,0.0000021676,0.0000021671,0.0000021660, -0.0000021642,0.0000021622,0.0000021609,0.0000021605,0.0000021604, -0.0000021601,0.0000021595,0.0000021596,0.0000021604,0.0000021622, -0.0000021646,0.0000021667,0.0000021685,0.0000021714,0.0000021757, -0.0000021813,0.0000021883,0.0000021959,0.0000022029,0.0000022092, -0.0000022148,0.0000022198,0.0000022245,0.0000022285,0.0000022315, -0.0000022334,0.0000022344,0.0000022345,0.0000022342,0.0000022333, -0.0000022313,0.0000022289,0.0000022267,0.0000022250,0.0000022240, -0.0000022238,0.0000022235,0.0000022228,0.0000022222,0.0000022212, -0.0000022195,0.0000022175,0.0000022151,0.0000022120,0.0000022086, -0.0000022045,0.0000021994,0.0000021948,0.0000021924,0.0000021913, -0.0000021891,0.0000021864,0.0000021843,0.0000021774,0.0000021669, -0.0000021620,0.0000021631,0.0000021681,0.0000021742,0.0000021785, -0.0000021801,0.0000021798,0.0000021780,0.0000021752,0.0000021720, -0.0000021704,0.0000021696,0.0000021670,0.0000021617,0.0000021570, -0.0000021568,0.0000021598,0.0000021607,0.0000021586,0.0000021566, -0.0000021573,0.0000021636,0.0000021741,0.0000021830,0.0000021876, -0.0000021896,0.0000021901,0.0000021892,0.0000021881,0.0000021890, -0.0000021920,0.0000021956,0.0000021995,0.0000022028,0.0000022034, -0.0000022018,0.0000021998,0.0000021979,0.0000021964,0.0000021959, -0.0000021967,0.0000021992,0.0000022029,0.0000022073,0.0000022131, -0.0000022193,0.0000022230,0.0000022231,0.0000022200,0.0000022145, -0.0000022060,0.0000021943,0.0000021829,0.0000021762,0.0000021746, -0.0000021737,0.0000021698,0.0000021631,0.0000021542,0.0000021429, -0.0000021302,0.0000021182,0.0000021090,0.0000021033,0.0000021005, -0.0000020991,0.0000020987,0.0000021005,0.0000021034,0.0000021048, -0.0000021038,0.0000021049,0.0000021242,0.0000021589,0.0000021862, -0.0000022028,0.0000022155,0.0000022235,0.0000022297,0.0000022385, -0.0000022472,0.0000022524,0.0000022556,0.0000022581,0.0000022590, -0.0000022580,0.0000022542,0.0000022487,0.0000022430,0.0000022391, -0.0000022383,0.0000022399,0.0000022417,0.0000022420,0.0000022415, -0.0000022419,0.0000022440,0.0000022472,0.0000022503,0.0000022531, -0.0000022553,0.0000022566,0.0000022569,0.0000022572,0.0000022576, -0.0000022575,0.0000022562,0.0000022537,0.0000022499,0.0000022446, -0.0000022390,0.0000022341,0.0000022288,0.0000022211,0.0000022103, -0.0000021983,0.0000021872,0.0000021782,0.0000021734,0.0000021739, -0.0000021819,0.0000021934,0.0000022040,0.0000022129,0.0000022274, -0.0000022252,0.0000022224,0.0000022210,0.0000022213,0.0000022233, -0.0000022264,0.0000022273,0.0000022167,0.0000021920,0.0000021757, -0.0000021828,0.0000022018,0.0000022274,0.0000022591,0.0000022770, -0.0000022751,0.0000022701,0.0000022720,0.0000022813,0.0000022926, -0.0000022988,0.0000022993,0.0000022994,0.0000023026,0.0000023056, -0.0000023072,0.0000023101,0.0000023140,0.0000023176,0.0000023187, -0.0000023163,0.0000023132,0.0000023149,0.0000023199,0.0000023212, -0.0000023168,0.0000023079,0.0000023002,0.0000022985,0.0000023017, -0.0000023070,0.0000023090,0.0000023076,0.0000023039,0.0000023007, -0.0000022995,0.0000023002,0.0000023017,0.0000023038,0.0000023058, -0.0000023076,0.0000023090,0.0000023089,0.0000023070,0.0000023052, -0.0000023053,0.0000023070,0.0000023089,0.0000023102,0.0000023110, -0.0000023137,0.0000023182,0.0000023233,0.0000023297,0.0000023374, -0.0000023440,0.0000023477,0.0000023484,0.0000023475,0.0000023447, -0.0000023417,0.0000023418,0.0000023433,0.0000023436,0.0000023428, -0.0000023398,0.0000023348,0.0000023310,0.0000023291,0.0000023284, -0.0000023298,0.0000023304,0.0000023284,0.0000023251,0.0000023205, -0.0000023172,0.0000023166,0.0000023155,0.0000023142,0.0000023135, -0.0000023140,0.0000023143,0.0000023150,0.0000023163,0.0000023180, -0.0000023221,0.0000023292,0.0000023355,0.0000023394,0.0000023419, -0.0000023428,0.0000023403,0.0000023352,0.0000023312,0.0000023286, -0.0000023267,0.0000023247,0.0000023221,0.0000023176,0.0000023117, -0.0000023040,0.0000022946,0.0000022848,0.0000022757,0.0000022694, -0.0000022666,0.0000022681,0.0000022762,0.0000022888,0.0000023010, -0.0000023094,0.0000023146,0.0000023192,0.0000023239,0.0000023280, -0.0000023304,0.0000023311,0.0000023312,0.0000023319,0.0000023338, -0.0000023351,0.0000023366,0.0000023388,0.0000023406,0.0000023414, -0.0000023415,0.0000023400,0.0000023383,0.0000023381,0.0000023392, -0.0000023398,0.0000023396,0.0000023400,0.0000023414,0.0000023435, -0.0000023470,0.0000023502,0.0000023532,0.0000023565,0.0000023602, -0.0000023648,0.0000023709,0.0000023782,0.0000023849,0.0000023873, -0.0000023852,0.0000023770,0.0000023645,0.0000023537,0.0000023491, -0.0000023500,0.0000023533,0.0000023547,0.0000023519,0.0000023430, -0.0000023309,0.0000023212,0.0000023162,0.0000023141,0.0000023125, -0.0000023108,0.0000023097,0.0000023094,0.0000023097,0.0000023117, -0.0000023158,0.0000023211,0.0000023258,0.0000023288,0.0000023306, -0.0000023315,0.0000023305,0.0000023280,0.0000023242,0.0000023194, -0.0000023142,0.0000023083,0.0000023067,0.0000023053,0.0000023065, -0.0000023099,0.0000023150,0.0000023208,0.0000023274,0.0000023338, -0.0000023388,0.0000023429,0.0000023464,0.0000023497,0.0000023525, -0.0000023549,0.0000023580,0.0000023613,0.0000023645,0.0000023670, -0.0000023680,0.0000023674,0.0000023651,0.0000023609,0.0000023557, -0.0000023505,0.0000023448,0.0000023384,0.0000023314,0.0000023242, -0.0000023173,0.0000023113,0.0000023062,0.0000023020,0.0000022996, -0.0000022998,0.0000023027,0.0000023066,0.0000023112,0.0000023161, -0.0000023209,0.0000023247,0.0000023268,0.0000023281,0.0000023284, -0.0000023283,0.0000023278,0.0000023272,0.0000023265,0.0000023256, -0.0000023244,0.0000023232,0.0000023225,0.0000023229,0.0000023234, -0.0000023245,0.0000023260,0.0000023277,0.0000023297,0.0000023322, -0.0000023352,0.0000023380,0.0000023399,0.0000023405,0.0000023402, -0.0000023407,0.0000023420,0.0000023437,0.0000023452,0.0000023465, -0.0000023478,0.0000023489,0.0000023495,0.0000023499,0.0000023506, -0.0000023518,0.0000023533,0.0000023549,0.0000023556,0.0000023560, -0.0000023565,0.0000023553,0.0000023536,0.0000023523,0.0000023516, -0.0000023519,0.0000023521,0.0000023527,0.0000023540,0.0000023560, -0.0000023579,0.0000023595,0.0000023610,0.0000023622,0.0000023608, -0.0000023592,0.0000023579,0.0000023563,0.0000023533,0.0000023503, -0.0000023478,0.0000023460,0.0000023447,0.0000023438,0.0000023429, -0.0000023415,0.0000023402,0.0000023397,0.0000023397,0.0000023393, -0.0000023378,0.0000023358,0.0000023346,0.0000023345,0.0000023354, -0.0000023367,0.0000023381,0.0000023395,0.0000023406,0.0000023406, -0.0000023404,0.0000023395,0.0000023390,0.0000023397,0.0000023412, -0.0000023431,0.0000023449,0.0000023472,0.0000023482,0.0000023483, -0.0000023482,0.0000023482,0.0000023484,0.0000023478,0.0000023462, -0.0000023438,0.0000023405,0.0000023372,0.0000023340,0.0000023312, -0.0000023289,0.0000023264,0.0000023237,0.0000023217,0.0000023211, -0.0000023215,0.0000023229,0.0000023248,0.0000023265,0.0000023295, -0.0000023305,0.0000023299,0.0000023285,0.0000023282,0.0000023265, -0.0000023243,0.0000023228,0.0000023226,0.0000023215,0.0000023196, -0.0000023165,0.0000023131,0.0000023090,0.0000023043,0.0000022994, -0.0000022948,0.0000022927,0.0000022899,0.0000022872,0.0000022841, -0.0000022806,0.0000022785,0.0000022777,0.0000022783,0.0000022780, -0.0000022794,0.0000022840,0.0000022911,0.0000022989,0.0000023069, -0.0000023146,0.0000023211,0.0000023247,0.0000023253,0.0000023241, -0.0000023215,0.0000023177,0.0000023131,0.0000023073,0.0000023013, -0.0000022958,0.0000022901,0.0000022827,0.0000022752,0.0000022691, -0.0000022647,0.0000022620,0.0000022626,0.0000022652,0.0000022684, -0.0000022726,0.0000022778,0.0000022841,0.0000022926,0.0000023023, -0.0000023102,0.0000023158,0.0000023189,0.0000023191,0.0000023167, -0.0000023121,0.0000023063,0.0000023005,0.0000022957,0.0000022927, -0.0000022914,0.0000022895,0.0000022870,0.0000022853,0.0000022844, -0.0000022819,0.0000022797,0.0000022777,0.0000022733,0.0000022729, -0.0000022736,0.0000022722,0.0000022753,0.0000022839,0.0000022969, -0.0000023195,0.0000023352,0.0000023380,0.0000023392,0.0000023331, -0.0000023249,0.0000023211,0.0000023082,0.0000022958,0.0000022954, -0.0000023040,0.0000023142,0.0000023221,0.0000023289,0.0000023352, -0.0000023402,0.0000023437,0.0000023462,0.0000023473,0.0000023447, -0.0000023420,0.0000023409,0.0000023377,0.0000023337,0.0000023324, -0.0000023300,0.0000023230,0.0000023166,0.0000023131,0.0000023098, -0.0000023084,0.0000023069,0.0000023044,0.0000023004,0.0000022948, -0.0000022899,0.0000022881,0.0000022924,0.0000022953,0.0000022918, -0.0000022874,0.0000022858,0.0000022864,0.0000022877,0.0000022909, -0.0000022959,0.0000022979,0.0000022980,0.0000022973,0.0000022937, -0.0000022888,0.0000022840,0.0000022776,0.0000022682,0.0000022576, -0.0000022510,0.0000022498,0.0000022484,0.0000022405,0.0000022258, -0.0000022156,0.0000022153,0.0000022188,0.0000022269,0.0000022386, -0.0000022501,0.0000022582,0.0000022608,0.0000022570,0.0000022406, -0.0000022258,0.0000022264,0.0000022402,0.0000022605,0.0000022745, -0.0000022799,0.0000022829,0.0000022880,0.0000022889,0.0000022800, -0.0000022682,0.0000022656,0.0000022723,0.0000022781,0.0000022812, -0.0000022900,0.0000023033,0.0000023128,0.0000023161,0.0000023147, -0.0000023043,0.0000022854,0.0000022609,0.0000022346,0.0000022119, -0.0000022012,0.0000022028,0.0000022135,0.0000022228,0.0000022238, -0.0000022212,0.0000022208,0.0000022233,0.0000022255,0.0000022267, -0.0000022283,0.0000022316,0.0000022375,0.0000022458,0.0000022538, -0.0000022601,0.0000022654,0.0000022694,0.0000022724,0.0000022759, -0.0000022796,0.0000022819,0.0000022830,0.0000022841,0.0000022853, -0.0000022871,0.0000022901,0.0000022947,0.0000022988,0.0000023020, -0.0000023050,0.0000023078,0.0000023113,0.0000023154,0.0000023185, -0.0000023214,0.0000023243,0.0000023268,0.0000023288,0.0000023295, -0.0000023281,0.0000023246,0.0000023206,0.0000023177,0.0000023177, -0.0000023197,0.0000023240,0.0000023287,0.0000023325,0.0000023343, -0.0000023339,0.0000023307,0.0000023246,0.0000023189,0.0000023141, -0.0000023084,0.0000023010,0.0000022935,0.0000022873,0.0000022830, -0.0000022809,0.0000022797,0.0000022801,0.0000022805,0.0000022808, -0.0000022828,0.0000022849,0.0000022866,0.0000022882,0.0000022900, -0.0000022913,0.0000022920,0.0000022953,0.0000023060,0.0000023217, -0.0000023348,0.0000023412,0.0000023432,0.0000023471,0.0000023546, -0.0000023608,0.0000023617,0.0000023570,0.0000023512,0.0000023486, -0.0000023498,0.0000023535,0.0000023568,0.0000023591,0.0000023631, -0.0000023697,0.0000023780,0.0000023844,0.0000023879,0.0000023911, -0.0000023975,0.0000024056,0.0000024111,0.0000024114,0.0000024103, -0.0000024123,0.0000024167,0.0000024185,0.0000024194,0.0000024154, -0.0000024052,0.0000023959,0.0000023845,0.0000023811,0.0000023858, -0.0000023887,0.0000023885,0.0000023876,0.0000023853,0.0000023831, -0.0000023828,0.0000023844,0.0000023872,0.0000023892,0.0000023909, -0.0000023920,0.0000023939,0.0000023979,0.0000024003,0.0000023986, -0.0000023939,0.0000023913,0.0000023925,0.0000023949,0.0000023952, -0.0000023932,0.0000023897,0.0000023860,0.0000023831,0.0000023814, -0.0000023807,0.0000023798,0.0000023778,0.0000023746,0.0000023714, -0.0000023689,0.0000023677,0.0000023675,0.0000023673,0.0000023670, -0.0000023672,0.0000023679,0.0000023684,0.0000023680,0.0000023668, -0.0000023655,0.0000023643,0.0000023636,0.0000023628,0.0000023627, -0.0000023633,0.0000023635,0.0000023621,0.0000023608,0.0000023591, -0.0000023573,0.0000023553,0.0000023541,0.0000023538,0.0000023545, -0.0000023557,0.0000023569,0.0000023584,0.0000023599,0.0000023610, -0.0000023618,0.0000023632,0.0000023659,0.0000023684,0.0000023699, -0.0000023705,0.0000023711,0.0000023725,0.0000023752,0.0000023784, -0.0000023807,0.0000023808,0.0000023788,0.0000023757,0.0000023722, -0.0000023687,0.0000023654,0.0000023618,0.0000023574,0.0000023519, -0.0000023457,0.0000023403,0.0000023366,0.0000023344,0.0000023332, -0.0000023326,0.0000023324,0.0000023320,0.0000023315,0.0000023312, -0.0000023316,0.0000023325,0.0000023339,0.0000023354,0.0000023369, -0.0000023383,0.0000023395,0.0000023408,0.0000023427,0.0000023454, -0.0000023487,0.0000023523,0.0000023559,0.0000023590,0.0000023618, -0.0000023643,0.0000023668,0.0000023695,0.0000023723,0.0000023753, -0.0000023792,0.0000023831,0.0000023867,0.0000023904,0.0000023942, -0.0000023969,0.0000023989,0.0000023984,0.0000023971,0.0000023957, -0.0000023926,0.0000023881,0.0000023832,0.0000023776,0.0000023699, -0.0000023615,0.0000023525,0.0000023443,0.0000023368,0.0000023301, -0.0000023262,0.0000023251,0.0000023258,0.0000023287,0.0000023329, -0.0000023387,0.0000023461,0.0000023544,0.0000023598,0.0000023612, -0.0000023610,0.0000023621,0.0000023625,0.0000023601,0.0000023588, -0.0000023658,0.0000023781,0.0000023870,0.0000023914,0.0000023919, -0.0000023857,0.0000023725,0.0000023614,0.0000023567,0.0000023549, -0.0000023556,0.0000023608,0.0000023693,0.0000023756,0.0000023740, -0.0000023628,0.0000023437,0.0000023271,0.0000023161,0.0000023076, -0.0000023004,0.0000022932,0.0000022849,0.0000022761,0.0000022687, -0.0000022650,0.0000022648,0.0000022664,0.0000022690,0.0000022715, -0.0000022744,0.0000022784,0.0000022839,0.0000022896,0.0000022950, -0.0000023007,0.0000023055,0.0000023074,0.0000023063,0.0000023029, -0.0000022982,0.0000022934,0.0000022900,0.0000022877,0.0000022852, -0.0000022823,0.0000022793,0.0000022746,0.0000022672,0.0000022594, -0.0000022533,0.0000022473,0.0000022396,0.0000022322,0.0000022276, -0.0000022231,0.0000022145,0.0000022053,0.0000022030,0.0000022040, -0.0000022002,0.0000021908,0.0000021817,0.0000021696,0.0000021562, -0.0000021518,0.0000021548,0.0000021545,0.0000021485,0.0000021447, -0.0000021481,0.0000021617,0.0000021839,0.0000022118,0.0000022387, -0.0000022560,0.0000022601,0.0000022572,0.0000022591,0.0000022737, -0.0000022943,0.0000023083,0.0000023152,0.0000023189,0.0000023182, -0.0000023127,0.0000023069,0.0000023040,0.0000023011,0.0000022963, -0.0000022913,0.0000022884,0.0000022890,0.0000022916,0.0000022938, -0.0000022942,0.0000022922,0.0000022880,0.0000022833,0.0000022767, -0.0000022670,0.0000022563,0.0000022455,0.0000022338,0.0000022221, -0.0000022100,0.0000021951,0.0000021760,0.0000021559,0.0000021389, -0.0000021268,0.0000021188,0.0000021143,0.0000021131,0.0000021145, -0.0000021182,0.0000021239,0.0000021306,0.0000021374,0.0000021436, -0.0000021488,0.0000021532,0.0000021568,0.0000021597,0.0000021623, -0.0000021650,0.0000021682,0.0000021704,0.0000021713,0.0000021720, -0.0000021740,0.0000021777,0.0000021820,0.0000021862,0.0000021901, -0.0000021933,0.0000021951,0.0000021952,0.0000021936,0.0000021901, -0.0000021855,0.0000021812,0.0000021785,0.0000021753,0.0000021679, -0.0000021546,0.0000021377,0.0000021215,0.0000021082,0.0000020973, -0.0000020877,0.0000020788,0.0000020712,0.0000020691,0.0000020721, -0.0000020804,0.0000020903,0.0000021043,0.0000021258,0.0000021495, -0.0000021665,0.0000021734,0.0000021749,0.0000021808,0.0000021978, -0.0000022236,0.0000022483,0.0000022613,0.0000022601,0.0000022508, -0.0000022420,0.0000022406,0.0000022502,0.0000022650,0.0000022797, -0.0000022938,0.0000023097,0.0000023250,0.0000023351,0.0000023432, -0.0000023591,0.0000023831,0.0000024057,0.0000024208,0.0000024311, -0.0000024419,0.0000024565,0.0000024732,0.0000024868,0.0000024949, -0.0000025008,0.0000025068,0.0000025109,0.0000025120,0.0000025138, -0.0000025157,0.0000025117,0.0000025008,0.0000024898,0.0000024837, -0.0000024793,0.0000024722,0.0000024638,0.0000024599,0.0000024631, -0.0000024705,0.0000024772,0.0000024823,0.0000024882,0.0000024941, -0.0000024963,0.0000024900,0.0000024706,0.0000024445,0.0000024181, -0.0000024008,0.0000023965,0.0000023913,0.0000023783,0.0000023669, -0.0000023623,0.0000023614,0.0000023624,0.0000023658,0.0000023711, -0.0000023772,0.0000023828,0.0000023868,0.0000023888,0.0000023887, -0.0000023872,0.0000023850,0.0000023829,0.0000023818,0.0000023816, -0.0000023815,0.0000023793,0.0000023744,0.0000023679,0.0000023604, -0.0000023519,0.0000023427,0.0000023324,0.0000023213,0.0000023104, -0.0000023018,0.0000022984,0.0000023003,0.0000023060,0.0000023128, -0.0000023195,0.0000023261,0.0000023323,0.0000023373,0.0000023405, -0.0000023424,0.0000023437,0.0000023445,0.0000023444,0.0000023430, -0.0000023396,0.0000023344,0.0000023280,0.0000023211,0.0000023161, -0.0000023162,0.0000023217,0.0000023319,0.0000023465,0.0000023642, -0.0000023818,0.0000023973,0.0000024104,0.0000024229,0.0000024363, -0.0000024514,0.0000024672,0.0000024814,0.0000024916,0.0000024971, -0.0000024987,0.0000024981,0.0000024965,0.0000024939,0.0000024908, -0.0000024877,0.0000024853,0.0000024826,0.0000024758,0.0000024618, -0.0000024445,0.0000024320,0.0000024261,0.0000024212,0.0000024152, -0.0000024111,0.0000024099,0.0000024088,0.0000024061,0.0000024019, -0.0000023968,0.0000023903,0.0000023831,0.0000023759,0.0000023695, -0.0000023627,0.0000023527,0.0000023419,0.0000023314,0.0000023258, -0.0000023240,0.0000023223,0.0000023208,0.0000023203,0.0000023167, -0.0000023062,0.0000022812,0.0000022418,0.0000022025,0.0000021769, -0.0000021655,0.0000021652,0.0000021706,0.0000021784,0.0000021859, -0.0000021924,0.0000021956,0.0000021944,0.0000021909,0.0000021861, -0.0000021785,0.0000021703,0.0000021651,0.0000021621,0.0000021568, -0.0000021458,0.0000021308,0.0000021192,0.0000021164,0.0000021182, -0.0000021192,0.0000021181,0.0000021171,0.0000021165,0.0000021164, -0.0000021171,0.0000021187,0.0000021208,0.0000021242,0.0000021286, -0.0000021337,0.0000021389,0.0000021427,0.0000021457,0.0000021480, -0.0000021496,0.0000021510,0.0000021517,0.0000021521,0.0000021517, -0.0000021509,0.0000021493,0.0000021458,0.0000021414,0.0000021370, -0.0000021328,0.0000021297,0.0000021284,0.0000021267,0.0000021263, -0.0000021282,0.0000021296,0.0000021312,0.0000021326,0.0000021334, -0.0000021335,0.0000021338,0.0000021343,0.0000021338,0.0000021330, -0.0000021326,0.0000021331,0.0000021338,0.0000021343,0.0000021346, -0.0000021349,0.0000021357,0.0000021372,0.0000021397,0.0000021426, -0.0000021457,0.0000021486,0.0000021506,0.0000021522,0.0000021544, -0.0000021561,0.0000021568,0.0000021567,0.0000021565,0.0000021564, -0.0000021565,0.0000021579,0.0000021614,0.0000021664,0.0000021718, -0.0000021765,0.0000021800,0.0000021822,0.0000021833,0.0000021837, -0.0000021829,0.0000021813,0.0000021792,0.0000021776,0.0000021767, -0.0000021759,0.0000021751,0.0000021753,0.0000021752,0.0000021746, -0.0000021743,0.0000021741,0.0000021729,0.0000021704,0.0000021674, -0.0000021643,0.0000021620,0.0000021608,0.0000021603,0.0000021599, -0.0000021595,0.0000021590,0.0000021591,0.0000021602,0.0000021612, -0.0000021622,0.0000021631,0.0000021640,0.0000021657,0.0000021691, -0.0000021740,0.0000021795,0.0000021847,0.0000021898,0.0000021956, -0.0000022018,0.0000022077,0.0000022127,0.0000022172,0.0000022214, -0.0000022248,0.0000022274,0.0000022291,0.0000022298,0.0000022291, -0.0000022276,0.0000022261,0.0000022248,0.0000022234,0.0000022221, -0.0000022208,0.0000022199,0.0000022188,0.0000022172,0.0000022150, -0.0000022124,0.0000022096,0.0000022064,0.0000022020,0.0000021964, -0.0000021922,0.0000021902,0.0000021886,0.0000021857,0.0000021838, -0.0000021790,0.0000021688,0.0000021618,0.0000021615,0.0000021647, -0.0000021693,0.0000021741,0.0000021776,0.0000021789,0.0000021779, -0.0000021757,0.0000021730,0.0000021708,0.0000021704,0.0000021705, -0.0000021694,0.0000021639,0.0000021569,0.0000021541,0.0000021557, -0.0000021567,0.0000021546,0.0000021523,0.0000021539,0.0000021625, -0.0000021744,0.0000021825,0.0000021863,0.0000021880,0.0000021883, -0.0000021869,0.0000021862,0.0000021880,0.0000021915,0.0000021952, -0.0000021993,0.0000022026,0.0000022032,0.0000022017,0.0000021998, -0.0000021978,0.0000021959,0.0000021944,0.0000021940,0.0000021963, -0.0000022014,0.0000022071,0.0000022134,0.0000022201,0.0000022244, -0.0000022250,0.0000022219,0.0000022155,0.0000022069,0.0000021962, -0.0000021847,0.0000021759,0.0000021716,0.0000021695,0.0000021666, -0.0000021617,0.0000021546,0.0000021456,0.0000021356,0.0000021262, -0.0000021184,0.0000021136,0.0000021120,0.0000021112,0.0000021077, -0.0000021040,0.0000021036,0.0000021050,0.0000021043,0.0000021024, -0.0000021111,0.0000021426,0.0000021750,0.0000021950,0.0000022090, -0.0000022189,0.0000022253,0.0000022331,0.0000022418,0.0000022475, -0.0000022506,0.0000022524,0.0000022526,0.0000022503,0.0000022453, -0.0000022393,0.0000022338,0.0000022303,0.0000022295,0.0000022303, -0.0000022322,0.0000022340,0.0000022358,0.0000022381,0.0000022411, -0.0000022444,0.0000022471,0.0000022490,0.0000022500,0.0000022498, -0.0000022490,0.0000022486,0.0000022485,0.0000022480,0.0000022462, -0.0000022431,0.0000022385,0.0000022323,0.0000022247,0.0000022156, -0.0000022045,0.0000021933,0.0000021840,0.0000021769,0.0000021723, -0.0000021725,0.0000021784,0.0000021886,0.0000021986,0.0000022078, -0.0000022178,0.0000022255,0.0000022264,0.0000022229,0.0000022208, -0.0000022207,0.0000022228,0.0000022265,0.0000022285,0.0000022229, -0.0000022000,0.0000021798,0.0000021805,0.0000021959,0.0000022164, -0.0000022452,0.0000022719,0.0000022778,0.0000022705,0.0000022681, -0.0000022733,0.0000022842,0.0000022937,0.0000022976,0.0000022974, -0.0000022985,0.0000023024,0.0000023053,0.0000023072,0.0000023099, -0.0000023124,0.0000023142,0.0000023139,0.0000023101,0.0000023075, -0.0000023095,0.0000023139,0.0000023143,0.0000023093,0.0000023022, -0.0000022973,0.0000022965,0.0000022987,0.0000023026,0.0000023043, -0.0000023032,0.0000023007,0.0000022992,0.0000022987,0.0000022987, -0.0000022995,0.0000023012,0.0000023032,0.0000023052,0.0000023072, -0.0000023079,0.0000023071,0.0000023057,0.0000023058,0.0000023077, -0.0000023104,0.0000023127,0.0000023138,0.0000023161,0.0000023206, -0.0000023253,0.0000023306,0.0000023376,0.0000023447,0.0000023491, -0.0000023505,0.0000023501,0.0000023468,0.0000023432,0.0000023431, -0.0000023451,0.0000023463,0.0000023458,0.0000023429,0.0000023382, -0.0000023344,0.0000023315,0.0000023286,0.0000023288,0.0000023305, -0.0000023310,0.0000023312,0.0000023306,0.0000023290,0.0000023276, -0.0000023253,0.0000023222,0.0000023200,0.0000023191,0.0000023192, -0.0000023205,0.0000023224,0.0000023249,0.0000023276,0.0000023327, -0.0000023389,0.0000023438,0.0000023466,0.0000023476,0.0000023459, -0.0000023413,0.0000023358,0.0000023313,0.0000023281,0.0000023255, -0.0000023229,0.0000023207,0.0000023184,0.0000023163,0.0000023129, -0.0000023062,0.0000022967,0.0000022860,0.0000022757,0.0000022678, -0.0000022647,0.0000022665,0.0000022748,0.0000022853,0.0000022949, -0.0000023034,0.0000023109,0.0000023170,0.0000023209,0.0000023216, -0.0000023213,0.0000023211,0.0000023221,0.0000023241,0.0000023263, -0.0000023294,0.0000023322,0.0000023341,0.0000023360,0.0000023373, -0.0000023375,0.0000023375,0.0000023380,0.0000023391,0.0000023397, -0.0000023392,0.0000023385,0.0000023387,0.0000023401,0.0000023435, -0.0000023464,0.0000023490,0.0000023519,0.0000023541,0.0000023560, -0.0000023590,0.0000023645,0.0000023714,0.0000023770,0.0000023794, -0.0000023775,0.0000023710,0.0000023610,0.0000023518,0.0000023481, -0.0000023488,0.0000023517,0.0000023522,0.0000023487,0.0000023405, -0.0000023300,0.0000023208,0.0000023157,0.0000023143,0.0000023148, -0.0000023156,0.0000023156,0.0000023147,0.0000023140,0.0000023151, -0.0000023178,0.0000023213,0.0000023245,0.0000023270,0.0000023284, -0.0000023286,0.0000023275,0.0000023264,0.0000023243,0.0000023211, -0.0000023168,0.0000023127,0.0000023082,0.0000023049,0.0000023034, -0.0000023041,0.0000023065,0.0000023109,0.0000023152,0.0000023188, -0.0000023217,0.0000023241,0.0000023263,0.0000023279,0.0000023293, -0.0000023308,0.0000023324,0.0000023340,0.0000023351,0.0000023352, -0.0000023340,0.0000023312,0.0000023272,0.0000023227,0.0000023181, -0.0000023132,0.0000023086,0.0000023042,0.0000022997,0.0000022958, -0.0000022936,0.0000022929,0.0000022932,0.0000022942,0.0000022967, -0.0000023001,0.0000023044,0.0000023093,0.0000023144,0.0000023190, -0.0000023220,0.0000023237,0.0000023242,0.0000023238,0.0000023228, -0.0000023216,0.0000023205,0.0000023195,0.0000023186,0.0000023175, -0.0000023166,0.0000023160,0.0000023158,0.0000023157,0.0000023160, -0.0000023167,0.0000023180,0.0000023200,0.0000023228,0.0000023261, -0.0000023298,0.0000023331,0.0000023353,0.0000023363,0.0000023375, -0.0000023398,0.0000023426,0.0000023448,0.0000023463,0.0000023478, -0.0000023491,0.0000023495,0.0000023493,0.0000023491,0.0000023484, -0.0000023477,0.0000023472,0.0000023465,0.0000023466,0.0000023479, -0.0000023487,0.0000023491,0.0000023503,0.0000023518,0.0000023529, -0.0000023533,0.0000023528,0.0000023517,0.0000023502,0.0000023487, -0.0000023474,0.0000023472,0.0000023482,0.0000023496,0.0000023507, -0.0000023529,0.0000023554,0.0000023549,0.0000023533,0.0000023512, -0.0000023497,0.0000023483,0.0000023473,0.0000023465,0.0000023454, -0.0000023441,0.0000023431,0.0000023430,0.0000023434,0.0000023433, -0.0000023423,0.0000023412,0.0000023404,0.0000023403,0.0000023404, -0.0000023405,0.0000023404,0.0000023408,0.0000023409,0.0000023407, -0.0000023400,0.0000023396,0.0000023400,0.0000023400,0.0000023398, -0.0000023395,0.0000023384,0.0000023358,0.0000023332,0.0000023314, -0.0000023309,0.0000023306,0.0000023303,0.0000023295,0.0000023276, -0.0000023252,0.0000023226,0.0000023198,0.0000023168,0.0000023133, -0.0000023091,0.0000023051,0.0000023025,0.0000023012,0.0000023015, -0.0000023033,0.0000023063,0.0000023103,0.0000023151,0.0000023195, -0.0000023228,0.0000023264,0.0000023312,0.0000023360,0.0000023383, -0.0000023400,0.0000023416,0.0000023418,0.0000023396,0.0000023363, -0.0000023329,0.0000023280,0.0000023223,0.0000023166,0.0000023120, -0.0000023089,0.0000023062,0.0000023035,0.0000023010,0.0000022982, -0.0000022945,0.0000022899,0.0000022851,0.0000022813,0.0000022783, -0.0000022769,0.0000022769,0.0000022792,0.0000022844,0.0000022892, -0.0000022941,0.0000022982,0.0000023004,0.0000023007,0.0000022996, -0.0000022970,0.0000022932,0.0000022877,0.0000022817,0.0000022767, -0.0000022721,0.0000022673,0.0000022624,0.0000022593,0.0000022584, -0.0000022592,0.0000022619,0.0000022663,0.0000022722,0.0000022794, -0.0000022869,0.0000022941,0.0000023014,0.0000023097,0.0000023168, -0.0000023221,0.0000023250,0.0000023251,0.0000023220,0.0000023162, -0.0000023081,0.0000022998,0.0000022932,0.0000022893,0.0000022887, -0.0000022897,0.0000022897,0.0000022888,0.0000022872,0.0000022852, -0.0000022818,0.0000022790,0.0000022741,0.0000022709,0.0000022730, -0.0000022726,0.0000022737,0.0000022819,0.0000022901,0.0000023058, -0.0000023300,0.0000023415,0.0000023424,0.0000023420,0.0000023319, -0.0000023236,0.0000023163,0.0000023027,0.0000022943,0.0000022964, -0.0000023050,0.0000023130,0.0000023198,0.0000023268,0.0000023322, -0.0000023370,0.0000023420,0.0000023456,0.0000023461,0.0000023445, -0.0000023436,0.0000023413,0.0000023367,0.0000023335,0.0000023316, -0.0000023297,0.0000023276,0.0000023246,0.0000023191,0.0000023150, -0.0000023119,0.0000023080,0.0000023036,0.0000022996,0.0000022968, -0.0000022961,0.0000022987,0.0000022974,0.0000022915,0.0000022866, -0.0000022850,0.0000022844,0.0000022859,0.0000022904,0.0000022949, -0.0000022951,0.0000022943,0.0000022949,0.0000022920,0.0000022873, -0.0000022834,0.0000022783,0.0000022700,0.0000022596,0.0000022521, -0.0000022499,0.0000022479,0.0000022381,0.0000022226,0.0000022148, -0.0000022165,0.0000022235,0.0000022349,0.0000022474,0.0000022556, -0.0000022596,0.0000022600,0.0000022507,0.0000022317,0.0000022217, -0.0000022269,0.0000022458,0.0000022656,0.0000022767,0.0000022809, -0.0000022861,0.0000022926,0.0000022920,0.0000022817,0.0000022695, -0.0000022673,0.0000022726,0.0000022764,0.0000022793,0.0000022886, -0.0000023013,0.0000023091,0.0000023122,0.0000023089,0.0000022971, -0.0000022784,0.0000022553,0.0000022322,0.0000022133,0.0000022028, -0.0000022050,0.0000022154,0.0000022231,0.0000022232,0.0000022194, -0.0000022180,0.0000022215,0.0000022259,0.0000022290,0.0000022325, -0.0000022379,0.0000022443,0.0000022515,0.0000022583,0.0000022634, -0.0000022672,0.0000022703,0.0000022726,0.0000022745,0.0000022766, -0.0000022779,0.0000022792,0.0000022815,0.0000022838,0.0000022861, -0.0000022892,0.0000022943,0.0000022996,0.0000023038,0.0000023074, -0.0000023095,0.0000023114,0.0000023138,0.0000023162,0.0000023182, -0.0000023216,0.0000023253,0.0000023278,0.0000023287,0.0000023278, -0.0000023240,0.0000023191,0.0000023142,0.0000023116,0.0000023120, -0.0000023154,0.0000023202,0.0000023252,0.0000023303,0.0000023339, -0.0000023344,0.0000023323,0.0000023269,0.0000023202,0.0000023136, -0.0000023070,0.0000022998,0.0000022924,0.0000022859,0.0000022815, -0.0000022793,0.0000022781,0.0000022770,0.0000022750,0.0000022737, -0.0000022753,0.0000022775,0.0000022797,0.0000022825,0.0000022853, -0.0000022881,0.0000022928,0.0000023025,0.0000023166,0.0000023298, -0.0000023375,0.0000023413,0.0000023437,0.0000023492,0.0000023562, -0.0000023599,0.0000023591,0.0000023544,0.0000023494,0.0000023471, -0.0000023479,0.0000023506,0.0000023526,0.0000023539,0.0000023570, -0.0000023630,0.0000023704,0.0000023767,0.0000023813,0.0000023866, -0.0000023958,0.0000024050,0.0000024098,0.0000024096,0.0000024090, -0.0000024119,0.0000024163,0.0000024189,0.0000024200,0.0000024142, -0.0000024046,0.0000023943,0.0000023835,0.0000023819,0.0000023862, -0.0000023886,0.0000023891,0.0000023895,0.0000023888,0.0000023876, -0.0000023866,0.0000023872,0.0000023893,0.0000023913,0.0000023934, -0.0000023951,0.0000023970,0.0000024001,0.0000024022,0.0000024013, -0.0000023964,0.0000023918,0.0000023904,0.0000023915,0.0000023921, -0.0000023907,0.0000023879,0.0000023849,0.0000023824,0.0000023806, -0.0000023787,0.0000023764,0.0000023736,0.0000023704,0.0000023676, -0.0000023665,0.0000023670,0.0000023682,0.0000023691,0.0000023697, -0.0000023701,0.0000023704,0.0000023705,0.0000023702,0.0000023697, -0.0000023693,0.0000023689,0.0000023678,0.0000023661,0.0000023648, -0.0000023636,0.0000023614,0.0000023583,0.0000023547,0.0000023508, -0.0000023471,0.0000023438,0.0000023418,0.0000023410,0.0000023411, -0.0000023418,0.0000023436,0.0000023465,0.0000023500,0.0000023535, -0.0000023565,0.0000023592,0.0000023615,0.0000023633,0.0000023647, -0.0000023658,0.0000023663,0.0000023666,0.0000023672,0.0000023688, -0.0000023710,0.0000023728,0.0000023737,0.0000023735,0.0000023718, -0.0000023684,0.0000023652,0.0000023614,0.0000023572,0.0000023522, -0.0000023461,0.0000023400,0.0000023345,0.0000023299,0.0000023268, -0.0000023248,0.0000023239,0.0000023240,0.0000023248,0.0000023260, -0.0000023273,0.0000023288,0.0000023305,0.0000023325,0.0000023343, -0.0000023362,0.0000023376,0.0000023387,0.0000023405,0.0000023431, -0.0000023461,0.0000023496,0.0000023531,0.0000023561,0.0000023585, -0.0000023605,0.0000023623,0.0000023645,0.0000023653,0.0000023652, -0.0000023671,0.0000023690,0.0000023710,0.0000023744,0.0000023780, -0.0000023826,0.0000023870,0.0000023906,0.0000023927,0.0000023932, -0.0000023926,0.0000023903,0.0000023865,0.0000023830,0.0000023789, -0.0000023745,0.0000023684,0.0000023638,0.0000023581,0.0000023521, -0.0000023450,0.0000023374,0.0000023289,0.0000023239,0.0000023189, -0.0000023189,0.0000023220,0.0000023296,0.0000023410,0.0000023526, -0.0000023592,0.0000023608,0.0000023618,0.0000023616,0.0000023574, -0.0000023551,0.0000023636,0.0000023767,0.0000023848,0.0000023885, -0.0000023879,0.0000023792,0.0000023666,0.0000023582,0.0000023539, -0.0000023520,0.0000023531,0.0000023574,0.0000023635,0.0000023686, -0.0000023685,0.0000023592,0.0000023423,0.0000023259,0.0000023154, -0.0000023099,0.0000023053,0.0000022996,0.0000022933,0.0000022866, -0.0000022814,0.0000022794,0.0000022796,0.0000022815,0.0000022842, -0.0000022878,0.0000022928,0.0000022991,0.0000023053,0.0000023104, -0.0000023140,0.0000023159,0.0000023149,0.0000023114,0.0000023069, -0.0000023018,0.0000022969,0.0000022938,0.0000022924,0.0000022906, -0.0000022873,0.0000022836,0.0000022800,0.0000022758,0.0000022695, -0.0000022620,0.0000022556,0.0000022507,0.0000022458,0.0000022404, -0.0000022356,0.0000022302,0.0000022199,0.0000022073,0.0000022026, -0.0000022040,0.0000022030,0.0000021955,0.0000021857,0.0000021728, -0.0000021584,0.0000021518,0.0000021521,0.0000021515,0.0000021463, -0.0000021410,0.0000021417,0.0000021514,0.0000021702,0.0000021966, -0.0000022261,0.0000022489,0.0000022581,0.0000022574,0.0000022568, -0.0000022645,0.0000022817,0.0000022982,0.0000023084,0.0000023137, -0.0000023133,0.0000023074,0.0000023010,0.0000022969,0.0000022931, -0.0000022881,0.0000022828,0.0000022795,0.0000022793,0.0000022804, -0.0000022811,0.0000022806,0.0000022773,0.0000022716,0.0000022649, -0.0000022571,0.0000022475,0.0000022383,0.0000022299,0.0000022207, -0.0000022095,0.0000021948,0.0000021758,0.0000021560,0.0000021407, -0.0000021308,0.0000021245,0.0000021208,0.0000021196,0.0000021201, -0.0000021229,0.0000021292,0.0000021378,0.0000021466,0.0000021548, -0.0000021620,0.0000021681,0.0000021732,0.0000021775,0.0000021801, -0.0000021806,0.0000021801,0.0000021787,0.0000021769,0.0000021753, -0.0000021748,0.0000021767,0.0000021801,0.0000021836,0.0000021874, -0.0000021906,0.0000021934,0.0000021954,0.0000021961,0.0000021959, -0.0000021938,0.0000021892,0.0000021838,0.0000021800,0.0000021779, -0.0000021753,0.0000021684,0.0000021552,0.0000021386,0.0000021232, -0.0000021106,0.0000020996,0.0000020895,0.0000020798,0.0000020725, -0.0000020708,0.0000020763,0.0000020842,0.0000020929,0.0000021074, -0.0000021293,0.0000021522,0.0000021670,0.0000021716,0.0000021735, -0.0000021835,0.0000022052,0.0000022316,0.0000022516,0.0000022572, -0.0000022522,0.0000022417,0.0000022366,0.0000022412,0.0000022544, -0.0000022693,0.0000022834,0.0000022976,0.0000023120,0.0000023248, -0.0000023340,0.0000023449,0.0000023646,0.0000023893,0.0000024090, -0.0000024210,0.0000024303,0.0000024426,0.0000024593,0.0000024769, -0.0000024896,0.0000024966,0.0000025019,0.0000025065,0.0000025085, -0.0000025098,0.0000025124,0.0000025120,0.0000025055,0.0000024917, -0.0000024805,0.0000024736,0.0000024676,0.0000024593,0.0000024530, -0.0000024534,0.0000024616,0.0000024718,0.0000024794,0.0000024854, -0.0000024915,0.0000024950,0.0000024913,0.0000024744,0.0000024495, -0.0000024233,0.0000024037,0.0000023976,0.0000023954,0.0000023854, -0.0000023728,0.0000023661,0.0000023645,0.0000023645,0.0000023665, -0.0000023709,0.0000023768,0.0000023832,0.0000023883,0.0000023911, -0.0000023914,0.0000023899,0.0000023874,0.0000023850,0.0000023840, -0.0000023841,0.0000023838,0.0000023811,0.0000023756,0.0000023682, -0.0000023601,0.0000023511,0.0000023409,0.0000023302,0.0000023192, -0.0000023084,0.0000022998,0.0000022965,0.0000022988,0.0000023050, -0.0000023126,0.0000023205,0.0000023276,0.0000023331,0.0000023371, -0.0000023391,0.0000023404,0.0000023412,0.0000023415,0.0000023403, -0.0000023377,0.0000023338,0.0000023288,0.0000023229,0.0000023158, -0.0000023102,0.0000023094,0.0000023127,0.0000023173,0.0000023241, -0.0000023347,0.0000023488,0.0000023645,0.0000023797,0.0000023930, -0.0000024042,0.0000024148,0.0000024271,0.0000024418,0.0000024572, -0.0000024704,0.0000024793,0.0000024838,0.0000024851,0.0000024843, -0.0000024828,0.0000024809,0.0000024781,0.0000024725,0.0000024622, -0.0000024478,0.0000024343,0.0000024261,0.0000024217,0.0000024167, -0.0000024113,0.0000024082,0.0000024069,0.0000024045,0.0000023996, -0.0000023929,0.0000023852,0.0000023776,0.0000023705,0.0000023638, -0.0000023579,0.0000023529,0.0000023480,0.0000023416,0.0000023325, -0.0000023240,0.0000023192,0.0000023174,0.0000023163,0.0000023152, -0.0000023144,0.0000023119,0.0000023059,0.0000022849,0.0000022473, -0.0000022050,0.0000021769,0.0000021680,0.0000021704,0.0000021776, -0.0000021842,0.0000021891,0.0000021935,0.0000021949,0.0000021922, -0.0000021876,0.0000021821,0.0000021747,0.0000021667,0.0000021615, -0.0000021598,0.0000021591,0.0000021552,0.0000021441,0.0000021303, -0.0000021211,0.0000021189,0.0000021190,0.0000021188,0.0000021181, -0.0000021174,0.0000021170,0.0000021179,0.0000021207,0.0000021255, -0.0000021315,0.0000021374,0.0000021432,0.0000021480,0.0000021520, -0.0000021555,0.0000021579,0.0000021593,0.0000021601,0.0000021606, -0.0000021605,0.0000021593,0.0000021579,0.0000021557,0.0000021532, -0.0000021503,0.0000021466,0.0000021430,0.0000021409,0.0000021388, -0.0000021367,0.0000021365,0.0000021365,0.0000021365,0.0000021367, -0.0000021371,0.0000021371,0.0000021369,0.0000021362,0.0000021350, -0.0000021335,0.0000021327,0.0000021328,0.0000021325,0.0000021320, -0.0000021316,0.0000021311,0.0000021308,0.0000021312,0.0000021325, -0.0000021338,0.0000021354,0.0000021374,0.0000021391,0.0000021408, -0.0000021429,0.0000021443,0.0000021446,0.0000021442,0.0000021435, -0.0000021428,0.0000021431,0.0000021449,0.0000021485,0.0000021533, -0.0000021593,0.0000021659,0.0000021722,0.0000021778,0.0000021816, -0.0000021836,0.0000021839,0.0000021834,0.0000021824,0.0000021810, -0.0000021803,0.0000021801,0.0000021791,0.0000021785,0.0000021784, -0.0000021778,0.0000021771,0.0000021770,0.0000021771,0.0000021764, -0.0000021747,0.0000021723,0.0000021694,0.0000021663,0.0000021636, -0.0000021618,0.0000021609,0.0000021604,0.0000021594,0.0000021585, -0.0000021577,0.0000021566,0.0000021566,0.0000021567,0.0000021570, -0.0000021575,0.0000021585,0.0000021601,0.0000021617,0.0000021635, -0.0000021663,0.0000021708,0.0000021765,0.0000021826,0.0000021889, -0.0000021958,0.0000022031,0.0000022094,0.0000022145,0.0000022190, -0.0000022224,0.0000022243,0.0000022250,0.0000022249,0.0000022242, -0.0000022230,0.0000022215,0.0000022200,0.0000022187,0.0000022174, -0.0000022158,0.0000022135,0.0000022107,0.0000022077,0.0000022042, -0.0000021991,0.0000021937,0.0000021902,0.0000021879,0.0000021849, -0.0000021826,0.0000021796,0.0000021707,0.0000021621,0.0000021611, -0.0000021631,0.0000021659,0.0000021695,0.0000021733,0.0000021759, -0.0000021762,0.0000021749,0.0000021726,0.0000021702,0.0000021690, -0.0000021691,0.0000021698,0.0000021695,0.0000021653,0.0000021568, -0.0000021511,0.0000021516,0.0000021526,0.0000021503,0.0000021480, -0.0000021504,0.0000021607,0.0000021730,0.0000021804,0.0000021836, -0.0000021852,0.0000021856,0.0000021847,0.0000021851,0.0000021872, -0.0000021906,0.0000021944,0.0000021987,0.0000022023,0.0000022031, -0.0000022020,0.0000022005,0.0000021988,0.0000021967,0.0000021947, -0.0000021936,0.0000021949,0.0000021998,0.0000022058,0.0000022120, -0.0000022190,0.0000022243,0.0000022254,0.0000022227,0.0000022158, -0.0000022067,0.0000021966,0.0000021858,0.0000021766,0.0000021707, -0.0000021672,0.0000021638,0.0000021596,0.0000021541,0.0000021464, -0.0000021374,0.0000021292,0.0000021231,0.0000021202,0.0000021206, -0.0000021221,0.0000021204,0.0000021131,0.0000021061,0.0000021047, -0.0000021049,0.0000021031,0.0000021053,0.0000021271,0.0000021617, -0.0000021874,0.0000022036,0.0000022151,0.0000022219,0.0000022284, -0.0000022365,0.0000022424,0.0000022450,0.0000022459,0.0000022458, -0.0000022434,0.0000022381,0.0000022319,0.0000022266,0.0000022230, -0.0000022215,0.0000022218,0.0000022241,0.0000022278,0.0000022314, -0.0000022345,0.0000022376,0.0000022405,0.0000022425,0.0000022432, -0.0000022428,0.0000022417,0.0000022409,0.0000022409,0.0000022410, -0.0000022398,0.0000022365,0.0000022311,0.0000022237,0.0000022141, -0.0000022026,0.0000021913,0.0000021819,0.0000021746,0.0000021684, -0.0000021657,0.0000021708,0.0000021823,0.0000021947,0.0000022044, -0.0000022135,0.0000022232,0.0000022298,0.0000022300,0.0000022239, -0.0000022210,0.0000022201,0.0000022217,0.0000022257,0.0000022289, -0.0000022255,0.0000022063,0.0000021821,0.0000021768,0.0000021915, -0.0000022099,0.0000022334,0.0000022626,0.0000022779,0.0000022736, -0.0000022667,0.0000022682,0.0000022768,0.0000022870,0.0000022936, -0.0000022950,0.0000022950,0.0000022977,0.0000023020,0.0000023046, -0.0000023072,0.0000023100,0.0000023112,0.0000023114,0.0000023097, -0.0000023053,0.0000023030,0.0000023048,0.0000023081,0.0000023073, -0.0000023026,0.0000022975,0.0000022946,0.0000022941,0.0000022950, -0.0000022969,0.0000022976,0.0000022969,0.0000022963,0.0000022965, -0.0000022964,0.0000022959,0.0000022962,0.0000022976,0.0000022994, -0.0000023016,0.0000023043,0.0000023059,0.0000023059,0.0000023059, -0.0000023072,0.0000023095,0.0000023124,0.0000023153,0.0000023171, -0.0000023194,0.0000023235,0.0000023278,0.0000023327,0.0000023395, -0.0000023466,0.0000023510,0.0000023524,0.0000023523,0.0000023495, -0.0000023455,0.0000023439,0.0000023448,0.0000023468,0.0000023478, -0.0000023464,0.0000023425,0.0000023383,0.0000023343,0.0000023300, -0.0000023286,0.0000023292,0.0000023294,0.0000023299,0.0000023316, -0.0000023337,0.0000023360,0.0000023356,0.0000023333,0.0000023307, -0.0000023282,0.0000023277,0.0000023288,0.0000023312,0.0000023341, -0.0000023362,0.0000023390,0.0000023439,0.0000023496,0.0000023534, -0.0000023545,0.0000023532,0.0000023496,0.0000023441,0.0000023377, -0.0000023319,0.0000023271,0.0000023227,0.0000023191,0.0000023170, -0.0000023156,0.0000023151,0.0000023135,0.0000023100,0.0000023038, -0.0000022958,0.0000022864,0.0000022754,0.0000022672,0.0000022647, -0.0000022666,0.0000022704,0.0000022775,0.0000022871,0.0000022974, -0.0000023067,0.0000023121,0.0000023136,0.0000023138,0.0000023138, -0.0000023143,0.0000023161,0.0000023193,0.0000023226,0.0000023248, -0.0000023265,0.0000023288,0.0000023307,0.0000023320,0.0000023330, -0.0000023342,0.0000023360,0.0000023370,0.0000023370,0.0000023368, -0.0000023367,0.0000023379,0.0000023407,0.0000023432,0.0000023454, -0.0000023478,0.0000023491,0.0000023495,0.0000023500,0.0000023523, -0.0000023563,0.0000023614,0.0000023672,0.0000023716,0.0000023711, -0.0000023672,0.0000023599,0.0000023523,0.0000023489,0.0000023486, -0.0000023503,0.0000023505,0.0000023476,0.0000023405,0.0000023310, -0.0000023233,0.0000023199,0.0000023200,0.0000023212,0.0000023215, -0.0000023202,0.0000023182,0.0000023168,0.0000023173,0.0000023189, -0.0000023216,0.0000023241,0.0000023258,0.0000023261,0.0000023255, -0.0000023247,0.0000023243,0.0000023233,0.0000023216,0.0000023193, -0.0000023159,0.0000023116,0.0000023084,0.0000023068,0.0000023069, -0.0000023088,0.0000023098,0.0000023108,0.0000023115,0.0000023122, -0.0000023126,0.0000023124,0.0000023125,0.0000023122,0.0000023118, -0.0000023115,0.0000023113,0.0000023103,0.0000023082,0.0000023050, -0.0000023018,0.0000022987,0.0000022957,0.0000022931,0.0000022913, -0.0000022898,0.0000022884,0.0000022877,0.0000022881,0.0000022899, -0.0000022924,0.0000022949,0.0000022979,0.0000023012,0.0000023043, -0.0000023072,0.0000023100,0.0000023122,0.0000023133,0.0000023135, -0.0000023126,0.0000023110,0.0000023089,0.0000023067,0.0000023050, -0.0000023040,0.0000023034,0.0000023030,0.0000023027,0.0000023024, -0.0000023021,0.0000023018,0.0000023015,0.0000023016,0.0000023024, -0.0000023037,0.0000023057,0.0000023083,0.0000023117,0.0000023154, -0.0000023187,0.0000023216,0.0000023249,0.0000023299,0.0000023353, -0.0000023399,0.0000023435,0.0000023469,0.0000023494,0.0000023500, -0.0000023500,0.0000023494,0.0000023484,0.0000023467,0.0000023444, -0.0000023414,0.0000023393,0.0000023386,0.0000023384,0.0000023389, -0.0000023410,0.0000023442,0.0000023478,0.0000023514,0.0000023535, -0.0000023548,0.0000023540,0.0000023512,0.0000023471,0.0000023438, -0.0000023397,0.0000023369,0.0000023359,0.0000023370,0.0000023395, -0.0000023421,0.0000023441,0.0000023460,0.0000023475,0.0000023482, -0.0000023478,0.0000023474,0.0000023470,0.0000023464,0.0000023459, -0.0000023456,0.0000023454,0.0000023452,0.0000023450,0.0000023443, -0.0000023429,0.0000023413,0.0000023402,0.0000023400,0.0000023396, -0.0000023383,0.0000023373,0.0000023362,0.0000023345,0.0000023324, -0.0000023299,0.0000023272,0.0000023248,0.0000023227,0.0000023202, -0.0000023174,0.0000023149,0.0000023144,0.0000023155,0.0000023174, -0.0000023192,0.0000023197,0.0000023191,0.0000023178,0.0000023159, -0.0000023133,0.0000023104,0.0000023070,0.0000023022,0.0000022969, -0.0000022923,0.0000022889,0.0000022866,0.0000022860,0.0000022871, -0.0000022894,0.0000022932,0.0000022976,0.0000023015,0.0000023062, -0.0000023126,0.0000023192,0.0000023243,0.0000023276,0.0000023308, -0.0000023330,0.0000023341,0.0000023343,0.0000023333,0.0000023308, -0.0000023265,0.0000023219,0.0000023187,0.0000023164,0.0000023147, -0.0000023132,0.0000023135,0.0000023139,0.0000023138,0.0000023118, -0.0000023088,0.0000023084,0.0000023060,0.0000023016,0.0000022964, -0.0000022921,0.0000022902,0.0000022903,0.0000022911,0.0000022926, -0.0000022940,0.0000022950,0.0000022946,0.0000022930,0.0000022907, -0.0000022871,0.0000022829,0.0000022792,0.0000022759,0.0000022727, -0.0000022698,0.0000022682,0.0000022670,0.0000022677,0.0000022707, -0.0000022761,0.0000022828,0.0000022897,0.0000022964,0.0000023025, -0.0000023079,0.0000023140,0.0000023197,0.0000023248,0.0000023285, -0.0000023292,0.0000023268,0.0000023210,0.0000023118,0.0000023009, -0.0000022917,0.0000022853,0.0000022823,0.0000022838,0.0000022872, -0.0000022910,0.0000022909,0.0000022871,0.0000022839,0.0000022806, -0.0000022760,0.0000022705,0.0000022705,0.0000022721,0.0000022726, -0.0000022788,0.0000022878,0.0000022961,0.0000023171,0.0000023401, -0.0000023457,0.0000023457,0.0000023426,0.0000023289,0.0000023211, -0.0000023110,0.0000022998,0.0000022952,0.0000022990,0.0000023057, -0.0000023121,0.0000023188,0.0000023246,0.0000023301,0.0000023367, -0.0000023431,0.0000023462,0.0000023465,0.0000023459,0.0000023443, -0.0000023402,0.0000023358,0.0000023321,0.0000023304,0.0000023310, -0.0000023310,0.0000023276,0.0000023234,0.0000023192,0.0000023147, -0.0000023105,0.0000023073,0.0000023048,0.0000023024,0.0000023014, -0.0000022984,0.0000022913,0.0000022861,0.0000022838,0.0000022830, -0.0000022856,0.0000022902,0.0000022918,0.0000022900,0.0000022900, -0.0000022919,0.0000022905,0.0000022861,0.0000022824,0.0000022788, -0.0000022723,0.0000022624,0.0000022543,0.0000022516,0.0000022486, -0.0000022368,0.0000022206,0.0000022149,0.0000022188,0.0000022298, -0.0000022440,0.0000022550,0.0000022591,0.0000022598,0.0000022564, -0.0000022403,0.0000022208,0.0000022179,0.0000022308,0.0000022510, -0.0000022680,0.0000022768,0.0000022813,0.0000022888,0.0000022949, -0.0000022936,0.0000022827,0.0000022710,0.0000022694,0.0000022734, -0.0000022750,0.0000022770,0.0000022864,0.0000022986,0.0000023049, -0.0000023069,0.0000023019,0.0000022893,0.0000022714,0.0000022501, -0.0000022305,0.0000022157,0.0000022068,0.0000022078,0.0000022175, -0.0000022240,0.0000022234,0.0000022189,0.0000022161,0.0000022193, -0.0000022261,0.0000022319,0.0000022371,0.0000022437,0.0000022508, -0.0000022572,0.0000022625,0.0000022663,0.0000022689,0.0000022713, -0.0000022732,0.0000022745,0.0000022754,0.0000022759,0.0000022769, -0.0000022798,0.0000022830,0.0000022858,0.0000022889,0.0000022932, -0.0000022984,0.0000023035,0.0000023077,0.0000023098,0.0000023108, -0.0000023123,0.0000023141,0.0000023158,0.0000023184,0.0000023225, -0.0000023261,0.0000023277,0.0000023268,0.0000023233,0.0000023188, -0.0000023140,0.0000023104,0.0000023095,0.0000023109,0.0000023138, -0.0000023174,0.0000023218,0.0000023271,0.0000023319,0.0000023340, -0.0000023338,0.0000023307,0.0000023240,0.0000023159,0.0000023076, -0.0000022990,0.0000022904,0.0000022833,0.0000022778,0.0000022742, -0.0000022714,0.0000022683,0.0000022655,0.0000022639,0.0000022658, -0.0000022688,0.0000022723,0.0000022770,0.0000022825,0.0000022895, -0.0000022998,0.0000023134,0.0000023264,0.0000023349,0.0000023385, -0.0000023412,0.0000023452,0.0000023520,0.0000023572,0.0000023588, -0.0000023566,0.0000023523,0.0000023485,0.0000023470,0.0000023480, -0.0000023494,0.0000023496,0.0000023496,0.0000023522,0.0000023579, -0.0000023648,0.0000023718,0.0000023781,0.0000023857,0.0000023964, -0.0000024048,0.0000024080,0.0000024074,0.0000024074,0.0000024113, -0.0000024164,0.0000024199,0.0000024205,0.0000024126,0.0000024033, -0.0000023930,0.0000023837,0.0000023833,0.0000023869,0.0000023884, -0.0000023894,0.0000023914,0.0000023928,0.0000023922,0.0000023905, -0.0000023902,0.0000023917,0.0000023934,0.0000023951,0.0000023967, -0.0000023987,0.0000024013,0.0000024031,0.0000024029,0.0000023993, -0.0000023942,0.0000023900,0.0000023883,0.0000023878,0.0000023866, -0.0000023846,0.0000023824,0.0000023803,0.0000023778,0.0000023748, -0.0000023712,0.0000023680,0.0000023657,0.0000023643,0.0000023642, -0.0000023655,0.0000023674,0.0000023689,0.0000023696,0.0000023700, -0.0000023706,0.0000023709,0.0000023710,0.0000023709,0.0000023703, -0.0000023689,0.0000023665,0.0000023627,0.0000023581,0.0000023534, -0.0000023487,0.0000023443,0.0000023402,0.0000023363,0.0000023328, -0.0000023301,0.0000023285,0.0000023274,0.0000023268,0.0000023264, -0.0000023267,0.0000023280,0.0000023296,0.0000023319,0.0000023356, -0.0000023400,0.0000023437,0.0000023467,0.0000023492,0.0000023513, -0.0000023529,0.0000023544,0.0000023560,0.0000023578,0.0000023599, -0.0000023621,0.0000023642,0.0000023660,0.0000023667,0.0000023659, -0.0000023637,0.0000023606,0.0000023566,0.0000023522,0.0000023469, -0.0000023414,0.0000023361,0.0000023315,0.0000023276,0.0000023242, -0.0000023218,0.0000023206,0.0000023212,0.0000023228,0.0000023242, -0.0000023260,0.0000023284,0.0000023313,0.0000023337,0.0000023362, -0.0000023385,0.0000023408,0.0000023434,0.0000023461,0.0000023493, -0.0000023528,0.0000023562,0.0000023590,0.0000023615,0.0000023639, -0.0000023661,0.0000023673,0.0000023677,0.0000023676,0.0000023676, -0.0000023670,0.0000023661,0.0000023668,0.0000023666,0.0000023686, -0.0000023711,0.0000023755,0.0000023792,0.0000023823,0.0000023844, -0.0000023847,0.0000023835,0.0000023811,0.0000023773,0.0000023734, -0.0000023693,0.0000023665,0.0000023634,0.0000023622,0.0000023602, -0.0000023588,0.0000023518,0.0000023402,0.0000023259,0.0000023157, -0.0000023088,0.0000023099,0.0000023164,0.0000023293,0.0000023459, -0.0000023572,0.0000023602,0.0000023612,0.0000023599,0.0000023540, -0.0000023522,0.0000023621,0.0000023751,0.0000023821,0.0000023855, -0.0000023831,0.0000023734,0.0000023625,0.0000023551,0.0000023501, -0.0000023487,0.0000023498,0.0000023519,0.0000023553,0.0000023606, -0.0000023623,0.0000023561,0.0000023418,0.0000023264,0.0000023172, -0.0000023132,0.0000023098,0.0000023057,0.0000023017,0.0000022989, -0.0000022980,0.0000022988,0.0000023002,0.0000023022,0.0000023052, -0.0000023093,0.0000023139,0.0000023179,0.0000023204,0.0000023211, -0.0000023199,0.0000023170,0.0000023133,0.0000023099,0.0000023068, -0.0000023037,0.0000023015,0.0000023008,0.0000022996,0.0000022963, -0.0000022916,0.0000022870,0.0000022827,0.0000022782,0.0000022724, -0.0000022654,0.0000022591,0.0000022546,0.0000022516,0.0000022488, -0.0000022451,0.0000022386,0.0000022260,0.0000022101,0.0000022030, -0.0000022051,0.0000022071,0.0000022001,0.0000021887,0.0000021761, -0.0000021619,0.0000021524,0.0000021507,0.0000021498,0.0000021453, -0.0000021391,0.0000021370,0.0000021423,0.0000021569,0.0000021803, -0.0000022101,0.0000022377,0.0000022533,0.0000022562,0.0000022551, -0.0000022585,0.0000022709,0.0000022861,0.0000022979,0.0000023049, -0.0000023053,0.0000022997,0.0000022929,0.0000022879,0.0000022833, -0.0000022781,0.0000022725,0.0000022682,0.0000022665,0.0000022659, -0.0000022651,0.0000022631,0.0000022590,0.0000022524,0.0000022446, -0.0000022361,0.0000022280,0.0000022223,0.0000022169,0.0000022085, -0.0000021947,0.0000021761,0.0000021569,0.0000021429,0.0000021350, -0.0000021295,0.0000021262,0.0000021246,0.0000021248,0.0000021277, -0.0000021342,0.0000021434,0.0000021532,0.0000021627,0.0000021715, -0.0000021790,0.0000021846,0.0000021881,0.0000021894,0.0000021886, -0.0000021858,0.0000021821,0.0000021790,0.0000021772,0.0000021764, -0.0000021764,0.0000021780,0.0000021805,0.0000021821,0.0000021835, -0.0000021853,0.0000021874,0.0000021900,0.0000021925,0.0000021945, -0.0000021942,0.0000021922,0.0000021879,0.0000021826,0.0000021782, -0.0000021757,0.0000021734,0.0000021671,0.0000021549,0.0000021399, -0.0000021256,0.0000021130,0.0000021019,0.0000020911,0.0000020801, -0.0000020731,0.0000020743,0.0000020800,0.0000020870,0.0000020950, -0.0000021099,0.0000021326,0.0000021547,0.0000021670,0.0000021702, -0.0000021749,0.0000021899,0.0000022138,0.0000022378,0.0000022510, -0.0000022507,0.0000022422,0.0000022337,0.0000022335,0.0000022431, -0.0000022574,0.0000022725,0.0000022866,0.0000023000,0.0000023136, -0.0000023254,0.0000023349,0.0000023485,0.0000023703,0.0000023939, -0.0000024111,0.0000024215,0.0000024305,0.0000024434,0.0000024615, -0.0000024794,0.0000024911,0.0000024970,0.0000025010,0.0000025037, -0.0000025050,0.0000025075,0.0000025106,0.0000025085,0.0000024958, -0.0000024799,0.0000024690,0.0000024624,0.0000024555,0.0000024478, -0.0000024455,0.0000024514,0.0000024635,0.0000024744,0.0000024818, -0.0000024880,0.0000024927,0.0000024916,0.0000024780,0.0000024551, -0.0000024303,0.0000024095,0.0000024010,0.0000024004,0.0000023940, -0.0000023818,0.0000023728,0.0000023693,0.0000023687,0.0000023695, -0.0000023727,0.0000023778,0.0000023837,0.0000023887,0.0000023914, -0.0000023917,0.0000023900,0.0000023875,0.0000023857,0.0000023849, -0.0000023850,0.0000023841,0.0000023810,0.0000023753,0.0000023680, -0.0000023599,0.0000023509,0.0000023408,0.0000023301,0.0000023195, -0.0000023091,0.0000023015,0.0000022998,0.0000023028,0.0000023100, -0.0000023187,0.0000023273,0.0000023339,0.0000023379,0.0000023396, -0.0000023402,0.0000023400,0.0000023401,0.0000023389,0.0000023362, -0.0000023320,0.0000023273,0.0000023225,0.0000023173,0.0000023114, -0.0000023069,0.0000023061,0.0000023086,0.0000023112,0.0000023135, -0.0000023171,0.0000023232,0.0000023321,0.0000023439,0.0000023577, -0.0000023717,0.0000023842,0.0000023955,0.0000024074,0.0000024210, -0.0000024350,0.0000024470,0.0000024556,0.0000024610,0.0000024640, -0.0000024651,0.0000024646,0.0000024617,0.0000024549,0.0000024444, -0.0000024331,0.0000024245,0.0000024202,0.0000024175,0.0000024137, -0.0000024099,0.0000024076,0.0000024053,0.0000024004,0.0000023926, -0.0000023824,0.0000023717,0.0000023619,0.0000023539,0.0000023473, -0.0000023419,0.0000023375,0.0000023345,0.0000023319,0.0000023284, -0.0000023226,0.0000023170,0.0000023142,0.0000023138,0.0000023133, -0.0000023116,0.0000023097,0.0000023081,0.0000023022,0.0000022860, -0.0000022528,0.0000022106,0.0000021803,0.0000021741,0.0000021782, -0.0000021838,0.0000021880,0.0000021913,0.0000021946,0.0000021951, -0.0000021917,0.0000021851,0.0000021781,0.0000021708,0.0000021633, -0.0000021586,0.0000021574,0.0000021605,0.0000021626,0.0000021570, -0.0000021442,0.0000021297,0.0000021205,0.0000021188,0.0000021190, -0.0000021187,0.0000021178,0.0000021177,0.0000021202,0.0000021253, -0.0000021319,0.0000021392,0.0000021459,0.0000021515,0.0000021561, -0.0000021604,0.0000021637,0.0000021657,0.0000021666,0.0000021671, -0.0000021670,0.0000021660,0.0000021640,0.0000021621,0.0000021608, -0.0000021592,0.0000021561,0.0000021528,0.0000021505,0.0000021484, -0.0000021457,0.0000021445,0.0000021442,0.0000021434,0.0000021425, -0.0000021424,0.0000021423,0.0000021412,0.0000021392,0.0000021371, -0.0000021346,0.0000021320,0.0000021303,0.0000021286,0.0000021273, -0.0000021265,0.0000021259,0.0000021252,0.0000021253,0.0000021261, -0.0000021271,0.0000021286,0.0000021307,0.0000021328,0.0000021346, -0.0000021365,0.0000021378,0.0000021378,0.0000021370,0.0000021356, -0.0000021334,0.0000021318,0.0000021317,0.0000021335,0.0000021371, -0.0000021429,0.0000021503,0.0000021581,0.0000021660,0.0000021729, -0.0000021781,0.0000021813,0.0000021828,0.0000021826,0.0000021816, -0.0000021806,0.0000021805,0.0000021803,0.0000021795,0.0000021790, -0.0000021784,0.0000021777,0.0000021770,0.0000021770,0.0000021767, -0.0000021760,0.0000021748,0.0000021736,0.0000021729,0.0000021710, -0.0000021683,0.0000021655,0.0000021634,0.0000021618,0.0000021606, -0.0000021594,0.0000021574,0.0000021550,0.0000021529,0.0000021515, -0.0000021517,0.0000021519,0.0000021523,0.0000021523,0.0000021514, -0.0000021503,0.0000021502,0.0000021515,0.0000021547,0.0000021595, -0.0000021656,0.0000021732,0.0000021817,0.0000021900,0.0000021977, -0.0000022045,0.0000022100,0.0000022140,0.0000022167,0.0000022184, -0.0000022193,0.0000022194,0.0000022187,0.0000022175,0.0000022162, -0.0000022149,0.0000022134,0.0000022107,0.0000022075,0.0000022043, -0.0000022000,0.0000021947,0.0000021904,0.0000021876,0.0000021844, -0.0000021816,0.0000021795,0.0000021723,0.0000021629,0.0000021606, -0.0000021625,0.0000021643,0.0000021661,0.0000021690,0.0000021715, -0.0000021723,0.0000021718,0.0000021704,0.0000021686,0.0000021671, -0.0000021667,0.0000021670,0.0000021677,0.0000021680,0.0000021652, -0.0000021562,0.0000021485,0.0000021477,0.0000021485,0.0000021460, -0.0000021439,0.0000021470,0.0000021581,0.0000021703,0.0000021769, -0.0000021796,0.0000021813,0.0000021823,0.0000021826,0.0000021834, -0.0000021855,0.0000021887,0.0000021927,0.0000021975,0.0000022014, -0.0000022029,0.0000022028,0.0000022019,0.0000022003,0.0000021983, -0.0000021960,0.0000021942,0.0000021950,0.0000021987,0.0000022037, -0.0000022096,0.0000022166,0.0000022224,0.0000022243,0.0000022224, -0.0000022157,0.0000022064,0.0000021962,0.0000021859,0.0000021768, -0.0000021707,0.0000021670,0.0000021633,0.0000021586,0.0000021530, -0.0000021462,0.0000021382,0.0000021305,0.0000021250,0.0000021228, -0.0000021239,0.0000021273,0.0000021291,0.0000021253,0.0000021147, -0.0000021070,0.0000021053,0.0000021030,0.0000021012,0.0000021135, -0.0000021474,0.0000021793,0.0000021989,0.0000022115,0.0000022188, -0.0000022242,0.0000022314,0.0000022374,0.0000022397,0.0000022402, -0.0000022403,0.0000022383,0.0000022334,0.0000022273,0.0000022219, -0.0000022177,0.0000022153,0.0000022153,0.0000022178,0.0000022225, -0.0000022275,0.0000022312,0.0000022339,0.0000022358,0.0000022367, -0.0000022366,0.0000022357,0.0000022345,0.0000022343,0.0000022350, -0.0000022350,0.0000022318,0.0000022242,0.0000022133,0.0000022012, -0.0000021895,0.0000021807,0.0000021750,0.0000021693,0.0000021632, -0.0000021620,0.0000021703,0.0000021849,0.0000021979,0.0000022085, -0.0000022198,0.0000022297,0.0000022333,0.0000022316,0.0000022277, -0.0000022213,0.0000022192,0.0000022203,0.0000022248,0.0000022289, -0.0000022261,0.0000022085,0.0000021847,0.0000021776,0.0000021875, -0.0000022049,0.0000022246,0.0000022526,0.0000022745,0.0000022763, -0.0000022682,0.0000022661,0.0000022707,0.0000022804,0.0000022887, -0.0000022920,0.0000022919,0.0000022928,0.0000022971,0.0000023010, -0.0000023033,0.0000023069,0.0000023101,0.0000023106,0.0000023099, -0.0000023072,0.0000023019,0.0000022992,0.0000023007,0.0000023033, -0.0000023025,0.0000022985,0.0000022944,0.0000022921,0.0000022915, -0.0000022917,0.0000022920,0.0000022919,0.0000022914,0.0000022916, -0.0000022922,0.0000022921,0.0000022917,0.0000022921,0.0000022932, -0.0000022949,0.0000022975,0.0000023005,0.0000023025,0.0000023035, -0.0000023049,0.0000023078,0.0000023113,0.0000023145,0.0000023174, -0.0000023197,0.0000023221,0.0000023253,0.0000023288,0.0000023333, -0.0000023400,0.0000023466,0.0000023510,0.0000023523,0.0000023524, -0.0000023505,0.0000023468,0.0000023440,0.0000023436,0.0000023454, -0.0000023476,0.0000023478,0.0000023458,0.0000023417,0.0000023364, -0.0000023314,0.0000023289,0.0000023288,0.0000023280,0.0000023267, -0.0000023277,0.0000023312,0.0000023357,0.0000023385,0.0000023388, -0.0000023381,0.0000023358,0.0000023349,0.0000023361,0.0000023387, -0.0000023418,0.0000023437,0.0000023454,0.0000023487,0.0000023538, -0.0000023585,0.0000023604,0.0000023599,0.0000023573,0.0000023537, -0.0000023480,0.0000023409,0.0000023340,0.0000023273,0.0000023215, -0.0000023170,0.0000023137,0.0000023113,0.0000023108,0.0000023099, -0.0000023072,0.0000023037,0.0000023013,0.0000022952,0.0000022856, -0.0000022767,0.0000022702,0.0000022659,0.0000022644,0.0000022653, -0.0000022710,0.0000022794,0.0000022890,0.0000022959,0.0000023006, -0.0000023037,0.0000023056,0.0000023079,0.0000023115,0.0000023156, -0.0000023187,0.0000023206,0.0000023226,0.0000023246,0.0000023260, -0.0000023271,0.0000023277,0.0000023290,0.0000023304,0.0000023315, -0.0000023326,0.0000023338,0.0000023348,0.0000023362,0.0000023375, -0.0000023391,0.0000023417,0.0000023440,0.0000023446,0.0000023441, -0.0000023435,0.0000023438,0.0000023450,0.0000023475,0.0000023524, -0.0000023588,0.0000023647,0.0000023666,0.0000023658,0.0000023609, -0.0000023545,0.0000023503,0.0000023495,0.0000023499,0.0000023502, -0.0000023487,0.0000023439,0.0000023367,0.0000023301,0.0000023264, -0.0000023256,0.0000023256,0.0000023245,0.0000023219,0.0000023193, -0.0000023179,0.0000023183,0.0000023203,0.0000023227,0.0000023246, -0.0000023250,0.0000023244,0.0000023236,0.0000023233,0.0000023228, -0.0000023219,0.0000023207,0.0000023191,0.0000023167,0.0000023147, -0.0000023138,0.0000023134,0.0000023133,0.0000023134,0.0000023133, -0.0000023129,0.0000023123,0.0000023113,0.0000023106,0.0000023094, -0.0000023083,0.0000023069,0.0000023052,0.0000023039,0.0000023022, -0.0000022999,0.0000022971,0.0000022951,0.0000022935,0.0000022918, -0.0000022905,0.0000022893,0.0000022883,0.0000022881,0.0000022882, -0.0000022887,0.0000022902,0.0000022920,0.0000022939,0.0000022960, -0.0000022978,0.0000022991,0.0000023001,0.0000023009,0.0000023015, -0.0000023017,0.0000023014,0.0000023006,0.0000022995,0.0000022980, -0.0000022965,0.0000022955,0.0000022951,0.0000022951,0.0000022952, -0.0000022953,0.0000022952,0.0000022949,0.0000022943,0.0000022937, -0.0000022933,0.0000022932,0.0000022929,0.0000022927,0.0000022931, -0.0000022941,0.0000022956,0.0000022972,0.0000022992,0.0000023025, -0.0000023082,0.0000023150,0.0000023219,0.0000023285,0.0000023349, -0.0000023406,0.0000023448,0.0000023471,0.0000023482,0.0000023482, -0.0000023465,0.0000023443,0.0000023408,0.0000023375,0.0000023348, -0.0000023329,0.0000023315,0.0000023319,0.0000023340,0.0000023373, -0.0000023418,0.0000023467,0.0000023507,0.0000023532,0.0000023530, -0.0000023516,0.0000023486,0.0000023441,0.0000023389,0.0000023338, -0.0000023303,0.0000023279,0.0000023265,0.0000023269,0.0000023289, -0.0000023310,0.0000023332,0.0000023354,0.0000023374,0.0000023388, -0.0000023398,0.0000023406,0.0000023411,0.0000023414,0.0000023416, -0.0000023416,0.0000023409,0.0000023394,0.0000023375,0.0000023354, -0.0000023332,0.0000023307,0.0000023281,0.0000023253,0.0000023227, -0.0000023201,0.0000023176,0.0000023149,0.0000023131,0.0000023122, -0.0000023118,0.0000023113,0.0000023102,0.0000023087,0.0000023087, -0.0000023107,0.0000023139,0.0000023167,0.0000023186,0.0000023197, -0.0000023196,0.0000023181,0.0000023153,0.0000023116,0.0000023075, -0.0000023022,0.0000022964,0.0000022908,0.0000022857,0.0000022819, -0.0000022791,0.0000022783,0.0000022795,0.0000022823,0.0000022861, -0.0000022898,0.0000022933,0.0000022973,0.0000023021,0.0000023059, -0.0000023081,0.0000023100,0.0000023111,0.0000023114,0.0000023117, -0.0000023112,0.0000023094,0.0000023061,0.0000023030,0.0000023006, -0.0000022981,0.0000022963,0.0000022959,0.0000022969,0.0000022988, -0.0000023020,0.0000023045,0.0000023067,0.0000023095,0.0000023127, -0.0000023147,0.0000023147,0.0000023144,0.0000023127,0.0000023120, -0.0000023115,0.0000023108,0.0000023112,0.0000023123,0.0000023121, -0.0000023112,0.0000023103,0.0000023085,0.0000023055,0.0000023023, -0.0000022989,0.0000022956,0.0000022928,0.0000022906,0.0000022884, -0.0000022876,0.0000022895,0.0000022927,0.0000022970,0.0000023018, -0.0000023065,0.0000023116,0.0000023163,0.0000023212,0.0000023262, -0.0000023310,0.0000023349,0.0000023357,0.0000023338,0.0000023288, -0.0000023200,0.0000023083,0.0000022967,0.0000022872,0.0000022804, -0.0000022791,0.0000022827,0.0000022893,0.0000022933,0.0000022907, -0.0000022856,0.0000022825,0.0000022785,0.0000022730,0.0000022686, -0.0000022699,0.0000022714,0.0000022752,0.0000022843,0.0000022922, -0.0000023044,0.0000023303,0.0000023476,0.0000023484,0.0000023486, -0.0000023399,0.0000023246,0.0000023172,0.0000023071,0.0000022991, -0.0000022978,0.0000023011,0.0000023058,0.0000023119,0.0000023182, -0.0000023240,0.0000023307,0.0000023392,0.0000023449,0.0000023472, -0.0000023473,0.0000023457,0.0000023425,0.0000023378,0.0000023329, -0.0000023301,0.0000023302,0.0000023318,0.0000023310,0.0000023286, -0.0000023256,0.0000023220,0.0000023186,0.0000023149,0.0000023099, -0.0000023047,0.0000023011,0.0000022973,0.0000022902,0.0000022845, -0.0000022834,0.0000022844,0.0000022871,0.0000022890,0.0000022872, -0.0000022846,0.0000022869,0.0000022900,0.0000022893,0.0000022854, -0.0000022809,0.0000022783,0.0000022741,0.0000022654,0.0000022574, -0.0000022546,0.0000022509,0.0000022368,0.0000022200,0.0000022159, -0.0000022225,0.0000022370,0.0000022525,0.0000022607,0.0000022619, -0.0000022598,0.0000022499,0.0000022291,0.0000022163,0.0000022178, -0.0000022351,0.0000022551,0.0000022686,0.0000022750,0.0000022810, -0.0000022904,0.0000022962,0.0000022939,0.0000022830,0.0000022730, -0.0000022718,0.0000022741,0.0000022741,0.0000022746,0.0000022836, -0.0000022955,0.0000023003,0.0000023005,0.0000022937,0.0000022809, -0.0000022640,0.0000022452,0.0000022295,0.0000022186,0.0000022113, -0.0000022118,0.0000022195,0.0000022250,0.0000022243,0.0000022194, -0.0000022158,0.0000022176,0.0000022257,0.0000022342,0.0000022414, -0.0000022489,0.0000022564,0.0000022624,0.0000022664,0.0000022689, -0.0000022705,0.0000022721,0.0000022739,0.0000022753,0.0000022758, -0.0000022756,0.0000022763,0.0000022787,0.0000022821,0.0000022853, -0.0000022883,0.0000022913,0.0000022958,0.0000023010,0.0000023058, -0.0000023084,0.0000023090,0.0000023097,0.0000023114,0.0000023136, -0.0000023162,0.0000023193,0.0000023226,0.0000023250,0.0000023248, -0.0000023223,0.0000023185,0.0000023147,0.0000023116,0.0000023103, -0.0000023105,0.0000023121,0.0000023145,0.0000023171,0.0000023201, -0.0000023239,0.0000023281,0.0000023316,0.0000023338,0.0000023333, -0.0000023287,0.0000023210,0.0000023116,0.0000023008,0.0000022903, -0.0000022817,0.0000022751,0.0000022690,0.0000022633,0.0000022591, -0.0000022567,0.0000022556,0.0000022579,0.0000022623,0.0000022682, -0.0000022766,0.0000022862,0.0000022988,0.0000023118,0.0000023235, -0.0000023320,0.0000023364,0.0000023390,0.0000023425,0.0000023479, -0.0000023536,0.0000023566,0.0000023567,0.0000023545,0.0000023514, -0.0000023488,0.0000023483,0.0000023493,0.0000023494,0.0000023480, -0.0000023467,0.0000023491,0.0000023540,0.0000023606,0.0000023687, -0.0000023768,0.0000023864,0.0000023975,0.0000024043,0.0000024056, -0.0000024048,0.0000024057,0.0000024110,0.0000024165,0.0000024204, -0.0000024208,0.0000024110,0.0000024019,0.0000023919,0.0000023837, -0.0000023834,0.0000023866,0.0000023884,0.0000023895,0.0000023929, -0.0000023956,0.0000023964,0.0000023950,0.0000023935,0.0000023939, -0.0000023952,0.0000023962,0.0000023973,0.0000023989,0.0000024010, -0.0000024027,0.0000024028,0.0000024008,0.0000023966,0.0000023917, -0.0000023880,0.0000023855,0.0000023833,0.0000023810,0.0000023789, -0.0000023769,0.0000023744,0.0000023708,0.0000023670,0.0000023639, -0.0000023622,0.0000023609,0.0000023609,0.0000023624,0.0000023646, -0.0000023661,0.0000023668,0.0000023673,0.0000023677,0.0000023678, -0.0000023675,0.0000023666,0.0000023645,0.0000023614,0.0000023572, -0.0000023519,0.0000023464,0.0000023413,0.0000023376,0.0000023347, -0.0000023330,0.0000023308,0.0000023287,0.0000023273,0.0000023264, -0.0000023255,0.0000023246,0.0000023238,0.0000023232,0.0000023229, -0.0000023222,0.0000023211,0.0000023201,0.0000023211,0.0000023225, -0.0000023236,0.0000023248,0.0000023264,0.0000023281,0.0000023299, -0.0000023319,0.0000023340,0.0000023365,0.0000023394,0.0000023428, -0.0000023464,0.0000023493,0.0000023511,0.0000023519,0.0000023516, -0.0000023506,0.0000023487,0.0000023460,0.0000023426,0.0000023390, -0.0000023356,0.0000023325,0.0000023293,0.0000023268,0.0000023252, -0.0000023244,0.0000023248,0.0000023258,0.0000023275,0.0000023298, -0.0000023325,0.0000023353,0.0000023379,0.0000023404,0.0000023430, -0.0000023455,0.0000023480,0.0000023504,0.0000023536,0.0000023565, -0.0000023588,0.0000023612,0.0000023638,0.0000023666,0.0000023687, -0.0000023693,0.0000023705,0.0000023714,0.0000023707,0.0000023693, -0.0000023686,0.0000023670,0.0000023664,0.0000023661,0.0000023672, -0.0000023693,0.0000023714,0.0000023739,0.0000023757,0.0000023764, -0.0000023756,0.0000023733,0.0000023698,0.0000023662,0.0000023626, -0.0000023596,0.0000023585,0.0000023583,0.0000023614,0.0000023629, -0.0000023608,0.0000023503,0.0000023323,0.0000023133,0.0000023034, -0.0000023027,0.0000023077,0.0000023213,0.0000023409,0.0000023548, -0.0000023592,0.0000023601,0.0000023576,0.0000023496,0.0000023489, -0.0000023610,0.0000023730,0.0000023796,0.0000023824,0.0000023785, -0.0000023684,0.0000023585,0.0000023503,0.0000023447,0.0000023435, -0.0000023439,0.0000023438,0.0000023462,0.0000023528,0.0000023569, -0.0000023534,0.0000023423,0.0000023293,0.0000023199,0.0000023149, -0.0000023124,0.0000023112,0.0000023110,0.0000023120,0.0000023138, -0.0000023154,0.0000023169,0.0000023187,0.0000023210,0.0000023231, -0.0000023242,0.0000023244,0.0000023234,0.0000023216,0.0000023193, -0.0000023175,0.0000023167,0.0000023163,0.0000023143,0.0000023112, -0.0000023084,0.0000023060,0.0000023029,0.0000022987,0.0000022943, -0.0000022902,0.0000022867,0.0000022827,0.0000022775,0.0000022711, -0.0000022648,0.0000022599,0.0000022569,0.0000022551,0.0000022528, -0.0000022466,0.0000022330,0.0000022151,0.0000022045,0.0000022069, -0.0000022104,0.0000022047,0.0000021923,0.0000021798,0.0000021663, -0.0000021545,0.0000021503,0.0000021497,0.0000021458,0.0000021384, -0.0000021342,0.0000021357,0.0000021458,0.0000021648,0.0000021923, -0.0000022218,0.0000022443,0.0000022539,0.0000022544,0.0000022557, -0.0000022639,0.0000022758,0.0000022866,0.0000022938,0.0000022950, -0.0000022904,0.0000022839,0.0000022783,0.0000022730,0.0000022674, -0.0000022615,0.0000022565,0.0000022532,0.0000022508,0.0000022482, -0.0000022446,0.0000022391,0.0000022323,0.0000022251,0.0000022177, -0.0000022122,0.0000022092,0.0000022039,0.0000021923,0.0000021757, -0.0000021584,0.0000021458,0.0000021391,0.0000021351,0.0000021315, -0.0000021292,0.0000021294,0.0000021329,0.0000021400,0.0000021491, -0.0000021587,0.0000021684,0.0000021775,0.0000021849,0.0000021896, -0.0000021915,0.0000021911,0.0000021899,0.0000021877,0.0000021846, -0.0000021818,0.0000021799,0.0000021784,0.0000021765,0.0000021753, -0.0000021738,0.0000021727,0.0000021721,0.0000021722,0.0000021734, -0.0000021759,0.0000021793,0.0000021829,0.0000021865,0.0000021894, -0.0000021906,0.0000021895,0.0000021862,0.0000021808,0.0000021760, -0.0000021734,0.0000021714,0.0000021656,0.0000021548,0.0000021413, -0.0000021278,0.0000021157,0.0000021042,0.0000020914,0.0000020797, -0.0000020746,0.0000020764,0.0000020830,0.0000020887,0.0000020962, -0.0000021124,0.0000021362,0.0000021570,0.0000021672,0.0000021711, -0.0000021794,0.0000021971,0.0000022207,0.0000022401,0.0000022459, -0.0000022410,0.0000022317,0.0000022279,0.0000022322,0.0000022445, -0.0000022605,0.0000022760,0.0000022898,0.0000023033,0.0000023168, -0.0000023277,0.0000023375,0.0000023530,0.0000023756,0.0000023982, -0.0000024133,0.0000024215,0.0000024294,0.0000024432,0.0000024628, -0.0000024808,0.0000024913,0.0000024961,0.0000024989,0.0000025004, -0.0000025023,0.0000025061,0.0000025071,0.0000024998,0.0000024842, -0.0000024682,0.0000024580,0.0000024516,0.0000024445,0.0000024395, -0.0000024414,0.0000024529,0.0000024668,0.0000024769,0.0000024840, -0.0000024896,0.0000024907,0.0000024811,0.0000024607,0.0000024379, -0.0000024177,0.0000024068,0.0000024057,0.0000024032,0.0000023933, -0.0000023822,0.0000023758,0.0000023738,0.0000023742,0.0000023767, -0.0000023804,0.0000023848,0.0000023886,0.0000023904,0.0000023902, -0.0000023886,0.0000023867,0.0000023856,0.0000023851,0.0000023851, -0.0000023841,0.0000023812,0.0000023758,0.0000023690,0.0000023617, -0.0000023535,0.0000023445,0.0000023349,0.0000023250,0.0000023162, -0.0000023111,0.0000023112,0.0000023155,0.0000023228,0.0000023309, -0.0000023383,0.0000023440,0.0000023468,0.0000023474,0.0000023464, -0.0000023443,0.0000023421,0.0000023395,0.0000023351,0.0000023301, -0.0000023235,0.0000023184,0.0000023138,0.0000023088,0.0000023050, -0.0000023040,0.0000023051,0.0000023074,0.0000023091,0.0000023099, -0.0000023106,0.0000023120,0.0000023155,0.0000023225,0.0000023336, -0.0000023477,0.0000023633,0.0000023793,0.0000023941,0.0000024071, -0.0000024176,0.0000024256,0.0000024315,0.0000024361,0.0000024388, -0.0000024395,0.0000024381,0.0000024335,0.0000024268,0.0000024204, -0.0000024166,0.0000024151,0.0000024139,0.0000024120,0.0000024097, -0.0000024075,0.0000024028,0.0000023942,0.0000023827,0.0000023701, -0.0000023578,0.0000023465,0.0000023370,0.0000023299,0.0000023248, -0.0000023210,0.0000023188,0.0000023180,0.0000023179,0.0000023171, -0.0000023147,0.0000023129,0.0000023124,0.0000023124,0.0000023115, -0.0000023091,0.0000023053,0.0000023018,0.0000022955,0.0000022844, -0.0000022576,0.0000022193,0.0000021899,0.0000021815,0.0000021848, -0.0000021890,0.0000021918,0.0000021938,0.0000021954,0.0000021957, -0.0000021917,0.0000021835,0.0000021746,0.0000021669,0.0000021610, -0.0000021570,0.0000021574,0.0000021610,0.0000021644,0.0000021653, -0.0000021571,0.0000021428,0.0000021285,0.0000021198,0.0000021187, -0.0000021182,0.0000021187,0.0000021208,0.0000021251,0.0000021316, -0.0000021389,0.0000021460,0.0000021528,0.0000021589,0.0000021639, -0.0000021678,0.0000021705,0.0000021719,0.0000021723,0.0000021716, -0.0000021701,0.0000021677,0.0000021649,0.0000021636,0.0000021624, -0.0000021601,0.0000021569,0.0000021542,0.0000021516,0.0000021495, -0.0000021484,0.0000021482,0.0000021478,0.0000021467,0.0000021458, -0.0000021453,0.0000021441,0.0000021418,0.0000021394,0.0000021365, -0.0000021326,0.0000021291,0.0000021260,0.0000021237,0.0000021217, -0.0000021200,0.0000021183,0.0000021171,0.0000021170,0.0000021173, -0.0000021184,0.0000021204,0.0000021232,0.0000021257,0.0000021278, -0.0000021296,0.0000021305,0.0000021307,0.0000021301,0.0000021287, -0.0000021269,0.0000021258,0.0000021253,0.0000021254,0.0000021275, -0.0000021326,0.0000021397,0.0000021487,0.0000021578,0.0000021654, -0.0000021713,0.0000021756,0.0000021782,0.0000021789,0.0000021784, -0.0000021780,0.0000021781,0.0000021783,0.0000021779,0.0000021770, -0.0000021761,0.0000021751,0.0000021744,0.0000021739,0.0000021734, -0.0000021730,0.0000021728,0.0000021729,0.0000021730,0.0000021727, -0.0000021721,0.0000021700,0.0000021675,0.0000021647,0.0000021624, -0.0000021608,0.0000021590,0.0000021561,0.0000021528,0.0000021505, -0.0000021488,0.0000021469,0.0000021462,0.0000021456,0.0000021446, -0.0000021429,0.0000021409,0.0000021398,0.0000021405,0.0000021429, -0.0000021472,0.0000021535,0.0000021614,0.0000021702,0.0000021791, -0.0000021877,0.0000021955,0.0000022014,0.0000022050,0.0000022076, -0.0000022098,0.0000022112,0.0000022115,0.0000022108,0.0000022098, -0.0000022089,0.0000022076,0.0000022050,0.0000022019,0.0000021986, -0.0000021941,0.0000021896,0.0000021865,0.0000021839,0.0000021810, -0.0000021793,0.0000021740,0.0000021639,0.0000021596,0.0000021620, -0.0000021639,0.0000021642,0.0000021656,0.0000021673,0.0000021675, -0.0000021668,0.0000021656,0.0000021644,0.0000021634,0.0000021631, -0.0000021636,0.0000021643,0.0000021651,0.0000021656,0.0000021639, -0.0000021554,0.0000021464,0.0000021445,0.0000021449,0.0000021423, -0.0000021400,0.0000021434,0.0000021546,0.0000021662,0.0000021722, -0.0000021747,0.0000021769,0.0000021789,0.0000021802,0.0000021816, -0.0000021836,0.0000021866,0.0000021910,0.0000021959,0.0000021998, -0.0000022021,0.0000022030,0.0000022027,0.0000022012,0.0000021991, -0.0000021970,0.0000021953,0.0000021956,0.0000021982,0.0000022022, -0.0000022074,0.0000022136,0.0000022190,0.0000022215,0.0000022203, -0.0000022146,0.0000022057,0.0000021956,0.0000021851,0.0000021759, -0.0000021700,0.0000021670,0.0000021641,0.0000021594,0.0000021529, -0.0000021452,0.0000021379,0.0000021317,0.0000021269,0.0000021245, -0.0000021253,0.0000021284,0.0000021321,0.0000021332,0.0000021266, -0.0000021148,0.0000021067,0.0000021030,0.0000021000,0.0000021049, -0.0000021326,0.0000021688,0.0000021929,0.0000022071,0.0000022154, -0.0000022202,0.0000022263,0.0000022325,0.0000022353,0.0000022361, -0.0000022368,0.0000022357,0.0000022309,0.0000022244,0.0000022182, -0.0000022134,0.0000022106,0.0000022105,0.0000022130,0.0000022180, -0.0000022234,0.0000022274,0.0000022298,0.0000022314,0.0000022323, -0.0000022321,0.0000022312,0.0000022305,0.0000022307,0.0000022310, -0.0000022283,0.0000022189,0.0000022039,0.0000021886,0.0000021773, -0.0000021717,0.0000021691,0.0000021647,0.0000021592,0.0000021599, -0.0000021706,0.0000021861,0.0000021989,0.0000022105,0.0000022244, -0.0000022355,0.0000022383,0.0000022347,0.0000022294,0.0000022251, -0.0000022183,0.0000022185,0.0000022234,0.0000022289,0.0000022274, -0.0000022103,0.0000021854,0.0000021767,0.0000021841,0.0000022005, -0.0000022173,0.0000022426,0.0000022684,0.0000022750,0.0000022704, -0.0000022649,0.0000022663,0.0000022739,0.0000022831,0.0000022888, -0.0000022896,0.0000022890,0.0000022914,0.0000022964,0.0000022994, -0.0000023017,0.0000023061,0.0000023096,0.0000023102,0.0000023095, -0.0000023064,0.0000023004,0.0000022963,0.0000022970,0.0000022998, -0.0000023000,0.0000022971,0.0000022933,0.0000022911,0.0000022902, -0.0000022898,0.0000022893,0.0000022888,0.0000022884,0.0000022884, -0.0000022881,0.0000022872,0.0000022867,0.0000022870,0.0000022879, -0.0000022900,0.0000022935,0.0000022968,0.0000022987,0.0000023002, -0.0000023030,0.0000023070,0.0000023116,0.0000023154,0.0000023182, -0.0000023207,0.0000023234,0.0000023261,0.0000023289,0.0000023327, -0.0000023387,0.0000023452,0.0000023494,0.0000023507,0.0000023507, -0.0000023495,0.0000023462,0.0000023431,0.0000023425,0.0000023439, -0.0000023460,0.0000023469,0.0000023465,0.0000023434,0.0000023379, -0.0000023324,0.0000023290,0.0000023279,0.0000023273,0.0000023257, -0.0000023250,0.0000023262,0.0000023295,0.0000023342,0.0000023373, -0.0000023381,0.0000023370,0.0000023360,0.0000023369,0.0000023397, -0.0000023427,0.0000023448,0.0000023463,0.0000023488,0.0000023523, -0.0000023564,0.0000023592,0.0000023601,0.0000023592,0.0000023576, -0.0000023541,0.0000023496,0.0000023432,0.0000023363,0.0000023299, -0.0000023235,0.0000023174,0.0000023122,0.0000023086,0.0000023066, -0.0000023042,0.0000023016,0.0000023009,0.0000023009,0.0000022990, -0.0000022942,0.0000022876,0.0000022801,0.0000022726,0.0000022667, -0.0000022637,0.0000022630,0.0000022650,0.0000022705,0.0000022762, -0.0000022813,0.0000022853,0.0000022894,0.0000022945,0.0000023007, -0.0000023065,0.0000023111,0.0000023150,0.0000023186,0.0000023218, -0.0000023243,0.0000023257,0.0000023266,0.0000023277,0.0000023282, -0.0000023283,0.0000023291,0.0000023304,0.0000023319,0.0000023333, -0.0000023335,0.0000023344,0.0000023370,0.0000023392,0.0000023398, -0.0000023394,0.0000023389,0.0000023386,0.0000023383,0.0000023387, -0.0000023406,0.0000023447,0.0000023509,0.0000023583,0.0000023641, -0.0000023653,0.0000023627,0.0000023582,0.0000023533,0.0000023507, -0.0000023506,0.0000023519,0.0000023515,0.0000023489,0.0000023431, -0.0000023359,0.0000023306,0.0000023279,0.0000023260,0.0000023234, -0.0000023203,0.0000023182,0.0000023179,0.0000023192,0.0000023212, -0.0000023231,0.0000023241,0.0000023242,0.0000023240,0.0000023240, -0.0000023237,0.0000023226,0.0000023210,0.0000023197,0.0000023185, -0.0000023178,0.0000023178,0.0000023177,0.0000023175,0.0000023171, -0.0000023165,0.0000023156,0.0000023145,0.0000023128,0.0000023112, -0.0000023097,0.0000023083,0.0000023065,0.0000023048,0.0000023030, -0.0000023012,0.0000022991,0.0000022966,0.0000022950,0.0000022942, -0.0000022929,0.0000022915,0.0000022901,0.0000022890,0.0000022886, -0.0000022874,0.0000022865,0.0000022859,0.0000022856,0.0000022857, -0.0000022864,0.0000022873,0.0000022883,0.0000022894,0.0000022905, -0.0000022913,0.0000022920,0.0000022927,0.0000022934,0.0000022939, -0.0000022937,0.0000022932,0.0000022926,0.0000022925,0.0000022926, -0.0000022928,0.0000022932,0.0000022936,0.0000022940,0.0000022936, -0.0000022932,0.0000022927,0.0000022922,0.0000022912,0.0000022900, -0.0000022884,0.0000022869,0.0000022857,0.0000022847,0.0000022842, -0.0000022849,0.0000022879,0.0000022924,0.0000022978,0.0000023039, -0.0000023104,0.0000023171,0.0000023236,0.0000023294,0.0000023342, -0.0000023377,0.0000023400,0.0000023406,0.0000023394,0.0000023369, -0.0000023342,0.0000023316,0.0000023295,0.0000023287,0.0000023293, -0.0000023312,0.0000023341,0.0000023379,0.0000023418,0.0000023452, -0.0000023472,0.0000023480,0.0000023480,0.0000023465,0.0000023442, -0.0000023406,0.0000023363,0.0000023315,0.0000023267,0.0000023237, -0.0000023204,0.0000023182,0.0000023176,0.0000023184,0.0000023196, -0.0000023205,0.0000023216,0.0000023226,0.0000023234,0.0000023240, -0.0000023246,0.0000023246,0.0000023241,0.0000023232,0.0000023216, -0.0000023196,0.0000023177,0.0000023165,0.0000023158,0.0000023152, -0.0000023146,0.0000023141,0.0000023130,0.0000023121,0.0000023111, -0.0000023107,0.0000023109,0.0000023108,0.0000023099,0.0000023086, -0.0000023083,0.0000023099,0.0000023126,0.0000023153,0.0000023181, -0.0000023201,0.0000023207,0.0000023203,0.0000023189,0.0000023164, -0.0000023126,0.0000023077,0.0000023015,0.0000022948,0.0000022883, -0.0000022827,0.0000022785,0.0000022750,0.0000022740,0.0000022756, -0.0000022789,0.0000022828,0.0000022868,0.0000022899,0.0000022931, -0.0000022963,0.0000022985,0.0000022993,0.0000022997,0.0000022993, -0.0000022983,0.0000022970,0.0000022945,0.0000022915,0.0000022886, -0.0000022861,0.0000022836,0.0000022810,0.0000022796,0.0000022793, -0.0000022791,0.0000022804,0.0000022829,0.0000022865,0.0000022923, -0.0000022996,0.0000023061,0.0000023117,0.0000023151,0.0000023165, -0.0000023186,0.0000023212,0.0000023234,0.0000023252,0.0000023274, -0.0000023289,0.0000023289,0.0000023294,0.0000023295,0.0000023283, -0.0000023263,0.0000023240,0.0000023214,0.0000023191,0.0000023175, -0.0000023159,0.0000023147,0.0000023154,0.0000023170,0.0000023191, -0.0000023214,0.0000023234,0.0000023261,0.0000023287,0.0000023311, -0.0000023339,0.0000023365,0.0000023382,0.0000023386,0.0000023368, -0.0000023328,0.0000023263,0.0000023170,0.0000023065,0.0000022962, -0.0000022867,0.0000022806,0.0000022814,0.0000022870,0.0000022931, -0.0000022941,0.0000022897,0.0000022846,0.0000022817,0.0000022770, -0.0000022702,0.0000022678,0.0000022700,0.0000022722,0.0000022798, -0.0000022899,0.0000022976,0.0000023169,0.0000023434,0.0000023517, -0.0000023514,0.0000023492,0.0000023328,0.0000023205,0.0000023130, -0.0000023050,0.0000022998,0.0000022996,0.0000023021,0.0000023068, -0.0000023129,0.0000023186,0.0000023249,0.0000023340,0.0000023421, -0.0000023461,0.0000023464,0.0000023451,0.0000023428,0.0000023382, -0.0000023327,0.0000023290,0.0000023283,0.0000023302,0.0000023313, -0.0000023306,0.0000023295,0.0000023275,0.0000023239,0.0000023175, -0.0000023107,0.0000023035,0.0000022991,0.0000022948,0.0000022868, -0.0000022815,0.0000022840,0.0000022879,0.0000022889,0.0000022870, -0.0000022817,0.0000022802,0.0000022852,0.0000022891,0.0000022888, -0.0000022854,0.0000022799,0.0000022770,0.0000022752,0.0000022687, -0.0000022610,0.0000022583,0.0000022542,0.0000022381,0.0000022205, -0.0000022179,0.0000022271,0.0000022441,0.0000022585,0.0000022634, -0.0000022637,0.0000022589,0.0000022411,0.0000022170,0.0000022099, -0.0000022210,0.0000022397,0.0000022571,0.0000022677,0.0000022731, -0.0000022808,0.0000022912,0.0000022957,0.0000022929,0.0000022827, -0.0000022750,0.0000022741,0.0000022741,0.0000022726,0.0000022733, -0.0000022815,0.0000022918,0.0000022954,0.0000022938,0.0000022849, -0.0000022725,0.0000022572,0.0000022406,0.0000022290,0.0000022217, -0.0000022162,0.0000022165,0.0000022221,0.0000022260,0.0000022252, -0.0000022205,0.0000022156,0.0000022167,0.0000022253,0.0000022357, -0.0000022445,0.0000022530,0.0000022608,0.0000022669,0.0000022700, -0.0000022715,0.0000022723,0.0000022730,0.0000022744,0.0000022764, -0.0000022770,0.0000022765,0.0000022768,0.0000022791,0.0000022816, -0.0000022841,0.0000022868,0.0000022893,0.0000022927,0.0000022975, -0.0000023025,0.0000023053,0.0000023062,0.0000023067,0.0000023085, -0.0000023114,0.0000023145,0.0000023176,0.0000023199,0.0000023214, -0.0000023217,0.0000023200,0.0000023173,0.0000023145,0.0000023124, -0.0000023113,0.0000023115,0.0000023127,0.0000023146,0.0000023166, -0.0000023187,0.0000023207,0.0000023224,0.0000023250,0.0000023287, -0.0000023319,0.0000023331,0.0000023316,0.0000023269,0.0000023189, -0.0000023078,0.0000022962,0.0000022856,0.0000022762,0.0000022675, -0.0000022601,0.0000022553,0.0000022532,0.0000022523,0.0000022557, -0.0000022625,0.0000022721,0.0000022844,0.0000022993,0.0000023131, -0.0000023227,0.0000023289,0.0000023334,0.0000023369,0.0000023410, -0.0000023456,0.0000023494,0.0000023528,0.0000023541,0.0000023537, -0.0000023523,0.0000023504,0.0000023491,0.0000023492,0.0000023498, -0.0000023488,0.0000023465,0.0000023449,0.0000023471,0.0000023510, -0.0000023574,0.0000023666,0.0000023761,0.0000023874,0.0000023984, -0.0000024037,0.0000024032,0.0000024022,0.0000024041,0.0000024101, -0.0000024157,0.0000024202,0.0000024203,0.0000024093,0.0000024007, -0.0000023915,0.0000023842,0.0000023837,0.0000023862,0.0000023879, -0.0000023895,0.0000023930,0.0000023968,0.0000023989,0.0000023991, -0.0000023971,0.0000023961,0.0000023964,0.0000023969,0.0000023975, -0.0000023984,0.0000023999,0.0000024012,0.0000024013,0.0000023999, -0.0000023971,0.0000023935,0.0000023897,0.0000023861,0.0000023828, -0.0000023797,0.0000023770,0.0000023747,0.0000023720,0.0000023687, -0.0000023654,0.0000023627,0.0000023605,0.0000023583,0.0000023575, -0.0000023581,0.0000023596,0.0000023605,0.0000023608,0.0000023610, -0.0000023611,0.0000023609,0.0000023600,0.0000023583,0.0000023557, -0.0000023524,0.0000023487,0.0000023445,0.0000023410,0.0000023382, -0.0000023361,0.0000023343,0.0000023326,0.0000023308,0.0000023288, -0.0000023271,0.0000023256,0.0000023242,0.0000023230,0.0000023221, -0.0000023217,0.0000023216,0.0000023215,0.0000023209,0.0000023198, -0.0000023184,0.0000023169,0.0000023147,0.0000023120,0.0000023099, -0.0000023084,0.0000023077,0.0000023078,0.0000023082,0.0000023091, -0.0000023111,0.0000023146,0.0000023195,0.0000023242,0.0000023283, -0.0000023319,0.0000023350,0.0000023377,0.0000023395,0.0000023404, -0.0000023400,0.0000023385,0.0000023368,0.0000023347,0.0000023329, -0.0000023315,0.0000023304,0.0000023296,0.0000023296,0.0000023305, -0.0000023318,0.0000023335,0.0000023356,0.0000023379,0.0000023397, -0.0000023409,0.0000023432,0.0000023447,0.0000023462,0.0000023478, -0.0000023494,0.0000023509,0.0000023524,0.0000023542,0.0000023563, -0.0000023589,0.0000023616,0.0000023638,0.0000023656,0.0000023670, -0.0000023676,0.0000023675,0.0000023678,0.0000023678,0.0000023673, -0.0000023676,0.0000023671,0.0000023678,0.0000023684,0.0000023693, -0.0000023702,0.0000023710,0.0000023710,0.0000023698,0.0000023675, -0.0000023645,0.0000023612,0.0000023579,0.0000023547,0.0000023530, -0.0000023531,0.0000023560,0.0000023604,0.0000023614,0.0000023560, -0.0000023374,0.0000023147,0.0000023013,0.0000022989,0.0000023034, -0.0000023168,0.0000023372,0.0000023529,0.0000023584,0.0000023592, -0.0000023535,0.0000023445,0.0000023468,0.0000023603,0.0000023715, -0.0000023783,0.0000023799,0.0000023734,0.0000023630,0.0000023529, -0.0000023432,0.0000023369,0.0000023350,0.0000023340,0.0000023336, -0.0000023374,0.0000023452,0.0000023511,0.0000023503,0.0000023432, -0.0000023323,0.0000023224,0.0000023163,0.0000023149,0.0000023160, -0.0000023182,0.0000023206,0.0000023226,0.0000023242,0.0000023256, -0.0000023269,0.0000023275,0.0000023272,0.0000023266,0.0000023258, -0.0000023251,0.0000023247,0.0000023246,0.0000023247,0.0000023243, -0.0000023216,0.0000023170,0.0000023119,0.0000023078,0.0000023046, -0.0000023007,0.0000022964,0.0000022931,0.0000022912,0.0000022899, -0.0000022879,0.0000022845,0.0000022797,0.0000022745,0.0000022696, -0.0000022653,0.0000022617,0.0000022586,0.0000022533,0.0000022413, -0.0000022236,0.0000022114,0.0000022111,0.0000022131,0.0000022089, -0.0000021965,0.0000021836,0.0000021706,0.0000021575,0.0000021510, -0.0000021503,0.0000021472,0.0000021399,0.0000021337,0.0000021326, -0.0000021372,0.0000021509,0.0000021745,0.0000022034,0.0000022299, -0.0000022469,0.0000022528,0.0000022545,0.0000022599,0.0000022691, -0.0000022782,0.0000022843,0.0000022857,0.0000022824,0.0000022761, -0.0000022697,0.0000022639,0.0000022585,0.0000022530,0.0000022475, -0.0000022430,0.0000022393,0.0000022351,0.0000022297,0.0000022230, -0.0000022162,0.0000022101,0.0000022041,0.0000021990,0.0000021947, -0.0000021860,0.0000021720,0.0000021579,0.0000021481,0.0000021432, -0.0000021407,0.0000021378,0.0000021349,0.0000021349,0.0000021390, -0.0000021463,0.0000021549,0.0000021633,0.0000021714,0.0000021787, -0.0000021847,0.0000021886,0.0000021908,0.0000021904,0.0000021894, -0.0000021886,0.0000021873,0.0000021858,0.0000021833,0.0000021798, -0.0000021754,0.0000021699,0.0000021649,0.0000021611,0.0000021587, -0.0000021572,0.0000021567,0.0000021580,0.0000021610,0.0000021651, -0.0000021695,0.0000021741,0.0000021785,0.0000021821,0.0000021849, -0.0000021853,0.0000021823,0.0000021779,0.0000021737,0.0000021712, -0.0000021689,0.0000021635,0.0000021542,0.0000021426,0.0000021305, -0.0000021183,0.0000021046,0.0000020899,0.0000020783,0.0000020759, -0.0000020797,0.0000020851,0.0000020893,0.0000020973,0.0000021156, -0.0000021404,0.0000021598,0.0000021688,0.0000021738,0.0000021840, -0.0000022030,0.0000022246,0.0000022372,0.0000022375,0.0000022301, -0.0000022241,0.0000022237,0.0000022325,0.0000022480,0.0000022651, -0.0000022803,0.0000022943,0.0000023087,0.0000023214,0.0000023309, -0.0000023411,0.0000023579,0.0000023806,0.0000024012,0.0000024134, -0.0000024194,0.0000024269,0.0000024425,0.0000024636,0.0000024815, -0.0000024911,0.0000024949,0.0000024965,0.0000024975,0.0000024999, -0.0000025027,0.0000025017,0.0000024905,0.0000024721,0.0000024569, -0.0000024487,0.0000024424,0.0000024356,0.0000024342,0.0000024416, -0.0000024561,0.0000024695,0.0000024788,0.0000024858,0.0000024890, -0.0000024834,0.0000024661,0.0000024455,0.0000024273,0.0000024147, -0.0000024114,0.0000024112,0.0000024051,0.0000023938,0.0000023841, -0.0000023794,0.0000023788,0.0000023809,0.0000023837,0.0000023862, -0.0000023881,0.0000023884,0.0000023872,0.0000023855,0.0000023846, -0.0000023845,0.0000023845,0.0000023844,0.0000023838,0.0000023815, -0.0000023769,0.0000023711,0.0000023648,0.0000023579,0.0000023504, -0.0000023424,0.0000023338,0.0000023270,0.0000023246,0.0000023263, -0.0000023314,0.0000023380,0.0000023445,0.0000023505,0.0000023550, -0.0000023572,0.0000023574,0.0000023562,0.0000023532,0.0000023494, -0.0000023451,0.0000023397,0.0000023332,0.0000023261,0.0000023197, -0.0000023139,0.0000023083,0.0000023046,0.0000023023,0.0000023025, -0.0000023042,0.0000023061,0.0000023067,0.0000023062,0.0000023048, -0.0000023028,0.0000023016,0.0000023041,0.0000023116,0.0000023261, -0.0000023452,0.0000023647,0.0000023817,0.0000023950,0.0000024045, -0.0000024109,0.0000024153,0.0000024180,0.0000024191,0.0000024191, -0.0000024178,0.0000024155,0.0000024134,0.0000024124,0.0000024120, -0.0000024114,0.0000024104,0.0000024086,0.0000024045,0.0000023963, -0.0000023841,0.0000023699,0.0000023562,0.0000023439,0.0000023326, -0.0000023225,0.0000023145,0.0000023090,0.0000023053,0.0000023035, -0.0000023035,0.0000023050,0.0000023074,0.0000023090,0.0000023104, -0.0000023118,0.0000023120,0.0000023117,0.0000023098,0.0000023054, -0.0000023000,0.0000022950,0.0000022899,0.0000022814,0.0000022617, -0.0000022310,0.0000022027,0.0000021902,0.0000021910,0.0000021940, -0.0000021950,0.0000021956,0.0000021959,0.0000021948,0.0000021906, -0.0000021826,0.0000021728,0.0000021645,0.0000021595,0.0000021574, -0.0000021576,0.0000021602,0.0000021644,0.0000021657,0.0000021641, -0.0000021553,0.0000021419,0.0000021281,0.0000021196,0.0000021185, -0.0000021211,0.0000021263,0.0000021319,0.0000021378,0.0000021435, -0.0000021500,0.0000021572,0.0000021641,0.0000021698,0.0000021738, -0.0000021764,0.0000021775,0.0000021770,0.0000021751,0.0000021727, -0.0000021701,0.0000021680,0.0000021664,0.0000021639,0.0000021606, -0.0000021574,0.0000021549,0.0000021530,0.0000021520,0.0000021513, -0.0000021505,0.0000021490,0.0000021473,0.0000021462,0.0000021448, -0.0000021426,0.0000021401,0.0000021367,0.0000021324,0.0000021280, -0.0000021239,0.0000021209,0.0000021181,0.0000021150,0.0000021124, -0.0000021104,0.0000021091,0.0000021090,0.0000021094,0.0000021110, -0.0000021137,0.0000021169,0.0000021194,0.0000021213,0.0000021228, -0.0000021236,0.0000021235,0.0000021230,0.0000021224,0.0000021225, -0.0000021229,0.0000021227,0.0000021225,0.0000021233,0.0000021254, -0.0000021306,0.0000021388,0.0000021477,0.0000021553,0.0000021613, -0.0000021660,0.0000021690,0.0000021702,0.0000021703,0.0000021702, -0.0000021704,0.0000021701,0.0000021690,0.0000021678,0.0000021665, -0.0000021653,0.0000021646,0.0000021644,0.0000021650,0.0000021666, -0.0000021684,0.0000021698,0.0000021713,0.0000021727,0.0000021730, -0.0000021727,0.0000021710,0.0000021685,0.0000021654,0.0000021625, -0.0000021600,0.0000021576,0.0000021553,0.0000021524,0.0000021489, -0.0000021454,0.0000021426,0.0000021399,0.0000021384,0.0000021364, -0.0000021342,0.0000021326,0.0000021320,0.0000021322,0.0000021344, -0.0000021390,0.0000021460,0.0000021538,0.0000021618,0.0000021707, -0.0000021802,0.0000021880,0.0000021930,0.0000021959,0.0000021982, -0.0000021998,0.0000022002,0.0000021997,0.0000021991,0.0000021988, -0.0000021980,0.0000021964,0.0000021944,0.0000021917,0.0000021878, -0.0000021845,0.0000021824,0.0000021803,0.0000021789,0.0000021757, -0.0000021662,0.0000021592,0.0000021605,0.0000021634,0.0000021636, -0.0000021636,0.0000021643,0.0000021637,0.0000021618,0.0000021597, -0.0000021580,0.0000021570,0.0000021570,0.0000021582,0.0000021599, -0.0000021612,0.0000021620,0.0000021627,0.0000021618,0.0000021545, -0.0000021450,0.0000021418,0.0000021419,0.0000021394,0.0000021365, -0.0000021394,0.0000021500,0.0000021611,0.0000021670,0.0000021696, -0.0000021724,0.0000021752,0.0000021776,0.0000021796,0.0000021819, -0.0000021850,0.0000021893,0.0000021937,0.0000021972,0.0000021997, -0.0000022015,0.0000022020,0.0000022007,0.0000021984,0.0000021964, -0.0000021951,0.0000021952,0.0000021973,0.0000022010,0.0000022058, -0.0000022106,0.0000022147,0.0000022169,0.0000022164,0.0000022121, -0.0000022042,0.0000021944,0.0000021840,0.0000021744,0.0000021679, -0.0000021648,0.0000021630,0.0000021602,0.0000021548,0.0000021466, -0.0000021381,0.0000021322,0.0000021283,0.0000021264,0.0000021268, -0.0000021292,0.0000021325,0.0000021357,0.0000021352,0.0000021259, -0.0000021123,0.0000021038,0.0000021000,0.0000021008,0.0000021198, -0.0000021553,0.0000021849,0.0000022021,0.0000022117,0.0000022165, -0.0000022213,0.0000022276,0.0000022316,0.0000022332,0.0000022342, -0.0000022335,0.0000022290,0.0000022216,0.0000022146,0.0000022095, -0.0000022068,0.0000022065,0.0000022089,0.0000022139,0.0000022196, -0.0000022241,0.0000022274,0.0000022297,0.0000022308,0.0000022306, -0.0000022295,0.0000022287,0.0000022286,0.0000022255,0.0000022147, -0.0000021968,0.0000021786,0.0000021677,0.0000021648,0.0000021638, -0.0000021597,0.0000021552,0.0000021579,0.0000021707,0.0000021868, -0.0000021984,0.0000022096,0.0000022249,0.0000022382,0.0000022422, -0.0000022389,0.0000022333,0.0000022275,0.0000022221,0.0000022161, -0.0000022199,0.0000022274,0.0000022295,0.0000022150,0.0000021877, -0.0000021719,0.0000021789,0.0000021960,0.0000022110,0.0000022327, -0.0000022606,0.0000022756,0.0000022722,0.0000022647,0.0000022635, -0.0000022677,0.0000022765,0.0000022847,0.0000022879,0.0000022870, -0.0000022867,0.0000022906,0.0000022952,0.0000022971,0.0000023000, -0.0000023054,0.0000023092,0.0000023097,0.0000023089,0.0000023065, -0.0000023012,0.0000022960,0.0000022949,0.0000022971,0.0000022992, -0.0000022979,0.0000022948,0.0000022924,0.0000022910,0.0000022901, -0.0000022891,0.0000022882,0.0000022877,0.0000022870,0.0000022860, -0.0000022844,0.0000022831,0.0000022826,0.0000022829,0.0000022850, -0.0000022890,0.0000022930,0.0000022955,0.0000022975,0.0000023009, -0.0000023056,0.0000023108,0.0000023150,0.0000023178,0.0000023202, -0.0000023232,0.0000023265,0.0000023294,0.0000023327,0.0000023376, -0.0000023432,0.0000023471,0.0000023486,0.0000023486,0.0000023473, -0.0000023439,0.0000023407,0.0000023405,0.0000023423,0.0000023443, -0.0000023452,0.0000023455,0.0000023439,0.0000023389,0.0000023333, -0.0000023291,0.0000023269,0.0000023258,0.0000023250,0.0000023240, -0.0000023234,0.0000023237,0.0000023264,0.0000023301,0.0000023325, -0.0000023325,0.0000023312,0.0000023312,0.0000023333,0.0000023361, -0.0000023384,0.0000023400,0.0000023420,0.0000023441,0.0000023460, -0.0000023483,0.0000023506,0.0000023514,0.0000023513,0.0000023503, -0.0000023484,0.0000023451,0.0000023404,0.0000023354,0.0000023299, -0.0000023254,0.0000023194,0.0000023133,0.0000023086,0.0000023049, -0.0000023007,0.0000022978,0.0000022970,0.0000022981,0.0000022981, -0.0000022962,0.0000022936,0.0000022886,0.0000022822,0.0000022755, -0.0000022691,0.0000022643,0.0000022627,0.0000022634,0.0000022639, -0.0000022644,0.0000022660,0.0000022692,0.0000022741,0.0000022800, -0.0000022865,0.0000022931,0.0000022995,0.0000023056,0.0000023117, -0.0000023173,0.0000023216,0.0000023253,0.0000023278,0.0000023283, -0.0000023284,0.0000023289,0.0000023295,0.0000023300,0.0000023303, -0.0000023298,0.0000023297,0.0000023308,0.0000023324,0.0000023336, -0.0000023344,0.0000023351,0.0000023352,0.0000023345,0.0000023338, -0.0000023339,0.0000023350,0.0000023380,0.0000023441,0.0000023528, -0.0000023613,0.0000023655,0.0000023653,0.0000023619,0.0000023569, -0.0000023529,0.0000023522,0.0000023528,0.0000023539,0.0000023521, -0.0000023465,0.0000023390,0.0000023321,0.0000023267,0.0000023225, -0.0000023192,0.0000023170,0.0000023165,0.0000023172,0.0000023188, -0.0000023205,0.0000023218,0.0000023227,0.0000023235,0.0000023241, -0.0000023246,0.0000023239,0.0000023225,0.0000023213,0.0000023202, -0.0000023203,0.0000023206,0.0000023208,0.0000023208,0.0000023203, -0.0000023193,0.0000023179,0.0000023159,0.0000023138,0.0000023112, -0.0000023087,0.0000023060,0.0000023036,0.0000023012,0.0000022989, -0.0000022966,0.0000022943,0.0000022919,0.0000022904,0.0000022894, -0.0000022881,0.0000022867,0.0000022854,0.0000022837,0.0000022816, -0.0000022793,0.0000022773,0.0000022756,0.0000022746,0.0000022743, -0.0000022752,0.0000022769,0.0000022792,0.0000022815,0.0000022834, -0.0000022845,0.0000022851,0.0000022857,0.0000022863,0.0000022865, -0.0000022859,0.0000022848,0.0000022839,0.0000022835,0.0000022836, -0.0000022843,0.0000022856,0.0000022874,0.0000022890,0.0000022901, -0.0000022910,0.0000022914,0.0000022914,0.0000022910,0.0000022898, -0.0000022881,0.0000022863,0.0000022843,0.0000022824,0.0000022809, -0.0000022800,0.0000022803,0.0000022817,0.0000022842,0.0000022873, -0.0000022905,0.0000022940,0.0000022981,0.0000023028,0.0000023076, -0.0000023123,0.0000023169,0.0000023209,0.0000023239,0.0000023260, -0.0000023273,0.0000023278,0.0000023281,0.0000023282,0.0000023289, -0.0000023303,0.0000023320,0.0000023338,0.0000023362,0.0000023386, -0.0000023401,0.0000023409,0.0000023413,0.0000023415,0.0000023412, -0.0000023404,0.0000023385,0.0000023364,0.0000023336,0.0000023303, -0.0000023265,0.0000023223,0.0000023183,0.0000023155,0.0000023139, -0.0000023121,0.0000023106,0.0000023098,0.0000023096,0.0000023097, -0.0000023101,0.0000023105,0.0000023105,0.0000023102,0.0000023099, -0.0000023098,0.0000023101,0.0000023112,0.0000023124,0.0000023138, -0.0000023150,0.0000023162,0.0000023166,0.0000023170,0.0000023171, -0.0000023170,0.0000023168,0.0000023159,0.0000023141,0.0000023119, -0.0000023099,0.0000023094,0.0000023105,0.0000023120,0.0000023138, -0.0000023153,0.0000023159,0.0000023156,0.0000023150,0.0000023143, -0.0000023123,0.0000023082,0.0000023045,0.0000022998,0.0000022944, -0.0000022887,0.0000022827,0.0000022773,0.0000022730,0.0000022710, -0.0000022717,0.0000022742,0.0000022778,0.0000022802,0.0000022814, -0.0000022825,0.0000022833,0.0000022827,0.0000022813,0.0000022804, -0.0000022793,0.0000022781,0.0000022763,0.0000022745,0.0000022731, -0.0000022725,0.0000022722,0.0000022721,0.0000022723,0.0000022732, -0.0000022740,0.0000022739,0.0000022736,0.0000022734,0.0000022743, -0.0000022785,0.0000022853,0.0000022938,0.0000023018,0.0000023078, -0.0000023122,0.0000023159,0.0000023192,0.0000023227,0.0000023261, -0.0000023287,0.0000023308,0.0000023332,0.0000023363,0.0000023388, -0.0000023400,0.0000023419,0.0000023431,0.0000023431,0.0000023428, -0.0000023419,0.0000023407,0.0000023397,0.0000023391,0.0000023388, -0.0000023378,0.0000023358,0.0000023344,0.0000023338,0.0000023334, -0.0000023341,0.0000023351,0.0000023360,0.0000023363,0.0000023349, -0.0000023315,0.0000023263,0.0000023202,0.0000023129,0.0000023049, -0.0000022971,0.0000022889,0.0000022849,0.0000022864,0.0000022913, -0.0000022957,0.0000022945,0.0000022878,0.0000022840,0.0000022808, -0.0000022739,0.0000022677,0.0000022678,0.0000022701,0.0000022754, -0.0000022863,0.0000022948,0.0000023066,0.0000023324,0.0000023524, -0.0000023537,0.0000023538,0.0000023440,0.0000023247,0.0000023170, -0.0000023102,0.0000023045,0.0000023002,0.0000023005,0.0000023030, -0.0000023083,0.0000023143,0.0000023206,0.0000023292,0.0000023381, -0.0000023427,0.0000023431,0.0000023421,0.0000023407,0.0000023367, -0.0000023309,0.0000023275,0.0000023268,0.0000023288,0.0000023308, -0.0000023316,0.0000023319,0.0000023308,0.0000023258,0.0000023169, -0.0000023072,0.0000023000,0.0000022952,0.0000022902,0.0000022822, -0.0000022799,0.0000022857,0.0000022904,0.0000022893,0.0000022837, -0.0000022780,0.0000022780,0.0000022842,0.0000022893,0.0000022893, -0.0000022863,0.0000022800,0.0000022764,0.0000022757,0.0000022716, -0.0000022646,0.0000022618,0.0000022574,0.0000022397,0.0000022211, -0.0000022200,0.0000022317,0.0000022499,0.0000022623,0.0000022645, -0.0000022637,0.0000022555,0.0000022307,0.0000022090,0.0000022095, -0.0000022247,0.0000022436,0.0000022575,0.0000022655,0.0000022713, -0.0000022807,0.0000022914,0.0000022952,0.0000022912,0.0000022821, -0.0000022766,0.0000022757,0.0000022741,0.0000022704,0.0000022708, -0.0000022803,0.0000022898,0.0000022911,0.0000022868,0.0000022764, -0.0000022643,0.0000022505,0.0000022365,0.0000022286,0.0000022240, -0.0000022206,0.0000022215,0.0000022255,0.0000022276,0.0000022260, -0.0000022214,0.0000022163,0.0000022161,0.0000022246,0.0000022370, -0.0000022468,0.0000022562,0.0000022645,0.0000022704,0.0000022730, -0.0000022739,0.0000022741,0.0000022740,0.0000022748,0.0000022771, -0.0000022782,0.0000022777,0.0000022780,0.0000022804,0.0000022824, -0.0000022832,0.0000022847,0.0000022870,0.0000022897,0.0000022937, -0.0000022982,0.0000023017,0.0000023034,0.0000023049,0.0000023067, -0.0000023097,0.0000023134,0.0000023169,0.0000023192,0.0000023197, -0.0000023191,0.0000023179,0.0000023158,0.0000023136,0.0000023116, -0.0000023106,0.0000023107,0.0000023120,0.0000023150,0.0000023181, -0.0000023202,0.0000023217,0.0000023227,0.0000023236,0.0000023254, -0.0000023279,0.0000023298,0.0000023311,0.0000023312,0.0000023298, -0.0000023253,0.0000023173,0.0000023067,0.0000022950,0.0000022835, -0.0000022723,0.0000022632,0.0000022576,0.0000022554,0.0000022554, -0.0000022617,0.0000022724,0.0000022860,0.0000023006,0.0000023137, -0.0000023227,0.0000023278,0.0000023311,0.0000023349,0.0000023392, -0.0000023434,0.0000023468,0.0000023481,0.0000023494,0.0000023500, -0.0000023502,0.0000023498,0.0000023489,0.0000023486,0.0000023489, -0.0000023488,0.0000023473,0.0000023448,0.0000023433,0.0000023454, -0.0000023488,0.0000023553,0.0000023648,0.0000023751,0.0000023877, -0.0000023983,0.0000024021,0.0000024012,0.0000023998,0.0000024019, -0.0000024081,0.0000024141,0.0000024193,0.0000024186,0.0000024078, -0.0000024000,0.0000023918,0.0000023851,0.0000023838,0.0000023852, -0.0000023867,0.0000023891,0.0000023923,0.0000023962,0.0000023994, -0.0000024011,0.0000024006,0.0000023991,0.0000023979,0.0000023974, -0.0000023974,0.0000023981,0.0000023993,0.0000023999,0.0000023995, -0.0000023981,0.0000023958,0.0000023933,0.0000023904,0.0000023870, -0.0000023831,0.0000023792,0.0000023756,0.0000023723,0.0000023692, -0.0000023664,0.0000023640,0.0000023617,0.0000023590,0.0000023560, -0.0000023541,0.0000023537,0.0000023537,0.0000023536,0.0000023532, -0.0000023529,0.0000023527,0.0000023525,0.0000023519,0.0000023507, -0.0000023493,0.0000023476,0.0000023454,0.0000023426,0.0000023396, -0.0000023370,0.0000023345,0.0000023322,0.0000023299,0.0000023273, -0.0000023246,0.0000023220,0.0000023195,0.0000023173,0.0000023154, -0.0000023138,0.0000023129,0.0000023125,0.0000023129,0.0000023135, -0.0000023139,0.0000023140,0.0000023135,0.0000023123,0.0000023100, -0.0000023065,0.0000023028,0.0000022999,0.0000022975,0.0000022955, -0.0000022942,0.0000022941,0.0000022964,0.0000023010,0.0000023060, -0.0000023106,0.0000023149,0.0000023193,0.0000023239,0.0000023279, -0.0000023310,0.0000023328,0.0000023333,0.0000023328,0.0000023320, -0.0000023311,0.0000023304,0.0000023299,0.0000023299,0.0000023302, -0.0000023312,0.0000023323,0.0000023334,0.0000023347,0.0000023362, -0.0000023370,0.0000023374,0.0000023374,0.0000023373,0.0000023370, -0.0000023369,0.0000023373,0.0000023381,0.0000023390,0.0000023402, -0.0000023418,0.0000023437,0.0000023463,0.0000023489,0.0000023512, -0.0000023532,0.0000023548,0.0000023561,0.0000023573,0.0000023589, -0.0000023609,0.0000023631,0.0000023643,0.0000023661,0.0000023674, -0.0000023681,0.0000023684,0.0000023688,0.0000023691,0.0000023685, -0.0000023667,0.0000023642,0.0000023614,0.0000023585,0.0000023553, -0.0000023523,0.0000023500,0.0000023487,0.0000023502,0.0000023551, -0.0000023592,0.0000023554,0.0000023410,0.0000023162,0.0000022997, -0.0000022983,0.0000023019,0.0000023143,0.0000023351,0.0000023516, -0.0000023575,0.0000023570,0.0000023488,0.0000023403,0.0000023457, -0.0000023606,0.0000023712,0.0000023771,0.0000023756,0.0000023667, -0.0000023560,0.0000023448,0.0000023336,0.0000023256,0.0000023222, -0.0000023216,0.0000023225,0.0000023274,0.0000023364,0.0000023446, -0.0000023464,0.0000023425,0.0000023350,0.0000023261,0.0000023202, -0.0000023184,0.0000023191,0.0000023206,0.0000023227,0.0000023245, -0.0000023259,0.0000023272,0.0000023279,0.0000023277,0.0000023273, -0.0000023273,0.0000023277,0.0000023284,0.0000023288,0.0000023285, -0.0000023269,0.0000023237,0.0000023192,0.0000023129,0.0000023053, -0.0000022968,0.0000022887,0.0000022836,0.0000022828,0.0000022860, -0.0000022895,0.0000022910,0.0000022920,0.0000022915,0.0000022904, -0.0000022882,0.0000022847,0.0000022796,0.0000022733,0.0000022671, -0.0000022602,0.0000022498,0.0000022340,0.0000022193,0.0000022148, -0.0000022166,0.0000022132,0.0000022008,0.0000021876,0.0000021752, -0.0000021616,0.0000021527,0.0000021512,0.0000021496,0.0000021428, -0.0000021357,0.0000021330,0.0000021333,0.0000021410,0.0000021595, -0.0000021858,0.0000022128,0.0000022342,0.0000022471,0.0000022527, -0.0000022571,0.0000022644,0.0000022725,0.0000022780,0.0000022793, -0.0000022769,0.0000022707,0.0000022631,0.0000022571,0.0000022529, -0.0000022486,0.0000022429,0.0000022373,0.0000022326,0.0000022273, -0.0000022207,0.0000022131,0.0000022054,0.0000021985,0.0000021911, -0.0000021833,0.0000021750,0.0000021643,0.0000021535,0.0000021475, -0.0000021458,0.0000021451,0.0000021433,0.0000021408,0.0000021408, -0.0000021450,0.0000021520,0.0000021602,0.0000021682,0.0000021742, -0.0000021783,0.0000021817,0.0000021849,0.0000021879,0.0000021896, -0.0000021898,0.0000021906,0.0000021908,0.0000021899,0.0000021864, -0.0000021803,0.0000021722,0.0000021637,0.0000021562,0.0000021505, -0.0000021464,0.0000021433,0.0000021415,0.0000021413,0.0000021430, -0.0000021465,0.0000021509,0.0000021554,0.0000021601,0.0000021647, -0.0000021690,0.0000021733,0.0000021770,0.0000021790,0.0000021771, -0.0000021741,0.0000021710,0.0000021688,0.0000021662,0.0000021616, -0.0000021544,0.0000021447,0.0000021327,0.0000021189,0.0000021032, -0.0000020879,0.0000020784,0.0000020775,0.0000020819,0.0000020862, -0.0000020895,0.0000020992,0.0000021202,0.0000021455,0.0000021633, -0.0000021707,0.0000021757,0.0000021876,0.0000022068,0.0000022242, -0.0000022307,0.0000022272,0.0000022210,0.0000022189,0.0000022230, -0.0000022358,0.0000022531,0.0000022698,0.0000022854,0.0000023008, -0.0000023152,0.0000023267,0.0000023351,0.0000023451,0.0000023617, -0.0000023832,0.0000024015,0.0000024112,0.0000024157,0.0000024242, -0.0000024424,0.0000024653,0.0000024828,0.0000024911,0.0000024935, -0.0000024938,0.0000024945,0.0000024974,0.0000025000,0.0000024951, -0.0000024796,0.0000024608,0.0000024483,0.0000024413,0.0000024345, -0.0000024298,0.0000024316,0.0000024438,0.0000024593,0.0000024717, -0.0000024809,0.0000024867,0.0000024853,0.0000024716,0.0000024531, -0.0000024370,0.0000024238,0.0000024175,0.0000024170,0.0000024143, -0.0000024053,0.0000023942,0.0000023864,0.0000023838,0.0000023848, -0.0000023866,0.0000023874,0.0000023876,0.0000023863,0.0000023839, -0.0000023819,0.0000023817,0.0000023824,0.0000023828,0.0000023830, -0.0000023829,0.0000023814,0.0000023779,0.0000023734,0.0000023684, -0.0000023631,0.0000023572,0.0000023508,0.0000023442,0.0000023392, -0.0000023386,0.0000023411,0.0000023464,0.0000023526,0.0000023586, -0.0000023636,0.0000023668,0.0000023683,0.0000023684,0.0000023669, -0.0000023636,0.0000023592,0.0000023544,0.0000023492,0.0000023432, -0.0000023363,0.0000023289,0.0000023216,0.0000023141,0.0000023072, -0.0000023028,0.0000023019,0.0000023024,0.0000023036,0.0000023043, -0.0000023042,0.0000023028,0.0000022999,0.0000022963,0.0000022934, -0.0000022940,0.0000023007,0.0000023138,0.0000023303,0.0000023481, -0.0000023652,0.0000023801,0.0000023918,0.0000024005,0.0000024063, -0.0000024099,0.0000024117,0.0000024123,0.0000024120,0.0000024119, -0.0000024118,0.0000024111,0.0000024094,0.0000024065,0.0000024022, -0.0000023949,0.0000023840,0.0000023704,0.0000023558,0.0000023420, -0.0000023302,0.0000023195,0.0000023098,0.0000023016,0.0000022954, -0.0000022910,0.0000022883,0.0000022877,0.0000022891,0.0000022928, -0.0000022966,0.0000023009,0.0000023054,0.0000023088,0.0000023104, -0.0000023100,0.0000023067,0.0000023011,0.0000022945,0.0000022889, -0.0000022837,0.0000022761,0.0000022649,0.0000022440,0.0000022181, -0.0000022012,0.0000021967,0.0000021973,0.0000021977,0.0000021970, -0.0000021952,0.0000021925,0.0000021888,0.0000021826,0.0000021734, -0.0000021643,0.0000021591,0.0000021575,0.0000021575,0.0000021591, -0.0000021610,0.0000021626,0.0000021629,0.0000021606,0.0000021530, -0.0000021421,0.0000021315,0.0000021251,0.0000021262,0.0000021312, -0.0000021373,0.0000021425,0.0000021477,0.0000021533,0.0000021594, -0.0000021656,0.0000021709,0.0000021756,0.0000021782,0.0000021797, -0.0000021793,0.0000021782,0.0000021765,0.0000021742,0.0000021719, -0.0000021691,0.0000021661,0.0000021629,0.0000021606,0.0000021588, -0.0000021574,0.0000021549,0.0000021525,0.0000021500,0.0000021474, -0.0000021455,0.0000021437,0.0000021413,0.0000021379,0.0000021336, -0.0000021294,0.0000021251,0.0000021209,0.0000021178,0.0000021150, -0.0000021120,0.0000021097,0.0000021080,0.0000021070,0.0000021068, -0.0000021072,0.0000021087,0.0000021113,0.0000021149,0.0000021180, -0.0000021200,0.0000021214,0.0000021221,0.0000021216,0.0000021209, -0.0000021203,0.0000021202,0.0000021208,0.0000021215,0.0000021221, -0.0000021229,0.0000021232,0.0000021238,0.0000021255,0.0000021305, -0.0000021370,0.0000021433,0.0000021489,0.0000021528,0.0000021552, -0.0000021563,0.0000021564,0.0000021558,0.0000021547,0.0000021529, -0.0000021511,0.0000021495,0.0000021479,0.0000021467,0.0000021465, -0.0000021473,0.0000021502,0.0000021548,0.0000021599,0.0000021643, -0.0000021683,0.0000021711,0.0000021722,0.0000021725,0.0000021719, -0.0000021712,0.0000021685,0.0000021645,0.0000021604,0.0000021574, -0.0000021552,0.0000021533,0.0000021508,0.0000021469,0.0000021425, -0.0000021385,0.0000021348,0.0000021307,0.0000021279,0.0000021262, -0.0000021252,0.0000021246,0.0000021254,0.0000021288,0.0000021349, -0.0000021418,0.0000021487,0.0000021564,0.0000021653,0.0000021744, -0.0000021813,0.0000021851,0.0000021870,0.0000021879,0.0000021877, -0.0000021868,0.0000021860,0.0000021856,0.0000021854,0.0000021856, -0.0000021858,0.0000021846,0.0000021819,0.0000021799,0.0000021787, -0.0000021778,0.0000021764,0.0000021690,0.0000021600,0.0000021591, -0.0000021624,0.0000021630,0.0000021625,0.0000021624,0.0000021616, -0.0000021590,0.0000021554,0.0000021519,0.0000021493,0.0000021487, -0.0000021500,0.0000021528,0.0000021556,0.0000021574,0.0000021584, -0.0000021594,0.0000021592,0.0000021535,0.0000021440,0.0000021397, -0.0000021396,0.0000021373,0.0000021335,0.0000021351,0.0000021447, -0.0000021556,0.0000021615,0.0000021643,0.0000021677,0.0000021711, -0.0000021739,0.0000021764,0.0000021792,0.0000021828,0.0000021869, -0.0000021905,0.0000021931,0.0000021953,0.0000021974,0.0000021982, -0.0000021975,0.0000021952,0.0000021929,0.0000021920,0.0000021921, -0.0000021941,0.0000021979,0.0000022026,0.0000022067,0.0000022099, -0.0000022116,0.0000022117,0.0000022086,0.0000022016,0.0000021923, -0.0000021823,0.0000021727,0.0000021651,0.0000021608,0.0000021592, -0.0000021584,0.0000021563,0.0000021510,0.0000021428,0.0000021349, -0.0000021296,0.0000021275,0.0000021280,0.0000021301,0.0000021324, -0.0000021353,0.0000021379,0.0000021347,0.0000021218,0.0000021081, -0.0000021006,0.0000020986,0.0000021078,0.0000021402,0.0000021748, -0.0000021957,0.0000022069,0.0000022128,0.0000022170,0.0000022230, -0.0000022282,0.0000022308,0.0000022317,0.0000022310,0.0000022264, -0.0000022188,0.0000022117,0.0000022068,0.0000022041,0.0000022037, -0.0000022061,0.0000022112,0.0000022172,0.0000022226,0.0000022268, -0.0000022295,0.0000022305,0.0000022302,0.0000022294,0.0000022286, -0.0000022252,0.0000022135,0.0000021937,0.0000021737,0.0000021620, -0.0000021598,0.0000021599,0.0000021560,0.0000021510,0.0000021541, -0.0000021686,0.0000021867,0.0000021987,0.0000022079,0.0000022215, -0.0000022360,0.0000022432,0.0000022424,0.0000022380,0.0000022317, -0.0000022242,0.0000022180,0.0000022151,0.0000022217,0.0000022276, -0.0000022206,0.0000021947,0.0000021741,0.0000021746,0.0000021890, -0.0000022042,0.0000022231,0.0000022506,0.0000022700,0.0000022715, -0.0000022645,0.0000022609,0.0000022628,0.0000022695,0.0000022787, -0.0000022854,0.0000022865,0.0000022845,0.0000022854,0.0000022901, -0.0000022934,0.0000022946,0.0000022986,0.0000023053,0.0000023094, -0.0000023094,0.0000023085,0.0000023074,0.0000023042,0.0000022988, -0.0000022959,0.0000022969,0.0000022999,0.0000023011,0.0000023004, -0.0000022983,0.0000022957,0.0000022933,0.0000022913,0.0000022896, -0.0000022883,0.0000022873,0.0000022861,0.0000022844,0.0000022826, -0.0000022810,0.0000022801,0.0000022813,0.0000022847,0.0000022890, -0.0000022929,0.0000022962,0.0000022997,0.0000023041,0.0000023094, -0.0000023141,0.0000023172,0.0000023196,0.0000023226,0.0000023263, -0.0000023299,0.0000023332,0.0000023370,0.0000023417,0.0000023450, -0.0000023464,0.0000023464,0.0000023452,0.0000023416,0.0000023377, -0.0000023375,0.0000023400,0.0000023420,0.0000023431,0.0000023441, -0.0000023437,0.0000023400,0.0000023345,0.0000023299,0.0000023270, -0.0000023250,0.0000023236,0.0000023226,0.0000023216,0.0000023206, -0.0000023204,0.0000023218,0.0000023240,0.0000023243,0.0000023234, -0.0000023224,0.0000023230,0.0000023250,0.0000023271,0.0000023291, -0.0000023308,0.0000023322,0.0000023329,0.0000023336,0.0000023354, -0.0000023371,0.0000023374,0.0000023369,0.0000023362,0.0000023358, -0.0000023341,0.0000023313,0.0000023286,0.0000023267,0.0000023239, -0.0000023191,0.0000023144,0.0000023098,0.0000023056,0.0000023009, -0.0000022968,0.0000022952,0.0000022949,0.0000022946,0.0000022941, -0.0000022930,0.0000022909,0.0000022882,0.0000022838,0.0000022787, -0.0000022739,0.0000022700,0.0000022668,0.0000022641,0.0000022617, -0.0000022600,0.0000022602,0.0000022610,0.0000022629,0.0000022673, -0.0000022726,0.0000022783,0.0000022847,0.0000022920,0.0000022998, -0.0000023076,0.0000023152,0.0000023211,0.0000023250,0.0000023276, -0.0000023290,0.0000023301,0.0000023305,0.0000023302,0.0000023289, -0.0000023269,0.0000023258,0.0000023255,0.0000023264,0.0000023284, -0.0000023307,0.0000023319,0.0000023320,0.0000023315,0.0000023308, -0.0000023303,0.0000023307,0.0000023333,0.0000023392,0.0000023480, -0.0000023580,0.0000023653,0.0000023677,0.0000023652,0.0000023601, -0.0000023552,0.0000023532,0.0000023534,0.0000023537,0.0000023519, -0.0000023469,0.0000023393,0.0000023309,0.0000023235,0.0000023180, -0.0000023149,0.0000023134,0.0000023136,0.0000023149,0.0000023168, -0.0000023187,0.0000023204,0.0000023218,0.0000023231,0.0000023241, -0.0000023243,0.0000023236,0.0000023226,0.0000023219,0.0000023219, -0.0000023222,0.0000023228,0.0000023232,0.0000023234,0.0000023231, -0.0000023222,0.0000023209,0.0000023187,0.0000023152,0.0000023109, -0.0000023064,0.0000023024,0.0000022989,0.0000022956,0.0000022922, -0.0000022890,0.0000022860,0.0000022836,0.0000022818,0.0000022804, -0.0000022792,0.0000022776,0.0000022755,0.0000022730,0.0000022706, -0.0000022683,0.0000022668,0.0000022659,0.0000022659,0.0000022671, -0.0000022693,0.0000022717,0.0000022739,0.0000022753,0.0000022754, -0.0000022745,0.0000022733,0.0000022726,0.0000022721,0.0000022714, -0.0000022707,0.0000022702,0.0000022699,0.0000022700,0.0000022707, -0.0000022720,0.0000022735,0.0000022749,0.0000022763,0.0000022774, -0.0000022783,0.0000022789,0.0000022793,0.0000022790,0.0000022781, -0.0000022767,0.0000022752,0.0000022743,0.0000022738,0.0000022737, -0.0000022740,0.0000022755,0.0000022777,0.0000022802,0.0000022822, -0.0000022837,0.0000022852,0.0000022868,0.0000022883,0.0000022901, -0.0000022923,0.0000022949,0.0000022976,0.0000023007,0.0000023044, -0.0000023085,0.0000023128,0.0000023173,0.0000023219,0.0000023264, -0.0000023303,0.0000023327,0.0000023344,0.0000023356,0.0000023361, -0.0000023360,0.0000023354,0.0000023348,0.0000023345,0.0000023344, -0.0000023344,0.0000023341,0.0000023335,0.0000023321,0.0000023310, -0.0000023294,0.0000023268,0.0000023237,0.0000023205,0.0000023175, -0.0000023144,0.0000023116,0.0000023092,0.0000023076,0.0000023071, -0.0000023068,0.0000023062,0.0000023061,0.0000023066,0.0000023074, -0.0000023089,0.0000023105,0.0000023119,0.0000023132,0.0000023148, -0.0000023164,0.0000023178,0.0000023187,0.0000023194,0.0000023194, -0.0000023194,0.0000023188,0.0000023176,0.0000023154,0.0000023125, -0.0000023099,0.0000023083,0.0000023075,0.0000023071,0.0000023065, -0.0000023056,0.0000023044,0.0000023035,0.0000023028,0.0000023020, -0.0000023002,0.0000022988,0.0000022975,0.0000022950,0.0000022916, -0.0000022871,0.0000022824,0.0000022768,0.0000022722,0.0000022709, -0.0000022717,0.0000022730,0.0000022742,0.0000022746,0.0000022742, -0.0000022732,0.0000022710,0.0000022682,0.0000022645,0.0000022601, -0.0000022560,0.0000022514,0.0000022479,0.0000022455,0.0000022441, -0.0000022434,0.0000022442,0.0000022466,0.0000022510,0.0000022568, -0.0000022622,0.0000022663,0.0000022697,0.0000022722,0.0000022741, -0.0000022751,0.0000022764,0.0000022799,0.0000022858,0.0000022933, -0.0000022998,0.0000023049,0.0000023090,0.0000023126,0.0000023158, -0.0000023188,0.0000023223,0.0000023271,0.0000023322,0.0000023368, -0.0000023408,0.0000023438,0.0000023460,0.0000023473,0.0000023474, -0.0000023465,0.0000023449,0.0000023428,0.0000023408,0.0000023383, -0.0000023348,0.0000023319,0.0000023302,0.0000023283,0.0000023275, -0.0000023276,0.0000023284,0.0000023301,0.0000023303,0.0000023289, -0.0000023253,0.0000023209,0.0000023154,0.0000023095,0.0000023034, -0.0000022977,0.0000022919,0.0000022886,0.0000022894,0.0000022943, -0.0000022966,0.0000022914,0.0000022862,0.0000022837,0.0000022778, -0.0000022700,0.0000022669,0.0000022685,0.0000022718,0.0000022820, -0.0000022918,0.0000023005,0.0000023207,0.0000023463,0.0000023553, -0.0000023553,0.0000023518,0.0000023329,0.0000023191,0.0000023142, -0.0000023092,0.0000023034,0.0000023006,0.0000023007,0.0000023039, -0.0000023101,0.0000023176,0.0000023262,0.0000023340,0.0000023381, -0.0000023381,0.0000023373,0.0000023362,0.0000023329,0.0000023277, -0.0000023255,0.0000023262,0.0000023283,0.0000023305,0.0000023319, -0.0000023329,0.0000023313,0.0000023256,0.0000023135,0.0000023020, -0.0000022948,0.0000022890,0.0000022831,0.0000022784,0.0000022808, -0.0000022879,0.0000022906,0.0000022867,0.0000022802,0.0000022765, -0.0000022780,0.0000022850,0.0000022905,0.0000022911,0.0000022886, -0.0000022815,0.0000022768,0.0000022766,0.0000022745,0.0000022683, -0.0000022651,0.0000022605,0.0000022412,0.0000022211,0.0000022213, -0.0000022354,0.0000022537,0.0000022634,0.0000022643,0.0000022631, -0.0000022495,0.0000022212,0.0000022053,0.0000022108,0.0000022296, -0.0000022466,0.0000022569,0.0000022630,0.0000022698,0.0000022808, -0.0000022912,0.0000022939,0.0000022893,0.0000022815,0.0000022775, -0.0000022765,0.0000022734,0.0000022678,0.0000022676,0.0000022778, -0.0000022883,0.0000022887,0.0000022811,0.0000022686,0.0000022566, -0.0000022437,0.0000022321,0.0000022280,0.0000022262,0.0000022245, -0.0000022262,0.0000022289,0.0000022295,0.0000022272,0.0000022223, -0.0000022169,0.0000022155,0.0000022232,0.0000022371,0.0000022485, -0.0000022585,0.0000022673,0.0000022734,0.0000022754,0.0000022758, -0.0000022758,0.0000022746,0.0000022749,0.0000022775,0.0000022794, -0.0000022791,0.0000022793,0.0000022819,0.0000022839,0.0000022837, -0.0000022832,0.0000022845,0.0000022874,0.0000022910,0.0000022947, -0.0000022983,0.0000023012,0.0000023039,0.0000023067,0.0000023097, -0.0000023135,0.0000023171,0.0000023194,0.0000023201,0.0000023193, -0.0000023178,0.0000023161,0.0000023140,0.0000023114,0.0000023094, -0.0000023084,0.0000023092,0.0000023119,0.0000023163,0.0000023200, -0.0000023224,0.0000023244,0.0000023258,0.0000023273,0.0000023283, -0.0000023288,0.0000023295,0.0000023299,0.0000023300,0.0000023297, -0.0000023282,0.0000023233,0.0000023150,0.0000023051,0.0000022941, -0.0000022827,0.0000022732,0.0000022671,0.0000022650,0.0000022683, -0.0000022778,0.0000022900,0.0000023020,0.0000023125,0.0000023204, -0.0000023257,0.0000023305,0.0000023356,0.0000023394,0.0000023418, -0.0000023432,0.0000023437,0.0000023435,0.0000023439,0.0000023453, -0.0000023466,0.0000023473,0.0000023472,0.0000023471,0.0000023473, -0.0000023465,0.0000023444,0.0000023420,0.0000023410,0.0000023431, -0.0000023467,0.0000023535,0.0000023630,0.0000023737,0.0000023867, -0.0000023969,0.0000023998,0.0000023985,0.0000023975,0.0000023998, -0.0000024058,0.0000024120,0.0000024179,0.0000024167,0.0000024062, -0.0000023991,0.0000023920,0.0000023860,0.0000023838,0.0000023840, -0.0000023865,0.0000023886,0.0000023911,0.0000023946,0.0000023981, -0.0000024005,0.0000024016,0.0000024017,0.0000024008,0.0000023990, -0.0000023977,0.0000023977,0.0000023982,0.0000023983,0.0000023979, -0.0000023965,0.0000023941,0.0000023914,0.0000023888,0.0000023855, -0.0000023816,0.0000023772,0.0000023726,0.0000023683,0.0000023650, -0.0000023630,0.0000023612,0.0000023589,0.0000023559,0.0000023528, -0.0000023506,0.0000023495,0.0000023487,0.0000023477,0.0000023466, -0.0000023458,0.0000023456,0.0000023457,0.0000023457,0.0000023455, -0.0000023446,0.0000023430,0.0000023403,0.0000023366,0.0000023331, -0.0000023302,0.0000023278,0.0000023258,0.0000023237,0.0000023211, -0.0000023184,0.0000023157,0.0000023132,0.0000023108,0.0000023086, -0.0000023067,0.0000023051,0.0000023037,0.0000023027,0.0000023021, -0.0000023016,0.0000023012,0.0000023009,0.0000023003,0.0000022992, -0.0000022975,0.0000022952,0.0000022923,0.0000022893,0.0000022864, -0.0000022838,0.0000022826,0.0000022839,0.0000022879,0.0000022928, -0.0000022973,0.0000023015,0.0000023056,0.0000023097,0.0000023138, -0.0000023175,0.0000023204,0.0000023222,0.0000023227,0.0000023223, -0.0000023214,0.0000023207,0.0000023202,0.0000023204,0.0000023208, -0.0000023211,0.0000023217,0.0000023222,0.0000023228,0.0000023234, -0.0000023235,0.0000023228,0.0000023215,0.0000023197,0.0000023179, -0.0000023163,0.0000023156,0.0000023158,0.0000023166,0.0000023176, -0.0000023189,0.0000023205,0.0000023227,0.0000023255,0.0000023286, -0.0000023316,0.0000023346,0.0000023375,0.0000023404,0.0000023436, -0.0000023467,0.0000023498,0.0000023528,0.0000023560,0.0000023590, -0.0000023613,0.0000023630,0.0000023640,0.0000023650,0.0000023658, -0.0000023656,0.0000023640,0.0000023617,0.0000023590,0.0000023565, -0.0000023536,0.0000023508,0.0000023480,0.0000023457,0.0000023463, -0.0000023500,0.0000023542,0.0000023543,0.0000023407,0.0000023160, -0.0000022997,0.0000022983,0.0000023018,0.0000023136,0.0000023343, -0.0000023506,0.0000023566,0.0000023542,0.0000023429,0.0000023364, -0.0000023468,0.0000023613,0.0000023702,0.0000023732,0.0000023689, -0.0000023588,0.0000023470,0.0000023342,0.0000023213,0.0000023116, -0.0000023074,0.0000023074,0.0000023091,0.0000023147,0.0000023246, -0.0000023352,0.0000023415,0.0000023411,0.0000023367,0.0000023308, -0.0000023259,0.0000023230,0.0000023215,0.0000023218,0.0000023231, -0.0000023241,0.0000023248,0.0000023251,0.0000023251,0.0000023253, -0.0000023258,0.0000023265,0.0000023276,0.0000023283,0.0000023282, -0.0000023269,0.0000023234,0.0000023155,0.0000023015,0.0000022828, -0.0000022632,0.0000022466,0.0000022367,0.0000022351,0.0000022420, -0.0000022569,0.0000022739,0.0000022874,0.0000022933,0.0000022968, -0.0000022983,0.0000022987,0.0000022977,0.0000022946,0.0000022895, -0.0000022818,0.0000022716,0.0000022594,0.0000022448,0.0000022290, -0.0000022195,0.0000022185,0.0000022160,0.0000022053,0.0000021920, -0.0000021799,0.0000021667,0.0000021561,0.0000021530,0.0000021521, -0.0000021473,0.0000021398,0.0000021349,0.0000021338,0.0000021360, -0.0000021480,0.0000021701,0.0000021960,0.0000022190,0.0000022363, -0.0000022473,0.0000022538,0.0000022606,0.0000022684,0.0000022741, -0.0000022760,0.0000022741,0.0000022677,0.0000022590,0.0000022522, -0.0000022487,0.0000022452,0.0000022393,0.0000022326,0.0000022268, -0.0000022209,0.0000022136,0.0000022042,0.0000021939,0.0000021841, -0.0000021737,0.0000021629,0.0000021534,0.0000021460,0.0000021430, -0.0000021442,0.0000021471,0.0000021471,0.0000021449,0.0000021453, -0.0000021504,0.0000021572,0.0000021642,0.0000021713,0.0000021768, -0.0000021798,0.0000021815,0.0000021837,0.0000021871,0.0000021911, -0.0000021942,0.0000021957,0.0000021958,0.0000021937,0.0000021887, -0.0000021803,0.0000021694,0.0000021590,0.0000021502,0.0000021428, -0.0000021369,0.0000021329,0.0000021311,0.0000021310,0.0000021324, -0.0000021351,0.0000021388,0.0000021427,0.0000021464,0.0000021498, -0.0000021528,0.0000021557,0.0000021592,0.0000021636,0.0000021684, -0.0000021714,0.0000021718,0.0000021700,0.0000021683,0.0000021667, -0.0000021646,0.0000021612,0.0000021555,0.0000021464,0.0000021337, -0.0000021184,0.0000021017,0.0000020869,0.0000020790,0.0000020800, -0.0000020837,0.0000020867,0.0000020905,0.0000021029,0.0000021262, -0.0000021509,0.0000021657,0.0000021709,0.0000021764,0.0000021894, -0.0000022072,0.0000022195,0.0000022214,0.0000022177,0.0000022152, -0.0000022166,0.0000022252,0.0000022402,0.0000022578,0.0000022754, -0.0000022921,0.0000023081,0.0000023223,0.0000023324,0.0000023392, -0.0000023482,0.0000023639,0.0000023839,0.0000024001,0.0000024079, -0.0000024121,0.0000024231,0.0000024444,0.0000024682,0.0000024843, -0.0000024904,0.0000024909,0.0000024903,0.0000024913,0.0000024944, -0.0000024947,0.0000024865,0.0000024698,0.0000024524,0.0000024416, -0.0000024347,0.0000024279,0.0000024256,0.0000024324,0.0000024466, -0.0000024618,0.0000024743,0.0000024834,0.0000024853,0.0000024766, -0.0000024607,0.0000024459,0.0000024330,0.0000024236,0.0000024205, -0.0000024194,0.0000024142,0.0000024049,0.0000023957,0.0000023904, -0.0000023895,0.0000023900,0.0000023896,0.0000023879,0.0000023852, -0.0000023818,0.0000023795,0.0000023797,0.0000023810,0.0000023821, -0.0000023828,0.0000023833,0.0000023827,0.0000023808,0.0000023780, -0.0000023748,0.0000023714,0.0000023672,0.0000023624,0.0000023576, -0.0000023544,0.0000023540,0.0000023567,0.0000023619,0.0000023679, -0.0000023737,0.0000023781,0.0000023805,0.0000023812,0.0000023810, -0.0000023789,0.0000023752,0.0000023707,0.0000023660,0.0000023614, -0.0000023566,0.0000023509,0.0000023445,0.0000023375,0.0000023292, -0.0000023197,0.0000023113,0.0000023060,0.0000023039,0.0000023035, -0.0000023037,0.0000023036,0.0000023025,0.0000022999,0.0000022967, -0.0000022939,0.0000022932,0.0000022962,0.0000023019,0.0000023099, -0.0000023204,0.0000023330,0.0000023468,0.0000023610,0.0000023743, -0.0000023863,0.0000023959,0.0000024028,0.0000024067,0.0000024084, -0.0000024089,0.0000024088,0.0000024072,0.0000024034,0.0000023974, -0.0000023891,0.0000023784,0.0000023661,0.0000023534,0.0000023404, -0.0000023280,0.0000023172,0.0000023078,0.0000022994,0.0000022923, -0.0000022865,0.0000022815,0.0000022774,0.0000022749,0.0000022748, -0.0000022773,0.0000022815,0.0000022863,0.0000022920,0.0000022976, -0.0000023021,0.0000023047,0.0000023043,0.0000023014,0.0000022952, -0.0000022882,0.0000022815,0.0000022760,0.0000022718,0.0000022680, -0.0000022565,0.0000022357,0.0000022148,0.0000022029,0.0000022003, -0.0000021998,0.0000021975,0.0000021938,0.0000021899,0.0000021865, -0.0000021828,0.0000021760,0.0000021676,0.0000021608,0.0000021575, -0.0000021563,0.0000021560,0.0000021560,0.0000021563,0.0000021569, -0.0000021573,0.0000021547,0.0000021518,0.0000021470,0.0000021434, -0.0000021398,0.0000021384,0.0000021413,0.0000021460,0.0000021508, -0.0000021557,0.0000021605,0.0000021648,0.0000021688,0.0000021726, -0.0000021754,0.0000021771,0.0000021776,0.0000021769,0.0000021749, -0.0000021729,0.0000021709,0.0000021682,0.0000021650,0.0000021621, -0.0000021598,0.0000021578,0.0000021546,0.0000021504,0.0000021467, -0.0000021432,0.0000021403,0.0000021380,0.0000021351,0.0000021313, -0.0000021267,0.0000021225,0.0000021191,0.0000021155,0.0000021126, -0.0000021101,0.0000021079,0.0000021063,0.0000021057,0.0000021053, -0.0000021056,0.0000021062,0.0000021074,0.0000021102,0.0000021143, -0.0000021183,0.0000021207,0.0000021222,0.0000021230,0.0000021225, -0.0000021220,0.0000021212,0.0000021207,0.0000021207,0.0000021211, -0.0000021217,0.0000021228,0.0000021238,0.0000021243,0.0000021242, -0.0000021247,0.0000021260,0.0000021289,0.0000021329,0.0000021364, -0.0000021385,0.0000021394,0.0000021396,0.0000021389,0.0000021370, -0.0000021351,0.0000021331,0.0000021312,0.0000021295,0.0000021280, -0.0000021270,0.0000021267,0.0000021280,0.0000021320,0.0000021386, -0.0000021466,0.0000021549,0.0000021622,0.0000021675,0.0000021700, -0.0000021709,0.0000021714,0.0000021714,0.0000021697,0.0000021657, -0.0000021608,0.0000021559,0.0000021525,0.0000021505,0.0000021489, -0.0000021468,0.0000021434,0.0000021395,0.0000021341,0.0000021285, -0.0000021235,0.0000021200,0.0000021185,0.0000021184,0.0000021193, -0.0000021219,0.0000021265,0.0000021330,0.0000021399,0.0000021462, -0.0000021530,0.0000021615,0.0000021700,0.0000021753,0.0000021774, -0.0000021773,0.0000021763,0.0000021747,0.0000021730,0.0000021721, -0.0000021723,0.0000021745,0.0000021776,0.0000021781,0.0000021770, -0.0000021765,0.0000021762,0.0000021758,0.0000021712,0.0000021617, -0.0000021579,0.0000021608,0.0000021627,0.0000021618,0.0000021610, -0.0000021603,0.0000021578,0.0000021536,0.0000021485,0.0000021436, -0.0000021405,0.0000021404,0.0000021432,0.0000021473,0.0000021506, -0.0000021525,0.0000021540,0.0000021559,0.0000021566,0.0000021523, -0.0000021432,0.0000021381,0.0000021377,0.0000021355,0.0000021310, -0.0000021308,0.0000021390,0.0000021497,0.0000021559,0.0000021589, -0.0000021624,0.0000021658,0.0000021685,0.0000021711,0.0000021745, -0.0000021787,0.0000021829,0.0000021861,0.0000021882,0.0000021899, -0.0000021914,0.0000021920,0.0000021912,0.0000021894,0.0000021875, -0.0000021865,0.0000021865,0.0000021883,0.0000021921,0.0000021967, -0.0000022005,0.0000022033,0.0000022053,0.0000022058,0.0000022038, -0.0000021985,0.0000021905,0.0000021810,0.0000021712,0.0000021626, -0.0000021567,0.0000021543,0.0000021542,0.0000021542,0.0000021530, -0.0000021488,0.0000021416,0.0000021343,0.0000021301,0.0000021294, -0.0000021304,0.0000021318,0.0000021339,0.0000021368,0.0000021378, -0.0000021308,0.0000021159,0.0000021032,0.0000020980,0.0000021010, -0.0000021245,0.0000021612,0.0000021874,0.0000022010,0.0000022085, -0.0000022131,0.0000022185,0.0000022246,0.0000022281,0.0000022288, -0.0000022278,0.0000022233,0.0000022162,0.0000022094,0.0000022045, -0.0000022021,0.0000022022,0.0000022049,0.0000022099,0.0000022159, -0.0000022217,0.0000022266,0.0000022296,0.0000022305,0.0000022304, -0.0000022299,0.0000022271,0.0000022165,0.0000021962,0.0000021738, -0.0000021594,0.0000021560,0.0000021564,0.0000021542,0.0000021487, -0.0000021500,0.0000021635,0.0000021831,0.0000021977,0.0000022067, -0.0000022173,0.0000022308,0.0000022407,0.0000022432,0.0000022418, -0.0000022367,0.0000022282,0.0000022194,0.0000022144,0.0000022136, -0.0000022219,0.0000022231,0.0000022042,0.0000021783,0.0000021711, -0.0000021817,0.0000021957,0.0000022124,0.0000022393,0.0000022627, -0.0000022677,0.0000022633,0.0000022585,0.0000022586,0.0000022632, -0.0000022716,0.0000022805,0.0000022850,0.0000022840,0.0000022824, -0.0000022849,0.0000022897,0.0000022917,0.0000022923,0.0000022971, -0.0000023052,0.0000023100,0.0000023099,0.0000023088,0.0000023083, -0.0000023074,0.0000023048,0.0000023021,0.0000023014,0.0000023030, -0.0000023056,0.0000023068,0.0000023059,0.0000023028,0.0000022992, -0.0000022963,0.0000022940,0.0000022920,0.0000022902,0.0000022885, -0.0000022867,0.0000022845,0.0000022821,0.0000022805,0.0000022807, -0.0000022830,0.0000022868,0.0000022914,0.0000022957,0.0000022993, -0.0000023027,0.0000023071,0.0000023122,0.0000023162,0.0000023192, -0.0000023221,0.0000023256,0.0000023291,0.0000023322,0.0000023354, -0.0000023391,0.0000023421,0.0000023433,0.0000023429,0.0000023416, -0.0000023388,0.0000023347,0.0000023338,0.0000023364,0.0000023388, -0.0000023396,0.0000023412,0.0000023424,0.0000023406,0.0000023356, -0.0000023308,0.0000023277,0.0000023255,0.0000023230,0.0000023210, -0.0000023195,0.0000023184,0.0000023175,0.0000023172,0.0000023177, -0.0000023176,0.0000023165,0.0000023150,0.0000023149,0.0000023161, -0.0000023177,0.0000023197,0.0000023214,0.0000023226,0.0000023232, -0.0000023232,0.0000023234,0.0000023243,0.0000023247,0.0000023238, -0.0000023222,0.0000023214,0.0000023207,0.0000023193,0.0000023175, -0.0000023174,0.0000023181,0.0000023172,0.0000023147,0.0000023118, -0.0000023094,0.0000023072,0.0000023035,0.0000022991,0.0000022958, -0.0000022934,0.0000022918,0.0000022905,0.0000022894,0.0000022885, -0.0000022874,0.0000022859,0.0000022845,0.0000022831,0.0000022803, -0.0000022775,0.0000022746,0.0000022709,0.0000022679,0.0000022657, -0.0000022646,0.0000022642,0.0000022649,0.0000022668,0.0000022701, -0.0000022736,0.0000022769,0.0000022812,0.0000022875,0.0000022947, -0.0000023020,0.0000023090,0.0000023155,0.0000023211,0.0000023264, -0.0000023301,0.0000023313,0.0000023305,0.0000023280,0.0000023249, -0.0000023223,0.0000023213,0.0000023222,0.0000023245,0.0000023273, -0.0000023294,0.0000023298,0.0000023294,0.0000023289,0.0000023283, -0.0000023287,0.0000023304,0.0000023351,0.0000023432,0.0000023535, -0.0000023630,0.0000023670,0.0000023668,0.0000023627,0.0000023576, -0.0000023538,0.0000023520,0.0000023510,0.0000023490,0.0000023449, -0.0000023383,0.0000023301,0.0000023216,0.0000023147,0.0000023111, -0.0000023094,0.0000023101,0.0000023121,0.0000023149,0.0000023177, -0.0000023202,0.0000023224,0.0000023240,0.0000023244,0.0000023241, -0.0000023235,0.0000023230,0.0000023227,0.0000023225,0.0000023226, -0.0000023229,0.0000023237,0.0000023248,0.0000023257,0.0000023260, -0.0000023251,0.0000023226,0.0000023184,0.0000023133,0.0000023082, -0.0000023033,0.0000022987,0.0000022941,0.0000022899,0.0000022859, -0.0000022826,0.0000022805,0.0000022785,0.0000022769,0.0000022752, -0.0000022730,0.0000022703,0.0000022675,0.0000022649,0.0000022629, -0.0000022612,0.0000022600,0.0000022597,0.0000022602,0.0000022612, -0.0000022622,0.0000022627,0.0000022623,0.0000022611,0.0000022601, -0.0000022596,0.0000022595,0.0000022592,0.0000022582,0.0000022567, -0.0000022552,0.0000022540,0.0000022533,0.0000022533,0.0000022537, -0.0000022545,0.0000022554,0.0000022563,0.0000022573,0.0000022582, -0.0000022588,0.0000022590,0.0000022588,0.0000022581,0.0000022573, -0.0000022571,0.0000022575,0.0000022582,0.0000022590,0.0000022611, -0.0000022640,0.0000022673,0.0000022700,0.0000022722,0.0000022739, -0.0000022753,0.0000022764,0.0000022774,0.0000022788,0.0000022801, -0.0000022811,0.0000022822,0.0000022842,0.0000022874,0.0000022911, -0.0000022962,0.0000023019,0.0000023081,0.0000023147,0.0000023205, -0.0000023251,0.0000023287,0.0000023311,0.0000023321,0.0000023320, -0.0000023312,0.0000023301,0.0000023291,0.0000023286,0.0000023285, -0.0000023286,0.0000023289,0.0000023291,0.0000023290,0.0000023284, -0.0000023269,0.0000023254,0.0000023239,0.0000023223,0.0000023202, -0.0000023180,0.0000023156,0.0000023136,0.0000023118,0.0000023105, -0.0000023097,0.0000023094,0.0000023095,0.0000023104,0.0000023113, -0.0000023123,0.0000023132,0.0000023144,0.0000023154,0.0000023162, -0.0000023170,0.0000023173,0.0000023173,0.0000023171,0.0000023168, -0.0000023162,0.0000023149,0.0000023127,0.0000023100,0.0000023072, -0.0000023047,0.0000023024,0.0000023006,0.0000022985,0.0000022962, -0.0000022942,0.0000022929,0.0000022920,0.0000022915,0.0000022923, -0.0000022928,0.0000022925,0.0000022910,0.0000022885,0.0000022851, -0.0000022813,0.0000022776,0.0000022762,0.0000022772,0.0000022782, -0.0000022787,0.0000022783,0.0000022770,0.0000022754,0.0000022730, -0.0000022698,0.0000022663,0.0000022616,0.0000022569,0.0000022515, -0.0000022467,0.0000022420,0.0000022374,0.0000022336,0.0000022320, -0.0000022320,0.0000022331,0.0000022347,0.0000022386,0.0000022433, -0.0000022494,0.0000022575,0.0000022659,0.0000022722,0.0000022754, -0.0000022762,0.0000022753,0.0000022748,0.0000022760,0.0000022786, -0.0000022822,0.0000022862,0.0000022901,0.0000022940,0.0000022987, -0.0000023048,0.0000023117,0.0000023181,0.0000023238,0.0000023287, -0.0000023322,0.0000023347,0.0000023365,0.0000023369,0.0000023355, -0.0000023327,0.0000023294,0.0000023250,0.0000023202,0.0000023154, -0.0000023123,0.0000023102,0.0000023091,0.0000023091,0.0000023105, -0.0000023149,0.0000023200,0.0000023238,0.0000023245,0.0000023231, -0.0000023189,0.0000023125,0.0000023065,0.0000023026,0.0000022990, -0.0000022931,0.0000022889,0.0000022913,0.0000022964,0.0000022940, -0.0000022883,0.0000022859,0.0000022809,0.0000022730,0.0000022685, -0.0000022681,0.0000022695,0.0000022768,0.0000022879,0.0000022964, -0.0000023103,0.0000023356,0.0000023541,0.0000023551,0.0000023548, -0.0000023427,0.0000023224,0.0000023163,0.0000023124,0.0000023079, -0.0000023025,0.0000023004,0.0000023007,0.0000023057,0.0000023144, -0.0000023243,0.0000023311,0.0000023333,0.0000023324,0.0000023315, -0.0000023298,0.0000023273,0.0000023238,0.0000023232,0.0000023257, -0.0000023283,0.0000023300,0.0000023312,0.0000023321,0.0000023297, -0.0000023222,0.0000023091,0.0000022964,0.0000022879,0.0000022816, -0.0000022777,0.0000022779,0.0000022823,0.0000022883,0.0000022889, -0.0000022836,0.0000022790,0.0000022776,0.0000022803,0.0000022872, -0.0000022928,0.0000022945,0.0000022924,0.0000022844,0.0000022779, -0.0000022779,0.0000022775,0.0000022720,0.0000022680,0.0000022635, -0.0000022432,0.0000022212,0.0000022216,0.0000022376,0.0000022552, -0.0000022623,0.0000022628,0.0000022605,0.0000022423,0.0000022132, -0.0000022021,0.0000022134,0.0000022334,0.0000022483,0.0000022562, -0.0000022610,0.0000022691,0.0000022810,0.0000022902,0.0000022916, -0.0000022866,0.0000022804,0.0000022778,0.0000022764,0.0000022717, -0.0000022649,0.0000022642,0.0000022744,0.0000022853,0.0000022865, -0.0000022773,0.0000022625,0.0000022501,0.0000022380,0.0000022280, -0.0000022269,0.0000022277,0.0000022277,0.0000022299,0.0000022318, -0.0000022311,0.0000022287,0.0000022237,0.0000022177,0.0000022155, -0.0000022216,0.0000022356,0.0000022484,0.0000022596,0.0000022693, -0.0000022758,0.0000022778,0.0000022777,0.0000022773,0.0000022754, -0.0000022746,0.0000022772,0.0000022802,0.0000022807,0.0000022806, -0.0000022827,0.0000022851,0.0000022849,0.0000022832,0.0000022828, -0.0000022853,0.0000022892,0.0000022925,0.0000022957,0.0000022993, -0.0000023030,0.0000023067,0.0000023099,0.0000023134,0.0000023172, -0.0000023200,0.0000023214,0.0000023217,0.0000023210,0.0000023196, -0.0000023174,0.0000023143,0.0000023108,0.0000023082,0.0000023074, -0.0000023082,0.0000023108,0.0000023149,0.0000023193,0.0000023228, -0.0000023257,0.0000023282,0.0000023305,0.0000023312,0.0000023312, -0.0000023314,0.0000023317,0.0000023313,0.0000023307,0.0000023289, -0.0000023247,0.0000023184,0.0000023104,0.0000023010,0.0000022920, -0.0000022844,0.0000022787,0.0000022774,0.0000022830,0.0000022924, -0.0000023015,0.0000023093,0.0000023163,0.0000023228,0.0000023290, -0.0000023358,0.0000023413,0.0000023430,0.0000023415,0.0000023391, -0.0000023375,0.0000023367,0.0000023374,0.0000023401,0.0000023430, -0.0000023447,0.0000023453,0.0000023453,0.0000023444,0.0000023424, -0.0000023396,0.0000023379,0.0000023377,0.0000023402,0.0000023443, -0.0000023516,0.0000023613,0.0000023721,0.0000023847,0.0000023942, -0.0000023967,0.0000023955,0.0000023951,0.0000023985,0.0000024033, -0.0000024093,0.0000024159,0.0000024142,0.0000024041,0.0000023978, -0.0000023919,0.0000023866,0.0000023840,0.0000023842,0.0000023861, -0.0000023881,0.0000023904,0.0000023933,0.0000023962,0.0000023983, -0.0000024003,0.0000024021,0.0000024029,0.0000024023,0.0000024010, -0.0000023996,0.0000023984,0.0000023974,0.0000023964,0.0000023950, -0.0000023925,0.0000023892,0.0000023857,0.0000023822,0.0000023787, -0.0000023748,0.0000023707,0.0000023667,0.0000023637,0.0000023615, -0.0000023596,0.0000023573,0.0000023543,0.0000023514,0.0000023491, -0.0000023474,0.0000023462,0.0000023448,0.0000023435,0.0000023426, -0.0000023424,0.0000023423,0.0000023420,0.0000023410,0.0000023386, -0.0000023350,0.0000023307,0.0000023267,0.0000023238,0.0000023221, -0.0000023211,0.0000023201,0.0000023183,0.0000023157,0.0000023128, -0.0000023101,0.0000023075,0.0000023050,0.0000023029,0.0000023011, -0.0000022996,0.0000022981,0.0000022965,0.0000022950,0.0000022936, -0.0000022920,0.0000022900,0.0000022875,0.0000022852,0.0000022833, -0.0000022812,0.0000022785,0.0000022752,0.0000022717,0.0000022684, -0.0000022662,0.0000022667,0.0000022695,0.0000022738,0.0000022783, -0.0000022826,0.0000022865,0.0000022903,0.0000022940,0.0000022973, -0.0000023003,0.0000023023,0.0000023033,0.0000023032,0.0000023021, -0.0000023001,0.0000022986,0.0000022977,0.0000022971,0.0000022967, -0.0000022962,0.0000022959,0.0000022960,0.0000022966,0.0000022968, -0.0000022963,0.0000022951,0.0000022933,0.0000022912,0.0000022891, -0.0000022875,0.0000022869,0.0000022872,0.0000022880,0.0000022890, -0.0000022903,0.0000022922,0.0000022947,0.0000022977,0.0000023011, -0.0000023051,0.0000023098,0.0000023153,0.0000023216,0.0000023278, -0.0000023331,0.0000023374,0.0000023409,0.0000023444,0.0000023478, -0.0000023507,0.0000023528,0.0000023545,0.0000023564,0.0000023582, -0.0000023589,0.0000023585,0.0000023577,0.0000023563,0.0000023542, -0.0000023515,0.0000023487,0.0000023452,0.0000023432,0.0000023436, -0.0000023466,0.0000023507,0.0000023499,0.0000023382,0.0000023143, -0.0000022991,0.0000022980,0.0000023019,0.0000023135,0.0000023343, -0.0000023505,0.0000023551,0.0000023501,0.0000023370,0.0000023353, -0.0000023482,0.0000023607,0.0000023671,0.0000023676,0.0000023606, -0.0000023487,0.0000023354,0.0000023218,0.0000023083,0.0000022984, -0.0000022945,0.0000022936,0.0000022943,0.0000022984,0.0000023084, -0.0000023221,0.0000023330,0.0000023375,0.0000023367,0.0000023340, -0.0000023304,0.0000023270,0.0000023248,0.0000023242,0.0000023241, -0.0000023237,0.0000023230,0.0000023223,0.0000023218,0.0000023221, -0.0000023231,0.0000023249,0.0000023267,0.0000023270,0.0000023237, -0.0000023135,0.0000022946,0.0000022677,0.0000022387,0.0000022147, -0.0000021984,0.0000021885,0.0000021842,0.0000021850,0.0000021932, -0.0000022111,0.0000022365,0.0000022625,0.0000022827,0.0000022950, -0.0000022996,0.0000023024,0.0000023039,0.0000023039,0.0000023025, -0.0000022979,0.0000022875,0.0000022724,0.0000022560,0.0000022391, -0.0000022254,0.0000022205,0.0000022188,0.0000022101,0.0000021967, -0.0000021846,0.0000021720,0.0000021599,0.0000021550,0.0000021546, -0.0000021523,0.0000021456,0.0000021389,0.0000021356,0.0000021359, -0.0000021419,0.0000021575,0.0000021812,0.0000022047,0.0000022228, -0.0000022366,0.0000022473,0.0000022565,0.0000022652,0.0000022716, -0.0000022738,0.0000022725,0.0000022661,0.0000022560,0.0000022466, -0.0000022410,0.0000022367,0.0000022302,0.0000022223,0.0000022156, -0.0000022092,0.0000022004,0.0000021891,0.0000021769,0.0000021649, -0.0000021532,0.0000021434,0.0000021376,0.0000021364,0.0000021390, -0.0000021443,0.0000021475,0.0000021471,0.0000021474,0.0000021529, -0.0000021611,0.0000021680,0.0000021737,0.0000021782,0.0000021810, -0.0000021836,0.0000021873,0.0000021922,0.0000021974,0.0000022014, -0.0000022030,0.0000022016,0.0000021969,0.0000021899,0.0000021801, -0.0000021686,0.0000021575,0.0000021475,0.0000021388,0.0000021321, -0.0000021284,0.0000021273,0.0000021278,0.0000021294,0.0000021319, -0.0000021348,0.0000021382,0.0000021416,0.0000021442,0.0000021459, -0.0000021467,0.0000021474,0.0000021483,0.0000021505,0.0000021544, -0.0000021592,0.0000021635,0.0000021659,0.0000021669,0.0000021664, -0.0000021656,0.0000021642,0.0000021617,0.0000021568,0.0000021477, -0.0000021343,0.0000021177,0.0000020998,0.0000020858,0.0000020801, -0.0000020821,0.0000020859,0.0000020882,0.0000020931,0.0000021079, -0.0000021322,0.0000021547,0.0000021659,0.0000021693,0.0000021755, -0.0000021891,0.0000022046,0.0000022129,0.0000022125,0.0000022108, -0.0000022115,0.0000022168,0.0000022280,0.0000022448,0.0000022637, -0.0000022817,0.0000022989,0.0000023154,0.0000023293,0.0000023381, -0.0000023433,0.0000023507,0.0000023649,0.0000023834,0.0000023978, -0.0000024043,0.0000024095,0.0000024237,0.0000024477,0.0000024712, -0.0000024850,0.0000024885,0.0000024874,0.0000024865,0.0000024879, -0.0000024907,0.0000024902,0.0000024804,0.0000024617,0.0000024454, -0.0000024360,0.0000024289,0.0000024235,0.0000024238,0.0000024332, -0.0000024490,0.0000024647,0.0000024771,0.0000024831,0.0000024805, -0.0000024685,0.0000024540,0.0000024411,0.0000024298,0.0000024231, -0.0000024209,0.0000024188,0.0000024136,0.0000024059,0.0000023995, -0.0000023965,0.0000023954,0.0000023941,0.0000023909,0.0000023865, -0.0000023820,0.0000023796,0.0000023799,0.0000023818,0.0000023841, -0.0000023860,0.0000023874,0.0000023877,0.0000023870,0.0000023855, -0.0000023840,0.0000023823,0.0000023795,0.0000023757,0.0000023721, -0.0000023698,0.0000023695,0.0000023713,0.0000023757,0.0000023808, -0.0000023855,0.0000023892,0.0000023910,0.0000023915,0.0000023910, -0.0000023891,0.0000023859,0.0000023819,0.0000023778,0.0000023744, -0.0000023710,0.0000023670,0.0000023625,0.0000023569,0.0000023494, -0.0000023399,0.0000023295,0.0000023206,0.0000023147,0.0000023114, -0.0000023090,0.0000023067,0.0000023041,0.0000023017,0.0000022999, -0.0000022989,0.0000022989,0.0000023000,0.0000023034,0.0000023076, -0.0000023133,0.0000023181,0.0000023244,0.0000023326,0.0000023429, -0.0000023545,0.0000023667,0.0000023776,0.0000023862,0.0000023918, -0.0000023943,0.0000023946,0.0000023930,0.0000023884,0.0000023807, -0.0000023705,0.0000023583,0.0000023457,0.0000023344,0.0000023239, -0.0000023142,0.0000023057,0.0000022988,0.0000022932,0.0000022881, -0.0000022833,0.0000022785,0.0000022738,0.0000022697,0.0000022675, -0.0000022680,0.0000022718,0.0000022765,0.0000022815,0.0000022867, -0.0000022914,0.0000022950,0.0000022968,0.0000022965,0.0000022936, -0.0000022879,0.0000022806,0.0000022741,0.0000022705,0.0000022704, -0.0000022716,0.0000022670,0.0000022527,0.0000022304,0.0000022115, -0.0000022032,0.0000022003,0.0000021971,0.0000021925,0.0000021876, -0.0000021846,0.0000021826,0.0000021800,0.0000021738,0.0000021652, -0.0000021579,0.0000021553,0.0000021522,0.0000021499,0.0000021483, -0.0000021487,0.0000021490,0.0000021495,0.0000021512,0.0000021557, -0.0000021582,0.0000021570,0.0000021555,0.0000021540,0.0000021529, -0.0000021536,0.0000021567,0.0000021598,0.0000021630,0.0000021658, -0.0000021678,0.0000021689,0.0000021692,0.0000021686,0.0000021674, -0.0000021658,0.0000021639,0.0000021610,0.0000021575,0.0000021537, -0.0000021506,0.0000021487,0.0000021459,0.0000021417,0.0000021371, -0.0000021335,0.0000021308,0.0000021294,0.0000021277,0.0000021254, -0.0000021219,0.0000021182,0.0000021153,0.0000021125,0.0000021098, -0.0000021075,0.0000021057,0.0000021044,0.0000021041,0.0000021040, -0.0000021044,0.0000021053,0.0000021067,0.0000021088,0.0000021121, -0.0000021163,0.0000021196,0.0000021214,0.0000021223,0.0000021223, -0.0000021217,0.0000021213,0.0000021213,0.0000021211,0.0000021212, -0.0000021217,0.0000021226,0.0000021239,0.0000021253,0.0000021256, -0.0000021253,0.0000021250,0.0000021249,0.0000021258,0.0000021273, -0.0000021281,0.0000021279,0.0000021272,0.0000021260,0.0000021242, -0.0000021227,0.0000021218,0.0000021208,0.0000021194,0.0000021179, -0.0000021163,0.0000021146,0.0000021139,0.0000021143,0.0000021173, -0.0000021231,0.0000021315,0.0000021416,0.0000021520,0.0000021603, -0.0000021654,0.0000021676,0.0000021689,0.0000021695,0.0000021685, -0.0000021655,0.0000021606,0.0000021549,0.0000021498,0.0000021456, -0.0000021432,0.0000021418,0.0000021406,0.0000021383,0.0000021342, -0.0000021283,0.0000021216,0.0000021162,0.0000021131,0.0000021135, -0.0000021159,0.0000021185,0.0000021214,0.0000021264,0.0000021332, -0.0000021391,0.0000021444,0.0000021517,0.0000021604,0.0000021671, -0.0000021692,0.0000021685,0.0000021666,0.0000021643,0.0000021618, -0.0000021602,0.0000021608,0.0000021653,0.0000021708,0.0000021730, -0.0000021738,0.0000021744,0.0000021745,0.0000021723,0.0000021641, -0.0000021571,0.0000021581,0.0000021616,0.0000021617,0.0000021601, -0.0000021590,0.0000021569,0.0000021528,0.0000021474,0.0000021413, -0.0000021358,0.0000021330,0.0000021336,0.0000021372,0.0000021416, -0.0000021450,0.0000021472,0.0000021496,0.0000021525,0.0000021540, -0.0000021509,0.0000021424,0.0000021363,0.0000021356,0.0000021340, -0.0000021289,0.0000021272,0.0000021333,0.0000021440,0.0000021508, -0.0000021539,0.0000021567,0.0000021594,0.0000021615,0.0000021639, -0.0000021672,0.0000021713,0.0000021757,0.0000021794,0.0000021819, -0.0000021837,0.0000021849,0.0000021849,0.0000021839,0.0000021826, -0.0000021815,0.0000021807,0.0000021805,0.0000021821,0.0000021858, -0.0000021900,0.0000021934,0.0000021959,0.0000021979,0.0000021986, -0.0000021975,0.0000021941,0.0000021882,0.0000021799,0.0000021704, -0.0000021609,0.0000021533,0.0000021490,0.0000021482,0.0000021490, -0.0000021505,0.0000021502,0.0000021468,0.0000021414,0.0000021367, -0.0000021339,0.0000021322,0.0000021313,0.0000021315,0.0000021337, -0.0000021372,0.0000021365,0.0000021249,0.0000021085,0.0000020980, -0.0000020961,0.0000021097,0.0000021441,0.0000021763,0.0000021941, -0.0000022033,0.0000022088,0.0000022140,0.0000022204,0.0000022248, -0.0000022256,0.0000022243,0.0000022200,0.0000022137,0.0000022075, -0.0000022027,0.0000022008,0.0000022014,0.0000022043,0.0000022089, -0.0000022145,0.0000022205,0.0000022260,0.0000022296,0.0000022307, -0.0000022306,0.0000022290,0.0000022215,0.0000022038,0.0000021804, -0.0000021615,0.0000021535,0.0000021532,0.0000021524,0.0000021485, -0.0000021474,0.0000021569,0.0000021760,0.0000021933,0.0000022040, -0.0000022131,0.0000022244,0.0000022352,0.0000022412,0.0000022425, -0.0000022407,0.0000022337,0.0000022232,0.0000022141,0.0000022109, -0.0000022115,0.0000022198,0.0000022125,0.0000021878,0.0000021708, -0.0000021750,0.0000021872,0.0000022006,0.0000022242,0.0000022526, -0.0000022656,0.0000022618,0.0000022563,0.0000022559,0.0000022588, -0.0000022650,0.0000022738,0.0000022811,0.0000022830,0.0000022814, -0.0000022810,0.0000022852,0.0000022900,0.0000022912,0.0000022915, -0.0000022961,0.0000023043,0.0000023099,0.0000023104,0.0000023090, -0.0000023084,0.0000023085,0.0000023092,0.0000023096,0.0000023095, -0.0000023098,0.0000023111,0.0000023121,0.0000023116,0.0000023090, -0.0000023054,0.0000023024,0.0000023003,0.0000022983,0.0000022958, -0.0000022935,0.0000022914,0.0000022892,0.0000022866,0.0000022844, -0.0000022838,0.0000022847,0.0000022874,0.0000022912,0.0000022954, -0.0000022989,0.0000023017,0.0000023050,0.0000023093,0.0000023139, -0.0000023177,0.0000023209,0.0000023239,0.0000023268,0.0000023291, -0.0000023310,0.0000023333,0.0000023357,0.0000023372,0.0000023364, -0.0000023344,0.0000023329,0.0000023303,0.0000023289,0.0000023308, -0.0000023338,0.0000023348,0.0000023361,0.0000023383,0.0000023385, -0.0000023347,0.0000023296,0.0000023260,0.0000023243,0.0000023222, -0.0000023195,0.0000023173,0.0000023157,0.0000023152,0.0000023152, -0.0000023150,0.0000023141,0.0000023126,0.0000023107,0.0000023104, -0.0000023115,0.0000023128,0.0000023145,0.0000023161,0.0000023166, -0.0000023163,0.0000023158,0.0000023146,0.0000023132,0.0000023124, -0.0000023115,0.0000023094,0.0000023070,0.0000023053,0.0000023042, -0.0000023029,0.0000023027,0.0000023039,0.0000023050,0.0000023052, -0.0000023049,0.0000023047,0.0000023054,0.0000023063,0.0000023053, -0.0000023026,0.0000022986,0.0000022947,0.0000022913,0.0000022881, -0.0000022853,0.0000022831,0.0000022825,0.0000022831,0.0000022837, -0.0000022842,0.0000022840,0.0000022838,0.0000022836,0.0000022816, -0.0000022796,0.0000022783,0.0000022771,0.0000022759,0.0000022754, -0.0000022759,0.0000022770,0.0000022784,0.0000022792,0.0000022799, -0.0000022811,0.0000022838,0.0000022865,0.0000022895,0.0000022945, -0.0000023015,0.0000023104,0.0000023191,0.0000023251,0.0000023280, -0.0000023278,0.0000023259,0.0000023227,0.0000023205,0.0000023191, -0.0000023195,0.0000023214,0.0000023247,0.0000023275,0.0000023287, -0.0000023289,0.0000023281,0.0000023271,0.0000023265,0.0000023273, -0.0000023308,0.0000023378,0.0000023480,0.0000023584,0.0000023655, -0.0000023664,0.0000023638,0.0000023588,0.0000023539,0.0000023502, -0.0000023478,0.0000023455,0.0000023423,0.0000023372,0.0000023300, -0.0000023214,0.0000023134,0.0000023083,0.0000023065,0.0000023073, -0.0000023096,0.0000023130,0.0000023169,0.0000023203,0.0000023230, -0.0000023244,0.0000023248,0.0000023246,0.0000023241,0.0000023235, -0.0000023227,0.0000023218,0.0000023215,0.0000023221,0.0000023237, -0.0000023258,0.0000023268,0.0000023274,0.0000023269,0.0000023246, -0.0000023209,0.0000023166,0.0000023117,0.0000023065,0.0000023012, -0.0000022961,0.0000022910,0.0000022865,0.0000022829,0.0000022801, -0.0000022778,0.0000022757,0.0000022732,0.0000022700,0.0000022666, -0.0000022633,0.0000022605,0.0000022582,0.0000022561,0.0000022544, -0.0000022536,0.0000022536,0.0000022538,0.0000022538,0.0000022534, -0.0000022527,0.0000022516,0.0000022502,0.0000022482,0.0000022458, -0.0000022429,0.0000022404,0.0000022387,0.0000022379,0.0000022380, -0.0000022392,0.0000022412,0.0000022434,0.0000022457,0.0000022477, -0.0000022493,0.0000022509,0.0000022516,0.0000022519,0.0000022516, -0.0000022511,0.0000022501,0.0000022490,0.0000022486,0.0000022488, -0.0000022493,0.0000022508,0.0000022532,0.0000022559,0.0000022583, -0.0000022601,0.0000022615,0.0000022625,0.0000022633,0.0000022644, -0.0000022660,0.0000022676,0.0000022690,0.0000022703,0.0000022721, -0.0000022747,0.0000022778,0.0000022817,0.0000022859,0.0000022905, -0.0000022957,0.0000023007,0.0000023051,0.0000023092,0.0000023132, -0.0000023168,0.0000023200,0.0000023226,0.0000023247,0.0000023259, -0.0000023261,0.0000023256,0.0000023244,0.0000023232,0.0000023228, -0.0000023231,0.0000023237,0.0000023239,0.0000023236,0.0000023233, -0.0000023227,0.0000023218,0.0000023200,0.0000023194,0.0000023185, -0.0000023180,0.0000023177,0.0000023173,0.0000023171,0.0000023171, -0.0000023177,0.0000023184,0.0000023191,0.0000023194,0.0000023194, -0.0000023192,0.0000023191,0.0000023189,0.0000023184,0.0000023174, -0.0000023164,0.0000023159,0.0000023151,0.0000023145,0.0000023126, -0.0000023103,0.0000023074,0.0000023040,0.0000023013,0.0000022983, -0.0000022955,0.0000022929,0.0000022902,0.0000022879,0.0000022869, -0.0000022881,0.0000022910,0.0000022934,0.0000022944,0.0000022939, -0.0000022927,0.0000022901,0.0000022870,0.0000022843,0.0000022833, -0.0000022846,0.0000022867,0.0000022882,0.0000022888,0.0000022881, -0.0000022858,0.0000022834,0.0000022810,0.0000022783,0.0000022757, -0.0000022721,0.0000022681,0.0000022647,0.0000022609,0.0000022553, -0.0000022494,0.0000022444,0.0000022399,0.0000022367,0.0000022345, -0.0000022341,0.0000022347,0.0000022357,0.0000022391,0.0000022459, -0.0000022537,0.0000022621,0.0000022694,0.0000022733,0.0000022736, -0.0000022714,0.0000022679,0.0000022646,0.0000022622,0.0000022608, -0.0000022610,0.0000022636,0.0000022691,0.0000022758,0.0000022826, -0.0000022892,0.0000022952,0.0000023001,0.0000023039,0.0000023071, -0.0000023091,0.0000023090,0.0000023071,0.0000023043,0.0000023004, -0.0000022958,0.0000022910,0.0000022872,0.0000022853,0.0000022846, -0.0000022849,0.0000022864,0.0000022913,0.0000022995,0.0000023086, -0.0000023179,0.0000023234,0.0000023231,0.0000023176,0.0000023104, -0.0000023060,0.0000023042,0.0000022984,0.0000022896,0.0000022882, -0.0000022940,0.0000022944,0.0000022894,0.0000022873,0.0000022835, -0.0000022755,0.0000022704,0.0000022696,0.0000022695,0.0000022727, -0.0000022833,0.0000022937,0.0000023026,0.0000023234,0.0000023480, -0.0000023545,0.0000023549,0.0000023500,0.0000023287,0.0000023171, -0.0000023141,0.0000023117,0.0000023060,0.0000023014,0.0000022988, -0.0000023013,0.0000023100,0.0000023214,0.0000023287,0.0000023294, -0.0000023271,0.0000023252,0.0000023224,0.0000023202,0.0000023190, -0.0000023209,0.0000023250,0.0000023275,0.0000023287,0.0000023295, -0.0000023297,0.0000023259,0.0000023164,0.0000023030,0.0000022907, -0.0000022822,0.0000022775,0.0000022761,0.0000022784,0.0000022833, -0.0000022858,0.0000022854,0.0000022824,0.0000022809,0.0000022817, -0.0000022842,0.0000022894,0.0000022944,0.0000022973,0.0000022967, -0.0000022889,0.0000022798,0.0000022789,0.0000022798,0.0000022749, -0.0000022700,0.0000022656,0.0000022454,0.0000022222,0.0000022218, -0.0000022378,0.0000022545,0.0000022601,0.0000022604,0.0000022567, -0.0000022342,0.0000022047,0.0000021999,0.0000022162,0.0000022351, -0.0000022477,0.0000022550,0.0000022604,0.0000022695,0.0000022806, -0.0000022875,0.0000022881,0.0000022833,0.0000022785,0.0000022769, -0.0000022750,0.0000022686,0.0000022608,0.0000022603,0.0000022706, -0.0000022817,0.0000022834,0.0000022746,0.0000022586,0.0000022446, -0.0000022325,0.0000022244,0.0000022245,0.0000022277,0.0000022302, -0.0000022331,0.0000022336,0.0000022319,0.0000022301,0.0000022256, -0.0000022190,0.0000022161,0.0000022205,0.0000022331,0.0000022466, -0.0000022590,0.0000022702,0.0000022773,0.0000022795,0.0000022794, -0.0000022789,0.0000022764,0.0000022746,0.0000022763,0.0000022799, -0.0000022814,0.0000022815,0.0000022829,0.0000022853,0.0000022856, -0.0000022838,0.0000022823,0.0000022833,0.0000022872,0.0000022908, -0.0000022938,0.0000022976,0.0000023020,0.0000023060,0.0000023092, -0.0000023124,0.0000023161,0.0000023198,0.0000023229,0.0000023247, -0.0000023255,0.0000023253,0.0000023239,0.0000023213,0.0000023171, -0.0000023120,0.0000023087,0.0000023081,0.0000023084,0.0000023093, -0.0000023116,0.0000023154,0.0000023200,0.0000023247,0.0000023285, -0.0000023312,0.0000023326,0.0000023334,0.0000023345,0.0000023356, -0.0000023357,0.0000023346,0.0000023315,0.0000023267,0.0000023204, -0.0000023122,0.0000023039,0.0000022971,0.0000022913,0.0000022869, -0.0000022864,0.0000022915,0.0000022988,0.0000023059,0.0000023124, -0.0000023194,0.0000023271,0.0000023349,0.0000023411,0.0000023433, -0.0000023424,0.0000023382,0.0000023331,0.0000023302,0.0000023295, -0.0000023306,0.0000023346,0.0000023387,0.0000023416,0.0000023431, -0.0000023430,0.0000023407,0.0000023370,0.0000023337,0.0000023324, -0.0000023334,0.0000023367,0.0000023421,0.0000023502,0.0000023595, -0.0000023702,0.0000023822,0.0000023911,0.0000023932,0.0000023925, -0.0000023929,0.0000023967,0.0000024006,0.0000024068,0.0000024138, -0.0000024119,0.0000024023,0.0000023970,0.0000023919,0.0000023868, -0.0000023845,0.0000023839,0.0000023847,0.0000023871,0.0000023893, -0.0000023917,0.0000023940,0.0000023958,0.0000023978,0.0000024001, -0.0000024020,0.0000024032,0.0000024034,0.0000024026,0.0000024009, -0.0000023987,0.0000023967,0.0000023946,0.0000023917,0.0000023881, -0.0000023843,0.0000023811,0.0000023782,0.0000023750,0.0000023714, -0.0000023679,0.0000023649,0.0000023623,0.0000023601,0.0000023578, -0.0000023557,0.0000023534,0.0000023509,0.0000023487,0.0000023468, -0.0000023453,0.0000023436,0.0000023423,0.0000023408,0.0000023390, -0.0000023368,0.0000023339,0.0000023299,0.0000023257,0.0000023220, -0.0000023194,0.0000023177,0.0000023167,0.0000023159,0.0000023144, -0.0000023119,0.0000023088,0.0000023055,0.0000023024,0.0000022996, -0.0000022973,0.0000022953,0.0000022936,0.0000022923,0.0000022911, -0.0000022898,0.0000022885,0.0000022873,0.0000022859,0.0000022835, -0.0000022803,0.0000022768,0.0000022736,0.0000022704,0.0000022667, -0.0000022627,0.0000022586,0.0000022547,0.0000022521,0.0000022519, -0.0000022530,0.0000022555,0.0000022587,0.0000022620,0.0000022651, -0.0000022683,0.0000022713,0.0000022739,0.0000022760,0.0000022773, -0.0000022778,0.0000022775,0.0000022762,0.0000022734,0.0000022705, -0.0000022684,0.0000022668,0.0000022656,0.0000022647,0.0000022639, -0.0000022638,0.0000022642,0.0000022647,0.0000022649,0.0000022650, -0.0000022648,0.0000022642,0.0000022632,0.0000022621,0.0000022614, -0.0000022615,0.0000022623,0.0000022631,0.0000022641,0.0000022657, -0.0000022675,0.0000022695,0.0000022716,0.0000022742,0.0000022778, -0.0000022827,0.0000022895,0.0000022980,0.0000023070,0.0000023156, -0.0000023228,0.0000023286,0.0000023333,0.0000023367,0.0000023389, -0.0000023402,0.0000023417,0.0000023439,0.0000023463,0.0000023479, -0.0000023491,0.0000023499,0.0000023499,0.0000023488,0.0000023468, -0.0000023433,0.0000023401,0.0000023393,0.0000023406,0.0000023436, -0.0000023464,0.0000023451,0.0000023338,0.0000023110,0.0000022982, -0.0000022986,0.0000023018,0.0000023138,0.0000023352,0.0000023508, -0.0000023535,0.0000023446,0.0000023330,0.0000023359,0.0000023487, -0.0000023583,0.0000023623,0.0000023601,0.0000023501,0.0000023362, -0.0000023227,0.0000023101,0.0000022983,0.0000022902,0.0000022859, -0.0000022826,0.0000022800,0.0000022815,0.0000022903,0.0000023041, -0.0000023177,0.0000023275,0.0000023322,0.0000023326,0.0000023306, -0.0000023284,0.0000023270,0.0000023260,0.0000023246,0.0000023231, -0.0000023219,0.0000023209,0.0000023205,0.0000023211,0.0000023225, -0.0000023228,0.0000023186,0.0000023063,0.0000022840,0.0000022548, -0.0000022255,0.0000022020,0.0000021871,0.0000021801,0.0000021778, -0.0000021746,0.0000021709,0.0000021676,0.0000021686,0.0000021766, -0.0000021930,0.0000022168,0.0000022427,0.0000022653,0.0000022823, -0.0000022939,0.0000023011,0.0000023037,0.0000023062,0.0000023072, -0.0000023023,0.0000022887,0.0000022698,0.0000022499,0.0000022327, -0.0000022232,0.0000022205,0.0000022145,0.0000022020,0.0000021892, -0.0000021773,0.0000021656,0.0000021587,0.0000021577,0.0000021570, -0.0000021524,0.0000021450,0.0000021403,0.0000021397,0.0000021414, -0.0000021496,0.0000021686,0.0000021922,0.0000022106,0.0000022232, -0.0000022353,0.0000022482,0.0000022599,0.0000022683,0.0000022713, -0.0000022700,0.0000022624,0.0000022494,0.0000022359,0.0000022266, -0.0000022201,0.0000022125,0.0000022040,0.0000021970,0.0000021902, -0.0000021807,0.0000021689,0.0000021567,0.0000021453,0.0000021360, -0.0000021313,0.0000021307,0.0000021331,0.0000021384,0.0000021436, -0.0000021458,0.0000021476,0.0000021538,0.0000021626,0.0000021702, -0.0000021760,0.0000021798,0.0000021817,0.0000021852,0.0000021911, -0.0000021983,0.0000022046,0.0000022085,0.0000022091,0.0000022062, -0.0000021997,0.0000021899,0.0000021786,0.0000021675,0.0000021572, -0.0000021472,0.0000021381,0.0000021318,0.0000021293,0.0000021280, -0.0000021287,0.0000021301,0.0000021320,0.0000021342,0.0000021366, -0.0000021395,0.0000021426,0.0000021444,0.0000021448,0.0000021448, -0.0000021442,0.0000021432,0.0000021428,0.0000021438,0.0000021467, -0.0000021512,0.0000021565,0.0000021610,0.0000021639,0.0000021651, -0.0000021652,0.0000021647,0.0000021628,0.0000021581,0.0000021489, -0.0000021343,0.0000021156,0.0000020971,0.0000020853,0.0000020826, -0.0000020849,0.0000020880,0.0000020904,0.0000020963,0.0000021126, -0.0000021362,0.0000021553,0.0000021633,0.0000021665,0.0000021740, -0.0000021880,0.0000022008,0.0000022056,0.0000022056,0.0000022062, -0.0000022103,0.0000022185,0.0000022322,0.0000022503,0.0000022693, -0.0000022874,0.0000023053,0.0000023226,0.0000023363,0.0000023434, -0.0000023462,0.0000023515,0.0000023644,0.0000023815,0.0000023943, -0.0000024003,0.0000024078,0.0000024258,0.0000024517,0.0000024740, -0.0000024844,0.0000024853,0.0000024835,0.0000024830,0.0000024859, -0.0000024899,0.0000024880,0.0000024736,0.0000024540,0.0000024393, -0.0000024303,0.0000024228,0.0000024186,0.0000024221,0.0000024351, -0.0000024524,0.0000024678,0.0000024785,0.0000024814,0.0000024748, -0.0000024619,0.0000024485,0.0000024361,0.0000024262,0.0000024211, -0.0000024194,0.0000024175,0.0000024136,0.0000024088,0.0000024050, -0.0000024027,0.0000024008,0.0000023972,0.0000023918,0.0000023863, -0.0000023832,0.0000023833,0.0000023858,0.0000023892,0.0000023920, -0.0000023941,0.0000023946,0.0000023940,0.0000023929,0.0000023920, -0.0000023910,0.0000023890,0.0000023859,0.0000023827,0.0000023806, -0.0000023799,0.0000023808,0.0000023835,0.0000023871,0.0000023908, -0.0000023939,0.0000023954,0.0000023957,0.0000023953,0.0000023941, -0.0000023922,0.0000023894,0.0000023863,0.0000023840,0.0000023827, -0.0000023813,0.0000023792,0.0000023753,0.0000023691,0.0000023609, -0.0000023513,0.0000023424,0.0000023355,0.0000023300,0.0000023249, -0.0000023197,0.0000023146,0.0000023107,0.0000023086,0.0000023076, -0.0000023071,0.0000023074,0.0000023090,0.0000023120,0.0000023152, -0.0000023183,0.0000023210,0.0000023242,0.0000023277,0.0000023333, -0.0000023399,0.0000023479,0.0000023562,0.0000023633,0.0000023674, -0.0000023686,0.0000023678,0.0000023641,0.0000023576,0.0000023490, -0.0000023386,0.0000023278,0.0000023182,0.0000023099,0.0000023031, -0.0000022977,0.0000022936,0.0000022902,0.0000022867,0.0000022826, -0.0000022775,0.0000022720,0.0000022668,0.0000022631,0.0000022625, -0.0000022649,0.0000022700,0.0000022755,0.0000022810,0.0000022858, -0.0000022889,0.0000022905,0.0000022907,0.0000022893,0.0000022857, -0.0000022800,0.0000022735,0.0000022682,0.0000022675,0.0000022708, -0.0000022736,0.0000022752,0.0000022667,0.0000022466,0.0000022230, -0.0000022069,0.0000022000,0.0000021964,0.0000021918,0.0000021863, -0.0000021831,0.0000021833,0.0000021834,0.0000021799,0.0000021725, -0.0000021629,0.0000021544,0.0000021496,0.0000021452,0.0000021422, -0.0000021406,0.0000021400,0.0000021411,0.0000021457,0.0000021529, -0.0000021592,0.0000021640,0.0000021688,0.0000021694,0.0000021684, -0.0000021668,0.0000021657,0.0000021652,0.0000021647,0.0000021653, -0.0000021647,0.0000021640,0.0000021629,0.0000021610,0.0000021590, -0.0000021568,0.0000021541,0.0000021509,0.0000021476,0.0000021444, -0.0000021429,0.0000021418,0.0000021395,0.0000021365,0.0000021344, -0.0000021330,0.0000021328,0.0000021328,0.0000021318,0.0000021295, -0.0000021269,0.0000021244,0.0000021218,0.0000021191,0.0000021166, -0.0000021144,0.0000021126,0.0000021115,0.0000021111,0.0000021112, -0.0000021115,0.0000021121,0.0000021126,0.0000021136,0.0000021162, -0.0000021191,0.0000021210,0.0000021219,0.0000021222,0.0000021215, -0.0000021208,0.0000021205,0.0000021203,0.0000021202,0.0000021207, -0.0000021219,0.0000021234,0.0000021248,0.0000021259,0.0000021261, -0.0000021259,0.0000021250,0.0000021250,0.0000021254,0.0000021255, -0.0000021249,0.0000021234,0.0000021212,0.0000021190,0.0000021172, -0.0000021169,0.0000021168,0.0000021161,0.0000021152,0.0000021140, -0.0000021120,0.0000021103,0.0000021090,0.0000021084,0.0000021094, -0.0000021129,0.0000021191,0.0000021282,0.0000021392,0.0000021497, -0.0000021571,0.0000021616,0.0000021643,0.0000021658,0.0000021658, -0.0000021636,0.0000021596,0.0000021541,0.0000021476,0.0000021416, -0.0000021369,0.0000021346,0.0000021339,0.0000021334,0.0000021318, -0.0000021279,0.0000021214,0.0000021145,0.0000021106,0.0000021104, -0.0000021133,0.0000021166,0.0000021189,0.0000021227,0.0000021285, -0.0000021343,0.0000021397,0.0000021464,0.0000021548,0.0000021612, -0.0000021628,0.0000021615,0.0000021587,0.0000021556,0.0000021525, -0.0000021506,0.0000021519,0.0000021587,0.0000021661,0.0000021699, -0.0000021721,0.0000021732,0.0000021727,0.0000021667,0.0000021577, -0.0000021556,0.0000021588,0.0000021609,0.0000021599,0.0000021581, -0.0000021558,0.0000021519,0.0000021467,0.0000021407,0.0000021342, -0.0000021290,0.0000021273,0.0000021284,0.0000021319,0.0000021361, -0.0000021396,0.0000021425,0.0000021458,0.0000021495,0.0000021516, -0.0000021495,0.0000021412,0.0000021344,0.0000021335,0.0000021324, -0.0000021273,0.0000021238,0.0000021282,0.0000021387,0.0000021467, -0.0000021502,0.0000021517,0.0000021528,0.0000021536,0.0000021550, -0.0000021573,0.0000021605,0.0000021645,0.0000021686,0.0000021719, -0.0000021745,0.0000021762,0.0000021766,0.0000021760,0.0000021752, -0.0000021748,0.0000021748,0.0000021753,0.0000021771,0.0000021805, -0.0000021844,0.0000021873,0.0000021893,0.0000021909,0.0000021918, -0.0000021912,0.0000021888,0.0000021845,0.0000021778,0.0000021691, -0.0000021599,0.0000021516,0.0000021458,0.0000021435,0.0000021436, -0.0000021451,0.0000021467,0.0000021464,0.0000021448,0.0000021426, -0.0000021406,0.0000021376,0.0000021334,0.0000021304,0.0000021303, -0.0000021337,0.0000021369,0.0000021319,0.0000021157,0.0000021005, -0.0000020944,0.0000020989,0.0000021248,0.0000021612,0.0000021853, -0.0000021970,0.0000022040,0.0000022096,0.0000022158,0.0000022210, -0.0000022222,0.0000022207,0.0000022167,0.0000022115,0.0000022061, -0.0000022018,0.0000022004,0.0000022010,0.0000022036,0.0000022077, -0.0000022133,0.0000022193,0.0000022248,0.0000022286,0.0000022302, -0.0000022300,0.0000022262,0.0000022133,0.0000021912,0.0000021685, -0.0000021545,0.0000021502,0.0000021499,0.0000021478,0.0000021459, -0.0000021502,0.0000021663,0.0000021855,0.0000021989,0.0000022081, -0.0000022172,0.0000022269,0.0000022351,0.0000022400,0.0000022413, -0.0000022385,0.0000022301,0.0000022184,0.0000022085,0.0000022056, -0.0000022082,0.0000022122,0.0000022002,0.0000021767,0.0000021693, -0.0000021785,0.0000021896,0.0000022065,0.0000022354,0.0000022582, -0.0000022606,0.0000022537,0.0000022525,0.0000022553,0.0000022606, -0.0000022675,0.0000022749,0.0000022792,0.0000022798,0.0000022792, -0.0000022815,0.0000022873,0.0000022918,0.0000022922,0.0000022920, -0.0000022958,0.0000023030,0.0000023090,0.0000023103,0.0000023092, -0.0000023080,0.0000023079,0.0000023093,0.0000023115,0.0000023137, -0.0000023155,0.0000023169,0.0000023170,0.0000023160,0.0000023136, -0.0000023104,0.0000023074,0.0000023054,0.0000023034,0.0000023009, -0.0000022982,0.0000022960,0.0000022941,0.0000022920,0.0000022898, -0.0000022883,0.0000022883,0.0000022896,0.0000022920,0.0000022949, -0.0000022980,0.0000023010,0.0000023040,0.0000023073,0.0000023113, -0.0000023150,0.0000023180,0.0000023207,0.0000023235,0.0000023255, -0.0000023262,0.0000023260,0.0000023261,0.0000023267,0.0000023262, -0.0000023242,0.0000023236,0.0000023232,0.0000023223,0.0000023231, -0.0000023259,0.0000023278,0.0000023290,0.0000023311,0.0000023320, -0.0000023302,0.0000023255,0.0000023208,0.0000023180,0.0000023163, -0.0000023147,0.0000023129,0.0000023112,0.0000023107,0.0000023118, -0.0000023126,0.0000023117,0.0000023099,0.0000023080,0.0000023069, -0.0000023073,0.0000023082,0.0000023093,0.0000023100,0.0000023094, -0.0000023072,0.0000023046,0.0000023020,0.0000022985,0.0000022951, -0.0000022929,0.0000022910,0.0000022885,0.0000022858,0.0000022838, -0.0000022830,0.0000022836,0.0000022850,0.0000022864,0.0000022882, -0.0000022901,0.0000022913,0.0000022929,0.0000022966,0.0000023019, -0.0000023046,0.0000023037,0.0000023017,0.0000022982,0.0000022940, -0.0000022884,0.0000022825,0.0000022784,0.0000022768,0.0000022768, -0.0000022781,0.0000022802,0.0000022820,0.0000022832,0.0000022830, -0.0000022825,0.0000022830,0.0000022835,0.0000022834,0.0000022828, -0.0000022836,0.0000022856,0.0000022879,0.0000022898,0.0000022906, -0.0000022906,0.0000022901,0.0000022890,0.0000022883,0.0000022881, -0.0000022880,0.0000022900,0.0000022943,0.0000022996,0.0000023059, -0.0000023124,0.0000023176,0.0000023203,0.0000023206,0.0000023201, -0.0000023189,0.0000023175,0.0000023179,0.0000023199,0.0000023235, -0.0000023267,0.0000023282,0.0000023279,0.0000023265,0.0000023250, -0.0000023238,0.0000023241,0.0000023268,0.0000023328,0.0000023413, -0.0000023507,0.0000023585,0.0000023625,0.0000023618,0.0000023588, -0.0000023544,0.0000023497,0.0000023456,0.0000023424,0.0000023395, -0.0000023358,0.0000023301,0.0000023223,0.0000023145,0.0000023083, -0.0000023065,0.0000023061,0.0000023079,0.0000023113,0.0000023150, -0.0000023183,0.0000023211,0.0000023230,0.0000023241,0.0000023241, -0.0000023239,0.0000023230,0.0000023218,0.0000023209,0.0000023207, -0.0000023216,0.0000023230,0.0000023244,0.0000023254,0.0000023260, -0.0000023247,0.0000023227,0.0000023195,0.0000023153,0.0000023105, -0.0000023053,0.0000023000,0.0000022946,0.0000022896,0.0000022853, -0.0000022815,0.0000022781,0.0000022754,0.0000022725,0.0000022690, -0.0000022654,0.0000022620,0.0000022595,0.0000022577,0.0000022559, -0.0000022542,0.0000022529,0.0000022519,0.0000022510,0.0000022493, -0.0000022468,0.0000022441,0.0000022410,0.0000022376,0.0000022347, -0.0000022323,0.0000022310,0.0000022306,0.0000022312,0.0000022336, -0.0000022360,0.0000022402,0.0000022443,0.0000022483,0.0000022519, -0.0000022545,0.0000022562,0.0000022569,0.0000022565,0.0000022553, -0.0000022535,0.0000022510,0.0000022490,0.0000022463,0.0000022443, -0.0000022433,0.0000022429,0.0000022441,0.0000022465,0.0000022496, -0.0000022526,0.0000022549,0.0000022563,0.0000022570,0.0000022572, -0.0000022575,0.0000022582,0.0000022592,0.0000022605,0.0000022618, -0.0000022632,0.0000022653,0.0000022677,0.0000022709,0.0000022745, -0.0000022782,0.0000022824,0.0000022867,0.0000022901,0.0000022927, -0.0000022950,0.0000022974,0.0000022996,0.0000023023,0.0000023058, -0.0000023099,0.0000023140,0.0000023177,0.0000023198,0.0000023202, -0.0000023196,0.0000023185,0.0000023174,0.0000023164,0.0000023158, -0.0000023156,0.0000023154,0.0000023148,0.0000023143,0.0000023143, -0.0000023147,0.0000023163,0.0000023174,0.0000023179,0.0000023186, -0.0000023189,0.0000023197,0.0000023207,0.0000023216,0.0000023219, -0.0000023216,0.0000023209,0.0000023202,0.0000023195,0.0000023188, -0.0000023175,0.0000023159,0.0000023146,0.0000023133,0.0000023119, -0.0000023101,0.0000023076,0.0000023046,0.0000023013,0.0000022980, -0.0000022948,0.0000022922,0.0000022900,0.0000022877,0.0000022850, -0.0000022840,0.0000022861,0.0000022899,0.0000022941,0.0000022972, -0.0000022984,0.0000022987,0.0000022979,0.0000022953,0.0000022931, -0.0000022924,0.0000022930,0.0000022948,0.0000022966,0.0000022979, -0.0000022977,0.0000022956,0.0000022923,0.0000022890,0.0000022863, -0.0000022834,0.0000022808,0.0000022788,0.0000022774,0.0000022763, -0.0000022747,0.0000022717,0.0000022677,0.0000022625,0.0000022568, -0.0000022505,0.0000022445,0.0000022403,0.0000022377,0.0000022372, -0.0000022397,0.0000022426,0.0000022455,0.0000022504,0.0000022565, -0.0000022616,0.0000022640,0.0000022636,0.0000022612,0.0000022572, -0.0000022526,0.0000022486,0.0000022475,0.0000022496,0.0000022542, -0.0000022589,0.0000022640,0.0000022690,0.0000022737,0.0000022787, -0.0000022834,0.0000022871,0.0000022890,0.0000022892,0.0000022884, -0.0000022865,0.0000022834,0.0000022800,0.0000022770,0.0000022753, -0.0000022744,0.0000022739,0.0000022741,0.0000022772,0.0000022838, -0.0000022920,0.0000023028,0.0000023145,0.0000023225,0.0000023226, -0.0000023159,0.0000023097,0.0000023073,0.0000023026,0.0000022913, -0.0000022851,0.0000022900,0.0000022918,0.0000022889,0.0000022879, -0.0000022853,0.0000022777,0.0000022718,0.0000022712,0.0000022711, -0.0000022713,0.0000022792,0.0000022907,0.0000022979,0.0000023134, -0.0000023385,0.0000023529,0.0000023535,0.0000023532,0.0000023364, -0.0000023182,0.0000023151,0.0000023140,0.0000023103,0.0000023039, -0.0000022992,0.0000022981,0.0000023046,0.0000023169,0.0000023263, -0.0000023266,0.0000023227,0.0000023189,0.0000023147,0.0000023128, -0.0000023133,0.0000023175,0.0000023231,0.0000023259,0.0000023263, -0.0000023261,0.0000023249,0.0000023203,0.0000023097,0.0000022970, -0.0000022874,0.0000022810,0.0000022770,0.0000022762,0.0000022785, -0.0000022823,0.0000022835,0.0000022840,0.0000022840,0.0000022854, -0.0000022870,0.0000022881,0.0000022909,0.0000022950,0.0000022987, -0.0000022995,0.0000022944,0.0000022836,0.0000022798,0.0000022811, -0.0000022771,0.0000022712,0.0000022663,0.0000022466,0.0000022227, -0.0000022219,0.0000022374,0.0000022525,0.0000022569,0.0000022573, -0.0000022520,0.0000022262,0.0000021979,0.0000021983,0.0000022174, -0.0000022352,0.0000022461,0.0000022535,0.0000022603,0.0000022701, -0.0000022797,0.0000022842,0.0000022836,0.0000022797,0.0000022763, -0.0000022748,0.0000022721,0.0000022644,0.0000022557,0.0000022557, -0.0000022665,0.0000022778,0.0000022801,0.0000022725,0.0000022567, -0.0000022415,0.0000022279,0.0000022199,0.0000022213,0.0000022260, -0.0000022311,0.0000022358,0.0000022355,0.0000022324,0.0000022308, -0.0000022278,0.0000022214,0.0000022177,0.0000022198,0.0000022301, -0.0000022436,0.0000022568,0.0000022696,0.0000022778,0.0000022800, -0.0000022802,0.0000022798,0.0000022777,0.0000022752,0.0000022756, -0.0000022787,0.0000022809,0.0000022815,0.0000022825,0.0000022846, -0.0000022856,0.0000022844,0.0000022824,0.0000022824,0.0000022858, -0.0000022902,0.0000022940,0.0000022985,0.0000023036,0.0000023076, -0.0000023106,0.0000023136,0.0000023170,0.0000023207,0.0000023250, -0.0000023289,0.0000023307,0.0000023310,0.0000023301,0.0000023282, -0.0000023251,0.0000023200,0.0000023145,0.0000023113,0.0000023105, -0.0000023098,0.0000023089,0.0000023091,0.0000023115,0.0000023159, -0.0000023212,0.0000023257,0.0000023294,0.0000023324,0.0000023344, -0.0000023362,0.0000023383,0.0000023397,0.0000023390,0.0000023362, -0.0000023314,0.0000023249,0.0000023170,0.0000023092,0.0000023027, -0.0000022976,0.0000022939,0.0000022941,0.0000022984,0.0000023049, -0.0000023119,0.0000023189,0.0000023263,0.0000023338,0.0000023395, -0.0000023421,0.0000023417,0.0000023384,0.0000023326,0.0000023267, -0.0000023231,0.0000023226,0.0000023241,0.0000023290,0.0000023340, -0.0000023383,0.0000023405,0.0000023402,0.0000023367,0.0000023317, -0.0000023278,0.0000023266,0.0000023291,0.0000023340,0.0000023411, -0.0000023497,0.0000023585,0.0000023684,0.0000023802,0.0000023882, -0.0000023898,0.0000023895,0.0000023906,0.0000023939,0.0000023971, -0.0000024039,0.0000024115,0.0000024101,0.0000024012,0.0000023962, -0.0000023915,0.0000023870,0.0000023856,0.0000023843,0.0000023841, -0.0000023856,0.0000023876,0.0000023896,0.0000023918,0.0000023939, -0.0000023959,0.0000023979,0.0000023997,0.0000024013,0.0000024022, -0.0000024024,0.0000024014,0.0000023993,0.0000023966,0.0000023938, -0.0000023908,0.0000023874,0.0000023842,0.0000023812,0.0000023784, -0.0000023755,0.0000023727,0.0000023699,0.0000023670,0.0000023642, -0.0000023618,0.0000023602,0.0000023586,0.0000023564,0.0000023537, -0.0000023505,0.0000023482,0.0000023455,0.0000023424,0.0000023391, -0.0000023357,0.0000023324,0.0000023292,0.0000023258,0.0000023223, -0.0000023192,0.0000023166,0.0000023140,0.0000023118,0.0000023100, -0.0000023083,0.0000023062,0.0000023035,0.0000023007,0.0000022980, -0.0000022955,0.0000022932,0.0000022909,0.0000022892,0.0000022879, -0.0000022868,0.0000022862,0.0000022855,0.0000022846,0.0000022833, -0.0000022818,0.0000022796,0.0000022766,0.0000022730,0.0000022688, -0.0000022643,0.0000022596,0.0000022546,0.0000022496,0.0000022453, -0.0000022427,0.0000022425,0.0000022431,0.0000022444,0.0000022467, -0.0000022491,0.0000022512,0.0000022531,0.0000022546,0.0000022559, -0.0000022569,0.0000022572,0.0000022567,0.0000022560,0.0000022548, -0.0000022522,0.0000022489,0.0000022462,0.0000022446,0.0000022434, -0.0000022428,0.0000022425,0.0000022423,0.0000022423,0.0000022425, -0.0000022428,0.0000022436,0.0000022449,0.0000022457,0.0000022459, -0.0000022458,0.0000022457,0.0000022459,0.0000022468,0.0000022479, -0.0000022489,0.0000022503,0.0000022519,0.0000022534,0.0000022547, -0.0000022557,0.0000022569,0.0000022590,0.0000022622,0.0000022670, -0.0000022741,0.0000022834,0.0000022937,0.0000023042,0.0000023139, -0.0000023216,0.0000023262,0.0000023279,0.0000023282,0.0000023288, -0.0000023305,0.0000023326,0.0000023345,0.0000023364,0.0000023381, -0.0000023387,0.0000023386,0.0000023363,0.0000023331,0.0000023315, -0.0000023324,0.0000023354,0.0000023382,0.0000023406,0.0000023401, -0.0000023272,0.0000023065,0.0000022980,0.0000022984,0.0000023014, -0.0000023149,0.0000023373,0.0000023514,0.0000023510,0.0000023392, -0.0000023313,0.0000023360,0.0000023475,0.0000023544,0.0000023557, -0.0000023503,0.0000023377,0.0000023231,0.0000023115,0.0000023014, -0.0000022924,0.0000022861,0.0000022806,0.0000022751,0.0000022703, -0.0000022693,0.0000022734,0.0000022833,0.0000022962,0.0000023084, -0.0000023172,0.0000023220,0.0000023239,0.0000023243,0.0000023242, -0.0000023235,0.0000023223,0.0000023209,0.0000023193,0.0000023176, -0.0000023159,0.0000023131,0.0000023064,0.0000022925,0.0000022699, -0.0000022421,0.0000022168,0.0000022002,0.0000021923,0.0000021893, -0.0000021903,0.0000021921,0.0000021916,0.0000021886,0.0000021840, -0.0000021776,0.0000021711,0.0000021690,0.0000021711,0.0000021803, -0.0000021956,0.0000022145,0.0000022341,0.0000022516,0.0000022663, -0.0000022804,0.0000022957,0.0000023072,0.0000023113,0.0000023051, -0.0000022866,0.0000022629,0.0000022411,0.0000022272,0.0000022224, -0.0000022184,0.0000022076,0.0000021940,0.0000021826,0.0000021721, -0.0000021639,0.0000021614,0.0000021611,0.0000021586,0.0000021519, -0.0000021461,0.0000021451,0.0000021450,0.0000021476,0.0000021593, -0.0000021809,0.0000022007,0.0000022116,0.0000022204,0.0000022337, -0.0000022487,0.0000022602,0.0000022644,0.0000022625,0.0000022525, -0.0000022362,0.0000022198,0.0000022081,0.0000022000,0.0000021921, -0.0000021843,0.0000021782,0.0000021722,0.0000021631,0.0000021522, -0.0000021418,0.0000021328,0.0000021273,0.0000021267,0.0000021289, -0.0000021329,0.0000021374,0.0000021409,0.0000021443,0.0000021518, -0.0000021622,0.0000021709,0.0000021770,0.0000021810,0.0000021829, -0.0000021858,0.0000021927,0.0000022015,0.0000022089,0.0000022122, -0.0000022118,0.0000022076,0.0000021991,0.0000021879,0.0000021760, -0.0000021652,0.0000021558,0.0000021470,0.0000021395,0.0000021347, -0.0000021321,0.0000021319,0.0000021329,0.0000021346,0.0000021366, -0.0000021385,0.0000021398,0.0000021411,0.0000021426,0.0000021441, -0.0000021447,0.0000021445,0.0000021438,0.0000021429,0.0000021418, -0.0000021412,0.0000021406,0.0000021400,0.0000021413,0.0000021456, -0.0000021515,0.0000021573,0.0000021617,0.0000021645,0.0000021652, -0.0000021653,0.0000021635,0.0000021588,0.0000021488,0.0000021323, -0.0000021122,0.0000020950,0.0000020860,0.0000020851,0.0000020878, -0.0000020905,0.0000020922,0.0000020986,0.0000021150,0.0000021371, -0.0000021536,0.0000021605,0.0000021645,0.0000021732,0.0000021859, -0.0000021959,0.0000021996,0.0000022010,0.0000022047,0.0000022114, -0.0000022216,0.0000022366,0.0000022551,0.0000022739,0.0000022924, -0.0000023112,0.0000023289,0.0000023415,0.0000023462,0.0000023466, -0.0000023505,0.0000023623,0.0000023781,0.0000023896,0.0000023964, -0.0000024074,0.0000024291,0.0000024559,0.0000024757,0.0000024828, -0.0000024820,0.0000024799,0.0000024804,0.0000024851,0.0000024888, -0.0000024826,0.0000024656,0.0000024461,0.0000024321,0.0000024232, -0.0000024172,0.0000024166,0.0000024240,0.0000024395,0.0000024565, -0.0000024709,0.0000024785,0.0000024782,0.0000024694,0.0000024561, -0.0000024427,0.0000024303,0.0000024217,0.0000024180,0.0000024171, -0.0000024157,0.0000024149,0.0000024128,0.0000024105,0.0000024085, -0.0000024053,0.0000024000,0.0000023940,0.0000023902,0.0000023897, -0.0000023916,0.0000023947,0.0000023973,0.0000023992,0.0000023997, -0.0000023990,0.0000023980,0.0000023970,0.0000023957,0.0000023940, -0.0000023914,0.0000023884,0.0000023861,0.0000023851,0.0000023855, -0.0000023879,0.0000023914,0.0000023955,0.0000023990,0.0000024009, -0.0000024014,0.0000024008,0.0000023996,0.0000023980,0.0000023960, -0.0000023936,0.0000023916,0.0000023909,0.0000023911,0.0000023909, -0.0000023890,0.0000023848,0.0000023784,0.0000023714,0.0000023647, -0.0000023589,0.0000023537,0.0000023481,0.0000023418,0.0000023354, -0.0000023298,0.0000023253,0.0000023219,0.0000023189,0.0000023168, -0.0000023162,0.0000023173,0.0000023195,0.0000023219,0.0000023243, -0.0000023261,0.0000023277,0.0000023300,0.0000023310,0.0000023333, -0.0000023366,0.0000023404,0.0000023427,0.0000023429,0.0000023416, -0.0000023391,0.0000023350,0.0000023295,0.0000023227,0.0000023154, -0.0000023086,0.0000023028,0.0000022977,0.0000022933,0.0000022896, -0.0000022864,0.0000022829,0.0000022786,0.0000022734,0.0000022675, -0.0000022618,0.0000022571,0.0000022551,0.0000022561,0.0000022600, -0.0000022655,0.0000022722,0.0000022790,0.0000022843,0.0000022873, -0.0000022880,0.0000022873,0.0000022847,0.0000022801,0.0000022742, -0.0000022682,0.0000022661,0.0000022675,0.0000022713,0.0000022763, -0.0000022784,0.0000022750,0.0000022604,0.0000022361,0.0000022137, -0.0000022010,0.0000021959,0.0000021915,0.0000021863,0.0000021836, -0.0000021835,0.0000021845,0.0000021851,0.0000021810,0.0000021715, -0.0000021599,0.0000021496,0.0000021427,0.0000021393,0.0000021353, -0.0000021335,0.0000021337,0.0000021383,0.0000021446,0.0000021517, -0.0000021600,0.0000021673,0.0000021714,0.0000021753,0.0000021785, -0.0000021807,0.0000021815,0.0000021808,0.0000021791,0.0000021773, -0.0000021752,0.0000021724,0.0000021695,0.0000021670,0.0000021650, -0.0000021634,0.0000021618,0.0000021600,0.0000021597,0.0000021601, -0.0000021599,0.0000021595,0.0000021591,0.0000021585,0.0000021584, -0.0000021589,0.0000021585,0.0000021560,0.0000021527,0.0000021499, -0.0000021470,0.0000021441,0.0000021417,0.0000021393,0.0000021370, -0.0000021351,0.0000021334,0.0000021324,0.0000021319,0.0000021307, -0.0000021285,0.0000021265,0.0000021254,0.0000021251,0.0000021245, -0.0000021234,0.0000021226,0.0000021216,0.0000021207,0.0000021201, -0.0000021200,0.0000021196,0.0000021193,0.0000021198,0.0000021214, -0.0000021231,0.0000021244,0.0000021254,0.0000021261,0.0000021255, -0.0000021248,0.0000021249,0.0000021249,0.0000021246,0.0000021234, -0.0000021213,0.0000021188,0.0000021166,0.0000021150,0.0000021148, -0.0000021147,0.0000021147,0.0000021143,0.0000021131,0.0000021114, -0.0000021097,0.0000021080,0.0000021068,0.0000021067,0.0000021083, -0.0000021118,0.0000021183,0.0000021272,0.0000021372,0.0000021458, -0.0000021520,0.0000021564,0.0000021596,0.0000021609,0.0000021601, -0.0000021574,0.0000021526,0.0000021462,0.0000021394,0.0000021336, -0.0000021301,0.0000021284,0.0000021284,0.0000021284,0.0000021261, -0.0000021210,0.0000021145,0.0000021097,0.0000021083,0.0000021105, -0.0000021142,0.0000021177,0.0000021214,0.0000021264,0.0000021326, -0.0000021388,0.0000021457,0.0000021530,0.0000021580,0.0000021586, -0.0000021563,0.0000021524,0.0000021485,0.0000021451,0.0000021433, -0.0000021459,0.0000021549,0.0000021635,0.0000021684,0.0000021712, -0.0000021721,0.0000021695,0.0000021606,0.0000021536,0.0000021546, -0.0000021583,0.0000021591,0.0000021576,0.0000021551,0.0000021512, -0.0000021459,0.0000021404,0.0000021342,0.0000021278,0.0000021237, -0.0000021229,0.0000021239,0.0000021271,0.0000021313,0.0000021352, -0.0000021388,0.0000021429,0.0000021470,0.0000021496,0.0000021479, -0.0000021397,0.0000021326,0.0000021315,0.0000021309,0.0000021264, -0.0000021220,0.0000021241,0.0000021338,0.0000021432,0.0000021472, -0.0000021477,0.0000021466,0.0000021454,0.0000021457,0.0000021468, -0.0000021487,0.0000021514,0.0000021546,0.0000021576,0.0000021603, -0.0000021626,0.0000021640,0.0000021643,0.0000021641,0.0000021642, -0.0000021652,0.0000021674,0.0000021702,0.0000021737,0.0000021775, -0.0000021803,0.0000021818,0.0000021833,0.0000021846,0.0000021847, -0.0000021833,0.0000021802,0.0000021747,0.0000021670,0.0000021584, -0.0000021503,0.0000021444,0.0000021412,0.0000021403,0.0000021409, -0.0000021422,0.0000021430,0.0000021432,0.0000021430,0.0000021430, -0.0000021424,0.0000021391,0.0000021335,0.0000021293,0.0000021292, -0.0000021331,0.0000021344,0.0000021237,0.0000021059,0.0000020941, -0.0000020923,0.0000021073,0.0000021420,0.0000021730,0.0000021892, -0.0000021982,0.0000022050,0.0000022110,0.0000022165,0.0000022189, -0.0000022177,0.0000022142,0.0000022101,0.0000022057,0.0000022018, -0.0000022004,0.0000022010,0.0000022030,0.0000022062,0.0000022114, -0.0000022175,0.0000022229,0.0000022267,0.0000022283,0.0000022280, -0.0000022226,0.0000022065,0.0000021820,0.0000021604,0.0000021496, -0.0000021479,0.0000021475,0.0000021453,0.0000021449,0.0000021539, -0.0000021729,0.0000021908,0.0000022024,0.0000022107,0.0000022182, -0.0000022255,0.0000022327,0.0000022381,0.0000022396,0.0000022361, -0.0000022264,0.0000022135,0.0000022032,0.0000022012,0.0000022041, -0.0000022068,0.0000021898,0.0000021704,0.0000021692,0.0000021790, -0.0000021905,0.0000022125,0.0000022422,0.0000022567,0.0000022535, -0.0000022486,0.0000022505,0.0000022563,0.0000022627,0.0000022691, -0.0000022742,0.0000022765,0.0000022767,0.0000022781,0.0000022835, -0.0000022906,0.0000022943,0.0000022944,0.0000022943,0.0000022963, -0.0000023013,0.0000023064,0.0000023089,0.0000023087,0.0000023075, -0.0000023068,0.0000023074,0.0000023094,0.0000023121,0.0000023150, -0.0000023172,0.0000023183,0.0000023180,0.0000023161,0.0000023133, -0.0000023103,0.0000023078,0.0000023055,0.0000023030,0.0000023007, -0.0000022987,0.0000022971,0.0000022956,0.0000022936,0.0000022916, -0.0000022908,0.0000022909,0.0000022920,0.0000022942,0.0000022972, -0.0000023004,0.0000023035,0.0000023065,0.0000023097,0.0000023123, -0.0000023145,0.0000023167,0.0000023195,0.0000023218,0.0000023218, -0.0000023195,0.0000023163,0.0000023143,0.0000023133,0.0000023126, -0.0000023133,0.0000023145,0.0000023148,0.0000023152,0.0000023165, -0.0000023179,0.0000023193,0.0000023211,0.0000023223,0.0000023219, -0.0000023185,0.0000023137,0.0000023091,0.0000023054,0.0000023033, -0.0000023026,0.0000023017,0.0000023009,0.0000023018,0.0000023042, -0.0000023049,0.0000023033,0.0000023015,0.0000023000,0.0000022988, -0.0000022978,0.0000022975,0.0000022969,0.0000022950,0.0000022913, -0.0000022870,0.0000022831,0.0000022791,0.0000022748,0.0000022709, -0.0000022683,0.0000022668,0.0000022651,0.0000022623,0.0000022602, -0.0000022601,0.0000022612,0.0000022620,0.0000022636,0.0000022667, -0.0000022704,0.0000022741,0.0000022783,0.0000022848,0.0000022930, -0.0000022991,0.0000023017,0.0000023018,0.0000023003,0.0000022973, -0.0000022912,0.0000022832,0.0000022771,0.0000022737,0.0000022721, -0.0000022724,0.0000022745,0.0000022767,0.0000022774,0.0000022770, -0.0000022774,0.0000022790,0.0000022806,0.0000022808,0.0000022807, -0.0000022824,0.0000022855,0.0000022887,0.0000022916,0.0000022946, -0.0000022970,0.0000022981,0.0000022989,0.0000022994,0.0000022987, -0.0000022974,0.0000022965,0.0000022961,0.0000022951,0.0000022947, -0.0000022958,0.0000022978,0.0000023014,0.0000023066,0.0000023113, -0.0000023141,0.0000023157,0.0000023168,0.0000023182,0.0000023203, -0.0000023228,0.0000023252,0.0000023265,0.0000023261,0.0000023244, -0.0000023223,0.0000023210,0.0000023211,0.0000023230,0.0000023269, -0.0000023328,0.0000023401,0.0000023474,0.0000023538,0.0000023575, -0.0000023565,0.0000023539,0.0000023500,0.0000023459,0.0000023423, -0.0000023393,0.0000023358,0.0000023307,0.0000023240,0.0000023168, -0.0000023111,0.0000023078,0.0000023077,0.0000023089,0.0000023106, -0.0000023126,0.0000023148,0.0000023172,0.0000023194,0.0000023212, -0.0000023227,0.0000023228,0.0000023225,0.0000023217,0.0000023209, -0.0000023207,0.0000023208,0.0000023211,0.0000023214,0.0000023214, -0.0000023208,0.0000023192,0.0000023164,0.0000023127,0.0000023085, -0.0000023041,0.0000022997,0.0000022955,0.0000022915,0.0000022876, -0.0000022839,0.0000022805,0.0000022776,0.0000022746,0.0000022713, -0.0000022681,0.0000022652,0.0000022626,0.0000022602,0.0000022575, -0.0000022545,0.0000022518,0.0000022487,0.0000022453,0.0000022415, -0.0000022375,0.0000022342,0.0000022318,0.0000022302,0.0000022298, -0.0000022295,0.0000022310,0.0000022328,0.0000022355,0.0000022398, -0.0000022452,0.0000022507,0.0000022555,0.0000022593,0.0000022616, -0.0000022624,0.0000022617,0.0000022588,0.0000022554,0.0000022509, -0.0000022464,0.0000022420,0.0000022376,0.0000022339,0.0000022312, -0.0000022292,0.0000022281,0.0000022284,0.0000022306,0.0000022342, -0.0000022380,0.0000022413,0.0000022438,0.0000022458,0.0000022478, -0.0000022499,0.0000022519,0.0000022541,0.0000022565,0.0000022588, -0.0000022606,0.0000022621,0.0000022636,0.0000022661,0.0000022686, -0.0000022707,0.0000022734,0.0000022766,0.0000022793,0.0000022811, -0.0000022826,0.0000022844,0.0000022860,0.0000022872,0.0000022888, -0.0000022907,0.0000022930,0.0000022962,0.0000023003,0.0000023045, -0.0000023080,0.0000023106,0.0000023121,0.0000023124,0.0000023115, -0.0000023099,0.0000023081,0.0000023056,0.0000023033,0.0000023015, -0.0000023012,0.0000023024,0.0000023037,0.0000023051,0.0000023067, -0.0000023088,0.0000023110,0.0000023126,0.0000023135,0.0000023140, -0.0000023138,0.0000023133,0.0000023126,0.0000023120,0.0000023116, -0.0000023109,0.0000023099,0.0000023086,0.0000023071,0.0000023052, -0.0000023036,0.0000023019,0.0000022997,0.0000022972,0.0000022942, -0.0000022911,0.0000022890,0.0000022879,0.0000022872,0.0000022859, -0.0000022848,0.0000022864,0.0000022903,0.0000022951,0.0000022993, -0.0000023023,0.0000023037,0.0000023036,0.0000023023,0.0000023010, -0.0000023002,0.0000023005,0.0000023015,0.0000023026,0.0000023038, -0.0000023043,0.0000023036,0.0000023010,0.0000022973,0.0000022936, -0.0000022897,0.0000022860,0.0000022838,0.0000022834,0.0000022836, -0.0000022839,0.0000022824,0.0000022792,0.0000022751,0.0000022709, -0.0000022661,0.0000022604,0.0000022547,0.0000022497,0.0000022452, -0.0000022434,0.0000022435,0.0000022438,0.0000022442,0.0000022451, -0.0000022468,0.0000022486,0.0000022495,0.0000022492,0.0000022474, -0.0000022441,0.0000022398,0.0000022371,0.0000022382,0.0000022423, -0.0000022468,0.0000022513,0.0000022557,0.0000022606,0.0000022660, -0.0000022714,0.0000022762,0.0000022799,0.0000022821,0.0000022825, -0.0000022817,0.0000022797,0.0000022775,0.0000022756,0.0000022748, -0.0000022748,0.0000022739,0.0000022724,0.0000022723,0.0000022765, -0.0000022843,0.0000022931,0.0000023020,0.0000023146,0.0000023230, -0.0000023211,0.0000023140,0.0000023097,0.0000023054,0.0000022931, -0.0000022824,0.0000022849,0.0000022873,0.0000022866,0.0000022877, -0.0000022864,0.0000022792,0.0000022728,0.0000022724,0.0000022728, -0.0000022716,0.0000022764,0.0000022866,0.0000022941,0.0000023057, -0.0000023285,0.0000023488,0.0000023518,0.0000023539,0.0000023440, -0.0000023216,0.0000023157,0.0000023151,0.0000023138,0.0000023079, -0.0000023017,0.0000022971,0.0000022994,0.0000023105,0.0000023224, -0.0000023243,0.0000023197,0.0000023132,0.0000023066,0.0000023046, -0.0000023065,0.0000023125,0.0000023191,0.0000023223,0.0000023223, -0.0000023209,0.0000023185,0.0000023140,0.0000023048,0.0000022942, -0.0000022877,0.0000022827,0.0000022776,0.0000022758,0.0000022771, -0.0000022811,0.0000022830,0.0000022859,0.0000022888,0.0000022904, -0.0000022912,0.0000022908,0.0000022918,0.0000022958,0.0000023000, -0.0000023019,0.0000022993,0.0000022890,0.0000022817,0.0000022816, -0.0000022790,0.0000022724,0.0000022664,0.0000022473,0.0000022225, -0.0000022210,0.0000022361,0.0000022498,0.0000022535,0.0000022540, -0.0000022467,0.0000022186,0.0000021941,0.0000021965,0.0000022167, -0.0000022343,0.0000022447,0.0000022526,0.0000022606,0.0000022703, -0.0000022780,0.0000022809,0.0000022795,0.0000022764,0.0000022739, -0.0000022717,0.0000022677,0.0000022593,0.0000022503,0.0000022507, -0.0000022624,0.0000022744,0.0000022773,0.0000022707,0.0000022556, -0.0000022405,0.0000022257,0.0000022150,0.0000022163,0.0000022228, -0.0000022303,0.0000022369,0.0000022374,0.0000022334,0.0000022305, -0.0000022293,0.0000022248,0.0000022201,0.0000022204,0.0000022272, -0.0000022396,0.0000022533,0.0000022673,0.0000022770,0.0000022797, -0.0000022799,0.0000022799,0.0000022783,0.0000022760,0.0000022756, -0.0000022772,0.0000022793,0.0000022803,0.0000022815,0.0000022835, -0.0000022848,0.0000022847,0.0000022838,0.0000022841,0.0000022875, -0.0000022933,0.0000022989,0.0000023044,0.0000023104,0.0000023151, -0.0000023182,0.0000023212,0.0000023245,0.0000023282,0.0000023326, -0.0000023375,0.0000023405,0.0000023409,0.0000023398,0.0000023372, -0.0000023331,0.0000023279,0.0000023221,0.0000023168,0.0000023134, -0.0000023120,0.0000023107,0.0000023089,0.0000023085,0.0000023096, -0.0000023130,0.0000023174,0.0000023217,0.0000023260,0.0000023297, -0.0000023327,0.0000023354,0.0000023383,0.0000023403,0.0000023408, -0.0000023398,0.0000023363,0.0000023312,0.0000023247,0.0000023177, -0.0000023117,0.0000023069,0.0000023047,0.0000023054,0.0000023095, -0.0000023156,0.0000023224,0.0000023287,0.0000023344,0.0000023386, -0.0000023407,0.0000023401,0.0000023374,0.0000023324,0.0000023260, -0.0000023204,0.0000023165,0.0000023157,0.0000023177,0.0000023230, -0.0000023290,0.0000023347,0.0000023376,0.0000023371,0.0000023328, -0.0000023269,0.0000023227,0.0000023222,0.0000023267,0.0000023334, -0.0000023413,0.0000023496,0.0000023581,0.0000023677,0.0000023781, -0.0000023854,0.0000023866,0.0000023863,0.0000023877,0.0000023902, -0.0000023930,0.0000024006,0.0000024091,0.0000024084,0.0000024000, -0.0000023952,0.0000023916,0.0000023882,0.0000023869,0.0000023851, -0.0000023837,0.0000023842,0.0000023856,0.0000023872,0.0000023890, -0.0000023915,0.0000023940,0.0000023959,0.0000023976,0.0000023991, -0.0000024002,0.0000024006,0.0000023999,0.0000023981,0.0000023954, -0.0000023921,0.0000023888,0.0000023856,0.0000023826,0.0000023796, -0.0000023769,0.0000023744,0.0000023719,0.0000023696,0.0000023673, -0.0000023650,0.0000023632,0.0000023617,0.0000023595,0.0000023565, -0.0000023529,0.0000023490,0.0000023449,0.0000023408,0.0000023369, -0.0000023333,0.0000023297,0.0000023264,0.0000023231,0.0000023198, -0.0000023165,0.0000023130,0.0000023095,0.0000023062,0.0000023037, -0.0000023020,0.0000023006,0.0000022988,0.0000022964,0.0000022940, -0.0000022917,0.0000022894,0.0000022869,0.0000022845,0.0000022827, -0.0000022817,0.0000022810,0.0000022809,0.0000022814,0.0000022816, -0.0000022813,0.0000022807,0.0000022794,0.0000022772,0.0000022741, -0.0000022698,0.0000022648,0.0000022592,0.0000022531,0.0000022472, -0.0000022420,0.0000022390,0.0000022387,0.0000022382,0.0000022387, -0.0000022406,0.0000022429,0.0000022448,0.0000022463,0.0000022472, -0.0000022475,0.0000022470,0.0000022456,0.0000022442,0.0000022430, -0.0000022418,0.0000022402,0.0000022380,0.0000022354,0.0000022346, -0.0000022347,0.0000022351,0.0000022360,0.0000022374,0.0000022377, -0.0000022376,0.0000022378,0.0000022386,0.0000022401,0.0000022412, -0.0000022400,0.0000022390,0.0000022388,0.0000022379,0.0000022380, -0.0000022390,0.0000022396,0.0000022406,0.0000022419,0.0000022433, -0.0000022446,0.0000022456,0.0000022469,0.0000022482,0.0000022492, -0.0000022504,0.0000022526,0.0000022566,0.0000022633,0.0000022724, -0.0000022832,0.0000022954,0.0000023064,0.0000023137,0.0000023170, -0.0000023179,0.0000023181,0.0000023187,0.0000023196,0.0000023208, -0.0000023225,0.0000023237,0.0000023245,0.0000023239,0.0000023215, -0.0000023192,0.0000023190,0.0000023220,0.0000023260,0.0000023300, -0.0000023337,0.0000023325,0.0000023189,0.0000023015,0.0000022967, -0.0000022980,0.0000023009,0.0000023171,0.0000023404,0.0000023509, -0.0000023469,0.0000023342,0.0000023287,0.0000023358,0.0000023446, -0.0000023482,0.0000023469,0.0000023385,0.0000023246,0.0000023123, -0.0000023039,0.0000022964,0.0000022892,0.0000022829,0.0000022769, -0.0000022709,0.0000022646,0.0000022604,0.0000022604,0.0000022655, -0.0000022743,0.0000022845,0.0000022935,0.0000023000,0.0000023045, -0.0000023074,0.0000023090,0.0000023093,0.0000023088,0.0000023070, -0.0000023037,0.0000022980,0.0000022883,0.0000022731,0.0000022521, -0.0000022289,0.0000022105,0.0000022022,0.0000022008,0.0000022034, -0.0000022063,0.0000022069,0.0000022064,0.0000022051,0.0000022038, -0.0000022027,0.0000022009,0.0000021977,0.0000021921,0.0000021842, -0.0000021764,0.0000021741,0.0000021750,0.0000021797,0.0000021882, -0.0000021988,0.0000022117,0.0000022304,0.0000022570,0.0000022872, -0.0000023093,0.0000023136,0.0000023023,0.0000022780,0.0000022512, -0.0000022323,0.0000022242,0.0000022211,0.0000022131,0.0000021995, -0.0000021874,0.0000021780,0.0000021695,0.0000021644,0.0000021640, -0.0000021634,0.0000021584,0.0000021516,0.0000021493,0.0000021497, -0.0000021505,0.0000021558,0.0000021719,0.0000021916,0.0000022031, -0.0000022082,0.0000022172,0.0000022318,0.0000022455,0.0000022508, -0.0000022485,0.0000022371,0.0000022202,0.0000022042,0.0000021930, -0.0000021852,0.0000021780,0.0000021717,0.0000021678,0.0000021631, -0.0000021549,0.0000021453,0.0000021365,0.0000021292,0.0000021249, -0.0000021256,0.0000021291,0.0000021324,0.0000021348,0.0000021381, -0.0000021454,0.0000021574,0.0000021688,0.0000021767,0.0000021815, -0.0000021836,0.0000021857,0.0000021918,0.0000022014,0.0000022098, -0.0000022131,0.0000022120,0.0000022055,0.0000021952,0.0000021834, -0.0000021725,0.0000021630,0.0000021547,0.0000021474,0.0000021415, -0.0000021381,0.0000021370,0.0000021373,0.0000021388,0.0000021406, -0.0000021428,0.0000021450,0.0000021465,0.0000021468,0.0000021468, -0.0000021468,0.0000021466,0.0000021458,0.0000021445,0.0000021432, -0.0000021421,0.0000021416,0.0000021416,0.0000021411,0.0000021393, -0.0000021376,0.0000021382,0.0000021419,0.0000021478,0.0000021541, -0.0000021597,0.0000021639,0.0000021650,0.0000021645,0.0000021628, -0.0000021581,0.0000021472,0.0000021293,0.0000021093,0.0000020943, -0.0000020879,0.0000020882,0.0000020910,0.0000020922,0.0000020931, -0.0000020998,0.0000021159,0.0000021368,0.0000021521,0.0000021589, -0.0000021634,0.0000021717,0.0000021828,0.0000021912,0.0000021955, -0.0000021995,0.0000022052,0.0000022132,0.0000022247,0.0000022404, -0.0000022586,0.0000022773,0.0000022964,0.0000023156,0.0000023328, -0.0000023439,0.0000023465,0.0000023460,0.0000023486,0.0000023590, -0.0000023730,0.0000023839,0.0000023929,0.0000024083,0.0000024333, -0.0000024599,0.0000024764,0.0000024804,0.0000024781,0.0000024761, -0.0000024781,0.0000024835,0.0000024844,0.0000024757,0.0000024566, -0.0000024367,0.0000024244,0.0000024181,0.0000024161,0.0000024186, -0.0000024292,0.0000024449,0.0000024608,0.0000024729,0.0000024784, -0.0000024749,0.0000024635,0.0000024498,0.0000024359,0.0000024238, -0.0000024167,0.0000024141,0.0000024143,0.0000024159,0.0000024170, -0.0000024167,0.0000024154,0.0000024130,0.0000024084,0.0000024027, -0.0000023980,0.0000023962,0.0000023967,0.0000023985,0.0000024001, -0.0000024013,0.0000024019,0.0000024018,0.0000024013,0.0000024003, -0.0000023984,0.0000023965,0.0000023941,0.0000023916,0.0000023900, -0.0000023901,0.0000023918,0.0000023958,0.0000024011,0.0000024065, -0.0000024107,0.0000024127,0.0000024132,0.0000024121,0.0000024095, -0.0000024063,0.0000024039,0.0000024023,0.0000024010,0.0000023996, -0.0000023991,0.0000023995,0.0000023990,0.0000023966,0.0000023929, -0.0000023883,0.0000023835,0.0000023791,0.0000023751,0.0000023707, -0.0000023655,0.0000023600,0.0000023544,0.0000023489,0.0000023435, -0.0000023381,0.0000023328,0.0000023284,0.0000023256,0.0000023248, -0.0000023258,0.0000023276,0.0000023295,0.0000023304,0.0000023306, -0.0000023310,0.0000023310,0.0000023311,0.0000023315,0.0000023312, -0.0000023293,0.0000023263,0.0000023234,0.0000023207,0.0000023173, -0.0000023132,0.0000023084,0.0000023040,0.0000022996,0.0000022950, -0.0000022900,0.0000022847,0.0000022797,0.0000022753,0.0000022711, -0.0000022670,0.0000022627,0.0000022584,0.0000022538,0.0000022506, -0.0000022501,0.0000022519,0.0000022557,0.0000022606,0.0000022665, -0.0000022732,0.0000022789,0.0000022826,0.0000022845,0.0000022841, -0.0000022821,0.0000022776,0.0000022725,0.0000022691,0.0000022675, -0.0000022683,0.0000022715,0.0000022757,0.0000022789,0.0000022793, -0.0000022702,0.0000022492,0.0000022241,0.0000022053,0.0000021957, -0.0000021912,0.0000021880,0.0000021850,0.0000021843,0.0000021859, -0.0000021877,0.0000021868,0.0000021812,0.0000021712,0.0000021592, -0.0000021477,0.0000021388,0.0000021336,0.0000021313,0.0000021295, -0.0000021310,0.0000021342,0.0000021399,0.0000021483,0.0000021559, -0.0000021620,0.0000021683,0.0000021756,0.0000021821,0.0000021848, -0.0000021878,0.0000021897,0.0000021904,0.0000021898,0.0000021883, -0.0000021868,0.0000021860,0.0000021853,0.0000021844,0.0000021829, -0.0000021815,0.0000021803,0.0000021786,0.0000021768,0.0000021752, -0.0000021726,0.0000021698,0.0000021682,0.0000021672,0.0000021647, -0.0000021613,0.0000021585,0.0000021558,0.0000021535,0.0000021521, -0.0000021508,0.0000021494,0.0000021483,0.0000021477,0.0000021477, -0.0000021480,0.0000021490,0.0000021501,0.0000021483,0.0000021459, -0.0000021434,0.0000021398,0.0000021349,0.0000021296,0.0000021246, -0.0000021202,0.0000021181,0.0000021178,0.0000021185,0.0000021190, -0.0000021187,0.0000021188,0.0000021197,0.0000021214,0.0000021231, -0.0000021246,0.0000021250,0.0000021241,0.0000021237,0.0000021241, -0.0000021240,0.0000021233,0.0000021217,0.0000021198,0.0000021179, -0.0000021160,0.0000021148,0.0000021147,0.0000021151,0.0000021155, -0.0000021152,0.0000021143,0.0000021128,0.0000021107,0.0000021083, -0.0000021067,0.0000021064,0.0000021064,0.0000021080,0.0000021118, -0.0000021181,0.0000021261,0.0000021337,0.0000021401,0.0000021456, -0.0000021502,0.0000021531,0.0000021538,0.0000021527,0.0000021496, -0.0000021446,0.0000021391,0.0000021339,0.0000021296,0.0000021269, -0.0000021258,0.0000021250,0.0000021232,0.0000021195,0.0000021146, -0.0000021101,0.0000021075,0.0000021079,0.0000021118,0.0000021165, -0.0000021207,0.0000021263,0.0000021336,0.0000021411,0.0000021479, -0.0000021536,0.0000021562,0.0000021556,0.0000021521,0.0000021473, -0.0000021428,0.0000021393,0.0000021382,0.0000021428,0.0000021533, -0.0000021624,0.0000021676,0.0000021705,0.0000021709,0.0000021653, -0.0000021554,0.0000021513,0.0000021536,0.0000021564,0.0000021564, -0.0000021545,0.0000021510,0.0000021456,0.0000021398,0.0000021344, -0.0000021282,0.0000021226,0.0000021197,0.0000021193,0.0000021205, -0.0000021236,0.0000021280,0.0000021324,0.0000021367,0.0000021410, -0.0000021451,0.0000021475,0.0000021457,0.0000021377,0.0000021311, -0.0000021301,0.0000021299,0.0000021261,0.0000021209,0.0000021212, -0.0000021290,0.0000021391,0.0000021442,0.0000021443,0.0000021411, -0.0000021378,0.0000021369,0.0000021375,0.0000021384,0.0000021397, -0.0000021416,0.0000021433,0.0000021449,0.0000021466,0.0000021479, -0.0000021483,0.0000021480,0.0000021481,0.0000021497,0.0000021531, -0.0000021570,0.0000021610,0.0000021650,0.0000021681,0.0000021698, -0.0000021714,0.0000021735,0.0000021749,0.0000021750,0.0000021735, -0.0000021696,0.0000021632,0.0000021553,0.0000021479,0.0000021425, -0.0000021397,0.0000021390,0.0000021392,0.0000021398,0.0000021400, -0.0000021398,0.0000021399,0.0000021410,0.0000021422,0.0000021425, -0.0000021391,0.0000021325,0.0000021273,0.0000021277,0.0000021316, -0.0000021292,0.0000021141,0.0000020971,0.0000020899,0.0000020944, -0.0000021195,0.0000021555,0.0000021795,0.0000021913,0.0000021993, -0.0000022059,0.0000022119,0.0000022159,0.0000022159,0.0000022129, -0.0000022092,0.0000022057,0.0000022022,0.0000022006,0.0000022010, -0.0000022028,0.0000022053,0.0000022094,0.0000022149,0.0000022200, -0.0000022233,0.0000022247,0.0000022246,0.0000022194,0.0000022029, -0.0000021778,0.0000021563,0.0000021471,0.0000021466,0.0000021466, -0.0000021451,0.0000021459,0.0000021564,0.0000021757,0.0000021931, -0.0000022042,0.0000022117,0.0000022170,0.0000022215,0.0000022279, -0.0000022345,0.0000022366,0.0000022332,0.0000022230,0.0000022097, -0.0000021989,0.0000021966,0.0000021987,0.0000021999,0.0000021823, -0.0000021654,0.0000021669,0.0000021766,0.0000021899,0.0000022161, -0.0000022435,0.0000022515,0.0000022478,0.0000022457,0.0000022500, -0.0000022573,0.0000022636,0.0000022688,0.0000022723,0.0000022738, -0.0000022748,0.0000022786,0.0000022863,0.0000022935,0.0000022967, -0.0000022968,0.0000022967,0.0000022974,0.0000022995,0.0000023021, -0.0000023045,0.0000023056,0.0000023055,0.0000023050,0.0000023046, -0.0000023053,0.0000023069,0.0000023089,0.0000023113,0.0000023133, -0.0000023143,0.0000023136,0.0000023117,0.0000023095,0.0000023073, -0.0000023049,0.0000023027,0.0000023009,0.0000022994,0.0000022983, -0.0000022972,0.0000022955,0.0000022937,0.0000022925,0.0000022920, -0.0000022922,0.0000022938,0.0000022964,0.0000022995,0.0000023024, -0.0000023052,0.0000023078,0.0000023101,0.0000023116,0.0000023128, -0.0000023146,0.0000023161,0.0000023155,0.0000023117,0.0000023060, -0.0000023016,0.0000022996,0.0000023000,0.0000023026,0.0000023053, -0.0000023069,0.0000023076,0.0000023076,0.0000023071,0.0000023073, -0.0000023082,0.0000023092,0.0000023094,0.0000023076,0.0000023044, -0.0000023005,0.0000022953,0.0000022901,0.0000022875,0.0000022868, -0.0000022858,0.0000022851,0.0000022865,0.0000022887,0.0000022887, -0.0000022870,0.0000022853,0.0000022834,0.0000022807,0.0000022780, -0.0000022761,0.0000022738,0.0000022701,0.0000022661,0.0000022629, -0.0000022601,0.0000022575,0.0000022546,0.0000022515,0.0000022499, -0.0000022498,0.0000022488,0.0000022462,0.0000022438,0.0000022427, -0.0000022418,0.0000022410,0.0000022409,0.0000022429,0.0000022475, -0.0000022534,0.0000022599,0.0000022689,0.0000022796,0.0000022882, -0.0000022938,0.0000022976,0.0000022990,0.0000022980,0.0000022942, -0.0000022874,0.0000022810,0.0000022751,0.0000022714,0.0000022707, -0.0000022720,0.0000022729,0.0000022723,0.0000022711,0.0000022717, -0.0000022732,0.0000022743,0.0000022740,0.0000022739,0.0000022756, -0.0000022786,0.0000022817,0.0000022852,0.0000022893,0.0000022928, -0.0000022959,0.0000022986,0.0000023009,0.0000023036,0.0000023064, -0.0000023086,0.0000023087,0.0000023061,0.0000023014,0.0000022966, -0.0000022926,0.0000022894,0.0000022895,0.0000022914,0.0000022963, -0.0000023031,0.0000023097,0.0000023149,0.0000023184,0.0000023206, -0.0000023222,0.0000023232,0.0000023234,0.0000023229,0.0000023220, -0.0000023206,0.0000023195,0.0000023185,0.0000023186,0.0000023202, -0.0000023235,0.0000023284,0.0000023348,0.0000023416,0.0000023475, -0.0000023516,0.0000023513,0.0000023505,0.0000023484,0.0000023459, -0.0000023428,0.0000023388,0.0000023335,0.0000023270,0.0000023207, -0.0000023159,0.0000023129,0.0000023112,0.0000023105,0.0000023109, -0.0000023114,0.0000023122,0.0000023134,0.0000023154,0.0000023179, -0.0000023205,0.0000023222,0.0000023225,0.0000023224,0.0000023220, -0.0000023213,0.0000023205,0.0000023195,0.0000023184,0.0000023166, -0.0000023145,0.0000023120,0.0000023091,0.0000023059,0.0000023028, -0.0000022998,0.0000022973,0.0000022952,0.0000022929,0.0000022906, -0.0000022881,0.0000022851,0.0000022817,0.0000022777,0.0000022736, -0.0000022692,0.0000022647,0.0000022600,0.0000022548,0.0000022498, -0.0000022452,0.0000022413,0.0000022380,0.0000022355,0.0000022340, -0.0000022323,0.0000022326,0.0000022336,0.0000022357,0.0000022381, -0.0000022402,0.0000022421,0.0000022450,0.0000022494,0.0000022546, -0.0000022597,0.0000022634,0.0000022651,0.0000022649,0.0000022622, -0.0000022573,0.0000022507,0.0000022439,0.0000022383,0.0000022340, -0.0000022303,0.0000022270,0.0000022239,0.0000022211,0.0000022191, -0.0000022170,0.0000022154,0.0000022153,0.0000022169,0.0000022192, -0.0000022213,0.0000022231,0.0000022249,0.0000022274,0.0000022301, -0.0000022330,0.0000022364,0.0000022401,0.0000022437,0.0000022474, -0.0000022512,0.0000022553,0.0000022602,0.0000022648,0.0000022685, -0.0000022713,0.0000022733,0.0000022748,0.0000022756,0.0000022759, -0.0000022764,0.0000022770,0.0000022774,0.0000022782,0.0000022791, -0.0000022798,0.0000022806,0.0000022820,0.0000022842,0.0000022868, -0.0000022898,0.0000022932,0.0000022964,0.0000022987,0.0000023003, -0.0000023010,0.0000023003,0.0000022989,0.0000022968,0.0000022953, -0.0000022949,0.0000022940,0.0000022937,0.0000022934,0.0000022942, -0.0000022957,0.0000022971,0.0000022978,0.0000022981,0.0000022980, -0.0000022979,0.0000022979,0.0000022982,0.0000022991,0.0000023001, -0.0000023003,0.0000023005,0.0000023001,0.0000022989,0.0000022980, -0.0000022973,0.0000022964,0.0000022951,0.0000022934,0.0000022910, -0.0000022896,0.0000022888,0.0000022891,0.0000022895,0.0000022898, -0.0000022915,0.0000022954,0.0000023005,0.0000023053,0.0000023088, -0.0000023110,0.0000023113,0.0000023104,0.0000023088,0.0000023075, -0.0000023065,0.0000023065,0.0000023073,0.0000023080,0.0000023087, -0.0000023085,0.0000023071,0.0000023044,0.0000023010,0.0000022977, -0.0000022939,0.0000022910,0.0000022904,0.0000022911,0.0000022919, -0.0000022916,0.0000022893,0.0000022854,0.0000022806,0.0000022750, -0.0000022682,0.0000022623,0.0000022581,0.0000022545,0.0000022519, -0.0000022507,0.0000022497,0.0000022476,0.0000022456,0.0000022442, -0.0000022433,0.0000022420,0.0000022411,0.0000022399,0.0000022374, -0.0000022331,0.0000022295,0.0000022290,0.0000022319,0.0000022356, -0.0000022393,0.0000022433,0.0000022475,0.0000022525,0.0000022579, -0.0000022632,0.0000022681,0.0000022721,0.0000022741,0.0000022738, -0.0000022720,0.0000022704,0.0000022693,0.0000022696,0.0000022727, -0.0000022753,0.0000022754,0.0000022727,0.0000022717,0.0000022775, -0.0000022888,0.0000022965,0.0000023054,0.0000023186,0.0000023234, -0.0000023186,0.0000023124,0.0000023073,0.0000022948,0.0000022794, -0.0000022792,0.0000022812,0.0000022825,0.0000022863,0.0000022865, -0.0000022794,0.0000022732,0.0000022731,0.0000022744,0.0000022723, -0.0000022747,0.0000022822,0.0000022904,0.0000023003,0.0000023203, -0.0000023429,0.0000023508,0.0000023531,0.0000023495,0.0000023279, -0.0000023164,0.0000023160,0.0000023159,0.0000023126,0.0000023062, -0.0000022989,0.0000022963,0.0000023032,0.0000023152,0.0000023205, -0.0000023179,0.0000023094,0.0000023000,0.0000022971,0.0000022997, -0.0000023063,0.0000023133,0.0000023171,0.0000023171,0.0000023159, -0.0000023135,0.0000023097,0.0000023029,0.0000022946,0.0000022888, -0.0000022838,0.0000022773,0.0000022740,0.0000022758,0.0000022815, -0.0000022870,0.0000022914,0.0000022943,0.0000022941,0.0000022937, -0.0000022928,0.0000022929,0.0000022968,0.0000023017,0.0000023039, -0.0000023030,0.0000022945,0.0000022839,0.0000022820,0.0000022808, -0.0000022739,0.0000022666,0.0000022479,0.0000022219,0.0000022190, -0.0000022333,0.0000022457,0.0000022494,0.0000022502,0.0000022418, -0.0000022120,0.0000021891,0.0000021945,0.0000022149,0.0000022323, -0.0000022432,0.0000022519,0.0000022608,0.0000022704,0.0000022770, -0.0000022785,0.0000022767,0.0000022738,0.0000022713,0.0000022680, -0.0000022624,0.0000022536,0.0000022451,0.0000022459,0.0000022581, -0.0000022711,0.0000022748,0.0000022698,0.0000022552,0.0000022404, -0.0000022257,0.0000022123,0.0000022107,0.0000022176,0.0000022278, -0.0000022365,0.0000022385,0.0000022353,0.0000022312,0.0000022299, -0.0000022282,0.0000022242,0.0000022226,0.0000022259,0.0000022353, -0.0000022484,0.0000022633,0.0000022746,0.0000022786,0.0000022788, -0.0000022787,0.0000022778,0.0000022758,0.0000022751,0.0000022758, -0.0000022770,0.0000022780,0.0000022798,0.0000022820,0.0000022836, -0.0000022846,0.0000022862,0.0000022892,0.0000022936,0.0000023000, -0.0000023067,0.0000023130,0.0000023191,0.0000023247,0.0000023287, -0.0000023319,0.0000023355,0.0000023393,0.0000023438,0.0000023491, -0.0000023533,0.0000023550,0.0000023548,0.0000023531,0.0000023491, -0.0000023427,0.0000023350,0.0000023274,0.0000023207,0.0000023154, -0.0000023122,0.0000023104,0.0000023083,0.0000023081,0.0000023095, -0.0000023125,0.0000023157,0.0000023189,0.0000023219,0.0000023247, -0.0000023279,0.0000023313,0.0000023349,0.0000023381,0.0000023403, -0.0000023404,0.0000023379,0.0000023345,0.0000023295,0.0000023244, -0.0000023198,0.0000023161,0.0000023154,0.0000023170,0.0000023211, -0.0000023266,0.0000023322,0.0000023364,0.0000023393,0.0000023404, -0.0000023398,0.0000023366,0.0000023315,0.0000023253,0.0000023190, -0.0000023140,0.0000023104,0.0000023090,0.0000023111,0.0000023168, -0.0000023245,0.0000023317,0.0000023349,0.0000023338,0.0000023289, -0.0000023231,0.0000023204,0.0000023216,0.0000023276,0.0000023341, -0.0000023414,0.0000023491,0.0000023578,0.0000023673,0.0000023761, -0.0000023813,0.0000023824,0.0000023826,0.0000023842,0.0000023861, -0.0000023891,0.0000023975,0.0000024065,0.0000024064,0.0000023986, -0.0000023940,0.0000023922,0.0000023892,0.0000023874,0.0000023858, -0.0000023838,0.0000023831,0.0000023836,0.0000023847,0.0000023861, -0.0000023879,0.0000023902,0.0000023925,0.0000023943,0.0000023958, -0.0000023970,0.0000023976,0.0000023972,0.0000023957,0.0000023934, -0.0000023903,0.0000023868,0.0000023835,0.0000023802,0.0000023768, -0.0000023742,0.0000023718,0.0000023689,0.0000023657,0.0000023627, -0.0000023597,0.0000023573,0.0000023550,0.0000023522,0.0000023489, -0.0000023452,0.0000023415,0.0000023382,0.0000023353,0.0000023325, -0.0000023294,0.0000023254,0.0000023209,0.0000023165,0.0000023126, -0.0000023088,0.0000023050,0.0000023016,0.0000022987,0.0000022967, -0.0000022950,0.0000022927,0.0000022898,0.0000022865,0.0000022834, -0.0000022803,0.0000022771,0.0000022740,0.0000022714,0.0000022696, -0.0000022685,0.0000022680,0.0000022681,0.0000022688,0.0000022700, -0.0000022712,0.0000022727,0.0000022739,0.0000022742,0.0000022731, -0.0000022707,0.0000022671,0.0000022617,0.0000022566,0.0000022512, -0.0000022466,0.0000022429,0.0000022414,0.0000022410,0.0000022411, -0.0000022422,0.0000022438,0.0000022455,0.0000022471,0.0000022479, -0.0000022480,0.0000022465,0.0000022438,0.0000022413,0.0000022397, -0.0000022373,0.0000022350,0.0000022334,0.0000022320,0.0000022321, -0.0000022335,0.0000022355,0.0000022374,0.0000022396,0.0000022419, -0.0000022433,0.0000022444,0.0000022452,0.0000022457,0.0000022453, -0.0000022437,0.0000022417,0.0000022397,0.0000022370,0.0000022357, -0.0000022354,0.0000022345,0.0000022347,0.0000022352,0.0000022353, -0.0000022357,0.0000022368,0.0000022383,0.0000022398,0.0000022410, -0.0000022419,0.0000022426,0.0000022436,0.0000022460,0.0000022501, -0.0000022560,0.0000022648,0.0000022763,0.0000022877,0.0000022968, -0.0000023033,0.0000023069,0.0000023086,0.0000023093,0.0000023095, -0.0000023099,0.0000023102,0.0000023104,0.0000023099,0.0000023084, -0.0000023063,0.0000023044,0.0000023051,0.0000023086,0.0000023138, -0.0000023202,0.0000023250,0.0000023230,0.0000023098,0.0000022969, -0.0000022955,0.0000022970,0.0000023014,0.0000023214,0.0000023431, -0.0000023493,0.0000023426,0.0000023299,0.0000023276,0.0000023339, -0.0000023394,0.0000023401,0.0000023362,0.0000023261,0.0000023142, -0.0000023060,0.0000023000,0.0000022934,0.0000022863,0.0000022798, -0.0000022736,0.0000022664,0.0000022593,0.0000022545,0.0000022528, -0.0000022542,0.0000022582,0.0000022636,0.0000022691,0.0000022745, -0.0000022794,0.0000022826,0.0000022837,0.0000022836,0.0000022817, -0.0000022764,0.0000022665,0.0000022514,0.0000022328,0.0000022147, -0.0000022022,0.0000021992,0.0000022048,0.0000022121,0.0000022150, -0.0000022133,0.0000022074,0.0000021999,0.0000021942,0.0000021916, -0.0000021913,0.0000021935,0.0000021986,0.0000022032,0.0000022067, -0.0000022055,0.0000022002,0.0000021918,0.0000021820,0.0000021775, -0.0000021747,0.0000021750,0.0000021785,0.0000021886,0.0000022098, -0.0000022434,0.0000022822,0.0000023098,0.0000023132,0.0000022943, -0.0000022646,0.0000022401,0.0000022272,0.0000022230,0.0000022176, -0.0000022057,0.0000021925,0.0000021831,0.0000021753,0.0000021690, -0.0000021671,0.0000021671,0.0000021642,0.0000021574,0.0000021527, -0.0000021530,0.0000021548,0.0000021576,0.0000021672,0.0000021828, -0.0000021952,0.0000022001,0.0000022046,0.0000022149,0.0000022273, -0.0000022331,0.0000022314,0.0000022217,0.0000022079,0.0000021954, -0.0000021863,0.0000021790,0.0000021721,0.0000021671,0.0000021646, -0.0000021606,0.0000021529,0.0000021440,0.0000021362,0.0000021294, -0.0000021253,0.0000021255,0.0000021279,0.0000021298,0.0000021317, -0.0000021374,0.0000021487,0.0000021623,0.0000021732,0.0000021808, -0.0000021843,0.0000021855,0.0000021897,0.0000021984,0.0000022083, -0.0000022133,0.0000022123,0.0000022042,0.0000021915,0.0000021790, -0.0000021691,0.0000021615,0.0000021553,0.0000021499,0.0000021452, -0.0000021423,0.0000021417,0.0000021425,0.0000021443,0.0000021464, -0.0000021483,0.0000021501,0.0000021520,0.0000021535,0.0000021542, -0.0000021543,0.0000021539,0.0000021523,0.0000021495,0.0000021458, -0.0000021427,0.0000021411,0.0000021411,0.0000021420,0.0000021425, -0.0000021414,0.0000021389,0.0000021370,0.0000021362,0.0000021388, -0.0000021447,0.0000021516,0.0000021582,0.0000021624,0.0000021638, -0.0000021627,0.0000021610,0.0000021561,0.0000021446,0.0000021267, -0.0000021084,0.0000020963,0.0000020920,0.0000020922,0.0000020931, -0.0000020933,0.0000020941,0.0000021005,0.0000021166,0.0000021371, -0.0000021517,0.0000021581,0.0000021622,0.0000021696,0.0000021794, -0.0000021877,0.0000021938,0.0000021993,0.0000022062,0.0000022154, -0.0000022277,0.0000022431,0.0000022606,0.0000022792,0.0000022985, -0.0000023175,0.0000023339,0.0000023439,0.0000023456,0.0000023447, -0.0000023456,0.0000023539,0.0000023664,0.0000023780,0.0000023904, -0.0000024105,0.0000024382,0.0000024633,0.0000024759,0.0000024770, -0.0000024737,0.0000024726,0.0000024761,0.0000024807,0.0000024807, -0.0000024682,0.0000024461,0.0000024280,0.0000024197,0.0000024182, -0.0000024191,0.0000024241,0.0000024351,0.0000024495,0.0000024636, -0.0000024737,0.0000024755,0.0000024688,0.0000024567,0.0000024426, -0.0000024281,0.0000024164,0.0000024105,0.0000024100,0.0000024127, -0.0000024166,0.0000024186,0.0000024197,0.0000024184,0.0000024151, -0.0000024101,0.0000024049,0.0000024012,0.0000023999,0.0000024002, -0.0000024007,0.0000024014,0.0000024022,0.0000024029,0.0000024030, -0.0000024017,0.0000023994,0.0000023975,0.0000023962,0.0000023955, -0.0000023967,0.0000023997,0.0000024042,0.0000024097,0.0000024153, -0.0000024193,0.0000024216,0.0000024222,0.0000024191,0.0000024174, -0.0000024133,0.0000024079,0.0000024044,0.0000024036,0.0000024037, -0.0000024031,0.0000024022,0.0000024030,0.0000024055,0.0000024053, -0.0000024040,0.0000024017,0.0000023985,0.0000023952,0.0000023919, -0.0000023884,0.0000023845,0.0000023804,0.0000023762,0.0000023718, -0.0000023671,0.0000023618,0.0000023560,0.0000023493,0.0000023426, -0.0000023372,0.0000023338,0.0000023319,0.0000023315,0.0000023316, -0.0000023314,0.0000023309,0.0000023303,0.0000023292,0.0000023285, -0.0000023273,0.0000023248,0.0000023212,0.0000023175,0.0000023142, -0.0000023110,0.0000023076,0.0000023037,0.0000022994,0.0000022948, -0.0000022897,0.0000022843,0.0000022785,0.0000022725,0.0000022680, -0.0000022652,0.0000022633,0.0000022617,0.0000022588,0.0000022557, -0.0000022525,0.0000022506,0.0000022506,0.0000022532,0.0000022565, -0.0000022595,0.0000022640,0.0000022682,0.0000022722,0.0000022759, -0.0000022787,0.0000022803,0.0000022791,0.0000022777,0.0000022755, -0.0000022730,0.0000022709,0.0000022700,0.0000022709,0.0000022747, -0.0000022785,0.0000022792,0.0000022749,0.0000022592,0.0000022361, -0.0000022135,0.0000021984,0.0000021921,0.0000021892,0.0000021874, -0.0000021870,0.0000021878,0.0000021889,0.0000021893,0.0000021881, -0.0000021833,0.0000021746,0.0000021626,0.0000021495,0.0000021383, -0.0000021303,0.0000021281,0.0000021262,0.0000021271,0.0000021303, -0.0000021355,0.0000021412,0.0000021473,0.0000021547,0.0000021632, -0.0000021704,0.0000021755,0.0000021790,0.0000021814,0.0000021826, -0.0000021821,0.0000021807,0.0000021796,0.0000021781,0.0000021757, -0.0000021726,0.0000021695,0.0000021666,0.0000021639,0.0000021613, -0.0000021593,0.0000021568,0.0000021535,0.0000021511,0.0000021501, -0.0000021486,0.0000021457,0.0000021426,0.0000021395,0.0000021365, -0.0000021345,0.0000021328,0.0000021314,0.0000021308,0.0000021315, -0.0000021333,0.0000021360,0.0000021398,0.0000021444,0.0000021485, -0.0000021511,0.0000021530,0.0000021534,0.0000021513,0.0000021475, -0.0000021403,0.0000021314,0.0000021226,0.0000021168,0.0000021145, -0.0000021154,0.0000021170,0.0000021177,0.0000021173,0.0000021173, -0.0000021188,0.0000021213,0.0000021229,0.0000021225,0.0000021218, -0.0000021218,0.0000021221,0.0000021221,0.0000021214,0.0000021200, -0.0000021187,0.0000021173,0.0000021159,0.0000021150,0.0000021152, -0.0000021159,0.0000021163,0.0000021159,0.0000021152,0.0000021140, -0.0000021120,0.0000021097,0.0000021078,0.0000021066,0.0000021059, -0.0000021058,0.0000021073,0.0000021117,0.0000021173,0.0000021229, -0.0000021284,0.0000021338,0.0000021388,0.0000021423,0.0000021440, -0.0000021446,0.0000021439,0.0000021416,0.0000021383,0.0000021352, -0.0000021312,0.0000021278,0.0000021251,0.0000021226,0.0000021199, -0.0000021171,0.0000021143,0.0000021108,0.0000021076,0.0000021074, -0.0000021103,0.0000021150,0.0000021199,0.0000021269,0.0000021360, -0.0000021445,0.0000021509,0.0000021544,0.0000021546,0.0000021526, -0.0000021481,0.0000021429,0.0000021383,0.0000021351,0.0000021351, -0.0000021420,0.0000021532,0.0000021620,0.0000021670,0.0000021694, -0.0000021683,0.0000021604,0.0000021515,0.0000021497,0.0000021521, -0.0000021537,0.0000021530,0.0000021503,0.0000021455,0.0000021395, -0.0000021340,0.0000021288,0.0000021234,0.0000021188,0.0000021166, -0.0000021164,0.0000021180,0.0000021216,0.0000021264,0.0000021316, -0.0000021362,0.0000021402,0.0000021438,0.0000021455,0.0000021434, -0.0000021359,0.0000021300,0.0000021292,0.0000021292,0.0000021262, -0.0000021210,0.0000021195,0.0000021245,0.0000021343,0.0000021407, -0.0000021413,0.0000021370,0.0000021315,0.0000021293,0.0000021296, -0.0000021301,0.0000021304,0.0000021310,0.0000021319,0.0000021328, -0.0000021335,0.0000021336,0.0000021332,0.0000021324,0.0000021321, -0.0000021338,0.0000021373,0.0000021415,0.0000021454,0.0000021490, -0.0000021523,0.0000021545,0.0000021560,0.0000021580,0.0000021602, -0.0000021613,0.0000021610,0.0000021585,0.0000021536,0.0000021474, -0.0000021413,0.0000021370,0.0000021351,0.0000021352,0.0000021365, -0.0000021383,0.0000021389,0.0000021384,0.0000021373,0.0000021372, -0.0000021386,0.0000021406,0.0000021409,0.0000021373,0.0000021302, -0.0000021252,0.0000021266,0.0000021285,0.0000021216,0.0000021038, -0.0000020898,0.0000020866,0.0000020980,0.0000021319,0.0000021650, -0.0000021828,0.0000021924,0.0000022002,0.0000022069,0.0000022123, -0.0000022139,0.0000022122,0.0000022089,0.0000022059,0.0000022030, -0.0000022007,0.0000022008,0.0000022027,0.0000022052,0.0000022081, -0.0000022121,0.0000022163,0.0000022191,0.0000022202,0.0000022202, -0.0000022163,0.0000022021,0.0000021782,0.0000021558,0.0000021457, -0.0000021454,0.0000021463,0.0000021458,0.0000021467,0.0000021565, -0.0000021754,0.0000021929,0.0000022039,0.0000022112,0.0000022151, -0.0000022169,0.0000022214,0.0000022285,0.0000022322,0.0000022301, -0.0000022204,0.0000022072,0.0000021960,0.0000021926,0.0000021916, -0.0000021937,0.0000021780,0.0000021617,0.0000021626,0.0000021718, -0.0000021867,0.0000022153,0.0000022414,0.0000022469,0.0000022446, -0.0000022446,0.0000022502,0.0000022572,0.0000022623,0.0000022667, -0.0000022701,0.0000022717,0.0000022734,0.0000022792,0.0000022885, -0.0000022960,0.0000022988,0.0000022991,0.0000022988,0.0000022987, -0.0000022987,0.0000022988,0.0000022990,0.0000022993,0.0000022993, -0.0000022988,0.0000022982,0.0000022980,0.0000022983,0.0000022991, -0.0000023010,0.0000023031,0.0000023046,0.0000023048,0.0000023039, -0.0000023027,0.0000023014,0.0000022998,0.0000022983,0.0000022976, -0.0000022975,0.0000022973,0.0000022969,0.0000022958,0.0000022947, -0.0000022940,0.0000022936,0.0000022935,0.0000022943,0.0000022963, -0.0000022990,0.0000023015,0.0000023038,0.0000023062,0.0000023084, -0.0000023097,0.0000023097,0.0000023090,0.0000023079,0.0000023054, -0.0000023003,0.0000022939,0.0000022888,0.0000022864,0.0000022871, -0.0000022909,0.0000022948,0.0000022974,0.0000022983,0.0000022973, -0.0000022948,0.0000022932,0.0000022928,0.0000022927,0.0000022927, -0.0000022920,0.0000022908,0.0000022895,0.0000022866,0.0000022811, -0.0000022754,0.0000022721,0.0000022702,0.0000022681,0.0000022665, -0.0000022669,0.0000022674,0.0000022667,0.0000022649,0.0000022632, -0.0000022609,0.0000022574,0.0000022547,0.0000022533,0.0000022513, -0.0000022489,0.0000022473,0.0000022462,0.0000022451,0.0000022438, -0.0000022416,0.0000022388,0.0000022374,0.0000022374,0.0000022369, -0.0000022348,0.0000022321,0.0000022300,0.0000022280,0.0000022253, -0.0000022232,0.0000022242,0.0000022278,0.0000022324,0.0000022390, -0.0000022489,0.0000022606,0.0000022715,0.0000022804,0.0000022876, -0.0000022930,0.0000022955,0.0000022944,0.0000022913,0.0000022862, -0.0000022804,0.0000022756,0.0000022735,0.0000022738,0.0000022737, -0.0000022718,0.0000022704,0.0000022702,0.0000022709,0.0000022710, -0.0000022700,0.0000022691,0.0000022696,0.0000022715,0.0000022739, -0.0000022771,0.0000022806,0.0000022839,0.0000022872,0.0000022905, -0.0000022938,0.0000022986,0.0000023045,0.0000023094,0.0000023125, -0.0000023135,0.0000023125,0.0000023090,0.0000023027,0.0000022950, -0.0000022880,0.0000022840,0.0000022831,0.0000022856,0.0000022910, -0.0000022990,0.0000023074,0.0000023141,0.0000023183,0.0000023201, -0.0000023209,0.0000023212,0.0000023210,0.0000023203,0.0000023191, -0.0000023172,0.0000023153,0.0000023139,0.0000023137,0.0000023147, -0.0000023172,0.0000023216,0.0000023278,0.0000023348,0.0000023411, -0.0000023465,0.0000023490,0.0000023500,0.0000023492,0.0000023466, -0.0000023429,0.0000023383,0.0000023329,0.0000023271,0.0000023217, -0.0000023174,0.0000023145,0.0000023129,0.0000023122,0.0000023117, -0.0000023114,0.0000023117,0.0000023129,0.0000023153,0.0000023182, -0.0000023209,0.0000023225,0.0000023231,0.0000023229,0.0000023221, -0.0000023210,0.0000023190,0.0000023161,0.0000023130,0.0000023104, -0.0000023080,0.0000023060,0.0000023042,0.0000023028,0.0000023018, -0.0000023012,0.0000023000,0.0000022982,0.0000022953,0.0000022912, -0.0000022859,0.0000022800,0.0000022736,0.0000022674,0.0000022610, -0.0000022547,0.0000022486,0.0000022435,0.0000022399,0.0000022380, -0.0000022365,0.0000022365,0.0000022370,0.0000022384,0.0000022407, -0.0000022438,0.0000022467,0.0000022486,0.0000022494,0.0000022501, -0.0000022521,0.0000022557,0.0000022600,0.0000022640,0.0000022663, -0.0000022668,0.0000022646,0.0000022594,0.0000022513,0.0000022430, -0.0000022365,0.0000022327,0.0000022305,0.0000022282,0.0000022262, -0.0000022240,0.0000022214,0.0000022187,0.0000022156,0.0000022128, -0.0000022106,0.0000022093,0.0000022089,0.0000022089,0.0000022093, -0.0000022101,0.0000022112,0.0000022123,0.0000022136,0.0000022154, -0.0000022174,0.0000022198,0.0000022226,0.0000022260,0.0000022299, -0.0000022353,0.0000022418,0.0000022488,0.0000022554,0.0000022613, -0.0000022667,0.0000022709,0.0000022733,0.0000022741,0.0000022743, -0.0000022743,0.0000022742,0.0000022737,0.0000022727,0.0000022716, -0.0000022711,0.0000022713,0.0000022720,0.0000022732,0.0000022751, -0.0000022769,0.0000022783,0.0000022798,0.0000022814,0.0000022825, -0.0000022832,0.0000022833,0.0000022839,0.0000022851,0.0000022860, -0.0000022864,0.0000022862,0.0000022863,0.0000022869,0.0000022877, -0.0000022879,0.0000022875,0.0000022864,0.0000022854,0.0000022854, -0.0000022861,0.0000022868,0.0000022879,0.0000022890,0.0000022897, -0.0000022899,0.0000022893,0.0000022885,0.0000022879,0.0000022875, -0.0000022868,0.0000022859,0.0000022852,0.0000022847,0.0000022845, -0.0000022849,0.0000022862,0.0000022880,0.0000022907,0.0000022955, -0.0000023010,0.0000023063,0.0000023109,0.0000023141,0.0000023154, -0.0000023153,0.0000023139,0.0000023119,0.0000023092,0.0000023073, -0.0000023072,0.0000023075,0.0000023079,0.0000023079,0.0000023071, -0.0000023051,0.0000023020,0.0000022985,0.0000022954,0.0000022927, -0.0000022916,0.0000022922,0.0000022931,0.0000022932,0.0000022918, -0.0000022894,0.0000022868,0.0000022834,0.0000022778,0.0000022704, -0.0000022636,0.0000022584,0.0000022550,0.0000022546,0.0000022548, -0.0000022542,0.0000022526,0.0000022499,0.0000022465,0.0000022433, -0.0000022412,0.0000022398,0.0000022377,0.0000022342,0.0000022305, -0.0000022291,0.0000022305,0.0000022333,0.0000022368,0.0000022403, -0.0000022436,0.0000022466,0.0000022497,0.0000022535,0.0000022577, -0.0000022621,0.0000022656,0.0000022667,0.0000022664,0.0000022652, -0.0000022633,0.0000022620,0.0000022634,0.0000022688,0.0000022756, -0.0000022764,0.0000022724,0.0000022723,0.0000022822,0.0000022937, -0.0000023012,0.0000023122,0.0000023228,0.0000023223,0.0000023150, -0.0000023088,0.0000022954,0.0000022774,0.0000022739,0.0000022747, -0.0000022781,0.0000022849,0.0000022859,0.0000022792,0.0000022730, -0.0000022735,0.0000022756,0.0000022731,0.0000022732,0.0000022787, -0.0000022877,0.0000022964,0.0000023133,0.0000023357,0.0000023491, -0.0000023516,0.0000023528,0.0000023362,0.0000023186,0.0000023174, -0.0000023174,0.0000023163,0.0000023116,0.0000023036,0.0000022964, -0.0000022973,0.0000023063,0.0000023138,0.0000023143,0.0000023073, -0.0000022971,0.0000022926,0.0000022948,0.0000023014,0.0000023081, -0.0000023124,0.0000023132,0.0000023129,0.0000023115,0.0000023083, -0.0000023022,0.0000022941,0.0000022875,0.0000022822,0.0000022756, -0.0000022732,0.0000022771,0.0000022861,0.0000022930,0.0000022964, -0.0000022977,0.0000022961,0.0000022954,0.0000022949,0.0000022947, -0.0000022979,0.0000023034,0.0000023060,0.0000023054,0.0000022995, -0.0000022884,0.0000022830,0.0000022822,0.0000022757,0.0000022674, -0.0000022496,0.0000022219,0.0000022158,0.0000022292,0.0000022400, -0.0000022434,0.0000022449,0.0000022372,0.0000022073,0.0000021852, -0.0000021918,0.0000022127,0.0000022302,0.0000022414,0.0000022512, -0.0000022610,0.0000022703,0.0000022764,0.0000022777,0.0000022752, -0.0000022720,0.0000022689,0.0000022647,0.0000022576,0.0000022483, -0.0000022405,0.0000022416,0.0000022537,0.0000022679,0.0000022733, -0.0000022700,0.0000022565,0.0000022419,0.0000022271,0.0000022116, -0.0000022065,0.0000022114,0.0000022231,0.0000022347,0.0000022385, -0.0000022371,0.0000022331,0.0000022308,0.0000022305,0.0000022284, -0.0000022258,0.0000022269,0.0000022326,0.0000022428,0.0000022573, -0.0000022704,0.0000022765,0.0000022771,0.0000022767,0.0000022758, -0.0000022744,0.0000022734,0.0000022738,0.0000022743,0.0000022750, -0.0000022770,0.0000022798,0.0000022817,0.0000022840,0.0000022885, -0.0000022950,0.0000023018,0.0000023074,0.0000023129,0.0000023179, -0.0000023230,0.0000023284,0.0000023332,0.0000023371,0.0000023406, -0.0000023448,0.0000023493,0.0000023540,0.0000023591,0.0000023628, -0.0000023646,0.0000023653,0.0000023641,0.0000023609,0.0000023552, -0.0000023475,0.0000023389,0.0000023299,0.0000023211,0.0000023144, -0.0000023102,0.0000023075,0.0000023070,0.0000023088,0.0000023120, -0.0000023150,0.0000023172,0.0000023186,0.0000023200,0.0000023224, -0.0000023253,0.0000023290,0.0000023331,0.0000023364,0.0000023374, -0.0000023362,0.0000023331,0.0000023296,0.0000023261,0.0000023227, -0.0000023206,0.0000023212,0.0000023240,0.0000023280,0.0000023324, -0.0000023362,0.0000023391,0.0000023404,0.0000023402,0.0000023372, -0.0000023316,0.0000023247,0.0000023178,0.0000023118,0.0000023073, -0.0000023039,0.0000023016,0.0000023048,0.0000023125,0.0000023225, -0.0000023303,0.0000023327,0.0000023309,0.0000023261,0.0000023221, -0.0000023213,0.0000023249,0.0000023309,0.0000023354,0.0000023405, -0.0000023482,0.0000023576,0.0000023666,0.0000023730,0.0000023759, -0.0000023766,0.0000023777,0.0000023803,0.0000023824,0.0000023860, -0.0000023950,0.0000024042,0.0000024046,0.0000023975,0.0000023934, -0.0000023927,0.0000023897,0.0000023868,0.0000023860,0.0000023845, -0.0000023825,0.0000023814,0.0000023821,0.0000023833,0.0000023843, -0.0000023855,0.0000023871,0.0000023886,0.0000023896,0.0000023901, -0.0000023902,0.0000023895,0.0000023880,0.0000023858,0.0000023828, -0.0000023793,0.0000023754,0.0000023710,0.0000023671,0.0000023638, -0.0000023601,0.0000023556,0.0000023508,0.0000023467,0.0000023443, -0.0000023431,0.0000023422,0.0000023409,0.0000023391,0.0000023372, -0.0000023352,0.0000023333,0.0000023310,0.0000023278,0.0000023234, -0.0000023184,0.0000023132,0.0000023089,0.0000023053,0.0000023018, -0.0000022979,0.0000022942,0.0000022907,0.0000022874,0.0000022839, -0.0000022798,0.0000022756,0.0000022718,0.0000022684,0.0000022650, -0.0000022618,0.0000022590,0.0000022568,0.0000022553,0.0000022543, -0.0000022535,0.0000022528,0.0000022523,0.0000022528,0.0000022542, -0.0000022565,0.0000022590,0.0000022609,0.0000022617,0.0000022617, -0.0000022605,0.0000022579,0.0000022546,0.0000022511,0.0000022478, -0.0000022453,0.0000022446,0.0000022448,0.0000022448,0.0000022455, -0.0000022470,0.0000022499,0.0000022519,0.0000022535,0.0000022542, -0.0000022535,0.0000022521,0.0000022489,0.0000022456,0.0000022422, -0.0000022390,0.0000022367,0.0000022353,0.0000022351,0.0000022372, -0.0000022404,0.0000022432,0.0000022461,0.0000022491,0.0000022516, -0.0000022530,0.0000022540,0.0000022544,0.0000022538,0.0000022523, -0.0000022499,0.0000022462,0.0000022424,0.0000022392,0.0000022372, -0.0000022357,0.0000022348,0.0000022343,0.0000022333,0.0000022330, -0.0000022332,0.0000022337,0.0000022342,0.0000022351,0.0000022356, -0.0000022354,0.0000022357,0.0000022364,0.0000022381,0.0000022409, -0.0000022450,0.0000022516,0.0000022602,0.0000022690,0.0000022773, -0.0000022853,0.0000022920,0.0000022970,0.0000023001,0.0000023019, -0.0000023024,0.0000023019,0.0000023005,0.0000022984,0.0000022966, -0.0000022941,0.0000022922,0.0000022926,0.0000022959,0.0000023021, -0.0000023094,0.0000023148,0.0000023127,0.0000023013,0.0000022939, -0.0000022950,0.0000022964,0.0000023039,0.0000023262,0.0000023448, -0.0000023473,0.0000023376,0.0000023266,0.0000023257,0.0000023299, -0.0000023319,0.0000023305,0.0000023245,0.0000023156,0.0000023080, -0.0000023030,0.0000022978,0.0000022905,0.0000022830,0.0000022763, -0.0000022683,0.0000022593,0.0000022524,0.0000022484,0.0000022463, -0.0000022452,0.0000022452,0.0000022465,0.0000022490,0.0000022526, -0.0000022550,0.0000022551,0.0000022535,0.0000022499,0.0000022427, -0.0000022310,0.0000022162,0.0000022030,0.0000021966,0.0000021990, -0.0000022043,0.0000022133,0.0000022170,0.0000022132,0.0000022041, -0.0000021945,0.0000021865,0.0000021804,0.0000021768,0.0000021750, -0.0000021739,0.0000021750,0.0000021802,0.0000021898,0.0000022012, -0.0000022095,0.0000022146,0.0000022134,0.0000022075,0.0000021989, -0.0000021892,0.0000021804,0.0000021768,0.0000021763,0.0000021827, -0.0000022030,0.0000022399,0.0000022838,0.0000023093,0.0000023064, -0.0000022820,0.0000022522,0.0000022326,0.0000022245,0.0000022204, -0.0000022120,0.0000021992,0.0000021882,0.0000021804,0.0000021737, -0.0000021695,0.0000021688,0.0000021679,0.0000021630,0.0000021571, -0.0000021555,0.0000021579,0.0000021615,0.0000021667,0.0000021763, -0.0000021871,0.0000021937,0.0000021969,0.0000022028,0.0000022119, -0.0000022179,0.0000022171,0.0000022110,0.0000022018,0.0000021926, -0.0000021843,0.0000021766,0.0000021696,0.0000021649,0.0000021627, -0.0000021593,0.0000021526,0.0000021448,0.0000021378,0.0000021307, -0.0000021253,0.0000021240,0.0000021248,0.0000021265,0.0000021306, -0.0000021399,0.0000021531,0.0000021661,0.0000021766,0.0000021830, -0.0000021855,0.0000021879,0.0000021945,0.0000022045,0.0000022127, -0.0000022142,0.0000022083,0.0000021957,0.0000021823,0.0000021716, -0.0000021637,0.0000021578,0.0000021529,0.0000021495,0.0000021470, -0.0000021463,0.0000021470,0.0000021487,0.0000021508,0.0000021527, -0.0000021542,0.0000021559,0.0000021587,0.0000021621,0.0000021650, -0.0000021665,0.0000021661,0.0000021632,0.0000021582,0.0000021519, -0.0000021457,0.0000021414,0.0000021405,0.0000021413,0.0000021427, -0.0000021432,0.0000021421,0.0000021391,0.0000021357,0.0000021345, -0.0000021369,0.0000021426,0.0000021491,0.0000021551,0.0000021594, -0.0000021613,0.0000021605,0.0000021591,0.0000021547,0.0000021438, -0.0000021270,0.0000021109,0.0000021010,0.0000020968,0.0000020958, -0.0000020956,0.0000020948,0.0000020950,0.0000021015,0.0000021177, -0.0000021377,0.0000021516,0.0000021574,0.0000021608,0.0000021676, -0.0000021769,0.0000021857,0.0000021929,0.0000021998,0.0000022079, -0.0000022179,0.0000022299,0.0000022440,0.0000022609,0.0000022798, -0.0000022989,0.0000023173,0.0000023334,0.0000023431,0.0000023442, -0.0000023415,0.0000023407,0.0000023472,0.0000023589,0.0000023723, -0.0000023893,0.0000024141,0.0000024433,0.0000024654,0.0000024737, -0.0000024722,0.0000024692,0.0000024694,0.0000024743,0.0000024794, -0.0000024757,0.0000024587,0.0000024377,0.0000024242,0.0000024213, -0.0000024224,0.0000024245,0.0000024295,0.0000024390,0.0000024514, -0.0000024634,0.0000024700,0.0000024694,0.0000024616,0.0000024494, -0.0000024348,0.0000024199,0.0000024092,0.0000024053,0.0000024072, -0.0000024124,0.0000024176,0.0000024200,0.0000024198,0.0000024183, -0.0000024146,0.0000024096,0.0000024047,0.0000024015,0.0000024001, -0.0000023999,0.0000024004,0.0000024016,0.0000024029,0.0000024031, -0.0000024015,0.0000023993,0.0000023985,0.0000024000,0.0000024034, -0.0000024081,0.0000024134,0.0000024183,0.0000024219,0.0000024243, -0.0000024233,0.0000024214,0.0000024178,0.0000024127,0.0000024063, -0.0000023986,0.0000023911,0.0000023858,0.0000023835,0.0000023835, -0.0000023854,0.0000023892,0.0000023942,0.0000023987,0.0000024023, -0.0000024051,0.0000024058,0.0000024039,0.0000024048,0.0000024034, -0.0000024011,0.0000023978,0.0000023950,0.0000023921,0.0000023890, -0.0000023858,0.0000023822,0.0000023780,0.0000023729,0.0000023663, -0.0000023590,0.0000023515,0.0000023445,0.0000023386,0.0000023343, -0.0000023319,0.0000023308,0.0000023293,0.0000023273,0.0000023257, -0.0000023241,0.0000023220,0.0000023190,0.0000023149,0.0000023104, -0.0000023060,0.0000023019,0.0000022978,0.0000022929,0.0000022876, -0.0000022821,0.0000022768,0.0000022717,0.0000022669,0.0000022636, -0.0000022626,0.0000022631,0.0000022632,0.0000022623,0.0000022606, -0.0000022584,0.0000022564,0.0000022558,0.0000022565,0.0000022585, -0.0000022609,0.0000022634,0.0000022654,0.0000022677,0.0000022696, -0.0000022717,0.0000022739,0.0000022757,0.0000022766,0.0000022769, -0.0000022762,0.0000022757,0.0000022739,0.0000022719,0.0000022714, -0.0000022729,0.0000022753,0.0000022766,0.0000022727,0.0000022642, -0.0000022474,0.0000022260,0.0000022077,0.0000021964,0.0000021910, -0.0000021897,0.0000021904,0.0000021907,0.0000021907,0.0000021912, -0.0000021911,0.0000021906,0.0000021871,0.0000021796,0.0000021688, -0.0000021553,0.0000021420,0.0000021318,0.0000021262,0.0000021255, -0.0000021260,0.0000021280,0.0000021315,0.0000021367,0.0000021432, -0.0000021500,0.0000021563,0.0000021610,0.0000021640,0.0000021660, -0.0000021668,0.0000021664,0.0000021652,0.0000021636,0.0000021613, -0.0000021583,0.0000021556,0.0000021531,0.0000021512,0.0000021499, -0.0000021486,0.0000021479,0.0000021463,0.0000021446,0.0000021441, -0.0000021438,0.0000021425,0.0000021399,0.0000021367,0.0000021335, -0.0000021310,0.0000021285,0.0000021255,0.0000021233,0.0000021216, -0.0000021198,0.0000021180,0.0000021184,0.0000021206,0.0000021244, -0.0000021290,0.0000021344,0.0000021401,0.0000021452,0.0000021484, -0.0000021488,0.0000021452,0.0000021393,0.0000021294,0.0000021205, -0.0000021143,0.0000021119,0.0000021132,0.0000021150,0.0000021150, -0.0000021147,0.0000021159,0.0000021183,0.0000021194,0.0000021192, -0.0000021189,0.0000021187,0.0000021188,0.0000021188,0.0000021180, -0.0000021168,0.0000021157,0.0000021144,0.0000021133,0.0000021130, -0.0000021131,0.0000021136,0.0000021141,0.0000021142,0.0000021139, -0.0000021133,0.0000021120,0.0000021107,0.0000021093,0.0000021081, -0.0000021065,0.0000021051,0.0000021049,0.0000021070,0.0000021101, -0.0000021138,0.0000021183,0.0000021232,0.0000021274,0.0000021304, -0.0000021330,0.0000021349,0.0000021359,0.0000021363,0.0000021358, -0.0000021345,0.0000021319,0.0000021287,0.0000021249,0.0000021207, -0.0000021166,0.0000021142,0.0000021131,0.0000021114,0.0000021088, -0.0000021077,0.0000021094,0.0000021135,0.0000021191,0.0000021275, -0.0000021381,0.0000021477,0.0000021533,0.0000021542,0.0000021526, -0.0000021488,0.0000021439,0.0000021393,0.0000021352,0.0000021332, -0.0000021347,0.0000021430,0.0000021537,0.0000021617,0.0000021663, -0.0000021675,0.0000021649,0.0000021557,0.0000021484,0.0000021478, -0.0000021498,0.0000021503,0.0000021490,0.0000021451,0.0000021394, -0.0000021333,0.0000021284,0.0000021242,0.0000021201,0.0000021163, -0.0000021141,0.0000021140,0.0000021162,0.0000021205,0.0000021262, -0.0000021321,0.0000021367,0.0000021401,0.0000021429,0.0000021440, -0.0000021411,0.0000021341,0.0000021292,0.0000021285,0.0000021282, -0.0000021256,0.0000021207,0.0000021173,0.0000021200,0.0000021287, -0.0000021365,0.0000021382,0.0000021342,0.0000021273,0.0000021233, -0.0000021228,0.0000021227,0.0000021220,0.0000021214,0.0000021216, -0.0000021222,0.0000021225,0.0000021223,0.0000021215,0.0000021206, -0.0000021204,0.0000021218,0.0000021251,0.0000021293,0.0000021328, -0.0000021355,0.0000021380,0.0000021401,0.0000021415,0.0000021428, -0.0000021444,0.0000021452,0.0000021446,0.0000021420,0.0000021378, -0.0000021328,0.0000021282,0.0000021251,0.0000021242,0.0000021250, -0.0000021279,0.0000021322,0.0000021359,0.0000021371,0.0000021365, -0.0000021354,0.0000021351,0.0000021359,0.0000021376,0.0000021378, -0.0000021343,0.0000021275,0.0000021238,0.0000021258,0.0000021255, -0.0000021130,0.0000020945,0.0000020839,0.0000020850,0.0000021067, -0.0000021430,0.0000021708,0.0000021845,0.0000021936,0.0000022014, -0.0000022076,0.0000022118,0.0000022120,0.0000022092,0.0000022064, -0.0000022040,0.0000022016,0.0000022009,0.0000022026,0.0000022053, -0.0000022075,0.0000022099,0.0000022129,0.0000022154,0.0000022159, -0.0000022155,0.0000022123,0.0000022022,0.0000021824,0.0000021595, -0.0000021458,0.0000021435,0.0000021450,0.0000021456,0.0000021459, -0.0000021536,0.0000021715,0.0000021900,0.0000022019,0.0000022087, -0.0000022120,0.0000022127,0.0000022147,0.0000022207,0.0000022263, -0.0000022265,0.0000022195,0.0000022072,0.0000021947,0.0000021880, -0.0000021859,0.0000021884,0.0000021776,0.0000021591,0.0000021565, -0.0000021647,0.0000021796,0.0000022089,0.0000022367,0.0000022443, -0.0000022424,0.0000022435,0.0000022496,0.0000022560,0.0000022600, -0.0000022638,0.0000022673,0.0000022695,0.0000022726,0.0000022797, -0.0000022895,0.0000022976,0.0000023014,0.0000023020,0.0000023012, -0.0000023004,0.0000023000,0.0000022996,0.0000022988,0.0000022975, -0.0000022959,0.0000022942,0.0000022926,0.0000022911,0.0000022900, -0.0000022899,0.0000022914,0.0000022936,0.0000022955,0.0000022966, -0.0000022966,0.0000022961,0.0000022952,0.0000022940,0.0000022930, -0.0000022930,0.0000022936,0.0000022943,0.0000022947,0.0000022946, -0.0000022943,0.0000022942,0.0000022945,0.0000022950,0.0000022956, -0.0000022971,0.0000022994,0.0000023019,0.0000023040,0.0000023057, -0.0000023072,0.0000023079,0.0000023068,0.0000023037,0.0000022994, -0.0000022945,0.0000022884,0.0000022825,0.0000022783,0.0000022762, -0.0000022765,0.0000022794,0.0000022831,0.0000022851,0.0000022849, -0.0000022823,0.0000022782,0.0000022753,0.0000022743,0.0000022736, -0.0000022730,0.0000022730,0.0000022735,0.0000022745,0.0000022749, -0.0000022733,0.0000022691,0.0000022644,0.0000022603,0.0000022569, -0.0000022536,0.0000022509,0.0000022495,0.0000022484,0.0000022469, -0.0000022456,0.0000022444,0.0000022426,0.0000022406,0.0000022395, -0.0000022394,0.0000022388,0.0000022375,0.0000022362,0.0000022343, -0.0000022315,0.0000022281,0.0000022242,0.0000022202,0.0000022179, -0.0000022171,0.0000022165,0.0000022149,0.0000022126,0.0000022111, -0.0000022090,0.0000022062,0.0000022060,0.0000022082,0.0000022107, -0.0000022145,0.0000022207,0.0000022287,0.0000022387,0.0000022501, -0.0000022612,0.0000022717,0.0000022810,0.0000022875,0.0000022904, -0.0000022902,0.0000022877,0.0000022845,0.0000022803,0.0000022784, -0.0000022784,0.0000022777,0.0000022760,0.0000022741,0.0000022728, -0.0000022726,0.0000022721,0.0000022705,0.0000022692,0.0000022690, -0.0000022698,0.0000022716,0.0000022736,0.0000022758,0.0000022780, -0.0000022805,0.0000022832,0.0000022863,0.0000022909,0.0000022961, -0.0000023010,0.0000023055,0.0000023097,0.0000023119,0.0000023116, -0.0000023094,0.0000023059,0.0000023010,0.0000022948,0.0000022888, -0.0000022849,0.0000022824,0.0000022839,0.0000022881,0.0000022952, -0.0000023041,0.0000023121,0.0000023171,0.0000023189,0.0000023191, -0.0000023188,0.0000023180,0.0000023172,0.0000023150,0.0000023126, -0.0000023098,0.0000023078,0.0000023070,0.0000023080,0.0000023111, -0.0000023159,0.0000023222,0.0000023297,0.0000023366,0.0000023420, -0.0000023455,0.0000023466,0.0000023460,0.0000023451,0.0000023427, -0.0000023385,0.0000023332,0.0000023274,0.0000023220,0.0000023178, -0.0000023151,0.0000023136,0.0000023126,0.0000023116,0.0000023109, -0.0000023113,0.0000023128,0.0000023156,0.0000023189,0.0000023217, -0.0000023229,0.0000023234,0.0000023232,0.0000023213,0.0000023182, -0.0000023147,0.0000023117,0.0000023095,0.0000023081,0.0000023073, -0.0000023069,0.0000023068,0.0000023065,0.0000023053,0.0000023025, -0.0000022982,0.0000022924,0.0000022856,0.0000022783,0.0000022713, -0.0000022644,0.0000022580,0.0000022517,0.0000022466,0.0000022429, -0.0000022410,0.0000022406,0.0000022412,0.0000022425,0.0000022444, -0.0000022470,0.0000022501,0.0000022530,0.0000022547,0.0000022551, -0.0000022547,0.0000022546,0.0000022560,0.0000022592,0.0000022632, -0.0000022666,0.0000022686,0.0000022690,0.0000022665,0.0000022602, -0.0000022515,0.0000022433,0.0000022378,0.0000022351,0.0000022341, -0.0000022335,0.0000022326,0.0000022314,0.0000022292,0.0000022260, -0.0000022219,0.0000022173,0.0000022134,0.0000022107,0.0000022091, -0.0000022081,0.0000022081,0.0000022085,0.0000022087,0.0000022090, -0.0000022091,0.0000022089,0.0000022088,0.0000022088,0.0000022087, -0.0000022087,0.0000022085,0.0000022097,0.0000022123,0.0000022163, -0.0000022212,0.0000022269,0.0000022338,0.0000022412,0.0000022479, -0.0000022536,0.0000022588,0.0000022638,0.0000022679,0.0000022703, -0.0000022707,0.0000022699,0.0000022684,0.0000022667,0.0000022653, -0.0000022646,0.0000022645,0.0000022644,0.0000022643,0.0000022646, -0.0000022648,0.0000022648,0.0000022647,0.0000022642,0.0000022643, -0.0000022646,0.0000022657,0.0000022667,0.0000022667,0.0000022671, -0.0000022682,0.0000022697,0.0000022706,0.0000022704,0.0000022691, -0.0000022672,0.0000022663,0.0000022666,0.0000022670,0.0000022675, -0.0000022684,0.0000022691,0.0000022696,0.0000022696,0.0000022691, -0.0000022685,0.0000022682,0.0000022676,0.0000022668,0.0000022663, -0.0000022662,0.0000022663,0.0000022666,0.0000022682,0.0000022708, -0.0000022745,0.0000022802,0.0000022870,0.0000022942,0.0000023005, -0.0000023051,0.0000023077,0.0000023091,0.0000023090,0.0000023073, -0.0000023042,0.0000023006,0.0000022978,0.0000022962,0.0000022948, -0.0000022936,0.0000022927,0.0000022914,0.0000022894,0.0000022867, -0.0000022848,0.0000022839,0.0000022840,0.0000022855,0.0000022877, -0.0000022894,0.0000022898,0.0000022889,0.0000022872,0.0000022857, -0.0000022831,0.0000022783,0.0000022716,0.0000022649,0.0000022593, -0.0000022558,0.0000022554,0.0000022561,0.0000022569,0.0000022569, -0.0000022553,0.0000022513,0.0000022474,0.0000022446,0.0000022422, -0.0000022394,0.0000022367,0.0000022351,0.0000022350,0.0000022370, -0.0000022405,0.0000022440,0.0000022466,0.0000022482,0.0000022496, -0.0000022512,0.0000022530,0.0000022549,0.0000022567,0.0000022579, -0.0000022586,0.0000022594,0.0000022603,0.0000022602,0.0000022588, -0.0000022589,0.0000022669,0.0000022760,0.0000022753,0.0000022718, -0.0000022757,0.0000022885,0.0000022993,0.0000023070,0.0000023206, -0.0000023234,0.0000023165,0.0000023094,0.0000022940,0.0000022757, -0.0000022689,0.0000022681,0.0000022742,0.0000022842,0.0000022860, -0.0000022795,0.0000022737,0.0000022749,0.0000022780,0.0000022759, -0.0000022746,0.0000022773,0.0000022855,0.0000022942,0.0000023079, -0.0000023289,0.0000023465,0.0000023508,0.0000023545,0.0000023443, -0.0000023230,0.0000023186,0.0000023193,0.0000023187,0.0000023162, -0.0000023097,0.0000023003,0.0000022959,0.0000022990,0.0000023050, -0.0000023069,0.0000023035,0.0000022955,0.0000022904,0.0000022919, -0.0000022979,0.0000023042,0.0000023091,0.0000023111,0.0000023116, -0.0000023106,0.0000023071,0.0000022996,0.0000022903,0.0000022835, -0.0000022800,0.0000022759,0.0000022762,0.0000022829,0.0000022916, -0.0000022964,0.0000022973,0.0000022977,0.0000022965,0.0000022965, -0.0000022968,0.0000022966,0.0000022987,0.0000023044,0.0000023080, -0.0000023076,0.0000023034,0.0000022934,0.0000022844,0.0000022832, -0.0000022773,0.0000022681,0.0000022517,0.0000022234,0.0000022132, -0.0000022248,0.0000022348,0.0000022373,0.0000022397,0.0000022334, -0.0000022043,0.0000021814,0.0000021888,0.0000022106,0.0000022285, -0.0000022397,0.0000022498,0.0000022604,0.0000022695,0.0000022755, -0.0000022770,0.0000022746,0.0000022706,0.0000022667,0.0000022618, -0.0000022541,0.0000022443,0.0000022374,0.0000022386,0.0000022496, -0.0000022644,0.0000022733,0.0000022717,0.0000022597,0.0000022451, -0.0000022308,0.0000022131,0.0000022041,0.0000022061,0.0000022167, -0.0000022302,0.0000022377,0.0000022377,0.0000022350,0.0000022325, -0.0000022323,0.0000022317,0.0000022292,0.0000022289,0.0000022327, -0.0000022391,0.0000022502,0.0000022643,0.0000022726,0.0000022745, -0.0000022743,0.0000022730,0.0000022718,0.0000022707,0.0000022705, -0.0000022713,0.0000022714,0.0000022732,0.0000022766,0.0000022786, -0.0000022815,0.0000022892,0.0000022992,0.0000023075,0.0000023124, -0.0000023152,0.0000023178,0.0000023212,0.0000023255,0.0000023303, -0.0000023342,0.0000023378,0.0000023417,0.0000023464,0.0000023510, -0.0000023556,0.0000023601,0.0000023633,0.0000023652,0.0000023660, -0.0000023655,0.0000023640,0.0000023617,0.0000023576,0.0000023519, -0.0000023437,0.0000023336,0.0000023237,0.0000023154,0.0000023093, -0.0000023064,0.0000023065,0.0000023091,0.0000023123,0.0000023147, -0.0000023161,0.0000023173,0.0000023186,0.0000023206,0.0000023235, -0.0000023268,0.0000023299,0.0000023312,0.0000023307,0.0000023288, -0.0000023269,0.0000023243,0.0000023218,0.0000023219,0.0000023237, -0.0000023274,0.0000023306,0.0000023335,0.0000023365,0.0000023388, -0.0000023392,0.0000023377,0.0000023326,0.0000023256,0.0000023180, -0.0000023111,0.0000023054,0.0000023008,0.0000022968,0.0000022955, -0.0000023010,0.0000023118,0.0000023228,0.0000023294,0.0000023308, -0.0000023294,0.0000023264,0.0000023258,0.0000023278,0.0000023318, -0.0000023349,0.0000023368,0.0000023406,0.0000023488,0.0000023579, -0.0000023647,0.0000023682,0.0000023695,0.0000023703,0.0000023726, -0.0000023761,0.0000023791,0.0000023846,0.0000023946,0.0000024036, -0.0000024049,0.0000023991,0.0000023941,0.0000023935,0.0000023905, -0.0000023862,0.0000023854,0.0000023853,0.0000023825,0.0000023795, -0.0000023790,0.0000023800,0.0000023810,0.0000023817,0.0000023824, -0.0000023828,0.0000023828,0.0000023824,0.0000023812,0.0000023793, -0.0000023768,0.0000023739,0.0000023705,0.0000023664,0.0000023617, -0.0000023571,0.0000023530,0.0000023492,0.0000023453,0.0000023404, -0.0000023356,0.0000023329,0.0000023327,0.0000023337,0.0000023342, -0.0000023339,0.0000023328,0.0000023312,0.0000023292,0.0000023267, -0.0000023238,0.0000023203,0.0000023161,0.0000023117,0.0000023071, -0.0000023028,0.0000022985,0.0000022936,0.0000022883,0.0000022834, -0.0000022789,0.0000022747,0.0000022703,0.0000022662,0.0000022628, -0.0000022599,0.0000022573,0.0000022549,0.0000022527,0.0000022511, -0.0000022499,0.0000022491,0.0000022480,0.0000022466,0.0000022447, -0.0000022430,0.0000022423,0.0000022428,0.0000022439,0.0000022454, -0.0000022469,0.0000022479,0.0000022482,0.0000022483,0.0000022476, -0.0000022459,0.0000022435,0.0000022408,0.0000022391,0.0000022386, -0.0000022388,0.0000022392,0.0000022402,0.0000022425,0.0000022458, -0.0000022490,0.0000022521,0.0000022546,0.0000022564,0.0000022571, -0.0000022550,0.0000022534,0.0000022504,0.0000022470,0.0000022439, -0.0000022419,0.0000022412,0.0000022418,0.0000022441,0.0000022463, -0.0000022484,0.0000022512,0.0000022535,0.0000022550,0.0000022559, -0.0000022565,0.0000022566,0.0000022565,0.0000022552,0.0000022525, -0.0000022490,0.0000022453,0.0000022421,0.0000022399,0.0000022384, -0.0000022373,0.0000022360,0.0000022346,0.0000022344,0.0000022349, -0.0000022352,0.0000022353,0.0000022350,0.0000022336,0.0000022332, -0.0000022310,0.0000022308,0.0000022315,0.0000022329,0.0000022358, -0.0000022412,0.0000022478,0.0000022541,0.0000022602,0.0000022665, -0.0000022736,0.0000022810,0.0000022879,0.0000022930,0.0000022959, -0.0000022958,0.0000022938,0.0000022915,0.0000022893,0.0000022869, -0.0000022851,0.0000022850,0.0000022877,0.0000022927,0.0000022991, -0.0000023045,0.0000023029,0.0000022942,0.0000022920,0.0000022955, -0.0000022965,0.0000023072,0.0000023307,0.0000023455,0.0000023448, -0.0000023334,0.0000023237,0.0000023222,0.0000023239,0.0000023236, -0.0000023196,0.0000023139,0.0000023088,0.0000023051,0.0000023016, -0.0000022954,0.0000022873,0.0000022795,0.0000022705,0.0000022597, -0.0000022502,0.0000022436,0.0000022390,0.0000022353,0.0000022323, -0.0000022306,0.0000022302,0.0000022309,0.0000022310,0.0000022294, -0.0000022264,0.0000022215,0.0000022144,0.0000022051,0.0000021964, -0.0000021924,0.0000021957,0.0000022047,0.0000022113,0.0000022126, -0.0000022094,0.0000022012,0.0000021939,0.0000021898,0.0000021878, -0.0000021867,0.0000021852,0.0000021837,0.0000021809,0.0000021766, -0.0000021751,0.0000021755,0.0000021783,0.0000021851,0.0000021952, -0.0000022073,0.0000022156,0.0000022200,0.0000022187,0.0000022139, -0.0000022065,0.0000021968,0.0000021870,0.0000021846,0.0000021870, -0.0000022051,0.0000022446,0.0000022896,0.0000023075,0.0000022987, -0.0000022686,0.0000022413,0.0000022268,0.0000022215,0.0000022167, -0.0000022067,0.0000021945,0.0000021853,0.0000021780,0.0000021719, -0.0000021693,0.0000021692,0.0000021675,0.0000021627,0.0000021589, -0.0000021600,0.0000021644,0.0000021687,0.0000021737,0.0000021807, -0.0000021870,0.0000021908,0.0000021952,0.0000022022,0.0000022075, -0.0000022081,0.0000022051,0.0000021993,0.0000021913,0.0000021825, -0.0000021739,0.0000021665,0.0000021615,0.0000021593,0.0000021567, -0.0000021508,0.0000021441,0.0000021377,0.0000021301,0.0000021234, -0.0000021212,0.0000021218,0.0000021253,0.0000021329,0.0000021447, -0.0000021576,0.0000021696,0.0000021788,0.0000021837,0.0000021860, -0.0000021904,0.0000021991,0.0000022092,0.0000022152,0.0000022139, -0.0000022052,0.0000021927,0.0000021814,0.0000021725,0.0000021655, -0.0000021601,0.0000021562,0.0000021534,0.0000021518,0.0000021519, -0.0000021532,0.0000021552,0.0000021571,0.0000021587,0.0000021604, -0.0000021636,0.0000021687,0.0000021743,0.0000021785,0.0000021799, -0.0000021787,0.0000021745,0.0000021683,0.0000021610,0.0000021533, -0.0000021465,0.0000021422,0.0000021414,0.0000021421,0.0000021436, -0.0000021443,0.0000021429,0.0000021391,0.0000021351,0.0000021338, -0.0000021360,0.0000021408,0.0000021464,0.0000021521,0.0000021571, -0.0000021596,0.0000021590,0.0000021584,0.0000021549,0.0000021447, -0.0000021298,0.0000021157,0.0000021067,0.0000021021,0.0000020996, -0.0000020978,0.0000020959,0.0000020958,0.0000021023,0.0000021182, -0.0000021377,0.0000021509,0.0000021565,0.0000021602,0.0000021667, -0.0000021756,0.0000021844,0.0000021924,0.0000022005,0.0000022098, -0.0000022197,0.0000022304,0.0000022439,0.0000022609,0.0000022794, -0.0000022979,0.0000023161,0.0000023321,0.0000023412,0.0000023407, -0.0000023361,0.0000023335,0.0000023391,0.0000023512,0.0000023677, -0.0000023899,0.0000024186,0.0000024470,0.0000024646,0.0000024691, -0.0000024667,0.0000024643,0.0000024661,0.0000024721,0.0000024755, -0.0000024688,0.0000024522,0.0000024350,0.0000024264,0.0000024259, -0.0000024280,0.0000024295,0.0000024326,0.0000024395,0.0000024498, -0.0000024597,0.0000024644,0.0000024621,0.0000024542,0.0000024423, -0.0000024274,0.0000024130,0.0000024036,0.0000024019,0.0000024060, -0.0000024122,0.0000024166,0.0000024182,0.0000024179,0.0000024155, -0.0000024116,0.0000024066,0.0000024019,0.0000023989,0.0000023982, -0.0000023987,0.0000024007,0.0000024024,0.0000024025,0.0000024009, -0.0000023994,0.0000024010,0.0000024067,0.0000024140,0.0000024200, -0.0000024234,0.0000024244,0.0000024245,0.0000024217,0.0000024161, -0.0000024081,0.0000023992,0.0000023905,0.0000023813,0.0000023711, -0.0000023611,0.0000023524,0.0000023462,0.0000023434,0.0000023447, -0.0000023492,0.0000023566,0.0000023650,0.0000023741,0.0000023822, -0.0000023885,0.0000023942,0.0000023989,0.0000024029,0.0000024045, -0.0000024023,0.0000024030,0.0000024022,0.0000024012,0.0000023996, -0.0000023970,0.0000023940,0.0000023907,0.0000023867,0.0000023814, -0.0000023745,0.0000023658,0.0000023558,0.0000023461,0.0000023382, -0.0000023330,0.0000023294,0.0000023268,0.0000023243,0.0000023220, -0.0000023198,0.0000023173,0.0000023135,0.0000023081,0.0000023021, -0.0000022966,0.0000022918,0.0000022871,0.0000022817,0.0000022762, -0.0000022710,0.0000022661,0.0000022623,0.0000022603,0.0000022602, -0.0000022621,0.0000022640,0.0000022657,0.0000022657,0.0000022649, -0.0000022639,0.0000022640,0.0000022647,0.0000022656,0.0000022668, -0.0000022682,0.0000022696,0.0000022710,0.0000022719,0.0000022721, -0.0000022721,0.0000022727,0.0000022731,0.0000022730,0.0000022729, -0.0000022735,0.0000022747,0.0000022741,0.0000022728,0.0000022709, -0.0000022704,0.0000022708,0.0000022704,0.0000022687,0.0000022643, -0.0000022555,0.0000022407,0.0000022229,0.0000022070,0.0000021968, -0.0000021930,0.0000021931,0.0000021935,0.0000021938,0.0000021934, -0.0000021928,0.0000021925,0.0000021912,0.0000021890,0.0000021842, -0.0000021755,0.0000021638,0.0000021524,0.0000021418,0.0000021340, -0.0000021294,0.0000021292,0.0000021312,0.0000021343,0.0000021385, -0.0000021437,0.0000021488,0.0000021528,0.0000021554,0.0000021571, -0.0000021577,0.0000021575,0.0000021565,0.0000021551,0.0000021534, -0.0000021518,0.0000021501,0.0000021491,0.0000021490,0.0000021486, -0.0000021482,0.0000021472,0.0000021460,0.0000021454,0.0000021455, -0.0000021453,0.0000021436,0.0000021406,0.0000021374,0.0000021346, -0.0000021326,0.0000021294,0.0000021264,0.0000021240,0.0000021215, -0.0000021188,0.0000021161,0.0000021143,0.0000021131,0.0000021133, -0.0000021144,0.0000021170,0.0000021206,0.0000021248,0.0000021298, -0.0000021350,0.0000021390,0.0000021386,0.0000021343,0.0000021278, -0.0000021181,0.0000021112,0.0000021092,0.0000021102,0.0000021115, -0.0000021119,0.0000021128,0.0000021143,0.0000021152,0.0000021156, -0.0000021155,0.0000021152,0.0000021151,0.0000021147,0.0000021135, -0.0000021120,0.0000021107,0.0000021097,0.0000021087,0.0000021082, -0.0000021078,0.0000021082,0.0000021090,0.0000021094,0.0000021097, -0.0000021102,0.0000021105,0.0000021105,0.0000021102,0.0000021096, -0.0000021078,0.0000021056,0.0000021043,0.0000021041,0.0000021048, -0.0000021064,0.0000021095,0.0000021134,0.0000021168,0.0000021200, -0.0000021232,0.0000021261,0.0000021284,0.0000021300,0.0000021312, -0.0000021314,0.0000021304,0.0000021279,0.0000021237,0.0000021188, -0.0000021139,0.0000021112,0.0000021109,0.0000021109,0.0000021096, -0.0000021081,0.0000021088,0.0000021126,0.0000021187,0.0000021273, -0.0000021389,0.0000021496,0.0000021541,0.0000021533,0.0000021497, -0.0000021450,0.0000021405,0.0000021367,0.0000021340,0.0000021334, -0.0000021370,0.0000021457,0.0000021548,0.0000021617,0.0000021653, -0.0000021658,0.0000021612,0.0000021515,0.0000021455,0.0000021453, -0.0000021465,0.0000021466,0.0000021442,0.0000021396,0.0000021335, -0.0000021276,0.0000021237,0.0000021212,0.0000021181,0.0000021147, -0.0000021123,0.0000021124,0.0000021155,0.0000021208,0.0000021270, -0.0000021329,0.0000021370,0.0000021396,0.0000021418,0.0000021424, -0.0000021389,0.0000021324,0.0000021284,0.0000021275,0.0000021269, -0.0000021246,0.0000021201,0.0000021155,0.0000021155,0.0000021223, -0.0000021309,0.0000021346,0.0000021321,0.0000021249,0.0000021191, -0.0000021173,0.0000021163,0.0000021143,0.0000021125,0.0000021115, -0.0000021112,0.0000021112,0.0000021108,0.0000021100,0.0000021095, -0.0000021097,0.0000021113,0.0000021144,0.0000021185,0.0000021221, -0.0000021242,0.0000021256,0.0000021271,0.0000021285,0.0000021298, -0.0000021310,0.0000021312,0.0000021295,0.0000021260,0.0000021218, -0.0000021171,0.0000021126,0.0000021097,0.0000021092,0.0000021105, -0.0000021138,0.0000021190,0.0000021252,0.0000021301,0.0000021326, -0.0000021335,0.0000021335,0.0000021331,0.0000021331,0.0000021341, -0.0000021339,0.0000021305,0.0000021248,0.0000021228,0.0000021246, -0.0000021205,0.0000021041,0.0000020866,0.0000020791,0.0000020860, -0.0000021149,0.0000021517,0.0000021745,0.0000021860,0.0000021950, -0.0000022025,0.0000022081,0.0000022107,0.0000022096,0.0000022072, -0.0000022052,0.0000022031,0.0000022018,0.0000022025,0.0000022050, -0.0000022073,0.0000022086,0.0000022101,0.0000022118,0.0000022123, -0.0000022113,0.0000022081,0.0000022016,0.0000021883,0.0000021684, -0.0000021503,0.0000021422,0.0000021427,0.0000021448,0.0000021453, -0.0000021496,0.0000021644,0.0000021845,0.0000021984,0.0000022049, -0.0000022081,0.0000022095,0.0000022100,0.0000022126,0.0000022182, -0.0000022217,0.0000022192,0.0000022089,0.0000021953,0.0000021854, -0.0000021805,0.0000021847,0.0000021775,0.0000021574,0.0000021505, -0.0000021557,0.0000021687,0.0000021959,0.0000022275,0.0000022406, -0.0000022404,0.0000022419,0.0000022481,0.0000022543,0.0000022580, -0.0000022610,0.0000022639,0.0000022670,0.0000022721,0.0000022804, -0.0000022901,0.0000022980,0.0000023026,0.0000023036,0.0000023032, -0.0000023025,0.0000023026,0.0000023028,0.0000023022,0.0000023010, -0.0000022995,0.0000022976,0.0000022952,0.0000022925,0.0000022904, -0.0000022896,0.0000022900,0.0000022915,0.0000022934,0.0000022952, -0.0000022961,0.0000022960,0.0000022951,0.0000022936,0.0000022924, -0.0000022922,0.0000022927,0.0000022932,0.0000022939,0.0000022945, -0.0000022946,0.0000022944,0.0000022947,0.0000022956,0.0000022966, -0.0000022978,0.0000022997,0.0000023018,0.0000023035,0.0000023045, -0.0000023048,0.0000023040,0.0000023017,0.0000022974,0.0000022918, -0.0000022862,0.0000022808,0.0000022764,0.0000022734,0.0000022718, -0.0000022711,0.0000022713,0.0000022717,0.0000022706,0.0000022681, -0.0000022632,0.0000022576,0.0000022540,0.0000022530,0.0000022528, -0.0000022525,0.0000022534,0.0000022557,0.0000022581,0.0000022602, -0.0000022621,0.0000022624,0.0000022607,0.0000022572,0.0000022532, -0.0000022492,0.0000022452,0.0000022419,0.0000022396,0.0000022376, -0.0000022361,0.0000022350,0.0000022339,0.0000022327,0.0000022311, -0.0000022302,0.0000022295,0.0000022273,0.0000022237,0.0000022191, -0.0000022134,0.0000022067,0.0000022003,0.0000021950,0.0000021912, -0.0000021888,0.0000021877,0.0000021873,0.0000021860,0.0000021844, -0.0000021833,0.0000021810,0.0000021800,0.0000021819,0.0000021848, -0.0000021884,0.0000021950,0.0000022028,0.0000022099,0.0000022182, -0.0000022283,0.0000022393,0.0000022512,0.0000022626,0.0000022721, -0.0000022795,0.0000022840,0.0000022847,0.0000022827,0.0000022804, -0.0000022799,0.0000022802,0.0000022798,0.0000022784,0.0000022765, -0.0000022754,0.0000022750,0.0000022743,0.0000022727,0.0000022710, -0.0000022707,0.0000022712,0.0000022725,0.0000022744,0.0000022762, -0.0000022780,0.0000022800,0.0000022824,0.0000022855,0.0000022890, -0.0000022923,0.0000022952,0.0000022984,0.0000023011,0.0000023024, -0.0000023033,0.0000023046,0.0000023053,0.0000023066,0.0000023057, -0.0000023033,0.0000022984,0.0000022915,0.0000022844,0.0000022801, -0.0000022798,0.0000022838,0.0000022920,0.0000023016,0.0000023095, -0.0000023142,0.0000023166,0.0000023171,0.0000023165,0.0000023152, -0.0000023128,0.0000023093,0.0000023059,0.0000023024,0.0000023012, -0.0000023018,0.0000023041,0.0000023085,0.0000023143,0.0000023202, -0.0000023255,0.0000023302,0.0000023342,0.0000023373,0.0000023404, -0.0000023426,0.0000023419,0.0000023404,0.0000023366,0.0000023315, -0.0000023261,0.0000023212,0.0000023174,0.0000023148,0.0000023131, -0.0000023116,0.0000023107,0.0000023099,0.0000023107,0.0000023133, -0.0000023168,0.0000023202,0.0000023226,0.0000023230,0.0000023223, -0.0000023200,0.0000023172,0.0000023145,0.0000023126,0.0000023114, -0.0000023110,0.0000023109,0.0000023108,0.0000023103,0.0000023088, -0.0000023057,0.0000023005,0.0000022939,0.0000022869,0.0000022798, -0.0000022729,0.0000022666,0.0000022611,0.0000022563,0.0000022523, -0.0000022496,0.0000022485,0.0000022484,0.0000022493,0.0000022509, -0.0000022531,0.0000022556,0.0000022581,0.0000022599,0.0000022605, -0.0000022603,0.0000022598,0.0000022598,0.0000022610,0.0000022637, -0.0000022674,0.0000022707,0.0000022731,0.0000022741,0.0000022728, -0.0000022675,0.0000022593,0.0000022512,0.0000022459,0.0000022438, -0.0000022434,0.0000022435,0.0000022434,0.0000022429,0.0000022414, -0.0000022384,0.0000022342,0.0000022293,0.0000022251,0.0000022219, -0.0000022198,0.0000022180,0.0000022166,0.0000022156,0.0000022148, -0.0000022141,0.0000022131,0.0000022122,0.0000022113,0.0000022102, -0.0000022092,0.0000022079,0.0000022062,0.0000022051,0.0000022035, -0.0000022020,0.0000022011,0.0000022001,0.0000022007,0.0000022030, -0.0000022064,0.0000022106,0.0000022161,0.0000022231,0.0000022308, -0.0000022387,0.0000022462,0.0000022528,0.0000022576,0.0000022606, -0.0000022626,0.0000022632,0.0000022627,0.0000022615,0.0000022604, -0.0000022596,0.0000022586,0.0000022572,0.0000022559,0.0000022543, -0.0000022531,0.0000022518,0.0000022508,0.0000022493,0.0000022473, -0.0000022455,0.0000022453,0.0000022457,0.0000022459,0.0000022455, -0.0000022447,0.0000022442,0.0000022444,0.0000022449,0.0000022456, -0.0000022462,0.0000022471,0.0000022483,0.0000022495,0.0000022504, -0.0000022507,0.0000022506,0.0000022508,0.0000022512,0.0000022513, -0.0000022511,0.0000022510,0.0000022509,0.0000022506,0.0000022510, -0.0000022526,0.0000022556,0.0000022610,0.0000022680,0.0000022758, -0.0000022834,0.0000022892,0.0000022929,0.0000022949,0.0000022959, -0.0000022955,0.0000022939,0.0000022907,0.0000022874,0.0000022846, -0.0000022821,0.0000022793,0.0000022766,0.0000022745,0.0000022725, -0.0000022705,0.0000022692,0.0000022692,0.0000022705,0.0000022733, -0.0000022773,0.0000022817,0.0000022856,0.0000022874,0.0000022874, -0.0000022875,0.0000022872,0.0000022843,0.0000022787,0.0000022715, -0.0000022652,0.0000022606,0.0000022576,0.0000022564,0.0000022569, -0.0000022589,0.0000022606,0.0000022597,0.0000022560,0.0000022513, -0.0000022473,0.0000022443,0.0000022415,0.0000022401,0.0000022401, -0.0000022415,0.0000022454,0.0000022497,0.0000022530,0.0000022552, -0.0000022558,0.0000022554,0.0000022546,0.0000022537,0.0000022530, -0.0000022520,0.0000022506,0.0000022503,0.0000022522,0.0000022553, -0.0000022569,0.0000022559,0.0000022571,0.0000022688,0.0000022753, -0.0000022725,0.0000022719,0.0000022826,0.0000022971,0.0000023039, -0.0000023177,0.0000023238,0.0000023167,0.0000023088,0.0000022910, -0.0000022735,0.0000022644,0.0000022620,0.0000022710,0.0000022830, -0.0000022849,0.0000022785,0.0000022748,0.0000022777,0.0000022812, -0.0000022797,0.0000022776,0.0000022782,0.0000022846,0.0000022932, -0.0000023044,0.0000023230,0.0000023428,0.0000023502,0.0000023550, -0.0000023507,0.0000023299,0.0000023205,0.0000023220,0.0000023214, -0.0000023198,0.0000023156,0.0000023071,0.0000022988,0.0000022963, -0.0000022981,0.0000022989,0.0000022965,0.0000022916,0.0000022875, -0.0000022888,0.0000022945,0.0000023006,0.0000023058,0.0000023087, -0.0000023095,0.0000023079,0.0000023032,0.0000022952,0.0000022866, -0.0000022827,0.0000022818,0.0000022814,0.0000022832,0.0000022886, -0.0000022939,0.0000022957,0.0000022948,0.0000022954,0.0000022958, -0.0000022967,0.0000022974,0.0000022969,0.0000022982,0.0000023037, -0.0000023094,0.0000023101,0.0000023065,0.0000022984,0.0000022878, -0.0000022841,0.0000022790,0.0000022691,0.0000022538,0.0000022253, -0.0000022108,0.0000022209,0.0000022302,0.0000022312,0.0000022335, -0.0000022296,0.0000022023,0.0000021778,0.0000021844,0.0000022078, -0.0000022268,0.0000022377,0.0000022473,0.0000022584,0.0000022677, -0.0000022738,0.0000022756,0.0000022736,0.0000022696,0.0000022649, -0.0000022593,0.0000022513,0.0000022416,0.0000022354,0.0000022364, -0.0000022460,0.0000022610,0.0000022723,0.0000022737,0.0000022641, -0.0000022498,0.0000022363,0.0000022182,0.0000022039,0.0000022029, -0.0000022098,0.0000022227,0.0000022335,0.0000022363,0.0000022355, -0.0000022338,0.0000022333,0.0000022338,0.0000022328,0.0000022316, -0.0000022340,0.0000022387,0.0000022452,0.0000022562,0.0000022664, -0.0000022705,0.0000022709,0.0000022700,0.0000022682,0.0000022672, -0.0000022666,0.0000022671,0.0000022677,0.0000022686,0.0000022721, -0.0000022746,0.0000022770,0.0000022863,0.0000022998,0.0000023095, -0.0000023136,0.0000023148,0.0000023158,0.0000023176,0.0000023204, -0.0000023241,0.0000023281,0.0000023315,0.0000023348,0.0000023393, -0.0000023443,0.0000023487,0.0000023530,0.0000023569,0.0000023595, -0.0000023606,0.0000023609,0.0000023611,0.0000023610,0.0000023601, -0.0000023597,0.0000023586,0.0000023552,0.0000023486,0.0000023386, -0.0000023273,0.0000023167,0.0000023085,0.0000023051,0.0000023046, -0.0000023067,0.0000023095,0.0000023120,0.0000023140,0.0000023158, -0.0000023178,0.0000023197,0.0000023217,0.0000023234,0.0000023243, -0.0000023244,0.0000023239,0.0000023228,0.0000023212,0.0000023210, -0.0000023228,0.0000023259,0.0000023296,0.0000023315,0.0000023330, -0.0000023349,0.0000023364,0.0000023364,0.0000023339,0.0000023280, -0.0000023207,0.0000023135,0.0000023069,0.0000023010,0.0000022957, -0.0000022921,0.0000022931,0.0000023017,0.0000023135,0.0000023231, -0.0000023283,0.0000023305,0.0000023317,0.0000023333,0.0000023358, -0.0000023381,0.0000023388,0.0000023385,0.0000023395,0.0000023440, -0.0000023515,0.0000023581,0.0000023617,0.0000023632,0.0000023638, -0.0000023655,0.0000023689,0.0000023729,0.0000023769,0.0000023842, -0.0000023951,0.0000024040,0.0000024057,0.0000024008,0.0000023951, -0.0000023943,0.0000023929,0.0000023877,0.0000023851,0.0000023851, -0.0000023831,0.0000023793,0.0000023771,0.0000023771,0.0000023781, -0.0000023792,0.0000023795,0.0000023790,0.0000023782,0.0000023773, -0.0000023759,0.0000023735,0.0000023703,0.0000023669,0.0000023632, -0.0000023591,0.0000023546,0.0000023501,0.0000023466,0.0000023432, -0.0000023390,0.0000023339,0.0000023293,0.0000023276,0.0000023282, -0.0000023292,0.0000023292,0.0000023284,0.0000023271,0.0000023254, -0.0000023233,0.0000023209,0.0000023181,0.0000023147,0.0000023104, -0.0000023053,0.0000022994,0.0000022936,0.0000022882,0.0000022826, -0.0000022773,0.0000022727,0.0000022691,0.0000022654,0.0000022620, -0.0000022594,0.0000022576,0.0000022560,0.0000022543,0.0000022530, -0.0000022518,0.0000022512,0.0000022510,0.0000022506,0.0000022495, -0.0000022475,0.0000022448,0.0000022429,0.0000022418,0.0000022413, -0.0000022410,0.0000022412,0.0000022407,0.0000022407,0.0000022408, -0.0000022409,0.0000022408,0.0000022395,0.0000022374,0.0000022347, -0.0000022328,0.0000022313,0.0000022302,0.0000022293,0.0000022291, -0.0000022306,0.0000022335,0.0000022370,0.0000022404,0.0000022440, -0.0000022477,0.0000022506,0.0000022514,0.0000022504,0.0000022490, -0.0000022468,0.0000022445,0.0000022425,0.0000022412,0.0000022408, -0.0000022419,0.0000022439,0.0000022457,0.0000022476,0.0000022500, -0.0000022524,0.0000022540,0.0000022551,0.0000022561,0.0000022565, -0.0000022568,0.0000022560,0.0000022544,0.0000022520,0.0000022488, -0.0000022457,0.0000022437,0.0000022426,0.0000022413,0.0000022395, -0.0000022386,0.0000022388,0.0000022391,0.0000022390,0.0000022385, -0.0000022374,0.0000022357,0.0000022329,0.0000022305,0.0000022291, -0.0000022265,0.0000022251,0.0000022264,0.0000022308,0.0000022375, -0.0000022439,0.0000022482,0.0000022511,0.0000022561,0.0000022641, -0.0000022731,0.0000022815,0.0000022864,0.0000022875,0.0000022868, -0.0000022856,0.0000022845,0.0000022836,0.0000022827,0.0000022832, -0.0000022844,0.0000022865,0.0000022908,0.0000022959,0.0000022943, -0.0000022905,0.0000022927,0.0000022961,0.0000022970,0.0000023112, -0.0000023344,0.0000023459,0.0000023426,0.0000023294,0.0000023199, -0.0000023175,0.0000023168,0.0000023138,0.0000023092,0.0000023065, -0.0000023053,0.0000023038,0.0000022995,0.0000022916,0.0000022825, -0.0000022726,0.0000022608,0.0000022498,0.0000022411,0.0000022335, -0.0000022273,0.0000022225,0.0000022193,0.0000022175,0.0000022161, -0.0000022147,0.0000022124,0.0000022093,0.0000022051,0.0000022003, -0.0000021959,0.0000021953,0.0000021975,0.0000022040,0.0000022095, -0.0000022099,0.0000022044,0.0000021982,0.0000021947,0.0000021952, -0.0000021989,0.0000022023,0.0000022037,0.0000022036,0.0000022026, -0.0000022009,0.0000021977,0.0000021935,0.0000021897,0.0000021861, -0.0000021829,0.0000021829,0.0000021854,0.0000021918,0.0000022007, -0.0000022104,0.0000022177,0.0000022221,0.0000022232,0.0000022195, -0.0000022122,0.0000022021,0.0000021928,0.0000021922,0.0000022104, -0.0000022529,0.0000022970,0.0000023099,0.0000022883,0.0000022554, -0.0000022322,0.0000022222,0.0000022187,0.0000022131,0.0000022026, -0.0000021913,0.0000021820,0.0000021744,0.0000021697,0.0000021692, -0.0000021702,0.0000021681,0.0000021636,0.0000021624,0.0000021654, -0.0000021698,0.0000021732,0.0000021771,0.0000021813,0.0000021849, -0.0000021891,0.0000021950,0.0000022002,0.0000022019,0.0000022005, -0.0000021961,0.0000021883,0.0000021789,0.0000021698,0.0000021622, -0.0000021570,0.0000021546,0.0000021525,0.0000021477,0.0000021420, -0.0000021362,0.0000021287,0.0000021220,0.0000021206,0.0000021227, -0.0000021286,0.0000021378,0.0000021490,0.0000021610,0.0000021723, -0.0000021797,0.0000021830,0.0000021863,0.0000021929,0.0000022029, -0.0000022128,0.0000022169,0.0000022143,0.0000022062,0.0000021971, -0.0000021898,0.0000021840,0.0000021784,0.0000021730,0.0000021682, -0.0000021642,0.0000021615,0.0000021608,0.0000021616,0.0000021632, -0.0000021651,0.0000021675,0.0000021707,0.0000021755,0.0000021815, -0.0000021866,0.0000021895,0.0000021896,0.0000021868,0.0000021812, -0.0000021744,0.0000021672,0.0000021599,0.0000021531,0.0000021474, -0.0000021435,0.0000021419,0.0000021427,0.0000021445,0.0000021449, -0.0000021431,0.0000021393,0.0000021356,0.0000021345,0.0000021358, -0.0000021400,0.0000021448,0.0000021501,0.0000021549,0.0000021575, -0.0000021584,0.0000021583,0.0000021560,0.0000021476,0.0000021347, -0.0000021221,0.0000021128,0.0000021068,0.0000021028,0.0000020995, -0.0000020967,0.0000020961,0.0000021021,0.0000021176,0.0000021366, -0.0000021501,0.0000021565,0.0000021610,0.0000021673,0.0000021755, -0.0000021837,0.0000021919,0.0000022010,0.0000022106,0.0000022203, -0.0000022308,0.0000022440,0.0000022603,0.0000022780,0.0000022960, -0.0000023138,0.0000023291,0.0000023370,0.0000023347,0.0000023284, -0.0000023254,0.0000023309,0.0000023446,0.0000023651,0.0000023921, -0.0000024227,0.0000024483,0.0000024618,0.0000024639,0.0000024613, -0.0000024596,0.0000024627,0.0000024684,0.0000024710,0.0000024647, -0.0000024508,0.0000024368,0.0000024304,0.0000024313,0.0000024327, -0.0000024321,0.0000024324,0.0000024372,0.0000024459,0.0000024539, -0.0000024573,0.0000024548,0.0000024474,0.0000024358,0.0000024216, -0.0000024082,0.0000024011,0.0000024007,0.0000024047,0.0000024096, -0.0000024132,0.0000024147,0.0000024139,0.0000024112,0.0000024069, -0.0000024020,0.0000023979,0.0000023965,0.0000023973,0.0000023997, -0.0000024011,0.0000024011,0.0000024001,0.0000024002,0.0000024049, -0.0000024140,0.0000024221,0.0000024259,0.0000024255,0.0000024228, -0.0000024171,0.0000024089,0.0000023994,0.0000023892,0.0000023790, -0.0000023697,0.0000023604,0.0000023496,0.0000023376,0.0000023256, -0.0000023147,0.0000023066,0.0000023032,0.0000023043,0.0000023095, -0.0000023176,0.0000023271,0.0000023373,0.0000023473,0.0000023569, -0.0000023671,0.0000023773,0.0000023856,0.0000023923,0.0000023975, -0.0000024018,0.0000024046,0.0000024066,0.0000024077,0.0000024063, -0.0000024039,0.0000024007,0.0000023971,0.0000023924,0.0000023858, -0.0000023768,0.0000023662,0.0000023552,0.0000023447,0.0000023355, -0.0000023289,0.0000023247,0.0000023218,0.0000023190,0.0000023165, -0.0000023130,0.0000023077,0.0000023009,0.0000022943,0.0000022884, -0.0000022833,0.0000022786,0.0000022735,0.0000022681,0.0000022632, -0.0000022591,0.0000022569,0.0000022567,0.0000022581,0.0000022612, -0.0000022648,0.0000022670,0.0000022689,0.0000022699,0.0000022713, -0.0000022731,0.0000022746,0.0000022752,0.0000022753,0.0000022756, -0.0000022767,0.0000022775,0.0000022775,0.0000022767,0.0000022755, -0.0000022746,0.0000022733,0.0000022714,0.0000022690,0.0000022687, -0.0000022696,0.0000022703,0.0000022695,0.0000022683,0.0000022674, -0.0000022665,0.0000022651,0.0000022635,0.0000022624,0.0000022605, -0.0000022528,0.0000022390,0.0000022230,0.0000022094,0.0000022009, -0.0000021969,0.0000021959,0.0000021961,0.0000021958,0.0000021949, -0.0000021934,0.0000021915,0.0000021902,0.0000021881,0.0000021855, -0.0000021808,0.0000021755,0.0000021684,0.0000021608,0.0000021539, -0.0000021484,0.0000021450,0.0000021436,0.0000021441,0.0000021463, -0.0000021499,0.0000021527,0.0000021544,0.0000021552,0.0000021551, -0.0000021543,0.0000021532,0.0000021521,0.0000021511,0.0000021494, -0.0000021485,0.0000021486,0.0000021488,0.0000021486,0.0000021479, -0.0000021465,0.0000021451,0.0000021441,0.0000021436,0.0000021424, -0.0000021400,0.0000021368,0.0000021343,0.0000021329,0.0000021312, -0.0000021291,0.0000021270,0.0000021250,0.0000021230,0.0000021199, -0.0000021166,0.0000021141,0.0000021123,0.0000021106,0.0000021087, -0.0000021077,0.0000021071,0.0000021081,0.0000021112,0.0000021163, -0.0000021229,0.0000021285,0.0000021319,0.0000021302,0.0000021240, -0.0000021145,0.0000021075,0.0000021060,0.0000021072,0.0000021088, -0.0000021099,0.0000021106,0.0000021113,0.0000021119,0.0000021120, -0.0000021118,0.0000021115,0.0000021107,0.0000021093,0.0000021078, -0.0000021065,0.0000021051,0.0000021035,0.0000021020,0.0000021012, -0.0000021017,0.0000021026,0.0000021029,0.0000021032,0.0000021044, -0.0000021062,0.0000021082,0.0000021096,0.0000021099,0.0000021091, -0.0000021071,0.0000021051,0.0000021035,0.0000021023,0.0000021015, -0.0000021024,0.0000021044,0.0000021069,0.0000021101,0.0000021141, -0.0000021184,0.0000021218,0.0000021248,0.0000021270,0.0000021278, -0.0000021271,0.0000021249,0.0000021215,0.0000021169,0.0000021118, -0.0000021082,0.0000021077,0.0000021086,0.0000021087,0.0000021078, -0.0000021085,0.0000021120,0.0000021175,0.0000021258,0.0000021384, -0.0000021498,0.0000021532,0.0000021513,0.0000021469,0.0000021424, -0.0000021385,0.0000021359,0.0000021351,0.0000021366,0.0000021416, -0.0000021488,0.0000021562,0.0000021617,0.0000021642,0.0000021638, -0.0000021575,0.0000021479,0.0000021425,0.0000021420,0.0000021425, -0.0000021418,0.0000021391,0.0000021345,0.0000021282,0.0000021229, -0.0000021206,0.0000021194,0.0000021169,0.0000021137,0.0000021118, -0.0000021125,0.0000021163,0.0000021220,0.0000021282,0.0000021337, -0.0000021369,0.0000021385,0.0000021402,0.0000021405,0.0000021368, -0.0000021309,0.0000021274,0.0000021264,0.0000021254,0.0000021230, -0.0000021191,0.0000021145,0.0000021125,0.0000021162,0.0000021243, -0.0000021300,0.0000021296,0.0000021234,0.0000021168,0.0000021138, -0.0000021119,0.0000021086,0.0000021052,0.0000021030,0.0000021015, -0.0000021004,0.0000020995,0.0000020987,0.0000020983,0.0000020988, -0.0000021007,0.0000021037,0.0000021076,0.0000021112,0.0000021132, -0.0000021140,0.0000021148,0.0000021160,0.0000021176,0.0000021189, -0.0000021191,0.0000021170,0.0000021131,0.0000021090,0.0000021047, -0.0000021000,0.0000020964,0.0000020955,0.0000020966,0.0000020997, -0.0000021043,0.0000021102,0.0000021164,0.0000021216,0.0000021259, -0.0000021292,0.0000021308,0.0000021305,0.0000021301,0.0000021302, -0.0000021298,0.0000021271,0.0000021225,0.0000021215,0.0000021216, -0.0000021137,0.0000020952,0.0000020798,0.0000020764,0.0000020888, -0.0000021237,0.0000021578,0.0000021767,0.0000021876,0.0000021967, -0.0000022034,0.0000022077,0.0000022089,0.0000022081,0.0000022067, -0.0000022048,0.0000022030,0.0000022028,0.0000022048,0.0000022072, -0.0000022083,0.0000022087,0.0000022092,0.0000022095,0.0000022086, -0.0000022057,0.0000022008,0.0000021929,0.0000021793,0.0000021605, -0.0000021454,0.0000021414,0.0000021438,0.0000021454,0.0000021466, -0.0000021556,0.0000021739,0.0000021911,0.0000022002,0.0000022044, -0.0000022066,0.0000022067,0.0000022066,0.0000022092,0.0000022149, -0.0000022174,0.0000022113,0.0000021983,0.0000021848,0.0000021789, -0.0000021803,0.0000021787,0.0000021601,0.0000021441,0.0000021455, -0.0000021552,0.0000021766,0.0000022106,0.0000022342,0.0000022385, -0.0000022400,0.0000022452,0.0000022519,0.0000022562,0.0000022588, -0.0000022612,0.0000022649,0.0000022711,0.0000022798,0.0000022890, -0.0000022967,0.0000023013,0.0000023030,0.0000023030,0.0000023030, -0.0000023035,0.0000023039,0.0000023038,0.0000023033,0.0000023024, -0.0000023009,0.0000022987,0.0000022960,0.0000022933,0.0000022915, -0.0000022909,0.0000022914,0.0000022927,0.0000022944,0.0000022956, -0.0000022957,0.0000022952,0.0000022939,0.0000022926,0.0000022920, -0.0000022922,0.0000022925,0.0000022932,0.0000022938,0.0000022940, -0.0000022937,0.0000022935,0.0000022938,0.0000022945,0.0000022952, -0.0000022961,0.0000022970,0.0000022974,0.0000022973,0.0000022967, -0.0000022954,0.0000022929,0.0000022893,0.0000022852,0.0000022816, -0.0000022784,0.0000022758,0.0000022737,0.0000022715,0.0000022688, -0.0000022654,0.0000022611,0.0000022559,0.0000022500,0.0000022436, -0.0000022379,0.0000022344,0.0000022336,0.0000022337,0.0000022339, -0.0000022354,0.0000022391,0.0000022430,0.0000022459,0.0000022488, -0.0000022518,0.0000022536,0.0000022535,0.0000022514,0.0000022481, -0.0000022439,0.0000022394,0.0000022361,0.0000022337,0.0000022312, -0.0000022289,0.0000022265,0.0000022238,0.0000022206,0.0000022172, -0.0000022138,0.0000022098,0.0000022043,0.0000021976,0.0000021905, -0.0000021827,0.0000021746,0.0000021684,0.0000021653,0.0000021641, -0.0000021632,0.0000021629,0.0000021628,0.0000021620,0.0000021610, -0.0000021595,0.0000021569,0.0000021557,0.0000021567,0.0000021581, -0.0000021617,0.0000021693,0.0000021786,0.0000021874,0.0000021972, -0.0000022077,0.0000022182,0.0000022287,0.0000022391,0.0000022497, -0.0000022604,0.0000022688,0.0000022735,0.0000022753,0.0000022760, -0.0000022769,0.0000022780,0.0000022781,0.0000022769,0.0000022753, -0.0000022744,0.0000022737,0.0000022726,0.0000022710,0.0000022694, -0.0000022691,0.0000022698,0.0000022713,0.0000022734,0.0000022755, -0.0000022773,0.0000022797,0.0000022835,0.0000022879,0.0000022915, -0.0000022942,0.0000022966,0.0000022977,0.0000022972,0.0000022962, -0.0000022956,0.0000022963,0.0000022985,0.0000023019,0.0000023049, -0.0000023066,0.0000023068,0.0000023042,0.0000022980,0.0000022897, -0.0000022818,0.0000022774,0.0000022762,0.0000022798,0.0000022881, -0.0000022983,0.0000023074,0.0000023133,0.0000023155,0.0000023147, -0.0000023133,0.0000023105,0.0000023067,0.0000023026,0.0000023001, -0.0000022986,0.0000022994,0.0000023020,0.0000023057,0.0000023095, -0.0000023133,0.0000023170,0.0000023202,0.0000023231,0.0000023265, -0.0000023306,0.0000023344,0.0000023371,0.0000023363,0.0000023356, -0.0000023327,0.0000023284,0.0000023237,0.0000023193,0.0000023157, -0.0000023131,0.0000023112,0.0000023096,0.0000023089,0.0000023096, -0.0000023117,0.0000023150,0.0000023184,0.0000023207,0.0000023211, -0.0000023198,0.0000023181,0.0000023165,0.0000023153,0.0000023146, -0.0000023145,0.0000023147,0.0000023148,0.0000023144,0.0000023133, -0.0000023109,0.0000023065,0.0000023007,0.0000022943,0.0000022879, -0.0000022816,0.0000022757,0.0000022707,0.0000022668,0.0000022641, -0.0000022627,0.0000022620,0.0000022620,0.0000022628,0.0000022645, -0.0000022663,0.0000022683,0.0000022699,0.0000022707,0.0000022707, -0.0000022703,0.0000022698,0.0000022698,0.0000022706,0.0000022724, -0.0000022753,0.0000022781,0.0000022801,0.0000022815,0.0000022810, -0.0000022767,0.0000022695,0.0000022619,0.0000022562,0.0000022536, -0.0000022533,0.0000022536,0.0000022540,0.0000022539,0.0000022529, -0.0000022503,0.0000022465,0.0000022421,0.0000022384,0.0000022354, -0.0000022330,0.0000022311,0.0000022292,0.0000022276,0.0000022261, -0.0000022246,0.0000022232,0.0000022218,0.0000022204,0.0000022189, -0.0000022177,0.0000022161,0.0000022141,0.0000022120,0.0000022097, -0.0000022072,0.0000022040,0.0000021996,0.0000021963,0.0000021925, -0.0000021901,0.0000021875,0.0000021852,0.0000021854,0.0000021877, -0.0000021916,0.0000021969,0.0000022040,0.0000022118,0.0000022197, -0.0000022285,0.0000022369,0.0000022436,0.0000022488,0.0000022526, -0.0000022551,0.0000022562,0.0000022560,0.0000022549,0.0000022533, -0.0000022521,0.0000022508,0.0000022490,0.0000022465,0.0000022431, -0.0000022395,0.0000022370,0.0000022352,0.0000022329,0.0000022301, -0.0000022278,0.0000022266,0.0000022259,0.0000022251,0.0000022245, -0.0000022243,0.0000022243,0.0000022250,0.0000022264,0.0000022281, -0.0000022295,0.0000022304,0.0000022313,0.0000022326,0.0000022349, -0.0000022369,0.0000022384,0.0000022390,0.0000022390,0.0000022389, -0.0000022395,0.0000022416,0.0000022460,0.0000022523,0.0000022597, -0.0000022673,0.0000022739,0.0000022788,0.0000022820,0.0000022838, -0.0000022842,0.0000022835,0.0000022812,0.0000022779,0.0000022747, -0.0000022715,0.0000022679,0.0000022639,0.0000022602,0.0000022570, -0.0000022540,0.0000022515,0.0000022502,0.0000022506,0.0000022527, -0.0000022564,0.0000022617,0.0000022677,0.0000022734,0.0000022780, -0.0000022825,0.0000022861,0.0000022870,0.0000022850,0.0000022796, -0.0000022725,0.0000022665,0.0000022625,0.0000022594,0.0000022575, -0.0000022575,0.0000022598,0.0000022623,0.0000022623,0.0000022600, -0.0000022553,0.0000022497,0.0000022448,0.0000022415,0.0000022404, -0.0000022410,0.0000022436,0.0000022478,0.0000022526,0.0000022567, -0.0000022600,0.0000022612,0.0000022603,0.0000022562,0.0000022523, -0.0000022490,0.0000022455,0.0000022432,0.0000022443,0.0000022478, -0.0000022507,0.0000022528,0.0000022523,0.0000022588,0.0000022719, -0.0000022729,0.0000022709,0.0000022792,0.0000022949,0.0000023016, -0.0000023156,0.0000023228,0.0000023151,0.0000023064,0.0000022867, -0.0000022704,0.0000022593,0.0000022573,0.0000022685,0.0000022808, -0.0000022824,0.0000022776,0.0000022772,0.0000022817,0.0000022847, -0.0000022831,0.0000022810,0.0000022801,0.0000022845,0.0000022927, -0.0000023017,0.0000023177,0.0000023379,0.0000023494,0.0000023549, -0.0000023561,0.0000023387,0.0000023238,0.0000023241,0.0000023249, -0.0000023228,0.0000023202,0.0000023143,0.0000023060,0.0000022985, -0.0000022963,0.0000022944,0.0000022906,0.0000022865,0.0000022838, -0.0000022847,0.0000022896,0.0000022958,0.0000023011,0.0000023042, -0.0000023050,0.0000023036,0.0000022992,0.0000022927,0.0000022875, -0.0000022866,0.0000022882,0.0000022882,0.0000022883,0.0000022902, -0.0000022919,0.0000022914,0.0000022898,0.0000022912,0.0000022937, -0.0000022957,0.0000022964,0.0000022957,0.0000022962,0.0000023017, -0.0000023090,0.0000023119,0.0000023095,0.0000023024,0.0000022921, -0.0000022858,0.0000022814,0.0000022711,0.0000022569,0.0000022287, -0.0000022089,0.0000022165,0.0000022257,0.0000022259,0.0000022283, -0.0000022262,0.0000022021,0.0000021749,0.0000021785,0.0000022029, -0.0000022238,0.0000022351,0.0000022441,0.0000022552,0.0000022650, -0.0000022713,0.0000022734,0.0000022717,0.0000022678,0.0000022633, -0.0000022573,0.0000022489,0.0000022397,0.0000022342,0.0000022346, -0.0000022424,0.0000022569,0.0000022704,0.0000022753,0.0000022690, -0.0000022555,0.0000022430,0.0000022264,0.0000022081,0.0000022023, -0.0000022042,0.0000022133,0.0000022256,0.0000022324,0.0000022336, -0.0000022334,0.0000022333,0.0000022343,0.0000022352,0.0000022350, -0.0000022360,0.0000022397,0.0000022443,0.0000022502,0.0000022584, -0.0000022646,0.0000022668,0.0000022669,0.0000022648,0.0000022632, -0.0000022628,0.0000022627,0.0000022634,0.0000022639,0.0000022661, -0.0000022691,0.0000022710,0.0000022792,0.0000022955,0.0000023082, -0.0000023125,0.0000023132,0.0000023132,0.0000023138,0.0000023158, -0.0000023184,0.0000023216,0.0000023252,0.0000023284,0.0000023316, -0.0000023358,0.0000023402,0.0000023440,0.0000023479,0.0000023515, -0.0000023537,0.0000023549,0.0000023555,0.0000023556,0.0000023556, -0.0000023559,0.0000023570,0.0000023581,0.0000023584,0.0000023572, -0.0000023516,0.0000023419,0.0000023293,0.0000023165,0.0000023069, -0.0000023021,0.0000023007,0.0000023027,0.0000023055,0.0000023085, -0.0000023113,0.0000023139,0.0000023158,0.0000023172,0.0000023187, -0.0000023201,0.0000023208,0.0000023212,0.0000023211,0.0000023209, -0.0000023222,0.0000023244,0.0000023281,0.0000023316,0.0000023328, -0.0000023333,0.0000023342,0.0000023350,0.0000023346,0.0000023314, -0.0000023257,0.0000023189,0.0000023118,0.0000023050,0.0000022987, -0.0000022936,0.0000022915,0.0000022951,0.0000023050,0.0000023153, -0.0000023234,0.0000023294,0.0000023354,0.0000023408,0.0000023447, -0.0000023462,0.0000023455,0.0000023438,0.0000023427,0.0000023439, -0.0000023481,0.0000023528,0.0000023569,0.0000023586,0.0000023591, -0.0000023600,0.0000023628,0.0000023670,0.0000023711,0.0000023759, -0.0000023843,0.0000023955,0.0000024040,0.0000024061,0.0000024023, -0.0000023961,0.0000023945,0.0000023951,0.0000023921,0.0000023870, -0.0000023845,0.0000023835,0.0000023814,0.0000023787,0.0000023772, -0.0000023773,0.0000023780,0.0000023783,0.0000023778,0.0000023767, -0.0000023750,0.0000023732,0.0000023710,0.0000023685,0.0000023657, -0.0000023627,0.0000023591,0.0000023549,0.0000023510,0.0000023477, -0.0000023441,0.0000023390,0.0000023333,0.0000023292,0.0000023276, -0.0000023274,0.0000023272,0.0000023263,0.0000023250,0.0000023237, -0.0000023218,0.0000023193,0.0000023162,0.0000023123,0.0000023075, -0.0000023021,0.0000022964,0.0000022905,0.0000022851,0.0000022798, -0.0000022746,0.0000022701,0.0000022665,0.0000022640,0.0000022621, -0.0000022604,0.0000022593,0.0000022582,0.0000022570,0.0000022559, -0.0000022550,0.0000022544,0.0000022542,0.0000022541,0.0000022537, -0.0000022525,0.0000022505,0.0000022481,0.0000022462,0.0000022452, -0.0000022444,0.0000022435,0.0000022427,0.0000022419,0.0000022413, -0.0000022409,0.0000022404,0.0000022395,0.0000022379,0.0000022358, -0.0000022329,0.0000022306,0.0000022287,0.0000022267,0.0000022246, -0.0000022230,0.0000022228,0.0000022239,0.0000022261,0.0000022288, -0.0000022318,0.0000022353,0.0000022387,0.0000022407,0.0000022412, -0.0000022411,0.0000022403,0.0000022391,0.0000022379,0.0000022370, -0.0000022367,0.0000022375,0.0000022394,0.0000022416,0.0000022439, -0.0000022469,0.0000022500,0.0000022523,0.0000022536,0.0000022546, -0.0000022553,0.0000022559,0.0000022561,0.0000022559,0.0000022562, -0.0000022539,0.0000022513,0.0000022494,0.0000022484,0.0000022478, -0.0000022465,0.0000022455,0.0000022450,0.0000022451,0.0000022449, -0.0000022444,0.0000022434,0.0000022418,0.0000022393,0.0000022360, -0.0000022321,0.0000022281,0.0000022234,0.0000022193,0.0000022175, -0.0000022197,0.0000022266,0.0000022349,0.0000022395,0.0000022415, -0.0000022450,0.0000022520,0.0000022617,0.0000022695,0.0000022738, -0.0000022760,0.0000022769,0.0000022776,0.0000022790,0.0000022805, -0.0000022826,0.0000022838,0.0000022836,0.0000022830,0.0000022859, -0.0000022893,0.0000022889,0.0000022891,0.0000022940,0.0000022959, -0.0000022976,0.0000023154,0.0000023378,0.0000023450,0.0000023391, -0.0000023251,0.0000023159,0.0000023121,0.0000023088,0.0000023041, -0.0000023018,0.0000023027,0.0000023037,0.0000023014,0.0000022944, -0.0000022844,0.0000022730,0.0000022605,0.0000022495,0.0000022404, -0.0000022317,0.0000022241,0.0000022186,0.0000022148,0.0000022122, -0.0000022101,0.0000022081,0.0000022062,0.0000022043,0.0000022021, -0.0000022001,0.0000022003,0.0000022033,0.0000022080,0.0000022106, -0.0000022078,0.0000022012,0.0000021957,0.0000021957,0.0000022000, -0.0000022080,0.0000022144,0.0000022178,0.0000022189,0.0000022188, -0.0000022181,0.0000022169,0.0000022153,0.0000022128,0.0000022095, -0.0000022058,0.0000022016,0.0000021972,0.0000021935,0.0000021910, -0.0000021904,0.0000021916,0.0000021956,0.0000022025,0.0000022117, -0.0000022200,0.0000022246,0.0000022258,0.0000022214,0.0000022108, -0.0000021982,0.0000021961,0.0000022188,0.0000022656,0.0000023021, -0.0000023021,0.0000022752,0.0000022432,0.0000022247,0.0000022187, -0.0000022165,0.0000022103,0.0000021989,0.0000021868,0.0000021773, -0.0000021709,0.0000021689,0.0000021703,0.0000021709,0.0000021685, -0.0000021659,0.0000021663,0.0000021696,0.0000021733,0.0000021758, -0.0000021780,0.0000021807,0.0000021839,0.0000021881,0.0000021926, -0.0000021948,0.0000021941,0.0000021900,0.0000021827,0.0000021738, -0.0000021654,0.0000021587,0.0000021540,0.0000021516,0.0000021496, -0.0000021457,0.0000021409,0.0000021363,0.0000021303,0.0000021250, -0.0000021247,0.0000021290,0.0000021354,0.0000021430,0.0000021524, -0.0000021636,0.0000021736,0.0000021790,0.0000021819,0.0000021868, -0.0000021954,0.0000022064,0.0000022159,0.0000022189,0.0000022163, -0.0000022108,0.0000022062,0.0000022034,0.0000022011,0.0000021980, -0.0000021936,0.0000021881,0.0000021824,0.0000021778,0.0000021752, -0.0000021748,0.0000021758,0.0000021783,0.0000021817,0.0000021857, -0.0000021901,0.0000021941,0.0000021965,0.0000021967,0.0000021947, -0.0000021900,0.0000021833,0.0000021759,0.0000021685,0.0000021617, -0.0000021560,0.0000021511,0.0000021465,0.0000021425,0.0000021412, -0.0000021422,0.0000021445,0.0000021455,0.0000021441,0.0000021406, -0.0000021369,0.0000021353,0.0000021362,0.0000021394,0.0000021431, -0.0000021475,0.0000021517,0.0000021547,0.0000021571,0.0000021582, -0.0000021583,0.0000021525,0.0000021406,0.0000021281,0.0000021181, -0.0000021108,0.0000021050,0.0000021002,0.0000020968,0.0000020954, -0.0000021012,0.0000021163,0.0000021350,0.0000021493,0.0000021576, -0.0000021631,0.0000021692,0.0000021763,0.0000021834,0.0000021913, -0.0000022008,0.0000022109,0.0000022205,0.0000022308,0.0000022434, -0.0000022585,0.0000022753,0.0000022928,0.0000023101,0.0000023242, -0.0000023304,0.0000023271,0.0000023210,0.0000023176,0.0000023237, -0.0000023401,0.0000023647,0.0000023948,0.0000024249,0.0000024473, -0.0000024574,0.0000024582,0.0000024555,0.0000024551,0.0000024590, -0.0000024657,0.0000024682,0.0000024645,0.0000024530,0.0000024406, -0.0000024351,0.0000024354,0.0000024347,0.0000024319,0.0000024305, -0.0000024338,0.0000024399,0.0000024465,0.0000024497,0.0000024475, -0.0000024406,0.0000024300,0.0000024175,0.0000024068,0.0000024011, -0.0000024000,0.0000024019,0.0000024055,0.0000024086,0.0000024098, -0.0000024089,0.0000024063,0.0000024021,0.0000023979,0.0000023963, -0.0000023972,0.0000023991,0.0000023995,0.0000023989,0.0000023986, -0.0000024005,0.0000024079,0.0000024182,0.0000024245,0.0000024258, -0.0000024227,0.0000024144,0.0000024035,0.0000023929,0.0000023836, -0.0000023751,0.0000023673,0.0000023600,0.0000023518,0.0000023411, -0.0000023280,0.0000023137,0.0000022996,0.0000022876,0.0000022796, -0.0000022766,0.0000022776,0.0000022818,0.0000022881,0.0000022955, -0.0000023041,0.0000023131,0.0000023223,0.0000023322,0.0000023427, -0.0000023539,0.0000023659,0.0000023775,0.0000023889,0.0000023990, -0.0000024069,0.0000024101,0.0000024124,0.0000024117,0.0000024091, -0.0000024053,0.0000024001,0.0000023931,0.0000023847,0.0000023750, -0.0000023638,0.0000023518,0.0000023406,0.0000023318,0.0000023252, -0.0000023206,0.0000023171,0.0000023132,0.0000023083,0.0000023017, -0.0000022947,0.0000022877,0.0000022817,0.0000022770,0.0000022726, -0.0000022675,0.0000022628,0.0000022590,0.0000022556,0.0000022536, -0.0000022533,0.0000022551,0.0000022591,0.0000022638,0.0000022680, -0.0000022713,0.0000022753,0.0000022788,0.0000022816,0.0000022831, -0.0000022833,0.0000022826,0.0000022816,0.0000022810,0.0000022808, -0.0000022805,0.0000022798,0.0000022788,0.0000022777,0.0000022755, -0.0000022717,0.0000022674,0.0000022645,0.0000022629,0.0000022622, -0.0000022619,0.0000022620,0.0000022624,0.0000022621,0.0000022609, -0.0000022603,0.0000022613,0.0000022612,0.0000022591,0.0000022511, -0.0000022389,0.0000022255,0.0000022134,0.0000022051,0.0000022013, -0.0000021996,0.0000021983,0.0000021972,0.0000021955,0.0000021926, -0.0000021895,0.0000021874,0.0000021859,0.0000021845,0.0000021844, -0.0000021839,0.0000021819,0.0000021801,0.0000021785,0.0000021766, -0.0000021745,0.0000021730,0.0000021727,0.0000021728,0.0000021727, -0.0000021722,0.0000021711,0.0000021690,0.0000021667,0.0000021651, -0.0000021635,0.0000021620,0.0000021609,0.0000021606,0.0000021604, -0.0000021602,0.0000021594,0.0000021575,0.0000021548,0.0000021516, -0.0000021485,0.0000021459,0.0000021426,0.0000021386,0.0000021352, -0.0000021331,0.0000021317,0.0000021301,0.0000021282,0.0000021262, -0.0000021244,0.0000021223,0.0000021194,0.0000021167,0.0000021145, -0.0000021124,0.0000021099,0.0000021073,0.0000021041,0.0000021009, -0.0000020993,0.0000020996,0.0000021026,0.0000021072,0.0000021131, -0.0000021207,0.0000021265,0.0000021259,0.0000021199,0.0000021108, -0.0000021046,0.0000021035,0.0000021051,0.0000021069,0.0000021079, -0.0000021083,0.0000021086,0.0000021087,0.0000021081,0.0000021075, -0.0000021069,0.0000021058,0.0000021044,0.0000021025,0.0000021003, -0.0000020980,0.0000020962,0.0000020954,0.0000020955,0.0000020959, -0.0000020955,0.0000020954,0.0000020966,0.0000020993,0.0000021028, -0.0000021058,0.0000021078,0.0000021087,0.0000021077,0.0000021063, -0.0000021041,0.0000021017,0.0000020998,0.0000020985,0.0000020982, -0.0000020987,0.0000021009,0.0000021050,0.0000021100,0.0000021149, -0.0000021196,0.0000021233,0.0000021243,0.0000021233,0.0000021214, -0.0000021188,0.0000021146,0.0000021092,0.0000021048,0.0000021035, -0.0000021048,0.0000021064,0.0000021071,0.0000021079,0.0000021103, -0.0000021148,0.0000021234,0.0000021367,0.0000021484,0.0000021513, -0.0000021491,0.0000021448,0.0000021409,0.0000021380,0.0000021372, -0.0000021387,0.0000021424,0.0000021466,0.0000021515,0.0000021574, -0.0000021615,0.0000021629,0.0000021615,0.0000021541,0.0000021443, -0.0000021390,0.0000021381,0.0000021378,0.0000021365,0.0000021343, -0.0000021297,0.0000021232,0.0000021193,0.0000021189,0.0000021185, -0.0000021163,0.0000021138,0.0000021129,0.0000021140,0.0000021179, -0.0000021234,0.0000021291,0.0000021337,0.0000021360,0.0000021368, -0.0000021378,0.0000021380,0.0000021349,0.0000021298,0.0000021266, -0.0000021254,0.0000021235,0.0000021206,0.0000021175,0.0000021136, -0.0000021104,0.0000021113,0.0000021178,0.0000021247,0.0000021265, -0.0000021225,0.0000021160,0.0000021122,0.0000021096,0.0000021051, -0.0000021000,0.0000020962,0.0000020939,0.0000020922,0.0000020910, -0.0000020902,0.0000020899,0.0000020907,0.0000020926,0.0000020953, -0.0000020987,0.0000021021,0.0000021041,0.0000021047,0.0000021046, -0.0000021048,0.0000021055,0.0000021064,0.0000021065,0.0000021046, -0.0000021009,0.0000020972,0.0000020941,0.0000020906,0.0000020869, -0.0000020850,0.0000020859,0.0000020893,0.0000020936,0.0000020982, -0.0000021032,0.0000021084,0.0000021140,0.0000021200,0.0000021252, -0.0000021278,0.0000021278,0.0000021268,0.0000021265,0.0000021263, -0.0000021242,0.0000021207,0.0000021200,0.0000021188,0.0000021069, -0.0000020873,0.0000020754,0.0000020753,0.0000020952,0.0000021312, -0.0000021621,0.0000021789,0.0000021898,0.0000021982,0.0000022036, -0.0000022069,0.0000022081,0.0000022078,0.0000022063,0.0000022044, -0.0000022035,0.0000022045,0.0000022070,0.0000022088,0.0000022090, -0.0000022083,0.0000022075,0.0000022068,0.0000022051,0.0000022013, -0.0000021957,0.0000021879,0.0000021743,0.0000021561,0.0000021441, -0.0000021429,0.0000021448,0.0000021455,0.0000021482,0.0000021599, -0.0000021782,0.0000021929,0.0000022003,0.0000022035,0.0000022043, -0.0000022036,0.0000022030,0.0000022056,0.0000022110,0.0000022122, -0.0000022039,0.0000021889,0.0000021825,0.0000021767,0.0000021767, -0.0000021659,0.0000021446,0.0000021378,0.0000021415,0.0000021549, -0.0000021841,0.0000022187,0.0000022362,0.0000022390,0.0000022414, -0.0000022475,0.0000022533,0.0000022571,0.0000022598,0.0000022634, -0.0000022696,0.0000022780,0.0000022864,0.0000022932,0.0000022975, -0.0000022994,0.0000023001,0.0000023006,0.0000023013,0.0000023016, -0.0000023013,0.0000023005,0.0000022994,0.0000022976,0.0000022950, -0.0000022916,0.0000022885,0.0000022862,0.0000022845,0.0000022836, -0.0000022837,0.0000022848,0.0000022858,0.0000022860,0.0000022857, -0.0000022850,0.0000022841,0.0000022837,0.0000022838,0.0000022843, -0.0000022850,0.0000022856,0.0000022858,0.0000022857,0.0000022853, -0.0000022849,0.0000022846,0.0000022847,0.0000022849,0.0000022849, -0.0000022847,0.0000022844,0.0000022844,0.0000022844,0.0000022838, -0.0000022825,0.0000022811,0.0000022801,0.0000022786,0.0000022766, -0.0000022739,0.0000022699,0.0000022642,0.0000022571,0.0000022489, -0.0000022408,0.0000022334,0.0000022269,0.0000022223,0.0000022198, -0.0000022190,0.0000022186,0.0000022183,0.0000022195,0.0000022229, -0.0000022275,0.0000022314,0.0000022344,0.0000022377,0.0000022409, -0.0000022430,0.0000022435,0.0000022425,0.0000022397,0.0000022349, -0.0000022297,0.0000022260,0.0000022227,0.0000022189,0.0000022145, -0.0000022094,0.0000022040,0.0000021987,0.0000021931,0.0000021875, -0.0000021817,0.0000021749,0.0000021684,0.0000021625,0.0000021562, -0.0000021503,0.0000021477,0.0000021487,0.0000021506,0.0000021513, -0.0000021527,0.0000021532,0.0000021527,0.0000021518,0.0000021498, -0.0000021462,0.0000021444,0.0000021429,0.0000021419,0.0000021430, -0.0000021473,0.0000021535,0.0000021612,0.0000021714,0.0000021831, -0.0000021946,0.0000022053,0.0000022151,0.0000022251,0.0000022353, -0.0000022447,0.0000022521,0.0000022577,0.0000022624,0.0000022665, -0.0000022692,0.0000022705,0.0000022707,0.0000022704,0.0000022698, -0.0000022688,0.0000022676,0.0000022659,0.0000022640,0.0000022629, -0.0000022633,0.0000022651,0.0000022674,0.0000022694,0.0000022715, -0.0000022751,0.0000022805,0.0000022858,0.0000022906,0.0000022949, -0.0000022976,0.0000022983,0.0000022980,0.0000022972,0.0000022963, -0.0000022953,0.0000022951,0.0000022962,0.0000022976,0.0000023003, -0.0000023036,0.0000023049,0.0000023048,0.0000023024,0.0000022967, -0.0000022877,0.0000022787,0.0000022736,0.0000022723,0.0000022765, -0.0000022854,0.0000022968,0.0000023066,0.0000023119,0.0000023125, -0.0000023107,0.0000023081,0.0000023049,0.0000023021,0.0000022999, -0.0000022996,0.0000023003,0.0000023021,0.0000023043,0.0000023069, -0.0000023096,0.0000023118,0.0000023135,0.0000023155,0.0000023186, -0.0000023223,0.0000023259,0.0000023286,0.0000023308,0.0000023314, -0.0000023301,0.0000023278,0.0000023239,0.0000023197,0.0000023158, -0.0000023127,0.0000023106,0.0000023093,0.0000023091,0.0000023095, -0.0000023113,0.0000023142,0.0000023171,0.0000023188,0.0000023188, -0.0000023180,0.0000023174,0.0000023170,0.0000023167,0.0000023167, -0.0000023173,0.0000023180,0.0000023185,0.0000023182,0.0000023170, -0.0000023144,0.0000023105,0.0000023054,0.0000022998,0.0000022938, -0.0000022879,0.0000022828,0.0000022794,0.0000022782,0.0000022780, -0.0000022783,0.0000022788,0.0000022798,0.0000022814,0.0000022832, -0.0000022848,0.0000022860,0.0000022865,0.0000022865,0.0000022860, -0.0000022853,0.0000022847,0.0000022843,0.0000022847,0.0000022858, -0.0000022869,0.0000022872,0.0000022877,0.0000022865,0.0000022826, -0.0000022766,0.0000022698,0.0000022639,0.0000022605,0.0000022596, -0.0000022596,0.0000022599,0.0000022599,0.0000022592,0.0000022572, -0.0000022537,0.0000022494,0.0000022452,0.0000022419,0.0000022393, -0.0000022374,0.0000022359,0.0000022346,0.0000022335,0.0000022327, -0.0000022324,0.0000022323,0.0000022318,0.0000022312,0.0000022305, -0.0000022292,0.0000022276,0.0000022253,0.0000022229,0.0000022203, -0.0000022172,0.0000022132,0.0000022086,0.0000022040,0.0000021994, -0.0000021939,0.0000021874,0.0000021814,0.0000021783,0.0000021748, -0.0000021721,0.0000021708,0.0000021726,0.0000021758,0.0000021806, -0.0000021866,0.0000021932,0.0000022006,0.0000022079,0.0000022145, -0.0000022202,0.0000022250,0.0000022289,0.0000022324,0.0000022359, -0.0000022386,0.0000022403,0.0000022404,0.0000022392,0.0000022378, -0.0000022363,0.0000022344,0.0000022315,0.0000022285,0.0000022261, -0.0000022249,0.0000022237,0.0000022220,0.0000022199,0.0000022177, -0.0000022155,0.0000022141,0.0000022136,0.0000022142,0.0000022156, -0.0000022168,0.0000022179,0.0000022202,0.0000022231,0.0000022267, -0.0000022299,0.0000022321,0.0000022333,0.0000022340,0.0000022349, -0.0000022369,0.0000022405,0.0000022456,0.0000022519,0.0000022588, -0.0000022649,0.0000022697,0.0000022735,0.0000022765,0.0000022778, -0.0000022776,0.0000022760,0.0000022731,0.0000022696,0.0000022657, -0.0000022617,0.0000022578,0.0000022542,0.0000022506,0.0000022470, -0.0000022433,0.0000022412,0.0000022412,0.0000022428,0.0000022453, -0.0000022482,0.0000022514,0.0000022547,0.0000022588,0.0000022647, -0.0000022718,0.0000022785,0.0000022822,0.0000022822,0.0000022790, -0.0000022733,0.0000022676,0.0000022636,0.0000022609,0.0000022590, -0.0000022586,0.0000022602,0.0000022618,0.0000022619,0.0000022601, -0.0000022562,0.0000022512,0.0000022464,0.0000022427,0.0000022410, -0.0000022410,0.0000022428,0.0000022459,0.0000022501,0.0000022552, -0.0000022595,0.0000022618,0.0000022601,0.0000022549,0.0000022489, -0.0000022425,0.0000022376,0.0000022375,0.0000022416,0.0000022442, -0.0000022467,0.0000022472,0.0000022503,0.0000022672,0.0000022727, -0.0000022716,0.0000022788,0.0000022944,0.0000023014,0.0000023155, -0.0000023204,0.0000023114,0.0000023015,0.0000022810,0.0000022665, -0.0000022546,0.0000022544,0.0000022670,0.0000022782,0.0000022791, -0.0000022766,0.0000022804,0.0000022867,0.0000022889,0.0000022871, -0.0000022852,0.0000022836,0.0000022864,0.0000022940,0.0000023013, -0.0000023146,0.0000023332,0.0000023487,0.0000023547,0.0000023597, -0.0000023482,0.0000023299,0.0000023261,0.0000023284,0.0000023264, -0.0000023236,0.0000023198,0.0000023141,0.0000023058,0.0000022996, -0.0000022954,0.0000022899,0.0000022846,0.0000022819,0.0000022818, -0.0000022849,0.0000022902,0.0000022958,0.0000022997,0.0000023011, -0.0000023015,0.0000022994,0.0000022959,0.0000022932,0.0000022933, -0.0000022935,0.0000022906,0.0000022882,0.0000022874,0.0000022873, -0.0000022861,0.0000022847,0.0000022865,0.0000022905,0.0000022934, -0.0000022940,0.0000022928,0.0000022932,0.0000022986,0.0000023072, -0.0000023131,0.0000023127,0.0000023066,0.0000022973,0.0000022895, -0.0000022851,0.0000022744,0.0000022606,0.0000022351,0.0000022103, -0.0000022138,0.0000022236,0.0000022227,0.0000022225,0.0000022227, -0.0000022036,0.0000021734,0.0000021717,0.0000021948,0.0000022179, -0.0000022314,0.0000022404,0.0000022510,0.0000022614,0.0000022684, -0.0000022709,0.0000022694,0.0000022655,0.0000022611,0.0000022556, -0.0000022471,0.0000022382,0.0000022334,0.0000022333,0.0000022389, -0.0000022514,0.0000022666,0.0000022762,0.0000022737,0.0000022620, -0.0000022501,0.0000022365,0.0000022163,0.0000022029,0.0000022014, -0.0000022048,0.0000022152,0.0000022252,0.0000022291,0.0000022305, -0.0000022319,0.0000022333,0.0000022354,0.0000022371,0.0000022384, -0.0000022409,0.0000022450,0.0000022486,0.0000022526,0.0000022576, -0.0000022610,0.0000022628,0.0000022624,0.0000022595,0.0000022585, -0.0000022587,0.0000022593,0.0000022599,0.0000022604,0.0000022626, -0.0000022639,0.0000022690,0.0000022856,0.0000023030,0.0000023101, -0.0000023106,0.0000023101,0.0000023106,0.0000023126,0.0000023155, -0.0000023176,0.0000023198,0.0000023228,0.0000023256,0.0000023282, -0.0000023313,0.0000023342,0.0000023366,0.0000023396,0.0000023429, -0.0000023454,0.0000023475,0.0000023493,0.0000023504,0.0000023513, -0.0000023525,0.0000023539,0.0000023557,0.0000023574,0.0000023578, -0.0000023576,0.0000023528,0.0000023430,0.0000023298,0.0000023160, -0.0000023046,0.0000022990,0.0000022984,0.0000022996,0.0000023024, -0.0000023052,0.0000023074,0.0000023094,0.0000023115,0.0000023143, -0.0000023166,0.0000023183,0.0000023204,0.0000023219,0.0000023232, -0.0000023249,0.0000023276,0.0000023312,0.0000023344,0.0000023356, -0.0000023359,0.0000023361,0.0000023362,0.0000023352,0.0000023319, -0.0000023266,0.0000023197,0.0000023121,0.0000023043,0.0000022978, -0.0000022936,0.0000022942,0.0000022999,0.0000023090,0.0000023180, -0.0000023268,0.0000023361,0.0000023452,0.0000023512,0.0000023532, -0.0000023519,0.0000023498,0.0000023484,0.0000023479,0.0000023488, -0.0000023509,0.0000023533,0.0000023546,0.0000023553,0.0000023561, -0.0000023583,0.0000023621,0.0000023661,0.0000023698,0.0000023752, -0.0000023848,0.0000023962,0.0000024044,0.0000024064,0.0000024037, -0.0000023970,0.0000023938,0.0000023954,0.0000023955,0.0000023905, -0.0000023855,0.0000023839,0.0000023838,0.0000023828,0.0000023809, -0.0000023793,0.0000023785,0.0000023779,0.0000023775,0.0000023768, -0.0000023754,0.0000023732,0.0000023707,0.0000023683,0.0000023663, -0.0000023645,0.0000023622,0.0000023593,0.0000023562,0.0000023528, -0.0000023480,0.0000023419,0.0000023363,0.0000023323,0.0000023300, -0.0000023285,0.0000023267,0.0000023243,0.0000023214,0.0000023183, -0.0000023148,0.0000023113,0.0000023078,0.0000023044,0.0000023005, -0.0000022958,0.0000022904,0.0000022847,0.0000022789,0.0000022728, -0.0000022676,0.0000022643,0.0000022628,0.0000022622,0.0000022620, -0.0000022618,0.0000022608,0.0000022595,0.0000022578,0.0000022565, -0.0000022555,0.0000022550,0.0000022551,0.0000022548,0.0000022541, -0.0000022535,0.0000022525,0.0000022509,0.0000022491,0.0000022479, -0.0000022471,0.0000022461,0.0000022452,0.0000022448,0.0000022447, -0.0000022446,0.0000022442,0.0000022428,0.0000022406,0.0000022378, -0.0000022346,0.0000022317,0.0000022291,0.0000022264,0.0000022236, -0.0000022214,0.0000022197,0.0000022192,0.0000022198,0.0000022211, -0.0000022232,0.0000022254,0.0000022277,0.0000022298,0.0000022313, -0.0000022321,0.0000022325,0.0000022324,0.0000022324,0.0000022325, -0.0000022330,0.0000022339,0.0000022355,0.0000022377,0.0000022400, -0.0000022429,0.0000022456,0.0000022477,0.0000022489,0.0000022494, -0.0000022496,0.0000022499,0.0000022505,0.0000022514,0.0000022528, -0.0000022526,0.0000022512,0.0000022498,0.0000022489,0.0000022493, -0.0000022491,0.0000022503,0.0000022499,0.0000022508,0.0000022514, -0.0000022515,0.0000022516,0.0000022505,0.0000022484,0.0000022446, -0.0000022396,0.0000022340,0.0000022283,0.0000022221,0.0000022156, -0.0000022100,0.0000022090,0.0000022153,0.0000022245,0.0000022315, -0.0000022356,0.0000022403,0.0000022483,0.0000022560,0.0000022607, -0.0000022633,0.0000022649,0.0000022663,0.0000022684,0.0000022716, -0.0000022766,0.0000022819,0.0000022846,0.0000022839,0.0000022829, -0.0000022838,0.0000022858,0.0000022867,0.0000022894,0.0000022947, -0.0000022948,0.0000022990,0.0000023207,0.0000023404,0.0000023444, -0.0000023354,0.0000023206,0.0000023113,0.0000023058,0.0000023005, -0.0000022966,0.0000022978,0.0000023009,0.0000023002,0.0000022936, -0.0000022827,0.0000022700,0.0000022574,0.0000022462,0.0000022369, -0.0000022285,0.0000022212,0.0000022164,0.0000022133,0.0000022109, -0.0000022086,0.0000022066,0.0000022061,0.0000022062,0.0000022067, -0.0000022080,0.0000022106,0.0000022127,0.0000022125,0.0000022090, -0.0000022017,0.0000021957,0.0000021958,0.0000022034,0.0000022139, -0.0000022231,0.0000022287,0.0000022310,0.0000022311,0.0000022302, -0.0000022288,0.0000022274,0.0000022260,0.0000022242,0.0000022221, -0.0000022200,0.0000022176,0.0000022144,0.0000022107,0.0000022074, -0.0000022044,0.0000022004,0.0000021966,0.0000021947,0.0000021950, -0.0000021980,0.0000022038,0.0000022127,0.0000022216,0.0000022266, -0.0000022255,0.0000022149,0.0000022015,0.0000022009,0.0000022302, -0.0000022792,0.0000023034,0.0000022945,0.0000022616,0.0000022321, -0.0000022189,0.0000022168,0.0000022151,0.0000022067,0.0000021935, -0.0000021814,0.0000021730,0.0000021691,0.0000021695,0.0000021714, -0.0000021714,0.0000021693,0.0000021680,0.0000021696,0.0000021729, -0.0000021752,0.0000021768,0.0000021788,0.0000021807,0.0000021825, -0.0000021848,0.0000021868,0.0000021866,0.0000021831,0.0000021769, -0.0000021699,0.0000021632,0.0000021576,0.0000021536,0.0000021514, -0.0000021497,0.0000021470,0.0000021439,0.0000021408,0.0000021365, -0.0000021332,0.0000021338,0.0000021378,0.0000021425,0.0000021480, -0.0000021555,0.0000021649,0.0000021724,0.0000021766,0.0000021807, -0.0000021877,0.0000021980,0.0000022097,0.0000022186,0.0000022208, -0.0000022191,0.0000022165,0.0000022155,0.0000022162,0.0000022172, -0.0000022170,0.0000022147,0.0000022101,0.0000022042,0.0000021986, -0.0000021948,0.0000021937,0.0000021942,0.0000021965,0.0000021996, -0.0000022024,0.0000022044,0.0000022052,0.0000022042,0.0000022014, -0.0000021967,0.0000021901,0.0000021823,0.0000021742,0.0000021665, -0.0000021601,0.0000021550,0.0000021507,0.0000021466,0.0000021422, -0.0000021390,0.0000021386,0.0000021413,0.0000021451,0.0000021467, -0.0000021457,0.0000021424,0.0000021377,0.0000021354,0.0000021358, -0.0000021383,0.0000021410,0.0000021441,0.0000021474,0.0000021512, -0.0000021560,0.0000021601,0.0000021615,0.0000021570,0.0000021461, -0.0000021331,0.0000021222,0.0000021133,0.0000021059,0.0000021001, -0.0000020961,0.0000020948,0.0000021001,0.0000021142,0.0000021328, -0.0000021486,0.0000021588,0.0000021658,0.0000021722,0.0000021781, -0.0000021842,0.0000021918,0.0000022011,0.0000022107,0.0000022201, -0.0000022296,0.0000022409,0.0000022550,0.0000022714,0.0000022884, -0.0000023046,0.0000023177,0.0000023237,0.0000023205,0.0000023144, -0.0000023116,0.0000023189,0.0000023377,0.0000023647,0.0000023956, -0.0000024241,0.0000024437,0.0000024515,0.0000024514,0.0000024499, -0.0000024515,0.0000024581,0.0000024656,0.0000024687,0.0000024668, -0.0000024563,0.0000024442,0.0000024385,0.0000024371,0.0000024347, -0.0000024307,0.0000024282,0.0000024283,0.0000024327,0.0000024387, -0.0000024415,0.0000024395,0.0000024331,0.0000024255,0.0000024166, -0.0000024079,0.0000024018,0.0000023990,0.0000023992,0.0000024016, -0.0000024038,0.0000024049,0.0000024044,0.0000024023,0.0000023995, -0.0000023982,0.0000023986,0.0000023995,0.0000023990,0.0000023976, -0.0000023971,0.0000024004,0.0000024091,0.0000024190,0.0000024242, -0.0000024235,0.0000024163,0.0000024038,0.0000023914,0.0000023824, -0.0000023753,0.0000023684,0.0000023623,0.0000023567,0.0000023491, -0.0000023382,0.0000023247,0.0000023098,0.0000022950,0.0000022817, -0.0000022713,0.0000022649,0.0000022628,0.0000022639,0.0000022668, -0.0000022708,0.0000022761,0.0000022821,0.0000022880,0.0000022936, -0.0000022998,0.0000023082,0.0000023189,0.0000023312,0.0000023456, -0.0000023621,0.0000023785,0.0000023936,0.0000024053,0.0000024132, -0.0000024142,0.0000024149,0.0000024117,0.0000024063,0.0000023984, -0.0000023895,0.0000023798,0.0000023690,0.0000023576,0.0000023468, -0.0000023371,0.0000023292,0.0000023228,0.0000023169,0.0000023110, -0.0000023046,0.0000022973,0.0000022895,0.0000022825,0.0000022771, -0.0000022728,0.0000022680,0.0000022636,0.0000022602,0.0000022567, -0.0000022532,0.0000022511,0.0000022512,0.0000022537,0.0000022579, -0.0000022633,0.0000022692,0.0000022753,0.0000022810,0.0000022854, -0.0000022883,0.0000022897,0.0000022896,0.0000022875,0.0000022846, -0.0000022822,0.0000022809,0.0000022805,0.0000022799,0.0000022796, -0.0000022787,0.0000022765,0.0000022724,0.0000022672,0.0000022622, -0.0000022582,0.0000022549,0.0000022531,0.0000022533,0.0000022545, -0.0000022558,0.0000022565,0.0000022574,0.0000022590,0.0000022606, -0.0000022595,0.0000022564,0.0000022491,0.0000022386,0.0000022272, -0.0000022175,0.0000022109,0.0000022064,0.0000022030,0.0000022005, -0.0000021977,0.0000021940,0.0000021902,0.0000021875,0.0000021852, -0.0000021831,0.0000021828,0.0000021834,0.0000021844,0.0000021870, -0.0000021905,0.0000021941,0.0000021963,0.0000021975,0.0000021987, -0.0000022000,0.0000022005,0.0000022002,0.0000021993,0.0000021974, -0.0000021959,0.0000021941,0.0000021919,0.0000021899,0.0000021886, -0.0000021876,0.0000021864,0.0000021850,0.0000021826,0.0000021787, -0.0000021736,0.0000021680,0.0000021622,0.0000021560,0.0000021491, -0.0000021428,0.0000021381,0.0000021351,0.0000021330,0.0000021315, -0.0000021296,0.0000021275,0.0000021255,0.0000021229,0.0000021196, -0.0000021165,0.0000021137,0.0000021111,0.0000021085,0.0000021056, -0.0000021024,0.0000020992,0.0000020962,0.0000020943,0.0000020943, -0.0000020959,0.0000020993,0.0000021062,0.0000021149,0.0000021221, -0.0000021217,0.0000021159,0.0000021076,0.0000021023,0.0000021018, -0.0000021033,0.0000021048,0.0000021057,0.0000021061,0.0000021056, -0.0000021044,0.0000021036,0.0000021035,0.0000021027,0.0000021010, -0.0000020989,0.0000020966,0.0000020944,0.0000020926,0.0000020912, -0.0000020906,0.0000020899,0.0000020888,0.0000020881,0.0000020886, -0.0000020910,0.0000020945,0.0000020982,0.0000021018,0.0000021051, -0.0000021065,0.0000021061,0.0000021040,0.0000021021,0.0000021002, -0.0000020979,0.0000020961,0.0000020949,0.0000020954,0.0000020982, -0.0000021023,0.0000021072,0.0000021128,0.0000021174,0.0000021191, -0.0000021191,0.0000021181,0.0000021157,0.0000021113,0.0000021058, -0.0000021009,0.0000020991,0.0000021004,0.0000021037,0.0000021060, -0.0000021066,0.0000021077,0.0000021115,0.0000021202,0.0000021339, -0.0000021459,0.0000021492,0.0000021471,0.0000021432,0.0000021402, -0.0000021390,0.0000021406,0.0000021451,0.0000021487,0.0000021506, -0.0000021538,0.0000021583,0.0000021610,0.0000021616,0.0000021592, -0.0000021506,0.0000021410,0.0000021356,0.0000021337,0.0000021326, -0.0000021318,0.0000021300,0.0000021246,0.0000021187,0.0000021172, -0.0000021179,0.0000021179,0.0000021165,0.0000021151,0.0000021148, -0.0000021159,0.0000021195,0.0000021239,0.0000021283,0.0000021319, -0.0000021337,0.0000021342,0.0000021350,0.0000021354,0.0000021333, -0.0000021293,0.0000021262,0.0000021241,0.0000021211,0.0000021177, -0.0000021151,0.0000021121,0.0000021085,0.0000021076,0.0000021116, -0.0000021185,0.0000021227,0.0000021213,0.0000021163,0.0000021118, -0.0000021085,0.0000021035,0.0000020970,0.0000020916,0.0000020883, -0.0000020864,0.0000020854,0.0000020849,0.0000020849,0.0000020860, -0.0000020878,0.0000020900,0.0000020929,0.0000020959,0.0000020983, -0.0000020989,0.0000020981,0.0000020967,0.0000020955,0.0000020945, -0.0000020934,0.0000020911,0.0000020873,0.0000020834,0.0000020811, -0.0000020796,0.0000020780,0.0000020774,0.0000020786,0.0000020821, -0.0000020865,0.0000020907,0.0000020948,0.0000020992,0.0000021039, -0.0000021095,0.0000021156,0.0000021209,0.0000021238,0.0000021242, -0.0000021235,0.0000021231,0.0000021230,0.0000021210,0.0000021187, -0.0000021184,0.0000021155,0.0000021005,0.0000020815,0.0000020726, -0.0000020762,0.0000020998,0.0000021369,0.0000021657,0.0000021812, -0.0000021918,0.0000021991,0.0000022033,0.0000022063,0.0000022076, -0.0000022069,0.0000022056,0.0000022044,0.0000022045,0.0000022062, -0.0000022085,0.0000022097,0.0000022089,0.0000022069,0.0000022052, -0.0000022043,0.0000022027,0.0000021992,0.0000021943,0.0000021864, -0.0000021725,0.0000021552,0.0000021445,0.0000021430,0.0000021439, -0.0000021446,0.0000021489,0.0000021621,0.0000021798,0.0000021930, -0.0000021999,0.0000022027,0.0000022023,0.0000021996,0.0000021981, -0.0000022023,0.0000022092,0.0000022091,0.0000021977,0.0000021929, -0.0000021780,0.0000021738,0.0000021713,0.0000021540,0.0000021328, -0.0000021282,0.0000021363,0.0000021546,0.0000021878,0.0000022214, -0.0000022369,0.0000022394,0.0000022423,0.0000022479,0.0000022542, -0.0000022595,0.0000022638,0.0000022683,0.0000022734,0.0000022788, -0.0000022841,0.0000022886,0.0000022913,0.0000022926,0.0000022935, -0.0000022940,0.0000022941,0.0000022934,0.0000022917,0.0000022892, -0.0000022862,0.0000022825,0.0000022784,0.0000022748,0.0000022720, -0.0000022698,0.0000022686,0.0000022689,0.0000022701,0.0000022709, -0.0000022711,0.0000022708,0.0000022704,0.0000022700,0.0000022700, -0.0000022702,0.0000022707,0.0000022715,0.0000022721,0.0000022724, -0.0000022727,0.0000022729,0.0000022727,0.0000022723,0.0000022721, -0.0000022722,0.0000022723,0.0000022726,0.0000022733,0.0000022746, -0.0000022761,0.0000022773,0.0000022778,0.0000022779,0.0000022778, -0.0000022764,0.0000022730,0.0000022681,0.0000022620,0.0000022546, -0.0000022457,0.0000022357,0.0000022264,0.0000022189,0.0000022136, -0.0000022099,0.0000022076,0.0000022061,0.0000022046,0.0000022031, -0.0000022029,0.0000022049,0.0000022087,0.0000022130,0.0000022165, -0.0000022194,0.0000022223,0.0000022250,0.0000022273,0.0000022284, -0.0000022280,0.0000022251,0.0000022197,0.0000022139,0.0000022090, -0.0000022038,0.0000021981,0.0000021919,0.0000021853,0.0000021791, -0.0000021731,0.0000021673,0.0000021625,0.0000021580,0.0000021535, -0.0000021500,0.0000021468,0.0000021430,0.0000021408,0.0000021422, -0.0000021468,0.0000021506,0.0000021527,0.0000021542,0.0000021547, -0.0000021541,0.0000021526,0.0000021494,0.0000021459,0.0000021436, -0.0000021413,0.0000021395,0.0000021390,0.0000021397,0.0000021412, -0.0000021446,0.0000021502,0.0000021581,0.0000021675,0.0000021778, -0.0000021886,0.0000021993,0.0000022090,0.0000022179,0.0000022259, -0.0000022333,0.0000022403,0.0000022461,0.0000022506,0.0000022537, -0.0000022562,0.0000022582,0.0000022592,0.0000022592,0.0000022590, -0.0000022586,0.0000022579,0.0000022569,0.0000022569,0.0000022583, -0.0000022596,0.0000022606,0.0000022631,0.0000022673,0.0000022725, -0.0000022778,0.0000022833,0.0000022884,0.0000022919,0.0000022939, -0.0000022956,0.0000022972,0.0000022985,0.0000022988,0.0000022983, -0.0000022969,0.0000022952,0.0000022950,0.0000022964,0.0000022993, -0.0000023026,0.0000023045,0.0000023047,0.0000023018,0.0000022949, -0.0000022847,0.0000022745,0.0000022689,0.0000022685,0.0000022734, -0.0000022827,0.0000022938,0.0000023026,0.0000023071,0.0000023072, -0.0000023061,0.0000023052,0.0000023040,0.0000023030,0.0000023023, -0.0000023026,0.0000023032,0.0000023039,0.0000023050,0.0000023063, -0.0000023075,0.0000023092,0.0000023115,0.0000023143,0.0000023170, -0.0000023196,0.0000023222,0.0000023244,0.0000023261,0.0000023263, -0.0000023246,0.0000023219,0.0000023185,0.0000023151,0.0000023125, -0.0000023106,0.0000023096,0.0000023094,0.0000023104,0.0000023125, -0.0000023153,0.0000023177,0.0000023185,0.0000023184,0.0000023182, -0.0000023181,0.0000023183,0.0000023186,0.0000023192,0.0000023201, -0.0000023211,0.0000023216,0.0000023215,0.0000023205,0.0000023188, -0.0000023155,0.0000023112,0.0000023061,0.0000023007,0.0000022957, -0.0000022923,0.0000022912,0.0000022912,0.0000022916,0.0000022921, -0.0000022930,0.0000022945,0.0000022964,0.0000022980,0.0000022994, -0.0000023002,0.0000023004,0.0000023000,0.0000022990,0.0000022977, -0.0000022962,0.0000022949,0.0000022939,0.0000022927,0.0000022911, -0.0000022895,0.0000022874,0.0000022837,0.0000022788,0.0000022732, -0.0000022676,0.0000022637,0.0000022619,0.0000022616,0.0000022616, -0.0000022613,0.0000022604,0.0000022583,0.0000022547,0.0000022495, -0.0000022444,0.0000022406,0.0000022381,0.0000022364,0.0000022351, -0.0000022342,0.0000022338,0.0000022337,0.0000022348,0.0000022365, -0.0000022380,0.0000022390,0.0000022393,0.0000022397,0.0000022396, -0.0000022388,0.0000022372,0.0000022349,0.0000022318,0.0000022281, -0.0000022240,0.0000022194,0.0000022147,0.0000022095,0.0000022040, -0.0000021986,0.0000021926,0.0000021866,0.0000021806,0.0000021742, -0.0000021689,0.0000021676,0.0000021657,0.0000021657,0.0000021669, -0.0000021684,0.0000021708,0.0000021733,0.0000021749,0.0000021762, -0.0000021777,0.0000021792,0.0000021820,0.0000021856,0.0000021891, -0.0000021922,0.0000021953,0.0000021988,0.0000022027,0.0000022065, -0.0000022090,0.0000022111,0.0000022136,0.0000022158,0.0000022170, -0.0000022167,0.0000022153,0.0000022129,0.0000022100,0.0000022072, -0.0000022050,0.0000022039,0.0000022044,0.0000022054,0.0000022062, -0.0000022078,0.0000022106,0.0000022140,0.0000022179,0.0000022213, -0.0000022244,0.0000022272,0.0000022299,0.0000022332,0.0000022375, -0.0000022427,0.0000022486,0.0000022552,0.0000022613,0.0000022667, -0.0000022711,0.0000022746,0.0000022767,0.0000022770,0.0000022761, -0.0000022742,0.0000022714,0.0000022678,0.0000022643,0.0000022611, -0.0000022577,0.0000022538,0.0000022498,0.0000022458,0.0000022434, -0.0000022428,0.0000022436,0.0000022456,0.0000022478,0.0000022499, -0.0000022516,0.0000022536,0.0000022568,0.0000022608,0.0000022653, -0.0000022705,0.0000022749,0.0000022768,0.0000022755,0.0000022716, -0.0000022673,0.0000022647,0.0000022629,0.0000022610,0.0000022602, -0.0000022603,0.0000022609,0.0000022604,0.0000022586,0.0000022559, -0.0000022525,0.0000022486,0.0000022448,0.0000022429,0.0000022430, -0.0000022438,0.0000022453,0.0000022483,0.0000022523,0.0000022569, -0.0000022587,0.0000022564,0.0000022504,0.0000022420,0.0000022338, -0.0000022312,0.0000022346,0.0000022383,0.0000022405,0.0000022421, -0.0000022439,0.0000022632,0.0000022736,0.0000022736,0.0000022806, -0.0000022953,0.0000023025,0.0000023168,0.0000023176,0.0000023074, -0.0000022948,0.0000022751,0.0000022616,0.0000022522,0.0000022546, -0.0000022664,0.0000022743,0.0000022744,0.0000022753,0.0000022842, -0.0000022913,0.0000022926,0.0000022912,0.0000022895,0.0000022876, -0.0000022891,0.0000022957,0.0000023017,0.0000023123,0.0000023285, -0.0000023466,0.0000023544,0.0000023620,0.0000023563,0.0000023379, -0.0000023283,0.0000023308,0.0000023307,0.0000023270,0.0000023234, -0.0000023203,0.0000023145,0.0000023075,0.0000023018,0.0000022947, -0.0000022880,0.0000022847,0.0000022838,0.0000022847,0.0000022884, -0.0000022938,0.0000022987,0.0000023023,0.0000023039,0.0000023039, -0.0000023024,0.0000022999,0.0000022971,0.0000022942,0.0000022894, -0.0000022856,0.0000022843,0.0000022842,0.0000022836,0.0000022826, -0.0000022839,0.0000022877,0.0000022907,0.0000022911,0.0000022895, -0.0000022897,0.0000022947,0.0000023039,0.0000023122,0.0000023146, -0.0000023105,0.0000023027,0.0000022951,0.0000022904,0.0000022805, -0.0000022660,0.0000022438,0.0000022137,0.0000022114,0.0000022234, -0.0000022225,0.0000022190,0.0000022199,0.0000022058,0.0000021745, -0.0000021649,0.0000021848,0.0000022097,0.0000022261,0.0000022360, -0.0000022460,0.0000022566,0.0000022646,0.0000022681,0.0000022671, -0.0000022632,0.0000022585,0.0000022534,0.0000022459,0.0000022372, -0.0000022326,0.0000022323,0.0000022360,0.0000022457,0.0000022603, -0.0000022737,0.0000022771,0.0000022691,0.0000022572,0.0000022460, -0.0000022283,0.0000022088,0.0000022008,0.0000022004,0.0000022055, -0.0000022159,0.0000022224,0.0000022250,0.0000022281,0.0000022309, -0.0000022337,0.0000022365,0.0000022392,0.0000022418,0.0000022452, -0.0000022484,0.0000022503,0.0000022525,0.0000022549,0.0000022573, -0.0000022595,0.0000022579,0.0000022545,0.0000022541,0.0000022553, -0.0000022563,0.0000022565,0.0000022570,0.0000022578,0.0000022585, -0.0000022703,0.0000022920,0.0000023055,0.0000023073,0.0000023069, -0.0000023072,0.0000023095,0.0000023131,0.0000023159,0.0000023168, -0.0000023177,0.0000023197,0.0000023217,0.0000023232,0.0000023248, -0.0000023258,0.0000023264,0.0000023277,0.0000023299,0.0000023325, -0.0000023354,0.0000023385,0.0000023415,0.0000023447,0.0000023481, -0.0000023510,0.0000023533,0.0000023556,0.0000023577,0.0000023580, -0.0000023574,0.0000023525,0.0000023432,0.0000023300,0.0000023155, -0.0000023044,0.0000022989,0.0000022976,0.0000022981,0.0000022996, -0.0000023007,0.0000023019,0.0000023042,0.0000023078,0.0000023111, -0.0000023143,0.0000023182,0.0000023220,0.0000023248,0.0000023279, -0.0000023320,0.0000023358,0.0000023386,0.0000023405,0.0000023412, -0.0000023415,0.0000023411,0.0000023392,0.0000023352,0.0000023292, -0.0000023219,0.0000023138,0.0000023056,0.0000022994,0.0000022970, -0.0000022985,0.0000023048,0.0000023140,0.0000023247,0.0000023360, -0.0000023466,0.0000023539,0.0000023572,0.0000023570,0.0000023547, -0.0000023526,0.0000023517,0.0000023511,0.0000023511,0.0000023518, -0.0000023523,0.0000023522,0.0000023529,0.0000023546,0.0000023579, -0.0000023620,0.0000023659,0.0000023696,0.0000023757,0.0000023859, -0.0000023971,0.0000024042,0.0000024058,0.0000024039,0.0000023980, -0.0000023930,0.0000023939,0.0000023961,0.0000023943,0.0000023891, -0.0000023863,0.0000023863,0.0000023865,0.0000023858,0.0000023842, -0.0000023819,0.0000023797,0.0000023783,0.0000023773,0.0000023760, -0.0000023741,0.0000023716,0.0000023693,0.0000023675,0.0000023662, -0.0000023647,0.0000023623,0.0000023593,0.0000023552,0.0000023496, -0.0000023435,0.0000023382,0.0000023341,0.0000023306,0.0000023270, -0.0000023225,0.0000023172,0.0000023120,0.0000023081,0.0000023054, -0.0000023035,0.0000023014,0.0000022990,0.0000022954,0.0000022899, -0.0000022833,0.0000022765,0.0000022699,0.0000022645,0.0000022615, -0.0000022614,0.0000022618,0.0000022622,0.0000022617,0.0000022610, -0.0000022593,0.0000022576,0.0000022563,0.0000022554,0.0000022553, -0.0000022557,0.0000022566,0.0000022573,0.0000022576,0.0000022578, -0.0000022576,0.0000022568,0.0000022551,0.0000022531,0.0000022514, -0.0000022497,0.0000022482,0.0000022475,0.0000022475,0.0000022479, -0.0000022477,0.0000022468,0.0000022452,0.0000022429,0.0000022397, -0.0000022361,0.0000022325,0.0000022289,0.0000022253,0.0000022221, -0.0000022195,0.0000022179,0.0000022172,0.0000022172,0.0000022181, -0.0000022191,0.0000022202,0.0000022214,0.0000022226,0.0000022236, -0.0000022242,0.0000022247,0.0000022255,0.0000022264,0.0000022276, -0.0000022289,0.0000022307,0.0000022325,0.0000022345,0.0000022369, -0.0000022391,0.0000022409,0.0000022420,0.0000022426,0.0000022427, -0.0000022428,0.0000022431,0.0000022438,0.0000022448,0.0000022456, -0.0000022453,0.0000022440,0.0000022430,0.0000022432,0.0000022447, -0.0000022468,0.0000022482,0.0000022502,0.0000022519,0.0000022534, -0.0000022554,0.0000022569,0.0000022578,0.0000022554,0.0000022505, -0.0000022436,0.0000022362,0.0000022285,0.0000022210,0.0000022130, -0.0000022053,0.0000022023,0.0000022054,0.0000022134,0.0000022225, -0.0000022303,0.0000022390,0.0000022480,0.0000022545,0.0000022572, -0.0000022577,0.0000022583,0.0000022593,0.0000022613,0.0000022659, -0.0000022727,0.0000022804,0.0000022850,0.0000022854,0.0000022836, -0.0000022833,0.0000022847,0.0000022860,0.0000022901,0.0000022946, -0.0000022938,0.0000023019,0.0000023260,0.0000023419,0.0000023427, -0.0000023311,0.0000023158,0.0000023060,0.0000022993,0.0000022938, -0.0000022928,0.0000022959,0.0000022963,0.0000022897,0.0000022777, -0.0000022642,0.0000022518,0.0000022405,0.0000022300,0.0000022214, -0.0000022147,0.0000022110,0.0000022098,0.0000022091,0.0000022080, -0.0000022071,0.0000022083,0.0000022117,0.0000022147,0.0000022168, -0.0000022174,0.0000022142,0.0000022095,0.0000022032,0.0000021990, -0.0000021991,0.0000022067,0.0000022172,0.0000022268,0.0000022339, -0.0000022383,0.0000022396,0.0000022389,0.0000022369,0.0000022348, -0.0000022328,0.0000022312,0.0000022298,0.0000022280,0.0000022260, -0.0000022246,0.0000022234,0.0000022218,0.0000022202,0.0000022193, -0.0000022176,0.0000022134,0.0000022082,0.0000022030,0.0000021986, -0.0000021955,0.0000021943,0.0000021967,0.0000022049,0.0000022177, -0.0000022271,0.0000022267,0.0000022151,0.0000022029,0.0000022090, -0.0000022448,0.0000022912,0.0000023073,0.0000022845,0.0000022481, -0.0000022237,0.0000022160,0.0000022158,0.0000022120,0.0000022009, -0.0000021875,0.0000021769,0.0000021707,0.0000021691,0.0000021703, -0.0000021717,0.0000021714,0.0000021701,0.0000021701,0.0000021720, -0.0000021741,0.0000021762,0.0000021780,0.0000021791,0.0000021792, -0.0000021794,0.0000021804,0.0000021806,0.0000021784,0.0000021739, -0.0000021685,0.0000021630,0.0000021583,0.0000021550,0.0000021530, -0.0000021517,0.0000021504,0.0000021490,0.0000021469,0.0000021438, -0.0000021418,0.0000021422,0.0000021451,0.0000021483,0.0000021520, -0.0000021572,0.0000021635,0.0000021687,0.0000021732,0.0000021796, -0.0000021888,0.0000022005,0.0000022128,0.0000022209,0.0000022226, -0.0000022217,0.0000022210,0.0000022225,0.0000022259,0.0000022294, -0.0000022315,0.0000022311,0.0000022283,0.0000022241,0.0000022196, -0.0000022162,0.0000022148,0.0000022149,0.0000022161,0.0000022174, -0.0000022178,0.0000022166,0.0000022140,0.0000022098,0.0000022040, -0.0000021967,0.0000021884,0.0000021797,0.0000021710,0.0000021630, -0.0000021567,0.0000021521,0.0000021482,0.0000021442,0.0000021396, -0.0000021355,0.0000021340,0.0000021358,0.0000021410,0.0000021464, -0.0000021482,0.0000021471,0.0000021429,0.0000021374,0.0000021345, -0.0000021350,0.0000021369,0.0000021386,0.0000021402,0.0000021429, -0.0000021479,0.0000021548,0.0000021621,0.0000021654,0.0000021606, -0.0000021497,0.0000021361,0.0000021244,0.0000021144,0.0000021060, -0.0000020998,0.0000020958,0.0000020941,0.0000020979,0.0000021111, -0.0000021299,0.0000021473,0.0000021599,0.0000021691,0.0000021762, -0.0000021817,0.0000021872,0.0000021937,0.0000022017,0.0000022103, -0.0000022184,0.0000022265,0.0000022365,0.0000022500,0.0000022660, -0.0000022826,0.0000022988,0.0000023123,0.0000023178,0.0000023149, -0.0000023096,0.0000023070,0.0000023150,0.0000023350,0.0000023627, -0.0000023931,0.0000024200,0.0000024374,0.0000024441,0.0000024451, -0.0000024464,0.0000024512,0.0000024589,0.0000024668,0.0000024708, -0.0000024695,0.0000024588,0.0000024467,0.0000024397,0.0000024364, -0.0000024331,0.0000024284,0.0000024243,0.0000024227,0.0000024264, -0.0000024309,0.0000024329,0.0000024314,0.0000024275,0.0000024232, -0.0000024168,0.0000024099,0.0000024033,0.0000023993,0.0000023987, -0.0000023993,0.0000024010,0.0000024019,0.0000024024,0.0000024021, -0.0000024016,0.0000024015,0.0000024011,0.0000023998,0.0000023978, -0.0000023971,0.0000024008,0.0000024099,0.0000024192,0.0000024231, -0.0000024210,0.0000024112,0.0000023970,0.0000023856,0.0000023798, -0.0000023742,0.0000023671,0.0000023608,0.0000023545,0.0000023466, -0.0000023354,0.0000023217,0.0000023074,0.0000022934,0.0000022797, -0.0000022680,0.0000022592,0.0000022547,0.0000022542,0.0000022554, -0.0000022575,0.0000022602,0.0000022634,0.0000022668,0.0000022696, -0.0000022721,0.0000022758,0.0000022811,0.0000022879,0.0000022973, -0.0000023104,0.0000023266,0.0000023453,0.0000023661,0.0000023859, -0.0000024017,0.0000024111,0.0000024151,0.0000024138,0.0000024101, -0.0000024019,0.0000023921,0.0000023819,0.0000023714,0.0000023610, -0.0000023512,0.0000023422,0.0000023340,0.0000023262,0.0000023191, -0.0000023122,0.0000023047,0.0000022968,0.0000022890,0.0000022819, -0.0000022760,0.0000022710,0.0000022666,0.0000022629,0.0000022595, -0.0000022559,0.0000022531,0.0000022522,0.0000022529,0.0000022558, -0.0000022599,0.0000022663,0.0000022735,0.0000022804,0.0000022867, -0.0000022910,0.0000022935,0.0000022943,0.0000022932,0.0000022899, -0.0000022857,0.0000022818,0.0000022794,0.0000022783,0.0000022778, -0.0000022771,0.0000022761,0.0000022742,0.0000022708,0.0000022664, -0.0000022615,0.0000022560,0.0000022509,0.0000022469,0.0000022449, -0.0000022452,0.0000022468,0.0000022492,0.0000022524,0.0000022556, -0.0000022574,0.0000022576,0.0000022554,0.0000022516,0.0000022453, -0.0000022373,0.0000022291,0.0000022216,0.0000022150,0.0000022098, -0.0000022055,0.0000022008,0.0000021953,0.0000021906,0.0000021876, -0.0000021848,0.0000021819,0.0000021798,0.0000021793,0.0000021804, -0.0000021829,0.0000021860,0.0000021899,0.0000021935,0.0000021964, -0.0000021991,0.0000022012,0.0000022019,0.0000022017,0.0000022008, -0.0000021996,0.0000021980,0.0000021957,0.0000021930,0.0000021914, -0.0000021912,0.0000021916,0.0000021918,0.0000021914,0.0000021898, -0.0000021865,0.0000021827,0.0000021782,0.0000021719,0.0000021632, -0.0000021540,0.0000021457,0.0000021391,0.0000021344,0.0000021318, -0.0000021304,0.0000021290,0.0000021277,0.0000021264,0.0000021247, -0.0000021215,0.0000021173,0.0000021129,0.0000021090,0.0000021054, -0.0000021027,0.0000021004,0.0000020980,0.0000020952,0.0000020923, -0.0000020904,0.0000020893,0.0000020899,0.0000020936,0.0000021013, -0.0000021110,0.0000021178,0.0000021175,0.0000021129,0.0000021061, -0.0000021014,0.0000021000,0.0000021008,0.0000021024,0.0000021031, -0.0000021024,0.0000021011,0.0000021007,0.0000021006,0.0000020997, -0.0000020980,0.0000020959,0.0000020938,0.0000020919,0.0000020897, -0.0000020878,0.0000020865,0.0000020853,0.0000020838,0.0000020826, -0.0000020824,0.0000020836,0.0000020858,0.0000020887,0.0000020927, -0.0000020975,0.0000021011,0.0000021026,0.0000021025,0.0000021021, -0.0000021004,0.0000020984,0.0000020966,0.0000020951,0.0000020949, -0.0000020966,0.0000020986,0.0000021018,0.0000021057,0.0000021095, -0.0000021121,0.0000021137,0.0000021138,0.0000021115,0.0000021073, -0.0000021021,0.0000020971,0.0000020949,0.0000020962,0.0000021004, -0.0000021038,0.0000021046,0.0000021050,0.0000021076,0.0000021156, -0.0000021294,0.0000021425,0.0000021470,0.0000021456,0.0000021426, -0.0000021405,0.0000021410,0.0000021461,0.0000021519,0.0000021538, -0.0000021541,0.0000021562,0.0000021591,0.0000021608,0.0000021610, -0.0000021567,0.0000021471,0.0000021378,0.0000021321,0.0000021291, -0.0000021281,0.0000021280,0.0000021250,0.0000021191,0.0000021157, -0.0000021159,0.0000021175,0.0000021178,0.0000021170,0.0000021158, -0.0000021154,0.0000021163,0.0000021189,0.0000021217,0.0000021245, -0.0000021276,0.0000021296,0.0000021307,0.0000021319,0.0000021328, -0.0000021319,0.0000021289,0.0000021254,0.0000021222,0.0000021182, -0.0000021142,0.0000021117,0.0000021099,0.0000021069,0.0000021047, -0.0000021064,0.0000021117,0.0000021174,0.0000021190,0.0000021165, -0.0000021123,0.0000021085,0.0000021034,0.0000020961,0.0000020890, -0.0000020845,0.0000020823,0.0000020813,0.0000020812,0.0000020817, -0.0000020829,0.0000020847,0.0000020867,0.0000020892,0.0000020921, -0.0000020945,0.0000020951,0.0000020942,0.0000020919,0.0000020888, -0.0000020853,0.0000020819,0.0000020783,0.0000020740,0.0000020694, -0.0000020663,0.0000020652,0.0000020657,0.0000020676,0.0000020711, -0.0000020759,0.0000020809,0.0000020854,0.0000020896,0.0000020936, -0.0000020973,0.0000021011,0.0000021056,0.0000021109,0.0000021160, -0.0000021193,0.0000021199,0.0000021193,0.0000021188,0.0000021189, -0.0000021181,0.0000021178,0.0000021180,0.0000021125,0.0000020950, -0.0000020772,0.0000020706,0.0000020771,0.0000021037,0.0000021408, -0.0000021677,0.0000021829,0.0000021932,0.0000021995,0.0000022027, -0.0000022049,0.0000022060,0.0000022057,0.0000022051,0.0000022047, -0.0000022052,0.0000022068,0.0000022088,0.0000022093,0.0000022078, -0.0000022052,0.0000022031,0.0000022019,0.0000022010,0.0000021996, -0.0000021961,0.0000021877,0.0000021730,0.0000021555,0.0000021440, -0.0000021420,0.0000021429,0.0000021444,0.0000021496,0.0000021626, -0.0000021796,0.0000021925,0.0000021987,0.0000021999,0.0000021982, -0.0000021953,0.0000021950,0.0000022017,0.0000022104,0.0000022079, -0.0000022058,0.0000021887,0.0000021740,0.0000021707,0.0000021644, -0.0000021426,0.0000021239,0.0000021228,0.0000021327,0.0000021524, -0.0000021846,0.0000022170,0.0000022349,0.0000022409,0.0000022438, -0.0000022489,0.0000022561,0.0000022630,0.0000022679,0.0000022713, -0.0000022737,0.0000022758,0.0000022776,0.0000022788,0.0000022796, -0.0000022801,0.0000022801,0.0000022799,0.0000022794,0.0000022782, -0.0000022762,0.0000022736,0.0000022706,0.0000022678,0.0000022654, -0.0000022631,0.0000022610,0.0000022600,0.0000022604,0.0000022617, -0.0000022623,0.0000022618,0.0000022608,0.0000022599,0.0000022592, -0.0000022588,0.0000022587,0.0000022588,0.0000022592,0.0000022597, -0.0000022601,0.0000022609,0.0000022617,0.0000022622,0.0000022625, -0.0000022626,0.0000022627,0.0000022627,0.0000022631,0.0000022641, -0.0000022658,0.0000022673,0.0000022680,0.0000022681,0.0000022677, -0.0000022668,0.0000022643,0.0000022598,0.0000022538,0.0000022473, -0.0000022406,0.0000022330,0.0000022240,0.0000022145,0.0000022062, -0.0000022004,0.0000021965,0.0000021935,0.0000021907,0.0000021882, -0.0000021856,0.0000021838,0.0000021842,0.0000021867,0.0000021904, -0.0000021941,0.0000021971,0.0000021991,0.0000022011,0.0000022043, -0.0000022071,0.0000022084,0.0000022082,0.0000022053,0.0000022004, -0.0000021950,0.0000021891,0.0000021828,0.0000021764,0.0000021698, -0.0000021639,0.0000021585,0.0000021529,0.0000021486,0.0000021466, -0.0000021450,0.0000021438,0.0000021428,0.0000021414,0.0000021402, -0.0000021413,0.0000021460,0.0000021528,0.0000021582,0.0000021614, -0.0000021636,0.0000021645,0.0000021639,0.0000021619,0.0000021584, -0.0000021551,0.0000021519,0.0000021481,0.0000021443,0.0000021419, -0.0000021411,0.0000021420,0.0000021436,0.0000021460,0.0000021492, -0.0000021518,0.0000021549,0.0000021619,0.0000021701,0.0000021786, -0.0000021882,0.0000021984,0.0000022081,0.0000022166,0.0000022233, -0.0000022275,0.0000022303,0.0000022335,0.0000022366,0.0000022382, -0.0000022389,0.0000022404,0.0000022429,0.0000022457,0.0000022475, -0.0000022495,0.0000022518,0.0000022535,0.0000022549,0.0000022573, -0.0000022610,0.0000022654,0.0000022699,0.0000022747,0.0000022788, -0.0000022817,0.0000022841,0.0000022872,0.0000022910,0.0000022947, -0.0000022980,0.0000023001,0.0000023002,0.0000022986,0.0000022964, -0.0000022955,0.0000022958,0.0000022981,0.0000023014,0.0000023042, -0.0000023048,0.0000023034,0.0000022987,0.0000022904,0.0000022799, -0.0000022699,0.0000022644,0.0000022643,0.0000022687,0.0000022768, -0.0000022865,0.0000022952,0.0000023015,0.0000023051,0.0000023058, -0.0000023069,0.0000023069,0.0000023066,0.0000023059,0.0000023048, -0.0000023041,0.0000023035,0.0000023038,0.0000023048,0.0000023065, -0.0000023090,0.0000023117,0.0000023142,0.0000023163,0.0000023183, -0.0000023202,0.0000023215,0.0000023218,0.0000023210,0.0000023194, -0.0000023172,0.0000023150,0.0000023129,0.0000023111,0.0000023103, -0.0000023107,0.0000023124,0.0000023151,0.0000023180,0.0000023198, -0.0000023201,0.0000023198,0.0000023196,0.0000023199,0.0000023204, -0.0000023210,0.0000023219,0.0000023229,0.0000023237,0.0000023239, -0.0000023239,0.0000023235,0.0000023220,0.0000023192,0.0000023152, -0.0000023108,0.0000023068,0.0000023037,0.0000023017,0.0000023007, -0.0000023004,0.0000023005,0.0000023012,0.0000023023,0.0000023037, -0.0000023051,0.0000023063,0.0000023071,0.0000023073,0.0000023069, -0.0000023058,0.0000023041,0.0000023021,0.0000022998,0.0000022973, -0.0000022945,0.0000022912,0.0000022880,0.0000022852,0.0000022819, -0.0000022777,0.0000022733,0.0000022683,0.0000022643,0.0000022625, -0.0000022623,0.0000022621,0.0000022615,0.0000022600,0.0000022570, -0.0000022523,0.0000022464,0.0000022407,0.0000022364,0.0000022339, -0.0000022322,0.0000022310,0.0000022305,0.0000022306,0.0000022317, -0.0000022338,0.0000022364,0.0000022385,0.0000022397,0.0000022408, -0.0000022419,0.0000022429,0.0000022437,0.0000022437,0.0000022432, -0.0000022414,0.0000022387,0.0000022353,0.0000022312,0.0000022266, -0.0000022221,0.0000022178,0.0000022136,0.0000022088,0.0000022040, -0.0000021994,0.0000021943,0.0000021881,0.0000021816,0.0000021760, -0.0000021722,0.0000021702,0.0000021691,0.0000021685,0.0000021675, -0.0000021674,0.0000021645,0.0000021625,0.0000021591,0.0000021561, -0.0000021543,0.0000021523,0.0000021499,0.0000021479,0.0000021461, -0.0000021463,0.0000021477,0.0000021504,0.0000021543,0.0000021599, -0.0000021664,0.0000021727,0.0000021781,0.0000021827,0.0000021862, -0.0000021884,0.0000021895,0.0000021901,0.0000021908,0.0000021915, -0.0000021921,0.0000021927,0.0000021935,0.0000021946,0.0000021960, -0.0000021984,0.0000022015,0.0000022046,0.0000022086,0.0000022130, -0.0000022182,0.0000022238,0.0000022299,0.0000022365,0.0000022436, -0.0000022508,0.0000022579,0.0000022640,0.0000022686,0.0000022714, -0.0000022728,0.0000022731,0.0000022723,0.0000022702,0.0000022668, -0.0000022633,0.0000022596,0.0000022553,0.0000022504,0.0000022454, -0.0000022414,0.0000022387,0.0000022375,0.0000022378,0.0000022391, -0.0000022413,0.0000022441,0.0000022474,0.0000022512,0.0000022553, -0.0000022595,0.0000022631,0.0000022659,0.0000022674,0.0000022683, -0.0000022693,0.0000022696,0.0000022680,0.0000022661,0.0000022646, -0.0000022636,0.0000022627,0.0000022618,0.0000022615,0.0000022613, -0.0000022607,0.0000022598,0.0000022581,0.0000022555,0.0000022521, -0.0000022486,0.0000022466,0.0000022461,0.0000022458,0.0000022464, -0.0000022479,0.0000022517,0.0000022556,0.0000022557,0.0000022513, -0.0000022426,0.0000022313,0.0000022262,0.0000022290,0.0000022326, -0.0000022343,0.0000022364,0.0000022387,0.0000022608,0.0000022745, -0.0000022760,0.0000022840,0.0000022969,0.0000023048,0.0000023175, -0.0000023145,0.0000023029,0.0000022868,0.0000022694,0.0000022563, -0.0000022517,0.0000022567,0.0000022648,0.0000022687,0.0000022691, -0.0000022749,0.0000022872,0.0000022947,0.0000022950,0.0000022942, -0.0000022922,0.0000022898,0.0000022910,0.0000022969,0.0000023023, -0.0000023106,0.0000023237,0.0000023431,0.0000023537,0.0000023623, -0.0000023619,0.0000023457,0.0000023321,0.0000023315,0.0000023342, -0.0000023306,0.0000023260,0.0000023234,0.0000023209,0.0000023157, -0.0000023102,0.0000023037,0.0000022972,0.0000022939,0.0000022928, -0.0000022924,0.0000022943,0.0000022983,0.0000023029,0.0000023073, -0.0000023092,0.0000023091,0.0000023060,0.0000023021,0.0000022967, -0.0000022914,0.0000022869,0.0000022843,0.0000022841,0.0000022851, -0.0000022856,0.0000022851,0.0000022848,0.0000022867,0.0000022884, -0.0000022882,0.0000022870,0.0000022870,0.0000022908,0.0000022997, -0.0000023094,0.0000023147,0.0000023134,0.0000023074,0.0000023009, -0.0000022961,0.0000022879,0.0000022728,0.0000022533,0.0000022231, -0.0000022110,0.0000022218,0.0000022235,0.0000022177,0.0000022177, -0.0000022090,0.0000021782,0.0000021597,0.0000021742,0.0000021992, -0.0000022187,0.0000022307,0.0000022401,0.0000022502,0.0000022590, -0.0000022647,0.0000022646,0.0000022611,0.0000022559,0.0000022505, -0.0000022441,0.0000022365,0.0000022321,0.0000022316,0.0000022338, -0.0000022408,0.0000022530,0.0000022682,0.0000022778,0.0000022754, -0.0000022648,0.0000022538,0.0000022406,0.0000022203,0.0000022047, -0.0000022002,0.0000022005,0.0000022069,0.0000022150,0.0000022184, -0.0000022217,0.0000022264,0.0000022303,0.0000022342,0.0000022379, -0.0000022411,0.0000022448,0.0000022480,0.0000022497,0.0000022502, -0.0000022506,0.0000022516,0.0000022549,0.0000022565,0.0000022534, -0.0000022500,0.0000022505,0.0000022523,0.0000022530,0.0000022530, -0.0000022538,0.0000022534,0.0000022555,0.0000022729,0.0000022946, -0.0000023034,0.0000023039,0.0000023041,0.0000023058,0.0000023091, -0.0000023128,0.0000023150,0.0000023150,0.0000023147,0.0000023155, -0.0000023164,0.0000023169,0.0000023172,0.0000023169,0.0000023157, -0.0000023150,0.0000023156,0.0000023172,0.0000023199,0.0000023234, -0.0000023276,0.0000023328,0.0000023388,0.0000023443,0.0000023491, -0.0000023535,0.0000023567,0.0000023578,0.0000023579,0.0000023558, -0.0000023511,0.0000023426,0.0000023307,0.0000023182,0.0000023077, -0.0000023008,0.0000022978,0.0000022973,0.0000022973,0.0000022973, -0.0000022984,0.0000023011,0.0000023049,0.0000023090,0.0000023136, -0.0000023190,0.0000023243,0.0000023299,0.0000023354,0.0000023404, -0.0000023442,0.0000023472,0.0000023489,0.0000023493,0.0000023485, -0.0000023453,0.0000023398,0.0000023331,0.0000023252,0.0000023167, -0.0000023088,0.0000023035,0.0000023016,0.0000023038,0.0000023109, -0.0000023223,0.0000023354,0.0000023467,0.0000023545,0.0000023585, -0.0000023595,0.0000023583,0.0000023555,0.0000023533,0.0000023521, -0.0000023514,0.0000023510,0.0000023510,0.0000023515,0.0000023517, -0.0000023522,0.0000023544,0.0000023579,0.0000023620,0.0000023659, -0.0000023698,0.0000023762,0.0000023861,0.0000023963,0.0000024027, -0.0000024043,0.0000024032,0.0000023980,0.0000023918,0.0000023909, -0.0000023943,0.0000023966,0.0000023948,0.0000023914,0.0000023902, -0.0000023904,0.0000023903,0.0000023893,0.0000023875,0.0000023851, -0.0000023826,0.0000023800,0.0000023776,0.0000023753,0.0000023731, -0.0000023710,0.0000023692,0.0000023672,0.0000023645,0.0000023611, -0.0000023572,0.0000023523,0.0000023468,0.0000023419,0.0000023374, -0.0000023326,0.0000023275,0.0000023216,0.0000023148,0.0000023081, -0.0000023034,0.0000023011,0.0000023002,0.0000022991,0.0000022967, -0.0000022928,0.0000022874,0.0000022812,0.0000022746,0.0000022682, -0.0000022631,0.0000022607,0.0000022605,0.0000022615,0.0000022615, -0.0000022604,0.0000022584,0.0000022567,0.0000022565,0.0000022566, -0.0000022572,0.0000022581,0.0000022592,0.0000022606,0.0000022625, -0.0000022644,0.0000022656,0.0000022661,0.0000022661,0.0000022655, -0.0000022640,0.0000022617,0.0000022591,0.0000022567,0.0000022544, -0.0000022527,0.0000022520,0.0000022517,0.0000022514,0.0000022506, -0.0000022496,0.0000022481,0.0000022454,0.0000022418,0.0000022380, -0.0000022340,0.0000022297,0.0000022253,0.0000022215,0.0000022185, -0.0000022168,0.0000022160,0.0000022160,0.0000022165,0.0000022173, -0.0000022182,0.0000022192,0.0000022198,0.0000022200,0.0000022203, -0.0000022210,0.0000022220,0.0000022233,0.0000022251,0.0000022274, -0.0000022297,0.0000022319,0.0000022344,0.0000022367,0.0000022385, -0.0000022398,0.0000022407,0.0000022411,0.0000022411,0.0000022410, -0.0000022408,0.0000022409,0.0000022409,0.0000022404,0.0000022392, -0.0000022377,0.0000022369,0.0000022371,0.0000022390,0.0000022413, -0.0000022437,0.0000022461,0.0000022484,0.0000022516,0.0000022546, -0.0000022589,0.0000022605,0.0000022596,0.0000022557,0.0000022488, -0.0000022392,0.0000022291,0.0000022203,0.0000022120,0.0000022041, -0.0000021985,0.0000021975,0.0000022043,0.0000022140,0.0000022249, -0.0000022359,0.0000022464,0.0000022534,0.0000022556,0.0000022560, -0.0000022564,0.0000022574,0.0000022597,0.0000022637,0.0000022704, -0.0000022789,0.0000022852,0.0000022861,0.0000022846,0.0000022840, -0.0000022847,0.0000022860,0.0000022912,0.0000022936,0.0000022921, -0.0000023064,0.0000023305,0.0000023427,0.0000023405,0.0000023262, -0.0000023102,0.0000023004,0.0000022938,0.0000022899,0.0000022903, -0.0000022909,0.0000022849,0.0000022720,0.0000022577,0.0000022456, -0.0000022349,0.0000022243,0.0000022154,0.0000022092,0.0000022059, -0.0000022058,0.0000022073,0.0000022086,0.0000022096,0.0000022122, -0.0000022158,0.0000022181,0.0000022179,0.0000022160,0.0000022107, -0.0000022042,0.0000022005,0.0000022013,0.0000022092,0.0000022193, -0.0000022278,0.0000022343,0.0000022397,0.0000022432,0.0000022439, -0.0000022425,0.0000022401,0.0000022381,0.0000022360,0.0000022344, -0.0000022337,0.0000022334,0.0000022328,0.0000022319,0.0000022309, -0.0000022294,0.0000022276,0.0000022269,0.0000022273,0.0000022276, -0.0000022259,0.0000022218,0.0000022157,0.0000022087,0.0000022013, -0.0000021947,0.0000021904,0.0000021905,0.0000021989,0.0000022138, -0.0000022251,0.0000022258,0.0000022147,0.0000022060,0.0000022180, -0.0000022599,0.0000022985,0.0000023005,0.0000022717,0.0000022362, -0.0000022175,0.0000022139,0.0000022132,0.0000022070,0.0000021951, -0.0000021827,0.0000021736,0.0000021695,0.0000021693,0.0000021704, -0.0000021714,0.0000021715,0.0000021712,0.0000021713,0.0000021727, -0.0000021753,0.0000021775,0.0000021783,0.0000021776,0.0000021766, -0.0000021768,0.0000021772,0.0000021758,0.0000021726,0.0000021683, -0.0000021633,0.0000021591,0.0000021562,0.0000021539,0.0000021527, -0.0000021524,0.0000021517,0.0000021499,0.0000021476,0.0000021461, -0.0000021464,0.0000021483,0.0000021503,0.0000021529,0.0000021558, -0.0000021597,0.0000021642,0.0000021703,0.0000021789,0.0000021898, -0.0000022027,0.0000022150,0.0000022223,0.0000022238,0.0000022236, -0.0000022241,0.0000022273,0.0000022325,0.0000022377,0.0000022409, -0.0000022417,0.0000022410,0.0000022390,0.0000022367,0.0000022347, -0.0000022335,0.0000022331,0.0000022330,0.0000022324,0.0000022302, -0.0000022258,0.0000022197,0.0000022127,0.0000022047,0.0000021959, -0.0000021862,0.0000021759,0.0000021654,0.0000021562,0.0000021498, -0.0000021459,0.0000021432,0.0000021400,0.0000021359,0.0000021313, -0.0000021285,0.0000021292,0.0000021341,0.0000021416,0.0000021476, -0.0000021492,0.0000021476,0.0000021425,0.0000021361,0.0000021329, -0.0000021337,0.0000021353,0.0000021359,0.0000021365,0.0000021384, -0.0000021440,0.0000021533,0.0000021627,0.0000021667,0.0000021624, -0.0000021512,0.0000021376,0.0000021256,0.0000021148,0.0000021058, -0.0000020995,0.0000020948,0.0000020923,0.0000020950,0.0000021075, -0.0000021263,0.0000021452,0.0000021612,0.0000021730,0.0000021810, -0.0000021866,0.0000021911,0.0000021962,0.0000022025,0.0000022093, -0.0000022154,0.0000022213,0.0000022301,0.0000022435,0.0000022599, -0.0000022773,0.0000022941,0.0000023078,0.0000023135,0.0000023105, -0.0000023050,0.0000023025,0.0000023108,0.0000023307,0.0000023578, -0.0000023874,0.0000024132,0.0000024297,0.0000024376,0.0000024413, -0.0000024453,0.0000024516,0.0000024597,0.0000024680,0.0000024732, -0.0000024709,0.0000024602,0.0000024477,0.0000024390,0.0000024346, -0.0000024310,0.0000024257,0.0000024211,0.0000024202,0.0000024217, -0.0000024239,0.0000024252,0.0000024248,0.0000024230,0.0000024200, -0.0000024174,0.0000024119,0.0000024057,0.0000024015,0.0000023997, -0.0000023996,0.0000024007,0.0000024025,0.0000024045,0.0000024054, -0.0000024051,0.0000024034,0.0000024009,0.0000023982,0.0000023974, -0.0000024012,0.0000024107,0.0000024203,0.0000024237,0.0000024214, -0.0000024112,0.0000023971,0.0000023865,0.0000023816,0.0000023778, -0.0000023706,0.0000023617,0.0000023540,0.0000023453,0.0000023340, -0.0000023203,0.0000023064,0.0000022927,0.0000022790,0.0000022659, -0.0000022555,0.0000022498,0.0000022487,0.0000022494,0.0000022503, -0.0000022511,0.0000022519,0.0000022527,0.0000022534,0.0000022539, -0.0000022552,0.0000022573,0.0000022598,0.0000022636,0.0000022698, -0.0000022789,0.0000022912,0.0000023085,0.0000023307,0.0000023544, -0.0000023757,0.0000023933,0.0000024047,0.0000024108,0.0000024070, -0.0000024031,0.0000023943,0.0000023844,0.0000023734,0.0000023627, -0.0000023532,0.0000023446,0.0000023364,0.0000023287,0.0000023218, -0.0000023152,0.0000023086,0.0000023015,0.0000022941,0.0000022871, -0.0000022810,0.0000022754,0.0000022702,0.0000022657,0.0000022620, -0.0000022594,0.0000022582,0.0000022578,0.0000022583,0.0000022608, -0.0000022659,0.0000022723,0.0000022791,0.0000022858,0.0000022910, -0.0000022941,0.0000022956,0.0000022955,0.0000022937,0.0000022897, -0.0000022845,0.0000022798,0.0000022769,0.0000022751,0.0000022737, -0.0000022725,0.0000022712,0.0000022691,0.0000022666,0.0000022633, -0.0000022590,0.0000022543,0.0000022487,0.0000022438,0.0000022398, -0.0000022377,0.0000022382,0.0000022408,0.0000022450,0.0000022491, -0.0000022519,0.0000022527,0.0000022518,0.0000022487,0.0000022456, -0.0000022414,0.0000022358,0.0000022289,0.0000022217,0.0000022157, -0.0000022101,0.0000022039,0.0000021973,0.0000021913,0.0000021869, -0.0000021832,0.0000021808,0.0000021789,0.0000021781,0.0000021784, -0.0000021796,0.0000021808,0.0000021821,0.0000021832,0.0000021840, -0.0000021845,0.0000021849,0.0000021849,0.0000021850,0.0000021848, -0.0000021843,0.0000021835,0.0000021826,0.0000021822,0.0000021828, -0.0000021839,0.0000021843,0.0000021843,0.0000021841,0.0000021834, -0.0000021816,0.0000021789,0.0000021754,0.0000021693,0.0000021608, -0.0000021516,0.0000021432,0.0000021360,0.0000021308,0.0000021277, -0.0000021264,0.0000021259,0.0000021257,0.0000021253,0.0000021245, -0.0000021223,0.0000021184,0.0000021132,0.0000021077,0.0000021030, -0.0000020996,0.0000020976,0.0000020959,0.0000020938,0.0000020916, -0.0000020891,0.0000020866,0.0000020850,0.0000020856,0.0000020896, -0.0000020972,0.0000021061,0.0000021135,0.0000021154,0.0000021111, -0.0000021050,0.0000021008,0.0000020991,0.0000020990,0.0000020988, -0.0000020980,0.0000020964,0.0000020957,0.0000020950,0.0000020939, -0.0000020922,0.0000020901,0.0000020879,0.0000020861,0.0000020839, -0.0000020821,0.0000020810,0.0000020802,0.0000020795,0.0000020788, -0.0000020785,0.0000020787,0.0000020792,0.0000020803,0.0000020832, -0.0000020878,0.0000020920,0.0000020951,0.0000020975,0.0000020989, -0.0000020990,0.0000020985,0.0000020976,0.0000020967,0.0000020971, -0.0000020980,0.0000020992,0.0000021005,0.0000021013,0.0000021027, -0.0000021046,0.0000021066,0.0000021075,0.0000021062,0.0000021030, -0.0000020985,0.0000020937,0.0000020909,0.0000020918,0.0000020961, -0.0000021006,0.0000021021,0.0000021021,0.0000021034,0.0000021099, -0.0000021236,0.0000021385,0.0000021456,0.0000021452,0.0000021429, -0.0000021418,0.0000021443,0.0000021516,0.0000021569,0.0000021576, -0.0000021576,0.0000021586,0.0000021598,0.0000021609,0.0000021600, -0.0000021535,0.0000021433,0.0000021342,0.0000021280,0.0000021252, -0.0000021250,0.0000021237,0.0000021189,0.0000021148,0.0000021144, -0.0000021157,0.0000021172,0.0000021173,0.0000021159,0.0000021136, -0.0000021123,0.0000021126,0.0000021140,0.0000021158,0.0000021184, -0.0000021218,0.0000021250,0.0000021273,0.0000021290,0.0000021302, -0.0000021302,0.0000021278,0.0000021237,0.0000021192,0.0000021145, -0.0000021102,0.0000021080,0.0000021066,0.0000021041,0.0000021018, -0.0000021018,0.0000021053,0.0000021110,0.0000021154,0.0000021159, -0.0000021132,0.0000021093,0.0000021042,0.0000020964,0.0000020878, -0.0000020818,0.0000020793,0.0000020786,0.0000020784,0.0000020787, -0.0000020797,0.0000020813,0.0000020832,0.0000020858,0.0000020887, -0.0000020909,0.0000020916,0.0000020911,0.0000020890,0.0000020851, -0.0000020800,0.0000020746,0.0000020694,0.0000020639,0.0000020586, -0.0000020544,0.0000020524,0.0000020530,0.0000020561,0.0000020611, -0.0000020673,0.0000020737,0.0000020795,0.0000020846,0.0000020892, -0.0000020930,0.0000020960,0.0000020985,0.0000021019,0.0000021066, -0.0000021113,0.0000021139,0.0000021145,0.0000021144,0.0000021147, -0.0000021157,0.0000021166,0.0000021174,0.0000021171,0.0000021086, -0.0000020904,0.0000020738,0.0000020689,0.0000020772,0.0000021053, -0.0000021421,0.0000021689,0.0000021840,0.0000021937,0.0000021989, -0.0000022006,0.0000022020,0.0000022036,0.0000022046,0.0000022045, -0.0000022044,0.0000022049,0.0000022063,0.0000022079,0.0000022082, -0.0000022068,0.0000022042,0.0000022016,0.0000022004,0.0000022005, -0.0000022008,0.0000021987,0.0000021904,0.0000021750,0.0000021565, -0.0000021438,0.0000021413,0.0000021425,0.0000021442,0.0000021492, -0.0000021617,0.0000021780,0.0000021902,0.0000021955,0.0000021964, -0.0000021952,0.0000021927,0.0000021941,0.0000022030,0.0000022105, -0.0000022095,0.0000022038,0.0000021850,0.0000021703,0.0000021665, -0.0000021577,0.0000021356,0.0000021186,0.0000021179,0.0000021275, -0.0000021444,0.0000021712,0.0000022029,0.0000022285,0.0000022416, -0.0000022473,0.0000022528,0.0000022592,0.0000022649,0.0000022689, -0.0000022710,0.0000022720,0.0000022723,0.0000022721,0.0000022719, -0.0000022717,0.0000022715,0.0000022717,0.0000022723,0.0000022727, -0.0000022725,0.0000022715,0.0000022695,0.0000022668,0.0000022633, -0.0000022591,0.0000022547,0.0000022506,0.0000022477,0.0000022458, -0.0000022436,0.0000022405,0.0000022371,0.0000022342,0.0000022326, -0.0000022319,0.0000022317,0.0000022318,0.0000022324,0.0000022332, -0.0000022343,0.0000022358,0.0000022373,0.0000022386,0.0000022398, -0.0000022409,0.0000022416,0.0000022420,0.0000022425,0.0000022435, -0.0000022451,0.0000022464,0.0000022466,0.0000022462,0.0000022455, -0.0000022444,0.0000022420,0.0000022381,0.0000022332,0.0000022283, -0.0000022239,0.0000022189,0.0000022123,0.0000022037,0.0000021943, -0.0000021858,0.0000021795,0.0000021753,0.0000021720,0.0000021697, -0.0000021677,0.0000021655,0.0000021646,0.0000021658,0.0000021688, -0.0000021722,0.0000021755,0.0000021779,0.0000021789,0.0000021805, -0.0000021829,0.0000021849,0.0000021860,0.0000021857,0.0000021835, -0.0000021801,0.0000021758,0.0000021703,0.0000021645,0.0000021584, -0.0000021529,0.0000021486,0.0000021443,0.0000021400,0.0000021380, -0.0000021383,0.0000021391,0.0000021398,0.0000021404,0.0000021410, -0.0000021431,0.0000021480,0.0000021550,0.0000021620,0.0000021672, -0.0000021705,0.0000021728,0.0000021741,0.0000021743,0.0000021733, -0.0000021710,0.0000021682,0.0000021647,0.0000021604,0.0000021557, -0.0000021513,0.0000021484,0.0000021478,0.0000021481,0.0000021495, -0.0000021516,0.0000021523,0.0000021522,0.0000021526,0.0000021518, -0.0000021510,0.0000021562,0.0000021652,0.0000021758,0.0000021869, -0.0000021966,0.0000022034,0.0000022086,0.0000022136,0.0000022172, -0.0000022179,0.0000022175,0.0000022184,0.0000022209,0.0000022241, -0.0000022272,0.0000022312,0.0000022359,0.0000022402,0.0000022440, -0.0000022483,0.0000022538,0.0000022596,0.0000022647,0.0000022689, -0.0000022717,0.0000022734,0.0000022754,0.0000022783,0.0000022815, -0.0000022853,0.0000022900,0.0000022948,0.0000022983,0.0000022998, -0.0000023004,0.0000023003,0.0000022996,0.0000022992,0.0000022995, -0.0000023003,0.0000023016,0.0000023025,0.0000023019,0.0000022993, -0.0000022938,0.0000022852,0.0000022748,0.0000022654,0.0000022606, -0.0000022597,0.0000022629,0.0000022692,0.0000022780,0.0000022880, -0.0000022971,0.0000023042,0.0000023075,0.0000023089,0.0000023099, -0.0000023091,0.0000023074,0.0000023055,0.0000023040,0.0000023034, -0.0000023036,0.0000023051,0.0000023077,0.0000023103,0.0000023123, -0.0000023140,0.0000023154,0.0000023168,0.0000023179,0.0000023189, -0.0000023188,0.0000023184,0.0000023174,0.0000023159,0.0000023140, -0.0000023123,0.0000023118,0.0000023127,0.0000023146,0.0000023177, -0.0000023205,0.0000023219,0.0000023220,0.0000023216,0.0000023213, -0.0000023212,0.0000023214,0.0000023222,0.0000023232,0.0000023239, -0.0000023241,0.0000023242,0.0000023239,0.0000023232,0.0000023217, -0.0000023190,0.0000023159,0.0000023130,0.0000023107,0.0000023088, -0.0000023072,0.0000023063,0.0000023060,0.0000023060,0.0000023063, -0.0000023069,0.0000023076,0.0000023080,0.0000023083,0.0000023085, -0.0000023084,0.0000023078,0.0000023065,0.0000023046,0.0000023021, -0.0000022990,0.0000022951,0.0000022905,0.0000022857,0.0000022821, -0.0000022787,0.0000022750,0.0000022707,0.0000022666,0.0000022636, -0.0000022628,0.0000022628,0.0000022627,0.0000022622,0.0000022606, -0.0000022570,0.0000022518,0.0000022458,0.0000022404,0.0000022363, -0.0000022332,0.0000022312,0.0000022298,0.0000022293,0.0000022296, -0.0000022307,0.0000022328,0.0000022354,0.0000022374,0.0000022388, -0.0000022397,0.0000022405,0.0000022414,0.0000022424,0.0000022431, -0.0000022435,0.0000022427,0.0000022413,0.0000022397,0.0000022376, -0.0000022342,0.0000022302,0.0000022260,0.0000022218,0.0000022170, -0.0000022120,0.0000022078,0.0000022046,0.0000022012,0.0000021969, -0.0000021917,0.0000021858,0.0000021810,0.0000021779,0.0000021764, -0.0000021753,0.0000021739,0.0000021720,0.0000021697,0.0000021662, -0.0000021621,0.0000021575,0.0000021520,0.0000021461,0.0000021422, -0.0000021379,0.0000021334,0.0000021293,0.0000021263,0.0000021245, -0.0000021240,0.0000021238,0.0000021246,0.0000021264,0.0000021289, -0.0000021317,0.0000021350,0.0000021389,0.0000021438,0.0000021500, -0.0000021567,0.0000021635,0.0000021699,0.0000021758,0.0000021805, -0.0000021839,0.0000021861,0.0000021877,0.0000021896,0.0000021927, -0.0000021970,0.0000022016,0.0000022062,0.0000022107,0.0000022163, -0.0000022233,0.0000022314,0.0000022397,0.0000022474,0.0000022538, -0.0000022585,0.0000022620,0.0000022643,0.0000022647,0.0000022635, -0.0000022604,0.0000022562,0.0000022510,0.0000022450,0.0000022391, -0.0000022336,0.0000022287,0.0000022249,0.0000022224,0.0000022213, -0.0000022214,0.0000022228,0.0000022263,0.0000022321,0.0000022396, -0.0000022472,0.0000022551,0.0000022620,0.0000022661,0.0000022673, -0.0000022659,0.0000022629,0.0000022616,0.0000022622,0.0000022633, -0.0000022640,0.0000022638,0.0000022638,0.0000022641,0.0000022642, -0.0000022642,0.0000022640,0.0000022638,0.0000022631,0.0000022618, -0.0000022597,0.0000022566,0.0000022528,0.0000022500,0.0000022484, -0.0000022472,0.0000022474,0.0000022493,0.0000022532,0.0000022543, -0.0000022511,0.0000022423,0.0000022289,0.0000022216,0.0000022241, -0.0000022288,0.0000022305,0.0000022319,0.0000022359,0.0000022608, -0.0000022763,0.0000022791,0.0000022891,0.0000022988,0.0000023080, -0.0000023167,0.0000023093,0.0000022974,0.0000022782,0.0000022627, -0.0000022523,0.0000022522,0.0000022578,0.0000022616,0.0000022621, -0.0000022646,0.0000022766,0.0000022892,0.0000022961,0.0000022962, -0.0000022953,0.0000022934,0.0000022902,0.0000022913,0.0000022973, -0.0000023025,0.0000023092,0.0000023194,0.0000023381,0.0000023524, -0.0000023613,0.0000023642,0.0000023520,0.0000023375,0.0000023321, -0.0000023351,0.0000023340,0.0000023285,0.0000023248,0.0000023234, -0.0000023210,0.0000023167,0.0000023114,0.0000023064,0.0000023043, -0.0000023039,0.0000023036,0.0000023043,0.0000023062,0.0000023086, -0.0000023111,0.0000023122,0.0000023105,0.0000023057,0.0000022998, -0.0000022943,0.0000022896,0.0000022871,0.0000022869,0.0000022884, -0.0000022898,0.0000022900,0.0000022895,0.0000022882,0.0000022876, -0.0000022873,0.0000022864,0.0000022853,0.0000022860,0.0000022886, -0.0000022955,0.0000023052,0.0000023133,0.0000023149,0.0000023110, -0.0000023053,0.0000023009,0.0000022949,0.0000022808,0.0000022622, -0.0000022334,0.0000022131,0.0000022194,0.0000022246,0.0000022179, -0.0000022167,0.0000022134,0.0000021870,0.0000021606,0.0000021647, -0.0000021881,0.0000022094,0.0000022236,0.0000022337,0.0000022429, -0.0000022515,0.0000022591,0.0000022612,0.0000022585,0.0000022531, -0.0000022473,0.0000022415,0.0000022355,0.0000022317,0.0000022312, -0.0000022322,0.0000022367,0.0000022456,0.0000022589,0.0000022731, -0.0000022780,0.0000022728,0.0000022614,0.0000022508,0.0000022354, -0.0000022153,0.0000022036,0.0000022005,0.0000022012,0.0000022076, -0.0000022136,0.0000022157,0.0000022196,0.0000022252,0.0000022304, -0.0000022353,0.0000022392,0.0000022430,0.0000022472,0.0000022498, -0.0000022501,0.0000022490,0.0000022483,0.0000022495,0.0000022532, -0.0000022536,0.0000022483,0.0000022459,0.0000022473,0.0000022497, -0.0000022499,0.0000022501,0.0000022515,0.0000022504,0.0000022538, -0.0000022727,0.0000022928,0.0000023003,0.0000023016,0.0000023025, -0.0000023042,0.0000023070,0.0000023101,0.0000023120,0.0000023117, -0.0000023109,0.0000023108,0.0000023111,0.0000023113,0.0000023112, -0.0000023102,0.0000023088,0.0000023073,0.0000023060,0.0000023059, -0.0000023072,0.0000023094,0.0000023130,0.0000023183,0.0000023246, -0.0000023317,0.0000023393,0.0000023467,0.0000023531,0.0000023572, -0.0000023574,0.0000023565,0.0000023539,0.0000023492,0.0000023424, -0.0000023333,0.0000023225,0.0000023118,0.0000023035,0.0000022993, -0.0000022976,0.0000022968,0.0000022968,0.0000022981,0.0000023015, -0.0000023053,0.0000023095,0.0000023151,0.0000023220,0.0000023293, -0.0000023368,0.0000023435,0.0000023494,0.0000023541,0.0000023567, -0.0000023572,0.0000023559,0.0000023519,0.0000023454,0.0000023377, -0.0000023291,0.0000023207,0.0000023134,0.0000023084,0.0000023076, -0.0000023115,0.0000023209,0.0000023334,0.0000023453,0.0000023538, -0.0000023582,0.0000023599,0.0000023599,0.0000023576,0.0000023544, -0.0000023517,0.0000023504,0.0000023499,0.0000023500,0.0000023511, -0.0000023525,0.0000023533,0.0000023535,0.0000023549,0.0000023575, -0.0000023614,0.0000023659,0.0000023707,0.0000023769,0.0000023851, -0.0000023934,0.0000023992,0.0000024015,0.0000024013,0.0000023971, -0.0000023910,0.0000023878,0.0000023905,0.0000023963,0.0000023991, -0.0000023982,0.0000023958,0.0000023950,0.0000023948,0.0000023940, -0.0000023928,0.0000023915,0.0000023892,0.0000023856,0.0000023815, -0.0000023777,0.0000023746,0.0000023721,0.0000023696,0.0000023660, -0.0000023614,0.0000023566,0.0000023519,0.0000023469,0.0000023422, -0.0000023379,0.0000023329,0.0000023272,0.0000023212,0.0000023147, -0.0000023081,0.0000023027,0.0000022998,0.0000022984,0.0000022964, -0.0000022932,0.0000022893,0.0000022850,0.0000022803,0.0000022750, -0.0000022696,0.0000022655,0.0000022634,0.0000022625,0.0000022619, -0.0000022608,0.0000022587,0.0000022566,0.0000022558,0.0000022567, -0.0000022588,0.0000022612,0.0000022629,0.0000022640,0.0000022650, -0.0000022664,0.0000022685,0.0000022705,0.0000022716,0.0000022718, -0.0000022715,0.0000022706,0.0000022690,0.0000022664,0.0000022637, -0.0000022613,0.0000022592,0.0000022573,0.0000022560,0.0000022551, -0.0000022546,0.0000022539,0.0000022534,0.0000022527,0.0000022511, -0.0000022483,0.0000022452,0.0000022416,0.0000022368,0.0000022315, -0.0000022263,0.0000022216,0.0000022178,0.0000022155,0.0000022141, -0.0000022138,0.0000022141,0.0000022155,0.0000022171,0.0000022186, -0.0000022194,0.0000022200,0.0000022207,0.0000022216,0.0000022230, -0.0000022250,0.0000022276,0.0000022306,0.0000022333,0.0000022359, -0.0000022381,0.0000022399,0.0000022413,0.0000022422,0.0000022428, -0.0000022429,0.0000022425,0.0000022418,0.0000022411,0.0000022404, -0.0000022396,0.0000022381,0.0000022363,0.0000022347,0.0000022336, -0.0000022341,0.0000022356,0.0000022378,0.0000022404,0.0000022427, -0.0000022450,0.0000022477,0.0000022517,0.0000022564,0.0000022596, -0.0000022604,0.0000022592,0.0000022537,0.0000022434,0.0000022315, -0.0000022208,0.0000022115,0.0000022026,0.0000021955,0.0000021947, -0.0000021985,0.0000022078,0.0000022182,0.0000022301,0.0000022420, -0.0000022497,0.0000022532,0.0000022552,0.0000022571,0.0000022591, -0.0000022616,0.0000022649,0.0000022706,0.0000022785,0.0000022843, -0.0000022856,0.0000022849,0.0000022849,0.0000022850,0.0000022865, -0.0000022915,0.0000022914,0.0000022922,0.0000023113,0.0000023345, -0.0000023419,0.0000023372,0.0000023202,0.0000023043,0.0000022957, -0.0000022902,0.0000022867,0.0000022853,0.0000022801,0.0000022676, -0.0000022530,0.0000022413,0.0000022317,0.0000022228,0.0000022151, -0.0000022095,0.0000022060,0.0000022053,0.0000022074,0.0000022099, -0.0000022114,0.0000022131,0.0000022154,0.0000022150,0.0000022127, -0.0000022088,0.0000022042,0.0000022010,0.0000022012,0.0000022085, -0.0000022188,0.0000022269,0.0000022323,0.0000022375,0.0000022424, -0.0000022451,0.0000022452,0.0000022435,0.0000022411,0.0000022389, -0.0000022370,0.0000022351,0.0000022343,0.0000022347,0.0000022362, -0.0000022377,0.0000022393,0.0000022403,0.0000022397,0.0000022383, -0.0000022370,0.0000022362,0.0000022358,0.0000022354,0.0000022341, -0.0000022300,0.0000022223,0.0000022119,0.0000022014,0.0000021925, -0.0000021863,0.0000021850,0.0000021937,0.0000022110,0.0000022245, -0.0000022253,0.0000022151,0.0000022093,0.0000022286,0.0000022721, -0.0000023005,0.0000022926,0.0000022582,0.0000022269,0.0000022140, -0.0000022117,0.0000022093,0.0000022018,0.0000021899,0.0000021787, -0.0000021717,0.0000021689,0.0000021684,0.0000021695,0.0000021713, -0.0000021716,0.0000021711,0.0000021715,0.0000021739,0.0000021768, -0.0000021780,0.0000021769,0.0000021751,0.0000021744,0.0000021744, -0.0000021737,0.0000021714,0.0000021672,0.0000021621,0.0000021586, -0.0000021555,0.0000021529,0.0000021518,0.0000021518,0.0000021510, -0.0000021493,0.0000021473,0.0000021462,0.0000021462,0.0000021473, -0.0000021484,0.0000021495,0.0000021515,0.0000021550,0.0000021604, -0.0000021682,0.0000021784,0.0000021906,0.0000022042,0.0000022161, -0.0000022227,0.0000022241,0.0000022245,0.0000022263,0.0000022308, -0.0000022371,0.0000022429,0.0000022468,0.0000022489,0.0000022497, -0.0000022494,0.0000022487,0.0000022479,0.0000022472,0.0000022466, -0.0000022456,0.0000022436,0.0000022393,0.0000022317,0.0000022223, -0.0000022131,0.0000022043,0.0000021949,0.0000021838,0.0000021707, -0.0000021575,0.0000021468,0.0000021399,0.0000021364,0.0000021347, -0.0000021333,0.0000021309,0.0000021270,0.0000021234,0.0000021225, -0.0000021257,0.0000021331,0.0000021421,0.0000021485,0.0000021498, -0.0000021474,0.0000021410,0.0000021343,0.0000021314,0.0000021318, -0.0000021328,0.0000021329,0.0000021320,0.0000021331,0.0000021395, -0.0000021511,0.0000021625,0.0000021669,0.0000021630,0.0000021519, -0.0000021385,0.0000021258,0.0000021145,0.0000021051,0.0000020984, -0.0000020931,0.0000020910,0.0000020929,0.0000021035,0.0000021217, -0.0000021430,0.0000021622,0.0000021765,0.0000021857,0.0000021912, -0.0000021948,0.0000021984,0.0000022030,0.0000022076,0.0000022109, -0.0000022148,0.0000022231,0.0000022371,0.0000022545,0.0000022728, -0.0000022906,0.0000023044,0.0000023097,0.0000023063,0.0000023006, -0.0000022979,0.0000023055,0.0000023241,0.0000023504,0.0000023796, -0.0000024053,0.0000024231,0.0000024329,0.0000024388,0.0000024448, -0.0000024518,0.0000024596,0.0000024677,0.0000024726,0.0000024702, -0.0000024605,0.0000024479,0.0000024381,0.0000024329,0.0000024293, -0.0000024250,0.0000024213,0.0000024194,0.0000024190,0.0000024186, -0.0000024185,0.0000024183,0.0000024183,0.0000024183,0.0000024162, -0.0000024132,0.0000024088,0.0000024046,0.0000024022,0.0000024021, -0.0000024040,0.0000024068,0.0000024087,0.0000024084,0.0000024060, -0.0000024021,0.0000023984,0.0000023968,0.0000023998,0.0000024096, -0.0000024207,0.0000024258,0.0000024244,0.0000024162,0.0000024036, -0.0000023929,0.0000023878,0.0000023849,0.0000023784,0.0000023675, -0.0000023572,0.0000023474,0.0000023352,0.0000023211,0.0000023076, -0.0000022945,0.0000022803,0.0000022662,0.0000022549,0.0000022489, -0.0000022480,0.0000022490,0.0000022495,0.0000022490,0.0000022483, -0.0000022457,0.0000022430,0.0000022404,0.0000022392,0.0000022395, -0.0000022406,0.0000022421,0.0000022442,0.0000022475,0.0000022525, -0.0000022617,0.0000022771,0.0000022967,0.0000023181,0.0000023398, -0.0000023608,0.0000023787,0.0000023918,0.0000023982,0.0000023983, -0.0000023934,0.0000023864,0.0000023759,0.0000023649,0.0000023547, -0.0000023451,0.0000023362,0.0000023285,0.0000023226,0.0000023179, -0.0000023131,0.0000023076,0.0000023017,0.0000022959,0.0000022901, -0.0000022841,0.0000022784,0.0000022736,0.0000022698,0.0000022675, -0.0000022666,0.0000022661,0.0000022666,0.0000022691,0.0000022730, -0.0000022779,0.0000022830,0.0000022881,0.0000022919,0.0000022939, -0.0000022942,0.0000022933,0.0000022905,0.0000022857,0.0000022802, -0.0000022757,0.0000022726,0.0000022706,0.0000022697,0.0000022685, -0.0000022665,0.0000022638,0.0000022603,0.0000022568,0.0000022537, -0.0000022503,0.0000022458,0.0000022416,0.0000022373,0.0000022345, -0.0000022334,0.0000022348,0.0000022378,0.0000022408,0.0000022431, -0.0000022441,0.0000022439,0.0000022429,0.0000022413,0.0000022390, -0.0000022349,0.0000022295,0.0000022232,0.0000022174,0.0000022115, -0.0000022052,0.0000021981,0.0000021911,0.0000021852,0.0000021808, -0.0000021781,0.0000021767,0.0000021761,0.0000021762,0.0000021769, -0.0000021776,0.0000021780,0.0000021780,0.0000021776,0.0000021768, -0.0000021756,0.0000021742,0.0000021726,0.0000021709,0.0000021693, -0.0000021687,0.0000021693,0.0000021718,0.0000021748,0.0000021765, -0.0000021769,0.0000021771,0.0000021771,0.0000021761,0.0000021743, -0.0000021720,0.0000021682,0.0000021625,0.0000021542,0.0000021449, -0.0000021363,0.0000021292,0.0000021243,0.0000021216,0.0000021207, -0.0000021211,0.0000021218,0.0000021224,0.0000021225,0.0000021213, -0.0000021184,0.0000021136,0.0000021078,0.0000021021,0.0000020978, -0.0000020949,0.0000020927,0.0000020912,0.0000020899,0.0000020878, -0.0000020854,0.0000020833,0.0000020821,0.0000020828,0.0000020859, -0.0000020926,0.0000021014,0.0000021084,0.0000021109,0.0000021092, -0.0000021066,0.0000021028,0.0000020998,0.0000020978,0.0000020948, -0.0000020924,0.0000020898,0.0000020884,0.0000020870,0.0000020852, -0.0000020832,0.0000020814,0.0000020795,0.0000020771,0.0000020753, -0.0000020745,0.0000020739,0.0000020742,0.0000020748,0.0000020752, -0.0000020757,0.0000020755,0.0000020753,0.0000020766,0.0000020794, -0.0000020822,0.0000020851,0.0000020884,0.0000020915,0.0000020942, -0.0000020959,0.0000020968,0.0000020977,0.0000020991,0.0000021005, -0.0000021012,0.0000021008,0.0000020994,0.0000020979,0.0000020977, -0.0000020988,0.0000021001,0.0000021002,0.0000020984,0.0000020947, -0.0000020903,0.0000020872,0.0000020876,0.0000020915,0.0000020964, -0.0000020989,0.0000020989,0.0000020990,0.0000021037,0.0000021172, -0.0000021345,0.0000021445,0.0000021457,0.0000021438,0.0000021429, -0.0000021475,0.0000021558,0.0000021602,0.0000021604,0.0000021604, -0.0000021604,0.0000021609,0.0000021612,0.0000021582,0.0000021494, -0.0000021388,0.0000021300,0.0000021243,0.0000021228,0.0000021220, -0.0000021178,0.0000021138,0.0000021130,0.0000021141,0.0000021156, -0.0000021153,0.0000021129,0.0000021091,0.0000021059,0.0000021047, -0.0000021049,0.0000021062,0.0000021086,0.0000021122,0.0000021169, -0.0000021215,0.0000021246,0.0000021265,0.0000021278,0.0000021278, -0.0000021251,0.0000021202,0.0000021148,0.0000021100,0.0000021061, -0.0000021038,0.0000021024,0.0000021003,0.0000020983,0.0000020980, -0.0000021000,0.0000021048,0.0000021107,0.0000021140,0.0000021130, -0.0000021094,0.0000021046,0.0000020973,0.0000020876,0.0000020795, -0.0000020761,0.0000020757,0.0000020753,0.0000020749,0.0000020753, -0.0000020764,0.0000020781,0.0000020803,0.0000020835,0.0000020864, -0.0000020878,0.0000020880,0.0000020868,0.0000020833,0.0000020780, -0.0000020721,0.0000020659,0.0000020592,0.0000020528,0.0000020478, -0.0000020453,0.0000020451,0.0000020471,0.0000020516,0.0000020579, -0.0000020652,0.0000020720,0.0000020780,0.0000020834,0.0000020881, -0.0000020918,0.0000020942,0.0000020959,0.0000020985,0.0000021024, -0.0000021058,0.0000021075,0.0000021085,0.0000021098,0.0000021115, -0.0000021135,0.0000021150,0.0000021158,0.0000021146,0.0000021047, -0.0000020859,0.0000020707,0.0000020668,0.0000020757,0.0000021040, -0.0000021409,0.0000021680,0.0000021828,0.0000021921,0.0000021970, -0.0000021983,0.0000021993,0.0000022011,0.0000022027,0.0000022034, -0.0000022034,0.0000022036,0.0000022044,0.0000022058,0.0000022067, -0.0000022061,0.0000022040,0.0000022014,0.0000022003,0.0000022004, -0.0000022010,0.0000022001,0.0000021941,0.0000021788,0.0000021589, -0.0000021444,0.0000021405,0.0000021411,0.0000021428,0.0000021477, -0.0000021592,0.0000021743,0.0000021861,0.0000021922,0.0000021940, -0.0000021934,0.0000021924,0.0000021946,0.0000022038,0.0000022044, -0.0000022088,0.0000022014,0.0000021824,0.0000021679,0.0000021636, -0.0000021551,0.0000021334,0.0000021140,0.0000021108,0.0000021185, -0.0000021317,0.0000021528,0.0000021814,0.0000022094,0.0000022308, -0.0000022457,0.0000022557,0.0000022625,0.0000022668,0.0000022692, -0.0000022700,0.0000022702,0.0000022700,0.0000022697,0.0000022691, -0.0000022688,0.0000022687,0.0000022686,0.0000022680,0.0000022660, -0.0000022619,0.0000022563,0.0000022491,0.0000022401,0.0000022301, -0.0000022203,0.0000022119,0.0000022050,0.0000021999,0.0000021954, -0.0000021906,0.0000021858,0.0000021819,0.0000021796,0.0000021788, -0.0000021790,0.0000021798,0.0000021808,0.0000021824,0.0000021844, -0.0000021865,0.0000021888,0.0000021910,0.0000021932,0.0000021955, -0.0000021978,0.0000022000,0.0000022021,0.0000022046,0.0000022074, -0.0000022100,0.0000022118,0.0000022131,0.0000022141,0.0000022147, -0.0000022142,0.0000022123,0.0000022095,0.0000022067,0.0000022044, -0.0000022016,0.0000021967,0.0000021895,0.0000021807,0.0000021711, -0.0000021626,0.0000021567,0.0000021536,0.0000021524,0.0000021521, -0.0000021519,0.0000021515,0.0000021519,0.0000021543,0.0000021575, -0.0000021607,0.0000021640,0.0000021657,0.0000021658,0.0000021657, -0.0000021656,0.0000021656,0.0000021657,0.0000021648,0.0000021629, -0.0000021608,0.0000021579,0.0000021540,0.0000021495,0.0000021447, -0.0000021411,0.0000021386,0.0000021360,0.0000021340,0.0000021340, -0.0000021355,0.0000021370,0.0000021389,0.0000021415,0.0000021446, -0.0000021494,0.0000021554,0.0000021611,0.0000021661,0.0000021702, -0.0000021731,0.0000021753,0.0000021777,0.0000021797,0.0000021801, -0.0000021789,0.0000021771,0.0000021750,0.0000021719,0.0000021678, -0.0000021633,0.0000021598,0.0000021580,0.0000021572,0.0000021580, -0.0000021594,0.0000021595,0.0000021580,0.0000021553,0.0000021513, -0.0000021477,0.0000021465,0.0000021469,0.0000021482,0.0000021530, -0.0000021610,0.0000021691,0.0000021775,0.0000021868,0.0000021949, -0.0000021997,0.0000022020,0.0000022039,0.0000022064,0.0000022084, -0.0000022101,0.0000022128,0.0000022164,0.0000022197,0.0000022230, -0.0000022280,0.0000022352,0.0000022436,0.0000022517,0.0000022588, -0.0000022640,0.0000022677,0.0000022710,0.0000022736,0.0000022757, -0.0000022782,0.0000022817,0.0000022858,0.0000022902,0.0000022948, -0.0000022993,0.0000023025,0.0000023044,0.0000023044,0.0000023031, -0.0000023008,0.0000022991,0.0000022987,0.0000022988,0.0000022986, -0.0000022969,0.0000022935,0.0000022880,0.0000022806,0.0000022722, -0.0000022646,0.0000022610,0.0000022574,0.0000022590,0.0000022644, -0.0000022723,0.0000022815,0.0000022903,0.0000022982,0.0000023046, -0.0000023084,0.0000023081,0.0000023081,0.0000023074,0.0000023061, -0.0000023054,0.0000023057,0.0000023068,0.0000023080,0.0000023093, -0.0000023107,0.0000023119,0.0000023128,0.0000023137,0.0000023151, -0.0000023168,0.0000023182,0.0000023186,0.0000023183,0.0000023173, -0.0000023160,0.0000023148,0.0000023140,0.0000023146,0.0000023165, -0.0000023192,0.0000023216,0.0000023228,0.0000023229,0.0000023223, -0.0000023216,0.0000023209,0.0000023207,0.0000023207,0.0000023208, -0.0000023210,0.0000023212,0.0000023211,0.0000023205,0.0000023195, -0.0000023179,0.0000023157,0.0000023141,0.0000023131,0.0000023119, -0.0000023106,0.0000023096,0.0000023089,0.0000023082,0.0000023076, -0.0000023072,0.0000023070,0.0000023072,0.0000023076,0.0000023081, -0.0000023086,0.0000023088,0.0000023084,0.0000023070,0.0000023044, -0.0000023005,0.0000022958,0.0000022902,0.0000022846,0.0000022802, -0.0000022764,0.0000022724,0.0000022683,0.0000022650,0.0000022634, -0.0000022636,0.0000022647,0.0000022656,0.0000022655,0.0000022638, -0.0000022601,0.0000022552,0.0000022502,0.0000022462,0.0000022430, -0.0000022401,0.0000022374,0.0000022349,0.0000022334,0.0000022331, -0.0000022335,0.0000022351,0.0000022372,0.0000022390,0.0000022404, -0.0000022412,0.0000022417,0.0000022418,0.0000022418,0.0000022411, -0.0000022404,0.0000022396,0.0000022387,0.0000022384,0.0000022376, -0.0000022362,0.0000022339,0.0000022305,0.0000022266,0.0000022220, -0.0000022167,0.0000022117,0.0000022082,0.0000022052,0.0000022020, -0.0000021975,0.0000021916,0.0000021857,0.0000021812,0.0000021786, -0.0000021769,0.0000021757,0.0000021747,0.0000021732,0.0000021708, -0.0000021679,0.0000021637,0.0000021588,0.0000021539,0.0000021491, -0.0000021443,0.0000021395,0.0000021346,0.0000021297,0.0000021254, -0.0000021218,0.0000021202,0.0000021182,0.0000021167,0.0000021151, -0.0000021130,0.0000021108,0.0000021086,0.0000021065,0.0000021062, -0.0000021080,0.0000021126,0.0000021200,0.0000021296,0.0000021406, -0.0000021515,0.0000021613,0.0000021698,0.0000021770,0.0000021835, -0.0000021889,0.0000021938,0.0000021981,0.0000022014,0.0000022046, -0.0000022089,0.0000022147,0.0000022216,0.0000022287,0.0000022356, -0.0000022418,0.0000022475,0.0000022519,0.0000022540,0.0000022537, -0.0000022514,0.0000022474,0.0000022420,0.0000022360,0.0000022298, -0.0000022239,0.0000022176,0.0000022118,0.0000022068,0.0000022035, -0.0000022027,0.0000022040,0.0000022083,0.0000022157,0.0000022251, -0.0000022351,0.0000022458,0.0000022559,0.0000022635,0.0000022673, -0.0000022674,0.0000022631,0.0000022570,0.0000022531,0.0000022539, -0.0000022586,0.0000022625,0.0000022637,0.0000022639,0.0000022646, -0.0000022656,0.0000022661,0.0000022661,0.0000022659,0.0000022653, -0.0000022639,0.0000022615,0.0000022581,0.0000022543,0.0000022510, -0.0000022476,0.0000022467,0.0000022479,0.0000022521,0.0000022534, -0.0000022500,0.0000022409,0.0000022268,0.0000022186,0.0000022215, -0.0000022269,0.0000022294,0.0000022299,0.0000022360,0.0000022640, -0.0000022787,0.0000022830,0.0000022950,0.0000023026,0.0000023122, -0.0000023134,0.0000023045,0.0000022891,0.0000022697,0.0000022563, -0.0000022508,0.0000022528,0.0000022563,0.0000022569,0.0000022551, -0.0000022629,0.0000022790,0.0000022899,0.0000022963,0.0000022967, -0.0000022951,0.0000022923,0.0000022892,0.0000022902,0.0000022966, -0.0000023019,0.0000023077,0.0000023155,0.0000023326,0.0000023496, -0.0000023588,0.0000023648,0.0000023565,0.0000023424,0.0000023332, -0.0000023332,0.0000023348,0.0000023310,0.0000023260,0.0000023238, -0.0000023225,0.0000023198,0.0000023155,0.0000023114,0.0000023104, -0.0000023112,0.0000023115,0.0000023115,0.0000023112,0.0000023108, -0.0000023106,0.0000023107,0.0000023083,0.0000023037,0.0000022987, -0.0000022945,0.0000022920,0.0000022925,0.0000022940,0.0000022950, -0.0000022949,0.0000022938,0.0000022922,0.0000022902,0.0000022886, -0.0000022870,0.0000022860,0.0000022857,0.0000022865,0.0000022887, -0.0000022933,0.0000023012,0.0000023101,0.0000023147,0.0000023134, -0.0000023082,0.0000023044,0.0000023007,0.0000022890,0.0000022711, -0.0000022450,0.0000022152,0.0000022159,0.0000022250,0.0000022199, -0.0000022159,0.0000022169,0.0000021998,0.0000021661,0.0000021592, -0.0000021778,0.0000021992,0.0000022146,0.0000022262,0.0000022353, -0.0000022430,0.0000022514,0.0000022567,0.0000022555,0.0000022498, -0.0000022437,0.0000022383,0.0000022333,0.0000022305,0.0000022304, -0.0000022315,0.0000022338,0.0000022392,0.0000022485,0.0000022623, -0.0000022750,0.0000022775,0.0000022699,0.0000022588,0.0000022488, -0.0000022328,0.0000022139,0.0000022039,0.0000022008,0.0000022018, -0.0000022080,0.0000022127,0.0000022140,0.0000022181,0.0000022248, -0.0000022311,0.0000022361,0.0000022403,0.0000022451,0.0000022496, -0.0000022511,0.0000022502,0.0000022480,0.0000022470,0.0000022482, -0.0000022512,0.0000022497,0.0000022438,0.0000022420,0.0000022443, -0.0000022470,0.0000022469,0.0000022479,0.0000022497,0.0000022483, -0.0000022511,0.0000022684,0.0000022883,0.0000022981,0.0000023007, -0.0000023014,0.0000023021,0.0000023033,0.0000023049,0.0000023062, -0.0000023060,0.0000023052,0.0000023052,0.0000023061,0.0000023070, -0.0000023070,0.0000023068,0.0000023062,0.0000023050,0.0000023031, -0.0000023016,0.0000023008,0.0000023013,0.0000023031,0.0000023064, -0.0000023111,0.0000023174,0.0000023249,0.0000023338,0.0000023432, -0.0000023511,0.0000023553,0.0000023558,0.0000023540,0.0000023512, -0.0000023473,0.0000023427,0.0000023361,0.0000023271,0.0000023170, -0.0000023085,0.0000023033,0.0000022997,0.0000022982,0.0000022989, -0.0000023015,0.0000023045,0.0000023083,0.0000023133,0.0000023195, -0.0000023273,0.0000023364,0.0000023450,0.0000023523,0.0000023581, -0.0000023617,0.0000023622,0.0000023608,0.0000023569,0.0000023503, -0.0000023423,0.0000023339,0.0000023260,0.0000023188,0.0000023145, -0.0000023156,0.0000023228,0.0000023336,0.0000023439,0.0000023517, -0.0000023567,0.0000023590,0.0000023595,0.0000023579,0.0000023547, -0.0000023516,0.0000023499,0.0000023494,0.0000023498,0.0000023507, -0.0000023525,0.0000023546,0.0000023558,0.0000023556,0.0000023557, -0.0000023576,0.0000023613,0.0000023661,0.0000023712,0.0000023764, -0.0000023822,0.0000023886,0.0000023945,0.0000023981,0.0000023986, -0.0000023959,0.0000023907,0.0000023867,0.0000023870,0.0000023927, -0.0000023996,0.0000024023,0.0000024019,0.0000024005,0.0000023997, -0.0000023991,0.0000023982,0.0000023967,0.0000023942,0.0000023905, -0.0000023858,0.0000023807,0.0000023758,0.0000023719,0.0000023681, -0.0000023634,0.0000023582,0.0000023531,0.0000023483,0.0000023435, -0.0000023389,0.0000023340,0.0000023284,0.0000023221,0.0000023160, -0.0000023101,0.0000023054,0.0000023023,0.0000023000,0.0000022971, -0.0000022929,0.0000022883,0.0000022840,0.0000022803,0.0000022768, -0.0000022737,0.0000022704,0.0000022683,0.0000022673,0.0000022654, -0.0000022620,0.0000022591,0.0000022572,0.0000022578,0.0000022604, -0.0000022636,0.0000022659,0.0000022670,0.0000022677,0.0000022684, -0.0000022695,0.0000022713,0.0000022731,0.0000022742,0.0000022744, -0.0000022739,0.0000022726,0.0000022711,0.0000022690,0.0000022660, -0.0000022630,0.0000022605,0.0000022586,0.0000022573,0.0000022561, -0.0000022551,0.0000022546,0.0000022542,0.0000022541,0.0000022539, -0.0000022533,0.0000022523,0.0000022505,0.0000022480,0.0000022444, -0.0000022399,0.0000022349,0.0000022294,0.0000022239,0.0000022191, -0.0000022154,0.0000022128,0.0000022116,0.0000022115,0.0000022130, -0.0000022149,0.0000022168,0.0000022182,0.0000022193,0.0000022208, -0.0000022227,0.0000022249,0.0000022277,0.0000022310,0.0000022343, -0.0000022370,0.0000022392,0.0000022409,0.0000022422,0.0000022429, -0.0000022435,0.0000022438,0.0000022434,0.0000022425,0.0000022414, -0.0000022406,0.0000022398,0.0000022384,0.0000022367,0.0000022346, -0.0000022331,0.0000022323,0.0000022328,0.0000022344,0.0000022370, -0.0000022396,0.0000022416,0.0000022433,0.0000022455,0.0000022490, -0.0000022530,0.0000022567,0.0000022596,0.0000022604,0.0000022572, -0.0000022480,0.0000022352,0.0000022219,0.0000022101,0.0000022008, -0.0000021947,0.0000021925,0.0000021964,0.0000022030,0.0000022117, -0.0000022237,0.0000022357,0.0000022440,0.0000022492,0.0000022536, -0.0000022582,0.0000022618,0.0000022648,0.0000022683,0.0000022734, -0.0000022788,0.0000022830,0.0000022847,0.0000022850,0.0000022854, -0.0000022846,0.0000022865,0.0000022904,0.0000022885,0.0000022935, -0.0000023173,0.0000023373,0.0000023410,0.0000023325,0.0000023140, -0.0000022993,0.0000022920,0.0000022865,0.0000022814,0.0000022752, -0.0000022638,0.0000022503,0.0000022398,0.0000022317,0.0000022246, -0.0000022179,0.0000022131,0.0000022099,0.0000022080,0.0000022083, -0.0000022095,0.0000022097,0.0000022096,0.0000022095,0.0000022078, -0.0000022046,0.0000022013,0.0000021994,0.0000022002,0.0000022051, -0.0000022150,0.0000022241,0.0000022298,0.0000022343,0.0000022395, -0.0000022439,0.0000022462,0.0000022462,0.0000022441,0.0000022399, -0.0000022357,0.0000022325,0.0000022307,0.0000022301,0.0000022306, -0.0000022321,0.0000022343,0.0000022376,0.0000022415,0.0000022453, -0.0000022482,0.0000022500,0.0000022504,0.0000022494,0.0000022471, -0.0000022450,0.0000022435,0.0000022410,0.0000022358,0.0000022263, -0.0000022139,0.0000022013,0.0000021902,0.0000021824,0.0000021807, -0.0000021911,0.0000022108,0.0000022250,0.0000022242,0.0000022142, -0.0000022130,0.0000022383,0.0000022798,0.0000022983,0.0000022833, -0.0000022475,0.0000022207,0.0000022104,0.0000022085,0.0000022055, -0.0000021970,0.0000021856,0.0000021761,0.0000021696,0.0000021663, -0.0000021665,0.0000021688,0.0000021707,0.0000021708,0.0000021709, -0.0000021724,0.0000021753,0.0000021769,0.0000021762,0.0000021741, -0.0000021722,0.0000021713,0.0000021708,0.0000021689,0.0000021641, -0.0000021587,0.0000021551,0.0000021518,0.0000021482,0.0000021464, -0.0000021459,0.0000021451,0.0000021438,0.0000021423,0.0000021411, -0.0000021410,0.0000021419,0.0000021427,0.0000021443,0.0000021470, -0.0000021514,0.0000021580,0.0000021669,0.0000021779,0.0000021909, -0.0000022048,0.0000022161,0.0000022224,0.0000022242,0.0000022250, -0.0000022279,0.0000022333,0.0000022400,0.0000022459,0.0000022503, -0.0000022537,0.0000022559,0.0000022563,0.0000022560,0.0000022556, -0.0000022553,0.0000022548,0.0000022538,0.0000022512,0.0000022451, -0.0000022348,0.0000022226,0.0000022120,0.0000022032,0.0000021933, -0.0000021801,0.0000021645,0.0000021494,0.0000021377,0.0000021300, -0.0000021258,0.0000021243,0.0000021240,0.0000021235,0.0000021216, -0.0000021184,0.0000021164,0.0000021174,0.0000021227,0.0000021323, -0.0000021427,0.0000021493,0.0000021502,0.0000021467,0.0000021394, -0.0000021324,0.0000021291,0.0000021288,0.0000021294,0.0000021286, -0.0000021268,0.0000021278,0.0000021354,0.0000021489,0.0000021618, -0.0000021666,0.0000021630,0.0000021518,0.0000021380,0.0000021253, -0.0000021137,0.0000021042,0.0000020975,0.0000020928,0.0000020906, -0.0000020918,0.0000021001,0.0000021177,0.0000021406,0.0000021623, -0.0000021786,0.0000021888,0.0000021942,0.0000021971,0.0000021996, -0.0000022028,0.0000022051,0.0000022063,0.0000022091,0.0000022170, -0.0000022311,0.0000022496,0.0000022692,0.0000022874,0.0000023009, -0.0000023058,0.0000023023,0.0000022955,0.0000022926,0.0000022992, -0.0000023166,0.0000023423,0.0000023714,0.0000023979,0.0000024170, -0.0000024284,0.0000024363,0.0000024435,0.0000024506,0.0000024579, -0.0000024652,0.0000024698,0.0000024676,0.0000024598,0.0000024486, -0.0000024381,0.0000024318,0.0000024281,0.0000024255,0.0000024233, -0.0000024207,0.0000024177,0.0000024156,0.0000024134,0.0000024131, -0.0000024138,0.0000024147,0.0000024143,0.0000024124,0.0000024104, -0.0000024081,0.0000024070,0.0000024076,0.0000024095,0.0000024111, -0.0000024110,0.0000024086,0.0000024043,0.0000023994,0.0000023964, -0.0000023971,0.0000024053,0.0000024177,0.0000024260,0.0000024268, -0.0000024222,0.0000024125,0.0000024022,0.0000023956,0.0000023925, -0.0000023875,0.0000023770,0.0000023643,0.0000023529,0.0000023403, -0.0000023257,0.0000023117,0.0000022989,0.0000022856,0.0000022707, -0.0000022580,0.0000022519,0.0000022515,0.0000022537,0.0000022549, -0.0000022540,0.0000022508,0.0000022461,0.0000022407,0.0000022341, -0.0000022296,0.0000022267,0.0000022255,0.0000022254,0.0000022252, -0.0000022250,0.0000022261,0.0000022306,0.0000022406,0.0000022543, -0.0000022695,0.0000022857,0.0000023030,0.0000023211,0.0000023400, -0.0000023577,0.0000023724,0.0000023821,0.0000023861,0.0000023814, -0.0000023765,0.0000023677,0.0000023581,0.0000023471,0.0000023364, -0.0000023278,0.0000023221,0.0000023180,0.0000023142,0.0000023106, -0.0000023069,0.0000023028,0.0000022983,0.0000022934,0.0000022883, -0.0000022833,0.0000022793,0.0000022767,0.0000022755,0.0000022755, -0.0000022761,0.0000022770,0.0000022785,0.0000022810,0.0000022840, -0.0000022868,0.0000022887,0.0000022891,0.0000022885,0.0000022862, -0.0000022820,0.0000022766,0.0000022713,0.0000022670,0.0000022644, -0.0000022640,0.0000022644,0.0000022645,0.0000022630,0.0000022590, -0.0000022537,0.0000022492,0.0000022463,0.0000022440,0.0000022420, -0.0000022395,0.0000022365,0.0000022338,0.0000022326,0.0000022325, -0.0000022328,0.0000022335,0.0000022338,0.0000022343,0.0000022343, -0.0000022333,0.0000022325,0.0000022313,0.0000022287,0.0000022248, -0.0000022197,0.0000022147,0.0000022094,0.0000022034,0.0000021966, -0.0000021897,0.0000021835,0.0000021786,0.0000021748,0.0000021725, -0.0000021707,0.0000021700,0.0000021702,0.0000021713,0.0000021725, -0.0000021734,0.0000021740,0.0000021739,0.0000021729,0.0000021712, -0.0000021694,0.0000021679,0.0000021673,0.0000021679,0.0000021699, -0.0000021728,0.0000021753,0.0000021763,0.0000021762,0.0000021757, -0.0000021744,0.0000021719,0.0000021684,0.0000021640,0.0000021586, -0.0000021513,0.0000021426,0.0000021337,0.0000021260,0.0000021204, -0.0000021166,0.0000021147,0.0000021148,0.0000021162,0.0000021180, -0.0000021193,0.0000021196,0.0000021187,0.0000021165,0.0000021127, -0.0000021077,0.0000021022,0.0000020972,0.0000020932,0.0000020903, -0.0000020881,0.0000020865,0.0000020850,0.0000020833,0.0000020821, -0.0000020811,0.0000020804,0.0000020805,0.0000020825,0.0000020872, -0.0000020945,0.0000021016,0.0000021062,0.0000021075,0.0000021059, -0.0000021046,0.0000021016,0.0000020977,0.0000020944,0.0000020913, -0.0000020891,0.0000020873,0.0000020859,0.0000020845,0.0000020829, -0.0000020806,0.0000020776,0.0000020755,0.0000020730,0.0000020713, -0.0000020711,0.0000020703,0.0000020708,0.0000020722,0.0000020727, -0.0000020727,0.0000020736,0.0000020746,0.0000020752,0.0000020764, -0.0000020785,0.0000020816,0.0000020856,0.0000020897,0.0000020933, -0.0000020966,0.0000020997,0.0000021018,0.0000021023,0.0000021010, -0.0000020980,0.0000020945,0.0000020921,0.0000020920,0.0000020931, -0.0000020936,0.0000020926,0.0000020903,0.0000020872,0.0000020847, -0.0000020841,0.0000020866,0.0000020914,0.0000020950,0.0000020953, -0.0000020947,0.0000020978,0.0000021114,0.0000021307,0.0000021434, -0.0000021456,0.0000021439,0.0000021440,0.0000021504,0.0000021591, -0.0000021626,0.0000021626,0.0000021622,0.0000021618,0.0000021623, -0.0000021616,0.0000021552,0.0000021447,0.0000021344,0.0000021262, -0.0000021222,0.0000021207,0.0000021166,0.0000021122,0.0000021115, -0.0000021127,0.0000021136,0.0000021119,0.0000021074,0.0000021020, -0.0000020977,0.0000020958,0.0000020957,0.0000020966,0.0000020989, -0.0000021026,0.0000021078,0.0000021138,0.0000021188,0.0000021216, -0.0000021232,0.0000021243,0.0000021234,0.0000021198,0.0000021145, -0.0000021093,0.0000021048,0.0000021013,0.0000020988,0.0000020972, -0.0000020958,0.0000020950,0.0000020950,0.0000020963,0.0000020996, -0.0000021051,0.0000021099,0.0000021111,0.0000021085,0.0000021039, -0.0000020974,0.0000020875,0.0000020774,0.0000020720,0.0000020711, -0.0000020709,0.0000020699,0.0000020693,0.0000020700,0.0000020711, -0.0000020727,0.0000020755,0.0000020791,0.0000020817,0.0000020829, -0.0000020830,0.0000020809,0.0000020767,0.0000020713,0.0000020652, -0.0000020585,0.0000020517,0.0000020461,0.0000020427,0.0000020415, -0.0000020423,0.0000020454,0.0000020505,0.0000020572,0.0000020643, -0.0000020707,0.0000020765,0.0000020817,0.0000020859,0.0000020891, -0.0000020912,0.0000020926,0.0000020945,0.0000020971,0.0000020993, -0.0000021007,0.0000021028,0.0000021058,0.0000021086,0.0000021108, -0.0000021123,0.0000021130,0.0000021115,0.0000021009,0.0000020821, -0.0000020675,0.0000020644,0.0000020728,0.0000020995,0.0000021352, -0.0000021630,0.0000021783,0.0000021880,0.0000021945,0.0000021968, -0.0000021972,0.0000021983,0.0000022000,0.0000022012,0.0000022015, -0.0000022018,0.0000022025,0.0000022039,0.0000022056,0.0000022061, -0.0000022054,0.0000022036,0.0000022016,0.0000022002,0.0000021999, -0.0000022003,0.0000021966,0.0000021835,0.0000021636,0.0000021465, -0.0000021387,0.0000021380,0.0000021401,0.0000021454,0.0000021559, -0.0000021697,0.0000021818,0.0000021890,0.0000021918,0.0000021922, -0.0000021922,0.0000021956,0.0000021960,0.0000022032,0.0000022071, -0.0000022014,0.0000021838,0.0000021686,0.0000021619,0.0000021539, -0.0000021348,0.0000021138,0.0000021049,0.0000021085,0.0000021200, -0.0000021369,0.0000021573,0.0000021791,0.0000022003,0.0000022194, -0.0000022351,0.0000022468,0.0000022541,0.0000022578,0.0000022593, -0.0000022592,0.0000022578,0.0000022552,0.0000022518,0.0000022475, -0.0000022423,0.0000022361,0.0000022284,0.0000022190,0.0000022090, -0.0000021991,0.0000021882,0.0000021774,0.0000021683,0.0000021611, -0.0000021559,0.0000021522,0.0000021491,0.0000021457,0.0000021423, -0.0000021397,0.0000021380,0.0000021371,0.0000021370,0.0000021374, -0.0000021382,0.0000021394,0.0000021404,0.0000021415,0.0000021429, -0.0000021442,0.0000021458,0.0000021478,0.0000021505,0.0000021537, -0.0000021572,0.0000021610,0.0000021650,0.0000021689,0.0000021724, -0.0000021755,0.0000021785,0.0000021812,0.0000021829,0.0000021835, -0.0000021832,0.0000021825,0.0000021821,0.0000021810,0.0000021779, -0.0000021728,0.0000021665,0.0000021592,0.0000021519,0.0000021454, -0.0000021419,0.0000021413,0.0000021425,0.0000021448,0.0000021471, -0.0000021477,0.0000021495,0.0000021527,0.0000021561,0.0000021596, -0.0000021624,0.0000021630,0.0000021620,0.0000021600,0.0000021577, -0.0000021552,0.0000021528,0.0000021503,0.0000021482,0.0000021468, -0.0000021451,0.0000021432,0.0000021410,0.0000021386,0.0000021371, -0.0000021362,0.0000021352,0.0000021349,0.0000021360,0.0000021374, -0.0000021388,0.0000021413,0.0000021444,0.0000021479,0.0000021530, -0.0000021581,0.0000021623,0.0000021665,0.0000021703,0.0000021736, -0.0000021765,0.0000021790,0.0000021812,0.0000021824,0.0000021821, -0.0000021812,0.0000021802,0.0000021785,0.0000021757,0.0000021727, -0.0000021701,0.0000021685,0.0000021679,0.0000021688,0.0000021695, -0.0000021687,0.0000021668,0.0000021643,0.0000021610,0.0000021577, -0.0000021545,0.0000021506,0.0000021465,0.0000021443,0.0000021444, -0.0000021454,0.0000021481,0.0000021547,0.0000021620,0.0000021686, -0.0000021747,0.0000021814,0.0000021879,0.0000021935,0.0000021986, -0.0000022032,0.0000022070,0.0000022094,0.0000022104,0.0000022121, -0.0000022158,0.0000022211,0.0000022280,0.0000022358,0.0000022442, -0.0000022532,0.0000022620,0.0000022687,0.0000022732,0.0000022763, -0.0000022786,0.0000022803,0.0000022827,0.0000022868,0.0000022921, -0.0000022975,0.0000023024,0.0000023059,0.0000023072,0.0000023057, -0.0000023023,0.0000022990,0.0000022969,0.0000022956,0.0000022945, -0.0000022927,0.0000022910,0.0000022881,0.0000022845,0.0000022802, -0.0000022747,0.0000022686,0.0000022636,0.0000022629,0.0000022621, -0.0000022644,0.0000022686,0.0000022738,0.0000022802,0.0000022875, -0.0000022944,0.0000023002,0.0000023044,0.0000023062,0.0000023078, -0.0000023096,0.0000023099,0.0000023097,0.0000023095,0.0000023093, -0.0000023094,0.0000023097,0.0000023101,0.0000023111,0.0000023129, -0.0000023151,0.0000023169,0.0000023181,0.0000023184,0.0000023186, -0.0000023180,0.0000023171,0.0000023163,0.0000023166,0.0000023177, -0.0000023195,0.0000023211,0.0000023220,0.0000023219,0.0000023213, -0.0000023204,0.0000023193,0.0000023180,0.0000023170,0.0000023168, -0.0000023167,0.0000023165,0.0000023160,0.0000023154,0.0000023145, -0.0000023136,0.0000023128,0.0000023122,0.0000023114,0.0000023105, -0.0000023097,0.0000023089,0.0000023080,0.0000023070,0.0000023062, -0.0000023059,0.0000023062,0.0000023073,0.0000023085,0.0000023097, -0.0000023104,0.0000023102,0.0000023083,0.0000023046,0.0000022998, -0.0000022945,0.0000022890,0.0000022837,0.0000022792,0.0000022756, -0.0000022721,0.0000022690,0.0000022671,0.0000022672,0.0000022691, -0.0000022715,0.0000022726,0.0000022721,0.0000022694,0.0000022654, -0.0000022612,0.0000022580,0.0000022557,0.0000022536,0.0000022513, -0.0000022490,0.0000022468,0.0000022450,0.0000022438,0.0000022438, -0.0000022446,0.0000022456,0.0000022463,0.0000022468,0.0000022474, -0.0000022476,0.0000022471,0.0000022456,0.0000022431,0.0000022401, -0.0000022372,0.0000022352,0.0000022348,0.0000022350,0.0000022351, -0.0000022341,0.0000022324,0.0000022294,0.0000022256,0.0000022208, -0.0000022158,0.0000022115,0.0000022070,0.0000022012,0.0000021959, -0.0000021895,0.0000021836,0.0000021796,0.0000021774,0.0000021758, -0.0000021742,0.0000021723,0.0000021700,0.0000021673,0.0000021646, -0.0000021614,0.0000021581,0.0000021546,0.0000021515,0.0000021481, -0.0000021445,0.0000021408,0.0000021366,0.0000021321,0.0000021275, -0.0000021237,0.0000021204,0.0000021177,0.0000021154,0.0000021129, -0.0000021101,0.0000021072,0.0000021036,0.0000020996,0.0000020958, -0.0000020931,0.0000020923,0.0000020945,0.0000020997,0.0000021070, -0.0000021171,0.0000021310,0.0000021479,0.0000021645,0.0000021778, -0.0000021863,0.0000021918,0.0000021962,0.0000022000,0.0000022048, -0.0000022104,0.0000022158,0.0000022205,0.0000022250,0.0000022300, -0.0000022352,0.0000022400,0.0000022432,0.0000022440,0.0000022431, -0.0000022402,0.0000022358,0.0000022301,0.0000022233,0.0000022157, -0.0000022074,0.0000021998,0.0000021938,0.0000021907,0.0000021905, -0.0000021937,0.0000021999,0.0000022085,0.0000022187,0.0000022292, -0.0000022390,0.0000022487,0.0000022575,0.0000022639,0.0000022657, -0.0000022629,0.0000022560,0.0000022495,0.0000022473,0.0000022503, -0.0000022570,0.0000022620,0.0000022638,0.0000022644,0.0000022654, -0.0000022659,0.0000022658,0.0000022656,0.0000022653,0.0000022643, -0.0000022621,0.0000022588,0.0000022556,0.0000022519,0.0000022464, -0.0000022437,0.0000022456,0.0000022510,0.0000022524,0.0000022485, -0.0000022381,0.0000022237,0.0000022165,0.0000022206,0.0000022269, -0.0000022298,0.0000022299,0.0000022408,0.0000022699,0.0000022813, -0.0000022889,0.0000023010,0.0000023083,0.0000023161,0.0000023109, -0.0000022997,0.0000022792,0.0000022618,0.0000022524,0.0000022512, -0.0000022519,0.0000022530,0.0000022507,0.0000022503,0.0000022639, -0.0000022805,0.0000022902,0.0000022954,0.0000022963,0.0000022950, -0.0000022904,0.0000022865,0.0000022886,0.0000022952,0.0000023005, -0.0000023059,0.0000023120,0.0000023271,0.0000023455,0.0000023553, -0.0000023633,0.0000023595,0.0000023455,0.0000023353,0.0000023306, -0.0000023320,0.0000023317,0.0000023268,0.0000023235,0.0000023218, -0.0000023199,0.0000023164,0.0000023124,0.0000023117,0.0000023130, -0.0000023139,0.0000023136,0.0000023120,0.0000023099,0.0000023078, -0.0000023071,0.0000023056,0.0000023035,0.0000023010,0.0000022995, -0.0000022994,0.0000023009,0.0000023016,0.0000023001,0.0000022971, -0.0000022947,0.0000022922,0.0000022899,0.0000022885,0.0000022868, -0.0000022862,0.0000022872,0.0000022888,0.0000022905,0.0000022934, -0.0000022985,0.0000023066,0.0000023140,0.0000023150,0.0000023105, -0.0000023065,0.0000023045,0.0000022964,0.0000022796,0.0000022572, -0.0000022248,0.0000022140,0.0000022245,0.0000022234,0.0000022165, -0.0000022186,0.0000022128,0.0000021800,0.0000021597,0.0000021697, -0.0000021903,0.0000022057,0.0000022179,0.0000022277,0.0000022350, -0.0000022423,0.0000022503,0.0000022519,0.0000022470,0.0000022401, -0.0000022347,0.0000022305,0.0000022279,0.0000022285,0.0000022309, -0.0000022326,0.0000022348,0.0000022401,0.0000022498,0.0000022636, -0.0000022746,0.0000022757,0.0000022678,0.0000022578,0.0000022487, -0.0000022328,0.0000022143,0.0000022039,0.0000022007,0.0000022024, -0.0000022084,0.0000022120,0.0000022125,0.0000022170,0.0000022247, -0.0000022314,0.0000022367,0.0000022420,0.0000022478,0.0000022519, -0.0000022525,0.0000022509,0.0000022487,0.0000022468,0.0000022473, -0.0000022493,0.0000022463,0.0000022398,0.0000022384,0.0000022413, -0.0000022440,0.0000022439,0.0000022452,0.0000022473,0.0000022463, -0.0000022475,0.0000022611,0.0000022808,0.0000022943,0.0000022994, -0.0000023007,0.0000023006,0.0000022998,0.0000022993,0.0000022990, -0.0000022981,0.0000022974,0.0000022982,0.0000023004,0.0000023019, -0.0000023023,0.0000023027,0.0000023029,0.0000023026,0.0000023014, -0.0000022994,0.0000022980,0.0000022979,0.0000022987,0.0000023001, -0.0000023023,0.0000023059,0.0000023113,0.0000023184,0.0000023272, -0.0000023367,0.0000023450,0.0000023501,0.0000023519,0.0000023502, -0.0000023471,0.0000023450,0.0000023431,0.0000023388,0.0000023318, -0.0000023232,0.0000023153,0.0000023084,0.0000023044,0.0000023029, -0.0000023030,0.0000023054,0.0000023094,0.0000023131,0.0000023176, -0.0000023246,0.0000023336,0.0000023429,0.0000023514,0.0000023580, -0.0000023620,0.0000023631,0.0000023621,0.0000023593,0.0000023538, -0.0000023469,0.0000023396,0.0000023322,0.0000023255,0.0000023234, -0.0000023267,0.0000023355,0.0000023446,0.0000023509,0.0000023548, -0.0000023573,0.0000023582,0.0000023569,0.0000023537,0.0000023512, -0.0000023501,0.0000023500,0.0000023504,0.0000023515,0.0000023529, -0.0000023546,0.0000023564,0.0000023574,0.0000023571,0.0000023568, -0.0000023584,0.0000023616,0.0000023661,0.0000023705,0.0000023741, -0.0000023778,0.0000023826,0.0000023884,0.0000023930,0.0000023948, -0.0000023937,0.0000023896,0.0000023857,0.0000023848,0.0000023881, -0.0000023950,0.0000024009,0.0000024034,0.0000024037,0.0000024036, -0.0000024033,0.0000024025,0.0000024006,0.0000023972,0.0000023927, -0.0000023875,0.0000023816,0.0000023755,0.0000023700,0.0000023650, -0.0000023600,0.0000023550,0.0000023500,0.0000023453,0.0000023405, -0.0000023355,0.0000023300,0.0000023240,0.0000023179,0.0000023124, -0.0000023081,0.0000023055,0.0000023037,0.0000023007,0.0000022958, -0.0000022906,0.0000022865,0.0000022833,0.0000022802,0.0000022772, -0.0000022748,0.0000022739,0.0000022728,0.0000022701,0.0000022659, -0.0000022621,0.0000022605,0.0000022622,0.0000022657,0.0000022688, -0.0000022704,0.0000022707,0.0000022708,0.0000022716,0.0000022730, -0.0000022747,0.0000022760,0.0000022766,0.0000022757,0.0000022747, -0.0000022728,0.0000022704,0.0000022676,0.0000022645,0.0000022609, -0.0000022575,0.0000022546,0.0000022523,0.0000022510,0.0000022500, -0.0000022491,0.0000022488,0.0000022488,0.0000022493,0.0000022500, -0.0000022506,0.0000022507,0.0000022499,0.0000022482,0.0000022461, -0.0000022431,0.0000022393,0.0000022364,0.0000022313,0.0000022262, -0.0000022219,0.0000022175,0.0000022142,0.0000022126,0.0000022123, -0.0000022129,0.0000022145,0.0000022155,0.0000022169,0.0000022186, -0.0000022204,0.0000022227,0.0000022253,0.0000022285,0.0000022318, -0.0000022347,0.0000022370,0.0000022385,0.0000022396,0.0000022402, -0.0000022404,0.0000022405,0.0000022403,0.0000022397,0.0000022390, -0.0000022382,0.0000022377,0.0000022369,0.0000022357,0.0000022340, -0.0000022326,0.0000022315,0.0000022314,0.0000022324,0.0000022344, -0.0000022371,0.0000022390,0.0000022408,0.0000022425,0.0000022449, -0.0000022478,0.0000022505,0.0000022537,0.0000022576,0.0000022599, -0.0000022581,0.0000022509,0.0000022383,0.0000022223,0.0000022081, -0.0000021982,0.0000021932,0.0000021937,0.0000021956,0.0000021996, -0.0000022070,0.0000022181,0.0000022290,0.0000022368,0.0000022434, -0.0000022511,0.0000022585,0.0000022642,0.0000022686,0.0000022728, -0.0000022765,0.0000022794,0.0000022817,0.0000022833,0.0000022849, -0.0000022848,0.0000022837,0.0000022861,0.0000022881,0.0000022859, -0.0000022967,0.0000023235,0.0000023382,0.0000023383,0.0000023276, -0.0000023083,0.0000022950,0.0000022886,0.0000022815,0.0000022716, -0.0000022592,0.0000022474,0.0000022393,0.0000022334,0.0000022277, -0.0000022215,0.0000022170,0.0000022137,0.0000022102,0.0000022078, -0.0000022058,0.0000022030,0.0000022013,0.0000022005,0.0000021998, -0.0000021978,0.0000021961,0.0000021961,0.0000022005,0.0000022091, -0.0000022191,0.0000022261,0.0000022306,0.0000022355,0.0000022407, -0.0000022450,0.0000022480,0.0000022486,0.0000022452,0.0000022376, -0.0000022293,0.0000022238,0.0000022224,0.0000022230,0.0000022246, -0.0000022264,0.0000022284,0.0000022313,0.0000022359,0.0000022414, -0.0000022469,0.0000022525,0.0000022579,0.0000022615,0.0000022623, -0.0000022613,0.0000022588,0.0000022549,0.0000022502,0.0000022451, -0.0000022387,0.0000022293,0.0000022164,0.0000022017,0.0000021880, -0.0000021792,0.0000021782,0.0000021898,0.0000022113,0.0000022260, -0.0000022236,0.0000022138,0.0000022170,0.0000022458,0.0000022850, -0.0000022963,0.0000022749,0.0000022393,0.0000022153,0.0000022074, -0.0000022055,0.0000022014,0.0000021929,0.0000021825,0.0000021726, -0.0000021659,0.0000021640,0.0000021656,0.0000021686,0.0000021703, -0.0000021704,0.0000021712,0.0000021733,0.0000021753,0.0000021753, -0.0000021731,0.0000021698,0.0000021678,0.0000021666,0.0000021642, -0.0000021590,0.0000021528,0.0000021484,0.0000021445,0.0000021403, -0.0000021376,0.0000021362,0.0000021352,0.0000021344,0.0000021336, -0.0000021335,0.0000021345,0.0000021365,0.0000021387,0.0000021416, -0.0000021454,0.0000021503,0.0000021569,0.0000021659,0.0000021774, -0.0000021907,0.0000022042,0.0000022151,0.0000022215,0.0000022240, -0.0000022256,0.0000022292,0.0000022351,0.0000022418,0.0000022473, -0.0000022520,0.0000022567,0.0000022597,0.0000022602,0.0000022595, -0.0000022589,0.0000022588,0.0000022587,0.0000022583,0.0000022553, -0.0000022476,0.0000022350,0.0000022211,0.0000022100,0.0000022012, -0.0000021903,0.0000021753,0.0000021584,0.0000021429,0.0000021309, -0.0000021225,0.0000021170,0.0000021142,0.0000021138,0.0000021142, -0.0000021140,0.0000021126,0.0000021107,0.0000021102,0.0000021130, -0.0000021205,0.0000021318,0.0000021431,0.0000021498,0.0000021502, -0.0000021455,0.0000021372,0.0000021295,0.0000021255,0.0000021247, -0.0000021247,0.0000021234,0.0000021216,0.0000021231,0.0000021315, -0.0000021465,0.0000021606,0.0000021654,0.0000021621,0.0000021507, -0.0000021373,0.0000021249,0.0000021134,0.0000021041,0.0000020980, -0.0000020942,0.0000020909,0.0000020904,0.0000020975,0.0000021144, -0.0000021374,0.0000021603,0.0000021780,0.0000021891,0.0000021946, -0.0000021972,0.0000021994,0.0000022016,0.0000022029,0.0000022029, -0.0000022039,0.0000022109,0.0000022257,0.0000022450,0.0000022650, -0.0000022833,0.0000022967,0.0000023014,0.0000022974,0.0000022904, -0.0000022878,0.0000022938,0.0000023101,0.0000023348,0.0000023633, -0.0000023899,0.0000024099,0.0000024231,0.0000024325,0.0000024403, -0.0000024474,0.0000024545,0.0000024613,0.0000024655,0.0000024646, -0.0000024606,0.0000024497,0.0000024388,0.0000024315,0.0000024285, -0.0000024278,0.0000024267,0.0000024236,0.0000024189,0.0000024143, -0.0000024111,0.0000024101,0.0000024098,0.0000024102,0.0000024111, -0.0000024114,0.0000024107,0.0000024103,0.0000024107,0.0000024119, -0.0000024129,0.0000024129,0.0000024110,0.0000024070,0.0000024018, -0.0000023972,0.0000023961,0.0000024007,0.0000024122,0.0000024230, -0.0000024268,0.0000024258,0.0000024198,0.0000024110,0.0000024033, -0.0000023987,0.0000023950,0.0000023872,0.0000023748,0.0000023617, -0.0000023485,0.0000023336,0.0000023182,0.0000023050,0.0000022926, -0.0000022784,0.0000022649,0.0000022576,0.0000022576,0.0000022610, -0.0000022636,0.0000022631,0.0000022594,0.0000022526,0.0000022438, -0.0000022356,0.0000022283,0.0000022230,0.0000022182,0.0000022148, -0.0000022112,0.0000022071,0.0000022044,0.0000022061,0.0000022139, -0.0000022257,0.0000022381,0.0000022500,0.0000022615,0.0000022726, -0.0000022847,0.0000022990,0.0000023152,0.0000023322,0.0000023478, -0.0000023600,0.0000023672,0.0000023699,0.0000023651,0.0000023604, -0.0000023504,0.0000023405,0.0000023310,0.0000023230,0.0000023170, -0.0000023129,0.0000023098,0.0000023070,0.0000023042,0.0000023012, -0.0000022976,0.0000022936,0.0000022894,0.0000022858,0.0000022837, -0.0000022835,0.0000022840,0.0000022839,0.0000022833,0.0000022826, -0.0000022828,0.0000022827,0.0000022829,0.0000022824,0.0000022812, -0.0000022787,0.0000022742,0.0000022685,0.0000022626,0.0000022575, -0.0000022540,0.0000022525,0.0000022530,0.0000022553,0.0000022574, -0.0000022567,0.0000022528,0.0000022479,0.0000022436,0.0000022408, -0.0000022393,0.0000022387,0.0000022376,0.0000022358,0.0000022342, -0.0000022334,0.0000022320,0.0000022307,0.0000022292,0.0000022278, -0.0000022273,0.0000022259,0.0000022244,0.0000022238,0.0000022228, -0.0000022207,0.0000022175,0.0000022139,0.0000022098,0.0000022050, -0.0000021991,0.0000021933,0.0000021872,0.0000021814,0.0000021762, -0.0000021717,0.0000021681,0.0000021654,0.0000021649,0.0000021659, -0.0000021678,0.0000021697,0.0000021710,0.0000021717,0.0000021716, -0.0000021710,0.0000021705,0.0000021709,0.0000021719,0.0000021735, -0.0000021750,0.0000021757,0.0000021763,0.0000021763,0.0000021750, -0.0000021727,0.0000021698,0.0000021654,0.0000021598,0.0000021532, -0.0000021462,0.0000021388,0.0000021313,0.0000021241,0.0000021177, -0.0000021134,0.0000021108,0.0000021095,0.0000021093,0.0000021104, -0.0000021128,0.0000021152,0.0000021162,0.0000021160,0.0000021150, -0.0000021131,0.0000021100,0.0000021059,0.0000021015,0.0000020973, -0.0000020930,0.0000020893,0.0000020859,0.0000020829,0.0000020805, -0.0000020793,0.0000020792,0.0000020795,0.0000020796,0.0000020792, -0.0000020785,0.0000020790,0.0000020818,0.0000020864,0.0000020922, -0.0000020971,0.0000021002,0.0000021014,0.0000021004,0.0000020995, -0.0000020972,0.0000020941,0.0000020917,0.0000020901,0.0000020891, -0.0000020881,0.0000020869,0.0000020854,0.0000020834,0.0000020815, -0.0000020789,0.0000020760,0.0000020726,0.0000020690,0.0000020675, -0.0000020681,0.0000020688,0.0000020702,0.0000020720,0.0000020726, -0.0000020720,0.0000020713,0.0000020714,0.0000020730,0.0000020766, -0.0000020816,0.0000020871,0.0000020925,0.0000020974,0.0000021007, -0.0000021014,0.0000020999,0.0000020965,0.0000020920,0.0000020878, -0.0000020863,0.0000020864,0.0000020865,0.0000020863,0.0000020857, -0.0000020845,0.0000020828,0.0000020813,0.0000020823,0.0000020866, -0.0000020908,0.0000020916,0.0000020906,0.0000020928,0.0000021057, -0.0000021265,0.0000021416,0.0000021445,0.0000021435,0.0000021449, -0.0000021533,0.0000021619,0.0000021647,0.0000021644,0.0000021632, -0.0000021631,0.0000021634,0.0000021602,0.0000021509,0.0000021401, -0.0000021305,0.0000021239,0.0000021204,0.0000021156,0.0000021104, -0.0000021096,0.0000021113,0.0000021110,0.0000021069,0.0000020997, -0.0000020927,0.0000020881,0.0000020861,0.0000020859,0.0000020868, -0.0000020888,0.0000020926,0.0000020980,0.0000021044,0.0000021105, -0.0000021145,0.0000021165,0.0000021175,0.0000021177,0.0000021161, -0.0000021121,0.0000021069,0.0000021021,0.0000020980,0.0000020948, -0.0000020923,0.0000020910,0.0000020907,0.0000020910,0.0000020920, -0.0000020931,0.0000020953,0.0000020998,0.0000021051,0.0000021078, -0.0000021066,0.0000021024,0.0000020963,0.0000020872,0.0000020759, -0.0000020678,0.0000020657,0.0000020653,0.0000020641,0.0000020632, -0.0000020635,0.0000020641,0.0000020648,0.0000020669,0.0000020702, -0.0000020730,0.0000020748,0.0000020755,0.0000020749,0.0000020726, -0.0000020690,0.0000020639,0.0000020577,0.0000020515,0.0000020461, -0.0000020425,0.0000020408,0.0000020405,0.0000020414,0.0000020446, -0.0000020500,0.0000020567,0.0000020635,0.0000020697,0.0000020750, -0.0000020793,0.0000020827,0.0000020854,0.0000020871,0.0000020880, -0.0000020892,0.0000020909,0.0000020925,0.0000020946,0.0000020978, -0.0000021013,0.0000021042,0.0000021067,0.0000021085,0.0000021101, -0.0000021088,0.0000020980,0.0000020788,0.0000020646,0.0000020623, -0.0000020691,0.0000020909,0.0000021230,0.0000021516,0.0000021697, -0.0000021812,0.0000021897,0.0000021946,0.0000021962,0.0000021966, -0.0000021971,0.0000021980,0.0000021991,0.0000021998,0.0000022002, -0.0000022016,0.0000022041,0.0000022065,0.0000022075,0.0000022068, -0.0000022037,0.0000021994,0.0000021968,0.0000021971,0.0000021962, -0.0000021874,0.0000021689,0.0000021487,0.0000021372,0.0000021355, -0.0000021377,0.0000021430,0.0000021524,0.0000021650,0.0000021769, -0.0000021853,0.0000021903,0.0000021925,0.0000021932,0.0000021923, -0.0000021945,0.0000022001,0.0000022054,0.0000022022,0.0000021879, -0.0000021707,0.0000021595,0.0000021519,0.0000021391,0.0000021204, -0.0000021068,0.0000021043,0.0000021110,0.0000021236,0.0000021379, -0.0000021521,0.0000021662,0.0000021800,0.0000021927,0.0000022026, -0.0000022091,0.0000022121,0.0000022122,0.0000022101,0.0000022063, -0.0000022016,0.0000021963,0.0000021905,0.0000021844,0.0000021779, -0.0000021707,0.0000021638,0.0000021569,0.0000021507,0.0000021466, -0.0000021443,0.0000021422,0.0000021401,0.0000021394,0.0000021388, -0.0000021372,0.0000021355,0.0000021343,0.0000021331,0.0000021319, -0.0000021312,0.0000021304,0.0000021299,0.0000021298,0.0000021294, -0.0000021290,0.0000021287,0.0000021280,0.0000021276,0.0000021276, -0.0000021284,0.0000021288,0.0000021316,0.0000021349,0.0000021385, -0.0000021420,0.0000021449,0.0000021476,0.0000021507,0.0000021534, -0.0000021553,0.0000021571,0.0000021588,0.0000021605,0.0000021622, -0.0000021635,0.0000021632,0.0000021613,0.0000021584,0.0000021553, -0.0000021504,0.0000021455,0.0000021417,0.0000021405,0.0000021415, -0.0000021446,0.0000021478,0.0000021497,0.0000021516,0.0000021546, -0.0000021582,0.0000021617,0.0000021647,0.0000021666,0.0000021668, -0.0000021655,0.0000021627,0.0000021589,0.0000021548,0.0000021505, -0.0000021466,0.0000021442,0.0000021430,0.0000021423,0.0000021420, -0.0000021421,0.0000021427,0.0000021433,0.0000021437,0.0000021438, -0.0000021443,0.0000021449,0.0000021445,0.0000021437,0.0000021440, -0.0000021457,0.0000021490,0.0000021539,0.0000021583,0.0000021624, -0.0000021671,0.0000021712,0.0000021745,0.0000021772,0.0000021795, -0.0000021817,0.0000021826,0.0000021824,0.0000021817,0.0000021808, -0.0000021795,0.0000021778,0.0000021763,0.0000021749,0.0000021743, -0.0000021749,0.0000021773,0.0000021785,0.0000021780,0.0000021762, -0.0000021738,0.0000021716,0.0000021701,0.0000021677,0.0000021633, -0.0000021575,0.0000021520,0.0000021481,0.0000021457,0.0000021448, -0.0000021449,0.0000021452,0.0000021449,0.0000021478,0.0000021530, -0.0000021587,0.0000021653,0.0000021736,0.0000021822,0.0000021905, -0.0000021976,0.0000022027,0.0000022064,0.0000022095,0.0000022121, -0.0000022142,0.0000022169,0.0000022217,0.0000022298,0.0000022406, -0.0000022521,0.0000022630,0.0000022719,0.0000022775,0.0000022797, -0.0000022804,0.0000022819,0.0000022848,0.0000022889,0.0000022942, -0.0000023004,0.0000023057,0.0000023081,0.0000023076,0.0000023046, -0.0000023001,0.0000022958,0.0000022927,0.0000022904,0.0000022889, -0.0000022875,0.0000022863,0.0000022855,0.0000022843,0.0000022827, -0.0000022804,0.0000022777,0.0000022745,0.0000022714,0.0000022686, -0.0000022676,0.0000022666,0.0000022682,0.0000022718,0.0000022768, -0.0000022831,0.0000022905,0.0000022988,0.0000023063,0.0000023103, -0.0000023124,0.0000023125,0.0000023111,0.0000023097,0.0000023089, -0.0000023084,0.0000023086,0.0000023098,0.0000023116,0.0000023132, -0.0000023144,0.0000023156,0.0000023169,0.0000023180,0.0000023179, -0.0000023178,0.0000023176,0.0000023177,0.0000023185,0.0000023194, -0.0000023200,0.0000023200,0.0000023197,0.0000023191,0.0000023181, -0.0000023166,0.0000023153,0.0000023146,0.0000023140,0.0000023132, -0.0000023125,0.0000023118,0.0000023111,0.0000023104,0.0000023100, -0.0000023094,0.0000023087,0.0000023077,0.0000023068,0.0000023060, -0.0000023054,0.0000023051,0.0000023053,0.0000023059,0.0000023069, -0.0000023085,0.0000023102,0.0000023113,0.0000023112,0.0000023096, -0.0000023062,0.0000023013,0.0000022959,0.0000022911,0.0000022870, -0.0000022829,0.0000022793,0.0000022769,0.0000022750,0.0000022741, -0.0000022745,0.0000022764,0.0000022787,0.0000022800,0.0000022798, -0.0000022777,0.0000022740,0.0000022701,0.0000022671,0.0000022654, -0.0000022642,0.0000022626,0.0000022609,0.0000022599,0.0000022594, -0.0000022588,0.0000022583,0.0000022581,0.0000022584,0.0000022583, -0.0000022572,0.0000022555,0.0000022538,0.0000022525,0.0000022515, -0.0000022498,0.0000022467,0.0000022423,0.0000022373,0.0000022335, -0.0000022321,0.0000022321,0.0000022331,0.0000022333,0.0000022319, -0.0000022292,0.0000022257,0.0000022208,0.0000022156,0.0000022106, -0.0000022037,0.0000021962,0.0000021894,0.0000021840,0.0000021803, -0.0000021776,0.0000021755,0.0000021732,0.0000021703,0.0000021671, -0.0000021639,0.0000021609,0.0000021583,0.0000021559,0.0000021539, -0.0000021521,0.0000021503,0.0000021476,0.0000021444,0.0000021410, -0.0000021379,0.0000021346,0.0000021314,0.0000021286,0.0000021254, -0.0000021222,0.0000021193,0.0000021161,0.0000021126,0.0000021086, -0.0000021047,0.0000021007,0.0000020965,0.0000020926,0.0000020899, -0.0000020885,0.0000020885,0.0000020894,0.0000020927,0.0000021014, -0.0000021172,0.0000021394,0.0000021631,0.0000021801,0.0000021888, -0.0000021927,0.0000021963,0.0000022024,0.0000022097,0.0000022158, -0.0000022197,0.0000022226,0.0000022257,0.0000022296,0.0000022338, -0.0000022370,0.0000022380,0.0000022373,0.0000022346,0.0000022296, -0.0000022220,0.0000022128,0.0000022037,0.0000021959,0.0000021908, -0.0000021879,0.0000021874,0.0000021893,0.0000021946,0.0000022028, -0.0000022120,0.0000022218,0.0000022305,0.0000022380,0.0000022455, -0.0000022528,0.0000022585,0.0000022604,0.0000022587,0.0000022540, -0.0000022490,0.0000022464,0.0000022467,0.0000022513,0.0000022576, -0.0000022625,0.0000022652,0.0000022660,0.0000022656,0.0000022648, -0.0000022642,0.0000022635,0.0000022624,0.0000022599,0.0000022563, -0.0000022537,0.0000022497,0.0000022428,0.0000022402,0.0000022433, -0.0000022496,0.0000022509,0.0000022465,0.0000022350,0.0000022201, -0.0000022152,0.0000022209,0.0000022278,0.0000022309,0.0000022312, -0.0000022503,0.0000022766,0.0000022847,0.0000022958,0.0000023061, -0.0000023151,0.0000023177,0.0000023097,0.0000022942,0.0000022708, -0.0000022556,0.0000022516,0.0000022510,0.0000022487,0.0000022477, -0.0000022438,0.0000022489,0.0000022659,0.0000022807,0.0000022906, -0.0000022951,0.0000022961,0.0000022945,0.0000022887,0.0000022848, -0.0000022872,0.0000022935,0.0000022983,0.0000023035,0.0000023084, -0.0000023218,0.0000023405,0.0000023512,0.0000023597,0.0000023602, -0.0000023473,0.0000023369,0.0000023291,0.0000023265,0.0000023279, -0.0000023264,0.0000023225,0.0000023200,0.0000023181,0.0000023148, -0.0000023113,0.0000023104,0.0000023117,0.0000023131,0.0000023130, -0.0000023115,0.0000023089,0.0000023070,0.0000023062,0.0000023062, -0.0000023067,0.0000023071,0.0000023074,0.0000023074,0.0000023073, -0.0000023051,0.0000023013,0.0000022964,0.0000022928,0.0000022901, -0.0000022877,0.0000022870,0.0000022862,0.0000022865,0.0000022886, -0.0000022909,0.0000022925,0.0000022949,0.0000022980,0.0000023038, -0.0000023118,0.0000023157,0.0000023129,0.0000023082,0.0000023065, -0.0000023021,0.0000022877,0.0000022675,0.0000022371,0.0000022155, -0.0000022214,0.0000022265,0.0000022180,0.0000022179,0.0000022211, -0.0000021989,0.0000021657,0.0000021640,0.0000021823,0.0000021983, -0.0000022101,0.0000022203,0.0000022281,0.0000022341,0.0000022417, -0.0000022471,0.0000022452,0.0000022379,0.0000022311,0.0000022272, -0.0000022250,0.0000022251,0.0000022287,0.0000022320,0.0000022328, -0.0000022341,0.0000022395,0.0000022497,0.0000022627,0.0000022727, -0.0000022740,0.0000022671,0.0000022581,0.0000022492,0.0000022341, -0.0000022154,0.0000022037,0.0000022005,0.0000022024,0.0000022083, -0.0000022110,0.0000022113,0.0000022160,0.0000022241,0.0000022317, -0.0000022380,0.0000022442,0.0000022503,0.0000022538,0.0000022540, -0.0000022528,0.0000022504,0.0000022479,0.0000022475,0.0000022481, -0.0000022438,0.0000022363,0.0000022345,0.0000022377,0.0000022405, -0.0000022403,0.0000022414,0.0000022440,0.0000022441,0.0000022438, -0.0000022520,0.0000022688,0.0000022846,0.0000022939,0.0000022978, -0.0000022983,0.0000022972,0.0000022954,0.0000022937,0.0000022921, -0.0000022912,0.0000022924,0.0000022944,0.0000022955,0.0000022961, -0.0000022967,0.0000022969,0.0000022970,0.0000022960,0.0000022943, -0.0000022936,0.0000022943,0.0000022959,0.0000022970,0.0000022980, -0.0000022998,0.0000023028,0.0000023069,0.0000023122,0.0000023191, -0.0000023272,0.0000023351,0.0000023410,0.0000023436,0.0000023440, -0.0000023439,0.0000023438,0.0000023427,0.0000023406,0.0000023358, -0.0000023289,0.0000023213,0.0000023150,0.0000023105,0.0000023080, -0.0000023085,0.0000023109,0.0000023134,0.0000023164,0.0000023212, -0.0000023280,0.0000023366,0.0000023452,0.0000023525,0.0000023579, -0.0000023609,0.0000023614,0.0000023595,0.0000023560,0.0000023510, -0.0000023452,0.0000023386,0.0000023338,0.0000023341,0.0000023391, -0.0000023462,0.0000023513,0.0000023541,0.0000023558,0.0000023568, -0.0000023558,0.0000023527,0.0000023498,0.0000023493,0.0000023501, -0.0000023513,0.0000023526,0.0000023541,0.0000023555,0.0000023568, -0.0000023578,0.0000023585,0.0000023584,0.0000023582,0.0000023593, -0.0000023620,0.0000023652,0.0000023679,0.0000023700,0.0000023722, -0.0000023759,0.0000023815,0.0000023868,0.0000023898,0.0000023901, -0.0000023876,0.0000023842,0.0000023831,0.0000023844,0.0000023886, -0.0000023941,0.0000023990,0.0000024019,0.0000024033,0.0000024036, -0.0000024031,0.0000024011,0.0000023975,0.0000023928,0.0000023869, -0.0000023800,0.0000023730,0.0000023663,0.0000023604,0.0000023551, -0.0000023504,0.0000023461,0.0000023416,0.0000023368,0.0000023315, -0.0000023255,0.0000023193,0.0000023137,0.0000023094,0.0000023070, -0.0000023058,0.0000023041,0.0000023003,0.0000022952,0.0000022908, -0.0000022877,0.0000022849,0.0000022821,0.0000022799,0.0000022789, -0.0000022780,0.0000022754,0.0000022706,0.0000022666,0.0000022655, -0.0000022677,0.0000022716,0.0000022740,0.0000022741,0.0000022734, -0.0000022734,0.0000022750,0.0000022769,0.0000022781,0.0000022778, -0.0000022774,0.0000022757,0.0000022734,0.0000022703,0.0000022666, -0.0000022628,0.0000022591,0.0000022555,0.0000022519,0.0000022483, -0.0000022447,0.0000022414,0.0000022387,0.0000022369,0.0000022356, -0.0000022350,0.0000022350,0.0000022358,0.0000022373,0.0000022388, -0.0000022399,0.0000022405,0.0000022400,0.0000022385,0.0000022369, -0.0000022354,0.0000022338,0.0000022311,0.0000022281,0.0000022252, -0.0000022221,0.0000022200,0.0000022179,0.0000022168,0.0000022167, -0.0000022167,0.0000022170,0.0000022179,0.0000022189,0.0000022199, -0.0000022216,0.0000022234,0.0000022259,0.0000022286,0.0000022313, -0.0000022338,0.0000022354,0.0000022364,0.0000022369,0.0000022367, -0.0000022363,0.0000022356,0.0000022351,0.0000022346,0.0000022338, -0.0000022331,0.0000022325,0.0000022316,0.0000022303,0.0000022294, -0.0000022291,0.0000022293,0.0000022306,0.0000022326,0.0000022350, -0.0000022365,0.0000022378,0.0000022393,0.0000022415,0.0000022446, -0.0000022471,0.0000022490,0.0000022520,0.0000022553,0.0000022571, -0.0000022558,0.0000022515,0.0000022395,0.0000022222,0.0000022058, -0.0000021958,0.0000021939,0.0000021946,0.0000021958,0.0000021982, -0.0000022041,0.0000022132,0.0000022217,0.0000022286,0.0000022371, -0.0000022475,0.0000022570,0.0000022654,0.0000022723,0.0000022764, -0.0000022791,0.0000022805,0.0000022808,0.0000022817,0.0000022832, -0.0000022829,0.0000022828,0.0000022854,0.0000022846,0.0000022840, -0.0000023024,0.0000023276,0.0000023369,0.0000023358,0.0000023227, -0.0000023026,0.0000022913,0.0000022847,0.0000022721,0.0000022554, -0.0000022429,0.0000022374,0.0000022345,0.0000022310,0.0000022257, -0.0000022198,0.0000022154,0.0000022107,0.0000022053,0.0000022003, -0.0000021954,0.0000021929,0.0000021925,0.0000021924,0.0000021916, -0.0000021912,0.0000021937,0.0000022011,0.0000022120,0.0000022214, -0.0000022266,0.0000022303,0.0000022347,0.0000022399,0.0000022455, -0.0000022500,0.0000022515,0.0000022477,0.0000022368,0.0000022242, -0.0000022167,0.0000022156,0.0000022178,0.0000022213,0.0000022242, -0.0000022269,0.0000022298,0.0000022337,0.0000022380,0.0000022427, -0.0000022482,0.0000022549,0.0000022611,0.0000022664,0.0000022702, -0.0000022716,0.0000022716,0.0000022683,0.0000022620,0.0000022544, -0.0000022475,0.0000022410,0.0000022319,0.0000022178,0.0000022006, -0.0000021847,0.0000021752,0.0000021756,0.0000021894,0.0000022123, -0.0000022256,0.0000022221,0.0000022135,0.0000022208,0.0000022530, -0.0000022867,0.0000022909,0.0000022662,0.0000022305,0.0000022095, -0.0000022041,0.0000022028,0.0000021988,0.0000021901,0.0000021783, -0.0000021674,0.0000021622,0.0000021625,0.0000021655,0.0000021682, -0.0000021696,0.0000021702,0.0000021715,0.0000021736,0.0000021742, -0.0000021719,0.0000021678,0.0000021645,0.0000021620,0.0000021583, -0.0000021526,0.0000021464,0.0000021416,0.0000021375,0.0000021340, -0.0000021315,0.0000021290,0.0000021273,0.0000021269,0.0000021274, -0.0000021289,0.0000021319,0.0000021357,0.0000021391,0.0000021428, -0.0000021466,0.0000021507,0.0000021566,0.0000021652,0.0000021764, -0.0000021895,0.0000022023,0.0000022131,0.0000022200,0.0000022232, -0.0000022257,0.0000022297,0.0000022357,0.0000022420,0.0000022472, -0.0000022523,0.0000022578,0.0000022613,0.0000022619,0.0000022608, -0.0000022597,0.0000022596,0.0000022604,0.0000022604,0.0000022567, -0.0000022468,0.0000022321,0.0000022179,0.0000022074,0.0000021984, -0.0000021864,0.0000021705,0.0000021536,0.0000021385,0.0000021266, -0.0000021172,0.0000021099,0.0000021051,0.0000021037,0.0000021040, -0.0000021051,0.0000021056,0.0000021050,0.0000021042,0.0000021052, -0.0000021099,0.0000021190,0.0000021314,0.0000021432,0.0000021496, -0.0000021487,0.0000021434,0.0000021345,0.0000021261,0.0000021211, -0.0000021195,0.0000021189,0.0000021177,0.0000021165,0.0000021187, -0.0000021280,0.0000021439,0.0000021587,0.0000021636,0.0000021608, -0.0000021499,0.0000021373,0.0000021250,0.0000021138,0.0000021055, -0.0000021003,0.0000020961,0.0000020922,0.0000020919,0.0000020966, -0.0000021111,0.0000021325,0.0000021551,0.0000021739,0.0000021863, -0.0000021924,0.0000021950,0.0000021974,0.0000022000,0.0000022006, -0.0000021989,0.0000021990,0.0000022055,0.0000022198,0.0000022391, -0.0000022596,0.0000022779,0.0000022911,0.0000022957,0.0000022924, -0.0000022868,0.0000022847,0.0000022902,0.0000023053,0.0000023279, -0.0000023544,0.0000023800,0.0000024009,0.0000024159,0.0000024266, -0.0000024354,0.0000024430,0.0000024499,0.0000024564,0.0000024616, -0.0000024637,0.0000024597,0.0000024504,0.0000024406,0.0000024336, -0.0000024309,0.0000024309,0.0000024302,0.0000024275,0.0000024229, -0.0000024175,0.0000024126,0.0000024088,0.0000024075,0.0000024069, -0.0000024078,0.0000024083,0.0000024088,0.0000024100,0.0000024118, -0.0000024131,0.0000024133,0.0000024120,0.0000024090,0.0000024043, -0.0000023994,0.0000023969,0.0000023984,0.0000024069,0.0000024182, -0.0000024255,0.0000024266,0.0000024241,0.0000024184,0.0000024112, -0.0000024049,0.0000024003,0.0000023951,0.0000023859,0.0000023729, -0.0000023587,0.0000023437,0.0000023277,0.0000023127,0.0000022997, -0.0000022869,0.0000022739,0.0000022652,0.0000022640,0.0000022675, -0.0000022710,0.0000022715,0.0000022687,0.0000022617,0.0000022522, -0.0000022425,0.0000022336,0.0000022256,0.0000022189,0.0000022129, -0.0000022062,0.0000021980,0.0000021905,0.0000021884,0.0000021929, -0.0000022028,0.0000022145,0.0000022257,0.0000022357,0.0000022440, -0.0000022506,0.0000022569,0.0000022644,0.0000022739,0.0000022860, -0.0000023005,0.0000023165,0.0000023320,0.0000023449,0.0000023525, -0.0000023544,0.0000023494,0.0000023452,0.0000023366,0.0000023280, -0.0000023205,0.0000023140,0.0000023088,0.0000023048,0.0000023017, -0.0000022988,0.0000022958,0.0000022924,0.0000022894,0.0000022872, -0.0000022867,0.0000022877,0.0000022889,0.0000022890,0.0000022879, -0.0000022858,0.0000022835,0.0000022814,0.0000022778,0.0000022745, -0.0000022709,0.0000022659,0.0000022591,0.0000022522,0.0000022464, -0.0000022424,0.0000022391,0.0000022374,0.0000022385,0.0000022414, -0.0000022444,0.0000022452,0.0000022436,0.0000022413,0.0000022391, -0.0000022380,0.0000022377,0.0000022375,0.0000022364,0.0000022356, -0.0000022355,0.0000022345,0.0000022325,0.0000022302,0.0000022277, -0.0000022260,0.0000022239,0.0000022208,0.0000022189,0.0000022176, -0.0000022156,0.0000022127,0.0000022092,0.0000022057,0.0000022017, -0.0000021972,0.0000021926,0.0000021871,0.0000021812,0.0000021761, -0.0000021716,0.0000021672,0.0000021638,0.0000021624,0.0000021630, -0.0000021652,0.0000021678,0.0000021702,0.0000021723,0.0000021745, -0.0000021765,0.0000021779,0.0000021780,0.0000021775,0.0000021769, -0.0000021758,0.0000021740,0.0000021717,0.0000021689,0.0000021648, -0.0000021595,0.0000021537,0.0000021473,0.0000021407,0.0000021336, -0.0000021267,0.0000021198,0.0000021139,0.0000021092,0.0000021057, -0.0000021035,0.0000021027,0.0000021033,0.0000021045,0.0000021059, -0.0000021081,0.0000021108,0.0000021124,0.0000021127,0.0000021122, -0.0000021110,0.0000021090,0.0000021065,0.0000021032,0.0000020999, -0.0000020967,0.0000020933,0.0000020897,0.0000020856,0.0000020811, -0.0000020772,0.0000020750,0.0000020748,0.0000020758,0.0000020773, -0.0000020780,0.0000020779,0.0000020773,0.0000020770,0.0000020773, -0.0000020793,0.0000020820,0.0000020844,0.0000020861,0.0000020871, -0.0000020872,0.0000020864,0.0000020852,0.0000020839,0.0000020832, -0.0000020831,0.0000020824,0.0000020814,0.0000020812,0.0000020818, -0.0000020827,0.0000020822,0.0000020814,0.0000020782,0.0000020734, -0.0000020690,0.0000020664,0.0000020652,0.0000020667,0.0000020692, -0.0000020704,0.0000020703,0.0000020695,0.0000020687,0.0000020690, -0.0000020710,0.0000020748,0.0000020800,0.0000020855,0.0000020912, -0.0000020962,0.0000020985,0.0000020980,0.0000020946,0.0000020893, -0.0000020839,0.0000020809,0.0000020799,0.0000020799,0.0000020803, -0.0000020812,0.0000020819,0.0000020810,0.0000020794,0.0000020797, -0.0000020828,0.0000020868,0.0000020880,0.0000020867,0.0000020881, -0.0000021010,0.0000021239,0.0000021405,0.0000021434,0.0000021427, -0.0000021458,0.0000021559,0.0000021643,0.0000021660,0.0000021648, -0.0000021638,0.0000021644,0.0000021633,0.0000021562,0.0000021457, -0.0000021355,0.0000021274,0.0000021218,0.0000021152,0.0000021088, -0.0000021077,0.0000021098,0.0000021086,0.0000021007,0.0000020903, -0.0000020818,0.0000020770,0.0000020753,0.0000020749,0.0000020753, -0.0000020772,0.0000020808,0.0000020863,0.0000020929,0.0000020991, -0.0000021040,0.0000021069,0.0000021081,0.0000021086,0.0000021080, -0.0000021058,0.0000021021,0.0000020978,0.0000020933,0.0000020893, -0.0000020865,0.0000020849,0.0000020844,0.0000020850,0.0000020867, -0.0000020888,0.0000020904,0.0000020920,0.0000020953,0.0000021002, -0.0000021035,0.0000021034,0.0000021000,0.0000020943,0.0000020858, -0.0000020746,0.0000020645,0.0000020602,0.0000020597,0.0000020589, -0.0000020579,0.0000020578,0.0000020580,0.0000020583,0.0000020598, -0.0000020626,0.0000020652,0.0000020667,0.0000020670,0.0000020665, -0.0000020648,0.0000020621,0.0000020584,0.0000020540,0.0000020495, -0.0000020453,0.0000020425,0.0000020411,0.0000020403,0.0000020398, -0.0000020404,0.0000020436,0.0000020487,0.0000020551,0.0000020618, -0.0000020680,0.0000020728,0.0000020765,0.0000020791,0.0000020803, -0.0000020807,0.0000020812,0.0000020826,0.0000020844,0.0000020866, -0.0000020891,0.0000020921,0.0000020953,0.0000020985,0.0000021016, -0.0000021046,0.0000021074,0.0000021060,0.0000020950,0.0000020765, -0.0000020629,0.0000020602,0.0000020644,0.0000020792,0.0000021040, -0.0000021319,0.0000021548,0.0000021699,0.0000021805,0.0000021888, -0.0000021938,0.0000021953,0.0000021952,0.0000021958,0.0000021967, -0.0000021973,0.0000021979,0.0000021994,0.0000022025,0.0000022061, -0.0000022086,0.0000022087,0.0000022054,0.0000021986,0.0000021927, -0.0000021912,0.0000021917,0.0000021889,0.0000021754,0.0000021538, -0.0000021382,0.0000021344,0.0000021353,0.0000021398,0.0000021479, -0.0000021595,0.0000021721,0.0000021827,0.0000021891,0.0000021916, -0.0000021877,0.0000021900,0.0000021924,0.0000021967,0.0000022025, -0.0000022033,0.0000021930,0.0000021749,0.0000021590,0.0000021494, -0.0000021425,0.0000021333,0.0000021215,0.0000021136,0.0000021131, -0.0000021168,0.0000021250,0.0000021335,0.0000021414,0.0000021494, -0.0000021565,0.0000021616,0.0000021643,0.0000021643,0.0000021625, -0.0000021598,0.0000021574,0.0000021553,0.0000021532,0.0000021518, -0.0000021512,0.0000021507,0.0000021496,0.0000021485,0.0000021477, -0.0000021477,0.0000021487,0.0000021498,0.0000021511,0.0000021521, -0.0000021528,0.0000021523,0.0000021515,0.0000021507,0.0000021492, -0.0000021471,0.0000021453,0.0000021437,0.0000021420,0.0000021403, -0.0000021387,0.0000021373,0.0000021357,0.0000021337,0.0000021319, -0.0000021306,0.0000021301,0.0000021300,0.0000021309,0.0000021326, -0.0000021349,0.0000021373,0.0000021391,0.0000021407,0.0000021427, -0.0000021445,0.0000021454,0.0000021462,0.0000021473,0.0000021496, -0.0000021527,0.0000021558,0.0000021585,0.0000021591,0.0000021591, -0.0000021585,0.0000021569,0.0000021544,0.0000021515,0.0000021495, -0.0000021493,0.0000021510,0.0000021539,0.0000021561,0.0000021578, -0.0000021604,0.0000021638,0.0000021668,0.0000021694,0.0000021722, -0.0000021743,0.0000021755,0.0000021757,0.0000021734,0.0000021691, -0.0000021639,0.0000021585,0.0000021542,0.0000021522,0.0000021517, -0.0000021520,0.0000021534,0.0000021560,0.0000021584,0.0000021596, -0.0000021598,0.0000021595,0.0000021587,0.0000021565,0.0000021530, -0.0000021492,0.0000021471,0.0000021472,0.0000021505,0.0000021549, -0.0000021590,0.0000021635,0.0000021681,0.0000021717,0.0000021743, -0.0000021762,0.0000021779,0.0000021792,0.0000021800,0.0000021800, -0.0000021792,0.0000021781,0.0000021771,0.0000021758,0.0000021747, -0.0000021737,0.0000021738,0.0000021757,0.0000021794,0.0000021824, -0.0000021833,0.0000021833,0.0000021825,0.0000021817,0.0000021817, -0.0000021807,0.0000021769,0.0000021709,0.0000021646,0.0000021593, -0.0000021550,0.0000021518,0.0000021491,0.0000021461,0.0000021435, -0.0000021434,0.0000021441,0.0000021438,0.0000021445,0.0000021486, -0.0000021543,0.0000021618,0.0000021705,0.0000021793,0.0000021879, -0.0000021962,0.0000022033,0.0000022087,0.0000022124,0.0000022153, -0.0000022184,0.0000022229,0.0000022303,0.0000022413,0.0000022546, -0.0000022671,0.0000022759,0.0000022805,0.0000022821,0.0000022828, -0.0000022840,0.0000022866,0.0000022912,0.0000022973,0.0000023032, -0.0000023067,0.0000023070,0.0000023055,0.0000023016,0.0000022961, -0.0000022910,0.0000022875,0.0000022850,0.0000022841,0.0000022843, -0.0000022849,0.0000022856,0.0000022867,0.0000022872,0.0000022871, -0.0000022864,0.0000022846,0.0000022809,0.0000022757,0.0000022705, -0.0000022684,0.0000022666,0.0000022675,0.0000022711,0.0000022772, -0.0000022859,0.0000022959,0.0000023050,0.0000023109,0.0000023120, -0.0000023120,0.0000023110,0.0000023095,0.0000023087,0.0000023089, -0.0000023097,0.0000023109,0.0000023118,0.0000023123,0.0000023127, -0.0000023132,0.0000023139,0.0000023147,0.0000023154,0.0000023161, -0.0000023169,0.0000023176,0.0000023179,0.0000023178,0.0000023175, -0.0000023170,0.0000023163,0.0000023153,0.0000023145,0.0000023136, -0.0000023125,0.0000023111,0.0000023097,0.0000023085,0.0000023073, -0.0000023065,0.0000023062,0.0000023059,0.0000023052,0.0000023043, -0.0000023033,0.0000023027,0.0000023029,0.0000023039,0.0000023056, -0.0000023078,0.0000023100,0.0000023116,0.0000023122,0.0000023116, -0.0000023093,0.0000023054,0.0000023006,0.0000022955,0.0000022909, -0.0000022875,0.0000022847,0.0000022820,0.0000022801,0.0000022796, -0.0000022799,0.0000022808,0.0000022822,0.0000022836,0.0000022843, -0.0000022836,0.0000022816,0.0000022787,0.0000022753,0.0000022723, -0.0000022703,0.0000022691,0.0000022681,0.0000022670,0.0000022664, -0.0000022666,0.0000022672,0.0000022677,0.0000022679,0.0000022678, -0.0000022676,0.0000022666,0.0000022643,0.0000022612,0.0000022578, -0.0000022549,0.0000022527,0.0000022505,0.0000022473,0.0000022428, -0.0000022375,0.0000022333,0.0000022312,0.0000022305,0.0000022307, -0.0000022306,0.0000022294,0.0000022268,0.0000022227,0.0000022166, -0.0000022090,0.0000022010,0.0000021928,0.0000021864,0.0000021822, -0.0000021794,0.0000021769,0.0000021741,0.0000021714,0.0000021684, -0.0000021653,0.0000021622,0.0000021591,0.0000021567,0.0000021553, -0.0000021541,0.0000021528,0.0000021515,0.0000021498,0.0000021464, -0.0000021425,0.0000021391,0.0000021359,0.0000021333,0.0000021310, -0.0000021286,0.0000021266,0.0000021243,0.0000021216,0.0000021185, -0.0000021150,0.0000021113,0.0000021072,0.0000021023,0.0000020973, -0.0000020931,0.0000020902,0.0000020886,0.0000020884,0.0000020892, -0.0000020915,0.0000020972,0.0000021095,0.0000021318,0.0000021595, -0.0000021812,0.0000021915,0.0000021939,0.0000021952,0.0000022008, -0.0000022092,0.0000022160,0.0000022195,0.0000022215,0.0000022238, -0.0000022272,0.0000022305,0.0000022321,0.0000022315,0.0000022288, -0.0000022242,0.0000022174,0.0000022085,0.0000021998,0.0000021938, -0.0000021902,0.0000021891,0.0000021893,0.0000021934,0.0000022013, -0.0000022111,0.0000022200,0.0000022265,0.0000022313,0.0000022352, -0.0000022389,0.0000022436,0.0000022486,0.0000022523,0.0000022539, -0.0000022538,0.0000022520,0.0000022496,0.0000022482,0.0000022480, -0.0000022500,0.0000022550,0.0000022609,0.0000022657,0.0000022672, -0.0000022665,0.0000022650,0.0000022635,0.0000022616,0.0000022588, -0.0000022550,0.0000022516,0.0000022488,0.0000022434,0.0000022377, -0.0000022368,0.0000022415,0.0000022469,0.0000022479,0.0000022433, -0.0000022307,0.0000022172,0.0000022149,0.0000022220,0.0000022291, -0.0000022317,0.0000022356,0.0000022630,0.0000022817,0.0000022894, -0.0000023018,0.0000023116,0.0000023205,0.0000023175,0.0000023086, -0.0000022878,0.0000022659,0.0000022544,0.0000022523,0.0000022483, -0.0000022440,0.0000022399,0.0000022383,0.0000022493,0.0000022662, -0.0000022804,0.0000022907,0.0000022950,0.0000022968,0.0000022946, -0.0000022881,0.0000022845,0.0000022874,0.0000022927,0.0000022966, -0.0000023006,0.0000023043,0.0000023164,0.0000023344,0.0000023462, -0.0000023546,0.0000023575,0.0000023481,0.0000023370,0.0000023289, -0.0000023217,0.0000023203,0.0000023214,0.0000023201,0.0000023175, -0.0000023152,0.0000023121,0.0000023091,0.0000023084,0.0000023094, -0.0000023113,0.0000023122,0.0000023115,0.0000023103,0.0000023099, -0.0000023112,0.0000023127,0.0000023140,0.0000023146,0.0000023138, -0.0000023113,0.0000023087,0.0000023045,0.0000022994,0.0000022941, -0.0000022904,0.0000022877,0.0000022852,0.0000022849,0.0000022852, -0.0000022865,0.0000022893,0.0000022924,0.0000022941,0.0000022962, -0.0000022987,0.0000023025,0.0000023099,0.0000023156,0.0000023150, -0.0000023099,0.0000023076,0.0000023057,0.0000022949,0.0000022765, -0.0000022503,0.0000022187,0.0000022165,0.0000022268,0.0000022220, -0.0000022167,0.0000022240,0.0000022172,0.0000021824,0.0000021642, -0.0000021741,0.0000021912,0.0000022030,0.0000022129,0.0000022216, -0.0000022276,0.0000022332,0.0000022399,0.0000022422,0.0000022377, -0.0000022295,0.0000022238,0.0000022214,0.0000022214,0.0000022243, -0.0000022291,0.0000022316,0.0000022315,0.0000022326,0.0000022381, -0.0000022480,0.0000022599,0.0000022694,0.0000022716,0.0000022666, -0.0000022584,0.0000022497,0.0000022359,0.0000022174,0.0000022040, -0.0000021994,0.0000022013,0.0000022067,0.0000022100,0.0000022106, -0.0000022146,0.0000022233,0.0000022327,0.0000022402,0.0000022463, -0.0000022519,0.0000022555,0.0000022564,0.0000022554,0.0000022532, -0.0000022501,0.0000022481,0.0000022475,0.0000022417,0.0000022333, -0.0000022301,0.0000022330,0.0000022363,0.0000022364,0.0000022370, -0.0000022396,0.0000022412,0.0000022411,0.0000022445,0.0000022548, -0.0000022682,0.0000022794,0.0000022858,0.0000022887,0.0000022893, -0.0000022886,0.0000022875,0.0000022861,0.0000022853,0.0000022858, -0.0000022863,0.0000022864,0.0000022864,0.0000022863,0.0000022860, -0.0000022855,0.0000022843,0.0000022831,0.0000022832,0.0000022853, -0.0000022885,0.0000022913,0.0000022941,0.0000022967,0.0000022992, -0.0000023016,0.0000023037,0.0000023065,0.0000023103,0.0000023157, -0.0000023221,0.0000023281,0.0000023328,0.0000023367,0.0000023401, -0.0000023417,0.0000023417,0.0000023400,0.0000023378,0.0000023326, -0.0000023265,0.0000023209,0.0000023165,0.0000023143,0.0000023137, -0.0000023145,0.0000023166,0.0000023185,0.0000023220,0.0000023281, -0.0000023356,0.0000023430,0.0000023499,0.0000023552,0.0000023582, -0.0000023583,0.0000023565,0.0000023539,0.0000023497,0.0000023451, -0.0000023430,0.0000023450,0.0000023500,0.0000023537,0.0000023548, -0.0000023550,0.0000023553,0.0000023546,0.0000023519,0.0000023489, -0.0000023476,0.0000023485,0.0000023507,0.0000023530,0.0000023549, -0.0000023566,0.0000023579,0.0000023587,0.0000023594,0.0000023597, -0.0000023593,0.0000023588,0.0000023592,0.0000023609,0.0000023627, -0.0000023639,0.0000023648,0.0000023662,0.0000023695,0.0000023749, -0.0000023803,0.0000023839,0.0000023851,0.0000023843,0.0000023819, -0.0000023805,0.0000023811,0.0000023834,0.0000023870,0.0000023909, -0.0000023947,0.0000023972,0.0000023984,0.0000023984,0.0000023969, -0.0000023938,0.0000023893,0.0000023835,0.0000023765,0.0000023691, -0.0000023620,0.0000023555,0.0000023498,0.0000023450,0.0000023409, -0.0000023367,0.0000023318,0.0000023263,0.0000023205,0.0000023147, -0.0000023099,0.0000023069,0.0000023056,0.0000023048,0.0000023027, -0.0000022987,0.0000022945,0.0000022916,0.0000022894,0.0000022870, -0.0000022849,0.0000022838,0.0000022830,0.0000022809,0.0000022767, -0.0000022718,0.0000022703,0.0000022722,0.0000022762,0.0000022789, -0.0000022786,0.0000022768,0.0000022760,0.0000022771,0.0000022790, -0.0000022792,0.0000022786,0.0000022764,0.0000022732,0.0000022697, -0.0000022656,0.0000022613,0.0000022569,0.0000022525,0.0000022484, -0.0000022447,0.0000022415,0.0000022383,0.0000022348,0.0000022312, -0.0000022278,0.0000022249,0.0000022228,0.0000022212,0.0000022201, -0.0000022199,0.0000022207,0.0000022217,0.0000022230,0.0000022241, -0.0000022245,0.0000022237,0.0000022222,0.0000022214,0.0000022208, -0.0000022200,0.0000022193,0.0000022187,0.0000022182,0.0000022179, -0.0000022177,0.0000022182,0.0000022192,0.0000022189,0.0000022207, -0.0000022217,0.0000022220,0.0000022232,0.0000022239,0.0000022247, -0.0000022262,0.0000022282,0.0000022305,0.0000022326,0.0000022344, -0.0000022356,0.0000022363,0.0000022360,0.0000022350,0.0000022338, -0.0000022328,0.0000022319,0.0000022309,0.0000022297,0.0000022285, -0.0000022269,0.0000022252,0.0000022236,0.0000022232,0.0000022240, -0.0000022265,0.0000022298,0.0000022331,0.0000022349,0.0000022356, -0.0000022359,0.0000022372,0.0000022400,0.0000022434,0.0000022460, -0.0000022485,0.0000022511,0.0000022530,0.0000022540,0.0000022537, -0.0000022496,0.0000022385,0.0000022218,0.0000022046,0.0000021955, -0.0000021949,0.0000021960,0.0000021967,0.0000021977,0.0000022020, -0.0000022086,0.0000022146,0.0000022215,0.0000022314,0.0000022425, -0.0000022539,0.0000022649,0.0000022732,0.0000022789,0.0000022813, -0.0000022811,0.0000022796,0.0000022794,0.0000022803,0.0000022811, -0.0000022820,0.0000022829,0.0000022805,0.0000022846,0.0000023079, -0.0000023295,0.0000023356,0.0000023334,0.0000023167,0.0000022974, -0.0000022886,0.0000022771,0.0000022560,0.0000022384,0.0000022333, -0.0000022330,0.0000022325,0.0000022294,0.0000022232,0.0000022167, -0.0000022106,0.0000022037,0.0000021970,0.0000021915,0.0000021885, -0.0000021878,0.0000021873,0.0000021863,0.0000021873,0.0000021926, -0.0000022023,0.0000022135,0.0000022217,0.0000022256,0.0000022285, -0.0000022317,0.0000022371,0.0000022447,0.0000022512,0.0000022533, -0.0000022503,0.0000022387,0.0000022231,0.0000022131,0.0000022119, -0.0000022156,0.0000022213,0.0000022259,0.0000022298,0.0000022342, -0.0000022378,0.0000022398,0.0000022414,0.0000022439,0.0000022481, -0.0000022533,0.0000022590,0.0000022650,0.0000022704,0.0000022741, -0.0000022766,0.0000022765,0.0000022731,0.0000022662,0.0000022576, -0.0000022496,0.0000022420,0.0000022318,0.0000022165,0.0000021976, -0.0000021804,0.0000021708,0.0000021739,0.0000021912,0.0000022133, -0.0000022237,0.0000022208,0.0000022154,0.0000022239,0.0000022580, -0.0000022890,0.0000022891,0.0000022574,0.0000022232,0.0000022054, -0.0000022017,0.0000022011,0.0000021962,0.0000021853,0.0000021721, -0.0000021630,0.0000021606,0.0000021620,0.0000021652,0.0000021678, -0.0000021690,0.0000021700,0.0000021720,0.0000021728,0.0000021707, -0.0000021665,0.0000021625,0.0000021581,0.0000021531,0.0000021474, -0.0000021421,0.0000021379,0.0000021345,0.0000021324,0.0000021302, -0.0000021273,0.0000021255,0.0000021251,0.0000021260,0.0000021287, -0.0000021334,0.0000021378,0.0000021414,0.0000021449,0.0000021479, -0.0000021513,0.0000021569,0.0000021648,0.0000021751,0.0000021871, -0.0000021993,0.0000022103,0.0000022179,0.0000022221,0.0000022252, -0.0000022292,0.0000022350,0.0000022409,0.0000022459,0.0000022513, -0.0000022574,0.0000022615,0.0000022620,0.0000022606,0.0000022593, -0.0000022596,0.0000022609,0.0000022611,0.0000022560,0.0000022431, -0.0000022267,0.0000022134,0.0000022041,0.0000021948,0.0000021820, -0.0000021663,0.0000021500,0.0000021356,0.0000021233,0.0000021123, -0.0000021027,0.0000020956,0.0000020925,0.0000020926,0.0000020947, -0.0000020973,0.0000020987,0.0000020987,0.0000020991,0.0000021019, -0.0000021080,0.0000021178,0.0000021306,0.0000021421,0.0000021479, -0.0000021466,0.0000021408,0.0000021310,0.0000021218,0.0000021158, -0.0000021134,0.0000021126,0.0000021121,0.0000021122,0.0000021155, -0.0000021254,0.0000021414,0.0000021565,0.0000021619,0.0000021599, -0.0000021498,0.0000021376,0.0000021260,0.0000021161,0.0000021087, -0.0000021034,0.0000020992,0.0000020954,0.0000020942,0.0000020984, -0.0000021093,0.0000021264,0.0000021472,0.0000021669,0.0000021804, -0.0000021875,0.0000021912,0.0000021945,0.0000021969,0.0000021967, -0.0000021948,0.0000021945,0.0000021997,0.0000022130,0.0000022321, -0.0000022528,0.0000022710,0.0000022844,0.0000022901,0.0000022890, -0.0000022852,0.0000022841,0.0000022886,0.0000023012,0.0000023207, -0.0000023441,0.0000023683,0.0000023898,0.0000024066,0.0000024194, -0.0000024294,0.0000024374,0.0000024441,0.0000024505,0.0000024562, -0.0000024590,0.0000024559,0.0000024516,0.0000024447,0.0000024386, -0.0000024356,0.0000024345,0.0000024340,0.0000024326,0.0000024291, -0.0000024234,0.0000024170,0.0000024111,0.0000024071,0.0000024055, -0.0000024040,0.0000024043,0.0000024054,0.0000024075,0.0000024098, -0.0000024111,0.0000024109,0.0000024087,0.0000024049,0.0000024005, -0.0000023976,0.0000023978,0.0000024031,0.0000024128,0.0000024219, -0.0000024259,0.0000024260,0.0000024235,0.0000024185,0.0000024121, -0.0000024056,0.0000024000,0.0000023938,0.0000023837,0.0000023698, -0.0000023545,0.0000023390,0.0000023230,0.0000023078,0.0000022948, -0.0000022833,0.0000022743,0.0000022711,0.0000022732,0.0000022764, -0.0000022774,0.0000022758,0.0000022700,0.0000022609,0.0000022512, -0.0000022416,0.0000022324,0.0000022243,0.0000022166,0.0000022081, -0.0000021979,0.0000021881,0.0000021825,0.0000021825,0.0000021875, -0.0000021963,0.0000022057,0.0000022150,0.0000022237,0.0000022303, -0.0000022344,0.0000022369,0.0000022388,0.0000022414,0.0000022459, -0.0000022539,0.0000022666,0.0000022827,0.0000023000,0.0000023162, -0.0000023292,0.0000023377,0.0000023402,0.0000023362,0.0000023331, -0.0000023262,0.0000023193,0.0000023123,0.0000023060,0.0000023006, -0.0000022959,0.0000022923,0.0000022885,0.0000022860,0.0000022854, -0.0000022866,0.0000022889,0.0000022907,0.0000022918,0.0000022911, -0.0000022890,0.0000022854,0.0000022799,0.0000022737,0.0000022670, -0.0000022605,0.0000022530,0.0000022449,0.0000022376,0.0000022328, -0.0000022288,0.0000022250,0.0000022229,0.0000022236,0.0000022256, -0.0000022281,0.0000022295,0.0000022301,0.0000022307,0.0000022319, -0.0000022336,0.0000022356,0.0000022366,0.0000022358,0.0000022360, -0.0000022367,0.0000022358,0.0000022340,0.0000022318,0.0000022291, -0.0000022264,0.0000022225,0.0000022189,0.0000022169,0.0000022134, -0.0000022093,0.0000022047,0.0000022005,0.0000021961,0.0000021917, -0.0000021877,0.0000021837,0.0000021786,0.0000021744,0.0000021707, -0.0000021677,0.0000021653,0.0000021646,0.0000021656,0.0000021682, -0.0000021715,0.0000021749,0.0000021778,0.0000021800,0.0000021807, -0.0000021804,0.0000021788,0.0000021755,0.0000021708,0.0000021658, -0.0000021603,0.0000021544,0.0000021485,0.0000021422,0.0000021351, -0.0000021284,0.0000021227,0.0000021174,0.0000021128,0.0000021090, -0.0000021051,0.0000021014,0.0000020987,0.0000020970,0.0000020965, -0.0000020970,0.0000020985,0.0000021004,0.0000021023,0.0000021044, -0.0000021069,0.0000021087,0.0000021094,0.0000021093,0.0000021086, -0.0000021071,0.0000021054,0.0000021033,0.0000021007,0.0000020981, -0.0000020955,0.0000020933,0.0000020906,0.0000020866,0.0000020818, -0.0000020769,0.0000020735,0.0000020722,0.0000020720,0.0000020735, -0.0000020749,0.0000020760,0.0000020767,0.0000020767,0.0000020763, -0.0000020760,0.0000020755,0.0000020742,0.0000020732,0.0000020724, -0.0000020715,0.0000020704,0.0000020693,0.0000020686,0.0000020687, -0.0000020686,0.0000020682,0.0000020687,0.0000020698,0.0000020717, -0.0000020743,0.0000020773,0.0000020798,0.0000020805,0.0000020785, -0.0000020742,0.0000020695,0.0000020661,0.0000020658,0.0000020657, -0.0000020663,0.0000020673,0.0000020680,0.0000020683,0.0000020688, -0.0000020697,0.0000020714,0.0000020740,0.0000020775,0.0000020828, -0.0000020892,0.0000020938,0.0000020948,0.0000020921,0.0000020862, -0.0000020798,0.0000020757,0.0000020738,0.0000020736,0.0000020745, -0.0000020765,0.0000020785,0.0000020791,0.0000020784,0.0000020779, -0.0000020795,0.0000020828,0.0000020840,0.0000020827,0.0000020843, -0.0000020993,0.0000021239,0.0000021397,0.0000021419,0.0000021410, -0.0000021470,0.0000021586,0.0000021655,0.0000021658,0.0000021645, -0.0000021645,0.0000021646,0.0000021600,0.0000021504,0.0000021401, -0.0000021313,0.0000021243,0.0000021158,0.0000021076,0.0000021060, -0.0000021083,0.0000021058,0.0000020940,0.0000020801,0.0000020708, -0.0000020659,0.0000020641,0.0000020636,0.0000020634,0.0000020645, -0.0000020679,0.0000020731,0.0000020795,0.0000020857,0.0000020911, -0.0000020951,0.0000020969,0.0000020976,0.0000020975,0.0000020964, -0.0000020944,0.0000020916,0.0000020881,0.0000020840,0.0000020806, -0.0000020788,0.0000020781,0.0000020785,0.0000020803,0.0000020831, -0.0000020859,0.0000020879,0.0000020892,0.0000020917,0.0000020957, -0.0000020992,0.0000020996,0.0000020964,0.0000020908,0.0000020833, -0.0000020730,0.0000020623,0.0000020565,0.0000020556,0.0000020549, -0.0000020536,0.0000020531,0.0000020531,0.0000020533,0.0000020547, -0.0000020574,0.0000020599,0.0000020608,0.0000020605,0.0000020592, -0.0000020569,0.0000020535,0.0000020499,0.0000020465,0.0000020434, -0.0000020407,0.0000020390,0.0000020385,0.0000020385,0.0000020383, -0.0000020382,0.0000020392,0.0000020419,0.0000020463,0.0000020524, -0.0000020589,0.0000020644,0.0000020688,0.0000020718,0.0000020728, -0.0000020726,0.0000020724,0.0000020731,0.0000020754,0.0000020782, -0.0000020809,0.0000020833,0.0000020858,0.0000020885,0.0000020918, -0.0000020959,0.0000021001,0.0000021035,0.0000021022,0.0000020925, -0.0000020760,0.0000020622,0.0000020588,0.0000020603,0.0000020677, -0.0000020826,0.0000021048,0.0000021300,0.0000021511,0.0000021659, -0.0000021768,0.0000021855,0.0000021916,0.0000021946,0.0000021953, -0.0000021953,0.0000021954,0.0000021962,0.0000021981,0.0000022013, -0.0000022052,0.0000022085,0.0000022095,0.0000022072,0.0000021995, -0.0000021893,0.0000021844,0.0000021860,0.0000021891,0.0000021817, -0.0000021616,0.0000021417,0.0000021328,0.0000021323,0.0000021353, -0.0000021428,0.0000021546,0.0000021679,0.0000021788,0.0000021848, -0.0000021796,0.0000021833,0.0000021869,0.0000021900,0.0000021932, -0.0000021981,0.0000022005,0.0000021963,0.0000021817,0.0000021638, -0.0000021509,0.0000021451,0.0000021429,0.0000021404,0.0000021363, -0.0000021316,0.0000021287,0.0000021297,0.0000021315,0.0000021332, -0.0000021357,0.0000021382,0.0000021397,0.0000021403,0.0000021405, -0.0000021411,0.0000021424,0.0000021442,0.0000021465,0.0000021490, -0.0000021517,0.0000021557,0.0000021585,0.0000021602,0.0000021614, -0.0000021624,0.0000021630,0.0000021633,0.0000021637,0.0000021644, -0.0000021646,0.0000021652,0.0000021657,0.0000021659,0.0000021647, -0.0000021622,0.0000021597,0.0000021581,0.0000021572,0.0000021567, -0.0000021554,0.0000021536,0.0000021519,0.0000021500,0.0000021480, -0.0000021461,0.0000021448,0.0000021437,0.0000021430,0.0000021428, -0.0000021429,0.0000021432,0.0000021432,0.0000021434,0.0000021439, -0.0000021447,0.0000021454,0.0000021460,0.0000021470,0.0000021482, -0.0000021506,0.0000021540,0.0000021576,0.0000021602,0.0000021627, -0.0000021647,0.0000021657,0.0000021656,0.0000021644,0.0000021626, -0.0000021613,0.0000021611,0.0000021619,0.0000021629,0.0000021635, -0.0000021645,0.0000021665,0.0000021685,0.0000021705,0.0000021729, -0.0000021762,0.0000021791,0.0000021817,0.0000021837,0.0000021826, -0.0000021796,0.0000021758,0.0000021721,0.0000021698,0.0000021695, -0.0000021697,0.0000021704,0.0000021723,0.0000021746,0.0000021758, -0.0000021757,0.0000021746,0.0000021729,0.0000021702,0.0000021661, -0.0000021606,0.0000021554,0.0000021515,0.0000021500,0.0000021520, -0.0000021553,0.0000021588,0.0000021627,0.0000021665,0.0000021690, -0.0000021709,0.0000021730,0.0000021746,0.0000021756,0.0000021760, -0.0000021759,0.0000021751,0.0000021741,0.0000021732,0.0000021721, -0.0000021710,0.0000021698,0.0000021695,0.0000021711,0.0000021750, -0.0000021789,0.0000021817,0.0000021836,0.0000021856,0.0000021879, -0.0000021907,0.0000021914,0.0000021886,0.0000021831,0.0000021767, -0.0000021706,0.0000021653,0.0000021612,0.0000021576,0.0000021536, -0.0000021509,0.0000021491,0.0000021466,0.0000021438,0.0000021429, -0.0000021435,0.0000021440,0.0000021455,0.0000021495,0.0000021546, -0.0000021610,0.0000021687,0.0000021780,0.0000021886,0.0000021995, -0.0000022091,0.0000022164,0.0000022207,0.0000022230,0.0000022265, -0.0000022341,0.0000022461,0.0000022599,0.0000022718,0.0000022798, -0.0000022834,0.0000022842,0.0000022841,0.0000022847,0.0000022877, -0.0000022929,0.0000022984,0.0000023026,0.0000023045,0.0000023045, -0.0000023022,0.0000022974,0.0000022912,0.0000022859,0.0000022832, -0.0000022822,0.0000022826,0.0000022839,0.0000022859,0.0000022880, -0.0000022892,0.0000022904,0.0000022912,0.0000022907,0.0000022886, -0.0000022852,0.0000022812,0.0000022768,0.0000022727,0.0000022707, -0.0000022703,0.0000022717,0.0000022766,0.0000022839,0.0000022925, -0.0000023010,0.0000023080,0.0000023109,0.0000023124,0.0000023119, -0.0000023108,0.0000023104,0.0000023108,0.0000023112,0.0000023115, -0.0000023112,0.0000023102,0.0000023093,0.0000023088,0.0000023087, -0.0000023090,0.0000023095,0.0000023103,0.0000023109,0.0000023113, -0.0000023114,0.0000023115,0.0000023116,0.0000023116,0.0000023113, -0.0000023107,0.0000023097,0.0000023085,0.0000023072,0.0000023057, -0.0000023040,0.0000023028,0.0000023025,0.0000023024,0.0000023022, -0.0000023021,0.0000023021,0.0000023023,0.0000023032,0.0000023054, -0.0000023084,0.0000023112,0.0000023130,0.0000023133,0.0000023121, -0.0000023088,0.0000023040,0.0000022987,0.0000022935,0.0000022887, -0.0000022848,0.0000022823,0.0000022808,0.0000022799,0.0000022797, -0.0000022806,0.0000022820,0.0000022831,0.0000022837,0.0000022842, -0.0000022834,0.0000022819,0.0000022799,0.0000022774,0.0000022746, -0.0000022724,0.0000022711,0.0000022700,0.0000022690,0.0000022685, -0.0000022686,0.0000022687,0.0000022690,0.0000022694,0.0000022693, -0.0000022693,0.0000022688,0.0000022675,0.0000022657,0.0000022635, -0.0000022608,0.0000022575,0.0000022539,0.0000022502,0.0000022461, -0.0000022415,0.0000022365,0.0000022326,0.0000022305,0.0000022290, -0.0000022276,0.0000022259,0.0000022235,0.0000022194,0.0000022130, -0.0000022039,0.0000021937,0.0000021852,0.0000021796,0.0000021768, -0.0000021747,0.0000021721,0.0000021691,0.0000021669,0.0000021649, -0.0000021628,0.0000021605,0.0000021579,0.0000021554,0.0000021539, -0.0000021530,0.0000021519,0.0000021505,0.0000021483,0.0000021452, -0.0000021406,0.0000021355,0.0000021312,0.0000021279,0.0000021259, -0.0000021247,0.0000021239,0.0000021229,0.0000021215,0.0000021196, -0.0000021175,0.0000021152,0.0000021122,0.0000021077,0.0000021024, -0.0000020973,0.0000020939,0.0000020917,0.0000020902,0.0000020904, -0.0000020921,0.0000020954,0.0000021023,0.0000021178,0.0000021437, -0.0000021723,0.0000021915,0.0000021969,0.0000021967,0.0000021975, -0.0000022029,0.0000022100,0.0000022150,0.0000022174,0.0000022187, -0.0000022204,0.0000022223,0.0000022234,0.0000022231,0.0000022204, -0.0000022159,0.0000022103,0.0000022046,0.0000021994,0.0000021948, -0.0000021920,0.0000021920,0.0000021966,0.0000022057,0.0000022168, -0.0000022264,0.0000022322,0.0000022346,0.0000022347,0.0000022342, -0.0000022350,0.0000022367,0.0000022395,0.0000022432,0.0000022469, -0.0000022499,0.0000022519,0.0000022529,0.0000022529,0.0000022525, -0.0000022521,0.0000022527,0.0000022555,0.0000022606,0.0000022660, -0.0000022682,0.0000022675,0.0000022657,0.0000022630,0.0000022585, -0.0000022534,0.0000022490,0.0000022459,0.0000022418,0.0000022361, -0.0000022337,0.0000022350,0.0000022394,0.0000022431,0.0000022435, -0.0000022382,0.0000022248,0.0000022155,0.0000022168,0.0000022239, -0.0000022300,0.0000022315,0.0000022469,0.0000022738,0.0000022849, -0.0000022954,0.0000023067,0.0000023172,0.0000023211,0.0000023169, -0.0000023050,0.0000022819,0.0000022638,0.0000022565,0.0000022523, -0.0000022445,0.0000022383,0.0000022325,0.0000022369,0.0000022508, -0.0000022649,0.0000022799,0.0000022909,0.0000022955,0.0000022977, -0.0000022953,0.0000022885,0.0000022854,0.0000022883,0.0000022930, -0.0000022956,0.0000022979,0.0000023006,0.0000023113,0.0000023277, -0.0000023399,0.0000023484,0.0000023531,0.0000023473,0.0000023355, -0.0000023280,0.0000023188,0.0000023125,0.0000023124,0.0000023138, -0.0000023139,0.0000023120,0.0000023088,0.0000023062,0.0000023061, -0.0000023076,0.0000023100,0.0000023124,0.0000023138,0.0000023146, -0.0000023168,0.0000023200,0.0000023217,0.0000023211,0.0000023190, -0.0000023158,0.0000023115,0.0000023068,0.0000023023,0.0000022980, -0.0000022936,0.0000022901,0.0000022871,0.0000022844,0.0000022838, -0.0000022847,0.0000022861,0.0000022893,0.0000022932,0.0000022952, -0.0000022968,0.0000022994,0.0000023022,0.0000023084,0.0000023158, -0.0000023166,0.0000023115,0.0000023079,0.0000023072,0.0000023004, -0.0000022842,0.0000022630,0.0000022302,0.0000022140,0.0000022233, -0.0000022255,0.0000022175,0.0000022208,0.0000022268,0.0000022049, -0.0000021713,0.0000021684,0.0000021837,0.0000021966,0.0000022060, -0.0000022148,0.0000022219,0.0000022266,0.0000022317,0.0000022370, -0.0000022371,0.0000022310,0.0000022233,0.0000022188,0.0000022179, -0.0000022192,0.0000022232,0.0000022277,0.0000022301,0.0000022304, -0.0000022313,0.0000022358,0.0000022447,0.0000022555,0.0000022641, -0.0000022675,0.0000022648,0.0000022584,0.0000022505,0.0000022383, -0.0000022207,0.0000022048,0.0000021975,0.0000021983,0.0000022039, -0.0000022085,0.0000022097,0.0000022134,0.0000022229,0.0000022342, -0.0000022426,0.0000022480,0.0000022531,0.0000022575,0.0000022591, -0.0000022583,0.0000022564,0.0000022526,0.0000022488,0.0000022468, -0.0000022405,0.0000022308,0.0000022255,0.0000022273,0.0000022315, -0.0000022328,0.0000022328,0.0000022347,0.0000022380,0.0000022397, -0.0000022404,0.0000022441,0.0000022509,0.0000022582,0.0000022640, -0.0000022680,0.0000022704,0.0000022717,0.0000022723,0.0000022721, -0.0000022720,0.0000022720,0.0000022716,0.0000022709,0.0000022702, -0.0000022695,0.0000022686,0.0000022677,0.0000022663,0.0000022655, -0.0000022658,0.0000022680,0.0000022719,0.0000022768,0.0000022831, -0.0000022895,0.0000022946,0.0000022980,0.0000023000,0.0000023011, -0.0000023016,0.0000023027,0.0000023053,0.0000023092,0.0000023141, -0.0000023200,0.0000023264,0.0000023321,0.0000023361,0.0000023380, -0.0000023385,0.0000023364,0.0000023343,0.0000023302,0.0000023258, -0.0000023221,0.0000023195,0.0000023185,0.0000023188,0.0000023189, -0.0000023198,0.0000023217,0.0000023260,0.0000023321,0.0000023393, -0.0000023466,0.0000023521,0.0000023551,0.0000023556,0.0000023544, -0.0000023525,0.0000023503,0.0000023508,0.0000023543,0.0000023580, -0.0000023588,0.0000023574,0.0000023555,0.0000023538,0.0000023510, -0.0000023475,0.0000023458,0.0000023461,0.0000023481,0.0000023512, -0.0000023544,0.0000023568,0.0000023585,0.0000023597,0.0000023602, -0.0000023602,0.0000023599,0.0000023589,0.0000023576,0.0000023571, -0.0000023576,0.0000023586,0.0000023590,0.0000023594,0.0000023608, -0.0000023641,0.0000023688,0.0000023735,0.0000023766,0.0000023782, -0.0000023789,0.0000023784,0.0000023775,0.0000023776,0.0000023787, -0.0000023808,0.0000023832,0.0000023856,0.0000023875,0.0000023886, -0.0000023888,0.0000023881,0.0000023859,0.0000023823,0.0000023772, -0.0000023711,0.0000023645,0.0000023578,0.0000023514,0.0000023455, -0.0000023404,0.0000023358,0.0000023309,0.0000023256,0.0000023202, -0.0000023150,0.0000023105,0.0000023072,0.0000023053,0.0000023043, -0.0000023031,0.0000023006,0.0000022970,0.0000022938,0.0000022915, -0.0000022897,0.0000022882,0.0000022875,0.0000022873,0.0000022861, -0.0000022827,0.0000022783,0.0000022754,0.0000022763,0.0000022799, -0.0000022825,0.0000022829,0.0000022815,0.0000022801,0.0000022798, -0.0000022802,0.0000022797,0.0000022774,0.0000022739,0.0000022698, -0.0000022651,0.0000022601,0.0000022551,0.0000022502,0.0000022455, -0.0000022413,0.0000022376,0.0000022348,0.0000022329,0.0000022311, -0.0000022290,0.0000022266,0.0000022237,0.0000022205,0.0000022178, -0.0000022151,0.0000022124,0.0000022101,0.0000022086,0.0000022078, -0.0000022076,0.0000022082,0.0000022087,0.0000022082,0.0000022066, -0.0000022053,0.0000022048,0.0000022042,0.0000022038,0.0000022038, -0.0000022043,0.0000022051,0.0000022063,0.0000022082,0.0000022108, -0.0000022137,0.0000022169,0.0000022199,0.0000022220,0.0000022245, -0.0000022255,0.0000022261,0.0000022280,0.0000022300,0.0000022316, -0.0000022333,0.0000022349,0.0000022364,0.0000022374,0.0000022375, -0.0000022365,0.0000022351,0.0000022336,0.0000022322,0.0000022308, -0.0000022291,0.0000022273,0.0000022253,0.0000022227,0.0000022198, -0.0000022178,0.0000022173,0.0000022192,0.0000022235,0.0000022286, -0.0000022323,0.0000022343,0.0000022344,0.0000022339,0.0000022348, -0.0000022375,0.0000022411,0.0000022448,0.0000022480,0.0000022503, -0.0000022515,0.0000022512,0.0000022492,0.0000022443,0.0000022369, -0.0000022220,0.0000022055,0.0000021966,0.0000021961,0.0000021969, -0.0000021969,0.0000021976,0.0000022007,0.0000022048,0.0000022096, -0.0000022169,0.0000022267,0.0000022377,0.0000022495,0.0000022608, -0.0000022716,0.0000022797,0.0000022823,0.0000022815,0.0000022787, -0.0000022769,0.0000022778,0.0000022794,0.0000022801,0.0000022795, -0.0000022777,0.0000022868,0.0000023131,0.0000023305,0.0000023341, -0.0000023292,0.0000023106,0.0000022945,0.0000022839,0.0000022630, -0.0000022376,0.0000022272,0.0000022280,0.0000022307,0.0000022308, -0.0000022267,0.0000022198,0.0000022127,0.0000022055,0.0000021984, -0.0000021926,0.0000021890,0.0000021870,0.0000021847,0.0000021834, -0.0000021860,0.0000021939,0.0000022049,0.0000022143,0.0000022199, -0.0000022232,0.0000022241,0.0000022257,0.0000022314,0.0000022413, -0.0000022498,0.0000022531,0.0000022513,0.0000022417,0.0000022259, -0.0000022131,0.0000022102,0.0000022145,0.0000022227,0.0000022298, -0.0000022347,0.0000022395,0.0000022436,0.0000022448,0.0000022441, -0.0000022437,0.0000022452,0.0000022480,0.0000022510,0.0000022543, -0.0000022585,0.0000022639,0.0000022696,0.0000022742,0.0000022766, -0.0000022770,0.0000022743,0.0000022679,0.0000022590,0.0000022497, -0.0000022405,0.0000022295,0.0000022137,0.0000021940,0.0000021769, -0.0000021699,0.0000021739,0.0000021927,0.0000022155,0.0000022249, -0.0000022191,0.0000022138,0.0000022276,0.0000022628,0.0000022897, -0.0000022832,0.0000022500,0.0000022167,0.0000022017,0.0000022003, -0.0000021988,0.0000021914,0.0000021793,0.0000021674,0.0000021602, -0.0000021587,0.0000021617,0.0000021651,0.0000021672,0.0000021687, -0.0000021703,0.0000021708,0.0000021694,0.0000021662,0.0000021612, -0.0000021555,0.0000021498,0.0000021446,0.0000021402,0.0000021369, -0.0000021348,0.0000021342,0.0000021327,0.0000021295,0.0000021273, -0.0000021265,0.0000021274,0.0000021308,0.0000021358,0.0000021400, -0.0000021433,0.0000021462,0.0000021488,0.0000021524,0.0000021578, -0.0000021649,0.0000021738,0.0000021844,0.0000021959,0.0000022070, -0.0000022155,0.0000022205,0.0000022237,0.0000022276,0.0000022331, -0.0000022388,0.0000022438,0.0000022495,0.0000022561,0.0000022606, -0.0000022613,0.0000022594,0.0000022582,0.0000022588,0.0000022607, -0.0000022608,0.0000022541,0.0000022383,0.0000022209,0.0000022085, -0.0000022004,0.0000021909,0.0000021777,0.0000021621,0.0000021467, -0.0000021328,0.0000021200,0.0000021067,0.0000020941,0.0000020849, -0.0000020807,0.0000020804,0.0000020823,0.0000020862,0.0000020901, -0.0000020926,0.0000020939,0.0000020959,0.0000020998,0.0000021063, -0.0000021161,0.0000021288,0.0000021400,0.0000021453,0.0000021437, -0.0000021374,0.0000021269,0.0000021168,0.0000021101,0.0000021072, -0.0000021072,0.0000021081,0.0000021096,0.0000021135,0.0000021232, -0.0000021388,0.0000021543,0.0000021611,0.0000021593,0.0000021499, -0.0000021388,0.0000021287,0.0000021200,0.0000021127,0.0000021077, -0.0000021039,0.0000021009,0.0000020995,0.0000021009,0.0000021059, -0.0000021186,0.0000021378,0.0000021576,0.0000021725,0.0000021815, -0.0000021866,0.0000021899,0.0000021918,0.0000021918,0.0000021900, -0.0000021890,0.0000021933,0.0000022055,0.0000022244,0.0000022449, -0.0000022634,0.0000022779,0.0000022860,0.0000022869,0.0000022854, -0.0000022844,0.0000022875,0.0000022973,0.0000023131,0.0000023330, -0.0000023553,0.0000023771,0.0000023958,0.0000024104,0.0000024216, -0.0000024302,0.0000024372,0.0000024438,0.0000024496,0.0000024534, -0.0000024549,0.0000024534,0.0000024492,0.0000024460,0.0000024426, -0.0000024404,0.0000024393,0.0000024377,0.0000024348,0.0000024301, -0.0000024238,0.0000024168,0.0000024105,0.0000024058,0.0000024033, -0.0000024027,0.0000024027,0.0000024043,0.0000024058,0.0000024062, -0.0000024052,0.0000024026,0.0000023993,0.0000023970,0.0000023969, -0.0000024002,0.0000024076,0.0000024166,0.0000024234,0.0000024259, -0.0000024258,0.0000024235,0.0000024187,0.0000024117,0.0000024044, -0.0000023980,0.0000023908,0.0000023797,0.0000023652,0.0000023501, -0.0000023347,0.0000023183,0.0000023033,0.0000022917,0.0000022835, -0.0000022794,0.0000022791,0.0000022805,0.0000022816,0.0000022812, -0.0000022767,0.0000022682,0.0000022582,0.0000022482,0.0000022388, -0.0000022305,0.0000022223,0.0000022128,0.0000022016,0.0000021909, -0.0000021840,0.0000021817,0.0000021832,0.0000021872,0.0000021928, -0.0000021992,0.0000022063,0.0000022132,0.0000022181,0.0000022204, -0.0000022207,0.0000022194,0.0000022177,0.0000022174,0.0000022200, -0.0000022259,0.0000022352,0.0000022484,0.0000022651,0.0000022831, -0.0000022992,0.0000023122,0.0000023209,0.0000023251,0.0000023239, -0.0000023203,0.0000023163,0.0000023106,0.0000023043,0.0000022981, -0.0000022921,0.0000022874,0.0000022849,0.0000022854,0.0000022865, -0.0000022889,0.0000022911,0.0000022923,0.0000022929,0.0000022916, -0.0000022878,0.0000022806,0.0000022715,0.0000022619,0.0000022532, -0.0000022441,0.0000022354,0.0000022288,0.0000022238,0.0000022189, -0.0000022144,0.0000022117,0.0000022106,0.0000022110,0.0000022119, -0.0000022127,0.0000022141,0.0000022160,0.0000022191,0.0000022232, -0.0000022277,0.0000022311,0.0000022339,0.0000022367,0.0000022368, -0.0000022368,0.0000022361,0.0000022345,0.0000022323,0.0000022287, -0.0000022248,0.0000022213,0.0000022172,0.0000022119,0.0000022059, -0.0000022005,0.0000021952,0.0000021903,0.0000021862,0.0000021828, -0.0000021792,0.0000021754,0.0000021725,0.0000021702,0.0000021692, -0.0000021693,0.0000021703,0.0000021719,0.0000021736,0.0000021752, -0.0000021764,0.0000021761,0.0000021741,0.0000021703,0.0000021650, -0.0000021585,0.0000021507,0.0000021426,0.0000021350,0.0000021283, -0.0000021227,0.0000021180,0.0000021137,0.0000021102,0.0000021078, -0.0000021055,0.0000021032,0.0000021014,0.0000020992,0.0000020968, -0.0000020948,0.0000020931,0.0000020922,0.0000020925,0.0000020941, -0.0000020967,0.0000020992,0.0000021016,0.0000021037,0.0000021054, -0.0000021064,0.0000021067,0.0000021065,0.0000021055,0.0000021039, -0.0000021023,0.0000021006,0.0000020985,0.0000020963,0.0000020945, -0.0000020928,0.0000020908,0.0000020872,0.0000020830,0.0000020791, -0.0000020757,0.0000020732,0.0000020718,0.0000020714,0.0000020716, -0.0000020730,0.0000020744,0.0000020752,0.0000020758,0.0000020760, -0.0000020750,0.0000020732,0.0000020710,0.0000020688,0.0000020666, -0.0000020649,0.0000020638,0.0000020636,0.0000020638,0.0000020635, -0.0000020637,0.0000020643,0.0000020644,0.0000020645,0.0000020654, -0.0000020677,0.0000020712,0.0000020748,0.0000020777,0.0000020774, -0.0000020759,0.0000020725,0.0000020684,0.0000020649,0.0000020641, -0.0000020638,0.0000020649,0.0000020668,0.0000020687,0.0000020700, -0.0000020706,0.0000020708,0.0000020716,0.0000020748,0.0000020810, -0.0000020874,0.0000020902,0.0000020887,0.0000020827,0.0000020758, -0.0000020705,0.0000020679,0.0000020675,0.0000020688,0.0000020715, -0.0000020746,0.0000020769,0.0000020772,0.0000020761,0.0000020764, -0.0000020787,0.0000020797,0.0000020789,0.0000020820,0.0000021002, -0.0000021252,0.0000021385,0.0000021392,0.0000021402,0.0000021495, -0.0000021609,0.0000021653,0.0000021649,0.0000021645,0.0000021645, -0.0000021617,0.0000021536,0.0000021436,0.0000021347,0.0000021268, -0.0000021168,0.0000021069,0.0000021046,0.0000021067,0.0000021024, -0.0000020871,0.0000020708,0.0000020616,0.0000020574,0.0000020551, -0.0000020542,0.0000020537,0.0000020542,0.0000020568,0.0000020614, -0.0000020670,0.0000020725,0.0000020783,0.0000020835,0.0000020863, -0.0000020872,0.0000020875,0.0000020872,0.0000020862,0.0000020846, -0.0000020830,0.0000020804,0.0000020773,0.0000020750,0.0000020738, -0.0000020737,0.0000020749,0.0000020774,0.0000020807,0.0000020836, -0.0000020854,0.0000020866,0.0000020884,0.0000020916,0.0000020944, -0.0000020948,0.0000020917,0.0000020864,0.0000020799,0.0000020709, -0.0000020606,0.0000020544,0.0000020529,0.0000020521,0.0000020504, -0.0000020494,0.0000020494,0.0000020497,0.0000020512,0.0000020537, -0.0000020556,0.0000020560,0.0000020554,0.0000020539,0.0000020512, -0.0000020478,0.0000020442,0.0000020404,0.0000020369,0.0000020339, -0.0000020315,0.0000020304,0.0000020311,0.0000020327,0.0000020340, -0.0000020353,0.0000020370,0.0000020396,0.0000020437,0.0000020488, -0.0000020539,0.0000020584,0.0000020620,0.0000020638,0.0000020638, -0.0000020631,0.0000020628,0.0000020643,0.0000020678,0.0000020720, -0.0000020753,0.0000020776,0.0000020791,0.0000020806,0.0000020834, -0.0000020881,0.0000020937,0.0000020982,0.0000020976,0.0000020906, -0.0000020779,0.0000020648,0.0000020590,0.0000020584,0.0000020602, -0.0000020666,0.0000020792,0.0000020984,0.0000021215,0.0000021431, -0.0000021594,0.0000021708,0.0000021802,0.0000021881,0.0000021931, -0.0000021948,0.0000021952,0.0000021960,0.0000021978,0.0000022005, -0.0000022036,0.0000022067,0.0000022087,0.0000022077,0.0000021999, -0.0000021868,0.0000021779,0.0000021792,0.0000021857,0.0000021850, -0.0000021702,0.0000021476,0.0000021323,0.0000021287,0.0000021304, -0.0000021380,0.0000021497,0.0000021626,0.0000021733,0.0000021682, -0.0000021750,0.0000021790,0.0000021826,0.0000021863,0.0000021891, -0.0000021921,0.0000021948,0.0000021943,0.0000021873,0.0000021741, -0.0000021602,0.0000021514,0.0000021493,0.0000021502,0.0000021517, -0.0000021527,0.0000021531,0.0000021531,0.0000021530,0.0000021527, -0.0000021521,0.0000021511,0.0000021505,0.0000021510,0.0000021527, -0.0000021545,0.0000021564,0.0000021584,0.0000021611,0.0000021643, -0.0000021668,0.0000021685,0.0000021696,0.0000021704,0.0000021712, -0.0000021716,0.0000021718,0.0000021722,0.0000021732,0.0000021745, -0.0000021759,0.0000021781,0.0000021794,0.0000021788,0.0000021762, -0.0000021732,0.0000021715,0.0000021711,0.0000021713,0.0000021710, -0.0000021697,0.0000021682,0.0000021671,0.0000021663,0.0000021656, -0.0000021648,0.0000021643,0.0000021638,0.0000021631,0.0000021624, -0.0000021610,0.0000021586,0.0000021562,0.0000021541,0.0000021520, -0.0000021501,0.0000021489,0.0000021482,0.0000021479,0.0000021488, -0.0000021501,0.0000021530,0.0000021566,0.0000021606,0.0000021647, -0.0000021682,0.0000021700,0.0000021704,0.0000021704,0.0000021692, -0.0000021682,0.0000021677,0.0000021672,0.0000021665,0.0000021661, -0.0000021663,0.0000021673,0.0000021684,0.0000021700,0.0000021730, -0.0000021768,0.0000021801,0.0000021827,0.0000021840,0.0000021838, -0.0000021822,0.0000021810,0.0000021810,0.0000021817,0.0000021825, -0.0000021831,0.0000021838,0.0000021850,0.0000021857,0.0000021857, -0.0000021848,0.0000021834,0.0000021813,0.0000021780,0.0000021726, -0.0000021661,0.0000021599,0.0000021542,0.0000021515,0.0000021522, -0.0000021543,0.0000021570,0.0000021602,0.0000021632,0.0000021654, -0.0000021678,0.0000021706,0.0000021726,0.0000021734,0.0000021737, -0.0000021737,0.0000021734,0.0000021727,0.0000021719,0.0000021710, -0.0000021693,0.0000021672,0.0000021661,0.0000021666,0.0000021688, -0.0000021713,0.0000021739,0.0000021773,0.0000021824,0.0000021882, -0.0000021925,0.0000021937,0.0000021930,0.0000021907,0.0000021865, -0.0000021814,0.0000021763,0.0000021718,0.0000021673,0.0000021635, -0.0000021608,0.0000021583,0.0000021544,0.0000021502,0.0000021473, -0.0000021454,0.0000021445,0.0000021445,0.0000021455,0.0000021470, -0.0000021491,0.0000021514,0.0000021552,0.0000021623,0.0000021732, -0.0000021870,0.0000022014,0.0000022135,0.0000022215,0.0000022256, -0.0000022277,0.0000022311,0.0000022392,0.0000022522,0.0000022668, -0.0000022783,0.0000022840,0.0000022848,0.0000022840,0.0000022835, -0.0000022843,0.0000022874,0.0000022919,0.0000022962,0.0000022996, -0.0000023009,0.0000023003,0.0000022973,0.0000022930,0.0000022883, -0.0000022844,0.0000022826,0.0000022824,0.0000022836,0.0000022855, -0.0000022873,0.0000022889,0.0000022902,0.0000022911,0.0000022909, -0.0000022904,0.0000022895,0.0000022882,0.0000022865,0.0000022842, -0.0000022808,0.0000022769,0.0000022753,0.0000022741,0.0000022760, -0.0000022808,0.0000022888,0.0000022984,0.0000023073,0.0000023119, -0.0000023138,0.0000023136,0.0000023127,0.0000023120,0.0000023118, -0.0000023115,0.0000023105,0.0000023090,0.0000023075,0.0000023057, -0.0000023039,0.0000023027,0.0000023020,0.0000023017,0.0000023018, -0.0000023021,0.0000023030,0.0000023043,0.0000023055,0.0000023062, -0.0000023065,0.0000023064,0.0000023061,0.0000023055,0.0000023044, -0.0000023028,0.0000023014,0.0000023010,0.0000023010,0.0000023014, -0.0000023021,0.0000023034,0.0000023050,0.0000023068,0.0000023090, -0.0000023111,0.0000023123,0.0000023124,0.0000023106,0.0000023067, -0.0000023012,0.0000022947,0.0000022885,0.0000022831,0.0000022787, -0.0000022757,0.0000022747,0.0000022746,0.0000022752,0.0000022764, -0.0000022783,0.0000022798,0.0000022804,0.0000022802,0.0000022793, -0.0000022780,0.0000022768,0.0000022756,0.0000022743,0.0000022729, -0.0000022716,0.0000022706,0.0000022698,0.0000022690,0.0000022684, -0.0000022677,0.0000022669,0.0000022659,0.0000022653,0.0000022652, -0.0000022654,0.0000022657,0.0000022656,0.0000022653,0.0000022646, -0.0000022631,0.0000022603,0.0000022560,0.0000022508,0.0000022455, -0.0000022401,0.0000022349,0.0000022308,0.0000022283,0.0000022264, -0.0000022234,0.0000022194,0.0000022143,0.0000022071,0.0000021971, -0.0000021851,0.0000021749,0.0000021692,0.0000021668,0.0000021654, -0.0000021633,0.0000021610,0.0000021593,0.0000021580,0.0000021564, -0.0000021547,0.0000021525,0.0000021505,0.0000021495,0.0000021491, -0.0000021485,0.0000021467,0.0000021442,0.0000021411,0.0000021369, -0.0000021319,0.0000021268,0.0000021227,0.0000021198,0.0000021182, -0.0000021178,0.0000021179,0.0000021181,0.0000021179,0.0000021172, -0.0000021161,0.0000021141,0.0000021106,0.0000021062,0.0000021021, -0.0000020990,0.0000020963,0.0000020943,0.0000020942,0.0000020958, -0.0000020994,0.0000021058,0.0000021197,0.0000021441,0.0000021734, -0.0000021945,0.0000022016,0.0000022018,0.0000022017,0.0000022043, -0.0000022083,0.0000022111,0.0000022121,0.0000022120,0.0000022120, -0.0000022126,0.0000022134,0.0000022134,0.0000022120,0.0000022090, -0.0000022055,0.0000022027,0.0000022004,0.0000021978,0.0000021958, -0.0000021987,0.0000022081,0.0000022204,0.0000022302,0.0000022352, -0.0000022363,0.0000022356,0.0000022341,0.0000022313,0.0000022293, -0.0000022294,0.0000022316,0.0000022351,0.0000022399,0.0000022450, -0.0000022490,0.0000022522,0.0000022546,0.0000022558,0.0000022560, -0.0000022562,0.0000022567,0.0000022589,0.0000022634,0.0000022678, -0.0000022691,0.0000022672,0.0000022643,0.0000022592,0.0000022526, -0.0000022469,0.0000022432,0.0000022395,0.0000022350,0.0000022316, -0.0000022315,0.0000022338,0.0000022368,0.0000022385,0.0000022374, -0.0000022293,0.0000022186,0.0000022154,0.0000022198,0.0000022260, -0.0000022294,0.0000022350,0.0000022618,0.0000022799,0.0000022880, -0.0000022997,0.0000023110,0.0000023197,0.0000023188,0.0000023140, -0.0000022974,0.0000022778,0.0000022650,0.0000022583,0.0000022492, -0.0000022399,0.0000022313,0.0000022279,0.0000022378,0.0000022509, -0.0000022636,0.0000022793,0.0000022906,0.0000022963,0.0000022991, -0.0000022971,0.0000022907,0.0000022878,0.0000022899,0.0000022931, -0.0000022939,0.0000022952,0.0000022979,0.0000023072,0.0000023213, -0.0000023328,0.0000023410,0.0000023464,0.0000023443,0.0000023331, -0.0000023251,0.0000023166,0.0000023067,0.0000023029,0.0000023036, -0.0000023062,0.0000023074,0.0000023053,0.0000023028,0.0000023025, -0.0000023051,0.0000023089,0.0000023132,0.0000023171,0.0000023199, -0.0000023228,0.0000023256,0.0000023264,0.0000023237,0.0000023197, -0.0000023152,0.0000023098,0.0000023049,0.0000023013,0.0000022984, -0.0000022950,0.0000022916,0.0000022883,0.0000022854,0.0000022842, -0.0000022845,0.0000022862,0.0000022892,0.0000022933,0.0000022958, -0.0000022971,0.0000022996,0.0000023024,0.0000023073,0.0000023149, -0.0000023178,0.0000023133,0.0000023082,0.0000023072,0.0000023042, -0.0000022911,0.0000022726,0.0000022444,0.0000022154,0.0000022173, -0.0000022264,0.0000022203,0.0000022170,0.0000022281,0.0000022244, -0.0000021915,0.0000021704,0.0000021769,0.0000021907,0.0000022002, -0.0000022088,0.0000022165,0.0000022218,0.0000022253,0.0000022299, -0.0000022337,0.0000022324,0.0000022264,0.0000022200,0.0000022168, -0.0000022161,0.0000022172,0.0000022212,0.0000022264,0.0000022295, -0.0000022297,0.0000022297,0.0000022325,0.0000022402,0.0000022497, -0.0000022572,0.0000022614,0.0000022616,0.0000022576,0.0000022511, -0.0000022406,0.0000022241,0.0000022067,0.0000021966,0.0000021948, -0.0000022005,0.0000022067,0.0000022096,0.0000022135,0.0000022232, -0.0000022356,0.0000022447,0.0000022499,0.0000022548,0.0000022594, -0.0000022615,0.0000022611,0.0000022593,0.0000022552,0.0000022500, -0.0000022467,0.0000022401,0.0000022292,0.0000022216,0.0000022218, -0.0000022261,0.0000022290,0.0000022299,0.0000022311,0.0000022338, -0.0000022368,0.0000022383,0.0000022392,0.0000022403,0.0000022422, -0.0000022450,0.0000022479,0.0000022502,0.0000022523,0.0000022545, -0.0000022564,0.0000022581,0.0000022590,0.0000022588,0.0000022583, -0.0000022577,0.0000022565,0.0000022550,0.0000022533,0.0000022512, -0.0000022495,0.0000022484,0.0000022489,0.0000022513,0.0000022557, -0.0000022628,0.0000022717,0.0000022804,0.0000022877,0.0000022932, -0.0000022968,0.0000022984,0.0000022986,0.0000022981,0.0000022976, -0.0000022982,0.0000023007,0.0000023056,0.0000023122,0.0000023192, -0.0000023254,0.0000023305,0.0000023338,0.0000023350,0.0000023336, -0.0000023322,0.0000023297,0.0000023273,0.0000023251,0.0000023235, -0.0000023222,0.0000023208,0.0000023202,0.0000023205,0.0000023234, -0.0000023290,0.0000023363,0.0000023434,0.0000023490,0.0000023523, -0.0000023536,0.0000023529,0.0000023533,0.0000023556,0.0000023604, -0.0000023633,0.0000023632,0.0000023606,0.0000023568,0.0000023524, -0.0000023480,0.0000023440,0.0000023431,0.0000023439,0.0000023467, -0.0000023508,0.0000023548,0.0000023576,0.0000023594,0.0000023604, -0.0000023604,0.0000023598,0.0000023589,0.0000023575,0.0000023555, -0.0000023539,0.0000023536,0.0000023543,0.0000023549,0.0000023553, -0.0000023564,0.0000023590,0.0000023628,0.0000023666,0.0000023693, -0.0000023710,0.0000023725,0.0000023737,0.0000023741,0.0000023740, -0.0000023742,0.0000023750,0.0000023764,0.0000023780,0.0000023793, -0.0000023798,0.0000023796,0.0000023786,0.0000023767,0.0000023741, -0.0000023705,0.0000023659,0.0000023605,0.0000023549,0.0000023491, -0.0000023435,0.0000023380,0.0000023325,0.0000023268,0.0000023212, -0.0000023161,0.0000023121,0.0000023090,0.0000023068,0.0000023054, -0.0000023041,0.0000023020,0.0000022987,0.0000022954,0.0000022929, -0.0000022910,0.0000022894,0.0000022889,0.0000022893,0.0000022896, -0.0000022880,0.0000022844,0.0000022812,0.0000022805,0.0000022831, -0.0000022861,0.0000022869,0.0000022859,0.0000022844,0.0000022837, -0.0000022831,0.0000022810,0.0000022766,0.0000022711,0.0000022658, -0.0000022611,0.0000022560,0.0000022499,0.0000022439,0.0000022383, -0.0000022337,0.0000022304,0.0000022285,0.0000022276,0.0000022273, -0.0000022266,0.0000022252,0.0000022230,0.0000022203,0.0000022166, -0.0000022125,0.0000022086,0.0000022044,0.0000022001,0.0000021961, -0.0000021929,0.0000021905,0.0000021893,0.0000021889,0.0000021882, -0.0000021870,0.0000021859,0.0000021856,0.0000021855,0.0000021851, -0.0000021850,0.0000021854,0.0000021861,0.0000021871,0.0000021888, -0.0000021915,0.0000021953,0.0000021998,0.0000022046,0.0000022097, -0.0000022146,0.0000022190,0.0000022224,0.0000022254,0.0000022283, -0.0000022308,0.0000022330,0.0000022349,0.0000022365,0.0000022379, -0.0000022385,0.0000022381,0.0000022372,0.0000022354,0.0000022336, -0.0000022316,0.0000022298,0.0000022280,0.0000022258,0.0000022232, -0.0000022199,0.0000022166,0.0000022139,0.0000022135,0.0000022163, -0.0000022214,0.0000022266,0.0000022311,0.0000022332,0.0000022328, -0.0000022317,0.0000022317,0.0000022339,0.0000022381,0.0000022429, -0.0000022471,0.0000022498,0.0000022499,0.0000022473,0.0000022432, -0.0000022405,0.0000022352,0.0000022234,0.0000022077,0.0000021985, -0.0000021969,0.0000021971,0.0000021970,0.0000021976,0.0000021996, -0.0000022026,0.0000022074,0.0000022149,0.0000022240,0.0000022336, -0.0000022434,0.0000022549,0.0000022684,0.0000022788,0.0000022826, -0.0000022820,0.0000022782,0.0000022753,0.0000022758,0.0000022775, -0.0000022780,0.0000022762,0.0000022756,0.0000022912,0.0000023178, -0.0000023306,0.0000023321,0.0000023248,0.0000023065,0.0000022916, -0.0000022746,0.0000022451,0.0000022230,0.0000022210,0.0000022254, -0.0000022289,0.0000022281,0.0000022234,0.0000022174,0.0000022105, -0.0000022030,0.0000021971,0.0000021928,0.0000021893,0.0000021858, -0.0000021844,0.0000021879,0.0000021968,0.0000022073,0.0000022141, -0.0000022171,0.0000022180,0.0000022175,0.0000022176,0.0000022230, -0.0000022340,0.0000022444,0.0000022493,0.0000022490,0.0000022434, -0.0000022306,0.0000022164,0.0000022105,0.0000022130,0.0000022222, -0.0000022321,0.0000022388,0.0000022439,0.0000022483,0.0000022501, -0.0000022496,0.0000022482,0.0000022481,0.0000022490,0.0000022502, -0.0000022515,0.0000022530,0.0000022551,0.0000022580,0.0000022617, -0.0000022660,0.0000022706,0.0000022738,0.0000022743,0.0000022726, -0.0000022667,0.0000022576,0.0000022476,0.0000022379,0.0000022265, -0.0000022102,0.0000021905,0.0000021743,0.0000021692,0.0000021749, -0.0000021952,0.0000022175,0.0000022246,0.0000022178,0.0000022153, -0.0000022328,0.0000022648,0.0000022830,0.0000022756,0.0000022420, -0.0000022113,0.0000021997,0.0000021980,0.0000021949,0.0000021866, -0.0000021743,0.0000021631,0.0000021582,0.0000021586,0.0000021620, -0.0000021652,0.0000021673,0.0000021682,0.0000021683,0.0000021679, -0.0000021659,0.0000021607,0.0000021537,0.0000021477,0.0000021430, -0.0000021397,0.0000021376,0.0000021371,0.0000021377,0.0000021366, -0.0000021339,0.0000021317,0.0000021304,0.0000021309,0.0000021339, -0.0000021382,0.0000021416,0.0000021445,0.0000021471,0.0000021501, -0.0000021542,0.0000021593,0.0000021652,0.0000021726,0.0000021818, -0.0000021924,0.0000022035,0.0000022127,0.0000022182,0.0000022215, -0.0000022254,0.0000022307,0.0000022361,0.0000022413,0.0000022476, -0.0000022546,0.0000022593,0.0000022598,0.0000022577,0.0000022562, -0.0000022573,0.0000022600,0.0000022602,0.0000022522,0.0000022345, -0.0000022163,0.0000022049,0.0000021973,0.0000021875,0.0000021737, -0.0000021581,0.0000021433,0.0000021300,0.0000021162,0.0000021005, -0.0000020850,0.0000020741,0.0000020694,0.0000020688,0.0000020700, -0.0000020738,0.0000020793,0.0000020847,0.0000020884,0.0000020906, -0.0000020932,0.0000020976,0.0000021042,0.0000021138,0.0000021260, -0.0000021368,0.0000021422,0.0000021405,0.0000021337,0.0000021223, -0.0000021114,0.0000021053,0.0000021029,0.0000021035,0.0000021053, -0.0000021077,0.0000021119,0.0000021210,0.0000021360,0.0000021519, -0.0000021604,0.0000021581,0.0000021505,0.0000021413,0.0000021326, -0.0000021244,0.0000021179,0.0000021136,0.0000021106,0.0000021079, -0.0000021048,0.0000021027,0.0000021048,0.0000021138,0.0000021292, -0.0000021475,0.0000021634,0.0000021743,0.0000021803,0.0000021837, -0.0000021856,0.0000021854,0.0000021837,0.0000021823,0.0000021860, -0.0000021977,0.0000022161,0.0000022366,0.0000022561,0.0000022723, -0.0000022829,0.0000022864,0.0000022861,0.0000022852,0.0000022869, -0.0000022938,0.0000023059,0.0000023224,0.0000023422,0.0000023634, -0.0000023830,0.0000023992,0.0000024120,0.0000024219,0.0000024297, -0.0000024364,0.0000024426,0.0000024480,0.0000024515,0.0000024532, -0.0000024551,0.0000024534,0.0000024514,0.0000024485,0.0000024457, -0.0000024431,0.0000024404,0.0000024368,0.0000024313,0.0000024244, -0.0000024172,0.0000024112,0.0000024068,0.0000024042,0.0000024030, -0.0000024030,0.0000024028,0.0000024010,0.0000023991,0.0000023968, -0.0000023952,0.0000023953,0.0000023979,0.0000024033,0.0000024111, -0.0000024189,0.0000024243,0.0000024260,0.0000024256,0.0000024230, -0.0000024176,0.0000024099,0.0000024021,0.0000023954,0.0000023871, -0.0000023754,0.0000023615,0.0000023470,0.0000023311,0.0000023145, -0.0000023004,0.0000022914,0.0000022872,0.0000022855,0.0000022845, -0.0000022842,0.0000022840,0.0000022812,0.0000022741,0.0000022639, -0.0000022530,0.0000022431,0.0000022349,0.0000022266,0.0000022168, -0.0000022054,0.0000021948,0.0000021874,0.0000021841,0.0000021839, -0.0000021858,0.0000021882,0.0000021913,0.0000021953,0.0000021999, -0.0000022040,0.0000022064,0.0000022066,0.0000022051,0.0000022027, -0.0000022011,0.0000022005,0.0000022001,0.0000022002,0.0000022024, -0.0000022078,0.0000022175,0.0000022305,0.0000022458,0.0000022624, -0.0000022783,0.0000022915,0.0000023012,0.0000023075,0.0000023102, -0.0000023081,0.0000023052,0.0000023023,0.0000022982,0.0000022940, -0.0000022913,0.0000022893,0.0000022888,0.0000022901,0.0000022909, -0.0000022919,0.0000022926,0.0000022920,0.0000022889,0.0000022823, -0.0000022724,0.0000022611,0.0000022501,0.0000022400,0.0000022315, -0.0000022242,0.0000022186,0.0000022131,0.0000022081,0.0000022035, -0.0000022003,0.0000021988,0.0000021981,0.0000021979,0.0000021984, -0.0000021999,0.0000022026,0.0000022067,0.0000022122,0.0000022180, -0.0000022241,0.0000022296,0.0000022336,0.0000022363,0.0000022361, -0.0000022354,0.0000022340,0.0000022317,0.0000022288,0.0000022248, -0.0000022196,0.0000022132,0.0000022061,0.0000021995,0.0000021935, -0.0000021884,0.0000021842,0.0000021805,0.0000021769,0.0000021737, -0.0000021711,0.0000021695,0.0000021687,0.0000021680,0.0000021670, -0.0000021655,0.0000021633,0.0000021602,0.0000021563,0.0000021513, -0.0000021454,0.0000021388,0.0000021324,0.0000021264,0.0000021209, -0.0000021163,0.0000021130,0.0000021114,0.0000021107,0.0000021095, -0.0000021077,0.0000021061,0.0000021042,0.0000021020,0.0000020998, -0.0000020973,0.0000020945,0.0000020921,0.0000020899,0.0000020879, -0.0000020870,0.0000020877,0.0000020903,0.0000020934,0.0000020966, -0.0000020998,0.0000021023,0.0000021039,0.0000021046,0.0000021048, -0.0000021044,0.0000021032,0.0000021016,0.0000020998,0.0000020979, -0.0000020959,0.0000020941,0.0000020929,0.0000020914,0.0000020888, -0.0000020858,0.0000020827,0.0000020814,0.0000020799,0.0000020775, -0.0000020750,0.0000020727,0.0000020717,0.0000020713,0.0000020714, -0.0000020722,0.0000020735,0.0000020740,0.0000020737,0.0000020729, -0.0000020712,0.0000020690,0.0000020676,0.0000020670,0.0000020663, -0.0000020661,0.0000020660,0.0000020663,0.0000020669,0.0000020668, -0.0000020661,0.0000020651,0.0000020637,0.0000020632,0.0000020631, -0.0000020659,0.0000020707,0.0000020757,0.0000020788,0.0000020793, -0.0000020756,0.0000020704,0.0000020661,0.0000020628,0.0000020622, -0.0000020638,0.0000020660,0.0000020686,0.0000020704,0.0000020704, -0.0000020691,0.0000020690,0.0000020729,0.0000020798,0.0000020848, -0.0000020844,0.0000020792,0.0000020718,0.0000020655,0.0000020622, -0.0000020618,0.0000020634,0.0000020664,0.0000020706,0.0000020743, -0.0000020752,0.0000020737,0.0000020731,0.0000020747,0.0000020758, -0.0000020757,0.0000020819,0.0000021041,0.0000021282,0.0000021377, -0.0000021378,0.0000021416,0.0000021528,0.0000021622,0.0000021647, -0.0000021646,0.0000021644,0.0000021622,0.0000021555,0.0000021460, -0.0000021367,0.0000021282,0.0000021171,0.0000021066,0.0000021035, -0.0000021049,0.0000020982,0.0000020798,0.0000020629,0.0000020554, -0.0000020528,0.0000020505,0.0000020486,0.0000020477,0.0000020478, -0.0000020497,0.0000020536,0.0000020583,0.0000020630,0.0000020682, -0.0000020739,0.0000020778,0.0000020791,0.0000020796,0.0000020800, -0.0000020798,0.0000020792,0.0000020787,0.0000020780,0.0000020765, -0.0000020746,0.0000020729,0.0000020718,0.0000020719,0.0000020735, -0.0000020762,0.0000020791,0.0000020813,0.0000020826,0.0000020835, -0.0000020852,0.0000020875,0.0000020892,0.0000020890,0.0000020860, -0.0000020810,0.0000020756,0.0000020686,0.0000020600,0.0000020538, -0.0000020517,0.0000020501,0.0000020476,0.0000020464,0.0000020467, -0.0000020474,0.0000020487,0.0000020502,0.0000020511,0.0000020510, -0.0000020503,0.0000020490,0.0000020470,0.0000020446,0.0000020418, -0.0000020385,0.0000020348,0.0000020312,0.0000020275,0.0000020240, -0.0000020227,0.0000020234,0.0000020256,0.0000020282,0.0000020310, -0.0000020340,0.0000020372,0.0000020406,0.0000020440,0.0000020474, -0.0000020504,0.0000020524,0.0000020533,0.0000020533,0.0000020532, -0.0000020536,0.0000020558,0.0000020602,0.0000020656,0.0000020698, -0.0000020716,0.0000020716,0.0000020715,0.0000020734,0.0000020786, -0.0000020857,0.0000020915,0.0000020916,0.0000020890,0.0000020812, -0.0000020710,0.0000020616,0.0000020578,0.0000020569,0.0000020580, -0.0000020626,0.0000020726,0.0000020889,0.0000021096,0.0000021308, -0.0000021489,0.0000021626,0.0000021735,0.0000021829,0.0000021901, -0.0000021941,0.0000021960,0.0000021979,0.0000022001,0.0000022022, -0.0000022046,0.0000022070,0.0000022066,0.0000021994,0.0000021856, -0.0000021743,0.0000021729,0.0000021796,0.0000021840,0.0000021761, -0.0000021543,0.0000021337,0.0000021261,0.0000021266,0.0000021337, -0.0000021450,0.0000021576,0.0000021519,0.0000021625,0.0000021707, -0.0000021754,0.0000021780,0.0000021805,0.0000021830,0.0000021851, -0.0000021869,0.0000021876,0.0000021864,0.0000021806,0.0000021723, -0.0000021651,0.0000021610,0.0000021597,0.0000021601,0.0000021613, -0.0000021629,0.0000021646,0.0000021663,0.0000021672,0.0000021672, -0.0000021664,0.0000021655,0.0000021651,0.0000021650,0.0000021648, -0.0000021654,0.0000021681,0.0000021716,0.0000021747,0.0000021768, -0.0000021788,0.0000021805,0.0000021814,0.0000021813,0.0000021809, -0.0000021805,0.0000021796,0.0000021795,0.0000021803,0.0000021817, -0.0000021832,0.0000021830,0.0000021805,0.0000021772,0.0000021750, -0.0000021742,0.0000021741,0.0000021738,0.0000021728,0.0000021717, -0.0000021709,0.0000021707,0.0000021709,0.0000021715,0.0000021729, -0.0000021750,0.0000021765,0.0000021779,0.0000021781,0.0000021789, -0.0000021767,0.0000021741,0.0000021707,0.0000021670,0.0000021629, -0.0000021590,0.0000021555,0.0000021520,0.0000021499,0.0000021491, -0.0000021508,0.0000021527,0.0000021568,0.0000021618,0.0000021661, -0.0000021689,0.0000021701,0.0000021703,0.0000021698,0.0000021695, -0.0000021693,0.0000021686,0.0000021675,0.0000021666,0.0000021658, -0.0000021656,0.0000021663,0.0000021686,0.0000021725,0.0000021760, -0.0000021783,0.0000021801,0.0000021811,0.0000021809,0.0000021801, -0.0000021802,0.0000021819,0.0000021840,0.0000021853,0.0000021863, -0.0000021876,0.0000021885,0.0000021886,0.0000021883,0.0000021874, -0.0000021860,0.0000021835,0.0000021792,0.0000021734,0.0000021667, -0.0000021603,0.0000021550,0.0000021527,0.0000021529,0.0000021545, -0.0000021565,0.0000021591,0.0000021618,0.0000021642,0.0000021669, -0.0000021697,0.0000021713,0.0000021717,0.0000021721,0.0000021726, -0.0000021728,0.0000021723,0.0000021715,0.0000021703,0.0000021679, -0.0000021654,0.0000021640,0.0000021639,0.0000021643,0.0000021651, -0.0000021671,0.0000021708,0.0000021767,0.0000021833,0.0000021881, -0.0000021903,0.0000021907,0.0000021900,0.0000021882,0.0000021855, -0.0000021829,0.0000021800,0.0000021769,0.0000021742,0.0000021716, -0.0000021684,0.0000021637,0.0000021585,0.0000021542,0.0000021508, -0.0000021482,0.0000021468,0.0000021465,0.0000021474,0.0000021486, -0.0000021491,0.0000021496,0.0000021516,0.0000021566,0.0000021648, -0.0000021765,0.0000021912,0.0000022066,0.0000022198,0.0000022277, -0.0000022302,0.0000022308,0.0000022353,0.0000022465,0.0000022613, -0.0000022740,0.0000022814,0.0000022838,0.0000022835,0.0000022823, -0.0000022817,0.0000022824,0.0000022845,0.0000022876,0.0000022911, -0.0000022943,0.0000022961,0.0000022960,0.0000022941,0.0000022910, -0.0000022878,0.0000022853,0.0000022842,0.0000022843,0.0000022850, -0.0000022859,0.0000022868,0.0000022878,0.0000022885,0.0000022892, -0.0000022897,0.0000022901,0.0000022911,0.0000022919,0.0000022917, -0.0000022904,0.0000022874,0.0000022825,0.0000022772,0.0000022746, -0.0000022751,0.0000022801,0.0000022883,0.0000022982,0.0000023073, -0.0000023129,0.0000023145,0.0000023149,0.0000023140,0.0000023129, -0.0000023115,0.0000023101,0.0000023085,0.0000023067,0.0000023044, -0.0000023018,0.0000022999,0.0000022984,0.0000022978,0.0000022978, -0.0000022988,0.0000023006,0.0000023023,0.0000023037,0.0000023049, -0.0000023058,0.0000023060,0.0000023059,0.0000023051,0.0000023038, -0.0000023028,0.0000023026,0.0000023029,0.0000023037,0.0000023051, -0.0000023070,0.0000023085,0.0000023096,0.0000023101,0.0000023100, -0.0000023081,0.0000023046,0.0000022996,0.0000022937,0.0000022871, -0.0000022808,0.0000022756,0.0000022719,0.0000022693,0.0000022683, -0.0000022687,0.0000022701,0.0000022715,0.0000022731,0.0000022750, -0.0000022766,0.0000022772,0.0000022772,0.0000022762,0.0000022746, -0.0000022730,0.0000022720,0.0000022713,0.0000022707,0.0000022699, -0.0000022691,0.0000022681,0.0000022668,0.0000022653,0.0000022636, -0.0000022621,0.0000022609,0.0000022604,0.0000022606,0.0000022614, -0.0000022627,0.0000022640,0.0000022650,0.0000022652,0.0000022641, -0.0000022613,0.0000022567,0.0000022506,0.0000022443,0.0000022381, -0.0000022326,0.0000022282,0.0000022249,0.0000022218,0.0000022170, -0.0000022100,0.0000022016,0.0000021912,0.0000021786,0.0000021662, -0.0000021581,0.0000021545,0.0000021525,0.0000021510,0.0000021499, -0.0000021491,0.0000021477,0.0000021461,0.0000021448,0.0000021443, -0.0000021444,0.0000021450,0.0000021457,0.0000021461,0.0000021453, -0.0000021431,0.0000021401,0.0000021365,0.0000021324,0.0000021278, -0.0000021231,0.0000021191,0.0000021161,0.0000021145,0.0000021147, -0.0000021156,0.0000021162,0.0000021167,0.0000021163,0.0000021146, -0.0000021114,0.0000021078,0.0000021048,0.0000021029,0.0000021017, -0.0000020999,0.0000020995,0.0000021014,0.0000021057,0.0000021136, -0.0000021288,0.0000021539,0.0000021822,0.0000022010,0.0000022065, -0.0000022065,0.0000022063,0.0000022078,0.0000022092,0.0000022093, -0.0000022078,0.0000022054,0.0000022032,0.0000022028,0.0000022036, -0.0000022052,0.0000022060,0.0000022056,0.0000022044,0.0000022035, -0.0000022029,0.0000022017,0.0000022023,0.0000022085,0.0000022197, -0.0000022296,0.0000022342,0.0000022345,0.0000022335,0.0000022311, -0.0000022287,0.0000022261,0.0000022233,0.0000022220,0.0000022230, -0.0000022266,0.0000022318,0.0000022383,0.0000022445,0.0000022494, -0.0000022527,0.0000022552,0.0000022573,0.0000022589,0.0000022606, -0.0000022622,0.0000022644,0.0000022672,0.0000022685,0.0000022679, -0.0000022642,0.0000022584,0.0000022517,0.0000022456,0.0000022412, -0.0000022380,0.0000022346,0.0000022318,0.0000022306,0.0000022308, -0.0000022318,0.0000022326,0.0000022321,0.0000022272,0.0000022190, -0.0000022142,0.0000022164,0.0000022223,0.0000022268,0.0000022291, -0.0000022476,0.0000022727,0.0000022822,0.0000022910,0.0000023019, -0.0000023128,0.0000023164,0.0000023156,0.0000023061,0.0000022890, -0.0000022751,0.0000022668,0.0000022572,0.0000022447,0.0000022334, -0.0000022244,0.0000022274,0.0000022393,0.0000022495,0.0000022627, -0.0000022785,0.0000022898,0.0000022972,0.0000023005,0.0000022989, -0.0000022936,0.0000022910,0.0000022919,0.0000022928,0.0000022920, -0.0000022922,0.0000022950,0.0000023041,0.0000023161,0.0000023260, -0.0000023333,0.0000023378,0.0000023380,0.0000023295,0.0000023201, -0.0000023126,0.0000023023,0.0000022947,0.0000022931,0.0000022950, -0.0000022984,0.0000022995,0.0000022984,0.0000022981,0.0000023011, -0.0000023066,0.0000023123,0.0000023184,0.0000023222,0.0000023245, -0.0000023262,0.0000023255,0.0000023228,0.0000023180,0.0000023133, -0.0000023085,0.0000023045,0.0000023014,0.0000022988,0.0000022958, -0.0000022927,0.0000022896,0.0000022870,0.0000022854,0.0000022854, -0.0000022870,0.0000022896,0.0000022929,0.0000022955,0.0000022969, -0.0000022992,0.0000023024,0.0000023065,0.0000023134,0.0000023179, -0.0000023152,0.0000023089,0.0000023070,0.0000023059,0.0000022967, -0.0000022798,0.0000022579,0.0000022244,0.0000022129,0.0000022237, -0.0000022243,0.0000022161,0.0000022220,0.0000022319,0.0000022157, -0.0000021829,0.0000021744,0.0000021849,0.0000021961,0.0000022041, -0.0000022116,0.0000022172,0.0000022209,0.0000022237,0.0000022276, -0.0000022303,0.0000022291,0.0000022244,0.0000022196,0.0000022168, -0.0000022157,0.0000022162,0.0000022200,0.0000022257,0.0000022291, -0.0000022291,0.0000022283,0.0000022297,0.0000022351,0.0000022428, -0.0000022496,0.0000022539,0.0000022557,0.0000022546,0.0000022500, -0.0000022418,0.0000022278,0.0000022099,0.0000021960,0.0000021927, -0.0000021967,0.0000022050,0.0000022106,0.0000022149,0.0000022237, -0.0000022358,0.0000022459,0.0000022519,0.0000022568,0.0000022610, -0.0000022634,0.0000022634,0.0000022620,0.0000022580,0.0000022520, -0.0000022469,0.0000022401,0.0000022292,0.0000022195,0.0000022167, -0.0000022204,0.0000022255,0.0000022280,0.0000022288,0.0000022303, -0.0000022328,0.0000022350,0.0000022359,0.0000022356,0.0000022359, -0.0000022377,0.0000022397,0.0000022415,0.0000022443,0.0000022482, -0.0000022519,0.0000022549,0.0000022563,0.0000022565,0.0000022562, -0.0000022552,0.0000022531,0.0000022507,0.0000022480,0.0000022447, -0.0000022416,0.0000022386,0.0000022372,0.0000022372,0.0000022386, -0.0000022425,0.0000022491,0.0000022574,0.0000022664,0.0000022755, -0.0000022837,0.0000022900,0.0000022939,0.0000022950,0.0000022941, -0.0000022918,0.0000022898,0.0000022898,0.0000022925,0.0000022973, -0.0000023041,0.0000023122,0.0000023201,0.0000023263,0.0000023306, -0.0000023331,0.0000023334,0.0000023332,0.0000023312,0.0000023286, -0.0000023264,0.0000023244,0.0000023225,0.0000023209,0.0000023207, -0.0000023231,0.0000023280,0.0000023342,0.0000023406,0.0000023463, -0.0000023500,0.0000023517,0.0000023534,0.0000023576,0.0000023632, -0.0000023666,0.0000023663,0.0000023637,0.0000023590,0.0000023527, -0.0000023463,0.0000023419,0.0000023405,0.0000023413,0.0000023445, -0.0000023492,0.0000023538,0.0000023570,0.0000023588,0.0000023596, -0.0000023593,0.0000023585,0.0000023574,0.0000023562,0.0000023544, -0.0000023524,0.0000023513,0.0000023516,0.0000023523,0.0000023529, -0.0000023537,0.0000023553,0.0000023578,0.0000023607,0.0000023631, -0.0000023651,0.0000023669,0.0000023689,0.0000023703,0.0000023707, -0.0000023705,0.0000023705,0.0000023710,0.0000023722,0.0000023732, -0.0000023734,0.0000023730,0.0000023719,0.0000023702,0.0000023680, -0.0000023654,0.0000023621,0.0000023580,0.0000023533,0.0000023483, -0.0000023427,0.0000023367,0.0000023308,0.0000023252,0.0000023199, -0.0000023153,0.0000023121,0.0000023100,0.0000023084,0.0000023068, -0.0000023046,0.0000023011,0.0000022972,0.0000022939,0.0000022915, -0.0000022895,0.0000022885,0.0000022886,0.0000022897,0.0000022902, -0.0000022886,0.0000022859,0.0000022844,0.0000022854,0.0000022885, -0.0000022905,0.0000022903,0.0000022886,0.0000022872,0.0000022863, -0.0000022841,0.0000022791,0.0000022715,0.0000022641,0.0000022586, -0.0000022540,0.0000022480,0.0000022404,0.0000022328,0.0000022272, -0.0000022234,0.0000022216,0.0000022215,0.0000022215,0.0000022206, -0.0000022177,0.0000022135,0.0000022091,0.0000022049,0.0000022005, -0.0000021958,0.0000021912,0.0000021868,0.0000021821,0.0000021771, -0.0000021724,0.0000021682,0.0000021648,0.0000021624,0.0000021605, -0.0000021590,0.0000021581,0.0000021578,0.0000021583,0.0000021586, -0.0000021593,0.0000021604,0.0000021614,0.0000021622,0.0000021635, -0.0000021654,0.0000021686,0.0000021727,0.0000021776,0.0000021835, -0.0000021903,0.0000021976,0.0000022046,0.0000022108,0.0000022164, -0.0000022216,0.0000022259,0.0000022291,0.0000022316,0.0000022336, -0.0000022352,0.0000022359,0.0000022356,0.0000022345,0.0000022331, -0.0000022314,0.0000022298,0.0000022281,0.0000022262,0.0000022241, -0.0000022214,0.0000022181,0.0000022146,0.0000022124,0.0000022121, -0.0000022152,0.0000022199,0.0000022253,0.0000022300,0.0000022319, -0.0000022310,0.0000022291,0.0000022281,0.0000022297,0.0000022345, -0.0000022409,0.0000022461,0.0000022484,0.0000022473,0.0000022429, -0.0000022385,0.0000022368,0.0000022346,0.0000022250,0.0000022111, -0.0000022016,0.0000021977,0.0000021969,0.0000021967,0.0000021972, -0.0000021990,0.0000022021,0.0000022075,0.0000022147,0.0000022225, -0.0000022300,0.0000022377,0.0000022494,0.0000022641,0.0000022768, -0.0000022833,0.0000022831,0.0000022778,0.0000022739,0.0000022741, -0.0000022759,0.0000022757,0.0000022733,0.0000022759,0.0000022967, -0.0000023215,0.0000023294,0.0000023299,0.0000023209,0.0000023032, -0.0000022867,0.0000022610,0.0000022282,0.0000022156,0.0000022179, -0.0000022238,0.0000022261,0.0000022248,0.0000022213,0.0000022170, -0.0000022104,0.0000022044,0.0000022002,0.0000021962,0.0000021920, -0.0000021902,0.0000021932,0.0000022003,0.0000022075,0.0000022117, -0.0000022127,0.0000022124,0.0000022112,0.0000022104,0.0000022139, -0.0000022235,0.0000022339,0.0000022405,0.0000022425,0.0000022414, -0.0000022346,0.0000022223,0.0000022126,0.0000022124,0.0000022205, -0.0000022316,0.0000022405,0.0000022469,0.0000022522,0.0000022550, -0.0000022551,0.0000022543,0.0000022540,0.0000022543,0.0000022546, -0.0000022541,0.0000022535,0.0000022535,0.0000022541,0.0000022554, -0.0000022571,0.0000022592,0.0000022623,0.0000022659,0.0000022691, -0.0000022699,0.0000022685,0.0000022631,0.0000022545,0.0000022450, -0.0000022352,0.0000022234,0.0000022069,0.0000021877,0.0000021726, -0.0000021688,0.0000021774,0.0000021979,0.0000022182,0.0000022241, -0.0000022183,0.0000022154,0.0000022329,0.0000022643,0.0000022820, -0.0000022715,0.0000022358,0.0000022067,0.0000021967,0.0000021950, -0.0000021913,0.0000021824,0.0000021701,0.0000021603,0.0000021573, -0.0000021592,0.0000021636,0.0000021660,0.0000021658,0.0000021654, -0.0000021657,0.0000021645,0.0000021600,0.0000021529,0.0000021466, -0.0000021420,0.0000021391,0.0000021379,0.0000021389,0.0000021405, -0.0000021401,0.0000021386,0.0000021367,0.0000021352,0.0000021351, -0.0000021374,0.0000021407,0.0000021436,0.0000021460,0.0000021484, -0.0000021517,0.0000021560,0.0000021607,0.0000021656,0.0000021719, -0.0000021798,0.0000021891,0.0000021995,0.0000022089,0.0000022155, -0.0000022197,0.0000022237,0.0000022287,0.0000022339,0.0000022394, -0.0000022461,0.0000022535,0.0000022583,0.0000022586,0.0000022561, -0.0000022543,0.0000022556,0.0000022592,0.0000022599,0.0000022514, -0.0000022325,0.0000022139,0.0000022028,0.0000021951,0.0000021845, -0.0000021700,0.0000021544,0.0000021402,0.0000021271,0.0000021123, -0.0000020947,0.0000020773,0.0000020654,0.0000020601,0.0000020589, -0.0000020595,0.0000020624,0.0000020678,0.0000020748,0.0000020812, -0.0000020853,0.0000020877,0.0000020907,0.0000020954,0.0000021019, -0.0000021109,0.0000021228,0.0000021335,0.0000021389,0.0000021370, -0.0000021292,0.0000021175,0.0000021073,0.0000021019,0.0000020997, -0.0000021005,0.0000021030,0.0000021060,0.0000021101,0.0000021185, -0.0000021332,0.0000021491,0.0000021582,0.0000021579,0.0000021525, -0.0000021443,0.0000021365,0.0000021300,0.0000021248,0.0000021212, -0.0000021185,0.0000021152,0.0000021109,0.0000021069,0.0000021058, -0.0000021087,0.0000021200,0.0000021365,0.0000021531,0.0000021655, -0.0000021733,0.0000021774,0.0000021786,0.0000021778,0.0000021758, -0.0000021746,0.0000021784,0.0000021902,0.0000022078,0.0000022284, -0.0000022489,0.0000022671,0.0000022806,0.0000022872,0.0000022872, -0.0000022859,0.0000022861,0.0000022907,0.0000023001,0.0000023133, -0.0000023300,0.0000023490,0.0000023682,0.0000023858,0.0000024005, -0.0000024120,0.0000024204,0.0000024274,0.0000024341,0.0000024407, -0.0000024474,0.0000024534,0.0000024572,0.0000024597,0.0000024587, -0.0000024567,0.0000024531,0.0000024499,0.0000024465,0.0000024427, -0.0000024379,0.0000024320,0.0000024257,0.0000024197,0.0000024144, -0.0000024105,0.0000024078,0.0000024053,0.0000024024,0.0000023992, -0.0000023964,0.0000023946,0.0000023947,0.0000023964,0.0000024005, -0.0000024067,0.0000024143,0.0000024212,0.0000024253,0.0000024264, -0.0000024255,0.0000024222,0.0000024160,0.0000024083,0.0000024008, -0.0000023933,0.0000023840,0.0000023725,0.0000023593,0.0000023448, -0.0000023285,0.0000023123,0.0000023000,0.0000022939,0.0000022914, -0.0000022890,0.0000022863,0.0000022843,0.0000022817,0.0000022760, -0.0000022677,0.0000022570,0.0000022461,0.0000022369,0.0000022281, -0.0000022183,0.0000022076,0.0000021972,0.0000021891,0.0000021848, -0.0000021841,0.0000021852,0.0000021872,0.0000021893,0.0000021914, -0.0000021933,0.0000021949,0.0000021956,0.0000021951,0.0000021933, -0.0000021910,0.0000021896,0.0000021893,0.0000021890,0.0000021881, -0.0000021869,0.0000021861,0.0000021866,0.0000021889,0.0000021933, -0.0000022010,0.0000022118,0.0000022244,0.0000022379,0.0000022516, -0.0000022643,0.0000022760,0.0000022859,0.0000022938,0.0000022991, -0.0000022996,0.0000023021,0.0000023002,0.0000022984,0.0000022961, -0.0000022942,0.0000022926,0.0000022920,0.0000022911,0.0000022902, -0.0000022875,0.0000022825,0.0000022745,0.0000022640,0.0000022533, -0.0000022434,0.0000022332,0.0000022235,0.0000022156,0.0000022097, -0.0000022038,0.0000021979,0.0000021927,0.0000021895,0.0000021874, -0.0000021860,0.0000021852,0.0000021850,0.0000021858,0.0000021887, -0.0000021934,0.0000021991,0.0000022059,0.0000022136,0.0000022212, -0.0000022269,0.0000022299,0.0000022317,0.0000022324,0.0000022310, -0.0000022284,0.0000022244,0.0000022189,0.0000022117,0.0000022040, -0.0000021966,0.0000021904,0.0000021852,0.0000021798,0.0000021744, -0.0000021694,0.0000021641,0.0000021586,0.0000021536,0.0000021493, -0.0000021454,0.0000021417,0.0000021376,0.0000021338,0.0000021307, -0.0000021283,0.0000021264,0.0000021246,0.0000021227,0.0000021204, -0.0000021176,0.0000021150,0.0000021130,0.0000021117,0.0000021110, -0.0000021100,0.0000021084,0.0000021064,0.0000021040,0.0000021016, -0.0000020992,0.0000020964,0.0000020934,0.0000020904,0.0000020873, -0.0000020843,0.0000020821,0.0000020815,0.0000020828,0.0000020859, -0.0000020892,0.0000020927,0.0000020963,0.0000020998,0.0000021022, -0.0000021033,0.0000021034,0.0000021028,0.0000021014,0.0000020993, -0.0000020969,0.0000020943,0.0000020917,0.0000020897,0.0000020880, -0.0000020859,0.0000020833,0.0000020809,0.0000020800,0.0000020805, -0.0000020806,0.0000020796,0.0000020783,0.0000020766,0.0000020749, -0.0000020732,0.0000020716,0.0000020710,0.0000020706,0.0000020699, -0.0000020692,0.0000020685,0.0000020675,0.0000020665,0.0000020666, -0.0000020668,0.0000020672,0.0000020678,0.0000020683,0.0000020691, -0.0000020696,0.0000020693,0.0000020694,0.0000020687,0.0000020665, -0.0000020638,0.0000020615,0.0000020609,0.0000020632,0.0000020686, -0.0000020756,0.0000020803,0.0000020803,0.0000020778,0.0000020727, -0.0000020674,0.0000020639,0.0000020621,0.0000020619,0.0000020647, -0.0000020686,0.0000020700,0.0000020682,0.0000020654,0.0000020663, -0.0000020721,0.0000020783,0.0000020797,0.0000020757,0.0000020681, -0.0000020610,0.0000020571,0.0000020567,0.0000020583,0.0000020618, -0.0000020667,0.0000020709,0.0000020723,0.0000020709,0.0000020703, -0.0000020720,0.0000020733,0.0000020739,0.0000020858,0.0000021117, -0.0000021328,0.0000021377,0.0000021378,0.0000021444,0.0000021560, -0.0000021633,0.0000021643,0.0000021639,0.0000021619,0.0000021563, -0.0000021477,0.0000021379,0.0000021278,0.0000021157,0.0000021057, -0.0000021032,0.0000021027,0.0000020928,0.0000020724,0.0000020571, -0.0000020523,0.0000020512,0.0000020492,0.0000020467,0.0000020448, -0.0000020447,0.0000020460,0.0000020493,0.0000020535,0.0000020576, -0.0000020622,0.0000020674,0.0000020714,0.0000020732,0.0000020738, -0.0000020743,0.0000020749,0.0000020754,0.0000020757,0.0000020761, -0.0000020760,0.0000020753,0.0000020739,0.0000020723,0.0000020714, -0.0000020717,0.0000020730,0.0000020750,0.0000020770,0.0000020785, -0.0000020794,0.0000020803,0.0000020815,0.0000020828,0.0000020831, -0.0000020824,0.0000020794,0.0000020752,0.0000020714,0.0000020671, -0.0000020606,0.0000020545,0.0000020512,0.0000020482,0.0000020447, -0.0000020436,0.0000020445,0.0000020461,0.0000020470,0.0000020474, -0.0000020475,0.0000020471,0.0000020462,0.0000020451,0.0000020436, -0.0000020416,0.0000020395,0.0000020373,0.0000020346,0.0000020310, -0.0000020269,0.0000020227,0.0000020193,0.0000020177,0.0000020176, -0.0000020190,0.0000020221,0.0000020263,0.0000020306,0.0000020339, -0.0000020362,0.0000020380,0.0000020395,0.0000020405,0.0000020412, -0.0000020420,0.0000020430,0.0000020440,0.0000020450,0.0000020475, -0.0000020525,0.0000020586,0.0000020633,0.0000020651,0.0000020644, -0.0000020627,0.0000020633,0.0000020679,0.0000020754,0.0000020826, -0.0000020867,0.0000020864,0.0000020839,0.0000020779,0.0000020693, -0.0000020606,0.0000020567,0.0000020560,0.0000020567,0.0000020610, -0.0000020689,0.0000020802,0.0000020964,0.0000021169,0.0000021371, -0.0000021538,0.0000021670,0.0000021779,0.0000021866,0.0000021926, -0.0000021969,0.0000021996,0.0000022013,0.0000022032,0.0000022053, -0.0000022047,0.0000021982,0.0000021852,0.0000021729,0.0000021691, -0.0000021723,0.0000021791,0.0000021781,0.0000021622,0.0000021390, -0.0000021262,0.0000021256,0.0000021304,0.0000021404,0.0000021352, -0.0000021454,0.0000021565,0.0000021661,0.0000021717,0.0000021736, -0.0000021743,0.0000021759,0.0000021779,0.0000021791,0.0000021791, -0.0000021779,0.0000021758,0.0000021744,0.0000021744,0.0000021748, -0.0000021748,0.0000021742,0.0000021740,0.0000021739,0.0000021737, -0.0000021737,0.0000021740,0.0000021741,0.0000021737,0.0000021733, -0.0000021733,0.0000021736,0.0000021746,0.0000021761,0.0000021783, -0.0000021803,0.0000021822,0.0000021844,0.0000021864,0.0000021869, -0.0000021862,0.0000021847,0.0000021819,0.0000021777,0.0000021728, -0.0000021688,0.0000021665,0.0000021652,0.0000021641,0.0000021616, -0.0000021581,0.0000021549,0.0000021525,0.0000021505,0.0000021490, -0.0000021477,0.0000021467,0.0000021454,0.0000021442,0.0000021436, -0.0000021449,0.0000021483,0.0000021529,0.0000021581,0.0000021638, -0.0000021692,0.0000021739,0.0000021773,0.0000021798,0.0000021810, -0.0000021809,0.0000021801,0.0000021788,0.0000021750,0.0000021707, -0.0000021654,0.0000021599,0.0000021558,0.0000021535,0.0000021533, -0.0000021557,0.0000021594,0.0000021627,0.0000021655,0.0000021672, -0.0000021684,0.0000021691,0.0000021696,0.0000021698,0.0000021691, -0.0000021677,0.0000021659,0.0000021640,0.0000021632,0.0000021639, -0.0000021665,0.0000021703,0.0000021734,0.0000021752,0.0000021760, -0.0000021760,0.0000021752,0.0000021749,0.0000021762,0.0000021787, -0.0000021810,0.0000021830,0.0000021851,0.0000021865,0.0000021865, -0.0000021856,0.0000021847,0.0000021838,0.0000021823,0.0000021796, -0.0000021755,0.0000021707,0.0000021658,0.0000021608,0.0000021568, -0.0000021552,0.0000021553,0.0000021559,0.0000021571,0.0000021590, -0.0000021610,0.0000021630,0.0000021655,0.0000021674,0.0000021679, -0.0000021678,0.0000021682,0.0000021693,0.0000021698,0.0000021696, -0.0000021687,0.0000021672,0.0000021648,0.0000021624,0.0000021610, -0.0000021606,0.0000021605,0.0000021609,0.0000021625,0.0000021657, -0.0000021704,0.0000021757,0.0000021801,0.0000021827,0.0000021839, -0.0000021845,0.0000021843,0.0000021832,0.0000021817,0.0000021802, -0.0000021794,0.0000021792,0.0000021791,0.0000021777,0.0000021736, -0.0000021686,0.0000021635,0.0000021584,0.0000021541,0.0000021512, -0.0000021496,0.0000021492,0.0000021493,0.0000021494,0.0000021500, -0.0000021518,0.0000021548,0.0000021588,0.0000021637,0.0000021710, -0.0000021830,0.0000021995,0.0000022159,0.0000022269,0.0000022313, -0.0000022321,0.0000022339,0.0000022412,0.0000022538,0.0000022672, -0.0000022773,0.0000022820,0.0000022826,0.0000022816,0.0000022798, -0.0000022785,0.0000022782,0.0000022791,0.0000022818,0.0000022857, -0.0000022894,0.0000022918,0.0000022922,0.0000022916,0.0000022897, -0.0000022876,0.0000022861,0.0000022852,0.0000022847,0.0000022846, -0.0000022849,0.0000022857,0.0000022867,0.0000022878,0.0000022888, -0.0000022902,0.0000022920,0.0000022935,0.0000022951,0.0000022955, -0.0000022943,0.0000022910,0.0000022852,0.0000022792,0.0000022771, -0.0000022776,0.0000022820,0.0000022893,0.0000022978,0.0000023059, -0.0000023118,0.0000023138,0.0000023135,0.0000023130,0.0000023114, -0.0000023095,0.0000023078,0.0000023056,0.0000023030,0.0000023005, -0.0000022987,0.0000022978,0.0000022978,0.0000022989,0.0000023005, -0.0000023025,0.0000023044,0.0000023065,0.0000023081,0.0000023092, -0.0000023099,0.0000023097,0.0000023092,0.0000023086,0.0000023083, -0.0000023081,0.0000023079,0.0000023081,0.0000023079,0.0000023082, -0.0000023066,0.0000023037,0.0000022995,0.0000022940,0.0000022879, -0.0000022821,0.0000022771,0.0000022734,0.0000022707,0.0000022691, -0.0000022686,0.0000022678,0.0000022679,0.0000022696,0.0000022717, -0.0000022736,0.0000022752,0.0000022766,0.0000022781,0.0000022788, -0.0000022788,0.0000022776,0.0000022755,0.0000022731,0.0000022713, -0.0000022698,0.0000022690,0.0000022682,0.0000022668,0.0000022654, -0.0000022637,0.0000022621,0.0000022608,0.0000022598,0.0000022592, -0.0000022590,0.0000022591,0.0000022598,0.0000022610,0.0000022624, -0.0000022636,0.0000022640,0.0000022629,0.0000022595,0.0000022542, -0.0000022472,0.0000022399,0.0000022338,0.0000022291,0.0000022245, -0.0000022194,0.0000022142,0.0000022071,0.0000021971,0.0000021856, -0.0000021739,0.0000021618,0.0000021514,0.0000021443,0.0000021402, -0.0000021380,0.0000021372,0.0000021365,0.0000021351,0.0000021336, -0.0000021334,0.0000021356,0.0000021390,0.0000021425,0.0000021445, -0.0000021450,0.0000021446,0.0000021432,0.0000021410,0.0000021379, -0.0000021343,0.0000021305,0.0000021262,0.0000021215,0.0000021176, -0.0000021146,0.0000021132,0.0000021139,0.0000021152,0.0000021160, -0.0000021161,0.0000021150,0.0000021121,0.0000021090,0.0000021071, -0.0000021065,0.0000021066,0.0000021067,0.0000021067,0.0000021081, -0.0000021127,0.0000021228,0.0000021414,0.0000021676,0.0000021926, -0.0000022070,0.0000022104,0.0000022102,0.0000022097,0.0000022096, -0.0000022090,0.0000022064,0.0000022025,0.0000021991,0.0000021973, -0.0000021973,0.0000021986,0.0000022014,0.0000022044,0.0000022057, -0.0000022056,0.0000022053,0.0000022055,0.0000022065,0.0000022108, -0.0000022191,0.0000022269,0.0000022300,0.0000022299,0.0000022283, -0.0000022265,0.0000022250,0.0000022228,0.0000022201,0.0000022173, -0.0000022158,0.0000022162,0.0000022195,0.0000022255,0.0000022326, -0.0000022408,0.0000022480,0.0000022534,0.0000022567,0.0000022593, -0.0000022618,0.0000022638,0.0000022653,0.0000022661,0.0000022661, -0.0000022661,0.0000022647,0.0000022614,0.0000022563,0.0000022504, -0.0000022448,0.0000022404,0.0000022376,0.0000022353,0.0000022329, -0.0000022315,0.0000022304,0.0000022290,0.0000022269,0.0000022253, -0.0000022215,0.0000022150,0.0000022117,0.0000022131,0.0000022190, -0.0000022249,0.0000022265,0.0000022377,0.0000022632,0.0000022768, -0.0000022840,0.0000022925,0.0000023028,0.0000023092,0.0000023103, -0.0000023082,0.0000022954,0.0000022816,0.0000022735,0.0000022660, -0.0000022531,0.0000022396,0.0000022248,0.0000022207,0.0000022297, -0.0000022395,0.0000022480,0.0000022615,0.0000022765,0.0000022884, -0.0000022978,0.0000023019,0.0000023004,0.0000022961,0.0000022939, -0.0000022941,0.0000022932,0.0000022912,0.0000022904,0.0000022926, -0.0000023006,0.0000023111,0.0000023196,0.0000023261,0.0000023293, -0.0000023293,0.0000023245,0.0000023153,0.0000023081,0.0000023006, -0.0000022925,0.0000022881,0.0000022876,0.0000022894,0.0000022918, -0.0000022928,0.0000022934,0.0000022961,0.0000023018,0.0000023086, -0.0000023152,0.0000023197,0.0000023223,0.0000023229,0.0000023217, -0.0000023193,0.0000023158,0.0000023119,0.0000023078,0.0000023039, -0.0000023005,0.0000022973,0.0000022943,0.0000022918,0.0000022894, -0.0000022872,0.0000022860,0.0000022861,0.0000022878,0.0000022900, -0.0000022924,0.0000022947,0.0000022961,0.0000022980,0.0000023016, -0.0000023055,0.0000023119,0.0000023175,0.0000023169,0.0000023102, -0.0000023069,0.0000023068,0.0000023015,0.0000022862,0.0000022682, -0.0000022383,0.0000022135,0.0000022174,0.0000022256,0.0000022187, -0.0000022159,0.0000022285,0.0000022317,0.0000022063,0.0000021804, -0.0000021810,0.0000021922,0.0000022008,0.0000022074,0.0000022129, -0.0000022170,0.0000022198,0.0000022222,0.0000022255,0.0000022278, -0.0000022271,0.0000022238,0.0000022202,0.0000022178,0.0000022164, -0.0000022167,0.0000022199,0.0000022252,0.0000022289,0.0000022295, -0.0000022285,0.0000022279,0.0000022303,0.0000022360,0.0000022420, -0.0000022459,0.0000022480,0.0000022488,0.0000022471,0.0000022418, -0.0000022313,0.0000022146,0.0000021987,0.0000021925,0.0000021950, -0.0000022035,0.0000022114,0.0000022168,0.0000022239,0.0000022347, -0.0000022457,0.0000022537,0.0000022585,0.0000022621,0.0000022647, -0.0000022657,0.0000022649,0.0000022614,0.0000022549,0.0000022480, -0.0000022410,0.0000022313,0.0000022206,0.0000022154,0.0000022170, -0.0000022217,0.0000022256,0.0000022275,0.0000022282,0.0000022289, -0.0000022296,0.0000022299,0.0000022299,0.0000022309,0.0000022331, -0.0000022356,0.0000022383,0.0000022421,0.0000022468,0.0000022508, -0.0000022537,0.0000022553,0.0000022557,0.0000022551,0.0000022534, -0.0000022507,0.0000022476,0.0000022443,0.0000022407,0.0000022368, -0.0000022334,0.0000022317,0.0000022310,0.0000022304,0.0000022312, -0.0000022338,0.0000022379,0.0000022437,0.0000022511,0.0000022600, -0.0000022695,0.0000022779,0.0000022838,0.0000022868,0.0000022872, -0.0000022854,0.0000022837,0.0000022830,0.0000022838,0.0000022866, -0.0000022915,0.0000022986,0.0000023073,0.0000023167,0.0000023251, -0.0000023309,0.0000023337,0.0000023336,0.0000023326,0.0000023308, -0.0000023291,0.0000023273,0.0000023253,0.0000023236,0.0000023232, -0.0000023249,0.0000023275,0.0000023323,0.0000023383,0.0000023436, -0.0000023475,0.0000023514,0.0000023570,0.0000023634,0.0000023672, -0.0000023680,0.0000023663,0.0000023621,0.0000023550,0.0000023470, -0.0000023413,0.0000023391,0.0000023395,0.0000023422,0.0000023469, -0.0000023517,0.0000023549,0.0000023567,0.0000023575,0.0000023575, -0.0000023571,0.0000023566,0.0000023558,0.0000023544,0.0000023526, -0.0000023514,0.0000023512,0.0000023518,0.0000023526,0.0000023531, -0.0000023534,0.0000023543,0.0000023560,0.0000023581,0.0000023601, -0.0000023622,0.0000023645,0.0000023664,0.0000023675,0.0000023678, -0.0000023677,0.0000023676,0.0000023678,0.0000023683,0.0000023686, -0.0000023684,0.0000023676,0.0000023662,0.0000023643,0.0000023624, -0.0000023597,0.0000023561,0.0000023517,0.0000023464,0.0000023405, -0.0000023343,0.0000023286,0.0000023237,0.0000023197,0.0000023165, -0.0000023142,0.0000023125,0.0000023108,0.0000023083,0.0000023047, -0.0000023003,0.0000022960,0.0000022925,0.0000022896,0.0000022873, -0.0000022867,0.0000022877,0.0000022897,0.0000022905,0.0000022894, -0.0000022874,0.0000022869,0.0000022891,0.0000022922,0.0000022931, -0.0000022923,0.0000022906,0.0000022893,0.0000022875,0.0000022829, -0.0000022749,0.0000022661,0.0000022594,0.0000022548,0.0000022496, -0.0000022420,0.0000022328,0.0000022245,0.0000022193,0.0000022168, -0.0000022158,0.0000022146,0.0000022118,0.0000022067,0.0000021993, -0.0000021911,0.0000021838,0.0000021782,0.0000021743,0.0000021712, -0.0000021685,0.0000021662,0.0000021636,0.0000021600,0.0000021559, -0.0000021516,0.0000021471,0.0000021429,0.0000021396,0.0000021372, -0.0000021351,0.0000021337,0.0000021332,0.0000021334,0.0000021343, -0.0000021359,0.0000021370,0.0000021375,0.0000021381,0.0000021390, -0.0000021406,0.0000021431,0.0000021465,0.0000021511,0.0000021573, -0.0000021651,0.0000021739,0.0000021828,0.0000021917,0.0000022003, -0.0000022078,0.0000022139,0.0000022186,0.0000022221,0.0000022248, -0.0000022266,0.0000022273,0.0000022273,0.0000022269,0.0000022262, -0.0000022253,0.0000022243,0.0000022230,0.0000022222,0.0000022211, -0.0000022193,0.0000022165,0.0000022138,0.0000022118,0.0000022122, -0.0000022150,0.0000022193,0.0000022247,0.0000022292,0.0000022306, -0.0000022291,0.0000022261,0.0000022242,0.0000022258,0.0000022317, -0.0000022392,0.0000022442,0.0000022459,0.0000022438,0.0000022389, -0.0000022348,0.0000022345,0.0000022337,0.0000022266,0.0000022158, -0.0000022054,0.0000021990,0.0000021968,0.0000021968,0.0000021978, -0.0000021997,0.0000022032,0.0000022085,0.0000022147,0.0000022214, -0.0000022270,0.0000022335,0.0000022443,0.0000022594,0.0000022745, -0.0000022838,0.0000022835,0.0000022775,0.0000022731,0.0000022732, -0.0000022742,0.0000022732,0.0000022716,0.0000022781,0.0000023030, -0.0000023233,0.0000023278,0.0000023275,0.0000023180,0.0000022999, -0.0000022794,0.0000022465,0.0000022164,0.0000022110,0.0000022165, -0.0000022218,0.0000022228,0.0000022220,0.0000022209,0.0000022176, -0.0000022123,0.0000022081,0.0000022046,0.0000022009,0.0000021987, -0.0000021994,0.0000022026,0.0000022059,0.0000022079,0.0000022087, -0.0000022088,0.0000022078,0.0000022063,0.0000022071,0.0000022128, -0.0000022206,0.0000022273,0.0000022328,0.0000022363,0.0000022363, -0.0000022302,0.0000022199,0.0000022149,0.0000022184,0.0000022282, -0.0000022385,0.0000022466,0.0000022537,0.0000022584,0.0000022594, -0.0000022591,0.0000022589,0.0000022590,0.0000022591,0.0000022589, -0.0000022576,0.0000022553,0.0000022530,0.0000022517,0.0000022518, -0.0000022532,0.0000022546,0.0000022560,0.0000022579,0.0000022604, -0.0000022630,0.0000022642,0.0000022630,0.0000022585,0.0000022511, -0.0000022424,0.0000022327,0.0000022207,0.0000022045,0.0000021862, -0.0000021727,0.0000021702,0.0000021795,0.0000021987,0.0000022177, -0.0000022223,0.0000022172,0.0000022156,0.0000022336,0.0000022656, -0.0000022815,0.0000022666,0.0000022287,0.0000022012,0.0000021939, -0.0000021930,0.0000021887,0.0000021783,0.0000021659,0.0000021581, -0.0000021578,0.0000021615,0.0000021642,0.0000021639,0.0000021629, -0.0000021624,0.0000021616,0.0000021581,0.0000021522,0.0000021457, -0.0000021407,0.0000021377,0.0000021372,0.0000021395,0.0000021422, -0.0000021435,0.0000021438,0.0000021427,0.0000021411,0.0000021404, -0.0000021415,0.0000021439,0.0000021465,0.0000021484,0.0000021503, -0.0000021531,0.0000021571,0.0000021617,0.0000021664,0.0000021718, -0.0000021783,0.0000021860,0.0000021951,0.0000022043,0.0000022122, -0.0000022182,0.0000022231,0.0000022279,0.0000022328,0.0000022384, -0.0000022456,0.0000022532,0.0000022582,0.0000022587,0.0000022559, -0.0000022540,0.0000022552,0.0000022590,0.0000022600,0.0000022514, -0.0000022321,0.0000022133,0.0000022021,0.0000021936,0.0000021819, -0.0000021667,0.0000021511,0.0000021372,0.0000021240,0.0000021086, -0.0000020900,0.0000020724,0.0000020599,0.0000020534,0.0000020509, -0.0000020508,0.0000020526,0.0000020570,0.0000020638,0.0000020720, -0.0000020788,0.0000020827,0.0000020854,0.0000020890,0.0000020938, -0.0000020999,0.0000021083,0.0000021194,0.0000021299,0.0000021349, -0.0000021325,0.0000021250,0.0000021143,0.0000021048,0.0000020991, -0.0000020974,0.0000020982,0.0000021012,0.0000021045,0.0000021085, -0.0000021167,0.0000021308,0.0000021466,0.0000021573,0.0000021585, -0.0000021548,0.0000021479,0.0000021418,0.0000021371,0.0000021333, -0.0000021301,0.0000021271,0.0000021233,0.0000021178,0.0000021111, -0.0000021056,0.0000021062,0.0000021133,0.0000021265,0.0000021426, -0.0000021570,0.0000021668,0.0000021709,0.0000021713,0.0000021697, -0.0000021674,0.0000021668,0.0000021716,0.0000021828,0.0000021998, -0.0000022203,0.0000022422,0.0000022633,0.0000022795,0.0000022877, -0.0000022888,0.0000022863,0.0000022860,0.0000022887,0.0000022957, -0.0000023057,0.0000023188,0.0000023345,0.0000023519,0.0000023698, -0.0000023861,0.0000023989,0.0000024086,0.0000024166,0.0000024240, -0.0000024321,0.0000024412,0.0000024502,0.0000024570,0.0000024611, -0.0000024619,0.0000024623,0.0000024601,0.0000024570,0.0000024530, -0.0000024482,0.0000024432,0.0000024379,0.0000024330,0.0000024283, -0.0000024239,0.0000024202,0.0000024166,0.0000024123,0.0000024074, -0.0000024025,0.0000023987,0.0000023969,0.0000023974,0.0000024000, -0.0000024049,0.0000024109,0.0000024178,0.0000024236,0.0000024265, -0.0000024273,0.0000024260,0.0000024222,0.0000024160,0.0000024086, -0.0000024005,0.0000023916,0.0000023814,0.0000023699,0.0000023572, -0.0000023431,0.0000023274,0.0000023127,0.0000023023,0.0000022968, -0.0000022935,0.0000022897,0.0000022851,0.0000022801,0.0000022743, -0.0000022674,0.0000022585,0.0000022488,0.0000022386,0.0000022287, -0.0000022186,0.0000022084,0.0000021985,0.0000021895,0.0000021832, -0.0000021810,0.0000021816,0.0000021842,0.0000021872,0.0000021897, -0.0000021909,0.0000021908,0.0000021896,0.0000021874,0.0000021850, -0.0000021830,0.0000021816,0.0000021810,0.0000021808,0.0000021806, -0.0000021803,0.0000021800,0.0000021797,0.0000021790,0.0000021777, -0.0000021768,0.0000021774,0.0000021794,0.0000021827,0.0000021880, -0.0000021958,0.0000022066,0.0000022209,0.0000022379,0.0000022556, -0.0000022730,0.0000022878,0.0000022979,0.0000023018,0.0000023044, -0.0000023042,0.0000023019,0.0000022983,0.0000022948,0.0000022911, -0.0000022880,0.0000022845,0.0000022809,0.0000022755,0.0000022684, -0.0000022605,0.0000022509,0.0000022391,0.0000022271,0.0000022168, -0.0000022085,0.0000022009,0.0000021933,0.0000021882,0.0000021836, -0.0000021805,0.0000021776,0.0000021752,0.0000021734,0.0000021734, -0.0000021751,0.0000021779,0.0000021820,0.0000021878,0.0000021953, -0.0000022027,0.0000022086,0.0000022136,0.0000022174,0.0000022199, -0.0000022201,0.0000022182,0.0000022143,0.0000022082,0.0000022006, -0.0000021923,0.0000021842,0.0000021765,0.0000021684,0.0000021601, -0.0000021523,0.0000021448,0.0000021375,0.0000021309,0.0000021255, -0.0000021222,0.0000021211,0.0000021209,0.0000021209,0.0000021219, -0.0000021234,0.0000021241,0.0000021242,0.0000021235,0.0000021215, -0.0000021188,0.0000021161,0.0000021140,0.0000021125,0.0000021113, -0.0000021101,0.0000021087,0.0000021068,0.0000021042,0.0000021015, -0.0000020989,0.0000020962,0.0000020933,0.0000020902,0.0000020864, -0.0000020823,0.0000020784,0.0000020757,0.0000020753,0.0000020771, -0.0000020802,0.0000020837,0.0000020876,0.0000020920,0.0000020961, -0.0000020991,0.0000021006,0.0000021009,0.0000021001,0.0000020984, -0.0000020956,0.0000020923,0.0000020886,0.0000020848,0.0000020811, -0.0000020776,0.0000020740,0.0000020713,0.0000020700,0.0000020706, -0.0000020722,0.0000020739,0.0000020753,0.0000020762,0.0000020764, -0.0000020763,0.0000020747,0.0000020737,0.0000020720,0.0000020696, -0.0000020669,0.0000020644,0.0000020622,0.0000020609,0.0000020603, -0.0000020607,0.0000020620,0.0000020631,0.0000020637,0.0000020649, -0.0000020664,0.0000020670,0.0000020675,0.0000020687,0.0000020686, -0.0000020675,0.0000020655,0.0000020631,0.0000020607,0.0000020600, -0.0000020623,0.0000020679,0.0000020742,0.0000020783,0.0000020797, -0.0000020780,0.0000020746,0.0000020695,0.0000020636,0.0000020603, -0.0000020610,0.0000020648,0.0000020681,0.0000020673,0.0000020637, -0.0000020616,0.0000020652,0.0000020719,0.0000020749,0.0000020724, -0.0000020647,0.0000020569,0.0000020527,0.0000020521,0.0000020537, -0.0000020576,0.0000020626,0.0000020671,0.0000020691,0.0000020683, -0.0000020685,0.0000020707,0.0000020715,0.0000020752,0.0000020938, -0.0000021210,0.0000021363,0.0000021376,0.0000021388,0.0000021480, -0.0000021593,0.0000021634,0.0000021628,0.0000021606,0.0000021562, -0.0000021486,0.0000021383,0.0000021264,0.0000021130,0.0000021039, -0.0000021027,0.0000021013,0.0000020869,0.0000020654,0.0000020528, -0.0000020515,0.0000020514,0.0000020491,0.0000020458,0.0000020433, -0.0000020428,0.0000020439,0.0000020468,0.0000020509,0.0000020548, -0.0000020586,0.0000020629,0.0000020665,0.0000020684,0.0000020690, -0.0000020693,0.0000020701,0.0000020716,0.0000020729,0.0000020744, -0.0000020753,0.0000020756,0.0000020748,0.0000020733,0.0000020720, -0.0000020714,0.0000020712,0.0000020718,0.0000020730,0.0000020745, -0.0000020755,0.0000020762,0.0000020766,0.0000020771,0.0000020771, -0.0000020767,0.0000020755,0.0000020731,0.0000020702,0.0000020687, -0.0000020670,0.0000020621,0.0000020556,0.0000020505,0.0000020459, -0.0000020417,0.0000020407,0.0000020426,0.0000020451,0.0000020459, -0.0000020457,0.0000020451,0.0000020444,0.0000020437,0.0000020428, -0.0000020414,0.0000020395,0.0000020376,0.0000020360,0.0000020338, -0.0000020304,0.0000020265,0.0000020228,0.0000020198,0.0000020172, -0.0000020149,0.0000020136,0.0000020141,0.0000020165,0.0000020207, -0.0000020253,0.0000020286,0.0000020302,0.0000020306,0.0000020305, -0.0000020303,0.0000020307,0.0000020317,0.0000020333,0.0000020351, -0.0000020368,0.0000020395,0.0000020443,0.0000020507,0.0000020562, -0.0000020586,0.0000020578,0.0000020555,0.0000020544,0.0000020566, -0.0000020626,0.0000020708,0.0000020784,0.0000020833,0.0000020840, -0.0000020822,0.0000020777,0.0000020709,0.0000020630,0.0000020574, -0.0000020578,0.0000020597,0.0000020630,0.0000020679,0.0000020753, -0.0000020870,0.0000021051,0.0000021271,0.0000021469,0.0000021615, -0.0000021727,0.0000021827,0.0000021914,0.0000021973,0.0000022005, -0.0000022021,0.0000022030,0.0000022020,0.0000021960,0.0000021846, -0.0000021725,0.0000021654,0.0000021654,0.0000021717,0.0000021767, -0.0000021691,0.0000021484,0.0000021306,0.0000021254,0.0000021276, -0.0000021258,0.0000021309,0.0000021397,0.0000021500,0.0000021600, -0.0000021672,0.0000021706,0.0000021717,0.0000021723,0.0000021724, -0.0000021715,0.0000021692,0.0000021668,0.0000021656,0.0000021669, -0.0000021708,0.0000021749,0.0000021774,0.0000021798,0.0000021818, -0.0000021827,0.0000021823,0.0000021812,0.0000021799,0.0000021786, -0.0000021770,0.0000021757,0.0000021754,0.0000021755,0.0000021764, -0.0000021780,0.0000021806,0.0000021833,0.0000021856,0.0000021865, -0.0000021856,0.0000021808,0.0000021730,0.0000021633,0.0000021529, -0.0000021430,0.0000021352,0.0000021303,0.0000021280,0.0000021263, -0.0000021250,0.0000021234,0.0000021216,0.0000021197,0.0000021173, -0.0000021147,0.0000021127,0.0000021115,0.0000021103,0.0000021091, -0.0000021087,0.0000021099,0.0000021129,0.0000021167,0.0000021212, -0.0000021263,0.0000021321,0.0000021386,0.0000021454,0.0000021522, -0.0000021592,0.0000021663,0.0000021726,0.0000021777,0.0000021808, -0.0000021832,0.0000021819,0.0000021804,0.0000021754,0.0000021706, -0.0000021661,0.0000021628,0.0000021619,0.0000021625,0.0000021636, -0.0000021645,0.0000021657,0.0000021668,0.0000021679,0.0000021689, -0.0000021693,0.0000021686,0.0000021667,0.0000021642,0.0000021619, -0.0000021604,0.0000021607,0.0000021627,0.0000021656,0.0000021682, -0.0000021693,0.0000021691,0.0000021682,0.0000021672,0.0000021672, -0.0000021686,0.0000021709,0.0000021731,0.0000021754,0.0000021773, -0.0000021778,0.0000021771,0.0000021763,0.0000021762,0.0000021763, -0.0000021758,0.0000021743,0.0000021720,0.0000021691,0.0000021661, -0.0000021620,0.0000021584,0.0000021566,0.0000021562,0.0000021558, -0.0000021557,0.0000021562,0.0000021573,0.0000021591,0.0000021611, -0.0000021622,0.0000021620,0.0000021616,0.0000021620,0.0000021632, -0.0000021641,0.0000021642,0.0000021637,0.0000021623,0.0000021601, -0.0000021578,0.0000021566,0.0000021561,0.0000021559,0.0000021565, -0.0000021581,0.0000021606,0.0000021639,0.0000021677,0.0000021709, -0.0000021724,0.0000021736,0.0000021748,0.0000021757,0.0000021760, -0.0000021758,0.0000021762,0.0000021771,0.0000021782,0.0000021790, -0.0000021788,0.0000021775,0.0000021759,0.0000021736,0.0000021689, -0.0000021640,0.0000021591,0.0000021551,0.0000021526,0.0000021513, -0.0000021509,0.0000021512,0.0000021530,0.0000021562,0.0000021599, -0.0000021636,0.0000021668,0.0000021705,0.0000021787,0.0000021932, -0.0000022109,0.0000022253,0.0000022321,0.0000022330,0.0000022326, -0.0000022360,0.0000022460,0.0000022593,0.0000022712,0.0000022786, -0.0000022808,0.0000022803,0.0000022784,0.0000022766,0.0000022752, -0.0000022751,0.0000022758,0.0000022776,0.0000022809,0.0000022848, -0.0000022876,0.0000022882,0.0000022877,0.0000022872,0.0000022863, -0.0000022851,0.0000022841,0.0000022839,0.0000022842,0.0000022852, -0.0000022866,0.0000022880,0.0000022892,0.0000022906,0.0000022922, -0.0000022941,0.0000022959,0.0000022975,0.0000022984,0.0000022973, -0.0000022943,0.0000022896,0.0000022847,0.0000022824,0.0000022825, -0.0000022845,0.0000022892,0.0000022950,0.0000023007,0.0000023057, -0.0000023088,0.0000023096,0.0000023089,0.0000023072,0.0000023051, -0.0000023029,0.0000023006,0.0000022989,0.0000022981,0.0000022982, -0.0000022991,0.0000023008,0.0000023030,0.0000023053,0.0000023078, -0.0000023104,0.0000023123,0.0000023130,0.0000023129,0.0000023121, -0.0000023110,0.0000023096,0.0000023086,0.0000023062,0.0000023032, -0.0000022995,0.0000022952,0.0000022903,0.0000022851,0.0000022803, -0.0000022760,0.0000022730,0.0000022710,0.0000022704,0.0000022711, -0.0000022711,0.0000022727,0.0000022745,0.0000022761,0.0000022779, -0.0000022802,0.0000022823,0.0000022835,0.0000022840,0.0000022840, -0.0000022838,0.0000022835,0.0000022824,0.0000022805,0.0000022779, -0.0000022750,0.0000022722,0.0000022701,0.0000022687,0.0000022671, -0.0000022655,0.0000022642,0.0000022630,0.0000022618,0.0000022607, -0.0000022598,0.0000022590,0.0000022579,0.0000022572,0.0000022568, -0.0000022568,0.0000022570,0.0000022572,0.0000022570,0.0000022554, -0.0000022518,0.0000022464,0.0000022398,0.0000022332,0.0000022280, -0.0000022236,0.0000022178,0.0000022104,0.0000022028,0.0000021936, -0.0000021816,0.0000021694,0.0000021590,0.0000021498,0.0000021409, -0.0000021327,0.0000021276,0.0000021255,0.0000021241,0.0000021223, -0.0000021214,0.0000021229,0.0000021276,0.0000021340,0.0000021391, -0.0000021420,0.0000021426,0.0000021422,0.0000021410,0.0000021400, -0.0000021375,0.0000021342,0.0000021308,0.0000021272,0.0000021232, -0.0000021193,0.0000021160,0.0000021138,0.0000021133,0.0000021140, -0.0000021145,0.0000021149,0.0000021143,0.0000021121,0.0000021101, -0.0000021092,0.0000021100,0.0000021113,0.0000021125,0.0000021136, -0.0000021152,0.0000021198,0.0000021319,0.0000021535,0.0000021805, -0.0000022014,0.0000022103,0.0000022120,0.0000022118,0.0000022110, -0.0000022093,0.0000022062,0.0000022019,0.0000021972,0.0000021943, -0.0000021941,0.0000021956,0.0000021982,0.0000022019,0.0000022053, -0.0000022071,0.0000022083,0.0000022093,0.0000022097,0.0000022114, -0.0000022181,0.0000022258,0.0000022282,0.0000022263,0.0000022218, -0.0000022194,0.0000022193,0.0000022186,0.0000022162,0.0000022142, -0.0000022133,0.0000022137,0.0000022154,0.0000022195,0.0000022256, -0.0000022336,0.0000022424,0.0000022496,0.0000022550,0.0000022586, -0.0000022612,0.0000022633,0.0000022649,0.0000022656,0.0000022652, -0.0000022638,0.0000022612,0.0000022586,0.0000022560,0.0000022525, -0.0000022481,0.0000022436,0.0000022402,0.0000022379,0.0000022363, -0.0000022348,0.0000022326,0.0000022305,0.0000022274,0.0000022230, -0.0000022183,0.0000022140,0.0000022093,0.0000022072,0.0000022098, -0.0000022150,0.0000022222,0.0000022268,0.0000022347,0.0000022576, -0.0000022726,0.0000022780,0.0000022855,0.0000022935,0.0000023003, -0.0000023017,0.0000023021,0.0000022953,0.0000022840,0.0000022755, -0.0000022708,0.0000022609,0.0000022481,0.0000022321,0.0000022174, -0.0000022202,0.0000022323,0.0000022389,0.0000022471,0.0000022595, -0.0000022735,0.0000022865,0.0000022975,0.0000023024,0.0000023015, -0.0000022977,0.0000022964,0.0000022959,0.0000022939,0.0000022907, -0.0000022889,0.0000022906,0.0000022972,0.0000023065,0.0000023139, -0.0000023193,0.0000023223,0.0000023228,0.0000023209,0.0000023144, -0.0000023073,0.0000023019,0.0000022955,0.0000022888,0.0000022854, -0.0000022846,0.0000022858,0.0000022873,0.0000022884,0.0000022901, -0.0000022945,0.0000023012,0.0000023084,0.0000023138,0.0000023170, -0.0000023180,0.0000023173,0.0000023157,0.0000023132,0.0000023099, -0.0000023061,0.0000023016,0.0000022977,0.0000022944,0.0000022917, -0.0000022899,0.0000022879,0.0000022858,0.0000022847,0.0000022855, -0.0000022877,0.0000022895,0.0000022916,0.0000022934,0.0000022946, -0.0000022963,0.0000023001,0.0000023043,0.0000023101,0.0000023169, -0.0000023176,0.0000023116,0.0000023070,0.0000023069,0.0000023048, -0.0000022927,0.0000022751,0.0000022524,0.0000022200,0.0000022124, -0.0000022228,0.0000022226,0.0000022141,0.0000022191,0.0000022334, -0.0000022278,0.0000021986,0.0000021835,0.0000021885,0.0000021982, -0.0000022048,0.0000022096,0.0000022138,0.0000022168,0.0000022191, -0.0000022212,0.0000022239,0.0000022256,0.0000022250,0.0000022224, -0.0000022203,0.0000022189,0.0000022179,0.0000022182,0.0000022208, -0.0000022252,0.0000022290,0.0000022303,0.0000022295,0.0000022281, -0.0000022277,0.0000022300,0.0000022344,0.0000022374,0.0000022390, -0.0000022407,0.0000022417,0.0000022395,0.0000022339,0.0000022212, -0.0000022054,0.0000021956,0.0000021950,0.0000022021,0.0000022107, -0.0000022175,0.0000022238,0.0000022327,0.0000022437,0.0000022533, -0.0000022591,0.0000022628,0.0000022658,0.0000022679,0.0000022680, -0.0000022655,0.0000022590,0.0000022507,0.0000022433,0.0000022353, -0.0000022260,0.0000022190,0.0000022166,0.0000022182,0.0000022216, -0.0000022250,0.0000022262,0.0000022258,0.0000022247,0.0000022234, -0.0000022224,0.0000022227,0.0000022246,0.0000022273,0.0000022310, -0.0000022354,0.0000022400,0.0000022442,0.0000022477,0.0000022501, -0.0000022513,0.0000022511,0.0000022496,0.0000022469,0.0000022439, -0.0000022412,0.0000022375,0.0000022336,0.0000022303,0.0000022289, -0.0000022275,0.0000022264,0.0000022262,0.0000022271,0.0000022285, -0.0000022303,0.0000022332,0.0000022378,0.0000022444,0.0000022522, -0.0000022598,0.0000022664,0.0000022712,0.0000022741,0.0000022763, -0.0000022778,0.0000022789,0.0000022794,0.0000022805,0.0000022831, -0.0000022880,0.0000022959,0.0000023060,0.0000023163,0.0000023247, -0.0000023303,0.0000023332,0.0000023331,0.0000023326,0.0000023314, -0.0000023301,0.0000023288,0.0000023272,0.0000023260,0.0000023255, -0.0000023269,0.0000023307,0.0000023358,0.0000023412,0.0000023466, -0.0000023530,0.0000023601,0.0000023657,0.0000023681,0.0000023681, -0.0000023652,0.0000023583,0.0000023494,0.0000023422,0.0000023389, -0.0000023384,0.0000023401,0.0000023441,0.0000023487,0.0000023520, -0.0000023539,0.0000023550,0.0000023556,0.0000023560,0.0000023561, -0.0000023559,0.0000023552,0.0000023542,0.0000023533,0.0000023528, -0.0000023528,0.0000023534,0.0000023536,0.0000023530,0.0000023522, -0.0000023521,0.0000023529,0.0000023545,0.0000023569,0.0000023594, -0.0000023615,0.0000023632,0.0000023643,0.0000023646,0.0000023643, -0.0000023640,0.0000023640,0.0000023638,0.0000023635,0.0000023629, -0.0000023617,0.0000023602,0.0000023581,0.0000023552,0.0000023516, -0.0000023471,0.0000023419,0.0000023364,0.0000023311,0.0000023265, -0.0000023228,0.0000023200,0.0000023180,0.0000023165,0.0000023150, -0.0000023125,0.0000023085,0.0000023033,0.0000022986,0.0000022947, -0.0000022910,0.0000022876,0.0000022858,0.0000022856,0.0000022877, -0.0000022905,0.0000022917,0.0000022910,0.0000022896,0.0000022897, -0.0000022918,0.0000022940,0.0000022941,0.0000022927,0.0000022915, -0.0000022904,0.0000022872,0.0000022797,0.0000022698,0.0000022619, -0.0000022571,0.0000022533,0.0000022473,0.0000022384,0.0000022285, -0.0000022207,0.0000022162,0.0000022141,0.0000022109,0.0000022049, -0.0000021962,0.0000021863,0.0000021763,0.0000021674,0.0000021598, -0.0000021542,0.0000021511,0.0000021500,0.0000021497,0.0000021498, -0.0000021499,0.0000021490,0.0000021469,0.0000021440,0.0000021402, -0.0000021360,0.0000021322,0.0000021292,0.0000021265,0.0000021240, -0.0000021224,0.0000021221,0.0000021226,0.0000021240,0.0000021250, -0.0000021250,0.0000021248,0.0000021244,0.0000021239,0.0000021237, -0.0000021240,0.0000021251,0.0000021278,0.0000021328,0.0000021397, -0.0000021481,0.0000021578,0.0000021683,0.0000021788,0.0000021883, -0.0000021962,0.0000022023,0.0000022069,0.0000022104,0.0000022126, -0.0000022139,0.0000022147,0.0000022153,0.0000022158,0.0000022159, -0.0000022154,0.0000022152,0.0000022156,0.0000022157,0.0000022154, -0.0000022146,0.0000022129,0.0000022120,0.0000022131,0.0000022153, -0.0000022192,0.0000022245,0.0000022286,0.0000022293,0.0000022268, -0.0000022228,0.0000022209,0.0000022234,0.0000022303,0.0000022369, -0.0000022413,0.0000022428,0.0000022403,0.0000022354,0.0000022321, -0.0000022322,0.0000022317,0.0000022291,0.0000022207,0.0000022104, -0.0000022034,0.0000022005,0.0000021996,0.0000022002,0.0000022020, -0.0000022053,0.0000022094,0.0000022147,0.0000022200,0.0000022246, -0.0000022304,0.0000022400,0.0000022549,0.0000022722,0.0000022834, -0.0000022833,0.0000022777,0.0000022731,0.0000022720,0.0000022720, -0.0000022706,0.0000022705,0.0000022826,0.0000023082,0.0000023238, -0.0000023265,0.0000023261,0.0000023151,0.0000022961,0.0000022712, -0.0000022344,0.0000022101,0.0000022086,0.0000022148,0.0000022183, -0.0000022193,0.0000022209,0.0000022213,0.0000022186,0.0000022145, -0.0000022107,0.0000022073,0.0000022047,0.0000022036,0.0000022037, -0.0000022041,0.0000022050,0.0000022066,0.0000022078,0.0000022070, -0.0000022044,0.0000022034,0.0000022056,0.0000022100,0.0000022149, -0.0000022208,0.0000022281,0.0000022345,0.0000022361,0.0000022307, -0.0000022220,0.0000022191,0.0000022238,0.0000022330,0.0000022423, -0.0000022505,0.0000022574,0.0000022611,0.0000022612,0.0000022606, -0.0000022606,0.0000022607,0.0000022607,0.0000022603,0.0000022587, -0.0000022558,0.0000022521,0.0000022486,0.0000022466,0.0000022470, -0.0000022486,0.0000022502,0.0000022514,0.0000022525,0.0000022539, -0.0000022559,0.0000022577,0.0000022574,0.0000022548,0.0000022483, -0.0000022401,0.0000022308,0.0000022190,0.0000022032,0.0000021860, -0.0000021736,0.0000021713,0.0000021802,0.0000021989,0.0000022171, -0.0000022210,0.0000022167,0.0000022161,0.0000022336,0.0000022646, -0.0000022777,0.0000022593,0.0000022219,0.0000021968,0.0000021924, -0.0000021913,0.0000021854,0.0000021739,0.0000021629,0.0000021585, -0.0000021596,0.0000021622,0.0000021625,0.0000021610,0.0000021593, -0.0000021579,0.0000021557,0.0000021509,0.0000021446,0.0000021394, -0.0000021362,0.0000021359,0.0000021393,0.0000021437,0.0000021473, -0.0000021496,0.0000021497,0.0000021484,0.0000021471,0.0000021465, -0.0000021475,0.0000021494,0.0000021508,0.0000021521,0.0000021542, -0.0000021577,0.0000021624,0.0000021673,0.0000021723,0.0000021777, -0.0000021841,0.0000021916,0.0000022002,0.0000022090,0.0000022168, -0.0000022231,0.0000022284,0.0000022334,0.0000022391,0.0000022463, -0.0000022541,0.0000022592,0.0000022597,0.0000022571,0.0000022549, -0.0000022559,0.0000022594,0.0000022604,0.0000022522,0.0000022329, -0.0000022138,0.0000022022,0.0000021927,0.0000021798,0.0000021640, -0.0000021484,0.0000021346,0.0000021214,0.0000021058,0.0000020872, -0.0000020695,0.0000020571,0.0000020494,0.0000020450,0.0000020441, -0.0000020452,0.0000020482,0.0000020532,0.0000020610,0.0000020697, -0.0000020766,0.0000020810,0.0000020845,0.0000020885,0.0000020929, -0.0000020980,0.0000021056,0.0000021163,0.0000021260,0.0000021309, -0.0000021291,0.0000021228,0.0000021130,0.0000021034,0.0000020972, -0.0000020953,0.0000020965,0.0000020997,0.0000021035,0.0000021082, -0.0000021161,0.0000021292,0.0000021444,0.0000021557,0.0000021592, -0.0000021569,0.0000021523,0.0000021477,0.0000021445,0.0000021418, -0.0000021393,0.0000021361,0.0000021315,0.0000021244,0.0000021157, -0.0000021088,0.0000021066,0.0000021077,0.0000021175,0.0000021330, -0.0000021489,0.0000021601,0.0000021648,0.0000021648,0.0000021624, -0.0000021598,0.0000021597,0.0000021648,0.0000021757,0.0000021919, -0.0000022131,0.0000022372,0.0000022601,0.0000022778,0.0000022872, -0.0000022895,0.0000022881,0.0000022865,0.0000022876,0.0000022920, -0.0000022993,0.0000023088,0.0000023204,0.0000023348,0.0000023517, -0.0000023683,0.0000023824,0.0000023938,0.0000024034,0.0000024124, -0.0000024220,0.0000024324,0.0000024426,0.0000024514,0.0000024581, -0.0000024623,0.0000024638,0.0000024649,0.0000024626,0.0000024587, -0.0000024533,0.0000024475,0.0000024424,0.0000024384,0.0000024351, -0.0000024322,0.0000024294,0.0000024261,0.0000024218,0.0000024164, -0.0000024110,0.0000024066,0.0000024042,0.0000024041,0.0000024062, -0.0000024104,0.0000024165,0.0000024223,0.0000024265,0.0000024287, -0.0000024291,0.0000024277,0.0000024239,0.0000024178,0.0000024098, -0.0000024002,0.0000023895,0.0000023781,0.0000023666,0.0000023549, -0.0000023420,0.0000023284,0.0000023155,0.0000023053,0.0000022986, -0.0000022935,0.0000022877,0.0000022803,0.0000022719,0.0000022641, -0.0000022572,0.0000022499,0.0000022414,0.0000022313,0.0000022202, -0.0000022093,0.0000021992,0.0000021899,0.0000021821,0.0000021774, -0.0000021768,0.0000021787,0.0000021821,0.0000021854,0.0000021876, -0.0000021880,0.0000021866,0.0000021834,0.0000021802,0.0000021783, -0.0000021774,0.0000021767,0.0000021763,0.0000021760,0.0000021756, -0.0000021756,0.0000021759,0.0000021757,0.0000021747,0.0000021730, -0.0000021711,0.0000021685,0.0000021654,0.0000021624,0.0000021603, -0.0000021606,0.0000021648,0.0000021740,0.0000021884,0.0000022072, -0.0000022285,0.0000022504,0.0000022701,0.0000022860,0.0000022975, -0.0000023044,0.0000023042,0.0000023042,0.0000022999,0.0000022936, -0.0000022873,0.0000022821,0.0000022784,0.0000022753,0.0000022723, -0.0000022677,0.0000022597,0.0000022482,0.0000022344,0.0000022210, -0.0000022094,0.0000022000,0.0000021922,0.0000021856,0.0000021806, -0.0000021761,0.0000021716,0.0000021678,0.0000021661,0.0000021665, -0.0000021677,0.0000021696,0.0000021726,0.0000021773,0.0000021828, -0.0000021879,0.0000021927,0.0000021968,0.0000022003,0.0000022019, -0.0000022013,0.0000021979,0.0000021925,0.0000021851,0.0000021763, -0.0000021674,0.0000021592,0.0000021513,0.0000021433,0.0000021357, -0.0000021293,0.0000021239,0.0000021195,0.0000021162,0.0000021146, -0.0000021144,0.0000021152,0.0000021164,0.0000021183,0.0000021202, -0.0000021213,0.0000021214,0.0000021211,0.0000021201,0.0000021180, -0.0000021156,0.0000021137,0.0000021122,0.0000021108,0.0000021095, -0.0000021082,0.0000021064,0.0000021039,0.0000021008,0.0000020976, -0.0000020946,0.0000020916,0.0000020885,0.0000020847,0.0000020803, -0.0000020756,0.0000020713,0.0000020681,0.0000020674,0.0000020688, -0.0000020715,0.0000020752,0.0000020798,0.0000020850,0.0000020898, -0.0000020932,0.0000020950,0.0000020954,0.0000020948,0.0000020926, -0.0000020893,0.0000020852,0.0000020803,0.0000020749,0.0000020689, -0.0000020631,0.0000020585,0.0000020558,0.0000020552,0.0000020560, -0.0000020575,0.0000020597,0.0000020628,0.0000020658,0.0000020681, -0.0000020697,0.0000020710,0.0000020711,0.0000020702,0.0000020679, -0.0000020647,0.0000020613,0.0000020585,0.0000020567,0.0000020556, -0.0000020559,0.0000020565,0.0000020568,0.0000020576,0.0000020589, -0.0000020594,0.0000020599,0.0000020616,0.0000020634,0.0000020641, -0.0000020642,0.0000020642,0.0000020634,0.0000020616,0.0000020604, -0.0000020603,0.0000020626,0.0000020664,0.0000020702,0.0000020737, -0.0000020762,0.0000020771,0.0000020745,0.0000020691,0.0000020638, -0.0000020603,0.0000020612,0.0000020646,0.0000020666,0.0000020633, -0.0000020593,0.0000020601,0.0000020660,0.0000020709,0.0000020691, -0.0000020612,0.0000020531,0.0000020488,0.0000020480,0.0000020496, -0.0000020536,0.0000020588,0.0000020638,0.0000020659,0.0000020659, -0.0000020674,0.0000020698,0.0000020708,0.0000020797,0.0000021042, -0.0000021291,0.0000021374,0.0000021371,0.0000021408,0.0000021520, -0.0000021600,0.0000021608,0.0000021588,0.0000021551,0.0000021482, -0.0000021372,0.0000021236,0.0000021098,0.0000021026,0.0000021019, -0.0000020975,0.0000020792,0.0000020587,0.0000020504,0.0000020508, -0.0000020515,0.0000020491,0.0000020446,0.0000020413,0.0000020404, -0.0000020418,0.0000020450,0.0000020490,0.0000020529,0.0000020562, -0.0000020595,0.0000020624,0.0000020643,0.0000020649,0.0000020651, -0.0000020658,0.0000020678,0.0000020700,0.0000020724,0.0000020743, -0.0000020752,0.0000020751,0.0000020741,0.0000020727,0.0000020714, -0.0000020704,0.0000020701,0.0000020704,0.0000020713,0.0000020721, -0.0000020727,0.0000020729,0.0000020728,0.0000020724,0.0000020715, -0.0000020707,0.0000020700,0.0000020689,0.0000020681,0.0000020683, -0.0000020681,0.0000020638,0.0000020562,0.0000020490,0.0000020427, -0.0000020383,0.0000020380,0.0000020409,0.0000020440,0.0000020452, -0.0000020447,0.0000020435,0.0000020428,0.0000020424,0.0000020418, -0.0000020408,0.0000020392,0.0000020373,0.0000020352,0.0000020325, -0.0000020291,0.0000020256,0.0000020230,0.0000020210,0.0000020184, -0.0000020152,0.0000020124,0.0000020107,0.0000020104,0.0000020119, -0.0000020154,0.0000020198,0.0000020230,0.0000020240,0.0000020237, -0.0000020228,0.0000020220,0.0000020219,0.0000020226,0.0000020243, -0.0000020265,0.0000020288,0.0000020320,0.0000020370,0.0000020430, -0.0000020485,0.0000020519,0.0000020523,0.0000020504,0.0000020479, -0.0000020476,0.0000020502,0.0000020570,0.0000020667,0.0000020761, -0.0000020821,0.0000020834,0.0000020827,0.0000020797,0.0000020748, -0.0000020682,0.0000020629,0.0000020624,0.0000020643,0.0000020667, -0.0000020694,0.0000020737,0.0000020819,0.0000020966,0.0000021176, -0.0000021391,0.0000021565,0.0000021700,0.0000021816,0.0000021913, -0.0000021973,0.0000021999,0.0000022003,0.0000021985,0.0000021929, -0.0000021835,0.0000021729,0.0000021642,0.0000021606,0.0000021638, -0.0000021722,0.0000021731,0.0000021592,0.0000021385,0.0000021264, -0.0000021333,0.0000021277,0.0000021292,0.0000021350,0.0000021435, -0.0000021528,0.0000021616,0.0000021682,0.0000021713,0.0000021715, -0.0000021697,0.0000021662,0.0000021622,0.0000021592,0.0000021587, -0.0000021602,0.0000021627,0.0000021653,0.0000021679,0.0000021701, -0.0000021717,0.0000021726,0.0000021727,0.0000021716,0.0000021697, -0.0000021682,0.0000021683,0.0000021700,0.0000021725,0.0000021752, -0.0000021781,0.0000021808,0.0000021820,0.0000021793,0.0000021716, -0.0000021607,0.0000021483,0.0000021367,0.0000021270,0.0000021196, -0.0000021149,0.0000021130,0.0000021119,0.0000021112,0.0000021106, -0.0000021102,0.0000021104,0.0000021109,0.0000021107,0.0000021094, -0.0000021071,0.0000021046,0.0000021031,0.0000021022,0.0000021014, -0.0000021012,0.0000021023,0.0000021040,0.0000021062,0.0000021088, -0.0000021117,0.0000021147,0.0000021179,0.0000021193,0.0000021232, -0.0000021278,0.0000021331,0.0000021391,0.0000021468,0.0000021558, -0.0000021645,0.0000021722,0.0000021780,0.0000021809,0.0000021825, -0.0000021810,0.0000021804,0.0000021775,0.0000021751,0.0000021730, -0.0000021708,0.0000021692,0.0000021684,0.0000021682,0.0000021685, -0.0000021692,0.0000021695,0.0000021688,0.0000021667,0.0000021639, -0.0000021614,0.0000021598,0.0000021596,0.0000021607,0.0000021620, -0.0000021630,0.0000021631,0.0000021621,0.0000021605,0.0000021593, -0.0000021592,0.0000021607,0.0000021631,0.0000021654,0.0000021672, -0.0000021682,0.0000021683,0.0000021682,0.0000021688,0.0000021700, -0.0000021711,0.0000021713,0.0000021707,0.0000021694,0.0000021676, -0.0000021646,0.0000021604,0.0000021566,0.0000021546,0.0000021535, -0.0000021523,0.0000021512,0.0000021510,0.0000021519,0.0000021536, -0.0000021552,0.0000021562,0.0000021565,0.0000021562,0.0000021565, -0.0000021576,0.0000021585,0.0000021588,0.0000021585,0.0000021569, -0.0000021543,0.0000021522,0.0000021514,0.0000021511,0.0000021512, -0.0000021520,0.0000021533,0.0000021551,0.0000021578,0.0000021608, -0.0000021627,0.0000021634,0.0000021638,0.0000021645,0.0000021653, -0.0000021653,0.0000021654,0.0000021667,0.0000021687,0.0000021709, -0.0000021724,0.0000021732,0.0000021743,0.0000021759,0.0000021764, -0.0000021755,0.0000021741,0.0000021702,0.0000021655,0.0000021609, -0.0000021567,0.0000021535,0.0000021522,0.0000021535,0.0000021567, -0.0000021610,0.0000021651,0.0000021688,0.0000021715,0.0000021733, -0.0000021772,0.0000021885,0.0000022062,0.0000022229,0.0000022314, -0.0000022320,0.0000022307,0.0000022319,0.0000022391,0.0000022510, -0.0000022634,0.0000022730,0.0000022780,0.0000022789,0.0000022785, -0.0000022773,0.0000022760,0.0000022750,0.0000022741,0.0000022741, -0.0000022755,0.0000022775,0.0000022796,0.0000022815,0.0000022831, -0.0000022838,0.0000022837,0.0000022833,0.0000022831,0.0000022834, -0.0000022845,0.0000022863,0.0000022882,0.0000022897,0.0000022909, -0.0000022919,0.0000022933,0.0000022950,0.0000022968,0.0000022988, -0.0000023007,0.0000023024,0.0000023023,0.0000023004,0.0000022969, -0.0000022922,0.0000022880,0.0000022867,0.0000022863,0.0000022876, -0.0000022897,0.0000022921,0.0000022943,0.0000022960,0.0000022970, -0.0000022974,0.0000022971,0.0000022964,0.0000022960,0.0000022958, -0.0000022959,0.0000022966,0.0000022982,0.0000023002,0.0000023023, -0.0000023043,0.0000023060,0.0000023069,0.0000023067,0.0000023051, -0.0000023027,0.0000022999,0.0000022964,0.0000022921,0.0000022875, -0.0000022829,0.0000022784,0.0000022744,0.0000022716,0.0000022700, -0.0000022693,0.0000022700,0.0000022711,0.0000022735,0.0000022767, -0.0000022801,0.0000022834,0.0000022865,0.0000022891,0.0000022907, -0.0000022918,0.0000022929,0.0000022937,0.0000022937,0.0000022928, -0.0000022911,0.0000022895,0.0000022881,0.0000022865,0.0000022842, -0.0000022815,0.0000022784,0.0000022752,0.0000022722,0.0000022696, -0.0000022673,0.0000022652,0.0000022639,0.0000022625,0.0000022608, -0.0000022586,0.0000022562,0.0000022539,0.0000022517,0.0000022497, -0.0000022482,0.0000022471,0.0000022462,0.0000022453,0.0000022444, -0.0000022429,0.0000022402,0.0000022363,0.0000022314,0.0000022264, -0.0000022217,0.0000022161,0.0000022082,0.0000021984,0.0000021888, -0.0000021785,0.0000021669,0.0000021565,0.0000021486,0.0000021412, -0.0000021320,0.0000021230,0.0000021180,0.0000021150,0.0000021122, -0.0000021113,0.0000021140,0.0000021207,0.0000021282,0.0000021342, -0.0000021372,0.0000021381,0.0000021381,0.0000021373,0.0000021365, -0.0000021353,0.0000021332,0.0000021306,0.0000021274,0.0000021236, -0.0000021199,0.0000021170,0.0000021148,0.0000021131,0.0000021120, -0.0000021119,0.0000021123,0.0000021124,0.0000021110,0.0000021097, -0.0000021098,0.0000021120,0.0000021148,0.0000021165,0.0000021176, -0.0000021197,0.0000021256,0.0000021399,0.0000021637,0.0000021892, -0.0000022058,0.0000022109,0.0000022117,0.0000022113,0.0000022090, -0.0000022053,0.0000022004,0.0000021956,0.0000021923,0.0000021913, -0.0000021928,0.0000021958,0.0000021999,0.0000022040,0.0000022069, -0.0000022090,0.0000022116,0.0000022138,0.0000022152,0.0000022186, -0.0000022250,0.0000022284,0.0000022264,0.0000022206,0.0000022159, -0.0000022129,0.0000022112,0.0000022106,0.0000022106,0.0000022112, -0.0000022138,0.0000022178,0.0000022213,0.0000022238,0.0000022277, -0.0000022335,0.0000022406,0.0000022480,0.0000022533,0.0000022562, -0.0000022586,0.0000022609,0.0000022631,0.0000022639,0.0000022632, -0.0000022610,0.0000022573,0.0000022533,0.0000022503,0.0000022480, -0.0000022455,0.0000022427,0.0000022400,0.0000022381,0.0000022366, -0.0000022349,0.0000022330,0.0000022294,0.0000022247,0.0000022194, -0.0000022133,0.0000022070,0.0000022027,0.0000022019,0.0000022049, -0.0000022102,0.0000022172,0.0000022233,0.0000022328,0.0000022560, -0.0000022750,0.0000022781,0.0000022807,0.0000022864,0.0000022921, -0.0000022931,0.0000022934,0.0000022893,0.0000022808,0.0000022732, -0.0000022698,0.0000022647,0.0000022545,0.0000022411,0.0000022217, -0.0000022131,0.0000022216,0.0000022328,0.0000022391,0.0000022465, -0.0000022566,0.0000022701,0.0000022841,0.0000022957,0.0000023014, -0.0000023014,0.0000022982,0.0000022966,0.0000022961,0.0000022942, -0.0000022906,0.0000022877,0.0000022883,0.0000022933,0.0000023015, -0.0000023088,0.0000023139,0.0000023170,0.0000023184,0.0000023190, -0.0000023160,0.0000023093,0.0000023035,0.0000022997,0.0000022940, -0.0000022875,0.0000022840,0.0000022833,0.0000022839,0.0000022849, -0.0000022859,0.0000022885,0.0000022940,0.0000023014,0.0000023075, -0.0000023114,0.0000023131,0.0000023130,0.0000023118,0.0000023097, -0.0000023070,0.0000023034,0.0000022988,0.0000022951,0.0000022922, -0.0000022901,0.0000022887,0.0000022868,0.0000022843,0.0000022829, -0.0000022837,0.0000022865,0.0000022885,0.0000022903,0.0000022918, -0.0000022926,0.0000022941,0.0000022980,0.0000023028,0.0000023085, -0.0000023154,0.0000023178,0.0000023127,0.0000023066,0.0000023062, -0.0000023061,0.0000022983,0.0000022813,0.0000022631,0.0000022330, -0.0000022122,0.0000022167,0.0000022239,0.0000022158,0.0000022117, -0.0000022240,0.0000022343,0.0000022217,0.0000021948,0.0000021872, -0.0000021948,0.0000022032,0.0000022082,0.0000022122,0.0000022152, -0.0000022172,0.0000022186,0.0000022198,0.0000022212,0.0000022221, -0.0000022216,0.0000022205,0.0000022199,0.0000022193,0.0000022191, -0.0000022200,0.0000022224,0.0000022258,0.0000022294,0.0000022315, -0.0000022314,0.0000022292,0.0000022266,0.0000022254,0.0000022266, -0.0000022281,0.0000022293,0.0000022313,0.0000022341,0.0000022364, -0.0000022356,0.0000022290,0.0000022166,0.0000022039,0.0000021987, -0.0000022012,0.0000022076,0.0000022156,0.0000022226,0.0000022302, -0.0000022399,0.0000022502,0.0000022579,0.0000022628,0.0000022666, -0.0000022698,0.0000022711,0.0000022695,0.0000022638,0.0000022555, -0.0000022475,0.0000022405,0.0000022337,0.0000022266,0.0000022203, -0.0000022174,0.0000022182,0.0000022207,0.0000022226,0.0000022227, -0.0000022213,0.0000022192,0.0000022173,0.0000022166,0.0000022174, -0.0000022201,0.0000022235,0.0000022280,0.0000022329,0.0000022374, -0.0000022413,0.0000022446,0.0000022468,0.0000022474,0.0000022469, -0.0000022452,0.0000022430,0.0000022406,0.0000022375,0.0000022342, -0.0000022315,0.0000022296,0.0000022272,0.0000022248,0.0000022239, -0.0000022238,0.0000022244,0.0000022247,0.0000022251,0.0000022260, -0.0000022280,0.0000022308,0.0000022346,0.0000022393,0.0000022446, -0.0000022503,0.0000022558,0.0000022613,0.0000022666,0.0000022713, -0.0000022750,0.0000022771,0.0000022789,0.0000022818,0.0000022872, -0.0000022952,0.0000023051,0.0000023156,0.0000023248,0.0000023307, -0.0000023331,0.0000023330,0.0000023332,0.0000023329,0.0000023324, -0.0000023309,0.0000023285,0.0000023268,0.0000023273,0.0000023294, -0.0000023338,0.0000023397,0.0000023468,0.0000023547,0.0000023620, -0.0000023667,0.0000023682,0.0000023673,0.0000023621,0.0000023534, -0.0000023449,0.0000023398,0.0000023380,0.0000023382,0.0000023409, -0.0000023451,0.0000023487,0.0000023509,0.0000023525,0.0000023537, -0.0000023545,0.0000023550,0.0000023551,0.0000023550,0.0000023548, -0.0000023544,0.0000023539,0.0000023538,0.0000023541,0.0000023541, -0.0000023530,0.0000023511,0.0000023492,0.0000023479,0.0000023480, -0.0000023496,0.0000023524,0.0000023551,0.0000023570,0.0000023583, -0.0000023588,0.0000023587,0.0000023582,0.0000023573,0.0000023564, -0.0000023556,0.0000023547,0.0000023539,0.0000023522,0.0000023496, -0.0000023463,0.0000023425,0.0000023381,0.0000023339,0.0000023301, -0.0000023270,0.0000023244,0.0000023223,0.0000023206,0.0000023192, -0.0000023176,0.0000023155,0.0000023120,0.0000023069,0.0000023014, -0.0000022966,0.0000022929,0.0000022897,0.0000022868,0.0000022860, -0.0000022871,0.0000022900,0.0000022929,0.0000022937,0.0000022931, -0.0000022925,0.0000022929,0.0000022944,0.0000022951,0.0000022942, -0.0000022925,0.0000022916,0.0000022901,0.0000022844,0.0000022744, -0.0000022647,0.0000022591,0.0000022560,0.0000022520,0.0000022449, -0.0000022349,0.0000022254,0.0000022192,0.0000022152,0.0000022109, -0.0000022029,0.0000021910,0.0000021778,0.0000021662,0.0000021575, -0.0000021508,0.0000021450,0.0000021401,0.0000021365,0.0000021353, -0.0000021353,0.0000021363,0.0000021376,0.0000021388,0.0000021392, -0.0000021384,0.0000021364,0.0000021334,0.0000021300,0.0000021269, -0.0000021242,0.0000021214,0.0000021192,0.0000021186,0.0000021189, -0.0000021202,0.0000021216,0.0000021223,0.0000021223,0.0000021220, -0.0000021210,0.0000021195,0.0000021179,0.0000021159,0.0000021143, -0.0000021143,0.0000021162,0.0000021202,0.0000021264,0.0000021347, -0.0000021449,0.0000021556,0.0000021656,0.0000021740,0.0000021806, -0.0000021859,0.0000021901,0.0000021932,0.0000021954,0.0000021976, -0.0000021999,0.0000022021,0.0000022036,0.0000022049,0.0000022063, -0.0000022073,0.0000022085,0.0000022098,0.0000022106,0.0000022108, -0.0000022124,0.0000022138,0.0000022155,0.0000022189,0.0000022240, -0.0000022279,0.0000022277,0.0000022239,0.0000022195,0.0000022188, -0.0000022230,0.0000022292,0.0000022343,0.0000022378,0.0000022391, -0.0000022368,0.0000022329,0.0000022301,0.0000022297,0.0000022312, -0.0000022307,0.0000022263,0.0000022183,0.0000022128,0.0000022095, -0.0000022079,0.0000022071,0.0000022074,0.0000022085,0.0000022111, -0.0000022146,0.0000022185,0.0000022225,0.0000022279,0.0000022367, -0.0000022515,0.0000022700,0.0000022821,0.0000022831,0.0000022782, -0.0000022729,0.0000022706,0.0000022696,0.0000022692,0.0000022714, -0.0000022877,0.0000023121,0.0000023239,0.0000023258,0.0000023243, -0.0000023120,0.0000022925,0.0000022639,0.0000022258,0.0000022067, -0.0000022071,0.0000022116,0.0000022137,0.0000022168,0.0000022205, -0.0000022210,0.0000022186,0.0000022142,0.0000022100,0.0000022068, -0.0000022047,0.0000022039,0.0000022036,0.0000022044,0.0000022066, -0.0000022084,0.0000022079,0.0000022049,0.0000022022,0.0000022023, -0.0000022043,0.0000022072,0.0000022117,0.0000022193,0.0000022295, -0.0000022378,0.0000022393,0.0000022334,0.0000022253,0.0000022234, -0.0000022281,0.0000022366,0.0000022451,0.0000022526,0.0000022586, -0.0000022612,0.0000022610,0.0000022602,0.0000022600,0.0000022600, -0.0000022597,0.0000022591,0.0000022576,0.0000022545,0.0000022502, -0.0000022455,0.0000022416,0.0000022399,0.0000022406,0.0000022424, -0.0000022443,0.0000022453,0.0000022459,0.0000022469,0.0000022492, -0.0000022527,0.0000022540,0.0000022519,0.0000022460,0.0000022384, -0.0000022296,0.0000022180,0.0000022030,0.0000021869,0.0000021750, -0.0000021728,0.0000021812,0.0000021988,0.0000022161,0.0000022198, -0.0000022159,0.0000022157,0.0000022322,0.0000022617,0.0000022721, -0.0000022524,0.0000022152,0.0000021934,0.0000021909,0.0000021895, -0.0000021821,0.0000021706,0.0000021617,0.0000021592,0.0000021600, -0.0000021611,0.0000021598,0.0000021574,0.0000021552,0.0000021531, -0.0000021491,0.0000021436,0.0000021386,0.0000021354,0.0000021355, -0.0000021394,0.0000021451,0.0000021503,0.0000021542,0.0000021555, -0.0000021546,0.0000021531,0.0000021515,0.0000021512,0.0000021519, -0.0000021528,0.0000021539,0.0000021556,0.0000021591,0.0000021638, -0.0000021688,0.0000021739,0.0000021791,0.0000021846,0.0000021907, -0.0000021982,0.0000022070,0.0000022156,0.0000022233,0.0000022298, -0.0000022354,0.0000022411,0.0000022480,0.0000022553,0.0000022605, -0.0000022615,0.0000022592,0.0000022571,0.0000022578,0.0000022608, -0.0000022615,0.0000022536,0.0000022344,0.0000022147,0.0000022023, -0.0000021920,0.0000021784,0.0000021623,0.0000021466,0.0000021328, -0.0000021196,0.0000021042,0.0000020858,0.0000020686,0.0000020561, -0.0000020473,0.0000020417,0.0000020400,0.0000020408,0.0000020425, -0.0000020453,0.0000020504,0.0000020581,0.0000020672,0.0000020753, -0.0000020810,0.0000020848,0.0000020880,0.0000020916,0.0000020961, -0.0000021031,0.0000021129,0.0000021226,0.0000021286,0.0000021284, -0.0000021223,0.0000021120,0.0000021018,0.0000020954,0.0000020938, -0.0000020953,0.0000020991,0.0000021040,0.0000021091,0.0000021160, -0.0000021271,0.0000021413,0.0000021537,0.0000021588,0.0000021597, -0.0000021561,0.0000021531,0.0000021511,0.0000021496,0.0000021477, -0.0000021442,0.0000021386,0.0000021307,0.0000021218,0.0000021131, -0.0000021061,0.0000021051,0.0000021119,0.0000021256,0.0000021415, -0.0000021537,0.0000021593,0.0000021594,0.0000021563,0.0000021527, -0.0000021524,0.0000021578,0.0000021687,0.0000021858,0.0000022080, -0.0000022326,0.0000022558,0.0000022746,0.0000022868,0.0000022903, -0.0000022899,0.0000022876,0.0000022867,0.0000022887,0.0000022938, -0.0000023004,0.0000023082,0.0000023189,0.0000023326,0.0000023477, -0.0000023624,0.0000023759,0.0000023881,0.0000023992,0.0000024097, -0.0000024202,0.0000024308,0.0000024411,0.0000024499,0.0000024572, -0.0000024626,0.0000024651,0.0000024643,0.0000024619,0.0000024575, -0.0000024514,0.0000024461,0.0000024423,0.0000024397,0.0000024375, -0.0000024357,0.0000024337,0.0000024307,0.0000024266,0.0000024219, -0.0000024175,0.0000024146,0.0000024136,0.0000024148,0.0000024184, -0.0000024231,0.0000024275,0.0000024305,0.0000024317,0.0000024317, -0.0000024303,0.0000024264,0.0000024195,0.0000024100,0.0000023987, -0.0000023861,0.0000023737,0.0000023627,0.0000023526,0.0000023421, -0.0000023309,0.0000023192,0.0000023083,0.0000022992,0.0000022913, -0.0000022827,0.0000022726,0.0000022626,0.0000022542,0.0000022486, -0.0000022427,0.0000022352,0.0000022250,0.0000022131,0.0000022011, -0.0000021906,0.0000021819,0.0000021758,0.0000021734,0.0000021738, -0.0000021762,0.0000021790,0.0000021815,0.0000021831,0.0000021830, -0.0000021810,0.0000021783,0.0000021761,0.0000021745,0.0000021737, -0.0000021734,0.0000021732,0.0000021731,0.0000021735,0.0000021737, -0.0000021733,0.0000021722,0.0000021709,0.0000021695,0.0000021675, -0.0000021644,0.0000021602,0.0000021560,0.0000021529,0.0000021507, -0.0000021500,0.0000021525,0.0000021589,0.0000021696,0.0000021848, -0.0000022039,0.0000022250,0.0000022468,0.0000022670,0.0000022842, -0.0000022963,0.0000023019,0.0000022991,0.0000022962,0.0000022891, -0.0000022825,0.0000022779,0.0000022757,0.0000022749,0.0000022732, -0.0000022679,0.0000022575,0.0000022427,0.0000022269,0.0000022132, -0.0000022028,0.0000021941,0.0000021862,0.0000021790,0.0000021723, -0.0000021668,0.0000021627,0.0000021616,0.0000021625,0.0000021639, -0.0000021660,0.0000021698,0.0000021743,0.0000021784,0.0000021826, -0.0000021862,0.0000021890,0.0000021908,0.0000021907,0.0000021878, -0.0000021827,0.0000021760,0.0000021678,0.0000021586,0.0000021504, -0.0000021434,0.0000021368,0.0000021302,0.0000021241,0.0000021188, -0.0000021146,0.0000021111,0.0000021090,0.0000021079,0.0000021077, -0.0000021081,0.0000021100,0.0000021124,0.0000021143,0.0000021152, -0.0000021154,0.0000021154,0.0000021151,0.0000021138,0.0000021120, -0.0000021106,0.0000021095,0.0000021083,0.0000021072,0.0000021060, -0.0000021039,0.0000021012,0.0000020980,0.0000020947,0.0000020914, -0.0000020880,0.0000020841,0.0000020796,0.0000020748,0.0000020699, -0.0000020654,0.0000020617,0.0000020603,0.0000020602,0.0000020615, -0.0000020647,0.0000020695,0.0000020754,0.0000020808,0.0000020844, -0.0000020865,0.0000020873,0.0000020867,0.0000020844,0.0000020806, -0.0000020758,0.0000020704,0.0000020642,0.0000020571,0.0000020503, -0.0000020454,0.0000020433,0.0000020434,0.0000020441,0.0000020450, -0.0000020466,0.0000020488,0.0000020514,0.0000020541,0.0000020569, -0.0000020594,0.0000020612,0.0000020620,0.0000020613,0.0000020596, -0.0000020578,0.0000020561,0.0000020547,0.0000020544,0.0000020544, -0.0000020543,0.0000020546,0.0000020553,0.0000020552,0.0000020548, -0.0000020554,0.0000020565,0.0000020572,0.0000020578,0.0000020588, -0.0000020598,0.0000020601,0.0000020601,0.0000020601,0.0000020607, -0.0000020614,0.0000020620,0.0000020628,0.0000020649,0.0000020683, -0.0000020716,0.0000020734,0.0000020727,0.0000020699,0.0000020642, -0.0000020600,0.0000020611,0.0000020645,0.0000020631,0.0000020586, -0.0000020564,0.0000020610,0.0000020665,0.0000020655,0.0000020578, -0.0000020498,0.0000020452,0.0000020441,0.0000020458,0.0000020502, -0.0000020560,0.0000020609,0.0000020627,0.0000020636,0.0000020666, -0.0000020691,0.0000020719,0.0000020872,0.0000021150,0.0000021344, -0.0000021367,0.0000021363,0.0000021427,0.0000021520,0.0000021559, -0.0000021554,0.0000021523,0.0000021452,0.0000021333,0.0000021188, -0.0000021067,0.0000021021,0.0000021012,0.0000020920,0.0000020703, -0.0000020527,0.0000020489,0.0000020507,0.0000020517,0.0000020493, -0.0000020438,0.0000020387,0.0000020370,0.0000020383,0.0000020424, -0.0000020471,0.0000020512,0.0000020545,0.0000020574,0.0000020597, -0.0000020613,0.0000020621,0.0000020623,0.0000020628,0.0000020645, -0.0000020670,0.0000020698,0.0000020723,0.0000020738,0.0000020743, -0.0000020740,0.0000020730,0.0000020716,0.0000020704,0.0000020698, -0.0000020698,0.0000020700,0.0000020702,0.0000020703,0.0000020704, -0.0000020700,0.0000020693,0.0000020683,0.0000020673,0.0000020672, -0.0000020675,0.0000020678,0.0000020682,0.0000020697,0.0000020697, -0.0000020644,0.0000020550,0.0000020462,0.0000020393,0.0000020357, -0.0000020362,0.0000020397,0.0000020430,0.0000020443,0.0000020439, -0.0000020430,0.0000020424,0.0000020419,0.0000020414,0.0000020407, -0.0000020395,0.0000020378,0.0000020355,0.0000020326,0.0000020292, -0.0000020260,0.0000020235,0.0000020214,0.0000020188,0.0000020156, -0.0000020127,0.0000020108,0.0000020096,0.0000020091,0.0000020096, -0.0000020122,0.0000020159,0.0000020188,0.0000020196,0.0000020187, -0.0000020165,0.0000020147,0.0000020142,0.0000020149,0.0000020165, -0.0000020189,0.0000020220,0.0000020260,0.0000020310,0.0000020363, -0.0000020415,0.0000020454,0.0000020473,0.0000020468,0.0000020454, -0.0000020431,0.0000020427,0.0000020453,0.0000020528,0.0000020638, -0.0000020740,0.0000020800,0.0000020810,0.0000020819,0.0000020818, -0.0000020800,0.0000020756,0.0000020699,0.0000020672,0.0000020680, -0.0000020698,0.0000020715,0.0000020733,0.0000020772,0.0000020884, -0.0000021100,0.0000021353,0.0000021558,0.0000021704,0.0000021817, -0.0000021905,0.0000021956,0.0000021968,0.0000021951,0.0000021900, -0.0000021824,0.0000021736,0.0000021649,0.0000021587,0.0000021588, -0.0000021650,0.0000021709,0.0000021667,0.0000021502,0.0000021624, -0.0000021464,0.0000021333,0.0000021301,0.0000021324,0.0000021382, -0.0000021460,0.0000021546,0.0000021631,0.0000021694,0.0000021711, -0.0000021702,0.0000021670,0.0000021624,0.0000021588,0.0000021582, -0.0000021587,0.0000021600,0.0000021615,0.0000021630,0.0000021641, -0.0000021650,0.0000021660,0.0000021668,0.0000021671,0.0000021673, -0.0000021678,0.0000021696,0.0000021718,0.0000021725,0.0000021708, -0.0000021670,0.0000021602,0.0000021496,0.0000021375,0.0000021270, -0.0000021198,0.0000021162,0.0000021151,0.0000021146,0.0000021141, -0.0000021138,0.0000021133,0.0000021125,0.0000021114,0.0000021105, -0.0000021105,0.0000021116,0.0000021133,0.0000021141,0.0000021129, -0.0000021102,0.0000021083,0.0000021074,0.0000021071,0.0000021074, -0.0000021078,0.0000021083,0.0000021092,0.0000021109,0.0000021133, -0.0000021161,0.0000021185,0.0000021198,0.0000021204,0.0000021215, -0.0000021230,0.0000021242,0.0000021265,0.0000021294,0.0000021349, -0.0000021409,0.0000021477,0.0000021562,0.0000021649,0.0000021726, -0.0000021789,0.0000021827,0.0000021847,0.0000021842,0.0000021842, -0.0000021819,0.0000021797,0.0000021774,0.0000021751,0.0000021735, -0.0000021730,0.0000021728,0.0000021716,0.0000021694,0.0000021668, -0.0000021643,0.0000021628,0.0000021625,0.0000021626,0.0000021624, -0.0000021619,0.0000021608,0.0000021591,0.0000021572,0.0000021560, -0.0000021563,0.0000021580,0.0000021606,0.0000021626,0.0000021637, -0.0000021640,0.0000021640,0.0000021643,0.0000021650,0.0000021657, -0.0000021663,0.0000021663,0.0000021657,0.0000021645,0.0000021626, -0.0000021593,0.0000021548,0.0000021512,0.0000021499,0.0000021488, -0.0000021474,0.0000021467,0.0000021468,0.0000021478,0.0000021495, -0.0000021514,0.0000021530,0.0000021535,0.0000021532,0.0000021534, -0.0000021543,0.0000021549,0.0000021546,0.0000021534,0.0000021510, -0.0000021479,0.0000021458,0.0000021454,0.0000021456,0.0000021461, -0.0000021470,0.0000021477,0.0000021489,0.0000021513,0.0000021542, -0.0000021562,0.0000021568,0.0000021571,0.0000021576,0.0000021574, -0.0000021561,0.0000021555,0.0000021558,0.0000021574,0.0000021597, -0.0000021617,0.0000021633,0.0000021663,0.0000021701,0.0000021731, -0.0000021749,0.0000021757,0.0000021757,0.0000021752,0.0000021723, -0.0000021679,0.0000021623,0.0000021570,0.0000021548,0.0000021557, -0.0000021600,0.0000021653,0.0000021700,0.0000021735,0.0000021754, -0.0000021757,0.0000021772,0.0000021845,0.0000022010,0.0000022190, -0.0000022292,0.0000022310,0.0000022297,0.0000022292,0.0000022327, -0.0000022425,0.0000022553,0.0000022666,0.0000022740,0.0000022776, -0.0000022789,0.0000022791,0.0000022788,0.0000022778,0.0000022759, -0.0000022745,0.0000022736,0.0000022737,0.0000022744,0.0000022757, -0.0000022771,0.0000022785,0.0000022794,0.0000022802,0.0000022812, -0.0000022829,0.0000022853,0.0000022881,0.0000022904,0.0000022923, -0.0000022936,0.0000022948,0.0000022960,0.0000022974,0.0000022989, -0.0000023010,0.0000023034,0.0000023059,0.0000023074,0.0000023072, -0.0000023055,0.0000023023,0.0000022985,0.0000022946,0.0000022908, -0.0000022886,0.0000022855,0.0000022829,0.0000022811,0.0000022796, -0.0000022785,0.0000022779,0.0000022780,0.0000022784,0.0000022791, -0.0000022799,0.0000022808,0.0000022818,0.0000022830,0.0000022840, -0.0000022848,0.0000022850,0.0000022847,0.0000022835,0.0000022816, -0.0000022797,0.0000022778,0.0000022757,0.0000022734,0.0000022713, -0.0000022698,0.0000022693,0.0000022694,0.0000022695,0.0000022715, -0.0000022748,0.0000022790,0.0000022839,0.0000022890,0.0000022934, -0.0000022969,0.0000022994,0.0000023013,0.0000023023,0.0000023024, -0.0000023021,0.0000023019,0.0000023018,0.0000023013,0.0000023001, -0.0000022983,0.0000022961,0.0000022940,0.0000022915,0.0000022881, -0.0000022844,0.0000022804,0.0000022759,0.0000022717,0.0000022681, -0.0000022643,0.0000022608,0.0000022581,0.0000022553,0.0000022522, -0.0000022482,0.0000022443,0.0000022412,0.0000022388,0.0000022370, -0.0000022359,0.0000022351,0.0000022343,0.0000022335,0.0000022328, -0.0000022320,0.0000022306,0.0000022282,0.0000022246,0.0000022201, -0.0000022144,0.0000022069,0.0000021970,0.0000021858,0.0000021747, -0.0000021644,0.0000021553,0.0000021481,0.0000021416,0.0000021339, -0.0000021246,0.0000021167,0.0000021109,0.0000021059,0.0000021042, -0.0000021071,0.0000021143,0.0000021222,0.0000021281,0.0000021313, -0.0000021326,0.0000021331,0.0000021327,0.0000021319,0.0000021316, -0.0000021313,0.0000021304,0.0000021282,0.0000021247,0.0000021202, -0.0000021166,0.0000021142,0.0000021124,0.0000021108,0.0000021095, -0.0000021093,0.0000021096,0.0000021093,0.0000021084,0.0000021088, -0.0000021116,0.0000021161,0.0000021191,0.0000021203,0.0000021224, -0.0000021295,0.0000021451,0.0000021694,0.0000021930,0.0000022054, -0.0000022096,0.0000022100,0.0000022081,0.0000022043,0.0000021993, -0.0000021940,0.0000021896,0.0000021885,0.0000021892,0.0000021921, -0.0000021965,0.0000022011,0.0000022047,0.0000022073,0.0000022102, -0.0000022142,0.0000022171,0.0000022199,0.0000022251,0.0000022301, -0.0000022293,0.0000022228,0.0000022157,0.0000022120,0.0000022092, -0.0000022051,0.0000022037,0.0000022069,0.0000022132,0.0000022196, -0.0000022236,0.0000022255,0.0000022256,0.0000022253,0.0000022275, -0.0000022324,0.0000022383,0.0000022442,0.0000022491,0.0000022521, -0.0000022543,0.0000022564,0.0000022580,0.0000022583,0.0000022569, -0.0000022535,0.0000022491,0.0000022452,0.0000022426,0.0000022413, -0.0000022405,0.0000022391,0.0000022373,0.0000022349,0.0000022320, -0.0000022285,0.0000022249,0.0000022204,0.0000022143,0.0000022081, -0.0000022025,0.0000021982,0.0000021976,0.0000021999,0.0000022037, -0.0000022099,0.0000022170,0.0000022278,0.0000022525,0.0000022769, -0.0000022837,0.0000022843,0.0000022861,0.0000022882,0.0000022871, -0.0000022853,0.0000022815,0.0000022735,0.0000022668,0.0000022638, -0.0000022625,0.0000022568,0.0000022472,0.0000022297,0.0000022129, -0.0000022123,0.0000022233,0.0000022323,0.0000022400,0.0000022457, -0.0000022534,0.0000022666,0.0000022807,0.0000022925,0.0000022989, -0.0000022998,0.0000022978,0.0000022957,0.0000022944,0.0000022930, -0.0000022900,0.0000022867,0.0000022859,0.0000022892,0.0000022961, -0.0000023037,0.0000023088,0.0000023119,0.0000023146,0.0000023169, -0.0000023168,0.0000023122,0.0000023060,0.0000023021,0.0000022990, -0.0000022932,0.0000022867,0.0000022834,0.0000022827,0.0000022830, -0.0000022838,0.0000022854,0.0000022892,0.0000022955,0.0000023014, -0.0000023054,0.0000023076,0.0000023081,0.0000023075,0.0000023062, -0.0000023044,0.0000023013,0.0000022973,0.0000022944,0.0000022919, -0.0000022901,0.0000022889,0.0000022871,0.0000022841,0.0000022817, -0.0000022819,0.0000022844,0.0000022871,0.0000022890,0.0000022902, -0.0000022904,0.0000022913,0.0000022956,0.0000023010,0.0000023070, -0.0000023136,0.0000023173,0.0000023134,0.0000023058,0.0000023047, -0.0000023055,0.0000023021,0.0000022873,0.0000022705,0.0000022469, -0.0000022165,0.0000022117,0.0000022218,0.0000022199,0.0000022104, -0.0000022128,0.0000022277,0.0000022336,0.0000022159,0.0000021934, -0.0000021913,0.0000021999,0.0000022080,0.0000022123,0.0000022150, -0.0000022164,0.0000022169,0.0000022172,0.0000022174,0.0000022172, -0.0000022172,0.0000022173,0.0000022175,0.0000022179,0.0000022184, -0.0000022196,0.0000022215,0.0000022243,0.0000022274,0.0000022303, -0.0000022323,0.0000022324,0.0000022301,0.0000022262,0.0000022226, -0.0000022200,0.0000022192,0.0000022198,0.0000022215,0.0000022254, -0.0000022311,0.0000022354,0.0000022353,0.0000022285,0.0000022160, -0.0000022057,0.0000022022,0.0000022035,0.0000022105,0.0000022189, -0.0000022266,0.0000022350,0.0000022450,0.0000022544,0.0000022615, -0.0000022669,0.0000022709,0.0000022732,0.0000022725,0.0000022688, -0.0000022623,0.0000022542,0.0000022472,0.0000022416,0.0000022354, -0.0000022280,0.0000022219,0.0000022184,0.0000022182,0.0000022186, -0.0000022190,0.0000022182,0.0000022165,0.0000022146,0.0000022137, -0.0000022140,0.0000022161,0.0000022193,0.0000022240,0.0000022288, -0.0000022330,0.0000022368,0.0000022403,0.0000022424,0.0000022434, -0.0000022436,0.0000022430,0.0000022415,0.0000022395,0.0000022374, -0.0000022357,0.0000022345,0.0000022327,0.0000022300,0.0000022268, -0.0000022245,0.0000022233,0.0000022228,0.0000022224,0.0000022217, -0.0000022213,0.0000022213,0.0000022213,0.0000022212,0.0000022212, -0.0000022223,0.0000022250,0.0000022289,0.0000022341,0.0000022411, -0.0000022497,0.0000022585,0.0000022662,0.0000022721,0.0000022759, -0.0000022786,0.0000022816,0.0000022862,0.0000022941,0.0000023049, -0.0000023162,0.0000023255,0.0000023310,0.0000023332,0.0000023341, -0.0000023356,0.0000023358,0.0000023342,0.0000023313,0.0000023286, -0.0000023276,0.0000023286,0.0000023329,0.0000023396,0.0000023477, -0.0000023562,0.0000023634,0.0000023673,0.0000023679,0.0000023653, -0.0000023582,0.0000023494,0.0000023425,0.0000023388,0.0000023379, -0.0000023390,0.0000023422,0.0000023456,0.0000023482,0.0000023501, -0.0000023514,0.0000023522,0.0000023524,0.0000023521,0.0000023519, -0.0000023521,0.0000023525,0.0000023529,0.0000023530,0.0000023530, -0.0000023527,0.0000023516,0.0000023496,0.0000023471,0.0000023445, -0.0000023431,0.0000023430,0.0000023440,0.0000023461,0.0000023484, -0.0000023501,0.0000023507,0.0000023504,0.0000023494,0.0000023476, -0.0000023455,0.0000023438,0.0000023429,0.0000023418,0.0000023402, -0.0000023381,0.0000023354,0.0000023322,0.0000023289,0.0000023261, -0.0000023241,0.0000023228,0.0000023219,0.0000023212,0.0000023205, -0.0000023194,0.0000023173,0.0000023143,0.0000023101,0.0000023053, -0.0000023004,0.0000022960,0.0000022924,0.0000022898,0.0000022883, -0.0000022885,0.0000022909,0.0000022941,0.0000022961,0.0000022963, -0.0000022957,0.0000022958,0.0000022968,0.0000022978,0.0000022973, -0.0000022951,0.0000022929,0.0000022920,0.0000022887,0.0000022797, -0.0000022682,0.0000022603,0.0000022571,0.0000022549,0.0000022498, -0.0000022407,0.0000022297,0.0000022210,0.0000022157,0.0000022106, -0.0000022017,0.0000021889,0.0000021742,0.0000021611,0.0000021513, -0.0000021446,0.0000021397,0.0000021354,0.0000021316,0.0000021284, -0.0000021265,0.0000021262,0.0000021269,0.0000021283,0.0000021299, -0.0000021311,0.0000021317,0.0000021313,0.0000021297,0.0000021267, -0.0000021231,0.0000021195,0.0000021156,0.0000021122,0.0000021101, -0.0000021094,0.0000021100,0.0000021116,0.0000021131,0.0000021142, -0.0000021152,0.0000021159,0.0000021163,0.0000021164,0.0000021155, -0.0000021135,0.0000021117,0.0000021095,0.0000021084,0.0000021094, -0.0000021120,0.0000021176,0.0000021257,0.0000021347,0.0000021434, -0.0000021510,0.0000021569,0.0000021616,0.0000021657,0.0000021692, -0.0000021723,0.0000021752,0.0000021785,0.0000021822,0.0000021865, -0.0000021912,0.0000021952,0.0000021982,0.0000022006,0.0000022026, -0.0000022045,0.0000022076,0.0000022114,0.0000022139,0.0000022155, -0.0000022184,0.0000022232,0.0000022267,0.0000022255,0.0000022207, -0.0000022173,0.0000022184,0.0000022232,0.0000022280,0.0000022314, -0.0000022340,0.0000022354,0.0000022342,0.0000022314,0.0000022282, -0.0000022272,0.0000022303,0.0000022337,0.0000022316,0.0000022280, -0.0000022249,0.0000022227,0.0000022206,0.0000022182,0.0000022156, -0.0000022139,0.0000022137,0.0000022149,0.0000022167,0.0000022203, -0.0000022260,0.0000022347,0.0000022489,0.0000022670,0.0000022803, -0.0000022831,0.0000022789,0.0000022725,0.0000022692,0.0000022681, -0.0000022682,0.0000022738,0.0000022925,0.0000023150,0.0000023240, -0.0000023243,0.0000023216,0.0000023093,0.0000022897,0.0000022583, -0.0000022211,0.0000022050,0.0000022047,0.0000022071,0.0000022094, -0.0000022145,0.0000022191,0.0000022196,0.0000022161,0.0000022113, -0.0000022074,0.0000022050,0.0000022042,0.0000022043,0.0000022059, -0.0000022087,0.0000022106,0.0000022104,0.0000022071,0.0000022033, -0.0000022020,0.0000022022,0.0000022036,0.0000022069,0.0000022129, -0.0000022226,0.0000022345,0.0000022434,0.0000022445,0.0000022383, -0.0000022300,0.0000022276,0.0000022315,0.0000022386,0.0000022461, -0.0000022529,0.0000022586,0.0000022606,0.0000022599,0.0000022587, -0.0000022582,0.0000022577,0.0000022568,0.0000022558,0.0000022543, -0.0000022516,0.0000022470,0.0000022414,0.0000022361,0.0000022326, -0.0000022316,0.0000022324,0.0000022345,0.0000022366,0.0000022381, -0.0000022392,0.0000022409,0.0000022450,0.0000022499,0.0000022515, -0.0000022495,0.0000022438,0.0000022367,0.0000022288,0.0000022185, -0.0000022047,0.0000021892,0.0000021772,0.0000021742,0.0000021804, -0.0000021971,0.0000022140,0.0000022179,0.0000022137,0.0000022141, -0.0000022312,0.0000022593,0.0000022674,0.0000022466,0.0000022093, -0.0000021910,0.0000021901,0.0000021877,0.0000021789,0.0000021675, -0.0000021601,0.0000021585,0.0000021594,0.0000021590,0.0000021571, -0.0000021543,0.0000021511,0.0000021476,0.0000021433,0.0000021391, -0.0000021363,0.0000021365,0.0000021401,0.0000021458,0.0000021519, -0.0000021562,0.0000021576,0.0000021572,0.0000021563,0.0000021554, -0.0000021551,0.0000021553,0.0000021562,0.0000021576,0.0000021595, -0.0000021625,0.0000021668,0.0000021717,0.0000021768,0.0000021821, -0.0000021874,0.0000021929,0.0000021993,0.0000022070,0.0000022154, -0.0000022239,0.0000022313,0.0000022376,0.0000022433,0.0000022498, -0.0000022568,0.0000022620,0.0000022634,0.0000022620,0.0000022604, -0.0000022609,0.0000022634,0.0000022637,0.0000022553,0.0000022357, -0.0000022152,0.0000022020,0.0000021915,0.0000021775,0.0000021612, -0.0000021455,0.0000021315,0.0000021187,0.0000021038,0.0000020861, -0.0000020692,0.0000020560,0.0000020467,0.0000020406,0.0000020385, -0.0000020388,0.0000020398,0.0000020410,0.0000020430,0.0000020475, -0.0000020558,0.0000020660,0.0000020752,0.0000020813,0.0000020844, -0.0000020870,0.0000020902,0.0000020941,0.0000021005,0.0000021106, -0.0000021218,0.0000021284,0.0000021279,0.0000021215,0.0000021105, -0.0000021000,0.0000020940,0.0000020931,0.0000020950,0.0000020997, -0.0000021049,0.0000021097,0.0000021152,0.0000021242,0.0000021378, -0.0000021518,0.0000021598,0.0000021611,0.0000021602,0.0000021576, -0.0000021564,0.0000021558,0.0000021545,0.0000021514,0.0000021458, -0.0000021381,0.0000021292,0.0000021191,0.0000021100,0.0000021066, -0.0000021075,0.0000021188,0.0000021343,0.0000021474,0.0000021543, -0.0000021547,0.0000021505,0.0000021461,0.0000021457,0.0000021515, -0.0000021637,0.0000021816,0.0000022033,0.0000022275,0.0000022514, -0.0000022716,0.0000022856,0.0000022918,0.0000022917,0.0000022886, -0.0000022862,0.0000022863,0.0000022894,0.0000022938,0.0000022989, -0.0000023055,0.0000023148,0.0000023269,0.0000023411,0.0000023561, -0.0000023705,0.0000023832,0.0000023944,0.0000024052,0.0000024160, -0.0000024265,0.0000024372,0.0000024474,0.0000024558,0.0000024611, -0.0000024636,0.0000024623,0.0000024591,0.0000024546,0.0000024495, -0.0000024455,0.0000024424,0.0000024403,0.0000024391,0.0000024383, -0.0000024368,0.0000024343,0.0000024310,0.0000024275,0.0000024249, -0.0000024238,0.0000024246,0.0000024269,0.0000024303,0.0000024331, -0.0000024345,0.0000024346,0.0000024343,0.0000024324,0.0000024276, -0.0000024191,0.0000024081,0.0000023952,0.0000023812,0.0000023686, -0.0000023590,0.0000023515,0.0000023439,0.0000023345,0.0000023230, -0.0000023104,0.0000022981,0.0000022866,0.0000022754,0.0000022641, -0.0000022538,0.0000022468,0.0000022420,0.0000022368,0.0000022297, -0.0000022189,0.0000022059,0.0000021931,0.0000021826,0.0000021758, -0.0000021720,0.0000021713,0.0000021723,0.0000021739,0.0000021755, -0.0000021770,0.0000021778,0.0000021778,0.0000021769,0.0000021751, -0.0000021728,0.0000021710,0.0000021697,0.0000021690,0.0000021692, -0.0000021705,0.0000021718,0.0000021723,0.0000021716,0.0000021706, -0.0000021698,0.0000021683,0.0000021657,0.0000021618,0.0000021575, -0.0000021539,0.0000021513,0.0000021497,0.0000021489,0.0000021485, -0.0000021483,0.0000021511,0.0000021580,0.0000021690,0.0000021838, -0.0000022021,0.0000022231,0.0000022445,0.0000022639,0.0000022796, -0.0000022897,0.0000022922,0.0000022877,0.0000022846,0.0000022810, -0.0000022783,0.0000022773,0.0000022765,0.0000022731,0.0000022645, -0.0000022507,0.0000022351,0.0000022205,0.0000022082,0.0000021981, -0.0000021888,0.0000021795,0.0000021704,0.0000021631,0.0000021591, -0.0000021581,0.0000021586,0.0000021607,0.0000021645,0.0000021692, -0.0000021738,0.0000021783,0.0000021821,0.0000021850,0.0000021869, -0.0000021873,0.0000021851,0.0000021807,0.0000021749,0.0000021679, -0.0000021592,0.0000021498,0.0000021418,0.0000021346,0.0000021278, -0.0000021214,0.0000021152,0.0000021096,0.0000021056,0.0000021030, -0.0000021019,0.0000021020,0.0000021029,0.0000021050,0.0000021078, -0.0000021100,0.0000021114,0.0000021121,0.0000021128,0.0000021134, -0.0000021134,0.0000021125,0.0000021112,0.0000021102,0.0000021094, -0.0000021083,0.0000021070,0.0000021055,0.0000021034,0.0000021007, -0.0000020976,0.0000020943,0.0000020911,0.0000020871,0.0000020825, -0.0000020774,0.0000020725,0.0000020678,0.0000020634,0.0000020602, -0.0000020574,0.0000020555,0.0000020546,0.0000020566,0.0000020606, -0.0000020663,0.0000020717,0.0000020759,0.0000020789,0.0000020797, -0.0000020790,0.0000020763,0.0000020721,0.0000020674,0.0000020622, -0.0000020565,0.0000020500,0.0000020434,0.0000020387,0.0000020377, -0.0000020385,0.0000020395,0.0000020404,0.0000020411,0.0000020418, -0.0000020430,0.0000020446,0.0000020462,0.0000020477,0.0000020491, -0.0000020503,0.0000020512,0.0000020516,0.0000020519,0.0000020517, -0.0000020520,0.0000020527,0.0000020533,0.0000020543,0.0000020553, -0.0000020554,0.0000020549,0.0000020548,0.0000020548,0.0000020539, -0.0000020532,0.0000020533,0.0000020539,0.0000020542,0.0000020544, -0.0000020552,0.0000020567,0.0000020586,0.0000020603,0.0000020606, -0.0000020598,0.0000020591,0.0000020598,0.0000020622,0.0000020666, -0.0000020714,0.0000020727,0.0000020691,0.0000020615,0.0000020586, -0.0000020612,0.0000020628,0.0000020582,0.0000020540,0.0000020567, -0.0000020622,0.0000020620,0.0000020553,0.0000020471,0.0000020419, -0.0000020409,0.0000020428,0.0000020476,0.0000020535,0.0000020580, -0.0000020600,0.0000020622,0.0000020663,0.0000020686,0.0000020748, -0.0000020966,0.0000021242,0.0000021362,0.0000021353,0.0000021351, -0.0000021405,0.0000021463,0.0000021480,0.0000021459,0.0000021385, -0.0000021261,0.0000021131,0.0000021044,0.0000021020,0.0000020994, -0.0000020844,0.0000020617,0.0000020484,0.0000020478,0.0000020500, -0.0000020518,0.0000020499,0.0000020441,0.0000020370,0.0000020333, -0.0000020337,0.0000020382,0.0000020441,0.0000020492,0.0000020530, -0.0000020559,0.0000020583,0.0000020600,0.0000020608,0.0000020608, -0.0000020608,0.0000020618,0.0000020640,0.0000020669,0.0000020694, -0.0000020714,0.0000020726,0.0000020730,0.0000020730,0.0000020723, -0.0000020714,0.0000020708,0.0000020704,0.0000020700,0.0000020695, -0.0000020688,0.0000020682,0.0000020676,0.0000020669,0.0000020663, -0.0000020655,0.0000020654,0.0000020664,0.0000020677,0.0000020685, -0.0000020697,0.0000020713,0.0000020702,0.0000020629,0.0000020523, -0.0000020428,0.0000020363,0.0000020340,0.0000020351,0.0000020385, -0.0000020415,0.0000020432,0.0000020435,0.0000020433,0.0000020424, -0.0000020414,0.0000020406,0.0000020399,0.0000020391,0.0000020381, -0.0000020365,0.0000020343,0.0000020312,0.0000020274,0.0000020241, -0.0000020216,0.0000020193,0.0000020163,0.0000020134,0.0000020112, -0.0000020099,0.0000020088,0.0000020081,0.0000020083,0.0000020100, -0.0000020127,0.0000020147,0.0000020149,0.0000020130,0.0000020099, -0.0000020081,0.0000020081,0.0000020093,0.0000020111,0.0000020133, -0.0000020166,0.0000020214,0.0000020270,0.0000020323,0.0000020366, -0.0000020397,0.0000020421,0.0000020437,0.0000020437,0.0000020424, -0.0000020405,0.0000020399,0.0000020423,0.0000020489,0.0000020586, -0.0000020683,0.0000020753,0.0000020793,0.0000020817,0.0000020848, -0.0000020855,0.0000020823,0.0000020759,0.0000020711,0.0000020703, -0.0000020707,0.0000020710,0.0000020707,0.0000020722,0.0000020837, -0.0000021078,0.0000021364,0.0000021583,0.0000021715,0.0000021808, -0.0000021884,0.0000021918,0.0000021913,0.0000021870,0.0000021810, -0.0000021739,0.0000021668,0.0000021599,0.0000021558,0.0000021577, -0.0000021652,0.0000021687,0.0000021657,0.0000021683,0.0000021610, -0.0000021469,0.0000021356,0.0000021330,0.0000021355,0.0000021406, -0.0000021475,0.0000021555,0.0000021636,0.0000021692,0.0000021713, -0.0000021709,0.0000021686,0.0000021665,0.0000021655,0.0000021654, -0.0000021660,0.0000021667,0.0000021672,0.0000021675,0.0000021678, -0.0000021682,0.0000021686,0.0000021684,0.0000021672,0.0000021642, -0.0000021596,0.0000021526,0.0000021435,0.0000021342,0.0000021260, -0.0000021185,0.0000021126,0.0000021104,0.0000021111,0.0000021136, -0.0000021160,0.0000021171,0.0000021171,0.0000021168,0.0000021160, -0.0000021144,0.0000021124,0.0000021114,0.0000021115,0.0000021130, -0.0000021150,0.0000021158,0.0000021151,0.0000021134,0.0000021118, -0.0000021109,0.0000021107,0.0000021111,0.0000021112,0.0000021106, -0.0000021108,0.0000021120,0.0000021141,0.0000021168,0.0000021195, -0.0000021216,0.0000021228,0.0000021236,0.0000021251,0.0000021264, -0.0000021274,0.0000021278,0.0000021281,0.0000021288,0.0000021289, -0.0000021301,0.0000021353,0.0000021414,0.0000021497,0.0000021594, -0.0000021688,0.0000021766,0.0000021823,0.0000021859,0.0000021878, -0.0000021874,0.0000021873,0.0000021844,0.0000021819,0.0000021801, -0.0000021785,0.0000021766,0.0000021741,0.0000021716,0.0000021698, -0.0000021692,0.0000021690,0.0000021681,0.0000021663,0.0000021642, -0.0000021617,0.0000021591,0.0000021570,0.0000021563,0.0000021573, -0.0000021594,0.0000021615,0.0000021627,0.0000021628,0.0000021624, -0.0000021620,0.0000021616,0.0000021614,0.0000021611,0.0000021607, -0.0000021602,0.0000021592,0.0000021579,0.0000021557,0.0000021520, -0.0000021480,0.0000021459,0.0000021456,0.0000021449,0.0000021441, -0.0000021441,0.0000021445,0.0000021455,0.0000021473,0.0000021494, -0.0000021506,0.0000021505,0.0000021497,0.0000021494,0.0000021496, -0.0000021491,0.0000021476,0.0000021453,0.0000021424,0.0000021396, -0.0000021379,0.0000021376,0.0000021381,0.0000021389,0.0000021398, -0.0000021409,0.0000021423,0.0000021447,0.0000021475,0.0000021498, -0.0000021508,0.0000021516,0.0000021522,0.0000021516,0.0000021499, -0.0000021483,0.0000021472,0.0000021473,0.0000021486,0.0000021504, -0.0000021526,0.0000021563,0.0000021608,0.0000021649,0.0000021687, -0.0000021722,0.0000021752,0.0000021769,0.0000021774,0.0000021772, -0.0000021738,0.0000021681,0.0000021619,0.0000021580,0.0000021581, -0.0000021621,0.0000021685,0.0000021741,0.0000021773,0.0000021778, -0.0000021766,0.0000021760,0.0000021800,0.0000021960,0.0000022158, -0.0000022282,0.0000022304,0.0000022278,0.0000022260,0.0000022279, -0.0000022368,0.0000022488,0.0000022595,0.0000022677,0.0000022737, -0.0000022778,0.0000022801,0.0000022810,0.0000022806,0.0000022792, -0.0000022772,0.0000022753,0.0000022743,0.0000022737,0.0000022736, -0.0000022741,0.0000022750,0.0000022760,0.0000022774,0.0000022796, -0.0000022825,0.0000022860,0.0000022896,0.0000022927,0.0000022950, -0.0000022970,0.0000022988,0.0000023004,0.0000023017,0.0000023030, -0.0000023045,0.0000023063,0.0000023078,0.0000023089,0.0000023095, -0.0000023093,0.0000023086,0.0000023071,0.0000023043,0.0000023003, -0.0000022952,0.0000022892,0.0000022831,0.0000022775,0.0000022739, -0.0000022700,0.0000022673,0.0000022658,0.0000022649,0.0000022644, -0.0000022643,0.0000022643,0.0000022647,0.0000022655,0.0000022668, -0.0000022682,0.0000022693,0.0000022700,0.0000022709,0.0000022724, -0.0000022737,0.0000022735,0.0000022742,0.0000022752,0.0000022769, -0.0000022792,0.0000022817,0.0000022847,0.0000022883,0.0000022924, -0.0000022966,0.0000023009,0.0000023049,0.0000023080,0.0000023102, -0.0000023117,0.0000023125,0.0000023125,0.0000023118,0.0000023106, -0.0000023095,0.0000023086,0.0000023075,0.0000023057,0.0000023032, -0.0000023001,0.0000022963,0.0000022920,0.0000022874,0.0000022819, -0.0000022760,0.0000022700,0.0000022640,0.0000022583,0.0000022533, -0.0000022491,0.0000022454,0.0000022419,0.0000022383,0.0000022344, -0.0000022309,0.0000022283,0.0000022266,0.0000022260,0.0000022262, -0.0000022265,0.0000022265,0.0000022263,0.0000022260,0.0000022258, -0.0000022249,0.0000022226,0.0000022187,0.0000022133,0.0000022060, -0.0000021967,0.0000021857,0.0000021737,0.0000021622,0.0000021532, -0.0000021472,0.0000021425,0.0000021366,0.0000021286,0.0000021204, -0.0000021131,0.0000021055,0.0000021014,0.0000021028,0.0000021083, -0.0000021160,0.0000021218,0.0000021248,0.0000021261,0.0000021267, -0.0000021271,0.0000021273,0.0000021267,0.0000021267,0.0000021268, -0.0000021261,0.0000021239,0.0000021200,0.0000021153,0.0000021123, -0.0000021103,0.0000021090,0.0000021085,0.0000021083,0.0000021079, -0.0000021077,0.0000021071,0.0000021071,0.0000021096,0.0000021150, -0.0000021201,0.0000021223,0.0000021244,0.0000021312,0.0000021465, -0.0000021695,0.0000021916,0.0000022029,0.0000022064,0.0000022069, -0.0000022041,0.0000021995,0.0000021944,0.0000021894,0.0000021856, -0.0000021850,0.0000021873,0.0000021917,0.0000021965,0.0000022003, -0.0000022032,0.0000022059,0.0000022102,0.0000022154,0.0000022187, -0.0000022231,0.0000022295,0.0000022323,0.0000022276,0.0000022182, -0.0000022124,0.0000022094,0.0000022052,0.0000022013,0.0000022017, -0.0000022083,0.0000022177,0.0000022237,0.0000022253,0.0000022243, -0.0000022230,0.0000022206,0.0000022194,0.0000022202,0.0000022240, -0.0000022292,0.0000022342,0.0000022388,0.0000022425,0.0000022453, -0.0000022471,0.0000022476,0.0000022474,0.0000022455,0.0000022417, -0.0000022377,0.0000022347,0.0000022335,0.0000022339,0.0000022344, -0.0000022332,0.0000022304,0.0000022262,0.0000022215,0.0000022169, -0.0000022130,0.0000022089,0.0000022037,0.0000021992,0.0000021968, -0.0000021961,0.0000021968,0.0000021978,0.0000022009,0.0000022088, -0.0000022212,0.0000022473,0.0000022747,0.0000022864,0.0000022887, -0.0000022908,0.0000022919,0.0000022885,0.0000022830,0.0000022764, -0.0000022660,0.0000022576,0.0000022550,0.0000022553,0.0000022540, -0.0000022487,0.0000022363,0.0000022155,0.0000022071,0.0000022136, -0.0000022241,0.0000022333,0.0000022402,0.0000022443,0.0000022506, -0.0000022633,0.0000022767,0.0000022877,0.0000022946,0.0000022964, -0.0000022955,0.0000022937,0.0000022911,0.0000022896,0.0000022877, -0.0000022849,0.0000022838,0.0000022857,0.0000022908,0.0000022978, -0.0000023034,0.0000023067,0.0000023106,0.0000023144,0.0000023160, -0.0000023140,0.0000023090,0.0000023038,0.0000023008,0.0000022984, -0.0000022935,0.0000022880,0.0000022842,0.0000022829,0.0000022832, -0.0000022842,0.0000022865,0.0000022912,0.0000022960,0.0000022996, -0.0000023021,0.0000023036,0.0000023041,0.0000023042,0.0000023033, -0.0000023007,0.0000022977,0.0000022953,0.0000022932,0.0000022913, -0.0000022898,0.0000022880,0.0000022849,0.0000022818,0.0000022812, -0.0000022826,0.0000022853,0.0000022879,0.0000022889,0.0000022883, -0.0000022888,0.0000022927,0.0000022988,0.0000023052,0.0000023118, -0.0000023156,0.0000023134,0.0000023051,0.0000023026,0.0000023041, -0.0000023038,0.0000022927,0.0000022756,0.0000022583,0.0000022281, -0.0000022114,0.0000022172,0.0000022229,0.0000022132,0.0000022074, -0.0000022155,0.0000022295,0.0000022314,0.0000022113,0.0000021936, -0.0000021950,0.0000022046,0.0000022124,0.0000022157,0.0000022162, -0.0000022158,0.0000022154,0.0000022151,0.0000022141,0.0000022125, -0.0000022119,0.0000022120,0.0000022128,0.0000022142,0.0000022164, -0.0000022191,0.0000022221,0.0000022251,0.0000022280,0.0000022304, -0.0000022320,0.0000022319,0.0000022298,0.0000022261,0.0000022212, -0.0000022166,0.0000022129,0.0000022116,0.0000022126,0.0000022165, -0.0000022243,0.0000022331,0.0000022377,0.0000022372,0.0000022282, -0.0000022158,0.0000022054,0.0000022011,0.0000022039,0.0000022120, -0.0000022206,0.0000022289,0.0000022383,0.0000022488,0.0000022583, -0.0000022657,0.0000022708,0.0000022738,0.0000022748,0.0000022736, -0.0000022693,0.0000022629,0.0000022553,0.0000022488,0.0000022431, -0.0000022371,0.0000022303,0.0000022243,0.0000022200,0.0000022176, -0.0000022170,0.0000022152,0.0000022136,0.0000022120,0.0000022107, -0.0000022108,0.0000022126,0.0000022159,0.0000022203,0.0000022246, -0.0000022283,0.0000022316,0.0000022345,0.0000022364,0.0000022374, -0.0000022382,0.0000022383,0.0000022375,0.0000022364,0.0000022359, -0.0000022359,0.0000022360,0.0000022350,0.0000022331,0.0000022308, -0.0000022284,0.0000022262,0.0000022244,0.0000022226,0.0000022210, -0.0000022200,0.0000022195,0.0000022195,0.0000022185,0.0000022164, -0.0000022138,0.0000022122,0.0000022120,0.0000022133,0.0000022170, -0.0000022229,0.0000022314,0.0000022422,0.0000022530,0.0000022625, -0.0000022700,0.0000022744,0.0000022764,0.0000022789,0.0000022846, -0.0000022943,0.0000023061,0.0000023175,0.0000023264,0.0000023322, -0.0000023356,0.0000023372,0.0000023383,0.0000023370,0.0000023340, -0.0000023305,0.0000023286,0.0000023299,0.0000023337,0.0000023404, -0.0000023486,0.0000023572,0.0000023640,0.0000023670,0.0000023664, -0.0000023621,0.0000023543,0.0000023467,0.0000023419,0.0000023401, -0.0000023403,0.0000023420,0.0000023444,0.0000023464,0.0000023481, -0.0000023493,0.0000023494,0.0000023484,0.0000023472,0.0000023459, -0.0000023454,0.0000023463,0.0000023479,0.0000023490,0.0000023490, -0.0000023482,0.0000023468,0.0000023449,0.0000023427,0.0000023405, -0.0000023383,0.0000023364,0.0000023355,0.0000023359,0.0000023373, -0.0000023388,0.0000023394,0.0000023392,0.0000023382,0.0000023367, -0.0000023347,0.0000023331,0.0000023319,0.0000023311,0.0000023301, -0.0000023289,0.0000023274,0.0000023259,0.0000023243,0.0000023227, -0.0000023212,0.0000023202,0.0000023198,0.0000023195,0.0000023190, -0.0000023178,0.0000023157,0.0000023127,0.0000023090,0.0000023051, -0.0000023010,0.0000022972,0.0000022941,0.0000022922,0.0000022918, -0.0000022929,0.0000022957,0.0000022982,0.0000022992,0.0000022990, -0.0000022985,0.0000022991,0.0000023007,0.0000023012,0.0000022997, -0.0000022962,0.0000022937,0.0000022920,0.0000022860,0.0000022744, -0.0000022633,0.0000022576,0.0000022555,0.0000022527,0.0000022459, -0.0000022350,0.0000022238,0.0000022155,0.0000022092,0.0000022003, -0.0000021864,0.0000021709,0.0000021571,0.0000021468,0.0000021394, -0.0000021340,0.0000021301,0.0000021272,0.0000021254,0.0000021240, -0.0000021227,0.0000021220,0.0000021221,0.0000021223,0.0000021224, -0.0000021223,0.0000021218,0.0000021208,0.0000021187,0.0000021153, -0.0000021104,0.0000021050,0.0000020992,0.0000020938,0.0000020900, -0.0000020879,0.0000020874,0.0000020883,0.0000020897,0.0000020916, -0.0000020937,0.0000020958,0.0000020986,0.0000021020,0.0000021052, -0.0000021077,0.0000021090,0.0000021090,0.0000021074,0.0000021062, -0.0000021046,0.0000021044,0.0000021072,0.0000021120,0.0000021187, -0.0000021258,0.0000021315,0.0000021358,0.0000021395,0.0000021432, -0.0000021465,0.0000021489,0.0000021511,0.0000021538,0.0000021580, -0.0000021644,0.0000021723,0.0000021801,0.0000021863,0.0000021910, -0.0000021943,0.0000021978,0.0000022032,0.0000022090,0.0000022128, -0.0000022151,0.0000022177,0.0000022221,0.0000022247,0.0000022226, -0.0000022181,0.0000022163,0.0000022187,0.0000022234,0.0000022269, -0.0000022288,0.0000022305,0.0000022318,0.0000022319,0.0000022294, -0.0000022258,0.0000022252,0.0000022300,0.0000022343,0.0000022357, -0.0000022362,0.0000022363,0.0000022357,0.0000022336,0.0000022299, -0.0000022253,0.0000022209,0.0000022177,0.0000022154,0.0000022150, -0.0000022186,0.0000022250,0.0000022338,0.0000022463,0.0000022633, -0.0000022780,0.0000022821,0.0000022792,0.0000022723,0.0000022682, -0.0000022674,0.0000022685,0.0000022766,0.0000022967,0.0000023169, -0.0000023227,0.0000023224,0.0000023186,0.0000023072,0.0000022875, -0.0000022554,0.0000022199,0.0000022032,0.0000022028,0.0000022039, -0.0000022065,0.0000022117,0.0000022159,0.0000022159,0.0000022122, -0.0000022079,0.0000022052,0.0000022046,0.0000022054,0.0000022076, -0.0000022107,0.0000022131,0.0000022134,0.0000022112,0.0000022071, -0.0000022039,0.0000022025,0.0000022028,0.0000022051,0.0000022100, -0.0000022176,0.0000022281,0.0000022404,0.0000022495,0.0000022508, -0.0000022446,0.0000022356,0.0000022316,0.0000022330,0.0000022383, -0.0000022450,0.0000022516,0.0000022568,0.0000022585,0.0000022579, -0.0000022566,0.0000022558,0.0000022547,0.0000022531,0.0000022516, -0.0000022501,0.0000022474,0.0000022426,0.0000022360,0.0000022291, -0.0000022237,0.0000022208,0.0000022204,0.0000022216,0.0000022246, -0.0000022282,0.0000022311,0.0000022335,0.0000022372,0.0000022428, -0.0000022479,0.0000022490,0.0000022471,0.0000022420,0.0000022361, -0.0000022299,0.0000022208,0.0000022073,0.0000021913,0.0000021784, -0.0000021746,0.0000021787,0.0000021941,0.0000022108,0.0000022151, -0.0000022110,0.0000022125,0.0000022312,0.0000022601,0.0000022663, -0.0000022391,0.0000022038,0.0000021900,0.0000021890,0.0000021853, -0.0000021751,0.0000021645,0.0000021593,0.0000021584,0.0000021583, -0.0000021573,0.0000021545,0.0000021506,0.0000021471,0.0000021442, -0.0000021411,0.0000021387,0.0000021386,0.0000021422,0.0000021480, -0.0000021539,0.0000021576,0.0000021580,0.0000021577,0.0000021576, -0.0000021585,0.0000021598,0.0000021610,0.0000021627,0.0000021650, -0.0000021673,0.0000021700,0.0000021734,0.0000021771,0.0000021814, -0.0000021865,0.0000021918,0.0000021969,0.0000022024,0.0000022087, -0.0000022161,0.0000022241,0.0000022321,0.0000022391,0.0000022452, -0.0000022516,0.0000022585,0.0000022638,0.0000022657,0.0000022651, -0.0000022643,0.0000022649,0.0000022668,0.0000022663,0.0000022571, -0.0000022369,0.0000022157,0.0000022017,0.0000021909,0.0000021771, -0.0000021608,0.0000021448,0.0000021306,0.0000021180,0.0000021042, -0.0000020877,0.0000020709,0.0000020571,0.0000020470,0.0000020408, -0.0000020385,0.0000020384,0.0000020386,0.0000020389,0.0000020393, -0.0000020410,0.0000020457,0.0000020542,0.0000020650,0.0000020747, -0.0000020808,0.0000020836,0.0000020857,0.0000020883,0.0000020922, -0.0000020997,0.0000021108,0.0000021218,0.0000021279,0.0000021270, -0.0000021200,0.0000021084,0.0000020984,0.0000020934,0.0000020932, -0.0000020957,0.0000021001,0.0000021050,0.0000021094,0.0000021139, -0.0000021217,0.0000021344,0.0000021485,0.0000021593,0.0000021629, -0.0000021628,0.0000021614,0.0000021605,0.0000021605,0.0000021603, -0.0000021581,0.0000021533,0.0000021460,0.0000021366,0.0000021256, -0.0000021140,0.0000021056,0.0000021061,0.0000021134,0.0000021270, -0.0000021412,0.0000021495,0.0000021497,0.0000021454,0.0000021405, -0.0000021402,0.0000021462,0.0000021598,0.0000021778,0.0000021990, -0.0000022228,0.0000022465,0.0000022674,0.0000022829,0.0000022911, -0.0000022929,0.0000022905,0.0000022869,0.0000022850,0.0000022856, -0.0000022888,0.0000022922,0.0000022958,0.0000023009,0.0000023090, -0.0000023212,0.0000023359,0.0000023509,0.0000023646,0.0000023769, -0.0000023880,0.0000023984,0.0000024093,0.0000024212,0.0000024332, -0.0000024444,0.0000024537,0.0000024590,0.0000024605,0.0000024590, -0.0000024559,0.0000024521,0.0000024479,0.0000024443,0.0000024420, -0.0000024410,0.0000024404,0.0000024395,0.0000024379,0.0000024360, -0.0000024340,0.0000024324,0.0000024315,0.0000024318,0.0000024333, -0.0000024354,0.0000024370,0.0000024374,0.0000024372,0.0000024363, -0.0000024330,0.0000024263,0.0000024164,0.0000024040,0.0000023899, -0.0000023757,0.0000023644,0.0000023574,0.0000023530,0.0000023471, -0.0000023375,0.0000023247,0.0000023097,0.0000022941,0.0000022799, -0.0000022677,0.0000022569,0.0000022481,0.0000022417,0.0000022367, -0.0000022312,0.0000022233,0.0000022120,0.0000021987,0.0000021863, -0.0000021774,0.0000021725,0.0000021709,0.0000021705,0.0000021712, -0.0000021720,0.0000021727,0.0000021732,0.0000021735,0.0000021737, -0.0000021730,0.0000021713,0.0000021694,0.0000021675,0.0000021655, -0.0000021643,0.0000021648,0.0000021660,0.0000021675,0.0000021688, -0.0000021696,0.0000021702,0.0000021707,0.0000021698,0.0000021677, -0.0000021647,0.0000021610,0.0000021574,0.0000021539,0.0000021510, -0.0000021491,0.0000021477,0.0000021463,0.0000021452,0.0000021466, -0.0000021507,0.0000021579,0.0000021680,0.0000021812,0.0000021978, -0.0000022178,0.0000022388,0.0000022582,0.0000022723,0.0000022814, -0.0000022832,0.0000022841,0.0000022816,0.0000022801,0.0000022787, -0.0000022756,0.0000022690,0.0000022582,0.0000022442,0.0000022290, -0.0000022150,0.0000022033,0.0000021930,0.0000021825,0.0000021718, -0.0000021629,0.0000021577,0.0000021556,0.0000021562,0.0000021587, -0.0000021630,0.0000021682,0.0000021735,0.0000021781,0.0000021814, -0.0000021835,0.0000021842,0.0000021827,0.0000021789,0.0000021737, -0.0000021676,0.0000021601,0.0000021511,0.0000021418,0.0000021334, -0.0000021260,0.0000021198,0.0000021143,0.0000021092,0.0000021051, -0.0000021023,0.0000021013,0.0000021018,0.0000021033,0.0000021062, -0.0000021100,0.0000021132,0.0000021151,0.0000021161,0.0000021166, -0.0000021172,0.0000021177,0.0000021176,0.0000021167,0.0000021159, -0.0000021154,0.0000021145,0.0000021131,0.0000021113,0.0000021091, -0.0000021064,0.0000021031,0.0000020998,0.0000020965,0.0000020931, -0.0000020891,0.0000020843,0.0000020791,0.0000020741,0.0000020699, -0.0000020666,0.0000020631,0.0000020593,0.0000020557,0.0000020534, -0.0000020537,0.0000020555,0.0000020599,0.0000020655,0.0000020711, -0.0000020747,0.0000020756,0.0000020745,0.0000020716,0.0000020675, -0.0000020629,0.0000020582,0.0000020526,0.0000020462,0.0000020403, -0.0000020370,0.0000020371,0.0000020385,0.0000020401,0.0000020411, -0.0000020416,0.0000020418,0.0000020422,0.0000020426,0.0000020425, -0.0000020415,0.0000020415,0.0000020422,0.0000020432,0.0000020447, -0.0000020458,0.0000020471,0.0000020485,0.0000020502,0.0000020523, -0.0000020542,0.0000020554,0.0000020559,0.0000020565,0.0000020566, -0.0000020554,0.0000020537,0.0000020522,0.0000020510,0.0000020500, -0.0000020492,0.0000020491,0.0000020495,0.0000020504,0.0000020522, -0.0000020546,0.0000020567,0.0000020576,0.0000020573,0.0000020562, -0.0000020554,0.0000020583,0.0000020650,0.0000020716,0.0000020723, -0.0000020651,0.0000020573,0.0000020584,0.0000020613,0.0000020578, -0.0000020521,0.0000020527,0.0000020582,0.0000020592,0.0000020534, -0.0000020446,0.0000020390,0.0000020383,0.0000020407,0.0000020454, -0.0000020510,0.0000020554,0.0000020578,0.0000020615,0.0000020659, -0.0000020683,0.0000020795,0.0000021062,0.0000021295,0.0000021347, -0.0000021322,0.0000021312,0.0000021340,0.0000021367,0.0000021356, -0.0000021286,0.0000021179,0.0000021082,0.0000021041,0.0000021025, -0.0000020945,0.0000020744,0.0000020539,0.0000020459,0.0000020463, -0.0000020488,0.0000020512,0.0000020506,0.0000020454,0.0000020372, -0.0000020308,0.0000020295,0.0000020327,0.0000020395,0.0000020461, -0.0000020513,0.0000020548,0.0000020573,0.0000020594,0.0000020603, -0.0000020599,0.0000020593,0.0000020597,0.0000020613,0.0000020640, -0.0000020666,0.0000020688,0.0000020704,0.0000020715,0.0000020725, -0.0000020730,0.0000020730,0.0000020727,0.0000020717,0.0000020702, -0.0000020684,0.0000020666,0.0000020654,0.0000020645,0.0000020639, -0.0000020637,0.0000020640,0.0000020644,0.0000020655,0.0000020672, -0.0000020687,0.0000020700,0.0000020716,0.0000020723,0.0000020689, -0.0000020593,0.0000020483,0.0000020393,0.0000020335,0.0000020324, -0.0000020342,0.0000020374,0.0000020400,0.0000020420,0.0000020432, -0.0000020432,0.0000020421,0.0000020408,0.0000020397,0.0000020388, -0.0000020382,0.0000020378,0.0000020371,0.0000020356,0.0000020327, -0.0000020290,0.0000020254,0.0000020226,0.0000020202,0.0000020174, -0.0000020145,0.0000020120,0.0000020106,0.0000020097,0.0000020086, -0.0000020078,0.0000020074,0.0000020077,0.0000020087,0.0000020097, -0.0000020092,0.0000020069,0.0000020045,0.0000020037,0.0000020041, -0.0000020055,0.0000020072,0.0000020096,0.0000020135,0.0000020189, -0.0000020248,0.0000020298,0.0000020332,0.0000020356,0.0000020376, -0.0000020395,0.0000020411,0.0000020416,0.0000020410,0.0000020399, -0.0000020383,0.0000020385,0.0000020422,0.0000020507,0.0000020620, -0.0000020715,0.0000020780,0.0000020834,0.0000020881,0.0000020899, -0.0000020863,0.0000020782,0.0000020716,0.0000020691,0.0000020686, -0.0000020680,0.0000020673,0.0000020693,0.0000020839,0.0000021117, -0.0000021410,0.0000021602,0.0000021710,0.0000021794,0.0000021854, -0.0000021867,0.0000021847,0.0000021801,0.0000021745,0.0000021691, -0.0000021622,0.0000021551,0.0000021528,0.0000021573,0.0000021500, -0.0000021571,0.0000021661,0.0000021689,0.0000021633,0.0000021512, -0.0000021401,0.0000021365,0.0000021373,0.0000021413,0.0000021478, -0.0000021555,0.0000021631,0.0000021687,0.0000021711,0.0000021715, -0.0000021713,0.0000021709,0.0000021705,0.0000021702,0.0000021696, -0.0000021686,0.0000021676,0.0000021660,0.0000021637,0.0000021600, -0.0000021541,0.0000021457,0.0000021356,0.0000021252,0.0000021157, -0.0000021081,0.0000021031,0.0000021006,0.0000021003,0.0000021026, -0.0000021071,0.0000021123,0.0000021161,0.0000021180,0.0000021185, -0.0000021186,0.0000021184,0.0000021170,0.0000021150,0.0000021136, -0.0000021133,0.0000021142,0.0000021155,0.0000021161,0.0000021153, -0.0000021137,0.0000021122,0.0000021111,0.0000021107,0.0000021108, -0.0000021107,0.0000021101,0.0000021099,0.0000021105,0.0000021121, -0.0000021142,0.0000021163,0.0000021184,0.0000021204,0.0000021227, -0.0000021253,0.0000021278,0.0000021299,0.0000021313,0.0000021319, -0.0000021312,0.0000021297,0.0000021282,0.0000021275,0.0000021266, -0.0000021260,0.0000021301,0.0000021362,0.0000021447,0.0000021546, -0.0000021644,0.0000021734,0.0000021808,0.0000021855,0.0000021874, -0.0000021872,0.0000021857,0.0000021843,0.0000021831,0.0000021813, -0.0000021787,0.0000021765,0.0000021757,0.0000021761,0.0000021759, -0.0000021744,0.0000021716,0.0000021682,0.0000021645,0.0000021613, -0.0000021596,0.0000021597,0.0000021606,0.0000021619,0.0000021628, -0.0000021632,0.0000021629,0.0000021623,0.0000021616,0.0000021609, -0.0000021599,0.0000021589,0.0000021580,0.0000021571,0.0000021560, -0.0000021542,0.0000021512,0.0000021472,0.0000021438,0.0000021432, -0.0000021431,0.0000021424,0.0000021417,0.0000021417,0.0000021421, -0.0000021430,0.0000021442,0.0000021450,0.0000021446,0.0000021431, -0.0000021411,0.0000021397,0.0000021385,0.0000021367,0.0000021343, -0.0000021318,0.0000021299,0.0000021286,0.0000021281,0.0000021284, -0.0000021290,0.0000021296,0.0000021308,0.0000021326,0.0000021349, -0.0000021379,0.0000021413,0.0000021438,0.0000021450,0.0000021457, -0.0000021461,0.0000021456,0.0000021444,0.0000021426,0.0000021406, -0.0000021393,0.0000021392,0.0000021403,0.0000021428,0.0000021465, -0.0000021509,0.0000021552,0.0000021601,0.0000021658,0.0000021714, -0.0000021754,0.0000021773,0.0000021781,0.0000021782,0.0000021770, -0.0000021726,0.0000021665,0.0000021617,0.0000021607,0.0000021644, -0.0000021713,0.0000021772,0.0000021790,0.0000021779,0.0000021749, -0.0000021735,0.0000021764,0.0000021916,0.0000022121,0.0000022257, -0.0000022284,0.0000022260,0.0000022244,0.0000022266,0.0000022338, -0.0000022433,0.0000022522,0.0000022600,0.0000022670,0.0000022731, -0.0000022777,0.0000022803,0.0000022815,0.0000022813,0.0000022803, -0.0000022791,0.0000022778,0.0000022763,0.0000022752,0.0000022748, -0.0000022748,0.0000022754,0.0000022769,0.0000022792,0.0000022822, -0.0000022860,0.0000022901,0.0000022940,0.0000022974,0.0000023003, -0.0000023030,0.0000023055,0.0000023074,0.0000023085,0.0000023088, -0.0000023089,0.0000023092,0.0000023095,0.0000023098,0.0000023101, -0.0000023103,0.0000023096,0.0000023080,0.0000023054,0.0000023017, -0.0000022967,0.0000022910,0.0000022853,0.0000022803,0.0000022765, -0.0000022733,0.0000022707,0.0000022686,0.0000022673,0.0000022666, -0.0000022667,0.0000022676,0.0000022695,0.0000022721,0.0000022750, -0.0000022782,0.0000022817,0.0000022849,0.0000022878,0.0000022903, -0.0000022924,0.0000022944,0.0000022966,0.0000022989,0.0000023011, -0.0000023033,0.0000023055,0.0000023078,0.0000023104,0.0000023133, -0.0000023159,0.0000023181,0.0000023199,0.0000023209,0.0000023210, -0.0000023205,0.0000023188,0.0000023162,0.0000023136,0.0000023115, -0.0000023088,0.0000023056,0.0000023019,0.0000022966,0.0000022906, -0.0000022842,0.0000022775,0.0000022703,0.0000022634,0.0000022569, -0.0000022507,0.0000022454,0.0000022412,0.0000022378,0.0000022344, -0.0000022311,0.0000022279,0.0000022249,0.0000022223,0.0000022202, -0.0000022189,0.0000022188,0.0000022196,0.0000022207,0.0000022215, -0.0000022217,0.0000022212,0.0000022204,0.0000022192,0.0000022166, -0.0000022122,0.0000022057,0.0000021972,0.0000021868,0.0000021753, -0.0000021635,0.0000021531,0.0000021461,0.0000021420,0.0000021380, -0.0000021328,0.0000021262,0.0000021190,0.0000021109,0.0000021042, -0.0000021029,0.0000021063,0.0000021118,0.0000021165,0.0000021191, -0.0000021199,0.0000021204,0.0000021213,0.0000021229,0.0000021235, -0.0000021230,0.0000021219,0.0000021210,0.0000021198,0.0000021175, -0.0000021133,0.0000021092,0.0000021071,0.0000021063,0.0000021065, -0.0000021074,0.0000021082,0.0000021076,0.0000021065,0.0000021056, -0.0000021068,0.0000021123,0.0000021195,0.0000021237,0.0000021264, -0.0000021320,0.0000021441,0.0000021642,0.0000021854,0.0000021975, -0.0000022016,0.0000022021,0.0000021998,0.0000021956,0.0000021906, -0.0000021863,0.0000021833,0.0000021829,0.0000021855,0.0000021902, -0.0000021949,0.0000021981,0.0000021998,0.0000022025,0.0000022081, -0.0000022139,0.0000022180,0.0000022240,0.0000022310,0.0000022321, -0.0000022241,0.0000022140,0.0000022088,0.0000022058,0.0000022018, -0.0000021991,0.0000022023,0.0000022123,0.0000022212,0.0000022250, -0.0000022248,0.0000022229,0.0000022193,0.0000022150,0.0000022113, -0.0000022099,0.0000022109,0.0000022149,0.0000022202,0.0000022246, -0.0000022279,0.0000022308,0.0000022331,0.0000022340,0.0000022338, -0.0000022328,0.0000022307,0.0000022276,0.0000022250,0.0000022238, -0.0000022240,0.0000022247,0.0000022244,0.0000022223,0.0000022186, -0.0000022143,0.0000022102,0.0000022061,0.0000022034,0.0000022015, -0.0000021992,0.0000021974,0.0000021967,0.0000021956,0.0000021933, -0.0000021928,0.0000021989,0.0000022145,0.0000022429,0.0000022707, -0.0000022851,0.0000022904,0.0000022939,0.0000022961,0.0000022935, -0.0000022875,0.0000022781,0.0000022652,0.0000022523,0.0000022466, -0.0000022479,0.0000022487,0.0000022466,0.0000022397,0.0000022221, -0.0000022061,0.0000022066,0.0000022157,0.0000022259,0.0000022356, -0.0000022410,0.0000022433,0.0000022480,0.0000022596,0.0000022721, -0.0000022818,0.0000022889,0.0000022915,0.0000022916,0.0000022902, -0.0000022874,0.0000022854,0.0000022836,0.0000022820,0.0000022813, -0.0000022831,0.0000022867,0.0000022919,0.0000022972,0.0000023014, -0.0000023064,0.0000023112,0.0000023139,0.0000023137,0.0000023107, -0.0000023056,0.0000023016,0.0000023007,0.0000022994,0.0000022957, -0.0000022906,0.0000022871,0.0000022861,0.0000022858,0.0000022869, -0.0000022902,0.0000022939,0.0000022969,0.0000022994,0.0000023016, -0.0000023031,0.0000023040,0.0000023035,0.0000023014,0.0000022990, -0.0000022974,0.0000022958,0.0000022938,0.0000022916,0.0000022888, -0.0000022852,0.0000022822,0.0000022814,0.0000022819,0.0000022839, -0.0000022865,0.0000022880,0.0000022871,0.0000022868,0.0000022902, -0.0000022961,0.0000023029,0.0000023094,0.0000023132,0.0000023120, -0.0000023040,0.0000023005,0.0000023021,0.0000023039,0.0000022970, -0.0000022799,0.0000022658,0.0000022418,0.0000022154,0.0000022136, -0.0000022235,0.0000022201,0.0000022075,0.0000022073,0.0000022180, -0.0000022309,0.0000022292,0.0000022083,0.0000021953,0.0000021978, -0.0000022081,0.0000022152,0.0000022166,0.0000022158,0.0000022143, -0.0000022132,0.0000022121,0.0000022100,0.0000022077,0.0000022066, -0.0000022063,0.0000022073,0.0000022095,0.0000022129,0.0000022164, -0.0000022197,0.0000022227,0.0000022256,0.0000022279,0.0000022296, -0.0000022300,0.0000022286,0.0000022260,0.0000022215,0.0000022156, -0.0000022106,0.0000022069,0.0000022059,0.0000022088,0.0000022166, -0.0000022267,0.0000022363,0.0000022407,0.0000022380,0.0000022279, -0.0000022142,0.0000022027,0.0000021988,0.0000022028,0.0000022109, -0.0000022200,0.0000022304,0.0000022420,0.0000022532,0.0000022622, -0.0000022688,0.0000022734,0.0000022757,0.0000022769,0.0000022757, -0.0000022713,0.0000022645,0.0000022570,0.0000022508,0.0000022453, -0.0000022397,0.0000022337,0.0000022275,0.0000022221,0.0000022182, -0.0000022151,0.0000022125,0.0000022101,0.0000022086,0.0000022084, -0.0000022097,0.0000022129,0.0000022168,0.0000022205,0.0000022237, -0.0000022265,0.0000022291,0.0000022309,0.0000022321,0.0000022333, -0.0000022341,0.0000022342,0.0000022346,0.0000022353,0.0000022363, -0.0000022371,0.0000022370,0.0000022363,0.0000022352,0.0000022335, -0.0000022312,0.0000022286,0.0000022260,0.0000022237,0.0000022222, -0.0000022214,0.0000022204,0.0000022188,0.0000022163,0.0000022137, -0.0000022109,0.0000022091,0.0000022078,0.0000022066,0.0000022083, -0.0000022123,0.0000022184,0.0000022264,0.0000022366,0.0000022480, -0.0000022582,0.0000022651,0.0000022694,0.0000022727,0.0000022770, -0.0000022842,0.0000022949,0.0000023074,0.0000023191,0.0000023284, -0.0000023347,0.0000023380,0.0000023388,0.0000023384,0.0000023362, -0.0000023333,0.0000023315,0.0000023319,0.0000023349,0.0000023409, -0.0000023490,0.0000023572,0.0000023630,0.0000023649,0.0000023634, -0.0000023587,0.0000023517,0.0000023460,0.0000023432,0.0000023428, -0.0000023437,0.0000023452,0.0000023465,0.0000023476,0.0000023484, -0.0000023482,0.0000023464,0.0000023433,0.0000023393,0.0000023370, -0.0000023371,0.0000023390,0.0000023413,0.0000023422,0.0000023420, -0.0000023405,0.0000023388,0.0000023370,0.0000023348,0.0000023322, -0.0000023294,0.0000023272,0.0000023260,0.0000023260,0.0000023266, -0.0000023271,0.0000023273,0.0000023273,0.0000023273,0.0000023269, -0.0000023265,0.0000023264,0.0000023267,0.0000023266,0.0000023259, -0.0000023249,0.0000023240,0.0000023230,0.0000023217,0.0000023202, -0.0000023189,0.0000023181,0.0000023173,0.0000023163,0.0000023150, -0.0000023134,0.0000023113,0.0000023088,0.0000023058,0.0000023027, -0.0000022997,0.0000022973,0.0000022962,0.0000022964,0.0000022977, -0.0000022994,0.0000023006,0.0000023007,0.0000023006,0.0000023008, -0.0000023024,0.0000023043,0.0000023042,0.0000023011,0.0000022966, -0.0000022936,0.0000022903,0.0000022816,0.0000022693,0.0000022600, -0.0000022561,0.0000022538,0.0000022491,0.0000022402,0.0000022285, -0.0000022182,0.0000022104,0.0000022012,0.0000021873,0.0000021694, -0.0000021528,0.0000021409,0.0000021326,0.0000021265,0.0000021223, -0.0000021202,0.0000021197,0.0000021200,0.0000021202,0.0000021194, -0.0000021175,0.0000021155,0.0000021135,0.0000021113,0.0000021092, -0.0000021068,0.0000021038,0.0000021004,0.0000020964,0.0000020912, -0.0000020851,0.0000020783,0.0000020722,0.0000020682,0.0000020668, -0.0000020670,0.0000020676,0.0000020686,0.0000020705,0.0000020727, -0.0000020749,0.0000020772,0.0000020797,0.0000020840,0.0000020886, -0.0000020935,0.0000020981,0.0000021015,0.0000021032,0.0000021034, -0.0000021021,0.0000021016,0.0000021019,0.0000021043,0.0000021084, -0.0000021130,0.0000021166,0.0000021196,0.0000021229,0.0000021262, -0.0000021288,0.0000021303,0.0000021309,0.0000021320,0.0000021350, -0.0000021412,0.0000021503,0.0000021603,0.0000021697,0.0000021777, -0.0000021842,0.0000021910,0.0000021984,0.0000022054,0.0000022106, -0.0000022140,0.0000022168,0.0000022206,0.0000022223,0.0000022199, -0.0000022164,0.0000022159,0.0000022192,0.0000022237,0.0000022260, -0.0000022265,0.0000022273,0.0000022287,0.0000022293,0.0000022273, -0.0000022236,0.0000022234,0.0000022285,0.0000022343,0.0000022380, -0.0000022415,0.0000022442,0.0000022444,0.0000022426,0.0000022390, -0.0000022337,0.0000022281,0.0000022216,0.0000022162,0.0000022146, -0.0000022172,0.0000022248,0.0000022333,0.0000022437,0.0000022586, -0.0000022744,0.0000022819,0.0000022797,0.0000022726,0.0000022678, -0.0000022669,0.0000022690,0.0000022793,0.0000022998,0.0000023173, -0.0000023211,0.0000023198,0.0000023159,0.0000023056,0.0000022863, -0.0000022559,0.0000022221,0.0000022038,0.0000022022,0.0000022028, -0.0000022053,0.0000022088,0.0000022113,0.0000022106,0.0000022075, -0.0000022049,0.0000022044,0.0000022055,0.0000022081,0.0000022114, -0.0000022145,0.0000022159,0.0000022155,0.0000022129,0.0000022092, -0.0000022059,0.0000022044,0.0000022052,0.0000022089,0.0000022152, -0.0000022230,0.0000022326,0.0000022447,0.0000022541,0.0000022558, -0.0000022506,0.0000022411,0.0000022341,0.0000022331,0.0000022363, -0.0000022421,0.0000022486,0.0000022541,0.0000022562,0.0000022557, -0.0000022545,0.0000022536,0.0000022521,0.0000022501,0.0000022484, -0.0000022463,0.0000022427,0.0000022369,0.0000022289,0.0000022203, -0.0000022133,0.0000022086,0.0000022066,0.0000022070,0.0000022095, -0.0000022145,0.0000022200,0.0000022249,0.0000022296,0.0000022350, -0.0000022410,0.0000022459,0.0000022470,0.0000022453,0.0000022414, -0.0000022371,0.0000022320,0.0000022233,0.0000022094,0.0000021927, -0.0000021788,0.0000021726,0.0000021756,0.0000021903,0.0000022072, -0.0000022122,0.0000022089,0.0000022121,0.0000022334,0.0000022597, -0.0000022622,0.0000022322,0.0000021998,0.0000021888,0.0000021880, -0.0000021822,0.0000021711,0.0000021623,0.0000021588,0.0000021578, -0.0000021571,0.0000021551,0.0000021518,0.0000021486,0.0000021464, -0.0000021445,0.0000021430,0.0000021433,0.0000021472,0.0000021539, -0.0000021599,0.0000021630,0.0000021629,0.0000021617,0.0000021615, -0.0000021635,0.0000021665,0.0000021689,0.0000021713,0.0000021740, -0.0000021766,0.0000021793,0.0000021819,0.0000021844,0.0000021877, -0.0000021920,0.0000021966,0.0000022011,0.0000022054,0.0000022103, -0.0000022165,0.0000022241,0.0000022325,0.0000022402,0.0000022468, -0.0000022532,0.0000022600,0.0000022657,0.0000022684,0.0000022687, -0.0000022687,0.0000022695,0.0000022705,0.0000022693,0.0000022590, -0.0000022384,0.0000022168,0.0000022018,0.0000021908,0.0000021774, -0.0000021612,0.0000021449,0.0000021302,0.0000021176,0.0000021049, -0.0000020899,0.0000020737,0.0000020594,0.0000020486,0.0000020418, -0.0000020393,0.0000020389,0.0000020386,0.0000020386,0.0000020386, -0.0000020386,0.0000020399,0.0000020445,0.0000020530,0.0000020638, -0.0000020736,0.0000020795,0.0000020821,0.0000020839,0.0000020868, -0.0000020920,0.0000021003,0.0000021110,0.0000021212,0.0000021266, -0.0000021249,0.0000021179,0.0000021069,0.0000020979,0.0000020940, -0.0000020942,0.0000020961,0.0000020997,0.0000021041,0.0000021083, -0.0000021128,0.0000021199,0.0000021315,0.0000021459,0.0000021580, -0.0000021643,0.0000021659,0.0000021653,0.0000021643,0.0000021647, -0.0000021654,0.0000021643,0.0000021601,0.0000021532,0.0000021438, -0.0000021320,0.0000021190,0.0000021084,0.0000021038,0.0000021090, -0.0000021212,0.0000021355,0.0000021446,0.0000021451,0.0000021405, -0.0000021356,0.0000021344,0.0000021411,0.0000021561,0.0000021747, -0.0000021950,0.0000022174,0.0000022407,0.0000022620,0.0000022786, -0.0000022891,0.0000022931,0.0000022922,0.0000022878,0.0000022839, -0.0000022832,0.0000022848,0.0000022870,0.0000022889,0.0000022911, -0.0000022962,0.0000023054,0.0000023179,0.0000023317,0.0000023456, -0.0000023583,0.0000023693,0.0000023799,0.0000023909,0.0000024030, -0.0000024163,0.0000024305,0.0000024427,0.0000024514,0.0000024561, -0.0000024571,0.0000024555,0.0000024526,0.0000024491,0.0000024455, -0.0000024432,0.0000024418,0.0000024408,0.0000024397,0.0000024384, -0.0000024372,0.0000024361,0.0000024350,0.0000024341,0.0000024342, -0.0000024356,0.0000024374,0.0000024384,0.0000024391,0.0000024387, -0.0000024369,0.0000024320,0.0000024236,0.0000024121,0.0000023987, -0.0000023845,0.0000023715,0.0000023627,0.0000023587,0.0000023556, -0.0000023490,0.0000023379,0.0000023234,0.0000023064,0.0000022890, -0.0000022738,0.0000022618,0.0000022521,0.0000022444,0.0000022381, -0.0000022318,0.0000022247,0.0000022159,0.0000022049,0.0000021932, -0.0000021833,0.0000021766,0.0000021730,0.0000021710,0.0000021706, -0.0000021704,0.0000021706,0.0000021705,0.0000021700,0.0000021697, -0.0000021693,0.0000021684,0.0000021675,0.0000021664,0.0000021647, -0.0000021628,0.0000021611,0.0000021599,0.0000021601,0.0000021616, -0.0000021637,0.0000021663,0.0000021690,0.0000021711,0.0000021723, -0.0000021721,0.0000021706,0.0000021677,0.0000021641,0.0000021598, -0.0000021553,0.0000021512,0.0000021477,0.0000021450,0.0000021431, -0.0000021420,0.0000021424,0.0000021440,0.0000021467,0.0000021513, -0.0000021594,0.0000021724,0.0000021906,0.0000022127,0.0000022360, -0.0000022578,0.0000022737,0.0000022821,0.0000022815,0.0000022823, -0.0000022807,0.0000022777,0.0000022725,0.0000022639,0.0000022518, -0.0000022374,0.0000022230,0.0000022103,0.0000021991,0.0000021885, -0.0000021778,0.0000021676,0.0000021598,0.0000021557,0.0000021560, -0.0000021578,0.0000021619,0.0000021676,0.0000021729,0.0000021770, -0.0000021796,0.0000021804,0.0000021798,0.0000021770,0.0000021723, -0.0000021668,0.0000021606,0.0000021533,0.0000021447,0.0000021362, -0.0000021286,0.0000021225,0.0000021177,0.0000021138,0.0000021104, -0.0000021079,0.0000021074,0.0000021084,0.0000021104,0.0000021137, -0.0000021177,0.0000021217,0.0000021250,0.0000021269,0.0000021272, -0.0000021269,0.0000021267,0.0000021264,0.0000021255,0.0000021245, -0.0000021238,0.0000021230,0.0000021220,0.0000021203,0.0000021179, -0.0000021148,0.0000021113,0.0000021074,0.0000021035,0.0000020997, -0.0000020961,0.0000020925,0.0000020885,0.0000020837,0.0000020787, -0.0000020749,0.0000020718,0.0000020688,0.0000020649,0.0000020604, -0.0000020564,0.0000020542,0.0000020542,0.0000020561,0.0000020613, -0.0000020671,0.0000020713,0.0000020730,0.0000020723,0.0000020694, -0.0000020659,0.0000020617,0.0000020566,0.0000020503,0.0000020438, -0.0000020390,0.0000020376,0.0000020388,0.0000020409,0.0000020425, -0.0000020435,0.0000020438,0.0000020438,0.0000020440,0.0000020437, -0.0000020422,0.0000020407,0.0000020397,0.0000020398,0.0000020400, -0.0000020410,0.0000020424,0.0000020441,0.0000020462,0.0000020488, -0.0000020512,0.0000020532,0.0000020551,0.0000020569,0.0000020580, -0.0000020578,0.0000020566,0.0000020553,0.0000020533,0.0000020507, -0.0000020481,0.0000020457,0.0000020448,0.0000020445,0.0000020440, -0.0000020438,0.0000020449,0.0000020477,0.0000020514,0.0000020539, -0.0000020542,0.0000020530,0.0000020530,0.0000020572,0.0000020656, -0.0000020718,0.0000020679,0.0000020582,0.0000020559,0.0000020591, -0.0000020566,0.0000020500,0.0000020495,0.0000020551,0.0000020571, -0.0000020516,0.0000020422,0.0000020368,0.0000020362,0.0000020386, -0.0000020430,0.0000020486,0.0000020528,0.0000020559,0.0000020610, -0.0000020648,0.0000020684,0.0000020853,0.0000021132,0.0000021306, -0.0000021319,0.0000021278,0.0000021255,0.0000021255,0.0000021244, -0.0000021192,0.0000021117,0.0000021067,0.0000021047,0.0000021009, -0.0000020865,0.0000020634,0.0000020471,0.0000020434,0.0000020441, -0.0000020462,0.0000020495,0.0000020503,0.0000020471,0.0000020393, -0.0000020305,0.0000020264,0.0000020276,0.0000020335,0.0000020411, -0.0000020481,0.0000020535,0.0000020568,0.0000020590,0.0000020598, -0.0000020592,0.0000020581,0.0000020581,0.0000020591,0.0000020616, -0.0000020643,0.0000020668,0.0000020688,0.0000020702,0.0000020715, -0.0000020730,0.0000020739,0.0000020738,0.0000020723,0.0000020700, -0.0000020672,0.0000020640,0.0000020615,0.0000020604,0.0000020601, -0.0000020604,0.0000020616,0.0000020632,0.0000020649,0.0000020668, -0.0000020685,0.0000020701,0.0000020720,0.0000020735,0.0000020724, -0.0000020650,0.0000020537,0.0000020435,0.0000020358,0.0000020318, -0.0000020320,0.0000020346,0.0000020372,0.0000020392,0.0000020410, -0.0000020425,0.0000020427,0.0000020418,0.0000020406,0.0000020397, -0.0000020390,0.0000020388,0.0000020388,0.0000020383,0.0000020369, -0.0000020344,0.0000020308,0.0000020270,0.0000020237,0.0000020210, -0.0000020184,0.0000020156,0.0000020136,0.0000020127,0.0000020122, -0.0000020109,0.0000020088,0.0000020070,0.0000020055,0.0000020043, -0.0000020039,0.0000020041,0.0000020038,0.0000020028,0.0000020016, -0.0000020012,0.0000020018,0.0000020035,0.0000020060,0.0000020093, -0.0000020135,0.0000020182,0.0000020229,0.0000020270,0.0000020303, -0.0000020330,0.0000020347,0.0000020356,0.0000020368,0.0000020386, -0.0000020399,0.0000020400,0.0000020380,0.0000020349,0.0000020335, -0.0000020362,0.0000020456,0.0000020586,0.0000020702,0.0000020789, -0.0000020861,0.0000020915,0.0000020924,0.0000020863,0.0000020755, -0.0000020679,0.0000020659,0.0000020658,0.0000020660,0.0000020658, -0.0000020705,0.0000020884,0.0000021173,0.0000021445,0.0000021616, -0.0000021709,0.0000021776,0.0000021819,0.0000021826,0.0000021800, -0.0000021754,0.0000021706,0.0000021645,0.0000021564,0.0000021499, -0.0000021503,0.0000021461,0.0000021484,0.0000021570,0.0000021665, -0.0000021705,0.0000021667,0.0000021562,0.0000021454,0.0000021400, -0.0000021402,0.0000021437,0.0000021500,0.0000021569,0.0000021627, -0.0000021662,0.0000021677,0.0000021684,0.0000021683,0.0000021672, -0.0000021651,0.0000021627,0.0000021601,0.0000021571,0.0000021526, -0.0000021461,0.0000021374,0.0000021271,0.0000021165,0.0000021073, -0.0000021007,0.0000020964,0.0000020934,0.0000020924,0.0000020940, -0.0000020989,0.0000021056,0.0000021122,0.0000021168,0.0000021188, -0.0000021193,0.0000021194,0.0000021194,0.0000021186,0.0000021172, -0.0000021158,0.0000021149,0.0000021144,0.0000021141,0.0000021137, -0.0000021126,0.0000021110,0.0000021095,0.0000021086,0.0000021080, -0.0000021077,0.0000021074,0.0000021067,0.0000021064,0.0000021070, -0.0000021086,0.0000021107,0.0000021126,0.0000021145,0.0000021164, -0.0000021188,0.0000021218,0.0000021251,0.0000021282,0.0000021306, -0.0000021322,0.0000021328,0.0000021321,0.0000021307,0.0000021290, -0.0000021273,0.0000021258,0.0000021245,0.0000021232,0.0000021227, -0.0000021268,0.0000021328,0.0000021400,0.0000021487,0.0000021579, -0.0000021661,0.0000021727,0.0000021773,0.0000021801,0.0000021815, -0.0000021819,0.0000021812,0.0000021802,0.0000021796,0.0000021803, -0.0000021818,0.0000021811,0.0000021790,0.0000021758,0.0000021719, -0.0000021679,0.0000021649,0.0000021640,0.0000021645,0.0000021648, -0.0000021649,0.0000021652,0.0000021656,0.0000021655,0.0000021647, -0.0000021637,0.0000021624,0.0000021610,0.0000021597,0.0000021585, -0.0000021574,0.0000021555,0.0000021527,0.0000021488,0.0000021445, -0.0000021419,0.0000021413,0.0000021406,0.0000021395,0.0000021385, -0.0000021382,0.0000021383,0.0000021382,0.0000021378,0.0000021366, -0.0000021344,0.0000021315,0.0000021287,0.0000021264,0.0000021243, -0.0000021221,0.0000021198,0.0000021183,0.0000021180,0.0000021185, -0.0000021195,0.0000021207,0.0000021215,0.0000021222,0.0000021233, -0.0000021255,0.0000021285,0.0000021321,0.0000021355,0.0000021379, -0.0000021393,0.0000021403,0.0000021407,0.0000021400,0.0000021389, -0.0000021373,0.0000021353,0.0000021333,0.0000021320,0.0000021319, -0.0000021333,0.0000021365,0.0000021411,0.0000021465,0.0000021524, -0.0000021589,0.0000021656,0.0000021709,0.0000021739,0.0000021757, -0.0000021773,0.0000021778,0.0000021766,0.0000021743,0.0000021700, -0.0000021658,0.0000021643,0.0000021675,0.0000021738,0.0000021789, -0.0000021793,0.0000021761,0.0000021721,0.0000021700,0.0000021723, -0.0000021866,0.0000022074,0.0000022224,0.0000022267,0.0000022267, -0.0000022264,0.0000022279,0.0000022323,0.0000022387,0.0000022454, -0.0000022517,0.0000022583,0.0000022649,0.0000022709,0.0000022758, -0.0000022790,0.0000022805,0.0000022816,0.0000022822,0.0000022821, -0.0000022814,0.0000022801,0.0000022787,0.0000022777,0.0000022776, -0.0000022783,0.0000022797,0.0000022822,0.0000022856,0.0000022898, -0.0000022943,0.0000022987,0.0000023028,0.0000023067,0.0000023100, -0.0000023123,0.0000023134,0.0000023135,0.0000023127,0.0000023116, -0.0000023106,0.0000023101,0.0000023096,0.0000023090,0.0000023078, -0.0000023063,0.0000023046,0.0000023021,0.0000022992,0.0000022961, -0.0000022932,0.0000022904,0.0000022881,0.0000022863,0.0000022849, -0.0000022838,0.0000022835,0.0000022837,0.0000022844,0.0000022861, -0.0000022886,0.0000022920,0.0000022957,0.0000022990,0.0000023020, -0.0000023045,0.0000023066,0.0000023083,0.0000023098,0.0000023114, -0.0000023130,0.0000023145,0.0000023154,0.0000023163,0.0000023174, -0.0000023186,0.0000023201,0.0000023216,0.0000023231,0.0000023241, -0.0000023243,0.0000023236,0.0000023220,0.0000023193,0.0000023159, -0.0000023120,0.0000023074,0.0000023023,0.0000022963,0.0000022896, -0.0000022823,0.0000022750,0.0000022678,0.0000022610,0.0000022543, -0.0000022478,0.0000022417,0.0000022363,0.0000022319,0.0000022288, -0.0000022265,0.0000022238,0.0000022208,0.0000022179,0.0000022155, -0.0000022133,0.0000022113,0.0000022100,0.0000022098,0.0000022105, -0.0000022120,0.0000022136,0.0000022141,0.0000022133,0.0000022118, -0.0000022103,0.0000022080,0.0000022037,0.0000021972,0.0000021886, -0.0000021781,0.0000021667,0.0000021558,0.0000021470,0.0000021415, -0.0000021380,0.0000021342,0.0000021306,0.0000021260,0.0000021190, -0.0000021111,0.0000021071,0.0000021080,0.0000021113,0.0000021141, -0.0000021153,0.0000021153,0.0000021159,0.0000021170,0.0000021193, -0.0000021214,0.0000021219,0.0000021207,0.0000021180,0.0000021154, -0.0000021129,0.0000021094,0.0000021057,0.0000021028,0.0000021015, -0.0000021023,0.0000021043,0.0000021070,0.0000021083,0.0000021068, -0.0000021050,0.0000021051,0.0000021088,0.0000021173,0.0000021243, -0.0000021278,0.0000021324,0.0000021412,0.0000021554,0.0000021748, -0.0000021890,0.0000021945,0.0000021958,0.0000021944,0.0000021912, -0.0000021868,0.0000021827,0.0000021804,0.0000021801,0.0000021831, -0.0000021874,0.0000021915,0.0000021943,0.0000021951,0.0000021973, -0.0000022031,0.0000022094,0.0000022143,0.0000022218,0.0000022293, -0.0000022292,0.0000022207,0.0000022114,0.0000022065,0.0000022024, -0.0000021980,0.0000021971,0.0000022031,0.0000022139,0.0000022220, -0.0000022239,0.0000022233,0.0000022212,0.0000022171,0.0000022113, -0.0000022058,0.0000022021,0.0000022016,0.0000022051,0.0000022099, -0.0000022145,0.0000022175,0.0000022187,0.0000022191,0.0000022193, -0.0000022192,0.0000022189,0.0000022179,0.0000022164,0.0000022147, -0.0000022141,0.0000022141,0.0000022144,0.0000022142,0.0000022135, -0.0000022120,0.0000022097,0.0000022074,0.0000022053,0.0000022028, -0.0000022018,0.0000022012,0.0000022000,0.0000021978,0.0000021948, -0.0000021904,0.0000021876,0.0000021917,0.0000022088,0.0000022396, -0.0000022675,0.0000022826,0.0000022897,0.0000022951,0.0000022991, -0.0000022971,0.0000022922,0.0000022846,0.0000022707,0.0000022541, -0.0000022421,0.0000022407,0.0000022443,0.0000022450,0.0000022425, -0.0000022302,0.0000022106,0.0000022046,0.0000022094,0.0000022176, -0.0000022282,0.0000022370,0.0000022409,0.0000022428,0.0000022461, -0.0000022550,0.0000022667,0.0000022757,0.0000022828,0.0000022863, -0.0000022871,0.0000022861,0.0000022837,0.0000022815,0.0000022801, -0.0000022789,0.0000022785,0.0000022805,0.0000022838,0.0000022872, -0.0000022913,0.0000022965,0.0000023024,0.0000023076,0.0000023109, -0.0000023117,0.0000023103,0.0000023069,0.0000023035,0.0000023024, -0.0000023025,0.0000023013,0.0000022982,0.0000022950,0.0000022932, -0.0000022924,0.0000022926,0.0000022941,0.0000022965,0.0000022986, -0.0000023007,0.0000023028,0.0000023044,0.0000023051,0.0000023044, -0.0000023023,0.0000023004,0.0000022995,0.0000022978,0.0000022957, -0.0000022929,0.0000022890,0.0000022846,0.0000022819,0.0000022815, -0.0000022820,0.0000022833,0.0000022857,0.0000022877,0.0000022874, -0.0000022865,0.0000022884,0.0000022931,0.0000022997,0.0000023063, -0.0000023098,0.0000023090,0.0000023020,0.0000022982,0.0000022998, -0.0000023026,0.0000022997,0.0000022841,0.0000022698,0.0000022533, -0.0000022256,0.0000022135,0.0000022210,0.0000022261,0.0000022143, -0.0000022058,0.0000022093,0.0000022200,0.0000022310,0.0000022262, -0.0000022068,0.0000021962,0.0000022001,0.0000022090,0.0000022153, -0.0000022166,0.0000022150,0.0000022119,0.0000022094,0.0000022072, -0.0000022049,0.0000022030,0.0000022021,0.0000022014,0.0000022020, -0.0000022042,0.0000022074,0.0000022112,0.0000022147,0.0000022177, -0.0000022201,0.0000022222,0.0000022244,0.0000022263,0.0000022272, -0.0000022259,0.0000022219,0.0000022161,0.0000022101,0.0000022052, -0.0000022030,0.0000022042,0.0000022092,0.0000022182,0.0000022297, -0.0000022394,0.0000022427,0.0000022379,0.0000022256,0.0000022101, -0.0000021983,0.0000021949,0.0000021988,0.0000022079,0.0000022200, -0.0000022332,0.0000022457,0.0000022564,0.0000022649,0.0000022711, -0.0000022754,0.0000022782,0.0000022794,0.0000022781,0.0000022737, -0.0000022670,0.0000022600,0.0000022537,0.0000022480,0.0000022423, -0.0000022359,0.0000022296,0.0000022241,0.0000022192,0.0000022150, -0.0000022117,0.0000022099,0.0000022097,0.0000022106,0.0000022132, -0.0000022165,0.0000022193,0.0000022219,0.0000022243,0.0000022265, -0.0000022282,0.0000022295,0.0000022311,0.0000022326,0.0000022339, -0.0000022350,0.0000022360,0.0000022372,0.0000022380,0.0000022386, -0.0000022387,0.0000022386,0.0000022379,0.0000022362,0.0000022340, -0.0000022314,0.0000022294,0.0000022282,0.0000022272,0.0000022255, -0.0000022233,0.0000022207,0.0000022180,0.0000022148,0.0000022113, -0.0000022085,0.0000022070,0.0000022075,0.0000022081,0.0000022079, -0.0000022101,0.0000022144,0.0000022213,0.0000022304,0.0000022409, -0.0000022511,0.0000022594,0.0000022652,0.0000022699,0.0000022757, -0.0000022844,0.0000022960,0.0000023091,0.0000023210,0.0000023297, -0.0000023351,0.0000023379,0.0000023383,0.0000023382,0.0000023360, -0.0000023340,0.0000023335,0.0000023354,0.0000023403,0.0000023475, -0.0000023548,0.0000023602,0.0000023625,0.0000023613,0.0000023569, -0.0000023507,0.0000023460,0.0000023443,0.0000023447,0.0000023464, -0.0000023482,0.0000023491,0.0000023491,0.0000023487,0.0000023469, -0.0000023429,0.0000023368,0.0000023316,0.0000023293,0.0000023299, -0.0000023321,0.0000023341,0.0000023352,0.0000023353,0.0000023347, -0.0000023333,0.0000023311,0.0000023284,0.0000023257,0.0000023233, -0.0000023216,0.0000023204,0.0000023199,0.0000023200,0.0000023208, -0.0000023220,0.0000023232,0.0000023242,0.0000023251,0.0000023260, -0.0000023268,0.0000023270,0.0000023263,0.0000023251,0.0000023238, -0.0000023223,0.0000023206,0.0000023186,0.0000023167,0.0000023153, -0.0000023141,0.0000023130,0.0000023122,0.0000023115,0.0000023105, -0.0000023089,0.0000023069,0.0000023048,0.0000023027,0.0000023010, -0.0000023001,0.0000023000,0.0000023005,0.0000023008,0.0000023009, -0.0000023009,0.0000023013,0.0000023029,0.0000023054,0.0000023069, -0.0000023055,0.0000023013,0.0000022970,0.0000022933,0.0000022873, -0.0000022764,0.0000022649,0.0000022581,0.0000022552,0.0000022518, -0.0000022448,0.0000022340,0.0000022226,0.0000022138,0.0000022058, -0.0000021934,0.0000021748,0.0000021546,0.0000021376,0.0000021263, -0.0000021183,0.0000021128,0.0000021099,0.0000021097,0.0000021111, -0.0000021124,0.0000021126,0.0000021110,0.0000021078,0.0000021037, -0.0000020996,0.0000020960,0.0000020932,0.0000020907,0.0000020882, -0.0000020856,0.0000020828,0.0000020796,0.0000020752,0.0000020708, -0.0000020653,0.0000020618,0.0000020614,0.0000020632,0.0000020650, -0.0000020668,0.0000020687,0.0000020706,0.0000020718,0.0000020724, -0.0000020720,0.0000020748,0.0000020749,0.0000020782,0.0000020817, -0.0000020858,0.0000020902,0.0000020943,0.0000020973,0.0000020990, -0.0000021001,0.0000021006,0.0000021016,0.0000021032,0.0000021051, -0.0000021069,0.0000021088,0.0000021109,0.0000021133,0.0000021153, -0.0000021159,0.0000021158,0.0000021158,0.0000021173,0.0000021217, -0.0000021292,0.0000021386,0.0000021492,0.0000021604,0.0000021719, -0.0000021831,0.0000021929,0.0000022009,0.0000022075,0.0000022123, -0.0000022157,0.0000022184,0.0000022193,0.0000022173,0.0000022155, -0.0000022162,0.0000022201,0.0000022239,0.0000022251,0.0000022244, -0.0000022241,0.0000022254,0.0000022267,0.0000022249,0.0000022215, -0.0000022218,0.0000022275,0.0000022338,0.0000022389,0.0000022443, -0.0000022468,0.0000022474,0.0000022466,0.0000022436,0.0000022392, -0.0000022334,0.0000022264,0.0000022185,0.0000022147,0.0000022170, -0.0000022250,0.0000022330,0.0000022403,0.0000022528,0.0000022693, -0.0000022799,0.0000022789,0.0000022730,0.0000022677,0.0000022665, -0.0000022695,0.0000022817,0.0000023016,0.0000023163,0.0000023190, -0.0000023171,0.0000023137,0.0000023044,0.0000022865,0.0000022594, -0.0000022277,0.0000022069,0.0000022021,0.0000022041,0.0000022061, -0.0000022073,0.0000022076,0.0000022062,0.0000022040,0.0000022030, -0.0000022038,0.0000022067,0.0000022106,0.0000022146,0.0000022174, -0.0000022183,0.0000022177,0.0000022152,0.0000022117,0.0000022090, -0.0000022084,0.0000022101,0.0000022144,0.0000022206,0.0000022273, -0.0000022357,0.0000022471,0.0000022566,0.0000022592,0.0000022560, -0.0000022471,0.0000022372,0.0000022329,0.0000022339,0.0000022390, -0.0000022460,0.0000022521,0.0000022546,0.0000022541,0.0000022531, -0.0000022520,0.0000022501,0.0000022482,0.0000022465,0.0000022430, -0.0000022366,0.0000022282,0.0000022191,0.0000022100,0.0000022023, -0.0000021963,0.0000021926,0.0000021918,0.0000021934,0.0000021979, -0.0000022049,0.0000022129,0.0000022202,0.0000022266,0.0000022330, -0.0000022394,0.0000022441,0.0000022453,0.0000022447,0.0000022421, -0.0000022388,0.0000022340,0.0000022252,0.0000022107,0.0000021931, -0.0000021779,0.0000021708,0.0000021721,0.0000021865,0.0000022037, -0.0000022093,0.0000022076,0.0000022113,0.0000022344,0.0000022564, -0.0000022577,0.0000022271,0.0000021964,0.0000021876,0.0000021860, -0.0000021781,0.0000021671,0.0000021606,0.0000021581,0.0000021570, -0.0000021557,0.0000021537,0.0000021517,0.0000021503,0.0000021496, -0.0000021497,0.0000021514,0.0000021567,0.0000021646,0.0000021712, -0.0000021745,0.0000021744,0.0000021725,0.0000021716,0.0000021734, -0.0000021762,0.0000021778,0.0000021792,0.0000021812,0.0000021836, -0.0000021862,0.0000021886,0.0000021909,0.0000021934,0.0000021967, -0.0000022002,0.0000022036,0.0000022068,0.0000022106,0.0000022163, -0.0000022242,0.0000022331,0.0000022415,0.0000022482,0.0000022545, -0.0000022616,0.0000022681,0.0000022718,0.0000022729,0.0000022736, -0.0000022745,0.0000022748,0.0000022721,0.0000022608,0.0000022403, -0.0000022185,0.0000022030,0.0000021918,0.0000021789,0.0000021630, -0.0000021464,0.0000021309,0.0000021179,0.0000021061,0.0000020924, -0.0000020769,0.0000020625,0.0000020516,0.0000020442,0.0000020410, -0.0000020407,0.0000020404,0.0000020396,0.0000020388,0.0000020384, -0.0000020383,0.0000020395,0.0000020438,0.0000020520,0.0000020625, -0.0000020720,0.0000020777,0.0000020805,0.0000020829,0.0000020867, -0.0000020924,0.0000021003,0.0000021102,0.0000021194,0.0000021243, -0.0000021232,0.0000021167,0.0000021064,0.0000020985,0.0000020950, -0.0000020949,0.0000020959,0.0000020984,0.0000021024,0.0000021074, -0.0000021125,0.0000021190,0.0000021291,0.0000021427,0.0000021560, -0.0000021652,0.0000021682,0.0000021682,0.0000021678,0.0000021686, -0.0000021695,0.0000021692,0.0000021664,0.0000021600,0.0000021503, -0.0000021376,0.0000021232,0.0000021105,0.0000021052,0.0000021051, -0.0000021159,0.0000021299,0.0000021388,0.0000021398,0.0000021355, -0.0000021303,0.0000021284,0.0000021368,0.0000021532,0.0000021715, -0.0000021904,0.0000022115,0.0000022344,0.0000022557,0.0000022728, -0.0000022849,0.0000022915,0.0000022925,0.0000022896,0.0000022847, -0.0000022822,0.0000022812,0.0000022823,0.0000022836,0.0000022851, -0.0000022886,0.0000022951,0.0000023045,0.0000023161,0.0000023285, -0.0000023403,0.0000023514,0.0000023620,0.0000023725,0.0000023844, -0.0000023989,0.0000024147,0.0000024293,0.0000024413,0.0000024494, -0.0000024532,0.0000024534,0.0000024515,0.0000024486,0.0000024456, -0.0000024432,0.0000024418,0.0000024407,0.0000024393,0.0000024374, -0.0000024356,0.0000024341,0.0000024330,0.0000024325,0.0000024330, -0.0000024347,0.0000024367,0.0000024383,0.0000024392,0.0000024386, -0.0000024354,0.0000024292,0.0000024192,0.0000024065,0.0000023929, -0.0000023798,0.0000023691,0.0000023628,0.0000023602,0.0000023567, -0.0000023486,0.0000023359,0.0000023203,0.0000023028,0.0000022849, -0.0000022695,0.0000022575,0.0000022489,0.0000022421,0.0000022349, -0.0000022262,0.0000022173,0.0000022087,0.0000022002,0.0000021920, -0.0000021846,0.0000021790,0.0000021750,0.0000021724,0.0000021710, -0.0000021704,0.0000021701,0.0000021690,0.0000021676,0.0000021663, -0.0000021651,0.0000021643,0.0000021641,0.0000021638,0.0000021629, -0.0000021609,0.0000021585,0.0000021573,0.0000021574,0.0000021583, -0.0000021603,0.0000021636,0.0000021674,0.0000021706,0.0000021729, -0.0000021736,0.0000021737,0.0000021723,0.0000021697,0.0000021654, -0.0000021604,0.0000021550,0.0000021502,0.0000021459,0.0000021420, -0.0000021394,0.0000021369,0.0000021347,0.0000021328,0.0000021318, -0.0000021333,0.0000021387,0.0000021498,0.0000021674,0.0000021919, -0.0000022198,0.0000022459,0.0000022652,0.0000022772,0.0000022817, -0.0000022820,0.0000022798,0.0000022754,0.0000022683,0.0000022582, -0.0000022457,0.0000022320,0.0000022190,0.0000022075,0.0000021972, -0.0000021869,0.0000021763,0.0000021671,0.0000021610,0.0000021577, -0.0000021590,0.0000021624,0.0000021672,0.0000021721,0.0000021758, -0.0000021774,0.0000021775,0.0000021760,0.0000021726,0.0000021680, -0.0000021625,0.0000021564,0.0000021497,0.0000021426,0.0000021356, -0.0000021297,0.0000021256,0.0000021225,0.0000021203,0.0000021190, -0.0000021190,0.0000021200,0.0000021218,0.0000021250,0.0000021286, -0.0000021321,0.0000021351,0.0000021375,0.0000021386,0.0000021385, -0.0000021376,0.0000021364,0.0000021350,0.0000021332,0.0000021318, -0.0000021305,0.0000021292,0.0000021276,0.0000021255,0.0000021227, -0.0000021193,0.0000021155,0.0000021114,0.0000021071,0.0000021028, -0.0000020988,0.0000020954,0.0000020922,0.0000020888,0.0000020854, -0.0000020819,0.0000020781,0.0000020745,0.0000020710,0.0000020671, -0.0000020627,0.0000020582,0.0000020551,0.0000020551,0.0000020577, -0.0000020623,0.0000020665,0.0000020690,0.0000020691,0.0000020675, -0.0000020646,0.0000020607,0.0000020551,0.0000020487,0.0000020426, -0.0000020391,0.0000020395,0.0000020415,0.0000020437,0.0000020452, -0.0000020460,0.0000020462,0.0000020463,0.0000020464,0.0000020456, -0.0000020439,0.0000020426,0.0000020414,0.0000020405,0.0000020403, -0.0000020406,0.0000020412,0.0000020427,0.0000020452,0.0000020474, -0.0000020494,0.0000020519,0.0000020548,0.0000020570,0.0000020576, -0.0000020577,0.0000020575,0.0000020573,0.0000020554,0.0000020518, -0.0000020472,0.0000020438,0.0000020415,0.0000020401,0.0000020386, -0.0000020366,0.0000020356,0.0000020368,0.0000020400,0.0000020446, -0.0000020489,0.0000020510,0.0000020509,0.0000020518,0.0000020585, -0.0000020680,0.0000020677,0.0000020591,0.0000020538,0.0000020558, -0.0000020550,0.0000020485,0.0000020469,0.0000020528,0.0000020551, -0.0000020498,0.0000020405,0.0000020351,0.0000020342,0.0000020360, -0.0000020404,0.0000020461,0.0000020501,0.0000020545,0.0000020601, -0.0000020630,0.0000020692,0.0000020898,0.0000021160,0.0000021288, -0.0000021281,0.0000021233,0.0000021201,0.0000021179,0.0000021143, -0.0000021101,0.0000021074,0.0000021052,0.0000020958,0.0000020754, -0.0000020532,0.0000020418,0.0000020401,0.0000020397,0.0000020412, -0.0000020461,0.0000020496,0.0000020486,0.0000020424,0.0000020327, -0.0000020251,0.0000020239,0.0000020280,0.0000020355,0.0000020435, -0.0000020507,0.0000020559,0.0000020587,0.0000020592,0.0000020583, -0.0000020573,0.0000020570,0.0000020575,0.0000020594,0.0000020622, -0.0000020650,0.0000020675,0.0000020690,0.0000020701,0.0000020714, -0.0000020728,0.0000020730,0.0000020714,0.0000020688,0.0000020657, -0.0000020622,0.0000020584,0.0000020560,0.0000020556,0.0000020564, -0.0000020582,0.0000020610,0.0000020638,0.0000020661,0.0000020682, -0.0000020703,0.0000020723,0.0000020741,0.0000020742,0.0000020688, -0.0000020584,0.0000020478,0.0000020392,0.0000020331,0.0000020314, -0.0000020330,0.0000020359,0.0000020377,0.0000020390,0.0000020408, -0.0000020423,0.0000020426,0.0000020420,0.0000020412,0.0000020408, -0.0000020407,0.0000020409,0.0000020410,0.0000020401,0.0000020381, -0.0000020353,0.0000020318,0.0000020281,0.0000020248,0.0000020219, -0.0000020191,0.0000020165,0.0000020149,0.0000020142,0.0000020136, -0.0000020120,0.0000020095,0.0000020071,0.0000020045,0.0000020014, -0.0000019988,0.0000019980,0.0000019983,0.0000019990,0.0000019990, -0.0000019988,0.0000019993,0.0000020012,0.0000020044,0.0000020081, -0.0000020119,0.0000020158,0.0000020194,0.0000020225,0.0000020255, -0.0000020283,0.0000020306,0.0000020321,0.0000020331,0.0000020338, -0.0000020347,0.0000020357,0.0000020367,0.0000020365,0.0000020343, -0.0000020310,0.0000020300,0.0000020339,0.0000020448,0.0000020597, -0.0000020730,0.0000020821,0.0000020891,0.0000020929,0.0000020914, -0.0000020811,0.0000020692,0.0000020640,0.0000020638,0.0000020645, -0.0000020651,0.0000020659,0.0000020735,0.0000020938,0.0000021233, -0.0000021491,0.0000021634,0.0000021702,0.0000021758,0.0000021799, -0.0000021797,0.0000021761,0.0000021712,0.0000021661,0.0000021589, -0.0000021611,0.0000021532,0.0000021462,0.0000021441,0.0000021469, -0.0000021550,0.0000021642,0.0000021695,0.0000021689,0.0000021626, -0.0000021539,0.0000021479,0.0000021473,0.0000021497,0.0000021539, -0.0000021578,0.0000021602,0.0000021615,0.0000021619,0.0000021614, -0.0000021593,0.0000021556,0.0000021514,0.0000021472,0.0000021420, -0.0000021350,0.0000021262,0.0000021166,0.0000021074,0.0000021003, -0.0000020956,0.0000020926,0.0000020904,0.0000020900,0.0000020926, -0.0000020981,0.0000021058,0.0000021132,0.0000021178,0.0000021192, -0.0000021191,0.0000021186,0.0000021180,0.0000021171,0.0000021162, -0.0000021156,0.0000021147,0.0000021133,0.0000021115,0.0000021096, -0.0000021078,0.0000021059,0.0000021041,0.0000021031,0.0000021028, -0.0000021025,0.0000021023,0.0000021020,0.0000021019,0.0000021026, -0.0000021039,0.0000021059,0.0000021082,0.0000021106,0.0000021130, -0.0000021155,0.0000021181,0.0000021209,0.0000021237,0.0000021263, -0.0000021287,0.0000021305,0.0000021312,0.0000021308,0.0000021294, -0.0000021277,0.0000021262,0.0000021247,0.0000021234,0.0000021227, -0.0000021227,0.0000021230,0.0000021227,0.0000021229,0.0000021267, -0.0000021322,0.0000021388,0.0000021461,0.0000021530,0.0000021589, -0.0000021638,0.0000021677,0.0000021704,0.0000021732,0.0000021769, -0.0000021803,0.0000021819,0.0000021821,0.0000021804,0.0000021775, -0.0000021744,0.0000021707,0.0000021686,0.0000021683,0.0000021686, -0.0000021683,0.0000021679,0.0000021681,0.0000021683,0.0000021678, -0.0000021664,0.0000021648,0.0000021634,0.0000021619,0.0000021603, -0.0000021586,0.0000021564,0.0000021534,0.0000021496,0.0000021446, -0.0000021399,0.0000021374,0.0000021360,0.0000021346,0.0000021331, -0.0000021320,0.0000021316,0.0000021313,0.0000021306,0.0000021294, -0.0000021275,0.0000021250,0.0000021223,0.0000021197,0.0000021173, -0.0000021150,0.0000021127,0.0000021107,0.0000021099,0.0000021104, -0.0000021121,0.0000021143,0.0000021163,0.0000021177,0.0000021187, -0.0000021198,0.0000021216,0.0000021245,0.0000021275,0.0000021299, -0.0000021319,0.0000021339,0.0000021358,0.0000021368,0.0000021363, -0.0000021351,0.0000021334,0.0000021314,0.0000021294,0.0000021277, -0.0000021267,0.0000021267,0.0000021282,0.0000021317,0.0000021372, -0.0000021439,0.0000021514,0.0000021590,0.0000021653,0.0000021691, -0.0000021714,0.0000021735,0.0000021750,0.0000021755,0.0000021753, -0.0000021740,0.0000021723,0.0000021699,0.0000021688,0.0000021704, -0.0000021748,0.0000021781,0.0000021772,0.0000021727,0.0000021682, -0.0000021656,0.0000021678,0.0000021819,0.0000022034,0.0000022211, -0.0000022289,0.0000022298,0.0000022294,0.0000022293,0.0000022309, -0.0000022341,0.0000022384,0.0000022436,0.0000022493,0.0000022553, -0.0000022612,0.0000022668,0.0000022721,0.0000022769,0.0000022808, -0.0000022833,0.0000022850,0.0000022857,0.0000022857,0.0000022848, -0.0000022835,0.0000022822,0.0000022816,0.0000022821,0.0000022835, -0.0000022862,0.0000022897,0.0000022938,0.0000022986,0.0000023037, -0.0000023087,0.0000023126,0.0000023151,0.0000023168,0.0000023172, -0.0000023169,0.0000023156,0.0000023136,0.0000023114,0.0000023093, -0.0000023073,0.0000023054,0.0000023033,0.0000023014,0.0000022992, -0.0000022971,0.0000022953,0.0000022935,0.0000022919,0.0000022910, -0.0000022905,0.0000022904,0.0000022906,0.0000022913,0.0000022923, -0.0000022938,0.0000022961,0.0000022992,0.0000023022,0.0000023051, -0.0000023078,0.0000023102,0.0000023122,0.0000023138,0.0000023150, -0.0000023160,0.0000023171,0.0000023179,0.0000023181,0.0000023181, -0.0000023183,0.0000023192,0.0000023199,0.0000023207,0.0000023216, -0.0000023219,0.0000023217,0.0000023200,0.0000023168,0.0000023121, -0.0000023058,0.0000022985,0.0000022911,0.0000022840,0.0000022770, -0.0000022701,0.0000022631,0.0000022555,0.0000022478,0.0000022402, -0.0000022331,0.0000022266,0.0000022209,0.0000022160,0.0000022123, -0.0000022101,0.0000022087,0.0000022069,0.0000022050,0.0000022032, -0.0000022017,0.0000022002,0.0000021986,0.0000021972,0.0000021968, -0.0000021975,0.0000021993,0.0000022015,0.0000022025,0.0000022019, -0.0000022005,0.0000021993,0.0000021975,0.0000021941,0.0000021883, -0.0000021805,0.0000021708,0.0000021601,0.0000021502,0.0000021425, -0.0000021375,0.0000021344,0.0000021319,0.0000021302,0.0000021265, -0.0000021194,0.0000021131,0.0000021117,0.0000021131,0.0000021146, -0.0000021143,0.0000021128,0.0000021127,0.0000021140,0.0000021165, -0.0000021197,0.0000021214,0.0000021216,0.0000021196,0.0000021154, -0.0000021108,0.0000021060,0.0000021010,0.0000020972,0.0000020952, -0.0000020958,0.0000020988,0.0000021031,0.0000021071,0.0000021080, -0.0000021060,0.0000021047,0.0000021063,0.0000021130,0.0000021228, -0.0000021281,0.0000021310,0.0000021374,0.0000021482,0.0000021626, -0.0000021771,0.0000021848,0.0000021873,0.0000021877,0.0000021856, -0.0000021818,0.0000021778,0.0000021758,0.0000021757,0.0000021789, -0.0000021837,0.0000021871,0.0000021894,0.0000021900,0.0000021915, -0.0000021969,0.0000022028,0.0000022078,0.0000022161,0.0000022237, -0.0000022241,0.0000022166,0.0000022098,0.0000022054,0.0000021997, -0.0000021943,0.0000021937,0.0000022019,0.0000022132,0.0000022200, -0.0000022214,0.0000022205,0.0000022179,0.0000022143,0.0000022091, -0.0000022031,0.0000021983,0.0000021951,0.0000021956,0.0000021998, -0.0000022044,0.0000022077,0.0000022094,0.0000022090,0.0000022071, -0.0000022051,0.0000022041,0.0000022041,0.0000022037,0.0000022030, -0.0000022030,0.0000022040,0.0000022047,0.0000022055,0.0000022067, -0.0000022081,0.0000022095,0.0000022093,0.0000022090,0.0000022075, -0.0000022056,0.0000022047,0.0000022032,0.0000021998,0.0000021944, -0.0000021879,0.0000021861,0.0000021893,0.0000022085,0.0000022376, -0.0000022639,0.0000022799,0.0000022885,0.0000022958,0.0000023011, -0.0000023007,0.0000022960,0.0000022894,0.0000022781,0.0000022606, -0.0000022439,0.0000022373,0.0000022392,0.0000022419,0.0000022428, -0.0000022375,0.0000022193,0.0000022057,0.0000022066,0.0000022122, -0.0000022200,0.0000022301,0.0000022373,0.0000022404,0.0000022418, -0.0000022442,0.0000022507,0.0000022607,0.0000022696,0.0000022768, -0.0000022812,0.0000022825,0.0000022820,0.0000022800,0.0000022779, -0.0000022766,0.0000022760,0.0000022760,0.0000022778,0.0000022811, -0.0000022840,0.0000022874,0.0000022929,0.0000022993,0.0000023042, -0.0000023074,0.0000023091,0.0000023086,0.0000023069,0.0000023054, -0.0000023046,0.0000023047,0.0000023045,0.0000023035,0.0000023017, -0.0000023003,0.0000022997,0.0000022999,0.0000023008,0.0000023020, -0.0000023037,0.0000023055,0.0000023067,0.0000023069,0.0000023061, -0.0000023048,0.0000023027,0.0000023010,0.0000023002,0.0000022984, -0.0000022956,0.0000022927,0.0000022882,0.0000022837,0.0000022816, -0.0000022815,0.0000022820,0.0000022832,0.0000022856,0.0000022884, -0.0000022887,0.0000022879,0.0000022881,0.0000022903,0.0000022955, -0.0000023021,0.0000023054,0.0000023049,0.0000022986,0.0000022953, -0.0000022970,0.0000023008,0.0000023004,0.0000022879,0.0000022724, -0.0000022609,0.0000022374,0.0000022169,0.0000022179,0.0000022285, -0.0000022244,0.0000022091,0.0000022062,0.0000022115,0.0000022211, -0.0000022296,0.0000022243,0.0000022067,0.0000021975,0.0000022002, -0.0000022067,0.0000022129,0.0000022151,0.0000022127,0.0000022081, -0.0000022039,0.0000022007,0.0000021985,0.0000021977,0.0000021971, -0.0000021961,0.0000021963,0.0000021977,0.0000022007,0.0000022047, -0.0000022088,0.0000022120,0.0000022140,0.0000022157,0.0000022176, -0.0000022202,0.0000022228,0.0000022235,0.0000022212,0.0000022165, -0.0000022113,0.0000022068,0.0000022039,0.0000022037,0.0000022052, -0.0000022110,0.0000022211,0.0000022327,0.0000022412,0.0000022424, -0.0000022355,0.0000022205,0.0000022036,0.0000021920,0.0000021889, -0.0000021948,0.0000022064,0.0000022202,0.0000022345,0.0000022474, -0.0000022579,0.0000022659,0.0000022719,0.0000022769,0.0000022804, -0.0000022818,0.0000022804,0.0000022766,0.0000022704,0.0000022633, -0.0000022563,0.0000022494,0.0000022425,0.0000022361,0.0000022299, -0.0000022242,0.0000022192,0.0000022154,0.0000022138,0.0000022132, -0.0000022138,0.0000022155,0.0000022178,0.0000022203,0.0000022225, -0.0000022246,0.0000022264,0.0000022280,0.0000022295,0.0000022310, -0.0000022326,0.0000022342,0.0000022356,0.0000022365,0.0000022372, -0.0000022379,0.0000022383,0.0000022385,0.0000022389,0.0000022386, -0.0000022381,0.0000022376,0.0000022362,0.0000022353,0.0000022352, -0.0000022348,0.0000022338,0.0000022318,0.0000022289,0.0000022257, -0.0000022219,0.0000022176,0.0000022140,0.0000022116,0.0000022103, -0.0000022093,0.0000022081,0.0000022076,0.0000022071,0.0000022065, -0.0000022088,0.0000022143,0.0000022230,0.0000022341,0.0000022455, -0.0000022549,0.0000022620,0.0000022679,0.0000022747,0.0000022844, -0.0000022968,0.0000023097,0.0000023209,0.0000023292,0.0000023347, -0.0000023376,0.0000023378,0.0000023363,0.0000023347,0.0000023333, -0.0000023340,0.0000023379,0.0000023443,0.0000023515,0.0000023575, -0.0000023607,0.0000023597,0.0000023556,0.0000023495,0.0000023455, -0.0000023447,0.0000023466,0.0000023498,0.0000023518,0.0000023526, -0.0000023515,0.0000023495,0.0000023458,0.0000023398,0.0000023331, -0.0000023281,0.0000023261,0.0000023257,0.0000023268,0.0000023283, -0.0000023294,0.0000023298,0.0000023296,0.0000023282,0.0000023262, -0.0000023241,0.0000023225,0.0000023212,0.0000023199,0.0000023191, -0.0000023190,0.0000023197,0.0000023210,0.0000023227,0.0000023245, -0.0000023262,0.0000023275,0.0000023282,0.0000023281,0.0000023273, -0.0000023260,0.0000023241,0.0000023217,0.0000023191,0.0000023164, -0.0000023141,0.0000023123,0.0000023111,0.0000023106,0.0000023106, -0.0000023107,0.0000023105,0.0000023097,0.0000023084,0.0000023068, -0.0000023051,0.0000023033,0.0000023020,0.0000023012,0.0000023010, -0.0000023008,0.0000023005,0.0000023005,0.0000023017,0.0000023042, -0.0000023066,0.0000023069,0.0000023046,0.0000023007,0.0000022969, -0.0000022926,0.0000022840,0.0000022721,0.0000022624,0.0000022576, -0.0000022546,0.0000022499,0.0000022411,0.0000022295,0.0000022191, -0.0000022114,0.0000022020,0.0000021861,0.0000021648,0.0000021440, -0.0000021274,0.0000021157,0.0000021076,0.0000021026,0.0000021003, -0.0000021003,0.0000021014,0.0000021019,0.0000021008,0.0000020982, -0.0000020945,0.0000020906,0.0000020866,0.0000020835,0.0000020814, -0.0000020806,0.0000020802,0.0000020801,0.0000020804,0.0000020794, -0.0000020778,0.0000020752,0.0000020725,0.0000020708,0.0000020709, -0.0000020727,0.0000020749,0.0000020773,0.0000020789,0.0000020800, -0.0000020804,0.0000020805,0.0000020801,0.0000020793,0.0000020783, -0.0000020777,0.0000020774,0.0000020786,0.0000020787,0.0000020813, -0.0000020843,0.0000020882,0.0000020928,0.0000020970,0.0000020998, -0.0000021014,0.0000021024,0.0000021034,0.0000021035,0.0000021035, -0.0000021040,0.0000021045,0.0000021046,0.0000021044,0.0000021041, -0.0000021039,0.0000021042,0.0000021065,0.0000021113,0.0000021184, -0.0000021284,0.0000021418,0.0000021575,0.0000021729,0.0000021860, -0.0000021962,0.0000022043,0.0000022101,0.0000022137,0.0000022156, -0.0000022163,0.0000022153,0.0000022152,0.0000022173,0.0000022213, -0.0000022243,0.0000022242,0.0000022220,0.0000022205,0.0000022217, -0.0000022236,0.0000022221,0.0000022201,0.0000022216,0.0000022267, -0.0000022322,0.0000022385,0.0000022441,0.0000022464,0.0000022473, -0.0000022464,0.0000022441,0.0000022411,0.0000022379,0.0000022317, -0.0000022214,0.0000022151,0.0000022169,0.0000022251,0.0000022316, -0.0000022360,0.0000022462,0.0000022630,0.0000022759,0.0000022786, -0.0000022737,0.0000022677,0.0000022660,0.0000022701,0.0000022833, -0.0000023020,0.0000023147,0.0000023166,0.0000023147,0.0000023118, -0.0000023035,0.0000022880,0.0000022649,0.0000022364,0.0000022143, -0.0000022063,0.0000022071,0.0000022087,0.0000022086,0.0000022071, -0.0000022046,0.0000022027,0.0000022023,0.0000022042,0.0000022084, -0.0000022133,0.0000022170,0.0000022191,0.0000022194,0.0000022182, -0.0000022161,0.0000022140,0.0000022132,0.0000022139,0.0000022161, -0.0000022199,0.0000022253,0.0000022311,0.0000022377,0.0000022471, -0.0000022566,0.0000022605,0.0000022597,0.0000022526,0.0000022409, -0.0000022325,0.0000022322,0.0000022372,0.0000022452,0.0000022518, -0.0000022540,0.0000022536,0.0000022523,0.0000022504,0.0000022482, -0.0000022467,0.0000022445,0.0000022384,0.0000022281,0.0000022166, -0.0000022067,0.0000021985,0.0000021915,0.0000021852,0.0000021803, -0.0000021780,0.0000021786,0.0000021817,0.0000021879,0.0000021969, -0.0000022069,0.0000022160,0.0000022239,0.0000022313,0.0000022380, -0.0000022428,0.0000022451,0.0000022454,0.0000022435,0.0000022402, -0.0000022355,0.0000022264,0.0000022111,0.0000021925,0.0000021760, -0.0000021683,0.0000021685,0.0000021826,0.0000021999,0.0000022069, -0.0000022068,0.0000022128,0.0000022358,0.0000022582,0.0000022558, -0.0000022215,0.0000021929,0.0000021857,0.0000021828,0.0000021734, -0.0000021636,0.0000021595,0.0000021582,0.0000021568,0.0000021557, -0.0000021551,0.0000021551,0.0000021560,0.0000021579,0.0000021616, -0.0000021682,0.0000021766,0.0000021835,0.0000021871,0.0000021878, -0.0000021867,0.0000021862,0.0000021875,0.0000021883,0.0000021872, -0.0000021860,0.0000021860,0.0000021870,0.0000021888,0.0000021912, -0.0000021935,0.0000021959,0.0000021987,0.0000022017,0.0000022043, -0.0000022068,0.0000022102,0.0000022162,0.0000022248,0.0000022345, -0.0000022434,0.0000022502,0.0000022566,0.0000022642,0.0000022715, -0.0000022761,0.0000022779,0.0000022787,0.0000022793,0.0000022789, -0.0000022746,0.0000022626,0.0000022422,0.0000022205,0.0000022048, -0.0000021936,0.0000021815,0.0000021663,0.0000021497,0.0000021333, -0.0000021195,0.0000021080,0.0000020955,0.0000020807,0.0000020664, -0.0000020556,0.0000020484,0.0000020444,0.0000020435,0.0000020434, -0.0000020425,0.0000020406,0.0000020391,0.0000020383,0.0000020382, -0.0000020391,0.0000020430,0.0000020506,0.0000020603,0.0000020693, -0.0000020754,0.0000020790,0.0000020824,0.0000020867,0.0000020922, -0.0000020996,0.0000021088,0.0000021173,0.0000021226,0.0000021219, -0.0000021156,0.0000021069,0.0000020995,0.0000020959,0.0000020951, -0.0000020951,0.0000020969,0.0000021012,0.0000021069,0.0000021127, -0.0000021186,0.0000021271,0.0000021394,0.0000021531,0.0000021638, -0.0000021694,0.0000021711,0.0000021717,0.0000021721,0.0000021731, -0.0000021734,0.0000021709,0.0000021648,0.0000021549,0.0000021418, -0.0000021270,0.0000021124,0.0000021025,0.0000021016,0.0000021103, -0.0000021234,0.0000021323,0.0000021343,0.0000021302,0.0000021252, -0.0000021241,0.0000021335,0.0000021500,0.0000021680,0.0000021859, -0.0000022059,0.0000022277,0.0000022484,0.0000022655,0.0000022785, -0.0000022878,0.0000022918,0.0000022904,0.0000022857,0.0000022814, -0.0000022794,0.0000022790,0.0000022799,0.0000022818,0.0000022848, -0.0000022895,0.0000022961,0.0000023046,0.0000023145,0.0000023250, -0.0000023353,0.0000023452,0.0000023554,0.0000023675,0.0000023819, -0.0000023982,0.0000024147,0.0000024296,0.0000024409,0.0000024474, -0.0000024497,0.0000024490,0.0000024466,0.0000024441,0.0000024422, -0.0000024412,0.0000024401,0.0000024380,0.0000024350,0.0000024320, -0.0000024297,0.0000024283,0.0000024281,0.0000024293,0.0000024315, -0.0000024341,0.0000024367,0.0000024377,0.0000024361,0.0000024317, -0.0000024234,0.0000024122,0.0000023994,0.0000023867,0.0000023758, -0.0000023677,0.0000023631,0.0000023606,0.0000023560,0.0000023464, -0.0000023327,0.0000023169,0.0000022996,0.0000022822,0.0000022664, -0.0000022542,0.0000022461,0.0000022393,0.0000022305,0.0000022205, -0.0000022116,0.0000022049,0.0000021991,0.0000021932,0.0000021876, -0.0000021824,0.0000021780,0.0000021750,0.0000021730,0.0000021717, -0.0000021702,0.0000021679,0.0000021658,0.0000021637,0.0000021619, -0.0000021609,0.0000021608,0.0000021609,0.0000021604,0.0000021590, -0.0000021580,0.0000021579,0.0000021583,0.0000021592,0.0000021615, -0.0000021642,0.0000021668,0.0000021689,0.0000021707,0.0000021719, -0.0000021726,0.0000021720,0.0000021708,0.0000021678,0.0000021636, -0.0000021589,0.0000021541,0.0000021488,0.0000021434,0.0000021381, -0.0000021333,0.0000021277,0.0000021229,0.0000021191,0.0000021168, -0.0000021177,0.0000021223,0.0000021338,0.0000021528,0.0000021775, -0.0000022052,0.0000022326,0.0000022566,0.0000022732,0.0000022811, -0.0000022810,0.0000022778,0.0000022725,0.0000022641,0.0000022532, -0.0000022407,0.0000022283,0.0000022174,0.0000022075,0.0000021973, -0.0000021871,0.0000021782,0.0000021709,0.0000021661,0.0000021638, -0.0000021653,0.0000021674,0.0000021710,0.0000021739,0.0000021750, -0.0000021748,0.0000021733,0.0000021708,0.0000021670,0.0000021623, -0.0000021569,0.0000021511,0.0000021450,0.0000021394,0.0000021350, -0.0000021324,0.0000021313,0.0000021310,0.0000021311,0.0000021316, -0.0000021325,0.0000021345,0.0000021377,0.0000021408,0.0000021434, -0.0000021455,0.0000021467,0.0000021466,0.0000021454,0.0000021432, -0.0000021410,0.0000021383,0.0000021359,0.0000021343,0.0000021328, -0.0000021311,0.0000021292,0.0000021268,0.0000021236,0.0000021201, -0.0000021162,0.0000021124,0.0000021083,0.0000021039,0.0000020998, -0.0000020966,0.0000020940,0.0000020925,0.0000020912,0.0000020890, -0.0000020854,0.0000020810,0.0000020769,0.0000020733,0.0000020693, -0.0000020642,0.0000020592,0.0000020564,0.0000020566,0.0000020583, -0.0000020612,0.0000020633,0.0000020642,0.0000020638,0.0000020618, -0.0000020580,0.0000020531,0.0000020473,0.0000020419,0.0000020404, -0.0000020417,0.0000020440,0.0000020461,0.0000020476,0.0000020485, -0.0000020488,0.0000020488,0.0000020484,0.0000020473,0.0000020462, -0.0000020448,0.0000020433,0.0000020424,0.0000020416,0.0000020411, -0.0000020415,0.0000020429,0.0000020445,0.0000020459,0.0000020482, -0.0000020510,0.0000020533,0.0000020544,0.0000020551,0.0000020561, -0.0000020572,0.0000020576,0.0000020562,0.0000020530,0.0000020480, -0.0000020432,0.0000020390,0.0000020354,0.0000020330,0.0000020312, -0.0000020294,0.0000020279,0.0000020282,0.0000020320,0.0000020386, -0.0000020451,0.0000020481,0.0000020484,0.0000020518,0.0000020615, -0.0000020670,0.0000020597,0.0000020517,0.0000020530,0.0000020532, -0.0000020468,0.0000020448,0.0000020507,0.0000020535,0.0000020485, -0.0000020396,0.0000020335,0.0000020318,0.0000020332,0.0000020379, -0.0000020435,0.0000020478,0.0000020535,0.0000020585,0.0000020611, -0.0000020696,0.0000020911,0.0000021147,0.0000021253,0.0000021243, -0.0000021203,0.0000021171,0.0000021144,0.0000021116,0.0000021087, -0.0000021018,0.0000020858,0.0000020629,0.0000020447,0.0000020374, -0.0000020356,0.0000020345,0.0000020355,0.0000020406,0.0000020467, -0.0000020487,0.0000020457,0.0000020367,0.0000020266,0.0000020221, -0.0000020237,0.0000020302,0.0000020388,0.0000020470,0.0000020536, -0.0000020576,0.0000020584,0.0000020574,0.0000020565,0.0000020564, -0.0000020565,0.0000020574,0.0000020596,0.0000020624,0.0000020649, -0.0000020663,0.0000020670,0.0000020678,0.0000020686,0.0000020687, -0.0000020678,0.0000020659,0.0000020633,0.0000020601,0.0000020565, -0.0000020531,0.0000020520,0.0000020529,0.0000020548,0.0000020578, -0.0000020615,0.0000020648,0.0000020677,0.0000020705,0.0000020731, -0.0000020746,0.0000020745,0.0000020699,0.0000020608,0.0000020512, -0.0000020426,0.0000020353,0.0000020316,0.0000020319,0.0000020344, -0.0000020370,0.0000020387,0.0000020400,0.0000020418,0.0000020431, -0.0000020431,0.0000020426,0.0000020423,0.0000020425,0.0000020429, -0.0000020433,0.0000020431,0.0000020416,0.0000020389,0.0000020355, -0.0000020319,0.0000020284,0.0000020251,0.0000020219,0.0000020189, -0.0000020164,0.0000020149,0.0000020140,0.0000020129,0.0000020113, -0.0000020090,0.0000020061,0.0000020028,0.0000019992,0.0000019958, -0.0000019934,0.0000019927,0.0000019930,0.0000019940,0.0000019950, -0.0000019965,0.0000019991,0.0000020026,0.0000020066,0.0000020108, -0.0000020149,0.0000020189,0.0000020222,0.0000020245,0.0000020264, -0.0000020280,0.0000020294,0.0000020304,0.0000020313,0.0000020320, -0.0000020320,0.0000020316,0.0000020317,0.0000020323,0.0000020324, -0.0000020310,0.0000020289,0.0000020291,0.0000020356,0.0000020497, -0.0000020652,0.0000020768,0.0000020854,0.0000020919,0.0000020932, -0.0000020864,0.0000020739,0.0000020651,0.0000020627,0.0000020625, -0.0000020642,0.0000020663,0.0000020684,0.0000020777,0.0000020998, -0.0000021298,0.0000021532,0.0000021645,0.0000021707,0.0000021762, -0.0000021781,0.0000021759,0.0000021716,0.0000021669,0.0000021678, -0.0000021636,0.0000021576,0.0000021499,0.0000021435,0.0000021410, -0.0000021435,0.0000021514,0.0000021609,0.0000021675,0.0000021691, -0.0000021665,0.0000021614,0.0000021571,0.0000021551,0.0000021553, -0.0000021558,0.0000021569,0.0000021577,0.0000021574,0.0000021555, -0.0000021521,0.0000021481,0.0000021436,0.0000021379,0.0000021308, -0.0000021226,0.0000021143,0.0000021067,0.0000021007,0.0000020964, -0.0000020934,0.0000020910,0.0000020903,0.0000020923,0.0000020973, -0.0000021040,0.0000021110,0.0000021162,0.0000021184,0.0000021186, -0.0000021180,0.0000021167,0.0000021152,0.0000021140,0.0000021131, -0.0000021122,0.0000021106,0.0000021082,0.0000021055,0.0000021028, -0.0000021004,0.0000020982,0.0000020964,0.0000020956,0.0000020952, -0.0000020953,0.0000020959,0.0000020965,0.0000020973,0.0000020984, -0.0000021000,0.0000021022,0.0000021051,0.0000021085,0.0000021120, -0.0000021152,0.0000021181,0.0000021206,0.0000021226,0.0000021244, -0.0000021260,0.0000021276,0.0000021286,0.0000021285,0.0000021272, -0.0000021255,0.0000021237,0.0000021221,0.0000021215,0.0000021219, -0.0000021227,0.0000021229,0.0000021219,0.0000021207,0.0000021200, -0.0000021188,0.0000021196,0.0000021230,0.0000021268,0.0000021312, -0.0000021361,0.0000021411,0.0000021464,0.0000021529,0.0000021601, -0.0000021665,0.0000021717,0.0000021750,0.0000021759,0.0000021747, -0.0000021723,0.0000021698,0.0000021687,0.0000021689,0.0000021691, -0.0000021687,0.0000021682,0.0000021679,0.0000021673,0.0000021659, -0.0000021636,0.0000021613,0.0000021593,0.0000021572,0.0000021546, -0.0000021514,0.0000021476,0.0000021432,0.0000021379,0.0000021322, -0.0000021280,0.0000021255,0.0000021239,0.0000021229,0.0000021224, -0.0000021224,0.0000021227,0.0000021230,0.0000021228,0.0000021223, -0.0000021213,0.0000021198,0.0000021180,0.0000021160,0.0000021135, -0.0000021103,0.0000021072,0.0000021051,0.0000021044,0.0000021049, -0.0000021066,0.0000021092,0.0000021120,0.0000021149,0.0000021170, -0.0000021182,0.0000021196,0.0000021217,0.0000021237,0.0000021254, -0.0000021273,0.0000021297,0.0000021324,0.0000021340,0.0000021339, -0.0000021330,0.0000021314,0.0000021294,0.0000021273,0.0000021256, -0.0000021241,0.0000021232,0.0000021230,0.0000021245,0.0000021289, -0.0000021352,0.0000021427,0.0000021510,0.0000021584,0.0000021638, -0.0000021670,0.0000021691,0.0000021706,0.0000021718,0.0000021727, -0.0000021734,0.0000021737,0.0000021737,0.0000021736,0.0000021724, -0.0000021717,0.0000021734,0.0000021751,0.0000021735,0.0000021683, -0.0000021636,0.0000021619,0.0000021645,0.0000021794,0.0000022026, -0.0000022224,0.0000022313,0.0000022323,0.0000022313,0.0000022298, -0.0000022294,0.0000022300,0.0000022324,0.0000022364,0.0000022409, -0.0000022455,0.0000022508,0.0000022569,0.0000022636,0.0000022704, -0.0000022767,0.0000022818,0.0000022854,0.0000022875,0.0000022887, -0.0000022888,0.0000022886,0.0000022877,0.0000022868,0.0000022865, -0.0000022872,0.0000022886,0.0000022910,0.0000022943,0.0000022987, -0.0000023037,0.0000023085,0.0000023125,0.0000023158,0.0000023181, -0.0000023198,0.0000023204,0.0000023200,0.0000023186,0.0000023160, -0.0000023127,0.0000023091,0.0000023055,0.0000023021,0.0000022991, -0.0000022964,0.0000022941,0.0000022920,0.0000022902,0.0000022887, -0.0000022878,0.0000022876,0.0000022876,0.0000022881,0.0000022890, -0.0000022906,0.0000022930,0.0000022957,0.0000022986,0.0000023016, -0.0000023043,0.0000023067,0.0000023088,0.0000023103,0.0000023113, -0.0000023120,0.0000023124,0.0000023126,0.0000023125,0.0000023125, -0.0000023127,0.0000023130,0.0000023134,0.0000023136,0.0000023134, -0.0000023125,0.0000023100,0.0000023055,0.0000022993,0.0000022922, -0.0000022848,0.0000022773,0.0000022703,0.0000022639,0.0000022572, -0.0000022496,0.0000022408,0.0000022313,0.0000022218,0.0000022132, -0.0000022063,0.0000022012,0.0000021973,0.0000021941,0.0000021916, -0.0000021901,0.0000021893,0.0000021886,0.0000021881,0.0000021878, -0.0000021876,0.0000021872,0.0000021861,0.0000021850,0.0000021847, -0.0000021853,0.0000021867,0.0000021888,0.0000021901,0.0000021901, -0.0000021895,0.0000021888,0.0000021877,0.0000021849,0.0000021800, -0.0000021733,0.0000021645,0.0000021549,0.0000021460,0.0000021388, -0.0000021340,0.0000021319,0.0000021312,0.0000021301,0.0000021260, -0.0000021193,0.0000021159,0.0000021158,0.0000021162,0.0000021155, -0.0000021126,0.0000021105,0.0000021115,0.0000021134,0.0000021161, -0.0000021193,0.0000021210,0.0000021210,0.0000021188,0.0000021143, -0.0000021085,0.0000021012,0.0000020942,0.0000020899,0.0000020889, -0.0000020916,0.0000020964,0.0000021026,0.0000021074,0.0000021079, -0.0000021059,0.0000021052,0.0000021082,0.0000021173,0.0000021262, -0.0000021298,0.0000021329,0.0000021409,0.0000021516,0.0000021647, -0.0000021739,0.0000021770,0.0000021782,0.0000021778,0.0000021755, -0.0000021723,0.0000021702,0.0000021700,0.0000021724,0.0000021786, -0.0000021832,0.0000021849,0.0000021850,0.0000021858,0.0000021907, -0.0000021963,0.0000022009,0.0000022092,0.0000022174,0.0000022176, -0.0000022116,0.0000022074,0.0000022050,0.0000021978,0.0000021900, -0.0000021896,0.0000021988,0.0000022101,0.0000022166,0.0000022178, -0.0000022168,0.0000022132,0.0000022088,0.0000022050,0.0000022003, -0.0000021945,0.0000021898,0.0000021875,0.0000021890,0.0000021940, -0.0000021992,0.0000022027,0.0000022035,0.0000022019,0.0000021984, -0.0000021949,0.0000021932,0.0000021935,0.0000021936,0.0000021937, -0.0000021955,0.0000021984,0.0000022010,0.0000022039,0.0000022071, -0.0000022107,0.0000022134,0.0000022142,0.0000022136,0.0000022109, -0.0000022081,0.0000022053,0.0000022011,0.0000021959,0.0000021916, -0.0000021882,0.0000021955,0.0000022135,0.0000022384,0.0000022598, -0.0000022749,0.0000022859,0.0000022953,0.0000023021,0.0000023032, -0.0000023001,0.0000022939,0.0000022832,0.0000022670,0.0000022486, -0.0000022377,0.0000022360,0.0000022381,0.0000022402,0.0000022396, -0.0000022280,0.0000022095,0.0000022057,0.0000022101,0.0000022152, -0.0000022234,0.0000022315,0.0000022367,0.0000022390,0.0000022401, -0.0000022422,0.0000022479,0.0000022564,0.0000022647,0.0000022717, -0.0000022764,0.0000022777,0.0000022775,0.0000022762,0.0000022745, -0.0000022734,0.0000022732,0.0000022737,0.0000022752,0.0000022782, -0.0000022817,0.0000022855,0.0000022913,0.0000022972,0.0000023015, -0.0000023041,0.0000023060,0.0000023065,0.0000023061,0.0000023061, -0.0000023062,0.0000023062,0.0000023064,0.0000023065,0.0000023060, -0.0000023049,0.0000023044,0.0000023047,0.0000023055,0.0000023064, -0.0000023078,0.0000023093,0.0000023097,0.0000023083,0.0000023062, -0.0000023042,0.0000023022,0.0000023009,0.0000022999,0.0000022971, -0.0000022934,0.0000022901,0.0000022860,0.0000022828,0.0000022815, -0.0000022815,0.0000022821,0.0000022833,0.0000022863,0.0000022900, -0.0000022909,0.0000022900,0.0000022890,0.0000022888,0.0000022913, -0.0000022967,0.0000023000,0.0000022994,0.0000022943,0.0000022915, -0.0000022934,0.0000022977,0.0000022993,0.0000022902,0.0000022746, -0.0000022650,0.0000022475,0.0000022246,0.0000022174,0.0000022263, -0.0000022319,0.0000022188,0.0000022074,0.0000022083,0.0000022129, -0.0000022210,0.0000022281,0.0000022237,0.0000022093,0.0000021991, -0.0000021982,0.0000022018,0.0000022071,0.0000022092,0.0000022072, -0.0000022026,0.0000021977,0.0000021936,0.0000021914,0.0000021909, -0.0000021903,0.0000021895,0.0000021896,0.0000021908,0.0000021936, -0.0000021982,0.0000022033,0.0000022076,0.0000022104,0.0000022114, -0.0000022118,0.0000022128,0.0000022151,0.0000022173,0.0000022180, -0.0000022162,0.0000022131,0.0000022099,0.0000022071,0.0000022053, -0.0000022053,0.0000022076,0.0000022137,0.0000022236,0.0000022347, -0.0000022415,0.0000022409,0.0000022300,0.0000022126,0.0000021961, -0.0000021868,0.0000021860,0.0000021922,0.0000022035,0.0000022176, -0.0000022320,0.0000022451,0.0000022560,0.0000022649,0.0000022721, -0.0000022780,0.0000022819,0.0000022826,0.0000022822,0.0000022786, -0.0000022731,0.0000022658,0.0000022576,0.0000022496,0.0000022418, -0.0000022345,0.0000022278,0.0000022219,0.0000022181,0.0000022161, -0.0000022155,0.0000022163,0.0000022178,0.0000022196,0.0000022216, -0.0000022239,0.0000022264,0.0000022285,0.0000022300,0.0000022309, -0.0000022314,0.0000022320,0.0000022330,0.0000022339,0.0000022345, -0.0000022348,0.0000022350,0.0000022351,0.0000022349,0.0000022349, -0.0000022349,0.0000022357,0.0000022365,0.0000022370,0.0000022377, -0.0000022384,0.0000022405,0.0000022411,0.0000022403,0.0000022378, -0.0000022344,0.0000022306,0.0000022264,0.0000022228,0.0000022200, -0.0000022175,0.0000022152,0.0000022129,0.0000022106,0.0000022076, -0.0000022046,0.0000022031,0.0000022011,0.0000022027,0.0000022083, -0.0000022174,0.0000022288,0.0000022409,0.0000022514,0.0000022594, -0.0000022661,0.0000022738,0.0000022841,0.0000022966,0.0000023092, -0.0000023200,0.0000023280,0.0000023331,0.0000023350,0.0000023346, -0.0000023328,0.0000023314,0.0000023316,0.0000023346,0.0000023403, -0.0000023478,0.0000023546,0.0000023587,0.0000023583,0.0000023545, -0.0000023489,0.0000023452,0.0000023451,0.0000023477,0.0000023516, -0.0000023545,0.0000023553,0.0000023538,0.0000023505,0.0000023459, -0.0000023403,0.0000023345,0.0000023291,0.0000023254,0.0000023242, -0.0000023242,0.0000023244,0.0000023250,0.0000023250,0.0000023244, -0.0000023235,0.0000023225,0.0000023214,0.0000023202,0.0000023194, -0.0000023188,0.0000023186,0.0000023189,0.0000023199,0.0000023218, -0.0000023242,0.0000023264,0.0000023281,0.0000023289,0.0000023287, -0.0000023277,0.0000023262,0.0000023242,0.0000023217,0.0000023189, -0.0000023159,0.0000023132,0.0000023113,0.0000023103,0.0000023101, -0.0000023100,0.0000023103,0.0000023103,0.0000023098,0.0000023088, -0.0000023072,0.0000023055,0.0000023039,0.0000023026,0.0000023012, -0.0000023000,0.0000022992,0.0000022990,0.0000022994,0.0000023013, -0.0000023040,0.0000023054,0.0000023043,0.0000023012,0.0000022982, -0.0000022955,0.0000022900,0.0000022799,0.0000022687,0.0000022614, -0.0000022578,0.0000022545,0.0000022487,0.0000022392,0.0000022280, -0.0000022186,0.0000022105,0.0000021983,0.0000021794,0.0000021575, -0.0000021381,0.0000021230,0.0000021120,0.0000021043,0.0000020995, -0.0000020968,0.0000020948,0.0000020938,0.0000020924,0.0000020899, -0.0000020872,0.0000020846,0.0000020824,0.0000020807,0.0000020801, -0.0000020788,0.0000020789,0.0000020798,0.0000020811,0.0000020826, -0.0000020842,0.0000020858,0.0000020865,0.0000020860,0.0000020853, -0.0000020854,0.0000020866,0.0000020872,0.0000020875,0.0000020875, -0.0000020867,0.0000020862,0.0000020862,0.0000020862,0.0000020858, -0.0000020850,0.0000020836,0.0000020821,0.0000020812,0.0000020801, -0.0000020792,0.0000020785,0.0000020785,0.0000020812,0.0000020854, -0.0000020908,0.0000020965,0.0000021004,0.0000021032,0.0000021038, -0.0000021032,0.0000021027,0.0000021014,0.0000020994,0.0000020973, -0.0000020960,0.0000020951,0.0000020941,0.0000020934,0.0000020940, -0.0000020966,0.0000021017,0.0000021108,0.0000021249,0.0000021418, -0.0000021605,0.0000021780,0.0000021918,0.0000022011,0.0000022072, -0.0000022107,0.0000022127,0.0000022133,0.0000022134,0.0000022151, -0.0000022188,0.0000022230,0.0000022246,0.0000022229,0.0000022191, -0.0000022165,0.0000022176,0.0000022198,0.0000022199,0.0000022198, -0.0000022222,0.0000022264,0.0000022313,0.0000022377,0.0000022423, -0.0000022444,0.0000022453,0.0000022442,0.0000022422,0.0000022413, -0.0000022416,0.0000022365,0.0000022258,0.0000022173,0.0000022184, -0.0000022244,0.0000022287,0.0000022314,0.0000022395,0.0000022552, -0.0000022711,0.0000022770,0.0000022736,0.0000022675,0.0000022654, -0.0000022699,0.0000022837,0.0000023015,0.0000023125,0.0000023139, -0.0000023121,0.0000023091,0.0000023025,0.0000022902,0.0000022715, -0.0000022478,0.0000022261,0.0000022140,0.0000022108,0.0000022113, -0.0000022113,0.0000022093,0.0000022062,0.0000022040,0.0000022039, -0.0000022064,0.0000022108,0.0000022152,0.0000022181,0.0000022187, -0.0000022179,0.0000022169,0.0000022166,0.0000022170,0.0000022184, -0.0000022201,0.0000022215,0.0000022243,0.0000022294,0.0000022342, -0.0000022379,0.0000022445,0.0000022538,0.0000022603,0.0000022610, -0.0000022558,0.0000022438,0.0000022331,0.0000022315,0.0000022365, -0.0000022456,0.0000022527,0.0000022545,0.0000022537,0.0000022514, -0.0000022484,0.0000022466,0.0000022452,0.0000022405,0.0000022303, -0.0000022168,0.0000022037,0.0000021938,0.0000021871,0.0000021816, -0.0000021762,0.0000021710,0.0000021672,0.0000021663,0.0000021679, -0.0000021723,0.0000021798,0.0000021900,0.0000022014,0.0000022123, -0.0000022218,0.0000022299,0.0000022366,0.0000022422,0.0000022457, -0.0000022466,0.0000022447,0.0000022414,0.0000022364,0.0000022264, -0.0000022099,0.0000021905,0.0000021734,0.0000021649,0.0000021649, -0.0000021791,0.0000021969,0.0000022058,0.0000022067,0.0000022151, -0.0000022383,0.0000022561,0.0000022511,0.0000022157,0.0000021892, -0.0000021835,0.0000021788,0.0000021687,0.0000021613,0.0000021597, -0.0000021587,0.0000021580,0.0000021582,0.0000021597,0.0000021624, -0.0000021660,0.0000021710,0.0000021776,0.0000021849,0.0000021908, -0.0000021945,0.0000021964,0.0000021976,0.0000021996,0.0000022015, -0.0000022009,0.0000021970,0.0000021923,0.0000021891,0.0000021878, -0.0000021885,0.0000021904,0.0000021927,0.0000021953,0.0000021980, -0.0000022008,0.0000022035,0.0000022061,0.0000022101,0.0000022167, -0.0000022262,0.0000022369,0.0000022461,0.0000022533,0.0000022600, -0.0000022680,0.0000022760,0.0000022812,0.0000022833,0.0000022839, -0.0000022839,0.0000022822,0.0000022766,0.0000022641,0.0000022441, -0.0000022226,0.0000022065,0.0000021955,0.0000021845,0.0000021707, -0.0000021546,0.0000021376,0.0000021227,0.0000021108,0.0000020993, -0.0000020857,0.0000020717,0.0000020608,0.0000020539,0.0000020493, -0.0000020471,0.0000020470,0.0000020465,0.0000020444,0.0000020420, -0.0000020399,0.0000020384,0.0000020378,0.0000020383,0.0000020414, -0.0000020480,0.0000020572,0.0000020661,0.0000020727,0.0000020778, -0.0000020823,0.0000020866,0.0000020918,0.0000020986,0.0000021071, -0.0000021152,0.0000021202,0.0000021204,0.0000021150,0.0000021073, -0.0000021003,0.0000020962,0.0000020951,0.0000020946,0.0000020961, -0.0000021003,0.0000021065,0.0000021127,0.0000021181,0.0000021251, -0.0000021357,0.0000021489,0.0000021614,0.0000021700,0.0000021736, -0.0000021752,0.0000021752,0.0000021754,0.0000021753,0.0000021737, -0.0000021681,0.0000021578,0.0000021446,0.0000021294,0.0000021135, -0.0000021010,0.0000020988,0.0000021046,0.0000021164,0.0000021260, -0.0000021285,0.0000021252,0.0000021210,0.0000021211,0.0000021304, -0.0000021469,0.0000021646,0.0000021818,0.0000022004,0.0000022206, -0.0000022404,0.0000022572,0.0000022708,0.0000022813,0.0000022876, -0.0000022884,0.0000022864,0.0000022824,0.0000022791,0.0000022776, -0.0000022776,0.0000022796,0.0000022824,0.0000022859,0.0000022903, -0.0000022964,0.0000023040,0.0000023122,0.0000023208,0.0000023302, -0.0000023407,0.0000023525,0.0000023660,0.0000023820,0.0000023997, -0.0000024171,0.0000024313,0.0000024403,0.0000024445,0.0000024451, -0.0000024439,0.0000024421,0.0000024407,0.0000024395,0.0000024378, -0.0000024349,0.0000024313,0.0000024276,0.0000024246,0.0000024232, -0.0000024235,0.0000024253,0.0000024280,0.0000024315,0.0000024341, -0.0000024344,0.0000024314,0.0000024243,0.0000024151,0.0000024035, -0.0000023914,0.0000023811,0.0000023731,0.0000023669,0.0000023628, -0.0000023597,0.0000023537,0.0000023426,0.0000023284,0.0000023131, -0.0000022968,0.0000022796,0.0000022632,0.0000022505,0.0000022421, -0.0000022351,0.0000022270,0.0000022179,0.0000022097,0.0000022035, -0.0000021989,0.0000021950,0.0000021906,0.0000021858,0.0000021813, -0.0000021778,0.0000021751,0.0000021726,0.0000021695,0.0000021665, -0.0000021641,0.0000021614,0.0000021587,0.0000021573,0.0000021571, -0.0000021572,0.0000021572,0.0000021576,0.0000021586,0.0000021598, -0.0000021613,0.0000021632,0.0000021649,0.0000021661,0.0000021667, -0.0000021673,0.0000021677,0.0000021680,0.0000021685,0.0000021686, -0.0000021676,0.0000021657,0.0000021631,0.0000021600,0.0000021561, -0.0000021515,0.0000021459,0.0000021388,0.0000021312,0.0000021239, -0.0000021177,0.0000021121,0.0000021077,0.0000021052,0.0000021067, -0.0000021131,0.0000021245,0.0000021412,0.0000021639,0.0000021920, -0.0000022221,0.0000022500,0.0000022692,0.0000022793,0.0000022781, -0.0000022748,0.0000022687,0.0000022593,0.0000022483,0.0000022373, -0.0000022272,0.0000022178,0.0000022083,0.0000021992,0.0000021913, -0.0000021845,0.0000021784,0.0000021740,0.0000021718,0.0000021709, -0.0000021721,0.0000021722,0.0000021718,0.0000021716,0.0000021710, -0.0000021693,0.0000021668,0.0000021634,0.0000021589,0.0000021538, -0.0000021487,0.0000021441,0.0000021411,0.0000021396,0.0000021388, -0.0000021387,0.0000021393,0.0000021409,0.0000021438,0.0000021476, -0.0000021514,0.0000021543,0.0000021557,0.0000021558,0.0000021544, -0.0000021516,0.0000021477,0.0000021432,0.0000021393,0.0000021361, -0.0000021338,0.0000021319,0.0000021300,0.0000021280,0.0000021260, -0.0000021234,0.0000021202,0.0000021167,0.0000021132,0.0000021096, -0.0000021058,0.0000021019,0.0000020984,0.0000020955,0.0000020940, -0.0000020935,0.0000020936,0.0000020938,0.0000020920,0.0000020882, -0.0000020832,0.0000020784,0.0000020738,0.0000020693,0.0000020648, -0.0000020603,0.0000020571,0.0000020565,0.0000020564,0.0000020576, -0.0000020588,0.0000020588,0.0000020575,0.0000020547,0.0000020505, -0.0000020457,0.0000020422,0.0000020422,0.0000020441,0.0000020464, -0.0000020486,0.0000020503,0.0000020512,0.0000020515,0.0000020512, -0.0000020502,0.0000020491,0.0000020472,0.0000020450,0.0000020438, -0.0000020429,0.0000020416,0.0000020406,0.0000020409,0.0000020418, -0.0000020428,0.0000020446,0.0000020472,0.0000020492,0.0000020502, -0.0000020509,0.0000020520,0.0000020535,0.0000020547,0.0000020554, -0.0000020549,0.0000020526,0.0000020487,0.0000020434,0.0000020372, -0.0000020312,0.0000020277,0.0000020260,0.0000020246,0.0000020221, -0.0000020201,0.0000020209,0.0000020258,0.0000020343,0.0000020420, -0.0000020451,0.0000020467,0.0000020545,0.0000020627,0.0000020587, -0.0000020500,0.0000020498,0.0000020511,0.0000020452,0.0000020430, -0.0000020488,0.0000020523,0.0000020477,0.0000020387,0.0000020316, -0.0000020293,0.0000020308,0.0000020356,0.0000020410,0.0000020462, -0.0000020526,0.0000020565,0.0000020589,0.0000020683,0.0000020884, -0.0000021094,0.0000021195,0.0000021201,0.0000021180,0.0000021155, -0.0000021120,0.0000021056,0.0000020930,0.0000020725,0.0000020512, -0.0000020381,0.0000020330,0.0000020310,0.0000020308,0.0000020323, -0.0000020359,0.0000020419,0.0000020469,0.0000020477,0.0000020415, -0.0000020303,0.0000020221,0.0000020213,0.0000020258,0.0000020342, -0.0000020433,0.0000020507,0.0000020554,0.0000020568,0.0000020564, -0.0000020559,0.0000020558,0.0000020556,0.0000020555,0.0000020566, -0.0000020587,0.0000020607,0.0000020617,0.0000020618,0.0000020620, -0.0000020624,0.0000020625,0.0000020621,0.0000020609,0.0000020588, -0.0000020562,0.0000020537,0.0000020514,0.0000020500,0.0000020507, -0.0000020530,0.0000020558,0.0000020594,0.0000020635,0.0000020672, -0.0000020704,0.0000020727,0.0000020740,0.0000020734,0.0000020686, -0.0000020602,0.0000020519,0.0000020442,0.0000020367,0.0000020319, -0.0000020313,0.0000020332,0.0000020361,0.0000020387,0.0000020408, -0.0000020427,0.0000020439,0.0000020441,0.0000020437,0.0000020435, -0.0000020436,0.0000020438,0.0000020441,0.0000020444,0.0000020442, -0.0000020426,0.0000020397,0.0000020360,0.0000020322,0.0000020285, -0.0000020248,0.0000020211,0.0000020178,0.0000020156,0.0000020139, -0.0000020125,0.0000020111,0.0000020097,0.0000020079,0.0000020050, -0.0000020015,0.0000019982,0.0000019955,0.0000019931,0.0000019914, -0.0000019909,0.0000019919,0.0000019942,0.0000019968,0.0000019996, -0.0000020029,0.0000020066,0.0000020103,0.0000020141,0.0000020183, -0.0000020224,0.0000020254,0.0000020271,0.0000020282,0.0000020291, -0.0000020296,0.0000020299,0.0000020302,0.0000020303,0.0000020296, -0.0000020280,0.0000020267,0.0000020269,0.0000020285,0.0000020296, -0.0000020291,0.0000020289,0.0000020322,0.0000020422,0.0000020571, -0.0000020712,0.0000020818,0.0000020893,0.0000020923,0.0000020902, -0.0000020801,0.0000020681,0.0000020617,0.0000020607,0.0000020631, -0.0000020669,0.0000020689,0.0000020710,0.0000020820,0.0000021063, -0.0000021358,0.0000021568,0.0000021672,0.0000021722,0.0000021748, -0.0000021745,0.0000021716,0.0000021718,0.0000021698,0.0000021663, -0.0000021612,0.0000021542,0.0000021461,0.0000021397,0.0000021374, -0.0000021396,0.0000021464,0.0000021548,0.0000021619,0.0000021652, -0.0000021656,0.0000021638,0.0000021608,0.0000021582,0.0000021567, -0.0000021560,0.0000021555,0.0000021539,0.0000021510,0.0000021470, -0.0000021427,0.0000021375,0.0000021313,0.0000021243,0.0000021170, -0.0000021102,0.0000021047,0.0000021007,0.0000020972,0.0000020940, -0.0000020920,0.0000020924,0.0000020950,0.0000020994,0.0000021049, -0.0000021105,0.0000021147,0.0000021168,0.0000021166,0.0000021152, -0.0000021133,0.0000021112,0.0000021095,0.0000021079,0.0000021061, -0.0000021036,0.0000021005,0.0000020974,0.0000020947,0.0000020923, -0.0000020901,0.0000020886,0.0000020879,0.0000020881,0.0000020892, -0.0000020904,0.0000020917,0.0000020931,0.0000020948,0.0000020968, -0.0000020996,0.0000021030,0.0000021072,0.0000021117,0.0000021159, -0.0000021195,0.0000021220,0.0000021234,0.0000021240,0.0000021243, -0.0000021253,0.0000021258,0.0000021255,0.0000021245,0.0000021230, -0.0000021212,0.0000021195,0.0000021188,0.0000021192,0.0000021202, -0.0000021213,0.0000021220,0.0000021215,0.0000021198,0.0000021177, -0.0000021164,0.0000021157,0.0000021147,0.0000021140,0.0000021155, -0.0000021178,0.0000021215,0.0000021265,0.0000021330,0.0000021406, -0.0000021482,0.0000021545,0.0000021586,0.0000021604,0.0000021608, -0.0000021606,0.0000021606,0.0000021611,0.0000021616,0.0000021612, -0.0000021596,0.0000021580,0.0000021561,0.0000021530,0.0000021491, -0.0000021456,0.0000021426,0.0000021395,0.0000021361,0.0000021320, -0.0000021277,0.0000021231,0.0000021183,0.0000021140,0.0000021116, -0.0000021104,0.0000021102,0.0000021110,0.0000021123,0.0000021136, -0.0000021149,0.0000021159,0.0000021163,0.0000021162,0.0000021157, -0.0000021151,0.0000021139,0.0000021120,0.0000021090,0.0000021052, -0.0000021016,0.0000020992,0.0000020984,0.0000020987,0.0000021002, -0.0000021030,0.0000021064,0.0000021104,0.0000021137,0.0000021155, -0.0000021167,0.0000021182,0.0000021201,0.0000021221,0.0000021244, -0.0000021271,0.0000021300,0.0000021318,0.0000021321,0.0000021317, -0.0000021308,0.0000021290,0.0000021269,0.0000021250,0.0000021234, -0.0000021223,0.0000021214,0.0000021212,0.0000021238,0.0000021289, -0.0000021356,0.0000021430,0.0000021503,0.0000021568,0.0000021619, -0.0000021650,0.0000021666,0.0000021677,0.0000021691,0.0000021708, -0.0000021723,0.0000021741,0.0000021763,0.0000021768,0.0000021742, -0.0000021704,0.0000021703,0.0000021717,0.0000021697,0.0000021641, -0.0000021594,0.0000021585,0.0000021642,0.0000021805,0.0000022035, -0.0000022230,0.0000022324,0.0000022337,0.0000022321,0.0000022295, -0.0000022277,0.0000022272,0.0000022277,0.0000022296,0.0000022328, -0.0000022370,0.0000022424,0.0000022487,0.0000022556,0.0000022628, -0.0000022698,0.0000022760,0.0000022812,0.0000022854,0.0000022882, -0.0000022895,0.0000022903,0.0000022905,0.0000022904,0.0000022904, -0.0000022908,0.0000022920,0.0000022940,0.0000022968,0.0000023003, -0.0000023040,0.0000023079,0.0000023117,0.0000023152,0.0000023184, -0.0000023207,0.0000023223,0.0000023228,0.0000023226,0.0000023214, -0.0000023189,0.0000023153,0.0000023109,0.0000023062,0.0000023016, -0.0000022973,0.0000022936,0.0000022903,0.0000022876,0.0000022854, -0.0000022838,0.0000022826,0.0000022819,0.0000022817,0.0000022826, -0.0000022842,0.0000022864,0.0000022888,0.0000022916,0.0000022941, -0.0000022964,0.0000022983,0.0000022998,0.0000023009,0.0000023014, -0.0000023017,0.0000023019,0.0000023022,0.0000023025,0.0000023026, -0.0000023023,0.0000023012,0.0000022991,0.0000022963,0.0000022930, -0.0000022887,0.0000022836,0.0000022778,0.0000022720,0.0000022661, -0.0000022597,0.0000022526,0.0000022450,0.0000022360,0.0000022256, -0.0000022147,0.0000022048,0.0000021964,0.0000021895,0.0000021847, -0.0000021813,0.0000021785,0.0000021760,0.0000021743,0.0000021731, -0.0000021727,0.0000021727,0.0000021731,0.0000021741,0.0000021750, -0.0000021755,0.0000021755,0.0000021751,0.0000021749,0.0000021752, -0.0000021763,0.0000021778,0.0000021788,0.0000021794,0.0000021797, -0.0000021796,0.0000021787,0.0000021765,0.0000021725,0.0000021666, -0.0000021589,0.0000021503,0.0000021420,0.0000021353,0.0000021315, -0.0000021305,0.0000021304,0.0000021293,0.0000021246,0.0000021198, -0.0000021188,0.0000021188,0.0000021173,0.0000021138,0.0000021096, -0.0000021087,0.0000021103,0.0000021118,0.0000021139,0.0000021165, -0.0000021186,0.0000021190,0.0000021176,0.0000021136,0.0000021076, -0.0000020990,0.0000020896,0.0000020848,0.0000020847,0.0000020885, -0.0000020950,0.0000021025,0.0000021074,0.0000021076,0.0000021053, -0.0000021052,0.0000021099,0.0000021199,0.0000021274,0.0000021298, -0.0000021337,0.0000021425,0.0000021526,0.0000021627,0.0000021679, -0.0000021684,0.0000021680,0.0000021673,0.0000021655,0.0000021635, -0.0000021631,0.0000021651,0.0000021716,0.0000021795,0.0000021824, -0.0000021817,0.0000021814,0.0000021846,0.0000021903,0.0000021945, -0.0000022020,0.0000022106,0.0000022119,0.0000022065,0.0000022037, -0.0000022034,0.0000021968,0.0000021869,0.0000021856,0.0000021943, -0.0000022060,0.0000022119,0.0000022134,0.0000022129,0.0000022097, -0.0000022044,0.0000021995,0.0000021947,0.0000021887,0.0000021834, -0.0000021824,0.0000021839,0.0000021880,0.0000021936,0.0000021992, -0.0000022023,0.0000022026,0.0000021998,0.0000021952,0.0000021908, -0.0000021883,0.0000021882,0.0000021885,0.0000021901,0.0000021939, -0.0000021981,0.0000022023,0.0000022070,0.0000022114,0.0000022150, -0.0000022166,0.0000022158,0.0000022133,0.0000022095,0.0000022068, -0.0000022048,0.0000022010,0.0000022008,0.0000022044,0.0000022124, -0.0000022254,0.0000022415,0.0000022573,0.0000022704,0.0000022818, -0.0000022934,0.0000023017,0.0000023039,0.0000023027,0.0000022985, -0.0000022882,0.0000022723,0.0000022528,0.0000022403,0.0000022362, -0.0000022354,0.0000022365,0.0000022380,0.0000022330,0.0000022156, -0.0000022052,0.0000022086,0.0000022131,0.0000022190,0.0000022269, -0.0000022328,0.0000022361,0.0000022373,0.0000022381,0.0000022407, -0.0000022466,0.0000022540,0.0000022619,0.0000022686,0.0000022729, -0.0000022742,0.0000022738,0.0000022725,0.0000022709,0.0000022704, -0.0000022704,0.0000022721,0.0000022741,0.0000022764,0.0000022803, -0.0000022850,0.0000022906,0.0000022962,0.0000023000,0.0000023022, -0.0000023038,0.0000023049,0.0000023055,0.0000023064,0.0000023073, -0.0000023077,0.0000023081,0.0000023086,0.0000023086,0.0000023083, -0.0000023078,0.0000023078,0.0000023083,0.0000023089,0.0000023099, -0.0000023108,0.0000023103,0.0000023083,0.0000023053,0.0000023028, -0.0000023009,0.0000022996,0.0000022977,0.0000022942,0.0000022902, -0.0000022866,0.0000022833,0.0000022816,0.0000022813,0.0000022815, -0.0000022822,0.0000022840,0.0000022877,0.0000022919,0.0000022934, -0.0000022924,0.0000022900,0.0000022881,0.0000022882,0.0000022912, -0.0000022937,0.0000022927,0.0000022889,0.0000022874,0.0000022895, -0.0000022941,0.0000022969,0.0000022904,0.0000022761,0.0000022671, -0.0000022547,0.0000022328,0.0000022203,0.0000022232,0.0000022346, -0.0000022305,0.0000022135,0.0000022081,0.0000022103,0.0000022133, -0.0000022198,0.0000022266,0.0000022251,0.0000022128,0.0000022005, -0.0000021952,0.0000021954,0.0000021978,0.0000021990,0.0000021975, -0.0000021941,0.0000021895,0.0000021854,0.0000021829,0.0000021820, -0.0000021818,0.0000021816,0.0000021817,0.0000021829,0.0000021861, -0.0000021914,0.0000021982,0.0000022045,0.0000022086,0.0000022096, -0.0000022087,0.0000022071,0.0000022070,0.0000022087,0.0000022115, -0.0000022133,0.0000022124,0.0000022118,0.0000022112,0.0000022098, -0.0000022084,0.0000022080,0.0000022096,0.0000022154,0.0000022251, -0.0000022349,0.0000022393,0.0000022346,0.0000022223,0.0000022074, -0.0000021943,0.0000021858,0.0000021845,0.0000021887,0.0000021968, -0.0000022096,0.0000022241,0.0000022386,0.0000022516,0.0000022623, -0.0000022713,0.0000022778,0.0000022815,0.0000022828,0.0000022819, -0.0000022793,0.0000022741,0.0000022671,0.0000022590,0.0000022504, -0.0000022419,0.0000022339,0.0000022272,0.0000022226,0.0000022201, -0.0000022197,0.0000022206,0.0000022222,0.0000022239,0.0000022258, -0.0000022282,0.0000022306,0.0000022321,0.0000022327,0.0000022323, -0.0000022314,0.0000022305,0.0000022297,0.0000022292,0.0000022287, -0.0000022281,0.0000022278,0.0000022273,0.0000022266,0.0000022260, -0.0000022263,0.0000022278,0.0000022298,0.0000022320,0.0000022344, -0.0000022373,0.0000022402,0.0000022427,0.0000022433,0.0000022428, -0.0000022408,0.0000022377,0.0000022344,0.0000022316,0.0000022291, -0.0000022268,0.0000022245,0.0000022221,0.0000022184,0.0000022137, -0.0000022092,0.0000022053,0.0000022013,0.0000021982,0.0000021973, -0.0000021984,0.0000022036,0.0000022127,0.0000022247,0.0000022374, -0.0000022485,0.0000022570,0.0000022641,0.0000022723,0.0000022827, -0.0000022946,0.0000023065,0.0000023168,0.0000023245,0.0000023290, -0.0000023305,0.0000023298,0.0000023285,0.0000023279,0.0000023299, -0.0000023352,0.0000023425,0.0000023498,0.0000023549,0.0000023562, -0.0000023537,0.0000023492,0.0000023457,0.0000023453,0.0000023474, -0.0000023515,0.0000023553,0.0000023569,0.0000023558,0.0000023526, -0.0000023490,0.0000023449,0.0000023395,0.0000023334,0.0000023281, -0.0000023248,0.0000023233,0.0000023230,0.0000023228,0.0000023226, -0.0000023224,0.0000023218,0.0000023210,0.0000023202,0.0000023197, -0.0000023193,0.0000023190,0.0000023189,0.0000023192,0.0000023206, -0.0000023227,0.0000023249,0.0000023270,0.0000023283,0.0000023284, -0.0000023274,0.0000023258,0.0000023238,0.0000023213,0.0000023185, -0.0000023156,0.0000023131,0.0000023114,0.0000023105,0.0000023099, -0.0000023097,0.0000023095,0.0000023091,0.0000023084,0.0000023072, -0.0000023057,0.0000023041,0.0000023026,0.0000023011,0.0000022991, -0.0000022970,0.0000022959,0.0000022961,0.0000022976,0.0000022999, -0.0000023019,0.0000023020,0.0000022998,0.0000022968,0.0000022946, -0.0000022917,0.0000022848,0.0000022747,0.0000022656,0.0000022606, -0.0000022579,0.0000022544,0.0000022483,0.0000022389,0.0000022287, -0.0000022201,0.0000022103,0.0000021945,0.0000021732,0.0000021524, -0.0000021356,0.0000021225,0.0000021125,0.0000021061,0.0000021017, -0.0000020979,0.0000020942,0.0000020906,0.0000020871,0.0000020842, -0.0000020825,0.0000020818,0.0000020812,0.0000020819,0.0000020828, -0.0000020839,0.0000020851,0.0000020864,0.0000020878,0.0000020894, -0.0000020911,0.0000020928,0.0000020942,0.0000020948,0.0000020947, -0.0000020946,0.0000020955,0.0000020952,0.0000020938,0.0000020920, -0.0000020897,0.0000020876,0.0000020867,0.0000020866,0.0000020863, -0.0000020859,0.0000020849,0.0000020840,0.0000020839,0.0000020840, -0.0000020839,0.0000020834,0.0000020814,0.0000020798,0.0000020796, -0.0000020796,0.0000020846,0.0000020904,0.0000020962,0.0000021005, -0.0000021023,0.0000021030,0.0000021017,0.0000020993,0.0000020958, -0.0000020922,0.0000020891,0.0000020868,0.0000020847,0.0000020830, -0.0000020828,0.0000020843,0.0000020885,0.0000020975,0.0000021105, -0.0000021271,0.0000021477,0.0000021695,0.0000021869,0.0000021975, -0.0000022033,0.0000022069,0.0000022092,0.0000022102,0.0000022114, -0.0000022151,0.0000022206,0.0000022245,0.0000022249,0.0000022211, -0.0000022157,0.0000022121,0.0000022134,0.0000022161,0.0000022175, -0.0000022192,0.0000022228,0.0000022269,0.0000022321,0.0000022375, -0.0000022409,0.0000022427,0.0000022427,0.0000022409,0.0000022396, -0.0000022418,0.0000022442,0.0000022408,0.0000022307,0.0000022213, -0.0000022192,0.0000022220,0.0000022251,0.0000022270,0.0000022326, -0.0000022464,0.0000022640,0.0000022740,0.0000022728,0.0000022672, -0.0000022643,0.0000022691,0.0000022834,0.0000023003,0.0000023097, -0.0000023108,0.0000023090,0.0000023059,0.0000023019,0.0000022928, -0.0000022783,0.0000022597,0.0000022403,0.0000022253,0.0000022169, -0.0000022135,0.0000022123,0.0000022107,0.0000022085,0.0000022069, -0.0000022067,0.0000022085,0.0000022117,0.0000022145,0.0000022153, -0.0000022147,0.0000022147,0.0000022163,0.0000022187,0.0000022220, -0.0000022247,0.0000022255,0.0000022256,0.0000022276,0.0000022322, -0.0000022356,0.0000022369,0.0000022404,0.0000022485,0.0000022574, -0.0000022608,0.0000022575,0.0000022461,0.0000022339,0.0000022312, -0.0000022370,0.0000022474,0.0000022545,0.0000022554,0.0000022535, -0.0000022498,0.0000022468,0.0000022456,0.0000022424,0.0000022328, -0.0000022183,0.0000022036,0.0000021916,0.0000021829,0.0000021775, -0.0000021734,0.0000021690,0.0000021640,0.0000021593,0.0000021565, -0.0000021569,0.0000021597,0.0000021647,0.0000021730,0.0000021844, -0.0000021971,0.0000022091,0.0000022198,0.0000022287,0.0000022362, -0.0000022427,0.0000022469,0.0000022479,0.0000022454,0.0000022412, -0.0000022356,0.0000022248,0.0000022077,0.0000021881,0.0000021713, -0.0000021626,0.0000021625,0.0000021764,0.0000021950,0.0000022058, -0.0000022061,0.0000022148,0.0000022397,0.0000022585,0.0000022469, -0.0000022094,0.0000021855,0.0000021805,0.0000021744,0.0000021652, -0.0000021604,0.0000021602,0.0000021606,0.0000021617,0.0000021643, -0.0000021680,0.0000021722,0.0000021772,0.0000021827,0.0000021881, -0.0000021926,0.0000021961,0.0000021988,0.0000022024,0.0000022074, -0.0000022110,0.0000022106,0.0000022060,0.0000021987,0.0000021916, -0.0000021877,0.0000021870,0.0000021878,0.0000021895,0.0000021916, -0.0000021943,0.0000021980,0.0000022018,0.0000022059,0.0000022116, -0.0000022195,0.0000022297,0.0000022404,0.0000022497,0.0000022575, -0.0000022649,0.0000022732,0.0000022810,0.0000022862,0.0000022883, -0.0000022885,0.0000022877,0.0000022846,0.0000022780,0.0000022657, -0.0000022468,0.0000022255,0.0000022085,0.0000021972,0.0000021874, -0.0000021754,0.0000021606,0.0000021438,0.0000021278,0.0000021150, -0.0000021042,0.0000020920,0.0000020784,0.0000020671,0.0000020598, -0.0000020550,0.0000020518,0.0000020508,0.0000020507,0.0000020493, -0.0000020471,0.0000020442,0.0000020411,0.0000020388,0.0000020378, -0.0000020376,0.0000020397,0.0000020454,0.0000020538,0.0000020625, -0.0000020707,0.0000020773,0.0000020822,0.0000020865,0.0000020913, -0.0000020975,0.0000021049,0.0000021122,0.0000021173,0.0000021175, -0.0000021146,0.0000021072,0.0000021006,0.0000020966,0.0000020952, -0.0000020945,0.0000020954,0.0000020992,0.0000021055,0.0000021120, -0.0000021174,0.0000021233,0.0000021321,0.0000021445,0.0000021579, -0.0000021693,0.0000021757,0.0000021769,0.0000021771,0.0000021766, -0.0000021763,0.0000021747,0.0000021695,0.0000021597,0.0000021461, -0.0000021303,0.0000021137,0.0000021006,0.0000020946,0.0000020985, -0.0000021095,0.0000021192,0.0000021225,0.0000021204,0.0000021173, -0.0000021185,0.0000021280,0.0000021439,0.0000021615,0.0000021780, -0.0000021944,0.0000022127,0.0000022314,0.0000022481,0.0000022617, -0.0000022726,0.0000022809,0.0000022854,0.0000022849,0.0000022830, -0.0000022795,0.0000022769,0.0000022766,0.0000022778,0.0000022799, -0.0000022823,0.0000022856,0.0000022900,0.0000022951,0.0000023009, -0.0000023081,0.0000023173,0.0000023278,0.0000023390,0.0000023517, -0.0000023670,0.0000023853,0.0000024046,0.0000024211,0.0000024323, -0.0000024380,0.0000024403,0.0000024402,0.0000024392,0.0000024377, -0.0000024358,0.0000024331,0.0000024299,0.0000024264,0.0000024229, -0.0000024199,0.0000024187,0.0000024195,0.0000024219,0.0000024255, -0.0000024289,0.0000024301,0.0000024288,0.0000024236,0.0000024153, -0.0000024054,0.0000023945,0.0000023849,0.0000023777,0.0000023717, -0.0000023661,0.0000023618,0.0000023576,0.0000023498,0.0000023375, -0.0000023234,0.0000023092,0.0000022934,0.0000022760,0.0000022591, -0.0000022462,0.0000022383,0.0000022329,0.0000022264,0.0000022178, -0.0000022090,0.0000022025,0.0000021986,0.0000021957,0.0000021921, -0.0000021878,0.0000021830,0.0000021787,0.0000021747,0.0000021705, -0.0000021669,0.0000021641,0.0000021611,0.0000021578,0.0000021551, -0.0000021537,0.0000021530,0.0000021530,0.0000021540,0.0000021558, -0.0000021578,0.0000021602,0.0000021631,0.0000021654,0.0000021665, -0.0000021669,0.0000021668,0.0000021663,0.0000021653,0.0000021643, -0.0000021633,0.0000021620,0.0000021611,0.0000021606,0.0000021595, -0.0000021575,0.0000021546,0.0000021515,0.0000021463,0.0000021395, -0.0000021317,0.0000021239,0.0000021168,0.0000021098,0.0000021041, -0.0000021007,0.0000020997,0.0000021017,0.0000021072,0.0000021168, -0.0000021321,0.0000021542,0.0000021828,0.0000022143,0.0000022435, -0.0000022636,0.0000022742,0.0000022730,0.0000022707,0.0000022642, -0.0000022551,0.0000022454,0.0000022358,0.0000022269,0.0000022188, -0.0000022115,0.0000022050,0.0000021980,0.0000021911,0.0000021858, -0.0000021824,0.0000021799,0.0000021773,0.0000021745,0.0000021721, -0.0000021706,0.0000021693,0.0000021673,0.0000021649,0.0000021620, -0.0000021582,0.0000021542,0.0000021504,0.0000021477,0.0000021468, -0.0000021474,0.0000021488,0.0000021510,0.0000021544,0.0000021586, -0.0000021624,0.0000021653,0.0000021668,0.0000021666,0.0000021643, -0.0000021604,0.0000021562,0.0000021509,0.0000021451,0.0000021392, -0.0000021344,0.0000021309,0.0000021281,0.0000021255,0.0000021228, -0.0000021204,0.0000021182,0.0000021159,0.0000021131,0.0000021102, -0.0000021072,0.0000021039,0.0000021006,0.0000020974,0.0000020945, -0.0000020928,0.0000020924,0.0000020926,0.0000020937,0.0000020947, -0.0000020947,0.0000020932,0.0000020890,0.0000020832,0.0000020771, -0.0000020725,0.0000020689,0.0000020647,0.0000020597,0.0000020554, -0.0000020532,0.0000020531,0.0000020537,0.0000020538,0.0000020531, -0.0000020510,0.0000020478,0.0000020447,0.0000020434,0.0000020442, -0.0000020465,0.0000020490,0.0000020511,0.0000020527,0.0000020537, -0.0000020538,0.0000020533,0.0000020524,0.0000020503,0.0000020473, -0.0000020450,0.0000020436,0.0000020418,0.0000020397,0.0000020382, -0.0000020375,0.0000020377,0.0000020389,0.0000020412,0.0000020433, -0.0000020445,0.0000020455,0.0000020469,0.0000020487,0.0000020500, -0.0000020508,0.0000020513,0.0000020511,0.0000020500,0.0000020473, -0.0000020424,0.0000020358,0.0000020289,0.0000020236,0.0000020208, -0.0000020193,0.0000020174,0.0000020152,0.0000020132,0.0000020147, -0.0000020216,0.0000020325,0.0000020401,0.0000020424,0.0000020480, -0.0000020576,0.0000020573,0.0000020481,0.0000020470,0.0000020489, -0.0000020438,0.0000020416,0.0000020477,0.0000020517,0.0000020471, -0.0000020373,0.0000020294,0.0000020270,0.0000020288,0.0000020339, -0.0000020393,0.0000020451,0.0000020513,0.0000020539,0.0000020558, -0.0000020647,0.0000020822,0.0000020999,0.0000021094,0.0000021112, -0.0000021099,0.0000021048,0.0000020949,0.0000020791,0.0000020590, -0.0000020420,0.0000020325,0.0000020285,0.0000020276,0.0000020289, -0.0000020312,0.0000020342,0.0000020378,0.0000020428,0.0000020470, -0.0000020454,0.0000020358,0.0000020245,0.0000020204,0.0000020229, -0.0000020303,0.0000020394,0.0000020476,0.0000020529,0.0000020548, -0.0000020548,0.0000020551,0.0000020555,0.0000020548,0.0000020537, -0.0000020536,0.0000020546,0.0000020559,0.0000020567,0.0000020569, -0.0000020570,0.0000020576,0.0000020579,0.0000020574,0.0000020559, -0.0000020533,0.0000020504,0.0000020485,0.0000020480,0.0000020482, -0.0000020494,0.0000020521,0.0000020554,0.0000020587,0.0000020625, -0.0000020665,0.0000020695,0.0000020717,0.0000020721,0.0000020705, -0.0000020652,0.0000020576,0.0000020503,0.0000020435,0.0000020363, -0.0000020314,0.0000020307,0.0000020325,0.0000020356,0.0000020386, -0.0000020413,0.0000020437,0.0000020452,0.0000020455,0.0000020453, -0.0000020451,0.0000020448,0.0000020443,0.0000020441,0.0000020443, -0.0000020446,0.0000020444,0.0000020429,0.0000020402,0.0000020365, -0.0000020324,0.0000020283,0.0000020243,0.0000020205,0.0000020177, -0.0000020159,0.0000020142,0.0000020125,0.0000020108,0.0000020094, -0.0000020077,0.0000020053,0.0000020024,0.0000019998,0.0000019975, -0.0000019954,0.0000019939,0.0000019934,0.0000019944,0.0000019971, -0.0000020005,0.0000020036,0.0000020064,0.0000020093,0.0000020122, -0.0000020152,0.0000020185,0.0000020220,0.0000020251,0.0000020272, -0.0000020285,0.0000020292,0.0000020294,0.0000020290,0.0000020285, -0.0000020278,0.0000020270,0.0000020260,0.0000020244,0.0000020225, -0.0000020221,0.0000020243,0.0000020277,0.0000020298,0.0000020306, -0.0000020321,0.0000020377,0.0000020499,0.0000020652,0.0000020776, -0.0000020864,0.0000020915,0.0000020919,0.0000020856,0.0000020729, -0.0000020626,0.0000020611,0.0000020625,0.0000020667,0.0000020706, -0.0000020710,0.0000020729,0.0000020857,0.0000021117,0.0000021418, -0.0000021617,0.0000021691,0.0000021714,0.0000021723,0.0000021709, -0.0000021716,0.0000021710,0.0000021682,0.0000021636,0.0000021576, -0.0000021501,0.0000021421,0.0000021360,0.0000021333,0.0000021343, -0.0000021393,0.0000021460,0.0000021521,0.0000021565,0.0000021586, -0.0000021586,0.0000021569,0.0000021553,0.0000021539,0.0000021521, -0.0000021495,0.0000021461,0.0000021423,0.0000021379,0.0000021323, -0.0000021261,0.0000021200,0.0000021139,0.0000021085,0.0000021041, -0.0000021002,0.0000020960,0.0000020922,0.0000020906,0.0000020910, -0.0000020931,0.0000020969,0.0000021022,0.0000021080,0.0000021124, -0.0000021138,0.0000021131,0.0000021108,0.0000021079,0.0000021053, -0.0000021028,0.0000021006,0.0000020984,0.0000020958,0.0000020929, -0.0000020901,0.0000020876,0.0000020854,0.0000020838,0.0000020830, -0.0000020833,0.0000020844,0.0000020859,0.0000020875,0.0000020894, -0.0000020916,0.0000020939,0.0000020964,0.0000020992,0.0000021028, -0.0000021075,0.0000021130,0.0000021184,0.0000021227,0.0000021250, -0.0000021254,0.0000021249,0.0000021244,0.0000021241,0.0000021236, -0.0000021229,0.0000021215,0.0000021203,0.0000021193,0.0000021179, -0.0000021167,0.0000021161,0.0000021165,0.0000021180,0.0000021198, -0.0000021205,0.0000021197,0.0000021181,0.0000021166,0.0000021155, -0.0000021141,0.0000021122,0.0000021109,0.0000021104,0.0000021097, -0.0000021093,0.0000021123,0.0000021167,0.0000021220,0.0000021273, -0.0000021317,0.0000021347,0.0000021367,0.0000021379,0.0000021389, -0.0000021400,0.0000021404,0.0000021392,0.0000021370,0.0000021347, -0.0000021318,0.0000021279,0.0000021238,0.0000021206,0.0000021180, -0.0000021156,0.0000021131,0.0000021103,0.0000021074,0.0000021046, -0.0000021020,0.0000021003,0.0000020995,0.0000020997,0.0000021010, -0.0000021028,0.0000021045,0.0000021061,0.0000021078,0.0000021089, -0.0000021091,0.0000021088,0.0000021085,0.0000021081,0.0000021074, -0.0000021060,0.0000021036,0.0000021003,0.0000020969,0.0000020946, -0.0000020934,0.0000020936,0.0000020951,0.0000020975,0.0000021006, -0.0000021046,0.0000021083,0.0000021105,0.0000021119,0.0000021134, -0.0000021154,0.0000021181,0.0000021214,0.0000021250,0.0000021281, -0.0000021303,0.0000021316,0.0000021319,0.0000021312,0.0000021298, -0.0000021280,0.0000021262,0.0000021245,0.0000021229,0.0000021215, -0.0000021208,0.0000021214,0.0000021250,0.0000021307,0.0000021372, -0.0000021435,0.0000021494,0.0000021546,0.0000021590,0.0000021624, -0.0000021647,0.0000021664,0.0000021678,0.0000021693,0.0000021714, -0.0000021746,0.0000021778,0.0000021776,0.0000021727,0.0000021677, -0.0000021677,0.0000021697,0.0000021665,0.0000021603,0.0000021576, -0.0000021590,0.0000021665,0.0000021823,0.0000022035,0.0000022221, -0.0000022318,0.0000022333,0.0000022317,0.0000022289,0.0000022266, -0.0000022248,0.0000022237,0.0000022239,0.0000022262,0.0000022305, -0.0000022362,0.0000022423,0.0000022487,0.0000022552,0.0000022613, -0.0000022671,0.0000022728,0.0000022781,0.0000022824,0.0000022856, -0.0000022877,0.0000022892,0.0000022902,0.0000022913,0.0000022925, -0.0000022943,0.0000022966,0.0000022991,0.0000023019,0.0000023050, -0.0000023083,0.0000023117,0.0000023150,0.0000023181,0.0000023207, -0.0000023225,0.0000023235,0.0000023240,0.0000023238,0.0000023228, -0.0000023207,0.0000023176,0.0000023136,0.0000023092,0.0000023045, -0.0000022997,0.0000022950,0.0000022910,0.0000022873,0.0000022843, -0.0000022822,0.0000022809,0.0000022805,0.0000022806,0.0000022813, -0.0000022825,0.0000022840,0.0000022854,0.0000022866,0.0000022879, -0.0000022893,0.0000022907,0.0000022915,0.0000022917,0.0000022914, -0.0000022910,0.0000022901,0.0000022885,0.0000022860,0.0000022826, -0.0000022786,0.0000022750,0.0000022722,0.0000022697,0.0000022670, -0.0000022634,0.0000022585,0.0000022516,0.0000022429,0.0000022329, -0.0000022227,0.0000022128,0.0000022032,0.0000021945,0.0000021871, -0.0000021808,0.0000021748,0.0000021696,0.0000021653,0.0000021615, -0.0000021587,0.0000021571,0.0000021567,0.0000021573,0.0000021583, -0.0000021599,0.0000021619,0.0000021635,0.0000021646,0.0000021655, -0.0000021662,0.0000021665,0.0000021667,0.0000021673,0.0000021684, -0.0000021694,0.0000021702,0.0000021711,0.0000021714,0.0000021707, -0.0000021691,0.0000021658,0.0000021606,0.0000021540,0.0000021460, -0.0000021382,0.0000021326,0.0000021299,0.0000021296,0.0000021296, -0.0000021275,0.0000021230,0.0000021205,0.0000021207,0.0000021200, -0.0000021164,0.0000021110,0.0000021071,0.0000021069,0.0000021081, -0.0000021089,0.0000021101,0.0000021122,0.0000021144,0.0000021156, -0.0000021151,0.0000021122,0.0000021067,0.0000020975,0.0000020868, -0.0000020817,0.0000020816,0.0000020866,0.0000020940,0.0000021023, -0.0000021068,0.0000021063,0.0000021044,0.0000021048,0.0000021109, -0.0000021208,0.0000021268,0.0000021284,0.0000021331,0.0000021418, -0.0000021503,0.0000021574,0.0000021603,0.0000021604,0.0000021597, -0.0000021592,0.0000021577,0.0000021564,0.0000021577,0.0000021637, -0.0000021737,0.0000021812,0.0000021816,0.0000021791,0.0000021795, -0.0000021847,0.0000021888,0.0000021947,0.0000022030,0.0000022058, -0.0000022026,0.0000022008,0.0000022012,0.0000021959,0.0000021853, -0.0000021817,0.0000021897,0.0000022019,0.0000022074,0.0000022082, -0.0000022081,0.0000022065,0.0000022023,0.0000021959,0.0000021885, -0.0000021821,0.0000021783,0.0000021779,0.0000021811,0.0000021853, -0.0000021904,0.0000021963,0.0000022013,0.0000022031,0.0000022017, -0.0000021977,0.0000021928,0.0000021874,0.0000021842,0.0000021838, -0.0000021849,0.0000021882,0.0000021936,0.0000021988,0.0000022039, -0.0000022095,0.0000022135,0.0000022162,0.0000022169,0.0000022158, -0.0000022132,0.0000022108,0.0000022118,0.0000022149,0.0000022200, -0.0000022269,0.0000022344,0.0000022413,0.0000022491,0.0000022584, -0.0000022683,0.0000022792,0.0000022904,0.0000022995,0.0000023037, -0.0000023038,0.0000023016,0.0000022936,0.0000022777,0.0000022576, -0.0000022426,0.0000022375,0.0000022354,0.0000022340,0.0000022343, -0.0000022334,0.0000022216,0.0000022060,0.0000022052,0.0000022113, -0.0000022163,0.0000022234,0.0000022299,0.0000022340,0.0000022358, -0.0000022361,0.0000022365,0.0000022398,0.0000022458,0.0000022528, -0.0000022604,0.0000022671,0.0000022710,0.0000022722,0.0000022720, -0.0000022705,0.0000022687,0.0000022682,0.0000022689,0.0000022711, -0.0000022742,0.0000022767,0.0000022803,0.0000022851,0.0000022906, -0.0000022956,0.0000022993,0.0000023014,0.0000023029,0.0000023040, -0.0000023048,0.0000023060,0.0000023074,0.0000023083,0.0000023093, -0.0000023105,0.0000023107,0.0000023107,0.0000023108,0.0000023109, -0.0000023112,0.0000023111,0.0000023110,0.0000023108,0.0000023097, -0.0000023072,0.0000023042,0.0000023015,0.0000022993,0.0000022970, -0.0000022935,0.0000022897,0.0000022862,0.0000022830,0.0000022808, -0.0000022801,0.0000022805,0.0000022812,0.0000022825,0.0000022851, -0.0000022897,0.0000022939,0.0000022954,0.0000022940,0.0000022909, -0.0000022874,0.0000022860,0.0000022866,0.0000022870,0.0000022852, -0.0000022828,0.0000022826,0.0000022859,0.0000022908,0.0000022938, -0.0000022887,0.0000022762,0.0000022680,0.0000022592,0.0000022399, -0.0000022241,0.0000022224,0.0000022327,0.0000022383,0.0000022247, -0.0000022102,0.0000022092,0.0000022109,0.0000022127,0.0000022178, -0.0000022247,0.0000022258,0.0000022174,0.0000022039,0.0000021943, -0.0000021899,0.0000021873,0.0000021858,0.0000021839,0.0000021811, -0.0000021772,0.0000021735,0.0000021710,0.0000021703,0.0000021706, -0.0000021704,0.0000021703,0.0000021716,0.0000021748,0.0000021810, -0.0000021893,0.0000021978,0.0000022044,0.0000022078,0.0000022074, -0.0000022050,0.0000022023,0.0000022017,0.0000022034,0.0000022062, -0.0000022090,0.0000022118,0.0000022142,0.0000022149,0.0000022135, -0.0000022111,0.0000022094,0.0000022105,0.0000022160,0.0000022244, -0.0000022312,0.0000022329,0.0000022292,0.0000022203,0.0000022072, -0.0000021946,0.0000021862,0.0000021832,0.0000021815,0.0000021875, -0.0000021977,0.0000022127,0.0000022288,0.0000022443,0.0000022579, -0.0000022680,0.0000022749,0.0000022792,0.0000022809,0.0000022800, -0.0000022778,0.0000022735,0.0000022677,0.0000022605,0.0000022528, -0.0000022449,0.0000022382,0.0000022333,0.0000022304,0.0000022292, -0.0000022292,0.0000022301,0.0000022311,0.0000022322,0.0000022335, -0.0000022344,0.0000022346,0.0000022340,0.0000022323,0.0000022300, -0.0000022267,0.0000022231,0.0000022196,0.0000022167,0.0000022145, -0.0000022131,0.0000022120,0.0000022111,0.0000022109,0.0000022118, -0.0000022138,0.0000022162,0.0000022193,0.0000022233,0.0000022278, -0.0000022324,0.0000022369,0.0000022401,0.0000022415,0.0000022411, -0.0000022391,0.0000022368,0.0000022350,0.0000022342,0.0000022326, -0.0000022314,0.0000022299,0.0000022270,0.0000022231,0.0000022188, -0.0000022140,0.0000022084,0.0000022028,0.0000021983,0.0000021955, -0.0000021955,0.0000021960,0.0000022007,0.0000022094,0.0000022213, -0.0000022340,0.0000022452,0.0000022539,0.0000022613,0.0000022694, -0.0000022793,0.0000022908,0.0000023025,0.0000023126,0.0000023197, -0.0000023236,0.0000023246,0.0000023239,0.0000023233,0.0000023247, -0.0000023287,0.0000023353,0.0000023431,0.0000023500,0.0000023535, -0.0000023528,0.0000023501,0.0000023468,0.0000023454,0.0000023461, -0.0000023497,0.0000023539,0.0000023564,0.0000023566,0.0000023557, -0.0000023539,0.0000023510,0.0000023468,0.0000023413,0.0000023354, -0.0000023300,0.0000023262,0.0000023241,0.0000023233,0.0000023231, -0.0000023229,0.0000023226,0.0000023222,0.0000023219,0.0000023217, -0.0000023214,0.0000023211,0.0000023208,0.0000023209,0.0000023218, -0.0000023229,0.0000023241,0.0000023252,0.0000023255,0.0000023248, -0.0000023234,0.0000023214,0.0000023188,0.0000023158,0.0000023129, -0.0000023111,0.0000023101,0.0000023094,0.0000023088,0.0000023083, -0.0000023074,0.0000023063,0.0000023051,0.0000023036,0.0000023020, -0.0000023003,0.0000022987,0.0000022970,0.0000022952,0.0000022936, -0.0000022930,0.0000022939,0.0000022956,0.0000022972,0.0000022979, -0.0000022970,0.0000022949,0.0000022928,0.0000022907,0.0000022864, -0.0000022785,0.0000022698,0.0000022635,0.0000022600,0.0000022574, -0.0000022538,0.0000022475,0.0000022390,0.0000022307,0.0000022225, -0.0000022102,0.0000021913,0.0000021689,0.0000021495,0.0000021347, -0.0000021233,0.0000021151,0.0000021102,0.0000021066,0.0000021023, -0.0000020969,0.0000020910,0.0000020860,0.0000020833,0.0000020825, -0.0000020829,0.0000020849,0.0000020880,0.0000020918,0.0000020953, -0.0000020977,0.0000020990,0.0000020994,0.0000020996,0.0000020991, -0.0000020985,0.0000020980,0.0000020976,0.0000020972,0.0000020972, -0.0000020984,0.0000020991,0.0000020984,0.0000020966,0.0000020941, -0.0000020909,0.0000020881,0.0000020863,0.0000020857,0.0000020851, -0.0000020839,0.0000020827,0.0000020820,0.0000020825,0.0000020842, -0.0000020865,0.0000020879,0.0000020872,0.0000020850,0.0000020814, -0.0000020798,0.0000020807,0.0000020843,0.0000020894,0.0000020941, -0.0000020973,0.0000020984,0.0000020974,0.0000020945,0.0000020901, -0.0000020848,0.0000020804,0.0000020768,0.0000020739,0.0000020721, -0.0000020720,0.0000020736,0.0000020781,0.0000020873,0.0000020996, -0.0000021153,0.0000021364,0.0000021605,0.0000021806,0.0000021926, -0.0000021985,0.0000022025,0.0000022057,0.0000022072,0.0000022096, -0.0000022152,0.0000022222,0.0000022262,0.0000022254,0.0000022189, -0.0000022114,0.0000022083,0.0000022095,0.0000022118,0.0000022138, -0.0000022173,0.0000022223,0.0000022278,0.0000022335,0.0000022384, -0.0000022412,0.0000022417,0.0000022404,0.0000022381,0.0000022378, -0.0000022414,0.0000022446,0.0000022441,0.0000022355,0.0000022251, -0.0000022194,0.0000022191,0.0000022212,0.0000022226,0.0000022260, -0.0000022372,0.0000022548,0.0000022687,0.0000022706,0.0000022666, -0.0000022635,0.0000022678,0.0000022821,0.0000022981,0.0000023065, -0.0000023073,0.0000023055,0.0000023037,0.0000023007,0.0000022947, -0.0000022846,0.0000022711,0.0000022559,0.0000022410,0.0000022288, -0.0000022204,0.0000022149,0.0000022112,0.0000022085,0.0000022072, -0.0000022077,0.0000022083,0.0000022097,0.0000022105,0.0000022106, -0.0000022117,0.0000022151,0.0000022190,0.0000022245,0.0000022290, -0.0000022305,0.0000022294,0.0000022279,0.0000022291,0.0000022329, -0.0000022358,0.0000022360,0.0000022367,0.0000022424,0.0000022528, -0.0000022597,0.0000022577,0.0000022461,0.0000022329,0.0000022310, -0.0000022393,0.0000022508,0.0000022560,0.0000022556,0.0000022522, -0.0000022480,0.0000022459,0.0000022441,0.0000022362,0.0000022208, -0.0000022042,0.0000021911,0.0000021819,0.0000021751,0.0000021701, -0.0000021665,0.0000021626,0.0000021581,0.0000021535,0.0000021496, -0.0000021484,0.0000021498,0.0000021532,0.0000021592,0.0000021684, -0.0000021801,0.0000021934,0.0000022067,0.0000022186,0.0000022284, -0.0000022366,0.0000022436,0.0000022477,0.0000022479,0.0000022445, -0.0000022397,0.0000022336,0.0000022224,0.0000022053,0.0000021866, -0.0000021704,0.0000021619,0.0000021606,0.0000021739,0.0000021918, -0.0000022028,0.0000022050,0.0000022172,0.0000022427,0.0000022568, -0.0000022402,0.0000022026,0.0000021823,0.0000021775,0.0000021708, -0.0000021627,0.0000021608,0.0000021619,0.0000021652,0.0000021691, -0.0000021734,0.0000021775,0.0000021814,0.0000021854,0.0000021888, -0.0000021919,0.0000021954,0.0000021991,0.0000022040,0.0000022101, -0.0000022147,0.0000022153,0.0000022122,0.0000022046,0.0000021949, -0.0000021879,0.0000021860,0.0000021860,0.0000021867,0.0000021876, -0.0000021902,0.0000021950,0.0000022010,0.0000022080,0.0000022158, -0.0000022253,0.0000022358,0.0000022459,0.0000022547,0.0000022625, -0.0000022707,0.0000022789,0.0000022858,0.0000022903,0.0000022922, -0.0000022922,0.0000022904,0.0000022860,0.0000022787,0.0000022674, -0.0000022503,0.0000022294,0.0000022111,0.0000021989,0.0000021901, -0.0000021801,0.0000021671,0.0000021512,0.0000021346,0.0000021207, -0.0000021098,0.0000020988,0.0000020859,0.0000020742,0.0000020662, -0.0000020610,0.0000020572,0.0000020553,0.0000020548,0.0000020544, -0.0000020532,0.0000020503,0.0000020463,0.0000020426,0.0000020399, -0.0000020379,0.0000020369,0.0000020383,0.0000020428,0.0000020505, -0.0000020598,0.0000020689,0.0000020764,0.0000020819,0.0000020866, -0.0000020911,0.0000020960,0.0000021019,0.0000021084,0.0000021140, -0.0000021157,0.0000021128,0.0000021071,0.0000021009,0.0000020971, -0.0000020951,0.0000020944,0.0000020943,0.0000020974,0.0000021037, -0.0000021105,0.0000021160,0.0000021211,0.0000021284,0.0000021396, -0.0000021539,0.0000021670,0.0000021755,0.0000021779,0.0000021779, -0.0000021766,0.0000021758,0.0000021747,0.0000021699,0.0000021599, -0.0000021461,0.0000021302,0.0000021134,0.0000020983,0.0000020901, -0.0000020929,0.0000021025,0.0000021122,0.0000021166,0.0000021160, -0.0000021146,0.0000021168,0.0000021262,0.0000021415,0.0000021583, -0.0000021736,0.0000021879,0.0000022039,0.0000022214,0.0000022379, -0.0000022518,0.0000022633,0.0000022727,0.0000022793,0.0000022822, -0.0000022812,0.0000022794,0.0000022773,0.0000022763,0.0000022760, -0.0000022769,0.0000022783,0.0000022806,0.0000022837,0.0000022869, -0.0000022907,0.0000022964,0.0000023049,0.0000023155,0.0000023272, -0.0000023397,0.0000023542,0.0000023722,0.0000023922,0.0000024104, -0.0000024234,0.0000024310,0.0000024345,0.0000024353,0.0000024344, -0.0000024326,0.0000024299,0.0000024269,0.0000024238,0.0000024205, -0.0000024170,0.0000024145,0.0000024141,0.0000024159,0.0000024193, -0.0000024223,0.0000024237,0.0000024233,0.0000024198,0.0000024132, -0.0000024049,0.0000023961,0.0000023880,0.0000023814,0.0000023760, -0.0000023704,0.0000023645,0.0000023597,0.0000023542,0.0000023444, -0.0000023312,0.0000023181,0.0000023047,0.0000022890,0.0000022714, -0.0000022552,0.0000022436,0.0000022367,0.0000022319,0.0000022261, -0.0000022176,0.0000022081,0.0000022007,0.0000021966,0.0000021941, -0.0000021916,0.0000021873,0.0000021821,0.0000021766,0.0000021711, -0.0000021665,0.0000021626,0.0000021592,0.0000021558,0.0000021530, -0.0000021508,0.0000021494,0.0000021490,0.0000021495,0.0000021509, -0.0000021527,0.0000021551,0.0000021581,0.0000021613,0.0000021635, -0.0000021647,0.0000021653,0.0000021653,0.0000021646,0.0000021632, -0.0000021608,0.0000021575,0.0000021547,0.0000021537,0.0000021535, -0.0000021528,0.0000021516,0.0000021501,0.0000021478,0.0000021436, -0.0000021384,0.0000021326,0.0000021264,0.0000021198,0.0000021124, -0.0000021054,0.0000021001,0.0000020984,0.0000020971,0.0000020987, -0.0000021030,0.0000021114,0.0000021259,0.0000021475,0.0000021755, -0.0000022060,0.0000022346,0.0000022551,0.0000022669,0.0000022676, -0.0000022670,0.0000022605,0.0000022523,0.0000022433,0.0000022349, -0.0000022278,0.0000022219,0.0000022159,0.0000022093,0.0000022027, -0.0000021973,0.0000021930,0.0000021892,0.0000021855,0.0000021820, -0.0000021790,0.0000021766,0.0000021743,0.0000021720,0.0000021696, -0.0000021670,0.0000021643,0.0000021621,0.0000021605,0.0000021607, -0.0000021623,0.0000021643,0.0000021659,0.0000021675,0.0000021692, -0.0000021706,0.0000021714,0.0000021711,0.0000021696,0.0000021662, -0.0000021608,0.0000021544,0.0000021483,0.0000021422,0.0000021365, -0.0000021313,0.0000021273,0.0000021242,0.0000021213,0.0000021184, -0.0000021158,0.0000021133,0.0000021112,0.0000021089,0.0000021065, -0.0000021040,0.0000021010,0.0000020975,0.0000020942,0.0000020911, -0.0000020889,0.0000020882,0.0000020884,0.0000020892,0.0000020905, -0.0000020924,0.0000020936,0.0000020936,0.0000020915,0.0000020870, -0.0000020807,0.0000020750,0.0000020711,0.0000020674,0.0000020622, -0.0000020561,0.0000020519,0.0000020494,0.0000020489,0.0000020491, -0.0000020490,0.0000020478,0.0000020460,0.0000020448,0.0000020446, -0.0000020462,0.0000020491,0.0000020515,0.0000020533,0.0000020547, -0.0000020555,0.0000020555,0.0000020552,0.0000020537,0.0000020510, -0.0000020481,0.0000020460,0.0000020435,0.0000020408,0.0000020381, -0.0000020352,0.0000020331,0.0000020324,0.0000020334,0.0000020350, -0.0000020361,0.0000020373,0.0000020389,0.0000020410,0.0000020430, -0.0000020445,0.0000020455,0.0000020461,0.0000020462,0.0000020455, -0.0000020433,0.0000020394,0.0000020338,0.0000020278,0.0000020215, -0.0000020166,0.0000020136,0.0000020120,0.0000020108,0.0000020084, -0.0000020068,0.0000020103,0.0000020210,0.0000020325,0.0000020373, -0.0000020419,0.0000020525,0.0000020545,0.0000020465,0.0000020443, -0.0000020467,0.0000020425,0.0000020405,0.0000020471,0.0000020513, -0.0000020461,0.0000020351,0.0000020269,0.0000020250,0.0000020273, -0.0000020329,0.0000020382,0.0000020442,0.0000020494,0.0000020505, -0.0000020519,0.0000020598,0.0000020730,0.0000020850,0.0000020915, -0.0000020920,0.0000020874,0.0000020773,0.0000020635,0.0000020482, -0.0000020355,0.0000020282,0.0000020249,0.0000020260,0.0000020286, -0.0000020312,0.0000020343,0.0000020367,0.0000020391,0.0000020438, -0.0000020463,0.0000020413,0.0000020294,0.0000020212,0.0000020211, -0.0000020273,0.0000020358,0.0000020441,0.0000020503,0.0000020530, -0.0000020535,0.0000020540,0.0000020547,0.0000020543,0.0000020525, -0.0000020511,0.0000020511,0.0000020520,0.0000020529,0.0000020537, -0.0000020546,0.0000020555,0.0000020562,0.0000020557,0.0000020537, -0.0000020505,0.0000020466,0.0000020436,0.0000020428,0.0000020437, -0.0000020466,0.0000020503,0.0000020543,0.0000020584,0.0000020617, -0.0000020646,0.0000020674,0.0000020693,0.0000020693,0.0000020665, -0.0000020606,0.0000020538,0.0000020479,0.0000020421,0.0000020355, -0.0000020306,0.0000020298,0.0000020318,0.0000020351,0.0000020379, -0.0000020407,0.0000020434,0.0000020456,0.0000020467,0.0000020469, -0.0000020464,0.0000020458,0.0000020451,0.0000020441,0.0000020432, -0.0000020432,0.0000020434,0.0000020430,0.0000020418,0.0000020395, -0.0000020363,0.0000020324,0.0000020281,0.0000020242,0.0000020215, -0.0000020197,0.0000020183,0.0000020167,0.0000020149,0.0000020134, -0.0000020121,0.0000020104,0.0000020083,0.0000020064,0.0000020046, -0.0000020027,0.0000020012,0.0000020007,0.0000020007,0.0000020013, -0.0000020031,0.0000020060,0.0000020093,0.0000020122,0.0000020145, -0.0000020165,0.0000020184,0.0000020204,0.0000020228,0.0000020253, -0.0000020273,0.0000020284,0.0000020287,0.0000020285,0.0000020275, -0.0000020263,0.0000020252,0.0000020245,0.0000020237,0.0000020226, -0.0000020207,0.0000020191,0.0000020193,0.0000020216,0.0000020257, -0.0000020301,0.0000020326,0.0000020334,0.0000020357,0.0000020446, -0.0000020594,0.0000020731,0.0000020831,0.0000020901,0.0000020925, -0.0000020894,0.0000020780,0.0000020657,0.0000020622,0.0000020629, -0.0000020655,0.0000020701,0.0000020719,0.0000020706,0.0000020735, -0.0000020899,0.0000021194,0.0000021478,0.0000021636,0.0000021689, -0.0000021636,0.0000021692,0.0000021708,0.0000021705,0.0000021692, -0.0000021656,0.0000021604,0.0000021543,0.0000021472,0.0000021389, -0.0000021319,0.0000021276,0.0000021272,0.0000021302,0.0000021346, -0.0000021389,0.0000021423,0.0000021443,0.0000021445,0.0000021443, -0.0000021442,0.0000021434,0.0000021412,0.0000021376,0.0000021339, -0.0000021294,0.0000021236,0.0000021172,0.0000021116,0.0000021069, -0.0000021032,0.0000020995,0.0000020951,0.0000020902,0.0000020865, -0.0000020848,0.0000020850,0.0000020875,0.0000020924,0.0000020989, -0.0000021053,0.0000021093,0.0000021099,0.0000021081,0.0000021050, -0.0000021016,0.0000020986,0.0000020959,0.0000020935,0.0000020911, -0.0000020886,0.0000020861,0.0000020839,0.0000020821,0.0000020807, -0.0000020802,0.0000020808,0.0000020823,0.0000020842,0.0000020859, -0.0000020879,0.0000020905,0.0000020933,0.0000020959,0.0000020982, -0.0000021009,0.0000021043,0.0000021094,0.0000021156,0.0000021218, -0.0000021264,0.0000021286,0.0000021286,0.0000021272,0.0000021253, -0.0000021234,0.0000021221,0.0000021202,0.0000021188,0.0000021183, -0.0000021178,0.0000021165,0.0000021149,0.0000021138,0.0000021136, -0.0000021146,0.0000021159,0.0000021168,0.0000021168,0.0000021166, -0.0000021168,0.0000021167,0.0000021156,0.0000021141,0.0000021122, -0.0000021102,0.0000021085,0.0000021071,0.0000021066,0.0000021059, -0.0000021064,0.0000021085,0.0000021101,0.0000021112,0.0000021121, -0.0000021130,0.0000021140,0.0000021149,0.0000021149,0.0000021138, -0.0000021123,0.0000021106,0.0000021082,0.0000021052,0.0000021027, -0.0000021010,0.0000021000,0.0000020991,0.0000020981,0.0000020970, -0.0000020959,0.0000020952,0.0000020946,0.0000020943,0.0000020941, -0.0000020949,0.0000020961,0.0000020975,0.0000020991,0.0000021008, -0.0000021026,0.0000021035,0.0000021035,0.0000021032,0.0000021031, -0.0000021035,0.0000021037,0.0000021030,0.0000021014,0.0000020990, -0.0000020960,0.0000020936,0.0000020922,0.0000020923,0.0000020939, -0.0000020957,0.0000020977,0.0000021005,0.0000021031,0.0000021050, -0.0000021065,0.0000021082,0.0000021103,0.0000021135,0.0000021176, -0.0000021218,0.0000021255,0.0000021283,0.0000021302,0.0000021312, -0.0000021312,0.0000021303,0.0000021294,0.0000021284,0.0000021266, -0.0000021248,0.0000021230,0.0000021217,0.0000021218,0.0000021241, -0.0000021281,0.0000021335,0.0000021392,0.0000021440,0.0000021479, -0.0000021519,0.0000021562,0.0000021603,0.0000021634,0.0000021649, -0.0000021651,0.0000021661,0.0000021694,0.0000021742,0.0000021776, -0.0000021766,0.0000021708,0.0000021659,0.0000021660,0.0000021670, -0.0000021631,0.0000021583,0.0000021578,0.0000021613,0.0000021693, -0.0000021834,0.0000022023,0.0000022198,0.0000022295,0.0000022313, -0.0000022305,0.0000022284,0.0000022258,0.0000022230,0.0000022208, -0.0000022203,0.0000022221,0.0000022262,0.0000022314,0.0000022370, -0.0000022425,0.0000022477,0.0000022528,0.0000022577,0.0000022629, -0.0000022681,0.0000022727,0.0000022765,0.0000022798,0.0000022827, -0.0000022852,0.0000022875,0.0000022900,0.0000022927,0.0000022956, -0.0000022986,0.0000023016,0.0000023047,0.0000023076,0.0000023104, -0.0000023132,0.0000023158,0.0000023182,0.0000023201,0.0000023216, -0.0000023226,0.0000023227,0.0000023222,0.0000023211,0.0000023194, -0.0000023171,0.0000023142,0.0000023106,0.0000023064,0.0000023021, -0.0000022975,0.0000022927,0.0000022885,0.0000022851,0.0000022826, -0.0000022810,0.0000022800,0.0000022795,0.0000022794,0.0000022796, -0.0000022799,0.0000022804,0.0000022812,0.0000022817,0.0000022817, -0.0000022808,0.0000022790,0.0000022765,0.0000022733,0.0000022696, -0.0000022661,0.0000022630,0.0000022605,0.0000022590,0.0000022583, -0.0000022573,0.0000022548,0.0000022501,0.0000022429,0.0000022333, -0.0000022223,0.0000022115,0.0000022024,0.0000021954,0.0000021897, -0.0000021840,0.0000021777,0.0000021704,0.0000021625,0.0000021556, -0.0000021501,0.0000021460,0.0000021431,0.0000021416,0.0000021417, -0.0000021430,0.0000021452,0.0000021480,0.0000021508,0.0000021530, -0.0000021545,0.0000021558,0.0000021569,0.0000021578,0.0000021582, -0.0000021589,0.0000021601,0.0000021615,0.0000021627,0.0000021640, -0.0000021645,0.0000021642,0.0000021631,0.0000021603,0.0000021560, -0.0000021499,0.0000021426,0.0000021358,0.0000021310,0.0000021289, -0.0000021286,0.0000021277,0.0000021241,0.0000021209,0.0000021204, -0.0000021206,0.0000021190,0.0000021139,0.0000021078,0.0000021050, -0.0000021049,0.0000021048,0.0000021046,0.0000021052,0.0000021063, -0.0000021084,0.0000021103,0.0000021106,0.0000021087,0.0000021042, -0.0000020956,0.0000020854,0.0000020795,0.0000020795,0.0000020844, -0.0000020926,0.0000021017,0.0000021058,0.0000021047,0.0000021026, -0.0000021035,0.0000021106,0.0000021200,0.0000021245,0.0000021262, -0.0000021307,0.0000021386,0.0000021459,0.0000021516,0.0000021538, -0.0000021539,0.0000021537,0.0000021533,0.0000021528,0.0000021533, -0.0000021576,0.0000021663,0.0000021777,0.0000021833,0.0000021813, -0.0000021785,0.0000021808,0.0000021845,0.0000021886,0.0000021966, -0.0000022008,0.0000021996,0.0000021989,0.0000021998,0.0000021958, -0.0000021841,0.0000021782,0.0000021857,0.0000021980,0.0000022033, -0.0000022033,0.0000022024,0.0000022024,0.0000021996,0.0000021925, -0.0000021840,0.0000021780,0.0000021758,0.0000021756,0.0000021782, -0.0000021831,0.0000021888,0.0000021949,0.0000022003,0.0000022036, -0.0000022038,0.0000022012,0.0000021968,0.0000021921,0.0000021868, -0.0000021835,0.0000021833,0.0000021857,0.0000021909,0.0000021975, -0.0000022046,0.0000022115,0.0000022179,0.0000022228,0.0000022259, -0.0000022266,0.0000022264,0.0000022272,0.0000022295,0.0000022339, -0.0000022400,0.0000022461,0.0000022516,0.0000022555,0.0000022587, -0.0000022639,0.0000022716,0.0000022803,0.0000022894,0.0000022962, -0.0000023018,0.0000023044,0.0000023035,0.0000022976,0.0000022833, -0.0000022626,0.0000022468,0.0000022394,0.0000022364,0.0000022338, -0.0000022321,0.0000022312,0.0000022247,0.0000022085,0.0000022016, -0.0000022067,0.0000022130,0.0000022202,0.0000022273,0.0000022319, -0.0000022344,0.0000022355,0.0000022355,0.0000022356,0.0000022388, -0.0000022445,0.0000022508,0.0000022582,0.0000022649,0.0000022689, -0.0000022702,0.0000022707,0.0000022700,0.0000022686,0.0000022682, -0.0000022693,0.0000022715,0.0000022747,0.0000022776,0.0000022809, -0.0000022852,0.0000022903,0.0000022947,0.0000022985,0.0000023009, -0.0000023023,0.0000023030,0.0000023032,0.0000023040,0.0000023054, -0.0000023070,0.0000023087,0.0000023106,0.0000023119,0.0000023122, -0.0000023128,0.0000023137,0.0000023141,0.0000023134,0.0000023121, -0.0000023104,0.0000023082,0.0000023053,0.0000023023,0.0000022996, -0.0000022973,0.0000022934,0.0000022880,0.0000022842,0.0000022813, -0.0000022786,0.0000022773,0.0000022777,0.0000022791,0.0000022807, -0.0000022828,0.0000022863,0.0000022912,0.0000022954,0.0000022966, -0.0000022948,0.0000022912,0.0000022867,0.0000022838,0.0000022825, -0.0000022805,0.0000022778,0.0000022764,0.0000022779,0.0000022820, -0.0000022878,0.0000022907,0.0000022859,0.0000022747,0.0000022675, -0.0000022613,0.0000022448,0.0000022289,0.0000022233,0.0000022290, -0.0000022405,0.0000022365,0.0000022180,0.0000022096,0.0000022099, -0.0000022106,0.0000022116,0.0000022151,0.0000022220,0.0000022254, -0.0000022212,0.0000022094,0.0000021971,0.0000021869,0.0000021798, -0.0000021746,0.0000021708,0.0000021670,0.0000021628,0.0000021591, -0.0000021572,0.0000021572,0.0000021573,0.0000021568,0.0000021563, -0.0000021568,0.0000021595,0.0000021653,0.0000021739,0.0000021839, -0.0000021935,0.0000022008,0.0000022043,0.0000022032,0.0000022004, -0.0000021975,0.0000021961,0.0000021976,0.0000022018,0.0000022078, -0.0000022137,0.0000022168,0.0000022179,0.0000022160,0.0000022127, -0.0000022101,0.0000022101,0.0000022139,0.0000022199,0.0000022262, -0.0000022300,0.0000022278,0.0000022193,0.0000022077,0.0000021962, -0.0000021867,0.0000021802,0.0000021778,0.0000021782,0.0000021867, -0.0000022000,0.0000022175,0.0000022348,0.0000022496,0.0000022615, -0.0000022699,0.0000022747,0.0000022766,0.0000022763,0.0000022741, -0.0000022712,0.0000022665,0.0000022608,0.0000022547,0.0000022492, -0.0000022448,0.0000022415,0.0000022390,0.0000022377,0.0000022373, -0.0000022372,0.0000022370,0.0000022368,0.0000022361,0.0000022349, -0.0000022329,0.0000022285,0.0000022224,0.0000022157,0.0000022091, -0.0000022030,0.0000021981,0.0000021944,0.0000021923,0.0000021911, -0.0000021903,0.0000021902,0.0000021912,0.0000021931,0.0000021957, -0.0000021994,0.0000022040,0.0000022093,0.0000022153,0.0000022215, -0.0000022271,0.0000022313,0.0000022335,0.0000022341,0.0000022338, -0.0000022334,0.0000022330,0.0000022323,0.0000022323,0.0000022317, -0.0000022302,0.0000022288,0.0000022260,0.0000022223,0.0000022176, -0.0000022122,0.0000022065,0.0000022014,0.0000021976,0.0000021952, -0.0000021943,0.0000021938,0.0000021983,0.0000022068,0.0000022184, -0.0000022306,0.0000022415,0.0000022504,0.0000022582,0.0000022663, -0.0000022756,0.0000022862,0.0000022968,0.0000023059,0.0000023124, -0.0000023163,0.0000023182,0.0000023187,0.0000023192,0.0000023218, -0.0000023271,0.0000023348,0.0000023435,0.0000023502,0.0000023522, -0.0000023502,0.0000023474,0.0000023448,0.0000023442,0.0000023462, -0.0000023502,0.0000023539,0.0000023562,0.0000023570,0.0000023573, -0.0000023569,0.0000023547,0.0000023511,0.0000023461,0.0000023406, -0.0000023360,0.0000023326,0.0000023299,0.0000023280,0.0000023268, -0.0000023261,0.0000023255,0.0000023250,0.0000023246,0.0000023239, -0.0000023232,0.0000023227,0.0000023225,0.0000023223,0.0000023219, -0.0000023217,0.0000023213,0.0000023202,0.0000023183,0.0000023159, -0.0000023129,0.0000023096,0.0000023070,0.0000023055,0.0000023046, -0.0000023039,0.0000023043,0.0000023044,0.0000023038,0.0000023028, -0.0000023016,0.0000023001,0.0000022984,0.0000022966,0.0000022949, -0.0000022934,0.0000022925,0.0000022921,0.0000022919,0.0000022922, -0.0000022928,0.0000022928,0.0000022922,0.0000022910,0.0000022899, -0.0000022888,0.0000022861,0.0000022806,0.0000022731,0.0000022666, -0.0000022626,0.0000022599,0.0000022570,0.0000022522,0.0000022456, -0.0000022385,0.0000022321,0.0000022234,0.0000022090,0.0000021881, -0.0000021662,0.0000021480,0.0000021342,0.0000021243,0.0000021181, -0.0000021140,0.0000021110,0.0000021066,0.0000021002,0.0000020931, -0.0000020876,0.0000020852,0.0000020853,0.0000020875,0.0000020919, -0.0000020970,0.0000021023,0.0000021068,0.0000021096,0.0000021105, -0.0000021099,0.0000021085,0.0000021065,0.0000021044,0.0000021025, -0.0000021008,0.0000020995,0.0000020991,0.0000020999,0.0000021014, -0.0000021019,0.0000021011,0.0000020988,0.0000020947,0.0000020899, -0.0000020853,0.0000020821,0.0000020794,0.0000020772,0.0000020755, -0.0000020746,0.0000020751,0.0000020778,0.0000020825,0.0000020873, -0.0000020904,0.0000020923,0.0000020909,0.0000020875,0.0000020833, -0.0000020808,0.0000020812,0.0000020839,0.0000020871,0.0000020896, -0.0000020906,0.0000020897,0.0000020867,0.0000020815,0.0000020759, -0.0000020704,0.0000020656,0.0000020619,0.0000020603,0.0000020613, -0.0000020639,0.0000020695,0.0000020798,0.0000020923,0.0000021074, -0.0000021272,0.0000021508,0.0000021725,0.0000021863,0.0000021928, -0.0000021979,0.0000022024,0.0000022049,0.0000022080,0.0000022150, -0.0000022234,0.0000022280,0.0000022257,0.0000022168,0.0000022083, -0.0000022051,0.0000022054,0.0000022070,0.0000022090,0.0000022135, -0.0000022202,0.0000022275,0.0000022342,0.0000022391,0.0000022413, -0.0000022410,0.0000022391,0.0000022367,0.0000022371,0.0000022411, -0.0000022457,0.0000022457,0.0000022402,0.0000022292,0.0000022197, -0.0000022166,0.0000022170,0.0000022181,0.0000022196,0.0000022272, -0.0000022434,0.0000022601,0.0000022679,0.0000022660,0.0000022622, -0.0000022656,0.0000022792,0.0000022946,0.0000023026,0.0000023033, -0.0000023020,0.0000023006,0.0000022986,0.0000022954,0.0000022892, -0.0000022806,0.0000022702,0.0000022584,0.0000022466,0.0000022360, -0.0000022268,0.0000022192,0.0000022136,0.0000022103,0.0000022087, -0.0000022085,0.0000022095,0.0000022099,0.0000022113,0.0000022154, -0.0000022211,0.0000022277,0.0000022336,0.0000022360,0.0000022346, -0.0000022302,0.0000022278,0.0000022290,0.0000022328,0.0000022356, -0.0000022351,0.0000022339,0.0000022377,0.0000022489,0.0000022577, -0.0000022560,0.0000022431,0.0000022308,0.0000022320,0.0000022433, -0.0000022539,0.0000022564,0.0000022544,0.0000022500,0.0000022467, -0.0000022451,0.0000022390,0.0000022243,0.0000022061,0.0000021912, -0.0000021812,0.0000021745,0.0000021689,0.0000021637,0.0000021596, -0.0000021561,0.0000021524,0.0000021488,0.0000021452,0.0000021426, -0.0000021426,0.0000021445,0.0000021483,0.0000021550,0.0000021647, -0.0000021771,0.0000021910,0.0000022051,0.0000022182,0.0000022287, -0.0000022372,0.0000022440,0.0000022476,0.0000022470,0.0000022425, -0.0000022374,0.0000022313,0.0000022201,0.0000022035,0.0000021858, -0.0000021698,0.0000021608,0.0000021584,0.0000021706,0.0000021887, -0.0000022010,0.0000022062,0.0000022202,0.0000022444,0.0000022569, -0.0000022337,0.0000021968,0.0000021792,0.0000021745,0.0000021677, -0.0000021612,0.0000021616,0.0000021668,0.0000021728,0.0000021789, -0.0000021836,0.0000021868,0.0000021885,0.0000021903,0.0000021923, -0.0000021953,0.0000021996,0.0000022051,0.0000022110,0.0000022149, -0.0000022159,0.0000022147,0.0000022092,0.0000021997,0.0000021908, -0.0000021867,0.0000021864,0.0000021865,0.0000021863,0.0000021880, -0.0000021937,0.0000022032,0.0000022138,0.0000022244,0.0000022349, -0.0000022452,0.0000022542,0.0000022617,0.0000022688,0.0000022765, -0.0000022840,0.0000022897,0.0000022933,0.0000022946,0.0000022944, -0.0000022916,0.0000022861,0.0000022784,0.0000022686,0.0000022543, -0.0000022345,0.0000022147,0.0000022007,0.0000021923,0.0000021844, -0.0000021736,0.0000021590,0.0000021426,0.0000021275,0.0000021159, -0.0000021056,0.0000020939,0.0000020822,0.0000020733,0.0000020674, -0.0000020633,0.0000020605,0.0000020592,0.0000020592,0.0000020591, -0.0000020573,0.0000020534,0.0000020486,0.0000020444,0.0000020409, -0.0000020380,0.0000020367,0.0000020369,0.0000020409,0.0000020480, -0.0000020571,0.0000020668,0.0000020751,0.0000020818,0.0000020867, -0.0000020903,0.0000020937,0.0000020982,0.0000021042,0.0000021099, -0.0000021130,0.0000021113,0.0000021063,0.0000021014,0.0000020976, -0.0000020952,0.0000020938,0.0000020928,0.0000020950,0.0000021006, -0.0000021076,0.0000021135,0.0000021184,0.0000021248,0.0000021354, -0.0000021494,0.0000021636,0.0000021735,0.0000021775,0.0000021767, -0.0000021755,0.0000021746,0.0000021730,0.0000021690,0.0000021588, -0.0000021449,0.0000021292,0.0000021119,0.0000020955,0.0000020874, -0.0000020872,0.0000020957,0.0000021053,0.0000021106,0.0000021120, -0.0000021125,0.0000021163,0.0000021250,0.0000021387,0.0000021546, -0.0000021687,0.0000021810,0.0000021945,0.0000022106,0.0000022273, -0.0000022421,0.0000022541,0.0000022635,0.0000022708,0.0000022756, -0.0000022777,0.0000022779,0.0000022764,0.0000022750,0.0000022741, -0.0000022737,0.0000022740,0.0000022753,0.0000022769,0.0000022784, -0.0000022803,0.0000022844,0.0000022925,0.0000023044,0.0000023177, -0.0000023302,0.0000023434,0.0000023603,0.0000023804,0.0000023994, -0.0000024138,0.0000024229,0.0000024274,0.0000024283,0.0000024276, -0.0000024258,0.0000024232,0.0000024202,0.0000024168,0.0000024129, -0.0000024096,0.0000024082,0.0000024094,0.0000024121,0.0000024145, -0.0000024156,0.0000024153,0.0000024131,0.0000024087,0.0000024027, -0.0000023964,0.0000023903,0.0000023846,0.0000023798,0.0000023747, -0.0000023681,0.0000023616,0.0000023563,0.0000023490,0.0000023374, -0.0000023246,0.0000023127,0.0000022997,0.0000022840,0.0000022674, -0.0000022530,0.0000022422,0.0000022351,0.0000022305,0.0000022251, -0.0000022162,0.0000022056,0.0000021972,0.0000021927,0.0000021907, -0.0000021883,0.0000021842,0.0000021785,0.0000021724,0.0000021666, -0.0000021613,0.0000021562,0.0000021522,0.0000021492,0.0000021468, -0.0000021454,0.0000021450,0.0000021455,0.0000021468,0.0000021484, -0.0000021501,0.0000021521,0.0000021546,0.0000021570,0.0000021587, -0.0000021599,0.0000021610,0.0000021619,0.0000021617,0.0000021600, -0.0000021562,0.0000021520,0.0000021490,0.0000021473,0.0000021460, -0.0000021450,0.0000021441,0.0000021432,0.0000021416,0.0000021391, -0.0000021353,0.0000021317,0.0000021278,0.0000021229,0.0000021167, -0.0000021098,0.0000021038,0.0000020992,0.0000020970,0.0000020962, -0.0000020969,0.0000021000,0.0000021078,0.0000021213,0.0000021411, -0.0000021668,0.0000021952,0.0000022222,0.0000022434,0.0000022571, -0.0000022634,0.0000022595,0.0000022557,0.0000022498,0.0000022429, -0.0000022362,0.0000022298,0.0000022237,0.0000022178,0.0000022122, -0.0000022071,0.0000022025,0.0000021977,0.0000021928,0.0000021883, -0.0000021851,0.0000021831,0.0000021817,0.0000021805,0.0000021792, -0.0000021775,0.0000021759,0.0000021742,0.0000021727,0.0000021721, -0.0000021721,0.0000021722,0.0000021727,0.0000021734,0.0000021741, -0.0000021741,0.0000021728,0.0000021695,0.0000021637,0.0000021563, -0.0000021485,0.0000021414,0.0000021354,0.0000021296,0.0000021245, -0.0000021202,0.0000021175,0.0000021155,0.0000021133,0.0000021111, -0.0000021092,0.0000021075,0.0000021056,0.0000021035,0.0000021011, -0.0000020985,0.0000020955,0.0000020919,0.0000020881,0.0000020848, -0.0000020829,0.0000020824,0.0000020824,0.0000020830,0.0000020842, -0.0000020865,0.0000020888,0.0000020904,0.0000020902,0.0000020880, -0.0000020841,0.0000020779,0.0000020722,0.0000020679,0.0000020634, -0.0000020579,0.0000020518,0.0000020473,0.0000020449,0.0000020447, -0.0000020452,0.0000020454,0.0000020453,0.0000020452,0.0000020461, -0.0000020487,0.0000020518,0.0000020541,0.0000020558,0.0000020568, -0.0000020573,0.0000020573,0.0000020565,0.0000020548,0.0000020523, -0.0000020501,0.0000020477,0.0000020448,0.0000020413,0.0000020374, -0.0000020331,0.0000020294,0.0000020280,0.0000020278,0.0000020281, -0.0000020286,0.0000020296,0.0000020311,0.0000020328,0.0000020347, -0.0000020365,0.0000020380,0.0000020392,0.0000020399,0.0000020394, -0.0000020373,0.0000020344,0.0000020310,0.0000020261,0.0000020201, -0.0000020136,0.0000020083,0.0000020064,0.0000020060,0.0000020044, -0.0000020018,0.0000020019,0.0000020094,0.0000020227,0.0000020311, -0.0000020361,0.0000020470,0.0000020520,0.0000020445,0.0000020420, -0.0000020450,0.0000020412,0.0000020396,0.0000020467,0.0000020507, -0.0000020445,0.0000020326,0.0000020248,0.0000020234,0.0000020266, -0.0000020324,0.0000020376,0.0000020432,0.0000020471,0.0000020473, -0.0000020485,0.0000020542,0.0000020615,0.0000020672,0.0000020691, -0.0000020663,0.0000020591,0.0000020501,0.0000020404,0.0000020309, -0.0000020247,0.0000020240,0.0000020259,0.0000020289,0.0000020313, -0.0000020342,0.0000020371,0.0000020379,0.0000020401,0.0000020446, -0.0000020446,0.0000020351,0.0000020241,0.0000020213,0.0000020252, -0.0000020330,0.0000020409,0.0000020475,0.0000020515,0.0000020526, -0.0000020530,0.0000020537,0.0000020536,0.0000020521,0.0000020502, -0.0000020491,0.0000020494,0.0000020503,0.0000020513,0.0000020527, -0.0000020540,0.0000020547,0.0000020545,0.0000020528,0.0000020500, -0.0000020464,0.0000020422,0.0000020395,0.0000020390,0.0000020411, -0.0000020453,0.0000020506,0.0000020556,0.0000020596,0.0000020623, -0.0000020638,0.0000020650,0.0000020648,0.0000020617,0.0000020560, -0.0000020498,0.0000020448,0.0000020404,0.0000020350,0.0000020304, -0.0000020294,0.0000020311,0.0000020346,0.0000020375,0.0000020399, -0.0000020422,0.0000020444,0.0000020460,0.0000020468,0.0000020468, -0.0000020461,0.0000020451,0.0000020439,0.0000020423,0.0000020410, -0.0000020404,0.0000020403,0.0000020401,0.0000020393,0.0000020379, -0.0000020359,0.0000020331,0.0000020295,0.0000020265,0.0000020249, -0.0000020237,0.0000020221,0.0000020206,0.0000020193,0.0000020181, -0.0000020172,0.0000020160,0.0000020148,0.0000020134,0.0000020117, -0.0000020101,0.0000020092,0.0000020090,0.0000020091,0.0000020091, -0.0000020098,0.0000020115,0.0000020141,0.0000020166,0.0000020187, -0.0000020204,0.0000020220,0.0000020238,0.0000020258,0.0000020277, -0.0000020290,0.0000020293,0.0000020291,0.0000020284,0.0000020273, -0.0000020260,0.0000020245,0.0000020231,0.0000020218,0.0000020205, -0.0000020190,0.0000020181,0.0000020181,0.0000020187,0.0000020210, -0.0000020257,0.0000020312,0.0000020347,0.0000020348,0.0000020352, -0.0000020411,0.0000020544,0.0000020691,0.0000020805,0.0000020888, -0.0000020920,0.0000020907,0.0000020829,0.0000020705,0.0000020634, -0.0000020629,0.0000020637,0.0000020670,0.0000020706,0.0000020703, -0.0000020697,0.0000020766,0.0000020963,0.0000021241,0.0000021491, -0.0000021255,0.0000021479,0.0000021615,0.0000021673,0.0000021688, -0.0000021685,0.0000021667,0.0000021633,0.0000021588,0.0000021528, -0.0000021444,0.0000021345,0.0000021265,0.0000021211,0.0000021192, -0.0000021197,0.0000021211,0.0000021225,0.0000021232,0.0000021237, -0.0000021246,0.0000021253,0.0000021246,0.0000021223,0.0000021190, -0.0000021151,0.0000021104,0.0000021047,0.0000020995,0.0000020958, -0.0000020931,0.0000020904,0.0000020869,0.0000020827,0.0000020791, -0.0000020771,0.0000020771,0.0000020792,0.0000020840,0.0000020906, -0.0000020975,0.0000021029,0.0000021053,0.0000021050,0.0000021026, -0.0000020989,0.0000020949,0.0000020915,0.0000020888,0.0000020864, -0.0000020840,0.0000020815,0.0000020794,0.0000020781,0.0000020774, -0.0000020774,0.0000020782,0.0000020802,0.0000020828,0.0000020854, -0.0000020876,0.0000020902,0.0000020932,0.0000020962,0.0000020988, -0.0000021011,0.0000021037,0.0000021074,0.0000021124,0.0000021184, -0.0000021239,0.0000021280,0.0000021303,0.0000021305,0.0000021296, -0.0000021267,0.0000021235,0.0000021208,0.0000021185,0.0000021170, -0.0000021163,0.0000021158,0.0000021147,0.0000021134,0.0000021124, -0.0000021122,0.0000021124,0.0000021131,0.0000021137,0.0000021140, -0.0000021145,0.0000021152,0.0000021152,0.0000021147,0.0000021139, -0.0000021129,0.0000021116,0.0000021102,0.0000021083,0.0000021062, -0.0000021048,0.0000021042,0.0000021039,0.0000021029,0.0000021015, -0.0000021005,0.0000021001,0.0000021005,0.0000021007,0.0000021005, -0.0000021001,0.0000020999,0.0000020993,0.0000020979,0.0000020960, -0.0000020947,0.0000020941,0.0000020938,0.0000020938,0.0000020936, -0.0000020939,0.0000020945,0.0000020949,0.0000020948,0.0000020948, -0.0000020952,0.0000020961,0.0000020972,0.0000020986,0.0000021002, -0.0000021021,0.0000021034,0.0000021037,0.0000021035,0.0000021034, -0.0000021038,0.0000021046,0.0000021054,0.0000021057,0.0000021048, -0.0000021026,0.0000020997,0.0000020967,0.0000020949,0.0000020949, -0.0000020960,0.0000020973,0.0000020986,0.0000021000,0.0000021013, -0.0000021025,0.0000021037,0.0000021052,0.0000021075,0.0000021106, -0.0000021144,0.0000021184,0.0000021221,0.0000021251,0.0000021274, -0.0000021290,0.0000021295,0.0000021295,0.0000021295,0.0000021289, -0.0000021276,0.0000021262,0.0000021250,0.0000021240,0.0000021240, -0.0000021254,0.0000021283,0.0000021321,0.0000021369,0.0000021409, -0.0000021434,0.0000021455,0.0000021488,0.0000021533,0.0000021581, -0.0000021614,0.0000021620,0.0000021614,0.0000021629,0.0000021681, -0.0000021744,0.0000021776,0.0000021760,0.0000021690,0.0000021642, -0.0000021645,0.0000021657,0.0000021617,0.0000021579,0.0000021591, -0.0000021641,0.0000021717,0.0000021839,0.0000022001,0.0000022155, -0.0000022253,0.0000022291,0.0000022294,0.0000022285,0.0000022258, -0.0000022221,0.0000022195,0.0000022190,0.0000022204,0.0000022237, -0.0000022280,0.0000022323,0.0000022365,0.0000022406,0.0000022445, -0.0000022485,0.0000022528,0.0000022573,0.0000022615,0.0000022655, -0.0000022693,0.0000022729,0.0000022762,0.0000022793,0.0000022828, -0.0000022866,0.0000022904,0.0000022940,0.0000022975,0.0000023008, -0.0000023035,0.0000023057,0.0000023075,0.0000023092,0.0000023108, -0.0000023124,0.0000023140,0.0000023153,0.0000023160,0.0000023163, -0.0000023161,0.0000023152,0.0000023135,0.0000023111,0.0000023081, -0.0000023047,0.0000023005,0.0000022957,0.0000022909,0.0000022868, -0.0000022833,0.0000022803,0.0000022778,0.0000022758,0.0000022745, -0.0000022739,0.0000022737,0.0000022733,0.0000022724,0.0000022710, -0.0000022687,0.0000022657,0.0000022625,0.0000022592,0.0000022558, -0.0000022527,0.0000022504,0.0000022491,0.0000022484,0.0000022475, -0.0000022461,0.0000022430,0.0000022377,0.0000022306,0.0000022219, -0.0000022123,0.0000022028,0.0000021948,0.0000021889,0.0000021848, -0.0000021809,0.0000021755,0.0000021681,0.0000021597,0.0000021516, -0.0000021455,0.0000021409,0.0000021368,0.0000021333,0.0000021309, -0.0000021301,0.0000021308,0.0000021329,0.0000021360,0.0000021393, -0.0000021421,0.0000021441,0.0000021454,0.0000021464,0.0000021472, -0.0000021478,0.0000021491,0.0000021512,0.0000021534,0.0000021554, -0.0000021572,0.0000021583,0.0000021586,0.0000021581,0.0000021563, -0.0000021528,0.0000021473,0.0000021407,0.0000021345,0.0000021301, -0.0000021276,0.0000021262,0.0000021236,0.0000021197,0.0000021183, -0.0000021190,0.0000021186,0.0000021156,0.0000021096,0.0000021038, -0.0000021017,0.0000021013,0.0000021000,0.0000020990,0.0000020992, -0.0000020996,0.0000021007,0.0000021030,0.0000021044,0.0000021033, -0.0000021003,0.0000020937,0.0000020837,0.0000020778,0.0000020775, -0.0000020811,0.0000020900,0.0000021005,0.0000021044,0.0000021028, -0.0000021004,0.0000021015,0.0000021093,0.0000021182,0.0000021221, -0.0000021232,0.0000021272,0.0000021345,0.0000021415,0.0000021464, -0.0000021484,0.0000021488,0.0000021491,0.0000021495,0.0000021506, -0.0000021541,0.0000021606,0.0000021701,0.0000021806,0.0000021834, -0.0000021806,0.0000021793,0.0000021812,0.0000021832,0.0000021904, -0.0000021971,0.0000021977,0.0000021978,0.0000022005,0.0000021976, -0.0000021855,0.0000021773,0.0000021828,0.0000021950,0.0000022006, -0.0000021995,0.0000021973,0.0000021971,0.0000021952,0.0000021882, -0.0000021803,0.0000021764,0.0000021755,0.0000021757,0.0000021769, -0.0000021814,0.0000021882,0.0000021948,0.0000022012,0.0000022065, -0.0000022089,0.0000022087,0.0000022058,0.0000022018,0.0000021982, -0.0000021952,0.0000021944,0.0000021968,0.0000022016,0.0000022083, -0.0000022163,0.0000022246,0.0000022327,0.0000022393,0.0000022442, -0.0000022469,0.0000022471,0.0000022472,0.0000022483,0.0000022500, -0.0000022534,0.0000022579,0.0000022619,0.0000022656,0.0000022688, -0.0000022723,0.0000022779,0.0000022850,0.0000022907,0.0000022948, -0.0000022986,0.0000023034,0.0000023044,0.0000022996,0.0000022868, -0.0000022678,0.0000022516,0.0000022430,0.0000022383,0.0000022349, -0.0000022321,0.0000022294,0.0000022253,0.0000022119,0.0000022003, -0.0000022020,0.0000022076,0.0000022145,0.0000022233,0.0000022299, -0.0000022334,0.0000022350,0.0000022357,0.0000022354,0.0000022348, -0.0000022367,0.0000022416,0.0000022471,0.0000022536,0.0000022599, -0.0000022645,0.0000022670,0.0000022682,0.0000022686,0.0000022684, -0.0000022686,0.0000022700,0.0000022719,0.0000022746,0.0000022773, -0.0000022803,0.0000022841,0.0000022888,0.0000022929,0.0000022961, -0.0000022986,0.0000023003,0.0000023008,0.0000023005,0.0000023005, -0.0000023018,0.0000023037,0.0000023061,0.0000023090,0.0000023113, -0.0000023125,0.0000023134,0.0000023150,0.0000023158,0.0000023149, -0.0000023129,0.0000023104,0.0000023069,0.0000023032,0.0000022998, -0.0000022971,0.0000022942,0.0000022887,0.0000022825,0.0000022783, -0.0000022751,0.0000022724,0.0000022721,0.0000022741,0.0000022772, -0.0000022800,0.0000022829,0.0000022872,0.0000022922,0.0000022958, -0.0000022966,0.0000022947,0.0000022909,0.0000022861,0.0000022820, -0.0000022786,0.0000022748,0.0000022717,0.0000022715,0.0000022738, -0.0000022785,0.0000022844,0.0000022870,0.0000022821,0.0000022720, -0.0000022659,0.0000022612,0.0000022472,0.0000022320,0.0000022246, -0.0000022262,0.0000022383,0.0000022433,0.0000022298,0.0000022124, -0.0000022087,0.0000022097,0.0000022100,0.0000022102,0.0000022122, -0.0000022188,0.0000022238,0.0000022224,0.0000022142,0.0000022023, -0.0000021897,0.0000021789,0.0000021709,0.0000021657,0.0000021596, -0.0000021543,0.0000021514,0.0000021507,0.0000021509,0.0000021505, -0.0000021496,0.0000021484,0.0000021475,0.0000021489,0.0000021522, -0.0000021585,0.0000021671,0.0000021774,0.0000021872,0.0000021943, -0.0000021975,0.0000021972,0.0000021947,0.0000021920,0.0000021913, -0.0000021941,0.0000022002,0.0000022081,0.0000022152,0.0000022188, -0.0000022198,0.0000022180,0.0000022139,0.0000022095,0.0000022072, -0.0000022098,0.0000022166,0.0000022239,0.0000022272,0.0000022247, -0.0000022180,0.0000022101,0.0000022012,0.0000021911,0.0000021815, -0.0000021761,0.0000021769,0.0000021802,0.0000021916,0.0000022055, -0.0000022214,0.0000022365,0.0000022496,0.0000022592,0.0000022656, -0.0000022690,0.0000022702,0.0000022690,0.0000022658,0.0000022612, -0.0000022572,0.0000022530,0.0000022492,0.0000022458,0.0000022433, -0.0000022414,0.0000022393,0.0000022387,0.0000022376,0.0000022355, -0.0000022330,0.0000022292,0.0000022234,0.0000022157,0.0000022072, -0.0000021991,0.0000021922,0.0000021868,0.0000021824,0.0000021791, -0.0000021771,0.0000021763,0.0000021758,0.0000021753,0.0000021750, -0.0000021751,0.0000021763,0.0000021787,0.0000021820,0.0000021867, -0.0000021922,0.0000021984,0.0000022049,0.0000022110,0.0000022159, -0.0000022197,0.0000022225,0.0000022244,0.0000022256,0.0000022265, -0.0000022276,0.0000022283,0.0000022285,0.0000022276,0.0000022260, -0.0000022235,0.0000022210,0.0000022181,0.0000022144,0.0000022099, -0.0000022053,0.0000022011,0.0000021971,0.0000021944,0.0000021932, -0.0000021936,0.0000021975,0.0000022054,0.0000022159,0.0000022273, -0.0000022380,0.0000022472,0.0000022549,0.0000022621,0.0000022700, -0.0000022788,0.0000022882,0.0000022973,0.0000023049,0.0000023099, -0.0000023124,0.0000023136,0.0000023152,0.0000023190,0.0000023265, -0.0000023364,0.0000023449,0.0000023490,0.0000023490,0.0000023459, -0.0000023435,0.0000023420,0.0000023426,0.0000023457,0.0000023500, -0.0000023538,0.0000023568,0.0000023586,0.0000023591,0.0000023588, -0.0000023588,0.0000023572,0.0000023548,0.0000023514,0.0000023472, -0.0000023428,0.0000023390,0.0000023361,0.0000023336,0.0000023317, -0.0000023300,0.0000023282,0.0000023264,0.0000023250,0.0000023241, -0.0000023230,0.0000023218,0.0000023205,0.0000023188,0.0000023165, -0.0000023135,0.0000023101,0.0000023067,0.0000023033,0.0000023011, -0.0000022999,0.0000022990,0.0000022990,0.0000022999,0.0000023005, -0.0000023006,0.0000023002,0.0000022994,0.0000022982,0.0000022970, -0.0000022958,0.0000022945,0.0000022935,0.0000022928,0.0000022924, -0.0000022918,0.0000022909,0.0000022897,0.0000022883,0.0000022872, -0.0000022863,0.0000022856,0.0000022843,0.0000022809,0.0000022754, -0.0000022698,0.0000022656,0.0000022627,0.0000022602,0.0000022566, -0.0000022507,0.0000022437,0.0000022380,0.0000022322,0.0000022222, -0.0000022049,0.0000021834,0.0000021630,0.0000021462,0.0000021337, -0.0000021258,0.0000021212,0.0000021179,0.0000021143,0.0000021092, -0.0000021022,0.0000020953,0.0000020906,0.0000020892,0.0000020906, -0.0000020948,0.0000021003,0.0000021059,0.0000021105,0.0000021137, -0.0000021155,0.0000021156,0.0000021149,0.0000021137,0.0000021120, -0.0000021105,0.0000021093,0.0000021079,0.0000021062,0.0000021048, -0.0000021040,0.0000021043,0.0000021042,0.0000021026,0.0000021000, -0.0000020946,0.0000020882,0.0000020802,0.0000020727,0.0000020663, -0.0000020613,0.0000020584,0.0000020573,0.0000020580,0.0000020616, -0.0000020687,0.0000020778,0.0000020859,0.0000020915,0.0000020938, -0.0000020944,0.0000020919,0.0000020877,0.0000020836,0.0000020815, -0.0000020815,0.0000020824,0.0000020833,0.0000020836,0.0000020827, -0.0000020800,0.0000020753,0.0000020693,0.0000020626,0.0000020560, -0.0000020503,0.0000020488,0.0000020509,0.0000020549,0.0000020629, -0.0000020747,0.0000020882,0.0000021026,0.0000021195,0.0000021407, -0.0000021627,0.0000021783,0.0000021867,0.0000021936,0.0000021996, -0.0000022029,0.0000022067,0.0000022145,0.0000022243,0.0000022289, -0.0000022259,0.0000022157,0.0000022063,0.0000022020,0.0000022019, -0.0000022024,0.0000022037,0.0000022081,0.0000022154,0.0000022240, -0.0000022317,0.0000022367,0.0000022393,0.0000022397,0.0000022382, -0.0000022369,0.0000022377,0.0000022414,0.0000022453,0.0000022469, -0.0000022433,0.0000022331,0.0000022214,0.0000022147,0.0000022125, -0.0000022128,0.0000022133,0.0000022179,0.0000022304,0.0000022483, -0.0000022619,0.0000022632,0.0000022608,0.0000022625,0.0000022743, -0.0000022894,0.0000022984,0.0000022995,0.0000022982,0.0000022973, -0.0000022963,0.0000022942,0.0000022914,0.0000022869,0.0000022805, -0.0000022724,0.0000022637,0.0000022547,0.0000022460,0.0000022382, -0.0000022314,0.0000022261,0.0000022224,0.0000022204,0.0000022201, -0.0000022214,0.0000022243,0.0000022291,0.0000022348,0.0000022401, -0.0000022427,0.0000022407,0.0000022344,0.0000022282,0.0000022266, -0.0000022287,0.0000022332,0.0000022353,0.0000022338,0.0000022318, -0.0000022347,0.0000022466,0.0000022558,0.0000022517,0.0000022372, -0.0000022296,0.0000022353,0.0000022485,0.0000022555,0.0000022552, -0.0000022515,0.0000022475,0.0000022457,0.0000022407,0.0000022271, -0.0000022083,0.0000021922,0.0000021812,0.0000021732,0.0000021671, -0.0000021622,0.0000021576,0.0000021534,0.0000021497,0.0000021468, -0.0000021447,0.0000021425,0.0000021397,0.0000021379,0.0000021383, -0.0000021404,0.0000021450,0.0000021523,0.0000021624,0.0000021755, -0.0000021900,0.0000022046,0.0000022181,0.0000022291,0.0000022376, -0.0000022440,0.0000022462,0.0000022447,0.0000022400,0.0000022352, -0.0000022288,0.0000022175,0.0000022018,0.0000021849,0.0000021689, -0.0000021593,0.0000021562,0.0000021681,0.0000021872,0.0000022014, -0.0000022073,0.0000022229,0.0000022461,0.0000022522,0.0000022264, -0.0000021911,0.0000021762,0.0000021711,0.0000021649,0.0000021620, -0.0000021659,0.0000021742,0.0000021826,0.0000021895,0.0000021938, -0.0000021947,0.0000021944,0.0000021949,0.0000021971,0.0000022016, -0.0000022067,0.0000022114,0.0000022140,0.0000022149,0.0000022149, -0.0000022127,0.0000022061,0.0000021972,0.0000021908,0.0000021891, -0.0000021889,0.0000021878,0.0000021889,0.0000021953,0.0000022076, -0.0000022221,0.0000022346,0.0000022454,0.0000022553,0.0000022637, -0.0000022703,0.0000022764,0.0000022827,0.0000022883,0.0000022927, -0.0000022951,0.0000022958,0.0000022948,0.0000022911,0.0000022849, -0.0000022775,0.0000022694,0.0000022580,0.0000022401,0.0000022193, -0.0000022031,0.0000021939,0.0000021878,0.0000021795,0.0000021668, -0.0000021510,0.0000021351,0.0000021221,0.0000021120,0.0000021016, -0.0000020904,0.0000020810,0.0000020746,0.0000020699,0.0000020665, -0.0000020647,0.0000020642,0.0000020646,0.0000020641,0.0000020613, -0.0000020565,0.0000020509,0.0000020457,0.0000020411,0.0000020377, -0.0000020363,0.0000020365,0.0000020395,0.0000020456,0.0000020544, -0.0000020645,0.0000020738,0.0000020810,0.0000020859,0.0000020887, -0.0000020907,0.0000020941,0.0000020997,0.0000021056,0.0000021090, -0.0000021085,0.0000021058,0.0000021016,0.0000020981,0.0000020951, -0.0000020925,0.0000020907,0.0000020917,0.0000020969,0.0000021039, -0.0000021101,0.0000021154,0.0000021215,0.0000021309,0.0000021440, -0.0000021583,0.0000021693,0.0000021745,0.0000021751,0.0000021735, -0.0000021720,0.0000021705,0.0000021661,0.0000021565,0.0000021426, -0.0000021269,0.0000021097,0.0000020930,0.0000020836,0.0000020812, -0.0000020890,0.0000020982,0.0000021044,0.0000021081,0.0000021111, -0.0000021153,0.0000021230,0.0000021358,0.0000021507,0.0000021637, -0.0000021741,0.0000021854,0.0000021999,0.0000022168,0.0000022325, -0.0000022446,0.0000022537,0.0000022610,0.0000022670,0.0000022713, -0.0000022735,0.0000022738,0.0000022731,0.0000022717,0.0000022705, -0.0000022698,0.0000022694,0.0000022690,0.0000022688,0.0000022695, -0.0000022730,0.0000022814,0.0000022947,0.0000023097,0.0000023224, -0.0000023345,0.0000023502,0.0000023691,0.0000023876,0.0000024030, -0.0000024134,0.0000024184,0.0000024198,0.0000024195,0.0000024182, -0.0000024161,0.0000024130,0.0000024090,0.0000024051,0.0000024030, -0.0000024030,0.0000024045,0.0000024062,0.0000024071,0.0000024069, -0.0000024058,0.0000024034,0.0000024001,0.0000023966,0.0000023926, -0.0000023882,0.0000023837,0.0000023788,0.0000023722,0.0000023645, -0.0000023578,0.0000023515,0.0000023422,0.0000023299,0.0000023182, -0.0000023070,0.0000022939,0.0000022786,0.0000022639,0.0000022511, -0.0000022406,0.0000022338,0.0000022293,0.0000022231,0.0000022129, -0.0000022009,0.0000021914,0.0000021864,0.0000021848,0.0000021828, -0.0000021787,0.0000021733,0.0000021675,0.0000021612,0.0000021547, -0.0000021493,0.0000021454,0.0000021425,0.0000021405,0.0000021402, -0.0000021410,0.0000021431,0.0000021454,0.0000021473,0.0000021485, -0.0000021496,0.0000021508,0.0000021518,0.0000021526,0.0000021540, -0.0000021560,0.0000021574,0.0000021571,0.0000021549,0.0000021513, -0.0000021479,0.0000021448,0.0000021422,0.0000021402,0.0000021385, -0.0000021372,0.0000021360,0.0000021347,0.0000021332,0.0000021312, -0.0000021291,0.0000021261,0.0000021234,0.0000021196,0.0000021147, -0.0000021090,0.0000021033,0.0000020991,0.0000020964,0.0000020959, -0.0000020952,0.0000020974,0.0000021040,0.0000021157,0.0000021332, -0.0000021555,0.0000021804,0.0000022051,0.0000022270,0.0000022422, -0.0000022506,0.0000022529,0.0000022503,0.0000022471,0.0000022427, -0.0000022368,0.0000022308,0.0000022250,0.0000022195,0.0000022144, -0.0000022098,0.0000022053,0.0000022003,0.0000021952,0.0000021910, -0.0000021884,0.0000021870,0.0000021861,0.0000021849,0.0000021840, -0.0000021828,0.0000021815,0.0000021805,0.0000021801,0.0000021801, -0.0000021802,0.0000021799,0.0000021788,0.0000021766,0.0000021727, -0.0000021663,0.0000021581,0.0000021491,0.0000021404,0.0000021324, -0.0000021255,0.0000021195,0.0000021141,0.0000021098,0.0000021069, -0.0000021055,0.0000021046,0.0000021034,0.0000021023,0.0000021015, -0.0000021007,0.0000020997,0.0000020982,0.0000020961,0.0000020935, -0.0000020905,0.0000020870,0.0000020831,0.0000020799,0.0000020775, -0.0000020761,0.0000020752,0.0000020749,0.0000020757,0.0000020779, -0.0000020809,0.0000020837,0.0000020859,0.0000020866,0.0000020846, -0.0000020800,0.0000020734,0.0000020675,0.0000020632,0.0000020587, -0.0000020530,0.0000020469,0.0000020428,0.0000020411,0.0000020412, -0.0000020425,0.0000020439,0.0000020456,0.0000020479,0.0000020516, -0.0000020551,0.0000020575,0.0000020589,0.0000020596,0.0000020597, -0.0000020594,0.0000020585,0.0000020567,0.0000020543,0.0000020523, -0.0000020501,0.0000020470,0.0000020427,0.0000020374,0.0000020317, -0.0000020273,0.0000020240,0.0000020224,0.0000020218,0.0000020219, -0.0000020224,0.0000020231,0.0000020242,0.0000020255,0.0000020268, -0.0000020283,0.0000020302,0.0000020318,0.0000020320,0.0000020305, -0.0000020285,0.0000020264,0.0000020234,0.0000020179,0.0000020108, -0.0000020043,0.0000020013,0.0000020006,0.0000020001,0.0000019977, -0.0000019956,0.0000019992,0.0000020121,0.0000020239,0.0000020307, -0.0000020422,0.0000020484,0.0000020425,0.0000020401,0.0000020431, -0.0000020398,0.0000020387,0.0000020466,0.0000020498,0.0000020426, -0.0000020300,0.0000020230,0.0000020225,0.0000020266,0.0000020322, -0.0000020369,0.0000020419,0.0000020452,0.0000020451,0.0000020451, -0.0000020473,0.0000020502,0.0000020518,0.0000020508,0.0000020465, -0.0000020409,0.0000020343,0.0000020275,0.0000020237,0.0000020231, -0.0000020256,0.0000020290,0.0000020313,0.0000020337,0.0000020368, -0.0000020383,0.0000020383,0.0000020410,0.0000020441,0.0000020403, -0.0000020287,0.0000020222,0.0000020239,0.0000020308,0.0000020382, -0.0000020447,0.0000020496,0.0000020519,0.0000020526,0.0000020532, -0.0000020532,0.0000020521,0.0000020505,0.0000020491,0.0000020483, -0.0000020478,0.0000020480,0.0000020489,0.0000020502,0.0000020510, -0.0000020511,0.0000020502,0.0000020486,0.0000020461,0.0000020425, -0.0000020393,0.0000020377,0.0000020374,0.0000020394,0.0000020439, -0.0000020495,0.0000020543,0.0000020574,0.0000020588,0.0000020592, -0.0000020587,0.0000020559,0.0000020511,0.0000020458,0.0000020416, -0.0000020383,0.0000020343,0.0000020303,0.0000020288,0.0000020300, -0.0000020334,0.0000020369,0.0000020395,0.0000020415,0.0000020434, -0.0000020443,0.0000020443,0.0000020440,0.0000020435,0.0000020428, -0.0000020419,0.0000020403,0.0000020383,0.0000020366,0.0000020360, -0.0000020358,0.0000020357,0.0000020357,0.0000020359,0.0000020357, -0.0000020346,0.0000020328,0.0000020310,0.0000020298,0.0000020286, -0.0000020272,0.0000020259,0.0000020246,0.0000020228,0.0000020216, -0.0000020209,0.0000020203,0.0000020194,0.0000020182,0.0000020170, -0.0000020160,0.0000020155,0.0000020152,0.0000020153,0.0000020158, -0.0000020168,0.0000020179,0.0000020193,0.0000020214,0.0000020240, -0.0000020265,0.0000020285,0.0000020303,0.0000020317,0.0000020321, -0.0000020318,0.0000020308,0.0000020296,0.0000020281,0.0000020262, -0.0000020241,0.0000020220,0.0000020202,0.0000020186,0.0000020175, -0.0000020175,0.0000020179,0.0000020186,0.0000020199,0.0000020225, -0.0000020273,0.0000020329,0.0000020363,0.0000020364,0.0000020359, -0.0000020394,0.0000020512,0.0000020663,0.0000020780,0.0000020865, -0.0000020905,0.0000020904,0.0000020865,0.0000020761,0.0000020659, -0.0000020624,0.0000020615,0.0000020628,0.0000020663,0.0000020689, -0.0000020702,0.0000020736,0.0000020828,0.0000021009,0.0000020876, -0.0000021019,0.0000021222,0.0000021430,0.0000021572,0.0000021643, -0.0000021670,0.0000021668,0.0000021653,0.0000021624,0.0000021579, -0.0000021506,0.0000021408,0.0000021296,0.0000021201,0.0000021143, -0.0000021105,0.0000021081,0.0000021062,0.0000021052,0.0000021047, -0.0000021046,0.0000021039,0.0000021019,0.0000020989,0.0000020959, -0.0000020929,0.0000020898,0.0000020867,0.0000020841,0.0000020820, -0.0000020796,0.0000020764,0.0000020730,0.0000020706,0.0000020702, -0.0000020716,0.0000020750,0.0000020799,0.0000020861,0.0000020927, -0.0000020982,0.0000021015,0.0000021023,0.0000021013,0.0000020977, -0.0000020925,0.0000020877,0.0000020843,0.0000020818,0.0000020796, -0.0000020772,0.0000020748,0.0000020734,0.0000020732,0.0000020737, -0.0000020748,0.0000020770,0.0000020803,0.0000020838,0.0000020868, -0.0000020896,0.0000020927,0.0000020959,0.0000020990,0.0000021022, -0.0000021051,0.0000021080,0.0000021114,0.0000021158,0.0000021202, -0.0000021240,0.0000021271,0.0000021297,0.0000021310,0.0000021306, -0.0000021282,0.0000021245,0.0000021210,0.0000021178,0.0000021150, -0.0000021136,0.0000021134,0.0000021133,0.0000021129,0.0000021126, -0.0000021123,0.0000021125,0.0000021126,0.0000021126,0.0000021128, -0.0000021135,0.0000021138,0.0000021135,0.0000021127,0.0000021118, -0.0000021110,0.0000021102,0.0000021093,0.0000021080,0.0000021066, -0.0000021058,0.0000021051,0.0000021039,0.0000021022,0.0000021006, -0.0000020996,0.0000020994,0.0000020995,0.0000020993,0.0000020991, -0.0000020992,0.0000020992,0.0000020986,0.0000020973,0.0000020964, -0.0000020959,0.0000020956,0.0000020958,0.0000020964,0.0000020974, -0.0000020988,0.0000021000,0.0000021007,0.0000021012,0.0000021016, -0.0000021021,0.0000021029,0.0000021040,0.0000021053,0.0000021067, -0.0000021081,0.0000021085,0.0000021082,0.0000021078,0.0000021082, -0.0000021094,0.0000021112,0.0000021129,0.0000021133,0.0000021123, -0.0000021101,0.0000021070,0.0000021037,0.0000021014,0.0000021004, -0.0000021006,0.0000021012,0.0000021017,0.0000021023,0.0000021028, -0.0000021035,0.0000021046,0.0000021062,0.0000021081,0.0000021106, -0.0000021136,0.0000021170,0.0000021204,0.0000021231,0.0000021250, -0.0000021262,0.0000021267,0.0000021269,0.0000021269,0.0000021267, -0.0000021261,0.0000021258,0.0000021258,0.0000021261,0.0000021267, -0.0000021278,0.0000021298,0.0000021328,0.0000021363,0.0000021391, -0.0000021404,0.0000021413,0.0000021433,0.0000021467,0.0000021510, -0.0000021554,0.0000021582,0.0000021582,0.0000021579,0.0000021616, -0.0000021694,0.0000021765,0.0000021786,0.0000021747,0.0000021660, -0.0000021618,0.0000021651,0.0000021653,0.0000021604,0.0000021581, -0.0000021615,0.0000021670,0.0000021736,0.0000021831,0.0000021963, -0.0000022096,0.0000022199,0.0000022263,0.0000022287,0.0000022281, -0.0000022250,0.0000022216,0.0000022194,0.0000022190,0.0000022200, -0.0000022225,0.0000022257,0.0000022286,0.0000022312,0.0000022336, -0.0000022362,0.0000022392,0.0000022427,0.0000022465,0.0000022503, -0.0000022541,0.0000022576,0.0000022611,0.0000022646,0.0000022687, -0.0000022730,0.0000022773,0.0000022816,0.0000022861,0.0000022904, -0.0000022942,0.0000022971,0.0000022989,0.0000023000,0.0000023007, -0.0000023011,0.0000023016,0.0000023021,0.0000023025,0.0000023029, -0.0000023030,0.0000023028,0.0000023023,0.0000023013,0.0000022998, -0.0000022977,0.0000022946,0.0000022909,0.0000022869,0.0000022832, -0.0000022797,0.0000022763,0.0000022733,0.0000022708,0.0000022686, -0.0000022668,0.0000022649,0.0000022627,0.0000022599,0.0000022565, -0.0000022527,0.0000022489,0.0000022458,0.0000022436,0.0000022422, -0.0000022410,0.0000022398,0.0000022384,0.0000022362,0.0000022330, -0.0000022287,0.0000022228,0.0000022156,0.0000022079,0.0000022003, -0.0000021935,0.0000021879,0.0000021833,0.0000021793,0.0000021753, -0.0000021709,0.0000021652,0.0000021585,0.0000021519,0.0000021466, -0.0000021428,0.0000021390,0.0000021343,0.0000021293,0.0000021251, -0.0000021221,0.0000021214,0.0000021227,0.0000021252,0.0000021279, -0.0000021310,0.0000021337,0.0000021353,0.0000021360,0.0000021365, -0.0000021369,0.0000021386,0.0000021413,0.0000021441,0.0000021468, -0.0000021496,0.0000021520,0.0000021533,0.0000021536,0.0000021528, -0.0000021503,0.0000021456,0.0000021398,0.0000021342,0.0000021296, -0.0000021259,0.0000021226,0.0000021185,0.0000021157,0.0000021155, -0.0000021166,0.0000021156,0.0000021116,0.0000021053,0.0000021002, -0.0000020983,0.0000020970,0.0000020948,0.0000020931,0.0000020922, -0.0000020919,0.0000020926,0.0000020952,0.0000020976,0.0000020979, -0.0000020968,0.0000020920,0.0000020823,0.0000020759,0.0000020749, -0.0000020770,0.0000020860,0.0000020977,0.0000021016,0.0000020999, -0.0000020975,0.0000020993,0.0000021079,0.0000021170,0.0000021199, -0.0000021204,0.0000021234,0.0000021303,0.0000021368,0.0000021408, -0.0000021431,0.0000021448,0.0000021462,0.0000021477,0.0000021503, -0.0000021560,0.0000021629,0.0000021725,0.0000021816,0.0000021824, -0.0000021793,0.0000021789,0.0000021796,0.0000021838,0.0000021933, -0.0000021965,0.0000021968,0.0000021996,0.0000021991,0.0000021878, -0.0000021773,0.0000021806,0.0000021927,0.0000021986,0.0000021968, -0.0000021926,0.0000021917,0.0000021901,0.0000021835,0.0000021773, -0.0000021751,0.0000021753,0.0000021765,0.0000021791,0.0000021826, -0.0000021883,0.0000021961,0.0000022038,0.0000022108,0.0000022157, -0.0000022173,0.0000022162,0.0000022133,0.0000022105,0.0000022091, -0.0000022093,0.0000022118,0.0000022163,0.0000022221,0.0000022285, -0.0000022360,0.0000022437,0.0000022509,0.0000022561,0.0000022592, -0.0000022601,0.0000022599,0.0000022603,0.0000022614,0.0000022627, -0.0000022658,0.0000022699,0.0000022740,0.0000022779,0.0000022817, -0.0000022854,0.0000022890,0.0000022923,0.0000022950,0.0000022983, -0.0000023019,0.0000023035,0.0000022997,0.0000022870,0.0000022698, -0.0000022566,0.0000022480,0.0000022415,0.0000022372,0.0000022344, -0.0000022313,0.0000022266,0.0000022156,0.0000022005,0.0000021987, -0.0000022033,0.0000022079,0.0000022158,0.0000022241,0.0000022306, -0.0000022341,0.0000022354,0.0000022357,0.0000022345,0.0000022332, -0.0000022337,0.0000022370,0.0000022419,0.0000022473,0.0000022531, -0.0000022580,0.0000022616,0.0000022640,0.0000022652,0.0000022659, -0.0000022672,0.0000022691,0.0000022712,0.0000022732,0.0000022756, -0.0000022778,0.0000022809,0.0000022852,0.0000022891,0.0000022917, -0.0000022939,0.0000022953,0.0000022960,0.0000022958,0.0000022957, -0.0000022966,0.0000022986,0.0000023015,0.0000023051,0.0000023087, -0.0000023113,0.0000023129,0.0000023147,0.0000023158,0.0000023153, -0.0000023133,0.0000023100,0.0000023057,0.0000023015,0.0000022981, -0.0000022954,0.0000022908,0.0000022839,0.0000022776,0.0000022728, -0.0000022682,0.0000022655,0.0000022662,0.0000022700,0.0000022746, -0.0000022787,0.0000022826,0.0000022877,0.0000022925,0.0000022952, -0.0000022957,0.0000022937,0.0000022900,0.0000022855,0.0000022808, -0.0000022755,0.0000022705,0.0000022682,0.0000022684,0.0000022710, -0.0000022753,0.0000022803,0.0000022817,0.0000022769,0.0000022684, -0.0000022636,0.0000022596,0.0000022472,0.0000022331,0.0000022252, -0.0000022246,0.0000022335,0.0000022441,0.0000022403,0.0000022207, -0.0000022082,0.0000022078,0.0000022087,0.0000022088,0.0000022086, -0.0000022102,0.0000022148,0.0000022191,0.0000022197,0.0000022152, -0.0000022060,0.0000021948,0.0000021839,0.0000021752,0.0000021682, -0.0000021622,0.0000021578,0.0000021561,0.0000021562,0.0000021559, -0.0000021551,0.0000021534,0.0000021512,0.0000021498,0.0000021493, -0.0000021508,0.0000021530,0.0000021583,0.0000021652,0.0000021729, -0.0000021801,0.0000021858,0.0000021891,0.0000021897,0.0000021885, -0.0000021876,0.0000021887,0.0000021929,0.0000021999,0.0000022085, -0.0000022161,0.0000022210,0.0000022220,0.0000022192,0.0000022132, -0.0000022071,0.0000022059,0.0000022088,0.0000022144,0.0000022201, -0.0000022224,0.0000022207,0.0000022187,0.0000022132,0.0000022059, -0.0000021973,0.0000021889,0.0000021824,0.0000021801,0.0000021833, -0.0000021866,0.0000021947,0.0000022053,0.0000022178,0.0000022301, -0.0000022409,0.0000022491,0.0000022543,0.0000022569,0.0000022570, -0.0000022555,0.0000022526,0.0000022491,0.0000022454,0.0000022419, -0.0000022390,0.0000022363,0.0000022332,0.0000022299,0.0000022261, -0.0000022220,0.0000022176,0.0000022129,0.0000022077,0.0000022020, -0.0000021962,0.0000021912,0.0000021858,0.0000021824,0.0000021793, -0.0000021764,0.0000021747,0.0000021743,0.0000021741,0.0000021735, -0.0000021723,0.0000021706,0.0000021702,0.0000021705,0.0000021702, -0.0000021721,0.0000021746,0.0000021780,0.0000021821,0.0000021872, -0.0000021924,0.0000021979,0.0000022029,0.0000022071,0.0000022104, -0.0000022135,0.0000022165,0.0000022188,0.0000022201,0.0000022201, -0.0000022193,0.0000022185,0.0000022174,0.0000022158,0.0000022140, -0.0000022118,0.0000022094,0.0000022073,0.0000022037,0.0000022002, -0.0000021971,0.0000021949,0.0000021939,0.0000021953,0.0000021979, -0.0000022038,0.0000022125,0.0000022229,0.0000022335,0.0000022425, -0.0000022494,0.0000022549,0.0000022613,0.0000022699,0.0000022797, -0.0000022891,0.0000022971,0.0000023029,0.0000023064,0.0000023090, -0.0000023130,0.0000023200,0.0000023292,0.0000023376,0.0000023427, -0.0000023441,0.0000023428,0.0000023408,0.0000023395,0.0000023395, -0.0000023417,0.0000023453,0.0000023494,0.0000023534,0.0000023562, -0.0000023580,0.0000023596,0.0000023615,0.0000023630,0.0000023642, -0.0000023646,0.0000023619,0.0000023586,0.0000023551,0.0000023513, -0.0000023473,0.0000023435,0.0000023399,0.0000023365,0.0000023335, -0.0000023313,0.0000023295,0.0000023276,0.0000023255,0.0000023228, -0.0000023193,0.0000023155,0.0000023115,0.0000023075,0.0000023042, -0.0000023022,0.0000023009,0.0000023001,0.0000023005,0.0000023012, -0.0000023017,0.0000023019,0.0000023017,0.0000023010,0.0000023001, -0.0000022992,0.0000022983,0.0000022974,0.0000022964,0.0000022952, -0.0000022940,0.0000022927,0.0000022910,0.0000022891,0.0000022872, -0.0000022858,0.0000022847,0.0000022830,0.0000022803,0.0000022763, -0.0000022718,0.0000022681,0.0000022650,0.0000022624,0.0000022598, -0.0000022555,0.0000022492,0.0000022429,0.0000022382,0.0000022316, -0.0000022185,0.0000021986,0.0000021772,0.0000021584,0.0000021434, -0.0000021334,0.0000021278,0.0000021248,0.0000021218,0.0000021172, -0.0000021107,0.0000021032,0.0000020973,0.0000020939,0.0000020936, -0.0000020968,0.0000021022,0.0000021080,0.0000021127,0.0000021154, -0.0000021165,0.0000021166,0.0000021162,0.0000021159,0.0000021159, -0.0000021160,0.0000021163,0.0000021165,0.0000021159,0.0000021144, -0.0000021120,0.0000021093,0.0000021071,0.0000021045,0.0000021011, -0.0000020961,0.0000020893,0.0000020806,0.0000020704,0.0000020601, -0.0000020511,0.0000020435,0.0000020382,0.0000020354,0.0000020347, -0.0000020369,0.0000020438,0.0000020551,0.0000020687,0.0000020807, -0.0000020890,0.0000020934,0.0000020945,0.0000020936,0.0000020905, -0.0000020869,0.0000020836,0.0000020816,0.0000020808,0.0000020802, -0.0000020803,0.0000020798,0.0000020775,0.0000020732,0.0000020665, -0.0000020588,0.0000020494,0.0000020427,0.0000020397,0.0000020417, -0.0000020477,0.0000020579,0.0000020714,0.0000020857,0.0000020990, -0.0000021128,0.0000021307,0.0000021517,0.0000021689,0.0000021804, -0.0000021897,0.0000021969,0.0000022013,0.0000022058,0.0000022139, -0.0000022241,0.0000022291,0.0000022264,0.0000022159,0.0000022052, -0.0000022007,0.0000021989,0.0000021987,0.0000021992,0.0000022020, -0.0000022085,0.0000022170,0.0000022244,0.0000022297,0.0000022335, -0.0000022358,0.0000022365,0.0000022370,0.0000022388,0.0000022422, -0.0000022455,0.0000022468,0.0000022450,0.0000022367,0.0000022237, -0.0000022129,0.0000022083,0.0000022071,0.0000022076,0.0000022097, -0.0000022180,0.0000022345,0.0000022516,0.0000022595,0.0000022586, -0.0000022588,0.0000022677,0.0000022826,0.0000022932,0.0000022957, -0.0000022947,0.0000022934,0.0000022925,0.0000022918,0.0000022902, -0.0000022887,0.0000022852,0.0000022803,0.0000022743,0.0000022677, -0.0000022617,0.0000022561,0.0000022510,0.0000022464,0.0000022424, -0.0000022399,0.0000022393,0.0000022400,0.0000022420,0.0000022453, -0.0000022492,0.0000022512,0.0000022482,0.0000022400,0.0000022302, -0.0000022249,0.0000022252,0.0000022294,0.0000022340,0.0000022344, -0.0000022312,0.0000022285,0.0000022331,0.0000022467,0.0000022527, -0.0000022431,0.0000022294,0.0000022304,0.0000022424,0.0000022530, -0.0000022545,0.0000022519,0.0000022478,0.0000022456,0.0000022416, -0.0000022292,0.0000022102,0.0000021929,0.0000021811,0.0000021725, -0.0000021650,0.0000021589,0.0000021546,0.0000021514,0.0000021480, -0.0000021446,0.0000021419,0.0000021404,0.0000021396,0.0000021380, -0.0000021358,0.0000021348,0.0000021354,0.0000021383,0.0000021434, -0.0000021510,0.0000021620,0.0000021756,0.0000021902,0.0000022045, -0.0000022183,0.0000022297,0.0000022378,0.0000022433,0.0000022444, -0.0000022422,0.0000022373,0.0000022322,0.0000022258,0.0000022153, -0.0000022006,0.0000021845,0.0000021682,0.0000021569,0.0000021549, -0.0000021674,0.0000021870,0.0000022010,0.0000022069,0.0000022234, -0.0000022466,0.0000022508,0.0000022197,0.0000021860,0.0000021729, -0.0000021685,0.0000021652,0.0000021659,0.0000021722,0.0000021826, -0.0000021928,0.0000021998,0.0000022025,0.0000022017,0.0000022003, -0.0000022008,0.0000022041,0.0000022087,0.0000022123,0.0000022135, -0.0000022138,0.0000022145,0.0000022149,0.0000022129,0.0000022064, -0.0000021986,0.0000021940,0.0000021930,0.0000021923,0.0000021923, -0.0000021978,0.0000022107,0.0000022274,0.0000022406,0.0000022517, -0.0000022615,0.0000022703,0.0000022773,0.0000022831,0.0000022883, -0.0000022923,0.0000022950,0.0000022961,0.0000022957,0.0000022937, -0.0000022891,0.0000022826,0.0000022757,0.0000022693,0.0000022608, -0.0000022455,0.0000022246,0.0000022060,0.0000021952,0.0000021899, -0.0000021840,0.0000021737,0.0000021593,0.0000021431,0.0000021286, -0.0000021176,0.0000021080,0.0000020979,0.0000020889,0.0000020823, -0.0000020771,0.0000020732,0.0000020710,0.0000020700,0.0000020698, -0.0000020702,0.0000020690,0.0000020654,0.0000020596,0.0000020526, -0.0000020461,0.0000020409,0.0000020372,0.0000020362,0.0000020365, -0.0000020386,0.0000020437,0.0000020522,0.0000020622,0.0000020715, -0.0000020789,0.0000020838,0.0000020861,0.0000020874,0.0000020902, -0.0000020951,0.0000021008,0.0000021052,0.0000021064,0.0000021046, -0.0000021017,0.0000020981,0.0000020945,0.0000020907,0.0000020884, -0.0000020887,0.0000020928,0.0000020993,0.0000021062,0.0000021118, -0.0000021175,0.0000021259,0.0000021381,0.0000021520,0.0000021636, -0.0000021703,0.0000021716,0.0000021697,0.0000021681,0.0000021667, -0.0000021621,0.0000021527,0.0000021388,0.0000021234,0.0000021069, -0.0000020900,0.0000020778,0.0000020759,0.0000020815,0.0000020904, -0.0000020984,0.0000021041,0.0000021085,0.0000021130,0.0000021207, -0.0000021329,0.0000021469,0.0000021587,0.0000021676,0.0000021768, -0.0000021900,0.0000022066,0.0000022226,0.0000022354,0.0000022445, -0.0000022517,0.0000022577,0.0000022626,0.0000022665,0.0000022688, -0.0000022693,0.0000022684,0.0000022666,0.0000022649,0.0000022629, -0.0000022607,0.0000022593,0.0000022594,0.0000022624,0.0000022707, -0.0000022855,0.0000023021,0.0000023156,0.0000023276,0.0000023412, -0.0000023574,0.0000023749,0.0000023911,0.0000024026,0.0000024083, -0.0000024101,0.0000024102,0.0000024097,0.0000024084,0.0000024058, -0.0000024027,0.0000024003,0.0000023991,0.0000023991,0.0000023998, -0.0000024005,0.0000024007,0.0000024003,0.0000023994,0.0000023980, -0.0000023968,0.0000023952,0.0000023922,0.0000023877,0.0000023822, -0.0000023756,0.0000023679,0.0000023604,0.0000023536,0.0000023454, -0.0000023342,0.0000023224,0.0000023118,0.0000023004,0.0000022871, -0.0000022735,0.0000022605,0.0000022485,0.0000022389,0.0000022324, -0.0000022271,0.0000022191,0.0000022071,0.0000021939,0.0000021844, -0.0000021798,0.0000021782,0.0000021763,0.0000021728,0.0000021678, -0.0000021617,0.0000021551,0.0000021490,0.0000021441,0.0000021401, -0.0000021372,0.0000021359,0.0000021365,0.0000021389,0.0000021420, -0.0000021447,0.0000021464,0.0000021472,0.0000021475,0.0000021473, -0.0000021469,0.0000021473,0.0000021489,0.0000021508,0.0000021518, -0.0000021512,0.0000021492,0.0000021468,0.0000021440,0.0000021412, -0.0000021386,0.0000021362,0.0000021341,0.0000021321,0.0000021302, -0.0000021285,0.0000021271,0.0000021257,0.0000021243,0.0000021233, -0.0000021218,0.0000021206,0.0000021179,0.0000021135,0.0000021083, -0.0000021035,0.0000020996,0.0000020962,0.0000020947,0.0000020926, -0.0000020938,0.0000020993,0.0000021091,0.0000021230,0.0000021409, -0.0000021618,0.0000021838,0.0000022043,0.0000022212,0.0000022324, -0.0000022390,0.0000022428,0.0000022404,0.0000022380,0.0000022347, -0.0000022304,0.0000022250,0.0000022195,0.0000022149,0.0000022108, -0.0000022065,0.0000022026,0.0000021998,0.0000021984,0.0000021979, -0.0000021973,0.0000021971,0.0000021967,0.0000021959,0.0000021952, -0.0000021941,0.0000021920,0.0000021888,0.0000021847,0.0000021798, -0.0000021738,0.0000021662,0.0000021572,0.0000021477,0.0000021383, -0.0000021293,0.0000021210,0.0000021135,0.0000021076,0.0000021028, -0.0000020993,0.0000020971,0.0000020961,0.0000020957,0.0000020954, -0.0000020951,0.0000020950,0.0000020948,0.0000020949,0.0000020948, -0.0000020940,0.0000020923,0.0000020900,0.0000020870,0.0000020835, -0.0000020802,0.0000020767,0.0000020735,0.0000020705,0.0000020683, -0.0000020668,0.0000020665,0.0000020681,0.0000020711,0.0000020751, -0.0000020789,0.0000020816,0.0000020818,0.0000020792,0.0000020741, -0.0000020677,0.0000020622,0.0000020581,0.0000020539,0.0000020485, -0.0000020430,0.0000020389,0.0000020374,0.0000020384,0.0000020411, -0.0000020448,0.0000020492,0.0000020539,0.0000020577,0.0000020606, -0.0000020622,0.0000020629,0.0000020628,0.0000020624,0.0000020615, -0.0000020595,0.0000020573,0.0000020553,0.0000020530,0.0000020497, -0.0000020450,0.0000020392,0.0000020324,0.0000020257,0.0000020209, -0.0000020179,0.0000020163,0.0000020155,0.0000020153,0.0000020157, -0.0000020162,0.0000020168,0.0000020173,0.0000020183,0.0000020200, -0.0000020218,0.0000020230,0.0000020229,0.0000020220,0.0000020208, -0.0000020189,0.0000020150,0.0000020085,0.0000020015,0.0000019969, -0.0000019952,0.0000019950,0.0000019934,0.0000019902,0.0000019907, -0.0000020015,0.0000020160,0.0000020254,0.0000020372,0.0000020456, -0.0000020409,0.0000020380,0.0000020409,0.0000020383,0.0000020382, -0.0000020466,0.0000020491,0.0000020405,0.0000020279,0.0000020220, -0.0000020226,0.0000020271,0.0000020319,0.0000020360,0.0000020405, -0.0000020436,0.0000020431,0.0000020413,0.0000020410,0.0000020418, -0.0000020417,0.0000020395,0.0000020356,0.0000020305,0.0000020255, -0.0000020239,0.0000020240,0.0000020258,0.0000020283,0.0000020308, -0.0000020333,0.0000020360,0.0000020382,0.0000020385,0.0000020386, -0.0000020415,0.0000020423,0.0000020345,0.0000020247,0.0000020235, -0.0000020287,0.0000020360,0.0000020421,0.0000020471,0.0000020506, -0.0000020523,0.0000020534,0.0000020537,0.0000020529,0.0000020513, -0.0000020500,0.0000020484,0.0000020459,0.0000020437,0.0000020432, -0.0000020439,0.0000020448,0.0000020452,0.0000020446,0.0000020439, -0.0000020429,0.0000020408,0.0000020387,0.0000020376,0.0000020368, -0.0000020366,0.0000020383,0.0000020418,0.0000020459,0.0000020488, -0.0000020504,0.0000020511,0.0000020507,0.0000020488,0.0000020451, -0.0000020406,0.0000020371,0.0000020351,0.0000020331,0.0000020300, -0.0000020280,0.0000020282,0.0000020311,0.0000020351,0.0000020384, -0.0000020406,0.0000020419,0.0000020423,0.0000020421,0.0000020411, -0.0000020395,0.0000020382,0.0000020370,0.0000020355,0.0000020335, -0.0000020317,0.0000020308,0.0000020308,0.0000020311,0.0000020317, -0.0000020328,0.0000020343,0.0000020353,0.0000020353,0.0000020347, -0.0000020344,0.0000020338,0.0000020328,0.0000020316,0.0000020304, -0.0000020287,0.0000020264,0.0000020244,0.0000020230,0.0000020218, -0.0000020210,0.0000020205,0.0000020203,0.0000020202,0.0000020196, -0.0000020192,0.0000020193,0.0000020198,0.0000020204,0.0000020208, -0.0000020216,0.0000020233,0.0000020261,0.0000020293,0.0000020318, -0.0000020333,0.0000020341,0.0000020341,0.0000020334,0.0000020319, -0.0000020301,0.0000020280,0.0000020255,0.0000020225,0.0000020195, -0.0000020170,0.0000020156,0.0000020157,0.0000020168,0.0000020176, -0.0000020185,0.0000020201,0.0000020224,0.0000020253,0.0000020291, -0.0000020340,0.0000020374,0.0000020374,0.0000020363,0.0000020386, -0.0000020491,0.0000020638,0.0000020755,0.0000020840,0.0000020890, -0.0000020899,0.0000020883,0.0000020812,0.0000020698,0.0000020616, -0.0000020592,0.0000020587,0.0000020609,0.0000020662,0.0000020724, -0.0000020763,0.0000020801,0.0000020823,0.0000020846,0.0000020892, -0.0000021004,0.0000021183,0.0000021381,0.0000021530,0.0000021611, -0.0000021645,0.0000021647,0.0000021640,0.0000021617,0.0000021563, -0.0000021473,0.0000021355,0.0000021234,0.0000021134,0.0000021072, -0.0000021026,0.0000020988,0.0000020966,0.0000020950,0.0000020933, -0.0000020910,0.0000020881,0.0000020849,0.0000020820,0.0000020794, -0.0000020773,0.0000020750,0.0000020726,0.0000020701,0.0000020674, -0.0000020653,0.0000020645,0.0000020653,0.0000020681,0.0000020722, -0.0000020772,0.0000020829,0.0000020890,0.0000020945,0.0000020984, -0.0000021005,0.0000021005,0.0000020980,0.0000020929,0.0000020867, -0.0000020816,0.0000020785,0.0000020764,0.0000020739,0.0000020712, -0.0000020696,0.0000020695,0.0000020702,0.0000020716,0.0000020741, -0.0000020777,0.0000020815,0.0000020847,0.0000020876,0.0000020906, -0.0000020943,0.0000020982,0.0000021021,0.0000021062,0.0000021100, -0.0000021131,0.0000021157,0.0000021184,0.0000021206,0.0000021224, -0.0000021245,0.0000021275,0.0000021301,0.0000021307,0.0000021291, -0.0000021257,0.0000021216,0.0000021173,0.0000021138,0.0000021122, -0.0000021121,0.0000021126,0.0000021136,0.0000021144,0.0000021146, -0.0000021140,0.0000021129,0.0000021124,0.0000021127,0.0000021132, -0.0000021132,0.0000021126,0.0000021115,0.0000021103,0.0000021092, -0.0000021078,0.0000021065,0.0000021056,0.0000021053,0.0000021049, -0.0000021041,0.0000021029,0.0000021019,0.0000021013,0.0000021012, -0.0000021015,0.0000021019,0.0000021019,0.0000021022,0.0000021028, -0.0000021030,0.0000021025,0.0000021016,0.0000021008,0.0000021001, -0.0000020997,0.0000020998,0.0000021006,0.0000021021,0.0000021035, -0.0000021045,0.0000021051,0.0000021054,0.0000021057,0.0000021062, -0.0000021071,0.0000021081,0.0000021092,0.0000021105,0.0000021112, -0.0000021110,0.0000021107,0.0000021111,0.0000021134,0.0000021160, -0.0000021183,0.0000021201,0.0000021206,0.0000021200,0.0000021182, -0.0000021154,0.0000021118,0.0000021089,0.0000021071,0.0000021062, -0.0000021060,0.0000021057,0.0000021054,0.0000021056,0.0000021064, -0.0000021077,0.0000021090,0.0000021104,0.0000021123,0.0000021150, -0.0000021179,0.0000021209,0.0000021233,0.0000021248,0.0000021252, -0.0000021250,0.0000021238,0.0000021225,0.0000021215,0.0000021216, -0.0000021228,0.0000021249,0.0000021270,0.0000021285,0.0000021300, -0.0000021318,0.0000021342,0.0000021367,0.0000021383,0.0000021388, -0.0000021391,0.0000021402,0.0000021423,0.0000021450,0.0000021483, -0.0000021521,0.0000021548,0.0000021555,0.0000021576,0.0000021642, -0.0000021734,0.0000021795,0.0000021793,0.0000021722,0.0000021634, -0.0000021626,0.0000021659,0.0000021641,0.0000021590,0.0000021595, -0.0000021645,0.0000021696,0.0000021745,0.0000021817,0.0000021916, -0.0000022027,0.0000022136,0.0000022222,0.0000022263,0.0000022259, -0.0000022234,0.0000022210,0.0000022198,0.0000022197,0.0000022207, -0.0000022228,0.0000022248,0.0000022262,0.0000022270,0.0000022278, -0.0000022292,0.0000022313,0.0000022339,0.0000022369,0.0000022400, -0.0000022431,0.0000022461,0.0000022496,0.0000022536,0.0000022576, -0.0000022617,0.0000022660,0.0000022705,0.0000022754,0.0000022801, -0.0000022844,0.0000022877,0.0000022900,0.0000022913,0.0000022918, -0.0000022917,0.0000022912,0.0000022905,0.0000022897,0.0000022886, -0.0000022876,0.0000022867,0.0000022858,0.0000022846,0.0000022828, -0.0000022806,0.0000022779,0.0000022749,0.0000022719,0.0000022688, -0.0000022655,0.0000022621,0.0000022587,0.0000022556,0.0000022528, -0.0000022501,0.0000022475,0.0000022446,0.0000022414,0.0000022381, -0.0000022355,0.0000022337,0.0000022327,0.0000022321,0.0000022311, -0.0000022288,0.0000022250,0.0000022200,0.0000022143,0.0000022082, -0.0000022012,0.0000021938,0.0000021872,0.0000021823,0.0000021789, -0.0000021765,0.0000021739,0.0000021702,0.0000021653,0.0000021601, -0.0000021555,0.0000021516,0.0000021485,0.0000021459,0.0000021428, -0.0000021391,0.0000021341,0.0000021285,0.0000021234,0.0000021192, -0.0000021170,0.0000021168,0.0000021176,0.0000021193,0.0000021218, -0.0000021247,0.0000021269,0.0000021280,0.0000021281,0.0000021284, -0.0000021298,0.0000021325,0.0000021356,0.0000021386,0.0000021418, -0.0000021451,0.0000021473,0.0000021483,0.0000021482,0.0000021471, -0.0000021441,0.0000021389,0.0000021333,0.0000021280,0.0000021232, -0.0000021189,0.0000021147,0.0000021128,0.0000021133,0.0000021142, -0.0000021130,0.0000021093,0.0000021034,0.0000020984,0.0000020958, -0.0000020940,0.0000020912,0.0000020883,0.0000020859,0.0000020849, -0.0000020856,0.0000020889,0.0000020923,0.0000020941,0.0000020938, -0.0000020903,0.0000020812,0.0000020743,0.0000020723,0.0000020731, -0.0000020812,0.0000020936,0.0000020977,0.0000020961,0.0000020942, -0.0000020969,0.0000021064,0.0000021151,0.0000021177,0.0000021172, -0.0000021186,0.0000021249,0.0000021313,0.0000021353,0.0000021379, -0.0000021412,0.0000021437,0.0000021457,0.0000021497,0.0000021566, -0.0000021632,0.0000021730,0.0000021803,0.0000021796,0.0000021775, -0.0000021777,0.0000021790,0.0000021872,0.0000021953,0.0000021970, -0.0000021997,0.0000022000,0.0000021901,0.0000021787,0.0000021791, -0.0000021907,0.0000021971,0.0000021948,0.0000021896,0.0000021872, -0.0000021844,0.0000021795,0.0000021759,0.0000021751,0.0000021753, -0.0000021771,0.0000021817,0.0000021864,0.0000021916,0.0000021991, -0.0000022067,0.0000022127,0.0000022173,0.0000022202,0.0000022204, -0.0000022182,0.0000022161,0.0000022152,0.0000022158,0.0000022182, -0.0000022221,0.0000022279,0.0000022340,0.0000022398,0.0000022460, -0.0000022532,0.0000022595,0.0000022640,0.0000022669,0.0000022687, -0.0000022700,0.0000022716,0.0000022732,0.0000022748,0.0000022776, -0.0000022819,0.0000022861,0.0000022890,0.0000022907,0.0000022916, -0.0000022927,0.0000022951,0.0000022993,0.0000023025,0.0000023022, -0.0000022975,0.0000022847,0.0000022688,0.0000022585,0.0000022525, -0.0000022457,0.0000022395,0.0000022366,0.0000022344,0.0000022305, -0.0000022219,0.0000022052,0.0000021969,0.0000022001,0.0000022033, -0.0000022078,0.0000022149,0.0000022223,0.0000022293,0.0000022333, -0.0000022349,0.0000022344,0.0000022323,0.0000022309,0.0000022309, -0.0000022323,0.0000022360,0.0000022409,0.0000022460,0.0000022507, -0.0000022546,0.0000022579,0.0000022596,0.0000022604,0.0000022617, -0.0000022641,0.0000022668,0.0000022694,0.0000022718,0.0000022737, -0.0000022762,0.0000022798,0.0000022834,0.0000022860,0.0000022878, -0.0000022887,0.0000022889,0.0000022889,0.0000022891,0.0000022900, -0.0000022918,0.0000022952,0.0000022991,0.0000023035,0.0000023073, -0.0000023101,0.0000023125,0.0000023139,0.0000023140,0.0000023121, -0.0000023082,0.0000023034,0.0000022996,0.0000022972,0.0000022941, -0.0000022880,0.0000022804,0.0000022738,0.0000022675,0.0000022618, -0.0000022592,0.0000022612,0.0000022664,0.0000022717,0.0000022764, -0.0000022813,0.0000022871,0.0000022915,0.0000022940,0.0000022942, -0.0000022924,0.0000022889,0.0000022848,0.0000022800,0.0000022737, -0.0000022685,0.0000022672,0.0000022676,0.0000022697,0.0000022729, -0.0000022755,0.0000022749,0.0000022703,0.0000022638,0.0000022604, -0.0000022567,0.0000022453,0.0000022324,0.0000022249,0.0000022226, -0.0000022286,0.0000022416,0.0000022447,0.0000022314,0.0000022122, -0.0000022062,0.0000022062,0.0000022066,0.0000022069,0.0000022069, -0.0000022085,0.0000022110,0.0000022131,0.0000022132,0.0000022101, -0.0000022030,0.0000021952,0.0000021872,0.0000021809,0.0000021757, -0.0000021711,0.0000021685,0.0000021680,0.0000021675,0.0000021665, -0.0000021647,0.0000021621,0.0000021594,0.0000021577,0.0000021569, -0.0000021565,0.0000021572,0.0000021591,0.0000021618,0.0000021653, -0.0000021696,0.0000021743,0.0000021783,0.0000021809,0.0000021821, -0.0000021833,0.0000021851,0.0000021881,0.0000021932,0.0000022008, -0.0000022096,0.0000022172,0.0000022217,0.0000022225,0.0000022191, -0.0000022129,0.0000022082,0.0000022068,0.0000022066,0.0000022105, -0.0000022150,0.0000022180,0.0000022185,0.0000022159,0.0000022136, -0.0000022088,0.0000022038,0.0000021984,0.0000021935,0.0000021902, -0.0000021876,0.0000021863,0.0000021872,0.0000021925,0.0000022008, -0.0000022085,0.0000022168,0.0000022241,0.0000022287,0.0000022322, -0.0000022334,0.0000022327,0.0000022305,0.0000022271,0.0000022231, -0.0000022191,0.0000022155,0.0000022119,0.0000022085,0.0000022057, -0.0000022039,0.0000022030,0.0000022023,0.0000022017,0.0000022002, -0.0000021982,0.0000021952,0.0000021917,0.0000021879,0.0000021837, -0.0000021799,0.0000021776,0.0000021769,0.0000021770,0.0000021774, -0.0000021769,0.0000021759,0.0000021749,0.0000021738,0.0000021732, -0.0000021725,0.0000021723,0.0000021722,0.0000021738,0.0000021735, -0.0000021761,0.0000021795,0.0000021838,0.0000021883,0.0000021925, -0.0000021968,0.0000022011,0.0000022043,0.0000022062,0.0000022067, -0.0000022069,0.0000022069,0.0000022065,0.0000022056,0.0000022047, -0.0000022044,0.0000022046,0.0000022050,0.0000022048,0.0000022039, -0.0000022027,0.0000021999,0.0000021975,0.0000021963,0.0000021956, -0.0000021966,0.0000021970,0.0000022007,0.0000022076,0.0000022168, -0.0000022264,0.0000022345,0.0000022409,0.0000022473,0.0000022542, -0.0000022621,0.0000022713,0.0000022806,0.0000022889,0.0000022957, -0.0000023017,0.0000023080,0.0000023149,0.0000023221,0.0000023286, -0.0000023336,0.0000023362,0.0000023365,0.0000023358,0.0000023355, -0.0000023363,0.0000023380,0.0000023405,0.0000023439,0.0000023472, -0.0000023502,0.0000023531,0.0000023565,0.0000023602,0.0000023638, -0.0000023666,0.0000023677,0.0000023676,0.0000023674,0.0000023673, -0.0000023646,0.0000023612,0.0000023576,0.0000023540,0.0000023504, -0.0000023470,0.0000023442,0.0000023420,0.0000023397,0.0000023367, -0.0000023332,0.0000023292,0.0000023249,0.0000023209,0.0000023175, -0.0000023149,0.0000023129,0.0000023115,0.0000023112,0.0000023115, -0.0000023116,0.0000023112,0.0000023106,0.0000023096,0.0000023081, -0.0000023063,0.0000023044,0.0000023026,0.0000023007,0.0000022987, -0.0000022966,0.0000022946,0.0000022927,0.0000022906,0.0000022885, -0.0000022859,0.0000022835,0.0000022805,0.0000022768,0.0000022725, -0.0000022687,0.0000022657,0.0000022630,0.0000022602,0.0000022569, -0.0000022524,0.0000022471,0.0000022426,0.0000022382,0.0000022294, -0.0000022128,0.0000021912,0.0000021707,0.0000021538,0.0000021415, -0.0000021341,0.0000021310,0.0000021290,0.0000021257,0.0000021196, -0.0000021117,0.0000021044,0.0000020999,0.0000020981,0.0000020991, -0.0000021031,0.0000021090,0.0000021143,0.0000021177,0.0000021187, -0.0000021182,0.0000021170,0.0000021162,0.0000021159,0.0000021168, -0.0000021182,0.0000021199,0.0000021208,0.0000021200,0.0000021177, -0.0000021148,0.0000021110,0.0000021068,0.0000021015,0.0000020954, -0.0000020883,0.0000020801,0.0000020706,0.0000020603,0.0000020499, -0.0000020407,0.0000020324,0.0000020255,0.0000020208,0.0000020180, -0.0000020173,0.0000020198,0.0000020269,0.0000020395,0.0000020553, -0.0000020708,0.0000020830,0.0000020904,0.0000020931,0.0000020928, -0.0000020915,0.0000020889,0.0000020856,0.0000020822,0.0000020799, -0.0000020795,0.0000020795,0.0000020796,0.0000020782,0.0000020748, -0.0000020686,0.0000020596,0.0000020490,0.0000020397,0.0000020357, -0.0000020357,0.0000020424,0.0000020540,0.0000020685,0.0000020828, -0.0000020953,0.0000021067,0.0000021215,0.0000021403,0.0000021586, -0.0000021736,0.0000021855,0.0000021942,0.0000021999,0.0000022050, -0.0000022127,0.0000022223,0.0000022286,0.0000022265,0.0000022177, -0.0000022062,0.0000021989,0.0000021966,0.0000021960,0.0000021955, -0.0000021970,0.0000022019,0.0000022082,0.0000022140,0.0000022192, -0.0000022243,0.0000022284,0.0000022313,0.0000022341,0.0000022381, -0.0000022422,0.0000022449,0.0000022464,0.0000022458,0.0000022396, -0.0000022278,0.0000022142,0.0000022053,0.0000022016,0.0000022019, -0.0000022030,0.0000022075,0.0000022197,0.0000022372,0.0000022508, -0.0000022549,0.0000022553,0.0000022607,0.0000022734,0.0000022856, -0.0000022911,0.0000022911,0.0000022892,0.0000022881,0.0000022878, -0.0000022878,0.0000022872,0.0000022854,0.0000022830,0.0000022787, -0.0000022734,0.0000022682,0.0000022637,0.0000022599,0.0000022564, -0.0000022534,0.0000022517,0.0000022516,0.0000022527,0.0000022549, -0.0000022581,0.0000022599,0.0000022566,0.0000022469,0.0000022341, -0.0000022249,0.0000022228,0.0000022250,0.0000022304,0.0000022333, -0.0000022318,0.0000022262,0.0000022248,0.0000022349,0.0000022471, -0.0000022444,0.0000022310,0.0000022274,0.0000022375,0.0000022496, -0.0000022527,0.0000022513,0.0000022473,0.0000022447,0.0000022414, -0.0000022298,0.0000022106,0.0000021928,0.0000021805,0.0000021715, -0.0000021636,0.0000021567,0.0000021512,0.0000021472,0.0000021448, -0.0000021428,0.0000021406,0.0000021384,0.0000021367,0.0000021359, -0.0000021352,0.0000021340,0.0000021329,0.0000021328,0.0000021342, -0.0000021377,0.0000021434,0.0000021516,0.0000021632,0.0000021766, -0.0000021904,0.0000022048,0.0000022190,0.0000022302,0.0000022377, -0.0000022422,0.0000022422,0.0000022388,0.0000022338,0.0000022292, -0.0000022234,0.0000022137,0.0000022000,0.0000021841,0.0000021675, -0.0000021560,0.0000021546,0.0000021674,0.0000021860,0.0000021994, -0.0000022076,0.0000022271,0.0000022474,0.0000022464,0.0000022130, -0.0000021811,0.0000021703,0.0000021689,0.0000021682,0.0000021707, -0.0000021788,0.0000021906,0.0000022019,0.0000022078,0.0000022092, -0.0000022070,0.0000022054,0.0000022069,0.0000022105,0.0000022133, -0.0000022137,0.0000022135,0.0000022143,0.0000022162,0.0000022175, -0.0000022156,0.0000022092,0.0000022024,0.0000021987,0.0000021976, -0.0000021975,0.0000022003,0.0000022098,0.0000022257,0.0000022415, -0.0000022532,0.0000022629,0.0000022723,0.0000022801,0.0000022859, -0.0000022909,0.0000022944,0.0000022961,0.0000022962,0.0000022948, -0.0000022912,0.0000022858,0.0000022793,0.0000022729,0.0000022676, -0.0000022619,0.0000022499,0.0000022302,0.0000022096,0.0000021963, -0.0000021908,0.0000021867,0.0000021790,0.0000021667,0.0000021510, -0.0000021354,0.0000021227,0.0000021129,0.0000021039,0.0000020958, -0.0000020895,0.0000020845,0.0000020807,0.0000020781,0.0000020764, -0.0000020754,0.0000020754,0.0000020752,0.0000020734,0.0000020691, -0.0000020620,0.0000020541,0.0000020466,0.0000020404,0.0000020375, -0.0000020365,0.0000020367,0.0000020381,0.0000020427,0.0000020501, -0.0000020592,0.0000020680,0.0000020755,0.0000020805,0.0000020830, -0.0000020846,0.0000020870,0.0000020910,0.0000020961,0.0000021008, -0.0000021035,0.0000021026,0.0000021004,0.0000020972,0.0000020931, -0.0000020890,0.0000020863,0.0000020852,0.0000020881,0.0000020946, -0.0000021014,0.0000021072,0.0000021128,0.0000021205,0.0000021319, -0.0000021451,0.0000021570,0.0000021643,0.0000021662,0.0000021648, -0.0000021629,0.0000021611,0.0000021572,0.0000021475,0.0000021339, -0.0000021195,0.0000021037,0.0000020867,0.0000020737,0.0000020705, -0.0000020741,0.0000020831,0.0000020920,0.0000020996,0.0000021053, -0.0000021106,0.0000021184,0.0000021302,0.0000021430,0.0000021537, -0.0000021616,0.0000021697,0.0000021815,0.0000021971,0.0000022134, -0.0000022269,0.0000022364,0.0000022432,0.0000022484,0.0000022532, -0.0000022579,0.0000022618,0.0000022639,0.0000022636,0.0000022619, -0.0000022597,0.0000022565,0.0000022530,0.0000022505,0.0000022498, -0.0000022519,0.0000022606,0.0000022767,0.0000022949,0.0000023097, -0.0000023214,0.0000023322,0.0000023454,0.0000023621,0.0000023788, -0.0000023909,0.0000023968,0.0000023992,0.0000024004,0.0000024012, -0.0000024012,0.0000024004,0.0000023990,0.0000023978,0.0000023970, -0.0000023968,0.0000023969,0.0000023972,0.0000023974,0.0000023972, -0.0000023967,0.0000023966,0.0000023961,0.0000023943,0.0000023904, -0.0000023842,0.0000023771,0.0000023700,0.0000023630,0.0000023560, -0.0000023477,0.0000023372,0.0000023260,0.0000023156,0.0000023052, -0.0000022931,0.0000022803,0.0000022679,0.0000022559,0.0000022449, -0.0000022363,0.0000022298,0.0000022228,0.0000022127,0.0000021994, -0.0000021865,0.0000021781,0.0000021744,0.0000021732,0.0000021714, -0.0000021674,0.0000021620,0.0000021562,0.0000021503,0.0000021447, -0.0000021401,0.0000021367,0.0000021345,0.0000021341,0.0000021354, -0.0000021380,0.0000021410,0.0000021435,0.0000021450,0.0000021453, -0.0000021449,0.0000021438,0.0000021429,0.0000021431,0.0000021441, -0.0000021451,0.0000021453,0.0000021445,0.0000021434,0.0000021418, -0.0000021399,0.0000021377,0.0000021354,0.0000021333,0.0000021314, -0.0000021290,0.0000021263,0.0000021237,0.0000021217,0.0000021203, -0.0000021195,0.0000021193,0.0000021196,0.0000021194,0.0000021187, -0.0000021161,0.0000021125,0.0000021083,0.0000021038,0.0000020991, -0.0000020943,0.0000020917,0.0000020895,0.0000020905,0.0000020943, -0.0000021011,0.0000021111,0.0000021246,0.0000021410,0.0000021585, -0.0000021755,0.0000021911,0.0000022046,0.0000022153,0.0000022225, -0.0000022266,0.0000022285,0.0000022273,0.0000022226,0.0000022182, -0.0000022145,0.0000022116,0.0000022094,0.0000022076,0.0000022067, -0.0000022065,0.0000022066,0.0000022066,0.0000022065,0.0000022052, -0.0000022031,0.0000021999,0.0000021954,0.0000021897,0.0000021817, -0.0000021723,0.0000021622,0.0000021519,0.0000021420,0.0000021325, -0.0000021238,0.0000021159,0.0000021090,0.0000021031,0.0000020985, -0.0000020949,0.0000020923,0.0000020909,0.0000020905,0.0000020906, -0.0000020908,0.0000020909,0.0000020910,0.0000020911,0.0000020912, -0.0000020917,0.0000020922,0.0000020921,0.0000020908,0.0000020886, -0.0000020856,0.0000020828,0.0000020796,0.0000020756,0.0000020715, -0.0000020677,0.0000020642,0.0000020613,0.0000020591,0.0000020593, -0.0000020616,0.0000020659,0.0000020706,0.0000020741,0.0000020757, -0.0000020756,0.0000020728,0.0000020677,0.0000020618,0.0000020572, -0.0000020540,0.0000020503,0.0000020448,0.0000020391,0.0000020353, -0.0000020350,0.0000020375,0.0000020420,0.0000020479,0.0000020539, -0.0000020588,0.0000020622,0.0000020644,0.0000020660,0.0000020663, -0.0000020660,0.0000020647,0.0000020625,0.0000020603,0.0000020582, -0.0000020558,0.0000020527,0.0000020487,0.0000020433,0.0000020355, -0.0000020268,0.0000020197,0.0000020150,0.0000020115,0.0000020097, -0.0000020090,0.0000020088,0.0000020090,0.0000020091,0.0000020092, -0.0000020097,0.0000020103,0.0000020113,0.0000020128,0.0000020143, -0.0000020152,0.0000020150,0.0000020138,0.0000020113,0.0000020064, -0.0000019998,0.0000019942,0.0000019907,0.0000019899,0.0000019891, -0.0000019858,0.0000019835,0.0000019920,0.0000020081,0.0000020201, -0.0000020328,0.0000020428,0.0000020388,0.0000020358,0.0000020388, -0.0000020371,0.0000020380,0.0000020470,0.0000020492,0.0000020388, -0.0000020265,0.0000020219,0.0000020232,0.0000020274,0.0000020314, -0.0000020348,0.0000020389,0.0000020414,0.0000020405,0.0000020382, -0.0000020372,0.0000020369,0.0000020358,0.0000020333,0.0000020295, -0.0000020256,0.0000020242,0.0000020246,0.0000020260,0.0000020280, -0.0000020304,0.0000020331,0.0000020354,0.0000020374,0.0000020387, -0.0000020383,0.0000020386,0.0000020407,0.0000020382,0.0000020289, -0.0000020239,0.0000020268,0.0000020336,0.0000020398,0.0000020445, -0.0000020486,0.0000020516,0.0000020535,0.0000020547,0.0000020544, -0.0000020526,0.0000020508,0.0000020487,0.0000020448,0.0000020401, -0.0000020373,0.0000020374,0.0000020383,0.0000020389,0.0000020386, -0.0000020374,0.0000020365,0.0000020356,0.0000020348,0.0000020350, -0.0000020354,0.0000020353,0.0000020356,0.0000020366,0.0000020383, -0.0000020398,0.0000020408,0.0000020413,0.0000020412,0.0000020404, -0.0000020381,0.0000020346,0.0000020315,0.0000020302,0.0000020302, -0.0000020295,0.0000020275,0.0000020267,0.0000020278,0.0000020312, -0.0000020352,0.0000020384,0.0000020398,0.0000020400,0.0000020395, -0.0000020385,0.0000020369,0.0000020349,0.0000020328,0.0000020307, -0.0000020283,0.0000020263,0.0000020256,0.0000020258,0.0000020264, -0.0000020272,0.0000020285,0.0000020303,0.0000020322,0.0000020334, -0.0000020339,0.0000020344,0.0000020349,0.0000020349,0.0000020342, -0.0000020331,0.0000020317,0.0000020299,0.0000020280,0.0000020259, -0.0000020240,0.0000020218,0.0000020202,0.0000020197,0.0000020198, -0.0000020201,0.0000020204,0.0000020206,0.0000020208,0.0000020214, -0.0000020220,0.0000020225,0.0000020229,0.0000020236,0.0000020253, -0.0000020279,0.0000020309,0.0000020334,0.0000020345,0.0000020345, -0.0000020336,0.0000020318,0.0000020295,0.0000020270,0.0000020243, -0.0000020214,0.0000020182,0.0000020155,0.0000020140,0.0000020142, -0.0000020152,0.0000020162,0.0000020175,0.0000020195,0.0000020219, -0.0000020246,0.0000020271,0.0000020301,0.0000020340,0.0000020371, -0.0000020374,0.0000020364,0.0000020379,0.0000020470,0.0000020612, -0.0000020728,0.0000020815,0.0000020875,0.0000020891,0.0000020887, -0.0000020847,0.0000020748,0.0000020632,0.0000020571,0.0000020554, -0.0000020572,0.0000020634,0.0000020716,0.0000020783,0.0000020776, -0.0000020837,0.0000020861,0.0000020867,0.0000020896,0.0000020987, -0.0000021149,0.0000021337,0.0000021482,0.0000021568,0.0000021614, -0.0000021627,0.0000021624,0.0000021596,0.0000021525,0.0000021414, -0.0000021283,0.0000021163,0.0000021070,0.0000021005,0.0000020968, -0.0000020947,0.0000020928,0.0000020906,0.0000020876,0.0000020837, -0.0000020791,0.0000020750,0.0000020712,0.0000020679,0.0000020649, -0.0000020624,0.0000020607,0.0000020601,0.0000020605,0.0000020619, -0.0000020646,0.0000020686,0.0000020735,0.0000020791,0.0000020851, -0.0000020911,0.0000020959,0.0000020988,0.0000020993,0.0000020980, -0.0000020941,0.0000020881,0.0000020819,0.0000020774,0.0000020745, -0.0000020720,0.0000020694,0.0000020679,0.0000020679,0.0000020689, -0.0000020705,0.0000020731,0.0000020765,0.0000020801,0.0000020830, -0.0000020852,0.0000020877,0.0000020911,0.0000020956,0.0000021006, -0.0000021057,0.0000021108,0.0000021151,0.0000021178,0.0000021190, -0.0000021195,0.0000021196,0.0000021199,0.0000021213,0.0000021244, -0.0000021279,0.0000021297,0.0000021293,0.0000021267,0.0000021224, -0.0000021179,0.0000021142,0.0000021121,0.0000021117,0.0000021125, -0.0000021140,0.0000021155,0.0000021161,0.0000021154,0.0000021143, -0.0000021140,0.0000021141,0.0000021141,0.0000021136,0.0000021124, -0.0000021108,0.0000021095,0.0000021080,0.0000021065,0.0000021053, -0.0000021047,0.0000021041,0.0000021030,0.0000021016,0.0000021005, -0.0000021001,0.0000021000,0.0000021005,0.0000021013,0.0000021020, -0.0000021027,0.0000021035,0.0000021042,0.0000021041,0.0000021031, -0.0000021017,0.0000021004,0.0000020992,0.0000020983,0.0000020984, -0.0000020991,0.0000021002,0.0000021011,0.0000021014,0.0000021016, -0.0000021018,0.0000021020,0.0000021023,0.0000021030,0.0000021041, -0.0000021053,0.0000021063,0.0000021068,0.0000021076,0.0000021092, -0.0000021119,0.0000021149,0.0000021180,0.0000021209,0.0000021234, -0.0000021248,0.0000021255,0.0000021247,0.0000021224,0.0000021192, -0.0000021161,0.0000021136,0.0000021118,0.0000021105,0.0000021093, -0.0000021086,0.0000021090,0.0000021102,0.0000021116,0.0000021126, -0.0000021135,0.0000021149,0.0000021170,0.0000021195,0.0000021221, -0.0000021243,0.0000021255,0.0000021256,0.0000021244,0.0000021219, -0.0000021192,0.0000021170,0.0000021167,0.0000021187,0.0000021222, -0.0000021258,0.0000021288,0.0000021312,0.0000021333,0.0000021354, -0.0000021371,0.0000021381,0.0000021385,0.0000021387,0.0000021390, -0.0000021398,0.0000021412,0.0000021426,0.0000021451,0.0000021494, -0.0000021536,0.0000021563,0.0000021606,0.0000021691,0.0000021776, -0.0000021805,0.0000021779,0.0000021690,0.0000021622,0.0000021632, -0.0000021657,0.0000021626,0.0000021597,0.0000021622,0.0000021677, -0.0000021718,0.0000021751,0.0000021798,0.0000021868,0.0000021963, -0.0000022069,0.0000022156,0.0000022199,0.0000022205,0.0000022201, -0.0000022196,0.0000022197,0.0000022204,0.0000022220,0.0000022237, -0.0000022248,0.0000022250,0.0000022250,0.0000022250,0.0000022254, -0.0000022266,0.0000022284,0.0000022306,0.0000022329,0.0000022354, -0.0000022383,0.0000022419,0.0000022456,0.0000022492,0.0000022529, -0.0000022569,0.0000022613,0.0000022657,0.0000022699,0.0000022734, -0.0000022762,0.0000022783,0.0000022797,0.0000022803,0.0000022802, -0.0000022796,0.0000022786,0.0000022770,0.0000022751,0.0000022734, -0.0000022718,0.0000022698,0.0000022673,0.0000022646,0.0000022616, -0.0000022584,0.0000022552,0.0000022519,0.0000022481,0.0000022442, -0.0000022406,0.0000022376,0.0000022351,0.0000022334,0.0000022322, -0.0000022312,0.0000022299,0.0000022287,0.0000022278,0.0000022269, -0.0000022258,0.0000022240,0.0000022211,0.0000022166,0.0000022108, -0.0000022042,0.0000021973,0.0000021902,0.0000021828,0.0000021762, -0.0000021716,0.0000021693,0.0000021678,0.0000021661,0.0000021637, -0.0000021601,0.0000021551,0.0000021502,0.0000021471,0.0000021462, -0.0000021459,0.0000021451,0.0000021428,0.0000021395,0.0000021348, -0.0000021292,0.0000021239,0.0000021198,0.0000021168,0.0000021148, -0.0000021135,0.0000021134,0.0000021143,0.0000021168,0.0000021195, -0.0000021209,0.0000021215,0.0000021223,0.0000021239,0.0000021267, -0.0000021300,0.0000021329,0.0000021355,0.0000021384,0.0000021409, -0.0000021425,0.0000021433,0.0000021433,0.0000021416,0.0000021373, -0.0000021316,0.0000021256,0.0000021203,0.0000021158,0.0000021125, -0.0000021114,0.0000021121,0.0000021126,0.0000021117,0.0000021089, -0.0000021037,0.0000020985,0.0000020954,0.0000020928,0.0000020897, -0.0000020863,0.0000020825,0.0000020798,0.0000020801,0.0000020838, -0.0000020888,0.0000020913,0.0000020913,0.0000020890,0.0000020807, -0.0000020726,0.0000020698,0.0000020694,0.0000020767,0.0000020900, -0.0000020940,0.0000020922,0.0000020906,0.0000020941,0.0000021039, -0.0000021125,0.0000021147,0.0000021130,0.0000021127,0.0000021182, -0.0000021256,0.0000021301,0.0000021335,0.0000021374,0.0000021400, -0.0000021429,0.0000021493,0.0000021556,0.0000021617,0.0000021717, -0.0000021776,0.0000021761,0.0000021749,0.0000021753,0.0000021801, -0.0000021910,0.0000021962,0.0000022002,0.0000022016,0.0000021941, -0.0000021816,0.0000021801,0.0000021903,0.0000021974,0.0000021952, -0.0000021880,0.0000021838,0.0000021794,0.0000021753,0.0000021746, -0.0000021756,0.0000021761,0.0000021795,0.0000021850,0.0000021907, -0.0000021971,0.0000022038,0.0000022089,0.0000022119,0.0000022141, -0.0000022172,0.0000022194,0.0000022197,0.0000022188,0.0000022187, -0.0000022194,0.0000022216,0.0000022255,0.0000022310,0.0000022379, -0.0000022448,0.0000022508,0.0000022568,0.0000022634,0.0000022695, -0.0000022740,0.0000022768,0.0000022785,0.0000022799,0.0000022815, -0.0000022838,0.0000022864,0.0000022888,0.0000022911,0.0000022921, -0.0000022918,0.0000022919,0.0000022928,0.0000022958,0.0000023001, -0.0000023034,0.0000023027,0.0000022943,0.0000022799,0.0000022656, -0.0000022581,0.0000022548,0.0000022490,0.0000022416,0.0000022372, -0.0000022354,0.0000022327,0.0000022275,0.0000022145,0.0000022006, -0.0000021995,0.0000022029,0.0000022042,0.0000022068,0.0000022122, -0.0000022192,0.0000022270,0.0000022314,0.0000022331,0.0000022319, -0.0000022297,0.0000022285,0.0000022284,0.0000022288,0.0000022309, -0.0000022347,0.0000022393,0.0000022437,0.0000022475,0.0000022509, -0.0000022527,0.0000022531,0.0000022536,0.0000022555,0.0000022586, -0.0000022619,0.0000022647,0.0000022669,0.0000022693,0.0000022721, -0.0000022750,0.0000022773,0.0000022797,0.0000022808,0.0000022808, -0.0000022807,0.0000022810,0.0000022820,0.0000022841,0.0000022876, -0.0000022917,0.0000022962,0.0000023009,0.0000023048,0.0000023079, -0.0000023098,0.0000023100,0.0000023082,0.0000023041,0.0000023002, -0.0000022973,0.0000022952,0.0000022911,0.0000022844,0.0000022778, -0.0000022710,0.0000022629,0.0000022567,0.0000022550,0.0000022581, -0.0000022634,0.0000022689,0.0000022741,0.0000022795,0.0000022853, -0.0000022897,0.0000022917,0.0000022921,0.0000022908,0.0000022879, -0.0000022842,0.0000022794,0.0000022737,0.0000022693,0.0000022682, -0.0000022690,0.0000022700,0.0000022709,0.0000022707,0.0000022678, -0.0000022626,0.0000022584,0.0000022564,0.0000022522,0.0000022416, -0.0000022303,0.0000022234,0.0000022206,0.0000022239,0.0000022362, -0.0000022446,0.0000022400,0.0000022211,0.0000022068,0.0000022039, -0.0000022039,0.0000022042,0.0000022047,0.0000022056,0.0000022071, -0.0000022076,0.0000022071,0.0000022055,0.0000022021,0.0000021964, -0.0000021903,0.0000021854,0.0000021815,0.0000021780,0.0000021755, -0.0000021747,0.0000021744,0.0000021733,0.0000021713,0.0000021686, -0.0000021653,0.0000021626,0.0000021615,0.0000021609,0.0000021610, -0.0000021616,0.0000021623,0.0000021631,0.0000021642,0.0000021662, -0.0000021687,0.0000021710,0.0000021724,0.0000021738,0.0000021767, -0.0000021803,0.0000021844,0.0000021893,0.0000021950,0.0000022022, -0.0000022101,0.0000022170,0.0000022217,0.0000022229,0.0000022203, -0.0000022155,0.0000022097,0.0000022049,0.0000022037,0.0000022062, -0.0000022092,0.0000022118,0.0000022129,0.0000022120,0.0000022102, -0.0000022074,0.0000022074,0.0000022057,0.0000022030,0.0000022000, -0.0000021958,0.0000021920,0.0000021910,0.0000021907,0.0000021914, -0.0000021942,0.0000021974,0.0000022014,0.0000022037,0.0000022053, -0.0000022058,0.0000022049,0.0000022028,0.0000022008,0.0000021990, -0.0000021970,0.0000021964,0.0000021973,0.0000021987,0.0000022007, -0.0000022032,0.0000022054,0.0000022065,0.0000022059,0.0000022044, -0.0000022015,0.0000021967,0.0000021899,0.0000021847,0.0000021794, -0.0000021759,0.0000021743,0.0000021746,0.0000021758,0.0000021768, -0.0000021785,0.0000021786,0.0000021799,0.0000021801,0.0000021798, -0.0000021791,0.0000021783,0.0000021767,0.0000021751,0.0000021746, -0.0000021747,0.0000021773,0.0000021795,0.0000021825,0.0000021863, -0.0000021898,0.0000021923,0.0000021938,0.0000021940,0.0000021937, -0.0000021934,0.0000021930,0.0000021921,0.0000021909,0.0000021903, -0.0000021909,0.0000021928,0.0000021957,0.0000021985,0.0000022006, -0.0000022011,0.0000022003,0.0000021999,0.0000021985,0.0000021972, -0.0000021963,0.0000021957,0.0000021945,0.0000021956,0.0000022002, -0.0000022078,0.0000022173,0.0000022270,0.0000022351,0.0000022415, -0.0000022477,0.0000022546,0.0000022624,0.0000022711,0.0000022805, -0.0000022902,0.0000022995,0.0000023077,0.0000023145,0.0000023201, -0.0000023244,0.0000023269,0.0000023279,0.0000023284,0.0000023293, -0.0000023308,0.0000023330,0.0000023355,0.0000023379,0.0000023400, -0.0000023425,0.0000023454,0.0000023489,0.0000023532,0.0000023575, -0.0000023612,0.0000023639,0.0000023658,0.0000023671,0.0000023674, -0.0000023667,0.0000023652,0.0000023638,0.0000023619,0.0000023599, -0.0000023575,0.0000023550,0.0000023526,0.0000023501,0.0000023472, -0.0000023440,0.0000023406,0.0000023372,0.0000023341,0.0000023312, -0.0000023286,0.0000023263,0.0000023248,0.0000023242,0.0000023234, -0.0000023222,0.0000023206,0.0000023188,0.0000023167,0.0000023140, -0.0000023108,0.0000023075,0.0000023044,0.0000023014,0.0000022987, -0.0000022961,0.0000022933,0.0000022907,0.0000022879,0.0000022843, -0.0000022803,0.0000022765,0.0000022725,0.0000022685,0.0000022650, -0.0000022619,0.0000022589,0.0000022555,0.0000022516,0.0000022477, -0.0000022445,0.0000022418,0.0000022367,0.0000022247,0.0000022055, -0.0000021838,0.0000021649,0.0000021508,0.0000021420,0.0000021374, -0.0000021358,0.0000021341,0.0000021296,0.0000021214,0.0000021124, -0.0000021061,0.0000021037,0.0000021039,0.0000021064,0.0000021107, -0.0000021160,0.0000021203,0.0000021223,0.0000021220,0.0000021206, -0.0000021188,0.0000021174,0.0000021166,0.0000021166,0.0000021178, -0.0000021193,0.0000021195,0.0000021182,0.0000021154,0.0000021114, -0.0000021064,0.0000021008,0.0000020945,0.0000020877,0.0000020802, -0.0000020723,0.0000020639,0.0000020549,0.0000020462,0.0000020376, -0.0000020297,0.0000020223,0.0000020159,0.0000020117,0.0000020092, -0.0000020086,0.0000020099,0.0000020151,0.0000020254,0.0000020403, -0.0000020578,0.0000020740,0.0000020851,0.0000020902,0.0000020913, -0.0000020906,0.0000020890,0.0000020861,0.0000020825,0.0000020801, -0.0000020793,0.0000020799,0.0000020805,0.0000020800,0.0000020775, -0.0000020725,0.0000020645,0.0000020537,0.0000020426,0.0000020349, -0.0000020338,0.0000020387,0.0000020500,0.0000020644,0.0000020789, -0.0000020912,0.0000021016,0.0000021136,0.0000021293,0.0000021477, -0.0000021657,0.0000021805,0.0000021909,0.0000021983,0.0000022039, -0.0000022107,0.0000022194,0.0000022261,0.0000022278,0.0000022205, -0.0000022091,0.0000021991,0.0000021952,0.0000021935,0.0000021933, -0.0000021944,0.0000021972,0.0000022006,0.0000022043,0.0000022090, -0.0000022144,0.0000022192,0.0000022233,0.0000022281,0.0000022339, -0.0000022393,0.0000022429,0.0000022451,0.0000022448,0.0000022422, -0.0000022322,0.0000022173,0.0000022037,0.0000021974,0.0000021966, -0.0000021976,0.0000021996,0.0000022067,0.0000022211,0.0000022371, -0.0000022477,0.0000022511,0.0000022544,0.0000022632,0.0000022749, -0.0000022832,0.0000022856,0.0000022848,0.0000022836,0.0000022832, -0.0000022831,0.0000022832,0.0000022833,0.0000022819,0.0000022789, -0.0000022744,0.0000022695,0.0000022653,0.0000022614,0.0000022582, -0.0000022562,0.0000022560,0.0000022573,0.0000022601,0.0000022638, -0.0000022661,0.0000022633,0.0000022528,0.0000022382,0.0000022258, -0.0000022207,0.0000022210,0.0000022256,0.0000022303,0.0000022302, -0.0000022251,0.0000022205,0.0000022260,0.0000022404,0.0000022425, -0.0000022310,0.0000022253,0.0000022340,0.0000022468,0.0000022506, -0.0000022494,0.0000022458,0.0000022430,0.0000022393,0.0000022281, -0.0000022089,0.0000021903,0.0000021783,0.0000021702,0.0000021631, -0.0000021566,0.0000021511,0.0000021462,0.0000021420,0.0000021393, -0.0000021377,0.0000021363,0.0000021347,0.0000021333,0.0000021319, -0.0000021311,0.0000021305,0.0000021302,0.0000021304,0.0000021317, -0.0000021345,0.0000021388,0.0000021450,0.0000021537,0.0000021647, -0.0000021771,0.0000021909,0.0000022061,0.0000022202,0.0000022306, -0.0000022371,0.0000022402,0.0000022390,0.0000022351,0.0000022305, -0.0000022268,0.0000022217,0.0000022127,0.0000021996,0.0000021838, -0.0000021673,0.0000021558,0.0000021545,0.0000021670,0.0000021854, -0.0000021992,0.0000022095,0.0000022301,0.0000022477,0.0000022417, -0.0000022067,0.0000021779,0.0000021703,0.0000021711,0.0000021724, -0.0000021760,0.0000021852,0.0000021977,0.0000022086,0.0000022127, -0.0000022123,0.0000022097,0.0000022091,0.0000022113,0.0000022137, -0.0000022141,0.0000022138,0.0000022143,0.0000022165,0.0000022198, -0.0000022218,0.0000022202,0.0000022144,0.0000022077,0.0000022039, -0.0000022032,0.0000022037,0.0000022083,0.0000022189,0.0000022346, -0.0000022487,0.0000022591,0.0000022685,0.0000022771,0.0000022843, -0.0000022901,0.0000022940,0.0000022956,0.0000022952,0.0000022925, -0.0000022876,0.0000022815,0.0000022748,0.0000022689,0.0000022649, -0.0000022607,0.0000022526,0.0000022355,0.0000022141,0.0000021977, -0.0000021903,0.0000021872,0.0000021824,0.0000021729,0.0000021590, -0.0000021429,0.0000021282,0.0000021169,0.0000021083,0.0000021012, -0.0000020955,0.0000020914,0.0000020884,0.0000020860,0.0000020837, -0.0000020815,0.0000020801,0.0000020798,0.0000020792,0.0000020769, -0.0000020717,0.0000020643,0.0000020556,0.0000020471,0.0000020413, -0.0000020382,0.0000020371,0.0000020376,0.0000020388,0.0000020418, -0.0000020473,0.0000020549,0.0000020631,0.0000020707,0.0000020763, -0.0000020798,0.0000020821,0.0000020845,0.0000020877,0.0000020921, -0.0000020966,0.0000020996,0.0000021001,0.0000020987,0.0000020954, -0.0000020915,0.0000020873,0.0000020837,0.0000020821,0.0000020839, -0.0000020893,0.0000020958,0.0000021016,0.0000021072,0.0000021146, -0.0000021250,0.0000021375,0.0000021494,0.0000021574,0.0000021601, -0.0000021587,0.0000021566,0.0000021549,0.0000021507,0.0000021414, -0.0000021289,0.0000021154,0.0000021002,0.0000020832,0.0000020702, -0.0000020648,0.0000020683,0.0000020762,0.0000020863,0.0000020955, -0.0000021021,0.0000021078,0.0000021161,0.0000021273,0.0000021392, -0.0000021491,0.0000021566,0.0000021641,0.0000021747,0.0000021893, -0.0000022055,0.0000022194,0.0000022292,0.0000022355,0.0000022397, -0.0000022436,0.0000022483,0.0000022534,0.0000022570,0.0000022577, -0.0000022565,0.0000022541,0.0000022503,0.0000022455,0.0000022420, -0.0000022405,0.0000022423,0.0000022512,0.0000022682,0.0000022877, -0.0000023037,0.0000023147,0.0000023234,0.0000023346,0.0000023498, -0.0000023658,0.0000023781,0.0000023852,0.0000023889,0.0000023915, -0.0000023936,0.0000023952,0.0000023957,0.0000023955,0.0000023951, -0.0000023946,0.0000023945,0.0000023948,0.0000023952,0.0000023954, -0.0000023952,0.0000023949,0.0000023944,0.0000023929,0.0000023896, -0.0000023838,0.0000023768,0.0000023704,0.0000023643,0.0000023577, -0.0000023496,0.0000023396,0.0000023289,0.0000023192,0.0000023095, -0.0000022976,0.0000022843,0.0000022721,0.0000022609,0.0000022499, -0.0000022401,0.0000022321,0.0000022248,0.0000022159,0.0000022044, -0.0000021909,0.0000021793,0.0000021726,0.0000021704,0.0000021695, -0.0000021668,0.0000021622,0.0000021567,0.0000021511,0.0000021458, -0.0000021411,0.0000021375,0.0000021351,0.0000021338,0.0000021337, -0.0000021348,0.0000021368,0.0000021392,0.0000021411,0.0000021421, -0.0000021421,0.0000021414,0.0000021404,0.0000021397,0.0000021395, -0.0000021396,0.0000021395,0.0000021386,0.0000021380,0.0000021373, -0.0000021365,0.0000021352,0.0000021335,0.0000021321,0.0000021308, -0.0000021290,0.0000021264,0.0000021234,0.0000021206,0.0000021184, -0.0000021169,0.0000021156,0.0000021152,0.0000021159,0.0000021168, -0.0000021170,0.0000021156,0.0000021140,0.0000021112,0.0000021073, -0.0000021021,0.0000020964,0.0000020916,0.0000020890,0.0000020877, -0.0000020875,0.0000020890,0.0000020932,0.0000021003,0.0000021095, -0.0000021203,0.0000021325,0.0000021454,0.0000021583,0.0000021706, -0.0000021814,0.0000021904,0.0000021973,0.0000022018,0.0000022039, -0.0000022051,0.0000022061,0.0000022069,0.0000022070,0.0000022069, -0.0000022066,0.0000022060,0.0000022050,0.0000022037,0.0000022017, -0.0000021979,0.0000021925,0.0000021856,0.0000021772,0.0000021673, -0.0000021563,0.0000021450,0.0000021342,0.0000021246,0.0000021166, -0.0000021100,0.0000021048,0.0000021005,0.0000020969,0.0000020939, -0.0000020912,0.0000020889,0.0000020876,0.0000020871,0.0000020873, -0.0000020878,0.0000020881,0.0000020882,0.0000020883,0.0000020885, -0.0000020888,0.0000020893,0.0000020898,0.0000020899,0.0000020892, -0.0000020873,0.0000020851,0.0000020833,0.0000020809,0.0000020770, -0.0000020725,0.0000020680,0.0000020634,0.0000020591,0.0000020560, -0.0000020546,0.0000020553,0.0000020585,0.0000020624,0.0000020661, -0.0000020687,0.0000020699,0.0000020692,0.0000020663,0.0000020619, -0.0000020574,0.0000020540,0.0000020509,0.0000020467,0.0000020413, -0.0000020366,0.0000020345,0.0000020348,0.0000020384,0.0000020443, -0.0000020510,0.0000020568,0.0000020616,0.0000020652,0.0000020675, -0.0000020688,0.0000020686,0.0000020672,0.0000020651,0.0000020626, -0.0000020601,0.0000020575,0.0000020550,0.0000020521,0.0000020476, -0.0000020401,0.0000020308,0.0000020215,0.0000020141,0.0000020090, -0.0000020058,0.0000020042,0.0000020032,0.0000020029,0.0000020027, -0.0000020029,0.0000020030,0.0000020026,0.0000020022,0.0000020031, -0.0000020056,0.0000020082,0.0000020092,0.0000020088,0.0000020073, -0.0000020041,0.0000019985,0.0000019924,0.0000019873,0.0000019854, -0.0000019849,0.0000019820,0.0000019787,0.0000019841,0.0000020007, -0.0000020149,0.0000020282,0.0000020393,0.0000020367,0.0000020335, -0.0000020369,0.0000020364,0.0000020383,0.0000020473,0.0000020489, -0.0000020379,0.0000020260,0.0000020222,0.0000020237,0.0000020275, -0.0000020307,0.0000020335,0.0000020366,0.0000020384,0.0000020379, -0.0000020365,0.0000020354,0.0000020344,0.0000020326,0.0000020298, -0.0000020265,0.0000020246,0.0000020247,0.0000020263,0.0000020282, -0.0000020303,0.0000020330,0.0000020352,0.0000020366,0.0000020379, -0.0000020388,0.0000020379,0.0000020379,0.0000020379,0.0000020327, -0.0000020255,0.0000020251,0.0000020310,0.0000020376,0.0000020425, -0.0000020464,0.0000020501,0.0000020532,0.0000020553,0.0000020556, -0.0000020542,0.0000020517,0.0000020485,0.0000020439,0.0000020381, -0.0000020335,0.0000020326,0.0000020337,0.0000020346,0.0000020347, -0.0000020336,0.0000020318,0.0000020297,0.0000020283,0.0000020285, -0.0000020303,0.0000020319,0.0000020328,0.0000020337,0.0000020344, -0.0000020344,0.0000020337,0.0000020330,0.0000020323,0.0000020313, -0.0000020299,0.0000020278,0.0000020255,0.0000020244,0.0000020247, -0.0000020257,0.0000020258,0.0000020248,0.0000020246,0.0000020259, -0.0000020289,0.0000020328,0.0000020360,0.0000020375,0.0000020378, -0.0000020371,0.0000020356,0.0000020336,0.0000020311,0.0000020283, -0.0000020258,0.0000020236,0.0000020219,0.0000020213,0.0000020213, -0.0000020214,0.0000020221,0.0000020237,0.0000020260,0.0000020279, -0.0000020292,0.0000020302,0.0000020315,0.0000020330,0.0000020339, -0.0000020339,0.0000020329,0.0000020311,0.0000020292,0.0000020276, -0.0000020259,0.0000020238,0.0000020218,0.0000020198,0.0000020186, -0.0000020184,0.0000020185,0.0000020187,0.0000020194,0.0000020204, -0.0000020214,0.0000020222,0.0000020224,0.0000020226,0.0000020233, -0.0000020245,0.0000020259,0.0000020279,0.0000020306,0.0000020330, -0.0000020339,0.0000020336,0.0000020320,0.0000020294,0.0000020266, -0.0000020236,0.0000020205,0.0000020175,0.0000020149,0.0000020130, -0.0000020129,0.0000020136,0.0000020147,0.0000020160,0.0000020175, -0.0000020193,0.0000020219,0.0000020248,0.0000020274,0.0000020299, -0.0000020331,0.0000020357,0.0000020362,0.0000020355,0.0000020366, -0.0000020447,0.0000020582,0.0000020702,0.0000020792,0.0000020856, -0.0000020879,0.0000020877,0.0000020860,0.0000020791,0.0000020670, -0.0000020563,0.0000020542,0.0000020559,0.0000020618,0.0000020695, -0.0000020683,0.0000020752,0.0000020809,0.0000020854,0.0000020870, -0.0000020872,0.0000020900,0.0000020986,0.0000021127,0.0000021292, -0.0000021432,0.0000021522,0.0000021571,0.0000021590,0.0000021578, -0.0000021539,0.0000021450,0.0000021330,0.0000021206,0.0000021097, -0.0000021014,0.0000020963,0.0000020937,0.0000020921,0.0000020901, -0.0000020868,0.0000020824,0.0000020773,0.0000020724,0.0000020679, -0.0000020640,0.0000020613,0.0000020597,0.0000020593,0.0000020600, -0.0000020613,0.0000020631,0.0000020663,0.0000020706,0.0000020759, -0.0000020818,0.0000020879,0.0000020934,0.0000020970,0.0000020981, -0.0000020975,0.0000020945,0.0000020893,0.0000020831,0.0000020781, -0.0000020743,0.0000020713,0.0000020687,0.0000020672,0.0000020671, -0.0000020682,0.0000020703,0.0000020730,0.0000020764,0.0000020795, -0.0000020817,0.0000020833,0.0000020850,0.0000020879,0.0000020923, -0.0000020977,0.0000021037,0.0000021099,0.0000021153,0.0000021189, -0.0000021202,0.0000021198,0.0000021187,0.0000021175,0.0000021170, -0.0000021183,0.0000021220,0.0000021264,0.0000021290,0.0000021289, -0.0000021269,0.0000021236,0.0000021196,0.0000021159,0.0000021137, -0.0000021130,0.0000021132,0.0000021143,0.0000021157,0.0000021162, -0.0000021160,0.0000021158,0.0000021163,0.0000021168,0.0000021165, -0.0000021154,0.0000021135,0.0000021114,0.0000021097,0.0000021082, -0.0000021069,0.0000021060,0.0000021051,0.0000021040,0.0000021026, -0.0000021013,0.0000021003,0.0000020997,0.0000020995,0.0000021000, -0.0000021006,0.0000021015,0.0000021026,0.0000021032,0.0000021032, -0.0000021022,0.0000021005,0.0000020987,0.0000020968,0.0000020949, -0.0000020938,0.0000020936,0.0000020942,0.0000020948,0.0000020948, -0.0000020948,0.0000020952,0.0000020955,0.0000020956,0.0000020960, -0.0000020971,0.0000020985,0.0000020998,0.0000021009,0.0000021021, -0.0000021041,0.0000021073,0.0000021110,0.0000021147,0.0000021183, -0.0000021221,0.0000021262,0.0000021291,0.0000021301,0.0000021298, -0.0000021282,0.0000021257,0.0000021231,0.0000021204,0.0000021179, -0.0000021153,0.0000021132,0.0000021121,0.0000021123,0.0000021134, -0.0000021149,0.0000021162,0.0000021172,0.0000021182,0.0000021195, -0.0000021213,0.0000021234,0.0000021253,0.0000021260,0.0000021255, -0.0000021235,0.0000021207,0.0000021176,0.0000021152,0.0000021146, -0.0000021157,0.0000021188,0.0000021229,0.0000021270,0.0000021307, -0.0000021338,0.0000021361,0.0000021375,0.0000021383,0.0000021387, -0.0000021388,0.0000021386,0.0000021385,0.0000021386,0.0000021388, -0.0000021396,0.0000021433,0.0000021498,0.0000021556,0.0000021592, -0.0000021650,0.0000021742,0.0000021806,0.0000021812,0.0000021758, -0.0000021653,0.0000021608,0.0000021645,0.0000021659,0.0000021626, -0.0000021618,0.0000021659,0.0000021704,0.0000021731,0.0000021753, -0.0000021786,0.0000021838,0.0000021911,0.0000021990,0.0000022052, -0.0000022089,0.0000022110,0.0000022128,0.0000022147,0.0000022165, -0.0000022189,0.0000022216,0.0000022237,0.0000022246,0.0000022248, -0.0000022247,0.0000022246,0.0000022250,0.0000022261,0.0000022275, -0.0000022291,0.0000022308,0.0000022327,0.0000022354,0.0000022384, -0.0000022416,0.0000022448,0.0000022482,0.0000022519,0.0000022560, -0.0000022599,0.0000022632,0.0000022658,0.0000022677,0.0000022688, -0.0000022693,0.0000022693,0.0000022689,0.0000022681,0.0000022668, -0.0000022650,0.0000022630,0.0000022608,0.0000022583,0.0000022553, -0.0000022519,0.0000022483,0.0000022445,0.0000022408,0.0000022372, -0.0000022335,0.0000022300,0.0000022270,0.0000022246,0.0000022229, -0.0000022222,0.0000022223,0.0000022227,0.0000022229,0.0000022229, -0.0000022226,0.0000022214,0.0000022193,0.0000022159,0.0000022112, -0.0000022057,0.0000021993,0.0000021924,0.0000021849,0.0000021774, -0.0000021703,0.0000021649,0.0000021619,0.0000021604,0.0000021585, -0.0000021557,0.0000021524,0.0000021489,0.0000021448,0.0000021410, -0.0000021395,0.0000021400,0.0000021413,0.0000021418,0.0000021411, -0.0000021390,0.0000021356,0.0000021313,0.0000021271,0.0000021233, -0.0000021189,0.0000021143,0.0000021106,0.0000021082,0.0000021079, -0.0000021096,0.0000021118,0.0000021135,0.0000021151,0.0000021168, -0.0000021193,0.0000021227,0.0000021265,0.0000021293,0.0000021313, -0.0000021333,0.0000021358,0.0000021378,0.0000021391,0.0000021396, -0.0000021388,0.0000021356,0.0000021302,0.0000021240,0.0000021184, -0.0000021142,0.0000021119,0.0000021113,0.0000021115,0.0000021119, -0.0000021113,0.0000021091,0.0000021048,0.0000021006,0.0000020970, -0.0000020938,0.0000020908,0.0000020877,0.0000020826,0.0000020782, -0.0000020772,0.0000020799,0.0000020858,0.0000020891,0.0000020893, -0.0000020874,0.0000020792,0.0000020707,0.0000020672,0.0000020660, -0.0000020723,0.0000020860,0.0000020897,0.0000020878,0.0000020869, -0.0000020911,0.0000021010,0.0000021088,0.0000021107,0.0000021087, -0.0000021079,0.0000021124,0.0000021196,0.0000021251,0.0000021293, -0.0000021331,0.0000021357,0.0000021408,0.0000021487,0.0000021535, -0.0000021598,0.0000021706,0.0000021746,0.0000021725,0.0000021719, -0.0000021737,0.0000021835,0.0000021930,0.0000021983,0.0000022031, -0.0000021995,0.0000021872,0.0000021833,0.0000021932,0.0000022013, -0.0000021987,0.0000021899,0.0000021827,0.0000021764,0.0000021722, -0.0000021730,0.0000021753,0.0000021771,0.0000021827,0.0000021903, -0.0000021970,0.0000022044,0.0000022100,0.0000022107,0.0000022103, -0.0000022111,0.0000022138,0.0000022174,0.0000022202,0.0000022213, -0.0000022223,0.0000022236,0.0000022257,0.0000022293,0.0000022354, -0.0000022428,0.0000022509,0.0000022583,0.0000022646,0.0000022698, -0.0000022743,0.0000022783,0.0000022815,0.0000022833,0.0000022848, -0.0000022871,0.0000022899,0.0000022921,0.0000022928,0.0000022925, -0.0000022919,0.0000022907,0.0000022911,0.0000022934,0.0000022971, -0.0000023009,0.0000023022,0.0000023008,0.0000022905,0.0000022750, -0.0000022622,0.0000022566,0.0000022547,0.0000022503,0.0000022433, -0.0000022377,0.0000022347,0.0000022333,0.0000022306,0.0000022222, -0.0000022075,0.0000022030,0.0000022057,0.0000022052,0.0000022046, -0.0000022049,0.0000022081,0.0000022153,0.0000022233,0.0000022278, -0.0000022295,0.0000022290,0.0000022273,0.0000022262,0.0000022258, -0.0000022257,0.0000022266,0.0000022290,0.0000022327,0.0000022372, -0.0000022412,0.0000022443,0.0000022462,0.0000022466,0.0000022467, -0.0000022476,0.0000022500,0.0000022531,0.0000022555,0.0000022578, -0.0000022600,0.0000022620,0.0000022641,0.0000022660,0.0000022689, -0.0000022711,0.0000022718,0.0000022722,0.0000022730,0.0000022746, -0.0000022768,0.0000022799,0.0000022835,0.0000022879,0.0000022929, -0.0000022975,0.0000023010,0.0000023029,0.0000023030,0.0000023012, -0.0000022982,0.0000022962,0.0000022943,0.0000022908,0.0000022856, -0.0000022800,0.0000022746,0.0000022679,0.0000022597,0.0000022535, -0.0000022523,0.0000022559,0.0000022608,0.0000022661,0.0000022722, -0.0000022780,0.0000022828,0.0000022862,0.0000022885,0.0000022896, -0.0000022893,0.0000022873,0.0000022840,0.0000022796,0.0000022752, -0.0000022723,0.0000022716,0.0000022721,0.0000022717,0.0000022695, -0.0000022661,0.0000022613,0.0000022558,0.0000022524,0.0000022513, -0.0000022463,0.0000022361,0.0000022268,0.0000022207,0.0000022175, -0.0000022192,0.0000022297,0.0000022410,0.0000022433,0.0000022319, -0.0000022134,0.0000022039,0.0000022020,0.0000022017,0.0000022020, -0.0000022026,0.0000022044,0.0000022053,0.0000022049,0.0000022031, -0.0000022000,0.0000021954,0.0000021902,0.0000021857,0.0000021823, -0.0000021790,0.0000021766,0.0000021755,0.0000021755,0.0000021753, -0.0000021739,0.0000021713,0.0000021678,0.0000021640,0.0000021616, -0.0000021605,0.0000021604,0.0000021608,0.0000021613,0.0000021617, -0.0000021621,0.0000021631,0.0000021652,0.0000021677,0.0000021688, -0.0000021686,0.0000021689,0.0000021704,0.0000021740,0.0000021790, -0.0000021847,0.0000021902,0.0000021964,0.0000022034,0.0000022106, -0.0000022170,0.0000022221,0.0000022243,0.0000022230,0.0000022184, -0.0000022109,0.0000022046,0.0000022026,0.0000022007,0.0000022018, -0.0000022034,0.0000022044,0.0000022047,0.0000022048,0.0000022054, -0.0000022060,0.0000022072,0.0000022063,0.0000022065,0.0000022043, -0.0000022014,0.0000021982,0.0000021962,0.0000021946,0.0000021950, -0.0000021948,0.0000021949,0.0000021960,0.0000021966,0.0000021962, -0.0000021955,0.0000021962,0.0000021966,0.0000021972,0.0000021984, -0.0000022002,0.0000022032,0.0000022053,0.0000022065,0.0000022085, -0.0000022079,0.0000022054,0.0000022022,0.0000021974,0.0000021910, -0.0000021838,0.0000021767,0.0000021705,0.0000021661,0.0000021638, -0.0000021633,0.0000021643,0.0000021667,0.0000021702,0.0000021737, -0.0000021768,0.0000021793,0.0000021814,0.0000021828,0.0000021822, -0.0000021827,0.0000021812,0.0000021793,0.0000021783,0.0000021789, -0.0000021805,0.0000021827,0.0000021856,0.0000021881,0.0000021898, -0.0000021904,0.0000021897,0.0000021883,0.0000021874,0.0000021856, -0.0000021833,0.0000021809,0.0000021787,0.0000021777,0.0000021780, -0.0000021802,0.0000021839,0.0000021881,0.0000021924,0.0000021960, -0.0000021984,0.0000021992,0.0000021984,0.0000021976,0.0000021961, -0.0000021941,0.0000021922,0.0000021902,0.0000021888,0.0000021928, -0.0000022011,0.0000022114,0.0000022211,0.0000022292,0.0000022354, -0.0000022409,0.0000022465,0.0000022534,0.0000022620,0.0000022722, -0.0000022836,0.0000022948,0.0000023042,0.0000023109,0.0000023155, -0.0000023185,0.0000023203,0.0000023213,0.0000023221,0.0000023238, -0.0000023263,0.0000023288,0.0000023308,0.0000023326,0.0000023343, -0.0000023362,0.0000023387,0.0000023423,0.0000023463,0.0000023501, -0.0000023533,0.0000023560,0.0000023581,0.0000023595,0.0000023602, -0.0000023603,0.0000023598,0.0000023586,0.0000023568,0.0000023548, -0.0000023528,0.0000023507,0.0000023484,0.0000023458,0.0000023430, -0.0000023402,0.0000023376,0.0000023350,0.0000023326,0.0000023304, -0.0000023285,0.0000023277,0.0000023266,0.0000023249,0.0000023228, -0.0000023208,0.0000023188,0.0000023165,0.0000023135,0.0000023099, -0.0000023060,0.0000023022,0.0000022990,0.0000022955,0.0000022918, -0.0000022877,0.0000022832,0.0000022788,0.0000022745,0.0000022702, -0.0000022665,0.0000022632,0.0000022601,0.0000022570,0.0000022536, -0.0000022495,0.0000022457,0.0000022436,0.0000022425,0.0000022399, -0.0000022321,0.0000022170,0.0000021966,0.0000021763,0.0000021604, -0.0000021501,0.0000021446,0.0000021426,0.0000021420,0.0000021394, -0.0000021327,0.0000021223,0.0000021129,0.0000021083,0.0000021078, -0.0000021102,0.0000021144,0.0000021188,0.0000021232,0.0000021262, -0.0000021268,0.0000021256,0.0000021233,0.0000021211,0.0000021194, -0.0000021179,0.0000021165,0.0000021160,0.0000021146,0.0000021121, -0.0000021086,0.0000021043,0.0000020998,0.0000020952,0.0000020904, -0.0000020852,0.0000020799,0.0000020744,0.0000020684,0.0000020623, -0.0000020550,0.0000020473,0.0000020391,0.0000020313,0.0000020234, -0.0000020161,0.0000020106,0.0000020064,0.0000020044,0.0000020041, -0.0000020050,0.0000020083,0.0000020152,0.0000020271,0.0000020443, -0.0000020629,0.0000020778,0.0000020860,0.0000020883,0.0000020881, -0.0000020872,0.0000020854,0.0000020828,0.0000020806,0.0000020801, -0.0000020805,0.0000020811,0.0000020809,0.0000020795,0.0000020763, -0.0000020699,0.0000020601,0.0000020484,0.0000020389,0.0000020342, -0.0000020365,0.0000020455,0.0000020591,0.0000020740,0.0000020868, -0.0000020975,0.0000021074,0.0000021195,0.0000021365,0.0000021561, -0.0000021731,0.0000021862,0.0000021957,0.0000022023,0.0000022084, -0.0000022161,0.0000022239,0.0000022263,0.0000022237,0.0000022134, -0.0000022015,0.0000021940,0.0000021920,0.0000021921,0.0000021934, -0.0000021951,0.0000021966,0.0000021987,0.0000022028,0.0000022079, -0.0000022127,0.0000022168,0.0000022216,0.0000022274,0.0000022333, -0.0000022384,0.0000022424,0.0000022444,0.0000022427,0.0000022363, -0.0000022230,0.0000022074,0.0000021963,0.0000021924,0.0000021921, -0.0000021932,0.0000021964,0.0000022056,0.0000022204,0.0000022350, -0.0000022443,0.0000022490,0.0000022544,0.0000022628,0.0000022713, -0.0000022764,0.0000022782,0.0000022781,0.0000022775,0.0000022769, -0.0000022772,0.0000022782,0.0000022780,0.0000022762,0.0000022727, -0.0000022695,0.0000022658,0.0000022623,0.0000022599,0.0000022592, -0.0000022602,0.0000022628,0.0000022663,0.0000022684,0.0000022661, -0.0000022565,0.0000022404,0.0000022259,0.0000022184,0.0000022175, -0.0000022207,0.0000022257,0.0000022266,0.0000022225,0.0000022170, -0.0000022204,0.0000022344,0.0000022387,0.0000022294,0.0000022238, -0.0000022319,0.0000022450,0.0000022487,0.0000022472,0.0000022429, -0.0000022401,0.0000022359,0.0000022236,0.0000022046,0.0000021872, -0.0000021754,0.0000021682,0.0000021624,0.0000021574,0.0000021529, -0.0000021484,0.0000021439,0.0000021401,0.0000021364,0.0000021337, -0.0000021320,0.0000021305,0.0000021293,0.0000021277,0.0000021262, -0.0000021254,0.0000021256,0.0000021268,0.0000021293,0.0000021324, -0.0000021360,0.0000021411,0.0000021473,0.0000021553,0.0000021657, -0.0000021783,0.0000021931,0.0000022081,0.0000022212,0.0000022304, -0.0000022356,0.0000022377,0.0000022359,0.0000022316,0.0000022280, -0.0000022250,0.0000022204,0.0000022119,0.0000021994,0.0000021839, -0.0000021673,0.0000021558,0.0000021548,0.0000021667,0.0000021851, -0.0000021991,0.0000022113,0.0000022313,0.0000022447,0.0000022366, -0.0000022030,0.0000021780,0.0000021724,0.0000021737,0.0000021762, -0.0000021816,0.0000021918,0.0000022035,0.0000022122,0.0000022141, -0.0000022127,0.0000022107,0.0000022114,0.0000022131,0.0000022139, -0.0000022136,0.0000022136,0.0000022156,0.0000022197,0.0000022240, -0.0000022272,0.0000022259,0.0000022201,0.0000022135,0.0000022094, -0.0000022083,0.0000022093,0.0000022131,0.0000022239,0.0000022388, -0.0000022520,0.0000022615,0.0000022699,0.0000022779,0.0000022844, -0.0000022890,0.0000022913,0.0000022911,0.0000022883,0.0000022832, -0.0000022769,0.0000022702,0.0000022643,0.0000022605,0.0000022581, -0.0000022528,0.0000022399,0.0000022199,0.0000022007,0.0000021896, -0.0000021859,0.0000021832,0.0000021774,0.0000021666,0.0000021515, -0.0000021352,0.0000021217,0.0000021122,0.0000021054,0.0000021002, -0.0000020968,0.0000020951,0.0000020937,0.0000020914,0.0000020884, -0.0000020856,0.0000020842,0.0000020833,0.0000020822,0.0000020792, -0.0000020738,0.0000020660,0.0000020569,0.0000020488,0.0000020429, -0.0000020397,0.0000020386,0.0000020387,0.0000020385,0.0000020400, -0.0000020438,0.0000020496,0.0000020571,0.0000020647,0.0000020711, -0.0000020763,0.0000020803,0.0000020831,0.0000020854,0.0000020881, -0.0000020917,0.0000020950,0.0000020967,0.0000020958,0.0000020934, -0.0000020900,0.0000020858,0.0000020818,0.0000020789,0.0000020796, -0.0000020835,0.0000020892,0.0000020949,0.0000021006,0.0000021077, -0.0000021174,0.0000021292,0.0000021412,0.0000021501,0.0000021533, -0.0000021522,0.0000021499,0.0000021482,0.0000021439,0.0000021356, -0.0000021241,0.0000021112,0.0000020966,0.0000020807,0.0000020675, -0.0000020622,0.0000020632,0.0000020705,0.0000020811,0.0000020911, -0.0000020982,0.0000021046,0.0000021131,0.0000021241,0.0000021356, -0.0000021451,0.0000021523,0.0000021597,0.0000021697,0.0000021834, -0.0000021990,0.0000022126,0.0000022223,0.0000022278,0.0000022310, -0.0000022340,0.0000022383,0.0000022443,0.0000022495,0.0000022513, -0.0000022506,0.0000022479,0.0000022432,0.0000022382,0.0000022345, -0.0000022326,0.0000022338,0.0000022426,0.0000022599,0.0000022800, -0.0000022970,0.0000023081,0.0000023160,0.0000023248,0.0000023374, -0.0000023525,0.0000023659,0.0000023748,0.0000023801,0.0000023838, -0.0000023866,0.0000023885,0.0000023897,0.0000023903,0.0000023903, -0.0000023902,0.0000023906,0.0000023913,0.0000023916,0.0000023914, -0.0000023906,0.0000023891,0.0000023872,0.0000023846,0.0000023804, -0.0000023751,0.0000023697,0.0000023642,0.0000023580,0.0000023503, -0.0000023408,0.0000023310,0.0000023218,0.0000023124,0.0000023005, -0.0000022865,0.0000022734,0.0000022625,0.0000022525,0.0000022426, -0.0000022338,0.0000022258,0.0000022172,0.0000022073,0.0000021948, -0.0000021817,0.0000021719,0.0000021676,0.0000021665,0.0000021650, -0.0000021616,0.0000021565,0.0000021510,0.0000021462,0.0000021421, -0.0000021390,0.0000021369,0.0000021353,0.0000021341,0.0000021338, -0.0000021340,0.0000021349,0.0000021360,0.0000021370,0.0000021375, -0.0000021377,0.0000021376,0.0000021372,0.0000021367,0.0000021361, -0.0000021354,0.0000021340,0.0000021331,0.0000021320,0.0000021312, -0.0000021303,0.0000021296,0.0000021291,0.0000021287,0.0000021278, -0.0000021260,0.0000021238,0.0000021215,0.0000021193,0.0000021172, -0.0000021151,0.0000021127,0.0000021113,0.0000021113,0.0000021118, -0.0000021124,0.0000021127,0.0000021126,0.0000021113,0.0000021086, -0.0000021044,0.0000020992,0.0000020945,0.0000020909,0.0000020878, -0.0000020864,0.0000020855,0.0000020865,0.0000020888,0.0000020924, -0.0000020973,0.0000021039,0.0000021114,0.0000021195,0.0000021279, -0.0000021363,0.0000021439,0.0000021506,0.0000021567,0.0000021624, -0.0000021677,0.0000021728,0.0000021776,0.0000021813,0.0000021840, -0.0000021851,0.0000021845,0.0000021826,0.0000021799,0.0000021761, -0.0000021703,0.0000021630,0.0000021546,0.0000021454,0.0000021359, -0.0000021268,0.0000021187,0.0000021121,0.0000021069,0.0000021029, -0.0000020999,0.0000020975,0.0000020953,0.0000020929,0.0000020901, -0.0000020869,0.0000020842,0.0000020822,0.0000020809,0.0000020801, -0.0000020795,0.0000020792,0.0000020789,0.0000020789,0.0000020795, -0.0000020802,0.0000020808,0.0000020813,0.0000020816,0.0000020819, -0.0000020819,0.0000020817,0.0000020812,0.0000020796,0.0000020768, -0.0000020730,0.0000020693,0.0000020648,0.0000020601,0.0000020561, -0.0000020538,0.0000020536,0.0000020544,0.0000020569,0.0000020599, -0.0000020625,0.0000020641,0.0000020644,0.0000020635,0.0000020612, -0.0000020581,0.0000020544,0.0000020509,0.0000020475,0.0000020437, -0.0000020396,0.0000020363,0.0000020350,0.0000020363,0.0000020405, -0.0000020464,0.0000020527,0.0000020586,0.0000020634,0.0000020671, -0.0000020692,0.0000020695,0.0000020689,0.0000020672,0.0000020646, -0.0000020615,0.0000020583,0.0000020559,0.0000020536,0.0000020503, -0.0000020447,0.0000020364,0.0000020266,0.0000020168,0.0000020088, -0.0000020040,0.0000020016,0.0000019997,0.0000019985,0.0000019979, -0.0000019979,0.0000019978,0.0000019968,0.0000019957,0.0000019959, -0.0000019983,0.0000020014,0.0000020033,0.0000020037,0.0000020030, -0.0000020011,0.0000019970,0.0000019910,0.0000019851,0.0000019821, -0.0000019810,0.0000019789,0.0000019748,0.0000019775,0.0000019935, -0.0000020094,0.0000020238,0.0000020365,0.0000020351,0.0000020310, -0.0000020350,0.0000020360,0.0000020386,0.0000020477,0.0000020489, -0.0000020377,0.0000020258,0.0000020225,0.0000020241,0.0000020273, -0.0000020299,0.0000020318,0.0000020339,0.0000020354,0.0000020357, -0.0000020350,0.0000020339,0.0000020326,0.0000020303,0.0000020274, -0.0000020254,0.0000020251,0.0000020265,0.0000020287,0.0000020308, -0.0000020331,0.0000020354,0.0000020365,0.0000020369,0.0000020381, -0.0000020387,0.0000020368,0.0000020361,0.0000020344,0.0000020282, -0.0000020249,0.0000020282,0.0000020353,0.0000020409,0.0000020447, -0.0000020484,0.0000020521,0.0000020551,0.0000020563,0.0000020556, -0.0000020527,0.0000020483,0.0000020431,0.0000020372,0.0000020317, -0.0000020298,0.0000020309,0.0000020327,0.0000020334,0.0000020329, -0.0000020313,0.0000020286,0.0000020253,0.0000020230,0.0000020229, -0.0000020248,0.0000020270,0.0000020287,0.0000020305,0.0000020311, -0.0000020304,0.0000020286,0.0000020262,0.0000020239,0.0000020223, -0.0000020208,0.0000020190,0.0000020175,0.0000020173,0.0000020181, -0.0000020195,0.0000020206,0.0000020211,0.0000020217,0.0000020231, -0.0000020257,0.0000020291,0.0000020321,0.0000020339,0.0000020343, -0.0000020338,0.0000020327,0.0000020309,0.0000020282,0.0000020253, -0.0000020228,0.0000020206,0.0000020186,0.0000020174,0.0000020168, -0.0000020165,0.0000020168,0.0000020183,0.0000020204,0.0000020223, -0.0000020237,0.0000020254,0.0000020275,0.0000020296,0.0000020313, -0.0000020322,0.0000020321,0.0000020310,0.0000020292,0.0000020271, -0.0000020251,0.0000020234,0.0000020217,0.0000020205,0.0000020197, -0.0000020192,0.0000020186,0.0000020180,0.0000020179,0.0000020186, -0.0000020196,0.0000020204,0.0000020210,0.0000020218,0.0000020230, -0.0000020247,0.0000020263,0.0000020275,0.0000020289,0.0000020306, -0.0000020325,0.0000020333,0.0000020328,0.0000020307,0.0000020276, -0.0000020240,0.0000020200,0.0000020159,0.0000020122,0.0000020098, -0.0000020097,0.0000020106,0.0000020125,0.0000020143,0.0000020156, -0.0000020166,0.0000020183,0.0000020209,0.0000020237,0.0000020262, -0.0000020281,0.0000020305,0.0000020328,0.0000020341,0.0000020340, -0.0000020353,0.0000020426,0.0000020557,0.0000020681,0.0000020766, -0.0000020831,0.0000020866,0.0000020865,0.0000020854,0.0000020815, -0.0000020720,0.0000020603,0.0000020553,0.0000020570,0.0000020615, -0.0000020621,0.0000020668,0.0000020716,0.0000020760,0.0000020808, -0.0000020851,0.0000020877,0.0000020895,0.0000020927,0.0000020993, -0.0000021101,0.0000021241,0.0000021372,0.0000021462,0.0000021510, -0.0000021525,0.0000021501,0.0000021447,0.0000021356,0.0000021246, -0.0000021136,0.0000021046,0.0000020984,0.0000020949,0.0000020928, -0.0000020904,0.0000020871,0.0000020827,0.0000020773,0.0000020721, -0.0000020675,0.0000020637,0.0000020613,0.0000020605,0.0000020609, -0.0000020622,0.0000020637,0.0000020658,0.0000020690,0.0000020731, -0.0000020776,0.0000020828,0.0000020884,0.0000020929,0.0000020950, -0.0000020950,0.0000020934,0.0000020896,0.0000020842,0.0000020789, -0.0000020746,0.0000020711,0.0000020681,0.0000020661,0.0000020659, -0.0000020674,0.0000020700,0.0000020732,0.0000020765,0.0000020791, -0.0000020804,0.0000020811,0.0000020822,0.0000020850,0.0000020895, -0.0000020952,0.0000021016,0.0000021080,0.0000021138,0.0000021179, -0.0000021198,0.0000021198,0.0000021185,0.0000021168,0.0000021153, -0.0000021149,0.0000021166,0.0000021206,0.0000021252,0.0000021278, -0.0000021279,0.0000021263,0.0000021241,0.0000021211,0.0000021184, -0.0000021165,0.0000021155,0.0000021153,0.0000021156,0.0000021163, -0.0000021165,0.0000021164,0.0000021167,0.0000021175,0.0000021180, -0.0000021179,0.0000021170,0.0000021154,0.0000021138,0.0000021124, -0.0000021108,0.0000021089,0.0000021069,0.0000021052,0.0000021042, -0.0000021037,0.0000021034,0.0000021030,0.0000021028,0.0000021031, -0.0000021037,0.0000021044,0.0000021051,0.0000021054,0.0000021053, -0.0000021045,0.0000021030,0.0000021009,0.0000020982,0.0000020954, -0.0000020932,0.0000020921,0.0000020920,0.0000020921,0.0000020922, -0.0000020924,0.0000020931,0.0000020939,0.0000020944,0.0000020951, -0.0000020964,0.0000020980,0.0000020995,0.0000021005,0.0000021013, -0.0000021027,0.0000021053,0.0000021088,0.0000021123,0.0000021160, -0.0000021208,0.0000021257,0.0000021303,0.0000021335,0.0000021346, -0.0000021344,0.0000021333,0.0000021316,0.0000021297,0.0000021274, -0.0000021245,0.0000021212,0.0000021184,0.0000021166,0.0000021161, -0.0000021166,0.0000021181,0.0000021196,0.0000021207,0.0000021214, -0.0000021222,0.0000021233,0.0000021247,0.0000021256,0.0000021255, -0.0000021243,0.0000021220,0.0000021193,0.0000021169,0.0000021151, -0.0000021144,0.0000021148,0.0000021165,0.0000021196,0.0000021239, -0.0000021286,0.0000021327,0.0000021356,0.0000021375,0.0000021384, -0.0000021388,0.0000021388,0.0000021383,0.0000021373,0.0000021366, -0.0000021364,0.0000021366,0.0000021387,0.0000021451,0.0000021536, -0.0000021590,0.0000021627,0.0000021702,0.0000021790,0.0000021825, -0.0000021809,0.0000021717,0.0000021613,0.0000021614,0.0000021665, -0.0000021668,0.0000021643,0.0000021650,0.0000021688,0.0000021720, -0.0000021742,0.0000021765,0.0000021789,0.0000021818,0.0000021857, -0.0000021896,0.0000021926,0.0000021950,0.0000021978,0.0000022011, -0.0000022043,0.0000022080,0.0000022124,0.0000022166,0.0000022195, -0.0000022213,0.0000022223,0.0000022228,0.0000022233,0.0000022244, -0.0000022259,0.0000022276,0.0000022290,0.0000022304,0.0000022322, -0.0000022346,0.0000022370,0.0000022393,0.0000022418,0.0000022448, -0.0000022482,0.0000022521,0.0000022557,0.0000022588,0.0000022612, -0.0000022628,0.0000022636,0.0000022638,0.0000022635,0.0000022629, -0.0000022617,0.0000022602,0.0000022583,0.0000022562,0.0000022537, -0.0000022507,0.0000022473,0.0000022435,0.0000022396,0.0000022356, -0.0000022318,0.0000022282,0.0000022246,0.0000022218,0.0000022196, -0.0000022180,0.0000022172,0.0000022170,0.0000022172,0.0000022174, -0.0000022171,0.0000022159,0.0000022137,0.0000022104,0.0000022062, -0.0000022013,0.0000021959,0.0000021898,0.0000021830,0.0000021759, -0.0000021692,0.0000021637,0.0000021598,0.0000021572,0.0000021546, -0.0000021511,0.0000021467,0.0000021423,0.0000021385,0.0000021352, -0.0000021327,0.0000021319,0.0000021326,0.0000021345,0.0000021360, -0.0000021369,0.0000021370,0.0000021361,0.0000021337,0.0000021310, -0.0000021274,0.0000021218,0.0000021149,0.0000021094,0.0000021053, -0.0000021037,0.0000021041,0.0000021052,0.0000021067,0.0000021087, -0.0000021114,0.0000021150,0.0000021191,0.0000021229,0.0000021258, -0.0000021282,0.0000021301,0.0000021328,0.0000021354,0.0000021372, -0.0000021377,0.0000021373,0.0000021348,0.0000021300,0.0000021239, -0.0000021182,0.0000021144,0.0000021126,0.0000021122,0.0000021122, -0.0000021122,0.0000021116,0.0000021099,0.0000021067,0.0000021030, -0.0000021002,0.0000020967,0.0000020940,0.0000020921,0.0000020871, -0.0000020799,0.0000020766,0.0000020775,0.0000020832,0.0000020873, -0.0000020876,0.0000020856,0.0000020776,0.0000020688,0.0000020648, -0.0000020626,0.0000020681,0.0000020815,0.0000020850,0.0000020835, -0.0000020832,0.0000020884,0.0000020980,0.0000021054,0.0000021070, -0.0000021042,0.0000021031,0.0000021072,0.0000021145,0.0000021206, -0.0000021257,0.0000021292,0.0000021328,0.0000021400,0.0000021477, -0.0000021509,0.0000021593,0.0000021696,0.0000021707,0.0000021689, -0.0000021686,0.0000021748,0.0000021867,0.0000021948,0.0000022015, -0.0000022020,0.0000021928,0.0000021870,0.0000021956,0.0000022072, -0.0000022058,0.0000021949,0.0000021845,0.0000021753,0.0000021707, -0.0000021720,0.0000021746,0.0000021784,0.0000021863,0.0000021962, -0.0000022052,0.0000022133,0.0000022169,0.0000022146,0.0000022105, -0.0000022092,0.0000022113,0.0000022157,0.0000022202,0.0000022229, -0.0000022245,0.0000022268,0.0000022301,0.0000022337,0.0000022389, -0.0000022464,0.0000022544,0.0000022620,0.0000022682,0.0000022727, -0.0000022766,0.0000022796,0.0000022828,0.0000022860,0.0000022885, -0.0000022902,0.0000022916,0.0000022916,0.0000022915,0.0000022903, -0.0000022902,0.0000022912,0.0000022922,0.0000022946,0.0000022977, -0.0000023000,0.0000023007,0.0000022952,0.0000022842,0.0000022705, -0.0000022606,0.0000022567,0.0000022550,0.0000022505,0.0000022433, -0.0000022373,0.0000022340,0.0000022324,0.0000022306,0.0000022262, -0.0000022145,0.0000022063,0.0000022093,0.0000022108,0.0000022073, -0.0000022039,0.0000022017,0.0000022035,0.0000022105,0.0000022175, -0.0000022223,0.0000022248,0.0000022253,0.0000022244,0.0000022230, -0.0000022221,0.0000022214,0.0000022215,0.0000022232,0.0000022263, -0.0000022307,0.0000022357,0.0000022394,0.0000022416,0.0000022424, -0.0000022426,0.0000022429,0.0000022440,0.0000022461,0.0000022476, -0.0000022493,0.0000022511,0.0000022526,0.0000022539,0.0000022555, -0.0000022579,0.0000022610,0.0000022629,0.0000022643,0.0000022659, -0.0000022679,0.0000022703,0.0000022727,0.0000022755,0.0000022790, -0.0000022836,0.0000022881,0.0000022912,0.0000022930,0.0000022932, -0.0000022923,0.0000022913,0.0000022909,0.0000022890,0.0000022850, -0.0000022799,0.0000022754,0.0000022705,0.0000022639,0.0000022572, -0.0000022525,0.0000022509,0.0000022535,0.0000022583,0.0000022636, -0.0000022702,0.0000022764,0.0000022803,0.0000022825,0.0000022849, -0.0000022871,0.0000022880,0.0000022873,0.0000022843,0.0000022807, -0.0000022778,0.0000022760,0.0000022752,0.0000022750,0.0000022727, -0.0000022684,0.0000022624,0.0000022565,0.0000022507,0.0000022471, -0.0000022450,0.0000022392,0.0000022296,0.0000022221,0.0000022166, -0.0000022129,0.0000022143,0.0000022230,0.0000022344,0.0000022411, -0.0000022385,0.0000022245,0.0000022090,0.0000022020,0.0000022000, -0.0000021999,0.0000022003,0.0000022015,0.0000022030,0.0000022037, -0.0000022035,0.0000022013,0.0000021975,0.0000021928,0.0000021883, -0.0000021844,0.0000021808,0.0000021780,0.0000021764,0.0000021763, -0.0000021767,0.0000021765,0.0000021748,0.0000021717,0.0000021678, -0.0000021638,0.0000021610,0.0000021594,0.0000021588,0.0000021586, -0.0000021584,0.0000021579,0.0000021575,0.0000021584,0.0000021613, -0.0000021648,0.0000021676,0.0000021688,0.0000021684,0.0000021689, -0.0000021695,0.0000021724,0.0000021776,0.0000021840,0.0000021911, -0.0000021986,0.0000022055,0.0000022118,0.0000022186,0.0000022239, -0.0000022258,0.0000022257,0.0000022205,0.0000022119,0.0000022035, -0.0000021970,0.0000021934,0.0000021929,0.0000021938,0.0000021953, -0.0000021968,0.0000021984,0.0000022002,0.0000022021,0.0000022039, -0.0000022057,0.0000022070,0.0000022065,0.0000022064,0.0000022054, -0.0000022045,0.0000022032,0.0000022021,0.0000022012,0.0000022005, -0.0000022002,0.0000021998,0.0000021992,0.0000021987,0.0000021996, -0.0000021996,0.0000021991,0.0000021996,0.0000022004,0.0000022007, -0.0000022008,0.0000022001,0.0000021982,0.0000021949,0.0000021901, -0.0000021842,0.0000021773,0.0000021700,0.0000021629,0.0000021565, -0.0000021517,0.0000021489,0.0000021479,0.0000021482,0.0000021503, -0.0000021540,0.0000021583,0.0000021628,0.0000021673,0.0000021716, -0.0000021754,0.0000021784,0.0000021801,0.0000021806,0.0000021799, -0.0000021795,0.0000021801,0.0000021818,0.0000021841,0.0000021868, -0.0000021895,0.0000021910,0.0000021917,0.0000021918,0.0000021905, -0.0000021886,0.0000021870,0.0000021843,0.0000021811,0.0000021776, -0.0000021747,0.0000021721,0.0000021724,0.0000021720,0.0000021745, -0.0000021779,0.0000021821,0.0000021869,0.0000021912,0.0000021941, -0.0000021956,0.0000021953,0.0000021938,0.0000021918,0.0000021896, -0.0000021871,0.0000021860,0.0000021857,0.0000021891,0.0000021959, -0.0000022048,0.0000022145,0.0000022228,0.0000022290,0.0000022336, -0.0000022381,0.0000022439,0.0000022521,0.0000022630,0.0000022753, -0.0000022867,0.0000022963,0.0000023039,0.0000023096,0.0000023134, -0.0000023155,0.0000023167,0.0000023177,0.0000023190,0.0000023205, -0.0000023220,0.0000023237,0.0000023252,0.0000023268,0.0000023287, -0.0000023311,0.0000023338,0.0000023366,0.0000023393,0.0000023417, -0.0000023436,0.0000023447,0.0000023453,0.0000023453,0.0000023448, -0.0000023436,0.0000023422,0.0000023408,0.0000023391,0.0000023374, -0.0000023355,0.0000023333,0.0000023309,0.0000023286,0.0000023265, -0.0000023247,0.0000023233,0.0000023223,0.0000023222,0.0000023220, -0.0000023214,0.0000023203,0.0000023188,0.0000023169,0.0000023145, -0.0000023115,0.0000023079,0.0000023035,0.0000022988,0.0000022942, -0.0000022895,0.0000022848,0.0000022796,0.0000022745,0.0000022700, -0.0000022660,0.0000022621,0.0000022587,0.0000022560,0.0000022535, -0.0000022508,0.0000022474,0.0000022437,0.0000022414,0.0000022410, -0.0000022400,0.0000022349,0.0000022233,0.0000022057,0.0000021860, -0.0000021686,0.0000021568,0.0000021510,0.0000021490,0.0000021489, -0.0000021481,0.0000021435,0.0000021344,0.0000021225,0.0000021138, -0.0000021109,0.0000021120,0.0000021162,0.0000021213,0.0000021256, -0.0000021291,0.0000021308,0.0000021304,0.0000021282,0.0000021250, -0.0000021222,0.0000021203,0.0000021184,0.0000021166,0.0000021135, -0.0000021083,0.0000021019,0.0000020955,0.0000020900,0.0000020854, -0.0000020821,0.0000020793,0.0000020766,0.0000020737,0.0000020705, -0.0000020672,0.0000020632,0.0000020581,0.0000020523,0.0000020451, -0.0000020372,0.0000020292,0.0000020204,0.0000020122,0.0000020056, -0.0000020009,0.0000019994,0.0000019996,0.0000020012,0.0000020038, -0.0000020085,0.0000020177,0.0000020325,0.0000020509,0.0000020684, -0.0000020800,0.0000020845,0.0000020848,0.0000020845,0.0000020839, -0.0000020827,0.0000020814,0.0000020810,0.0000020815,0.0000020819, -0.0000020818,0.0000020812,0.0000020790,0.0000020743,0.0000020663, -0.0000020557,0.0000020447,0.0000020372,0.0000020358,0.0000020410, -0.0000020529,0.0000020678,0.0000020824,0.0000020945,0.0000021027, -0.0000021113,0.0000021252,0.0000021438,0.0000021627,0.0000021789, -0.0000021914,0.0000021998,0.0000022058,0.0000022123,0.0000022199, -0.0000022259,0.0000022261,0.0000022176,0.0000022055,0.0000021957, -0.0000021914,0.0000021909,0.0000021927,0.0000021945,0.0000021956, -0.0000021975,0.0000022012,0.0000022062,0.0000022108,0.0000022144, -0.0000022177,0.0000022215,0.0000022263,0.0000022321,0.0000022376, -0.0000022409,0.0000022413,0.0000022391,0.0000022298,0.0000022150, -0.0000022000,0.0000021903,0.0000021879,0.0000021871,0.0000021887, -0.0000021935,0.0000022035,0.0000022179,0.0000022317,0.0000022407, -0.0000022466,0.0000022525,0.0000022590,0.0000022645,0.0000022679, -0.0000022691,0.0000022688,0.0000022684,0.0000022687,0.0000022695, -0.0000022701,0.0000022699,0.0000022687,0.0000022670,0.0000022645, -0.0000022627,0.0000022622,0.0000022627,0.0000022644,0.0000022669, -0.0000022683,0.0000022663,0.0000022559,0.0000022393,0.0000022241, -0.0000022158,0.0000022139,0.0000022163,0.0000022208,0.0000022221, -0.0000022185,0.0000022130,0.0000022163,0.0000022301,0.0000022343, -0.0000022259,0.0000022223,0.0000022312,0.0000022437,0.0000022470, -0.0000022446,0.0000022395,0.0000022362,0.0000022310,0.0000022169, -0.0000021976,0.0000021821,0.0000021730,0.0000021665,0.0000021608, -0.0000021562,0.0000021525,0.0000021493,0.0000021459,0.0000021423, -0.0000021387,0.0000021349,0.0000021314,0.0000021289,0.0000021270, -0.0000021253,0.0000021233,0.0000021218,0.0000021208,0.0000021203, -0.0000021216,0.0000021254,0.0000021294,0.0000021335,0.0000021383, -0.0000021429,0.0000021488,0.0000021568,0.0000021672,0.0000021808, -0.0000021957,0.0000022097,0.0000022215,0.0000022299,0.0000022344, -0.0000022347,0.0000022326,0.0000022292,0.0000022262,0.0000022234, -0.0000022190,0.0000022114,0.0000021997,0.0000021842,0.0000021676, -0.0000021553,0.0000021547,0.0000021665,0.0000021852,0.0000021991, -0.0000022120,0.0000022321,0.0000022457,0.0000022339,0.0000022028, -0.0000021796,0.0000021752,0.0000021772,0.0000021805,0.0000021877, -0.0000021975,0.0000022070,0.0000022124,0.0000022131,0.0000022119, -0.0000022114,0.0000022121,0.0000022128,0.0000022127,0.0000022125, -0.0000022138,0.0000022179,0.0000022238,0.0000022295,0.0000022332, -0.0000022321,0.0000022264,0.0000022195,0.0000022146,0.0000022124, -0.0000022128,0.0000022164,0.0000022268,0.0000022410,0.0000022535, -0.0000022624,0.0000022696,0.0000022762,0.0000022812,0.0000022840, -0.0000022845,0.0000022827,0.0000022785,0.0000022728,0.0000022664, -0.0000022603,0.0000022561,0.0000022539,0.0000022505,0.0000022426, -0.0000022267,0.0000022072,0.0000021916,0.0000021850,0.0000021821, -0.0000021795,0.0000021729,0.0000021608,0.0000021448,0.0000021292, -0.0000021175,0.0000021098,0.0000021045,0.0000021014,0.0000021004, -0.0000021001,0.0000020988,0.0000020959,0.0000020920,0.0000020891, -0.0000020871,0.0000020857,0.0000020839,0.0000020805,0.0000020746, -0.0000020671,0.0000020591,0.0000020515,0.0000020455,0.0000020417, -0.0000020399,0.0000020390,0.0000020387,0.0000020386,0.0000020401, -0.0000020443,0.0000020509,0.0000020583,0.0000020660,0.0000020733, -0.0000020789,0.0000020816,0.0000020826,0.0000020841,0.0000020867, -0.0000020900,0.0000020924,0.0000020927,0.0000020913,0.0000020890, -0.0000020851,0.0000020799,0.0000020768,0.0000020748,0.0000020771, -0.0000020818,0.0000020872,0.0000020929,0.0000020997,0.0000021087, -0.0000021203,0.0000021328,0.0000021426,0.0000021468,0.0000021458, -0.0000021432,0.0000021412,0.0000021370,0.0000021301,0.0000021190, -0.0000021070,0.0000020939,0.0000020794,0.0000020663,0.0000020603, -0.0000020586,0.0000020650,0.0000020752,0.0000020853,0.0000020931, -0.0000021002,0.0000021091,0.0000021202,0.0000021315,0.0000021409, -0.0000021484,0.0000021562,0.0000021658,0.0000021785,0.0000021927, -0.0000022057,0.0000022148,0.0000022197,0.0000022227,0.0000022251, -0.0000022289,0.0000022355,0.0000022418,0.0000022446,0.0000022438, -0.0000022406,0.0000022361,0.0000022317,0.0000022283,0.0000022261, -0.0000022270,0.0000022351,0.0000022517,0.0000022721,0.0000022901, -0.0000023019,0.0000023088,0.0000023155,0.0000023262,0.0000023407, -0.0000023547,0.0000023652,0.0000023721,0.0000023762,0.0000023786, -0.0000023804,0.0000023819,0.0000023828,0.0000023831,0.0000023835, -0.0000023842,0.0000023844,0.0000023841,0.0000023831,0.0000023810, -0.0000023788,0.0000023768,0.0000023744,0.0000023713,0.0000023670, -0.0000023617,0.0000023555,0.0000023482,0.0000023398,0.0000023309, -0.0000023224,0.0000023130,0.0000023012,0.0000022870,0.0000022728, -0.0000022614,0.0000022521,0.0000022431,0.0000022344,0.0000022260, -0.0000022174,0.0000022081,0.0000021971,0.0000021840,0.0000021723, -0.0000021652,0.0000021629,0.0000021617,0.0000021593,0.0000021552, -0.0000021502,0.0000021459,0.0000021424,0.0000021400,0.0000021388, -0.0000021375,0.0000021357,0.0000021341,0.0000021331,0.0000021323, -0.0000021319,0.0000021318,0.0000021321,0.0000021325,0.0000021330, -0.0000021335,0.0000021336,0.0000021332,0.0000021323,0.0000021310, -0.0000021301,0.0000021288,0.0000021270,0.0000021252,0.0000021241, -0.0000021241,0.0000021244,0.0000021246,0.0000021243,0.0000021233, -0.0000021220,0.0000021209,0.0000021194,0.0000021170,0.0000021140, -0.0000021109,0.0000021081,0.0000021062,0.0000021055,0.0000021057, -0.0000021070,0.0000021085,0.0000021090,0.0000021072,0.0000021050, -0.0000021020,0.0000020984,0.0000020946,0.0000020910,0.0000020882, -0.0000020866,0.0000020866,0.0000020864,0.0000020867,0.0000020881, -0.0000020905,0.0000020934,0.0000020967,0.0000021006,0.0000021046, -0.0000021081,0.0000021115,0.0000021151,0.0000021191,0.0000021236, -0.0000021286,0.0000021336,0.0000021381,0.0000021415,0.0000021433, -0.0000021432,0.0000021422,0.0000021405,0.0000021378,0.0000021337, -0.0000021286,0.0000021231,0.0000021177,0.0000021128,0.0000021085, -0.0000021051,0.0000021022,0.0000020996,0.0000020973,0.0000020951, -0.0000020927,0.0000020896,0.0000020858,0.0000020812,0.0000020763, -0.0000020719,0.0000020682,0.0000020656,0.0000020638,0.0000020625, -0.0000020617,0.0000020612,0.0000020615,0.0000020624,0.0000020636, -0.0000020645,0.0000020653,0.0000020661,0.0000020672,0.0000020685, -0.0000020703,0.0000020712,0.0000020715,0.0000020708,0.0000020692, -0.0000020668,0.0000020636,0.0000020601,0.0000020571,0.0000020549, -0.0000020536,0.0000020534,0.0000020544,0.0000020563,0.0000020583, -0.0000020597,0.0000020602,0.0000020601,0.0000020595,0.0000020578, -0.0000020551,0.0000020514,0.0000020481,0.0000020452,0.0000020424, -0.0000020395,0.0000020373,0.0000020369,0.0000020388,0.0000020431, -0.0000020486,0.0000020545,0.0000020600,0.0000020647,0.0000020679, -0.0000020695,0.0000020695,0.0000020687,0.0000020665,0.0000020631, -0.0000020596,0.0000020565,0.0000020538,0.0000020513,0.0000020478, -0.0000020418,0.0000020328,0.0000020217,0.0000020113,0.0000020039, -0.0000020000,0.0000019978,0.0000019959,0.0000019943,0.0000019935, -0.0000019929,0.0000019920,0.0000019913,0.0000019916,0.0000019929, -0.0000019951,0.0000019974,0.0000019988,0.0000019989,0.0000019978, -0.0000019951,0.0000019901,0.0000019843,0.0000019800,0.0000019778, -0.0000019761,0.0000019721,0.0000019724,0.0000019864,0.0000020038, -0.0000020194,0.0000020337,0.0000020329,0.0000020286,0.0000020334, -0.0000020359,0.0000020394,0.0000020484,0.0000020495,0.0000020379, -0.0000020258,0.0000020226,0.0000020244,0.0000020273,0.0000020291, -0.0000020301,0.0000020314,0.0000020329,0.0000020337,0.0000020335, -0.0000020328,0.0000020313,0.0000020290,0.0000020270,0.0000020265, -0.0000020271,0.0000020287,0.0000020306,0.0000020331,0.0000020355, -0.0000020367,0.0000020367,0.0000020368,0.0000020383,0.0000020377, -0.0000020348,0.0000020333,0.0000020303,0.0000020260,0.0000020264, -0.0000020321,0.0000020388,0.0000020433,0.0000020468,0.0000020504, -0.0000020537,0.0000020559,0.0000020560,0.0000020537,0.0000020484, -0.0000020424,0.0000020369,0.0000020315,0.0000020284,0.0000020293, -0.0000020316,0.0000020336,0.0000020340,0.0000020331,0.0000020309, -0.0000020275,0.0000020233,0.0000020200,0.0000020188,0.0000020194, -0.0000020209,0.0000020230,0.0000020251,0.0000020262,0.0000020255, -0.0000020233,0.0000020202,0.0000020176,0.0000020156,0.0000020136, -0.0000020116,0.0000020102,0.0000020101,0.0000020111,0.0000020129, -0.0000020150,0.0000020170,0.0000020190,0.0000020209,0.0000020229, -0.0000020249,0.0000020266,0.0000020278,0.0000020284,0.0000020285, -0.0000020280,0.0000020264,0.0000020240,0.0000020217,0.0000020194, -0.0000020170,0.0000020149,0.0000020139,0.0000020135,0.0000020135, -0.0000020140,0.0000020154,0.0000020172,0.0000020188,0.0000020204, -0.0000020223,0.0000020245,0.0000020268,0.0000020286,0.0000020300, -0.0000020307,0.0000020306,0.0000020297,0.0000020281,0.0000020260, -0.0000020238,0.0000020218,0.0000020209,0.0000020208,0.0000020207, -0.0000020201,0.0000020195,0.0000020193,0.0000020195,0.0000020197, -0.0000020200,0.0000020207,0.0000020220,0.0000020235,0.0000020252, -0.0000020269,0.0000020280,0.0000020285,0.0000020289,0.0000020298, -0.0000020311,0.0000020317,0.0000020312,0.0000020291,0.0000020258, -0.0000020216,0.0000020166,0.0000020114,0.0000020075,0.0000020054, -0.0000020052,0.0000020070,0.0000020102,0.0000020129,0.0000020143, -0.0000020152,0.0000020165,0.0000020183,0.0000020202,0.0000020219, -0.0000020237,0.0000020264,0.0000020299,0.0000020325,0.0000020331, -0.0000020343,0.0000020406,0.0000020526,0.0000020650,0.0000020740, -0.0000020808,0.0000020851,0.0000020855,0.0000020845,0.0000020824, -0.0000020765,0.0000020689,0.0000020622,0.0000020600,0.0000020664, -0.0000020645,0.0000020650,0.0000020679,0.0000020714,0.0000020759, -0.0000020814,0.0000020866,0.0000020905,0.0000020928,0.0000020945, -0.0000020987,0.0000021068,0.0000021185,0.0000021303,0.0000021388, -0.0000021432,0.0000021433,0.0000021399,0.0000021342,0.0000021263, -0.0000021176,0.0000021098,0.0000021038,0.0000020997,0.0000020962, -0.0000020923,0.0000020877,0.0000020823,0.0000020766,0.0000020714, -0.0000020668,0.0000020632,0.0000020612,0.0000020608,0.0000020613, -0.0000020627,0.0000020645,0.0000020667,0.0000020697,0.0000020730, -0.0000020769,0.0000020819,0.0000020867,0.0000020897,0.0000020907, -0.0000020904,0.0000020886,0.0000020853,0.0000020808,0.0000020764, -0.0000020725,0.0000020688,0.0000020660,0.0000020654,0.0000020668, -0.0000020699,0.0000020739,0.0000020774,0.0000020793,0.0000020798, -0.0000020796,0.0000020801,0.0000020828,0.0000020876,0.0000020939, -0.0000021002,0.0000021059,0.0000021108,0.0000021148,0.0000021174, -0.0000021183,0.0000021180,0.0000021167,0.0000021154,0.0000021143, -0.0000021139,0.0000021157,0.0000021197,0.0000021237,0.0000021258, -0.0000021259,0.0000021248,0.0000021233,0.0000021218,0.0000021203, -0.0000021193,0.0000021185,0.0000021182,0.0000021181,0.0000021180, -0.0000021175,0.0000021170,0.0000021171,0.0000021176,0.0000021180, -0.0000021180,0.0000021179,0.0000021176,0.0000021170,0.0000021158, -0.0000021138,0.0000021112,0.0000021086,0.0000021069,0.0000021062, -0.0000021062,0.0000021065,0.0000021073,0.0000021082,0.0000021089, -0.0000021095,0.0000021101,0.0000021103,0.0000021100,0.0000021093, -0.0000021082,0.0000021064,0.0000021035,0.0000020998,0.0000020960, -0.0000020935,0.0000020924,0.0000020919,0.0000020918,0.0000020922, -0.0000020930,0.0000020943,0.0000020958,0.0000020976,0.0000020998, -0.0000021019,0.0000021037,0.0000021049,0.0000021055,0.0000021060, -0.0000021071,0.0000021094,0.0000021123,0.0000021160,0.0000021201, -0.0000021245,0.0000021290,0.0000021331,0.0000021361,0.0000021373, -0.0000021377,0.0000021373,0.0000021365,0.0000021354,0.0000021337, -0.0000021311,0.0000021278,0.0000021243,0.0000021215,0.0000021204, -0.0000021207,0.0000021218,0.0000021230,0.0000021238,0.0000021244, -0.0000021250,0.0000021253,0.0000021253,0.0000021250,0.0000021241, -0.0000021223,0.0000021199,0.0000021179,0.0000021165,0.0000021154, -0.0000021147,0.0000021147,0.0000021155,0.0000021175,0.0000021209, -0.0000021252,0.0000021298,0.0000021339,0.0000021366,0.0000021379, -0.0000021383,0.0000021381,0.0000021374,0.0000021360,0.0000021349, -0.0000021348,0.0000021355,0.0000021366,0.0000021412,0.0000021502, -0.0000021583,0.0000021620,0.0000021668,0.0000021761,0.0000021831, -0.0000021840,0.0000021781,0.0000021662,0.0000021602,0.0000021638, -0.0000021692,0.0000021690,0.0000021671,0.0000021681,0.0000021711, -0.0000021738,0.0000021761,0.0000021779,0.0000021789,0.0000021796, -0.0000021802,0.0000021803,0.0000021804,0.0000021812,0.0000021832, -0.0000021860,0.0000021895,0.0000021941,0.0000021995,0.0000022044, -0.0000022081,0.0000022106,0.0000022124,0.0000022137,0.0000022152, -0.0000022172,0.0000022193,0.0000022211,0.0000022227,0.0000022245, -0.0000022267,0.0000022290,0.0000022311,0.0000022332,0.0000022354, -0.0000022380,0.0000022411,0.0000022445,0.0000022478,0.0000022509, -0.0000022535,0.0000022556,0.0000022574,0.0000022587,0.0000022592, -0.0000022591,0.0000022584,0.0000022573,0.0000022557,0.0000022533, -0.0000022504,0.0000022473,0.0000022437,0.0000022397,0.0000022357, -0.0000022315,0.0000022273,0.0000022235,0.0000022200,0.0000022170, -0.0000022145,0.0000022123,0.0000022107,0.0000022095,0.0000022087, -0.0000022076,0.0000022057,0.0000022030,0.0000021994,0.0000021953, -0.0000021908,0.0000021858,0.0000021801,0.0000021741,0.0000021686, -0.0000021640,0.0000021606,0.0000021580,0.0000021550,0.0000021510, -0.0000021460,0.0000021405,0.0000021352,0.0000021305,0.0000021272, -0.0000021253,0.0000021247,0.0000021250,0.0000021262,0.0000021281, -0.0000021309,0.0000021338,0.0000021355,0.0000021353,0.0000021337, -0.0000021307,0.0000021255,0.0000021182,0.0000021109,0.0000021053, -0.0000021022,0.0000021013,0.0000021016,0.0000021026,0.0000021041, -0.0000021067,0.0000021104,0.0000021147,0.0000021192,0.0000021226, -0.0000021250,0.0000021278,0.0000021312,0.0000021349,0.0000021376, -0.0000021383,0.0000021379,0.0000021357,0.0000021314,0.0000021255, -0.0000021198,0.0000021158,0.0000021143,0.0000021142,0.0000021138, -0.0000021133,0.0000021130,0.0000021116,0.0000021089,0.0000021056, -0.0000021026,0.0000020998,0.0000020973,0.0000020967,0.0000020932, -0.0000020843,0.0000020770,0.0000020764,0.0000020811,0.0000020858, -0.0000020863,0.0000020845,0.0000020767,0.0000020675,0.0000020629, -0.0000020603,0.0000020656,0.0000020785,0.0000020819,0.0000020806, -0.0000020808,0.0000020870,0.0000020963,0.0000021023,0.0000021033, -0.0000020999,0.0000020990,0.0000021020,0.0000021099,0.0000021178, -0.0000021229,0.0000021262,0.0000021322,0.0000021409,0.0000021466, -0.0000021494,0.0000021600,0.0000021676,0.0000021666,0.0000021651, -0.0000021678,0.0000021794,0.0000021899,0.0000021988,0.0000022023, -0.0000021962,0.0000021904,0.0000021975,0.0000022112,0.0000022131, -0.0000022023,0.0000021886,0.0000021762,0.0000021699,0.0000021711, -0.0000021739,0.0000021797,0.0000021902,0.0000022013,0.0000022130, -0.0000022220,0.0000022234,0.0000022194,0.0000022140,0.0000022107, -0.0000022108,0.0000022139,0.0000022182,0.0000022221,0.0000022257, -0.0000022285,0.0000022321,0.0000022366,0.0000022412,0.0000022476, -0.0000022552,0.0000022622,0.0000022681,0.0000022729,0.0000022767, -0.0000022812,0.0000022848,0.0000022881,0.0000022900,0.0000022893, -0.0000022877,0.0000022858,0.0000022854,0.0000022866,0.0000022893, -0.0000022922,0.0000022951,0.0000022968,0.0000022964,0.0000022964, -0.0000022928,0.0000022857,0.0000022753,0.0000022656,0.0000022599, -0.0000022582,0.0000022566,0.0000022511,0.0000022433,0.0000022362, -0.0000022324,0.0000022313,0.0000022299,0.0000022265,0.0000022188, -0.0000022089,0.0000022087,0.0000022142,0.0000022126,0.0000022078, -0.0000022014,0.0000021975,0.0000021987,0.0000022048,0.0000022106, -0.0000022157,0.0000022193,0.0000022206,0.0000022204,0.0000022186, -0.0000022164,0.0000022149,0.0000022145,0.0000022166,0.0000022201, -0.0000022246,0.0000022302,0.0000022352,0.0000022385,0.0000022398, -0.0000022403,0.0000022404,0.0000022406,0.0000022416,0.0000022425, -0.0000022435,0.0000022451,0.0000022465,0.0000022475,0.0000022483, -0.0000022498,0.0000022525,0.0000022553,0.0000022575,0.0000022594, -0.0000022611,0.0000022632,0.0000022652,0.0000022671,0.0000022698, -0.0000022733,0.0000022766,0.0000022794,0.0000022816,0.0000022828, -0.0000022834,0.0000022837,0.0000022834,0.0000022815,0.0000022785, -0.0000022752,0.0000022713,0.0000022661,0.0000022601,0.0000022555, -0.0000022522,0.0000022505,0.0000022514,0.0000022557,0.0000022613, -0.0000022678,0.0000022737,0.0000022772,0.0000022792,0.0000022815, -0.0000022843,0.0000022869,0.0000022873,0.0000022851,0.0000022821, -0.0000022805,0.0000022789,0.0000022774,0.0000022762,0.0000022732, -0.0000022672,0.0000022601,0.0000022534,0.0000022477,0.0000022432, -0.0000022385,0.0000022310,0.0000022223,0.0000022166,0.0000022115, -0.0000022070,0.0000022083,0.0000022159,0.0000022268,0.0000022363, -0.0000022384,0.0000022324,0.0000022191,0.0000022067,0.0000022004, -0.0000021989,0.0000021988,0.0000021995,0.0000022012,0.0000022025, -0.0000022034,0.0000022032,0.0000022014,0.0000021980,0.0000021940, -0.0000021900,0.0000021857,0.0000021817,0.0000021788,0.0000021777, -0.0000021779,0.0000021782,0.0000021773,0.0000021748,0.0000021716, -0.0000021679,0.0000021641,0.0000021608,0.0000021586,0.0000021571, -0.0000021562,0.0000021550,0.0000021534,0.0000021520,0.0000021521, -0.0000021541,0.0000021580,0.0000021627,0.0000021667,0.0000021690, -0.0000021699,0.0000021696,0.0000021703,0.0000021729,0.0000021774, -0.0000021843,0.0000021927,0.0000022010,0.0000022085,0.0000022155, -0.0000022214,0.0000022255,0.0000022274,0.0000022259,0.0000022190, -0.0000022097,0.0000021996,0.0000021914,0.0000021871,0.0000021850, -0.0000021852,0.0000021874,0.0000021900,0.0000021924,0.0000021944, -0.0000021966,0.0000021991,0.0000022012,0.0000022030,0.0000022043, -0.0000022054,0.0000022058,0.0000022052,0.0000022044,0.0000022032, -0.0000022019,0.0000022004,0.0000021985,0.0000021964,0.0000021945, -0.0000021926,0.0000021908,0.0000021891,0.0000021877,0.0000021872, -0.0000021872,0.0000021870,0.0000021864,0.0000021847,0.0000021815, -0.0000021768,0.0000021707,0.0000021636,0.0000021563,0.0000021493, -0.0000021430,0.0000021383,0.0000021358,0.0000021351,0.0000021353, -0.0000021367,0.0000021390,0.0000021419,0.0000021455,0.0000021497, -0.0000021544,0.0000021592,0.0000021637,0.0000021676,0.0000021702, -0.0000021716,0.0000021728,0.0000021743,0.0000021762,0.0000021786, -0.0000021811,0.0000021838,0.0000021866,0.0000021890,0.0000021904, -0.0000021904,0.0000021904,0.0000021894,0.0000021870,0.0000021860, -0.0000021832,0.0000021799,0.0000021770,0.0000021747,0.0000021729, -0.0000021720,0.0000021716,0.0000021718,0.0000021741,0.0000021768, -0.0000021803,0.0000021843,0.0000021874,0.0000021890,0.0000021891, -0.0000021879,0.0000021865,0.0000021854,0.0000021851,0.0000021848, -0.0000021849,0.0000021854,0.0000021908,0.0000021984,0.0000022065, -0.0000022148,0.0000022212,0.0000022263,0.0000022310,0.0000022363, -0.0000022437,0.0000022535,0.0000022644,0.0000022752,0.0000022850, -0.0000022934,0.0000023001,0.0000023049,0.0000023080,0.0000023100, -0.0000023113,0.0000023124,0.0000023135,0.0000023150,0.0000023169, -0.0000023191,0.0000023211,0.0000023228,0.0000023246,0.0000023264, -0.0000023279,0.0000023289,0.0000023292,0.0000023291,0.0000023286, -0.0000023278,0.0000023266,0.0000023253,0.0000023241,0.0000023228, -0.0000023214,0.0000023200,0.0000023185,0.0000023167,0.0000023149, -0.0000023135,0.0000023123,0.0000023115,0.0000023111,0.0000023109, -0.0000023115,0.0000023118,0.0000023114,0.0000023100,0.0000023078, -0.0000023049,0.0000023014,0.0000022973,0.0000022925,0.0000022871, -0.0000022815,0.0000022761,0.0000022710,0.0000022662,0.0000022623, -0.0000022588,0.0000022555,0.0000022525,0.0000022500,0.0000022482, -0.0000022464,0.0000022443,0.0000022418,0.0000022396,0.0000022384, -0.0000022373,0.0000022332,0.0000022238,0.0000022088,0.0000021909, -0.0000021740,0.0000021613,0.0000021546,0.0000021530,0.0000021541, -0.0000021548,0.0000021526,0.0000021451,0.0000021342,0.0000021226, -0.0000021155,0.0000021142,0.0000021169,0.0000021218,0.0000021268, -0.0000021305,0.0000021331,0.0000021337,0.0000021325,0.0000021294, -0.0000021255,0.0000021221,0.0000021198,0.0000021176,0.0000021148, -0.0000021094,0.0000021016,0.0000020929,0.0000020851,0.0000020789, -0.0000020746,0.0000020722,0.0000020707,0.0000020696,0.0000020686, -0.0000020674,0.0000020664,0.0000020644,0.0000020618,0.0000020578, -0.0000020525,0.0000020457,0.0000020380,0.0000020291,0.0000020195, -0.0000020098,0.0000020011,0.0000019964,0.0000019943,0.0000019946, -0.0000019964,0.0000019993,0.0000020037,0.0000020113,0.0000020233, -0.0000020398,0.0000020581,0.0000020730,0.0000020802,0.0000020817, -0.0000020817,0.0000020819,0.0000020816,0.0000020813,0.0000020816, -0.0000020829,0.0000020837,0.0000020837,0.0000020828,0.0000020811, -0.0000020777,0.0000020716,0.0000020625,0.0000020517,0.0000020419, -0.0000020361,0.0000020372,0.0000020464,0.0000020612,0.0000020783, -0.0000020914,0.0000020991,0.0000021044,0.0000021139,0.0000021299, -0.0000021492,0.0000021679,0.0000021837,0.0000021949,0.0000022019, -0.0000022082,0.0000022159,0.0000022231,0.0000022241,0.0000022200, -0.0000022109,0.0000022002,0.0000021926,0.0000021911,0.0000021915, -0.0000021934,0.0000021953,0.0000021977,0.0000022014,0.0000022062, -0.0000022109,0.0000022143,0.0000022164,0.0000022183,0.0000022212, -0.0000022255,0.0000022308,0.0000022357,0.0000022390,0.0000022387, -0.0000022348,0.0000022238,0.0000022085,0.0000021949,0.0000021856, -0.0000021830,0.0000021821,0.0000021842,0.0000021896,0.0000021999, -0.0000022133,0.0000022260,0.0000022357,0.0000022429,0.0000022490, -0.0000022535,0.0000022563,0.0000022575,0.0000022574,0.0000022571, -0.0000022572,0.0000022581,0.0000022596,0.0000022610,0.0000022618, -0.0000022620,0.0000022619,0.0000022623,0.0000022631,0.0000022643, -0.0000022661,0.0000022665,0.0000022618,0.0000022498,0.0000022335, -0.0000022197,0.0000022122,0.0000022100,0.0000022118,0.0000022161, -0.0000022172,0.0000022131,0.0000022085,0.0000022138,0.0000022277, -0.0000022299,0.0000022217,0.0000022212,0.0000022319,0.0000022433, -0.0000022451,0.0000022416,0.0000022355,0.0000022318,0.0000022253, -0.0000022090,0.0000021890,0.0000021754,0.0000021688,0.0000021640, -0.0000021581,0.0000021522,0.0000021477,0.0000021445,0.0000021423, -0.0000021404,0.0000021384,0.0000021357,0.0000021329,0.0000021302, -0.0000021276,0.0000021254,0.0000021228,0.0000021204,0.0000021186, -0.0000021172,0.0000021158,0.0000021159,0.0000021193,0.0000021246, -0.0000021300,0.0000021354,0.0000021397,0.0000021442,0.0000021500, -0.0000021577,0.0000021695,0.0000021841,0.0000021979,0.0000022108, -0.0000022223,0.0000022298,0.0000022329,0.0000022321,0.0000022302, -0.0000022270,0.0000022242,0.0000022216,0.0000022180,0.0000022113, -0.0000022000,0.0000021842,0.0000021671,0.0000021548,0.0000021545, -0.0000021669,0.0000021854,0.0000021992,0.0000022134,0.0000022334, -0.0000022461,0.0000022342,0.0000022051,0.0000021824,0.0000021784, -0.0000021790,0.0000021848,0.0000021927,0.0000022012,0.0000022078, -0.0000022111,0.0000022118,0.0000022115,0.0000022112,0.0000022115, -0.0000022119,0.0000022122,0.0000022130,0.0000022160,0.0000022218, -0.0000022292,0.0000022355,0.0000022395,0.0000022384,0.0000022329, -0.0000022259,0.0000022196,0.0000022156,0.0000022155,0.0000022193, -0.0000022287,0.0000022423,0.0000022548,0.0000022629,0.0000022690, -0.0000022742,0.0000022771,0.0000022778,0.0000022768,0.0000022740, -0.0000022695,0.0000022640,0.0000022582,0.0000022537,0.0000022503, -0.0000022477,0.0000022429,0.0000022327,0.0000022166,0.0000021989, -0.0000021858,0.0000021812,0.0000021791,0.0000021760,0.0000021686, -0.0000021559,0.0000021402,0.0000021259,0.0000021154,0.0000021088, -0.0000021057,0.0000021050,0.0000021050,0.0000021045,0.0000021025, -0.0000020988,0.0000020948,0.0000020915,0.0000020890,0.0000020870, -0.0000020845,0.0000020804,0.0000020751,0.0000020688,0.0000020620, -0.0000020547,0.0000020481,0.0000020436,0.0000020413,0.0000020397, -0.0000020379,0.0000020370,0.0000020374,0.0000020400,0.0000020452, -0.0000020527,0.0000020616,0.0000020702,0.0000020763,0.0000020793, -0.0000020798,0.0000020801,0.0000020819,0.0000020849,0.0000020877, -0.0000020894,0.0000020896,0.0000020878,0.0000020836,0.0000020778, -0.0000020726,0.0000020704,0.0000020708,0.0000020741,0.0000020786, -0.0000020842,0.0000020910,0.0000020998,0.0000021115,0.0000021246, -0.0000021354,0.0000021402,0.0000021392,0.0000021363,0.0000021342, -0.0000021309,0.0000021242,0.0000021139,0.0000021033,0.0000020920, -0.0000020786,0.0000020653,0.0000020563,0.0000020549,0.0000020590, -0.0000020680,0.0000020782,0.0000020869,0.0000020948,0.0000021036, -0.0000021151,0.0000021271,0.0000021370,0.0000021452,0.0000021530, -0.0000021623,0.0000021736,0.0000021864,0.0000021986,0.0000022071, -0.0000022118,0.0000022146,0.0000022166,0.0000022205,0.0000022272, -0.0000022339,0.0000022372,0.0000022365,0.0000022336,0.0000022298, -0.0000022264,0.0000022242,0.0000022225,0.0000022225,0.0000022290, -0.0000022444,0.0000022646,0.0000022828,0.0000022949,0.0000023019, -0.0000023081,0.0000023175,0.0000023302,0.0000023437,0.0000023553, -0.0000023632,0.0000023674,0.0000023695,0.0000023712,0.0000023726, -0.0000023734,0.0000023738,0.0000023743,0.0000023744,0.0000023741, -0.0000023731,0.0000023714,0.0000023693,0.0000023674,0.0000023655, -0.0000023634,0.0000023599,0.0000023546,0.0000023483,0.0000023416, -0.0000023341,0.0000023260,0.0000023181,0.0000023091,0.0000022979, -0.0000022847,0.0000022709,0.0000022588,0.0000022491,0.0000022406, -0.0000022324,0.0000022241,0.0000022158,0.0000022074,0.0000021976, -0.0000021855,0.0000021732,0.0000021639,0.0000021598,0.0000021584, -0.0000021565,0.0000021532,0.0000021491,0.0000021452,0.0000021421, -0.0000021399,0.0000021393,0.0000021388,0.0000021372,0.0000021349, -0.0000021329,0.0000021310,0.0000021294,0.0000021281,0.0000021272, -0.0000021270,0.0000021273,0.0000021281,0.0000021288,0.0000021291, -0.0000021287,0.0000021281,0.0000021276,0.0000021268,0.0000021253, -0.0000021230,0.0000021209,0.0000021196,0.0000021191,0.0000021193, -0.0000021201,0.0000021210,0.0000021216,0.0000021215,0.0000021210, -0.0000021195,0.0000021169,0.0000021136,0.0000021097,0.0000021059, -0.0000021018,0.0000020990,0.0000020985,0.0000020996,0.0000021017, -0.0000021035,0.0000021043,0.0000021036,0.0000021032,0.0000021014, -0.0000020984,0.0000020953,0.0000020927,0.0000020906,0.0000020889, -0.0000020875,0.0000020870,0.0000020872,0.0000020872,0.0000020871, -0.0000020873,0.0000020878,0.0000020883,0.0000020885,0.0000020888, -0.0000020897,0.0000020912,0.0000020934,0.0000020965,0.0000021000, -0.0000021031,0.0000021055,0.0000021069,0.0000021080,0.0000021084, -0.0000021083,0.0000021083,0.0000021078,0.0000021068,0.0000021055, -0.0000021040,0.0000021022,0.0000021000,0.0000020975,0.0000020945, -0.0000020907,0.0000020866,0.0000020823,0.0000020780,0.0000020738, -0.0000020695,0.0000020648,0.0000020606,0.0000020573,0.0000020546, -0.0000020527,0.0000020515,0.0000020512,0.0000020509,0.0000020506, -0.0000020507,0.0000020519,0.0000020532,0.0000020542,0.0000020547, -0.0000020547,0.0000020550,0.0000020559,0.0000020571,0.0000020581, -0.0000020589,0.0000020594,0.0000020595,0.0000020588,0.0000020576, -0.0000020565,0.0000020553,0.0000020539,0.0000020529,0.0000020526, -0.0000020530,0.0000020541,0.0000020554,0.0000020567,0.0000020575, -0.0000020578,0.0000020577,0.0000020570,0.0000020553,0.0000020525, -0.0000020491,0.0000020461,0.0000020438,0.0000020419,0.0000020401, -0.0000020393,0.0000020400,0.0000020423,0.0000020462,0.0000020512, -0.0000020568,0.0000020618,0.0000020657,0.0000020681,0.0000020690, -0.0000020688,0.0000020672,0.0000020644,0.0000020612,0.0000020576, -0.0000020543,0.0000020516,0.0000020491,0.0000020450,0.0000020378, -0.0000020273,0.0000020155,0.0000020059,0.0000020000,0.0000019968, -0.0000019943,0.0000019920,0.0000019896,0.0000019883,0.0000019879, -0.0000019883,0.0000019889,0.0000019891,0.0000019900,0.0000019919, -0.0000019941,0.0000019951,0.0000019946,0.0000019930,0.0000019897, -0.0000019843,0.0000019787,0.0000019754,0.0000019737,0.0000019701, -0.0000019679,0.0000019797,0.0000019981,0.0000020147,0.0000020300, -0.0000020308,0.0000020269,0.0000020326,0.0000020365,0.0000020407, -0.0000020497,0.0000020505,0.0000020384,0.0000020263,0.0000020232, -0.0000020252,0.0000020276,0.0000020284,0.0000020287,0.0000020296, -0.0000020308,0.0000020318,0.0000020324,0.0000020321,0.0000020307, -0.0000020288,0.0000020279,0.0000020277,0.0000020282,0.0000020296, -0.0000020318,0.0000020347,0.0000020365,0.0000020367,0.0000020361, -0.0000020367,0.0000020377,0.0000020354,0.0000020317,0.0000020302, -0.0000020275,0.0000020262,0.0000020294,0.0000020356,0.0000020412, -0.0000020451,0.0000020484,0.0000020516,0.0000020545,0.0000020556, -0.0000020542,0.0000020491,0.0000020423,0.0000020368,0.0000020320, -0.0000020282,0.0000020281,0.0000020307,0.0000020344,0.0000020371, -0.0000020378,0.0000020368,0.0000020336,0.0000020288,0.0000020234, -0.0000020189,0.0000020166,0.0000020152,0.0000020153,0.0000020163, -0.0000020180,0.0000020190,0.0000020186,0.0000020169,0.0000020147, -0.0000020130,0.0000020110,0.0000020089,0.0000020072,0.0000020064, -0.0000020062,0.0000020065,0.0000020076,0.0000020096,0.0000020128, -0.0000020162,0.0000020188,0.0000020202,0.0000020210,0.0000020213, -0.0000020215,0.0000020216,0.0000020217,0.0000020211,0.0000020196, -0.0000020179,0.0000020164,0.0000020147,0.0000020128,0.0000020114, -0.0000020110,0.0000020113,0.0000020119,0.0000020129,0.0000020141, -0.0000020156,0.0000020171,0.0000020185,0.0000020201,0.0000020220, -0.0000020239,0.0000020254,0.0000020267,0.0000020277,0.0000020283, -0.0000020287,0.0000020287,0.0000020280,0.0000020266,0.0000020245, -0.0000020226,0.0000020216,0.0000020211,0.0000020211,0.0000020216, -0.0000020223,0.0000020225,0.0000020223,0.0000020220,0.0000020221, -0.0000020228,0.0000020237,0.0000020249,0.0000020262,0.0000020272, -0.0000020278,0.0000020280,0.0000020280,0.0000020279,0.0000020277, -0.0000020274,0.0000020269,0.0000020255,0.0000020231,0.0000020193, -0.0000020148,0.0000020099,0.0000020054,0.0000020025,0.0000020018, -0.0000020032,0.0000020060,0.0000020087,0.0000020107,0.0000020118, -0.0000020124,0.0000020130,0.0000020143,0.0000020163,0.0000020190, -0.0000020227,0.0000020275,0.0000020313,0.0000020326,0.0000020336, -0.0000020384,0.0000020489,0.0000020614,0.0000020708,0.0000020777, -0.0000020831,0.0000020844,0.0000020836,0.0000020819,0.0000020799, -0.0000020766,0.0000020718,0.0000020784,0.0000020747,0.0000020696, -0.0000020663,0.0000020654,0.0000020671,0.0000020711,0.0000020769, -0.0000020831,0.0000020891,0.0000020932,0.0000020946,0.0000020952, -0.0000020976,0.0000021036,0.0000021121,0.0000021214,0.0000021286, -0.0000021325,0.0000021325,0.0000021289,0.0000021243,0.0000021191, -0.0000021135,0.0000021090,0.0000021049,0.0000021003,0.0000020946, -0.0000020880,0.0000020809,0.0000020743,0.0000020687,0.0000020641, -0.0000020608,0.0000020594,0.0000020595,0.0000020607,0.0000020623, -0.0000020644,0.0000020670,0.0000020701,0.0000020737,0.0000020784, -0.0000020833,0.0000020867,0.0000020879,0.0000020881,0.0000020878, -0.0000020863,0.0000020833,0.0000020795,0.0000020757,0.0000020720, -0.0000020690,0.0000020679,0.0000020688,0.0000020714,0.0000020752, -0.0000020785,0.0000020798,0.0000020800,0.0000020794,0.0000020797, -0.0000020823,0.0000020876,0.0000020939,0.0000020993,0.0000021034, -0.0000021069,0.0000021104,0.0000021132,0.0000021151,0.0000021158, -0.0000021157,0.0000021153,0.0000021146,0.0000021134,0.0000021128, -0.0000021145,0.0000021182,0.0000021216,0.0000021230,0.0000021230, -0.0000021225,0.0000021219,0.0000021215,0.0000021214,0.0000021214, -0.0000021213,0.0000021210,0.0000021206,0.0000021198,0.0000021188, -0.0000021181,0.0000021180,0.0000021184,0.0000021190,0.0000021193, -0.0000021195,0.0000021193,0.0000021182,0.0000021167,0.0000021150, -0.0000021130,0.0000021112,0.0000021103,0.0000021101,0.0000021109, -0.0000021121,0.0000021130,0.0000021135,0.0000021139,0.0000021143, -0.0000021142,0.0000021138,0.0000021133,0.0000021124,0.0000021111, -0.0000021088,0.0000021052,0.0000021010,0.0000020973,0.0000020947, -0.0000020933,0.0000020926,0.0000020928,0.0000020936,0.0000020952, -0.0000020974,0.0000020998,0.0000021022,0.0000021047,0.0000021069, -0.0000021085,0.0000021093,0.0000021098,0.0000021101,0.0000021109, -0.0000021133,0.0000021161,0.0000021193,0.0000021230,0.0000021267, -0.0000021302,0.0000021335,0.0000021361,0.0000021378,0.0000021386, -0.0000021388,0.0000021388,0.0000021389,0.0000021380,0.0000021363, -0.0000021334,0.0000021296,0.0000021266,0.0000021256,0.0000021257, -0.0000021264,0.0000021268,0.0000021272,0.0000021274,0.0000021272, -0.0000021264,0.0000021253,0.0000021240,0.0000021221,0.0000021199, -0.0000021179,0.0000021167,0.0000021159,0.0000021151,0.0000021145, -0.0000021144,0.0000021151,0.0000021167,0.0000021192,0.0000021226, -0.0000021269,0.0000021312,0.0000021344,0.0000021361,0.0000021369, -0.0000021370,0.0000021362,0.0000021347,0.0000021335,0.0000021337, -0.0000021352,0.0000021362,0.0000021390,0.0000021468,0.0000021565, -0.0000021618,0.0000021648,0.0000021726,0.0000021817,0.0000021849, -0.0000021828,0.0000021730,0.0000021620,0.0000021608,0.0000021676, -0.0000021726,0.0000021720,0.0000021704,0.0000021711,0.0000021737, -0.0000021760,0.0000021778,0.0000021784,0.0000021780,0.0000021768, -0.0000021750,0.0000021727,0.0000021707,0.0000021701,0.0000021704, -0.0000021718,0.0000021746,0.0000021787,0.0000021835,0.0000021878, -0.0000021910,0.0000021934,0.0000021954,0.0000021973,0.0000021992, -0.0000022014,0.0000022034,0.0000022050,0.0000022065,0.0000022085, -0.0000022109,0.0000022133,0.0000022156,0.0000022178,0.0000022201, -0.0000022225,0.0000022255,0.0000022290,0.0000022324,0.0000022357, -0.0000022389,0.0000022418,0.0000022444,0.0000022466,0.0000022482, -0.0000022493,0.0000022501,0.0000022504,0.0000022500,0.0000022484, -0.0000022460,0.0000022428,0.0000022393,0.0000022355,0.0000022314, -0.0000022269,0.0000022223,0.0000022178,0.0000022133,0.0000022090, -0.0000022049,0.0000022010,0.0000021978,0.0000021954,0.0000021936, -0.0000021919,0.0000021896,0.0000021866,0.0000021833,0.0000021794, -0.0000021752,0.0000021709,0.0000021669,0.0000021636,0.0000021611, -0.0000021589,0.0000021565,0.0000021529,0.0000021480,0.0000021424, -0.0000021365,0.0000021307,0.0000021251,0.0000021208,0.0000021187, -0.0000021183,0.0000021182,0.0000021183,0.0000021198,0.0000021240, -0.0000021296,0.0000021338,0.0000021350,0.0000021347,0.0000021330, -0.0000021294,0.0000021231,0.0000021153,0.0000021084,0.0000021034, -0.0000021009,0.0000021003,0.0000021009,0.0000021021,0.0000021041, -0.0000021074,0.0000021115,0.0000021157,0.0000021193,0.0000021223, -0.0000021252,0.0000021293,0.0000021341,0.0000021381,0.0000021402, -0.0000021405,0.0000021388,0.0000021350,0.0000021295,0.0000021235, -0.0000021190,0.0000021169,0.0000021165,0.0000021161,0.0000021156, -0.0000021153,0.0000021138,0.0000021109,0.0000021076,0.0000021050, -0.0000021021,0.0000020998,0.0000020994,0.0000020973,0.0000020885, -0.0000020780,0.0000020752,0.0000020785,0.0000020832,0.0000020842, -0.0000020828,0.0000020757,0.0000020663,0.0000020615,0.0000020592, -0.0000020651,0.0000020772,0.0000020801,0.0000020791,0.0000020798, -0.0000020868,0.0000020951,0.0000020996,0.0000021000,0.0000020966, -0.0000020951,0.0000020973,0.0000021069,0.0000021164,0.0000021211, -0.0000021257,0.0000021343,0.0000021430,0.0000021460,0.0000021501, -0.0000021617,0.0000021655,0.0000021631,0.0000021628,0.0000021711, -0.0000021842,0.0000021944,0.0000022019,0.0000021995,0.0000021931, -0.0000021977,0.0000022138,0.0000022180,0.0000022102,0.0000021954, -0.0000021798,0.0000021709,0.0000021708,0.0000021730,0.0000021802, -0.0000021942,0.0000022069,0.0000022200,0.0000022297,0.0000022300, -0.0000022250,0.0000022197,0.0000022156,0.0000022135,0.0000022134, -0.0000022157,0.0000022198,0.0000022246,0.0000022296,0.0000022333, -0.0000022372,0.0000022418,0.0000022476,0.0000022547,0.0000022619, -0.0000022685,0.0000022741,0.0000022789,0.0000022827,0.0000022858, -0.0000022868,0.0000022871,0.0000022845,0.0000022807,0.0000022786, -0.0000022793,0.0000022827,0.0000022872,0.0000022918,0.0000022948, -0.0000022955,0.0000022932,0.0000022867,0.0000022794,0.0000022717, -0.0000022644,0.0000022597,0.0000022583,0.0000022588,0.0000022579, -0.0000022524,0.0000022432,0.0000022351,0.0000022300,0.0000022286, -0.0000022285,0.0000022260,0.0000022209,0.0000022109,0.0000022072, -0.0000022127,0.0000022149,0.0000022119,0.0000022056,0.0000021979, -0.0000021934,0.0000021938,0.0000021989,0.0000022046,0.0000022098, -0.0000022131,0.0000022147,0.0000022149,0.0000022131,0.0000022096, -0.0000022071,0.0000022067,0.0000022092,0.0000022136,0.0000022188, -0.0000022245,0.0000022303,0.0000022348,0.0000022373,0.0000022386, -0.0000022388,0.0000022388,0.0000022393,0.0000022399,0.0000022404, -0.0000022415,0.0000022431,0.0000022439,0.0000022440,0.0000022443, -0.0000022458,0.0000022487,0.0000022514,0.0000022533,0.0000022543, -0.0000022551,0.0000022561,0.0000022575,0.0000022595,0.0000022624, -0.0000022654,0.0000022682,0.0000022709,0.0000022733,0.0000022747, -0.0000022750,0.0000022747,0.0000022737,0.0000022723,0.0000022706, -0.0000022668,0.0000022614,0.0000022566,0.0000022536,0.0000022514, -0.0000022500,0.0000022501,0.0000022532,0.0000022587,0.0000022647, -0.0000022698,0.0000022734,0.0000022760,0.0000022785,0.0000022819, -0.0000022854,0.0000022866,0.0000022857,0.0000022838,0.0000022822, -0.0000022802,0.0000022781,0.0000022762,0.0000022722,0.0000022661, -0.0000022593,0.0000022521,0.0000022460,0.0000022405,0.0000022328, -0.0000022231,0.0000022151,0.0000022108,0.0000022057,0.0000022004, -0.0000022015,0.0000022081,0.0000022180,0.0000022288,0.0000022343, -0.0000022333,0.0000022266,0.0000022161,0.0000022063,0.0000022006, -0.0000021983,0.0000021984,0.0000022002,0.0000022018,0.0000022032, -0.0000022040,0.0000022042,0.0000022030,0.0000022003,0.0000021968, -0.0000021927,0.0000021879,0.0000021834,0.0000021801,0.0000021786, -0.0000021782,0.0000021776,0.0000021757,0.0000021728,0.0000021695, -0.0000021661,0.0000021624,0.0000021592,0.0000021567,0.0000021547, -0.0000021532,0.0000021514,0.0000021492,0.0000021473,0.0000021468, -0.0000021474,0.0000021498,0.0000021542,0.0000021603,0.0000021662, -0.0000021706,0.0000021725,0.0000021728,0.0000021730,0.0000021745, -0.0000021785,0.0000021856,0.0000021946,0.0000022041,0.0000022124, -0.0000022185,0.0000022225,0.0000022250,0.0000022247,0.0000022209, -0.0000022143,0.0000022047,0.0000021943,0.0000021861,0.0000021806, -0.0000021778,0.0000021788,0.0000021814,0.0000021841,0.0000021866, -0.0000021890,0.0000021917,0.0000021941,0.0000021962,0.0000021982, -0.0000021998,0.0000022007,0.0000022009,0.0000022006,0.0000021997, -0.0000021982,0.0000021961,0.0000021935,0.0000021904,0.0000021872, -0.0000021844,0.0000021819,0.0000021795,0.0000021779,0.0000021776, -0.0000021778,0.0000021780,0.0000021776,0.0000021759,0.0000021727, -0.0000021679,0.0000021616,0.0000021543,0.0000021468,0.0000021398, -0.0000021337,0.0000021295,0.0000021280,0.0000021281,0.0000021292, -0.0000021304,0.0000021314,0.0000021324,0.0000021339,0.0000021361, -0.0000021393,0.0000021431,0.0000021472,0.0000021513,0.0000021547, -0.0000021573,0.0000021595,0.0000021617,0.0000021637,0.0000021657, -0.0000021675,0.0000021695,0.0000021721,0.0000021749,0.0000021773, -0.0000021789,0.0000021800,0.0000021808,0.0000021815,0.0000021815, -0.0000021810,0.0000021801,0.0000021798,0.0000021789,0.0000021773, -0.0000021771,0.0000021754,0.0000021736,0.0000021720,0.0000021701, -0.0000021691,0.0000021702,0.0000021725,0.0000021754,0.0000021787, -0.0000021806,0.0000021815,0.0000021820,0.0000021826,0.0000021833, -0.0000021840,0.0000021839,0.0000021834,0.0000021830,0.0000021842, -0.0000021907,0.0000021982,0.0000022061,0.0000022139,0.0000022199, -0.0000022250,0.0000022308,0.0000022377,0.0000022456,0.0000022542, -0.0000022629,0.0000022708,0.0000022780,0.0000022843,0.0000022895, -0.0000022936,0.0000022966,0.0000022988,0.0000023012,0.0000023044, -0.0000023083,0.0000023118,0.0000023143,0.0000023162,0.0000023179, -0.0000023191,0.0000023197,0.0000023196,0.0000023191,0.0000023180, -0.0000023169,0.0000023156,0.0000023139,0.0000023121,0.0000023102, -0.0000023084,0.0000023066,0.0000023049,0.0000023030,0.0000023012, -0.0000022996,0.0000022979,0.0000022964,0.0000022953,0.0000022943, -0.0000022939,0.0000022936,0.0000022925,0.0000022910,0.0000022887, -0.0000022859,0.0000022826,0.0000022789,0.0000022750,0.0000022705, -0.0000022657,0.0000022608,0.0000022562,0.0000022527,0.0000022503, -0.0000022481,0.0000022459,0.0000022440,0.0000022428,0.0000022417, -0.0000022405,0.0000022390,0.0000022370,0.0000022345,0.0000022314, -0.0000022261,0.0000022170,0.0000022041,0.0000021890,0.0000021742, -0.0000021625,0.0000021558,0.0000021542,0.0000021557,0.0000021583, -0.0000021583,0.0000021537,0.0000021441,0.0000021321,0.0000021228, -0.0000021182,0.0000021186,0.0000021224,0.0000021270,0.0000021309, -0.0000021335,0.0000021351,0.0000021351,0.0000021335,0.0000021299, -0.0000021259,0.0000021223,0.0000021195,0.0000021162,0.0000021110, -0.0000021030,0.0000020939,0.0000020853,0.0000020780,0.0000020723, -0.0000020682,0.0000020659,0.0000020648,0.0000020641,0.0000020638, -0.0000020640,0.0000020647,0.0000020647,0.0000020640,0.0000020622, -0.0000020588,0.0000020539,0.0000020477,0.0000020397,0.0000020305, -0.0000020203,0.0000020089,0.0000019986,0.0000019927,0.0000019907, -0.0000019904,0.0000019918,0.0000019946,0.0000019993,0.0000020065, -0.0000020166,0.0000020305,0.0000020484,0.0000020652,0.0000020755, -0.0000020789,0.0000020792,0.0000020789,0.0000020791,0.0000020798, -0.0000020819,0.0000020842,0.0000020851,0.0000020851,0.0000020842, -0.0000020826,0.0000020801,0.0000020752,0.0000020676,0.0000020583, -0.0000020478,0.0000020381,0.0000020351,0.0000020402,0.0000020550, -0.0000020730,0.0000020879,0.0000020958,0.0000020990,0.0000021043, -0.0000021160,0.0000021331,0.0000021522,0.0000021708,0.0000021858, -0.0000021957,0.0000022033,0.0000022110,0.0000022177,0.0000022214, -0.0000022214,0.0000022157,0.0000022060,0.0000021976,0.0000021926, -0.0000021918,0.0000021927,0.0000021942,0.0000021964,0.0000021998, -0.0000022043,0.0000022090,0.0000022131,0.0000022158,0.0000022174, -0.0000022190,0.0000022212,0.0000022244,0.0000022287,0.0000022331, -0.0000022360,0.0000022355,0.0000022307,0.0000022198,0.0000022045, -0.0000021911,0.0000021807,0.0000021778,0.0000021766,0.0000021794, -0.0000021852,0.0000021943,0.0000022061,0.0000022180,0.0000022287, -0.0000022373,0.0000022434,0.0000022470,0.0000022485,0.0000022484, -0.0000022479,0.0000022478,0.0000022487,0.0000022507,0.0000022534, -0.0000022560,0.0000022581,0.0000022599,0.0000022614,0.0000022626, -0.0000022626,0.0000022596,0.0000022511,0.0000022374,0.0000022230, -0.0000022122,0.0000022067,0.0000022052,0.0000022070,0.0000022111, -0.0000022114,0.0000022062,0.0000022046,0.0000022132,0.0000022248, -0.0000022246,0.0000022182,0.0000022212,0.0000022343,0.0000022429, -0.0000022432,0.0000022382,0.0000022319,0.0000022275,0.0000022186, -0.0000021999,0.0000021801,0.0000021682,0.0000021629,0.0000021581, -0.0000021521,0.0000021454,0.0000021394,0.0000021354,0.0000021331, -0.0000021321,0.0000021316,0.0000021309,0.0000021296,0.0000021288, -0.0000021285,0.0000021272,0.0000021251,0.0000021225,0.0000021197, -0.0000021173,0.0000021154,0.0000021131,0.0000021119,0.0000021133, -0.0000021182,0.0000021246,0.0000021311,0.0000021363,0.0000021402, -0.0000021447,0.0000021503,0.0000021593,0.0000021730,0.0000021865, -0.0000021991,0.0000022126,0.0000022233,0.0000022292,0.0000022313, -0.0000022303,0.0000022276,0.0000022245,0.0000022221,0.0000022205, -0.0000022175,0.0000022111,0.0000021997,0.0000021836,0.0000021663, -0.0000021546,0.0000021537,0.0000021670,0.0000021852,0.0000021995, -0.0000022146,0.0000022345,0.0000022458,0.0000022368,0.0000022098, -0.0000021870,0.0000021805,0.0000021816,0.0000021876,0.0000021948, -0.0000022017,0.0000022068,0.0000022095,0.0000022105,0.0000022101, -0.0000022101,0.0000022109,0.0000022123,0.0000022135,0.0000022155, -0.0000022199,0.0000022270,0.0000022353,0.0000022416,0.0000022456, -0.0000022447,0.0000022398,0.0000022322,0.0000022241,0.0000022188, -0.0000022188,0.0000022218,0.0000022306,0.0000022438,0.0000022561, -0.0000022643,0.0000022693,0.0000022724,0.0000022732,0.0000022723, -0.0000022701,0.0000022668,0.0000022627,0.0000022578,0.0000022531, -0.0000022488,0.0000022453,0.0000022413,0.0000022358,0.0000022254, -0.0000022101,0.0000021940,0.0000021829,0.0000021786,0.0000021761, -0.0000021723,0.0000021649,0.0000021527,0.0000021381,0.0000021244, -0.0000021146,0.0000021096,0.0000021082,0.0000021081,0.0000021081, -0.0000021073,0.0000021046,0.0000021007,0.0000020967,0.0000020930, -0.0000020898,0.0000020871,0.0000020841,0.0000020804,0.0000020761, -0.0000020711,0.0000020647,0.0000020574,0.0000020505,0.0000020456, -0.0000020421,0.0000020393,0.0000020374,0.0000020361,0.0000020357, -0.0000020371,0.0000020413,0.0000020482,0.0000020570,0.0000020660, -0.0000020731,0.0000020763,0.0000020767,0.0000020767,0.0000020776, -0.0000020798,0.0000020831,0.0000020862,0.0000020873,0.0000020859, -0.0000020814,0.0000020755,0.0000020700,0.0000020663,0.0000020645, -0.0000020659,0.0000020698,0.0000020753,0.0000020823,0.0000020912, -0.0000021028,0.0000021163,0.0000021279,0.0000021333,0.0000021324, -0.0000021293,0.0000021270,0.0000021244,0.0000021177,0.0000021094, -0.0000021005,0.0000020901,0.0000020773,0.0000020640,0.0000020545, -0.0000020511,0.0000020529,0.0000020608,0.0000020710,0.0000020803, -0.0000020881,0.0000020976,0.0000021102,0.0000021234,0.0000021342, -0.0000021426,0.0000021504,0.0000021591,0.0000021691,0.0000021804, -0.0000021915,0.0000021992,0.0000022037,0.0000022068,0.0000022093, -0.0000022131,0.0000022194,0.0000022259,0.0000022295,0.0000022302, -0.0000022282,0.0000022253,0.0000022236,0.0000022222,0.0000022205, -0.0000022198,0.0000022249,0.0000022381,0.0000022567,0.0000022745, -0.0000022876,0.0000022961,0.0000023026,0.0000023101,0.0000023201, -0.0000023319,0.0000023435,0.0000023519,0.0000023566,0.0000023591, -0.0000023608,0.0000023621,0.0000023627,0.0000023629,0.0000023629, -0.0000023624,0.0000023616,0.0000023603,0.0000023584,0.0000023559, -0.0000023531,0.0000023503,0.0000023468,0.0000023420,0.0000023363, -0.0000023305,0.0000023240,0.0000023164,0.0000023085,0.0000023001, -0.0000022902,0.0000022790,0.0000022674,0.0000022560,0.0000022455, -0.0000022363,0.0000022282,0.0000022202,0.0000022125,0.0000022050, -0.0000021964,0.0000021858,0.0000021741,0.0000021639,0.0000021578, -0.0000021556,0.0000021539,0.0000021508,0.0000021468,0.0000021430, -0.0000021403,0.0000021388,0.0000021381,0.0000021380,0.0000021372, -0.0000021351,0.0000021327,0.0000021301,0.0000021277,0.0000021257, -0.0000021239,0.0000021224,0.0000021218,0.0000021220,0.0000021225, -0.0000021229,0.0000021232,0.0000021237,0.0000021241,0.0000021239, -0.0000021232,0.0000021220,0.0000021203,0.0000021185,0.0000021168, -0.0000021156,0.0000021154,0.0000021164,0.0000021183,0.0000021202, -0.0000021212,0.0000021210,0.0000021195,0.0000021167,0.0000021129, -0.0000021082,0.0000021028,0.0000020975,0.0000020934,0.0000020911, -0.0000020915,0.0000020938,0.0000020964,0.0000020987,0.0000021010, -0.0000021025,0.0000021020,0.0000021005,0.0000020987,0.0000020970, -0.0000020953,0.0000020934,0.0000020914,0.0000020899,0.0000020888, -0.0000020874,0.0000020865,0.0000020851,0.0000020835,0.0000020818, -0.0000020801,0.0000020787,0.0000020778,0.0000020778,0.0000020787, -0.0000020808,0.0000020832,0.0000020855,0.0000020873,0.0000020892, -0.0000020911,0.0000020923,0.0000020936,0.0000020949,0.0000020958, -0.0000020960,0.0000020957,0.0000020942,0.0000020916,0.0000020881, -0.0000020837,0.0000020790,0.0000020744,0.0000020704,0.0000020673, -0.0000020647,0.0000020624,0.0000020603,0.0000020579,0.0000020559, -0.0000020542,0.0000020528,0.0000020518,0.0000020516,0.0000020515, -0.0000020511,0.0000020509,0.0000020517,0.0000020531,0.0000020543, -0.0000020550,0.0000020551,0.0000020544,0.0000020533,0.0000020529, -0.0000020527,0.0000020520,0.0000020510,0.0000020504,0.0000020500, -0.0000020493,0.0000020490,0.0000020492,0.0000020493,0.0000020490, -0.0000020486,0.0000020487,0.0000020494,0.0000020506,0.0000020522, -0.0000020542,0.0000020558,0.0000020565,0.0000020565,0.0000020560, -0.0000020546,0.0000020526,0.0000020498,0.0000020468,0.0000020446, -0.0000020432,0.0000020423,0.0000020419,0.0000020420,0.0000020435, -0.0000020460,0.0000020499,0.0000020547,0.0000020594,0.0000020632, -0.0000020659,0.0000020672,0.0000020674,0.0000020661,0.0000020642, -0.0000020620,0.0000020590,0.0000020553,0.0000020518,0.0000020487, -0.0000020455,0.0000020408,0.0000020325,0.0000020209,0.0000020093, -0.0000020012,0.0000019968,0.0000019936,0.0000019899,0.0000019869, -0.0000019849,0.0000019847,0.0000019854,0.0000019861,0.0000019864, -0.0000019867,0.0000019879,0.0000019900,0.0000019915,0.0000019918, -0.0000019914,0.0000019897,0.0000019851,0.0000019788,0.0000019741, -0.0000019719,0.0000019681,0.0000019647,0.0000019737,0.0000019924, -0.0000020097,0.0000020261,0.0000020289,0.0000020264,0.0000020319, -0.0000020374,0.0000020422,0.0000020506,0.0000020512,0.0000020394, -0.0000020273,0.0000020243,0.0000020263,0.0000020282,0.0000020282, -0.0000020280,0.0000020283,0.0000020286,0.0000020295,0.0000020305, -0.0000020304,0.0000020291,0.0000020279,0.0000020274,0.0000020275, -0.0000020280,0.0000020298,0.0000020328,0.0000020356,0.0000020365, -0.0000020359,0.0000020354,0.0000020362,0.0000020361,0.0000020319, -0.0000020283,0.0000020272,0.0000020261,0.0000020275,0.0000020325, -0.0000020384,0.0000020429,0.0000020461,0.0000020491,0.0000020524, -0.0000020546,0.0000020542,0.0000020495,0.0000020428,0.0000020369, -0.0000020323,0.0000020286,0.0000020271,0.0000020295,0.0000020347, -0.0000020393,0.0000020425,0.0000020436,0.0000020419,0.0000020377, -0.0000020324,0.0000020261,0.0000020203,0.0000020162,0.0000020137, -0.0000020117,0.0000020106,0.0000020105,0.0000020106,0.0000020105, -0.0000020099,0.0000020093,0.0000020091,0.0000020083,0.0000020072, -0.0000020063,0.0000020058,0.0000020054,0.0000020048,0.0000020045, -0.0000020054,0.0000020080,0.0000020113,0.0000020140,0.0000020159, -0.0000020170,0.0000020174,0.0000020173,0.0000020172,0.0000020169, -0.0000020159,0.0000020147,0.0000020135,0.0000020126,0.0000020116, -0.0000020105,0.0000020099,0.0000020101,0.0000020109,0.0000020119, -0.0000020130,0.0000020142,0.0000020155,0.0000020166,0.0000020177, -0.0000020190,0.0000020202,0.0000020215,0.0000020227,0.0000020239, -0.0000020248,0.0000020256,0.0000020266,0.0000020278,0.0000020290, -0.0000020295,0.0000020294,0.0000020282,0.0000020263,0.0000020248, -0.0000020243,0.0000020246,0.0000020251,0.0000020253,0.0000020251, -0.0000020250,0.0000020249,0.0000020249,0.0000020250,0.0000020254, -0.0000020259,0.0000020266,0.0000020268,0.0000020268,0.0000020268, -0.0000020263,0.0000020251,0.0000020237,0.0000020226,0.0000020221, -0.0000020216,0.0000020204,0.0000020187,0.0000020155,0.0000020105, -0.0000020050,0.0000020010,0.0000019992,0.0000019990,0.0000019999, -0.0000020014,0.0000020030,0.0000020042,0.0000020051,0.0000020063, -0.0000020089,0.0000020127,0.0000020170,0.0000020213,0.0000020262, -0.0000020305,0.0000020326,0.0000020337,0.0000020370,0.0000020448, -0.0000020560,0.0000020663,0.0000020739,0.0000020798,0.0000020833, -0.0000020831,0.0000020822,0.0000020815,0.0000020806,0.0000020817, -0.0000020811,0.0000020793,0.0000020755,0.0000020699,0.0000020653, -0.0000020641,0.0000020673,0.0000020731,0.0000020800,0.0000020861, -0.0000020909,0.0000020945,0.0000020958,0.0000020962,0.0000020971, -0.0000021004,0.0000021053,0.0000021106,0.0000021152,0.0000021181, -0.0000021182,0.0000021168,0.0000021143,0.0000021108,0.0000021073, -0.0000021032,0.0000020986,0.0000020926,0.0000020852,0.0000020774, -0.0000020704,0.0000020650,0.0000020612,0.0000020592,0.0000020589, -0.0000020598,0.0000020613,0.0000020633,0.0000020663,0.0000020700, -0.0000020746,0.0000020798,0.0000020844,0.0000020870,0.0000020875, -0.0000020876,0.0000020876,0.0000020872,0.0000020853,0.0000020824, -0.0000020793,0.0000020762,0.0000020734,0.0000020720,0.0000020723, -0.0000020742,0.0000020766,0.0000020787,0.0000020796,0.0000020799, -0.0000020801,0.0000020814,0.0000020847,0.0000020893,0.0000020938, -0.0000020975,0.0000021002,0.0000021023,0.0000021048,0.0000021077, -0.0000021101,0.0000021117,0.0000021126,0.0000021131,0.0000021135, -0.0000021129,0.0000021114,0.0000021107,0.0000021123,0.0000021160, -0.0000021190,0.0000021198,0.0000021198,0.0000021200,0.0000021205, -0.0000021212,0.0000021219,0.0000021227,0.0000021232,0.0000021233, -0.0000021229,0.0000021217,0.0000021203,0.0000021195,0.0000021199, -0.0000021209,0.0000021219,0.0000021221,0.0000021218,0.0000021204, -0.0000021187,0.0000021168,0.0000021149,0.0000021131,0.0000021120, -0.0000021125,0.0000021145,0.0000021164,0.0000021176,0.0000021182, -0.0000021184,0.0000021184,0.0000021181,0.0000021170,0.0000021158, -0.0000021147,0.0000021135,0.0000021118,0.0000021092,0.0000021059, -0.0000021024,0.0000020992,0.0000020970,0.0000020958,0.0000020953, -0.0000020955,0.0000020966,0.0000020982,0.0000020999,0.0000021019, -0.0000021039,0.0000021060,0.0000021078,0.0000021089,0.0000021095, -0.0000021099,0.0000021109,0.0000021124,0.0000021145,0.0000021172, -0.0000021206,0.0000021241,0.0000021273,0.0000021302,0.0000021326, -0.0000021344,0.0000021357,0.0000021368,0.0000021379,0.0000021388, -0.0000021394,0.0000021395,0.0000021393,0.0000021370,0.0000021340, -0.0000021316,0.0000021308,0.0000021308,0.0000021311,0.0000021310, -0.0000021306,0.0000021297,0.0000021284,0.0000021269,0.0000021250, -0.0000021228,0.0000021203,0.0000021178,0.0000021162,0.0000021155, -0.0000021149,0.0000021139,0.0000021132,0.0000021132,0.0000021144, -0.0000021166,0.0000021193,0.0000021225,0.0000021258,0.0000021289, -0.0000021315,0.0000021335,0.0000021350,0.0000021357,0.0000021349, -0.0000021334,0.0000021323,0.0000021326,0.0000021345,0.0000021363, -0.0000021382,0.0000021440,0.0000021536,0.0000021610,0.0000021639, -0.0000021692,0.0000021789,0.0000021854,0.0000021854,0.0000021797, -0.0000021679,0.0000021610,0.0000021639,0.0000021724,0.0000021764, -0.0000021755,0.0000021741,0.0000021745,0.0000021761,0.0000021774, -0.0000021779,0.0000021777,0.0000021763,0.0000021740,0.0000021709, -0.0000021674,0.0000021645,0.0000021627,0.0000021624,0.0000021629, -0.0000021649,0.0000021681,0.0000021715,0.0000021742,0.0000021764, -0.0000021782,0.0000021797,0.0000021813,0.0000021832,0.0000021849, -0.0000021861,0.0000021872,0.0000021885,0.0000021904,0.0000021926, -0.0000021947,0.0000021967,0.0000021988,0.0000022009,0.0000022031, -0.0000022058,0.0000022088,0.0000022120,0.0000022153,0.0000022186, -0.0000022217,0.0000022244,0.0000022269,0.0000022292,0.0000022317, -0.0000022338,0.0000022353,0.0000022361,0.0000022360,0.0000022347, -0.0000022325,0.0000022300,0.0000022271,0.0000022236,0.0000022195, -0.0000022147,0.0000022097,0.0000022044,0.0000021989,0.0000021932, -0.0000021879,0.0000021836,0.0000021806,0.0000021785,0.0000021765, -0.0000021740,0.0000021714,0.0000021686,0.0000021660,0.0000021638, -0.0000021621,0.0000021607,0.0000021592,0.0000021571,0.0000021540, -0.0000021498,0.0000021447,0.0000021391,0.0000021334,0.0000021274, -0.0000021211,0.0000021157,0.0000021129,0.0000021126,0.0000021124, -0.0000021121,0.0000021129,0.0000021170,0.0000021240,0.0000021303, -0.0000021334,0.0000021343,0.0000021341,0.0000021321,0.0000021275, -0.0000021207,0.0000021138,0.0000021076,0.0000021026,0.0000021002, -0.0000020999,0.0000021005,0.0000021022,0.0000021057,0.0000021097, -0.0000021132,0.0000021164,0.0000021195,0.0000021225,0.0000021260, -0.0000021312,0.0000021365,0.0000021405,0.0000021424,0.0000021423, -0.0000021400,0.0000021352,0.0000021294,0.0000021243,0.0000021205, -0.0000021188,0.0000021182,0.0000021180,0.0000021177,0.0000021161, -0.0000021128,0.0000021093,0.0000021069,0.0000021041,0.0000021012, -0.0000021002,0.0000020985,0.0000020914,0.0000020793,0.0000020734, -0.0000020749,0.0000020791,0.0000020806,0.0000020798,0.0000020736, -0.0000020651,0.0000020609,0.0000020594,0.0000020661,0.0000020770, -0.0000020789,0.0000020788,0.0000020806,0.0000020879,0.0000020951, -0.0000020984,0.0000020977,0.0000020938,0.0000020922,0.0000020949, -0.0000021067,0.0000021159,0.0000021204,0.0000021275,0.0000021382, -0.0000021450,0.0000021460,0.0000021544,0.0000021636,0.0000021631, -0.0000021601,0.0000021633,0.0000021766,0.0000021888,0.0000021989, -0.0000022003,0.0000021953,0.0000021968,0.0000022131,0.0000022230, -0.0000022179,0.0000022028,0.0000021859,0.0000021741,0.0000021724, -0.0000021734,0.0000021805,0.0000021961,0.0000022112,0.0000022266, -0.0000022366,0.0000022365,0.0000022319,0.0000022277,0.0000022234, -0.0000022191,0.0000022163,0.0000022149,0.0000022163,0.0000022220, -0.0000022286,0.0000022344,0.0000022383,0.0000022426,0.0000022482, -0.0000022560,0.0000022644,0.0000022714,0.0000022772,0.0000022809, -0.0000022828,0.0000022830,0.0000022817,0.0000022784,0.0000022759, -0.0000022746,0.0000022748,0.0000022762,0.0000022792,0.0000022835, -0.0000022872,0.0000022898,0.0000022871,0.0000022804,0.0000022719, -0.0000022637,0.0000022579,0.0000022551,0.0000022544,0.0000022555, -0.0000022568,0.0000022563,0.0000022517,0.0000022433,0.0000022341, -0.0000022270,0.0000022241,0.0000022245,0.0000022236,0.0000022216, -0.0000022150,0.0000022072,0.0000022086,0.0000022136,0.0000022132, -0.0000022085,0.0000022015,0.0000021945,0.0000021902,0.0000021897, -0.0000021939,0.0000022000,0.0000022046,0.0000022068,0.0000022082, -0.0000022086,0.0000022072,0.0000022036,0.0000022002,0.0000021997, -0.0000022021,0.0000022067,0.0000022122,0.0000022181,0.0000022242, -0.0000022296,0.0000022336,0.0000022364,0.0000022374,0.0000022376, -0.0000022382,0.0000022390,0.0000022391,0.0000022394,0.0000022404, -0.0000022408,0.0000022403,0.0000022397,0.0000022403,0.0000022421, -0.0000022452,0.0000022471,0.0000022475,0.0000022471,0.0000022470, -0.0000022480,0.0000022500,0.0000022530,0.0000022563,0.0000022595, -0.0000022620,0.0000022637,0.0000022652,0.0000022659,0.0000022664, -0.0000022671,0.0000022672,0.0000022654,0.0000022614,0.0000022567, -0.0000022534,0.0000022513,0.0000022496,0.0000022489,0.0000022489, -0.0000022508,0.0000022555,0.0000022608,0.0000022653,0.0000022689, -0.0000022723,0.0000022757,0.0000022799,0.0000022836,0.0000022853, -0.0000022858,0.0000022851,0.0000022829,0.0000022802,0.0000022778, -0.0000022744,0.0000022697,0.0000022646,0.0000022589,0.0000022520, -0.0000022455,0.0000022387,0.0000022285,0.0000022172,0.0000022095, -0.0000022057,0.0000022000,0.0000021943,0.0000021950,0.0000022002, -0.0000022086,0.0000022192,0.0000022277,0.0000022292,0.0000022274, -0.0000022225,0.0000022153,0.0000022080,0.0000022024,0.0000021993, -0.0000021995,0.0000022012,0.0000022031,0.0000022043,0.0000022053, -0.0000022056,0.0000022049,0.0000022028,0.0000021998,0.0000021957, -0.0000021911,0.0000021863,0.0000021824,0.0000021797,0.0000021779, -0.0000021762,0.0000021736,0.0000021704,0.0000021668,0.0000021632, -0.0000021597,0.0000021567,0.0000021543,0.0000021525,0.0000021507, -0.0000021484,0.0000021457,0.0000021438,0.0000021430,0.0000021428, -0.0000021436,0.0000021466,0.0000021521,0.0000021592,0.0000021663, -0.0000021720,0.0000021748,0.0000021769,0.0000021773,0.0000021782, -0.0000021809,0.0000021873,0.0000021965,0.0000022060,0.0000022137, -0.0000022187,0.0000022210,0.0000022210,0.0000022185,0.0000022132, -0.0000022060,0.0000021964,0.0000021867,0.0000021789,0.0000021743, -0.0000021730,0.0000021742,0.0000021762,0.0000021782,0.0000021805, -0.0000021829,0.0000021854,0.0000021879,0.0000021903,0.0000021925, -0.0000021942,0.0000021954,0.0000021961,0.0000021960,0.0000021953, -0.0000021938,0.0000021914,0.0000021882,0.0000021851,0.0000021823, -0.0000021792,0.0000021764,0.0000021746,0.0000021739,0.0000021735, -0.0000021732,0.0000021721,0.0000021697,0.0000021660,0.0000021610, -0.0000021547,0.0000021473,0.0000021398,0.0000021328,0.0000021267, -0.0000021228,0.0000021219,0.0000021227,0.0000021248,0.0000021268, -0.0000021278,0.0000021280,0.0000021280,0.0000021287,0.0000021302, -0.0000021327,0.0000021358,0.0000021389,0.0000021419,0.0000021447, -0.0000021472,0.0000021494,0.0000021512,0.0000021525,0.0000021533, -0.0000021539,0.0000021549,0.0000021562,0.0000021575,0.0000021587, -0.0000021596,0.0000021605,0.0000021614,0.0000021623,0.0000021632, -0.0000021646,0.0000021668,0.0000021694,0.0000021718,0.0000021737, -0.0000021749,0.0000021752,0.0000021745,0.0000021717,0.0000021694, -0.0000021663,0.0000021639,0.0000021627,0.0000021638,0.0000021661, -0.0000021688,0.0000021720,0.0000021745,0.0000021767,0.0000021788, -0.0000021808,0.0000021821,0.0000021821,0.0000021811,0.0000021808, -0.0000021804,0.0000021830,0.0000021903,0.0000021983,0.0000022061, -0.0000022140,0.0000022210,0.0000022276,0.0000022340,0.0000022403, -0.0000022461,0.0000022513,0.0000022562,0.0000022607,0.0000022651, -0.0000022691,0.0000022727,0.0000022763,0.0000022806,0.0000022861, -0.0000022913,0.0000022953,0.0000022987,0.0000023014,0.0000023034, -0.0000023044,0.0000023046,0.0000023043,0.0000023035,0.0000023023, -0.0000023010,0.0000022992,0.0000022970,0.0000022943,0.0000022913, -0.0000022880,0.0000022848,0.0000022817,0.0000022788,0.0000022762, -0.0000022737,0.0000022714,0.0000022700,0.0000022690,0.0000022682, -0.0000022682,0.0000022680,0.0000022675,0.0000022664,0.0000022649, -0.0000022630,0.0000022608,0.0000022584,0.0000022556,0.0000022522, -0.0000022484,0.0000022445,0.0000022414,0.0000022392,0.0000022372, -0.0000022354,0.0000022342,0.0000022337,0.0000022326,0.0000022308, -0.0000022280,0.0000022241,0.0000022185,0.0000022115,0.0000022022, -0.0000021907,0.0000021788,0.0000021679,0.0000021596,0.0000021549, -0.0000021541,0.0000021553,0.0000021583,0.0000021601,0.0000021580, -0.0000021508,0.0000021392,0.0000021285,0.0000021229,0.0000021214, -0.0000021235,0.0000021275,0.0000021307,0.0000021331,0.0000021347, -0.0000021356,0.0000021355,0.0000021338,0.0000021308,0.0000021275, -0.0000021243,0.0000021209,0.0000021161,0.0000021076,0.0000020967, -0.0000020864,0.0000020784,0.0000020725,0.0000020676,0.0000020635, -0.0000020609,0.0000020597,0.0000020591,0.0000020590,0.0000020599, -0.0000020617,0.0000020636,0.0000020642,0.0000020638,0.0000020623, -0.0000020596,0.0000020550,0.0000020491,0.0000020414,0.0000020326, -0.0000020219,0.0000020092,0.0000019981,0.0000019917,0.0000019891, -0.0000019888,0.0000019892,0.0000019909,0.0000019948,0.0000020021, -0.0000020113,0.0000020232,0.0000020394,0.0000020571,0.0000020703, -0.0000020761,0.0000020765,0.0000020757,0.0000020758,0.0000020776, -0.0000020806,0.0000020833,0.0000020852,0.0000020852,0.0000020844, -0.0000020834,0.0000020812,0.0000020769,0.0000020708,0.0000020631, -0.0000020528,0.0000020413,0.0000020344,0.0000020358,0.0000020487, -0.0000020671,0.0000020833,0.0000020922,0.0000020947,0.0000020970, -0.0000021040,0.0000021165,0.0000021333,0.0000021526,0.0000021707, -0.0000021850,0.0000021960,0.0000022048,0.0000022114,0.0000022168, -0.0000022194,0.0000022177,0.0000022119,0.0000022047,0.0000021990, -0.0000021958,0.0000021940,0.0000021943,0.0000021944,0.0000021961, -0.0000021996,0.0000022042,0.0000022091,0.0000022131,0.0000022162, -0.0000022184,0.0000022198,0.0000022211,0.0000022230,0.0000022257, -0.0000022294,0.0000022321,0.0000022319,0.0000022277,0.0000022173, -0.0000022016,0.0000021872,0.0000021758,0.0000021727,0.0000021718, -0.0000021750,0.0000021801,0.0000021874,0.0000021967,0.0000022074, -0.0000022183,0.0000022276,0.0000022347,0.0000022393,0.0000022419, -0.0000022434,0.0000022443,0.0000022456,0.0000022478,0.0000022506, -0.0000022530,0.0000022548,0.0000022555,0.0000022546,0.0000022512, -0.0000022440,0.0000022332,0.0000022206,0.0000022096,0.0000022026, -0.0000021998,0.0000022003,0.0000022032,0.0000022055,0.0000022032, -0.0000021993,0.0000022026,0.0000022144,0.0000022207,0.0000022175, -0.0000022157,0.0000022230,0.0000022367,0.0000022422,0.0000022406, -0.0000022344,0.0000022289,0.0000022238,0.0000022111,0.0000021902, -0.0000021715,0.0000021614,0.0000021557,0.0000021495,0.0000021427, -0.0000021363,0.0000021308,0.0000021267,0.0000021241,0.0000021233, -0.0000021231,0.0000021234,0.0000021231,0.0000021223,0.0000021225, -0.0000021243,0.0000021257,0.0000021255,0.0000021234,0.0000021207, -0.0000021176,0.0000021145,0.0000021120,0.0000021106,0.0000021097, -0.0000021123,0.0000021179,0.0000021251,0.0000021317,0.0000021358, -0.0000021402,0.0000021448,0.0000021507,0.0000021621,0.0000021753, -0.0000021877,0.0000022014,0.0000022147,0.0000022244,0.0000022289, -0.0000022293,0.0000022276,0.0000022248,0.0000022225,0.0000022212, -0.0000022197,0.0000022167,0.0000022102,0.0000021989,0.0000021828, -0.0000021649,0.0000021536,0.0000021530,0.0000021668,0.0000021851, -0.0000021999,0.0000022149,0.0000022351,0.0000022449,0.0000022405, -0.0000022175,0.0000021941,0.0000021829,0.0000021838,0.0000021874, -0.0000021938,0.0000021996,0.0000022043,0.0000022071,0.0000022077, -0.0000022075,0.0000022085,0.0000022108,0.0000022131,0.0000022154, -0.0000022186,0.0000022241,0.0000022321,0.0000022408,0.0000022472, -0.0000022510,0.0000022510,0.0000022464,0.0000022381,0.0000022290, -0.0000022227,0.0000022220,0.0000022244,0.0000022327,0.0000022455, -0.0000022578,0.0000022657,0.0000022695,0.0000022707,0.0000022702, -0.0000022680,0.0000022652,0.0000022620,0.0000022581,0.0000022537, -0.0000022487,0.0000022441,0.0000022402,0.0000022363,0.0000022303, -0.0000022202,0.0000022063,0.0000021924,0.0000021824,0.0000021764, -0.0000021723,0.0000021685,0.0000021622,0.0000021514,0.0000021378, -0.0000021248,0.0000021155,0.0000021109,0.0000021098,0.0000021099, -0.0000021099,0.0000021085,0.0000021057,0.0000021022,0.0000020979, -0.0000020935,0.0000020896,0.0000020866,0.0000020839,0.0000020810, -0.0000020774,0.0000020729,0.0000020667,0.0000020594,0.0000020524, -0.0000020466,0.0000020422,0.0000020398,0.0000020378,0.0000020360, -0.0000020352,0.0000020356,0.0000020380,0.0000020438,0.0000020522, -0.0000020616,0.0000020689,0.0000020728,0.0000020742,0.0000020740, -0.0000020740,0.0000020760,0.0000020792,0.0000020826,0.0000020842, -0.0000020824,0.0000020793,0.0000020737,0.0000020673,0.0000020620, -0.0000020589,0.0000020591,0.0000020619,0.0000020669,0.0000020738, -0.0000020826,0.0000020941,0.0000021077,0.0000021199,0.0000021260, -0.0000021255,0.0000021223,0.0000021198,0.0000021171,0.0000021126, -0.0000021060,0.0000020977,0.0000020879,0.0000020758,0.0000020628, -0.0000020529,0.0000020479,0.0000020481,0.0000020548,0.0000020645, -0.0000020736,0.0000020821,0.0000020926,0.0000021062,0.0000021207, -0.0000021323,0.0000021409,0.0000021484,0.0000021562,0.0000021646, -0.0000021745,0.0000021839,0.0000021907,0.0000021958,0.0000021996, -0.0000022026,0.0000022067,0.0000022124,0.0000022183,0.0000022232, -0.0000022255,0.0000022248,0.0000022232,0.0000022221,0.0000022206, -0.0000022194,0.0000022187,0.0000022217,0.0000022319,0.0000022481, -0.0000022654,0.0000022802,0.0000022902,0.0000022968,0.0000023026, -0.0000023098,0.0000023195,0.0000023294,0.0000023372,0.0000023426, -0.0000023461,0.0000023485,0.0000023500,0.0000023505,0.0000023503, -0.0000023494,0.0000023484,0.0000023472,0.0000023451,0.0000023421, -0.0000023383,0.0000023345,0.0000023308,0.0000023269,0.0000023224, -0.0000023173,0.0000023117,0.0000023051,0.0000022975,0.0000022895, -0.0000022814,0.0000022724,0.0000022628,0.0000022529,0.0000022427, -0.0000022327,0.0000022241,0.0000022165,0.0000022094,0.0000022024, -0.0000021946,0.0000021851,0.0000021746,0.0000021646,0.0000021573, -0.0000021534,0.0000021509,0.0000021471,0.0000021425,0.0000021385, -0.0000021361,0.0000021351,0.0000021348,0.0000021348,0.0000021348, -0.0000021339,0.0000021321,0.0000021296,0.0000021266,0.0000021239, -0.0000021214,0.0000021188,0.0000021166,0.0000021156,0.0000021155, -0.0000021156,0.0000021160,0.0000021172,0.0000021186,0.0000021193, -0.0000021193,0.0000021191,0.0000021185,0.0000021175,0.0000021163, -0.0000021150,0.0000021139,0.0000021133,0.0000021140,0.0000021160, -0.0000021185,0.0000021202,0.0000021201,0.0000021188,0.0000021158, -0.0000021112,0.0000021055,0.0000020995,0.0000020937,0.0000020889, -0.0000020862,0.0000020860,0.0000020872,0.0000020893,0.0000020921, -0.0000020955,0.0000020983,0.0000020999,0.0000020997,0.0000020999, -0.0000020997,0.0000020989,0.0000020975,0.0000020958,0.0000020944, -0.0000020928,0.0000020905,0.0000020880,0.0000020856,0.0000020828, -0.0000020801,0.0000020776,0.0000020750,0.0000020727,0.0000020716, -0.0000020716,0.0000020725,0.0000020738,0.0000020754,0.0000020770, -0.0000020790,0.0000020808,0.0000020817,0.0000020824,0.0000020828, -0.0000020828,0.0000020820,0.0000020807,0.0000020790,0.0000020770, -0.0000020750,0.0000020730,0.0000020710,0.0000020688,0.0000020666, -0.0000020646,0.0000020628,0.0000020610,0.0000020592,0.0000020573, -0.0000020560,0.0000020551,0.0000020544,0.0000020543,0.0000020548, -0.0000020549,0.0000020543,0.0000020541,0.0000020550,0.0000020562, -0.0000020570,0.0000020575,0.0000020573,0.0000020562,0.0000020546, -0.0000020535,0.0000020524,0.0000020511,0.0000020497,0.0000020482, -0.0000020467,0.0000020449,0.0000020434,0.0000020429,0.0000020425, -0.0000020417,0.0000020410,0.0000020411,0.0000020422,0.0000020442, -0.0000020469,0.0000020500,0.0000020527,0.0000020544,0.0000020550, -0.0000020547,0.0000020536,0.0000020518,0.0000020496,0.0000020472, -0.0000020453,0.0000020441,0.0000020436,0.0000020435,0.0000020440, -0.0000020452,0.0000020473,0.0000020503,0.0000020541,0.0000020578, -0.0000020611,0.0000020637,0.0000020651,0.0000020652,0.0000020644, -0.0000020631,0.0000020615,0.0000020593,0.0000020558,0.0000020516, -0.0000020475,0.0000020445,0.0000020416,0.0000020364,0.0000020266, -0.0000020142,0.0000020036,0.0000019970,0.0000019926,0.0000019885, -0.0000019849,0.0000019831,0.0000019822,0.0000019823,0.0000019833, -0.0000019844,0.0000019850,0.0000019855,0.0000019866,0.0000019881, -0.0000019893,0.0000019900,0.0000019893,0.0000019863,0.0000019801, -0.0000019739,0.0000019707,0.0000019669,0.0000019627,0.0000019687, -0.0000019866,0.0000020044,0.0000020221,0.0000020279,0.0000020255, -0.0000020314,0.0000020384,0.0000020437,0.0000020516,0.0000020526, -0.0000020412,0.0000020289,0.0000020255,0.0000020272,0.0000020287, -0.0000020285,0.0000020278,0.0000020269,0.0000020262,0.0000020268, -0.0000020273,0.0000020268,0.0000020259,0.0000020257,0.0000020260, -0.0000020265,0.0000020275,0.0000020298,0.0000020331,0.0000020354, -0.0000020358,0.0000020351,0.0000020344,0.0000020348,0.0000020331, -0.0000020278,0.0000020251,0.0000020252,0.0000020260,0.0000020296, -0.0000020352,0.0000020404,0.0000020438,0.0000020464,0.0000020496, -0.0000020529,0.0000020532,0.0000020497,0.0000020434,0.0000020373, -0.0000020323,0.0000020289,0.0000020273,0.0000020285,0.0000020340, -0.0000020402,0.0000020449,0.0000020476,0.0000020478,0.0000020451, -0.0000020405,0.0000020351,0.0000020289,0.0000020230,0.0000020186, -0.0000020145,0.0000020107,0.0000020077,0.0000020054,0.0000020040, -0.0000020035,0.0000020035,0.0000020045,0.0000020058,0.0000020066, -0.0000020064,0.0000020062,0.0000020060,0.0000020052,0.0000020038, -0.0000020026,0.0000020023,0.0000020034,0.0000020053,0.0000020072, -0.0000020094,0.0000020113,0.0000020123,0.0000020128,0.0000020131, -0.0000020130,0.0000020127,0.0000020122,0.0000020116,0.0000020112, -0.0000020107,0.0000020104,0.0000020108,0.0000020121,0.0000020136, -0.0000020149,0.0000020161,0.0000020172,0.0000020180,0.0000020187, -0.0000020195,0.0000020204,0.0000020214,0.0000020221,0.0000020227, -0.0000020235,0.0000020241,0.0000020246,0.0000020252,0.0000020262, -0.0000020279,0.0000020299,0.0000020315,0.0000020327,0.0000020333, -0.0000020329,0.0000020318,0.0000020308,0.0000020298,0.0000020291, -0.0000020289,0.0000020292,0.0000020293,0.0000020290,0.0000020285, -0.0000020280,0.0000020275,0.0000020269,0.0000020262,0.0000020252, -0.0000020241,0.0000020232,0.0000020222,0.0000020209,0.0000020196, -0.0000020184,0.0000020173,0.0000020170,0.0000020174,0.0000020168, -0.0000020147,0.0000020110,0.0000020065,0.0000020017,0.0000019979, -0.0000019955,0.0000019942,0.0000019939,0.0000019943,0.0000019954, -0.0000019974,0.0000020004,0.0000020050,0.0000020107,0.0000020164, -0.0000020218,0.0000020266,0.0000020307,0.0000020334,0.0000020347, -0.0000020359,0.0000020405,0.0000020494,0.0000020602,0.0000020688, -0.0000020750,0.0000020800,0.0000020822,0.0000020833,0.0000020825, -0.0000020830,0.0000020816,0.0000020808,0.0000020798,0.0000020775, -0.0000020730,0.0000020681,0.0000020656,0.0000020666,0.0000020712, -0.0000020773,0.0000020828,0.0000020872,0.0000020918,0.0000020958, -0.0000020975,0.0000020979,0.0000020981,0.0000020982,0.0000020991, -0.0000021004,0.0000021012,0.0000021019,0.0000021021,0.0000021014, -0.0000020998,0.0000020973,0.0000020940,0.0000020901,0.0000020851, -0.0000020791,0.0000020728,0.0000020674,0.0000020636,0.0000020615, -0.0000020610,0.0000020616,0.0000020630,0.0000020653,0.0000020691, -0.0000020743,0.0000020802,0.0000020855,0.0000020890,0.0000020899, -0.0000020896,0.0000020889,0.0000020886,0.0000020883,0.0000020872, -0.0000020853,0.0000020828,0.0000020803,0.0000020782,0.0000020767, -0.0000020764,0.0000020771,0.0000020780,0.0000020787,0.0000020790, -0.0000020793,0.0000020808,0.0000020842,0.0000020882,0.0000020909, -0.0000020927,0.0000020940,0.0000020952,0.0000020965,0.0000020985, -0.0000021013,0.0000021038,0.0000021057,0.0000021071,0.0000021080, -0.0000021089,0.0000021094,0.0000021091,0.0000021079,0.0000021074, -0.0000021093,0.0000021132,0.0000021160,0.0000021167,0.0000021172, -0.0000021182,0.0000021195,0.0000021209,0.0000021223,0.0000021238, -0.0000021248,0.0000021250,0.0000021246,0.0000021232,0.0000021219, -0.0000021217,0.0000021225,0.0000021237,0.0000021244,0.0000021246, -0.0000021240,0.0000021228,0.0000021207,0.0000021176,0.0000021142, -0.0000021118,0.0000021117,0.0000021137,0.0000021163,0.0000021188, -0.0000021205,0.0000021218,0.0000021223,0.0000021221,0.0000021209, -0.0000021193,0.0000021177,0.0000021160,0.0000021142,0.0000021121, -0.0000021097,0.0000021069,0.0000021037,0.0000021007,0.0000020987, -0.0000020974,0.0000020967,0.0000020968,0.0000020976,0.0000020986, -0.0000020999,0.0000021015,0.0000021033,0.0000021053,0.0000021069, -0.0000021080,0.0000021090,0.0000021100,0.0000021111,0.0000021126, -0.0000021146,0.0000021173,0.0000021205,0.0000021239,0.0000021270, -0.0000021294,0.0000021310,0.0000021319,0.0000021323,0.0000021329, -0.0000021342,0.0000021361,0.0000021380,0.0000021395,0.0000021397, -0.0000021388,0.0000021371,0.0000021358,0.0000021354,0.0000021354, -0.0000021354,0.0000021348,0.0000021334,0.0000021314,0.0000021294, -0.0000021274,0.0000021250,0.0000021221,0.0000021190,0.0000021165, -0.0000021150,0.0000021141,0.0000021133,0.0000021123,0.0000021116, -0.0000021122,0.0000021141,0.0000021170,0.0000021203,0.0000021234, -0.0000021261,0.0000021281,0.0000021295,0.0000021309,0.0000021326, -0.0000021336,0.0000021333,0.0000021320,0.0000021309,0.0000021310, -0.0000021333,0.0000021359,0.0000021381,0.0000021422,0.0000021503, -0.0000021591,0.0000021635,0.0000021667,0.0000021754,0.0000021842, -0.0000021867,0.0000021847,0.0000021756,0.0000021647,0.0000021620, -0.0000021680,0.0000021771,0.0000021805,0.0000021799,0.0000021778, -0.0000021772,0.0000021776,0.0000021779,0.0000021773,0.0000021759, -0.0000021736,0.0000021705,0.0000021667,0.0000021631,0.0000021603, -0.0000021588,0.0000021587,0.0000021596,0.0000021616,0.0000021640, -0.0000021663,0.0000021682,0.0000021696,0.0000021704,0.0000021715, -0.0000021729,0.0000021741,0.0000021750,0.0000021757,0.0000021769, -0.0000021785,0.0000021803,0.0000021821,0.0000021839,0.0000021855, -0.0000021870,0.0000021883,0.0000021896,0.0000021912,0.0000021932, -0.0000021952,0.0000021972,0.0000021992,0.0000022012,0.0000022032, -0.0000022055,0.0000022082,0.0000022108,0.0000022131,0.0000022152, -0.0000022168,0.0000022177,0.0000022177,0.0000022170,0.0000022157, -0.0000022140,0.0000022117,0.0000022087,0.0000022051,0.0000022008, -0.0000021960,0.0000021903,0.0000021840,0.0000021780,0.0000021732, -0.0000021697,0.0000021670,0.0000021647,0.0000021628,0.0000021614, -0.0000021605,0.0000021599,0.0000021595,0.0000021587,0.0000021570, -0.0000021542,0.0000021501,0.0000021453,0.0000021403,0.0000021352, -0.0000021298,0.0000021239,0.0000021176,0.0000021117,0.0000021084, -0.0000021079,0.0000021079,0.0000021076,0.0000021078,0.0000021108, -0.0000021175,0.0000021250,0.0000021299,0.0000021324,0.0000021337, -0.0000021333,0.0000021302,0.0000021249,0.0000021191,0.0000021131, -0.0000021071,0.0000021024,0.0000020999,0.0000020992,0.0000020998, -0.0000021028,0.0000021069,0.0000021105,0.0000021137,0.0000021168, -0.0000021198,0.0000021230,0.0000021274,0.0000021327,0.0000021376, -0.0000021414,0.0000021432,0.0000021427,0.0000021397,0.0000021349, -0.0000021299,0.0000021251,0.0000021215,0.0000021198,0.0000021195, -0.0000021191,0.0000021177,0.0000021149,0.0000021117,0.0000021085, -0.0000021050,0.0000021021,0.0000021001,0.0000020981,0.0000020926, -0.0000020801,0.0000020711,0.0000020709,0.0000020741,0.0000020762, -0.0000020760,0.0000020711,0.0000020641,0.0000020610,0.0000020602, -0.0000020676,0.0000020778,0.0000020798,0.0000020802,0.0000020832, -0.0000020903,0.0000020961,0.0000020979,0.0000020959,0.0000020921, -0.0000020905,0.0000020949,0.0000021082,0.0000021160,0.0000021208, -0.0000021315,0.0000021424,0.0000021456,0.0000021477,0.0000021592, -0.0000021639,0.0000021602,0.0000021593,0.0000021675,0.0000021819, -0.0000021940,0.0000021997,0.0000021959,0.0000021951,0.0000022090, -0.0000022234,0.0000022234,0.0000022100,0.0000021924,0.0000021794, -0.0000021747,0.0000021748,0.0000021818,0.0000021977,0.0000022134, -0.0000022312,0.0000022420,0.0000022421,0.0000022390,0.0000022360, -0.0000022322,0.0000022271,0.0000022225,0.0000022187,0.0000022166, -0.0000022187,0.0000022250,0.0000022330,0.0000022401,0.0000022461, -0.0000022525,0.0000022601,0.0000022687,0.0000022761,0.0000022796, -0.0000022810,0.0000022803,0.0000022764,0.0000022726,0.0000022706, -0.0000022700,0.0000022710,0.0000022723,0.0000022743,0.0000022767, -0.0000022792,0.0000022800,0.0000022771,0.0000022709,0.0000022626, -0.0000022549,0.0000022501,0.0000022478,0.0000022484,0.0000022506, -0.0000022526,0.0000022535,0.0000022518,0.0000022474,0.0000022405, -0.0000022325,0.0000022247,0.0000022191,0.0000022185,0.0000022198, -0.0000022188,0.0000022163,0.0000022105,0.0000022077,0.0000022114, -0.0000022123,0.0000022093,0.0000022038,0.0000021973,0.0000021918, -0.0000021874,0.0000021862,0.0000021899,0.0000021960,0.0000021997, -0.0000022009,0.0000022015,0.0000022020,0.0000022013,0.0000021989, -0.0000021960,0.0000021952,0.0000021970,0.0000022009,0.0000022061, -0.0000022114,0.0000022176,0.0000022236,0.0000022288,0.0000022328, -0.0000022352,0.0000022363,0.0000022374,0.0000022386,0.0000022389, -0.0000022385,0.0000022382,0.0000022378,0.0000022368,0.0000022358, -0.0000022354,0.0000022367,0.0000022394,0.0000022418,0.0000022425, -0.0000022420,0.0000022416,0.0000022422,0.0000022440,0.0000022468, -0.0000022500,0.0000022528,0.0000022546,0.0000022553,0.0000022562, -0.0000022576,0.0000022597,0.0000022616,0.0000022621,0.0000022598, -0.0000022556,0.0000022522,0.0000022502,0.0000022489,0.0000022476, -0.0000022473,0.0000022474,0.0000022485,0.0000022520,0.0000022563, -0.0000022604,0.0000022642,0.0000022682,0.0000022728,0.0000022778, -0.0000022816,0.0000022838,0.0000022855,0.0000022855,0.0000022829, -0.0000022798,0.0000022767,0.0000022719,0.0000022667,0.0000022624, -0.0000022578,0.0000022519,0.0000022455,0.0000022377,0.0000022261, -0.0000022140,0.0000022068,0.0000022027,0.0000021957,0.0000021891, -0.0000021890,0.0000021927,0.0000021997,0.0000022088,0.0000022183, -0.0000022226,0.0000022229,0.0000022223,0.0000022203,0.0000022163, -0.0000022113,0.0000022065,0.0000022038,0.0000022033,0.0000022044, -0.0000022056,0.0000022065,0.0000022071,0.0000022072,0.0000022064, -0.0000022048,0.0000022022,0.0000021987,0.0000021946,0.0000021900, -0.0000021860,0.0000021822,0.0000021787,0.0000021755,0.0000021722, -0.0000021683,0.0000021643,0.0000021604,0.0000021569,0.0000021541, -0.0000021522,0.0000021509,0.0000021491,0.0000021465,0.0000021439, -0.0000021418,0.0000021406,0.0000021401,0.0000021402,0.0000021418, -0.0000021457,0.0000021517,0.0000021591,0.0000021666,0.0000021737, -0.0000021791,0.0000021816,0.0000021819,0.0000021823,0.0000021850, -0.0000021906,0.0000021980,0.0000022055,0.0000022118,0.0000022154, -0.0000022159,0.0000022140,0.0000022097,0.0000022031,0.0000021946, -0.0000021856,0.0000021778,0.0000021725,0.0000021696,0.0000021689, -0.0000021693,0.0000021702,0.0000021713,0.0000021725,0.0000021737, -0.0000021753,0.0000021775,0.0000021801,0.0000021830,0.0000021856, -0.0000021876,0.0000021888,0.0000021892,0.0000021885,0.0000021868, -0.0000021844,0.0000021812,0.0000021776,0.0000021739,0.0000021707, -0.0000021685,0.0000021670,0.0000021657,0.0000021646,0.0000021627, -0.0000021598,0.0000021558,0.0000021508,0.0000021445,0.0000021374, -0.0000021301,0.0000021230,0.0000021172,0.0000021137,0.0000021130, -0.0000021141,0.0000021168,0.0000021195,0.0000021212,0.0000021218, -0.0000021218,0.0000021220,0.0000021230,0.0000021250,0.0000021276, -0.0000021303,0.0000021331,0.0000021361,0.0000021390,0.0000021414, -0.0000021430,0.0000021438,0.0000021441,0.0000021438,0.0000021434, -0.0000021432,0.0000021429,0.0000021425,0.0000021418,0.0000021411, -0.0000021404,0.0000021401,0.0000021402,0.0000021411,0.0000021432, -0.0000021464,0.0000021500,0.0000021539,0.0000021578,0.0000021615, -0.0000021644,0.0000021661,0.0000021665,0.0000021652,0.0000021630, -0.0000021598,0.0000021574,0.0000021554,0.0000021550,0.0000021569, -0.0000021599,0.0000021639,0.0000021676,0.0000021710,0.0000021746, -0.0000021779,0.0000021801,0.0000021808,0.0000021798,0.0000021791, -0.0000021793,0.0000021813,0.0000021842,0.0000021918,0.0000022004, -0.0000022078,0.0000022154,0.0000022221,0.0000022281,0.0000022333, -0.0000022374,0.0000022407,0.0000022435,0.0000022462,0.0000022488, -0.0000022515,0.0000022551,0.0000022599,0.0000022651,0.0000022694, -0.0000022731,0.0000022762,0.0000022786,0.0000022802,0.0000022809, -0.0000022809,0.0000022804,0.0000022792,0.0000022776,0.0000022756, -0.0000022734,0.0000022708,0.0000022677,0.0000022640,0.0000022599, -0.0000022560,0.0000022524,0.0000022493,0.0000022469,0.0000022452, -0.0000022444,0.0000022445,0.0000022451,0.0000022461,0.0000022476, -0.0000022484,0.0000022486,0.0000022479,0.0000022465,0.0000022444, -0.0000022418,0.0000022388,0.0000022354,0.0000022314,0.0000022271, -0.0000022228,0.0000022192,0.0000022158,0.0000022127,0.0000022109, -0.0000022095,0.0000022076,0.0000022042,0.0000021996,0.0000021936, -0.0000021867,0.0000021794,0.0000021715,0.0000021639,0.0000021577, -0.0000021541,0.0000021525,0.0000021532,0.0000021554,0.0000021583, -0.0000021602,0.0000021596,0.0000021542,0.0000021441,0.0000021325, -0.0000021252,0.0000021229,0.0000021236,0.0000021268,0.0000021303, -0.0000021321,0.0000021334,0.0000021345,0.0000021356,0.0000021354, -0.0000021340,0.0000021321,0.0000021301,0.0000021275,0.0000021237, -0.0000021165,0.0000021054,0.0000020926,0.0000020812,0.0000020730, -0.0000020674,0.0000020629,0.0000020589,0.0000020559,0.0000020547, -0.0000020544,0.0000020547,0.0000020557,0.0000020577,0.0000020605, -0.0000020625,0.0000020634,0.0000020629,0.0000020613,0.0000020587, -0.0000020545,0.0000020492,0.0000020427,0.0000020343,0.0000020232, -0.0000020103,0.0000019995,0.0000019930,0.0000019901,0.0000019892, -0.0000019887,0.0000019879,0.0000019902,0.0000019973,0.0000020064, -0.0000020170,0.0000020314,0.0000020490,0.0000020644,0.0000020723, -0.0000020737,0.0000020730,0.0000020732,0.0000020750,0.0000020776, -0.0000020811,0.0000020839,0.0000020845,0.0000020843,0.0000020837, -0.0000020814,0.0000020773,0.0000020719,0.0000020656,0.0000020567, -0.0000020444,0.0000020347,0.0000020336,0.0000020431,0.0000020601, -0.0000020770,0.0000020875,0.0000020910,0.0000020923,0.0000020954, -0.0000021026,0.0000021144,0.0000021308,0.0000021496,0.0000021679, -0.0000021838,0.0000021954,0.0000022033,0.0000022097,0.0000022144, -0.0000022160,0.0000022147,0.0000022113,0.0000022074,0.0000022039, -0.0000022006,0.0000021973,0.0000021949,0.0000021951,0.0000021960, -0.0000021990,0.0000022034,0.0000022082,0.0000022130,0.0000022172, -0.0000022196,0.0000022202,0.0000022200,0.0000022200,0.0000022216, -0.0000022251,0.0000022282,0.0000022274,0.0000022249,0.0000022147, -0.0000021991,0.0000021839,0.0000021724,0.0000021695,0.0000021681, -0.0000021711,0.0000021747,0.0000021796,0.0000021863,0.0000021947, -0.0000022035,0.0000022118,0.0000022191,0.0000022252,0.0000022297, -0.0000022328,0.0000022352,0.0000022371,0.0000022381,0.0000022379, -0.0000022363,0.0000022326,0.0000022264,0.0000022183,0.0000022092, -0.0000022009,0.0000021954,0.0000021933,0.0000021941,0.0000021967, -0.0000021989,0.0000021980,0.0000021950,0.0000021962,0.0000022050, -0.0000022143,0.0000022151,0.0000022124,0.0000022156,0.0000022279, -0.0000022389,0.0000022410,0.0000022376,0.0000022311,0.0000022265, -0.0000022198,0.0000022024,0.0000021796,0.0000021638,0.0000021557, -0.0000021486,0.0000021399,0.0000021324,0.0000021273,0.0000021240, -0.0000021213,0.0000021193,0.0000021186,0.0000021188,0.0000021192, -0.0000021195,0.0000021191,0.0000021177,0.0000021170,0.0000021184, -0.0000021220,0.0000021247,0.0000021245,0.0000021224,0.0000021191, -0.0000021151,0.0000021125,0.0000021103,0.0000021087,0.0000021086, -0.0000021116,0.0000021184,0.0000021260,0.0000021309,0.0000021358, -0.0000021403,0.0000021437,0.0000021518,0.0000021644,0.0000021769, -0.0000021902,0.0000022049,0.0000022174,0.0000022253,0.0000022280, -0.0000022267,0.0000022251,0.0000022231,0.0000022215,0.0000022201, -0.0000022182,0.0000022148,0.0000022083,0.0000021971,0.0000021810, -0.0000021628,0.0000021526,0.0000021521,0.0000021662,0.0000021845, -0.0000021999,0.0000022150,0.0000022351,0.0000022481,0.0000022464, -0.0000022275,0.0000022044,0.0000021886,0.0000021867,0.0000021872, -0.0000021908,0.0000021953,0.0000021994,0.0000022015,0.0000022024, -0.0000022035,0.0000022059,0.0000022092,0.0000022126,0.0000022159, -0.0000022202,0.0000022268,0.0000022356,0.0000022448,0.0000022523, -0.0000022559,0.0000022565,0.0000022526,0.0000022444,0.0000022347, -0.0000022273,0.0000022250,0.0000022285,0.0000022357,0.0000022472, -0.0000022588,0.0000022663,0.0000022690,0.0000022693,0.0000022677, -0.0000022653,0.0000022622,0.0000022586,0.0000022546,0.0000022497, -0.0000022450,0.0000022408,0.0000022367,0.0000022319,0.0000022255, -0.0000022162,0.0000022049,0.0000021934,0.0000021835,0.0000021755, -0.0000021700,0.0000021657,0.0000021602,0.0000021514,0.0000021395, -0.0000021269,0.0000021169,0.0000021119,0.0000021106,0.0000021108, -0.0000021107,0.0000021092,0.0000021067,0.0000021029,0.0000020981, -0.0000020933,0.0000020895,0.0000020865,0.0000020838,0.0000020810, -0.0000020778,0.0000020735,0.0000020676,0.0000020605,0.0000020534, -0.0000020472,0.0000020430,0.0000020401,0.0000020378,0.0000020365, -0.0000020350,0.0000020341,0.0000020350,0.0000020397,0.0000020476, -0.0000020565,0.0000020643,0.0000020699,0.0000020722,0.0000020724, -0.0000020721,0.0000020732,0.0000020756,0.0000020785,0.0000020802, -0.0000020799,0.0000020771,0.0000020723,0.0000020658,0.0000020596, -0.0000020558,0.0000020542,0.0000020546,0.0000020586,0.0000020652, -0.0000020740,0.0000020853,0.0000020987,0.0000021112,0.0000021183, -0.0000021187,0.0000021156,0.0000021130,0.0000021113,0.0000021085, -0.0000021025,0.0000020954,0.0000020862,0.0000020746,0.0000020622, -0.0000020518,0.0000020460,0.0000020462,0.0000020503,0.0000020587, -0.0000020679,0.0000020770,0.0000020881,0.0000021029,0.0000021182, -0.0000021306,0.0000021395,0.0000021462,0.0000021525,0.0000021598, -0.0000021679,0.0000021755,0.0000021824,0.0000021881,0.0000021924, -0.0000021967,0.0000022016,0.0000022069,0.0000022125,0.0000022183, -0.0000022220,0.0000022228,0.0000022221,0.0000022212,0.0000022202, -0.0000022188,0.0000022178,0.0000022188,0.0000022258,0.0000022393, -0.0000022559,0.0000022712,0.0000022823,0.0000022893,0.0000022942, -0.0000022995,0.0000023061,0.0000023131,0.0000023196,0.0000023250, -0.0000023295,0.0000023330,0.0000023351,0.0000023353,0.0000023341, -0.0000023329,0.0000023317,0.0000023297,0.0000023269,0.0000023234, -0.0000023196,0.0000023159,0.0000023127,0.0000023093,0.0000023050, -0.0000023000,0.0000022945,0.0000022881,0.0000022810,0.0000022738, -0.0000022665,0.0000022583,0.0000022494,0.0000022400,0.0000022305, -0.0000022216,0.0000022143,0.0000022081,0.0000022019,0.0000021943, -0.0000021849,0.0000021742,0.0000021644,0.0000021569,0.0000021517, -0.0000021473,0.0000021421,0.0000021365,0.0000021320,0.0000021299, -0.0000021295,0.0000021296,0.0000021299,0.0000021304,0.0000021305, -0.0000021299,0.0000021286,0.0000021260,0.0000021228,0.0000021194, -0.0000021159,0.0000021122,0.0000021095,0.0000021083,0.0000021083, -0.0000021088,0.0000021100,0.0000021115,0.0000021128,0.0000021135, -0.0000021140,0.0000021142,0.0000021139,0.0000021136,0.0000021133, -0.0000021129,0.0000021124,0.0000021120,0.0000021125,0.0000021143, -0.0000021165,0.0000021181,0.0000021184,0.0000021167,0.0000021132, -0.0000021083,0.0000021026,0.0000020966,0.0000020911,0.0000020868, -0.0000020848,0.0000020840,0.0000020841,0.0000020847,0.0000020863, -0.0000020889,0.0000020918,0.0000020944,0.0000020965,0.0000020984, -0.0000020996,0.0000021000,0.0000020996,0.0000020991,0.0000020986, -0.0000020971,0.0000020947,0.0000020920,0.0000020888,0.0000020852, -0.0000020814,0.0000020776,0.0000020741,0.0000020714,0.0000020699, -0.0000020685,0.0000020676,0.0000020675,0.0000020678,0.0000020686, -0.0000020696,0.0000020705,0.0000020711,0.0000020720,0.0000020731, -0.0000020739,0.0000020744,0.0000020747,0.0000020748,0.0000020745, -0.0000020735,0.0000020720,0.0000020705,0.0000020684,0.0000020660, -0.0000020637,0.0000020619,0.0000020603,0.0000020588,0.0000020575, -0.0000020567,0.0000020562,0.0000020560,0.0000020563,0.0000020569, -0.0000020568,0.0000020560,0.0000020556,0.0000020559,0.0000020565, -0.0000020569,0.0000020568,0.0000020560,0.0000020546,0.0000020528, -0.0000020514,0.0000020502,0.0000020490,0.0000020478,0.0000020467, -0.0000020452,0.0000020434,0.0000020418,0.0000020406,0.0000020390, -0.0000020368,0.0000020344,0.0000020331,0.0000020332,0.0000020350, -0.0000020380,0.0000020418,0.0000020457,0.0000020489,0.0000020512, -0.0000020524,0.0000020521,0.0000020507,0.0000020487,0.0000020467, -0.0000020452,0.0000020446,0.0000020445,0.0000020449,0.0000020457, -0.0000020468,0.0000020485,0.0000020509,0.0000020539,0.0000020570, -0.0000020598,0.0000020621,0.0000020632,0.0000020633,0.0000020625, -0.0000020613,0.0000020599,0.0000020578,0.0000020544,0.0000020504, -0.0000020464,0.0000020433,0.0000020414,0.0000020383,0.0000020310, -0.0000020192,0.0000020067,0.0000019973,0.0000019915,0.0000019875, -0.0000019842,0.0000019820,0.0000019808,0.0000019805,0.0000019814, -0.0000019830,0.0000019840,0.0000019841,0.0000019842,0.0000019851, -0.0000019868,0.0000019885,0.0000019891,0.0000019872,0.0000019816, -0.0000019747,0.0000019703,0.0000019669,0.0000019615,0.0000019644, -0.0000019812,0.0000019994,0.0000020186,0.0000020273,0.0000020257, -0.0000020307,0.0000020390,0.0000020446,0.0000020523,0.0000020537, -0.0000020431,0.0000020305,0.0000020263,0.0000020273,0.0000020291, -0.0000020292,0.0000020278,0.0000020257,0.0000020241,0.0000020240, -0.0000020239,0.0000020232,0.0000020233,0.0000020242,0.0000020252, -0.0000020259,0.0000020270,0.0000020297,0.0000020330,0.0000020349, -0.0000020352,0.0000020344,0.0000020330,0.0000020327,0.0000020294, -0.0000020239,0.0000020226,0.0000020240,0.0000020267,0.0000020316, -0.0000020371,0.0000020413,0.0000020443,0.0000020466,0.0000020497, -0.0000020515,0.0000020493,0.0000020440,0.0000020382,0.0000020326, -0.0000020289,0.0000020275,0.0000020281,0.0000020328,0.0000020396, -0.0000020451,0.0000020484,0.0000020491,0.0000020481,0.0000020447, -0.0000020404,0.0000020354,0.0000020297,0.0000020250,0.0000020216, -0.0000020176,0.0000020132,0.0000020088,0.0000020050,0.0000020021, -0.0000020002,0.0000019996,0.0000020007,0.0000020029,0.0000020047, -0.0000020052,0.0000020053,0.0000020051,0.0000020042,0.0000020030, -0.0000020012,0.0000020000,0.0000020002,0.0000020008,0.0000020018, -0.0000020034,0.0000020051,0.0000020064,0.0000020073,0.0000020080, -0.0000020086,0.0000020091,0.0000020091,0.0000020089,0.0000020088, -0.0000020090,0.0000020097,0.0000020113,0.0000020136,0.0000020158, -0.0000020173,0.0000020185,0.0000020194,0.0000020200,0.0000020207, -0.0000020216,0.0000020225,0.0000020232,0.0000020238,0.0000020242, -0.0000020245,0.0000020248,0.0000020252,0.0000020257,0.0000020262, -0.0000020271,0.0000020286,0.0000020308,0.0000020335,0.0000020362, -0.0000020382,0.0000020396,0.0000020393,0.0000020383,0.0000020372, -0.0000020363,0.0000020358,0.0000020352,0.0000020344,0.0000020332, -0.0000020318,0.0000020305,0.0000020289,0.0000020271,0.0000020250, -0.0000020228,0.0000020204,0.0000020181,0.0000020167,0.0000020158, -0.0000020147,0.0000020133,0.0000020123,0.0000020118,0.0000020117, -0.0000020116,0.0000020113,0.0000020102,0.0000020078,0.0000020039, -0.0000019986,0.0000019942,0.0000019913,0.0000019899,0.0000019895, -0.0000019901,0.0000019922,0.0000019960,0.0000020017,0.0000020089, -0.0000020161,0.0000020223,0.0000020274,0.0000020314,0.0000020343, -0.0000020354,0.0000020360,0.0000020383,0.0000020438,0.0000020525, -0.0000020617,0.0000020693,0.0000020754,0.0000020808,0.0000020825, -0.0000020797,0.0000020814,0.0000020806,0.0000020797,0.0000020782, -0.0000020766,0.0000020742,0.0000020716,0.0000020697,0.0000020700, -0.0000020722,0.0000020761,0.0000020802,0.0000020843,0.0000020888, -0.0000020933,0.0000020972,0.0000020995,0.0000021000,0.0000020992, -0.0000020980,0.0000020959,0.0000020940,0.0000020932,0.0000020930, -0.0000020926,0.0000020914,0.0000020894,0.0000020870,0.0000020843, -0.0000020805,0.0000020765,0.0000020724,0.0000020691,0.0000020671, -0.0000020665,0.0000020669,0.0000020684,0.0000020712,0.0000020757, -0.0000020810,0.0000020863,0.0000020903,0.0000020923,0.0000020927, -0.0000020922,0.0000020919,0.0000020920,0.0000020918,0.0000020909, -0.0000020896,0.0000020879,0.0000020856,0.0000020835,0.0000020820, -0.0000020809,0.0000020800,0.0000020789,0.0000020785,0.0000020785, -0.0000020791,0.0000020816,0.0000020859,0.0000020895,0.0000020906, -0.0000020903,0.0000020897,0.0000020896,0.0000020907,0.0000020929, -0.0000020957,0.0000020986,0.0000021007,0.0000021021,0.0000021028, -0.0000021030,0.0000021034,0.0000021039,0.0000021040,0.0000021036, -0.0000021034,0.0000021053,0.0000021097,0.0000021133,0.0000021148, -0.0000021159,0.0000021175,0.0000021193,0.0000021213,0.0000021233, -0.0000021249,0.0000021260,0.0000021264,0.0000021260,0.0000021251, -0.0000021243,0.0000021243,0.0000021250,0.0000021255,0.0000021259, -0.0000021262,0.0000021261,0.0000021250,0.0000021222,0.0000021178, -0.0000021134,0.0000021114,0.0000021116,0.0000021135,0.0000021161, -0.0000021187,0.0000021211,0.0000021231,0.0000021242,0.0000021243, -0.0000021235,0.0000021222,0.0000021206,0.0000021186,0.0000021163, -0.0000021137,0.0000021107,0.0000021074,0.0000021037,0.0000021005, -0.0000020982,0.0000020964,0.0000020955,0.0000020953,0.0000020956, -0.0000020964,0.0000020977,0.0000020996,0.0000021018,0.0000021040, -0.0000021060,0.0000021078,0.0000021093,0.0000021106,0.0000021118, -0.0000021131,0.0000021151,0.0000021176,0.0000021205,0.0000021235, -0.0000021261,0.0000021280,0.0000021293,0.0000021297,0.0000021293, -0.0000021288,0.0000021293,0.0000021313,0.0000021344,0.0000021376, -0.0000021392,0.0000021393,0.0000021392,0.0000021391,0.0000021390, -0.0000021389,0.0000021387,0.0000021378,0.0000021358,0.0000021333, -0.0000021307,0.0000021280,0.0000021250,0.0000021216,0.0000021186, -0.0000021163,0.0000021145,0.0000021133,0.0000021123,0.0000021114, -0.0000021111,0.0000021119,0.0000021144,0.0000021180,0.0000021218, -0.0000021249,0.0000021271,0.0000021281,0.0000021285,0.0000021288, -0.0000021297,0.0000021308,0.0000021311,0.0000021303,0.0000021294, -0.0000021296,0.0000021316,0.0000021347,0.0000021377,0.0000021410, -0.0000021473,0.0000021564,0.0000021629,0.0000021659,0.0000021722, -0.0000021820,0.0000021873,0.0000021870,0.0000021821,0.0000021717, -0.0000021634,0.0000021641,0.0000021723,0.0000021816,0.0000021854, -0.0000021848,0.0000021819,0.0000021798,0.0000021785,0.0000021772, -0.0000021754,0.0000021731,0.0000021699,0.0000021659,0.0000021620, -0.0000021588,0.0000021568,0.0000021564,0.0000021572,0.0000021587, -0.0000021604,0.0000021624,0.0000021643,0.0000021654,0.0000021659, -0.0000021664,0.0000021672,0.0000021681,0.0000021686,0.0000021690, -0.0000021697,0.0000021711,0.0000021730,0.0000021749,0.0000021766, -0.0000021782,0.0000021795,0.0000021808,0.0000021819,0.0000021831, -0.0000021844,0.0000021854,0.0000021859,0.0000021861,0.0000021860, -0.0000021862,0.0000021870,0.0000021882,0.0000021896,0.0000021912, -0.0000021931,0.0000021951,0.0000021971,0.0000021987,0.0000021998, -0.0000022002,0.0000021999,0.0000021992,0.0000021980,0.0000021963, -0.0000021939,0.0000021911,0.0000021871,0.0000021818,0.0000021755, -0.0000021694,0.0000021646,0.0000021614,0.0000021595,0.0000021585, -0.0000021583,0.0000021585,0.0000021585,0.0000021580,0.0000021566, -0.0000021541,0.0000021504,0.0000021459,0.0000021407,0.0000021354, -0.0000021300,0.0000021244,0.0000021187,0.0000021131,0.0000021080, -0.0000021051,0.0000021044,0.0000021045,0.0000021043,0.0000021043, -0.0000021065,0.0000021118,0.0000021188,0.0000021248,0.0000021289, -0.0000021317,0.0000021328,0.0000021311,0.0000021277,0.0000021232, -0.0000021184,0.0000021132,0.0000021074,0.0000021026,0.0000020994, -0.0000020984,0.0000020993,0.0000021027,0.0000021065,0.0000021098, -0.0000021129,0.0000021160,0.0000021197,0.0000021237,0.0000021286, -0.0000021332,0.0000021377,0.0000021413,0.0000021425,0.0000021413, -0.0000021379,0.0000021337,0.0000021290,0.0000021246,0.0000021216, -0.0000021204,0.0000021196,0.0000021181,0.0000021160,0.0000021131, -0.0000021091,0.0000021053,0.0000021022,0.0000020995,0.0000020973, -0.0000020922,0.0000020804,0.0000020692,0.0000020675,0.0000020697, -0.0000020720,0.0000020720,0.0000020688,0.0000020639,0.0000020613, -0.0000020611,0.0000020700,0.0000020803,0.0000020826,0.0000020833, -0.0000020866,0.0000020931,0.0000020972,0.0000020977,0.0000020950, -0.0000020911,0.0000020899,0.0000020965,0.0000021092,0.0000021158, -0.0000021229,0.0000021360,0.0000021441,0.0000021450,0.0000021513, -0.0000021624,0.0000021626,0.0000021577,0.0000021599,0.0000021734, -0.0000021873,0.0000021967,0.0000021960,0.0000021926,0.0000022018, -0.0000022204,0.0000022246,0.0000022154,0.0000021984,0.0000021845, -0.0000021793,0.0000021778,0.0000021826,0.0000021980,0.0000022130, -0.0000022325,0.0000022457,0.0000022462,0.0000022447,0.0000022432, -0.0000022402,0.0000022355,0.0000022303,0.0000022250,0.0000022200, -0.0000022184,0.0000022224,0.0000022304,0.0000022407,0.0000022510, -0.0000022598,0.0000022668,0.0000022729,0.0000022779,0.0000022808, -0.0000022799,0.0000022754,0.0000022699,0.0000022666,0.0000022662, -0.0000022674,0.0000022689,0.0000022707,0.0000022721,0.0000022730, -0.0000022721,0.0000022681,0.0000022610,0.0000022536,0.0000022478, -0.0000022440,0.0000022425,0.0000022426,0.0000022439,0.0000022467, -0.0000022491,0.0000022495,0.0000022465,0.0000022409,0.0000022348, -0.0000022282,0.0000022212,0.0000022147,0.0000022117,0.0000022131, -0.0000022149,0.0000022151,0.0000022122,0.0000022082,0.0000022108, -0.0000022145,0.0000022108,0.0000022057,0.0000021998,0.0000021938, -0.0000021890,0.0000021847,0.0000021834,0.0000021869,0.0000021920, -0.0000021953,0.0000021962,0.0000021960,0.0000021966,0.0000021971, -0.0000021962,0.0000021945,0.0000021943,0.0000021954,0.0000021985, -0.0000022027,0.0000022073,0.0000022129,0.0000022187,0.0000022242, -0.0000022289,0.0000022327,0.0000022352,0.0000022370,0.0000022383, -0.0000022388,0.0000022385,0.0000022375,0.0000022364,0.0000022351, -0.0000022337,0.0000022329,0.0000022341,0.0000022365,0.0000022396, -0.0000022412,0.0000022415,0.0000022413,0.0000022419,0.0000022432, -0.0000022454,0.0000022479,0.0000022494,0.0000022502,0.0000022507, -0.0000022512,0.0000022523,0.0000022541,0.0000022559,0.0000022559, -0.0000022538,0.0000022505,0.0000022482,0.0000022468,0.0000022460, -0.0000022453,0.0000022454,0.0000022456,0.0000022463,0.0000022487, -0.0000022521,0.0000022555,0.0000022593,0.0000022638,0.0000022693, -0.0000022747,0.0000022787,0.0000022821,0.0000022849,0.0000022850, -0.0000022826,0.0000022796,0.0000022758,0.0000022694,0.0000022633, -0.0000022596,0.0000022560,0.0000022511,0.0000022452,0.0000022370, -0.0000022254,0.0000022133,0.0000022062,0.0000022021,0.0000021938, -0.0000021855,0.0000021841,0.0000021858,0.0000021910,0.0000021988, -0.0000022081,0.0000022144,0.0000022161,0.0000022175,0.0000022193, -0.0000022194,0.0000022178,0.0000022153,0.0000022131,0.0000022113, -0.0000022106,0.0000022107,0.0000022111,0.0000022114,0.0000022112, -0.0000022107,0.0000022097,0.0000022078,0.0000022051,0.0000022018, -0.0000021980,0.0000021944,0.0000021906,0.0000021861,0.0000021813, -0.0000021764,0.0000021715,0.0000021665,0.0000021619,0.0000021574, -0.0000021534,0.0000021506,0.0000021492,0.0000021483,0.0000021471, -0.0000021453,0.0000021430,0.0000021407,0.0000021391,0.0000021383, -0.0000021383,0.0000021397,0.0000021427,0.0000021474,0.0000021533, -0.0000021602,0.0000021683,0.0000021760,0.0000021819,0.0000021848, -0.0000021864,0.0000021879,0.0000021906,0.0000021933,0.0000021981, -0.0000022037,0.0000022076,0.0000022092,0.0000022081,0.0000022043, -0.0000021982,0.0000021904,0.0000021823,0.0000021753,0.0000021698, -0.0000021662,0.0000021641,0.0000021632,0.0000021628,0.0000021624, -0.0000021617,0.0000021609,0.0000021605,0.0000021608,0.0000021622, -0.0000021647,0.0000021676,0.0000021703,0.0000021726,0.0000021738, -0.0000021740,0.0000021731,0.0000021711,0.0000021684,0.0000021650, -0.0000021616,0.0000021587,0.0000021564,0.0000021544,0.0000021524, -0.0000021505,0.0000021481,0.0000021448,0.0000021407,0.0000021357, -0.0000021299,0.0000021238,0.0000021176,0.0000021120,0.0000021074, -0.0000021053,0.0000021054,0.0000021069,0.0000021094,0.0000021121, -0.0000021142,0.0000021154,0.0000021159,0.0000021159,0.0000021160, -0.0000021170,0.0000021191,0.0000021218,0.0000021245,0.0000021275, -0.0000021310,0.0000021340,0.0000021363,0.0000021377,0.0000021383, -0.0000021383,0.0000021379,0.0000021374,0.0000021366,0.0000021354, -0.0000021338,0.0000021319,0.0000021301,0.0000021286,0.0000021278, -0.0000021273,0.0000021277,0.0000021289,0.0000021307,0.0000021329, -0.0000021355,0.0000021386,0.0000021417,0.0000021447,0.0000021474, -0.0000021500,0.0000021522,0.0000021537,0.0000021537,0.0000021523, -0.0000021503,0.0000021483,0.0000021475,0.0000021490,0.0000021517, -0.0000021555,0.0000021601,0.0000021651,0.0000021703,0.0000021748, -0.0000021781,0.0000021800,0.0000021810,0.0000021815,0.0000021813, -0.0000021826,0.0000021860,0.0000021876,0.0000021932,0.0000021992, -0.0000022048,0.0000022103,0.0000022157,0.0000022204,0.0000022245, -0.0000022284,0.0000022320,0.0000022352,0.0000022386,0.0000022428, -0.0000022472,0.0000022511,0.0000022545,0.0000022572,0.0000022594, -0.0000022610,0.0000022619,0.0000022621,0.0000022618,0.0000022606, -0.0000022590,0.0000022570,0.0000022549,0.0000022529,0.0000022505, -0.0000022475,0.0000022439,0.0000022402,0.0000022364,0.0000022330, -0.0000022303,0.0000022282,0.0000022267,0.0000022260,0.0000022262, -0.0000022264,0.0000022266,0.0000022266,0.0000022258,0.0000022240, -0.0000022213,0.0000022177,0.0000022136,0.0000022092,0.0000022046, -0.0000022000,0.0000021952,0.0000021902,0.0000021855,0.0000021813, -0.0000021776,0.0000021754,0.0000021738,0.0000021721,0.0000021694, -0.0000021661,0.0000021623,0.0000021579,0.0000021547,0.0000021519, -0.0000021507,0.0000021511,0.0000021521,0.0000021541,0.0000021566, -0.0000021591,0.0000021607,0.0000021599,0.0000021555,0.0000021469, -0.0000021360,0.0000021271,0.0000021231,0.0000021227,0.0000021242, -0.0000021273,0.0000021300,0.0000021314,0.0000021326,0.0000021338, -0.0000021354,0.0000021359,0.0000021352,0.0000021341,0.0000021327, -0.0000021306,0.0000021255,0.0000021163,0.0000021034,0.0000020902, -0.0000020785,0.0000020695,0.0000020625,0.0000020576,0.0000020540, -0.0000020514,0.0000020503,0.0000020503,0.0000020509,0.0000020519, -0.0000020534,0.0000020558,0.0000020585,0.0000020605,0.0000020612, -0.0000020608,0.0000020590,0.0000020562,0.0000020526,0.0000020483, -0.0000020427,0.0000020345,0.0000020237,0.0000020117,0.0000020016, -0.0000019954,0.0000019925,0.0000019911,0.0000019888,0.0000019858, -0.0000019867,0.0000019925,0.0000020014,0.0000020113,0.0000020243, -0.0000020412,0.0000020573,0.0000020673,0.0000020709,0.0000020713, -0.0000020716,0.0000020725,0.0000020752,0.0000020792,0.0000020824, -0.0000020842,0.0000020846,0.0000020837,0.0000020814,0.0000020770, -0.0000020713,0.0000020658,0.0000020584,0.0000020478,0.0000020376, -0.0000020344,0.0000020381,0.0000020526,0.0000020692,0.0000020812, -0.0000020871,0.0000020889,0.0000020902,0.0000020929,0.0000020989, -0.0000021097,0.0000021255,0.0000021452,0.0000021647,0.0000021801, -0.0000021916,0.0000022005,0.0000022070,0.0000022113,0.0000022134, -0.0000022131,0.0000022132,0.0000022132,0.0000022107,0.0000022066, -0.0000022022,0.0000021989,0.0000021972,0.0000021986,0.0000022005, -0.0000022043,0.0000022098,0.0000022149,0.0000022186,0.0000022200, -0.0000022191,0.0000022178,0.0000022170,0.0000022177,0.0000022197, -0.0000022227,0.0000022244,0.0000022209,0.0000022120,0.0000021977, -0.0000021827,0.0000021709,0.0000021667,0.0000021658,0.0000021671, -0.0000021699,0.0000021732,0.0000021771,0.0000021814,0.0000021863, -0.0000021915,0.0000021965,0.0000022004,0.0000022031,0.0000022048, -0.0000022054,0.0000022047,0.0000022030,0.0000022003,0.0000021966, -0.0000021925,0.0000021893,0.0000021875,0.0000021874,0.0000021890, -0.0000021912,0.0000021927,0.0000021919,0.0000021905,0.0000021922, -0.0000021998,0.0000022083,0.0000022107,0.0000022088,0.0000022105, -0.0000022205,0.0000022333,0.0000022395,0.0000022392,0.0000022345, -0.0000022289,0.0000022249,0.0000022143,0.0000021923,0.0000021695, -0.0000021568,0.0000021499,0.0000021417,0.0000021325,0.0000021251, -0.0000021211,0.0000021193,0.0000021184,0.0000021172,0.0000021166, -0.0000021168,0.0000021172,0.0000021178,0.0000021184,0.0000021180, -0.0000021167,0.0000021152,0.0000021151,0.0000021176,0.0000021215, -0.0000021238,0.0000021236,0.0000021210,0.0000021171,0.0000021140, -0.0000021113,0.0000021090,0.0000021075,0.0000021081,0.0000021128, -0.0000021204,0.0000021263,0.0000021316,0.0000021364,0.0000021384, -0.0000021436,0.0000021545,0.0000021668,0.0000021800,0.0000021949, -0.0000022089,0.0000022193,0.0000022247,0.0000022259,0.0000022249, -0.0000022235,0.0000022217,0.0000022200,0.0000022181,0.0000022154, -0.0000022113,0.0000022050,0.0000021945,0.0000021787,0.0000021608, -0.0000021510,0.0000021511,0.0000021653,0.0000021839,0.0000021999, -0.0000022154,0.0000022340,0.0000022495,0.0000022520,0.0000022393, -0.0000022184,0.0000021998,0.0000021885,0.0000021881,0.0000021882, -0.0000021910,0.0000021931,0.0000021943,0.0000021953,0.0000021973, -0.0000022008,0.0000022051,0.0000022096,0.0000022143,0.0000022197, -0.0000022273,0.0000022374,0.0000022478,0.0000022558,0.0000022596, -0.0000022614,0.0000022587,0.0000022512,0.0000022413,0.0000022340, -0.0000022317,0.0000022344,0.0000022394,0.0000022489,0.0000022590, -0.0000022657,0.0000022681,0.0000022681,0.0000022669,0.0000022640, -0.0000022603,0.0000022562,0.0000022520,0.0000022480,0.0000022437, -0.0000022393,0.0000022344,0.0000022289,0.0000022223,0.0000022140, -0.0000022049,0.0000021954,0.0000021860,0.0000021773,0.0000021702, -0.0000021647,0.0000021593,0.0000021519,0.0000021415,0.0000021294, -0.0000021191,0.0000021132,0.0000021113,0.0000021116,0.0000021116, -0.0000021101,0.0000021072,0.0000021029,0.0000020980,0.0000020934, -0.0000020894,0.0000020858,0.0000020827,0.0000020802,0.0000020772, -0.0000020729,0.0000020671,0.0000020605,0.0000020535,0.0000020475, -0.0000020430,0.0000020396,0.0000020379,0.0000020363,0.0000020341, -0.0000020326,0.0000020328,0.0000020362,0.0000020428,0.0000020516, -0.0000020607,0.0000020675,0.0000020708,0.0000020711,0.0000020708, -0.0000020709,0.0000020720,0.0000020741,0.0000020762,0.0000020767, -0.0000020756,0.0000020713,0.0000020653,0.0000020587,0.0000020532, -0.0000020489,0.0000020473,0.0000020507,0.0000020571,0.0000020656, -0.0000020761,0.0000020890,0.0000021019,0.0000021104,0.0000021122, -0.0000021097,0.0000021073,0.0000021063,0.0000021035,0.0000021002, -0.0000020937,0.0000020849,0.0000020743,0.0000020630,0.0000020533, -0.0000020472,0.0000020450,0.0000020478,0.0000020549,0.0000020633, -0.0000020724,0.0000020842,0.0000020989,0.0000021149,0.0000021284, -0.0000021371,0.0000021428,0.0000021479,0.0000021542,0.0000021607, -0.0000021673,0.0000021741,0.0000021800,0.0000021856,0.0000021918, -0.0000021980,0.0000022032,0.0000022084,0.0000022140,0.0000022188, -0.0000022214,0.0000022216,0.0000022209,0.0000022198,0.0000022180, -0.0000022166,0.0000022160,0.0000022203,0.0000022306,0.0000022451, -0.0000022599,0.0000022716,0.0000022796,0.0000022846,0.0000022885, -0.0000022925,0.0000022968,0.0000023012,0.0000023056,0.0000023100, -0.0000023136,0.0000023154,0.0000023153,0.0000023146,0.0000023138, -0.0000023127,0.0000023111,0.0000023090,0.0000023062,0.0000023032, -0.0000023003,0.0000022973,0.0000022938,0.0000022895,0.0000022846, -0.0000022793,0.0000022732,0.0000022668,0.0000022605,0.0000022536, -0.0000022455,0.0000022368,0.0000022283,0.0000022202,0.0000022133, -0.0000022077,0.0000022022,0.0000021948,0.0000021849,0.0000021735, -0.0000021630,0.0000021550,0.0000021487,0.0000021427,0.0000021364, -0.0000021301,0.0000021252,0.0000021229,0.0000021227,0.0000021232, -0.0000021242,0.0000021253,0.0000021261,0.0000021262,0.0000021259, -0.0000021243,0.0000021214,0.0000021175,0.0000021133,0.0000021090, -0.0000021048,0.0000021019,0.0000021009,0.0000021013,0.0000021028, -0.0000021046,0.0000021057,0.0000021063,0.0000021072,0.0000021081, -0.0000021083,0.0000021083,0.0000021085,0.0000021090,0.0000021092, -0.0000021092,0.0000021097,0.0000021108,0.0000021124,0.0000021140, -0.0000021150,0.0000021149,0.0000021131,0.0000021097,0.0000021052, -0.0000021001,0.0000020949,0.0000020904,0.0000020872,0.0000020856, -0.0000020848,0.0000020840,0.0000020837,0.0000020835,0.0000020841, -0.0000020856,0.0000020877,0.0000020903,0.0000020932,0.0000020959, -0.0000020977,0.0000020992,0.0000020997,0.0000021001,0.0000020997, -0.0000020982,0.0000020956,0.0000020925,0.0000020890,0.0000020846, -0.0000020801,0.0000020763,0.0000020736,0.0000020714,0.0000020694, -0.0000020679,0.0000020671,0.0000020672,0.0000020677,0.0000020684, -0.0000020693,0.0000020703,0.0000020718,0.0000020730,0.0000020739, -0.0000020745,0.0000020746,0.0000020743,0.0000020736,0.0000020725, -0.0000020711,0.0000020697,0.0000020681,0.0000020663,0.0000020643, -0.0000020626,0.0000020613,0.0000020602,0.0000020593,0.0000020587, -0.0000020582,0.0000020577,0.0000020577,0.0000020577,0.0000020572, -0.0000020562,0.0000020555,0.0000020550,0.0000020545,0.0000020537, -0.0000020521,0.0000020500,0.0000020476,0.0000020452,0.0000020434, -0.0000020420,0.0000020411,0.0000020410,0.0000020410,0.0000020407, -0.0000020399,0.0000020391,0.0000020384,0.0000020370,0.0000020344, -0.0000020307,0.0000020276,0.0000020262,0.0000020263,0.0000020280, -0.0000020310,0.0000020350,0.0000020394,0.0000020436,0.0000020467, -0.0000020483,0.0000020482,0.0000020470,0.0000020456,0.0000020448, -0.0000020447,0.0000020452,0.0000020459,0.0000020468,0.0000020478, -0.0000020491,0.0000020511,0.0000020536,0.0000020562,0.0000020585, -0.0000020602,0.0000020610,0.0000020608,0.0000020597,0.0000020585, -0.0000020571,0.0000020549,0.0000020519,0.0000020486,0.0000020453, -0.0000020424,0.0000020405,0.0000020384,0.0000020331,0.0000020228, -0.0000020099,0.0000019987,0.0000019915,0.0000019870,0.0000019841, -0.0000019821,0.0000019807,0.0000019802,0.0000019810,0.0000019821, -0.0000019832,0.0000019833,0.0000019827,0.0000019825,0.0000019840, -0.0000019865,0.0000019882,0.0000019874,0.0000019828,0.0000019759, -0.0000019707,0.0000019672,0.0000019613,0.0000019620,0.0000019766, -0.0000019950,0.0000020147,0.0000020268,0.0000020257,0.0000020291, -0.0000020388,0.0000020452,0.0000020524,0.0000020542,0.0000020450, -0.0000020319,0.0000020264,0.0000020271,0.0000020292,0.0000020297, -0.0000020280,0.0000020253,0.0000020232,0.0000020225,0.0000020220, -0.0000020219,0.0000020227,0.0000020239,0.0000020248,0.0000020254, -0.0000020266,0.0000020294,0.0000020325,0.0000020344,0.0000020349, -0.0000020337,0.0000020314,0.0000020302,0.0000020258,0.0000020207, -0.0000020207,0.0000020237,0.0000020276,0.0000020328,0.0000020381, -0.0000020420,0.0000020445,0.0000020465,0.0000020483,0.0000020476, -0.0000020436,0.0000020389,0.0000020337,0.0000020291,0.0000020271, -0.0000020277,0.0000020313,0.0000020380,0.0000020442,0.0000020471, -0.0000020482,0.0000020475,0.0000020452,0.0000020419,0.0000020380, -0.0000020334,0.0000020284,0.0000020245,0.0000020222,0.0000020202, -0.0000020175,0.0000020140,0.0000020097,0.0000020051,0.0000020014, -0.0000019999,0.0000020002,0.0000020019,0.0000020034,0.0000020038, -0.0000020035,0.0000020031,0.0000020024,0.0000020009,0.0000019988, -0.0000019972,0.0000019969,0.0000019972,0.0000019978,0.0000019987, -0.0000019995,0.0000020005,0.0000020017,0.0000020028,0.0000020040, -0.0000020048,0.0000020051,0.0000020049,0.0000020052,0.0000020062, -0.0000020080,0.0000020103,0.0000020130,0.0000020153,0.0000020170, -0.0000020181,0.0000020188,0.0000020193,0.0000020200,0.0000020208, -0.0000020215,0.0000020220,0.0000020226,0.0000020231,0.0000020236, -0.0000020241,0.0000020248,0.0000020256,0.0000020265,0.0000020274, -0.0000020283,0.0000020297,0.0000020319,0.0000020347,0.0000020378, -0.0000020407,0.0000020429,0.0000020441,0.0000020451,0.0000020447, -0.0000020433,0.0000020417,0.0000020401,0.0000020382,0.0000020360, -0.0000020336,0.0000020313,0.0000020289,0.0000020263,0.0000020234, -0.0000020201,0.0000020166,0.0000020137,0.0000020110,0.0000020088, -0.0000020074,0.0000020068,0.0000020063,0.0000020056,0.0000020048, -0.0000020043,0.0000020046,0.0000020058,0.0000020062,0.0000020046, -0.0000020007,0.0000019960,0.0000019919,0.0000019894,0.0000019881, -0.0000019880,0.0000019890,0.0000019922,0.0000019980,0.0000020054, -0.0000020135,0.0000020208,0.0000020272,0.0000020321,0.0000020351, -0.0000020364,0.0000020372,0.0000020377,0.0000020400,0.0000020455, -0.0000020533,0.0000020611,0.0000020685,0.0000020748,0.0000020666, -0.0000020727,0.0000020771,0.0000020794,0.0000020786,0.0000020773, -0.0000020755,0.0000020742,0.0000020738,0.0000020739,0.0000020748, -0.0000020763,0.0000020785,0.0000020805,0.0000020832,0.0000020870, -0.0000020913,0.0000020951,0.0000020984,0.0000021006,0.0000021015, -0.0000021005,0.0000020985,0.0000020969,0.0000020958,0.0000020952, -0.0000020945,0.0000020934,0.0000020916,0.0000020894,0.0000020866, -0.0000020841,0.0000020818,0.0000020798,0.0000020784,0.0000020774, -0.0000020774,0.0000020785,0.0000020804,0.0000020830,0.0000020857, -0.0000020883,0.0000020904,0.0000020921,0.0000020927,0.0000020930, -0.0000020936,0.0000020947,0.0000020956,0.0000020951,0.0000020936, -0.0000020918,0.0000020896,0.0000020872,0.0000020852,0.0000020836, -0.0000020820,0.0000020798,0.0000020785,0.0000020789,0.0000020806, -0.0000020837,0.0000020865,0.0000020878,0.0000020878,0.0000020868, -0.0000020855,0.0000020855,0.0000020872,0.0000020899,0.0000020929, -0.0000020963,0.0000020991,0.0000021007,0.0000021010,0.0000021007, -0.0000020998,0.0000020992,0.0000020996,0.0000020996,0.0000020989, -0.0000020986,0.0000021009,0.0000021062,0.0000021108,0.0000021132, -0.0000021151,0.0000021175,0.0000021200,0.0000021225,0.0000021245, -0.0000021261,0.0000021272,0.0000021276,0.0000021274,0.0000021270, -0.0000021267,0.0000021267,0.0000021269,0.0000021272,0.0000021273, -0.0000021272,0.0000021265,0.0000021250,0.0000021220,0.0000021179, -0.0000021138,0.0000021115,0.0000021115,0.0000021129,0.0000021151, -0.0000021177,0.0000021204,0.0000021229,0.0000021247,0.0000021255, -0.0000021256,0.0000021248,0.0000021233,0.0000021212,0.0000021185, -0.0000021152,0.0000021115,0.0000021076,0.0000021037,0.0000021000, -0.0000020968,0.0000020946,0.0000020931,0.0000020923,0.0000020923, -0.0000020930,0.0000020945,0.0000020966,0.0000020990,0.0000021017, -0.0000021044,0.0000021068,0.0000021089,0.0000021106,0.0000021119, -0.0000021132,0.0000021152,0.0000021177,0.0000021204,0.0000021228, -0.0000021248,0.0000021264,0.0000021275,0.0000021279,0.0000021273, -0.0000021263,0.0000021259,0.0000021268,0.0000021297,0.0000021340, -0.0000021375,0.0000021391,0.0000021397,0.0000021403,0.0000021408, -0.0000021411,0.0000021408,0.0000021398,0.0000021381,0.0000021353, -0.0000021321,0.0000021287,0.0000021255,0.0000021223,0.0000021193, -0.0000021169,0.0000021149,0.0000021133,0.0000021122,0.0000021113, -0.0000021112,0.0000021124,0.0000021153,0.0000021193,0.0000021234, -0.0000021265,0.0000021282,0.0000021286,0.0000021282,0.0000021276, -0.0000021274,0.0000021279,0.0000021286,0.0000021286,0.0000021284, -0.0000021287,0.0000021301,0.0000021330,0.0000021370,0.0000021404, -0.0000021452,0.0000021535,0.0000021615,0.0000021656,0.0000021698, -0.0000021786,0.0000021863,0.0000021877,0.0000021864,0.0000021796, -0.0000021698,0.0000021652,0.0000021675,0.0000021763,0.0000021862, -0.0000021901,0.0000021896,0.0000021856,0.0000021815,0.0000021783, -0.0000021755,0.0000021727,0.0000021692,0.0000021650,0.0000021608, -0.0000021574,0.0000021549,0.0000021535,0.0000021536,0.0000021547, -0.0000021561,0.0000021577,0.0000021593,0.0000021603,0.0000021606, -0.0000021606,0.0000021609,0.0000021615,0.0000021618,0.0000021620, -0.0000021624,0.0000021634,0.0000021649,0.0000021667,0.0000021685, -0.0000021702,0.0000021718,0.0000021732,0.0000021745,0.0000021757, -0.0000021768,0.0000021776,0.0000021780,0.0000021779,0.0000021775, -0.0000021771,0.0000021766,0.0000021762,0.0000021758,0.0000021757, -0.0000021758,0.0000021764,0.0000021776,0.0000021791,0.0000021807, -0.0000021820,0.0000021830,0.0000021835,0.0000021836,0.0000021832, -0.0000021825,0.0000021816,0.0000021799,0.0000021766,0.0000021718, -0.0000021665,0.0000021618,0.0000021586,0.0000021571,0.0000021568, -0.0000021571,0.0000021574,0.0000021569,0.0000021557,0.0000021535, -0.0000021504,0.0000021466,0.0000021420,0.0000021369,0.0000021311, -0.0000021247,0.0000021181,0.0000021118,0.0000021065,0.0000021028, -0.0000021014,0.0000021015,0.0000021020,0.0000021021,0.0000021024, -0.0000021041,0.0000021079,0.0000021131,0.0000021185,0.0000021239, -0.0000021282,0.0000021304,0.0000021302,0.0000021285,0.0000021260, -0.0000021230,0.0000021194,0.0000021143,0.0000021086,0.0000021032, -0.0000020995,0.0000020984,0.0000020991,0.0000021019,0.0000021050, -0.0000021077,0.0000021105,0.0000021146,0.0000021190,0.0000021244, -0.0000021292,0.0000021334,0.0000021374,0.0000021399,0.0000021403, -0.0000021384,0.0000021353,0.0000021314,0.0000021271,0.0000021235, -0.0000021211,0.0000021194,0.0000021178,0.0000021153,0.0000021121, -0.0000021082,0.0000021046,0.0000021012,0.0000020984,0.0000020956, -0.0000020913,0.0000020804,0.0000020678,0.0000020647,0.0000020661, -0.0000020684,0.0000020688,0.0000020667,0.0000020636,0.0000020619, -0.0000020631,0.0000020734,0.0000020832,0.0000020855,0.0000020863, -0.0000020897,0.0000020950,0.0000020976,0.0000020975,0.0000020941, -0.0000020903,0.0000020900,0.0000020986,0.0000021097,0.0000021164, -0.0000021264,0.0000021388,0.0000021436,0.0000021453,0.0000021568, -0.0000021640,0.0000021603,0.0000021569,0.0000021639,0.0000021792, -0.0000021913,0.0000021945,0.0000021906,0.0000021941,0.0000022132, -0.0000022241,0.0000022192,0.0000022031,0.0000021883,0.0000021830, -0.0000021807,0.0000021833,0.0000021970,0.0000022104,0.0000022294, -0.0000022464,0.0000022489,0.0000022486,0.0000022483,0.0000022465, -0.0000022431,0.0000022386,0.0000022325,0.0000022259,0.0000022222, -0.0000022230,0.0000022307,0.0000022416,0.0000022543,0.0000022649, -0.0000022720,0.0000022757,0.0000022781,0.0000022789,0.0000022775, -0.0000022725,0.0000022670,0.0000022647,0.0000022651,0.0000022668, -0.0000022681,0.0000022691,0.0000022701,0.0000022675,0.0000022610, -0.0000022526,0.0000022454,0.0000022413,0.0000022396,0.0000022394, -0.0000022400,0.0000022414,0.0000022425,0.0000022436,0.0000022448, -0.0000022441,0.0000022406,0.0000022338,0.0000022266,0.0000022209, -0.0000022151,0.0000022090,0.0000022050,0.0000022051,0.0000022082, -0.0000022102,0.0000022106,0.0000022082,0.0000022083,0.0000022146, -0.0000022159,0.0000022103,0.0000022039,0.0000021976,0.0000021919, -0.0000021875,0.0000021834,0.0000021818,0.0000021845,0.0000021882, -0.0000021913,0.0000021929,0.0000021932,0.0000021937,0.0000021949, -0.0000021954,0.0000021948,0.0000021948,0.0000021956,0.0000021985, -0.0000022022,0.0000022068,0.0000022117,0.0000022168,0.0000022219, -0.0000022264,0.0000022308,0.0000022343,0.0000022367,0.0000022382, -0.0000022389,0.0000022388,0.0000022382,0.0000022370,0.0000022355, -0.0000022339,0.0000022329,0.0000022339,0.0000022364,0.0000022402, -0.0000022429,0.0000022448,0.0000022458,0.0000022464,0.0000022474, -0.0000022483,0.0000022498,0.0000022507,0.0000022510,0.0000022513, -0.0000022514,0.0000022514,0.0000022507,0.0000022499,0.0000022493, -0.0000022480,0.0000022466,0.0000022450,0.0000022434,0.0000022425, -0.0000022422,0.0000022424,0.0000022432,0.0000022443,0.0000022462, -0.0000022486,0.0000022510,0.0000022542,0.0000022591,0.0000022652, -0.0000022704,0.0000022747,0.0000022796,0.0000022834,0.0000022837, -0.0000022821,0.0000022796,0.0000022753,0.0000022673,0.0000022596, -0.0000022556,0.0000022528,0.0000022491,0.0000022440,0.0000022362, -0.0000022255,0.0000022141,0.0000022072,0.0000022033,0.0000021949, -0.0000021847,0.0000021805,0.0000021806,0.0000021827,0.0000021890, -0.0000021981,0.0000022065,0.0000022103,0.0000022121,0.0000022149, -0.0000022176,0.0000022185,0.0000022187,0.0000022192,0.0000022192, -0.0000022189,0.0000022185,0.0000022185,0.0000022185,0.0000022181, -0.0000022175,0.0000022167,0.0000022154,0.0000022131,0.0000022100, -0.0000022065,0.0000022032,0.0000022002,0.0000021967,0.0000021924, -0.0000021870,0.0000021808,0.0000021743,0.0000021678,0.0000021616, -0.0000021559,0.0000021512,0.0000021477,0.0000021462,0.0000021455, -0.0000021450,0.0000021437,0.0000021415,0.0000021389,0.0000021370, -0.0000021364,0.0000021372,0.0000021391,0.0000021420,0.0000021458, -0.0000021504,0.0000021560,0.0000021631,0.0000021707,0.0000021780, -0.0000021836,0.0000021880,0.0000021903,0.0000021921,0.0000021936, -0.0000021961,0.0000021991,0.0000022017,0.0000022028,0.0000022022, -0.0000021989,0.0000021932,0.0000021861,0.0000021785,0.0000021721, -0.0000021670,0.0000021631,0.0000021602,0.0000021583,0.0000021568, -0.0000021554,0.0000021535,0.0000021514,0.0000021491,0.0000021472, -0.0000021462,0.0000021463,0.0000021472,0.0000021489,0.0000021509, -0.0000021525,0.0000021532,0.0000021531,0.0000021521,0.0000021506, -0.0000021487,0.0000021466,0.0000021447,0.0000021428,0.0000021408, -0.0000021388,0.0000021369,0.0000021346,0.0000021316,0.0000021280, -0.0000021246,0.0000021200,0.0000021152,0.0000021122,0.0000021079, -0.0000021053,0.0000021048,0.0000021057,0.0000021075,0.0000021096, -0.0000021118,0.0000021137,0.0000021151,0.0000021156,0.0000021153, -0.0000021144,0.0000021142,0.0000021157,0.0000021159,0.0000021173, -0.0000021194,0.0000021216,0.0000021244,0.0000021272,0.0000021296, -0.0000021314,0.0000021324,0.0000021328,0.0000021330,0.0000021327, -0.0000021320,0.0000021305,0.0000021287,0.0000021271,0.0000021260, -0.0000021253,0.0000021247,0.0000021246,0.0000021251,0.0000021258, -0.0000021263,0.0000021263,0.0000021268,0.0000021274,0.0000021276, -0.0000021276,0.0000021279,0.0000021296,0.0000021326,0.0000021363, -0.0000021397,0.0000021424,0.0000021434,0.0000021429,0.0000021414, -0.0000021402,0.0000021406,0.0000021428,0.0000021468,0.0000021528, -0.0000021591,0.0000021654,0.0000021712,0.0000021765,0.0000021808, -0.0000021838,0.0000021851,0.0000021863,0.0000021867,0.0000021872, -0.0000021884,0.0000021895,0.0000021892,0.0000021919,0.0000021952, -0.0000021988,0.0000022024,0.0000022072,0.0000022123,0.0000022179, -0.0000022237,0.0000022294,0.0000022344,0.0000022386,0.0000022422, -0.0000022449,0.0000022468,0.0000022479,0.0000022483,0.0000022481, -0.0000022473,0.0000022459,0.0000022442,0.0000022422,0.0000022401, -0.0000022376,0.0000022347,0.0000022310,0.0000022267,0.0000022220, -0.0000022172,0.0000022125,0.0000022082,0.0000022042,0.0000022008, -0.0000021986,0.0000021966,0.0000021945,0.0000021930,0.0000021913, -0.0000021894,0.0000021870,0.0000021841,0.0000021809,0.0000021775, -0.0000021740,0.0000021707,0.0000021675,0.0000021644,0.0000021612, -0.0000021583,0.0000021565,0.0000021557,0.0000021554,0.0000021560, -0.0000021561,0.0000021550,0.0000021535,0.0000021512,0.0000021504, -0.0000021500,0.0000021515,0.0000021537,0.0000021564,0.0000021588, -0.0000021592,0.0000021603,0.0000021586,0.0000021539,0.0000021462, -0.0000021367,0.0000021279,0.0000021226,0.0000021210,0.0000021214, -0.0000021231,0.0000021254,0.0000021269,0.0000021285,0.0000021305, -0.0000021330,0.0000021357,0.0000021375,0.0000021379,0.0000021373, -0.0000021356,0.0000021321,0.0000021251,0.0000021138,0.0000021004, -0.0000020876,0.0000020764,0.0000020665,0.0000020580,0.0000020519, -0.0000020486,0.0000020467,0.0000020457,0.0000020456,0.0000020462, -0.0000020473,0.0000020484,0.0000020501,0.0000020527,0.0000020552, -0.0000020571,0.0000020579,0.0000020574,0.0000020555,0.0000020528, -0.0000020497,0.0000020459,0.0000020408,0.0000020331,0.0000020232, -0.0000020124,0.0000020036,0.0000019981,0.0000019953,0.0000019930, -0.0000019889,0.0000019844,0.0000019835,0.0000019880,0.0000019962, -0.0000020059,0.0000020180,0.0000020333,0.0000020495,0.0000020616, -0.0000020674,0.0000020694,0.0000020700,0.0000020714,0.0000020741, -0.0000020782,0.0000020826,0.0000020847,0.0000020853,0.0000020845, -0.0000020820,0.0000020767,0.0000020704,0.0000020647,0.0000020584, -0.0000020501,0.0000020409,0.0000020347,0.0000020362,0.0000020459, -0.0000020601,0.0000020734,0.0000020815,0.0000020851,0.0000020866, -0.0000020874,0.0000020889,0.0000020933,0.0000021035,0.0000021205, -0.0000021398,0.0000021578,0.0000021734,0.0000021859,0.0000021957, -0.0000022033,0.0000022088,0.0000022120,0.0000022155,0.0000022172, -0.0000022174,0.0000022161,0.0000022134,0.0000022096,0.0000022056, -0.0000022033,0.0000022028,0.0000022058,0.0000022092,0.0000022135, -0.0000022175,0.0000022194,0.0000022192,0.0000022175,0.0000022154, -0.0000022134,0.0000022128,0.0000022143,0.0000022168,0.0000022190, -0.0000022173,0.0000022106,0.0000021980,0.0000021832,0.0000021724, -0.0000021654,0.0000021656,0.0000021644,0.0000021666,0.0000021687, -0.0000021704,0.0000021723,0.0000021740,0.0000021757,0.0000021773, -0.0000021788,0.0000021799,0.0000021807,0.0000021812,0.0000021814, -0.0000021817,0.0000021825,0.0000021836,0.0000021850,0.0000021862, -0.0000021869,0.0000021872,0.0000021872,0.0000021882,0.0000021916, -0.0000021991,0.0000022055,0.0000022071,0.0000022058,0.0000022066, -0.0000022144,0.0000022273,0.0000022356,0.0000022381,0.0000022359, -0.0000022311,0.0000022271,0.0000022214,0.0000022060,0.0000021818, -0.0000021619,0.0000021519,0.0000021444,0.0000021351,0.0000021268, -0.0000021217,0.0000021188,0.0000021169,0.0000021159,0.0000021149, -0.0000021136,0.0000021132,0.0000021133,0.0000021138,0.0000021149, -0.0000021161,0.0000021165,0.0000021163,0.0000021158,0.0000021148, -0.0000021153,0.0000021177,0.0000021210,0.0000021229,0.0000021223, -0.0000021193,0.0000021158,0.0000021126,0.0000021098,0.0000021078, -0.0000021074,0.0000021094,0.0000021161,0.0000021225,0.0000021278, -0.0000021329,0.0000021347,0.0000021376,0.0000021462,0.0000021581, -0.0000021713,0.0000021856,0.0000021994,0.0000022113,0.0000022197, -0.0000022236,0.0000022243,0.0000022235,0.0000022218,0.0000022199, -0.0000022177,0.0000022147,0.0000022109,0.0000022069,0.0000022014, -0.0000021918,0.0000021764,0.0000021590,0.0000021501,0.0000021507, -0.0000021646,0.0000021831,0.0000021992,0.0000022133,0.0000022299, -0.0000022471,0.0000022533,0.0000022512,0.0000022355,0.0000022155, -0.0000021996,0.0000021905,0.0000021896,0.0000021889,0.0000021888, -0.0000021887,0.0000021895,0.0000021917,0.0000021957,0.0000022010, -0.0000022064,0.0000022116,0.0000022181,0.0000022273,0.0000022386, -0.0000022499,0.0000022585,0.0000022631,0.0000022666,0.0000022651, -0.0000022589,0.0000022500,0.0000022429,0.0000022394,0.0000022395, -0.0000022430,0.0000022496,0.0000022582,0.0000022649,0.0000022679, -0.0000022681,0.0000022665,0.0000022634,0.0000022595,0.0000022560, -0.0000022525,0.0000022483,0.0000022440,0.0000022394,0.0000022342, -0.0000022283,0.0000022213,0.0000022136,0.0000022060,0.0000021986, -0.0000021906,0.0000021820,0.0000021736,0.0000021662,0.0000021595, -0.0000021523,0.0000021436,0.0000021328,0.0000021225,0.0000021156, -0.0000021132,0.0000021134,0.0000021133,0.0000021114,0.0000021077, -0.0000021030,0.0000020979,0.0000020927,0.0000020881,0.0000020842, -0.0000020810,0.0000020783,0.0000020750,0.0000020705,0.0000020651, -0.0000020589,0.0000020527,0.0000020472,0.0000020424,0.0000020393, -0.0000020373,0.0000020352,0.0000020330,0.0000020313,0.0000020308, -0.0000020329,0.0000020391,0.0000020484,0.0000020576,0.0000020645, -0.0000020684,0.0000020696,0.0000020693,0.0000020684,0.0000020685, -0.0000020699,0.0000020719,0.0000020734,0.0000020726,0.0000020702, -0.0000020652,0.0000020581,0.0000020501,0.0000020440,0.0000020422, -0.0000020436,0.0000020492,0.0000020569,0.0000020666,0.0000020788, -0.0000020922,0.0000021023,0.0000021060,0.0000021044,0.0000021023, -0.0000021011,0.0000021004,0.0000020975,0.0000020926,0.0000020848, -0.0000020753,0.0000020651,0.0000020559,0.0000020491,0.0000020461, -0.0000020479,0.0000020519,0.0000020592,0.0000020682,0.0000020795, -0.0000020942,0.0000021109,0.0000021248,0.0000021333,0.0000021380, -0.0000021424,0.0000021480,0.0000021536,0.0000021595,0.0000021660, -0.0000021723,0.0000021794,0.0000021880,0.0000021954,0.0000022006, -0.0000022051,0.0000022104,0.0000022159,0.0000022199,0.0000022211, -0.0000022206,0.0000022192,0.0000022169,0.0000022151,0.0000022135, -0.0000022150,0.0000022216,0.0000022328,0.0000022460,0.0000022580, -0.0000022669,0.0000022727,0.0000022767,0.0000022794,0.0000022817, -0.0000022840,0.0000022866,0.0000022898,0.0000022926,0.0000022937, -0.0000022939,0.0000022940,0.0000022941,0.0000022939,0.0000022932, -0.0000022921,0.0000022903,0.0000022880,0.0000022854,0.0000022825, -0.0000022787,0.0000022741,0.0000022690,0.0000022636,0.0000022581, -0.0000022526,0.0000022469,0.0000022404,0.0000022328,0.0000022251, -0.0000022176,0.0000022106,0.0000022044,0.0000021984,0.0000021907, -0.0000021810,0.0000021702,0.0000021600,0.0000021516,0.0000021443, -0.0000021371,0.0000021303,0.0000021242,0.0000021190,0.0000021161, -0.0000021157,0.0000021166,0.0000021182,0.0000021196,0.0000021207, -0.0000021213,0.0000021212,0.0000021203,0.0000021179,0.0000021143, -0.0000021102,0.0000021061,0.0000021019,0.0000020980,0.0000020955, -0.0000020946,0.0000020953,0.0000020972,0.0000020987,0.0000020993, -0.0000020999,0.0000021009,0.0000021016,0.0000021020,0.0000021024, -0.0000021032,0.0000021035,0.0000021038,0.0000021047,0.0000021062, -0.0000021077,0.0000021092,0.0000021104,0.0000021108,0.0000021104, -0.0000021087,0.0000021058,0.0000021018,0.0000020976,0.0000020935, -0.0000020902,0.0000020881,0.0000020870,0.0000020865,0.0000020859, -0.0000020849,0.0000020834,0.0000020826,0.0000020827,0.0000020834, -0.0000020851,0.0000020874,0.0000020900,0.0000020927,0.0000020953, -0.0000020976,0.0000020992,0.0000020991,0.0000020982,0.0000020967, -0.0000020945,0.0000020912,0.0000020867,0.0000020826,0.0000020794, -0.0000020766,0.0000020744,0.0000020725,0.0000020711,0.0000020702, -0.0000020700,0.0000020702,0.0000020704,0.0000020710,0.0000020717, -0.0000020725,0.0000020730,0.0000020733,0.0000020735,0.0000020736, -0.0000020734,0.0000020732,0.0000020726,0.0000020717,0.0000020709, -0.0000020700,0.0000020688,0.0000020676,0.0000020663,0.0000020648, -0.0000020632,0.0000020620,0.0000020613,0.0000020605,0.0000020593, -0.0000020582,0.0000020575,0.0000020565,0.0000020554,0.0000020541, -0.0000020523,0.0000020501,0.0000020473,0.0000020440,0.0000020406, -0.0000020372,0.0000020340,0.0000020316,0.0000020298,0.0000020293, -0.0000020298,0.0000020307,0.0000020315,0.0000020319,0.0000020322, -0.0000020323,0.0000020316,0.0000020297,0.0000020267,0.0000020237, -0.0000020218,0.0000020208,0.0000020207,0.0000020216,0.0000020239, -0.0000020276,0.0000020321,0.0000020364,0.0000020398,0.0000020417, -0.0000020424,0.0000020426,0.0000020429,0.0000020435,0.0000020443, -0.0000020455,0.0000020468,0.0000020480,0.0000020494,0.0000020510, -0.0000020529,0.0000020547,0.0000020562,0.0000020572,0.0000020575, -0.0000020569,0.0000020558,0.0000020546,0.0000020530,0.0000020508, -0.0000020483,0.0000020458,0.0000020433,0.0000020410,0.0000020392, -0.0000020370,0.0000020328,0.0000020243,0.0000020125,0.0000020009, -0.0000019925,0.0000019874,0.0000019846,0.0000019828,0.0000019817, -0.0000019814,0.0000019814,0.0000019819,0.0000019823,0.0000019823, -0.0000019815,0.0000019807,0.0000019814,0.0000019840,0.0000019866, -0.0000019868,0.0000019835,0.0000019771,0.0000019714,0.0000019676, -0.0000019619,0.0000019594,0.0000019719,0.0000019904,0.0000020105, -0.0000020262,0.0000020257,0.0000020275,0.0000020382,0.0000020453, -0.0000020521,0.0000020544,0.0000020467,0.0000020332,0.0000020265, -0.0000020265,0.0000020286,0.0000020295,0.0000020285,0.0000020260, -0.0000020239,0.0000020227,0.0000020220,0.0000020222,0.0000020231, -0.0000020240,0.0000020244,0.0000020248,0.0000020262,0.0000020290, -0.0000020322,0.0000020344,0.0000020349,0.0000020329,0.0000020299, -0.0000020278,0.0000020228,0.0000020181,0.0000020191,0.0000020234, -0.0000020280,0.0000020336,0.0000020388,0.0000020422,0.0000020441, -0.0000020451,0.0000020448,0.0000020421,0.0000020384,0.0000020346, -0.0000020299,0.0000020271,0.0000020271,0.0000020300,0.0000020357, -0.0000020423,0.0000020461,0.0000020467,0.0000020454,0.0000020432, -0.0000020404,0.0000020370,0.0000020332,0.0000020294,0.0000020257, -0.0000020227,0.0000020209,0.0000020200,0.0000020189,0.0000020179, -0.0000020154,0.0000020114,0.0000020084,0.0000020063,0.0000020051, -0.0000020052,0.0000020053,0.0000020046,0.0000020035,0.0000020025, -0.0000020009,0.0000019987,0.0000019959,0.0000019934,0.0000019923, -0.0000019923,0.0000019927,0.0000019931,0.0000019932,0.0000019936, -0.0000019946,0.0000019958,0.0000019971,0.0000019981,0.0000019987, -0.0000019998,0.0000020016,0.0000020040,0.0000020070,0.0000020099, -0.0000020126,0.0000020151,0.0000020172,0.0000020189,0.0000020200, -0.0000020207,0.0000020211,0.0000020215,0.0000020216,0.0000020215, -0.0000020215,0.0000020215,0.0000020215,0.0000020217,0.0000020222, -0.0000020228,0.0000020239,0.0000020252,0.0000020264,0.0000020280, -0.0000020298,0.0000020319,0.0000020345,0.0000020373,0.0000020404, -0.0000020433,0.0000020457,0.0000020471,0.0000020473,0.0000020463, -0.0000020454,0.0000020435,0.0000020412,0.0000020383,0.0000020350, -0.0000020313,0.0000020275,0.0000020239,0.0000020203,0.0000020168, -0.0000020132,0.0000020094,0.0000020055,0.0000020023,0.0000019997, -0.0000019980,0.0000019974,0.0000019972,0.0000019969,0.0000019965, -0.0000019970,0.0000019984,0.0000020001,0.0000020012,0.0000020013, -0.0000019993,0.0000019953,0.0000019906,0.0000019872,0.0000019861, -0.0000019864,0.0000019889,0.0000019938,0.0000020003,0.0000020077, -0.0000020156,0.0000020234,0.0000020302,0.0000020349,0.0000020369, -0.0000020376,0.0000020377,0.0000020382,0.0000020408,0.0000020451, -0.0000020512,0.0000020589,0.0000020490,0.0000020564,0.0000020642, -0.0000020706,0.0000020748,0.0000020769,0.0000020764,0.0000020751, -0.0000020744,0.0000020749,0.0000020763,0.0000020786,0.0000020815, -0.0000020836,0.0000020848,0.0000020863,0.0000020885,0.0000020911, -0.0000020937,0.0000020966,0.0000020990,0.0000021001,0.0000021001, -0.0000021005,0.0000021007,0.0000021007,0.0000021006,0.0000021004, -0.0000021000,0.0000020989,0.0000020969,0.0000020945,0.0000020923, -0.0000020906,0.0000020890,0.0000020877,0.0000020867,0.0000020861, -0.0000020860,0.0000020858,0.0000020855,0.0000020860,0.0000020866, -0.0000020879,0.0000020897,0.0000020917,0.0000020934,0.0000020950, -0.0000020962,0.0000020962,0.0000020948,0.0000020926,0.0000020903, -0.0000020880,0.0000020860,0.0000020845,0.0000020831,0.0000020816, -0.0000020810,0.0000020823,0.0000020849,0.0000020865,0.0000020864, -0.0000020846,0.0000020828,0.0000020820,0.0000020819,0.0000020831, -0.0000020855,0.0000020883,0.0000020914,0.0000020951,0.0000020989, -0.0000021015,0.0000021023,0.0000021019,0.0000021008,0.0000020989, -0.0000020977,0.0000020968,0.0000020954,0.0000020941,0.0000020939, -0.0000020965,0.0000021022,0.0000021080,0.0000021113,0.0000021137, -0.0000021168,0.0000021202,0.0000021231,0.0000021255,0.0000021274, -0.0000021286,0.0000021291,0.0000021292,0.0000021292,0.0000021290, -0.0000021289,0.0000021288,0.0000021287,0.0000021284,0.0000021276, -0.0000021265,0.0000021249,0.0000021225,0.0000021189,0.0000021147, -0.0000021119,0.0000021115,0.0000021126,0.0000021145,0.0000021169, -0.0000021197,0.0000021226,0.0000021249,0.0000021261,0.0000021263, -0.0000021257,0.0000021245,0.0000021223,0.0000021196,0.0000021163, -0.0000021125,0.0000021084,0.0000021042,0.0000021001,0.0000020966, -0.0000020939,0.0000020920,0.0000020907,0.0000020902,0.0000020904, -0.0000020915,0.0000020930,0.0000020952,0.0000020977,0.0000021005, -0.0000021034,0.0000021060,0.0000021081,0.0000021095,0.0000021110, -0.0000021132,0.0000021160,0.0000021189,0.0000021214,0.0000021234, -0.0000021249,0.0000021259,0.0000021261,0.0000021257,0.0000021250, -0.0000021244,0.0000021240,0.0000021253,0.0000021292,0.0000021339, -0.0000021373,0.0000021390,0.0000021402,0.0000021411,0.0000021414, -0.0000021410,0.0000021403,0.0000021390,0.0000021366,0.0000021332, -0.0000021298,0.0000021270,0.0000021241,0.0000021210,0.0000021182, -0.0000021160,0.0000021143,0.0000021130,0.0000021121,0.0000021121, -0.0000021136,0.0000021165,0.0000021206,0.0000021247,0.0000021277, -0.0000021291,0.0000021291,0.0000021284,0.0000021272,0.0000021262, -0.0000021259,0.0000021264,0.0000021272,0.0000021279,0.0000021285, -0.0000021295,0.0000021320,0.0000021362,0.0000021402,0.0000021440, -0.0000021502,0.0000021590,0.0000021651,0.0000021684,0.0000021746, -0.0000021835,0.0000021881,0.0000021882,0.0000021857,0.0000021781, -0.0000021702,0.0000021677,0.0000021711,0.0000021802,0.0000021895, -0.0000021931,0.0000021925,0.0000021885,0.0000021832,0.0000021781, -0.0000021737,0.0000021695,0.0000021649,0.0000021605,0.0000021570, -0.0000021539,0.0000021515,0.0000021506,0.0000021510,0.0000021523, -0.0000021537,0.0000021549,0.0000021560,0.0000021564,0.0000021564, -0.0000021564,0.0000021568,0.0000021573,0.0000021578,0.0000021585, -0.0000021596,0.0000021608,0.0000021621,0.0000021636,0.0000021652, -0.0000021668,0.0000021683,0.0000021695,0.0000021704,0.0000021707, -0.0000021707,0.0000021704,0.0000021699,0.0000021695,0.0000021692, -0.0000021686,0.0000021678,0.0000021668,0.0000021658,0.0000021647, -0.0000021637,0.0000021631,0.0000021632,0.0000021638,0.0000021646, -0.0000021658,0.0000021670,0.0000021679,0.0000021685,0.0000021691, -0.0000021699,0.0000021700,0.0000021689,0.0000021664,0.0000021630, -0.0000021594,0.0000021568,0.0000021554,0.0000021551,0.0000021552, -0.0000021551,0.0000021540,0.0000021518,0.0000021488,0.0000021457, -0.0000021424,0.0000021384,0.0000021335,0.0000021277,0.0000021211, -0.0000021138,0.0000021067,0.0000021005,0.0000020971,0.0000020967, -0.0000020980,0.0000020996,0.0000021005,0.0000021014,0.0000021029, -0.0000021057,0.0000021094,0.0000021132,0.0000021181,0.0000021230, -0.0000021262,0.0000021274,0.0000021278,0.0000021275,0.0000021265, -0.0000021246,0.0000021209,0.0000021162,0.0000021107,0.0000021048, -0.0000021002,0.0000020987,0.0000020990,0.0000021005,0.0000021023, -0.0000021045,0.0000021082,0.0000021126,0.0000021185,0.0000021241, -0.0000021287,0.0000021326,0.0000021358,0.0000021372,0.0000021370, -0.0000021354,0.0000021324,0.0000021289,0.0000021251,0.0000021215, -0.0000021187,0.0000021162,0.0000021131,0.0000021097,0.0000021061, -0.0000021030,0.0000020994,0.0000020965,0.0000020935,0.0000020897, -0.0000020800,0.0000020666,0.0000020623,0.0000020631,0.0000020649, -0.0000020655,0.0000020647,0.0000020637,0.0000020636,0.0000020659, -0.0000020760,0.0000020847,0.0000020869,0.0000020879,0.0000020913, -0.0000020956,0.0000020974,0.0000020969,0.0000020930,0.0000020898, -0.0000020915,0.0000021013,0.0000021102,0.0000021177,0.0000021301, -0.0000021396,0.0000021423,0.0000021480,0.0000021612,0.0000021635, -0.0000021585,0.0000021580,0.0000021700,0.0000021842,0.0000021916, -0.0000021893,0.0000021881,0.0000022021,0.0000022190,0.0000022205, -0.0000022072,0.0000021914,0.0000021846,0.0000021834,0.0000021839, -0.0000021953,0.0000022068,0.0000022225,0.0000022432,0.0000022496, -0.0000022506,0.0000022516,0.0000022509,0.0000022493,0.0000022463, -0.0000022410,0.0000022344,0.0000022296,0.0000022292,0.0000022347, -0.0000022450,0.0000022560,0.0000022658,0.0000022723,0.0000022761, -0.0000022771,0.0000022764,0.0000022732,0.0000022700,0.0000022679, -0.0000022663,0.0000022655,0.0000022663,0.0000022680,0.0000022684, -0.0000022663,0.0000022595,0.0000022490,0.0000022397,0.0000022348, -0.0000022340,0.0000022358,0.0000022374,0.0000022386,0.0000022400, -0.0000022419,0.0000022429,0.0000022421,0.0000022393,0.0000022348, -0.0000022276,0.0000022186,0.0000022117,0.0000022063,0.0000022011, -0.0000021971,0.0000021965,0.0000021999,0.0000022036,0.0000022053, -0.0000022058,0.0000022045,0.0000022094,0.0000022170,0.0000022164, -0.0000022104,0.0000022036,0.0000021970,0.0000021914,0.0000021870, -0.0000021831,0.0000021814,0.0000021830,0.0000021852,0.0000021879, -0.0000021902,0.0000021911,0.0000021920,0.0000021938,0.0000021954, -0.0000021961,0.0000021967,0.0000021977,0.0000022002,0.0000022038, -0.0000022084,0.0000022129,0.0000022170,0.0000022215,0.0000022256, -0.0000022295,0.0000022331,0.0000022359,0.0000022375,0.0000022386, -0.0000022392,0.0000022394,0.0000022387,0.0000022373,0.0000022355, -0.0000022344,0.0000022356,0.0000022386,0.0000022435,0.0000022475, -0.0000022508,0.0000022528,0.0000022537,0.0000022549,0.0000022553, -0.0000022558,0.0000022564,0.0000022565,0.0000022561,0.0000022551, -0.0000022530,0.0000022495,0.0000022460,0.0000022442,0.0000022439, -0.0000022438,0.0000022429,0.0000022411,0.0000022393,0.0000022386, -0.0000022388,0.0000022400,0.0000022421,0.0000022442,0.0000022458, -0.0000022470,0.0000022491,0.0000022538,0.0000022601,0.0000022652, -0.0000022699,0.0000022762,0.0000022808,0.0000022812,0.0000022808, -0.0000022794,0.0000022749,0.0000022660,0.0000022566,0.0000022514, -0.0000022486,0.0000022458,0.0000022420,0.0000022354,0.0000022259, -0.0000022155,0.0000022087,0.0000022055,0.0000021985,0.0000021874, -0.0000021806,0.0000021779,0.0000021773,0.0000021801,0.0000021881, -0.0000021978,0.0000022052,0.0000022086,0.0000022109,0.0000022138, -0.0000022164,0.0000022182,0.0000022200,0.0000022219,0.0000022234, -0.0000022243,0.0000022244,0.0000022244,0.0000022239,0.0000022230, -0.0000022220,0.0000022209,0.0000022196,0.0000022174,0.0000022144, -0.0000022112,0.0000022084,0.0000022055,0.0000022025,0.0000021987, -0.0000021936,0.0000021874,0.0000021805,0.0000021734,0.0000021660, -0.0000021589,0.0000021527,0.0000021484,0.0000021465,0.0000021459, -0.0000021451,0.0000021434,0.0000021404,0.0000021374,0.0000021350, -0.0000021346,0.0000021359,0.0000021381,0.0000021409,0.0000021445, -0.0000021489,0.0000021540,0.0000021603,0.0000021670,0.0000021733, -0.0000021794,0.0000021849,0.0000021892,0.0000021922,0.0000021945, -0.0000021963,0.0000021981,0.0000021997,0.0000022003,0.0000021996, -0.0000021964,0.0000021911,0.0000021839,0.0000021766,0.0000021704, -0.0000021653,0.0000021612,0.0000021572,0.0000021545,0.0000021527, -0.0000021509,0.0000021492,0.0000021471,0.0000021443,0.0000021417, -0.0000021389,0.0000021368,0.0000021352,0.0000021342,0.0000021341, -0.0000021345,0.0000021351,0.0000021352,0.0000021351,0.0000021349, -0.0000021345,0.0000021340,0.0000021335,0.0000021332,0.0000021326, -0.0000021322,0.0000021324,0.0000021308,0.0000021289,0.0000021271, -0.0000021248,0.0000021216,0.0000021184,0.0000021158,0.0000021135, -0.0000021122,0.0000021119,0.0000021126,0.0000021139,0.0000021157, -0.0000021172,0.0000021186,0.0000021198,0.0000021208,0.0000021213, -0.0000021208,0.0000021198,0.0000021189,0.0000021182,0.0000021182, -0.0000021175,0.0000021180,0.0000021187,0.0000021200,0.0000021221, -0.0000021240,0.0000021251,0.0000021260,0.0000021268,0.0000021273, -0.0000021271,0.0000021260,0.0000021244,0.0000021229,0.0000021223, -0.0000021223,0.0000021226,0.0000021235,0.0000021248,0.0000021260, -0.0000021266,0.0000021267,0.0000021265,0.0000021258,0.0000021244, -0.0000021225,0.0000021202,0.0000021178,0.0000021166,0.0000021164, -0.0000021174,0.0000021203,0.0000021248,0.0000021294,0.0000021325, -0.0000021335,0.0000021331,0.0000021323,0.0000021320,0.0000021343, -0.0000021389,0.0000021457,0.0000021529,0.0000021603,0.0000021679, -0.0000021750,0.0000021806,0.0000021849,0.0000021880,0.0000021897, -0.0000021902,0.0000021903,0.0000021889,0.0000021870,0.0000021860, -0.0000021855,0.0000021843,0.0000021842,0.0000021872,0.0000021916, -0.0000021964,0.0000022016,0.0000022069,0.0000022122,0.0000022169, -0.0000022206,0.0000022233,0.0000022248,0.0000022255,0.0000022255, -0.0000022247,0.0000022233,0.0000022212,0.0000022186,0.0000022156, -0.0000022120,0.0000022078,0.0000022032,0.0000021982,0.0000021927, -0.0000021871,0.0000021817,0.0000021767,0.0000021724,0.0000021690, -0.0000021670,0.0000021661,0.0000021656,0.0000021657,0.0000021666, -0.0000021673,0.0000021678,0.0000021677,0.0000021672,0.0000021661, -0.0000021646,0.0000021628,0.0000021608,0.0000021589,0.0000021569, -0.0000021553,0.0000021545,0.0000021546,0.0000021548,0.0000021554, -0.0000021560,0.0000021558,0.0000021547,0.0000021532,0.0000021519, -0.0000021509,0.0000021519,0.0000021538,0.0000021553,0.0000021558, -0.0000021548,0.0000021522,0.0000021472,0.0000021405,0.0000021327, -0.0000021253,0.0000021200,0.0000021175,0.0000021170,0.0000021177, -0.0000021192,0.0000021207,0.0000021220,0.0000021243,0.0000021278, -0.0000021320,0.0000021363,0.0000021395,0.0000021409,0.0000021403, -0.0000021379,0.0000021319,0.0000021217,0.0000021090,0.0000020961, -0.0000020840,0.0000020730,0.0000020629,0.0000020539,0.0000020469, -0.0000020427,0.0000020406,0.0000020393,0.0000020386,0.0000020387, -0.0000020398,0.0000020413,0.0000020431,0.0000020455,0.0000020482, -0.0000020508,0.0000020528,0.0000020535,0.0000020528,0.0000020509, -0.0000020484,0.0000020455,0.0000020418,0.0000020375,0.0000020307, -0.0000020218,0.0000020125,0.0000020052,0.0000020002,0.0000019972, -0.0000019943,0.0000019884,0.0000019826,0.0000019808,0.0000019840, -0.0000019910,0.0000020003,0.0000020118,0.0000020262,0.0000020418, -0.0000020546,0.0000020624,0.0000020660,0.0000020681,0.0000020699, -0.0000020732,0.0000020786,0.0000020833,0.0000020857,0.0000020867, -0.0000020860,0.0000020832,0.0000020775,0.0000020701,0.0000020631, -0.0000020570,0.0000020510,0.0000020443,0.0000020383,0.0000020373, -0.0000020404,0.0000020516,0.0000020643,0.0000020740,0.0000020796, -0.0000020826,0.0000020837,0.0000020833,0.0000020834,0.0000020882, -0.0000020992,0.0000021142,0.0000021311,0.0000021477,0.0000021631, -0.0000021774,0.0000021901,0.0000022000,0.0000022073,0.0000022129, -0.0000022162,0.0000022188,0.0000022205,0.0000022211,0.0000022197, -0.0000022166,0.0000022134,0.0000022110,0.0000022106,0.0000022120, -0.0000022151,0.0000022177,0.0000022195,0.0000022198,0.0000022184, -0.0000022162,0.0000022132,0.0000022108,0.0000022093,0.0000022090, -0.0000022111,0.0000022142,0.0000022139,0.0000022090,0.0000022000, -0.0000021872,0.0000021770,0.0000021693,0.0000021650,0.0000021662, -0.0000021666,0.0000021662,0.0000021670,0.0000021679,0.0000021691, -0.0000021707,0.0000021728,0.0000021751,0.0000021769,0.0000021783, -0.0000021798,0.0000021813,0.0000021828,0.0000021839,0.0000021850, -0.0000021864,0.0000021870,0.0000021911,0.0000021970,0.0000022023, -0.0000022053,0.0000022054,0.0000022043,0.0000022058,0.0000022130, -0.0000022240,0.0000022317,0.0000022353,0.0000022346,0.0000022306, -0.0000022269,0.0000022233,0.0000022131,0.0000021929,0.0000021707, -0.0000021559,0.0000021477,0.0000021395,0.0000021305,0.0000021240, -0.0000021201,0.0000021177,0.0000021154,0.0000021129,0.0000021107, -0.0000021082,0.0000021065,0.0000021056,0.0000021061,0.0000021071, -0.0000021092,0.0000021113,0.0000021129,0.0000021147,0.0000021154, -0.0000021151,0.0000021149,0.0000021157,0.0000021176,0.0000021207, -0.0000021221,0.0000021208,0.0000021174,0.0000021138,0.0000021105, -0.0000021085,0.0000021071,0.0000021081,0.0000021133,0.0000021200, -0.0000021247,0.0000021298,0.0000021321,0.0000021337,0.0000021402, -0.0000021510,0.0000021633,0.0000021768,0.0000021902,0.0000022026, -0.0000022129,0.0000022196,0.0000022225,0.0000022229,0.0000022216, -0.0000022197,0.0000022173,0.0000022142,0.0000022102,0.0000022061, -0.0000022024,0.0000021978,0.0000021890,0.0000021746,0.0000021585, -0.0000021495,0.0000021498,0.0000021629,0.0000021812,0.0000021973, -0.0000022109,0.0000022252,0.0000022425,0.0000022569,0.0000022586, -0.0000022514,0.0000022360,0.0000022180,0.0000022035,0.0000021942, -0.0000021891,0.0000021876,0.0000021876,0.0000021886,0.0000021909, -0.0000021948,0.0000021995,0.0000022044,0.0000022098,0.0000022172, -0.0000022274,0.0000022397,0.0000022516,0.0000022611,0.0000022679, -0.0000022711,0.0000022716,0.0000022669,0.0000022591,0.0000022518, -0.0000022473,0.0000022451,0.0000022466,0.0000022502,0.0000022578, -0.0000022646,0.0000022678,0.0000022672,0.0000022660,0.0000022637, -0.0000022613,0.0000022583,0.0000022545,0.0000022505,0.0000022462, -0.0000022416,0.0000022362,0.0000022298,0.0000022225,0.0000022150, -0.0000022088,0.0000022032,0.0000021964,0.0000021882,0.0000021789, -0.0000021694,0.0000021608,0.0000021537,0.0000021463,0.0000021372, -0.0000021273,0.0000021199,0.0000021168,0.0000021165,0.0000021159, -0.0000021130,0.0000021082,0.0000021023,0.0000020961,0.0000020906, -0.0000020858,0.0000020816,0.0000020781,0.0000020748,0.0000020709, -0.0000020662,0.0000020612,0.0000020561,0.0000020512,0.0000020459, -0.0000020416,0.0000020382,0.0000020355,0.0000020336,0.0000020320, -0.0000020302,0.0000020294,0.0000020314,0.0000020373,0.0000020450, -0.0000020528,0.0000020596,0.0000020642,0.0000020664,0.0000020665, -0.0000020657,0.0000020653,0.0000020659,0.0000020676,0.0000020694, -0.0000020703,0.0000020693,0.0000020647,0.0000020572,0.0000020483, -0.0000020412,0.0000020366,0.0000020367,0.0000020414,0.0000020482, -0.0000020569,0.0000020685,0.0000020824,0.0000020941,0.0000020997, -0.0000021000,0.0000020979,0.0000020968,0.0000020966,0.0000020958, -0.0000020922,0.0000020861,0.0000020775,0.0000020685,0.0000020603, -0.0000020534,0.0000020492,0.0000020482,0.0000020504,0.0000020560, -0.0000020637,0.0000020746,0.0000020893,0.0000021059,0.0000021200, -0.0000021283,0.0000021324,0.0000021368,0.0000021420,0.0000021469, -0.0000021524,0.0000021585,0.0000021652,0.0000021743,0.0000021844, -0.0000021928,0.0000021985,0.0000022029,0.0000022076,0.0000022131, -0.0000022177,0.0000022201,0.0000022200,0.0000022179,0.0000022154, -0.0000022132,0.0000022104,0.0000022095,0.0000022125,0.0000022199, -0.0000022305,0.0000022414,0.0000022508,0.0000022580,0.0000022628, -0.0000022657,0.0000022674,0.0000022686,0.0000022702,0.0000022720, -0.0000022733,0.0000022739,0.0000022745,0.0000022752,0.0000022760, -0.0000022765,0.0000022766,0.0000022762,0.0000022750,0.0000022731, -0.0000022708,0.0000022677,0.0000022632,0.0000022578,0.0000022525, -0.0000022473,0.0000022424,0.0000022374,0.0000022319,0.0000022254, -0.0000022179,0.0000022099,0.0000022015,0.0000021937,0.0000021863, -0.0000021785,0.0000021700,0.0000021614,0.0000021534,0.0000021459, -0.0000021383,0.0000021307,0.0000021241,0.0000021187,0.0000021136, -0.0000021100,0.0000021090,0.0000021099,0.0000021119,0.0000021137, -0.0000021151,0.0000021158,0.0000021157,0.0000021149,0.0000021130, -0.0000021101,0.0000021066,0.0000021031,0.0000020996,0.0000020961, -0.0000020928,0.0000020903,0.0000020891,0.0000020895,0.0000020907, -0.0000020915,0.0000020922,0.0000020930,0.0000020938,0.0000020944, -0.0000020952,0.0000020964,0.0000020971,0.0000020973,0.0000020980, -0.0000020994,0.0000021011,0.0000021028,0.0000021044,0.0000021056, -0.0000021061,0.0000021057,0.0000021041,0.0000021013,0.0000020979, -0.0000020945,0.0000020915,0.0000020892,0.0000020878,0.0000020872, -0.0000020873,0.0000020873,0.0000020868,0.0000020854,0.0000020837, -0.0000020828,0.0000020824,0.0000020828,0.0000020840,0.0000020859, -0.0000020885,0.0000020913,0.0000020938,0.0000020954,0.0000020961, -0.0000020959,0.0000020950,0.0000020926,0.0000020895,0.0000020862, -0.0000020831,0.0000020803,0.0000020778,0.0000020757,0.0000020739, -0.0000020721,0.0000020711,0.0000020708,0.0000020705,0.0000020704, -0.0000020705,0.0000020707,0.0000020710,0.0000020713,0.0000020716, -0.0000020720,0.0000020723,0.0000020726,0.0000020730,0.0000020733, -0.0000020732,0.0000020729,0.0000020721,0.0000020709,0.0000020695, -0.0000020677,0.0000020654,0.0000020636,0.0000020623,0.0000020613, -0.0000020600,0.0000020582,0.0000020564,0.0000020545,0.0000020526, -0.0000020508,0.0000020485,0.0000020452,0.0000020413,0.0000020373, -0.0000020335,0.0000020298,0.0000020261,0.0000020228,0.0000020207, -0.0000020195,0.0000020192,0.0000020197,0.0000020207,0.0000020217, -0.0000020225,0.0000020232,0.0000020236,0.0000020231,0.0000020215, -0.0000020193,0.0000020172,0.0000020158,0.0000020152,0.0000020147, -0.0000020146,0.0000020151,0.0000020168,0.0000020199,0.0000020239, -0.0000020280,0.0000020313,0.0000020339,0.0000020358,0.0000020376, -0.0000020392,0.0000020407,0.0000020424,0.0000020445,0.0000020467, -0.0000020486,0.0000020502,0.0000020514,0.0000020523,0.0000020529, -0.0000020531,0.0000020527,0.0000020520,0.0000020509,0.0000020496, -0.0000020477,0.0000020455,0.0000020434,0.0000020416,0.0000020401, -0.0000020388,0.0000020374,0.0000020349,0.0000020306,0.0000020234, -0.0000020131,0.0000020023,0.0000019937,0.0000019884,0.0000019855, -0.0000019839,0.0000019832,0.0000019830,0.0000019825,0.0000019819, -0.0000019814,0.0000019810,0.0000019804,0.0000019795,0.0000019794, -0.0000019812,0.0000019842,0.0000019856,0.0000019838,0.0000019786, -0.0000019726,0.0000019683,0.0000019625,0.0000019591,0.0000019678, -0.0000019859,0.0000020061,0.0000020242,0.0000020258,0.0000020265, -0.0000020368,0.0000020450,0.0000020513,0.0000020548,0.0000020486, -0.0000020348,0.0000020267,0.0000020258,0.0000020274,0.0000020291, -0.0000020288,0.0000020272,0.0000020255,0.0000020238,0.0000020226, -0.0000020226,0.0000020233,0.0000020238,0.0000020237,0.0000020241, -0.0000020255,0.0000020287,0.0000020324,0.0000020345,0.0000020347, -0.0000020324,0.0000020288,0.0000020259,0.0000020205,0.0000020160, -0.0000020178,0.0000020227,0.0000020283,0.0000020344,0.0000020392, -0.0000020419,0.0000020429,0.0000020420,0.0000020398,0.0000020372, -0.0000020344,0.0000020307,0.0000020273,0.0000020266,0.0000020287, -0.0000020339,0.0000020400,0.0000020446,0.0000020458,0.0000020443, -0.0000020413,0.0000020379,0.0000020347,0.0000020311,0.0000020274, -0.0000020245,0.0000020218,0.0000020196,0.0000020181,0.0000020177, -0.0000020176,0.0000020172,0.0000020163,0.0000020152,0.0000020152, -0.0000020148,0.0000020140,0.0000020133,0.0000020125,0.0000020106, -0.0000020087,0.0000020064,0.0000020036,0.0000020002,0.0000019966, -0.0000019933,0.0000019909,0.0000019897,0.0000019894,0.0000019893, -0.0000019892,0.0000019891,0.0000019896,0.0000019904,0.0000019915, -0.0000019924,0.0000019942,0.0000019970,0.0000020004,0.0000020042, -0.0000020082,0.0000020120,0.0000020155,0.0000020186,0.0000020213, -0.0000020236,0.0000020255,0.0000020269,0.0000020276,0.0000020279, -0.0000020278,0.0000020273,0.0000020266,0.0000020259,0.0000020252, -0.0000020243,0.0000020232,0.0000020225,0.0000020223,0.0000020223, -0.0000020232,0.0000020241,0.0000020257,0.0000020276,0.0000020298, -0.0000020322,0.0000020348,0.0000020375,0.0000020402,0.0000020425, -0.0000020439,0.0000020449,0.0000020454,0.0000020452,0.0000020438, -0.0000020417,0.0000020391,0.0000020352,0.0000020308,0.0000020260, -0.0000020210,0.0000020161,0.0000020118,0.0000020076,0.0000020042, -0.0000020008,0.0000019973,0.0000019939,0.0000019908,0.0000019885, -0.0000019874,0.0000019875,0.0000019883,0.0000019891,0.0000019898, -0.0000019913,0.0000019940,0.0000019969,0.0000019979,0.0000019965, -0.0000019926,0.0000019881,0.0000019853,0.0000019847,0.0000019861, -0.0000019893,0.0000019941,0.0000020003,0.0000020078,0.0000020161, -0.0000020241,0.0000020305,0.0000020344,0.0000020363,0.0000020368, -0.0000020376,0.0000020386,0.0000020400,0.0000020434,0.0000020388, -0.0000020423,0.0000020477,0.0000020544,0.0000020614,0.0000020678, -0.0000020723,0.0000020747,0.0000020748,0.0000020756,0.0000020762, -0.0000020780,0.0000020814,0.0000020858,0.0000020896,0.0000020920, -0.0000020935,0.0000020944,0.0000020948,0.0000020959,0.0000020971, -0.0000020974,0.0000020976,0.0000020985,0.0000020993,0.0000021000, -0.0000021004,0.0000021008,0.0000021010,0.0000021009,0.0000021000, -0.0000020985,0.0000020961,0.0000020934,0.0000020911,0.0000020892, -0.0000020876,0.0000020859,0.0000020842,0.0000020826,0.0000020811, -0.0000020805,0.0000020811,0.0000020828,0.0000020851,0.0000020881, -0.0000020909,0.0000020931,0.0000020948,0.0000020956,0.0000020952, -0.0000020936,0.0000020917,0.0000020898,0.0000020885,0.0000020877, -0.0000020870,0.0000020869,0.0000020876,0.0000020889,0.0000020895, -0.0000020882,0.0000020850,0.0000020812,0.0000020785,0.0000020781, -0.0000020792,0.0000020811,0.0000020835,0.0000020863,0.0000020894, -0.0000020931,0.0000020973,0.0000021010,0.0000021031,0.0000021038, -0.0000021037,0.0000021021,0.0000020995,0.0000020968,0.0000020944, -0.0000020919,0.0000020900,0.0000020897,0.0000020916,0.0000020971, -0.0000021036,0.0000021081,0.0000021113,0.0000021151,0.0000021193, -0.0000021229,0.0000021260,0.0000021285,0.0000021301,0.0000021311, -0.0000021315,0.0000021314,0.0000021310,0.0000021304,0.0000021298, -0.0000021295,0.0000021295,0.0000021291,0.0000021278,0.0000021260, -0.0000021235,0.0000021200,0.0000021159,0.0000021128,0.0000021120, -0.0000021125,0.0000021142,0.0000021167,0.0000021196,0.0000021224, -0.0000021244,0.0000021254,0.0000021257,0.0000021251,0.0000021237, -0.0000021216,0.0000021191,0.0000021163,0.0000021126,0.0000021087, -0.0000021045,0.0000021005,0.0000020968,0.0000020939,0.0000020916, -0.0000020901,0.0000020892,0.0000020890,0.0000020893,0.0000020903, -0.0000020919,0.0000020938,0.0000020962,0.0000020991,0.0000021019, -0.0000021040,0.0000021055,0.0000021071,0.0000021092,0.0000021120, -0.0000021151,0.0000021180,0.0000021205,0.0000021225,0.0000021240, -0.0000021245,0.0000021243,0.0000021240,0.0000021234,0.0000021225, -0.0000021222,0.0000021241,0.0000021285,0.0000021333,0.0000021367, -0.0000021385,0.0000021396,0.0000021401,0.0000021400,0.0000021395, -0.0000021386,0.0000021369,0.0000021344,0.0000021317,0.0000021291, -0.0000021264,0.0000021233,0.0000021204,0.0000021177,0.0000021155, -0.0000021138,0.0000021128,0.0000021130,0.0000021145,0.0000021174, -0.0000021214,0.0000021254,0.0000021281,0.0000021292,0.0000021293, -0.0000021286,0.0000021272,0.0000021258,0.0000021251,0.0000021250, -0.0000021259,0.0000021273,0.0000021288,0.0000021299,0.0000021315, -0.0000021351,0.0000021396,0.0000021430,0.0000021474,0.0000021553, -0.0000021635,0.0000021675,0.0000021713,0.0000021791,0.0000021866, -0.0000021890,0.0000021890,0.0000021860,0.0000021785,0.0000021724, -0.0000021712,0.0000021743,0.0000021818,0.0000021899,0.0000021941, -0.0000021940,0.0000021906,0.0000021848,0.0000021783,0.0000021725, -0.0000021670,0.0000021619,0.0000021580,0.0000021546,0.0000021515, -0.0000021499,0.0000021501,0.0000021513,0.0000021528,0.0000021541, -0.0000021553,0.0000021560,0.0000021561,0.0000021562,0.0000021567, -0.0000021575,0.0000021585,0.0000021596,0.0000021608,0.0000021621, -0.0000021635,0.0000021649,0.0000021665,0.0000021682,0.0000021697, -0.0000021708,0.0000021713,0.0000021714,0.0000021708,0.0000021698, -0.0000021687,0.0000021675,0.0000021661,0.0000021645,0.0000021629, -0.0000021609,0.0000021589,0.0000021572,0.0000021554,0.0000021536, -0.0000021522,0.0000021511,0.0000021507,0.0000021510,0.0000021517, -0.0000021526,0.0000021536,0.0000021550,0.0000021573,0.0000021592, -0.0000021600,0.0000021595,0.0000021579,0.0000021557,0.0000021537, -0.0000021523,0.0000021517,0.0000021514,0.0000021508,0.0000021495, -0.0000021472,0.0000021441,0.0000021409,0.0000021379,0.0000021346, -0.0000021304,0.0000021254,0.0000021195,0.0000021127,0.0000021054, -0.0000020987,0.0000020941,0.0000020926,0.0000020943,0.0000020968, -0.0000020988,0.0000021004,0.0000021021,0.0000021043,0.0000021071, -0.0000021100,0.0000021131,0.0000021169,0.0000021203,0.0000021230, -0.0000021263,0.0000021281,0.0000021287,0.0000021285,0.0000021265, -0.0000021235,0.0000021192,0.0000021135,0.0000021070,0.0000021021, -0.0000020994,0.0000020985,0.0000020986,0.0000020996,0.0000021019, -0.0000021047,0.0000021097,0.0000021163,0.0000021221,0.0000021267, -0.0000021305,0.0000021329,0.0000021337,0.0000021331,0.0000021315, -0.0000021288,0.0000021254,0.0000021214,0.0000021178,0.0000021145, -0.0000021107,0.0000021070,0.0000021037,0.0000021010,0.0000020978, -0.0000020941,0.0000020908,0.0000020877,0.0000020791,0.0000020655, -0.0000020596,0.0000020599,0.0000020619,0.0000020628,0.0000020640, -0.0000020647,0.0000020650,0.0000020676,0.0000020769,0.0000020842, -0.0000020864,0.0000020876,0.0000020911,0.0000020949,0.0000020966, -0.0000020957,0.0000020918,0.0000020899,0.0000020943,0.0000021038, -0.0000021104,0.0000021202,0.0000021335,0.0000021400,0.0000021418, -0.0000021521,0.0000021630,0.0000021624,0.0000021582,0.0000021620, -0.0000021760,0.0000021868,0.0000021877,0.0000021837,0.0000021898, -0.0000022097,0.0000022182,0.0000022104,0.0000021943,0.0000021852, -0.0000021845,0.0000021840,0.0000021918,0.0000022039,0.0000022137, -0.0000022347,0.0000022462,0.0000022498,0.0000022529,0.0000022537, -0.0000022535,0.0000022525,0.0000022486,0.0000022432,0.0000022397, -0.0000022390,0.0000022415,0.0000022484,0.0000022575,0.0000022649, -0.0000022702,0.0000022734,0.0000022744,0.0000022735,0.0000022704, -0.0000022688,0.0000022690,0.0000022687,0.0000022676,0.0000022673, -0.0000022678,0.0000022675,0.0000022622,0.0000022507,0.0000022387, -0.0000022320,0.0000022305,0.0000022312,0.0000022328,0.0000022341, -0.0000022351,0.0000022372,0.0000022400,0.0000022417,0.0000022406, -0.0000022364,0.0000022303,0.0000022227,0.0000022132,0.0000022036, -0.0000021968,0.0000021915,0.0000021879,0.0000021870,0.0000021894, -0.0000021953,0.0000021993,0.0000022010,0.0000022013,0.0000022026, -0.0000022113,0.0000022190,0.0000022169,0.0000022114,0.0000022044, -0.0000021974,0.0000021915,0.0000021871,0.0000021832,0.0000021815, -0.0000021821,0.0000021833,0.0000021848,0.0000021865,0.0000021878, -0.0000021897,0.0000021925,0.0000021951,0.0000021972,0.0000021992, -0.0000022009,0.0000022030,0.0000022062,0.0000022104,0.0000022145, -0.0000022181,0.0000022217,0.0000022252,0.0000022285,0.0000022318, -0.0000022344,0.0000022361,0.0000022376,0.0000022392,0.0000022404, -0.0000022404,0.0000022394,0.0000022378,0.0000022368,0.0000022381, -0.0000022415,0.0000022471,0.0000022520,0.0000022563,0.0000022591, -0.0000022606,0.0000022623,0.0000022633,0.0000022634,0.0000022636, -0.0000022636,0.0000022623,0.0000022594,0.0000022553,0.0000022502, -0.0000022459,0.0000022434,0.0000022424,0.0000022425,0.0000022418, -0.0000022398,0.0000022375,0.0000022361,0.0000022357,0.0000022372, -0.0000022398,0.0000022420,0.0000022431,0.0000022434,0.0000022447, -0.0000022485,0.0000022539,0.0000022589,0.0000022645,0.0000022721, -0.0000022773,0.0000022781,0.0000022783,0.0000022781,0.0000022743, -0.0000022652,0.0000022550,0.0000022485,0.0000022448,0.0000022419, -0.0000022391,0.0000022343,0.0000022263,0.0000022166,0.0000022096, -0.0000022069,0.0000022027,0.0000021926,0.0000021833,0.0000021792, -0.0000021761,0.0000021751,0.0000021791,0.0000021880,0.0000021977, -0.0000022044,0.0000022079,0.0000022106,0.0000022133,0.0000022163, -0.0000022190,0.0000022213,0.0000022236,0.0000022259,0.0000022274, -0.0000022277,0.0000022271,0.0000022259,0.0000022241,0.0000022221, -0.0000022208,0.0000022190,0.0000022167,0.0000022138,0.0000022110, -0.0000022081,0.0000022052,0.0000022022,0.0000021990,0.0000021944, -0.0000021886,0.0000021830,0.0000021767,0.0000021700,0.0000021630, -0.0000021569,0.0000021526,0.0000021502,0.0000021489,0.0000021477, -0.0000021454,0.0000021420,0.0000021385,0.0000021356,0.0000021345, -0.0000021351,0.0000021362,0.0000021383,0.0000021417,0.0000021464, -0.0000021521,0.0000021585,0.0000021647,0.0000021704,0.0000021758, -0.0000021811,0.0000021862,0.0000021904,0.0000021931,0.0000021949, -0.0000021963,0.0000021977,0.0000021986,0.0000021982,0.0000021958, -0.0000021914,0.0000021859,0.0000021800,0.0000021739,0.0000021680, -0.0000021622,0.0000021570,0.0000021534,0.0000021510,0.0000021490, -0.0000021474,0.0000021457,0.0000021432,0.0000021405,0.0000021377, -0.0000021350,0.0000021325,0.0000021301,0.0000021277,0.0000021266, -0.0000021267,0.0000021268,0.0000021269,0.0000021272,0.0000021276, -0.0000021289,0.0000021310,0.0000021321,0.0000021339,0.0000021354, -0.0000021365,0.0000021369,0.0000021364,0.0000021349,0.0000021324, -0.0000021295,0.0000021263,0.0000021229,0.0000021200,0.0000021182, -0.0000021172,0.0000021165,0.0000021170,0.0000021179,0.0000021186, -0.0000021195,0.0000021208,0.0000021227,0.0000021246,0.0000021245, -0.0000021251,0.0000021259,0.0000021255,0.0000021244,0.0000021237, -0.0000021225,0.0000021214,0.0000021210,0.0000021214,0.0000021217, -0.0000021223,0.0000021231,0.0000021241,0.0000021241,0.0000021230, -0.0000021215,0.0000021193,0.0000021174,0.0000021163,0.0000021160, -0.0000021166,0.0000021184,0.0000021209,0.0000021234,0.0000021252, -0.0000021261,0.0000021262,0.0000021257,0.0000021244,0.0000021225, -0.0000021201,0.0000021176,0.0000021148,0.0000021113,0.0000021078, -0.0000021040,0.0000021040,0.0000021058,0.0000021092,0.0000021148, -0.0000021196,0.0000021226,0.0000021237,0.0000021240,0.0000021248, -0.0000021278,0.0000021321,0.0000021384,0.0000021467,0.0000021555, -0.0000021636,0.0000021710,0.0000021772,0.0000021822,0.0000021861, -0.0000021891,0.0000021906,0.0000021905,0.0000021894,0.0000021881, -0.0000021857,0.0000021836,0.0000021828,0.0000021834,0.0000021846, -0.0000021861,0.0000021875,0.0000021904,0.0000021937,0.0000021966, -0.0000021985,0.0000021991,0.0000021991,0.0000021985,0.0000021973, -0.0000021954,0.0000021927,0.0000021895,0.0000021859,0.0000021820, -0.0000021778,0.0000021734,0.0000021694,0.0000021654,0.0000021615, -0.0000021579,0.0000021551,0.0000021535,0.0000021526,0.0000021529, -0.0000021544,0.0000021561,0.0000021578,0.0000021602,0.0000021623, -0.0000021635,0.0000021639,0.0000021636,0.0000021625,0.0000021608, -0.0000021588,0.0000021562,0.0000021533,0.0000021505,0.0000021486, -0.0000021475,0.0000021471,0.0000021471,0.0000021471,0.0000021471, -0.0000021466,0.0000021456,0.0000021437,0.0000021415,0.0000021397, -0.0000021388,0.0000021389,0.0000021387,0.0000021379,0.0000021360, -0.0000021327,0.0000021283,0.0000021231,0.0000021182,0.0000021144, -0.0000021117,0.0000021106,0.0000021106,0.0000021117,0.0000021133, -0.0000021151,0.0000021171,0.0000021206,0.0000021254,0.0000021309, -0.0000021365,0.0000021406,0.0000021422,0.0000021413,0.0000021376, -0.0000021289,0.0000021164,0.0000021030,0.0000020904,0.0000020788, -0.0000020682,0.0000020585,0.0000020501,0.0000020431,0.0000020371, -0.0000020329,0.0000020305,0.0000020290,0.0000020284,0.0000020291, -0.0000020311,0.0000020338,0.0000020367,0.0000020397,0.0000020429, -0.0000020455,0.0000020475,0.0000020482,0.0000020474,0.0000020451, -0.0000020425,0.0000020398,0.0000020371,0.0000020329,0.0000020276, -0.0000020198,0.0000020120,0.0000020058,0.0000020012,0.0000019980, -0.0000019938,0.0000019863,0.0000019804,0.0000019784,0.0000019800, -0.0000019856,0.0000019948,0.0000020066,0.0000020200,0.0000020339, -0.0000020465,0.0000020554,0.0000020608,0.0000020639,0.0000020667, -0.0000020714,0.0000020775,0.0000020829,0.0000020864,0.0000020873, -0.0000020872,0.0000020846,0.0000020786,0.0000020704,0.0000020626, -0.0000020560,0.0000020512,0.0000020466,0.0000020414,0.0000020374, -0.0000020382,0.0000020454,0.0000020557,0.0000020652,0.0000020720, -0.0000020764,0.0000020789,0.0000020791,0.0000020785,0.0000020803, -0.0000020854,0.0000020940,0.0000021054,0.0000021190,0.0000021343, -0.0000021509,0.0000021679,0.0000021834,0.0000021962,0.0000022058, -0.0000022120,0.0000022163,0.0000022195,0.0000022219,0.0000022226, -0.0000022234,0.0000022225,0.0000022200,0.0000022179,0.0000022171, -0.0000022179,0.0000022195,0.0000022208,0.0000022211,0.0000022202, -0.0000022182,0.0000022156,0.0000022123,0.0000022081,0.0000022054, -0.0000022047,0.0000022064,0.0000022090,0.0000022094,0.0000022072, -0.0000022016,0.0000021941,0.0000021860,0.0000021799,0.0000021764, -0.0000021733,0.0000021712,0.0000021702,0.0000021699,0.0000021704, -0.0000021721,0.0000021744,0.0000021766,0.0000021788,0.0000021811, -0.0000021836,0.0000021870,0.0000021905,0.0000021940,0.0000021975, -0.0000022007,0.0000022036,0.0000022055,0.0000022058,0.0000022047, -0.0000022047,0.0000022077,0.0000022153,0.0000022242,0.0000022302, -0.0000022322,0.0000022315,0.0000022283,0.0000022246,0.0000022219, -0.0000022153,0.0000021989,0.0000021771,0.0000021600,0.0000021501, -0.0000021422,0.0000021340,0.0000021275,0.0000021236,0.0000021202, -0.0000021163,0.0000021125,0.0000021092,0.0000021050,0.0000021009, -0.0000020982,0.0000020967,0.0000020968,0.0000020980,0.0000020996, -0.0000021021,0.0000021051,0.0000021081,0.0000021110,0.0000021129, -0.0000021141,0.0000021148,0.0000021150,0.0000021154,0.0000021176, -0.0000021209,0.0000021214,0.0000021192,0.0000021152,0.0000021114, -0.0000021091,0.0000021077,0.0000021074,0.0000021113,0.0000021180, -0.0000021221,0.0000021272,0.0000021306,0.0000021314,0.0000021357, -0.0000021448,0.0000021560,0.0000021685,0.0000021817,0.0000021943, -0.0000022055,0.0000022140,0.0000022189,0.0000022209,0.0000022207, -0.0000022189,0.0000022166,0.0000022137,0.0000022100,0.0000022055, -0.0000022015,0.0000021981,0.0000021942,0.0000021865,0.0000021734, -0.0000021580,0.0000021481,0.0000021482,0.0000021599,0.0000021777, -0.0000021941,0.0000022076,0.0000022205,0.0000022346,0.0000022499, -0.0000022592,0.0000022602,0.0000022531,0.0000022400,0.0000022236, -0.0000022095,0.0000021995,0.0000021935,0.0000021913,0.0000021915, -0.0000021944,0.0000021972,0.0000022007,0.0000022045,0.0000022098, -0.0000022177,0.0000022286,0.0000022413,0.0000022534,0.0000022634, -0.0000022709,0.0000022751,0.0000022776,0.0000022742,0.0000022673, -0.0000022601,0.0000022545,0.0000022502,0.0000022488,0.0000022504, -0.0000022571,0.0000022633,0.0000022662,0.0000022663,0.0000022663, -0.0000022657,0.0000022642,0.0000022616,0.0000022583,0.0000022543, -0.0000022497,0.0000022446,0.0000022390,0.0000022324,0.0000022250, -0.0000022184,0.0000022129,0.0000022077,0.0000022017,0.0000021943, -0.0000021847,0.0000021739,0.0000021640,0.0000021562,0.0000021497, -0.0000021424,0.0000021336,0.0000021258,0.0000021214,0.0000021199, -0.0000021180,0.0000021138,0.0000021074,0.0000020999,0.0000020929, -0.0000020871,0.0000020819,0.0000020773,0.0000020735,0.0000020696, -0.0000020649,0.0000020602,0.0000020560,0.0000020524,0.0000020483, -0.0000020441,0.0000020400,0.0000020362,0.0000020335,0.0000020322, -0.0000020310,0.0000020296,0.0000020294,0.0000020308,0.0000020342, -0.0000020397,0.0000020463,0.0000020528,0.0000020582,0.0000020616, -0.0000020630,0.0000020630,0.0000020624,0.0000020627,0.0000020639, -0.0000020658,0.0000020674,0.0000020663,0.0000020630,0.0000020560, -0.0000020466,0.0000020377,0.0000020325,0.0000020316,0.0000020339, -0.0000020395,0.0000020473,0.0000020585,0.0000020725,0.0000020856, -0.0000020936,0.0000020956,0.0000020944,0.0000020936,0.0000020942, -0.0000020941,0.0000020927,0.0000020881,0.0000020811,0.0000020734, -0.0000020654,0.0000020581,0.0000020523,0.0000020494,0.0000020500, -0.0000020525,0.0000020592,0.0000020697,0.0000020838,0.0000021003, -0.0000021143,0.0000021224,0.0000021272,0.0000021316,0.0000021360, -0.0000021409,0.0000021464,0.0000021519,0.0000021592,0.0000021695, -0.0000021807,0.0000021901,0.0000021968,0.0000022015,0.0000022056, -0.0000022101,0.0000022149,0.0000022182,0.0000022182,0.0000022161, -0.0000022135,0.0000022103,0.0000022067,0.0000022041,0.0000022039, -0.0000022074,0.0000022141,0.0000022227,0.0000022314,0.0000022389, -0.0000022448,0.0000022488,0.0000022513,0.0000022529,0.0000022543, -0.0000022555,0.0000022565,0.0000022572,0.0000022581,0.0000022592, -0.0000022602,0.0000022609,0.0000022612,0.0000022608,0.0000022595, -0.0000022577,0.0000022551,0.0000022511,0.0000022456,0.0000022398, -0.0000022341,0.0000022287,0.0000022233,0.0000022177,0.0000022111, -0.0000022034,0.0000021944,0.0000021844,0.0000021749,0.0000021664, -0.0000021591,0.0000021528,0.0000021474,0.0000021422,0.0000021367, -0.0000021303,0.0000021235,0.0000021178,0.0000021131,0.0000021087, -0.0000021049,0.0000021030,0.0000021035,0.0000021058,0.0000021080, -0.0000021097,0.0000021105,0.0000021105,0.0000021096,0.0000021080, -0.0000021059,0.0000021032,0.0000021005,0.0000020977,0.0000020946, -0.0000020913,0.0000020882,0.0000020856,0.0000020839,0.0000020832, -0.0000020832,0.0000020836,0.0000020843,0.0000020849,0.0000020854, -0.0000020863,0.0000020876,0.0000020886,0.0000020890,0.0000020894, -0.0000020905,0.0000020922,0.0000020940,0.0000020959,0.0000020976, -0.0000020992,0.0000021002,0.0000021001,0.0000020989,0.0000020966, -0.0000020936,0.0000020910,0.0000020888,0.0000020871,0.0000020858, -0.0000020856,0.0000020864,0.0000020873,0.0000020876,0.0000020869, -0.0000020853,0.0000020839,0.0000020831,0.0000020831,0.0000020835, -0.0000020847,0.0000020865,0.0000020884,0.0000020901,0.0000020914, -0.0000020920,0.0000020918,0.0000020906,0.0000020883,0.0000020854, -0.0000020824,0.0000020797,0.0000020776,0.0000020759,0.0000020743, -0.0000020723,0.0000020705,0.0000020695,0.0000020690,0.0000020684, -0.0000020682,0.0000020683,0.0000020684,0.0000020686,0.0000020689, -0.0000020695,0.0000020703,0.0000020712,0.0000020724,0.0000020736, -0.0000020745,0.0000020746,0.0000020740,0.0000020727,0.0000020709, -0.0000020688,0.0000020661,0.0000020634,0.0000020609,0.0000020586, -0.0000020565,0.0000020544,0.0000020519,0.0000020490,0.0000020457, -0.0000020428,0.0000020402,0.0000020372,0.0000020335,0.0000020296, -0.0000020259,0.0000020227,0.0000020197,0.0000020168,0.0000020143, -0.0000020130,0.0000020125,0.0000020127,0.0000020135,0.0000020145, -0.0000020153,0.0000020159,0.0000020165,0.0000020167,0.0000020156, -0.0000020136,0.0000020109,0.0000020085,0.0000020069,0.0000020061, -0.0000020058,0.0000020058,0.0000020059,0.0000020069,0.0000020091, -0.0000020124,0.0000020162,0.0000020199,0.0000020234,0.0000020265, -0.0000020292,0.0000020315,0.0000020338,0.0000020364,0.0000020394, -0.0000020424,0.0000020449,0.0000020468,0.0000020480,0.0000020486, -0.0000020486,0.0000020483,0.0000020476,0.0000020467,0.0000020453, -0.0000020436,0.0000020416,0.0000020397,0.0000020380,0.0000020367, -0.0000020359,0.0000020353,0.0000020340,0.0000020314,0.0000020267, -0.0000020196,0.0000020110,0.0000020016,0.0000019941,0.0000019893, -0.0000019866,0.0000019851,0.0000019844,0.0000019839,0.0000019831, -0.0000019821,0.0000019810,0.0000019801,0.0000019794,0.0000019785, -0.0000019779,0.0000019788,0.0000019816,0.0000019842,0.0000019837, -0.0000019801,0.0000019742,0.0000019692,0.0000019639,0.0000019589, -0.0000019645,0.0000019816,0.0000020013,0.0000020214,0.0000020264, -0.0000020255,0.0000020345,0.0000020440,0.0000020503,0.0000020545, -0.0000020500,0.0000020366,0.0000020271,0.0000020252,0.0000020265, -0.0000020285,0.0000020289,0.0000020281,0.0000020266,0.0000020246, -0.0000020228,0.0000020225,0.0000020230,0.0000020231,0.0000020230, -0.0000020233,0.0000020248,0.0000020282,0.0000020321,0.0000020343, -0.0000020346,0.0000020321,0.0000020282,0.0000020245,0.0000020186, -0.0000020145,0.0000020164,0.0000020219,0.0000020286,0.0000020349, -0.0000020389,0.0000020408,0.0000020404,0.0000020377,0.0000020352, -0.0000020336,0.0000020308,0.0000020273,0.0000020258,0.0000020272, -0.0000020317,0.0000020382,0.0000020432,0.0000020452,0.0000020444, -0.0000020413,0.0000020372,0.0000020336,0.0000020304,0.0000020269, -0.0000020236,0.0000020208,0.0000020183,0.0000020164,0.0000020151, -0.0000020143,0.0000020139,0.0000020134,0.0000020135,0.0000020142, -0.0000020157,0.0000020176,0.0000020183,0.0000020191,0.0000020195, -0.0000020187,0.0000020171,0.0000020148,0.0000020117,0.0000020080, -0.0000020040,0.0000020001,0.0000019966,0.0000019940,0.0000019924, -0.0000019915,0.0000019911,0.0000019907,0.0000019907,0.0000019911, -0.0000019917,0.0000019926,0.0000019948,0.0000019980,0.0000020018, -0.0000020056,0.0000020095,0.0000020133,0.0000020170,0.0000020202, -0.0000020230,0.0000020253,0.0000020274,0.0000020292,0.0000020306, -0.0000020316,0.0000020321,0.0000020324,0.0000020326,0.0000020325, -0.0000020323,0.0000020322,0.0000020308,0.0000020291,0.0000020273, -0.0000020259,0.0000020248,0.0000020240,0.0000020236,0.0000020238, -0.0000020245,0.0000020259,0.0000020279,0.0000020300,0.0000020320, -0.0000020341,0.0000020360,0.0000020377,0.0000020394,0.0000020406, -0.0000020411,0.0000020410,0.0000020399,0.0000020376,0.0000020340, -0.0000020301,0.0000020246,0.0000020185,0.0000020124,0.0000020073, -0.0000020027,0.0000019990,0.0000019957,0.0000019928,0.0000019899, -0.0000019867,0.0000019833,0.0000019806,0.0000019790,0.0000019789, -0.0000019798,0.0000019814,0.0000019831,0.0000019854,0.0000019888, -0.0000019924,0.0000019942,0.0000019936,0.0000019904,0.0000019863, -0.0000019843,0.0000019840,0.0000019856,0.0000019891,0.0000019947, -0.0000020007,0.0000020074,0.0000020145,0.0000020215,0.0000020272, -0.0000020314,0.0000020343,0.0000020362,0.0000020372,0.0000020374, -0.0000020353,0.0000020370,0.0000020387,0.0000020411,0.0000020455, -0.0000020519,0.0000020587,0.0000020649,0.0000020699,0.0000020739, -0.0000020758,0.0000020781,0.0000020810,0.0000020851,0.0000020898, -0.0000020941,0.0000020978,0.0000021005,0.0000021026,0.0000021037, -0.0000021037,0.0000021023,0.0000021005,0.0000020990,0.0000020989, -0.0000020990,0.0000020991,0.0000020990,0.0000020990,0.0000020992, -0.0000020989,0.0000020980,0.0000020959,0.0000020930,0.0000020900, -0.0000020872,0.0000020842,0.0000020816,0.0000020791,0.0000020769, -0.0000020755,0.0000020751,0.0000020762,0.0000020782,0.0000020806, -0.0000020840,0.0000020881,0.0000020921,0.0000020953,0.0000020981, -0.0000020999,0.0000021008,0.0000021006,0.0000020996,0.0000020985, -0.0000020975,0.0000020963,0.0000020953,0.0000020947,0.0000020938, -0.0000020917,0.0000020878,0.0000020828,0.0000020785,0.0000020765, -0.0000020764,0.0000020774,0.0000020789,0.0000020804,0.0000020823, -0.0000020850,0.0000020885,0.0000020925,0.0000020967,0.0000021002, -0.0000021025,0.0000021038,0.0000021042,0.0000021026,0.0000020995, -0.0000020960,0.0000020925,0.0000020894,0.0000020870,0.0000020858, -0.0000020866,0.0000020909,0.0000020976,0.0000021036,0.0000021080, -0.0000021123,0.0000021172,0.0000021220,0.0000021261,0.0000021292, -0.0000021312,0.0000021326,0.0000021331,0.0000021329,0.0000021321, -0.0000021311,0.0000021305,0.0000021305,0.0000021310,0.0000021309, -0.0000021296,0.0000021273,0.0000021246,0.0000021213,0.0000021175, -0.0000021141,0.0000021126,0.0000021127,0.0000021140,0.0000021162, -0.0000021188,0.0000021211,0.0000021225,0.0000021232,0.0000021234, -0.0000021228,0.0000021215,0.0000021197,0.0000021173,0.0000021144, -0.0000021109,0.0000021070,0.0000021030,0.0000020989,0.0000020953, -0.0000020922,0.0000020898,0.0000020882,0.0000020872,0.0000020867, -0.0000020868,0.0000020878,0.0000020893,0.0000020913,0.0000020935, -0.0000020963,0.0000020990,0.0000021009,0.0000021023,0.0000021037, -0.0000021053,0.0000021072,0.0000021097,0.0000021126,0.0000021154, -0.0000021184,0.0000021210,0.0000021228,0.0000021233,0.0000021231, -0.0000021223,0.0000021213,0.0000021204,0.0000021203,0.0000021227, -0.0000021275,0.0000021322,0.0000021347,0.0000021360,0.0000021371, -0.0000021378,0.0000021380,0.0000021376,0.0000021367,0.0000021357, -0.0000021340,0.0000021318,0.0000021291,0.0000021262,0.0000021231, -0.0000021199,0.0000021169,0.0000021147,0.0000021137,0.0000021140, -0.0000021154,0.0000021181,0.0000021218,0.0000021254,0.0000021277, -0.0000021287,0.0000021288,0.0000021282,0.0000021270,0.0000021257, -0.0000021246,0.0000021239,0.0000021243,0.0000021260,0.0000021283, -0.0000021300,0.0000021312,0.0000021339,0.0000021383,0.0000021423, -0.0000021455,0.0000021514,0.0000021602,0.0000021664,0.0000021692, -0.0000021743,0.0000021826,0.0000021887,0.0000021911,0.0000021911, -0.0000021876,0.0000021806,0.0000021752,0.0000021742,0.0000021763, -0.0000021811,0.0000021874,0.0000021915,0.0000021923,0.0000021898, -0.0000021851,0.0000021794,0.0000021732,0.0000021674,0.0000021625, -0.0000021583,0.0000021551,0.0000021532,0.0000021527,0.0000021535, -0.0000021553,0.0000021571,0.0000021588,0.0000021600,0.0000021608, -0.0000021612,0.0000021620,0.0000021633,0.0000021650,0.0000021667, -0.0000021684,0.0000021698,0.0000021712,0.0000021726,0.0000021740, -0.0000021755,0.0000021767,0.0000021776,0.0000021779,0.0000021776, -0.0000021768,0.0000021757,0.0000021744,0.0000021727,0.0000021704, -0.0000021677,0.0000021647,0.0000021617,0.0000021588,0.0000021560, -0.0000021531,0.0000021502,0.0000021476,0.0000021445,0.0000021421, -0.0000021407,0.0000021401,0.0000021396,0.0000021398,0.0000021411, -0.0000021440,0.0000021472,0.0000021496,0.0000021510,0.0000021513, -0.0000021505,0.0000021491,0.0000021478,0.0000021470,0.0000021465, -0.0000021458,0.0000021446,0.0000021430,0.0000021404,0.0000021373, -0.0000021342,0.0000021313,0.0000021282,0.0000021245,0.0000021199, -0.0000021141,0.0000021074,0.0000021004,0.0000020943,0.0000020918, -0.0000020921,0.0000020943,0.0000020969,0.0000020991,0.0000021011, -0.0000021031,0.0000021053,0.0000021076,0.0000021092,0.0000021108, -0.0000021136,0.0000021178,0.0000021230,0.0000021273,0.0000021299, -0.0000021311,0.0000021309,0.0000021294,0.0000021266,0.0000021222, -0.0000021165,0.0000021108,0.0000021054,0.0000021012,0.0000020985, -0.0000020979,0.0000020980,0.0000020986,0.0000021009,0.0000021062, -0.0000021125,0.0000021184,0.0000021232,0.0000021267,0.0000021285, -0.0000021286,0.0000021277,0.0000021262,0.0000021237,0.0000021204, -0.0000021166,0.0000021127,0.0000021083,0.0000021044,0.0000021015, -0.0000020989,0.0000020961,0.0000020914,0.0000020874,0.0000020849, -0.0000020773,0.0000020642,0.0000020569,0.0000020570,0.0000020597, -0.0000020612,0.0000020633,0.0000020652,0.0000020657,0.0000020680, -0.0000020756,0.0000020819,0.0000020841,0.0000020857,0.0000020894, -0.0000020929,0.0000020949,0.0000020939,0.0000020902,0.0000020900, -0.0000020973,0.0000021053,0.0000021115,0.0000021252,0.0000021375, -0.0000021406,0.0000021432,0.0000021565,0.0000021636,0.0000021608, -0.0000021597,0.0000021675,0.0000021804,0.0000021860,0.0000021826, -0.0000021817,0.0000021968,0.0000022119,0.0000022118,0.0000021981, -0.0000021855,0.0000021840,0.0000021844,0.0000021876,0.0000022001, -0.0000022065,0.0000022229,0.0000022388,0.0000022449,0.0000022505, -0.0000022544,0.0000022560,0.0000022569,0.0000022549,0.0000022507, -0.0000022481,0.0000022484,0.0000022496,0.0000022515,0.0000022567, -0.0000022630,0.0000022671,0.0000022697,0.0000022700,0.0000022686, -0.0000022679,0.0000022683,0.0000022692,0.0000022700,0.0000022694, -0.0000022688,0.0000022687,0.0000022659,0.0000022573,0.0000022448, -0.0000022342,0.0000022301,0.0000022301,0.0000022308,0.0000022310, -0.0000022304,0.0000022296,0.0000022312,0.0000022341,0.0000022375, -0.0000022383,0.0000022347,0.0000022278,0.0000022194,0.0000022098, -0.0000021998,0.0000021905,0.0000021834,0.0000021784,0.0000021771, -0.0000021787,0.0000021835,0.0000021902,0.0000021944,0.0000021971, -0.0000021980,0.0000022018,0.0000022128,0.0000022200,0.0000022173, -0.0000022121,0.0000022054,0.0000021986,0.0000021925,0.0000021876, -0.0000021835,0.0000021815,0.0000021813,0.0000021817,0.0000021818, -0.0000021819,0.0000021828,0.0000021858,0.0000021897,0.0000021934, -0.0000021971,0.0000022009,0.0000022035,0.0000022058,0.0000022083, -0.0000022115,0.0000022152,0.0000022186,0.0000022216,0.0000022245, -0.0000022276,0.0000022307,0.0000022331,0.0000022350,0.0000022366, -0.0000022387,0.0000022403,0.0000022407,0.0000022402,0.0000022387, -0.0000022377,0.0000022389,0.0000022425,0.0000022482,0.0000022540, -0.0000022590,0.0000022622,0.0000022643,0.0000022667,0.0000022687, -0.0000022694,0.0000022690,0.0000022681,0.0000022663,0.0000022623, -0.0000022574,0.0000022521,0.0000022480,0.0000022451,0.0000022430, -0.0000022420,0.0000022407,0.0000022386,0.0000022366,0.0000022351, -0.0000022342,0.0000022353,0.0000022384,0.0000022404,0.0000022409, -0.0000022406,0.0000022412,0.0000022442,0.0000022480,0.0000022518, -0.0000022581,0.0000022667,0.0000022728,0.0000022745,0.0000022752, -0.0000022759,0.0000022739,0.0000022656,0.0000022545,0.0000022465, -0.0000022421,0.0000022388,0.0000022360,0.0000022329,0.0000022271, -0.0000022185,0.0000022101,0.0000022060,0.0000022045,0.0000021984, -0.0000021886,0.0000021819,0.0000021785,0.0000021748,0.0000021735, -0.0000021785,0.0000021874,0.0000021964,0.0000022029,0.0000022070, -0.0000022103,0.0000022136,0.0000022169,0.0000022199,0.0000022223, -0.0000022247,0.0000022271,0.0000022285,0.0000022285,0.0000022275, -0.0000022254,0.0000022228,0.0000022202,0.0000022172,0.0000022140, -0.0000022108,0.0000022077,0.0000022048,0.0000022016,0.0000021984, -0.0000021955,0.0000021920,0.0000021875,0.0000021828,0.0000021784, -0.0000021737,0.0000021681,0.0000021635,0.0000021593,0.0000021554, -0.0000021524,0.0000021506,0.0000021491,0.0000021473,0.0000021451, -0.0000021427,0.0000021402,0.0000021380,0.0000021366,0.0000021361, -0.0000021366,0.0000021388,0.0000021430,0.0000021488,0.0000021556, -0.0000021624,0.0000021688,0.0000021748,0.0000021803,0.0000021854, -0.0000021894,0.0000021916,0.0000021927,0.0000021932,0.0000021937, -0.0000021943,0.0000021943,0.0000021927,0.0000021904,0.0000021880, -0.0000021845,0.0000021801,0.0000021746,0.0000021687,0.0000021631, -0.0000021580,0.0000021540,0.0000021510,0.0000021489,0.0000021470, -0.0000021447,0.0000021421,0.0000021396,0.0000021370,0.0000021342, -0.0000021318,0.0000021300,0.0000021289,0.0000021283,0.0000021283, -0.0000021287,0.0000021296,0.0000021310,0.0000021333,0.0000021361, -0.0000021386,0.0000021409,0.0000021428,0.0000021431,0.0000021427, -0.0000021418,0.0000021391,0.0000021354,0.0000021315,0.0000021276, -0.0000021237,0.0000021205,0.0000021180,0.0000021160,0.0000021146, -0.0000021138,0.0000021133,0.0000021130,0.0000021131,0.0000021137, -0.0000021151,0.0000021171,0.0000021191,0.0000021213,0.0000021237, -0.0000021250,0.0000021265,0.0000021274,0.0000021262,0.0000021261, -0.0000021262,0.0000021258,0.0000021256,0.0000021264,0.0000021270, -0.0000021271,0.0000021264,0.0000021249,0.0000021223,0.0000021193, -0.0000021165,0.0000021137,0.0000021126,0.0000021110,0.0000021120, -0.0000021143,0.0000021168,0.0000021197,0.0000021219,0.0000021235, -0.0000021242,0.0000021238,0.0000021222,0.0000021199,0.0000021174, -0.0000021147,0.0000021114,0.0000021076,0.0000021034,0.0000020994, -0.0000020958,0.0000020915,0.0000020919,0.0000020945,0.0000020985, -0.0000021051,0.0000021104,0.0000021147,0.0000021176,0.0000021197, -0.0000021225,0.0000021271,0.0000021332,0.0000021402,0.0000021484, -0.0000021562,0.0000021632,0.0000021695,0.0000021750,0.0000021797, -0.0000021835,0.0000021858,0.0000021871,0.0000021873,0.0000021870, -0.0000021866,0.0000021868,0.0000021872,0.0000021875,0.0000021883, -0.0000021895,0.0000021910,0.0000021925,0.0000021932,0.0000021929, -0.0000021920,0.0000021909,0.0000021892,0.0000021869,0.0000021841, -0.0000021808,0.0000021773,0.0000021738,0.0000021701,0.0000021664, -0.0000021633,0.0000021603,0.0000021573,0.0000021541,0.0000021518, -0.0000021504,0.0000021493,0.0000021488,0.0000021493,0.0000021499, -0.0000021505,0.0000021513,0.0000021528,0.0000021536,0.0000021535, -0.0000021528,0.0000021516,0.0000021500,0.0000021479,0.0000021452, -0.0000021421,0.0000021390,0.0000021368,0.0000021352,0.0000021343, -0.0000021334,0.0000021323,0.0000021310,0.0000021294,0.0000021275, -0.0000021250,0.0000021223,0.0000021198,0.0000021176,0.0000021160, -0.0000021150,0.0000021143,0.0000021131,0.0000021115,0.0000021095, -0.0000021072,0.0000021052,0.0000021038,0.0000021026,0.0000021023, -0.0000021033,0.0000021053,0.0000021078,0.0000021106,0.0000021140, -0.0000021186,0.0000021244,0.0000021304,0.0000021363,0.0000021404, -0.0000021418,0.0000021403,0.0000021340,0.0000021231,0.0000021103, -0.0000020971,0.0000020844,0.0000020730,0.0000020627,0.0000020538, -0.0000020462,0.0000020392,0.0000020320,0.0000020253,0.0000020209, -0.0000020181,0.0000020165,0.0000020164,0.0000020180,0.0000020212, -0.0000020251,0.0000020289,0.0000020328,0.0000020364,0.0000020394, -0.0000020416,0.0000020425,0.0000020413,0.0000020385,0.0000020356, -0.0000020335,0.0000020317,0.0000020290,0.0000020240,0.0000020173, -0.0000020108,0.0000020053,0.0000020009,0.0000019975,0.0000019915, -0.0000019832,0.0000019777,0.0000019758,0.0000019764,0.0000019812, -0.0000019900,0.0000020016,0.0000020138,0.0000020258,0.0000020372, -0.0000020467,0.0000020534,0.0000020576,0.0000020615,0.0000020671, -0.0000020740,0.0000020804,0.0000020850,0.0000020872,0.0000020869, -0.0000020846,0.0000020793,0.0000020722,0.0000020640,0.0000020563, -0.0000020506,0.0000020472,0.0000020436,0.0000020397,0.0000020395, -0.0000020431,0.0000020494,0.0000020569,0.0000020631,0.0000020680, -0.0000020717,0.0000020738,0.0000020753,0.0000020765,0.0000020782, -0.0000020815,0.0000020872,0.0000020954,0.0000021063,0.0000021203, -0.0000021375,0.0000021565,0.0000021753,0.0000021914,0.0000022031, -0.0000022105,0.0000022149,0.0000022181,0.0000022211,0.0000022240, -0.0000022243,0.0000022241,0.0000022225,0.0000022208,0.0000022202, -0.0000022207,0.0000022217,0.0000022223,0.0000022218,0.0000022207, -0.0000022187,0.0000022153,0.0000022109,0.0000022064,0.0000022030, -0.0000022017,0.0000022020,0.0000022033,0.0000022045,0.0000022033, -0.0000022021,0.0000021995,0.0000021960,0.0000021934,0.0000021907, -0.0000021886,0.0000021872,0.0000021867,0.0000021874,0.0000021890, -0.0000021914,0.0000021937,0.0000021965,0.0000021989,0.0000022016, -0.0000022042,0.0000022061,0.0000022069,0.0000022070,0.0000022066, -0.0000022062,0.0000022063,0.0000022086,0.0000022134,0.0000022195, -0.0000022249,0.0000022287,0.0000022295,0.0000022281,0.0000022242, -0.0000022206,0.0000022180,0.0000022130,0.0000022006,0.0000021812, -0.0000021628,0.0000021517,0.0000021440,0.0000021359,0.0000021289, -0.0000021253,0.0000021228,0.0000021192,0.0000021140,0.0000021083, -0.0000021034,0.0000020990,0.0000020944,0.0000020914,0.0000020901, -0.0000020904,0.0000020919,0.0000020933,0.0000020946,0.0000020965, -0.0000020990,0.0000021022,0.0000021058,0.0000021084,0.0000021108, -0.0000021135,0.0000021145,0.0000021144,0.0000021153,0.0000021184, -0.0000021210,0.0000021209,0.0000021175,0.0000021130,0.0000021102, -0.0000021083,0.0000021074,0.0000021098,0.0000021161,0.0000021199, -0.0000021250,0.0000021294,0.0000021298,0.0000021322,0.0000021394, -0.0000021493,0.0000021607,0.0000021736,0.0000021865,0.0000021982, -0.0000022076,0.0000022139,0.0000022173,0.0000022184,0.0000022175, -0.0000022154,0.0000022128,0.0000022098,0.0000022059,0.0000022013, -0.0000021970,0.0000021937,0.0000021902,0.0000021835,0.0000021721, -0.0000021583,0.0000021477,0.0000021474,0.0000021560,0.0000021722, -0.0000021894,0.0000022029,0.0000022140,0.0000022257,0.0000022384, -0.0000022505,0.0000022611,0.0000022618,0.0000022567,0.0000022466, -0.0000022335,0.0000022207,0.0000022104,0.0000022036,0.0000022002, -0.0000021998,0.0000022012,0.0000022046,0.0000022084,0.0000022140, -0.0000022222,0.0000022327,0.0000022445,0.0000022559,0.0000022659, -0.0000022742,0.0000022797,0.0000022830,0.0000022806,0.0000022745, -0.0000022673,0.0000022601,0.0000022533,0.0000022491,0.0000022500, -0.0000022551,0.0000022606,0.0000022640,0.0000022659,0.0000022666, -0.0000022672,0.0000022670,0.0000022655,0.0000022624,0.0000022580, -0.0000022529,0.0000022475,0.0000022414,0.0000022348,0.0000022280, -0.0000022220,0.0000022165,0.0000022114,0.0000022060,0.0000021993, -0.0000021903,0.0000021794,0.0000021686,0.0000021602,0.0000021542, -0.0000021482,0.0000021400,0.0000021314,0.0000021254,0.0000021220, -0.0000021187,0.0000021133,0.0000021054,0.0000020962,0.0000020881, -0.0000020816,0.0000020762,0.0000020716,0.0000020673,0.0000020630, -0.0000020581,0.0000020539,0.0000020507,0.0000020478,0.0000020447, -0.0000020415,0.0000020379,0.0000020343,0.0000020318,0.0000020309, -0.0000020305,0.0000020300,0.0000020291,0.0000020287,0.0000020301, -0.0000020337,0.0000020390,0.0000020452,0.0000020512,0.0000020557, -0.0000020584,0.0000020594,0.0000020597,0.0000020597,0.0000020602, -0.0000020616,0.0000020630,0.0000020632,0.0000020606,0.0000020540, -0.0000020449,0.0000020356,0.0000020292,0.0000020253,0.0000020268, -0.0000020313,0.0000020386,0.0000020493,0.0000020630,0.0000020766, -0.0000020868,0.0000020915,0.0000020919,0.0000020914,0.0000020920, -0.0000020931,0.0000020935,0.0000020904,0.0000020853,0.0000020780, -0.0000020702,0.0000020628,0.0000020563,0.0000020514,0.0000020487, -0.0000020498,0.0000020551,0.0000020646,0.0000020783,0.0000020942, -0.0000021078,0.0000021169,0.0000021227,0.0000021267,0.0000021308, -0.0000021360,0.0000021412,0.0000021464,0.0000021546,0.0000021656, -0.0000021769,0.0000021869,0.0000021949,0.0000022003,0.0000022037, -0.0000022072,0.0000022114,0.0000022148,0.0000022155,0.0000022138, -0.0000022108,0.0000022066,0.0000022025,0.0000021987,0.0000021963, -0.0000021962,0.0000021989,0.0000022038,0.0000022099,0.0000022162, -0.0000022220,0.0000022267,0.0000022303,0.0000022330,0.0000022354, -0.0000022372,0.0000022385,0.0000022395,0.0000022406,0.0000022416, -0.0000022423,0.0000022425,0.0000022422,0.0000022411,0.0000022394, -0.0000022370,0.0000022335,0.0000022285,0.0000022227,0.0000022166, -0.0000022105,0.0000022044,0.0000021980,0.0000021909,0.0000021831, -0.0000021742,0.0000021644,0.0000021548,0.0000021461,0.0000021390, -0.0000021341,0.0000021310,0.0000021284,0.0000021251,0.0000021208, -0.0000021161,0.0000021119,0.0000021081,0.0000021044,0.0000021011, -0.0000020989,0.0000020987,0.0000021004,0.0000021027,0.0000021045, -0.0000021054,0.0000021057,0.0000021053,0.0000021042,0.0000021027, -0.0000021007,0.0000020984,0.0000020961,0.0000020935,0.0000020904, -0.0000020872,0.0000020842,0.0000020817,0.0000020795,0.0000020777, -0.0000020767,0.0000020765,0.0000020765,0.0000020769,0.0000020778, -0.0000020789,0.0000020795,0.0000020796,0.0000020795,0.0000020798, -0.0000020810,0.0000020827,0.0000020848,0.0000020869,0.0000020888, -0.0000020905,0.0000020917,0.0000020924,0.0000020921,0.0000020907, -0.0000020889,0.0000020870,0.0000020850,0.0000020831,0.0000020823, -0.0000020827,0.0000020839,0.0000020854,0.0000020863,0.0000020860, -0.0000020854,0.0000020849,0.0000020845,0.0000020844,0.0000020846, -0.0000020850,0.0000020858,0.0000020868,0.0000020877,0.0000020880, -0.0000020878,0.0000020871,0.0000020858,0.0000020835,0.0000020803, -0.0000020770,0.0000020742,0.0000020723,0.0000020709,0.0000020694, -0.0000020678,0.0000020668,0.0000020662,0.0000020659,0.0000020660, -0.0000020664,0.0000020668,0.0000020672,0.0000020677,0.0000020686, -0.0000020697,0.0000020711,0.0000020727,0.0000020741,0.0000020749, -0.0000020750,0.0000020744,0.0000020730,0.0000020709,0.0000020681, -0.0000020645,0.0000020604,0.0000020565,0.0000020527,0.0000020493, -0.0000020464,0.0000020437,0.0000020409,0.0000020376,0.0000020338, -0.0000020304,0.0000020275,0.0000020245,0.0000020212,0.0000020182, -0.0000020158,0.0000020138,0.0000020120,0.0000020101,0.0000020085, -0.0000020076,0.0000020072,0.0000020077,0.0000020087,0.0000020100, -0.0000020110,0.0000020118,0.0000020126,0.0000020127,0.0000020115, -0.0000020092,0.0000020064,0.0000020032,0.0000020001,0.0000019976, -0.0000019960,0.0000019950,0.0000019943,0.0000019949,0.0000019969, -0.0000020001,0.0000020040,0.0000020083,0.0000020127,0.0000020168, -0.0000020200,0.0000020227,0.0000020254,0.0000020285,0.0000020317, -0.0000020349,0.0000020378,0.0000020402,0.0000020418,0.0000020426, -0.0000020429,0.0000020426,0.0000020420,0.0000020409,0.0000020392, -0.0000020372,0.0000020356,0.0000020342,0.0000020330,0.0000020319, -0.0000020312,0.0000020303,0.0000020283,0.0000020250,0.0000020203, -0.0000020140,0.0000020065,0.0000019990,0.0000019933,0.0000019897, -0.0000019873,0.0000019857,0.0000019847,0.0000019840,0.0000019834, -0.0000019825,0.0000019811,0.0000019795,0.0000019783,0.0000019775, -0.0000019768,0.0000019769,0.0000019790,0.0000019822,0.0000019835, -0.0000019814,0.0000019761,0.0000019708,0.0000019658,0.0000019598, -0.0000019622,0.0000019773,0.0000019963,0.0000020178,0.0000020267, -0.0000020249,0.0000020313,0.0000020424,0.0000020491,0.0000020533, -0.0000020510,0.0000020389,0.0000020280,0.0000020252,0.0000020263, -0.0000020281,0.0000020285,0.0000020282,0.0000020271,0.0000020250, -0.0000020232,0.0000020228,0.0000020230,0.0000020227,0.0000020225, -0.0000020227,0.0000020237,0.0000020268,0.0000020310,0.0000020338, -0.0000020346,0.0000020326,0.0000020282,0.0000020233,0.0000020172, -0.0000020132,0.0000020150,0.0000020211,0.0000020285,0.0000020345, -0.0000020377,0.0000020383,0.0000020366,0.0000020335,0.0000020316, -0.0000020304,0.0000020276,0.0000020252,0.0000020254,0.0000020290, -0.0000020352,0.0000020415,0.0000020447,0.0000020447,0.0000020423, -0.0000020384,0.0000020346,0.0000020316,0.0000020287,0.0000020255, -0.0000020225,0.0000020199,0.0000020176,0.0000020156,0.0000020138, -0.0000020122,0.0000020108,0.0000020100,0.0000020095,0.0000020099, -0.0000020118,0.0000020143,0.0000020167,0.0000020182,0.0000020195, -0.0000020200,0.0000020196,0.0000020184,0.0000020163,0.0000020135, -0.0000020102,0.0000020068,0.0000020031,0.0000019995,0.0000019970, -0.0000019953,0.0000019942,0.0000019933,0.0000019927,0.0000019922, -0.0000019919,0.0000019922,0.0000019936,0.0000019959,0.0000019985, -0.0000020011,0.0000020037,0.0000020063,0.0000020089,0.0000020113, -0.0000020133,0.0000020151,0.0000020168,0.0000020186,0.0000020204, -0.0000020221,0.0000020238,0.0000020254,0.0000020270,0.0000020285, -0.0000020301,0.0000020314,0.0000020324,0.0000020327,0.0000020324, -0.0000020315,0.0000020305,0.0000020301,0.0000020285,0.0000020270, -0.0000020257,0.0000020249,0.0000020249,0.0000020253,0.0000020254, -0.0000020268,0.0000020285,0.0000020302,0.0000020317,0.0000020329, -0.0000020340,0.0000020346,0.0000020347,0.0000020341,0.0000020327, -0.0000020304,0.0000020271,0.0000020233,0.0000020188,0.0000020131, -0.0000020069,0.0000020012,0.0000019962,0.0000019922,0.0000019890, -0.0000019863,0.0000019834,0.0000019805,0.0000019779,0.0000019753, -0.0000019733,0.0000019730,0.0000019742,0.0000019764,0.0000019786, -0.0000019810,0.0000019842,0.0000019881,0.0000019909,0.0000019912, -0.0000019891,0.0000019860,0.0000019845,0.0000019844,0.0000019868, -0.0000019906,0.0000019944,0.0000019986,0.0000020039,0.0000020098, -0.0000020159,0.0000020215,0.0000020268,0.0000020312,0.0000020336, -0.0000020271,0.0000020316,0.0000020342,0.0000020354,0.0000020366, -0.0000020388,0.0000020428,0.0000020482,0.0000020548,0.0000020620, -0.0000020686,0.0000020748,0.0000020803,0.0000020844,0.0000020894, -0.0000020936,0.0000020976,0.0000021011,0.0000021046,0.0000021082, -0.0000021108,0.0000021117,0.0000021114,0.0000021101,0.0000021083, -0.0000021067,0.0000021055,0.0000021046,0.0000021036,0.0000021029, -0.0000021022,0.0000021009,0.0000020986,0.0000020952,0.0000020916, -0.0000020883,0.0000020849,0.0000020817,0.0000020785,0.0000020758, -0.0000020739,0.0000020735,0.0000020748,0.0000020773,0.0000020803, -0.0000020851,0.0000020917,0.0000020982,0.0000021035,0.0000021075, -0.0000021101,0.0000021113,0.0000021113,0.0000021103,0.0000021085, -0.0000021062,0.0000021035,0.0000021005,0.0000020974,0.0000020942, -0.0000020906,0.0000020862,0.0000020812,0.0000020773,0.0000020758, -0.0000020757,0.0000020760,0.0000020761,0.0000020759,0.0000020762, -0.0000020778,0.0000020807,0.0000020845,0.0000020885,0.0000020928, -0.0000020968,0.0000020999,0.0000021021,0.0000021027,0.0000021014, -0.0000020988,0.0000020954,0.0000020916,0.0000020882,0.0000020855, -0.0000020836,0.0000020829,0.0000020849,0.0000020910,0.0000020981, -0.0000021041,0.0000021094,0.0000021149,0.0000021200,0.0000021246, -0.0000021284,0.0000021312,0.0000021330,0.0000021335,0.0000021333, -0.0000021326,0.0000021318,0.0000021315,0.0000021317,0.0000021322, -0.0000021321,0.0000021310,0.0000021289,0.0000021265,0.0000021237, -0.0000021203,0.0000021166,0.0000021142,0.0000021136,0.0000021143, -0.0000021155,0.0000021171,0.0000021185,0.0000021195,0.0000021200, -0.0000021200,0.0000021193,0.0000021182,0.0000021165,0.0000021141, -0.0000021113,0.0000021078,0.0000021041,0.0000021000,0.0000020958, -0.0000020920,0.0000020888,0.0000020862,0.0000020844,0.0000020834, -0.0000020830,0.0000020836,0.0000020848,0.0000020868,0.0000020890, -0.0000020916,0.0000020945,0.0000020973,0.0000020993,0.0000021010, -0.0000021023,0.0000021031,0.0000021042,0.0000021058,0.0000021078, -0.0000021102,0.0000021132,0.0000021167,0.0000021200,0.0000021221, -0.0000021223,0.0000021213,0.0000021200,0.0000021188,0.0000021179, -0.0000021180,0.0000021209,0.0000021258,0.0000021294,0.0000021311, -0.0000021326,0.0000021346,0.0000021358,0.0000021362,0.0000021366, -0.0000021369,0.0000021365,0.0000021349,0.0000021322,0.0000021294, -0.0000021263,0.0000021228,0.0000021191,0.0000021161,0.0000021147, -0.0000021147,0.0000021158,0.0000021183,0.0000021217,0.0000021247, -0.0000021266,0.0000021274,0.0000021275,0.0000021272,0.0000021265, -0.0000021255,0.0000021241,0.0000021230,0.0000021227,0.0000021239, -0.0000021266,0.0000021292,0.0000021308,0.0000021328,0.0000021369, -0.0000021416,0.0000021447,0.0000021484,0.0000021558,0.0000021639, -0.0000021681,0.0000021708,0.0000021773,0.0000021860,0.0000021917, -0.0000021942,0.0000021944,0.0000021902,0.0000021833,0.0000021780, -0.0000021762,0.0000021764,0.0000021785,0.0000021823,0.0000021855, -0.0000021865,0.0000021856,0.0000021828,0.0000021791,0.0000021749, -0.0000021703,0.0000021663,0.0000021637,0.0000021622,0.0000021615, -0.0000021620,0.0000021636,0.0000021655,0.0000021673,0.0000021686, -0.0000021694,0.0000021697,0.0000021703,0.0000021710,0.0000021719, -0.0000021732,0.0000021748,0.0000021761,0.0000021773,0.0000021786, -0.0000021798,0.0000021810,0.0000021822,0.0000021830,0.0000021833, -0.0000021835,0.0000021838,0.0000021833,0.0000021824,0.0000021810, -0.0000021789,0.0000021761,0.0000021728,0.0000021692,0.0000021654, -0.0000021615,0.0000021575,0.0000021532,0.0000021491,0.0000021450, -0.0000021409,0.0000021375,0.0000021352,0.0000021321,0.0000021304, -0.0000021302,0.0000021318,0.0000021347,0.0000021380,0.0000021408, -0.0000021429,0.0000021439,0.0000021437,0.0000021427,0.0000021418, -0.0000021414,0.0000021413,0.0000021405,0.0000021394,0.0000021376, -0.0000021350,0.0000021320,0.0000021294,0.0000021271,0.0000021246, -0.0000021213,0.0000021166,0.0000021107,0.0000021046,0.0000020985, -0.0000020939,0.0000020924,0.0000020934,0.0000020952,0.0000020977, -0.0000021000,0.0000021020,0.0000021036,0.0000021050,0.0000021058, -0.0000021058,0.0000021077,0.0000021124,0.0000021186,0.0000021250, -0.0000021300,0.0000021328,0.0000021342,0.0000021341,0.0000021325, -0.0000021292,0.0000021245,0.0000021199,0.0000021150,0.0000021096, -0.0000021046,0.0000021007,0.0000020981,0.0000020968,0.0000020966, -0.0000020983,0.0000021023,0.0000021079,0.0000021137,0.0000021184, -0.0000021216,0.0000021229,0.0000021228,0.0000021219,0.0000021202, -0.0000021179,0.0000021149,0.0000021111,0.0000021065,0.0000021023, -0.0000020994,0.0000020970,0.0000020940,0.0000020885,0.0000020837, -0.0000020815,0.0000020747,0.0000020626,0.0000020542,0.0000020540, -0.0000020574,0.0000020587,0.0000020618,0.0000020648,0.0000020656, -0.0000020672,0.0000020728,0.0000020781,0.0000020808,0.0000020827, -0.0000020867,0.0000020903,0.0000020927,0.0000020915,0.0000020888, -0.0000020913,0.0000020996,0.0000021071,0.0000021159,0.0000021319, -0.0000021408,0.0000021414,0.0000021473,0.0000021608,0.0000021632, -0.0000021600,0.0000021621,0.0000021731,0.0000021825,0.0000021828, -0.0000021780,0.0000021838,0.0000022032,0.0000022097,0.0000022013, -0.0000021867,0.0000021815,0.0000021833,0.0000021846,0.0000021945, -0.0000022019,0.0000022099,0.0000022283,0.0000022370,0.0000022437, -0.0000022511,0.0000022559,0.0000022590,0.0000022595,0.0000022569, -0.0000022544,0.0000022546,0.0000022555,0.0000022553,0.0000022555, -0.0000022591,0.0000022632,0.0000022645,0.0000022644,0.0000022638, -0.0000022641,0.0000022662,0.0000022686,0.0000022696,0.0000022704, -0.0000022705,0.0000022689,0.0000022640,0.0000022530,0.0000022408, -0.0000022333,0.0000022307,0.0000022305,0.0000022305,0.0000022296, -0.0000022273,0.0000022262,0.0000022257,0.0000022275,0.0000022299, -0.0000022312,0.0000022295,0.0000022243,0.0000022163,0.0000022074, -0.0000021978,0.0000021879,0.0000021789,0.0000021721,0.0000021677, -0.0000021681,0.0000021712,0.0000021780,0.0000021851,0.0000021902, -0.0000021942,0.0000021964,0.0000022014,0.0000022132,0.0000022200, -0.0000022175,0.0000022122,0.0000022058,0.0000021993,0.0000021935, -0.0000021883,0.0000021840,0.0000021813,0.0000021799,0.0000021792, -0.0000021784,0.0000021775,0.0000021776,0.0000021801,0.0000021846, -0.0000021897,0.0000021954,0.0000022007,0.0000022044,0.0000022070, -0.0000022091,0.0000022117,0.0000022147,0.0000022179,0.0000022209, -0.0000022237,0.0000022265,0.0000022296,0.0000022320,0.0000022341, -0.0000022356,0.0000022373,0.0000022385,0.0000022393,0.0000022389, -0.0000022375,0.0000022361,0.0000022372,0.0000022406,0.0000022464, -0.0000022526,0.0000022580,0.0000022614,0.0000022639,0.0000022666, -0.0000022689,0.0000022704,0.0000022701,0.0000022686,0.0000022667, -0.0000022634,0.0000022593,0.0000022551,0.0000022514,0.0000022482, -0.0000022453,0.0000022420,0.0000022397,0.0000022376,0.0000022360, -0.0000022346,0.0000022338,0.0000022347,0.0000022376,0.0000022395, -0.0000022398,0.0000022395,0.0000022396,0.0000022412,0.0000022433, -0.0000022456,0.0000022512,0.0000022599,0.0000022665,0.0000022693, -0.0000022712,0.0000022730,0.0000022728,0.0000022673,0.0000022567, -0.0000022464,0.0000022399,0.0000022362,0.0000022335,0.0000022312, -0.0000022277,0.0000022214,0.0000022127,0.0000022051,0.0000022020, -0.0000022004,0.0000021945,0.0000021861,0.0000021805,0.0000021769, -0.0000021733,0.0000021727,0.0000021770,0.0000021850,0.0000021934, -0.0000022004,0.0000022056,0.0000022097,0.0000022134,0.0000022166, -0.0000022190,0.0000022211,0.0000022236,0.0000022258,0.0000022268, -0.0000022268,0.0000022255,0.0000022232,0.0000022202,0.0000022166, -0.0000022125,0.0000022082,0.0000022038,0.0000021997,0.0000021955, -0.0000021913,0.0000021874,0.0000021838,0.0000021798,0.0000021755, -0.0000021716,0.0000021686,0.0000021659,0.0000021635,0.0000021614, -0.0000021585,0.0000021554,0.0000021525,0.0000021501,0.0000021483, -0.0000021471,0.0000021464,0.0000021460,0.0000021449,0.0000021431, -0.0000021413,0.0000021400,0.0000021391,0.0000021394,0.0000021417, -0.0000021457,0.0000021516,0.0000021589,0.0000021669,0.0000021745, -0.0000021810,0.0000021859,0.0000021895,0.0000021917,0.0000021923, -0.0000021918,0.0000021908,0.0000021901,0.0000021891,0.0000021876, -0.0000021866,0.0000021854,0.0000021838,0.0000021808,0.0000021781, -0.0000021741,0.0000021698,0.0000021653,0.0000021611,0.0000021574, -0.0000021545,0.0000021521,0.0000021498,0.0000021475,0.0000021451, -0.0000021426,0.0000021403,0.0000021386,0.0000021370,0.0000021355, -0.0000021347,0.0000021349,0.0000021356,0.0000021365,0.0000021375, -0.0000021394,0.0000021413,0.0000021417,0.0000021433,0.0000021434, -0.0000021426,0.0000021413,0.0000021391,0.0000021360,0.0000021326, -0.0000021292,0.0000021258,0.0000021224,0.0000021194,0.0000021168, -0.0000021147,0.0000021129,0.0000021116,0.0000021104,0.0000021086, -0.0000021073,0.0000021068,0.0000021069,0.0000021073,0.0000021084, -0.0000021097,0.0000021117,0.0000021143,0.0000021166,0.0000021186, -0.0000021202,0.0000021218,0.0000021234,0.0000021247,0.0000021271, -0.0000021301,0.0000021309,0.0000021334,0.0000021333,0.0000021317, -0.0000021299,0.0000021269,0.0000021232,0.0000021198,0.0000021163, -0.0000021136,0.0000021123,0.0000021120,0.0000021138,0.0000021152, -0.0000021176,0.0000021200,0.0000021217,0.0000021226,0.0000021220, -0.0000021206,0.0000021187,0.0000021165,0.0000021140,0.0000021108, -0.0000021071,0.0000021026,0.0000020974,0.0000020918,0.0000020865, -0.0000020828,0.0000020784,0.0000020798,0.0000020845,0.0000020913, -0.0000021001,0.0000021067,0.0000021120,0.0000021161,0.0000021193, -0.0000021229,0.0000021275,0.0000021326,0.0000021383,0.0000021451, -0.0000021512,0.0000021572,0.0000021631,0.0000021682,0.0000021724, -0.0000021759,0.0000021789,0.0000021815,0.0000021839,0.0000021857, -0.0000021871,0.0000021886,0.0000021902,0.0000021920,0.0000021934, -0.0000021943,0.0000021948,0.0000021944,0.0000021937,0.0000021921, -0.0000021900,0.0000021874,0.0000021845,0.0000021811,0.0000021773, -0.0000021732,0.0000021689,0.0000021651,0.0000021611,0.0000021571, -0.0000021534,0.0000021503,0.0000021471,0.0000021441,0.0000021416, -0.0000021401,0.0000021393,0.0000021387,0.0000021385,0.0000021398, -0.0000021410,0.0000021414,0.0000021413,0.0000021407,0.0000021396, -0.0000021381,0.0000021360,0.0000021337,0.0000021312,0.0000021288, -0.0000021270,0.0000021257,0.0000021245,0.0000021227,0.0000021206, -0.0000021180,0.0000021152,0.0000021120,0.0000021092,0.0000021066, -0.0000021042,0.0000021021,0.0000021006,0.0000020995,0.0000020986, -0.0000020977,0.0000020969,0.0000020959,0.0000020952,0.0000020946, -0.0000020943,0.0000020949,0.0000020975,0.0000021010,0.0000021049, -0.0000021094,0.0000021138,0.0000021193,0.0000021251,0.0000021309, -0.0000021360,0.0000021393,0.0000021395,0.0000021361,0.0000021276, -0.0000021160,0.0000021039,0.0000020914,0.0000020788,0.0000020674, -0.0000020577,0.0000020493,0.0000020415,0.0000020340,0.0000020263, -0.0000020185,0.0000020123,0.0000020078,0.0000020045,0.0000020030, -0.0000020033,0.0000020061,0.0000020107,0.0000020154,0.0000020202, -0.0000020252,0.0000020295,0.0000020331,0.0000020359,0.0000020367, -0.0000020350,0.0000020318,0.0000020290,0.0000020278,0.0000020270, -0.0000020246,0.0000020200,0.0000020139,0.0000020083,0.0000020035, -0.0000019994,0.0000019948,0.0000019871,0.0000019793,0.0000019755, -0.0000019738,0.0000019738,0.0000019772,0.0000019850,0.0000019963, -0.0000020076,0.0000020178,0.0000020275,0.0000020369,0.0000020445, -0.0000020498,0.0000020547,0.0000020608,0.0000020681,0.0000020755, -0.0000020815,0.0000020847,0.0000020851,0.0000020833,0.0000020799, -0.0000020743,0.0000020665,0.0000020578,0.0000020510,0.0000020472, -0.0000020439,0.0000020417,0.0000020417,0.0000020433,0.0000020467, -0.0000020510,0.0000020551,0.0000020588,0.0000020626,0.0000020667, -0.0000020704,0.0000020725,0.0000020736,0.0000020750,0.0000020771, -0.0000020805,0.0000020857,0.0000020940,0.0000021068,0.0000021244, -0.0000021452,0.0000021664,0.0000021847,0.0000021984,0.0000022073, -0.0000022129,0.0000022166,0.0000022193,0.0000022214,0.0000022225, -0.0000022222,0.0000022208,0.0000022205,0.0000022204,0.0000022211, -0.0000022218,0.0000022220,0.0000022220,0.0000022205,0.0000022179, -0.0000022144,0.0000022100,0.0000022060,0.0000022023,0.0000022002, -0.0000021992,0.0000021988,0.0000021989,0.0000021989,0.0000021984, -0.0000021981,0.0000021969,0.0000021966,0.0000021961,0.0000021951, -0.0000021949,0.0000021956,0.0000021970,0.0000021988,0.0000022007, -0.0000022024,0.0000022038,0.0000022054,0.0000022069,0.0000022079, -0.0000022086,0.0000022101,0.0000022126,0.0000022158,0.0000022192, -0.0000022225,0.0000022250,0.0000022255,0.0000022253,0.0000022226, -0.0000022187,0.0000022153,0.0000022129,0.0000022083,0.0000021974, -0.0000021805,0.0000021636,0.0000021523,0.0000021452,0.0000021379, -0.0000021303,0.0000021253,0.0000021228,0.0000021203,0.0000021157, -0.0000021098,0.0000021034,0.0000020977,0.0000020933,0.0000020899, -0.0000020870,0.0000020859,0.0000020860,0.0000020872,0.0000020894, -0.0000020911,0.0000020923,0.0000020932,0.0000020940,0.0000020960, -0.0000020993,0.0000021030,0.0000021063,0.0000021106,0.0000021136, -0.0000021139,0.0000021139,0.0000021161,0.0000021209,0.0000021229, -0.0000021201,0.0000021154,0.0000021121,0.0000021096,0.0000021073, -0.0000021085,0.0000021142,0.0000021183,0.0000021232,0.0000021280, -0.0000021284,0.0000021292,0.0000021343,0.0000021430,0.0000021537, -0.0000021661,0.0000021791,0.0000021912,0.0000022010,0.0000022079, -0.0000022124,0.0000022146,0.0000022148,0.0000022136,0.0000022114, -0.0000022088,0.0000022060,0.0000022017,0.0000021964,0.0000021920, -0.0000021887,0.0000021851,0.0000021802,0.0000021711,0.0000021594, -0.0000021491,0.0000021459,0.0000021522,0.0000021661,0.0000021827, -0.0000021967,0.0000022070,0.0000022154,0.0000022251,0.0000022367, -0.0000022489,0.0000022592,0.0000022618,0.0000022621,0.0000022562, -0.0000022467,0.0000022353,0.0000022253,0.0000022178,0.0000022135, -0.0000022122,0.0000022140,0.0000022177,0.0000022235,0.0000022318, -0.0000022405,0.0000022505,0.0000022604,0.0000022698,0.0000022785, -0.0000022847,0.0000022881,0.0000022858,0.0000022798,0.0000022719, -0.0000022634,0.0000022549,0.0000022487,0.0000022479,0.0000022517, -0.0000022571,0.0000022615,0.0000022644,0.0000022665,0.0000022681, -0.0000022686,0.0000022679,0.0000022652,0.0000022610,0.0000022557, -0.0000022498,0.0000022434,0.0000022367,0.0000022305,0.0000022247, -0.0000022192,0.0000022141,0.0000022091,0.0000022034,0.0000021957, -0.0000021856,0.0000021744,0.0000021650,0.0000021588,0.0000021529, -0.0000021449,0.0000021354,0.0000021275,0.0000021223,0.0000021179, -0.0000021113,0.0000021014,0.0000020909,0.0000020817,0.0000020748, -0.0000020695,0.0000020646,0.0000020601,0.0000020553,0.0000020507, -0.0000020474,0.0000020451,0.0000020429,0.0000020409,0.0000020387, -0.0000020360,0.0000020326,0.0000020303,0.0000020296,0.0000020296, -0.0000020289,0.0000020275,0.0000020257,0.0000020255,0.0000020275, -0.0000020319,0.0000020377,0.0000020435,0.0000020485,0.0000020523, -0.0000020547,0.0000020558,0.0000020560,0.0000020563,0.0000020571, -0.0000020586,0.0000020589,0.0000020559,0.0000020516,0.0000020432, -0.0000020337,0.0000020255,0.0000020224,0.0000020215,0.0000020243, -0.0000020309,0.0000020407,0.0000020531,0.0000020670,0.0000020794, -0.0000020872,0.0000020901,0.0000020902,0.0000020906,0.0000020921, -0.0000020927,0.0000020920,0.0000020881,0.0000020814,0.0000020739, -0.0000020667,0.0000020594,0.0000020522,0.0000020479,0.0000020468, -0.0000020511,0.0000020598,0.0000020728,0.0000020877,0.0000021014, -0.0000021122,0.0000021188,0.0000021226,0.0000021266,0.0000021317, -0.0000021366,0.0000021426,0.0000021514,0.0000021619,0.0000021725, -0.0000021829,0.0000021922,0.0000021989,0.0000022024,0.0000022046, -0.0000022073,0.0000022102,0.0000022118,0.0000022108,0.0000022069, -0.0000022026,0.0000021978,0.0000021934,0.0000021899,0.0000021877, -0.0000021868,0.0000021876,0.0000021899,0.0000021932,0.0000021973, -0.0000022014,0.0000022051,0.0000022086,0.0000022114,0.0000022131, -0.0000022147,0.0000022161,0.0000022171,0.0000022177,0.0000022178, -0.0000022174,0.0000022161,0.0000022144,0.0000022123,0.0000022093, -0.0000022052,0.0000022001,0.0000021945,0.0000021889,0.0000021831, -0.0000021770,0.0000021703,0.0000021631,0.0000021553,0.0000021470, -0.0000021389,0.0000021312,0.0000021242,0.0000021192,0.0000021167, -0.0000021153,0.0000021135,0.0000021113,0.0000021087,0.0000021063, -0.0000021039,0.0000021012,0.0000020988,0.0000020969,0.0000020959, -0.0000020962,0.0000020975,0.0000020991,0.0000021003,0.0000021009, -0.0000021015,0.0000021016,0.0000021009,0.0000020994,0.0000020972, -0.0000020950,0.0000020926,0.0000020899,0.0000020870,0.0000020841, -0.0000020817,0.0000020794,0.0000020771,0.0000020748,0.0000020731, -0.0000020718,0.0000020714,0.0000020719,0.0000020727,0.0000020730, -0.0000020727,0.0000020720,0.0000020714,0.0000020714,0.0000020721, -0.0000020734,0.0000020750,0.0000020769,0.0000020785,0.0000020800, -0.0000020811,0.0000020823,0.0000020833,0.0000020834,0.0000020828, -0.0000020814,0.0000020797,0.0000020785,0.0000020782,0.0000020786, -0.0000020800,0.0000020816,0.0000020830,0.0000020835,0.0000020837, -0.0000020840,0.0000020846,0.0000020850,0.0000020853,0.0000020855, -0.0000020858,0.0000020862,0.0000020858,0.0000020849,0.0000020841, -0.0000020833,0.0000020816,0.0000020789,0.0000020757,0.0000020724, -0.0000020698,0.0000020679,0.0000020666,0.0000020656,0.0000020650, -0.0000020649,0.0000020650,0.0000020656,0.0000020665,0.0000020673, -0.0000020682,0.0000020690,0.0000020700,0.0000020711,0.0000020722, -0.0000020730,0.0000020737,0.0000020739,0.0000020737,0.0000020726, -0.0000020703,0.0000020670,0.0000020631,0.0000020589,0.0000020543, -0.0000020497,0.0000020452,0.0000020411,0.0000020376,0.0000020348, -0.0000020323,0.0000020298,0.0000020268,0.0000020234,0.0000020203, -0.0000020174,0.0000020143,0.0000020116,0.0000020096,0.0000020081, -0.0000020068,0.0000020055,0.0000020045,0.0000020036,0.0000020032, -0.0000020030,0.0000020033,0.0000020039,0.0000020050,0.0000020063, -0.0000020078,0.0000020090,0.0000020093,0.0000020084,0.0000020066, -0.0000020040,0.0000020011,0.0000019978,0.0000019946,0.0000019916, -0.0000019884,0.0000019853,0.0000019842,0.0000019840,0.0000019853, -0.0000019887,0.0000019935,0.0000019990,0.0000020045,0.0000020094, -0.0000020134,0.0000020168,0.0000020202,0.0000020235,0.0000020266, -0.0000020292,0.0000020315,0.0000020335,0.0000020348,0.0000020355, -0.0000020357,0.0000020354,0.0000020345,0.0000020330,0.0000020314, -0.0000020303,0.0000020293,0.0000020281,0.0000020268,0.0000020252, -0.0000020229,0.0000020199,0.0000020161,0.0000020117,0.0000020064, -0.0000020006,0.0000019952,0.0000019913,0.0000019888,0.0000019868, -0.0000019852,0.0000019842,0.0000019839,0.0000019835,0.0000019825, -0.0000019809,0.0000019788,0.0000019770,0.0000019760,0.0000019756, -0.0000019755,0.0000019766,0.0000019798,0.0000019826,0.0000019821, -0.0000019783,0.0000019732,0.0000019681,0.0000019618,0.0000019609, -0.0000019734,0.0000019916,0.0000020126,0.0000020259,0.0000020244, -0.0000020280,0.0000020403,0.0000020479,0.0000020520,0.0000020515, -0.0000020419,0.0000020302,0.0000020258,0.0000020263,0.0000020277, -0.0000020283,0.0000020284,0.0000020279,0.0000020263,0.0000020246, -0.0000020239,0.0000020235,0.0000020231,0.0000020228,0.0000020224, -0.0000020223,0.0000020247,0.0000020294,0.0000020332,0.0000020348, -0.0000020334,0.0000020282,0.0000020223,0.0000020163,0.0000020125, -0.0000020136,0.0000020200,0.0000020279,0.0000020334,0.0000020356, -0.0000020351,0.0000020326,0.0000020298,0.0000020287,0.0000020273, -0.0000020252,0.0000020243,0.0000020261,0.0000020312,0.0000020380, -0.0000020433,0.0000020446,0.0000020431,0.0000020395,0.0000020361, -0.0000020334,0.0000020312,0.0000020290,0.0000020264,0.0000020242, -0.0000020220,0.0000020202,0.0000020181,0.0000020160,0.0000020141, -0.0000020121,0.0000020100,0.0000020083,0.0000020075,0.0000020077, -0.0000020090,0.0000020107,0.0000020121,0.0000020138,0.0000020148, -0.0000020151,0.0000020147,0.0000020138,0.0000020120,0.0000020093, -0.0000020059,0.0000020022,0.0000019987,0.0000019960,0.0000019942, -0.0000019928,0.0000019915,0.0000019902,0.0000019890,0.0000019880, -0.0000019875,0.0000019877,0.0000019885,0.0000019895,0.0000019908, -0.0000019921,0.0000019936,0.0000019953,0.0000019966,0.0000019977, -0.0000019988,0.0000020000,0.0000020012,0.0000020027,0.0000020042, -0.0000020058,0.0000020073,0.0000020090,0.0000020109,0.0000020131, -0.0000020158,0.0000020186,0.0000020215,0.0000020241,0.0000020264, -0.0000020282,0.0000020297,0.0000020304,0.0000020301,0.0000020292, -0.0000020281,0.0000020273,0.0000020270,0.0000020263,0.0000020258, -0.0000020257,0.0000020259,0.0000020261,0.0000020266,0.0000020269, -0.0000020272,0.0000020273,0.0000020272,0.0000020268,0.0000020262, -0.0000020250,0.0000020233,0.0000020209,0.0000020178,0.0000020142, -0.0000020098,0.0000020041,0.0000019979,0.0000019921,0.0000019874, -0.0000019841,0.0000019820,0.0000019808,0.0000019794,0.0000019772, -0.0000019747,0.0000019725,0.0000019713,0.0000019713,0.0000019727, -0.0000019747,0.0000019770,0.0000019806,0.0000019855,0.0000019892, -0.0000019904,0.0000019890,0.0000019867,0.0000019856,0.0000019857, -0.0000019870,0.0000019888,0.0000019911,0.0000019945,0.0000019985, -0.0000020036,0.0000020096,0.0000020159,0.0000020219,0.0000020107, -0.0000020175,0.0000020235,0.0000020281,0.0000020308,0.0000020321, -0.0000020329,0.0000020347,0.0000020383,0.0000020439,0.0000020514, -0.0000020607,0.0000020700,0.0000020784,0.0000020861,0.0000020923, -0.0000020970,0.0000021006,0.0000021041,0.0000021074,0.0000021105, -0.0000021128,0.0000021148,0.0000021163,0.0000021170,0.0000021171, -0.0000021172,0.0000021174,0.0000021172,0.0000021169,0.0000021165, -0.0000021154,0.0000021129,0.0000021093,0.0000021051,0.0000021009, -0.0000020966,0.0000020920,0.0000020875,0.0000020835,0.0000020809, -0.0000020804,0.0000020821,0.0000020858,0.0000020905,0.0000020959, -0.0000021018,0.0000021070,0.0000021107,0.0000021133,0.0000021148, -0.0000021148,0.0000021139,0.0000021125,0.0000021106,0.0000021085, -0.0000021054,0.0000021017,0.0000020975,0.0000020934,0.0000020894, -0.0000020856,0.0000020814,0.0000020775,0.0000020754,0.0000020746, -0.0000020741,0.0000020731,0.0000020714,0.0000020700,0.0000020699, -0.0000020716,0.0000020748,0.0000020786,0.0000020829,0.0000020874, -0.0000020918,0.0000020959,0.0000020990,0.0000021000,0.0000020994, -0.0000020976,0.0000020951,0.0000020919,0.0000020886,0.0000020856, -0.0000020826,0.0000020807,0.0000020811,0.0000020857,0.0000020930, -0.0000021002,0.0000021062,0.0000021114,0.0000021164,0.0000021213, -0.0000021257,0.0000021294,0.0000021320,0.0000021331,0.0000021331, -0.0000021326,0.0000021324,0.0000021323,0.0000021324,0.0000021327, -0.0000021328,0.0000021321,0.0000021306,0.0000021286,0.0000021263, -0.0000021236,0.0000021204,0.0000021174,0.0000021155,0.0000021150, -0.0000021153,0.0000021156,0.0000021160,0.0000021163,0.0000021163, -0.0000021161,0.0000021155,0.0000021145,0.0000021129,0.0000021106, -0.0000021077,0.0000021044,0.0000021007,0.0000020968,0.0000020928, -0.0000020892,0.0000020859,0.0000020830,0.0000020806,0.0000020797, -0.0000020797,0.0000020804,0.0000020820,0.0000020843,0.0000020868, -0.0000020897,0.0000020927,0.0000020955,0.0000020980,0.0000021000, -0.0000021014,0.0000021022,0.0000021030,0.0000021040,0.0000021055, -0.0000021073,0.0000021096,0.0000021125,0.0000021163,0.0000021197, -0.0000021211,0.0000021206,0.0000021189,0.0000021174,0.0000021161, -0.0000021148,0.0000021152,0.0000021186,0.0000021230,0.0000021257, -0.0000021278,0.0000021308,0.0000021336,0.0000021354,0.0000021367, -0.0000021379,0.0000021385,0.0000021380,0.0000021357,0.0000021327, -0.0000021296,0.0000021261,0.0000021221,0.0000021182,0.0000021156, -0.0000021149,0.0000021156,0.0000021176,0.0000021206,0.0000021232, -0.0000021249,0.0000021257,0.0000021260,0.0000021258,0.0000021252, -0.0000021242,0.0000021229,0.0000021218,0.0000021211,0.0000021216, -0.0000021239,0.0000021272,0.0000021299,0.0000021319,0.0000021353, -0.0000021400,0.0000021441,0.0000021467,0.0000021515,0.0000021594, -0.0000021661,0.0000021693,0.0000021732,0.0000021812,0.0000021899, -0.0000021955,0.0000021974,0.0000021973,0.0000021927,0.0000021860, -0.0000021803,0.0000021770,0.0000021757,0.0000021755,0.0000021760, -0.0000021772,0.0000021781,0.0000021781,0.0000021770,0.0000021751, -0.0000021728,0.0000021707,0.0000021695,0.0000021690,0.0000021688, -0.0000021691,0.0000021699,0.0000021707,0.0000021714,0.0000021717, -0.0000021715,0.0000021711,0.0000021710,0.0000021711,0.0000021714, -0.0000021722,0.0000021735,0.0000021749,0.0000021763,0.0000021777, -0.0000021791,0.0000021805,0.0000021818,0.0000021828,0.0000021832, -0.0000021836,0.0000021840,0.0000021842,0.0000021841,0.0000021835, -0.0000021823,0.0000021808,0.0000021796,0.0000021774,0.0000021741, -0.0000021702,0.0000021659,0.0000021614,0.0000021565,0.0000021513, -0.0000021460,0.0000021409,0.0000021363,0.0000021319,0.0000021281, -0.0000021260,0.0000021242,0.0000021254,0.0000021274,0.0000021304, -0.0000021335,0.0000021358,0.0000021372,0.0000021374,0.0000021370, -0.0000021370,0.0000021374,0.0000021374,0.0000021367,0.0000021354, -0.0000021335,0.0000021313,0.0000021291,0.0000021269,0.0000021247, -0.0000021224,0.0000021191,0.0000021141,0.0000021089,0.0000021039, -0.0000020993,0.0000020956,0.0000020938,0.0000020943,0.0000020963, -0.0000020986,0.0000021006,0.0000021020,0.0000021028,0.0000021029, -0.0000021026,0.0000021036,0.0000021076,0.0000021144,0.0000021220, -0.0000021289,0.0000021333,0.0000021360,0.0000021371,0.0000021365, -0.0000021342,0.0000021302,0.0000021257,0.0000021220,0.0000021181, -0.0000021137,0.0000021082,0.0000021031,0.0000020995,0.0000020970, -0.0000020965,0.0000020974,0.0000020996,0.0000021037,0.0000021087, -0.0000021131,0.0000021160,0.0000021172,0.0000021173,0.0000021164, -0.0000021145,0.0000021122,0.0000021093,0.0000021053,0.0000021012, -0.0000020980,0.0000020950,0.0000020918,0.0000020859,0.0000020803, -0.0000020778,0.0000020715,0.0000020601,0.0000020508,0.0000020507, -0.0000020546,0.0000020558,0.0000020596,0.0000020633,0.0000020647, -0.0000020658,0.0000020690,0.0000020731,0.0000020766,0.0000020795, -0.0000020840,0.0000020878,0.0000020902,0.0000020890,0.0000020879, -0.0000020934,0.0000021038,0.0000021105,0.0000021212,0.0000021378, -0.0000021434,0.0000021435,0.0000021531,0.0000021638,0.0000021628, -0.0000021604,0.0000021665,0.0000021778,0.0000021827,0.0000021788, -0.0000021766,0.0000021909,0.0000022058,0.0000022042,0.0000021898, -0.0000021792,0.0000021802,0.0000021821,0.0000021874,0.0000021987, -0.0000022013,0.0000022148,0.0000022281,0.0000022333,0.0000022427, -0.0000022511,0.0000022572,0.0000022607,0.0000022606,0.0000022592, -0.0000022589,0.0000022591,0.0000022580,0.0000022561,0.0000022558, -0.0000022578,0.0000022591,0.0000022583,0.0000022585,0.0000022603, -0.0000022627,0.0000022655,0.0000022679,0.0000022694,0.0000022706, -0.0000022688,0.0000022609,0.0000022497,0.0000022391,0.0000022337, -0.0000022324,0.0000022312,0.0000022299,0.0000022281,0.0000022252, -0.0000022234,0.0000022233,0.0000022234,0.0000022234,0.0000022226, -0.0000022202,0.0000022164,0.0000022112,0.0000022037,0.0000021957, -0.0000021869,0.0000021772,0.0000021684,0.0000021625,0.0000021592, -0.0000021598,0.0000021638,0.0000021719,0.0000021808,0.0000021874, -0.0000021928,0.0000021961,0.0000022010,0.0000022119,0.0000022191, -0.0000022166,0.0000022114,0.0000022054,0.0000021992,0.0000021936, -0.0000021885,0.0000021838,0.0000021801,0.0000021775,0.0000021760, -0.0000021753,0.0000021743,0.0000021739,0.0000021744,0.0000021776, -0.0000021832,0.0000021908,0.0000021982,0.0000022033,0.0000022062, -0.0000022084,0.0000022107,0.0000022131,0.0000022159,0.0000022190, -0.0000022223,0.0000022251,0.0000022279,0.0000022303,0.0000022320, -0.0000022333,0.0000022347,0.0000022354,0.0000022356,0.0000022353, -0.0000022341,0.0000022326,0.0000022333,0.0000022362,0.0000022415, -0.0000022482,0.0000022535,0.0000022567,0.0000022591,0.0000022620, -0.0000022647,0.0000022666,0.0000022671,0.0000022661,0.0000022649, -0.0000022633,0.0000022613,0.0000022580,0.0000022544,0.0000022514, -0.0000022482,0.0000022438,0.0000022398,0.0000022374,0.0000022360, -0.0000022347,0.0000022339,0.0000022347,0.0000022367,0.0000022383, -0.0000022387,0.0000022388,0.0000022392,0.0000022399,0.0000022403, -0.0000022409,0.0000022447,0.0000022524,0.0000022590,0.0000022621, -0.0000022646,0.0000022678,0.0000022692,0.0000022675,0.0000022601, -0.0000022497,0.0000022408,0.0000022351,0.0000022317,0.0000022293, -0.0000022277,0.0000022242,0.0000022174,0.0000022086,0.0000022012, -0.0000021975,0.0000021956,0.0000021909,0.0000021839,0.0000021779, -0.0000021738,0.0000021713,0.0000021713,0.0000021747,0.0000021815, -0.0000021893,0.0000021963,0.0000022020,0.0000022068,0.0000022108, -0.0000022135,0.0000022152,0.0000022173,0.0000022195,0.0000022212, -0.0000022220,0.0000022220,0.0000022209,0.0000022190,0.0000022161, -0.0000022126,0.0000022085,0.0000022039,0.0000021992,0.0000021945, -0.0000021896,0.0000021847,0.0000021801,0.0000021756,0.0000021705, -0.0000021655,0.0000021618,0.0000021597,0.0000021585,0.0000021577, -0.0000021571,0.0000021561,0.0000021542,0.0000021520,0.0000021497, -0.0000021478,0.0000021470,0.0000021473,0.0000021476,0.0000021471, -0.0000021461,0.0000021455,0.0000021456,0.0000021455,0.0000021450, -0.0000021449,0.0000021467,0.0000021493,0.0000021546,0.0000021626, -0.0000021712,0.0000021788,0.0000021848,0.0000021892,0.0000021921, -0.0000021926,0.0000021918,0.0000021899,0.0000021883,0.0000021870, -0.0000021854,0.0000021836,0.0000021820,0.0000021804,0.0000021785, -0.0000021762,0.0000021740,0.0000021712,0.0000021681,0.0000021647, -0.0000021614,0.0000021581,0.0000021553,0.0000021529,0.0000021507, -0.0000021484,0.0000021460,0.0000021438,0.0000021420,0.0000021400, -0.0000021381,0.0000021370,0.0000021370,0.0000021370,0.0000021370, -0.0000021371,0.0000021378,0.0000021380,0.0000021379,0.0000021378, -0.0000021378,0.0000021373,0.0000021365,0.0000021351,0.0000021332, -0.0000021308,0.0000021283,0.0000021259,0.0000021235,0.0000021212, -0.0000021192,0.0000021174,0.0000021156,0.0000021136,0.0000021113, -0.0000021090,0.0000021072,0.0000021061,0.0000021050,0.0000021044, -0.0000021032,0.0000021027,0.0000021024,0.0000021028,0.0000021036, -0.0000021046,0.0000021060,0.0000021077,0.0000021101,0.0000021134, -0.0000021175,0.0000021218,0.0000021260,0.0000021301,0.0000021324, -0.0000021340,0.0000021341,0.0000021337,0.0000021326,0.0000021301, -0.0000021277,0.0000021249,0.0000021219,0.0000021194,0.0000021177, -0.0000021175,0.0000021182,0.0000021193,0.0000021209,0.0000021225, -0.0000021234,0.0000021237,0.0000021233,0.0000021224,0.0000021209, -0.0000021185,0.0000021152,0.0000021112,0.0000021061,0.0000020999, -0.0000020932,0.0000020863,0.0000020795,0.0000020738,0.0000020715, -0.0000020693,0.0000020743,0.0000020804,0.0000020887,0.0000020978, -0.0000021049,0.0000021106,0.0000021152,0.0000021185,0.0000021213, -0.0000021247,0.0000021276,0.0000021312,0.0000021360,0.0000021414, -0.0000021468,0.0000021520,0.0000021572,0.0000021622,0.0000021670, -0.0000021712,0.0000021748,0.0000021781,0.0000021815,0.0000021848, -0.0000021877,0.0000021900,0.0000021920,0.0000021931,0.0000021932, -0.0000021926,0.0000021911,0.0000021888,0.0000021861,0.0000021830, -0.0000021793,0.0000021750,0.0000021704,0.0000021659,0.0000021612, -0.0000021565,0.0000021521,0.0000021482,0.0000021445,0.0000021406, -0.0000021371,0.0000021344,0.0000021328,0.0000021315,0.0000021305, -0.0000021304,0.0000021312,0.0000021312,0.0000021307,0.0000021298, -0.0000021286,0.0000021271,0.0000021253,0.0000021237,0.0000021222, -0.0000021201,0.0000021182,0.0000021170,0.0000021159,0.0000021142, -0.0000021122,0.0000021099,0.0000021074,0.0000021044,0.0000021021, -0.0000021003,0.0000020987,0.0000020975,0.0000020963,0.0000020947, -0.0000020932,0.0000020922,0.0000020912,0.0000020905,0.0000020903, -0.0000020903,0.0000020909,0.0000020925,0.0000020959,0.0000021008, -0.0000021061,0.0000021117,0.0000021175,0.0000021232,0.0000021285, -0.0000021322,0.0000021352,0.0000021363,0.0000021340,0.0000021282, -0.0000021191,0.0000021083,0.0000020968,0.0000020849,0.0000020731, -0.0000020624,0.0000020528,0.0000020441,0.0000020357,0.0000020274, -0.0000020194,0.0000020114,0.0000020041,0.0000019983,0.0000019937, -0.0000019908,0.0000019899,0.0000019914,0.0000019956,0.0000020009, -0.0000020064,0.0000020123,0.0000020180,0.0000020228,0.0000020272, -0.0000020304,0.0000020308,0.0000020287,0.0000020254,0.0000020230, -0.0000020222,0.0000020218,0.0000020196,0.0000020148,0.0000020096, -0.0000020050,0.0000020007,0.0000019961,0.0000019896,0.0000019814, -0.0000019762,0.0000019739,0.0000019724,0.0000019714,0.0000019732, -0.0000019798,0.0000019907,0.0000020017,0.0000020103,0.0000020181, -0.0000020265,0.0000020344,0.0000020409,0.0000020464,0.0000020530, -0.0000020607,0.0000020687,0.0000020754,0.0000020800,0.0000020820, -0.0000020815,0.0000020791,0.0000020752,0.0000020691,0.0000020610, -0.0000020530,0.0000020464,0.0000020428,0.0000020420,0.0000020430, -0.0000020450,0.0000020471,0.0000020486,0.0000020504,0.0000020516, -0.0000020546,0.0000020592,0.0000020633,0.0000020662,0.0000020680, -0.0000020693,0.0000020706,0.0000020720,0.0000020739,0.0000020774, -0.0000020846,0.0000020968,0.0000021140,0.0000021345,0.0000021558, -0.0000021755,0.0000021916,0.0000022028,0.0000022095,0.0000022134, -0.0000022156,0.0000022168,0.0000022177,0.0000022177,0.0000022172, -0.0000022170,0.0000022173,0.0000022184,0.0000022197,0.0000022204, -0.0000022196,0.0000022181,0.0000022161,0.0000022133,0.0000022105, -0.0000022071,0.0000022039,0.0000022011,0.0000021989,0.0000021973, -0.0000021968,0.0000021958,0.0000021955,0.0000021950,0.0000021944, -0.0000021941,0.0000021940,0.0000021943,0.0000021951,0.0000021967, -0.0000021990,0.0000022016,0.0000022042,0.0000022069,0.0000022097, -0.0000022125,0.0000022150,0.0000022174,0.0000022196,0.0000022212, -0.0000022216,0.0000022222,0.0000022205,0.0000022175,0.0000022138, -0.0000022102,0.0000022077,0.0000022057,0.0000022011,0.0000021911, -0.0000021762,0.0000021614,0.0000021510,0.0000021446,0.0000021383, -0.0000021315,0.0000021259,0.0000021225,0.0000021199,0.0000021159, -0.0000021104,0.0000021039,0.0000020980,0.0000020929,0.0000020889, -0.0000020860,0.0000020837,0.0000020819,0.0000020816,0.0000020819, -0.0000020831,0.0000020853,0.0000020874,0.0000020893,0.0000020900, -0.0000020899,0.0000020904,0.0000020926,0.0000020970,0.0000021014, -0.0000021067,0.0000021118,0.0000021133,0.0000021134,0.0000021149, -0.0000021204,0.0000021243,0.0000021225,0.0000021180,0.0000021143, -0.0000021110,0.0000021076,0.0000021081,0.0000021129,0.0000021172, -0.0000021221,0.0000021265,0.0000021266,0.0000021260,0.0000021292, -0.0000021370,0.0000021476,0.0000021596,0.0000021722,0.0000021841, -0.0000021939,0.0000022012,0.0000022064,0.0000022096,0.0000022109, -0.0000022105,0.0000022090,0.0000022071,0.0000022048,0.0000022019, -0.0000021968,0.0000021908,0.0000021858,0.0000021826,0.0000021799, -0.0000021769,0.0000021702,0.0000021602,0.0000021508,0.0000021472, -0.0000021484,0.0000021580,0.0000021729,0.0000021882,0.0000021997, -0.0000022077,0.0000022140,0.0000022219,0.0000022317,0.0000022438, -0.0000022546,0.0000022634,0.0000022631,0.0000022632,0.0000022592, -0.0000022523,0.0000022447,0.0000022387,0.0000022349,0.0000022336, -0.0000022350,0.0000022386,0.0000022442,0.0000022516,0.0000022596, -0.0000022675,0.0000022759,0.0000022839,0.0000022897,0.0000022922, -0.0000022895,0.0000022824,0.0000022734,0.0000022638,0.0000022539, -0.0000022464,0.0000022441,0.0000022473,0.0000022531,0.0000022583, -0.0000022619,0.0000022648,0.0000022672,0.0000022688,0.0000022687, -0.0000022669,0.0000022632,0.0000022580,0.0000022518,0.0000022448, -0.0000022380,0.0000022319,0.0000022263,0.0000022209,0.0000022159, -0.0000022113,0.0000022067,0.0000022007,0.0000021915,0.0000021800, -0.0000021696,0.0000021621,0.0000021560,0.0000021476,0.0000021369, -0.0000021275,0.0000021211,0.0000021153,0.0000021069,0.0000020956, -0.0000020838,0.0000020744,0.0000020677,0.0000020617,0.0000020568, -0.0000020520,0.0000020473,0.0000020434,0.0000020410,0.0000020393, -0.0000020381,0.0000020375,0.0000020367,0.0000020343,0.0000020308, -0.0000020282,0.0000020273,0.0000020271,0.0000020265,0.0000020248, -0.0000020226,0.0000020213,0.0000020221,0.0000020254,0.0000020301, -0.0000020353,0.0000020404,0.0000020448,0.0000020481,0.0000020501, -0.0000020512,0.0000020516,0.0000020525,0.0000020535,0.0000020538, -0.0000020527,0.0000020480,0.0000020410,0.0000020324,0.0000020243, -0.0000020192,0.0000020163,0.0000020184,0.0000020240,0.0000020324, -0.0000020434,0.0000020571,0.0000020716,0.0000020825,0.0000020882, -0.0000020894,0.0000020895,0.0000020905,0.0000020920,0.0000020924, -0.0000020892,0.0000020835,0.0000020769,0.0000020700,0.0000020622, -0.0000020541,0.0000020473,0.0000020461,0.0000020476,0.0000020552, -0.0000020674,0.0000020817,0.0000020962,0.0000021083,0.0000021155, -0.0000021195,0.0000021233,0.0000021277,0.0000021329,0.0000021400, -0.0000021487,0.0000021580,0.0000021677,0.0000021783,0.0000021891, -0.0000021971,0.0000022007,0.0000022017,0.0000022027,0.0000022048, -0.0000022066,0.0000022060,0.0000022028,0.0000021981,0.0000021930, -0.0000021886,0.0000021851,0.0000021819,0.0000021787,0.0000021763, -0.0000021752,0.0000021755,0.0000021772,0.0000021796,0.0000021823, -0.0000021846,0.0000021864,0.0000021881,0.0000021898,0.0000021912, -0.0000021919,0.0000021922,0.0000021919,0.0000021906,0.0000021890, -0.0000021874,0.0000021852,0.0000021817,0.0000021772,0.0000021720, -0.0000021670,0.0000021621,0.0000021572,0.0000021519,0.0000021460, -0.0000021394,0.0000021324,0.0000021255,0.0000021191,0.0000021133, -0.0000021090,0.0000021067,0.0000021055,0.0000021045,0.0000021032, -0.0000021019,0.0000021007,0.0000020995,0.0000020980,0.0000020966, -0.0000020950,0.0000020935,0.0000020925,0.0000020921,0.0000020927, -0.0000020940,0.0000020956,0.0000020974,0.0000020990,0.0000020995, -0.0000020989,0.0000020973,0.0000020950,0.0000020922,0.0000020895, -0.0000020869,0.0000020843,0.0000020821,0.0000020805,0.0000020788, -0.0000020766,0.0000020741,0.0000020716,0.0000020696,0.0000020688, -0.0000020689,0.0000020691,0.0000020688,0.0000020684,0.0000020677, -0.0000020670,0.0000020666,0.0000020664,0.0000020665,0.0000020668, -0.0000020676,0.0000020684,0.0000020692,0.0000020704,0.0000020721, -0.0000020740,0.0000020752,0.0000020752,0.0000020746,0.0000020739, -0.0000020734,0.0000020734,0.0000020738,0.0000020749,0.0000020768, -0.0000020787,0.0000020799,0.0000020806,0.0000020815,0.0000020826, -0.0000020837,0.0000020844,0.0000020849,0.0000020852,0.0000020848, -0.0000020835,0.0000020824,0.0000020812,0.0000020795,0.0000020770, -0.0000020738,0.0000020706,0.0000020680,0.0000020662,0.0000020651, -0.0000020644,0.0000020643,0.0000020646,0.0000020651,0.0000020662, -0.0000020676,0.0000020688,0.0000020700,0.0000020711,0.0000020718, -0.0000020722,0.0000020722,0.0000020720,0.0000020718,0.0000020713, -0.0000020702,0.0000020681,0.0000020650,0.0000020610,0.0000020565, -0.0000020519,0.0000020474,0.0000020429,0.0000020387,0.0000020347, -0.0000020311,0.0000020281,0.0000020256,0.0000020232,0.0000020208, -0.0000020181,0.0000020155,0.0000020129,0.0000020100,0.0000020069, -0.0000020044,0.0000020027,0.0000020015,0.0000020002,0.0000019990, -0.0000019983,0.0000019981,0.0000019982,0.0000019984,0.0000019986, -0.0000019991,0.0000020000,0.0000020013,0.0000020028,0.0000020042, -0.0000020046,0.0000020042,0.0000020027,0.0000020007,0.0000019986, -0.0000019961,0.0000019933,0.0000019901,0.0000019865,0.0000019831, -0.0000019801,0.0000019771,0.0000019750,0.0000019753,0.0000019775, -0.0000019814,0.0000019872,0.0000019937,0.0000019998,0.0000020053, -0.0000020102,0.0000020145,0.0000020181,0.0000020209,0.0000020233, -0.0000020252,0.0000020267,0.0000020278,0.0000020284,0.0000020287, -0.0000020282,0.0000020270,0.0000020258,0.0000020247,0.0000020233, -0.0000020216,0.0000020195,0.0000020166,0.0000020129,0.0000020092, -0.0000020057,0.0000020021,0.0000019981,0.0000019941,0.0000019908, -0.0000019884,0.0000019867,0.0000019853,0.0000019841,0.0000019834, -0.0000019832,0.0000019828,0.0000019816,0.0000019799,0.0000019777, -0.0000019755,0.0000019745,0.0000019743,0.0000019743,0.0000019749, -0.0000019775,0.0000019810,0.0000019822,0.0000019803,0.0000019755, -0.0000019703,0.0000019642,0.0000019613,0.0000019700,0.0000019870, -0.0000020071,0.0000020242,0.0000020244,0.0000020254,0.0000020373, -0.0000020462,0.0000020508,0.0000020516,0.0000020452,0.0000020337, -0.0000020270,0.0000020264,0.0000020276,0.0000020287,0.0000020294, -0.0000020294,0.0000020285,0.0000020272,0.0000020261,0.0000020251, -0.0000020244,0.0000020238,0.0000020227,0.0000020217,0.0000020229, -0.0000020275,0.0000020323,0.0000020348,0.0000020338,0.0000020284, -0.0000020218,0.0000020160,0.0000020119,0.0000020122,0.0000020182, -0.0000020264,0.0000020315,0.0000020325,0.0000020316,0.0000020291, -0.0000020271,0.0000020262,0.0000020248,0.0000020236,0.0000020244, -0.0000020275,0.0000020333,0.0000020401,0.0000020439,0.0000020438, -0.0000020404,0.0000020368,0.0000020346,0.0000020331,0.0000020317, -0.0000020303,0.0000020284,0.0000020263,0.0000020246,0.0000020233, -0.0000020221,0.0000020209,0.0000020193,0.0000020170,0.0000020141, -0.0000020116,0.0000020100,0.0000020087,0.0000020083,0.0000020085, -0.0000020086,0.0000020094,0.0000020096,0.0000020093,0.0000020087, -0.0000020078,0.0000020063,0.0000020041,0.0000020013,0.0000019979, -0.0000019944,0.0000019918,0.0000019900,0.0000019886,0.0000019873, -0.0000019862,0.0000019851,0.0000019844,0.0000019842,0.0000019840, -0.0000019843,0.0000019850,0.0000019862,0.0000019876,0.0000019892, -0.0000019906,0.0000019918,0.0000019929,0.0000019940,0.0000019948, -0.0000019954,0.0000019961,0.0000019965,0.0000019968,0.0000019969, -0.0000019968,0.0000019965,0.0000019968,0.0000019979,0.0000019997, -0.0000020021,0.0000020047,0.0000020076,0.0000020108,0.0000020141, -0.0000020174,0.0000020202,0.0000020225,0.0000020241,0.0000020255, -0.0000020265,0.0000020272,0.0000020274,0.0000020272,0.0000020268, -0.0000020263,0.0000020257,0.0000020250,0.0000020241,0.0000020230, -0.0000020220,0.0000020212,0.0000020205,0.0000020198,0.0000020189, -0.0000020177,0.0000020163,0.0000020147,0.0000020126,0.0000020098, -0.0000020063,0.0000020016,0.0000019959,0.0000019904,0.0000019859, -0.0000019832,0.0000019821,0.0000019816,0.0000019809,0.0000019789, -0.0000019756,0.0000019720,0.0000019695,0.0000019688,0.0000019695, -0.0000019718,0.0000019747,0.0000019786,0.0000019835,0.0000019878, -0.0000019890,0.0000019880,0.0000019858,0.0000019844,0.0000019842, -0.0000019851,0.0000019862,0.0000019876,0.0000019897,0.0000019931, -0.0000019981,0.0000020042,0.0000019945,0.0000020002,0.0000020066, -0.0000020131,0.0000020188,0.0000020229,0.0000020249,0.0000020259, -0.0000020275,0.0000020302,0.0000020346,0.0000020416,0.0000020507, -0.0000020608,0.0000020710,0.0000020804,0.0000020886,0.0000020954, -0.0000021010,0.0000021054,0.0000021089,0.0000021117,0.0000021138, -0.0000021156,0.0000021172,0.0000021184,0.0000021197,0.0000021211, -0.0000021225,0.0000021239,0.0000021249,0.0000021255,0.0000021252, -0.0000021239,0.0000021217,0.0000021189,0.0000021155,0.0000021115, -0.0000021070,0.0000021025,0.0000020988,0.0000020968,0.0000020969, -0.0000020980,0.0000021001,0.0000021025,0.0000021052,0.0000021080, -0.0000021105,0.0000021126,0.0000021138,0.0000021141,0.0000021134, -0.0000021122,0.0000021106,0.0000021085,0.0000021056,0.0000021021, -0.0000020979,0.0000020936,0.0000020896,0.0000020859,0.0000020819, -0.0000020777,0.0000020745,0.0000020725,0.0000020712,0.0000020699, -0.0000020678,0.0000020653,0.0000020633,0.0000020631,0.0000020651, -0.0000020686,0.0000020728,0.0000020771,0.0000020816,0.0000020866, -0.0000020914,0.0000020950,0.0000020968,0.0000020973,0.0000020965, -0.0000020946,0.0000020922,0.0000020895,0.0000020867,0.0000020834, -0.0000020808,0.0000020802,0.0000020824,0.0000020885,0.0000020955, -0.0000021016,0.0000021067,0.0000021117,0.0000021165,0.0000021214, -0.0000021259,0.0000021293,0.0000021312,0.0000021320,0.0000021323, -0.0000021324,0.0000021326,0.0000021328,0.0000021329,0.0000021330, -0.0000021327,0.0000021317,0.0000021301,0.0000021282,0.0000021262, -0.0000021238,0.0000021210,0.0000021185,0.0000021169,0.0000021160, -0.0000021154,0.0000021148,0.0000021143,0.0000021136,0.0000021129, -0.0000021120,0.0000021108,0.0000021092,0.0000021072,0.0000021048, -0.0000021017,0.0000020983,0.0000020949,0.0000020915,0.0000020881, -0.0000020845,0.0000020813,0.0000020789,0.0000020779,0.0000020774, -0.0000020779,0.0000020795,0.0000020819,0.0000020847,0.0000020876, -0.0000020905,0.0000020933,0.0000020961,0.0000020985,0.0000021002, -0.0000021012,0.0000021020,0.0000021029,0.0000021044,0.0000021065, -0.0000021085,0.0000021105,0.0000021132,0.0000021163,0.0000021187, -0.0000021193,0.0000021182,0.0000021162,0.0000021146,0.0000021127, -0.0000021113,0.0000021121,0.0000021160,0.0000021201,0.0000021232, -0.0000021270,0.0000021315,0.0000021348,0.0000021367,0.0000021385, -0.0000021400,0.0000021406,0.0000021396,0.0000021366,0.0000021331, -0.0000021295,0.0000021255,0.0000021211,0.0000021174,0.0000021154, -0.0000021155,0.0000021169,0.0000021193,0.0000021216,0.0000021231, -0.0000021237,0.0000021239,0.0000021237,0.0000021230,0.0000021220, -0.0000021209,0.0000021200,0.0000021194,0.0000021195,0.0000021210, -0.0000021242,0.0000021278,0.0000021310,0.0000021335,0.0000021374, -0.0000021425,0.0000021461,0.0000021487,0.0000021540,0.0000021614, -0.0000021675,0.0000021714,0.0000021766,0.0000021855,0.0000021942, -0.0000021991,0.0000022005,0.0000022000,0.0000021953,0.0000021882, -0.0000021816,0.0000021771,0.0000021746,0.0000021727,0.0000021710, -0.0000021691,0.0000021682,0.0000021676,0.0000021675,0.0000021674, -0.0000021673,0.0000021676,0.0000021680,0.0000021682,0.0000021685, -0.0000021687,0.0000021686,0.0000021680,0.0000021672,0.0000021662, -0.0000021654,0.0000021652,0.0000021651,0.0000021654,0.0000021663, -0.0000021678,0.0000021700,0.0000021720,0.0000021739,0.0000021757, -0.0000021773,0.0000021786,0.0000021794,0.0000021797,0.0000021800, -0.0000021802,0.0000021805,0.0000021806,0.0000021804,0.0000021802, -0.0000021798,0.0000021791,0.0000021778,0.0000021760,0.0000021734, -0.0000021706,0.0000021682,0.0000021643,0.0000021595,0.0000021544, -0.0000021490,0.0000021434,0.0000021378,0.0000021323,0.0000021276, -0.0000021243,0.0000021229,0.0000021225,0.0000021232,0.0000021255, -0.0000021278,0.0000021298,0.0000021310,0.0000021318,0.0000021326, -0.0000021336,0.0000021344,0.0000021347,0.0000021344,0.0000021335, -0.0000021320,0.0000021300,0.0000021278,0.0000021254,0.0000021230, -0.0000021204,0.0000021164,0.0000021115,0.0000021069,0.0000021028, -0.0000020993,0.0000020959,0.0000020947,0.0000020957,0.0000020977, -0.0000020998,0.0000021012,0.0000021019,0.0000021018,0.0000021011, -0.0000021010,0.0000021041,0.0000021108,0.0000021192,0.0000021274, -0.0000021330,0.0000021364,0.0000021382,0.0000021383,0.0000021371, -0.0000021341,0.0000021296,0.0000021254,0.0000021223,0.0000021192, -0.0000021148,0.0000021099,0.0000021048,0.0000021010,0.0000020990, -0.0000020980,0.0000020980,0.0000020992,0.0000021017,0.0000021056, -0.0000021092,0.0000021117,0.0000021128,0.0000021129,0.0000021118, -0.0000021099,0.0000021076,0.0000021046,0.0000021011,0.0000020974, -0.0000020931,0.0000020892,0.0000020831,0.0000020767,0.0000020733, -0.0000020674,0.0000020567,0.0000020469,0.0000020469,0.0000020515, -0.0000020526,0.0000020566,0.0000020611,0.0000020632,0.0000020637, -0.0000020649,0.0000020679,0.0000020720,0.0000020763,0.0000020814, -0.0000020853,0.0000020873,0.0000020864,0.0000020879,0.0000020977, -0.0000021083,0.0000021140,0.0000021269,0.0000021428,0.0000021457, -0.0000021464,0.0000021590,0.0000021657,0.0000021619,0.0000021615, -0.0000021710,0.0000021807,0.0000021812,0.0000021758,0.0000021791, -0.0000021983,0.0000022052,0.0000021964,0.0000021811,0.0000021764, -0.0000021793,0.0000021816,0.0000021922,0.0000021983,0.0000022016, -0.0000022175,0.0000022239,0.0000022297,0.0000022411,0.0000022505, -0.0000022570,0.0000022603,0.0000022608,0.0000022608,0.0000022610, -0.0000022600,0.0000022576,0.0000022549,0.0000022534,0.0000022531, -0.0000022534,0.0000022544,0.0000022562,0.0000022583,0.0000022607, -0.0000022634,0.0000022660,0.0000022677,0.0000022660,0.0000022583, -0.0000022470,0.0000022381,0.0000022347,0.0000022334,0.0000022322, -0.0000022294,0.0000022257,0.0000022233,0.0000022215,0.0000022207, -0.0000022202,0.0000022190,0.0000022157,0.0000022112,0.0000022067, -0.0000022023,0.0000021976,0.0000021915,0.0000021846,0.0000021764, -0.0000021671,0.0000021591,0.0000021546,0.0000021524,0.0000021525, -0.0000021565,0.0000021653,0.0000021765,0.0000021855,0.0000021919, -0.0000021956,0.0000021998,0.0000022089,0.0000022166,0.0000022150, -0.0000022095,0.0000022039,0.0000021983,0.0000021927,0.0000021879, -0.0000021828,0.0000021782,0.0000021746,0.0000021729,0.0000021728, -0.0000021722,0.0000021713,0.0000021703,0.0000021708,0.0000021745, -0.0000021823,0.0000021916,0.0000021987,0.0000022022,0.0000022044, -0.0000022069,0.0000022095,0.0000022123,0.0000022154,0.0000022191, -0.0000022222,0.0000022249,0.0000022271,0.0000022286,0.0000022295, -0.0000022310,0.0000022319,0.0000022315,0.0000022308,0.0000022298, -0.0000022283,0.0000022289,0.0000022308,0.0000022349,0.0000022413, -0.0000022466,0.0000022496,0.0000022516,0.0000022541,0.0000022566, -0.0000022590,0.0000022609,0.0000022619,0.0000022623,0.0000022625, -0.0000022622,0.0000022600,0.0000022564,0.0000022531,0.0000022503, -0.0000022457,0.0000022413,0.0000022387,0.0000022367,0.0000022353, -0.0000022347,0.0000022349,0.0000022355,0.0000022363,0.0000022364, -0.0000022366,0.0000022375,0.0000022386,0.0000022385,0.0000022380, -0.0000022395,0.0000022450,0.0000022512,0.0000022545,0.0000022564, -0.0000022595,0.0000022629,0.0000022640,0.0000022611,0.0000022537, -0.0000022443,0.0000022369,0.0000022323,0.0000022288,0.0000022271, -0.0000022258,0.0000022223,0.0000022156,0.0000022069,0.0000021988, -0.0000021941,0.0000021913,0.0000021879,0.0000021819,0.0000021753, -0.0000021706,0.0000021686,0.0000021689,0.0000021715,0.0000021768, -0.0000021833,0.0000021896,0.0000021952,0.0000022005,0.0000022047, -0.0000022074,0.0000022092,0.0000022112,0.0000022133,0.0000022150, -0.0000022160,0.0000022161,0.0000022155,0.0000022140,0.0000022117, -0.0000022087,0.0000022052,0.0000022013,0.0000021971,0.0000021927, -0.0000021881,0.0000021834,0.0000021787,0.0000021734,0.0000021674, -0.0000021621,0.0000021581,0.0000021561,0.0000021543,0.0000021528, -0.0000021520,0.0000021517,0.0000021512,0.0000021502,0.0000021490, -0.0000021487,0.0000021493,0.0000021501,0.0000021503,0.0000021493, -0.0000021485,0.0000021486,0.0000021496,0.0000021508,0.0000021517, -0.0000021521,0.0000021519,0.0000021518,0.0000021538,0.0000021582, -0.0000021649,0.0000021725,0.0000021798,0.0000021854,0.0000021893, -0.0000021912,0.0000021910,0.0000021893,0.0000021882,0.0000021872, -0.0000021857,0.0000021838,0.0000021818,0.0000021796,0.0000021773, -0.0000021752,0.0000021732,0.0000021708,0.0000021680,0.0000021651, -0.0000021619,0.0000021584,0.0000021551,0.0000021523,0.0000021497, -0.0000021473,0.0000021450,0.0000021425,0.0000021402,0.0000021380, -0.0000021361,0.0000021343,0.0000021331,0.0000021326,0.0000021322, -0.0000021320,0.0000021318,0.0000021318,0.0000021324,0.0000021336, -0.0000021342,0.0000021348,0.0000021353,0.0000021351,0.0000021341, -0.0000021327,0.0000021308,0.0000021288,0.0000021268,0.0000021248, -0.0000021230,0.0000021214,0.0000021196,0.0000021171,0.0000021142, -0.0000021116,0.0000021098,0.0000021084,0.0000021067,0.0000021048, -0.0000021030,0.0000021017,0.0000021000,0.0000020981,0.0000020970, -0.0000020965,0.0000020964,0.0000020970,0.0000020985,0.0000021008, -0.0000021035,0.0000021064,0.0000021099,0.0000021139,0.0000021183, -0.0000021223,0.0000021258,0.0000021291,0.0000021314,0.0000021331, -0.0000021329,0.0000021342,0.0000021330,0.0000021303,0.0000021278, -0.0000021257,0.0000021243,0.0000021236,0.0000021239,0.0000021248, -0.0000021262,0.0000021275,0.0000021286,0.0000021293,0.0000021297, -0.0000021288,0.0000021268,0.0000021238,0.0000021193,0.0000021136, -0.0000021069,0.0000020998,0.0000020922,0.0000020845,0.0000020773, -0.0000020717,0.0000020683,0.0000020674,0.0000020679,0.0000020719, -0.0000020782,0.0000020855,0.0000020948,0.0000021025,0.0000021085, -0.0000021129,0.0000021152,0.0000021164,0.0000021177,0.0000021194, -0.0000021222,0.0000021253,0.0000021301,0.0000021351,0.0000021403, -0.0000021455,0.0000021502,0.0000021549,0.0000021598,0.0000021646, -0.0000021690,0.0000021730,0.0000021771,0.0000021806,0.0000021831, -0.0000021845,0.0000021850,0.0000021844,0.0000021829,0.0000021806, -0.0000021775,0.0000021736,0.0000021694,0.0000021649,0.0000021601, -0.0000021552,0.0000021505,0.0000021464,0.0000021424,0.0000021379, -0.0000021334,0.0000021293,0.0000021264,0.0000021237,0.0000021209, -0.0000021187,0.0000021177,0.0000021164,0.0000021148,0.0000021130, -0.0000021112,0.0000021096,0.0000021083,0.0000021074,0.0000021069, -0.0000021065,0.0000021055,0.0000021051,0.0000021046,0.0000021044, -0.0000021035,0.0000021019,0.0000021007,0.0000020988,0.0000020983, -0.0000020980,0.0000020972,0.0000020968,0.0000020964,0.0000020953, -0.0000020943,0.0000020936,0.0000020930,0.0000020927,0.0000020927, -0.0000020930,0.0000020941,0.0000020964,0.0000021010,0.0000021065, -0.0000021127,0.0000021188,0.0000021240,0.0000021285,0.0000021316, -0.0000021328,0.0000021327,0.0000021301,0.0000021244,0.0000021169, -0.0000021083,0.0000020987,0.0000020879,0.0000020771,0.0000020667, -0.0000020569,0.0000020471,0.0000020375,0.0000020285,0.0000020198, -0.0000020114,0.0000020033,0.0000019958,0.0000019897,0.0000019852, -0.0000019819,0.0000019801,0.0000019801,0.0000019829,0.0000019877, -0.0000019932,0.0000019994,0.0000020059,0.0000020116,0.0000020169, -0.0000020218,0.0000020249,0.0000020250,0.0000020225,0.0000020188, -0.0000020165,0.0000020161,0.0000020159,0.0000020135,0.0000020093, -0.0000020049,0.0000020010,0.0000019964,0.0000019902,0.0000019825, -0.0000019769,0.0000019744,0.0000019727,0.0000019707,0.0000019688, -0.0000019695,0.0000019751,0.0000019856,0.0000019965,0.0000020039, -0.0000020094,0.0000020161,0.0000020238,0.0000020304,0.0000020365, -0.0000020431,0.0000020507,0.0000020594,0.0000020680,0.0000020746, -0.0000020778,0.0000020783,0.0000020770,0.0000020750,0.0000020714, -0.0000020648,0.0000020557,0.0000020470,0.0000020416,0.0000020404, -0.0000020425,0.0000020459,0.0000020480,0.0000020498,0.0000020494, -0.0000020500,0.0000020512,0.0000020537,0.0000020572,0.0000020593, -0.0000020609,0.0000020620,0.0000020631,0.0000020643,0.0000020656, -0.0000020675,0.0000020716,0.0000020790,0.0000020905,0.0000021056, -0.0000021237,0.0000021439,0.0000021642,0.0000021820,0.0000021956, -0.0000022044,0.0000022089,0.0000022110,0.0000022115,0.0000022111, -0.0000022108,0.0000022105,0.0000022104,0.0000022112,0.0000022128, -0.0000022145,0.0000022156,0.0000022159,0.0000022151,0.0000022138, -0.0000022125,0.0000022103,0.0000022079,0.0000022060,0.0000022041, -0.0000022023,0.0000022010,0.0000021999,0.0000021990,0.0000021983, -0.0000021979,0.0000021977,0.0000021977,0.0000021980,0.0000021987, -0.0000022001,0.0000022019,0.0000022043,0.0000022069,0.0000022096, -0.0000022122,0.0000022144,0.0000022154,0.0000022155,0.0000022147, -0.0000022128,0.0000022102,0.0000022069,0.0000022035,0.0000022010, -0.0000021988,0.0000021962,0.0000021910,0.0000021810,0.0000021677, -0.0000021556,0.0000021475,0.0000021422,0.0000021370,0.0000021308, -0.0000021257,0.0000021224,0.0000021193,0.0000021153,0.0000021100, -0.0000021043,0.0000020987,0.0000020936,0.0000020893,0.0000020856, -0.0000020829,0.0000020812,0.0000020800,0.0000020796,0.0000020799, -0.0000020804,0.0000020810,0.0000020818,0.0000020828,0.0000020840, -0.0000020852,0.0000020856,0.0000020854,0.0000020862,0.0000020909, -0.0000020966,0.0000021027,0.0000021093,0.0000021123,0.0000021132, -0.0000021146,0.0000021202,0.0000021252,0.0000021245,0.0000021207, -0.0000021168,0.0000021131,0.0000021088,0.0000021083,0.0000021124, -0.0000021164,0.0000021209,0.0000021247,0.0000021245,0.0000021227, -0.0000021245,0.0000021314,0.0000021423,0.0000021542,0.0000021660, -0.0000021770,0.0000021865,0.0000021941,0.0000021996,0.0000022035, -0.0000022056,0.0000022061,0.0000022055,0.0000022045,0.0000022032, -0.0000022006,0.0000021967,0.0000021906,0.0000021841,0.0000021791, -0.0000021765,0.0000021753,0.0000021729,0.0000021686,0.0000021615, -0.0000021532,0.0000021461,0.0000021448,0.0000021506,0.0000021622, -0.0000021770,0.0000021907,0.0000022000,0.0000022062,0.0000022107, -0.0000022163,0.0000022246,0.0000022353,0.0000022464,0.0000022574, -0.0000022656,0.0000022678,0.0000022679,0.0000022659,0.0000022640, -0.0000022610,0.0000022582,0.0000022571,0.0000022580,0.0000022605, -0.0000022648,0.0000022702,0.0000022771,0.0000022838,0.0000022903, -0.0000022941,0.0000022945,0.0000022902,0.0000022817,0.0000022716, -0.0000022611,0.0000022503,0.0000022417,0.0000022387,0.0000022420, -0.0000022482,0.0000022538,0.0000022580,0.0000022616,0.0000022650, -0.0000022673,0.0000022679,0.0000022670,0.0000022640,0.0000022592, -0.0000022528,0.0000022457,0.0000022388,0.0000022327,0.0000022272, -0.0000022220,0.0000022172,0.0000022132,0.0000022097,0.0000022049, -0.0000021966,0.0000021850,0.0000021732,0.0000021644,0.0000021576, -0.0000021485,0.0000021369,0.0000021263,0.0000021185,0.0000021110, -0.0000021007,0.0000020879,0.0000020756,0.0000020662,0.0000020593, -0.0000020534,0.0000020484,0.0000020436,0.0000020396,0.0000020366, -0.0000020346,0.0000020333,0.0000020337,0.0000020350,0.0000020343, -0.0000020318,0.0000020285,0.0000020255,0.0000020237,0.0000020231, -0.0000020228,0.0000020214,0.0000020193,0.0000020173,0.0000020171, -0.0000020188,0.0000020222,0.0000020268,0.0000020315,0.0000020361, -0.0000020400,0.0000020430,0.0000020451,0.0000020463,0.0000020473, -0.0000020482,0.0000020488,0.0000020473,0.0000020443,0.0000020390, -0.0000020318,0.0000020239,0.0000020170,0.0000020146,0.0000020143, -0.0000020180,0.0000020247,0.0000020344,0.0000020478,0.0000020630, -0.0000020769,0.0000020852,0.0000020887,0.0000020888,0.0000020893, -0.0000020904,0.0000020907,0.0000020893,0.0000020851,0.0000020794, -0.0000020726,0.0000020647,0.0000020557,0.0000020485,0.0000020446, -0.0000020451,0.0000020516,0.0000020629,0.0000020772,0.0000020921, -0.0000021043,0.0000021120,0.0000021165,0.0000021201,0.0000021241, -0.0000021299,0.0000021375,0.0000021456,0.0000021538,0.0000021628, -0.0000021735,0.0000021849,0.0000021937,0.0000021979,0.0000021986, -0.0000021982,0.0000021989,0.0000022002,0.0000022001,0.0000021976, -0.0000021931,0.0000021883,0.0000021849,0.0000021818,0.0000021782, -0.0000021743,0.0000021706,0.0000021677,0.0000021666,0.0000021665, -0.0000021669,0.0000021675,0.0000021684,0.0000021697,0.0000021710, -0.0000021722,0.0000021730,0.0000021734,0.0000021734,0.0000021726, -0.0000021714,0.0000021703,0.0000021689,0.0000021662,0.0000021621, -0.0000021569,0.0000021516,0.0000021463,0.0000021415,0.0000021370, -0.0000021321,0.0000021265,0.0000021202,0.0000021138,0.0000021082, -0.0000021035,0.0000021004,0.0000020991,0.0000020987,0.0000020984, -0.0000020980,0.0000020975,0.0000020968,0.0000020959,0.0000020947, -0.0000020934,0.0000020919,0.0000020901,0.0000020884,0.0000020870, -0.0000020865,0.0000020871,0.0000020893,0.0000020923,0.0000020954, -0.0000020977,0.0000020984,0.0000020979,0.0000020960,0.0000020930, -0.0000020900,0.0000020873,0.0000020848,0.0000020825,0.0000020813, -0.0000020805,0.0000020792,0.0000020769,0.0000020741,0.0000020710, -0.0000020686,0.0000020670,0.0000020661,0.0000020660,0.0000020661, -0.0000020661,0.0000020658,0.0000020653,0.0000020643,0.0000020630, -0.0000020617,0.0000020606,0.0000020598,0.0000020594,0.0000020598, -0.0000020609,0.0000020629,0.0000020653,0.0000020671,0.0000020681, -0.0000020687,0.0000020689,0.0000020691,0.0000020691,0.0000020692, -0.0000020702,0.0000020724,0.0000020750,0.0000020769,0.0000020780, -0.0000020792,0.0000020802,0.0000020810,0.0000020816,0.0000020820, -0.0000020819,0.0000020812,0.0000020801,0.0000020791,0.0000020776, -0.0000020751,0.0000020716,0.0000020679,0.0000020649,0.0000020628, -0.0000020615,0.0000020608,0.0000020609,0.0000020615,0.0000020624, -0.0000020637,0.0000020654,0.0000020668,0.0000020680,0.0000020688, -0.0000020694,0.0000020695,0.0000020692,0.0000020681,0.0000020667, -0.0000020651,0.0000020630,0.0000020601,0.0000020566,0.0000020527, -0.0000020487,0.0000020448,0.0000020409,0.0000020372,0.0000020336, -0.0000020301,0.0000020265,0.0000020233,0.0000020205,0.0000020179, -0.0000020155,0.0000020129,0.0000020102,0.0000020077,0.0000020052, -0.0000020024,0.0000019996,0.0000019974,0.0000019960,0.0000019949, -0.0000019938,0.0000019929,0.0000019924,0.0000019925,0.0000019928, -0.0000019932,0.0000019937,0.0000019945,0.0000019957,0.0000019969, -0.0000019980,0.0000019990,0.0000019995,0.0000019990,0.0000019977, -0.0000019961,0.0000019945,0.0000019928,0.0000019909,0.0000019886, -0.0000019857,0.0000019826,0.0000019792,0.0000019759,0.0000019730, -0.0000019708,0.0000019682,0.0000019680,0.0000019706,0.0000019754, -0.0000019817,0.0000019883,0.0000019947,0.0000020007,0.0000020058, -0.0000020100,0.0000020134,0.0000020161,0.0000020181,0.0000020197, -0.0000020208,0.0000020212,0.0000020207,0.0000020195,0.0000020180, -0.0000020162,0.0000020140,0.0000020117,0.0000020090,0.0000020055, -0.0000020017,0.0000019984,0.0000019957,0.0000019931,0.0000019905, -0.0000019881,0.0000019862,0.0000019847,0.0000019835,0.0000019827, -0.0000019823,0.0000019818,0.0000019813,0.0000019807,0.0000019798, -0.0000019782,0.0000019762,0.0000019742,0.0000019731,0.0000019730, -0.0000019732,0.0000019737,0.0000019758,0.0000019794,0.0000019820, -0.0000019814,0.0000019774,0.0000019723,0.0000019667,0.0000019617, -0.0000019669,0.0000019824,0.0000020011,0.0000020207,0.0000020250, -0.0000020243,0.0000020336,0.0000020444,0.0000020495,0.0000020516, -0.0000020484,0.0000020382,0.0000020293,0.0000020268,0.0000020278, -0.0000020294,0.0000020306,0.0000020313,0.0000020311,0.0000020303, -0.0000020293,0.0000020280,0.0000020268,0.0000020257,0.0000020238, -0.0000020220,0.0000020218,0.0000020258,0.0000020309,0.0000020339, -0.0000020337,0.0000020290,0.0000020220,0.0000020160,0.0000020118, -0.0000020110,0.0000020159,0.0000020238,0.0000020290,0.0000020297, -0.0000020285,0.0000020265,0.0000020251,0.0000020242,0.0000020231, -0.0000020231,0.0000020253,0.0000020291,0.0000020350,0.0000020412, -0.0000020438,0.0000020424,0.0000020383,0.0000020349,0.0000020334, -0.0000020327,0.0000020323,0.0000020315,0.0000020297,0.0000020281, -0.0000020265,0.0000020257,0.0000020250,0.0000020245,0.0000020237, -0.0000020221,0.0000020201,0.0000020182,0.0000020167,0.0000020151, -0.0000020135,0.0000020122,0.0000020117,0.0000020113,0.0000020104, -0.0000020092,0.0000020078,0.0000020063,0.0000020045,0.0000020023, -0.0000019996,0.0000019964,0.0000019936,0.0000019915,0.0000019899, -0.0000019888,0.0000019878,0.0000019868,0.0000019860,0.0000019856, -0.0000019857,0.0000019862,0.0000019871,0.0000019881,0.0000019895, -0.0000019911,0.0000019927,0.0000019943,0.0000019957,0.0000019971, -0.0000019982,0.0000019989,0.0000019993,0.0000019996,0.0000019995, -0.0000019991,0.0000019985,0.0000019977,0.0000019969,0.0000019962, -0.0000019958,0.0000019957,0.0000019959,0.0000019960,0.0000019962, -0.0000019964,0.0000019964,0.0000019982,0.0000020005,0.0000020033, -0.0000020066,0.0000020099,0.0000020132,0.0000020166,0.0000020195, -0.0000020219,0.0000020238,0.0000020251,0.0000020258,0.0000020258, -0.0000020249,0.0000020234,0.0000020222,0.0000020205,0.0000020189, -0.0000020176,0.0000020164,0.0000020152,0.0000020139,0.0000020129, -0.0000020117,0.0000020102,0.0000020085,0.0000020067,0.0000020043, -0.0000020011,0.0000019968,0.0000019916,0.0000019867,0.0000019834, -0.0000019817,0.0000019809,0.0000019800,0.0000019779,0.0000019745, -0.0000019702,0.0000019670,0.0000019658,0.0000019669,0.0000019692, -0.0000019717,0.0000019751,0.0000019796,0.0000019836,0.0000019852, -0.0000019840,0.0000019822,0.0000019807,0.0000019802,0.0000019810, -0.0000019822,0.0000019833,0.0000019855,0.0000019894,0.0000019838, -0.0000019879,0.0000019924,0.0000019973,0.0000020025,0.0000020074, -0.0000020112,0.0000020144,0.0000020174,0.0000020207,0.0000020242, -0.0000020285,0.0000020347,0.0000020423,0.0000020508,0.0000020601, -0.0000020694,0.0000020783,0.0000020862,0.0000020931,0.0000020994, -0.0000021046,0.0000021087,0.0000021120,0.0000021146,0.0000021165, -0.0000021184,0.0000021202,0.0000021218,0.0000021234,0.0000021253, -0.0000021266,0.0000021273,0.0000021271,0.0000021264,0.0000021252, -0.0000021232,0.0000021204,0.0000021168,0.0000021125,0.0000021082, -0.0000021047,0.0000021026,0.0000021014,0.0000021012,0.0000021022, -0.0000021037,0.0000021057,0.0000021082,0.0000021104,0.0000021120, -0.0000021129,0.0000021130,0.0000021124,0.0000021109,0.0000021085, -0.0000021056,0.0000021021,0.0000020979,0.0000020935,0.0000020894, -0.0000020852,0.0000020809,0.0000020768,0.0000020726,0.0000020693, -0.0000020674,0.0000020661,0.0000020646,0.0000020618,0.0000020585, -0.0000020564,0.0000020566,0.0000020593,0.0000020633,0.0000020671, -0.0000020711,0.0000020758,0.0000020812,0.0000020861,0.0000020901, -0.0000020930,0.0000020948,0.0000020949,0.0000020938,0.0000020921, -0.0000020904,0.0000020881,0.0000020848,0.0000020815,0.0000020803, -0.0000020810,0.0000020848,0.0000020906,0.0000020965,0.0000021020, -0.0000021069,0.0000021113,0.0000021159,0.0000021207,0.0000021251, -0.0000021285,0.0000021303,0.0000021313,0.0000021320,0.0000021328, -0.0000021332,0.0000021333,0.0000021332,0.0000021330,0.0000021324, -0.0000021312,0.0000021296,0.0000021278,0.0000021260,0.0000021239, -0.0000021216,0.0000021197,0.0000021182,0.0000021167,0.0000021153, -0.0000021141,0.0000021129,0.0000021116,0.0000021102,0.0000021086, -0.0000021069,0.0000021051,0.0000021028,0.0000021001,0.0000020973, -0.0000020947,0.0000020918,0.0000020886,0.0000020850,0.0000020816, -0.0000020789,0.0000020771,0.0000020761,0.0000020761,0.0000020775, -0.0000020801,0.0000020828,0.0000020855,0.0000020882,0.0000020907, -0.0000020934,0.0000020961,0.0000020983,0.0000020996,0.0000021005, -0.0000021016,0.0000021037,0.0000021063,0.0000021087,0.0000021106, -0.0000021121,0.0000021136,0.0000021156,0.0000021171,0.0000021170, -0.0000021154,0.0000021132,0.0000021110,0.0000021087,0.0000021075, -0.0000021093,0.0000021140,0.0000021188,0.0000021236,0.0000021294, -0.0000021342,0.0000021370,0.0000021390,0.0000021409,0.0000021427, -0.0000021431,0.0000021410,0.0000021370,0.0000021328,0.0000021288, -0.0000021246,0.0000021203,0.0000021172,0.0000021162,0.0000021167, -0.0000021183,0.0000021200,0.0000021211,0.0000021216,0.0000021217, -0.0000021215,0.0000021209,0.0000021200,0.0000021187,0.0000021176, -0.0000021172,0.0000021174,0.0000021182,0.0000021205,0.0000021247, -0.0000021289,0.0000021317,0.0000021345,0.0000021395,0.0000021448, -0.0000021477,0.0000021503,0.0000021557,0.0000021635,0.0000021700, -0.0000021746,0.0000021808,0.0000021896,0.0000021974,0.0000022017, -0.0000022029,0.0000022020,0.0000021971,0.0000021900,0.0000021830, -0.0000021774,0.0000021733,0.0000021699,0.0000021665,0.0000021636, -0.0000021612,0.0000021598,0.0000021592,0.0000021592,0.0000021598, -0.0000021606,0.0000021612,0.0000021616,0.0000021618,0.0000021615, -0.0000021607,0.0000021599,0.0000021590,0.0000021587,0.0000021589, -0.0000021594,0.0000021601,0.0000021614,0.0000021630,0.0000021649, -0.0000021670,0.0000021689,0.0000021707,0.0000021723,0.0000021734, -0.0000021739,0.0000021740,0.0000021737,0.0000021734,0.0000021730, -0.0000021726,0.0000021723,0.0000021723,0.0000021723,0.0000021721, -0.0000021716,0.0000021709,0.0000021699,0.0000021686,0.0000021671, -0.0000021654,0.0000021628,0.0000021601,0.0000021569,0.0000021521, -0.0000021467,0.0000021409,0.0000021354,0.0000021306,0.0000021268, -0.0000021242,0.0000021227,0.0000021225,0.0000021226,0.0000021241, -0.0000021253,0.0000021262,0.0000021276,0.0000021294,0.0000021309, -0.0000021322,0.0000021335,0.0000021341,0.0000021336,0.0000021322, -0.0000021301,0.0000021269,0.0000021237,0.0000021208,0.0000021172, -0.0000021130,0.0000021085,0.0000021045,0.0000021016,0.0000020982, -0.0000020959,0.0000020958,0.0000020972,0.0000020990,0.0000021005, -0.0000021011,0.0000021008,0.0000021001,0.0000021000,0.0000021019, -0.0000021079,0.0000021168,0.0000021254,0.0000021318,0.0000021356, -0.0000021376,0.0000021381,0.0000021374,0.0000021357,0.0000021324, -0.0000021282,0.0000021247,0.0000021214,0.0000021178,0.0000021133, -0.0000021083,0.0000021043,0.0000021021,0.0000021007,0.0000020997, -0.0000020995,0.0000021005,0.0000021022,0.0000021050,0.0000021076, -0.0000021095,0.0000021104,0.0000021099,0.0000021085,0.0000021067, -0.0000021045,0.0000021011,0.0000020968,0.0000020914,0.0000020865, -0.0000020797,0.0000020724,0.0000020683,0.0000020625,0.0000020528, -0.0000020426,0.0000020427,0.0000020480,0.0000020489,0.0000020528, -0.0000020581,0.0000020611,0.0000020613,0.0000020610,0.0000020633, -0.0000020684,0.0000020738,0.0000020792,0.0000020828,0.0000020847, -0.0000020845,0.0000020901,0.0000021023,0.0000021122,0.0000021177, -0.0000021327,0.0000021465,0.0000021480,0.0000021503,0.0000021631, -0.0000021654,0.0000021610,0.0000021630,0.0000021745,0.0000021814, -0.0000021787,0.0000021745,0.0000021857,0.0000022026,0.0000022029, -0.0000021887,0.0000021763,0.0000021759,0.0000021780,0.0000021831, -0.0000021952,0.0000021965,0.0000022029,0.0000022167,0.0000022186, -0.0000022260,0.0000022393,0.0000022491,0.0000022549,0.0000022582, -0.0000022599,0.0000022607,0.0000022604,0.0000022583,0.0000022545, -0.0000022515,0.0000022502,0.0000022502,0.0000022522,0.0000022543, -0.0000022556,0.0000022567,0.0000022588,0.0000022613,0.0000022625, -0.0000022604,0.0000022537,0.0000022444,0.0000022369,0.0000022347, -0.0000022347,0.0000022327,0.0000022292,0.0000022243,0.0000022202, -0.0000022188,0.0000022178,0.0000022171,0.0000022150,0.0000022109, -0.0000022050,0.0000021987,0.0000021932,0.0000021881,0.0000021831, -0.0000021784,0.0000021729,0.0000021656,0.0000021572,0.0000021500, -0.0000021467,0.0000021455,0.0000021452,0.0000021484,0.0000021571, -0.0000021708,0.0000021825,0.0000021904,0.0000021946,0.0000021977, -0.0000022035,0.0000022118,0.0000022129,0.0000022073,0.0000022006, -0.0000021955,0.0000021911,0.0000021869,0.0000021818,0.0000021764, -0.0000021716,0.0000021693,0.0000021697,0.0000021698,0.0000021689, -0.0000021673,0.0000021660,0.0000021668,0.0000021721,0.0000021816, -0.0000021904,0.0000021950,0.0000021972,0.0000021998,0.0000022029, -0.0000022062,0.0000022092,0.0000022131,0.0000022166,0.0000022197, -0.0000022222,0.0000022241,0.0000022252,0.0000022266,0.0000022279, -0.0000022275,0.0000022264,0.0000022248,0.0000022232,0.0000022233, -0.0000022243,0.0000022272,0.0000022326,0.0000022376,0.0000022408, -0.0000022429,0.0000022455,0.0000022478,0.0000022503,0.0000022536, -0.0000022567,0.0000022590,0.0000022603,0.0000022612,0.0000022602, -0.0000022575,0.0000022543,0.0000022519,0.0000022480,0.0000022438, -0.0000022408,0.0000022383,0.0000022365,0.0000022359,0.0000022351, -0.0000022343,0.0000022333,0.0000022324,0.0000022325,0.0000022336, -0.0000022353,0.0000022362,0.0000022362,0.0000022365,0.0000022395, -0.0000022444,0.0000022480,0.0000022495,0.0000022511,0.0000022542, -0.0000022573,0.0000022581,0.0000022554,0.0000022489,0.0000022412, -0.0000022351,0.0000022307,0.0000022277,0.0000022266,0.0000022252, -0.0000022225,0.0000022172,0.0000022092,0.0000022004,0.0000021934, -0.0000021894,0.0000021855,0.0000021800,0.0000021738,0.0000021688, -0.0000021664,0.0000021658,0.0000021674,0.0000021711,0.0000021761, -0.0000021812,0.0000021865,0.0000021915,0.0000021958,0.0000021991, -0.0000022017,0.0000022041,0.0000022065,0.0000022085,0.0000022097, -0.0000022100,0.0000022097,0.0000022088,0.0000022073,0.0000022053, -0.0000022029,0.0000022000,0.0000021972,0.0000021938,0.0000021898, -0.0000021855,0.0000021810,0.0000021755,0.0000021695,0.0000021642, -0.0000021604,0.0000021576,0.0000021547,0.0000021518,0.0000021496, -0.0000021479,0.0000021469,0.0000021465,0.0000021472,0.0000021489, -0.0000021512,0.0000021535,0.0000021547,0.0000021549,0.0000021544, -0.0000021539,0.0000021538,0.0000021545,0.0000021560,0.0000021582, -0.0000021598,0.0000021598,0.0000021592,0.0000021595,0.0000021620, -0.0000021665,0.0000021715,0.0000021763,0.0000021806,0.0000021840, -0.0000021858,0.0000021868,0.0000021874,0.0000021871,0.0000021861, -0.0000021847,0.0000021830,0.0000021810,0.0000021787,0.0000021767, -0.0000021749,0.0000021726,0.0000021698,0.0000021666,0.0000021633, -0.0000021596,0.0000021560,0.0000021528,0.0000021500,0.0000021473, -0.0000021445,0.0000021419,0.0000021395,0.0000021374,0.0000021354, -0.0000021334,0.0000021318,0.0000021311,0.0000021310,0.0000021308, -0.0000021308,0.0000021312,0.0000021327,0.0000021343,0.0000021355, -0.0000021366,0.0000021374,0.0000021375,0.0000021369,0.0000021356, -0.0000021340,0.0000021321,0.0000021301,0.0000021281,0.0000021263, -0.0000021247,0.0000021228,0.0000021200,0.0000021170,0.0000021145, -0.0000021130,0.0000021118,0.0000021099,0.0000021074,0.0000021046, -0.0000021021,0.0000020994,0.0000020971,0.0000020946,0.0000020933, -0.0000020930,0.0000020932,0.0000020939,0.0000020948,0.0000020955, -0.0000020962,0.0000020970,0.0000020985,0.0000021008,0.0000021039, -0.0000021076,0.0000021121,0.0000021173,0.0000021223,0.0000021266, -0.0000021307,0.0000021327,0.0000021331,0.0000021319,0.0000021303, -0.0000021299,0.0000021287,0.0000021281,0.0000021279,0.0000021285, -0.0000021291,0.0000021306,0.0000021320,0.0000021334,0.0000021346, -0.0000021344,0.0000021333,0.0000021310,0.0000021272,0.0000021219, -0.0000021159,0.0000021087,0.0000021013,0.0000020941,0.0000020876, -0.0000020818,0.0000020764,0.0000020715,0.0000020677,0.0000020659, -0.0000020670,0.0000020684,0.0000020746,0.0000020809,0.0000020898, -0.0000020978,0.0000021029,0.0000021066,0.0000021091,0.0000021108, -0.0000021122,0.0000021149,0.0000021171,0.0000021193,0.0000021222, -0.0000021248,0.0000021273,0.0000021306,0.0000021344,0.0000021384, -0.0000021431,0.0000021476,0.0000021524,0.0000021569,0.0000021607, -0.0000021634,0.0000021647,0.0000021649,0.0000021640,0.0000021623, -0.0000021598,0.0000021567,0.0000021525,0.0000021478,0.0000021429, -0.0000021381,0.0000021333,0.0000021283,0.0000021230,0.0000021174, -0.0000021123,0.0000021085,0.0000021052,0.0000021018,0.0000020992, -0.0000020975,0.0000020959,0.0000020947,0.0000020939,0.0000020926, -0.0000020924,0.0000020929,0.0000020936,0.0000020947,0.0000020966, -0.0000020991,0.0000020999,0.0000021005,0.0000021019,0.0000021024, -0.0000021021,0.0000021020,0.0000021017,0.0000021020,0.0000021026, -0.0000021032,0.0000021035,0.0000021035,0.0000021035,0.0000021034, -0.0000021034,0.0000021034,0.0000021033,0.0000021033,0.0000021039, -0.0000021054,0.0000021076,0.0000021114,0.0000021161,0.0000021207, -0.0000021253,0.0000021281,0.0000021302,0.0000021311,0.0000021296, -0.0000021258,0.0000021196,0.0000021114,0.0000021033,0.0000020954, -0.0000020867,0.0000020773,0.0000020681,0.0000020592,0.0000020499, -0.0000020398,0.0000020295,0.0000020199,0.0000020111,0.0000020029, -0.0000019952,0.0000019884,0.0000019833,0.0000019799,0.0000019772, -0.0000019749,0.0000019736,0.0000019744,0.0000019775,0.0000019822, -0.0000019881,0.0000019946,0.0000020007,0.0000020062,0.0000020120, -0.0000020172,0.0000020197,0.0000020189,0.0000020156,0.0000020118, -0.0000020101,0.0000020102,0.0000020099,0.0000020075,0.0000020038, -0.0000019998,0.0000019957,0.0000019900,0.0000019824,0.0000019766, -0.0000019743,0.0000019731,0.0000019713,0.0000019685,0.0000019663, -0.0000019665,0.0000019711,0.0000019811,0.0000019918,0.0000019983, -0.0000020022,0.0000020072,0.0000020132,0.0000020190,0.0000020242, -0.0000020300,0.0000020381,0.0000020485,0.0000020591,0.0000020674, -0.0000020722,0.0000020738,0.0000020741,0.0000020738,0.0000020722, -0.0000020675,0.0000020592,0.0000020495,0.0000020414,0.0000020381, -0.0000020401,0.0000020443,0.0000020488,0.0000020506,0.0000020517, -0.0000020523,0.0000020526,0.0000020543,0.0000020560,0.0000020560, -0.0000020558,0.0000020545,0.0000020544,0.0000020551,0.0000020558, -0.0000020577,0.0000020616,0.0000020679,0.0000020762,0.0000020861, -0.0000020981,0.0000021130,0.0000021309,0.0000021507,0.0000021700, -0.0000021861,0.0000021975,0.0000022035,0.0000022054,0.0000022051, -0.0000022042,0.0000022028,0.0000022019,0.0000022017,0.0000022024, -0.0000022042,0.0000022063,0.0000022080,0.0000022091,0.0000022095, -0.0000022092,0.0000022084,0.0000022077,0.0000022063,0.0000022058, -0.0000022044,0.0000022037,0.0000022030,0.0000022022,0.0000022013, -0.0000022004,0.0000021996,0.0000021987,0.0000021984,0.0000021978, -0.0000021977,0.0000021981,0.0000021990,0.0000022002,0.0000022011, -0.0000022015,0.0000022015,0.0000022012,0.0000022001,0.0000021983, -0.0000021963,0.0000021945,0.0000021926,0.0000021896,0.0000021850, -0.0000021774,0.0000021670,0.0000021558,0.0000021464,0.0000021409, -0.0000021374,0.0000021331,0.0000021280,0.0000021237,0.0000021207, -0.0000021182,0.0000021141,0.0000021091,0.0000021038,0.0000020988, -0.0000020944,0.0000020901,0.0000020858,0.0000020823,0.0000020803, -0.0000020798,0.0000020800,0.0000020801,0.0000020803,0.0000020811, -0.0000020818,0.0000020819,0.0000020815,0.0000020800,0.0000020784, -0.0000020791,0.0000020804,0.0000020804,0.0000020808,0.0000020851, -0.0000020917,0.0000020987,0.0000021064,0.0000021113,0.0000021132, -0.0000021152,0.0000021207,0.0000021261,0.0000021264,0.0000021232, -0.0000021195,0.0000021154,0.0000021104,0.0000021095,0.0000021124, -0.0000021158,0.0000021198,0.0000021230,0.0000021225,0.0000021201, -0.0000021203,0.0000021262,0.0000021370,0.0000021489,0.0000021599, -0.0000021701,0.0000021793,0.0000021869,0.0000021925,0.0000021966, -0.0000021991,0.0000022001,0.0000022003,0.0000022001,0.0000021994, -0.0000021981,0.0000021948,0.0000021900,0.0000021832,0.0000021766, -0.0000021720,0.0000021700,0.0000021696,0.0000021689,0.0000021671, -0.0000021622,0.0000021546,0.0000021474,0.0000021445,0.0000021434, -0.0000021510,0.0000021633,0.0000021776,0.0000021909,0.0000021998, -0.0000022040,0.0000022073,0.0000022114,0.0000022174,0.0000022255, -0.0000022362,0.0000022476,0.0000022555,0.0000022640,0.0000022712, -0.0000022730,0.0000022752,0.0000022751,0.0000022759,0.0000022766, -0.0000022775,0.0000022795,0.0000022827,0.0000022869,0.0000022913, -0.0000022947,0.0000022964,0.0000022945,0.0000022875,0.0000022772, -0.0000022665,0.0000022554,0.0000022437,0.0000022354,0.0000022320, -0.0000022357,0.0000022425,0.0000022487,0.0000022533,0.0000022573, -0.0000022609,0.0000022640,0.0000022656,0.0000022648,0.0000022628, -0.0000022587,0.0000022528,0.0000022458,0.0000022389,0.0000022331, -0.0000022279,0.0000022231,0.0000022187,0.0000022153,0.0000022125, -0.0000022088,0.0000022013,0.0000021893,0.0000021762,0.0000021666, -0.0000021590,0.0000021491,0.0000021362,0.0000021243,0.0000021153, -0.0000021055,0.0000020927,0.0000020784,0.0000020660,0.0000020573, -0.0000020503,0.0000020448,0.0000020398,0.0000020356,0.0000020322, -0.0000020299,0.0000020282,0.0000020280,0.0000020299,0.0000020314, -0.0000020312,0.0000020290,0.0000020254,0.0000020217,0.0000020189, -0.0000020182,0.0000020182,0.0000020175,0.0000020158,0.0000020136, -0.0000020122,0.0000020126,0.0000020148,0.0000020183,0.0000020226, -0.0000020271,0.0000020313,0.0000020351,0.0000020380,0.0000020399, -0.0000020414,0.0000020428,0.0000020434,0.0000020427,0.0000020404, -0.0000020369,0.0000020313,0.0000020240,0.0000020168,0.0000020123, -0.0000020105,0.0000020132,0.0000020183,0.0000020266,0.0000020388, -0.0000020544,0.0000020695,0.0000020812,0.0000020868,0.0000020879, -0.0000020873,0.0000020878,0.0000020888,0.0000020885,0.0000020859, -0.0000020809,0.0000020745,0.0000020667,0.0000020575,0.0000020489, -0.0000020441,0.0000020440,0.0000020495,0.0000020599,0.0000020737, -0.0000020878,0.0000020996,0.0000021081,0.0000021136,0.0000021172, -0.0000021213,0.0000021271,0.0000021343,0.0000021420,0.0000021499, -0.0000021582,0.0000021682,0.0000021791,0.0000021883,0.0000021935, -0.0000021944,0.0000021936,0.0000021928,0.0000021928,0.0000021927, -0.0000021909,0.0000021874,0.0000021844,0.0000021819,0.0000021790, -0.0000021753,0.0000021713,0.0000021678,0.0000021656,0.0000021645, -0.0000021632,0.0000021623,0.0000021621,0.0000021624,0.0000021630, -0.0000021636,0.0000021640,0.0000021643,0.0000021644,0.0000021642, -0.0000021636,0.0000021629,0.0000021622,0.0000021607,0.0000021578, -0.0000021534,0.0000021481,0.0000021420,0.0000021358,0.0000021306, -0.0000021260,0.0000021208,0.0000021147,0.0000021084,0.0000021028, -0.0000020984,0.0000020952,0.0000020941,0.0000020946,0.0000020954, -0.0000020962,0.0000020966,0.0000020961,0.0000020952,0.0000020931, -0.0000020907,0.0000020883,0.0000020860,0.0000020842,0.0000020829, -0.0000020823,0.0000020824,0.0000020841,0.0000020871,0.0000020910, -0.0000020946,0.0000020970,0.0000020980,0.0000020975,0.0000020952, -0.0000020922,0.0000020893,0.0000020863,0.0000020836,0.0000020818, -0.0000020808,0.0000020798,0.0000020787,0.0000020765,0.0000020736, -0.0000020704,0.0000020675,0.0000020650,0.0000020636,0.0000020632, -0.0000020634,0.0000020637,0.0000020638,0.0000020634,0.0000020621, -0.0000020599,0.0000020575,0.0000020553,0.0000020535,0.0000020525, -0.0000020523,0.0000020530,0.0000020551,0.0000020578,0.0000020603, -0.0000020622,0.0000020638,0.0000020650,0.0000020656,0.0000020656, -0.0000020660,0.0000020674,0.0000020699,0.0000020725,0.0000020746, -0.0000020762,0.0000020774,0.0000020779,0.0000020782,0.0000020786, -0.0000020784,0.0000020774,0.0000020760,0.0000020749,0.0000020738, -0.0000020720,0.0000020694,0.0000020663,0.0000020629,0.0000020597, -0.0000020571,0.0000020554,0.0000020550,0.0000020552,0.0000020560, -0.0000020571,0.0000020583,0.0000020595,0.0000020608,0.0000020617, -0.0000020623,0.0000020625,0.0000020624,0.0000020617,0.0000020603, -0.0000020585,0.0000020561,0.0000020529,0.0000020489,0.0000020446, -0.0000020405,0.0000020367,0.0000020333,0.0000020305,0.0000020280, -0.0000020255,0.0000020227,0.0000020195,0.0000020163,0.0000020129, -0.0000020101,0.0000020073,0.0000020043,0.0000020013,0.0000019984, -0.0000019957,0.0000019932,0.0000019911,0.0000019896,0.0000019886, -0.0000019881,0.0000019879,0.0000019879,0.0000019880,0.0000019884, -0.0000019887,0.0000019890,0.0000019894,0.0000019902,0.0000019916, -0.0000019929,0.0000019938,0.0000019945,0.0000019947,0.0000019940, -0.0000019925,0.0000019908,0.0000019894,0.0000019883,0.0000019872, -0.0000019858,0.0000019838,0.0000019812,0.0000019783,0.0000019757, -0.0000019729,0.0000019698,0.0000019667,0.0000019642,0.0000019628, -0.0000019637,0.0000019669,0.0000019714,0.0000019767,0.0000019826, -0.0000019884,0.0000019938,0.0000019985,0.0000020024,0.0000020055, -0.0000020077,0.0000020091,0.0000020094,0.0000020087,0.0000020071, -0.0000020050,0.0000020026,0.0000020003,0.0000019983,0.0000019961, -0.0000019937,0.0000019914,0.0000019894,0.0000019876,0.0000019859, -0.0000019842,0.0000019828,0.0000019817,0.0000019805,0.0000019797, -0.0000019794,0.0000019793,0.0000019788,0.0000019780,0.0000019775, -0.0000019770,0.0000019759,0.0000019743,0.0000019728,0.0000019720, -0.0000019716,0.0000019718,0.0000019726,0.0000019744,0.0000019777, -0.0000019809,0.0000019817,0.0000019791,0.0000019741,0.0000019686, -0.0000019627,0.0000019643,0.0000019775,0.0000019947,0.0000020152, -0.0000020254,0.0000020235,0.0000020294,0.0000020421,0.0000020483, -0.0000020512,0.0000020507,0.0000020431,0.0000020331,0.0000020282, -0.0000020284,0.0000020301,0.0000020318,0.0000020328,0.0000020331, -0.0000020328,0.0000020321,0.0000020310,0.0000020294,0.0000020280, -0.0000020260,0.0000020232,0.0000020216,0.0000020236,0.0000020285, -0.0000020323,0.0000020332,0.0000020300,0.0000020227,0.0000020162, -0.0000020121,0.0000020109,0.0000020136,0.0000020206,0.0000020260, -0.0000020271,0.0000020264,0.0000020251,0.0000020240,0.0000020227, -0.0000020219,0.0000020228,0.0000020261,0.0000020306,0.0000020363, -0.0000020417,0.0000020433,0.0000020412,0.0000020367,0.0000020335, -0.0000020322,0.0000020323,0.0000020326,0.0000020320,0.0000020308, -0.0000020295,0.0000020285,0.0000020277,0.0000020269,0.0000020266, -0.0000020262,0.0000020253,0.0000020243,0.0000020235,0.0000020232, -0.0000020227,0.0000020217,0.0000020205,0.0000020196,0.0000020187, -0.0000020170,0.0000020147,0.0000020124,0.0000020101,0.0000020075, -0.0000020049,0.0000020023,0.0000019997,0.0000019976,0.0000019961, -0.0000019949,0.0000019941,0.0000019934,0.0000019926,0.0000019919, -0.0000019914,0.0000019915,0.0000019922,0.0000019932,0.0000019945, -0.0000019960,0.0000019979,0.0000020002,0.0000020024,0.0000020045, -0.0000020063,0.0000020076,0.0000020084,0.0000020088,0.0000020090, -0.0000020087,0.0000020080,0.0000020070,0.0000020059,0.0000020050, -0.0000020042,0.0000020035,0.0000020026,0.0000020016,0.0000020007, -0.0000019998,0.0000019986,0.0000019973,0.0000019957,0.0000019944, -0.0000019938,0.0000019943,0.0000019947,0.0000019948,0.0000019977, -0.0000020012,0.0000020051,0.0000020088,0.0000020124,0.0000020162, -0.0000020193,0.0000020215,0.0000020228,0.0000020233,0.0000020228, -0.0000020214,0.0000020197,0.0000020184,0.0000020166,0.0000020150, -0.0000020137,0.0000020127,0.0000020117,0.0000020105,0.0000020089, -0.0000020070,0.0000020049,0.0000020028,0.0000020001,0.0000019963, -0.0000019910,0.0000019853,0.0000019807,0.0000019782,0.0000019777, -0.0000019774,0.0000019758,0.0000019725,0.0000019682,0.0000019647, -0.0000019626,0.0000019622,0.0000019637,0.0000019661,0.0000019688, -0.0000019722,0.0000019756,0.0000019778,0.0000019771,0.0000019750, -0.0000019741,0.0000019747,0.0000019763,0.0000019784,0.0000019807, -0.0000019770,0.0000019798,0.0000019826,0.0000019858,0.0000019895, -0.0000019931,0.0000019961,0.0000019991,0.0000020031,0.0000020084, -0.0000020142,0.0000020196,0.0000020250,0.0000020309,0.0000020371, -0.0000020438,0.0000020509,0.0000020580,0.0000020647,0.0000020714, -0.0000020783,0.0000020851,0.0000020914,0.0000020970,0.0000021018, -0.0000021058,0.0000021093,0.0000021127,0.0000021158,0.0000021189, -0.0000021221,0.0000021247,0.0000021262,0.0000021267,0.0000021265, -0.0000021256,0.0000021241,0.0000021218,0.0000021186,0.0000021147, -0.0000021104,0.0000021064,0.0000021035,0.0000021019,0.0000021008, -0.0000021009,0.0000021019,0.0000021037,0.0000021060,0.0000021083, -0.0000021100,0.0000021109,0.0000021110,0.0000021101,0.0000021082, -0.0000021052,0.0000021019,0.0000020986,0.0000020948,0.0000020905, -0.0000020862,0.0000020819,0.0000020778,0.0000020739,0.0000020697, -0.0000020659,0.0000020630,0.0000020613,0.0000020601,0.0000020579, -0.0000020544,0.0000020514,0.0000020506,0.0000020520,0.0000020555, -0.0000020593,0.0000020626,0.0000020666,0.0000020712,0.0000020759, -0.0000020806,0.0000020851,0.0000020887,0.0000020913,0.0000020925, -0.0000020927,0.0000020921,0.0000020908,0.0000020886,0.0000020856, -0.0000020825,0.0000020805,0.0000020805,0.0000020823,0.0000020865, -0.0000020920,0.0000020974,0.0000021020,0.0000021060,0.0000021100, -0.0000021147,0.0000021198,0.0000021244,0.0000021275,0.0000021296, -0.0000021312,0.0000021326,0.0000021333,0.0000021336,0.0000021337, -0.0000021335,0.0000021331,0.0000021321,0.0000021307,0.0000021291, -0.0000021274,0.0000021255,0.0000021235,0.0000021217,0.0000021200, -0.0000021184,0.0000021167,0.0000021150,0.0000021133,0.0000021117, -0.0000021099,0.0000021081,0.0000021061,0.0000021040,0.0000021016, -0.0000020991,0.0000020969,0.0000020950,0.0000020927,0.0000020898, -0.0000020863,0.0000020830,0.0000020802,0.0000020777,0.0000020760, -0.0000020757,0.0000020769,0.0000020789,0.0000020813,0.0000020838, -0.0000020860,0.0000020881,0.0000020904,0.0000020932,0.0000020956, -0.0000020973,0.0000020988,0.0000021006,0.0000021028,0.0000021057, -0.0000021087,0.0000021111,0.0000021122,0.0000021125,0.0000021129, -0.0000021140,0.0000021147,0.0000021141,0.0000021120,0.0000021094, -0.0000021068,0.0000021044,0.0000021042,0.0000021079,0.0000021143, -0.0000021207,0.0000021273,0.0000021333,0.0000021371,0.0000021394, -0.0000021414,0.0000021435,0.0000021448,0.0000021445,0.0000021414, -0.0000021366,0.0000021319,0.0000021276,0.0000021236,0.0000021201, -0.0000021177,0.0000021170,0.0000021178,0.0000021190,0.0000021196, -0.0000021199,0.0000021199,0.0000021198,0.0000021195,0.0000021188, -0.0000021174,0.0000021161,0.0000021154,0.0000021152,0.0000021156, -0.0000021171,0.0000021205,0.0000021251,0.0000021292,0.0000021321, -0.0000021360,0.0000021416,0.0000021465,0.0000021492,0.0000021519, -0.0000021575,0.0000021655,0.0000021728,0.0000021782,0.0000021844, -0.0000021922,0.0000021993,0.0000022034,0.0000022044,0.0000022030, -0.0000021988,0.0000021922,0.0000021848,0.0000021780,0.0000021724, -0.0000021678,0.0000021640,0.0000021609,0.0000021586,0.0000021568, -0.0000021555,0.0000021549,0.0000021550,0.0000021553,0.0000021558, -0.0000021561,0.0000021561,0.0000021559,0.0000021556,0.0000021554, -0.0000021555,0.0000021560,0.0000021567,0.0000021576,0.0000021586, -0.0000021597,0.0000021609,0.0000021623,0.0000021638,0.0000021653, -0.0000021667,0.0000021676,0.0000021680,0.0000021678,0.0000021674, -0.0000021668,0.0000021661,0.0000021652,0.0000021644,0.0000021638, -0.0000021631,0.0000021624,0.0000021614,0.0000021605,0.0000021597, -0.0000021592,0.0000021590,0.0000021590,0.0000021591,0.0000021590, -0.0000021585,0.0000021565,0.0000021547,0.0000021498,0.0000021448, -0.0000021401,0.0000021358,0.0000021318,0.0000021282,0.0000021253, -0.0000021232,0.0000021228,0.0000021228,0.0000021231,0.0000021241, -0.0000021256,0.0000021273,0.0000021296,0.0000021322,0.0000021345, -0.0000021352,0.0000021344,0.0000021322,0.0000021283,0.0000021240, -0.0000021202,0.0000021168,0.0000021133,0.0000021096,0.0000021057, -0.0000021027,0.0000020998,0.0000020969,0.0000020956,0.0000020960, -0.0000020974,0.0000020988,0.0000020998,0.0000020999,0.0000020999, -0.0000021001,0.0000021016,0.0000021066,0.0000021146,0.0000021225, -0.0000021287,0.0000021329,0.0000021352,0.0000021364,0.0000021364, -0.0000021356,0.0000021338,0.0000021309,0.0000021273,0.0000021237, -0.0000021193,0.0000021145,0.0000021095,0.0000021053,0.0000021029, -0.0000021017,0.0000021009,0.0000021005,0.0000021008,0.0000021016, -0.0000021032,0.0000021053,0.0000021071,0.0000021081,0.0000021081, -0.0000021075,0.0000021061,0.0000021040,0.0000021005,0.0000020956, -0.0000020894,0.0000020840,0.0000020761,0.0000020675,0.0000020627, -0.0000020571,0.0000020481,0.0000020376,0.0000020377,0.0000020436, -0.0000020445,0.0000020482,0.0000020544,0.0000020586,0.0000020589, -0.0000020582,0.0000020603,0.0000020660,0.0000020718,0.0000020770, -0.0000020802,0.0000020819,0.0000020838,0.0000020922,0.0000021059, -0.0000021153,0.0000021208,0.0000021372,0.0000021493,0.0000021496, -0.0000021532,0.0000021645,0.0000021643,0.0000021602,0.0000021644, -0.0000021761,0.0000021803,0.0000021755,0.0000021750,0.0000021922, -0.0000022032,0.0000021981,0.0000021824,0.0000021747,0.0000021761, -0.0000021769,0.0000021858,0.0000021950,0.0000021945,0.0000022032, -0.0000022130,0.0000022136,0.0000022222,0.0000022367,0.0000022465, -0.0000022515,0.0000022553,0.0000022578,0.0000022584,0.0000022573, -0.0000022543,0.0000022506,0.0000022484,0.0000022490,0.0000022514, -0.0000022540,0.0000022546,0.0000022544,0.0000022554,0.0000022572, -0.0000022579,0.0000022551,0.0000022481,0.0000022399,0.0000022346, -0.0000022330,0.0000022333,0.0000022326,0.0000022292,0.0000022245, -0.0000022197,0.0000022159,0.0000022144,0.0000022132,0.0000022107, -0.0000022062,0.0000022008,0.0000021940,0.0000021873,0.0000021803, -0.0000021739,0.0000021679,0.0000021637,0.0000021594,0.0000021534, -0.0000021464,0.0000021404,0.0000021380,0.0000021371,0.0000021364, -0.0000021386,0.0000021466,0.0000021619,0.0000021773,0.0000021879, -0.0000021934,0.0000021957,0.0000021977,0.0000022026,0.0000022066, -0.0000022048,0.0000021975,0.0000021909,0.0000021873,0.0000021848, -0.0000021810,0.0000021757,0.0000021700,0.0000021659,0.0000021654, -0.0000021659,0.0000021658,0.0000021647,0.0000021629,0.0000021615, -0.0000021633,0.0000021704,0.0000021800,0.0000021858,0.0000021877, -0.0000021902,0.0000021938,0.0000021974,0.0000022003,0.0000022041, -0.0000022078,0.0000022115,0.0000022147,0.0000022174,0.0000022192, -0.0000022205,0.0000022216,0.0000022214,0.0000022201,0.0000022180, -0.0000022161,0.0000022155,0.0000022159,0.0000022185,0.0000022232, -0.0000022278,0.0000022313,0.0000022342,0.0000022375,0.0000022402, -0.0000022424,0.0000022457,0.0000022500,0.0000022537,0.0000022559, -0.0000022579,0.0000022583,0.0000022570,0.0000022545,0.0000022533, -0.0000022506,0.0000022465,0.0000022427,0.0000022400,0.0000022378, -0.0000022367,0.0000022356,0.0000022328,0.0000022301,0.0000022281, -0.0000022275,0.0000022283,0.0000022299,0.0000022317,0.0000022329, -0.0000022337,0.0000022356,0.0000022393,0.0000022430,0.0000022448, -0.0000022453,0.0000022465,0.0000022491,0.0000022519,0.0000022528, -0.0000022509,0.0000022460,0.0000022402,0.0000022350,0.0000022310, -0.0000022288,0.0000022272,0.0000022258,0.0000022244,0.0000022211, -0.0000022150,0.0000022067,0.0000021980,0.0000021907,0.0000021844, -0.0000021783,0.0000021730,0.0000021689,0.0000021654,0.0000021630, -0.0000021626,0.0000021646,0.0000021678,0.0000021718,0.0000021763, -0.0000021812,0.0000021863,0.0000021903,0.0000021936,0.0000021964, -0.0000021989,0.0000022012,0.0000022027,0.0000022032,0.0000022033, -0.0000022031,0.0000022028,0.0000022022,0.0000022012,0.0000021998, -0.0000021982,0.0000021957,0.0000021923,0.0000021886,0.0000021844, -0.0000021797,0.0000021751,0.0000021712,0.0000021682,0.0000021652, -0.0000021616,0.0000021573,0.0000021527,0.0000021487,0.0000021458, -0.0000021450,0.0000021452,0.0000021471,0.0000021505,0.0000021543, -0.0000021577,0.0000021603,0.0000021620,0.0000021623,0.0000021616, -0.0000021607,0.0000021607,0.0000021626,0.0000021654,0.0000021674, -0.0000021682,0.0000021681,0.0000021675,0.0000021665,0.0000021667, -0.0000021680,0.0000021704,0.0000021730,0.0000021761,0.0000021792, -0.0000021816,0.0000021829,0.0000021831,0.0000021827,0.0000021819, -0.0000021804,0.0000021786,0.0000021770,0.0000021760,0.0000021743, -0.0000021723,0.0000021693,0.0000021662,0.0000021627,0.0000021593, -0.0000021563,0.0000021536,0.0000021508,0.0000021479,0.0000021453, -0.0000021432,0.0000021414,0.0000021396,0.0000021376,0.0000021358, -0.0000021350,0.0000021349,0.0000021349,0.0000021349,0.0000021353, -0.0000021363,0.0000021377,0.0000021389,0.0000021399,0.0000021403, -0.0000021400,0.0000021388,0.0000021374,0.0000021359,0.0000021343, -0.0000021326,0.0000021306,0.0000021287,0.0000021268,0.0000021247, -0.0000021221,0.0000021193,0.0000021172,0.0000021161,0.0000021153, -0.0000021138,0.0000021115,0.0000021085,0.0000021050,0.0000021013, -0.0000020975,0.0000020943,0.0000020923,0.0000020912,0.0000020911, -0.0000020911,0.0000020914,0.0000020915,0.0000020916,0.0000020913, -0.0000020911,0.0000020912,0.0000020921,0.0000020937,0.0000020965, -0.0000021007,0.0000021055,0.0000021107,0.0000021161,0.0000021204, -0.0000021234,0.0000021252,0.0000021264,0.0000021271,0.0000021275, -0.0000021278,0.0000021279,0.0000021281,0.0000021286,0.0000021295, -0.0000021309,0.0000021323,0.0000021336,0.0000021347,0.0000021353, -0.0000021345,0.0000021330,0.0000021302,0.0000021262,0.0000021214, -0.0000021157,0.0000021100,0.0000021051,0.0000021005,0.0000020954, -0.0000020898,0.0000020837,0.0000020773,0.0000020712,0.0000020665, -0.0000020638,0.0000020623,0.0000020635,0.0000020693,0.0000020747, -0.0000020814,0.0000020886,0.0000020948,0.0000021009,0.0000021066, -0.0000021110,0.0000021134,0.0000021153,0.0000021160,0.0000021157, -0.0000021145,0.0000021142,0.0000021149,0.0000021164,0.0000021179, -0.0000021200,0.0000021231,0.0000021260,0.0000021289,0.0000021308, -0.0000021316,0.0000021316,0.0000021308,0.0000021290,0.0000021263, -0.0000021228,0.0000021188,0.0000021147,0.0000021106,0.0000021063, -0.0000021019,0.0000020980,0.0000020942,0.0000020900,0.0000020876, -0.0000020859,0.0000020841,0.0000020840,0.0000020854,0.0000020851, -0.0000020856,0.0000020872,0.0000020880,0.0000020898,0.0000020920, -0.0000020941,0.0000020967,0.0000020993,0.0000021023,0.0000021050, -0.0000021069,0.0000021079,0.0000021088,0.0000021097,0.0000021103, -0.0000021111,0.0000021120,0.0000021129,0.0000021138,0.0000021143, -0.0000021148,0.0000021152,0.0000021154,0.0000021152,0.0000021147, -0.0000021138,0.0000021131,0.0000021130,0.0000021133,0.0000021140, -0.0000021161,0.0000021197,0.0000021227,0.0000021248,0.0000021256, -0.0000021249,0.0000021226,0.0000021183,0.0000021118,0.0000021038, -0.0000020952,0.0000020874,0.0000020802,0.0000020728,0.0000020653, -0.0000020580,0.0000020499,0.0000020410,0.0000020311,0.0000020207, -0.0000020109,0.0000020025,0.0000019955,0.0000019891,0.0000019840, -0.0000019803,0.0000019778,0.0000019757,0.0000019734,0.0000019713, -0.0000019703,0.0000019713,0.0000019744,0.0000019792,0.0000019852, -0.0000019912,0.0000019967,0.0000020025,0.0000020087,0.0000020133, -0.0000020144,0.0000020127,0.0000020085,0.0000020048,0.0000020042, -0.0000020044,0.0000020039,0.0000020013,0.0000019973,0.0000019932, -0.0000019885,0.0000019816,0.0000019753,0.0000019730,0.0000019726, -0.0000019716,0.0000019696,0.0000019665,0.0000019641,0.0000019640, -0.0000019681,0.0000019772,0.0000019871,0.0000019935,0.0000019972, -0.0000020010,0.0000020048,0.0000020078,0.0000020110,0.0000020164, -0.0000020252,0.0000020365,0.0000020482,0.0000020579,0.0000020642, -0.0000020677,0.0000020697,0.0000020711,0.0000020710,0.0000020679, -0.0000020615,0.0000020521,0.0000020428,0.0000020374,0.0000020370, -0.0000020405,0.0000020458,0.0000020505,0.0000020538,0.0000020563, -0.0000020584,0.0000020595,0.0000020595,0.0000020583,0.0000020550, -0.0000020516,0.0000020493,0.0000020470,0.0000020459,0.0000020467, -0.0000020503,0.0000020569,0.0000020649,0.0000020732,0.0000020814, -0.0000020905,0.0000021021,0.0000021175,0.0000021361,0.0000021564, -0.0000021748,0.0000021883,0.0000021960,0.0000021989,0.0000021987, -0.0000021973,0.0000021954,0.0000021935,0.0000021926,0.0000021929, -0.0000021941,0.0000021957,0.0000021972,0.0000021983,0.0000021989, -0.0000021993,0.0000021995,0.0000021994,0.0000021990,0.0000021985, -0.0000021980,0.0000021973,0.0000021963,0.0000021952,0.0000021940, -0.0000021924,0.0000021909,0.0000021896,0.0000021886,0.0000021879, -0.0000021877,0.0000021877,0.0000021877,0.0000021879,0.0000021881, -0.0000021880,0.0000021872,0.0000021857,0.0000021834,0.0000021801, -0.0000021751,0.0000021679,0.0000021591,0.0000021496,0.0000021409, -0.0000021348,0.0000021316,0.0000021295,0.0000021265,0.0000021225, -0.0000021190,0.0000021170,0.0000021149,0.0000021115,0.0000021068, -0.0000021020,0.0000020983,0.0000020948,0.0000020908,0.0000020861, -0.0000020821,0.0000020795,0.0000020783,0.0000020783,0.0000020789, -0.0000020794,0.0000020802,0.0000020809,0.0000020820,0.0000020827, -0.0000020831,0.0000020820,0.0000020787,0.0000020746,0.0000020734, -0.0000020748,0.0000020756,0.0000020758,0.0000020794,0.0000020864, -0.0000020945,0.0000021036,0.0000021101,0.0000021134,0.0000021161, -0.0000021214,0.0000021270,0.0000021280,0.0000021253,0.0000021220, -0.0000021179,0.0000021127,0.0000021109,0.0000021133,0.0000021156, -0.0000021188,0.0000021214,0.0000021205,0.0000021175,0.0000021167, -0.0000021212,0.0000021312,0.0000021429,0.0000021537,0.0000021633, -0.0000021720,0.0000021795,0.0000021851,0.0000021890,0.0000021913, -0.0000021925,0.0000021930,0.0000021931,0.0000021929,0.0000021925, -0.0000021911,0.0000021876,0.0000021818,0.0000021750,0.0000021690, -0.0000021645,0.0000021627,0.0000021631,0.0000021639,0.0000021626, -0.0000021604,0.0000021550,0.0000021485,0.0000021422,0.0000021396, -0.0000021423,0.0000021502,0.0000021631,0.0000021778,0.0000021902, -0.0000021995,0.0000022045,0.0000022049,0.0000022058,0.0000022091, -0.0000022145,0.0000022213,0.0000022305,0.0000022421,0.0000022532, -0.0000022612,0.0000022690,0.0000022762,0.0000022815,0.0000022838, -0.0000022861,0.0000022881,0.0000022904,0.0000022925,0.0000022952, -0.0000022963,0.0000022952,0.0000022899,0.0000022798,0.0000022686, -0.0000022579,0.0000022464,0.0000022347,0.0000022269,0.0000022248, -0.0000022292,0.0000022366,0.0000022433,0.0000022482,0.0000022519, -0.0000022556,0.0000022591,0.0000022614,0.0000022617,0.0000022599, -0.0000022570,0.0000022515,0.0000022451,0.0000022388,0.0000022333, -0.0000022283,0.0000022241,0.0000022206,0.0000022179,0.0000022159, -0.0000022128,0.0000022054,0.0000021927,0.0000021792,0.0000021691, -0.0000021607,0.0000021491,0.0000021349,0.0000021221,0.0000021111, -0.0000020986,0.0000020832,0.0000020679,0.0000020559,0.0000020480, -0.0000020415,0.0000020362,0.0000020317,0.0000020280,0.0000020258, -0.0000020239,0.0000020225,0.0000020230,0.0000020254,0.0000020274, -0.0000020274,0.0000020252,0.0000020217,0.0000020174,0.0000020143, -0.0000020128,0.0000020131,0.0000020131,0.0000020120,0.0000020103, -0.0000020087,0.0000020082,0.0000020091,0.0000020115,0.0000020150, -0.0000020189,0.0000020231,0.0000020271,0.0000020304,0.0000020329, -0.0000020355,0.0000020374,0.0000020382,0.0000020383,0.0000020372, -0.0000020351,0.0000020307,0.0000020242,0.0000020170,0.0000020112, -0.0000020099,0.0000020106,0.0000020136,0.0000020203,0.0000020310, -0.0000020454,0.0000020615,0.0000020755,0.0000020838,0.0000020865, -0.0000020856,0.0000020855,0.0000020865,0.0000020869,0.0000020852, -0.0000020811,0.0000020753,0.0000020679,0.0000020595,0.0000020511, -0.0000020453,0.0000020451,0.0000020487,0.0000020577,0.0000020702, -0.0000020829,0.0000020946,0.0000021038,0.0000021101,0.0000021147, -0.0000021191,0.0000021243,0.0000021308,0.0000021384,0.0000021460, -0.0000021536,0.0000021621,0.0000021717,0.0000021807,0.0000021867, -0.0000021891,0.0000021886,0.0000021868,0.0000021854,0.0000021841, -0.0000021825,0.0000021812,0.0000021802,0.0000021788,0.0000021764, -0.0000021738,0.0000021707,0.0000021680,0.0000021659,0.0000021640, -0.0000021627,0.0000021620,0.0000021620,0.0000021622,0.0000021624, -0.0000021626,0.0000021629,0.0000021627,0.0000021625,0.0000021620, -0.0000021614,0.0000021611,0.0000021605,0.0000021583,0.0000021547, -0.0000021499,0.0000021443,0.0000021384,0.0000021331,0.0000021279, -0.0000021223,0.0000021161,0.0000021097,0.0000021038,0.0000020991, -0.0000020953,0.0000020935,0.0000020939,0.0000020953,0.0000020967, -0.0000020976,0.0000020977,0.0000020966,0.0000020943,0.0000020907, -0.0000020872,0.0000020840,0.0000020818,0.0000020807,0.0000020805, -0.0000020807,0.0000020815,0.0000020833,0.0000020865,0.0000020906, -0.0000020942,0.0000020968,0.0000020977,0.0000020970,0.0000020946, -0.0000020917,0.0000020884,0.0000020849,0.0000020822,0.0000020804, -0.0000020791,0.0000020784,0.0000020772,0.0000020753,0.0000020727, -0.0000020698,0.0000020667,0.0000020638,0.0000020616,0.0000020602, -0.0000020597,0.0000020598,0.0000020600,0.0000020597,0.0000020584, -0.0000020560,0.0000020535,0.0000020511,0.0000020490,0.0000020475, -0.0000020469,0.0000020474,0.0000020491,0.0000020517,0.0000020542, -0.0000020565,0.0000020587,0.0000020607,0.0000020619,0.0000020629, -0.0000020640,0.0000020656,0.0000020680,0.0000020707,0.0000020730, -0.0000020747,0.0000020755,0.0000020756,0.0000020759,0.0000020759, -0.0000020749,0.0000020730,0.0000020708,0.0000020689,0.0000020670, -0.0000020650,0.0000020631,0.0000020609,0.0000020578,0.0000020544, -0.0000020515,0.0000020500,0.0000020494,0.0000020494,0.0000020496, -0.0000020497,0.0000020503,0.0000020513,0.0000020524,0.0000020532, -0.0000020535,0.0000020533,0.0000020528,0.0000020518,0.0000020503, -0.0000020481,0.0000020451,0.0000020414,0.0000020371,0.0000020325, -0.0000020283,0.0000020248,0.0000020223,0.0000020206,0.0000020193, -0.0000020177,0.0000020156,0.0000020129,0.0000020097,0.0000020064, -0.0000020034,0.0000020002,0.0000019968,0.0000019932,0.0000019896, -0.0000019864,0.0000019838,0.0000019821,0.0000019812,0.0000019810, -0.0000019813,0.0000019820,0.0000019829,0.0000019840,0.0000019853, -0.0000019861,0.0000019864,0.0000019866,0.0000019871,0.0000019881, -0.0000019891,0.0000019897,0.0000019901,0.0000019900,0.0000019892, -0.0000019878,0.0000019861,0.0000019847,0.0000019837,0.0000019832, -0.0000019822,0.0000019807,0.0000019787,0.0000019766,0.0000019743, -0.0000019719,0.0000019691,0.0000019660,0.0000019632,0.0000019611, -0.0000019603,0.0000019607,0.0000019624,0.0000019649,0.0000019683, -0.0000019724,0.0000019768,0.0000019811,0.0000019852,0.0000019884, -0.0000019907,0.0000019920,0.0000019923,0.0000019915,0.0000019897, -0.0000019876,0.0000019858,0.0000019847,0.0000019842,0.0000019840, -0.0000019838,0.0000019833,0.0000019827,0.0000019817,0.0000019805, -0.0000019793,0.0000019783,0.0000019773,0.0000019764,0.0000019755, -0.0000019752,0.0000019751,0.0000019747,0.0000019742,0.0000019737, -0.0000019734,0.0000019728,0.0000019717,0.0000019709,0.0000019704, -0.0000019701,0.0000019703,0.0000019714,0.0000019732,0.0000019760, -0.0000019793,0.0000019812,0.0000019802,0.0000019759,0.0000019704, -0.0000019641,0.0000019628,0.0000019726,0.0000019884,0.0000020076, -0.0000020233,0.0000020237,0.0000020258,0.0000020384,0.0000020470, -0.0000020505,0.0000020512,0.0000020471,0.0000020379,0.0000020309, -0.0000020296,0.0000020310,0.0000020327,0.0000020339,0.0000020344, -0.0000020346,0.0000020345,0.0000020340,0.0000020326,0.0000020306, -0.0000020286,0.0000020255,0.0000020222,0.0000020219,0.0000020255, -0.0000020298,0.0000020324,0.0000020309,0.0000020242,0.0000020168, -0.0000020126,0.0000020111,0.0000020123,0.0000020174,0.0000020226, -0.0000020244,0.0000020246,0.0000020242,0.0000020232,0.0000020216, -0.0000020208,0.0000020224,0.0000020263,0.0000020313,0.0000020370, -0.0000020418,0.0000020427,0.0000020400,0.0000020353,0.0000020326, -0.0000020321,0.0000020326,0.0000020334,0.0000020333,0.0000020321, -0.0000020306,0.0000020295,0.0000020286,0.0000020278,0.0000020274, -0.0000020270,0.0000020267,0.0000020266,0.0000020264,0.0000020263, -0.0000020267,0.0000020271,0.0000020273,0.0000020271,0.0000020267, -0.0000020256,0.0000020237,0.0000020213,0.0000020186,0.0000020158, -0.0000020128,0.0000020101,0.0000020079,0.0000020064,0.0000020052, -0.0000020043,0.0000020038,0.0000020033,0.0000020027,0.0000020022, -0.0000020017,0.0000020014,0.0000020017,0.0000020024,0.0000020034, -0.0000020046,0.0000020063,0.0000020083,0.0000020105,0.0000020126, -0.0000020144,0.0000020156,0.0000020163,0.0000020165,0.0000020162, -0.0000020157,0.0000020148,0.0000020138,0.0000020128,0.0000020119, -0.0000020111,0.0000020104,0.0000020096,0.0000020092,0.0000020088, -0.0000020081,0.0000020072,0.0000020060,0.0000020045,0.0000020028, -0.0000020009,0.0000019987,0.0000019965,0.0000019946,0.0000019931, -0.0000019924,0.0000019932,0.0000019944,0.0000019949,0.0000019984, -0.0000020026,0.0000020070,0.0000020110,0.0000020143,0.0000020168, -0.0000020183,0.0000020191,0.0000020191,0.0000020185,0.0000020170, -0.0000020156,0.0000020147,0.0000020136,0.0000020124,0.0000020112, -0.0000020096,0.0000020077,0.0000020051,0.0000020022,0.0000019994, -0.0000019961,0.0000019918,0.0000019862,0.0000019802,0.0000019761, -0.0000019745,0.0000019745,0.0000019747,0.0000019735,0.0000019700, -0.0000019649,0.0000019604,0.0000019570,0.0000019557,0.0000019562, -0.0000019577,0.0000019599,0.0000019634,0.0000019669,0.0000019688, -0.0000019688,0.0000019681,0.0000019687,0.0000019709,0.0000019739, -0.0000019695,0.0000019727,0.0000019755,0.0000019778,0.0000019801, -0.0000019826,0.0000019849,0.0000019870,0.0000019902,0.0000019952, -0.0000020015,0.0000020084,0.0000020150,0.0000020213,0.0000020277, -0.0000020337,0.0000020395,0.0000020448,0.0000020495,0.0000020540, -0.0000020586,0.0000020636,0.0000020688,0.0000020742,0.0000020796, -0.0000020845,0.0000020892,0.0000020940,0.0000020987,0.0000021034, -0.0000021081,0.0000021125,0.0000021160,0.0000021184,0.0000021198, -0.0000021205,0.0000021205,0.0000021195,0.0000021174,0.0000021143, -0.0000021105,0.0000021066,0.0000021033,0.0000021010,0.0000020994, -0.0000020986,0.0000020987,0.0000020994,0.0000021009,0.0000021028, -0.0000021044,0.0000021050,0.0000021045,0.0000021031,0.0000021008, -0.0000020975,0.0000020939,0.0000020903,0.0000020871,0.0000020837, -0.0000020801,0.0000020762,0.0000020726,0.0000020692,0.0000020659, -0.0000020624,0.0000020589,0.0000020562,0.0000020547,0.0000020535, -0.0000020509,0.0000020478,0.0000020461,0.0000020465,0.0000020492, -0.0000020528,0.0000020562,0.0000020598,0.0000020637,0.0000020674, -0.0000020714,0.0000020761,0.0000020807,0.0000020844,0.0000020875, -0.0000020900,0.0000020914,0.0000020915,0.0000020904,0.0000020884, -0.0000020856,0.0000020827,0.0000020805,0.0000020798,0.0000020804, -0.0000020834,0.0000020880,0.0000020928,0.0000020971,0.0000021009, -0.0000021045,0.0000021087,0.0000021137,0.0000021189,0.0000021234, -0.0000021271,0.0000021299,0.0000021318,0.0000021331,0.0000021340, -0.0000021345,0.0000021344,0.0000021340,0.0000021332,0.0000021318, -0.0000021299,0.0000021280,0.0000021260,0.0000021240,0.0000021219, -0.0000021198,0.0000021179,0.0000021163,0.0000021146,0.0000021129, -0.0000021110,0.0000021092,0.0000021074,0.0000021054,0.0000021032, -0.0000021013,0.0000020992,0.0000020973,0.0000020954,0.0000020932, -0.0000020906,0.0000020878,0.0000020851,0.0000020821,0.0000020794, -0.0000020775,0.0000020769,0.0000020772,0.0000020784,0.0000020799, -0.0000020819,0.0000020836,0.0000020853,0.0000020873,0.0000020899, -0.0000020924,0.0000020945,0.0000020967,0.0000020991,0.0000021015, -0.0000021046,0.0000021083,0.0000021112,0.0000021124,0.0000021122, -0.0000021115,0.0000021111,0.0000021115,0.0000021117,0.0000021106, -0.0000021080,0.0000021053,0.0000021026,0.0000021012,0.0000021028, -0.0000021093,0.0000021174,0.0000021248,0.0000021314,0.0000021364, -0.0000021395,0.0000021415,0.0000021434,0.0000021451,0.0000021459, -0.0000021446,0.0000021404,0.0000021348,0.0000021297,0.0000021260, -0.0000021230,0.0000021203,0.0000021186,0.0000021184,0.0000021189, -0.0000021191,0.0000021190,0.0000021189,0.0000021189,0.0000021190, -0.0000021184,0.0000021172,0.0000021159,0.0000021148,0.0000021142, -0.0000021140,0.0000021146,0.0000021164,0.0000021200,0.0000021249, -0.0000021294,0.0000021331,0.0000021374,0.0000021428,0.0000021475, -0.0000021504,0.0000021532,0.0000021592,0.0000021675,0.0000021752, -0.0000021810,0.0000021868,0.0000021934,0.0000021994,0.0000022032, -0.0000022041,0.0000022028,0.0000021997,0.0000021939,0.0000021871, -0.0000021801,0.0000021738,0.0000021681,0.0000021638,0.0000021604, -0.0000021581,0.0000021560,0.0000021543,0.0000021534,0.0000021530, -0.0000021531,0.0000021533,0.0000021532,0.0000021529,0.0000021527, -0.0000021528,0.0000021529,0.0000021536,0.0000021545,0.0000021555, -0.0000021564,0.0000021574,0.0000021585,0.0000021596,0.0000021608, -0.0000021621,0.0000021633,0.0000021643,0.0000021649,0.0000021649, -0.0000021647,0.0000021645,0.0000021640,0.0000021630,0.0000021620, -0.0000021610,0.0000021596,0.0000021577,0.0000021556,0.0000021531, -0.0000021507,0.0000021487,0.0000021473,0.0000021472,0.0000021484, -0.0000021505,0.0000021528,0.0000021548,0.0000021560,0.0000021547, -0.0000021535,0.0000021492,0.0000021449,0.0000021413,0.0000021377, -0.0000021339,0.0000021297,0.0000021262,0.0000021242,0.0000021234, -0.0000021236,0.0000021245,0.0000021256,0.0000021278,0.0000021310, -0.0000021342,0.0000021359,0.0000021358,0.0000021337,0.0000021291, -0.0000021238,0.0000021192,0.0000021158,0.0000021136,0.0000021110, -0.0000021076,0.0000021045,0.0000021017,0.0000020988,0.0000020967, -0.0000020960,0.0000020966,0.0000020977,0.0000020988,0.0000020998, -0.0000021008,0.0000021016,0.0000021032,0.0000021073,0.0000021130, -0.0000021192,0.0000021243,0.0000021285,0.0000021315,0.0000021333, -0.0000021342,0.0000021344,0.0000021341,0.0000021321,0.0000021292, -0.0000021253,0.0000021203,0.0000021151,0.0000021099,0.0000021055, -0.0000021029,0.0000021013,0.0000021003,0.0000021000,0.0000021001, -0.0000021004,0.0000021012,0.0000021030,0.0000021046,0.0000021053, -0.0000021056,0.0000021055,0.0000021046,0.0000021025,0.0000020989, -0.0000020938,0.0000020874,0.0000020813,0.0000020723,0.0000020624, -0.0000020568,0.0000020513,0.0000020430,0.0000020321,0.0000020324, -0.0000020387,0.0000020395,0.0000020427,0.0000020499,0.0000020557, -0.0000020571,0.0000020563,0.0000020579,0.0000020635,0.0000020698, -0.0000020751,0.0000020778,0.0000020793,0.0000020828,0.0000020933, -0.0000021081,0.0000021174,0.0000021229,0.0000021401,0.0000021508, -0.0000021496,0.0000021546,0.0000021639,0.0000021621,0.0000021591, -0.0000021649,0.0000021760,0.0000021776,0.0000021724,0.0000021769, -0.0000021961,0.0000022014,0.0000021922,0.0000021781,0.0000021748, -0.0000021760,0.0000021767,0.0000021883,0.0000021930,0.0000021919, -0.0000022024,0.0000022088,0.0000022092,0.0000022184,0.0000022337, -0.0000022430,0.0000022481,0.0000022521,0.0000022542,0.0000022542, -0.0000022528,0.0000022504,0.0000022475,0.0000022474,0.0000022503, -0.0000022537,0.0000022553,0.0000022548,0.0000022546,0.0000022553, -0.0000022551,0.0000022518,0.0000022444,0.0000022359,0.0000022294, -0.0000022278,0.0000022286,0.0000022291,0.0000022278,0.0000022247, -0.0000022204,0.0000022166,0.0000022128,0.0000022101,0.0000022073, -0.0000022028,0.0000021971,0.0000021911,0.0000021843,0.0000021761, -0.0000021672,0.0000021597,0.0000021537,0.0000021492,0.0000021453, -0.0000021400,0.0000021338,0.0000021289,0.0000021278,0.0000021272, -0.0000021263,0.0000021280,0.0000021348,0.0000021494,0.0000021682, -0.0000021830,0.0000021910,0.0000021934,0.0000021934,0.0000021933, -0.0000021951,0.0000021968,0.0000021938,0.0000021874,0.0000021826, -0.0000021806,0.0000021783,0.0000021745,0.0000021694,0.0000021646, -0.0000021620,0.0000021613,0.0000021615,0.0000021613,0.0000021603, -0.0000021581,0.0000021572,0.0000021605,0.0000021687,0.0000021765, -0.0000021788,0.0000021794,0.0000021826,0.0000021870,0.0000021901, -0.0000021933,0.0000021966,0.0000022000,0.0000022034,0.0000022067, -0.0000022093,0.0000022106,0.0000022117,0.0000022117,0.0000022107, -0.0000022085,0.0000022070,0.0000022064,0.0000022068,0.0000022100, -0.0000022151,0.0000022194,0.0000022231,0.0000022265,0.0000022303, -0.0000022332,0.0000022353,0.0000022377,0.0000022415,0.0000022456, -0.0000022491,0.0000022517,0.0000022536,0.0000022540,0.0000022529, -0.0000022528,0.0000022516,0.0000022482,0.0000022441,0.0000022409, -0.0000022388,0.0000022367,0.0000022346,0.0000022308,0.0000022269, -0.0000022243,0.0000022225,0.0000022223,0.0000022234,0.0000022255, -0.0000022273,0.0000022289,0.0000022308,0.0000022339,0.0000022375, -0.0000022400,0.0000022409,0.0000022410,0.0000022420,0.0000022440, -0.0000022464,0.0000022476,0.0000022468,0.0000022437,0.0000022399, -0.0000022362,0.0000022331,0.0000022306,0.0000022285,0.0000022271, -0.0000022263,0.0000022248,0.0000022212,0.0000022150,0.0000022070, -0.0000021981,0.0000021888,0.0000021805,0.0000021746,0.0000021697, -0.0000021653,0.0000021617,0.0000021595,0.0000021587,0.0000021598, -0.0000021621,0.0000021656,0.0000021709,0.0000021765,0.0000021812, -0.0000021850,0.0000021883,0.0000021910,0.0000021935,0.0000021953, -0.0000021962,0.0000021965,0.0000021968,0.0000021974,0.0000021981, -0.0000021985,0.0000021986,0.0000021978,0.0000021964,0.0000021942, -0.0000021914,0.0000021881,0.0000021849,0.0000021817,0.0000021791, -0.0000021770,0.0000021746,0.0000021715,0.0000021672,0.0000021619, -0.0000021560,0.0000021507,0.0000021471,0.0000021455,0.0000021461, -0.0000021483,0.0000021523,0.0000021568,0.0000021616,0.0000021658, -0.0000021688,0.0000021702,0.0000021700,0.0000021694,0.0000021692, -0.0000021704,0.0000021726,0.0000021753,0.0000021770,0.0000021765, -0.0000021743,0.0000021712,0.0000021688,0.0000021686,0.0000021677, -0.0000021695,0.0000021710,0.0000021731,0.0000021743,0.0000021757, -0.0000021760,0.0000021759,0.0000021754,0.0000021745,0.0000021737, -0.0000021733,0.0000021730,0.0000021718,0.0000021696,0.0000021675, -0.0000021647,0.0000021622,0.0000021597,0.0000021576,0.0000021552, -0.0000021528,0.0000021505,0.0000021486,0.0000021470,0.0000021454, -0.0000021435,0.0000021419,0.0000021411,0.0000021407,0.0000021407, -0.0000021408,0.0000021409,0.0000021412,0.0000021418,0.0000021427, -0.0000021433,0.0000021433,0.0000021425,0.0000021409,0.0000021391, -0.0000021374,0.0000021357,0.0000021341,0.0000021323,0.0000021301, -0.0000021278,0.0000021255,0.0000021232,0.0000021209,0.0000021191, -0.0000021181,0.0000021178,0.0000021173,0.0000021160,0.0000021136, -0.0000021102,0.0000021063,0.0000021023,0.0000020986,0.0000020950, -0.0000020923,0.0000020903,0.0000020896,0.0000020884,0.0000020881, -0.0000020872,0.0000020865,0.0000020858,0.0000020856,0.0000020859, -0.0000020867,0.0000020883,0.0000020912,0.0000020945,0.0000020982, -0.0000021020,0.0000021053,0.0000021080,0.0000021103,0.0000021124, -0.0000021146,0.0000021169,0.0000021191,0.0000021210,0.0000021228, -0.0000021245,0.0000021258,0.0000021269,0.0000021280,0.0000021293, -0.0000021306,0.0000021315,0.0000021320,0.0000021315,0.0000021300, -0.0000021276,0.0000021245,0.0000021217,0.0000021183,0.0000021156, -0.0000021135,0.0000021103,0.0000021062,0.0000021014,0.0000020958, -0.0000020902,0.0000020838,0.0000020770,0.0000020701,0.0000020644, -0.0000020615,0.0000020606,0.0000020606,0.0000020615,0.0000020663, -0.0000020730,0.0000020809,0.0000020901,0.0000020977,0.0000021035, -0.0000021085,0.0000021121,0.0000021131,0.0000021131,0.0000021122, -0.0000021110,0.0000021103,0.0000021089,0.0000021097,0.0000021096, -0.0000021097,0.0000021092,0.0000021083,0.0000021075,0.0000021062, -0.0000021044,0.0000021019,0.0000020991,0.0000020963,0.0000020941, -0.0000020931,0.0000020913,0.0000020886,0.0000020870,0.0000020863, -0.0000020843,0.0000020842,0.0000020851,0.0000020860,0.0000020878, -0.0000020897,0.0000020921,0.0000020948,0.0000020972,0.0000020988, -0.0000021010,0.0000021026,0.0000021041,0.0000021062,0.0000021067, -0.0000021075,0.0000021101,0.0000021116,0.0000021115,0.0000021113, -0.0000021114,0.0000021115,0.0000021117,0.0000021118,0.0000021121, -0.0000021124,0.0000021126,0.0000021129,0.0000021132,0.0000021131, -0.0000021125,0.0000021114,0.0000021099,0.0000021085,0.0000021080, -0.0000021078,0.0000021080,0.0000021089,0.0000021102,0.0000021115, -0.0000021116,0.0000021102,0.0000021072,0.0000021028,0.0000020973, -0.0000020905,0.0000020832,0.0000020759,0.0000020695,0.0000020636, -0.0000020578,0.0000020521,0.0000020458,0.0000020385,0.0000020301, -0.0000020210,0.0000020118,0.0000020031,0.0000019960,0.0000019908, -0.0000019862,0.0000019827,0.0000019799,0.0000019776,0.0000019756, -0.0000019734,0.0000019712,0.0000019696,0.0000019689,0.0000019700, -0.0000019729,0.0000019775,0.0000019829,0.0000019883,0.0000019939, -0.0000020003,0.0000020060,0.0000020090,0.0000020089,0.0000020055, -0.0000020003,0.0000019977,0.0000019979,0.0000019982,0.0000019969, -0.0000019938,0.0000019895,0.0000019853,0.0000019800,0.0000019738, -0.0000019708,0.0000019709,0.0000019707,0.0000019701,0.0000019681, -0.0000019644,0.0000019619,0.0000019618,0.0000019657,0.0000019736, -0.0000019824,0.0000019894,0.0000019944,0.0000019977,0.0000019992, -0.0000020000,0.0000020020,0.0000020067,0.0000020147,0.0000020252, -0.0000020366,0.0000020463,0.0000020536,0.0000020591,0.0000020635, -0.0000020669,0.0000020680,0.0000020657,0.0000020616,0.0000020543, -0.0000020451,0.0000020378,0.0000020349,0.0000020359,0.0000020405, -0.0000020468,0.0000020529,0.0000020589,0.0000020634,0.0000020663, -0.0000020667,0.0000020650,0.0000020611,0.0000020559,0.0000020502, -0.0000020449,0.0000020415,0.0000020387,0.0000020402,0.0000020453, -0.0000020525,0.0000020608,0.0000020685,0.0000020754,0.0000020822, -0.0000020909,0.0000021039,0.0000021219,0.0000021424,0.0000021617, -0.0000021764,0.0000021853,0.0000021896,0.0000021906,0.0000021896, -0.0000021876,0.0000021857,0.0000021844,0.0000021838,0.0000021839, -0.0000021844,0.0000021850,0.0000021856,0.0000021864,0.0000021867, -0.0000021867,0.0000021863,0.0000021858,0.0000021849,0.0000021839, -0.0000021825,0.0000021807,0.0000021786,0.0000021764,0.0000021743, -0.0000021725,0.0000021709,0.0000021695,0.0000021684,0.0000021674, -0.0000021662,0.0000021649,0.0000021633,0.0000021611,0.0000021582, -0.0000021540,0.0000021489,0.0000021429,0.0000021365,0.0000021306, -0.0000021257,0.0000021224,0.0000021203,0.0000021186,0.0000021165, -0.0000021140,0.0000021120,0.0000021107,0.0000021094,0.0000021066, -0.0000021027,0.0000020989,0.0000020962,0.0000020943,0.0000020918, -0.0000020877,0.0000020829,0.0000020793,0.0000020772,0.0000020760, -0.0000020751,0.0000020748,0.0000020753,0.0000020763,0.0000020778, -0.0000020794,0.0000020809,0.0000020817,0.0000020822,0.0000020815, -0.0000020779,0.0000020722,0.0000020687,0.0000020693,0.0000020708, -0.0000020711,0.0000020739,0.0000020814,0.0000020905,0.0000021008, -0.0000021086,0.0000021132,0.0000021165,0.0000021220,0.0000021282, -0.0000021289,0.0000021267,0.0000021242,0.0000021204,0.0000021152, -0.0000021132,0.0000021144,0.0000021156,0.0000021178,0.0000021193, -0.0000021179,0.0000021150,0.0000021140,0.0000021172,0.0000021255, -0.0000021363,0.0000021470,0.0000021563,0.0000021644,0.0000021716, -0.0000021771,0.0000021808,0.0000021830,0.0000021840,0.0000021842, -0.0000021841,0.0000021842,0.0000021844,0.0000021842,0.0000021825, -0.0000021786,0.0000021728,0.0000021665,0.0000021608,0.0000021566, -0.0000021547,0.0000021553,0.0000021570,0.0000021580,0.0000021562, -0.0000021541,0.0000021492,0.0000021435,0.0000021388,0.0000021368, -0.0000021405,0.0000021488,0.0000021611,0.0000021756,0.0000021886, -0.0000021967,0.0000022018,0.0000022032,0.0000022021,0.0000022031, -0.0000022049,0.0000022089,0.0000022160,0.0000022242,0.0000022332, -0.0000022441,0.0000022555,0.0000022654,0.0000022728,0.0000022799, -0.0000022851,0.0000022894,0.0000022927,0.0000022939,0.0000022929, -0.0000022878,0.0000022776,0.0000022671,0.0000022567,0.0000022471, -0.0000022360,0.0000022256,0.0000022181,0.0000022177,0.0000022231, -0.0000022312,0.0000022383,0.0000022430,0.0000022464,0.0000022501, -0.0000022536,0.0000022564,0.0000022576,0.0000022567,0.0000022538, -0.0000022492,0.0000022436,0.0000022377,0.0000022323,0.0000022280, -0.0000022250,0.0000022226,0.0000022208,0.0000022195,0.0000022167, -0.0000022089,0.0000021956,0.0000021817,0.0000021713,0.0000021616, -0.0000021483,0.0000021328,0.0000021189,0.0000021060,0.0000020907, -0.0000020735,0.0000020580,0.0000020469,0.0000020395,0.0000020336, -0.0000020287,0.0000020243,0.0000020215,0.0000020198,0.0000020180, -0.0000020168,0.0000020178,0.0000020206,0.0000020230,0.0000020234, -0.0000020214,0.0000020180,0.0000020136,0.0000020095,0.0000020078, -0.0000020078,0.0000020087,0.0000020089,0.0000020079,0.0000020063, -0.0000020047,0.0000020042,0.0000020053,0.0000020076,0.0000020110, -0.0000020152,0.0000020195,0.0000020230,0.0000020262,0.0000020293, -0.0000020320,0.0000020341,0.0000020346,0.0000020342,0.0000020322, -0.0000020296,0.0000020243,0.0000020177,0.0000020124,0.0000020099, -0.0000020092,0.0000020110,0.0000020157,0.0000020245,0.0000020374, -0.0000020533,0.0000020686,0.0000020797,0.0000020840,0.0000020841, -0.0000020831,0.0000020833,0.0000020838,0.0000020827,0.0000020801, -0.0000020753,0.0000020692,0.0000020616,0.0000020538,0.0000020484, -0.0000020464,0.0000020490,0.0000020562,0.0000020664,0.0000020780, -0.0000020891,0.0000020986,0.0000021060,0.0000021118,0.0000021165, -0.0000021213,0.0000021273,0.0000021345,0.0000021416,0.0000021484, -0.0000021551,0.0000021630,0.0000021712,0.0000021781,0.0000021820, -0.0000021827,0.0000021812,0.0000021788,0.0000021765,0.0000021751, -0.0000021746,0.0000021743,0.0000021741,0.0000021740,0.0000021725, -0.0000021711,0.0000021695,0.0000021677,0.0000021659,0.0000021648, -0.0000021643,0.0000021641,0.0000021641,0.0000021641,0.0000021638, -0.0000021634,0.0000021630,0.0000021623,0.0000021615,0.0000021611, -0.0000021606,0.0000021591,0.0000021564,0.0000021526,0.0000021478, -0.0000021427,0.0000021375,0.0000021321,0.0000021262,0.0000021201, -0.0000021138,0.0000021076,0.0000021024,0.0000020981,0.0000020953, -0.0000020948,0.0000020958,0.0000020973,0.0000020984,0.0000020989, -0.0000020983,0.0000020966,0.0000020933,0.0000020891,0.0000020852, -0.0000020822,0.0000020805,0.0000020803,0.0000020806,0.0000020809, -0.0000020813,0.0000020827,0.0000020859,0.0000020900,0.0000020936, -0.0000020959,0.0000020965,0.0000020953,0.0000020925,0.0000020892, -0.0000020856,0.0000020821,0.0000020793,0.0000020771,0.0000020760, -0.0000020757,0.0000020751,0.0000020740,0.0000020723,0.0000020700, -0.0000020670,0.0000020638,0.0000020604,0.0000020576,0.0000020556, -0.0000020546,0.0000020545,0.0000020545,0.0000020537,0.0000020521, -0.0000020500,0.0000020477,0.0000020456,0.0000020442,0.0000020435, -0.0000020437,0.0000020450,0.0000020472,0.0000020496,0.0000020519, -0.0000020542,0.0000020561,0.0000020582,0.0000020603,0.0000020620, -0.0000020641,0.0000020666,0.0000020693,0.0000020716,0.0000020730, -0.0000020736,0.0000020737,0.0000020736,0.0000020730,0.0000020716, -0.0000020693,0.0000020664,0.0000020640,0.0000020619,0.0000020600, -0.0000020579,0.0000020554,0.0000020525,0.0000020498,0.0000020480, -0.0000020468,0.0000020457,0.0000020447,0.0000020438,0.0000020433, -0.0000020433,0.0000020435,0.0000020438,0.0000020438,0.0000020434, -0.0000020426,0.0000020412,0.0000020395,0.0000020369,0.0000020336, -0.0000020299,0.0000020260,0.0000020217,0.0000020174,0.0000020138, -0.0000020113,0.0000020097,0.0000020090,0.0000020087,0.0000020084, -0.0000020075,0.0000020057,0.0000020033,0.0000020008,0.0000019982, -0.0000019954,0.0000019920,0.0000019882,0.0000019843,0.0000019807, -0.0000019775,0.0000019753,0.0000019744,0.0000019742,0.0000019748, -0.0000019757,0.0000019771,0.0000019791,0.0000019814,0.0000019833, -0.0000019845,0.0000019851,0.0000019853,0.0000019856,0.0000019859, -0.0000019859,0.0000019857,0.0000019853,0.0000019846,0.0000019835, -0.0000019821,0.0000019808,0.0000019801,0.0000019796,0.0000019788, -0.0000019776,0.0000019762,0.0000019745,0.0000019725,0.0000019702, -0.0000019676,0.0000019647,0.0000019619,0.0000019599,0.0000019588, -0.0000019585,0.0000019590,0.0000019600,0.0000019614,0.0000019635, -0.0000019660,0.0000019688,0.0000019716,0.0000019739,0.0000019753, -0.0000019759,0.0000019757,0.0000019746,0.0000019730,0.0000019716, -0.0000019709,0.0000019714,0.0000019729,0.0000019749,0.0000019766, -0.0000019775,0.0000019775,0.0000019769,0.0000019760,0.0000019749, -0.0000019739,0.0000019731,0.0000019720,0.0000019709,0.0000019704, -0.0000019702,0.0000019700,0.0000019697,0.0000019693,0.0000019689, -0.0000019685,0.0000019681,0.0000019680,0.0000019682,0.0000019685, -0.0000019689,0.0000019700,0.0000019718,0.0000019742,0.0000019771, -0.0000019799,0.0000019805,0.0000019777,0.0000019724,0.0000019661, -0.0000019627,0.0000019680,0.0000019825,0.0000019999,0.0000020193, -0.0000020245,0.0000020242,0.0000020334,0.0000020450,0.0000020496, -0.0000020514,0.0000020500,0.0000020429,0.0000020351,0.0000020319, -0.0000020324,0.0000020339,0.0000020353,0.0000020361,0.0000020367, -0.0000020372,0.0000020375,0.0000020365,0.0000020339,0.0000020313, -0.0000020286,0.0000020245,0.0000020218,0.0000020227,0.0000020268, -0.0000020308,0.0000020314,0.0000020263,0.0000020182,0.0000020133, -0.0000020119,0.0000020121,0.0000020152,0.0000020198,0.0000020223, -0.0000020232,0.0000020233,0.0000020227,0.0000020209,0.0000020198, -0.0000020216,0.0000020259,0.0000020311,0.0000020368,0.0000020413, -0.0000020420,0.0000020390,0.0000020343,0.0000020324,0.0000020326, -0.0000020338,0.0000020347,0.0000020341,0.0000020326,0.0000020312, -0.0000020298,0.0000020286,0.0000020274,0.0000020264,0.0000020265, -0.0000020265,0.0000020268,0.0000020269,0.0000020270,0.0000020272, -0.0000020278,0.0000020288,0.0000020296,0.0000020297,0.0000020293, -0.0000020283,0.0000020269,0.0000020250,0.0000020225,0.0000020198, -0.0000020175,0.0000020159,0.0000020147,0.0000020137,0.0000020130, -0.0000020123,0.0000020115,0.0000020108,0.0000020100,0.0000020090, -0.0000020081,0.0000020076,0.0000020077,0.0000020080,0.0000020085, -0.0000020093,0.0000020104,0.0000020117,0.0000020131,0.0000020143, -0.0000020152,0.0000020157,0.0000020158,0.0000020156,0.0000020151, -0.0000020143,0.0000020135,0.0000020127,0.0000020120,0.0000020111, -0.0000020102,0.0000020095,0.0000020092,0.0000020092,0.0000020093, -0.0000020093,0.0000020092,0.0000020088,0.0000020084,0.0000020081, -0.0000020075,0.0000020064,0.0000020046,0.0000020025,0.0000020003, -0.0000019983,0.0000019966,0.0000019951,0.0000019940,0.0000019937, -0.0000019947,0.0000019957,0.0000019975,0.0000020008,0.0000020044, -0.0000020077,0.0000020106,0.0000020128,0.0000020142,0.0000020148, -0.0000020147,0.0000020140,0.0000020126,0.0000020111,0.0000020097, -0.0000020080,0.0000020061,0.0000020037,0.0000020007,0.0000019971, -0.0000019935,0.0000019897,0.0000019855,0.0000019805,0.0000019756, -0.0000019723,0.0000019713,0.0000019713,0.0000019709,0.0000019689, -0.0000019649,0.0000019593,0.0000019540,0.0000019496,0.0000019475, -0.0000019473,0.0000019488,0.0000019513,0.0000019554,0.0000019603, -0.0000019634,0.0000019645,0.0000019652,0.0000019668,0.0000019647, -0.0000019660,0.0000019680,0.0000019706,0.0000019730,0.0000019748, -0.0000019765,0.0000019787,0.0000019819,0.0000019865,0.0000019917, -0.0000019972,0.0000020033,0.0000020094,0.0000020161,0.0000020225, -0.0000020284,0.0000020340,0.0000020388,0.0000020429,0.0000020465, -0.0000020499,0.0000020533,0.0000020568,0.0000020605,0.0000020643, -0.0000020681,0.0000020723,0.0000020769,0.0000020816,0.0000020865, -0.0000020912,0.0000020954,0.0000020992,0.0000021019,0.0000021041, -0.0000021057,0.0000021063,0.0000021058,0.0000021042,0.0000021019, -0.0000020990,0.0000020961,0.0000020936,0.0000020917,0.0000020904, -0.0000020902,0.0000020904,0.0000020913,0.0000020929,0.0000020942, -0.0000020945,0.0000020939,0.0000020922,0.0000020897,0.0000020865, -0.0000020831,0.0000020794,0.0000020759,0.0000020731,0.0000020703, -0.0000020675,0.0000020649,0.0000020622,0.0000020599,0.0000020575, -0.0000020547,0.0000020516,0.0000020495,0.0000020484,0.0000020469, -0.0000020441,0.0000020416,0.0000020410,0.0000020428,0.0000020461, -0.0000020497,0.0000020534,0.0000020574,0.0000020610,0.0000020643, -0.0000020680,0.0000020722,0.0000020767,0.0000020810,0.0000020845, -0.0000020871,0.0000020890,0.0000020898,0.0000020895,0.0000020878, -0.0000020851,0.0000020818,0.0000020793,0.0000020783,0.0000020784, -0.0000020804,0.0000020839,0.0000020879,0.0000020919,0.0000020957, -0.0000020991,0.0000021027,0.0000021073,0.0000021126,0.0000021179, -0.0000021227,0.0000021263,0.0000021290,0.0000021309,0.0000021324, -0.0000021335,0.0000021340,0.0000021337,0.0000021328,0.0000021313, -0.0000021292,0.0000021270,0.0000021248,0.0000021228,0.0000021207, -0.0000021185,0.0000021162,0.0000021139,0.0000021118,0.0000021097, -0.0000021077,0.0000021059,0.0000021044,0.0000021032,0.0000021021, -0.0000021010,0.0000020996,0.0000020983,0.0000020961,0.0000020937, -0.0000020912,0.0000020890,0.0000020869,0.0000020845,0.0000020820, -0.0000020799,0.0000020785,0.0000020780,0.0000020782,0.0000020790, -0.0000020801,0.0000020814,0.0000020827,0.0000020845,0.0000020866, -0.0000020887,0.0000020910,0.0000020940,0.0000020969,0.0000020996, -0.0000021031,0.0000021073,0.0000021106,0.0000021119,0.0000021117, -0.0000021106,0.0000021092,0.0000021085,0.0000021085,0.0000021082, -0.0000021066,0.0000021039,0.0000021014,0.0000020995,0.0000020998, -0.0000021046,0.0000021134,0.0000021216,0.0000021282,0.0000021341, -0.0000021386,0.0000021411,0.0000021426,0.0000021441,0.0000021452, -0.0000021452,0.0000021427,0.0000021376,0.0000021317,0.0000021272, -0.0000021246,0.0000021228,0.0000021212,0.0000021204,0.0000021202, -0.0000021200,0.0000021196,0.0000021193,0.0000021193,0.0000021193, -0.0000021188,0.0000021178,0.0000021166,0.0000021153,0.0000021144, -0.0000021140,0.0000021140,0.0000021143,0.0000021159,0.0000021198, -0.0000021248,0.0000021296,0.0000021335,0.0000021376,0.0000021429, -0.0000021482,0.0000021520,0.0000021555,0.0000021609,0.0000021685, -0.0000021760,0.0000021821,0.0000021873,0.0000021926,0.0000021977, -0.0000022015,0.0000022028,0.0000022021,0.0000021995,0.0000021950, -0.0000021894,0.0000021831,0.0000021769,0.0000021713,0.0000021664, -0.0000021624,0.0000021588,0.0000021559,0.0000021537,0.0000021526, -0.0000021522,0.0000021521,0.0000021516,0.0000021509,0.0000021500, -0.0000021498,0.0000021500,0.0000021507,0.0000021516,0.0000021525, -0.0000021534,0.0000021546,0.0000021560,0.0000021571,0.0000021584, -0.0000021599,0.0000021614,0.0000021628,0.0000021637,0.0000021641, -0.0000021643,0.0000021644,0.0000021639,0.0000021629,0.0000021618, -0.0000021607,0.0000021592,0.0000021572,0.0000021549,0.0000021521, -0.0000021489,0.0000021454,0.0000021421,0.0000021388,0.0000021368, -0.0000021381,0.0000021417,0.0000021461,0.0000021505,0.0000021539, -0.0000021560,0.0000021557,0.0000021542,0.0000021500,0.0000021462, -0.0000021431,0.0000021396,0.0000021353,0.0000021311,0.0000021278, -0.0000021263,0.0000021259,0.0000021261,0.0000021278,0.0000021304, -0.0000021337,0.0000021362,0.0000021363,0.0000021343,0.0000021295, -0.0000021239,0.0000021192,0.0000021161,0.0000021147,0.0000021136, -0.0000021117,0.0000021090,0.0000021061,0.0000021034,0.0000021009, -0.0000020990,0.0000020986,0.0000020991,0.0000020999,0.0000021015, -0.0000021034,0.0000021050,0.0000021070,0.0000021097,0.0000021129, -0.0000021162,0.0000021195,0.0000021231,0.0000021265,0.0000021289, -0.0000021304,0.0000021314,0.0000021319,0.0000021311,0.0000021287, -0.0000021251,0.0000021202,0.0000021147,0.0000021092,0.0000021045, -0.0000021017,0.0000020999,0.0000020988,0.0000020981,0.0000020977, -0.0000020975,0.0000020978,0.0000020993,0.0000021010,0.0000021014, -0.0000021014,0.0000021018,0.0000021013,0.0000020996,0.0000020964, -0.0000020915,0.0000020851,0.0000020782,0.0000020682,0.0000020571, -0.0000020504,0.0000020453,0.0000020380,0.0000020268,0.0000020269, -0.0000020335,0.0000020343,0.0000020367,0.0000020451,0.0000020528, -0.0000020551,0.0000020542,0.0000020555,0.0000020608,0.0000020675, -0.0000020730,0.0000020754,0.0000020769,0.0000020816,0.0000020936, -0.0000021092,0.0000021182,0.0000021238,0.0000021414,0.0000021510, -0.0000021487,0.0000021547,0.0000021624,0.0000021595,0.0000021578, -0.0000021652,0.0000021750,0.0000021739,0.0000021694,0.0000021797, -0.0000021970,0.0000021977,0.0000021858,0.0000021755,0.0000021749, -0.0000021755,0.0000021771,0.0000021897,0.0000021899,0.0000021888, -0.0000022006,0.0000022054,0.0000022058,0.0000022151,0.0000022309, -0.0000022400,0.0000022448,0.0000022490,0.0000022505,0.0000022500, -0.0000022488,0.0000022473,0.0000022467,0.0000022486,0.0000022517, -0.0000022540,0.0000022553,0.0000022561,0.0000022562,0.0000022557, -0.0000022525,0.0000022446,0.0000022351,0.0000022267,0.0000022215, -0.0000022207,0.0000022224,0.0000022233,0.0000022225,0.0000022205, -0.0000022174,0.0000022136,0.0000022093,0.0000022049,0.0000022003, -0.0000021947,0.0000021890,0.0000021821,0.0000021741,0.0000021644, -0.0000021549,0.0000021470,0.0000021409,0.0000021366,0.0000021324, -0.0000021273,0.0000021216,0.0000021170,0.0000021169,0.0000021172, -0.0000021171,0.0000021193,0.0000021246,0.0000021354,0.0000021531, -0.0000021715,0.0000021847,0.0000021901,0.0000021906,0.0000021885, -0.0000021859,0.0000021848,0.0000021840,0.0000021816,0.0000021785, -0.0000021771,0.0000021746,0.0000021710,0.0000021669,0.0000021631, -0.0000021601,0.0000021582,0.0000021570,0.0000021565,0.0000021562, -0.0000021551,0.0000021536,0.0000021536,0.0000021580,0.0000021655, -0.0000021707,0.0000021712,0.0000021716,0.0000021753,0.0000021797, -0.0000021829,0.0000021853,0.0000021875,0.0000021896,0.0000021921, -0.0000021948,0.0000021970,0.0000021985,0.0000021993,0.0000021994, -0.0000021986,0.0000021979,0.0000021976,0.0000021982,0.0000022014, -0.0000022069,0.0000022116,0.0000022151,0.0000022184,0.0000022225, -0.0000022253,0.0000022273,0.0000022291,0.0000022318,0.0000022360, -0.0000022400,0.0000022430,0.0000022461,0.0000022484,0.0000022491, -0.0000022498,0.0000022497,0.0000022473,0.0000022433,0.0000022399, -0.0000022377,0.0000022349,0.0000022319,0.0000022278,0.0000022234, -0.0000022208,0.0000022183,0.0000022168,0.0000022170,0.0000022183, -0.0000022201,0.0000022220,0.0000022236,0.0000022261,0.0000022292, -0.0000022321,0.0000022341,0.0000022348,0.0000022352,0.0000022360, -0.0000022378,0.0000022400,0.0000022413,0.0000022417,0.0000022408, -0.0000022391,0.0000022375,0.0000022351,0.0000022329,0.0000022310, -0.0000022295,0.0000022283,0.0000022269,0.0000022246,0.0000022207, -0.0000022154,0.0000022080,0.0000021991,0.0000021902,0.0000021817, -0.0000021739,0.0000021674,0.0000021620,0.0000021580,0.0000021561, -0.0000021551,0.0000021553,0.0000021573,0.0000021617,0.0000021666, -0.0000021714,0.0000021760,0.0000021800,0.0000021835,0.0000021865, -0.0000021887,0.0000021898,0.0000021902,0.0000021909,0.0000021921, -0.0000021937,0.0000021952,0.0000021967,0.0000021970,0.0000021961, -0.0000021949,0.0000021931,0.0000021913,0.0000021892,0.0000021870, -0.0000021853,0.0000021841,0.0000021827,0.0000021809,0.0000021777, -0.0000021729,0.0000021665,0.0000021597,0.0000021540,0.0000021501, -0.0000021478,0.0000021482,0.0000021503,0.0000021537,0.0000021585, -0.0000021641,0.0000021695,0.0000021736,0.0000021770,0.0000021784, -0.0000021785,0.0000021787,0.0000021795,0.0000021811,0.0000021828, -0.0000021838,0.0000021833,0.0000021812,0.0000021784,0.0000021756, -0.0000021737,0.0000021724,0.0000021716,0.0000021713,0.0000021716, -0.0000021712,0.0000021711,0.0000021705,0.0000021697,0.0000021688, -0.0000021682,0.0000021678,0.0000021679,0.0000021677,0.0000021665, -0.0000021649,0.0000021635,0.0000021618,0.0000021601,0.0000021590, -0.0000021577,0.0000021559,0.0000021540,0.0000021521,0.0000021505, -0.0000021490,0.0000021480,0.0000021474,0.0000021471,0.0000021473, -0.0000021476,0.0000021480,0.0000021482,0.0000021482,0.0000021481, -0.0000021483,0.0000021484,0.0000021478,0.0000021466,0.0000021448, -0.0000021424,0.0000021399,0.0000021376,0.0000021356,0.0000021337, -0.0000021315,0.0000021290,0.0000021269,0.0000021250,0.0000021232, -0.0000021214,0.0000021205,0.0000021206,0.0000021209,0.0000021206, -0.0000021192,0.0000021168,0.0000021140,0.0000021109,0.0000021073, -0.0000021032,0.0000020988,0.0000020948,0.0000020915,0.0000020891, -0.0000020868,0.0000020852,0.0000020826,0.0000020810,0.0000020799, -0.0000020795,0.0000020801,0.0000020819,0.0000020850,0.0000020883, -0.0000020917,0.0000020944,0.0000020960,0.0000020971,0.0000020977, -0.0000020982,0.0000020993,0.0000021011,0.0000021034,0.0000021064, -0.0000021103,0.0000021143,0.0000021179,0.0000021205,0.0000021224, -0.0000021239,0.0000021250,0.0000021255,0.0000021259,0.0000021259, -0.0000021254,0.0000021239,0.0000021222,0.0000021204,0.0000021185, -0.0000021173,0.0000021169,0.0000021164,0.0000021146,0.0000021120, -0.0000021088,0.0000021050,0.0000021006,0.0000020954,0.0000020889, -0.0000020821,0.0000020757,0.0000020699,0.0000020645,0.0000020600, -0.0000020576,0.0000020578,0.0000020585,0.0000020617,0.0000020673, -0.0000020738,0.0000020804,0.0000020881,0.0000020953,0.0000021002, -0.0000021039,0.0000021054,0.0000021077,0.0000021086,0.0000021108, -0.0000021110,0.0000021096,0.0000021110,0.0000021096,0.0000021077, -0.0000021059,0.0000021042,0.0000021016,0.0000020993,0.0000020977, -0.0000020969,0.0000020965,0.0000020962,0.0000020959,0.0000020958, -0.0000020960,0.0000020957,0.0000020958,0.0000020976,0.0000020995, -0.0000021001,0.0000021008,0.0000021018,0.0000021040,0.0000021053, -0.0000021044,0.0000021046,0.0000021040,0.0000021031,0.0000021026, -0.0000021016,0.0000021010,0.0000021004,0.0000020997,0.0000020989, -0.0000020979,0.0000020966,0.0000020953,0.0000020941,0.0000020929, -0.0000020918,0.0000020911,0.0000020905,0.0000020904,0.0000020902, -0.0000020897,0.0000020890,0.0000020878,0.0000020862,0.0000020847, -0.0000020835,0.0000020826,0.0000020824,0.0000020831,0.0000020842, -0.0000020849,0.0000020847,0.0000020829,0.0000020797,0.0000020755, -0.0000020709,0.0000020659,0.0000020606,0.0000020556,0.0000020511, -0.0000020468,0.0000020423,0.0000020375,0.0000020319,0.0000020253, -0.0000020182,0.0000020109,0.0000020041,0.0000019977,0.0000019926, -0.0000019889,0.0000019856,0.0000019827,0.0000019801,0.0000019778, -0.0000019758,0.0000019738,0.0000019717,0.0000019698,0.0000019683, -0.0000019676,0.0000019683,0.0000019707,0.0000019748,0.0000019798, -0.0000019853,0.0000019918,0.0000019979,0.0000020020,0.0000020033, -0.0000020016,0.0000019966,0.0000019918,0.0000019905,0.0000019910, -0.0000019907,0.0000019890,0.0000019856,0.0000019814,0.0000019775, -0.0000019724,0.0000019687,0.0000019683,0.0000019688,0.0000019690, -0.0000019689,0.0000019664,0.0000019619,0.0000019596,0.0000019601, -0.0000019640,0.0000019707,0.0000019783,0.0000019858,0.0000019921, -0.0000019953,0.0000019964,0.0000019971,0.0000019989,0.0000020024, -0.0000020085,0.0000020171,0.0000020263,0.0000020344,0.0000020417, -0.0000020485,0.0000020548,0.0000020602,0.0000020631,0.0000020629, -0.0000020599,0.0000020546,0.0000020469,0.0000020395,0.0000020351, -0.0000020341,0.0000020361,0.0000020410,0.0000020480,0.0000020565, -0.0000020640,0.0000020692,0.0000020718,0.0000020722,0.0000020692, -0.0000020641,0.0000020576,0.0000020502,0.0000020431,0.0000020381, -0.0000020370,0.0000020375,0.0000020413,0.0000020477,0.0000020548, -0.0000020617,0.0000020672,0.0000020725,0.0000020803,0.0000020925, -0.0000021093,0.0000021285,0.0000021464,0.0000021603,0.0000021696, -0.0000021746,0.0000021764,0.0000021761,0.0000021749,0.0000021731, -0.0000021711,0.0000021692,0.0000021674,0.0000021658,0.0000021647, -0.0000021639,0.0000021628,0.0000021612,0.0000021593,0.0000021570, -0.0000021545,0.0000021516,0.0000021485,0.0000021453,0.0000021422, -0.0000021393,0.0000021367,0.0000021341,0.0000021317,0.0000021298, -0.0000021285,0.0000021273,0.0000021261,0.0000021247,0.0000021231, -0.0000021214,0.0000021192,0.0000021166,0.0000021140,0.0000021120, -0.0000021105,0.0000021092,0.0000021077,0.0000021061,0.0000021046, -0.0000021035,0.0000021028,0.0000021024,0.0000021019,0.0000021002, -0.0000020975,0.0000020948,0.0000020931,0.0000020925,0.0000020917, -0.0000020893,0.0000020856,0.0000020819,0.0000020787,0.0000020760, -0.0000020735,0.0000020711,0.0000020698,0.0000020698,0.0000020706, -0.0000020725,0.0000020748,0.0000020771,0.0000020787,0.0000020792, -0.0000020796,0.0000020792,0.0000020763,0.0000020701,0.0000020652, -0.0000020650,0.0000020666,0.0000020670,0.0000020693,0.0000020767, -0.0000020867,0.0000020980,0.0000021068,0.0000021122,0.0000021161, -0.0000021221,0.0000021284,0.0000021292,0.0000021278,0.0000021262, -0.0000021228,0.0000021176,0.0000021155,0.0000021157,0.0000021155, -0.0000021163,0.0000021166,0.0000021149,0.0000021126,0.0000021124, -0.0000021149,0.0000021212,0.0000021301,0.0000021401,0.0000021489, -0.0000021565,0.0000021630,0.0000021683,0.0000021720,0.0000021744, -0.0000021753,0.0000021752,0.0000021750,0.0000021752,0.0000021757, -0.0000021761,0.0000021758,0.0000021737,0.0000021696,0.0000021643, -0.0000021585,0.0000021536,0.0000021491,0.0000021469,0.0000021474, -0.0000021492,0.0000021510,0.0000021517,0.0000021503,0.0000021482, -0.0000021441,0.0000021395,0.0000021357,0.0000021343,0.0000021370, -0.0000021447,0.0000021565,0.0000021702,0.0000021840,0.0000021937, -0.0000022000,0.0000022021,0.0000022019,0.0000022017,0.0000022009, -0.0000022018,0.0000022033,0.0000022075,0.0000022144,0.0000022226, -0.0000022319,0.0000022419,0.0000022515,0.0000022599,0.0000022667, -0.0000022718,0.0000022744,0.0000022734,0.0000022688,0.0000022612, -0.0000022531,0.0000022448,0.0000022356,0.0000022253,0.0000022156, -0.0000022102,0.0000022116,0.0000022184,0.0000022270,0.0000022339, -0.0000022382,0.0000022414,0.0000022450,0.0000022485,0.0000022512, -0.0000022528,0.0000022522,0.0000022494,0.0000022457,0.0000022405, -0.0000022349,0.0000022303,0.0000022274,0.0000022259,0.0000022247, -0.0000022237,0.0000022230,0.0000022201,0.0000022113,0.0000021972, -0.0000021833,0.0000021726,0.0000021613,0.0000021460,0.0000021296, -0.0000021150,0.0000021003,0.0000020828,0.0000020645,0.0000020496, -0.0000020393,0.0000020322,0.0000020269,0.0000020212,0.0000020173, -0.0000020152,0.0000020138,0.0000020120,0.0000020108,0.0000020123, -0.0000020155,0.0000020183,0.0000020188,0.0000020174,0.0000020145, -0.0000020101,0.0000020061,0.0000020034,0.0000020032,0.0000020043, -0.0000020053,0.0000020052,0.0000020035,0.0000020014,0.0000019997, -0.0000019995,0.0000020007,0.0000020037,0.0000020079,0.0000020122, -0.0000020159,0.0000020195,0.0000020235,0.0000020277,0.0000020302, -0.0000020312,0.0000020311,0.0000020304,0.0000020282,0.0000020240, -0.0000020188,0.0000020139,0.0000020105,0.0000020095,0.0000020097, -0.0000020130,0.0000020195,0.0000020303,0.0000020451,0.0000020611, -0.0000020742,0.0000020814,0.0000020821,0.0000020807,0.0000020793, -0.0000020793,0.0000020797,0.0000020783,0.0000020748,0.0000020699, -0.0000020640,0.0000020579,0.0000020516,0.0000020490,0.0000020507, -0.0000020546,0.0000020624,0.0000020725,0.0000020828,0.0000020924, -0.0000021008,0.0000021076,0.0000021130,0.0000021179,0.0000021236, -0.0000021301,0.0000021366,0.0000021420,0.0000021472,0.0000021537, -0.0000021612,0.0000021681,0.0000021733,0.0000021757,0.0000021756, -0.0000021737,0.0000021715,0.0000021696,0.0000021681,0.0000021675, -0.0000021682,0.0000021693,0.0000021699,0.0000021705,0.0000021700, -0.0000021692,0.0000021684,0.0000021675,0.0000021668,0.0000021663, -0.0000021659,0.0000021654,0.0000021647,0.0000021640,0.0000021629, -0.0000021618,0.0000021611,0.0000021605,0.0000021592,0.0000021568, -0.0000021534,0.0000021492,0.0000021445,0.0000021393,0.0000021339, -0.0000021282,0.0000021223,0.0000021161,0.0000021097,0.0000021038, -0.0000020993,0.0000020961,0.0000020948,0.0000020951,0.0000020961, -0.0000020970,0.0000020975,0.0000020974,0.0000020964,0.0000020945, -0.0000020912,0.0000020872,0.0000020837,0.0000020813,0.0000020804, -0.0000020801,0.0000020799,0.0000020797,0.0000020799,0.0000020817, -0.0000020855,0.0000020896,0.0000020925,0.0000020936,0.0000020931, -0.0000020910,0.0000020878,0.0000020842,0.0000020805,0.0000020771, -0.0000020745,0.0000020729,0.0000020726,0.0000020729,0.0000020733, -0.0000020731,0.0000020722,0.0000020705,0.0000020681,0.0000020645, -0.0000020602,0.0000020558,0.0000020518,0.0000020496,0.0000020494, -0.0000020499,0.0000020500,0.0000020493,0.0000020472,0.0000020445, -0.0000020422,0.0000020403,0.0000020389,0.0000020384,0.0000020391, -0.0000020413,0.0000020441,0.0000020464,0.0000020487,0.0000020513, -0.0000020539,0.0000020563,0.0000020590,0.0000020618,0.0000020646, -0.0000020675,0.0000020700,0.0000020718,0.0000020727,0.0000020728, -0.0000020723,0.0000020712,0.0000020694,0.0000020670,0.0000020643, -0.0000020620,0.0000020595,0.0000020570,0.0000020547,0.0000020525, -0.0000020504,0.0000020485,0.0000020470,0.0000020455,0.0000020439, -0.0000020426,0.0000020416,0.0000020405,0.0000020394,0.0000020387, -0.0000020382,0.0000020376,0.0000020365,0.0000020347,0.0000020327, -0.0000020301,0.0000020267,0.0000020226,0.0000020183,0.0000020137, -0.0000020091,0.0000020050,0.0000020018,0.0000019996,0.0000019983, -0.0000019977,0.0000019976,0.0000019977,0.0000019975,0.0000019968, -0.0000019957,0.0000019944,0.0000019928,0.0000019906,0.0000019878, -0.0000019846,0.0000019812,0.0000019781,0.0000019752,0.0000019728, -0.0000019711,0.0000019700,0.0000019696,0.0000019701,0.0000019713, -0.0000019732,0.0000019758,0.0000019786,0.0000019811,0.0000019827, -0.0000019836,0.0000019839,0.0000019837,0.0000019831,0.0000019821, -0.0000019810,0.0000019802,0.0000019794,0.0000019786,0.0000019780, -0.0000019774,0.0000019770,0.0000019764,0.0000019756,0.0000019743, -0.0000019729,0.0000019712,0.0000019691,0.0000019665,0.0000019637, -0.0000019608,0.0000019584,0.0000019566,0.0000019557,0.0000019555, -0.0000019561,0.0000019573,0.0000019590,0.0000019608,0.0000019628, -0.0000019646,0.0000019660,0.0000019666,0.0000019666,0.0000019658, -0.0000019645,0.0000019631,0.0000019622,0.0000019621,0.0000019631, -0.0000019654,0.0000019682,0.0000019707,0.0000019721,0.0000019724, -0.0000019721,0.0000019713,0.0000019703,0.0000019693,0.0000019682, -0.0000019670,0.0000019659,0.0000019653,0.0000019652,0.0000019652, -0.0000019649,0.0000019642,0.0000019637,0.0000019635,0.0000019638, -0.0000019644,0.0000019654,0.0000019664,0.0000019673,0.0000019683, -0.0000019699,0.0000019720,0.0000019748,0.0000019780,0.0000019800, -0.0000019790,0.0000019743,0.0000019682,0.0000019625,0.0000019642, -0.0000019767,0.0000019926,0.0000020124,0.0000020254,0.0000020238, -0.0000020278,0.0000020416,0.0000020488,0.0000020512,0.0000020516, -0.0000020479,0.0000020406,0.0000020355,0.0000020347,0.0000020356, -0.0000020370,0.0000020381,0.0000020390,0.0000020400,0.0000020408, -0.0000020405,0.0000020383,0.0000020350,0.0000020320,0.0000020277, -0.0000020231,0.0000020217,0.0000020236,0.0000020280,0.0000020308, -0.0000020286,0.0000020209,0.0000020144,0.0000020123,0.0000020124, -0.0000020143,0.0000020181,0.0000020210,0.0000020222,0.0000020224, -0.0000020217,0.0000020198,0.0000020189,0.0000020207,0.0000020248, -0.0000020298,0.0000020355,0.0000020401,0.0000020411,0.0000020384, -0.0000020339,0.0000020320,0.0000020329,0.0000020349,0.0000020360, -0.0000020350,0.0000020329,0.0000020308,0.0000020292,0.0000020278, -0.0000020262,0.0000020253,0.0000020248,0.0000020245,0.0000020250, -0.0000020255,0.0000020257,0.0000020255,0.0000020258,0.0000020266, -0.0000020274,0.0000020278,0.0000020278,0.0000020273,0.0000020263, -0.0000020247,0.0000020225,0.0000020201,0.0000020182,0.0000020166, -0.0000020152,0.0000020139,0.0000020128,0.0000020117,0.0000020107, -0.0000020097,0.0000020087,0.0000020077,0.0000020065,0.0000020055, -0.0000020047,0.0000020042,0.0000020040,0.0000020041,0.0000020045, -0.0000020050,0.0000020057,0.0000020066,0.0000020074,0.0000020079, -0.0000020082,0.0000020085,0.0000020085,0.0000020085,0.0000020084, -0.0000020083,0.0000020080,0.0000020075,0.0000020069,0.0000020064, -0.0000020062,0.0000020062,0.0000020063,0.0000020064,0.0000020066, -0.0000020068,0.0000020070,0.0000020072,0.0000020074,0.0000020073, -0.0000020070,0.0000020065,0.0000020059,0.0000020055,0.0000020051, -0.0000020043,0.0000020027,0.0000020007,0.0000019986,0.0000019968, -0.0000019952,0.0000019940,0.0000019938,0.0000019946,0.0000019949, -0.0000019973,0.0000020003,0.0000020033,0.0000020061,0.0000020082, -0.0000020091,0.0000020090,0.0000020078,0.0000020058,0.0000020036, -0.0000020014,0.0000019994,0.0000019971,0.0000019942,0.0000019906, -0.0000019868,0.0000019834,0.0000019799,0.0000019758,0.0000019715, -0.0000019680,0.0000019666,0.0000019665,0.0000019656,0.0000019629, -0.0000019578,0.0000019514,0.0000019463,0.0000019420,0.0000019402, -0.0000019403,0.0000019427,0.0000019475,0.0000019540,0.0000019600, -0.0000019633,0.0000019641,0.0000019646,0.0000019650,0.0000019650, -0.0000019655,0.0000019672,0.0000019693,0.0000019711,0.0000019729, -0.0000019757,0.0000019797,0.0000019843,0.0000019888,0.0000019935, -0.0000019987,0.0000020041,0.0000020099,0.0000020154,0.0000020209, -0.0000020261,0.0000020308,0.0000020349,0.0000020388,0.0000020425, -0.0000020459,0.0000020488,0.0000020515,0.0000020542,0.0000020571, -0.0000020605,0.0000020642,0.0000020680,0.0000020715,0.0000020747, -0.0000020778,0.0000020805,0.0000020830,0.0000020854,0.0000020868, -0.0000020871,0.0000020865,0.0000020853,0.0000020837,0.0000020819, -0.0000020799,0.0000020780,0.0000020768,0.0000020767,0.0000020775, -0.0000020788,0.0000020807,0.0000020822,0.0000020825,0.0000020818, -0.0000020802,0.0000020777,0.0000020746,0.0000020713,0.0000020676, -0.0000020636,0.0000020601,0.0000020578,0.0000020563,0.0000020552, -0.0000020535,0.0000020521,0.0000020509,0.0000020492,0.0000020465, -0.0000020441,0.0000020432,0.0000020423,0.0000020402,0.0000020376, -0.0000020364,0.0000020372,0.0000020403,0.0000020436,0.0000020471, -0.0000020508,0.0000020549,0.0000020587,0.0000020618,0.0000020647, -0.0000020683,0.0000020730,0.0000020775,0.0000020808,0.0000020834, -0.0000020854,0.0000020867,0.0000020869,0.0000020859,0.0000020834, -0.0000020801,0.0000020776,0.0000020763,0.0000020761,0.0000020772, -0.0000020794,0.0000020825,0.0000020861,0.0000020895,0.0000020926, -0.0000020959,0.0000021002,0.0000021053,0.0000021108,0.0000021158, -0.0000021202,0.0000021235,0.0000021260,0.0000021280,0.0000021295, -0.0000021303,0.0000021304,0.0000021299,0.0000021286,0.0000021266, -0.0000021242,0.0000021218,0.0000021197,0.0000021177,0.0000021154, -0.0000021129,0.0000021103,0.0000021076,0.0000021049,0.0000021026, -0.0000021007,0.0000020992,0.0000020984,0.0000020982,0.0000020982, -0.0000020981,0.0000020978,0.0000020967,0.0000020953,0.0000020929, -0.0000020904,0.0000020883,0.0000020864,0.0000020846,0.0000020825, -0.0000020802,0.0000020785,0.0000020780,0.0000020781,0.0000020785, -0.0000020794,0.0000020805,0.0000020820,0.0000020835,0.0000020850, -0.0000020872,0.0000020904,0.0000020938,0.0000020970,0.0000021009, -0.0000021053,0.0000021088,0.0000021106,0.0000021106,0.0000021096, -0.0000021079,0.0000021061,0.0000021051,0.0000021051,0.0000021047, -0.0000021028,0.0000021005,0.0000020988,0.0000020985,0.0000021015, -0.0000021091,0.0000021175,0.0000021241,0.0000021301,0.0000021355, -0.0000021392,0.0000021410,0.0000021420,0.0000021430,0.0000021435, -0.0000021426,0.0000021392,0.0000021340,0.0000021287,0.0000021253, -0.0000021238,0.0000021232,0.0000021228,0.0000021225,0.0000021223, -0.0000021220,0.0000021215,0.0000021211,0.0000021206,0.0000021199, -0.0000021189,0.0000021178,0.0000021167,0.0000021156,0.0000021149, -0.0000021146,0.0000021144,0.0000021147,0.0000021160,0.0000021192, -0.0000021239,0.0000021287,0.0000021328,0.0000021371,0.0000021429, -0.0000021491,0.0000021538,0.0000021576,0.0000021622,0.0000021682, -0.0000021748,0.0000021808,0.0000021858,0.0000021902,0.0000021945, -0.0000021982,0.0000022001,0.0000022000,0.0000021982,0.0000021954, -0.0000021911,0.0000021864,0.0000021812,0.0000021761,0.0000021711, -0.0000021661,0.0000021615,0.0000021575,0.0000021548,0.0000021534, -0.0000021527,0.0000021517,0.0000021506,0.0000021495,0.0000021488, -0.0000021488,0.0000021493,0.0000021502,0.0000021510,0.0000021518, -0.0000021530,0.0000021545,0.0000021559,0.0000021571,0.0000021586, -0.0000021602,0.0000021616,0.0000021627,0.0000021634,0.0000021640, -0.0000021640,0.0000021636,0.0000021626,0.0000021615,0.0000021605, -0.0000021590,0.0000021572,0.0000021550,0.0000021525,0.0000021496, -0.0000021463,0.0000021423,0.0000021379,0.0000021337,0.0000021318, -0.0000021309,0.0000021344,0.0000021402,0.0000021468,0.0000021524, -0.0000021565,0.0000021588,0.0000021592,0.0000021550,0.0000021504, -0.0000021471,0.0000021443,0.0000021411,0.0000021373,0.0000021338, -0.0000021313,0.0000021297,0.0000021295,0.0000021312,0.0000021342, -0.0000021360,0.0000021362,0.0000021341,0.0000021295,0.0000021245, -0.0000021203,0.0000021180,0.0000021177,0.0000021187,0.0000021187, -0.0000021170,0.0000021143,0.0000021117,0.0000021092,0.0000021066, -0.0000021049,0.0000021044,0.0000021048,0.0000021059,0.0000021077, -0.0000021093,0.0000021108,0.0000021122,0.0000021132,0.0000021142, -0.0000021154,0.0000021177,0.0000021209,0.0000021239,0.0000021257, -0.0000021269,0.0000021277,0.0000021272,0.0000021254,0.0000021224, -0.0000021182,0.0000021130,0.0000021071,0.0000021013,0.0000020977, -0.0000020957,0.0000020948,0.0000020943,0.0000020938,0.0000020933, -0.0000020932,0.0000020940,0.0000020955,0.0000020959,0.0000020957, -0.0000020959,0.0000020955,0.0000020944,0.0000020923,0.0000020884, -0.0000020824,0.0000020751,0.0000020642,0.0000020517,0.0000020439, -0.0000020393,0.0000020332,0.0000020218,0.0000020216,0.0000020282, -0.0000020292,0.0000020310,0.0000020397,0.0000020491,0.0000020526, -0.0000020517,0.0000020527,0.0000020579,0.0000020643,0.0000020700, -0.0000020723,0.0000020744,0.0000020804,0.0000020938,0.0000021097, -0.0000021181,0.0000021238,0.0000021412,0.0000021497,0.0000021471, -0.0000021540,0.0000021604,0.0000021569,0.0000021565,0.0000021648, -0.0000021727,0.0000021695,0.0000021670,0.0000021821,0.0000021957, -0.0000021928,0.0000021806,0.0000021738,0.0000021746,0.0000021749, -0.0000021780,0.0000021896,0.0000021873,0.0000021862,0.0000021988, -0.0000022036,0.0000022041,0.0000022129,0.0000022290,0.0000022383, -0.0000022430,0.0000022467,0.0000022477,0.0000022475,0.0000022465, -0.0000022463,0.0000022475,0.0000022498,0.0000022515,0.0000022528, -0.0000022553,0.0000022575,0.0000022576,0.0000022553,0.0000022491, -0.0000022389,0.0000022282,0.0000022189,0.0000022137,0.0000022130, -0.0000022144,0.0000022167,0.0000022181,0.0000022178,0.0000022152, -0.0000022108,0.0000022057,0.0000021995,0.0000021931,0.0000021871, -0.0000021801,0.0000021714,0.0000021619,0.0000021519,0.0000021434, -0.0000021369,0.0000021310,0.0000021262,0.0000021219,0.0000021171, -0.0000021116,0.0000021068,0.0000021069,0.0000021083,0.0000021099, -0.0000021126,0.0000021179,0.0000021253,0.0000021373,0.0000021537, -0.0000021700,0.0000021816,0.0000021867,0.0000021864,0.0000021825, -0.0000021777,0.0000021738,0.0000021709,0.0000021693,0.0000021707, -0.0000021706,0.0000021681,0.0000021639,0.0000021596,0.0000021565, -0.0000021548,0.0000021535,0.0000021523,0.0000021513,0.0000021507, -0.0000021499,0.0000021495,0.0000021511,0.0000021549,0.0000021598, -0.0000021631,0.0000021638,0.0000021650,0.0000021689,0.0000021734, -0.0000021757,0.0000021766,0.0000021769,0.0000021773,0.0000021788, -0.0000021815,0.0000021840,0.0000021861,0.0000021878,0.0000021893, -0.0000021897,0.0000021899,0.0000021904,0.0000021929,0.0000021974, -0.0000022019,0.0000022054,0.0000022083,0.0000022124,0.0000022153, -0.0000022173,0.0000022193,0.0000022215,0.0000022251,0.0000022293, -0.0000022328,0.0000022369,0.0000022405,0.0000022429,0.0000022444, -0.0000022450,0.0000022436,0.0000022398,0.0000022365,0.0000022341, -0.0000022315,0.0000022280,0.0000022243,0.0000022205,0.0000022174, -0.0000022151,0.0000022129,0.0000022120,0.0000022118,0.0000022126, -0.0000022137,0.0000022146,0.0000022161,0.0000022180,0.0000022203, -0.0000022225,0.0000022244,0.0000022255,0.0000022266,0.0000022278, -0.0000022296,0.0000022316,0.0000022333,0.0000022344,0.0000022356, -0.0000022367,0.0000022365,0.0000022358,0.0000022352,0.0000022341, -0.0000022324,0.0000022304,0.0000022282,0.0000022257,0.0000022228, -0.0000022193,0.0000022146,0.0000022088,0.0000022019,0.0000021934, -0.0000021839,0.0000021746,0.0000021665,0.0000021601,0.0000021560, -0.0000021542,0.0000021535,0.0000021542,0.0000021567,0.0000021597, -0.0000021636,0.0000021677,0.0000021718,0.0000021755,0.0000021785, -0.0000021808,0.0000021825,0.0000021839,0.0000021853,0.0000021870, -0.0000021889,0.0000021914,0.0000021936,0.0000021946,0.0000021944, -0.0000021934,0.0000021922,0.0000021909,0.0000021897,0.0000021886, -0.0000021881,0.0000021882,0.0000021881,0.0000021873,0.0000021854, -0.0000021817,0.0000021765,0.0000021703,0.0000021642,0.0000021588, -0.0000021543,0.0000021513,0.0000021511,0.0000021520,0.0000021548, -0.0000021591,0.0000021650,0.0000021715,0.0000021775,0.0000021816, -0.0000021849,0.0000021867,0.0000021873,0.0000021883,0.0000021889, -0.0000021896,0.0000021902,0.0000021902,0.0000021893,0.0000021880, -0.0000021861,0.0000021839,0.0000021816,0.0000021798,0.0000021778, -0.0000021757,0.0000021736,0.0000021717,0.0000021700,0.0000021683, -0.0000021665,0.0000021659,0.0000021651,0.0000021640,0.0000021628, -0.0000021617,0.0000021606,0.0000021596,0.0000021589,0.0000021585, -0.0000021576,0.0000021563,0.0000021546,0.0000021526,0.0000021509, -0.0000021499,0.0000021498,0.0000021504,0.0000021519,0.0000021533, -0.0000021545,0.0000021558,0.0000021566,0.0000021566,0.0000021562, -0.0000021556,0.0000021547,0.0000021533,0.0000021516,0.0000021494, -0.0000021466,0.0000021434,0.0000021406,0.0000021382,0.0000021361, -0.0000021341,0.0000021321,0.0000021303,0.0000021288,0.0000021274, -0.0000021261,0.0000021254,0.0000021255,0.0000021260,0.0000021261, -0.0000021257,0.0000021249,0.0000021236,0.0000021215,0.0000021184, -0.0000021146,0.0000021102,0.0000021054,0.0000021004,0.0000020954, -0.0000020909,0.0000020868,0.0000020834,0.0000020803,0.0000020776, -0.0000020756,0.0000020746,0.0000020758,0.0000020784,0.0000020819, -0.0000020852,0.0000020880,0.0000020899,0.0000020908,0.0000020908, -0.0000020901,0.0000020893,0.0000020889,0.0000020890,0.0000020907, -0.0000020941,0.0000020988,0.0000021038,0.0000021083,0.0000021121, -0.0000021152,0.0000021175,0.0000021187,0.0000021193,0.0000021196, -0.0000021192,0.0000021178,0.0000021163,0.0000021152,0.0000021143, -0.0000021142,0.0000021149,0.0000021153,0.0000021151,0.0000021145, -0.0000021145,0.0000021127,0.0000021103,0.0000021068,0.0000021021, -0.0000020967,0.0000020913,0.0000020861,0.0000020810,0.0000020758, -0.0000020709,0.0000020666,0.0000020629,0.0000020606,0.0000020594, -0.0000020598,0.0000020610,0.0000020610,0.0000020656,0.0000020694, -0.0000020732,0.0000020771,0.0000020820,0.0000020877,0.0000020922, -0.0000020960,0.0000020992,0.0000021021,0.0000021030,0.0000021030, -0.0000021026,0.0000021016,0.0000020999,0.0000020986,0.0000020980, -0.0000020980,0.0000020983,0.0000020983,0.0000020980,0.0000020978, -0.0000020976,0.0000020965,0.0000020956,0.0000020957,0.0000020955, -0.0000020945,0.0000020941,0.0000020930,0.0000020919,0.0000020902, -0.0000020880,0.0000020855,0.0000020831,0.0000020809,0.0000020787, -0.0000020770,0.0000020753,0.0000020739,0.0000020728,0.0000020719, -0.0000020710,0.0000020700,0.0000020686,0.0000020671,0.0000020657, -0.0000020643,0.0000020630,0.0000020618,0.0000020607,0.0000020597, -0.0000020587,0.0000020574,0.0000020558,0.0000020542,0.0000020525, -0.0000020510,0.0000020498,0.0000020498,0.0000020510,0.0000020526, -0.0000020539,0.0000020544,0.0000020537,0.0000020517,0.0000020490, -0.0000020460,0.0000020426,0.0000020392,0.0000020362,0.0000020336, -0.0000020308,0.0000020273,0.0000020231,0.0000020184,0.0000020132, -0.0000020080,0.0000020030,0.0000019988,0.0000019951,0.0000019915, -0.0000019883,0.0000019853,0.0000019827,0.0000019803,0.0000019781, -0.0000019763,0.0000019743,0.0000019721,0.0000019697,0.0000019675, -0.0000019657,0.0000019647,0.0000019647,0.0000019668,0.0000019711, -0.0000019765,0.0000019830,0.0000019896,0.0000019944,0.0000019968, -0.0000019966,0.0000019931,0.0000019875,0.0000019838,0.0000019836, -0.0000019838,0.0000019834,0.0000019816,0.0000019782,0.0000019748, -0.0000019709,0.0000019671,0.0000019657,0.0000019662,0.0000019669, -0.0000019678,0.0000019675,0.0000019640,0.0000019595,0.0000019573, -0.0000019585,0.0000019628,0.0000019687,0.0000019752,0.0000019825, -0.0000019883,0.0000019919,0.0000019945,0.0000019968,0.0000019987, -0.0000020013,0.0000020061,0.0000020127,0.0000020192,0.0000020250, -0.0000020307,0.0000020369,0.0000020440,0.0000020511,0.0000020558, -0.0000020577,0.0000020566,0.0000020526,0.0000020473,0.0000020420, -0.0000020376,0.0000020353,0.0000020356,0.0000020372,0.0000020421, -0.0000020499,0.0000020580,0.0000020652,0.0000020708,0.0000020731, -0.0000020723,0.0000020691,0.0000020645,0.0000020581,0.0000020506, -0.0000020448,0.0000020404,0.0000020373,0.0000020374,0.0000020389, -0.0000020426,0.0000020475,0.0000020528,0.0000020577,0.0000020633, -0.0000020711,0.0000020827,0.0000020976,0.0000021138,0.0000021287, -0.0000021402,0.0000021477,0.0000021519,0.0000021534,0.0000021527, -0.0000021506,0.0000021473,0.0000021430,0.0000021382,0.0000021332, -0.0000021288,0.0000021251,0.0000021218,0.0000021187,0.0000021156, -0.0000021125,0.0000021094,0.0000021063,0.0000021035,0.0000021010, -0.0000020987,0.0000020965,0.0000020946,0.0000020930,0.0000020918, -0.0000020912,0.0000020911,0.0000020914,0.0000020918,0.0000020924, -0.0000020930,0.0000020932,0.0000020931,0.0000020927,0.0000020925, -0.0000020924,0.0000020924,0.0000020922,0.0000020921,0.0000020921, -0.0000020925,0.0000020929,0.0000020928,0.0000020920,0.0000020907, -0.0000020896,0.0000020894,0.0000020896,0.0000020895,0.0000020886, -0.0000020867,0.0000020844,0.0000020819,0.0000020790,0.0000020753, -0.0000020713,0.0000020681,0.0000020664,0.0000020663,0.0000020674, -0.0000020687,0.0000020706,0.0000020730,0.0000020753,0.0000020767, -0.0000020769,0.0000020766,0.0000020762,0.0000020741,0.0000020685, -0.0000020629,0.0000020619,0.0000020633,0.0000020636,0.0000020656, -0.0000020726,0.0000020831,0.0000020953,0.0000021047,0.0000021104, -0.0000021148,0.0000021215,0.0000021280,0.0000021289,0.0000021284, -0.0000021276,0.0000021245,0.0000021198,0.0000021177,0.0000021168, -0.0000021151,0.0000021142,0.0000021135,0.0000021119,0.0000021108, -0.0000021114,0.0000021139,0.0000021184,0.0000021250,0.0000021333, -0.0000021411,0.0000021479,0.0000021539,0.0000021589,0.0000021628, -0.0000021655,0.0000021668,0.0000021670,0.0000021669,0.0000021671, -0.0000021675,0.0000021682,0.0000021686,0.0000021677,0.0000021654, -0.0000021617,0.0000021571,0.0000021522,0.0000021473,0.0000021434, -0.0000021408,0.0000021402,0.0000021411,0.0000021429,0.0000021446, -0.0000021454,0.0000021451,0.0000021431,0.0000021397,0.0000021358, -0.0000021320,0.0000021305,0.0000021330,0.0000021398,0.0000021508, -0.0000021641,0.0000021778,0.0000021890,0.0000021979,0.0000022017, -0.0000022033,0.0000022026,0.0000022005,0.0000021991,0.0000021980, -0.0000021986,0.0000022000,0.0000022037,0.0000022099,0.0000022163, -0.0000022229,0.0000022297,0.0000022360,0.0000022408,0.0000022431, -0.0000022426,0.0000022402,0.0000022363,0.0000022306,0.0000022228, -0.0000022134,0.0000022058,0.0000022036,0.0000022071,0.0000022150, -0.0000022238,0.0000022301,0.0000022340,0.0000022372,0.0000022405, -0.0000022436,0.0000022461,0.0000022474,0.0000022468,0.0000022445, -0.0000022402,0.0000022355,0.0000022308,0.0000022277,0.0000022265, -0.0000022265,0.0000022262,0.0000022260,0.0000022255,0.0000022218, -0.0000022114,0.0000021966,0.0000021832,0.0000021723,0.0000021592, -0.0000021425,0.0000021259,0.0000021108,0.0000020943,0.0000020749, -0.0000020564,0.0000020423,0.0000020329,0.0000020262,0.0000020200, -0.0000020148,0.0000020111,0.0000020095,0.0000020081,0.0000020061, -0.0000020051,0.0000020070,0.0000020108,0.0000020136,0.0000020142, -0.0000020133,0.0000020106,0.0000020069,0.0000020028,0.0000020001, -0.0000019986,0.0000019994,0.0000020008,0.0000020012,0.0000020003, -0.0000019979,0.0000019957,0.0000019942,0.0000019945,0.0000019969, -0.0000020009,0.0000020053,0.0000020093,0.0000020136,0.0000020188, -0.0000020236,0.0000020269,0.0000020284,0.0000020287,0.0000020280, -0.0000020263,0.0000020238,0.0000020198,0.0000020156,0.0000020126, -0.0000020106,0.0000020106,0.0000020120,0.0000020161,0.0000020242, -0.0000020369,0.0000020527,0.0000020677,0.0000020770,0.0000020797, -0.0000020771,0.0000020745,0.0000020743,0.0000020758,0.0000020755, -0.0000020735,0.0000020705,0.0000020672,0.0000020617,0.0000020562, -0.0000020529,0.0000020519,0.0000020535,0.0000020590,0.0000020666, -0.0000020757,0.0000020852,0.0000020941,0.0000021019,0.0000021081, -0.0000021138,0.0000021197,0.0000021255,0.0000021305,0.0000021346, -0.0000021391,0.0000021448,0.0000021514,0.0000021579,0.0000021635, -0.0000021675,0.0000021694,0.0000021693,0.0000021677,0.0000021656, -0.0000021633,0.0000021621,0.0000021620,0.0000021634,0.0000021649, -0.0000021667,0.0000021675,0.0000021682,0.0000021679,0.0000021677, -0.0000021670,0.0000021663,0.0000021655,0.0000021646,0.0000021636, -0.0000021624,0.0000021612,0.0000021599,0.0000021589,0.0000021577, -0.0000021559,0.0000021531,0.0000021495,0.0000021448,0.0000021396, -0.0000021342,0.0000021283,0.0000021221,0.0000021157,0.0000021091, -0.0000021028,0.0000020979,0.0000020946,0.0000020931,0.0000020930, -0.0000020934,0.0000020938,0.0000020938,0.0000020937,0.0000020930, -0.0000020917,0.0000020896,0.0000020867,0.0000020833,0.0000020805, -0.0000020786,0.0000020776,0.0000020769,0.0000020765,0.0000020771, -0.0000020787,0.0000020816,0.0000020855,0.0000020886,0.0000020896, -0.0000020891,0.0000020871,0.0000020844,0.0000020813,0.0000020781, -0.0000020748,0.0000020721,0.0000020704,0.0000020697,0.0000020701, -0.0000020714,0.0000020724,0.0000020726,0.0000020723,0.0000020710, -0.0000020686,0.0000020650,0.0000020601,0.0000020543,0.0000020493, -0.0000020467,0.0000020464,0.0000020473,0.0000020476,0.0000020467, -0.0000020443,0.0000020409,0.0000020372,0.0000020338,0.0000020309, -0.0000020287,0.0000020286,0.0000020296,0.0000020313,0.0000020340, -0.0000020376,0.0000020410,0.0000020440,0.0000020472,0.0000020506, -0.0000020537,0.0000020573,0.0000020612,0.0000020650,0.0000020681, -0.0000020703,0.0000020716,0.0000020716,0.0000020702,0.0000020684, -0.0000020665,0.0000020641,0.0000020618,0.0000020596,0.0000020575, -0.0000020557,0.0000020538,0.0000020517,0.0000020495,0.0000020476, -0.0000020459,0.0000020445,0.0000020431,0.0000020416,0.0000020398, -0.0000020381,0.0000020368,0.0000020358,0.0000020345,0.0000020327, -0.0000020305,0.0000020278,0.0000020246,0.0000020207,0.0000020165, -0.0000020122,0.0000020078,0.0000020036,0.0000019998,0.0000019968, -0.0000019947,0.0000019931,0.0000019918,0.0000019905,0.0000019892, -0.0000019884,0.0000019879,0.0000019874,0.0000019866,0.0000019854, -0.0000019839,0.0000019819,0.0000019797,0.0000019775,0.0000019756, -0.0000019738,0.0000019721,0.0000019707,0.0000019692,0.0000019679, -0.0000019671,0.0000019668,0.0000019677,0.0000019697,0.0000019724, -0.0000019754,0.0000019781,0.0000019803,0.0000019814,0.0000019817, -0.0000019812,0.0000019799,0.0000019784,0.0000019772,0.0000019764, -0.0000019759,0.0000019754,0.0000019751,0.0000019750,0.0000019748, -0.0000019744,0.0000019735,0.0000019723,0.0000019708,0.0000019689, -0.0000019666,0.0000019638,0.0000019608,0.0000019580,0.0000019554, -0.0000019535,0.0000019521,0.0000019520,0.0000019527,0.0000019542, -0.0000019560,0.0000019580,0.0000019597,0.0000019609,0.0000019617, -0.0000019619,0.0000019615,0.0000019605,0.0000019593,0.0000019583, -0.0000019580,0.0000019583,0.0000019599,0.0000019621,0.0000019644, -0.0000019660,0.0000019665,0.0000019664,0.0000019658,0.0000019650, -0.0000019640,0.0000019627,0.0000019615,0.0000019606,0.0000019603, -0.0000019603,0.0000019604,0.0000019600,0.0000019592,0.0000019585, -0.0000019585,0.0000019590,0.0000019600,0.0000019614,0.0000019632, -0.0000019648,0.0000019661,0.0000019675,0.0000019695,0.0000019721, -0.0000019755,0.0000019786,0.0000019793,0.0000019759,0.0000019698, -0.0000019633,0.0000019616,0.0000019706,0.0000019857,0.0000020038, -0.0000020226,0.0000020250,0.0000020244,0.0000020357,0.0000020472, -0.0000020507,0.0000020524,0.0000020519,0.0000020466,0.0000020406, -0.0000020379,0.0000020380,0.0000020388,0.0000020400,0.0000020413, -0.0000020425,0.0000020434,0.0000020439,0.0000020433,0.0000020403, -0.0000020362,0.0000020316,0.0000020262,0.0000020220,0.0000020214, -0.0000020246,0.0000020291,0.0000020298,0.0000020243,0.0000020165, -0.0000020129,0.0000020129,0.0000020142,0.0000020173,0.0000020204, -0.0000020219,0.0000020219,0.0000020208,0.0000020187,0.0000020175, -0.0000020191,0.0000020231,0.0000020277,0.0000020331,0.0000020384, -0.0000020404,0.0000020381,0.0000020335,0.0000020314,0.0000020325, -0.0000020353,0.0000020366,0.0000020357,0.0000020333,0.0000020311, -0.0000020293,0.0000020274,0.0000020259,0.0000020250,0.0000020241, -0.0000020235,0.0000020236,0.0000020240,0.0000020242,0.0000020240, -0.0000020240,0.0000020240,0.0000020239,0.0000020239,0.0000020235, -0.0000020226,0.0000020218,0.0000020207,0.0000020190,0.0000020173, -0.0000020159,0.0000020144,0.0000020129,0.0000020114,0.0000020099, -0.0000020084,0.0000020071,0.0000020059,0.0000020048,0.0000020038, -0.0000020029,0.0000020023,0.0000020020,0.0000020017,0.0000020013, -0.0000020011,0.0000020010,0.0000020009,0.0000020011,0.0000020015, -0.0000020021,0.0000020027,0.0000020033,0.0000020038,0.0000020041, -0.0000020044,0.0000020046,0.0000020047,0.0000020046,0.0000020044, -0.0000020040,0.0000020035,0.0000020032,0.0000020028,0.0000020024, -0.0000020021,0.0000020020,0.0000020022,0.0000020024,0.0000020028, -0.0000020031,0.0000020034,0.0000020039,0.0000020044,0.0000020047, -0.0000020050,0.0000020051,0.0000020051,0.0000020050,0.0000020046, -0.0000020040,0.0000020033,0.0000020024,0.0000020006,0.0000019981, -0.0000019953,0.0000019925,0.0000019902,0.0000019889,0.0000019878, -0.0000019885,0.0000019910,0.0000019943,0.0000019975,0.0000019998, -0.0000020007,0.0000020004,0.0000019984,0.0000019956,0.0000019929, -0.0000019904,0.0000019882,0.0000019861,0.0000019837,0.0000019809, -0.0000019779,0.0000019750,0.0000019709,0.0000019665,0.0000019631, -0.0000019615,0.0000019608,0.0000019591,0.0000019551,0.0000019497, -0.0000019440,0.0000019396,0.0000019373,0.0000019373,0.0000019398, -0.0000019446,0.0000019510,0.0000019576,0.0000019625,0.0000019629, -0.0000019666,0.0000019677,0.0000019668,0.0000019664,0.0000019673, -0.0000019688,0.0000019713,0.0000019737,0.0000019762,0.0000019793, -0.0000019829,0.0000019867,0.0000019908,0.0000019954,0.0000020005, -0.0000020055,0.0000020100,0.0000020144,0.0000020185,0.0000020223, -0.0000020262,0.0000020300,0.0000020337,0.0000020371,0.0000020402, -0.0000020430,0.0000020459,0.0000020488,0.0000020517,0.0000020543, -0.0000020567,0.0000020590,0.0000020613,0.0000020635,0.0000020655, -0.0000020672,0.0000020684,0.0000020686,0.0000020681,0.0000020673, -0.0000020665,0.0000020654,0.0000020638,0.0000020622,0.0000020614, -0.0000020614,0.0000020631,0.0000020656,0.0000020683,0.0000020704, -0.0000020709,0.0000020701,0.0000020684,0.0000020661,0.0000020632, -0.0000020598,0.0000020562,0.0000020523,0.0000020487,0.0000020464, -0.0000020453,0.0000020452,0.0000020447,0.0000020440,0.0000020434, -0.0000020427,0.0000020411,0.0000020392,0.0000020384,0.0000020380, -0.0000020366,0.0000020348,0.0000020333,0.0000020337,0.0000020364, -0.0000020398,0.0000020426,0.0000020455,0.0000020488,0.0000020526, -0.0000020560,0.0000020587,0.0000020611,0.0000020645,0.0000020686, -0.0000020727,0.0000020760,0.0000020785,0.0000020803,0.0000020814, -0.0000020816,0.0000020814,0.0000020802,0.0000020779,0.0000020758, -0.0000020746,0.0000020740,0.0000020740,0.0000020749,0.0000020769, -0.0000020796,0.0000020822,0.0000020850,0.0000020881,0.0000020921, -0.0000020970,0.0000021022,0.0000021073,0.0000021117,0.0000021152, -0.0000021182,0.0000021206,0.0000021223,0.0000021234,0.0000021239, -0.0000021239,0.0000021230,0.0000021214,0.0000021193,0.0000021172, -0.0000021151,0.0000021129,0.0000021104,0.0000021079,0.0000021053, -0.0000021026,0.0000020999,0.0000020975,0.0000020953,0.0000020936, -0.0000020927,0.0000020927,0.0000020932,0.0000020941,0.0000020952, -0.0000020961,0.0000020960,0.0000020947,0.0000020924,0.0000020899, -0.0000020879,0.0000020865,0.0000020846,0.0000020819,0.0000020794, -0.0000020779,0.0000020772,0.0000020771,0.0000020774,0.0000020784, -0.0000020798,0.0000020809,0.0000020817,0.0000020833,0.0000020863, -0.0000020899,0.0000020938,0.0000020980,0.0000021022,0.0000021056, -0.0000021075,0.0000021081,0.0000021079,0.0000021067,0.0000021046, -0.0000021025,0.0000021019,0.0000021019,0.0000021013,0.0000020997, -0.0000020984,0.0000020981,0.0000020997,0.0000021050,0.0000021127, -0.0000021195,0.0000021251,0.0000021307,0.0000021356,0.0000021383, -0.0000021393,0.0000021397,0.0000021401,0.0000021400,0.0000021384, -0.0000021351,0.0000021306,0.0000021266,0.0000021241,0.0000021236, -0.0000021239,0.0000021246,0.0000021254,0.0000021256,0.0000021250, -0.0000021242,0.0000021232,0.0000021220,0.0000021207,0.0000021195, -0.0000021186,0.0000021177,0.0000021168,0.0000021162,0.0000021158, -0.0000021155,0.0000021155,0.0000021163,0.0000021185,0.0000021226, -0.0000021271,0.0000021317,0.0000021368,0.0000021427,0.0000021491, -0.0000021549,0.0000021593,0.0000021631,0.0000021671,0.0000021721, -0.0000021774,0.0000021822,0.0000021864,0.0000021902,0.0000021934, -0.0000021959,0.0000021969,0.0000021964,0.0000021945,0.0000021924, -0.0000021890,0.0000021851,0.0000021807,0.0000021757,0.0000021705, -0.0000021656,0.0000021614,0.0000021586,0.0000021567,0.0000021550, -0.0000021532,0.0000021517,0.0000021505,0.0000021499,0.0000021499, -0.0000021504,0.0000021512,0.0000021521,0.0000021532,0.0000021544, -0.0000021558,0.0000021572,0.0000021586,0.0000021600,0.0000021613, -0.0000021624,0.0000021633,0.0000021638,0.0000021638,0.0000021632, -0.0000021622,0.0000021610,0.0000021598,0.0000021584,0.0000021567, -0.0000021546,0.0000021523,0.0000021497,0.0000021470,0.0000021439, -0.0000021402,0.0000021363,0.0000021324,0.0000021291,0.0000021280, -0.0000021297,0.0000021364,0.0000021450,0.0000021520,0.0000021573, -0.0000021609,0.0000021615,0.0000021599,0.0000021545,0.0000021503, -0.0000021484,0.0000021465,0.0000021434,0.0000021395,0.0000021362, -0.0000021340,0.0000021338,0.0000021353,0.0000021365,0.0000021359, -0.0000021334,0.0000021296,0.0000021257,0.0000021228,0.0000021223, -0.0000021237,0.0000021260,0.0000021268,0.0000021258,0.0000021235, -0.0000021209,0.0000021183,0.0000021156,0.0000021134,0.0000021123, -0.0000021119,0.0000021118,0.0000021125,0.0000021131,0.0000021134, -0.0000021136,0.0000021130,0.0000021127,0.0000021128,0.0000021136, -0.0000021157,0.0000021185,0.0000021202,0.0000021214,0.0000021220, -0.0000021216,0.0000021201,0.0000021176,0.0000021143,0.0000021098, -0.0000021041,0.0000020977,0.0000020928,0.0000020897,0.0000020881, -0.0000020875,0.0000020875,0.0000020876,0.0000020876,0.0000020876, -0.0000020883,0.0000020887,0.0000020884,0.0000020884,0.0000020878, -0.0000020872,0.0000020865,0.0000020843,0.0000020793,0.0000020720, -0.0000020609,0.0000020471,0.0000020384,0.0000020339,0.0000020290, -0.0000020171,0.0000020165,0.0000020232,0.0000020248,0.0000020258, -0.0000020338,0.0000020444,0.0000020494,0.0000020490,0.0000020496, -0.0000020550,0.0000020611,0.0000020671,0.0000020697,0.0000020720, -0.0000020789,0.0000020934,0.0000021095,0.0000021176,0.0000021230, -0.0000021402,0.0000021482,0.0000021455,0.0000021529,0.0000021582, -0.0000021551,0.0000021551,0.0000021643,0.0000021698,0.0000021658, -0.0000021654,0.0000021831,0.0000021929,0.0000021879,0.0000021769, -0.0000021723,0.0000021742,0.0000021740,0.0000021785,0.0000021890, -0.0000021860,0.0000021851,0.0000021981,0.0000022037,0.0000022040, -0.0000022111,0.0000022269,0.0000022378,0.0000022427,0.0000022462, -0.0000022468,0.0000022464,0.0000022461,0.0000022466,0.0000022482, -0.0000022499,0.0000022505,0.0000022520,0.0000022554,0.0000022578, -0.0000022574,0.0000022531,0.0000022443,0.0000022334,0.0000022214, -0.0000022109,0.0000022060,0.0000022053,0.0000022068,0.0000022108, -0.0000022149,0.0000022160,0.0000022134,0.0000022077,0.0000022007, -0.0000021926,0.0000021844,0.0000021773,0.0000021693,0.0000021600, -0.0000021504,0.0000021413,0.0000021340,0.0000021285,0.0000021236, -0.0000021190,0.0000021146,0.0000021099,0.0000021045,0.0000020994, -0.0000020991,0.0000021006,0.0000021037,0.0000021075,0.0000021134, -0.0000021198,0.0000021276,0.0000021378,0.0000021497,0.0000021625, -0.0000021737,0.0000021802,0.0000021808,0.0000021769,0.0000021710, -0.0000021653,0.0000021610,0.0000021604,0.0000021610,0.0000021606, -0.0000021587,0.0000021554,0.0000021522,0.0000021499,0.0000021485, -0.0000021478,0.0000021472,0.0000021467,0.0000021460,0.0000021457, -0.0000021473,0.0000021493,0.0000021506,0.0000021529,0.0000021556, -0.0000021575,0.0000021592,0.0000021631,0.0000021674,0.0000021688, -0.0000021678,0.0000021658,0.0000021657,0.0000021675,0.0000021701, -0.0000021729,0.0000021759,0.0000021787,0.0000021807,0.0000021818, -0.0000021828,0.0000021851,0.0000021886,0.0000021921,0.0000021952, -0.0000021979,0.0000022014,0.0000022045,0.0000022067,0.0000022086, -0.0000022104,0.0000022131,0.0000022171,0.0000022216,0.0000022263, -0.0000022308,0.0000022342,0.0000022366,0.0000022380,0.0000022377, -0.0000022349,0.0000022317,0.0000022296,0.0000022269,0.0000022238, -0.0000022207,0.0000022174,0.0000022141,0.0000022120,0.0000022099, -0.0000022082,0.0000022067,0.0000022064,0.0000022063,0.0000022064, -0.0000022069,0.0000022073,0.0000022081,0.0000022092,0.0000022104, -0.0000022119,0.0000022135,0.0000022151,0.0000022169,0.0000022191, -0.0000022213,0.0000022235,0.0000022257,0.0000022281,0.0000022306, -0.0000022324,0.0000022342,0.0000022352,0.0000022349,0.0000022340, -0.0000022324,0.0000022298,0.0000022266,0.0000022232,0.0000022197, -0.0000022164,0.0000022129,0.0000022085,0.0000022026,0.0000021947, -0.0000021856,0.0000021764,0.0000021681,0.0000021613,0.0000021569, -0.0000021548,0.0000021549,0.0000021562,0.0000021582,0.0000021607, -0.0000021633,0.0000021659,0.0000021682,0.0000021704,0.0000021725, -0.0000021749,0.0000021772,0.0000021792,0.0000021811,0.0000021833, -0.0000021858,0.0000021878,0.0000021890,0.0000021893,0.0000021889, -0.0000021881,0.0000021877,0.0000021872,0.0000021872,0.0000021877, -0.0000021887,0.0000021889,0.0000021885,0.0000021875,0.0000021854, -0.0000021823,0.0000021782,0.0000021735,0.0000021688,0.0000021640, -0.0000021592,0.0000021557,0.0000021539,0.0000021542,0.0000021555, -0.0000021598,0.0000021661,0.0000021728,0.0000021794,0.0000021849, -0.0000021881,0.0000021908,0.0000021930,0.0000021943,0.0000021952, -0.0000021963,0.0000021973,0.0000021981,0.0000021984,0.0000021978, -0.0000021964,0.0000021946,0.0000021923,0.0000021894,0.0000021861, -0.0000021829,0.0000021800,0.0000021774,0.0000021747,0.0000021721, -0.0000021702,0.0000021686,0.0000021669,0.0000021649,0.0000021631, -0.0000021618,0.0000021606,0.0000021596,0.0000021586,0.0000021573, -0.0000021557,0.0000021538,0.0000021519,0.0000021501,0.0000021491, -0.0000021495,0.0000021510,0.0000021534,0.0000021554,0.0000021582, -0.0000021601,0.0000021614,0.0000021622,0.0000021618,0.0000021608, -0.0000021592,0.0000021572,0.0000021550,0.0000021526,0.0000021499, -0.0000021469,0.0000021442,0.0000021419,0.0000021400,0.0000021385, -0.0000021369,0.0000021353,0.0000021338,0.0000021327,0.0000021318, -0.0000021309,0.0000021304,0.0000021306,0.0000021311,0.0000021315, -0.0000021316,0.0000021313,0.0000021303,0.0000021284,0.0000021256, -0.0000021223,0.0000021182,0.0000021130,0.0000021069,0.0000021005, -0.0000020948,0.0000020899,0.0000020853,0.0000020809,0.0000020770, -0.0000020747,0.0000020743,0.0000020763,0.0000020774,0.0000020796, -0.0000020816,0.0000020831,0.0000020844,0.0000020850,0.0000020849, -0.0000020840,0.0000020823,0.0000020811,0.0000020811,0.0000020826, -0.0000020854,0.0000020888,0.0000020924,0.0000020964,0.0000021004, -0.0000021043,0.0000021077,0.0000021105,0.0000021122,0.0000021129, -0.0000021120,0.0000021104,0.0000021092,0.0000021085,0.0000021084, -0.0000021093,0.0000021105,0.0000021119,0.0000021133,0.0000021144, -0.0000021140,0.0000021128,0.0000021113,0.0000021083,0.0000021045, -0.0000021000,0.0000020955,0.0000020915,0.0000020875,0.0000020839, -0.0000020808,0.0000020780,0.0000020755,0.0000020725,0.0000020692, -0.0000020656,0.0000020625,0.0000020608,0.0000020593,0.0000020583, -0.0000020585,0.0000020573,0.0000020604,0.0000020625,0.0000020654, -0.0000020684,0.0000020699,0.0000020719,0.0000020732,0.0000020736, -0.0000020733,0.0000020726,0.0000020721,0.0000020723,0.0000020729, -0.0000020733,0.0000020735,0.0000020733,0.0000020730,0.0000020725, -0.0000020715,0.0000020705,0.0000020694,0.0000020682,0.0000020669, -0.0000020651,0.0000020631,0.0000020610,0.0000020593,0.0000020572, -0.0000020550,0.0000020528,0.0000020508,0.0000020492,0.0000020481, -0.0000020470,0.0000020464,0.0000020461,0.0000020461,0.0000020463, -0.0000020464,0.0000020459,0.0000020453,0.0000020445,0.0000020437, -0.0000020426,0.0000020411,0.0000020392,0.0000020374,0.0000020354, -0.0000020332,0.0000020310,0.0000020287,0.0000020266,0.0000020250, -0.0000020238,0.0000020240,0.0000020255,0.0000020275,0.0000020293, -0.0000020303,0.0000020303,0.0000020295,0.0000020280,0.0000020261, -0.0000020237,0.0000020212,0.0000020195,0.0000020180,0.0000020165, -0.0000020143,0.0000020113,0.0000020081,0.0000020046,0.0000020012, -0.0000019981,0.0000019956,0.0000019933,0.0000019906,0.0000019876, -0.0000019849,0.0000019826,0.0000019806,0.0000019787,0.0000019771, -0.0000019750,0.0000019725,0.0000019697,0.0000019671,0.0000019651, -0.0000019629,0.0000019613,0.0000019613,0.0000019641,0.0000019692, -0.0000019756,0.0000019824,0.0000019879,0.0000019911,0.0000019919, -0.0000019902,0.0000019852,0.0000019797,0.0000019775,0.0000019777, -0.0000019780,0.0000019773,0.0000019752,0.0000019724,0.0000019693, -0.0000019659,0.0000019638,0.0000019637,0.0000019644,0.0000019654, -0.0000019666,0.0000019655,0.0000019610,0.0000019565,0.0000019550, -0.0000019571,0.0000019621,0.0000019681,0.0000019739,0.0000019792, -0.0000019836,0.0000019879,0.0000019921,0.0000019952,0.0000019974, -0.0000020002,0.0000020048,0.0000020103,0.0000020151,0.0000020188, -0.0000020220,0.0000020262,0.0000020325,0.0000020397,0.0000020456, -0.0000020492,0.0000020504,0.0000020489,0.0000020459,0.0000020432, -0.0000020406,0.0000020381,0.0000020367,0.0000020368,0.0000020390, -0.0000020434,0.0000020492,0.0000020560,0.0000020621,0.0000020663, -0.0000020675,0.0000020668,0.0000020637,0.0000020604,0.0000020558, -0.0000020517,0.0000020479,0.0000020443,0.0000020417,0.0000020392, -0.0000020382,0.0000020385,0.0000020406,0.0000020435,0.0000020480, -0.0000020539,0.0000020619,0.0000020727,0.0000020855,0.0000020986, -0.0000021097,0.0000021180,0.0000021233,0.0000021258,0.0000021257, -0.0000021238,0.0000021201,0.0000021152,0.0000021094,0.0000021034, -0.0000020980,0.0000020933,0.0000020895,0.0000020862,0.0000020831, -0.0000020800,0.0000020769,0.0000020738,0.0000020708,0.0000020681, -0.0000020659,0.0000020641,0.0000020630,0.0000020625,0.0000020624, -0.0000020629,0.0000020640,0.0000020656,0.0000020674,0.0000020693, -0.0000020711,0.0000020729,0.0000020746,0.0000020759,0.0000020768, -0.0000020778,0.0000020790,0.0000020804,0.0000020813,0.0000020818, -0.0000020821,0.0000020824,0.0000020829,0.0000020837,0.0000020847, -0.0000020858,0.0000020860,0.0000020856,0.0000020847,0.0000020840, -0.0000020833,0.0000020817,0.0000020784,0.0000020738,0.0000020691, -0.0000020658,0.0000020643,0.0000020643,0.0000020656,0.0000020674, -0.0000020688,0.0000020703,0.0000020722,0.0000020740,0.0000020752, -0.0000020753,0.0000020744,0.0000020736,0.0000020721,0.0000020672, -0.0000020615,0.0000020596,0.0000020605,0.0000020608,0.0000020626, -0.0000020690,0.0000020798,0.0000020927,0.0000021021,0.0000021078, -0.0000021127,0.0000021202,0.0000021269,0.0000021283,0.0000021283, -0.0000021280,0.0000021255,0.0000021216,0.0000021195,0.0000021173, -0.0000021142,0.0000021117,0.0000021101,0.0000021090,0.0000021089, -0.0000021104,0.0000021130,0.0000021163,0.0000021210,0.0000021270, -0.0000021332,0.0000021391,0.0000021445,0.0000021491,0.0000021530, -0.0000021559,0.0000021577,0.0000021586,0.0000021588,0.0000021590, -0.0000021593,0.0000021601,0.0000021610,0.0000021611,0.0000021601, -0.0000021579,0.0000021547,0.0000021507,0.0000021469,0.0000021427, -0.0000021388,0.0000021356,0.0000021341,0.0000021341,0.0000021353, -0.0000021373,0.0000021394,0.0000021405,0.0000021406,0.0000021390, -0.0000021363,0.0000021329,0.0000021296,0.0000021279,0.0000021284, -0.0000021339,0.0000021431,0.0000021558,0.0000021698,0.0000021837, -0.0000021939,0.0000022018,0.0000022036,0.0000022053,0.0000022037, -0.0000022019,0.0000021976,0.0000021960,0.0000021971,0.0000021949, -0.0000021967,0.0000021987,0.0000022019,0.0000022068,0.0000022110, -0.0000022144,0.0000022166,0.0000022174,0.0000022163,0.0000022127, -0.0000022067,0.0000022006,0.0000021977,0.0000021988,0.0000022046, -0.0000022136,0.0000022218,0.0000022271,0.0000022306,0.0000022335, -0.0000022364,0.0000022388,0.0000022403,0.0000022406,0.0000022399, -0.0000022374,0.0000022335,0.0000022294,0.0000022264,0.0000022254, -0.0000022256,0.0000022262,0.0000022264,0.0000022262,0.0000022258, -0.0000022203,0.0000022081,0.0000021937,0.0000021817,0.0000021704, -0.0000021559,0.0000021386,0.0000021223,0.0000021061,0.0000020873, -0.0000020669,0.0000020491,0.0000020363,0.0000020277,0.0000020207, -0.0000020143,0.0000020093,0.0000020056,0.0000020042,0.0000020025, -0.0000020001,0.0000019994,0.0000020019,0.0000020057,0.0000020082, -0.0000020090,0.0000020086,0.0000020070,0.0000020041,0.0000020000, -0.0000019964,0.0000019941,0.0000019942,0.0000019955,0.0000019967, -0.0000019962,0.0000019944,0.0000019915,0.0000019894,0.0000019890, -0.0000019910,0.0000019948,0.0000019994,0.0000020041,0.0000020091, -0.0000020144,0.0000020196,0.0000020238,0.0000020257,0.0000020260, -0.0000020256,0.0000020247,0.0000020229,0.0000020202,0.0000020171, -0.0000020142,0.0000020124,0.0000020118,0.0000020126,0.0000020139, -0.0000020188,0.0000020289,0.0000020440,0.0000020601,0.0000020718, -0.0000020755,0.0000020731,0.0000020699,0.0000020692,0.0000020705, -0.0000020722,0.0000020718,0.0000020718,0.0000020698,0.0000020660, -0.0000020614,0.0000020570,0.0000020542,0.0000020543,0.0000020560, -0.0000020612,0.0000020684,0.0000020770,0.0000020863,0.0000020947, -0.0000021020,0.0000021089,0.0000021152,0.0000021205,0.0000021246, -0.0000021279,0.0000021315,0.0000021364,0.0000021420,0.0000021477, -0.0000021533,0.0000021583,0.0000021618,0.0000021635,0.0000021636, -0.0000021622,0.0000021604,0.0000021586,0.0000021580,0.0000021578, -0.0000021587,0.0000021603,0.0000021617,0.0000021627,0.0000021635, -0.0000021638,0.0000021634,0.0000021626,0.0000021616,0.0000021603, -0.0000021589,0.0000021577,0.0000021564,0.0000021552,0.0000021541, -0.0000021528,0.0000021508,0.0000021477,0.0000021435,0.0000021382, -0.0000021320,0.0000021253,0.0000021184,0.0000021114,0.0000021046, -0.0000020982,0.0000020932,0.0000020902,0.0000020892,0.0000020894, -0.0000020900,0.0000020904,0.0000020904,0.0000020901,0.0000020896, -0.0000020887,0.0000020872,0.0000020849,0.0000020822,0.0000020792, -0.0000020766,0.0000020746,0.0000020734,0.0000020726,0.0000020732, -0.0000020751,0.0000020776,0.0000020805,0.0000020832,0.0000020844, -0.0000020844,0.0000020832,0.0000020813,0.0000020792,0.0000020767, -0.0000020740,0.0000020716,0.0000020695,0.0000020681,0.0000020681, -0.0000020695,0.0000020711,0.0000020722,0.0000020728,0.0000020725, -0.0000020710,0.0000020683,0.0000020643,0.0000020592,0.0000020538, -0.0000020490,0.0000020462,0.0000020455,0.0000020458,0.0000020459, -0.0000020445,0.0000020414,0.0000020376,0.0000020332,0.0000020285, -0.0000020241,0.0000020201,0.0000020169,0.0000020152,0.0000020154, -0.0000020175,0.0000020207,0.0000020243,0.0000020282,0.0000020318, -0.0000020351,0.0000020387,0.0000020427,0.0000020471,0.0000020515, -0.0000020555,0.0000020592,0.0000020623,0.0000020647,0.0000020660, -0.0000020664,0.0000020652,0.0000020637,0.0000020629,0.0000020620, -0.0000020607,0.0000020589,0.0000020566,0.0000020540,0.0000020516, -0.0000020495,0.0000020474,0.0000020454,0.0000020433,0.0000020411, -0.0000020387,0.0000020366,0.0000020349,0.0000020330,0.0000020308, -0.0000020280,0.0000020246,0.0000020211,0.0000020177,0.0000020141, -0.0000020104,0.0000020069,0.0000020035,0.0000020000,0.0000019971, -0.0000019950,0.0000019933,0.0000019918,0.0000019901,0.0000019881, -0.0000019859,0.0000019837,0.0000019820,0.0000019805,0.0000019789, -0.0000019775,0.0000019761,0.0000019745,0.0000019729,0.0000019719, -0.0000019715,0.0000019714,0.0000019712,0.0000019708,0.0000019699, -0.0000019686,0.0000019667,0.0000019651,0.0000019644,0.0000019645, -0.0000019659,0.0000019684,0.0000019714,0.0000019746,0.0000019770, -0.0000019786,0.0000019792,0.0000019787,0.0000019775,0.0000019763, -0.0000019752,0.0000019745,0.0000019739,0.0000019734,0.0000019733, -0.0000019734,0.0000019734,0.0000019732,0.0000019726,0.0000019715, -0.0000019698,0.0000019677,0.0000019651,0.0000019622,0.0000019591, -0.0000019559,0.0000019530,0.0000019510,0.0000019498,0.0000019491, -0.0000019497,0.0000019510,0.0000019526,0.0000019540,0.0000019551, -0.0000019561,0.0000019569,0.0000019573,0.0000019571,0.0000019564, -0.0000019554,0.0000019547,0.0000019546,0.0000019553,0.0000019567, -0.0000019583,0.0000019597,0.0000019605,0.0000019605,0.0000019601, -0.0000019594,0.0000019586,0.0000019574,0.0000019563,0.0000019555, -0.0000019554,0.0000019558,0.0000019562,0.0000019559,0.0000019551, -0.0000019544,0.0000019542,0.0000019543,0.0000019551,0.0000019566, -0.0000019587,0.0000019611,0.0000019630,0.0000019646,0.0000019665, -0.0000019690,0.0000019724,0.0000019762,0.0000019785,0.0000019768, -0.0000019710,0.0000019645,0.0000019603,0.0000019647,0.0000019791, -0.0000019952,0.0000020153,0.0000020263,0.0000020240,0.0000020289, -0.0000020434,0.0000020504,0.0000020516,0.0000020531,0.0000020517, -0.0000020463,0.0000020419,0.0000020405,0.0000020407,0.0000020416, -0.0000020429,0.0000020439,0.0000020447,0.0000020455,0.0000020460, -0.0000020457,0.0000020420,0.0000020363,0.0000020303,0.0000020245, -0.0000020212,0.0000020217,0.0000020257,0.0000020286,0.0000020269, -0.0000020203,0.0000020146,0.0000020133,0.0000020144,0.0000020167, -0.0000020198,0.0000020217,0.0000020219,0.0000020206,0.0000020181, -0.0000020165,0.0000020173,0.0000020208,0.0000020250,0.0000020302, -0.0000020359,0.0000020391,0.0000020378,0.0000020335,0.0000020310, -0.0000020317,0.0000020347,0.0000020366,0.0000020364,0.0000020341, -0.0000020319,0.0000020302,0.0000020287,0.0000020274,0.0000020261, -0.0000020247,0.0000020239,0.0000020238,0.0000020239,0.0000020236, -0.0000020239,0.0000020240,0.0000020237,0.0000020232,0.0000020224, -0.0000020214,0.0000020203,0.0000020191,0.0000020178,0.0000020163, -0.0000020153,0.0000020143,0.0000020133,0.0000020120,0.0000020106, -0.0000020091,0.0000020077,0.0000020065,0.0000020053,0.0000020042, -0.0000020033,0.0000020027,0.0000020021,0.0000020016,0.0000020013, -0.0000020010,0.0000020008,0.0000020005,0.0000020002,0.0000020000, -0.0000019998,0.0000019998,0.0000019999,0.0000020002,0.0000020005, -0.0000020010,0.0000020016,0.0000020021,0.0000020023,0.0000020025, -0.0000020026,0.0000020024,0.0000020020,0.0000020015,0.0000020009, -0.0000020001,0.0000019992,0.0000019984,0.0000019979,0.0000019975, -0.0000019973,0.0000019973,0.0000019978,0.0000019984,0.0000019991, -0.0000019999,0.0000020005,0.0000020011,0.0000020014,0.0000020018, -0.0000020022,0.0000020025,0.0000020025,0.0000020023,0.0000020019, -0.0000020010,0.0000019996,0.0000019973,0.0000019944,0.0000019907, -0.0000019869,0.0000019834,0.0000019810,0.0000019795,0.0000019795, -0.0000019817,0.0000019848,0.0000019881,0.0000019907,0.0000019914, -0.0000019899,0.0000019866,0.0000019831,0.0000019807,0.0000019794, -0.0000019786,0.0000019775,0.0000019756,0.0000019730,0.0000019697, -0.0000019652,0.0000019601,0.0000019564,0.0000019549,0.0000019541, -0.0000019522,0.0000019483,0.0000019438,0.0000019404,0.0000019391, -0.0000019400,0.0000019432,0.0000019469,0.0000019520,0.0000019575, -0.0000019599,0.0000019649,0.0000019694,0.0000019719,0.0000019722, -0.0000019715,0.0000019713,0.0000019725,0.0000019748,0.0000019771, -0.0000019794,0.0000019820,0.0000019848,0.0000019881,0.0000019914, -0.0000019955,0.0000019997,0.0000020033,0.0000020065,0.0000020095, -0.0000020124,0.0000020153,0.0000020182,0.0000020211,0.0000020239, -0.0000020269,0.0000020298,0.0000020328,0.0000020360,0.0000020389, -0.0000020413,0.0000020432,0.0000020452,0.0000020473,0.0000020493, -0.0000020509,0.0000020522,0.0000020529,0.0000020528,0.0000020521, -0.0000020515,0.0000020509,0.0000020497,0.0000020478,0.0000020463, -0.0000020459,0.0000020469,0.0000020492,0.0000020525,0.0000020558, -0.0000020582,0.0000020591,0.0000020587,0.0000020573,0.0000020550, -0.0000020519,0.0000020484,0.0000020448,0.0000020414,0.0000020387, -0.0000020368,0.0000020360,0.0000020361,0.0000020360,0.0000020358, -0.0000020358,0.0000020360,0.0000020355,0.0000020346,0.0000020344, -0.0000020340,0.0000020331,0.0000020321,0.0000020316,0.0000020320, -0.0000020343,0.0000020374,0.0000020399,0.0000020420,0.0000020443, -0.0000020472,0.0000020500,0.0000020527,0.0000020550,0.0000020572, -0.0000020601,0.0000020636,0.0000020673,0.0000020706,0.0000020729, -0.0000020744,0.0000020750,0.0000020750,0.0000020750,0.0000020746, -0.0000020740,0.0000020732,0.0000020725,0.0000020718,0.0000020713, -0.0000020711,0.0000020716,0.0000020731,0.0000020750,0.0000020774, -0.0000020802,0.0000020841,0.0000020890,0.0000020941,0.0000020987, -0.0000021026,0.0000021060,0.0000021092,0.0000021117,0.0000021133, -0.0000021145,0.0000021152,0.0000021153,0.0000021145,0.0000021131, -0.0000021116,0.0000021097,0.0000021075,0.0000021050,0.0000021024, -0.0000020998,0.0000020974,0.0000020951,0.0000020930,0.0000020912, -0.0000020894,0.0000020880,0.0000020877,0.0000020881,0.0000020889, -0.0000020902,0.0000020920,0.0000020937,0.0000020948,0.0000020949, -0.0000020939,0.0000020915,0.0000020890,0.0000020873,0.0000020853, -0.0000020823,0.0000020794,0.0000020774,0.0000020762,0.0000020757, -0.0000020760,0.0000020770,0.0000020781,0.0000020785,0.0000020789, -0.0000020805,0.0000020836,0.0000020876,0.0000020922,0.0000020964, -0.0000020998,0.0000021022,0.0000021037,0.0000021045,0.0000021047, -0.0000021040,0.0000021020,0.0000020998,0.0000020989,0.0000020990, -0.0000020991,0.0000020982,0.0000020975,0.0000020978,0.0000020997, -0.0000021040,0.0000021106,0.0000021170,0.0000021224,0.0000021276, -0.0000021323,0.0000021350,0.0000021358,0.0000021360,0.0000021358, -0.0000021354,0.0000021346,0.0000021327,0.0000021298,0.0000021265, -0.0000021243,0.0000021239,0.0000021247,0.0000021266,0.0000021285, -0.0000021296,0.0000021294,0.0000021284,0.0000021267,0.0000021246, -0.0000021227,0.0000021213,0.0000021203,0.0000021195,0.0000021186, -0.0000021180,0.0000021175,0.0000021169,0.0000021165,0.0000021166, -0.0000021175,0.0000021195,0.0000021236,0.0000021287,0.0000021338, -0.0000021391,0.0000021453,0.0000021520,0.0000021578,0.0000021618, -0.0000021646,0.0000021674,0.0000021710,0.0000021752,0.0000021793, -0.0000021830,0.0000021864,0.0000021892,0.0000021916,0.0000021931, -0.0000021934,0.0000021925,0.0000021908,0.0000021886,0.0000021852, -0.0000021809,0.0000021762,0.0000021715,0.0000021674,0.0000021643, -0.0000021616,0.0000021590,0.0000021569,0.0000021552,0.0000021537, -0.0000021527,0.0000021522,0.0000021523,0.0000021528,0.0000021534, -0.0000021541,0.0000021551,0.0000021564,0.0000021578,0.0000021591, -0.0000021605,0.0000021619,0.0000021631,0.0000021639,0.0000021643, -0.0000021639,0.0000021630,0.0000021619,0.0000021606,0.0000021592, -0.0000021577,0.0000021557,0.0000021534,0.0000021509,0.0000021483, -0.0000021458,0.0000021431,0.0000021401,0.0000021368,0.0000021333, -0.0000021300,0.0000021273,0.0000021280,0.0000021328,0.0000021414, -0.0000021500,0.0000021561,0.0000021605,0.0000021638,0.0000021637, -0.0000021596,0.0000021543,0.0000021516,0.0000021503,0.0000021482, -0.0000021448,0.0000021410,0.0000021384,0.0000021378,0.0000021376, -0.0000021365,0.0000021338,0.0000021307,0.0000021281,0.0000021272, -0.0000021285,0.0000021306,0.0000021322,0.0000021328,0.0000021321, -0.0000021304,0.0000021277,0.0000021245,0.0000021216,0.0000021195, -0.0000021181,0.0000021173,0.0000021165,0.0000021160,0.0000021156, -0.0000021149,0.0000021142,0.0000021129,0.0000021115,0.0000021109, -0.0000021108,0.0000021114,0.0000021130,0.0000021139,0.0000021145, -0.0000021152,0.0000021154,0.0000021146,0.0000021127,0.0000021104, -0.0000021071,0.0000021027,0.0000020969,0.0000020908,0.0000020862, -0.0000020826,0.0000020805,0.0000020799,0.0000020801,0.0000020805, -0.0000020806,0.0000020804,0.0000020803,0.0000020798,0.0000020794, -0.0000020792,0.0000020794,0.0000020803,0.0000020800,0.0000020769, -0.0000020704,0.0000020597,0.0000020456,0.0000020354,0.0000020300, -0.0000020264,0.0000020148,0.0000020115,0.0000020185,0.0000020211, -0.0000020214,0.0000020271,0.0000020381,0.0000020455,0.0000020464, -0.0000020465,0.0000020518,0.0000020581,0.0000020643,0.0000020676, -0.0000020698,0.0000020767,0.0000020914,0.0000021079,0.0000021168, -0.0000021210,0.0000021377,0.0000021471,0.0000021444,0.0000021510, -0.0000021566,0.0000021540,0.0000021551,0.0000021630,0.0000021672, -0.0000021631,0.0000021640,0.0000021824,0.0000021899,0.0000021843, -0.0000021740,0.0000021710,0.0000021736,0.0000021731,0.0000021785, -0.0000021890,0.0000021866,0.0000021854,0.0000021976,0.0000022048, -0.0000022047,0.0000022094,0.0000022237,0.0000022368,0.0000022430, -0.0000022466,0.0000022469,0.0000022463,0.0000022466,0.0000022475, -0.0000022481,0.0000022490,0.0000022500,0.0000022518,0.0000022548, -0.0000022563,0.0000022548,0.0000022488,0.0000022385,0.0000022262, -0.0000022131,0.0000022028,0.0000021991,0.0000021991,0.0000022020, -0.0000022078,0.0000022121,0.0000022126,0.0000022097,0.0000022033, -0.0000021944,0.0000021844,0.0000021747,0.0000021661,0.0000021580, -0.0000021502,0.0000021424,0.0000021341,0.0000021272,0.0000021216, -0.0000021169,0.0000021130,0.0000021094,0.0000021049,0.0000020997, -0.0000020944,0.0000020929,0.0000020938,0.0000020970,0.0000021021, -0.0000021092,0.0000021163,0.0000021233,0.0000021296,0.0000021360, -0.0000021440,0.0000021538,0.0000021631,0.0000021695,0.0000021719, -0.0000021703,0.0000021649,0.0000021604,0.0000021564,0.0000021541, -0.0000021516,0.0000021484,0.0000021453,0.0000021434,0.0000021425, -0.0000021416,0.0000021413,0.0000021413,0.0000021419,0.0000021425, -0.0000021429,0.0000021447,0.0000021471,0.0000021474,0.0000021468, -0.0000021477,0.0000021498,0.0000021516,0.0000021545,0.0000021589, -0.0000021622,0.0000021624,0.0000021596,0.0000021576,0.0000021577, -0.0000021596,0.0000021624,0.0000021649,0.0000021675,0.0000021699, -0.0000021720,0.0000021746,0.0000021780,0.0000021818,0.0000021850, -0.0000021876,0.0000021897,0.0000021925,0.0000021954,0.0000021977, -0.0000021993,0.0000022003,0.0000022023,0.0000022060,0.0000022108, -0.0000022157,0.0000022205,0.0000022242,0.0000022272,0.0000022296, -0.0000022299,0.0000022280,0.0000022262,0.0000022246,0.0000022219, -0.0000022191,0.0000022165,0.0000022137,0.0000022105,0.0000022087, -0.0000022067,0.0000022045,0.0000022024,0.0000022012,0.0000022003, -0.0000022000,0.0000022002,0.0000021997,0.0000021994,0.0000021993, -0.0000021988,0.0000021993,0.0000022000,0.0000022013,0.0000022029, -0.0000022049,0.0000022072,0.0000022102,0.0000022132,0.0000022162, -0.0000022194,0.0000022227,0.0000022258,0.0000022289,0.0000022310, -0.0000022322,0.0000022328,0.0000022310,0.0000022291,0.0000022260, -0.0000022222,0.0000022187,0.0000022153,0.0000022120,0.0000022084, -0.0000022038,0.0000021977,0.0000021907,0.0000021833,0.0000021758, -0.0000021691,0.0000021642,0.0000021609,0.0000021592,0.0000021593, -0.0000021603,0.0000021620,0.0000021635,0.0000021649,0.0000021663, -0.0000021681,0.0000021703,0.0000021727,0.0000021750,0.0000021774, -0.0000021797,0.0000021817,0.0000021833,0.0000021847,0.0000021856, -0.0000021858,0.0000021856,0.0000021854,0.0000021855,0.0000021859, -0.0000021870,0.0000021879,0.0000021885,0.0000021882,0.0000021875, -0.0000021859,0.0000021839,0.0000021817,0.0000021792,0.0000021766, -0.0000021740,0.0000021707,0.0000021666,0.0000021626,0.0000021590, -0.0000021566,0.0000021573,0.0000021606,0.0000021654,0.0000021714, -0.0000021776,0.0000021821,0.0000021863,0.0000021902,0.0000021935, -0.0000021960,0.0000021982,0.0000022007,0.0000022029,0.0000022053, -0.0000022065,0.0000022070,0.0000022061,0.0000022043,0.0000022016, -0.0000021983,0.0000021944,0.0000021906,0.0000021873,0.0000021842, -0.0000021813,0.0000021789,0.0000021773,0.0000021759,0.0000021743, -0.0000021728,0.0000021713,0.0000021695,0.0000021675,0.0000021654, -0.0000021630,0.0000021603,0.0000021574,0.0000021544,0.0000021516, -0.0000021494,0.0000021491,0.0000021497,0.0000021512,0.0000021537, -0.0000021565,0.0000021589,0.0000021610,0.0000021629,0.0000021629, -0.0000021627,0.0000021616,0.0000021599,0.0000021576,0.0000021553, -0.0000021532,0.0000021510,0.0000021489,0.0000021473,0.0000021458, -0.0000021446,0.0000021434,0.0000021418,0.0000021400,0.0000021384, -0.0000021371,0.0000021356,0.0000021340,0.0000021333,0.0000021335, -0.0000021337,0.0000021337,0.0000021335,0.0000021336,0.0000021334, -0.0000021321,0.0000021303,0.0000021278,0.0000021243,0.0000021195, -0.0000021135,0.0000021071,0.0000021012,0.0000020958,0.0000020906, -0.0000020851,0.0000020809,0.0000020793,0.0000020794,0.0000020794, -0.0000020796,0.0000020796,0.0000020801,0.0000020798,0.0000020799, -0.0000020805,0.0000020797,0.0000020782,0.0000020773,0.0000020772, -0.0000020778,0.0000020787,0.0000020797,0.0000020806,0.0000020821, -0.0000020843,0.0000020876,0.0000020919,0.0000020962,0.0000020998, -0.0000021025,0.0000021038,0.0000021040,0.0000021038,0.0000021035, -0.0000021032,0.0000021036,0.0000021047,0.0000021065,0.0000021084, -0.0000021103,0.0000021114,0.0000021115,0.0000021107,0.0000021090, -0.0000021064,0.0000021030,0.0000021000,0.0000020968,0.0000020935, -0.0000020906,0.0000020882,0.0000020863,0.0000020846,0.0000020826, -0.0000020806,0.0000020782,0.0000020757,0.0000020730,0.0000020700, -0.0000020667,0.0000020633,0.0000020609,0.0000020594,0.0000020577, -0.0000020568,0.0000020565,0.0000020545,0.0000020533,0.0000020502, -0.0000020487,0.0000020474,0.0000020458,0.0000020442,0.0000020440, -0.0000020438,0.0000020439,0.0000020443,0.0000020448,0.0000020453, -0.0000020454,0.0000020451,0.0000020451,0.0000020449,0.0000020446, -0.0000020439,0.0000020427,0.0000020413,0.0000020398,0.0000020387, -0.0000020377,0.0000020366,0.0000020353,0.0000020342,0.0000020333, -0.0000020326,0.0000020321,0.0000020318,0.0000020320,0.0000020325, -0.0000020332,0.0000020340,0.0000020345,0.0000020346,0.0000020345, -0.0000020343,0.0000020334,0.0000020318,0.0000020298,0.0000020275, -0.0000020248,0.0000020215,0.0000020177,0.0000020140,0.0000020113, -0.0000020093,0.0000020080,0.0000020082,0.0000020096,0.0000020115, -0.0000020131,0.0000020141,0.0000020143,0.0000020139,0.0000020131, -0.0000020118,0.0000020101,0.0000020083,0.0000020072,0.0000020064, -0.0000020056,0.0000020046,0.0000020029,0.0000020010,0.0000019989, -0.0000019968,0.0000019946,0.0000019925,0.0000019909,0.0000019891, -0.0000019867,0.0000019844,0.0000019827,0.0000019813,0.0000019797, -0.0000019782,0.0000019759,0.0000019731,0.0000019704,0.0000019678, -0.0000019657,0.0000019634,0.0000019609,0.0000019599,0.0000019608, -0.0000019651,0.0000019712,0.0000019777,0.0000019833,0.0000019870, -0.0000019885,0.0000019877,0.0000019838,0.0000019777,0.0000019734, -0.0000019727,0.0000019731,0.0000019730,0.0000019717,0.0000019697, -0.0000019670,0.0000019640,0.0000019619,0.0000019615,0.0000019620, -0.0000019627,0.0000019642,0.0000019648,0.0000019619,0.0000019568, -0.0000019534,0.0000019532,0.0000019568,0.0000019634,0.0000019696, -0.0000019741,0.0000019774,0.0000019815,0.0000019861,0.0000019898, -0.0000019926,0.0000019948,0.0000019980,0.0000020030,0.0000020084, -0.0000020125,0.0000020148,0.0000020159,0.0000020180,0.0000020226, -0.0000020286,0.0000020344,0.0000020390,0.0000020421,0.0000020436, -0.0000020436,0.0000020422,0.0000020410,0.0000020395,0.0000020380, -0.0000020379,0.0000020388,0.0000020403,0.0000020433,0.0000020478, -0.0000020525,0.0000020559,0.0000020574,0.0000020575,0.0000020561, -0.0000020544,0.0000020528,0.0000020511,0.0000020508,0.0000020507, -0.0000020493,0.0000020459,0.0000020419,0.0000020381,0.0000020366, -0.0000020347,0.0000020358,0.0000020388,0.0000020449,0.0000020538, -0.0000020645,0.0000020756,0.0000020854,0.0000020931,0.0000020984, -0.0000021014,0.0000021022,0.0000021012,0.0000020986,0.0000020950, -0.0000020907,0.0000020860,0.0000020813,0.0000020770,0.0000020731, -0.0000020692,0.0000020654,0.0000020614,0.0000020574,0.0000020536, -0.0000020503,0.0000020475,0.0000020454,0.0000020441,0.0000020435, -0.0000020434,0.0000020437,0.0000020448,0.0000020468,0.0000020494, -0.0000020522,0.0000020549,0.0000020578,0.0000020606,0.0000020632, -0.0000020650,0.0000020662,0.0000020677,0.0000020692,0.0000020705, -0.0000020715,0.0000020726,0.0000020745,0.0000020772,0.0000020797, -0.0000020814,0.0000020821,0.0000020821,0.0000020819,0.0000020820, -0.0000020822,0.0000020819,0.0000020797,0.0000020755,0.0000020706, -0.0000020665,0.0000020640,0.0000020631,0.0000020635,0.0000020649, -0.0000020669,0.0000020687,0.0000020703,0.0000020719,0.0000020731, -0.0000020739,0.0000020742,0.0000020738,0.0000020723,0.0000020711, -0.0000020691,0.0000020633,0.0000020587,0.0000020584,0.0000020589, -0.0000020593,0.0000020626,0.0000020705,0.0000020832,0.0000020951, -0.0000021022,0.0000021071,0.0000021141,0.0000021227,0.0000021265, -0.0000021271,0.0000021280,0.0000021274,0.0000021241,0.0000021216, -0.0000021193,0.0000021149,0.0000021103,0.0000021073,0.0000021059, -0.0000021058,0.0000021071,0.0000021097,0.0000021126,0.0000021158, -0.0000021197,0.0000021241,0.0000021287,0.0000021334,0.0000021378, -0.0000021415,0.0000021445,0.0000021469,0.0000021485,0.0000021493, -0.0000021497,0.0000021500,0.0000021508,0.0000021521,0.0000021532, -0.0000021533,0.0000021525,0.0000021509,0.0000021487,0.0000021461, -0.0000021432,0.0000021394,0.0000021358,0.0000021326,0.0000021300, -0.0000021285,0.0000021285,0.0000021301,0.0000021325,0.0000021348, -0.0000021365,0.0000021377,0.0000021371,0.0000021354,0.0000021320, -0.0000021281,0.0000021259,0.0000021248,0.0000021264,0.0000021325, -0.0000021429,0.0000021566,0.0000021712,0.0000021851,0.0000021957, -0.0000022030,0.0000022056,0.0000022064,0.0000022055,0.0000022040, -0.0000022015,0.0000021996,0.0000021971,0.0000021953,0.0000021971, -0.0000021967,0.0000021969,0.0000021988,0.0000022000,0.0000022003, -0.0000022003,0.0000021987,0.0000021959,0.0000021938,0.0000021936, -0.0000021964,0.0000022031,0.0000022116,0.0000022188,0.0000022235, -0.0000022268,0.0000022296,0.0000022318,0.0000022330,0.0000022334, -0.0000022333,0.0000022319,0.0000022296,0.0000022266,0.0000022237, -0.0000022222,0.0000022222,0.0000022232,0.0000022241,0.0000022250, -0.0000022253,0.0000022233,0.0000022170,0.0000022052,0.0000021925, -0.0000021817,0.0000021707,0.0000021557,0.0000021386,0.0000021219, -0.0000021047,0.0000020848,0.0000020640,0.0000020464,0.0000020338, -0.0000020251,0.0000020177,0.0000020108,0.0000020047,0.0000020012, -0.0000019994,0.0000019973,0.0000019947,0.0000019938,0.0000019961, -0.0000019996,0.0000020022,0.0000020034,0.0000020037,0.0000020031, -0.0000020009,0.0000019973,0.0000019934,0.0000019904,0.0000019890, -0.0000019897,0.0000019910,0.0000019917,0.0000019908,0.0000019886, -0.0000019861,0.0000019848,0.0000019858,0.0000019891,0.0000019938, -0.0000019991,0.0000020041,0.0000020092,0.0000020147,0.0000020195, -0.0000020223,0.0000020237,0.0000020239,0.0000020230,0.0000020217, -0.0000020201,0.0000020177,0.0000020155,0.0000020140,0.0000020133, -0.0000020128,0.0000020124,0.0000020134,0.0000020203,0.0000020338, -0.0000020501,0.0000020638,0.0000020702,0.0000020694,0.0000020661, -0.0000020639,0.0000020652,0.0000020682,0.0000020712,0.0000020722, -0.0000020726,0.0000020709,0.0000020673,0.0000020623,0.0000020578, -0.0000020550,0.0000020551,0.0000020566,0.0000020612,0.0000020685, -0.0000020771,0.0000020858,0.0000020943,0.0000021023,0.0000021096, -0.0000021154,0.0000021194,0.0000021222,0.0000021250,0.0000021287, -0.0000021329,0.0000021377,0.0000021431,0.0000021484,0.0000021529, -0.0000021560,0.0000021574,0.0000021575,0.0000021568,0.0000021556, -0.0000021543,0.0000021534,0.0000021534,0.0000021539,0.0000021546, -0.0000021555,0.0000021565,0.0000021569,0.0000021567,0.0000021562, -0.0000021550,0.0000021536,0.0000021524,0.0000021514,0.0000021500, -0.0000021486,0.0000021468,0.0000021445,0.0000021410,0.0000021361, -0.0000021302,0.0000021234,0.0000021160,0.0000021084,0.0000021011, -0.0000020943,0.0000020885,0.0000020843,0.0000020821,0.0000020818, -0.0000020826,0.0000020837,0.0000020847,0.0000020853,0.0000020856, -0.0000020859,0.0000020860,0.0000020857,0.0000020845,0.0000020829, -0.0000020806,0.0000020777,0.0000020750,0.0000020730,0.0000020718, -0.0000020716,0.0000020730,0.0000020746,0.0000020764,0.0000020782, -0.0000020796,0.0000020803,0.0000020805,0.0000020800,0.0000020788, -0.0000020766,0.0000020745,0.0000020723,0.0000020700,0.0000020681, -0.0000020676,0.0000020683,0.0000020699,0.0000020715,0.0000020726, -0.0000020729,0.0000020723,0.0000020702,0.0000020668,0.0000020626, -0.0000020581,0.0000020536,0.0000020496,0.0000020468,0.0000020457, -0.0000020454,0.0000020445,0.0000020425,0.0000020396,0.0000020360, -0.0000020317,0.0000020267,0.0000020210,0.0000020158,0.0000020109, -0.0000020072,0.0000020052,0.0000020052,0.0000020069,0.0000020101, -0.0000020140,0.0000020177,0.0000020209,0.0000020240,0.0000020274, -0.0000020310,0.0000020344,0.0000020376,0.0000020408,0.0000020443, -0.0000020480,0.0000020517,0.0000020549,0.0000020573,0.0000020595, -0.0000020612,0.0000020612,0.0000020600,0.0000020583,0.0000020564, -0.0000020539,0.0000020509,0.0000020479,0.0000020452,0.0000020422, -0.0000020391,0.0000020360,0.0000020331,0.0000020303,0.0000020279, -0.0000020250,0.0000020215,0.0000020176,0.0000020137,0.0000020101, -0.0000020068,0.0000020037,0.0000020010,0.0000019986,0.0000019964, -0.0000019943,0.0000019929,0.0000019920,0.0000019912,0.0000019902, -0.0000019886,0.0000019866,0.0000019838,0.0000019808,0.0000019778, -0.0000019752,0.0000019729,0.0000019710,0.0000019691,0.0000019671, -0.0000019657,0.0000019653,0.0000019657,0.0000019669,0.0000019681, -0.0000019689,0.0000019691,0.0000019683,0.0000019667,0.0000019646, -0.0000019628,0.0000019618,0.0000019614,0.0000019626,0.0000019651, -0.0000019683,0.0000019716,0.0000019743,0.0000019760,0.0000019767, -0.0000019765,0.0000019758,0.0000019751,0.0000019742,0.0000019733, -0.0000019727,0.0000019723,0.0000019722,0.0000019723,0.0000019726, -0.0000019724,0.0000019717,0.0000019703,0.0000019684,0.0000019660, -0.0000019632,0.0000019601,0.0000019567,0.0000019535,0.0000019509, -0.0000019489,0.0000019478,0.0000019477,0.0000019483,0.0000019492, -0.0000019500,0.0000019505,0.0000019512,0.0000019520,0.0000019526, -0.0000019528,0.0000019524,0.0000019519,0.0000019516,0.0000019519, -0.0000019525,0.0000019533,0.0000019544,0.0000019553,0.0000019557, -0.0000019555,0.0000019549,0.0000019542,0.0000019535,0.0000019525, -0.0000019516,0.0000019512,0.0000019517,0.0000019525,0.0000019530, -0.0000019528,0.0000019523,0.0000019517,0.0000019511,0.0000019509, -0.0000019512,0.0000019525,0.0000019548,0.0000019578,0.0000019604, -0.0000019625,0.0000019646,0.0000019675,0.0000019712,0.0000019751, -0.0000019772,0.0000019750,0.0000019687,0.0000019621,0.0000019592, -0.0000019656,0.0000019806,0.0000019973,0.0000020178,0.0000020275, -0.0000020246,0.0000020301,0.0000020446,0.0000020512,0.0000020517, -0.0000020532,0.0000020530,0.0000020488,0.0000020445,0.0000020427, -0.0000020426,0.0000020432,0.0000020442,0.0000020448,0.0000020451, -0.0000020458,0.0000020471,0.0000020473,0.0000020451,0.0000020388, -0.0000020316,0.0000020252,0.0000020212,0.0000020212,0.0000020244, -0.0000020271,0.0000020258,0.0000020204,0.0000020156,0.0000020145, -0.0000020156,0.0000020178,0.0000020204,0.0000020219,0.0000020215, -0.0000020195,0.0000020170,0.0000020161,0.0000020175,0.0000020210, -0.0000020253,0.0000020305,0.0000020355,0.0000020371,0.0000020347, -0.0000020314,0.0000020307,0.0000020326,0.0000020356,0.0000020367, -0.0000020352,0.0000020333,0.0000020323,0.0000020313,0.0000020302, -0.0000020285,0.0000020270,0.0000020258,0.0000020249,0.0000020242, -0.0000020235,0.0000020234,0.0000020235,0.0000020234,0.0000020230, -0.0000020224,0.0000020216,0.0000020205,0.0000020194,0.0000020183, -0.0000020175,0.0000020170,0.0000020164,0.0000020156,0.0000020147, -0.0000020135,0.0000020122,0.0000020111,0.0000020099,0.0000020087, -0.0000020077,0.0000020067,0.0000020057,0.0000020046,0.0000020035, -0.0000020026,0.0000020019,0.0000020012,0.0000020005,0.0000019997, -0.0000019991,0.0000019985,0.0000019978,0.0000019972,0.0000019966, -0.0000019963,0.0000019961,0.0000019960,0.0000019963,0.0000019967, -0.0000019971,0.0000019976,0.0000019978,0.0000019976,0.0000019972, -0.0000019968,0.0000019963,0.0000019956,0.0000019948,0.0000019939, -0.0000019930,0.0000019924,0.0000019922,0.0000019924,0.0000019928, -0.0000019935,0.0000019942,0.0000019949,0.0000019956,0.0000019963, -0.0000019970,0.0000019977,0.0000019982,0.0000019984,0.0000019983, -0.0000019980,0.0000019975,0.0000019969,0.0000019959,0.0000019945, -0.0000019925,0.0000019899,0.0000019867,0.0000019830,0.0000019790, -0.0000019750,0.0000019719,0.0000019701,0.0000019701,0.0000019725, -0.0000019760,0.0000019792,0.0000019807,0.0000019804,0.0000019775, -0.0000019741,0.0000019718,0.0000019713,0.0000019714,0.0000019710, -0.0000019696,0.0000019670,0.0000019627,0.0000019571,0.0000019520, -0.0000019495,0.0000019492,0.0000019493,0.0000019486,0.0000019461, -0.0000019446,0.0000019454,0.0000019471,0.0000019495,0.0000019523, -0.0000019562,0.0000019604,0.0000019634,0.0000019676,0.0000019725, -0.0000019769,0.0000019793,0.0000019800,0.0000019798,0.0000019802, -0.0000019815,0.0000019833,0.0000019854,0.0000019875,0.0000019900, -0.0000019924,0.0000019948,0.0000019981,0.0000020008,0.0000020032, -0.0000020054,0.0000020074,0.0000020093,0.0000020113,0.0000020129, -0.0000020144,0.0000020159,0.0000020179,0.0000020200,0.0000020222, -0.0000020243,0.0000020264,0.0000020284,0.0000020306,0.0000020331, -0.0000020354,0.0000020372,0.0000020383,0.0000020387,0.0000020384, -0.0000020378,0.0000020371,0.0000020365,0.0000020354,0.0000020340, -0.0000020328,0.0000020331,0.0000020354,0.0000020385,0.0000020422, -0.0000020456,0.0000020481,0.0000020498,0.0000020499,0.0000020487, -0.0000020464,0.0000020429,0.0000020392,0.0000020354,0.0000020321, -0.0000020297,0.0000020283,0.0000020277,0.0000020280,0.0000020280, -0.0000020281,0.0000020286,0.0000020295,0.0000020298,0.0000020295, -0.0000020296,0.0000020297,0.0000020294,0.0000020296,0.0000020301, -0.0000020308,0.0000020326,0.0000020349,0.0000020371,0.0000020388, -0.0000020403,0.0000020420,0.0000020441,0.0000020462,0.0000020483, -0.0000020503,0.0000020523,0.0000020551,0.0000020585,0.0000020618, -0.0000020648,0.0000020671,0.0000020683,0.0000020686,0.0000020686, -0.0000020686,0.0000020688,0.0000020693,0.0000020693,0.0000020691, -0.0000020687,0.0000020679,0.0000020671,0.0000020669,0.0000020673, -0.0000020684,0.0000020702,0.0000020728,0.0000020765,0.0000020811, -0.0000020860,0.0000020902,0.0000020938,0.0000020972,0.0000021003, -0.0000021027,0.0000021040,0.0000021047,0.0000021048,0.0000021044, -0.0000021034,0.0000021023,0.0000021007,0.0000020985,0.0000020960, -0.0000020932,0.0000020906,0.0000020884,0.0000020867,0.0000020852, -0.0000020842,0.0000020835,0.0000020831,0.0000020833,0.0000020841, -0.0000020850,0.0000020860,0.0000020878,0.0000020900,0.0000020925, -0.0000020945,0.0000020953,0.0000020948,0.0000020920,0.0000020891, -0.0000020868,0.0000020841,0.0000020808,0.0000020779,0.0000020759, -0.0000020746,0.0000020743,0.0000020747,0.0000020756,0.0000020759, -0.0000020759,0.0000020769,0.0000020794,0.0000020833,0.0000020880, -0.0000020925,0.0000020958,0.0000020979,0.0000020990,0.0000020998, -0.0000021005,0.0000021007,0.0000021001,0.0000020983,0.0000020965, -0.0000020962,0.0000020969,0.0000020971,0.0000020969,0.0000020971, -0.0000020983,0.0000021005,0.0000021048,0.0000021109,0.0000021168, -0.0000021218,0.0000021260,0.0000021293,0.0000021311,0.0000021316, -0.0000021312,0.0000021305,0.0000021298,0.0000021294,0.0000021285, -0.0000021270,0.0000021253,0.0000021248,0.0000021254,0.0000021272, -0.0000021297,0.0000021322,0.0000021336,0.0000021335,0.0000021321, -0.0000021295,0.0000021267,0.0000021242,0.0000021225,0.0000021216, -0.0000021207,0.0000021201,0.0000021195,0.0000021187,0.0000021181, -0.0000021176,0.0000021175,0.0000021178,0.0000021195,0.0000021232, -0.0000021280,0.0000021331,0.0000021385,0.0000021445,0.0000021510, -0.0000021568,0.0000021610,0.0000021639,0.0000021660,0.0000021680, -0.0000021705,0.0000021736,0.0000021768,0.0000021798,0.0000021825, -0.0000021856,0.0000021879,0.0000021894,0.0000021898,0.0000021891, -0.0000021873,0.0000021843,0.0000021812,0.0000021772,0.0000021735, -0.0000021702,0.0000021672,0.0000021642,0.0000021619,0.0000021597, -0.0000021580,0.0000021567,0.0000021556,0.0000021550,0.0000021549, -0.0000021548,0.0000021550,0.0000021554,0.0000021562,0.0000021571, -0.0000021583,0.0000021594,0.0000021608,0.0000021622,0.0000021633, -0.0000021638,0.0000021637,0.0000021632,0.0000021624,0.0000021613, -0.0000021598,0.0000021583,0.0000021564,0.0000021541,0.0000021516, -0.0000021491,0.0000021465,0.0000021436,0.0000021406,0.0000021379, -0.0000021353,0.0000021328,0.0000021301,0.0000021284,0.0000021295, -0.0000021356,0.0000021450,0.0000021528,0.0000021579,0.0000021624, -0.0000021657,0.0000021654,0.0000021603,0.0000021550,0.0000021524, -0.0000021512,0.0000021489,0.0000021451,0.0000021421,0.0000021403, -0.0000021383,0.0000021358,0.0000021325,0.0000021305,0.0000021312, -0.0000021344,0.0000021365,0.0000021367,0.0000021361,0.0000021355, -0.0000021340,0.0000021315,0.0000021282,0.0000021248,0.0000021220, -0.0000021204,0.0000021198,0.0000021192,0.0000021182,0.0000021170, -0.0000021161,0.0000021147,0.0000021133,0.0000021116,0.0000021100, -0.0000021090,0.0000021082,0.0000021080,0.0000021078,0.0000021073, -0.0000021074,0.0000021083,0.0000021087,0.0000021080,0.0000021065, -0.0000021047,0.0000021020,0.0000020979,0.0000020923,0.0000020866, -0.0000020820,0.0000020778,0.0000020746,0.0000020732,0.0000020729, -0.0000020732,0.0000020731,0.0000020723,0.0000020711,0.0000020705, -0.0000020704,0.0000020707,0.0000020727,0.0000020747,0.0000020744, -0.0000020705,0.0000020613,0.0000020475,0.0000020350,0.0000020279, -0.0000020255,0.0000020156,0.0000020071,0.0000020127,0.0000020173, -0.0000020177,0.0000020207,0.0000020306,0.0000020407,0.0000020441, -0.0000020440,0.0000020480,0.0000020548,0.0000020611,0.0000020655, -0.0000020681,0.0000020739,0.0000020878,0.0000021053,0.0000021154, -0.0000021190,0.0000021333,0.0000021457,0.0000021438,0.0000021488, -0.0000021557,0.0000021538,0.0000021545,0.0000021614,0.0000021654, -0.0000021613,0.0000021625,0.0000021803,0.0000021874,0.0000021821, -0.0000021725,0.0000021702,0.0000021733,0.0000021729,0.0000021785, -0.0000021897,0.0000021886,0.0000021864,0.0000021962,0.0000022066, -0.0000022067,0.0000022089,0.0000022198,0.0000022344,0.0000022426, -0.0000022468,0.0000022472,0.0000022462,0.0000022469,0.0000022478, -0.0000022474,0.0000022478,0.0000022497,0.0000022520,0.0000022532, -0.0000022529,0.0000022499,0.0000022427,0.0000022316,0.0000022181, -0.0000022052,0.0000021969,0.0000021945,0.0000021957,0.0000021999, -0.0000022057,0.0000022084,0.0000022081,0.0000022046,0.0000021978, -0.0000021877,0.0000021761,0.0000021657,0.0000021569,0.0000021498, -0.0000021442,0.0000021383,0.0000021312,0.0000021246,0.0000021179, -0.0000021118,0.0000021072,0.0000021040,0.0000021011,0.0000020971, -0.0000020920,0.0000020893,0.0000020889,0.0000020906,0.0000020952, -0.0000021023,0.0000021110,0.0000021182,0.0000021240,0.0000021288, -0.0000021340,0.0000021403,0.0000021457,0.0000021507,0.0000021554, -0.0000021588,0.0000021592,0.0000021583,0.0000021558,0.0000021526, -0.0000021482,0.0000021424,0.0000021369,0.0000021335,0.0000021317, -0.0000021309,0.0000021312,0.0000021325,0.0000021346,0.0000021374, -0.0000021405,0.0000021436,0.0000021458,0.0000021464,0.0000021454, -0.0000021440,0.0000021438,0.0000021452,0.0000021478,0.0000021513, -0.0000021549,0.0000021570,0.0000021562,0.0000021538,0.0000021519, -0.0000021524,0.0000021545,0.0000021563,0.0000021581,0.0000021600, -0.0000021626,0.0000021662,0.0000021705,0.0000021749,0.0000021785, -0.0000021811,0.0000021833,0.0000021858,0.0000021882,0.0000021903, -0.0000021910,0.0000021921,0.0000021937,0.0000021967,0.0000022011, -0.0000022057,0.0000022101,0.0000022137,0.0000022172,0.0000022199, -0.0000022204,0.0000022198,0.0000022199,0.0000022184,0.0000022159, -0.0000022137,0.0000022116,0.0000022089,0.0000022062,0.0000022047, -0.0000022024,0.0000021997,0.0000021972,0.0000021952,0.0000021938, -0.0000021937,0.0000021935,0.0000021927,0.0000021923,0.0000021916, -0.0000021906,0.0000021902,0.0000021897,0.0000021899,0.0000021904, -0.0000021913,0.0000021928,0.0000021954,0.0000021985,0.0000022019, -0.0000022058,0.0000022099,0.0000022137,0.0000022173,0.0000022203, -0.0000022229,0.0000022250,0.0000022260,0.0000022261,0.0000022250, -0.0000022220,0.0000022189,0.0000022158,0.0000022122,0.0000022084, -0.0000022046,0.0000022004,0.0000021953,0.0000021900,0.0000021847, -0.0000021800,0.0000021758,0.0000021721,0.0000021697,0.0000021678, -0.0000021660,0.0000021649,0.0000021649,0.0000021656,0.0000021672, -0.0000021694,0.0000021720,0.0000021748,0.0000021776,0.0000021800, -0.0000021819,0.0000021834,0.0000021845,0.0000021855,0.0000021863, -0.0000021864,0.0000021861,0.0000021861,0.0000021865,0.0000021875, -0.0000021888,0.0000021897,0.0000021900,0.0000021893,0.0000021878, -0.0000021855,0.0000021830,0.0000021808,0.0000021792,0.0000021777, -0.0000021765,0.0000021753,0.0000021733,0.0000021703,0.0000021668, -0.0000021636,0.0000021624,0.0000021633,0.0000021666,0.0000021702, -0.0000021739,0.0000021775,0.0000021809,0.0000021845,0.0000021879, -0.0000021913,0.0000021951,0.0000021991,0.0000022036,0.0000022071, -0.0000022101,0.0000022127,0.0000022130,0.0000022121,0.0000022103, -0.0000022069,0.0000022025,0.0000021979,0.0000021936,0.0000021897, -0.0000021861,0.0000021835,0.0000021823,0.0000021817,0.0000021813, -0.0000021809,0.0000021801,0.0000021788,0.0000021770,0.0000021748, -0.0000021721,0.0000021689,0.0000021654,0.0000021615,0.0000021575, -0.0000021542,0.0000021523,0.0000021512,0.0000021519,0.0000021530, -0.0000021547,0.0000021569,0.0000021592,0.0000021612,0.0000021624, -0.0000021624,0.0000021619,0.0000021606,0.0000021585,0.0000021569, -0.0000021555,0.0000021542,0.0000021533,0.0000021526,0.0000021521, -0.0000021514,0.0000021504,0.0000021488,0.0000021469,0.0000021450, -0.0000021429,0.0000021406,0.0000021384,0.0000021368,0.0000021356, -0.0000021346,0.0000021339,0.0000021335,0.0000021334,0.0000021333, -0.0000021323,0.0000021309,0.0000021290,0.0000021263,0.0000021225, -0.0000021176,0.0000021121,0.0000021068,0.0000021019,0.0000020964, -0.0000020912,0.0000020883,0.0000020876,0.0000020872,0.0000020865, -0.0000020854,0.0000020835,0.0000020821,0.0000020808,0.0000020801, -0.0000020789,0.0000020770,0.0000020761,0.0000020762,0.0000020765, -0.0000020766,0.0000020767,0.0000020762,0.0000020759,0.0000020757, -0.0000020765,0.0000020787,0.0000020818,0.0000020848,0.0000020877, -0.0000020903,0.0000020925,0.0000020945,0.0000020962,0.0000020975, -0.0000020984,0.0000020996,0.0000021011,0.0000021026,0.0000021043, -0.0000021059,0.0000021068,0.0000021069,0.0000021063,0.0000021047, -0.0000021025,0.0000021000,0.0000020975,0.0000020952,0.0000020930, -0.0000020916,0.0000020904,0.0000020888,0.0000020869,0.0000020850, -0.0000020832,0.0000020814,0.0000020795,0.0000020775,0.0000020753, -0.0000020731,0.0000020712,0.0000020690,0.0000020668,0.0000020646, -0.0000020621,0.0000020593,0.0000020562,0.0000020530,0.0000020496, -0.0000020464,0.0000020436,0.0000020412,0.0000020399,0.0000020390, -0.0000020385,0.0000020386,0.0000020392,0.0000020399,0.0000020404, -0.0000020406,0.0000020411,0.0000020414,0.0000020414,0.0000020411, -0.0000020402,0.0000020390,0.0000020375,0.0000020361,0.0000020352, -0.0000020347,0.0000020339,0.0000020333,0.0000020326,0.0000020319, -0.0000020311,0.0000020305,0.0000020304,0.0000020308,0.0000020316, -0.0000020324,0.0000020330,0.0000020334,0.0000020337,0.0000020337, -0.0000020331,0.0000020316,0.0000020296,0.0000020271,0.0000020239, -0.0000020197,0.0000020147,0.0000020102,0.0000020071,0.0000020039, -0.0000020018,0.0000020017,0.0000020023,0.0000020033,0.0000020043, -0.0000020050,0.0000020050,0.0000020044,0.0000020038,0.0000020030, -0.0000020019,0.0000020006,0.0000019997,0.0000019989,0.0000019979, -0.0000019970,0.0000019959,0.0000019947,0.0000019937,0.0000019926, -0.0000019911,0.0000019894,0.0000019883,0.0000019875,0.0000019863, -0.0000019846,0.0000019833,0.0000019824,0.0000019812,0.0000019797, -0.0000019772,0.0000019746,0.0000019725,0.0000019702,0.0000019681, -0.0000019656,0.0000019624,0.0000019604,0.0000019604,0.0000019633, -0.0000019687,0.0000019745,0.0000019798,0.0000019837,0.0000019857, -0.0000019852,0.0000019821,0.0000019762,0.0000019706,0.0000019686, -0.0000019684,0.0000019685,0.0000019675,0.0000019661,0.0000019640, -0.0000019613,0.0000019594,0.0000019591,0.0000019596,0.0000019600, -0.0000019611,0.0000019624,0.0000019612,0.0000019566,0.0000019525, -0.0000019514,0.0000019533,0.0000019594,0.0000019669,0.0000019718, -0.0000019752,0.0000019792,0.0000019833,0.0000019867,0.0000019892, -0.0000019907,0.0000019925,0.0000019960,0.0000020009,0.0000020056, -0.0000020092,0.0000020105,0.0000020104,0.0000020112,0.0000020140, -0.0000020184,0.0000020234,0.0000020284,0.0000020332,0.0000020373, -0.0000020397,0.0000020403,0.0000020399,0.0000020387,0.0000020384, -0.0000020383,0.0000020384,0.0000020390,0.0000020407,0.0000020437, -0.0000020465,0.0000020480,0.0000020480,0.0000020470,0.0000020456, -0.0000020446,0.0000020444,0.0000020455,0.0000020489,0.0000020516, -0.0000020519,0.0000020505,0.0000020471,0.0000020424,0.0000020361, -0.0000020318,0.0000020282,0.0000020278,0.0000020309,0.0000020375, -0.0000020467,0.0000020563,0.0000020651,0.0000020722,0.0000020771, -0.0000020799,0.0000020808,0.0000020801,0.0000020785,0.0000020759, -0.0000020727,0.0000020693,0.0000020659,0.0000020623,0.0000020588, -0.0000020554,0.0000020520,0.0000020487,0.0000020455,0.0000020426, -0.0000020401,0.0000020381,0.0000020363,0.0000020349,0.0000020340, -0.0000020338,0.0000020343,0.0000020357,0.0000020378,0.0000020406, -0.0000020434,0.0000020461,0.0000020489,0.0000020516,0.0000020537, -0.0000020555,0.0000020578,0.0000020604,0.0000020631,0.0000020656, -0.0000020680,0.0000020710,0.0000020738,0.0000020757,0.0000020768, -0.0000020777,0.0000020790,0.0000020804,0.0000020810,0.0000020806, -0.0000020785,0.0000020748,0.0000020706,0.0000020672,0.0000020649, -0.0000020637,0.0000020637,0.0000020649,0.0000020666,0.0000020685, -0.0000020703,0.0000020722,0.0000020740,0.0000020747,0.0000020742, -0.0000020737,0.0000020734,0.0000020722,0.0000020705,0.0000020689, -0.0000020638,0.0000020585,0.0000020577,0.0000020581,0.0000020583, -0.0000020606,0.0000020676,0.0000020802,0.0000020922,0.0000020990, -0.0000021040,0.0000021118,0.0000021206,0.0000021241,0.0000021251, -0.0000021270,0.0000021265,0.0000021239,0.0000021218,0.0000021187, -0.0000021133,0.0000021072,0.0000021032,0.0000021016,0.0000021018, -0.0000021034,0.0000021065,0.0000021099,0.0000021133,0.0000021167, -0.0000021200,0.0000021231,0.0000021266,0.0000021299,0.0000021327, -0.0000021350,0.0000021368,0.0000021381,0.0000021390,0.0000021398, -0.0000021407,0.0000021419,0.0000021433,0.0000021443,0.0000021446, -0.0000021443,0.0000021434,0.0000021422,0.0000021404,0.0000021381, -0.0000021354,0.0000021327,0.0000021301,0.0000021275,0.0000021252, -0.0000021239,0.0000021240,0.0000021253,0.0000021274,0.0000021302, -0.0000021330,0.0000021351,0.0000021356,0.0000021349,0.0000021328, -0.0000021298,0.0000021263,0.0000021227,0.0000021223,0.0000021235, -0.0000021293,0.0000021389,0.0000021516,0.0000021660,0.0000021799, -0.0000021915,0.0000021994,0.0000022053,0.0000022070,0.0000022082, -0.0000022081,0.0000022072,0.0000022060,0.0000022043,0.0000022030, -0.0000022019,0.0000022011,0.0000021996,0.0000021987,0.0000021979, -0.0000021962,0.0000021944,0.0000021936,0.0000021943,0.0000021983, -0.0000022037,0.0000022106,0.0000022165,0.0000022206,0.0000022237, -0.0000022261,0.0000022276,0.0000022278,0.0000022275,0.0000022264, -0.0000022246,0.0000022225,0.0000022201,0.0000022181,0.0000022172, -0.0000022175,0.0000022187,0.0000022202,0.0000022214,0.0000022216, -0.0000022193,0.0000022120,0.0000022022,0.0000021915,0.0000021821, -0.0000021719,0.0000021579,0.0000021413,0.0000021247,0.0000021073, -0.0000020871,0.0000020659,0.0000020476,0.0000020342,0.0000020248, -0.0000020171,0.0000020095,0.0000020026,0.0000019983,0.0000019953, -0.0000019929,0.0000019899,0.0000019885,0.0000019899,0.0000019928, -0.0000019953,0.0000019967,0.0000019975,0.0000019977,0.0000019970, -0.0000019947,0.0000019913,0.0000019875,0.0000019846,0.0000019835, -0.0000019847,0.0000019868,0.0000019877,0.0000019863,0.0000019839, -0.0000019818,0.0000019815,0.0000019835,0.0000019878,0.0000019933, -0.0000019986,0.0000020035,0.0000020084,0.0000020138,0.0000020183, -0.0000020212,0.0000020218,0.0000020213,0.0000020204,0.0000020191, -0.0000020175,0.0000020159,0.0000020152,0.0000020149,0.0000020137, -0.0000020113,0.0000020097,0.0000020128,0.0000020227,0.0000020378, -0.0000020532,0.0000020632,0.0000020659,0.0000020629,0.0000020598, -0.0000020594,0.0000020628,0.0000020682,0.0000020725,0.0000020742, -0.0000020750,0.0000020723,0.0000020678,0.0000020626,0.0000020583, -0.0000020550,0.0000020546,0.0000020557,0.0000020604,0.0000020675, -0.0000020758,0.0000020848,0.0000020940,0.0000021025,0.0000021098, -0.0000021149,0.0000021181,0.0000021201,0.0000021220,0.0000021245, -0.0000021281,0.0000021329,0.0000021381,0.0000021429,0.0000021468, -0.0000021491,0.0000021503,0.0000021504,0.0000021499,0.0000021489, -0.0000021480,0.0000021477,0.0000021475,0.0000021477,0.0000021482, -0.0000021486,0.0000021491,0.0000021491,0.0000021487,0.0000021474, -0.0000021460,0.0000021445,0.0000021422,0.0000021394,0.0000021360, -0.0000021321,0.0000021276,0.0000021221,0.0000021158,0.0000021090, -0.0000021020,0.0000020949,0.0000020879,0.0000020819,0.0000020775, -0.0000020747,0.0000020734,0.0000020738,0.0000020750,0.0000020764, -0.0000020778,0.0000020790,0.0000020799,0.0000020805,0.0000020813, -0.0000020820,0.0000020823,0.0000020825,0.0000020819,0.0000020803, -0.0000020784,0.0000020769,0.0000020754,0.0000020748,0.0000020751, -0.0000020755,0.0000020763,0.0000020775,0.0000020785,0.0000020795, -0.0000020803,0.0000020805,0.0000020794,0.0000020774,0.0000020755, -0.0000020733,0.0000020709,0.0000020691,0.0000020679,0.0000020679, -0.0000020691,0.0000020707,0.0000020719,0.0000020723,0.0000020721, -0.0000020709,0.0000020687,0.0000020654,0.0000020615,0.0000020574, -0.0000020532,0.0000020496,0.0000020473,0.0000020460,0.0000020452, -0.0000020443,0.0000020428,0.0000020405,0.0000020375,0.0000020334, -0.0000020278,0.0000020214,0.0000020150,0.0000020092,0.0000020048, -0.0000020010,0.0000019989,0.0000019991,0.0000020013,0.0000020046, -0.0000020079,0.0000020109,0.0000020139,0.0000020167,0.0000020191, -0.0000020211,0.0000020228,0.0000020247,0.0000020270,0.0000020299, -0.0000020335,0.0000020377,0.0000020423,0.0000020466,0.0000020497, -0.0000020515,0.0000020520,0.0000020517,0.0000020501,0.0000020472, -0.0000020434,0.0000020392,0.0000020349,0.0000020307,0.0000020268, -0.0000020232,0.0000020201,0.0000020171,0.0000020138,0.0000020104, -0.0000020068,0.0000020032,0.0000019998,0.0000019968,0.0000019943, -0.0000019923,0.0000019907,0.0000019893,0.0000019883,0.0000019877, -0.0000019876,0.0000019877,0.0000019876,0.0000019872,0.0000019859, -0.0000019834,0.0000019801,0.0000019764,0.0000019728,0.0000019699, -0.0000019675,0.0000019652,0.0000019629,0.0000019609,0.0000019598, -0.0000019595,0.0000019602,0.0000019616,0.0000019636,0.0000019652, -0.0000019661,0.0000019661,0.0000019651,0.0000019634,0.0000019615, -0.0000019596,0.0000019585,0.0000019584,0.0000019601,0.0000019628, -0.0000019660,0.0000019692,0.0000019717,0.0000019734,0.0000019744, -0.0000019748,0.0000019746,0.0000019738,0.0000019731,0.0000019722, -0.0000019715,0.0000019712,0.0000019713,0.0000019716,0.0000019716, -0.0000019711,0.0000019702,0.0000019686,0.0000019664,0.0000019636, -0.0000019603,0.0000019571,0.0000019539,0.0000019510,0.0000019489, -0.0000019477,0.0000019475,0.0000019479,0.0000019482,0.0000019485, -0.0000019487,0.0000019492,0.0000019497,0.0000019500,0.0000019499, -0.0000019497,0.0000019498,0.0000019502,0.0000019507,0.0000019513, -0.0000019518,0.0000019523,0.0000019524,0.0000019521,0.0000019514, -0.0000019507,0.0000019501,0.0000019495,0.0000019489,0.0000019486, -0.0000019490,0.0000019501,0.0000019512,0.0000019516,0.0000019514, -0.0000019507,0.0000019498,0.0000019489,0.0000019481,0.0000019482, -0.0000019497,0.0000019528,0.0000019564,0.0000019593,0.0000019616, -0.0000019644,0.0000019680,0.0000019722,0.0000019756,0.0000019749, -0.0000019693,0.0000019624,0.0000019585,0.0000019617,0.0000019752, -0.0000019916,0.0000020112,0.0000020262,0.0000020260,0.0000020267, -0.0000020400,0.0000020509,0.0000020521,0.0000020523,0.0000020541, -0.0000020533,0.0000020493,0.0000020459,0.0000020443,0.0000020439, -0.0000020442,0.0000020446,0.0000020445,0.0000020449,0.0000020461, -0.0000020480,0.0000020482,0.0000020450,0.0000020371,0.0000020290, -0.0000020230,0.0000020206,0.0000020221,0.0000020252,0.0000020258, -0.0000020231,0.0000020186,0.0000020162,0.0000020162,0.0000020177, -0.0000020200,0.0000020213,0.0000020210,0.0000020193,0.0000020172, -0.0000020164,0.0000020176,0.0000020201,0.0000020237,0.0000020287, -0.0000020332,0.0000020344,0.0000020324,0.0000020301,0.0000020299, -0.0000020326,0.0000020352,0.0000020361,0.0000020352,0.0000020338, -0.0000020334,0.0000020332,0.0000020322,0.0000020309,0.0000020293, -0.0000020277,0.0000020262,0.0000020248,0.0000020237,0.0000020230, -0.0000020225,0.0000020222,0.0000020220,0.0000020216,0.0000020209, -0.0000020201,0.0000020196,0.0000020194,0.0000020192,0.0000020190, -0.0000020186,0.0000020184,0.0000020180,0.0000020173,0.0000020165, -0.0000020159,0.0000020151,0.0000020142,0.0000020133,0.0000020125, -0.0000020115,0.0000020102,0.0000020087,0.0000020074,0.0000020062, -0.0000020051,0.0000020039,0.0000020028,0.0000020018,0.0000020007, -0.0000019997,0.0000019987,0.0000019977,0.0000019966,0.0000019955, -0.0000019943,0.0000019933,0.0000019928,0.0000019926,0.0000019924, -0.0000019919,0.0000019915,0.0000019912,0.0000019910,0.0000019906, -0.0000019901,0.0000019892,0.0000019883,0.0000019874,0.0000019868, -0.0000019865,0.0000019866,0.0000019871,0.0000019878,0.0000019887, -0.0000019897,0.0000019908,0.0000019918,0.0000019927,0.0000019936, -0.0000019943,0.0000019945,0.0000019943,0.0000019936,0.0000019927, -0.0000019915,0.0000019904,0.0000019891,0.0000019874,0.0000019854, -0.0000019831,0.0000019807,0.0000019775,0.0000019736,0.0000019694, -0.0000019654,0.0000019624,0.0000019607,0.0000019612,0.0000019638, -0.0000019670,0.0000019696,0.0000019704,0.0000019690,0.0000019663, -0.0000019642,0.0000019633,0.0000019635,0.0000019634,0.0000019623, -0.0000019592,0.0000019545,0.0000019498,0.0000019470,0.0000019469, -0.0000019488,0.0000019507,0.0000019516,0.0000019517,0.0000019523, -0.0000019542,0.0000019564,0.0000019584,0.0000019631,0.0000019650, -0.0000019673,0.0000019707,0.0000019755,0.0000019806,0.0000019849, -0.0000019876,0.0000019886,0.0000019892,0.0000019899,0.0000019911, -0.0000019927,0.0000019947,0.0000019966,0.0000019981,0.0000019998, -0.0000020017,0.0000020032,0.0000020047,0.0000020059,0.0000020072, -0.0000020083,0.0000020091,0.0000020096,0.0000020101,0.0000020110, -0.0000020121,0.0000020129,0.0000020137,0.0000020147,0.0000020160, -0.0000020178,0.0000020201,0.0000020225,0.0000020244,0.0000020254, -0.0000020257,0.0000020254,0.0000020245,0.0000020232,0.0000020219, -0.0000020211,0.0000020204,0.0000020205,0.0000020223,0.0000020258, -0.0000020297,0.0000020339,0.0000020375,0.0000020404,0.0000020428, -0.0000020437,0.0000020433,0.0000020415,0.0000020388,0.0000020355, -0.0000020318,0.0000020280,0.0000020249,0.0000020231,0.0000020221, -0.0000020220,0.0000020220,0.0000020220,0.0000020224,0.0000020231, -0.0000020234,0.0000020233,0.0000020237,0.0000020248,0.0000020257, -0.0000020265,0.0000020274,0.0000020285,0.0000020301,0.0000020317, -0.0000020333,0.0000020350,0.0000020365,0.0000020376,0.0000020386, -0.0000020399,0.0000020416,0.0000020433,0.0000020449,0.0000020473, -0.0000020500,0.0000020528,0.0000020559,0.0000020588,0.0000020610, -0.0000020622,0.0000020628,0.0000020630,0.0000020634,0.0000020642, -0.0000020648,0.0000020649,0.0000020648,0.0000020647,0.0000020642, -0.0000020636,0.0000020630,0.0000020625,0.0000020626,0.0000020636, -0.0000020656,0.0000020689,0.0000020731,0.0000020773,0.0000020811, -0.0000020846,0.0000020879,0.0000020906,0.0000020926,0.0000020935, -0.0000020936,0.0000020933,0.0000020924,0.0000020914,0.0000020902, -0.0000020883,0.0000020858,0.0000020831,0.0000020807,0.0000020788, -0.0000020774,0.0000020765,0.0000020761,0.0000020764,0.0000020773, -0.0000020783,0.0000020799,0.0000020816,0.0000020831,0.0000020848, -0.0000020868,0.0000020894,0.0000020924,0.0000020949,0.0000020959, -0.0000020949,0.0000020915,0.0000020880,0.0000020848,0.0000020816, -0.0000020786,0.0000020760,0.0000020740,0.0000020730,0.0000020728, -0.0000020732,0.0000020734,0.0000020733,0.0000020738,0.0000020757, -0.0000020794,0.0000020842,0.0000020889,0.0000020923,0.0000020943, -0.0000020951,0.0000020952,0.0000020954,0.0000020960,0.0000020966, -0.0000020962,0.0000020946,0.0000020935,0.0000020939,0.0000020951, -0.0000020957,0.0000020960,0.0000020970,0.0000020987,0.0000021010, -0.0000021052,0.0000021110,0.0000021164,0.0000021204,0.0000021233, -0.0000021256,0.0000021266,0.0000021265,0.0000021257,0.0000021246, -0.0000021240,0.0000021240,0.0000021242,0.0000021247,0.0000021254, -0.0000021266,0.0000021281,0.0000021302,0.0000021328,0.0000021351, -0.0000021363,0.0000021361,0.0000021346,0.0000021319,0.0000021288, -0.0000021259,0.0000021239,0.0000021225,0.0000021218,0.0000021211, -0.0000021205,0.0000021196,0.0000021188,0.0000021183,0.0000021183, -0.0000021188,0.0000021202,0.0000021231,0.0000021271,0.0000021321, -0.0000021376,0.0000021432,0.0000021489,0.0000021542,0.0000021590, -0.0000021624,0.0000021646,0.0000021659,0.0000021670,0.0000021685, -0.0000021703,0.0000021727,0.0000021755,0.0000021781,0.0000021807, -0.0000021828,0.0000021842,0.0000021845,0.0000021834,0.0000021815, -0.0000021788,0.0000021761,0.0000021736,0.0000021712,0.0000021686, -0.0000021662,0.0000021639,0.0000021622,0.0000021608,0.0000021594, -0.0000021586,0.0000021579,0.0000021573,0.0000021571,0.0000021569, -0.0000021569,0.0000021571,0.0000021576,0.0000021581,0.0000021592, -0.0000021604,0.0000021614,0.0000021622,0.0000021625,0.0000021625, -0.0000021621,0.0000021613,0.0000021601,0.0000021587,0.0000021572, -0.0000021553,0.0000021532,0.0000021507,0.0000021481,0.0000021453, -0.0000021424,0.0000021393,0.0000021367,0.0000021352,0.0000021330, -0.0000021305,0.0000021295,0.0000021318,0.0000021395,0.0000021487, -0.0000021552,0.0000021596,0.0000021640,0.0000021673,0.0000021659, -0.0000021592,0.0000021539,0.0000021520,0.0000021503,0.0000021477, -0.0000021446,0.0000021409,0.0000021378,0.0000021348,0.0000021327, -0.0000021341,0.0000021390,0.0000021415,0.0000021404,0.0000021383, -0.0000021368,0.0000021355,0.0000021332,0.0000021301,0.0000021265, -0.0000021230,0.0000021209,0.0000021202,0.0000021199,0.0000021192, -0.0000021179,0.0000021168,0.0000021153,0.0000021136,0.0000021120, -0.0000021098,0.0000021077,0.0000021058,0.0000021037,0.0000021019, -0.0000021007,0.0000021000,0.0000021004,0.0000021016,0.0000021021, -0.0000021015,0.0000021006,0.0000020993,0.0000020971,0.0000020933, -0.0000020880,0.0000020827,0.0000020781,0.0000020733,0.0000020694, -0.0000020672,0.0000020666,0.0000020666,0.0000020656,0.0000020639, -0.0000020624,0.0000020619,0.0000020620,0.0000020642,0.0000020679, -0.0000020698,0.0000020689,0.0000020623,0.0000020498,0.0000020362, -0.0000020271,0.0000020241,0.0000020179,0.0000020065,0.0000020071, -0.0000020130,0.0000020141,0.0000020156,0.0000020241,0.0000020355, -0.0000020415,0.0000020418,0.0000020444,0.0000020513,0.0000020580, -0.0000020631,0.0000020663,0.0000020714,0.0000020836,0.0000021016, -0.0000021135,0.0000021170,0.0000021284,0.0000021440,0.0000021440, -0.0000021473,0.0000021553,0.0000021542,0.0000021541,0.0000021601, -0.0000021644,0.0000021602,0.0000021614,0.0000021786,0.0000021857, -0.0000021807,0.0000021725,0.0000021703,0.0000021737,0.0000021736, -0.0000021782,0.0000021903,0.0000021909,0.0000021886,0.0000021945, -0.0000022071,0.0000022096,0.0000022098,0.0000022166,0.0000022301, -0.0000022406,0.0000022461,0.0000022471,0.0000022461,0.0000022462, -0.0000022471,0.0000022464,0.0000022467,0.0000022489,0.0000022512, -0.0000022514,0.0000022496,0.0000022447,0.0000022365,0.0000022248, -0.0000022104,0.0000021989,0.0000021938,0.0000021931,0.0000021948, -0.0000021992,0.0000022031,0.0000022046,0.0000022035,0.0000021991, -0.0000021916,0.0000021814,0.0000021694,0.0000021589,0.0000021512, -0.0000021458,0.0000021417,0.0000021372,0.0000021316,0.0000021252, -0.0000021177,0.0000021105,0.0000021044,0.0000021003,0.0000020980, -0.0000020957,0.0000020916,0.0000020884,0.0000020866,0.0000020868, -0.0000020892,0.0000020938,0.0000021018,0.0000021096,0.0000021163, -0.0000021216,0.0000021275,0.0000021329,0.0000021352,0.0000021367, -0.0000021391,0.0000021411,0.0000021429,0.0000021450,0.0000021459, -0.0000021453,0.0000021433,0.0000021395,0.0000021345,0.0000021301, -0.0000021260,0.0000021225,0.0000021203,0.0000021202,0.0000021227, -0.0000021280,0.0000021349,0.0000021407,0.0000021443,0.0000021457, -0.0000021451,0.0000021435,0.0000021421,0.0000021417,0.0000021428, -0.0000021453,0.0000021479,0.0000021508,0.0000021528,0.0000021522, -0.0000021498,0.0000021482,0.0000021486,0.0000021497,0.0000021512, -0.0000021533,0.0000021560,0.0000021591,0.0000021629,0.0000021668, -0.0000021705,0.0000021737,0.0000021764,0.0000021786,0.0000021809, -0.0000021827,0.0000021840,0.0000021852,0.0000021862,0.0000021880, -0.0000021915,0.0000021954,0.0000021989,0.0000022024,0.0000022060, -0.0000022083,0.0000022089,0.0000022098,0.0000022102,0.0000022087, -0.0000022069,0.0000022053,0.0000022034,0.0000022010,0.0000021992, -0.0000021975,0.0000021951,0.0000021923,0.0000021899,0.0000021876, -0.0000021862,0.0000021861,0.0000021852,0.0000021846,0.0000021840, -0.0000021835,0.0000021828,0.0000021820,0.0000021812,0.0000021805, -0.0000021800,0.0000021797,0.0000021800,0.0000021812,0.0000021835, -0.0000021865,0.0000021899,0.0000021936,0.0000021975,0.0000022014, -0.0000022046,0.0000022075,0.0000022105,0.0000022134,0.0000022158, -0.0000022172,0.0000022171,0.0000022159,0.0000022142,0.0000022111, -0.0000022075,0.0000022046,0.0000022012,0.0000021968,0.0000021925, -0.0000021889,0.0000021858,0.0000021833,0.0000021815,0.0000021804, -0.0000021789,0.0000021765,0.0000021739,0.0000021722,0.0000021717, -0.0000021725,0.0000021747,0.0000021777,0.0000021804,0.0000021834, -0.0000021861,0.0000021876,0.0000021884,0.0000021888,0.0000021892, -0.0000021897,0.0000021899,0.0000021900,0.0000021907,0.0000021919, -0.0000021930,0.0000021944,0.0000021953,0.0000021951,0.0000021939, -0.0000021914,0.0000021881,0.0000021845,0.0000021819,0.0000021799, -0.0000021780,0.0000021765,0.0000021756,0.0000021749,0.0000021737, -0.0000021721,0.0000021703,0.0000021694,0.0000021702,0.0000021721, -0.0000021737,0.0000021753,0.0000021772,0.0000021792,0.0000021810, -0.0000021824,0.0000021850,0.0000021878,0.0000021922,0.0000021974, -0.0000022027,0.0000022076,0.0000022116,0.0000022139,0.0000022149, -0.0000022150,0.0000022127,0.0000022088,0.0000022043,0.0000021996, -0.0000021946,0.0000021898,0.0000021865,0.0000021849,0.0000021839, -0.0000021835,0.0000021833,0.0000021830,0.0000021823,0.0000021813, -0.0000021800,0.0000021783,0.0000021758,0.0000021729,0.0000021697, -0.0000021659,0.0000021624,0.0000021594,0.0000021571,0.0000021556, -0.0000021550,0.0000021554,0.0000021568,0.0000021583,0.0000021603, -0.0000021617,0.0000021620,0.0000021619,0.0000021611,0.0000021600, -0.0000021592,0.0000021586,0.0000021584,0.0000021585,0.0000021590, -0.0000021594,0.0000021593,0.0000021588,0.0000021578,0.0000021564, -0.0000021545,0.0000021521,0.0000021492,0.0000021460,0.0000021428, -0.0000021400,0.0000021379,0.0000021363,0.0000021348,0.0000021339, -0.0000021331,0.0000021319,0.0000021301,0.0000021277,0.0000021248, -0.0000021212,0.0000021170,0.0000021126,0.0000021083,0.0000021038, -0.0000020993,0.0000020961,0.0000020950,0.0000020950,0.0000020948, -0.0000020942,0.0000020927,0.0000020907,0.0000020888,0.0000020867, -0.0000020847,0.0000020825,0.0000020807,0.0000020794,0.0000020783, -0.0000020773,0.0000020763,0.0000020755,0.0000020749,0.0000020741, -0.0000020738,0.0000020741,0.0000020753,0.0000020765,0.0000020778, -0.0000020792,0.0000020807,0.0000020824,0.0000020845,0.0000020869, -0.0000020892,0.0000020917,0.0000020942,0.0000020965,0.0000020984, -0.0000021002,0.0000021015,0.0000021022,0.0000021022,0.0000021013, -0.0000020997,0.0000020978,0.0000020959,0.0000020939,0.0000020922, -0.0000020911,0.0000020904,0.0000020895,0.0000020882,0.0000020867, -0.0000020856,0.0000020841,0.0000020820,0.0000020797,0.0000020773, -0.0000020753,0.0000020735,0.0000020718,0.0000020699,0.0000020679, -0.0000020656,0.0000020631,0.0000020603,0.0000020574,0.0000020546, -0.0000020512,0.0000020483,0.0000020461,0.0000020444,0.0000020434, -0.0000020431,0.0000020433,0.0000020439,0.0000020447,0.0000020454, -0.0000020460,0.0000020464,0.0000020466,0.0000020464,0.0000020458, -0.0000020447,0.0000020430,0.0000020411,0.0000020390,0.0000020372, -0.0000020362,0.0000020355,0.0000020351,0.0000020348,0.0000020341, -0.0000020332,0.0000020322,0.0000020315,0.0000020316,0.0000020323, -0.0000020331,0.0000020338,0.0000020343,0.0000020351,0.0000020357, -0.0000020356,0.0000020349,0.0000020333,0.0000020308,0.0000020272, -0.0000020227,0.0000020177,0.0000020129,0.0000020087,0.0000020053, -0.0000020030,0.0000020022,0.0000020017,0.0000020019,0.0000020018, -0.0000020016,0.0000020007,0.0000019996,0.0000019985,0.0000019975, -0.0000019965,0.0000019955,0.0000019943,0.0000019930,0.0000019914, -0.0000019898,0.0000019890,0.0000019885,0.0000019885,0.0000019886, -0.0000019881,0.0000019876,0.0000019872,0.0000019871,0.0000019866, -0.0000019854,0.0000019842,0.0000019835,0.0000019829,0.0000019812, -0.0000019787,0.0000019767,0.0000019754,0.0000019737,0.0000019715, -0.0000019685,0.0000019646,0.0000019616,0.0000019605,0.0000019620, -0.0000019663,0.0000019713,0.0000019761,0.0000019803,0.0000019825, -0.0000019823,0.0000019798,0.0000019744,0.0000019683,0.0000019647, -0.0000019638,0.0000019637,0.0000019631,0.0000019622,0.0000019606, -0.0000019583,0.0000019568,0.0000019565,0.0000019569,0.0000019570, -0.0000019577,0.0000019591,0.0000019591,0.0000019560,0.0000019521, -0.0000019507,0.0000019517,0.0000019566,0.0000019638,0.0000019696, -0.0000019740,0.0000019784,0.0000019828,0.0000019861,0.0000019884, -0.0000019896,0.0000019901,0.0000019913,0.0000019941,0.0000019974, -0.0000020012,0.0000020040,0.0000020053,0.0000020049,0.0000020046, -0.0000020055,0.0000020083,0.0000020122,0.0000020172,0.0000020236, -0.0000020299,0.0000020346,0.0000020368,0.0000020374,0.0000020371, -0.0000020370,0.0000020369,0.0000020369,0.0000020374,0.0000020394, -0.0000020420,0.0000020435,0.0000020436,0.0000020423,0.0000020401, -0.0000020378,0.0000020356,0.0000020356,0.0000020383,0.0000020424, -0.0000020466,0.0000020503,0.0000020514,0.0000020509,0.0000020471, -0.0000020409,0.0000020334,0.0000020262,0.0000020222,0.0000020203, -0.0000020226,0.0000020283,0.0000020361,0.0000020440,0.0000020509, -0.0000020559,0.0000020588,0.0000020600,0.0000020596,0.0000020586, -0.0000020572,0.0000020555,0.0000020536,0.0000020517,0.0000020497, -0.0000020478,0.0000020459,0.0000020438,0.0000020416,0.0000020393, -0.0000020373,0.0000020355,0.0000020338,0.0000020325,0.0000020316, -0.0000020314,0.0000020318,0.0000020326,0.0000020339,0.0000020358, -0.0000020381,0.0000020404,0.0000020426,0.0000020446,0.0000020468, -0.0000020494,0.0000020525,0.0000020560,0.0000020591,0.0000020615, -0.0000020636,0.0000020658,0.0000020682,0.0000020706,0.0000020730, -0.0000020755,0.0000020778,0.0000020789,0.0000020785,0.0000020764, -0.0000020731,0.0000020698,0.0000020674,0.0000020661,0.0000020659, -0.0000020669,0.0000020689,0.0000020709,0.0000020727,0.0000020741, -0.0000020753,0.0000020763,0.0000020776,0.0000020782,0.0000020771, -0.0000020749,0.0000020739,0.0000020731,0.0000020709,0.0000020693, -0.0000020650,0.0000020595,0.0000020581,0.0000020582,0.0000020577, -0.0000020594,0.0000020656,0.0000020781,0.0000020899,0.0000020961, -0.0000021010,0.0000021092,0.0000021181,0.0000021214,0.0000021230, -0.0000021254,0.0000021253,0.0000021230,0.0000021207,0.0000021172, -0.0000021108,0.0000021035,0.0000020983,0.0000020963,0.0000020966, -0.0000020988,0.0000021030,0.0000021074,0.0000021114,0.0000021147, -0.0000021173,0.0000021193,0.0000021213,0.0000021233,0.0000021250, -0.0000021264,0.0000021276,0.0000021285,0.0000021295,0.0000021307, -0.0000021320,0.0000021333,0.0000021345,0.0000021354,0.0000021358, -0.0000021360,0.0000021358,0.0000021353,0.0000021339,0.0000021318, -0.0000021295,0.0000021276,0.0000021259,0.0000021242,0.0000021223, -0.0000021205,0.0000021195,0.0000021195,0.0000021207,0.0000021230, -0.0000021261,0.0000021293,0.0000021319,0.0000021335,0.0000021335, -0.0000021331,0.0000021309,0.0000021281,0.0000021247,0.0000021217, -0.0000021214,0.0000021211,0.0000021258,0.0000021343,0.0000021459, -0.0000021594,0.0000021728,0.0000021847,0.0000021945,0.0000022017, -0.0000022068,0.0000022105,0.0000022106,0.0000022127,0.0000022126, -0.0000022131,0.0000022131,0.0000022122,0.0000022110,0.0000022092, -0.0000022069,0.0000022049,0.0000022037,0.0000022040,0.0000022061, -0.0000022100,0.0000022144,0.0000022182,0.0000022214,0.0000022232, -0.0000022247,0.0000022254,0.0000022251,0.0000022236,0.0000022213, -0.0000022188,0.0000022162,0.0000022138,0.0000022118,0.0000022110, -0.0000022113,0.0000022125,0.0000022140,0.0000022148,0.0000022143, -0.0000022110,0.0000022042,0.0000021954,0.0000021865,0.0000021792, -0.0000021703,0.0000021576,0.0000021422,0.0000021262,0.0000021090, -0.0000020889,0.0000020675,0.0000020487,0.0000020347,0.0000020248, -0.0000020170,0.0000020092,0.0000020015,0.0000019955,0.0000019915, -0.0000019885,0.0000019855,0.0000019837,0.0000019840,0.0000019862, -0.0000019882,0.0000019894,0.0000019903,0.0000019911,0.0000019915, -0.0000019908,0.0000019886,0.0000019846,0.0000019809,0.0000019789, -0.0000019795,0.0000019820,0.0000019839,0.0000019841,0.0000019822, -0.0000019800,0.0000019782,0.0000019788,0.0000019823,0.0000019877, -0.0000019934,0.0000019983,0.0000020029,0.0000020080,0.0000020133, -0.0000020173,0.0000020194,0.0000020195,0.0000020187,0.0000020175, -0.0000020162,0.0000020154,0.0000020156,0.0000020159,0.0000020149, -0.0000020120,0.0000020087,0.0000020086,0.0000020136,0.0000020254, -0.0000020412,0.0000020546,0.0000020608,0.0000020599,0.0000020565, -0.0000020537,0.0000020561,0.0000020624,0.0000020695,0.0000020747, -0.0000020759,0.0000020758,0.0000020725,0.0000020678,0.0000020625, -0.0000020578,0.0000020539,0.0000020535,0.0000020547,0.0000020593, -0.0000020661,0.0000020748,0.0000020844,0.0000020942,0.0000021031, -0.0000021100,0.0000021141,0.0000021161,0.0000021168,0.0000021175, -0.0000021195,0.0000021228,0.0000021274,0.0000021322,0.0000021362, -0.0000021392,0.0000021406,0.0000021411,0.0000021405,0.0000021398, -0.0000021393,0.0000021391,0.0000021391,0.0000021388,0.0000021384, -0.0000021385,0.0000021385,0.0000021381,0.0000021369,0.0000021351, -0.0000021327,0.0000021295,0.0000021257,0.0000021214,0.0000021168, -0.0000021124,0.0000021075,0.0000021019,0.0000020960,0.0000020902, -0.0000020848,0.0000020797,0.0000020755,0.0000020732,0.0000020718, -0.0000020714,0.0000020721,0.0000020737,0.0000020753,0.0000020768, -0.0000020780,0.0000020786,0.0000020790,0.0000020787,0.0000020787, -0.0000020787,0.0000020793,0.0000020799,0.0000020800,0.0000020796, -0.0000020795,0.0000020794,0.0000020800,0.0000020805,0.0000020804, -0.0000020806,0.0000020812,0.0000020813,0.0000020817,0.0000020824, -0.0000020820,0.0000020807,0.0000020787,0.0000020764,0.0000020740, -0.0000020719,0.0000020702,0.0000020691,0.0000020687,0.0000020691, -0.0000020701,0.0000020708,0.0000020711,0.0000020711,0.0000020707, -0.0000020697,0.0000020679,0.0000020652,0.0000020615,0.0000020571, -0.0000020528,0.0000020495,0.0000020477,0.0000020473,0.0000020470, -0.0000020462,0.0000020450,0.0000020432,0.0000020400,0.0000020353, -0.0000020293,0.0000020225,0.0000020159,0.0000020094,0.0000020035, -0.0000019987,0.0000019950,0.0000019935,0.0000019940,0.0000019959, -0.0000019990,0.0000020024,0.0000020053,0.0000020078,0.0000020098, -0.0000020115,0.0000020127,0.0000020140,0.0000020156,0.0000020176, -0.0000020204,0.0000020241,0.0000020277,0.0000020308,0.0000020334, -0.0000020351,0.0000020360,0.0000020358,0.0000020343,0.0000020315, -0.0000020275,0.0000020231,0.0000020186,0.0000020144,0.0000020108, -0.0000020079,0.0000020051,0.0000020022,0.0000019994,0.0000019967, -0.0000019939,0.0000019913,0.0000019891,0.0000019873,0.0000019857, -0.0000019843,0.0000019832,0.0000019822,0.0000019815,0.0000019812, -0.0000019814,0.0000019821,0.0000019826,0.0000019824,0.0000019812, -0.0000019788,0.0000019753,0.0000019716,0.0000019681,0.0000019650, -0.0000019622,0.0000019596,0.0000019572,0.0000019555,0.0000019545, -0.0000019543,0.0000019548,0.0000019562,0.0000019581,0.0000019600, -0.0000019615,0.0000019624,0.0000019627,0.0000019619,0.0000019600, -0.0000019580,0.0000019562,0.0000019553,0.0000019556,0.0000019573, -0.0000019598,0.0000019626,0.0000019656,0.0000019683,0.0000019706, -0.0000019720,0.0000019725,0.0000019725,0.0000019720,0.0000019713, -0.0000019705,0.0000019701,0.0000019700,0.0000019703,0.0000019706, -0.0000019705,0.0000019700,0.0000019688,0.0000019669,0.0000019644, -0.0000019613,0.0000019581,0.0000019550,0.0000019522,0.0000019500, -0.0000019487,0.0000019482,0.0000019484,0.0000019486,0.0000019489, -0.0000019494,0.0000019497,0.0000019496,0.0000019494,0.0000019493, -0.0000019494,0.0000019499,0.0000019504,0.0000019508,0.0000019510, -0.0000019511,0.0000019507,0.0000019502,0.0000019494,0.0000019486, -0.0000019480,0.0000019476,0.0000019472,0.0000019469,0.0000019473, -0.0000019486,0.0000019501,0.0000019511,0.0000019512,0.0000019505, -0.0000019495,0.0000019482,0.0000019466,0.0000019453,0.0000019454, -0.0000019477,0.0000019518,0.0000019557,0.0000019585,0.0000019613, -0.0000019647,0.0000019688,0.0000019729,0.0000019740,0.0000019697, -0.0000019628,0.0000019578,0.0000019582,0.0000019695,0.0000019861, -0.0000020045,0.0000020232,0.0000020280,0.0000020258,0.0000020334, -0.0000020482,0.0000020531,0.0000020523,0.0000020535,0.0000020557, -0.0000020547,0.0000020509,0.0000020474,0.0000020455,0.0000020447, -0.0000020443,0.0000020439,0.0000020439,0.0000020448,0.0000020468, -0.0000020493,0.0000020495,0.0000020442,0.0000020347,0.0000020264, -0.0000020216,0.0000020207,0.0000020227,0.0000020250,0.0000020248, -0.0000020223,0.0000020193,0.0000020180,0.0000020180,0.0000020191, -0.0000020203,0.0000020204,0.0000020192,0.0000020175,0.0000020171, -0.0000020181,0.0000020195,0.0000020221,0.0000020269,0.0000020308, -0.0000020314,0.0000020295,0.0000020281,0.0000020289,0.0000020319, -0.0000020349,0.0000020363,0.0000020358,0.0000020348,0.0000020343, -0.0000020342,0.0000020342,0.0000020331,0.0000020311,0.0000020292, -0.0000020276,0.0000020260,0.0000020243,0.0000020229,0.0000020220, -0.0000020216,0.0000020212,0.0000020207,0.0000020201,0.0000020195, -0.0000020191,0.0000020188,0.0000020184,0.0000020177,0.0000020173, -0.0000020171,0.0000020168,0.0000020163,0.0000020159,0.0000020156, -0.0000020152,0.0000020147,0.0000020142,0.0000020136,0.0000020128, -0.0000020119,0.0000020108,0.0000020097,0.0000020088,0.0000020080, -0.0000020071,0.0000020060,0.0000020049,0.0000020041,0.0000020034, -0.0000020027,0.0000020017,0.0000020006,0.0000019991,0.0000019974, -0.0000019956,0.0000019940,0.0000019925,0.0000019912,0.0000019900, -0.0000019890,0.0000019883,0.0000019875,0.0000019866,0.0000019856, -0.0000019845,0.0000019834,0.0000019825,0.0000019817,0.0000019811, -0.0000019810,0.0000019814,0.0000019823,0.0000019833,0.0000019845, -0.0000019856,0.0000019866,0.0000019876,0.0000019887,0.0000019896, -0.0000019902,0.0000019904,0.0000019901,0.0000019892,0.0000019880, -0.0000019863,0.0000019843,0.0000019819,0.0000019793,0.0000019767, -0.0000019746,0.0000019725,0.0000019700,0.0000019670,0.0000019635, -0.0000019594,0.0000019555,0.0000019528,0.0000019514,0.0000019532, -0.0000019569,0.0000019610,0.0000019632,0.0000019630,0.0000019606, -0.0000019580,0.0000019565,0.0000019561,0.0000019562,0.0000019553, -0.0000019534,0.0000019510,0.0000019488,0.0000019486,0.0000019501, -0.0000019539,0.0000019570,0.0000019581,0.0000019582,0.0000019591, -0.0000019611,0.0000019645,0.0000019665,0.0000019690,0.0000019712, -0.0000019738,0.0000019775,0.0000019823,0.0000019876,0.0000019913, -0.0000019949,0.0000019969,0.0000019984,0.0000019996,0.0000020006, -0.0000020013,0.0000020021,0.0000020031,0.0000020045,0.0000020057, -0.0000020064,0.0000020067,0.0000020072,0.0000020077,0.0000020080, -0.0000020080,0.0000020082,0.0000020085,0.0000020092,0.0000020097, -0.0000020103,0.0000020109,0.0000020114,0.0000020122,0.0000020135, -0.0000020150,0.0000020161,0.0000020164,0.0000020161,0.0000020153, -0.0000020134,0.0000020107,0.0000020081,0.0000020064,0.0000020059, -0.0000020069,0.0000020103,0.0000020149,0.0000020198,0.0000020246, -0.0000020287,0.0000020324,0.0000020359,0.0000020384,0.0000020394, -0.0000020390,0.0000020377,0.0000020353,0.0000020320,0.0000020281, -0.0000020243,0.0000020211,0.0000020195,0.0000020188,0.0000020179, -0.0000020172,0.0000020169,0.0000020166,0.0000020163,0.0000020162, -0.0000020174,0.0000020195,0.0000020209,0.0000020218,0.0000020229, -0.0000020248,0.0000020266,0.0000020281,0.0000020296,0.0000020312, -0.0000020330,0.0000020340,0.0000020345,0.0000020350,0.0000020360, -0.0000020372,0.0000020386,0.0000020403,0.0000020426,0.0000020451, -0.0000020478,0.0000020507,0.0000020535,0.0000020555,0.0000020566, -0.0000020571,0.0000020578,0.0000020587,0.0000020596,0.0000020601, -0.0000020603,0.0000020604,0.0000020605,0.0000020603,0.0000020597, -0.0000020588,0.0000020580,0.0000020580,0.0000020588,0.0000020603, -0.0000020625,0.0000020654,0.0000020688,0.0000020722,0.0000020750, -0.0000020777,0.0000020801,0.0000020817,0.0000020823,0.0000020821, -0.0000020815,0.0000020807,0.0000020798,0.0000020782,0.0000020761, -0.0000020737,0.0000020718,0.0000020704,0.0000020697,0.0000020693, -0.0000020693,0.0000020699,0.0000020710,0.0000020727,0.0000020750, -0.0000020779,0.0000020803,0.0000020821,0.0000020839,0.0000020865, -0.0000020895,0.0000020929,0.0000020958,0.0000020963,0.0000020941, -0.0000020895,0.0000020850,0.0000020817,0.0000020789,0.0000020762, -0.0000020735,0.0000020716,0.0000020707,0.0000020707,0.0000020705, -0.0000020704,0.0000020707,0.0000020723,0.0000020759,0.0000020806, -0.0000020850,0.0000020883,0.0000020907,0.0000020916,0.0000020916, -0.0000020914,0.0000020917,0.0000020924,0.0000020927,0.0000020921, -0.0000020910,0.0000020906,0.0000020918,0.0000020936,0.0000020948, -0.0000020958,0.0000020972,0.0000020989,0.0000021010,0.0000021051, -0.0000021106,0.0000021151,0.0000021178,0.0000021197,0.0000021209, -0.0000021214,0.0000021211,0.0000021201,0.0000021188,0.0000021181, -0.0000021185,0.0000021204,0.0000021234,0.0000021262,0.0000021284, -0.0000021306,0.0000021331,0.0000021354,0.0000021371,0.0000021380, -0.0000021379,0.0000021365,0.0000021338,0.0000021305,0.0000021275, -0.0000021251,0.0000021235,0.0000021224,0.0000021217,0.0000021208, -0.0000021197,0.0000021191,0.0000021189,0.0000021192,0.0000021199, -0.0000021211,0.0000021230,0.0000021262,0.0000021310,0.0000021364, -0.0000021414,0.0000021461,0.0000021511,0.0000021557,0.0000021595, -0.0000021623,0.0000021639,0.0000021646,0.0000021651,0.0000021662, -0.0000021676,0.0000021691,0.0000021708,0.0000021724,0.0000021740, -0.0000021754,0.0000021762,0.0000021761,0.0000021753,0.0000021741, -0.0000021725,0.0000021707,0.0000021690,0.0000021670,0.0000021650, -0.0000021636,0.0000021622,0.0000021608,0.0000021597,0.0000021588, -0.0000021581,0.0000021577,0.0000021575,0.0000021573,0.0000021570, -0.0000021569,0.0000021570,0.0000021576,0.0000021586,0.0000021592, -0.0000021597,0.0000021602,0.0000021607,0.0000021609,0.0000021605, -0.0000021596,0.0000021585,0.0000021576,0.0000021564,0.0000021545, -0.0000021525,0.0000021503,0.0000021481,0.0000021454,0.0000021416, -0.0000021381,0.0000021362,0.0000021351,0.0000021322,0.0000021296, -0.0000021299,0.0000021348,0.0000021438,0.0000021522,0.0000021566, -0.0000021610,0.0000021664,0.0000021680,0.0000021636,0.0000021564, -0.0000021523,0.0000021506,0.0000021489,0.0000021454,0.0000021404, -0.0000021370,0.0000021350,0.0000021366,0.0000021426,0.0000021453, -0.0000021436,0.0000021402,0.0000021374,0.0000021355,0.0000021333, -0.0000021303,0.0000021269,0.0000021231,0.0000021202,0.0000021194, -0.0000021193,0.0000021191,0.0000021182,0.0000021169,0.0000021154, -0.0000021138,0.0000021119,0.0000021099,0.0000021070,0.0000021039, -0.0000021005,0.0000020968,0.0000020944,0.0000020935,0.0000020933, -0.0000020940,0.0000020951,0.0000020953,0.0000020945,0.0000020940, -0.0000020933,0.0000020914,0.0000020878,0.0000020827,0.0000020778, -0.0000020728,0.0000020677,0.0000020637,0.0000020618,0.0000020614, -0.0000020602,0.0000020584,0.0000020564,0.0000020549,0.0000020544, -0.0000020555,0.0000020595,0.0000020640,0.0000020653,0.0000020624, -0.0000020520,0.0000020383,0.0000020276,0.0000020228,0.0000020204, -0.0000020087,0.0000020044,0.0000020087,0.0000020110,0.0000020122, -0.0000020191,0.0000020309,0.0000020390,0.0000020405,0.0000020417, -0.0000020477,0.0000020548,0.0000020606,0.0000020645,0.0000020689, -0.0000020792,0.0000020966,0.0000021106,0.0000021150,0.0000021230, -0.0000021412,0.0000021445,0.0000021461,0.0000021551,0.0000021547, -0.0000021543,0.0000021593,0.0000021642,0.0000021602,0.0000021603, -0.0000021766,0.0000021844,0.0000021801,0.0000021729,0.0000021706, -0.0000021741,0.0000021745,0.0000021775,0.0000021901,0.0000021932, -0.0000021919,0.0000021934,0.0000022047,0.0000022122,0.0000022124, -0.0000022152,0.0000022255,0.0000022369,0.0000022439,0.0000022459, -0.0000022448,0.0000022444,0.0000022453,0.0000022452,0.0000022460, -0.0000022478,0.0000022493,0.0000022492,0.0000022466,0.0000022404, -0.0000022308,0.0000022178,0.0000022038,0.0000021945,0.0000021919, -0.0000021922,0.0000021949,0.0000021987,0.0000022010,0.0000022013, -0.0000021988,0.0000021930,0.0000021842,0.0000021738,0.0000021629, -0.0000021542,0.0000021480,0.0000021440,0.0000021405,0.0000021372, -0.0000021333,0.0000021280,0.0000021204,0.0000021125,0.0000021057, -0.0000021002,0.0000020974,0.0000020950,0.0000020920,0.0000020888, -0.0000020867,0.0000020860,0.0000020860,0.0000020873,0.0000020925, -0.0000020994,0.0000021060,0.0000021129,0.0000021195,0.0000021250, -0.0000021275,0.0000021283,0.0000021296,0.0000021293,0.0000021299, -0.0000021306,0.0000021299,0.0000021288,0.0000021275,0.0000021253, -0.0000021232,0.0000021220,0.0000021211,0.0000021195,0.0000021161, -0.0000021129,0.0000021119,0.0000021154,0.0000021226,0.0000021313, -0.0000021385,0.0000021430,0.0000021445,0.0000021440,0.0000021432, -0.0000021419,0.0000021413,0.0000021416,0.0000021425,0.0000021444, -0.0000021471,0.0000021487,0.0000021482,0.0000021471,0.0000021464, -0.0000021462,0.0000021469,0.0000021489,0.0000021515,0.0000021543, -0.0000021575,0.0000021601,0.0000021628,0.0000021656,0.0000021682, -0.0000021702,0.0000021726,0.0000021750,0.0000021769,0.0000021781, -0.0000021789,0.0000021801,0.0000021827,0.0000021863,0.0000021891, -0.0000021919,0.0000021945,0.0000021956,0.0000021962,0.0000021972, -0.0000021967,0.0000021947,0.0000021931,0.0000021916,0.0000021900, -0.0000021885,0.0000021874,0.0000021860,0.0000021842,0.0000021823, -0.0000021807,0.0000021789,0.0000021781,0.0000021778,0.0000021770, -0.0000021765,0.0000021758,0.0000021757,0.0000021757,0.0000021750, -0.0000021742,0.0000021730,0.0000021720,0.0000021715,0.0000021713, -0.0000021717,0.0000021731,0.0000021750,0.0000021770,0.0000021793, -0.0000021818,0.0000021845,0.0000021870,0.0000021893,0.0000021920, -0.0000021951,0.0000021981,0.0000022009,0.0000022032,0.0000022050, -0.0000022059,0.0000022058,0.0000022050,0.0000022036,0.0000022009, -0.0000021982,0.0000021945,0.0000021911,0.0000021881,0.0000021861, -0.0000021851,0.0000021847,0.0000021846,0.0000021841,0.0000021832, -0.0000021821,0.0000021815,0.0000021822,0.0000021844,0.0000021867, -0.0000021892,0.0000021924,0.0000021950,0.0000021967,0.0000021975, -0.0000021975,0.0000021974,0.0000021975,0.0000021978,0.0000021986, -0.0000022004,0.0000022021,0.0000022032,0.0000022044,0.0000022050, -0.0000022045,0.0000022027,0.0000021996,0.0000021957,0.0000021912, -0.0000021874,0.0000021837,0.0000021801,0.0000021771,0.0000021753, -0.0000021744,0.0000021740,0.0000021739,0.0000021734,0.0000021738, -0.0000021755,0.0000021776,0.0000021791,0.0000021803,0.0000021811, -0.0000021817,0.0000021819,0.0000021826,0.0000021832,0.0000021845, -0.0000021872,0.0000021906,0.0000021950,0.0000021993,0.0000022038, -0.0000022078,0.0000022112,0.0000022131,0.0000022124,0.0000022106, -0.0000022081,0.0000022043,0.0000021995,0.0000021947,0.0000021911, -0.0000021884,0.0000021863,0.0000021848,0.0000021838,0.0000021829, -0.0000021819,0.0000021810,0.0000021799,0.0000021784,0.0000021766, -0.0000021752,0.0000021728,0.0000021706,0.0000021683,0.0000021658, -0.0000021639,0.0000021617,0.0000021604,0.0000021594,0.0000021593, -0.0000021601,0.0000021613,0.0000021617,0.0000021620,0.0000021618, -0.0000021615,0.0000021613,0.0000021611,0.0000021613,0.0000021619, -0.0000021631,0.0000021644,0.0000021654,0.0000021661,0.0000021665, -0.0000021666,0.0000021661,0.0000021646,0.0000021622,0.0000021588, -0.0000021548,0.0000021505,0.0000021468,0.0000021436,0.0000021408, -0.0000021383,0.0000021363,0.0000021346,0.0000021326,0.0000021301, -0.0000021269,0.0000021232,0.0000021193,0.0000021154,0.0000021113, -0.0000021071,0.0000021033,0.0000021005,0.0000020993,0.0000020993, -0.0000020996,0.0000020999,0.0000021002,0.0000020997,0.0000020984, -0.0000020966,0.0000020946,0.0000020926,0.0000020905,0.0000020884, -0.0000020864,0.0000020840,0.0000020813,0.0000020787,0.0000020768, -0.0000020754,0.0000020743,0.0000020739,0.0000020744,0.0000020751, -0.0000020758,0.0000020763,0.0000020764,0.0000020762,0.0000020766, -0.0000020774,0.0000020789,0.0000020811,0.0000020839,0.0000020868, -0.0000020897,0.0000020923,0.0000020947,0.0000020966,0.0000020978, -0.0000020982,0.0000020975,0.0000020963,0.0000020947,0.0000020930, -0.0000020911,0.0000020895,0.0000020883,0.0000020872,0.0000020861, -0.0000020851,0.0000020846,0.0000020841,0.0000020830,0.0000020811, -0.0000020791,0.0000020772,0.0000020755,0.0000020739,0.0000020722, -0.0000020702,0.0000020679,0.0000020652,0.0000020621,0.0000020589, -0.0000020558,0.0000020525,0.0000020494,0.0000020468,0.0000020452, -0.0000020438,0.0000020435,0.0000020436,0.0000020443,0.0000020452, -0.0000020461,0.0000020469,0.0000020477,0.0000020480,0.0000020477, -0.0000020472,0.0000020460,0.0000020442,0.0000020418,0.0000020392, -0.0000020370,0.0000020353,0.0000020343,0.0000020339,0.0000020335, -0.0000020329,0.0000020322,0.0000020314,0.0000020306,0.0000020304, -0.0000020308,0.0000020317,0.0000020326,0.0000020335,0.0000020347, -0.0000020359,0.0000020365,0.0000020365,0.0000020357,0.0000020336, -0.0000020302,0.0000020262,0.0000020219,0.0000020177,0.0000020136, -0.0000020099,0.0000020074,0.0000020058,0.0000020047,0.0000020037, -0.0000020027,0.0000020016,0.0000019998,0.0000019981,0.0000019959, -0.0000019943,0.0000019927,0.0000019914,0.0000019900,0.0000019881, -0.0000019861,0.0000019845,0.0000019837,0.0000019840,0.0000019853, -0.0000019865,0.0000019874,0.0000019877,0.0000019879,0.0000019881, -0.0000019877,0.0000019866,0.0000019853,0.0000019846,0.0000019842, -0.0000019823,0.0000019802,0.0000019790,0.0000019785,0.0000019774, -0.0000019746,0.0000019707,0.0000019661,0.0000019625,0.0000019607, -0.0000019610,0.0000019640,0.0000019682,0.0000019725,0.0000019766, -0.0000019786,0.0000019786,0.0000019766,0.0000019723,0.0000019666, -0.0000019621,0.0000019600,0.0000019594,0.0000019593,0.0000019586, -0.0000019573,0.0000019557,0.0000019546,0.0000019542,0.0000019544, -0.0000019542,0.0000019545,0.0000019558,0.0000019566,0.0000019550, -0.0000019519,0.0000019505,0.0000019515,0.0000019558,0.0000019619, -0.0000019676,0.0000019726,0.0000019774,0.0000019822,0.0000019860, -0.0000019885,0.0000019897,0.0000019898,0.0000019897,0.0000019905, -0.0000019915,0.0000019931,0.0000019954,0.0000019981,0.0000019998, -0.0000019993,0.0000019976,0.0000019970,0.0000019984,0.0000020011, -0.0000020060,0.0000020132,0.0000020212,0.0000020275,0.0000020313, -0.0000020333,0.0000020341,0.0000020341,0.0000020337,0.0000020334, -0.0000020344,0.0000020367,0.0000020390,0.0000020403,0.0000020403, -0.0000020390,0.0000020368,0.0000020337,0.0000020317,0.0000020315, -0.0000020326,0.0000020353,0.0000020395,0.0000020439,0.0000020478, -0.0000020491,0.0000020492,0.0000020457,0.0000020395,0.0000020309, -0.0000020227,0.0000020175,0.0000020140,0.0000020148,0.0000020181, -0.0000020234,0.0000020292,0.0000020342,0.0000020384,0.0000020415, -0.0000020434,0.0000020442,0.0000020443,0.0000020439,0.0000020432, -0.0000020423,0.0000020416,0.0000020409,0.0000020400,0.0000020389, -0.0000020377,0.0000020365,0.0000020353,0.0000020343,0.0000020334, -0.0000020328,0.0000020328,0.0000020331,0.0000020337,0.0000020347, -0.0000020363,0.0000020379,0.0000020394,0.0000020406,0.0000020415, -0.0000020431,0.0000020452,0.0000020477,0.0000020507,0.0000020535, -0.0000020557,0.0000020578,0.0000020605,0.0000020639,0.0000020677, -0.0000020711,0.0000020736,0.0000020748,0.0000020746,0.0000020729, -0.0000020703,0.0000020682,0.0000020674,0.0000020675,0.0000020691, -0.0000020717,0.0000020746,0.0000020772,0.0000020792,0.0000020808, -0.0000020822,0.0000020829,0.0000020828,0.0000020826,0.0000020825, -0.0000020813,0.0000020778,0.0000020755,0.0000020747,0.0000020720, -0.0000020700,0.0000020663,0.0000020608,0.0000020590,0.0000020586, -0.0000020579,0.0000020588,0.0000020645,0.0000020766,0.0000020874, -0.0000020929,0.0000020977,0.0000021065,0.0000021152,0.0000021183, -0.0000021205,0.0000021231,0.0000021229,0.0000021209,0.0000021188, -0.0000021146,0.0000021073,0.0000020986,0.0000020925,0.0000020904, -0.0000020910,0.0000020947,0.0000021001,0.0000021054,0.0000021097, -0.0000021130,0.0000021152,0.0000021162,0.0000021170,0.0000021177, -0.0000021184,0.0000021192,0.0000021200,0.0000021207,0.0000021217, -0.0000021227,0.0000021238,0.0000021250,0.0000021261,0.0000021269, -0.0000021274,0.0000021281,0.0000021288,0.0000021291,0.0000021282, -0.0000021265,0.0000021245,0.0000021230,0.0000021216,0.0000021203, -0.0000021188,0.0000021173,0.0000021160,0.0000021154,0.0000021157, -0.0000021170,0.0000021192,0.0000021220,0.0000021251,0.0000021281, -0.0000021305,0.0000021317,0.0000021317,0.0000021319,0.0000021303, -0.0000021278,0.0000021243,0.0000021207,0.0000021201,0.0000021189, -0.0000021224,0.0000021289,0.0000021388,0.0000021507,0.0000021637, -0.0000021766,0.0000021883,0.0000021978,0.0000022051,0.0000022099, -0.0000022142,0.0000022174,0.0000022182,0.0000022214,0.0000022217, -0.0000022221,0.0000022220,0.0000022209,0.0000022202,0.0000022200, -0.0000022203,0.0000022214,0.0000022230,0.0000022241,0.0000022247, -0.0000022253,0.0000022256,0.0000022254,0.0000022241,0.0000022214, -0.0000022181,0.0000022143,0.0000022107,0.0000022076,0.0000022051, -0.0000022039,0.0000022037,0.0000022044,0.0000022051,0.0000022048, -0.0000022025,0.0000021981,0.0000021920,0.0000021854,0.0000021794, -0.0000021736,0.0000021653,0.0000021544,0.0000021406,0.0000021260, -0.0000021094,0.0000020896,0.0000020683,0.0000020493,0.0000020347, -0.0000020246,0.0000020168,0.0000020093,0.0000020013,0.0000019939, -0.0000019885,0.0000019848,0.0000019815,0.0000019793,0.0000019789, -0.0000019801,0.0000019813,0.0000019820,0.0000019825,0.0000019835, -0.0000019848,0.0000019856,0.0000019845,0.0000019816,0.0000019783, -0.0000019757,0.0000019754,0.0000019774,0.0000019801,0.0000019814, -0.0000019802,0.0000019775,0.0000019753,0.0000019753,0.0000019779, -0.0000019828,0.0000019885,0.0000019937,0.0000019981,0.0000020025, -0.0000020076,0.0000020128,0.0000020163,0.0000020172,0.0000020168, -0.0000020159,0.0000020148,0.0000020146,0.0000020151,0.0000020159, -0.0000020159,0.0000020136,0.0000020099,0.0000020067,0.0000020058, -0.0000020146,0.0000020290,0.0000020442,0.0000020539,0.0000020563, -0.0000020528,0.0000020493,0.0000020496,0.0000020548,0.0000020629, -0.0000020707,0.0000020755,0.0000020762,0.0000020756,0.0000020723, -0.0000020675,0.0000020617,0.0000020567,0.0000020530,0.0000020527, -0.0000020537,0.0000020582,0.0000020654,0.0000020747,0.0000020848, -0.0000020946,0.0000021029,0.0000021088,0.0000021119,0.0000021127, -0.0000021124,0.0000021122,0.0000021138,0.0000021168,0.0000021205, -0.0000021246,0.0000021278,0.0000021296,0.0000021298,0.0000021292, -0.0000021282,0.0000021276,0.0000021273,0.0000021269,0.0000021258, -0.0000021248,0.0000021241,0.0000021233,0.0000021219,0.0000021196, -0.0000021170,0.0000021144,0.0000021115,0.0000021083,0.0000021048, -0.0000021014,0.0000020976,0.0000020933,0.0000020889,0.0000020848, -0.0000020814,0.0000020783,0.0000020760,0.0000020749,0.0000020744, -0.0000020749,0.0000020769,0.0000020788,0.0000020804,0.0000020818, -0.0000020824,0.0000020826,0.0000020824,0.0000020820,0.0000020811, -0.0000020800,0.0000020794,0.0000020791,0.0000020790,0.0000020784, -0.0000020783,0.0000020792,0.0000020808,0.0000020820,0.0000020832, -0.0000020840,0.0000020846,0.0000020849,0.0000020846,0.0000020843, -0.0000020832,0.0000020815,0.0000020792,0.0000020766,0.0000020743, -0.0000020725,0.0000020711,0.0000020701,0.0000020698,0.0000020700, -0.0000020701,0.0000020703,0.0000020706,0.0000020706,0.0000020703, -0.0000020697,0.0000020690,0.0000020676,0.0000020650,0.0000020611, -0.0000020568,0.0000020530,0.0000020504,0.0000020490,0.0000020483, -0.0000020481,0.0000020481,0.0000020471,0.0000020446,0.0000020405, -0.0000020350,0.0000020285,0.0000020217,0.0000020148,0.0000020079, -0.0000020015,0.0000019958,0.0000019913,0.0000019879,0.0000019865, -0.0000019872,0.0000019896,0.0000019925,0.0000019953,0.0000019980, -0.0000020003,0.0000020021,0.0000020039,0.0000020060,0.0000020081, -0.0000020105,0.0000020133,0.0000020161,0.0000020185,0.0000020200, -0.0000020207,0.0000020208,0.0000020202,0.0000020189,0.0000020168, -0.0000020138,0.0000020102,0.0000020065,0.0000020029,0.0000020001, -0.0000019977,0.0000019955,0.0000019932,0.0000019912,0.0000019895, -0.0000019876,0.0000019858,0.0000019842,0.0000019826,0.0000019812, -0.0000019799,0.0000019787,0.0000019773,0.0000019760,0.0000019753, -0.0000019751,0.0000019755,0.0000019760,0.0000019761,0.0000019757, -0.0000019746,0.0000019726,0.0000019700,0.0000019670,0.0000019638, -0.0000019606,0.0000019574,0.0000019544,0.0000019518,0.0000019499, -0.0000019490,0.0000019489,0.0000019494,0.0000019506,0.0000019520, -0.0000019537,0.0000019557,0.0000019576,0.0000019589,0.0000019590, -0.0000019580,0.0000019562,0.0000019548,0.0000019537,0.0000019529, -0.0000019530,0.0000019542,0.0000019561,0.0000019588,0.0000019618, -0.0000019645,0.0000019666,0.0000019682,0.0000019691,0.0000019693, -0.0000019691,0.0000019688,0.0000019686,0.0000019689,0.0000019695, -0.0000019699,0.0000019700,0.0000019698,0.0000019691,0.0000019675, -0.0000019651,0.0000019622,0.0000019591,0.0000019562,0.0000019535, -0.0000019514,0.0000019501,0.0000019496,0.0000019496,0.0000019502, -0.0000019507,0.0000019509,0.0000019508,0.0000019505,0.0000019503, -0.0000019503,0.0000019506,0.0000019512,0.0000019515,0.0000019514, -0.0000019511,0.0000019505,0.0000019497,0.0000019488,0.0000019478, -0.0000019471,0.0000019464,0.0000019458,0.0000019457,0.0000019461, -0.0000019475,0.0000019492,0.0000019507,0.0000019513,0.0000019511, -0.0000019501,0.0000019485,0.0000019463,0.0000019439,0.0000019425, -0.0000019433,0.0000019468,0.0000019514,0.0000019551,0.0000019581, -0.0000019612,0.0000019649,0.0000019692,0.0000019718,0.0000019701, -0.0000019636,0.0000019574,0.0000019562,0.0000019639,0.0000019808, -0.0000019983,0.0000020179,0.0000020302,0.0000020281,0.0000020284, -0.0000020420,0.0000020534,0.0000020540,0.0000020530,0.0000020551, -0.0000020570,0.0000020559,0.0000020524,0.0000020490,0.0000020468, -0.0000020454,0.0000020443,0.0000020440,0.0000020442,0.0000020458, -0.0000020481,0.0000020504,0.0000020496,0.0000020422,0.0000020318, -0.0000020239,0.0000020205,0.0000020206,0.0000020229,0.0000020248, -0.0000020247,0.0000020231,0.0000020211,0.0000020198,0.0000020194, -0.0000020197,0.0000020197,0.0000020190,0.0000020180,0.0000020179, -0.0000020185,0.0000020190,0.0000020210,0.0000020254,0.0000020289, -0.0000020287,0.0000020264,0.0000020257,0.0000020272,0.0000020310, -0.0000020347,0.0000020366,0.0000020364,0.0000020354,0.0000020351, -0.0000020353,0.0000020354,0.0000020347,0.0000020332,0.0000020313, -0.0000020293,0.0000020272,0.0000020253,0.0000020236,0.0000020220, -0.0000020210,0.0000020206,0.0000020202,0.0000020194,0.0000020187, -0.0000020180,0.0000020171,0.0000020157,0.0000020143,0.0000020132, -0.0000020124,0.0000020117,0.0000020114,0.0000020113,0.0000020110, -0.0000020106,0.0000020101,0.0000020095,0.0000020086,0.0000020077, -0.0000020068,0.0000020061,0.0000020054,0.0000020047,0.0000020039, -0.0000020033,0.0000020027,0.0000020023,0.0000020018,0.0000020013, -0.0000020008,0.0000020002,0.0000019994,0.0000019984,0.0000019973, -0.0000019959,0.0000019945,0.0000019929,0.0000019912,0.0000019896, -0.0000019882,0.0000019869,0.0000019854,0.0000019839,0.0000019823, -0.0000019808,0.0000019795,0.0000019784,0.0000019775,0.0000019769, -0.0000019767,0.0000019769,0.0000019775,0.0000019783,0.0000019793, -0.0000019805,0.0000019818,0.0000019828,0.0000019834,0.0000019840, -0.0000019843,0.0000019843,0.0000019841,0.0000019837,0.0000019829, -0.0000019817,0.0000019799,0.0000019775,0.0000019744,0.0000019710, -0.0000019680,0.0000019655,0.0000019634,0.0000019617,0.0000019596, -0.0000019567,0.0000019534,0.0000019500,0.0000019474,0.0000019470, -0.0000019489,0.0000019525,0.0000019565,0.0000019587,0.0000019583, -0.0000019559,0.0000019529,0.0000019511,0.0000019509,0.0000019522, -0.0000019537,0.0000019544,0.0000019541,0.0000019530,0.0000019536, -0.0000019562,0.0000019600,0.0000019624,0.0000019630,0.0000019633, -0.0000019672,0.0000019672,0.0000019683,0.0000019707,0.0000019736, -0.0000019763,0.0000019789,0.0000019827,0.0000019872,0.0000019922, -0.0000019972,0.0000020010,0.0000020043,0.0000020062,0.0000020065, -0.0000020066,0.0000020066,0.0000020070,0.0000020078,0.0000020083, -0.0000020086,0.0000020087,0.0000020088,0.0000020085,0.0000020082, -0.0000020078,0.0000020076,0.0000020080,0.0000020086,0.0000020094, -0.0000020103,0.0000020110,0.0000020116,0.0000020123,0.0000020131, -0.0000020135,0.0000020130,0.0000020115,0.0000020093,0.0000020061, -0.0000020019,0.0000019979,0.0000019955,0.0000019948,0.0000019964, -0.0000020009,0.0000020064,0.0000020123,0.0000020179,0.0000020227, -0.0000020273,0.0000020321,0.0000020358,0.0000020381,0.0000020387, -0.0000020381,0.0000020361,0.0000020330,0.0000020290,0.0000020242, -0.0000020196,0.0000020166,0.0000020152,0.0000020136,0.0000020123, -0.0000020115,0.0000020106,0.0000020097,0.0000020097,0.0000020114, -0.0000020136,0.0000020149,0.0000020156,0.0000020175,0.0000020203, -0.0000020229,0.0000020250,0.0000020268,0.0000020285,0.0000020300, -0.0000020311,0.0000020315,0.0000020317,0.0000020319,0.0000020328, -0.0000020340,0.0000020354,0.0000020372,0.0000020395,0.0000020421, -0.0000020447,0.0000020472,0.0000020492,0.0000020504,0.0000020513, -0.0000020523,0.0000020532,0.0000020538,0.0000020544,0.0000020548, -0.0000020552,0.0000020555,0.0000020556,0.0000020554,0.0000020551, -0.0000020546,0.0000020541,0.0000020539,0.0000020541,0.0000020547, -0.0000020558,0.0000020578,0.0000020602,0.0000020626,0.0000020649, -0.0000020671,0.0000020689,0.0000020702,0.0000020708,0.0000020706, -0.0000020700,0.0000020694,0.0000020684,0.0000020671,0.0000020657, -0.0000020648,0.0000020642,0.0000020639,0.0000020641,0.0000020643, -0.0000020647,0.0000020654,0.0000020668,0.0000020694,0.0000020732, -0.0000020767,0.0000020790,0.0000020811,0.0000020838,0.0000020868, -0.0000020904,0.0000020943,0.0000020961,0.0000020953,0.0000020911, -0.0000020856,0.0000020817,0.0000020788,0.0000020760,0.0000020729, -0.0000020703,0.0000020687,0.0000020681,0.0000020679,0.0000020678, -0.0000020677,0.0000020692,0.0000020726,0.0000020770,0.0000020810, -0.0000020843,0.0000020868,0.0000020882,0.0000020885,0.0000020884, -0.0000020884,0.0000020884,0.0000020881,0.0000020876,0.0000020872, -0.0000020870,0.0000020877,0.0000020899,0.0000020925,0.0000020945, -0.0000020959,0.0000020973,0.0000020987,0.0000021010,0.0000021048, -0.0000021091,0.0000021124,0.0000021144,0.0000021155,0.0000021162, -0.0000021164,0.0000021157,0.0000021144,0.0000021132,0.0000021131, -0.0000021145,0.0000021176,0.0000021216,0.0000021255,0.0000021292, -0.0000021326,0.0000021355,0.0000021375,0.0000021389,0.0000021395, -0.0000021390,0.0000021374,0.0000021349,0.0000021320,0.0000021290, -0.0000021262,0.0000021240,0.0000021226,0.0000021215,0.0000021205, -0.0000021196,0.0000021191,0.0000021192,0.0000021197,0.0000021204, -0.0000021214,0.0000021228,0.0000021257,0.0000021301,0.0000021348, -0.0000021393,0.0000021436,0.0000021480,0.0000021521,0.0000021559, -0.0000021590,0.0000021612,0.0000021629,0.0000021640,0.0000021646, -0.0000021651,0.0000021654,0.0000021653,0.0000021653,0.0000021654, -0.0000021657,0.0000021659,0.0000021660,0.0000021659,0.0000021654, -0.0000021647,0.0000021640,0.0000021629,0.0000021617,0.0000021607, -0.0000021598,0.0000021588,0.0000021577,0.0000021566,0.0000021557, -0.0000021551,0.0000021551,0.0000021552,0.0000021551,0.0000021550, -0.0000021550,0.0000021555,0.0000021563,0.0000021567,0.0000021571, -0.0000021575,0.0000021581,0.0000021588,0.0000021589,0.0000021583, -0.0000021578,0.0000021575,0.0000021569,0.0000021558,0.0000021543, -0.0000021524,0.0000021507,0.0000021483,0.0000021444,0.0000021395, -0.0000021370,0.0000021358,0.0000021331,0.0000021295,0.0000021286, -0.0000021313,0.0000021389,0.0000021483,0.0000021537,0.0000021583, -0.0000021643,0.0000021684,0.0000021674,0.0000021600,0.0000021534, -0.0000021506,0.0000021489,0.0000021447,0.0000021395,0.0000021372, -0.0000021386,0.0000021451,0.0000021484,0.0000021464,0.0000021420, -0.0000021380,0.0000021347,0.0000021326,0.0000021297,0.0000021266, -0.0000021230,0.0000021198,0.0000021183,0.0000021182,0.0000021182, -0.0000021177,0.0000021168,0.0000021149,0.0000021132,0.0000021114, -0.0000021092,0.0000021065,0.0000021026,0.0000020985,0.0000020941, -0.0000020901,0.0000020877,0.0000020869,0.0000020870,0.0000020875, -0.0000020884,0.0000020884,0.0000020877,0.0000020878,0.0000020876, -0.0000020858,0.0000020820,0.0000020769,0.0000020716,0.0000020663, -0.0000020610,0.0000020576,0.0000020566,0.0000020558,0.0000020543, -0.0000020519,0.0000020494,0.0000020479,0.0000020480,0.0000020511, -0.0000020565,0.0000020609,0.0000020613,0.0000020543,0.0000020415, -0.0000020294,0.0000020230,0.0000020220,0.0000020128,0.0000020032, -0.0000020049,0.0000020080,0.0000020098,0.0000020149,0.0000020266, -0.0000020365,0.0000020395,0.0000020398,0.0000020445,0.0000020519, -0.0000020582,0.0000020622,0.0000020662,0.0000020747,0.0000020911, -0.0000021069,0.0000021131,0.0000021178,0.0000021368,0.0000021449, -0.0000021452,0.0000021549,0.0000021557,0.0000021544,0.0000021588, -0.0000021644,0.0000021616,0.0000021608,0.0000021744,0.0000021831, -0.0000021797,0.0000021734,0.0000021706,0.0000021745,0.0000021753, -0.0000021771,0.0000021890,0.0000021951,0.0000021953,0.0000021943, -0.0000022000,0.0000022114,0.0000022150,0.0000022160,0.0000022218, -0.0000022317,0.0000022399,0.0000022434,0.0000022427,0.0000022418, -0.0000022425,0.0000022434,0.0000022448,0.0000022461,0.0000022465, -0.0000022464,0.0000022429,0.0000022358,0.0000022244,0.0000022106, -0.0000021986,0.0000021926,0.0000021910,0.0000021916,0.0000021945, -0.0000021974,0.0000021987,0.0000021977,0.0000021932,0.0000021856, -0.0000021755,0.0000021649,0.0000021559,0.0000021498,0.0000021457, -0.0000021425,0.0000021400,0.0000021383,0.0000021356,0.0000021315, -0.0000021253,0.0000021182,0.0000021115,0.0000021053,0.0000021004, -0.0000020966,0.0000020931,0.0000020904,0.0000020877,0.0000020858, -0.0000020842,0.0000020833,0.0000020858,0.0000020904,0.0000020957, -0.0000021034,0.0000021099,0.0000021153,0.0000021186,0.0000021200, -0.0000021212,0.0000021216,0.0000021222,0.0000021224,0.0000021197, -0.0000021163,0.0000021124,0.0000021077,0.0000021047,0.0000021041, -0.0000021055,0.0000021077,0.0000021082,0.0000021079,0.0000021077, -0.0000021091,0.0000021122,0.0000021180,0.0000021258,0.0000021334, -0.0000021392,0.0000021428,0.0000021436,0.0000021432,0.0000021422, -0.0000021414,0.0000021409,0.0000021408,0.0000021417,0.0000021432, -0.0000021441,0.0000021448,0.0000021452,0.0000021449,0.0000021449, -0.0000021461,0.0000021480,0.0000021502,0.0000021529,0.0000021550, -0.0000021570,0.0000021588,0.0000021604,0.0000021619,0.0000021645, -0.0000021669,0.0000021687,0.0000021701,0.0000021712,0.0000021724, -0.0000021750,0.0000021781,0.0000021806,0.0000021831,0.0000021845, -0.0000021847,0.0000021855,0.0000021854,0.0000021835,0.0000021813, -0.0000021786,0.0000021769,0.0000021755,0.0000021747,0.0000021740, -0.0000021729,0.0000021716,0.0000021704,0.0000021691,0.0000021676, -0.0000021671,0.0000021663,0.0000021656,0.0000021649,0.0000021644, -0.0000021646,0.0000021651,0.0000021652,0.0000021648,0.0000021635, -0.0000021629,0.0000021629,0.0000021634,0.0000021643,0.0000021658, -0.0000021677,0.0000021695,0.0000021711,0.0000021724,0.0000021737, -0.0000021749,0.0000021758,0.0000021769,0.0000021780,0.0000021791, -0.0000021804,0.0000021826,0.0000021855,0.0000021885,0.0000021917, -0.0000021951,0.0000021975,0.0000021986,0.0000021976,0.0000021956, -0.0000021933,0.0000021904,0.0000021881,0.0000021863,0.0000021851, -0.0000021851,0.0000021857,0.0000021864,0.0000021874,0.0000021892, -0.0000021913,0.0000021937,0.0000021962,0.0000021993,0.0000022024, -0.0000022051,0.0000022071,0.0000022081,0.0000022082,0.0000022078, -0.0000022074,0.0000022071,0.0000022080,0.0000022098,0.0000022114, -0.0000022125,0.0000022132,0.0000022135,0.0000022130,0.0000022115, -0.0000022092,0.0000022057,0.0000022015,0.0000021969,0.0000021915, -0.0000021855,0.0000021802,0.0000021762,0.0000021741,0.0000021740, -0.0000021745,0.0000021747,0.0000021755,0.0000021772,0.0000021794, -0.0000021821,0.0000021842,0.0000021853,0.0000021857,0.0000021858, -0.0000021858,0.0000021862,0.0000021869,0.0000021880,0.0000021899, -0.0000021918,0.0000021940,0.0000021964,0.0000021994,0.0000022023, -0.0000022051,0.0000022069,0.0000022074,0.0000022068,0.0000022044, -0.0000022014,0.0000021982,0.0000021952,0.0000021926,0.0000021901, -0.0000021878,0.0000021857,0.0000021838,0.0000021819,0.0000021800, -0.0000021781,0.0000021763,0.0000021748,0.0000021730,0.0000021713, -0.0000021700,0.0000021683,0.0000021674,0.0000021665,0.0000021656, -0.0000021649,0.0000021639,0.0000021637,0.0000021639,0.0000021639, -0.0000021636,0.0000021634,0.0000021631,0.0000021630,0.0000021629, -0.0000021631,0.0000021636,0.0000021648,0.0000021662,0.0000021675, -0.0000021687,0.0000021701,0.0000021714,0.0000021722,0.0000021723, -0.0000021715,0.0000021694,0.0000021663,0.0000021622,0.0000021577, -0.0000021534,0.0000021494,0.0000021459,0.0000021429,0.0000021402, -0.0000021374,0.0000021347,0.0000021315,0.0000021277,0.0000021236, -0.0000021196,0.0000021155,0.0000021112,0.0000021072,0.0000021041, -0.0000021023,0.0000021019,0.0000021019,0.0000021023,0.0000021035, -0.0000021047,0.0000021049,0.0000021043,0.0000021032,0.0000021020, -0.0000021003,0.0000020986,0.0000020968,0.0000020947,0.0000020919, -0.0000020888,0.0000020858,0.0000020830,0.0000020805,0.0000020787, -0.0000020777,0.0000020772,0.0000020770,0.0000020770,0.0000020770, -0.0000020766,0.0000020761,0.0000020755,0.0000020756,0.0000020755, -0.0000020767,0.0000020782,0.0000020803,0.0000020827,0.0000020853, -0.0000020879,0.0000020904,0.0000020925,0.0000020939,0.0000020943, -0.0000020938,0.0000020929,0.0000020913,0.0000020893,0.0000020872, -0.0000020854,0.0000020836,0.0000020820,0.0000020810,0.0000020806, -0.0000020802,0.0000020794,0.0000020783,0.0000020773,0.0000020763, -0.0000020755,0.0000020750,0.0000020739,0.0000020724,0.0000020703, -0.0000020677,0.0000020647,0.0000020614,0.0000020580,0.0000020543, -0.0000020508,0.0000020480,0.0000020461,0.0000020450,0.0000020443, -0.0000020443,0.0000020449,0.0000020455,0.0000020464,0.0000020473, -0.0000020478,0.0000020478,0.0000020474,0.0000020465,0.0000020448, -0.0000020424,0.0000020395,0.0000020368,0.0000020347,0.0000020332, -0.0000020324,0.0000020319,0.0000020314,0.0000020308,0.0000020301, -0.0000020294,0.0000020293,0.0000020297,0.0000020307,0.0000020318, -0.0000020332,0.0000020349,0.0000020365,0.0000020375,0.0000020376, -0.0000020369,0.0000020349,0.0000020319,0.0000020282,0.0000020243, -0.0000020203,0.0000020164,0.0000020131,0.0000020107,0.0000020092, -0.0000020081,0.0000020071,0.0000020059,0.0000020043,0.0000020021, -0.0000019995,0.0000019968,0.0000019945,0.0000019920,0.0000019902, -0.0000019888,0.0000019865,0.0000019842,0.0000019828,0.0000019825, -0.0000019831,0.0000019851,0.0000019869,0.0000019883,0.0000019895, -0.0000019904,0.0000019906,0.0000019901,0.0000019888,0.0000019871, -0.0000019858,0.0000019851,0.0000019833,0.0000019816,0.0000019814, -0.0000019814,0.0000019804,0.0000019771,0.0000019722,0.0000019671, -0.0000019633,0.0000019611,0.0000019609,0.0000019626,0.0000019656, -0.0000019694,0.0000019727,0.0000019742,0.0000019745,0.0000019733, -0.0000019705,0.0000019660,0.0000019612,0.0000019579,0.0000019567, -0.0000019568,0.0000019563,0.0000019552,0.0000019540,0.0000019532, -0.0000019526,0.0000019524,0.0000019522,0.0000019523,0.0000019535, -0.0000019548,0.0000019542,0.0000019520,0.0000019509,0.0000019519, -0.0000019562,0.0000019618,0.0000019666,0.0000019718,0.0000019766, -0.0000019812,0.0000019851,0.0000019880,0.0000019895,0.0000019896, -0.0000019892,0.0000019890,0.0000019890,0.0000019888,0.0000019887, -0.0000019897,0.0000019925,0.0000019943,0.0000019929,0.0000019900, -0.0000019885,0.0000019887,0.0000019906,0.0000019952,0.0000020028, -0.0000020111,0.0000020181,0.0000020233,0.0000020273,0.0000020294, -0.0000020296,0.0000020288,0.0000020283,0.0000020292,0.0000020310, -0.0000020330,0.0000020345,0.0000020357,0.0000020360,0.0000020348, -0.0000020333,0.0000020321,0.0000020311,0.0000020306,0.0000020312, -0.0000020334,0.0000020368,0.0000020403,0.0000020436,0.0000020463, -0.0000020455,0.0000020429,0.0000020374,0.0000020296,0.0000020216, -0.0000020147,0.0000020123,0.0000020093,0.0000020106,0.0000020134, -0.0000020173,0.0000020217,0.0000020257,0.0000020289,0.0000020314, -0.0000020332,0.0000020342,0.0000020349,0.0000020354,0.0000020359, -0.0000020364,0.0000020366,0.0000020366,0.0000020363,0.0000020358, -0.0000020353,0.0000020349,0.0000020345,0.0000020343,0.0000020343, -0.0000020347,0.0000020357,0.0000020372,0.0000020384,0.0000020391, -0.0000020394,0.0000020398,0.0000020407,0.0000020418,0.0000020434, -0.0000020455,0.0000020481,0.0000020509,0.0000020539,0.0000020574, -0.0000020613,0.0000020650,0.0000020676,0.0000020687,0.0000020686, -0.0000020678,0.0000020669,0.0000020665,0.0000020672,0.0000020695, -0.0000020727,0.0000020761,0.0000020791,0.0000020815,0.0000020836, -0.0000020853,0.0000020868,0.0000020884,0.0000020897,0.0000020896, -0.0000020879,0.0000020866,0.0000020855,0.0000020815,0.0000020780, -0.0000020768,0.0000020736,0.0000020710,0.0000020674,0.0000020621, -0.0000020600,0.0000020592,0.0000020582,0.0000020589,0.0000020640, -0.0000020753,0.0000020851,0.0000020899,0.0000020950,0.0000021041, -0.0000021121,0.0000021149,0.0000021177,0.0000021203,0.0000021200, -0.0000021180,0.0000021158,0.0000021111,0.0000021025,0.0000020926, -0.0000020862,0.0000020850,0.0000020866,0.0000020914,0.0000020977, -0.0000021033,0.0000021076,0.0000021107,0.0000021125,0.0000021131, -0.0000021132,0.0000021131,0.0000021131,0.0000021133,0.0000021136, -0.0000021139,0.0000021143,0.0000021147,0.0000021152,0.0000021159, -0.0000021165,0.0000021172,0.0000021179,0.0000021189,0.0000021201, -0.0000021212,0.0000021216,0.0000021210,0.0000021200,0.0000021189, -0.0000021178,0.0000021167,0.0000021154,0.0000021142,0.0000021132, -0.0000021126,0.0000021126,0.0000021131,0.0000021141,0.0000021158, -0.0000021180,0.0000021206,0.0000021234,0.0000021261,0.0000021286, -0.0000021305,0.0000021313,0.0000021310,0.0000021295,0.0000021266, -0.0000021227,0.0000021190,0.0000021173,0.0000021152,0.0000021174, -0.0000021226,0.0000021315,0.0000021432,0.0000021566,0.0000021702, -0.0000021827,0.0000021936,0.0000022027,0.0000022097,0.0000022151, -0.0000022191,0.0000022222,0.0000022260,0.0000022264,0.0000022293, -0.0000022303,0.0000022307,0.0000022315,0.0000022316,0.0000022313, -0.0000022308,0.0000022299,0.0000022287,0.0000022277,0.0000022263, -0.0000022238,0.0000022200,0.0000022151,0.0000022101,0.0000022055, -0.0000022015,0.0000021985,0.0000021966,0.0000021955,0.0000021946, -0.0000021933,0.0000021908,0.0000021868,0.0000021821,0.0000021776, -0.0000021736,0.0000021699,0.0000021653,0.0000021584,0.0000021483, -0.0000021368,0.0000021239,0.0000021082,0.0000020890,0.0000020681, -0.0000020489,0.0000020340,0.0000020235,0.0000020160,0.0000020093, -0.0000020016,0.0000019934,0.0000019865,0.0000019817,0.0000019782, -0.0000019756,0.0000019744,0.0000019746,0.0000019750,0.0000019750, -0.0000019750,0.0000019757,0.0000019775,0.0000019794,0.0000019801, -0.0000019790,0.0000019764,0.0000019737,0.0000019721,0.0000019733, -0.0000019758,0.0000019775,0.0000019773,0.0000019753,0.0000019734, -0.0000019728,0.0000019744,0.0000019784,0.0000019838,0.0000019892, -0.0000019939,0.0000019978,0.0000020024,0.0000020076,0.0000020120, -0.0000020146,0.0000020152,0.0000020142,0.0000020136,0.0000020135, -0.0000020141,0.0000020153,0.0000020158,0.0000020145,0.0000020102, -0.0000020045,0.0000020024,0.0000020063,0.0000020174,0.0000020322, -0.0000020448,0.0000020504,0.0000020496,0.0000020460,0.0000020442, -0.0000020468,0.0000020534,0.0000020624,0.0000020705,0.0000020752, -0.0000020756,0.0000020750,0.0000020714,0.0000020662,0.0000020605, -0.0000020558,0.0000020522,0.0000020519,0.0000020534,0.0000020582, -0.0000020657,0.0000020749,0.0000020846,0.0000020938,0.0000021012, -0.0000021062,0.0000021083,0.0000021081,0.0000021071,0.0000021064, -0.0000021068,0.0000021091,0.0000021121,0.0000021152,0.0000021172, -0.0000021177,0.0000021168,0.0000021159,0.0000021150,0.0000021142, -0.0000021130,0.0000021114,0.0000021102,0.0000021092,0.0000021083, -0.0000021063,0.0000021044,0.0000021028,0.0000021014,0.0000020998, -0.0000020975,0.0000020949,0.0000020920,0.0000020894,0.0000020867, -0.0000020841,0.0000020818,0.0000020800,0.0000020789,0.0000020785, -0.0000020787,0.0000020796,0.0000020811,0.0000020820,0.0000020833, -0.0000020837,0.0000020838,0.0000020839,0.0000020839,0.0000020840, -0.0000020835,0.0000020828,0.0000020822,0.0000020818,0.0000020806, -0.0000020798,0.0000020787,0.0000020784,0.0000020788,0.0000020800, -0.0000020815,0.0000020827,0.0000020837,0.0000020844,0.0000020845, -0.0000020841,0.0000020831,0.0000020814,0.0000020791,0.0000020767, -0.0000020746,0.0000020727,0.0000020710,0.0000020701,0.0000020699, -0.0000020702,0.0000020702,0.0000020703,0.0000020704,0.0000020703, -0.0000020697,0.0000020693,0.0000020688,0.0000020676,0.0000020656, -0.0000020631,0.0000020604,0.0000020573,0.0000020539,0.0000020508, -0.0000020489,0.0000020484,0.0000020487,0.0000020486,0.0000020469, -0.0000020436,0.0000020388,0.0000020325,0.0000020257,0.0000020188, -0.0000020118,0.0000020050,0.0000019986,0.0000019925,0.0000019868, -0.0000019817,0.0000019784,0.0000019775,0.0000019780,0.0000019799, -0.0000019828,0.0000019858,0.0000019885,0.0000019911,0.0000019941, -0.0000019973,0.0000020005,0.0000020038,0.0000020070,0.0000020096, -0.0000020113,0.0000020121,0.0000020120,0.0000020108,0.0000020087, -0.0000020058,0.0000020023,0.0000019987,0.0000019956,0.0000019931, -0.0000019913,0.0000019897,0.0000019879,0.0000019860,0.0000019845, -0.0000019834,0.0000019823,0.0000019810,0.0000019794,0.0000019778, -0.0000019764,0.0000019752,0.0000019737,0.0000019721,0.0000019709, -0.0000019701,0.0000019696,0.0000019692,0.0000019687,0.0000019683, -0.0000019678,0.0000019673,0.0000019666,0.0000019655,0.0000019636, -0.0000019614,0.0000019588,0.0000019559,0.0000019528,0.0000019496, -0.0000019466,0.0000019444,0.0000019434,0.0000019431,0.0000019436, -0.0000019444,0.0000019456,0.0000019472,0.0000019492,0.0000019513, -0.0000019532,0.0000019544,0.0000019550,0.0000019546,0.0000019535, -0.0000019524,0.0000019516,0.0000019510,0.0000019508,0.0000019519, -0.0000019537,0.0000019557,0.0000019578,0.0000019601,0.0000019621, -0.0000019636,0.0000019647,0.0000019654,0.0000019661,0.0000019669, -0.0000019678,0.0000019688,0.0000019695,0.0000019698,0.0000019697, -0.0000019692,0.0000019678,0.0000019656,0.0000019628,0.0000019598, -0.0000019570,0.0000019546,0.0000019528,0.0000019516,0.0000019512, -0.0000019514,0.0000019520,0.0000019525,0.0000019526,0.0000019525, -0.0000019523,0.0000019522,0.0000019524,0.0000019529,0.0000019532, -0.0000019532,0.0000019528,0.0000019519,0.0000019508,0.0000019496, -0.0000019484,0.0000019472,0.0000019461,0.0000019453,0.0000019450, -0.0000019453,0.0000019468,0.0000019488,0.0000019507,0.0000019519, -0.0000019522,0.0000019514,0.0000019494,0.0000019467,0.0000019435, -0.0000019409,0.0000019399,0.0000019418,0.0000019464,0.0000019512, -0.0000019548,0.0000019576,0.0000019606,0.0000019649,0.0000019691, -0.0000019695,0.0000019644,0.0000019580,0.0000019558,0.0000019598, -0.0000019752,0.0000019928,0.0000020107,0.0000020283,0.0000020320, -0.0000020274,0.0000020335,0.0000020485,0.0000020550,0.0000020539, -0.0000020535,0.0000020558,0.0000020574,0.0000020566,0.0000020540, -0.0000020512,0.0000020488,0.0000020469,0.0000020459,0.0000020457, -0.0000020459,0.0000020471,0.0000020493,0.0000020504,0.0000020485, -0.0000020397,0.0000020287,0.0000020217,0.0000020200,0.0000020209, -0.0000020232,0.0000020250,0.0000020253,0.0000020245,0.0000020233, -0.0000020216,0.0000020204,0.0000020199,0.0000020194,0.0000020188, -0.0000020189,0.0000020192,0.0000020191,0.0000020206,0.0000020245, -0.0000020271,0.0000020265,0.0000020240,0.0000020231,0.0000020250, -0.0000020293,0.0000020339,0.0000020364,0.0000020367,0.0000020360, -0.0000020353,0.0000020356,0.0000020361,0.0000020361,0.0000020352, -0.0000020333,0.0000020308,0.0000020283,0.0000020261,0.0000020242, -0.0000020225,0.0000020214,0.0000020207,0.0000020199,0.0000020190, -0.0000020182,0.0000020172,0.0000020158,0.0000020137,0.0000020117, -0.0000020097,0.0000020079,0.0000020068,0.0000020062,0.0000020058, -0.0000020052,0.0000020046,0.0000020037,0.0000020025,0.0000020013, -0.0000020003,0.0000019996,0.0000019989,0.0000019982,0.0000019972, -0.0000019963,0.0000019956,0.0000019951,0.0000019946,0.0000019940, -0.0000019934,0.0000019930,0.0000019927,0.0000019924,0.0000019921, -0.0000019918,0.0000019912,0.0000019904,0.0000019895,0.0000019886, -0.0000019874,0.0000019860,0.0000019844,0.0000019827,0.0000019810, -0.0000019794,0.0000019780,0.0000019768,0.0000019757,0.0000019748, -0.0000019741,0.0000019739,0.0000019739,0.0000019742,0.0000019748, -0.0000019756,0.0000019766,0.0000019775,0.0000019783,0.0000019789, -0.0000019791,0.0000019790,0.0000019787,0.0000019781,0.0000019773, -0.0000019763,0.0000019750,0.0000019735,0.0000019717,0.0000019694, -0.0000019665,0.0000019634,0.0000019606,0.0000019581,0.0000019563, -0.0000019552,0.0000019544,0.0000019536,0.0000019525,0.0000019505, -0.0000019484,0.0000019474,0.0000019483,0.0000019504,0.0000019531, -0.0000019547,0.0000019540,0.0000019515,0.0000019488,0.0000019479, -0.0000019494,0.0000019528,0.0000019560,0.0000019579,0.0000019581, -0.0000019577,0.0000019584,0.0000019611,0.0000019647,0.0000019669, -0.0000019691,0.0000019705,0.0000019702,0.0000019700,0.0000019708, -0.0000019734,0.0000019766,0.0000019796,0.0000019827,0.0000019862, -0.0000019904,0.0000019953,0.0000020002,0.0000020047,0.0000020075, -0.0000020087,0.0000020100,0.0000020101,0.0000020097,0.0000020096, -0.0000020097,0.0000020097,0.0000020095,0.0000020090,0.0000020084, -0.0000020078,0.0000020072,0.0000020069,0.0000020070,0.0000020076, -0.0000020087,0.0000020100,0.0000020110,0.0000020117,0.0000020122, -0.0000020122,0.0000020113,0.0000020091,0.0000020059,0.0000020021, -0.0000019978,0.0000019941,0.0000019919,0.0000019913,0.0000019932, -0.0000019981,0.0000020046,0.0000020113,0.0000020171,0.0000020223, -0.0000020274,0.0000020328,0.0000020369,0.0000020392,0.0000020397, -0.0000020388,0.0000020365,0.0000020331,0.0000020290,0.0000020239, -0.0000020183,0.0000020138,0.0000020112,0.0000020094,0.0000020083, -0.0000020075,0.0000020063,0.0000020053,0.0000020051,0.0000020065, -0.0000020079,0.0000020092,0.0000020108,0.0000020132,0.0000020165, -0.0000020198,0.0000020221,0.0000020241,0.0000020258,0.0000020268, -0.0000020273,0.0000020277,0.0000020281,0.0000020284,0.0000020290, -0.0000020301,0.0000020315,0.0000020332,0.0000020355,0.0000020383, -0.0000020411,0.0000020434,0.0000020450,0.0000020463,0.0000020475, -0.0000020489,0.0000020499,0.0000020504,0.0000020507,0.0000020509, -0.0000020509,0.0000020511,0.0000020510,0.0000020509,0.0000020506, -0.0000020502,0.0000020497,0.0000020491,0.0000020484,0.0000020479, -0.0000020481,0.0000020489,0.0000020499,0.0000020513,0.0000020532, -0.0000020550,0.0000020566,0.0000020582,0.0000020597,0.0000020606, -0.0000020608,0.0000020606,0.0000020602,0.0000020598,0.0000020595, -0.0000020595,0.0000020595,0.0000020598,0.0000020601,0.0000020606, -0.0000020610,0.0000020614,0.0000020623,0.0000020644,0.0000020681, -0.0000020723,0.0000020757,0.0000020782,0.0000020811,0.0000020846, -0.0000020882,0.0000020925,0.0000020957,0.0000020958,0.0000020925, -0.0000020866,0.0000020818,0.0000020787,0.0000020756,0.0000020721, -0.0000020691,0.0000020669,0.0000020656,0.0000020652,0.0000020649, -0.0000020646,0.0000020657,0.0000020691,0.0000020730,0.0000020768, -0.0000020801,0.0000020826,0.0000020842,0.0000020849,0.0000020852, -0.0000020856,0.0000020854,0.0000020839,0.0000020825,0.0000020821, -0.0000020823,0.0000020834,0.0000020857,0.0000020891,0.0000020927, -0.0000020951,0.0000020966,0.0000020979,0.0000020992,0.0000021011, -0.0000021038,0.0000021067,0.0000021092,0.0000021106,0.0000021112, -0.0000021114,0.0000021112,0.0000021102,0.0000021092,0.0000021089, -0.0000021098,0.0000021121,0.0000021154,0.0000021196,0.0000021243, -0.0000021291,0.0000021333,0.0000021367,0.0000021390,0.0000021401, -0.0000021403,0.0000021398,0.0000021381,0.0000021356,0.0000021327, -0.0000021294,0.0000021264,0.0000021241,0.0000021225,0.0000021212, -0.0000021200,0.0000021190,0.0000021185,0.0000021186,0.0000021191, -0.0000021200,0.0000021209,0.0000021223,0.0000021249,0.0000021287, -0.0000021331,0.0000021373,0.0000021414,0.0000021455,0.0000021493, -0.0000021527,0.0000021560,0.0000021589,0.0000021611,0.0000021627, -0.0000021637,0.0000021641,0.0000021638,0.0000021630,0.0000021618, -0.0000021605,0.0000021590,0.0000021576,0.0000021567,0.0000021558, -0.0000021550,0.0000021544,0.0000021537,0.0000021533,0.0000021529, -0.0000021526,0.0000021521,0.0000021514,0.0000021505,0.0000021498, -0.0000021493,0.0000021494,0.0000021498,0.0000021502,0.0000021505, -0.0000021510,0.0000021519,0.0000021530,0.0000021537,0.0000021543, -0.0000021544,0.0000021549,0.0000021559,0.0000021566,0.0000021570, -0.0000021571,0.0000021573,0.0000021572,0.0000021566,0.0000021554, -0.0000021540,0.0000021525,0.0000021503,0.0000021463,0.0000021410, -0.0000021373,0.0000021354,0.0000021326,0.0000021287,0.0000021271, -0.0000021287,0.0000021342,0.0000021441,0.0000021512,0.0000021560, -0.0000021616,0.0000021669,0.0000021687,0.0000021635,0.0000021553, -0.0000021508,0.0000021485,0.0000021438,0.0000021402,0.0000021409, -0.0000021467,0.0000021507,0.0000021490,0.0000021437,0.0000021385, -0.0000021342,0.0000021316,0.0000021289,0.0000021259,0.0000021227, -0.0000021191,0.0000021168,0.0000021161,0.0000021162,0.0000021161, -0.0000021156,0.0000021140,0.0000021121,0.0000021103,0.0000021083, -0.0000021056,0.0000021021,0.0000020981,0.0000020935,0.0000020886, -0.0000020843,0.0000020814,0.0000020801,0.0000020798,0.0000020806, -0.0000020818,0.0000020821,0.0000020825,0.0000020837,0.0000020837, -0.0000020812,0.0000020770,0.0000020717,0.0000020660,0.0000020601, -0.0000020547,0.0000020517,0.0000020507,0.0000020499,0.0000020479, -0.0000020450,0.0000020428,0.0000020422,0.0000020434,0.0000020484, -0.0000020554,0.0000020585,0.0000020559,0.0000020456,0.0000020330, -0.0000020245,0.0000020223,0.0000020174,0.0000020055,0.0000020027, -0.0000020051,0.0000020078,0.0000020115,0.0000020216,0.0000020336, -0.0000020384,0.0000020384,0.0000020414,0.0000020487,0.0000020560, -0.0000020603,0.0000020641,0.0000020713,0.0000020855,0.0000021029, -0.0000021119,0.0000021144,0.0000021315,0.0000021441,0.0000021449, -0.0000021544,0.0000021571,0.0000021552,0.0000021585,0.0000021649, -0.0000021633,0.0000021610,0.0000021721,0.0000021820,0.0000021798, -0.0000021741,0.0000021704,0.0000021743,0.0000021767,0.0000021772, -0.0000021874,0.0000021964,0.0000021985,0.0000021974,0.0000021976, -0.0000022053,0.0000022147,0.0000022176,0.0000022204,0.0000022265, -0.0000022343,0.0000022389,0.0000022399,0.0000022394,0.0000022397, -0.0000022410,0.0000022426,0.0000022437,0.0000022438,0.0000022429, -0.0000022386,0.0000022300,0.0000022170,0.0000022038,0.0000021950, -0.0000021918,0.0000021911,0.0000021919,0.0000021936,0.0000021948, -0.0000021946,0.0000021917,0.0000021853,0.0000021762,0.0000021661, -0.0000021568,0.0000021501,0.0000021457,0.0000021432,0.0000021411, -0.0000021397,0.0000021392,0.0000021379,0.0000021353,0.0000021312, -0.0000021261,0.0000021207,0.0000021147,0.0000021085,0.0000021026, -0.0000020974,0.0000020933,0.0000020896,0.0000020862,0.0000020832, -0.0000020809,0.0000020811,0.0000020830,0.0000020874,0.0000020938, -0.0000021003,0.0000021053,0.0000021084,0.0000021099,0.0000021110, -0.0000021125,0.0000021143,0.0000021144,0.0000021120,0.0000021081, -0.0000021032,0.0000020975,0.0000020935,0.0000020911,0.0000020902, -0.0000020901,0.0000020906,0.0000020928,0.0000020966,0.0000021018, -0.0000021069,0.0000021113,0.0000021155,0.0000021206,0.0000021268, -0.0000021337,0.0000021391,0.0000021422,0.0000021428,0.0000021427, -0.0000021420,0.0000021410,0.0000021401,0.0000021397,0.0000021399, -0.0000021406,0.0000021418,0.0000021425,0.0000021432,0.0000021444, -0.0000021457,0.0000021468,0.0000021486,0.0000021503,0.0000021517, -0.0000021528,0.0000021537,0.0000021551,0.0000021575,0.0000021594, -0.0000021611,0.0000021627,0.0000021641,0.0000021654,0.0000021677, -0.0000021703,0.0000021727,0.0000021751,0.0000021760,0.0000021765, -0.0000021772,0.0000021762,0.0000021738,0.0000021710,0.0000021680, -0.0000021658,0.0000021644,0.0000021637,0.0000021624,0.0000021613, -0.0000021596,0.0000021581,0.0000021563,0.0000021547,0.0000021537, -0.0000021523,0.0000021512,0.0000021501,0.0000021494,0.0000021493, -0.0000021495,0.0000021499,0.0000021496,0.0000021482,0.0000021475, -0.0000021476,0.0000021484,0.0000021497,0.0000021517,0.0000021548, -0.0000021579,0.0000021602,0.0000021624,0.0000021643,0.0000021661, -0.0000021672,0.0000021680,0.0000021680,0.0000021674,0.0000021664, -0.0000021658,0.0000021661,0.0000021677,0.0000021713,0.0000021770, -0.0000021832,0.0000021884,0.0000021918,0.0000021936,0.0000021931, -0.0000021915,0.0000021902,0.0000021878,0.0000021856,0.0000021845, -0.0000021848,0.0000021863,0.0000021888,0.0000021918,0.0000021951, -0.0000021986,0.0000022025,0.0000022062,0.0000022094,0.0000022122, -0.0000022141,0.0000022153,0.0000022156,0.0000022151,0.0000022141, -0.0000022130,0.0000022136,0.0000022147,0.0000022158,0.0000022163, -0.0000022167,0.0000022168,0.0000022168,0.0000022163,0.0000022153, -0.0000022133,0.0000022105,0.0000022065,0.0000022009,0.0000021940, -0.0000021868,0.0000021805,0.0000021764,0.0000021750,0.0000021752, -0.0000021757,0.0000021766,0.0000021781,0.0000021803,0.0000021832, -0.0000021857,0.0000021876,0.0000021886,0.0000021890,0.0000021895, -0.0000021906,0.0000021916,0.0000021925,0.0000021934,0.0000021939, -0.0000021942,0.0000021950,0.0000021954,0.0000021959,0.0000021971, -0.0000021983,0.0000021993,0.0000021998,0.0000021996,0.0000021984, -0.0000021970,0.0000021951,0.0000021941,0.0000021921,0.0000021901, -0.0000021875,0.0000021852,0.0000021827,0.0000021802,0.0000021774, -0.0000021749,0.0000021724,0.0000021702,0.0000021681,0.0000021661, -0.0000021653,0.0000021649,0.0000021651,0.0000021655,0.0000021654, -0.0000021659,0.0000021663,0.0000021665,0.0000021668,0.0000021668, -0.0000021666,0.0000021666,0.0000021666,0.0000021666,0.0000021668, -0.0000021676,0.0000021688,0.0000021698,0.0000021705,0.0000021713, -0.0000021724,0.0000021734,0.0000021742,0.0000021744,0.0000021740, -0.0000021726,0.0000021700,0.0000021666,0.0000021627,0.0000021586, -0.0000021546,0.0000021512,0.0000021483,0.0000021453,0.0000021420, -0.0000021386,0.0000021350,0.0000021310,0.0000021267,0.0000021226, -0.0000021183,0.0000021142,0.0000021105,0.0000021077,0.0000021062, -0.0000021054,0.0000021054,0.0000021060,0.0000021071,0.0000021080, -0.0000021084,0.0000021085,0.0000021083,0.0000021076,0.0000021065, -0.0000021053,0.0000021039,0.0000021021,0.0000021002,0.0000020977, -0.0000020953,0.0000020931,0.0000020910,0.0000020888,0.0000020870, -0.0000020853,0.0000020838,0.0000020826,0.0000020813,0.0000020800, -0.0000020789,0.0000020779,0.0000020770,0.0000020766,0.0000020764, -0.0000020771,0.0000020776,0.0000020787,0.0000020799,0.0000020815, -0.0000020838,0.0000020862,0.0000020880,0.0000020891,0.0000020898, -0.0000020898,0.0000020889,0.0000020872,0.0000020853,0.0000020832, -0.0000020809,0.0000020790,0.0000020775,0.0000020765,0.0000020756, -0.0000020749,0.0000020744,0.0000020741,0.0000020742,0.0000020746, -0.0000020748,0.0000020746,0.0000020738,0.0000020725,0.0000020705, -0.0000020683,0.0000020658,0.0000020627,0.0000020594,0.0000020562, -0.0000020539,0.0000020521,0.0000020508,0.0000020499,0.0000020497, -0.0000020501,0.0000020509,0.0000020519,0.0000020527,0.0000020530, -0.0000020529,0.0000020523,0.0000020509,0.0000020486,0.0000020455, -0.0000020421,0.0000020392,0.0000020372,0.0000020360,0.0000020350, -0.0000020341,0.0000020333,0.0000020325,0.0000020319,0.0000020319, -0.0000020325,0.0000020335,0.0000020347,0.0000020365,0.0000020388, -0.0000020410,0.0000020423,0.0000020424,0.0000020416,0.0000020396, -0.0000020365,0.0000020324,0.0000020276,0.0000020228,0.0000020182, -0.0000020145,0.0000020119,0.0000020103,0.0000020096,0.0000020094, -0.0000020088,0.0000020077,0.0000020062,0.0000020039,0.0000020014, -0.0000019986,0.0000019955,0.0000019929,0.0000019905,0.0000019878, -0.0000019854,0.0000019841,0.0000019839,0.0000019851,0.0000019874, -0.0000019897,0.0000019915,0.0000019930,0.0000019941,0.0000019944, -0.0000019937,0.0000019920,0.0000019895,0.0000019873,0.0000019861, -0.0000019847,0.0000019835,0.0000019836,0.0000019838,0.0000019827, -0.0000019788,0.0000019733,0.0000019683,0.0000019646,0.0000019623, -0.0000019615,0.0000019620,0.0000019635,0.0000019659,0.0000019681, -0.0000019695,0.0000019703,0.0000019704,0.0000019691,0.0000019656, -0.0000019612,0.0000019574,0.0000019553,0.0000019554,0.0000019552, -0.0000019542,0.0000019532,0.0000019526,0.0000019519,0.0000019512, -0.0000019512,0.0000019514,0.0000019523,0.0000019539,0.0000019542, -0.0000019527,0.0000019517,0.0000019527,0.0000019571,0.0000019626, -0.0000019669,0.0000019719,0.0000019766,0.0000019808,0.0000019845, -0.0000019875,0.0000019894,0.0000019896,0.0000019889,0.0000019882, -0.0000019876,0.0000019871,0.0000019860,0.0000019843,0.0000019844, -0.0000019869,0.0000019880,0.0000019855,0.0000019819,0.0000019797, -0.0000019793,0.0000019810,0.0000019856,0.0000019923,0.0000019996, -0.0000020066,0.0000020136,0.0000020191,0.0000020221,0.0000020230, -0.0000020226,0.0000020223,0.0000020229,0.0000020240,0.0000020255, -0.0000020277,0.0000020301,0.0000020320,0.0000020333,0.0000020335, -0.0000020336,0.0000020328,0.0000020318,0.0000020317,0.0000020317, -0.0000020318,0.0000020331,0.0000020360,0.0000020386,0.0000020411, -0.0000020413,0.0000020394,0.0000020353,0.0000020300,0.0000020236, -0.0000020174,0.0000020136,0.0000020120,0.0000020121,0.0000020125, -0.0000020144,0.0000020170,0.0000020197,0.0000020224,0.0000020249, -0.0000020268,0.0000020283,0.0000020298,0.0000020312,0.0000020326, -0.0000020336,0.0000020341,0.0000020341,0.0000020340,0.0000020339, -0.0000020337,0.0000020334,0.0000020334,0.0000020339,0.0000020352, -0.0000020370,0.0000020384,0.0000020390,0.0000020393,0.0000020397, -0.0000020402,0.0000020412,0.0000020426,0.0000020445,0.0000020469, -0.0000020495,0.0000020524,0.0000020555,0.0000020584,0.0000020605, -0.0000020616,0.0000020621,0.0000020625,0.0000020636,0.0000020652, -0.0000020678,0.0000020715,0.0000020755,0.0000020790,0.0000020820, -0.0000020846,0.0000020867,0.0000020886,0.0000020900,0.0000020911, -0.0000020923,0.0000020938,0.0000020941,0.0000020925,0.0000020901, -0.0000020889,0.0000020850,0.0000020807,0.0000020789,0.0000020750, -0.0000020720,0.0000020683,0.0000020633,0.0000020613,0.0000020600, -0.0000020589,0.0000020595,0.0000020642,0.0000020746,0.0000020835, -0.0000020877,0.0000020932,0.0000021024,0.0000021093,0.0000021117, -0.0000021149,0.0000021174,0.0000021167,0.0000021144,0.0000021115, -0.0000021059,0.0000020962,0.0000020860,0.0000020808,0.0000020809, -0.0000020836,0.0000020888,0.0000020949,0.0000021005,0.0000021046, -0.0000021075,0.0000021091,0.0000021097,0.0000021095,0.0000021086, -0.0000021078,0.0000021071,0.0000021065,0.0000021058,0.0000021052, -0.0000021046,0.0000021038,0.0000021031,0.0000021030,0.0000021035, -0.0000021042,0.0000021052,0.0000021067,0.0000021084,0.0000021098, -0.0000021107,0.0000021110,0.0000021110,0.0000021107,0.0000021104, -0.0000021097,0.0000021090,0.0000021085,0.0000021082,0.0000021083, -0.0000021088,0.0000021100,0.0000021113,0.0000021128,0.0000021143, -0.0000021162,0.0000021186,0.0000021216,0.0000021246,0.0000021272, -0.0000021289,0.0000021298,0.0000021285,0.0000021267,0.0000021231, -0.0000021190,0.0000021153,0.0000021132,0.0000021118,0.0000021137, -0.0000021186,0.0000021269,0.0000021376,0.0000021503,0.0000021641, -0.0000021776,0.0000021895,0.0000021991,0.0000022070,0.0000022134, -0.0000022189,0.0000022233,0.0000022268,0.0000022294,0.0000022322, -0.0000022339,0.0000022338,0.0000022342,0.0000022338,0.0000022324, -0.0000022305,0.0000022285,0.0000022260,0.0000022224,0.0000022174, -0.0000022115,0.0000022057,0.0000022005,0.0000021962,0.0000021930, -0.0000021902,0.0000021871,0.0000021833,0.0000021789,0.0000021741, -0.0000021695,0.0000021660,0.0000021634,0.0000021613,0.0000021588, -0.0000021551,0.0000021491,0.0000021410,0.0000021310,0.0000021196, -0.0000021050,0.0000020866,0.0000020665,0.0000020477,0.0000020324, -0.0000020214,0.0000020142,0.0000020085,0.0000020017,0.0000019935, -0.0000019856,0.0000019796,0.0000019755,0.0000019724,0.0000019707, -0.0000019700,0.0000019697,0.0000019691,0.0000019684,0.0000019688, -0.0000019706,0.0000019731,0.0000019753,0.0000019758,0.0000019742, -0.0000019713,0.0000019693,0.0000019693,0.0000019713,0.0000019734, -0.0000019740,0.0000019731,0.0000019715,0.0000019705,0.0000019715, -0.0000019746,0.0000019793,0.0000019848,0.0000019900,0.0000019939, -0.0000019977,0.0000020023,0.0000020074,0.0000020114,0.0000020129, -0.0000020131,0.0000020128,0.0000020127,0.0000020132,0.0000020142, -0.0000020151,0.0000020152,0.0000020124,0.0000020066,0.0000020015, -0.0000020008,0.0000020072,0.0000020201,0.0000020335,0.0000020425, -0.0000020450,0.0000020432,0.0000020404,0.0000020392,0.0000020431, -0.0000020513,0.0000020609,0.0000020694,0.0000020743,0.0000020743, -0.0000020733,0.0000020696,0.0000020648,0.0000020594,0.0000020549, -0.0000020520,0.0000020521,0.0000020538,0.0000020587,0.0000020657, -0.0000020741,0.0000020829,0.0000020911,0.0000020977,0.0000021018, -0.0000021032,0.0000021021,0.0000021001,0.0000020986,0.0000020982, -0.0000020997,0.0000021019,0.0000021038,0.0000021044,0.0000021043, -0.0000021038,0.0000021029,0.0000021017,0.0000021004,0.0000020994, -0.0000020991,0.0000020992,0.0000020986,0.0000020977,0.0000020966, -0.0000020956,0.0000020945,0.0000020927,0.0000020906,0.0000020886, -0.0000020874,0.0000020862,0.0000020845,0.0000020829,0.0000020815, -0.0000020807,0.0000020800,0.0000020796,0.0000020801,0.0000020796, -0.0000020789,0.0000020782,0.0000020770,0.0000020759,0.0000020754, -0.0000020754,0.0000020757,0.0000020761,0.0000020768,0.0000020777, -0.0000020789,0.0000020794,0.0000020802,0.0000020794,0.0000020785, -0.0000020784,0.0000020792,0.0000020798,0.0000020805,0.0000020813, -0.0000020820,0.0000020826,0.0000020825,0.0000020821,0.0000020809, -0.0000020790,0.0000020770,0.0000020748,0.0000020723,0.0000020703, -0.0000020691,0.0000020684,0.0000020683,0.0000020685,0.0000020682, -0.0000020679,0.0000020675,0.0000020668,0.0000020661,0.0000020655, -0.0000020647,0.0000020637,0.0000020626,0.0000020612,0.0000020595, -0.0000020570,0.0000020538,0.0000020507,0.0000020486,0.0000020477, -0.0000020477,0.0000020470,0.0000020450,0.0000020408,0.0000020350, -0.0000020287,0.0000020222,0.0000020153,0.0000020082,0.0000020013, -0.0000019942,0.0000019868,0.0000019796,0.0000019729,0.0000019677, -0.0000019643,0.0000019634,0.0000019643,0.0000019666,0.0000019695, -0.0000019727,0.0000019765,0.0000019808,0.0000019852,0.0000019896, -0.0000019937,0.0000019973,0.0000020000,0.0000020019,0.0000020025, -0.0000020020,0.0000020001,0.0000019970,0.0000019931,0.0000019891, -0.0000019857,0.0000019833,0.0000019815,0.0000019798,0.0000019779, -0.0000019763,0.0000019752,0.0000019743,0.0000019733,0.0000019720, -0.0000019708,0.0000019697,0.0000019685,0.0000019670,0.0000019651, -0.0000019638,0.0000019630,0.0000019624,0.0000019617,0.0000019608, -0.0000019599,0.0000019590,0.0000019581,0.0000019574,0.0000019572, -0.0000019569,0.0000019564,0.0000019555,0.0000019540,0.0000019521, -0.0000019498,0.0000019471,0.0000019441,0.0000019411,0.0000019387, -0.0000019373,0.0000019368,0.0000019370,0.0000019377,0.0000019388, -0.0000019402,0.0000019420,0.0000019441,0.0000019465,0.0000019488, -0.0000019505,0.0000019514,0.0000019516,0.0000019513,0.0000019509, -0.0000019506,0.0000019506,0.0000019509,0.0000019507,0.0000019512, -0.0000019525,0.0000019539,0.0000019557,0.0000019574,0.0000019591, -0.0000019607,0.0000019624,0.0000019642,0.0000019661,0.0000019679, -0.0000019691,0.0000019695,0.0000019693,0.0000019688,0.0000019679, -0.0000019659,0.0000019633,0.0000019603,0.0000019576,0.0000019553, -0.0000019538,0.0000019529,0.0000019526,0.0000019527,0.0000019532, -0.0000019536,0.0000019540,0.0000019541,0.0000019541,0.0000019542, -0.0000019547,0.0000019551,0.0000019553,0.0000019551,0.0000019544, -0.0000019534,0.0000019521,0.0000019506,0.0000019488,0.0000019472, -0.0000019459,0.0000019452,0.0000019453,0.0000019467,0.0000019488, -0.0000019509,0.0000019526,0.0000019532,0.0000019526,0.0000019506, -0.0000019475,0.0000019438,0.0000019402,0.0000019379,0.0000019378, -0.0000019413,0.0000019465,0.0000019510,0.0000019540,0.0000019564, -0.0000019601,0.0000019650,0.0000019679,0.0000019654,0.0000019595, -0.0000019559,0.0000019571,0.0000019691,0.0000019872,0.0000020039, -0.0000020220,0.0000020334,0.0000020311,0.0000020297,0.0000020398, -0.0000020532,0.0000020562,0.0000020544,0.0000020538,0.0000020556, -0.0000020570,0.0000020568,0.0000020555,0.0000020533,0.0000020509, -0.0000020494,0.0000020488,0.0000020483,0.0000020482,0.0000020488, -0.0000020504,0.0000020508,0.0000020473,0.0000020368,0.0000020258, -0.0000020205,0.0000020198,0.0000020213,0.0000020237,0.0000020255, -0.0000020265,0.0000020267,0.0000020256,0.0000020235,0.0000020216, -0.0000020208,0.0000020204,0.0000020203,0.0000020200,0.0000020197, -0.0000020210,0.0000020243,0.0000020266,0.0000020257,0.0000020230, -0.0000020220,0.0000020233,0.0000020273,0.0000020322,0.0000020354, -0.0000020365,0.0000020362,0.0000020355,0.0000020355,0.0000020362, -0.0000020367,0.0000020361,0.0000020345,0.0000020321,0.0000020292, -0.0000020267,0.0000020246,0.0000020230,0.0000020216,0.0000020205, -0.0000020196,0.0000020187,0.0000020179,0.0000020171,0.0000020156, -0.0000020133,0.0000020106,0.0000020080,0.0000020057,0.0000020041, -0.0000020028,0.0000020016,0.0000020010,0.0000020005,0.0000019997, -0.0000019986,0.0000019978,0.0000019970,0.0000019964,0.0000019956, -0.0000019945,0.0000019931,0.0000019918,0.0000019907,0.0000019897, -0.0000019888,0.0000019880,0.0000019874,0.0000019869,0.0000019864, -0.0000019862,0.0000019860,0.0000019858,0.0000019854,0.0000019850, -0.0000019846,0.0000019841,0.0000019835,0.0000019827,0.0000019815, -0.0000019800,0.0000019784,0.0000019769,0.0000019755,0.0000019744, -0.0000019735,0.0000019729,0.0000019725,0.0000019725,0.0000019727, -0.0000019731,0.0000019737,0.0000019744,0.0000019751,0.0000019759, -0.0000019764,0.0000019767,0.0000019767,0.0000019762,0.0000019755, -0.0000019744,0.0000019731,0.0000019715,0.0000019696,0.0000019676, -0.0000019656,0.0000019638,0.0000019622,0.0000019610,0.0000019598, -0.0000019583,0.0000019569,0.0000019557,0.0000019553,0.0000019553, -0.0000019554,0.0000019549,0.0000019532,0.0000019506,0.0000019485, -0.0000019473,0.0000019480,0.0000019492,0.0000019504,0.0000019500, -0.0000019485,0.0000019470,0.0000019472,0.0000019501,0.0000019550, -0.0000019592,0.0000019617,0.0000019619,0.0000019617,0.0000019629, -0.0000019659,0.0000019658,0.0000019688,0.0000019714,0.0000019725, -0.0000019721,0.0000019723,0.0000019731,0.0000019750,0.0000019779, -0.0000019813,0.0000019848,0.0000019883,0.0000019921,0.0000019963, -0.0000020006,0.0000020044,0.0000020078,0.0000020102,0.0000020106, -0.0000020114,0.0000020113,0.0000020105,0.0000020096,0.0000020088, -0.0000020080,0.0000020074,0.0000020066,0.0000020059,0.0000020054, -0.0000020055,0.0000020060,0.0000020069,0.0000020082,0.0000020094, -0.0000020102,0.0000020103,0.0000020094,0.0000020071,0.0000020037, -0.0000020001,0.0000019966,0.0000019937,0.0000019924,0.0000019926, -0.0000019951,0.0000020006,0.0000020075,0.0000020142,0.0000020200, -0.0000020253,0.0000020305,0.0000020357,0.0000020393,0.0000020409, -0.0000020409,0.0000020395,0.0000020369,0.0000020335,0.0000020294, -0.0000020245,0.0000020190,0.0000020140,0.0000020109,0.0000020089, -0.0000020078,0.0000020064,0.0000020047,0.0000020031,0.0000020021, -0.0000020024,0.0000020038,0.0000020058,0.0000020079,0.0000020102, -0.0000020134,0.0000020163,0.0000020184,0.0000020203,0.0000020215, -0.0000020218,0.0000020218,0.0000020218,0.0000020221,0.0000020229, -0.0000020239,0.0000020249,0.0000020261,0.0000020279,0.0000020303, -0.0000020330,0.0000020358,0.0000020382,0.0000020400,0.0000020414, -0.0000020431,0.0000020452,0.0000020468,0.0000020478,0.0000020484, -0.0000020489,0.0000020493,0.0000020496,0.0000020499,0.0000020496, -0.0000020488,0.0000020477,0.0000020466,0.0000020455,0.0000020443, -0.0000020429,0.0000020421,0.0000020420,0.0000020422,0.0000020426, -0.0000020437,0.0000020450,0.0000020464,0.0000020479,0.0000020496, -0.0000020512,0.0000020524,0.0000020530,0.0000020535,0.0000020541, -0.0000020544,0.0000020548,0.0000020558,0.0000020564,0.0000020570, -0.0000020576,0.0000020582,0.0000020586,0.0000020592,0.0000020609, -0.0000020642,0.0000020683,0.0000020720,0.0000020750,0.0000020784, -0.0000020824,0.0000020862,0.0000020905,0.0000020942,0.0000020952, -0.0000020933,0.0000020879,0.0000020823,0.0000020786,0.0000020751, -0.0000020713,0.0000020681,0.0000020654,0.0000020632,0.0000020623, -0.0000020617,0.0000020613,0.0000020623,0.0000020655,0.0000020691, -0.0000020723,0.0000020754,0.0000020778,0.0000020794,0.0000020804, -0.0000020816,0.0000020828,0.0000020827,0.0000020810,0.0000020786, -0.0000020771,0.0000020772,0.0000020786,0.0000020813,0.0000020852, -0.0000020898,0.0000020936,0.0000020959,0.0000020972,0.0000020983, -0.0000020993,0.0000021005,0.0000021019,0.0000021038,0.0000021054, -0.0000021065,0.0000021068,0.0000021068,0.0000021062,0.0000021055, -0.0000021053,0.0000021063,0.0000021083,0.0000021111,0.0000021146, -0.0000021189,0.0000021235,0.0000021282,0.0000021326,0.0000021363, -0.0000021389,0.0000021402,0.0000021404,0.0000021398,0.0000021381, -0.0000021356,0.0000021325,0.0000021293,0.0000021264,0.0000021241, -0.0000021223,0.0000021206,0.0000021191,0.0000021179,0.0000021172, -0.0000021173,0.0000021178,0.0000021185,0.0000021194,0.0000021207, -0.0000021231,0.0000021265,0.0000021304,0.0000021344,0.0000021386, -0.0000021427,0.0000021465,0.0000021503,0.0000021536,0.0000021564, -0.0000021588,0.0000021607,0.0000021621,0.0000021627,0.0000021625, -0.0000021615,0.0000021599,0.0000021580,0.0000021560,0.0000021540, -0.0000021520,0.0000021501,0.0000021485,0.0000021470,0.0000021459, -0.0000021453,0.0000021448,0.0000021443,0.0000021436,0.0000021430, -0.0000021425,0.0000021424,0.0000021427,0.0000021432,0.0000021438, -0.0000021446,0.0000021456,0.0000021471,0.0000021485,0.0000021496, -0.0000021505,0.0000021510,0.0000021514,0.0000021526,0.0000021541, -0.0000021555,0.0000021564,0.0000021568,0.0000021569,0.0000021566, -0.0000021557,0.0000021546,0.0000021532,0.0000021511,0.0000021471, -0.0000021417,0.0000021370,0.0000021342,0.0000021316,0.0000021273, -0.0000021250,0.0000021258,0.0000021298,0.0000021399,0.0000021486, -0.0000021539,0.0000021588,0.0000021650,0.0000021695,0.0000021664, -0.0000021577,0.0000021519,0.0000021487,0.0000021451,0.0000021447, -0.0000021484,0.0000021523,0.0000021515,0.0000021456,0.0000021389, -0.0000021338,0.0000021307,0.0000021281,0.0000021248,0.0000021215, -0.0000021179,0.0000021146,0.0000021128,0.0000021124,0.0000021126, -0.0000021126,0.0000021120,0.0000021105,0.0000021089,0.0000021074, -0.0000021055,0.0000021025,0.0000020990,0.0000020947,0.0000020893, -0.0000020839,0.0000020786,0.0000020746,0.0000020729,0.0000020732, -0.0000020747,0.0000020765,0.0000020775,0.0000020792,0.0000020810, -0.0000020807,0.0000020778,0.0000020731,0.0000020673,0.0000020613, -0.0000020548,0.0000020490,0.0000020455,0.0000020441,0.0000020427, -0.0000020406,0.0000020385,0.0000020375,0.0000020376,0.0000020411, -0.0000020491,0.0000020550,0.0000020556,0.0000020496,0.0000020377, -0.0000020274,0.0000020228,0.0000020215,0.0000020107,0.0000020024, -0.0000020029,0.0000020055,0.0000020090,0.0000020165,0.0000020293, -0.0000020367,0.0000020372,0.0000020381,0.0000020443,0.0000020523, -0.0000020582,0.0000020624,0.0000020688,0.0000020804,0.0000020976, -0.0000021100,0.0000021129,0.0000021259,0.0000021426,0.0000021450, -0.0000021530,0.0000021585,0.0000021567,0.0000021588,0.0000021656, -0.0000021655,0.0000021617,0.0000021700,0.0000021812,0.0000021804, -0.0000021753,0.0000021706,0.0000021740,0.0000021784,0.0000021786, -0.0000021854,0.0000021967,0.0000022007,0.0000022013,0.0000021991, -0.0000021997,0.0000022081,0.0000022162,0.0000022201,0.0000022232, -0.0000022281,0.0000022328,0.0000022359,0.0000022370,0.0000022373, -0.0000022384,0.0000022397,0.0000022405,0.0000022407,0.0000022391, -0.0000022332,0.0000022226,0.0000022090,0.0000021984,0.0000021934, -0.0000021919,0.0000021917,0.0000021921,0.0000021925,0.0000021917, -0.0000021891,0.0000021831,0.0000021746,0.0000021653,0.0000021570, -0.0000021510,0.0000021462,0.0000021431,0.0000021415,0.0000021405, -0.0000021398,0.0000021398,0.0000021398,0.0000021388,0.0000021371, -0.0000021342,0.0000021310,0.0000021263,0.0000021199,0.0000021131, -0.0000021063,0.0000020997,0.0000020938,0.0000020884,0.0000020839, -0.0000020802,0.0000020783,0.0000020779,0.0000020805,0.0000020855, -0.0000020913,0.0000020955,0.0000020974,0.0000020985,0.0000020991, -0.0000021005,0.0000021023,0.0000021030,0.0000021016,0.0000020985, -0.0000020946,0.0000020909,0.0000020885,0.0000020862,0.0000020837, -0.0000020803,0.0000020776,0.0000020772,0.0000020797,0.0000020856, -0.0000020937,0.0000021019,0.0000021086,0.0000021135,0.0000021177, -0.0000021220,0.0000021268,0.0000021320,0.0000021372,0.0000021409, -0.0000021422,0.0000021418,0.0000021415,0.0000021400,0.0000021390, -0.0000021384,0.0000021386,0.0000021391,0.0000021401,0.0000021416, -0.0000021431,0.0000021445,0.0000021458,0.0000021469,0.0000021477, -0.0000021482,0.0000021486,0.0000021494,0.0000021506,0.0000021525, -0.0000021537,0.0000021555,0.0000021571,0.0000021588,0.0000021609, -0.0000021632,0.0000021658,0.0000021681,0.0000021692,0.0000021705, -0.0000021711,0.0000021698,0.0000021675,0.0000021641,0.0000021618, -0.0000021601,0.0000021591,0.0000021583,0.0000021572,0.0000021558, -0.0000021538,0.0000021520,0.0000021504,0.0000021484,0.0000021471, -0.0000021453,0.0000021439,0.0000021431,0.0000021420,0.0000021412, -0.0000021408,0.0000021409,0.0000021404,0.0000021388,0.0000021372, -0.0000021361,0.0000021357,0.0000021358,0.0000021365,0.0000021386, -0.0000021411,0.0000021435,0.0000021458,0.0000021484,0.0000021513, -0.0000021540,0.0000021565,0.0000021581,0.0000021589,0.0000021586, -0.0000021574,0.0000021558,0.0000021550,0.0000021561,0.0000021598, -0.0000021649,0.0000021707,0.0000021766,0.0000021819,0.0000021859, -0.0000021883,0.0000021890,0.0000021873,0.0000021852,0.0000021841, -0.0000021842,0.0000021860,0.0000021886,0.0000021918,0.0000021954, -0.0000021997,0.0000022045,0.0000022082,0.0000022115,0.0000022140, -0.0000022158,0.0000022170,0.0000022175,0.0000022170,0.0000022156, -0.0000022149,0.0000022150,0.0000022157,0.0000022162,0.0000022163, -0.0000022162,0.0000022165,0.0000022169,0.0000022169,0.0000022165, -0.0000022156,0.0000022147,0.0000022124,0.0000022084,0.0000022023, -0.0000021951,0.0000021883,0.0000021826,0.0000021789,0.0000021772, -0.0000021769,0.0000021775,0.0000021791,0.0000021813,0.0000021842, -0.0000021872,0.0000021896,0.0000021914,0.0000021928,0.0000021942, -0.0000021955,0.0000021966,0.0000021973,0.0000021977,0.0000021981, -0.0000021980,0.0000021975,0.0000021963,0.0000021951,0.0000021939, -0.0000021926,0.0000021918,0.0000021912,0.0000021910,0.0000021907, -0.0000021906,0.0000021911,0.0000021912,0.0000021904,0.0000021888, -0.0000021869,0.0000021848,0.0000021829,0.0000021806,0.0000021776, -0.0000021746,0.0000021715,0.0000021686,0.0000021659,0.0000021633, -0.0000021616,0.0000021612,0.0000021615,0.0000021622,0.0000021633, -0.0000021644,0.0000021655,0.0000021669,0.0000021678,0.0000021688, -0.0000021697,0.0000021705,0.0000021710,0.0000021713,0.0000021719, -0.0000021730,0.0000021740,0.0000021746,0.0000021748,0.0000021748, -0.0000021748,0.0000021749,0.0000021750,0.0000021749,0.0000021744, -0.0000021732,0.0000021713,0.0000021687,0.0000021655,0.0000021620, -0.0000021586,0.0000021560,0.0000021539,0.0000021511,0.0000021476, -0.0000021439,0.0000021401,0.0000021362,0.0000021321,0.0000021281, -0.0000021241,0.0000021204,0.0000021173,0.0000021149,0.0000021131, -0.0000021120,0.0000021116,0.0000021115,0.0000021115,0.0000021116, -0.0000021118,0.0000021122,0.0000021124,0.0000021120,0.0000021114, -0.0000021104,0.0000021095,0.0000021085,0.0000021073,0.0000021061, -0.0000021052,0.0000021045,0.0000021034,0.0000021020,0.0000021001, -0.0000020980,0.0000020957,0.0000020933,0.0000020907,0.0000020883, -0.0000020863,0.0000020844,0.0000020824,0.0000020805,0.0000020793, -0.0000020786,0.0000020778,0.0000020771,0.0000020763,0.0000020767, -0.0000020781,0.0000020798,0.0000020812,0.0000020825,0.0000020836, -0.0000020843,0.0000020842,0.0000020833,0.0000020820,0.0000020804, -0.0000020786,0.0000020770,0.0000020754,0.0000020738,0.0000020723, -0.0000020714,0.0000020712,0.0000020715,0.0000020722,0.0000020732, -0.0000020740,0.0000020740,0.0000020734,0.0000020726,0.0000020714, -0.0000020698,0.0000020678,0.0000020654,0.0000020628,0.0000020606, -0.0000020591,0.0000020578,0.0000020568,0.0000020564,0.0000020567, -0.0000020578,0.0000020594,0.0000020607,0.0000020616,0.0000020618, -0.0000020615,0.0000020604,0.0000020585,0.0000020555,0.0000020518, -0.0000020482,0.0000020454,0.0000020434,0.0000020418,0.0000020405, -0.0000020396,0.0000020390,0.0000020385,0.0000020384,0.0000020389, -0.0000020397,0.0000020408,0.0000020429,0.0000020456,0.0000020482, -0.0000020498,0.0000020503,0.0000020497,0.0000020477,0.0000020443, -0.0000020397,0.0000020342,0.0000020284,0.0000020227,0.0000020178, -0.0000020142,0.0000020118,0.0000020108,0.0000020108,0.0000020107, -0.0000020100,0.0000020090,0.0000020078,0.0000020062,0.0000020039, -0.0000020012,0.0000019984,0.0000019956,0.0000019930,0.0000019907, -0.0000019892,0.0000019890,0.0000019902,0.0000019926,0.0000019950, -0.0000019966,0.0000019977,0.0000019984,0.0000019984,0.0000019974, -0.0000019950,0.0000019916,0.0000019889,0.0000019875,0.0000019866, -0.0000019858,0.0000019856,0.0000019857,0.0000019845,0.0000019804, -0.0000019747,0.0000019699,0.0000019663,0.0000019638,0.0000019624, -0.0000019618,0.0000019614,0.0000019618,0.0000019632,0.0000019649, -0.0000019662,0.0000019672,0.0000019670,0.0000019647,0.0000019609, -0.0000019570,0.0000019547,0.0000019546,0.0000019545,0.0000019533, -0.0000019525,0.0000019520,0.0000019512,0.0000019506,0.0000019507, -0.0000019512,0.0000019521,0.0000019535,0.0000019543,0.0000019534, -0.0000019525,0.0000019535,0.0000019579,0.0000019638,0.0000019681, -0.0000019730,0.0000019776,0.0000019814,0.0000019850,0.0000019882, -0.0000019902,0.0000019905,0.0000019895,0.0000019879,0.0000019864, -0.0000019857,0.0000019849,0.0000019825,0.0000019794,0.0000019796, -0.0000019819,0.0000019815,0.0000019780,0.0000019738,0.0000019716, -0.0000019714,0.0000019732,0.0000019771,0.0000019823,0.0000019885, -0.0000019958,0.0000020032,0.0000020090,0.0000020129,0.0000020148, -0.0000020155,0.0000020160,0.0000020166,0.0000020175,0.0000020191, -0.0000020213,0.0000020243,0.0000020272,0.0000020301,0.0000020326, -0.0000020337,0.0000020341,0.0000020342,0.0000020337,0.0000020324, -0.0000020317,0.0000020311,0.0000020315,0.0000020322,0.0000020337, -0.0000020351,0.0000020363,0.0000020353,0.0000020330,0.0000020298, -0.0000020267,0.0000020237,0.0000020215,0.0000020198,0.0000020196, -0.0000020200,0.0000020208,0.0000020225,0.0000020242,0.0000020256, -0.0000020269,0.0000020281,0.0000020294,0.0000020306,0.0000020316, -0.0000020323,0.0000020326,0.0000020327,0.0000020325,0.0000020323, -0.0000020319,0.0000020318,0.0000020321,0.0000020334,0.0000020356, -0.0000020378,0.0000020395,0.0000020405,0.0000020410,0.0000020416, -0.0000020428,0.0000020446,0.0000020468,0.0000020491,0.0000020512, -0.0000020532,0.0000020548,0.0000020560,0.0000020569,0.0000020577, -0.0000020592,0.0000020616,0.0000020647,0.0000020685,0.0000020726, -0.0000020766,0.0000020804,0.0000020842,0.0000020877,0.0000020906, -0.0000020926,0.0000020940,0.0000020948,0.0000020950,0.0000020952, -0.0000020963,0.0000020973,0.0000020959,0.0000020931,0.0000020917, -0.0000020880,0.0000020834,0.0000020809,0.0000020762,0.0000020730, -0.0000020692,0.0000020647,0.0000020630,0.0000020614,0.0000020602, -0.0000020609,0.0000020650,0.0000020745,0.0000020824,0.0000020865, -0.0000020923,0.0000021013,0.0000021071,0.0000021091,0.0000021123, -0.0000021143,0.0000021130,0.0000021099,0.0000021060,0.0000020992, -0.0000020895,0.0000020812,0.0000020780,0.0000020787,0.0000020817, -0.0000020860,0.0000020913,0.0000020963,0.0000021002,0.0000021031, -0.0000021048,0.0000021052,0.0000021047,0.0000021030,0.0000021007, -0.0000020983,0.0000020960,0.0000020940,0.0000020924,0.0000020908, -0.0000020889,0.0000020871,0.0000020862,0.0000020864,0.0000020872, -0.0000020884,0.0000020900,0.0000020919,0.0000020937,0.0000020954, -0.0000020968,0.0000020977,0.0000020984,0.0000020989,0.0000020989, -0.0000020989,0.0000020989,0.0000020988,0.0000020991,0.0000021002, -0.0000021021,0.0000021043,0.0000021061,0.0000021076,0.0000021094, -0.0000021116,0.0000021143,0.0000021174,0.0000021203,0.0000021229, -0.0000021247,0.0000021256,0.0000021252,0.0000021230,0.0000021207, -0.0000021174,0.0000021144,0.0000021121,0.0000021108,0.0000021099, -0.0000021113,0.0000021147,0.0000021218,0.0000021324,0.0000021453, -0.0000021593,0.0000021730,0.0000021854,0.0000021961,0.0000022051, -0.0000022122,0.0000022178,0.0000022223,0.0000022259,0.0000022285, -0.0000022304,0.0000022312,0.0000022309,0.0000022298,0.0000022280, -0.0000022257,0.0000022225,0.0000022182,0.0000022128,0.0000022069, -0.0000022013,0.0000021964,0.0000021922,0.0000021883,0.0000021837, -0.0000021773,0.0000021698,0.0000021626,0.0000021569,0.0000021532, -0.0000021514,0.0000021503,0.0000021490,0.0000021468,0.0000021435, -0.0000021386,0.0000021319,0.0000021237,0.0000021132,0.0000020996, -0.0000020827,0.0000020638,0.0000020455,0.0000020301,0.0000020188, -0.0000020116,0.0000020067,0.0000020012,0.0000019938,0.0000019857, -0.0000019786,0.0000019736,0.0000019703,0.0000019676,0.0000019664, -0.0000019656,0.0000019644,0.0000019632,0.0000019629,0.0000019640, -0.0000019668,0.0000019700,0.0000019718,0.0000019713,0.0000019690, -0.0000019665,0.0000019658,0.0000019670,0.0000019690,0.0000019705, -0.0000019705,0.0000019693,0.0000019685,0.0000019691,0.0000019714, -0.0000019754,0.0000019805,0.0000019860,0.0000019903,0.0000019938, -0.0000019977,0.0000020026,0.0000020074,0.0000020111,0.0000020125, -0.0000020125,0.0000020123,0.0000020124,0.0000020134,0.0000020149, -0.0000020159,0.0000020151,0.0000020099,0.0000020027,0.0000019992, -0.0000019992,0.0000020085,0.0000020210,0.0000020321,0.0000020387, -0.0000020398,0.0000020371,0.0000020345,0.0000020349,0.0000020396, -0.0000020483,0.0000020586,0.0000020671,0.0000020716,0.0000020721, -0.0000020712,0.0000020679,0.0000020634,0.0000020588,0.0000020549, -0.0000020526,0.0000020529,0.0000020544,0.0000020585,0.0000020642, -0.0000020712,0.0000020790,0.0000020863,0.0000020921,0.0000020953, -0.0000020959,0.0000020941,0.0000020913,0.0000020892,0.0000020883, -0.0000020890,0.0000020904,0.0000020912,0.0000020916,0.0000020915, -0.0000020913,0.0000020911,0.0000020913,0.0000020920,0.0000020929, -0.0000020937,0.0000020937,0.0000020932,0.0000020922,0.0000020913, -0.0000020899,0.0000020885,0.0000020873,0.0000020864,0.0000020854, -0.0000020840,0.0000020828,0.0000020815,0.0000020803,0.0000020789, -0.0000020772,0.0000020746,0.0000020709,0.0000020668,0.0000020630, -0.0000020600,0.0000020582,0.0000020574,0.0000020571,0.0000020577, -0.0000020588,0.0000020601,0.0000020617,0.0000020638,0.0000020661, -0.0000020686,0.0000020709,0.0000020726,0.0000020742,0.0000020760, -0.0000020775,0.0000020786,0.0000020796,0.0000020803,0.0000020808, -0.0000020810,0.0000020810,0.0000020802,0.0000020788,0.0000020769, -0.0000020746,0.0000020719,0.0000020693,0.0000020671,0.0000020650, -0.0000020633,0.0000020625,0.0000020618,0.0000020610,0.0000020605, -0.0000020598,0.0000020593,0.0000020591,0.0000020593,0.0000020599, -0.0000020601,0.0000020601,0.0000020594,0.0000020580,0.0000020558, -0.0000020529,0.0000020495,0.0000020466,0.0000020452,0.0000020449, -0.0000020438,0.0000020404,0.0000020358,0.0000020305,0.0000020247, -0.0000020182,0.0000020111,0.0000020035,0.0000019953,0.0000019866, -0.0000019778,0.0000019691,0.0000019614,0.0000019550,0.0000019503, -0.0000019480,0.0000019480,0.0000019496,0.0000019521,0.0000019555, -0.0000019596,0.0000019641,0.0000019689,0.0000019739,0.0000019785, -0.0000019822,0.0000019849,0.0000019866,0.0000019869,0.0000019860, -0.0000019837,0.0000019805,0.0000019769,0.0000019740,0.0000019715, -0.0000019691,0.0000019666,0.0000019641,0.0000019619,0.0000019602, -0.0000019587,0.0000019574,0.0000019561,0.0000019551,0.0000019542, -0.0000019532,0.0000019523,0.0000019516,0.0000019513,0.0000019512, -0.0000019513,0.0000019510,0.0000019503,0.0000019493,0.0000019483, -0.0000019473,0.0000019464,0.0000019457,0.0000019454,0.0000019454, -0.0000019455,0.0000019452,0.0000019445,0.0000019435,0.0000019419, -0.0000019397,0.0000019369,0.0000019343,0.0000019319,0.0000019302, -0.0000019294,0.0000019296,0.0000019305,0.0000019318,0.0000019334, -0.0000019352,0.0000019373,0.0000019396,0.0000019420,0.0000019444, -0.0000019464,0.0000019481,0.0000019494,0.0000019503,0.0000019508, -0.0000019508,0.0000019505,0.0000019498,0.0000019492,0.0000019487, -0.0000019493,0.0000019503,0.0000019517,0.0000019534,0.0000019553, -0.0000019577,0.0000019605,0.0000019634,0.0000019660,0.0000019677, -0.0000019684,0.0000019685,0.0000019682,0.0000019675,0.0000019663, -0.0000019640,0.0000019614,0.0000019587,0.0000019567,0.0000019553, -0.0000019543,0.0000019537,0.0000019536,0.0000019540,0.0000019544, -0.0000019548,0.0000019548,0.0000019551,0.0000019555,0.0000019559, -0.0000019563,0.0000019567,0.0000019567,0.0000019562,0.0000019552, -0.0000019536,0.0000019517,0.0000019497,0.0000019478,0.0000019464, -0.0000019462,0.0000019471,0.0000019490,0.0000019514,0.0000019535, -0.0000019544,0.0000019540,0.0000019521,0.0000019489,0.0000019451, -0.0000019408,0.0000019373,0.0000019358,0.0000019371,0.0000019416, -0.0000019468,0.0000019506,0.0000019531,0.0000019560,0.0000019607, -0.0000019654,0.0000019663,0.0000019617,0.0000019569,0.0000019563, -0.0000019634,0.0000019807,0.0000019978,0.0000020141,0.0000020298, -0.0000020342,0.0000020303,0.0000020318,0.0000020446,0.0000020552, -0.0000020566,0.0000020542,0.0000020536,0.0000020547,0.0000020558, -0.0000020558,0.0000020552,0.0000020536,0.0000020521,0.0000020514, -0.0000020511,0.0000020508,0.0000020505,0.0000020505,0.0000020511, -0.0000020507,0.0000020454,0.0000020342,0.0000020238,0.0000020202, -0.0000020204,0.0000020221,0.0000020246,0.0000020266,0.0000020282, -0.0000020285,0.0000020273,0.0000020250,0.0000020234,0.0000020225, -0.0000020219,0.0000020212,0.0000020209,0.0000020222,0.0000020251, -0.0000020270,0.0000020260,0.0000020232,0.0000020218,0.0000020225, -0.0000020257,0.0000020305,0.0000020344,0.0000020360,0.0000020363, -0.0000020358,0.0000020354,0.0000020355,0.0000020359,0.0000020357, -0.0000020347,0.0000020330,0.0000020306,0.0000020280,0.0000020253, -0.0000020231,0.0000020211,0.0000020196,0.0000020185,0.0000020176, -0.0000020170,0.0000020165,0.0000020155,0.0000020137,0.0000020113, -0.0000020086,0.0000020061,0.0000020037,0.0000020015,0.0000020000, -0.0000019993,0.0000019987,0.0000019981,0.0000019976,0.0000019971, -0.0000019966,0.0000019959,0.0000019951,0.0000019938,0.0000019925, -0.0000019911,0.0000019897,0.0000019883,0.0000019872,0.0000019862, -0.0000019853,0.0000019843,0.0000019833,0.0000019824,0.0000019815, -0.0000019806,0.0000019798,0.0000019791,0.0000019785,0.0000019780, -0.0000019776,0.0000019773,0.0000019768,0.0000019761,0.0000019752, -0.0000019741,0.0000019729,0.0000019719,0.0000019712,0.0000019709, -0.0000019708,0.0000019712,0.0000019719,0.0000019727,0.0000019734, -0.0000019743,0.0000019751,0.0000019758,0.0000019764,0.0000019766, -0.0000019765,0.0000019758,0.0000019748,0.0000019734,0.0000019718, -0.0000019702,0.0000019684,0.0000019663,0.0000019643,0.0000019624, -0.0000019612,0.0000019609,0.0000019612,0.0000019616,0.0000019617, -0.0000019613,0.0000019602,0.0000019591,0.0000019583,0.0000019578, -0.0000019570,0.0000019552,0.0000019519,0.0000019482,0.0000019459, -0.0000019454,0.0000019457,0.0000019470,0.0000019475,0.0000019472, -0.0000019466,0.0000019482,0.0000019523,0.0000019576,0.0000019622, -0.0000019644,0.0000019646,0.0000019647,0.0000019654,0.0000019658, -0.0000019676,0.0000019707,0.0000019730,0.0000019745,0.0000019745, -0.0000019745,0.0000019751,0.0000019766,0.0000019791,0.0000019820, -0.0000019854,0.0000019891,0.0000019927,0.0000019963,0.0000019996, -0.0000020029,0.0000020055,0.0000020079,0.0000020097,0.0000020103, -0.0000020096,0.0000020088,0.0000020078,0.0000020068,0.0000020059, -0.0000020052,0.0000020046,0.0000020043,0.0000020041,0.0000020039, -0.0000020042,0.0000020050,0.0000020060,0.0000020066,0.0000020065, -0.0000020054,0.0000020028,0.0000019997,0.0000019971,0.0000019957, -0.0000019955,0.0000019968,0.0000020006,0.0000020065,0.0000020129, -0.0000020188,0.0000020239,0.0000020285,0.0000020330,0.0000020372, -0.0000020402,0.0000020418,0.0000020420,0.0000020411,0.0000020391, -0.0000020363,0.0000020329,0.0000020286,0.0000020237,0.0000020188, -0.0000020152,0.0000020126,0.0000020103,0.0000020075,0.0000020043, -0.0000020015,0.0000020000,0.0000020000,0.0000020014,0.0000020033, -0.0000020054,0.0000020075,0.0000020097,0.0000020120,0.0000020137, -0.0000020153,0.0000020159,0.0000020158,0.0000020155,0.0000020157, -0.0000020161,0.0000020168,0.0000020177,0.0000020189,0.0000020202, -0.0000020218,0.0000020237,0.0000020259,0.0000020285,0.0000020306, -0.0000020324,0.0000020338,0.0000020356,0.0000020376,0.0000020395, -0.0000020410,0.0000020421,0.0000020432,0.0000020445,0.0000020459, -0.0000020472,0.0000020480,0.0000020478,0.0000020470,0.0000020461, -0.0000020449,0.0000020436,0.0000020421,0.0000020403,0.0000020389, -0.0000020381,0.0000020376,0.0000020376,0.0000020384,0.0000020396, -0.0000020410,0.0000020426,0.0000020441,0.0000020456,0.0000020469, -0.0000020480,0.0000020491,0.0000020496,0.0000020505,0.0000020518, -0.0000020529,0.0000020539,0.0000020548,0.0000020556,0.0000020562, -0.0000020569,0.0000020587,0.0000020618,0.0000020654,0.0000020685, -0.0000020714,0.0000020754,0.0000020800,0.0000020843,0.0000020887, -0.0000020926,0.0000020942,0.0000020933,0.0000020887,0.0000020828, -0.0000020784,0.0000020744,0.0000020704,0.0000020670,0.0000020640, -0.0000020610,0.0000020593,0.0000020583,0.0000020578,0.0000020587, -0.0000020618,0.0000020648,0.0000020674,0.0000020701,0.0000020724, -0.0000020740,0.0000020756,0.0000020777,0.0000020795,0.0000020799, -0.0000020786,0.0000020760,0.0000020737,0.0000020728,0.0000020737, -0.0000020766,0.0000020810,0.0000020856,0.0000020901,0.0000020939, -0.0000020963,0.0000020975,0.0000020983,0.0000020988,0.0000020991, -0.0000020996,0.0000021004,0.0000021014,0.0000021022,0.0000021026, -0.0000021025,0.0000021021,0.0000021023,0.0000021035,0.0000021056, -0.0000021083,0.0000021117,0.0000021155,0.0000021196,0.0000021237, -0.0000021278,0.0000021315,0.0000021348,0.0000021373,0.0000021389, -0.0000021393,0.0000021390,0.0000021376,0.0000021354,0.0000021324, -0.0000021292,0.0000021261,0.0000021235,0.0000021214,0.0000021196, -0.0000021179,0.0000021165,0.0000021159,0.0000021157,0.0000021159, -0.0000021165,0.0000021170,0.0000021180,0.0000021198,0.0000021225, -0.0000021258,0.0000021295,0.0000021337,0.0000021382,0.0000021426, -0.0000021466,0.0000021503,0.0000021533,0.0000021560,0.0000021583, -0.0000021597,0.0000021602,0.0000021600,0.0000021591,0.0000021576, -0.0000021559,0.0000021542,0.0000021521,0.0000021501,0.0000021480, -0.0000021462,0.0000021448,0.0000021434,0.0000021422,0.0000021410, -0.0000021398,0.0000021387,0.0000021379,0.0000021375,0.0000021376, -0.0000021381,0.0000021390,0.0000021401,0.0000021413,0.0000021427, -0.0000021442,0.0000021455,0.0000021466,0.0000021473,0.0000021481, -0.0000021494,0.0000021518,0.0000021540,0.0000021554,0.0000021561, -0.0000021562,0.0000021559,0.0000021551,0.0000021542,0.0000021529, -0.0000021506,0.0000021468,0.0000021413,0.0000021360,0.0000021329, -0.0000021302,0.0000021252,0.0000021221,0.0000021223,0.0000021256, -0.0000021367,0.0000021460,0.0000021514,0.0000021567,0.0000021638, -0.0000021695,0.0000021682,0.0000021607,0.0000021546,0.0000021512, -0.0000021497,0.0000021512,0.0000021539,0.0000021535,0.0000021480, -0.0000021398,0.0000021335,0.0000021297,0.0000021269,0.0000021236, -0.0000021195,0.0000021155,0.0000021116,0.0000021087,0.0000021077, -0.0000021078,0.0000021084,0.0000021089,0.0000021087,0.0000021080, -0.0000021069,0.0000021055,0.0000021033,0.0000021001,0.0000020961, -0.0000020909,0.0000020850,0.0000020789,0.0000020725,0.0000020681, -0.0000020669,0.0000020679,0.0000020703,0.0000020725,0.0000020743, -0.0000020768,0.0000020784,0.0000020777,0.0000020746,0.0000020695, -0.0000020637,0.0000020575,0.0000020503,0.0000020437,0.0000020393, -0.0000020366,0.0000020350,0.0000020340,0.0000020335,0.0000020338, -0.0000020359,0.0000020426,0.0000020506,0.0000020544,0.0000020522, -0.0000020426,0.0000020316,0.0000020247,0.0000020239,0.0000020176, -0.0000020056,0.0000020023,0.0000020035,0.0000020064,0.0000020120, -0.0000020237,0.0000020343,0.0000020361,0.0000020356,0.0000020393, -0.0000020468,0.0000020546,0.0000020603,0.0000020671,0.0000020765, -0.0000020919,0.0000021063,0.0000021116,0.0000021205,0.0000021398, -0.0000021451,0.0000021512,0.0000021593,0.0000021586,0.0000021594, -0.0000021659,0.0000021675,0.0000021636,0.0000021682,0.0000021802, -0.0000021813,0.0000021771,0.0000021723,0.0000021741,0.0000021803, -0.0000021810,0.0000021842,0.0000021958,0.0000022021,0.0000022041, -0.0000022033,0.0000022001,0.0000022011,0.0000022079,0.0000022158, -0.0000022210,0.0000022235,0.0000022269,0.0000022309,0.0000022338, -0.0000022348,0.0000022357,0.0000022369,0.0000022370,0.0000022365, -0.0000022334,0.0000022253,0.0000022132,0.0000022003,0.0000021941, -0.0000021931,0.0000021929,0.0000021921,0.0000021916,0.0000021911, -0.0000021887,0.0000021823,0.0000021733,0.0000021636,0.0000021554, -0.0000021505,0.0000021475,0.0000021451,0.0000021427,0.0000021415, -0.0000021408,0.0000021402,0.0000021405,0.0000021405,0.0000021409, -0.0000021403,0.0000021393,0.0000021383,0.0000021360,0.0000021316, -0.0000021254,0.0000021186,0.0000021101,0.0000021016,0.0000020935, -0.0000020873,0.0000020824,0.0000020787,0.0000020762,0.0000020763, -0.0000020792,0.0000020827,0.0000020860,0.0000020867,0.0000020869, -0.0000020865,0.0000020870,0.0000020884,0.0000020897,0.0000020894, -0.0000020874,0.0000020847,0.0000020836,0.0000020837,0.0000020828, -0.0000020810,0.0000020776,0.0000020750,0.0000020724,0.0000020713, -0.0000020732,0.0000020779,0.0000020851,0.0000020930,0.0000021009, -0.0000021084,0.0000021140,0.0000021176,0.0000021206,0.0000021250, -0.0000021300,0.0000021344,0.0000021378,0.0000021401,0.0000021401, -0.0000021392,0.0000021382,0.0000021379,0.0000021379,0.0000021383, -0.0000021393,0.0000021408,0.0000021424,0.0000021440,0.0000021454, -0.0000021461,0.0000021462,0.0000021461,0.0000021461,0.0000021462, -0.0000021469,0.0000021473,0.0000021486,0.0000021498,0.0000021516, -0.0000021536,0.0000021558,0.0000021585,0.0000021610,0.0000021624, -0.0000021640,0.0000021645,0.0000021635,0.0000021616,0.0000021592, -0.0000021579,0.0000021576,0.0000021578,0.0000021574,0.0000021567, -0.0000021554,0.0000021537,0.0000021519,0.0000021504,0.0000021484, -0.0000021471,0.0000021451,0.0000021440,0.0000021429,0.0000021421, -0.0000021414,0.0000021412,0.0000021410,0.0000021402,0.0000021388, -0.0000021370,0.0000021356,0.0000021343,0.0000021336,0.0000021329, -0.0000021329,0.0000021337,0.0000021346,0.0000021354,0.0000021369, -0.0000021387,0.0000021405,0.0000021423,0.0000021439,0.0000021453, -0.0000021466,0.0000021470,0.0000021471,0.0000021477,0.0000021489, -0.0000021511,0.0000021538,0.0000021566,0.0000021598,0.0000021640, -0.0000021689,0.0000021740,0.0000021779,0.0000021804,0.0000021816, -0.0000021823,0.0000021835,0.0000021852,0.0000021873,0.0000021899, -0.0000021934,0.0000021977,0.0000022021,0.0000022060,0.0000022093, -0.0000022119,0.0000022138,0.0000022149,0.0000022154,0.0000022152, -0.0000022141,0.0000022133,0.0000022135,0.0000022139,0.0000022138, -0.0000022128,0.0000022120,0.0000022121,0.0000022130,0.0000022136, -0.0000022136,0.0000022137,0.0000022137,0.0000022125,0.0000022104, -0.0000022068,0.0000022018,0.0000021962,0.0000021908,0.0000021858, -0.0000021821,0.0000021801,0.0000021793,0.0000021801,0.0000021825, -0.0000021851,0.0000021888,0.0000021924,0.0000021953,0.0000021977, -0.0000021996,0.0000022010,0.0000022015,0.0000022016,0.0000022019, -0.0000022023,0.0000022023,0.0000022016,0.0000021999,0.0000021975, -0.0000021946,0.0000021915,0.0000021887,0.0000021861,0.0000021842, -0.0000021830,0.0000021829,0.0000021839,0.0000021847,0.0000021847, -0.0000021841,0.0000021832,0.0000021822,0.0000021813,0.0000021797, -0.0000021778,0.0000021753,0.0000021725,0.0000021693,0.0000021659, -0.0000021626,0.0000021604,0.0000021590,0.0000021583,0.0000021585, -0.0000021591,0.0000021602,0.0000021619,0.0000021642,0.0000021665, -0.0000021688,0.0000021709,0.0000021725,0.0000021739,0.0000021753, -0.0000021765,0.0000021777,0.0000021786,0.0000021790,0.0000021789, -0.0000021784,0.0000021778,0.0000021774,0.0000021770,0.0000021765, -0.0000021757,0.0000021745,0.0000021728,0.0000021705,0.0000021675, -0.0000021644,0.0000021619,0.0000021603,0.0000021588,0.0000021565, -0.0000021533,0.0000021494,0.0000021458,0.0000021425,0.0000021393, -0.0000021360,0.0000021326,0.0000021298,0.0000021274,0.0000021252, -0.0000021231,0.0000021216,0.0000021204,0.0000021192,0.0000021182, -0.0000021174,0.0000021169,0.0000021166,0.0000021164,0.0000021161, -0.0000021156,0.0000021153,0.0000021151,0.0000021147,0.0000021143, -0.0000021143,0.0000021145,0.0000021149,0.0000021149,0.0000021143, -0.0000021134,0.0000021120,0.0000021101,0.0000021076,0.0000021046, -0.0000021014,0.0000020983,0.0000020948,0.0000020910,0.0000020876, -0.0000020848,0.0000020821,0.0000020791,0.0000020763,0.0000020750, -0.0000020739,0.0000020741,0.0000020747,0.0000020753,0.0000020762, -0.0000020771,0.0000020775,0.0000020774,0.0000020770,0.0000020764, -0.0000020760,0.0000020758,0.0000020751,0.0000020737,0.0000020719, -0.0000020705,0.0000020700,0.0000020700,0.0000020704,0.0000020713, -0.0000020723,0.0000020730,0.0000020731,0.0000020727,0.0000020719, -0.0000020709,0.0000020696,0.0000020679,0.0000020659,0.0000020640, -0.0000020626,0.0000020617,0.0000020612,0.0000020610,0.0000020615, -0.0000020629,0.0000020649,0.0000020668,0.0000020683,0.0000020690, -0.0000020689,0.0000020681,0.0000020667,0.0000020644,0.0000020611, -0.0000020573,0.0000020540,0.0000020516,0.0000020497,0.0000020481, -0.0000020470,0.0000020465,0.0000020462,0.0000020461,0.0000020464, -0.0000020470,0.0000020479,0.0000020498,0.0000020523,0.0000020547, -0.0000020569,0.0000020582,0.0000020581,0.0000020562,0.0000020526, -0.0000020478,0.0000020420,0.0000020356,0.0000020293,0.0000020236, -0.0000020188,0.0000020155,0.0000020140,0.0000020137,0.0000020133, -0.0000020124,0.0000020114,0.0000020105,0.0000020095,0.0000020081, -0.0000020065,0.0000020050,0.0000020032,0.0000020016,0.0000019999, -0.0000019982,0.0000019975,0.0000019979,0.0000019995,0.0000020014, -0.0000020025,0.0000020028,0.0000020027,0.0000020020,0.0000020003, -0.0000019973,0.0000019937,0.0000019908,0.0000019893,0.0000019887, -0.0000019880,0.0000019873,0.0000019872,0.0000019860,0.0000019820, -0.0000019763,0.0000019716,0.0000019680,0.0000019651,0.0000019633, -0.0000019616,0.0000019596,0.0000019585,0.0000019590,0.0000019606, -0.0000019619,0.0000019629,0.0000019631,0.0000019619,0.0000019588, -0.0000019557,0.0000019536,0.0000019532,0.0000019530,0.0000019519, -0.0000019509,0.0000019506,0.0000019500,0.0000019495,0.0000019500, -0.0000019510,0.0000019523,0.0000019535,0.0000019542,0.0000019535, -0.0000019529,0.0000019540,0.0000019582,0.0000019644,0.0000019695, -0.0000019745,0.0000019791,0.0000019829,0.0000019866,0.0000019899, -0.0000019919,0.0000019922,0.0000019908,0.0000019882,0.0000019859, -0.0000019845,0.0000019838,0.0000019817,0.0000019774,0.0000019752, -0.0000019766,0.0000019780,0.0000019757,0.0000019706,0.0000019666, -0.0000019648,0.0000019649,0.0000019665,0.0000019695,0.0000019738, -0.0000019798,0.0000019867,0.0000019934,0.0000019991,0.0000020033, -0.0000020059,0.0000020075,0.0000020089,0.0000020101,0.0000020113, -0.0000020130,0.0000020153,0.0000020182,0.0000020218,0.0000020255, -0.0000020289,0.0000020318,0.0000020342,0.0000020354,0.0000020358, -0.0000020351,0.0000020341,0.0000020327,0.0000020309,0.0000020305, -0.0000020305,0.0000020307,0.0000020315,0.0000020323,0.0000020320, -0.0000020314,0.0000020304,0.0000020293,0.0000020288,0.0000020287, -0.0000020291,0.0000020299,0.0000020309,0.0000020319,0.0000020328, -0.0000020337,0.0000020343,0.0000020345,0.0000020346,0.0000020346, -0.0000020346,0.0000020344,0.0000020340,0.0000020336,0.0000020332, -0.0000020326,0.0000020321,0.0000020321,0.0000020325,0.0000020340, -0.0000020367,0.0000020395,0.0000020418,0.0000020434,0.0000020446, -0.0000020461,0.0000020481,0.0000020504,0.0000020524,0.0000020537, -0.0000020545,0.0000020552,0.0000020561,0.0000020572,0.0000020594, -0.0000020625,0.0000020659,0.0000020693,0.0000020728,0.0000020770, -0.0000020817,0.0000020865,0.0000020909,0.0000020942,0.0000020963, -0.0000020975,0.0000020984,0.0000020987,0.0000020984,0.0000020979, -0.0000020983,0.0000020993,0.0000020983,0.0000020954,0.0000020940, -0.0000020903,0.0000020857,0.0000020827,0.0000020773,0.0000020738, -0.0000020699,0.0000020663,0.0000020651,0.0000020633,0.0000020621, -0.0000020623,0.0000020663,0.0000020750,0.0000020819,0.0000020856, -0.0000020920,0.0000021006,0.0000021053,0.0000021069,0.0000021098, -0.0000021108,0.0000021089,0.0000021051,0.0000021003,0.0000020931, -0.0000020849,0.0000020788,0.0000020769,0.0000020775,0.0000020793, -0.0000020824,0.0000020867,0.0000020909,0.0000020945,0.0000020973, -0.0000020987,0.0000020987,0.0000020970,0.0000020938,0.0000020899, -0.0000020859,0.0000020823,0.0000020797,0.0000020778,0.0000020761, -0.0000020741,0.0000020722,0.0000020712,0.0000020714,0.0000020723, -0.0000020738,0.0000020755,0.0000020771,0.0000020787,0.0000020803, -0.0000020816,0.0000020825,0.0000020831,0.0000020836,0.0000020841, -0.0000020846,0.0000020848,0.0000020848,0.0000020851,0.0000020863, -0.0000020886,0.0000020913,0.0000020939,0.0000020965,0.0000020992, -0.0000021023,0.0000021056,0.0000021090,0.0000021123,0.0000021152, -0.0000021175,0.0000021193,0.0000021200,0.0000021196,0.0000021182, -0.0000021166,0.0000021143,0.0000021128,0.0000021111,0.0000021097, -0.0000021085,0.0000021074,0.0000021085,0.0000021122,0.0000021191, -0.0000021291,0.0000021415,0.0000021554,0.0000021695,0.0000021827, -0.0000021942,0.0000022033,0.0000022103,0.0000022154,0.0000022191, -0.0000022217,0.0000022232,0.0000022234,0.0000022226,0.0000022210, -0.0000022186,0.0000022154,0.0000022115,0.0000022069,0.0000022023, -0.0000021978,0.0000021934,0.0000021886,0.0000021828,0.0000021748, -0.0000021646,0.0000021544,0.0000021465,0.0000021418,0.0000021396, -0.0000021388,0.0000021381,0.0000021367,0.0000021344,0.0000021311, -0.0000021271,0.0000021218,0.0000021147,0.0000021048,0.0000020929, -0.0000020773,0.0000020601,0.0000020430,0.0000020277,0.0000020160, -0.0000020087,0.0000020043,0.0000020002,0.0000019942,0.0000019863, -0.0000019787,0.0000019725,0.0000019679,0.0000019649,0.0000019631, -0.0000019618,0.0000019604,0.0000019590,0.0000019580,0.0000019582, -0.0000019606,0.0000019644,0.0000019674,0.0000019681,0.0000019664, -0.0000019640,0.0000019626,0.0000019631,0.0000019651,0.0000019670, -0.0000019677,0.0000019671,0.0000019665,0.0000019669,0.0000019688, -0.0000019721,0.0000019764,0.0000019816,0.0000019866,0.0000019905, -0.0000019942,0.0000019985,0.0000020039,0.0000020088,0.0000020116, -0.0000020122,0.0000020122,0.0000020124,0.0000020133,0.0000020152, -0.0000020171,0.0000020170,0.0000020133,0.0000020056,0.0000019976, -0.0000019954,0.0000019997,0.0000020088,0.0000020201,0.0000020294, -0.0000020341,0.0000020340,0.0000020314,0.0000020289,0.0000020297, -0.0000020352,0.0000020442,0.0000020542,0.0000020628,0.0000020683, -0.0000020700,0.0000020686,0.0000020665,0.0000020628,0.0000020589, -0.0000020557,0.0000020536,0.0000020534,0.0000020537,0.0000020560, -0.0000020606,0.0000020666,0.0000020731,0.0000020792,0.0000020840, -0.0000020867,0.0000020867,0.0000020847,0.0000020816,0.0000020794, -0.0000020788,0.0000020786,0.0000020788,0.0000020794,0.0000020803, -0.0000020817,0.0000020836,0.0000020856,0.0000020874,0.0000020890, -0.0000020902,0.0000020906,0.0000020902,0.0000020895,0.0000020888, -0.0000020879,0.0000020870,0.0000020857,0.0000020842,0.0000020826, -0.0000020814,0.0000020799,0.0000020776,0.0000020746,0.0000020703, -0.0000020646,0.0000020574,0.0000020506,0.0000020457,0.0000020430, -0.0000020418,0.0000020417,0.0000020418,0.0000020426,0.0000020435, -0.0000020442,0.0000020449,0.0000020458,0.0000020473,0.0000020488, -0.0000020510,0.0000020537,0.0000020567,0.0000020605,0.0000020643, -0.0000020679,0.0000020714,0.0000020743,0.0000020764,0.0000020777, -0.0000020783,0.0000020779,0.0000020767,0.0000020751,0.0000020727, -0.0000020695,0.0000020659,0.0000020625,0.0000020590,0.0000020557, -0.0000020536,0.0000020523,0.0000020512,0.0000020504,0.0000020501, -0.0000020503,0.0000020512,0.0000020527,0.0000020542,0.0000020558, -0.0000020571,0.0000020575,0.0000020570,0.0000020557,0.0000020531, -0.0000020498,0.0000020462,0.0000020431,0.0000020410,0.0000020395, -0.0000020377,0.0000020347,0.0000020302,0.0000020253,0.0000020196, -0.0000020129,0.0000020048,0.0000019958,0.0000019862,0.0000019765, -0.0000019671,0.0000019589,0.0000019518,0.0000019453,0.0000019403, -0.0000019374,0.0000019367,0.0000019379,0.0000019401,0.0000019429, -0.0000019460,0.0000019496,0.0000019537,0.0000019580,0.0000019616, -0.0000019643,0.0000019661,0.0000019669,0.0000019665,0.0000019649, -0.0000019623,0.0000019596,0.0000019573,0.0000019553,0.0000019531, -0.0000019507,0.0000019482,0.0000019456,0.0000019432,0.0000019413, -0.0000019399,0.0000019390,0.0000019380,0.0000019373,0.0000019371, -0.0000019373,0.0000019378,0.0000019386,0.0000019398,0.0000019410, -0.0000019416,0.0000019415,0.0000019408,0.0000019398,0.0000019387, -0.0000019374,0.0000019361,0.0000019350,0.0000019346,0.0000019346, -0.0000019348,0.0000019349,0.0000019347,0.0000019340,0.0000019327, -0.0000019310,0.0000019289,0.0000019264,0.0000019240,0.0000019222, -0.0000019215,0.0000019217,0.0000019228,0.0000019246,0.0000019269, -0.0000019291,0.0000019310,0.0000019330,0.0000019351,0.0000019376, -0.0000019405,0.0000019434,0.0000019461,0.0000019485,0.0000019500, -0.0000019505,0.0000019501,0.0000019491,0.0000019479,0.0000019469, -0.0000019462,0.0000019462,0.0000019471,0.0000019484,0.0000019503, -0.0000019528,0.0000019560,0.0000019595,0.0000019626,0.0000019648, -0.0000019662,0.0000019670,0.0000019674,0.0000019672,0.0000019666, -0.0000019652,0.0000019631,0.0000019608,0.0000019588,0.0000019571, -0.0000019557,0.0000019548,0.0000019544,0.0000019544,0.0000019546, -0.0000019548,0.0000019550,0.0000019553,0.0000019559,0.0000019565, -0.0000019571,0.0000019576,0.0000019578,0.0000019574,0.0000019560, -0.0000019543,0.0000019523,0.0000019503,0.0000019486,0.0000019477, -0.0000019479,0.0000019493,0.0000019517,0.0000019541,0.0000019553, -0.0000019553,0.0000019537,0.0000019510,0.0000019473,0.0000019429, -0.0000019384,0.0000019350,0.0000019345,0.0000019374,0.0000019427, -0.0000019476,0.0000019505,0.0000019528,0.0000019565,0.0000019620, -0.0000019655,0.0000019639,0.0000019590,0.0000019567,0.0000019596, -0.0000019732,0.0000019911,0.0000020065,0.0000020223,0.0000020337, -0.0000020337,0.0000020297,0.0000020343,0.0000020472,0.0000020558, -0.0000020563,0.0000020537,0.0000020526,0.0000020531,0.0000020540, -0.0000020541,0.0000020533,0.0000020523,0.0000020515,0.0000020514, -0.0000020519,0.0000020524,0.0000020523,0.0000020518,0.0000020513, -0.0000020498,0.0000020436,0.0000020326,0.0000020233,0.0000020206, -0.0000020216,0.0000020237,0.0000020260,0.0000020281,0.0000020294, -0.0000020294,0.0000020279,0.0000020260,0.0000020246,0.0000020234, -0.0000020223,0.0000020219,0.0000020233,0.0000020263,0.0000020281, -0.0000020272,0.0000020242,0.0000020222,0.0000020226,0.0000020252, -0.0000020293,0.0000020333,0.0000020356,0.0000020363,0.0000020361, -0.0000020356,0.0000020351,0.0000020349,0.0000020345,0.0000020338, -0.0000020327,0.0000020312,0.0000020292,0.0000020268,0.0000020239, -0.0000020211,0.0000020186,0.0000020168,0.0000020155,0.0000020149, -0.0000020148,0.0000020144,0.0000020134,0.0000020121,0.0000020104, -0.0000020083,0.0000020058,0.0000020034,0.0000020014,0.0000019998, -0.0000019987,0.0000019980,0.0000019976,0.0000019973,0.0000019968, -0.0000019964,0.0000019957,0.0000019949,0.0000019939,0.0000019928, -0.0000019915,0.0000019900,0.0000019884,0.0000019867,0.0000019850, -0.0000019834,0.0000019817,0.0000019799,0.0000019779,0.0000019755, -0.0000019729,0.0000019703,0.0000019681,0.0000019666,0.0000019657, -0.0000019652,0.0000019650,0.0000019652,0.0000019654,0.0000019656, -0.0000019658,0.0000019660,0.0000019662,0.0000019663,0.0000019667, -0.0000019673,0.0000019682,0.0000019695,0.0000019711,0.0000019727, -0.0000019742,0.0000019755,0.0000019765,0.0000019772,0.0000019774, -0.0000019773,0.0000019767,0.0000019753,0.0000019737,0.0000019721, -0.0000019707,0.0000019694,0.0000019679,0.0000019661,0.0000019648, -0.0000019644,0.0000019648,0.0000019659,0.0000019672,0.0000019681, -0.0000019678,0.0000019663,0.0000019639,0.0000019615,0.0000019596, -0.0000019583,0.0000019561,0.0000019520,0.0000019475,0.0000019448, -0.0000019442,0.0000019453,0.0000019469,0.0000019475,0.0000019471, -0.0000019472,0.0000019492,0.0000019533,0.0000019584,0.0000019626, -0.0000019646,0.0000019612,0.0000019641,0.0000019657,0.0000019670, -0.0000019688,0.0000019717,0.0000019747,0.0000019769,0.0000019776, -0.0000019777,0.0000019782,0.0000019789,0.0000019805,0.0000019830, -0.0000019860,0.0000019893,0.0000019922,0.0000019948,0.0000019970, -0.0000019992,0.0000020011,0.0000020030,0.0000020047,0.0000020059, -0.0000020067,0.0000020067,0.0000020057,0.0000020053,0.0000020050, -0.0000020044,0.0000020039,0.0000020030,0.0000020019,0.0000020011, -0.0000020009,0.0000020008,0.0000020007,0.0000020004,0.0000019997, -0.0000019985,0.0000019972,0.0000019975,0.0000019986,0.0000020009, -0.0000020053,0.0000020110,0.0000020164,0.0000020214,0.0000020255, -0.0000020295,0.0000020334,0.0000020370,0.0000020397,0.0000020414, -0.0000020420,0.0000020412,0.0000020397,0.0000020377,0.0000020352, -0.0000020317,0.0000020273,0.0000020226,0.0000020186,0.0000020153, -0.0000020118,0.0000020078,0.0000020039,0.0000020008,0.0000019991, -0.0000019986,0.0000019992,0.0000020004,0.0000020020,0.0000020033, -0.0000020047,0.0000020061,0.0000020075,0.0000020082,0.0000020080, -0.0000020077,0.0000020075,0.0000020084,0.0000020094,0.0000020104, -0.0000020114,0.0000020128,0.0000020143,0.0000020154,0.0000020168, -0.0000020190,0.0000020213,0.0000020230,0.0000020246,0.0000020262, -0.0000020280,0.0000020297,0.0000020312,0.0000020323,0.0000020332, -0.0000020344,0.0000020359,0.0000020371,0.0000020385,0.0000020402, -0.0000020416,0.0000020423,0.0000020425,0.0000020425,0.0000020421, -0.0000020415,0.0000020402,0.0000020386,0.0000020373,0.0000020362, -0.0000020353,0.0000020350,0.0000020356,0.0000020368,0.0000020380, -0.0000020390,0.0000020401,0.0000020410,0.0000020419,0.0000020427, -0.0000020434,0.0000020444,0.0000020457,0.0000020473,0.0000020489, -0.0000020507,0.0000020520,0.0000020528,0.0000020542,0.0000020566, -0.0000020599,0.0000020632,0.0000020663,0.0000020689,0.0000020729, -0.0000020779,0.0000020826,0.0000020869,0.0000020909,0.0000020931, -0.0000020926,0.0000020887,0.0000020828,0.0000020780,0.0000020737, -0.0000020693,0.0000020657,0.0000020623,0.0000020587,0.0000020561, -0.0000020545,0.0000020539,0.0000020548,0.0000020575,0.0000020600, -0.0000020621,0.0000020645,0.0000020668,0.0000020686,0.0000020708, -0.0000020734,0.0000020757,0.0000020765,0.0000020760,0.0000020741, -0.0000020718,0.0000020701,0.0000020698,0.0000020718,0.0000020759, -0.0000020806,0.0000020853,0.0000020899,0.0000020937,0.0000020958, -0.0000020970,0.0000020975,0.0000020975,0.0000020972,0.0000020970, -0.0000020973,0.0000020977,0.0000020983,0.0000020985,0.0000020987, -0.0000020993,0.0000021009,0.0000021031,0.0000021059,0.0000021094, -0.0000021134,0.0000021174,0.0000021213,0.0000021248,0.0000021280, -0.0000021308,0.0000021332,0.0000021353,0.0000021369,0.0000021377, -0.0000021376,0.0000021363,0.0000021343,0.0000021317,0.0000021285, -0.0000021251,0.0000021223,0.0000021201,0.0000021179,0.0000021161, -0.0000021149,0.0000021141,0.0000021138,0.0000021138,0.0000021139, -0.0000021141,0.0000021146,0.0000021158,0.0000021176,0.0000021199, -0.0000021232,0.0000021271,0.0000021313,0.0000021358,0.0000021405, -0.0000021445,0.0000021483,0.0000021516,0.0000021543,0.0000021559, -0.0000021565,0.0000021561,0.0000021549,0.0000021536,0.0000021523, -0.0000021507,0.0000021490,0.0000021474,0.0000021459,0.0000021446, -0.0000021434,0.0000021422,0.0000021409,0.0000021395,0.0000021381, -0.0000021370,0.0000021363,0.0000021360,0.0000021361,0.0000021367, -0.0000021376,0.0000021388,0.0000021401,0.0000021416,0.0000021428, -0.0000021439,0.0000021448,0.0000021457,0.0000021473,0.0000021499, -0.0000021525,0.0000021541,0.0000021548,0.0000021550,0.0000021546, -0.0000021538,0.0000021529,0.0000021516,0.0000021493,0.0000021452, -0.0000021398,0.0000021343,0.0000021311,0.0000021278,0.0000021223, -0.0000021187,0.0000021184,0.0000021224,0.0000021341,0.0000021437, -0.0000021494,0.0000021558,0.0000021633,0.0000021693,0.0000021700, -0.0000021647,0.0000021585,0.0000021555,0.0000021553,0.0000021561, -0.0000021551,0.0000021502,0.0000021415,0.0000021336,0.0000021290, -0.0000021257,0.0000021221,0.0000021175,0.0000021124,0.0000021081, -0.0000021048,0.0000021031,0.0000021030,0.0000021042,0.0000021058, -0.0000021068,0.0000021069,0.0000021064,0.0000021053,0.0000021033, -0.0000021005,0.0000020966,0.0000020915,0.0000020858,0.0000020802, -0.0000020737,0.0000020671,0.0000020629,0.0000020619,0.0000020635, -0.0000020665,0.0000020688,0.0000020712,0.0000020741,0.0000020750, -0.0000020739,0.0000020706,0.0000020656,0.0000020605,0.0000020538, -0.0000020459,0.0000020387,0.0000020328,0.0000020292,0.0000020285, -0.0000020293,0.0000020310,0.0000020324,0.0000020366,0.0000020452, -0.0000020517,0.0000020525,0.0000020468,0.0000020372,0.0000020288, -0.0000020255,0.0000020237,0.0000020122,0.0000020035,0.0000020027, -0.0000020041,0.0000020081,0.0000020174,0.0000020303,0.0000020353, -0.0000020338,0.0000020347,0.0000020406,0.0000020490,0.0000020565, -0.0000020647,0.0000020738,0.0000020868,0.0000021017,0.0000021096, -0.0000021156,0.0000021357,0.0000021447,0.0000021490,0.0000021590, -0.0000021601,0.0000021603,0.0000021660,0.0000021697,0.0000021657, -0.0000021670,0.0000021794,0.0000021827,0.0000021792,0.0000021750, -0.0000021748,0.0000021813,0.0000021839,0.0000021847,0.0000021937, -0.0000022027,0.0000022053,0.0000022065,0.0000022042,0.0000022008, -0.0000022008,0.0000022058,0.0000022143,0.0000022197,0.0000022230, -0.0000022268,0.0000022301,0.0000022323,0.0000022335,0.0000022340, -0.0000022333,0.0000022310,0.0000022255,0.0000022154,0.0000022024, -0.0000021920,0.0000021898,0.0000021913,0.0000021928,0.0000021929, -0.0000021912,0.0000021892,0.0000021840,0.0000021747,0.0000021641, -0.0000021554,0.0000021502,0.0000021484,0.0000021475,0.0000021460, -0.0000021442,0.0000021429,0.0000021417,0.0000021404,0.0000021402, -0.0000021405,0.0000021411,0.0000021409,0.0000021406,0.0000021412, -0.0000021412,0.0000021396,0.0000021357,0.0000021305,0.0000021227, -0.0000021125,0.0000021020,0.0000020932,0.0000020873,0.0000020825, -0.0000020780,0.0000020762,0.0000020765,0.0000020774,0.0000020784, -0.0000020785,0.0000020778,0.0000020759,0.0000020755,0.0000020759, -0.0000020774,0.0000020780,0.0000020769,0.0000020755,0.0000020766, -0.0000020787,0.0000020794,0.0000020790,0.0000020774,0.0000020756, -0.0000020729,0.0000020709,0.0000020710,0.0000020713,0.0000020734, -0.0000020773,0.0000020827,0.0000020897,0.0000020977,0.0000021051, -0.0000021109,0.0000021161,0.0000021195,0.0000021221,0.0000021249, -0.0000021280,0.0000021312,0.0000021335,0.0000021349,0.0000021360, -0.0000021372,0.0000021382,0.0000021391,0.0000021406,0.0000021422, -0.0000021438,0.0000021449,0.0000021454,0.0000021457,0.0000021456, -0.0000021456,0.0000021448,0.0000021439,0.0000021436,0.0000021438, -0.0000021446,0.0000021457,0.0000021473,0.0000021493,0.0000021518, -0.0000021536,0.0000021549,0.0000021557,0.0000021555,0.0000021543, -0.0000021522,0.0000021507,0.0000021510,0.0000021525,0.0000021535, -0.0000021541,0.0000021540,0.0000021531,0.0000021518,0.0000021506, -0.0000021489,0.0000021467,0.0000021449,0.0000021431,0.0000021423, -0.0000021412,0.0000021408,0.0000021406,0.0000021405,0.0000021403, -0.0000021402,0.0000021392,0.0000021381,0.0000021369,0.0000021359, -0.0000021355,0.0000021347,0.0000021344,0.0000021351,0.0000021356, -0.0000021359,0.0000021365,0.0000021373,0.0000021374,0.0000021366, -0.0000021363,0.0000021358,0.0000021356,0.0000021355,0.0000021358, -0.0000021371,0.0000021393,0.0000021426,0.0000021459,0.0000021482, -0.0000021502,0.0000021517,0.0000021535,0.0000021560,0.0000021589, -0.0000021628,0.0000021673,0.0000021723,0.0000021771,0.0000021809, -0.0000021840,0.0000021872,0.0000021908,0.0000021943,0.0000021977, -0.0000022009,0.0000022036,0.0000022059,0.0000022076,0.0000022087, -0.0000022096,0.0000022099,0.0000022091,0.0000022086,0.0000022087, -0.0000022088,0.0000022087,0.0000022076,0.0000022061,0.0000022057, -0.0000022065,0.0000022067,0.0000022070,0.0000022077,0.0000022080, -0.0000022081,0.0000022076,0.0000022058,0.0000022036,0.0000022007, -0.0000021969,0.0000021927,0.0000021885,0.0000021854,0.0000021834, -0.0000021829,0.0000021847,0.0000021875,0.0000021916,0.0000021956, -0.0000021991,0.0000022019,0.0000022039,0.0000022050,0.0000022052, -0.0000022048,0.0000022049,0.0000022052,0.0000022055,0.0000022052, -0.0000022040,0.0000022016,0.0000021983,0.0000021941,0.0000021897, -0.0000021855,0.0000021821,0.0000021795,0.0000021785,0.0000021785, -0.0000021785,0.0000021781,0.0000021778,0.0000021775,0.0000021775, -0.0000021776,0.0000021777,0.0000021770,0.0000021763,0.0000021747, -0.0000021721,0.0000021687,0.0000021651,0.0000021619,0.0000021592, -0.0000021574,0.0000021565,0.0000021561,0.0000021564,0.0000021575, -0.0000021597,0.0000021627,0.0000021661,0.0000021692,0.0000021722, -0.0000021748,0.0000021768,0.0000021788,0.0000021804,0.0000021814, -0.0000021818,0.0000021815,0.0000021808,0.0000021802,0.0000021797, -0.0000021793,0.0000021789,0.0000021782,0.0000021771,0.0000021754, -0.0000021730,0.0000021701,0.0000021677,0.0000021661,0.0000021650, -0.0000021638,0.0000021620,0.0000021589,0.0000021551,0.0000021518, -0.0000021492,0.0000021471,0.0000021448,0.0000021427,0.0000021409, -0.0000021393,0.0000021373,0.0000021353,0.0000021336,0.0000021318, -0.0000021299,0.0000021280,0.0000021261,0.0000021244,0.0000021230, -0.0000021221,0.0000021213,0.0000021212,0.0000021215,0.0000021216, -0.0000021218,0.0000021220,0.0000021223,0.0000021229,0.0000021235, -0.0000021240,0.0000021243,0.0000021243,0.0000021239,0.0000021230, -0.0000021213,0.0000021187,0.0000021156,0.0000021119,0.0000021074, -0.0000021025,0.0000020978,0.0000020932,0.0000020883,0.0000020833, -0.0000020787,0.0000020754,0.0000020733,0.0000020729,0.0000020721, -0.0000020720,0.0000020720,0.0000020715,0.0000020708,0.0000020701, -0.0000020696,0.0000020700,0.0000020709,0.0000020717,0.0000020718, -0.0000020712,0.0000020706,0.0000020702,0.0000020703,0.0000020703, -0.0000020706,0.0000020711,0.0000020717,0.0000020721,0.0000020722, -0.0000020718,0.0000020712,0.0000020702,0.0000020690,0.0000020673, -0.0000020657,0.0000020644,0.0000020635,0.0000020632,0.0000020634, -0.0000020642,0.0000020656,0.0000020675,0.0000020697,0.0000020716, -0.0000020728,0.0000020734,0.0000020731,0.0000020721,0.0000020706, -0.0000020683,0.0000020652,0.0000020622,0.0000020600,0.0000020581, -0.0000020563,0.0000020548,0.0000020538,0.0000020532,0.0000020530, -0.0000020530,0.0000020533,0.0000020539,0.0000020552,0.0000020571, -0.0000020593,0.0000020619,0.0000020638,0.0000020641,0.0000020626, -0.0000020589,0.0000020538,0.0000020479,0.0000020414,0.0000020350, -0.0000020289,0.0000020232,0.0000020193,0.0000020174,0.0000020169, -0.0000020166,0.0000020161,0.0000020154,0.0000020145,0.0000020136, -0.0000020126,0.0000020120,0.0000020118,0.0000020115,0.0000020112, -0.0000020104,0.0000020091,0.0000020078,0.0000020068,0.0000020067, -0.0000020071,0.0000020074,0.0000020071,0.0000020064,0.0000020049, -0.0000020025,0.0000019994,0.0000019959,0.0000019932,0.0000019917, -0.0000019909,0.0000019899,0.0000019888,0.0000019885,0.0000019874, -0.0000019833,0.0000019776,0.0000019729,0.0000019692,0.0000019660, -0.0000019637,0.0000019612,0.0000019587,0.0000019570,0.0000019562, -0.0000019564,0.0000019570,0.0000019573,0.0000019573,0.0000019565, -0.0000019544,0.0000019526,0.0000019513,0.0000019507,0.0000019504, -0.0000019493,0.0000019481,0.0000019478,0.0000019476,0.0000019476, -0.0000019486,0.0000019504,0.0000019523,0.0000019535,0.0000019539, -0.0000019533,0.0000019529,0.0000019541,0.0000019580,0.0000019642, -0.0000019705,0.0000019762,0.0000019811,0.0000019852,0.0000019890, -0.0000019919,0.0000019937,0.0000019939,0.0000019917,0.0000019885, -0.0000019856,0.0000019837,0.0000019825,0.0000019801,0.0000019761, -0.0000019738,0.0000019744,0.0000019759,0.0000019744,0.0000019691, -0.0000019636,0.0000019604,0.0000019591,0.0000019592,0.0000019604, -0.0000019632,0.0000019679,0.0000019740,0.0000019799,0.0000019855, -0.0000019904,0.0000019941,0.0000019969,0.0000019992,0.0000020009, -0.0000020025,0.0000020041,0.0000020060,0.0000020085,0.0000020119, -0.0000020158,0.0000020197,0.0000020240,0.0000020283,0.0000020322, -0.0000020351,0.0000020366,0.0000020377,0.0000020379,0.0000020372, -0.0000020358,0.0000020342,0.0000020323,0.0000020319,0.0000020321, -0.0000020318,0.0000020318,0.0000020313,0.0000020306,0.0000020302, -0.0000020299,0.0000020303,0.0000020315,0.0000020330,0.0000020353, -0.0000020378,0.0000020407,0.0000020433,0.0000020445,0.0000020444, -0.0000020438,0.0000020428,0.0000020413,0.0000020397,0.0000020380, -0.0000020369,0.0000020359,0.0000020350,0.0000020344,0.0000020344, -0.0000020352,0.0000020376,0.0000020405,0.0000020435,0.0000020459, -0.0000020479,0.0000020497,0.0000020518,0.0000020540,0.0000020559, -0.0000020571,0.0000020582,0.0000020597,0.0000020617,0.0000020641, -0.0000020666,0.0000020688,0.0000020708,0.0000020736,0.0000020779, -0.0000020833,0.0000020886,0.0000020928,0.0000020956,0.0000020973, -0.0000020984,0.0000020993,0.0000021003,0.0000021009,0.0000021007, -0.0000021001,0.0000021002,0.0000021010,0.0000021000,0.0000020972, -0.0000020958,0.0000020920,0.0000020874,0.0000020840,0.0000020783, -0.0000020746,0.0000020708,0.0000020682,0.0000020676,0.0000020659, -0.0000020645,0.0000020645,0.0000020680,0.0000020757,0.0000020816, -0.0000020853,0.0000020922,0.0000021002,0.0000021037,0.0000021049, -0.0000021072,0.0000021075,0.0000021055,0.0000021015,0.0000020961, -0.0000020893,0.0000020826,0.0000020783,0.0000020763,0.0000020754, -0.0000020760,0.0000020779,0.0000020809,0.0000020841,0.0000020874, -0.0000020897,0.0000020903,0.0000020889,0.0000020855,0.0000020812, -0.0000020771,0.0000020731,0.0000020698,0.0000020676,0.0000020660, -0.0000020647,0.0000020631,0.0000020618,0.0000020614,0.0000020618, -0.0000020627,0.0000020640,0.0000020652,0.0000020660,0.0000020668, -0.0000020675,0.0000020677,0.0000020677,0.0000020675,0.0000020673, -0.0000020674,0.0000020677,0.0000020680,0.0000020682,0.0000020689, -0.0000020702,0.0000020722,0.0000020746,0.0000020773,0.0000020804, -0.0000020839,0.0000020880,0.0000020925,0.0000020970,0.0000021010, -0.0000021047,0.0000021079,0.0000021106,0.0000021125,0.0000021134, -0.0000021135,0.0000021129,0.0000021121,0.0000021111,0.0000021102, -0.0000021092,0.0000021079,0.0000021070,0.0000021069,0.0000021063, -0.0000021072,0.0000021104,0.0000021166,0.0000021260,0.0000021382, -0.0000021521,0.0000021666,0.0000021800,0.0000021912,0.0000022000, -0.0000022064,0.0000022108,0.0000022133,0.0000022144,0.0000022140, -0.0000022130,0.0000022111,0.0000022086,0.0000022057,0.0000022025, -0.0000021991,0.0000021951,0.0000021902,0.0000021835,0.0000021740, -0.0000021621,0.0000021498,0.0000021397,0.0000021332,0.0000021300, -0.0000021286,0.0000021278,0.0000021266,0.0000021249,0.0000021225, -0.0000021194,0.0000021156,0.0000021108,0.0000021047,0.0000020961, -0.0000020844,0.0000020711,0.0000020560,0.0000020403,0.0000020255, -0.0000020136,0.0000020060,0.0000020019,0.0000019987,0.0000019940, -0.0000019870,0.0000019792,0.0000019720,0.0000019664,0.0000019626, -0.0000019598,0.0000019583,0.0000019570,0.0000019555,0.0000019539, -0.0000019534,0.0000019553,0.0000019592,0.0000019629,0.0000019645, -0.0000019636,0.0000019615,0.0000019600,0.0000019601,0.0000019617, -0.0000019635,0.0000019645,0.0000019647,0.0000019647,0.0000019652, -0.0000019669,0.0000019693,0.0000019727,0.0000019776,0.0000019829, -0.0000019874,0.0000019916,0.0000019955,0.0000020006,0.0000020063, -0.0000020105,0.0000020122,0.0000020126,0.0000020130,0.0000020140, -0.0000020157,0.0000020177,0.0000020192,0.0000020170,0.0000020101, -0.0000020011,0.0000019946,0.0000019931,0.0000019981,0.0000020076, -0.0000020176,0.0000020251,0.0000020285,0.0000020276,0.0000020249, -0.0000020232,0.0000020242,0.0000020293,0.0000020381,0.0000020487, -0.0000020582,0.0000020646,0.0000020679,0.0000020671,0.0000020655, -0.0000020625,0.0000020594,0.0000020564,0.0000020538,0.0000020525, -0.0000020512,0.0000020525,0.0000020557,0.0000020600,0.0000020652, -0.0000020706,0.0000020750,0.0000020772,0.0000020770,0.0000020751, -0.0000020729,0.0000020709,0.0000020696,0.0000020692,0.0000020700, -0.0000020721,0.0000020754,0.0000020788,0.0000020814,0.0000020835, -0.0000020853,0.0000020867,0.0000020876,0.0000020875,0.0000020870, -0.0000020862,0.0000020852,0.0000020840,0.0000020827,0.0000020812, -0.0000020795,0.0000020772,0.0000020734,0.0000020681,0.0000020612, -0.0000020528,0.0000020440,0.0000020370,0.0000020332,0.0000020320, -0.0000020321,0.0000020328,0.0000020335,0.0000020347,0.0000020357, -0.0000020362,0.0000020364,0.0000020364,0.0000020361,0.0000020354, -0.0000020351,0.0000020353,0.0000020363,0.0000020386,0.0000020420, -0.0000020461,0.0000020512,0.0000020570,0.0000020621,0.0000020662, -0.0000020691,0.0000020702,0.0000020699,0.0000020688,0.0000020663, -0.0000020627,0.0000020584,0.0000020544,0.0000020505,0.0000020466, -0.0000020436,0.0000020413,0.0000020393,0.0000020380,0.0000020374, -0.0000020375,0.0000020387,0.0000020406,0.0000020427,0.0000020452, -0.0000020478,0.0000020498,0.0000020509,0.0000020510,0.0000020499, -0.0000020479,0.0000020449,0.0000020412,0.0000020373,0.0000020343, -0.0000020324,0.0000020303,0.0000020273,0.0000020234,0.0000020186, -0.0000020121,0.0000020044,0.0000019955,0.0000019859,0.0000019762, -0.0000019671,0.0000019591,0.0000019519,0.0000019454,0.0000019395, -0.0000019354,0.0000019329,0.0000019323,0.0000019329,0.0000019345, -0.0000019364,0.0000019387,0.0000019414,0.0000019443,0.0000019469, -0.0000019488,0.0000019500,0.0000019504,0.0000019500,0.0000019490, -0.0000019474,0.0000019455,0.0000019436,0.0000019421,0.0000019405, -0.0000019388,0.0000019369,0.0000019349,0.0000019329,0.0000019315, -0.0000019305,0.0000019296,0.0000019285,0.0000019279,0.0000019278, -0.0000019279,0.0000019283,0.0000019296,0.0000019316,0.0000019337, -0.0000019353,0.0000019360,0.0000019359,0.0000019351,0.0000019339, -0.0000019325,0.0000019309,0.0000019292,0.0000019278,0.0000019271, -0.0000019270,0.0000019271,0.0000019269,0.0000019264,0.0000019255, -0.0000019243,0.0000019227,0.0000019207,0.0000019184,0.0000019162, -0.0000019147,0.0000019138,0.0000019140,0.0000019152,0.0000019173, -0.0000019197,0.0000019221,0.0000019242,0.0000019262,0.0000019285, -0.0000019311,0.0000019341,0.0000019376,0.0000019414,0.0000019448, -0.0000019474,0.0000019490,0.0000019493,0.0000019486,0.0000019475, -0.0000019457,0.0000019446,0.0000019443,0.0000019441,0.0000019448, -0.0000019462,0.0000019484,0.0000019514,0.0000019548,0.0000019582, -0.0000019610,0.0000019632,0.0000019648,0.0000019661,0.0000019668, -0.0000019668,0.0000019662,0.0000019647,0.0000019628,0.0000019608, -0.0000019589,0.0000019570,0.0000019555,0.0000019546,0.0000019542, -0.0000019540,0.0000019542,0.0000019546,0.0000019553,0.0000019561, -0.0000019570,0.0000019578,0.0000019583,0.0000019582,0.0000019575, -0.0000019562,0.0000019545,0.0000019525,0.0000019507,0.0000019493, -0.0000019490,0.0000019496,0.0000019515,0.0000019538,0.0000019555, -0.0000019558,0.0000019551,0.0000019531,0.0000019502,0.0000019460, -0.0000019410,0.0000019362,0.0000019339,0.0000019347,0.0000019388, -0.0000019443,0.0000019481,0.0000019504,0.0000019532,0.0000019583, -0.0000019640,0.0000019653,0.0000019619,0.0000019579,0.0000019578, -0.0000019662,0.0000019828,0.0000019990,0.0000020133,0.0000020276, -0.0000020346,0.0000020322,0.0000020301,0.0000020360,0.0000020481, -0.0000020552,0.0000020556,0.0000020531,0.0000020517,0.0000020516, -0.0000020515,0.0000020512,0.0000020506,0.0000020500,0.0000020499, -0.0000020505,0.0000020518,0.0000020531,0.0000020537,0.0000020532, -0.0000020519,0.0000020493,0.0000020428,0.0000020324,0.0000020240, -0.0000020222,0.0000020235,0.0000020255,0.0000020273,0.0000020289, -0.0000020294,0.0000020290,0.0000020275,0.0000020259,0.0000020244, -0.0000020230,0.0000020226,0.0000020240,0.0000020272,0.0000020293, -0.0000020287,0.0000020258,0.0000020234,0.0000020233,0.0000020253, -0.0000020289,0.0000020326,0.0000020353,0.0000020366,0.0000020369, -0.0000020366,0.0000020359,0.0000020351,0.0000020342,0.0000020331, -0.0000020320,0.0000020309,0.0000020297,0.0000020281,0.0000020256, -0.0000020225,0.0000020191,0.0000020161,0.0000020138,0.0000020126, -0.0000020122,0.0000020121,0.0000020119,0.0000020113,0.0000020104, -0.0000020092,0.0000020078,0.0000020061,0.0000020041,0.0000020022, -0.0000020005,0.0000019993,0.0000019984,0.0000019979,0.0000019976, -0.0000019973,0.0000019969,0.0000019965,0.0000019959,0.0000019952, -0.0000019944,0.0000019934,0.0000019919,0.0000019901,0.0000019879, -0.0000019856,0.0000019831,0.0000019803,0.0000019772,0.0000019737, -0.0000019699,0.0000019658,0.0000019620,0.0000019590,0.0000019566, -0.0000019544,0.0000019528,0.0000019522,0.0000019522,0.0000019528, -0.0000019538,0.0000019549,0.0000019561,0.0000019572,0.0000019583, -0.0000019596,0.0000019611,0.0000019629,0.0000019649,0.0000019671, -0.0000019694,0.0000019717,0.0000019737,0.0000019755,0.0000019769, -0.0000019777,0.0000019778,0.0000019776,0.0000019771,0.0000019759, -0.0000019748,0.0000019739,0.0000019733,0.0000019730,0.0000019729, -0.0000019727,0.0000019723,0.0000019722,0.0000019725,0.0000019730, -0.0000019733,0.0000019732,0.0000019714,0.0000019677,0.0000019636, -0.0000019605,0.0000019585,0.0000019562,0.0000019523,0.0000019483, -0.0000019461,0.0000019457,0.0000019458,0.0000019463,0.0000019464, -0.0000019459,0.0000019464,0.0000019487,0.0000019523,0.0000019568, -0.0000019509,0.0000019551,0.0000019591,0.0000019625,0.0000019650, -0.0000019672,0.0000019700,0.0000019734,0.0000019768,0.0000019788, -0.0000019805,0.0000019812,0.0000019814,0.0000019822,0.0000019829, -0.0000019844,0.0000019860,0.0000019875,0.0000019893,0.0000019912, -0.0000019928,0.0000019941,0.0000019955,0.0000019966,0.0000019981, -0.0000020003,0.0000020021,0.0000020037,0.0000020047,0.0000020045, -0.0000020040,0.0000020029,0.0000020014,0.0000019999,0.0000019985, -0.0000019972,0.0000019959,0.0000019948,0.0000019942,0.0000019940, -0.0000019945,0.0000019962,0.0000019987,0.0000020016,0.0000020060, -0.0000020111,0.0000020159,0.0000020202,0.0000020240,0.0000020272, -0.0000020301,0.0000020328,0.0000020347,0.0000020360,0.0000020366, -0.0000020363,0.0000020351,0.0000020333,0.0000020312,0.0000020284, -0.0000020248,0.0000020207,0.0000020170,0.0000020137,0.0000020099, -0.0000020058,0.0000020017,0.0000019984,0.0000019961,0.0000019951, -0.0000019950,0.0000019951,0.0000019954,0.0000019959,0.0000019967, -0.0000019980,0.0000019988,0.0000019986,0.0000019983,0.0000019977, -0.0000019973,0.0000019980,0.0000019996,0.0000020011,0.0000020023, -0.0000020035,0.0000020049,0.0000020059,0.0000020075,0.0000020098, -0.0000020120,0.0000020137,0.0000020152,0.0000020168,0.0000020185, -0.0000020203,0.0000020219,0.0000020229,0.0000020236,0.0000020242, -0.0000020252,0.0000020263,0.0000020273,0.0000020288,0.0000020309, -0.0000020326,0.0000020337,0.0000020346,0.0000020358,0.0000020365, -0.0000020364,0.0000020354,0.0000020342,0.0000020330,0.0000020317, -0.0000020306,0.0000020304,0.0000020308,0.0000020312,0.0000020317, -0.0000020319,0.0000020321,0.0000020327,0.0000020332,0.0000020339, -0.0000020349,0.0000020361,0.0000020379,0.0000020404,0.0000020431, -0.0000020454,0.0000020475,0.0000020502,0.0000020536,0.0000020575, -0.0000020612,0.0000020644,0.0000020671,0.0000020711,0.0000020764, -0.0000020811,0.0000020854,0.0000020891,0.0000020913,0.0000020912, -0.0000020879,0.0000020822,0.0000020773,0.0000020725,0.0000020677, -0.0000020640,0.0000020602,0.0000020560,0.0000020526,0.0000020505, -0.0000020497,0.0000020506,0.0000020530,0.0000020551,0.0000020567, -0.0000020588,0.0000020611,0.0000020635,0.0000020662,0.0000020694, -0.0000020722,0.0000020735,0.0000020735,0.0000020723,0.0000020705, -0.0000020686,0.0000020675,0.0000020680,0.0000020707,0.0000020747, -0.0000020793,0.0000020841,0.0000020886,0.0000020920,0.0000020942, -0.0000020954,0.0000020958,0.0000020959,0.0000020955,0.0000020950, -0.0000020947,0.0000020946,0.0000020947,0.0000020952,0.0000020962, -0.0000020979,0.0000021002,0.0000021031,0.0000021069,0.0000021111, -0.0000021152,0.0000021192,0.0000021227,0.0000021257,0.0000021282, -0.0000021302,0.0000021321,0.0000021336,0.0000021349,0.0000021354, -0.0000021350,0.0000021337,0.0000021320,0.0000021298,0.0000021272, -0.0000021244,0.0000021215,0.0000021187,0.0000021164,0.0000021145, -0.0000021132,0.0000021122,0.0000021116,0.0000021112,0.0000021110, -0.0000021110,0.0000021113,0.0000021120,0.0000021133,0.0000021152, -0.0000021175,0.0000021203,0.0000021239,0.0000021280,0.0000021322, -0.0000021365,0.0000021408,0.0000021448,0.0000021479,0.0000021499, -0.0000021506,0.0000021502,0.0000021492,0.0000021479,0.0000021462, -0.0000021445,0.0000021431,0.0000021419,0.0000021409,0.0000021401, -0.0000021394,0.0000021388,0.0000021379,0.0000021370,0.0000021363, -0.0000021359,0.0000021356,0.0000021355,0.0000021357,0.0000021363, -0.0000021374,0.0000021388,0.0000021402,0.0000021414,0.0000021426, -0.0000021435,0.0000021444,0.0000021458,0.0000021481,0.0000021507, -0.0000021521,0.0000021528,0.0000021529,0.0000021524,0.0000021518, -0.0000021512,0.0000021498,0.0000021470,0.0000021425,0.0000021368, -0.0000021317,0.0000021284,0.0000021246,0.0000021187,0.0000021151, -0.0000021152,0.0000021199,0.0000021326,0.0000021422,0.0000021488, -0.0000021559,0.0000021638,0.0000021705,0.0000021718,0.0000021677, -0.0000021625,0.0000021601,0.0000021590,0.0000021568,0.0000021521, -0.0000021437,0.0000021343,0.0000021284,0.0000021247,0.0000021207, -0.0000021155,0.0000021094,0.0000021043,0.0000021012,0.0000020996, -0.0000020992,0.0000021000,0.0000021019,0.0000021037,0.0000021046, -0.0000021044,0.0000021036,0.0000021021,0.0000020998,0.0000020963, -0.0000020916,0.0000020862,0.0000020810,0.0000020752,0.0000020685, -0.0000020622,0.0000020581,0.0000020576,0.0000020598,0.0000020628, -0.0000020655,0.0000020684,0.0000020707,0.0000020710,0.0000020693, -0.0000020661,0.0000020621,0.0000020568,0.0000020496,0.0000020414, -0.0000020334,0.0000020268,0.0000020238,0.0000020242,0.0000020273, -0.0000020298,0.0000020326,0.0000020395,0.0000020478,0.0000020517, -0.0000020501,0.0000020432,0.0000020344,0.0000020281,0.0000020272, -0.0000020205,0.0000020084,0.0000020036,0.0000020034,0.0000020051, -0.0000020112,0.0000020243,0.0000020340,0.0000020337,0.0000020314, -0.0000020344,0.0000020422,0.0000020513,0.0000020614,0.0000020714, -0.0000020824,0.0000020963,0.0000021065,0.0000021113,0.0000021301, -0.0000021430,0.0000021463,0.0000021580,0.0000021620,0.0000021620, -0.0000021658,0.0000021708,0.0000021681,0.0000021675,0.0000021778, -0.0000021844,0.0000021819,0.0000021787,0.0000021760,0.0000021805, -0.0000021861,0.0000021867,0.0000021911,0.0000022013,0.0000022058, -0.0000022077,0.0000022078,0.0000022047,0.0000022008,0.0000021990, -0.0000022032,0.0000022106,0.0000022169,0.0000022222,0.0000022264, -0.0000022294,0.0000022312,0.0000022312,0.0000022294,0.0000022242, -0.0000022163,0.0000022052,0.0000021931,0.0000021858,0.0000021862, -0.0000021889,0.0000021915,0.0000021926,0.0000021908,0.0000021862, -0.0000021782,0.0000021674,0.0000021571,0.0000021513,0.0000021498, -0.0000021496,0.0000021493,0.0000021484,0.0000021467,0.0000021452, -0.0000021437,0.0000021417,0.0000021409,0.0000021408,0.0000021409, -0.0000021408,0.0000021407,0.0000021416,0.0000021429,0.0000021429, -0.0000021415,0.0000021387,0.0000021333,0.0000021245,0.0000021130, -0.0000021015,0.0000020937,0.0000020881,0.0000020829,0.0000020798, -0.0000020785,0.0000020772,0.0000020767,0.0000020755,0.0000020743, -0.0000020716,0.0000020705,0.0000020701,0.0000020708,0.0000020714, -0.0000020704,0.0000020701,0.0000020726,0.0000020754,0.0000020775, -0.0000020787,0.0000020786,0.0000020776,0.0000020756,0.0000020738, -0.0000020725,0.0000020714,0.0000020715,0.0000020713,0.0000020727, -0.0000020755,0.0000020800,0.0000020857,0.0000020927,0.0000021003, -0.0000021065,0.0000021107,0.0000021136,0.0000021155,0.0000021174, -0.0000021193,0.0000021211,0.0000021232,0.0000021265,0.0000021300, -0.0000021332,0.0000021365,0.0000021397,0.0000021422,0.0000021442, -0.0000021454,0.0000021457,0.0000021456,0.0000021455,0.0000021448, -0.0000021436,0.0000021428,0.0000021420,0.0000021420,0.0000021423, -0.0000021431,0.0000021449,0.0000021464,0.0000021475,0.0000021481, -0.0000021479,0.0000021468,0.0000021447,0.0000021424,0.0000021414, -0.0000021427,0.0000021445,0.0000021459,0.0000021467,0.0000021466, -0.0000021460,0.0000021450,0.0000021438,0.0000021417,0.0000021394, -0.0000021375,0.0000021362,0.0000021351,0.0000021341,0.0000021343, -0.0000021344,0.0000021342,0.0000021345,0.0000021349,0.0000021349, -0.0000021343,0.0000021332,0.0000021326,0.0000021327,0.0000021324, -0.0000021326,0.0000021341,0.0000021356,0.0000021369,0.0000021380, -0.0000021392,0.0000021394,0.0000021383,0.0000021375,0.0000021363, -0.0000021347,0.0000021331,0.0000021318,0.0000021309,0.0000021310, -0.0000021327,0.0000021347,0.0000021371,0.0000021397,0.0000021418, -0.0000021439,0.0000021444,0.0000021448,0.0000021457,0.0000021484, -0.0000021537,0.0000021603,0.0000021670,0.0000021734,0.0000021794, -0.0000021844,0.0000021886,0.0000021920,0.0000021949,0.0000021973, -0.0000021994,0.0000022010,0.0000022019,0.0000022028,0.0000022036, -0.0000022033,0.0000022030,0.0000022034,0.0000022032,0.0000022031, -0.0000022023,0.0000022012,0.0000022010,0.0000022013,0.0000022010, -0.0000022008,0.0000022011,0.0000022013,0.0000022018,0.0000022017, -0.0000022016,0.0000022012,0.0000022000,0.0000021979,0.0000021955, -0.0000021927,0.0000021901,0.0000021886,0.0000021885,0.0000021898, -0.0000021921,0.0000021953,0.0000021987,0.0000022019,0.0000022044, -0.0000022059,0.0000022066,0.0000022065,0.0000022058,0.0000022060, -0.0000022062,0.0000022068,0.0000022071,0.0000022068,0.0000022053, -0.0000022026,0.0000021987,0.0000021938,0.0000021887,0.0000021841, -0.0000021808,0.0000021787,0.0000021774,0.0000021758,0.0000021743, -0.0000021730,0.0000021723,0.0000021722,0.0000021727,0.0000021739, -0.0000021752,0.0000021759,0.0000021755,0.0000021745,0.0000021724, -0.0000021696,0.0000021664,0.0000021632,0.0000021604,0.0000021582, -0.0000021567,0.0000021558,0.0000021558,0.0000021568,0.0000021591, -0.0000021622,0.0000021657,0.0000021695,0.0000021731,0.0000021764, -0.0000021791,0.0000021812,0.0000021824,0.0000021829,0.0000021826, -0.0000021818,0.0000021810,0.0000021805,0.0000021804,0.0000021806, -0.0000021803,0.0000021796,0.0000021781,0.0000021760,0.0000021739, -0.0000021724,0.0000021714,0.0000021706,0.0000021697,0.0000021680, -0.0000021652,0.0000021618,0.0000021585,0.0000021563,0.0000021547, -0.0000021533,0.0000021522,0.0000021516,0.0000021510,0.0000021499, -0.0000021487,0.0000021473,0.0000021457,0.0000021435,0.0000021407, -0.0000021378,0.0000021351,0.0000021327,0.0000021310,0.0000021302, -0.0000021299,0.0000021298,0.0000021298,0.0000021298,0.0000021297, -0.0000021297,0.0000021300,0.0000021304,0.0000021308,0.0000021312, -0.0000021314,0.0000021317,0.0000021317,0.0000021308,0.0000021291, -0.0000021267,0.0000021232,0.0000021188,0.0000021139,0.0000021088, -0.0000021033,0.0000020974,0.0000020914,0.0000020856,0.0000020808, -0.0000020774,0.0000020752,0.0000020738,0.0000020723,0.0000020702, -0.0000020687,0.0000020658,0.0000020643,0.0000020636,0.0000020642, -0.0000020652,0.0000020664,0.0000020675,0.0000020686,0.0000020695, -0.0000020704,0.0000020709,0.0000020710,0.0000020711,0.0000020713, -0.0000020716,0.0000020716,0.0000020714,0.0000020709,0.0000020701, -0.0000020690,0.0000020676,0.0000020661,0.0000020647,0.0000020636, -0.0000020631,0.0000020633,0.0000020640,0.0000020652,0.0000020669, -0.0000020690,0.0000020713,0.0000020731,0.0000020745,0.0000020754, -0.0000020754,0.0000020744,0.0000020732,0.0000020715,0.0000020695, -0.0000020678,0.0000020660,0.0000020639,0.0000020617,0.0000020598, -0.0000020583,0.0000020572,0.0000020567,0.0000020567,0.0000020569, -0.0000020575,0.0000020587,0.0000020609,0.0000020634,0.0000020654, -0.0000020663,0.0000020654,0.0000020622,0.0000020572,0.0000020512, -0.0000020447,0.0000020381,0.0000020314,0.0000020252,0.0000020208, -0.0000020185,0.0000020179,0.0000020181,0.0000020190,0.0000020197, -0.0000020198,0.0000020195,0.0000020190,0.0000020186,0.0000020185, -0.0000020186,0.0000020187,0.0000020185,0.0000020179,0.0000020168, -0.0000020152,0.0000020134,0.0000020122,0.0000020113,0.0000020106, -0.0000020094,0.0000020074,0.0000020046,0.0000020016,0.0000019987, -0.0000019965,0.0000019950,0.0000019937,0.0000019922,0.0000019907, -0.0000019901,0.0000019890,0.0000019849,0.0000019788,0.0000019736, -0.0000019698,0.0000019664,0.0000019636,0.0000019610,0.0000019590, -0.0000019571,0.0000019550,0.0000019530,0.0000019521,0.0000019513, -0.0000019505,0.0000019497,0.0000019485,0.0000019478,0.0000019473, -0.0000019468,0.0000019463,0.0000019456,0.0000019445,0.0000019440, -0.0000019444,0.0000019451,0.0000019468,0.0000019496,0.0000019522, -0.0000019534,0.0000019533,0.0000019524,0.0000019521,0.0000019536, -0.0000019575,0.0000019639,0.0000019713,0.0000019776,0.0000019833, -0.0000019879,0.0000019915,0.0000019938,0.0000019951,0.0000019945, -0.0000019918,0.0000019883,0.0000019851,0.0000019827,0.0000019807, -0.0000019778,0.0000019750,0.0000019739,0.0000019748,0.0000019756, -0.0000019737,0.0000019679,0.0000019618,0.0000019578,0.0000019558, -0.0000019546,0.0000019541,0.0000019555,0.0000019595,0.0000019652, -0.0000019705,0.0000019753,0.0000019795,0.0000019832,0.0000019865, -0.0000019892,0.0000019911,0.0000019929,0.0000019945,0.0000019961, -0.0000019982,0.0000020012,0.0000020049,0.0000020090,0.0000020137, -0.0000020190,0.0000020242,0.0000020290,0.0000020330,0.0000020362, -0.0000020390,0.0000020403,0.0000020411,0.0000020408,0.0000020398, -0.0000020387,0.0000020376,0.0000020366,0.0000020359,0.0000020348, -0.0000020335,0.0000020321,0.0000020306,0.0000020296,0.0000020285, -0.0000020284,0.0000020298,0.0000020325,0.0000020367,0.0000020420, -0.0000020458,0.0000020494,0.0000020516,0.0000020515,0.0000020502, -0.0000020482,0.0000020459,0.0000020436,0.0000020417,0.0000020398, -0.0000020386,0.0000020383,0.0000020390,0.0000020411,0.0000020443, -0.0000020477,0.0000020507,0.0000020535,0.0000020559,0.0000020583, -0.0000020604,0.0000020623,0.0000020641,0.0000020662,0.0000020684, -0.0000020703,0.0000020715,0.0000020722,0.0000020733,0.0000020757, -0.0000020799,0.0000020849,0.0000020895,0.0000020927,0.0000020949, -0.0000020965,0.0000020977,0.0000020985,0.0000020993,0.0000021005, -0.0000021016,0.0000021019,0.0000021018,0.0000021020,0.0000021026, -0.0000021013,0.0000020988,0.0000020975,0.0000020932,0.0000020888, -0.0000020851,0.0000020794,0.0000020754,0.0000020716,0.0000020700, -0.0000020699,0.0000020686,0.0000020674,0.0000020672,0.0000020700, -0.0000020766,0.0000020817,0.0000020859,0.0000020930,0.0000021000, -0.0000021025,0.0000021034,0.0000021051,0.0000021054,0.0000021035, -0.0000020991,0.0000020936,0.0000020877,0.0000020824,0.0000020783, -0.0000020752,0.0000020727,0.0000020719,0.0000020726,0.0000020742, -0.0000020764,0.0000020788,0.0000020799,0.0000020791,0.0000020762, -0.0000020727,0.0000020695,0.0000020666,0.0000020641,0.0000020621, -0.0000020604,0.0000020589,0.0000020574,0.0000020560,0.0000020554, -0.0000020555,0.0000020561,0.0000020569,0.0000020575,0.0000020578, -0.0000020578,0.0000020577,0.0000020574,0.0000020565,0.0000020554, -0.0000020541,0.0000020526,0.0000020515,0.0000020510,0.0000020509, -0.0000020513,0.0000020521,0.0000020535,0.0000020554,0.0000020576, -0.0000020603,0.0000020634,0.0000020670,0.0000020713,0.0000020760, -0.0000020808,0.0000020853,0.0000020896,0.0000020937,0.0000020975, -0.0000021010,0.0000021039,0.0000021060,0.0000021071,0.0000021076, -0.0000021078,0.0000021076,0.0000021070,0.0000021063,0.0000021059, -0.0000021055,0.0000021049,0.0000021041,0.0000021037,0.0000021047, -0.0000021080,0.0000021140,0.0000021232,0.0000021353,0.0000021492, -0.0000021635,0.0000021765,0.0000021870,0.0000021949,0.0000022002, -0.0000022034,0.0000022049,0.0000022051,0.0000022046,0.0000022035, -0.0000022018,0.0000021995,0.0000021963,0.0000021917,0.0000021844, -0.0000021738,0.0000021608,0.0000021473,0.0000021360,0.0000021282, -0.0000021237,0.0000021211,0.0000021193,0.0000021179,0.0000021163, -0.0000021143,0.0000021117,0.0000021083,0.0000021042,0.0000020993, -0.0000020934,0.0000020858,0.0000020759,0.0000020649,0.0000020517, -0.0000020376,0.0000020239,0.0000020121,0.0000020039,0.0000019995, -0.0000019968,0.0000019932,0.0000019872,0.0000019796,0.0000019719, -0.0000019650,0.0000019599,0.0000019565,0.0000019547,0.0000019536, -0.0000019522,0.0000019506,0.0000019499,0.0000019512,0.0000019546, -0.0000019584,0.0000019608,0.0000019611,0.0000019596,0.0000019579, -0.0000019574,0.0000019583,0.0000019599,0.0000019613,0.0000019622, -0.0000019629,0.0000019638,0.0000019652,0.0000019672,0.0000019700, -0.0000019740,0.0000019791,0.0000019845,0.0000019895,0.0000019936, -0.0000019984,0.0000020041,0.0000020092,0.0000020123,0.0000020133, -0.0000020140,0.0000020149,0.0000020163,0.0000020185,0.0000020197, -0.0000020191,0.0000020142,0.0000020051,0.0000019955,0.0000019913, -0.0000019899,0.0000019960,0.0000020050,0.0000020137,0.0000020197, -0.0000020220,0.0000020211,0.0000020187,0.0000020170,0.0000020177, -0.0000020226,0.0000020316,0.0000020427,0.0000020535,0.0000020616, -0.0000020657,0.0000020658,0.0000020650,0.0000020628,0.0000020600, -0.0000020563,0.0000020526,0.0000020496,0.0000020484,0.0000020482, -0.0000020498,0.0000020532,0.0000020576,0.0000020621,0.0000020658, -0.0000020677,0.0000020677,0.0000020666,0.0000020654,0.0000020643, -0.0000020641,0.0000020653,0.0000020684,0.0000020720,0.0000020751, -0.0000020774,0.0000020792,0.0000020808,0.0000020823,0.0000020831, -0.0000020833,0.0000020831,0.0000020827,0.0000020823,0.0000020815, -0.0000020800,0.0000020774,0.0000020735,0.0000020675,0.0000020597, -0.0000020505,0.0000020411,0.0000020333,0.0000020283,0.0000020262, -0.0000020262,0.0000020272,0.0000020286,0.0000020302,0.0000020319, -0.0000020336,0.0000020350,0.0000020356,0.0000020355,0.0000020347, -0.0000020326,0.0000020305,0.0000020281,0.0000020260,0.0000020250, -0.0000020247,0.0000020257,0.0000020286,0.0000020334,0.0000020391, -0.0000020446,0.0000020495,0.0000020526,0.0000020542,0.0000020546, -0.0000020531,0.0000020499,0.0000020458,0.0000020419,0.0000020381, -0.0000020341,0.0000020303,0.0000020270,0.0000020238,0.0000020209, -0.0000020189,0.0000020183,0.0000020189,0.0000020209,0.0000020235, -0.0000020266,0.0000020297,0.0000020329,0.0000020359,0.0000020380, -0.0000020389,0.0000020390,0.0000020382,0.0000020357,0.0000020319, -0.0000020278,0.0000020246,0.0000020222,0.0000020199,0.0000020170, -0.0000020133,0.0000020081,0.0000020014,0.0000019935,0.0000019851, -0.0000019764,0.0000019683,0.0000019611,0.0000019545,0.0000019481, -0.0000019420,0.0000019367,0.0000019331,0.0000019311,0.0000019300, -0.0000019299,0.0000019308,0.0000019321,0.0000019337,0.0000019355, -0.0000019371,0.0000019384,0.0000019390,0.0000019389,0.0000019382, -0.0000019375,0.0000019365,0.0000019351,0.0000019338,0.0000019329, -0.0000019322,0.0000019313,0.0000019298,0.0000019280,0.0000019266, -0.0000019256,0.0000019246,0.0000019233,0.0000019219,0.0000019207, -0.0000019198,0.0000019191,0.0000019190,0.0000019200,0.0000019221, -0.0000019247,0.0000019270,0.0000019287,0.0000019298,0.0000019299, -0.0000019294,0.0000019284,0.0000019272,0.0000019257,0.0000019243, -0.0000019233,0.0000019228,0.0000019226,0.0000019224,0.0000019217, -0.0000019207,0.0000019195,0.0000019181,0.0000019165,0.0000019144, -0.0000019122,0.0000019102,0.0000019087,0.0000019077,0.0000019075, -0.0000019083,0.0000019098,0.0000019117,0.0000019139,0.0000019162, -0.0000019188,0.0000019214,0.0000019241,0.0000019272,0.0000019312, -0.0000019357,0.0000019402,0.0000019439,0.0000019466,0.0000019478, -0.0000019477,0.0000019466,0.0000019456,0.0000019442,0.0000019432, -0.0000019427,0.0000019426,0.0000019432,0.0000019446,0.0000019470, -0.0000019500,0.0000019535,0.0000019567,0.0000019596,0.0000019622, -0.0000019645,0.0000019659,0.0000019664,0.0000019661,0.0000019653, -0.0000019642,0.0000019623,0.0000019600,0.0000019577,0.0000019557, -0.0000019544,0.0000019535,0.0000019532,0.0000019535,0.0000019542, -0.0000019552,0.0000019563,0.0000019574,0.0000019581,0.0000019583, -0.0000019580,0.0000019573,0.0000019562,0.0000019547,0.0000019530, -0.0000019514,0.0000019505,0.0000019503,0.0000019512,0.0000019528, -0.0000019546,0.0000019556,0.0000019555,0.0000019547,0.0000019530, -0.0000019498,0.0000019450,0.0000019392,0.0000019348,0.0000019336, -0.0000019356,0.0000019406,0.0000019456,0.0000019486,0.0000019509, -0.0000019548,0.0000019609,0.0000019654,0.0000019644,0.0000019595, -0.0000019573,0.0000019608,0.0000019735,0.0000019903,0.0000020044, -0.0000020179,0.0000020304,0.0000020341,0.0000020312,0.0000020305, -0.0000020366,0.0000020477,0.0000020540,0.0000020548,0.0000020529, -0.0000020511,0.0000020498,0.0000020490,0.0000020485,0.0000020480, -0.0000020473,0.0000020473,0.0000020484,0.0000020509,0.0000020535, -0.0000020548,0.0000020544,0.0000020524,0.0000020490,0.0000020426, -0.0000020333,0.0000020258,0.0000020243,0.0000020254,0.0000020269, -0.0000020281,0.0000020289,0.0000020288,0.0000020278,0.0000020263, -0.0000020248,0.0000020236,0.0000020232,0.0000020244,0.0000020278, -0.0000020305,0.0000020303,0.0000020275,0.0000020248,0.0000020242, -0.0000020257,0.0000020287,0.0000020324,0.0000020354,0.0000020374, -0.0000020384,0.0000020386,0.0000020382,0.0000020371,0.0000020359, -0.0000020344,0.0000020328,0.0000020315,0.0000020305,0.0000020293, -0.0000020275,0.0000020249,0.0000020214,0.0000020175,0.0000020140, -0.0000020116,0.0000020104,0.0000020099,0.0000020097,0.0000020094, -0.0000020090,0.0000020087,0.0000020082,0.0000020073,0.0000020059, -0.0000020041,0.0000020022,0.0000020005,0.0000019991,0.0000019981, -0.0000019975,0.0000019971,0.0000019968,0.0000019965,0.0000019962, -0.0000019959,0.0000019955,0.0000019952,0.0000019945,0.0000019934, -0.0000019918,0.0000019897,0.0000019872,0.0000019842,0.0000019808, -0.0000019768,0.0000019724,0.0000019677,0.0000019631,0.0000019590, -0.0000019555,0.0000019525,0.0000019503,0.0000019488,0.0000019481, -0.0000019479,0.0000019479,0.0000019482,0.0000019488,0.0000019496, -0.0000019505,0.0000019515,0.0000019527,0.0000019542,0.0000019562, -0.0000019587,0.0000019614,0.0000019643,0.0000019673,0.0000019703, -0.0000019732,0.0000019755,0.0000019772,0.0000019784,0.0000019789, -0.0000019790,0.0000019791,0.0000019786,0.0000019786,0.0000019792, -0.0000019800,0.0000019804,0.0000019802,0.0000019797,0.0000019789, -0.0000019781,0.0000019777,0.0000019775,0.0000019771,0.0000019748, -0.0000019702,0.0000019647,0.0000019605,0.0000019581,0.0000019562, -0.0000019528,0.0000019491,0.0000019466,0.0000019452,0.0000019444, -0.0000019441,0.0000019441,0.0000019445,0.0000019456,0.0000019478, -0.0000019444,0.0000019465,0.0000019500,0.0000019538,0.0000019575, -0.0000019610,0.0000019642,0.0000019676,0.0000019710,0.0000019746, -0.0000019781,0.0000019812,0.0000019830,0.0000019844,0.0000019847, -0.0000019848,0.0000019850,0.0000019846,0.0000019843,0.0000019843, -0.0000019846,0.0000019855,0.0000019867,0.0000019879,0.0000019888, -0.0000019903,0.0000019922,0.0000019943,0.0000019967,0.0000019987, -0.0000020004,0.0000020013,0.0000020011,0.0000019998,0.0000019986, -0.0000019967,0.0000019948,0.0000019931,0.0000019918,0.0000019910, -0.0000019913,0.0000019926,0.0000019949,0.0000019978,0.0000020012, -0.0000020048,0.0000020085,0.0000020120,0.0000020149,0.0000020172, -0.0000020188,0.0000020204,0.0000020215,0.0000020222,0.0000020227, -0.0000020225,0.0000020215,0.0000020202,0.0000020184,0.0000020163, -0.0000020136,0.0000020106,0.0000020078,0.0000020052,0.0000020017, -0.0000019976,0.0000019938,0.0000019906,0.0000019885,0.0000019874, -0.0000019870,0.0000019870,0.0000019868,0.0000019867,0.0000019869, -0.0000019875,0.0000019880,0.0000019883,0.0000019881,0.0000019876, -0.0000019871,0.0000019876,0.0000019890,0.0000019904,0.0000019915, -0.0000019925,0.0000019939,0.0000019954,0.0000019974,0.0000019998, -0.0000020021,0.0000020043,0.0000020064,0.0000020086,0.0000020106, -0.0000020125,0.0000020142,0.0000020155,0.0000020161,0.0000020159, -0.0000020156,0.0000020159,0.0000020162,0.0000020171,0.0000020187, -0.0000020209,0.0000020227,0.0000020243,0.0000020264,0.0000020280, -0.0000020287,0.0000020286,0.0000020277,0.0000020266,0.0000020253, -0.0000020240,0.0000020232,0.0000020231,0.0000020232,0.0000020233, -0.0000020232,0.0000020235,0.0000020240,0.0000020247,0.0000020255, -0.0000020263,0.0000020273,0.0000020288,0.0000020309,0.0000020333, -0.0000020361,0.0000020398,0.0000020440,0.0000020491,0.0000020542, -0.0000020585,0.0000020622,0.0000020657,0.0000020702,0.0000020753, -0.0000020800,0.0000020840,0.0000020871,0.0000020892,0.0000020892, -0.0000020862,0.0000020811,0.0000020763,0.0000020709,0.0000020658, -0.0000020619,0.0000020578,0.0000020531,0.0000020493,0.0000020467, -0.0000020457,0.0000020464,0.0000020484,0.0000020499,0.0000020514, -0.0000020535,0.0000020560,0.0000020591,0.0000020626,0.0000020662, -0.0000020693,0.0000020710,0.0000020714,0.0000020709,0.0000020697, -0.0000020680,0.0000020664,0.0000020660,0.0000020672,0.0000020696, -0.0000020730,0.0000020771,0.0000020815,0.0000020857,0.0000020890, -0.0000020915,0.0000020933,0.0000020941,0.0000020943,0.0000020939, -0.0000020932,0.0000020926,0.0000020924,0.0000020926,0.0000020934, -0.0000020949,0.0000020970,0.0000020996,0.0000021032,0.0000021075, -0.0000021117,0.0000021158,0.0000021194,0.0000021228,0.0000021256, -0.0000021277,0.0000021295,0.0000021309,0.0000021319,0.0000021323, -0.0000021321,0.0000021315,0.0000021305,0.0000021291,0.0000021273, -0.0000021254,0.0000021232,0.0000021208,0.0000021184,0.0000021157, -0.0000021134,0.0000021117,0.0000021105,0.0000021094,0.0000021087, -0.0000021083,0.0000021081,0.0000021082,0.0000021091,0.0000021105, -0.0000021120,0.0000021138,0.0000021160,0.0000021186,0.0000021217, -0.0000021250,0.0000021286,0.0000021323,0.0000021355,0.0000021383, -0.0000021404,0.0000021416,0.0000021421,0.0000021418,0.0000021407, -0.0000021390,0.0000021372,0.0000021354,0.0000021339,0.0000021328, -0.0000021321,0.0000021317,0.0000021315,0.0000021316,0.0000021320, -0.0000021325,0.0000021328,0.0000021331,0.0000021337,0.0000021345, -0.0000021357,0.0000021371,0.0000021386,0.0000021401,0.0000021413, -0.0000021422,0.0000021430,0.0000021443,0.0000021462,0.0000021482, -0.0000021494,0.0000021500,0.0000021501,0.0000021498,0.0000021494, -0.0000021487,0.0000021470,0.0000021437,0.0000021389,0.0000021333, -0.0000021284,0.0000021250,0.0000021205,0.0000021149,0.0000021126, -0.0000021126,0.0000021188,0.0000021324,0.0000021415,0.0000021489, -0.0000021576,0.0000021660,0.0000021719,0.0000021729,0.0000021698, -0.0000021657,0.0000021626,0.0000021588,0.0000021539,0.0000021460, -0.0000021355,0.0000021279,0.0000021234,0.0000021191,0.0000021134, -0.0000021068,0.0000021014,0.0000020983,0.0000020968,0.0000020961, -0.0000020960,0.0000020969,0.0000020986,0.0000021002,0.0000021008, -0.0000021004,0.0000020995,0.0000020982,0.0000020956,0.0000020916, -0.0000020868,0.0000020816,0.0000020760,0.0000020700,0.0000020633, -0.0000020569,0.0000020537,0.0000020540,0.0000020567,0.0000020601, -0.0000020630,0.0000020659,0.0000020674,0.0000020668,0.0000020647, -0.0000020617,0.0000020580,0.0000020523,0.0000020447,0.0000020364, -0.0000020287,0.0000020236,0.0000020214,0.0000020226,0.0000020266, -0.0000020302,0.0000020351,0.0000020431,0.0000020496,0.0000020512, -0.0000020482,0.0000020406,0.0000020325,0.0000020291,0.0000020273, -0.0000020167,0.0000020067,0.0000020038,0.0000020037,0.0000020066, -0.0000020170,0.0000020302,0.0000020336,0.0000020302,0.0000020297, -0.0000020353,0.0000020451,0.0000020572,0.0000020691,0.0000020789, -0.0000020904,0.0000021015,0.0000021069,0.0000021236,0.0000021395, -0.0000021433,0.0000021552,0.0000021630,0.0000021635,0.0000021655, -0.0000021709,0.0000021704,0.0000021688,0.0000021760,0.0000021850, -0.0000021847,0.0000021823,0.0000021787,0.0000021794,0.0000021867, -0.0000021891,0.0000021898,0.0000021970,0.0000022050,0.0000022079, -0.0000022090,0.0000022080,0.0000022043,0.0000021995,0.0000021976, -0.0000021998,0.0000022053,0.0000022124,0.0000022189,0.0000022234, -0.0000022265,0.0000022265,0.0000022242,0.0000022174,0.0000022079, -0.0000021965,0.0000021865,0.0000021818,0.0000021826,0.0000021867, -0.0000021898,0.0000021910,0.0000021896,0.0000021840,0.0000021739, -0.0000021626,0.0000021541,0.0000021512,0.0000021515,0.0000021526, -0.0000021531,0.0000021525,0.0000021503,0.0000021477,0.0000021462, -0.0000021440,0.0000021429,0.0000021424,0.0000021419,0.0000021413, -0.0000021412,0.0000021422,0.0000021436,0.0000021443,0.0000021442, -0.0000021429,0.0000021395,0.0000021335,0.0000021239,0.0000021121, -0.0000021023,0.0000020947,0.0000020888,0.0000020856,0.0000020836, -0.0000020810,0.0000020788,0.0000020769,0.0000020748,0.0000020722, -0.0000020710,0.0000020705,0.0000020707,0.0000020711,0.0000020705, -0.0000020703,0.0000020727,0.0000020755,0.0000020778,0.0000020791, -0.0000020798,0.0000020794,0.0000020784,0.0000020771,0.0000020760, -0.0000020748,0.0000020737,0.0000020723,0.0000020722,0.0000020727, -0.0000020733,0.0000020744,0.0000020773,0.0000020816,0.0000020863, -0.0000020911,0.0000020956,0.0000020998,0.0000021035,0.0000021062, -0.0000021079,0.0000021093,0.0000021116,0.0000021147,0.0000021181, -0.0000021219,0.0000021263,0.0000021303,0.0000021341,0.0000021374, -0.0000021399,0.0000021418,0.0000021433,0.0000021437,0.0000021435, -0.0000021426,0.0000021418,0.0000021417,0.0000021415,0.0000021421, -0.0000021433,0.0000021442,0.0000021449,0.0000021449,0.0000021439, -0.0000021421,0.0000021393,0.0000021370,0.0000021365,0.0000021378, -0.0000021395,0.0000021409,0.0000021414,0.0000021413,0.0000021408, -0.0000021397,0.0000021381,0.0000021364,0.0000021347,0.0000021332, -0.0000021319,0.0000021307,0.0000021302,0.0000021305,0.0000021307, -0.0000021308,0.0000021311,0.0000021315,0.0000021317,0.0000021315, -0.0000021305,0.0000021295,0.0000021289,0.0000021282,0.0000021277, -0.0000021284,0.0000021301,0.0000021320,0.0000021340,0.0000021362, -0.0000021374,0.0000021379,0.0000021381,0.0000021388,0.0000021383, -0.0000021370,0.0000021355,0.0000021334,0.0000021317,0.0000021310, -0.0000021300,0.0000021294,0.0000021299,0.0000021311,0.0000021322, -0.0000021330,0.0000021337,0.0000021345,0.0000021361,0.0000021392, -0.0000021433,0.0000021482,0.0000021546,0.0000021616,0.0000021681, -0.0000021740,0.0000021793,0.0000021834,0.0000021868,0.0000021895, -0.0000021917,0.0000021932,0.0000021946,0.0000021957,0.0000021958, -0.0000021961,0.0000021968,0.0000021966,0.0000021964,0.0000021966, -0.0000021964,0.0000021965,0.0000021969,0.0000021968,0.0000021964, -0.0000021962,0.0000021966,0.0000021971,0.0000021970,0.0000021971, -0.0000021971,0.0000021968,0.0000021960,0.0000021948,0.0000021932, -0.0000021920,0.0000021914,0.0000021920,0.0000021933,0.0000021953, -0.0000021978,0.0000022005,0.0000022032,0.0000022054,0.0000022067, -0.0000022068,0.0000022062,0.0000022059,0.0000022061,0.0000022065, -0.0000022071,0.0000022076,0.0000022081,0.0000022081,0.0000022067, -0.0000022036,0.0000021991,0.0000021940,0.0000021893,0.0000021855, -0.0000021822,0.0000021792,0.0000021766,0.0000021739,0.0000021716, -0.0000021702,0.0000021693,0.0000021693,0.0000021700,0.0000021714, -0.0000021728,0.0000021739,0.0000021744,0.0000021744,0.0000021737, -0.0000021719,0.0000021696,0.0000021670,0.0000021644,0.0000021620, -0.0000021600,0.0000021586,0.0000021581,0.0000021596,0.0000021611, -0.0000021637,0.0000021670,0.0000021709,0.0000021747,0.0000021780, -0.0000021806,0.0000021823,0.0000021830,0.0000021829,0.0000021820, -0.0000021811,0.0000021808,0.0000021810,0.0000021815,0.0000021817, -0.0000021815,0.0000021805,0.0000021791,0.0000021777,0.0000021767, -0.0000021763,0.0000021760,0.0000021755,0.0000021742,0.0000021721, -0.0000021691,0.0000021661,0.0000021638,0.0000021620,0.0000021607, -0.0000021602,0.0000021606,0.0000021613,0.0000021616,0.0000021618, -0.0000021615,0.0000021604,0.0000021583,0.0000021554,0.0000021521, -0.0000021489,0.0000021459,0.0000021443,0.0000021430,0.0000021418, -0.0000021406,0.0000021398,0.0000021390,0.0000021381,0.0000021373, -0.0000021368,0.0000021365,0.0000021362,0.0000021359,0.0000021357, -0.0000021359,0.0000021361,0.0000021357,0.0000021344,0.0000021324, -0.0000021292,0.0000021255,0.0000021212,0.0000021165,0.0000021113, -0.0000021060,0.0000021005,0.0000020951,0.0000020906,0.0000020870, -0.0000020841,0.0000020812,0.0000020779,0.0000020738,0.0000020693, -0.0000020653,0.0000020621,0.0000020616,0.0000020607,0.0000020615, -0.0000020629,0.0000020644,0.0000020663,0.0000020683,0.0000020697, -0.0000020705,0.0000020708,0.0000020709,0.0000020709,0.0000020707, -0.0000020704,0.0000020698,0.0000020688,0.0000020676,0.0000020662, -0.0000020647,0.0000020630,0.0000020613,0.0000020603,0.0000020599, -0.0000020602,0.0000020609,0.0000020622,0.0000020642,0.0000020667, -0.0000020692,0.0000020716,0.0000020737,0.0000020748,0.0000020749, -0.0000020746,0.0000020737,0.0000020724,0.0000020711,0.0000020698, -0.0000020676,0.0000020649,0.0000020621,0.0000020600,0.0000020584, -0.0000020572,0.0000020567,0.0000020566,0.0000020569,0.0000020581, -0.0000020601,0.0000020625,0.0000020645,0.0000020657,0.0000020654, -0.0000020631,0.0000020590,0.0000020532,0.0000020467,0.0000020396, -0.0000020322,0.0000020252,0.0000020203,0.0000020175,0.0000020166, -0.0000020173,0.0000020193,0.0000020216,0.0000020232,0.0000020243, -0.0000020248,0.0000020247,0.0000020241,0.0000020235,0.0000020233, -0.0000020230,0.0000020225,0.0000020219,0.0000020208,0.0000020191, -0.0000020172,0.0000020155,0.0000020141,0.0000020125,0.0000020103, -0.0000020074,0.0000020048,0.0000020024,0.0000020006,0.0000019991, -0.0000019975,0.0000019957,0.0000019939,0.0000019927,0.0000019914, -0.0000019879,0.0000019815,0.0000019752,0.0000019707,0.0000019669, -0.0000019638,0.0000019617,0.0000019605,0.0000019587,0.0000019557, -0.0000019521,0.0000019491,0.0000019468,0.0000019448,0.0000019432, -0.0000019420,0.0000019417,0.0000019420,0.0000019416,0.0000019409, -0.0000019406,0.0000019402,0.0000019400,0.0000019408,0.0000019423, -0.0000019448,0.0000019482,0.0000019514,0.0000019528,0.0000019523, -0.0000019508,0.0000019505,0.0000019525,0.0000019569,0.0000019639, -0.0000019719,0.0000019789,0.0000019849,0.0000019898,0.0000019931, -0.0000019947,0.0000019953,0.0000019941,0.0000019911,0.0000019878, -0.0000019845,0.0000019810,0.0000019780,0.0000019757,0.0000019747, -0.0000019751,0.0000019764,0.0000019761,0.0000019729,0.0000019670, -0.0000019610,0.0000019569,0.0000019546,0.0000019526,0.0000019509, -0.0000019505,0.0000019530,0.0000019584,0.0000019640,0.0000019686, -0.0000019724,0.0000019757,0.0000019787,0.0000019812,0.0000019831, -0.0000019848,0.0000019862,0.0000019874,0.0000019888,0.0000019908, -0.0000019936,0.0000019974,0.0000020021,0.0000020076,0.0000020136, -0.0000020196,0.0000020249,0.0000020296,0.0000020339,0.0000020378, -0.0000020411,0.0000020431,0.0000020445,0.0000020448,0.0000020446, -0.0000020441,0.0000020432,0.0000020419,0.0000020404,0.0000020387, -0.0000020368,0.0000020345,0.0000020315,0.0000020286,0.0000020270, -0.0000020269,0.0000020281,0.0000020318,0.0000020369,0.0000020428, -0.0000020484,0.0000020520,0.0000020537,0.0000020543,0.0000020535, -0.0000020518,0.0000020496,0.0000020471,0.0000020451,0.0000020439, -0.0000020440,0.0000020456,0.0000020487,0.0000020524,0.0000020562, -0.0000020597,0.0000020627,0.0000020654,0.0000020676,0.0000020694, -0.0000020712,0.0000020730,0.0000020744,0.0000020753,0.0000020760, -0.0000020772,0.0000020796,0.0000020829,0.0000020865,0.0000020894, -0.0000020914,0.0000020931,0.0000020947,0.0000020963,0.0000020978, -0.0000020991,0.0000021000,0.0000021009,0.0000021020,0.0000021027, -0.0000021029,0.0000021034,0.0000021036,0.0000021021,0.0000021002, -0.0000020988,0.0000020938,0.0000020896,0.0000020856,0.0000020804, -0.0000020761,0.0000020723,0.0000020717,0.0000020718,0.0000020711, -0.0000020702,0.0000020697,0.0000020718,0.0000020774,0.0000020823, -0.0000020868,0.0000020937,0.0000020996,0.0000021016,0.0000021024, -0.0000021039,0.0000021041,0.0000021020,0.0000020977,0.0000020930, -0.0000020881,0.0000020831,0.0000020780,0.0000020735,0.0000020700, -0.0000020675,0.0000020665,0.0000020672,0.0000020686,0.0000020692, -0.0000020684,0.0000020662,0.0000020641,0.0000020627,0.0000020617, -0.0000020607,0.0000020595,0.0000020582,0.0000020566,0.0000020548, -0.0000020532,0.0000020520,0.0000020514,0.0000020516,0.0000020523, -0.0000020530,0.0000020535,0.0000020534,0.0000020530,0.0000020524, -0.0000020515,0.0000020501,0.0000020483,0.0000020461,0.0000020438, -0.0000020415,0.0000020395,0.0000020381,0.0000020376,0.0000020380, -0.0000020390,0.0000020408,0.0000020430,0.0000020454,0.0000020483, -0.0000020516,0.0000020552,0.0000020593,0.0000020636,0.0000020678, -0.0000020720,0.0000020762,0.0000020804,0.0000020847,0.0000020888, -0.0000020926,0.0000020961,0.0000020992,0.0000021016,0.0000021030, -0.0000021035,0.0000021033,0.0000021030,0.0000021025,0.0000021019, -0.0000021014,0.0000021010,0.0000021010,0.0000021014,0.0000021025, -0.0000021054,0.0000021113,0.0000021205,0.0000021324,0.0000021459, -0.0000021591,0.0000021706,0.0000021799,0.0000021865,0.0000021907, -0.0000021933,0.0000021948,0.0000021953,0.0000021948,0.0000021929, -0.0000021893,0.0000021828,0.0000021726,0.0000021596,0.0000021461, -0.0000021345,0.0000021261,0.0000021205,0.0000021164,0.0000021131, -0.0000021107,0.0000021087,0.0000021067,0.0000021043,0.0000021012, -0.0000020973,0.0000020929,0.0000020880,0.0000020826,0.0000020764, -0.0000020685,0.0000020589,0.0000020477,0.0000020354,0.0000020228, -0.0000020113,0.0000020026,0.0000019977,0.0000019951,0.0000019920, -0.0000019868,0.0000019797,0.0000019718,0.0000019641,0.0000019576, -0.0000019533,0.0000019510,0.0000019500,0.0000019491,0.0000019480, -0.0000019473,0.0000019480,0.0000019509,0.0000019549,0.0000019579, -0.0000019588,0.0000019577,0.0000019558,0.0000019546,0.0000019550, -0.0000019565,0.0000019582,0.0000019599,0.0000019614,0.0000019626, -0.0000019640,0.0000019658,0.0000019679,0.0000019710,0.0000019757, -0.0000019816,0.0000019878,0.0000019927,0.0000019972,0.0000020024, -0.0000020080,0.0000020122,0.0000020143,0.0000020153,0.0000020158, -0.0000020168,0.0000020184,0.0000020197,0.0000020199,0.0000020173, -0.0000020093,0.0000019986,0.0000019895,0.0000019867,0.0000019875, -0.0000019933,0.0000020014,0.0000020087,0.0000020136,0.0000020155, -0.0000020146,0.0000020121,0.0000020102,0.0000020107,0.0000020156, -0.0000020250,0.0000020373,0.0000020494,0.0000020589,0.0000020640, -0.0000020647,0.0000020650,0.0000020631,0.0000020596,0.0000020549, -0.0000020506,0.0000020468,0.0000020448,0.0000020436,0.0000020446, -0.0000020469,0.0000020502,0.0000020536,0.0000020561,0.0000020580, -0.0000020595,0.0000020604,0.0000020609,0.0000020619,0.0000020642, -0.0000020671,0.0000020701,0.0000020725,0.0000020742,0.0000020755, -0.0000020769,0.0000020783,0.0000020794,0.0000020802,0.0000020805, -0.0000020803,0.0000020794,0.0000020771,0.0000020731,0.0000020670, -0.0000020585,0.0000020489,0.0000020393,0.0000020314,0.0000020263, -0.0000020239,0.0000020235,0.0000020243,0.0000020259,0.0000020279, -0.0000020300,0.0000020319,0.0000020340,0.0000020355,0.0000020362, -0.0000020362,0.0000020351,0.0000020331,0.0000020311,0.0000020283, -0.0000020253,0.0000020225,0.0000020193,0.0000020167,0.0000020154, -0.0000020161,0.0000020186,0.0000020223,0.0000020262,0.0000020295, -0.0000020316,0.0000020331,0.0000020327,0.0000020305,0.0000020275, -0.0000020241,0.0000020205,0.0000020169,0.0000020131,0.0000020097, -0.0000020061,0.0000020025,0.0000019998,0.0000019989,0.0000019993, -0.0000020015,0.0000020047,0.0000020080,0.0000020110,0.0000020141, -0.0000020174,0.0000020202,0.0000020221,0.0000020234,0.0000020237, -0.0000020228,0.0000020203,0.0000020166,0.0000020126,0.0000020096, -0.0000020073,0.0000020052,0.0000020028,0.0000019996,0.0000019951, -0.0000019894,0.0000019830,0.0000019763,0.0000019695,0.0000019630, -0.0000019568,0.0000019505,0.0000019442,0.0000019386,0.0000019344, -0.0000019312,0.0000019286,0.0000019269,0.0000019264,0.0000019265, -0.0000019268,0.0000019271,0.0000019276,0.0000019280,0.0000019280, -0.0000019273,0.0000019264,0.0000019253,0.0000019239,0.0000019223, -0.0000019209,0.0000019199,0.0000019192,0.0000019185,0.0000019173, -0.0000019158,0.0000019148,0.0000019142,0.0000019135,0.0000019127, -0.0000019118,0.0000019108,0.0000019097,0.0000019086,0.0000019080, -0.0000019082,0.0000019095,0.0000019115,0.0000019137,0.0000019157, -0.0000019175,0.0000019188,0.0000019195,0.0000019196,0.0000019192, -0.0000019184,0.0000019178,0.0000019174,0.0000019172,0.0000019174, -0.0000019175,0.0000019173,0.0000019166,0.0000019155,0.0000019143, -0.0000019129,0.0000019111,0.0000019094,0.0000019077,0.0000019061, -0.0000019046,0.0000019036,0.0000019031,0.0000019032,0.0000019037, -0.0000019046,0.0000019061,0.0000019082,0.0000019107,0.0000019135, -0.0000019167,0.0000019205,0.0000019251,0.0000019299,0.0000019347, -0.0000019390,0.0000019425,0.0000019447,0.0000019457,0.0000019457, -0.0000019449,0.0000019440,0.0000019427,0.0000019418,0.0000019413, -0.0000019409,0.0000019415,0.0000019431,0.0000019457,0.0000019488, -0.0000019524,0.0000019563,0.0000019598,0.0000019624,0.0000019640, -0.0000019649,0.0000019650,0.0000019645,0.0000019633,0.0000019615, -0.0000019597,0.0000019574,0.0000019553,0.0000019536,0.0000019525, -0.0000019521,0.0000019525,0.0000019536,0.0000019549,0.0000019561, -0.0000019571,0.0000019577,0.0000019578,0.0000019576,0.0000019572, -0.0000019564,0.0000019552,0.0000019538,0.0000019525,0.0000019516, -0.0000019514,0.0000019520,0.0000019532,0.0000019543,0.0000019551, -0.0000019553,0.0000019548,0.0000019529,0.0000019492,0.0000019437, -0.0000019377,0.0000019337,0.0000019334,0.0000019369,0.0000019424, -0.0000019467,0.0000019493,0.0000019521,0.0000019571,0.0000019633, -0.0000019652,0.0000019619,0.0000019578,0.0000019575,0.0000019649, -0.0000019797,0.0000019950,0.0000020077,0.0000020209,0.0000020312, -0.0000020330,0.0000020308,0.0000020302,0.0000020361,0.0000020461, -0.0000020530,0.0000020542,0.0000020528,0.0000020502,0.0000020484, -0.0000020473,0.0000020466,0.0000020457,0.0000020447,0.0000020446, -0.0000020459,0.0000020493,0.0000020532,0.0000020554,0.0000020553, -0.0000020529,0.0000020488,0.0000020431,0.0000020353,0.0000020283, -0.0000020262,0.0000020269,0.0000020278,0.0000020282,0.0000020283, -0.0000020277,0.0000020265,0.0000020251,0.0000020241,0.0000020237, -0.0000020251,0.0000020283,0.0000020315,0.0000020321,0.0000020299, -0.0000020269,0.0000020259,0.0000020267,0.0000020292,0.0000020326, -0.0000020361,0.0000020390,0.0000020409,0.0000020415,0.0000020414, -0.0000020404,0.0000020390,0.0000020372,0.0000020355,0.0000020339, -0.0000020327,0.0000020317,0.0000020303,0.0000020279,0.0000020245, -0.0000020204,0.0000020161,0.0000020124,0.0000020101,0.0000020093, -0.0000020090,0.0000020087,0.0000020087,0.0000020087,0.0000020086, -0.0000020081,0.0000020070,0.0000020055,0.0000020037,0.0000020019, -0.0000020001,0.0000019986,0.0000019973,0.0000019965,0.0000019959, -0.0000019955,0.0000019953,0.0000019952,0.0000019952,0.0000019950, -0.0000019946,0.0000019941,0.0000019934,0.0000019921,0.0000019902, -0.0000019876,0.0000019846,0.0000019811,0.0000019771,0.0000019728, -0.0000019683,0.0000019639,0.0000019597,0.0000019559,0.0000019527, -0.0000019502,0.0000019486,0.0000019476,0.0000019472,0.0000019471, -0.0000019472,0.0000019475,0.0000019478,0.0000019483,0.0000019486, -0.0000019491,0.0000019501,0.0000019516,0.0000019536,0.0000019562, -0.0000019592,0.0000019625,0.0000019660,0.0000019695,0.0000019729, -0.0000019758,0.0000019780,0.0000019796,0.0000019808,0.0000019816, -0.0000019822,0.0000019834,0.0000019842,0.0000019850,0.0000019854, -0.0000019852,0.0000019845,0.0000019834,0.0000019822,0.0000019811, -0.0000019804,0.0000019795,0.0000019768,0.0000019715,0.0000019648, -0.0000019603,0.0000019581,0.0000019561,0.0000019523,0.0000019481, -0.0000019451,0.0000019433,0.0000019424,0.0000019425,0.0000019430, -0.0000019435,0.0000019421,0.0000019429,0.0000019444,0.0000019468, -0.0000019497,0.0000019529,0.0000019562,0.0000019596,0.0000019632, -0.0000019665,0.0000019702,0.0000019740,0.0000019780,0.0000019816, -0.0000019843,0.0000019854,0.0000019864,0.0000019861,0.0000019851, -0.0000019835,0.0000019821,0.0000019801,0.0000019792,0.0000019790, -0.0000019796,0.0000019810,0.0000019831,0.0000019852,0.0000019872, -0.0000019889,0.0000019909,0.0000019932,0.0000019953,0.0000019968, -0.0000019974,0.0000019966,0.0000019952,0.0000019939,0.0000019926, -0.0000019915,0.0000019912,0.0000019915,0.0000019925,0.0000019944, -0.0000019965,0.0000019984,0.0000020005,0.0000020024,0.0000020039, -0.0000020046,0.0000020046,0.0000020047,0.0000020051,0.0000020053, -0.0000020055,0.0000020053,0.0000020045,0.0000020034,0.0000020019, -0.0000020000,0.0000019976,0.0000019951,0.0000019928,0.0000019906, -0.0000019877,0.0000019844,0.0000019813,0.0000019791,0.0000019779, -0.0000019773,0.0000019774,0.0000019775,0.0000019773,0.0000019771, -0.0000019769,0.0000019771,0.0000019776,0.0000019779,0.0000019777, -0.0000019773,0.0000019767,0.0000019770,0.0000019779,0.0000019785, -0.0000019793,0.0000019802,0.0000019817,0.0000019836,0.0000019860, -0.0000019885,0.0000019908,0.0000019932,0.0000019961,0.0000019991, -0.0000020018,0.0000020039,0.0000020058,0.0000020070,0.0000020077, -0.0000020078,0.0000020077,0.0000020075,0.0000020075,0.0000020078, -0.0000020088,0.0000020104,0.0000020120,0.0000020135,0.0000020157, -0.0000020179,0.0000020193,0.0000020198,0.0000020198,0.0000020192, -0.0000020184,0.0000020175,0.0000020168,0.0000020168,0.0000020170, -0.0000020169,0.0000020169,0.0000020172,0.0000020175,0.0000020180, -0.0000020188,0.0000020197,0.0000020209,0.0000020223,0.0000020237, -0.0000020255,0.0000020279,0.0000020314,0.0000020362,0.0000020429, -0.0000020495,0.0000020550,0.0000020597,0.0000020646,0.0000020697, -0.0000020744,0.0000020788,0.0000020825,0.0000020849,0.0000020865, -0.0000020866,0.0000020840,0.0000020793,0.0000020743,0.0000020686, -0.0000020634,0.0000020594,0.0000020550,0.0000020502,0.0000020462, -0.0000020434,0.0000020420,0.0000020423,0.0000020436,0.0000020449, -0.0000020464,0.0000020490,0.0000020523,0.0000020559,0.0000020597, -0.0000020634,0.0000020666,0.0000020687,0.0000020697,0.0000020697, -0.0000020690,0.0000020677,0.0000020664,0.0000020658,0.0000020660, -0.0000020669,0.0000020684,0.0000020707,0.0000020740,0.0000020778, -0.0000020818,0.0000020854,0.0000020885,0.0000020906,0.0000020916, -0.0000020919,0.0000020918,0.0000020914,0.0000020911,0.0000020913, -0.0000020919,0.0000020929,0.0000020944,0.0000020965,0.0000020996, -0.0000021033,0.0000021071,0.0000021110,0.0000021147,0.0000021182, -0.0000021214,0.0000021239,0.0000021260,0.0000021277,0.0000021286, -0.0000021291,0.0000021293,0.0000021290,0.0000021281,0.0000021269, -0.0000021256,0.0000021243,0.0000021228,0.0000021213,0.0000021197, -0.0000021177,0.0000021155,0.0000021133,0.0000021111,0.0000021094, -0.0000021081,0.0000021072,0.0000021063,0.0000021058,0.0000021062, -0.0000021072,0.0000021086,0.0000021104,0.0000021124,0.0000021146, -0.0000021168,0.0000021190,0.0000021210,0.0000021230,0.0000021248, -0.0000021267,0.0000021284,0.0000021299,0.0000021311,0.0000021318, -0.0000021318,0.0000021312,0.0000021300,0.0000021285,0.0000021270, -0.0000021256,0.0000021246,0.0000021239,0.0000021238,0.0000021242, -0.0000021250,0.0000021257,0.0000021267,0.0000021278,0.0000021292, -0.0000021310,0.0000021326,0.0000021341,0.0000021358,0.0000021377, -0.0000021390,0.0000021401,0.0000021411,0.0000021422,0.0000021436, -0.0000021452,0.0000021463,0.0000021468,0.0000021470,0.0000021469, -0.0000021465,0.0000021454,0.0000021434,0.0000021399,0.0000021349, -0.0000021292,0.0000021246,0.0000021209,0.0000021160,0.0000021120, -0.0000021111,0.0000021115,0.0000021198,0.0000021337,0.0000021424, -0.0000021512,0.0000021606,0.0000021684,0.0000021733,0.0000021738, -0.0000021709,0.0000021666,0.0000021614,0.0000021556,0.0000021483, -0.0000021377,0.0000021281,0.0000021222,0.0000021175,0.0000021114, -0.0000021046,0.0000020995,0.0000020964,0.0000020945,0.0000020931, -0.0000020923,0.0000020922,0.0000020929,0.0000020945,0.0000020962, -0.0000020967,0.0000020964,0.0000020958,0.0000020945,0.0000020915, -0.0000020874,0.0000020829,0.0000020774,0.0000020714,0.0000020649, -0.0000020578,0.0000020519,0.0000020500,0.0000020513,0.0000020549, -0.0000020583,0.0000020613,0.0000020636,0.0000020639,0.0000020625, -0.0000020603,0.0000020571,0.0000020531,0.0000020470,0.0000020399, -0.0000020329,0.0000020269,0.0000020221,0.0000020198,0.0000020219, -0.0000020266,0.0000020314,0.0000020382,0.0000020463,0.0000020512, -0.0000020516,0.0000020469,0.0000020388,0.0000020324,0.0000020311, -0.0000020255,0.0000020132,0.0000020054,0.0000020031,0.0000020039, -0.0000020103,0.0000020242,0.0000020327,0.0000020307,0.0000020271, -0.0000020295,0.0000020381,0.0000020518,0.0000020665,0.0000020764, -0.0000020850,0.0000020952,0.0000021019,0.0000021161,0.0000021347, -0.0000021404,0.0000021510,0.0000021622,0.0000021644,0.0000021653, -0.0000021703,0.0000021717,0.0000021700,0.0000021740,0.0000021844, -0.0000021868,0.0000021852,0.0000021823,0.0000021800,0.0000021852, -0.0000021904,0.0000021911,0.0000021934,0.0000022014,0.0000022076, -0.0000022091,0.0000022088,0.0000022067,0.0000022024,0.0000021986, -0.0000021964,0.0000021963,0.0000021997,0.0000022061,0.0000022120, -0.0000022166,0.0000022178,0.0000022162,0.0000022106,0.0000022018, -0.0000021916,0.0000021842,0.0000021803,0.0000021805,0.0000021846, -0.0000021881,0.0000021890,0.0000021871,0.0000021812,0.0000021711, -0.0000021603,0.0000021546,0.0000021538,0.0000021547,0.0000021565, -0.0000021578,0.0000021577,0.0000021558,0.0000021522,0.0000021494, -0.0000021474,0.0000021461,0.0000021453,0.0000021444,0.0000021432, -0.0000021430,0.0000021435,0.0000021445,0.0000021455,0.0000021461, -0.0000021453,0.0000021426,0.0000021385,0.0000021317,0.0000021224, -0.0000021132,0.0000021041,0.0000020966,0.0000020922,0.0000020900, -0.0000020870,0.0000020838,0.0000020811,0.0000020787,0.0000020764, -0.0000020748,0.0000020744,0.0000020744,0.0000020746,0.0000020744, -0.0000020746,0.0000020759,0.0000020773,0.0000020789,0.0000020798, -0.0000020799,0.0000020794,0.0000020787,0.0000020780,0.0000020774, -0.0000020771,0.0000020766,0.0000020758,0.0000020757,0.0000020751, -0.0000020738,0.0000020732,0.0000020738,0.0000020735,0.0000020737, -0.0000020744,0.0000020761,0.0000020790,0.0000020824,0.0000020860, -0.0000020895,0.0000020929,0.0000020970,0.0000021011,0.0000021051, -0.0000021084,0.0000021118,0.0000021147,0.0000021174,0.0000021200, -0.0000021228,0.0000021254,0.0000021276,0.0000021294,0.0000021308, -0.0000021321,0.0000021331,0.0000021340,0.0000021347,0.0000021360, -0.0000021382,0.0000021400,0.0000021411,0.0000021414,0.0000021406, -0.0000021388,0.0000021362,0.0000021347,0.0000021345,0.0000021355, -0.0000021371,0.0000021386,0.0000021395,0.0000021396,0.0000021391, -0.0000021381,0.0000021367,0.0000021356,0.0000021342,0.0000021330, -0.0000021320,0.0000021310,0.0000021305,0.0000021305,0.0000021310, -0.0000021315,0.0000021317,0.0000021323,0.0000021326,0.0000021325, -0.0000021316,0.0000021303,0.0000021291,0.0000021279,0.0000021266, -0.0000021260,0.0000021270,0.0000021284,0.0000021301,0.0000021320, -0.0000021334,0.0000021339,0.0000021344,0.0000021359,0.0000021369, -0.0000021375,0.0000021373,0.0000021371,0.0000021360,0.0000021344, -0.0000021325,0.0000021303,0.0000021287,0.0000021271,0.0000021254, -0.0000021243,0.0000021239,0.0000021246,0.0000021262,0.0000021290, -0.0000021324,0.0000021359,0.0000021402,0.0000021447,0.0000021491, -0.0000021536,0.0000021581,0.0000021623,0.0000021661,0.0000021696, -0.0000021729,0.0000021760,0.0000021786,0.0000021808,0.0000021822, -0.0000021832,0.0000021846,0.0000021854,0.0000021860,0.0000021871, -0.0000021879,0.0000021887,0.0000021901,0.0000021913,0.0000021916, -0.0000021918,0.0000021925,0.0000021933,0.0000021937,0.0000021936, -0.0000021931,0.0000021925,0.0000021917,0.0000021914,0.0000021906, -0.0000021899,0.0000021902,0.0000021909,0.0000021924,0.0000021940, -0.0000021956,0.0000021974,0.0000021994,0.0000022011,0.0000022023, -0.0000022026,0.0000022026,0.0000022035,0.0000022044,0.0000022051, -0.0000022060,0.0000022072,0.0000022086,0.0000022097,0.0000022099, -0.0000022085,0.0000022051,0.0000022007,0.0000021965,0.0000021922, -0.0000021879,0.0000021840,0.0000021804,0.0000021769,0.0000021738, -0.0000021714,0.0000021696,0.0000021686,0.0000021681,0.0000021686, -0.0000021696,0.0000021711,0.0000021729,0.0000021745,0.0000021749, -0.0000021748,0.0000021741,0.0000021730,0.0000021715,0.0000021697, -0.0000021676,0.0000021657,0.0000021645,0.0000021642,0.0000021647, -0.0000021658,0.0000021684,0.0000021716,0.0000021751,0.0000021778, -0.0000021803,0.0000021819,0.0000021829,0.0000021831,0.0000021825, -0.0000021820,0.0000021819,0.0000021821,0.0000021827,0.0000021831, -0.0000021831,0.0000021827,0.0000021817,0.0000021804,0.0000021798, -0.0000021799,0.0000021802,0.0000021801,0.0000021796,0.0000021781, -0.0000021756,0.0000021726,0.0000021698,0.0000021676,0.0000021662, -0.0000021661,0.0000021672,0.0000021690,0.0000021708,0.0000021726, -0.0000021736,0.0000021737,0.0000021726,0.0000021704,0.0000021675, -0.0000021643,0.0000021618,0.0000021601,0.0000021582,0.0000021560, -0.0000021541,0.0000021524,0.0000021507,0.0000021489,0.0000021472, -0.0000021456,0.0000021440,0.0000021424,0.0000021409,0.0000021395, -0.0000021386,0.0000021381,0.0000021371,0.0000021355,0.0000021332, -0.0000021303,0.0000021268,0.0000021229,0.0000021188,0.0000021146, -0.0000021105,0.0000021065,0.0000021030,0.0000020999,0.0000020974, -0.0000020951,0.0000020924,0.0000020886,0.0000020836,0.0000020777, -0.0000020719,0.0000020674,0.0000020647,0.0000020636,0.0000020634, -0.0000020636,0.0000020648,0.0000020669,0.0000020675,0.0000020685, -0.0000020694,0.0000020695,0.0000020693,0.0000020689,0.0000020684, -0.0000020676,0.0000020665,0.0000020649,0.0000020631,0.0000020613, -0.0000020596,0.0000020576,0.0000020558,0.0000020544,0.0000020536, -0.0000020535,0.0000020540,0.0000020551,0.0000020571,0.0000020594, -0.0000020620,0.0000020645,0.0000020667,0.0000020683,0.0000020692, -0.0000020694,0.0000020691,0.0000020689,0.0000020680,0.0000020663, -0.0000020638,0.0000020608,0.0000020580,0.0000020558,0.0000020547, -0.0000020541,0.0000020539,0.0000020540,0.0000020551,0.0000020569, -0.0000020591,0.0000020611,0.0000020628,0.0000020637,0.0000020629, -0.0000020596,0.0000020550,0.0000020490,0.0000020419,0.0000020340, -0.0000020260,0.0000020199,0.0000020159,0.0000020142,0.0000020148, -0.0000020171,0.0000020204,0.0000020228,0.0000020251,0.0000020264, -0.0000020275,0.0000020272,0.0000020267,0.0000020260,0.0000020249, -0.0000020239,0.0000020230,0.0000020227,0.0000020221,0.0000020211, -0.0000020196,0.0000020181,0.0000020164,0.0000020143,0.0000020120, -0.0000020098,0.0000020076,0.0000020059,0.0000020043,0.0000020025, -0.0000020006,0.0000019985,0.0000019965,0.0000019949,0.0000019922, -0.0000019868,0.0000019797,0.0000019734,0.0000019687,0.0000019650, -0.0000019631,0.0000019628,0.0000019618,0.0000019590,0.0000019546, -0.0000019496,0.0000019455,0.0000019413,0.0000019380,0.0000019357, -0.0000019350,0.0000019356,0.0000019356,0.0000019350,0.0000019349, -0.0000019349,0.0000019353,0.0000019365,0.0000019386,0.0000019417, -0.0000019454,0.0000019487,0.0000019505,0.0000019501,0.0000019488, -0.0000019486,0.0000019510,0.0000019563,0.0000019640,0.0000019722, -0.0000019793,0.0000019854,0.0000019902,0.0000019930,0.0000019945, -0.0000019945,0.0000019927,0.0000019898,0.0000019869,0.0000019831, -0.0000019786,0.0000019755,0.0000019746,0.0000019750,0.0000019766, -0.0000019769,0.0000019755,0.0000019717,0.0000019665,0.0000019617, -0.0000019579,0.0000019548,0.0000019523,0.0000019502,0.0000019485, -0.0000019491,0.0000019530,0.0000019585,0.0000019636,0.0000019679, -0.0000019713,0.0000019740,0.0000019762,0.0000019781,0.0000019796, -0.0000019808,0.0000019818,0.0000019825,0.0000019835,0.0000019850, -0.0000019875,0.0000019910,0.0000019958,0.0000020016,0.0000020081, -0.0000020142,0.0000020198,0.0000020249,0.0000020300,0.0000020349, -0.0000020394,0.0000020431,0.0000020459,0.0000020471,0.0000020482, -0.0000020485,0.0000020480,0.0000020469,0.0000020455,0.0000020438, -0.0000020419,0.0000020393,0.0000020360,0.0000020326,0.0000020293, -0.0000020280,0.0000020275,0.0000020291,0.0000020327,0.0000020375, -0.0000020425,0.0000020473,0.0000020518,0.0000020538,0.0000020553, -0.0000020558,0.0000020550,0.0000020539,0.0000020529,0.0000020524, -0.0000020527,0.0000020544,0.0000020572,0.0000020605,0.0000020638, -0.0000020670,0.0000020698,0.0000020721,0.0000020739,0.0000020756, -0.0000020772,0.0000020786,0.0000020802,0.0000020821,0.0000020842, -0.0000020863,0.0000020878,0.0000020888,0.0000020899,0.0000020912, -0.0000020929,0.0000020953,0.0000020980,0.0000021003,0.0000021019, -0.0000021023,0.0000021023,0.0000021028,0.0000021035,0.0000021037, -0.0000021042,0.0000021042,0.0000021025,0.0000021014,0.0000020995, -0.0000020939,0.0000020900,0.0000020857,0.0000020811,0.0000020767, -0.0000020733,0.0000020733,0.0000020738,0.0000020734,0.0000020727, -0.0000020719,0.0000020734,0.0000020783,0.0000020831,0.0000020878, -0.0000020942,0.0000020996,0.0000021016,0.0000021025,0.0000021035, -0.0000021036,0.0000021014,0.0000020978,0.0000020939,0.0000020891, -0.0000020834,0.0000020773,0.0000020720,0.0000020673,0.0000020627, -0.0000020603,0.0000020604,0.0000020607,0.0000020595,0.0000020574, -0.0000020560,0.0000020560,0.0000020570,0.0000020577,0.0000020576, -0.0000020569,0.0000020556,0.0000020541,0.0000020526,0.0000020511, -0.0000020497,0.0000020491,0.0000020492,0.0000020497,0.0000020504, -0.0000020510,0.0000020512,0.0000020510,0.0000020505,0.0000020495, -0.0000020481,0.0000020462,0.0000020438,0.0000020412,0.0000020383, -0.0000020350,0.0000020326,0.0000020311,0.0000020304,0.0000020305, -0.0000020313,0.0000020328,0.0000020347,0.0000020370,0.0000020397, -0.0000020424,0.0000020454,0.0000020489,0.0000020525,0.0000020561, -0.0000020596,0.0000020631,0.0000020667,0.0000020703,0.0000020743, -0.0000020790,0.0000020842,0.0000020891,0.0000020933,0.0000020964, -0.0000020984,0.0000020990,0.0000020987,0.0000020981,0.0000020976, -0.0000020975,0.0000020976,0.0000020978,0.0000020978,0.0000020980, -0.0000020991,0.0000021019,0.0000021077,0.0000021166,0.0000021277, -0.0000021398,0.0000021517,0.0000021617,0.0000021692,0.0000021746, -0.0000021780,0.0000021798,0.0000021799,0.0000021785,0.0000021746, -0.0000021674,0.0000021570,0.0000021453,0.0000021345,0.0000021261, -0.0000021197,0.0000021143,0.0000021092,0.0000021049,0.0000021019, -0.0000020996,0.0000020970,0.0000020940,0.0000020904,0.0000020865, -0.0000020824,0.0000020783,0.0000020738,0.0000020685,0.0000020620, -0.0000020541,0.0000020445,0.0000020336,0.0000020220,0.0000020108, -0.0000020018,0.0000019964,0.0000019935,0.0000019908,0.0000019863, -0.0000019797,0.0000019719,0.0000019636,0.0000019560,0.0000019507, -0.0000019480,0.0000019469,0.0000019466,0.0000019461,0.0000019458, -0.0000019464,0.0000019487,0.0000019521,0.0000019553,0.0000019566, -0.0000019558,0.0000019539,0.0000019523,0.0000019521,0.0000019535, -0.0000019557,0.0000019579,0.0000019599,0.0000019616,0.0000019631, -0.0000019645,0.0000019660,0.0000019684,0.0000019725,0.0000019787, -0.0000019862,0.0000019921,0.0000019964,0.0000020010,0.0000020067, -0.0000020121,0.0000020153,0.0000020162,0.0000020167,0.0000020172, -0.0000020181,0.0000020193,0.0000020203,0.0000020187,0.0000020129, -0.0000020028,0.0000019922,0.0000019844,0.0000019823,0.0000019843, -0.0000019897,0.0000019968,0.0000020030,0.0000020070,0.0000020084, -0.0000020074,0.0000020047,0.0000020030,0.0000020040,0.0000020094, -0.0000020197,0.0000020330,0.0000020461,0.0000020565,0.0000020626, -0.0000020648,0.0000020640,0.0000020620,0.0000020579,0.0000020532, -0.0000020482,0.0000020441,0.0000020418,0.0000020406,0.0000020404, -0.0000020413,0.0000020425,0.0000020447,0.0000020476,0.0000020505, -0.0000020530,0.0000020554,0.0000020581,0.0000020610,0.0000020642, -0.0000020672,0.0000020695,0.0000020711,0.0000020724,0.0000020737, -0.0000020750,0.0000020758,0.0000020758,0.0000020748,0.0000020725, -0.0000020685,0.0000020628,0.0000020549,0.0000020456,0.0000020366, -0.0000020294,0.0000020247,0.0000020224,0.0000020221,0.0000020233, -0.0000020249,0.0000020271,0.0000020294,0.0000020314,0.0000020327, -0.0000020338,0.0000020343,0.0000020342,0.0000020337,0.0000020328, -0.0000020317,0.0000020303,0.0000020284,0.0000020261,0.0000020229, -0.0000020197,0.0000020159,0.0000020126,0.0000020099,0.0000020085, -0.0000020086,0.0000020098,0.0000020114,0.0000020127,0.0000020136, -0.0000020131,0.0000020113,0.0000020092,0.0000020068,0.0000020042, -0.0000020016,0.0000019992,0.0000019969,0.0000019941,0.0000019910, -0.0000019888,0.0000019879,0.0000019882,0.0000019904,0.0000019939, -0.0000019974,0.0000020003,0.0000020031,0.0000020057,0.0000020078, -0.0000020092,0.0000020096,0.0000020089,0.0000020074,0.0000020050, -0.0000020015,0.0000019975,0.0000019938,0.0000019913,0.0000019900, -0.0000019891,0.0000019881,0.0000019860,0.0000019828,0.0000019791, -0.0000019746,0.0000019694,0.0000019637,0.0000019576,0.0000019513, -0.0000019451,0.0000019395,0.0000019351,0.0000019316,0.0000019284, -0.0000019260,0.0000019245,0.0000019236,0.0000019230,0.0000019224, -0.0000019216,0.0000019207,0.0000019199,0.0000019191,0.0000019181, -0.0000019166,0.0000019149,0.0000019132,0.0000019115,0.0000019097, -0.0000019080,0.0000019068,0.0000019057,0.0000019049,0.0000019047, -0.0000019049,0.0000019054,0.0000019059,0.0000019061,0.0000019059, -0.0000019051,0.0000019037,0.0000019025,0.0000019022,0.0000019027, -0.0000019035,0.0000019043,0.0000019052,0.0000019062,0.0000019072, -0.0000019079,0.0000019080,0.0000019078,0.0000019072,0.0000019068, -0.0000019069,0.0000019071,0.0000019075,0.0000019078,0.0000019080, -0.0000019077,0.0000019071,0.0000019063,0.0000019053,0.0000019043, -0.0000019033,0.0000019025,0.0000019017,0.0000019009,0.0000019005, -0.0000019002,0.0000019000,0.0000018997,0.0000018996,0.0000018999, -0.0000019007,0.0000019021,0.0000019042,0.0000019072,0.0000019109, -0.0000019150,0.0000019191,0.0000019234,0.0000019280,0.0000019326, -0.0000019367,0.0000019399,0.0000019420,0.0000019431,0.0000019433, -0.0000019427,0.0000019420,0.0000019413,0.0000019402,0.0000019395, -0.0000019391,0.0000019399,0.0000019416,0.0000019446,0.0000019487, -0.0000019528,0.0000019562,0.0000019589,0.0000019606,0.0000019615, -0.0000019617,0.0000019615,0.0000019607,0.0000019593,0.0000019575, -0.0000019556,0.0000019536,0.0000019519,0.0000019509,0.0000019509, -0.0000019517,0.0000019529,0.0000019542,0.0000019554,0.0000019563, -0.0000019569,0.0000019572,0.0000019573,0.0000019571,0.0000019566, -0.0000019558,0.0000019545,0.0000019532,0.0000019523,0.0000019519, -0.0000019521,0.0000019528,0.0000019537,0.0000019546,0.0000019549, -0.0000019545,0.0000019525,0.0000019483,0.0000019420,0.0000019357, -0.0000019327,0.0000019338,0.0000019386,0.0000019439,0.0000019475, -0.0000019502,0.0000019539,0.0000019596,0.0000019644,0.0000019639, -0.0000019585,0.0000019555,0.0000019583,0.0000019688,0.0000019841, -0.0000019979,0.0000020099,0.0000020226,0.0000020313,0.0000020319, -0.0000020298,0.0000020296,0.0000020350,0.0000020441,0.0000020514, -0.0000020531,0.0000020521,0.0000020498,0.0000020475,0.0000020461, -0.0000020448,0.0000020436,0.0000020423,0.0000020422,0.0000020437, -0.0000020477,0.0000020526,0.0000020555,0.0000020558,0.0000020532, -0.0000020492,0.0000020443,0.0000020378,0.0000020309,0.0000020278, -0.0000020278,0.0000020282,0.0000020281,0.0000020277,0.0000020268, -0.0000020257,0.0000020248,0.0000020246,0.0000020259,0.0000020290, -0.0000020324,0.0000020339,0.0000020328,0.0000020300,0.0000020281, -0.0000020283,0.0000020303,0.0000020333,0.0000020368,0.0000020399, -0.0000020422,0.0000020435,0.0000020438,0.0000020434,0.0000020424, -0.0000020409,0.0000020392,0.0000020376,0.0000020366,0.0000020357, -0.0000020343,0.0000020319,0.0000020287,0.0000020247,0.0000020204, -0.0000020163,0.0000020134,0.0000020118,0.0000020109,0.0000020106, -0.0000020108,0.0000020111,0.0000020111,0.0000020106,0.0000020097, -0.0000020083,0.0000020066,0.0000020044,0.0000020022,0.0000020001, -0.0000019983,0.0000019969,0.0000019959,0.0000019953,0.0000019950, -0.0000019949,0.0000019949,0.0000019948,0.0000019946,0.0000019943, -0.0000019938,0.0000019931,0.0000019917,0.0000019897,0.0000019872, -0.0000019844,0.0000019812,0.0000019778,0.0000019740,0.0000019700, -0.0000019659,0.0000019616,0.0000019576,0.0000019539,0.0000019510, -0.0000019489,0.0000019475,0.0000019469,0.0000019467,0.0000019465, -0.0000019464,0.0000019466,0.0000019469,0.0000019473,0.0000019479, -0.0000019488,0.0000019500,0.0000019517,0.0000019536,0.0000019559, -0.0000019585,0.0000019618,0.0000019655,0.0000019693,0.0000019729, -0.0000019762,0.0000019792,0.0000019818,0.0000019839,0.0000019853, -0.0000019863,0.0000019872,0.0000019879,0.0000019883,0.0000019878, -0.0000019866,0.0000019853,0.0000019839,0.0000019828,0.0000019818, -0.0000019804,0.0000019775,0.0000019719,0.0000019649,0.0000019598, -0.0000019571,0.0000019545,0.0000019502,0.0000019460,0.0000019434, -0.0000019421,0.0000019417,0.0000019418,0.0000019415,0.0000019415, -0.0000019420,0.0000019430,0.0000019443,0.0000019459,0.0000019482, -0.0000019512,0.0000019547,0.0000019585,0.0000019622,0.0000019656, -0.0000019689,0.0000019723,0.0000019759,0.0000019796,0.0000019828, -0.0000019849,0.0000019854,0.0000019853,0.0000019840,0.0000019814, -0.0000019785,0.0000019761,0.0000019738,0.0000019731,0.0000019738, -0.0000019759,0.0000019786,0.0000019813,0.0000019835,0.0000019857, -0.0000019875,0.0000019892,0.0000019907,0.0000019919,0.0000019925, -0.0000019926,0.0000019926,0.0000019921,0.0000019922,0.0000019925, -0.0000019929,0.0000019939,0.0000019954,0.0000019966,0.0000019978, -0.0000019985,0.0000019984,0.0000019977,0.0000019964,0.0000019955, -0.0000019951,0.0000019947,0.0000019945,0.0000019940,0.0000019930, -0.0000019917,0.0000019902,0.0000019883,0.0000019860,0.0000019834, -0.0000019807,0.0000019781,0.0000019754,0.0000019725,0.0000019701, -0.0000019685,0.0000019681,0.0000019684,0.0000019688,0.0000019691, -0.0000019693,0.0000019693,0.0000019692,0.0000019695,0.0000019702, -0.0000019708,0.0000019707,0.0000019700,0.0000019692,0.0000019690, -0.0000019693,0.0000019691,0.0000019693,0.0000019698,0.0000019712, -0.0000019734,0.0000019761,0.0000019789,0.0000019814,0.0000019842, -0.0000019873,0.0000019902,0.0000019929,0.0000019955,0.0000019972, -0.0000019980,0.0000019984,0.0000019986,0.0000019982,0.0000019976, -0.0000019971,0.0000019974,0.0000019986,0.0000020006,0.0000020030, -0.0000020053,0.0000020075,0.0000020094,0.0000020104,0.0000020108, -0.0000020110,0.0000020107,0.0000020101,0.0000020094,0.0000020088, -0.0000020086,0.0000020083,0.0000020080,0.0000020078,0.0000020080, -0.0000020080,0.0000020081,0.0000020087,0.0000020101,0.0000020126, -0.0000020155,0.0000020182,0.0000020206,0.0000020225,0.0000020249, -0.0000020288,0.0000020356,0.0000020433,0.0000020505,0.0000020570, -0.0000020633,0.0000020688,0.0000020732,0.0000020775,0.0000020808, -0.0000020826,0.0000020836,0.0000020836,0.0000020811,0.0000020768, -0.0000020715,0.0000020656,0.0000020606,0.0000020564,0.0000020520, -0.0000020472,0.0000020433,0.0000020405,0.0000020387,0.0000020383, -0.0000020391,0.0000020404,0.0000020424,0.0000020457,0.0000020495, -0.0000020532,0.0000020571,0.0000020609,0.0000020643,0.0000020667, -0.0000020680,0.0000020684,0.0000020681,0.0000020673,0.0000020665, -0.0000020661,0.0000020660,0.0000020661,0.0000020663,0.0000020670, -0.0000020686,0.0000020709,0.0000020740,0.0000020777,0.0000020813, -0.0000020842,0.0000020863,0.0000020876,0.0000020884,0.0000020889, -0.0000020894,0.0000020900,0.0000020906,0.0000020917,0.0000020928, -0.0000020945,0.0000020970,0.0000021000,0.0000021031,0.0000021065, -0.0000021098,0.0000021129,0.0000021157,0.0000021183,0.0000021206, -0.0000021227,0.0000021241,0.0000021252,0.0000021258,0.0000021257, -0.0000021249,0.0000021238,0.0000021227,0.0000021219,0.0000021209, -0.0000021198,0.0000021187,0.0000021173,0.0000021159,0.0000021146, -0.0000021130,0.0000021114,0.0000021099,0.0000021083,0.0000021067, -0.0000021057,0.0000021055,0.0000021058,0.0000021068,0.0000021083, -0.0000021101,0.0000021122,0.0000021146,0.0000021168,0.0000021184, -0.0000021195,0.0000021203,0.0000021209,0.0000021214,0.0000021218, -0.0000021220,0.0000021221,0.0000021220,0.0000021215,0.0000021207, -0.0000021198,0.0000021188,0.0000021177,0.0000021171,0.0000021168, -0.0000021172,0.0000021179,0.0000021186,0.0000021193,0.0000021200, -0.0000021212,0.0000021228,0.0000021251,0.0000021274,0.0000021296, -0.0000021319,0.0000021341,0.0000021358,0.0000021371,0.0000021383, -0.0000021393,0.0000021405,0.0000021420,0.0000021430,0.0000021436, -0.0000021438,0.0000021436,0.0000021431,0.0000021417,0.0000021392, -0.0000021354,0.0000021303,0.0000021248,0.0000021204,0.0000021165, -0.0000021129,0.0000021108,0.0000021103,0.0000021119,0.0000021227, -0.0000021357,0.0000021440,0.0000021542,0.0000021638,0.0000021708, -0.0000021743,0.0000021742,0.0000021708,0.0000021648,0.0000021577, -0.0000021503,0.0000021405,0.0000021297,0.0000021218,0.0000021162, -0.0000021099,0.0000021030,0.0000020983,0.0000020955,0.0000020929, -0.0000020905,0.0000020892,0.0000020889,0.0000020893,0.0000020905, -0.0000020922,0.0000020933,0.0000020937,0.0000020936,0.0000020930, -0.0000020914,0.0000020883,0.0000020842,0.0000020794,0.0000020737, -0.0000020672,0.0000020597,0.0000020523,0.0000020477,0.0000020472, -0.0000020497,0.0000020534,0.0000020566,0.0000020595,0.0000020609, -0.0000020603,0.0000020587,0.0000020560,0.0000020526,0.0000020482, -0.0000020423,0.0000020366,0.0000020316,0.0000020264,0.0000020213, -0.0000020195,0.0000020216,0.0000020267,0.0000020337,0.0000020421, -0.0000020493,0.0000020526,0.0000020516,0.0000020459,0.0000020383, -0.0000020337,0.0000020320,0.0000020221,0.0000020097,0.0000020037, -0.0000020028,0.0000020053,0.0000020171,0.0000020303,0.0000020319, -0.0000020273,0.0000020266,0.0000020317,0.0000020454,0.0000020631, -0.0000020748,0.0000020811,0.0000020886,0.0000020959,0.0000021083, -0.0000021289,0.0000021370,0.0000021457,0.0000021599,0.0000021647, -0.0000021653,0.0000021690,0.0000021723,0.0000021710,0.0000021724, -0.0000021825,0.0000021887,0.0000021876,0.0000021855,0.0000021817, -0.0000021829,0.0000021899,0.0000021928,0.0000021935,0.0000021970, -0.0000022047,0.0000022090,0.0000022089,0.0000022072,0.0000022043, -0.0000022005,0.0000021975,0.0000021957,0.0000021940,0.0000021957, -0.0000021995,0.0000022042,0.0000022076,0.0000022074,0.0000022042, -0.0000021981,0.0000021907,0.0000021850,0.0000021814,0.0000021805, -0.0000021829,0.0000021860,0.0000021871,0.0000021847,0.0000021776, -0.0000021680,0.0000021592,0.0000021558,0.0000021565,0.0000021580, -0.0000021605,0.0000021624,0.0000021630,0.0000021620,0.0000021587, -0.0000021543,0.0000021511,0.0000021494,0.0000021477,0.0000021461, -0.0000021449,0.0000021444,0.0000021446,0.0000021454,0.0000021466, -0.0000021476,0.0000021472,0.0000021451,0.0000021415,0.0000021362, -0.0000021299,0.0000021240,0.0000021163,0.0000021080,0.0000021015, -0.0000020982,0.0000020952,0.0000020911,0.0000020874,0.0000020849, -0.0000020837,0.0000020819,0.0000020809,0.0000020803,0.0000020799, -0.0000020799,0.0000020801,0.0000020801,0.0000020803,0.0000020809, -0.0000020807,0.0000020798,0.0000020783,0.0000020770,0.0000020760, -0.0000020757,0.0000020757,0.0000020760,0.0000020766,0.0000020776, -0.0000020779,0.0000020769,0.0000020760,0.0000020751,0.0000020734, -0.0000020716,0.0000020693,0.0000020674,0.0000020665,0.0000020664, -0.0000020673,0.0000020692,0.0000020718,0.0000020754,0.0000020804, -0.0000020860,0.0000020917,0.0000020971,0.0000021018,0.0000021052, -0.0000021076,0.0000021092,0.0000021100,0.0000021102,0.0000021104, -0.0000021106,0.0000021114,0.0000021121,0.0000021128,0.0000021139, -0.0000021160,0.0000021191,0.0000021219,0.0000021240,0.0000021247, -0.0000021245,0.0000021231,0.0000021217,0.0000021217,0.0000021220, -0.0000021232,0.0000021249,0.0000021269,0.0000021291,0.0000021302, -0.0000021304,0.0000021304,0.0000021303,0.0000021301,0.0000021298, -0.0000021295,0.0000021289,0.0000021279,0.0000021279,0.0000021282, -0.0000021287,0.0000021292,0.0000021295,0.0000021303,0.0000021309, -0.0000021309,0.0000021306,0.0000021299,0.0000021289,0.0000021276, -0.0000021262,0.0000021252,0.0000021258,0.0000021274,0.0000021298, -0.0000021317,0.0000021328,0.0000021331,0.0000021333,0.0000021337, -0.0000021347,0.0000021349,0.0000021353,0.0000021358,0.0000021355, -0.0000021347,0.0000021337,0.0000021320,0.0000021301,0.0000021284, -0.0000021262,0.0000021241,0.0000021229,0.0000021221,0.0000021221, -0.0000021232,0.0000021248,0.0000021275,0.0000021309,0.0000021341, -0.0000021371,0.0000021399,0.0000021423,0.0000021444,0.0000021461, -0.0000021478,0.0000021499,0.0000021525,0.0000021552,0.0000021578, -0.0000021599,0.0000021620,0.0000021640,0.0000021665,0.0000021690, -0.0000021714,0.0000021738,0.0000021760,0.0000021783,0.0000021808, -0.0000021829,0.0000021843,0.0000021856,0.0000021871,0.0000021884, -0.0000021886,0.0000021882,0.0000021873,0.0000021868,0.0000021865, -0.0000021860,0.0000021858,0.0000021860,0.0000021863,0.0000021873, -0.0000021881,0.0000021886,0.0000021894,0.0000021901,0.0000021906, -0.0000021911,0.0000021915,0.0000021929,0.0000021950,0.0000021969, -0.0000021984,0.0000022001,0.0000022025,0.0000022054,0.0000022082, -0.0000022102,0.0000022100,0.0000022085,0.0000022060,0.0000022031, -0.0000021994,0.0000021955,0.0000021917,0.0000021878,0.0000021838, -0.0000021798,0.0000021762,0.0000021730,0.0000021706,0.0000021695, -0.0000021690,0.0000021695,0.0000021703,0.0000021718,0.0000021731, -0.0000021739,0.0000021745,0.0000021747,0.0000021753,0.0000021758, -0.0000021755,0.0000021745,0.0000021735,0.0000021727,0.0000021725, -0.0000021726,0.0000021730,0.0000021744,0.0000021767,0.0000021788, -0.0000021805,0.0000021818,0.0000021828,0.0000021834,0.0000021836, -0.0000021834,0.0000021832,0.0000021831,0.0000021832,0.0000021834, -0.0000021837,0.0000021838,0.0000021838,0.0000021830,0.0000021821, -0.0000021817,0.0000021821,0.0000021828,0.0000021832,0.0000021829, -0.0000021815,0.0000021791,0.0000021760,0.0000021728,0.0000021702, -0.0000021687,0.0000021688,0.0000021701,0.0000021725,0.0000021760, -0.0000021792,0.0000021816,0.0000021830,0.0000021834,0.0000021825, -0.0000021805,0.0000021785,0.0000021768,0.0000021752,0.0000021733, -0.0000021713,0.0000021694,0.0000021675,0.0000021652,0.0000021628, -0.0000021604,0.0000021576,0.0000021546,0.0000021518,0.0000021488, -0.0000021457,0.0000021432,0.0000021409,0.0000021384,0.0000021357, -0.0000021326,0.0000021289,0.0000021248,0.0000021207,0.0000021170, -0.0000021137,0.0000021107,0.0000021081,0.0000021059,0.0000021044, -0.0000021036,0.0000021029,0.0000021019,0.0000020996,0.0000020957, -0.0000020907,0.0000020856,0.0000020813,0.0000020783,0.0000020759, -0.0000020740,0.0000020726,0.0000020718,0.0000020712,0.0000020709, -0.0000020707,0.0000020700,0.0000020691,0.0000020683,0.0000020674, -0.0000020657,0.0000020643,0.0000020626,0.0000020605,0.0000020584, -0.0000020564,0.0000020544,0.0000020522,0.0000020500,0.0000020480, -0.0000020464,0.0000020450,0.0000020441,0.0000020442,0.0000020453, -0.0000020470,0.0000020490,0.0000020511,0.0000020534,0.0000020558, -0.0000020576,0.0000020588,0.0000020598,0.0000020602,0.0000020598, -0.0000020583,0.0000020558,0.0000020529,0.0000020507,0.0000020497, -0.0000020495,0.0000020494,0.0000020494,0.0000020503,0.0000020519, -0.0000020541,0.0000020562,0.0000020582,0.0000020597,0.0000020601, -0.0000020586,0.0000020554,0.0000020507,0.0000020448,0.0000020374, -0.0000020295,0.0000020225,0.0000020175,0.0000020145,0.0000020136, -0.0000020143,0.0000020166,0.0000020193,0.0000020217,0.0000020240, -0.0000020261,0.0000020270,0.0000020274,0.0000020267,0.0000020254, -0.0000020241,0.0000020230,0.0000020226,0.0000020225,0.0000020225, -0.0000020221,0.0000020215,0.0000020203,0.0000020188,0.0000020172, -0.0000020158,0.0000020144,0.0000020127,0.0000020108,0.0000020088, -0.0000020067,0.0000020044,0.0000020018,0.0000019994,0.0000019970, -0.0000019933,0.0000019872,0.0000019794,0.0000019726,0.0000019676, -0.0000019652,0.0000019652,0.0000019652,0.0000019634,0.0000019594, -0.0000019531,0.0000019463,0.0000019403,0.0000019352,0.0000019313, -0.0000019296,0.0000019296,0.0000019297,0.0000019294,0.0000019292, -0.0000019291,0.0000019296,0.0000019310,0.0000019334,0.0000019369, -0.0000019407,0.0000019441,0.0000019461,0.0000019466,0.0000019466, -0.0000019473,0.0000019503,0.0000019560,0.0000019636,0.0000019716, -0.0000019785,0.0000019841,0.0000019888,0.0000019915,0.0000019928, -0.0000019924,0.0000019903,0.0000019876,0.0000019848,0.0000019808, -0.0000019767,0.0000019748,0.0000019744,0.0000019751,0.0000019757, -0.0000019750,0.0000019730,0.0000019698,0.0000019663,0.0000019630, -0.0000019593,0.0000019554,0.0000019523,0.0000019497,0.0000019482, -0.0000019481,0.0000019508,0.0000019553,0.0000019602,0.0000019650, -0.0000019688,0.0000019717,0.0000019742,0.0000019764,0.0000019780, -0.0000019792,0.0000019801,0.0000019808,0.0000019815,0.0000019818, -0.0000019828,0.0000019844,0.0000019872,0.0000019914,0.0000019969, -0.0000020029,0.0000020087,0.0000020140,0.0000020191,0.0000020243, -0.0000020298,0.0000020353,0.0000020402,0.0000020441,0.0000020472, -0.0000020493,0.0000020497,0.0000020496,0.0000020488,0.0000020477, -0.0000020464,0.0000020448,0.0000020428,0.0000020403,0.0000020373, -0.0000020344,0.0000020319,0.0000020306,0.0000020312,0.0000020326, -0.0000020350,0.0000020384,0.0000020424,0.0000020464,0.0000020506, -0.0000020546,0.0000020571,0.0000020592,0.0000020606,0.0000020614, -0.0000020624,0.0000020641,0.0000020661,0.0000020682,0.0000020705, -0.0000020730,0.0000020755,0.0000020779,0.0000020801,0.0000020821, -0.0000020840,0.0000020857,0.0000020872,0.0000020883,0.0000020889, -0.0000020890,0.0000020889,0.0000020890,0.0000020897,0.0000020914, -0.0000020938,0.0000020969,0.0000021005,0.0000021037,0.0000021053, -0.0000021050,0.0000021039,0.0000021037,0.0000021039,0.0000021043, -0.0000021050,0.0000021044,0.0000021027,0.0000021022,0.0000020995, -0.0000020939,0.0000020904,0.0000020857,0.0000020814,0.0000020772, -0.0000020745,0.0000020752,0.0000020757,0.0000020756,0.0000020750, -0.0000020739,0.0000020749,0.0000020794,0.0000020842,0.0000020888, -0.0000020951,0.0000021004,0.0000021026,0.0000021032,0.0000021038, -0.0000021035,0.0000021015,0.0000020985,0.0000020946,0.0000020894, -0.0000020833,0.0000020770,0.0000020708,0.0000020644,0.0000020588, -0.0000020557,0.0000020546,0.0000020532,0.0000020508,0.0000020494, -0.0000020499,0.0000020519,0.0000020543,0.0000020556,0.0000020554, -0.0000020544,0.0000020530,0.0000020519,0.0000020509,0.0000020496, -0.0000020485,0.0000020480,0.0000020480,0.0000020482,0.0000020488, -0.0000020494,0.0000020498,0.0000020497,0.0000020491,0.0000020482, -0.0000020469,0.0000020452,0.0000020432,0.0000020404,0.0000020374, -0.0000020344,0.0000020319,0.0000020300,0.0000020290,0.0000020278, -0.0000020276,0.0000020280,0.0000020290,0.0000020305,0.0000020322, -0.0000020340,0.0000020358,0.0000020381,0.0000020407,0.0000020435, -0.0000020462,0.0000020487,0.0000020511,0.0000020534,0.0000020564, -0.0000020606,0.0000020658,0.0000020716,0.0000020776,0.0000020833, -0.0000020879,0.0000020913,0.0000020933,0.0000020942,0.0000020941, -0.0000020936,0.0000020933,0.0000020932,0.0000020933,0.0000020934, -0.0000020931,0.0000020930,0.0000020940,0.0000020968,0.0000021024, -0.0000021108,0.0000021212,0.0000021322,0.0000021424,0.0000021507, -0.0000021564,0.0000021597,0.0000021612,0.0000021604,0.0000021573, -0.0000021517,0.0000021439,0.0000021354,0.0000021274,0.0000021203, -0.0000021136,0.0000021070,0.0000021007,0.0000020958,0.0000020924, -0.0000020897,0.0000020866,0.0000020833,0.0000020800,0.0000020769, -0.0000020741,0.0000020711,0.0000020676,0.0000020632,0.0000020578, -0.0000020509,0.0000020422,0.0000020320,0.0000020211,0.0000020104, -0.0000020014,0.0000019956,0.0000019922,0.0000019894,0.0000019854, -0.0000019794,0.0000019718,0.0000019635,0.0000019555,0.0000019495, -0.0000019462,0.0000019450,0.0000019451,0.0000019454,0.0000019455, -0.0000019458,0.0000019473,0.0000019502,0.0000019532,0.0000019547, -0.0000019543,0.0000019525,0.0000019508,0.0000019501,0.0000019514, -0.0000019537,0.0000019564,0.0000019588,0.0000019608,0.0000019622, -0.0000019632,0.0000019643,0.0000019661,0.0000019696,0.0000019757, -0.0000019841,0.0000019909,0.0000019955,0.0000019996,0.0000020051, -0.0000020110,0.0000020151,0.0000020168,0.0000020170,0.0000020171, -0.0000020173,0.0000020181,0.0000020187,0.0000020177,0.0000020145, -0.0000020063,0.0000019954,0.0000019859,0.0000019803,0.0000019778, -0.0000019805,0.0000019852,0.0000019911,0.0000019963,0.0000019996, -0.0000020006,0.0000019996,0.0000019976,0.0000019966,0.0000019986, -0.0000020048,0.0000020159,0.0000020296,0.0000020434,0.0000020542, -0.0000020606,0.0000020635,0.0000020624,0.0000020603,0.0000020565, -0.0000020516,0.0000020464,0.0000020425,0.0000020395,0.0000020382, -0.0000020363,0.0000020360,0.0000020367,0.0000020381,0.0000020401, -0.0000020428,0.0000020456,0.0000020486,0.0000020518,0.0000020551, -0.0000020582,0.0000020608,0.0000020626,0.0000020637,0.0000020642, -0.0000020641,0.0000020631,0.0000020610,0.0000020576,0.0000020526, -0.0000020464,0.0000020390,0.0000020320,0.0000020266,0.0000020230, -0.0000020214,0.0000020211,0.0000020222,0.0000020242,0.0000020271, -0.0000020299,0.0000020321,0.0000020330,0.0000020328,0.0000020315, -0.0000020296,0.0000020280,0.0000020264,0.0000020253,0.0000020248, -0.0000020243,0.0000020239,0.0000020231,0.0000020214,0.0000020193, -0.0000020162,0.0000020127,0.0000020094,0.0000020069,0.0000020044, -0.0000020027,0.0000020026,0.0000020028,0.0000020024,0.0000020011, -0.0000019990,0.0000019970,0.0000019957,0.0000019944,0.0000019934, -0.0000019925,0.0000019911,0.0000019892,0.0000019867,0.0000019843, -0.0000019828,0.0000019827,0.0000019843,0.0000019875,0.0000019912, -0.0000019946,0.0000019976,0.0000020003,0.0000020022,0.0000020032, -0.0000020030,0.0000020010,0.0000019978,0.0000019939,0.0000019894, -0.0000019845,0.0000019798,0.0000019765,0.0000019751,0.0000019751, -0.0000019756,0.0000019755,0.0000019746,0.0000019732,0.0000019710, -0.0000019673,0.0000019623,0.0000019565,0.0000019507,0.0000019447, -0.0000019393,0.0000019352,0.0000019323,0.0000019297,0.0000019272, -0.0000019250,0.0000019234,0.0000019223,0.0000019211,0.0000019197, -0.0000019184,0.0000019170,0.0000019159,0.0000019151,0.0000019142, -0.0000019131,0.0000019115,0.0000019093,0.0000019067,0.0000019042, -0.0000019023,0.0000019010,0.0000019002,0.0000019001,0.0000019009, -0.0000019022,0.0000019033,0.0000019038,0.0000019035,0.0000019025, -0.0000019011,0.0000019000,0.0000018996,0.0000018999,0.0000019006, -0.0000019010,0.0000019012,0.0000019015,0.0000019019,0.0000019020, -0.0000019018,0.0000019009,0.0000018998,0.0000018989,0.0000018986, -0.0000018985,0.0000018982,0.0000018978,0.0000018973,0.0000018967, -0.0000018958,0.0000018949,0.0000018939,0.0000018931,0.0000018924, -0.0000018921,0.0000018919,0.0000018919,0.0000018922,0.0000018931, -0.0000018940,0.0000018947,0.0000018953,0.0000018959,0.0000018965, -0.0000018973,0.0000018989,0.0000019012,0.0000019044,0.0000019077, -0.0000019110,0.0000019142,0.0000019175,0.0000019211,0.0000019251, -0.0000019291,0.0000019329,0.0000019360,0.0000019383,0.0000019397, -0.0000019405,0.0000019407,0.0000019401,0.0000019391,0.0000019382, -0.0000019372,0.0000019372,0.0000019385,0.0000019412,0.0000019447, -0.0000019483,0.0000019515,0.0000019540,0.0000019557,0.0000019567, -0.0000019571,0.0000019570,0.0000019563,0.0000019553,0.0000019540, -0.0000019526,0.0000019512,0.0000019501,0.0000019498,0.0000019500, -0.0000019507,0.0000019518,0.0000019529,0.0000019539,0.0000019548, -0.0000019556,0.0000019561,0.0000019564,0.0000019566,0.0000019564, -0.0000019557,0.0000019547,0.0000019534,0.0000019523,0.0000019517, -0.0000019516,0.0000019520,0.0000019530,0.0000019541,0.0000019544, -0.0000019539,0.0000019517,0.0000019468,0.0000019398,0.0000019338, -0.0000019321,0.0000019346,0.0000019399,0.0000019448,0.0000019481, -0.0000019510,0.0000019553,0.0000019612,0.0000019640,0.0000019607, -0.0000019555,0.0000019546,0.0000019597,0.0000019720,0.0000019869, -0.0000019996,0.0000020112,0.0000020230,0.0000020305,0.0000020310, -0.0000020292,0.0000020289,0.0000020331,0.0000020412,0.0000020487, -0.0000020514,0.0000020514,0.0000020495,0.0000020473,0.0000020454, -0.0000020436,0.0000020418,0.0000020402,0.0000020400,0.0000020417, -0.0000020459,0.0000020512,0.0000020549,0.0000020557,0.0000020539, -0.0000020504,0.0000020461,0.0000020407,0.0000020341,0.0000020294, -0.0000020283,0.0000020283,0.0000020281,0.0000020274,0.0000020265, -0.0000020259,0.0000020259,0.0000020270,0.0000020295,0.0000020328, -0.0000020350,0.0000020351,0.0000020334,0.0000020313,0.0000020306, -0.0000020315,0.0000020339,0.0000020367,0.0000020395,0.0000020419, -0.0000020436,0.0000020446,0.0000020449,0.0000020446,0.0000020438, -0.0000020427,0.0000020417,0.0000020410,0.0000020403,0.0000020392, -0.0000020371,0.0000020338,0.0000020300,0.0000020260,0.0000020223, -0.0000020195,0.0000020179,0.0000020170,0.0000020166,0.0000020165, -0.0000020164,0.0000020158,0.0000020148,0.0000020133,0.0000020115, -0.0000020094,0.0000020071,0.0000020048,0.0000020025,0.0000020006, -0.0000019991,0.0000019980,0.0000019972,0.0000019967,0.0000019965, -0.0000019964,0.0000019961,0.0000019957,0.0000019952,0.0000019945, -0.0000019936,0.0000019925,0.0000019908,0.0000019888,0.0000019866, -0.0000019844,0.0000019820,0.0000019794,0.0000019762,0.0000019728, -0.0000019691,0.0000019650,0.0000019608,0.0000019565,0.0000019528, -0.0000019499,0.0000019480,0.0000019468,0.0000019462,0.0000019461, -0.0000019462,0.0000019462,0.0000019461,0.0000019461,0.0000019464, -0.0000019472,0.0000019486,0.0000019504,0.0000019523,0.0000019542, -0.0000019562,0.0000019588,0.0000019621,0.0000019660,0.0000019700, -0.0000019741,0.0000019780,0.0000019815,0.0000019843,0.0000019863, -0.0000019879,0.0000019891,0.0000019897,0.0000019894,0.0000019882, -0.0000019862,0.0000019843,0.0000019831,0.0000019824,0.0000019814, -0.0000019804,0.0000019773,0.0000019711,0.0000019636,0.0000019580, -0.0000019549,0.0000019522,0.0000019480,0.0000019442,0.0000019422, -0.0000019417,0.0000019418,0.0000019417,0.0000019417,0.0000019420, -0.0000019426,0.0000019435,0.0000019442,0.0000019450,0.0000019467, -0.0000019496,0.0000019538,0.0000019587,0.0000019628,0.0000019657, -0.0000019681,0.0000019707,0.0000019732,0.0000019758,0.0000019785, -0.0000019807,0.0000019821,0.0000019818,0.0000019804,0.0000019780, -0.0000019748,0.0000019721,0.0000019707,0.0000019702,0.0000019709, -0.0000019728,0.0000019755,0.0000019787,0.0000019818,0.0000019842, -0.0000019858,0.0000019870,0.0000019875,0.0000019876,0.0000019881, -0.0000019885,0.0000019891,0.0000019899,0.0000019907,0.0000019918, -0.0000019933,0.0000019945,0.0000019952,0.0000019953,0.0000019946, -0.0000019933,0.0000019913,0.0000019898,0.0000019888,0.0000019881, -0.0000019875,0.0000019866,0.0000019856,0.0000019845,0.0000019832, -0.0000019818,0.0000019802,0.0000019784,0.0000019763,0.0000019739, -0.0000019714,0.0000019688,0.0000019666,0.0000019654,0.0000019654, -0.0000019661,0.0000019666,0.0000019670,0.0000019673,0.0000019677, -0.0000019683,0.0000019690,0.0000019696,0.0000019697,0.0000019697, -0.0000019693,0.0000019685,0.0000019681,0.0000019677,0.0000019670, -0.0000019663,0.0000019666,0.0000019680,0.0000019701,0.0000019728, -0.0000019756,0.0000019780,0.0000019809,0.0000019838,0.0000019866, -0.0000019892,0.0000019912,0.0000019926,0.0000019934,0.0000019936, -0.0000019934,0.0000019925,0.0000019912,0.0000019897,0.0000019885, -0.0000019882,0.0000019896,0.0000019922,0.0000019954,0.0000019987, -0.0000020014,0.0000020030,0.0000020040,0.0000020045,0.0000020042, -0.0000020034,0.0000020022,0.0000020013,0.0000020004,0.0000019995, -0.0000019985,0.0000019978,0.0000019973,0.0000019968,0.0000019962, -0.0000019966,0.0000019985,0.0000020020,0.0000020068,0.0000020114, -0.0000020157,0.0000020185,0.0000020205,0.0000020234,0.0000020288, -0.0000020369,0.0000020455,0.0000020538,0.0000020613,0.0000020671, -0.0000020716,0.0000020759,0.0000020787,0.0000020799,0.0000020803, -0.0000020801,0.0000020777,0.0000020735,0.0000020681,0.0000020625, -0.0000020574,0.0000020531,0.0000020487,0.0000020441,0.0000020406, -0.0000020379,0.0000020359,0.0000020349,0.0000020351,0.0000020365, -0.0000020390,0.0000020426,0.0000020468,0.0000020510,0.0000020551, -0.0000020589,0.0000020623,0.0000020647,0.0000020662,0.0000020668, -0.0000020669,0.0000020665,0.0000020661,0.0000020660,0.0000020661, -0.0000020663,0.0000020662,0.0000020661,0.0000020663,0.0000020671, -0.0000020686,0.0000020711,0.0000020739,0.0000020765,0.0000020788, -0.0000020807,0.0000020822,0.0000020836,0.0000020850,0.0000020863, -0.0000020876,0.0000020891,0.0000020904,0.0000020921,0.0000020944, -0.0000020969,0.0000020997,0.0000021027,0.0000021056,0.0000021083, -0.0000021106,0.0000021128,0.0000021149,0.0000021170,0.0000021188, -0.0000021201,0.0000021208,0.0000021210,0.0000021207,0.0000021200, -0.0000021192,0.0000021184,0.0000021175,0.0000021167,0.0000021157, -0.0000021147,0.0000021140,0.0000021134,0.0000021126,0.0000021120, -0.0000021112,0.0000021102,0.0000021090,0.0000021079,0.0000021073, -0.0000021071,0.0000021075,0.0000021085,0.0000021097,0.0000021113, -0.0000021133,0.0000021152,0.0000021168,0.0000021180,0.0000021189, -0.0000021195,0.0000021196,0.0000021193,0.0000021186,0.0000021177, -0.0000021166,0.0000021155,0.0000021141,0.0000021126,0.0000021112, -0.0000021100,0.0000021094,0.0000021095,0.0000021102,0.0000021114, -0.0000021126,0.0000021138,0.0000021149,0.0000021159,0.0000021169, -0.0000021186,0.0000021210,0.0000021239,0.0000021271,0.0000021301, -0.0000021324,0.0000021340,0.0000021352,0.0000021364,0.0000021376, -0.0000021389,0.0000021398,0.0000021404,0.0000021406,0.0000021402, -0.0000021395,0.0000021376,0.0000021345,0.0000021302,0.0000021250, -0.0000021202,0.0000021165,0.0000021136,0.0000021111,0.0000021105, -0.0000021104,0.0000021141,0.0000021268,0.0000021379,0.0000021466, -0.0000021579,0.0000021669,0.0000021724,0.0000021745,0.0000021733, -0.0000021687,0.0000021610,0.0000021524,0.0000021430,0.0000021320, -0.0000021224,0.0000021155,0.0000021088,0.0000021015,0.0000020970, -0.0000020947,0.0000020919,0.0000020887,0.0000020869,0.0000020868, -0.0000020875,0.0000020885,0.0000020898,0.0000020910,0.0000020915, -0.0000020916,0.0000020914,0.0000020907,0.0000020888,0.0000020856, -0.0000020812,0.0000020759,0.0000020696,0.0000020622,0.0000020543, -0.0000020481,0.0000020453,0.0000020455,0.0000020483,0.0000020517, -0.0000020550,0.0000020573,0.0000020576,0.0000020572,0.0000020554, -0.0000020525,0.0000020485,0.0000020433,0.0000020386,0.0000020347, -0.0000020310,0.0000020260,0.0000020210,0.0000020192,0.0000020211, -0.0000020282,0.0000020374,0.0000020461,0.0000020521,0.0000020537, -0.0000020518,0.0000020458,0.0000020390,0.0000020362,0.0000020307, -0.0000020171,0.0000020060,0.0000020021,0.0000020023,0.0000020100, -0.0000020254,0.0000020323,0.0000020294,0.0000020266,0.0000020280, -0.0000020390,0.0000020586,0.0000020730,0.0000020786,0.0000020830, -0.0000020895,0.0000021004,0.0000021219,0.0000021329,0.0000021399, -0.0000021560,0.0000021640,0.0000021652,0.0000021672,0.0000021713, -0.0000021714,0.0000021719,0.0000021794,0.0000021884,0.0000021894, -0.0000021880,0.0000021848,0.0000021824,0.0000021867,0.0000021929, -0.0000021952,0.0000021962,0.0000021994,0.0000022062,0.0000022090, -0.0000022076,0.0000022046,0.0000022013,0.0000021982,0.0000021966, -0.0000021942,0.0000021928,0.0000021938,0.0000021959,0.0000021996, -0.0000022021,0.0000022013,0.0000021980,0.0000021922,0.0000021876, -0.0000021842,0.0000021824,0.0000021828,0.0000021841,0.0000021844, -0.0000021818,0.0000021744,0.0000021656,0.0000021591,0.0000021576, -0.0000021587,0.0000021611,0.0000021639,0.0000021663,0.0000021674, -0.0000021669,0.0000021647,0.0000021601,0.0000021553,0.0000021519, -0.0000021489,0.0000021462,0.0000021441,0.0000021431,0.0000021429, -0.0000021439,0.0000021457,0.0000021472,0.0000021475,0.0000021465, -0.0000021438,0.0000021392,0.0000021344,0.0000021312,0.0000021265, -0.0000021200,0.0000021133,0.0000021082,0.0000021046,0.0000021005, -0.0000020964,0.0000020937,0.0000020925,0.0000020912,0.0000020900, -0.0000020888,0.0000020877,0.0000020871,0.0000020868,0.0000020856, -0.0000020848,0.0000020840,0.0000020829,0.0000020809,0.0000020786, -0.0000020763,0.0000020742,0.0000020729,0.0000020720,0.0000020719, -0.0000020727,0.0000020746,0.0000020762,0.0000020768,0.0000020766, -0.0000020761,0.0000020750,0.0000020725,0.0000020694,0.0000020664, -0.0000020636,0.0000020608,0.0000020591,0.0000020593,0.0000020599, -0.0000020609,0.0000020633,0.0000020669,0.0000020714,0.0000020769, -0.0000020822,0.0000020870,0.0000020914,0.0000020951,0.0000020972, -0.0000020982,0.0000020986,0.0000020988,0.0000020983,0.0000020976, -0.0000020973,0.0000020972,0.0000020980,0.0000020995,0.0000021015, -0.0000021029,0.0000021024,0.0000021014,0.0000020996,0.0000020984, -0.0000020981,0.0000020982,0.0000020992,0.0000021006,0.0000021029, -0.0000021055,0.0000021071,0.0000021083,0.0000021099,0.0000021114, -0.0000021126,0.0000021135,0.0000021142,0.0000021149,0.0000021152, -0.0000021157,0.0000021164,0.0000021171,0.0000021179,0.0000021187, -0.0000021199,0.0000021211,0.0000021216,0.0000021218,0.0000021218, -0.0000021214,0.0000021206,0.0000021194,0.0000021186,0.0000021196, -0.0000021222,0.0000021257,0.0000021282,0.0000021311,0.0000021329, -0.0000021333,0.0000021343,0.0000021352,0.0000021356,0.0000021358, -0.0000021355,0.0000021348,0.0000021337,0.0000021324,0.0000021306, -0.0000021290,0.0000021277,0.0000021266,0.0000021258,0.0000021253, -0.0000021251,0.0000021254,0.0000021254,0.0000021255,0.0000021265, -0.0000021275,0.0000021291,0.0000021305,0.0000021319,0.0000021333, -0.0000021344,0.0000021351,0.0000021355,0.0000021362,0.0000021375, -0.0000021389,0.0000021404,0.0000021417,0.0000021434,0.0000021456, -0.0000021482,0.0000021510,0.0000021540,0.0000021569,0.0000021597, -0.0000021625,0.0000021659,0.0000021696,0.0000021724,0.0000021748, -0.0000021770,0.0000021791,0.0000021802,0.0000021804,0.0000021804, -0.0000021801,0.0000021799,0.0000021798,0.0000021802,0.0000021802, -0.0000021801,0.0000021805,0.0000021805,0.0000021801,0.0000021796, -0.0000021790,0.0000021784,0.0000021779,0.0000021785,0.0000021802, -0.0000021825,0.0000021848,0.0000021870,0.0000021895,0.0000021926, -0.0000021965,0.0000022007,0.0000022040,0.0000022059,0.0000022062, -0.0000022058,0.0000022044,0.0000022029,0.0000022011,0.0000021987, -0.0000021964,0.0000021931,0.0000021891,0.0000021847,0.0000021803, -0.0000021769,0.0000021746,0.0000021730,0.0000021721,0.0000021719, -0.0000021723,0.0000021729,0.0000021731,0.0000021731,0.0000021736, -0.0000021751,0.0000021766,0.0000021778,0.0000021785,0.0000021787, -0.0000021789,0.0000021796,0.0000021805,0.0000021815,0.0000021832, -0.0000021848,0.0000021860,0.0000021866,0.0000021868,0.0000021864, -0.0000021858,0.0000021853,0.0000021847,0.0000021840,0.0000021833, -0.0000021830,0.0000021829,0.0000021830,0.0000021834,0.0000021836, -0.0000021834,0.0000021830,0.0000021832,0.0000021838,0.0000021842, -0.0000021842,0.0000021838,0.0000021824,0.0000021800,0.0000021768, -0.0000021735,0.0000021705,0.0000021688,0.0000021687,0.0000021700, -0.0000021730,0.0000021773,0.0000021813,0.0000021843,0.0000021872, -0.0000021889,0.0000021893,0.0000021889,0.0000021882,0.0000021872, -0.0000021860,0.0000021847,0.0000021835,0.0000021823,0.0000021809, -0.0000021791,0.0000021769,0.0000021742,0.0000021709,0.0000021673, -0.0000021638,0.0000021599,0.0000021557,0.0000021518,0.0000021479, -0.0000021438,0.0000021393,0.0000021344,0.0000021291,0.0000021236, -0.0000021188,0.0000021151,0.0000021120,0.0000021094,0.0000021072, -0.0000021056,0.0000021050,0.0000021050,0.0000021056,0.0000021060, -0.0000021059,0.0000021046,0.0000021028,0.0000021008,0.0000020988, -0.0000020966,0.0000020942,0.0000020917,0.0000020893,0.0000020871, -0.0000020849,0.0000020826,0.0000020801,0.0000020774,0.0000020745, -0.0000020715,0.0000020685,0.0000020658,0.0000020634,0.0000020609, -0.0000020585,0.0000020562,0.0000020539,0.0000020515,0.0000020491, -0.0000020467,0.0000020436,0.0000020401,0.0000020372,0.0000020351, -0.0000020336,0.0000020337,0.0000020346,0.0000020361,0.0000020386, -0.0000020416,0.0000020448,0.0000020478,0.0000020503,0.0000020522, -0.0000020532,0.0000020531,0.0000020517,0.0000020495,0.0000020476, -0.0000020465,0.0000020461,0.0000020459,0.0000020458,0.0000020457, -0.0000020464,0.0000020480,0.0000020499,0.0000020517,0.0000020530, -0.0000020536,0.0000020533,0.0000020517,0.0000020489,0.0000020443, -0.0000020387,0.0000020325,0.0000020270,0.0000020229,0.0000020195, -0.0000020168,0.0000020153,0.0000020151,0.0000020158,0.0000020168, -0.0000020183,0.0000020201,0.0000020219,0.0000020232,0.0000020236, -0.0000020235,0.0000020232,0.0000020228,0.0000020225,0.0000020225, -0.0000020227,0.0000020231,0.0000020236,0.0000020237,0.0000020230, -0.0000020219,0.0000020210,0.0000020203,0.0000020194,0.0000020179, -0.0000020159,0.0000020138,0.0000020115,0.0000020086,0.0000020053, -0.0000020021,0.0000019989,0.0000019947,0.0000019877,0.0000019794, -0.0000019721,0.0000019679,0.0000019672,0.0000019678,0.0000019673, -0.0000019646,0.0000019582,0.0000019501,0.0000019427,0.0000019359, -0.0000019306,0.0000019280,0.0000019264,0.0000019260,0.0000019258, -0.0000019253,0.0000019248,0.0000019247,0.0000019257,0.0000019279, -0.0000019316,0.0000019358,0.0000019391,0.0000019413,0.0000019430, -0.0000019447,0.0000019470,0.0000019504,0.0000019557,0.0000019624, -0.0000019697,0.0000019763,0.0000019815,0.0000019857,0.0000019884, -0.0000019896,0.0000019890,0.0000019870,0.0000019846,0.0000019819, -0.0000019789,0.0000019765,0.0000019753,0.0000019744,0.0000019735, -0.0000019723,0.0000019707,0.0000019692,0.0000019676,0.0000019655, -0.0000019629,0.0000019594,0.0000019554,0.0000019521,0.0000019499, -0.0000019493,0.0000019500,0.0000019530,0.0000019567,0.0000019608, -0.0000019652,0.0000019685,0.0000019715,0.0000019743,0.0000019766, -0.0000019784,0.0000019798,0.0000019811,0.0000019821,0.0000019828, -0.0000019830,0.0000019833,0.0000019838,0.0000019845,0.0000019865, -0.0000019897,0.0000019941,0.0000019990,0.0000020038,0.0000020084, -0.0000020130,0.0000020181,0.0000020235,0.0000020290,0.0000020343, -0.0000020390,0.0000020432,0.0000020465,0.0000020484,0.0000020491, -0.0000020485,0.0000020475,0.0000020461,0.0000020451,0.0000020441, -0.0000020430,0.0000020414,0.0000020395,0.0000020376,0.0000020361, -0.0000020354,0.0000020356,0.0000020367,0.0000020381,0.0000020396, -0.0000020422,0.0000020460,0.0000020507,0.0000020560,0.0000020610, -0.0000020646,0.0000020684,0.0000020720,0.0000020749,0.0000020773, -0.0000020795,0.0000020817,0.0000020839,0.0000020861,0.0000020881, -0.0000020897,0.0000020909,0.0000020917,0.0000020918,0.0000020913, -0.0000020905,0.0000020897,0.0000020891,0.0000020888,0.0000020890, -0.0000020902,0.0000020926,0.0000020960,0.0000021004,0.0000021048, -0.0000021073,0.0000021069,0.0000021052,0.0000021044,0.0000021044, -0.0000021050,0.0000021055,0.0000021043,0.0000021028,0.0000021026, -0.0000020990,0.0000020939,0.0000020905,0.0000020856,0.0000020816, -0.0000020776,0.0000020760,0.0000020769,0.0000020774,0.0000020776, -0.0000020768,0.0000020755,0.0000020763,0.0000020805,0.0000020855, -0.0000020903,0.0000020966,0.0000021018,0.0000021041,0.0000021044, -0.0000021044,0.0000021036,0.0000021016,0.0000020987,0.0000020945, -0.0000020892,0.0000020833,0.0000020768,0.0000020695,0.0000020621, -0.0000020567,0.0000020539,0.0000020514,0.0000020480,0.0000020454, -0.0000020451,0.0000020468,0.0000020497,0.0000020523,0.0000020534, -0.0000020530,0.0000020516,0.0000020503,0.0000020496,0.0000020488, -0.0000020478,0.0000020472,0.0000020471,0.0000020472,0.0000020475, -0.0000020479,0.0000020482,0.0000020482,0.0000020477,0.0000020468, -0.0000020456,0.0000020444,0.0000020429,0.0000020410,0.0000020388, -0.0000020362,0.0000020339,0.0000020318,0.0000020302,0.0000020289, -0.0000020279,0.0000020273,0.0000020275,0.0000020275,0.0000020282, -0.0000020292,0.0000020300,0.0000020308,0.0000020318,0.0000020331, -0.0000020346,0.0000020362,0.0000020378,0.0000020392,0.0000020406, -0.0000020426,0.0000020457,0.0000020497,0.0000020544,0.0000020599, -0.0000020659,0.0000020721,0.0000020780,0.0000020830,0.0000020866, -0.0000020888,0.0000020896,0.0000020892,0.0000020886,0.0000020880, -0.0000020876,0.0000020875,0.0000020874,0.0000020870,0.0000020870, -0.0000020880,0.0000020909,0.0000020965,0.0000021046,0.0000021142, -0.0000021239,0.0000021323,0.0000021387,0.0000021426,0.0000021440, -0.0000021431,0.0000021402,0.0000021352,0.0000021287,0.0000021213, -0.0000021132,0.0000021052,0.0000020977,0.0000020909,0.0000020855, -0.0000020815,0.0000020783,0.0000020755,0.0000020731,0.0000020711, -0.0000020695,0.0000020681,0.0000020663,0.0000020636,0.0000020599, -0.0000020550,0.0000020487,0.0000020404,0.0000020305,0.0000020200, -0.0000020098,0.0000020012,0.0000019949,0.0000019908,0.0000019876, -0.0000019838,0.0000019783,0.0000019711,0.0000019630,0.0000019552, -0.0000019490,0.0000019453,0.0000019444,0.0000019446,0.0000019452, -0.0000019455,0.0000019457,0.0000019467,0.0000019490,0.0000019516, -0.0000019534,0.0000019533,0.0000019518,0.0000019499,0.0000019492, -0.0000019502,0.0000019525,0.0000019553,0.0000019579,0.0000019599, -0.0000019613,0.0000019621,0.0000019627,0.0000019640,0.0000019669, -0.0000019729,0.0000019816,0.0000019891,0.0000019941,0.0000019981, -0.0000020033,0.0000020093,0.0000020142,0.0000020164,0.0000020170, -0.0000020164,0.0000020159,0.0000020159,0.0000020165,0.0000020165, -0.0000020147,0.0000020090,0.0000019991,0.0000019880,0.0000019794, -0.0000019755,0.0000019733,0.0000019756,0.0000019796,0.0000019846, -0.0000019891,0.0000019920,0.0000019931,0.0000019926,0.0000019918, -0.0000019920,0.0000019950,0.0000020021,0.0000020133,0.0000020269, -0.0000020403,0.0000020510,0.0000020580,0.0000020612,0.0000020607, -0.0000020589,0.0000020549,0.0000020501,0.0000020453,0.0000020410, -0.0000020379,0.0000020353,0.0000020340,0.0000020321,0.0000020316, -0.0000020316,0.0000020325,0.0000020337,0.0000020352,0.0000020370, -0.0000020390,0.0000020411,0.0000020430,0.0000020441,0.0000020443, -0.0000020437,0.0000020425,0.0000020405,0.0000020376,0.0000020338, -0.0000020295,0.0000020253,0.0000020222,0.0000020207,0.0000020201, -0.0000020204,0.0000020215,0.0000020235,0.0000020265,0.0000020301, -0.0000020330,0.0000020344,0.0000020340,0.0000020317,0.0000020279, -0.0000020241,0.0000020210,0.0000020186,0.0000020169,0.0000020161, -0.0000020161,0.0000020165,0.0000020169,0.0000020168,0.0000020161, -0.0000020145,0.0000020122,0.0000020095,0.0000020072,0.0000020042, -0.0000020017,0.0000020003,0.0000019990,0.0000019975,0.0000019953, -0.0000019927,0.0000019906,0.0000019894,0.0000019891,0.0000019892, -0.0000019890,0.0000019878,0.0000019861,0.0000019833,0.0000019802, -0.0000019783,0.0000019775,0.0000019781,0.0000019806,0.0000019842, -0.0000019879,0.0000019916,0.0000019947,0.0000019971,0.0000019985, -0.0000019985,0.0000019967,0.0000019932,0.0000019888,0.0000019835, -0.0000019775,0.0000019718,0.0000019672,0.0000019647,0.0000019642, -0.0000019645,0.0000019649,0.0000019654,0.0000019656,0.0000019649, -0.0000019624,0.0000019586,0.0000019539,0.0000019489,0.0000019439, -0.0000019391,0.0000019355,0.0000019332,0.0000019312,0.0000019289, -0.0000019264,0.0000019238,0.0000019216,0.0000019199,0.0000019184, -0.0000019166,0.0000019147,0.0000019130,0.0000019119,0.0000019114, -0.0000019107,0.0000019092,0.0000019067,0.0000019037,0.0000019008, -0.0000018981,0.0000018957,0.0000018942,0.0000018937,0.0000018939, -0.0000018947,0.0000018954,0.0000018956,0.0000018953,0.0000018946, -0.0000018935,0.0000018923,0.0000018918,0.0000018921,0.0000018929, -0.0000018936,0.0000018942,0.0000018950,0.0000018960,0.0000018969, -0.0000018973,0.0000018972,0.0000018966,0.0000018961,0.0000018957, -0.0000018954,0.0000018950,0.0000018942,0.0000018929,0.0000018913, -0.0000018896,0.0000018878,0.0000018862,0.0000018847,0.0000018834, -0.0000018823,0.0000018815,0.0000018809,0.0000018808,0.0000018814, -0.0000018825,0.0000018840,0.0000018858,0.0000018878,0.0000018897, -0.0000018918,0.0000018942,0.0000018970,0.0000019000,0.0000019031, -0.0000019062,0.0000019088,0.0000019109,0.0000019128,0.0000019150, -0.0000019178,0.0000019212,0.0000019247,0.0000019281,0.0000019313, -0.0000019342,0.0000019364,0.0000019379,0.0000019383,0.0000019377, -0.0000019367,0.0000019357,0.0000019354,0.0000019363,0.0000019381, -0.0000019404,0.0000019432,0.0000019460,0.0000019483,0.0000019500, -0.0000019510,0.0000019513,0.0000019513,0.0000019509,0.0000019503, -0.0000019497,0.0000019490,0.0000019484,0.0000019482,0.0000019482, -0.0000019485,0.0000019490,0.0000019497,0.0000019507,0.0000019518, -0.0000019528,0.0000019536,0.0000019543,0.0000019550,0.0000019554, -0.0000019555,0.0000019549,0.0000019539,0.0000019528,0.0000019517, -0.0000019509,0.0000019507,0.0000019511,0.0000019522,0.0000019533, -0.0000019536,0.0000019531,0.0000019505,0.0000019449,0.0000019375, -0.0000019321,0.0000019314,0.0000019353,0.0000019409,0.0000019452, -0.0000019482,0.0000019513,0.0000019562,0.0000019611,0.0000019613, -0.0000019567,0.0000019523,0.0000019530,0.0000019610,0.0000019743, -0.0000019883,0.0000020000,0.0000020112,0.0000020225,0.0000020296, -0.0000020298,0.0000020284,0.0000020276,0.0000020309,0.0000020378, -0.0000020452,0.0000020498,0.0000020501,0.0000020493,0.0000020474, -0.0000020452,0.0000020429,0.0000020404,0.0000020384,0.0000020380, -0.0000020396,0.0000020439,0.0000020495,0.0000020540,0.0000020559, -0.0000020553,0.0000020526,0.0000020487,0.0000020438,0.0000020375, -0.0000020317,0.0000020289,0.0000020286,0.0000020285,0.0000020281, -0.0000020278,0.0000020279,0.0000020285,0.0000020302,0.0000020330, -0.0000020354,0.0000020363,0.0000020358,0.0000020345,0.0000020332, -0.0000020329,0.0000020338,0.0000020357,0.0000020379,0.0000020402, -0.0000020420,0.0000020435,0.0000020446,0.0000020450,0.0000020450, -0.0000020449,0.0000020448,0.0000020448,0.0000020446,0.0000020438, -0.0000020420,0.0000020391,0.0000020356,0.0000020320,0.0000020287, -0.0000020262,0.0000020248,0.0000020242,0.0000020238,0.0000020232, -0.0000020225,0.0000020212,0.0000020193,0.0000020168,0.0000020143, -0.0000020118,0.0000020094,0.0000020074,0.0000020057,0.0000020044, -0.0000020034,0.0000020027,0.0000020020,0.0000020013,0.0000020004, -0.0000019993,0.0000019983,0.0000019973,0.0000019963,0.0000019952, -0.0000019942,0.0000019930,0.0000019918,0.0000019905,0.0000019891, -0.0000019877,0.0000019863,0.0000019847,0.0000019827,0.0000019803, -0.0000019773,0.0000019737,0.0000019695,0.0000019649,0.0000019602, -0.0000019558,0.0000019518,0.0000019488,0.0000019470,0.0000019464, -0.0000019464,0.0000019464,0.0000019464,0.0000019461,0.0000019456, -0.0000019453,0.0000019454,0.0000019461,0.0000019476,0.0000019495, -0.0000019516,0.0000019540,0.0000019566,0.0000019597,0.0000019635, -0.0000019677,0.0000019720,0.0000019763,0.0000019802,0.0000019835, -0.0000019862,0.0000019882,0.0000019895,0.0000019899,0.0000019888, -0.0000019870,0.0000019843,0.0000019820,0.0000019807,0.0000019805, -0.0000019805,0.0000019788,0.0000019758,0.0000019695,0.0000019614, -0.0000019556,0.0000019524,0.0000019495,0.0000019456,0.0000019426, -0.0000019439,0.0000019422,0.0000019422,0.0000019429,0.0000019434, -0.0000019437,0.0000019442,0.0000019446,0.0000019448,0.0000019451, -0.0000019463,0.0000019490,0.0000019529,0.0000019573,0.0000019613, -0.0000019648,0.0000019675,0.0000019690,0.0000019699,0.0000019708, -0.0000019722,0.0000019736,0.0000019749,0.0000019756,0.0000019750, -0.0000019732,0.0000019719,0.0000019704,0.0000019695,0.0000019694, -0.0000019701,0.0000019718,0.0000019746,0.0000019776,0.0000019805, -0.0000019828,0.0000019843,0.0000019851,0.0000019855,0.0000019854, -0.0000019852,0.0000019852,0.0000019854,0.0000019858,0.0000019864, -0.0000019868,0.0000019868,0.0000019863,0.0000019852,0.0000019835, -0.0000019812,0.0000019793,0.0000019781,0.0000019770,0.0000019759, -0.0000019748,0.0000019738,0.0000019730,0.0000019724,0.0000019721, -0.0000019717,0.0000019713,0.0000019704,0.0000019691,0.0000019677, -0.0000019663,0.0000019654,0.0000019651,0.0000019654,0.0000019668, -0.0000019679,0.0000019684,0.0000019689,0.0000019697,0.0000019705, -0.0000019708,0.0000019711,0.0000019710,0.0000019707,0.0000019701, -0.0000019692,0.0000019684,0.0000019674,0.0000019661,0.0000019647, -0.0000019645,0.0000019653,0.0000019668,0.0000019689,0.0000019713, -0.0000019733,0.0000019754,0.0000019780,0.0000019806,0.0000019827, -0.0000019843,0.0000019853,0.0000019861,0.0000019868,0.0000019870, -0.0000019867,0.0000019862,0.0000019856,0.0000019845,0.0000019837, -0.0000019843,0.0000019855,0.0000019876,0.0000019899,0.0000019922, -0.0000019941,0.0000019956,0.0000019965,0.0000019966,0.0000019962, -0.0000019952,0.0000019940,0.0000019926,0.0000019913,0.0000019900, -0.0000019888,0.0000019876,0.0000019867,0.0000019859,0.0000019863, -0.0000019884,0.0000019922,0.0000019974,0.0000020030,0.0000020086, -0.0000020134,0.0000020169,0.0000020198,0.0000020244,0.0000020317, -0.0000020406,0.0000020500,0.0000020582,0.0000020643,0.0000020693, -0.0000020735,0.0000020759,0.0000020766,0.0000020766,0.0000020761, -0.0000020736,0.0000020695,0.0000020645,0.0000020592,0.0000020542, -0.0000020495,0.0000020452,0.0000020412,0.0000020382,0.0000020357, -0.0000020336,0.0000020322,0.0000020321,0.0000020334,0.0000020358, -0.0000020397,0.0000020444,0.0000020492,0.0000020533,0.0000020570, -0.0000020603,0.0000020627,0.0000020642,0.0000020648,0.0000020650, -0.0000020649,0.0000020649,0.0000020652,0.0000020657,0.0000020662, -0.0000020662,0.0000020660,0.0000020659,0.0000020660,0.0000020665, -0.0000020676,0.0000020691,0.0000020707,0.0000020723,0.0000020736, -0.0000020748,0.0000020764,0.0000020781,0.0000020799,0.0000020819, -0.0000020836,0.0000020851,0.0000020869,0.0000020892,0.0000020917, -0.0000020945,0.0000020975,0.0000021002,0.0000021029,0.0000021053, -0.0000021077,0.0000021098,0.0000021119,0.0000021138,0.0000021152, -0.0000021159,0.0000021161,0.0000021159,0.0000021155,0.0000021150, -0.0000021143,0.0000021134,0.0000021125,0.0000021115,0.0000021106, -0.0000021102,0.0000021102,0.0000021102,0.0000021102,0.0000021102, -0.0000021098,0.0000021095,0.0000021095,0.0000021099,0.0000021104, -0.0000021109,0.0000021115,0.0000021122,0.0000021130,0.0000021142, -0.0000021154,0.0000021165,0.0000021175,0.0000021182,0.0000021187, -0.0000021188,0.0000021186,0.0000021179,0.0000021170,0.0000021159, -0.0000021145,0.0000021128,0.0000021108,0.0000021088,0.0000021070, -0.0000021056,0.0000021045,0.0000021043,0.0000021049,0.0000021062, -0.0000021079,0.0000021099,0.0000021114,0.0000021124,0.0000021133, -0.0000021149,0.0000021177,0.0000021217,0.0000021258,0.0000021290, -0.0000021310,0.0000021324,0.0000021339,0.0000021352,0.0000021361, -0.0000021368,0.0000021375,0.0000021375,0.0000021371,0.0000021358, -0.0000021331,0.0000021291,0.0000021245,0.0000021198,0.0000021161, -0.0000021136,0.0000021115,0.0000021106,0.0000021107,0.0000021110, -0.0000021179,0.0000021312,0.0000021404,0.0000021498,0.0000021613, -0.0000021692,0.0000021730,0.0000021736,0.0000021711,0.0000021647, -0.0000021558,0.0000021455,0.0000021349,0.0000021245,0.0000021160, -0.0000021083,0.0000021004,0.0000020959,0.0000020939,0.0000020910, -0.0000020874,0.0000020853,0.0000020852,0.0000020865,0.0000020879, -0.0000020888,0.0000020895,0.0000020899,0.0000020898,0.0000020896, -0.0000020892,0.0000020883,0.0000020861,0.0000020826,0.0000020780, -0.0000020723,0.0000020650,0.0000020568,0.0000020498,0.0000020450, -0.0000020429,0.0000020435,0.0000020464,0.0000020500,0.0000020529, -0.0000020547,0.0000020552,0.0000020545,0.0000020526,0.0000020492, -0.0000020445,0.0000020397,0.0000020360,0.0000020335,0.0000020303, -0.0000020254,0.0000020206,0.0000020188,0.0000020220,0.0000020306, -0.0000020411,0.0000020499,0.0000020545,0.0000020550,0.0000020525, -0.0000020464,0.0000020403,0.0000020369,0.0000020266,0.0000020113, -0.0000020026,0.0000020010,0.0000020044,0.0000020193,0.0000020317, -0.0000020318,0.0000020282,0.0000020278,0.0000020346,0.0000020536, -0.0000020706,0.0000020770,0.0000020789,0.0000020837,0.0000020933, -0.0000021147,0.0000021285,0.0000021342,0.0000021503,0.0000021618, -0.0000021646,0.0000021656,0.0000021698,0.0000021713,0.0000021717, -0.0000021763,0.0000021862,0.0000021911,0.0000021898,0.0000021880, -0.0000021839,0.0000021834,0.0000021891,0.0000021955,0.0000021975, -0.0000021986,0.0000022024,0.0000022069,0.0000022073,0.0000022051, -0.0000022018,0.0000021984,0.0000021962,0.0000021943,0.0000021928, -0.0000021934,0.0000021941,0.0000021958,0.0000021993,0.0000022011, -0.0000022000,0.0000021964,0.0000021919,0.0000021876,0.0000021849, -0.0000021838,0.0000021829,0.0000021815,0.0000021778,0.0000021714, -0.0000021640,0.0000021595,0.0000021593,0.0000021608,0.0000021636, -0.0000021668,0.0000021694,0.0000021709,0.0000021707,0.0000021690, -0.0000021649,0.0000021595,0.0000021548,0.0000021504,0.0000021466, -0.0000021441,0.0000021422,0.0000021413,0.0000021413,0.0000021420, -0.0000021429,0.0000021432,0.0000021431,0.0000021424,0.0000021393, -0.0000021363,0.0000021345,0.0000021317,0.0000021278,0.0000021231, -0.0000021191,0.0000021156,0.0000021117,0.0000021075,0.0000021043, -0.0000021022,0.0000021005,0.0000020994,0.0000020982,0.0000020964, -0.0000020948,0.0000020937,0.0000020922,0.0000020905,0.0000020886, -0.0000020867,0.0000020845,0.0000020813,0.0000020775,0.0000020743, -0.0000020721,0.0000020700,0.0000020688,0.0000020687,0.0000020696, -0.0000020712,0.0000020721,0.0000020725,0.0000020728,0.0000020726, -0.0000020715,0.0000020691,0.0000020661,0.0000020633,0.0000020603, -0.0000020581,0.0000020568,0.0000020563,0.0000020563,0.0000020571, -0.0000020585,0.0000020608,0.0000020642,0.0000020675,0.0000020707, -0.0000020739,0.0000020768,0.0000020791,0.0000020807,0.0000020820, -0.0000020833,0.0000020838,0.0000020845,0.0000020853,0.0000020861, -0.0000020874,0.0000020892,0.0000020910,0.0000020917,0.0000020907, -0.0000020888,0.0000020866,0.0000020850,0.0000020835,0.0000020827, -0.0000020828,0.0000020837,0.0000020848,0.0000020856,0.0000020858, -0.0000020861,0.0000020874,0.0000020892,0.0000020910,0.0000020924, -0.0000020941,0.0000020957,0.0000020970,0.0000020982,0.0000020996, -0.0000021008,0.0000021021,0.0000021039,0.0000021058,0.0000021075, -0.0000021083,0.0000021091,0.0000021093,0.0000021091,0.0000021080, -0.0000021071,0.0000021069,0.0000021078,0.0000021105,0.0000021144, -0.0000021182,0.0000021218,0.0000021247,0.0000021271,0.0000021297, -0.0000021326,0.0000021348,0.0000021358,0.0000021355,0.0000021353, -0.0000021344,0.0000021331,0.0000021312,0.0000021292,0.0000021275, -0.0000021265,0.0000021262,0.0000021260,0.0000021265,0.0000021271, -0.0000021276,0.0000021284,0.0000021290,0.0000021296,0.0000021301, -0.0000021307,0.0000021311,0.0000021312,0.0000021312,0.0000021309, -0.0000021305,0.0000021303,0.0000021306,0.0000021310,0.0000021317, -0.0000021327,0.0000021347,0.0000021368,0.0000021390,0.0000021413, -0.0000021436,0.0000021460,0.0000021480,0.0000021505,0.0000021534, -0.0000021569,0.0000021601,0.0000021626,0.0000021648,0.0000021668, -0.0000021683,0.0000021697,0.0000021705,0.0000021709,0.0000021710, -0.0000021713,0.0000021718,0.0000021720,0.0000021719,0.0000021718, -0.0000021714,0.0000021706,0.0000021694,0.0000021682,0.0000021670, -0.0000021666,0.0000021672,0.0000021683,0.0000021700,0.0000021723, -0.0000021747,0.0000021775,0.0000021809,0.0000021851,0.0000021896, -0.0000021934,0.0000021959,0.0000021976,0.0000021988,0.0000021996, -0.0000022000,0.0000022001,0.0000021995,0.0000021996,0.0000021986, -0.0000021967,0.0000021939,0.0000021904,0.0000021871,0.0000021841, -0.0000021811,0.0000021782,0.0000021759,0.0000021746,0.0000021740, -0.0000021733,0.0000021728,0.0000021733,0.0000021749,0.0000021767, -0.0000021787,0.0000021804,0.0000021816,0.0000021826,0.0000021841, -0.0000021858,0.0000021878,0.0000021898,0.0000021916,0.0000021928, -0.0000021934,0.0000021930,0.0000021917,0.0000021902,0.0000021886, -0.0000021868,0.0000021848,0.0000021830,0.0000021821,0.0000021819, -0.0000021822,0.0000021827,0.0000021829,0.0000021828,0.0000021831, -0.0000021839,0.0000021844,0.0000021843,0.0000021840,0.0000021834, -0.0000021820,0.0000021798,0.0000021767,0.0000021734,0.0000021703, -0.0000021684,0.0000021678,0.0000021687,0.0000021714,0.0000021754, -0.0000021798,0.0000021840,0.0000021876,0.0000021902,0.0000021915, -0.0000021925,0.0000021927,0.0000021922,0.0000021913,0.0000021904, -0.0000021897,0.0000021891,0.0000021887,0.0000021879,0.0000021863, -0.0000021842,0.0000021814,0.0000021780,0.0000021746,0.0000021708, -0.0000021666,0.0000021628,0.0000021586,0.0000021537,0.0000021480, -0.0000021417,0.0000021349,0.0000021283,0.0000021225,0.0000021179, -0.0000021141,0.0000021110,0.0000021085,0.0000021065,0.0000021053, -0.0000021055,0.0000021060,0.0000021069,0.0000021077,0.0000021087, -0.0000021096,0.0000021103,0.0000021106,0.0000021106,0.0000021099, -0.0000021087,0.0000021071,0.0000021053,0.0000021029,0.0000020997, -0.0000020959,0.0000020916,0.0000020870,0.0000020820,0.0000020771, -0.0000020727,0.0000020688,0.0000020655,0.0000020624,0.0000020593, -0.0000020560,0.0000020527,0.0000020494,0.0000020461,0.0000020424, -0.0000020384,0.0000020348,0.0000020312,0.0000020299,0.0000020286, -0.0000020287,0.0000020305,0.0000020332,0.0000020364,0.0000020400, -0.0000020438,0.0000020471,0.0000020495,0.0000020507,0.0000020505, -0.0000020493,0.0000020478,0.0000020470,0.0000020465,0.0000020460, -0.0000020455,0.0000020443,0.0000020438,0.0000020438,0.0000020443, -0.0000020450,0.0000020456,0.0000020456,0.0000020450,0.0000020436, -0.0000020412,0.0000020379,0.0000020341,0.0000020306,0.0000020277, -0.0000020257,0.0000020249,0.0000020230,0.0000020207,0.0000020185, -0.0000020169,0.0000020156,0.0000020148,0.0000020146,0.0000020150, -0.0000020159,0.0000020165,0.0000020171,0.0000020183,0.0000020198, -0.0000020208,0.0000020216,0.0000020222,0.0000020230,0.0000020242, -0.0000020256,0.0000020264,0.0000020259,0.0000020250,0.0000020243, -0.0000020239,0.0000020232,0.0000020221,0.0000020204,0.0000020184, -0.0000020159,0.0000020127,0.0000020087,0.0000020048,0.0000020012, -0.0000019962,0.0000019886,0.0000019798,0.0000019725,0.0000019693, -0.0000019693,0.0000019697,0.0000019687,0.0000019637,0.0000019557, -0.0000019478,0.0000019404,0.0000019338,0.0000019293,0.0000019268, -0.0000019255,0.0000019249,0.0000019243,0.0000019236,0.0000019231, -0.0000019229,0.0000019246,0.0000019281,0.0000019324,0.0000019360, -0.0000019386,0.0000019410,0.0000019438,0.0000019470,0.0000019505, -0.0000019551,0.0000019606,0.0000019669,0.0000019728,0.0000019777, -0.0000019811,0.0000019837,0.0000019849,0.0000019843,0.0000019827, -0.0000019809,0.0000019794,0.0000019781,0.0000019771,0.0000019758, -0.0000019736,0.0000019709,0.0000019687,0.0000019672,0.0000019663, -0.0000019654,0.0000019640,0.0000019621,0.0000019593,0.0000019563, -0.0000019542,0.0000019535,0.0000019543,0.0000019564,0.0000019595, -0.0000019626,0.0000019655,0.0000019681,0.0000019706,0.0000019733, -0.0000019759,0.0000019782,0.0000019801,0.0000019819,0.0000019837, -0.0000019851,0.0000019861,0.0000019867,0.0000019868,0.0000019865, -0.0000019865,0.0000019870,0.0000019890,0.0000019910,0.0000019940, -0.0000019974,0.0000020010,0.0000020048,0.0000020086,0.0000020128, -0.0000020174,0.0000020221,0.0000020269,0.0000020317,0.0000020363, -0.0000020404,0.0000020436,0.0000020455,0.0000020461,0.0000020459, -0.0000020453,0.0000020449,0.0000020444,0.0000020442,0.0000020438, -0.0000020429,0.0000020417,0.0000020406,0.0000020398,0.0000020397, -0.0000020396,0.0000020399,0.0000020400,0.0000020411,0.0000020438, -0.0000020481,0.0000020534,0.0000020593,0.0000020659,0.0000020722, -0.0000020768,0.0000020805,0.0000020840,0.0000020868,0.0000020891, -0.0000020910,0.0000020925,0.0000020936,0.0000020941,0.0000020941, -0.0000020935,0.0000020920,0.0000020904,0.0000020887,0.0000020869, -0.0000020852,0.0000020843,0.0000020847,0.0000020867,0.0000020904, -0.0000020966,0.0000021038,0.0000021076,0.0000021074,0.0000021057, -0.0000021051,0.0000021052,0.0000021059,0.0000021059,0.0000021041, -0.0000021031,0.0000021027,0.0000020982,0.0000020940,0.0000020903, -0.0000020852,0.0000020816,0.0000020781,0.0000020772,0.0000020781, -0.0000020785,0.0000020787,0.0000020779,0.0000020765,0.0000020771, -0.0000020813,0.0000020869,0.0000020921,0.0000020981,0.0000021032, -0.0000021055,0.0000021056,0.0000021048,0.0000021033,0.0000021010, -0.0000020980,0.0000020940,0.0000020889,0.0000020832,0.0000020763, -0.0000020687,0.0000020619,0.0000020574,0.0000020542,0.0000020504, -0.0000020461,0.0000020439,0.0000020438,0.0000020455,0.0000020477, -0.0000020495,0.0000020501,0.0000020496,0.0000020485,0.0000020473, -0.0000020466,0.0000020457,0.0000020451,0.0000020451,0.0000020455, -0.0000020461,0.0000020467,0.0000020470,0.0000020471,0.0000020465, -0.0000020454,0.0000020439,0.0000020423,0.0000020407,0.0000020391, -0.0000020374,0.0000020356,0.0000020337,0.0000020319,0.0000020305, -0.0000020296,0.0000020289,0.0000020283,0.0000020280,0.0000020280, -0.0000020282,0.0000020286,0.0000020291,0.0000020296,0.0000020298, -0.0000020297,0.0000020296,0.0000020298,0.0000020301,0.0000020303, -0.0000020308,0.0000020315,0.0000020331,0.0000020353,0.0000020380, -0.0000020411,0.0000020448,0.0000020496,0.0000020552,0.0000020614, -0.0000020677,0.0000020735,0.0000020784,0.0000020816,0.0000020834, -0.0000020838,0.0000020831,0.0000020822,0.0000020816,0.0000020813, -0.0000020812,0.0000020812,0.0000020810,0.0000020810,0.0000020821, -0.0000020851,0.0000020905,0.0000020981,0.0000021066,0.0000021148, -0.0000021216,0.0000021263,0.0000021285,0.0000021280,0.0000021249, -0.0000021192,0.0000021115,0.0000021028,0.0000020942,0.0000020864, -0.0000020794,0.0000020733,0.0000020687,0.0000020659,0.0000020645, -0.0000020639,0.0000020638,0.0000020637,0.0000020634,0.0000020625, -0.0000020605,0.0000020569,0.0000020527,0.0000020467,0.0000020385, -0.0000020287,0.0000020186,0.0000020090,0.0000020007,0.0000019939, -0.0000019891,0.0000019855,0.0000019817,0.0000019763,0.0000019693, -0.0000019615,0.0000019544,0.0000019488,0.0000019454,0.0000019443, -0.0000019447,0.0000019455,0.0000019458,0.0000019460,0.0000019469, -0.0000019486,0.0000019507,0.0000019526,0.0000019528,0.0000019518, -0.0000019501,0.0000019493,0.0000019499,0.0000019519,0.0000019546, -0.0000019571,0.0000019591,0.0000019604,0.0000019610,0.0000019613, -0.0000019622,0.0000019647,0.0000019703,0.0000019787,0.0000019865, -0.0000019921,0.0000019964,0.0000020011,0.0000020068,0.0000020120, -0.0000020153,0.0000020158,0.0000020147,0.0000020137,0.0000020131, -0.0000020132,0.0000020136,0.0000020134,0.0000020094,0.0000020016, -0.0000019912,0.0000019810,0.0000019738,0.0000019707,0.0000019687, -0.0000019705,0.0000019737,0.0000019781,0.0000019822,0.0000019850, -0.0000019864,0.0000019870,0.0000019876,0.0000019892,0.0000019931, -0.0000020005,0.0000020111,0.0000020237,0.0000020367,0.0000020476, -0.0000020552,0.0000020587,0.0000020578,0.0000020569,0.0000020534, -0.0000020491,0.0000020447,0.0000020407,0.0000020372,0.0000020339, -0.0000020312,0.0000020289,0.0000020276,0.0000020255,0.0000020246, -0.0000020233,0.0000020225,0.0000020223,0.0000020224,0.0000020227, -0.0000020228,0.0000020223,0.0000020217,0.0000020210,0.0000020200, -0.0000020186,0.0000020173,0.0000020165,0.0000020166,0.0000020176, -0.0000020188,0.0000020205,0.0000020227,0.0000020258,0.0000020293, -0.0000020328,0.0000020353,0.0000020358,0.0000020341,0.0000020302, -0.0000020256,0.0000020213,0.0000020178,0.0000020149,0.0000020122, -0.0000020105,0.0000020101,0.0000020104,0.0000020110,0.0000020116, -0.0000020116,0.0000020113,0.0000020103,0.0000020088,0.0000020071, -0.0000020046,0.0000020022,0.0000020003,0.0000019981,0.0000019956, -0.0000019928,0.0000019900,0.0000019873,0.0000019858,0.0000019853, -0.0000019854,0.0000019852,0.0000019842,0.0000019824,0.0000019795, -0.0000019758,0.0000019734,0.0000019720,0.0000019717,0.0000019733, -0.0000019763,0.0000019799,0.0000019837,0.0000019871,0.0000019898, -0.0000019913,0.0000019917,0.0000019908,0.0000019881,0.0000019841, -0.0000019792,0.0000019736,0.0000019680,0.0000019633,0.0000019600, -0.0000019582,0.0000019572,0.0000019568,0.0000019571,0.0000019576, -0.0000019574,0.0000019561,0.0000019539,0.0000019506,0.0000019468, -0.0000019429,0.0000019392,0.0000019360,0.0000019336,0.0000019314, -0.0000019289,0.0000019261,0.0000019229,0.0000019199,0.0000019170, -0.0000019142,0.0000019116,0.0000019090,0.0000019067,0.0000019051, -0.0000019041,0.0000019030,0.0000019016,0.0000018997,0.0000018971, -0.0000018941,0.0000018910,0.0000018883,0.0000018867,0.0000018858, -0.0000018854,0.0000018853,0.0000018854,0.0000018853,0.0000018850, -0.0000018844,0.0000018836,0.0000018828,0.0000018822,0.0000018821, -0.0000018823,0.0000018827,0.0000018830,0.0000018836,0.0000018848, -0.0000018863,0.0000018876,0.0000018887,0.0000018898,0.0000018908, -0.0000018915,0.0000018919,0.0000018920,0.0000018918,0.0000018911, -0.0000018898,0.0000018880,0.0000018862,0.0000018843,0.0000018824, -0.0000018806,0.0000018787,0.0000018770,0.0000018754,0.0000018742, -0.0000018733,0.0000018729,0.0000018733,0.0000018744,0.0000018760, -0.0000018783,0.0000018814,0.0000018849,0.0000018887,0.0000018927, -0.0000018967,0.0000019005,0.0000019039,0.0000019064,0.0000019082, -0.0000019093,0.0000019104,0.0000019119,0.0000019140,0.0000019165, -0.0000019196,0.0000019232,0.0000019271,0.0000019306,0.0000019333, -0.0000019347,0.0000019351,0.0000019348,0.0000019344,0.0000019343, -0.0000019346,0.0000019354,0.0000019368,0.0000019387,0.0000019407, -0.0000019425,0.0000019439,0.0000019448,0.0000019453,0.0000019454, -0.0000019452,0.0000019450,0.0000019448,0.0000019448,0.0000019449, -0.0000019452,0.0000019457,0.0000019461,0.0000019466,0.0000019474, -0.0000019484,0.0000019495,0.0000019504,0.0000019512,0.0000019518, -0.0000019525,0.0000019533,0.0000019537,0.0000019536,0.0000019528, -0.0000019517,0.0000019507,0.0000019500,0.0000019496,0.0000019499, -0.0000019511,0.0000019523,0.0000019526,0.0000019521,0.0000019492, -0.0000019427,0.0000019347,0.0000019301,0.0000019311,0.0000019362, -0.0000019416,0.0000019453,0.0000019481,0.0000019514,0.0000019562, -0.0000019594,0.0000019576,0.0000019524,0.0000019495,0.0000019526, -0.0000019622,0.0000019755,0.0000019883,0.0000019991,0.0000020098, -0.0000020208,0.0000020279,0.0000020283,0.0000020271,0.0000020262, -0.0000020287,0.0000020345,0.0000020411,0.0000020468,0.0000020487, -0.0000020490,0.0000020476,0.0000020454,0.0000020426,0.0000020394, -0.0000020373,0.0000020366,0.0000020380,0.0000020418,0.0000020474, -0.0000020528,0.0000020559,0.0000020566,0.0000020552,0.0000020515, -0.0000020464,0.0000020406,0.0000020348,0.0000020309,0.0000020294, -0.0000020294,0.0000020296,0.0000020299,0.0000020304,0.0000020315, -0.0000020333,0.0000020352,0.0000020365,0.0000020368,0.0000020365, -0.0000020355,0.0000020345,0.0000020342,0.0000020346,0.0000020358, -0.0000020374,0.0000020392,0.0000020410,0.0000020427,0.0000020439, -0.0000020449,0.0000020458,0.0000020467,0.0000020474,0.0000020475, -0.0000020470,0.0000020455,0.0000020430,0.0000020401,0.0000020371, -0.0000020343,0.0000020320,0.0000020305,0.0000020298,0.0000020290, -0.0000020279,0.0000020262,0.0000020241,0.0000020214,0.0000020186, -0.0000020161,0.0000020141,0.0000020127,0.0000020117,0.0000020109, -0.0000020103,0.0000020097,0.0000020087,0.0000020076,0.0000020062, -0.0000020047,0.0000020032,0.0000020017,0.0000020003,0.0000019989, -0.0000019978,0.0000019968,0.0000019958,0.0000019947,0.0000019936, -0.0000019924,0.0000019913,0.0000019902,0.0000019890,0.0000019876, -0.0000019859,0.0000019838,0.0000019812,0.0000019780,0.0000019739, -0.0000019694,0.0000019646,0.0000019595,0.0000019546,0.0000019509, -0.0000019486,0.0000019475,0.0000019471,0.0000019471,0.0000019468, -0.0000019460,0.0000019447,0.0000019434,0.0000019426,0.0000019422, -0.0000019430,0.0000019449,0.0000019476,0.0000019506,0.0000019538, -0.0000019571,0.0000019609,0.0000019654,0.0000019700,0.0000019743, -0.0000019782,0.0000019816,0.0000019844,0.0000019867,0.0000019883, -0.0000019887,0.0000019873,0.0000019846,0.0000019809,0.0000019783, -0.0000019773,0.0000019778,0.0000019781,0.0000019770,0.0000019736, -0.0000019669,0.0000019588,0.0000019528,0.0000019500,0.0000019472, -0.0000019476,0.0000019458,0.0000019439,0.0000019433,0.0000019439, -0.0000019455,0.0000019465,0.0000019466,0.0000019462,0.0000019461, -0.0000019461,0.0000019464,0.0000019471,0.0000019486,0.0000019508, -0.0000019539,0.0000019578,0.0000019619,0.0000019648,0.0000019661, -0.0000019661,0.0000019652,0.0000019646,0.0000019649,0.0000019658, -0.0000019672,0.0000019686,0.0000019697,0.0000019697,0.0000019701, -0.0000019700,0.0000019704,0.0000019717,0.0000019735,0.0000019754, -0.0000019773,0.0000019790,0.0000019804,0.0000019815,0.0000019820, -0.0000019821,0.0000019822,0.0000019823,0.0000019821,0.0000019816, -0.0000019810,0.0000019800,0.0000019788,0.0000019771,0.0000019751, -0.0000019728,0.0000019709,0.0000019694,0.0000019679,0.0000019668, -0.0000019659,0.0000019652,0.0000019646,0.0000019642,0.0000019638, -0.0000019632,0.0000019623,0.0000019611,0.0000019596,0.0000019584, -0.0000019577,0.0000019578,0.0000019587,0.0000019606,0.0000019630, -0.0000019649,0.0000019663,0.0000019676,0.0000019684,0.0000019693, -0.0000019696,0.0000019695,0.0000019688,0.0000019678,0.0000019665, -0.0000019651,0.0000019636,0.0000019614,0.0000019591,0.0000019572, -0.0000019564,0.0000019566,0.0000019576,0.0000019593,0.0000019610, -0.0000019629,0.0000019651,0.0000019677,0.0000019700,0.0000019718, -0.0000019732,0.0000019739,0.0000019745,0.0000019753,0.0000019759, -0.0000019761,0.0000019767,0.0000019775,0.0000019784,0.0000019798, -0.0000019817,0.0000019836,0.0000019854,0.0000019870,0.0000019882, -0.0000019891,0.0000019893,0.0000019892,0.0000019887,0.0000019878, -0.0000019862,0.0000019843,0.0000019824,0.0000019805,0.0000019789, -0.0000019773,0.0000019762,0.0000019753,0.0000019751,0.0000019768, -0.0000019798,0.0000019844,0.0000019895,0.0000019947,0.0000020007, -0.0000020068,0.0000020124,0.0000020172,0.0000020224,0.0000020285, -0.0000020364,0.0000020453,0.0000020537,0.0000020603,0.0000020659, -0.0000020702,0.0000020723,0.0000020725,0.0000020724,0.0000020716, -0.0000020688,0.0000020650,0.0000020606,0.0000020559,0.0000020509, -0.0000020460,0.0000020417,0.0000020382,0.0000020356,0.0000020335, -0.0000020317,0.0000020305,0.0000020302,0.0000020310,0.0000020334, -0.0000020375,0.0000020426,0.0000020474,0.0000020514,0.0000020550, -0.0000020581,0.0000020606,0.0000020622,0.0000020629,0.0000020631, -0.0000020632,0.0000020633,0.0000020636,0.0000020643,0.0000020649, -0.0000020652,0.0000020651,0.0000020652,0.0000020654,0.0000020657, -0.0000020663,0.0000020672,0.0000020681,0.0000020689,0.0000020693, -0.0000020698,0.0000020708,0.0000020721,0.0000020740,0.0000020758, -0.0000020773,0.0000020786,0.0000020800,0.0000020820,0.0000020842, -0.0000020868,0.0000020894,0.0000020920,0.0000020948,0.0000020977, -0.0000021005,0.0000021031,0.0000021058,0.0000021083,0.0000021104, -0.0000021114,0.0000021118,0.0000021118,0.0000021117,0.0000021112, -0.0000021104,0.0000021094,0.0000021082,0.0000021071,0.0000021063, -0.0000021059,0.0000021059,0.0000021062,0.0000021067,0.0000021071, -0.0000021073,0.0000021079,0.0000021089,0.0000021101,0.0000021115, -0.0000021130,0.0000021147,0.0000021161,0.0000021172,0.0000021180, -0.0000021186,0.0000021191,0.0000021193,0.0000021193,0.0000021191, -0.0000021187,0.0000021182,0.0000021176,0.0000021169,0.0000021160, -0.0000021148,0.0000021132,0.0000021113,0.0000021092,0.0000021072, -0.0000021053,0.0000021035,0.0000021021,0.0000021012,0.0000021014, -0.0000021028,0.0000021048,0.0000021068,0.0000021083,0.0000021089, -0.0000021098,0.0000021122,0.0000021164,0.0000021215,0.0000021257, -0.0000021284,0.0000021304,0.0000021321,0.0000021333,0.0000021339, -0.0000021345,0.0000021347,0.0000021345,0.0000021337,0.0000021317, -0.0000021279,0.0000021233,0.0000021186,0.0000021151,0.0000021128, -0.0000021111,0.0000021106,0.0000021108,0.0000021109,0.0000021128, -0.0000021232,0.0000021352,0.0000021429,0.0000021530,0.0000021638, -0.0000021704,0.0000021726,0.0000021717,0.0000021672,0.0000021592, -0.0000021490,0.0000021379,0.0000021271,0.0000021179,0.0000021093, -0.0000021002,0.0000020948,0.0000020930,0.0000020904,0.0000020867, -0.0000020843,0.0000020839,0.0000020853,0.0000020874,0.0000020884, -0.0000020885,0.0000020883,0.0000020880,0.0000020875,0.0000020872, -0.0000020867,0.0000020856,0.0000020834,0.0000020796,0.0000020746, -0.0000020681,0.0000020599,0.0000020521,0.0000020463,0.0000020421, -0.0000020403,0.0000020414,0.0000020447,0.0000020481,0.0000020508, -0.0000020520,0.0000020525,0.0000020520,0.0000020501,0.0000020464, -0.0000020417,0.0000020374,0.0000020346,0.0000020322,0.0000020289, -0.0000020247,0.0000020210,0.0000020198,0.0000020234,0.0000020332, -0.0000020447,0.0000020530,0.0000020565,0.0000020561,0.0000020525, -0.0000020461,0.0000020418,0.0000020355,0.0000020201,0.0000020053, -0.0000019995,0.0000019999,0.0000020119,0.0000020289,0.0000020342, -0.0000020312,0.0000020291,0.0000020321,0.0000020485,0.0000020679, -0.0000020758,0.0000020761,0.0000020789,0.0000020868,0.0000021071, -0.0000021235,0.0000021289,0.0000021430,0.0000021579,0.0000021631, -0.0000021643,0.0000021679,0.0000021707,0.0000021713,0.0000021743, -0.0000021828,0.0000021904,0.0000021912,0.0000021897,0.0000021868, -0.0000021828,0.0000021841,0.0000021926,0.0000021983,0.0000021997, -0.0000022006,0.0000022028,0.0000022049,0.0000022044,0.0000022021, -0.0000021990,0.0000021956,0.0000021933,0.0000021920,0.0000021927, -0.0000021941,0.0000021948,0.0000021970,0.0000021998,0.0000022003, -0.0000021991,0.0000021957,0.0000021913,0.0000021874,0.0000021847, -0.0000021817,0.0000021774,0.0000021723,0.0000021669,0.0000021617, -0.0000021594,0.0000021601,0.0000021623,0.0000021654,0.0000021687, -0.0000021714,0.0000021733,0.0000021739,0.0000021723,0.0000021680, -0.0000021631,0.0000021586,0.0000021544,0.0000021506,0.0000021473, -0.0000021448,0.0000021430,0.0000021417,0.0000021415,0.0000021411, -0.0000021395,0.0000021372,0.0000021353,0.0000021333,0.0000021316, -0.0000021317,0.0000021312,0.0000021288,0.0000021266,0.0000021247, -0.0000021229,0.0000021209,0.0000021184,0.0000021157,0.0000021131, -0.0000021113,0.0000021099,0.0000021085,0.0000021063,0.0000021041, -0.0000021022,0.0000021004,0.0000020979,0.0000020950,0.0000020925, -0.0000020895,0.0000020856,0.0000020810,0.0000020771,0.0000020740, -0.0000020714,0.0000020693,0.0000020684,0.0000020683,0.0000020688, -0.0000020687,0.0000020687,0.0000020685,0.0000020682,0.0000020676, -0.0000020658,0.0000020637,0.0000020617,0.0000020598,0.0000020579, -0.0000020564,0.0000020549,0.0000020540,0.0000020540,0.0000020547, -0.0000020563,0.0000020585,0.0000020609,0.0000020629,0.0000020647, -0.0000020657,0.0000020665,0.0000020669,0.0000020673,0.0000020675, -0.0000020677,0.0000020681,0.0000020684,0.0000020695,0.0000020712, -0.0000020739,0.0000020764,0.0000020776,0.0000020769,0.0000020757, -0.0000020747,0.0000020738,0.0000020728,0.0000020724,0.0000020730, -0.0000020737,0.0000020742,0.0000020743,0.0000020734,0.0000020724, -0.0000020724,0.0000020732,0.0000020746,0.0000020760,0.0000020778, -0.0000020800,0.0000020817,0.0000020831,0.0000020848,0.0000020864, -0.0000020882,0.0000020906,0.0000020933,0.0000020954,0.0000020961, -0.0000020971,0.0000020970,0.0000020964,0.0000020956,0.0000020948, -0.0000020948,0.0000020957,0.0000020984,0.0000021021,0.0000021057, -0.0000021090,0.0000021118,0.0000021146,0.0000021177,0.0000021212, -0.0000021242,0.0000021258,0.0000021278,0.0000021290,0.0000021298, -0.0000021300,0.0000021297,0.0000021287,0.0000021283,0.0000021285, -0.0000021284,0.0000021281,0.0000021283,0.0000021283,0.0000021285, -0.0000021290,0.0000021293,0.0000021292,0.0000021294,0.0000021302, -0.0000021307,0.0000021311,0.0000021311,0.0000021308,0.0000021303, -0.0000021298,0.0000021295,0.0000021292,0.0000021289,0.0000021294, -0.0000021309,0.0000021326,0.0000021343,0.0000021361,0.0000021380, -0.0000021401,0.0000021420,0.0000021441,0.0000021465,0.0000021493, -0.0000021521,0.0000021541,0.0000021557,0.0000021570,0.0000021583, -0.0000021591,0.0000021599,0.0000021605,0.0000021607,0.0000021609, -0.0000021614,0.0000021615,0.0000021612,0.0000021606,0.0000021600, -0.0000021594,0.0000021582,0.0000021570,0.0000021560,0.0000021558, -0.0000021561,0.0000021567,0.0000021581,0.0000021601,0.0000021623, -0.0000021652,0.0000021689,0.0000021732,0.0000021774,0.0000021809, -0.0000021834,0.0000021856,0.0000021877,0.0000021897,0.0000021916, -0.0000021935,0.0000021950,0.0000021962,0.0000021974,0.0000021973, -0.0000021972,0.0000021966,0.0000021956,0.0000021941,0.0000021912, -0.0000021874,0.0000021835,0.0000021803,0.0000021775,0.0000021753, -0.0000021740,0.0000021744,0.0000021757,0.0000021777,0.0000021800, -0.0000021824,0.0000021842,0.0000021859,0.0000021877,0.0000021897, -0.0000021916,0.0000021936,0.0000021953,0.0000021968,0.0000021977, -0.0000021976,0.0000021964,0.0000021946,0.0000021923,0.0000021895, -0.0000021865,0.0000021840,0.0000021825,0.0000021821,0.0000021823, -0.0000021823,0.0000021816,0.0000021810,0.0000021815,0.0000021826, -0.0000021833,0.0000021833,0.0000021830,0.0000021822,0.0000021809, -0.0000021789,0.0000021763,0.0000021733,0.0000021704,0.0000021682, -0.0000021673,0.0000021676,0.0000021696,0.0000021727,0.0000021764, -0.0000021807,0.0000021849,0.0000021886,0.0000021912,0.0000021930, -0.0000021934,0.0000021935,0.0000021930,0.0000021920,0.0000021910, -0.0000021903,0.0000021901,0.0000021892,0.0000021886,0.0000021876, -0.0000021851,0.0000021822,0.0000021796,0.0000021764,0.0000021732, -0.0000021701,0.0000021668,0.0000021625,0.0000021575,0.0000021519, -0.0000021458,0.0000021398,0.0000021339,0.0000021286,0.0000021241, -0.0000021203,0.0000021167,0.0000021132,0.0000021105,0.0000021088, -0.0000021082,0.0000021084,0.0000021091,0.0000021101,0.0000021115, -0.0000021131,0.0000021149,0.0000021165,0.0000021175,0.0000021180, -0.0000021182,0.0000021178,0.0000021165,0.0000021142,0.0000021109, -0.0000021069,0.0000021023,0.0000020971,0.0000020917,0.0000020865, -0.0000020817,0.0000020771,0.0000020725,0.0000020679,0.0000020632, -0.0000020589,0.0000020549,0.0000020511,0.0000020470,0.0000020427, -0.0000020383,0.0000020345,0.0000020313,0.0000020296,0.0000020294, -0.0000020310,0.0000020327,0.0000020352,0.0000020383,0.0000020418, -0.0000020450,0.0000020474,0.0000020485,0.0000020484,0.0000020476, -0.0000020476,0.0000020475,0.0000020476,0.0000020473,0.0000020460, -0.0000020448,0.0000020437,0.0000020426,0.0000020415,0.0000020405, -0.0000020393,0.0000020377,0.0000020354,0.0000020323,0.0000020291, -0.0000020264,0.0000020243,0.0000020236,0.0000020240,0.0000020247, -0.0000020250,0.0000020236,0.0000020221,0.0000020201,0.0000020177, -0.0000020155,0.0000020137,0.0000020127,0.0000020121,0.0000020119, -0.0000020118,0.0000020129,0.0000020143,0.0000020160,0.0000020174, -0.0000020186,0.0000020200,0.0000020219,0.0000020243,0.0000020265, -0.0000020271,0.0000020268,0.0000020263,0.0000020261,0.0000020259, -0.0000020257,0.0000020248,0.0000020232,0.0000020215,0.0000020193, -0.0000020160,0.0000020119,0.0000020081,0.0000020040,0.0000019984, -0.0000019904,0.0000019811,0.0000019739,0.0000019708,0.0000019707, -0.0000019709,0.0000019684,0.0000019620,0.0000019545,0.0000019471, -0.0000019403,0.0000019345,0.0000019308,0.0000019283,0.0000019269, -0.0000019257,0.0000019243,0.0000019234,0.0000019231,0.0000019241, -0.0000019271,0.0000019312,0.0000019352,0.0000019383,0.0000019410, -0.0000019441,0.0000019474,0.0000019504,0.0000019541,0.0000019588, -0.0000019640,0.0000019688,0.0000019730,0.0000019759,0.0000019776, -0.0000019787,0.0000019786,0.0000019777,0.0000019771,0.0000019772, -0.0000019774,0.0000019768,0.0000019748,0.0000019719,0.0000019691, -0.0000019676,0.0000019664,0.0000019657,0.0000019651,0.0000019640, -0.0000019628,0.0000019615,0.0000019602,0.0000019596,0.0000019600, -0.0000019616,0.0000019637,0.0000019665,0.0000019691,0.0000019712, -0.0000019732,0.0000019755,0.0000019779,0.0000019805,0.0000019828, -0.0000019849,0.0000019868,0.0000019885,0.0000019901,0.0000019915, -0.0000019924,0.0000019927,0.0000019927,0.0000019924,0.0000019924, -0.0000019927,0.0000019932,0.0000019945,0.0000019966,0.0000019986, -0.0000020013,0.0000020043,0.0000020070,0.0000020099,0.0000020132, -0.0000020167,0.0000020204,0.0000020244,0.0000020288,0.0000020330, -0.0000020367,0.0000020394,0.0000020411,0.0000020421,0.0000020426, -0.0000020430,0.0000020436,0.0000020441,0.0000020444,0.0000020442, -0.0000020437,0.0000020432,0.0000020429,0.0000020427,0.0000020426, -0.0000020425,0.0000020426,0.0000020439,0.0000020458,0.0000020487, -0.0000020532,0.0000020589,0.0000020649,0.0000020709,0.0000020766, -0.0000020815,0.0000020856,0.0000020888,0.0000020911,0.0000020928, -0.0000020937,0.0000020939,0.0000020932,0.0000020915,0.0000020891, -0.0000020864,0.0000020837,0.0000020813,0.0000020795,0.0000020788, -0.0000020793,0.0000020809,0.0000020843,0.0000020920,0.0000021020, -0.0000021075,0.0000021075,0.0000021062,0.0000021060,0.0000021066, -0.0000021074,0.0000021062,0.0000021039,0.0000021035,0.0000021022, -0.0000020973,0.0000020939,0.0000020895,0.0000020845,0.0000020813, -0.0000020783,0.0000020778,0.0000020786,0.0000020789,0.0000020794, -0.0000020787,0.0000020771,0.0000020774,0.0000020815,0.0000020878, -0.0000020937,0.0000020993,0.0000021040,0.0000021060,0.0000021061, -0.0000021048,0.0000021027,0.0000021000,0.0000020970,0.0000020932, -0.0000020883,0.0000020825,0.0000020760,0.0000020695,0.0000020642, -0.0000020601,0.0000020562,0.0000020515,0.0000020470,0.0000020445, -0.0000020444,0.0000020454,0.0000020463,0.0000020467,0.0000020465, -0.0000020458,0.0000020447,0.0000020435,0.0000020425,0.0000020418, -0.0000020417,0.0000020422,0.0000020432,0.0000020444,0.0000020455, -0.0000020461,0.0000020461,0.0000020453,0.0000020439,0.0000020422, -0.0000020403,0.0000020381,0.0000020361,0.0000020344,0.0000020328, -0.0000020313,0.0000020300,0.0000020293,0.0000020290,0.0000020288, -0.0000020287,0.0000020287,0.0000020292,0.0000020297,0.0000020301, -0.0000020302,0.0000020302,0.0000020301,0.0000020296,0.0000020292, -0.0000020285,0.0000020277,0.0000020269,0.0000020263,0.0000020263, -0.0000020271,0.0000020285,0.0000020300,0.0000020318,0.0000020340, -0.0000020370,0.0000020409,0.0000020457,0.0000020514,0.0000020575, -0.0000020636,0.0000020689,0.0000020730,0.0000020755,0.0000020768, -0.0000020771,0.0000020767,0.0000020760,0.0000020758,0.0000020759, -0.0000020760,0.0000020759,0.0000020755,0.0000020755,0.0000020768, -0.0000020795,0.0000020841,0.0000020904,0.0000020971,0.0000021030, -0.0000021069,0.0000021083,0.0000021068,0.0000021024,0.0000020958, -0.0000020879,0.0000020798,0.0000020722,0.0000020649,0.0000020587, -0.0000020547,0.0000020536,0.0000020540,0.0000020556,0.0000020572, -0.0000020584,0.0000020588,0.0000020583,0.0000020567,0.0000020540, -0.0000020499,0.0000020440,0.0000020361,0.0000020266,0.0000020169, -0.0000020078,0.0000019996,0.0000019925,0.0000019872,0.0000019831, -0.0000019788,0.0000019733,0.0000019664,0.0000019593,0.0000019533, -0.0000019489,0.0000019462,0.0000019452,0.0000019455,0.0000019462, -0.0000019465,0.0000019469,0.0000019477,0.0000019487,0.0000019504, -0.0000019520,0.0000019527,0.0000019523,0.0000019511,0.0000019500, -0.0000019499,0.0000019515,0.0000019539,0.0000019563,0.0000019582, -0.0000019594,0.0000019600,0.0000019600,0.0000019605,0.0000019626, -0.0000019678,0.0000019755,0.0000019834,0.0000019897,0.0000019943, -0.0000019986,0.0000020037,0.0000020090,0.0000020125,0.0000020133, -0.0000020124,0.0000020109,0.0000020097,0.0000020092,0.0000020097, -0.0000020095,0.0000020069,0.0000020028,0.0000019941,0.0000019842, -0.0000019754,0.0000019691,0.0000019663,0.0000019638,0.0000019648, -0.0000019677,0.0000019715,0.0000019754,0.0000019787,0.0000019812, -0.0000019834,0.0000019856,0.0000019881,0.0000019922,0.0000019991, -0.0000020087,0.0000020202,0.0000020324,0.0000020432,0.0000020511, -0.0000020556,0.0000020560,0.0000020551,0.0000020526,0.0000020491, -0.0000020452,0.0000020411,0.0000020368,0.0000020329,0.0000020293, -0.0000020259,0.0000020229,0.0000020201,0.0000020178,0.0000020148, -0.0000020123,0.0000020116,0.0000020107,0.0000020097,0.0000020093, -0.0000020094,0.0000020098,0.0000020101,0.0000020109,0.0000020122, -0.0000020140,0.0000020160,0.0000020184,0.0000020209,0.0000020241, -0.0000020280,0.0000020317,0.0000020350,0.0000020366,0.0000020363, -0.0000020338,0.0000020297,0.0000020254,0.0000020215,0.0000020180, -0.0000020146,0.0000020114,0.0000020087,0.0000020071,0.0000020062, -0.0000020060,0.0000020064,0.0000020070,0.0000020078,0.0000020081, -0.0000020077,0.0000020068,0.0000020046,0.0000020028,0.0000020008, -0.0000019982,0.0000019956,0.0000019927,0.0000019899,0.0000019870, -0.0000019846,0.0000019825,0.0000019819,0.0000019817,0.0000019808, -0.0000019793,0.0000019765,0.0000019729,0.0000019699,0.0000019677, -0.0000019666,0.0000019672,0.0000019694,0.0000019726,0.0000019759, -0.0000019790,0.0000019813,0.0000019826,0.0000019831,0.0000019826, -0.0000019801,0.0000019766,0.0000019726,0.0000019680,0.0000019633, -0.0000019594,0.0000019563,0.0000019544,0.0000019532,0.0000019523, -0.0000019520,0.0000019519,0.0000019515,0.0000019509,0.0000019497, -0.0000019476,0.0000019448,0.0000019418,0.0000019386,0.0000019357, -0.0000019330,0.0000019300,0.0000019269,0.0000019236,0.0000019202, -0.0000019167,0.0000019131,0.0000019095,0.0000019061,0.0000019028, -0.0000019002,0.0000018983,0.0000018967,0.0000018951,0.0000018936, -0.0000018921,0.0000018903,0.0000018879,0.0000018853,0.0000018831, -0.0000018816,0.0000018807,0.0000018802,0.0000018799,0.0000018796, -0.0000018790,0.0000018782,0.0000018777,0.0000018773,0.0000018769, -0.0000018767,0.0000018764,0.0000018762,0.0000018757,0.0000018752, -0.0000018748,0.0000018748,0.0000018752,0.0000018760,0.0000018774, -0.0000018791,0.0000018808,0.0000018822,0.0000018833,0.0000018842, -0.0000018847,0.0000018850,0.0000018847,0.0000018838,0.0000018824, -0.0000018810,0.0000018797,0.0000018784,0.0000018769,0.0000018753, -0.0000018740,0.0000018728,0.0000018718,0.0000018707,0.0000018697, -0.0000018688,0.0000018685,0.0000018693,0.0000018712,0.0000018739, -0.0000018773,0.0000018812,0.0000018856,0.0000018901,0.0000018946, -0.0000018987,0.0000019021,0.0000019044,0.0000019056,0.0000019063, -0.0000019068,0.0000019076,0.0000019092,0.0000019118,0.0000019155, -0.0000019197,0.0000019236,0.0000019270,0.0000019295,0.0000019312, -0.0000019322,0.0000019326,0.0000019327,0.0000019327,0.0000019330, -0.0000019337,0.0000019347,0.0000019358,0.0000019370,0.0000019380, -0.0000019388,0.0000019392,0.0000019395,0.0000019396,0.0000019397, -0.0000019397,0.0000019400,0.0000019406,0.0000019415,0.0000019426, -0.0000019435,0.0000019444,0.0000019454,0.0000019463,0.0000019470, -0.0000019475,0.0000019480,0.0000019484,0.0000019493,0.0000019505, -0.0000019516,0.0000019519,0.0000019514,0.0000019504,0.0000019494, -0.0000019484,0.0000019480,0.0000019484,0.0000019497,0.0000019510, -0.0000019514,0.0000019509,0.0000019472,0.0000019397,0.0000019317, -0.0000019283,0.0000019312,0.0000019370,0.0000019417,0.0000019448, -0.0000019474,0.0000019508,0.0000019553,0.0000019572,0.0000019540, -0.0000019491,0.0000019482,0.0000019524,0.0000019625,0.0000019750, -0.0000019866,0.0000019967,0.0000020071,0.0000020179,0.0000020256, -0.0000020266,0.0000020257,0.0000020250,0.0000020268,0.0000020313, -0.0000020373,0.0000020428,0.0000020468,0.0000020473,0.0000020470, -0.0000020452,0.0000020423,0.0000020391,0.0000020368,0.0000020359, -0.0000020368,0.0000020401,0.0000020452,0.0000020509,0.0000020557, -0.0000020582,0.0000020578,0.0000020546,0.0000020496,0.0000020442, -0.0000020388,0.0000020342,0.0000020314,0.0000020308,0.0000020309, -0.0000020313,0.0000020322,0.0000020334,0.0000020349,0.0000020361, -0.0000020367,0.0000020370,0.0000020369,0.0000020363,0.0000020354, -0.0000020348,0.0000020347,0.0000020353,0.0000020365,0.0000020381, -0.0000020400,0.0000020420,0.0000020437,0.0000020454,0.0000020468, -0.0000020477,0.0000020480,0.0000020477,0.0000020467,0.0000020449, -0.0000020428,0.0000020406,0.0000020383,0.0000020363,0.0000020347, -0.0000020333,0.0000020316,0.0000020295,0.0000020269,0.0000020240, -0.0000020213,0.0000020191,0.0000020175,0.0000020166,0.0000020162, -0.0000020163,0.0000020162,0.0000020158,0.0000020149,0.0000020135, -0.0000020118,0.0000020101,0.0000020085,0.0000020070,0.0000020057, -0.0000020044,0.0000020032,0.0000020021,0.0000020009,0.0000019996, -0.0000019984,0.0000019972,0.0000019960,0.0000019946,0.0000019932, -0.0000019919,0.0000019906,0.0000019893,0.0000019877,0.0000019856, -0.0000019832,0.0000019803,0.0000019771,0.0000019733,0.0000019688, -0.0000019641,0.0000019596,0.0000019552,0.0000019516,0.0000019493, -0.0000019481,0.0000019474,0.0000019465,0.0000019448,0.0000019424, -0.0000019401,0.0000019386,0.0000019376,0.0000019382,0.0000019401, -0.0000019429,0.0000019459,0.0000019493,0.0000019533,0.0000019576, -0.0000019624,0.0000019670,0.0000019711,0.0000019749,0.0000019783, -0.0000019812,0.0000019837,0.0000019855,0.0000019859,0.0000019843, -0.0000019814,0.0000019773,0.0000019743,0.0000019735,0.0000019744, -0.0000019751,0.0000019745,0.0000019714,0.0000019643,0.0000019561, -0.0000019503,0.0000019542,0.0000019487,0.0000019468,0.0000019462, -0.0000019455,0.0000019455,0.0000019469,0.0000019486,0.0000019497, -0.0000019495,0.0000019488,0.0000019483,0.0000019481,0.0000019482, -0.0000019487,0.0000019492,0.0000019498,0.0000019510,0.0000019535, -0.0000019562,0.0000019587,0.0000019599,0.0000019597,0.0000019584, -0.0000019569,0.0000019565,0.0000019577,0.0000019606,0.0000019639, -0.0000019671,0.0000019695,0.0000019706,0.0000019721,0.0000019736, -0.0000019749,0.0000019758,0.0000019765,0.0000019771,0.0000019773, -0.0000019771,0.0000019771,0.0000019769,0.0000019765,0.0000019759, -0.0000019750,0.0000019738,0.0000019725,0.0000019710,0.0000019692, -0.0000019674,0.0000019653,0.0000019636,0.0000019625,0.0000019617, -0.0000019613,0.0000019608,0.0000019603,0.0000019598,0.0000019596, -0.0000019595,0.0000019590,0.0000019580,0.0000019566,0.0000019550, -0.0000019533,0.0000019519,0.0000019512,0.0000019515,0.0000019529, -0.0000019548,0.0000019566,0.0000019583,0.0000019597,0.0000019608, -0.0000019617,0.0000019621,0.0000019619,0.0000019610,0.0000019600, -0.0000019589,0.0000019577,0.0000019560,0.0000019539,0.0000019521, -0.0000019502,0.0000019492,0.0000019498,0.0000019508,0.0000019519, -0.0000019537,0.0000019558,0.0000019580,0.0000019601,0.0000019621, -0.0000019635,0.0000019644,0.0000019647,0.0000019652,0.0000019661, -0.0000019667,0.0000019668,0.0000019673,0.0000019686,0.0000019703, -0.0000019725,0.0000019755,0.0000019788,0.0000019820,0.0000019848, -0.0000019868,0.0000019879,0.0000019877,0.0000019868,0.0000019853, -0.0000019834,0.0000019808,0.0000019776,0.0000019743,0.0000019714, -0.0000019687,0.0000019666,0.0000019647,0.0000019631,0.0000019634, -0.0000019662,0.0000019706,0.0000019765,0.0000019823,0.0000019877, -0.0000019934,0.0000019999,0.0000020069,0.0000020143,0.0000020209, -0.0000020268,0.0000020335,0.0000020408,0.0000020479,0.0000020547, -0.0000020610,0.0000020654,0.0000020675,0.0000020677,0.0000020675, -0.0000020665,0.0000020637,0.0000020601,0.0000020565,0.0000020525, -0.0000020477,0.0000020428,0.0000020383,0.0000020349,0.0000020327, -0.0000020312,0.0000020300,0.0000020294,0.0000020294,0.0000020299, -0.0000020321,0.0000020363,0.0000020414,0.0000020458,0.0000020494, -0.0000020527,0.0000020557,0.0000020581,0.0000020599,0.0000020610, -0.0000020613,0.0000020616,0.0000020615,0.0000020614,0.0000020618, -0.0000020622,0.0000020623,0.0000020622,0.0000020624,0.0000020628, -0.0000020633,0.0000020642,0.0000020653,0.0000020664,0.0000020671, -0.0000020676,0.0000020679,0.0000020686,0.0000020698,0.0000020713, -0.0000020727,0.0000020738,0.0000020747,0.0000020756,0.0000020767, -0.0000020782,0.0000020801,0.0000020819,0.0000020837,0.0000020858, -0.0000020884,0.0000020912,0.0000020940,0.0000020969,0.0000021000, -0.0000021028,0.0000021048,0.0000021063,0.0000021074,0.0000021079, -0.0000021079,0.0000021074,0.0000021063,0.0000021049,0.0000021037, -0.0000021030,0.0000021025,0.0000021023,0.0000021024,0.0000021028, -0.0000021034,0.0000021042,0.0000021055,0.0000021071,0.0000021087, -0.0000021107,0.0000021129,0.0000021151,0.0000021173,0.0000021194, -0.0000021213,0.0000021230,0.0000021240,0.0000021241,0.0000021237, -0.0000021225,0.0000021212,0.0000021198,0.0000021185,0.0000021173, -0.0000021162,0.0000021150,0.0000021136,0.0000021119,0.0000021100, -0.0000021083,0.0000021063,0.0000021042,0.0000021022,0.0000021007, -0.0000020999,0.0000020999,0.0000021008,0.0000021025,0.0000021040, -0.0000021050,0.0000021056,0.0000021075,0.0000021120,0.0000021177, -0.0000021227,0.0000021264,0.0000021290,0.0000021308,0.0000021316, -0.0000021320,0.0000021321,0.0000021318,0.0000021312,0.0000021298, -0.0000021265,0.0000021217,0.0000021171,0.0000021136,0.0000021113, -0.0000021098,0.0000021097,0.0000021103,0.0000021109,0.0000021114, -0.0000021163,0.0000021285,0.0000021385,0.0000021457,0.0000021557, -0.0000021656,0.0000021705,0.0000021709,0.0000021682,0.0000021619, -0.0000021521,0.0000021414,0.0000021301,0.0000021203,0.0000021116, -0.0000021014,0.0000020943,0.0000020921,0.0000020898,0.0000020865, -0.0000020839,0.0000020831,0.0000020840,0.0000020864,0.0000020880, -0.0000020882,0.0000020876,0.0000020868,0.0000020861,0.0000020855, -0.0000020850,0.0000020844,0.0000020834,0.0000020809,0.0000020766, -0.0000020709,0.0000020632,0.0000020549,0.0000020483,0.0000020431, -0.0000020391,0.0000020379,0.0000020397,0.0000020433,0.0000020466, -0.0000020486,0.0000020496,0.0000020502,0.0000020499,0.0000020482, -0.0000020447,0.0000020402,0.0000020362,0.0000020331,0.0000020302, -0.0000020274,0.0000020248,0.0000020223,0.0000020212,0.0000020252, -0.0000020354,0.0000020468,0.0000020543,0.0000020567,0.0000020558, -0.0000020519,0.0000020465,0.0000020420,0.0000020301,0.0000020120, -0.0000020008,0.0000019988,0.0000020053,0.0000020233,0.0000020347, -0.0000020343,0.0000020314,0.0000020312,0.0000020436,0.0000020645, -0.0000020750,0.0000020749,0.0000020754,0.0000020813,0.0000020995, -0.0000021176,0.0000021239,0.0000021350,0.0000021524,0.0000021605, -0.0000021627,0.0000021657,0.0000021698,0.0000021709,0.0000021731, -0.0000021791,0.0000021877,0.0000021915,0.0000021900,0.0000021883, -0.0000021848,0.0000021822,0.0000021861,0.0000021953,0.0000022004, -0.0000022012,0.0000022010,0.0000022015,0.0000022018,0.0000022011, -0.0000021990,0.0000021959,0.0000021925,0.0000021905,0.0000021900, -0.0000021917,0.0000021934,0.0000021947,0.0000021966,0.0000021977, -0.0000021978,0.0000021961,0.0000021925,0.0000021879,0.0000021838, -0.0000021794,0.0000021734,0.0000021675,0.0000021622,0.0000021592, -0.0000021591,0.0000021606,0.0000021632,0.0000021667,0.0000021698, -0.0000021725,0.0000021748,0.0000021757,0.0000021742,0.0000021702, -0.0000021659,0.0000021624,0.0000021593,0.0000021567,0.0000021542, -0.0000021512,0.0000021483,0.0000021456,0.0000021434,0.0000021418, -0.0000021394,0.0000021358,0.0000021311,0.0000021269,0.0000021237, -0.0000021232,0.0000021226,0.0000021218,0.0000021214,0.0000021214, -0.0000021216,0.0000021215,0.0000021211,0.0000021206,0.0000021201, -0.0000021197,0.0000021191,0.0000021181,0.0000021167,0.0000021153, -0.0000021137,0.0000021119,0.0000021099,0.0000021067,0.0000021035, -0.0000020996,0.0000020950,0.0000020900,0.0000020859,0.0000020826, -0.0000020797,0.0000020768,0.0000020742,0.0000020729,0.0000020724, -0.0000020716,0.0000020711,0.0000020707,0.0000020702,0.0000020690, -0.0000020668,0.0000020644,0.0000020621,0.0000020600,0.0000020580, -0.0000020563,0.0000020546,0.0000020528,0.0000020512,0.0000020506, -0.0000020512,0.0000020523,0.0000020541,0.0000020556,0.0000020570, -0.0000020581,0.0000020585,0.0000020592,0.0000020597,0.0000020597, -0.0000020596,0.0000020594,0.0000020595,0.0000020600,0.0000020609, -0.0000020625,0.0000020635,0.0000020640,0.0000020633,0.0000020623, -0.0000020620,0.0000020616,0.0000020613,0.0000020616,0.0000020629, -0.0000020637,0.0000020640,0.0000020640,0.0000020631,0.0000020617, -0.0000020607,0.0000020606,0.0000020613,0.0000020624,0.0000020647, -0.0000020673,0.0000020694,0.0000020715,0.0000020737,0.0000020757, -0.0000020780,0.0000020807,0.0000020831,0.0000020847,0.0000020854, -0.0000020857,0.0000020854,0.0000020847,0.0000020837,0.0000020825, -0.0000020823,0.0000020840,0.0000020867,0.0000020902,0.0000020938, -0.0000020971,0.0000021000,0.0000021025,0.0000021048,0.0000021071, -0.0000021092,0.0000021109,0.0000021123,0.0000021135,0.0000021147, -0.0000021155,0.0000021166,0.0000021184,0.0000021211,0.0000021236, -0.0000021258,0.0000021278,0.0000021287,0.0000021300,0.0000021313, -0.0000021316,0.0000021312,0.0000021302,0.0000021292,0.0000021286, -0.0000021282,0.0000021278,0.0000021273,0.0000021270,0.0000021266, -0.0000021262,0.0000021262,0.0000021263,0.0000021265,0.0000021273, -0.0000021289,0.0000021308,0.0000021326,0.0000021341,0.0000021356, -0.0000021371,0.0000021386,0.0000021401,0.0000021420,0.0000021444, -0.0000021467,0.0000021486,0.0000021500,0.0000021514,0.0000021523, -0.0000021528,0.0000021529,0.0000021528,0.0000021527,0.0000021522, -0.0000021518,0.0000021510,0.0000021499,0.0000021487,0.0000021475, -0.0000021468,0.0000021461,0.0000021452,0.0000021446,0.0000021444, -0.0000021445,0.0000021451,0.0000021464,0.0000021478,0.0000021496, -0.0000021526,0.0000021565,0.0000021603,0.0000021642,0.0000021675, -0.0000021700,0.0000021723,0.0000021749,0.0000021776,0.0000021806, -0.0000021833,0.0000021858,0.0000021883,0.0000021912,0.0000021935, -0.0000021954,0.0000021968,0.0000021976,0.0000021982,0.0000021975, -0.0000021957,0.0000021929,0.0000021894,0.0000021855,0.0000021817, -0.0000021791,0.0000021779,0.0000021782,0.0000021798,0.0000021821, -0.0000021847,0.0000021873,0.0000021898,0.0000021921,0.0000021940, -0.0000021955,0.0000021969,0.0000021980,0.0000021988,0.0000021995, -0.0000021996,0.0000021988,0.0000021973,0.0000021951,0.0000021922, -0.0000021894,0.0000021870,0.0000021854,0.0000021845,0.0000021840, -0.0000021828,0.0000021810,0.0000021794,0.0000021787,0.0000021792, -0.0000021799,0.0000021799,0.0000021796,0.0000021793,0.0000021786, -0.0000021775,0.0000021755,0.0000021731,0.0000021703,0.0000021681, -0.0000021670,0.0000021671,0.0000021684,0.0000021704,0.0000021732, -0.0000021770,0.0000021813,0.0000021853,0.0000021886,0.0000021911, -0.0000021927,0.0000021934,0.0000021930,0.0000021920,0.0000021907, -0.0000021894,0.0000021883,0.0000021875,0.0000021867,0.0000021851, -0.0000021831,0.0000021806,0.0000021782,0.0000021753,0.0000021726, -0.0000021699,0.0000021675,0.0000021648,0.0000021612,0.0000021581, -0.0000021547,0.0000021512,0.0000021471,0.0000021432,0.0000021395, -0.0000021359,0.0000021318,0.0000021275,0.0000021236,0.0000021207, -0.0000021187,0.0000021174,0.0000021163,0.0000021157,0.0000021159, -0.0000021168,0.0000021178,0.0000021189,0.0000021199,0.0000021208, -0.0000021216,0.0000021219,0.0000021216,0.0000021207,0.0000021190, -0.0000021165,0.0000021135,0.0000021098,0.0000021057,0.0000021012, -0.0000020964,0.0000020913,0.0000020856,0.0000020796,0.0000020737, -0.0000020684,0.0000020637,0.0000020594,0.0000020551,0.0000020507, -0.0000020461,0.0000020415,0.0000020373,0.0000020342,0.0000020328, -0.0000020329,0.0000020339,0.0000020349,0.0000020365,0.0000020384, -0.0000020405,0.0000020422,0.0000020429,0.0000020431,0.0000020436, -0.0000020446,0.0000020457,0.0000020464,0.0000020462,0.0000020459, -0.0000020445,0.0000020431,0.0000020411,0.0000020386,0.0000020359, -0.0000020332,0.0000020302,0.0000020269,0.0000020238,0.0000020215, -0.0000020203,0.0000020199,0.0000020204,0.0000020214,0.0000020220, -0.0000020220,0.0000020212,0.0000020198,0.0000020179,0.0000020160, -0.0000020139,0.0000020126,0.0000020119,0.0000020117,0.0000020116, -0.0000020119,0.0000020124,0.0000020134,0.0000020140,0.0000020147, -0.0000020154,0.0000020166,0.0000020186,0.0000020211,0.0000020232, -0.0000020243,0.0000020248,0.0000020253,0.0000020260,0.0000020264, -0.0000020261,0.0000020252,0.0000020239,0.0000020225,0.0000020207, -0.0000020179,0.0000020147,0.0000020111,0.0000020071,0.0000020015, -0.0000019931,0.0000019835,0.0000019758,0.0000019719,0.0000019713, -0.0000019706,0.0000019672,0.0000019611,0.0000019544,0.0000019480, -0.0000019425,0.0000019384,0.0000019351,0.0000019324,0.0000019299, -0.0000019273,0.0000019253,0.0000019244,0.0000019249,0.0000019274, -0.0000019314,0.0000019357,0.0000019391,0.0000019422,0.0000019456, -0.0000019485,0.0000019506,0.0000019533,0.0000019574,0.0000019616, -0.0000019652,0.0000019681,0.0000019703,0.0000019714,0.0000019717, -0.0000019721,0.0000019726,0.0000019736,0.0000019749,0.0000019753, -0.0000019742,0.0000019721,0.0000019704,0.0000019695,0.0000019693, -0.0000019691,0.0000019686,0.0000019679,0.0000019670,0.0000019662, -0.0000019657,0.0000019655,0.0000019658,0.0000019667,0.0000019683, -0.0000019702,0.0000019728,0.0000019754,0.0000019779,0.0000019804, -0.0000019828,0.0000019851,0.0000019874,0.0000019896,0.0000019916, -0.0000019934,0.0000019950,0.0000019965,0.0000019981,0.0000019995, -0.0000020004,0.0000020008,0.0000020011,0.0000020013,0.0000020013, -0.0000020010,0.0000020006,0.0000020007,0.0000020012,0.0000020025, -0.0000020046,0.0000020063,0.0000020077,0.0000020096,0.0000020116, -0.0000020136,0.0000020161,0.0000020192,0.0000020228,0.0000020266, -0.0000020300,0.0000020328,0.0000020350,0.0000020367,0.0000020380, -0.0000020393,0.0000020410,0.0000020426,0.0000020440,0.0000020445, -0.0000020446,0.0000020447,0.0000020448,0.0000020449,0.0000020450, -0.0000020454,0.0000020464,0.0000020478,0.0000020500,0.0000020533, -0.0000020569,0.0000020606,0.0000020649,0.0000020697,0.0000020745, -0.0000020789,0.0000020827,0.0000020857,0.0000020879,0.0000020890, -0.0000020889,0.0000020877,0.0000020858,0.0000020835,0.0000020813, -0.0000020794,0.0000020780,0.0000020773,0.0000020772,0.0000020778, -0.0000020784,0.0000020808,0.0000020895,0.0000021011,0.0000021072, -0.0000021074,0.0000021069,0.0000021074,0.0000021086,0.0000021088, -0.0000021066,0.0000021044,0.0000021042,0.0000021016,0.0000020966, -0.0000020936,0.0000020885,0.0000020838,0.0000020808,0.0000020780, -0.0000020778,0.0000020786,0.0000020790,0.0000020799,0.0000020792, -0.0000020776,0.0000020776,0.0000020810,0.0000020876,0.0000020945, -0.0000021001,0.0000021041,0.0000021060,0.0000021058,0.0000021044, -0.0000021020,0.0000020989,0.0000020955,0.0000020918,0.0000020871, -0.0000020818,0.0000020766,0.0000020716,0.0000020672,0.0000020633, -0.0000020589,0.0000020541,0.0000020498,0.0000020471,0.0000020462, -0.0000020461,0.0000020459,0.0000020454,0.0000020444,0.0000020429, -0.0000020411,0.0000020393,0.0000020382,0.0000020379,0.0000020381, -0.0000020390,0.0000020404,0.0000020419,0.0000020433,0.0000020444, -0.0000020447,0.0000020442,0.0000020429,0.0000020411,0.0000020392, -0.0000020371,0.0000020351,0.0000020337,0.0000020324,0.0000020312, -0.0000020304,0.0000020302,0.0000020302,0.0000020303,0.0000020303, -0.0000020305,0.0000020310,0.0000020318,0.0000020323,0.0000020324, -0.0000020322,0.0000020319,0.0000020314,0.0000020306,0.0000020297, -0.0000020286,0.0000020271,0.0000020256,0.0000020249,0.0000020242, -0.0000020241,0.0000020245,0.0000020250,0.0000020260,0.0000020275, -0.0000020298,0.0000020328,0.0000020369,0.0000020420,0.0000020477, -0.0000020534,0.0000020587,0.0000020633,0.0000020671,0.0000020698, -0.0000020712,0.0000020716,0.0000020713,0.0000020709,0.0000020709, -0.0000020711,0.0000020713,0.0000020715,0.0000020712,0.0000020707, -0.0000020712,0.0000020732,0.0000020760,0.0000020793,0.0000020821, -0.0000020835,0.0000020829,0.0000020800,0.0000020750,0.0000020687, -0.0000020618,0.0000020549,0.0000020485,0.0000020438,0.0000020419, -0.0000020423,0.0000020445,0.0000020477,0.0000020506,0.0000020526, -0.0000020533,0.0000020531,0.0000020522,0.0000020500,0.0000020461, -0.0000020408,0.0000020333,0.0000020244,0.0000020151,0.0000020062, -0.0000019981,0.0000019909,0.0000019852,0.0000019803,0.0000019753, -0.0000019696,0.0000019632,0.0000019573,0.0000019528,0.0000019498, -0.0000019478,0.0000019470,0.0000019469,0.0000019473,0.0000019475, -0.0000019479,0.0000019486,0.0000019495,0.0000019505,0.0000019517, -0.0000019527,0.0000019528,0.0000019519,0.0000019507,0.0000019503, -0.0000019512,0.0000019531,0.0000019552,0.0000019569,0.0000019581, -0.0000019586,0.0000019586,0.0000019590,0.0000019606,0.0000019654, -0.0000019724,0.0000019801,0.0000019870,0.0000019920,0.0000019958, -0.0000020000,0.0000020049,0.0000020088,0.0000020102,0.0000020095, -0.0000020076,0.0000020058,0.0000020048,0.0000020048,0.0000020052, -0.0000020050,0.0000020022,0.0000019958,0.0000019870,0.0000019782, -0.0000019704,0.0000019647,0.0000019613,0.0000019582,0.0000019583, -0.0000019608,0.0000019647,0.0000019693,0.0000019742,0.0000019787, -0.0000019823,0.0000019853,0.0000019881,0.0000019918,0.0000019974, -0.0000020054,0.0000020156,0.0000020272,0.0000020389,0.0000020477, -0.0000020525,0.0000020546,0.0000020537,0.0000020519,0.0000020489, -0.0000020454,0.0000020413,0.0000020367,0.0000020320,0.0000020275, -0.0000020234,0.0000020196,0.0000020162,0.0000020129,0.0000020108, -0.0000020088,0.0000020074,0.0000020069,0.0000020072,0.0000020076, -0.0000020083,0.0000020097,0.0000020116,0.0000020140,0.0000020165, -0.0000020194,0.0000020225,0.0000020263,0.0000020303,0.0000020340, -0.0000020367,0.0000020373,0.0000020363,0.0000020337,0.0000020303, -0.0000020268,0.0000020233,0.0000020198,0.0000020161,0.0000020122, -0.0000020085,0.0000020047,0.0000020013,0.0000019994,0.0000019992, -0.0000020001,0.0000020018,0.0000020037,0.0000020052,0.0000020057, -0.0000020045,0.0000020029,0.0000020012,0.0000019988,0.0000019962, -0.0000019937,0.0000019912,0.0000019880,0.0000019847,0.0000019819, -0.0000019806,0.0000019799,0.0000019790,0.0000019776,0.0000019753, -0.0000019720,0.0000019686,0.0000019659,0.0000019640,0.0000019636, -0.0000019650,0.0000019676,0.0000019703,0.0000019730,0.0000019748, -0.0000019755,0.0000019751,0.0000019737,0.0000019709,0.0000019675, -0.0000019639,0.0000019600,0.0000019561,0.0000019528,0.0000019504, -0.0000019491,0.0000019484,0.0000019479,0.0000019475,0.0000019474, -0.0000019472,0.0000019466,0.0000019457,0.0000019443,0.0000019422, -0.0000019396,0.0000019367,0.0000019335,0.0000019301,0.0000019265, -0.0000019230,0.0000019196,0.0000019164,0.0000019134,0.0000019104, -0.0000019071,0.0000019035,0.0000018998,0.0000018968,0.0000018943, -0.0000018921,0.0000018900,0.0000018880,0.0000018863,0.0000018846, -0.0000018828,0.0000018810,0.0000018791,0.0000018773,0.0000018762, -0.0000018756,0.0000018752,0.0000018748,0.0000018741,0.0000018736, -0.0000018732,0.0000018730,0.0000018728,0.0000018728,0.0000018729, -0.0000018728,0.0000018723,0.0000018717,0.0000018709,0.0000018700, -0.0000018694,0.0000018691,0.0000018694,0.0000018701,0.0000018710, -0.0000018721,0.0000018732,0.0000018741,0.0000018749,0.0000018753, -0.0000018755,0.0000018750,0.0000018741,0.0000018730,0.0000018722, -0.0000018713,0.0000018704,0.0000018696,0.0000018692,0.0000018693, -0.0000018696,0.0000018695,0.0000018690,0.0000018680,0.0000018672, -0.0000018668,0.0000018672,0.0000018680,0.0000018694,0.0000018716, -0.0000018745,0.0000018780,0.0000018820,0.0000018864,0.0000018908, -0.0000018947,0.0000018978,0.0000018999,0.0000019010,0.0000019015, -0.0000019020,0.0000019032,0.0000019055,0.0000019087,0.0000019126, -0.0000019165,0.0000019201,0.0000019234,0.0000019261,0.0000019279, -0.0000019290,0.0000019295,0.0000019297,0.0000019299,0.0000019302, -0.0000019307,0.0000019313,0.0000019320,0.0000019324,0.0000019328, -0.0000019333,0.0000019339,0.0000019343,0.0000019346,0.0000019348, -0.0000019353,0.0000019362,0.0000019376,0.0000019392,0.0000019407, -0.0000019422,0.0000019432,0.0000019439,0.0000019443,0.0000019443, -0.0000019442,0.0000019445,0.0000019456,0.0000019473,0.0000019488, -0.0000019495,0.0000019495,0.0000019488,0.0000019477,0.0000019465, -0.0000019461,0.0000019466,0.0000019482,0.0000019496,0.0000019498, -0.0000019491,0.0000019445,0.0000019362,0.0000019285,0.0000019273, -0.0000019316,0.0000019372,0.0000019411,0.0000019437,0.0000019463, -0.0000019500,0.0000019541,0.0000019545,0.0000019506,0.0000019466, -0.0000019462,0.0000019518,0.0000019618,0.0000019734,0.0000019839, -0.0000019934,0.0000020038,0.0000020148,0.0000020232,0.0000020255, -0.0000020251,0.0000020243,0.0000020252,0.0000020285,0.0000020332, -0.0000020383,0.0000020427,0.0000020456,0.0000020457,0.0000020442, -0.0000020418,0.0000020390,0.0000020367,0.0000020356,0.0000020360, -0.0000020386,0.0000020433,0.0000020492,0.0000020551,0.0000020586, -0.0000020594,0.0000020576,0.0000020532,0.0000020478,0.0000020428, -0.0000020383,0.0000020348,0.0000020325,0.0000020319,0.0000020322, -0.0000020328,0.0000020337,0.0000020347,0.0000020356,0.0000020364, -0.0000020369,0.0000020372,0.0000020372,0.0000020365,0.0000020356, -0.0000020351,0.0000020352,0.0000020361,0.0000020376,0.0000020395, -0.0000020415,0.0000020432,0.0000020447,0.0000020459,0.0000020466, -0.0000020466,0.0000020459,0.0000020447,0.0000020433,0.0000020419, -0.0000020405,0.0000020390,0.0000020372,0.0000020351,0.0000020325, -0.0000020295,0.0000020264,0.0000020238,0.0000020220,0.0000020210, -0.0000020206,0.0000020205,0.0000020205,0.0000020204,0.0000020199, -0.0000020188,0.0000020173,0.0000020156,0.0000020140,0.0000020124, -0.0000020112,0.0000020100,0.0000020087,0.0000020074,0.0000020061, -0.0000020047,0.0000020031,0.0000020014,0.0000019996,0.0000019979, -0.0000019962,0.0000019947,0.0000019932,0.0000019918,0.0000019905, -0.0000019889,0.0000019871,0.0000019851,0.0000019831,0.0000019808, -0.0000019786,0.0000019764,0.0000019743,0.0000019717,0.0000019680, -0.0000019638,0.0000019592,0.0000019550,0.0000019514,0.0000019490, -0.0000019473,0.0000019454,0.0000019425,0.0000019392,0.0000019362, -0.0000019341,0.0000019330,0.0000019333,0.0000019350,0.0000019378, -0.0000019409,0.0000019442,0.0000019480,0.0000019524,0.0000019571, -0.0000019624,0.0000019669,0.0000019707,0.0000019738,0.0000019765, -0.0000019792,0.0000019814,0.0000019825,0.0000019813,0.0000019779, -0.0000019734,0.0000019700,0.0000019690,0.0000019703,0.0000019721, -0.0000019721,0.0000019688,0.0000019621,0.0000019665,0.0000019609, -0.0000019538,0.0000019489,0.0000019473,0.0000019473,0.0000019478, -0.0000019482,0.0000019495,0.0000019515,0.0000019529,0.0000019527, -0.0000019513,0.0000019499,0.0000019495,0.0000019498,0.0000019499, -0.0000019495,0.0000019486,0.0000019482,0.0000019481,0.0000019487, -0.0000019497,0.0000019506,0.0000019507,0.0000019504,0.0000019506, -0.0000019520,0.0000019544,0.0000019578,0.0000019616,0.0000019652, -0.0000019684,0.0000019716,0.0000019739,0.0000019756,0.0000019765, -0.0000019768,0.0000019765,0.0000019759,0.0000019753,0.0000019743, -0.0000019730,0.0000019714,0.0000019697,0.0000019677,0.0000019658, -0.0000019642,0.0000019627,0.0000019613,0.0000019597,0.0000019587, -0.0000019583,0.0000019581,0.0000019577,0.0000019571,0.0000019565, -0.0000019562,0.0000019560,0.0000019558,0.0000019551,0.0000019540, -0.0000019527,0.0000019512,0.0000019496,0.0000019485,0.0000019481, -0.0000019485,0.0000019498,0.0000019513,0.0000019527,0.0000019539, -0.0000019551,0.0000019563,0.0000019570,0.0000019574,0.0000019570, -0.0000019562,0.0000019555,0.0000019548,0.0000019537,0.0000019521, -0.0000019503,0.0000019486,0.0000019467,0.0000019457,0.0000019459, -0.0000019465,0.0000019474,0.0000019490,0.0000019506,0.0000019517, -0.0000019530,0.0000019542,0.0000019549,0.0000019554,0.0000019558, -0.0000019564,0.0000019574,0.0000019583,0.0000019594,0.0000019612, -0.0000019631,0.0000019649,0.0000019672,0.0000019697,0.0000019726, -0.0000019757,0.0000019787,0.0000019812,0.0000019831,0.0000019838, -0.0000019836,0.0000019828,0.0000019813,0.0000019787,0.0000019750, -0.0000019709,0.0000019670,0.0000019637,0.0000019605,0.0000019569, -0.0000019544,0.0000019543,0.0000019566,0.0000019615,0.0000019679, -0.0000019744,0.0000019810,0.0000019873,0.0000019939,0.0000020016, -0.0000020103,0.0000020184,0.0000020257,0.0000020316,0.0000020370, -0.0000020425,0.0000020484,0.0000020542,0.0000020589,0.0000020615, -0.0000020620,0.0000020620,0.0000020609,0.0000020581,0.0000020548, -0.0000020518,0.0000020487,0.0000020446,0.0000020397,0.0000020352, -0.0000020318,0.0000020298,0.0000020287,0.0000020281,0.0000020285, -0.0000020291,0.0000020297,0.0000020319,0.0000020359,0.0000020404, -0.0000020445,0.0000020478,0.0000020505,0.0000020532,0.0000020554, -0.0000020572,0.0000020584,0.0000020592,0.0000020597,0.0000020598, -0.0000020594,0.0000020592,0.0000020592,0.0000020588,0.0000020583, -0.0000020579,0.0000020578,0.0000020580,0.0000020587,0.0000020599, -0.0000020614,0.0000020629,0.0000020641,0.0000020653,0.0000020666, -0.0000020681,0.0000020696,0.0000020709,0.0000020720,0.0000020730, -0.0000020737,0.0000020743,0.0000020754,0.0000020766,0.0000020776, -0.0000020786,0.0000020798,0.0000020814,0.0000020834,0.0000020858, -0.0000020883,0.0000020908,0.0000020932,0.0000020956,0.0000020978, -0.0000020998,0.0000021013,0.0000021023,0.0000021028,0.0000021025, -0.0000021019,0.0000021015,0.0000021012,0.0000021009,0.0000021007, -0.0000021007,0.0000021010,0.0000021016,0.0000021027,0.0000021040, -0.0000021055,0.0000021071,0.0000021092,0.0000021116,0.0000021141, -0.0000021168,0.0000021195,0.0000021221,0.0000021246,0.0000021266, -0.0000021280,0.0000021285,0.0000021281,0.0000021268,0.0000021249, -0.0000021228,0.0000021205,0.0000021183,0.0000021163,0.0000021144, -0.0000021123,0.0000021105,0.0000021088,0.0000021070,0.0000021052, -0.0000021034,0.0000021016,0.0000020998,0.0000020985,0.0000020981, -0.0000020987,0.0000020999,0.0000021012,0.0000021018,0.0000021039, -0.0000021086,0.0000021146,0.0000021203,0.0000021248,0.0000021276, -0.0000021290,0.0000021297,0.0000021298,0.0000021292,0.0000021286, -0.0000021274,0.0000021250,0.0000021205,0.0000021156,0.0000021118, -0.0000021092,0.0000021079,0.0000021079,0.0000021088,0.0000021101, -0.0000021112,0.0000021126,0.0000021205,0.0000021329,0.0000021410, -0.0000021479,0.0000021577,0.0000021656,0.0000021682,0.0000021673, -0.0000021630,0.0000021546,0.0000021443,0.0000021335,0.0000021229, -0.0000021143,0.0000021040,0.0000020950,0.0000020915,0.0000020894, -0.0000020864,0.0000020839,0.0000020827,0.0000020830,0.0000020854, -0.0000020876,0.0000020883,0.0000020879,0.0000020869,0.0000020859, -0.0000020849,0.0000020841,0.0000020836,0.0000020831,0.0000020817, -0.0000020784,0.0000020734,0.0000020665,0.0000020581,0.0000020507, -0.0000020447,0.0000020395,0.0000020362,0.0000020360,0.0000020388, -0.0000020425,0.0000020452,0.0000020467,0.0000020476,0.0000020483, -0.0000020485,0.0000020470,0.0000020436,0.0000020394,0.0000020354, -0.0000020317,0.0000020286,0.0000020264,0.0000020250,0.0000020235, -0.0000020229,0.0000020269,0.0000020367,0.0000020476,0.0000020544, -0.0000020560,0.0000020549,0.0000020509,0.0000020465,0.0000020390, -0.0000020221,0.0000020051,0.0000019986,0.0000020003,0.0000020156, -0.0000020331,0.0000020365,0.0000020340,0.0000020328,0.0000020395, -0.0000020598,0.0000020747,0.0000020754,0.0000020737,0.0000020768, -0.0000020922,0.0000021110,0.0000021190,0.0000021269,0.0000021450, -0.0000021565,0.0000021608,0.0000021635,0.0000021682,0.0000021707, -0.0000021721,0.0000021761,0.0000021832,0.0000021895,0.0000021900, -0.0000021878,0.0000021860,0.0000021828,0.0000021820,0.0000021877, -0.0000021971,0.0000022014,0.0000022014,0.0000022000,0.0000021993, -0.0000021991,0.0000021980,0.0000021960,0.0000021928,0.0000021893, -0.0000021872,0.0000021876,0.0000021889,0.0000021902,0.0000021916, -0.0000021923,0.0000021921,0.0000021915,0.0000021885,0.0000021836, -0.0000021786,0.0000021737,0.0000021685,0.0000021634,0.0000021594, -0.0000021581,0.0000021589,0.0000021610,0.0000021642,0.0000021681, -0.0000021713,0.0000021736,0.0000021755,0.0000021762,0.0000021749, -0.0000021712,0.0000021675,0.0000021645,0.0000021627,0.0000021619, -0.0000021605,0.0000021580,0.0000021551,0.0000021516,0.0000021475, -0.0000021432,0.0000021396,0.0000021354,0.0000021301,0.0000021243, -0.0000021195,0.0000021172,0.0000021151,0.0000021132,0.0000021119, -0.0000021112,0.0000021119,0.0000021132,0.0000021142,0.0000021153, -0.0000021171,0.0000021187,0.0000021196,0.0000021195,0.0000021194, -0.0000021193,0.0000021190,0.0000021181,0.0000021165,0.0000021139, -0.0000021110,0.0000021068,0.0000021021,0.0000020978,0.0000020941, -0.0000020911,0.0000020881,0.0000020854,0.0000020833,0.0000020824, -0.0000020817,0.0000020809,0.0000020812,0.0000020816,0.0000020813, -0.0000020802,0.0000020784,0.0000020764,0.0000020743,0.0000020713, -0.0000020681,0.0000020644,0.0000020609,0.0000020576,0.0000020543, -0.0000020516,0.0000020508,0.0000020504,0.0000020499,0.0000020497, -0.0000020496,0.0000020497,0.0000020498,0.0000020504,0.0000020511, -0.0000020517,0.0000020524,0.0000020531,0.0000020537,0.0000020543, -0.0000020551,0.0000020559,0.0000020565,0.0000020560,0.0000020550, -0.0000020546,0.0000020544,0.0000020544,0.0000020545,0.0000020558, -0.0000020569,0.0000020574,0.0000020573,0.0000020565,0.0000020553, -0.0000020536,0.0000020524,0.0000020515,0.0000020515,0.0000020526, -0.0000020549,0.0000020574,0.0000020597,0.0000020625,0.0000020652, -0.0000020680,0.0000020705,0.0000020732,0.0000020749,0.0000020755, -0.0000020757,0.0000020757,0.0000020754,0.0000020748,0.0000020737, -0.0000020719,0.0000020715,0.0000020731,0.0000020754,0.0000020786, -0.0000020819,0.0000020846,0.0000020869,0.0000020891,0.0000020909, -0.0000020921,0.0000020938,0.0000020952,0.0000020961,0.0000020970, -0.0000020975,0.0000020977,0.0000020982,0.0000021000,0.0000021034, -0.0000021068,0.0000021104,0.0000021146,0.0000021191,0.0000021234, -0.0000021272,0.0000021299,0.0000021310,0.0000021310,0.0000021309, -0.0000021304,0.0000021294,0.0000021279,0.0000021267,0.0000021252, -0.0000021235,0.0000021219,0.0000021206,0.0000021197,0.0000021194, -0.0000021199,0.0000021215,0.0000021238,0.0000021266,0.0000021294, -0.0000021321,0.0000021346,0.0000021368,0.0000021386,0.0000021404, -0.0000021423,0.0000021442,0.0000021456,0.0000021468,0.0000021481, -0.0000021492,0.0000021498,0.0000021496,0.0000021489,0.0000021480, -0.0000021468,0.0000021453,0.0000021436,0.0000021416,0.0000021393, -0.0000021375,0.0000021360,0.0000021346,0.0000021336,0.0000021334, -0.0000021333,0.0000021333,0.0000021339,0.0000021347,0.0000021356, -0.0000021374,0.0000021404,0.0000021437,0.0000021473,0.0000021510, -0.0000021541,0.0000021567,0.0000021595,0.0000021624,0.0000021657, -0.0000021690,0.0000021722,0.0000021753,0.0000021787,0.0000021823, -0.0000021861,0.0000021894,0.0000021924,0.0000021949,0.0000021969, -0.0000021980,0.0000021983,0.0000021982,0.0000021970,0.0000021949, -0.0000021918,0.0000021888,0.0000021864,0.0000021850,0.0000021847, -0.0000021853,0.0000021871,0.0000021898,0.0000021928,0.0000021956, -0.0000021979,0.0000021995,0.0000022005,0.0000022008,0.0000022008, -0.0000022008,0.0000022006,0.0000022000,0.0000021988,0.0000021971, -0.0000021949,0.0000021925,0.0000021906,0.0000021894,0.0000021885, -0.0000021874,0.0000021856,0.0000021828,0.0000021798,0.0000021779, -0.0000021772,0.0000021764,0.0000021760,0.0000021754,0.0000021753, -0.0000021755,0.0000021752,0.0000021742,0.0000021724,0.0000021701, -0.0000021680,0.0000021669,0.0000021668,0.0000021676,0.0000021691, -0.0000021715,0.0000021747,0.0000021784,0.0000021821,0.0000021854, -0.0000021882,0.0000021905,0.0000021919,0.0000021923,0.0000021917, -0.0000021905,0.0000021889,0.0000021871,0.0000021853,0.0000021835, -0.0000021813,0.0000021788,0.0000021761,0.0000021732,0.0000021700, -0.0000021675,0.0000021654,0.0000021631,0.0000021608,0.0000021589, -0.0000021574,0.0000021555,0.0000021553,0.0000021536,0.0000021524, -0.0000021508,0.0000021482,0.0000021454,0.0000021423,0.0000021395, -0.0000021372,0.0000021350,0.0000021326,0.0000021306,0.0000021294, -0.0000021289,0.0000021284,0.0000021276,0.0000021270,0.0000021264, -0.0000021258,0.0000021251,0.0000021245,0.0000021238,0.0000021228, -0.0000021212,0.0000021195,0.0000021174,0.0000021151,0.0000021125, -0.0000021096,0.0000021061,0.0000021017,0.0000020964,0.0000020904, -0.0000020844,0.0000020787,0.0000020736,0.0000020691,0.0000020647, -0.0000020602,0.0000020553,0.0000020501,0.0000020450,0.0000020410, -0.0000020384,0.0000020367,0.0000020357,0.0000020349,0.0000020346, -0.0000020350,0.0000020352,0.0000020353,0.0000020352,0.0000020354, -0.0000020362,0.0000020376,0.0000020395,0.0000020412,0.0000020425, -0.0000020428,0.0000020421,0.0000020403,0.0000020373,0.0000020337, -0.0000020301,0.0000020268,0.0000020238,0.0000020215,0.0000020204, -0.0000020201,0.0000020202,0.0000020202,0.0000020206,0.0000020204, -0.0000020200,0.0000020191,0.0000020175,0.0000020158,0.0000020138, -0.0000020118,0.0000020104,0.0000020102,0.0000020105,0.0000020114, -0.0000020125,0.0000020136,0.0000020146,0.0000020152,0.0000020154, -0.0000020149,0.0000020147,0.0000020147,0.0000020159,0.0000020166, -0.0000020175,0.0000020184,0.0000020195,0.0000020208,0.0000020225, -0.0000020239,0.0000020243,0.0000020239,0.0000020228,0.0000020216, -0.0000020203,0.0000020184,0.0000020161,0.0000020135,0.0000020103, -0.0000020049,0.0000019966,0.0000019867,0.0000019778,0.0000019725, -0.0000019707,0.0000019695,0.0000019661,0.0000019609,0.0000019552, -0.0000019506,0.0000019478,0.0000019448,0.0000019412,0.0000019373, -0.0000019331,0.0000019293,0.0000019268,0.0000019261,0.0000019278, -0.0000019317,0.0000019363,0.0000019402,0.0000019437,0.0000019474, -0.0000019500,0.0000019514,0.0000019534,0.0000019567,0.0000019598, -0.0000019622,0.0000019638,0.0000019649,0.0000019654,0.0000019654, -0.0000019658,0.0000019678,0.0000019705,0.0000019721,0.0000019720, -0.0000019704,0.0000019695,0.0000019702,0.0000019720,0.0000019732, -0.0000019733,0.0000019724,0.0000019712,0.0000019703,0.0000019700, -0.0000019705,0.0000019716,0.0000019727,0.0000019740,0.0000019756, -0.0000019775,0.0000019798,0.0000019823,0.0000019847,0.0000019872, -0.0000019893,0.0000019912,0.0000019930,0.0000019947,0.0000019963, -0.0000019977,0.0000019992,0.0000020007,0.0000020024,0.0000020043, -0.0000020060,0.0000020070,0.0000020079,0.0000020089,0.0000020097, -0.0000020101,0.0000020101,0.0000020099,0.0000020095,0.0000020092, -0.0000020090,0.0000020091,0.0000020093,0.0000020100,0.0000020109, -0.0000020115,0.0000020126,0.0000020141,0.0000020164,0.0000020195, -0.0000020225,0.0000020254,0.0000020280,0.0000020301,0.0000020319, -0.0000020335,0.0000020354,0.0000020378,0.0000020404,0.0000020427, -0.0000020442,0.0000020450,0.0000020454,0.0000020456,0.0000020458, -0.0000020464,0.0000020476,0.0000020496,0.0000020522,0.0000020552, -0.0000020581,0.0000020610,0.0000020641,0.0000020676,0.0000020712, -0.0000020747,0.0000020778,0.0000020806,0.0000020828,0.0000020839, -0.0000020839,0.0000020831,0.0000020819,0.0000020806,0.0000020794, -0.0000020783,0.0000020776,0.0000020774,0.0000020776,0.0000020778, -0.0000020779,0.0000020797,0.0000020893,0.0000021016,0.0000021072, -0.0000021074,0.0000021077,0.0000021090,0.0000021103,0.0000021097, -0.0000021071,0.0000021058,0.0000021055,0.0000021010,0.0000020961, -0.0000020930,0.0000020873,0.0000020833,0.0000020801,0.0000020775, -0.0000020776,0.0000020783,0.0000020789,0.0000020802,0.0000020799, -0.0000020785,0.0000020784,0.0000020803,0.0000020863,0.0000020938, -0.0000020998,0.0000021036,0.0000021052,0.0000021049,0.0000021034, -0.0000021007,0.0000020973,0.0000020937,0.0000020898,0.0000020859, -0.0000020818,0.0000020776,0.0000020734,0.0000020695,0.0000020656, -0.0000020615,0.0000020573,0.0000020535,0.0000020507,0.0000020490, -0.0000020480,0.0000020469,0.0000020456,0.0000020439,0.0000020416, -0.0000020390,0.0000020366,0.0000020352,0.0000020351,0.0000020354, -0.0000020363,0.0000020375,0.0000020387,0.0000020399,0.0000020411, -0.0000020417,0.0000020416,0.0000020407,0.0000020392,0.0000020376, -0.0000020361,0.0000020346,0.0000020337,0.0000020332,0.0000020330, -0.0000020331,0.0000020336,0.0000020340,0.0000020343,0.0000020344, -0.0000020344,0.0000020349,0.0000020358,0.0000020365,0.0000020368, -0.0000020368,0.0000020365,0.0000020359,0.0000020350,0.0000020338, -0.0000020322,0.0000020300,0.0000020275,0.0000020253,0.0000020235, -0.0000020226,0.0000020214,0.0000020207,0.0000020205,0.0000020208, -0.0000020216,0.0000020232,0.0000020255,0.0000020290,0.0000020335, -0.0000020386,0.0000020442,0.0000020498,0.0000020551,0.0000020595, -0.0000020627,0.0000020648,0.0000020659,0.0000020662,0.0000020661, -0.0000020663,0.0000020669,0.0000020677,0.0000020680,0.0000020676, -0.0000020670,0.0000020661,0.0000020652,0.0000020647,0.0000020642, -0.0000020635,0.0000020620,0.0000020590,0.0000020548,0.0000020499, -0.0000020444,0.0000020390,0.0000020346,0.0000020321,0.0000020318, -0.0000020334,0.0000020367,0.0000020405,0.0000020440,0.0000020463, -0.0000020473,0.0000020474,0.0000020470,0.0000020454,0.0000020421, -0.0000020370,0.0000020302,0.0000020220,0.0000020131,0.0000020045, -0.0000019965,0.0000019895,0.0000019832,0.0000019773,0.0000019716, -0.0000019660,0.0000019606,0.0000019561,0.0000019531,0.0000019513, -0.0000019503,0.0000019496,0.0000019491,0.0000019489,0.0000019487, -0.0000019489,0.0000019496,0.0000019503,0.0000019511,0.0000019518, -0.0000019527,0.0000019532,0.0000019529,0.0000019519,0.0000019510, -0.0000019510,0.0000019523,0.0000019540,0.0000019554,0.0000019565, -0.0000019571,0.0000019571,0.0000019573,0.0000019587,0.0000019631, -0.0000019695,0.0000019771,0.0000019840,0.0000019891,0.0000019926, -0.0000019963,0.0000020007,0.0000020046,0.0000020065,0.0000020060, -0.0000020040,0.0000020019,0.0000020003,0.0000019998,0.0000020003, -0.0000020008,0.0000019996,0.0000019951,0.0000019885,0.0000019805, -0.0000019727,0.0000019656,0.0000019594,0.0000019547,0.0000019509, -0.0000019507,0.0000019536,0.0000019592,0.0000019660,0.0000019728, -0.0000019783,0.0000019824,0.0000019854,0.0000019878,0.0000019904, -0.0000019945,0.0000020014,0.0000020116,0.0000020236,0.0000020352, -0.0000020443,0.0000020500,0.0000020525,0.0000020516,0.0000020511, -0.0000020488,0.0000020454,0.0000020413,0.0000020366,0.0000020319, -0.0000020275,0.0000020235,0.0000020199,0.0000020165,0.0000020138, -0.0000020120,0.0000020108,0.0000020103,0.0000020103,0.0000020110, -0.0000020125,0.0000020149,0.0000020176,0.0000020204,0.0000020232, -0.0000020264,0.0000020298,0.0000020333,0.0000020362,0.0000020378, -0.0000020377,0.0000020363,0.0000020342,0.0000020317,0.0000020289, -0.0000020255,0.0000020218,0.0000020178,0.0000020129,0.0000020072, -0.0000020007,0.0000019944,0.0000019902,0.0000019884,0.0000019888, -0.0000019906,0.0000019939,0.0000019975,0.0000020007,0.0000020023, -0.0000020023,0.0000020011,0.0000019989,0.0000019964,0.0000019941, -0.0000019918,0.0000019886,0.0000019853,0.0000019824,0.0000019810, -0.0000019800,0.0000019788,0.0000019773,0.0000019750,0.0000019719, -0.0000019682,0.0000019654,0.0000019631,0.0000019616,0.0000019623, -0.0000019642,0.0000019670,0.0000019693,0.0000019707,0.0000019707, -0.0000019695,0.0000019670,0.0000019636,0.0000019597,0.0000019554, -0.0000019513,0.0000019477,0.0000019450,0.0000019431,0.0000019423, -0.0000019421,0.0000019420,0.0000019416,0.0000019414,0.0000019412, -0.0000019405,0.0000019399,0.0000019389,0.0000019372,0.0000019348, -0.0000019317,0.0000019281,0.0000019247,0.0000019215,0.0000019185, -0.0000019159,0.0000019134,0.0000019108,0.0000019083,0.0000019055, -0.0000019021,0.0000018984,0.0000018949,0.0000018918,0.0000018891, -0.0000018863,0.0000018834,0.0000018808,0.0000018786,0.0000018766, -0.0000018748,0.0000018729,0.0000018711,0.0000018697,0.0000018690, -0.0000018686,0.0000018681,0.0000018679,0.0000018680,0.0000018682, -0.0000018683,0.0000018681,0.0000018681,0.0000018683,0.0000018683, -0.0000018681,0.0000018680,0.0000018676,0.0000018670,0.0000018662, -0.0000018654,0.0000018646,0.0000018641,0.0000018640,0.0000018641, -0.0000018645,0.0000018649,0.0000018652,0.0000018655,0.0000018656, -0.0000018653,0.0000018646,0.0000018636,0.0000018626,0.0000018615, -0.0000018605,0.0000018603,0.0000018608,0.0000018621,0.0000018635, -0.0000018647,0.0000018655,0.0000018657,0.0000018658,0.0000018661, -0.0000018666,0.0000018669,0.0000018671,0.0000018677,0.0000018686, -0.0000018700,0.0000018719,0.0000018746,0.0000018779,0.0000018816, -0.0000018854,0.0000018889,0.0000018918,0.0000018939,0.0000018952, -0.0000018962,0.0000018975,0.0000018996,0.0000019024,0.0000019058, -0.0000019096,0.0000019133,0.0000019169,0.0000019199,0.0000019223, -0.0000019240,0.0000019251,0.0000019256,0.0000019259,0.0000019261, -0.0000019263,0.0000019267,0.0000019270,0.0000019273,0.0000019278, -0.0000019285,0.0000019291,0.0000019297,0.0000019300,0.0000019303, -0.0000019310,0.0000019321,0.0000019335,0.0000019353,0.0000019373, -0.0000019391,0.0000019405,0.0000019413,0.0000019413,0.0000019407, -0.0000019402,0.0000019402,0.0000019414,0.0000019433,0.0000019452, -0.0000019466,0.0000019473,0.0000019470,0.0000019458,0.0000019443, -0.0000019438,0.0000019444,0.0000019459,0.0000019475,0.0000019477, -0.0000019466,0.0000019408,0.0000019319,0.0000019259,0.0000019264, -0.0000019316,0.0000019365,0.0000019398,0.0000019425,0.0000019454, -0.0000019491,0.0000019523,0.0000019516,0.0000019474,0.0000019440, -0.0000019446,0.0000019506,0.0000019600,0.0000019705,0.0000019803, -0.0000019896,0.0000019999,0.0000020111,0.0000020203,0.0000020244, -0.0000020242,0.0000020239,0.0000020241,0.0000020257,0.0000020293, -0.0000020339,0.0000020383,0.0000020416,0.0000020430,0.0000020420, -0.0000020403,0.0000020382,0.0000020362,0.0000020350,0.0000020353, -0.0000020376,0.0000020420,0.0000020476,0.0000020534,0.0000020579, -0.0000020599,0.0000020596,0.0000020568,0.0000020521,0.0000020470, -0.0000020426,0.0000020389,0.0000020359,0.0000020339,0.0000020331, -0.0000020330,0.0000020333,0.0000020340,0.0000020349,0.0000020360, -0.0000020372,0.0000020381,0.0000020384,0.0000020381,0.0000020374, -0.0000020366,0.0000020364,0.0000020367,0.0000020378,0.0000020392, -0.0000020406,0.0000020418,0.0000020427,0.0000020433,0.0000020434, -0.0000020432,0.0000020428,0.0000020422,0.0000020415,0.0000020406, -0.0000020395,0.0000020378,0.0000020353,0.0000020320,0.0000020286, -0.0000020259,0.0000020243,0.0000020238,0.0000020240,0.0000020245, -0.0000020249,0.0000020248,0.0000020241,0.0000020229,0.0000020214, -0.0000020196,0.0000020179,0.0000020163,0.0000020148,0.0000020136, -0.0000020123,0.0000020109,0.0000020091,0.0000020071,0.0000020052, -0.0000020031,0.0000020010,0.0000019987,0.0000019965,0.0000019942, -0.0000019920,0.0000019900,0.0000019884,0.0000019867,0.0000019849, -0.0000019829,0.0000019808,0.0000019787,0.0000019767,0.0000019751, -0.0000019740,0.0000019730,0.0000019719,0.0000019701,0.0000019677, -0.0000019653,0.0000019613,0.0000019568,0.0000019524,0.0000019488, -0.0000019458,0.0000019430,0.0000019397,0.0000019359,0.0000019324, -0.0000019299,0.0000019289,0.0000019288,0.0000019302,0.0000019325, -0.0000019353,0.0000019386,0.0000019420,0.0000019460,0.0000019510, -0.0000019566,0.0000019616,0.0000019655,0.0000019683,0.0000019709, -0.0000019741,0.0000019774,0.0000019786,0.0000019776,0.0000019741, -0.0000019694,0.0000019658,0.0000019651,0.0000019665,0.0000019685, -0.0000019689,0.0000019654,0.0000019664,0.0000019648,0.0000019607, -0.0000019546,0.0000019499,0.0000019485,0.0000019491,0.0000019502, -0.0000019511,0.0000019523,0.0000019542,0.0000019555,0.0000019553, -0.0000019532,0.0000019512,0.0000019507,0.0000019507,0.0000019502, -0.0000019488,0.0000019471,0.0000019448,0.0000019430,0.0000019414, -0.0000019403,0.0000019404,0.0000019419,0.0000019444,0.0000019472, -0.0000019503,0.0000019536,0.0000019568,0.0000019599,0.0000019634, -0.0000019671,0.0000019701,0.0000019725,0.0000019740,0.0000019747, -0.0000019748,0.0000019744,0.0000019734,0.0000019720,0.0000019703, -0.0000019683,0.0000019662,0.0000019641,0.0000019625,0.0000019614, -0.0000019605,0.0000019598,0.0000019596,0.0000019596,0.0000019593, -0.0000019588,0.0000019584,0.0000019580,0.0000019576,0.0000019568, -0.0000019556,0.0000019542,0.0000019521,0.0000019499,0.0000019475, -0.0000019452,0.0000019438,0.0000019434,0.0000019440,0.0000019454, -0.0000019470,0.0000019489,0.0000019504,0.0000019520,0.0000019529, -0.0000019532,0.0000019532,0.0000019528,0.0000019519,0.0000019510, -0.0000019500,0.0000019487,0.0000019472,0.0000019454,0.0000019437, -0.0000019421,0.0000019414,0.0000019412,0.0000019414,0.0000019427, -0.0000019441,0.0000019450,0.0000019458,0.0000019468,0.0000019475, -0.0000019480,0.0000019485,0.0000019488,0.0000019488,0.0000019492, -0.0000019503,0.0000019520,0.0000019540,0.0000019562,0.0000019588, -0.0000019623,0.0000019657,0.0000019688,0.0000019712,0.0000019727, -0.0000019740,0.0000019750,0.0000019756,0.0000019758,0.0000019758, -0.0000019750,0.0000019731,0.0000019702,0.0000019666,0.0000019629, -0.0000019598,0.0000019561,0.0000019521,0.0000019498,0.0000019497, -0.0000019514,0.0000019553,0.0000019606,0.0000019667,0.0000019737, -0.0000019810,0.0000019884,0.0000019967,0.0000020055,0.0000020148, -0.0000020234,0.0000020294,0.0000020338,0.0000020377,0.0000020418, -0.0000020465,0.0000020512,0.0000020542,0.0000020554,0.0000020555, -0.0000020545,0.0000020522,0.0000020494,0.0000020468,0.0000020446, -0.0000020412,0.0000020369,0.0000020326,0.0000020293,0.0000020272, -0.0000020261,0.0000020259,0.0000020270,0.0000020284,0.0000020296, -0.0000020319,0.0000020354,0.0000020394,0.0000020432,0.0000020466, -0.0000020492,0.0000020513,0.0000020527,0.0000020540,0.0000020551, -0.0000020561,0.0000020571,0.0000020576,0.0000020575,0.0000020571, -0.0000020565,0.0000020558,0.0000020547,0.0000020536,0.0000020526, -0.0000020518,0.0000020516,0.0000020522,0.0000020536,0.0000020553, -0.0000020571,0.0000020588,0.0000020607,0.0000020626,0.0000020645, -0.0000020663,0.0000020677,0.0000020689,0.0000020697,0.0000020705, -0.0000020716,0.0000020728,0.0000020736,0.0000020744,0.0000020755, -0.0000020767,0.0000020782,0.0000020801,0.0000020823,0.0000020842, -0.0000020858,0.0000020876,0.0000020893,0.0000020909,0.0000020924, -0.0000020937,0.0000020947,0.0000020954,0.0000020962,0.0000020974, -0.0000020983,0.0000020990,0.0000020993,0.0000020998,0.0000021004, -0.0000021014,0.0000021026,0.0000021039,0.0000021053,0.0000021069, -0.0000021086,0.0000021108,0.0000021132,0.0000021159,0.0000021189, -0.0000021217,0.0000021244,0.0000021269,0.0000021288,0.0000021303, -0.0000021311,0.0000021312,0.0000021305,0.0000021287,0.0000021262, -0.0000021230,0.0000021197,0.0000021165,0.0000021137,0.0000021113, -0.0000021093,0.0000021074,0.0000021057,0.0000021041,0.0000021023, -0.0000021000,0.0000020976,0.0000020959,0.0000020955,0.0000020963, -0.0000020975,0.0000020987,0.0000021015,0.0000021062,0.0000021121, -0.0000021185,0.0000021233,0.0000021258,0.0000021269,0.0000021272, -0.0000021270,0.0000021262,0.0000021251,0.0000021235,0.0000021200, -0.0000021148,0.0000021103,0.0000021072,0.0000021058,0.0000021058, -0.0000021068,0.0000021084,0.0000021103,0.0000021112,0.0000021143, -0.0000021246,0.0000021360,0.0000021427,0.0000021495,0.0000021579, -0.0000021633,0.0000021641,0.0000021620,0.0000021557,0.0000021466, -0.0000021362,0.0000021257,0.0000021168,0.0000021071,0.0000020969, -0.0000020917,0.0000020894,0.0000020865,0.0000020840,0.0000020825, -0.0000020822,0.0000020839,0.0000020870,0.0000020889,0.0000020891, -0.0000020884,0.0000020870,0.0000020854,0.0000020839,0.0000020829, -0.0000020822,0.0000020814,0.0000020794,0.0000020757,0.0000020696, -0.0000020616,0.0000020535,0.0000020468,0.0000020410,0.0000020361, -0.0000020338,0.0000020353,0.0000020385,0.0000020416,0.0000020438, -0.0000020450,0.0000020459,0.0000020470,0.0000020475,0.0000020463, -0.0000020430,0.0000020390,0.0000020348,0.0000020305,0.0000020268, -0.0000020250,0.0000020248,0.0000020250,0.0000020251,0.0000020281, -0.0000020367,0.0000020468,0.0000020534,0.0000020547,0.0000020537, -0.0000020498,0.0000020452,0.0000020330,0.0000020133,0.0000020005, -0.0000019981,0.0000020073,0.0000020276,0.0000020377,0.0000020364, -0.0000020342,0.0000020369,0.0000020544,0.0000020732,0.0000020765, -0.0000020733,0.0000020739,0.0000020857,0.0000021045,0.0000021141, -0.0000021199,0.0000021362,0.0000021516,0.0000021586,0.0000021619, -0.0000021668,0.0000021704,0.0000021714,0.0000021740,0.0000021784, -0.0000021850,0.0000021887,0.0000021870,0.0000021850,0.0000021834, -0.0000021806,0.0000021809,0.0000021885,0.0000021979,0.0000022013, -0.0000022003,0.0000021985,0.0000021976,0.0000021966,0.0000021950, -0.0000021928,0.0000021893,0.0000021855,0.0000021838,0.0000021832, -0.0000021833,0.0000021836,0.0000021837,0.0000021829,0.0000021816, -0.0000021790,0.0000021743,0.0000021696,0.0000021654,0.0000021622, -0.0000021594,0.0000021575,0.0000021573,0.0000021588,0.0000021612, -0.0000021645,0.0000021684,0.0000021719,0.0000021742,0.0000021754, -0.0000021760,0.0000021748,0.0000021714,0.0000021681,0.0000021657, -0.0000021650,0.0000021655,0.0000021652,0.0000021636,0.0000021614, -0.0000021579,0.0000021532,0.0000021475,0.0000021421,0.0000021367, -0.0000021307,0.0000021241,0.0000021181,0.0000021140,0.0000021105, -0.0000021073,0.0000021047,0.0000021027,0.0000021022,0.0000021024, -0.0000021029,0.0000021037,0.0000021055,0.0000021078,0.0000021101, -0.0000021115,0.0000021121,0.0000021124,0.0000021124,0.0000021122, -0.0000021113,0.0000021092,0.0000021062,0.0000021026,0.0000020984, -0.0000020949,0.0000020917,0.0000020888,0.0000020868,0.0000020851, -0.0000020838,0.0000020836,0.0000020834,0.0000020834,0.0000020846, -0.0000020861,0.0000020872,0.0000020875,0.0000020874,0.0000020872, -0.0000020865,0.0000020851,0.0000020831,0.0000020803,0.0000020771, -0.0000020740,0.0000020709,0.0000020671,0.0000020636,0.0000020603, -0.0000020573,0.0000020544,0.0000020516,0.0000020491,0.0000020482, -0.0000020477,0.0000020474,0.0000020473,0.0000020475,0.0000020483, -0.0000020485,0.0000020487,0.0000020496,0.0000020501,0.0000020500, -0.0000020494,0.0000020489,0.0000020489,0.0000020491,0.0000020492, -0.0000020504,0.0000020521,0.0000020532,0.0000020533,0.0000020529, -0.0000020514,0.0000020495,0.0000020474,0.0000020460,0.0000020451, -0.0000020450,0.0000020468,0.0000020496,0.0000020523,0.0000020553, -0.0000020585,0.0000020614,0.0000020645,0.0000020670,0.0000020690, -0.0000020696,0.0000020698,0.0000020697,0.0000020693,0.0000020689, -0.0000020684,0.0000020675,0.0000020659,0.0000020660,0.0000020677, -0.0000020699,0.0000020724,0.0000020748,0.0000020766,0.0000020780, -0.0000020793,0.0000020802,0.0000020804,0.0000020802,0.0000020798, -0.0000020796,0.0000020796,0.0000020794,0.0000020794,0.0000020797, -0.0000020816,0.0000020847,0.0000020879,0.0000020912,0.0000020953, -0.0000021000,0.0000021054,0.0000021107,0.0000021154,0.0000021191, -0.0000021220,0.0000021241,0.0000021257,0.0000021264,0.0000021264, -0.0000021260,0.0000021246,0.0000021234,0.0000021220,0.0000021200, -0.0000021182,0.0000021170,0.0000021165,0.0000021167,0.0000021175, -0.0000021188,0.0000021209,0.0000021235,0.0000021263,0.0000021293, -0.0000021326,0.0000021362,0.0000021396,0.0000021426,0.0000021448, -0.0000021465,0.0000021479,0.0000021489,0.0000021493,0.0000021489, -0.0000021479,0.0000021465,0.0000021447,0.0000021424,0.0000021395, -0.0000021367,0.0000021340,0.0000021315,0.0000021288,0.0000021264, -0.0000021248,0.0000021241,0.0000021239,0.0000021238,0.0000021241, -0.0000021247,0.0000021257,0.0000021272,0.0000021292,0.0000021315, -0.0000021346,0.0000021381,0.0000021413,0.0000021445,0.0000021477, -0.0000021512,0.0000021549,0.0000021585,0.0000021618,0.0000021654, -0.0000021688,0.0000021724,0.0000021763,0.0000021802,0.0000021842, -0.0000021882,0.0000021915,0.0000021942,0.0000021966,0.0000021983, -0.0000021987,0.0000021993,0.0000021989,0.0000021978,0.0000021966, -0.0000021951,0.0000021937,0.0000021926,0.0000021925,0.0000021937, -0.0000021956,0.0000021978,0.0000021998,0.0000022015,0.0000022025, -0.0000022030,0.0000022031,0.0000022028,0.0000022020,0.0000022009, -0.0000021997,0.0000021984,0.0000021967,0.0000021948,0.0000021933, -0.0000021925,0.0000021918,0.0000021909,0.0000021895,0.0000021870, -0.0000021838,0.0000021808,0.0000021780,0.0000021758,0.0000021746, -0.0000021737,0.0000021735,0.0000021734,0.0000021734,0.0000021728, -0.0000021718,0.0000021702,0.0000021685,0.0000021672,0.0000021669, -0.0000021671,0.0000021684,0.0000021704,0.0000021732,0.0000021765, -0.0000021799,0.0000021829,0.0000021857,0.0000021882,0.0000021902, -0.0000021913,0.0000021913,0.0000021910,0.0000021897,0.0000021875, -0.0000021851,0.0000021823,0.0000021792,0.0000021760,0.0000021729, -0.0000021695,0.0000021655,0.0000021622,0.0000021594,0.0000021571, -0.0000021550,0.0000021533,0.0000021526,0.0000021527,0.0000021528, -0.0000021530,0.0000021532,0.0000021519,0.0000021515,0.0000021503, -0.0000021487,0.0000021476,0.0000021467,0.0000021457,0.0000021445, -0.0000021443,0.0000021446,0.0000021441,0.0000021436,0.0000021431, -0.0000021420,0.0000021401,0.0000021380,0.0000021362,0.0000021345, -0.0000021325,0.0000021299,0.0000021266,0.0000021232,0.0000021201, -0.0000021173,0.0000021146,0.0000021118,0.0000021087,0.0000021050, -0.0000021007,0.0000020959,0.0000020910,0.0000020866,0.0000020827, -0.0000020791,0.0000020754,0.0000020713,0.0000020663,0.0000020609, -0.0000020558,0.0000020512,0.0000020472,0.0000020433,0.0000020397, -0.0000020368,0.0000020350,0.0000020334,0.0000020319,0.0000020302, -0.0000020291,0.0000020284,0.0000020290,0.0000020311,0.0000020339, -0.0000020366,0.0000020383,0.0000020388,0.0000020381,0.0000020357, -0.0000020319,0.0000020278,0.0000020238,0.0000020207,0.0000020191, -0.0000020191,0.0000020198,0.0000020208,0.0000020215,0.0000020219, -0.0000020215,0.0000020207,0.0000020194,0.0000020175,0.0000020152, -0.0000020127,0.0000020101,0.0000020077,0.0000020069,0.0000020070, -0.0000020081,0.0000020101,0.0000020128,0.0000020153,0.0000020172, -0.0000020182,0.0000020185,0.0000020180,0.0000020170,0.0000020162, -0.0000020148,0.0000020142,0.0000020135,0.0000020129,0.0000020133, -0.0000020143,0.0000020160,0.0000020176,0.0000020188,0.0000020195, -0.0000020200,0.0000020198,0.0000020188,0.0000020175,0.0000020162, -0.0000020149,0.0000020128,0.0000020081,0.0000020004,0.0000019903, -0.0000019803,0.0000019733,0.0000019700,0.0000019679,0.0000019650, -0.0000019606,0.0000019568,0.0000019551,0.0000019538,0.0000019508, -0.0000019463,0.0000019412,0.0000019357,0.0000019312,0.0000019285, -0.0000019287,0.0000019317,0.0000019363,0.0000019407,0.0000019446, -0.0000019483,0.0000019511,0.0000019527,0.0000019545,0.0000019569, -0.0000019589,0.0000019600,0.0000019603,0.0000019601,0.0000019597, -0.0000019596,0.0000019607,0.0000019637,0.0000019672,0.0000019686, -0.0000019681,0.0000019673,0.0000019681,0.0000019713,0.0000019746, -0.0000019755,0.0000019749,0.0000019736,0.0000019726,0.0000019729, -0.0000019744,0.0000019766,0.0000019788,0.0000019805,0.0000019817, -0.0000019828,0.0000019841,0.0000019856,0.0000019871,0.0000019890, -0.0000019911,0.0000019932,0.0000019951,0.0000019967,0.0000019982, -0.0000019995,0.0000020007,0.0000020017,0.0000020029,0.0000020043, -0.0000020061,0.0000020081,0.0000020096,0.0000020110,0.0000020124, -0.0000020140,0.0000020154,0.0000020166,0.0000020174,0.0000020177, -0.0000020174,0.0000020168,0.0000020159,0.0000020150,0.0000020141, -0.0000020133,0.0000020127,0.0000020126,0.0000020128,0.0000020139, -0.0000020157,0.0000020182,0.0000020208,0.0000020232,0.0000020254, -0.0000020273,0.0000020292,0.0000020310,0.0000020331,0.0000020355, -0.0000020382,0.0000020407,0.0000020427,0.0000020441,0.0000020451, -0.0000020457,0.0000020463,0.0000020474,0.0000020493,0.0000020521, -0.0000020555,0.0000020588,0.0000020620,0.0000020651,0.0000020684, -0.0000020715,0.0000020743,0.0000020768,0.0000020789,0.0000020806, -0.0000020815,0.0000020815,0.0000020810,0.0000020800,0.0000020789, -0.0000020779,0.0000020771,0.0000020769,0.0000020771,0.0000020776, -0.0000020774,0.0000020769,0.0000020796,0.0000020908,0.0000021029, -0.0000021074,0.0000021078,0.0000021088,0.0000021106,0.0000021117, -0.0000021103,0.0000021079,0.0000021075,0.0000021061,0.0000021006, -0.0000020961,0.0000020920,0.0000020860,0.0000020826,0.0000020794, -0.0000020769,0.0000020773,0.0000020780,0.0000020790,0.0000020806, -0.0000020808,0.0000020798,0.0000020789,0.0000020797,0.0000020840, -0.0000020910,0.0000020974,0.0000021013,0.0000021028,0.0000021026, -0.0000021010,0.0000020984,0.0000020948,0.0000020912,0.0000020876, -0.0000020841,0.0000020805,0.0000020764,0.0000020724,0.0000020687, -0.0000020651,0.0000020619,0.0000020589,0.0000020560,0.0000020536, -0.0000020518,0.0000020502,0.0000020485,0.0000020466,0.0000020442, -0.0000020413,0.0000020382,0.0000020357,0.0000020345,0.0000020341, -0.0000020343,0.0000020350,0.0000020358,0.0000020365,0.0000020370, -0.0000020374,0.0000020376,0.0000020373,0.0000020363,0.0000020351, -0.0000020339,0.0000020330,0.0000020324,0.0000020324,0.0000020328, -0.0000020336,0.0000020349,0.0000020364,0.0000020380,0.0000020391, -0.0000020399,0.0000020404,0.0000020412,0.0000020420,0.0000020428, -0.0000020432,0.0000020433,0.0000020429,0.0000020422,0.0000020411, -0.0000020394,0.0000020371,0.0000020342,0.0000020310,0.0000020280, -0.0000020253,0.0000020233,0.0000020213,0.0000020199,0.0000020180, -0.0000020170,0.0000020162,0.0000020161,0.0000020168,0.0000020186, -0.0000020216,0.0000020257,0.0000020309,0.0000020366,0.0000020423, -0.0000020474,0.0000020517,0.0000020552,0.0000020580,0.0000020599, -0.0000020610,0.0000020619,0.0000020625,0.0000020631,0.0000020640, -0.0000020647,0.0000020650,0.0000020642,0.0000020627,0.0000020605, -0.0000020576,0.0000020543,0.0000020508,0.0000020471,0.0000020428, -0.0000020382,0.0000020337,0.0000020295,0.0000020265,0.0000020253, -0.0000020257,0.0000020275,0.0000020308,0.0000020345,0.0000020380, -0.0000020404,0.0000020417,0.0000020422,0.0000020420,0.0000020407, -0.0000020378,0.0000020333,0.0000020272,0.0000020197,0.0000020113, -0.0000020030,0.0000019953,0.0000019882,0.0000019814,0.0000019746, -0.0000019683,0.0000019630,0.0000019588,0.0000019559,0.0000019544, -0.0000019538,0.0000019537,0.0000019533,0.0000019525,0.0000019514, -0.0000019504,0.0000019500,0.0000019505,0.0000019512,0.0000019516, -0.0000019520,0.0000019528,0.0000019538,0.0000019540,0.0000019531, -0.0000019518,0.0000019512,0.0000019514,0.0000019526,0.0000019537, -0.0000019547,0.0000019553,0.0000019555,0.0000019559,0.0000019573, -0.0000019611,0.0000019668,0.0000019737,0.0000019804,0.0000019856, -0.0000019890,0.0000019922,0.0000019960,0.0000019998,0.0000020021, -0.0000020023,0.0000020006,0.0000019981,0.0000019959,0.0000019947, -0.0000019949,0.0000019955,0.0000019952,0.0000019924,0.0000019884, -0.0000019814,0.0000019740,0.0000019669,0.0000019597,0.0000019525, -0.0000019467,0.0000019429,0.0000019436,0.0000019485,0.0000019563, -0.0000019646,0.0000019721,0.0000019781,0.0000019823,0.0000019849, -0.0000019865,0.0000019883,0.0000019920,0.0000019989,0.0000020085, -0.0000020199,0.0000020314,0.0000020409,0.0000020473,0.0000020503, -0.0000020505,0.0000020497,0.0000020478,0.0000020449,0.0000020413, -0.0000020374,0.0000020336,0.0000020301,0.0000020269,0.0000020241, -0.0000020220,0.0000020206,0.0000020198,0.0000020196,0.0000020201, -0.0000020212,0.0000020230,0.0000020249,0.0000020269,0.0000020289, -0.0000020311,0.0000020334,0.0000020356,0.0000020372,0.0000020379, -0.0000020375,0.0000020363,0.0000020349,0.0000020329,0.0000020303, -0.0000020266,0.0000020225,0.0000020180,0.0000020120,0.0000020040, -0.0000019949,0.0000019863,0.0000019797,0.0000019759,0.0000019748, -0.0000019759,0.0000019790,0.0000019835,0.0000019886,0.0000019933, -0.0000019967,0.0000019982,0.0000019979,0.0000019960,0.0000019935, -0.0000019909,0.0000019879,0.0000019850,0.0000019825,0.0000019811, -0.0000019800,0.0000019783,0.0000019764,0.0000019738,0.0000019701, -0.0000019661,0.0000019627,0.0000019596,0.0000019570,0.0000019566, -0.0000019579,0.0000019604,0.0000019627,0.0000019642,0.0000019646, -0.0000019635,0.0000019612,0.0000019579,0.0000019537,0.0000019495, -0.0000019452,0.0000019411,0.0000019380,0.0000019359,0.0000019352, -0.0000019353,0.0000019356,0.0000019355,0.0000019352,0.0000019345, -0.0000019335,0.0000019326,0.0000019317,0.0000019301,0.0000019279, -0.0000019250,0.0000019218,0.0000019189,0.0000019166,0.0000019147, -0.0000019132,0.0000019114,0.0000019090,0.0000019061,0.0000019030, -0.0000018997,0.0000018962,0.0000018926,0.0000018892,0.0000018863, -0.0000018831,0.0000018796,0.0000018761,0.0000018732,0.0000018706, -0.0000018681,0.0000018657,0.0000018636,0.0000018620,0.0000018609, -0.0000018604,0.0000018603,0.0000018608,0.0000018616,0.0000018624, -0.0000018626,0.0000018627,0.0000018629,0.0000018631,0.0000018631, -0.0000018630,0.0000018629,0.0000018627,0.0000018624,0.0000018619, -0.0000018608,0.0000018597,0.0000018587,0.0000018579,0.0000018575, -0.0000018572,0.0000018568,0.0000018564,0.0000018564,0.0000018564, -0.0000018564,0.0000018560,0.0000018551,0.0000018539,0.0000018524, -0.0000018515,0.0000018516,0.0000018528,0.0000018549,0.0000018572, -0.0000018592,0.0000018607,0.0000018617,0.0000018626,0.0000018634, -0.0000018643,0.0000018650,0.0000018655,0.0000018659,0.0000018663, -0.0000018667,0.0000018671,0.0000018679,0.0000018693,0.0000018711, -0.0000018735,0.0000018763,0.0000018792,0.0000018822,0.0000018848, -0.0000018869,0.0000018886,0.0000018903,0.0000018924,0.0000018952, -0.0000018986,0.0000019024,0.0000019064,0.0000019102,0.0000019135, -0.0000019163,0.0000019184,0.0000019201,0.0000019212,0.0000019218, -0.0000019222,0.0000019224,0.0000019226,0.0000019229,0.0000019232, -0.0000019238,0.0000019246,0.0000019254,0.0000019258,0.0000019260, -0.0000019264,0.0000019271,0.0000019282,0.0000019296,0.0000019312, -0.0000019331,0.0000019351,0.0000019370,0.0000019379,0.0000019378, -0.0000019367,0.0000019358,0.0000019358,0.0000019369,0.0000019389, -0.0000019413,0.0000019437,0.0000019450,0.0000019447,0.0000019434, -0.0000019418,0.0000019410,0.0000019417,0.0000019434,0.0000019452, -0.0000019453,0.0000019433,0.0000019365,0.0000019277,0.0000019232, -0.0000019255,0.0000019307,0.0000019353,0.0000019386,0.0000019416, -0.0000019446,0.0000019480,0.0000019502,0.0000019491,0.0000019445, -0.0000019412,0.0000019426,0.0000019484,0.0000019571,0.0000019666, -0.0000019759,0.0000019850,0.0000019953,0.0000020067,0.0000020168, -0.0000020229,0.0000020232,0.0000020231,0.0000020231,0.0000020242, -0.0000020268,0.0000020305,0.0000020343,0.0000020372,0.0000020387, -0.0000020386,0.0000020373,0.0000020358,0.0000020344,0.0000020338, -0.0000020344,0.0000020369,0.0000020411,0.0000020461,0.0000020511, -0.0000020560,0.0000020592,0.0000020609,0.0000020598,0.0000020567, -0.0000020520,0.0000020470,0.0000020426,0.0000020391,0.0000020366, -0.0000020348,0.0000020338,0.0000020337,0.0000020341,0.0000020351, -0.0000020364,0.0000020377,0.0000020387,0.0000020393,0.0000020393, -0.0000020388,0.0000020380,0.0000020374,0.0000020373,0.0000020379, -0.0000020388,0.0000020396,0.0000020402,0.0000020405,0.0000020405, -0.0000020404,0.0000020402,0.0000020402,0.0000020402,0.0000020398, -0.0000020390,0.0000020374,0.0000020347,0.0000020312,0.0000020279, -0.0000020258,0.0000020252,0.0000020255,0.0000020265,0.0000020277, -0.0000020283,0.0000020280,0.0000020268,0.0000020252,0.0000020235, -0.0000020218,0.0000020203,0.0000020190,0.0000020178,0.0000020168, -0.0000020155,0.0000020138,0.0000020118,0.0000020094,0.0000020069, -0.0000020043,0.0000020016,0.0000019991,0.0000019966,0.0000019940, -0.0000019914,0.0000019891,0.0000019867,0.0000019843,0.0000019820, -0.0000019797,0.0000019774,0.0000019749,0.0000019727,0.0000019706, -0.0000019692,0.0000019681,0.0000019670,0.0000019662,0.0000019650, -0.0000019634,0.0000019611,0.0000019579,0.0000019541,0.0000019504, -0.0000019464,0.0000019431,0.0000019400,0.0000019367,0.0000019330, -0.0000019295,0.0000019271,0.0000019261,0.0000019254,0.0000019262, -0.0000019280,0.0000019306,0.0000019333,0.0000019361,0.0000019396, -0.0000019444,0.0000019500,0.0000019552,0.0000019596,0.0000019626, -0.0000019656,0.0000019691,0.0000019725,0.0000019743,0.0000019737, -0.0000019707,0.0000019666,0.0000019631,0.0000019621,0.0000019631, -0.0000019599,0.0000019606,0.0000019625,0.0000019637,0.0000019635, -0.0000019611,0.0000019564,0.0000019522,0.0000019507,0.0000019513, -0.0000019527,0.0000019540,0.0000019553,0.0000019569,0.0000019580, -0.0000019576,0.0000019553,0.0000019528,0.0000019512,0.0000019504, -0.0000019493,0.0000019472,0.0000019445,0.0000019413,0.0000019380, -0.0000019349,0.0000019335,0.0000019341,0.0000019365,0.0000019403, -0.0000019446,0.0000019485,0.0000019520,0.0000019554,0.0000019590, -0.0000019625,0.0000019652,0.0000019673,0.0000019689,0.0000019698, -0.0000019700,0.0000019695,0.0000019687,0.0000019674,0.0000019657, -0.0000019640,0.0000019626,0.0000019616,0.0000019610,0.0000019607, -0.0000019608,0.0000019609,0.0000019610,0.0000019610,0.0000019609, -0.0000019608,0.0000019605,0.0000019601,0.0000019592,0.0000019576, -0.0000019555,0.0000019530,0.0000019502,0.0000019469,0.0000019439, -0.0000019419,0.0000019408,0.0000019403,0.0000019405,0.0000019417, -0.0000019432,0.0000019449,0.0000019461,0.0000019470,0.0000019471, -0.0000019469,0.0000019468,0.0000019464,0.0000019456,0.0000019445, -0.0000019435,0.0000019421,0.0000019403,0.0000019391,0.0000019384, -0.0000019381,0.0000019378,0.0000019385,0.0000019400,0.0000019414, -0.0000019425,0.0000019433,0.0000019440,0.0000019445,0.0000019453, -0.0000019460,0.0000019461,0.0000019459,0.0000019462,0.0000019473, -0.0000019484,0.0000019493,0.0000019504,0.0000019523,0.0000019554, -0.0000019587,0.0000019621,0.0000019648,0.0000019669,0.0000019682, -0.0000019686,0.0000019684,0.0000019677,0.0000019666,0.0000019651, -0.0000019629,0.0000019602,0.0000019570,0.0000019544,0.0000019523, -0.0000019496,0.0000019475,0.0000019471,0.0000019477,0.0000019499, -0.0000019534,0.0000019572,0.0000019616,0.0000019672,0.0000019742, -0.0000019826,0.0000019916,0.0000020005,0.0000020099,0.0000020187, -0.0000020256,0.0000020305,0.0000020335,0.0000020358,0.0000020392, -0.0000020433,0.0000020461,0.0000020475,0.0000020478,0.0000020473, -0.0000020457,0.0000020435,0.0000020418,0.0000020400,0.0000020373, -0.0000020338,0.0000020303,0.0000020271,0.0000020246,0.0000020234, -0.0000020236,0.0000020250,0.0000020270,0.0000020291,0.0000020318, -0.0000020349,0.0000020383,0.0000020421,0.0000020458,0.0000020486, -0.0000020500,0.0000020507,0.0000020514,0.0000020521,0.0000020528, -0.0000020538,0.0000020546,0.0000020548,0.0000020547,0.0000020539, -0.0000020528,0.0000020515,0.0000020502,0.0000020489,0.0000020477, -0.0000020468,0.0000020469,0.0000020480,0.0000020495,0.0000020510, -0.0000020525,0.0000020541,0.0000020557,0.0000020574,0.0000020592, -0.0000020606,0.0000020619,0.0000020628,0.0000020636,0.0000020648, -0.0000020659,0.0000020667,0.0000020677,0.0000020688,0.0000020701, -0.0000020715,0.0000020734,0.0000020758,0.0000020780,0.0000020800, -0.0000020819,0.0000020836,0.0000020849,0.0000020860,0.0000020868, -0.0000020873,0.0000020878,0.0000020887,0.0000020900,0.0000020916, -0.0000020931,0.0000020945,0.0000020961,0.0000020981,0.0000021003, -0.0000021023,0.0000021041,0.0000021057,0.0000021074,0.0000021089, -0.0000021110,0.0000021132,0.0000021159,0.0000021187,0.0000021216, -0.0000021241,0.0000021266,0.0000021287,0.0000021303,0.0000021317, -0.0000021326,0.0000021328,0.0000021323,0.0000021308,0.0000021279, -0.0000021243,0.0000021206,0.0000021167,0.0000021132,0.0000021102, -0.0000021076,0.0000021055,0.0000021039,0.0000021022,0.0000020997, -0.0000020966,0.0000020938,0.0000020928,0.0000020931,0.0000020941, -0.0000020961,0.0000020997,0.0000021044,0.0000021105,0.0000021170, -0.0000021212,0.0000021234,0.0000021243,0.0000021245,0.0000021240, -0.0000021229,0.0000021216,0.0000021193,0.0000021147,0.0000021093, -0.0000021055,0.0000021037,0.0000021035,0.0000021047,0.0000021064, -0.0000021085,0.0000021102,0.0000021111,0.0000021162,0.0000021276, -0.0000021379,0.0000021441,0.0000021502,0.0000021562,0.0000021590, -0.0000021586,0.0000021547,0.0000021479,0.0000021386,0.0000021281, -0.0000021189,0.0000021103,0.0000021000,0.0000020929,0.0000020897, -0.0000020868,0.0000020841,0.0000020824,0.0000020818,0.0000020823, -0.0000020854,0.0000020893,0.0000020912,0.0000020913,0.0000020898, -0.0000020870,0.0000020843,0.0000020824,0.0000020811,0.0000020801, -0.0000020789,0.0000020765,0.0000020720,0.0000020651,0.0000020571, -0.0000020497,0.0000020434,0.0000020377,0.0000020337,0.0000020333, -0.0000020353,0.0000020381,0.0000020408,0.0000020425,0.0000020433, -0.0000020445,0.0000020461,0.0000020468,0.0000020457,0.0000020424, -0.0000020384,0.0000020340,0.0000020289,0.0000020247,0.0000020232, -0.0000020245,0.0000020262,0.0000020263,0.0000020282,0.0000020354, -0.0000020453,0.0000020522,0.0000020535,0.0000020519,0.0000020489, -0.0000020418,0.0000020248,0.0000020061,0.0000019975,0.0000020003, -0.0000020184,0.0000020359,0.0000020383,0.0000020358,0.0000020354, -0.0000020486,0.0000020695,0.0000020780,0.0000020746,0.0000020730, -0.0000020803,0.0000020979,0.0000021094,0.0000021146,0.0000021276, -0.0000021458,0.0000021562,0.0000021607,0.0000021648,0.0000021697, -0.0000021712,0.0000021719,0.0000021747,0.0000021793,0.0000021845, -0.0000021856,0.0000021838,0.0000021824,0.0000021808,0.0000021789, -0.0000021807,0.0000021888,0.0000021977,0.0000022000,0.0000021989, -0.0000021971,0.0000021959,0.0000021938,0.0000021917,0.0000021891, -0.0000021851,0.0000021817,0.0000021790,0.0000021770,0.0000021755, -0.0000021739,0.0000021719,0.0000021695,0.0000021666,0.0000021626, -0.0000021594,0.0000021571,0.0000021559,0.0000021557,0.0000021558, -0.0000021562,0.0000021577,0.0000021605,0.0000021637,0.0000021674, -0.0000021707,0.0000021734,0.0000021746,0.0000021742,0.0000021730, -0.0000021706,0.0000021676,0.0000021661,0.0000021661,0.0000021671, -0.0000021681,0.0000021679,0.0000021657,0.0000021624,0.0000021583, -0.0000021530,0.0000021468,0.0000021403,0.0000021331,0.0000021260, -0.0000021191,0.0000021137,0.0000021089,0.0000021044,0.0000021004, -0.0000020971,0.0000020947,0.0000020936,0.0000020934,0.0000020934, -0.0000020943,0.0000020970,0.0000020993,0.0000021007,0.0000021014, -0.0000021016,0.0000021015,0.0000021009,0.0000020995,0.0000020969, -0.0000020943,0.0000020911,0.0000020875,0.0000020840,0.0000020811, -0.0000020794,0.0000020785,0.0000020776,0.0000020768,0.0000020766, -0.0000020764,0.0000020767,0.0000020785,0.0000020810,0.0000020835, -0.0000020854,0.0000020872,0.0000020879,0.0000020880,0.0000020877, -0.0000020869,0.0000020855,0.0000020839,0.0000020823,0.0000020809, -0.0000020789,0.0000020768,0.0000020743,0.0000020714,0.0000020682, -0.0000020646,0.0000020611,0.0000020590,0.0000020574,0.0000020563, -0.0000020555,0.0000020550,0.0000020546,0.0000020539,0.0000020530, -0.0000020523,0.0000020520,0.0000020516,0.0000020509,0.0000020501, -0.0000020501,0.0000020500,0.0000020507,0.0000020522,0.0000020535, -0.0000020546,0.0000020544,0.0000020534,0.0000020516,0.0000020492, -0.0000020466,0.0000020446,0.0000020431,0.0000020432,0.0000020453, -0.0000020482,0.0000020514,0.0000020551,0.0000020590,0.0000020624, -0.0000020649,0.0000020667,0.0000020679,0.0000020683,0.0000020682, -0.0000020673,0.0000020668,0.0000020663,0.0000020661,0.0000020654, -0.0000020647,0.0000020659,0.0000020681,0.0000020701,0.0000020721, -0.0000020742,0.0000020760,0.0000020773,0.0000020783,0.0000020788, -0.0000020786,0.0000020773,0.0000020755,0.0000020735,0.0000020711, -0.0000020686,0.0000020662,0.0000020648,0.0000020654,0.0000020671, -0.0000020695,0.0000020725,0.0000020763,0.0000020810,0.0000020865, -0.0000020920,0.0000020969,0.0000021011,0.0000021048,0.0000021079, -0.0000021103,0.0000021122,0.0000021135,0.0000021146,0.0000021156, -0.0000021166,0.0000021174,0.0000021176,0.0000021171,0.0000021165, -0.0000021164,0.0000021164,0.0000021163,0.0000021165,0.0000021175, -0.0000021186,0.0000021199,0.0000021213,0.0000021233,0.0000021265, -0.0000021305,0.0000021347,0.0000021385,0.0000021419,0.0000021448, -0.0000021473,0.0000021488,0.0000021484,0.0000021479,0.0000021468, -0.0000021449,0.0000021422,0.0000021392,0.0000021361,0.0000021327, -0.0000021292,0.0000021261,0.0000021234,0.0000021204,0.0000021182, -0.0000021171,0.0000021166,0.0000021166,0.0000021173,0.0000021185, -0.0000021198,0.0000021210,0.0000021226,0.0000021249,0.0000021278, -0.0000021310,0.0000021342,0.0000021375,0.0000021410,0.0000021447, -0.0000021482,0.0000021519,0.0000021555,0.0000021589,0.0000021622, -0.0000021656,0.0000021693,0.0000021737,0.0000021785,0.0000021830, -0.0000021871,0.0000021909,0.0000021939,0.0000021962,0.0000021981, -0.0000021995,0.0000022003,0.0000022016,0.0000022021,0.0000022021, -0.0000022019,0.0000022015,0.0000022017,0.0000022022,0.0000022026, -0.0000022031,0.0000022034,0.0000022038,0.0000022042,0.0000022043, -0.0000022039,0.0000022030,0.0000022016,0.0000022001,0.0000021989, -0.0000021974,0.0000021958,0.0000021944,0.0000021937,0.0000021933, -0.0000021932,0.0000021927,0.0000021915,0.0000021895,0.0000021865, -0.0000021832,0.0000021801,0.0000021775,0.0000021756,0.0000021743, -0.0000021737,0.0000021732,0.0000021727,0.0000021719,0.0000021707, -0.0000021691,0.0000021676,0.0000021667,0.0000021664,0.0000021672, -0.0000021691,0.0000021717,0.0000021749,0.0000021780,0.0000021809, -0.0000021836,0.0000021862,0.0000021885,0.0000021903,0.0000021915, -0.0000021918,0.0000021909,0.0000021891,0.0000021867,0.0000021838, -0.0000021803,0.0000021764,0.0000021727,0.0000021686,0.0000021641, -0.0000021600,0.0000021565,0.0000021537,0.0000021513,0.0000021499, -0.0000021491,0.0000021490,0.0000021493,0.0000021496,0.0000021500, -0.0000021501,0.0000021496,0.0000021488,0.0000021480,0.0000021473, -0.0000021468,0.0000021465,0.0000021471,0.0000021480,0.0000021483, -0.0000021502,0.0000021526,0.0000021529,0.0000021522,0.0000021517, -0.0000021511,0.0000021501,0.0000021486,0.0000021458,0.0000021426, -0.0000021387,0.0000021341,0.0000021294,0.0000021250,0.0000021208, -0.0000021163,0.0000021115,0.0000021066,0.0000021015,0.0000020967, -0.0000020928,0.0000020902,0.0000020881,0.0000020865,0.0000020847, -0.0000020822,0.0000020785,0.0000020744,0.0000020701,0.0000020652, -0.0000020597,0.0000020537,0.0000020479,0.0000020427,0.0000020382, -0.0000020344,0.0000020312,0.0000020285,0.0000020265,0.0000020264, -0.0000020281,0.0000020304,0.0000020332,0.0000020357,0.0000020374, -0.0000020372,0.0000020357,0.0000020323,0.0000020280,0.0000020234, -0.0000020196,0.0000020180,0.0000020181,0.0000020183,0.0000020195, -0.0000020209,0.0000020216,0.0000020216,0.0000020210,0.0000020198, -0.0000020181,0.0000020158,0.0000020131,0.0000020101,0.0000020073, -0.0000020056,0.0000020048,0.0000020051,0.0000020066,0.0000020096, -0.0000020132,0.0000020165,0.0000020192,0.0000020209,0.0000020216, -0.0000020213,0.0000020200,0.0000020180,0.0000020160,0.0000020141, -0.0000020118,0.0000020109,0.0000020093,0.0000020087,0.0000020092, -0.0000020100,0.0000020112,0.0000020128,0.0000020143,0.0000020154, -0.0000020159,0.0000020158,0.0000020157,0.0000020152,0.0000020142, -0.0000020107,0.0000020041,0.0000019946,0.0000019841,0.0000019755, -0.0000019697,0.0000019660,0.0000019632,0.0000019603,0.0000019585, -0.0000019583,0.0000019575,0.0000019542,0.0000019491,0.0000019428, -0.0000019368,0.0000019322,0.0000019303,0.0000019317,0.0000019355, -0.0000019401,0.0000019442,0.0000019480,0.0000019512,0.0000019537, -0.0000019560,0.0000019579,0.0000019590,0.0000019591,0.0000019581, -0.0000019564,0.0000019550,0.0000019546,0.0000019565,0.0000019605, -0.0000019636,0.0000019639,0.0000019638,0.0000019649,0.0000019681, -0.0000019723,0.0000019750,0.0000019751,0.0000019741,0.0000019733, -0.0000019740,0.0000019765,0.0000019796,0.0000019823,0.0000019841, -0.0000019853,0.0000019863,0.0000019872,0.0000019883,0.0000019896, -0.0000019911,0.0000019928,0.0000019950,0.0000019973,0.0000019993, -0.0000020010,0.0000020024,0.0000020037,0.0000020045,0.0000020049, -0.0000020054,0.0000020063,0.0000020076,0.0000020092,0.0000020108, -0.0000020125,0.0000020141,0.0000020158,0.0000020175,0.0000020193, -0.0000020209,0.0000020220,0.0000020225,0.0000020225,0.0000020219, -0.0000020210,0.0000020198,0.0000020183,0.0000020169,0.0000020156, -0.0000020147,0.0000020144,0.0000020152,0.0000020166,0.0000020185, -0.0000020205,0.0000020225,0.0000020245,0.0000020265,0.0000020284, -0.0000020303,0.0000020324,0.0000020345,0.0000020368,0.0000020390, -0.0000020411,0.0000020429,0.0000020442,0.0000020452,0.0000020465, -0.0000020484,0.0000020509,0.0000020541,0.0000020575,0.0000020609, -0.0000020644,0.0000020678,0.0000020711,0.0000020741,0.0000020767, -0.0000020786,0.0000020796,0.0000020800,0.0000020798,0.0000020791, -0.0000020781,0.0000020769,0.0000020758,0.0000020754,0.0000020757, -0.0000020767,0.0000020772,0.0000020764,0.0000020759,0.0000020809, -0.0000020939,0.0000021045,0.0000021077,0.0000021084,0.0000021099, -0.0000021120,0.0000021124,0.0000021106,0.0000021090,0.0000021089, -0.0000021062,0.0000021004,0.0000020962,0.0000020911,0.0000020850, -0.0000020821,0.0000020789,0.0000020764,0.0000020770,0.0000020780, -0.0000020792,0.0000020810,0.0000020821,0.0000020814,0.0000020802, -0.0000020803,0.0000020821,0.0000020868,0.0000020921,0.0000020959, -0.0000020976,0.0000020975,0.0000020959,0.0000020930,0.0000020895, -0.0000020860,0.0000020825,0.0000020789,0.0000020751,0.0000020714, -0.0000020678,0.0000020645,0.0000020616,0.0000020593,0.0000020573, -0.0000020553,0.0000020540,0.0000020525,0.0000020507,0.0000020484, -0.0000020460,0.0000020432,0.0000020402,0.0000020375,0.0000020356, -0.0000020346,0.0000020344,0.0000020347,0.0000020353,0.0000020360, -0.0000020361,0.0000020358,0.0000020352,0.0000020344,0.0000020333, -0.0000020321,0.0000020308,0.0000020296,0.0000020289,0.0000020289, -0.0000020295,0.0000020307,0.0000020325,0.0000020347,0.0000020373, -0.0000020395,0.0000020418,0.0000020437,0.0000020453,0.0000020466, -0.0000020478,0.0000020487,0.0000020493,0.0000020495,0.0000020493, -0.0000020487,0.0000020477,0.0000020459,0.0000020433,0.0000020401, -0.0000020365,0.0000020328,0.0000020296,0.0000020266,0.0000020238, -0.0000020211,0.0000020186,0.0000020159,0.0000020137,0.0000020120, -0.0000020109,0.0000020110,0.0000020124,0.0000020149,0.0000020187, -0.0000020236,0.0000020291,0.0000020347,0.0000020400,0.0000020447, -0.0000020486,0.0000020518,0.0000020542,0.0000020558,0.0000020570, -0.0000020580,0.0000020591,0.0000020604,0.0000020616,0.0000020619, -0.0000020610,0.0000020591,0.0000020563,0.0000020524,0.0000020483, -0.0000020436,0.0000020387,0.0000020343,0.0000020300,0.0000020261, -0.0000020241,0.0000020226,0.0000020227,0.0000020242,0.0000020269, -0.0000020302,0.0000020333,0.0000020356,0.0000020371,0.0000020378, -0.0000020377,0.0000020365,0.0000020337,0.0000020292,0.0000020240, -0.0000020172,0.0000020094,0.0000020016,0.0000019943,0.0000019872, -0.0000019797,0.0000019721,0.0000019656,0.0000019609,0.0000019581, -0.0000019567,0.0000019564,0.0000019571,0.0000019579,0.0000019580, -0.0000019570,0.0000019551,0.0000019529,0.0000019515,0.0000019515, -0.0000019521,0.0000019523,0.0000019526,0.0000019535,0.0000019545, -0.0000019551,0.0000019545,0.0000019527,0.0000019512,0.0000019508, -0.0000019512,0.0000019519,0.0000019528,0.0000019536,0.0000019542, -0.0000019545,0.0000019556,0.0000019590,0.0000019639,0.0000019698, -0.0000019759,0.0000019810,0.0000019846,0.0000019874,0.0000019908, -0.0000019946,0.0000019976,0.0000019985,0.0000019970,0.0000019942, -0.0000019914,0.0000019897,0.0000019894,0.0000019899,0.0000019905, -0.0000019895,0.0000019855,0.0000019798,0.0000019734,0.0000019672, -0.0000019604,0.0000019526,0.0000019446,0.0000019388,0.0000019356, -0.0000019388,0.0000019456,0.0000019545,0.0000019634,0.0000019714, -0.0000019777,0.0000019818,0.0000019839,0.0000019851,0.0000019867, -0.0000019899,0.0000019959,0.0000020051,0.0000020164,0.0000020280, -0.0000020380,0.0000020445,0.0000020476,0.0000020486,0.0000020470, -0.0000020461,0.0000020440,0.0000020415,0.0000020388,0.0000020363, -0.0000020340,0.0000020323,0.0000020311,0.0000020302,0.0000020300, -0.0000020303,0.0000020308,0.0000020315,0.0000020321,0.0000020327, -0.0000020332,0.0000020339,0.0000020347,0.0000020358,0.0000020367, -0.0000020369,0.0000020367,0.0000020362,0.0000020351,0.0000020332, -0.0000020304,0.0000020263,0.0000020217,0.0000020161,0.0000020087, -0.0000019992,0.0000019885,0.0000019784,0.0000019704,0.0000019653, -0.0000019629,0.0000019627,0.0000019643,0.0000019674,0.0000019720, -0.0000019777,0.0000019837,0.0000019886,0.0000019918,0.0000019924, -0.0000019910,0.0000019886,0.0000019857,0.0000019828,0.0000019805, -0.0000019789,0.0000019773,0.0000019750,0.0000019723,0.0000019686, -0.0000019636,0.0000019585,0.0000019539,0.0000019493,0.0000019456, -0.0000019441,0.0000019448,0.0000019468,0.0000019489,0.0000019508, -0.0000019519,0.0000019520,0.0000019512,0.0000019493,0.0000019468, -0.0000019438,0.0000019402,0.0000019365,0.0000019332,0.0000019305, -0.0000019290,0.0000019286,0.0000019288,0.0000019292,0.0000019294, -0.0000019290,0.0000019281,0.0000019270,0.0000019256,0.0000019240, -0.0000019221,0.0000019198,0.0000019172,0.0000019148,0.0000019130, -0.0000019117,0.0000019106,0.0000019092,0.0000019069,0.0000019039, -0.0000019005,0.0000018971,0.0000018936,0.0000018899,0.0000018863, -0.0000018831,0.0000018798,0.0000018761,0.0000018723,0.0000018687, -0.0000018654,0.0000018621,0.0000018591,0.0000018566,0.0000018545, -0.0000018530,0.0000018525,0.0000018529,0.0000018537,0.0000018548, -0.0000018559,0.0000018564,0.0000018568,0.0000018573,0.0000018577, -0.0000018578,0.0000018576,0.0000018574,0.0000018571,0.0000018567, -0.0000018561,0.0000018551,0.0000018538,0.0000018525,0.0000018515, -0.0000018509,0.0000018504,0.0000018498,0.0000018491,0.0000018489, -0.0000018489,0.0000018488,0.0000018483,0.0000018474,0.0000018465, -0.0000018457,0.0000018454,0.0000018458,0.0000018472,0.0000018496, -0.0000018524,0.0000018551,0.0000018571,0.0000018587,0.0000018600, -0.0000018610,0.0000018617,0.0000018624,0.0000018629,0.0000018634, -0.0000018640,0.0000018644,0.0000018646,0.0000018648,0.0000018651, -0.0000018656,0.0000018662,0.0000018672,0.0000018687,0.0000018707, -0.0000018729,0.0000018752,0.0000018772,0.0000018791,0.0000018810, -0.0000018833,0.0000018861,0.0000018897,0.0000018938,0.0000018980, -0.0000019021,0.0000019059,0.0000019092,0.0000019123,0.0000019148, -0.0000019168,0.0000019181,0.0000019188,0.0000019189,0.0000019190, -0.0000019194,0.0000019201,0.0000019210,0.0000019218,0.0000019224, -0.0000019229,0.0000019232,0.0000019234,0.0000019236,0.0000019243, -0.0000019254,0.0000019267,0.0000019283,0.0000019303,0.0000019323, -0.0000019334,0.0000019334,0.0000019326,0.0000019316,0.0000019314, -0.0000019321,0.0000019343,0.0000019374,0.0000019404,0.0000019420, -0.0000019421,0.0000019409,0.0000019392,0.0000019382,0.0000019388, -0.0000019408,0.0000019427,0.0000019426,0.0000019393,0.0000019316, -0.0000019238,0.0000019211,0.0000019241,0.0000019296,0.0000019342, -0.0000019377,0.0000019407,0.0000019438,0.0000019471,0.0000019482, -0.0000019461,0.0000019417,0.0000019388,0.0000019403,0.0000019457, -0.0000019535,0.0000019623,0.0000019711,0.0000019802,0.0000019904, -0.0000020018,0.0000020126,0.0000020202,0.0000020227,0.0000020227, -0.0000020225,0.0000020232,0.0000020250,0.0000020280,0.0000020313, -0.0000020337,0.0000020348,0.0000020345,0.0000020335,0.0000020322, -0.0000020310,0.0000020309,0.0000020321,0.0000020352,0.0000020397, -0.0000020448,0.0000020499,0.0000020545,0.0000020581,0.0000020599, -0.0000020603,0.0000020592,0.0000020561,0.0000020517,0.0000020468, -0.0000020424,0.0000020390,0.0000020367,0.0000020353,0.0000020351, -0.0000020355,0.0000020363,0.0000020373,0.0000020383,0.0000020390, -0.0000020393,0.0000020392,0.0000020388,0.0000020382,0.0000020378, -0.0000020378,0.0000020382,0.0000020388,0.0000020392,0.0000020395, -0.0000020396,0.0000020396,0.0000020397,0.0000020398,0.0000020398, -0.0000020395,0.0000020388,0.0000020374,0.0000020349,0.0000020316, -0.0000020285,0.0000020269,0.0000020267,0.0000020275,0.0000020291, -0.0000020306,0.0000020314,0.0000020310,0.0000020298,0.0000020280, -0.0000020261,0.0000020245,0.0000020231,0.0000020218,0.0000020207, -0.0000020197,0.0000020186,0.0000020173,0.0000020158,0.0000020138, -0.0000020114,0.0000020087,0.0000020058,0.0000020030,0.0000020003, -0.0000019976,0.0000019952,0.0000019927,0.0000019899,0.0000019869, -0.0000019840,0.0000019813,0.0000019787,0.0000019761,0.0000019738, -0.0000019715,0.0000019693,0.0000019670,0.0000019647,0.0000019622, -0.0000019599,0.0000019579,0.0000019554,0.0000019531,0.0000019505, -0.0000019476,0.0000019446,0.0000019416,0.0000019390,0.0000019362, -0.0000019336,0.0000019304,0.0000019273,0.0000019248,0.0000019239, -0.0000019237,0.0000019242,0.0000019247,0.0000019258,0.0000019277, -0.0000019302,0.0000019333,0.0000019375,0.0000019429,0.0000019485, -0.0000019535,0.0000019574,0.0000019606,0.0000019643,0.0000019679, -0.0000019703,0.0000019704,0.0000019678,0.0000019642,0.0000019610, -0.0000019627,0.0000019601,0.0000019586,0.0000019587,0.0000019601, -0.0000019620,0.0000019630,0.0000019619,0.0000019587,0.0000019550, -0.0000019532,0.0000019538,0.0000019555,0.0000019569,0.0000019579, -0.0000019590,0.0000019597,0.0000019593,0.0000019566,0.0000019530, -0.0000019504,0.0000019486,0.0000019467,0.0000019443,0.0000019411, -0.0000019376,0.0000019340,0.0000019320,0.0000019313,0.0000019326, -0.0000019352,0.0000019386,0.0000019426,0.0000019463,0.0000019499, -0.0000019534,0.0000019565,0.0000019590,0.0000019609,0.0000019622, -0.0000019630,0.0000019632,0.0000019629,0.0000019620,0.0000019607, -0.0000019595,0.0000019589,0.0000019587,0.0000019586,0.0000019585, -0.0000019588,0.0000019592,0.0000019594,0.0000019596,0.0000019599, -0.0000019603,0.0000019604,0.0000019601,0.0000019594,0.0000019582, -0.0000019564,0.0000019544,0.0000019518,0.0000019486,0.0000019457, -0.0000019434,0.0000019415,0.0000019403,0.0000019401,0.0000019405, -0.0000019412,0.0000019424,0.0000019433,0.0000019439,0.0000019443, -0.0000019443,0.0000019439,0.0000019434,0.0000019424,0.0000019408, -0.0000019392,0.0000019374,0.0000019357,0.0000019349,0.0000019344, -0.0000019342,0.0000019345,0.0000019359,0.0000019374,0.0000019388, -0.0000019398,0.0000019403,0.0000019408,0.0000019417,0.0000019426, -0.0000019430,0.0000019431,0.0000019432,0.0000019442,0.0000019455, -0.0000019467,0.0000019476,0.0000019485,0.0000019498,0.0000019510, -0.0000019518,0.0000019532,0.0000019549,0.0000019568,0.0000019585, -0.0000019599,0.0000019606,0.0000019601,0.0000019588,0.0000019566, -0.0000019535,0.0000019500,0.0000019466,0.0000019438,0.0000019418, -0.0000019405,0.0000019408,0.0000019427,0.0000019453,0.0000019493, -0.0000019533,0.0000019568,0.0000019600,0.0000019635,0.0000019687, -0.0000019764,0.0000019853,0.0000019945,0.0000020038,0.0000020126, -0.0000020199,0.0000020256,0.0000020290,0.0000020312,0.0000020336, -0.0000020361,0.0000020383,0.0000020395,0.0000020399,0.0000020398, -0.0000020388,0.0000020374,0.0000020363,0.0000020351,0.0000020332, -0.0000020306,0.0000020275,0.0000020248,0.0000020226,0.0000020213, -0.0000020213,0.0000020225,0.0000020247,0.0000020275,0.0000020308, -0.0000020341,0.0000020374,0.0000020410,0.0000020448,0.0000020476, -0.0000020491,0.0000020497,0.0000020500,0.0000020503,0.0000020504, -0.0000020507,0.0000020511,0.0000020513,0.0000020512,0.0000020506, -0.0000020496,0.0000020485,0.0000020474,0.0000020465,0.0000020457, -0.0000020454,0.0000020457,0.0000020466,0.0000020480,0.0000020493, -0.0000020504,0.0000020515,0.0000020525,0.0000020537,0.0000020547, -0.0000020557,0.0000020565,0.0000020572,0.0000020577,0.0000020585, -0.0000020593,0.0000020600,0.0000020609,0.0000020618,0.0000020628, -0.0000020638,0.0000020653,0.0000020675,0.0000020698,0.0000020723, -0.0000020751,0.0000020776,0.0000020794,0.0000020809,0.0000020820, -0.0000020826,0.0000020829,0.0000020833,0.0000020839,0.0000020848, -0.0000020858,0.0000020872,0.0000020895,0.0000020922,0.0000020952, -0.0000020982,0.0000021010,0.0000021036,0.0000021062,0.0000021085, -0.0000021110,0.0000021135,0.0000021162,0.0000021191,0.0000021219, -0.0000021244,0.0000021266,0.0000021285,0.0000021300,0.0000021314, -0.0000021324,0.0000021328,0.0000021328,0.0000021322,0.0000021309, -0.0000021285,0.0000021249,0.0000021203,0.0000021156,0.0000021113, -0.0000021076,0.0000021048,0.0000021030,0.0000021014,0.0000020988, -0.0000020951,0.0000020917,0.0000020900,0.0000020898,0.0000020911, -0.0000020943,0.0000020982,0.0000021029,0.0000021093,0.0000021152, -0.0000021188,0.0000021210,0.0000021219,0.0000021221,0.0000021211, -0.0000021194,0.0000021179,0.0000021146,0.0000021092,0.0000021044, -0.0000021019,0.0000021014,0.0000021025,0.0000021046,0.0000021068, -0.0000021087,0.0000021098,0.0000021112,0.0000021179,0.0000021294, -0.0000021389,0.0000021448,0.0000021495,0.0000021528,0.0000021535, -0.0000021518,0.0000021472,0.0000021398,0.0000021303,0.0000021211, -0.0000021129,0.0000021035,0.0000020953,0.0000020909,0.0000020876, -0.0000020845,0.0000020824,0.0000020812,0.0000020812,0.0000020834, -0.0000020882,0.0000020927,0.0000020942,0.0000020932,0.0000020897, -0.0000020858,0.0000020827,0.0000020806,0.0000020790,0.0000020777, -0.0000020759,0.0000020727,0.0000020674,0.0000020605,0.0000020532, -0.0000020466,0.0000020406,0.0000020356,0.0000020331,0.0000020336, -0.0000020357,0.0000020381,0.0000020399,0.0000020410,0.0000020417, -0.0000020431,0.0000020450,0.0000020460,0.0000020449,0.0000020417, -0.0000020376,0.0000020324,0.0000020268,0.0000020222,0.0000020209, -0.0000020232,0.0000020259,0.0000020266,0.0000020280,0.0000020344, -0.0000020442,0.0000020512,0.0000020523,0.0000020508,0.0000020475, -0.0000020362,0.0000020160,0.0000020009,0.0000019978,0.0000020086, -0.0000020302,0.0000020389,0.0000020373,0.0000020361,0.0000020432, -0.0000020636,0.0000020774,0.0000020764,0.0000020733,0.0000020769, -0.0000020914,0.0000021043,0.0000021102,0.0000021198,0.0000021389, -0.0000021528,0.0000021597,0.0000021634,0.0000021681,0.0000021709, -0.0000021707,0.0000021718,0.0000021746,0.0000021785,0.0000021826, -0.0000021833,0.0000021816,0.0000021800,0.0000021787,0.0000021784, -0.0000021807,0.0000021889,0.0000021968,0.0000021985,0.0000021972, -0.0000021952,0.0000021932,0.0000021907,0.0000021880,0.0000021851, -0.0000021817,0.0000021781,0.0000021747,0.0000021716,0.0000021682, -0.0000021645,0.0000021606,0.0000021568,0.0000021532,0.0000021507, -0.0000021504,0.0000021516,0.0000021535,0.0000021551,0.0000021560, -0.0000021568,0.0000021587,0.0000021612,0.0000021639,0.0000021670, -0.0000021698,0.0000021704,0.0000021693,0.0000021675,0.0000021657, -0.0000021643,0.0000021644,0.0000021652,0.0000021668,0.0000021686, -0.0000021695,0.0000021684,0.0000021660,0.0000021626,0.0000021577, -0.0000021510,0.0000021438,0.0000021362,0.0000021279,0.0000021199, -0.0000021137,0.0000021082,0.0000021030,0.0000020983,0.0000020936, -0.0000020899,0.0000020876,0.0000020861,0.0000020847,0.0000020855, -0.0000020880,0.0000020904,0.0000020920,0.0000020931,0.0000020934, -0.0000020922,0.0000020913,0.0000020889,0.0000020860,0.0000020837, -0.0000020803,0.0000020769,0.0000020733,0.0000020711,0.0000020704, -0.0000020698,0.0000020698,0.0000020694,0.0000020691,0.0000020687, -0.0000020691,0.0000020706,0.0000020729,0.0000020757,0.0000020792, -0.0000020823,0.0000020844,0.0000020860,0.0000020867,0.0000020860, -0.0000020851,0.0000020839,0.0000020825,0.0000020815,0.0000020805, -0.0000020793,0.0000020778,0.0000020755,0.0000020729,0.0000020705, -0.0000020681,0.0000020667,0.0000020656,0.0000020642,0.0000020639, -0.0000020633,0.0000020632,0.0000020630,0.0000020624,0.0000020622, -0.0000020617,0.0000020616,0.0000020609,0.0000020601,0.0000020594, -0.0000020593,0.0000020602,0.0000020607,0.0000020613,0.0000020617, -0.0000020610,0.0000020593,0.0000020573,0.0000020544,0.0000020508, -0.0000020476,0.0000020457,0.0000020461,0.0000020479,0.0000020500, -0.0000020535,0.0000020576,0.0000020615,0.0000020643,0.0000020664, -0.0000020677,0.0000020680,0.0000020679,0.0000020675,0.0000020667, -0.0000020661,0.0000020659,0.0000020659,0.0000020652,0.0000020654, -0.0000020674,0.0000020701,0.0000020720,0.0000020736,0.0000020756, -0.0000020776,0.0000020791,0.0000020805,0.0000020813,0.0000020814, -0.0000020807,0.0000020790,0.0000020764,0.0000020732,0.0000020696, -0.0000020659,0.0000020637,0.0000020630,0.0000020631,0.0000020635, -0.0000020646,0.0000020663,0.0000020690,0.0000020723,0.0000020760, -0.0000020799,0.0000020836,0.0000020869,0.0000020900,0.0000020925, -0.0000020947,0.0000020964,0.0000020979,0.0000020996,0.0000021014, -0.0000021035,0.0000021057,0.0000021075,0.0000021093,0.0000021114, -0.0000021132,0.0000021144,0.0000021153,0.0000021161,0.0000021172, -0.0000021181,0.0000021188,0.0000021195,0.0000021209,0.0000021235, -0.0000021268,0.0000021301,0.0000021334,0.0000021367,0.0000021395, -0.0000021416,0.0000021429,0.0000021436,0.0000021436,0.0000021428, -0.0000021410,0.0000021395,0.0000021375,0.0000021346,0.0000021312, -0.0000021282,0.0000021248,0.0000021212,0.0000021179,0.0000021156, -0.0000021141,0.0000021123,0.0000021118,0.0000021124,0.0000021135, -0.0000021146,0.0000021159,0.0000021178,0.0000021203,0.0000021233, -0.0000021264,0.0000021295,0.0000021324,0.0000021354,0.0000021386, -0.0000021419,0.0000021451,0.0000021482,0.0000021514,0.0000021546, -0.0000021578,0.0000021620,0.0000021671,0.0000021723,0.0000021774, -0.0000021821,0.0000021859,0.0000021893,0.0000021924,0.0000021952, -0.0000021977,0.0000022001,0.0000022023,0.0000022039,0.0000022057, -0.0000022074,0.0000022087,0.0000022103,0.0000022104,0.0000022101, -0.0000022096,0.0000022089,0.0000022081,0.0000022072,0.0000022061, -0.0000022048,0.0000022030,0.0000022011,0.0000021995,0.0000021982, -0.0000021968,0.0000021957,0.0000021949,0.0000021948,0.0000021952, -0.0000021957,0.0000021958,0.0000021950,0.0000021932,0.0000021905, -0.0000021871,0.0000021838,0.0000021809,0.0000021786,0.0000021769, -0.0000021755,0.0000021742,0.0000021728,0.0000021712,0.0000021694, -0.0000021676,0.0000021661,0.0000021655,0.0000021658,0.0000021672, -0.0000021696,0.0000021727,0.0000021757,0.0000021784,0.0000021810, -0.0000021835,0.0000021862,0.0000021888,0.0000021907,0.0000021915, -0.0000021908,0.0000021898,0.0000021878,0.0000021850,0.0000021817, -0.0000021781,0.0000021742,0.0000021698,0.0000021652,0.0000021607, -0.0000021566,0.0000021535,0.0000021514,0.0000021498,0.0000021487, -0.0000021483,0.0000021485,0.0000021486,0.0000021485,0.0000021483, -0.0000021476,0.0000021464,0.0000021449,0.0000021435,0.0000021425, -0.0000021422,0.0000021426,0.0000021437,0.0000021457,0.0000021482, -0.0000021500,0.0000021510,0.0000021520,0.0000021532,0.0000021541, -0.0000021536,0.0000021528,0.0000021522,0.0000021502,0.0000021474, -0.0000021442,0.0000021407,0.0000021368,0.0000021323,0.0000021271, -0.0000021209,0.0000021139,0.0000021070,0.0000021009,0.0000020962, -0.0000020928,0.0000020908,0.0000020898,0.0000020892,0.0000020885, -0.0000020872,0.0000020856,0.0000020832,0.0000020794,0.0000020739, -0.0000020672,0.0000020597,0.0000020523,0.0000020456,0.0000020399, -0.0000020350,0.0000020316,0.0000020300,0.0000020303,0.0000020319, -0.0000020341,0.0000020362,0.0000020379,0.0000020385,0.0000020378, -0.0000020355,0.0000020320,0.0000020278,0.0000020242,0.0000020219, -0.0000020205,0.0000020199,0.0000020202,0.0000020210,0.0000020213, -0.0000020213,0.0000020209,0.0000020198,0.0000020181,0.0000020156, -0.0000020129,0.0000020101,0.0000020074,0.0000020053,0.0000020040, -0.0000020035,0.0000020043,0.0000020067,0.0000020102,0.0000020140, -0.0000020177,0.0000020204,0.0000020224,0.0000020231,0.0000020228, -0.0000020215,0.0000020195,0.0000020172,0.0000020147,0.0000020123, -0.0000020100,0.0000020077,0.0000020068,0.0000020052,0.0000020043, -0.0000020045,0.0000020057,0.0000020073,0.0000020090,0.0000020105, -0.0000020117,0.0000020131,0.0000020142,0.0000020140,0.0000020122, -0.0000020075,0.0000019996,0.0000019894,0.0000019788,0.0000019698, -0.0000019645,0.0000019612,0.0000019590,0.0000019584,0.0000019590, -0.0000019583,0.0000019549,0.0000019490,0.0000019422,0.0000019360, -0.0000019320,0.0000019315,0.0000019340,0.0000019381,0.0000019423, -0.0000019462,0.0000019500,0.0000019537,0.0000019568,0.0000019589, -0.0000019596,0.0000019592,0.0000019573,0.0000019543,0.0000019518, -0.0000019512,0.0000019534,0.0000019573,0.0000019596,0.0000019597, -0.0000019601,0.0000019631,0.0000019681,0.0000019717,0.0000019729, -0.0000019728,0.0000019728,0.0000019740,0.0000019770,0.0000019805, -0.0000019832,0.0000019847,0.0000019857,0.0000019867,0.0000019881, -0.0000019899,0.0000019921,0.0000019941,0.0000019959,0.0000019975, -0.0000019991,0.0000020010,0.0000020025,0.0000020039,0.0000020051, -0.0000020060,0.0000020064,0.0000020067,0.0000020069,0.0000020074, -0.0000020084,0.0000020097,0.0000020111,0.0000020128,0.0000020149, -0.0000020167,0.0000020184,0.0000020203,0.0000020220,0.0000020235, -0.0000020246,0.0000020252,0.0000020251,0.0000020245,0.0000020233, -0.0000020220,0.0000020207,0.0000020195,0.0000020184,0.0000020176, -0.0000020174,0.0000020180,0.0000020191,0.0000020205,0.0000020220, -0.0000020237,0.0000020256,0.0000020278,0.0000020300,0.0000020320, -0.0000020338,0.0000020356,0.0000020373,0.0000020390,0.0000020408, -0.0000020426,0.0000020444,0.0000020463,0.0000020485,0.0000020507, -0.0000020531,0.0000020558,0.0000020589,0.0000020622,0.0000020654, -0.0000020688,0.0000020719,0.0000020745,0.0000020764,0.0000020774, -0.0000020778,0.0000020776,0.0000020768,0.0000020757,0.0000020746, -0.0000020739,0.0000020741,0.0000020751,0.0000020765,0.0000020767, -0.0000020754,0.0000020762,0.0000020848,0.0000020979,0.0000021058, -0.0000021078,0.0000021092,0.0000021112,0.0000021131,0.0000021130, -0.0000021109,0.0000021102,0.0000021098,0.0000021057,0.0000021003, -0.0000020961,0.0000020900,0.0000020842,0.0000020819,0.0000020786, -0.0000020763,0.0000020772,0.0000020785,0.0000020793,0.0000020813, -0.0000020832,0.0000020833,0.0000020821,0.0000020811,0.0000020813, -0.0000020831,0.0000020856,0.0000020878,0.0000020888,0.0000020882, -0.0000020861,0.0000020828,0.0000020793,0.0000020759,0.0000020720, -0.0000020681,0.0000020644,0.0000020613,0.0000020588,0.0000020568, -0.0000020552,0.0000020539,0.0000020527,0.0000020519,0.0000020512, -0.0000020499,0.0000020478,0.0000020453,0.0000020427,0.0000020400, -0.0000020376,0.0000020359,0.0000020350,0.0000020346,0.0000020347, -0.0000020352,0.0000020359,0.0000020361,0.0000020359,0.0000020353, -0.0000020344,0.0000020330,0.0000020315,0.0000020302,0.0000020289, -0.0000020279,0.0000020275,0.0000020275,0.0000020281,0.0000020292, -0.0000020307,0.0000020330,0.0000020359,0.0000020388,0.0000020417, -0.0000020443,0.0000020466,0.0000020485,0.0000020503,0.0000020515, -0.0000020523,0.0000020528,0.0000020531,0.0000020530,0.0000020525, -0.0000020514,0.0000020493,0.0000020466,0.0000020431,0.0000020394, -0.0000020354,0.0000020314,0.0000020278,0.0000020243,0.0000020210, -0.0000020174,0.0000020140,0.0000020106,0.0000020078,0.0000020062, -0.0000020057,0.0000020062,0.0000020083,0.0000020119,0.0000020168, -0.0000020224,0.0000020283,0.0000020340,0.0000020390,0.0000020429, -0.0000020457,0.0000020479,0.0000020498,0.0000020516,0.0000020534, -0.0000020552,0.0000020569,0.0000020582,0.0000020587,0.0000020581, -0.0000020562,0.0000020530,0.0000020486,0.0000020439,0.0000020394, -0.0000020349,0.0000020305,0.0000020264,0.0000020235,0.0000020220, -0.0000020215,0.0000020223,0.0000020245,0.0000020271,0.0000020297, -0.0000020318,0.0000020332,0.0000020338,0.0000020337,0.0000020322, -0.0000020294,0.0000020255,0.0000020203,0.0000020142,0.0000020073, -0.0000020001,0.0000019931,0.0000019859,0.0000019780,0.0000019702, -0.0000019639,0.0000019600,0.0000019583,0.0000019581,0.0000019588, -0.0000019607,0.0000019626,0.0000019633,0.0000019624,0.0000019598, -0.0000019564,0.0000019537,0.0000019527,0.0000019529,0.0000019532, -0.0000019535,0.0000019543,0.0000019553,0.0000019562,0.0000019558, -0.0000019539,0.0000019516,0.0000019503,0.0000019498,0.0000019501, -0.0000019508,0.0000019518,0.0000019524,0.0000019525,0.0000019535, -0.0000019566,0.0000019607,0.0000019654,0.0000019707,0.0000019756, -0.0000019794,0.0000019823,0.0000019855,0.0000019892,0.0000019927, -0.0000019941,0.0000019929,0.0000019900,0.0000019867,0.0000019845, -0.0000019837,0.0000019840,0.0000019845,0.0000019840,0.0000019811, -0.0000019760,0.0000019709,0.0000019656,0.0000019600,0.0000019531, -0.0000019445,0.0000019362,0.0000019326,0.0000019313,0.0000019358, -0.0000019434,0.0000019528,0.0000019627,0.0000019714,0.0000019775, -0.0000019812,0.0000019829,0.0000019835,0.0000019845,0.0000019874, -0.0000019933,0.0000020022,0.0000020134,0.0000020247,0.0000020340, -0.0000020405,0.0000020439,0.0000020452,0.0000020450,0.0000020434, -0.0000020424,0.0000020409,0.0000020394,0.0000020381,0.0000020371, -0.0000020364,0.0000020360,0.0000020361,0.0000020362,0.0000020361, -0.0000020358,0.0000020352,0.0000020345,0.0000020342,0.0000020342, -0.0000020346,0.0000020351,0.0000020355,0.0000020356,0.0000020354, -0.0000020344,0.0000020322,0.0000020288,0.0000020241,0.0000020186, -0.0000020122,0.0000020040,0.0000019941,0.0000019830,0.0000019724, -0.0000019639,0.0000019581,0.0000019552,0.0000019543,0.0000019543, -0.0000019552,0.0000019573,0.0000019613,0.0000019668,0.0000019730, -0.0000019785,0.0000019825,0.0000019842,0.0000019836,0.0000019815, -0.0000019787,0.0000019759,0.0000019738,0.0000019714,0.0000019681, -0.0000019639,0.0000019587,0.0000019525,0.0000019460,0.0000019397, -0.0000019342,0.0000019300,0.0000019281,0.0000019280,0.0000019293, -0.0000019309,0.0000019322,0.0000019334,0.0000019344,0.0000019349, -0.0000019347,0.0000019341,0.0000019328,0.0000019310,0.0000019293, -0.0000019278,0.0000019263,0.0000019249,0.0000019239,0.0000019233, -0.0000019232,0.0000019234,0.0000019234,0.0000019231,0.0000019223, -0.0000019211,0.0000019197,0.0000019180,0.0000019160,0.0000019138, -0.0000019115,0.0000019098,0.0000019085,0.0000019074,0.0000019060, -0.0000019042,0.0000019017,0.0000018986,0.0000018950,0.0000018910, -0.0000018867,0.0000018827,0.0000018789,0.0000018752,0.0000018713, -0.0000018672,0.0000018631,0.0000018591,0.0000018555,0.0000018525, -0.0000018498,0.0000018474,0.0000018459,0.0000018457,0.0000018460, -0.0000018467,0.0000018479,0.0000018490,0.0000018496,0.0000018501, -0.0000018506,0.0000018511,0.0000018514,0.0000018515,0.0000018514, -0.0000018510,0.0000018505,0.0000018498,0.0000018490,0.0000018479, -0.0000018465,0.0000018452,0.0000018444,0.0000018439,0.0000018436, -0.0000018434,0.0000018434,0.0000018435,0.0000018435,0.0000018429, -0.0000018420,0.0000018413,0.0000018411,0.0000018415,0.0000018423, -0.0000018437,0.0000018459,0.0000018486,0.0000018514,0.0000018539, -0.0000018560,0.0000018579,0.0000018594,0.0000018604,0.0000018610, -0.0000018613,0.0000018614,0.0000018615,0.0000018617,0.0000018619, -0.0000018620,0.0000018620,0.0000018621,0.0000018622,0.0000018624, -0.0000018627,0.0000018633,0.0000018643,0.0000018656,0.0000018668, -0.0000018681,0.0000018695,0.0000018710,0.0000018729,0.0000018755, -0.0000018789,0.0000018829,0.0000018872,0.0000018916,0.0000018959, -0.0000019002,0.0000019042,0.0000019080,0.0000019111,0.0000019134, -0.0000019147,0.0000019154,0.0000019161,0.0000019168,0.0000019177, -0.0000019187,0.0000019196,0.0000019204,0.0000019211,0.0000019214, -0.0000019210,0.0000019204,0.0000019204,0.0000019211,0.0000019221, -0.0000019235,0.0000019250,0.0000019266,0.0000019279,0.0000019283, -0.0000019280,0.0000019275,0.0000019273,0.0000019277,0.0000019299, -0.0000019334,0.0000019369,0.0000019392,0.0000019396,0.0000019384, -0.0000019365,0.0000019353,0.0000019360,0.0000019380,0.0000019398, -0.0000019392,0.0000019347,0.0000019267,0.0000019204,0.0000019189, -0.0000019231,0.0000019289,0.0000019335,0.0000019369,0.0000019400, -0.0000019430,0.0000019457,0.0000019463,0.0000019438,0.0000019394, -0.0000019366,0.0000019378,0.0000019426,0.0000019496,0.0000019576, -0.0000019660,0.0000019749,0.0000019849,0.0000019961,0.0000020077, -0.0000020168,0.0000020218,0.0000020223,0.0000020222,0.0000020225, -0.0000020241,0.0000020268,0.0000020298,0.0000020318,0.0000020323, -0.0000020317,0.0000020302,0.0000020284,0.0000020270,0.0000020271, -0.0000020290,0.0000020328,0.0000020380,0.0000020435,0.0000020485, -0.0000020527,0.0000020559,0.0000020582,0.0000020590,0.0000020592, -0.0000020578,0.0000020550,0.0000020511,0.0000020466,0.0000020423, -0.0000020388,0.0000020367,0.0000020363,0.0000020369,0.0000020375, -0.0000020382,0.0000020388,0.0000020391,0.0000020391,0.0000020389, -0.0000020385,0.0000020381,0.0000020381,0.0000020382,0.0000020385, -0.0000020388,0.0000020393,0.0000020398,0.0000020404,0.0000020410, -0.0000020412,0.0000020413,0.0000020411,0.0000020404,0.0000020391, -0.0000020367,0.0000020333,0.0000020302,0.0000020287,0.0000020288, -0.0000020301,0.0000020320,0.0000020336,0.0000020341,0.0000020337, -0.0000020324,0.0000020304,0.0000020284,0.0000020267,0.0000020257, -0.0000020249,0.0000020241,0.0000020232,0.0000020221,0.0000020210, -0.0000020198,0.0000020183,0.0000020166,0.0000020146,0.0000020121, -0.0000020094,0.0000020065,0.0000020037,0.0000020009,0.0000019980, -0.0000019948,0.0000019915,0.0000019883,0.0000019854,0.0000019827, -0.0000019802,0.0000019778,0.0000019758,0.0000019738,0.0000019714, -0.0000019684,0.0000019647,0.0000019605,0.0000019560,0.0000019517, -0.0000019479,0.0000019447,0.0000019420,0.0000019392,0.0000019374, -0.0000019358,0.0000019342,0.0000019326,0.0000019304,0.0000019277, -0.0000019251,0.0000019233,0.0000019226,0.0000019225,0.0000019223, -0.0000019217,0.0000019216,0.0000019227,0.0000019247,0.0000019275, -0.0000019313,0.0000019361,0.0000019419,0.0000019479,0.0000019526, -0.0000019564,0.0000019603,0.0000019642,0.0000019668,0.0000019672, -0.0000019653,0.0000019638,0.0000019633,0.0000019611,0.0000019590, -0.0000019575,0.0000019572,0.0000019584,0.0000019607,0.0000019628, -0.0000019629,0.0000019614,0.0000019583,0.0000019562,0.0000019563, -0.0000019577,0.0000019589,0.0000019597,0.0000019601,0.0000019603, -0.0000019595,0.0000019562,0.0000019516,0.0000019477,0.0000019452, -0.0000019430,0.0000019410,0.0000019385,0.0000019358,0.0000019338, -0.0000019331,0.0000019337,0.0000019351,0.0000019376,0.0000019404, -0.0000019434,0.0000019462,0.0000019487,0.0000019509,0.0000019526, -0.0000019538,0.0000019545,0.0000019547,0.0000019544,0.0000019537, -0.0000019527,0.0000019520,0.0000019519,0.0000019520,0.0000019518, -0.0000019514,0.0000019514,0.0000019518,0.0000019519,0.0000019523, -0.0000019531,0.0000019539,0.0000019547,0.0000019553,0.0000019555, -0.0000019553,0.0000019547,0.0000019540,0.0000019528,0.0000019514, -0.0000019499,0.0000019482,0.0000019462,0.0000019449,0.0000019446, -0.0000019444,0.0000019445,0.0000019450,0.0000019457,0.0000019461, -0.0000019460,0.0000019457,0.0000019450,0.0000019437,0.0000019421, -0.0000019398,0.0000019375,0.0000019353,0.0000019334,0.0000019321, -0.0000019315,0.0000019314,0.0000019325,0.0000019337,0.0000019344, -0.0000019350,0.0000019356,0.0000019361,0.0000019371,0.0000019382, -0.0000019390,0.0000019394,0.0000019398,0.0000019404,0.0000019414, -0.0000019426,0.0000019436,0.0000019449,0.0000019466,0.0000019480, -0.0000019483,0.0000019480,0.0000019479,0.0000019477,0.0000019473, -0.0000019474,0.0000019479,0.0000019484,0.0000019484,0.0000019478, -0.0000019465,0.0000019445,0.0000019419,0.0000019388,0.0000019360, -0.0000019337,0.0000019330,0.0000019342,0.0000019370,0.0000019411, -0.0000019470,0.0000019527,0.0000019571,0.0000019601,0.0000019629, -0.0000019663,0.0000019713,0.0000019784,0.0000019869,0.0000019961, -0.0000020046,0.0000020120,0.0000020183,0.0000020228,0.0000020264, -0.0000020292,0.0000020308,0.0000020321,0.0000020327,0.0000020327, -0.0000020325,0.0000020318,0.0000020312,0.0000020309,0.0000020302, -0.0000020288,0.0000020268,0.0000020246,0.0000020223,0.0000020204, -0.0000020193,0.0000020191,0.0000020200,0.0000020218,0.0000020245, -0.0000020281,0.0000020322,0.0000020361,0.0000020397,0.0000020433, -0.0000020462,0.0000020481,0.0000020489,0.0000020493,0.0000020493, -0.0000020489,0.0000020486,0.0000020484,0.0000020479,0.0000020475, -0.0000020470,0.0000020463,0.0000020457,0.0000020452,0.0000020447, -0.0000020444,0.0000020447,0.0000020455,0.0000020468,0.0000020483, -0.0000020496,0.0000020507,0.0000020517,0.0000020526,0.0000020533, -0.0000020539,0.0000020543,0.0000020547,0.0000020549,0.0000020552, -0.0000020555,0.0000020561,0.0000020567,0.0000020575,0.0000020583, -0.0000020590,0.0000020597,0.0000020606,0.0000020619,0.0000020634, -0.0000020656,0.0000020683,0.0000020708,0.0000020730,0.0000020746, -0.0000020758,0.0000020768,0.0000020777,0.0000020783,0.0000020788, -0.0000020794,0.0000020802,0.0000020815,0.0000020835,0.0000020859, -0.0000020884,0.0000020912,0.0000020941,0.0000020971,0.0000021004, -0.0000021038,0.0000021074,0.0000021113,0.0000021151,0.0000021187, -0.0000021218,0.0000021246,0.0000021268,0.0000021286,0.0000021300, -0.0000021311,0.0000021319,0.0000021323,0.0000021323,0.0000021321, -0.0000021316,0.0000021303,0.0000021276,0.0000021233,0.0000021179, -0.0000021122,0.0000021072,0.0000021037,0.0000021017,0.0000021000, -0.0000020973,0.0000020931,0.0000020890,0.0000020870,0.0000020868, -0.0000020890,0.0000020929,0.0000020968,0.0000021019,0.0000021083, -0.0000021136,0.0000021170,0.0000021193,0.0000021202,0.0000021199, -0.0000021180,0.0000021160,0.0000021138,0.0000021094,0.0000021041, -0.0000021004,0.0000020992,0.0000021000,0.0000021025,0.0000021052, -0.0000021071,0.0000021085,0.0000021092,0.0000021114,0.0000021192, -0.0000021302,0.0000021390,0.0000021444,0.0000021475,0.0000021486, -0.0000021481,0.0000021450,0.0000021391,0.0000021309,0.0000021226, -0.0000021154,0.0000021070,0.0000020986,0.0000020930,0.0000020891, -0.0000020853,0.0000020824,0.0000020806,0.0000020802,0.0000020814, -0.0000020859,0.0000020920,0.0000020955,0.0000020956,0.0000020928, -0.0000020884,0.0000020842,0.0000020812,0.0000020792,0.0000020776, -0.0000020757,0.0000020728,0.0000020684,0.0000020627,0.0000020564, -0.0000020500,0.0000020441,0.0000020390,0.0000020352,0.0000020337, -0.0000020346,0.0000020364,0.0000020378,0.0000020387,0.0000020395, -0.0000020401,0.0000020415,0.0000020436,0.0000020447,0.0000020438, -0.0000020406,0.0000020358,0.0000020300,0.0000020241,0.0000020198, -0.0000020186,0.0000020209,0.0000020246,0.0000020264,0.0000020277, -0.0000020338,0.0000020434,0.0000020503,0.0000020514,0.0000020503, -0.0000020446,0.0000020285,0.0000020080,0.0000019971,0.0000020003, -0.0000020200,0.0000020369,0.0000020390,0.0000020370,0.0000020395, -0.0000020560,0.0000020749,0.0000020782,0.0000020746,0.0000020751, -0.0000020863,0.0000020993,0.0000021060,0.0000021133,0.0000021308, -0.0000021480,0.0000021575,0.0000021625,0.0000021666,0.0000021702, -0.0000021703,0.0000021698,0.0000021713,0.0000021732,0.0000021768, -0.0000021808,0.0000021815,0.0000021797,0.0000021782,0.0000021779, -0.0000021780,0.0000021811,0.0000021890,0.0000021958,0.0000021969, -0.0000021950,0.0000021926,0.0000021905,0.0000021876,0.0000021844, -0.0000021815,0.0000021783,0.0000021750,0.0000021718,0.0000021681, -0.0000021635,0.0000021587,0.0000021541,0.0000021499,0.0000021471, -0.0000021468,0.0000021486,0.0000021515,0.0000021543,0.0000021560, -0.0000021567,0.0000021573,0.0000021582,0.0000021598,0.0000021622, -0.0000021638,0.0000021637,0.0000021622,0.0000021596,0.0000021576, -0.0000021576,0.0000021590,0.0000021614,0.0000021639,0.0000021667, -0.0000021685,0.0000021687,0.0000021677,0.0000021651,0.0000021608, -0.0000021544,0.0000021467,0.0000021386,0.0000021298,0.0000021210, -0.0000021136,0.0000021070,0.0000021005,0.0000020946,0.0000020897, -0.0000020858,0.0000020829,0.0000020808,0.0000020787,0.0000020794, -0.0000020815,0.0000020835,0.0000020848,0.0000020859,0.0000020860, -0.0000020849,0.0000020827,0.0000020794,0.0000020759,0.0000020734, -0.0000020697,0.0000020662,0.0000020630,0.0000020614,0.0000020608, -0.0000020602,0.0000020601,0.0000020598,0.0000020592,0.0000020588, -0.0000020594,0.0000020606,0.0000020627,0.0000020656,0.0000020695, -0.0000020736,0.0000020773,0.0000020807,0.0000020831,0.0000020845, -0.0000020846,0.0000020845,0.0000020837,0.0000020828,0.0000020821, -0.0000020810,0.0000020794,0.0000020773,0.0000020753,0.0000020733, -0.0000020713,0.0000020695,0.0000020679,0.0000020662,0.0000020655, -0.0000020651,0.0000020650,0.0000020648,0.0000020652,0.0000020652, -0.0000020655,0.0000020654,0.0000020655,0.0000020652,0.0000020650, -0.0000020661,0.0000020669,0.0000020676,0.0000020677,0.0000020677, -0.0000020669,0.0000020649,0.0000020624,0.0000020592,0.0000020560, -0.0000020530,0.0000020521,0.0000020528,0.0000020542,0.0000020565, -0.0000020596,0.0000020629,0.0000020655,0.0000020672,0.0000020684, -0.0000020684,0.0000020679,0.0000020674,0.0000020672,0.0000020669, -0.0000020666,0.0000020664,0.0000020655,0.0000020648,0.0000020655, -0.0000020675,0.0000020699,0.0000020718,0.0000020734,0.0000020754, -0.0000020773,0.0000020792,0.0000020806,0.0000020815,0.0000020818, -0.0000020816,0.0000020806,0.0000020785,0.0000020763,0.0000020735, -0.0000020711,0.0000020699,0.0000020698,0.0000020702,0.0000020707, -0.0000020709,0.0000020709,0.0000020718,0.0000020729,0.0000020746, -0.0000020757,0.0000020769,0.0000020782,0.0000020794,0.0000020801, -0.0000020805,0.0000020809,0.0000020816,0.0000020826,0.0000020841, -0.0000020862,0.0000020888,0.0000020916,0.0000020949,0.0000020987, -0.0000021023,0.0000021058,0.0000021087,0.0000021111,0.0000021133, -0.0000021153,0.0000021168,0.0000021179,0.0000021190,0.0000021205, -0.0000021226,0.0000021250,0.0000021276,0.0000021301,0.0000021323, -0.0000021339,0.0000021348,0.0000021351,0.0000021349,0.0000021347, -0.0000021344,0.0000021340,0.0000021333,0.0000021323,0.0000021310, -0.0000021290,0.0000021271,0.0000021246,0.0000021218,0.0000021191, -0.0000021166,0.0000021140,0.0000021121,0.0000021115,0.0000021113, -0.0000021110,0.0000021112,0.0000021122,0.0000021139,0.0000021161, -0.0000021187,0.0000021214,0.0000021240,0.0000021268,0.0000021297, -0.0000021324,0.0000021347,0.0000021373,0.0000021401,0.0000021428, -0.0000021459,0.0000021501,0.0000021551,0.0000021605,0.0000021660, -0.0000021709,0.0000021753,0.0000021794,0.0000021833,0.0000021867, -0.0000021902,0.0000021937,0.0000021970,0.0000022000,0.0000022028, -0.0000022058,0.0000022096,0.0000022123,0.0000022147,0.0000022164, -0.0000022167,0.0000022166,0.0000022155,0.0000022139,0.0000022122, -0.0000022104,0.0000022081,0.0000022056,0.0000022037,0.0000022023, -0.0000022011,0.0000022002,0.0000021996,0.0000021994,0.0000021998, -0.0000022004,0.0000022005,0.0000021998,0.0000021983,0.0000021962, -0.0000021935,0.0000021904,0.0000021873,0.0000021846,0.0000021821, -0.0000021797,0.0000021774,0.0000021750,0.0000021727,0.0000021704, -0.0000021682,0.0000021663,0.0000021651,0.0000021647,0.0000021656, -0.0000021676,0.0000021702,0.0000021729,0.0000021753,0.0000021778, -0.0000021805,0.0000021833,0.0000021859,0.0000021879,0.0000021890, -0.0000021888,0.0000021877,0.0000021857,0.0000021832,0.0000021801, -0.0000021771,0.0000021736,0.0000021697,0.0000021656,0.0000021613, -0.0000021576,0.0000021549,0.0000021529,0.0000021513,0.0000021503, -0.0000021500,0.0000021500,0.0000021497,0.0000021491,0.0000021481, -0.0000021465,0.0000021445,0.0000021422,0.0000021402,0.0000021386, -0.0000021375,0.0000021375,0.0000021385,0.0000021402,0.0000021416, -0.0000021427,0.0000021438,0.0000021452,0.0000021466,0.0000021475, -0.0000021479,0.0000021477,0.0000021472,0.0000021462,0.0000021451, -0.0000021441,0.0000021417,0.0000021402,0.0000021383,0.0000021342, -0.0000021294,0.0000021238,0.0000021173,0.0000021110,0.0000021052, -0.0000021000,0.0000020961,0.0000020933,0.0000020916,0.0000020908, -0.0000020904,0.0000020906,0.0000020898,0.0000020880,0.0000020845, -0.0000020789,0.0000020718,0.0000020641,0.0000020567,0.0000020500, -0.0000020446,0.0000020413,0.0000020400,0.0000020397,0.0000020398, -0.0000020401,0.0000020404,0.0000020404,0.0000020400,0.0000020390, -0.0000020371,0.0000020345,0.0000020319,0.0000020298,0.0000020279, -0.0000020265,0.0000020261,0.0000020260,0.0000020259,0.0000020256, -0.0000020250,0.0000020239,0.0000020221,0.0000020195,0.0000020163, -0.0000020130,0.0000020099,0.0000020071,0.0000020049,0.0000020037, -0.0000020041,0.0000020059,0.0000020092,0.0000020124,0.0000020156, -0.0000020191,0.0000020214,0.0000020226,0.0000020232,0.0000020227, -0.0000020212,0.0000020192,0.0000020169,0.0000020146,0.0000020122, -0.0000020100,0.0000020079,0.0000020059,0.0000020034,0.0000020022, -0.0000020011,0.0000020008,0.0000020014,0.0000020025,0.0000020036, -0.0000020052,0.0000020076,0.0000020104,0.0000020119,0.0000020116, -0.0000020097,0.0000020041,0.0000019950,0.0000019832,0.0000019722, -0.0000019642,0.0000019592,0.0000019574,0.0000019568,0.0000019575, -0.0000019566,0.0000019536,0.0000019474,0.0000019401,0.0000019340, -0.0000019311,0.0000019316,0.0000019347,0.0000019390,0.0000019433, -0.0000019475,0.0000019519,0.0000019563,0.0000019592,0.0000019601, -0.0000019596,0.0000019574,0.0000019541,0.0000019508,0.0000019498, -0.0000019512,0.0000019540,0.0000019552,0.0000019553,0.0000019574, -0.0000019623,0.0000019671,0.0000019691,0.0000019693,0.0000019697, -0.0000019716,0.0000019750,0.0000019794,0.0000019825,0.0000019840, -0.0000019849,0.0000019860,0.0000019878,0.0000019901,0.0000019929, -0.0000019957,0.0000019977,0.0000019989,0.0000019997,0.0000020001, -0.0000020010,0.0000020020,0.0000020033,0.0000020044,0.0000020051, -0.0000020055,0.0000020058,0.0000020063,0.0000020067,0.0000020075, -0.0000020086,0.0000020099,0.0000020117,0.0000020138,0.0000020159, -0.0000020179,0.0000020196,0.0000020215,0.0000020233,0.0000020247, -0.0000020261,0.0000020268,0.0000020266,0.0000020257,0.0000020245, -0.0000020231,0.0000020219,0.0000020210,0.0000020206,0.0000020206, -0.0000020212,0.0000020221,0.0000020233,0.0000020246,0.0000020262, -0.0000020279,0.0000020298,0.0000020318,0.0000020337,0.0000020356, -0.0000020372,0.0000020387,0.0000020401,0.0000020416,0.0000020432, -0.0000020451,0.0000020473,0.0000020495,0.0000020516,0.0000020537, -0.0000020557,0.0000020580,0.0000020606,0.0000020633,0.0000020659, -0.0000020683,0.0000020705,0.0000020724,0.0000020737,0.0000020744, -0.0000020743,0.0000020737,0.0000020729,0.0000020723,0.0000020725, -0.0000020736,0.0000020754,0.0000020766,0.0000020759,0.0000020751, -0.0000020789,0.0000020904,0.0000021016,0.0000021065,0.0000021081, -0.0000021101,0.0000021123,0.0000021137,0.0000021131,0.0000021116, -0.0000021114,0.0000021097,0.0000021049,0.0000021000,0.0000020955, -0.0000020888,0.0000020838,0.0000020820,0.0000020787,0.0000020764, -0.0000020773,0.0000020787,0.0000020795,0.0000020814,0.0000020835, -0.0000020844,0.0000020838,0.0000020828,0.0000020819,0.0000020814, -0.0000020808,0.0000020802,0.0000020790,0.0000020768,0.0000020737, -0.0000020704,0.0000020674,0.0000020641,0.0000020604,0.0000020567, -0.0000020537,0.0000020516,0.0000020502,0.0000020493,0.0000020487, -0.0000020479,0.0000020468,0.0000020461,0.0000020454,0.0000020441, -0.0000020419,0.0000020395,0.0000020371,0.0000020351,0.0000020340, -0.0000020336,0.0000020336,0.0000020337,0.0000020339,0.0000020343, -0.0000020347,0.0000020346,0.0000020344,0.0000020339,0.0000020329, -0.0000020318,0.0000020307,0.0000020298,0.0000020291,0.0000020285, -0.0000020282,0.0000020282,0.0000020287,0.0000020294,0.0000020303, -0.0000020321,0.0000020347,0.0000020374,0.0000020403,0.0000020431, -0.0000020457,0.0000020479,0.0000020498,0.0000020513,0.0000020523, -0.0000020530,0.0000020534,0.0000020535,0.0000020533,0.0000020530, -0.0000020519,0.0000020503,0.0000020481,0.0000020452,0.0000020414, -0.0000020372,0.0000020329,0.0000020287,0.0000020248,0.0000020206, -0.0000020164,0.0000020119,0.0000020078,0.0000020048,0.0000020019, -0.0000020007,0.0000020011,0.0000020030,0.0000020063,0.0000020108, -0.0000020164,0.0000020226,0.0000020287,0.0000020339,0.0000020377, -0.0000020404,0.0000020426,0.0000020446,0.0000020467,0.0000020489, -0.0000020512,0.0000020534,0.0000020552,0.0000020560,0.0000020551, -0.0000020531,0.0000020498,0.0000020460,0.0000020419,0.0000020375, -0.0000020328,0.0000020282,0.0000020244,0.0000020219,0.0000020212, -0.0000020215,0.0000020228,0.0000020247,0.0000020266,0.0000020282, -0.0000020293,0.0000020297,0.0000020292,0.0000020274,0.0000020243, -0.0000020204,0.0000020158,0.0000020101,0.0000020040,0.0000019977, -0.0000019912,0.0000019842,0.0000019767,0.0000019694,0.0000019636, -0.0000019604,0.0000019594,0.0000019597,0.0000019615,0.0000019643, -0.0000019671,0.0000019684,0.0000019677,0.0000019650,0.0000019608, -0.0000019566,0.0000019544,0.0000019539,0.0000019542,0.0000019544, -0.0000019551,0.0000019563,0.0000019574,0.0000019575,0.0000019553, -0.0000019520,0.0000019497,0.0000019488,0.0000019481,0.0000019484, -0.0000019495,0.0000019503,0.0000019506,0.0000019513,0.0000019538, -0.0000019570,0.0000019608,0.0000019654,0.0000019701,0.0000019740, -0.0000019769,0.0000019801,0.0000019839,0.0000019874,0.0000019891, -0.0000019881,0.0000019853,0.0000019819,0.0000019792,0.0000019779, -0.0000019777,0.0000019779,0.0000019774,0.0000019753,0.0000019715, -0.0000019664,0.0000019617,0.0000019574,0.0000019526,0.0000019452, -0.0000019368,0.0000019301,0.0000019278,0.0000019283,0.0000019332, -0.0000019418,0.0000019525,0.0000019630,0.0000019716,0.0000019775, -0.0000019806,0.0000019816,0.0000019819,0.0000019828,0.0000019854, -0.0000019910,0.0000019996,0.0000020097,0.0000020199,0.0000020285, -0.0000020349,0.0000020388,0.0000020408,0.0000020411,0.0000020410, -0.0000020401,0.0000020391,0.0000020389,0.0000020385,0.0000020383, -0.0000020381,0.0000020378,0.0000020374,0.0000020367,0.0000020356, -0.0000020345,0.0000020338,0.0000020334,0.0000020335,0.0000020340, -0.0000020343,0.0000020342,0.0000020336,0.0000020319,0.0000020291, -0.0000020252,0.0000020200,0.0000020141,0.0000020075,0.0000019994, -0.0000019897,0.0000019791,0.0000019686,0.0000019600,0.0000019539, -0.0000019509,0.0000019497,0.0000019490,0.0000019486,0.0000019487, -0.0000019499,0.0000019526,0.0000019568,0.0000019617,0.0000019669, -0.0000019711,0.0000019731,0.0000019731,0.0000019714,0.0000019688, -0.0000019661,0.0000019628,0.0000019585,0.0000019529,0.0000019465, -0.0000019394,0.0000019324,0.0000019260,0.0000019205,0.0000019166, -0.0000019145,0.0000019137,0.0000019140,0.0000019150,0.0000019156, -0.0000019160,0.0000019165,0.0000019169,0.0000019169,0.0000019166, -0.0000019162,0.0000019159,0.0000019161,0.0000019174,0.0000019185, -0.0000019192,0.0000019194,0.0000019191,0.0000019187,0.0000019184, -0.0000019183,0.0000019177,0.0000019166,0.0000019156,0.0000019148, -0.0000019136,0.0000019118,0.0000019098,0.0000019077,0.0000019060, -0.0000019046,0.0000019036,0.0000019025,0.0000019009,0.0000018990, -0.0000018962,0.0000018922,0.0000018874,0.0000018824,0.0000018777, -0.0000018730,0.0000018684,0.0000018641,0.0000018599,0.0000018556, -0.0000018516,0.0000018482,0.0000018453,0.0000018428,0.0000018410, -0.0000018401,0.0000018399,0.0000018398,0.0000018400,0.0000018407, -0.0000018415,0.0000018421,0.0000018426,0.0000018432,0.0000018437, -0.0000018441,0.0000018445,0.0000018447,0.0000018445,0.0000018441, -0.0000018436,0.0000018431,0.0000018422,0.0000018409,0.0000018395, -0.0000018384,0.0000018379,0.0000018379,0.0000018382,0.0000018385, -0.0000018391,0.0000018394,0.0000018393,0.0000018388,0.0000018383, -0.0000018384,0.0000018391,0.0000018402,0.0000018416,0.0000018435, -0.0000018457,0.0000018481,0.0000018504,0.0000018524,0.0000018544, -0.0000018561,0.0000018574,0.0000018583,0.0000018590,0.0000018593, -0.0000018593,0.0000018592,0.0000018592,0.0000018594,0.0000018595, -0.0000018594,0.0000018592,0.0000018590,0.0000018588,0.0000018589, -0.0000018594,0.0000018600,0.0000018606,0.0000018611,0.0000018615, -0.0000018621,0.0000018628,0.0000018639,0.0000018656,0.0000018679, -0.0000018710,0.0000018748,0.0000018791,0.0000018835,0.0000018881, -0.0000018930,0.0000018978,0.0000019022,0.0000019058,0.0000019086, -0.0000019109,0.0000019128,0.0000019143,0.0000019155,0.0000019167, -0.0000019179,0.0000019191,0.0000019199,0.0000019200,0.0000019193, -0.0000019182,0.0000019173,0.0000019170,0.0000019177,0.0000019188, -0.0000019197,0.0000019206,0.0000019216,0.0000019226,0.0000019232, -0.0000019232,0.0000019232,0.0000019240,0.0000019262,0.0000019297, -0.0000019336,0.0000019363,0.0000019368,0.0000019357,0.0000019338, -0.0000019324,0.0000019330,0.0000019350,0.0000019365,0.0000019350, -0.0000019296,0.0000019220,0.0000019173,0.0000019176,0.0000019229, -0.0000019287,0.0000019331,0.0000019364,0.0000019395,0.0000019423, -0.0000019445,0.0000019447,0.0000019420,0.0000019374,0.0000019347, -0.0000019353,0.0000019392,0.0000019451,0.0000019523,0.0000019603, -0.0000019690,0.0000019788,0.0000019900,0.0000020020,0.0000020128, -0.0000020197,0.0000020218,0.0000020220,0.0000020223,0.0000020239, -0.0000020264,0.0000020289,0.0000020306,0.0000020307,0.0000020298, -0.0000020278,0.0000020259,0.0000020243,0.0000020243,0.0000020264, -0.0000020304,0.0000020355,0.0000020408,0.0000020457,0.0000020500, -0.0000020533,0.0000020555,0.0000020568,0.0000020568,0.0000020563, -0.0000020550,0.0000020526,0.0000020496,0.0000020462,0.0000020429, -0.0000020402,0.0000020385,0.0000020380,0.0000020380,0.0000020381, -0.0000020384,0.0000020387,0.0000020388,0.0000020387,0.0000020385, -0.0000020382,0.0000020380,0.0000020381,0.0000020384,0.0000020391, -0.0000020401,0.0000020411,0.0000020420,0.0000020426,0.0000020428, -0.0000020428,0.0000020424,0.0000020412,0.0000020388,0.0000020353, -0.0000020321,0.0000020307,0.0000020309,0.0000020324,0.0000020345, -0.0000020362,0.0000020367,0.0000020362,0.0000020347,0.0000020326, -0.0000020304,0.0000020287,0.0000020277,0.0000020272,0.0000020268, -0.0000020263,0.0000020257,0.0000020248,0.0000020237,0.0000020225, -0.0000020213,0.0000020199,0.0000020181,0.0000020159,0.0000020131, -0.0000020101,0.0000020068,0.0000020032,0.0000019994,0.0000019956, -0.0000019919,0.0000019886,0.0000019858,0.0000019832,0.0000019809, -0.0000019789,0.0000019771,0.0000019753,0.0000019731,0.0000019702, -0.0000019661,0.0000019606,0.0000019546,0.0000019487,0.0000019436, -0.0000019392,0.0000019357,0.0000019331,0.0000019315,0.0000019303, -0.0000019298,0.0000019285,0.0000019268,0.0000019246,0.0000019224, -0.0000019212,0.0000019211,0.0000019214,0.0000019212,0.0000019200, -0.0000019190,0.0000019186,0.0000019199,0.0000019226,0.0000019265, -0.0000019317,0.0000019375,0.0000019431,0.0000019483,0.0000019528, -0.0000019569,0.0000019604,0.0000019628,0.0000019563,0.0000019590, -0.0000019606,0.0000019609,0.0000019595,0.0000019577,0.0000019564, -0.0000019564,0.0000019578,0.0000019603,0.0000019633,0.0000019647, -0.0000019638,0.0000019608,0.0000019585,0.0000019580,0.0000019589, -0.0000019598,0.0000019599,0.0000019596,0.0000019590,0.0000019574, -0.0000019534,0.0000019484,0.0000019443,0.0000019417,0.0000019402, -0.0000019391,0.0000019382,0.0000019375,0.0000019369,0.0000019373, -0.0000019387,0.0000019404,0.0000019426,0.0000019446,0.0000019463, -0.0000019479,0.0000019491,0.0000019500,0.0000019503,0.0000019500, -0.0000019493,0.0000019482,0.0000019470,0.0000019461,0.0000019457, -0.0000019453,0.0000019449,0.0000019443,0.0000019438,0.0000019438, -0.0000019441,0.0000019446,0.0000019451,0.0000019458,0.0000019464, -0.0000019471,0.0000019479,0.0000019485,0.0000019492,0.0000019502, -0.0000019512,0.0000019519,0.0000019521,0.0000019519,0.0000019515, -0.0000019514,0.0000019520,0.0000019522,0.0000019521,0.0000019521, -0.0000019522,0.0000019523,0.0000019515,0.0000019502,0.0000019485, -0.0000019464,0.0000019438,0.0000019409,0.0000019380,0.0000019352, -0.0000019328,0.0000019312,0.0000019303,0.0000019303,0.0000019309, -0.0000019313,0.0000019312,0.0000019313,0.0000019315,0.0000019321, -0.0000019333,0.0000019344,0.0000019355,0.0000019365,0.0000019378, -0.0000019388,0.0000019399,0.0000019408,0.0000019414,0.0000019423, -0.0000019435,0.0000019442,0.0000019444,0.0000019444,0.0000019443, -0.0000019436,0.0000019424,0.0000019410,0.0000019394,0.0000019376, -0.0000019358,0.0000019341,0.0000019329,0.0000019320,0.0000019309, -0.0000019296,0.0000019287,0.0000019281,0.0000019283,0.0000019298, -0.0000019323,0.0000019366,0.0000019427,0.0000019493,0.0000019551, -0.0000019596,0.0000019633,0.0000019665,0.0000019697,0.0000019739, -0.0000019800,0.0000019874,0.0000019950,0.0000020024,0.0000020093, -0.0000020150,0.0000020200,0.0000020239,0.0000020260,0.0000020269, -0.0000020270,0.0000020266,0.0000020260,0.0000020255,0.0000020255, -0.0000020255,0.0000020248,0.0000020239,0.0000020228,0.0000020214, -0.0000020198,0.0000020183,0.0000020172,0.0000020170,0.0000020176, -0.0000020189,0.0000020211,0.0000020244,0.0000020289,0.0000020334, -0.0000020375,0.0000020411,0.0000020442,0.0000020462,0.0000020474, -0.0000020483,0.0000020484,0.0000020480,0.0000020474,0.0000020466, -0.0000020455,0.0000020446,0.0000020438,0.0000020432,0.0000020428, -0.0000020429,0.0000020430,0.0000020430,0.0000020434,0.0000020446, -0.0000020465,0.0000020484,0.0000020501,0.0000020516,0.0000020529, -0.0000020540,0.0000020546,0.0000020548,0.0000020548,0.0000020548, -0.0000020548,0.0000020548,0.0000020549,0.0000020554,0.0000020561, -0.0000020568,0.0000020574,0.0000020581,0.0000020587,0.0000020592, -0.0000020601,0.0000020612,0.0000020629,0.0000020651,0.0000020672, -0.0000020692,0.0000020704,0.0000020713,0.0000020720,0.0000020725, -0.0000020729,0.0000020733,0.0000020739,0.0000020746,0.0000020759, -0.0000020777,0.0000020800,0.0000020824,0.0000020848,0.0000020874, -0.0000020902,0.0000020933,0.0000020966,0.0000021005,0.0000021051, -0.0000021101,0.0000021149,0.0000021192,0.0000021228,0.0000021259, -0.0000021282,0.0000021296,0.0000021305,0.0000021311,0.0000021314, -0.0000021316,0.0000021317,0.0000021313,0.0000021302,0.0000021282, -0.0000021248,0.0000021193,0.0000021126,0.0000021066,0.0000021025, -0.0000021000,0.0000020981,0.0000020951,0.0000020903,0.0000020858, -0.0000020839,0.0000020843,0.0000020875,0.0000020914,0.0000020956, -0.0000021014,0.0000021076,0.0000021124,0.0000021162,0.0000021183, -0.0000021186,0.0000021174,0.0000021148,0.0000021124,0.0000021093, -0.0000021044,0.0000020997,0.0000020974,0.0000020974,0.0000020998, -0.0000021031,0.0000021054,0.0000021068,0.0000021078,0.0000021086, -0.0000021118,0.0000021195,0.0000021296,0.0000021378,0.0000021425, -0.0000021444,0.0000021442,0.0000021418,0.0000021368,0.0000021298, -0.0000021226,0.0000021167,0.0000021099,0.0000021022,0.0000020959, -0.0000020913,0.0000020870,0.0000020831,0.0000020805,0.0000020791, -0.0000020793,0.0000020830,0.0000020895,0.0000020947,0.0000020962, -0.0000020952,0.0000020915,0.0000020871,0.0000020834,0.0000020809, -0.0000020791,0.0000020771,0.0000020741,0.0000020697,0.0000020642, -0.0000020584,0.0000020524,0.0000020470,0.0000020425,0.0000020388, -0.0000020359,0.0000020349,0.0000020357,0.0000020369,0.0000020375, -0.0000020379,0.0000020383,0.0000020386,0.0000020397,0.0000020415, -0.0000020426,0.0000020418,0.0000020386,0.0000020335,0.0000020273, -0.0000020214,0.0000020172,0.0000020160,0.0000020180,0.0000020227, -0.0000020257,0.0000020278,0.0000020338,0.0000020430,0.0000020497, -0.0000020507,0.0000020493,0.0000020402,0.0000020197,0.0000020015, -0.0000019971,0.0000020085,0.0000020305,0.0000020394,0.0000020387, -0.0000020385,0.0000020484,0.0000020686,0.0000020786,0.0000020763, -0.0000020751,0.0000020826,0.0000020950,0.0000021023,0.0000021081, -0.0000021220,0.0000021417,0.0000021542,0.0000021613,0.0000021654, -0.0000021693,0.0000021709,0.0000021693,0.0000021691,0.0000021704, -0.0000021718,0.0000021755,0.0000021794,0.0000021800,0.0000021780, -0.0000021774,0.0000021778,0.0000021784,0.0000021818,0.0000021885, -0.0000021941,0.0000021947,0.0000021929,0.0000021904,0.0000021874, -0.0000021842,0.0000021811,0.0000021781,0.0000021754,0.0000021730, -0.0000021703,0.0000021663,0.0000021611,0.0000021559,0.0000021514, -0.0000021479,0.0000021467,0.0000021474,0.0000021497,0.0000021529, -0.0000021554,0.0000021563,0.0000021567,0.0000021567,0.0000021571, -0.0000021580,0.0000021583,0.0000021576,0.0000021556,0.0000021526, -0.0000021498,0.0000021499,0.0000021518,0.0000021551,0.0000021584, -0.0000021615,0.0000021640,0.0000021658,0.0000021657,0.0000021639, -0.0000021604,0.0000021555,0.0000021486,0.0000021406,0.0000021320, -0.0000021230,0.0000021147,0.0000021070,0.0000020995,0.0000020924, -0.0000020865,0.0000020819,0.0000020785,0.0000020764,0.0000020748, -0.0000020760,0.0000020783,0.0000020802,0.0000020812,0.0000020813, -0.0000020806,0.0000020790,0.0000020765,0.0000020727,0.0000020698, -0.0000020668,0.0000020639,0.0000020606,0.0000020578,0.0000020562, -0.0000020558,0.0000020554,0.0000020550,0.0000020541,0.0000020525, -0.0000020514,0.0000020513,0.0000020518,0.0000020533,0.0000020553, -0.0000020577,0.0000020604,0.0000020635,0.0000020666,0.0000020695, -0.0000020725,0.0000020755,0.0000020781,0.0000020797,0.0000020808, -0.0000020817,0.0000020815,0.0000020808,0.0000020800,0.0000020792, -0.0000020783,0.0000020765,0.0000020745,0.0000020730,0.0000020714, -0.0000020695,0.0000020684,0.0000020676,0.0000020670,0.0000020668, -0.0000020672,0.0000020670,0.0000020671,0.0000020674,0.0000020674, -0.0000020682,0.0000020693,0.0000020704,0.0000020716,0.0000020723, -0.0000020723,0.0000020717,0.0000020700,0.0000020671,0.0000020641, -0.0000020618,0.0000020604,0.0000020607,0.0000020624,0.0000020650, -0.0000020678,0.0000020703,0.0000020723,0.0000020734,0.0000020740, -0.0000020739,0.0000020731,0.0000020725,0.0000020724,0.0000020720, -0.0000020717,0.0000020711,0.0000020698,0.0000020679,0.0000020670, -0.0000020673,0.0000020689,0.0000020704,0.0000020720,0.0000020734, -0.0000020748,0.0000020761,0.0000020774,0.0000020782,0.0000020783, -0.0000020781,0.0000020774,0.0000020766,0.0000020753,0.0000020735, -0.0000020716,0.0000020709,0.0000020715,0.0000020731,0.0000020751, -0.0000020773,0.0000020793,0.0000020808,0.0000020825,0.0000020841, -0.0000020851,0.0000020852,0.0000020851,0.0000020847,0.0000020840, -0.0000020826,0.0000020804,0.0000020792,0.0000020776,0.0000020763, -0.0000020757,0.0000020759,0.0000020766,0.0000020780,0.0000020802, -0.0000020834,0.0000020873,0.0000020915,0.0000020959,0.0000021001, -0.0000021042,0.0000021077,0.0000021108,0.0000021136,0.0000021158, -0.0000021176,0.0000021194,0.0000021211,0.0000021227,0.0000021243, -0.0000021260,0.0000021277,0.0000021287,0.0000021288,0.0000021282, -0.0000021274,0.0000021266,0.0000021259,0.0000021255,0.0000021255, -0.0000021251,0.0000021242,0.0000021233,0.0000021221,0.0000021210, -0.0000021196,0.0000021181,0.0000021169,0.0000021159,0.0000021150, -0.0000021140,0.0000021131,0.0000021124,0.0000021120,0.0000021124, -0.0000021132,0.0000021140,0.0000021154,0.0000021170,0.0000021191, -0.0000021214,0.0000021232,0.0000021248,0.0000021266,0.0000021286, -0.0000021311,0.0000021342,0.0000021381,0.0000021425,0.0000021476, -0.0000021529,0.0000021580,0.0000021630,0.0000021677,0.0000021718, -0.0000021757,0.0000021797,0.0000021838,0.0000021876,0.0000021910, -0.0000021943,0.0000021981,0.0000022024,0.0000022071,0.0000022115, -0.0000022153,0.0000022180,0.0000022189,0.0000022191,0.0000022191, -0.0000022178,0.0000022166,0.0000022149,0.0000022130,0.0000022115, -0.0000022102,0.0000022093,0.0000022083,0.0000022074,0.0000022071, -0.0000022069,0.0000022065,0.0000022056,0.0000022042,0.0000022026, -0.0000022009,0.0000021987,0.0000021961,0.0000021934,0.0000021908, -0.0000021881,0.0000021851,0.0000021821,0.0000021792,0.0000021763, -0.0000021736,0.0000021708,0.0000021680,0.0000021659,0.0000021648, -0.0000021652,0.0000021665,0.0000021684,0.0000021707,0.0000021730, -0.0000021755,0.0000021777,0.0000021799,0.0000021819,0.0000021834, -0.0000021842,0.0000021838,0.0000021824,0.0000021804,0.0000021783, -0.0000021758,0.0000021731,0.0000021701,0.0000021669,0.0000021631, -0.0000021597,0.0000021567,0.0000021542,0.0000021523,0.0000021511, -0.0000021507,0.0000021507,0.0000021506,0.0000021501,0.0000021491, -0.0000021475,0.0000021453,0.0000021425,0.0000021395,0.0000021367, -0.0000021346,0.0000021336,0.0000021337,0.0000021343,0.0000021350, -0.0000021356,0.0000021365,0.0000021375,0.0000021387,0.0000021395, -0.0000021399,0.0000021396,0.0000021388,0.0000021376,0.0000021362, -0.0000021354,0.0000021352,0.0000021349,0.0000021342,0.0000021328, -0.0000021310,0.0000021289,0.0000021248,0.0000021221,0.0000021177, -0.0000021136,0.0000021093,0.0000021047,0.0000021005,0.0000020973, -0.0000020946,0.0000020931,0.0000020918,0.0000020907,0.0000020895, -0.0000020878,0.0000020848,0.0000020802,0.0000020746,0.0000020686, -0.0000020625,0.0000020574,0.0000020539,0.0000020515,0.0000020495, -0.0000020477,0.0000020457,0.0000020437,0.0000020421,0.0000020410, -0.0000020400,0.0000020387,0.0000020374,0.0000020362,0.0000020348, -0.0000020335,0.0000020329,0.0000020328,0.0000020330,0.0000020329, -0.0000020328,0.0000020324,0.0000020314,0.0000020298,0.0000020274, -0.0000020243,0.0000020208,0.0000020174,0.0000020141,0.0000020116, -0.0000020109,0.0000020115,0.0000020133,0.0000020155,0.0000020179, -0.0000020204,0.0000020223,0.0000020234,0.0000020239,0.0000020235, -0.0000020221,0.0000020200,0.0000020175,0.0000020151,0.0000020130, -0.0000020113,0.0000020098,0.0000020082,0.0000020060,0.0000020035, -0.0000020015,0.0000019996,0.0000019989,0.0000019984,0.0000019982, -0.0000019978,0.0000019987,0.0000020009,0.0000020040,0.0000020074, -0.0000020090,0.0000020083,0.0000020062,0.0000019995,0.0000019886, -0.0000019765,0.0000019658,0.0000019586,0.0000019549,0.0000019535, -0.0000019542,0.0000019540,0.0000019509,0.0000019450,0.0000019377, -0.0000019318,0.0000019298,0.0000019306,0.0000019341,0.0000019388, -0.0000019436,0.0000019486,0.0000019538,0.0000019581,0.0000019602, -0.0000019599,0.0000019581,0.0000019547,0.0000019515,0.0000019502, -0.0000019501,0.0000019507,0.0000019506,0.0000019509,0.0000019544, -0.0000019607,0.0000019655,0.0000019663,0.0000019657,0.0000019660, -0.0000019691,0.0000019744,0.0000019796,0.0000019826,0.0000019838, -0.0000019845,0.0000019861,0.0000019890,0.0000019923,0.0000019952, -0.0000019973,0.0000019984,0.0000019989,0.0000019988,0.0000019984, -0.0000019983,0.0000019988,0.0000019999,0.0000020009,0.0000020014, -0.0000020021,0.0000020028,0.0000020037,0.0000020045,0.0000020053, -0.0000020063,0.0000020076,0.0000020094,0.0000020114,0.0000020134, -0.0000020156,0.0000020177,0.0000020198,0.0000020217,0.0000020236, -0.0000020253,0.0000020266,0.0000020273,0.0000020275,0.0000020269, -0.0000020259,0.0000020247,0.0000020238,0.0000020236,0.0000020237, -0.0000020243,0.0000020251,0.0000020264,0.0000020282,0.0000020304, -0.0000020326,0.0000020348,0.0000020367,0.0000020386,0.0000020403, -0.0000020420,0.0000020435,0.0000020448,0.0000020458,0.0000020470, -0.0000020487,0.0000020505,0.0000020522,0.0000020538,0.0000020553, -0.0000020568,0.0000020586,0.0000020607,0.0000020626,0.0000020642, -0.0000020655,0.0000020667,0.0000020680,0.0000020693,0.0000020702, -0.0000020706,0.0000020705,0.0000020705,0.0000020711,0.0000020723, -0.0000020742,0.0000020762,0.0000020765,0.0000020754,0.0000020766, -0.0000020848,0.0000020965,0.0000021042,0.0000021069,0.0000021087, -0.0000021110,0.0000021133,0.0000021141,0.0000021131,0.0000021124, -0.0000021122,0.0000021090,0.0000021042,0.0000020995,0.0000020943, -0.0000020877,0.0000020837,0.0000020825,0.0000020792,0.0000020764, -0.0000020769,0.0000020787,0.0000020798,0.0000020814,0.0000020834, -0.0000020845,0.0000020846,0.0000020841,0.0000020829,0.0000020812, -0.0000020789,0.0000020758,0.0000020723,0.0000020684,0.0000020647, -0.0000020616,0.0000020590,0.0000020560,0.0000020524,0.0000020490, -0.0000020465,0.0000020448,0.0000020436,0.0000020430,0.0000020422, -0.0000020411,0.0000020396,0.0000020384,0.0000020374,0.0000020360, -0.0000020343,0.0000020323,0.0000020307,0.0000020298,0.0000020296, -0.0000020297,0.0000020298,0.0000020298,0.0000020296,0.0000020295, -0.0000020296,0.0000020296,0.0000020297,0.0000020296,0.0000020295, -0.0000020294,0.0000020295,0.0000020296,0.0000020295,0.0000020294, -0.0000020294,0.0000020295,0.0000020299,0.0000020303,0.0000020312, -0.0000020329,0.0000020350,0.0000020374,0.0000020401,0.0000020425, -0.0000020445,0.0000020463,0.0000020480,0.0000020494,0.0000020504, -0.0000020510,0.0000020512,0.0000020512,0.0000020512,0.0000020508, -0.0000020503,0.0000020498,0.0000020484,0.0000020472,0.0000020451, -0.0000020419,0.0000020381,0.0000020339,0.0000020294,0.0000020248, -0.0000020202,0.0000020154,0.0000020106,0.0000020060,0.0000020019, -0.0000019996,0.0000019975,0.0000019972,0.0000019986,0.0000020012, -0.0000020054,0.0000020110,0.0000020179,0.0000020246,0.0000020303, -0.0000020345,0.0000020372,0.0000020390,0.0000020407,0.0000020424, -0.0000020444,0.0000020468,0.0000020494,0.0000020516,0.0000020526, -0.0000020519,0.0000020501,0.0000020473,0.0000020441,0.0000020401, -0.0000020354,0.0000020304,0.0000020259,0.0000020227,0.0000020212, -0.0000020208,0.0000020212,0.0000020223,0.0000020234,0.0000020243, -0.0000020248,0.0000020248,0.0000020237,0.0000020210,0.0000020173, -0.0000020135,0.0000020094,0.0000020047,0.0000019995,0.0000019944, -0.0000019888,0.0000019826,0.0000019762,0.0000019699,0.0000019649, -0.0000019619,0.0000019612,0.0000019619,0.0000019642,0.0000019676, -0.0000019708,0.0000019727,0.0000019724,0.0000019700,0.0000019654, -0.0000019601,0.0000019565,0.0000019551,0.0000019550,0.0000019554, -0.0000019561,0.0000019574,0.0000019588,0.0000019592,0.0000019569, -0.0000019531,0.0000019497,0.0000019474,0.0000019460,0.0000019460, -0.0000019472,0.0000019484,0.0000019487,0.0000019491,0.0000019507, -0.0000019535,0.0000019566,0.0000019604,0.0000019646,0.0000019683, -0.0000019714,0.0000019745,0.0000019783,0.0000019819,0.0000019836, -0.0000019832,0.0000019804,0.0000019768,0.0000019738,0.0000019721, -0.0000019715,0.0000019712,0.0000019706,0.0000019690,0.0000019658, -0.0000019614,0.0000019571,0.0000019539,0.0000019505,0.0000019453, -0.0000019377,0.0000019305,0.0000019252,0.0000019236,0.0000019259, -0.0000019321,0.0000019419,0.0000019531,0.0000019638,0.0000019722, -0.0000019776,0.0000019801,0.0000019806,0.0000019803,0.0000019807, -0.0000019833,0.0000019885,0.0000019960,0.0000020048,0.0000020136, -0.0000020214,0.0000020275,0.0000020318,0.0000020345,0.0000020358, -0.0000020367,0.0000020373,0.0000020378,0.0000020382,0.0000020381, -0.0000020376,0.0000020370,0.0000020362,0.0000020351,0.0000020340, -0.0000020330,0.0000020324,0.0000020322,0.0000020324,0.0000020324, -0.0000020316,0.0000020299,0.0000020273,0.0000020240,0.0000020198, -0.0000020149,0.0000020096,0.0000020036,0.0000019961,0.0000019868, -0.0000019768,0.0000019668,0.0000019583,0.0000019522,0.0000019486, -0.0000019465,0.0000019454,0.0000019453,0.0000019451,0.0000019449, -0.0000019448,0.0000019457,0.0000019478,0.0000019512,0.0000019550, -0.0000019581,0.0000019599,0.0000019599,0.0000019583,0.0000019557, -0.0000019522,0.0000019476,0.0000019416,0.0000019349,0.0000019280, -0.0000019217,0.0000019165,0.0000019117,0.0000019080,0.0000019055, -0.0000019039,0.0000019033,0.0000019035,0.0000019033,0.0000019030, -0.0000019028,0.0000019025,0.0000019018,0.0000019007,0.0000018996, -0.0000018991,0.0000018997,0.0000019020,0.0000019048,0.0000019076, -0.0000019102,0.0000019120,0.0000019133,0.0000019139,0.0000019137, -0.0000019127,0.0000019110,0.0000019093,0.0000019083,0.0000019076, -0.0000019063,0.0000019048,0.0000019033,0.0000019018,0.0000019005, -0.0000018996,0.0000018987,0.0000018974,0.0000018954,0.0000018923, -0.0000018878,0.0000018821,0.0000018762,0.0000018706,0.0000018653, -0.0000018602,0.0000018554,0.0000018512,0.0000018472,0.0000018435, -0.0000018404,0.0000018381,0.0000018367,0.0000018357,0.0000018351, -0.0000018346,0.0000018340,0.0000018333,0.0000018331,0.0000018334, -0.0000018343,0.0000018354,0.0000018365,0.0000018375,0.0000018382, -0.0000018389,0.0000018394,0.0000018395,0.0000018392,0.0000018390, -0.0000018387,0.0000018379,0.0000018366,0.0000018351,0.0000018338, -0.0000018330,0.0000018329,0.0000018332,0.0000018336,0.0000018342, -0.0000018350,0.0000018357,0.0000018360,0.0000018363,0.0000018369, -0.0000018377,0.0000018387,0.0000018401,0.0000018418,0.0000018436, -0.0000018453,0.0000018469,0.0000018486,0.0000018500,0.0000018512, -0.0000018522,0.0000018530,0.0000018539,0.0000018547,0.0000018552, -0.0000018552,0.0000018553,0.0000018557,0.0000018562,0.0000018566, -0.0000018567,0.0000018564,0.0000018561,0.0000018560,0.0000018562, -0.0000018564,0.0000018566,0.0000018567,0.0000018569,0.0000018572, -0.0000018577,0.0000018582,0.0000018586,0.0000018591,0.0000018601, -0.0000018618,0.0000018642,0.0000018672,0.0000018708,0.0000018752, -0.0000018801,0.0000018851,0.0000018898,0.0000018944,0.0000018989, -0.0000019034,0.0000019074,0.0000019105,0.0000019129,0.0000019149, -0.0000019167,0.0000019183,0.0000019193,0.0000019193,0.0000019184, -0.0000019167,0.0000019148,0.0000019137,0.0000019135,0.0000019138, -0.0000019141,0.0000019145,0.0000019152,0.0000019164,0.0000019177, -0.0000019188,0.0000019197,0.0000019211,0.0000019233,0.0000019266, -0.0000019303,0.0000019331,0.0000019338,0.0000019328,0.0000019309, -0.0000019295,0.0000019300,0.0000019317,0.0000019326,0.0000019307, -0.0000019253,0.0000019190,0.0000019165,0.0000019181,0.0000019231, -0.0000019285,0.0000019326,0.0000019358,0.0000019390,0.0000019417, -0.0000019436,0.0000019433,0.0000019402,0.0000019357,0.0000019331, -0.0000019329,0.0000019354,0.0000019403,0.0000019468,0.0000019545, -0.0000019631,0.0000019726,0.0000019835,0.0000019956,0.0000020075, -0.0000020164,0.0000020210,0.0000020222,0.0000020226,0.0000020238, -0.0000020256,0.0000020274,0.0000020287,0.0000020288,0.0000020280, -0.0000020262,0.0000020240,0.0000020227,0.0000020227,0.0000020245, -0.0000020278,0.0000020320,0.0000020368,0.0000020416,0.0000020460, -0.0000020494,0.0000020518,0.0000020532,0.0000020537,0.0000020535, -0.0000020526,0.0000020516,0.0000020500,0.0000020480,0.0000020458, -0.0000020437,0.0000020421,0.0000020406,0.0000020395,0.0000020388, -0.0000020387,0.0000020385,0.0000020385,0.0000020384,0.0000020383, -0.0000020382,0.0000020382,0.0000020386,0.0000020393,0.0000020404, -0.0000020417,0.0000020428,0.0000020435,0.0000020438,0.0000020438, -0.0000020434,0.0000020422,0.0000020398,0.0000020365,0.0000020336, -0.0000020325,0.0000020326,0.0000020342,0.0000020363,0.0000020378, -0.0000020381,0.0000020374,0.0000020357,0.0000020335,0.0000020314, -0.0000020298,0.0000020288,0.0000020284,0.0000020282,0.0000020282, -0.0000020281,0.0000020275,0.0000020267,0.0000020258,0.0000020248, -0.0000020237,0.0000020223,0.0000020204,0.0000020179,0.0000020148, -0.0000020111,0.0000020071,0.0000020028,0.0000019985,0.0000019942, -0.0000019901,0.0000019867,0.0000019839,0.0000019815,0.0000019792, -0.0000019772,0.0000019755,0.0000019740,0.0000019724,0.0000019700, -0.0000019660,0.0000019606,0.0000019543,0.0000019480,0.0000019423, -0.0000019374,0.0000019338,0.0000019310,0.0000019289,0.0000019271, -0.0000019259,0.0000019252,0.0000019236,0.0000019215,0.0000019198, -0.0000019192,0.0000019197,0.0000019203,0.0000019201,0.0000019190, -0.0000019174,0.0000019168,0.0000019174,0.0000019202,0.0000019241, -0.0000019286,0.0000019337,0.0000019391,0.0000019443,0.0000019489, -0.0000019530,0.0000019445,0.0000019484,0.0000019521,0.0000019554, -0.0000019576,0.0000019582,0.0000019575,0.0000019565,0.0000019561, -0.0000019564,0.0000019580,0.0000019611,0.0000019643,0.0000019657, -0.0000019653,0.0000019622,0.0000019592,0.0000019582,0.0000019586, -0.0000019589,0.0000019584,0.0000019574,0.0000019563,0.0000019543, -0.0000019506,0.0000019463,0.0000019428,0.0000019408,0.0000019402, -0.0000019403,0.0000019409,0.0000019417,0.0000019429,0.0000019442, -0.0000019454,0.0000019464,0.0000019473,0.0000019480,0.0000019486, -0.0000019490,0.0000019493,0.0000019492,0.0000019486,0.0000019479, -0.0000019468,0.0000019460,0.0000019458,0.0000019453,0.0000019450, -0.0000019443,0.0000019438,0.0000019441,0.0000019446,0.0000019448, -0.0000019450,0.0000019451,0.0000019451,0.0000019451,0.0000019450, -0.0000019451,0.0000019455,0.0000019462,0.0000019473,0.0000019486, -0.0000019500,0.0000019509,0.0000019518,0.0000019529,0.0000019545, -0.0000019555,0.0000019561,0.0000019565,0.0000019565,0.0000019561, -0.0000019551,0.0000019534,0.0000019510,0.0000019482,0.0000019451, -0.0000019416,0.0000019379,0.0000019347,0.0000019319,0.0000019301, -0.0000019291,0.0000019291,0.0000019295,0.0000019296,0.0000019295, -0.0000019293,0.0000019294,0.0000019300,0.0000019310,0.0000019321, -0.0000019333,0.0000019346,0.0000019361,0.0000019374,0.0000019386, -0.0000019396,0.0000019403,0.0000019407,0.0000019406,0.0000019404, -0.0000019404,0.0000019401,0.0000019395,0.0000019390,0.0000019382, -0.0000019368,0.0000019347,0.0000019319,0.0000019288,0.0000019260, -0.0000019236,0.0000019217,0.0000019200,0.0000019191,0.0000019194, -0.0000019203,0.0000019225,0.0000019255,0.0000019287,0.0000019331, -0.0000019385,0.0000019444,0.0000019502,0.0000019561,0.0000019618, -0.0000019662,0.0000019695,0.0000019727,0.0000019762,0.0000019803, -0.0000019853,0.0000019918,0.0000019989,0.0000020052,0.0000020110, -0.0000020161,0.0000020191,0.0000020207,0.0000020214,0.0000020215, -0.0000020209,0.0000020204,0.0000020203,0.0000020202,0.0000020196, -0.0000020190,0.0000020186,0.0000020181,0.0000020170,0.0000020161, -0.0000020154,0.0000020150,0.0000020153,0.0000020163,0.0000020179, -0.0000020206,0.0000020247,0.0000020294,0.0000020340,0.0000020379, -0.0000020410,0.0000020431,0.0000020447,0.0000020460,0.0000020466, -0.0000020465,0.0000020461,0.0000020451,0.0000020437,0.0000020425, -0.0000020415,0.0000020406,0.0000020401,0.0000020403,0.0000020409, -0.0000020415,0.0000020421,0.0000020432,0.0000020453,0.0000020477, -0.0000020500,0.0000020520,0.0000020536,0.0000020552,0.0000020562, -0.0000020568,0.0000020567,0.0000020562,0.0000020557,0.0000020554, -0.0000020555,0.0000020560,0.0000020565,0.0000020569,0.0000020574, -0.0000020579,0.0000020582,0.0000020587,0.0000020594,0.0000020604, -0.0000020620,0.0000020639,0.0000020661,0.0000020681,0.0000020695, -0.0000020704,0.0000020708,0.0000020709,0.0000020710,0.0000020711, -0.0000020712,0.0000020714,0.0000020720,0.0000020731,0.0000020747, -0.0000020765,0.0000020786,0.0000020811,0.0000020839,0.0000020869, -0.0000020902,0.0000020939,0.0000020983,0.0000021032,0.0000021083, -0.0000021132,0.0000021179,0.0000021223,0.0000021259,0.0000021281, -0.0000021294,0.0000021301,0.0000021305,0.0000021308,0.0000021307, -0.0000021303,0.0000021293,0.0000021276,0.0000021246,0.0000021193, -0.0000021122,0.0000021055,0.0000021007,0.0000020978,0.0000020957, -0.0000020922,0.0000020867,0.0000020821,0.0000020809,0.0000020825, -0.0000020861,0.0000020902,0.0000020952,0.0000021014,0.0000021072, -0.0000021121,0.0000021156,0.0000021168,0.0000021166,0.0000021145, -0.0000021113,0.0000021083,0.0000021046,0.0000020999,0.0000020963, -0.0000020949,0.0000020963,0.0000020998,0.0000021031,0.0000021049, -0.0000021060,0.0000021069,0.0000021083,0.0000021120,0.0000021189, -0.0000021272,0.0000021340,0.0000021378,0.0000021385,0.0000021373, -0.0000021333,0.0000021276,0.0000021216,0.0000021164,0.0000021110, -0.0000021048,0.0000020991,0.0000020941,0.0000020892,0.0000020846, -0.0000020812,0.0000020789,0.0000020782,0.0000020799,0.0000020856, -0.0000020920,0.0000020953,0.0000020956,0.0000020935,0.0000020901, -0.0000020865,0.0000020835,0.0000020813,0.0000020795,0.0000020771, -0.0000020730,0.0000020672,0.0000020610,0.0000020546,0.0000020488, -0.0000020445,0.0000020415,0.0000020390,0.0000020370,0.0000020363, -0.0000020369,0.0000020376,0.0000020376,0.0000020375,0.0000020374, -0.0000020373,0.0000020378,0.0000020392,0.0000020401,0.0000020393, -0.0000020365,0.0000020313,0.0000020245,0.0000020181,0.0000020141, -0.0000020130,0.0000020151,0.0000020205,0.0000020251,0.0000020280, -0.0000020340,0.0000020433,0.0000020495,0.0000020503,0.0000020473, -0.0000020330,0.0000020110,0.0000019976,0.0000019999,0.0000020195, -0.0000020367,0.0000020397,0.0000020391,0.0000020429,0.0000020595, -0.0000020760,0.0000020782,0.0000020756,0.0000020802,0.0000020916, -0.0000020993,0.0000021040,0.0000021139,0.0000021335,0.0000021500, -0.0000021592,0.0000021645,0.0000021684,0.0000021715,0.0000021712, -0.0000021690,0.0000021689,0.0000021700,0.0000021717,0.0000021748, -0.0000021782,0.0000021785,0.0000021772,0.0000021775,0.0000021785, -0.0000021793,0.0000021820,0.0000021878,0.0000021928,0.0000021934, -0.0000021910,0.0000021877,0.0000021845,0.0000021814,0.0000021780, -0.0000021752,0.0000021733,0.0000021716,0.0000021693,0.0000021657, -0.0000021609,0.0000021558,0.0000021515,0.0000021491,0.0000021489, -0.0000021504,0.0000021532,0.0000021554,0.0000021560,0.0000021566, -0.0000021570,0.0000021570,0.0000021562,0.0000021549,0.0000021534, -0.0000021509,0.0000021468,0.0000021427,0.0000021421,0.0000021438, -0.0000021473,0.0000021514,0.0000021547,0.0000021574,0.0000021592, -0.0000021598,0.0000021593,0.0000021571,0.0000021534,0.0000021480, -0.0000021412,0.0000021336,0.0000021252,0.0000021162,0.0000021077, -0.0000020995,0.0000020921,0.0000020859,0.0000020803,0.0000020755, -0.0000020733,0.0000020731,0.0000020748,0.0000020775,0.0000020796, -0.0000020809,0.0000020811,0.0000020802,0.0000020782,0.0000020755, -0.0000020728,0.0000020698,0.0000020670,0.0000020652,0.0000020624, -0.0000020599,0.0000020586,0.0000020583,0.0000020580,0.0000020569, -0.0000020553,0.0000020532,0.0000020512,0.0000020503,0.0000020504, -0.0000020511,0.0000020520,0.0000020532,0.0000020545,0.0000020559, -0.0000020573,0.0000020587,0.0000020605,0.0000020628,0.0000020652, -0.0000020672,0.0000020691,0.0000020711,0.0000020725,0.0000020735, -0.0000020746,0.0000020752,0.0000020752,0.0000020746,0.0000020739, -0.0000020730,0.0000020717,0.0000020701,0.0000020689,0.0000020682, -0.0000020675,0.0000020672,0.0000020672,0.0000020673,0.0000020678, -0.0000020680,0.0000020681,0.0000020686,0.0000020692,0.0000020706, -0.0000020719,0.0000020728,0.0000020728,0.0000020719,0.0000020700, -0.0000020676,0.0000020662,0.0000020658,0.0000020659,0.0000020672, -0.0000020702,0.0000020738,0.0000020769,0.0000020790,0.0000020799, -0.0000020801,0.0000020800,0.0000020802,0.0000020806,0.0000020809, -0.0000020809,0.0000020811,0.0000020808,0.0000020799,0.0000020785, -0.0000020765,0.0000020755,0.0000020754,0.0000020762,0.0000020771, -0.0000020781,0.0000020789,0.0000020792,0.0000020793,0.0000020794, -0.0000020794,0.0000020788,0.0000020778,0.0000020764,0.0000020749, -0.0000020732,0.0000020716,0.0000020702,0.0000020701,0.0000020713, -0.0000020730,0.0000020752,0.0000020780,0.0000020807,0.0000020832, -0.0000020862,0.0000020890,0.0000020913,0.0000020927,0.0000020935, -0.0000020937,0.0000020930,0.0000020912,0.0000020888,0.0000020860, -0.0000020834,0.0000020810,0.0000020790,0.0000020776,0.0000020767, -0.0000020769,0.0000020768,0.0000020774,0.0000020791,0.0000020813, -0.0000020840,0.0000020874,0.0000020912,0.0000020953,0.0000020994, -0.0000021034,0.0000021073,0.0000021109,0.0000021138,0.0000021163, -0.0000021181,0.0000021193,0.0000021202,0.0000021212,0.0000021218, -0.0000021221,0.0000021219,0.0000021212,0.0000021205,0.0000021203, -0.0000021204,0.0000021203,0.0000021198,0.0000021190,0.0000021179, -0.0000021167,0.0000021157,0.0000021147,0.0000021138,0.0000021136, -0.0000021139,0.0000021145,0.0000021148,0.0000021151,0.0000021154, -0.0000021154,0.0000021155,0.0000021157,0.0000021155,0.0000021154, -0.0000021159,0.0000021163,0.0000021168,0.0000021172,0.0000021177, -0.0000021184,0.0000021194,0.0000021212,0.0000021237,0.0000021270, -0.0000021307,0.0000021348,0.0000021393,0.0000021440,0.0000021490, -0.0000021540,0.0000021587,0.0000021631,0.0000021675,0.0000021717, -0.0000021757,0.0000021794,0.0000021831,0.0000021869,0.0000021915, -0.0000021965,0.0000022013,0.0000022062,0.0000022104,0.0000022132, -0.0000022152,0.0000022163,0.0000022168,0.0000022168,0.0000022166, -0.0000022167,0.0000022165,0.0000022162,0.0000022156,0.0000022149, -0.0000022143,0.0000022138,0.0000022131,0.0000022120,0.0000022105, -0.0000022087,0.0000022067,0.0000022047,0.0000022027,0.0000022005, -0.0000021982,0.0000021957,0.0000021931,0.0000021902,0.0000021872, -0.0000021840,0.0000021809,0.0000021776,0.0000021741,0.0000021709, -0.0000021681,0.0000021661,0.0000021657,0.0000021664,0.0000021679, -0.0000021699,0.0000021721,0.0000021740,0.0000021754,0.0000021765, -0.0000021776,0.0000021783,0.0000021782,0.0000021775,0.0000021759, -0.0000021739,0.0000021717,0.0000021695,0.0000021670,0.0000021644, -0.0000021617,0.0000021589,0.0000021560,0.0000021532,0.0000021509, -0.0000021494,0.0000021488,0.0000021487,0.0000021487,0.0000021485, -0.0000021480,0.0000021470,0.0000021454,0.0000021429,0.0000021396, -0.0000021360,0.0000021327,0.0000021305,0.0000021296,0.0000021292, -0.0000021291,0.0000021294,0.0000021301,0.0000021311,0.0000021319, -0.0000021326,0.0000021332,0.0000021333,0.0000021326,0.0000021311, -0.0000021293,0.0000021278,0.0000021271,0.0000021267,0.0000021261, -0.0000021250,0.0000021236,0.0000021221,0.0000021204,0.0000021186, -0.0000021168,0.0000021152,0.0000021136,0.0000021102,0.0000021090, -0.0000021058,0.0000021033,0.0000021005,0.0000020973,0.0000020943, -0.0000020916,0.0000020894,0.0000020876,0.0000020858,0.0000020835, -0.0000020807,0.0000020769,0.0000020723,0.0000020678,0.0000020640, -0.0000020606,0.0000020574,0.0000020540,0.0000020503,0.0000020471, -0.0000020448,0.0000020431,0.0000020418,0.0000020406,0.0000020396, -0.0000020385,0.0000020373,0.0000020363,0.0000020361,0.0000020364, -0.0000020368,0.0000020373,0.0000020379,0.0000020386,0.0000020388, -0.0000020382,0.0000020368,0.0000020344,0.0000020315,0.0000020285, -0.0000020257,0.0000020238,0.0000020234,0.0000020240,0.0000020251, -0.0000020262,0.0000020275,0.0000020288,0.0000020294,0.0000020295, -0.0000020289,0.0000020272,0.0000020245,0.0000020209,0.0000020172, -0.0000020142,0.0000020118,0.0000020103,0.0000020093,0.0000020081, -0.0000020061,0.0000020036,0.0000020012,0.0000019995,0.0000019984, -0.0000019977,0.0000019964,0.0000019959,0.0000019950,0.0000019957, -0.0000019976,0.0000020003,0.0000020028,0.0000020048,0.0000020045, -0.0000020007,0.0000019929,0.0000019819,0.0000019700,0.0000019592, -0.0000019528,0.0000019503,0.0000019493,0.0000019494,0.0000019479, -0.0000019429,0.0000019360,0.0000019305,0.0000019282,0.0000019289, -0.0000019325,0.0000019377,0.0000019432,0.0000019491,0.0000019546, -0.0000019583,0.0000019595,0.0000019584,0.0000019560,0.0000019533, -0.0000019514,0.0000019504,0.0000019487,0.0000019469,0.0000019467, -0.0000019508,0.0000019577,0.0000019626,0.0000019635,0.0000019629, -0.0000019630,0.0000019659,0.0000019715,0.0000019774,0.0000019815, -0.0000019831,0.0000019838,0.0000019859,0.0000019898,0.0000019938, -0.0000019964,0.0000019974,0.0000019977,0.0000019977,0.0000019972, -0.0000019963,0.0000019955,0.0000019954,0.0000019959,0.0000019962, -0.0000019964,0.0000019971,0.0000019982,0.0000019996,0.0000020007, -0.0000020019,0.0000020031,0.0000020046,0.0000020063,0.0000020081, -0.0000020099,0.0000020121,0.0000020145,0.0000020170,0.0000020192, -0.0000020212,0.0000020230,0.0000020245,0.0000020260,0.0000020271, -0.0000020278,0.0000020279,0.0000020277,0.0000020277,0.0000020280, -0.0000020282,0.0000020283,0.0000020287,0.0000020294,0.0000020310, -0.0000020333,0.0000020360,0.0000020387,0.0000020409,0.0000020430, -0.0000020452,0.0000020476,0.0000020497,0.0000020511,0.0000020519, -0.0000020530,0.0000020544,0.0000020556,0.0000020564,0.0000020571, -0.0000020578,0.0000020587,0.0000020600,0.0000020614,0.0000020625, -0.0000020631,0.0000020632,0.0000020633,0.0000020640,0.0000020650, -0.0000020661,0.0000020671,0.0000020679,0.0000020691,0.0000020707, -0.0000020729,0.0000020752,0.0000020762,0.0000020756,0.0000020758, -0.0000020815,0.0000020923,0.0000021016,0.0000021058,0.0000021074, -0.0000021095,0.0000021121,0.0000021145,0.0000021145,0.0000021132, -0.0000021130,0.0000021119,0.0000021080,0.0000021034,0.0000020984, -0.0000020927,0.0000020868,0.0000020837,0.0000020828,0.0000020796, -0.0000020763,0.0000020762,0.0000020782,0.0000020800,0.0000020813, -0.0000020826,0.0000020837,0.0000020842,0.0000020838,0.0000020826, -0.0000020805,0.0000020774,0.0000020733,0.0000020685,0.0000020637, -0.0000020594,0.0000020563,0.0000020534,0.0000020501,0.0000020463, -0.0000020428,0.0000020402,0.0000020383,0.0000020370,0.0000020359, -0.0000020347,0.0000020333,0.0000020319,0.0000020305,0.0000020293, -0.0000020280,0.0000020267,0.0000020255,0.0000020248,0.0000020246, -0.0000020246,0.0000020247,0.0000020249,0.0000020248,0.0000020248, -0.0000020248,0.0000020251,0.0000020256,0.0000020262,0.0000020267, -0.0000020274,0.0000020283,0.0000020292,0.0000020300,0.0000020304, -0.0000020306,0.0000020306,0.0000020308,0.0000020312,0.0000020318, -0.0000020328,0.0000020341,0.0000020358,0.0000020379,0.0000020400, -0.0000020418,0.0000020432,0.0000020445,0.0000020457,0.0000020467, -0.0000020475,0.0000020478,0.0000020479,0.0000020475,0.0000020470, -0.0000020465,0.0000020461,0.0000020461,0.0000020459,0.0000020456, -0.0000020442,0.0000020430,0.0000020406,0.0000020377,0.0000020341, -0.0000020298,0.0000020251,0.0000020201,0.0000020152,0.0000020102, -0.0000020054,0.0000020010,0.0000019972,0.0000019961,0.0000019949, -0.0000019953,0.0000019976,0.0000020017,0.0000020078,0.0000020151, -0.0000020224,0.0000020287,0.0000020329,0.0000020354,0.0000020366, -0.0000020374,0.0000020381,0.0000020395,0.0000020418,0.0000020445, -0.0000020469,0.0000020481,0.0000020479,0.0000020464,0.0000020445, -0.0000020412,0.0000020371,0.0000020321,0.0000020273,0.0000020235, -0.0000020211,0.0000020198,0.0000020193,0.0000020194,0.0000020196, -0.0000020195,0.0000020191,0.0000020180,0.0000020161,0.0000020129, -0.0000020090,0.0000020054,0.0000020020,0.0000019984,0.0000019947, -0.0000019909,0.0000019865,0.0000019819,0.0000019769,0.0000019717, -0.0000019672,0.0000019643,0.0000019637,0.0000019647,0.0000019671, -0.0000019704,0.0000019733,0.0000019756,0.0000019762,0.0000019745, -0.0000019699,0.0000019640,0.0000019592,0.0000019566,0.0000019558, -0.0000019562,0.0000019571,0.0000019585,0.0000019600,0.0000019607, -0.0000019586,0.0000019543,0.0000019496,0.0000019461,0.0000019442, -0.0000019438,0.0000019450,0.0000019464,0.0000019469,0.0000019470, -0.0000019479,0.0000019501,0.0000019527,0.0000019556,0.0000019592, -0.0000019626,0.0000019654,0.0000019687,0.0000019726,0.0000019762, -0.0000019781,0.0000019779,0.0000019754,0.0000019718,0.0000019688, -0.0000019669,0.0000019659,0.0000019649,0.0000019637,0.0000019623, -0.0000019600,0.0000019560,0.0000019519,0.0000019494,0.0000019475, -0.0000019440,0.0000019381,0.0000019308,0.0000019246,0.0000019219, -0.0000019210,0.0000019248,0.0000019323,0.0000019428,0.0000019545, -0.0000019652,0.0000019731,0.0000019776,0.0000019790,0.0000019787, -0.0000019780,0.0000019785,0.0000019809,0.0000019857,0.0000019922, -0.0000019997,0.0000020072,0.0000020139,0.0000020193,0.0000020234, -0.0000020263,0.0000020290,0.0000020314,0.0000020332,0.0000020340, -0.0000020342,0.0000020338,0.0000020331,0.0000020320,0.0000020308, -0.0000020297,0.0000020287,0.0000020281,0.0000020279,0.0000020276, -0.0000020265,0.0000020244,0.0000020214,0.0000020178,0.0000020140, -0.0000020101,0.0000020060,0.0000020007,0.0000019938,0.0000019850, -0.0000019755,0.0000019661,0.0000019580,0.0000019518,0.0000019470, -0.0000019441,0.0000019427,0.0000019426,0.0000019431,0.0000019432, -0.0000019422,0.0000019407,0.0000019400,0.0000019404,0.0000019418, -0.0000019438,0.0000019457,0.0000019466,0.0000019459,0.0000019440, -0.0000019411,0.0000019369,0.0000019319,0.0000019264,0.0000019206, -0.0000019155,0.0000019114,0.0000019072,0.0000019030,0.0000018999, -0.0000018970,0.0000018946,0.0000018935,0.0000018930,0.0000018927, -0.0000018922,0.0000018916,0.0000018904,0.0000018885,0.0000018865, -0.0000018853,0.0000018856,0.0000018874,0.0000018897,0.0000018929, -0.0000018965,0.0000019001,0.0000019037,0.0000019063,0.0000019075, -0.0000019072,0.0000019057,0.0000019036,0.0000019017,0.0000019004, -0.0000018993,0.0000018983,0.0000018975,0.0000018967,0.0000018957, -0.0000018950,0.0000018942,0.0000018929,0.0000018904,0.0000018866, -0.0000018814,0.0000018753,0.0000018689,0.0000018629,0.0000018573, -0.0000018519,0.0000018468,0.0000018426,0.0000018389,0.0000018359, -0.0000018337,0.0000018323,0.0000018314,0.0000018305,0.0000018296, -0.0000018287,0.0000018278,0.0000018268,0.0000018265,0.0000018269, -0.0000018285,0.0000018305,0.0000018324,0.0000018341,0.0000018353, -0.0000018363,0.0000018370,0.0000018373,0.0000018371,0.0000018368, -0.0000018365,0.0000018358,0.0000018345,0.0000018329,0.0000018315, -0.0000018303,0.0000018300,0.0000018300,0.0000018301,0.0000018304, -0.0000018311,0.0000018322,0.0000018331,0.0000018341,0.0000018353, -0.0000018364,0.0000018376,0.0000018390,0.0000018406,0.0000018422, -0.0000018436,0.0000018449,0.0000018463,0.0000018474,0.0000018482, -0.0000018486,0.0000018489,0.0000018492,0.0000018497,0.0000018501, -0.0000018502,0.0000018502,0.0000018504,0.0000018507,0.0000018514, -0.0000018522,0.0000018528,0.0000018531,0.0000018533,0.0000018534, -0.0000018536,0.0000018536,0.0000018534,0.0000018532,0.0000018534, -0.0000018539,0.0000018547,0.0000018555,0.0000018562,0.0000018566, -0.0000018569,0.0000018574,0.0000018582,0.0000018597,0.0000018619, -0.0000018649,0.0000018684,0.0000018723,0.0000018765,0.0000018813, -0.0000018868,0.0000018931,0.0000018993,0.0000019046,0.0000019089, -0.0000019122,0.0000019150,0.0000019172,0.0000019186,0.0000019187, -0.0000019176,0.0000019156,0.0000019133,0.0000019113,0.0000019099, -0.0000019091,0.0000019087,0.0000019086,0.0000019089,0.0000019102, -0.0000019124,0.0000019145,0.0000019166,0.0000019187,0.0000019210, -0.0000019238,0.0000019272,0.0000019299,0.0000019308,0.0000019299, -0.0000019280,0.0000019265,0.0000019270,0.0000019288,0.0000019291, -0.0000019275,0.0000019230,0.0000019181,0.0000019161,0.0000019182, -0.0000019228,0.0000019277,0.0000019316,0.0000019349,0.0000019382, -0.0000019408,0.0000019422,0.0000019417,0.0000019387,0.0000019342, -0.0000019313,0.0000019299,0.0000019318,0.0000019360,0.0000019420, -0.0000019493,0.0000019572,0.0000019662,0.0000019769,0.0000019890, -0.0000020013,0.0000020120,0.0000020192,0.0000020223,0.0000020230, -0.0000020234,0.0000020243,0.0000020256,0.0000020265,0.0000020266, -0.0000020255,0.0000020238,0.0000020220,0.0000020211,0.0000020211, -0.0000020225,0.0000020248,0.0000020282,0.0000020322,0.0000020364, -0.0000020404,0.0000020440,0.0000020466,0.0000020483,0.0000020492, -0.0000020493,0.0000020492,0.0000020488,0.0000020479,0.0000020470, -0.0000020459,0.0000020451,0.0000020442,0.0000020431,0.0000020422, -0.0000020413,0.0000020406,0.0000020401,0.0000020398,0.0000020397, -0.0000020398,0.0000020401,0.0000020406,0.0000020413,0.0000020422, -0.0000020432,0.0000020440,0.0000020445,0.0000020447,0.0000020445, -0.0000020437,0.0000020419,0.0000020392,0.0000020363,0.0000020344, -0.0000020340,0.0000020348,0.0000020363,0.0000020378,0.0000020383, -0.0000020379,0.0000020365,0.0000020344,0.0000020324,0.0000020307, -0.0000020295,0.0000020287,0.0000020284,0.0000020285,0.0000020290, -0.0000020292,0.0000020291,0.0000020289,0.0000020284,0.0000020274, -0.0000020262,0.0000020248,0.0000020228,0.0000020203,0.0000020171, -0.0000020133,0.0000020091,0.0000020043,0.0000019994,0.0000019945, -0.0000019900,0.0000019863,0.0000019833,0.0000019806,0.0000019780, -0.0000019755,0.0000019737,0.0000019723,0.0000019710,0.0000019696, -0.0000019673,0.0000019643,0.0000019596,0.0000019537,0.0000019476, -0.0000019420,0.0000019380,0.0000019349,0.0000019321,0.0000019289, -0.0000019266,0.0000019251,0.0000019236,0.0000019216,0.0000019193, -0.0000019177,0.0000019176,0.0000019185,0.0000019196,0.0000019199, -0.0000019191,0.0000019172,0.0000019158,0.0000019158,0.0000019179, -0.0000019218,0.0000019262,0.0000019306,0.0000019352,0.0000019400, -0.0000019317,0.0000019356,0.0000019397,0.0000019442,0.0000019484, -0.0000019517,0.0000019542,0.0000019554,0.0000019556,0.0000019554, -0.0000019555,0.0000019567,0.0000019590,0.0000019619,0.0000019649, -0.0000019664,0.0000019654,0.0000019621,0.0000019586,0.0000019572, -0.0000019573,0.0000019572,0.0000019562,0.0000019547,0.0000019532, -0.0000019513,0.0000019489,0.0000019460,0.0000019437,0.0000019427, -0.0000019427,0.0000019438,0.0000019456,0.0000019479,0.0000019498, -0.0000019510,0.0000019515,0.0000019512,0.0000019506,0.0000019497, -0.0000019488,0.0000019480,0.0000019472,0.0000019466,0.0000019458, -0.0000019454,0.0000019455,0.0000019454,0.0000019456,0.0000019457, -0.0000019458,0.0000019467,0.0000019473,0.0000019479,0.0000019486, -0.0000019492,0.0000019495,0.0000019493,0.0000019489,0.0000019482, -0.0000019478,0.0000019476,0.0000019478,0.0000019483,0.0000019486, -0.0000019490,0.0000019497,0.0000019507,0.0000019521,0.0000019531, -0.0000019540,0.0000019546,0.0000019548,0.0000019544,0.0000019537, -0.0000019522,0.0000019500,0.0000019474,0.0000019441,0.0000019404, -0.0000019365,0.0000019333,0.0000019305,0.0000019285,0.0000019276, -0.0000019283,0.0000019289,0.0000019292,0.0000019292,0.0000019293, -0.0000019296,0.0000019304,0.0000019314,0.0000019324,0.0000019335, -0.0000019345,0.0000019353,0.0000019362,0.0000019368,0.0000019374, -0.0000019379,0.0000019380,0.0000019376,0.0000019371,0.0000019365, -0.0000019351,0.0000019336,0.0000019328,0.0000019320,0.0000019310, -0.0000019298,0.0000019281,0.0000019259,0.0000019234,0.0000019209, -0.0000019185,0.0000019163,0.0000019149,0.0000019141,0.0000019142, -0.0000019161,0.0000019191,0.0000019228,0.0000019279,0.0000019336, -0.0000019391,0.0000019446,0.0000019506,0.0000019568,0.0000019623, -0.0000019674,0.0000019718,0.0000019749,0.0000019767,0.0000019786, -0.0000019823,0.0000019877,0.0000019934,0.0000019997,0.0000020056, -0.0000020097,0.0000020124,0.0000020142,0.0000020152,0.0000020154, -0.0000020155,0.0000020155,0.0000020153,0.0000020148,0.0000020145, -0.0000020146,0.0000020146,0.0000020141,0.0000020138,0.0000020133, -0.0000020130,0.0000020131,0.0000020138,0.0000020151,0.0000020174, -0.0000020209,0.0000020251,0.0000020295,0.0000020333,0.0000020364, -0.0000020387,0.0000020406,0.0000020421,0.0000020430,0.0000020434, -0.0000020434,0.0000020428,0.0000020416,0.0000020404,0.0000020395, -0.0000020385,0.0000020377,0.0000020376,0.0000020385,0.0000020396, -0.0000020408,0.0000020421,0.0000020441,0.0000020465,0.0000020489, -0.0000020512,0.0000020533,0.0000020553,0.0000020568,0.0000020580, -0.0000020583,0.0000020581,0.0000020575,0.0000020569,0.0000020570, -0.0000020572,0.0000020573,0.0000020574,0.0000020579,0.0000020583, -0.0000020583,0.0000020584,0.0000020587,0.0000020593,0.0000020605, -0.0000020622,0.0000020642,0.0000020663,0.0000020682,0.0000020696, -0.0000020704,0.0000020708,0.0000020710,0.0000020711,0.0000020711, -0.0000020711,0.0000020714,0.0000020720,0.0000020728,0.0000020739, -0.0000020753,0.0000020771,0.0000020791,0.0000020817,0.0000020848, -0.0000020881,0.0000020922,0.0000020969,0.0000021017,0.0000021065, -0.0000021113,0.0000021161,0.0000021206,0.0000021243,0.0000021270, -0.0000021286,0.0000021293,0.0000021295,0.0000021295,0.0000021289, -0.0000021278,0.0000021260,0.0000021231,0.0000021181,0.0000021109, -0.0000021037,0.0000020984,0.0000020951,0.0000020926,0.0000020884, -0.0000020824,0.0000020784,0.0000020783,0.0000020810,0.0000020849, -0.0000020895,0.0000020953,0.0000021016,0.0000021071,0.0000021115, -0.0000021138,0.0000021143,0.0000021137,0.0000021109,0.0000021071, -0.0000021037,0.0000021002,0.0000020963,0.0000020937,0.0000020933, -0.0000020957,0.0000020995,0.0000021025,0.0000021038,0.0000021047, -0.0000021060,0.0000021082,0.0000021121,0.0000021174,0.0000021234, -0.0000021283,0.0000021308,0.0000021311,0.0000021289,0.0000021251, -0.0000021207,0.0000021159,0.0000021108,0.0000021054,0.0000021007, -0.0000020970,0.0000020922,0.0000020867,0.0000020825,0.0000020796, -0.0000020775,0.0000020772,0.0000020811,0.0000020876,0.0000020925, -0.0000020943,0.0000020940,0.0000020920,0.0000020891,0.0000020860, -0.0000020835,0.0000020817,0.0000020800,0.0000020770,0.0000020722, -0.0000020659,0.0000020589,0.0000020520,0.0000020464,0.0000020427, -0.0000020405,0.0000020390,0.0000020378,0.0000020374,0.0000020380, -0.0000020386,0.0000020385,0.0000020376,0.0000020369,0.0000020363, -0.0000020363,0.0000020372,0.0000020380,0.0000020373,0.0000020346, -0.0000020291,0.0000020215,0.0000020145,0.0000020112,0.0000020104, -0.0000020126,0.0000020188,0.0000020247,0.0000020286,0.0000020354, -0.0000020444,0.0000020496,0.0000020500,0.0000020437,0.0000020239, -0.0000020035,0.0000019975,0.0000020078,0.0000020297,0.0000020400, -0.0000020400,0.0000020405,0.0000020505,0.0000020688,0.0000020777, -0.0000020763,0.0000020780,0.0000020882,0.0000020972,0.0000021012, -0.0000021076,0.0000021238,0.0000021441,0.0000021565,0.0000021635, -0.0000021679,0.0000021715,0.0000021733,0.0000021716,0.0000021695, -0.0000021698,0.0000021712,0.0000021725,0.0000021747,0.0000021770, -0.0000021774,0.0000021774,0.0000021782,0.0000021789,0.0000021795, -0.0000021818,0.0000021868,0.0000021912,0.0000021916,0.0000021891, -0.0000021858,0.0000021823,0.0000021786,0.0000021753,0.0000021729, -0.0000021711,0.0000021695,0.0000021675,0.0000021646,0.0000021607, -0.0000021565,0.0000021532,0.0000021519,0.0000021530,0.0000021554, -0.0000021572,0.0000021575,0.0000021578,0.0000021583,0.0000021583, -0.0000021575,0.0000021560,0.0000021539,0.0000021504,0.0000021453, -0.0000021390,0.0000021356,0.0000021357,0.0000021380,0.0000021421, -0.0000021461,0.0000021494,0.0000021517,0.0000021532,0.0000021536, -0.0000021526,0.0000021497,0.0000021454,0.0000021399,0.0000021333, -0.0000021259,0.0000021182,0.0000021099,0.0000021013,0.0000020934, -0.0000020868,0.0000020810,0.0000020757,0.0000020724,0.0000020720, -0.0000020735,0.0000020760,0.0000020784,0.0000020801,0.0000020804, -0.0000020798,0.0000020784,0.0000020767,0.0000020748,0.0000020730, -0.0000020716,0.0000020701,0.0000020678,0.0000020655,0.0000020648, -0.0000020644,0.0000020637,0.0000020628,0.0000020614,0.0000020590, -0.0000020567,0.0000020551,0.0000020541,0.0000020538,0.0000020541, -0.0000020544,0.0000020551,0.0000020559,0.0000020569,0.0000020577, -0.0000020587,0.0000020596,0.0000020603,0.0000020608,0.0000020612, -0.0000020615,0.0000020621,0.0000020631,0.0000020640,0.0000020648, -0.0000020653,0.0000020659,0.0000020656,0.0000020651,0.0000020642, -0.0000020628,0.0000020620,0.0000020622,0.0000020622,0.0000020621, -0.0000020622,0.0000020630,0.0000020639,0.0000020645,0.0000020651, -0.0000020652,0.0000020663,0.0000020677,0.0000020688,0.0000020693, -0.0000020690,0.0000020680,0.0000020672,0.0000020663,0.0000020665, -0.0000020669,0.0000020682,0.0000020709,0.0000020745,0.0000020777, -0.0000020801,0.0000020812,0.0000020812,0.0000020805,0.0000020808, -0.0000020823,0.0000020836,0.0000020845,0.0000020849,0.0000020855, -0.0000020859,0.0000020857,0.0000020849,0.0000020836,0.0000020830, -0.0000020832,0.0000020838,0.0000020845,0.0000020851,0.0000020854, -0.0000020853,0.0000020848,0.0000020843,0.0000020837,0.0000020829, -0.0000020817,0.0000020803,0.0000020790,0.0000020777,0.0000020764, -0.0000020757,0.0000020760,0.0000020771,0.0000020786,0.0000020801, -0.0000020821,0.0000020847,0.0000020871,0.0000020896,0.0000020920, -0.0000020938,0.0000020950,0.0000020961,0.0000020964,0.0000020957, -0.0000020940,0.0000020917,0.0000020890,0.0000020865,0.0000020844, -0.0000020826,0.0000020810,0.0000020804,0.0000020801,0.0000020797, -0.0000020797,0.0000020800,0.0000020810,0.0000020825,0.0000020835, -0.0000020850,0.0000020869,0.0000020892,0.0000020918,0.0000020948, -0.0000020984,0.0000021024,0.0000021062,0.0000021096,0.0000021122, -0.0000021139,0.0000021149,0.0000021155,0.0000021159,0.0000021158, -0.0000021154,0.0000021155,0.0000021157,0.0000021156,0.0000021154, -0.0000021149,0.0000021142,0.0000021133,0.0000021122,0.0000021111, -0.0000021100,0.0000021091,0.0000021088,0.0000021092,0.0000021101, -0.0000021111,0.0000021125,0.0000021137,0.0000021149,0.0000021163, -0.0000021173,0.0000021185,0.0000021190,0.0000021190,0.0000021187, -0.0000021180,0.0000021170,0.0000021165,0.0000021157,0.0000021154, -0.0000021160,0.0000021177,0.0000021200,0.0000021225,0.0000021253, -0.0000021286,0.0000021322,0.0000021360,0.0000021402,0.0000021446, -0.0000021491,0.0000021538,0.0000021586,0.0000021631,0.0000021672, -0.0000021711,0.0000021756,0.0000021802,0.0000021846,0.0000021890, -0.0000021935,0.0000021977,0.0000022010,0.0000022034,0.0000022054, -0.0000022074,0.0000022093,0.0000022113,0.0000022130,0.0000022145, -0.0000022158,0.0000022161,0.0000022161,0.0000022160,0.0000022159, -0.0000022155,0.0000022144,0.0000022130,0.0000022110,0.0000022089, -0.0000022067,0.0000022045,0.0000022023,0.0000021999,0.0000021975, -0.0000021950,0.0000021925,0.0000021898,0.0000021869,0.0000021837, -0.0000021803,0.0000021770,0.0000021739,0.0000021710,0.0000021689, -0.0000021678,0.0000021678,0.0000021688,0.0000021700,0.0000021717, -0.0000021729,0.0000021734,0.0000021736,0.0000021736,0.0000021734, -0.0000021729,0.0000021717,0.0000021698,0.0000021676,0.0000021654, -0.0000021631,0.0000021608,0.0000021586,0.0000021564,0.0000021537, -0.0000021507,0.0000021479,0.0000021457,0.0000021446,0.0000021443, -0.0000021444,0.0000021445,0.0000021445,0.0000021442,0.0000021435, -0.0000021422,0.0000021400,0.0000021368,0.0000021331,0.0000021298, -0.0000021272,0.0000021256,0.0000021245,0.0000021240,0.0000021244, -0.0000021251,0.0000021256,0.0000021257,0.0000021259,0.0000021260, -0.0000021257,0.0000021247,0.0000021233,0.0000021220,0.0000021209, -0.0000021205,0.0000021200,0.0000021191,0.0000021178,0.0000021162, -0.0000021140,0.0000021116,0.0000021094,0.0000021076,0.0000021063, -0.0000021052,0.0000021044,0.0000021036,0.0000021033,0.0000021030, -0.0000021009,0.0000021005,0.0000020981,0.0000020949,0.0000020916, -0.0000020888,0.0000020863,0.0000020842,0.0000020821,0.0000020794, -0.0000020761,0.0000020726,0.0000020694,0.0000020663,0.0000020630, -0.0000020595,0.0000020558,0.0000020523,0.0000020495,0.0000020472, -0.0000020451,0.0000020434,0.0000020418,0.0000020400,0.0000020384, -0.0000020375,0.0000020373,0.0000020374,0.0000020377,0.0000020385, -0.0000020397,0.0000020408,0.0000020410,0.0000020409,0.0000020406, -0.0000020388,0.0000020367,0.0000020347,0.0000020329,0.0000020319, -0.0000020317,0.0000020321,0.0000020329,0.0000020339,0.0000020349, -0.0000020356,0.0000020364,0.0000020369,0.0000020360,0.0000020337, -0.0000020304,0.0000020262,0.0000020217,0.0000020175,0.0000020139, -0.0000020116,0.0000020100,0.0000020081,0.0000020055,0.0000020027, -0.0000020005,0.0000019991,0.0000019985,0.0000019980,0.0000019971, -0.0000019959,0.0000019945,0.0000019942,0.0000019933,0.0000019936, -0.0000019953,0.0000019974,0.0000019990,0.0000019984,0.0000019940, -0.0000019864,0.0000019755,0.0000019639,0.0000019538,0.0000019469, -0.0000019457,0.0000019449,0.0000019440,0.0000019409,0.0000019355, -0.0000019302,0.0000019275,0.0000019280,0.0000019310,0.0000019360, -0.0000019422,0.0000019483,0.0000019533,0.0000019564,0.0000019576, -0.0000019569,0.0000019555,0.0000019538,0.0000019517,0.0000019486, -0.0000019452,0.0000019443,0.0000019474,0.0000019539,0.0000019590, -0.0000019604,0.0000019600,0.0000019604,0.0000019631,0.0000019682, -0.0000019746,0.0000019800,0.0000019828,0.0000019838,0.0000019858, -0.0000019902,0.0000019947,0.0000019974,0.0000019980,0.0000019978, -0.0000019974,0.0000019966,0.0000019956,0.0000019945,0.0000019938, -0.0000019934,0.0000019928,0.0000019922,0.0000019924,0.0000019935, -0.0000019950,0.0000019964,0.0000019976,0.0000019989,0.0000020005, -0.0000020021,0.0000020037,0.0000020055,0.0000020076,0.0000020102, -0.0000020129,0.0000020156,0.0000020180,0.0000020200,0.0000020218, -0.0000020237,0.0000020255,0.0000020272,0.0000020282,0.0000020291, -0.0000020300,0.0000020310,0.0000020317,0.0000020321,0.0000020324, -0.0000020328,0.0000020337,0.0000020356,0.0000020380,0.0000020403, -0.0000020425,0.0000020450,0.0000020479,0.0000020509,0.0000020538, -0.0000020558,0.0000020571,0.0000020585,0.0000020597,0.0000020602, -0.0000020604,0.0000020606,0.0000020608,0.0000020611,0.0000020615, -0.0000020617,0.0000020618,0.0000020615,0.0000020609,0.0000020605, -0.0000020608,0.0000020618,0.0000020632,0.0000020647,0.0000020663, -0.0000020684,0.0000020711,0.0000020740,0.0000020755,0.0000020753, -0.0000020752,0.0000020794,0.0000020892,0.0000020995,0.0000021051, -0.0000021069,0.0000021084,0.0000021108,0.0000021137,0.0000021154, -0.0000021145,0.0000021135,0.0000021131,0.0000021106,0.0000021068, -0.0000021023,0.0000020967,0.0000020911,0.0000020861,0.0000020835, -0.0000020828,0.0000020801,0.0000020766,0.0000020759,0.0000020774, -0.0000020794,0.0000020807,0.0000020818,0.0000020824,0.0000020825, -0.0000020819,0.0000020803,0.0000020777,0.0000020741,0.0000020694, -0.0000020642,0.0000020589,0.0000020544,0.0000020508,0.0000020475, -0.0000020441,0.0000020404,0.0000020372,0.0000020349,0.0000020333, -0.0000020320,0.0000020310,0.0000020300,0.0000020289,0.0000020276, -0.0000020263,0.0000020250,0.0000020238,0.0000020229,0.0000020223, -0.0000020221,0.0000020220,0.0000020220,0.0000020222,0.0000020224, -0.0000020227,0.0000020230,0.0000020235,0.0000020243,0.0000020250, -0.0000020257,0.0000020266,0.0000020277,0.0000020288,0.0000020298, -0.0000020305,0.0000020311,0.0000020312,0.0000020314,0.0000020319, -0.0000020328,0.0000020335,0.0000020341,0.0000020350,0.0000020363, -0.0000020376,0.0000020390,0.0000020402,0.0000020410,0.0000020417, -0.0000020424,0.0000020429,0.0000020433,0.0000020435,0.0000020435, -0.0000020430,0.0000020423,0.0000020416,0.0000020413,0.0000020413, -0.0000020412,0.0000020410,0.0000020408,0.0000020402,0.0000020395, -0.0000020379,0.0000020359,0.0000020334,0.0000020298,0.0000020253, -0.0000020207,0.0000020158,0.0000020106,0.0000020054,0.0000020007, -0.0000019973,0.0000019945,0.0000019942,0.0000019945,0.0000019963, -0.0000020002,0.0000020062,0.0000020136,0.0000020210,0.0000020270, -0.0000020312,0.0000020337,0.0000020346,0.0000020346,0.0000020346, -0.0000020351,0.0000020367,0.0000020386,0.0000020406,0.0000020421, -0.0000020427,0.0000020418,0.0000020397,0.0000020359,0.0000020316, -0.0000020267,0.0000020228,0.0000020199,0.0000020177,0.0000020161, -0.0000020148,0.0000020137,0.0000020123,0.0000020109,0.0000020096, -0.0000020074,0.0000020042,0.0000020006,0.0000019977,0.0000019954, -0.0000019934,0.0000019913,0.0000019888,0.0000019860,0.0000019826, -0.0000019787,0.0000019744,0.0000019702,0.0000019674,0.0000019666, -0.0000019675,0.0000019695,0.0000019722,0.0000019753,0.0000019774, -0.0000019789,0.0000019781,0.0000019742,0.0000019681,0.0000019623, -0.0000019583,0.0000019566,0.0000019569,0.0000019578,0.0000019593, -0.0000019611,0.0000019619,0.0000019601,0.0000019555,0.0000019498, -0.0000019451,0.0000019424,0.0000019414,0.0000019426,0.0000019442, -0.0000019450,0.0000019450,0.0000019455,0.0000019469,0.0000019489, -0.0000019511,0.0000019538,0.0000019567,0.0000019596,0.0000019629, -0.0000019667,0.0000019704,0.0000019725,0.0000019726,0.0000019704, -0.0000019674,0.0000019646,0.0000019628,0.0000019612,0.0000019592, -0.0000019576,0.0000019564,0.0000019545,0.0000019508,0.0000019468, -0.0000019447,0.0000019440,0.0000019422,0.0000019379,0.0000019308, -0.0000019242,0.0000019202,0.0000019192,0.0000019199,0.0000019245, -0.0000019332,0.0000019445,0.0000019563,0.0000019664,0.0000019732, -0.0000019766,0.0000019773,0.0000019765,0.0000019759,0.0000019766, -0.0000019792,0.0000019834,0.0000019890,0.0000019952,0.0000020013, -0.0000020067,0.0000020111,0.0000020150,0.0000020190,0.0000020224, -0.0000020249,0.0000020265,0.0000020271,0.0000020271,0.0000020264, -0.0000020254,0.0000020242,0.0000020229,0.0000020219,0.0000020212, -0.0000020207,0.0000020197,0.0000020179,0.0000020153,0.0000020121, -0.0000020090,0.0000020062,0.0000020029,0.0000019982,0.0000019916, -0.0000019833,0.0000019742,0.0000019654,0.0000019577,0.0000019512, -0.0000019459,0.0000019426,0.0000019408,0.0000019402,0.0000019408, -0.0000019416,0.0000019412,0.0000019394,0.0000019371,0.0000019353, -0.0000019340,0.0000019343,0.0000019351,0.0000019356,0.0000019354, -0.0000019341,0.0000019317,0.0000019287,0.0000019249,0.0000019208, -0.0000019165,0.0000019126,0.0000019089,0.0000019045,0.0000018995, -0.0000018952,0.0000018906,0.0000018865,0.0000018841,0.0000018833, -0.0000018828,0.0000018819,0.0000018809,0.0000018796,0.0000018777, -0.0000018755,0.0000018744,0.0000018747,0.0000018757,0.0000018771, -0.0000018796,0.0000018830,0.0000018868,0.0000018907,0.0000018944, -0.0000018975,0.0000018992,0.0000018993,0.0000018980,0.0000018959, -0.0000018938,0.0000018920,0.0000018905,0.0000018898,0.0000018897, -0.0000018893,0.0000018888,0.0000018880,0.0000018864,0.0000018836, -0.0000018794,0.0000018741,0.0000018680,0.0000018616,0.0000018558, -0.0000018503,0.0000018449,0.0000018398,0.0000018354,0.0000018320, -0.0000018296,0.0000018280,0.0000018266,0.0000018252,0.0000018243, -0.0000018234,0.0000018227,0.0000018223,0.0000018224,0.0000018228, -0.0000018241,0.0000018261,0.0000018285,0.0000018308,0.0000018326, -0.0000018340,0.0000018351,0.0000018358,0.0000018361,0.0000018361, -0.0000018358,0.0000018354,0.0000018348,0.0000018338,0.0000018325, -0.0000018312,0.0000018302,0.0000018298,0.0000018297,0.0000018297, -0.0000018297,0.0000018299,0.0000018307,0.0000018317,0.0000018331, -0.0000018346,0.0000018361,0.0000018378,0.0000018397,0.0000018415, -0.0000018430,0.0000018444,0.0000018457,0.0000018468,0.0000018478, -0.0000018485,0.0000018488,0.0000018488,0.0000018488,0.0000018487, -0.0000018484,0.0000018477,0.0000018471,0.0000018466,0.0000018464, -0.0000018464,0.0000018467,0.0000018472,0.0000018479,0.0000018484, -0.0000018489,0.0000018495,0.0000018499,0.0000018501,0.0000018500, -0.0000018500,0.0000018501,0.0000018506,0.0000018515,0.0000018527, -0.0000018539,0.0000018548,0.0000018555,0.0000018563,0.0000018569, -0.0000018574,0.0000018585,0.0000018599,0.0000018616,0.0000018637, -0.0000018666,0.0000018706,0.0000018759,0.0000018824,0.0000018893, -0.0000018960,0.0000019024,0.0000019077,0.0000019118,0.0000019150, -0.0000019168,0.0000019173,0.0000019166,0.0000019147,0.0000019122, -0.0000019093,0.0000019071,0.0000019056,0.0000019046,0.0000019037, -0.0000019037,0.0000019050,0.0000019077,0.0000019108,0.0000019139, -0.0000019167,0.0000019189,0.0000019214,0.0000019243,0.0000019270, -0.0000019280,0.0000019272,0.0000019254,0.0000019240,0.0000019246, -0.0000019263,0.0000019269,0.0000019259,0.0000019220,0.0000019177, -0.0000019160,0.0000019181,0.0000019221,0.0000019265,0.0000019303, -0.0000019339,0.0000019372,0.0000019397,0.0000019408,0.0000019400, -0.0000019369,0.0000019325,0.0000019289,0.0000019276,0.0000019288, -0.0000019325,0.0000019378,0.0000019443,0.0000019517,0.0000019603, -0.0000019704,0.0000019819,0.0000019942,0.0000020060,0.0000020156, -0.0000020213,0.0000020231,0.0000020232,0.0000020234,0.0000020239, -0.0000020243,0.0000020240,0.0000020230,0.0000020217,0.0000020206, -0.0000020200,0.0000020197,0.0000020202,0.0000020216,0.0000020237, -0.0000020265,0.0000020297,0.0000020333,0.0000020367,0.0000020398, -0.0000020422,0.0000020436,0.0000020443,0.0000020446,0.0000020447, -0.0000020446,0.0000020444,0.0000020442,0.0000020439,0.0000020433, -0.0000020425,0.0000020419,0.0000020417,0.0000020417,0.0000020418, -0.0000020422,0.0000020427,0.0000020433,0.0000020438,0.0000020443, -0.0000020447,0.0000020450,0.0000020451,0.0000020451,0.0000020448, -0.0000020441,0.0000020423,0.0000020400,0.0000020378,0.0000020362, -0.0000020356,0.0000020360,0.0000020370,0.0000020378,0.0000020380, -0.0000020372,0.0000020354,0.0000020331,0.0000020310,0.0000020295, -0.0000020284,0.0000020275,0.0000020272,0.0000020272,0.0000020277, -0.0000020286,0.0000020293,0.0000020297,0.0000020300,0.0000020299, -0.0000020291,0.0000020279,0.0000020264,0.0000020244,0.0000020220, -0.0000020190,0.0000020154,0.0000020112,0.0000020063,0.0000020009, -0.0000019953,0.0000019899,0.0000019853,0.0000019818,0.0000019791, -0.0000019764,0.0000019737,0.0000019714,0.0000019693,0.0000019679, -0.0000019670,0.0000019656,0.0000019637,0.0000019610,0.0000019569, -0.0000019516,0.0000019461,0.0000019417,0.0000019389,0.0000019363, -0.0000019339,0.0000019314,0.0000019288,0.0000019263,0.0000019240, -0.0000019214,0.0000019188,0.0000019170,0.0000019171,0.0000019186, -0.0000019201,0.0000019202,0.0000019190,0.0000019168,0.0000019149, -0.0000019147,0.0000019165,0.0000019200,0.0000019239,0.0000019279, -0.0000019218,0.0000019252,0.0000019283,0.0000019315,0.0000019356, -0.0000019400,0.0000019442,0.0000019479,0.0000019509,0.0000019527, -0.0000019536,0.0000019543,0.0000019555,0.0000019574,0.0000019598, -0.0000019626,0.0000019651,0.0000019662,0.0000019647,0.0000019610, -0.0000019571,0.0000019558,0.0000019555,0.0000019545,0.0000019528, -0.0000019511,0.0000019501,0.0000019492,0.0000019482,0.0000019470, -0.0000019459,0.0000019456,0.0000019465,0.0000019488,0.0000019513, -0.0000019533,0.0000019547,0.0000019553,0.0000019547,0.0000019533, -0.0000019514,0.0000019491,0.0000019470,0.0000019454,0.0000019439, -0.0000019429,0.0000019424,0.0000019423,0.0000019425,0.0000019429, -0.0000019436,0.0000019447,0.0000019460,0.0000019474,0.0000019487, -0.0000019499,0.0000019508,0.0000019513,0.0000019515,0.0000019514, -0.0000019514,0.0000019514,0.0000019519,0.0000019523,0.0000019523, -0.0000019519,0.0000019517,0.0000019517,0.0000019520,0.0000019521, -0.0000019519,0.0000019516,0.0000019510,0.0000019498,0.0000019484, -0.0000019468,0.0000019448,0.0000019423,0.0000019391,0.0000019355, -0.0000019320,0.0000019293,0.0000019271,0.0000019255,0.0000019254, -0.0000019264,0.0000019273,0.0000019278,0.0000019284,0.0000019290, -0.0000019298,0.0000019311,0.0000019326,0.0000019339,0.0000019350, -0.0000019359,0.0000019365,0.0000019365,0.0000019361,0.0000019356, -0.0000019347,0.0000019341,0.0000019335,0.0000019330,0.0000019319, -0.0000019302,0.0000019281,0.0000019264,0.0000019246,0.0000019230, -0.0000019220,0.0000019218,0.0000019217,0.0000019209,0.0000019195, -0.0000019179,0.0000019165,0.0000019155,0.0000019146,0.0000019144, -0.0000019152,0.0000019163,0.0000019185,0.0000019220,0.0000019267, -0.0000019319,0.0000019376,0.0000019438,0.0000019498,0.0000019556, -0.0000019619,0.0000019680,0.0000019725,0.0000019748,0.0000019757, -0.0000019769,0.0000019792,0.0000019824,0.0000019870,0.0000019926, -0.0000019975,0.0000020013,0.0000020044,0.0000020066,0.0000020082, -0.0000020092,0.0000020097,0.0000020099,0.0000020099,0.0000020100, -0.0000020105,0.0000020110,0.0000020109,0.0000020108,0.0000020105, -0.0000020105,0.0000020106,0.0000020110,0.0000020123,0.0000020141, -0.0000020168,0.0000020203,0.0000020240,0.0000020275,0.0000020303, -0.0000020328,0.0000020349,0.0000020365,0.0000020377,0.0000020384, -0.0000020387,0.0000020386,0.0000020379,0.0000020372,0.0000020368, -0.0000020362,0.0000020356,0.0000020354,0.0000020360,0.0000020373, -0.0000020390,0.0000020407,0.0000020430,0.0000020454,0.0000020477, -0.0000020500,0.0000020521,0.0000020542,0.0000020562,0.0000020578, -0.0000020585,0.0000020589,0.0000020586,0.0000020585,0.0000020586, -0.0000020587,0.0000020587,0.0000020587,0.0000020590,0.0000020593, -0.0000020591,0.0000020588,0.0000020584,0.0000020583,0.0000020588, -0.0000020598,0.0000020610,0.0000020626,0.0000020646,0.0000020665, -0.0000020681,0.0000020692,0.0000020700,0.0000020705,0.0000020707, -0.0000020708,0.0000020711,0.0000020717,0.0000020725,0.0000020735, -0.0000020746,0.0000020759,0.0000020774,0.0000020793,0.0000020816, -0.0000020842,0.0000020875,0.0000020914,0.0000020957,0.0000021004, -0.0000021051,0.0000021097,0.0000021141,0.0000021185,0.0000021228, -0.0000021257,0.0000021271,0.0000021277,0.0000021277,0.0000021271, -0.0000021257,0.0000021238,0.0000021209,0.0000021160,0.0000021085, -0.0000021010,0.0000020954,0.0000020920,0.0000020890,0.0000020838, -0.0000020778,0.0000020751,0.0000020762,0.0000020797,0.0000020840, -0.0000020893,0.0000020954,0.0000021014,0.0000021062,0.0000021091, -0.0000021105,0.0000021108,0.0000021099,0.0000021065,0.0000021026, -0.0000020998,0.0000020968,0.0000020934,0.0000020915,0.0000020919, -0.0000020950,0.0000020987,0.0000021013,0.0000021025,0.0000021035, -0.0000021052,0.0000021078,0.0000021114,0.0000021154,0.0000021197, -0.0000021230,0.0000021244,0.0000021241,0.0000021224,0.0000021198, -0.0000021158,0.0000021108,0.0000021053,0.0000021010,0.0000020981, -0.0000020948,0.0000020895,0.0000020842,0.0000020805,0.0000020779, -0.0000020760,0.0000020769,0.0000020819,0.0000020876,0.0000020912, -0.0000020923,0.0000020921,0.0000020905,0.0000020880,0.0000020852, -0.0000020834,0.0000020822,0.0000020803,0.0000020768,0.0000020718, -0.0000020655,0.0000020584,0.0000020513,0.0000020455,0.0000020419, -0.0000020399,0.0000020388,0.0000020383,0.0000020382,0.0000020388, -0.0000020393,0.0000020390,0.0000020379,0.0000020367,0.0000020358, -0.0000020356,0.0000020360,0.0000020365,0.0000020357,0.0000020326, -0.0000020265,0.0000020182,0.0000020110,0.0000020076,0.0000020074, -0.0000020106,0.0000020177,0.0000020250,0.0000020304,0.0000020374, -0.0000020457,0.0000020496,0.0000020489,0.0000020368,0.0000020145, -0.0000019987,0.0000019989,0.0000020177,0.0000020370,0.0000020415, -0.0000020408,0.0000020444,0.0000020588,0.0000020737,0.0000020760, -0.0000020762,0.0000020840,0.0000020946,0.0000020996,0.0000021034, -0.0000021143,0.0000021347,0.0000021522,0.0000021618,0.0000021675, -0.0000021714,0.0000021746,0.0000021749,0.0000021725,0.0000021710, -0.0000021719,0.0000021730,0.0000021732,0.0000021743,0.0000021765, -0.0000021781,0.0000021787,0.0000021791,0.0000021794,0.0000021795, -0.0000021812,0.0000021856,0.0000021895,0.0000021900,0.0000021881, -0.0000021846,0.0000021804,0.0000021765,0.0000021732,0.0000021708, -0.0000021685,0.0000021664,0.0000021645,0.0000021621,0.0000021594, -0.0000021567,0.0000021550,0.0000021553,0.0000021573,0.0000021593, -0.0000021604,0.0000021608,0.0000021611,0.0000021612,0.0000021608, -0.0000021600,0.0000021585,0.0000021553,0.0000021496,0.0000021421, -0.0000021358,0.0000021327,0.0000021317,0.0000021325,0.0000021351, -0.0000021385,0.0000021419,0.0000021448,0.0000021466,0.0000021464, -0.0000021447,0.0000021418,0.0000021373,0.0000021317,0.0000021255, -0.0000021190,0.0000021114,0.0000021033,0.0000020950,0.0000020878, -0.0000020816,0.0000020759,0.0000020718,0.0000020700,0.0000020705, -0.0000020720,0.0000020738,0.0000020756,0.0000020766,0.0000020767, -0.0000020764,0.0000020754,0.0000020741,0.0000020739,0.0000020732, -0.0000020722,0.0000020707,0.0000020700,0.0000020701,0.0000020706, -0.0000020706,0.0000020709,0.0000020706,0.0000020699,0.0000020691, -0.0000020680,0.0000020670,0.0000020665,0.0000020665,0.0000020662, -0.0000020661,0.0000020662,0.0000020661,0.0000020657,0.0000020654, -0.0000020652,0.0000020647,0.0000020638,0.0000020624,0.0000020615, -0.0000020615,0.0000020619,0.0000020622,0.0000020623,0.0000020624, -0.0000020624,0.0000020621,0.0000020615,0.0000020605,0.0000020594, -0.0000020590,0.0000020588,0.0000020588,0.0000020586,0.0000020587, -0.0000020594,0.0000020605,0.0000020613,0.0000020621,0.0000020634, -0.0000020646,0.0000020653,0.0000020657,0.0000020660,0.0000020660, -0.0000020660,0.0000020659,0.0000020664,0.0000020670,0.0000020681, -0.0000020704,0.0000020737,0.0000020768,0.0000020788,0.0000020797, -0.0000020794,0.0000020780,0.0000020777,0.0000020785,0.0000020804, -0.0000020818,0.0000020824,0.0000020836,0.0000020853,0.0000020862, -0.0000020865,0.0000020862,0.0000020854,0.0000020851,0.0000020856, -0.0000020863,0.0000020870,0.0000020874,0.0000020873,0.0000020867, -0.0000020859,0.0000020849,0.0000020838,0.0000020828,0.0000020820, -0.0000020813,0.0000020810,0.0000020809,0.0000020813,0.0000020825, -0.0000020845,0.0000020865,0.0000020884,0.0000020902,0.0000020923, -0.0000020951,0.0000020978,0.0000021002,0.0000021023,0.0000021038, -0.0000021046,0.0000021050,0.0000021049,0.0000021037,0.0000021016, -0.0000020990,0.0000020960,0.0000020927,0.0000020894,0.0000020864, -0.0000020842,0.0000020827,0.0000020816,0.0000020808,0.0000020808, -0.0000020812,0.0000020820,0.0000020832,0.0000020843,0.0000020853, -0.0000020863,0.0000020875,0.0000020881,0.0000020886,0.0000020895, -0.0000020909,0.0000020930,0.0000020959,0.0000020991,0.0000021022, -0.0000021051,0.0000021075,0.0000021093,0.0000021104,0.0000021115, -0.0000021122,0.0000021126,0.0000021124,0.0000021120,0.0000021115, -0.0000021107,0.0000021097,0.0000021087,0.0000021075,0.0000021063, -0.0000021055,0.0000021052,0.0000021053,0.0000021059,0.0000021070, -0.0000021085,0.0000021099,0.0000021113,0.0000021130,0.0000021150, -0.0000021171,0.0000021189,0.0000021200,0.0000021214,0.0000021216, -0.0000021208,0.0000021193,0.0000021175,0.0000021164,0.0000021165, -0.0000021177,0.0000021188,0.0000021204,0.0000021221,0.0000021241, -0.0000021261,0.0000021283,0.0000021309,0.0000021339,0.0000021372, -0.0000021410,0.0000021454,0.0000021501,0.0000021549,0.0000021601, -0.0000021652,0.0000021697,0.0000021736,0.0000021776,0.0000021816, -0.0000021851,0.0000021879,0.0000021903,0.0000021925,0.0000021948, -0.0000021974,0.0000022004,0.0000022034,0.0000022062,0.0000022088, -0.0000022107,0.0000022120,0.0000022129,0.0000022135,0.0000022135, -0.0000022128,0.0000022117,0.0000022100,0.0000022078,0.0000022056, -0.0000022033,0.0000022010,0.0000021987,0.0000021964,0.0000021941, -0.0000021917,0.0000021894,0.0000021869,0.0000021841,0.0000021815, -0.0000021790,0.0000021767,0.0000021746,0.0000021728,0.0000021715, -0.0000021709,0.0000021709,0.0000021714,0.0000021721,0.0000021725, -0.0000021721,0.0000021715,0.0000021708,0.0000021698,0.0000021686, -0.0000021670,0.0000021649,0.0000021627,0.0000021606,0.0000021586, -0.0000021568,0.0000021551,0.0000021528,0.0000021499,0.0000021468, -0.0000021441,0.0000021418,0.0000021404,0.0000021399,0.0000021399, -0.0000021402,0.0000021404,0.0000021406,0.0000021406,0.0000021400, -0.0000021381,0.0000021353,0.0000021317,0.0000021281,0.0000021254, -0.0000021236,0.0000021222,0.0000021220,0.0000021222,0.0000021223, -0.0000021221,0.0000021216,0.0000021210,0.0000021202,0.0000021189, -0.0000021174,0.0000021158,0.0000021144,0.0000021136,0.0000021131, -0.0000021127,0.0000021122,0.0000021112,0.0000021093,0.0000021066, -0.0000021037,0.0000021009,0.0000020987,0.0000020969,0.0000020952, -0.0000020938,0.0000020932,0.0000020935,0.0000020946,0.0000020960, -0.0000020969,0.0000020968,0.0000020944,0.0000020936,0.0000020913, -0.0000020888,0.0000020859,0.0000020827,0.0000020792,0.0000020757, -0.0000020725,0.0000020699,0.0000020677,0.0000020654,0.0000020628, -0.0000020599,0.0000020571,0.0000020544,0.0000020515,0.0000020487, -0.0000020462,0.0000020438,0.0000020414,0.0000020399,0.0000020391, -0.0000020386,0.0000020381,0.0000020382,0.0000020389,0.0000020396, -0.0000020399,0.0000020400,0.0000020397,0.0000020387,0.0000020375, -0.0000020359,0.0000020343,0.0000020334,0.0000020329,0.0000020330, -0.0000020335,0.0000020342,0.0000020350,0.0000020358,0.0000020373, -0.0000020389,0.0000020391,0.0000020394,0.0000020381,0.0000020358, -0.0000020326,0.0000020285,0.0000020242,0.0000020203,0.0000020169, -0.0000020135,0.0000020096,0.0000020058,0.0000020025,0.0000020001, -0.0000019988,0.0000019987,0.0000019988,0.0000019984,0.0000019975, -0.0000019959,0.0000019940,0.0000019918,0.0000019902,0.0000019887, -0.0000019894,0.0000019906,0.0000019916,0.0000019915,0.0000019877, -0.0000019804,0.0000019695,0.0000019580,0.0000019490,0.0000019423, -0.0000019413,0.0000019401,0.0000019388,0.0000019361,0.0000019325, -0.0000019296,0.0000019286,0.0000019313,0.0000019355,0.0000019408, -0.0000019462,0.0000019509,0.0000019546,0.0000019567,0.0000019571, -0.0000019564,0.0000019541,0.0000019501,0.0000019457,0.0000019437, -0.0000019450,0.0000019501,0.0000019552,0.0000019573,0.0000019572, -0.0000019576,0.0000019601,0.0000019646,0.0000019707,0.0000019772, -0.0000019819,0.0000019840,0.0000019858,0.0000019895,0.0000019943, -0.0000019980,0.0000019999,0.0000020000,0.0000019994,0.0000019985, -0.0000019973,0.0000019958,0.0000019943,0.0000019929,0.0000019917, -0.0000019909,0.0000019906,0.0000019906,0.0000019913,0.0000019923, -0.0000019933,0.0000019943,0.0000019956,0.0000019971,0.0000019988, -0.0000020007,0.0000020029,0.0000020054,0.0000020082,0.0000020113, -0.0000020143,0.0000020169,0.0000020195,0.0000020220,0.0000020244, -0.0000020265,0.0000020280,0.0000020292,0.0000020304,0.0000020316, -0.0000020328,0.0000020336,0.0000020342,0.0000020347,0.0000020355, -0.0000020369,0.0000020388,0.0000020409,0.0000020433,0.0000020460, -0.0000020486,0.0000020514,0.0000020544,0.0000020567,0.0000020589, -0.0000020607,0.0000020619,0.0000020624,0.0000020627,0.0000020629, -0.0000020630,0.0000020628,0.0000020622,0.0000020616,0.0000020608, -0.0000020597,0.0000020585,0.0000020581,0.0000020584,0.0000020597, -0.0000020615,0.0000020637,0.0000020662,0.0000020695,0.0000020729, -0.0000020749,0.0000020750,0.0000020750,0.0000020784,0.0000020871, -0.0000020977,0.0000021051,0.0000021074,0.0000021083,0.0000021101, -0.0000021127,0.0000021153,0.0000021158,0.0000021145,0.0000021138, -0.0000021122,0.0000021089,0.0000021055,0.0000021006,0.0000020946, -0.0000020897,0.0000020855,0.0000020832,0.0000020825,0.0000020806, -0.0000020776,0.0000020763,0.0000020766,0.0000020779,0.0000020794, -0.0000020805,0.0000020808,0.0000020803,0.0000020788,0.0000020765, -0.0000020732,0.0000020690,0.0000020640,0.0000020588,0.0000020539, -0.0000020496,0.0000020461,0.0000020430,0.0000020398,0.0000020369, -0.0000020345,0.0000020329,0.0000020317,0.0000020306,0.0000020298, -0.0000020288,0.0000020275,0.0000020262,0.0000020247,0.0000020233, -0.0000020221,0.0000020213,0.0000020206,0.0000020200,0.0000020194, -0.0000020191,0.0000020189,0.0000020189,0.0000020190,0.0000020195, -0.0000020203,0.0000020211,0.0000020218,0.0000020224,0.0000020232, -0.0000020241,0.0000020250,0.0000020260,0.0000020271,0.0000020278, -0.0000020285,0.0000020293,0.0000020304,0.0000020314,0.0000020323, -0.0000020331,0.0000020339,0.0000020347,0.0000020357,0.0000020367, -0.0000020374,0.0000020379,0.0000020382,0.0000020385,0.0000020386, -0.0000020386,0.0000020383,0.0000020379,0.0000020371,0.0000020363, -0.0000020356,0.0000020355,0.0000020353,0.0000020353,0.0000020354, -0.0000020356,0.0000020358,0.0000020357,0.0000020353,0.0000020350, -0.0000020339,0.0000020317,0.0000020290,0.0000020255,0.0000020212, -0.0000020161,0.0000020109,0.0000020058,0.0000020013,0.0000019975, -0.0000019953,0.0000019945,0.0000019943,0.0000019958,0.0000019995, -0.0000020050,0.0000020117,0.0000020186,0.0000020247,0.0000020294, -0.0000020321,0.0000020331,0.0000020327,0.0000020319,0.0000020314, -0.0000020314,0.0000020325,0.0000020340,0.0000020351,0.0000020352, -0.0000020340,0.0000020312,0.0000020273,0.0000020232,0.0000020190, -0.0000020154,0.0000020121,0.0000020092,0.0000020068,0.0000020047, -0.0000020033,0.0000020024,0.0000020014,0.0000020000,0.0000019977, -0.0000019954,0.0000019936,0.0000019924,0.0000019918,0.0000019909, -0.0000019895,0.0000019872,0.0000019847,0.0000019814,0.0000019775, -0.0000019736,0.0000019707,0.0000019693,0.0000019695,0.0000019708, -0.0000019732,0.0000019761,0.0000019788,0.0000019802,0.0000019803, -0.0000019776,0.0000019720,0.0000019655,0.0000019602,0.0000019574, -0.0000019571,0.0000019581,0.0000019598,0.0000019617,0.0000019626, -0.0000019613,0.0000019565,0.0000019498,0.0000019438,0.0000019403, -0.0000019388,0.0000019399,0.0000019418,0.0000019428,0.0000019429, -0.0000019434,0.0000019444,0.0000019452,0.0000019465,0.0000019486, -0.0000019511,0.0000019538,0.0000019570,0.0000019609,0.0000019647, -0.0000019670,0.0000019672,0.0000019657,0.0000019633,0.0000019611, -0.0000019592,0.0000019573,0.0000019549,0.0000019530,0.0000019516, -0.0000019496,0.0000019459,0.0000019423,0.0000019409,0.0000019411, -0.0000019402,0.0000019367,0.0000019303,0.0000019241,0.0000019199, -0.0000019177,0.0000019164,0.0000019188,0.0000019252,0.0000019348, -0.0000019463,0.0000019575,0.0000019665,0.0000019723,0.0000019748, -0.0000019751,0.0000019745,0.0000019743,0.0000019751,0.0000019775, -0.0000019813,0.0000019860,0.0000019911,0.0000019961,0.0000020007, -0.0000020051,0.0000020095,0.0000020135,0.0000020166,0.0000020188, -0.0000020201,0.0000020207,0.0000020205,0.0000020197,0.0000020187, -0.0000020176,0.0000020164,0.0000020154,0.0000020142,0.0000020126, -0.0000020106,0.0000020082,0.0000020057,0.0000020031,0.0000019999, -0.0000019952,0.0000019888,0.0000019810,0.0000019723,0.0000019639, -0.0000019564,0.0000019501,0.0000019449,0.0000019416,0.0000019395, -0.0000019385,0.0000019385,0.0000019389,0.0000019392,0.0000019383, -0.0000019360,0.0000019333,0.0000019304,0.0000019292,0.0000019288, -0.0000019285,0.0000019281,0.0000019269,0.0000019247,0.0000019225, -0.0000019200,0.0000019172,0.0000019139,0.0000019105,0.0000019068, -0.0000019019,0.0000018961,0.0000018902,0.0000018845,0.0000018798, -0.0000018765,0.0000018744,0.0000018734,0.0000018715,0.0000018698, -0.0000018678,0.0000018657,0.0000018638,0.0000018630,0.0000018636, -0.0000018646,0.0000018661,0.0000018684,0.0000018715,0.0000018748, -0.0000018782,0.0000018814,0.0000018849,0.0000018880,0.0000018902, -0.0000018908,0.0000018900,0.0000018881,0.0000018856,0.0000018835, -0.0000018820,0.0000018815,0.0000018814,0.0000018811,0.0000018804, -0.0000018787,0.0000018760,0.0000018720,0.0000018671,0.0000018614, -0.0000018555,0.0000018501,0.0000018448,0.0000018393,0.0000018341, -0.0000018296,0.0000018264,0.0000018240,0.0000018220,0.0000018203, -0.0000018192,0.0000018186,0.0000018185,0.0000018188,0.0000018195, -0.0000018205,0.0000018217,0.0000018234,0.0000018255,0.0000018277, -0.0000018296,0.0000018311,0.0000018323,0.0000018332,0.0000018340, -0.0000018344,0.0000018346,0.0000018346,0.0000018345,0.0000018342, -0.0000018337,0.0000018331,0.0000018324,0.0000018319,0.0000018317, -0.0000018315,0.0000018314,0.0000018312,0.0000018313,0.0000018319, -0.0000018330,0.0000018346,0.0000018364,0.0000018384,0.0000018406, -0.0000018427,0.0000018445,0.0000018461,0.0000018475,0.0000018488, -0.0000018497,0.0000018504,0.0000018509,0.0000018511,0.0000018509, -0.0000018506,0.0000018501,0.0000018494,0.0000018484,0.0000018473, -0.0000018464,0.0000018456,0.0000018448,0.0000018442,0.0000018438, -0.0000018435,0.0000018436,0.0000018438,0.0000018444,0.0000018450, -0.0000018454,0.0000018457,0.0000018461,0.0000018464,0.0000018467, -0.0000018472,0.0000018482,0.0000018495,0.0000018508,0.0000018523, -0.0000018539,0.0000018551,0.0000018561,0.0000018569,0.0000018578, -0.0000018585,0.0000018592,0.0000018605,0.0000018625,0.0000018656, -0.0000018697,0.0000018746,0.0000018802,0.0000018868,0.0000018941, -0.0000019010,0.0000019068,0.0000019112,0.0000019139,0.0000019149, -0.0000019146,0.0000019132,0.0000019108,0.0000019082,0.0000019056, -0.0000019035,0.0000019017,0.0000019003,0.0000019001,0.0000019014, -0.0000019042,0.0000019080,0.0000019118,0.0000019149,0.0000019170, -0.0000019191,0.0000019219,0.0000019244,0.0000019255,0.0000019247, -0.0000019231,0.0000019218,0.0000019224,0.0000019245,0.0000019259, -0.0000019252,0.0000019215,0.0000019177,0.0000019163,0.0000019180, -0.0000019215,0.0000019254,0.0000019292,0.0000019329,0.0000019364, -0.0000019386,0.0000019391,0.0000019381,0.0000019352,0.0000019313, -0.0000019274,0.0000019258,0.0000019268,0.0000019298,0.0000019343, -0.0000019400,0.0000019469,0.0000019547,0.0000019638,0.0000019744, -0.0000019865,0.0000019988,0.0000020099,0.0000020181,0.0000020223, -0.0000020231,0.0000020228,0.0000020226,0.0000020225,0.0000020221, -0.0000020215,0.0000020209,0.0000020200,0.0000020193,0.0000020189, -0.0000020185,0.0000020187,0.0000020194,0.0000020206,0.0000020226, -0.0000020252,0.0000020283,0.0000020315,0.0000020343,0.0000020364, -0.0000020378,0.0000020386,0.0000020392,0.0000020395,0.0000020398, -0.0000020402,0.0000020404,0.0000020402,0.0000020400,0.0000020399, -0.0000020399,0.0000020402,0.0000020409,0.0000020419,0.0000020429, -0.0000020436,0.0000020441,0.0000020442,0.0000020441,0.0000020438, -0.0000020432,0.0000020424,0.0000020411,0.0000020399,0.0000020388, -0.0000020380,0.0000020376,0.0000020375,0.0000020376,0.0000020372, -0.0000020361,0.0000020341,0.0000020319,0.0000020299,0.0000020283, -0.0000020272,0.0000020264,0.0000020259,0.0000020256,0.0000020256, -0.0000020259,0.0000020266,0.0000020278,0.0000020287,0.0000020296, -0.0000020302,0.0000020302,0.0000020298,0.0000020290,0.0000020279, -0.0000020263,0.0000020243,0.0000020218,0.0000020187,0.0000020150, -0.0000020104,0.0000020051,0.0000019993,0.0000019931,0.0000019871, -0.0000019822,0.0000019785,0.0000019755,0.0000019728,0.0000019703, -0.0000019679,0.0000019658,0.0000019640,0.0000019625,0.0000019610, -0.0000019592,0.0000019569,0.0000019533,0.0000019487,0.0000019445, -0.0000019413,0.0000019390,0.0000019375,0.0000019360,0.0000019341, -0.0000019316,0.0000019287,0.0000019263,0.0000019236,0.0000019207, -0.0000019189,0.0000019189,0.0000019199,0.0000019206,0.0000019201, -0.0000019185,0.0000019161,0.0000019139,0.0000019135,0.0000019149, -0.0000019182,0.0000019134,0.0000019164,0.0000019199,0.0000019228, -0.0000019254,0.0000019281,0.0000019315,0.0000019356,0.0000019402, -0.0000019443,0.0000019476,0.0000019502,0.0000019521,0.0000019536, -0.0000019556,0.0000019579,0.0000019601,0.0000019622,0.0000019642, -0.0000019648,0.0000019628,0.0000019586,0.0000019549,0.0000019533, -0.0000019525,0.0000019511,0.0000019495,0.0000019485,0.0000019484, -0.0000019487,0.0000019484,0.0000019479,0.0000019478,0.0000019490, -0.0000019511,0.0000019531,0.0000019549,0.0000019563,0.0000019568, -0.0000019560,0.0000019546,0.0000019525,0.0000019500,0.0000019477, -0.0000019455,0.0000019438,0.0000019427,0.0000019422,0.0000019419, -0.0000019418,0.0000019420,0.0000019429,0.0000019443,0.0000019461, -0.0000019479,0.0000019493,0.0000019503,0.0000019509,0.0000019514, -0.0000019516,0.0000019515,0.0000019518,0.0000019525,0.0000019532, -0.0000019539,0.0000019543,0.0000019543,0.0000019542,0.0000019542, -0.0000019541,0.0000019535,0.0000019525,0.0000019512,0.0000019494, -0.0000019472,0.0000019450,0.0000019425,0.0000019397,0.0000019364, -0.0000019328,0.0000019295,0.0000019267,0.0000019245,0.0000019229, -0.0000019232,0.0000019241,0.0000019249,0.0000019258,0.0000019268, -0.0000019279,0.0000019290,0.0000019307,0.0000019322,0.0000019337, -0.0000019350,0.0000019360,0.0000019368,0.0000019367,0.0000019360, -0.0000019345,0.0000019326,0.0000019307,0.0000019289,0.0000019277, -0.0000019264,0.0000019253,0.0000019238,0.0000019217,0.0000019186, -0.0000019152,0.0000019124,0.0000019115,0.0000019115,0.0000019120, -0.0000019130,0.0000019142,0.0000019153,0.0000019158,0.0000019163, -0.0000019169,0.0000019177,0.0000019184,0.0000019192,0.0000019206, -0.0000019223,0.0000019249,0.0000019292,0.0000019350,0.0000019413, -0.0000019478,0.0000019546,0.0000019614,0.0000019670,0.0000019709, -0.0000019733,0.0000019747,0.0000019752,0.0000019753,0.0000019767, -0.0000019799,0.0000019837,0.0000019878,0.0000019916,0.0000019949, -0.0000019979,0.0000020001,0.0000020015,0.0000020025,0.0000020033, -0.0000020041,0.0000020051,0.0000020058,0.0000020062,0.0000020063, -0.0000020063,0.0000020064,0.0000020064,0.0000020071,0.0000020078, -0.0000020092,0.0000020114,0.0000020141,0.0000020170,0.0000020201, -0.0000020227,0.0000020253,0.0000020276,0.0000020294,0.0000020308, -0.0000020316,0.0000020322,0.0000020324,0.0000020322,0.0000020322, -0.0000020324,0.0000020325,0.0000020326,0.0000020329,0.0000020335, -0.0000020350,0.0000020368,0.0000020389,0.0000020414,0.0000020441, -0.0000020466,0.0000020489,0.0000020508,0.0000020526,0.0000020544, -0.0000020562,0.0000020576,0.0000020583,0.0000020587,0.0000020588, -0.0000020593,0.0000020596,0.0000020597,0.0000020599,0.0000020601, -0.0000020603,0.0000020600,0.0000020594,0.0000020587,0.0000020579, -0.0000020577,0.0000020578,0.0000020583,0.0000020592,0.0000020606, -0.0000020622,0.0000020638,0.0000020653,0.0000020666,0.0000020675, -0.0000020681,0.0000020684,0.0000020689,0.0000020698,0.0000020709, -0.0000020721,0.0000020734,0.0000020748,0.0000020764,0.0000020782, -0.0000020803,0.0000020827,0.0000020854,0.0000020884,0.0000020917, -0.0000020955,0.0000020997,0.0000021039,0.0000021082,0.0000021126, -0.0000021172,0.0000021214,0.0000021239,0.0000021250,0.0000021252, -0.0000021245,0.0000021231,0.0000021211,0.0000021182,0.0000021131, -0.0000021053,0.0000020975,0.0000020918,0.0000020883,0.0000020847, -0.0000020786,0.0000020731,0.0000020721,0.0000020744,0.0000020787, -0.0000020835,0.0000020890,0.0000020950,0.0000021000,0.0000021034, -0.0000021053,0.0000021065,0.0000021068,0.0000021055,0.0000021021, -0.0000020986,0.0000020963,0.0000020939,0.0000020912,0.0000020896, -0.0000020904,0.0000020937,0.0000020973,0.0000021000,0.0000021014, -0.0000021024,0.0000021040,0.0000021065,0.0000021097,0.0000021131, -0.0000021165,0.0000021188,0.0000021198,0.0000021195,0.0000021182, -0.0000021153,0.0000021108,0.0000021056,0.0000021009,0.0000020981, -0.0000020959,0.0000020921,0.0000020866,0.0000020818,0.0000020786, -0.0000020760,0.0000020748,0.0000020765,0.0000020814,0.0000020860, -0.0000020889,0.0000020903,0.0000020903,0.0000020888,0.0000020865, -0.0000020847,0.0000020839,0.0000020832,0.0000020811,0.0000020770, -0.0000020717,0.0000020658,0.0000020593,0.0000020525,0.0000020467, -0.0000020425,0.0000020399,0.0000020387,0.0000020382,0.0000020384, -0.0000020390,0.0000020392,0.0000020388,0.0000020377,0.0000020364, -0.0000020351,0.0000020348,0.0000020352,0.0000020354,0.0000020342, -0.0000020303,0.0000020235,0.0000020151,0.0000020080,0.0000020048, -0.0000020053,0.0000020096,0.0000020181,0.0000020265,0.0000020325, -0.0000020397,0.0000020470,0.0000020496,0.0000020458,0.0000020279, -0.0000020058,0.0000019968,0.0000020054,0.0000020281,0.0000020415, -0.0000020424,0.0000020423,0.0000020499,0.0000020653,0.0000020744, -0.0000020746,0.0000020791,0.0000020905,0.0000020982,0.0000021008, -0.0000021069,0.0000021229,0.0000021444,0.0000021585,0.0000021661, -0.0000021712,0.0000021750,0.0000021776,0.0000021767,0.0000021738, -0.0000021728,0.0000021739,0.0000021743,0.0000021735,0.0000021742, -0.0000021770,0.0000021791,0.0000021794,0.0000021793,0.0000021791, -0.0000021792,0.0000021806,0.0000021841,0.0000021878,0.0000021884, -0.0000021869,0.0000021833,0.0000021791,0.0000021750,0.0000021720, -0.0000021693,0.0000021664,0.0000021638,0.0000021610,0.0000021586, -0.0000021567,0.0000021554,0.0000021554,0.0000021569,0.0000021591, -0.0000021608,0.0000021620,0.0000021634,0.0000021644,0.0000021653, -0.0000021653,0.0000021643,0.0000021615,0.0000021571,0.0000021510, -0.0000021445,0.0000021384,0.0000021335,0.0000021309,0.0000021287, -0.0000021294,0.0000021308,0.0000021331,0.0000021356,0.0000021370, -0.0000021370,0.0000021358,0.0000021329,0.0000021283,0.0000021226, -0.0000021161,0.0000021088,0.0000021008,0.0000020929,0.0000020856, -0.0000020796,0.0000020742,0.0000020700,0.0000020678,0.0000020678, -0.0000020689,0.0000020705,0.0000020720,0.0000020734,0.0000020747, -0.0000020752,0.0000020752,0.0000020755,0.0000020759,0.0000020761, -0.0000020763,0.0000020767,0.0000020773,0.0000020784,0.0000020795, -0.0000020803,0.0000020811,0.0000020816,0.0000020816,0.0000020812, -0.0000020810,0.0000020807,0.0000020808,0.0000020809,0.0000020810, -0.0000020811,0.0000020814,0.0000020817,0.0000020817,0.0000020813, -0.0000020806,0.0000020796,0.0000020781,0.0000020764,0.0000020750, -0.0000020742,0.0000020734,0.0000020723,0.0000020716,0.0000020708, -0.0000020703,0.0000020701,0.0000020697,0.0000020686,0.0000020679, -0.0000020671,0.0000020665,0.0000020655,0.0000020646,0.0000020644, -0.0000020648,0.0000020654,0.0000020661,0.0000020675,0.0000020691, -0.0000020700,0.0000020702,0.0000020705,0.0000020710,0.0000020713, -0.0000020712,0.0000020718,0.0000020728,0.0000020741,0.0000020757, -0.0000020782,0.0000020804,0.0000020817,0.0000020820,0.0000020811, -0.0000020792,0.0000020776,0.0000020770,0.0000020770,0.0000020776, -0.0000020778,0.0000020782,0.0000020796,0.0000020814,0.0000020827, -0.0000020831,0.0000020827,0.0000020824,0.0000020820,0.0000020821, -0.0000020827,0.0000020832,0.0000020832,0.0000020827,0.0000020817, -0.0000020803,0.0000020788,0.0000020772,0.0000020759,0.0000020754, -0.0000020754,0.0000020758,0.0000020774,0.0000020799,0.0000020829, -0.0000020861,0.0000020894,0.0000020925,0.0000020952,0.0000020982, -0.0000021017,0.0000021053,0.0000021088,0.0000021120,0.0000021147, -0.0000021165,0.0000021178,0.0000021183,0.0000021180,0.0000021168, -0.0000021147,0.0000021122,0.0000021090,0.0000021053,0.0000021016, -0.0000020980,0.0000020947,0.0000020917,0.0000020892,0.0000020868, -0.0000020851,0.0000020840,0.0000020834,0.0000020840,0.0000020845, -0.0000020854,0.0000020863,0.0000020873,0.0000020879,0.0000020880, -0.0000020877,0.0000020873,0.0000020875,0.0000020882,0.0000020895, -0.0000020917,0.0000020945,0.0000020979,0.0000021011,0.0000021038, -0.0000021059,0.0000021073,0.0000021081,0.0000021085,0.0000021086, -0.0000021082,0.0000021074,0.0000021065,0.0000021055,0.0000021047, -0.0000021039,0.0000021034,0.0000021034,0.0000021037,0.0000021046, -0.0000021057,0.0000021069,0.0000021081,0.0000021095,0.0000021112, -0.0000021129,0.0000021146,0.0000021167,0.0000021191,0.0000021213, -0.0000021217,0.0000021216,0.0000021205,0.0000021201,0.0000021204, -0.0000021209,0.0000021216,0.0000021225,0.0000021234,0.0000021246, -0.0000021259,0.0000021270,0.0000021278,0.0000021291,0.0000021308, -0.0000021328,0.0000021355,0.0000021393,0.0000021440,0.0000021496, -0.0000021549,0.0000021597,0.0000021640,0.0000021679,0.0000021714, -0.0000021743,0.0000021766,0.0000021787,0.0000021808,0.0000021831, -0.0000021860,0.0000021892,0.0000021924,0.0000021956,0.0000021987, -0.0000022014,0.0000022035,0.0000022052,0.0000022065,0.0000022073, -0.0000022071,0.0000022066,0.0000022055,0.0000022039,0.0000022019, -0.0000021998,0.0000021979,0.0000021959,0.0000021939,0.0000021919, -0.0000021899,0.0000021877,0.0000021852,0.0000021831,0.0000021814, -0.0000021799,0.0000021784,0.0000021774,0.0000021764,0.0000021755, -0.0000021748,0.0000021743,0.0000021740,0.0000021736,0.0000021730, -0.0000021720,0.0000021708,0.0000021694,0.0000021677,0.0000021660, -0.0000021642,0.0000021621,0.0000021603,0.0000021586,0.0000021571, -0.0000021557,0.0000021540,0.0000021515,0.0000021486,0.0000021458, -0.0000021430,0.0000021403,0.0000021385,0.0000021368,0.0000021361, -0.0000021359,0.0000021363,0.0000021370,0.0000021376,0.0000021374, -0.0000021361,0.0000021335,0.0000021302,0.0000021269,0.0000021245, -0.0000021227,0.0000021220,0.0000021218,0.0000021218,0.0000021216, -0.0000021211,0.0000021204,0.0000021193,0.0000021173,0.0000021149, -0.0000021122,0.0000021097,0.0000021079,0.0000021071,0.0000021067, -0.0000021065,0.0000021059,0.0000021045,0.0000021021,0.0000020989, -0.0000020954,0.0000020922,0.0000020896,0.0000020874,0.0000020851, -0.0000020830,0.0000020816,0.0000020812,0.0000020819,0.0000020833, -0.0000020854,0.0000020875,0.0000020891,0.0000020905,0.0000020912, -0.0000020897,0.0000020875,0.0000020838,0.0000020797,0.0000020754, -0.0000020716,0.0000020687,0.0000020663,0.0000020644,0.0000020625, -0.0000020606,0.0000020585,0.0000020557,0.0000020527,0.0000020499, -0.0000020471,0.0000020446,0.0000020429,0.0000020418,0.0000020410, -0.0000020402,0.0000020395,0.0000020392,0.0000020390,0.0000020390, -0.0000020383,0.0000020377,0.0000020372,0.0000020365,0.0000020353, -0.0000020340,0.0000020332,0.0000020328,0.0000020326,0.0000020326, -0.0000020327,0.0000020327,0.0000020329,0.0000020335,0.0000020348, -0.0000020363,0.0000020377,0.0000020384,0.0000020383,0.0000020374, -0.0000020361,0.0000020340,0.0000020311,0.0000020276,0.0000020235, -0.0000020186,0.0000020133,0.0000020084,0.0000020043,0.0000020011, -0.0000019995,0.0000019990,0.0000019992,0.0000019993,0.0000019988, -0.0000019975,0.0000019952,0.0000019920,0.0000019883,0.0000019850, -0.0000019823,0.0000019824,0.0000019831,0.0000019846,0.0000019849, -0.0000019821,0.0000019752,0.0000019645,0.0000019532,0.0000019449, -0.0000019386,0.0000019379,0.0000019374,0.0000019369,0.0000019356, -0.0000019337,0.0000019329,0.0000019336,0.0000019365,0.0000019402, -0.0000019445,0.0000019496,0.0000019543,0.0000019571,0.0000019576, -0.0000019564,0.0000019530,0.0000019483,0.0000019450,0.0000019450, -0.0000019473,0.0000019512,0.0000019535,0.0000019536,0.0000019539, -0.0000019561,0.0000019602,0.0000019658,0.0000019725,0.0000019785, -0.0000019826,0.0000019849,0.0000019874,0.0000019915,0.0000019963, -0.0000020006,0.0000020027,0.0000020027,0.0000020020,0.0000020009, -0.0000019995,0.0000019977,0.0000019955,0.0000019935,0.0000019921, -0.0000019913,0.0000019904,0.0000019900,0.0000019894,0.0000019896, -0.0000019901,0.0000019909,0.0000019920,0.0000019937,0.0000019960, -0.0000019986,0.0000020012,0.0000020040,0.0000020071,0.0000020104, -0.0000020137,0.0000020170,0.0000020203,0.0000020234,0.0000020261, -0.0000020282,0.0000020298,0.0000020311,0.0000020323,0.0000020334, -0.0000020342,0.0000020347,0.0000020350,0.0000020357,0.0000020367, -0.0000020382,0.0000020404,0.0000020430,0.0000020454,0.0000020476, -0.0000020499,0.0000020525,0.0000020548,0.0000020572,0.0000020593, -0.0000020607,0.0000020617,0.0000020624,0.0000020629,0.0000020631, -0.0000020626,0.0000020616,0.0000020604,0.0000020590,0.0000020573, -0.0000020558,0.0000020555,0.0000020565,0.0000020587,0.0000020616, -0.0000020647,0.0000020682,0.0000020718,0.0000020740,0.0000020743, -0.0000020747,0.0000020782,0.0000020861,0.0000020965,0.0000021052, -0.0000021088,0.0000021092,0.0000021102,0.0000021124,0.0000021151, -0.0000021163,0.0000021156,0.0000021147,0.0000021137,0.0000021107, -0.0000021072,0.0000021036,0.0000020981,0.0000020926,0.0000020887, -0.0000020851,0.0000020828,0.0000020819,0.0000020808,0.0000020788, -0.0000020769,0.0000020761,0.0000020764,0.0000020773,0.0000020783, -0.0000020784,0.0000020774,0.0000020755,0.0000020727,0.0000020687, -0.0000020639,0.0000020590,0.0000020543,0.0000020501,0.0000020464, -0.0000020432,0.0000020403,0.0000020376,0.0000020353,0.0000020335, -0.0000020319,0.0000020306,0.0000020294,0.0000020280,0.0000020263, -0.0000020243,0.0000020223,0.0000020204,0.0000020187,0.0000020174, -0.0000020162,0.0000020150,0.0000020140,0.0000020133,0.0000020129, -0.0000020128,0.0000020128,0.0000020130,0.0000020133,0.0000020138, -0.0000020143,0.0000020148,0.0000020154,0.0000020161,0.0000020168, -0.0000020176,0.0000020186,0.0000020197,0.0000020209,0.0000020223, -0.0000020237,0.0000020250,0.0000020262,0.0000020271,0.0000020280, -0.0000020288,0.0000020295,0.0000020304,0.0000020313,0.0000020321, -0.0000020326,0.0000020331,0.0000020336,0.0000020338,0.0000020336, -0.0000020331,0.0000020322,0.0000020312,0.0000020301,0.0000020292, -0.0000020287,0.0000020285,0.0000020286,0.0000020290,0.0000020297, -0.0000020304,0.0000020311,0.0000020316,0.0000020319,0.0000020317, -0.0000020308,0.0000020299,0.0000020279,0.0000020249,0.0000020208, -0.0000020161,0.0000020113,0.0000020069,0.0000020027,0.0000019990, -0.0000019963,0.0000019945,0.0000019945,0.0000019955,0.0000019984, -0.0000020031,0.0000020093,0.0000020160,0.0000020223,0.0000020274, -0.0000020305,0.0000020316,0.0000020311,0.0000020297,0.0000020287, -0.0000020280,0.0000020279,0.0000020275,0.0000020271,0.0000020256, -0.0000020232,0.0000020199,0.0000020156,0.0000020111,0.0000020068, -0.0000020029,0.0000019996,0.0000019971,0.0000019961,0.0000019960, -0.0000019963,0.0000019968,0.0000019970,0.0000019962,0.0000019950, -0.0000019940,0.0000019934,0.0000019932,0.0000019930,0.0000019923, -0.0000019903,0.0000019875,0.0000019844,0.0000019808,0.0000019768, -0.0000019732,0.0000019710,0.0000019704,0.0000019711,0.0000019731, -0.0000019761,0.0000019788,0.0000019810,0.0000019820,0.0000019803, -0.0000019754,0.0000019686,0.0000019621,0.0000019580,0.0000019569, -0.0000019581,0.0000019601,0.0000019621,0.0000019630,0.0000019620, -0.0000019572,0.0000019498,0.0000019425,0.0000019378,0.0000019361, -0.0000019372,0.0000019391,0.0000019404,0.0000019407,0.0000019411, -0.0000019420,0.0000019423,0.0000019422,0.0000019435,0.0000019457, -0.0000019480,0.0000019512,0.0000019552,0.0000019590,0.0000019614, -0.0000019619,0.0000019611,0.0000019596,0.0000019578,0.0000019563, -0.0000019545,0.0000019522,0.0000019498,0.0000019478,0.0000019452, -0.0000019414,0.0000019386,0.0000019381,0.0000019388,0.0000019382, -0.0000019348,0.0000019289,0.0000019231,0.0000019187,0.0000019155, -0.0000019138,0.0000019147,0.0000019187,0.0000019260,0.0000019359, -0.0000019469,0.0000019573,0.0000019654,0.0000019704,0.0000019724, -0.0000019727,0.0000019725,0.0000019727,0.0000019736,0.0000019758, -0.0000019790,0.0000019831,0.0000019874,0.0000019921,0.0000019971, -0.0000020019,0.0000020060,0.0000020095,0.0000020122,0.0000020142, -0.0000020154,0.0000020161,0.0000020162,0.0000020156,0.0000020145, -0.0000020131,0.0000020114,0.0000020095,0.0000020075,0.0000020054, -0.0000020030,0.0000020000,0.0000019962,0.0000019915,0.0000019855, -0.0000019782,0.0000019702,0.0000019622,0.0000019552,0.0000019495, -0.0000019446,0.0000019411,0.0000019389,0.0000019376,0.0000019366, -0.0000019361,0.0000019361,0.0000019358,0.0000019344,0.0000019321, -0.0000019290,0.0000019266,0.0000019252,0.0000019240,0.0000019228, -0.0000019211,0.0000019188,0.0000019171,0.0000019159,0.0000019142, -0.0000019115,0.0000019080,0.0000019042,0.0000018988,0.0000018921, -0.0000018856,0.0000018797,0.0000018747,0.0000018707,0.0000018679, -0.0000018652,0.0000018621,0.0000018594,0.0000018566,0.0000018539, -0.0000018519,0.0000018512,0.0000018515,0.0000018527,0.0000018546, -0.0000018573,0.0000018604,0.0000018636,0.0000018668,0.0000018699, -0.0000018729,0.0000018759,0.0000018789,0.0000018814,0.0000018828, -0.0000018824,0.0000018805,0.0000018780,0.0000018759,0.0000018745, -0.0000018738,0.0000018735,0.0000018730,0.0000018715,0.0000018690, -0.0000018655,0.0000018610,0.0000018558,0.0000018503,0.0000018449, -0.0000018396,0.0000018344,0.0000018295,0.0000018250,0.0000018213, -0.0000018184,0.0000018163,0.0000018153,0.0000018151,0.0000018155, -0.0000018162,0.0000018172,0.0000018185,0.0000018198,0.0000018211, -0.0000018227,0.0000018244,0.0000018262,0.0000018276,0.0000018289, -0.0000018302,0.0000018310,0.0000018317,0.0000018323,0.0000018328, -0.0000018331,0.0000018334,0.0000018335,0.0000018335,0.0000018334, -0.0000018333,0.0000018333,0.0000018331,0.0000018328,0.0000018325, -0.0000018323,0.0000018322,0.0000018326,0.0000018335,0.0000018350, -0.0000018370,0.0000018393,0.0000018416,0.0000018436,0.0000018454, -0.0000018470,0.0000018485,0.0000018497,0.0000018505,0.0000018510, -0.0000018513,0.0000018514,0.0000018513,0.0000018510,0.0000018505, -0.0000018496,0.0000018486,0.0000018477,0.0000018467,0.0000018457, -0.0000018447,0.0000018436,0.0000018424,0.0000018413,0.0000018405, -0.0000018401,0.0000018400,0.0000018403,0.0000018406,0.0000018408, -0.0000018411,0.0000018415,0.0000018421,0.0000018427,0.0000018436, -0.0000018447,0.0000018459,0.0000018475,0.0000018494,0.0000018512, -0.0000018529,0.0000018542,0.0000018554,0.0000018564,0.0000018572, -0.0000018582,0.0000018598,0.0000018620,0.0000018648,0.0000018681, -0.0000018715,0.0000018751,0.0000018799,0.0000018861,0.0000018932, -0.0000019001,0.0000019057,0.0000019091,0.0000019109,0.0000019116, -0.0000019110,0.0000019097,0.0000019075,0.0000019048,0.0000019021, -0.0000018998,0.0000018984,0.0000018981,0.0000018992,0.0000019020, -0.0000019061,0.0000019101,0.0000019132,0.0000019154,0.0000019174, -0.0000019197,0.0000019220,0.0000019232,0.0000019226,0.0000019211, -0.0000019202,0.0000019215,0.0000019242,0.0000019257,0.0000019247, -0.0000019212,0.0000019176,0.0000019162,0.0000019174,0.0000019202, -0.0000019238,0.0000019278,0.0000019318,0.0000019352,0.0000019372, -0.0000019373,0.0000019364,0.0000019338,0.0000019302,0.0000019270, -0.0000019258,0.0000019259,0.0000019280,0.0000019318,0.0000019369, -0.0000019429,0.0000019499,0.0000019579,0.0000019676,0.0000019789, -0.0000019908,0.0000020023,0.0000020120,0.0000020186,0.0000020219, -0.0000020221,0.0000020219,0.0000020211,0.0000020206,0.0000020203, -0.0000020199,0.0000020194,0.0000020187,0.0000020179,0.0000020171, -0.0000020163,0.0000020156,0.0000020154,0.0000020159,0.0000020173, -0.0000020196,0.0000020224,0.0000020253,0.0000020278,0.0000020296, -0.0000020310,0.0000020320,0.0000020329,0.0000020337,0.0000020346, -0.0000020351,0.0000020352,0.0000020353,0.0000020356,0.0000020363, -0.0000020372,0.0000020383,0.0000020394,0.0000020403,0.0000020410, -0.0000020415,0.0000020416,0.0000020415,0.0000020411,0.0000020406, -0.0000020401,0.0000020393,0.0000020389,0.0000020384,0.0000020378, -0.0000020367,0.0000020349,0.0000020326,0.0000020301,0.0000020279, -0.0000020264,0.0000020254,0.0000020248,0.0000020246,0.0000020246, -0.0000020246,0.0000020249,0.0000020253,0.0000020258,0.0000020264, -0.0000020273,0.0000020282,0.0000020290,0.0000020296,0.0000020298, -0.0000020296,0.0000020292,0.0000020284,0.0000020273,0.0000020260, -0.0000020242,0.0000020218,0.0000020188,0.0000020151,0.0000020104, -0.0000020048,0.0000019983,0.0000019918,0.0000019856,0.0000019805, -0.0000019764,0.0000019732,0.0000019708,0.0000019683,0.0000019658, -0.0000019631,0.0000019605,0.0000019582,0.0000019563,0.0000019546, -0.0000019523,0.0000019492,0.0000019459,0.0000019430,0.0000019407, -0.0000019390,0.0000019378,0.0000019367,0.0000019353,0.0000019340, -0.0000019320,0.0000019295,0.0000019265,0.0000019234,0.0000019214, -0.0000019204,0.0000019204,0.0000019201,0.0000019192,0.0000019172, -0.0000019147,0.0000019129,0.0000019126,0.0000019114,0.0000019108, -0.0000019119,0.0000019149,0.0000019182,0.0000019209,0.0000019227, -0.0000019246,0.0000019275,0.0000019315,0.0000019362,0.0000019409, -0.0000019450,0.0000019483,0.0000019510,0.0000019533,0.0000019554, -0.0000019572,0.0000019589,0.0000019608,0.0000019625,0.0000019627, -0.0000019600,0.0000019554,0.0000019518,0.0000019501,0.0000019493, -0.0000019485,0.0000019477,0.0000019475,0.0000019480,0.0000019484, -0.0000019484,0.0000019487,0.0000019497,0.0000019509,0.0000019523, -0.0000019540,0.0000019553,0.0000019555,0.0000019548,0.0000019536, -0.0000019522,0.0000019504,0.0000019488,0.0000019474,0.0000019464, -0.0000019458,0.0000019454,0.0000019452,0.0000019451,0.0000019456, -0.0000019468,0.0000019483,0.0000019496,0.0000019508,0.0000019516, -0.0000019521,0.0000019523,0.0000019521,0.0000019515,0.0000019516, -0.0000019518,0.0000019518,0.0000019519,0.0000019521,0.0000019521, -0.0000019521,0.0000019521,0.0000019520,0.0000019519,0.0000019512, -0.0000019500,0.0000019484,0.0000019463,0.0000019440,0.0000019415, -0.0000019387,0.0000019356,0.0000019323,0.0000019291,0.0000019262, -0.0000019238,0.0000019228,0.0000019231,0.0000019238,0.0000019245, -0.0000019253,0.0000019266,0.0000019278,0.0000019291,0.0000019307, -0.0000019322,0.0000019333,0.0000019341,0.0000019348,0.0000019353, -0.0000019352,0.0000019344,0.0000019330,0.0000019309,0.0000019284, -0.0000019258,0.0000019231,0.0000019209,0.0000019195,0.0000019186, -0.0000019174,0.0000019151,0.0000019115,0.0000019073,0.0000019034, -0.0000019005,0.0000018998,0.0000019008,0.0000019037,0.0000019072, -0.0000019103,0.0000019135,0.0000019163,0.0000019186,0.0000019202, -0.0000019212,0.0000019216,0.0000019219,0.0000019224,0.0000019241, -0.0000019271,0.0000019316,0.0000019377,0.0000019450,0.0000019525, -0.0000019587,0.0000019636,0.0000019677,0.0000019707,0.0000019719, -0.0000019718,0.0000019716,0.0000019717,0.0000019727,0.0000019749, -0.0000019776,0.0000019806,0.0000019842,0.0000019873,0.0000019898, -0.0000019921,0.0000019941,0.0000019959,0.0000019973,0.0000019982, -0.0000019991,0.0000019995,0.0000019996,0.0000019998,0.0000020003, -0.0000020008,0.0000020012,0.0000020023,0.0000020042,0.0000020061, -0.0000020085,0.0000020110,0.0000020135,0.0000020159,0.0000020182, -0.0000020202,0.0000020217,0.0000020228,0.0000020239,0.0000020245, -0.0000020248,0.0000020253,0.0000020261,0.0000020270,0.0000020282, -0.0000020294,0.0000020306,0.0000020324,0.0000020344,0.0000020368, -0.0000020395,0.0000020423,0.0000020452,0.0000020477,0.0000020496, -0.0000020513,0.0000020531,0.0000020547,0.0000020558,0.0000020567, -0.0000020575,0.0000020583,0.0000020591,0.0000020596,0.0000020599, -0.0000020602,0.0000020603,0.0000020604,0.0000020601,0.0000020597, -0.0000020588,0.0000020578,0.0000020570,0.0000020568,0.0000020569, -0.0000020572,0.0000020578,0.0000020587,0.0000020598,0.0000020611, -0.0000020624,0.0000020634,0.0000020641,0.0000020646,0.0000020654, -0.0000020664,0.0000020678,0.0000020692,0.0000020706,0.0000020722, -0.0000020739,0.0000020758,0.0000020782,0.0000020809,0.0000020839, -0.0000020869,0.0000020898,0.0000020926,0.0000020956,0.0000020991, -0.0000021029,0.0000021069,0.0000021113,0.0000021159,0.0000021198, -0.0000021218,0.0000021220,0.0000021214,0.0000021200,0.0000021180, -0.0000021150,0.0000021094,0.0000021011,0.0000020933,0.0000020878, -0.0000020842,0.0000020794,0.0000020730,0.0000020691,0.0000020695, -0.0000020730,0.0000020778,0.0000020829,0.0000020883,0.0000020933, -0.0000020971,0.0000020997,0.0000021012,0.0000021019,0.0000021020, -0.0000021009,0.0000020978,0.0000020946,0.0000020929,0.0000020914, -0.0000020893,0.0000020878,0.0000020886,0.0000020918,0.0000020956, -0.0000020985,0.0000021003,0.0000021015,0.0000021028,0.0000021047, -0.0000021072,0.0000021101,0.0000021128,0.0000021149,0.0000021157, -0.0000021154,0.0000021134,0.0000021100,0.0000021056,0.0000021010, -0.0000020979,0.0000020960,0.0000020934,0.0000020891,0.0000020839, -0.0000020796,0.0000020765,0.0000020739,0.0000020731,0.0000020751, -0.0000020795,0.0000020834,0.0000020862,0.0000020881,0.0000020884, -0.0000020870,0.0000020854,0.0000020847,0.0000020847,0.0000020846, -0.0000020825,0.0000020782,0.0000020725,0.0000020668,0.0000020612, -0.0000020553,0.0000020497,0.0000020445,0.0000020407,0.0000020386, -0.0000020379,0.0000020383,0.0000020387,0.0000020387,0.0000020380, -0.0000020367,0.0000020352,0.0000020338,0.0000020335,0.0000020340, -0.0000020341,0.0000020327,0.0000020285,0.0000020215,0.0000020129, -0.0000020059,0.0000020035,0.0000020044,0.0000020101,0.0000020195, -0.0000020283,0.0000020346,0.0000020420,0.0000020482,0.0000020491, -0.0000020398,0.0000020180,0.0000019994,0.0000019971,0.0000020147, -0.0000020365,0.0000020429,0.0000020427,0.0000020453,0.0000020561, -0.0000020695,0.0000020737,0.0000020750,0.0000020848,0.0000020956, -0.0000020996,0.0000021022,0.0000021120,0.0000021322,0.0000021520, -0.0000021629,0.0000021696,0.0000021745,0.0000021779,0.0000021794, -0.0000021779,0.0000021752,0.0000021746,0.0000021755,0.0000021750, -0.0000021732,0.0000021737,0.0000021770,0.0000021794,0.0000021794, -0.0000021788,0.0000021787,0.0000021791,0.0000021805,0.0000021832, -0.0000021854,0.0000021859,0.0000021847,0.0000021815,0.0000021775, -0.0000021741,0.0000021714,0.0000021688,0.0000021659,0.0000021623, -0.0000021588,0.0000021564,0.0000021546,0.0000021538,0.0000021542, -0.0000021556,0.0000021572,0.0000021586,0.0000021606,0.0000021631, -0.0000021656,0.0000021672,0.0000021679,0.0000021667,0.0000021636, -0.0000021590,0.0000021543,0.0000021496,0.0000021441,0.0000021383, -0.0000021332,0.0000021292,0.0000021269,0.0000021259,0.0000021262, -0.0000021266,0.0000021270,0.0000021268,0.0000021250,0.0000021219, -0.0000021174,0.0000021113,0.0000021042,0.0000020964,0.0000020888, -0.0000020820,0.0000020764,0.0000020718,0.0000020687,0.0000020679, -0.0000020682,0.0000020693,0.0000020714,0.0000020738,0.0000020760, -0.0000020777,0.0000020786,0.0000020792,0.0000020798,0.0000020807, -0.0000020815,0.0000020827,0.0000020835,0.0000020841,0.0000020849, -0.0000020856,0.0000020863,0.0000020867,0.0000020872,0.0000020870, -0.0000020867,0.0000020867,0.0000020868,0.0000020868,0.0000020867, -0.0000020869,0.0000020873,0.0000020880,0.0000020888,0.0000020897, -0.0000020906,0.0000020910,0.0000020913,0.0000020913,0.0000020909, -0.0000020904,0.0000020900,0.0000020895,0.0000020889,0.0000020883, -0.0000020880,0.0000020879,0.0000020878,0.0000020880,0.0000020878, -0.0000020868,0.0000020860,0.0000020849,0.0000020834,0.0000020817, -0.0000020812,0.0000020811,0.0000020810,0.0000020812,0.0000020826, -0.0000020840,0.0000020849,0.0000020852,0.0000020852,0.0000020851, -0.0000020849,0.0000020854,0.0000020867,0.0000020879,0.0000020893, -0.0000020912,0.0000020930,0.0000020939,0.0000020938,0.0000020925, -0.0000020904,0.0000020883,0.0000020860,0.0000020835,0.0000020821, -0.0000020812,0.0000020803,0.0000020799,0.0000020805,0.0000020813, -0.0000020817,0.0000020813,0.0000020801,0.0000020792,0.0000020785, -0.0000020782,0.0000020784,0.0000020781,0.0000020777,0.0000020766, -0.0000020749,0.0000020732,0.0000020714,0.0000020695,0.0000020677, -0.0000020671,0.0000020676,0.0000020693,0.0000020720,0.0000020754, -0.0000020792,0.0000020830,0.0000020870,0.0000020911,0.0000020946, -0.0000020979,0.0000021015,0.0000021053,0.0000021092,0.0000021128, -0.0000021161,0.0000021190,0.0000021216,0.0000021236,0.0000021249, -0.0000021255,0.0000021254,0.0000021246,0.0000021231,0.0000021212, -0.0000021188,0.0000021161,0.0000021132,0.0000021104,0.0000021075, -0.0000021043,0.0000021006,0.0000020971,0.0000020937,0.0000020900, -0.0000020869,0.0000020851,0.0000020849,0.0000020842,0.0000020847, -0.0000020853,0.0000020855,0.0000020855,0.0000020855,0.0000020853, -0.0000020853,0.0000020861,0.0000020874,0.0000020890,0.0000020909, -0.0000020929,0.0000020948,0.0000020965,0.0000020982,0.0000020998, -0.0000021011,0.0000021019,0.0000021022,0.0000021022,0.0000021022, -0.0000021021,0.0000021017,0.0000021015,0.0000021017,0.0000021026, -0.0000021039,0.0000021052,0.0000021062,0.0000021069,0.0000021076, -0.0000021082,0.0000021089,0.0000021097,0.0000021111,0.0000021132, -0.0000021156,0.0000021179,0.0000021199,0.0000021208,0.0000021217, -0.0000021234,0.0000021248,0.0000021261,0.0000021271,0.0000021276, -0.0000021278,0.0000021282,0.0000021283,0.0000021284,0.0000021290, -0.0000021296,0.0000021302,0.0000021314,0.0000021338,0.0000021371, -0.0000021415,0.0000021462,0.0000021507,0.0000021552,0.0000021593, -0.0000021627,0.0000021653,0.0000021672,0.0000021690,0.0000021708, -0.0000021731,0.0000021758,0.0000021787,0.0000021816,0.0000021847, -0.0000021877,0.0000021904,0.0000021929,0.0000021950,0.0000021968, -0.0000021980,0.0000021985,0.0000021982,0.0000021974,0.0000021961, -0.0000021943,0.0000021924,0.0000021906,0.0000021888,0.0000021871, -0.0000021855,0.0000021839,0.0000021823,0.0000021808,0.0000021796, -0.0000021787,0.0000021778,0.0000021776,0.0000021775,0.0000021767, -0.0000021765,0.0000021764,0.0000021758,0.0000021749,0.0000021739, -0.0000021728,0.0000021714,0.0000021697,0.0000021679,0.0000021661, -0.0000021644,0.0000021626,0.0000021608,0.0000021593,0.0000021582, -0.0000021574,0.0000021562,0.0000021545,0.0000021523,0.0000021499, -0.0000021473,0.0000021445,0.0000021415,0.0000021386,0.0000021359, -0.0000021342,0.0000021327,0.0000021324,0.0000021326,0.0000021329, -0.0000021328,0.0000021318,0.0000021296,0.0000021269,0.0000021243, -0.0000021226,0.0000021215,0.0000021211,0.0000021209,0.0000021209, -0.0000021209,0.0000021205,0.0000021193,0.0000021175,0.0000021146, -0.0000021109,0.0000021071,0.0000021040,0.0000021024,0.0000021017, -0.0000021016,0.0000021013,0.0000021005,0.0000020988,0.0000020959, -0.0000020920,0.0000020875,0.0000020834,0.0000020800,0.0000020769, -0.0000020739,0.0000020711,0.0000020691,0.0000020678,0.0000020675, -0.0000020685,0.0000020705,0.0000020734,0.0000020770,0.0000020808, -0.0000020838,0.0000020852,0.0000020851,0.0000020828,0.0000020806, -0.0000020770,0.0000020736,0.0000020702,0.0000020670,0.0000020642, -0.0000020620,0.0000020595,0.0000020566,0.0000020536,0.0000020508, -0.0000020481,0.0000020457,0.0000020438,0.0000020429,0.0000020425, -0.0000020420,0.0000020416,0.0000020412,0.0000020408,0.0000020402, -0.0000020394,0.0000020386,0.0000020378,0.0000020369,0.0000020358, -0.0000020347,0.0000020337,0.0000020333,0.0000020333,0.0000020332, -0.0000020328,0.0000020321,0.0000020314,0.0000020308,0.0000020310, -0.0000020320,0.0000020336,0.0000020351,0.0000020365,0.0000020374, -0.0000020377,0.0000020379,0.0000020372,0.0000020356,0.0000020330, -0.0000020291,0.0000020238,0.0000020179,0.0000020125,0.0000020077, -0.0000020039,0.0000020013,0.0000020003,0.0000020001,0.0000020001, -0.0000019996,0.0000019984,0.0000019964,0.0000019930,0.0000019886, -0.0000019836,0.0000019794,0.0000019768,0.0000019759,0.0000019768, -0.0000019790,0.0000019793,0.0000019767,0.0000019699,0.0000019600, -0.0000019495,0.0000019419,0.0000019373,0.0000019372,0.0000019384, -0.0000019389,0.0000019384,0.0000019379,0.0000019378,0.0000019383, -0.0000019399,0.0000019437,0.0000019488,0.0000019537,0.0000019567, -0.0000019570,0.0000019557,0.0000019521,0.0000019484,0.0000019465, -0.0000019473,0.0000019489,0.0000019503,0.0000019501,0.0000019496, -0.0000019507,0.0000019538,0.0000019586,0.0000019648,0.0000019716, -0.0000019777,0.0000019820,0.0000019847,0.0000019875,0.0000019914, -0.0000019964,0.0000020008,0.0000020035,0.0000020043,0.0000020038, -0.0000020028,0.0000020015,0.0000019999,0.0000019980,0.0000019961, -0.0000019946,0.0000019929,0.0000019911,0.0000019892,0.0000019879, -0.0000019873,0.0000019872,0.0000019876,0.0000019887,0.0000019911, -0.0000019943,0.0000019977,0.0000020006,0.0000020036,0.0000020068, -0.0000020102,0.0000020138,0.0000020176,0.0000020216,0.0000020254, -0.0000020285,0.0000020311,0.0000020329,0.0000020343,0.0000020354, -0.0000020360,0.0000020362,0.0000020364,0.0000020367,0.0000020372, -0.0000020384,0.0000020398,0.0000020415,0.0000020433,0.0000020451, -0.0000020471,0.0000020493,0.0000020514,0.0000020536,0.0000020555, -0.0000020570,0.0000020581,0.0000020591,0.0000020598,0.0000020599, -0.0000020593,0.0000020581,0.0000020567,0.0000020549,0.0000020532, -0.0000020523,0.0000020530,0.0000020556,0.0000020594,0.0000020634, -0.0000020675,0.0000020711,0.0000020732,0.0000020738,0.0000020747, -0.0000020788,0.0000020866,0.0000020965,0.0000021055,0.0000021103, -0.0000021110,0.0000021113,0.0000021128,0.0000021152,0.0000021170, -0.0000021165,0.0000021153,0.0000021147,0.0000021127,0.0000021089, -0.0000021053,0.0000021010,0.0000020954,0.0000020909,0.0000020879, -0.0000020847,0.0000020821,0.0000020810,0.0000020804,0.0000020796, -0.0000020781,0.0000020766,0.0000020756,0.0000020754,0.0000020756, -0.0000020751,0.0000020737,0.0000020715,0.0000020682,0.0000020638, -0.0000020592,0.0000020547,0.0000020506,0.0000020470,0.0000020437, -0.0000020406,0.0000020377,0.0000020353,0.0000020331,0.0000020312, -0.0000020293,0.0000020273,0.0000020254,0.0000020233,0.0000020210, -0.0000020186,0.0000020163,0.0000020143,0.0000020127,0.0000020114, -0.0000020104,0.0000020096,0.0000020092,0.0000020092,0.0000020094, -0.0000020097,0.0000020099,0.0000020101,0.0000020101,0.0000020103, -0.0000020106,0.0000020111,0.0000020115,0.0000020118,0.0000020121, -0.0000020127,0.0000020136,0.0000020148,0.0000020161,0.0000020175, -0.0000020190,0.0000020203,0.0000020214,0.0000020225,0.0000020234, -0.0000020243,0.0000020251,0.0000020258,0.0000020264,0.0000020268, -0.0000020273,0.0000020279,0.0000020282,0.0000020283,0.0000020282, -0.0000020276,0.0000020268,0.0000020258,0.0000020246,0.0000020237, -0.0000020230,0.0000020226,0.0000020224,0.0000020226,0.0000020233, -0.0000020243,0.0000020256,0.0000020267,0.0000020277,0.0000020283, -0.0000020286,0.0000020285,0.0000020275,0.0000020262,0.0000020238, -0.0000020205,0.0000020168,0.0000020129,0.0000020087,0.0000020045, -0.0000020006,0.0000019974,0.0000019953,0.0000019952,0.0000019954, -0.0000019973,0.0000020014,0.0000020069,0.0000020135,0.0000020198, -0.0000020249,0.0000020283,0.0000020300,0.0000020298,0.0000020289, -0.0000020278,0.0000020260,0.0000020247,0.0000020219,0.0000020194, -0.0000020164,0.0000020123,0.0000020077,0.0000020028,0.0000019984, -0.0000019948,0.0000019922,0.0000019915,0.0000019920,0.0000019932, -0.0000019953,0.0000019972,0.0000019982,0.0000019983,0.0000019980, -0.0000019976,0.0000019971,0.0000019968,0.0000019967,0.0000019960, -0.0000019939,0.0000019908,0.0000019874,0.0000019833,0.0000019787, -0.0000019743,0.0000019713,0.0000019698,0.0000019700,0.0000019720, -0.0000019750,0.0000019782,0.0000019811,0.0000019824,0.0000019819, -0.0000019781,0.0000019714,0.0000019639,0.0000019584,0.0000019569, -0.0000019579,0.0000019602,0.0000019624,0.0000019633,0.0000019626, -0.0000019579,0.0000019498,0.0000019413,0.0000019354,0.0000019335, -0.0000019343,0.0000019363,0.0000019378,0.0000019383,0.0000019387, -0.0000019394,0.0000019394,0.0000019386,0.0000019386,0.0000019404, -0.0000019425,0.0000019455,0.0000019495,0.0000019536,0.0000019562, -0.0000019571,0.0000019567,0.0000019558,0.0000019549,0.0000019541, -0.0000019526,0.0000019502,0.0000019475,0.0000019446,0.0000019410, -0.0000019373,0.0000019354,0.0000019357,0.0000019366,0.0000019358, -0.0000019322,0.0000019266,0.0000019214,0.0000019170,0.0000019133, -0.0000019108,0.0000019106,0.0000019132,0.0000019184,0.0000019261, -0.0000019359,0.0000019466,0.0000019563,0.0000019634,0.0000019676, -0.0000019696,0.0000019704,0.0000019706,0.0000019710,0.0000019721, -0.0000019740,0.0000019769,0.0000019806,0.0000019854,0.0000019907, -0.0000019955,0.0000019996,0.0000020028,0.0000020055,0.0000020081, -0.0000020102,0.0000020116,0.0000020120,0.0000020116,0.0000020106, -0.0000020088,0.0000020067,0.0000020044,0.0000020018,0.0000019989, -0.0000019954,0.0000019913,0.0000019867,0.0000019816,0.0000019752, -0.0000019679,0.0000019609,0.0000019548,0.0000019497,0.0000019448, -0.0000019412,0.0000019391,0.0000019375,0.0000019359,0.0000019342, -0.0000019333,0.0000019328,0.0000019317,0.0000019302,0.0000019278, -0.0000019253,0.0000019231,0.0000019209,0.0000019186,0.0000019160, -0.0000019134,0.0000019121,0.0000019116,0.0000019105,0.0000019083, -0.0000019050,0.0000019013,0.0000018954,0.0000018885,0.0000018820, -0.0000018763,0.0000018716,0.0000018678,0.0000018640,0.0000018594, -0.0000018553,0.0000018517,0.0000018483,0.0000018452,0.0000018427, -0.0000018416,0.0000018414,0.0000018420,0.0000018437,0.0000018462, -0.0000018494,0.0000018526,0.0000018558,0.0000018589,0.0000018620, -0.0000018651,0.0000018680,0.0000018707,0.0000018736,0.0000018756, -0.0000018753,0.0000018735,0.0000018713,0.0000018695,0.0000018681, -0.0000018674,0.0000018669,0.0000018656,0.0000018633,0.0000018599, -0.0000018556,0.0000018506,0.0000018453,0.0000018400,0.0000018350, -0.0000018303,0.0000018255,0.0000018208,0.0000018169,0.0000018144, -0.0000018134,0.0000018135,0.0000018141,0.0000018149,0.0000018158, -0.0000018165,0.0000018175,0.0000018186,0.0000018197,0.0000018209, -0.0000018223,0.0000018240,0.0000018253,0.0000018264,0.0000018273, -0.0000018277,0.0000018279,0.0000018280,0.0000018282,0.0000018283, -0.0000018285,0.0000018284,0.0000018282,0.0000018280,0.0000018276, -0.0000018271,0.0000018265,0.0000018259,0.0000018251,0.0000018241, -0.0000018233,0.0000018230,0.0000018231,0.0000018238,0.0000018255, -0.0000018277,0.0000018298,0.0000018317,0.0000018335,0.0000018354, -0.0000018371,0.0000018385,0.0000018395,0.0000018403,0.0000018410, -0.0000018415,0.0000018420,0.0000018422,0.0000018422,0.0000018421, -0.0000018419,0.0000018415,0.0000018408,0.0000018401,0.0000018392, -0.0000018381,0.0000018368,0.0000018354,0.0000018342,0.0000018334, -0.0000018329,0.0000018327,0.0000018328,0.0000018330,0.0000018334, -0.0000018341,0.0000018350,0.0000018360,0.0000018373,0.0000018388, -0.0000018403,0.0000018420,0.0000018438,0.0000018458,0.0000018478, -0.0000018498,0.0000018516,0.0000018531,0.0000018540,0.0000018551, -0.0000018566,0.0000018587,0.0000018615,0.0000018649,0.0000018684, -0.0000018713,0.0000018739,0.0000018770,0.0000018813,0.0000018869, -0.0000018932,0.0000018990,0.0000019032,0.0000019060,0.0000019076, -0.0000019082,0.0000019076,0.0000019062,0.0000019037,0.0000019012, -0.0000018990,0.0000018976,0.0000018973,0.0000018980,0.0000019006, -0.0000019046,0.0000019088,0.0000019122,0.0000019143,0.0000019162, -0.0000019184,0.0000019205,0.0000019216,0.0000019209,0.0000019199, -0.0000019198,0.0000019217,0.0000019242,0.0000019255,0.0000019242, -0.0000019207,0.0000019171,0.0000019157,0.0000019163,0.0000019185, -0.0000019217,0.0000019258,0.0000019301,0.0000019335,0.0000019356, -0.0000019357,0.0000019347,0.0000019327,0.0000019300,0.0000019274, -0.0000019257,0.0000019259,0.0000019274,0.0000019305,0.0000019349, -0.0000019402,0.0000019465,0.0000019539,0.0000019625,0.0000019723, -0.0000019830,0.0000019937,0.0000020036,0.0000020118,0.0000020177, -0.0000020206,0.0000020204,0.0000020202,0.0000020194,0.0000020187, -0.0000020183,0.0000020177,0.0000020169,0.0000020159,0.0000020146, -0.0000020131,0.0000020116,0.0000020102,0.0000020095,0.0000020098, -0.0000020113,0.0000020138,0.0000020165,0.0000020191,0.0000020212, -0.0000020227,0.0000020239,0.0000020251,0.0000020265,0.0000020275, -0.0000020280,0.0000020284,0.0000020292,0.0000020303,0.0000020315, -0.0000020328,0.0000020340,0.0000020351,0.0000020360,0.0000020369, -0.0000020374,0.0000020377,0.0000020376,0.0000020374,0.0000020369, -0.0000020363,0.0000020353,0.0000020340,0.0000020325,0.0000020307, -0.0000020288,0.0000020271,0.0000020256,0.0000020246,0.0000020239, -0.0000020235,0.0000020236,0.0000020239,0.0000020243,0.0000020245, -0.0000020248,0.0000020252,0.0000020255,0.0000020258,0.0000020260, -0.0000020265,0.0000020270,0.0000020275,0.0000020278,0.0000020279, -0.0000020279,0.0000020275,0.0000020270,0.0000020263,0.0000020253, -0.0000020238,0.0000020214,0.0000020185,0.0000020147,0.0000020096, -0.0000020031,0.0000019961,0.0000019895,0.0000019836,0.0000019787, -0.0000019748,0.0000019719,0.0000019693,0.0000019667,0.0000019636, -0.0000019602,0.0000019569,0.0000019540,0.0000019515,0.0000019493, -0.0000019470,0.0000019449,0.0000019432,0.0000019417,0.0000019402, -0.0000019385,0.0000019372,0.0000019368,0.0000019363,0.0000019359, -0.0000019347,0.0000019328,0.0000019301,0.0000019264,0.0000019230, -0.0000019209,0.0000019199,0.0000019191,0.0000019175,0.0000019153, -0.0000019130,0.0000019130,0.0000019109,0.0000019093,0.0000019088, -0.0000019103,0.0000019132,0.0000019161,0.0000019184,0.0000019197, -0.0000019211,0.0000019236,0.0000019279,0.0000019330,0.0000019384, -0.0000019434,0.0000019475,0.0000019503,0.0000019524,0.0000019543, -0.0000019559,0.0000019574,0.0000019590,0.0000019599,0.0000019592, -0.0000019560,0.0000019516,0.0000019485,0.0000019475,0.0000019474, -0.0000019474,0.0000019470,0.0000019470,0.0000019473,0.0000019478, -0.0000019483,0.0000019485,0.0000019486,0.0000019489,0.0000019495, -0.0000019500,0.0000019500,0.0000019497,0.0000019491,0.0000019484, -0.0000019475,0.0000019466,0.0000019459,0.0000019454,0.0000019452, -0.0000019452,0.0000019454,0.0000019462,0.0000019477,0.0000019491, -0.0000019504,0.0000019514,0.0000019521,0.0000019527,0.0000019529, -0.0000019529,0.0000019523,0.0000019519,0.0000019516,0.0000019513, -0.0000019509,0.0000019502,0.0000019492,0.0000019481,0.0000019473, -0.0000019464,0.0000019457,0.0000019448,0.0000019433,0.0000019416, -0.0000019395,0.0000019371,0.0000019346,0.0000019319,0.0000019290, -0.0000019261,0.0000019232,0.0000019203,0.0000019181,0.0000019181, -0.0000019185,0.0000019193,0.0000019202,0.0000019215,0.0000019234, -0.0000019256,0.0000019276,0.0000019297,0.0000019315,0.0000019328, -0.0000019334,0.0000019337,0.0000019339,0.0000019335,0.0000019324, -0.0000019305,0.0000019284,0.0000019262,0.0000019237,0.0000019208, -0.0000019179,0.0000019154,0.0000019133,0.0000019122,0.0000019115, -0.0000019102,0.0000019078,0.0000019030,0.0000018974,0.0000018930, -0.0000018921,0.0000018939,0.0000018970,0.0000019005,0.0000019044, -0.0000019086,0.0000019129,0.0000019162,0.0000019186,0.0000019202, -0.0000019207,0.0000019215,0.0000019226,0.0000019236,0.0000019251, -0.0000019281,0.0000019332,0.0000019401,0.0000019470,0.0000019533, -0.0000019585,0.0000019623,0.0000019650,0.0000019667,0.0000019677, -0.0000019678,0.0000019673,0.0000019670,0.0000019674,0.0000019685, -0.0000019705,0.0000019732,0.0000019758,0.0000019786,0.0000019815, -0.0000019842,0.0000019863,0.0000019879,0.0000019892,0.0000019900, -0.0000019902,0.0000019907,0.0000019914,0.0000019920,0.0000019924, -0.0000019931,0.0000019945,0.0000019961,0.0000019977,0.0000019998, -0.0000020018,0.0000020039,0.0000020060,0.0000020080,0.0000020096, -0.0000020111,0.0000020127,0.0000020138,0.0000020149,0.0000020160, -0.0000020175,0.0000020195,0.0000020217,0.0000020239,0.0000020259, -0.0000020284,0.0000020312,0.0000020339,0.0000020369,0.0000020400, -0.0000020431,0.0000020458,0.0000020480,0.0000020501,0.0000020520, -0.0000020535,0.0000020545,0.0000020554,0.0000020564,0.0000020573, -0.0000020581,0.0000020584,0.0000020589,0.0000020593,0.0000020594, -0.0000020595,0.0000020595,0.0000020591,0.0000020583,0.0000020572, -0.0000020561,0.0000020557,0.0000020557,0.0000020560,0.0000020564, -0.0000020567,0.0000020572,0.0000020580,0.0000020588,0.0000020597, -0.0000020605,0.0000020612,0.0000020621,0.0000020632,0.0000020645, -0.0000020660,0.0000020674,0.0000020688,0.0000020705,0.0000020723, -0.0000020745,0.0000020771,0.0000020803,0.0000020838,0.0000020872, -0.0000020902,0.0000020928,0.0000020955,0.0000020983,0.0000021016, -0.0000021054,0.0000021103,0.0000021152,0.0000021180,0.0000021185, -0.0000021179,0.0000021165,0.0000021146,0.0000021113,0.0000021048, -0.0000020962,0.0000020886,0.0000020834,0.0000020794,0.0000020737, -0.0000020678,0.0000020660,0.0000020677,0.0000020718,0.0000020768, -0.0000020818,0.0000020865,0.0000020904,0.0000020936,0.0000020958, -0.0000020967,0.0000020969,0.0000020970,0.0000020963,0.0000020935, -0.0000020909,0.0000020898,0.0000020891,0.0000020876,0.0000020863, -0.0000020866,0.0000020896,0.0000020936,0.0000020971,0.0000020995, -0.0000021010,0.0000021021,0.0000021032,0.0000021047,0.0000021066, -0.0000021087,0.0000021102,0.0000021108,0.0000021102,0.0000021080, -0.0000021048,0.0000021012,0.0000020979,0.0000020956,0.0000020936, -0.0000020907,0.0000020863,0.0000020817,0.0000020778,0.0000020744, -0.0000020716,0.0000020707,0.0000020729,0.0000020766,0.0000020800, -0.0000020833,0.0000020858,0.0000020862,0.0000020856,0.0000020849, -0.0000020848,0.0000020855,0.0000020856,0.0000020840,0.0000020798, -0.0000020743,0.0000020691,0.0000020645,0.0000020601,0.0000020551, -0.0000020492,0.0000020437,0.0000020398,0.0000020378,0.0000020373, -0.0000020374,0.0000020375,0.0000020369,0.0000020356,0.0000020338, -0.0000020324,0.0000020320,0.0000020323,0.0000020324,0.0000020312, -0.0000020271,0.0000020199,0.0000020111,0.0000020046,0.0000020029, -0.0000020049,0.0000020113,0.0000020213,0.0000020301,0.0000020367, -0.0000020439,0.0000020485,0.0000020467,0.0000020316,0.0000020085, -0.0000019954,0.0000020019,0.0000020253,0.0000020420,0.0000020441, -0.0000020443,0.0000020493,0.0000020615,0.0000020711,0.0000020734, -0.0000020789,0.0000020909,0.0000020987,0.0000021008,0.0000021050, -0.0000021189,0.0000021406,0.0000021570,0.0000021662,0.0000021727, -0.0000021769,0.0000021799,0.0000021809,0.0000021791,0.0000021766, -0.0000021762,0.0000021763,0.0000021748,0.0000021724,0.0000021727, -0.0000021759,0.0000021779,0.0000021778,0.0000021776,0.0000021782, -0.0000021793,0.0000021804,0.0000021812,0.0000021816,0.0000021816, -0.0000021805,0.0000021780,0.0000021755,0.0000021731,0.0000021708, -0.0000021685,0.0000021659,0.0000021631,0.0000021604,0.0000021579, -0.0000021558,0.0000021543,0.0000021539,0.0000021535,0.0000021535, -0.0000021541,0.0000021560,0.0000021586,0.0000021613,0.0000021638, -0.0000021654,0.0000021647,0.0000021632,0.0000021604,0.0000021574, -0.0000021535,0.0000021485,0.0000021433,0.0000021384,0.0000021337, -0.0000021295,0.0000021263,0.0000021246,0.0000021230,0.0000021214, -0.0000021196,0.0000021170,0.0000021134,0.0000021085,0.0000021022, -0.0000020951,0.0000020877,0.0000020808,0.0000020752,0.0000020717, -0.0000020710,0.0000020715,0.0000020724,0.0000020740,0.0000020763, -0.0000020789,0.0000020815,0.0000020831,0.0000020842,0.0000020849, -0.0000020851,0.0000020853,0.0000020853,0.0000020857,0.0000020860, -0.0000020863,0.0000020871,0.0000020879,0.0000020884,0.0000020885, -0.0000020886,0.0000020886,0.0000020889,0.0000020889,0.0000020889, -0.0000020890,0.0000020890,0.0000020887,0.0000020889,0.0000020897, -0.0000020907,0.0000020918,0.0000020931,0.0000020940,0.0000020950, -0.0000020959,0.0000020967,0.0000020973,0.0000020982,0.0000020993, -0.0000020998,0.0000021001,0.0000021006,0.0000021014,0.0000021019, -0.0000021023,0.0000021022,0.0000021015,0.0000021008,0.0000020996, -0.0000020985,0.0000020973,0.0000020968,0.0000020964,0.0000020963, -0.0000020967,0.0000020979,0.0000020989,0.0000020995,0.0000020995, -0.0000020989,0.0000020982,0.0000020982,0.0000020991,0.0000021000, -0.0000021013,0.0000021032,0.0000021049,0.0000021060,0.0000021061, -0.0000021052,0.0000021039,0.0000021026,0.0000021004,0.0000020975, -0.0000020950,0.0000020933,0.0000020925,0.0000020911,0.0000020901, -0.0000020896,0.0000020894,0.0000020888,0.0000020877,0.0000020858, -0.0000020841,0.0000020826,0.0000020814,0.0000020809,0.0000020801, -0.0000020789,0.0000020773,0.0000020753,0.0000020734,0.0000020714, -0.0000020693,0.0000020677,0.0000020671,0.0000020675,0.0000020691, -0.0000020715,0.0000020746,0.0000020782,0.0000020817,0.0000020856, -0.0000020895,0.0000020932,0.0000020963,0.0000020994,0.0000021030, -0.0000021065,0.0000021096,0.0000021128,0.0000021161,0.0000021192, -0.0000021218,0.0000021239,0.0000021256,0.0000021266,0.0000021271, -0.0000021271,0.0000021268,0.0000021260,0.0000021248,0.0000021235, -0.0000021222,0.0000021210,0.0000021194,0.0000021170,0.0000021143, -0.0000021113,0.0000021071,0.0000021021,0.0000020972,0.0000020928, -0.0000020887,0.0000020854,0.0000020842,0.0000020821,0.0000020813, -0.0000020816,0.0000020826,0.0000020841,0.0000020858,0.0000020872, -0.0000020880,0.0000020887,0.0000020892,0.0000020894,0.0000020894, -0.0000020895,0.0000020900,0.0000020906,0.0000020913,0.0000020922, -0.0000020932,0.0000020943,0.0000020953,0.0000020959,0.0000020962, -0.0000020970,0.0000020989,0.0000021013,0.0000021036,0.0000021054, -0.0000021066,0.0000021071,0.0000021071,0.0000021072,0.0000021070, -0.0000021068,0.0000021071,0.0000021087,0.0000021113,0.0000021142, -0.0000021168,0.0000021197,0.0000021232,0.0000021260,0.0000021284, -0.0000021306,0.0000021316,0.0000021320,0.0000021321,0.0000021317, -0.0000021313,0.0000021310,0.0000021309,0.0000021308,0.0000021320, -0.0000021334,0.0000021354,0.0000021381,0.0000021412,0.0000021446, -0.0000021485,0.0000021523,0.0000021555,0.0000021580,0.0000021599, -0.0000021615,0.0000021632,0.0000021652,0.0000021674,0.0000021695, -0.0000021717,0.0000021741,0.0000021764,0.0000021789,0.0000021812, -0.0000021833,0.0000021850,0.0000021863,0.0000021868,0.0000021866, -0.0000021857,0.0000021840,0.0000021819,0.0000021798,0.0000021777, -0.0000021758,0.0000021741,0.0000021725,0.0000021711,0.0000021702, -0.0000021697,0.0000021693,0.0000021691,0.0000021694,0.0000021700, -0.0000021706,0.0000021712,0.0000021718,0.0000021720,0.0000021717, -0.0000021711,0.0000021702,0.0000021691,0.0000021677,0.0000021661, -0.0000021644,0.0000021627,0.0000021614,0.0000021601,0.0000021589, -0.0000021581,0.0000021578,0.0000021571,0.0000021562,0.0000021550, -0.0000021535,0.0000021516,0.0000021495,0.0000021471,0.0000021443, -0.0000021411,0.0000021375,0.0000021342,0.0000021315,0.0000021299, -0.0000021285,0.0000021274,0.0000021264,0.0000021249,0.0000021230, -0.0000021209,0.0000021193,0.0000021186,0.0000021182,0.0000021179, -0.0000021177,0.0000021179,0.0000021180,0.0000021172,0.0000021154, -0.0000021125,0.0000021084,0.0000021036,0.0000020990,0.0000020960, -0.0000020942,0.0000020936,0.0000020934,0.0000020933,0.0000020928, -0.0000020915,0.0000020886,0.0000020847,0.0000020802,0.0000020755, -0.0000020709,0.0000020664,0.0000020624,0.0000020589,0.0000020560, -0.0000020542,0.0000020535,0.0000020540,0.0000020559,0.0000020590, -0.0000020628,0.0000020667,0.0000020706,0.0000020742,0.0000020769, -0.0000020783,0.0000020785,0.0000020768,0.0000020758,0.0000020736, -0.0000020710,0.0000020681,0.0000020649,0.0000020612,0.0000020572, -0.0000020532,0.0000020496,0.0000020462,0.0000020437,0.0000020423, -0.0000020418,0.0000020417,0.0000020419,0.0000020423,0.0000020427, -0.0000020429,0.0000020427,0.0000020421,0.0000020411,0.0000020399, -0.0000020387,0.0000020375,0.0000020362,0.0000020353,0.0000020351, -0.0000020349,0.0000020342,0.0000020330,0.0000020318,0.0000020307, -0.0000020297,0.0000020296,0.0000020303,0.0000020316,0.0000020336, -0.0000020359,0.0000020380,0.0000020391,0.0000020398,0.0000020400, -0.0000020393,0.0000020375,0.0000020339,0.0000020287,0.0000020231, -0.0000020176,0.0000020123,0.0000020077,0.0000020044,0.0000020025, -0.0000020019,0.0000020016,0.0000020010,0.0000019997,0.0000019975, -0.0000019940,0.0000019892,0.0000019841,0.0000019789,0.0000019750, -0.0000019724,0.0000019715,0.0000019722,0.0000019734,0.0000019728, -0.0000019701,0.0000019649,0.0000019565,0.0000019482,0.0000019423, -0.0000019397,0.0000019395,0.0000019406,0.0000019413,0.0000019411, -0.0000019404,0.0000019397,0.0000019404,0.0000019426,0.0000019466, -0.0000019513,0.0000019547,0.0000019558,0.0000019544,0.0000019520, -0.0000019500,0.0000019493,0.0000019498,0.0000019502,0.0000019494, -0.0000019484,0.0000019469,0.0000019477,0.0000019505,0.0000019548, -0.0000019607,0.0000019675,0.0000019741,0.0000019795,0.0000019833, -0.0000019863,0.0000019897,0.0000019937,0.0000019982,0.0000020016, -0.0000020040,0.0000020041,0.0000020038,0.0000020033,0.0000020024, -0.0000020008,0.0000019989,0.0000019967,0.0000019942,0.0000019913, -0.0000019882,0.0000019861,0.0000019846,0.0000019842,0.0000019848, -0.0000019867,0.0000019900,0.0000019940,0.0000019977,0.0000020010, -0.0000020042,0.0000020075,0.0000020109,0.0000020145,0.0000020187, -0.0000020234,0.0000020281,0.0000020320,0.0000020351,0.0000020372, -0.0000020387,0.0000020397,0.0000020402,0.0000020405,0.0000020405, -0.0000020404,0.0000020405,0.0000020408,0.0000020415,0.0000020420, -0.0000020428,0.0000020442,0.0000020461,0.0000020484,0.0000020505, -0.0000020521,0.0000020535,0.0000020544,0.0000020550,0.0000020553, -0.0000020553,0.0000020547,0.0000020535,0.0000020521,0.0000020507, -0.0000020500,0.0000020505,0.0000020531,0.0000020571,0.0000020618, -0.0000020664,0.0000020700,0.0000020722,0.0000020733,0.0000020752, -0.0000020801,0.0000020880,0.0000020975,0.0000021063,0.0000021116, -0.0000021126,0.0000021127,0.0000021136,0.0000021155,0.0000021174, -0.0000021174,0.0000021159,0.0000021149,0.0000021139,0.0000021109, -0.0000021070,0.0000021030,0.0000020980,0.0000020928,0.0000020894, -0.0000020869,0.0000020840,0.0000020813,0.0000020799,0.0000020796, -0.0000020794,0.0000020788,0.0000020774,0.0000020758,0.0000020746, -0.0000020737,0.0000020723,0.0000020703,0.0000020675,0.0000020639, -0.0000020597,0.0000020554,0.0000020515,0.0000020479,0.0000020446, -0.0000020413,0.0000020382,0.0000020355,0.0000020330,0.0000020307, -0.0000020283,0.0000020258,0.0000020235,0.0000020213,0.0000020190, -0.0000020167,0.0000020145,0.0000020124,0.0000020108,0.0000020096, -0.0000020087,0.0000020082,0.0000020081,0.0000020083,0.0000020087, -0.0000020087,0.0000020085,0.0000020079,0.0000020072,0.0000020063, -0.0000020054,0.0000020046,0.0000020037,0.0000020029,0.0000020023, -0.0000020022,0.0000020025,0.0000020032,0.0000020042,0.0000020054, -0.0000020066,0.0000020078,0.0000020090,0.0000020102,0.0000020114, -0.0000020127,0.0000020142,0.0000020158,0.0000020174,0.0000020190, -0.0000020207,0.0000020225,0.0000020238,0.0000020246,0.0000020247, -0.0000020243,0.0000020236,0.0000020226,0.0000020216,0.0000020206, -0.0000020198,0.0000020190,0.0000020183,0.0000020177,0.0000020172, -0.0000020172,0.0000020179,0.0000020189,0.0000020204,0.0000020218, -0.0000020232,0.0000020243,0.0000020251,0.0000020255,0.0000020255, -0.0000020250,0.0000020233,0.0000020208,0.0000020178,0.0000020142, -0.0000020103,0.0000020062,0.0000020022,0.0000019987,0.0000019965, -0.0000019950,0.0000019949,0.0000019966,0.0000019999,0.0000020047, -0.0000020105,0.0000020165,0.0000020220,0.0000020265,0.0000020291, -0.0000020296,0.0000020292,0.0000020275,0.0000020248,0.0000020218, -0.0000020181,0.0000020136,0.0000020089,0.0000020039,0.0000019991, -0.0000019952,0.0000019922,0.0000019911,0.0000019915,0.0000019929, -0.0000019956,0.0000019983,0.0000020005,0.0000020021,0.0000020028, -0.0000020031,0.0000020028,0.0000020021,0.0000020014,0.0000020008, -0.0000019996,0.0000019972,0.0000019934,0.0000019893,0.0000019845, -0.0000019792,0.0000019741,0.0000019702,0.0000019682,0.0000019682, -0.0000019704,0.0000019736,0.0000019773,0.0000019807,0.0000019828, -0.0000019831,0.0000019803,0.0000019737,0.0000019655,0.0000019590, -0.0000019569,0.0000019575,0.0000019600,0.0000019625,0.0000019637, -0.0000019632,0.0000019585,0.0000019500,0.0000019404,0.0000019334, -0.0000019311,0.0000019318,0.0000019335,0.0000019349,0.0000019355, -0.0000019359,0.0000019366,0.0000019364,0.0000019353,0.0000019347, -0.0000019353,0.0000019372,0.0000019401,0.0000019445,0.0000019490, -0.0000019519,0.0000019528,0.0000019528,0.0000019526,0.0000019525, -0.0000019523,0.0000019509,0.0000019483,0.0000019449,0.0000019410, -0.0000019364,0.0000019329,0.0000019322,0.0000019333,0.0000019340, -0.0000019326,0.0000019286,0.0000019237,0.0000019192,0.0000019146, -0.0000019101,0.0000019071,0.0000019065,0.0000019083,0.0000019119, -0.0000019176,0.0000019255,0.0000019352,0.0000019452,0.0000019539, -0.0000019603,0.0000019644,0.0000019666,0.0000019676,0.0000019682, -0.0000019690,0.0000019704,0.0000019725,0.0000019759,0.0000019805, -0.0000019855,0.0000019900,0.0000019937,0.0000019968,0.0000020000, -0.0000020029,0.0000020051,0.0000020064,0.0000020067,0.0000020062, -0.0000020048,0.0000020025,0.0000019995,0.0000019962,0.0000019928, -0.0000019890,0.0000019850,0.0000019809,0.0000019766,0.0000019715, -0.0000019655,0.0000019597,0.0000019547,0.0000019502,0.0000019457, -0.0000019422,0.0000019400,0.0000019381,0.0000019359,0.0000019336, -0.0000019317,0.0000019299,0.0000019284,0.0000019273,0.0000019258, -0.0000019240,0.0000019219,0.0000019191,0.0000019158,0.0000019122, -0.0000019089,0.0000019070,0.0000019062,0.0000019054,0.0000019040, -0.0000019014,0.0000018982,0.0000018928,0.0000018861,0.0000018799, -0.0000018746,0.0000018701,0.0000018662,0.0000018618,0.0000018571, -0.0000018527,0.0000018485,0.0000018443,0.0000018408,0.0000018383, -0.0000018371,0.0000018365,0.0000018365,0.0000018371,0.0000018383, -0.0000018402,0.0000018426,0.0000018452,0.0000018481,0.0000018514, -0.0000018548,0.0000018579,0.0000018605,0.0000018634,0.0000018668, -0.0000018690,0.0000018687,0.0000018671,0.0000018656,0.0000018642, -0.0000018629,0.0000018621,0.0000018608,0.0000018584,0.0000018547, -0.0000018503,0.0000018454,0.0000018404,0.0000018358,0.0000018315, -0.0000018271,0.0000018221,0.0000018174,0.0000018147,0.0000018137, -0.0000018137,0.0000018141,0.0000018148,0.0000018156,0.0000018160, -0.0000018161,0.0000018163,0.0000018168,0.0000018176,0.0000018185, -0.0000018196,0.0000018206,0.0000018209,0.0000018206,0.0000018196, -0.0000018183,0.0000018168,0.0000018154,0.0000018141,0.0000018132, -0.0000018121,0.0000018107,0.0000018092,0.0000018076,0.0000018057, -0.0000018039,0.0000018023,0.0000018008,0.0000017991,0.0000017973, -0.0000017959,0.0000017950,0.0000017945,0.0000017949,0.0000017961, -0.0000017980,0.0000018000,0.0000018019,0.0000018039,0.0000018059, -0.0000018078,0.0000018095,0.0000018111,0.0000018126,0.0000018142, -0.0000018157,0.0000018170,0.0000018182,0.0000018194,0.0000018206, -0.0000018217,0.0000018225,0.0000018230,0.0000018232,0.0000018232, -0.0000018230,0.0000018225,0.0000018217,0.0000018208,0.0000018199, -0.0000018192,0.0000018187,0.0000018186,0.0000018188,0.0000018193, -0.0000018202,0.0000018217,0.0000018234,0.0000018255,0.0000018281, -0.0000018307,0.0000018332,0.0000018356,0.0000018379,0.0000018402, -0.0000018425,0.0000018449,0.0000018472,0.0000018491,0.0000018508, -0.0000018526,0.0000018546,0.0000018570,0.0000018602,0.0000018639, -0.0000018676,0.0000018711,0.0000018743,0.0000018771,0.0000018799, -0.0000018836,0.0000018883,0.0000018933,0.0000018980,0.0000019011, -0.0000019030,0.0000019041,0.0000019044,0.0000019037,0.0000019026, -0.0000019007,0.0000018989,0.0000018974,0.0000018967,0.0000018972, -0.0000018996,0.0000019038,0.0000019083,0.0000019119,0.0000019142, -0.0000019159,0.0000019177,0.0000019194,0.0000019201,0.0000019198, -0.0000019197,0.0000019203,0.0000019221,0.0000019242,0.0000019248, -0.0000019233,0.0000019197,0.0000019162,0.0000019147,0.0000019149, -0.0000019162,0.0000019191,0.0000019232,0.0000019277,0.0000019313, -0.0000019338,0.0000019339,0.0000019332,0.0000019320,0.0000019303, -0.0000019285,0.0000019270,0.0000019273,0.0000019282,0.0000019307, -0.0000019345,0.0000019394,0.0000019453,0.0000019519,0.0000019592, -0.0000019672,0.0000019759,0.0000019851,0.0000019941,0.0000020024, -0.0000020094,0.0000020147,0.0000020177,0.0000020184,0.0000020180, -0.0000020175,0.0000020165,0.0000020156,0.0000020146,0.0000020132, -0.0000020116,0.0000020096,0.0000020076,0.0000020056,0.0000020040, -0.0000020035,0.0000020042,0.0000020060,0.0000020084,0.0000020107, -0.0000020126,0.0000020142,0.0000020158,0.0000020175,0.0000020189, -0.0000020198,0.0000020206,0.0000020217,0.0000020231,0.0000020245, -0.0000020259,0.0000020271,0.0000020281,0.0000020289,0.0000020296, -0.0000020302,0.0000020304,0.0000020304,0.0000020301,0.0000020296, -0.0000020289,0.0000020281,0.0000020273,0.0000020265,0.0000020256, -0.0000020246,0.0000020237,0.0000020231,0.0000020228,0.0000020227, -0.0000020228,0.0000020231,0.0000020233,0.0000020233,0.0000020232, -0.0000020229,0.0000020227,0.0000020225,0.0000020223,0.0000020222, -0.0000020223,0.0000020228,0.0000020235,0.0000020242,0.0000020253, -0.0000020259,0.0000020265,0.0000020267,0.0000020266,0.0000020263, -0.0000020253,0.0000020235,0.0000020208,0.0000020172,0.0000020126, -0.0000020065,0.0000019992,0.0000019921,0.0000019858,0.0000019808, -0.0000019764,0.0000019729,0.0000019698,0.0000019671,0.0000019640, -0.0000019602,0.0000019562,0.0000019524,0.0000019490,0.0000019459, -0.0000019432,0.0000019415,0.0000019408,0.0000019408,0.0000019402, -0.0000019388,0.0000019376,0.0000019367,0.0000019365,0.0000019366, -0.0000019368,0.0000019363,0.0000019356,0.0000019330,0.0000019289, -0.0000019243,0.0000019210,0.0000019188,0.0000019172,0.0000019153, -0.0000019149,0.0000019128,0.0000019108,0.0000019083,0.0000019066, -0.0000019060,0.0000019074,0.0000019102,0.0000019133,0.0000019153, -0.0000019164,0.0000019177,0.0000019204,0.0000019250,0.0000019310, -0.0000019372,0.0000019424,0.0000019463,0.0000019490,0.0000019509, -0.0000019526,0.0000019542,0.0000019553,0.0000019564,0.0000019569, -0.0000019553,0.0000019519,0.0000019480,0.0000019457,0.0000019454, -0.0000019461,0.0000019464,0.0000019461,0.0000019458,0.0000019460, -0.0000019464,0.0000019465,0.0000019462,0.0000019456,0.0000019448, -0.0000019438,0.0000019427,0.0000019418,0.0000019411,0.0000019405, -0.0000019399,0.0000019393,0.0000019389,0.0000019390,0.0000019391, -0.0000019392,0.0000019399,0.0000019416,0.0000019435,0.0000019450, -0.0000019461,0.0000019471,0.0000019482,0.0000019494,0.0000019505, -0.0000019511,0.0000019513,0.0000019511,0.0000019508,0.0000019504, -0.0000019496,0.0000019482,0.0000019466,0.0000019450,0.0000019434, -0.0000019413,0.0000019393,0.0000019370,0.0000019345,0.0000019319, -0.0000019289,0.0000019258,0.0000019225,0.0000019191,0.0000019158, -0.0000019126,0.0000019094,0.0000019074,0.0000019073,0.0000019076, -0.0000019084,0.0000019096,0.0000019112,0.0000019134,0.0000019161, -0.0000019191,0.0000019220,0.0000019246,0.0000019268,0.0000019285, -0.0000019296,0.0000019306,0.0000019309,0.0000019301,0.0000019282, -0.0000019261,0.0000019237,0.0000019214,0.0000019191,0.0000019166, -0.0000019140,0.0000019114,0.0000019096,0.0000019090,0.0000019094, -0.0000019093,0.0000019074,0.0000019021,0.0000018950,0.0000018910, -0.0000018905,0.0000018920,0.0000018949,0.0000018981,0.0000019014, -0.0000019050,0.0000019079,0.0000019100,0.0000019114,0.0000019128, -0.0000019146,0.0000019179,0.0000019202,0.0000019216,0.0000019228, -0.0000019246,0.0000019281,0.0000019331,0.0000019394,0.0000019455, -0.0000019508,0.0000019549,0.0000019581,0.0000019608,0.0000019629, -0.0000019638,0.0000019637,0.0000019634,0.0000019627,0.0000019626, -0.0000019634,0.0000019644,0.0000019660,0.0000019681,0.0000019706, -0.0000019730,0.0000019749,0.0000019767,0.0000019778,0.0000019785, -0.0000019792,0.0000019799,0.0000019806,0.0000019810,0.0000019814, -0.0000019823,0.0000019834,0.0000019846,0.0000019859,0.0000019874, -0.0000019892,0.0000019910,0.0000019929,0.0000019945,0.0000019962, -0.0000019980,0.0000019998,0.0000020014,0.0000020032,0.0000020055, -0.0000020084,0.0000020114,0.0000020144,0.0000020174,0.0000020207, -0.0000020243,0.0000020280,0.0000020317,0.0000020354,0.0000020389, -0.0000020421,0.0000020450,0.0000020476,0.0000020499,0.0000020517, -0.0000020531,0.0000020543,0.0000020555,0.0000020564,0.0000020568, -0.0000020569,0.0000020573,0.0000020573,0.0000020573,0.0000020575, -0.0000020576,0.0000020571,0.0000020564,0.0000020554,0.0000020543, -0.0000020537,0.0000020537,0.0000020540,0.0000020546,0.0000020550, -0.0000020553,0.0000020557,0.0000020562,0.0000020568,0.0000020575, -0.0000020582,0.0000020592,0.0000020603,0.0000020616,0.0000020631, -0.0000020646,0.0000020660,0.0000020675,0.0000020691,0.0000020708, -0.0000020727,0.0000020753,0.0000020785,0.0000020823,0.0000020862, -0.0000020897,0.0000020925,0.0000020946,0.0000020969,0.0000021001, -0.0000021048,0.0000021103,0.0000021140,0.0000021149,0.0000021144, -0.0000021129,0.0000021108,0.0000021068,0.0000020997,0.0000020909, -0.0000020836,0.0000020787,0.0000020741,0.0000020681,0.0000020636, -0.0000020631,0.0000020660,0.0000020705,0.0000020752,0.0000020796, -0.0000020833,0.0000020866,0.0000020897,0.0000020917,0.0000020920, -0.0000020918,0.0000020918,0.0000020912,0.0000020893,0.0000020873, -0.0000020866,0.0000020865,0.0000020860,0.0000020848,0.0000020850, -0.0000020874,0.0000020912,0.0000020950,0.0000020981,0.0000021002, -0.0000021014,0.0000021021,0.0000021029,0.0000021038,0.0000021047, -0.0000021055,0.0000021058,0.0000021049,0.0000021031,0.0000021007, -0.0000020979,0.0000020953,0.0000020934,0.0000020912,0.0000020880, -0.0000020840,0.0000020800,0.0000020762,0.0000020723,0.0000020690, -0.0000020680,0.0000020696,0.0000020726,0.0000020762,0.0000020802, -0.0000020834,0.0000020845,0.0000020844,0.0000020844,0.0000020849, -0.0000020855,0.0000020856,0.0000020842,0.0000020808,0.0000020766, -0.0000020726,0.0000020691,0.0000020659,0.0000020620,0.0000020570, -0.0000020510,0.0000020447,0.0000020392,0.0000020360,0.0000020351, -0.0000020352,0.0000020354,0.0000020345,0.0000020328,0.0000020311, -0.0000020302,0.0000020302,0.0000020305,0.0000020295,0.0000020255, -0.0000020184,0.0000020099,0.0000020042,0.0000020033,0.0000020058, -0.0000020127,0.0000020230,0.0000020317,0.0000020385,0.0000020451, -0.0000020478,0.0000020419,0.0000020221,0.0000020007,0.0000019960, -0.0000020103,0.0000020349,0.0000020458,0.0000020455,0.0000020463, -0.0000020537,0.0000020652,0.0000020717,0.0000020744,0.0000020842, -0.0000020961,0.0000021008,0.0000021024,0.0000021093,0.0000021262, -0.0000021468,0.0000021606,0.0000021690,0.0000021748,0.0000021789, -0.0000021820,0.0000021824,0.0000021802,0.0000021776,0.0000021768, -0.0000021765,0.0000021742,0.0000021710,0.0000021704,0.0000021726, -0.0000021747,0.0000021754,0.0000021760,0.0000021776,0.0000021789, -0.0000021791,0.0000021784,0.0000021776,0.0000021766,0.0000021750, -0.0000021733,0.0000021716,0.0000021701,0.0000021683,0.0000021670, -0.0000021663,0.0000021653,0.0000021638,0.0000021623,0.0000021607, -0.0000021587,0.0000021565,0.0000021546,0.0000021535,0.0000021533, -0.0000021537,0.0000021546,0.0000021560,0.0000021573,0.0000021580, -0.0000021585,0.0000021579,0.0000021572,0.0000021553,0.0000021528, -0.0000021489,0.0000021449,0.0000021414,0.0000021376,0.0000021340, -0.0000021309,0.0000021278,0.0000021249,0.0000021223,0.0000021195, -0.0000021160,0.0000021111,0.0000021051,0.0000020986,0.0000020917, -0.0000020848,0.0000020795,0.0000020771,0.0000020771,0.0000020783, -0.0000020799,0.0000020817,0.0000020840,0.0000020866,0.0000020891, -0.0000020907,0.0000020916,0.0000020918,0.0000020914,0.0000020906, -0.0000020896,0.0000020887,0.0000020888,0.0000020892,0.0000020897, -0.0000020904,0.0000020907,0.0000020907,0.0000020906,0.0000020909, -0.0000020909,0.0000020907,0.0000020906,0.0000020907,0.0000020907, -0.0000020904,0.0000020901,0.0000020905,0.0000020913,0.0000020924, -0.0000020938,0.0000020954,0.0000020972,0.0000020991,0.0000021008, -0.0000021020,0.0000021036,0.0000021057,0.0000021075,0.0000021088, -0.0000021099,0.0000021108,0.0000021112,0.0000021115,0.0000021112, -0.0000021103,0.0000021092,0.0000021087,0.0000021077,0.0000021071, -0.0000021069,0.0000021068,0.0000021070,0.0000021076,0.0000021086, -0.0000021094,0.0000021096,0.0000021093,0.0000021085,0.0000021082, -0.0000021081,0.0000021082,0.0000021089,0.0000021104,0.0000021119, -0.0000021128,0.0000021128,0.0000021121,0.0000021110,0.0000021101, -0.0000021080,0.0000021055,0.0000021033,0.0000021015,0.0000021003, -0.0000020996,0.0000020989,0.0000020986,0.0000020987,0.0000020985, -0.0000020981,0.0000020971,0.0000020955,0.0000020938,0.0000020922, -0.0000020911,0.0000020900,0.0000020886,0.0000020870,0.0000020853, -0.0000020835,0.0000020819,0.0000020801,0.0000020784,0.0000020770, -0.0000020760,0.0000020758,0.0000020765,0.0000020782,0.0000020805, -0.0000020834,0.0000020865,0.0000020895,0.0000020926,0.0000020952, -0.0000020976,0.0000021001,0.0000021030,0.0000021057,0.0000021081, -0.0000021107,0.0000021134,0.0000021159,0.0000021183,0.0000021209, -0.0000021232,0.0000021250,0.0000021262,0.0000021270,0.0000021273, -0.0000021272,0.0000021266,0.0000021259,0.0000021254,0.0000021249, -0.0000021241,0.0000021230,0.0000021218,0.0000021207,0.0000021190, -0.0000021161,0.0000021124,0.0000021086,0.0000021041,0.0000020990, -0.0000020939,0.0000020887,0.0000020841,0.0000020815,0.0000020801, -0.0000020802,0.0000020814,0.0000020830,0.0000020845,0.0000020861, -0.0000020875,0.0000020882,0.0000020881,0.0000020879,0.0000020877, -0.0000020873,0.0000020869,0.0000020868,0.0000020868,0.0000020870, -0.0000020873,0.0000020874,0.0000020876,0.0000020889,0.0000020914, -0.0000020944,0.0000020974,0.0000021003,0.0000021026,0.0000021039, -0.0000021048,0.0000021055,0.0000021057,0.0000021053,0.0000021046, -0.0000021046,0.0000021053,0.0000021071,0.0000021098,0.0000021135, -0.0000021182,0.0000021227,0.0000021267,0.0000021300,0.0000021323, -0.0000021335,0.0000021345,0.0000021347,0.0000021344,0.0000021340, -0.0000021337,0.0000021337,0.0000021346,0.0000021356,0.0000021371, -0.0000021390,0.0000021409,0.0000021429,0.0000021453,0.0000021479, -0.0000021503,0.0000021525,0.0000021544,0.0000021562,0.0000021580, -0.0000021599,0.0000021616,0.0000021630,0.0000021643,0.0000021656, -0.0000021669,0.0000021685,0.0000021702,0.0000021717,0.0000021729, -0.0000021737,0.0000021739,0.0000021734,0.0000021721,0.0000021701, -0.0000021676,0.0000021650,0.0000021627,0.0000021607,0.0000021589, -0.0000021573,0.0000021562,0.0000021554,0.0000021548,0.0000021544, -0.0000021545,0.0000021550,0.0000021556,0.0000021563,0.0000021570, -0.0000021576,0.0000021579,0.0000021579,0.0000021578,0.0000021576, -0.0000021573,0.0000021569,0.0000021562,0.0000021555,0.0000021549, -0.0000021543,0.0000021538,0.0000021536,0.0000021541,0.0000021547, -0.0000021549,0.0000021546,0.0000021541,0.0000021530,0.0000021517, -0.0000021502,0.0000021484,0.0000021463,0.0000021436,0.0000021401, -0.0000021361,0.0000021322,0.0000021287,0.0000021259,0.0000021227, -0.0000021198,0.0000021173,0.0000021150,0.0000021132,0.0000021129, -0.0000021131,0.0000021132,0.0000021130,0.0000021130,0.0000021129, -0.0000021124,0.0000021108,0.0000021081,0.0000021040,0.0000020988, -0.0000020932,0.0000020884,0.0000020846,0.0000020822,0.0000020812, -0.0000020808,0.0000020807,0.0000020803,0.0000020792,0.0000020770, -0.0000020741,0.0000020704,0.0000020659,0.0000020609,0.0000020560, -0.0000020514,0.0000020474,0.0000020443,0.0000020420,0.0000020410, -0.0000020414,0.0000020432,0.0000020459,0.0000020492,0.0000020527, -0.0000020565,0.0000020606,0.0000020645,0.0000020681,0.0000020709, -0.0000020725,0.0000020735,0.0000020739,0.0000020728,0.0000020714, -0.0000020693,0.0000020664,0.0000020622,0.0000020576,0.0000020530, -0.0000020486,0.0000020452,0.0000020433,0.0000020424,0.0000020422, -0.0000020425,0.0000020431,0.0000020440,0.0000020448,0.0000020450, -0.0000020445,0.0000020436,0.0000020425,0.0000020413,0.0000020398, -0.0000020384,0.0000020377,0.0000020372,0.0000020364,0.0000020352, -0.0000020336,0.0000020318,0.0000020303,0.0000020294,0.0000020290, -0.0000020293,0.0000020307,0.0000020331,0.0000020361,0.0000020386, -0.0000020406,0.0000020417,0.0000020426,0.0000020427,0.0000020415, -0.0000020388,0.0000020347,0.0000020296,0.0000020238,0.0000020179, -0.0000020128,0.0000020087,0.0000020060,0.0000020048,0.0000020040, -0.0000020028,0.0000020008,0.0000019978,0.0000019936,0.0000019889, -0.0000019845,0.0000019803,0.0000019766,0.0000019732,0.0000019706, -0.0000019688,0.0000019668,0.0000019671,0.0000019667,0.0000019637, -0.0000019606,0.0000019553,0.0000019500,0.0000019451,0.0000019424, -0.0000019415,0.0000019421,0.0000019422,0.0000019414,0.0000019404, -0.0000019399,0.0000019406,0.0000019437,0.0000019477,0.0000019512, -0.0000019526,0.0000019526,0.0000019522,0.0000019519,0.0000019526, -0.0000019533,0.0000019527,0.0000019507,0.0000019482,0.0000019467, -0.0000019462,0.0000019474,0.0000019502,0.0000019548,0.0000019610, -0.0000019679,0.0000019743,0.0000019794,0.0000019834,0.0000019866, -0.0000019897,0.0000019932,0.0000019972,0.0000020008,0.0000020040, -0.0000020050,0.0000020049,0.0000020040,0.0000020024,0.0000020004, -0.0000019980,0.0000019949,0.0000019909,0.0000019867,0.0000019838, -0.0000019821,0.0000019821,0.0000019832,0.0000019858,0.0000019898, -0.0000019945,0.0000019990,0.0000020029,0.0000020061,0.0000020089, -0.0000020122,0.0000020161,0.0000020210,0.0000020266,0.0000020320, -0.0000020366,0.0000020403,0.0000020429,0.0000020447,0.0000020458, -0.0000020461,0.0000020459,0.0000020454,0.0000020449,0.0000020442, -0.0000020434,0.0000020425,0.0000020424,0.0000020427,0.0000020442, -0.0000020464,0.0000020484,0.0000020501,0.0000020515,0.0000020523, -0.0000020526,0.0000020527,0.0000020527,0.0000020522,0.0000020514, -0.0000020506,0.0000020501,0.0000020507,0.0000020528,0.0000020563, -0.0000020606,0.0000020646,0.0000020679,0.0000020706,0.0000020728, -0.0000020762,0.0000020822,0.0000020903,0.0000020995,0.0000021077, -0.0000021129,0.0000021142,0.0000021141,0.0000021146,0.0000021161, -0.0000021176,0.0000021178,0.0000021164,0.0000021149,0.0000021140, -0.0000021122,0.0000021089,0.0000021048,0.0000021001,0.0000020948, -0.0000020904,0.0000020877,0.0000020855,0.0000020829,0.0000020803, -0.0000020785,0.0000020781,0.0000020783,0.0000020781,0.0000020770, -0.0000020756,0.0000020744,0.0000020730,0.0000020710,0.0000020684, -0.0000020652,0.0000020615,0.0000020575,0.0000020536,0.0000020497, -0.0000020461,0.0000020428,0.0000020394,0.0000020361,0.0000020332, -0.0000020305,0.0000020278,0.0000020252,0.0000020227,0.0000020203, -0.0000020179,0.0000020152,0.0000020126,0.0000020100,0.0000020076, -0.0000020056,0.0000020040,0.0000020028,0.0000020020,0.0000020019, -0.0000020018,0.0000020017,0.0000020014,0.0000020006,0.0000019996, -0.0000019985,0.0000019973,0.0000019960,0.0000019947,0.0000019936, -0.0000019928,0.0000019925,0.0000019927,0.0000019933,0.0000019942, -0.0000019954,0.0000019964,0.0000019973,0.0000019979,0.0000019983, -0.0000019986,0.0000019990,0.0000019995,0.0000020001,0.0000020009, -0.0000020020,0.0000020039,0.0000020065,0.0000020097,0.0000020128, -0.0000020156,0.0000020180,0.0000020196,0.0000020204,0.0000020204, -0.0000020200,0.0000020193,0.0000020183,0.0000020171,0.0000020160, -0.0000020149,0.0000020137,0.0000020128,0.0000020125,0.0000020127, -0.0000020136,0.0000020149,0.0000020165,0.0000020182,0.0000020200, -0.0000020215,0.0000020227,0.0000020234,0.0000020227,0.0000020221, -0.0000020207,0.0000020181,0.0000020150,0.0000020114,0.0000020075, -0.0000020035,0.0000019999,0.0000019973,0.0000019959,0.0000019962, -0.0000019964,0.0000019981,0.0000020020,0.0000020074,0.0000020140, -0.0000020208,0.0000020259,0.0000020289,0.0000020294,0.0000020290, -0.0000020271,0.0000020243,0.0000020205,0.0000020159,0.0000020109, -0.0000020060,0.0000020016,0.0000019979,0.0000019957,0.0000019951, -0.0000019959,0.0000019982,0.0000020007,0.0000020033,0.0000020055, -0.0000020070,0.0000020078,0.0000020082,0.0000020078,0.0000020069, -0.0000020056,0.0000020042,0.0000020023,0.0000019993,0.0000019949, -0.0000019902,0.0000019847,0.0000019786,0.0000019729,0.0000019686, -0.0000019663,0.0000019665,0.0000019688,0.0000019725,0.0000019764, -0.0000019801,0.0000019830,0.0000019842,0.0000019820,0.0000019756, -0.0000019670,0.0000019596,0.0000019565,0.0000019569,0.0000019596, -0.0000019625,0.0000019640,0.0000019636,0.0000019591,0.0000019502, -0.0000019396,0.0000019321,0.0000019296,0.0000019294,0.0000019307, -0.0000019320,0.0000019326,0.0000019329,0.0000019335,0.0000019336, -0.0000019324,0.0000019312,0.0000019309,0.0000019324,0.0000019356, -0.0000019403,0.0000019451,0.0000019483,0.0000019496,0.0000019498, -0.0000019499,0.0000019501,0.0000019501,0.0000019487,0.0000019456, -0.0000019413,0.0000019361,0.0000019309,0.0000019282,0.0000019285, -0.0000019300,0.0000019305,0.0000019285,0.0000019246,0.0000019210, -0.0000019172,0.0000019122,0.0000019069,0.0000019035,0.0000019027, -0.0000019038,0.0000019064,0.0000019103,0.0000019161,0.0000019239, -0.0000019330,0.0000019421,0.0000019501,0.0000019561,0.0000019600, -0.0000019623,0.0000019639,0.0000019652,0.0000019667,0.0000019690, -0.0000019725,0.0000019769,0.0000019814,0.0000019856,0.0000019893, -0.0000019929,0.0000019963,0.0000019991,0.0000020011,0.0000020019, -0.0000020018,0.0000020006,0.0000019981,0.0000019946,0.0000019908, -0.0000019870,0.0000019831,0.0000019793,0.0000019756,0.0000019719, -0.0000019677,0.0000019628,0.0000019583,0.0000019543,0.0000019509, -0.0000019473,0.0000019439,0.0000019413,0.0000019388,0.0000019362, -0.0000019335,0.0000019305,0.0000019272,0.0000019245,0.0000019229, -0.0000019220,0.0000019213,0.0000019200,0.0000019177,0.0000019144, -0.0000019102,0.0000019059,0.0000019025,0.0000019008,0.0000018999, -0.0000018993,0.0000018979,0.0000018956,0.0000018909,0.0000018847, -0.0000018788,0.0000018734,0.0000018686,0.0000018647,0.0000018611, -0.0000018569,0.0000018524,0.0000018477,0.0000018433,0.0000018397, -0.0000018371,0.0000018358,0.0000018352,0.0000018350,0.0000018347, -0.0000018346,0.0000018346,0.0000018351,0.0000018359,0.0000018379, -0.0000018410,0.0000018443,0.0000018475,0.0000018507,0.0000018536, -0.0000018572,0.0000018610,0.0000018628,0.0000018625,0.0000018617, -0.0000018605,0.0000018589,0.0000018574,0.0000018559,0.0000018535, -0.0000018497,0.0000018450,0.0000018403,0.0000018361,0.0000018324, -0.0000018285,0.0000018242,0.0000018199,0.0000018167,0.0000018152, -0.0000018149,0.0000018151,0.0000018157,0.0000018162,0.0000018164, -0.0000018161,0.0000018156,0.0000018151,0.0000018148,0.0000018145, -0.0000018138,0.0000018126,0.0000018110,0.0000018087,0.0000018055, -0.0000018017,0.0000017978,0.0000017943,0.0000017912,0.0000017888, -0.0000017866,0.0000017844,0.0000017822,0.0000017798,0.0000017773, -0.0000017749,0.0000017725,0.0000017706,0.0000017690,0.0000017676, -0.0000017661,0.0000017651,0.0000017647,0.0000017648,0.0000017655, -0.0000017667,0.0000017685,0.0000017704,0.0000017723,0.0000017741, -0.0000017757,0.0000017773,0.0000017788,0.0000017804,0.0000017822, -0.0000017842,0.0000017861,0.0000017881,0.0000017901,0.0000017921, -0.0000017942,0.0000017963,0.0000017982,0.0000017998,0.0000018011, -0.0000018020,0.0000018027,0.0000018031,0.0000018032,0.0000018031, -0.0000018028,0.0000018023,0.0000018016,0.0000018009,0.0000018006, -0.0000018006,0.0000018011,0.0000018024,0.0000018042,0.0000018066, -0.0000018098,0.0000018133,0.0000018169,0.0000018205,0.0000018241, -0.0000018277,0.0000018310,0.0000018340,0.0000018371,0.0000018399, -0.0000018428,0.0000018458,0.0000018486,0.0000018511,0.0000018540, -0.0000018574,0.0000018610,0.0000018647,0.0000018689,0.0000018732, -0.0000018766,0.0000018796,0.0000018825,0.0000018858,0.0000018898, -0.0000018937,0.0000018966,0.0000018986,0.0000018998,0.0000019008, -0.0000019014,0.0000019009,0.0000019002,0.0000018988,0.0000018974, -0.0000018965,0.0000018969,0.0000018994,0.0000019036,0.0000019083, -0.0000019122,0.0000019145,0.0000019159,0.0000019172,0.0000019183, -0.0000019191,0.0000019195,0.0000019200,0.0000019209,0.0000019224, -0.0000019239,0.0000019240,0.0000019218,0.0000019182,0.0000019149, -0.0000019131,0.0000019127,0.0000019136,0.0000019161,0.0000019201, -0.0000019249,0.0000019291,0.0000019321,0.0000019325,0.0000019326, -0.0000019320,0.0000019312,0.0000019300,0.0000019292,0.0000019289, -0.0000019299,0.0000019320,0.0000019355,0.0000019402,0.0000019452, -0.0000019507,0.0000019565,0.0000019628,0.0000019696,0.0000019768, -0.0000019843,0.0000019918,0.0000019989,0.0000020052,0.0000020103, -0.0000020139,0.0000020157,0.0000020156,0.0000020146,0.0000020134, -0.0000020120,0.0000020105,0.0000020086,0.0000020066,0.0000020042, -0.0000020020,0.0000020000,0.0000019988,0.0000019987,0.0000019998, -0.0000020012,0.0000020028,0.0000020043,0.0000020060,0.0000020079, -0.0000020098,0.0000020113,0.0000020128,0.0000020145,0.0000020164, -0.0000020182,0.0000020198,0.0000020210,0.0000020220,0.0000020227, -0.0000020233,0.0000020238,0.0000020239,0.0000020239,0.0000020238, -0.0000020236,0.0000020234,0.0000020234,0.0000020232,0.0000020231, -0.0000020228,0.0000020225,0.0000020221,0.0000020217,0.0000020211, -0.0000020204,0.0000020195,0.0000020187,0.0000020179,0.0000020174, -0.0000020173,0.0000020169,0.0000020168,0.0000020169,0.0000020173, -0.0000020178,0.0000020183,0.0000020191,0.0000020204,0.0000020220, -0.0000020234,0.0000020248,0.0000020260,0.0000020267,0.0000020269, -0.0000020267,0.0000020259,0.0000020241,0.0000020215,0.0000020179, -0.0000020131,0.0000020073,0.0000020003,0.0000019931,0.0000019867, -0.0000019816,0.0000019771,0.0000019731,0.0000019693,0.0000019658, -0.0000019626,0.0000019588,0.0000019544,0.0000019500,0.0000019461, -0.0000019426,0.0000019392,0.0000019366,0.0000019363,0.0000019370, -0.0000019375,0.0000019377,0.0000019373,0.0000019364,0.0000019358, -0.0000019356,0.0000019357,0.0000019365,0.0000019371,0.0000019363, -0.0000019346,0.0000019305,0.0000019252,0.0000019206,0.0000019173, -0.0000019195,0.0000019153,0.0000019124,0.0000019101,0.0000019077, -0.0000019051,0.0000019031,0.0000019024,0.0000019038,0.0000019067, -0.0000019097,0.0000019117,0.0000019129,0.0000019146,0.0000019180, -0.0000019233,0.0000019297,0.0000019360,0.0000019413,0.0000019448, -0.0000019472,0.0000019492,0.0000019508,0.0000019516,0.0000019523, -0.0000019528,0.0000019529,0.0000019512,0.0000019476,0.0000019440, -0.0000019427,0.0000019434,0.0000019444,0.0000019445,0.0000019442, -0.0000019438,0.0000019435,0.0000019436,0.0000019435,0.0000019429, -0.0000019418,0.0000019400,0.0000019386,0.0000019377,0.0000019371, -0.0000019368,0.0000019363,0.0000019356,0.0000019353,0.0000019354, -0.0000019354,0.0000019355,0.0000019358,0.0000019365,0.0000019372, -0.0000019379,0.0000019385,0.0000019388,0.0000019396,0.0000019412, -0.0000019430,0.0000019444,0.0000019454,0.0000019461,0.0000019461, -0.0000019460,0.0000019453,0.0000019442,0.0000019426,0.0000019408, -0.0000019386,0.0000019362,0.0000019335,0.0000019303,0.0000019271, -0.0000019238,0.0000019202,0.0000019167,0.0000019127,0.0000019087, -0.0000019048,0.0000019010,0.0000018990,0.0000018985,0.0000018985, -0.0000018988,0.0000018997,0.0000019009,0.0000019026,0.0000019052, -0.0000019080,0.0000019106,0.0000019131,0.0000019154,0.0000019175, -0.0000019191,0.0000019209,0.0000019225,0.0000019234,0.0000019235, -0.0000019229,0.0000019215,0.0000019199,0.0000019181,0.0000019161, -0.0000019141,0.0000019119,0.0000019100,0.0000019091,0.0000019092, -0.0000019094,0.0000019095,0.0000019086,0.0000019046,0.0000018982, -0.0000018929,0.0000018924,0.0000018940,0.0000018966,0.0000018997, -0.0000019023,0.0000019036,0.0000019033,0.0000019024,0.0000019020, -0.0000019029,0.0000019059,0.0000019100,0.0000019135,0.0000019163, -0.0000019187,0.0000019211,0.0000019235,0.0000019269,0.0000019311, -0.0000019363,0.0000019414,0.0000019463,0.0000019506,0.0000019542, -0.0000019568,0.0000019589,0.0000019603,0.0000019606,0.0000019605, -0.0000019603,0.0000019597,0.0000019594,0.0000019597,0.0000019608, -0.0000019624,0.0000019639,0.0000019652,0.0000019660,0.0000019668, -0.0000019677,0.0000019686,0.0000019694,0.0000019699,0.0000019700, -0.0000019705,0.0000019712,0.0000019721,0.0000019729,0.0000019740, -0.0000019755,0.0000019770,0.0000019786,0.0000019801,0.0000019816, -0.0000019835,0.0000019854,0.0000019872,0.0000019895,0.0000019922, -0.0000019953,0.0000019984,0.0000020014,0.0000020047,0.0000020083, -0.0000020124,0.0000020168,0.0000020213,0.0000020258,0.0000020301, -0.0000020342,0.0000020379,0.0000020413,0.0000020445,0.0000020473, -0.0000020496,0.0000020517,0.0000020535,0.0000020547,0.0000020554, -0.0000020558,0.0000020558,0.0000020555,0.0000020551,0.0000020550, -0.0000020550,0.0000020545,0.0000020537,0.0000020526,0.0000020515, -0.0000020506,0.0000020503,0.0000020507,0.0000020514,0.0000020521, -0.0000020527,0.0000020531,0.0000020535,0.0000020540,0.0000020545, -0.0000020552,0.0000020560,0.0000020571,0.0000020585,0.0000020601, -0.0000020618,0.0000020635,0.0000020652,0.0000020666,0.0000020678, -0.0000020690,0.0000020705,0.0000020727,0.0000020760,0.0000020803, -0.0000020851,0.0000020889,0.0000020913,0.0000020930,0.0000020955, -0.0000020998,0.0000021056,0.0000021100,0.0000021111,0.0000021106, -0.0000021091,0.0000021067,0.0000021019,0.0000020941,0.0000020853, -0.0000020785,0.0000020739,0.0000020689,0.0000020634,0.0000020607, -0.0000020613,0.0000020643,0.0000020686,0.0000020728,0.0000020763, -0.0000020792,0.0000020824,0.0000020853,0.0000020871,0.0000020872, -0.0000020865,0.0000020860,0.0000020855,0.0000020846,0.0000020833, -0.0000020828,0.0000020832,0.0000020836,0.0000020835,0.0000020840, -0.0000020856,0.0000020885,0.0000020920,0.0000020954,0.0000020980, -0.0000020996,0.0000021006,0.0000021012,0.0000021014,0.0000021017, -0.0000021017,0.0000021012,0.0000021002,0.0000020988,0.0000020968, -0.0000020945,0.0000020928,0.0000020911,0.0000020886,0.0000020853, -0.0000020818,0.0000020784,0.0000020748,0.0000020705,0.0000020665, -0.0000020650,0.0000020655,0.0000020676,0.0000020716,0.0000020766, -0.0000020807,0.0000020826,0.0000020833,0.0000020839,0.0000020844, -0.0000020848,0.0000020847,0.0000020834,0.0000020809,0.0000020780, -0.0000020751,0.0000020728,0.0000020709,0.0000020685,0.0000020652, -0.0000020603,0.0000020532,0.0000020449,0.0000020376,0.0000020332, -0.0000020321,0.0000020325,0.0000020329,0.0000020322,0.0000020302, -0.0000020286,0.0000020281,0.0000020285,0.0000020277,0.0000020239, -0.0000020170,0.0000020097,0.0000020050,0.0000020043,0.0000020065, -0.0000020139,0.0000020246,0.0000020332,0.0000020399,0.0000020454, -0.0000020459,0.0000020346,0.0000020127,0.0000019965,0.0000019987, -0.0000020202,0.0000020420,0.0000020477,0.0000020467,0.0000020494, -0.0000020578,0.0000020675,0.0000020718,0.0000020775,0.0000020901, -0.0000021001,0.0000021027,0.0000021051,0.0000021147,0.0000021333, -0.0000021519,0.0000021635,0.0000021710,0.0000021766,0.0000021809, -0.0000021839,0.0000021837,0.0000021803,0.0000021773,0.0000021764, -0.0000021757,0.0000021729,0.0000021687,0.0000021670,0.0000021681, -0.0000021705,0.0000021726,0.0000021744,0.0000021761,0.0000021773, -0.0000021772,0.0000021760,0.0000021742,0.0000021722,0.0000021698, -0.0000021675,0.0000021658,0.0000021643,0.0000021639,0.0000021647, -0.0000021655,0.0000021662,0.0000021665,0.0000021660,0.0000021647, -0.0000021629,0.0000021612,0.0000021597,0.0000021588,0.0000021579, -0.0000021571,0.0000021563,0.0000021558,0.0000021544,0.0000021528, -0.0000021505,0.0000021493,0.0000021490,0.0000021485,0.0000021473, -0.0000021450,0.0000021421,0.0000021393,0.0000021364,0.0000021340, -0.0000021318,0.0000021298,0.0000021278,0.0000021255,0.0000021225, -0.0000021186,0.0000021138,0.0000021083,0.0000021023,0.0000020965, -0.0000020919,0.0000020893,0.0000020883,0.0000020885,0.0000020895, -0.0000020910,0.0000020930,0.0000020953,0.0000020975,0.0000020991, -0.0000020999,0.0000021000,0.0000020994,0.0000020982,0.0000020969, -0.0000020952,0.0000020947,0.0000020947,0.0000020948,0.0000020951, -0.0000020952,0.0000020953,0.0000020950,0.0000020943,0.0000020939, -0.0000020937,0.0000020935,0.0000020933,0.0000020929,0.0000020926, -0.0000020921,0.0000020920,0.0000020924,0.0000020932,0.0000020944, -0.0000020961,0.0000020983,0.0000021006,0.0000021030,0.0000021054, -0.0000021079,0.0000021106,0.0000021131,0.0000021149,0.0000021164, -0.0000021173,0.0000021179,0.0000021179,0.0000021172,0.0000021163, -0.0000021156,0.0000021142,0.0000021131,0.0000021131,0.0000021132, -0.0000021133,0.0000021138,0.0000021144,0.0000021149,0.0000021150, -0.0000021147,0.0000021145,0.0000021144,0.0000021140,0.0000021136, -0.0000021132,0.0000021135,0.0000021146,0.0000021152,0.0000021152, -0.0000021146,0.0000021136,0.0000021126,0.0000021110,0.0000021089, -0.0000021066,0.0000021046,0.0000021027,0.0000021011,0.0000020999, -0.0000020994,0.0000020996,0.0000021001,0.0000021005,0.0000021005, -0.0000021000,0.0000020994,0.0000020986,0.0000020980,0.0000020975, -0.0000020966,0.0000020954,0.0000020943,0.0000020931,0.0000020920, -0.0000020911,0.0000020900,0.0000020889,0.0000020876,0.0000020865, -0.0000020859,0.0000020863,0.0000020878,0.0000020902,0.0000020931, -0.0000020961,0.0000020988,0.0000021012,0.0000021032,0.0000021048, -0.0000021068,0.0000021087,0.0000021103,0.0000021119,0.0000021137, -0.0000021153,0.0000021169,0.0000021189,0.0000021214,0.0000021235, -0.0000021254,0.0000021266,0.0000021276,0.0000021283,0.0000021285, -0.0000021280,0.0000021270,0.0000021264,0.0000021260,0.0000021250, -0.0000021237,0.0000021225,0.0000021216,0.0000021206,0.0000021190, -0.0000021171,0.0000021153,0.0000021130,0.0000021101,0.0000021071, -0.0000021030,0.0000020982,0.0000020933,0.0000020890,0.0000020855, -0.0000020830,0.0000020821,0.0000020807,0.0000020803,0.0000020802, -0.0000020803,0.0000020806,0.0000020817,0.0000020832,0.0000020846, -0.0000020858,0.0000020863,0.0000020864,0.0000020865,0.0000020862, -0.0000020856,0.0000020847,0.0000020847,0.0000020853,0.0000020865, -0.0000020881,0.0000020902,0.0000020927,0.0000020952,0.0000020976, -0.0000020996,0.0000021009,0.0000021020,0.0000021027,0.0000021029, -0.0000021029,0.0000021033,0.0000021048,0.0000021077,0.0000021116, -0.0000021161,0.0000021206,0.0000021248,0.0000021283,0.0000021310, -0.0000021331,0.0000021344,0.0000021348,0.0000021351,0.0000021355, -0.0000021367,0.0000021378,0.0000021386,0.0000021400,0.0000021417, -0.0000021432,0.0000021445,0.0000021461,0.0000021474,0.0000021486, -0.0000021497,0.0000021511,0.0000021528,0.0000021547,0.0000021566, -0.0000021583,0.0000021596,0.0000021605,0.0000021611,0.0000021614, -0.0000021617,0.0000021622,0.0000021625,0.0000021627,0.0000021626, -0.0000021622,0.0000021612,0.0000021596,0.0000021573,0.0000021545, -0.0000021517,0.0000021495,0.0000021474,0.0000021455,0.0000021440, -0.0000021427,0.0000021415,0.0000021405,0.0000021398,0.0000021395, -0.0000021395,0.0000021398,0.0000021399,0.0000021397,0.0000021394, -0.0000021393,0.0000021393,0.0000021397,0.0000021403,0.0000021411, -0.0000021418,0.0000021425,0.0000021431,0.0000021434,0.0000021436, -0.0000021440,0.0000021450,0.0000021466,0.0000021484,0.0000021497, -0.0000021506,0.0000021510,0.0000021508,0.0000021499,0.0000021488, -0.0000021474,0.0000021461,0.0000021443,0.0000021415,0.0000021374, -0.0000021328,0.0000021283,0.0000021237,0.0000021193,0.0000021143, -0.0000021103,0.0000021072,0.0000021057,0.0000021062,0.0000021072, -0.0000021077,0.0000021077,0.0000021074,0.0000021066,0.0000021051, -0.0000021026,0.0000020990,0.0000020943,0.0000020885,0.0000020825, -0.0000020769,0.0000020724,0.0000020694,0.0000020677,0.0000020665, -0.0000020658,0.0000020650,0.0000020639,0.0000020623,0.0000020600, -0.0000020568,0.0000020526,0.0000020480,0.0000020436,0.0000020397, -0.0000020365,0.0000020338,0.0000020318,0.0000020310,0.0000020315, -0.0000020332,0.0000020356,0.0000020384,0.0000020413,0.0000020446, -0.0000020484,0.0000020523,0.0000020561,0.0000020596,0.0000020627, -0.0000020655,0.0000020679,0.0000020691,0.0000020698,0.0000020698, -0.0000020678,0.0000020651,0.0000020619,0.0000020582,0.0000020541, -0.0000020509,0.0000020488,0.0000020474,0.0000020468,0.0000020465, -0.0000020467,0.0000020472,0.0000020476,0.0000020475,0.0000020470, -0.0000020462,0.0000020451,0.0000020437,0.0000020425,0.0000020415, -0.0000020406,0.0000020397,0.0000020387,0.0000020373,0.0000020354, -0.0000020334,0.0000020316,0.0000020305,0.0000020299,0.0000020301, -0.0000020310,0.0000020331,0.0000020358,0.0000020384,0.0000020406, -0.0000020422,0.0000020435,0.0000020437,0.0000020439,0.0000020426, -0.0000020402,0.0000020360,0.0000020312,0.0000020259,0.0000020205, -0.0000020153,0.0000020110,0.0000020082,0.0000020062,0.0000020042, -0.0000020016,0.0000019977,0.0000019931,0.0000019888,0.0000019851, -0.0000019821,0.0000019794,0.0000019767,0.0000019727,0.0000019684, -0.0000019645,0.0000019625,0.0000019611,0.0000019604,0.0000019606, -0.0000019596,0.0000019564,0.0000019522,0.0000019479,0.0000019451, -0.0000019430,0.0000019416,0.0000019405,0.0000019393,0.0000019388, -0.0000019395,0.0000019414,0.0000019442,0.0000019470,0.0000019491, -0.0000019502,0.0000019513,0.0000019532,0.0000019551,0.0000019564, -0.0000019556,0.0000019537,0.0000019509,0.0000019486,0.0000019470, -0.0000019478,0.0000019480,0.0000019507,0.0000019551,0.0000019608, -0.0000019670,0.0000019730,0.0000019781,0.0000019818,0.0000019842, -0.0000019866,0.0000019911,0.0000019969,0.0000020023,0.0000020052, -0.0000020058,0.0000020051,0.0000020035,0.0000020015,0.0000019987, -0.0000019948,0.0000019899,0.0000019853,0.0000019819,0.0000019804, -0.0000019806,0.0000019824,0.0000019858,0.0000019906,0.0000019960, -0.0000020013,0.0000020057,0.0000020091,0.0000020122,0.0000020156, -0.0000020202,0.0000020255,0.0000020314,0.0000020372,0.0000020424, -0.0000020466,0.0000020495,0.0000020512,0.0000020517,0.0000020515, -0.0000020509,0.0000020500,0.0000020487,0.0000020470,0.0000020452, -0.0000020439,0.0000020436,0.0000020444,0.0000020460,0.0000020477, -0.0000020493,0.0000020508,0.0000020517,0.0000020522,0.0000020525, -0.0000020526,0.0000020526,0.0000020526,0.0000020527,0.0000020536, -0.0000020554,0.0000020579,0.0000020608,0.0000020638,0.0000020669, -0.0000020699,0.0000020734,0.0000020783,0.0000020851,0.0000020934, -0.0000021021,0.0000021096,0.0000021141,0.0000021154,0.0000021154, -0.0000021158,0.0000021168,0.0000021176,0.0000021177,0.0000021163, -0.0000021145,0.0000021135,0.0000021123,0.0000021100,0.0000021063, -0.0000021016,0.0000020963,0.0000020915,0.0000020880,0.0000020859, -0.0000020841,0.0000020819,0.0000020792,0.0000020768,0.0000020757, -0.0000020756,0.0000020754,0.0000020747,0.0000020738,0.0000020729, -0.0000020716,0.0000020694,0.0000020665,0.0000020631,0.0000020594, -0.0000020553,0.0000020512,0.0000020471,0.0000020433,0.0000020397, -0.0000020360,0.0000020325,0.0000020291,0.0000020260,0.0000020232, -0.0000020203,0.0000020171,0.0000020137,0.0000020101,0.0000020063, -0.0000020028,0.0000019994,0.0000019966,0.0000019945,0.0000019931, -0.0000019925,0.0000019926,0.0000019932,0.0000019940,0.0000019947, -0.0000019953,0.0000019954,0.0000019954,0.0000019950,0.0000019944, -0.0000019937,0.0000019931,0.0000019927,0.0000019928,0.0000019932, -0.0000019938,0.0000019945,0.0000019953,0.0000019962,0.0000019970, -0.0000019973,0.0000019973,0.0000019972,0.0000019968,0.0000019962, -0.0000019954,0.0000019943,0.0000019934,0.0000019928,0.0000019929, -0.0000019939,0.0000019956,0.0000019979,0.0000020007,0.0000020039, -0.0000020073,0.0000020105,0.0000020131,0.0000020151,0.0000020163, -0.0000020167,0.0000020162,0.0000020150,0.0000020138,0.0000020126, -0.0000020114,0.0000020099,0.0000020090,0.0000020086,0.0000020090, -0.0000020101,0.0000020117,0.0000020134,0.0000020152,0.0000020171, -0.0000020188,0.0000020201,0.0000020210,0.0000020204,0.0000020195, -0.0000020178,0.0000020152,0.0000020118,0.0000020080,0.0000020045, -0.0000020016,0.0000019993,0.0000019976,0.0000019957,0.0000019954, -0.0000019968,0.0000020004,0.0000020063,0.0000020135,0.0000020202, -0.0000020252,0.0000020279,0.0000020287,0.0000020280,0.0000020264, -0.0000020236,0.0000020198,0.0000020155,0.0000020113,0.0000020072, -0.0000020040,0.0000020022,0.0000020018,0.0000020029,0.0000020045, -0.0000020064,0.0000020082,0.0000020097,0.0000020107,0.0000020113, -0.0000020114,0.0000020110,0.0000020098,0.0000020081,0.0000020060, -0.0000020035,0.0000020000,0.0000019953,0.0000019902,0.0000019843, -0.0000019779,0.0000019720,0.0000019677,0.0000019656,0.0000019656, -0.0000019679,0.0000019715,0.0000019754,0.0000019792,0.0000019826, -0.0000019840,0.0000019825,0.0000019768,0.0000019681,0.0000019601, -0.0000019562,0.0000019565,0.0000019591,0.0000019623,0.0000019641, -0.0000019637,0.0000019595,0.0000019505,0.0000019394,0.0000019312, -0.0000019281,0.0000019273,0.0000019283,0.0000019294,0.0000019297, -0.0000019300,0.0000019307,0.0000019309,0.0000019299,0.0000019283, -0.0000019276,0.0000019284,0.0000019317,0.0000019366,0.0000019420, -0.0000019458,0.0000019473,0.0000019473,0.0000019473,0.0000019477, -0.0000019474,0.0000019456,0.0000019418,0.0000019364,0.0000019299, -0.0000019246,0.0000019232,0.0000019243,0.0000019261,0.0000019261, -0.0000019239,0.0000019213,0.0000019187,0.0000019152,0.0000019098, -0.0000019042,0.0000019007,0.0000018991,0.0000018993,0.0000019007, -0.0000019035,0.0000019074,0.0000019130,0.0000019202,0.0000019285, -0.0000019370,0.0000019444,0.0000019501,0.0000019544,0.0000019574, -0.0000019595,0.0000019619,0.0000019650,0.0000019690,0.0000019735, -0.0000019781,0.0000019825,0.0000019866,0.0000019904,0.0000019936, -0.0000019961,0.0000019976,0.0000019979,0.0000019969,0.0000019946, -0.0000019913,0.0000019875,0.0000019836,0.0000019797,0.0000019759, -0.0000019722,0.0000019685,0.0000019645,0.0000019604,0.0000019566, -0.0000019536,0.0000019511,0.0000019483,0.0000019455,0.0000019425, -0.0000019394,0.0000019364,0.0000019332,0.0000019294,0.0000019247, -0.0000019203,0.0000019177,0.0000019167,0.0000019166,0.0000019163, -0.0000019151,0.0000019129,0.0000019092,0.0000019045,0.0000019000, -0.0000018970,0.0000018960,0.0000018959,0.0000018950,0.0000018932, -0.0000018890,0.0000018830,0.0000018773,0.0000018720,0.0000018672, -0.0000018635,0.0000018603,0.0000018564,0.0000018524,0.0000018479, -0.0000018432,0.0000018393,0.0000018368,0.0000018358,0.0000018353, -0.0000018349,0.0000018345,0.0000018339,0.0000018324,0.0000018308, -0.0000018299,0.0000018302,0.0000018318,0.0000018340,0.0000018369, -0.0000018405,0.0000018441,0.0000018479,0.0000018520,0.0000018554, -0.0000018570,0.0000018571,0.0000018564,0.0000018547,0.0000018526, -0.0000018507,0.0000018482,0.0000018445,0.0000018404,0.0000018363, -0.0000018329,0.0000018295,0.0000018257,0.0000018220,0.0000018196, -0.0000018181,0.0000018173,0.0000018169,0.0000018168,0.0000018168, -0.0000018167,0.0000018163,0.0000018156,0.0000018144,0.0000018126, -0.0000018099,0.0000018062,0.0000018018,0.0000017970,0.0000017918, -0.0000017864,0.0000017806,0.0000017750,0.0000017698,0.0000017658, -0.0000017629,0.0000017608,0.0000017591,0.0000017579,0.0000017569, -0.0000017561,0.0000017554,0.0000017544,0.0000017534,0.0000017528, -0.0000017531,0.0000017532,0.0000017531,0.0000017535,0.0000017542, -0.0000017553,0.0000017567,0.0000017582,0.0000017599,0.0000017618, -0.0000017635,0.0000017649,0.0000017659,0.0000017670,0.0000017679, -0.0000017688,0.0000017699,0.0000017712,0.0000017726,0.0000017742, -0.0000017761,0.0000017781,0.0000017803,0.0000017824,0.0000017844, -0.0000017860,0.0000017873,0.0000017883,0.0000017891,0.0000017897, -0.0000017901,0.0000017905,0.0000017906,0.0000017902,0.0000017894, -0.0000017885,0.0000017874,0.0000017864,0.0000017857,0.0000017858, -0.0000017864,0.0000017877,0.0000017899,0.0000017929,0.0000017962, -0.0000017998,0.0000018037,0.0000018080,0.0000018124,0.0000018164, -0.0000018203,0.0000018243,0.0000018281,0.0000018322,0.0000018365, -0.0000018404,0.0000018441,0.0000018479,0.0000018519,0.0000018558, -0.0000018598,0.0000018646,0.0000018695,0.0000018741,0.0000018783, -0.0000018815,0.0000018845,0.0000018875,0.0000018904,0.0000018930, -0.0000018950,0.0000018963,0.0000018973,0.0000018985,0.0000018992, -0.0000018990,0.0000018986,0.0000018974,0.0000018967,0.0000018970, -0.0000018993,0.0000019037,0.0000019085,0.0000019124,0.0000019146, -0.0000019158,0.0000019168,0.0000019178,0.0000019187,0.0000019195, -0.0000019203,0.0000019213,0.0000019225,0.0000019231,0.0000019223, -0.0000019197,0.0000019162,0.0000019130,0.0000019110,0.0000019103, -0.0000019108,0.0000019129,0.0000019168,0.0000019219,0.0000019269, -0.0000019306,0.0000019322,0.0000019325,0.0000019326,0.0000019323, -0.0000019319,0.0000019314,0.0000019314,0.0000019324,0.0000019342, -0.0000019371,0.0000019409,0.0000019451,0.0000019494,0.0000019540, -0.0000019589,0.0000019642,0.0000019697,0.0000019755,0.0000019816, -0.0000019876,0.0000019937,0.0000019995,0.0000020047,0.0000020087, -0.0000020111,0.0000020119,0.0000020109,0.0000020092,0.0000020076, -0.0000020060,0.0000020040,0.0000020018,0.0000019993,0.0000019974, -0.0000019957,0.0000019950,0.0000019951,0.0000019959,0.0000019969, -0.0000019981,0.0000019996,0.0000020012,0.0000020028,0.0000020046, -0.0000020067,0.0000020090,0.0000020113,0.0000020132,0.0000020149, -0.0000020163,0.0000020173,0.0000020181,0.0000020186,0.0000020191, -0.0000020195,0.0000020197,0.0000020198,0.0000020198,0.0000020199, -0.0000020199,0.0000020196,0.0000020191,0.0000020183,0.0000020172, -0.0000020160,0.0000020146,0.0000020134,0.0000020124,0.0000020119, -0.0000020117,0.0000020121,0.0000020125,0.0000020129,0.0000020135, -0.0000020144,0.0000020155,0.0000020165,0.0000020173,0.0000020181, -0.0000020195,0.0000020210,0.0000020225,0.0000020239,0.0000020249, -0.0000020255,0.0000020255,0.0000020250,0.0000020239,0.0000020219, -0.0000020190,0.0000020152,0.0000020103,0.0000020044,0.0000019983, -0.0000019918,0.0000019859,0.0000019808,0.0000019762,0.0000019718, -0.0000019675,0.0000019631,0.0000019591,0.0000019550,0.0000019504, -0.0000019457,0.0000019413,0.0000019375,0.0000019342,0.0000019314, -0.0000019300,0.0000019301,0.0000019314,0.0000019333,0.0000019343, -0.0000019347,0.0000019345,0.0000019340,0.0000019337,0.0000019342, -0.0000019351,0.0000019361,0.0000019363,0.0000019344,0.0000019309, -0.0000019252,0.0000019299,0.0000019238,0.0000019174,0.0000019125, -0.0000019090,0.0000019065,0.0000019040,0.0000019012,0.0000018992, -0.0000018982,0.0000018996,0.0000019028,0.0000019061,0.0000019083, -0.0000019098,0.0000019122,0.0000019163,0.0000019221,0.0000019288, -0.0000019349,0.0000019397,0.0000019430,0.0000019451,0.0000019465, -0.0000019472,0.0000019475,0.0000019478,0.0000019482,0.0000019484, -0.0000019463,0.0000019429,0.0000019403,0.0000019395,0.0000019402, -0.0000019415,0.0000019419,0.0000019416,0.0000019411,0.0000019408, -0.0000019406,0.0000019402,0.0000019394,0.0000019393,0.0000019394, -0.0000019395,0.0000019394,0.0000019391,0.0000019387,0.0000019383, -0.0000019381,0.0000019377,0.0000019374,0.0000019372,0.0000019369, -0.0000019363,0.0000019358,0.0000019351,0.0000019341,0.0000019331, -0.0000019326,0.0000019328,0.0000019335,0.0000019345,0.0000019355, -0.0000019363,0.0000019367,0.0000019369,0.0000019369,0.0000019365, -0.0000019353,0.0000019338,0.0000019318,0.0000019294,0.0000019266, -0.0000019236,0.0000019206,0.0000019171,0.0000019133,0.0000019092, -0.0000019048,0.0000019004,0.0000018964,0.0000018943,0.0000018933, -0.0000018927,0.0000018924,0.0000018927,0.0000018935,0.0000018947, -0.0000018968,0.0000018989,0.0000019009,0.0000019025,0.0000019043, -0.0000019058,0.0000019068,0.0000019080,0.0000019095,0.0000019111, -0.0000019127,0.0000019141,0.0000019154,0.0000019163,0.0000019167, -0.0000019161,0.0000019151,0.0000019137,0.0000019123,0.0000019113, -0.0000019103,0.0000019097,0.0000019098,0.0000019107,0.0000019113, -0.0000019094,0.0000019038,0.0000018976,0.0000018953,0.0000018964, -0.0000018991,0.0000019015,0.0000019022,0.0000019011,0.0000018985, -0.0000018961,0.0000018949,0.0000018952,0.0000018971,0.0000019003, -0.0000019039,0.0000019080,0.0000019121,0.0000019157,0.0000019184, -0.0000019207,0.0000019234,0.0000019272,0.0000019318,0.0000019371, -0.0000019420,0.0000019465,0.0000019507,0.0000019540,0.0000019564, -0.0000019580,0.0000019585,0.0000019580,0.0000019572,0.0000019569, -0.0000019573,0.0000019581,0.0000019590,0.0000019594,0.0000019597, -0.0000019602,0.0000019611,0.0000019622,0.0000019632,0.0000019638, -0.0000019637,0.0000019638,0.0000019643,0.0000019650,0.0000019658, -0.0000019667,0.0000019678,0.0000019688,0.0000019700,0.0000019712, -0.0000019726,0.0000019744,0.0000019762,0.0000019780,0.0000019803, -0.0000019828,0.0000019855,0.0000019881,0.0000019906,0.0000019934, -0.0000019965,0.0000020001,0.0000020042,0.0000020085,0.0000020130, -0.0000020175,0.0000020220,0.0000020262,0.0000020303,0.0000020342, -0.0000020380,0.0000020414,0.0000020446,0.0000020475,0.0000020498, -0.0000020516,0.0000020530,0.0000020534,0.0000020533,0.0000020530, -0.0000020527,0.0000020525,0.0000020520,0.0000020512,0.0000020501, -0.0000020487,0.0000020473,0.0000020466,0.0000020467,0.0000020473, -0.0000020482,0.0000020489,0.0000020496,0.0000020502,0.0000020508, -0.0000020512,0.0000020516,0.0000020523,0.0000020532,0.0000020546, -0.0000020562,0.0000020583,0.0000020606,0.0000020626,0.0000020642, -0.0000020653,0.0000020661,0.0000020667,0.0000020678,0.0000020699, -0.0000020737,0.0000020791,0.0000020842,0.0000020878,0.0000020898, -0.0000020915,0.0000020951,0.0000021010,0.0000021058,0.0000021070, -0.0000021065,0.0000021049,0.0000021022,0.0000020967,0.0000020881, -0.0000020796,0.0000020735,0.0000020689,0.0000020640,0.0000020598, -0.0000020585,0.0000020594,0.0000020623,0.0000020661,0.0000020693, -0.0000020720,0.0000020746,0.0000020772,0.0000020798,0.0000020816, -0.0000020817,0.0000020806,0.0000020796,0.0000020790,0.0000020787, -0.0000020783,0.0000020782,0.0000020787,0.0000020798,0.0000020810, -0.0000020824,0.0000020839,0.0000020859,0.0000020886,0.0000020916, -0.0000020941,0.0000020959,0.0000020973,0.0000020982,0.0000020987, -0.0000020989,0.0000020985,0.0000020975,0.0000020962,0.0000020947, -0.0000020929,0.0000020915,0.0000020904,0.0000020888,0.0000020860, -0.0000020829,0.0000020798,0.0000020769,0.0000020736,0.0000020691, -0.0000020647,0.0000020621,0.0000020613,0.0000020621,0.0000020661, -0.0000020721,0.0000020774,0.0000020804,0.0000020819,0.0000020828, -0.0000020834,0.0000020837,0.0000020834,0.0000020824,0.0000020806, -0.0000020784,0.0000020760,0.0000020743,0.0000020731,0.0000020719, -0.0000020703,0.0000020672,0.0000020617,0.0000020535,0.0000020436, -0.0000020347,0.0000020298,0.0000020294,0.0000020310,0.0000020313, -0.0000020295,0.0000020271,0.0000020261,0.0000020264,0.0000020257, -0.0000020222,0.0000020163,0.0000020098,0.0000020055,0.0000020048, -0.0000020068,0.0000020150,0.0000020262,0.0000020344,0.0000020406, -0.0000020448,0.0000020422,0.0000020267,0.0000020052,0.0000019968, -0.0000020052,0.0000020293,0.0000020464,0.0000020482,0.0000020485, -0.0000020529,0.0000020614,0.0000020686,0.0000020725,0.0000020819, -0.0000020958,0.0000021035,0.0000021056,0.0000021094,0.0000021212, -0.0000021402,0.0000021560,0.0000021655,0.0000021726,0.0000021782, -0.0000021824,0.0000021847,0.0000021835,0.0000021794,0.0000021760, -0.0000021749,0.0000021736,0.0000021702,0.0000021655,0.0000021623, -0.0000021626,0.0000021657,0.0000021693,0.0000021721,0.0000021737, -0.0000021745,0.0000021742,0.0000021730,0.0000021711,0.0000021686, -0.0000021655,0.0000021629,0.0000021607,0.0000021600,0.0000021606, -0.0000021618,0.0000021634,0.0000021649,0.0000021659,0.0000021655, -0.0000021650,0.0000021643,0.0000021638,0.0000021638,0.0000021637, -0.0000021634,0.0000021624,0.0000021611,0.0000021593,0.0000021563, -0.0000021522,0.0000021487,0.0000021464,0.0000021439,0.0000021416, -0.0000021393,0.0000021367,0.0000021340,0.0000021317,0.0000021301, -0.0000021294,0.0000021287,0.0000021277,0.0000021258,0.0000021237, -0.0000021210,0.0000021175,0.0000021133,0.0000021086,0.0000021042, -0.0000021008,0.0000020984,0.0000020969,0.0000020967,0.0000020971, -0.0000020983,0.0000020998,0.0000021017,0.0000021035,0.0000021052, -0.0000021062,0.0000021068,0.0000021069,0.0000021065,0.0000021053, -0.0000021035,0.0000021021,0.0000021017,0.0000021017,0.0000021016, -0.0000021012,0.0000021009,0.0000021005,0.0000020997,0.0000020992, -0.0000020986,0.0000020978,0.0000020970,0.0000020961,0.0000020953, -0.0000020946,0.0000020941,0.0000020938,0.0000020941,0.0000020950, -0.0000020964,0.0000020986,0.0000021008,0.0000021032,0.0000021058, -0.0000021083,0.0000021110,0.0000021136,0.0000021161,0.0000021178, -0.0000021189,0.0000021198,0.0000021200,0.0000021196,0.0000021189, -0.0000021172,0.0000021156,0.0000021151,0.0000021151,0.0000021152, -0.0000021158,0.0000021164,0.0000021169,0.0000021170,0.0000021172, -0.0000021172,0.0000021171,0.0000021170,0.0000021169,0.0000021165, -0.0000021159,0.0000021158,0.0000021161,0.0000021162,0.0000021160, -0.0000021152,0.0000021141,0.0000021126,0.0000021110,0.0000021092, -0.0000021070,0.0000021047,0.0000021024,0.0000021003,0.0000020989, -0.0000020981,0.0000020979,0.0000020982,0.0000020985,0.0000020988, -0.0000020990,0.0000020987,0.0000020980,0.0000020977,0.0000020973, -0.0000020964,0.0000020957,0.0000020952,0.0000020946,0.0000020941, -0.0000020933,0.0000020924,0.0000020910,0.0000020894,0.0000020882, -0.0000020875,0.0000020879,0.0000020897,0.0000020925,0.0000020958, -0.0000020992,0.0000021026,0.0000021055,0.0000021079,0.0000021102, -0.0000021126,0.0000021148,0.0000021165,0.0000021181,0.0000021198, -0.0000021211,0.0000021226,0.0000021248,0.0000021271,0.0000021291, -0.0000021306,0.0000021317,0.0000021324,0.0000021327,0.0000021326, -0.0000021318,0.0000021306,0.0000021297,0.0000021286,0.0000021269, -0.0000021249,0.0000021231,0.0000021216,0.0000021200,0.0000021181, -0.0000021161,0.0000021145,0.0000021128,0.0000021109,0.0000021093, -0.0000021075,0.0000021051,0.0000021024,0.0000020998,0.0000020972, -0.0000020944,0.0000020915,0.0000020884,0.0000020850,0.0000020815, -0.0000020789,0.0000020760,0.0000020746,0.0000020743,0.0000020747, -0.0000020759,0.0000020782,0.0000020810,0.0000020839,0.0000020859, -0.0000020867,0.0000020868,0.0000020862,0.0000020856,0.0000020851, -0.0000020844,0.0000020839,0.0000020838,0.0000020845,0.0000020864, -0.0000020886,0.0000020905,0.0000020923,0.0000020946,0.0000020972, -0.0000020995,0.0000021015,0.0000021036,0.0000021058,0.0000021083, -0.0000021112,0.0000021145,0.0000021180,0.0000021216,0.0000021248, -0.0000021272,0.0000021292,0.0000021310,0.0000021326,0.0000021347, -0.0000021369,0.0000021386,0.0000021401,0.0000021419,0.0000021439, -0.0000021456,0.0000021470,0.0000021483,0.0000021493,0.0000021498, -0.0000021506,0.0000021516,0.0000021528,0.0000021540,0.0000021554, -0.0000021569,0.0000021581,0.0000021590,0.0000021594,0.0000021592, -0.0000021587,0.0000021578,0.0000021567,0.0000021554,0.0000021541, -0.0000021526,0.0000021507,0.0000021485,0.0000021458,0.0000021428, -0.0000021401,0.0000021378,0.0000021358,0.0000021340,0.0000021324, -0.0000021312,0.0000021302,0.0000021293,0.0000021287,0.0000021285, -0.0000021285,0.0000021284,0.0000021279,0.0000021269,0.0000021260, -0.0000021253,0.0000021253,0.0000021257,0.0000021267,0.0000021279, -0.0000021293,0.0000021305,0.0000021315,0.0000021321,0.0000021328, -0.0000021339,0.0000021356,0.0000021380,0.0000021408,0.0000021433, -0.0000021451,0.0000021462,0.0000021466,0.0000021464,0.0000021460, -0.0000021455,0.0000021448,0.0000021431,0.0000021408,0.0000021371, -0.0000021322,0.0000021270,0.0000021214,0.0000021155,0.0000021100, -0.0000021046,0.0000021007,0.0000020998,0.0000021007,0.0000021019, -0.0000021024,0.0000021021,0.0000021011,0.0000020992,0.0000020967, -0.0000020935,0.0000020895,0.0000020843,0.0000020781,0.0000020719, -0.0000020661,0.0000020611,0.0000020574,0.0000020548,0.0000020530, -0.0000020519,0.0000020511,0.0000020500,0.0000020485,0.0000020460, -0.0000020424,0.0000020382,0.0000020341,0.0000020305,0.0000020277, -0.0000020255,0.0000020237,0.0000020227,0.0000020226,0.0000020237, -0.0000020257,0.0000020280,0.0000020303,0.0000020330,0.0000020360, -0.0000020392,0.0000020424,0.0000020457,0.0000020490,0.0000020522, -0.0000020554,0.0000020583,0.0000020606,0.0000020622,0.0000020632, -0.0000020629,0.0000020623,0.0000020608,0.0000020576,0.0000020560, -0.0000020545,0.0000020530,0.0000020520,0.0000020519,0.0000020520, -0.0000020522,0.0000020527,0.0000020529,0.0000020528,0.0000020522, -0.0000020511,0.0000020498,0.0000020487,0.0000020478,0.0000020469, -0.0000020458,0.0000020447,0.0000020434,0.0000020417,0.0000020395, -0.0000020374,0.0000020356,0.0000020340,0.0000020325,0.0000020318, -0.0000020324,0.0000020333,0.0000020353,0.0000020376,0.0000020397, -0.0000020414,0.0000020427,0.0000020436,0.0000020441,0.0000020443, -0.0000020430,0.0000020408,0.0000020379,0.0000020340,0.0000020290, -0.0000020232,0.0000020176,0.0000020131,0.0000020096,0.0000020064, -0.0000020026,0.0000019981,0.0000019934,0.0000019892,0.0000019856, -0.0000019833,0.0000019819,0.0000019802,0.0000019766,0.0000019719, -0.0000019661,0.0000019611,0.0000019577,0.0000019567,0.0000019575, -0.0000019583,0.0000019578,0.0000019567,0.0000019535,0.0000019497, -0.0000019457,0.0000019428,0.0000019403,0.0000019387,0.0000019386, -0.0000019387,0.0000019399,0.0000019418,0.0000019439,0.0000019458, -0.0000019474,0.0000019496,0.0000019527,0.0000019555,0.0000019570, -0.0000019579,0.0000019568,0.0000019553,0.0000019534,0.0000019518, -0.0000019508,0.0000019503,0.0000019519,0.0000019529,0.0000019560, -0.0000019603,0.0000019656,0.0000019708,0.0000019746,0.0000019774, -0.0000019809,0.0000019858,0.0000019919,0.0000019981,0.0000020034, -0.0000020053,0.0000020056,0.0000020044,0.0000020020,0.0000019985, -0.0000019941,0.0000019891,0.0000019843,0.0000019809,0.0000019799, -0.0000019803,0.0000019826,0.0000019869,0.0000019925,0.0000019989, -0.0000020051,0.0000020100,0.0000020139,0.0000020174,0.0000020212, -0.0000020264,0.0000020318,0.0000020377,0.0000020435,0.0000020483, -0.0000020522,0.0000020547,0.0000020560,0.0000020564,0.0000020559, -0.0000020548,0.0000020530,0.0000020508,0.0000020488,0.0000020475, -0.0000020466,0.0000020464,0.0000020469,0.0000020481,0.0000020493, -0.0000020506,0.0000020516,0.0000020526,0.0000020536,0.0000020547, -0.0000020557,0.0000020565,0.0000020573,0.0000020584,0.0000020597, -0.0000020614,0.0000020639,0.0000020671,0.0000020711,0.0000020760, -0.0000020819,0.0000020893,0.0000020975,0.0000021055,0.0000021119, -0.0000021154,0.0000021163,0.0000021166,0.0000021172,0.0000021177, -0.0000021177,0.0000021170,0.0000021154,0.0000021135,0.0000021122, -0.0000021112,0.0000021096,0.0000021068,0.0000021023,0.0000020968, -0.0000020917,0.0000020878,0.0000020854,0.0000020841,0.0000020827, -0.0000020804,0.0000020773,0.0000020743,0.0000020723,0.0000020714, -0.0000020707,0.0000020700,0.0000020690,0.0000020681,0.0000020666, -0.0000020643,0.0000020614,0.0000020581,0.0000020545,0.0000020505, -0.0000020462,0.0000020419,0.0000020379,0.0000020338,0.0000020297, -0.0000020254,0.0000020212,0.0000020173,0.0000020137,0.0000020100, -0.0000020060,0.0000020022,0.0000019988,0.0000019959,0.0000019934, -0.0000019914,0.0000019898,0.0000019890,0.0000019890,0.0000019898, -0.0000019912,0.0000019929,0.0000019944,0.0000019956,0.0000019963, -0.0000019964,0.0000019959,0.0000019950,0.0000019942,0.0000019936, -0.0000019933,0.0000019934,0.0000019936,0.0000019938,0.0000019939, -0.0000019941,0.0000019945,0.0000019950,0.0000019954,0.0000019954, -0.0000019954,0.0000019952,0.0000019949,0.0000019942,0.0000019932, -0.0000019920,0.0000019909,0.0000019902,0.0000019897,0.0000019897, -0.0000019899,0.0000019904,0.0000019913,0.0000019927,0.0000019947, -0.0000019971,0.0000019999,0.0000020028,0.0000020055,0.0000020078, -0.0000020097,0.0000020109,0.0000020116,0.0000020117,0.0000020106, -0.0000020090,0.0000020078,0.0000020070,0.0000020064,0.0000020062, -0.0000020065,0.0000020074,0.0000020087,0.0000020106,0.0000020127, -0.0000020150,0.0000020171,0.0000020183,0.0000020187,0.0000020182, -0.0000020169,0.0000020146,0.0000020119,0.0000020092,0.0000020065, -0.0000020039,0.0000020013,0.0000019985,0.0000019964,0.0000019965, -0.0000019972,0.0000020004,0.0000020061,0.0000020129,0.0000020190, -0.0000020235,0.0000020261,0.0000020269,0.0000020258,0.0000020243, -0.0000020214,0.0000020185,0.0000020152,0.0000020118,0.0000020096, -0.0000020082,0.0000020079,0.0000020084,0.0000020092,0.0000020101, -0.0000020110,0.0000020116,0.0000020121,0.0000020124,0.0000020124, -0.0000020120,0.0000020106,0.0000020087,0.0000020062,0.0000020033, -0.0000019998,0.0000019952,0.0000019902,0.0000019843,0.0000019780, -0.0000019722,0.0000019676,0.0000019651,0.0000019649,0.0000019669, -0.0000019704,0.0000019742,0.0000019779,0.0000019814,0.0000019834, -0.0000019826,0.0000019773,0.0000019687,0.0000019603,0.0000019560, -0.0000019561,0.0000019587,0.0000019621,0.0000019641,0.0000019638, -0.0000019599,0.0000019508,0.0000019393,0.0000019305,0.0000019266, -0.0000019260,0.0000019266,0.0000019273,0.0000019275,0.0000019274, -0.0000019278,0.0000019283,0.0000019275,0.0000019260,0.0000019250, -0.0000019254,0.0000019281,0.0000019335,0.0000019395,0.0000019439, -0.0000019454,0.0000019452,0.0000019449,0.0000019450,0.0000019446, -0.0000019421,0.0000019373,0.0000019304,0.0000019232,0.0000019187, -0.0000019182,0.0000019200,0.0000019213,0.0000019206,0.0000019192, -0.0000019182,0.0000019162,0.0000019126,0.0000019068,0.0000019015, -0.0000018977,0.0000018950,0.0000018940,0.0000018947,0.0000018964, -0.0000018991,0.0000019027,0.0000019078,0.0000019144,0.0000019221, -0.0000019301,0.0000019376,0.0000019436,0.0000019482,0.0000019520, -0.0000019558,0.0000019599,0.0000019644,0.0000019693,0.0000019742, -0.0000019789,0.0000019834,0.0000019872,0.0000019904,0.0000019928, -0.0000019940,0.0000019938,0.0000019925,0.0000019899,0.0000019865, -0.0000019828,0.0000019788,0.0000019748,0.0000019707,0.0000019667, -0.0000019627,0.0000019589,0.0000019555,0.0000019532,0.0000019510, -0.0000019488,0.0000019464,0.0000019433,0.0000019395,0.0000019360, -0.0000019324,0.0000019279,0.0000019225,0.0000019168,0.0000019126, -0.0000019108,0.0000019108,0.0000019113,0.0000019111,0.0000019101, -0.0000019079,0.0000019042,0.0000018996,0.0000018960,0.0000018943, -0.0000018938,0.0000018925,0.0000018904,0.0000018866,0.0000018813, -0.0000018758,0.0000018704,0.0000018657,0.0000018620,0.0000018585, -0.0000018548,0.0000018513,0.0000018473,0.0000018431,0.0000018395, -0.0000018372,0.0000018363,0.0000018356,0.0000018351,0.0000018346, -0.0000018336,0.0000018318,0.0000018295,0.0000018277,0.0000018266, -0.0000018262,0.0000018263,0.0000018274,0.0000018299,0.0000018339, -0.0000018385,0.0000018429,0.0000018471,0.0000018502,0.0000018517, -0.0000018515,0.0000018500,0.0000018477,0.0000018455,0.0000018429, -0.0000018397,0.0000018366,0.0000018338,0.0000018310,0.0000018275, -0.0000018239,0.0000018217,0.0000018207,0.0000018202,0.0000018197, -0.0000018190,0.0000018182,0.0000018174,0.0000018164,0.0000018152, -0.0000018131,0.0000018095,0.0000018044,0.0000017979,0.0000017906, -0.0000017828,0.0000017750,0.0000017675,0.0000017603,0.0000017539, -0.0000017486,0.0000017446,0.0000017421,0.0000017416,0.0000017421, -0.0000017434,0.0000017452,0.0000017475,0.0000017496,0.0000017513, -0.0000017521,0.0000017527,0.0000017534,0.0000017541,0.0000017546, -0.0000017551,0.0000017559,0.0000017572,0.0000017586,0.0000017602, -0.0000017619,0.0000017636,0.0000017652,0.0000017667,0.0000017678, -0.0000017686,0.0000017692,0.0000017696,0.0000017703,0.0000017712, -0.0000017725,0.0000017739,0.0000017753,0.0000017770,0.0000017790, -0.0000017811,0.0000017832,0.0000017851,0.0000017867,0.0000017878, -0.0000017887,0.0000017893,0.0000017895,0.0000017894,0.0000017892, -0.0000017889,0.0000017884,0.0000017876,0.0000017866,0.0000017853, -0.0000017839,0.0000017823,0.0000017810,0.0000017797,0.0000017791, -0.0000017786,0.0000017798,0.0000017816,0.0000017835,0.0000017859, -0.0000017888,0.0000017921,0.0000017955,0.0000017991,0.0000018028, -0.0000018064,0.0000018110,0.0000018167,0.0000018227,0.0000018286, -0.0000018340,0.0000018392,0.0000018438,0.0000018485,0.0000018536, -0.0000018592,0.0000018646,0.0000018702,0.0000018753,0.0000018798, -0.0000018833,0.0000018862,0.0000018888,0.0000018911,0.0000018928, -0.0000018939,0.0000018947,0.0000018957,0.0000018972,0.0000018980, -0.0000018980,0.0000018976,0.0000018971,0.0000018972,0.0000018994, -0.0000019035,0.0000019083,0.0000019121,0.0000019143,0.0000019156, -0.0000019166,0.0000019176,0.0000019186,0.0000019195,0.0000019205, -0.0000019214,0.0000019219,0.0000019216,0.0000019201,0.0000019174, -0.0000019138,0.0000019107,0.0000019087,0.0000019077,0.0000019080, -0.0000019100,0.0000019138,0.0000019193,0.0000019251,0.0000019295, -0.0000019324,0.0000019328,0.0000019334,0.0000019335,0.0000019335, -0.0000019336,0.0000019340,0.0000019349,0.0000019363,0.0000019386, -0.0000019415,0.0000019447,0.0000019482,0.0000019517,0.0000019554, -0.0000019595,0.0000019639,0.0000019684,0.0000019730,0.0000019777, -0.0000019827,0.0000019878,0.0000019930,0.0000019978,0.0000020018, -0.0000020042,0.0000020052,0.0000020051,0.0000020042,0.0000020025, -0.0000020005,0.0000019984,0.0000019961,0.0000019942,0.0000019929, -0.0000019923,0.0000019921,0.0000019925,0.0000019934,0.0000019946, -0.0000019961,0.0000019977,0.0000019996,0.0000020017,0.0000020039, -0.0000020059,0.0000020077,0.0000020092,0.0000020104,0.0000020113, -0.0000020120,0.0000020125,0.0000020128,0.0000020131,0.0000020133, -0.0000020135,0.0000020136,0.0000020136,0.0000020134,0.0000020129, -0.0000020122,0.0000020113,0.0000020106,0.0000020100,0.0000020096, -0.0000020092,0.0000020091,0.0000020092,0.0000020093,0.0000020096, -0.0000020101,0.0000020106,0.0000020111,0.0000020119,0.0000020129, -0.0000020139,0.0000020148,0.0000020156,0.0000020165,0.0000020174, -0.0000020185,0.0000020195,0.0000020201,0.0000020202,0.0000020199, -0.0000020190,0.0000020175,0.0000020154,0.0000020126,0.0000020091, -0.0000020048,0.0000019999,0.0000019943,0.0000019887,0.0000019833, -0.0000019781,0.0000019732,0.0000019681,0.0000019632,0.0000019583, -0.0000019535,0.0000019488,0.0000019440,0.0000019390,0.0000019340, -0.0000019299,0.0000019266,0.0000019245,0.0000019233,0.0000019228, -0.0000019233,0.0000019252,0.0000019279,0.0000019303,0.0000019314, -0.0000019314,0.0000019310,0.0000019308,0.0000019316,0.0000019329, -0.0000019342,0.0000019345,0.0000019332,0.0000019321,0.0000019312, -0.0000019280,0.0000019218,0.0000019147,0.0000019090,0.0000019053, -0.0000019026,0.0000018998,0.0000018967,0.0000018945,0.0000018939, -0.0000018959,0.0000018992,0.0000019024,0.0000019049,0.0000019073, -0.0000019104,0.0000019152,0.0000019213,0.0000019278,0.0000019335, -0.0000019376,0.0000019402,0.0000019417,0.0000019423,0.0000019422, -0.0000019421,0.0000019429,0.0000019437,0.0000019436,0.0000019415, -0.0000019389,0.0000019368,0.0000019363,0.0000019374,0.0000019386, -0.0000019394,0.0000019398,0.0000019401,0.0000019406,0.0000019413, -0.0000019421,0.0000019426,0.0000019429,0.0000019431,0.0000019429, -0.0000019426,0.0000019426,0.0000019425,0.0000019420,0.0000019413, -0.0000019408,0.0000019403,0.0000019393,0.0000019380,0.0000019364, -0.0000019347,0.0000019329,0.0000019309,0.0000019291,0.0000019279, -0.0000019271,0.0000019266,0.0000019262,0.0000019261,0.0000019263, -0.0000019266,0.0000019269,0.0000019267,0.0000019258,0.0000019245, -0.0000019226,0.0000019203,0.0000019178,0.0000019152,0.0000019125, -0.0000019094,0.0000019059,0.0000019020,0.0000018978,0.0000018940, -0.0000018913,0.0000018897,0.0000018886,0.0000018879,0.0000018874, -0.0000018876,0.0000018885,0.0000018898,0.0000018912,0.0000018926, -0.0000018938,0.0000018949,0.0000018956,0.0000018961,0.0000018968, -0.0000018976,0.0000018985,0.0000018995,0.0000019009,0.0000019032, -0.0000019061,0.0000019093,0.0000019123,0.0000019142,0.0000019142, -0.0000019139,0.0000019133,0.0000019124,0.0000019114,0.0000019109, -0.0000019112,0.0000019127,0.0000019145,0.0000019142,0.0000019097, -0.0000019026,0.0000018981,0.0000018979,0.0000018991,0.0000018999, -0.0000018991,0.0000018962,0.0000018932,0.0000018916,0.0000018904, -0.0000018902,0.0000018911,0.0000018925,0.0000018949,0.0000018984, -0.0000019027,0.0000019071,0.0000019109,0.0000019137,0.0000019164, -0.0000019196,0.0000019236,0.0000019282,0.0000019335,0.0000019391, -0.0000019442,0.0000019486,0.0000019518,0.0000019535,0.0000019541, -0.0000019546,0.0000019550,0.0000019559,0.0000019571,0.0000019580, -0.0000019582,0.0000019584,0.0000019588,0.0000019598,0.0000019610, -0.0000019621,0.0000019626,0.0000019625,0.0000019623,0.0000019626, -0.0000019633,0.0000019640,0.0000019647,0.0000019654,0.0000019661, -0.0000019670,0.0000019681,0.0000019695,0.0000019711,0.0000019727, -0.0000019745,0.0000019766,0.0000019791,0.0000019815,0.0000019837, -0.0000019857,0.0000019878,0.0000019902,0.0000019931,0.0000019964, -0.0000019998,0.0000020034,0.0000020071,0.0000020111,0.0000020149, -0.0000020186,0.0000020225,0.0000020264,0.0000020300,0.0000020335, -0.0000020368,0.0000020400,0.0000020428,0.0000020452,0.0000020468, -0.0000020478,0.0000020483,0.0000020487,0.0000020488,0.0000020488, -0.0000020484,0.0000020474,0.0000020458,0.0000020441,0.0000020430, -0.0000020429,0.0000020434,0.0000020443,0.0000020452,0.0000020460, -0.0000020467,0.0000020473,0.0000020475,0.0000020478,0.0000020483, -0.0000020490,0.0000020500,0.0000020517,0.0000020541,0.0000020567, -0.0000020590,0.0000020610,0.0000020625,0.0000020634,0.0000020637, -0.0000020638,0.0000020647,0.0000020675,0.0000020726,0.0000020788, -0.0000020840,0.0000020866,0.0000020878,0.0000020907,0.0000020966, -0.0000021014,0.0000021026,0.0000021021,0.0000021005,0.0000020974, -0.0000020910,0.0000020820,0.0000020740,0.0000020685,0.0000020643, -0.0000020602,0.0000020573,0.0000020567,0.0000020575,0.0000020600, -0.0000020628,0.0000020651,0.0000020673,0.0000020693,0.0000020712, -0.0000020732,0.0000020746,0.0000020746,0.0000020737,0.0000020725, -0.0000020717,0.0000020715,0.0000020717,0.0000020720,0.0000020725, -0.0000020739,0.0000020761,0.0000020787,0.0000020809,0.0000020828, -0.0000020851,0.0000020876,0.0000020897,0.0000020913,0.0000020927, -0.0000020938,0.0000020948,0.0000020952,0.0000020951,0.0000020943, -0.0000020930,0.0000020913,0.0000020895,0.0000020883,0.0000020875, -0.0000020860,0.0000020837,0.0000020810,0.0000020782,0.0000020755, -0.0000020723,0.0000020679,0.0000020634,0.0000020598,0.0000020574, -0.0000020569,0.0000020602,0.0000020666,0.0000020730,0.0000020771, -0.0000020794,0.0000020809,0.0000020818,0.0000020823,0.0000020821, -0.0000020814,0.0000020804,0.0000020787,0.0000020766,0.0000020744, -0.0000020725,0.0000020712,0.0000020703,0.0000020689,0.0000020665, -0.0000020610,0.0000020517,0.0000020404,0.0000020312,0.0000020277, -0.0000020284,0.0000020295,0.0000020283,0.0000020258,0.0000020245, -0.0000020243,0.0000020236,0.0000020210,0.0000020158,0.0000020099, -0.0000020060,0.0000020046,0.0000020070,0.0000020162,0.0000020273, -0.0000020350,0.0000020407,0.0000020426,0.0000020368,0.0000020190, -0.0000020005,0.0000019975,0.0000020117,0.0000020367,0.0000020493, -0.0000020499,0.0000020510,0.0000020565,0.0000020640,0.0000020691, -0.0000020746,0.0000020876,0.0000021013,0.0000021071,0.0000021091, -0.0000021145,0.0000021282,0.0000021461,0.0000021590,0.0000021671, -0.0000021738,0.0000021789,0.0000021829,0.0000021837,0.0000021818, -0.0000021775,0.0000021738,0.0000021720,0.0000021702,0.0000021665, -0.0000021617,0.0000021577,0.0000021571,0.0000021599,0.0000021637, -0.0000021670,0.0000021691,0.0000021698,0.0000021696,0.0000021692, -0.0000021681,0.0000021662,0.0000021642,0.0000021622,0.0000021606, -0.0000021601,0.0000021606,0.0000021610,0.0000021613,0.0000021615, -0.0000021614,0.0000021611,0.0000021607,0.0000021609,0.0000021619, -0.0000021633,0.0000021640,0.0000021641,0.0000021643,0.0000021640, -0.0000021627,0.0000021604,0.0000021574,0.0000021537,0.0000021495, -0.0000021449,0.0000021399,0.0000021354,0.0000021305,0.0000021258, -0.0000021221,0.0000021203,0.0000021201,0.0000021201,0.0000021198, -0.0000021190,0.0000021172,0.0000021146,0.0000021115,0.0000021083, -0.0000021055,0.0000021030,0.0000021009,0.0000020991,0.0000020985, -0.0000020989,0.0000021000,0.0000021017,0.0000021034,0.0000021051, -0.0000021068,0.0000021083,0.0000021094,0.0000021105,0.0000021110, -0.0000021108,0.0000021098,0.0000021088,0.0000021084,0.0000021083, -0.0000021083,0.0000021079,0.0000021074,0.0000021070,0.0000021067, -0.0000021061,0.0000021051,0.0000021039,0.0000021025,0.0000021009, -0.0000020994,0.0000020979,0.0000020964,0.0000020951,0.0000020946, -0.0000020950,0.0000020959,0.0000020976,0.0000020996,0.0000021018, -0.0000021044,0.0000021065,0.0000021084,0.0000021105,0.0000021125, -0.0000021141,0.0000021159,0.0000021175,0.0000021179,0.0000021171, -0.0000021157,0.0000021139,0.0000021129,0.0000021127,0.0000021127, -0.0000021128,0.0000021134,0.0000021142,0.0000021148,0.0000021153, -0.0000021158,0.0000021161,0.0000021163,0.0000021165,0.0000021168, -0.0000021170,0.0000021169,0.0000021167,0.0000021171,0.0000021173, -0.0000021172,0.0000021166,0.0000021156,0.0000021144,0.0000021131, -0.0000021114,0.0000021091,0.0000021066,0.0000021040,0.0000021016, -0.0000020996,0.0000020983,0.0000020977,0.0000020974,0.0000020973, -0.0000020975,0.0000020977,0.0000020975,0.0000020967,0.0000020961, -0.0000020959,0.0000020957,0.0000020957,0.0000020956,0.0000020954, -0.0000020949,0.0000020940,0.0000020927,0.0000020909,0.0000020889, -0.0000020870,0.0000020860,0.0000020863,0.0000020875,0.0000020896, -0.0000020924,0.0000020954,0.0000020987,0.0000021018,0.0000021042, -0.0000021066,0.0000021096,0.0000021124,0.0000021148,0.0000021169, -0.0000021189,0.0000021208,0.0000021233,0.0000021266,0.0000021298, -0.0000021327,0.0000021350,0.0000021367,0.0000021377,0.0000021383, -0.0000021387,0.0000021384,0.0000021373,0.0000021359,0.0000021339, -0.0000021311,0.0000021282,0.0000021254,0.0000021229,0.0000021207, -0.0000021182,0.0000021155,0.0000021133,0.0000021115,0.0000021093, -0.0000021071,0.0000021052,0.0000021035,0.0000021018,0.0000021001, -0.0000020988,0.0000020975,0.0000020960,0.0000020943,0.0000020922, -0.0000020893,0.0000020861,0.0000020829,0.0000020799,0.0000020769, -0.0000020741,0.0000020723,0.0000020717,0.0000020724,0.0000020740, -0.0000020760,0.0000020787,0.0000020815,0.0000020837,0.0000020851, -0.0000020854,0.0000020853,0.0000020841,0.0000020824,0.0000020808, -0.0000020797,0.0000020791,0.0000020792,0.0000020796,0.0000020809, -0.0000020838,0.0000020881,0.0000020931,0.0000020981,0.0000021024, -0.0000021060,0.0000021089,0.0000021117,0.0000021144,0.0000021169, -0.0000021188,0.0000021204,0.0000021220,0.0000021239,0.0000021264, -0.0000021295,0.0000021326,0.0000021352,0.0000021381,0.0000021411, -0.0000021440,0.0000021464,0.0000021482,0.0000021496,0.0000021507, -0.0000021523,0.0000021538,0.0000021550,0.0000021558,0.0000021564, -0.0000021568,0.0000021576,0.0000021584,0.0000021585,0.0000021585, -0.0000021582,0.0000021573,0.0000021558,0.0000021537,0.0000021513, -0.0000021489,0.0000021461,0.0000021433,0.0000021402,0.0000021372, -0.0000021344,0.0000021323,0.0000021306,0.0000021289,0.0000021273, -0.0000021260,0.0000021253,0.0000021248,0.0000021245,0.0000021243, -0.0000021243,0.0000021243,0.0000021240,0.0000021232,0.0000021221, -0.0000021209,0.0000021200,0.0000021196,0.0000021198,0.0000021203, -0.0000021212,0.0000021223,0.0000021232,0.0000021238,0.0000021243, -0.0000021251,0.0000021263,0.0000021281,0.0000021307,0.0000021338, -0.0000021367,0.0000021389,0.0000021405,0.0000021415,0.0000021422, -0.0000021425,0.0000021427,0.0000021424,0.0000021413,0.0000021387, -0.0000021349,0.0000021301,0.0000021244,0.0000021183,0.0000021120, -0.0000021056,0.0000021000,0.0000020962,0.0000020957,0.0000020968, -0.0000020975,0.0000020974,0.0000020962,0.0000020939,0.0000020909, -0.0000020875,0.0000020837,0.0000020793,0.0000020738,0.0000020676, -0.0000020614,0.0000020553,0.0000020500,0.0000020456,0.0000020424, -0.0000020405,0.0000020397,0.0000020393,0.0000020386,0.0000020369, -0.0000020339,0.0000020299,0.0000020257,0.0000020220,0.0000020192, -0.0000020172,0.0000020156,0.0000020145,0.0000020143,0.0000020150, -0.0000020168,0.0000020190,0.0000020212,0.0000020236,0.0000020262, -0.0000020288,0.0000020316,0.0000020343,0.0000020371,0.0000020399, -0.0000020427,0.0000020455,0.0000020480,0.0000020502,0.0000020521, -0.0000020535,0.0000020542,0.0000020542,0.0000020536,0.0000020526, -0.0000020517,0.0000020511,0.0000020509,0.0000020516,0.0000020526, -0.0000020539,0.0000020549,0.0000020567,0.0000020576,0.0000020580, -0.0000020578,0.0000020570,0.0000020563,0.0000020557,0.0000020553, -0.0000020545,0.0000020534,0.0000020523,0.0000020509,0.0000020487, -0.0000020464,0.0000020440,0.0000020414,0.0000020386,0.0000020359, -0.0000020341,0.0000020333,0.0000020342,0.0000020353,0.0000020371, -0.0000020392,0.0000020412,0.0000020426,0.0000020438,0.0000020443, -0.0000020441,0.0000020430,0.0000020420,0.0000020406,0.0000020385, -0.0000020352,0.0000020305,0.0000020253,0.0000020202,0.0000020155, -0.0000020106,0.0000020053,0.0000019999,0.0000019946,0.0000019899, -0.0000019864,0.0000019845,0.0000019837,0.0000019826,0.0000019801, -0.0000019757,0.0000019700,0.0000019638,0.0000019590,0.0000019556, -0.0000019545,0.0000019548,0.0000019556,0.0000019564,0.0000019559, -0.0000019535,0.0000019499,0.0000019456,0.0000019419,0.0000019393, -0.0000019380,0.0000019387,0.0000019397,0.0000019412,0.0000019430, -0.0000019445,0.0000019460,0.0000019480,0.0000019507,0.0000019538, -0.0000019560,0.0000019574,0.0000019574,0.0000019581,0.0000019580, -0.0000019578,0.0000019571,0.0000019566,0.0000019558,0.0000019554, -0.0000019572,0.0000019580,0.0000019606,0.0000019641,0.0000019680, -0.0000019721,0.0000019762,0.0000019806,0.0000019859,0.0000019925, -0.0000019988,0.0000020040,0.0000020048,0.0000020043,0.0000020017, -0.0000019978,0.0000019933,0.0000019885,0.0000019842,0.0000019813, -0.0000019802,0.0000019813,0.0000019844,0.0000019894,0.0000019959, -0.0000020031,0.0000020096,0.0000020151,0.0000020193,0.0000020238, -0.0000020285,0.0000020337,0.0000020388,0.0000020438,0.0000020487, -0.0000020530,0.0000020564,0.0000020585,0.0000020596,0.0000020597, -0.0000020587,0.0000020567,0.0000020543,0.0000020525,0.0000020514, -0.0000020503,0.0000020494,0.0000020491,0.0000020493,0.0000020498, -0.0000020509,0.0000020520,0.0000020535,0.0000020554,0.0000020573, -0.0000020587,0.0000020597,0.0000020606,0.0000020615,0.0000020629, -0.0000020654,0.0000020693,0.0000020742,0.0000020801,0.0000020866, -0.0000020941,0.0000021020,0.0000021090,0.0000021140,0.0000021165, -0.0000021172,0.0000021177,0.0000021184,0.0000021186,0.0000021178, -0.0000021160,0.0000021136,0.0000021115,0.0000021103,0.0000021092, -0.0000021077,0.0000021055,0.0000021018,0.0000020965,0.0000020910, -0.0000020864,0.0000020837,0.0000020823,0.0000020814,0.0000020796, -0.0000020766,0.0000020732,0.0000020700,0.0000020677,0.0000020662, -0.0000020649,0.0000020636,0.0000020623,0.0000020610,0.0000020592, -0.0000020568,0.0000020540,0.0000020509,0.0000020473,0.0000020431, -0.0000020383,0.0000020334,0.0000020284,0.0000020233,0.0000020185, -0.0000020138,0.0000020094,0.0000020059,0.0000020032,0.0000020007, -0.0000019984,0.0000019967,0.0000019956,0.0000019944,0.0000019936, -0.0000019927,0.0000019917,0.0000019909,0.0000019905,0.0000019908, -0.0000019919,0.0000019929,0.0000019933,0.0000019933,0.0000019931, -0.0000019925,0.0000019917,0.0000019910,0.0000019904,0.0000019900, -0.0000019898,0.0000019894,0.0000019889,0.0000019883,0.0000019879, -0.0000019873,0.0000019867,0.0000019864,0.0000019861,0.0000019857, -0.0000019852,0.0000019850,0.0000019847,0.0000019842,0.0000019836, -0.0000019831,0.0000019829,0.0000019830,0.0000019837,0.0000019847, -0.0000019858,0.0000019870,0.0000019881,0.0000019889,0.0000019895, -0.0000019901,0.0000019910,0.0000019920,0.0000019933,0.0000019950, -0.0000019971,0.0000019994,0.0000020018,0.0000020038,0.0000020049, -0.0000020054,0.0000020061,0.0000020065,0.0000020056,0.0000020050, -0.0000020046,0.0000020045,0.0000020048,0.0000020056,0.0000020069, -0.0000020090,0.0000020114,0.0000020136,0.0000020154,0.0000020165, -0.0000020162,0.0000020156,0.0000020147,0.0000020130,0.0000020110, -0.0000020086,0.0000020058,0.0000020026,0.0000019998,0.0000019980, -0.0000019971,0.0000019975,0.0000020007,0.0000020059,0.0000020116, -0.0000020168,0.0000020209,0.0000020232,0.0000020237,0.0000020226, -0.0000020207,0.0000020189,0.0000020161,0.0000020140,0.0000020122, -0.0000020113,0.0000020113,0.0000020114,0.0000020116,0.0000020117, -0.0000020118,0.0000020117,0.0000020118,0.0000020120,0.0000020120, -0.0000020115,0.0000020102,0.0000020080,0.0000020054,0.0000020025, -0.0000019993,0.0000019952,0.0000019905,0.0000019848,0.0000019785, -0.0000019725,0.0000019676,0.0000019646,0.0000019638,0.0000019654, -0.0000019686,0.0000019723,0.0000019759,0.0000019796,0.0000019822, -0.0000019818,0.0000019770,0.0000019685,0.0000019601,0.0000019557, -0.0000019556,0.0000019585,0.0000019620,0.0000019640,0.0000019639, -0.0000019600,0.0000019509,0.0000019394,0.0000019303,0.0000019261, -0.0000019253,0.0000019254,0.0000019257,0.0000019254,0.0000019248, -0.0000019248,0.0000019255,0.0000019254,0.0000019242,0.0000019231, -0.0000019230,0.0000019252,0.0000019306,0.0000019372,0.0000019420, -0.0000019436,0.0000019433,0.0000019427,0.0000019424,0.0000019414, -0.0000019385,0.0000019326,0.0000019243,0.0000019170,0.0000019132, -0.0000019136,0.0000019152,0.0000019154,0.0000019149,0.0000019152, -0.0000019151,0.0000019129,0.0000019082,0.0000019031,0.0000018983, -0.0000018940,0.0000018902,0.0000018882,0.0000018880,0.0000018894, -0.0000018913,0.0000018936,0.0000018968,0.0000019014,0.0000019076, -0.0000019151,0.0000019230,0.0000019304,0.0000019371,0.0000019430, -0.0000019483,0.0000019535,0.0000019586,0.0000019638,0.0000019688, -0.0000019736,0.0000019781,0.0000019822,0.0000019857,0.0000019883, -0.0000019897,0.0000019899,0.0000019886,0.0000019861,0.0000019826, -0.0000019787,0.0000019745,0.0000019703,0.0000019661,0.0000019621, -0.0000019584,0.0000019554,0.0000019533,0.0000019513,0.0000019493, -0.0000019470,0.0000019436,0.0000019392,0.0000019347,0.0000019305, -0.0000019261,0.0000019206,0.0000019141,0.0000019085,0.0000019051, -0.0000019045,0.0000019052,0.0000019060,0.0000019062,0.0000019054, -0.0000019035,0.0000018999,0.0000018961,0.0000018936,0.0000018921, -0.0000018900,0.0000018874,0.0000018842,0.0000018796,0.0000018742, -0.0000018688,0.0000018640,0.0000018596,0.0000018556,0.0000018522, -0.0000018493,0.0000018461,0.0000018429,0.0000018402,0.0000018378, -0.0000018365,0.0000018358,0.0000018356,0.0000018350,0.0000018338, -0.0000018318,0.0000018296,0.0000018277,0.0000018262,0.0000018248, -0.0000018232,0.0000018221,0.0000018221,0.0000018243,0.0000018287, -0.0000018338,0.0000018385,0.0000018425,0.0000018454,0.0000018461, -0.0000018451,0.0000018431,0.0000018408,0.0000018383,0.0000018359, -0.0000018341,0.0000018323,0.0000018297,0.0000018264,0.0000018238, -0.0000018229,0.0000018225,0.0000018223,0.0000018216,0.0000018205, -0.0000018190,0.0000018174,0.0000018152,0.0000018118,0.0000018063, -0.0000017988,0.0000017902,0.0000017812,0.0000017720,0.0000017626, -0.0000017537,0.0000017460,0.0000017399,0.0000017358,0.0000017333, -0.0000017317,0.0000017325,0.0000017352,0.0000017386,0.0000017425, -0.0000017462,0.0000017497,0.0000017528,0.0000017551,0.0000017568, -0.0000017580,0.0000017590,0.0000017601,0.0000017610,0.0000017619, -0.0000017632,0.0000017649,0.0000017665,0.0000017680,0.0000017696, -0.0000017711,0.0000017723,0.0000017734,0.0000017741,0.0000017743, -0.0000017743,0.0000017742,0.0000017742,0.0000017745,0.0000017751, -0.0000017761,0.0000017773,0.0000017789,0.0000017809,0.0000017830, -0.0000017851,0.0000017872,0.0000017891,0.0000017907,0.0000017920, -0.0000017930,0.0000017934,0.0000017941,0.0000017937,0.0000017931, -0.0000017925,0.0000017916,0.0000017904,0.0000017890,0.0000017874, -0.0000017856,0.0000017836,0.0000017818,0.0000017804,0.0000017791, -0.0000017786,0.0000017787,0.0000017786,0.0000017787,0.0000017795, -0.0000017811,0.0000017827,0.0000017845,0.0000017861,0.0000017876, -0.0000017897,0.0000017929,0.0000017981,0.0000018052,0.0000018129, -0.0000018204,0.0000018268,0.0000018326,0.0000018383,0.0000018448, -0.0000018512,0.0000018576,0.0000018640,0.0000018702,0.0000018760, -0.0000018807,0.0000018844,0.0000018875,0.0000018899,0.0000018915, -0.0000018924,0.0000018931,0.0000018941,0.0000018956,0.0000018971, -0.0000018980,0.0000018980,0.0000018974,0.0000018974,0.0000018992, -0.0000019029,0.0000019072,0.0000019109,0.0000019135,0.0000019152, -0.0000019165,0.0000019176,0.0000019186,0.0000019196,0.0000019203, -0.0000019208,0.0000019207,0.0000019198,0.0000019179,0.0000019148, -0.0000019113,0.0000019082,0.0000019066,0.0000019057,0.0000019060, -0.0000019081,0.0000019119,0.0000019175,0.0000019236,0.0000019284, -0.0000019319,0.0000019335,0.0000019340,0.0000019345,0.0000019348, -0.0000019352,0.0000019358,0.0000019367,0.0000019380,0.0000019398, -0.0000019420,0.0000019444,0.0000019469,0.0000019496,0.0000019527, -0.0000019561,0.0000019596,0.0000019632,0.0000019668,0.0000019702, -0.0000019737,0.0000019771,0.0000019808,0.0000019847,0.0000019883, -0.0000019915,0.0000019938,0.0000019952,0.0000019957,0.0000019953, -0.0000019942,0.0000019925,0.0000019907,0.0000019891,0.0000019878, -0.0000019870,0.0000019871,0.0000019879,0.0000019893,0.0000019911, -0.0000019931,0.0000019953,0.0000019976,0.0000019999,0.0000020021, -0.0000020042,0.0000020060,0.0000020074,0.0000020083,0.0000020090, -0.0000020092,0.0000020092,0.0000020092,0.0000020094,0.0000020097, -0.0000020099,0.0000020098,0.0000020094,0.0000020086,0.0000020080, -0.0000020075,0.0000020068,0.0000020061,0.0000020051,0.0000020037, -0.0000020022,0.0000020009,0.0000019999,0.0000019995,0.0000019996, -0.0000019998,0.0000020004,0.0000020013,0.0000020027,0.0000020042, -0.0000020057,0.0000020070,0.0000020081,0.0000020088,0.0000020096, -0.0000020103,0.0000020109,0.0000020111,0.0000020108,0.0000020102, -0.0000020090,0.0000020073,0.0000020049,0.0000020020,0.0000019984, -0.0000019942,0.0000019893,0.0000019840,0.0000019785,0.0000019730, -0.0000019673,0.0000019615,0.0000019557,0.0000019502,0.0000019451, -0.0000019403,0.0000019354,0.0000019303,0.0000019253,0.0000019209, -0.0000019173,0.0000019154,0.0000019150,0.0000019151,0.0000019153, -0.0000019163,0.0000019186,0.0000019217,0.0000019247,0.0000019266, -0.0000019272,0.0000019271,0.0000019271,0.0000019279,0.0000019295, -0.0000019310,0.0000019257,0.0000019278,0.0000019295,0.0000019291, -0.0000019255,0.0000019186,0.0000019112,0.0000019053,0.0000019013, -0.0000018983,0.0000018954,0.0000018927,0.0000018908,0.0000018901, -0.0000018921,0.0000018958,0.0000018995,0.0000019024,0.0000019052, -0.0000019089,0.0000019140,0.0000019203,0.0000019266,0.0000019318, -0.0000019351,0.0000019368,0.0000019374,0.0000019370,0.0000019368, -0.0000019374,0.0000019388,0.0000019396,0.0000019395,0.0000019379, -0.0000019357,0.0000019343,0.0000019340,0.0000019348,0.0000019369, -0.0000019396,0.0000019419,0.0000019439,0.0000019456,0.0000019469, -0.0000019476,0.0000019477,0.0000019473,0.0000019466,0.0000019460, -0.0000019456,0.0000019450,0.0000019441,0.0000019431,0.0000019421, -0.0000019410,0.0000019396,0.0000019382,0.0000019365,0.0000019346, -0.0000019323,0.0000019299,0.0000019278,0.0000019261,0.0000019242, -0.0000019225,0.0000019207,0.0000019192,0.0000019184,0.0000019179, -0.0000019174,0.0000019167,0.0000019158,0.0000019147,0.0000019132, -0.0000019115,0.0000019097,0.0000019080,0.0000019060,0.0000019034, -0.0000019002,0.0000018968,0.0000018934,0.0000018903,0.0000018878, -0.0000018859,0.0000018843,0.0000018829,0.0000018822,0.0000018824, -0.0000018831,0.0000018841,0.0000018850,0.0000018857,0.0000018862, -0.0000018863,0.0000018864,0.0000018868,0.0000018870,0.0000018872, -0.0000018875,0.0000018886,0.0000018904,0.0000018933,0.0000018972, -0.0000019018,0.0000019063,0.0000019099,0.0000019123,0.0000019132, -0.0000019135,0.0000019133,0.0000019129,0.0000019130,0.0000019137, -0.0000019153,0.0000019175,0.0000019177,0.0000019141,0.0000019064, -0.0000018997,0.0000018968,0.0000018960,0.0000018952,0.0000018930, -0.0000018904,0.0000018891,0.0000018883,0.0000018876,0.0000018874, -0.0000018871,0.0000018869,0.0000018876,0.0000018896,0.0000018926, -0.0000018960,0.0000018999,0.0000019042,0.0000019091,0.0000019137, -0.0000019179,0.0000019224,0.0000019271,0.0000019323,0.0000019370, -0.0000019411,0.0000019441,0.0000019462,0.0000019480,0.0000019498, -0.0000019519,0.0000019541,0.0000019558,0.0000019566,0.0000019574, -0.0000019583,0.0000019596,0.0000019611,0.0000019623,0.0000019628, -0.0000019625,0.0000019623,0.0000019626,0.0000019633,0.0000019638, -0.0000019643,0.0000019647,0.0000019652,0.0000019660,0.0000019670, -0.0000019682,0.0000019696,0.0000019711,0.0000019730,0.0000019752, -0.0000019778,0.0000019803,0.0000019825,0.0000019846,0.0000019867, -0.0000019890,0.0000019915,0.0000019942,0.0000019970,0.0000019997, -0.0000020026,0.0000020058,0.0000020090,0.0000020119,0.0000020149, -0.0000020181,0.0000020209,0.0000020236,0.0000020262,0.0000020289, -0.0000020317,0.0000020342,0.0000020363,0.0000020379,0.0000020392, -0.0000020403,0.0000020413,0.0000020421,0.0000020424,0.0000020422, -0.0000020412,0.0000020399,0.0000020390,0.0000020389,0.0000020397, -0.0000020410,0.0000020421,0.0000020430,0.0000020436,0.0000020440, -0.0000020442,0.0000020443,0.0000020446,0.0000020450,0.0000020458, -0.0000020474,0.0000020497,0.0000020522,0.0000020546,0.0000020569, -0.0000020589,0.0000020603,0.0000020608,0.0000020606,0.0000020606, -0.0000020622,0.0000020665,0.0000020732,0.0000020796,0.0000020831, -0.0000020842,0.0000020867,0.0000020924,0.0000020970,0.0000020981, -0.0000020975,0.0000020958,0.0000020922,0.0000020849,0.0000020759, -0.0000020687,0.0000020640,0.0000020604,0.0000020573,0.0000020552, -0.0000020549,0.0000020555,0.0000020572,0.0000020590,0.0000020608, -0.0000020624,0.0000020636,0.0000020647,0.0000020658,0.0000020664, -0.0000020662,0.0000020655,0.0000020647,0.0000020640,0.0000020636, -0.0000020635,0.0000020638,0.0000020646,0.0000020661,0.0000020687, -0.0000020720,0.0000020752,0.0000020780,0.0000020805,0.0000020828, -0.0000020849,0.0000020864,0.0000020877,0.0000020888,0.0000020896, -0.0000020903,0.0000020907,0.0000020905,0.0000020897,0.0000020880, -0.0000020862,0.0000020849,0.0000020839,0.0000020829,0.0000020815, -0.0000020795,0.0000020769,0.0000020742,0.0000020710,0.0000020668, -0.0000020623,0.0000020583,0.0000020547,0.0000020529,0.0000020545, -0.0000020604,0.0000020675,0.0000020726,0.0000020757,0.0000020778, -0.0000020794,0.0000020802,0.0000020803,0.0000020800,0.0000020795, -0.0000020785,0.0000020770,0.0000020748,0.0000020721,0.0000020695, -0.0000020676,0.0000020670,0.0000020668,0.0000020647,0.0000020583, -0.0000020471,0.0000020349,0.0000020274,0.0000020263,0.0000020276, -0.0000020271,0.0000020246,0.0000020230,0.0000020227,0.0000020226, -0.0000020202,0.0000020154,0.0000020099,0.0000020058,0.0000020042, -0.0000020071,0.0000020172,0.0000020282,0.0000020355,0.0000020402, -0.0000020407,0.0000020312,0.0000020122,0.0000019976,0.0000019991, -0.0000020191,0.0000020424,0.0000020511,0.0000020512,0.0000020539, -0.0000020597,0.0000020656,0.0000020699,0.0000020786,0.0000020944, -0.0000021067,0.0000021107,0.0000021127,0.0000021200,0.0000021349, -0.0000021507,0.0000021610,0.0000021681,0.0000021741,0.0000021788, -0.0000021818,0.0000021820,0.0000021796,0.0000021748,0.0000021704, -0.0000021677,0.0000021655,0.0000021623,0.0000021578,0.0000021540, -0.0000021524,0.0000021530,0.0000021553,0.0000021583,0.0000021610, -0.0000021633,0.0000021651,0.0000021659,0.0000021657,0.0000021645, -0.0000021636,0.0000021628,0.0000021623,0.0000021622,0.0000021619, -0.0000021612,0.0000021602,0.0000021590,0.0000021573,0.0000021555, -0.0000021542,0.0000021541,0.0000021549,0.0000021562,0.0000021576, -0.0000021592,0.0000021607,0.0000021620,0.0000021616,0.0000021608, -0.0000021596,0.0000021578,0.0000021547,0.0000021501,0.0000021447, -0.0000021386,0.0000021319,0.0000021252,0.0000021200,0.0000021166, -0.0000021143,0.0000021126,0.0000021110,0.0000021089,0.0000021067, -0.0000021047,0.0000021031,0.0000021016,0.0000021000,0.0000020983, -0.0000020967,0.0000020963,0.0000020968,0.0000020980,0.0000020996, -0.0000021016,0.0000021037,0.0000021056,0.0000021073,0.0000021088, -0.0000021104,0.0000021117,0.0000021124,0.0000021124,0.0000021125, -0.0000021130,0.0000021131,0.0000021133,0.0000021132,0.0000021131, -0.0000021129,0.0000021127,0.0000021125,0.0000021119,0.0000021110, -0.0000021095,0.0000021076,0.0000021053,0.0000021031,0.0000021006, -0.0000020983,0.0000020966,0.0000020959,0.0000020961,0.0000020972, -0.0000020988,0.0000021008,0.0000021032,0.0000021053,0.0000021070, -0.0000021084,0.0000021094,0.0000021101,0.0000021106,0.0000021109, -0.0000021108,0.0000021099,0.0000021085,0.0000021069,0.0000021055, -0.0000021050,0.0000021048,0.0000021049,0.0000021053,0.0000021057, -0.0000021061,0.0000021067,0.0000021074,0.0000021081,0.0000021088, -0.0000021095,0.0000021105,0.0000021113,0.0000021120,0.0000021128, -0.0000021138,0.0000021149,0.0000021158,0.0000021161,0.0000021158, -0.0000021151,0.0000021142,0.0000021130,0.0000021109,0.0000021085, -0.0000021062,0.0000021037,0.0000021018,0.0000021005,0.0000020996, -0.0000020991,0.0000020992,0.0000020993,0.0000020993,0.0000020990, -0.0000020984,0.0000020977,0.0000020976,0.0000020978,0.0000020981, -0.0000020984,0.0000020985,0.0000020983,0.0000020973,0.0000020954, -0.0000020931,0.0000020904,0.0000020881,0.0000020870,0.0000020867, -0.0000020872,0.0000020884,0.0000020902,0.0000020921,0.0000020941, -0.0000020961,0.0000020978,0.0000020994,0.0000021017,0.0000021040, -0.0000021062,0.0000021083,0.0000021102,0.0000021126,0.0000021161, -0.0000021202,0.0000021242,0.0000021278,0.0000021312,0.0000021342, -0.0000021364,0.0000021381,0.0000021394,0.0000021402,0.0000021402, -0.0000021396,0.0000021379,0.0000021351,0.0000021320,0.0000021288, -0.0000021257,0.0000021227,0.0000021196,0.0000021163,0.0000021134, -0.0000021115,0.0000021094,0.0000021069,0.0000021046,0.0000021025, -0.0000021002,0.0000020980,0.0000020961,0.0000020943,0.0000020924, -0.0000020908,0.0000020895,0.0000020881,0.0000020865,0.0000020855, -0.0000020844,0.0000020830,0.0000020814,0.0000020796,0.0000020775, -0.0000020756,0.0000020742,0.0000020727,0.0000020722,0.0000020726, -0.0000020736,0.0000020752,0.0000020771,0.0000020789,0.0000020802, -0.0000020803,0.0000020795,0.0000020778,0.0000020762,0.0000020748, -0.0000020729,0.0000020715,0.0000020719,0.0000020744,0.0000020786, -0.0000020840,0.0000020899,0.0000020959,0.0000021017,0.0000021068, -0.0000021110,0.0000021142,0.0000021159,0.0000021168,0.0000021175, -0.0000021184,0.0000021200,0.0000021227,0.0000021258,0.0000021291, -0.0000021328,0.0000021366,0.0000021401,0.0000021431,0.0000021454, -0.0000021473,0.0000021498,0.0000021530,0.0000021556,0.0000021578, -0.0000021597,0.0000021608,0.0000021609,0.0000021608,0.0000021604, -0.0000021596,0.0000021585,0.0000021576,0.0000021563,0.0000021545, -0.0000021521,0.0000021494,0.0000021466,0.0000021432,0.0000021397, -0.0000021366,0.0000021340,0.0000021321,0.0000021310,0.0000021298, -0.0000021282,0.0000021267,0.0000021255,0.0000021249,0.0000021246, -0.0000021242,0.0000021240,0.0000021239,0.0000021237,0.0000021231, -0.0000021222,0.0000021212,0.0000021200,0.0000021190,0.0000021184, -0.0000021179,0.0000021178,0.0000021181,0.0000021186,0.0000021190, -0.0000021192,0.0000021194,0.0000021200,0.0000021209,0.0000021222, -0.0000021244,0.0000021271,0.0000021298,0.0000021320,0.0000021340, -0.0000021356,0.0000021369,0.0000021380,0.0000021389,0.0000021390, -0.0000021381,0.0000021357,0.0000021316,0.0000021266,0.0000021209, -0.0000021147,0.0000021084,0.0000021019,0.0000020962,0.0000020932, -0.0000020926,0.0000020931,0.0000020931,0.0000020921,0.0000020899, -0.0000020865,0.0000020826,0.0000020785,0.0000020741,0.0000020692, -0.0000020635,0.0000020572,0.0000020511,0.0000020452,0.0000020395, -0.0000020347,0.0000020313,0.0000020294,0.0000020287,0.0000020282, -0.0000020273,0.0000020254,0.0000020225,0.0000020188,0.0000020153, -0.0000020124,0.0000020103,0.0000020088,0.0000020076,0.0000020071, -0.0000020074,0.0000020088,0.0000020106,0.0000020126,0.0000020148, -0.0000020170,0.0000020194,0.0000020217,0.0000020240,0.0000020261, -0.0000020283,0.0000020306,0.0000020329,0.0000020352,0.0000020376, -0.0000020399,0.0000020416,0.0000020428,0.0000020433,0.0000020433, -0.0000020430,0.0000020426,0.0000020425,0.0000020428,0.0000020439, -0.0000020456,0.0000020479,0.0000020508,0.0000020537,0.0000020559, -0.0000020578,0.0000020591,0.0000020593,0.0000020595,0.0000020600, -0.0000020606,0.0000020610,0.0000020611,0.0000020607,0.0000020599, -0.0000020582,0.0000020562,0.0000020537,0.0000020507,0.0000020472, -0.0000020435,0.0000020400,0.0000020373,0.0000020357,0.0000020349, -0.0000020358,0.0000020376,0.0000020398,0.0000020420,0.0000020438, -0.0000020448,0.0000020447,0.0000020436,0.0000020421,0.0000020406, -0.0000020397,0.0000020386,0.0000020374,0.0000020345,0.0000020310, -0.0000020270,0.0000020225,0.0000020171,0.0000020108,0.0000020040, -0.0000019975,0.0000019920,0.0000019882,0.0000019862,0.0000019852, -0.0000019839,0.0000019818,0.0000019784,0.0000019740,0.0000019689, -0.0000019636,0.0000019583,0.0000019545,0.0000019530,0.0000019521, -0.0000019527,0.0000019532,0.0000019526,0.0000019519,0.0000019492, -0.0000019456,0.0000019423,0.0000019406,0.0000019400,0.0000019406, -0.0000019417,0.0000019432,0.0000019447,0.0000019459,0.0000019474, -0.0000019492,0.0000019510,0.0000019525,0.0000019539,0.0000019555, -0.0000019575,0.0000019593,0.0000019606,0.0000019619,0.0000019622, -0.0000019621,0.0000019616,0.0000019606,0.0000019598,0.0000019613, -0.0000019629,0.0000019654,0.0000019686,0.0000019719,0.0000019755, -0.0000019800,0.0000019860,0.0000019932,0.0000019994,0.0000020037, -0.0000020034,0.0000020010,0.0000019971,0.0000019931,0.0000019893, -0.0000019858,0.0000019833,0.0000019824,0.0000019836,0.0000019869, -0.0000019924,0.0000019992,0.0000020063,0.0000020131,0.0000020193, -0.0000020252,0.0000020301,0.0000020355,0.0000020401,0.0000020445, -0.0000020488,0.0000020530,0.0000020566,0.0000020590,0.0000020608, -0.0000020615,0.0000020610,0.0000020594,0.0000020576,0.0000020563, -0.0000020553,0.0000020543,0.0000020533,0.0000020526,0.0000020522, -0.0000020523,0.0000020531,0.0000020544,0.0000020559,0.0000020578, -0.0000020598,0.0000020615,0.0000020631,0.0000020648,0.0000020669, -0.0000020697,0.0000020740,0.0000020794,0.0000020855,0.0000020920, -0.0000020990,0.0000021061,0.0000021119,0.0000021154,0.0000021172, -0.0000021182,0.0000021188,0.0000021192,0.0000021188,0.0000021173, -0.0000021147,0.0000021117,0.0000021091,0.0000021075,0.0000021062, -0.0000021047,0.0000021027,0.0000020997,0.0000020952,0.0000020897, -0.0000020845,0.0000020807,0.0000020786,0.0000020774,0.0000020758, -0.0000020731,0.0000020697,0.0000020664,0.0000020636,0.0000020615, -0.0000020599,0.0000020581,0.0000020565,0.0000020550,0.0000020533, -0.0000020511,0.0000020486,0.0000020455,0.0000020418,0.0000020374, -0.0000020322,0.0000020266,0.0000020211,0.0000020159,0.0000020115, -0.0000020080,0.0000020053,0.0000020034,0.0000020023,0.0000020012, -0.0000020005,0.0000019999,0.0000019993,0.0000019988,0.0000019978, -0.0000019961,0.0000019939,0.0000019915,0.0000019893,0.0000019876, -0.0000019870,0.0000019872,0.0000019876,0.0000019880,0.0000019885, -0.0000019888,0.0000019887,0.0000019879,0.0000019867,0.0000019850, -0.0000019828,0.0000019804,0.0000019780,0.0000019758,0.0000019739, -0.0000019721,0.0000019702,0.0000019685,0.0000019671,0.0000019659, -0.0000019647,0.0000019640,0.0000019636,0.0000019634,0.0000019634, -0.0000019635,0.0000019639,0.0000019649,0.0000019666,0.0000019691, -0.0000019721,0.0000019753,0.0000019782,0.0000019809,0.0000019832, -0.0000019851,0.0000019867,0.0000019877,0.0000019879,0.0000019876, -0.0000019875,0.0000019878,0.0000019885,0.0000019897,0.0000019913, -0.0000019931,0.0000019952,0.0000019975,0.0000019997,0.0000020014, -0.0000020029,0.0000020039,0.0000020040,0.0000020037,0.0000020034, -0.0000020033,0.0000020040,0.0000020056,0.0000020078,0.0000020104, -0.0000020126,0.0000020141,0.0000020152,0.0000020152,0.0000020149, -0.0000020140,0.0000020122,0.0000020095,0.0000020065,0.0000020036, -0.0000020011,0.0000019991,0.0000019981,0.0000019988,0.0000020014, -0.0000020049,0.0000020093,0.0000020136,0.0000020169,0.0000020187, -0.0000020194,0.0000020192,0.0000020173,0.0000020158,0.0000020143, -0.0000020133,0.0000020133,0.0000020133,0.0000020131,0.0000020129, -0.0000020125,0.0000020119,0.0000020113,0.0000020108,0.0000020108, -0.0000020108,0.0000020104,0.0000020091,0.0000020070,0.0000020045, -0.0000020020,0.0000019990,0.0000019954,0.0000019908,0.0000019850, -0.0000019786,0.0000019724,0.0000019672,0.0000019635,0.0000019619, -0.0000019630,0.0000019658,0.0000019693,0.0000019730,0.0000019769, -0.0000019800,0.0000019796,0.0000019754,0.0000019675,0.0000019595, -0.0000019553,0.0000019554,0.0000019581,0.0000019618,0.0000019640, -0.0000019639,0.0000019599,0.0000019511,0.0000019397,0.0000019303, -0.0000019258,0.0000019250,0.0000019248,0.0000019245,0.0000019236, -0.0000019225,0.0000019223,0.0000019232,0.0000019237,0.0000019230, -0.0000019219,0.0000019215,0.0000019230,0.0000019278,0.0000019345, -0.0000019397,0.0000019418,0.0000019415,0.0000019405,0.0000019397, -0.0000019384,0.0000019349,0.0000019279,0.0000019184,0.0000019114, -0.0000019082,0.0000019089,0.0000019093,0.0000019092,0.0000019099, -0.0000019110,0.0000019106,0.0000019075,0.0000019031,0.0000018988, -0.0000018946,0.0000018896,0.0000018849,0.0000018821,0.0000018818, -0.0000018830,0.0000018846,0.0000018862,0.0000018879,0.0000018906, -0.0000018948,0.0000019007,0.0000019082,0.0000019165,0.0000019247, -0.0000019321,0.0000019391,0.0000019456,0.0000019515,0.0000019569, -0.0000019618,0.0000019665,0.0000019710,0.0000019752,0.0000019792, -0.0000019826,0.0000019846,0.0000019852,0.0000019844,0.0000019820, -0.0000019784,0.0000019745,0.0000019703,0.0000019661,0.0000019619, -0.0000019583,0.0000019557,0.0000019537,0.0000019518,0.0000019499, -0.0000019473,0.0000019433,0.0000019381,0.0000019328,0.0000019280, -0.0000019236,0.0000019183,0.0000019116,0.0000019048,0.0000018999, -0.0000018981,0.0000018987,0.0000019003,0.0000019014,0.0000019013, -0.0000019007,0.0000018986,0.0000018955,0.0000018925,0.0000018902, -0.0000018876,0.0000018846,0.0000018816,0.0000018774,0.0000018721, -0.0000018670,0.0000018617,0.0000018565,0.0000018523,0.0000018492, -0.0000018468,0.0000018446,0.0000018422,0.0000018401,0.0000018384, -0.0000018374,0.0000018363,0.0000018358,0.0000018357,0.0000018348, -0.0000018330,0.0000018310,0.0000018291,0.0000018273,0.0000018253, -0.0000018233,0.0000018212,0.0000018193,0.0000018187,0.0000018207, -0.0000018249,0.0000018300,0.0000018348,0.0000018385,0.0000018405, -0.0000018403,0.0000018385,0.0000018363,0.0000018345,0.0000018335, -0.0000018328,0.0000018314,0.0000018288,0.0000018263,0.0000018252, -0.0000018249,0.0000018245,0.0000018238,0.0000018227,0.0000018211, -0.0000018191,0.0000018163,0.0000018116,0.0000018047,0.0000017957, -0.0000017856,0.0000017752,0.0000017649,0.0000017549,0.0000017458, -0.0000017386,0.0000017337,0.0000017316,0.0000017311,0.0000017313, -0.0000017321,0.0000017345,0.0000017386,0.0000017431,0.0000017473, -0.0000017511,0.0000017545,0.0000017573,0.0000017594,0.0000017610, -0.0000017622,0.0000017633,0.0000017643,0.0000017654,0.0000017666, -0.0000017680,0.0000017698,0.0000017712,0.0000017723,0.0000017733, -0.0000017743,0.0000017750,0.0000017755,0.0000017758,0.0000017757, -0.0000017752,0.0000017747,0.0000017742,0.0000017739,0.0000017739, -0.0000017741,0.0000017745,0.0000017755,0.0000017770,0.0000017787, -0.0000017806,0.0000017825,0.0000017845,0.0000017865,0.0000017884, -0.0000017903,0.0000017920,0.0000017933,0.0000017941,0.0000017947, -0.0000017953,0.0000017956,0.0000017951,0.0000017945,0.0000017936, -0.0000017918,0.0000017897,0.0000017878,0.0000017860,0.0000017842, -0.0000017826,0.0000017811,0.0000017799,0.0000017790,0.0000017790, -0.0000017796,0.0000017800,0.0000017806,0.0000017810,0.0000017809, -0.0000017803,0.0000017798,0.0000017801,0.0000017824,0.0000017873, -0.0000017945,0.0000018023,0.0000018101,0.0000018174,0.0000018247, -0.0000018323,0.0000018397,0.0000018473,0.0000018549,0.0000018624, -0.0000018695,0.0000018757,0.0000018810,0.0000018851,0.0000018879, -0.0000018897,0.0000018910,0.0000018921,0.0000018933,0.0000018951, -0.0000018972,0.0000018984,0.0000018983,0.0000018976,0.0000018973, -0.0000018985,0.0000019014,0.0000019051,0.0000019088,0.0000019119, -0.0000019141,0.0000019161,0.0000019176,0.0000019186,0.0000019192, -0.0000019195,0.0000019195,0.0000019190,0.0000019177,0.0000019156, -0.0000019123,0.0000019088,0.0000019062,0.0000019049,0.0000019044, -0.0000019053,0.0000019076,0.0000019114,0.0000019161,0.0000019216, -0.0000019271,0.0000019308,0.0000019337,0.0000019347,0.0000019351, -0.0000019357,0.0000019360,0.0000019367,0.0000019378,0.0000019392, -0.0000019406,0.0000019421,0.0000019438,0.0000019459,0.0000019484, -0.0000019511,0.0000019539,0.0000019568,0.0000019595,0.0000019622, -0.0000019644,0.0000019663,0.0000019684,0.0000019704,0.0000019725, -0.0000019748,0.0000019771,0.0000019792,0.0000019808,0.0000019817, -0.0000019817,0.0000019808,0.0000019794,0.0000019779,0.0000019763, -0.0000019752,0.0000019748,0.0000019752,0.0000019762,0.0000019777, -0.0000019796,0.0000019818,0.0000019843,0.0000019871,0.0000019899, -0.0000019928,0.0000019954,0.0000019976,0.0000019993,0.0000020006, -0.0000020012,0.0000020017,0.0000020022,0.0000020028,0.0000020031, -0.0000020030,0.0000020023,0.0000020013,0.0000020002,0.0000019989, -0.0000019971,0.0000019948,0.0000019918,0.0000019885,0.0000019849, -0.0000019816,0.0000019786,0.0000019765,0.0000019754,0.0000019753, -0.0000019762,0.0000019778,0.0000019799,0.0000019828,0.0000019857, -0.0000019884,0.0000019909,0.0000019931,0.0000019947,0.0000019957, -0.0000019964,0.0000019970,0.0000019975,0.0000019978,0.0000019977, -0.0000019972,0.0000019963,0.0000019947,0.0000019925,0.0000019893, -0.0000019854,0.0000019809,0.0000019757,0.0000019700,0.0000019640, -0.0000019577,0.0000019512,0.0000019449,0.0000019392,0.0000019341, -0.0000019295,0.0000019250,0.0000019204,0.0000019158,0.0000019115, -0.0000019080,0.0000019059,0.0000019056,0.0000019063,0.0000019072, -0.0000019081,0.0000019096,0.0000019121,0.0000019156,0.0000019189, -0.0000019211,0.0000019220,0.0000019220,0.0000019223,0.0000019235, -0.0000019165,0.0000019185,0.0000019216,0.0000019248,0.0000019269, -0.0000019261,0.0000019222,0.0000019151,0.0000019075,0.0000019015, -0.0000018975,0.0000018944,0.0000018916,0.0000018888,0.0000018870, -0.0000018871,0.0000018898,0.0000018936,0.0000018973,0.0000019004, -0.0000019033,0.0000019073,0.0000019130,0.0000019195,0.0000019253, -0.0000019294,0.0000019319,0.0000019324,0.0000019318,0.0000019313, -0.0000019317,0.0000019329,0.0000019346,0.0000019357,0.0000019358, -0.0000019353,0.0000019347,0.0000019346,0.0000019351,0.0000019373, -0.0000019401,0.0000019432,0.0000019462,0.0000019485,0.0000019503, -0.0000019516,0.0000019520,0.0000019520,0.0000019513,0.0000019505, -0.0000019495,0.0000019482,0.0000019466,0.0000019447,0.0000019427, -0.0000019406,0.0000019386,0.0000019367,0.0000019347,0.0000019325, -0.0000019303,0.0000019283,0.0000019265,0.0000019246,0.0000019227, -0.0000019206,0.0000019182,0.0000019160,0.0000019140,0.0000019122, -0.0000019103,0.0000019087,0.0000019076,0.0000019066,0.0000019057, -0.0000019048,0.0000019042,0.0000019036,0.0000019023,0.0000019001, -0.0000018977,0.0000018951,0.0000018925,0.0000018897,0.0000018872, -0.0000018849,0.0000018825,0.0000018808,0.0000018797,0.0000018794, -0.0000018796,0.0000018799,0.0000018803,0.0000018803,0.0000018800, -0.0000018794,0.0000018788,0.0000018780,0.0000018772,0.0000018770, -0.0000018777,0.0000018796,0.0000018824,0.0000018859,0.0000018899, -0.0000018943,0.0000018989,0.0000019034,0.0000019078,0.0000019114, -0.0000019131,0.0000019141,0.0000019153,0.0000019159,0.0000019168, -0.0000019180,0.0000019196,0.0000019197,0.0000019166,0.0000019089, -0.0000018998,0.0000018940,0.0000018910,0.0000018888,0.0000018873, -0.0000018864,0.0000018856,0.0000018849,0.0000018845,0.0000018843, -0.0000018837,0.0000018833,0.0000018834,0.0000018837,0.0000018847, -0.0000018866,0.0000018898,0.0000018948,0.0000019008,0.0000019067, -0.0000019122,0.0000019171,0.0000019216,0.0000019254,0.0000019290, -0.0000019320,0.0000019346,0.0000019376,0.0000019406,0.0000019437, -0.0000019467,0.0000019492,0.0000019510,0.0000019527,0.0000019547, -0.0000019568,0.0000019587,0.0000019602,0.0000019608,0.0000019606, -0.0000019603,0.0000019605,0.0000019608,0.0000019609,0.0000019609, -0.0000019611,0.0000019615,0.0000019621,0.0000019627,0.0000019636, -0.0000019649,0.0000019663,0.0000019682,0.0000019708,0.0000019738, -0.0000019768,0.0000019795,0.0000019824,0.0000019854,0.0000019883, -0.0000019912,0.0000019942,0.0000019970,0.0000019996,0.0000020020, -0.0000020049,0.0000020078,0.0000020102,0.0000020125,0.0000020148, -0.0000020169,0.0000020186,0.0000020200,0.0000020217,0.0000020235, -0.0000020254,0.0000020268,0.0000020280,0.0000020290,0.0000020301, -0.0000020313,0.0000020324,0.0000020332,0.0000020336,0.0000020335, -0.0000020331,0.0000020329,0.0000020335,0.0000020350,0.0000020368, -0.0000020385,0.0000020397,0.0000020405,0.0000020410,0.0000020413, -0.0000020414,0.0000020416,0.0000020418,0.0000020425,0.0000020437, -0.0000020457,0.0000020480,0.0000020504,0.0000020527,0.0000020549, -0.0000020567,0.0000020575,0.0000020572,0.0000020567,0.0000020574, -0.0000020611,0.0000020677,0.0000020749,0.0000020794,0.0000020808, -0.0000020831,0.0000020885,0.0000020927,0.0000020933,0.0000020927, -0.0000020910,0.0000020866,0.0000020787,0.0000020703,0.0000020640, -0.0000020599,0.0000020571,0.0000020549,0.0000020534,0.0000020530, -0.0000020534,0.0000020544,0.0000020557,0.0000020570,0.0000020583, -0.0000020591,0.0000020597,0.0000020598,0.0000020597,0.0000020592, -0.0000020584,0.0000020575,0.0000020565,0.0000020555,0.0000020547, -0.0000020546,0.0000020553,0.0000020565,0.0000020591,0.0000020626, -0.0000020664,0.0000020700,0.0000020733,0.0000020760,0.0000020782, -0.0000020800,0.0000020815,0.0000020827,0.0000020835,0.0000020842, -0.0000020847,0.0000020850,0.0000020847,0.0000020837,0.0000020825, -0.0000020813,0.0000020803,0.0000020798,0.0000020791,0.0000020777, -0.0000020756,0.0000020730,0.0000020697,0.0000020658,0.0000020616, -0.0000020574,0.0000020529,0.0000020499,0.0000020499,0.0000020541, -0.0000020608,0.0000020668,0.0000020706,0.0000020732,0.0000020754, -0.0000020769,0.0000020775,0.0000020774,0.0000020771,0.0000020765, -0.0000020755,0.0000020739,0.0000020714,0.0000020681,0.0000020653, -0.0000020639,0.0000020643,0.0000020648,0.0000020619,0.0000020529, -0.0000020397,0.0000020287,0.0000020250,0.0000020255,0.0000020256, -0.0000020236,0.0000020218,0.0000020220,0.0000020219,0.0000020196, -0.0000020151,0.0000020096,0.0000020052,0.0000020036,0.0000020072, -0.0000020181,0.0000020290,0.0000020358,0.0000020392,0.0000020374, -0.0000020257,0.0000020073,0.0000019969,0.0000020029,0.0000020253, -0.0000020461,0.0000020521,0.0000020531,0.0000020567,0.0000020624, -0.0000020672,0.0000020723,0.0000020847,0.0000021014,0.0000021113, -0.0000021138,0.0000021162,0.0000021255,0.0000021404,0.0000021536, -0.0000021617,0.0000021681,0.0000021736,0.0000021773,0.0000021796, -0.0000021796,0.0000021764,0.0000021711,0.0000021659,0.0000021625, -0.0000021604,0.0000021581,0.0000021549,0.0000021516,0.0000021485, -0.0000021470,0.0000021475,0.0000021494,0.0000021521,0.0000021552, -0.0000021581,0.0000021599,0.0000021608,0.0000021615,0.0000021622, -0.0000021625,0.0000021626,0.0000021624,0.0000021619,0.0000021610, -0.0000021594,0.0000021572,0.0000021549,0.0000021526,0.0000021508, -0.0000021498,0.0000021491,0.0000021485,0.0000021481,0.0000021482, -0.0000021494,0.0000021515,0.0000021535,0.0000021554,0.0000021568, -0.0000021564,0.0000021548,0.0000021522,0.0000021490,0.0000021448, -0.0000021397,0.0000021340,0.0000021283,0.0000021230,0.0000021182, -0.0000021142,0.0000021106,0.0000021076,0.0000021051,0.0000021032, -0.0000021014,0.0000020992,0.0000020970,0.0000020953,0.0000020941, -0.0000020933,0.0000020931,0.0000020936,0.0000020941,0.0000020946, -0.0000020962,0.0000020980,0.0000021003,0.0000021029,0.0000021056, -0.0000021079,0.0000021098,0.0000021116,0.0000021133,0.0000021145, -0.0000021158,0.0000021166,0.0000021170,0.0000021179,0.0000021187, -0.0000021187,0.0000021185,0.0000021182,0.0000021172,0.0000021154, -0.0000021131,0.0000021106,0.0000021075,0.0000021042,0.0000021017, -0.0000021000,0.0000020992,0.0000020992,0.0000020999,0.0000021011, -0.0000021026,0.0000021041,0.0000021053,0.0000021061,0.0000021064, -0.0000021065,0.0000021061,0.0000021054,0.0000021046,0.0000021033, -0.0000021013,0.0000020990,0.0000020974,0.0000020962,0.0000020955, -0.0000020954,0.0000020954,0.0000020955,0.0000020956,0.0000020959, -0.0000020964,0.0000020970,0.0000020976,0.0000020983,0.0000020991, -0.0000021000,0.0000021010,0.0000021023,0.0000021041,0.0000021062, -0.0000021084,0.0000021099,0.0000021107,0.0000021110,0.0000021107, -0.0000021098,0.0000021082,0.0000021062,0.0000021039,0.0000021016, -0.0000020999,0.0000020989,0.0000020982,0.0000020981,0.0000020985, -0.0000020991,0.0000020996,0.0000020999,0.0000020998,0.0000020997, -0.0000020997,0.0000020999,0.0000021003,0.0000021006,0.0000021007, -0.0000021003,0.0000020989,0.0000020968,0.0000020942,0.0000020913, -0.0000020892,0.0000020876,0.0000020870,0.0000020873,0.0000020882, -0.0000020893,0.0000020900,0.0000020906,0.0000020915,0.0000020924, -0.0000020933,0.0000020946,0.0000020961,0.0000020977,0.0000020997, -0.0000021019,0.0000021044,0.0000021078,0.0000021114,0.0000021146, -0.0000021178,0.0000021211,0.0000021241,0.0000021267,0.0000021292, -0.0000021314,0.0000021332,0.0000021343,0.0000021348,0.0000021345, -0.0000021335,0.0000021315,0.0000021289,0.0000021265,0.0000021243, -0.0000021213,0.0000021178,0.0000021145,0.0000021122,0.0000021102, -0.0000021082,0.0000021062,0.0000021041,0.0000021018,0.0000020994, -0.0000020969,0.0000020939,0.0000020909,0.0000020879,0.0000020854, -0.0000020830,0.0000020811,0.0000020799,0.0000020796,0.0000020797, -0.0000020803,0.0000020808,0.0000020811,0.0000020809,0.0000020800, -0.0000020784,0.0000020763,0.0000020743,0.0000020727,0.0000020712, -0.0000020701,0.0000020694,0.0000020692,0.0000020695,0.0000020700, -0.0000020703,0.0000020704,0.0000020701,0.0000020695,0.0000020688, -0.0000020686,0.0000020691,0.0000020705,0.0000020731,0.0000020766, -0.0000020812,0.0000020868,0.0000020931,0.0000020996,0.0000021056, -0.0000021103,0.0000021131,0.0000021146,0.0000021159,0.0000021170, -0.0000021183,0.0000021201,0.0000021225,0.0000021259,0.0000021298, -0.0000021339,0.0000021375,0.0000021402,0.0000021427,0.0000021457, -0.0000021492,0.0000021527,0.0000021562,0.0000021599,0.0000021621, -0.0000021639,0.0000021647,0.0000021644,0.0000021631,0.0000021610, -0.0000021588,0.0000021563,0.0000021536,0.0000021509,0.0000021481, -0.0000021450,0.0000021415,0.0000021383,0.0000021357,0.0000021343, -0.0000021335,0.0000021327,0.0000021315,0.0000021297,0.0000021278, -0.0000021260,0.0000021245,0.0000021232,0.0000021222,0.0000021216, -0.0000021212,0.0000021209,0.0000021204,0.0000021196,0.0000021187, -0.0000021177,0.0000021167,0.0000021157,0.0000021150,0.0000021146, -0.0000021145,0.0000021147,0.0000021147,0.0000021145,0.0000021146, -0.0000021149,0.0000021154,0.0000021161,0.0000021176,0.0000021197, -0.0000021219,0.0000021241,0.0000021264,0.0000021285,0.0000021304, -0.0000021323,0.0000021338,0.0000021344,0.0000021337,0.0000021314, -0.0000021276,0.0000021223,0.0000021165,0.0000021106,0.0000021043, -0.0000020979,0.0000020930,0.0000020901,0.0000020891,0.0000020888, -0.0000020880,0.0000020862,0.0000020833,0.0000020794,0.0000020749, -0.0000020703,0.0000020655,0.0000020600,0.0000020539,0.0000020477, -0.0000020418,0.0000020362,0.0000020308,0.0000020261,0.0000020228, -0.0000020207,0.0000020193,0.0000020179,0.0000020163,0.0000020142, -0.0000020116,0.0000020089,0.0000020065,0.0000020047,0.0000020032, -0.0000020021,0.0000020015,0.0000020016,0.0000020026,0.0000020041, -0.0000020058,0.0000020078,0.0000020101,0.0000020124,0.0000020144, -0.0000020162,0.0000020177,0.0000020192,0.0000020209,0.0000020226, -0.0000020242,0.0000020260,0.0000020280,0.0000020296,0.0000020306, -0.0000020312,0.0000020313,0.0000020311,0.0000020305,0.0000020301, -0.0000020306,0.0000020317,0.0000020334,0.0000020357,0.0000020390, -0.0000020427,0.0000020464,0.0000020496,0.0000020523,0.0000020545, -0.0000020561,0.0000020575,0.0000020593,0.0000020614,0.0000020629, -0.0000020630,0.0000020633,0.0000020629,0.0000020617,0.0000020599, -0.0000020573,0.0000020544,0.0000020512,0.0000020479,0.0000020446, -0.0000020414,0.0000020385,0.0000020370,0.0000020371,0.0000020385, -0.0000020408,0.0000020431,0.0000020450,0.0000020457,0.0000020452, -0.0000020436,0.0000020414,0.0000020396,0.0000020386,0.0000020375, -0.0000020361,0.0000020344,0.0000020328,0.0000020308,0.0000020279, -0.0000020235,0.0000020173,0.0000020101,0.0000020030,0.0000019969, -0.0000019925,0.0000019896,0.0000019873,0.0000019850,0.0000019825, -0.0000019797,0.0000019766,0.0000019730,0.0000019685,0.0000019634, -0.0000019581,0.0000019538,0.0000019507,0.0000019500,0.0000019500, -0.0000019507,0.0000019512,0.0000019503,0.0000019484,0.0000019464, -0.0000019443,0.0000019431,0.0000019426,0.0000019429,0.0000019441, -0.0000019452,0.0000019458,0.0000019466,0.0000019475,0.0000019482, -0.0000019489,0.0000019501,0.0000019518,0.0000019542,0.0000019570, -0.0000019597,0.0000019624,0.0000019640,0.0000019656,0.0000019658, -0.0000019650,0.0000019645,0.0000019644,0.0000019646,0.0000019654, -0.0000019668,0.0000019688,0.0000019713,0.0000019747,0.0000019796, -0.0000019863,0.0000019935,0.0000019994,0.0000020009,0.0000020003, -0.0000019978,0.0000019947,0.0000019913,0.0000019883,0.0000019861, -0.0000019852,0.0000019860,0.0000019889,0.0000019940,0.0000020009, -0.0000020084,0.0000020160,0.0000020232,0.0000020295,0.0000020355, -0.0000020407,0.0000020451,0.0000020491,0.0000020529,0.0000020562, -0.0000020588,0.0000020604,0.0000020613,0.0000020612,0.0000020606, -0.0000020599,0.0000020594,0.0000020592,0.0000020589,0.0000020584, -0.0000020578,0.0000020574,0.0000020576,0.0000020584,0.0000020594, -0.0000020608,0.0000020629,0.0000020655,0.0000020681,0.0000020706, -0.0000020733,0.0000020766,0.0000020807,0.0000020858,0.0000020917, -0.0000020979,0.0000021040,0.0000021096,0.0000021138,0.0000021164, -0.0000021178,0.0000021189,0.0000021196,0.0000021193,0.0000021179, -0.0000021152,0.0000021121,0.0000021093,0.0000021067,0.0000021046, -0.0000021028,0.0000021007,0.0000020986,0.0000020961,0.0000020925, -0.0000020878,0.0000020825,0.0000020775,0.0000020738,0.0000020714, -0.0000020693,0.0000020668,0.0000020637,0.0000020607,0.0000020580, -0.0000020555,0.0000020535,0.0000020516,0.0000020495,0.0000020475, -0.0000020456,0.0000020434,0.0000020407,0.0000020375,0.0000020337, -0.0000020294,0.0000020250,0.0000020204,0.0000020163,0.0000020128, -0.0000020100,0.0000020080,0.0000020067,0.0000020064,0.0000020060, -0.0000020055,0.0000020048,0.0000020036,0.0000020018,0.0000019997, -0.0000019975,0.0000019948,0.0000019922,0.0000019897,0.0000019876, -0.0000019861,0.0000019854,0.0000019856,0.0000019862,0.0000019867, -0.0000019866,0.0000019856,0.0000019836,0.0000019807,0.0000019773, -0.0000019738,0.0000019703,0.0000019672,0.0000019644,0.0000019621, -0.0000019603,0.0000019587,0.0000019569,0.0000019550,0.0000019530, -0.0000019511,0.0000019491,0.0000019475,0.0000019464,0.0000019452, -0.0000019439,0.0000019428,0.0000019421,0.0000019420,0.0000019425, -0.0000019440,0.0000019470,0.0000019512,0.0000019559,0.0000019609, -0.0000019657,0.0000019703,0.0000019745,0.0000019781,0.0000019807, -0.0000019824,0.0000019835,0.0000019840,0.0000019840,0.0000019838, -0.0000019836,0.0000019835,0.0000019838,0.0000019845,0.0000019861, -0.0000019886,0.0000019916,0.0000019949,0.0000019980,0.0000020002, -0.0000020016,0.0000020022,0.0000020019,0.0000020016,0.0000020018, -0.0000020030,0.0000020051,0.0000020076,0.0000020102,0.0000020125, -0.0000020140,0.0000020150,0.0000020151,0.0000020143,0.0000020122, -0.0000020094,0.0000020066,0.0000020043,0.0000020022,0.0000020006, -0.0000020000,0.0000020004,0.0000020010,0.0000020029,0.0000020059, -0.0000020088,0.0000020117,0.0000020143,0.0000020156,0.0000020156, -0.0000020149,0.0000020142,0.0000020143,0.0000020150,0.0000020151, -0.0000020147,0.0000020142,0.0000020133,0.0000020121,0.0000020109, -0.0000020101,0.0000020097,0.0000020096,0.0000020093,0.0000020081, -0.0000020062,0.0000020041,0.0000020018,0.0000019988,0.0000019954, -0.0000019909,0.0000019849,0.0000019782,0.0000019719,0.0000019663, -0.0000019618,0.0000019596,0.0000019596,0.0000019619,0.0000019653, -0.0000019691,0.0000019732,0.0000019766,0.0000019769,0.0000019732, -0.0000019661,0.0000019587,0.0000019548,0.0000019547,0.0000019578, -0.0000019618,0.0000019640,0.0000019639,0.0000019600,0.0000019514, -0.0000019401,0.0000019306,0.0000019259,0.0000019248,0.0000019243, -0.0000019235,0.0000019223,0.0000019209,0.0000019203,0.0000019214, -0.0000019224,0.0000019223,0.0000019214,0.0000019205,0.0000019213, -0.0000019252,0.0000019316,0.0000019371,0.0000019397,0.0000019394, -0.0000019383,0.0000019372,0.0000019355,0.0000019316,0.0000019231, -0.0000019129,0.0000019062,0.0000019039,0.0000019038,0.0000019034, -0.0000019035,0.0000019048,0.0000019060,0.0000019046,0.0000019011, -0.0000018976,0.0000018943,0.0000018898,0.0000018842,0.0000018793, -0.0000018768,0.0000018769,0.0000018780,0.0000018792,0.0000018800, -0.0000018806,0.0000018817,0.0000018842,0.0000018887,0.0000018951, -0.0000019028,0.0000019112,0.0000019197,0.0000019282,0.0000019360, -0.0000019431,0.0000019492,0.0000019545,0.0000019590,0.0000019632, -0.0000019675,0.0000019718,0.0000019754,0.0000019780,0.0000019794, -0.0000019791,0.0000019773,0.0000019741,0.0000019701,0.0000019661, -0.0000019618,0.0000019583,0.0000019558,0.0000019538,0.0000019520, -0.0000019502,0.0000019473,0.0000019426,0.0000019366,0.0000019307, -0.0000019255,0.0000019207,0.0000019151,0.0000019081,0.0000019012, -0.0000018958,0.0000018930,0.0000018929,0.0000018942,0.0000018956, -0.0000018962,0.0000018960,0.0000018950,0.0000018930,0.0000018903, -0.0000018874,0.0000018844,0.0000018812,0.0000018779,0.0000018738, -0.0000018690,0.0000018642,0.0000018590,0.0000018535,0.0000018488, -0.0000018460,0.0000018439,0.0000018423,0.0000018405,0.0000018394, -0.0000018387,0.0000018376,0.0000018366,0.0000018363,0.0000018362, -0.0000018358,0.0000018349,0.0000018329,0.0000018307,0.0000018292, -0.0000018274,0.0000018251,0.0000018225,0.0000018196,0.0000018172, -0.0000018168,0.0000018186,0.0000018227,0.0000018276,0.0000018320, -0.0000018353,0.0000018363,0.0000018352,0.0000018335,0.0000018326, -0.0000018324,0.0000018322,0.0000018308,0.0000018287,0.0000018275, -0.0000018273,0.0000018268,0.0000018261,0.0000018249,0.0000018233, -0.0000018211,0.0000018179,0.0000018125,0.0000018047,0.0000017950, -0.0000017845,0.0000017734,0.0000017622,0.0000017517,0.0000017431, -0.0000017372,0.0000017338,0.0000017326,0.0000017328,0.0000017342, -0.0000017365,0.0000017392,0.0000017424,0.0000017459,0.0000017494, -0.0000017526,0.0000017553,0.0000017576,0.0000017595,0.0000017610, -0.0000017624,0.0000017635,0.0000017644,0.0000017654,0.0000017664, -0.0000017674,0.0000017685,0.0000017700,0.0000017712,0.0000017718, -0.0000017723,0.0000017724,0.0000017722,0.0000017718,0.0000017715, -0.0000017709,0.0000017701,0.0000017692,0.0000017685,0.0000017680, -0.0000017683,0.0000017684,0.0000017684,0.0000017688,0.0000017699, -0.0000017711,0.0000017725,0.0000017736,0.0000017739,0.0000017751, -0.0000017764,0.0000017778,0.0000017794,0.0000017813,0.0000017834, -0.0000017850,0.0000017868,0.0000017889,0.0000017909,0.0000017926, -0.0000017937,0.0000017937,0.0000017931,0.0000017921,0.0000017918, -0.0000017906,0.0000017887,0.0000017871,0.0000017854,0.0000017835, -0.0000017817,0.0000017807,0.0000017803,0.0000017804,0.0000017805, -0.0000017801,0.0000017796,0.0000017787,0.0000017779,0.0000017767, -0.0000017762,0.0000017771,0.0000017802,0.0000017854,0.0000017921, -0.0000018000,0.0000018084,0.0000018168,0.0000018252,0.0000018338, -0.0000018428,0.0000018519,0.0000018605,0.0000018686,0.0000018755, -0.0000018808,0.0000018844,0.0000018870,0.0000018894,0.0000018913, -0.0000018932,0.0000018957,0.0000018976,0.0000018985,0.0000018984, -0.0000018975,0.0000018969,0.0000018973,0.0000018991,0.0000019022, -0.0000019058,0.0000019094,0.0000019126,0.0000019154,0.0000019174, -0.0000019182,0.0000019183,0.0000019181,0.0000019177,0.0000019169, -0.0000019157,0.0000019135,0.0000019104,0.0000019072,0.0000019050, -0.0000019043,0.0000019046,0.0000019061,0.0000019082,0.0000019112, -0.0000019151,0.0000019197,0.0000019250,0.0000019294,0.0000019321, -0.0000019346,0.0000019356,0.0000019360,0.0000019362,0.0000019368, -0.0000019379,0.0000019393,0.0000019406,0.0000019419,0.0000019437, -0.0000019458,0.0000019479,0.0000019501,0.0000019522,0.0000019544, -0.0000019565,0.0000019582,0.0000019597,0.0000019610,0.0000019620, -0.0000019629,0.0000019637,0.0000019643,0.0000019648,0.0000019652, -0.0000019654,0.0000019650,0.0000019640,0.0000019625,0.0000019610, -0.0000019593,0.0000019579,0.0000019569,0.0000019564,0.0000019565, -0.0000019570,0.0000019580,0.0000019596,0.0000019619,0.0000019645, -0.0000019671,0.0000019697,0.0000019723,0.0000019746,0.0000019768, -0.0000019785,0.0000019798,0.0000019808,0.0000019817,0.0000019822, -0.0000019820,0.0000019815,0.0000019805,0.0000019790,0.0000019772, -0.0000019748,0.0000019717,0.0000019681,0.0000019642,0.0000019603, -0.0000019563,0.0000019526,0.0000019496,0.0000019479,0.0000019473, -0.0000019478,0.0000019493,0.0000019514,0.0000019539,0.0000019570, -0.0000019603,0.0000019636,0.0000019666,0.0000019695,0.0000019718, -0.0000019734,0.0000019744,0.0000019752,0.0000019759,0.0000019767, -0.0000019775,0.0000019778,0.0000019779,0.0000019775,0.0000019763, -0.0000019741,0.0000019709,0.0000019669,0.0000019621,0.0000019569, -0.0000019512,0.0000019450,0.0000019386,0.0000019324,0.0000019266, -0.0000019218,0.0000019175,0.0000019134,0.0000019096,0.0000019061, -0.0000019028,0.0000018998,0.0000018978,0.0000018975,0.0000018979, -0.0000018990,0.0000019004,0.0000019017,0.0000019034,0.0000019058, -0.0000019090,0.0000019119,0.0000019141,0.0000019152,0.0000019157, -0.0000019073,0.0000019085,0.0000019105,0.0000019138,0.0000019181, -0.0000019218,0.0000019239,0.0000019230,0.0000019185,0.0000019110, -0.0000019032,0.0000018975,0.0000018939,0.0000018912,0.0000018885, -0.0000018860,0.0000018851,0.0000018858,0.0000018889,0.0000018927, -0.0000018958,0.0000018984,0.0000019017,0.0000019065,0.0000019125, -0.0000019185,0.0000019236,0.0000019267,0.0000019275,0.0000019269, -0.0000019260,0.0000019262,0.0000019274,0.0000019293,0.0000019313, -0.0000019341,0.0000019363,0.0000019375,0.0000019382,0.0000019394, -0.0000019411,0.0000019430,0.0000019451,0.0000019474,0.0000019495, -0.0000019512,0.0000019527,0.0000019535,0.0000019536,0.0000019534, -0.0000019527,0.0000019517,0.0000019503,0.0000019486,0.0000019465, -0.0000019440,0.0000019412,0.0000019383,0.0000019354,0.0000019325, -0.0000019297,0.0000019273,0.0000019255,0.0000019239,0.0000019223, -0.0000019209,0.0000019190,0.0000019168,0.0000019146,0.0000019123, -0.0000019100,0.0000019076,0.0000019053,0.0000019032,0.0000019016, -0.0000019003,0.0000018995,0.0000018990,0.0000018983,0.0000018973, -0.0000018962,0.0000018947,0.0000018935,0.0000018918,0.0000018896, -0.0000018875,0.0000018856,0.0000018835,0.0000018817,0.0000018805, -0.0000018796,0.0000018791,0.0000018786,0.0000018782,0.0000018776, -0.0000018766,0.0000018754,0.0000018739,0.0000018725,0.0000018713, -0.0000018709,0.0000018716,0.0000018735,0.0000018763,0.0000018793, -0.0000018827,0.0000018867,0.0000018912,0.0000018962,0.0000019019, -0.0000019076,0.0000019124,0.0000019154,0.0000019174,0.0000019185, -0.0000019193,0.0000019200,0.0000019207,0.0000019207,0.0000019176, -0.0000019097,0.0000018990,0.0000018906,0.0000018858,0.0000018837, -0.0000018827,0.0000018821,0.0000018813,0.0000018808,0.0000018807, -0.0000018810,0.0000018813,0.0000018811,0.0000018811,0.0000018813, -0.0000018817,0.0000018826,0.0000018848,0.0000018883,0.0000018930, -0.0000018987,0.0000019044,0.0000019097,0.0000019144,0.0000019184, -0.0000019213,0.0000019235,0.0000019260,0.0000019288,0.0000019321, -0.0000019353,0.0000019382,0.0000019407,0.0000019432,0.0000019461, -0.0000019489,0.0000019513,0.0000019530,0.0000019537,0.0000019535, -0.0000019532,0.0000019531,0.0000019528,0.0000019522,0.0000019516, -0.0000019515,0.0000019515,0.0000019516,0.0000019519,0.0000019525, -0.0000019535,0.0000019549,0.0000019569,0.0000019597,0.0000019631, -0.0000019667,0.0000019702,0.0000019740,0.0000019780,0.0000019818, -0.0000019858,0.0000019898,0.0000019934,0.0000019967,0.0000019996, -0.0000020030,0.0000020062,0.0000020089,0.0000020113,0.0000020135, -0.0000020154,0.0000020168,0.0000020179,0.0000020189,0.0000020201, -0.0000020212,0.0000020218,0.0000020221,0.0000020224,0.0000020228, -0.0000020234,0.0000020241,0.0000020247,0.0000020250,0.0000020250, -0.0000020251,0.0000020256,0.0000020267,0.0000020285,0.0000020308, -0.0000020331,0.0000020351,0.0000020366,0.0000020375,0.0000020381, -0.0000020386,0.0000020390,0.0000020393,0.0000020399,0.0000020410, -0.0000020427,0.0000020448,0.0000020470,0.0000020491,0.0000020510, -0.0000020528,0.0000020537,0.0000020535,0.0000020528,0.0000020531, -0.0000020561,0.0000020625,0.0000020703,0.0000020756,0.0000020773, -0.0000020794,0.0000020845,0.0000020883,0.0000020888,0.0000020880, -0.0000020860,0.0000020809,0.0000020730,0.0000020655,0.0000020600, -0.0000020565,0.0000020544,0.0000020530,0.0000020519,0.0000020515, -0.0000020517,0.0000020524,0.0000020535,0.0000020550,0.0000020564, -0.0000020573,0.0000020576,0.0000020576,0.0000020572,0.0000020564, -0.0000020550,0.0000020534,0.0000020517,0.0000020498,0.0000020481, -0.0000020470,0.0000020465,0.0000020470,0.0000020489,0.0000020519, -0.0000020553,0.0000020592,0.0000020630,0.0000020663,0.0000020689, -0.0000020711,0.0000020734,0.0000020754,0.0000020768,0.0000020778, -0.0000020783,0.0000020784,0.0000020784,0.0000020784,0.0000020781, -0.0000020776,0.0000020770,0.0000020764,0.0000020758,0.0000020749, -0.0000020736,0.0000020713,0.0000020681,0.0000020644,0.0000020608, -0.0000020569,0.0000020526,0.0000020482,0.0000020465,0.0000020481, -0.0000020534,0.0000020594,0.0000020640,0.0000020672,0.0000020698, -0.0000020720,0.0000020734,0.0000020739,0.0000020737,0.0000020730, -0.0000020722,0.0000020710,0.0000020691,0.0000020666,0.0000020638, -0.0000020614,0.0000020610,0.0000020626,0.0000020628,0.0000020565, -0.0000020437,0.0000020304,0.0000020239,0.0000020237,0.0000020241, -0.0000020227,0.0000020219,0.0000020220,0.0000020218,0.0000020196, -0.0000020149,0.0000020092,0.0000020045,0.0000020035,0.0000020078, -0.0000020192,0.0000020298,0.0000020357,0.0000020373,0.0000020337, -0.0000020208,0.0000020037,0.0000019970,0.0000020070,0.0000020304, -0.0000020492,0.0000020541,0.0000020555,0.0000020597,0.0000020651, -0.0000020694,0.0000020767,0.0000020917,0.0000021074,0.0000021146, -0.0000021162,0.0000021200,0.0000021305,0.0000021444,0.0000021547, -0.0000021611,0.0000021669,0.0000021717,0.0000021748,0.0000021767, -0.0000021762,0.0000021726,0.0000021669,0.0000021616,0.0000021580, -0.0000021560,0.0000021545,0.0000021526,0.0000021498,0.0000021468, -0.0000021450,0.0000021437,0.0000021435,0.0000021447,0.0000021464, -0.0000021481,0.0000021499,0.0000021522,0.0000021549,0.0000021571, -0.0000021587,0.0000021598,0.0000021605,0.0000021604,0.0000021594, -0.0000021574,0.0000021553,0.0000021530,0.0000021507,0.0000021489, -0.0000021477,0.0000021463,0.0000021444,0.0000021424,0.0000021409, -0.0000021401,0.0000021401,0.0000021413,0.0000021434,0.0000021456, -0.0000021472,0.0000021481,0.0000021481,0.0000021468,0.0000021448, -0.0000021422,0.0000021393,0.0000021361,0.0000021327,0.0000021293, -0.0000021261,0.0000021231,0.0000021203,0.0000021177,0.0000021152, -0.0000021125,0.0000021099,0.0000021072,0.0000021046,0.0000021021, -0.0000020997,0.0000020976,0.0000020958,0.0000020942,0.0000020928, -0.0000020920,0.0000020917,0.0000020921,0.0000020931,0.0000020940, -0.0000020959,0.0000020990,0.0000021023,0.0000021055,0.0000021086, -0.0000021114,0.0000021142,0.0000021166,0.0000021189,0.0000021207, -0.0000021218,0.0000021226,0.0000021225,0.0000021213,0.0000021197, -0.0000021182,0.0000021154,0.0000021122,0.0000021089,0.0000021061, -0.0000021044,0.0000021037,0.0000021036,0.0000021038,0.0000021042, -0.0000021048,0.0000021055,0.0000021058,0.0000021058,0.0000021055, -0.0000021049,0.0000021037,0.0000021021,0.0000021001,0.0000020977, -0.0000020957,0.0000020940,0.0000020922,0.0000020909,0.0000020901, -0.0000020899,0.0000020899,0.0000020901,0.0000020903,0.0000020907, -0.0000020909,0.0000020913,0.0000020916,0.0000020916,0.0000020918, -0.0000020922,0.0000020929,0.0000020943,0.0000020962,0.0000020987, -0.0000021007,0.0000021021,0.0000021030,0.0000021032,0.0000021028, -0.0000021015,0.0000020995,0.0000020972,0.0000020947,0.0000020928, -0.0000020917,0.0000020910,0.0000020909,0.0000020915,0.0000020926, -0.0000020937,0.0000020946,0.0000020953,0.0000020960,0.0000020968, -0.0000020970,0.0000020973,0.0000020975,0.0000020972,0.0000020963, -0.0000020947,0.0000020925,0.0000020899,0.0000020878,0.0000020854, -0.0000020837,0.0000020832,0.0000020838,0.0000020846,0.0000020851, -0.0000020851,0.0000020849,0.0000020848,0.0000020849,0.0000020856, -0.0000020865,0.0000020878,0.0000020897,0.0000020923,0.0000020950, -0.0000020978,0.0000021009,0.0000021039,0.0000021065,0.0000021092, -0.0000021119,0.0000021144,0.0000021167,0.0000021187,0.0000021205, -0.0000021218,0.0000021225,0.0000021227,0.0000021226,0.0000021224, -0.0000021219,0.0000021211,0.0000021202,0.0000021198,0.0000021187, -0.0000021166,0.0000021146,0.0000021131,0.0000021117,0.0000021100, -0.0000021081,0.0000021062,0.0000021041,0.0000021019,0.0000020992, -0.0000020959,0.0000020922,0.0000020886,0.0000020854,0.0000020823, -0.0000020795,0.0000020773,0.0000020759,0.0000020751,0.0000020750, -0.0000020753,0.0000020762,0.0000020771,0.0000020779,0.0000020781, -0.0000020780,0.0000020776,0.0000020768,0.0000020752,0.0000020729, -0.0000020702,0.0000020676,0.0000020653,0.0000020636,0.0000020622, -0.0000020609,0.0000020602,0.0000020603,0.0000020610,0.0000020623, -0.0000020640,0.0000020663,0.0000020689,0.0000020713,0.0000020737, -0.0000020765,0.0000020800,0.0000020845,0.0000020901,0.0000020961, -0.0000021018,0.0000021068,0.0000021110,0.0000021140,0.0000021160, -0.0000021172,0.0000021184,0.0000021202,0.0000021233,0.0000021272, -0.0000021308,0.0000021340,0.0000021372,0.0000021405,0.0000021437, -0.0000021468,0.0000021501,0.0000021540,0.0000021580,0.0000021616, -0.0000021645,0.0000021649,0.0000021655,0.0000021646,0.0000021622, -0.0000021591,0.0000021555,0.0000021518,0.0000021481,0.0000021443, -0.0000021405,0.0000021373,0.0000021354,0.0000021344,0.0000021335, -0.0000021324,0.0000021309,0.0000021287,0.0000021261,0.0000021231, -0.0000021204,0.0000021180,0.0000021161,0.0000021149,0.0000021143, -0.0000021138,0.0000021132,0.0000021126,0.0000021122,0.0000021115, -0.0000021109,0.0000021105,0.0000021101,0.0000021099,0.0000021098, -0.0000021097,0.0000021095,0.0000021094,0.0000021094,0.0000021095, -0.0000021096,0.0000021099,0.0000021108,0.0000021122,0.0000021140, -0.0000021161,0.0000021184,0.0000021209,0.0000021232,0.0000021255, -0.0000021274,0.0000021281,0.0000021276,0.0000021256,0.0000021220, -0.0000021168,0.0000021109,0.0000021047,0.0000020984,0.0000020927, -0.0000020882,0.0000020854,0.0000020840,0.0000020833,0.0000020822, -0.0000020801,0.0000020770,0.0000020730,0.0000020684,0.0000020636, -0.0000020584,0.0000020525,0.0000020461,0.0000020397,0.0000020338, -0.0000020287,0.0000020240,0.0000020202,0.0000020173,0.0000020149, -0.0000020125,0.0000020100,0.0000020077,0.0000020054,0.0000020032, -0.0000020015,0.0000020003,0.0000019994,0.0000019986,0.0000019981, -0.0000019982,0.0000019989,0.0000020000,0.0000020014,0.0000020032, -0.0000020057,0.0000020084,0.0000020106,0.0000020122,0.0000020135, -0.0000020147,0.0000020161,0.0000020174,0.0000020184,0.0000020193, -0.0000020204,0.0000020213,0.0000020220,0.0000020222,0.0000020220, -0.0000020215,0.0000020206,0.0000020198,0.0000020196,0.0000020200, -0.0000020208,0.0000020223,0.0000020247,0.0000020279,0.0000020314, -0.0000020350,0.0000020384,0.0000020412,0.0000020436,0.0000020461, -0.0000020494,0.0000020531,0.0000020562,0.0000020586,0.0000020599, -0.0000020602,0.0000020598,0.0000020589,0.0000020572,0.0000020552, -0.0000020529,0.0000020503,0.0000020486,0.0000020462,0.0000020435, -0.0000020408,0.0000020392,0.0000020391,0.0000020402,0.0000020420, -0.0000020439,0.0000020453,0.0000020458,0.0000020453,0.0000020438, -0.0000020421,0.0000020404,0.0000020384,0.0000020365,0.0000020346, -0.0000020330,0.0000020320,0.0000020310,0.0000020294,0.0000020260, -0.0000020210,0.0000020152,0.0000020094,0.0000020041,0.0000019994, -0.0000019952,0.0000019914,0.0000019876,0.0000019840,0.0000019806, -0.0000019776,0.0000019747,0.0000019715,0.0000019676,0.0000019630, -0.0000019584,0.0000019544,0.0000019516,0.0000019497,0.0000019490, -0.0000019486,0.0000019484,0.0000019478,0.0000019474,0.0000019467, -0.0000019460,0.0000019457,0.0000019459,0.0000019462,0.0000019462, -0.0000019460,0.0000019464,0.0000019466,0.0000019465,0.0000019464, -0.0000019469,0.0000019483,0.0000019503,0.0000019529,0.0000019560, -0.0000019594,0.0000019622,0.0000019645,0.0000019659,0.0000019665, -0.0000019673,0.0000019672,0.0000019670,0.0000019668,0.0000019666, -0.0000019670,0.0000019682,0.0000019704,0.0000019740,0.0000019796, -0.0000019870,0.0000019936,0.0000019988,0.0000019993,0.0000019987, -0.0000019966,0.0000019939,0.0000019913,0.0000019891,0.0000019876, -0.0000019881,0.0000019902,0.0000019952,0.0000020022,0.0000020102, -0.0000020180,0.0000020253,0.0000020324,0.0000020387,0.0000020440, -0.0000020483,0.0000020521,0.0000020554,0.0000020577,0.0000020589, -0.0000020595,0.0000020598,0.0000020599,0.0000020600,0.0000020608, -0.0000020617,0.0000020627,0.0000020634,0.0000020637,0.0000020640, -0.0000020647,0.0000020657,0.0000020670,0.0000020690,0.0000020717, -0.0000020748,0.0000020777,0.0000020808,0.0000020844,0.0000020883, -0.0000020926,0.0000020976,0.0000021030,0.0000021079,0.0000021118, -0.0000021146,0.0000021168,0.0000021183,0.0000021192,0.0000021194, -0.0000021186,0.0000021159,0.0000021122,0.0000021085,0.0000021057, -0.0000021035,0.0000021011,0.0000020988,0.0000020963,0.0000020936, -0.0000020913,0.0000020887,0.0000020848,0.0000020798,0.0000020743, -0.0000020691,0.0000020649,0.0000020617,0.0000020589,0.0000020560, -0.0000020532,0.0000020506,0.0000020480,0.0000020454,0.0000020427, -0.0000020400,0.0000020373,0.0000020350,0.0000020330,0.0000020309, -0.0000020284,0.0000020257,0.0000020228,0.0000020203,0.0000020181, -0.0000020164,0.0000020149,0.0000020139,0.0000020129,0.0000020121, -0.0000020115,0.0000020103,0.0000020085,0.0000020059,0.0000020032, -0.0000019998,0.0000019969,0.0000019944,0.0000019923,0.0000019909, -0.0000019900,0.0000019892,0.0000019889,0.0000019886,0.0000019881, -0.0000019872,0.0000019853,0.0000019821,0.0000019780,0.0000019737, -0.0000019699,0.0000019670,0.0000019650,0.0000019634,0.0000019621, -0.0000019610,0.0000019600,0.0000019586,0.0000019571,0.0000019553, -0.0000019532,0.0000019508,0.0000019484,0.0000019459,0.0000019431, -0.0000019406,0.0000019387,0.0000019366,0.0000019343,0.0000019319, -0.0000019298,0.0000019281,0.0000019272,0.0000019275,0.0000019290, -0.0000019318,0.0000019354,0.0000019396,0.0000019444,0.0000019498, -0.0000019555,0.0000019610,0.0000019659,0.0000019700,0.0000019734, -0.0000019759,0.0000019775,0.0000019785,0.0000019790,0.0000019793, -0.0000019794,0.0000019795,0.0000019800,0.0000019810,0.0000019824, -0.0000019846,0.0000019875,0.0000019907,0.0000019939,0.0000019967, -0.0000019985,0.0000019993,0.0000019996,0.0000020000,0.0000020010, -0.0000020028,0.0000020053,0.0000020081,0.0000020108,0.0000020131, -0.0000020145,0.0000020142,0.0000020131,0.0000020110,0.0000020087, -0.0000020064,0.0000020046,0.0000020032,0.0000020021,0.0000020011, -0.0000020001,0.0000019996,0.0000020003,0.0000020017,0.0000020043, -0.0000020073,0.0000020099,0.0000020116,0.0000020124,0.0000020131, -0.0000020145,0.0000020154,0.0000020154,0.0000020153,0.0000020147, -0.0000020134,0.0000020119,0.0000020103,0.0000020093,0.0000020086, -0.0000020083,0.0000020081,0.0000020072,0.0000020057,0.0000020036, -0.0000020013,0.0000019984,0.0000019953,0.0000019908,0.0000019846, -0.0000019779,0.0000019714,0.0000019652,0.0000019601,0.0000019569, -0.0000019561,0.0000019577,0.0000019608,0.0000019644,0.0000019687, -0.0000019725,0.0000019735,0.0000019707,0.0000019644,0.0000019576, -0.0000019541,0.0000019544,0.0000019577,0.0000019618,0.0000019641, -0.0000019639,0.0000019601,0.0000019517,0.0000019407,0.0000019312, -0.0000019261,0.0000019246,0.0000019240,0.0000019231,0.0000019214, -0.0000019197,0.0000019190,0.0000019198,0.0000019210,0.0000019214, -0.0000019207,0.0000019200,0.0000019198,0.0000019227,0.0000019283, -0.0000019339,0.0000019369,0.0000019371,0.0000019360,0.0000019348, -0.0000019328,0.0000019279,0.0000019183,0.0000019080,0.0000019024, -0.0000019000,0.0000018989,0.0000018976,0.0000018978,0.0000018995, -0.0000018997,0.0000018975,0.0000018944,0.0000018918,0.0000018886, -0.0000018838,0.0000018785,0.0000018747,0.0000018732,0.0000018734, -0.0000018741,0.0000018747,0.0000018749,0.0000018749,0.0000018752, -0.0000018764,0.0000018791,0.0000018837,0.0000018903,0.0000018983, -0.0000019071,0.0000019163,0.0000019254,0.0000019339,0.0000019412, -0.0000019471,0.0000019520,0.0000019563,0.0000019605,0.0000019643, -0.0000019680,0.0000019709,0.0000019726,0.0000019729,0.0000019715, -0.0000019687,0.0000019650,0.0000019610,0.0000019577,0.0000019555, -0.0000019536,0.0000019519,0.0000019500,0.0000019469,0.0000019416, -0.0000019347,0.0000019282,0.0000019228,0.0000019176,0.0000019113, -0.0000019038,0.0000018971,0.0000018921,0.0000018888,0.0000018874, -0.0000018876,0.0000018885,0.0000018895,0.0000018898,0.0000018894, -0.0000018883,0.0000018861,0.0000018830,0.0000018797,0.0000018764, -0.0000018730,0.0000018692,0.0000018650,0.0000018605,0.0000018554, -0.0000018500,0.0000018454,0.0000018428,0.0000018412,0.0000018402, -0.0000018394,0.0000018385,0.0000018376,0.0000018369,0.0000018365, -0.0000018363,0.0000018361,0.0000018359,0.0000018357,0.0000018344, -0.0000018323,0.0000018311,0.0000018298,0.0000018277,0.0000018251, -0.0000018220,0.0000018186,0.0000018166,0.0000018164,0.0000018182, -0.0000018220,0.0000018266,0.0000018308,0.0000018330,0.0000018329, -0.0000018323,0.0000018322,0.0000018323,0.0000018320,0.0000018306, -0.0000018291,0.0000018287,0.0000018288,0.0000018284,0.0000018274, -0.0000018259,0.0000018235,0.0000018200,0.0000018142,0.0000018059, -0.0000017961,0.0000017856,0.0000017744,0.0000017628,0.0000017522, -0.0000017443,0.0000017393,0.0000017366,0.0000017360,0.0000017372, -0.0000017398,0.0000017429,0.0000017459,0.0000017484,0.0000017504, -0.0000017523,0.0000017544,0.0000017566,0.0000017586,0.0000017598, -0.0000017605,0.0000017610,0.0000017614,0.0000017618,0.0000017626, -0.0000017635,0.0000017645,0.0000017656,0.0000017665,0.0000017676, -0.0000017680,0.0000017679,0.0000017674,0.0000017668,0.0000017668, -0.0000017669,0.0000017668,0.0000017667,0.0000017669,0.0000017674, -0.0000017685,0.0000017697,0.0000017711,0.0000017724,0.0000017734, -0.0000017743,0.0000017753,0.0000017763,0.0000017771,0.0000017776, -0.0000017777,0.0000017773,0.0000017767,0.0000017759,0.0000017752, -0.0000017749,0.0000017749,0.0000017746,0.0000017751,0.0000017750, -0.0000017764,0.0000017784,0.0000017814,0.0000017841,0.0000017863, -0.0000017884,0.0000017906,0.0000017918,0.0000017922,0.0000017918, -0.0000017921,0.0000017904,0.0000017884,0.0000017864,0.0000017845, -0.0000017827,0.0000017812,0.0000017799,0.0000017790,0.0000017784, -0.0000017777,0.0000017768,0.0000017756,0.0000017749,0.0000017743, -0.0000017743,0.0000017755,0.0000017789,0.0000017846,0.0000017916, -0.0000017995,0.0000018080,0.0000018173,0.0000018277,0.0000018385, -0.0000018491,0.0000018590,0.0000018676,0.0000018742,0.0000018792, -0.0000018834,0.0000018870,0.0000018903,0.0000018933,0.0000018959, -0.0000018977,0.0000018986,0.0000018985,0.0000018975,0.0000018965, -0.0000018957,0.0000018962,0.0000018986,0.0000019021,0.0000019063, -0.0000019105,0.0000019142,0.0000019165,0.0000019174,0.0000019172, -0.0000019165,0.0000019158,0.0000019150,0.0000019140,0.0000019122, -0.0000019097,0.0000019068,0.0000019052,0.0000019052,0.0000019060, -0.0000019071,0.0000019089,0.0000019113,0.0000019144,0.0000019181, -0.0000019219,0.0000019260,0.0000019296,0.0000019322,0.0000019343, -0.0000019356,0.0000019361,0.0000019365,0.0000019373,0.0000019383, -0.0000019399,0.0000019420,0.0000019440,0.0000019459,0.0000019474, -0.0000019491,0.0000019509,0.0000019525,0.0000019538,0.0000019551, -0.0000019560,0.0000019565,0.0000019570,0.0000019572,0.0000019571, -0.0000019568,0.0000019561,0.0000019552,0.0000019537,0.0000019518, -0.0000019497,0.0000019475,0.0000019455,0.0000019439,0.0000019424, -0.0000019412,0.0000019404,0.0000019398,0.0000019396,0.0000019401, -0.0000019413,0.0000019427,0.0000019441,0.0000019456,0.0000019474, -0.0000019492,0.0000019509,0.0000019526,0.0000019540,0.0000019550, -0.0000019555,0.0000019554,0.0000019551,0.0000019543,0.0000019530, -0.0000019512,0.0000019490,0.0000019465,0.0000019436,0.0000019408, -0.0000019378,0.0000019347,0.0000019313,0.0000019284,0.0000019264, -0.0000019253,0.0000019253,0.0000019261,0.0000019275,0.0000019294, -0.0000019317,0.0000019344,0.0000019372,0.0000019399,0.0000019426, -0.0000019451,0.0000019473,0.0000019489,0.0000019502,0.0000019511, -0.0000019520,0.0000019531,0.0000019544,0.0000019555,0.0000019561, -0.0000019564,0.0000019561,0.0000019549,0.0000019529,0.0000019496, -0.0000019457,0.0000019414,0.0000019368,0.0000019316,0.0000019260, -0.0000019203,0.0000019148,0.0000019101,0.0000019060,0.0000019024, -0.0000018992,0.0000018967,0.0000018946,0.0000018926,0.0000018912, -0.0000018905,0.0000018906,0.0000018913,0.0000018924,0.0000018938, -0.0000018952,0.0000018966,0.0000018986,0.0000019012,0.0000019037, -0.0000019058,0.0000018950,0.0000018973,0.0000018996,0.0000019022, -0.0000019057,0.0000019101,0.0000019152,0.0000019192,0.0000019208, -0.0000019191,0.0000019139,0.0000019058,0.0000018984,0.0000018938, -0.0000018912,0.0000018891,0.0000018868,0.0000018850,0.0000018844, -0.0000018857,0.0000018891,0.0000018927,0.0000018956,0.0000018980, -0.0000019013,0.0000019062,0.0000019122,0.0000019178,0.0000019218, -0.0000019232,0.0000019227,0.0000019218,0.0000019223,0.0000019238, -0.0000019259,0.0000019292,0.0000019330,0.0000019366,0.0000019395, -0.0000019420,0.0000019443,0.0000019463,0.0000019479,0.0000019493, -0.0000019506,0.0000019516,0.0000019524,0.0000019530,0.0000019532, -0.0000019531,0.0000019528,0.0000019520,0.0000019509,0.0000019495, -0.0000019479,0.0000019461,0.0000019438,0.0000019412,0.0000019385, -0.0000019352,0.0000019317,0.0000019284,0.0000019256,0.0000019234, -0.0000019214,0.0000019197,0.0000019181,0.0000019164,0.0000019147, -0.0000019131,0.0000019115,0.0000019096,0.0000019075,0.0000019052, -0.0000019028,0.0000019006,0.0000018989,0.0000018976,0.0000018961, -0.0000018945,0.0000018927,0.0000018909,0.0000018896,0.0000018885, -0.0000018873,0.0000018861,0.0000018850,0.0000018841,0.0000018832, -0.0000018824,0.0000018817,0.0000018808,0.0000018800,0.0000018794, -0.0000018787,0.0000018774,0.0000018757,0.0000018740,0.0000018724, -0.0000018711,0.0000018700,0.0000018695,0.0000018695,0.0000018702, -0.0000018714,0.0000018733,0.0000018761,0.0000018795,0.0000018835, -0.0000018889,0.0000018957,0.0000019033,0.0000019105,0.0000019158, -0.0000019187,0.0000019202,0.0000019211,0.0000019215,0.0000019211, -0.0000019201,0.0000019166,0.0000019092,0.0000018986,0.0000018882, -0.0000018825,0.0000018795,0.0000018780,0.0000018769,0.0000018762, -0.0000018762,0.0000018771,0.0000018783,0.0000018794,0.0000018804, -0.0000018815,0.0000018821,0.0000018827,0.0000018830,0.0000018835, -0.0000018852,0.0000018877,0.0000018909,0.0000018950,0.0000019002, -0.0000019054,0.0000019092,0.0000019123,0.0000019152,0.0000019178, -0.0000019206,0.0000019234,0.0000019260,0.0000019287,0.0000019314, -0.0000019346,0.0000019377,0.0000019402,0.0000019419,0.0000019426, -0.0000019424,0.0000019420,0.0000019415,0.0000019406,0.0000019394, -0.0000019386,0.0000019378,0.0000019372,0.0000019368,0.0000019368, -0.0000019371,0.0000019377,0.0000019388,0.0000019408,0.0000019436, -0.0000019470,0.0000019507,0.0000019545,0.0000019586,0.0000019628, -0.0000019670,0.0000019716,0.0000019764,0.0000019810,0.0000019852, -0.0000019892,0.0000019936,0.0000019979,0.0000020017,0.0000020051, -0.0000020082,0.0000020109,0.0000020131,0.0000020149,0.0000020165, -0.0000020181,0.0000020193,0.0000020198,0.0000020198,0.0000020198, -0.0000020197,0.0000020198,0.0000020198,0.0000020197,0.0000020195, -0.0000020193,0.0000020193,0.0000020196,0.0000020204,0.0000020220, -0.0000020242,0.0000020268,0.0000020293,0.0000020315,0.0000020332, -0.0000020344,0.0000020354,0.0000020363,0.0000020370,0.0000020379, -0.0000020390,0.0000020405,0.0000020423,0.0000020443,0.0000020462, -0.0000020477,0.0000020491,0.0000020498,0.0000020495,0.0000020487, -0.0000020488,0.0000020516,0.0000020578,0.0000020657,0.0000020714, -0.0000020734,0.0000020754,0.0000020802,0.0000020838,0.0000020842, -0.0000020833,0.0000020809,0.0000020755,0.0000020682,0.0000020615, -0.0000020566,0.0000020536,0.0000020523,0.0000020515,0.0000020508, -0.0000020505,0.0000020508,0.0000020516,0.0000020531,0.0000020550, -0.0000020567,0.0000020577,0.0000020583,0.0000020585,0.0000020584, -0.0000020574,0.0000020555,0.0000020533,0.0000020509,0.0000020485, -0.0000020460,0.0000020436,0.0000020420,0.0000020412,0.0000020418, -0.0000020434,0.0000020456,0.0000020482,0.0000020512,0.0000020541, -0.0000020567,0.0000020595,0.0000020626,0.0000020658,0.0000020686, -0.0000020707,0.0000020717,0.0000020721,0.0000020726,0.0000020730, -0.0000020733,0.0000020735,0.0000020735,0.0000020729,0.0000020720, -0.0000020711,0.0000020701,0.0000020683,0.0000020655,0.0000020622, -0.0000020592,0.0000020564,0.0000020526,0.0000020480,0.0000020449, -0.0000020443,0.0000020465,0.0000020509,0.0000020558,0.0000020597, -0.0000020628,0.0000020655,0.0000020678,0.0000020693,0.0000020697, -0.0000020694,0.0000020686,0.0000020675,0.0000020662,0.0000020645, -0.0000020620,0.0000020594,0.0000020586,0.0000020599,0.0000020612, -0.0000020581,0.0000020464,0.0000020319,0.0000020234,0.0000020222, -0.0000020228,0.0000020226,0.0000020222,0.0000020224,0.0000020222, -0.0000020198,0.0000020146,0.0000020084,0.0000020038,0.0000020029, -0.0000020083,0.0000020207,0.0000020308,0.0000020351,0.0000020354, -0.0000020304,0.0000020170,0.0000020010,0.0000019977,0.0000020103, -0.0000020350,0.0000020521,0.0000020564,0.0000020582,0.0000020630, -0.0000020682,0.0000020728,0.0000020823,0.0000020982,0.0000021118, -0.0000021168,0.0000021181,0.0000021228,0.0000021341,0.0000021466, -0.0000021545,0.0000021593,0.0000021643,0.0000021687,0.0000021715, -0.0000021730,0.0000021721,0.0000021686,0.0000021634,0.0000021581, -0.0000021542,0.0000021521,0.0000021510,0.0000021497,0.0000021484, -0.0000021469,0.0000021448,0.0000021431,0.0000021421,0.0000021412, -0.0000021405,0.0000021405,0.0000021415,0.0000021435,0.0000021459, -0.0000021483,0.0000021506,0.0000021524,0.0000021537,0.0000021543, -0.0000021542,0.0000021533,0.0000021518,0.0000021498,0.0000021478, -0.0000021465,0.0000021453,0.0000021438,0.0000021422,0.0000021404, -0.0000021383,0.0000021366,0.0000021353,0.0000021346,0.0000021344, -0.0000021348,0.0000021353,0.0000021362,0.0000021373,0.0000021378, -0.0000021376,0.0000021370,0.0000021362,0.0000021351,0.0000021338, -0.0000021325,0.0000021311,0.0000021296,0.0000021281,0.0000021266, -0.0000021253,0.0000021245,0.0000021231,0.0000021214,0.0000021195, -0.0000021175,0.0000021154,0.0000021129,0.0000021103,0.0000021072, -0.0000021041,0.0000021014,0.0000020991,0.0000020966,0.0000020950, -0.0000020944,0.0000020947,0.0000020954,0.0000020965,0.0000020979, -0.0000021003,0.0000021032,0.0000021062,0.0000021091,0.0000021122, -0.0000021148,0.0000021170,0.0000021183,0.0000021190,0.0000021191, -0.0000021183,0.0000021169,0.0000021152,0.0000021132,0.0000021111, -0.0000021094,0.0000021086,0.0000021085,0.0000021080,0.0000021076, -0.0000021072,0.0000021071,0.0000021069,0.0000021066,0.0000021062, -0.0000021055,0.0000021042,0.0000021025,0.0000021005,0.0000020987, -0.0000020969,0.0000020951,0.0000020931,0.0000020914,0.0000020905, -0.0000020904,0.0000020906,0.0000020910,0.0000020914,0.0000020917, -0.0000020920,0.0000020924,0.0000020924,0.0000020922,0.0000020918, -0.0000020913,0.0000020911,0.0000020911,0.0000020918,0.0000020927, -0.0000020941,0.0000020953,0.0000020962,0.0000020964,0.0000020961, -0.0000020950,0.0000020931,0.0000020909,0.0000020883,0.0000020863, -0.0000020851,0.0000020844,0.0000020840,0.0000020839,0.0000020842, -0.0000020846,0.0000020852,0.0000020859,0.0000020870,0.0000020881, -0.0000020885,0.0000020886,0.0000020886,0.0000020881,0.0000020871, -0.0000020856,0.0000020834,0.0000020818,0.0000020801,0.0000020782, -0.0000020770,0.0000020772,0.0000020781,0.0000020791,0.0000020796, -0.0000020797,0.0000020794,0.0000020789,0.0000020789,0.0000020799, -0.0000020811,0.0000020828,0.0000020854,0.0000020883,0.0000020911, -0.0000020937,0.0000020964,0.0000020989,0.0000021014,0.0000021037, -0.0000021058,0.0000021076,0.0000021095,0.0000021113,0.0000021128, -0.0000021137,0.0000021138,0.0000021132,0.0000021122,0.0000021109, -0.0000021094,0.0000021081,0.0000021074,0.0000021073,0.0000021076, -0.0000021081,0.0000021087,0.0000021094,0.0000021099,0.0000021097, -0.0000021092,0.0000021078,0.0000021058,0.0000021037,0.0000021012, -0.0000020982,0.0000020948,0.0000020913,0.0000020880,0.0000020849, -0.0000020817,0.0000020788,0.0000020765,0.0000020750,0.0000020741, -0.0000020735,0.0000020732,0.0000020728,0.0000020720,0.0000020717, -0.0000020718,0.0000020724,0.0000020731,0.0000020735,0.0000020735, -0.0000020730,0.0000020716,0.0000020693,0.0000020663,0.0000020631, -0.0000020600,0.0000020569,0.0000020544,0.0000020531,0.0000020529, -0.0000020539,0.0000020565,0.0000020597,0.0000020632,0.0000020665, -0.0000020697,0.0000020725,0.0000020752,0.0000020783,0.0000020823, -0.0000020871,0.0000020929,0.0000020987,0.0000021043,0.0000021091, -0.0000021127,0.0000021153,0.0000021175,0.0000021199,0.0000021225, -0.0000021251,0.0000021278,0.0000021310,0.0000021344,0.0000021375, -0.0000021404,0.0000021431,0.0000021462,0.0000021500,0.0000021541, -0.0000021578,0.0000021607,0.0000021627,0.0000021637,0.0000021624, -0.0000021609,0.0000021583,0.0000021546,0.0000021503,0.0000021458, -0.0000021415,0.0000021380,0.0000021356,0.0000021341,0.0000021328, -0.0000021315,0.0000021294,0.0000021268,0.0000021236,0.0000021202, -0.0000021169,0.0000021138,0.0000021113,0.0000021096,0.0000021083, -0.0000021073,0.0000021066,0.0000021061,0.0000021058,0.0000021057, -0.0000021057,0.0000021059,0.0000021060,0.0000021059,0.0000021057, -0.0000021053,0.0000021051,0.0000021049,0.0000021045,0.0000021042, -0.0000021040,0.0000021042,0.0000021048,0.0000021058,0.0000021071, -0.0000021088,0.0000021109,0.0000021131,0.0000021154,0.0000021174, -0.0000021188,0.0000021191,0.0000021185,0.0000021165,0.0000021130, -0.0000021079,0.0000021019,0.0000020955,0.0000020897,0.0000020848, -0.0000020810,0.0000020788,0.0000020780,0.0000020775,0.0000020765, -0.0000020746,0.0000020718,0.0000020681,0.0000020638,0.0000020591, -0.0000020535,0.0000020471,0.0000020404,0.0000020337,0.0000020279, -0.0000020235,0.0000020199,0.0000020169,0.0000020140,0.0000020111, -0.0000020083,0.0000020054,0.0000020028,0.0000020005,0.0000019985, -0.0000019973,0.0000019970,0.0000019969,0.0000019970,0.0000019973, -0.0000019981,0.0000019991,0.0000020001,0.0000020014,0.0000020033, -0.0000020058,0.0000020082,0.0000020103,0.0000020117,0.0000020129, -0.0000020143,0.0000020158,0.0000020168,0.0000020175,0.0000020179, -0.0000020182,0.0000020185,0.0000020186,0.0000020183,0.0000020177, -0.0000020170,0.0000020163,0.0000020157,0.0000020153,0.0000020153, -0.0000020160,0.0000020170,0.0000020184,0.0000020202,0.0000020223, -0.0000020245,0.0000020267,0.0000020288,0.0000020313,0.0000020346, -0.0000020389,0.0000020431,0.0000020465,0.0000020489,0.0000020503, -0.0000020511,0.0000020510,0.0000020502,0.0000020490,0.0000020477, -0.0000020464,0.0000020454,0.0000020445,0.0000020434,0.0000020419, -0.0000020404,0.0000020398,0.0000020401,0.0000020415,0.0000020431, -0.0000020445,0.0000020453,0.0000020455,0.0000020455,0.0000020446, -0.0000020429,0.0000020411,0.0000020391,0.0000020369,0.0000020347, -0.0000020330,0.0000020315,0.0000020298,0.0000020275,0.0000020246, -0.0000020214,0.0000020181,0.0000020145,0.0000020107,0.0000020069, -0.0000020030,0.0000019985,0.0000019932,0.0000019876,0.0000019825, -0.0000019782,0.0000019749,0.0000019720,0.0000019694,0.0000019668, -0.0000019639,0.0000019607,0.0000019571,0.0000019534,0.0000019508, -0.0000019484,0.0000019470,0.0000019458,0.0000019457,0.0000019457, -0.0000019464,0.0000019473,0.0000019485,0.0000019491,0.0000019489, -0.0000019487,0.0000019483,0.0000019473,0.0000019460,0.0000019457, -0.0000019457,0.0000019460,0.0000019469,0.0000019488,0.0000019512, -0.0000019539,0.0000019565,0.0000019592,0.0000019622,0.0000019645, -0.0000019661,0.0000019673,0.0000019670,0.0000019670,0.0000019664, -0.0000019659,0.0000019661,0.0000019674,0.0000019700,0.0000019742, -0.0000019801,0.0000019871,0.0000019929,0.0000019980,0.0000019996, -0.0000019988,0.0000019966,0.0000019939,0.0000019914,0.0000019897, -0.0000019902,0.0000019917,0.0000019961,0.0000020032,0.0000020115, -0.0000020197,0.0000020274,0.0000020341,0.0000020399,0.0000020450, -0.0000020493,0.0000020530,0.0000020555,0.0000020567,0.0000020569, -0.0000020569,0.0000020572,0.0000020582,0.0000020599,0.0000020620, -0.0000020639,0.0000020661,0.0000020681,0.0000020699,0.0000020717, -0.0000020736,0.0000020759,0.0000020786,0.0000020817,0.0000020850, -0.0000020883,0.0000020918,0.0000020953,0.0000020987,0.0000021023, -0.0000021061,0.0000021097,0.0000021124,0.0000021144,0.0000021161, -0.0000021176,0.0000021185,0.0000021181,0.0000021161,0.0000021128, -0.0000021090,0.0000021050,0.0000021016,0.0000020989,0.0000020962, -0.0000020936,0.0000020910,0.0000020881,0.0000020856,0.0000020837, -0.0000020809,0.0000020765,0.0000020708,0.0000020647,0.0000020589, -0.0000020541,0.0000020505,0.0000020476,0.0000020447,0.0000020418, -0.0000020389,0.0000020359,0.0000020327,0.0000020296,0.0000020267, -0.0000020245,0.0000020232,0.0000020225,0.0000020218,0.0000020212, -0.0000020205,0.0000020200,0.0000020196,0.0000020195,0.0000020194, -0.0000020189,0.0000020176,0.0000020157,0.0000020132,0.0000020105, -0.0000020068,0.0000020033,0.0000019999,0.0000019968,0.0000019946, -0.0000019933,0.0000019927,0.0000019924,0.0000019928,0.0000019931, -0.0000019932,0.0000019927,0.0000019907,0.0000019867,0.0000019812, -0.0000019753,0.0000019699,0.0000019663,0.0000019646,0.0000019642, -0.0000019644,0.0000019643,0.0000019642,0.0000019638,0.0000019629, -0.0000019614,0.0000019594,0.0000019571,0.0000019544,0.0000019512, -0.0000019476,0.0000019442,0.0000019411,0.0000019379,0.0000019352, -0.0000019328,0.0000019305,0.0000019279,0.0000019253,0.0000019229, -0.0000019207,0.0000019192,0.0000019189,0.0000019195,0.0000019208, -0.0000019225,0.0000019245,0.0000019270,0.0000019303,0.0000019345, -0.0000019394,0.0000019445,0.0000019498,0.0000019549,0.0000019596, -0.0000019635,0.0000019668,0.0000019694,0.0000019715,0.0000019732, -0.0000019746,0.0000019760,0.0000019772,0.0000019781,0.0000019789, -0.0000019796,0.0000019810,0.0000019833,0.0000019866,0.0000019900, -0.0000019929,0.0000019953,0.0000019970,0.0000019983,0.0000019995, -0.0000020011,0.0000020035,0.0000020063,0.0000020092,0.0000020116, -0.0000020127,0.0000020124,0.0000020113,0.0000020097,0.0000020078, -0.0000020061,0.0000020048,0.0000020037,0.0000020024,0.0000020007, -0.0000019989,0.0000019978,0.0000019974,0.0000019983,0.0000020006, -0.0000020035,0.0000020058,0.0000020075,0.0000020096,0.0000020117, -0.0000020130,0.0000020135,0.0000020134,0.0000020127,0.0000020114, -0.0000020098,0.0000020081,0.0000020066,0.0000020057,0.0000020055, -0.0000020058,0.0000020055,0.0000020042,0.0000020023,0.0000019999, -0.0000019976,0.0000019947,0.0000019903,0.0000019842,0.0000019774, -0.0000019706,0.0000019639,0.0000019583,0.0000019547,0.0000019529, -0.0000019538,0.0000019562,0.0000019596,0.0000019638,0.0000019680, -0.0000019698,0.0000019676,0.0000019625,0.0000019566,0.0000019537, -0.0000019540,0.0000019575,0.0000019616,0.0000019638,0.0000019636, -0.0000019596,0.0000019515,0.0000019409,0.0000019317,0.0000019266, -0.0000019250,0.0000019243,0.0000019230,0.0000019208,0.0000019188, -0.0000019178,0.0000019178,0.0000019189,0.0000019200,0.0000019200, -0.0000019193,0.0000019187,0.0000019202,0.0000019246,0.0000019303, -0.0000019339,0.0000019345,0.0000019333,0.0000019321,0.0000019298, -0.0000019241,0.0000019142,0.0000019043,0.0000018991,0.0000018964, -0.0000018939,0.0000018920,0.0000018924,0.0000018935,0.0000018928, -0.0000018905,0.0000018882,0.0000018856,0.0000018822,0.0000018780, -0.0000018741,0.0000018718,0.0000018709,0.0000018708,0.0000018710, -0.0000018711,0.0000018711,0.0000018709,0.0000018704,0.0000018704, -0.0000018717,0.0000018751,0.0000018804,0.0000018874,0.0000018957, -0.0000019050,0.0000019147,0.0000019241,0.0000019326,0.0000019397, -0.0000019456,0.0000019504,0.0000019545,0.0000019583,0.0000019617, -0.0000019643,0.0000019657,0.0000019658,0.0000019645,0.0000019618, -0.0000019586,0.0000019560,0.0000019544,0.0000019530,0.0000019514, -0.0000019495,0.0000019460,0.0000019398,0.0000019321,0.0000019251, -0.0000019196,0.0000019139,0.0000019065,0.0000018986,0.0000018920, -0.0000018872,0.0000018838,0.0000018815,0.0000018804,0.0000018805, -0.0000018811,0.0000018817,0.0000018819,0.0000018813,0.0000018797, -0.0000018769,0.0000018736,0.0000018706,0.0000018676,0.0000018640, -0.0000018600,0.0000018559,0.0000018513,0.0000018462,0.0000018420, -0.0000018395,0.0000018383,0.0000018381,0.0000018371,0.0000018358, -0.0000018349,0.0000018349,0.0000018355,0.0000018358,0.0000018356, -0.0000018351,0.0000018350,0.0000018346,0.0000018333,0.0000018321, -0.0000018314,0.0000018301,0.0000018280,0.0000018251,0.0000018218, -0.0000018186,0.0000018169,0.0000018170,0.0000018190,0.0000018228, -0.0000018272,0.0000018301,0.0000018311,0.0000018314,0.0000018320, -0.0000018323,0.0000018318,0.0000018308,0.0000018300,0.0000018297, -0.0000018298,0.0000018295,0.0000018286,0.0000018266,0.0000018229, -0.0000018167,0.0000018080,0.0000017979,0.0000017874,0.0000017765, -0.0000017650,0.0000017545,0.0000017470,0.0000017426,0.0000017403, -0.0000017401,0.0000017423,0.0000017463,0.0000017500,0.0000017523, -0.0000017536,0.0000017547,0.0000017560,0.0000017574,0.0000017589, -0.0000017603,0.0000017610,0.0000017610,0.0000017606,0.0000017603, -0.0000017602,0.0000017606,0.0000017614,0.0000017622,0.0000017628, -0.0000017631,0.0000017631,0.0000017632,0.0000017636,0.0000017639, -0.0000017645,0.0000017659,0.0000017683,0.0000017714,0.0000017749, -0.0000017787,0.0000017824,0.0000017860,0.0000017893,0.0000017923, -0.0000017949,0.0000017971,0.0000017986,0.0000017997,0.0000018005, -0.0000018013,0.0000018018,0.0000018019,0.0000018014,0.0000018005, -0.0000017991,0.0000017971,0.0000017946,0.0000017915,0.0000017883, -0.0000017850,0.0000017817,0.0000017784,0.0000017754,0.0000017735, -0.0000017736,0.0000017743,0.0000017745,0.0000017754,0.0000017788, -0.0000017825,0.0000017860,0.0000017899,0.0000017931,0.0000017942, -0.0000017942,0.0000017940,0.0000017923,0.0000017900,0.0000017873, -0.0000017843,0.0000017816,0.0000017794,0.0000017775,0.0000017763, -0.0000017750,0.0000017743,0.0000017737,0.0000017728,0.0000017718, -0.0000017716,0.0000017728,0.0000017752,0.0000017791,0.0000017843, -0.0000017910,0.0000017998,0.0000018105,0.0000018223,0.0000018346, -0.0000018466,0.0000018568,0.0000018652,0.0000018722,0.0000018782, -0.0000018834,0.0000018880,0.0000018920,0.0000018951,0.0000018973, -0.0000018983,0.0000018980,0.0000018972,0.0000018954,0.0000018937, -0.0000018930,0.0000018944,0.0000018977,0.0000019023,0.0000019075, -0.0000019120,0.0000019151,0.0000019163,0.0000019158,0.0000019149, -0.0000019140,0.0000019134,0.0000019129,0.0000019118,0.0000019102, -0.0000019083,0.0000019071,0.0000019065,0.0000019071,0.0000019080, -0.0000019096,0.0000019114,0.0000019136,0.0000019160,0.0000019186, -0.0000019215,0.0000019252,0.0000019287,0.0000019315,0.0000019336, -0.0000019352,0.0000019359,0.0000019364,0.0000019378,0.0000019397, -0.0000019420,0.0000019441,0.0000019457,0.0000019472,0.0000019484, -0.0000019495,0.0000019507,0.0000019517,0.0000019522,0.0000019523, -0.0000019523,0.0000019523,0.0000019519,0.0000019515,0.0000019511, -0.0000019503,0.0000019489,0.0000019467,0.0000019442,0.0000019416, -0.0000019392,0.0000019370,0.0000019349,0.0000019329,0.0000019311, -0.0000019292,0.0000019278,0.0000019269,0.0000019267,0.0000019268, -0.0000019270,0.0000019275,0.0000019281,0.0000019289,0.0000019298, -0.0000019308,0.0000019317,0.0000019320,0.0000019320,0.0000019319, -0.0000019314,0.0000019305,0.0000019292,0.0000019276,0.0000019258, -0.0000019238,0.0000019216,0.0000019195,0.0000019173,0.0000019151, -0.0000019127,0.0000019108,0.0000019094,0.0000019088,0.0000019090, -0.0000019097,0.0000019109,0.0000019124,0.0000019143,0.0000019163, -0.0000019184,0.0000019205,0.0000019224,0.0000019242,0.0000019260, -0.0000019275,0.0000019286,0.0000019294,0.0000019305,0.0000019318, -0.0000019332,0.0000019346,0.0000019358,0.0000019365,0.0000019366, -0.0000019361,0.0000019347,0.0000019324,0.0000019295,0.0000019264, -0.0000019230,0.0000019192,0.0000019147,0.0000019097,0.0000019047, -0.0000019000,0.0000018960,0.0000018927,0.0000018900,0.0000018879, -0.0000018864,0.0000018853,0.0000018845,0.0000018841,0.0000018840, -0.0000018840,0.0000018843,0.0000018853,0.0000018866,0.0000018878, -0.0000018889,0.0000018905,0.0000018926,0.0000018831,0.0000018851, -0.0000018876,0.0000018904,0.0000018938,0.0000018976,0.0000019021, -0.0000019073,0.0000019128,0.0000019165,0.0000019176,0.0000019144, -0.0000019086,0.0000019008,0.0000018945,0.0000018910,0.0000018895, -0.0000018881,0.0000018864,0.0000018851,0.0000018855,0.0000018876, -0.0000018910,0.0000018938,0.0000018958,0.0000018979,0.0000019014, -0.0000019067,0.0000019127,0.0000019177,0.0000019202,0.0000019205, -0.0000019203,0.0000019206,0.0000019214,0.0000019237,0.0000019275, -0.0000019317,0.0000019361,0.0000019402,0.0000019439,0.0000019471, -0.0000019498,0.0000019520,0.0000019536,0.0000019547,0.0000019552, -0.0000019552,0.0000019547,0.0000019540,0.0000019532,0.0000019523, -0.0000019510,0.0000019494,0.0000019476,0.0000019458,0.0000019437, -0.0000019415,0.0000019393,0.0000019369,0.0000019341,0.0000019314, -0.0000019286,0.0000019260,0.0000019235,0.0000019211,0.0000019187, -0.0000019163,0.0000019143,0.0000019126,0.0000019113,0.0000019099, -0.0000019085,0.0000019074,0.0000019059,0.0000019040,0.0000019024, -0.0000019012,0.0000018997,0.0000018976,0.0000018951,0.0000018922, -0.0000018892,0.0000018865,0.0000018837,0.0000018816,0.0000018800, -0.0000018790,0.0000018791,0.0000018798,0.0000018805,0.0000018804, -0.0000018805,0.0000018809,0.0000018811,0.0000018806,0.0000018792, -0.0000018774,0.0000018754,0.0000018735,0.0000018719,0.0000018707, -0.0000018700,0.0000018694,0.0000018690,0.0000018690,0.0000018695, -0.0000018708,0.0000018732,0.0000018771,0.0000018828,0.0000018899, -0.0000018984,0.0000019070,0.0000019140,0.0000019188,0.0000019211, -0.0000019220,0.0000019220,0.0000019206,0.0000019183,0.0000019147, -0.0000019085,0.0000018989,0.0000018884,0.0000018799,0.0000018753, -0.0000018727,0.0000018715,0.0000018717,0.0000018730,0.0000018752, -0.0000018774,0.0000018796,0.0000018817,0.0000018831,0.0000018840, -0.0000018840,0.0000018838,0.0000018839,0.0000018840,0.0000018846, -0.0000018864,0.0000018892,0.0000018924,0.0000018954,0.0000018986, -0.0000019019,0.0000019053,0.0000019085,0.0000019114,0.0000019143, -0.0000019172,0.0000019202,0.0000019235,0.0000019266,0.0000019290, -0.0000019305,0.0000019310,0.0000019308,0.0000019301,0.0000019291, -0.0000019279,0.0000019267,0.0000019255,0.0000019244,0.0000019234, -0.0000019226,0.0000019224,0.0000019226,0.0000019230,0.0000019238, -0.0000019255,0.0000019281,0.0000019311,0.0000019344,0.0000019379, -0.0000019415,0.0000019450,0.0000019486,0.0000019529,0.0000019576, -0.0000019621,0.0000019665,0.0000019709,0.0000019757,0.0000019805, -0.0000019853,0.0000019900,0.0000019943,0.0000019984,0.0000020021, -0.0000020055,0.0000020087,0.0000020117,0.0000020141,0.0000020157, -0.0000020168,0.0000020176,0.0000020180,0.0000020181,0.0000020179, -0.0000020176,0.0000020171,0.0000020167,0.0000020164,0.0000020163, -0.0000020165,0.0000020172,0.0000020188,0.0000020210,0.0000020234, -0.0000020257,0.0000020279,0.0000020298,0.0000020315,0.0000020330, -0.0000020345,0.0000020359,0.0000020372,0.0000020386,0.0000020402, -0.0000020421,0.0000020438,0.0000020451,0.0000020460,0.0000020464, -0.0000020459,0.0000020450,0.0000020450,0.0000020475,0.0000020534, -0.0000020612,0.0000020671,0.0000020693,0.0000020711,0.0000020758, -0.0000020793,0.0000020797,0.0000020786,0.0000020760,0.0000020709, -0.0000020643,0.0000020582,0.0000020538,0.0000020514,0.0000020505, -0.0000020502,0.0000020500,0.0000020502,0.0000020509,0.0000020523, -0.0000020544,0.0000020569,0.0000020591,0.0000020608,0.0000020622, -0.0000020630,0.0000020630,0.0000020620,0.0000020601,0.0000020576, -0.0000020547,0.0000020514,0.0000020478,0.0000020443,0.0000020416, -0.0000020401,0.0000020397,0.0000020400,0.0000020406,0.0000020412, -0.0000020420,0.0000020431,0.0000020447,0.0000020468,0.0000020498, -0.0000020535,0.0000020572,0.0000020606,0.0000020633,0.0000020655, -0.0000020671,0.0000020681,0.0000020690,0.0000020698,0.0000020700, -0.0000020694,0.0000020682,0.0000020668,0.0000020654,0.0000020636, -0.0000020610,0.0000020585,0.0000020567,0.0000020549,0.0000020523, -0.0000020486,0.0000020447,0.0000020423,0.0000020419,0.0000020434, -0.0000020468,0.0000020507,0.0000020543,0.0000020573,0.0000020602, -0.0000020626,0.0000020638,0.0000020641,0.0000020640,0.0000020636, -0.0000020631,0.0000020617,0.0000020596,0.0000020571,0.0000020560, -0.0000020574,0.0000020599,0.0000020582,0.0000020479,0.0000020327, -0.0000020226,0.0000020206,0.0000020220,0.0000020225,0.0000020226, -0.0000020232,0.0000020229,0.0000020199,0.0000020140,0.0000020074, -0.0000020028,0.0000020021,0.0000020096,0.0000020228,0.0000020319, -0.0000020341,0.0000020334,0.0000020278,0.0000020131,0.0000019984, -0.0000019974,0.0000020147,0.0000020399,0.0000020553,0.0000020590, -0.0000020616,0.0000020669,0.0000020717,0.0000020769,0.0000020879, -0.0000021036,0.0000021147,0.0000021179,0.0000021189,0.0000021248, -0.0000021366,0.0000021475,0.0000021533,0.0000021568,0.0000021611, -0.0000021651,0.0000021675,0.0000021684,0.0000021676,0.0000021646, -0.0000021600,0.0000021551,0.0000021514,0.0000021489,0.0000021473, -0.0000021467,0.0000021464,0.0000021456,0.0000021447,0.0000021434, -0.0000021419,0.0000021402,0.0000021386,0.0000021378,0.0000021381, -0.0000021392,0.0000021405,0.0000021419,0.0000021432,0.0000021443, -0.0000021450,0.0000021453,0.0000021454,0.0000021450,0.0000021442, -0.0000021431,0.0000021422,0.0000021416,0.0000021410,0.0000021402, -0.0000021388,0.0000021370,0.0000021353,0.0000021338,0.0000021328, -0.0000021325,0.0000021323,0.0000021315,0.0000021306,0.0000021301, -0.0000021296,0.0000021289,0.0000021282,0.0000021280,0.0000021280, -0.0000021278,0.0000021274,0.0000021270,0.0000021265,0.0000021258, -0.0000021250,0.0000021246,0.0000021243,0.0000021237,0.0000021230, -0.0000021225,0.0000021220,0.0000021214,0.0000021208,0.0000021198, -0.0000021185,0.0000021171,0.0000021161,0.0000021146,0.0000021125, -0.0000021106,0.0000021090,0.0000021077,0.0000021067,0.0000021058, -0.0000021050,0.0000021050,0.0000021059,0.0000021073,0.0000021088, -0.0000021099,0.0000021107,0.0000021114,0.0000021121,0.0000021129, -0.0000021129,0.0000021118,0.0000021106,0.0000021096,0.0000021087, -0.0000021078,0.0000021076,0.0000021077,0.0000021079,0.0000021079, -0.0000021078,0.0000021075,0.0000021070,0.0000021064,0.0000021057, -0.0000021049,0.0000021041,0.0000021033,0.0000021028,0.0000021022, -0.0000021012,0.0000021003,0.0000020995,0.0000020981,0.0000020965, -0.0000020957,0.0000020957,0.0000020962,0.0000020969,0.0000020978, -0.0000020984,0.0000020990,0.0000020994,0.0000020993,0.0000020988, -0.0000020979,0.0000020966,0.0000020950,0.0000020935,0.0000020925, -0.0000020920,0.0000020919,0.0000020919,0.0000020921,0.0000020919, -0.0000020913,0.0000020901,0.0000020882,0.0000020860,0.0000020837, -0.0000020817,0.0000020807,0.0000020801,0.0000020794,0.0000020785, -0.0000020776,0.0000020768,0.0000020763,0.0000020765,0.0000020773, -0.0000020783,0.0000020787,0.0000020788,0.0000020789,0.0000020785, -0.0000020776,0.0000020763,0.0000020751,0.0000020738,0.0000020722, -0.0000020706,0.0000020700,0.0000020705,0.0000020716,0.0000020725, -0.0000020732,0.0000020736,0.0000020735,0.0000020735,0.0000020742, -0.0000020761,0.0000020783,0.0000020808,0.0000020836,0.0000020865, -0.0000020896,0.0000020927,0.0000020954,0.0000020980,0.0000021004, -0.0000021023,0.0000021037,0.0000021049,0.0000021060,0.0000021071, -0.0000021081,0.0000021086,0.0000021085,0.0000021077,0.0000021063, -0.0000021044,0.0000021021,0.0000021001,0.0000020985,0.0000020971, -0.0000020964,0.0000020966,0.0000020974,0.0000020988,0.0000021006, -0.0000021023,0.0000021038,0.0000021043,0.0000021039,0.0000021029, -0.0000021018,0.0000020999,0.0000020973,0.0000020945,0.0000020918, -0.0000020891,0.0000020862,0.0000020831,0.0000020802,0.0000020779, -0.0000020764,0.0000020754,0.0000020744,0.0000020730,0.0000020712, -0.0000020694,0.0000020682,0.0000020671,0.0000020664,0.0000020669, -0.0000020679,0.0000020689,0.0000020691,0.0000020685,0.0000020673, -0.0000020656,0.0000020633,0.0000020605,0.0000020573,0.0000020543, -0.0000020521,0.0000020509,0.0000020509,0.0000020517,0.0000020534, -0.0000020558,0.0000020588,0.0000020620,0.0000020649,0.0000020680, -0.0000020718,0.0000020761,0.0000020807,0.0000020854,0.0000020907, -0.0000020960,0.0000021014,0.0000021069,0.0000021120,0.0000021162, -0.0000021195,0.0000021218,0.0000021238,0.0000021259,0.0000021283, -0.0000021309,0.0000021335,0.0000021359,0.0000021384,0.0000021414, -0.0000021448,0.0000021483,0.0000021515,0.0000021542,0.0000021563, -0.0000021572,0.0000021572,0.0000021562,0.0000021534,0.0000021506, -0.0000021471,0.0000021436,0.0000021406,0.0000021381,0.0000021361, -0.0000021346,0.0000021328,0.0000021305,0.0000021276,0.0000021241, -0.0000021203,0.0000021165,0.0000021130,0.0000021101,0.0000021078, -0.0000021060,0.0000021045,0.0000021034,0.0000021029,0.0000021028, -0.0000021029,0.0000021032,0.0000021033,0.0000021030,0.0000021022, -0.0000021014,0.0000021006,0.0000020999,0.0000020992,0.0000020983, -0.0000020975,0.0000020972,0.0000020974,0.0000020980,0.0000020986, -0.0000020994,0.0000021008,0.0000021026,0.0000021044,0.0000021061, -0.0000021072,0.0000021076,0.0000021074,0.0000021063,0.0000021043, -0.0000021009,0.0000020961,0.0000020905,0.0000020849,0.0000020802, -0.0000020762,0.0000020737,0.0000020725,0.0000020723,0.0000020721, -0.0000020715,0.0000020701,0.0000020679,0.0000020646,0.0000020604, -0.0000020555,0.0000020496,0.0000020431,0.0000020363,0.0000020298, -0.0000020244,0.0000020207,0.0000020175,0.0000020145,0.0000020115, -0.0000020086,0.0000020058,0.0000020032,0.0000020005,0.0000019976, -0.0000019953,0.0000019943,0.0000019946,0.0000019954,0.0000019967, -0.0000019980,0.0000019995,0.0000020009,0.0000020020,0.0000020031, -0.0000020045,0.0000020065,0.0000020088,0.0000020108,0.0000020122, -0.0000020136,0.0000020152,0.0000020165,0.0000020174,0.0000020179, -0.0000020179,0.0000020181,0.0000020182,0.0000020180,0.0000020175, -0.0000020169,0.0000020163,0.0000020159,0.0000020158,0.0000020161, -0.0000020169,0.0000020177,0.0000020182,0.0000020187,0.0000020194, -0.0000020204,0.0000020209,0.0000020219,0.0000020235,0.0000020256, -0.0000020284,0.0000020322,0.0000020356,0.0000020384,0.0000020404, -0.0000020416,0.0000020421,0.0000020418,0.0000020409,0.0000020397, -0.0000020385,0.0000020379,0.0000020377,0.0000020376,0.0000020371, -0.0000020365,0.0000020363,0.0000020368,0.0000020386,0.0000020409, -0.0000020428,0.0000020443,0.0000020455,0.0000020459,0.0000020456, -0.0000020443,0.0000020427,0.0000020412,0.0000020396,0.0000020381, -0.0000020363,0.0000020341,0.0000020317,0.0000020291,0.0000020264, -0.0000020236,0.0000020211,0.0000020188,0.0000020166,0.0000020147, -0.0000020128,0.0000020102,0.0000020062,0.0000020006,0.0000019939, -0.0000019871,0.0000019808,0.0000019756,0.0000019718,0.0000019692, -0.0000019678,0.0000019667,0.0000019655,0.0000019635,0.0000019607, -0.0000019569,0.0000019522,0.0000019486,0.0000019457,0.0000019442, -0.0000019434,0.0000019445,0.0000019458,0.0000019476,0.0000019496, -0.0000019508,0.0000019522,0.0000019526,0.0000019516,0.0000019501, -0.0000019491,0.0000019480,0.0000019472,0.0000019473,0.0000019483, -0.0000019489,0.0000019496,0.0000019510,0.0000019533,0.0000019561, -0.0000019587,0.0000019613,0.0000019632,0.0000019645,0.0000019650, -0.0000019650,0.0000019649,0.0000019651,0.0000019659,0.0000019671, -0.0000019693,0.0000019730,0.0000019787,0.0000019861,0.0000019934, -0.0000019988,0.0000020005,0.0000019992,0.0000019966,0.0000019938, -0.0000019919,0.0000019916,0.0000019931,0.0000019974,0.0000020046, -0.0000020131,0.0000020213,0.0000020280,0.0000020339,0.0000020391, -0.0000020438,0.0000020480,0.0000020512,0.0000020529,0.0000020535, -0.0000020536,0.0000020539,0.0000020550,0.0000020570,0.0000020597, -0.0000020629,0.0000020664,0.0000020696,0.0000020728,0.0000020757, -0.0000020789,0.0000020823,0.0000020857,0.0000020893,0.0000020929, -0.0000020962,0.0000020993,0.0000021019,0.0000021043,0.0000021068, -0.0000021093,0.0000021115,0.0000021132,0.0000021143,0.0000021152, -0.0000021154,0.0000021143,0.0000021119,0.0000021086,0.0000021050, -0.0000021013,0.0000020975,0.0000020939,0.0000020905,0.0000020875, -0.0000020849,0.0000020824,0.0000020798,0.0000020778,0.0000020758, -0.0000020721,0.0000020666,0.0000020602,0.0000020537,0.0000020475, -0.0000020426,0.0000020389,0.0000020357,0.0000020324,0.0000020290, -0.0000020259,0.0000020231,0.0000020205,0.0000020185,0.0000020172, -0.0000020170,0.0000020177,0.0000020188,0.0000020200,0.0000020209, -0.0000020215,0.0000020218,0.0000020218,0.0000020213,0.0000020200, -0.0000020174,0.0000020138,0.0000020099,0.0000020061,0.0000020026, -0.0000020002,0.0000019986,0.0000019976,0.0000019964,0.0000019959, -0.0000019957,0.0000019957,0.0000019959,0.0000019963,0.0000019961, -0.0000019945,0.0000019908,0.0000019847,0.0000019773,0.0000019707, -0.0000019663,0.0000019645,0.0000019645,0.0000019652,0.0000019661, -0.0000019668,0.0000019670,0.0000019665,0.0000019655,0.0000019639, -0.0000019616,0.0000019589,0.0000019559,0.0000019524,0.0000019484, -0.0000019443,0.0000019406,0.0000019374,0.0000019344,0.0000019318, -0.0000019293,0.0000019266,0.0000019240,0.0000019216,0.0000019191, -0.0000019169,0.0000019153,0.0000019146,0.0000019147,0.0000019152, -0.0000019160,0.0000019168,0.0000019177,0.0000019187,0.0000019202, -0.0000019223,0.0000019249,0.0000019283,0.0000019326,0.0000019375, -0.0000019427,0.0000019475,0.0000019520,0.0000019561,0.0000019600, -0.0000019639,0.0000019676,0.0000019710,0.0000019736,0.0000019752, -0.0000019759,0.0000019762,0.0000019766,0.0000019777,0.0000019798, -0.0000019829,0.0000019867,0.0000019905,0.0000019937,0.0000019959, -0.0000019977,0.0000019997,0.0000020021,0.0000020047,0.0000020073, -0.0000020092,0.0000020101,0.0000020104,0.0000020097,0.0000020085, -0.0000020069,0.0000020054,0.0000020042,0.0000020029,0.0000020011, -0.0000019991,0.0000019971,0.0000019959,0.0000019954,0.0000019967, -0.0000019987,0.0000020006,0.0000020025,0.0000020049,0.0000020068, -0.0000020079,0.0000020084,0.0000020084,0.0000020076,0.0000020061, -0.0000020042,0.0000020023,0.0000020006,0.0000019997,0.0000020000, -0.0000020010,0.0000020014,0.0000020007,0.0000019993,0.0000019975, -0.0000019956,0.0000019930,0.0000019888,0.0000019829,0.0000019762, -0.0000019692,0.0000019622,0.0000019564,0.0000019523,0.0000019501, -0.0000019503,0.0000019520,0.0000019549,0.0000019590,0.0000019633, -0.0000019658,0.0000019644,0.0000019604,0.0000019556,0.0000019531, -0.0000019536,0.0000019571,0.0000019610,0.0000019631,0.0000019623, -0.0000019583,0.0000019505,0.0000019409,0.0000019325,0.0000019276, -0.0000019256,0.0000019245,0.0000019227,0.0000019203,0.0000019180, -0.0000019164,0.0000019157,0.0000019168,0.0000019186,0.0000019193, -0.0000019183,0.0000019171,0.0000019177,0.0000019214,0.0000019268, -0.0000019308,0.0000019317,0.0000019307,0.0000019293,0.0000019271, -0.0000019210,0.0000019107,0.0000019014,0.0000018964,0.0000018932, -0.0000018895,0.0000018874,0.0000018876,0.0000018876,0.0000018862, -0.0000018843,0.0000018822,0.0000018796,0.0000018764,0.0000018735, -0.0000018713,0.0000018700,0.0000018691,0.0000018685,0.0000018684, -0.0000018684,0.0000018682,0.0000018676,0.0000018666,0.0000018661, -0.0000018668,0.0000018692,0.0000018734,0.0000018792,0.0000018865, -0.0000018951,0.0000019046,0.0000019146,0.0000019241,0.0000019323, -0.0000019390,0.0000019446,0.0000019493,0.0000019532,0.0000019560, -0.0000019576,0.0000019583,0.0000019581,0.0000019569,0.0000019548, -0.0000019530,0.0000019521,0.0000019512,0.0000019499,0.0000019477, -0.0000019435,0.0000019367,0.0000019286,0.0000019213,0.0000019152, -0.0000019085,0.0000019004,0.0000018924,0.0000018860,0.0000018810, -0.0000018773,0.0000018748,0.0000018730,0.0000018720,0.0000018720, -0.0000018724,0.0000018728,0.0000018727,0.0000018716,0.0000018693, -0.0000018664,0.0000018639,0.0000018619,0.0000018588,0.0000018548, -0.0000018508,0.0000018465,0.0000018419,0.0000018381,0.0000018360, -0.0000018356,0.0000018349,0.0000018336,0.0000018324,0.0000018316, -0.0000018317,0.0000018326,0.0000018340,0.0000018345,0.0000018340, -0.0000018334,0.0000018333,0.0000018332,0.0000018322,0.0000018316, -0.0000018312,0.0000018301,0.0000018279,0.0000018249,0.0000018216, -0.0000018190,0.0000018179,0.0000018186,0.0000018211,0.0000018246, -0.0000018276,0.0000018295,0.0000018306,0.0000018314,0.0000018317, -0.0000018317,0.0000018315,0.0000018312,0.0000018309,0.0000018309, -0.0000018307,0.0000018297,0.0000018267,0.0000018209,0.0000018119, -0.0000018010,0.0000017900,0.0000017791,0.0000017677,0.0000017573, -0.0000017501,0.0000017460,0.0000017440,0.0000017439,0.0000017463, -0.0000017508,0.0000017551,0.0000017575,0.0000017583,0.0000017589, -0.0000017599,0.0000017610,0.0000017619,0.0000017623,0.0000017623, -0.0000017619,0.0000017617,0.0000017617,0.0000017620,0.0000017622, -0.0000017622,0.0000017619,0.0000017617,0.0000017613,0.0000017609, -0.0000017610,0.0000017627,0.0000017656,0.0000017697,0.0000017751, -0.0000017812,0.0000017878,0.0000017945,0.0000018006,0.0000018059, -0.0000018101,0.0000018133,0.0000018159,0.0000018177,0.0000018191, -0.0000018202,0.0000018208,0.0000018212,0.0000018215,0.0000018220, -0.0000018223,0.0000018222,0.0000018217,0.0000018208,0.0000018196, -0.0000018180,0.0000018160,0.0000018135,0.0000018106,0.0000018073, -0.0000018038,0.0000018000,0.0000017957,0.0000017912,0.0000017865, -0.0000017819,0.0000017772,0.0000017733,0.0000017725,0.0000017734, -0.0000017744,0.0000017790,0.0000017841,0.0000017889,0.0000017929, -0.0000017960,0.0000017967,0.0000017963,0.0000017953,0.0000017927, -0.0000017895,0.0000017863,0.0000017829,0.0000017798,0.0000017771, -0.0000017747,0.0000017731,0.0000017717,0.0000017706,0.0000017700, -0.0000017697,0.0000017698,0.0000017708,0.0000017725,0.0000017748, -0.0000017788,0.0000017851,0.0000017940,0.0000018050,0.0000018179, -0.0000018311,0.0000018433,0.0000018539,0.0000018632,0.0000018711, -0.0000018779,0.0000018838,0.0000018888,0.0000018929,0.0000018957, -0.0000018973,0.0000018975,0.0000018966,0.0000018944,0.0000018922, -0.0000018904,0.0000018904,0.0000018931,0.0000018977,0.0000019033, -0.0000019089,0.0000019129,0.0000019148,0.0000019141,0.0000019133, -0.0000019125,0.0000019123,0.0000019125,0.0000019128,0.0000019123, -0.0000019108,0.0000019090,0.0000019079,0.0000019081,0.0000019087, -0.0000019098,0.0000019111,0.0000019123,0.0000019135,0.0000019149, -0.0000019168,0.0000019197,0.0000019234,0.0000019274,0.0000019307, -0.0000019331,0.0000019351,0.0000019367,0.0000019383,0.0000019400, -0.0000019418,0.0000019436,0.0000019452,0.0000019464,0.0000019473, -0.0000019481,0.0000019488,0.0000019492,0.0000019493,0.0000019490, -0.0000019483,0.0000019475,0.0000019467,0.0000019461,0.0000019456, -0.0000019443,0.0000019425,0.0000019402,0.0000019377,0.0000019352, -0.0000019326,0.0000019298,0.0000019269,0.0000019240,0.0000019212, -0.0000019188,0.0000019171,0.0000019160,0.0000019155,0.0000019153, -0.0000019152,0.0000019153,0.0000019155,0.0000019158,0.0000019161, -0.0000019164,0.0000019165,0.0000019165,0.0000019163,0.0000019158, -0.0000019151,0.0000019142,0.0000019131,0.0000019117,0.0000019102, -0.0000019087,0.0000019074,0.0000019060,0.0000019045,0.0000019028, -0.0000019012,0.0000019000,0.0000018996,0.0000018995,0.0000018998, -0.0000019003,0.0000019011,0.0000019022,0.0000019033,0.0000019045, -0.0000019056,0.0000019066,0.0000019075,0.0000019084,0.0000019093, -0.0000019099,0.0000019105,0.0000019113,0.0000019122,0.0000019134, -0.0000019147,0.0000019159,0.0000019170,0.0000019178,0.0000019179, -0.0000019173,0.0000019160,0.0000019141,0.0000019122,0.0000019101, -0.0000019075,0.0000019040,0.0000018999,0.0000018954,0.0000018910, -0.0000018872,0.0000018842,0.0000018815,0.0000018792,0.0000018777, -0.0000018768,0.0000018764,0.0000018764,0.0000018764,0.0000018762, -0.0000018763,0.0000018768,0.0000018779,0.0000018792,0.0000018804, -0.0000018815,0.0000018749,0.0000018762,0.0000018779,0.0000018799, -0.0000018826,0.0000018860,0.0000018900,0.0000018945,0.0000018998, -0.0000019054,0.0000019107,0.0000019140,0.0000019138,0.0000019102, -0.0000019034,0.0000018961,0.0000018913,0.0000018892,0.0000018888, -0.0000018884,0.0000018873,0.0000018867,0.0000018876,0.0000018902, -0.0000018933,0.0000018952,0.0000018962,0.0000018982,0.0000019023, -0.0000019082,0.0000019139,0.0000019175,0.0000019190,0.0000019195, -0.0000019200,0.0000019209,0.0000019228,0.0000019259,0.0000019299, -0.0000019347,0.0000019395,0.0000019440,0.0000019480,0.0000019511, -0.0000019535,0.0000019553,0.0000019565,0.0000019570,0.0000019570, -0.0000019564,0.0000019554,0.0000019541,0.0000019526,0.0000019507, -0.0000019485,0.0000019461,0.0000019437,0.0000019414,0.0000019391, -0.0000019368,0.0000019344,0.0000019323,0.0000019304,0.0000019287, -0.0000019272,0.0000019255,0.0000019233,0.0000019209,0.0000019183, -0.0000019158,0.0000019136,0.0000019115,0.0000019097,0.0000019081, -0.0000019068,0.0000019055,0.0000019046,0.0000019040,0.0000019037, -0.0000019030,0.0000019016,0.0000018994,0.0000018961,0.0000018920, -0.0000018876,0.0000018832,0.0000018793,0.0000018758,0.0000018735, -0.0000018731,0.0000018740,0.0000018754,0.0000018770,0.0000018791, -0.0000018810,0.0000018821,0.0000018825,0.0000018822,0.0000018810, -0.0000018790,0.0000018766,0.0000018743,0.0000018726,0.0000018712, -0.0000018701,0.0000018693,0.0000018684,0.0000018679,0.0000018682, -0.0000018697,0.0000018729,0.0000018778,0.0000018844,0.0000018927, -0.0000019016,0.0000019100,0.0000019167,0.0000019209,0.0000019215, -0.0000019208,0.0000019189,0.0000019164,0.0000019129,0.0000019074, -0.0000018994,0.0000018895,0.0000018796,0.0000018725,0.0000018688, -0.0000018683,0.0000018698,0.0000018727,0.0000018757,0.0000018785, -0.0000018810,0.0000018831,0.0000018843,0.0000018848,0.0000018847, -0.0000018843,0.0000018842,0.0000018843,0.0000018848,0.0000018857, -0.0000018864,0.0000018870,0.0000018882,0.0000018901,0.0000018927, -0.0000018957,0.0000018988,0.0000019021,0.0000019054,0.0000019089, -0.0000019125,0.0000019158,0.0000019181,0.0000019194,0.0000019198, -0.0000019196,0.0000019191,0.0000019184,0.0000019178,0.0000019168, -0.0000019158,0.0000019149,0.0000019138,0.0000019130,0.0000019129, -0.0000019131,0.0000019133,0.0000019140,0.0000019157,0.0000019180, -0.0000019205,0.0000019233,0.0000019264,0.0000019290,0.0000019314, -0.0000019340,0.0000019372,0.0000019408,0.0000019445,0.0000019480, -0.0000019517,0.0000019557,0.0000019599,0.0000019644,0.0000019689, -0.0000019735,0.0000019781,0.0000019828,0.0000019874,0.0000019921, -0.0000019968,0.0000020010,0.0000020048,0.0000020080,0.0000020107, -0.0000020128,0.0000020143,0.0000020151,0.0000020154,0.0000020155, -0.0000020154,0.0000020151,0.0000020147,0.0000020144,0.0000020146, -0.0000020155,0.0000020170,0.0000020187,0.0000020205,0.0000020225, -0.0000020246,0.0000020266,0.0000020287,0.0000020309,0.0000020329, -0.0000020347,0.0000020363,0.0000020380,0.0000020398,0.0000020416, -0.0000020428,0.0000020434,0.0000020435,0.0000020430,0.0000020421, -0.0000020418,0.0000020435,0.0000020491,0.0000020567,0.0000020627, -0.0000020650,0.0000020668,0.0000020711,0.0000020747,0.0000020752, -0.0000020742,0.0000020717,0.0000020672,0.0000020614,0.0000020559, -0.0000020519,0.0000020496,0.0000020489,0.0000020490,0.0000020495, -0.0000020504,0.0000020519,0.0000020541,0.0000020570,0.0000020601, -0.0000020627,0.0000020649,0.0000020665,0.0000020674,0.0000020673, -0.0000020663,0.0000020645,0.0000020622,0.0000020596,0.0000020564, -0.0000020525,0.0000020484,0.0000020451,0.0000020426,0.0000020409, -0.0000020402,0.0000020398,0.0000020390,0.0000020381,0.0000020376, -0.0000020377,0.0000020383,0.0000020397,0.0000020420,0.0000020451, -0.0000020488,0.0000020530,0.0000020571,0.0000020603,0.0000020628, -0.0000020648,0.0000020662,0.0000020666,0.0000020659,0.0000020643, -0.0000020622,0.0000020601,0.0000020577,0.0000020553,0.0000020532, -0.0000020521,0.0000020516,0.0000020505,0.0000020480,0.0000020448, -0.0000020418,0.0000020400,0.0000020393,0.0000020403,0.0000020426, -0.0000020455,0.0000020484,0.0000020512,0.0000020538,0.0000020556, -0.0000020567,0.0000020574,0.0000020581,0.0000020587,0.0000020584, -0.0000020568,0.0000020547,0.0000020538,0.0000020552,0.0000020585, -0.0000020579,0.0000020481,0.0000020326,0.0000020217,0.0000020195, -0.0000020214,0.0000020227,0.0000020233,0.0000020237,0.0000020231, -0.0000020196,0.0000020131,0.0000020064,0.0000020017,0.0000020019, -0.0000020119,0.0000020255,0.0000020326,0.0000020333,0.0000020319, -0.0000020250,0.0000020095,0.0000019961,0.0000019989,0.0000020195, -0.0000020449,0.0000020587,0.0000020622,0.0000020656,0.0000020708, -0.0000020753,0.0000020810,0.0000020928,0.0000021074,0.0000021162, -0.0000021178,0.0000021190,0.0000021260,0.0000021378,0.0000021473, -0.0000021515,0.0000021539,0.0000021574,0.0000021608,0.0000021627, -0.0000021631,0.0000021621,0.0000021597,0.0000021562,0.0000021523, -0.0000021488,0.0000021461,0.0000021445,0.0000021435,0.0000021431, -0.0000021428,0.0000021420,0.0000021408,0.0000021396,0.0000021383, -0.0000021375,0.0000021375,0.0000021383,0.0000021392,0.0000021399, -0.0000021402,0.0000021401,0.0000021396,0.0000021389,0.0000021380, -0.0000021370,0.0000021362,0.0000021354,0.0000021348,0.0000021348, -0.0000021351,0.0000021351,0.0000021343,0.0000021326,0.0000021310, -0.0000021298,0.0000021293,0.0000021292,0.0000021295,0.0000021299, -0.0000021299,0.0000021295,0.0000021288,0.0000021278,0.0000021264, -0.0000021253,0.0000021244,0.0000021236,0.0000021229,0.0000021221, -0.0000021212,0.0000021204,0.0000021198,0.0000021196,0.0000021192, -0.0000021187,0.0000021183,0.0000021181,0.0000021178,0.0000021175, -0.0000021171,0.0000021168,0.0000021165,0.0000021161,0.0000021155, -0.0000021151,0.0000021147,0.0000021148,0.0000021150,0.0000021149, -0.0000021147,0.0000021145,0.0000021149,0.0000021155,0.0000021165, -0.0000021176,0.0000021191,0.0000021195,0.0000021194,0.0000021189, -0.0000021180,0.0000021170,0.0000021156,0.0000021135,0.0000021109, -0.0000021084,0.0000021060,0.0000021036,0.0000021022,0.0000021015, -0.0000021010,0.0000021005,0.0000021002,0.0000020997,0.0000020990, -0.0000020983,0.0000020974,0.0000020967,0.0000020966,0.0000020967, -0.0000020972,0.0000020977,0.0000020980,0.0000020984,0.0000020988, -0.0000020989,0.0000020987,0.0000020992,0.0000020999,0.0000021006, -0.0000021018,0.0000021033,0.0000021043,0.0000021047,0.0000021053, -0.0000021052,0.0000021045,0.0000021040,0.0000021026,0.0000021004, -0.0000020979,0.0000020952,0.0000020929,0.0000020913,0.0000020901, -0.0000020890,0.0000020878,0.0000020864,0.0000020847,0.0000020824, -0.0000020796,0.0000020769,0.0000020749,0.0000020736,0.0000020727, -0.0000020716,0.0000020703,0.0000020689,0.0000020675,0.0000020669, -0.0000020671,0.0000020677,0.0000020686,0.0000020693,0.0000020700, -0.0000020707,0.0000020707,0.0000020700,0.0000020692,0.0000020681, -0.0000020665,0.0000020647,0.0000020633,0.0000020629,0.0000020633, -0.0000020643,0.0000020653,0.0000020661,0.0000020664,0.0000020664, -0.0000020663,0.0000020674,0.0000020697,0.0000020725,0.0000020756, -0.0000020785,0.0000020816,0.0000020849,0.0000020882,0.0000020914, -0.0000020945,0.0000020971,0.0000020991,0.0000021005,0.0000021015, -0.0000021024,0.0000021030,0.0000021034,0.0000021034,0.0000021031, -0.0000021022,0.0000021009,0.0000020992,0.0000020975,0.0000020959, -0.0000020943,0.0000020926,0.0000020913,0.0000020909,0.0000020910, -0.0000020914,0.0000020918,0.0000020925,0.0000020937,0.0000020948, -0.0000020954,0.0000020960,0.0000020966,0.0000020967,0.0000020958, -0.0000020943,0.0000020929,0.0000020914,0.0000020896,0.0000020876, -0.0000020853,0.0000020831,0.0000020814,0.0000020803,0.0000020789, -0.0000020768,0.0000020743,0.0000020715,0.0000020688,0.0000020667, -0.0000020655,0.0000020652,0.0000020654,0.0000020655,0.0000020655, -0.0000020651,0.0000020643,0.0000020634,0.0000020621,0.0000020606, -0.0000020591,0.0000020578,0.0000020567,0.0000020553,0.0000020539, -0.0000020530,0.0000020527,0.0000020525,0.0000020530,0.0000020541, -0.0000020554,0.0000020574,0.0000020604,0.0000020645,0.0000020687, -0.0000020730,0.0000020777,0.0000020823,0.0000020874,0.0000020933, -0.0000020999,0.0000021063,0.0000021121,0.0000021166,0.0000021197, -0.0000021219,0.0000021237,0.0000021254,0.0000021272,0.0000021290, -0.0000021309,0.0000021330,0.0000021354,0.0000021382,0.0000021410, -0.0000021436,0.0000021461,0.0000021477,0.0000021484,0.0000021483, -0.0000021476,0.0000021461,0.0000021441,0.0000021422,0.0000021402, -0.0000021384,0.0000021372,0.0000021361,0.0000021345,0.0000021322, -0.0000021290,0.0000021250,0.0000021205,0.0000021159,0.0000021118, -0.0000021083,0.0000021053,0.0000021029,0.0000021010,0.0000020998, -0.0000020995,0.0000020996,0.0000020998,0.0000020998,0.0000020992, -0.0000020979,0.0000020963,0.0000020948,0.0000020934,0.0000020924, -0.0000020914,0.0000020902,0.0000020891,0.0000020887,0.0000020890, -0.0000020894,0.0000020899,0.0000020907,0.0000020919,0.0000020936, -0.0000020954,0.0000020966,0.0000020968,0.0000020965,0.0000020955, -0.0000020941,0.0000020919,0.0000020886,0.0000020845,0.0000020799, -0.0000020757,0.0000020720,0.0000020694,0.0000020679,0.0000020671, -0.0000020669,0.0000020668,0.0000020663,0.0000020654,0.0000020636, -0.0000020607,0.0000020567,0.0000020517,0.0000020460,0.0000020399, -0.0000020338,0.0000020279,0.0000020230,0.0000020193,0.0000020160, -0.0000020128,0.0000020098,0.0000020072,0.0000020047,0.0000020019, -0.0000019984,0.0000019951,0.0000019925,0.0000019917,0.0000019924, -0.0000019943,0.0000019967,0.0000019992,0.0000020014,0.0000020032, -0.0000020044,0.0000020052,0.0000020062,0.0000020076,0.0000020096, -0.0000020114,0.0000020131,0.0000020149,0.0000020164,0.0000020178, -0.0000020188,0.0000020193,0.0000020195,0.0000020195,0.0000020194, -0.0000020190,0.0000020183,0.0000020176,0.0000020172,0.0000020172, -0.0000020179,0.0000020192,0.0000020206,0.0000020217,0.0000020220, -0.0000020219,0.0000020220,0.0000020223,0.0000020228,0.0000020236, -0.0000020244,0.0000020258,0.0000020279,0.0000020308,0.0000020335, -0.0000020358,0.0000020372,0.0000020377,0.0000020373,0.0000020363, -0.0000020350,0.0000020339,0.0000020331,0.0000020324,0.0000020317, -0.0000020309,0.0000020301,0.0000020295,0.0000020297,0.0000020312, -0.0000020340,0.0000020370,0.0000020401,0.0000020430,0.0000020448, -0.0000020455,0.0000020445,0.0000020436,0.0000020424,0.0000020412, -0.0000020400,0.0000020384,0.0000020365,0.0000020346,0.0000020326, -0.0000020301,0.0000020273,0.0000020247,0.0000020223,0.0000020200, -0.0000020182,0.0000020170,0.0000020160,0.0000020145,0.0000020117, -0.0000020074,0.0000020013,0.0000019941,0.0000019866,0.0000019794, -0.0000019733,0.0000019691,0.0000019674,0.0000019672,0.0000019675, -0.0000019680,0.0000019670,0.0000019645,0.0000019605,0.0000019556, -0.0000019501,0.0000019465,0.0000019440,0.0000019430,0.0000019429, -0.0000019451,0.0000019470,0.0000019503,0.0000019533,0.0000019545, -0.0000019556,0.0000019555,0.0000019554,0.0000019548,0.0000019538, -0.0000019534,0.0000019528,0.0000019517,0.0000019505,0.0000019515, -0.0000019516,0.0000019523,0.0000019536,0.0000019556,0.0000019575, -0.0000019590,0.0000019602,0.0000019612,0.0000019624,0.0000019638, -0.0000019647,0.0000019650,0.0000019655,0.0000019670,0.0000019708, -0.0000019780,0.0000019872,0.0000019959,0.0000019996,0.0000020008, -0.0000019989,0.0000019959,0.0000019940,0.0000019934,0.0000019948, -0.0000019993,0.0000020062,0.0000020142,0.0000020215,0.0000020275, -0.0000020324,0.0000020365,0.0000020404,0.0000020437,0.0000020463, -0.0000020480,0.0000020490,0.0000020498,0.0000020512,0.0000020536, -0.0000020567,0.0000020604,0.0000020647,0.0000020689,0.0000020729, -0.0000020768,0.0000020807,0.0000020845,0.0000020884,0.0000020922, -0.0000020957,0.0000020987,0.0000021012,0.0000021032,0.0000021054, -0.0000021073,0.0000021091,0.0000021101,0.0000021101,0.0000021098, -0.0000021090,0.0000021078,0.0000021057,0.0000021030,0.0000021000, -0.0000020967,0.0000020930,0.0000020890,0.0000020849,0.0000020814, -0.0000020786,0.0000020764,0.0000020741,0.0000020719,0.0000020699, -0.0000020668,0.0000020618,0.0000020556,0.0000020489,0.0000020422, -0.0000020360,0.0000020309,0.0000020268,0.0000020232,0.0000020200, -0.0000020174,0.0000020156,0.0000020144,0.0000020138,0.0000020137, -0.0000020142,0.0000020156,0.0000020174,0.0000020193,0.0000020207, -0.0000020214,0.0000020212,0.0000020199,0.0000020176,0.0000020146, -0.0000020108,0.0000020070,0.0000020039,0.0000020019,0.0000020009, -0.0000020006,0.0000020005,0.0000020010,0.0000020010,0.0000020004, -0.0000019996,0.0000019988,0.0000019982,0.0000019978,0.0000019969, -0.0000019943,0.0000019891,0.0000019820,0.0000019748,0.0000019693, -0.0000019664,0.0000019654,0.0000019655,0.0000019662,0.0000019673, -0.0000019683,0.0000019686,0.0000019682,0.0000019674,0.0000019660, -0.0000019640,0.0000019614,0.0000019585,0.0000019553,0.0000019518, -0.0000019480,0.0000019441,0.0000019405,0.0000019374,0.0000019344, -0.0000019314,0.0000019285,0.0000019257,0.0000019233,0.0000019212, -0.0000019191,0.0000019170,0.0000019151,0.0000019139,0.0000019129, -0.0000019125,0.0000019125,0.0000019128,0.0000019130,0.0000019131, -0.0000019131,0.0000019131,0.0000019131,0.0000019137,0.0000019153, -0.0000019179,0.0000019213,0.0000019252,0.0000019296,0.0000019345, -0.0000019398,0.0000019457,0.0000019520,0.0000019581,0.0000019636, -0.0000019681,0.0000019713,0.0000019729,0.0000019734,0.0000019733, -0.0000019734,0.0000019744,0.0000019768,0.0000019805,0.0000019848, -0.0000019887,0.0000019921,0.0000019953,0.0000019982,0.0000020008, -0.0000020032,0.0000020052,0.0000020068,0.0000020079,0.0000020085, -0.0000020080,0.0000020070,0.0000020056,0.0000020039,0.0000020023, -0.0000020006,0.0000019986,0.0000019968,0.0000019953,0.0000019945, -0.0000019952,0.0000019966,0.0000019980,0.0000019997,0.0000020015, -0.0000020026,0.0000020032,0.0000020033,0.0000020027,0.0000020012, -0.0000019992,0.0000019969,0.0000019945,0.0000019926,0.0000019920, -0.0000019927,0.0000019941,0.0000019952,0.0000019954,0.0000019946, -0.0000019934,0.0000019922,0.0000019900,0.0000019862,0.0000019808, -0.0000019743,0.0000019670,0.0000019599,0.0000019540,0.0000019498, -0.0000019472,0.0000019469,0.0000019482,0.0000019508,0.0000019547, -0.0000019591,0.0000019621,0.0000019618,0.0000019585,0.0000019544, -0.0000019523,0.0000019531,0.0000019564,0.0000019599,0.0000019616, -0.0000019603,0.0000019566,0.0000019496,0.0000019411,0.0000019334, -0.0000019282,0.0000019257,0.0000019244,0.0000019225,0.0000019197, -0.0000019169,0.0000019149,0.0000019138,0.0000019146,0.0000019164, -0.0000019175,0.0000019169,0.0000019159,0.0000019158,0.0000019188, -0.0000019239,0.0000019280,0.0000019292,0.0000019285,0.0000019274, -0.0000019250,0.0000019182,0.0000019080,0.0000018995,0.0000018946, -0.0000018901,0.0000018860,0.0000018837,0.0000018833,0.0000018821, -0.0000018802,0.0000018783,0.0000018760,0.0000018735,0.0000018715, -0.0000018701,0.0000018690,0.0000018678,0.0000018669,0.0000018665, -0.0000018665,0.0000018665,0.0000018664,0.0000018657,0.0000018646, -0.0000018639,0.0000018643,0.0000018659,0.0000018690,0.0000018735, -0.0000018794,0.0000018867,0.0000018959,0.0000019063,0.0000019161, -0.0000019245,0.0000019317,0.0000019379,0.0000019430,0.0000019468, -0.0000019490,0.0000019503,0.0000019510,0.0000019510,0.0000019503, -0.0000019493,0.0000019486,0.0000019478,0.0000019465,0.0000019440, -0.0000019393,0.0000019323,0.0000019241,0.0000019166,0.0000019095, -0.0000019014,0.0000018932,0.0000018854,0.0000018789,0.0000018738, -0.0000018698,0.0000018671,0.0000018648,0.0000018630,0.0000018623, -0.0000018624,0.0000018626,0.0000018627,0.0000018622,0.0000018604, -0.0000018584,0.0000018568,0.0000018555,0.0000018530,0.0000018494, -0.0000018456,0.0000018413,0.0000018371,0.0000018345,0.0000018329, -0.0000018320,0.0000018311,0.0000018303,0.0000018292,0.0000018283, -0.0000018277,0.0000018277,0.0000018292,0.0000018312,0.0000018321, -0.0000018319,0.0000018314,0.0000018316,0.0000018316,0.0000018311, -0.0000018309,0.0000018307,0.0000018295,0.0000018271,0.0000018241, -0.0000018214,0.0000018198,0.0000018197,0.0000018212,0.0000018234, -0.0000018258,0.0000018281,0.0000018296,0.0000018304,0.0000018311, -0.0000018317,0.0000018321,0.0000018323,0.0000018324,0.0000018324, -0.0000018323,0.0000018307,0.0000018262,0.0000018180,0.0000018069, -0.0000017948,0.0000017830,0.0000017711,0.0000017602,0.0000017528, -0.0000017491,0.0000017474,0.0000017473,0.0000017496,0.0000017538, -0.0000017578,0.0000017602,0.0000017614,0.0000017623,0.0000017635, -0.0000017647,0.0000017654,0.0000017652,0.0000017646,0.0000017640, -0.0000017641,0.0000017650,0.0000017662,0.0000017665,0.0000017656, -0.0000017638,0.0000017623,0.0000017619,0.0000017624,0.0000017643, -0.0000017682,0.0000017743,0.0000017820,0.0000017908,0.0000017996, -0.0000018078,0.0000018146,0.0000018201,0.0000018243,0.0000018274, -0.0000018296,0.0000018312,0.0000018327,0.0000018340,0.0000018351, -0.0000018362,0.0000018370,0.0000018375,0.0000018381,0.0000018388, -0.0000018393,0.0000018393,0.0000018387,0.0000018377,0.0000018361, -0.0000018339,0.0000018312,0.0000018280,0.0000018246,0.0000018211, -0.0000018178,0.0000018147,0.0000018119,0.0000018089,0.0000018054, -0.0000018012,0.0000017961,0.0000017905,0.0000017849,0.0000017800, -0.0000017762,0.0000017744,0.0000017758,0.0000017792,0.0000017837, -0.0000017889,0.0000017933,0.0000017963,0.0000017980,0.0000017978, -0.0000017969,0.0000017946,0.0000017915,0.0000017881,0.0000017847, -0.0000017811,0.0000017775,0.0000017741,0.0000017715,0.0000017699, -0.0000017687,0.0000017677,0.0000017674,0.0000017680,0.0000017690, -0.0000017702,0.0000017721,0.0000017755,0.0000017812,0.0000017897, -0.0000018009,0.0000018140,0.0000018274,0.0000018402,0.0000018514, -0.0000018611,0.0000018697,0.0000018771,0.0000018835,0.0000018888, -0.0000018929,0.0000018957,0.0000018964,0.0000018954,0.0000018936, -0.0000018906,0.0000018884,0.0000018876,0.0000018888,0.0000018928, -0.0000018984,0.0000019046,0.0000019097,0.0000019125,0.0000019126, -0.0000019119,0.0000019121,0.0000019125,0.0000019136,0.0000019144, -0.0000019143,0.0000019129,0.0000019109,0.0000019092,0.0000019086, -0.0000019086,0.0000019090,0.0000019098,0.0000019103,0.0000019106, -0.0000019110,0.0000019122,0.0000019145,0.0000019180,0.0000019224, -0.0000019268,0.0000019309,0.0000019344,0.0000019374,0.0000019392, -0.0000019406,0.0000019418,0.0000019431,0.0000019442,0.0000019450, -0.0000019457,0.0000019460,0.0000019464,0.0000019465,0.0000019461, -0.0000019455,0.0000019445,0.0000019435,0.0000019423,0.0000019411, -0.0000019394,0.0000019375,0.0000019352,0.0000019328,0.0000019302, -0.0000019273,0.0000019243,0.0000019212,0.0000019181,0.0000019152, -0.0000019125,0.0000019103,0.0000019089,0.0000019082,0.0000019080, -0.0000019080,0.0000019080,0.0000019079,0.0000019078,0.0000019078, -0.0000019078,0.0000019079,0.0000019080,0.0000019080,0.0000019079, -0.0000019076,0.0000019070,0.0000019061,0.0000019050,0.0000019039, -0.0000019027,0.0000019013,0.0000018997,0.0000018980,0.0000018961, -0.0000018945,0.0000018934,0.0000018929,0.0000018926,0.0000018926, -0.0000018927,0.0000018928,0.0000018932,0.0000018936,0.0000018942, -0.0000018947,0.0000018949,0.0000018950,0.0000018952,0.0000018953, -0.0000018954,0.0000018954,0.0000018955,0.0000018959,0.0000018963, -0.0000018967,0.0000018973,0.0000018981,0.0000018989,0.0000018994, -0.0000018993,0.0000018987,0.0000018978,0.0000018970,0.0000018961, -0.0000018946,0.0000018923,0.0000018892,0.0000018856,0.0000018821, -0.0000018788,0.0000018757,0.0000018730,0.0000018707,0.0000018689, -0.0000018679,0.0000018675,0.0000018677,0.0000018681,0.0000018686, -0.0000018691,0.0000018699,0.0000018710,0.0000018724,0.0000018737, -0.0000018684,0.0000018697,0.0000018711,0.0000018727,0.0000018744, -0.0000018765,0.0000018794,0.0000018830,0.0000018872,0.0000018922, -0.0000018980,0.0000019040,0.0000019088,0.0000019112,0.0000019099, -0.0000019056,0.0000018989,0.0000018927,0.0000018896,0.0000018895, -0.0000018898,0.0000018896,0.0000018887,0.0000018885,0.0000018900, -0.0000018929,0.0000018950,0.0000018958,0.0000018966,0.0000018991, -0.0000019037,0.0000019092,0.0000019140,0.0000019172,0.0000019188, -0.0000019199,0.0000019212,0.0000019231,0.0000019257,0.0000019290, -0.0000019329,0.0000019373,0.0000019418,0.0000019461,0.0000019498, -0.0000019528,0.0000019549,0.0000019562,0.0000019568,0.0000019567, -0.0000019562,0.0000019553,0.0000019539,0.0000019520,0.0000019498, -0.0000019471,0.0000019444,0.0000019418,0.0000019396,0.0000019375, -0.0000019354,0.0000019335,0.0000019320,0.0000019309,0.0000019297, -0.0000019285,0.0000019272,0.0000019257,0.0000019240,0.0000019221, -0.0000019201,0.0000019182,0.0000019161,0.0000019137,0.0000019115, -0.0000019094,0.0000019075,0.0000019062,0.0000019054,0.0000019047, -0.0000019038,0.0000019025,0.0000019007,0.0000018982,0.0000018953, -0.0000018915,0.0000018868,0.0000018812,0.0000018756,0.0000018720, -0.0000018695,0.0000018688,0.0000018693,0.0000018714,0.0000018753, -0.0000018794,0.0000018825,0.0000018843,0.0000018853,0.0000018852, -0.0000018837,0.0000018809,0.0000018778,0.0000018751,0.0000018730, -0.0000018713,0.0000018697,0.0000018686,0.0000018680,0.0000018677, -0.0000018681,0.0000018700,0.0000018735,0.0000018790,0.0000018861, -0.0000018949,0.0000019044,0.0000019125,0.0000019178,0.0000019200, -0.0000019191,0.0000019172,0.0000019145,0.0000019108,0.0000019061, -0.0000018997,0.0000018911,0.0000018815,0.0000018730,0.0000018686, -0.0000018689,0.0000018709,0.0000018737,0.0000018768,0.0000018798, -0.0000018823,0.0000018837,0.0000018844,0.0000018845,0.0000018844, -0.0000018842,0.0000018846,0.0000018851,0.0000018857,0.0000018856, -0.0000018851,0.0000018847,0.0000018848,0.0000018860,0.0000018880, -0.0000018905,0.0000018934,0.0000018966,0.0000019002,0.0000019040, -0.0000019073,0.0000019097,0.0000019112,0.0000019118,0.0000019120, -0.0000019119,0.0000019120,0.0000019119,0.0000019112,0.0000019104, -0.0000019095,0.0000019085,0.0000019076,0.0000019074,0.0000019074, -0.0000019076,0.0000019084,0.0000019102,0.0000019124,0.0000019146, -0.0000019170,0.0000019194,0.0000019215,0.0000019231,0.0000019250, -0.0000019273,0.0000019300,0.0000019326,0.0000019350,0.0000019377, -0.0000019406,0.0000019438,0.0000019470,0.0000019502,0.0000019536, -0.0000019574,0.0000019615,0.0000019659,0.0000019706,0.0000019755, -0.0000019806,0.0000019858,0.0000019909,0.0000019957,0.0000020001, -0.0000020037,0.0000020065,0.0000020088,0.0000020105,0.0000020117, -0.0000020122,0.0000020123,0.0000020122,0.0000020124,0.0000020133, -0.0000020144,0.0000020156,0.0000020167,0.0000020182,0.0000020199, -0.0000020218,0.0000020239,0.0000020261,0.0000020285,0.0000020306, -0.0000020327,0.0000020347,0.0000020368,0.0000020389,0.0000020403, -0.0000020409,0.0000020411,0.0000020407,0.0000020395,0.0000020388, -0.0000020400,0.0000020450,0.0000020524,0.0000020583,0.0000020608, -0.0000020622,0.0000020659,0.0000020697,0.0000020707,0.0000020702, -0.0000020680,0.0000020642,0.0000020594,0.0000020545,0.0000020504, -0.0000020481,0.0000020475,0.0000020480,0.0000020491,0.0000020506, -0.0000020526,0.0000020555,0.0000020588,0.0000020619,0.0000020646, -0.0000020669,0.0000020686,0.0000020696,0.0000020697,0.0000020692, -0.0000020678,0.0000020661,0.0000020641,0.0000020616,0.0000020583, -0.0000020546,0.0000020514,0.0000020487,0.0000020465,0.0000020446, -0.0000020429,0.0000020410,0.0000020390,0.0000020375,0.0000020364, -0.0000020355,0.0000020352,0.0000020357,0.0000020371,0.0000020399, -0.0000020438,0.0000020483,0.0000020525,0.0000020563,0.0000020598, -0.0000020622,0.0000020629,0.0000020623,0.0000020606,0.0000020580, -0.0000020551,0.0000020521,0.0000020493,0.0000020475,0.0000020467, -0.0000020467,0.0000020465,0.0000020454,0.0000020433,0.0000020410, -0.0000020392,0.0000020381,0.0000020378,0.0000020383,0.0000020396, -0.0000020411,0.0000020430,0.0000020450,0.0000020468,0.0000020482, -0.0000020497,0.0000020515,0.0000020535,0.0000020544,0.0000020537, -0.0000020518,0.0000020510,0.0000020531,0.0000020572,0.0000020571, -0.0000020473,0.0000020317,0.0000020207,0.0000020188,0.0000020211, -0.0000020229,0.0000020236,0.0000020237,0.0000020229,0.0000020189, -0.0000020119,0.0000020048,0.0000020009,0.0000020032,0.0000020150, -0.0000020283,0.0000020330,0.0000020323,0.0000020303,0.0000020222, -0.0000020058,0.0000019964,0.0000020026,0.0000020254,0.0000020505, -0.0000020629,0.0000020659,0.0000020693,0.0000020741,0.0000020782, -0.0000020846,0.0000020966,0.0000021097,0.0000021167,0.0000021178, -0.0000021193,0.0000021266,0.0000021377,0.0000021462,0.0000021496, -0.0000021509,0.0000021531,0.0000021557,0.0000021571,0.0000021568, -0.0000021559,0.0000021542,0.0000021517,0.0000021487,0.0000021464, -0.0000021444,0.0000021426,0.0000021413,0.0000021403,0.0000021390, -0.0000021373,0.0000021358,0.0000021345,0.0000021338,0.0000021342, -0.0000021357,0.0000021376,0.0000021392,0.0000021399,0.0000021398, -0.0000021391,0.0000021380,0.0000021362,0.0000021342,0.0000021323, -0.0000021302,0.0000021286,0.0000021280,0.0000021282,0.0000021284, -0.0000021282,0.0000021273,0.0000021259,0.0000021247,0.0000021239, -0.0000021233,0.0000021231,0.0000021233,0.0000021239,0.0000021246, -0.0000021250,0.0000021251,0.0000021250,0.0000021247,0.0000021241, -0.0000021236,0.0000021230,0.0000021223,0.0000021212,0.0000021201, -0.0000021191,0.0000021185,0.0000021175,0.0000021161,0.0000021148, -0.0000021138,0.0000021127,0.0000021117,0.0000021108,0.0000021099, -0.0000021091,0.0000021084,0.0000021079,0.0000021076,0.0000021081, -0.0000021089,0.0000021099,0.0000021108,0.0000021112,0.0000021118, -0.0000021129,0.0000021142,0.0000021156,0.0000021172,0.0000021188, -0.0000021206,0.0000021221,0.0000021229,0.0000021229,0.0000021226, -0.0000021219,0.0000021203,0.0000021182,0.0000021158,0.0000021124, -0.0000021086,0.0000021054,0.0000021031,0.0000021013,0.0000020995, -0.0000020973,0.0000020947,0.0000020925,0.0000020909,0.0000020894, -0.0000020872,0.0000020857,0.0000020852,0.0000020850,0.0000020852, -0.0000020858,0.0000020866,0.0000020878,0.0000020892,0.0000020906, -0.0000020920,0.0000020935,0.0000020953,0.0000020973,0.0000020991, -0.0000021007,0.0000021019,0.0000021027,0.0000021030,0.0000021030, -0.0000021023,0.0000021011,0.0000020991,0.0000020964,0.0000020932, -0.0000020900,0.0000020871,0.0000020845,0.0000020822,0.0000020801, -0.0000020780,0.0000020758,0.0000020731,0.0000020700,0.0000020673, -0.0000020654,0.0000020639,0.0000020626,0.0000020613,0.0000020600, -0.0000020587,0.0000020581,0.0000020584,0.0000020593,0.0000020602, -0.0000020611,0.0000020621,0.0000020634,0.0000020646,0.0000020650, -0.0000020649,0.0000020646,0.0000020634,0.0000020616,0.0000020597, -0.0000020584,0.0000020580,0.0000020582,0.0000020588,0.0000020595, -0.0000020599,0.0000020598,0.0000020593,0.0000020590,0.0000020598, -0.0000020612,0.0000020633,0.0000020661,0.0000020692,0.0000020723, -0.0000020755,0.0000020787,0.0000020820,0.0000020854,0.0000020884, -0.0000020907,0.0000020925,0.0000020937,0.0000020946,0.0000020952, -0.0000020956,0.0000020956,0.0000020951,0.0000020944,0.0000020934, -0.0000020924,0.0000020913,0.0000020902,0.0000020890,0.0000020878, -0.0000020869,0.0000020867,0.0000020870,0.0000020874,0.0000020876, -0.0000020875,0.0000020875,0.0000020876,0.0000020874,0.0000020875, -0.0000020881,0.0000020887,0.0000020889,0.0000020888,0.0000020885, -0.0000020881,0.0000020876,0.0000020871,0.0000020866,0.0000020860, -0.0000020853,0.0000020849,0.0000020841,0.0000020827,0.0000020804, -0.0000020774,0.0000020740,0.0000020708,0.0000020684,0.0000020670, -0.0000020663,0.0000020659,0.0000020657,0.0000020653,0.0000020643, -0.0000020628,0.0000020610,0.0000020594,0.0000020584,0.0000020579, -0.0000020578,0.0000020574,0.0000020569,0.0000020564,0.0000020559, -0.0000020551,0.0000020541,0.0000020537,0.0000020532,0.0000020532, -0.0000020542,0.0000020561,0.0000020585,0.0000020613,0.0000020645, -0.0000020683,0.0000020728,0.0000020783,0.0000020848,0.0000020918, -0.0000020990,0.0000021055,0.0000021106,0.0000021142,0.0000021170, -0.0000021194,0.0000021214,0.0000021230,0.0000021243,0.0000021255, -0.0000021268,0.0000021285,0.0000021306,0.0000021329,0.0000021354, -0.0000021372,0.0000021382,0.0000021388,0.0000021386,0.0000021378, -0.0000021368,0.0000021356,0.0000021344,0.0000021336,0.0000021334, -0.0000021328,0.0000021315,0.0000021290,0.0000021255,0.0000021209, -0.0000021159,0.0000021108,0.0000021062,0.0000021021,0.0000020987, -0.0000020963,0.0000020951,0.0000020948,0.0000020951,0.0000020955, -0.0000020957,0.0000020955,0.0000020944,0.0000020925,0.0000020903, -0.0000020884,0.0000020869,0.0000020858,0.0000020847,0.0000020833, -0.0000020822,0.0000020818,0.0000020819,0.0000020821,0.0000020823, -0.0000020828,0.0000020839,0.0000020857,0.0000020873,0.0000020880, -0.0000020879,0.0000020869,0.0000020853,0.0000020833,0.0000020807, -0.0000020778,0.0000020747,0.0000020713,0.0000020679,0.0000020652, -0.0000020632,0.0000020617,0.0000020608,0.0000020603,0.0000020600, -0.0000020596,0.0000020589,0.0000020576,0.0000020554,0.0000020519, -0.0000020474,0.0000020426,0.0000020374,0.0000020321,0.0000020269, -0.0000020222,0.0000020183,0.0000020149,0.0000020119,0.0000020092, -0.0000020066,0.0000020040,0.0000020007,0.0000019969,0.0000019932, -0.0000019912,0.0000019907,0.0000019920,0.0000019941,0.0000019969, -0.0000020001,0.0000020028,0.0000020047,0.0000020060,0.0000020067, -0.0000020073,0.0000020084,0.0000020100,0.0000020116,0.0000020133, -0.0000020151,0.0000020169,0.0000020185,0.0000020196,0.0000020201, -0.0000020205,0.0000020206,0.0000020208,0.0000020207,0.0000020204, -0.0000020200,0.0000020198,0.0000020200,0.0000020210,0.0000020225, -0.0000020238,0.0000020244,0.0000020243,0.0000020240,0.0000020240, -0.0000020243,0.0000020246,0.0000020247,0.0000020250,0.0000020262, -0.0000020281,0.0000020305,0.0000020331,0.0000020348,0.0000020356, -0.0000020355,0.0000020350,0.0000020341,0.0000020331,0.0000020320, -0.0000020308,0.0000020296,0.0000020281,0.0000020264,0.0000020249, -0.0000020239,0.0000020242,0.0000020257,0.0000020283,0.0000020317, -0.0000020352,0.0000020384,0.0000020409,0.0000020421,0.0000020425, -0.0000020426,0.0000020417,0.0000020409,0.0000020397,0.0000020383, -0.0000020366,0.0000020349,0.0000020329,0.0000020307,0.0000020287, -0.0000020269,0.0000020252,0.0000020232,0.0000020213,0.0000020198, -0.0000020185,0.0000020171,0.0000020151,0.0000020118,0.0000020071, -0.0000020010,0.0000019936,0.0000019856,0.0000019780,0.0000019723, -0.0000019686,0.0000019677,0.0000019679,0.0000019690,0.0000019695, -0.0000019696,0.0000019676,0.0000019641,0.0000019598,0.0000019551, -0.0000019502,0.0000019473,0.0000019452,0.0000019452,0.0000019453, -0.0000019479,0.0000019502,0.0000019525,0.0000019548,0.0000019569, -0.0000019576,0.0000019591,0.0000019598,0.0000019604,0.0000019601, -0.0000019591,0.0000019578,0.0000019563,0.0000019547,0.0000019532, -0.0000019535,0.0000019532,0.0000019532,0.0000019537,0.0000019546, -0.0000019563,0.0000019587,0.0000019609,0.0000019623,0.0000019628, -0.0000019626,0.0000019630,0.0000019657,0.0000019720,0.0000019816, -0.0000019913,0.0000019988,0.0000020017,0.0000020012,0.0000019986, -0.0000019964,0.0000019960,0.0000019975,0.0000020014,0.0000020073, -0.0000020142,0.0000020207,0.0000020257,0.0000020294,0.0000020321, -0.0000020347,0.0000020372,0.0000020395,0.0000020415,0.0000020434, -0.0000020457,0.0000020487,0.0000020525,0.0000020570,0.0000020619, -0.0000020667,0.0000020714,0.0000020759,0.0000020801,0.0000020842, -0.0000020882,0.0000020920,0.0000020952,0.0000020978,0.0000020998, -0.0000021014,0.0000021028,0.0000021039,0.0000021042,0.0000021035, -0.0000021020,0.0000021005,0.0000020993,0.0000020980,0.0000020961, -0.0000020938,0.0000020911,0.0000020876,0.0000020836,0.0000020795, -0.0000020756,0.0000020725,0.0000020703,0.0000020682,0.0000020661, -0.0000020639,0.0000020611,0.0000020569,0.0000020512,0.0000020447, -0.0000020375,0.0000020305,0.0000020246,0.0000020197,0.0000020158, -0.0000020131,0.0000020115,0.0000020110,0.0000020111,0.0000020119, -0.0000020127,0.0000020133,0.0000020141,0.0000020152,0.0000020161, -0.0000020165,0.0000020161,0.0000020147,0.0000020122,0.0000020088, -0.0000020054,0.0000020025,0.0000020005,0.0000019998,0.0000020005, -0.0000020018,0.0000020034,0.0000020046,0.0000020054,0.0000020051, -0.0000020038,0.0000020021,0.0000020008,0.0000019998,0.0000019987, -0.0000019969,0.0000019931,0.0000019871,0.0000019799,0.0000019736, -0.0000019695,0.0000019677,0.0000019673,0.0000019676,0.0000019685, -0.0000019697,0.0000019706,0.0000019708,0.0000019704,0.0000019694, -0.0000019681,0.0000019666,0.0000019648,0.0000019625,0.0000019597, -0.0000019567,0.0000019534,0.0000019498,0.0000019462,0.0000019427, -0.0000019395,0.0000019364,0.0000019333,0.0000019301,0.0000019271, -0.0000019247,0.0000019226,0.0000019206,0.0000019188,0.0000019170, -0.0000019153,0.0000019137,0.0000019123,0.0000019114,0.0000019107, -0.0000019104,0.0000019101,0.0000019099,0.0000019091,0.0000019081, -0.0000019071,0.0000019065,0.0000019065,0.0000019070,0.0000019084, -0.0000019109,0.0000019143,0.0000019187,0.0000019243,0.0000019312, -0.0000019389,0.0000019467,0.0000019541,0.0000019605,0.0000019655, -0.0000019688,0.0000019704,0.0000019705,0.0000019702,0.0000019704, -0.0000019720,0.0000019747,0.0000019783,0.0000019826,0.0000019873, -0.0000019919,0.0000019959,0.0000019992,0.0000020017,0.0000020035, -0.0000020049,0.0000020061,0.0000020066,0.0000020064,0.0000020052, -0.0000020035,0.0000020015,0.0000019994,0.0000019973,0.0000019955, -0.0000019941,0.0000019939,0.0000019946,0.0000019958,0.0000019972, -0.0000019988,0.0000020000,0.0000020007,0.0000020009,0.0000020004, -0.0000019989,0.0000019967,0.0000019941,0.0000019909,0.0000019879, -0.0000019861,0.0000019855,0.0000019860,0.0000019874,0.0000019888, -0.0000019895,0.0000019894,0.0000019889,0.0000019883,0.0000019866, -0.0000019835,0.0000019787,0.0000019722,0.0000019647,0.0000019575, -0.0000019513,0.0000019470,0.0000019441,0.0000019437,0.0000019448, -0.0000019473,0.0000019510,0.0000019556,0.0000019590,0.0000019590, -0.0000019564,0.0000019530,0.0000019515,0.0000019525,0.0000019554, -0.0000019584,0.0000019597,0.0000019583,0.0000019551,0.0000019487, -0.0000019408,0.0000019336,0.0000019285,0.0000019258,0.0000019242, -0.0000019220,0.0000019188,0.0000019156,0.0000019132,0.0000019119, -0.0000019123,0.0000019140,0.0000019155,0.0000019158,0.0000019147, -0.0000019143,0.0000019167,0.0000019213,0.0000019254,0.0000019271, -0.0000019268,0.0000019257,0.0000019232,0.0000019160,0.0000019061, -0.0000018985,0.0000018931,0.0000018874,0.0000018830,0.0000018810, -0.0000018794,0.0000018771,0.0000018746,0.0000018721,0.0000018697, -0.0000018684,0.0000018678,0.0000018674,0.0000018668,0.0000018662, -0.0000018660,0.0000018660,0.0000018662,0.0000018665,0.0000018663, -0.0000018654,0.0000018643,0.0000018637,0.0000018640,0.0000018647, -0.0000018666,0.0000018696,0.0000018739,0.0000018803,0.0000018890, -0.0000018988,0.0000019082,0.0000019166,0.0000019238,0.0000019298, -0.0000019347,0.0000019384,0.0000019410,0.0000019428,0.0000019439, -0.0000019443,0.0000019442,0.0000019438,0.0000019429,0.0000019414, -0.0000019385,0.0000019335,0.0000019266,0.0000019187,0.0000019110, -0.0000019028,0.0000018937,0.0000018853,0.0000018777,0.0000018709, -0.0000018656,0.0000018615,0.0000018583,0.0000018559,0.0000018537, -0.0000018523,0.0000018518,0.0000018519,0.0000018519,0.0000018518, -0.0000018507,0.0000018496,0.0000018489,0.0000018479,0.0000018461, -0.0000018434,0.0000018399,0.0000018361,0.0000018328,0.0000018307, -0.0000018290,0.0000018282,0.0000018280,0.0000018279,0.0000018273, -0.0000018259,0.0000018244,0.0000018230,0.0000018231,0.0000018248, -0.0000018278,0.0000018298,0.0000018297,0.0000018292,0.0000018297, -0.0000018300,0.0000018299,0.0000018304,0.0000018300,0.0000018287, -0.0000018264,0.0000018241,0.0000018224,0.0000018216,0.0000018219, -0.0000018232,0.0000018249,0.0000018270,0.0000018288,0.0000018298, -0.0000018308,0.0000018320,0.0000018332,0.0000018341,0.0000018347, -0.0000018348,0.0000018341,0.0000018312,0.0000018248,0.0000018148, -0.0000018027,0.0000017899,0.0000017768,0.0000017649,0.0000017563, -0.0000017518,0.0000017501,0.0000017501,0.0000017523,0.0000017566, -0.0000017602,0.0000017621,0.0000017631,0.0000017643,0.0000017657, -0.0000017670,0.0000017678,0.0000017680,0.0000017677,0.0000017676, -0.0000017683,0.0000017699,0.0000017712,0.0000017716,0.0000017701, -0.0000017675,0.0000017656,0.0000017654,0.0000017672,0.0000017714, -0.0000017780,0.0000017868,0.0000017972,0.0000018077,0.0000018170, -0.0000018244,0.0000018295,0.0000018328,0.0000018355,0.0000018382, -0.0000018410,0.0000018437,0.0000018463,0.0000018489,0.0000018513, -0.0000018536,0.0000018559,0.0000018580,0.0000018599,0.0000018618, -0.0000018637,0.0000018650,0.0000018657,0.0000018656,0.0000018647, -0.0000018629,0.0000018602,0.0000018567,0.0000018524,0.0000018477, -0.0000018426,0.0000018373,0.0000018318,0.0000018263,0.0000018207, -0.0000018155,0.0000018109,0.0000018072,0.0000018041,0.0000018010, -0.0000017973,0.0000017931,0.0000017882,0.0000017840,0.0000017810, -0.0000017796,0.0000017810,0.0000017835,0.0000017877,0.0000017923, -0.0000017959,0.0000017982,0.0000017990,0.0000017982,0.0000017963, -0.0000017935,0.0000017899,0.0000017858,0.0000017815,0.0000017778, -0.0000017746,0.0000017717,0.0000017688,0.0000017669,0.0000017654, -0.0000017654,0.0000017665,0.0000017676,0.0000017687,0.0000017703, -0.0000017732,0.0000017785,0.0000017868,0.0000017978,0.0000018106, -0.0000018238,0.0000018362,0.0000018477,0.0000018581,0.0000018675, -0.0000018758,0.0000018830,0.0000018887,0.0000018924,0.0000018945, -0.0000018944,0.0000018930,0.0000018904,0.0000018876,0.0000018863, -0.0000018860,0.0000018883,0.0000018932,0.0000018993,0.0000019052, -0.0000019092,0.0000019119,0.0000019119,0.0000019126,0.0000019133, -0.0000019146,0.0000019155,0.0000019156,0.0000019144,0.0000019122, -0.0000019100,0.0000019083,0.0000019078,0.0000019076,0.0000019075, -0.0000019074,0.0000019072,0.0000019073,0.0000019082,0.0000019103, -0.0000019132,0.0000019174,0.0000019228,0.0000019285,0.0000019332, -0.0000019370,0.0000019398,0.0000019411,0.0000019421,0.0000019426, -0.0000019430,0.0000019430,0.0000019431,0.0000019432,0.0000019432, -0.0000019430,0.0000019425,0.0000019420,0.0000019412,0.0000019401, -0.0000019388,0.0000019370,0.0000019348,0.0000019323,0.0000019297, -0.0000019269,0.0000019240,0.0000019210,0.0000019181,0.0000019151, -0.0000019122,0.0000019092,0.0000019071,0.0000019055,0.0000019047, -0.0000019044,0.0000019041,0.0000019038,0.0000019034,0.0000019031, -0.0000019029,0.0000019028,0.0000019028,0.0000019029,0.0000019030, -0.0000019028,0.0000019025,0.0000019019,0.0000019010,0.0000019001, -0.0000018989,0.0000018973,0.0000018953,0.0000018932,0.0000018910, -0.0000018891,0.0000018879,0.0000018873,0.0000018872,0.0000018873, -0.0000018875,0.0000018876,0.0000018876,0.0000018874,0.0000018874, -0.0000018875,0.0000018875,0.0000018873,0.0000018870,0.0000018868, -0.0000018865,0.0000018862,0.0000018858,0.0000018856,0.0000018853, -0.0000018849,0.0000018844,0.0000018839,0.0000018838,0.0000018838, -0.0000018837,0.0000018833,0.0000018826,0.0000018820,0.0000018817, -0.0000018814,0.0000018808,0.0000018794,0.0000018773,0.0000018749, -0.0000018724,0.0000018698,0.0000018674,0.0000018652,0.0000018633, -0.0000018618,0.0000018607,0.0000018602,0.0000018605,0.0000018610, -0.0000018617,0.0000018627,0.0000018640,0.0000018655,0.0000018670, -0.0000018622,0.0000018640,0.0000018655,0.0000018671,0.0000018688, -0.0000018705,0.0000018722,0.0000018742,0.0000018768,0.0000018802, -0.0000018846,0.0000018902,0.0000018967,0.0000019031,0.0000019071, -0.0000019083,0.0000019064,0.0000019019,0.0000018956,0.0000018911, -0.0000018897,0.0000018904,0.0000018911,0.0000018908,0.0000018901, -0.0000018905,0.0000018925,0.0000018949,0.0000018959,0.0000018961, -0.0000018967,0.0000018992,0.0000019038,0.0000019092,0.0000019137, -0.0000019170,0.0000019195,0.0000019216,0.0000019240,0.0000019266, -0.0000019294,0.0000019325,0.0000019355,0.0000019386,0.0000019419, -0.0000019454,0.0000019486,0.0000019512,0.0000019533,0.0000019546, -0.0000019552,0.0000019549,0.0000019538,0.0000019522,0.0000019503, -0.0000019480,0.0000019452,0.0000019423,0.0000019395,0.0000019372, -0.0000019355,0.0000019343,0.0000019338,0.0000019334,0.0000019326, -0.0000019316,0.0000019304,0.0000019293,0.0000019282,0.0000019269, -0.0000019256,0.0000019242,0.0000019228,0.0000019214,0.0000019196, -0.0000019175,0.0000019152,0.0000019130,0.0000019110,0.0000019091, -0.0000019070,0.0000019048,0.0000019023,0.0000018999,0.0000018975, -0.0000018952,0.0000018924,0.0000018887,0.0000018841,0.0000018789, -0.0000018737,0.0000018692,0.0000018665,0.0000018658,0.0000018674, -0.0000018713,0.0000018764,0.0000018816,0.0000018855,0.0000018875, -0.0000018879,0.0000018871,0.0000018848,0.0000018814,0.0000018780, -0.0000018750,0.0000018725,0.0000018706,0.0000018692,0.0000018683, -0.0000018674,0.0000018670,0.0000018679,0.0000018703,0.0000018742, -0.0000018801,0.0000018880,0.0000018970,0.0000019056,0.0000019124, -0.0000019162,0.0000019164,0.0000019147,0.0000019120,0.0000019087, -0.0000019047,0.0000018997,0.0000018931,0.0000018853,0.0000018785, -0.0000018741,0.0000018719,0.0000018731,0.0000018750,0.0000018780, -0.0000018808,0.0000018823,0.0000018830,0.0000018835,0.0000018835, -0.0000018835,0.0000018841,0.0000018849,0.0000018854,0.0000018852, -0.0000018846,0.0000018839,0.0000018836,0.0000018843,0.0000018858, -0.0000018879,0.0000018904,0.0000018932,0.0000018965,0.0000019000, -0.0000019030,0.0000019054,0.0000019069,0.0000019077,0.0000019078, -0.0000019076,0.0000019077,0.0000019073,0.0000019064,0.0000019054, -0.0000019043,0.0000019032,0.0000019024,0.0000019020,0.0000019020, -0.0000019023,0.0000019034,0.0000019052,0.0000019074,0.0000019095, -0.0000019117,0.0000019138,0.0000019156,0.0000019171,0.0000019187, -0.0000019206,0.0000019227,0.0000019248,0.0000019266,0.0000019288, -0.0000019311,0.0000019333,0.0000019354,0.0000019375,0.0000019398, -0.0000019424,0.0000019452,0.0000019482,0.0000019514,0.0000019549, -0.0000019590,0.0000019638,0.0000019689,0.0000019742,0.0000019796, -0.0000019847,0.0000019896,0.0000019941,0.0000019979,0.0000020010, -0.0000020033,0.0000020051,0.0000020064,0.0000020078,0.0000020093, -0.0000020108,0.0000020123,0.0000020137,0.0000020152,0.0000020168, -0.0000020184,0.0000020200,0.0000020218,0.0000020238,0.0000020259, -0.0000020280,0.0000020302,0.0000020326,0.0000020350,0.0000020370, -0.0000020381,0.0000020387,0.0000020385,0.0000020372,0.0000020359, -0.0000020365,0.0000020411,0.0000020483,0.0000020542,0.0000020566, -0.0000020575,0.0000020606,0.0000020647,0.0000020667,0.0000020665, -0.0000020647,0.0000020618,0.0000020581,0.0000020537,0.0000020497, -0.0000020473,0.0000020469,0.0000020474,0.0000020488,0.0000020507, -0.0000020532,0.0000020563,0.0000020598,0.0000020630,0.0000020658, -0.0000020684,0.0000020704,0.0000020718,0.0000020722,0.0000020719, -0.0000020709,0.0000020696,0.0000020679,0.0000020657,0.0000020629, -0.0000020599,0.0000020572,0.0000020547,0.0000020526,0.0000020507, -0.0000020488,0.0000020469,0.0000020449,0.0000020426,0.0000020402, -0.0000020380,0.0000020363,0.0000020357,0.0000020360,0.0000020370, -0.0000020393,0.0000020424,0.0000020460,0.0000020500,0.0000020541, -0.0000020572,0.0000020589,0.0000020591,0.0000020579,0.0000020555, -0.0000020522,0.0000020487,0.0000020454,0.0000020429,0.0000020417, -0.0000020414,0.0000020411,0.0000020404,0.0000020392,0.0000020380, -0.0000020372,0.0000020369,0.0000020370,0.0000020372,0.0000020376, -0.0000020378,0.0000020380,0.0000020384,0.0000020391,0.0000020403, -0.0000020421,0.0000020449,0.0000020482,0.0000020504,0.0000020503, -0.0000020488,0.0000020482,0.0000020509,0.0000020556,0.0000020556, -0.0000020457,0.0000020301,0.0000020197,0.0000020181,0.0000020206, -0.0000020226,0.0000020232,0.0000020232,0.0000020220,0.0000020174, -0.0000020099,0.0000020030,0.0000020004,0.0000020049,0.0000020186, -0.0000020302,0.0000020322,0.0000020312,0.0000020290,0.0000020196, -0.0000020034,0.0000019958,0.0000020067,0.0000020326,0.0000020563, -0.0000020663,0.0000020688,0.0000020727,0.0000020771,0.0000020808, -0.0000020876,0.0000020990,0.0000021108,0.0000021167,0.0000021177, -0.0000021194,0.0000021264,0.0000021365,0.0000021443,0.0000021473, -0.0000021477,0.0000021487,0.0000021503,0.0000021512,0.0000021509, -0.0000021500,0.0000021486,0.0000021469,0.0000021454,0.0000021441, -0.0000021425,0.0000021412,0.0000021400,0.0000021384,0.0000021362, -0.0000021338,0.0000021315,0.0000021298,0.0000021295,0.0000021304, -0.0000021321,0.0000021340,0.0000021355,0.0000021365,0.0000021370, -0.0000021370,0.0000021360,0.0000021342,0.0000021319,0.0000021294, -0.0000021268,0.0000021249,0.0000021237,0.0000021230,0.0000021223, -0.0000021214,0.0000021203,0.0000021193,0.0000021186,0.0000021180, -0.0000021170,0.0000021159,0.0000021151,0.0000021150,0.0000021155, -0.0000021163,0.0000021174,0.0000021184,0.0000021193,0.0000021198, -0.0000021201,0.0000021202,0.0000021198,0.0000021191,0.0000021181, -0.0000021172,0.0000021161,0.0000021148,0.0000021134,0.0000021119, -0.0000021102,0.0000021084,0.0000021066,0.0000021049,0.0000021032, -0.0000021016,0.0000021003,0.0000020994,0.0000020992,0.0000020996, -0.0000021003,0.0000021008,0.0000021013,0.0000021019,0.0000021028, -0.0000021039,0.0000021050,0.0000021065,0.0000021085,0.0000021108, -0.0000021128,0.0000021145,0.0000021160,0.0000021171,0.0000021177, -0.0000021177,0.0000021173,0.0000021162,0.0000021143,0.0000021117, -0.0000021091,0.0000021071,0.0000021056,0.0000021043,0.0000021023, -0.0000020998,0.0000020967,0.0000020934,0.0000020902,0.0000020874, -0.0000020849,0.0000020826,0.0000020805,0.0000020792,0.0000020784, -0.0000020783,0.0000020783,0.0000020790,0.0000020798,0.0000020803, -0.0000020817,0.0000020834,0.0000020851,0.0000020870,0.0000020891, -0.0000020909,0.0000020921,0.0000020929,0.0000020935,0.0000020936, -0.0000020929,0.0000020913,0.0000020889,0.0000020857,0.0000020822, -0.0000020786,0.0000020754,0.0000020728,0.0000020706,0.0000020685, -0.0000020664,0.0000020640,0.0000020617,0.0000020600,0.0000020593, -0.0000020583,0.0000020571,0.0000020559,0.0000020547,0.0000020539, -0.0000020540,0.0000020550,0.0000020560,0.0000020568,0.0000020576, -0.0000020584,0.0000020595,0.0000020606,0.0000020611,0.0000020619, -0.0000020616,0.0000020604,0.0000020586,0.0000020570,0.0000020560, -0.0000020559,0.0000020559,0.0000020562,0.0000020565,0.0000020565, -0.0000020559,0.0000020550,0.0000020546,0.0000020550,0.0000020554, -0.0000020562,0.0000020580,0.0000020605,0.0000020632,0.0000020661, -0.0000020689,0.0000020720,0.0000020754,0.0000020785,0.0000020810, -0.0000020829,0.0000020840,0.0000020847,0.0000020853,0.0000020857, -0.0000020857,0.0000020852,0.0000020844,0.0000020837,0.0000020834, -0.0000020834,0.0000020832,0.0000020826,0.0000020818,0.0000020812, -0.0000020810,0.0000020812,0.0000020816,0.0000020823,0.0000020828, -0.0000020833,0.0000020834,0.0000020831,0.0000020828,0.0000020827, -0.0000020828,0.0000020829,0.0000020829,0.0000020826,0.0000020820, -0.0000020816,0.0000020816,0.0000020822,0.0000020831,0.0000020839, -0.0000020845,0.0000020851,0.0000020852,0.0000020841,0.0000020828, -0.0000020813,0.0000020793,0.0000020772,0.0000020750,0.0000020730, -0.0000020710,0.0000020693,0.0000020680,0.0000020669,0.0000020657, -0.0000020644,0.0000020633,0.0000020626,0.0000020621,0.0000020615, -0.0000020607,0.0000020597,0.0000020589,0.0000020582,0.0000020576, -0.0000020569,0.0000020559,0.0000020549,0.0000020541,0.0000020542, -0.0000020542,0.0000020544,0.0000020547,0.0000020555,0.0000020569, -0.0000020592,0.0000020629,0.0000020682,0.0000020752,0.0000020830, -0.0000020907,0.0000020973,0.0000021023,0.0000021062,0.0000021095, -0.0000021125,0.0000021151,0.0000021171,0.0000021184,0.0000021192, -0.0000021199,0.0000021210,0.0000021225,0.0000021246,0.0000021266, -0.0000021282,0.0000021290,0.0000021290,0.0000021287,0.0000021280, -0.0000021271,0.0000021263,0.0000021260,0.0000021260,0.0000021256, -0.0000021244,0.0000021220,0.0000021183,0.0000021136,0.0000021083, -0.0000021032,0.0000020988,0.0000020952,0.0000020928,0.0000020918, -0.0000020919,0.0000020927,0.0000020936,0.0000020942,0.0000020943, -0.0000020938,0.0000020922,0.0000020898,0.0000020874,0.0000020851, -0.0000020831,0.0000020815,0.0000020799,0.0000020783,0.0000020772, -0.0000020768,0.0000020766,0.0000020762,0.0000020759,0.0000020760, -0.0000020768,0.0000020780,0.0000020787,0.0000020788,0.0000020780, -0.0000020762,0.0000020741,0.0000020720,0.0000020697,0.0000020673, -0.0000020648,0.0000020624,0.0000020597,0.0000020574,0.0000020555, -0.0000020539,0.0000020530,0.0000020526,0.0000020525,0.0000020523, -0.0000020521,0.0000020515,0.0000020501,0.0000020476,0.0000020441, -0.0000020400,0.0000020357,0.0000020310,0.0000020260,0.0000020216, -0.0000020178,0.0000020147,0.0000020120,0.0000020094,0.0000020069, -0.0000020044,0.0000020010,0.0000019970,0.0000019936,0.0000019918, -0.0000019918,0.0000019930,0.0000019949,0.0000019974,0.0000020003, -0.0000020031,0.0000020051,0.0000020064,0.0000020071,0.0000020079, -0.0000020089,0.0000020101,0.0000020114,0.0000020129,0.0000020145, -0.0000020161,0.0000020172,0.0000020179,0.0000020181,0.0000020182, -0.0000020184,0.0000020190,0.0000020195,0.0000020199,0.0000020205, -0.0000020211,0.0000020221,0.0000020235,0.0000020248,0.0000020255, -0.0000020253,0.0000020247,0.0000020242,0.0000020243,0.0000020240, -0.0000020232,0.0000020225,0.0000020227,0.0000020239,0.0000020261, -0.0000020287,0.0000020308,0.0000020320,0.0000020325,0.0000020324, -0.0000020318,0.0000020312,0.0000020306,0.0000020300,0.0000020292, -0.0000020278,0.0000020260,0.0000020240,0.0000020223,0.0000020211, -0.0000020207,0.0000020215,0.0000020234,0.0000020259,0.0000020287, -0.0000020316,0.0000020342,0.0000020362,0.0000020379,0.0000020392, -0.0000020402,0.0000020403,0.0000020404,0.0000020395,0.0000020375, -0.0000020350,0.0000020325,0.0000020304,0.0000020292,0.0000020286, -0.0000020279,0.0000020267,0.0000020255,0.0000020243,0.0000020229, -0.0000020209,0.0000020179,0.0000020143,0.0000020101,0.0000020051, -0.0000019989,0.0000019920,0.0000019850,0.0000019783,0.0000019729, -0.0000019696,0.0000019682,0.0000019687,0.0000019699,0.0000019705, -0.0000019708,0.0000019699,0.0000019681,0.0000019654,0.0000019620, -0.0000019581,0.0000019541,0.0000019515,0.0000019497,0.0000019488, -0.0000019498,0.0000019501,0.0000019516,0.0000019531,0.0000019551, -0.0000019576,0.0000019598,0.0000019621,0.0000019630,0.0000019637, -0.0000019632,0.0000019622,0.0000019602,0.0000019580,0.0000019560, -0.0000019542,0.0000019526,0.0000019521,0.0000019520,0.0000019529, -0.0000019548,0.0000019569,0.0000019587,0.0000019600,0.0000019607, -0.0000019615,0.0000019638,0.0000019688,0.0000019767,0.0000019865, -0.0000019955,0.0000020011,0.0000020023,0.0000020010,0.0000019994, -0.0000019986,0.0000019996,0.0000020026,0.0000020073,0.0000020130, -0.0000020184,0.0000020224,0.0000020248,0.0000020264,0.0000020279, -0.0000020297,0.0000020319,0.0000020344,0.0000020374,0.0000020408, -0.0000020451,0.0000020505,0.0000020563,0.0000020620,0.0000020673, -0.0000020723,0.0000020766,0.0000020808,0.0000020848,0.0000020883, -0.0000020909,0.0000020927,0.0000020939,0.0000020947,0.0000020953, -0.0000020954,0.0000020947,0.0000020929,0.0000020911,0.0000020898, -0.0000020890,0.0000020881,0.0000020867,0.0000020845,0.0000020816, -0.0000020781,0.0000020743,0.0000020703,0.0000020667,0.0000020640, -0.0000020620,0.0000020599,0.0000020574,0.0000020546,0.0000020510, -0.0000020463,0.0000020404,0.0000020336,0.0000020264,0.0000020200, -0.0000020152,0.0000020117,0.0000020095,0.0000020087,0.0000020090, -0.0000020099,0.0000020111,0.0000020122,0.0000020125,0.0000020120, -0.0000020108,0.0000020095,0.0000020081,0.0000020066,0.0000020045, -0.0000020020,0.0000019995,0.0000019975,0.0000019967,0.0000019970, -0.0000019988,0.0000020012,0.0000020043,0.0000020067,0.0000020079, -0.0000020080,0.0000020070,0.0000020051,0.0000020031,0.0000020018, -0.0000020008,0.0000019995,0.0000019969,0.0000019922,0.0000019857, -0.0000019787,0.0000019732,0.0000019701,0.0000019691,0.0000019693, -0.0000019701,0.0000019711,0.0000019723,0.0000019732,0.0000019733, -0.0000019727,0.0000019718,0.0000019707,0.0000019693,0.0000019677, -0.0000019663,0.0000019648,0.0000019626,0.0000019597,0.0000019564, -0.0000019532,0.0000019497,0.0000019463,0.0000019432,0.0000019401, -0.0000019367,0.0000019330,0.0000019294,0.0000019264,0.0000019239, -0.0000019218,0.0000019199,0.0000019183,0.0000019168,0.0000019153, -0.0000019137,0.0000019121,0.0000019108,0.0000019099,0.0000019092, -0.0000019084,0.0000019075,0.0000019063,0.0000019049,0.0000019035, -0.0000019022,0.0000019010,0.0000019005,0.0000019008,0.0000019019, -0.0000019041,0.0000019076,0.0000019124,0.0000019189,0.0000019266, -0.0000019351,0.0000019437,0.0000019519,0.0000019588,0.0000019640, -0.0000019668,0.0000019677,0.0000019680,0.0000019679,0.0000019683, -0.0000019697,0.0000019725,0.0000019769,0.0000019824,0.0000019879, -0.0000019930,0.0000019970,0.0000020000,0.0000020020,0.0000020034, -0.0000020044,0.0000020047,0.0000020041,0.0000020027,0.0000020006, -0.0000019980,0.0000019954,0.0000019932,0.0000019920,0.0000019921, -0.0000019931,0.0000019946,0.0000019964,0.0000019981,0.0000019992, -0.0000019998,0.0000019998,0.0000019989,0.0000019970,0.0000019945, -0.0000019910,0.0000019874,0.0000019850,0.0000019828,0.0000019820, -0.0000019818,0.0000019826,0.0000019838,0.0000019847,0.0000019852, -0.0000019852,0.0000019851,0.0000019840,0.0000019813,0.0000019768, -0.0000019704,0.0000019629,0.0000019554,0.0000019488,0.0000019439, -0.0000019411,0.0000019404,0.0000019414,0.0000019439,0.0000019478, -0.0000019524,0.0000019558,0.0000019562,0.0000019543,0.0000019517, -0.0000019507,0.0000019518,0.0000019542,0.0000019566,0.0000019576, -0.0000019564,0.0000019533,0.0000019472,0.0000019400,0.0000019337, -0.0000019290,0.0000019259,0.0000019237,0.0000019212,0.0000019176, -0.0000019138,0.0000019113,0.0000019098,0.0000019097,0.0000019113, -0.0000019132,0.0000019140,0.0000019134,0.0000019132,0.0000019149, -0.0000019186,0.0000019226,0.0000019247,0.0000019249,0.0000019242, -0.0000019214,0.0000019139,0.0000019048,0.0000018978,0.0000018917, -0.0000018854,0.0000018812,0.0000018789,0.0000018760,0.0000018725, -0.0000018692,0.0000018664,0.0000018652,0.0000018653,0.0000018657, -0.0000018658,0.0000018659,0.0000018662,0.0000018666,0.0000018672, -0.0000018679,0.0000018683,0.0000018681,0.0000018671,0.0000018659, -0.0000018649,0.0000018644,0.0000018648,0.0000018655,0.0000018671, -0.0000018703,0.0000018757,0.0000018834,0.0000018924,0.0000019012, -0.0000019090,0.0000019154,0.0000019209,0.0000019258,0.0000019298, -0.0000019328,0.0000019347,0.0000019360,0.0000019368,0.0000019370, -0.0000019364,0.0000019348,0.0000019317,0.0000019266,0.0000019200, -0.0000019127,0.0000019049,0.0000018956,0.0000018859,0.0000018773, -0.0000018692,0.0000018619,0.0000018563,0.0000018521,0.0000018489, -0.0000018465,0.0000018444,0.0000018425,0.0000018414,0.0000018411, -0.0000018410,0.0000018408,0.0000018402,0.0000018398,0.0000018397, -0.0000018393,0.0000018384,0.0000018369,0.0000018342,0.0000018307, -0.0000018278,0.0000018260,0.0000018250,0.0000018249,0.0000018258, -0.0000018267,0.0000018265,0.0000018253,0.0000018234,0.0000018205, -0.0000018183,0.0000018179,0.0000018204,0.0000018244,0.0000018271, -0.0000018275,0.0000018273,0.0000018281,0.0000018285,0.0000018292, -0.0000018297,0.0000018293,0.0000018281,0.0000018264,0.0000018247, -0.0000018235,0.0000018233,0.0000018236,0.0000018244,0.0000018260, -0.0000018278,0.0000018291,0.0000018307,0.0000018327,0.0000018348, -0.0000018365,0.0000018374,0.0000018374,0.0000018358,0.0000018312, -0.0000018228,0.0000018118,0.0000017994,0.0000017856,0.0000017721, -0.0000017618,0.0000017560,0.0000017533,0.0000017527,0.0000017543, -0.0000017585,0.0000017628,0.0000017646,0.0000017651,0.0000017660, -0.0000017676,0.0000017690,0.0000017696,0.0000017698,0.0000017700, -0.0000017709,0.0000017728,0.0000017750,0.0000017762,0.0000017758, -0.0000017741,0.0000017716,0.0000017699,0.0000017701,0.0000017730, -0.0000017791,0.0000017883,0.0000017996,0.0000018112,0.0000018211, -0.0000018286,0.0000018335,0.0000018371,0.0000018408,0.0000018450, -0.0000018494,0.0000018537,0.0000018574,0.0000018603,0.0000018631, -0.0000018664,0.0000018705,0.0000018755,0.0000018806,0.0000018853, -0.0000018893,0.0000018923,0.0000018946,0.0000018962,0.0000018973, -0.0000018975,0.0000018973,0.0000018961,0.0000018943,0.0000018914, -0.0000018873,0.0000018822,0.0000018761,0.0000018692,0.0000018616, -0.0000018532,0.0000018443,0.0000018351,0.0000018259,0.0000018175, -0.0000018103,0.0000018057,0.0000018035,0.0000018026,0.0000018028, -0.0000018012,0.0000017977,0.0000017929,0.0000017878,0.0000017840, -0.0000017823,0.0000017834,0.0000017865,0.0000017898,0.0000017937, -0.0000017964,0.0000017980,0.0000017984,0.0000017974,0.0000017947, -0.0000017909,0.0000017863,0.0000017816,0.0000017773,0.0000017738, -0.0000017706,0.0000017672,0.0000017652,0.0000017641,0.0000017646, -0.0000017656,0.0000017667,0.0000017677,0.0000017692,0.0000017723, -0.0000017777,0.0000017855,0.0000017956,0.0000018072,0.0000018193, -0.0000018317,0.0000018437,0.0000018551,0.0000018655,0.0000018745, -0.0000018819,0.0000018874,0.0000018911,0.0000018924,0.0000018918, -0.0000018907,0.0000018880,0.0000018852,0.0000018840,0.0000018849, -0.0000018881,0.0000018934,0.0000019000,0.0000019062,0.0000019108, -0.0000019126,0.0000019133,0.0000019143,0.0000019152,0.0000019159, -0.0000019158,0.0000019147,0.0000019126,0.0000019102,0.0000019079, -0.0000019063,0.0000019051,0.0000019044,0.0000019039,0.0000019037, -0.0000019041,0.0000019050,0.0000019068,0.0000019099,0.0000019142, -0.0000019193,0.0000019250,0.0000019310,0.0000019357,0.0000019392, -0.0000019416,0.0000019419,0.0000019419,0.0000019413,0.0000019406, -0.0000019402,0.0000019399,0.0000019396,0.0000019391,0.0000019385, -0.0000019380,0.0000019374,0.0000019366,0.0000019353,0.0000019335, -0.0000019315,0.0000019291,0.0000019265,0.0000019237,0.0000019208, -0.0000019178,0.0000019148,0.0000019118,0.0000019090,0.0000019067, -0.0000019052,0.0000019042,0.0000019036,0.0000019031,0.0000019025, -0.0000019019,0.0000019014,0.0000019010,0.0000019005,0.0000019001, -0.0000018997,0.0000018992,0.0000018988,0.0000018982,0.0000018973, -0.0000018963,0.0000018953,0.0000018941,0.0000018923,0.0000018903, -0.0000018883,0.0000018863,0.0000018849,0.0000018842,0.0000018842, -0.0000018844,0.0000018848,0.0000018851,0.0000018851,0.0000018849, -0.0000018845,0.0000018840,0.0000018838,0.0000018835,0.0000018829, -0.0000018823,0.0000018817,0.0000018810,0.0000018805,0.0000018801, -0.0000018797,0.0000018792,0.0000018785,0.0000018775,0.0000018766, -0.0000018761,0.0000018755,0.0000018747,0.0000018736,0.0000018724, -0.0000018716,0.0000018713,0.0000018709,0.0000018704,0.0000018693, -0.0000018677,0.0000018659,0.0000018641,0.0000018624,0.0000018609, -0.0000018596,0.0000018587,0.0000018578,0.0000018571,0.0000018567, -0.0000018566,0.0000018567,0.0000018571,0.0000018578,0.0000018590, -0.0000018605,0.0000018561,0.0000018575,0.0000018593,0.0000018613, -0.0000018632,0.0000018652,0.0000018671,0.0000018686,0.0000018700, -0.0000018716,0.0000018738,0.0000018772,0.0000018820,0.0000018884, -0.0000018955,0.0000019019,0.0000019057,0.0000019064,0.0000019039, -0.0000018987,0.0000018933,0.0000018904,0.0000018906,0.0000018919, -0.0000018923,0.0000018916,0.0000018912,0.0000018924,0.0000018946, -0.0000018962,0.0000018961,0.0000018958,0.0000018964,0.0000018992, -0.0000019037,0.0000019090,0.0000019138,0.0000019177,0.0000019210, -0.0000019239,0.0000019269,0.0000019300,0.0000019326,0.0000019348, -0.0000019370,0.0000019391,0.0000019412,0.0000019431,0.0000019448, -0.0000019466,0.0000019482,0.0000019495,0.0000019504,0.0000019506, -0.0000019499,0.0000019480,0.0000019455,0.0000019426,0.0000019395, -0.0000019368,0.0000019347,0.0000019337,0.0000019337,0.0000019340, -0.0000019341,0.0000019337,0.0000019330,0.0000019324,0.0000019318, -0.0000019312,0.0000019304,0.0000019294,0.0000019283,0.0000019274, -0.0000019265,0.0000019253,0.0000019237,0.0000019218,0.0000019199, -0.0000019179,0.0000019155,0.0000019123,0.0000019086,0.0000019048, -0.0000019007,0.0000018968,0.0000018935,0.0000018906,0.0000018879, -0.0000018851,0.0000018817,0.0000018775,0.0000018727,0.0000018680, -0.0000018661,0.0000018663,0.0000018690,0.0000018735,0.0000018789, -0.0000018838,0.0000018874,0.0000018889,0.0000018889,0.0000018874, -0.0000018846,0.0000018809,0.0000018771,0.0000018737,0.0000018711, -0.0000018692,0.0000018679,0.0000018665,0.0000018659,0.0000018663, -0.0000018677,0.0000018706,0.0000018749,0.0000018806,0.0000018879, -0.0000018961,0.0000019038,0.0000019094,0.0000019120,0.0000019110, -0.0000019089,0.0000019063,0.0000019032,0.0000018997,0.0000018954, -0.0000018909,0.0000018861,0.0000018815,0.0000018780,0.0000018761, -0.0000018775,0.0000018788,0.0000018805,0.0000018817,0.0000018822, -0.0000018821,0.0000018820,0.0000018825,0.0000018833,0.0000018840, -0.0000018840,0.0000018836,0.0000018831,0.0000018830,0.0000018835, -0.0000018849,0.0000018868,0.0000018892,0.0000018919,0.0000018945, -0.0000018973,0.0000018998,0.0000019018,0.0000019030,0.0000019036, -0.0000019032,0.0000019029,0.0000019025,0.0000019018,0.0000019008, -0.0000018996,0.0000018983,0.0000018972,0.0000018965,0.0000018961, -0.0000018961,0.0000018966,0.0000018976,0.0000018992,0.0000019012, -0.0000019033,0.0000019052,0.0000019071,0.0000019089,0.0000019104, -0.0000019120,0.0000019137,0.0000019157,0.0000019177,0.0000019196, -0.0000019215,0.0000019234,0.0000019252,0.0000019269,0.0000019286, -0.0000019304,0.0000019325,0.0000019345,0.0000019364,0.0000019380, -0.0000019399,0.0000019424,0.0000019456,0.0000019491,0.0000019529, -0.0000019573,0.0000019622,0.0000019672,0.0000019723,0.0000019771, -0.0000019817,0.0000019858,0.0000019898,0.0000019936,0.0000019971, -0.0000020003,0.0000020034,0.0000020062,0.0000020089,0.0000020114, -0.0000020138,0.0000020159,0.0000020176,0.0000020191,0.0000020207, -0.0000020222,0.0000020238,0.0000020255,0.0000020275,0.0000020299, -0.0000020325,0.0000020346,0.0000020358,0.0000020358,0.0000020347, -0.0000020330,0.0000020331,0.0000020373,0.0000020443,0.0000020503, -0.0000020526,0.0000020530,0.0000020554,0.0000020597,0.0000020626, -0.0000020630,0.0000020616,0.0000020595,0.0000020570,0.0000020535, -0.0000020496,0.0000020472,0.0000020469,0.0000020474,0.0000020490, -0.0000020514,0.0000020544,0.0000020576,0.0000020610,0.0000020642, -0.0000020672,0.0000020697,0.0000020717,0.0000020729,0.0000020732, -0.0000020727,0.0000020720,0.0000020707,0.0000020690,0.0000020667, -0.0000020641,0.0000020617,0.0000020592,0.0000020569,0.0000020549, -0.0000020532,0.0000020516,0.0000020503,0.0000020490,0.0000020475, -0.0000020457,0.0000020437,0.0000020421,0.0000020411,0.0000020403, -0.0000020401,0.0000020409,0.0000020422,0.0000020441,0.0000020467, -0.0000020496,0.0000020522,0.0000020543,0.0000020555,0.0000020554, -0.0000020540,0.0000020514,0.0000020478,0.0000020441,0.0000020409, -0.0000020386,0.0000020371,0.0000020360,0.0000020349,0.0000020335, -0.0000020324,0.0000020323,0.0000020331,0.0000020346,0.0000020360, -0.0000020369,0.0000020368,0.0000020361,0.0000020351,0.0000020345, -0.0000020349,0.0000020364,0.0000020394,0.0000020436,0.0000020470, -0.0000020476,0.0000020464,0.0000020458,0.0000020490,0.0000020539, -0.0000020538,0.0000020436,0.0000020281,0.0000020188,0.0000020176, -0.0000020198,0.0000020218,0.0000020222,0.0000020220,0.0000020202, -0.0000020152,0.0000020076,0.0000020014,0.0000020003,0.0000020074, -0.0000020220,0.0000020314,0.0000020321,0.0000020307,0.0000020281, -0.0000020173,0.0000020015,0.0000019988,0.0000020130,0.0000020396, -0.0000020611,0.0000020694,0.0000020720,0.0000020759,0.0000020797, -0.0000020832,0.0000020897,0.0000021001,0.0000021106,0.0000021162, -0.0000021176,0.0000021193,0.0000021251,0.0000021341,0.0000021416, -0.0000021448,0.0000021448,0.0000021448,0.0000021454,0.0000021460, -0.0000021460,0.0000021453,0.0000021442,0.0000021432,0.0000021422, -0.0000021412,0.0000021402,0.0000021394,0.0000021381,0.0000021364, -0.0000021344,0.0000021321,0.0000021297,0.0000021282,0.0000021280, -0.0000021285,0.0000021294,0.0000021303,0.0000021310,0.0000021311, -0.0000021310,0.0000021304,0.0000021296,0.0000021283,0.0000021267, -0.0000021252,0.0000021240,0.0000021229,0.0000021215,0.0000021198, -0.0000021178,0.0000021156,0.0000021136,0.0000021120,0.0000021107, -0.0000021096,0.0000021084,0.0000021073,0.0000021063,0.0000021058, -0.0000021062,0.0000021074,0.0000021088,0.0000021102,0.0000021112, -0.0000021118,0.0000021122,0.0000021122,0.0000021120,0.0000021115, -0.0000021106,0.0000021098,0.0000021090,0.0000021082,0.0000021070, -0.0000021055,0.0000021039,0.0000021022,0.0000021008,0.0000020994, -0.0000020980,0.0000020968,0.0000020955,0.0000020945,0.0000020939, -0.0000020936,0.0000020934,0.0000020933,0.0000020933,0.0000020931, -0.0000020930,0.0000020929,0.0000020933,0.0000020942,0.0000020957, -0.0000020973,0.0000020988,0.0000021006,0.0000021026,0.0000021043, -0.0000021057,0.0000021068,0.0000021074,0.0000021073,0.0000021064, -0.0000021050,0.0000021037,0.0000021028,0.0000021022,0.0000021014, -0.0000021002,0.0000020982,0.0000020962,0.0000020944,0.0000020926, -0.0000020905,0.0000020882,0.0000020858,0.0000020837,0.0000020826, -0.0000020819,0.0000020813,0.0000020811,0.0000020810,0.0000020810, -0.0000020811,0.0000020817,0.0000020826,0.0000020839,0.0000020856, -0.0000020870,0.0000020879,0.0000020888,0.0000020895,0.0000020897, -0.0000020891,0.0000020875,0.0000020850,0.0000020820,0.0000020787, -0.0000020752,0.0000020720,0.0000020695,0.0000020676,0.0000020660, -0.0000020645,0.0000020632,0.0000020622,0.0000020613,0.0000020609, -0.0000020603,0.0000020595,0.0000020583,0.0000020570,0.0000020563, -0.0000020560,0.0000020563,0.0000020569,0.0000020574,0.0000020576, -0.0000020579,0.0000020583,0.0000020585,0.0000020592,0.0000020594, -0.0000020588,0.0000020575,0.0000020559,0.0000020546,0.0000020544, -0.0000020545,0.0000020549,0.0000020555,0.0000020560,0.0000020561, -0.0000020555,0.0000020548,0.0000020549,0.0000020553,0.0000020555, -0.0000020557,0.0000020567,0.0000020584,0.0000020605,0.0000020629, -0.0000020651,0.0000020674,0.0000020703,0.0000020731,0.0000020753, -0.0000020766,0.0000020769,0.0000020766,0.0000020764,0.0000020762, -0.0000020758,0.0000020753,0.0000020747,0.0000020743,0.0000020743, -0.0000020747,0.0000020752,0.0000020752,0.0000020750,0.0000020750, -0.0000020750,0.0000020748,0.0000020747,0.0000020749,0.0000020757, -0.0000020766,0.0000020773,0.0000020779,0.0000020785,0.0000020789, -0.0000020789,0.0000020788,0.0000020784,0.0000020780,0.0000020773, -0.0000020768,0.0000020767,0.0000020770,0.0000020778,0.0000020787, -0.0000020796,0.0000020805,0.0000020813,0.0000020817,0.0000020819, -0.0000020823,0.0000020831,0.0000020835,0.0000020833,0.0000020831, -0.0000020815,0.0000020794,0.0000020769,0.0000020742,0.0000020717, -0.0000020695,0.0000020677,0.0000020667,0.0000020663,0.0000020661, -0.0000020659,0.0000020655,0.0000020647,0.0000020638,0.0000020628, -0.0000020616,0.0000020603,0.0000020590,0.0000020578,0.0000020567, -0.0000020555,0.0000020541,0.0000020533,0.0000020522,0.0000020513, -0.0000020509,0.0000020517,0.0000020545,0.0000020594,0.0000020659, -0.0000020734,0.0000020807,0.0000020874,0.0000020930,0.0000020974, -0.0000021011,0.0000021042,0.0000021069,0.0000021089,0.0000021102, -0.0000021110,0.0000021117,0.0000021126,0.0000021142,0.0000021161, -0.0000021179,0.0000021189,0.0000021192,0.0000021193,0.0000021189, -0.0000021185,0.0000021184,0.0000021186,0.0000021190,0.0000021191, -0.0000021184,0.0000021164,0.0000021128,0.0000021083,0.0000021035, -0.0000020990,0.0000020952,0.0000020926,0.0000020915,0.0000020915, -0.0000020922,0.0000020935,0.0000020945,0.0000020948,0.0000020945, -0.0000020934,0.0000020914,0.0000020888,0.0000020859,0.0000020833, -0.0000020807,0.0000020782,0.0000020757,0.0000020737,0.0000020726, -0.0000020723,0.0000020718,0.0000020712,0.0000020705,0.0000020702, -0.0000020703,0.0000020705,0.0000020702,0.0000020693,0.0000020675, -0.0000020651,0.0000020628,0.0000020603,0.0000020580,0.0000020560, -0.0000020548,0.0000020531,0.0000020512,0.0000020493,0.0000020477, -0.0000020466,0.0000020464,0.0000020465,0.0000020468,0.0000020471, -0.0000020473,0.0000020471,0.0000020464,0.0000020445,0.0000020419, -0.0000020387,0.0000020347,0.0000020301,0.0000020255,0.0000020218, -0.0000020183,0.0000020154,0.0000020131,0.0000020111,0.0000020091, -0.0000020068,0.0000020035,0.0000019998,0.0000019968,0.0000019951, -0.0000019946,0.0000019950,0.0000019966,0.0000019982,0.0000020002, -0.0000020022,0.0000020038,0.0000020050,0.0000020061,0.0000020073, -0.0000020089,0.0000020105,0.0000020120,0.0000020136,0.0000020150, -0.0000020160,0.0000020163,0.0000020159,0.0000020151,0.0000020142, -0.0000020138,0.0000020137,0.0000020141,0.0000020154,0.0000020173, -0.0000020192,0.0000020213,0.0000020233,0.0000020248,0.0000020252, -0.0000020248,0.0000020242,0.0000020240,0.0000020234,0.0000020222, -0.0000020209,0.0000020202,0.0000020204,0.0000020218,0.0000020241, -0.0000020261,0.0000020273,0.0000020278,0.0000020278,0.0000020276, -0.0000020273,0.0000020272,0.0000020272,0.0000020270,0.0000020265, -0.0000020253,0.0000020237,0.0000020218,0.0000020200,0.0000020186, -0.0000020179,0.0000020182,0.0000020191,0.0000020206,0.0000020225, -0.0000020244,0.0000020263,0.0000020284,0.0000020312,0.0000020345, -0.0000020375,0.0000020398,0.0000020405,0.0000020405,0.0000020385, -0.0000020358,0.0000020331,0.0000020310,0.0000020302,0.0000020300, -0.0000020299,0.0000020299,0.0000020299,0.0000020295,0.0000020284, -0.0000020257,0.0000020217,0.0000020171,0.0000020122,0.0000020071, -0.0000020019,0.0000019965,0.0000019906,0.0000019846,0.0000019793, -0.0000019749,0.0000019721,0.0000019704,0.0000019702,0.0000019698, -0.0000019707,0.0000019711,0.0000019716,0.0000019717,0.0000019710, -0.0000019695,0.0000019671,0.0000019642,0.0000019611,0.0000019581, -0.0000019556,0.0000019535,0.0000019519,0.0000019528,0.0000019527, -0.0000019540,0.0000019561,0.0000019583,0.0000019603,0.0000019618, -0.0000019628,0.0000019624,0.0000019618,0.0000019601,0.0000019583, -0.0000019564,0.0000019547,0.0000019532,0.0000019523,0.0000019526, -0.0000019533,0.0000019542,0.0000019555,0.0000019571,0.0000019587, -0.0000019608,0.0000019638,0.0000019679,0.0000019739,0.0000019823, -0.0000019912,0.0000019986,0.0000020019,0.0000020033,0.0000020021, -0.0000020007,0.0000020006,0.0000020023,0.0000020059,0.0000020105, -0.0000020149,0.0000020179,0.0000020196,0.0000020204,0.0000020213, -0.0000020228,0.0000020252,0.0000020281,0.0000020314,0.0000020358, -0.0000020413,0.0000020474,0.0000020535,0.0000020592,0.0000020645, -0.0000020691,0.0000020733,0.0000020769,0.0000020799,0.0000020820, -0.0000020833,0.0000020840,0.0000020844,0.0000020849,0.0000020847, -0.0000020839,0.0000020822,0.0000020805,0.0000020794,0.0000020788, -0.0000020784,0.0000020774,0.0000020755,0.0000020729,0.0000020698, -0.0000020661,0.0000020620,0.0000020582,0.0000020552,0.0000020526, -0.0000020500,0.0000020471,0.0000020438,0.0000020397,0.0000020349, -0.0000020292,0.0000020230,0.0000020173,0.0000020130,0.0000020101, -0.0000020086,0.0000020085,0.0000020089,0.0000020098,0.0000020103, -0.0000020104,0.0000020095,0.0000020075,0.0000020044,0.0000020009, -0.0000019979,0.0000019956,0.0000019941,0.0000019928,0.0000019922, -0.0000019923,0.0000019936,0.0000019960,0.0000019990,0.0000020027, -0.0000020061,0.0000020083,0.0000020088,0.0000020083,0.0000020067, -0.0000020047,0.0000020030,0.0000020020,0.0000020014,0.0000020000, -0.0000019968,0.0000019915,0.0000019847,0.0000019780,0.0000019730, -0.0000019705,0.0000019700,0.0000019704,0.0000019710,0.0000019718, -0.0000019727,0.0000019735,0.0000019738,0.0000019734,0.0000019724, -0.0000019715,0.0000019707,0.0000019697,0.0000019687,0.0000019679, -0.0000019669,0.0000019653,0.0000019630,0.0000019601,0.0000019568, -0.0000019536,0.0000019506,0.0000019479,0.0000019446,0.0000019409, -0.0000019366,0.0000019322,0.0000019282,0.0000019250,0.0000019223, -0.0000019200,0.0000019181,0.0000019167,0.0000019156,0.0000019146, -0.0000019135,0.0000019122,0.0000019110,0.0000019098,0.0000019086, -0.0000019073,0.0000019056,0.0000019039,0.0000019025,0.0000019010, -0.0000018994,0.0000018977,0.0000018968,0.0000018969,0.0000018975, -0.0000018987,0.0000019009,0.0000019045,0.0000019100,0.0000019172, -0.0000019255,0.0000019344,0.0000019434,0.0000019515,0.0000019578, -0.0000019623,0.0000019649,0.0000019659,0.0000019661,0.0000019661, -0.0000019670,0.0000019696,0.0000019736,0.0000019787,0.0000019843, -0.0000019897,0.0000019942,0.0000019975,0.0000019998,0.0000020015, -0.0000020022,0.0000020021,0.0000020012,0.0000019992,0.0000019964, -0.0000019936,0.0000019911,0.0000019896,0.0000019893,0.0000019905, -0.0000019922,0.0000019943,0.0000019963,0.0000019976,0.0000019984, -0.0000019984,0.0000019974,0.0000019955,0.0000019928,0.0000019895, -0.0000019864,0.0000019839,0.0000019822,0.0000019808,0.0000019801, -0.0000019803,0.0000019809,0.0000019818,0.0000019824,0.0000019828, -0.0000019829,0.0000019820,0.0000019796,0.0000019754,0.0000019692, -0.0000019618,0.0000019539,0.0000019468,0.0000019413,0.0000019381, -0.0000019370,0.0000019380,0.0000019406,0.0000019445,0.0000019491, -0.0000019525,0.0000019536,0.0000019522,0.0000019505,0.0000019500, -0.0000019509,0.0000019528,0.0000019548,0.0000019556,0.0000019544, -0.0000019510,0.0000019454,0.0000019393,0.0000019339,0.0000019293, -0.0000019257,0.0000019231,0.0000019201,0.0000019161,0.0000019120, -0.0000019093,0.0000019073,0.0000019068,0.0000019078,0.0000019098, -0.0000019115,0.0000019122,0.0000019122,0.0000019131,0.0000019160, -0.0000019196,0.0000019221,0.0000019231,0.0000019225,0.0000019194, -0.0000019121,0.0000019039,0.0000018972,0.0000018905,0.0000018842, -0.0000018802,0.0000018768,0.0000018727,0.0000018686,0.0000018647, -0.0000018626,0.0000018625,0.0000018634,0.0000018645,0.0000018655, -0.0000018663,0.0000018674,0.0000018687,0.0000018697,0.0000018706, -0.0000018709,0.0000018706,0.0000018695,0.0000018679,0.0000018664, -0.0000018654,0.0000018649,0.0000018649,0.0000018659,0.0000018684, -0.0000018729,0.0000018797,0.0000018877,0.0000018953,0.0000019019, -0.0000019075,0.0000019126,0.0000019172,0.0000019208,0.0000019235, -0.0000019256,0.0000019273,0.0000019282,0.0000019281,0.0000019266, -0.0000019238,0.0000019191,0.0000019132,0.0000019064,0.0000018982, -0.0000018885,0.0000018787,0.0000018695,0.0000018605,0.0000018526, -0.0000018468,0.0000018427,0.0000018398,0.0000018376,0.0000018358, -0.0000018339,0.0000018321,0.0000018312,0.0000018307,0.0000018302, -0.0000018298,0.0000018298,0.0000018303,0.0000018310,0.0000018311, -0.0000018304,0.0000018280,0.0000018246,0.0000018223,0.0000018216, -0.0000018220,0.0000018230,0.0000018246,0.0000018260,0.0000018264, -0.0000018257,0.0000018239,0.0000018203,0.0000018168,0.0000018140, -0.0000018138,0.0000018159,0.0000018202,0.0000018244,0.0000018253, -0.0000018254,0.0000018264,0.0000018274,0.0000018289,0.0000018292, -0.0000018289,0.0000018282,0.0000018270,0.0000018255,0.0000018246, -0.0000018243,0.0000018246,0.0000018256,0.0000018273,0.0000018291, -0.0000018314,0.0000018339,0.0000018363,0.0000018381,0.0000018392, -0.0000018390,0.0000018364,0.0000018300,0.0000018206,0.0000018093, -0.0000017962,0.0000017819,0.0000017695,0.0000017620,0.0000017583, -0.0000017567,0.0000017574,0.0000017607,0.0000017649,0.0000017673, -0.0000017679,0.0000017684,0.0000017696,0.0000017710,0.0000017717, -0.0000017717,0.0000017719,0.0000017733,0.0000017761,0.0000017792, -0.0000017803,0.0000017791,0.0000017768,0.0000017746,0.0000017735, -0.0000017741,0.0000017782,0.0000017863,0.0000017977,0.0000018105, -0.0000018213,0.0000018285,0.0000018331,0.0000018376,0.0000018434, -0.0000018501,0.0000018561,0.0000018601,0.0000018624,0.0000018646, -0.0000018686,0.0000018751,0.0000018835,0.0000018924,0.0000019002, -0.0000019066,0.0000019116,0.0000019149,0.0000019146,0.0000019147, -0.0000019152,0.0000019156,0.0000019164,0.0000019171,0.0000019177, -0.0000019175,0.0000019179,0.0000019184,0.0000019159,0.0000019119, -0.0000019069,0.0000019016,0.0000018957,0.0000018876,0.0000018771, -0.0000018654,0.0000018527,0.0000018400,0.0000018278,0.0000018169, -0.0000018083,0.0000018039,0.0000018040,0.0000018062,0.0000018078, -0.0000018086,0.0000018058,0.0000018004,0.0000017941,0.0000017892, -0.0000017865,0.0000017856,0.0000017862,0.0000017878,0.0000017900, -0.0000017921,0.0000017939,0.0000017949,0.0000017949,0.0000017937, -0.0000017907,0.0000017860,0.0000017806,0.0000017757,0.0000017719, -0.0000017688,0.0000017659,0.0000017644,0.0000017637,0.0000017644, -0.0000017656,0.0000017665,0.0000017677,0.0000017697,0.0000017728, -0.0000017777,0.0000017846,0.0000017934,0.0000018037,0.0000018152, -0.0000018274,0.0000018397,0.0000018517,0.0000018625,0.0000018718, -0.0000018796,0.0000018853,0.0000018892,0.0000018903,0.0000018898, -0.0000018883,0.0000018856,0.0000018838,0.0000018822,0.0000018839, -0.0000018886,0.0000018955,0.0000019030,0.0000019085,0.0000019125, -0.0000019142,0.0000019147,0.0000019149,0.0000019151,0.0000019148, -0.0000019143,0.0000019125,0.0000019099,0.0000019069,0.0000019041, -0.0000019022,0.0000019008,0.0000019001,0.0000019001,0.0000019009, -0.0000019025,0.0000019049,0.0000019080,0.0000019119,0.0000019165, -0.0000019218,0.0000019277,0.0000019336,0.0000019378,0.0000019404, -0.0000019412,0.0000019410,0.0000019399,0.0000019386,0.0000019374, -0.0000019364,0.0000019355,0.0000019346,0.0000019339,0.0000019332, -0.0000019326,0.0000019318,0.0000019308,0.0000019295,0.0000019277, -0.0000019257,0.0000019236,0.0000019213,0.0000019188,0.0000019163, -0.0000019137,0.0000019111,0.0000019088,0.0000019071,0.0000019059, -0.0000019051,0.0000019044,0.0000019039,0.0000019032,0.0000019026, -0.0000019018,0.0000019009,0.0000018999,0.0000018989,0.0000018981, -0.0000018971,0.0000018961,0.0000018950,0.0000018940,0.0000018931, -0.0000018922,0.0000018905,0.0000018888,0.0000018871,0.0000018856, -0.0000018846,0.0000018841,0.0000018840,0.0000018839,0.0000018840, -0.0000018841,0.0000018840,0.0000018837,0.0000018832,0.0000018826, -0.0000018821,0.0000018815,0.0000018807,0.0000018798,0.0000018788, -0.0000018777,0.0000018767,0.0000018757,0.0000018749,0.0000018740, -0.0000018730,0.0000018720,0.0000018714,0.0000018709,0.0000018704, -0.0000018695,0.0000018684,0.0000018674,0.0000018666,0.0000018663, -0.0000018660,0.0000018654,0.0000018644,0.0000018631,0.0000018615, -0.0000018599,0.0000018585,0.0000018575,0.0000018568,0.0000018565, -0.0000018563,0.0000018561,0.0000018560,0.0000018560,0.0000018559, -0.0000018556,0.0000018555,0.0000018555,0.0000018539,0.0000018533, -0.0000018534,0.0000018544,0.0000018563,0.0000018587,0.0000018612, -0.0000018633,0.0000018648,0.0000018658,0.0000018668,0.0000018682, -0.0000018706,0.0000018742,0.0000018796,0.0000018867,0.0000018946, -0.0000019010,0.0000019045,0.0000019045,0.0000019016,0.0000018965, -0.0000018924,0.0000018913,0.0000018924,0.0000018935,0.0000018931, -0.0000018924,0.0000018926,0.0000018942,0.0000018961,0.0000018965, -0.0000018959,0.0000018955,0.0000018964,0.0000018994,0.0000019041, -0.0000019093,0.0000019141,0.0000019183,0.0000019222,0.0000019258, -0.0000019291,0.0000019318,0.0000019341,0.0000019360,0.0000019375, -0.0000019385,0.0000019391,0.0000019396,0.0000019402,0.0000019409, -0.0000019415,0.0000019423,0.0000019431,0.0000019437,0.0000019434, -0.0000019418,0.0000019393,0.0000019366,0.0000019344,0.0000019330, -0.0000019329,0.0000019334,0.0000019339,0.0000019337,0.0000019333, -0.0000019330,0.0000019329,0.0000019328,0.0000019325,0.0000019321, -0.0000019320,0.0000019319,0.0000019316,0.0000019313,0.0000019307, -0.0000019297,0.0000019286,0.0000019269,0.0000019249,0.0000019223, -0.0000019189,0.0000019147,0.0000019097,0.0000019042,0.0000018989, -0.0000018938,0.0000018896,0.0000018864,0.0000018841,0.0000018822, -0.0000018799,0.0000018766,0.0000018728,0.0000018696,0.0000018687, -0.0000018693,0.0000018718,0.0000018756,0.0000018802,0.0000018848, -0.0000018884,0.0000018897,0.0000018890,0.0000018868,0.0000018833, -0.0000018790,0.0000018746,0.0000018710,0.0000018685,0.0000018668, -0.0000018653,0.0000018645,0.0000018645,0.0000018658,0.0000018677, -0.0000018700,0.0000018732,0.0000018781,0.0000018849,0.0000018925, -0.0000018993,0.0000019039,0.0000019062,0.0000019054,0.0000019036, -0.0000019021,0.0000019002,0.0000018984,0.0000018959,0.0000018929, -0.0000018892,0.0000018853,0.0000018822,0.0000018802,0.0000018805, -0.0000018805,0.0000018805,0.0000018803,0.0000018801,0.0000018803, -0.0000018810,0.0000018817,0.0000018819,0.0000018818,0.0000018818, -0.0000018818,0.0000018824,0.0000018837,0.0000018855,0.0000018878, -0.0000018901,0.0000018921,0.0000018941,0.0000018961,0.0000018976, -0.0000018986,0.0000018989,0.0000018986,0.0000018982,0.0000018976, -0.0000018970,0.0000018958,0.0000018942,0.0000018926,0.0000018911, -0.0000018900,0.0000018894,0.0000018893,0.0000018895,0.0000018901, -0.0000018912,0.0000018929,0.0000018947,0.0000018963,0.0000018981, -0.0000018999,0.0000019015,0.0000019030,0.0000019048,0.0000019069, -0.0000019092,0.0000019113,0.0000019131,0.0000019149,0.0000019166, -0.0000019184,0.0000019202,0.0000019221,0.0000019243,0.0000019262, -0.0000019278,0.0000019289,0.0000019301,0.0000019316,0.0000019333, -0.0000019351,0.0000019372,0.0000019399,0.0000019431,0.0000019465, -0.0000019502,0.0000019540,0.0000019581,0.0000019625,0.0000019674, -0.0000019727,0.0000019782,0.0000019837,0.0000019891,0.0000019944, -0.0000019994,0.0000020041,0.0000020083,0.0000020118,0.0000020147, -0.0000020169,0.0000020188,0.0000020202,0.0000020212,0.0000020221, -0.0000020231,0.0000020248,0.0000020273,0.0000020299,0.0000020320, -0.0000020326,0.0000020319,0.0000020301,0.0000020298,0.0000020331, -0.0000020401,0.0000020463,0.0000020489,0.0000020492,0.0000020506, -0.0000020546,0.0000020586,0.0000020596,0.0000020587,0.0000020573, -0.0000020557,0.0000020531,0.0000020500,0.0000020477,0.0000020472, -0.0000020477,0.0000020496,0.0000020523,0.0000020554,0.0000020585, -0.0000020616,0.0000020645,0.0000020673,0.0000020697,0.0000020713, -0.0000020721,0.0000020721,0.0000020717,0.0000020709,0.0000020698, -0.0000020681,0.0000020659,0.0000020636,0.0000020614,0.0000020590, -0.0000020567,0.0000020547,0.0000020527,0.0000020510,0.0000020497, -0.0000020487,0.0000020478,0.0000020469,0.0000020461,0.0000020458, -0.0000020456,0.0000020454,0.0000020454,0.0000020456,0.0000020460, -0.0000020468,0.0000020481,0.0000020494,0.0000020503,0.0000020512, -0.0000020519,0.0000020521,0.0000020517,0.0000020505,0.0000020481, -0.0000020448,0.0000020412,0.0000020380,0.0000020353,0.0000020328, -0.0000020305,0.0000020285,0.0000020270,0.0000020264,0.0000020273, -0.0000020297,0.0000020326,0.0000020350,0.0000020357,0.0000020352, -0.0000020338,0.0000020326,0.0000020325,0.0000020333,0.0000020358, -0.0000020403,0.0000020446,0.0000020459,0.0000020446,0.0000020439, -0.0000020473,0.0000020521,0.0000020515,0.0000020412,0.0000020260, -0.0000020174,0.0000020163,0.0000020185,0.0000020205,0.0000020207, -0.0000020200,0.0000020181,0.0000020127,0.0000020051,0.0000020001, -0.0000020004,0.0000020104,0.0000020256,0.0000020327,0.0000020321, -0.0000020307,0.0000020276,0.0000020156,0.0000020021,0.0000020020, -0.0000020199,0.0000020463,0.0000020662,0.0000020727,0.0000020748, -0.0000020787,0.0000020822,0.0000020853,0.0000020910,0.0000021002, -0.0000021097,0.0000021159,0.0000021178,0.0000021190,0.0000021234, -0.0000021310,0.0000021380,0.0000021417,0.0000021423,0.0000021418, -0.0000021416,0.0000021419,0.0000021421,0.0000021420,0.0000021416, -0.0000021409,0.0000021399,0.0000021391,0.0000021382,0.0000021371, -0.0000021357,0.0000021343,0.0000021326,0.0000021308,0.0000021294, -0.0000021286,0.0000021285,0.0000021287,0.0000021289,0.0000021290, -0.0000021286,0.0000021276,0.0000021259,0.0000021235,0.0000021210, -0.0000021189,0.0000021178,0.0000021176,0.0000021176,0.0000021176, -0.0000021172,0.0000021162,0.0000021143,0.0000021118,0.0000021089, -0.0000021060,0.0000021035,0.0000021013,0.0000020996,0.0000020983, -0.0000020974,0.0000020973,0.0000020982,0.0000020997,0.0000021011, -0.0000021022,0.0000021033,0.0000021042,0.0000021045,0.0000021044, -0.0000021040,0.0000021033,0.0000021026,0.0000021019,0.0000021015, -0.0000021008,0.0000020999,0.0000020988,0.0000020977,0.0000020964, -0.0000020951,0.0000020941,0.0000020934,0.0000020925,0.0000020915, -0.0000020907,0.0000020902,0.0000020899,0.0000020898,0.0000020894, -0.0000020887,0.0000020876,0.0000020865,0.0000020857,0.0000020851, -0.0000020845,0.0000020842,0.0000020842,0.0000020849,0.0000020860, -0.0000020872,0.0000020885,0.0000020898,0.0000020911,0.0000020918, -0.0000020920,0.0000020920,0.0000020920,0.0000020922,0.0000020926, -0.0000020933,0.0000020939,0.0000020941,0.0000020938,0.0000020929, -0.0000020918,0.0000020907,0.0000020894,0.0000020879,0.0000020870, -0.0000020870,0.0000020874,0.0000020876,0.0000020879,0.0000020880, -0.0000020882,0.0000020884,0.0000020887,0.0000020892,0.0000020898, -0.0000020907,0.0000020917,0.0000020924,0.0000020927,0.0000020927, -0.0000020923,0.0000020915,0.0000020898,0.0000020873,0.0000020844, -0.0000020813,0.0000020782,0.0000020751,0.0000020726,0.0000020709, -0.0000020697,0.0000020692,0.0000020691,0.0000020691,0.0000020692, -0.0000020692,0.0000020688,0.0000020681,0.0000020668,0.0000020652, -0.0000020636,0.0000020622,0.0000020610,0.0000020601,0.0000020593, -0.0000020584,0.0000020580,0.0000020575,0.0000020571,0.0000020569, -0.0000020563,0.0000020552,0.0000020537,0.0000020524,0.0000020518, -0.0000020519,0.0000020525,0.0000020537,0.0000020550,0.0000020560, -0.0000020567,0.0000020568,0.0000020573,0.0000020579,0.0000020588, -0.0000020594,0.0000020597,0.0000020601,0.0000020611,0.0000020626, -0.0000020645,0.0000020664,0.0000020686,0.0000020711,0.0000020733, -0.0000020749,0.0000020755,0.0000020752,0.0000020742,0.0000020729, -0.0000020714,0.0000020696,0.0000020685,0.0000020679,0.0000020673, -0.0000020668,0.0000020668,0.0000020670,0.0000020672,0.0000020676, -0.0000020682,0.0000020687,0.0000020686,0.0000020681,0.0000020679, -0.0000020682,0.0000020690,0.0000020698,0.0000020708,0.0000020720, -0.0000020732,0.0000020739,0.0000020741,0.0000020741,0.0000020738, -0.0000020733,0.0000020730,0.0000020730,0.0000020733,0.0000020739, -0.0000020745,0.0000020748,0.0000020750,0.0000020752,0.0000020754, -0.0000020756,0.0000020765,0.0000020785,0.0000020808,0.0000020826, -0.0000020840,0.0000020850,0.0000020854,0.0000020849,0.0000020839, -0.0000020829,0.0000020809,0.0000020781,0.0000020751,0.0000020725, -0.0000020706,0.0000020689,0.0000020676,0.0000020669,0.0000020668, -0.0000020668,0.0000020664,0.0000020655,0.0000020643,0.0000020628, -0.0000020611,0.0000020594,0.0000020573,0.0000020550,0.0000020526, -0.0000020502,0.0000020489,0.0000020474,0.0000020471,0.0000020489, -0.0000020528,0.0000020580,0.0000020640,0.0000020703,0.0000020767, -0.0000020827,0.0000020881,0.0000020923,0.0000020954,0.0000020976, -0.0000020992,0.0000021003,0.0000021012,0.0000021021,0.0000021034, -0.0000021054,0.0000021075,0.0000021089,0.0000021097,0.0000021100, -0.0000021099,0.0000021098,0.0000021100,0.0000021108,0.0000021119, -0.0000021127,0.0000021128,0.0000021117,0.0000021091,0.0000021054, -0.0000021014,0.0000020976,0.0000020946,0.0000020928,0.0000020923, -0.0000020927,0.0000020937,0.0000020949,0.0000020956,0.0000020957, -0.0000020950,0.0000020936,0.0000020913,0.0000020883,0.0000020850, -0.0000020819,0.0000020789,0.0000020758,0.0000020732,0.0000020712, -0.0000020703,0.0000020699,0.0000020694,0.0000020688,0.0000020681, -0.0000020674,0.0000020668,0.0000020664,0.0000020653,0.0000020633, -0.0000020605,0.0000020571,0.0000020540,0.0000020514,0.0000020493, -0.0000020481,0.0000020473,0.0000020460,0.0000020445,0.0000020430, -0.0000020419,0.0000020415,0.0000020419,0.0000020425,0.0000020430, -0.0000020434,0.0000020437,0.0000020437,0.0000020432,0.0000020420, -0.0000020397,0.0000020367,0.0000020331,0.0000020292,0.0000020255, -0.0000020222,0.0000020191,0.0000020169,0.0000020153,0.0000020140, -0.0000020126,0.0000020107,0.0000020082,0.0000020055,0.0000020032, -0.0000020013,0.0000020000,0.0000019993,0.0000019993,0.0000019997, -0.0000020009,0.0000020018,0.0000020024,0.0000020031,0.0000020043, -0.0000020062,0.0000020086,0.0000020111,0.0000020133,0.0000020154, -0.0000020169,0.0000020176,0.0000020174,0.0000020164,0.0000020147, -0.0000020128,0.0000020116,0.0000020101,0.0000020097,0.0000020104, -0.0000020118,0.0000020138,0.0000020162,0.0000020185,0.0000020201, -0.0000020208,0.0000020211,0.0000020215,0.0000020214,0.0000020207, -0.0000020197,0.0000020190,0.0000020189,0.0000020200,0.0000020219, -0.0000020237,0.0000020248,0.0000020253,0.0000020254,0.0000020253, -0.0000020252,0.0000020250,0.0000020249,0.0000020247,0.0000020241, -0.0000020232,0.0000020216,0.0000020199,0.0000020183,0.0000020170, -0.0000020159,0.0000020150,0.0000020147,0.0000020149,0.0000020154, -0.0000020159,0.0000020169,0.0000020187,0.0000020217,0.0000020257, -0.0000020300,0.0000020342,0.0000020376,0.0000020395,0.0000020395, -0.0000020387,0.0000020367,0.0000020345,0.0000020332,0.0000020328, -0.0000020327,0.0000020328,0.0000020333,0.0000020339,0.0000020342, -0.0000020334,0.0000020308,0.0000020268,0.0000020218,0.0000020159, -0.0000020099,0.0000020042,0.0000019988,0.0000019938,0.0000019893, -0.0000019852,0.0000019812,0.0000019776,0.0000019743,0.0000019721, -0.0000019710,0.0000019708,0.0000019706,0.0000019716,0.0000019730, -0.0000019741,0.0000019758,0.0000019758,0.0000019751,0.0000019734, -0.0000019710,0.0000019677,0.0000019641,0.0000019608,0.0000019580, -0.0000019560,0.0000019545,0.0000019549,0.0000019552,0.0000019558, -0.0000019567,0.0000019577,0.0000019584,0.0000019583,0.0000019576, -0.0000019566,0.0000019553,0.0000019545,0.0000019539,0.0000019542, -0.0000019544,0.0000019541,0.0000019539,0.0000019538,0.0000019546, -0.0000019568,0.0000019603,0.0000019642,0.0000019682,0.0000019729, -0.0000019791,0.0000019874,0.0000019959,0.0000020023,0.0000020044, -0.0000020038,0.0000020017,0.0000020004,0.0000020010,0.0000020035, -0.0000020070,0.0000020105,0.0000020130,0.0000020144,0.0000020151, -0.0000020161,0.0000020178,0.0000020204,0.0000020239,0.0000020280, -0.0000020329,0.0000020383,0.0000020439,0.0000020495,0.0000020548, -0.0000020596,0.0000020636,0.0000020670,0.0000020696,0.0000020716, -0.0000020728,0.0000020736,0.0000020744,0.0000020751,0.0000020750, -0.0000020739,0.0000020722,0.0000020703,0.0000020693,0.0000020690, -0.0000020691,0.0000020688,0.0000020676,0.0000020654,0.0000020623, -0.0000020581,0.0000020534,0.0000020490,0.0000020451,0.0000020416, -0.0000020385,0.0000020355,0.0000020321,0.0000020284,0.0000020241, -0.0000020195,0.0000020152,0.0000020119,0.0000020100,0.0000020091, -0.0000020090,0.0000020093,0.0000020096,0.0000020094,0.0000020077, -0.0000020048,0.0000020009,0.0000019968,0.0000019924,0.0000019885, -0.0000019859,0.0000019850,0.0000019851,0.0000019863,0.0000019884, -0.0000019914,0.0000019950,0.0000019989,0.0000020028,0.0000020058, -0.0000020077,0.0000020079,0.0000020064,0.0000020044,0.0000020026, -0.0000020016,0.0000020013,0.0000020011,0.0000019999,0.0000019965, -0.0000019909,0.0000019841,0.0000019775,0.0000019725,0.0000019699, -0.0000019693,0.0000019697,0.0000019702,0.0000019707,0.0000019714, -0.0000019722,0.0000019725,0.0000019722,0.0000019714,0.0000019704, -0.0000019694,0.0000019689,0.0000019687,0.0000019685,0.0000019681, -0.0000019678,0.0000019672,0.0000019661,0.0000019641,0.0000019613, -0.0000019584,0.0000019556,0.0000019525,0.0000019489,0.0000019447, -0.0000019402,0.0000019353,0.0000019305,0.0000019263,0.0000019229, -0.0000019200,0.0000019177,0.0000019158,0.0000019148,0.0000019142, -0.0000019135,0.0000019128,0.0000019120,0.0000019111,0.0000019099, -0.0000019084,0.0000019065,0.0000019044,0.0000019025,0.0000019005, -0.0000018984,0.0000018965,0.0000018951,0.0000018946,0.0000018945, -0.0000018946,0.0000018952,0.0000018965,0.0000018995,0.0000019043, -0.0000019106,0.0000019180,0.0000019264,0.0000019351,0.0000019435, -0.0000019510,0.0000019570,0.0000019612,0.0000019636,0.0000019647, -0.0000019658,0.0000019674,0.0000019697,0.0000019730,0.0000019772, -0.0000019817,0.0000019862,0.0000019903,0.0000019938,0.0000019966, -0.0000019985,0.0000019993,0.0000019990,0.0000019974,0.0000019950, -0.0000019922,0.0000019895,0.0000019878,0.0000019870,0.0000019876, -0.0000019890,0.0000019911,0.0000019930,0.0000019946,0.0000019956, -0.0000019958,0.0000019950,0.0000019934,0.0000019910,0.0000019884, -0.0000019860,0.0000019841,0.0000019825,0.0000019811,0.0000019800, -0.0000019795,0.0000019797,0.0000019804,0.0000019810,0.0000019813, -0.0000019814,0.0000019805,0.0000019784,0.0000019745,0.0000019687, -0.0000019614,0.0000019533,0.0000019454,0.0000019392,0.0000019354, -0.0000019337,0.0000019343,0.0000019367,0.0000019407,0.0000019453, -0.0000019491,0.0000019507,0.0000019503,0.0000019492,0.0000019489, -0.0000019497,0.0000019514,0.0000019530,0.0000019535,0.0000019520, -0.0000019486,0.0000019436,0.0000019384,0.0000019336,0.0000019291, -0.0000019252,0.0000019222,0.0000019191,0.0000019151,0.0000019107, -0.0000019070,0.0000019045,0.0000019034,0.0000019041,0.0000019065, -0.0000019096,0.0000019113,0.0000019115,0.0000019119,0.0000019140, -0.0000019171,0.0000019199,0.0000019214,0.0000019206,0.0000019176, -0.0000019109,0.0000019036,0.0000018968,0.0000018899,0.0000018841, -0.0000018798,0.0000018752,0.0000018698,0.0000018649,0.0000018612, -0.0000018597,0.0000018604,0.0000018621,0.0000018641,0.0000018660, -0.0000018679,0.0000018698,0.0000018712,0.0000018721,0.0000018726, -0.0000018727,0.0000018720,0.0000018704,0.0000018686,0.0000018670, -0.0000018658,0.0000018651,0.0000018652,0.0000018658,0.0000018679, -0.0000018720,0.0000018778,0.0000018842,0.0000018901,0.0000018952, -0.0000018997,0.0000019040,0.0000019079,0.0000019113,0.0000019142, -0.0000019165,0.0000019179,0.0000019181,0.0000019172,0.0000019150, -0.0000019115,0.0000019066,0.0000018998,0.0000018913,0.0000018816, -0.0000018720,0.0000018619,0.0000018521,0.0000018441,0.0000018387, -0.0000018353,0.0000018330,0.0000018311,0.0000018293,0.0000018273, -0.0000018252,0.0000018236,0.0000018225,0.0000018217,0.0000018216, -0.0000018219,0.0000018227,0.0000018239,0.0000018246,0.0000018243, -0.0000018225,0.0000018198,0.0000018186,0.0000018189,0.0000018202, -0.0000018220,0.0000018239,0.0000018258,0.0000018267,0.0000018266, -0.0000018250,0.0000018215,0.0000018175,0.0000018132,0.0000018103, -0.0000018093,0.0000018108,0.0000018163,0.0000018217,0.0000018232, -0.0000018234,0.0000018246,0.0000018269,0.0000018286,0.0000018290, -0.0000018291,0.0000018286,0.0000018273,0.0000018261,0.0000018252, -0.0000018249,0.0000018255,0.0000018273,0.0000018298,0.0000018326, -0.0000018352,0.0000018373,0.0000018390,0.0000018397,0.0000018390, -0.0000018351,0.0000018277,0.0000018179,0.0000018062,0.0000017925, -0.0000017791,0.0000017694,0.0000017641,0.0000017616,0.0000017616, -0.0000017645,0.0000017684,0.0000017707,0.0000017711,0.0000017713, -0.0000017722,0.0000017733,0.0000017739,0.0000017736,0.0000017734, -0.0000017746,0.0000017780,0.0000017815,0.0000017829,0.0000017816, -0.0000017788,0.0000017761,0.0000017753,0.0000017768,0.0000017824, -0.0000017925,0.0000018054,0.0000018173,0.0000018254,0.0000018302, -0.0000018351,0.0000018425,0.0000018513,0.0000018581,0.0000018614, -0.0000018631,0.0000018662,0.0000018723,0.0000018816,0.0000018928, -0.0000019035,0.0000019118,0.0000019160,0.0000019165,0.0000019163, -0.0000019152,0.0000019130,0.0000019109,0.0000019096,0.0000019091, -0.0000019092,0.0000019099,0.0000019109,0.0000019120,0.0000019134, -0.0000019149,0.0000019164,0.0000019174,0.0000019179,0.0000019178, -0.0000019174,0.0000019157,0.0000019131,0.0000019055,0.0000018967, -0.0000018849,0.0000018698,0.0000018538,0.0000018382,0.0000018240, -0.0000018125,0.0000018059,0.0000018049,0.0000018075,0.0000018115, -0.0000018134,0.0000018137,0.0000018111,0.0000018070,0.0000018029, -0.0000017992,0.0000017959,0.0000017932,0.0000017918,0.0000017907, -0.0000017896,0.0000017891,0.0000017893,0.0000017899,0.0000017902, -0.0000017897,0.0000017875,0.0000017835,0.0000017784,0.0000017734, -0.0000017697,0.0000017672,0.0000017654,0.0000017649,0.0000017648, -0.0000017652,0.0000017662,0.0000017675,0.0000017691,0.0000017709, -0.0000017737,0.0000017780,0.0000017839,0.0000017915,0.0000018006, -0.0000018110,0.0000018225,0.0000018345,0.0000018466,0.0000018580, -0.0000018682,0.0000018768,0.0000018830,0.0000018871,0.0000018880, -0.0000018873,0.0000018858,0.0000018833,0.0000018819,0.0000018822, -0.0000018853,0.0000018915,0.0000018988,0.0000019058,0.0000019109, -0.0000019138,0.0000019141,0.0000019140,0.0000019138,0.0000019136, -0.0000019129,0.0000019113,0.0000019087,0.0000019054,0.0000019020, -0.0000018992,0.0000018975,0.0000018966,0.0000018969,0.0000018982, -0.0000019006,0.0000019034,0.0000019064,0.0000019099,0.0000019143, -0.0000019194,0.0000019249,0.0000019303,0.0000019350,0.0000019381, -0.0000019397,0.0000019388,0.0000019382,0.0000019367,0.0000019348, -0.0000019332,0.0000019314,0.0000019301,0.0000019289,0.0000019279, -0.0000019269,0.0000019257,0.0000019245,0.0000019232,0.0000019217, -0.0000019201,0.0000019183,0.0000019163,0.0000019144,0.0000019122, -0.0000019099,0.0000019078,0.0000019061,0.0000019051,0.0000019045, -0.0000019041,0.0000019036,0.0000019031,0.0000019027,0.0000019021, -0.0000019013,0.0000019005,0.0000018995,0.0000018984,0.0000018972, -0.0000018961,0.0000018950,0.0000018939,0.0000018930,0.0000018919, -0.0000018903,0.0000018884,0.0000018866,0.0000018852,0.0000018842, -0.0000018833,0.0000018826,0.0000018821,0.0000018819,0.0000018818, -0.0000018818,0.0000018817,0.0000018813,0.0000018809,0.0000018805, -0.0000018800,0.0000018792,0.0000018782,0.0000018771,0.0000018759, -0.0000018746,0.0000018733,0.0000018718,0.0000018702,0.0000018688, -0.0000018678,0.0000018670,0.0000018664,0.0000018657,0.0000018648, -0.0000018638,0.0000018629,0.0000018623,0.0000018622,0.0000018622, -0.0000018618,0.0000018613,0.0000018605,0.0000018595,0.0000018583, -0.0000018571,0.0000018562,0.0000018558,0.0000018556,0.0000018556, -0.0000018559,0.0000018562,0.0000018564,0.0000018562,0.0000018556, -0.0000018548,0.0000018550,0.0000018535,0.0000018519,0.0000018506, -0.0000018502,0.0000018512,0.0000018534,0.0000018561,0.0000018584, -0.0000018600,0.0000018609,0.0000018617,0.0000018629,0.0000018645, -0.0000018670,0.0000018709,0.0000018771,0.0000018853,0.0000018941, -0.0000019006,0.0000019036,0.0000019034,0.0000019001,0.0000018953, -0.0000018927,0.0000018927,0.0000018936,0.0000018937,0.0000018929, -0.0000018926,0.0000018935,0.0000018955,0.0000018968,0.0000018966, -0.0000018959,0.0000018958,0.0000018973,0.0000019006,0.0000019051, -0.0000019098,0.0000019144,0.0000019187,0.0000019227,0.0000019261, -0.0000019290,0.0000019315,0.0000019334,0.0000019348,0.0000019356, -0.0000019359,0.0000019358,0.0000019355,0.0000019350,0.0000019343, -0.0000019339,0.0000019337,0.0000019340,0.0000019344,0.0000019347, -0.0000019346,0.0000019339,0.0000019329,0.0000019328,0.0000019328, -0.0000019329,0.0000019329,0.0000019327,0.0000019326,0.0000019326, -0.0000019325,0.0000019321,0.0000019320,0.0000019322,0.0000019325, -0.0000019329,0.0000019334,0.0000019338,0.0000019341,0.0000019339, -0.0000019333,0.0000019324,0.0000019308,0.0000019285,0.0000019251, -0.0000019207,0.0000019156,0.0000019098,0.0000019036,0.0000018972, -0.0000018914,0.0000018867,0.0000018837,0.0000018820,0.0000018806, -0.0000018790,0.0000018772,0.0000018752,0.0000018732,0.0000018725, -0.0000018725,0.0000018739,0.0000018772,0.0000018816,0.0000018858, -0.0000018884,0.0000018888,0.0000018876,0.0000018846,0.0000018801, -0.0000018751,0.0000018707,0.0000018674,0.0000018654,0.0000018637, -0.0000018628,0.0000018631,0.0000018640,0.0000018647,0.0000018652, -0.0000018663,0.0000018689,0.0000018735,0.0000018796,0.0000018867, -0.0000018930,0.0000018976,0.0000019006,0.0000019016,0.0000019007, -0.0000019006,0.0000019000,0.0000018994,0.0000018983,0.0000018962, -0.0000018929,0.0000018891,0.0000018854,0.0000018820,0.0000018802, -0.0000018788,0.0000018783,0.0000018784,0.0000018788,0.0000018792, -0.0000018792,0.0000018791,0.0000018793,0.0000018798,0.0000018806, -0.0000018821,0.0000018840,0.0000018863,0.0000018883,0.0000018899, -0.0000018914,0.0000018929,0.0000018940,0.0000018947,0.0000018948, -0.0000018946,0.0000018940,0.0000018932,0.0000018922,0.0000018906, -0.0000018886,0.0000018866,0.0000018846,0.0000018831,0.0000018822, -0.0000018817,0.0000018815,0.0000018816,0.0000018823,0.0000018834, -0.0000018846,0.0000018859,0.0000018874,0.0000018890,0.0000018905, -0.0000018920,0.0000018936,0.0000018957,0.0000018979,0.0000019000, -0.0000019019,0.0000019038,0.0000019058,0.0000019077,0.0000019099, -0.0000019124,0.0000019149,0.0000019172,0.0000019192,0.0000019208, -0.0000019222,0.0000019235,0.0000019246,0.0000019256,0.0000019269, -0.0000019284,0.0000019301,0.0000019317,0.0000019334,0.0000019353, -0.0000019376,0.0000019407,0.0000019445,0.0000019491,0.0000019546, -0.0000019610,0.0000019681,0.0000019757,0.0000019833,0.0000019909, -0.0000019979,0.0000020040,0.0000020090,0.0000020131,0.0000020161, -0.0000020184,0.0000020198,0.0000020202,0.0000020202,0.0000020209, -0.0000020225,0.0000020249,0.0000020273,0.0000020288,0.0000020287, -0.0000020272,0.0000020266,0.0000020288,0.0000020351,0.0000020418, -0.0000020453,0.0000020458,0.0000020463,0.0000020495,0.0000020539, -0.0000020561,0.0000020558,0.0000020549,0.0000020537,0.0000020519, -0.0000020497,0.0000020480,0.0000020476,0.0000020482,0.0000020500, -0.0000020525,0.0000020553,0.0000020580,0.0000020606,0.0000020631, -0.0000020656,0.0000020677,0.0000020691,0.0000020699,0.0000020701, -0.0000020699,0.0000020694,0.0000020686,0.0000020674,0.0000020655, -0.0000020635,0.0000020614,0.0000020593,0.0000020572,0.0000020551, -0.0000020530,0.0000020509,0.0000020494,0.0000020484,0.0000020475, -0.0000020468,0.0000020467,0.0000020468,0.0000020471,0.0000020474, -0.0000020479,0.0000020484,0.0000020492,0.0000020502,0.0000020513, -0.0000020520,0.0000020521,0.0000020519,0.0000020516,0.0000020507, -0.0000020498,0.0000020487,0.0000020471,0.0000020447,0.0000020418, -0.0000020386,0.0000020351,0.0000020317,0.0000020287,0.0000020260, -0.0000020239,0.0000020228,0.0000020228,0.0000020249,0.0000020282, -0.0000020316,0.0000020335,0.0000020336,0.0000020329,0.0000020320, -0.0000020318,0.0000020321,0.0000020338,0.0000020379,0.0000020427, -0.0000020443,0.0000020430,0.0000020422,0.0000020460,0.0000020509, -0.0000020496,0.0000020383,0.0000020234,0.0000020155,0.0000020148, -0.0000020172,0.0000020189,0.0000020186,0.0000020179,0.0000020159, -0.0000020101,0.0000020027,0.0000019991,0.0000020017,0.0000020142, -0.0000020291,0.0000020339,0.0000020325,0.0000020312,0.0000020274, -0.0000020150,0.0000020030,0.0000020060,0.0000020266,0.0000020535, -0.0000020705,0.0000020750,0.0000020773,0.0000020812,0.0000020842, -0.0000020869,0.0000020917,0.0000020994,0.0000021083,0.0000021152, -0.0000021181,0.0000021192,0.0000021221,0.0000021278,0.0000021339, -0.0000021381,0.0000021397,0.0000021397,0.0000021393,0.0000021389, -0.0000021390,0.0000021393,0.0000021393,0.0000021390,0.0000021386, -0.0000021381,0.0000021371,0.0000021359,0.0000021345,0.0000021331, -0.0000021316,0.0000021303,0.0000021295,0.0000021292,0.0000021291, -0.0000021290,0.0000021288,0.0000021282,0.0000021272,0.0000021254, -0.0000021228,0.0000021196,0.0000021161,0.0000021132,0.0000021113, -0.0000021101,0.0000021092,0.0000021085,0.0000021079,0.0000021073, -0.0000021063,0.0000021049,0.0000021029,0.0000021005,0.0000020980, -0.0000020955,0.0000020934,0.0000020920,0.0000020917,0.0000020920, -0.0000020928,0.0000020936,0.0000020946,0.0000020958,0.0000020971, -0.0000020983,0.0000020990,0.0000020992,0.0000020991,0.0000020987, -0.0000020984,0.0000020982,0.0000020980,0.0000020976,0.0000020970, -0.0000020960,0.0000020950,0.0000020939,0.0000020931,0.0000020923, -0.0000020914,0.0000020906,0.0000020899,0.0000020896,0.0000020895, -0.0000020892,0.0000020886,0.0000020876,0.0000020865,0.0000020854, -0.0000020842,0.0000020827,0.0000020811,0.0000020796,0.0000020785, -0.0000020778,0.0000020772,0.0000020765,0.0000020762,0.0000020764, -0.0000020767,0.0000020766,0.0000020767,0.0000020772,0.0000020781, -0.0000020789,0.0000020800,0.0000020814,0.0000020828,0.0000020839, -0.0000020847,0.0000020851,0.0000020851,0.0000020849,0.0000020847, -0.0000020850,0.0000020857,0.0000020866,0.0000020875,0.0000020886, -0.0000020895,0.0000020904,0.0000020916,0.0000020924,0.0000020931, -0.0000020936,0.0000020941,0.0000020944,0.0000020946,0.0000020945, -0.0000020945,0.0000020941,0.0000020934,0.0000020922,0.0000020903, -0.0000020877,0.0000020849,0.0000020821,0.0000020793,0.0000020764, -0.0000020739,0.0000020723,0.0000020715,0.0000020713,0.0000020715, -0.0000020723,0.0000020730,0.0000020731,0.0000020730,0.0000020729, -0.0000020716,0.0000020703,0.0000020682,0.0000020658,0.0000020633, -0.0000020611,0.0000020592,0.0000020577,0.0000020565,0.0000020552, -0.0000020543,0.0000020531,0.0000020517,0.0000020502,0.0000020489, -0.0000020483,0.0000020482,0.0000020488,0.0000020503,0.0000020524, -0.0000020543,0.0000020560,0.0000020573,0.0000020585,0.0000020596, -0.0000020608,0.0000020622,0.0000020633,0.0000020639,0.0000020643, -0.0000020648,0.0000020656,0.0000020669,0.0000020685,0.0000020703, -0.0000020722,0.0000020739,0.0000020751,0.0000020756,0.0000020754, -0.0000020743,0.0000020726,0.0000020706,0.0000020687,0.0000020673, -0.0000020663,0.0000020653,0.0000020645,0.0000020638,0.0000020631, -0.0000020621,0.0000020615,0.0000020620,0.0000020626,0.0000020628, -0.0000020628,0.0000020629,0.0000020633,0.0000020638,0.0000020643, -0.0000020651,0.0000020660,0.0000020668,0.0000020675,0.0000020679, -0.0000020682,0.0000020684,0.0000020686,0.0000020691,0.0000020698, -0.0000020703,0.0000020706,0.0000020708,0.0000020709,0.0000020705, -0.0000020700,0.0000020695,0.0000020693,0.0000020696,0.0000020710, -0.0000020730,0.0000020749,0.0000020768,0.0000020786,0.0000020804, -0.0000020820,0.0000020834,0.0000020847,0.0000020857,0.0000020861, -0.0000020856,0.0000020847,0.0000020828,0.0000020800,0.0000020764, -0.0000020729,0.0000020702,0.0000020685,0.0000020676,0.0000020672, -0.0000020669,0.0000020662,0.0000020649,0.0000020632,0.0000020610, -0.0000020586,0.0000020560,0.0000020533,0.0000020506,0.0000020479, -0.0000020463,0.0000020456,0.0000020467,0.0000020491,0.0000020526, -0.0000020565,0.0000020612,0.0000020665,0.0000020723,0.0000020780, -0.0000020827,0.0000020862,0.0000020883,0.0000020896,0.0000020904, -0.0000020909,0.0000020920,0.0000020941,0.0000020963,0.0000020982, -0.0000020998,0.0000021007,0.0000021009,0.0000021012,0.0000021019, -0.0000021030,0.0000021042,0.0000021050,0.0000021055,0.0000021052, -0.0000021038,0.0000021019,0.0000020991,0.0000020969,0.0000020954, -0.0000020947,0.0000020945,0.0000020949,0.0000020959,0.0000020968, -0.0000020970,0.0000020967,0.0000020956,0.0000020941,0.0000020919, -0.0000020891,0.0000020860,0.0000020831,0.0000020799,0.0000020766, -0.0000020737,0.0000020720,0.0000020711,0.0000020705,0.0000020699, -0.0000020693,0.0000020686,0.0000020677,0.0000020668,0.0000020657, -0.0000020640,0.0000020613,0.0000020577,0.0000020540,0.0000020508, -0.0000020485,0.0000020463,0.0000020455,0.0000020445,0.0000020432, -0.0000020419,0.0000020403,0.0000020393,0.0000020394,0.0000020401, -0.0000020407,0.0000020411,0.0000020413,0.0000020413,0.0000020411, -0.0000020404,0.0000020391,0.0000020369,0.0000020340,0.0000020308, -0.0000020275,0.0000020248,0.0000020220,0.0000020195,0.0000020180, -0.0000020172,0.0000020167,0.0000020161,0.0000020153,0.0000020143, -0.0000020129,0.0000020112,0.0000020093,0.0000020074,0.0000020058, -0.0000020047,0.0000020042,0.0000020038,0.0000020031,0.0000020027, -0.0000020032,0.0000020046,0.0000020067,0.0000020094,0.0000020124, -0.0000020152,0.0000020177,0.0000020196,0.0000020206,0.0000020205, -0.0000020194,0.0000020175,0.0000020150,0.0000020123,0.0000020100, -0.0000020089,0.0000020079,0.0000020082,0.0000020091,0.0000020107, -0.0000020122,0.0000020133,0.0000020144,0.0000020154,0.0000020159, -0.0000020161,0.0000020160,0.0000020160,0.0000020165,0.0000020177, -0.0000020196,0.0000020218,0.0000020235,0.0000020248,0.0000020255, -0.0000020259,0.0000020262,0.0000020261,0.0000020257,0.0000020250, -0.0000020239,0.0000020223,0.0000020207,0.0000020186,0.0000020166, -0.0000020152,0.0000020139,0.0000020127,0.0000020117,0.0000020109, -0.0000020103,0.0000020097,0.0000020098,0.0000020108,0.0000020129, -0.0000020163,0.0000020207,0.0000020255,0.0000020301,0.0000020340, -0.0000020367,0.0000020377,0.0000020372,0.0000020355,0.0000020347, -0.0000020347,0.0000020351,0.0000020357,0.0000020365,0.0000020374, -0.0000020381,0.0000020383,0.0000020374,0.0000020353,0.0000020319, -0.0000020273,0.0000020215,0.0000020152,0.0000020086,0.0000020023, -0.0000019966,0.0000019918,0.0000019879,0.0000019846,0.0000019819, -0.0000019794,0.0000019773,0.0000019751,0.0000019736,0.0000019725, -0.0000019723,0.0000019725,0.0000019742,0.0000019760,0.0000019775, -0.0000019787,0.0000019800,0.0000019797,0.0000019787,0.0000019764, -0.0000019733,0.0000019697,0.0000019657,0.0000019621,0.0000019590, -0.0000019562,0.0000019553,0.0000019535,0.0000019529,0.0000019530, -0.0000019528,0.0000019524,0.0000019520,0.0000019516,0.0000019519, -0.0000019529,0.0000019541,0.0000019543,0.0000019544,0.0000019539, -0.0000019535,0.0000019539,0.0000019562,0.0000019600,0.0000019644, -0.0000019685,0.0000019724,0.0000019774,0.0000019845,0.0000019926, -0.0000020000,0.0000020036,0.0000020035,0.0000020018,0.0000019998, -0.0000019990,0.0000020001,0.0000020026,0.0000020055,0.0000020079, -0.0000020096,0.0000020108,0.0000020124,0.0000020150,0.0000020185, -0.0000020225,0.0000020268,0.0000020313,0.0000020362,0.0000020415, -0.0000020467,0.0000020513,0.0000020553,0.0000020585,0.0000020611, -0.0000020629,0.0000020641,0.0000020651,0.0000020661,0.0000020666, -0.0000020662,0.0000020649,0.0000020631,0.0000020616,0.0000020607, -0.0000020606,0.0000020610,0.0000020611,0.0000020602,0.0000020579, -0.0000020543,0.0000020493,0.0000020439,0.0000020388,0.0000020342, -0.0000020304,0.0000020274,0.0000020247,0.0000020220,0.0000020193, -0.0000020163,0.0000020133,0.0000020108,0.0000020097,0.0000020094, -0.0000020094,0.0000020093,0.0000020090,0.0000020076,0.0000020047, -0.0000020002,0.0000019949,0.0000019898,0.0000019852,0.0000019812, -0.0000019786,0.0000019779,0.0000019787,0.0000019812,0.0000019847, -0.0000019888,0.0000019930,0.0000019971,0.0000020009,0.0000020034, -0.0000020044,0.0000020041,0.0000020021,0.0000020000,0.0000019988, -0.0000019986,0.0000019991,0.0000019994,0.0000019985,0.0000019955, -0.0000019903,0.0000019839,0.0000019775,0.0000019721,0.0000019685, -0.0000019668,0.0000019665,0.0000019667,0.0000019670,0.0000019673, -0.0000019679,0.0000019684,0.0000019684,0.0000019679,0.0000019674, -0.0000019668,0.0000019664,0.0000019663,0.0000019665,0.0000019667, -0.0000019671,0.0000019676,0.0000019676,0.0000019671,0.0000019662, -0.0000019647,0.0000019625,0.0000019602,0.0000019569,0.0000019528, -0.0000019483,0.0000019435,0.0000019383,0.0000019330,0.0000019281, -0.0000019240,0.0000019204,0.0000019174,0.0000019150,0.0000019138, -0.0000019132,0.0000019126,0.0000019122,0.0000019119,0.0000019115, -0.0000019108,0.0000019099,0.0000019083,0.0000019061,0.0000019038, -0.0000019012,0.0000018984,0.0000018958,0.0000018943,0.0000018933, -0.0000018923,0.0000018916,0.0000018912,0.0000018913,0.0000018926, -0.0000018957,0.0000019002,0.0000019059,0.0000019124,0.0000019197, -0.0000019277,0.0000019360,0.0000019439,0.0000019509,0.0000019564, -0.0000019606,0.0000019638,0.0000019666,0.0000019693,0.0000019721, -0.0000019746,0.0000019772,0.0000019800,0.0000019831,0.0000019864, -0.0000019897,0.0000019927,0.0000019948,0.0000019955,0.0000019948, -0.0000019930,0.0000019907,0.0000019883,0.0000019865,0.0000019853, -0.0000019854,0.0000019863,0.0000019877,0.0000019892,0.0000019906, -0.0000019916,0.0000019918,0.0000019913,0.0000019901,0.0000019885, -0.0000019867,0.0000019850,0.0000019838,0.0000019826,0.0000019812, -0.0000019800,0.0000019792,0.0000019792,0.0000019797,0.0000019800, -0.0000019803,0.0000019803,0.0000019795,0.0000019776,0.0000019743, -0.0000019690,0.0000019619,0.0000019535,0.0000019449,0.0000019376, -0.0000019329,0.0000019303,0.0000019303,0.0000019324,0.0000019363, -0.0000019410,0.0000019454,0.0000019478,0.0000019479,0.0000019475, -0.0000019474,0.0000019484,0.0000019499,0.0000019510,0.0000019511, -0.0000019494,0.0000019462,0.0000019416,0.0000019370,0.0000019329, -0.0000019288,0.0000019248,0.0000019217,0.0000019188,0.0000019147, -0.0000019096,0.0000019048,0.0000019020,0.0000019005,0.0000019013, -0.0000019044,0.0000019082,0.0000019106,0.0000019112,0.0000019114, -0.0000019127,0.0000019154,0.0000019183,0.0000019199,0.0000019195, -0.0000019164,0.0000019102,0.0000019035,0.0000018967,0.0000018900, -0.0000018845,0.0000018796,0.0000018736,0.0000018672,0.0000018614, -0.0000018580,0.0000018577,0.0000018590,0.0000018616,0.0000018646, -0.0000018676,0.0000018702,0.0000018719,0.0000018727,0.0000018729, -0.0000018729,0.0000018723,0.0000018710,0.0000018694,0.0000018681, -0.0000018670,0.0000018659,0.0000018654,0.0000018654,0.0000018662, -0.0000018684,0.0000018719,0.0000018763,0.0000018807,0.0000018844, -0.0000018878,0.0000018913,0.0000018949,0.0000018988,0.0000019025, -0.0000019053,0.0000019071,0.0000019078,0.0000019075,0.0000019062, -0.0000019041,0.0000019000,0.0000018931,0.0000018844,0.0000018750, -0.0000018652,0.0000018543,0.0000018444,0.0000018378,0.0000018340, -0.0000018313,0.0000018289,0.0000018267,0.0000018251,0.0000018235, -0.0000018214,0.0000018194,0.0000018177,0.0000018166,0.0000018165, -0.0000018170,0.0000018179,0.0000018189,0.0000018198,0.0000018202, -0.0000018191,0.0000018171,0.0000018166,0.0000018173,0.0000018191, -0.0000018215,0.0000018239,0.0000018264,0.0000018280,0.0000018281, -0.0000018268,0.0000018239,0.0000018196,0.0000018142,0.0000018096, -0.0000018062,0.0000018046,0.0000018063,0.0000018127,0.0000018193, -0.0000018211,0.0000018217,0.0000018239,0.0000018268,0.0000018285, -0.0000018292,0.0000018293,0.0000018285,0.0000018273,0.0000018261, -0.0000018254,0.0000018258,0.0000018276,0.0000018305,0.0000018333, -0.0000018358,0.0000018379,0.0000018392,0.0000018395,0.0000018375, -0.0000018323,0.0000018245,0.0000018144,0.0000018019,0.0000017885, -0.0000017778,0.0000017709,0.0000017672,0.0000017663,0.0000017684, -0.0000017724,0.0000017751,0.0000017753,0.0000017747,0.0000017750, -0.0000017757,0.0000017762,0.0000017758,0.0000017752,0.0000017755, -0.0000017781,0.0000017817,0.0000017833,0.0000017828,0.0000017802, -0.0000017772,0.0000017761,0.0000017785,0.0000017862,0.0000017982, -0.0000018110,0.0000018202,0.0000018253,0.0000018301,0.0000018382, -0.0000018485,0.0000018560,0.0000018589,0.0000018610,0.0000018650, -0.0000018721,0.0000018820,0.0000018942,0.0000019061,0.0000019142, -0.0000019165,0.0000019162,0.0000019134,0.0000019090,0.0000019050, -0.0000019016,0.0000018991,0.0000018977,0.0000018973,0.0000018975, -0.0000018982,0.0000018995,0.0000019010,0.0000019025,0.0000019040, -0.0000019053,0.0000019063,0.0000019074,0.0000019085,0.0000019097, -0.0000019116,0.0000019140,0.0000019156,0.0000019162,0.0000019149, -0.0000019097,0.0000018977,0.0000018823,0.0000018641,0.0000018465, -0.0000018305,0.0000018171,0.0000018082,0.0000018060,0.0000018087, -0.0000018129,0.0000018158,0.0000018165,0.0000018164,0.0000018155, -0.0000018142,0.0000018129,0.0000018113,0.0000018094,0.0000018071, -0.0000018041,0.0000018007,0.0000017966,0.0000017922,0.0000017889, -0.0000017863,0.0000017850,0.0000017844,0.0000017830,0.0000017797, -0.0000017751,0.0000017711,0.0000017689,0.0000017679,0.0000017671, -0.0000017665,0.0000017668,0.0000017673,0.0000017683,0.0000017694, -0.0000017704,0.0000017719,0.0000017744,0.0000017780,0.0000017828, -0.0000017889,0.0000017966,0.0000018060,0.0000018168,0.0000018286, -0.0000018407,0.0000018526,0.0000018635,0.0000018728,0.0000018796, -0.0000018838,0.0000018854,0.0000018851,0.0000018839,0.0000018822, -0.0000018820,0.0000018838,0.0000018879,0.0000018944,0.0000019019, -0.0000019078,0.0000019114,0.0000019130,0.0000019125,0.0000019120, -0.0000019115,0.0000019106,0.0000019093,0.0000019070,0.0000019036, -0.0000019001,0.0000018969,0.0000018950,0.0000018940,0.0000018947, -0.0000018961,0.0000018984,0.0000019016,0.0000019050,0.0000019085, -0.0000019124,0.0000019168,0.0000019215,0.0000019261,0.0000019303, -0.0000019336,0.0000019357,0.0000019367,0.0000019353,0.0000019347, -0.0000019325,0.0000019298,0.0000019277,0.0000019254,0.0000019236, -0.0000019219,0.0000019202,0.0000019186,0.0000019170,0.0000019155, -0.0000019137,0.0000019118,0.0000019098,0.0000019076,0.0000019054, -0.0000019031,0.0000019011,0.0000018996,0.0000018987,0.0000018983, -0.0000018983,0.0000018984,0.0000018987,0.0000018987,0.0000018984, -0.0000018979,0.0000018973,0.0000018965,0.0000018955,0.0000018944, -0.0000018932,0.0000018919,0.0000018907,0.0000018895,0.0000018880, -0.0000018859,0.0000018837,0.0000018818,0.0000018803,0.0000018790, -0.0000018780,0.0000018771,0.0000018764,0.0000018759,0.0000018757, -0.0000018755,0.0000018753,0.0000018752,0.0000018749,0.0000018747, -0.0000018745,0.0000018741,0.0000018735,0.0000018728,0.0000018721, -0.0000018712,0.0000018700,0.0000018685,0.0000018670,0.0000018656, -0.0000018647,0.0000018639,0.0000018633,0.0000018624,0.0000018613, -0.0000018601,0.0000018592,0.0000018587,0.0000018584,0.0000018582, -0.0000018579,0.0000018576,0.0000018571,0.0000018567,0.0000018562, -0.0000018555,0.0000018550,0.0000018547,0.0000018548,0.0000018552, -0.0000018558,0.0000018564,0.0000018567,0.0000018567,0.0000018561, -0.0000018561,0.0000018548,0.0000018530,0.0000018511,0.0000018491, -0.0000018477,0.0000018474,0.0000018483,0.0000018502,0.0000018523, -0.0000018540,0.0000018550,0.0000018557,0.0000018567,0.0000018581, -0.0000018599,0.0000018626,0.0000018672,0.0000018748,0.0000018845, -0.0000018943,0.0000019012,0.0000019037,0.0000019026,0.0000018987, -0.0000018946,0.0000018929,0.0000018931,0.0000018934,0.0000018932, -0.0000018927,0.0000018929,0.0000018944,0.0000018963,0.0000018974, -0.0000018972,0.0000018969,0.0000018973,0.0000018990,0.0000019019, -0.0000019058,0.0000019101,0.0000019143,0.0000019179,0.0000019211, -0.0000019239,0.0000019263,0.0000019284,0.0000019301,0.0000019312, -0.0000019315,0.0000019311,0.0000019302,0.0000019291,0.0000019280, -0.0000019268,0.0000019255,0.0000019245,0.0000019241,0.0000019248, -0.0000019265,0.0000019289,0.0000019311,0.0000019321,0.0000019325, -0.0000019324,0.0000019323,0.0000019322,0.0000019321,0.0000019317, -0.0000019311,0.0000019308,0.0000019308,0.0000019313,0.0000019320, -0.0000019330,0.0000019340,0.0000019346,0.0000019353,0.0000019358, -0.0000019357,0.0000019353,0.0000019342,0.0000019322,0.0000019294, -0.0000019255,0.0000019206,0.0000019149,0.0000019086,0.0000019022, -0.0000018958,0.0000018902,0.0000018857,0.0000018825,0.0000018807, -0.0000018800,0.0000018797,0.0000018792,0.0000018782,0.0000018763, -0.0000018749,0.0000018747,0.0000018757,0.0000018784,0.0000018818, -0.0000018852,0.0000018869,0.0000018866,0.0000018842,0.0000018801, -0.0000018749,0.0000018700,0.0000018662,0.0000018635,0.0000018619, -0.0000018613,0.0000018615,0.0000018616,0.0000018614,0.0000018607, -0.0000018604,0.0000018611,0.0000018635,0.0000018678,0.0000018734, -0.0000018798,0.0000018865,0.0000018921,0.0000018963,0.0000018993, -0.0000019001,0.0000019003,0.0000019014,0.0000019020,0.0000019011, -0.0000018988,0.0000018951,0.0000018902,0.0000018847,0.0000018801, -0.0000018781,0.0000018770,0.0000018769,0.0000018769,0.0000018766, -0.0000018762,0.0000018761,0.0000018764,0.0000018773,0.0000018790, -0.0000018811,0.0000018833,0.0000018852,0.0000018866,0.0000018877, -0.0000018887,0.0000018894,0.0000018896,0.0000018895,0.0000018890, -0.0000018882,0.0000018872,0.0000018859,0.0000018842,0.0000018821, -0.0000018802,0.0000018784,0.0000018769,0.0000018758,0.0000018751, -0.0000018746,0.0000018743,0.0000018744,0.0000018747,0.0000018751, -0.0000018757,0.0000018765,0.0000018774,0.0000018783,0.0000018791, -0.0000018802,0.0000018816,0.0000018832,0.0000018848,0.0000018866, -0.0000018884,0.0000018902,0.0000018922,0.0000018945,0.0000018973, -0.0000019002,0.0000019032,0.0000019060,0.0000019087,0.0000019112, -0.0000019134,0.0000019153,0.0000019171,0.0000019188,0.0000019202, -0.0000019212,0.0000019219,0.0000019224,0.0000019230,0.0000019239, -0.0000019254,0.0000019273,0.0000019300,0.0000019339,0.0000019392, -0.0000019459,0.0000019537,0.0000019622,0.0000019716,0.0000019814, -0.0000019907,0.0000019989,0.0000020057,0.0000020111,0.0000020150, -0.0000020176,0.0000020186,0.0000020184,0.0000020182,0.0000020187, -0.0000020202,0.0000020224,0.0000020244,0.0000020250,0.0000020242, -0.0000020230,0.0000020241,0.0000020293,0.0000020363,0.0000020412, -0.0000020424,0.0000020429,0.0000020449,0.0000020485,0.0000020516, -0.0000020526,0.0000020523,0.0000020514,0.0000020500,0.0000020483, -0.0000020472,0.0000020471,0.0000020480,0.0000020498,0.0000020521, -0.0000020545,0.0000020569,0.0000020593,0.0000020616,0.0000020638, -0.0000020656,0.0000020671,0.0000020681,0.0000020685,0.0000020685, -0.0000020683,0.0000020678,0.0000020668,0.0000020655,0.0000020640, -0.0000020622,0.0000020604,0.0000020585,0.0000020566,0.0000020546, -0.0000020526,0.0000020510,0.0000020500,0.0000020494,0.0000020491, -0.0000020491,0.0000020493,0.0000020498,0.0000020502,0.0000020506, -0.0000020511,0.0000020518,0.0000020528,0.0000020537,0.0000020543, -0.0000020544,0.0000020542,0.0000020534,0.0000020521,0.0000020504, -0.0000020484,0.0000020463,0.0000020439,0.0000020414,0.0000020386, -0.0000020353,0.0000020318,0.0000020284,0.0000020255,0.0000020232, -0.0000020216,0.0000020212,0.0000020225,0.0000020253,0.0000020285, -0.0000020308,0.0000020317,0.0000020317,0.0000020314,0.0000020314, -0.0000020317,0.0000020326,0.0000020358,0.0000020408,0.0000020426, -0.0000020413,0.0000020405,0.0000020449,0.0000020505,0.0000020482, -0.0000020353,0.0000020207,0.0000020135,0.0000020132,0.0000020156, -0.0000020168,0.0000020166,0.0000020161,0.0000020135,0.0000020070, -0.0000020007,0.0000019993,0.0000020039,0.0000020184,0.0000020321, -0.0000020348,0.0000020331,0.0000020322,0.0000020280,0.0000020142, -0.0000020052,0.0000020123,0.0000020342,0.0000020598,0.0000020744, -0.0000020776,0.0000020798,0.0000020834,0.0000020860,0.0000020882, -0.0000020920,0.0000020983,0.0000021065,0.0000021141,0.0000021184, -0.0000021201,0.0000021219,0.0000021254,0.0000021298,0.0000021338, -0.0000021364,0.0000021374,0.0000021373,0.0000021368,0.0000021367, -0.0000021369,0.0000021368,0.0000021367,0.0000021369,0.0000021367, -0.0000021362,0.0000021357,0.0000021351,0.0000021342,0.0000021333, -0.0000021326,0.0000021321,0.0000021315,0.0000021306,0.0000021296, -0.0000021284,0.0000021269,0.0000021248,0.0000021224,0.0000021198, -0.0000021168,0.0000021139,0.0000021114,0.0000021090,0.0000021068, -0.0000021048,0.0000021027,0.0000021005,0.0000020985,0.0000020967, -0.0000020949,0.0000020929,0.0000020910,0.0000020892,0.0000020876, -0.0000020867,0.0000020868,0.0000020877,0.0000020889,0.0000020901, -0.0000020910,0.0000020921,0.0000020932,0.0000020942,0.0000020950, -0.0000020956,0.0000020959,0.0000020961,0.0000020962,0.0000020964, -0.0000020966,0.0000020966,0.0000020964,0.0000020958,0.0000020950, -0.0000020942,0.0000020936,0.0000020931,0.0000020925,0.0000020919, -0.0000020915,0.0000020913,0.0000020911,0.0000020906,0.0000020896, -0.0000020885,0.0000020875,0.0000020866,0.0000020855,0.0000020841, -0.0000020824,0.0000020808,0.0000020794,0.0000020784,0.0000020775, -0.0000020767,0.0000020762,0.0000020759,0.0000020754,0.0000020744, -0.0000020734,0.0000020726,0.0000020720,0.0000020716,0.0000020715, -0.0000020716,0.0000020715,0.0000020725,0.0000020735,0.0000020743, -0.0000020750,0.0000020757,0.0000020768,0.0000020783,0.0000020802, -0.0000020823,0.0000020845,0.0000020867,0.0000020886,0.0000020902, -0.0000020918,0.0000020929,0.0000020937,0.0000020942,0.0000020945, -0.0000020946,0.0000020945,0.0000020944,0.0000020940,0.0000020933, -0.0000020920,0.0000020903,0.0000020881,0.0000020858,0.0000020832, -0.0000020808,0.0000020779,0.0000020748,0.0000020724,0.0000020700, -0.0000020687,0.0000020681,0.0000020683,0.0000020688,0.0000020694, -0.0000020700,0.0000020705,0.0000020707,0.0000020702,0.0000020691, -0.0000020673,0.0000020649,0.0000020624,0.0000020600,0.0000020581, -0.0000020565,0.0000020548,0.0000020534,0.0000020519,0.0000020502, -0.0000020484,0.0000020466,0.0000020454,0.0000020452,0.0000020453, -0.0000020465,0.0000020485,0.0000020510,0.0000020535,0.0000020556, -0.0000020574,0.0000020589,0.0000020601,0.0000020614,0.0000020629, -0.0000020640,0.0000020648,0.0000020654,0.0000020658,0.0000020661, -0.0000020667,0.0000020679,0.0000020695,0.0000020711,0.0000020725, -0.0000020737,0.0000020744,0.0000020745,0.0000020741,0.0000020730, -0.0000020716,0.0000020702,0.0000020692,0.0000020683,0.0000020674, -0.0000020664,0.0000020652,0.0000020635,0.0000020614,0.0000020597, -0.0000020590,0.0000020587,0.0000020583,0.0000020588,0.0000020596, -0.0000020603,0.0000020609,0.0000020614,0.0000020621,0.0000020629, -0.0000020633,0.0000020635,0.0000020636,0.0000020636,0.0000020639, -0.0000020645,0.0000020654,0.0000020664,0.0000020671,0.0000020676, -0.0000020676,0.0000020674,0.0000020668,0.0000020659,0.0000020649, -0.0000020643,0.0000020641,0.0000020647,0.0000020659,0.0000020673, -0.0000020686,0.0000020698,0.0000020711,0.0000020727,0.0000020744, -0.0000020764,0.0000020790,0.0000020817,0.0000020841,0.0000020857, -0.0000020867,0.0000020870,0.0000020867,0.0000020854,0.0000020829, -0.0000020794,0.0000020753,0.0000020715,0.0000020686,0.0000020666, -0.0000020651,0.0000020639,0.0000020626,0.0000020611,0.0000020590, -0.0000020564,0.0000020536,0.0000020509,0.0000020487,0.0000020471, -0.0000020465,0.0000020467,0.0000020479,0.0000020494,0.0000020514, -0.0000020543,0.0000020581,0.0000020627,0.0000020678,0.0000020725, -0.0000020762,0.0000020789,0.0000020804,0.0000020811,0.0000020819, -0.0000020834,0.0000020849,0.0000020868,0.0000020887,0.0000020900, -0.0000020909,0.0000020921,0.0000020938,0.0000020957,0.0000020969, -0.0000020975,0.0000020975,0.0000020972,0.0000020964,0.0000020959, -0.0000020955,0.0000020956,0.0000020956,0.0000020959,0.0000020964, -0.0000020974,0.0000020985,0.0000020991,0.0000020989,0.0000020979, -0.0000020964,0.0000020948,0.0000020929,0.0000020908,0.0000020887, -0.0000020863,0.0000020834,0.0000020802,0.0000020776,0.0000020759, -0.0000020749,0.0000020741,0.0000020732,0.0000020724,0.0000020714, -0.0000020702,0.0000020688,0.0000020673,0.0000020654,0.0000020627, -0.0000020594,0.0000020560,0.0000020527,0.0000020498,0.0000020480, -0.0000020466,0.0000020454,0.0000020441,0.0000020425,0.0000020409, -0.0000020403,0.0000020407,0.0000020416,0.0000020423,0.0000020424, -0.0000020422,0.0000020417,0.0000020409,0.0000020396,0.0000020378, -0.0000020354,0.0000020326,0.0000020294,0.0000020271,0.0000020246, -0.0000020221,0.0000020201,0.0000020189,0.0000020185,0.0000020186, -0.0000020191,0.0000020195,0.0000020196,0.0000020193,0.0000020184, -0.0000020169,0.0000020151,0.0000020135,0.0000020122,0.0000020110, -0.0000020097,0.0000020083,0.0000020073,0.0000020071,0.0000020081, -0.0000020099,0.0000020124,0.0000020152,0.0000020182,0.0000020209, -0.0000020228,0.0000020238,0.0000020237,0.0000020228,0.0000020209, -0.0000020183,0.0000020153,0.0000020124,0.0000020100,0.0000020083, -0.0000020078,0.0000020078,0.0000020083,0.0000020087,0.0000020093, -0.0000020100,0.0000020107,0.0000020112,0.0000020119,0.0000020126, -0.0000020133,0.0000020143,0.0000020160,0.0000020184,0.0000020211, -0.0000020236,0.0000020256,0.0000020269,0.0000020280,0.0000020283, -0.0000020281,0.0000020275,0.0000020264,0.0000020248,0.0000020227, -0.0000020202,0.0000020176,0.0000020153,0.0000020133,0.0000020120, -0.0000020103,0.0000020089,0.0000020075,0.0000020063,0.0000020054, -0.0000020051,0.0000020056,0.0000020074,0.0000020103,0.0000020142, -0.0000020190,0.0000020242,0.0000020291,0.0000020325,0.0000020339, -0.0000020338,0.0000020335,0.0000020334,0.0000020341,0.0000020354, -0.0000020371,0.0000020385,0.0000020399,0.0000020408,0.0000020409, -0.0000020402,0.0000020385,0.0000020360,0.0000020324,0.0000020278, -0.0000020221,0.0000020152,0.0000020076,0.0000020000,0.0000019933, -0.0000019883,0.0000019852,0.0000019835,0.0000019824,0.0000019815, -0.0000019807,0.0000019796,0.0000019777,0.0000019758,0.0000019746, -0.0000019743,0.0000019741,0.0000019758,0.0000019775,0.0000019795, -0.0000019816,0.0000019825,0.0000019832,0.0000019827,0.0000019805, -0.0000019772,0.0000019727,0.0000019677,0.0000019626,0.0000019578, -0.0000019541,0.0000019519,0.0000019510,0.0000019500,0.0000019491, -0.0000019486,0.0000019484,0.0000019486,0.0000019495,0.0000019506, -0.0000019517,0.0000019528,0.0000019532,0.0000019535,0.0000019545, -0.0000019568,0.0000019601,0.0000019642,0.0000019682,0.0000019720, -0.0000019764,0.0000019822,0.0000019895,0.0000019966,0.0000020017, -0.0000020020,0.0000020008,0.0000019984,0.0000019963,0.0000019964, -0.0000019979,0.0000020004,0.0000020029,0.0000020053,0.0000020078, -0.0000020107,0.0000020142,0.0000020182,0.0000020223,0.0000020264, -0.0000020306,0.0000020354,0.0000020403,0.0000020448,0.0000020488, -0.0000020521,0.0000020545,0.0000020561,0.0000020571,0.0000020578, -0.0000020587,0.0000020591,0.0000020587,0.0000020577,0.0000020565, -0.0000020555,0.0000020547,0.0000020544,0.0000020544,0.0000020543, -0.0000020530,0.0000020503,0.0000020463,0.0000020410,0.0000020352, -0.0000020298,0.0000020251,0.0000020217,0.0000020193,0.0000020175, -0.0000020158,0.0000020141,0.0000020122,0.0000020103,0.0000020092, -0.0000020092,0.0000020094,0.0000020090,0.0000020077,0.0000020052, -0.0000020013,0.0000019962,0.0000019905,0.0000019851,0.0000019804, -0.0000019766,0.0000019740,0.0000019733,0.0000019743,0.0000019771, -0.0000019812,0.0000019856,0.0000019898,0.0000019936,0.0000019966, -0.0000019982,0.0000019984,0.0000019974,0.0000019954,0.0000019936, -0.0000019930,0.0000019935,0.0000019947,0.0000019957,0.0000019955, -0.0000019933,0.0000019890,0.0000019833,0.0000019773,0.0000019717, -0.0000019671,0.0000019638,0.0000019618,0.0000019609,0.0000019608, -0.0000019610,0.0000019614,0.0000019615,0.0000019613,0.0000019611, -0.0000019610,0.0000019612,0.0000019615,0.0000019618,0.0000019624, -0.0000019629,0.0000019635,0.0000019644,0.0000019651,0.0000019650, -0.0000019647,0.0000019643,0.0000019637,0.0000019630,0.0000019619, -0.0000019593,0.0000019552,0.0000019504,0.0000019453,0.0000019401, -0.0000019347,0.0000019297,0.0000019249,0.0000019205,0.0000019171, -0.0000019148,0.0000019136,0.0000019128,0.0000019120,0.0000019115, -0.0000019113,0.0000019112,0.0000019110,0.0000019105,0.0000019094, -0.0000019076,0.0000019055,0.0000019028,0.0000018998,0.0000018968, -0.0000018945,0.0000018924,0.0000018909,0.0000018891,0.0000018876, -0.0000018866,0.0000018868,0.0000018889,0.0000018928,0.0000018974, -0.0000019025,0.0000019083,0.0000019147,0.0000019216,0.0000019290, -0.0000019366,0.0000019438,0.0000019504,0.0000019563,0.0000019619, -0.0000019669,0.0000019710,0.0000019741,0.0000019762,0.0000019780, -0.0000019795,0.0000019811,0.0000019834,0.0000019858,0.0000019882, -0.0000019897,0.0000019902,0.0000019898,0.0000019886,0.0000019867, -0.0000019854,0.0000019846,0.0000019844,0.0000019848,0.0000019856, -0.0000019865,0.0000019872,0.0000019875,0.0000019875,0.0000019869, -0.0000019862,0.0000019854,0.0000019844,0.0000019833,0.0000019824, -0.0000019814,0.0000019803,0.0000019791,0.0000019784,0.0000019782, -0.0000019785,0.0000019788,0.0000019792,0.0000019793,0.0000019785, -0.0000019773,0.0000019746,0.0000019698,0.0000019631,0.0000019546, -0.0000019454,0.0000019370,0.0000019307,0.0000019272,0.0000019264, -0.0000019277,0.0000019312,0.0000019361,0.0000019410,0.0000019440, -0.0000019450,0.0000019451,0.0000019457,0.0000019469,0.0000019480, -0.0000019486,0.0000019484,0.0000019468,0.0000019436,0.0000019393, -0.0000019354,0.0000019320,0.0000019284,0.0000019247,0.0000019217, -0.0000019186,0.0000019141,0.0000019084,0.0000019031,0.0000018999, -0.0000018982,0.0000018992,0.0000019026,0.0000019067,0.0000019098, -0.0000019111,0.0000019112,0.0000019119,0.0000019142,0.0000019171, -0.0000019189,0.0000019186,0.0000019154,0.0000019096,0.0000019031, -0.0000018966,0.0000018904,0.0000018849,0.0000018790,0.0000018716, -0.0000018639,0.0000018581,0.0000018558,0.0000018562,0.0000018586, -0.0000018622,0.0000018661,0.0000018696,0.0000018717,0.0000018724, -0.0000018723,0.0000018719,0.0000018712,0.0000018702,0.0000018688, -0.0000018677,0.0000018669,0.0000018661,0.0000018657,0.0000018655, -0.0000018659,0.0000018671,0.0000018692,0.0000018717,0.0000018743, -0.0000018764,0.0000018783,0.0000018804,0.0000018832,0.0000018867, -0.0000018906,0.0000018941,0.0000018964,0.0000018978,0.0000018983, -0.0000018980,0.0000018966,0.0000018930,0.0000018863,0.0000018778, -0.0000018687,0.0000018587,0.0000018476,0.0000018389,0.0000018341, -0.0000018311,0.0000018280,0.0000018250,0.0000018226,0.0000018213, -0.0000018200,0.0000018183,0.0000018165,0.0000018150,0.0000018143, -0.0000018144,0.0000018150,0.0000018161,0.0000018170,0.0000018176, -0.0000018177,0.0000018168,0.0000018156,0.0000018156,0.0000018165, -0.0000018185,0.0000018216,0.0000018250,0.0000018280,0.0000018300, -0.0000018306,0.0000018298,0.0000018270,0.0000018222,0.0000018158, -0.0000018098,0.0000018051,0.0000018013,0.0000017997,0.0000018019, -0.0000018099,0.0000018176,0.0000018198,0.0000018209,0.0000018241, -0.0000018274,0.0000018289,0.0000018291,0.0000018286,0.0000018276, -0.0000018266,0.0000018262,0.0000018265,0.0000018282,0.0000018308, -0.0000018335,0.0000018360,0.0000018381,0.0000018392,0.0000018385, -0.0000018351,0.0000018288,0.0000018204,0.0000018095,0.0000017967, -0.0000017855,0.0000017781,0.0000017733,0.0000017713,0.0000017721, -0.0000017759,0.0000017791,0.0000017798,0.0000017789,0.0000017782, -0.0000017782,0.0000017782,0.0000017775,0.0000017770,0.0000017771, -0.0000017786,0.0000017810,0.0000017824,0.0000017820,0.0000017798, -0.0000017775,0.0000017768,0.0000017800,0.0000017894,0.0000018028, -0.0000018143,0.0000018207,0.0000018242,0.0000018306,0.0000018417, -0.0000018518,0.0000018560,0.0000018574,0.0000018608,0.0000018678, -0.0000018768,0.0000018880,0.0000019011,0.0000019114,0.0000019152, -0.0000019148,0.0000019117,0.0000019068,0.0000019014,0.0000018967, -0.0000018933,0.0000018914,0.0000018913,0.0000018922,0.0000018937, -0.0000018958,0.0000018978,0.0000019002,0.0000019024,0.0000019043, -0.0000019058,0.0000019069,0.0000019076,0.0000019080,0.0000019081, -0.0000019080,0.0000019079,0.0000019079,0.0000019090,0.0000019107, -0.0000019133,0.0000019149,0.0000019138,0.0000019063,0.0000018892, -0.0000018695,0.0000018508,0.0000018347,0.0000018203,0.0000018101, -0.0000018076,0.0000018102,0.0000018138,0.0000018163,0.0000018173, -0.0000018178,0.0000018182,0.0000018186,0.0000018187,0.0000018186, -0.0000018180,0.0000018169,0.0000018152,0.0000018127,0.0000018091, -0.0000018040,0.0000017970,0.0000017891,0.0000017837,0.0000017812, -0.0000017803,0.0000017791,0.0000017765,0.0000017734,0.0000017714, -0.0000017707,0.0000017701,0.0000017694,0.0000017688,0.0000017690, -0.0000017699,0.0000017707,0.0000017715,0.0000017723,0.0000017733, -0.0000017749,0.0000017772,0.0000017807,0.0000017859,0.0000017929, -0.0000018015,0.0000018114,0.0000018224,0.0000018342,0.0000018460, -0.0000018571,0.0000018669,0.0000018748,0.0000018802,0.0000018834, -0.0000018828,0.0000018830,0.0000018829,0.0000018831,0.0000018858, -0.0000018908,0.0000018974,0.0000019039,0.0000019083,0.0000019106, -0.0000019106,0.0000019098,0.0000019089,0.0000019080,0.0000019067, -0.0000019046,0.0000019019,0.0000018986,0.0000018956,0.0000018936, -0.0000018930,0.0000018933,0.0000018948,0.0000018971,0.0000019000, -0.0000019030,0.0000019063,0.0000019098,0.0000019133,0.0000019170, -0.0000019208,0.0000019243,0.0000019277,0.0000019303,0.0000019321, -0.0000019327,0.0000019308,0.0000019294,0.0000019267,0.0000019236, -0.0000019209,0.0000019183,0.0000019158,0.0000019137,0.0000019119, -0.0000019100,0.0000019080,0.0000019059,0.0000019035,0.0000019011, -0.0000018987,0.0000018965,0.0000018945,0.0000018929,0.0000018923, -0.0000018922,0.0000018925,0.0000018928,0.0000018933,0.0000018934, -0.0000018931,0.0000018927,0.0000018922,0.0000018914,0.0000018903, -0.0000018890,0.0000018876,0.0000018861,0.0000018847,0.0000018832, -0.0000018814,0.0000018795,0.0000018779,0.0000018767,0.0000018758, -0.0000018750,0.0000018743,0.0000018737,0.0000018729,0.0000018721, -0.0000018715,0.0000018711,0.0000018706,0.0000018700,0.0000018694, -0.0000018688,0.0000018680,0.0000018672,0.0000018665,0.0000018658, -0.0000018651,0.0000018643,0.0000018632,0.0000018619,0.0000018607, -0.0000018599,0.0000018594,0.0000018591,0.0000018587,0.0000018582, -0.0000018576,0.0000018570,0.0000018566,0.0000018563,0.0000018561, -0.0000018560,0.0000018557,0.0000018553,0.0000018547,0.0000018542, -0.0000018537,0.0000018530,0.0000018527,0.0000018528,0.0000018533, -0.0000018541,0.0000018550,0.0000018560,0.0000018565,0.0000018567, -0.0000018563,0.0000018560,0.0000018547,0.0000018526,0.0000018503, -0.0000018481,0.0000018462,0.0000018449,0.0000018445,0.0000018451, -0.0000018463,0.0000018475,0.0000018485,0.0000018491,0.0000018498, -0.0000018511,0.0000018527,0.0000018546,0.0000018579,0.0000018641, -0.0000018738,0.0000018853,0.0000018958,0.0000019023,0.0000019034, -0.0000019016,0.0000018974,0.0000018937,0.0000018924,0.0000018925, -0.0000018927,0.0000018923,0.0000018921,0.0000018928,0.0000018948, -0.0000018968,0.0000018980,0.0000018983,0.0000018984,0.0000018988, -0.0000019002,0.0000019027,0.0000019061,0.0000019097,0.0000019129, -0.0000019157,0.0000019180,0.0000019200,0.0000019218,0.0000019234, -0.0000019245,0.0000019249,0.0000019248,0.0000019241,0.0000019229, -0.0000019214,0.0000019198,0.0000019183,0.0000019169,0.0000019161, -0.0000019163,0.0000019189,0.0000019223,0.0000019255,0.0000019280, -0.0000019298,0.0000019307,0.0000019311,0.0000019311,0.0000019306, -0.0000019296,0.0000019289,0.0000019284,0.0000019287,0.0000019297, -0.0000019311,0.0000019324,0.0000019335,0.0000019346,0.0000019355, -0.0000019359,0.0000019359,0.0000019356,0.0000019349,0.0000019335, -0.0000019313,0.0000019281,0.0000019239,0.0000019188,0.0000019133, -0.0000019074,0.0000019011,0.0000018949,0.0000018892,0.0000018847, -0.0000018818,0.0000018807,0.0000018807,0.0000018809,0.0000018808, -0.0000018798,0.0000018779,0.0000018764,0.0000018756,0.0000018761, -0.0000018780,0.0000018807,0.0000018832,0.0000018833,0.0000018817, -0.0000018783,0.0000018737,0.0000018689,0.0000018649,0.0000018620, -0.0000018606,0.0000018600,0.0000018596,0.0000018592,0.0000018583, -0.0000018572,0.0000018563,0.0000018559,0.0000018563,0.0000018580, -0.0000018614,0.0000018665,0.0000018730,0.0000018802,0.0000018868, -0.0000018922,0.0000018969,0.0000019009,0.0000019025,0.0000019032, -0.0000019035,0.0000019023,0.0000018991,0.0000018941,0.0000018881, -0.0000018825,0.0000018783,0.0000018766,0.0000018755,0.0000018748, -0.0000018739,0.0000018732,0.0000018732,0.0000018738,0.0000018751, -0.0000018768,0.0000018787,0.0000018802,0.0000018813,0.0000018821, -0.0000018826,0.0000018828,0.0000018825,0.0000018823,0.0000018818, -0.0000018810,0.0000018801,0.0000018789,0.0000018776,0.0000018764, -0.0000018752,0.0000018740,0.0000018729,0.0000018720,0.0000018712, -0.0000018704,0.0000018696,0.0000018689,0.0000018682,0.0000018674, -0.0000018668,0.0000018663,0.0000018658,0.0000018653,0.0000018650, -0.0000018648,0.0000018647,0.0000018651,0.0000018660,0.0000018671, -0.0000018682,0.0000018695,0.0000018709,0.0000018729,0.0000018752, -0.0000018779,0.0000018809,0.0000018840,0.0000018876,0.0000018913, -0.0000018952,0.0000018991,0.0000019029,0.0000019062,0.0000019088, -0.0000019109,0.0000019124,0.0000019134,0.0000019142,0.0000019150, -0.0000019160,0.0000019170,0.0000019184,0.0000019206,0.0000019240, -0.0000019286,0.0000019342,0.0000019413,0.0000019503,0.0000019608, -0.0000019721,0.0000019833,0.0000019938,0.0000020024,0.0000020090, -0.0000020133,0.0000020157,0.0000020164,0.0000020163,0.0000020161, -0.0000020164,0.0000020177,0.0000020196,0.0000020210,0.0000020211, -0.0000020200,0.0000020199,0.0000020233,0.0000020301,0.0000020361, -0.0000020391,0.0000020400,0.0000020409,0.0000020431,0.0000020461, -0.0000020483,0.0000020490,0.0000020486,0.0000020474,0.0000020460, -0.0000020454,0.0000020456,0.0000020467,0.0000020485,0.0000020507, -0.0000020531,0.0000020555,0.0000020578,0.0000020600,0.0000020618, -0.0000020633,0.0000020644,0.0000020652,0.0000020656,0.0000020658, -0.0000020658,0.0000020656,0.0000020651,0.0000020642,0.0000020631, -0.0000020617,0.0000020602,0.0000020587,0.0000020569,0.0000020551, -0.0000020533,0.0000020518,0.0000020511,0.0000020509,0.0000020509, -0.0000020511,0.0000020515,0.0000020521,0.0000020528,0.0000020534, -0.0000020543,0.0000020553,0.0000020562,0.0000020569,0.0000020572, -0.0000020571,0.0000020564,0.0000020555,0.0000020541,0.0000020523, -0.0000020500,0.0000020474,0.0000020447,0.0000020420,0.0000020391, -0.0000020360,0.0000020327,0.0000020293,0.0000020264,0.0000020241, -0.0000020224,0.0000020219,0.0000020227,0.0000020246,0.0000020267, -0.0000020283,0.0000020292,0.0000020298,0.0000020303,0.0000020308, -0.0000020307,0.0000020311,0.0000020341,0.0000020390,0.0000020410, -0.0000020396,0.0000020392,0.0000020443,0.0000020498,0.0000020459, -0.0000020321,0.0000020184,0.0000020120,0.0000020118,0.0000020140, -0.0000020150,0.0000020149,0.0000020143,0.0000020108,0.0000020042, -0.0000019996,0.0000019994,0.0000020068,0.0000020229,0.0000020350, -0.0000020366,0.0000020346,0.0000020341,0.0000020281,0.0000020141, -0.0000020073,0.0000020170,0.0000020416,0.0000020659,0.0000020772, -0.0000020795,0.0000020819,0.0000020852,0.0000020873,0.0000020893, -0.0000020925,0.0000020975,0.0000021045,0.0000021122,0.0000021182, -0.0000021210,0.0000021225,0.0000021241,0.0000021266,0.0000021298, -0.0000021328,0.0000021347,0.0000021356,0.0000021358,0.0000021358, -0.0000021356,0.0000021351,0.0000021349,0.0000021348,0.0000021346, -0.0000021345,0.0000021346,0.0000021346,0.0000021347,0.0000021350, -0.0000021353,0.0000021352,0.0000021349,0.0000021342,0.0000021326, -0.0000021297,0.0000021261,0.0000021225,0.0000021193,0.0000021163, -0.0000021138,0.0000021119,0.0000021100,0.0000021079,0.0000021058, -0.0000021037,0.0000021014,0.0000020988,0.0000020960,0.0000020932, -0.0000020905,0.0000020877,0.0000020852,0.0000020833,0.0000020824, -0.0000020826,0.0000020837,0.0000020853,0.0000020870,0.0000020887, -0.0000020903,0.0000020919,0.0000020932,0.0000020943,0.0000020952, -0.0000020959,0.0000020963,0.0000020966,0.0000020970,0.0000020973, -0.0000020976,0.0000020976,0.0000020972,0.0000020966,0.0000020962, -0.0000020959,0.0000020956,0.0000020953,0.0000020949,0.0000020946, -0.0000020944,0.0000020940,0.0000020931,0.0000020918,0.0000020904, -0.0000020893,0.0000020881,0.0000020868,0.0000020852,0.0000020837, -0.0000020824,0.0000020815,0.0000020810,0.0000020805,0.0000020801, -0.0000020798,0.0000020796,0.0000020793,0.0000020787,0.0000020777, -0.0000020766,0.0000020757,0.0000020747,0.0000020734,0.0000020723, -0.0000020716,0.0000020711,0.0000020706,0.0000020702,0.0000020702, -0.0000020704,0.0000020712,0.0000020725,0.0000020744,0.0000020764, -0.0000020791,0.0000020820,0.0000020848,0.0000020872,0.0000020890, -0.0000020905,0.0000020915,0.0000020922,0.0000020928,0.0000020931, -0.0000020932,0.0000020929,0.0000020926,0.0000020920,0.0000020909, -0.0000020893,0.0000020874,0.0000020859,0.0000020844,0.0000020823, -0.0000020795,0.0000020761,0.0000020727,0.0000020698,0.0000020674, -0.0000020659,0.0000020653,0.0000020648,0.0000020650,0.0000020652, -0.0000020655,0.0000020657,0.0000020657,0.0000020654,0.0000020645, -0.0000020629,0.0000020610,0.0000020594,0.0000020582,0.0000020567, -0.0000020554,0.0000020539,0.0000020521,0.0000020501,0.0000020479, -0.0000020460,0.0000020449,0.0000020445,0.0000020448,0.0000020461, -0.0000020481,0.0000020503,0.0000020528,0.0000020552,0.0000020574, -0.0000020590,0.0000020603,0.0000020617,0.0000020631,0.0000020644, -0.0000020654,0.0000020663,0.0000020668,0.0000020668,0.0000020670, -0.0000020676,0.0000020689,0.0000020704,0.0000020718,0.0000020732, -0.0000020740,0.0000020742,0.0000020742,0.0000020738,0.0000020733, -0.0000020728,0.0000020723,0.0000020718,0.0000020712,0.0000020704, -0.0000020693,0.0000020675,0.0000020649,0.0000020623,0.0000020601, -0.0000020584,0.0000020573,0.0000020570,0.0000020573,0.0000020576, -0.0000020581,0.0000020587,0.0000020597,0.0000020608,0.0000020617, -0.0000020622,0.0000020623,0.0000020626,0.0000020628,0.0000020631, -0.0000020636,0.0000020642,0.0000020649,0.0000020653,0.0000020654, -0.0000020652,0.0000020646,0.0000020635,0.0000020622,0.0000020609, -0.0000020601,0.0000020599,0.0000020603,0.0000020613,0.0000020623, -0.0000020632,0.0000020640,0.0000020646,0.0000020654,0.0000020668, -0.0000020688,0.0000020715,0.0000020743,0.0000020771,0.0000020796, -0.0000020821,0.0000020846,0.0000020867,0.0000020884,0.0000020883, -0.0000020868,0.0000020837,0.0000020793,0.0000020743,0.0000020693, -0.0000020652,0.0000020624,0.0000020608,0.0000020598,0.0000020585, -0.0000020565,0.0000020541,0.0000020518,0.0000020500,0.0000020490, -0.0000020486,0.0000020482,0.0000020484,0.0000020484,0.0000020488, -0.0000020498,0.0000020518,0.0000020549,0.0000020586,0.0000020623, -0.0000020657,0.0000020687,0.0000020709,0.0000020727,0.0000020743, -0.0000020756,0.0000020769,0.0000020782,0.0000020791,0.0000020800, -0.0000020817,0.0000020844,0.0000020870,0.0000020888,0.0000020897, -0.0000020899,0.0000020896,0.0000020892,0.0000020898,0.0000020910, -0.0000020925,0.0000020942,0.0000020958,0.0000020972,0.0000020986, -0.0000020998,0.0000021003,0.0000020999,0.0000020985,0.0000020965, -0.0000020946,0.0000020930,0.0000020918,0.0000020908,0.0000020894, -0.0000020874,0.0000020851,0.0000020829,0.0000020811,0.0000020798, -0.0000020789,0.0000020778,0.0000020765,0.0000020750,0.0000020735, -0.0000020718,0.0000020700,0.0000020683,0.0000020662,0.0000020639, -0.0000020612,0.0000020581,0.0000020552,0.0000020533,0.0000020519, -0.0000020505,0.0000020488,0.0000020469,0.0000020454,0.0000020449, -0.0000020455,0.0000020464,0.0000020470,0.0000020470,0.0000020467, -0.0000020457,0.0000020443,0.0000020425,0.0000020404,0.0000020378, -0.0000020347,0.0000020323,0.0000020299,0.0000020273,0.0000020248, -0.0000020227,0.0000020215,0.0000020212,0.0000020215,0.0000020224, -0.0000020233,0.0000020241,0.0000020246,0.0000020243,0.0000020234, -0.0000020222,0.0000020208,0.0000020195,0.0000020184,0.0000020172, -0.0000020155,0.0000020144,0.0000020143,0.0000020148,0.0000020157, -0.0000020174,0.0000020198,0.0000020223,0.0000020243,0.0000020258, -0.0000020264,0.0000020262,0.0000020254,0.0000020239,0.0000020216, -0.0000020189,0.0000020161,0.0000020136,0.0000020113,0.0000020098, -0.0000020090,0.0000020084,0.0000020084,0.0000020083,0.0000020085, -0.0000020090,0.0000020099,0.0000020108,0.0000020115,0.0000020120, -0.0000020129,0.0000020147,0.0000020174,0.0000020204,0.0000020232, -0.0000020255,0.0000020271,0.0000020280,0.0000020283,0.0000020283, -0.0000020274,0.0000020270,0.0000020257,0.0000020238,0.0000020213, -0.0000020187,0.0000020164,0.0000020142,0.0000020120,0.0000020097, -0.0000020076,0.0000020056,0.0000020038,0.0000020025,0.0000020017, -0.0000020016,0.0000020025,0.0000020046,0.0000020078,0.0000020121, -0.0000020169,0.0000020215,0.0000020252,0.0000020277,0.0000020292, -0.0000020301,0.0000020312,0.0000020326,0.0000020342,0.0000020362, -0.0000020381,0.0000020399,0.0000020411,0.0000020411,0.0000020410, -0.0000020401,0.0000020384,0.0000020362,0.0000020330,0.0000020282, -0.0000020216,0.0000020133,0.0000020044,0.0000019961,0.0000019895, -0.0000019852,0.0000019831,0.0000019826,0.0000019826,0.0000019833, -0.0000019840,0.0000019833,0.0000019822,0.0000019802,0.0000019780, -0.0000019763,0.0000019757,0.0000019753,0.0000019770,0.0000019788, -0.0000019810,0.0000019832,0.0000019840,0.0000019851,0.0000019835, -0.0000019807,0.0000019765,0.0000019709,0.0000019650,0.0000019597, -0.0000019557,0.0000019527,0.0000019506,0.0000019492,0.0000019479, -0.0000019476,0.0000019467,0.0000019465,0.0000019467,0.0000019474, -0.0000019486,0.0000019502,0.0000019523,0.0000019548,0.0000019577, -0.0000019608,0.0000019642,0.0000019677,0.0000019716,0.0000019757, -0.0000019804,0.0000019861,0.0000019925,0.0000019975,0.0000019999, -0.0000019992,0.0000019964,0.0000019935,0.0000019921,0.0000019927, -0.0000019949,0.0000019983,0.0000020024,0.0000020064,0.0000020102, -0.0000020143,0.0000020184,0.0000020223,0.0000020261,0.0000020301, -0.0000020343,0.0000020385,0.0000020425,0.0000020459,0.0000020484, -0.0000020499,0.0000020507,0.0000020514,0.0000020523,0.0000020531, -0.0000020534,0.0000020531,0.0000020525,0.0000020518,0.0000020510, -0.0000020503,0.0000020498,0.0000020491,0.0000020474,0.0000020445, -0.0000020404,0.0000020356,0.0000020302,0.0000020250,0.0000020206, -0.0000020177,0.0000020159,0.0000020147,0.0000020138,0.0000020126, -0.0000020111,0.0000020098,0.0000020093,0.0000020092,0.0000020086, -0.0000020066,0.0000020030,0.0000019981,0.0000019927,0.0000019872, -0.0000019821,0.0000019778,0.0000019743,0.0000019719,0.0000019712, -0.0000019719,0.0000019746,0.0000019786,0.0000019828,0.0000019865, -0.0000019891,0.0000019907,0.0000019913,0.0000019906,0.0000019890, -0.0000019874,0.0000019862,0.0000019859,0.0000019869,0.0000019886, -0.0000019902,0.0000019907,0.0000019899,0.0000019870,0.0000019822, -0.0000019764,0.0000019708,0.0000019660,0.0000019618,0.0000019583, -0.0000019561,0.0000019550,0.0000019545,0.0000019544,0.0000019542, -0.0000019537,0.0000019530,0.0000019524,0.0000019524,0.0000019528, -0.0000019533,0.0000019542,0.0000019551,0.0000019560,0.0000019569, -0.0000019579,0.0000019583,0.0000019580,0.0000019575,0.0000019572, -0.0000019573,0.0000019581,0.0000019584,0.0000019571,0.0000019538, -0.0000019495,0.0000019445,0.0000019391,0.0000019337,0.0000019288, -0.0000019240,0.0000019199,0.0000019169,0.0000019149,0.0000019140, -0.0000019134,0.0000019125,0.0000019117,0.0000019115,0.0000019115, -0.0000019113,0.0000019108,0.0000019099,0.0000019087,0.0000019074, -0.0000019052,0.0000019023,0.0000018991,0.0000018961,0.0000018934, -0.0000018905,0.0000018876,0.0000018848,0.0000018824,0.0000018815, -0.0000018829,0.0000018860,0.0000018902,0.0000018951,0.0000019004, -0.0000019058,0.0000019110,0.0000019165,0.0000019226,0.0000019292, -0.0000019360,0.0000019432,0.0000019506,0.0000019578,0.0000019644, -0.0000019698,0.0000019741,0.0000019771,0.0000019788,0.0000019798, -0.0000019801,0.0000019810,0.0000019821,0.0000019831,0.0000019839, -0.0000019845,0.0000019847,0.0000019844,0.0000019840,0.0000019840, -0.0000019840,0.0000019843,0.0000019850,0.0000019854,0.0000019855, -0.0000019851,0.0000019843,0.0000019835,0.0000019828,0.0000019824, -0.0000019816,0.0000019807,0.0000019799,0.0000019790,0.0000019780, -0.0000019770,0.0000019761,0.0000019758,0.0000019758,0.0000019764, -0.0000019771,0.0000019775,0.0000019776,0.0000019767,0.0000019746, -0.0000019707,0.0000019644,0.0000019562,0.0000019468,0.0000019375, -0.0000019298,0.0000019252,0.0000019228,0.0000019232,0.0000019260, -0.0000019307,0.0000019358,0.0000019395,0.0000019414,0.0000019424, -0.0000019435,0.0000019447,0.0000019455,0.0000019457,0.0000019453, -0.0000019437,0.0000019405,0.0000019367,0.0000019334,0.0000019307, -0.0000019278,0.0000019243,0.0000019209,0.0000019176,0.0000019132, -0.0000019073,0.0000019015,0.0000018977,0.0000018960,0.0000018972, -0.0000019007,0.0000019052,0.0000019089,0.0000019106,0.0000019110, -0.0000019115,0.0000019135,0.0000019163,0.0000019180,0.0000019177, -0.0000019143,0.0000019087,0.0000019025,0.0000018963,0.0000018905, -0.0000018847,0.0000018776,0.0000018689,0.0000018607,0.0000018556, -0.0000018544,0.0000018557,0.0000018589,0.0000018632,0.0000018671, -0.0000018697,0.0000018707,0.0000018707,0.0000018701,0.0000018693, -0.0000018681,0.0000018668,0.0000018657,0.0000018653,0.0000018653, -0.0000018654,0.0000018654,0.0000018657,0.0000018665,0.0000018678, -0.0000018693,0.0000018706,0.0000018714,0.0000018720,0.0000018727, -0.0000018739,0.0000018763,0.0000018797,0.0000018832,0.0000018859, -0.0000018879,0.0000018892,0.0000018894,0.0000018886,0.0000018855, -0.0000018794,0.0000018713,0.0000018627,0.0000018531,0.0000018428, -0.0000018357,0.0000018315,0.0000018275,0.0000018235,0.0000018205, -0.0000018188,0.0000018176,0.0000018165,0.0000018156,0.0000018149, -0.0000018143,0.0000018141,0.0000018143,0.0000018150,0.0000018158, -0.0000018163,0.0000018167,0.0000018166,0.0000018161,0.0000018154, -0.0000018155,0.0000018166,0.0000018189,0.0000018225,0.0000018268, -0.0000018305,0.0000018327,0.0000018335,0.0000018327,0.0000018297, -0.0000018247,0.0000018180,0.0000018107,0.0000018046,0.0000017993, -0.0000017957,0.0000017951,0.0000017988,0.0000018078,0.0000018162, -0.0000018190,0.0000018213,0.0000018252,0.0000018280,0.0000018288, -0.0000018286,0.0000018278,0.0000018267,0.0000018264,0.0000018271, -0.0000018286,0.0000018308,0.0000018335,0.0000018362,0.0000018381, -0.0000018387,0.0000018370,0.0000018324,0.0000018253,0.0000018158, -0.0000018039,0.0000017923,0.0000017841,0.0000017791,0.0000017760, -0.0000017761,0.0000017789,0.0000017825,0.0000017838,0.0000017835, -0.0000017825,0.0000017817,0.0000017809,0.0000017797,0.0000017787, -0.0000017787,0.0000017798,0.0000017806,0.0000017809,0.0000017800, -0.0000017779,0.0000017764,0.0000017770,0.0000017820,0.0000017924, -0.0000018053,0.0000018151,0.0000018194,0.0000018232,0.0000018317, -0.0000018436,0.0000018515,0.0000018536,0.0000018552,0.0000018609, -0.0000018691,0.0000018781,0.0000018897,0.0000019029,0.0000019106, -0.0000019120,0.0000019106,0.0000019071,0.0000019021,0.0000018968, -0.0000018923,0.0000018893,0.0000018888,0.0000018901,0.0000018934, -0.0000018975,0.0000019015,0.0000019048,0.0000019073,0.0000019098, -0.0000019118,0.0000019131,0.0000019141,0.0000019150,0.0000019155, -0.0000019156,0.0000019152,0.0000019144,0.0000019137,0.0000019122, -0.0000019105,0.0000019095,0.0000019091,0.0000019097,0.0000019116, -0.0000019128,0.0000019094,0.0000018930,0.0000018700,0.0000018510, -0.0000018366,0.0000018227,0.0000018125,0.0000018101,0.0000018125, -0.0000018151,0.0000018168,0.0000018178,0.0000018186,0.0000018193, -0.0000018195,0.0000018193,0.0000018188,0.0000018181,0.0000018173, -0.0000018164,0.0000018152,0.0000018133,0.0000018104,0.0000018054, -0.0000017975,0.0000017875,0.0000017808,0.0000017786,0.0000017785, -0.0000017777,0.0000017761,0.0000017747,0.0000017740,0.0000017734, -0.0000017728,0.0000017724,0.0000017725,0.0000017729,0.0000017734, -0.0000017738,0.0000017737,0.0000017743,0.0000017741,0.0000017744, -0.0000017761,0.0000017794,0.0000017841,0.0000017902,0.0000017975, -0.0000018063,0.0000018162,0.0000018269,0.0000018381,0.0000018495, -0.0000018605,0.0000018701,0.0000018769,0.0000018817,0.0000018827, -0.0000018826,0.0000018833,0.0000018846,0.0000018879,0.0000018933, -0.0000018993,0.0000019042,0.0000019073,0.0000019083,0.0000019072, -0.0000019060,0.0000019048,0.0000019037,0.0000019021,0.0000019002, -0.0000018978,0.0000018954,0.0000018937,0.0000018931,0.0000018933, -0.0000018943,0.0000018960,0.0000018982,0.0000019007,0.0000019033, -0.0000019060,0.0000019089,0.0000019117,0.0000019146,0.0000019175, -0.0000019205,0.0000019234,0.0000019256,0.0000019269,0.0000019269, -0.0000019247,0.0000019229,0.0000019200,0.0000019168,0.0000019136, -0.0000019110,0.0000019085,0.0000019063,0.0000019041,0.0000019019, -0.0000018998,0.0000018975,0.0000018954,0.0000018935,0.0000018919, -0.0000018909,0.0000018906,0.0000018907,0.0000018910,0.0000018913, -0.0000018916,0.0000018917,0.0000018915,0.0000018910,0.0000018902, -0.0000018891,0.0000018879,0.0000018866,0.0000018851,0.0000018835, -0.0000018819,0.0000018803,0.0000018788,0.0000018775,0.0000018766, -0.0000018759,0.0000018754,0.0000018748,0.0000018744,0.0000018738, -0.0000018729,0.0000018719,0.0000018710,0.0000018704,0.0000018697, -0.0000018688,0.0000018677,0.0000018665,0.0000018650,0.0000018635, -0.0000018622,0.0000018610,0.0000018599,0.0000018586,0.0000018571, -0.0000018555,0.0000018541,0.0000018532,0.0000018528,0.0000018526, -0.0000018525,0.0000018523,0.0000018522,0.0000018520,0.0000018519, -0.0000018522,0.0000018527,0.0000018532,0.0000018537,0.0000018538, -0.0000018537,0.0000018532,0.0000018525,0.0000018518,0.0000018513, -0.0000018511,0.0000018515,0.0000018522,0.0000018534,0.0000018548, -0.0000018559,0.0000018545,0.0000018555,0.0000018557,0.0000018549, -0.0000018530,0.0000018504,0.0000018477,0.0000018454,0.0000018437, -0.0000018425,0.0000018419,0.0000018418,0.0000018421,0.0000018425, -0.0000018428,0.0000018432,0.0000018439,0.0000018451,0.0000018466, -0.0000018491,0.0000018540,0.0000018626,0.0000018743,0.0000018867, -0.0000018968,0.0000019017,0.0000019022,0.0000018994,0.0000018954, -0.0000018926,0.0000018914,0.0000018912,0.0000018910,0.0000018905, -0.0000018906,0.0000018922,0.0000018947,0.0000018971,0.0000018984, -0.0000018991,0.0000018995,0.0000019000,0.0000019012,0.0000019031, -0.0000019055,0.0000019080,0.0000019104,0.0000019124,0.0000019140, -0.0000019153,0.0000019163,0.0000019170,0.0000019175,0.0000019174, -0.0000019168,0.0000019158,0.0000019147,0.0000019134,0.0000019119, -0.0000019107,0.0000019103,0.0000019117,0.0000019138,0.0000019163, -0.0000019189,0.0000019215,0.0000019236,0.0000019253,0.0000019266, -0.0000019273,0.0000019273,0.0000019268,0.0000019262,0.0000019261, -0.0000019266,0.0000019274,0.0000019285,0.0000019296,0.0000019308, -0.0000019318,0.0000019328,0.0000019335,0.0000019341,0.0000019342, -0.0000019336,0.0000019326,0.0000019311,0.0000019287,0.0000019255, -0.0000019215,0.0000019167,0.0000019113,0.0000019055,0.0000018995, -0.0000018937,0.0000018884,0.0000018843,0.0000018817,0.0000018810, -0.0000018813,0.0000018817,0.0000018814,0.0000018803,0.0000018783, -0.0000018764,0.0000018749,0.0000018748,0.0000018761,0.0000018777, -0.0000018788,0.0000018776,0.0000018751,0.0000018716,0.0000018675, -0.0000018640,0.0000018615,0.0000018600,0.0000018591,0.0000018582, -0.0000018573,0.0000018563,0.0000018552,0.0000018539,0.0000018525, -0.0000018515,0.0000018511,0.0000018522,0.0000018554,0.0000018605, -0.0000018668,0.0000018736,0.0000018814,0.0000018894,0.0000018960, -0.0000019007,0.0000019037,0.0000019036,0.0000019034,0.0000019012, -0.0000018971,0.0000018918,0.0000018862,0.0000018810,0.0000018770, -0.0000018742,0.0000018728,0.0000018717,0.0000018713,0.0000018716, -0.0000018723,0.0000018734,0.0000018746,0.0000018755,0.0000018762, -0.0000018767,0.0000018768,0.0000018766,0.0000018763,0.0000018762, -0.0000018758,0.0000018753,0.0000018748,0.0000018743,0.0000018738, -0.0000018733,0.0000018730,0.0000018725,0.0000018718,0.0000018710, -0.0000018701,0.0000018688,0.0000018674,0.0000018661,0.0000018647, -0.0000018631,0.0000018614,0.0000018596,0.0000018577,0.0000018555, -0.0000018535,0.0000018515,0.0000018497,0.0000018485,0.0000018481, -0.0000018482,0.0000018484,0.0000018489,0.0000018496,0.0000018506, -0.0000018519,0.0000018536,0.0000018556,0.0000018579,0.0000018608, -0.0000018643,0.0000018687,0.0000018736,0.0000018786,0.0000018833, -0.0000018876,0.0000018916,0.0000018951,0.0000018981,0.0000019009, -0.0000019037,0.0000019066,0.0000019090,0.0000019111,0.0000019133, -0.0000019157,0.0000019184,0.0000019216,0.0000019260,0.0000019325, -0.0000019411,0.0000019519,0.0000019642,0.0000019772,0.0000019893, -0.0000019992,0.0000020064,0.0000020109,0.0000020131,0.0000020140, -0.0000020139,0.0000020135,0.0000020136,0.0000020148,0.0000020167, -0.0000020176,0.0000020171,0.0000020165,0.0000020181,0.0000020234, -0.0000020299,0.0000020348,0.0000020371,0.0000020379,0.0000020388, -0.0000020406,0.0000020426,0.0000020440,0.0000020444,0.0000020440, -0.0000020432,0.0000020427,0.0000020429,0.0000020438,0.0000020454, -0.0000020474,0.0000020496,0.0000020520,0.0000020542,0.0000020562, -0.0000020577,0.0000020586,0.0000020594,0.0000020600,0.0000020604, -0.0000020606,0.0000020607,0.0000020608,0.0000020608,0.0000020606, -0.0000020600,0.0000020591,0.0000020579,0.0000020566,0.0000020549, -0.0000020532,0.0000020514,0.0000020502,0.0000020497,0.0000020498, -0.0000020502,0.0000020505,0.0000020510,0.0000020516,0.0000020526, -0.0000020539,0.0000020553,0.0000020568,0.0000020582,0.0000020592, -0.0000020596,0.0000020593,0.0000020586,0.0000020576,0.0000020562, -0.0000020544,0.0000020521,0.0000020493,0.0000020464,0.0000020435, -0.0000020407,0.0000020378,0.0000020346,0.0000020313,0.0000020285, -0.0000020263,0.0000020249,0.0000020242,0.0000020244,0.0000020250, -0.0000020257,0.0000020261,0.0000020266,0.0000020274,0.0000020286, -0.0000020294,0.0000020292,0.0000020293,0.0000020321,0.0000020371, -0.0000020392,0.0000020379,0.0000020384,0.0000020438,0.0000020470, -0.0000020422,0.0000020288,0.0000020167,0.0000020115,0.0000020113, -0.0000020129,0.0000020136,0.0000020136,0.0000020129,0.0000020085, -0.0000020022,0.0000019992,0.0000020003,0.0000020104,0.0000020277, -0.0000020374,0.0000020378,0.0000020369,0.0000020363,0.0000020270, -0.0000020126,0.0000020102,0.0000020238,0.0000020489,0.0000020707, -0.0000020795,0.0000020813,0.0000020836,0.0000020865,0.0000020884, -0.0000020904,0.0000020933,0.0000020970,0.0000021024,0.0000021095, -0.0000021165,0.0000021213,0.0000021232,0.0000021240,0.0000021252, -0.0000021274,0.0000021303,0.0000021329,0.0000021348,0.0000021358, -0.0000021361,0.0000021358,0.0000021354,0.0000021347,0.0000021342, -0.0000021335,0.0000021331,0.0000021330,0.0000021333,0.0000021338, -0.0000021346,0.0000021352,0.0000021357,0.0000021360,0.0000021356, -0.0000021337,0.0000021310,0.0000021275,0.0000021234,0.0000021190, -0.0000021150,0.0000021120,0.0000021098,0.0000021080,0.0000021063, -0.0000021048,0.0000021031,0.0000021015,0.0000020996,0.0000020974, -0.0000020948,0.0000020920,0.0000020895,0.0000020875,0.0000020865, -0.0000020863,0.0000020869,0.0000020880,0.0000020895,0.0000020911, -0.0000020928,0.0000020945,0.0000020961,0.0000020975,0.0000020987, -0.0000020995,0.0000021000,0.0000021002,0.0000021003,0.0000021004, -0.0000021004,0.0000021004,0.0000021000,0.0000020995,0.0000020990, -0.0000020987,0.0000020985,0.0000020982,0.0000020976,0.0000020972, -0.0000020969,0.0000020963,0.0000020952,0.0000020938,0.0000020924, -0.0000020910,0.0000020897,0.0000020883,0.0000020867,0.0000020849, -0.0000020834,0.0000020824,0.0000020819,0.0000020815,0.0000020814, -0.0000020813,0.0000020812,0.0000020810,0.0000020809,0.0000020807, -0.0000020805,0.0000020802,0.0000020797,0.0000020791,0.0000020785, -0.0000020780,0.0000020774,0.0000020768,0.0000020764,0.0000020760, -0.0000020756,0.0000020753,0.0000020755,0.0000020764,0.0000020775, -0.0000020794,0.0000020812,0.0000020831,0.0000020845,0.0000020858, -0.0000020872,0.0000020877,0.0000020881,0.0000020889,0.0000020893, -0.0000020895,0.0000020897,0.0000020898,0.0000020895,0.0000020891, -0.0000020886,0.0000020881,0.0000020878,0.0000020870,0.0000020856, -0.0000020833,0.0000020802,0.0000020767,0.0000020734,0.0000020702, -0.0000020678,0.0000020662,0.0000020652,0.0000020646,0.0000020640, -0.0000020632,0.0000020624,0.0000020617,0.0000020612,0.0000020605, -0.0000020597,0.0000020591,0.0000020587,0.0000020581,0.0000020574, -0.0000020566,0.0000020555,0.0000020537,0.0000020517,0.0000020495, -0.0000020476,0.0000020464,0.0000020459,0.0000020465,0.0000020479, -0.0000020497,0.0000020517,0.0000020538,0.0000020565,0.0000020588, -0.0000020606,0.0000020621,0.0000020637,0.0000020652,0.0000020665, -0.0000020677,0.0000020687,0.0000020694,0.0000020695,0.0000020694, -0.0000020695,0.0000020701,0.0000020711,0.0000020723,0.0000020735, -0.0000020743,0.0000020748,0.0000020750,0.0000020751,0.0000020754, -0.0000020758,0.0000020762,0.0000020760,0.0000020757,0.0000020753, -0.0000020744,0.0000020730,0.0000020709,0.0000020685,0.0000020661, -0.0000020638,0.0000020617,0.0000020601,0.0000020589,0.0000020579, -0.0000020574,0.0000020577,0.0000020584,0.0000020595,0.0000020603, -0.0000020609,0.0000020614,0.0000020619,0.0000020625,0.0000020629, -0.0000020635,0.0000020642,0.0000020647,0.0000020649,0.0000020650, -0.0000020648,0.0000020640,0.0000020627,0.0000020611,0.0000020596, -0.0000020580,0.0000020567,0.0000020562,0.0000020567,0.0000020577, -0.0000020584,0.0000020587,0.0000020589,0.0000020594,0.0000020604, -0.0000020617,0.0000020633,0.0000020654,0.0000020677,0.0000020702, -0.0000020726,0.0000020752,0.0000020784,0.0000020820,0.0000020853, -0.0000020869,0.0000020879,0.0000020870,0.0000020845,0.0000020808, -0.0000020758,0.0000020703,0.0000020653,0.0000020614,0.0000020588, -0.0000020573,0.0000020561,0.0000020548,0.0000020533,0.0000020519, -0.0000020508,0.0000020502,0.0000020497,0.0000020489,0.0000020484, -0.0000020477,0.0000020474,0.0000020480,0.0000020493,0.0000020510, -0.0000020532,0.0000020558,0.0000020586,0.0000020614,0.0000020645, -0.0000020669,0.0000020687,0.0000020699,0.0000020704,0.0000020709, -0.0000020725,0.0000020750,0.0000020775,0.0000020794,0.0000020809, -0.0000020817,0.0000020822,0.0000020830,0.0000020846,0.0000020865, -0.0000020889,0.0000020919,0.0000020945,0.0000020964,0.0000020980, -0.0000020994,0.0000020998,0.0000020991,0.0000020973,0.0000020950, -0.0000020929,0.0000020916,0.0000020911,0.0000020906,0.0000020906, -0.0000020903,0.0000020893,0.0000020876,0.0000020862,0.0000020853, -0.0000020842,0.0000020827,0.0000020808,0.0000020787,0.0000020764, -0.0000020742,0.0000020722,0.0000020706,0.0000020695,0.0000020684, -0.0000020665,0.0000020639,0.0000020617,0.0000020599,0.0000020583, -0.0000020565,0.0000020543,0.0000020521,0.0000020505,0.0000020500, -0.0000020505,0.0000020512,0.0000020516,0.0000020515,0.0000020509, -0.0000020499,0.0000020485,0.0000020468,0.0000020446,0.0000020417, -0.0000020394,0.0000020372,0.0000020347,0.0000020322,0.0000020297, -0.0000020278,0.0000020268,0.0000020266,0.0000020271,0.0000020278, -0.0000020287,0.0000020293,0.0000020294,0.0000020293,0.0000020287, -0.0000020277,0.0000020268,0.0000020259,0.0000020245,0.0000020228, -0.0000020214,0.0000020206,0.0000020204,0.0000020205,0.0000020211, -0.0000020226,0.0000020244,0.0000020261,0.0000020276,0.0000020287, -0.0000020292,0.0000020291,0.0000020285,0.0000020273,0.0000020254, -0.0000020232,0.0000020209,0.0000020185,0.0000020160,0.0000020135, -0.0000020113,0.0000020096,0.0000020085,0.0000020081,0.0000020081, -0.0000020083,0.0000020086,0.0000020086,0.0000020085,0.0000020087, -0.0000020097,0.0000020115,0.0000020137,0.0000020159,0.0000020177, -0.0000020193,0.0000020203,0.0000020211,0.0000020219,0.0000020225, -0.0000020230,0.0000020230,0.0000020225,0.0000020215,0.0000020198, -0.0000020186,0.0000020173,0.0000020155,0.0000020133,0.0000020109, -0.0000020083,0.0000020057,0.0000020033,0.0000020012,0.0000020004, -0.0000020004,0.0000020012,0.0000020029,0.0000020049,0.0000020073, -0.0000020100,0.0000020130,0.0000020161,0.0000020191,0.0000020220, -0.0000020248,0.0000020275,0.0000020300,0.0000020325,0.0000020350, -0.0000020372,0.0000020388,0.0000020397,0.0000020401,0.0000020401, -0.0000020394,0.0000020387,0.0000020374,0.0000020351,0.0000020312, -0.0000020254,0.0000020179,0.0000020094,0.0000020009,0.0000019933, -0.0000019876,0.0000019836,0.0000019820,0.0000019814,0.0000019822, -0.0000019841,0.0000019858,0.0000019873,0.0000019866,0.0000019847, -0.0000019819,0.0000019791,0.0000019773,0.0000019770,0.0000019766, -0.0000019782,0.0000019799,0.0000019818,0.0000019830,0.0000019829, -0.0000019831,0.0000019805,0.0000019770,0.0000019728,0.0000019681, -0.0000019635,0.0000019593,0.0000019559,0.0000019530,0.0000019506, -0.0000019485,0.0000019467,0.0000019456,0.0000019438,0.0000019433, -0.0000019436,0.0000019456,0.0000019494,0.0000019537,0.0000019578, -0.0000019614,0.0000019644,0.0000019675,0.0000019708,0.0000019741, -0.0000019778,0.0000019823,0.0000019876,0.0000019925,0.0000019959, -0.0000019957,0.0000019941,0.0000019911,0.0000019884,0.0000019882, -0.0000019908,0.0000019959,0.0000020014,0.0000020061,0.0000020103, -0.0000020145,0.0000020185,0.0000020221,0.0000020254,0.0000020285, -0.0000020320,0.0000020356,0.0000020391,0.0000020419,0.0000020438, -0.0000020450,0.0000020459,0.0000020473,0.0000020487,0.0000020497, -0.0000020501,0.0000020500,0.0000020497,0.0000020492,0.0000020484, -0.0000020475,0.0000020464,0.0000020447,0.0000020419,0.0000020381, -0.0000020336,0.0000020288,0.0000020240,0.0000020201,0.0000020175, -0.0000020160,0.0000020150,0.0000020142,0.0000020131,0.0000020118, -0.0000020108,0.0000020099,0.0000020087,0.0000020063,0.0000020021, -0.0000019966,0.0000019909,0.0000019855,0.0000019807,0.0000019765, -0.0000019734,0.0000019716,0.0000019710,0.0000019712,0.0000019734, -0.0000019769,0.0000019806,0.0000019836,0.0000019853,0.0000019858, -0.0000019853,0.0000019835,0.0000019811,0.0000019793,0.0000019786, -0.0000019787,0.0000019799,0.0000019819,0.0000019839,0.0000019851, -0.0000019853,0.0000019841,0.0000019810,0.0000019760,0.0000019705, -0.0000019658,0.0000019617,0.0000019581,0.0000019551,0.0000019530, -0.0000019516,0.0000019505,0.0000019494,0.0000019482,0.0000019470, -0.0000019458,0.0000019448,0.0000019441,0.0000019438,0.0000019439, -0.0000019446,0.0000019455,0.0000019464,0.0000019473,0.0000019483, -0.0000019488,0.0000019486,0.0000019483,0.0000019480,0.0000019480, -0.0000019484,0.0000019488,0.0000019486,0.0000019472,0.0000019445, -0.0000019407,0.0000019357,0.0000019305,0.0000019257,0.0000019216, -0.0000019187,0.0000019165,0.0000019149,0.0000019141,0.0000019137, -0.0000019130,0.0000019124,0.0000019122,0.0000019122,0.0000019119, -0.0000019113,0.0000019106,0.0000019098,0.0000019087,0.0000019068, -0.0000019041,0.0000019013,0.0000018984,0.0000018953,0.0000018915, -0.0000018874,0.0000018830,0.0000018796,0.0000018773,0.0000018775, -0.0000018796,0.0000018835,0.0000018887,0.0000018944,0.0000018996, -0.0000019041,0.0000019082,0.0000019122,0.0000019167,0.0000019219, -0.0000019279,0.0000019349,0.0000019427,0.0000019507,0.0000019583, -0.0000019653,0.0000019713,0.0000019761,0.0000019785,0.0000019795, -0.0000019795,0.0000019791,0.0000019787,0.0000019781,0.0000019782, -0.0000019785,0.0000019796,0.0000019808,0.0000019819,0.0000019828, -0.0000019839,0.0000019849,0.0000019853,0.0000019855,0.0000019847, -0.0000019836,0.0000019821,0.0000019814,0.0000019800,0.0000019793, -0.0000019780,0.0000019770,0.0000019760,0.0000019748,0.0000019737, -0.0000019726,0.0000019720,0.0000019718,0.0000019724,0.0000019735, -0.0000019747,0.0000019755,0.0000019754,0.0000019740,0.0000019707, -0.0000019655,0.0000019578,0.0000019487,0.0000019389,0.0000019299, -0.0000019234,0.0000019199,0.0000019188,0.0000019206,0.0000019248, -0.0000019301,0.0000019344,0.0000019373,0.0000019391,0.0000019405, -0.0000019418,0.0000019421,0.0000019420,0.0000019416,0.0000019401, -0.0000019371,0.0000019337,0.0000019310,0.0000019289,0.0000019268, -0.0000019234,0.0000019196,0.0000019163,0.0000019119,0.0000019060, -0.0000018999,0.0000018956,0.0000018940,0.0000018952,0.0000018987, -0.0000019033,0.0000019075,0.0000019100,0.0000019106,0.0000019111, -0.0000019129,0.0000019155,0.0000019172,0.0000019165,0.0000019129, -0.0000019073,0.0000019014,0.0000018955,0.0000018899,0.0000018837, -0.0000018756,0.0000018657,0.0000018575,0.0000018533,0.0000018532, -0.0000018550,0.0000018588,0.0000018629,0.0000018660,0.0000018676, -0.0000018681,0.0000018679,0.0000018672,0.0000018658,0.0000018641, -0.0000018627,0.0000018624,0.0000018628,0.0000018633,0.0000018638, -0.0000018644,0.0000018652,0.0000018661,0.0000018670,0.0000018677, -0.0000018682,0.0000018682,0.0000018681,0.0000018683,0.0000018694, -0.0000018714,0.0000018740,0.0000018764,0.0000018784,0.0000018798, -0.0000018803,0.0000018799,0.0000018775,0.0000018724,0.0000018650, -0.0000018573,0.0000018482,0.0000018388,0.0000018329,0.0000018283, -0.0000018234,0.0000018201,0.0000018184,0.0000018172,0.0000018163, -0.0000018158,0.0000018156,0.0000018153,0.0000018150,0.0000018150, -0.0000018150,0.0000018153,0.0000018158,0.0000018163,0.0000018166, -0.0000018167,0.0000018166,0.0000018167,0.0000018172,0.0000018185, -0.0000018211,0.0000018253,0.0000018298,0.0000018332,0.0000018353, -0.0000018363,0.0000018355,0.0000018325,0.0000018277,0.0000018209, -0.0000018131,0.0000018055,0.0000017988,0.0000017932,0.0000017908, -0.0000017917,0.0000017962,0.0000018056,0.0000018145,0.0000018189, -0.0000018225,0.0000018260,0.0000018282,0.0000018288,0.0000018285, -0.0000018275,0.0000018270,0.0000018276,0.0000018291,0.0000018312, -0.0000018337,0.0000018360,0.0000018374,0.0000018372,0.0000018346, -0.0000018294,0.0000018214,0.0000018106,0.0000017989,0.0000017897, -0.0000017840,0.0000017806,0.0000017798,0.0000017821,0.0000017855, -0.0000017871,0.0000017871,0.0000017862,0.0000017852,0.0000017840, -0.0000017825,0.0000017813,0.0000017808,0.0000017811,0.0000017812, -0.0000017797,0.0000017773,0.0000017751,0.0000017743,0.0000017763, -0.0000017831,0.0000017950,0.0000018066,0.0000018137,0.0000018173, -0.0000018219,0.0000018320,0.0000018439,0.0000018494,0.0000018500, -0.0000018528,0.0000018600,0.0000018682,0.0000018763,0.0000018878, -0.0000019005,0.0000019076,0.0000019081,0.0000019064,0.0000019033, -0.0000018990,0.0000018942,0.0000018903,0.0000018886,0.0000018893, -0.0000018930,0.0000018986,0.0000019043,0.0000019088,0.0000019113, -0.0000019119,0.0000019125,0.0000019131,0.0000019131,0.0000019129, -0.0000019128,0.0000019127,0.0000019124,0.0000019119,0.0000019114, -0.0000019115,0.0000019127,0.0000019119,0.0000019124,0.0000019116, -0.0000019100,0.0000019090,0.0000019083,0.0000019085,0.0000019103, -0.0000019072,0.0000018927,0.0000018670,0.0000018487,0.0000018373, -0.0000018245,0.0000018153,0.0000018136,0.0000018154,0.0000018175, -0.0000018190,0.0000018203,0.0000018212,0.0000018214,0.0000018211, -0.0000018204,0.0000018194,0.0000018181,0.0000018169,0.0000018157, -0.0000018148,0.0000018144,0.0000018135,0.0000018109,0.0000018048, -0.0000017945,0.0000017839,0.0000017790,0.0000017788,0.0000017795, -0.0000017794,0.0000017788,0.0000017781,0.0000017775,0.0000017770, -0.0000017766,0.0000017766,0.0000017769,0.0000017771,0.0000017770, -0.0000017764,0.0000017755,0.0000017745,0.0000017752,0.0000017752, -0.0000017765,0.0000017792,0.0000017830,0.0000017881,0.0000017944, -0.0000018017,0.0000018101,0.0000018198,0.0000018310,0.0000018430, -0.0000018551,0.0000018661,0.0000018741,0.0000018796,0.0000018829, -0.0000018831,0.0000018835,0.0000018856,0.0000018893,0.0000018945, -0.0000018999,0.0000019034,0.0000019048,0.0000019042,0.0000019030, -0.0000019017,0.0000019008,0.0000018997,0.0000018989,0.0000018976, -0.0000018959,0.0000018945,0.0000018936,0.0000018937,0.0000018941, -0.0000018950,0.0000018963,0.0000018978,0.0000018995,0.0000019015, -0.0000019035,0.0000019055,0.0000019076,0.0000019098,0.0000019123, -0.0000019149,0.0000019173,0.0000019192,0.0000019202,0.0000019199, -0.0000019180,0.0000019156,0.0000019129,0.0000019103,0.0000019075, -0.0000019048,0.0000019021,0.0000018998,0.0000018976,0.0000018954, -0.0000018935,0.0000018920,0.0000018909,0.0000018904,0.0000018904, -0.0000018907,0.0000018912,0.0000018918,0.0000018922,0.0000018924, -0.0000018922,0.0000018917,0.0000018908,0.0000018897,0.0000018885, -0.0000018871,0.0000018856,0.0000018839,0.0000018822,0.0000018807, -0.0000018795,0.0000018787,0.0000018782,0.0000018779,0.0000018775, -0.0000018772,0.0000018768,0.0000018762,0.0000018753,0.0000018742, -0.0000018731,0.0000018721,0.0000018710,0.0000018699,0.0000018684, -0.0000018666,0.0000018646,0.0000018627,0.0000018608,0.0000018593, -0.0000018577,0.0000018559,0.0000018540,0.0000018520,0.0000018502, -0.0000018490,0.0000018484,0.0000018479,0.0000018475,0.0000018475, -0.0000018475,0.0000018475,0.0000018475,0.0000018477,0.0000018484, -0.0000018491,0.0000018499,0.0000018507,0.0000018513,0.0000018517, -0.0000018516,0.0000018514,0.0000018510,0.0000018507,0.0000018506, -0.0000018510,0.0000018518,0.0000018530,0.0000018519,0.0000018530, -0.0000018542,0.0000018548,0.0000018547,0.0000018536,0.0000018516, -0.0000018488,0.0000018457,0.0000018431,0.0000018415,0.0000018401, -0.0000018390,0.0000018383,0.0000018379,0.0000018376,0.0000018374, -0.0000018373,0.0000018377,0.0000018388,0.0000018411,0.0000018452, -0.0000018521,0.0000018623,0.0000018751,0.0000018876,0.0000018969, -0.0000019001,0.0000018998,0.0000018967,0.0000018929,0.0000018903, -0.0000018892,0.0000018888,0.0000018884,0.0000018883,0.0000018891, -0.0000018911,0.0000018938,0.0000018966,0.0000018987,0.0000018996, -0.0000019001,0.0000019005,0.0000019012,0.0000019023,0.0000019037, -0.0000019053,0.0000019068,0.0000019080,0.0000019091,0.0000019099, -0.0000019102,0.0000019099,0.0000019095,0.0000019093,0.0000019091, -0.0000019084,0.0000019075,0.0000019065,0.0000019061,0.0000019071, -0.0000019087,0.0000019106,0.0000019125,0.0000019142,0.0000019157, -0.0000019170,0.0000019184,0.0000019199,0.0000019211,0.0000019218, -0.0000019224,0.0000019231,0.0000019238,0.0000019243,0.0000019249, -0.0000019254,0.0000019259,0.0000019265,0.0000019273,0.0000019281, -0.0000019289,0.0000019295,0.0000019300,0.0000019302,0.0000019302, -0.0000019291,0.0000019278,0.0000019256,0.0000019224,0.0000019183, -0.0000019136,0.0000019085,0.0000019030,0.0000018975,0.0000018920, -0.0000018870,0.0000018834,0.0000018816,0.0000018811,0.0000018812, -0.0000018813,0.0000018808,0.0000018794,0.0000018767,0.0000018744, -0.0000018723,0.0000018718,0.0000018723,0.0000018730,0.0000018727, -0.0000018710,0.0000018686,0.0000018658,0.0000018634,0.0000018617, -0.0000018603,0.0000018590,0.0000018576,0.0000018562,0.0000018548, -0.0000018533,0.0000018516,0.0000018498,0.0000018480,0.0000018468, -0.0000018467,0.0000018479,0.0000018505,0.0000018545,0.0000018606, -0.0000018687,0.0000018776,0.0000018865,0.0000018942,0.0000018996, -0.0000019029,0.0000019022,0.0000019017,0.0000018995,0.0000018956, -0.0000018906,0.0000018850,0.0000018796,0.0000018752,0.0000018720, -0.0000018709,0.0000018708,0.0000018710,0.0000018714,0.0000018721, -0.0000018727,0.0000018732,0.0000018734,0.0000018733,0.0000018730, -0.0000018730,0.0000018730,0.0000018730,0.0000018730,0.0000018730, -0.0000018730,0.0000018730,0.0000018732,0.0000018733,0.0000018732, -0.0000018727,0.0000018718,0.0000018707,0.0000018691,0.0000018674, -0.0000018658,0.0000018642,0.0000018623,0.0000018603,0.0000018582, -0.0000018560,0.0000018528,0.0000018497,0.0000018462,0.0000018426, -0.0000018399,0.0000018377,0.0000018362,0.0000018354,0.0000018351, -0.0000018351,0.0000018354,0.0000018360,0.0000018366,0.0000018372, -0.0000018379,0.0000018389,0.0000018409,0.0000018439,0.0000018475, -0.0000018513,0.0000018554,0.0000018596,0.0000018638,0.0000018681, -0.0000018725,0.0000018774,0.0000018830,0.0000018886,0.0000018939, -0.0000018990,0.0000019038,0.0000019081,0.0000019116,0.0000019145, -0.0000019174,0.0000019214,0.0000019269,0.0000019349,0.0000019454, -0.0000019583,0.0000019721,0.0000019851,0.0000019958,0.0000020032, -0.0000020076,0.0000020101,0.0000020111,0.0000020108,0.0000020102, -0.0000020106,0.0000020120,0.0000020136,0.0000020139,0.0000020133, -0.0000020135,0.0000020168,0.0000020228,0.0000020289,0.0000020331, -0.0000020352,0.0000020360,0.0000020365,0.0000020372,0.0000020379, -0.0000020386,0.0000020388,0.0000020388,0.0000020388,0.0000020390, -0.0000020396,0.0000020406,0.0000020420,0.0000020439,0.0000020460, -0.0000020481,0.0000020498,0.0000020509,0.0000020515,0.0000020521, -0.0000020525,0.0000020529,0.0000020532,0.0000020536,0.0000020542, -0.0000020547,0.0000020551,0.0000020549,0.0000020544,0.0000020537, -0.0000020526,0.0000020511,0.0000020493,0.0000020476,0.0000020463, -0.0000020457,0.0000020459,0.0000020463,0.0000020468,0.0000020473, -0.0000020480,0.0000020491,0.0000020508,0.0000020529,0.0000020551, -0.0000020570,0.0000020585,0.0000020593,0.0000020592,0.0000020586, -0.0000020578,0.0000020569,0.0000020555,0.0000020537,0.0000020514, -0.0000020487,0.0000020454,0.0000020422,0.0000020392,0.0000020364, -0.0000020334,0.0000020307,0.0000020287,0.0000020273,0.0000020263, -0.0000020256,0.0000020251,0.0000020245,0.0000020240,0.0000020241, -0.0000020250,0.0000020264,0.0000020273,0.0000020270,0.0000020271, -0.0000020301,0.0000020352,0.0000020373,0.0000020355,0.0000020367, -0.0000020433,0.0000020465,0.0000020389,0.0000020257,0.0000020160, -0.0000020120,0.0000020116,0.0000020128,0.0000020133,0.0000020131, -0.0000020114,0.0000020063,0.0000020008,0.0000019993,0.0000020020, -0.0000020151,0.0000020326,0.0000020408,0.0000020401,0.0000020392, -0.0000020368,0.0000020254,0.0000020127,0.0000020130,0.0000020301, -0.0000020553,0.0000020750,0.0000020816,0.0000020825,0.0000020848, -0.0000020874,0.0000020890,0.0000020910,0.0000020938,0.0000020968, -0.0000021006,0.0000021062,0.0000021129,0.0000021190,0.0000021230, -0.0000021245,0.0000021253,0.0000021269,0.0000021292,0.0000021320, -0.0000021345,0.0000021360,0.0000021366,0.0000021370,0.0000021367, -0.0000021361,0.0000021354,0.0000021347,0.0000021340,0.0000021335, -0.0000021334,0.0000021335,0.0000021339,0.0000021344,0.0000021348, -0.0000021347,0.0000021338,0.0000021323,0.0000021303,0.0000021278, -0.0000021247,0.0000021212,0.0000021172,0.0000021133,0.0000021099, -0.0000021073,0.0000021051,0.0000021032,0.0000021016,0.0000021000, -0.0000020983,0.0000020964,0.0000020944,0.0000020926,0.0000020916, -0.0000020914,0.0000020917,0.0000020925,0.0000020935,0.0000020946, -0.0000020959,0.0000020974,0.0000020989,0.0000021003,0.0000021015, -0.0000021025,0.0000021030,0.0000021030,0.0000021029,0.0000021027, -0.0000021025,0.0000021024,0.0000021023,0.0000021019,0.0000021013, -0.0000021009,0.0000021004,0.0000020997,0.0000020990,0.0000020981, -0.0000020973,0.0000020967,0.0000020958,0.0000020945,0.0000020929, -0.0000020914,0.0000020902,0.0000020890,0.0000020876,0.0000020860, -0.0000020845,0.0000020834,0.0000020828,0.0000020824,0.0000020821, -0.0000020820,0.0000020820,0.0000020819,0.0000020819,0.0000020818, -0.0000020817,0.0000020815,0.0000020811,0.0000020806,0.0000020800, -0.0000020798,0.0000020799,0.0000020798,0.0000020801,0.0000020808, -0.0000020814,0.0000020818,0.0000020829,0.0000020838,0.0000020845, -0.0000020854,0.0000020866,0.0000020877,0.0000020885,0.0000020891, -0.0000020897,0.0000020899,0.0000020897,0.0000020897,0.0000020897, -0.0000020893,0.0000020891,0.0000020889,0.0000020884,0.0000020882, -0.0000020884,0.0000020888,0.0000020890,0.0000020888,0.0000020881, -0.0000020868,0.0000020849,0.0000020823,0.0000020793,0.0000020761, -0.0000020731,0.0000020708,0.0000020688,0.0000020670,0.0000020654, -0.0000020640,0.0000020624,0.0000020606,0.0000020585,0.0000020569, -0.0000020555,0.0000020547,0.0000020546,0.0000020548,0.0000020549, -0.0000020551,0.0000020552,0.0000020548,0.0000020537,0.0000020522, -0.0000020509,0.0000020496,0.0000020489,0.0000020489,0.0000020498, -0.0000020513,0.0000020528,0.0000020544,0.0000020561,0.0000020582, -0.0000020601,0.0000020619,0.0000020636,0.0000020651,0.0000020665, -0.0000020677,0.0000020687,0.0000020696,0.0000020702,0.0000020704, -0.0000020703,0.0000020703,0.0000020703,0.0000020704,0.0000020705, -0.0000020710,0.0000020716,0.0000020723,0.0000020729,0.0000020734, -0.0000020742,0.0000020753,0.0000020762,0.0000020769,0.0000020773, -0.0000020774,0.0000020770,0.0000020761,0.0000020750,0.0000020742, -0.0000020729,0.0000020715,0.0000020697,0.0000020678,0.0000020661, -0.0000020642,0.0000020626,0.0000020619,0.0000020619,0.0000020620, -0.0000020621,0.0000020625,0.0000020631,0.0000020635,0.0000020637, -0.0000020640,0.0000020645,0.0000020654,0.0000020662,0.0000020666, -0.0000020667,0.0000020663,0.0000020653,0.0000020637,0.0000020620, -0.0000020602,0.0000020581,0.0000020560,0.0000020548,0.0000020548, -0.0000020550,0.0000020550,0.0000020551,0.0000020554,0.0000020558, -0.0000020563,0.0000020572,0.0000020583,0.0000020594,0.0000020609, -0.0000020629,0.0000020652,0.0000020675,0.0000020701,0.0000020729, -0.0000020758,0.0000020787,0.0000020814,0.0000020838,0.0000020846, -0.0000020851,0.0000020838,0.0000020808,0.0000020764,0.0000020712, -0.0000020657,0.0000020607,0.0000020571,0.0000020554,0.0000020547, -0.0000020540,0.0000020528,0.0000020513,0.0000020502,0.0000020494, -0.0000020487,0.0000020478,0.0000020471,0.0000020463,0.0000020457, -0.0000020454,0.0000020457,0.0000020464,0.0000020477,0.0000020499, -0.0000020529,0.0000020562,0.0000020588,0.0000020610,0.0000020629, -0.0000020646,0.0000020666,0.0000020686,0.0000020705,0.0000020719, -0.0000020729,0.0000020737,0.0000020747,0.0000020764,0.0000020790, -0.0000020823,0.0000020861,0.0000020897,0.0000020925,0.0000020947, -0.0000020965,0.0000020977,0.0000020980,0.0000020971,0.0000020951, -0.0000020926,0.0000020903,0.0000020889,0.0000020886,0.0000020891, -0.0000020904,0.0000020914,0.0000020916,0.0000020912,0.0000020909, -0.0000020905,0.0000020897,0.0000020880,0.0000020853,0.0000020821, -0.0000020789,0.0000020758,0.0000020732,0.0000020715,0.0000020708, -0.0000020703,0.0000020693,0.0000020679,0.0000020666,0.0000020650, -0.0000020633,0.0000020612,0.0000020588,0.0000020565,0.0000020549, -0.0000020541,0.0000020543,0.0000020546,0.0000020546,0.0000020542, -0.0000020533,0.0000020520,0.0000020506,0.0000020487,0.0000020462, -0.0000020442,0.0000020425,0.0000020407,0.0000020386,0.0000020364, -0.0000020344,0.0000020331,0.0000020328,0.0000020330,0.0000020335, -0.0000020339,0.0000020341,0.0000020338,0.0000020333,0.0000020329, -0.0000020326,0.0000020319,0.0000020308,0.0000020293,0.0000020275, -0.0000020259,0.0000020248,0.0000020243,0.0000020241,0.0000020244, -0.0000020254,0.0000020269,0.0000020282,0.0000020297,0.0000020312, -0.0000020322,0.0000020327,0.0000020326,0.0000020321,0.0000020310, -0.0000020294,0.0000020274,0.0000020250,0.0000020223,0.0000020190, -0.0000020155,0.0000020121,0.0000020093,0.0000020074,0.0000020062, -0.0000020055,0.0000020048,0.0000020038,0.0000020027,0.0000020022, -0.0000020025,0.0000020036,0.0000020048,0.0000020055,0.0000020060, -0.0000020064,0.0000020067,0.0000020071,0.0000020076,0.0000020081, -0.0000020089,0.0000020100,0.0000020112,0.0000020122,0.0000020131, -0.0000020137,0.0000020140,0.0000020139,0.0000020133,0.0000020118, -0.0000020108,0.0000020089,0.0000020066,0.0000020039,0.0000020018, -0.0000020009,0.0000020014,0.0000020027,0.0000020042,0.0000020054, -0.0000020061,0.0000020067,0.0000020074,0.0000020086,0.0000020105, -0.0000020132,0.0000020167,0.0000020206,0.0000020247,0.0000020288, -0.0000020325,0.0000020352,0.0000020373,0.0000020387,0.0000020393, -0.0000020392,0.0000020387,0.0000020377,0.0000020364,0.0000020342, -0.0000020307,0.0000020258,0.0000020197,0.0000020126,0.0000020054, -0.0000019984,0.0000019920,0.0000019868,0.0000019826,0.0000019810, -0.0000019801,0.0000019814,0.0000019843,0.0000019867,0.0000019875, -0.0000019888,0.0000019882,0.0000019859,0.0000019834,0.0000019812, -0.0000019795,0.0000019786,0.0000019785,0.0000019785,0.0000019787, -0.0000019793,0.0000019794,0.0000019789,0.0000019791,0.0000019777, -0.0000019753,0.0000019722,0.0000019681,0.0000019637,0.0000019596, -0.0000019558,0.0000019524,0.0000019492,0.0000019460,0.0000019427, -0.0000019406,0.0000019399,0.0000019415,0.0000019457,0.0000019513, -0.0000019566,0.0000019609,0.0000019644,0.0000019670,0.0000019693, -0.0000019719,0.0000019748,0.0000019785,0.0000019827,0.0000019873, -0.0000019911,0.0000019925,0.0000019909,0.0000019879,0.0000019853, -0.0000019855,0.0000019893,0.0000019952,0.0000020011,0.0000020062, -0.0000020108,0.0000020149,0.0000020185,0.0000020215,0.0000020239, -0.0000020263,0.0000020289,0.0000020317,0.0000020345,0.0000020370, -0.0000020392,0.0000020412,0.0000020433,0.0000020454,0.0000020469, -0.0000020478,0.0000020483,0.0000020486,0.0000020485,0.0000020477, -0.0000020469,0.0000020458,0.0000020442,0.0000020416,0.0000020384, -0.0000020347,0.0000020305,0.0000020264,0.0000020231,0.0000020206, -0.0000020188,0.0000020176,0.0000020165,0.0000020153,0.0000020139, -0.0000020122,0.0000020101,0.0000020070,0.0000020026,0.0000019970, -0.0000019912,0.0000019860,0.0000019813,0.0000019771,0.0000019739, -0.0000019721,0.0000019716,0.0000019719,0.0000019736,0.0000019763, -0.0000019792,0.0000019815,0.0000019829,0.0000019832,0.0000019821, -0.0000019795,0.0000019759,0.0000019730,0.0000019719,0.0000019723, -0.0000019735,0.0000019753,0.0000019774,0.0000019791,0.0000019799, -0.0000019799,0.0000019787,0.0000019757,0.0000019716,0.0000019675, -0.0000019638,0.0000019604,0.0000019574,0.0000019549,0.0000019529, -0.0000019511,0.0000019495,0.0000019475,0.0000019456,0.0000019439, -0.0000019424,0.0000019408,0.0000019391,0.0000019379,0.0000019376, -0.0000019379,0.0000019383,0.0000019388,0.0000019394,0.0000019401, -0.0000019405,0.0000019406,0.0000019404,0.0000019399,0.0000019394, -0.0000019384,0.0000019376,0.0000019371,0.0000019365,0.0000019353, -0.0000019332,0.0000019296,0.0000019254,0.0000019216,0.0000019187, -0.0000019169,0.0000019154,0.0000019143,0.0000019137,0.0000019133, -0.0000019128,0.0000019124,0.0000019123,0.0000019124,0.0000019125, -0.0000019120,0.0000019113,0.0000019103,0.0000019088,0.0000019069, -0.0000019048,0.0000019025,0.0000018999,0.0000018969,0.0000018931, -0.0000018883,0.0000018830,0.0000018779,0.0000018747,0.0000018732, -0.0000018742,0.0000018777,0.0000018831,0.0000018889,0.0000018943, -0.0000018990,0.0000019025,0.0000019054,0.0000019082,0.0000019111, -0.0000019149,0.0000019200,0.0000019262,0.0000019334,0.0000019411, -0.0000019493,0.0000019578,0.0000019656,0.0000019718,0.0000019762, -0.0000019783,0.0000019782,0.0000019775,0.0000019758,0.0000019734, -0.0000019730,0.0000019737,0.0000019750,0.0000019769,0.0000019792, -0.0000019816,0.0000019837,0.0000019853,0.0000019860,0.0000019860, -0.0000019850,0.0000019835,0.0000019816,0.0000019799,0.0000019778, -0.0000019765,0.0000019744,0.0000019732,0.0000019716,0.0000019702, -0.0000019688,0.0000019676,0.0000019670,0.0000019675,0.0000019687, -0.0000019703,0.0000019719,0.0000019727,0.0000019720,0.0000019699, -0.0000019655,0.0000019591,0.0000019505,0.0000019407,0.0000019308, -0.0000019226,0.0000019175,0.0000019151,0.0000019156,0.0000019191, -0.0000019240,0.0000019290,0.0000019326,0.0000019348,0.0000019364, -0.0000019373,0.0000019374,0.0000019372,0.0000019369,0.0000019359, -0.0000019335,0.0000019306,0.0000019285,0.0000019273,0.0000019256, -0.0000019223,0.0000019186,0.0000019150,0.0000019107,0.0000019050, -0.0000018988,0.0000018939,0.0000018919,0.0000018929,0.0000018963, -0.0000019012,0.0000019058,0.0000019087,0.0000019098,0.0000019107, -0.0000019124,0.0000019147,0.0000019162,0.0000019152,0.0000019112, -0.0000019056,0.0000018999,0.0000018942,0.0000018887,0.0000018822, -0.0000018728,0.0000018619,0.0000018538,0.0000018504,0.0000018505, -0.0000018530,0.0000018572,0.0000018613,0.0000018638,0.0000018649, -0.0000018652,0.0000018649,0.0000018638,0.0000018618,0.0000018600, -0.0000018594,0.0000018595,0.0000018600,0.0000018605,0.0000018613, -0.0000018622,0.0000018630,0.0000018634,0.0000018639,0.0000018645, -0.0000018649,0.0000018650,0.0000018653,0.0000018658,0.0000018666, -0.0000018678,0.0000018691,0.0000018701,0.0000018707,0.0000018708, -0.0000018707,0.0000018693,0.0000018652,0.0000018588,0.0000018523, -0.0000018435,0.0000018351,0.0000018296,0.0000018240,0.0000018198, -0.0000018181,0.0000018173,0.0000018167,0.0000018164,0.0000018165, -0.0000018167,0.0000018167,0.0000018169,0.0000018171,0.0000018170, -0.0000018171,0.0000018174,0.0000018178,0.0000018183,0.0000018185, -0.0000018188,0.0000018194,0.0000018204,0.0000018219,0.0000018249, -0.0000018287,0.0000018327,0.0000018358,0.0000018378,0.0000018388, -0.0000018380,0.0000018350,0.0000018302,0.0000018238,0.0000018161, -0.0000018080,0.0000018001,0.0000017927,0.0000017876,0.0000017867, -0.0000017884,0.0000017934,0.0000018031,0.0000018137,0.0000018198, -0.0000018234,0.0000018261,0.0000018279,0.0000018286,0.0000018285, -0.0000018280,0.0000018284,0.0000018297,0.0000018317,0.0000018338, -0.0000018352,0.0000018353,0.0000018340,0.0000018308,0.0000018249, -0.0000018159,0.0000018049,0.0000017952,0.0000017887,0.0000017846, -0.0000017833,0.0000017848,0.0000017886,0.0000017906,0.0000017904, -0.0000017890,0.0000017873,0.0000017854,0.0000017840,0.0000017830, -0.0000017829,0.0000017829,0.0000017821,0.0000017798,0.0000017756, -0.0000017720,0.0000017717,0.0000017750,0.0000017837,0.0000017962, -0.0000018068,0.0000018116,0.0000018140,0.0000018196,0.0000018310, -0.0000018428,0.0000018469,0.0000018470,0.0000018499,0.0000018576, -0.0000018657,0.0000018727,0.0000018831,0.0000018954,0.0000019031, -0.0000019042,0.0000019028,0.0000019004,0.0000018968,0.0000018924, -0.0000018890,0.0000018887,0.0000018917,0.0000018974,0.0000019037, -0.0000019087,0.0000019108,0.0000019107,0.0000019086,0.0000019054, -0.0000019022,0.0000018999,0.0000018982,0.0000018968,0.0000018957, -0.0000018948,0.0000018940,0.0000018941,0.0000018948,0.0000018957, -0.0000018973,0.0000018991,0.0000019013,0.0000019039,0.0000019076, -0.0000019099,0.0000019089,0.0000019068,0.0000019054,0.0000019081, -0.0000019060,0.0000018875,0.0000018605,0.0000018462,0.0000018379, -0.0000018266,0.0000018192,0.0000018183,0.0000018195,0.0000018213, -0.0000018232,0.0000018250,0.0000018263,0.0000018272,0.0000018277, -0.0000018276,0.0000018267,0.0000018247,0.0000018218,0.0000018187, -0.0000018165,0.0000018159,0.0000018160,0.0000018147,0.0000018099, -0.0000018000,0.0000017875,0.0000017800,0.0000017795,0.0000017816, -0.0000017830,0.0000017831,0.0000017828,0.0000017822,0.0000017813, -0.0000017805,0.0000017801,0.0000017801,0.0000017800,0.0000017797, -0.0000017793,0.0000017787,0.0000017779,0.0000017770,0.0000017767, -0.0000017776,0.0000017783,0.0000017802,0.0000017833,0.0000017873, -0.0000017922,0.0000017982,0.0000018057,0.0000018149,0.0000018259, -0.0000018379,0.0000018501,0.0000018619,0.0000018715,0.0000018779, -0.0000018817,0.0000018832,0.0000018842,0.0000018864,0.0000018902, -0.0000018950,0.0000018989,0.0000019010,0.0000019015,0.0000019003, -0.0000018991,0.0000018984,0.0000018982,0.0000018977,0.0000018971, -0.0000018961,0.0000018950,0.0000018943,0.0000018938,0.0000018934, -0.0000018935,0.0000018939,0.0000018946,0.0000018954,0.0000018963, -0.0000018973,0.0000018984,0.0000018996,0.0000019011,0.0000019029, -0.0000019053,0.0000019078,0.0000019100,0.0000019118,0.0000019123, -0.0000019119,0.0000019113,0.0000019091,0.0000019073,0.0000019051, -0.0000019026,0.0000019001,0.0000018976,0.0000018955,0.0000018937, -0.0000018923,0.0000018913,0.0000018910,0.0000018913,0.0000018918, -0.0000018924,0.0000018930,0.0000018934,0.0000018938,0.0000018937, -0.0000018933,0.0000018926,0.0000018915,0.0000018904,0.0000018889, -0.0000018874,0.0000018858,0.0000018844,0.0000018833,0.0000018825, -0.0000018821,0.0000018819,0.0000018817,0.0000018817,0.0000018817, -0.0000018814,0.0000018808,0.0000018799,0.0000018788,0.0000018776, -0.0000018762,0.0000018747,0.0000018730,0.0000018711,0.0000018689, -0.0000018665,0.0000018642,0.0000018620,0.0000018598,0.0000018577, -0.0000018555,0.0000018532,0.0000018510,0.0000018492,0.0000018480, -0.0000018471,0.0000018466,0.0000018464,0.0000018464,0.0000018464, -0.0000018464,0.0000018464,0.0000018466,0.0000018468,0.0000018470, -0.0000018475,0.0000018481,0.0000018486,0.0000018491,0.0000018495, -0.0000018497,0.0000018498,0.0000018499,0.0000018501,0.0000018505, -0.0000018511,0.0000018502,0.0000018512,0.0000018522,0.0000018532, -0.0000018540,0.0000018542,0.0000018540,0.0000018530,0.0000018509, -0.0000018480,0.0000018446,0.0000018413,0.0000018390,0.0000018374, -0.0000018358,0.0000018347,0.0000018340,0.0000018333,0.0000018323, -0.0000018317,0.0000018321,0.0000018341,0.0000018374,0.0000018424, -0.0000018503,0.0000018618,0.0000018751,0.0000018873,0.0000018956, -0.0000018973,0.0000018965,0.0000018932,0.0000018896,0.0000018872, -0.0000018861,0.0000018857,0.0000018855,0.0000018858,0.0000018869, -0.0000018893,0.0000018924,0.0000018956,0.0000018981,0.0000018996, -0.0000018999,0.0000018999,0.0000019000,0.0000019003,0.0000019007, -0.0000019012,0.0000019019,0.0000019029,0.0000019035,0.0000019036, -0.0000019034,0.0000019031,0.0000019028,0.0000019025,0.0000019025, -0.0000019024,0.0000019028,0.0000019036,0.0000019050,0.0000019066, -0.0000019083,0.0000019099,0.0000019112,0.0000019121,0.0000019128, -0.0000019135,0.0000019142,0.0000019149,0.0000019160,0.0000019172, -0.0000019185,0.0000019197,0.0000019207,0.0000019215,0.0000019221, -0.0000019227,0.0000019232,0.0000019235,0.0000019237,0.0000019239, -0.0000019239,0.0000019240,0.0000019244,0.0000019248,0.0000019251, -0.0000019250,0.0000019235,0.0000019213,0.0000019182,0.0000019144, -0.0000019099,0.0000019050,0.0000018997,0.0000018943,0.0000018893, -0.0000018853,0.0000018824,0.0000018808,0.0000018799,0.0000018797, -0.0000018794,0.0000018785,0.0000018764,0.0000018731,0.0000018702, -0.0000018683,0.0000018676,0.0000018675,0.0000018672,0.0000018665, -0.0000018650,0.0000018641,0.0000018633,0.0000018624,0.0000018612, -0.0000018596,0.0000018579,0.0000018559,0.0000018538,0.0000018516, -0.0000018493,0.0000018472,0.0000018454,0.0000018442,0.0000018436, -0.0000018432,0.0000018437,0.0000018459,0.0000018501,0.0000018564, -0.0000018645,0.0000018739,0.0000018834,0.0000018916,0.0000018973, -0.0000019009,0.0000019005,0.0000019002,0.0000018980,0.0000018942, -0.0000018892,0.0000018837,0.0000018787,0.0000018750,0.0000018727, -0.0000018713,0.0000018712,0.0000018715,0.0000018718,0.0000018720, -0.0000018720,0.0000018720,0.0000018719,0.0000018719,0.0000018719, -0.0000018722,0.0000018727,0.0000018729,0.0000018730,0.0000018732, -0.0000018737,0.0000018741,0.0000018742,0.0000018739,0.0000018732, -0.0000018721,0.0000018706,0.0000018688,0.0000018672,0.0000018657, -0.0000018640,0.0000018622,0.0000018607,0.0000018589,0.0000018563, -0.0000018530,0.0000018491,0.0000018448,0.0000018406,0.0000018364, -0.0000018337,0.0000018317,0.0000018304,0.0000018293,0.0000018289, -0.0000018289,0.0000018289,0.0000018287,0.0000018282,0.0000018278, -0.0000018280,0.0000018289,0.0000018303,0.0000018320,0.0000018340, -0.0000018363,0.0000018388,0.0000018417,0.0000018455,0.0000018504, -0.0000018560,0.0000018621,0.0000018688,0.0000018761,0.0000018839, -0.0000018917,0.0000018989,0.0000019051,0.0000019102,0.0000019145, -0.0000019185,0.0000019235,0.0000019307,0.0000019407,0.0000019533, -0.0000019673,0.0000019807,0.0000019917,0.0000019993,0.0000020041, -0.0000020068,0.0000020075,0.0000020072,0.0000020071,0.0000020077, -0.0000020090,0.0000020101,0.0000020100,0.0000020099,0.0000020113, -0.0000020156,0.0000020216,0.0000020271,0.0000020311,0.0000020333, -0.0000020340,0.0000020338,0.0000020333,0.0000020331,0.0000020330, -0.0000020330,0.0000020331,0.0000020333,0.0000020336,0.0000020341, -0.0000020349,0.0000020361,0.0000020376,0.0000020392,0.0000020404, -0.0000020413,0.0000020418,0.0000020421,0.0000020425,0.0000020428, -0.0000020434,0.0000020441,0.0000020449,0.0000020458,0.0000020466, -0.0000020471,0.0000020473,0.0000020471,0.0000020465,0.0000020454, -0.0000020441,0.0000020425,0.0000020411,0.0000020402,0.0000020402, -0.0000020407,0.0000020413,0.0000020420,0.0000020429,0.0000020441, -0.0000020457,0.0000020475,0.0000020497,0.0000020520,0.0000020538, -0.0000020550,0.0000020555,0.0000020555,0.0000020553,0.0000020550, -0.0000020542,0.0000020533,0.0000020522,0.0000020503,0.0000020475, -0.0000020442,0.0000020406,0.0000020373,0.0000020343,0.0000020318, -0.0000020299,0.0000020284,0.0000020270,0.0000020257,0.0000020244, -0.0000020230,0.0000020220,0.0000020219,0.0000020228,0.0000020241, -0.0000020248,0.0000020245,0.0000020247,0.0000020280,0.0000020330, -0.0000020346,0.0000020337,0.0000020360,0.0000020422,0.0000020431, -0.0000020348,0.0000020234,0.0000020161,0.0000020132,0.0000020130, -0.0000020136,0.0000020133,0.0000020124,0.0000020097,0.0000020043, -0.0000019998,0.0000019991,0.0000020046,0.0000020205,0.0000020374, -0.0000020429,0.0000020419,0.0000020413,0.0000020369,0.0000020228, -0.0000020126,0.0000020178,0.0000020364,0.0000020609,0.0000020780, -0.0000020825,0.0000020833,0.0000020856,0.0000020879,0.0000020892, -0.0000020910,0.0000020937,0.0000020965,0.0000020993,0.0000021030, -0.0000021082,0.0000021142,0.0000021193,0.0000021230,0.0000021255, -0.0000021274,0.0000021292,0.0000021311,0.0000021328,0.0000021342, -0.0000021355,0.0000021364,0.0000021363,0.0000021362,0.0000021361, -0.0000021360,0.0000021357,0.0000021352,0.0000021348,0.0000021346, -0.0000021345,0.0000021343,0.0000021339,0.0000021330,0.0000021319, -0.0000021303,0.0000021284,0.0000021263,0.0000021239,0.0000021212, -0.0000021181,0.0000021148,0.0000021117,0.0000021087,0.0000021058, -0.0000021032,0.0000021008,0.0000020987,0.0000020966,0.0000020944, -0.0000020923,0.0000020911,0.0000020910,0.0000020914,0.0000020921, -0.0000020931,0.0000020942,0.0000020952,0.0000020964,0.0000020976, -0.0000020989,0.0000021001,0.0000021010,0.0000021014,0.0000021014, -0.0000021012,0.0000021009,0.0000021007,0.0000021007,0.0000021007, -0.0000021005,0.0000021002,0.0000020999,0.0000020995,0.0000020986, -0.0000020974,0.0000020963,0.0000020951,0.0000020938,0.0000020923, -0.0000020904,0.0000020883,0.0000020865,0.0000020850,0.0000020835, -0.0000020818,0.0000020799,0.0000020785,0.0000020777,0.0000020775, -0.0000020776,0.0000020780,0.0000020784,0.0000020789,0.0000020794, -0.0000020798,0.0000020802,0.0000020804,0.0000020803,0.0000020798, -0.0000020792,0.0000020787,0.0000020784,0.0000020784,0.0000020785, -0.0000020788,0.0000020792,0.0000020799,0.0000020810,0.0000020823, -0.0000020838,0.0000020855,0.0000020873,0.0000020893,0.0000020911, -0.0000020924,0.0000020938,0.0000020946,0.0000020948,0.0000020960, -0.0000020960,0.0000020959,0.0000020955,0.0000020947,0.0000020939, -0.0000020938,0.0000020939,0.0000020941,0.0000020943,0.0000020941, -0.0000020934,0.0000020921,0.0000020902,0.0000020879,0.0000020852, -0.0000020821,0.0000020788,0.0000020760,0.0000020737,0.0000020714, -0.0000020691,0.0000020667,0.0000020645,0.0000020622,0.0000020597, -0.0000020570,0.0000020544,0.0000020522,0.0000020504,0.0000020493, -0.0000020490,0.0000020492,0.0000020498,0.0000020505,0.0000020512, -0.0000020514,0.0000020513,0.0000020511,0.0000020511,0.0000020511, -0.0000020515,0.0000020525,0.0000020535,0.0000020545,0.0000020554, -0.0000020563,0.0000020574,0.0000020586,0.0000020599,0.0000020613, -0.0000020626,0.0000020638,0.0000020648,0.0000020656,0.0000020663, -0.0000020667,0.0000020669,0.0000020668,0.0000020663,0.0000020659, -0.0000020651,0.0000020642,0.0000020636,0.0000020633,0.0000020637, -0.0000020645,0.0000020656,0.0000020666,0.0000020678,0.0000020691, -0.0000020704,0.0000020718,0.0000020730,0.0000020736,0.0000020738, -0.0000020736,0.0000020734,0.0000020734,0.0000020731,0.0000020725, -0.0000020718,0.0000020712,0.0000020704,0.0000020694,0.0000020688, -0.0000020685,0.0000020682,0.0000020679,0.0000020679,0.0000020684, -0.0000020688,0.0000020690,0.0000020690,0.0000020692,0.0000020698, -0.0000020704,0.0000020708,0.0000020709,0.0000020706,0.0000020695, -0.0000020678,0.0000020658,0.0000020637,0.0000020615,0.0000020592, -0.0000020574,0.0000020563,0.0000020556,0.0000020551,0.0000020547, -0.0000020545,0.0000020541,0.0000020538,0.0000020539,0.0000020543, -0.0000020548,0.0000020558,0.0000020573,0.0000020592,0.0000020617, -0.0000020645,0.0000020671,0.0000020694,0.0000020713,0.0000020733, -0.0000020754,0.0000020774,0.0000020796,0.0000020815,0.0000020819, -0.0000020817,0.0000020799,0.0000020762,0.0000020709,0.0000020649, -0.0000020597,0.0000020560,0.0000020540,0.0000020530,0.0000020519, -0.0000020505,0.0000020490,0.0000020478,0.0000020472,0.0000020468, -0.0000020461,0.0000020451,0.0000020437,0.0000020426,0.0000020420, -0.0000020418,0.0000020422,0.0000020432,0.0000020450,0.0000020473, -0.0000020504,0.0000020540,0.0000020575,0.0000020607,0.0000020635, -0.0000020654,0.0000020663,0.0000020670,0.0000020675,0.0000020685, -0.0000020709,0.0000020747,0.0000020794,0.0000020837,0.0000020872, -0.0000020899,0.0000020921,0.0000020940,0.0000020953,0.0000020956, -0.0000020947,0.0000020925,0.0000020897,0.0000020871,0.0000020855, -0.0000020852,0.0000020864,0.0000020886,0.0000020907,0.0000020918, -0.0000020926,0.0000020937,0.0000020945,0.0000020942,0.0000020924, -0.0000020894,0.0000020859,0.0000020819,0.0000020777,0.0000020739, -0.0000020714,0.0000020705,0.0000020700,0.0000020698,0.0000020698, -0.0000020694,0.0000020682,0.0000020666,0.0000020647,0.0000020626, -0.0000020608,0.0000020594,0.0000020585,0.0000020578,0.0000020571, -0.0000020561,0.0000020546,0.0000020523,0.0000020501,0.0000020477, -0.0000020454,0.0000020434,0.0000020416,0.0000020401,0.0000020385, -0.0000020368,0.0000020351,0.0000020339,0.0000020335,0.0000020337, -0.0000020341,0.0000020344,0.0000020348,0.0000020346,0.0000020338, -0.0000020337,0.0000020337,0.0000020330,0.0000020318,0.0000020303, -0.0000020285,0.0000020267,0.0000020256,0.0000020252,0.0000020250, -0.0000020255,0.0000020264,0.0000020278,0.0000020293,0.0000020306, -0.0000020320,0.0000020331,0.0000020339,0.0000020342,0.0000020342, -0.0000020338,0.0000020327,0.0000020308,0.0000020285,0.0000020256, -0.0000020220,0.0000020178,0.0000020132,0.0000020089,0.0000020050, -0.0000020020,0.0000020000,0.0000019989,0.0000019978,0.0000019966, -0.0000019961,0.0000019965,0.0000019975,0.0000019979,0.0000019978, -0.0000019972,0.0000019965,0.0000019959,0.0000019951,0.0000019942, -0.0000019936,0.0000019936,0.0000019943,0.0000019956,0.0000019973, -0.0000019991,0.0000020009,0.0000020026,0.0000020038,0.0000020048, -0.0000020058,0.0000020066,0.0000020070,0.0000020067,0.0000020048, -0.0000020035,0.0000020025,0.0000020025,0.0000020035,0.0000020049, -0.0000020061,0.0000020068,0.0000020068,0.0000020064,0.0000020062, -0.0000020055,0.0000020057,0.0000020067,0.0000020087,0.0000020117, -0.0000020159,0.0000020206,0.0000020253,0.0000020297,0.0000020336, -0.0000020365,0.0000020382,0.0000020384,0.0000020375,0.0000020363, -0.0000020349,0.0000020322,0.0000020283,0.0000020235,0.0000020181, -0.0000020126,0.0000020072,0.0000020019,0.0000019967,0.0000019917, -0.0000019869,0.0000019825,0.0000019800,0.0000019791,0.0000019804, -0.0000019825,0.0000019855,0.0000019884,0.0000019888,0.0000019897, -0.0000019895,0.0000019878,0.0000019856,0.0000019831,0.0000019806, -0.0000019786,0.0000019776,0.0000019761,0.0000019767,0.0000019772, -0.0000019777,0.0000019779,0.0000019786,0.0000019776,0.0000019751, -0.0000019715,0.0000019670,0.0000019624,0.0000019580,0.0000019537, -0.0000019489,0.0000019439,0.0000019395,0.0000019382,0.0000019395, -0.0000019430,0.0000019484,0.0000019543,0.0000019593,0.0000019630, -0.0000019658,0.0000019679,0.0000019698,0.0000019720,0.0000019747, -0.0000019781,0.0000019821,0.0000019852,0.0000019869,0.0000019866, -0.0000019850,0.0000019841,0.0000019856,0.0000019896,0.0000019953, -0.0000020013,0.0000020068,0.0000020115,0.0000020155,0.0000020186, -0.0000020207,0.0000020221,0.0000020233,0.0000020248,0.0000020268, -0.0000020294,0.0000020324,0.0000020358,0.0000020391,0.0000020420, -0.0000020441,0.0000020456,0.0000020468,0.0000020476,0.0000020478, -0.0000020473,0.0000020467,0.0000020460,0.0000020449,0.0000020430, -0.0000020405,0.0000020375,0.0000020340,0.0000020304,0.0000020275, -0.0000020250,0.0000020230,0.0000020214,0.0000020198,0.0000020181, -0.0000020159,0.0000020130,0.0000020091,0.0000020042,0.0000019987, -0.0000019931,0.0000019879,0.0000019831,0.0000019787,0.0000019751, -0.0000019729,0.0000019723,0.0000019727,0.0000019742,0.0000019764, -0.0000019785,0.0000019802,0.0000019814,0.0000019817,0.0000019809, -0.0000019783,0.0000019743,0.0000019702,0.0000019676,0.0000019671, -0.0000019680,0.0000019695,0.0000019712,0.0000019730,0.0000019744, -0.0000019749,0.0000019748,0.0000019739,0.0000019722,0.0000019697, -0.0000019674,0.0000019649,0.0000019623,0.0000019598,0.0000019572, -0.0000019549,0.0000019530,0.0000019509,0.0000019488,0.0000019468, -0.0000019450,0.0000019432,0.0000019411,0.0000019389,0.0000019371, -0.0000019362,0.0000019354,0.0000019349,0.0000019344,0.0000019342, -0.0000019342,0.0000019342,0.0000019342,0.0000019340,0.0000019334, -0.0000019322,0.0000019302,0.0000019281,0.0000019266,0.0000019258, -0.0000019248,0.0000019231,0.0000019209,0.0000019185,0.0000019162, -0.0000019144,0.0000019134,0.0000019129,0.0000019128,0.0000019126, -0.0000019122,0.0000019116,0.0000019114,0.0000019115,0.0000019119, -0.0000019120,0.0000019117,0.0000019111,0.0000019102,0.0000019088, -0.0000019072,0.0000019053,0.0000019026,0.0000018998,0.0000018973, -0.0000018943,0.0000018898,0.0000018841,0.0000018782,0.0000018733, -0.0000018708,0.0000018702,0.0000018730,0.0000018779,0.0000018835, -0.0000018891,0.0000018941,0.0000018981,0.0000019009,0.0000019029, -0.0000019045,0.0000019064,0.0000019092,0.0000019130,0.0000019178, -0.0000019235,0.0000019305,0.0000019388,0.0000019478,0.0000019570, -0.0000019652,0.0000019719,0.0000019760,0.0000019766,0.0000019750, -0.0000019732,0.0000019713,0.0000019699,0.0000019699,0.0000019706, -0.0000019730,0.0000019762,0.0000019798,0.0000019831,0.0000019856, -0.0000019865,0.0000019872,0.0000019867,0.0000019847,0.0000019821, -0.0000019793,0.0000019763,0.0000019738,0.0000019713,0.0000019695, -0.0000019674,0.0000019654,0.0000019636,0.0000019626,0.0000019624, -0.0000019634,0.0000019651,0.0000019671,0.0000019686,0.0000019688, -0.0000019673,0.0000019643,0.0000019591,0.0000019517,0.0000019423, -0.0000019320,0.0000019226,0.0000019156,0.0000019117,0.0000019110, -0.0000019132,0.0000019181,0.0000019234,0.0000019272,0.0000019294, -0.0000019308,0.0000019316,0.0000019317,0.0000019317,0.0000019319, -0.0000019315,0.0000019299,0.0000019276,0.0000019261,0.0000019255, -0.0000019244,0.0000019216,0.0000019179,0.0000019140,0.0000019098, -0.0000019042,0.0000018977,0.0000018921,0.0000018896,0.0000018902, -0.0000018934,0.0000018983,0.0000019034,0.0000019072,0.0000019092, -0.0000019105,0.0000019120,0.0000019141,0.0000019152,0.0000019137, -0.0000019095,0.0000019039,0.0000018980,0.0000018925,0.0000018872, -0.0000018802,0.0000018695,0.0000018578,0.0000018499,0.0000018467, -0.0000018470,0.0000018504,0.0000018554,0.0000018595,0.0000018615, -0.0000018622,0.0000018623,0.0000018618,0.0000018601,0.0000018581, -0.0000018571,0.0000018569,0.0000018569,0.0000018569,0.0000018573, -0.0000018579,0.0000018584,0.0000018587,0.0000018592,0.0000018599, -0.0000018607,0.0000018615,0.0000018624,0.0000018631,0.0000018635, -0.0000018639,0.0000018640,0.0000018637,0.0000018629,0.0000018622, -0.0000018620,0.0000018613,0.0000018582,0.0000018532,0.0000018476, -0.0000018390,0.0000018317,0.0000018259,0.0000018199,0.0000018171, -0.0000018164,0.0000018163,0.0000018168,0.0000018175,0.0000018181, -0.0000018183,0.0000018184,0.0000018189,0.0000018195,0.0000018197, -0.0000018199,0.0000018203,0.0000018208,0.0000018213,0.0000018218, -0.0000018223,0.0000018233,0.0000018246,0.0000018266,0.0000018293, -0.0000018326,0.0000018356,0.0000018381,0.0000018400,0.0000018408, -0.0000018399,0.0000018367,0.0000018319,0.0000018257,0.0000018189, -0.0000018112,0.0000018031,0.0000017943,0.0000017872,0.0000017829, -0.0000017826,0.0000017853,0.0000017911,0.0000018015,0.0000018126, -0.0000018198,0.0000018233,0.0000018252,0.0000018268,0.0000018282, -0.0000018289,0.0000018293,0.0000018302,0.0000018312,0.0000018322, -0.0000018325,0.0000018316,0.0000018294,0.0000018252,0.0000018179, -0.0000018084,0.0000017993,0.0000017927,0.0000017884,0.0000017863, -0.0000017872,0.0000017908,0.0000017943,0.0000017946,0.0000017928, -0.0000017901,0.0000017870,0.0000017843,0.0000017832,0.0000017832, -0.0000017836,0.0000017830,0.0000017799,0.0000017752,0.0000017711, -0.0000017702,0.0000017739,0.0000017839,0.0000017963,0.0000018055, -0.0000018094,0.0000018112,0.0000018170,0.0000018291,0.0000018409, -0.0000018444,0.0000018444,0.0000018472,0.0000018546,0.0000018624, -0.0000018684,0.0000018774,0.0000018890,0.0000018978,0.0000019003, -0.0000018998,0.0000018981,0.0000018950,0.0000018907,0.0000018878, -0.0000018888,0.0000018938,0.0000019005,0.0000019065,0.0000019097, -0.0000019095,0.0000019054,0.0000018987,0.0000018922,0.0000018872, -0.0000018841,0.0000018825,0.0000018817,0.0000018812,0.0000018814, -0.0000018836,0.0000018847,0.0000018870,0.0000018881,0.0000018880, -0.0000018876,0.0000018882,0.0000018898,0.0000018936,0.0000018983, -0.0000019028,0.0000019074,0.0000019082,0.0000019050,0.0000019031, -0.0000019068,0.0000019030,0.0000018773,0.0000018533,0.0000018456, -0.0000018392,0.0000018306,0.0000018262,0.0000018260,0.0000018276, -0.0000018303,0.0000018333,0.0000018358,0.0000018379,0.0000018394, -0.0000018399,0.0000018395,0.0000018379,0.0000018352,0.0000018315, -0.0000018273,0.0000018230,0.0000018195,0.0000018180,0.0000018172, -0.0000018132,0.0000018030,0.0000017894,0.0000017812,0.0000017807, -0.0000017837,0.0000017863,0.0000017875,0.0000017878,0.0000017871, -0.0000017857,0.0000017844,0.0000017835,0.0000017829,0.0000017824, -0.0000017822,0.0000017820,0.0000017819,0.0000017815,0.0000017810, -0.0000017807,0.0000017803,0.0000017805,0.0000017818,0.0000017829, -0.0000017850,0.0000017880,0.0000017919,0.0000017970,0.0000018038, -0.0000018121,0.0000018220,0.0000018335,0.0000018461,0.0000018586, -0.0000018691,0.0000018762,0.0000018803,0.0000018823,0.0000018838, -0.0000018865,0.0000018903,0.0000018945,0.0000018974,0.0000018984, -0.0000018980,0.0000018973,0.0000018969,0.0000018966,0.0000018964, -0.0000018960,0.0000018957,0.0000018950,0.0000018942,0.0000018932, -0.0000018923,0.0000018915,0.0000018910,0.0000018908,0.0000018907, -0.0000018906,0.0000018905,0.0000018905,0.0000018907,0.0000018915, -0.0000018930,0.0000018950,0.0000018973,0.0000018994,0.0000019014, -0.0000019030,0.0000019041,0.0000019045,0.0000019042,0.0000019036, -0.0000019018,0.0000019003,0.0000018988,0.0000018972,0.0000018958, -0.0000018947,0.0000018944,0.0000018945,0.0000018951,0.0000018957, -0.0000018962,0.0000018968,0.0000018975,0.0000018980,0.0000018981, -0.0000018978,0.0000018972,0.0000018962,0.0000018951,0.0000018939, -0.0000018924,0.0000018911,0.0000018900,0.0000018892,0.0000018888, -0.0000018886,0.0000018886,0.0000018885,0.0000018884,0.0000018882, -0.0000018878,0.0000018873,0.0000018865,0.0000018854,0.0000018841, -0.0000018824,0.0000018804,0.0000018782,0.0000018757,0.0000018732, -0.0000018707,0.0000018682,0.0000018658,0.0000018634,0.0000018610, -0.0000018586,0.0000018564,0.0000018544,0.0000018528,0.0000018515, -0.0000018505,0.0000018500,0.0000018498,0.0000018497,0.0000018497, -0.0000018496,0.0000018496,0.0000018495,0.0000018493,0.0000018491, -0.0000018489,0.0000018486,0.0000018486,0.0000018487,0.0000018486, -0.0000018485,0.0000018483,0.0000018482,0.0000018486,0.0000018492, -0.0000018472,0.0000018480,0.0000018491,0.0000018505,0.0000018520, -0.0000018534,0.0000018542,0.0000018545,0.0000018540,0.0000018528, -0.0000018508,0.0000018477,0.0000018436,0.0000018394,0.0000018362, -0.0000018343,0.0000018327,0.0000018316,0.0000018305,0.0000018291, -0.0000018278,0.0000018274,0.0000018283,0.0000018304,0.0000018339, -0.0000018396,0.0000018484,0.0000018606,0.0000018742,0.0000018859, -0.0000018932,0.0000018936,0.0000018923,0.0000018890,0.0000018858, -0.0000018836,0.0000018826,0.0000018823,0.0000018822,0.0000018827, -0.0000018843,0.0000018871,0.0000018906,0.0000018939,0.0000018964, -0.0000018980,0.0000018986,0.0000018984,0.0000018978,0.0000018970, -0.0000018965,0.0000018962,0.0000018963,0.0000018970,0.0000018978, -0.0000018981,0.0000018977,0.0000018971,0.0000018968,0.0000018971, -0.0000018983,0.0000019002,0.0000019022,0.0000019039,0.0000019053, -0.0000019065,0.0000019077,0.0000019087,0.0000019095,0.0000019101, -0.0000019104,0.0000019109,0.0000019114,0.0000019120,0.0000019129, -0.0000019138,0.0000019147,0.0000019158,0.0000019171,0.0000019184, -0.0000019194,0.0000019200,0.0000019203,0.0000019201,0.0000019196, -0.0000019191,0.0000019187,0.0000019185,0.0000019187,0.0000019191, -0.0000019192,0.0000019192,0.0000019180,0.0000019163,0.0000019136, -0.0000019097,0.0000019051,0.0000019002,0.0000018954,0.0000018907, -0.0000018865,0.0000018830,0.0000018802,0.0000018783,0.0000018773, -0.0000018769,0.0000018764,0.0000018746,0.0000018718,0.0000018683, -0.0000018658,0.0000018639,0.0000018626,0.0000018619,0.0000018619, -0.0000018624,0.0000018630,0.0000018629,0.0000018625,0.0000018616, -0.0000018601,0.0000018581,0.0000018558,0.0000018532,0.0000018505, -0.0000018478,0.0000018454,0.0000018437,0.0000018424,0.0000018411, -0.0000018403,0.0000018401,0.0000018406,0.0000018426,0.0000018466, -0.0000018528,0.0000018610,0.0000018704,0.0000018799,0.0000018883, -0.0000018944,0.0000018983,0.0000018984,0.0000018978,0.0000018956, -0.0000018922,0.0000018882,0.0000018842,0.0000018807,0.0000018778, -0.0000018759,0.0000018746,0.0000018736,0.0000018731,0.0000018727, -0.0000018724,0.0000018723,0.0000018723,0.0000018725,0.0000018730, -0.0000018735,0.0000018739,0.0000018742,0.0000018747,0.0000018752, -0.0000018754,0.0000018753,0.0000018748,0.0000018739,0.0000018726, -0.0000018710,0.0000018692,0.0000018676,0.0000018662,0.0000018649, -0.0000018638,0.0000018631,0.0000018626,0.0000018617,0.0000018600, -0.0000018577,0.0000018543,0.0000018501,0.0000018451,0.0000018401, -0.0000018357,0.0000018321,0.0000018291,0.0000018280,0.0000018275, -0.0000018272,0.0000018265,0.0000018256,0.0000018243,0.0000018231, -0.0000018225,0.0000018224,0.0000018224,0.0000018225,0.0000018230, -0.0000018239,0.0000018253,0.0000018276,0.0000018305,0.0000018339, -0.0000018380,0.0000018431,0.0000018494,0.0000018570,0.0000018658, -0.0000018756,0.0000018858,0.0000018956,0.0000019041,0.0000019109, -0.0000019163,0.0000019214,0.0000019278,0.0000019368,0.0000019485, -0.0000019621,0.0000019757,0.0000019869,0.0000019949,0.0000020000, -0.0000020025,0.0000020035,0.0000020035,0.0000020036,0.0000020044, -0.0000020056,0.0000020062,0.0000020061,0.0000020067,0.0000020092, -0.0000020138,0.0000020195,0.0000020248,0.0000020286,0.0000020308, -0.0000020313,0.0000020309,0.0000020301,0.0000020294,0.0000020289, -0.0000020284,0.0000020281,0.0000020282,0.0000020286,0.0000020290, -0.0000020297,0.0000020305,0.0000020314,0.0000020322,0.0000020329, -0.0000020334,0.0000020338,0.0000020340,0.0000020345,0.0000020351, -0.0000020358,0.0000020365,0.0000020372,0.0000020378,0.0000020382, -0.0000020384,0.0000020384,0.0000020381,0.0000020374,0.0000020363, -0.0000020348,0.0000020334,0.0000020325,0.0000020323,0.0000020328, -0.0000020336,0.0000020347,0.0000020357,0.0000020369,0.0000020382, -0.0000020398,0.0000020416,0.0000020434,0.0000020450,0.0000020463, -0.0000020473,0.0000020481,0.0000020485,0.0000020490,0.0000020497, -0.0000020505,0.0000020507,0.0000020500,0.0000020484,0.0000020458, -0.0000020425,0.0000020387,0.0000020350,0.0000020320,0.0000020298, -0.0000020282,0.0000020269,0.0000020252,0.0000020232,0.0000020214, -0.0000020203,0.0000020202,0.0000020207,0.0000020216,0.0000020219, -0.0000020217,0.0000020222,0.0000020259,0.0000020308,0.0000020317, -0.0000020310,0.0000020350,0.0000020417,0.0000020409,0.0000020315, -0.0000020220,0.0000020175,0.0000020157,0.0000020152,0.0000020145, -0.0000020131,0.0000020115,0.0000020079,0.0000020023,0.0000019988, -0.0000019994,0.0000020081,0.0000020262,0.0000020413,0.0000020445, -0.0000020438,0.0000020426,0.0000020346,0.0000020203,0.0000020145, -0.0000020219,0.0000020420,0.0000020650,0.0000020797,0.0000020827, -0.0000020836,0.0000020859,0.0000020881,0.0000020891,0.0000020902, -0.0000020925,0.0000020952,0.0000020980,0.0000021007,0.0000021041, -0.0000021083,0.0000021131,0.0000021179,0.0000021222,0.0000021255, -0.0000021278,0.0000021291,0.0000021298,0.0000021305,0.0000021312, -0.0000021317,0.0000021318,0.0000021321,0.0000021327,0.0000021333, -0.0000021337,0.0000021342,0.0000021344,0.0000021343,0.0000021339, -0.0000021333,0.0000021326,0.0000021318,0.0000021305,0.0000021285, -0.0000021263,0.0000021241,0.0000021219,0.0000021197,0.0000021173, -0.0000021147,0.0000021119,0.0000021090,0.0000021063,0.0000021038, -0.0000021014,0.0000020989,0.0000020963,0.0000020937,0.0000020915, -0.0000020904,0.0000020900,0.0000020901,0.0000020906,0.0000020911, -0.0000020915,0.0000020920,0.0000020927,0.0000020936,0.0000020943, -0.0000020948,0.0000020950,0.0000020950,0.0000020949,0.0000020949, -0.0000020950,0.0000020953,0.0000020954,0.0000020953,0.0000020952, -0.0000020951,0.0000020947,0.0000020937,0.0000020925,0.0000020913, -0.0000020901,0.0000020886,0.0000020868,0.0000020847,0.0000020828, -0.0000020812,0.0000020795,0.0000020777,0.0000020754,0.0000020729, -0.0000020705,0.0000020686,0.0000020675,0.0000020672,0.0000020672, -0.0000020675,0.0000020677,0.0000020681,0.0000020687,0.0000020694, -0.0000020699,0.0000020702,0.0000020703,0.0000020702,0.0000020702, -0.0000020704,0.0000020707,0.0000020711,0.0000020714,0.0000020718, -0.0000020725,0.0000020736,0.0000020748,0.0000020762,0.0000020781, -0.0000020803,0.0000020826,0.0000020849,0.0000020870,0.0000020889, -0.0000020907,0.0000020923,0.0000020936,0.0000020948,0.0000020960, -0.0000020968,0.0000020969,0.0000020981,0.0000020991,0.0000021014, -0.0000021026,0.0000021030,0.0000021030,0.0000021024,0.0000021011, -0.0000020994,0.0000020971,0.0000020941,0.0000020909,0.0000020875, -0.0000020846,0.0000020819,0.0000020792,0.0000020763,0.0000020732, -0.0000020699,0.0000020667,0.0000020633,0.0000020597,0.0000020563, -0.0000020534,0.0000020509,0.0000020487,0.0000020470,0.0000020464, -0.0000020464,0.0000020470,0.0000020478,0.0000020486,0.0000020498, -0.0000020508,0.0000020516,0.0000020523,0.0000020530,0.0000020536, -0.0000020544,0.0000020547,0.0000020548,0.0000020548,0.0000020550, -0.0000020555,0.0000020562,0.0000020572,0.0000020584,0.0000020594, -0.0000020602,0.0000020608,0.0000020610,0.0000020612,0.0000020611, -0.0000020606,0.0000020595,0.0000020582,0.0000020567,0.0000020551, -0.0000020536,0.0000020528,0.0000020528,0.0000020537,0.0000020551, -0.0000020565,0.0000020577,0.0000020588,0.0000020599,0.0000020612, -0.0000020627,0.0000020640,0.0000020650,0.0000020656,0.0000020663, -0.0000020671,0.0000020680,0.0000020686,0.0000020691,0.0000020694, -0.0000020695,0.0000020695,0.0000020697,0.0000020702,0.0000020704, -0.0000020705,0.0000020707,0.0000020715,0.0000020723,0.0000020728, -0.0000020731,0.0000020736,0.0000020739,0.0000020741,0.0000020742, -0.0000020743,0.0000020743,0.0000020740,0.0000020726,0.0000020707, -0.0000020687,0.0000020665,0.0000020643,0.0000020627,0.0000020618, -0.0000020610,0.0000020603,0.0000020596,0.0000020587,0.0000020576, -0.0000020565,0.0000020555,0.0000020547,0.0000020542,0.0000020541, -0.0000020543,0.0000020551,0.0000020565,0.0000020587,0.0000020614, -0.0000020641,0.0000020668,0.0000020689,0.0000020703,0.0000020713, -0.0000020722,0.0000020735,0.0000020752,0.0000020772,0.0000020789, -0.0000020790,0.0000020778,0.0000020743,0.0000020695,0.0000020637, -0.0000020580,0.0000020537,0.0000020515,0.0000020503,0.0000020489, -0.0000020470,0.0000020454,0.0000020447,0.0000020445,0.0000020442, -0.0000020431,0.0000020416,0.0000020404,0.0000020395,0.0000020388, -0.0000020380,0.0000020378,0.0000020385,0.0000020408,0.0000020444, -0.0000020483,0.0000020524,0.0000020561,0.0000020587,0.0000020602, -0.0000020613,0.0000020624,0.0000020642,0.0000020680,0.0000020731, -0.0000020782,0.0000020823,0.0000020855,0.0000020880,0.0000020900, -0.0000020918,0.0000020929,0.0000020929,0.0000020915,0.0000020888, -0.0000020854,0.0000020822,0.0000020805,0.0000020805,0.0000020820, -0.0000020844,0.0000020870,0.0000020895,0.0000020919,0.0000020944, -0.0000020954,0.0000020955,0.0000020943,0.0000020917,0.0000020882, -0.0000020840,0.0000020792,0.0000020746,0.0000020712,0.0000020693, -0.0000020686,0.0000020690,0.0000020697,0.0000020697,0.0000020693, -0.0000020684,0.0000020672,0.0000020661,0.0000020649,0.0000020638, -0.0000020623,0.0000020604,0.0000020579,0.0000020548,0.0000020514, -0.0000020478,0.0000020443,0.0000020413,0.0000020386,0.0000020359, -0.0000020338,0.0000020321,0.0000020304,0.0000020286,0.0000020272, -0.0000020265,0.0000020264,0.0000020268,0.0000020276,0.0000020284, -0.0000020286,0.0000020284,0.0000020288,0.0000020291,0.0000020287, -0.0000020278,0.0000020264,0.0000020244,0.0000020220,0.0000020206, -0.0000020202,0.0000020205,0.0000020215,0.0000020230,0.0000020246, -0.0000020259,0.0000020278,0.0000020294,0.0000020306,0.0000020315, -0.0000020320,0.0000020323,0.0000020323,0.0000020316,0.0000020301, -0.0000020281,0.0000020256,0.0000020221,0.0000020177,0.0000020128, -0.0000020078,0.0000020029,0.0000019983,0.0000019947,0.0000019924, -0.0000019911,0.0000019903,0.0000019905,0.0000019919,0.0000019935, -0.0000019943,0.0000019941,0.0000019933,0.0000019924,0.0000019913, -0.0000019897,0.0000019879,0.0000019863,0.0000019853,0.0000019849, -0.0000019851,0.0000019859,0.0000019874,0.0000019892,0.0000019911, -0.0000019926,0.0000019939,0.0000019954,0.0000019971,0.0000019989, -0.0000020003,0.0000020010,0.0000020011,0.0000020013,0.0000020020, -0.0000020031,0.0000020047,0.0000020061,0.0000020070,0.0000020073, -0.0000020076,0.0000020075,0.0000020071,0.0000020062,0.0000020055, -0.0000020054,0.0000020049,0.0000020057,0.0000020078,0.0000020109, -0.0000020152,0.0000020203,0.0000020253,0.0000020298,0.0000020331, -0.0000020347,0.0000020353,0.0000020347,0.0000020330,0.0000020301, -0.0000020259,0.0000020210,0.0000020160,0.0000020112,0.0000020069, -0.0000020032,0.0000019998,0.0000019962,0.0000019919,0.0000019874, -0.0000019835,0.0000019806,0.0000019797,0.0000019792,0.0000019802, -0.0000019827,0.0000019858,0.0000019887,0.0000019897,0.0000019911, -0.0000019906,0.0000019890,0.0000019867,0.0000019836,0.0000019807, -0.0000019787,0.0000019771,0.0000019768,0.0000019766,0.0000019770, -0.0000019778,0.0000019776,0.0000019773,0.0000019758,0.0000019728, -0.0000019690,0.0000019645,0.0000019593,0.0000019532,0.0000019469, -0.0000019420,0.0000019391,0.0000019389,0.0000019422,0.0000019467, -0.0000019515,0.0000019563,0.0000019603,0.0000019635,0.0000019660, -0.0000019679,0.0000019697,0.0000019716,0.0000019739,0.0000019767, -0.0000019795,0.0000019813,0.0000019821,0.0000019830,0.0000019845, -0.0000019871,0.0000019910,0.0000019960,0.0000020017,0.0000020074, -0.0000020124,0.0000020161,0.0000020185,0.0000020195,0.0000020198, -0.0000020199,0.0000020205,0.0000020222,0.0000020251,0.0000020292, -0.0000020336,0.0000020375,0.0000020405,0.0000020428,0.0000020447, -0.0000020460,0.0000020466,0.0000020465,0.0000020464,0.0000020461, -0.0000020456,0.0000020444,0.0000020426,0.0000020402,0.0000020373, -0.0000020343,0.0000020318,0.0000020295,0.0000020272,0.0000020250, -0.0000020227,0.0000020199,0.0000020164,0.0000020119,0.0000020064, -0.0000020007,0.0000019953,0.0000019902,0.0000019853,0.0000019807, -0.0000019766,0.0000019738,0.0000019725,0.0000019725,0.0000019737, -0.0000019756,0.0000019774,0.0000019788,0.0000019800,0.0000019805, -0.0000019803,0.0000019784,0.0000019747,0.0000019702,0.0000019664, -0.0000019641,0.0000019637,0.0000019642,0.0000019653,0.0000019665, -0.0000019680,0.0000019691,0.0000019696,0.0000019700,0.0000019700, -0.0000019696,0.0000019690,0.0000019682,0.0000019670,0.0000019655, -0.0000019636,0.0000019615,0.0000019594,0.0000019576,0.0000019555, -0.0000019534,0.0000019516,0.0000019495,0.0000019470,0.0000019444, -0.0000019418,0.0000019395,0.0000019371,0.0000019347,0.0000019327, -0.0000019312,0.0000019302,0.0000019294,0.0000019287,0.0000019285, -0.0000019283,0.0000019276,0.0000019259,0.0000019234,0.0000019207, -0.0000019182,0.0000019165,0.0000019150,0.0000019137,0.0000019123, -0.0000019108,0.0000019092,0.0000019082,0.0000019080,0.0000019086, -0.0000019097,0.0000019104,0.0000019102,0.0000019095,0.0000019093, -0.0000019096,0.0000019099,0.0000019099,0.0000019098,0.0000019099, -0.0000019096,0.0000019090,0.0000019080,0.0000019060,0.0000019029, -0.0000019000,0.0000018973,0.0000018943,0.0000018905,0.0000018854, -0.0000018796,0.0000018741,0.0000018698,0.0000018684,0.0000018697, -0.0000018734,0.0000018782,0.0000018836,0.0000018889,0.0000018937, -0.0000018971,0.0000018993,0.0000019004,0.0000019012,0.0000019024, -0.0000019041,0.0000019064,0.0000019095,0.0000019140,0.0000019201, -0.0000019278,0.0000019370,0.0000019472,0.0000019573,0.0000019655, -0.0000019706,0.0000019735,0.0000019728,0.0000019717,0.0000019704, -0.0000019680,0.0000019674,0.0000019680,0.0000019694,0.0000019734, -0.0000019779,0.0000019823,0.0000019858,0.0000019883,0.0000019895, -0.0000019887,0.0000019866,0.0000019835,0.0000019798,0.0000019760, -0.0000019723,0.0000019690,0.0000019660,0.0000019634,0.0000019613, -0.0000019592,0.0000019587,0.0000019590,0.0000019602,0.0000019620, -0.0000019636,0.0000019645,0.0000019640,0.0000019614,0.0000019577, -0.0000019516,0.0000019432,0.0000019332,0.0000019231,0.0000019146, -0.0000019094,0.0000019071,0.0000019083,0.0000019125,0.0000019173, -0.0000019208,0.0000019228,0.0000019243,0.0000019252,0.0000019257, -0.0000019262,0.0000019270,0.0000019273,0.0000019264,0.0000019246, -0.0000019237,0.0000019237,0.0000019228,0.0000019207,0.0000019170, -0.0000019131,0.0000019090,0.0000019034,0.0000018966,0.0000018905, -0.0000018872,0.0000018873,0.0000018899,0.0000018948,0.0000019009, -0.0000019060,0.0000019089,0.0000019103,0.0000019117,0.0000019134, -0.0000019139,0.0000019121,0.0000019078,0.0000019020,0.0000018961, -0.0000018911,0.0000018861,0.0000018785,0.0000018666,0.0000018542, -0.0000018460,0.0000018427,0.0000018438,0.0000018482,0.0000018538, -0.0000018577,0.0000018593,0.0000018596,0.0000018595,0.0000018586, -0.0000018568,0.0000018556,0.0000018552,0.0000018549,0.0000018543, -0.0000018536,0.0000018533,0.0000018535,0.0000018539,0.0000018546, -0.0000018552,0.0000018559,0.0000018569,0.0000018581,0.0000018591, -0.0000018598,0.0000018601,0.0000018600,0.0000018590,0.0000018571, -0.0000018553,0.0000018544,0.0000018539,0.0000018518,0.0000018481, -0.0000018427,0.0000018346,0.0000018281,0.0000018218,0.0000018167, -0.0000018150,0.0000018149,0.0000018167,0.0000018190,0.0000018208, -0.0000018218,0.0000018221,0.0000018220,0.0000018221,0.0000018226, -0.0000018227,0.0000018230,0.0000018235,0.0000018241,0.0000018247, -0.0000018255,0.0000018265,0.0000018277,0.0000018296,0.0000018320, -0.0000018344,0.0000018367,0.0000018389,0.0000018410,0.0000018423, -0.0000018424,0.0000018409,0.0000018376,0.0000018328,0.0000018270, -0.0000018209,0.0000018141,0.0000018062,0.0000017973,0.0000017888, -0.0000017821,0.0000017785,0.0000017793,0.0000017836,0.0000017902, -0.0000017999,0.0000018104,0.0000018179,0.0000018217,0.0000018238, -0.0000018254,0.0000018267,0.0000018275,0.0000018282,0.0000018285, -0.0000018286,0.0000018279,0.0000018261,0.0000018228,0.0000018173, -0.0000018094,0.0000018010,0.0000017948,0.0000017910,0.0000017886, -0.0000017891,0.0000017927,0.0000017966,0.0000017980,0.0000017971, -0.0000017942,0.0000017902,0.0000017860,0.0000017832,0.0000017828, -0.0000017834,0.0000017831,0.0000017801,0.0000017746,0.0000017705, -0.0000017701,0.0000017747,0.0000017850,0.0000017963,0.0000018035, -0.0000018065,0.0000018086,0.0000018143,0.0000018269,0.0000018389, -0.0000018424,0.0000018424,0.0000018445,0.0000018513,0.0000018588, -0.0000018640,0.0000018712,0.0000018816,0.0000018911,0.0000018958, -0.0000018965,0.0000018958,0.0000018932,0.0000018893,0.0000018870, -0.0000018884,0.0000018945,0.0000019014,0.0000019069,0.0000019093, -0.0000019076,0.0000018997,0.0000018896,0.0000018821,0.0000018783, -0.0000018766,0.0000018764,0.0000018772,0.0000018781,0.0000018801, -0.0000018834,0.0000018867,0.0000018887,0.0000018886,0.0000018871, -0.0000018856,0.0000018847,0.0000018846,0.0000018853,0.0000018867, -0.0000018888,0.0000018935,0.0000019010,0.0000019078,0.0000019078, -0.0000019020,0.0000019022,0.0000019057,0.0000018931,0.0000018636, -0.0000018495,0.0000018470,0.0000018426,0.0000018387,0.0000018382, -0.0000018398,0.0000018428,0.0000018459,0.0000018480,0.0000018492, -0.0000018494,0.0000018489,0.0000018477,0.0000018464,0.0000018447, -0.0000018423,0.0000018395,0.0000018357,0.0000018298,0.0000018233, -0.0000018200,0.0000018191,0.0000018151,0.0000018042,0.0000017904, -0.0000017825,0.0000017820,0.0000017845,0.0000017881,0.0000017897, -0.0000017909,0.0000017907,0.0000017896,0.0000017886,0.0000017876, -0.0000017867,0.0000017858,0.0000017853,0.0000017852,0.0000017854, -0.0000017855,0.0000017855,0.0000017852,0.0000017849,0.0000017849, -0.0000017849,0.0000017855,0.0000017870,0.0000017879,0.0000017900, -0.0000017934,0.0000017977,0.0000018030,0.0000018098,0.0000018189, -0.0000018303,0.0000018429,0.0000018553,0.0000018659,0.0000018736, -0.0000018781,0.0000018808,0.0000018831,0.0000018864,0.0000018904, -0.0000018936,0.0000018957,0.0000018965,0.0000018960,0.0000018954, -0.0000018952,0.0000018949,0.0000018947,0.0000018945,0.0000018938, -0.0000018931,0.0000018917,0.0000018901,0.0000018886,0.0000018873, -0.0000018863,0.0000018852,0.0000018840,0.0000018829,0.0000018820, -0.0000018816,0.0000018818,0.0000018826,0.0000018840,0.0000018858, -0.0000018880,0.0000018902,0.0000018923,0.0000018940,0.0000018954, -0.0000018962,0.0000018962,0.0000018959,0.0000018955,0.0000018951, -0.0000018950,0.0000018950,0.0000018953,0.0000018963,0.0000018971, -0.0000018977,0.0000018989,0.0000019000,0.0000019008,0.0000019015, -0.0000019019,0.0000019017,0.0000019009,0.0000019002,0.0000018993, -0.0000018982,0.0000018968,0.0000018955,0.0000018945,0.0000018938, -0.0000018935,0.0000018931,0.0000018926,0.0000018919,0.0000018912, -0.0000018906,0.0000018902,0.0000018898,0.0000018891,0.0000018881, -0.0000018869,0.0000018852,0.0000018832,0.0000018809,0.0000018784, -0.0000018761,0.0000018738,0.0000018716,0.0000018693,0.0000018669, -0.0000018645,0.0000018624,0.0000018606,0.0000018590,0.0000018575, -0.0000018564,0.0000018558,0.0000018555,0.0000018553,0.0000018552, -0.0000018551,0.0000018551,0.0000018553,0.0000018554,0.0000018554, -0.0000018552,0.0000018548,0.0000018542,0.0000018534,0.0000018523, -0.0000018511,0.0000018498,0.0000018485,0.0000018478,0.0000018470, -0.0000018482,0.0000018472,0.0000018464,0.0000018466,0.0000018476, -0.0000018492,0.0000018514,0.0000018536,0.0000018546,0.0000018549, -0.0000018544,0.0000018529,0.0000018505,0.0000018470,0.0000018422, -0.0000018372,0.0000018332,0.0000018313,0.0000018298,0.0000018285, -0.0000018275,0.0000018262,0.0000018248,0.0000018243,0.0000018250, -0.0000018270,0.0000018307,0.0000018371,0.0000018467,0.0000018593, -0.0000018727,0.0000018834,0.0000018897,0.0000018896,0.0000018877, -0.0000018844,0.0000018815,0.0000018796,0.0000018788,0.0000018785, -0.0000018786,0.0000018795,0.0000018814,0.0000018844,0.0000018879, -0.0000018913,0.0000018941,0.0000018957,0.0000018963,0.0000018956, -0.0000018942,0.0000018925,0.0000018912,0.0000018908,0.0000018910, -0.0000018916,0.0000018921,0.0000018923,0.0000018921,0.0000018920, -0.0000018927,0.0000018950,0.0000018980,0.0000019007,0.0000019029, -0.0000019045,0.0000019058,0.0000019068,0.0000019074,0.0000019078, -0.0000019082,0.0000019086,0.0000019089,0.0000019092,0.0000019097, -0.0000019102,0.0000019106,0.0000019112,0.0000019120,0.0000019131, -0.0000019143,0.0000019155,0.0000019163,0.0000019169,0.0000019169, -0.0000019165,0.0000019159,0.0000019151,0.0000019141,0.0000019133, -0.0000019131,0.0000019133,0.0000019135,0.0000019135,0.0000019124, -0.0000019104,0.0000019075,0.0000019037,0.0000018995,0.0000018951, -0.0000018907,0.0000018867,0.0000018829,0.0000018796,0.0000018769, -0.0000018750,0.0000018739,0.0000018731,0.0000018719,0.0000018697, -0.0000018669,0.0000018636,0.0000018611,0.0000018593,0.0000018586, -0.0000018591,0.0000018601,0.0000018609,0.0000018616,0.0000018614, -0.0000018610,0.0000018598,0.0000018580,0.0000018557,0.0000018530, -0.0000018501,0.0000018473,0.0000018447,0.0000018425,0.0000018406, -0.0000018392,0.0000018382,0.0000018374,0.0000018370,0.0000018376, -0.0000018397,0.0000018436,0.0000018494,0.0000018572,0.0000018663, -0.0000018754,0.0000018836,0.0000018899,0.0000018935,0.0000018950, -0.0000018937,0.0000018926,0.0000018911,0.0000018891,0.0000018869, -0.0000018849,0.0000018830,0.0000018814,0.0000018803,0.0000018795, -0.0000018789,0.0000018788,0.0000018790,0.0000018796,0.0000018804, -0.0000018811,0.0000018818,0.0000018824,0.0000018830,0.0000018832, -0.0000018830,0.0000018823,0.0000018811,0.0000018793,0.0000018771, -0.0000018743,0.0000018714,0.0000018688,0.0000018665,0.0000018646, -0.0000018637,0.0000018632,0.0000018632,0.0000018635,0.0000018635, -0.0000018634,0.0000018624,0.0000018603,0.0000018571,0.0000018531, -0.0000018483,0.0000018431,0.0000018378,0.0000018333,0.0000018299, -0.0000018274,0.0000018259,0.0000018246,0.0000018231,0.0000018217, -0.0000018207,0.0000018196,0.0000018182,0.0000018170,0.0000018165, -0.0000018168,0.0000018175,0.0000018187,0.0000018201,0.0000018218, -0.0000018239,0.0000018265,0.0000018300,0.0000018348,0.0000018412, -0.0000018495,0.0000018597,0.0000018717,0.0000018846,0.0000018969, -0.0000019071,0.0000019145,0.0000019198,0.0000019251,0.0000019326, -0.0000019433,0.0000019565,0.0000019698,0.0000019811,0.0000019895, -0.0000019949,0.0000019976,0.0000019988,0.0000019993,0.0000019998, -0.0000020007,0.0000020017,0.0000020023,0.0000020028,0.0000020040, -0.0000020068,0.0000020113,0.0000020165,0.0000020214,0.0000020250, -0.0000020272,0.0000020281,0.0000020282,0.0000020280,0.0000020275, -0.0000020269,0.0000020265,0.0000020265,0.0000020268,0.0000020271, -0.0000020274,0.0000020277,0.0000020281,0.0000020285,0.0000020290, -0.0000020293,0.0000020294,0.0000020296,0.0000020300,0.0000020306, -0.0000020314,0.0000020320,0.0000020326,0.0000020329,0.0000020329, -0.0000020326,0.0000020320,0.0000020313,0.0000020303,0.0000020289, -0.0000020273,0.0000020259,0.0000020248,0.0000020244,0.0000020247, -0.0000020255,0.0000020264,0.0000020274,0.0000020285,0.0000020298, -0.0000020310,0.0000020322,0.0000020332,0.0000020341,0.0000020351, -0.0000020361,0.0000020372,0.0000020382,0.0000020397,0.0000020418, -0.0000020441,0.0000020459,0.0000020470,0.0000020466,0.0000020455, -0.0000020435,0.0000020404,0.0000020367,0.0000020327,0.0000020295, -0.0000020274,0.0000020258,0.0000020238,0.0000020215,0.0000020195, -0.0000020187,0.0000020185,0.0000020186,0.0000020189,0.0000020191, -0.0000020188,0.0000020196,0.0000020239,0.0000020286,0.0000020292, -0.0000020292,0.0000020347,0.0000020408,0.0000020379,0.0000020290, -0.0000020223,0.0000020198,0.0000020186,0.0000020172,0.0000020150, -0.0000020127,0.0000020103,0.0000020059,0.0000020005,0.0000019985, -0.0000020007,0.0000020126,0.0000020318,0.0000020445,0.0000020462, -0.0000020451,0.0000020424,0.0000020316,0.0000020177,0.0000020150, -0.0000020261,0.0000020462,0.0000020676,0.0000020806,0.0000020826, -0.0000020835,0.0000020858,0.0000020882,0.0000020889,0.0000020891, -0.0000020904,0.0000020928,0.0000020958,0.0000020989,0.0000021016, -0.0000021042,0.0000021074,0.0000021110,0.0000021150,0.0000021188, -0.0000021219,0.0000021240,0.0000021252,0.0000021259,0.0000021261, -0.0000021258,0.0000021253,0.0000021251,0.0000021254,0.0000021260, -0.0000021267,0.0000021277,0.0000021287,0.0000021294,0.0000021298, -0.0000021300,0.0000021299,0.0000021291,0.0000021276,0.0000021256, -0.0000021235,0.0000021216,0.0000021200,0.0000021180,0.0000021157, -0.0000021131,0.0000021104,0.0000021076,0.0000021050,0.0000021025, -0.0000021000,0.0000020974,0.0000020947,0.0000020923,0.0000020907, -0.0000020897,0.0000020893,0.0000020891,0.0000020889,0.0000020888, -0.0000020889,0.0000020893,0.0000020899,0.0000020903,0.0000020907, -0.0000020910,0.0000020912,0.0000020915,0.0000020920,0.0000020926, -0.0000020932,0.0000020934,0.0000020933,0.0000020932,0.0000020930, -0.0000020925,0.0000020914,0.0000020902,0.0000020889,0.0000020875, -0.0000020858,0.0000020839,0.0000020819,0.0000020805,0.0000020794, -0.0000020781,0.0000020763,0.0000020740,0.0000020712,0.0000020681, -0.0000020650,0.0000020625,0.0000020608,0.0000020590,0.0000020581, -0.0000020572,0.0000020564,0.0000020558,0.0000020556,0.0000020556, -0.0000020555,0.0000020554,0.0000020553,0.0000020554,0.0000020555, -0.0000020557,0.0000020561,0.0000020567,0.0000020574,0.0000020582, -0.0000020594,0.0000020609,0.0000020626,0.0000020645,0.0000020668, -0.0000020693,0.0000020717,0.0000020739,0.0000020759,0.0000020778, -0.0000020796,0.0000020813,0.0000020830,0.0000020847,0.0000020864, -0.0000020886,0.0000020916,0.0000020953,0.0000020987,0.0000021013, -0.0000021031,0.0000021045,0.0000021051,0.0000021054,0.0000021048, -0.0000021030,0.0000021024,0.0000021005,0.0000020983,0.0000020960, -0.0000020938,0.0000020914,0.0000020889,0.0000020860,0.0000020826, -0.0000020789,0.0000020751,0.0000020713,0.0000020677,0.0000020642, -0.0000020609,0.0000020576,0.0000020544,0.0000020518,0.0000020501, -0.0000020491,0.0000020488,0.0000020493,0.0000020504,0.0000020516, -0.0000020526,0.0000020537,0.0000020544,0.0000020550,0.0000020553, -0.0000020552,0.0000020548,0.0000020544,0.0000020542,0.0000020543, -0.0000020549,0.0000020559,0.0000020569,0.0000020577,0.0000020583, -0.0000020585,0.0000020585,0.0000020580,0.0000020573,0.0000020563, -0.0000020546,0.0000020523,0.0000020501,0.0000020479,0.0000020462, -0.0000020453,0.0000020454,0.0000020465,0.0000020483,0.0000020501, -0.0000020517,0.0000020529,0.0000020537,0.0000020542,0.0000020546, -0.0000020553,0.0000020562,0.0000020570,0.0000020578,0.0000020588, -0.0000020598,0.0000020608,0.0000020618,0.0000020631,0.0000020644, -0.0000020652,0.0000020656,0.0000020664,0.0000020674,0.0000020680, -0.0000020686,0.0000020695,0.0000020705,0.0000020713,0.0000020719, -0.0000020725,0.0000020731,0.0000020734,0.0000020735,0.0000020736, -0.0000020738,0.0000020736,0.0000020726,0.0000020710,0.0000020695, -0.0000020679,0.0000020660,0.0000020648,0.0000020642,0.0000020639, -0.0000020637,0.0000020637,0.0000020636,0.0000020634,0.0000020631, -0.0000020625,0.0000020616,0.0000020606,0.0000020595,0.0000020585, -0.0000020577,0.0000020574,0.0000020577,0.0000020584,0.0000020600, -0.0000020620,0.0000020640,0.0000020658,0.0000020673,0.0000020683, -0.0000020689,0.0000020691,0.0000020695,0.0000020707,0.0000020725, -0.0000020748,0.0000020757,0.0000020756,0.0000020729,0.0000020676, -0.0000020610,0.0000020548,0.0000020505,0.0000020482,0.0000020469, -0.0000020453,0.0000020435,0.0000020421,0.0000020412,0.0000020407, -0.0000020403,0.0000020398,0.0000020390,0.0000020380,0.0000020367, -0.0000020351,0.0000020341,0.0000020347,0.0000020369,0.0000020400, -0.0000020435,0.0000020470,0.0000020501,0.0000020524,0.0000020544, -0.0000020564,0.0000020600,0.0000020654,0.0000020714,0.0000020769, -0.0000020814,0.0000020848,0.0000020873,0.0000020893,0.0000020907, -0.0000020912,0.0000020909,0.0000020893,0.0000020859,0.0000020816, -0.0000020778,0.0000020753,0.0000020744,0.0000020751,0.0000020772, -0.0000020803,0.0000020838,0.0000020874,0.0000020906,0.0000020926, -0.0000020933,0.0000020926,0.0000020904,0.0000020873,0.0000020835, -0.0000020790,0.0000020743,0.0000020702,0.0000020673,0.0000020659, -0.0000020663,0.0000020671,0.0000020679,0.0000020684,0.0000020684, -0.0000020684,0.0000020681,0.0000020675,0.0000020663,0.0000020645, -0.0000020616,0.0000020574,0.0000020526,0.0000020481,0.0000020444, -0.0000020412,0.0000020381,0.0000020349,0.0000020320,0.0000020299, -0.0000020278,0.0000020256,0.0000020234,0.0000020218,0.0000020209, -0.0000020204,0.0000020206,0.0000020211,0.0000020217,0.0000020223, -0.0000020230,0.0000020234,0.0000020232,0.0000020226,0.0000020218, -0.0000020198,0.0000020168,0.0000020139,0.0000020123,0.0000020120, -0.0000020127,0.0000020146,0.0000020169,0.0000020188,0.0000020207, -0.0000020227,0.0000020243,0.0000020255,0.0000020264,0.0000020268, -0.0000020269,0.0000020267,0.0000020259,0.0000020246,0.0000020228, -0.0000020202,0.0000020166,0.0000020125,0.0000020080,0.0000020033, -0.0000019986,0.0000019939,0.0000019905,0.0000019877,0.0000019862, -0.0000019863,0.0000019878,0.0000019898,0.0000019910,0.0000019912, -0.0000019907,0.0000019897,0.0000019887,0.0000019874,0.0000019859, -0.0000019842,0.0000019827,0.0000019816,0.0000019810,0.0000019811, -0.0000019819,0.0000019834,0.0000019848,0.0000019857,0.0000019866, -0.0000019876,0.0000019888,0.0000019903,0.0000019919,0.0000019933, -0.0000019944,0.0000019956,0.0000019973,0.0000019994,0.0000020016, -0.0000020037,0.0000020055,0.0000020068,0.0000020078,0.0000020085, -0.0000020089,0.0000020089,0.0000020086,0.0000020079,0.0000020067, -0.0000020056,0.0000020053,0.0000020048,0.0000020057,0.0000020081, -0.0000020110,0.0000020149,0.0000020191,0.0000020226,0.0000020256, -0.0000020279,0.0000020288,0.0000020282,0.0000020259,0.0000020230, -0.0000020190,0.0000020148,0.0000020109,0.0000020073,0.0000020043, -0.0000020019,0.0000019996,0.0000019966,0.0000019931,0.0000019890, -0.0000019850,0.0000019812,0.0000019785,0.0000019777,0.0000019785, -0.0000019799,0.0000019827,0.0000019863,0.0000019891,0.0000019908, -0.0000019923,0.0000019918,0.0000019903,0.0000019882,0.0000019853, -0.0000019823,0.0000019795,0.0000019772,0.0000019766,0.0000019764, -0.0000019763,0.0000019764,0.0000019757,0.0000019747,0.0000019730, -0.0000019698,0.0000019647,0.0000019583,0.0000019515,0.0000019456, -0.0000019422,0.0000019422,0.0000019429,0.0000019458,0.0000019491, -0.0000019527,0.0000019565,0.0000019602,0.0000019637,0.0000019665, -0.0000019681,0.0000019690,0.0000019702,0.0000019720,0.0000019740, -0.0000019761,0.0000019785,0.0000019812,0.0000019844,0.0000019880, -0.0000019922,0.0000019971,0.0000020025,0.0000020081,0.0000020129, -0.0000020162,0.0000020178,0.0000020179,0.0000020172,0.0000020166, -0.0000020169,0.0000020186,0.0000020223,0.0000020270,0.0000020316, -0.0000020355,0.0000020387,0.0000020415,0.0000020437,0.0000020450, -0.0000020455,0.0000020458,0.0000020458,0.0000020457,0.0000020452, -0.0000020441,0.0000020425,0.0000020404,0.0000020382,0.0000020360, -0.0000020336,0.0000020308,0.0000020276,0.0000020240,0.0000020197, -0.0000020146,0.0000020087,0.0000020027,0.0000019972,0.0000019922, -0.0000019873,0.0000019825,0.0000019781,0.0000019746,0.0000019725, -0.0000019720,0.0000019725,0.0000019739,0.0000019754,0.0000019765, -0.0000019776,0.0000019785,0.0000019787,0.0000019782,0.0000019760, -0.0000019723,0.0000019680,0.0000019642,0.0000019615,0.0000019602, -0.0000019600,0.0000019603,0.0000019610,0.0000019622,0.0000019636, -0.0000019649,0.0000019662,0.0000019672,0.0000019682,0.0000019690, -0.0000019694,0.0000019696,0.0000019694,0.0000019685,0.0000019670, -0.0000019654,0.0000019636,0.0000019616,0.0000019595,0.0000019574, -0.0000019549,0.0000019519,0.0000019486,0.0000019456,0.0000019425, -0.0000019387,0.0000019345,0.0000019307,0.0000019277,0.0000019254, -0.0000019235,0.0000019219,0.0000019211,0.0000019207,0.0000019202, -0.0000019193,0.0000019175,0.0000019146,0.0000019112,0.0000019082, -0.0000019062,0.0000019055,0.0000019052,0.0000019043,0.0000019029, -0.0000019021,0.0000019022,0.0000019031,0.0000019047,0.0000019063, -0.0000019071,0.0000019070,0.0000019068,0.0000019068,0.0000019069, -0.0000019067,0.0000019067,0.0000019073,0.0000019080,0.0000019081, -0.0000019076,0.0000019066,0.0000019044,0.0000019013,0.0000018976, -0.0000018941,0.0000018906,0.0000018864,0.0000018814,0.0000018760, -0.0000018711,0.0000018683,0.0000018681,0.0000018705,0.0000018740, -0.0000018785,0.0000018837,0.0000018888,0.0000018930,0.0000018957, -0.0000018970,0.0000018977,0.0000018980,0.0000018982,0.0000018986, -0.0000018996,0.0000019018,0.0000019052,0.0000019103,0.0000019178, -0.0000019269,0.0000019370,0.0000019471,0.0000019563,0.0000019641, -0.0000019687,0.0000019716,0.0000019718,0.0000019696,0.0000019681, -0.0000019659,0.0000019659,0.0000019681,0.0000019715,0.0000019763, -0.0000019814,0.0000019859,0.0000019893,0.0000019901,0.0000019899, -0.0000019888,0.0000019856,0.0000019815,0.0000019771,0.0000019725, -0.0000019685,0.0000019646,0.0000019611,0.0000019585,0.0000019576, -0.0000019564,0.0000019569,0.0000019576,0.0000019587,0.0000019597, -0.0000019596,0.0000019583,0.0000019553,0.0000019504,0.0000019435, -0.0000019345,0.0000019244,0.0000019147,0.0000019076,0.0000019041, -0.0000019040,0.0000019069,0.0000019109,0.0000019142,0.0000019164, -0.0000019180,0.0000019193,0.0000019204,0.0000019214,0.0000019224, -0.0000019231,0.0000019227,0.0000019215,0.0000019209,0.0000019213, -0.0000019212,0.0000019196,0.0000019165,0.0000019126,0.0000019084, -0.0000019030,0.0000018960,0.0000018892,0.0000018859,0.0000018845, -0.0000018863,0.0000018915,0.0000018983,0.0000019045,0.0000019083, -0.0000019100,0.0000019110,0.0000019121,0.0000019124,0.0000019107, -0.0000019064,0.0000019007,0.0000018954,0.0000018909,0.0000018859, -0.0000018773,0.0000018643,0.0000018512,0.0000018424,0.0000018393, -0.0000018412,0.0000018465,0.0000018523,0.0000018558,0.0000018571, -0.0000018575,0.0000018572,0.0000018560,0.0000018549,0.0000018544, -0.0000018540,0.0000018530,0.0000018514,0.0000018498,0.0000018492, -0.0000018495,0.0000018501,0.0000018506,0.0000018509,0.0000018516, -0.0000018526,0.0000018539,0.0000018549,0.0000018556,0.0000018557, -0.0000018549,0.0000018526,0.0000018498,0.0000018483,0.0000018477, -0.0000018461,0.0000018431,0.0000018375,0.0000018304,0.0000018244, -0.0000018179,0.0000018142,0.0000018136,0.0000018152,0.0000018190, -0.0000018225,0.0000018247,0.0000018259,0.0000018265,0.0000018267, -0.0000018271,0.0000018277,0.0000018280,0.0000018281,0.0000018283, -0.0000018286,0.0000018292,0.0000018301,0.0000018312,0.0000018330, -0.0000018349,0.0000018370,0.0000018391,0.0000018411,0.0000018429, -0.0000018441,0.0000018443,0.0000018434,0.0000018412,0.0000018377, -0.0000018328,0.0000018273,0.0000018217,0.0000018156,0.0000018083, -0.0000018003,0.0000017916,0.0000017835,0.0000017779,0.0000017761, -0.0000017782,0.0000017831,0.0000017895,0.0000017974,0.0000018060, -0.0000018131,0.0000018177,0.0000018203,0.0000018222,0.0000018234, -0.0000018239,0.0000018237,0.0000018229,0.0000018211,0.0000018181, -0.0000018138,0.0000018078,0.0000018013,0.0000017957,0.0000017922, -0.0000017901,0.0000017900,0.0000017935,0.0000017981,0.0000018004, -0.0000018003,0.0000017979,0.0000017941,0.0000017893,0.0000017850, -0.0000017831,0.0000017831,0.0000017827,0.0000017798,0.0000017740, -0.0000017693,0.0000017694,0.0000017751,0.0000017863,0.0000017966, -0.0000018018,0.0000018039,0.0000018060,0.0000018120,0.0000018249, -0.0000018371,0.0000018410,0.0000018411,0.0000018424,0.0000018476, -0.0000018552,0.0000018599,0.0000018651,0.0000018736,0.0000018832, -0.0000018897,0.0000018924,0.0000018929,0.0000018915,0.0000018881, -0.0000018857,0.0000018871,0.0000018933,0.0000019004,0.0000019056, -0.0000019084,0.0000019066,0.0000018972,0.0000018858,0.0000018787, -0.0000018765,0.0000018764,0.0000018764,0.0000018769,0.0000018787, -0.0000018824,0.0000018867,0.0000018891,0.0000018889,0.0000018867, -0.0000018843,0.0000018827,0.0000018816,0.0000018809,0.0000018804, -0.0000018807,0.0000018824,0.0000018849,0.0000018879,0.0000018934, -0.0000019022,0.0000019084,0.0000019047,0.0000019000,0.0000019063, -0.0000019044,0.0000018771,0.0000018549,0.0000018516,0.0000018508, -0.0000018494,0.0000018495,0.0000018515,0.0000018541,0.0000018562, -0.0000018574,0.0000018578,0.0000018572,0.0000018552,0.0000018525, -0.0000018502,0.0000018484,0.0000018470,0.0000018459,0.0000018447, -0.0000018410,0.0000018328,0.0000018247,0.0000018215,0.0000018206, -0.0000018159,0.0000018046,0.0000017916,0.0000017842,0.0000017828, -0.0000017841,0.0000017863,0.0000017886,0.0000017902,0.0000017902, -0.0000017905,0.0000017908,0.0000017909,0.0000017906,0.0000017901, -0.0000017898,0.0000017898,0.0000017899,0.0000017901,0.0000017902, -0.0000017901,0.0000017901,0.0000017902,0.0000017901,0.0000017899, -0.0000017896,0.0000017906,0.0000017922,0.0000017935,0.0000017954, -0.0000017982,0.0000018022,0.0000018081,0.0000018164,0.0000018270, -0.0000018395,0.0000018520,0.0000018629,0.0000018709,0.0000018760, -0.0000018797,0.0000018830,0.0000018867,0.0000018905,0.0000018934, -0.0000018948,0.0000018949,0.0000018944,0.0000018936,0.0000018928, -0.0000018923,0.0000018921,0.0000018917,0.0000018906,0.0000018892, -0.0000018872,0.0000018849,0.0000018827,0.0000018806,0.0000018786, -0.0000018767,0.0000018750,0.0000018736,0.0000018725,0.0000018720, -0.0000018721,0.0000018730,0.0000018745,0.0000018764,0.0000018786, -0.0000018808,0.0000018827,0.0000018841,0.0000018851,0.0000018857, -0.0000018862,0.0000018869,0.0000018880,0.0000018892,0.0000018907, -0.0000018922,0.0000018934,0.0000018947,0.0000018961,0.0000018974, -0.0000018986,0.0000018995,0.0000018998,0.0000018997,0.0000018994, -0.0000018988,0.0000018979,0.0000018968,0.0000018954,0.0000018942, -0.0000018934,0.0000018928,0.0000018923,0.0000018917,0.0000018908, -0.0000018897,0.0000018888,0.0000018882,0.0000018877,0.0000018873, -0.0000018867,0.0000018858,0.0000018846,0.0000018831,0.0000018813, -0.0000018790,0.0000018769,0.0000018750,0.0000018731,0.0000018712, -0.0000018693,0.0000018674,0.0000018655,0.0000018638,0.0000018623, -0.0000018609,0.0000018599,0.0000018592,0.0000018586,0.0000018581, -0.0000018577,0.0000018575,0.0000018575,0.0000018578,0.0000018583, -0.0000018588,0.0000018591,0.0000018595,0.0000018597,0.0000018598, -0.0000018596,0.0000018588,0.0000018574,0.0000018555,0.0000018532, -0.0000018506,0.0000018571,0.0000018541,0.0000018509,0.0000018481, -0.0000018468,0.0000018460,0.0000018464,0.0000018481,0.0000018506, -0.0000018534,0.0000018549,0.0000018554,0.0000018548,0.0000018530, -0.0000018500,0.0000018457,0.0000018403,0.0000018349,0.0000018305, -0.0000018283,0.0000018271,0.0000018261,0.0000018248,0.0000018234, -0.0000018217,0.0000018209,0.0000018215,0.0000018237,0.0000018280, -0.0000018350,0.0000018449,0.0000018572,0.0000018697,0.0000018795, -0.0000018849,0.0000018844,0.0000018826,0.0000018797,0.0000018773, -0.0000018757,0.0000018749,0.0000018747,0.0000018751,0.0000018762, -0.0000018783,0.0000018814,0.0000018850,0.0000018884,0.0000018908, -0.0000018921,0.0000018923,0.0000018913,0.0000018897,0.0000018880, -0.0000018863,0.0000018853,0.0000018851,0.0000018855,0.0000018863, -0.0000018871,0.0000018880,0.0000018897,0.0000018924,0.0000018955, -0.0000018985,0.0000019012,0.0000019036,0.0000019054,0.0000019066, -0.0000019073,0.0000019076,0.0000019078,0.0000019078,0.0000019079, -0.0000019080,0.0000019083,0.0000019084,0.0000019087,0.0000019092, -0.0000019099,0.0000019106,0.0000019115,0.0000019123,0.0000019129, -0.0000019132,0.0000019133,0.0000019132,0.0000019127,0.0000019119, -0.0000019109,0.0000019099,0.0000019091,0.0000019086,0.0000019084, -0.0000019081,0.0000019075,0.0000019062,0.0000019039,0.0000019010, -0.0000018973,0.0000018933,0.0000018893,0.0000018856,0.0000018822, -0.0000018788,0.0000018755,0.0000018730,0.0000018709,0.0000018695, -0.0000018684,0.0000018671,0.0000018649,0.0000018623,0.0000018598, -0.0000018583,0.0000018574,0.0000018575,0.0000018580,0.0000018589, -0.0000018595,0.0000018598,0.0000018594,0.0000018585,0.0000018571, -0.0000018552,0.0000018529,0.0000018502,0.0000018473,0.0000018444, -0.0000018416,0.0000018394,0.0000018376,0.0000018362,0.0000018352, -0.0000018344,0.0000018341,0.0000018349,0.0000018369,0.0000018405, -0.0000018457,0.0000018524,0.0000018603,0.0000018687,0.0000018761, -0.0000018821,0.0000018860,0.0000018886,0.0000018906,0.0000018898, -0.0000018897,0.0000018895,0.0000018890,0.0000018885,0.0000018880, -0.0000018874,0.0000018872,0.0000018875,0.0000018883,0.0000018893, -0.0000018901,0.0000018908,0.0000018914,0.0000018921,0.0000018926, -0.0000018927,0.0000018923,0.0000018915,0.0000018903,0.0000018883, -0.0000018858,0.0000018827,0.0000018791,0.0000018756,0.0000018721, -0.0000018687,0.0000018661,0.0000018643,0.0000018633,0.0000018633, -0.0000018634,0.0000018638,0.0000018642,0.0000018644,0.0000018640, -0.0000018629,0.0000018606,0.0000018571,0.0000018525,0.0000018471, -0.0000018414,0.0000018358,0.0000018307,0.0000018266,0.0000018233, -0.0000018212,0.0000018200,0.0000018187,0.0000018170,0.0000018153, -0.0000018139,0.0000018133,0.0000018135,0.0000018142,0.0000018153, -0.0000018164,0.0000018177,0.0000018191,0.0000018208,0.0000018232, -0.0000018265,0.0000018312,0.0000018379,0.0000018472,0.0000018596, -0.0000018742,0.0000018891,0.0000019021,0.0000019114,0.0000019173, -0.0000019220,0.0000019283,0.0000019376,0.0000019495,0.0000019622, -0.0000019739,0.0000019828,0.0000019886,0.0000019918,0.0000019935, -0.0000019946,0.0000019956,0.0000019968,0.0000019980,0.0000019987, -0.0000019994,0.0000020009,0.0000020039,0.0000020079,0.0000020125, -0.0000020167,0.0000020201,0.0000020226,0.0000020244,0.0000020255, -0.0000020260,0.0000020261,0.0000020261,0.0000020262,0.0000020264, -0.0000020265,0.0000020266,0.0000020264,0.0000020259,0.0000020255, -0.0000020249,0.0000020243,0.0000020237,0.0000020235,0.0000020237, -0.0000020245,0.0000020255,0.0000020266,0.0000020277,0.0000020286, -0.0000020290,0.0000020290,0.0000020286,0.0000020278,0.0000020266, -0.0000020251,0.0000020236,0.0000020221,0.0000020209,0.0000020204, -0.0000020205,0.0000020211,0.0000020217,0.0000020225,0.0000020236, -0.0000020246,0.0000020252,0.0000020256,0.0000020258,0.0000020258, -0.0000020257,0.0000020259,0.0000020264,0.0000020276,0.0000020296, -0.0000020323,0.0000020352,0.0000020381,0.0000020406,0.0000020424, -0.0000020431,0.0000020425,0.0000020412,0.0000020384,0.0000020343, -0.0000020301,0.0000020267,0.0000020242,0.0000020217,0.0000020192, -0.0000020174,0.0000020166,0.0000020162,0.0000020162,0.0000020165, -0.0000020164,0.0000020161,0.0000020173,0.0000020223,0.0000020262, -0.0000020258,0.0000020270,0.0000020345,0.0000020390,0.0000020357, -0.0000020277,0.0000020236,0.0000020227,0.0000020213,0.0000020185, -0.0000020150,0.0000020121,0.0000020092,0.0000020041,0.0000019991, -0.0000019980,0.0000020028,0.0000020178,0.0000020369,0.0000020465, -0.0000020470,0.0000020459,0.0000020405,0.0000020272,0.0000020164, -0.0000020175,0.0000020294,0.0000020487,0.0000020690,0.0000020810, -0.0000020825,0.0000020833,0.0000020852,0.0000020877,0.0000020884, -0.0000020880,0.0000020879,0.0000020892,0.0000020919,0.0000020953, -0.0000020986,0.0000021015,0.0000021039,0.0000021060,0.0000021082, -0.0000021106,0.0000021128,0.0000021148,0.0000021167,0.0000021183, -0.0000021193,0.0000021198,0.0000021200,0.0000021202,0.0000021205, -0.0000021206,0.0000021205,0.0000021205,0.0000021208,0.0000021215, -0.0000021225,0.0000021234,0.0000021239,0.0000021239,0.0000021233, -0.0000021221,0.0000021208,0.0000021195,0.0000021177,0.0000021156, -0.0000021134,0.0000021110,0.0000021084,0.0000021055,0.0000021025, -0.0000020997,0.0000020969,0.0000020942,0.0000020918,0.0000020902, -0.0000020896,0.0000020894,0.0000020893,0.0000020891,0.0000020891, -0.0000020893,0.0000020897,0.0000020904,0.0000020912,0.0000020918, -0.0000020924,0.0000020930,0.0000020938,0.0000020950,0.0000020961, -0.0000020970,0.0000020975,0.0000020975,0.0000020975,0.0000020972, -0.0000020965,0.0000020952,0.0000020936,0.0000020919,0.0000020899, -0.0000020876,0.0000020850,0.0000020828,0.0000020812,0.0000020801, -0.0000020789,0.0000020774,0.0000020755,0.0000020730,0.0000020700, -0.0000020667,0.0000020636,0.0000020609,0.0000020585,0.0000020565, -0.0000020545,0.0000020524,0.0000020505,0.0000020489,0.0000020477, -0.0000020466,0.0000020456,0.0000020448,0.0000020440,0.0000020431, -0.0000020426,0.0000020425,0.0000020426,0.0000020430,0.0000020436, -0.0000020445,0.0000020457,0.0000020473,0.0000020491,0.0000020511, -0.0000020534,0.0000020559,0.0000020580,0.0000020599,0.0000020617, -0.0000020635,0.0000020651,0.0000020665,0.0000020681,0.0000020701, -0.0000020730,0.0000020767,0.0000020808,0.0000020847,0.0000020881, -0.0000020911,0.0000020936,0.0000020955,0.0000020971,0.0000020982, -0.0000020989,0.0000020991,0.0000020991,0.0000020987,0.0000020983, -0.0000020974,0.0000020964,0.0000020952,0.0000020933,0.0000020916, -0.0000020897,0.0000020870,0.0000020845,0.0000020818,0.0000020791, -0.0000020762,0.0000020733,0.0000020701,0.0000020667,0.0000020635, -0.0000020608,0.0000020588,0.0000020574,0.0000020568,0.0000020565, -0.0000020563,0.0000020563,0.0000020565,0.0000020567,0.0000020567, -0.0000020565,0.0000020560,0.0000020555,0.0000020553,0.0000020554, -0.0000020561,0.0000020569,0.0000020578,0.0000020585,0.0000020589, -0.0000020589,0.0000020586,0.0000020579,0.0000020567,0.0000020551, -0.0000020528,0.0000020500,0.0000020473,0.0000020449,0.0000020429, -0.0000020421,0.0000020424,0.0000020436,0.0000020455,0.0000020475, -0.0000020495,0.0000020511,0.0000020520,0.0000020521,0.0000020521, -0.0000020521,0.0000020521,0.0000020523,0.0000020527,0.0000020535, -0.0000020545,0.0000020555,0.0000020568,0.0000020586,0.0000020603, -0.0000020612,0.0000020616,0.0000020622,0.0000020629,0.0000020637, -0.0000020643,0.0000020650,0.0000020658,0.0000020665,0.0000020671, -0.0000020677,0.0000020681,0.0000020683,0.0000020682,0.0000020680, -0.0000020679,0.0000020677,0.0000020669,0.0000020657,0.0000020648, -0.0000020640,0.0000020631,0.0000020622,0.0000020617,0.0000020615, -0.0000020614,0.0000020617,0.0000020621,0.0000020626,0.0000020630, -0.0000020633,0.0000020636,0.0000020640,0.0000020644,0.0000020646, -0.0000020647,0.0000020646,0.0000020642,0.0000020637,0.0000020633, -0.0000020631,0.0000020632,0.0000020632,0.0000020636,0.0000020644, -0.0000020652,0.0000020656,0.0000020656,0.0000020654,0.0000020657, -0.0000020669,0.0000020693,0.0000020727,0.0000020747,0.0000020744, -0.0000020706,0.0000020640,0.0000020566,0.0000020506,0.0000020473, -0.0000020457,0.0000020442,0.0000020421,0.0000020399,0.0000020381, -0.0000020376,0.0000020380,0.0000020381,0.0000020377,0.0000020365, -0.0000020349,0.0000020335,0.0000020328,0.0000020334,0.0000020351, -0.0000020374,0.0000020400,0.0000020423,0.0000020444,0.0000020466, -0.0000020498,0.0000020552,0.0000020616,0.0000020680,0.0000020740, -0.0000020791,0.0000020830,0.0000020861,0.0000020884,0.0000020899, -0.0000020903,0.0000020897,0.0000020878,0.0000020842,0.0000020797, -0.0000020752,0.0000020714,0.0000020691,0.0000020688,0.0000020707, -0.0000020742,0.0000020785,0.0000020826,0.0000020858,0.0000020880, -0.0000020890,0.0000020888,0.0000020873,0.0000020850,0.0000020820, -0.0000020781,0.0000020739,0.0000020697,0.0000020661,0.0000020644, -0.0000020638,0.0000020642,0.0000020651,0.0000020662,0.0000020673, -0.0000020681,0.0000020681,0.0000020676,0.0000020666,0.0000020647, -0.0000020615,0.0000020572,0.0000020527,0.0000020487,0.0000020459, -0.0000020430,0.0000020400,0.0000020370,0.0000020344,0.0000020321, -0.0000020297,0.0000020272,0.0000020248,0.0000020227,0.0000020212, -0.0000020201,0.0000020198,0.0000020199,0.0000020202,0.0000020208, -0.0000020208,0.0000020204,0.0000020200,0.0000020194,0.0000020179, -0.0000020153,0.0000020122,0.0000020093,0.0000020074,0.0000020069, -0.0000020073,0.0000020087,0.0000020106,0.0000020126,0.0000020150, -0.0000020171,0.0000020188,0.0000020203,0.0000020213,0.0000020216, -0.0000020216,0.0000020211,0.0000020202,0.0000020189,0.0000020171, -0.0000020148,0.0000020120,0.0000020088,0.0000020050,0.0000020009, -0.0000019966,0.0000019924,0.0000019886,0.0000019859,0.0000019854, -0.0000019858,0.0000019871,0.0000019879,0.0000019878,0.0000019869, -0.0000019854,0.0000019840,0.0000019828,0.0000019819,0.0000019808, -0.0000019795,0.0000019785,0.0000019782,0.0000019782,0.0000019790, -0.0000019799,0.0000019808,0.0000019815,0.0000019821,0.0000019827, -0.0000019833,0.0000019843,0.0000019855,0.0000019866,0.0000019876, -0.0000019889,0.0000019908,0.0000019933,0.0000019963,0.0000019993, -0.0000020020,0.0000020044,0.0000020062,0.0000020076,0.0000020085, -0.0000020089,0.0000020092,0.0000020091,0.0000020085,0.0000020077, -0.0000020066,0.0000020055,0.0000020050,0.0000020048,0.0000020048, -0.0000020053,0.0000020067,0.0000020087,0.0000020108,0.0000020130, -0.0000020148,0.0000020163,0.0000020174,0.0000020175,0.0000020166, -0.0000020151,0.0000020131,0.0000020105,0.0000020082,0.0000020064, -0.0000020048,0.0000020033,0.0000020011,0.0000019982,0.0000019947, -0.0000019909,0.0000019868,0.0000019830,0.0000019796,0.0000019779, -0.0000019766,0.0000019779,0.0000019799,0.0000019828,0.0000019868, -0.0000019906,0.0000019924,0.0000019945,0.0000019945,0.0000019924, -0.0000019895,0.0000019857,0.0000019821,0.0000019792,0.0000019765, -0.0000019753,0.0000019744,0.0000019740,0.0000019742,0.0000019738, -0.0000019716,0.0000019678,0.0000019625,0.0000019566,0.0000019515, -0.0000019480,0.0000019464,0.0000019457,0.0000019465,0.0000019477, -0.0000019498,0.0000019529,0.0000019569,0.0000019612,0.0000019643, -0.0000019660,0.0000019666,0.0000019670,0.0000019678,0.0000019693, -0.0000019720,0.0000019756,0.0000019792,0.0000019828,0.0000019872, -0.0000019922,0.0000019977,0.0000020032,0.0000020083,0.0000020126, -0.0000020154,0.0000020166,0.0000020162,0.0000020151,0.0000020142, -0.0000020145,0.0000020165,0.0000020203,0.0000020248,0.0000020290, -0.0000020328,0.0000020366,0.0000020400,0.0000020424,0.0000020439, -0.0000020449,0.0000020453,0.0000020455,0.0000020453,0.0000020450, -0.0000020444,0.0000020431,0.0000020414,0.0000020392,0.0000020364, -0.0000020328,0.0000020285,0.0000020234,0.0000020175,0.0000020112, -0.0000020049,0.0000019993,0.0000019941,0.0000019891,0.0000019841, -0.0000019793,0.0000019753,0.0000019725,0.0000019710,0.0000019706, -0.0000019714,0.0000019727,0.0000019737,0.0000019746,0.0000019755, -0.0000019762,0.0000019764,0.0000019761,0.0000019744,0.0000019714, -0.0000019674,0.0000019633,0.0000019601,0.0000019578,0.0000019565, -0.0000019562,0.0000019568,0.0000019583,0.0000019602,0.0000019622, -0.0000019642,0.0000019663,0.0000019682,0.0000019698,0.0000019711, -0.0000019723,0.0000019730,0.0000019730,0.0000019722,0.0000019711, -0.0000019697,0.0000019679,0.0000019656,0.0000019630,0.0000019599, -0.0000019564,0.0000019526,0.0000019486,0.0000019443,0.0000019393, -0.0000019342,0.0000019292,0.0000019246,0.0000019204,0.0000019165, -0.0000019134,0.0000019114,0.0000019104,0.0000019101,0.0000019101, -0.0000019098,0.0000019083,0.0000019052,0.0000019014,0.0000018987, -0.0000018979,0.0000018981,0.0000018984,0.0000018983,0.0000018979, -0.0000018974,0.0000018974,0.0000018986,0.0000019008,0.0000019027, -0.0000019037,0.0000019040,0.0000019042,0.0000019041,0.0000019037, -0.0000019036,0.0000019043,0.0000019050,0.0000019055,0.0000019063, -0.0000019065,0.0000019057,0.0000019032,0.0000018994,0.0000018953, -0.0000018914,0.0000018876,0.0000018834,0.0000018783,0.0000018730, -0.0000018691,0.0000018684,0.0000018694,0.0000018717,0.0000018750, -0.0000018792,0.0000018839,0.0000018883,0.0000018915,0.0000018936, -0.0000018945,0.0000018946,0.0000018941,0.0000018934,0.0000018932, -0.0000018936,0.0000018949,0.0000018978,0.0000019027,0.0000019091, -0.0000019170,0.0000019260,0.0000019359,0.0000019465,0.0000019561, -0.0000019640,0.0000019679,0.0000019696,0.0000019699,0.0000019675, -0.0000019667,0.0000019664,0.0000019675,0.0000019707,0.0000019749, -0.0000019798,0.0000019849,0.0000019884,0.0000019912,0.0000019921, -0.0000019904,0.0000019878,0.0000019843,0.0000019800,0.0000019754, -0.0000019704,0.0000019658,0.0000019619,0.0000019588,0.0000019568, -0.0000019562,0.0000019549,0.0000019551,0.0000019554,0.0000019552, -0.0000019542,0.0000019520,0.0000019484,0.0000019429,0.0000019356, -0.0000019260,0.0000019156,0.0000019070,0.0000019023,0.0000019008, -0.0000019025,0.0000019055,0.0000019087,0.0000019108,0.0000019125, -0.0000019141,0.0000019156,0.0000019167,0.0000019178,0.0000019188, -0.0000019190,0.0000019184,0.0000019183,0.0000019190,0.0000019198, -0.0000019190,0.0000019164,0.0000019127,0.0000019085,0.0000019031, -0.0000018960,0.0000018888,0.0000018838,0.0000018814,0.0000018826, -0.0000018876,0.0000018952,0.0000019027,0.0000019074,0.0000019091, -0.0000019098,0.0000019108,0.0000019112,0.0000019098,0.0000019060, -0.0000019009,0.0000018960,0.0000018915,0.0000018861,0.0000018770, -0.0000018635,0.0000018495,0.0000018401,0.0000018372,0.0000018396, -0.0000018452,0.0000018509,0.0000018544,0.0000018558,0.0000018561, -0.0000018557,0.0000018549,0.0000018545,0.0000018540,0.0000018528, -0.0000018508,0.0000018483,0.0000018466,0.0000018460,0.0000018463, -0.0000018465,0.0000018464,0.0000018464,0.0000018472,0.0000018486, -0.0000018498,0.0000018505,0.0000018509,0.0000018506,0.0000018484, -0.0000018453,0.0000018434,0.0000018427,0.0000018412,0.0000018379, -0.0000018323,0.0000018266,0.0000018209,0.0000018149,0.0000018125, -0.0000018129,0.0000018168,0.0000018214,0.0000018246,0.0000018266, -0.0000018279,0.0000018288,0.0000018295,0.0000018305,0.0000018316, -0.0000018321,0.0000018327,0.0000018333,0.0000018340,0.0000018348, -0.0000018357,0.0000018371,0.0000018385,0.0000018399,0.0000018415, -0.0000018434,0.0000018450,0.0000018460,0.0000018461,0.0000018453, -0.0000018432,0.0000018401,0.0000018360,0.0000018309,0.0000018257, -0.0000018205,0.0000018149,0.0000018085,0.0000018014,0.0000017937, -0.0000017855,0.0000017791,0.0000017757,0.0000017755,0.0000017778, -0.0000017824,0.0000017879,0.0000017937,0.0000017998,0.0000018054, -0.0000018097,0.0000018128,0.0000018150,0.0000018158,0.0000018154, -0.0000018139,0.0000018113,0.0000018077,0.0000018034,0.0000017986, -0.0000017946,0.0000017920,0.0000017905,0.0000017905,0.0000017936, -0.0000017983,0.0000018014,0.0000018017,0.0000018003,0.0000017973, -0.0000017929,0.0000017882,0.0000017847,0.0000017838,0.0000017828, -0.0000017794,0.0000017734,0.0000017684,0.0000017684,0.0000017746, -0.0000017862,0.0000017959,0.0000018001,0.0000018016,0.0000018039, -0.0000018103,0.0000018235,0.0000018362,0.0000018405,0.0000018406, -0.0000018411,0.0000018443,0.0000018513,0.0000018567,0.0000018600, -0.0000018661,0.0000018748,0.0000018826,0.0000018873,0.0000018896, -0.0000018895,0.0000018870,0.0000018842,0.0000018850,0.0000018907, -0.0000018979,0.0000019031,0.0000019068,0.0000019062,0.0000018981, -0.0000018865,0.0000018794,0.0000018770,0.0000018769,0.0000018777, -0.0000018789,0.0000018811,0.0000018845,0.0000018880,0.0000018889, -0.0000018873,0.0000018844,0.0000018830,0.0000018828,0.0000018830, -0.0000018825,0.0000018808,0.0000018786,0.0000018777,0.0000018790, -0.0000018821,0.0000018856,0.0000018887,0.0000018963,0.0000019070, -0.0000019074,0.0000018996,0.0000019030,0.0000019071,0.0000018880, -0.0000018614,0.0000018540,0.0000018552,0.0000018565,0.0000018576, -0.0000018596,0.0000018617,0.0000018631,0.0000018639,0.0000018643, -0.0000018638,0.0000018617,0.0000018582,0.0000018543,0.0000018512, -0.0000018496,0.0000018495,0.0000018497,0.0000018486,0.0000018426, -0.0000018319,0.0000018241,0.0000018223,0.0000018216,0.0000018163, -0.0000018056,0.0000017945,0.0000017862,0.0000017836,0.0000017821, -0.0000017822,0.0000017833,0.0000017843,0.0000017854,0.0000017868, -0.0000017883,0.0000017895,0.0000017903,0.0000017907,0.0000017915, -0.0000017922,0.0000017933,0.0000017942,0.0000017948,0.0000017953, -0.0000017958,0.0000017959,0.0000017955,0.0000017948,0.0000017943, -0.0000017943,0.0000017940,0.0000017954,0.0000017956,0.0000017963, -0.0000017979,0.0000018009,0.0000018057,0.0000018132,0.0000018237, -0.0000018363,0.0000018492,0.0000018606,0.0000018693,0.0000018753, -0.0000018798,0.0000018838,0.0000018878,0.0000018912,0.0000018932, -0.0000018937,0.0000018928,0.0000018913,0.0000018902,0.0000018894, -0.0000018889,0.0000018884,0.0000018875,0.0000018855,0.0000018830, -0.0000018803,0.0000018772,0.0000018743,0.0000018715,0.0000018691, -0.0000018669,0.0000018651,0.0000018638,0.0000018629,0.0000018627, -0.0000018631,0.0000018640,0.0000018656,0.0000018674,0.0000018693, -0.0000018710,0.0000018723,0.0000018734,0.0000018744,0.0000018757, -0.0000018773,0.0000018792,0.0000018811,0.0000018830,0.0000018845, -0.0000018861,0.0000018877,0.0000018892,0.0000018905,0.0000018914, -0.0000018919,0.0000018920,0.0000018916,0.0000018910,0.0000018901, -0.0000018889,0.0000018877,0.0000018868,0.0000018862,0.0000018856, -0.0000018851,0.0000018843,0.0000018832,0.0000018821,0.0000018811, -0.0000018803,0.0000018797,0.0000018793,0.0000018788,0.0000018780, -0.0000018770,0.0000018756,0.0000018740,0.0000018724,0.0000018711, -0.0000018700,0.0000018688,0.0000018677,0.0000018665,0.0000018653, -0.0000018640,0.0000018626,0.0000018615,0.0000018609,0.0000018606, -0.0000018600,0.0000018594,0.0000018588,0.0000018583,0.0000018580, -0.0000018580,0.0000018583,0.0000018589,0.0000018593,0.0000018597, -0.0000018603,0.0000018608,0.0000018616,0.0000018623,0.0000018626, -0.0000018623,0.0000018614,0.0000018596,0.0000018625,0.0000018614, -0.0000018596,0.0000018570,0.0000018539,0.0000018506,0.0000018479, -0.0000018468,0.0000018465,0.0000018476,0.0000018501,0.0000018530, -0.0000018548,0.0000018555,0.0000018546,0.0000018523,0.0000018486, -0.0000018439,0.0000018383,0.0000018327,0.0000018283,0.0000018258, -0.0000018246,0.0000018234,0.0000018219,0.0000018200,0.0000018181, -0.0000018173,0.0000018181,0.0000018207,0.0000018253,0.0000018325, -0.0000018422,0.0000018539,0.0000018657,0.0000018746,0.0000018794, -0.0000018792,0.0000018772,0.0000018753,0.0000018733,0.0000018719, -0.0000018712,0.0000018711,0.0000018716,0.0000018730,0.0000018751, -0.0000018780,0.0000018811,0.0000018841,0.0000018864,0.0000018877, -0.0000018880,0.0000018870,0.0000018849,0.0000018826,0.0000018803, -0.0000018788,0.0000018789,0.0000018798,0.0000018816,0.0000018841, -0.0000018867,0.0000018896,0.0000018925,0.0000018956,0.0000018986, -0.0000019015,0.0000019039,0.0000019059,0.0000019071,0.0000019078, -0.0000019081,0.0000019082,0.0000019081,0.0000019080,0.0000019078, -0.0000019077,0.0000019078,0.0000019080,0.0000019086,0.0000019094, -0.0000019102,0.0000019107,0.0000019109,0.0000019108,0.0000019107, -0.0000019104,0.0000019101,0.0000019095,0.0000019086,0.0000019073, -0.0000019062,0.0000019053,0.0000019045,0.0000019038,0.0000019029, -0.0000019017,0.0000018997,0.0000018971,0.0000018939,0.0000018902, -0.0000018866,0.0000018834,0.0000018805,0.0000018773,0.0000018740, -0.0000018705,0.0000018678,0.0000018661,0.0000018657,0.0000018652, -0.0000018639,0.0000018619,0.0000018599,0.0000018583,0.0000018574, -0.0000018570,0.0000018570,0.0000018572,0.0000018574,0.0000018574, -0.0000018571,0.0000018564,0.0000018553,0.0000018541,0.0000018523, -0.0000018499,0.0000018470,0.0000018440,0.0000018411,0.0000018385, -0.0000018362,0.0000018346,0.0000018331,0.0000018322,0.0000018318, -0.0000018320,0.0000018328,0.0000018342,0.0000018366,0.0000018406, -0.0000018461,0.0000018523,0.0000018587,0.0000018649,0.0000018706, -0.0000018758,0.0000018798,0.0000018828,0.0000018850,0.0000018868, -0.0000018880,0.0000018884,0.0000018881,0.0000018886,0.0000018893, -0.0000018903,0.0000018912,0.0000018917,0.0000018917,0.0000018922, -0.0000018921,0.0000018920,0.0000018918,0.0000018915,0.0000018911, -0.0000018901,0.0000018888,0.0000018874,0.0000018857,0.0000018835, -0.0000018812,0.0000018789,0.0000018761,0.0000018731,0.0000018704, -0.0000018682,0.0000018666,0.0000018654,0.0000018647,0.0000018645, -0.0000018648,0.0000018652,0.0000018656,0.0000018658,0.0000018652, -0.0000018635,0.0000018607,0.0000018565,0.0000018508,0.0000018441, -0.0000018372,0.0000018309,0.0000018261,0.0000018229,0.0000018203, -0.0000018179,0.0000018156,0.0000018137,0.0000018127,0.0000018122, -0.0000018122,0.0000018127,0.0000018135,0.0000018145,0.0000018157, -0.0000018170,0.0000018185,0.0000018204,0.0000018229,0.0000018261, -0.0000018310,0.0000018388,0.0000018500,0.0000018644,0.0000018805, -0.0000018957,0.0000019072,0.0000019145,0.0000019189,0.0000019236, -0.0000019308,0.0000019411,0.0000019532,0.0000019649,0.0000019745, -0.0000019812,0.0000019853,0.0000019877,0.0000019895,0.0000019912, -0.0000019927,0.0000019939,0.0000019948,0.0000019958,0.0000019976, -0.0000020002,0.0000020037,0.0000020075,0.0000020115,0.0000020150, -0.0000020179,0.0000020200,0.0000020215,0.0000020223,0.0000020227, -0.0000020229,0.0000020230,0.0000020229,0.0000020225,0.0000020216, -0.0000020203,0.0000020188,0.0000020171,0.0000020154,0.0000020139, -0.0000020131,0.0000020131,0.0000020136,0.0000020146,0.0000020159, -0.0000020176,0.0000020192,0.0000020204,0.0000020215,0.0000020221, -0.0000020222,0.0000020217,0.0000020209,0.0000020200,0.0000020191, -0.0000020182,0.0000020178,0.0000020180,0.0000020186,0.0000020193, -0.0000020203,0.0000020214,0.0000020223,0.0000020230,0.0000020232, -0.0000020229,0.0000020220,0.0000020209,0.0000020201,0.0000020198, -0.0000020202,0.0000020215,0.0000020234,0.0000020260,0.0000020291, -0.0000020325,0.0000020357,0.0000020382,0.0000020398,0.0000020399, -0.0000020386,0.0000020356,0.0000020313,0.0000020268,0.0000020227, -0.0000020194,0.0000020168,0.0000020152,0.0000020143,0.0000020140, -0.0000020142,0.0000020143,0.0000020139,0.0000020136,0.0000020154, -0.0000020207,0.0000020237,0.0000020233,0.0000020260,0.0000020346, -0.0000020383,0.0000020335,0.0000020274,0.0000020255,0.0000020251, -0.0000020232,0.0000020190,0.0000020144,0.0000020115,0.0000020081, -0.0000020022,0.0000019979,0.0000019985,0.0000020061,0.0000020234, -0.0000020412,0.0000020477,0.0000020474,0.0000020451,0.0000020368, -0.0000020232,0.0000020158,0.0000020188,0.0000020313,0.0000020496, -0.0000020688,0.0000020804,0.0000020824,0.0000020822,0.0000020837, -0.0000020860,0.0000020872,0.0000020867,0.0000020856,0.0000020851, -0.0000020862,0.0000020888,0.0000020925,0.0000020964,0.0000020999, -0.0000021024,0.0000021040,0.0000021050,0.0000021058,0.0000021065, -0.0000021072,0.0000021080,0.0000021089,0.0000021101,0.0000021118, -0.0000021137,0.0000021154,0.0000021163,0.0000021165,0.0000021163, -0.0000021161,0.0000021160,0.0000021159,0.0000021158,0.0000021157, -0.0000021155,0.0000021155,0.0000021159,0.0000021161,0.0000021159, -0.0000021149,0.0000021135,0.0000021117,0.0000021095,0.0000021070, -0.0000021044,0.0000021019,0.0000020989,0.0000020961,0.0000020935, -0.0000020917,0.0000020911,0.0000020912,0.0000020915,0.0000020917, -0.0000020919,0.0000020923,0.0000020929,0.0000020934,0.0000020943, -0.0000020952,0.0000020958,0.0000020964,0.0000020974,0.0000020984, -0.0000020994,0.0000021002,0.0000021007,0.0000021007,0.0000021006, -0.0000021000,0.0000020989,0.0000020973,0.0000020955,0.0000020936, -0.0000020913,0.0000020887,0.0000020858,0.0000020834,0.0000020816, -0.0000020802,0.0000020789,0.0000020774,0.0000020757,0.0000020735, -0.0000020707,0.0000020679,0.0000020652,0.0000020630,0.0000020606, -0.0000020581,0.0000020553,0.0000020526,0.0000020501,0.0000020482, -0.0000020464,0.0000020446,0.0000020430,0.0000020413,0.0000020396, -0.0000020380,0.0000020367,0.0000020359,0.0000020357,0.0000020358, -0.0000020360,0.0000020363,0.0000020369,0.0000020378,0.0000020389, -0.0000020404,0.0000020422,0.0000020441,0.0000020457,0.0000020472, -0.0000020487,0.0000020502,0.0000020514,0.0000020527,0.0000020542, -0.0000020565,0.0000020593,0.0000020623,0.0000020654,0.0000020685, -0.0000020714,0.0000020741,0.0000020766,0.0000020787,0.0000020805, -0.0000020822,0.0000020837,0.0000020851,0.0000020862,0.0000020873, -0.0000020883,0.0000020890,0.0000020892,0.0000020893,0.0000020891, -0.0000020886,0.0000020878,0.0000020872,0.0000020865,0.0000020856, -0.0000020841,0.0000020826,0.0000020812,0.0000020789,0.0000020777, -0.0000020753,0.0000020729,0.0000020704,0.0000020680,0.0000020660, -0.0000020642,0.0000020624,0.0000020610,0.0000020599,0.0000020592, -0.0000020586,0.0000020581,0.0000020576,0.0000020573,0.0000020573, -0.0000020577,0.0000020584,0.0000020592,0.0000020600,0.0000020606, -0.0000020608,0.0000020606,0.0000020601,0.0000020592,0.0000020578, -0.0000020558,0.0000020532,0.0000020501,0.0000020468,0.0000020440, -0.0000020420,0.0000020410,0.0000020410,0.0000020418,0.0000020433, -0.0000020453,0.0000020475,0.0000020495,0.0000020506,0.0000020511, -0.0000020512,0.0000020512,0.0000020509,0.0000020504,0.0000020501, -0.0000020505,0.0000020517,0.0000020535,0.0000020558,0.0000020577, -0.0000020592,0.0000020602,0.0000020607,0.0000020610,0.0000020614, -0.0000020617,0.0000020619,0.0000020624,0.0000020632,0.0000020640, -0.0000020649,0.0000020653,0.0000020654,0.0000020650,0.0000020641, -0.0000020630,0.0000020619,0.0000020603,0.0000020587,0.0000020569, -0.0000020557,0.0000020549,0.0000020541,0.0000020532,0.0000020524, -0.0000020519,0.0000020516,0.0000020518,0.0000020525,0.0000020534, -0.0000020544,0.0000020555,0.0000020566,0.0000020581,0.0000020601, -0.0000020624,0.0000020646,0.0000020661,0.0000020678,0.0000020688, -0.0000020692,0.0000020691,0.0000020684,0.0000020670,0.0000020652, -0.0000020638,0.0000020629,0.0000020627,0.0000020628,0.0000020631, -0.0000020631,0.0000020629,0.0000020631,0.0000020649,0.0000020684, -0.0000020722,0.0000020736,0.0000020719,0.0000020667,0.0000020597, -0.0000020528,0.0000020480,0.0000020454,0.0000020439,0.0000020417, -0.0000020389,0.0000020368,0.0000020357,0.0000020355,0.0000020355, -0.0000020351,0.0000020344,0.0000020335,0.0000020329,0.0000020327, -0.0000020332,0.0000020344,0.0000020358,0.0000020369,0.0000020382, -0.0000020402,0.0000020443,0.0000020506,0.0000020572,0.0000020636, -0.0000020697,0.0000020749,0.0000020792,0.0000020825,0.0000020851, -0.0000020869,0.0000020876,0.0000020872,0.0000020854,0.0000020823, -0.0000020780,0.0000020732,0.0000020689,0.0000020656,0.0000020647, -0.0000020660,0.0000020698,0.0000020747,0.0000020790,0.0000020823, -0.0000020847,0.0000020861,0.0000020863,0.0000020854,0.0000020835, -0.0000020812,0.0000020782,0.0000020748,0.0000020713,0.0000020679, -0.0000020652,0.0000020636,0.0000020630,0.0000020633,0.0000020642, -0.0000020652,0.0000020660,0.0000020662,0.0000020658,0.0000020649, -0.0000020631,0.0000020605,0.0000020574,0.0000020542,0.0000020519, -0.0000020496,0.0000020473,0.0000020449,0.0000020423,0.0000020400, -0.0000020377,0.0000020352,0.0000020323,0.0000020295,0.0000020272, -0.0000020250,0.0000020228,0.0000020211,0.0000020204,0.0000020205, -0.0000020200,0.0000020192,0.0000020186,0.0000020179,0.0000020164, -0.0000020143,0.0000020117,0.0000020087,0.0000020060,0.0000020042, -0.0000020031,0.0000020029,0.0000020035,0.0000020049,0.0000020072, -0.0000020096,0.0000020117,0.0000020138,0.0000020157,0.0000020168, -0.0000020169,0.0000020167,0.0000020160,0.0000020148,0.0000020133, -0.0000020116,0.0000020099,0.0000020077,0.0000020048,0.0000020014, -0.0000019982,0.0000019950,0.0000019916,0.0000019885,0.0000019867, -0.0000019865,0.0000019870,0.0000019872,0.0000019867,0.0000019847, -0.0000019821,0.0000019794,0.0000019772,0.0000019757,0.0000019746, -0.0000019736,0.0000019728,0.0000019726,0.0000019730,0.0000019741, -0.0000019750,0.0000019757,0.0000019764,0.0000019769,0.0000019772, -0.0000019773,0.0000019778,0.0000019787,0.0000019798,0.0000019812, -0.0000019827,0.0000019847,0.0000019874,0.0000019906,0.0000019939, -0.0000019973,0.0000020006,0.0000020035,0.0000020057,0.0000020070, -0.0000020076,0.0000020077,0.0000020076,0.0000020071,0.0000020063, -0.0000020055,0.0000020048,0.0000020044,0.0000020040,0.0000020038, -0.0000020034,0.0000020031,0.0000020029,0.0000020025,0.0000020021, -0.0000020017,0.0000020016,0.0000020020,0.0000020027,0.0000020039, -0.0000020056,0.0000020069,0.0000020078,0.0000020081,0.0000020074, -0.0000020067,0.0000020062,0.0000020058,0.0000020044,0.0000020025, -0.0000020002,0.0000019973,0.0000019937,0.0000019895,0.0000019850, -0.0000019811,0.0000019782,0.0000019771,0.0000019760,0.0000019782, -0.0000019821,0.0000019867,0.0000019915,0.0000019952,0.0000019965, -0.0000019964,0.0000019950,0.0000019924,0.0000019888,0.0000019846, -0.0000019805,0.0000019769,0.0000019739,0.0000019722,0.0000019714, -0.0000019707,0.0000019691,0.0000019676,0.0000019653,0.0000019621, -0.0000019587,0.0000019553,0.0000019523,0.0000019502,0.0000019484, -0.0000019484,0.0000019484,0.0000019504,0.0000019542,0.0000019581, -0.0000019613,0.0000019633,0.0000019640,0.0000019640,0.0000019642, -0.0000019659,0.0000019691,0.0000019727,0.0000019764,0.0000019805, -0.0000019854,0.0000019911,0.0000019969,0.0000020025,0.0000020074, -0.0000020114,0.0000020140,0.0000020151,0.0000020147,0.0000020137, -0.0000020130,0.0000020133,0.0000020152,0.0000020184,0.0000020221, -0.0000020260,0.0000020302,0.0000020342,0.0000020377,0.0000020405, -0.0000020425,0.0000020436,0.0000020442,0.0000020447,0.0000020450, -0.0000020446,0.0000020438,0.0000020424,0.0000020400,0.0000020366, -0.0000020321,0.0000020267,0.0000020206,0.0000020138,0.0000020074, -0.0000020019,0.0000019968,0.0000019916,0.0000019861,0.0000019808, -0.0000019760,0.0000019725,0.0000019704,0.0000019692,0.0000019688, -0.0000019695,0.0000019704,0.0000019712,0.0000019719,0.0000019727, -0.0000019733,0.0000019738,0.0000019738,0.0000019730,0.0000019711, -0.0000019682,0.0000019645,0.0000019608,0.0000019575,0.0000019556, -0.0000019550,0.0000019553,0.0000019568,0.0000019590,0.0000019612, -0.0000019637,0.0000019663,0.0000019688,0.0000019708,0.0000019726, -0.0000019742,0.0000019752,0.0000019755,0.0000019754,0.0000019751, -0.0000019743,0.0000019729,0.0000019709,0.0000019681,0.0000019647, -0.0000019607,0.0000019564,0.0000019516,0.0000019462,0.0000019407, -0.0000019353,0.0000019295,0.0000019234,0.0000019176,0.0000019123, -0.0000019077,0.0000019038,0.0000019007,0.0000018993,0.0000018995, -0.0000019005,0.0000019009,0.0000018998,0.0000018970,0.0000018938, -0.0000018917,0.0000018913,0.0000018919,0.0000018931,0.0000018940, -0.0000018937,0.0000018930,0.0000018934,0.0000018952,0.0000018975, -0.0000018996,0.0000019011,0.0000019016,0.0000019015,0.0000019012, -0.0000019013,0.0000019017,0.0000019022,0.0000019030,0.0000019046, -0.0000019062,0.0000019062,0.0000019047,0.0000019018,0.0000018979, -0.0000018936,0.0000018894,0.0000018853,0.0000018805,0.0000018751, -0.0000018706,0.0000018690,0.0000018698,0.0000018713,0.0000018735, -0.0000018764,0.0000018801,0.0000018840,0.0000018874,0.0000018900, -0.0000018913,0.0000018915,0.0000018909,0.0000018900,0.0000018892, -0.0000018885,0.0000018887,0.0000018901,0.0000018927,0.0000018965, -0.0000019013,0.0000019076,0.0000019157,0.0000019257,0.0000019367, -0.0000019471,0.0000019557,0.0000019626,0.0000019658,0.0000019676, -0.0000019670,0.0000019665,0.0000019677,0.0000019683,0.0000019701, -0.0000019734,0.0000019781,0.0000019832,0.0000019878,0.0000019905, -0.0000019910,0.0000019920,0.0000019908,0.0000019877,0.0000019840, -0.0000019795,0.0000019747,0.0000019698,0.0000019652,0.0000019611, -0.0000019575,0.0000019549,0.0000019541,0.0000019523,0.0000019512, -0.0000019500,0.0000019482,0.0000019452,0.0000019416,0.0000019360, -0.0000019275,0.0000019170,0.0000019074,0.0000019014,0.0000018996, -0.0000018999,0.0000019021,0.0000019046,0.0000019064,0.0000019079, -0.0000019097,0.0000019112,0.0000019124,0.0000019137,0.0000019152, -0.0000019160,0.0000019162,0.0000019164,0.0000019176,0.0000019189, -0.0000019188,0.0000019169,0.0000019133,0.0000019089,0.0000019035, -0.0000018963,0.0000018886,0.0000018821,0.0000018785,0.0000018789, -0.0000018836,0.0000018918,0.0000019002,0.0000019058,0.0000019080, -0.0000019088,0.0000019099,0.0000019104,0.0000019096,0.0000019064, -0.0000019019,0.0000018971,0.0000018926,0.0000018872,0.0000018782, -0.0000018643,0.0000018494,0.0000018392,0.0000018369,0.0000018391, -0.0000018445,0.0000018502,0.0000018536,0.0000018549,0.0000018551, -0.0000018552,0.0000018552,0.0000018547,0.0000018533,0.0000018512, -0.0000018486,0.0000018462,0.0000018444,0.0000018440,0.0000018440, -0.0000018437,0.0000018435,0.0000018437,0.0000018445,0.0000018452, -0.0000018458,0.0000018461,0.0000018460,0.0000018442,0.0000018412, -0.0000018392,0.0000018383,0.0000018365,0.0000018328,0.0000018277, -0.0000018232,0.0000018176,0.0000018127,0.0000018116,0.0000018131, -0.0000018181,0.0000018223,0.0000018255,0.0000018281,0.0000018305, -0.0000018321,0.0000018329,0.0000018335,0.0000018336,0.0000018338, -0.0000018342,0.0000018349,0.0000018357,0.0000018367,0.0000018379, -0.0000018393,0.0000018407,0.0000018418,0.0000018432,0.0000018445, -0.0000018455,0.0000018458,0.0000018450,0.0000018431,0.0000018401, -0.0000018362,0.0000018316,0.0000018266,0.0000018217,0.0000018167, -0.0000018115,0.0000018060,0.0000017998,0.0000017934,0.0000017863, -0.0000017801,0.0000017762,0.0000017746,0.0000017750,0.0000017774, -0.0000017814,0.0000017856,0.0000017895,0.0000017931,0.0000017962, -0.0000017986,0.0000018009,0.0000018024,0.0000018027,0.0000018018, -0.0000017999,0.0000017975,0.0000017944,0.0000017917,0.0000017898, -0.0000017891,0.0000017896,0.0000017929,0.0000017977,0.0000018012, -0.0000018021,0.0000018013,0.0000017991,0.0000017954,0.0000017912, -0.0000017875,0.0000017854,0.0000017838,0.0000017800,0.0000017732, -0.0000017675,0.0000017672,0.0000017739,0.0000017860,0.0000017955, -0.0000017989,0.0000017998,0.0000018019,0.0000018087,0.0000018219, -0.0000018349,0.0000018404,0.0000018406,0.0000018407,0.0000018417, -0.0000018470,0.0000018534,0.0000018562,0.0000018599,0.0000018670, -0.0000018752,0.0000018814,0.0000018856,0.0000018870,0.0000018858, -0.0000018833,0.0000018828,0.0000018871,0.0000018942,0.0000018999, -0.0000019039,0.0000019051,0.0000019006,0.0000018903,0.0000018820, -0.0000018786,0.0000018783,0.0000018795,0.0000018817,0.0000018843, -0.0000018869,0.0000018885,0.0000018884,0.0000018864,0.0000018842, -0.0000018837,0.0000018852,0.0000018869,0.0000018873,0.0000018856, -0.0000018823,0.0000018787,0.0000018765,0.0000018769,0.0000018803, -0.0000018848,0.0000018876,0.0000018929,0.0000019039,0.0000019080, -0.0000019002,0.0000019005,0.0000019092,0.0000018961,0.0000018684, -0.0000018567,0.0000018577,0.0000018603,0.0000018624,0.0000018643, -0.0000018655,0.0000018660,0.0000018662,0.0000018663,0.0000018662, -0.0000018652,0.0000018629,0.0000018591,0.0000018551,0.0000018528, -0.0000018528,0.0000018536,0.0000018535,0.0000018497,0.0000018392, -0.0000018278,0.0000018234,0.0000018232,0.0000018222,0.0000018170, -0.0000018085,0.0000017994,0.0000017921,0.0000017865,0.0000017826, -0.0000017817,0.0000017805,0.0000017802,0.0000017811,0.0000017820, -0.0000017828,0.0000017840,0.0000017853,0.0000017868,0.0000017883, -0.0000017902,0.0000017920,0.0000017936,0.0000017954,0.0000017971, -0.0000017984,0.0000017994,0.0000017998,0.0000017996,0.0000017990, -0.0000017981,0.0000017973,0.0000017962,0.0000017963,0.0000017958, -0.0000017955,0.0000017960,0.0000017979,0.0000018023,0.0000018101, -0.0000018215,0.0000018353,0.0000018491,0.0000018608,0.0000018698, -0.0000018763,0.0000018813,0.0000018856,0.0000018891,0.0000018913, -0.0000018916,0.0000018902,0.0000018885,0.0000018869,0.0000018858, -0.0000018850,0.0000018842,0.0000018829,0.0000018810,0.0000018785, -0.0000018751,0.0000018715,0.0000018680,0.0000018644,0.0000018613, -0.0000018588,0.0000018569,0.0000018557,0.0000018551,0.0000018548, -0.0000018550,0.0000018555,0.0000018565,0.0000018577,0.0000018590, -0.0000018602,0.0000018613,0.0000018625,0.0000018641,0.0000018661, -0.0000018682,0.0000018703,0.0000018720,0.0000018736,0.0000018754, -0.0000018772,0.0000018787,0.0000018801,0.0000018809,0.0000018813, -0.0000018812,0.0000018808,0.0000018801,0.0000018793,0.0000018784, -0.0000018776,0.0000018771,0.0000018767,0.0000018763,0.0000018759, -0.0000018753,0.0000018744,0.0000018735,0.0000018725,0.0000018716, -0.0000018707,0.0000018700,0.0000018694,0.0000018687,0.0000018679, -0.0000018667,0.0000018655,0.0000018644,0.0000018634,0.0000018625, -0.0000018617,0.0000018610,0.0000018605,0.0000018601,0.0000018595, -0.0000018590,0.0000018589,0.0000018588,0.0000018587,0.0000018584, -0.0000018580,0.0000018576,0.0000018573,0.0000018571,0.0000018573, -0.0000018578,0.0000018584,0.0000018589,0.0000018593,0.0000018598, -0.0000018604,0.0000018612,0.0000018620,0.0000018626,0.0000018629, -0.0000018630,0.0000018615,0.0000018614,0.0000018608,0.0000018607, -0.0000018598,0.0000018580,0.0000018557,0.0000018531,0.0000018505, -0.0000018481,0.0000018474,0.0000018480,0.0000018500,0.0000018524, -0.0000018541,0.0000018544,0.0000018536,0.0000018510,0.0000018471, -0.0000018420,0.0000018363,0.0000018307,0.0000018262,0.0000018232, -0.0000018217,0.0000018205,0.0000018186,0.0000018162,0.0000018141, -0.0000018134,0.0000018144,0.0000018172,0.0000018220,0.0000018292, -0.0000018388,0.0000018500,0.0000018607,0.0000018687,0.0000018734, -0.0000018745,0.0000018726,0.0000018709,0.0000018692,0.0000018681, -0.0000018677,0.0000018678,0.0000018684,0.0000018695,0.0000018711, -0.0000018734,0.0000018762,0.0000018790,0.0000018814,0.0000018827, -0.0000018827,0.0000018813,0.0000018789,0.0000018765,0.0000018742, -0.0000018731,0.0000018736,0.0000018757,0.0000018788,0.0000018823, -0.0000018859,0.0000018891,0.0000018922,0.0000018953,0.0000018982, -0.0000019010,0.0000019034,0.0000019054,0.0000019070,0.0000019080, -0.0000019081,0.0000019080,0.0000019078,0.0000019075,0.0000019073, -0.0000019074,0.0000019078,0.0000019086,0.0000019094,0.0000019100, -0.0000019104,0.0000019104,0.0000019101,0.0000019096,0.0000019091, -0.0000019085,0.0000019076,0.0000019064,0.0000019050,0.0000019036, -0.0000019024,0.0000019013,0.0000019001,0.0000018988,0.0000018971, -0.0000018951,0.0000018927,0.0000018896,0.0000018862,0.0000018829, -0.0000018801,0.0000018777,0.0000018753,0.0000018723,0.0000018692, -0.0000018665,0.0000018650,0.0000018643,0.0000018638,0.0000018630, -0.0000018620,0.0000018609,0.0000018597,0.0000018585,0.0000018574, -0.0000018569,0.0000018562,0.0000018557,0.0000018552,0.0000018547, -0.0000018541,0.0000018535,0.0000018525,0.0000018511,0.0000018489, -0.0000018461,0.0000018434,0.0000018405,0.0000018377,0.0000018352, -0.0000018331,0.0000018317,0.0000018309,0.0000018305,0.0000018305, -0.0000018302,0.0000018302,0.0000018307,0.0000018322,0.0000018346, -0.0000018378,0.0000018417,0.0000018464,0.0000018516,0.0000018568, -0.0000018615,0.0000018659,0.0000018697,0.0000018725,0.0000018745, -0.0000018758,0.0000018767,0.0000018776,0.0000018782,0.0000018781, -0.0000018775,0.0000018766,0.0000018755,0.0000018744,0.0000018735, -0.0000018730,0.0000018727,0.0000018725,0.0000018727,0.0000018731, -0.0000018735,0.0000018739,0.0000018742,0.0000018746,0.0000018750, -0.0000018750,0.0000018736,0.0000018726,0.0000018718,0.0000018712, -0.0000018705,0.0000018694,0.0000018682,0.0000018673,0.0000018669, -0.0000018670,0.0000018671,0.0000018674,0.0000018675,0.0000018672, -0.0000018659,0.0000018631,0.0000018586,0.0000018525,0.0000018455, -0.0000018387,0.0000018327,0.0000018275,0.0000018230,0.0000018194, -0.0000018165,0.0000018144,0.0000018131,0.0000018122,0.0000018122, -0.0000018120,0.0000018122,0.0000018129,0.0000018140,0.0000018155, -0.0000018175,0.0000018196,0.0000018218,0.0000018242,0.0000018278, -0.0000018336,0.0000018430,0.0000018562,0.0000018724,0.0000018887, -0.0000019019,0.0000019103,0.0000019150,0.0000019185,0.0000019239, -0.0000019322,0.0000019430,0.0000019544,0.0000019646,0.0000019725, -0.0000019779,0.0000019814,0.0000019840,0.0000019861,0.0000019878, -0.0000019891,0.0000019902,0.0000019916,0.0000019934,0.0000019957, -0.0000019988,0.0000020027,0.0000020066,0.0000020100,0.0000020126, -0.0000020146,0.0000020159,0.0000020165,0.0000020167,0.0000020165, -0.0000020161,0.0000020154,0.0000020141,0.0000020124,0.0000020104, -0.0000020081,0.0000020058,0.0000020038,0.0000020024,0.0000020018, -0.0000020020,0.0000020027,0.0000020038,0.0000020052,0.0000020067, -0.0000020081,0.0000020095,0.0000020104,0.0000020108,0.0000020108, -0.0000020106,0.0000020102,0.0000020098,0.0000020093,0.0000020090, -0.0000020093,0.0000020101,0.0000020111,0.0000020123,0.0000020139, -0.0000020156,0.0000020171,0.0000020182,0.0000020186,0.0000020184, -0.0000020177,0.0000020171,0.0000020167,0.0000020167,0.0000020169, -0.0000020175,0.0000020187,0.0000020210,0.0000020243,0.0000020281, -0.0000020317,0.0000020347,0.0000020369,0.0000020372,0.0000020358, -0.0000020324,0.0000020274,0.0000020221,0.0000020179,0.0000020150, -0.0000020131,0.0000020123,0.0000020123,0.0000020126,0.0000020125, -0.0000020115,0.0000020109,0.0000020136,0.0000020194,0.0000020216, -0.0000020210,0.0000020263,0.0000020350,0.0000020370,0.0000020324, -0.0000020276,0.0000020269,0.0000020269,0.0000020240,0.0000020184, -0.0000020136,0.0000020108,0.0000020065,0.0000020004,0.0000019980, -0.0000020001,0.0000020104,0.0000020288,0.0000020441,0.0000020475, -0.0000020468,0.0000020427,0.0000020320,0.0000020193,0.0000020155, -0.0000020198,0.0000020316,0.0000020483,0.0000020665,0.0000020785, -0.0000020816,0.0000020811,0.0000020813,0.0000020832,0.0000020849, -0.0000020849,0.0000020835,0.0000020816,0.0000020805,0.0000020811, -0.0000020835,0.0000020870,0.0000020908,0.0000020943,0.0000020970, -0.0000020989,0.0000021000,0.0000021007,0.0000021010,0.0000021010, -0.0000021010,0.0000021016,0.0000021028,0.0000021042,0.0000021058, -0.0000021073,0.0000021088,0.0000021104,0.0000021117,0.0000021120, -0.0000021118,0.0000021110,0.0000021100,0.0000021091,0.0000021086, -0.0000021084,0.0000021084,0.0000021083,0.0000021080,0.0000021072, -0.0000021060,0.0000021047,0.0000021034,0.0000021018,0.0000020998, -0.0000020974,0.0000020949,0.0000020929,0.0000020918,0.0000020915, -0.0000020915,0.0000020915,0.0000020915,0.0000020916,0.0000020918, -0.0000020922,0.0000020926,0.0000020929,0.0000020932,0.0000020936, -0.0000020938,0.0000020940,0.0000020943,0.0000020948,0.0000020954, -0.0000020957,0.0000020955,0.0000020945,0.0000020931,0.0000020918, -0.0000020904,0.0000020887,0.0000020868,0.0000020847,0.0000020823, -0.0000020800,0.0000020783,0.0000020770,0.0000020758,0.0000020745, -0.0000020730,0.0000020711,0.0000020687,0.0000020661,0.0000020640, -0.0000020622,0.0000020603,0.0000020578,0.0000020546,0.0000020513, -0.0000020482,0.0000020454,0.0000020429,0.0000020407,0.0000020386, -0.0000020362,0.0000020337,0.0000020313,0.0000020295,0.0000020282, -0.0000020274,0.0000020270,0.0000020268,0.0000020268,0.0000020270, -0.0000020277,0.0000020287,0.0000020300,0.0000020317,0.0000020335, -0.0000020351,0.0000020367,0.0000020383,0.0000020397,0.0000020412, -0.0000020429,0.0000020451,0.0000020475,0.0000020500,0.0000020525, -0.0000020548,0.0000020569,0.0000020588,0.0000020606,0.0000020625, -0.0000020642,0.0000020657,0.0000020670,0.0000020684,0.0000020698, -0.0000020711,0.0000020723,0.0000020734,0.0000020743,0.0000020749, -0.0000020753,0.0000020757,0.0000020760,0.0000020765,0.0000020771, -0.0000020777,0.0000020780,0.0000020780,0.0000020777,0.0000020773, -0.0000020766,0.0000020758,0.0000020750,0.0000020741,0.0000020728, -0.0000020713,0.0000020698,0.0000020683,0.0000020666,0.0000020655, -0.0000020639,0.0000020624,0.0000020612,0.0000020603,0.0000020597, -0.0000020593,0.0000020594,0.0000020598,0.0000020606,0.0000020614, -0.0000020621,0.0000020626,0.0000020626,0.0000020622,0.0000020613, -0.0000020604,0.0000020590,0.0000020570,0.0000020542,0.0000020510, -0.0000020475,0.0000020445,0.0000020421,0.0000020404,0.0000020395, -0.0000020392,0.0000020398,0.0000020412,0.0000020432,0.0000020455, -0.0000020475,0.0000020487,0.0000020496,0.0000020502,0.0000020504, -0.0000020500,0.0000020496,0.0000020496,0.0000020508,0.0000020534, -0.0000020564,0.0000020588,0.0000020604,0.0000020612,0.0000020614, -0.0000020617,0.0000020618,0.0000020618,0.0000020618,0.0000020623, -0.0000020632,0.0000020644,0.0000020654,0.0000020663,0.0000020668, -0.0000020668,0.0000020658,0.0000020640,0.0000020620,0.0000020595, -0.0000020566,0.0000020537,0.0000020514,0.0000020496,0.0000020476, -0.0000020452,0.0000020432,0.0000020414,0.0000020400,0.0000020393, -0.0000020392,0.0000020395,0.0000020401,0.0000020409,0.0000020420, -0.0000020436,0.0000020460,0.0000020492,0.0000020529,0.0000020567, -0.0000020605,0.0000020639,0.0000020668,0.0000020688,0.0000020699, -0.0000020705,0.0000020698,0.0000020680,0.0000020658,0.0000020638, -0.0000020624,0.0000020614,0.0000020609,0.0000020606,0.0000020601, -0.0000020603,0.0000020616,0.0000020645,0.0000020688,0.0000020718, -0.0000020725,0.0000020696,0.0000020635,0.0000020563,0.0000020504, -0.0000020468,0.0000020447,0.0000020427,0.0000020398,0.0000020367, -0.0000020340,0.0000020324,0.0000020319,0.0000020318,0.0000020318, -0.0000020318,0.0000020318,0.0000020321,0.0000020326,0.0000020332, -0.0000020338,0.0000020347,0.0000020365,0.0000020409,0.0000020470, -0.0000020531,0.0000020589,0.0000020643,0.0000020692,0.0000020735, -0.0000020771,0.0000020800,0.0000020821,0.0000020831,0.0000020829, -0.0000020816,0.0000020789,0.0000020751,0.0000020705,0.0000020658, -0.0000020619,0.0000020600,0.0000020606,0.0000020636,0.0000020684, -0.0000020727,0.0000020764,0.0000020794,0.0000020813,0.0000020821, -0.0000020820,0.0000020813,0.0000020795,0.0000020776,0.0000020753, -0.0000020726,0.0000020697,0.0000020666,0.0000020640,0.0000020622, -0.0000020613,0.0000020611,0.0000020615,0.0000020617,0.0000020616, -0.0000020613,0.0000020608,0.0000020599,0.0000020582,0.0000020567, -0.0000020556,0.0000020543,0.0000020528,0.0000020512,0.0000020491, -0.0000020470,0.0000020449,0.0000020425,0.0000020396,0.0000020364, -0.0000020332,0.0000020303,0.0000020276,0.0000020248,0.0000020224, -0.0000020214,0.0000020205,0.0000020195,0.0000020188,0.0000020181, -0.0000020166,0.0000020145,0.0000020119,0.0000020089,0.0000020059, -0.0000020031,0.0000020007,0.0000019990,0.0000019982,0.0000019982, -0.0000019991,0.0000020008,0.0000020027,0.0000020050,0.0000020076, -0.0000020097,0.0000020106,0.0000020107,0.0000020104,0.0000020096, -0.0000020085,0.0000020074,0.0000020061,0.0000020045,0.0000020023, -0.0000020002,0.0000019981,0.0000019960,0.0000019941,0.0000019920, -0.0000019903,0.0000019895,0.0000019895,0.0000019894,0.0000019886, -0.0000019867,0.0000019836,0.0000019798,0.0000019761,0.0000019736, -0.0000019711,0.0000019693,0.0000019681,0.0000019676,0.0000019680, -0.0000019691,0.0000019702,0.0000019712,0.0000019718,0.0000019721, -0.0000019719,0.0000019711,0.0000019705,0.0000019706,0.0000019712, -0.0000019722,0.0000019735,0.0000019757,0.0000019790,0.0000019831, -0.0000019874,0.0000019916,0.0000019958,0.0000019996,0.0000020025, -0.0000020047,0.0000020060,0.0000020065,0.0000020062,0.0000020053, -0.0000020036,0.0000020018,0.0000020003,0.0000019995,0.0000019992, -0.0000019995,0.0000020001,0.0000020005,0.0000020007,0.0000020004, -0.0000019993,0.0000019974,0.0000019950,0.0000019926,0.0000019906, -0.0000019897,0.0000019906,0.0000019928,0.0000019955,0.0000019980, -0.0000020001,0.0000020018,0.0000020033,0.0000020044,0.0000020052, -0.0000020046,0.0000020039,0.0000020030,0.0000020013,0.0000019991, -0.0000019961,0.0000019924,0.0000019883,0.0000019843,0.0000019810, -0.0000019791,0.0000019802,0.0000019811,0.0000019847,0.0000019892, -0.0000019926,0.0000019949,0.0000019966,0.0000019973,0.0000019963, -0.0000019945,0.0000019914,0.0000019869,0.0000019816,0.0000019764, -0.0000019719,0.0000019695,0.0000019671,0.0000019658,0.0000019657, -0.0000019654,0.0000019649,0.0000019637,0.0000019615,0.0000019584, -0.0000019552,0.0000019523,0.0000019498,0.0000019498,0.0000019500, -0.0000019520,0.0000019551,0.0000019578,0.0000019598,0.0000019606, -0.0000019607,0.0000019613,0.0000019633,0.0000019664,0.0000019699, -0.0000019739,0.0000019784,0.0000019834,0.0000019887,0.0000019944, -0.0000020000,0.0000020051,0.0000020094,0.0000020124,0.0000020137, -0.0000020136,0.0000020131,0.0000020125,0.0000020127,0.0000020140, -0.0000020165,0.0000020196,0.0000020231,0.0000020269,0.0000020306, -0.0000020344,0.0000020374,0.0000020395,0.0000020409,0.0000020422, -0.0000020430,0.0000020430,0.0000020424,0.0000020408,0.0000020378, -0.0000020337,0.0000020285,0.0000020223,0.0000020156,0.0000020092, -0.0000020038,0.0000019994,0.0000019948,0.0000019895,0.0000019836, -0.0000019782,0.0000019734,0.0000019700,0.0000019681,0.0000019671, -0.0000019665,0.0000019668,0.0000019674,0.0000019680,0.0000019687, -0.0000019695,0.0000019704,0.0000019712,0.0000019718,0.0000019717, -0.0000019712,0.0000019700,0.0000019678,0.0000019647,0.0000019610, -0.0000019578,0.0000019562,0.0000019561,0.0000019577,0.0000019596, -0.0000019614,0.0000019637,0.0000019663,0.0000019688,0.0000019710, -0.0000019729,0.0000019745,0.0000019753,0.0000019756,0.0000019758, -0.0000019761,0.0000019760,0.0000019754,0.0000019741,0.0000019719, -0.0000019687,0.0000019647,0.0000019600,0.0000019548,0.0000019491, -0.0000019434,0.0000019376,0.0000019314,0.0000019248,0.0000019180, -0.0000019116,0.0000019055,0.0000018998,0.0000018952,0.0000018920, -0.0000018909,0.0000018917,0.0000018934,0.0000018943,0.0000018937, -0.0000018912,0.0000018883,0.0000018863,0.0000018858,0.0000018867, -0.0000018888,0.0000018901,0.0000018904,0.0000018903,0.0000018908, -0.0000018925,0.0000018952,0.0000018978,0.0000018991,0.0000018995, -0.0000018996,0.0000018997,0.0000018998,0.0000018999,0.0000019008, -0.0000019028,0.0000019048,0.0000019056,0.0000019052,0.0000019037, -0.0000019007,0.0000018965,0.0000018920,0.0000018877,0.0000018830, -0.0000018776,0.0000018725,0.0000018701,0.0000018706,0.0000018718, -0.0000018734,0.0000018755,0.0000018783,0.0000018813,0.0000018842, -0.0000018865,0.0000018878,0.0000018883,0.0000018882,0.0000018875, -0.0000018864,0.0000018856,0.0000018853,0.0000018859,0.0000018872, -0.0000018888,0.0000018913,0.0000018947,0.0000018999,0.0000019074, -0.0000019163,0.0000019262,0.0000019363,0.0000019456,0.0000019532, -0.0000019593,0.0000019627,0.0000019664,0.0000019677,0.0000019681, -0.0000019684,0.0000019697,0.0000019724,0.0000019761,0.0000019808, -0.0000019851,0.0000019888,0.0000019918,0.0000019918,0.0000019922, -0.0000019912,0.0000019883,0.0000019849,0.0000019805,0.0000019754, -0.0000019696,0.0000019637,0.0000019585,0.0000019542,0.0000019506, -0.0000019485,0.0000019465,0.0000019444,0.0000019422,0.0000019398, -0.0000019357,0.0000019284,0.0000019186,0.0000019091,0.0000019026, -0.0000018995,0.0000018992,0.0000019002,0.0000019019,0.0000019032, -0.0000019045,0.0000019061,0.0000019076,0.0000019090,0.0000019106, -0.0000019126,0.0000019141,0.0000019148,0.0000019153,0.0000019166, -0.0000019182,0.0000019183,0.0000019170,0.0000019137,0.0000019092, -0.0000019038,0.0000018970,0.0000018888,0.0000018809,0.0000018770, -0.0000018762,0.0000018799,0.0000018879,0.0000018972,0.0000019038, -0.0000019068,0.0000019080,0.0000019090,0.0000019100,0.0000019097, -0.0000019072,0.0000019031,0.0000018985,0.0000018941,0.0000018889, -0.0000018800,0.0000018658,0.0000018502,0.0000018398,0.0000018380, -0.0000018396,0.0000018445,0.0000018498,0.0000018529,0.0000018541, -0.0000018551,0.0000018556,0.0000018554,0.0000018541,0.0000018520, -0.0000018496,0.0000018472,0.0000018450,0.0000018438,0.0000018432, -0.0000018428,0.0000018424,0.0000018421,0.0000018421,0.0000018421, -0.0000018421,0.0000018417,0.0000018412,0.0000018395,0.0000018370, -0.0000018350,0.0000018337,0.0000018318,0.0000018281,0.0000018238, -0.0000018201,0.0000018149,0.0000018111,0.0000018108,0.0000018136, -0.0000018186,0.0000018226,0.0000018264,0.0000018301,0.0000018337, -0.0000018360,0.0000018371,0.0000018373,0.0000018372,0.0000018372, -0.0000018367,0.0000018364,0.0000018363,0.0000018367,0.0000018372, -0.0000018381,0.0000018389,0.0000018397,0.0000018407,0.0000018414, -0.0000018417,0.0000018415,0.0000018405,0.0000018387,0.0000018361, -0.0000018326,0.0000018282,0.0000018237,0.0000018187,0.0000018134, -0.0000018082,0.0000018027,0.0000017970,0.0000017914,0.0000017856, -0.0000017803,0.0000017763,0.0000017741,0.0000017735,0.0000017745, -0.0000017767,0.0000017797,0.0000017826,0.0000017851,0.0000017866, -0.0000017872,0.0000017879,0.0000017890,0.0000017901,0.0000017906, -0.0000017906,0.0000017897,0.0000017885,0.0000017873,0.0000017866, -0.0000017873,0.0000017905,0.0000017959,0.0000017999,0.0000018016, -0.0000018015,0.0000017996,0.0000017963,0.0000017926,0.0000017896, -0.0000017875,0.0000017858,0.0000017817,0.0000017738,0.0000017665, -0.0000017652,0.0000017713,0.0000017843,0.0000017947,0.0000017980, -0.0000017988,0.0000018010,0.0000018075,0.0000018201,0.0000018335, -0.0000018398,0.0000018405,0.0000018405,0.0000018402,0.0000018426, -0.0000018493,0.0000018531,0.0000018551,0.0000018601,0.0000018679, -0.0000018755,0.0000018812,0.0000018842,0.0000018841,0.0000018822, -0.0000018808,0.0000018829,0.0000018895,0.0000018958,0.0000019000, -0.0000019025,0.0000019020,0.0000018954,0.0000018867,0.0000018819, -0.0000018805,0.0000018810,0.0000018832,0.0000018860,0.0000018883, -0.0000018890,0.0000018886,0.0000018869,0.0000018851,0.0000018851, -0.0000018872,0.0000018896,0.0000018906,0.0000018896,0.0000018863, -0.0000018819,0.0000018778,0.0000018758,0.0000018766,0.0000018801, -0.0000018844,0.0000018879,0.0000018914,0.0000019005,0.0000019068, -0.0000019019,0.0000019000,0.0000019083,0.0000019014,0.0000018757, -0.0000018592,0.0000018581,0.0000018612,0.0000018637,0.0000018651, -0.0000018655,0.0000018654,0.0000018652,0.0000018651,0.0000018652, -0.0000018651,0.0000018646,0.0000018624,0.0000018587,0.0000018561, -0.0000018558,0.0000018558,0.0000018552,0.0000018530,0.0000018448, -0.0000018322,0.0000018243,0.0000018233,0.0000018232,0.0000018222, -0.0000018188,0.0000018135,0.0000018076,0.0000018018,0.0000017968, -0.0000017927,0.0000017899,0.0000017884,0.0000017878,0.0000017874, -0.0000017871,0.0000017871,0.0000017870,0.0000017871,0.0000017881, -0.0000017890,0.0000017900,0.0000017905,0.0000017913,0.0000017925, -0.0000017944,0.0000017964,0.0000017984,0.0000018002,0.0000018007, -0.0000018013,0.0000018009,0.0000017997,0.0000017981,0.0000017964, -0.0000017952,0.0000017945,0.0000017937,0.0000017934,0.0000017955, -0.0000018011,0.0000018103,0.0000018228,0.0000018370,0.0000018508, -0.0000018623,0.0000018711,0.0000018777,0.0000018828,0.0000018865, -0.0000018885,0.0000018885,0.0000018871,0.0000018852,0.0000018832, -0.0000018815,0.0000018804,0.0000018794,0.0000018782,0.0000018763, -0.0000018736,0.0000018701,0.0000018661,0.0000018617,0.0000018579, -0.0000018538,0.0000018510,0.0000018491,0.0000018481,0.0000018477, -0.0000018477,0.0000018481,0.0000018487,0.0000018495,0.0000018502, -0.0000018508,0.0000018516,0.0000018527,0.0000018541,0.0000018558, -0.0000018578,0.0000018596,0.0000018612,0.0000018630,0.0000018650, -0.0000018670,0.0000018687,0.0000018699,0.0000018707,0.0000018709, -0.0000018708,0.0000018703,0.0000018697,0.0000018690,0.0000018682, -0.0000018675,0.0000018668,0.0000018662,0.0000018656,0.0000018651, -0.0000018644,0.0000018634,0.0000018621,0.0000018606,0.0000018590, -0.0000018576,0.0000018563,0.0000018554,0.0000018546,0.0000018539, -0.0000018534,0.0000018531,0.0000018531,0.0000018531,0.0000018530, -0.0000018531,0.0000018536,0.0000018541,0.0000018543,0.0000018545, -0.0000018548,0.0000018552,0.0000018555,0.0000018554,0.0000018552, -0.0000018550,0.0000018548,0.0000018548,0.0000018549,0.0000018553, -0.0000018560,0.0000018569,0.0000018575,0.0000018581,0.0000018588, -0.0000018596,0.0000018603,0.0000018609,0.0000018613,0.0000018615, -0.0000018600,0.0000018596,0.0000018590,0.0000018585,0.0000018585, -0.0000018585,0.0000018581,0.0000018577,0.0000018567,0.0000018551, -0.0000018529,0.0000018506,0.0000018491,0.0000018493,0.0000018502, -0.0000018514,0.0000018524,0.0000018523,0.0000018516,0.0000018494, -0.0000018455,0.0000018402,0.0000018342,0.0000018286,0.0000018241, -0.0000018211,0.0000018191,0.0000018171,0.0000018146,0.0000018120, -0.0000018098,0.0000018092,0.0000018103,0.0000018133,0.0000018184, -0.0000018257,0.0000018349,0.0000018450,0.0000018550,0.0000018630, -0.0000018678,0.0000018696,0.0000018684,0.0000018667,0.0000018655, -0.0000018647,0.0000018646,0.0000018647,0.0000018650,0.0000018654, -0.0000018662,0.0000018677,0.0000018701,0.0000018730,0.0000018754, -0.0000018768,0.0000018769,0.0000018756,0.0000018733,0.0000018709, -0.0000018693,0.0000018691,0.0000018700,0.0000018724,0.0000018762, -0.0000018805,0.0000018846,0.0000018882,0.0000018915,0.0000018944, -0.0000018970,0.0000018996,0.0000019019,0.0000019038,0.0000019052, -0.0000019061,0.0000019067,0.0000019069,0.0000019071,0.0000019076, -0.0000019083,0.0000019090,0.0000019094,0.0000019099,0.0000019102, -0.0000019103,0.0000019103,0.0000019101,0.0000019097,0.0000019088, -0.0000019076,0.0000019061,0.0000019045,0.0000019028,0.0000019010, -0.0000018994,0.0000018978,0.0000018962,0.0000018945,0.0000018925, -0.0000018904,0.0000018879,0.0000018850,0.0000018819,0.0000018790, -0.0000018768,0.0000018753,0.0000018739,0.0000018718,0.0000018693, -0.0000018668,0.0000018648,0.0000018636,0.0000018631,0.0000018629, -0.0000018629,0.0000018626,0.0000018617,0.0000018603,0.0000018587, -0.0000018572,0.0000018558,0.0000018547,0.0000018536,0.0000018527, -0.0000018519,0.0000018511,0.0000018502,0.0000018488,0.0000018469, -0.0000018447,0.0000018420,0.0000018394,0.0000018370,0.0000018347, -0.0000018328,0.0000018316,0.0000018307,0.0000018300,0.0000018293, -0.0000018285,0.0000018280,0.0000018275,0.0000018271,0.0000018273, -0.0000018279,0.0000018294,0.0000018319,0.0000018349,0.0000018384, -0.0000018420,0.0000018453,0.0000018482,0.0000018507,0.0000018525, -0.0000018539,0.0000018547,0.0000018549,0.0000018546,0.0000018541, -0.0000018534,0.0000018527,0.0000018519,0.0000018515,0.0000018513, -0.0000018512,0.0000018511,0.0000018511,0.0000018513,0.0000018517, -0.0000018522,0.0000018531,0.0000018543,0.0000018558,0.0000018576, -0.0000018599,0.0000018622,0.0000018645,0.0000018669,0.0000018690, -0.0000018695,0.0000018692,0.0000018692,0.0000018695,0.0000018697, -0.0000018697,0.0000018696,0.0000018696,0.0000018695,0.0000018693, -0.0000018685,0.0000018668,0.0000018637,0.0000018592,0.0000018537, -0.0000018476,0.0000018410,0.0000018346,0.0000018288,0.0000018239, -0.0000018200,0.0000018171,0.0000018150,0.0000018133,0.0000018118, -0.0000018110,0.0000018107,0.0000018108,0.0000018121,0.0000018143, -0.0000018170,0.0000018195,0.0000018217,0.0000018240,0.0000018269, -0.0000018312,0.0000018382,0.0000018492,0.0000018638,0.0000018797, -0.0000018939,0.0000019042,0.0000019101,0.0000019135,0.0000019171, -0.0000019231,0.0000019319,0.0000019425,0.0000019532,0.0000019624, -0.0000019692,0.0000019741,0.0000019774,0.0000019798,0.0000019816, -0.0000019831,0.0000019846,0.0000019863,0.0000019881,0.0000019906, -0.0000019940,0.0000019977,0.0000020012,0.0000020041,0.0000020065, -0.0000020082,0.0000020090,0.0000020092,0.0000020089,0.0000020083, -0.0000020073,0.0000020058,0.0000020041,0.0000020020,0.0000019998, -0.0000019975,0.0000019954,0.0000019937,0.0000019928,0.0000019928, -0.0000019933,0.0000019941,0.0000019951,0.0000019961,0.0000019971, -0.0000019978,0.0000019980,0.0000019977,0.0000019973,0.0000019968, -0.0000019961,0.0000019953,0.0000019945,0.0000019939,0.0000019941, -0.0000019947,0.0000019957,0.0000019970,0.0000019988,0.0000020010, -0.0000020032,0.0000020051,0.0000020068,0.0000020083,0.0000020096, -0.0000020110,0.0000020124,0.0000020135,0.0000020142,0.0000020146, -0.0000020149,0.0000020159,0.0000020179,0.0000020211,0.0000020249, -0.0000020288,0.0000020322,0.0000020343,0.0000020344,0.0000020322, -0.0000020279,0.0000020226,0.0000020175,0.0000020137,0.0000020117, -0.0000020110,0.0000020111,0.0000020113,0.0000020107,0.0000020090, -0.0000020084,0.0000020123,0.0000020182,0.0000020193,0.0000020195, -0.0000020271,0.0000020361,0.0000020367,0.0000020313,0.0000020280, -0.0000020285,0.0000020282,0.0000020239,0.0000020173,0.0000020128, -0.0000020100,0.0000020047,0.0000019991,0.0000019981,0.0000020027, -0.0000020151,0.0000020333,0.0000020454,0.0000020470,0.0000020450, -0.0000020389,0.0000020273,0.0000020168,0.0000020146,0.0000020194, -0.0000020303,0.0000020452,0.0000020622,0.0000020752,0.0000020801, -0.0000020797,0.0000020790,0.0000020797,0.0000020812,0.0000020818, -0.0000020807,0.0000020789,0.0000020765,0.0000020750,0.0000020750, -0.0000020761,0.0000020782,0.0000020808,0.0000020832,0.0000020854, -0.0000020875,0.0000020896,0.0000020915,0.0000020932,0.0000020948, -0.0000020963,0.0000020974,0.0000020981,0.0000020984,0.0000020986, -0.0000020993,0.0000021006,0.0000021021,0.0000021033,0.0000021042, -0.0000021048,0.0000021049,0.0000021046,0.0000021039,0.0000021028, -0.0000021016,0.0000021001,0.0000020983,0.0000020965,0.0000020949, -0.0000020937,0.0000020927,0.0000020915,0.0000020898,0.0000020876, -0.0000020854,0.0000020837,0.0000020828,0.0000020823,0.0000020818, -0.0000020814,0.0000020812,0.0000020812,0.0000020814,0.0000020815, -0.0000020817,0.0000020819,0.0000020821,0.0000020820,0.0000020818, -0.0000020819,0.0000020825,0.0000020835,0.0000020844,0.0000020845, -0.0000020841,0.0000020834,0.0000020828,0.0000020820,0.0000020808, -0.0000020794,0.0000020778,0.0000020758,0.0000020738,0.0000020720, -0.0000020707,0.0000020695,0.0000020681,0.0000020665,0.0000020644, -0.0000020619,0.0000020594,0.0000020571,0.0000020553,0.0000020533, -0.0000020504,0.0000020467,0.0000020427,0.0000020387,0.0000020349, -0.0000020317,0.0000020289,0.0000020261,0.0000020232,0.0000020201, -0.0000020174,0.0000020152,0.0000020135,0.0000020121,0.0000020110, -0.0000020103,0.0000020099,0.0000020098,0.0000020100,0.0000020106, -0.0000020116,0.0000020130,0.0000020145,0.0000020162,0.0000020181, -0.0000020200,0.0000020221,0.0000020245,0.0000020273,0.0000020304, -0.0000020335,0.0000020365,0.0000020395,0.0000020424,0.0000020450, -0.0000020473,0.0000020493,0.0000020512,0.0000020530,0.0000020546, -0.0000020562,0.0000020578,0.0000020593,0.0000020606,0.0000020616, -0.0000020624,0.0000020629,0.0000020631,0.0000020633,0.0000020637, -0.0000020641,0.0000020645,0.0000020650,0.0000020656,0.0000020661, -0.0000020663,0.0000020663,0.0000020662,0.0000020660,0.0000020657, -0.0000020656,0.0000020656,0.0000020655,0.0000020654,0.0000020653, -0.0000020650,0.0000020647,0.0000020642,0.0000020633,0.0000020623, -0.0000020614,0.0000020607,0.0000020600,0.0000020597,0.0000020598, -0.0000020603,0.0000020611,0.0000020619,0.0000020625,0.0000020628, -0.0000020627,0.0000020623,0.0000020614,0.0000020603,0.0000020588, -0.0000020567,0.0000020539,0.0000020509,0.0000020478,0.0000020450, -0.0000020424,0.0000020399,0.0000020378,0.0000020363,0.0000020358, -0.0000020360,0.0000020369,0.0000020386,0.0000020407,0.0000020430, -0.0000020452,0.0000020473,0.0000020490,0.0000020498,0.0000020501, -0.0000020510,0.0000020523,0.0000020548,0.0000020578,0.0000020602, -0.0000020617,0.0000020626,0.0000020628,0.0000020626,0.0000020625, -0.0000020620,0.0000020617,0.0000020620,0.0000020628,0.0000020642, -0.0000020659,0.0000020673,0.0000020685,0.0000020693,0.0000020695, -0.0000020688,0.0000020672,0.0000020649,0.0000020619,0.0000020585, -0.0000020554,0.0000020526,0.0000020494,0.0000020459,0.0000020427, -0.0000020399,0.0000020375,0.0000020355,0.0000020341,0.0000020332, -0.0000020327,0.0000020325,0.0000020326,0.0000020333,0.0000020347, -0.0000020368,0.0000020395,0.0000020424,0.0000020455,0.0000020490, -0.0000020530,0.0000020573,0.0000020615,0.0000020652,0.0000020677, -0.0000020684,0.0000020684,0.0000020671,0.0000020647,0.0000020620, -0.0000020597,0.0000020583,0.0000020577,0.0000020576,0.0000020580, -0.0000020591,0.0000020615,0.0000020653,0.0000020699,0.0000020724, -0.0000020717,0.0000020673,0.0000020604,0.0000020536,0.0000020485, -0.0000020457,0.0000020437,0.0000020406,0.0000020361,0.0000020322, -0.0000020298,0.0000020286,0.0000020285,0.0000020288,0.0000020289, -0.0000020290,0.0000020293,0.0000020301,0.0000020310,0.0000020324, -0.0000020345,0.0000020386,0.0000020441,0.0000020495,0.0000020545, -0.0000020590,0.0000020633,0.0000020674,0.0000020711,0.0000020744, -0.0000020770,0.0000020786,0.0000020789,0.0000020780,0.0000020756, -0.0000020719,0.0000020676,0.0000020631,0.0000020593,0.0000020562, -0.0000020552,0.0000020565,0.0000020599,0.0000020637,0.0000020673, -0.0000020702,0.0000020723,0.0000020735,0.0000020741,0.0000020743, -0.0000020742,0.0000020736,0.0000020724,0.0000020707,0.0000020684, -0.0000020656,0.0000020627,0.0000020600,0.0000020578,0.0000020565, -0.0000020560,0.0000020557,0.0000020554,0.0000020553,0.0000020554, -0.0000020555,0.0000020556,0.0000020558,0.0000020555,0.0000020551, -0.0000020543,0.0000020532,0.0000020518,0.0000020499,0.0000020475, -0.0000020448,0.0000020415,0.0000020379,0.0000020344,0.0000020313, -0.0000020286,0.0000020259,0.0000020243,0.0000020233,0.0000020223, -0.0000020218,0.0000020215,0.0000020203,0.0000020183,0.0000020154, -0.0000020122,0.0000020087,0.0000020053,0.0000020020,0.0000019992, -0.0000019973,0.0000019955,0.0000019943,0.0000019945,0.0000019950, -0.0000019960,0.0000019977,0.0000019999,0.0000020014,0.0000020022, -0.0000020023,0.0000020021,0.0000020016,0.0000020011,0.0000020001, -0.0000019987,0.0000019971,0.0000019959,0.0000019950,0.0000019942, -0.0000019936,0.0000019927,0.0000019923,0.0000019918,0.0000019915, -0.0000019912,0.0000019908,0.0000019898,0.0000019877,0.0000019842, -0.0000019799,0.0000019757,0.0000019720,0.0000019688,0.0000019665, -0.0000019652,0.0000019651,0.0000019660,0.0000019674,0.0000019688, -0.0000019697,0.0000019701,0.0000019697,0.0000019684,0.0000019668, -0.0000019657,0.0000019649,0.0000019642,0.0000019641,0.0000019649, -0.0000019674,0.0000019715,0.0000019763,0.0000019814,0.0000019868, -0.0000019922,0.0000019970,0.0000020006,0.0000020030,0.0000020044, -0.0000020046,0.0000020037,0.0000020019,0.0000019992,0.0000019961, -0.0000019934,0.0000019916,0.0000019911,0.0000019915,0.0000019929, -0.0000019945,0.0000019958,0.0000019961,0.0000019953,0.0000019934, -0.0000019907,0.0000019874,0.0000019843,0.0000019828,0.0000019825, -0.0000019834,0.0000019849,0.0000019868,0.0000019889,0.0000019910, -0.0000019934,0.0000019960,0.0000019984,0.0000020001,0.0000020011, -0.0000020017,0.0000020008,0.0000020007,0.0000019992,0.0000019975, -0.0000019950,0.0000019924,0.0000019897,0.0000019874,0.0000019858, -0.0000019861,0.0000019882,0.0000019890,0.0000019911,0.0000019928, -0.0000019942,0.0000019958,0.0000019966,0.0000019977,0.0000019965, -0.0000019930,0.0000019878,0.0000019812,0.0000019744,0.0000019684, -0.0000019647,0.0000019626,0.0000019626,0.0000019637,0.0000019651, -0.0000019659,0.0000019654,0.0000019636,0.0000019606,0.0000019570, -0.0000019538,0.0000019516,0.0000019515,0.0000019513,0.0000019526, -0.0000019542,0.0000019555,0.0000019566,0.0000019573,0.0000019587, -0.0000019608,0.0000019638,0.0000019675,0.0000019718,0.0000019765, -0.0000019813,0.0000019859,0.0000019907,0.0000019961,0.0000020017, -0.0000020067,0.0000020105,0.0000020127,0.0000020132,0.0000020129, -0.0000020124,0.0000020124,0.0000020135,0.0000020153,0.0000020175, -0.0000020201,0.0000020232,0.0000020268,0.0000020300,0.0000020328, -0.0000020353,0.0000020373,0.0000020386,0.0000020387,0.0000020381, -0.0000020360,0.0000020324,0.0000020276,0.0000020221,0.0000020160, -0.0000020099,0.0000020046,0.0000020007,0.0000019972,0.0000019930, -0.0000019877,0.0000019819,0.0000019764,0.0000019716,0.0000019684, -0.0000019664,0.0000019651,0.0000019642,0.0000019640,0.0000019644, -0.0000019650,0.0000019657,0.0000019666,0.0000019678,0.0000019691, -0.0000019700,0.0000019706,0.0000019710,0.0000019715,0.0000019712, -0.0000019697,0.0000019673,0.0000019648,0.0000019629,0.0000019619, -0.0000019619,0.0000019623,0.0000019631,0.0000019647,0.0000019665, -0.0000019685,0.0000019703,0.0000019718,0.0000019731,0.0000019739, -0.0000019742,0.0000019746,0.0000019751,0.0000019753,0.0000019748, -0.0000019739,0.0000019722,0.0000019698,0.0000019665,0.0000019624, -0.0000019574,0.0000019518,0.0000019459,0.0000019396,0.0000019330, -0.0000019263,0.0000019193,0.0000019121,0.0000019054,0.0000018994, -0.0000018938,0.0000018896,0.0000018871,0.0000018861,0.0000018867, -0.0000018883,0.0000018893,0.0000018887,0.0000018865,0.0000018838, -0.0000018820,0.0000018818,0.0000018833,0.0000018858,0.0000018875, -0.0000018878,0.0000018879,0.0000018889,0.0000018918,0.0000018949, -0.0000018969,0.0000018980,0.0000018983,0.0000018982,0.0000018977, -0.0000018977,0.0000018985,0.0000019003,0.0000019024,0.0000019041, -0.0000019048,0.0000019045,0.0000019028,0.0000018993,0.0000018950, -0.0000018907,0.0000018860,0.0000018805,0.0000018751,0.0000018719, -0.0000018714,0.0000018723,0.0000018736,0.0000018756,0.0000018778, -0.0000018802,0.0000018821,0.0000018837,0.0000018847,0.0000018852, -0.0000018852,0.0000018848,0.0000018839,0.0000018831,0.0000018829, -0.0000018834,0.0000018841,0.0000018848,0.0000018858,0.0000018873, -0.0000018901,0.0000018945,0.0000019002,0.0000019074,0.0000019157, -0.0000019245,0.0000019333,0.0000019419,0.0000019501,0.0000019570, -0.0000019624,0.0000019657,0.0000019675,0.0000019688,0.0000019696, -0.0000019719,0.0000019747,0.0000019780,0.0000019823,0.0000019865, -0.0000019898,0.0000019928,0.0000019929,0.0000019934,0.0000019929, -0.0000019902,0.0000019861,0.0000019803,0.0000019733,0.0000019658, -0.0000019584,0.0000019521,0.0000019473,0.0000019439,0.0000019410, -0.0000019391,0.0000019374,0.0000019343,0.0000019286,0.0000019204, -0.0000019121,0.0000019055,0.0000019013,0.0000018995,0.0000018997, -0.0000019005,0.0000019012,0.0000019020,0.0000019033,0.0000019048, -0.0000019064,0.0000019084,0.0000019107,0.0000019126,0.0000019138, -0.0000019145,0.0000019158,0.0000019173,0.0000019179,0.0000019169, -0.0000019139,0.0000019094,0.0000019041,0.0000018976,0.0000018891, -0.0000018803,0.0000018753,0.0000018734,0.0000018762,0.0000018840, -0.0000018938,0.0000019017,0.0000019056,0.0000019070,0.0000019080, -0.0000019094,0.0000019094,0.0000019077,0.0000019043,0.0000018998, -0.0000018952,0.0000018901,0.0000018816,0.0000018679,0.0000018524, -0.0000018418,0.0000018390,0.0000018404,0.0000018450,0.0000018498, -0.0000018528,0.0000018542,0.0000018551,0.0000018553,0.0000018548, -0.0000018531,0.0000018509,0.0000018490,0.0000018468,0.0000018448, -0.0000018436,0.0000018427,0.0000018422,0.0000018416,0.0000018409, -0.0000018401,0.0000018393,0.0000018383,0.0000018368,0.0000018351, -0.0000018329,0.0000018307,0.0000018290,0.0000018268,0.0000018237, -0.0000018205,0.0000018175,0.0000018129,0.0000018101,0.0000018104, -0.0000018141,0.0000018186,0.0000018225,0.0000018269,0.0000018316, -0.0000018353,0.0000018369,0.0000018369,0.0000018369,0.0000018372, -0.0000018375,0.0000018380,0.0000018385,0.0000018387,0.0000018387, -0.0000018387,0.0000018387,0.0000018387,0.0000018392,0.0000018397, -0.0000018400,0.0000018400,0.0000018397,0.0000018390,0.0000018374, -0.0000018351,0.0000018317,0.0000018276,0.0000018229,0.0000018179, -0.0000018124,0.0000018072,0.0000018019,0.0000017964,0.0000017908, -0.0000017855,0.0000017807,0.0000017764,0.0000017738,0.0000017725, -0.0000017726,0.0000017736,0.0000017755,0.0000017775,0.0000017796, -0.0000017806,0.0000017806,0.0000017805,0.0000017812,0.0000017822, -0.0000017834,0.0000017844,0.0000017849,0.0000017849,0.0000017849, -0.0000017858,0.0000017885,0.0000017935,0.0000017981,0.0000018006, -0.0000018011,0.0000018002,0.0000017974,0.0000017936,0.0000017904, -0.0000017886,0.0000017875,0.0000017845,0.0000017764,0.0000017668, -0.0000017631,0.0000017670,0.0000017799,0.0000017920,0.0000017966, -0.0000017976,0.0000017998,0.0000018061,0.0000018183,0.0000018321, -0.0000018393,0.0000018405,0.0000018405,0.0000018396,0.0000018394, -0.0000018439,0.0000018497,0.0000018517,0.0000018548,0.0000018614, -0.0000018696,0.0000018766,0.0000018810,0.0000018822,0.0000018810, -0.0000018790,0.0000018791,0.0000018835,0.0000018902,0.0000018952, -0.0000018988,0.0000019004,0.0000018989,0.0000018925,0.0000018866, -0.0000018838,0.0000018834,0.0000018841,0.0000018861,0.0000018884, -0.0000018894,0.0000018891,0.0000018880,0.0000018867,0.0000018868, -0.0000018888,0.0000018913,0.0000018927,0.0000018920,0.0000018886, -0.0000018845,0.0000018798,0.0000018757,0.0000018748,0.0000018773, -0.0000018808,0.0000018847,0.0000018884,0.0000018908,0.0000018996, -0.0000019076,0.0000019021,0.0000018990,0.0000019076,0.0000019047, -0.0000018821,0.0000018633,0.0000018599,0.0000018606,0.0000018620, -0.0000018631,0.0000018635,0.0000018636,0.0000018636,0.0000018635, -0.0000018634,0.0000018637,0.0000018640,0.0000018633,0.0000018609, -0.0000018585,0.0000018575,0.0000018558,0.0000018541,0.0000018531, -0.0000018482,0.0000018363,0.0000018259,0.0000018223,0.0000018223, -0.0000018222,0.0000018220,0.0000018207,0.0000018187,0.0000018159, -0.0000018127,0.0000018097,0.0000018071,0.0000018054,0.0000018045, -0.0000018039,0.0000018035,0.0000018028,0.0000018019,0.0000018010, -0.0000018003,0.0000017998,0.0000017993,0.0000017983,0.0000017968, -0.0000017956,0.0000017948,0.0000017957,0.0000017950,0.0000017956, -0.0000017966,0.0000017981,0.0000017994,0.0000017997,0.0000017995, -0.0000017982,0.0000017969,0.0000017952,0.0000017933,0.0000017926, -0.0000017924,0.0000017930,0.0000017959,0.0000018022,0.0000018122, -0.0000018253,0.0000018396,0.0000018529,0.0000018639,0.0000018725, -0.0000018789,0.0000018830,0.0000018850,0.0000018850,0.0000018835, -0.0000018814,0.0000018789,0.0000018770,0.0000018756,0.0000018745, -0.0000018734,0.0000018716,0.0000018689,0.0000018653,0.0000018610, -0.0000018560,0.0000018511,0.0000018472,0.0000018434,0.0000018410, -0.0000018398,0.0000018397,0.0000018401,0.0000018410,0.0000018420, -0.0000018427,0.0000018434,0.0000018442,0.0000018451,0.0000018461, -0.0000018474,0.0000018488,0.0000018501,0.0000018515,0.0000018531, -0.0000018548,0.0000018562,0.0000018573,0.0000018579,0.0000018580, -0.0000018577,0.0000018570,0.0000018562,0.0000018551,0.0000018539, -0.0000018527,0.0000018517,0.0000018507,0.0000018497,0.0000018487, -0.0000018476,0.0000018464,0.0000018449,0.0000018432,0.0000018415, -0.0000018398,0.0000018381,0.0000018366,0.0000018353,0.0000018342, -0.0000018336,0.0000018335,0.0000018340,0.0000018348,0.0000018356, -0.0000018367,0.0000018383,0.0000018401,0.0000018419,0.0000018436, -0.0000018454,0.0000018472,0.0000018486,0.0000018497,0.0000018502, -0.0000018505,0.0000018508,0.0000018509,0.0000018509,0.0000018510, -0.0000018514,0.0000018523,0.0000018534,0.0000018545,0.0000018556, -0.0000018569,0.0000018582,0.0000018592,0.0000018599,0.0000018601, -0.0000018563,0.0000018569,0.0000018569,0.0000018566,0.0000018560, -0.0000018554,0.0000018551,0.0000018553,0.0000018560,0.0000018560, -0.0000018567,0.0000018562,0.0000018546,0.0000018530,0.0000018514, -0.0000018502,0.0000018498,0.0000018498,0.0000018502,0.0000018502, -0.0000018495,0.0000018471,0.0000018431,0.0000018377,0.0000018317, -0.0000018263,0.0000018219,0.0000018187,0.0000018159,0.0000018130, -0.0000018100,0.0000018076,0.0000018053,0.0000018049,0.0000018063, -0.0000018098,0.0000018151,0.0000018220,0.0000018307,0.0000018404, -0.0000018499,0.0000018576,0.0000018624,0.0000018643,0.0000018641, -0.0000018629,0.0000018619,0.0000018613,0.0000018611,0.0000018608, -0.0000018603,0.0000018600,0.0000018602,0.0000018615,0.0000018640, -0.0000018669,0.0000018695,0.0000018712,0.0000018716,0.0000018707, -0.0000018692,0.0000018673,0.0000018656,0.0000018653,0.0000018665, -0.0000018696,0.0000018738,0.0000018785,0.0000018830,0.0000018867, -0.0000018898,0.0000018925,0.0000018949,0.0000018969,0.0000018986, -0.0000019000,0.0000019016,0.0000019033,0.0000019051,0.0000019068, -0.0000019083,0.0000019092,0.0000019098,0.0000019103,0.0000019107, -0.0000019107,0.0000019107,0.0000019106,0.0000019104,0.0000019099, -0.0000019090,0.0000019075,0.0000019055,0.0000019030,0.0000019005, -0.0000018982,0.0000018961,0.0000018939,0.0000018918,0.0000018899, -0.0000018880,0.0000018860,0.0000018836,0.0000018808,0.0000018781, -0.0000018758,0.0000018743,0.0000018735,0.0000018728,0.0000018717, -0.0000018698,0.0000018674,0.0000018652,0.0000018637,0.0000018633, -0.0000018636,0.0000018640,0.0000018640,0.0000018632,0.0000018617, -0.0000018600,0.0000018580,0.0000018560,0.0000018541,0.0000018524, -0.0000018512,0.0000018500,0.0000018488,0.0000018474,0.0000018458, -0.0000018440,0.0000018421,0.0000018400,0.0000018381,0.0000018363, -0.0000018349,0.0000018339,0.0000018328,0.0000018316,0.0000018302, -0.0000018289,0.0000018277,0.0000018266,0.0000018255,0.0000018246, -0.0000018237,0.0000018231,0.0000018232,0.0000018239,0.0000018251, -0.0000018268,0.0000018289,0.0000018311,0.0000018332,0.0000018353, -0.0000018371,0.0000018383,0.0000018392,0.0000018401,0.0000018408, -0.0000018414,0.0000018419,0.0000018424,0.0000018429,0.0000018432, -0.0000018433,0.0000018429,0.0000018424,0.0000018418,0.0000018411, -0.0000018402,0.0000018394,0.0000018388,0.0000018385,0.0000018391, -0.0000018406,0.0000018429,0.0000018461,0.0000018498,0.0000018537, -0.0000018572,0.0000018601,0.0000018626,0.0000018653,0.0000018680, -0.0000018699,0.0000018704,0.0000018711,0.0000018715,0.0000018713, -0.0000018707,0.0000018698,0.0000018684,0.0000018663,0.0000018636, -0.0000018600,0.0000018553,0.0000018496,0.0000018434,0.0000018371, -0.0000018313,0.0000018262,0.0000018217,0.0000018176,0.0000018140, -0.0000018112,0.0000018099,0.0000018088,0.0000018089,0.0000018105, -0.0000018131,0.0000018161,0.0000018193,0.0000018221,0.0000018244, -0.0000018266,0.0000018294,0.0000018342,0.0000018424,0.0000018542, -0.0000018686,0.0000018831,0.0000018950,0.0000019031,0.0000019077, -0.0000019108,0.0000019149,0.0000019214,0.0000019303,0.0000019404, -0.0000019503,0.0000019587,0.0000019650,0.0000019692,0.0000019721, -0.0000019743,0.0000019762,0.0000019779,0.0000019797,0.0000019821, -0.0000019850,0.0000019881,0.0000019912,0.0000019940,0.0000019965, -0.0000019984,0.0000019996,0.0000019999,0.0000019997,0.0000019991, -0.0000019980,0.0000019965,0.0000019947,0.0000019928,0.0000019910, -0.0000019893,0.0000019875,0.0000019859,0.0000019851,0.0000019852, -0.0000019857,0.0000019866,0.0000019875,0.0000019883,0.0000019887, -0.0000019887,0.0000019881,0.0000019871,0.0000019860,0.0000019848, -0.0000019835,0.0000019819,0.0000019803,0.0000019790,0.0000019784, -0.0000019785,0.0000019792,0.0000019804,0.0000019818,0.0000019834, -0.0000019853,0.0000019875,0.0000019898,0.0000019925,0.0000019959, -0.0000019995,0.0000020030,0.0000020064,0.0000020094,0.0000020116, -0.0000020129,0.0000020136,0.0000020145,0.0000020163,0.0000020193, -0.0000020231,0.0000020269,0.0000020301,0.0000020317,0.0000020309, -0.0000020282,0.0000020236,0.0000020180,0.0000020132,0.0000020108, -0.0000020101,0.0000020101,0.0000020100,0.0000020087,0.0000020065, -0.0000020066,0.0000020117,0.0000020171,0.0000020171,0.0000020191, -0.0000020287,0.0000020367,0.0000020354,0.0000020306,0.0000020288, -0.0000020296,0.0000020284,0.0000020228,0.0000020159,0.0000020120, -0.0000020089,0.0000020027,0.0000019981,0.0000019993,0.0000020060, -0.0000020195,0.0000020366,0.0000020458,0.0000020458,0.0000020423, -0.0000020347,0.0000020230,0.0000020141,0.0000020129,0.0000020186, -0.0000020280,0.0000020405,0.0000020557,0.0000020692,0.0000020765, -0.0000020779,0.0000020772,0.0000020765,0.0000020767,0.0000020771, -0.0000020769,0.0000020757,0.0000020737,0.0000020716,0.0000020700, -0.0000020688,0.0000020683,0.0000020683,0.0000020685,0.0000020691, -0.0000020703,0.0000020720,0.0000020743,0.0000020771,0.0000020806, -0.0000020842,0.0000020875,0.0000020901,0.0000020920,0.0000020934, -0.0000020940,0.0000020941,0.0000020938,0.0000020936,0.0000020936, -0.0000020937,0.0000020941,0.0000020947,0.0000020951,0.0000020949, -0.0000020940,0.0000020923,0.0000020902,0.0000020878,0.0000020855, -0.0000020833,0.0000020811,0.0000020790,0.0000020767,0.0000020743, -0.0000020723,0.0000020709,0.0000020699,0.0000020691,0.0000020686, -0.0000020686,0.0000020689,0.0000020694,0.0000020698,0.0000020703, -0.0000020707,0.0000020710,0.0000020710,0.0000020710,0.0000020713, -0.0000020721,0.0000020732,0.0000020742,0.0000020748,0.0000020749, -0.0000020749,0.0000020747,0.0000020741,0.0000020729,0.0000020714, -0.0000020695,0.0000020672,0.0000020647,0.0000020624,0.0000020605, -0.0000020588,0.0000020570,0.0000020547,0.0000020521,0.0000020493, -0.0000020468,0.0000020446,0.0000020425,0.0000020400,0.0000020368, -0.0000020332,0.0000020296,0.0000020260,0.0000020225,0.0000020193, -0.0000020162,0.0000020131,0.0000020101,0.0000020069,0.0000020039, -0.0000020015,0.0000019996,0.0000019979,0.0000019963,0.0000019947, -0.0000019932,0.0000019918,0.0000019907,0.0000019900,0.0000019898, -0.0000019901,0.0000019907,0.0000019918,0.0000019934,0.0000019953, -0.0000019975,0.0000020002,0.0000020032,0.0000020063,0.0000020093, -0.0000020122,0.0000020154,0.0000020188,0.0000020223,0.0000020257, -0.0000020287,0.0000020317,0.0000020345,0.0000020375,0.0000020408, -0.0000020441,0.0000020472,0.0000020498,0.0000020520,0.0000020537, -0.0000020551,0.0000020559,0.0000020564,0.0000020569,0.0000020576, -0.0000020581,0.0000020584,0.0000020586,0.0000020587,0.0000020586, -0.0000020582,0.0000020578,0.0000020570,0.0000020563,0.0000020557, -0.0000020549,0.0000020546,0.0000020546,0.0000020546,0.0000020549, -0.0000020553,0.0000020554,0.0000020552,0.0000020550,0.0000020548, -0.0000020545,0.0000020543,0.0000020544,0.0000020550,0.0000020559, -0.0000020568,0.0000020577,0.0000020583,0.0000020586,0.0000020586, -0.0000020586,0.0000020583,0.0000020575,0.0000020563,0.0000020546, -0.0000020522,0.0000020496,0.0000020471,0.0000020446,0.0000020420, -0.0000020391,0.0000020363,0.0000020339,0.0000020325,0.0000020317, -0.0000020313,0.0000020313,0.0000020323,0.0000020344,0.0000020372, -0.0000020406,0.0000020441,0.0000020473,0.0000020499,0.0000020517, -0.0000020535,0.0000020561,0.0000020589,0.0000020613,0.0000020628, -0.0000020636,0.0000020639,0.0000020634,0.0000020627,0.0000020619, -0.0000020610,0.0000020606,0.0000020609,0.0000020619,0.0000020636, -0.0000020652,0.0000020669,0.0000020684,0.0000020696,0.0000020700, -0.0000020698,0.0000020689,0.0000020673,0.0000020646,0.0000020619, -0.0000020592,0.0000020562,0.0000020527,0.0000020491,0.0000020457, -0.0000020426,0.0000020399,0.0000020377,0.0000020358,0.0000020343, -0.0000020334,0.0000020331,0.0000020333,0.0000020338,0.0000020348, -0.0000020363,0.0000020382,0.0000020400,0.0000020415,0.0000020431, -0.0000020454,0.0000020484,0.0000020517,0.0000020552,0.0000020587, -0.0000020619,0.0000020639,0.0000020636,0.0000020624,0.0000020601, -0.0000020578,0.0000020561,0.0000020553,0.0000020554,0.0000020559, -0.0000020567,0.0000020586,0.0000020623,0.0000020675,0.0000020711, -0.0000020725,0.0000020702,0.0000020642,0.0000020570,0.0000020510, -0.0000020470,0.0000020439,0.0000020405,0.0000020360,0.0000020310, -0.0000020275,0.0000020255,0.0000020252,0.0000020252,0.0000020251, -0.0000020251,0.0000020254,0.0000020263,0.0000020281,0.0000020309, -0.0000020348,0.0000020398,0.0000020452,0.0000020500,0.0000020544, -0.0000020584,0.0000020624,0.0000020662,0.0000020696,0.0000020723, -0.0000020741,0.0000020750,0.0000020747,0.0000020728,0.0000020698, -0.0000020660,0.0000020621,0.0000020582,0.0000020549,0.0000020528, -0.0000020522,0.0000020531,0.0000020554,0.0000020582,0.0000020606, -0.0000020624,0.0000020637,0.0000020648,0.0000020657,0.0000020663, -0.0000020668,0.0000020668,0.0000020663,0.0000020649,0.0000020627, -0.0000020600,0.0000020572,0.0000020545,0.0000020523,0.0000020506, -0.0000020495,0.0000020490,0.0000020490,0.0000020494,0.0000020502, -0.0000020517,0.0000020531,0.0000020538,0.0000020538,0.0000020536, -0.0000020527,0.0000020513,0.0000020492,0.0000020465,0.0000020436, -0.0000020407,0.0000020379,0.0000020350,0.0000020324,0.0000020297, -0.0000020280,0.0000020271,0.0000020265,0.0000020263,0.0000020264, -0.0000020259,0.0000020245,0.0000020222,0.0000020191,0.0000020156, -0.0000020118,0.0000020081,0.0000020045,0.0000020011,0.0000019981, -0.0000019955,0.0000019940,0.0000019935,0.0000019927,0.0000019923, -0.0000019928,0.0000019934,0.0000019937,0.0000019938,0.0000019939, -0.0000019938,0.0000019936,0.0000019928,0.0000019915,0.0000019902, -0.0000019895,0.0000019890,0.0000019890,0.0000019895,0.0000019901, -0.0000019907,0.0000019910,0.0000019909,0.0000019906,0.0000019905, -0.0000019903,0.0000019892,0.0000019872,0.0000019839,0.0000019795, -0.0000019748,0.0000019703,0.0000019663,0.0000019633,0.0000019615, -0.0000019615,0.0000019626,0.0000019643,0.0000019662,0.0000019675, -0.0000019678,0.0000019670,0.0000019660,0.0000019648,0.0000019633, -0.0000019616,0.0000019601,0.0000019593,0.0000019598,0.0000019617, -0.0000019649,0.0000019690,0.0000019740,0.0000019799,0.0000019860, -0.0000019915,0.0000019958,0.0000019988,0.0000020003,0.0000020003, -0.0000019993,0.0000019969,0.0000019934,0.0000019893,0.0000019856, -0.0000019827,0.0000019812,0.0000019817,0.0000019838,0.0000019861, -0.0000019881,0.0000019892,0.0000019891,0.0000019881,0.0000019863, -0.0000019841,0.0000019820,0.0000019804,0.0000019794,0.0000019788, -0.0000019786,0.0000019787,0.0000019791,0.0000019798,0.0000019812, -0.0000019833,0.0000019858,0.0000019887,0.0000019917,0.0000019943, -0.0000019962,0.0000019975,0.0000019982,0.0000019975,0.0000019982, -0.0000019977,0.0000019973,0.0000019964,0.0000019955,0.0000019945, -0.0000019937,0.0000019931,0.0000019923,0.0000019926,0.0000019931, -0.0000019941,0.0000019961,0.0000019978,0.0000019982,0.0000019967, -0.0000019927,0.0000019863,0.0000019786,0.0000019712,0.0000019652, -0.0000019617,0.0000019598,0.0000019603,0.0000019622,0.0000019646, -0.0000019656,0.0000019662,0.0000019648,0.0000019618,0.0000019585, -0.0000019557,0.0000019537,0.0000019521,0.0000019515,0.0000019513, -0.0000019515,0.0000019525,0.0000019537,0.0000019554,0.0000019580, -0.0000019613,0.0000019652,0.0000019697,0.0000019744,0.0000019790, -0.0000019832,0.0000019873,0.0000019921,0.0000019977,0.0000020034, -0.0000020083,0.0000020115,0.0000020129,0.0000020127,0.0000020125, -0.0000020128,0.0000020135,0.0000020146,0.0000020162,0.0000020183, -0.0000020206,0.0000020229,0.0000020255,0.0000020283,0.0000020306, -0.0000020321,0.0000020324,0.0000020318,0.0000020296,0.0000020257, -0.0000020208,0.0000020155,0.0000020100,0.0000020048,0.0000020008, -0.0000019979,0.0000019950,0.0000019913,0.0000019865,0.0000019810, -0.0000019756,0.0000019710,0.0000019677,0.0000019656,0.0000019642, -0.0000019629,0.0000019622,0.0000019624,0.0000019632,0.0000019640, -0.0000019650,0.0000019663,0.0000019673,0.0000019679,0.0000019688, -0.0000019702,0.0000019718,0.0000019732,0.0000019740,0.0000019741, -0.0000019736,0.0000019728,0.0000019718,0.0000019707,0.0000019695, -0.0000019685,0.0000019682,0.0000019685,0.0000019692,0.0000019703, -0.0000019712,0.0000019719,0.0000019723,0.0000019723,0.0000019725, -0.0000019729,0.0000019730,0.0000019726,0.0000019715,0.0000019704, -0.0000019690,0.0000019665,0.0000019627,0.0000019578,0.0000019521, -0.0000019459,0.0000019397,0.0000019337,0.0000019272,0.0000019203, -0.0000019137,0.0000019075,0.0000019012,0.0000018950,0.0000018899, -0.0000018860,0.0000018834,0.0000018821,0.0000018822,0.0000018836, -0.0000018847,0.0000018845,0.0000018825,0.0000018804,0.0000018793, -0.0000018796,0.0000018814,0.0000018835,0.0000018850,0.0000018858, -0.0000018867,0.0000018890,0.0000018919,0.0000018946,0.0000018966, -0.0000018973,0.0000018967,0.0000018955,0.0000018951,0.0000018955, -0.0000018969,0.0000018992,0.0000019017,0.0000019034,0.0000019040, -0.0000019032,0.0000019009,0.0000018974,0.0000018936,0.0000018893, -0.0000018840,0.0000018786,0.0000018745,0.0000018727,0.0000018728, -0.0000018737,0.0000018752,0.0000018775,0.0000018796,0.0000018811, -0.0000018819,0.0000018822,0.0000018821,0.0000018820,0.0000018816, -0.0000018810,0.0000018804,0.0000018803,0.0000018810,0.0000018815, -0.0000018821,0.0000018827,0.0000018835,0.0000018851,0.0000018874, -0.0000018904,0.0000018944,0.0000018995,0.0000019056,0.0000019127, -0.0000019210,0.0000019301,0.0000019392,0.0000019478,0.0000019553, -0.0000019613,0.0000019650,0.0000019680,0.0000019698,0.0000019711, -0.0000019730,0.0000019759,0.0000019797,0.0000019839,0.0000019881, -0.0000019913,0.0000019945,0.0000019950,0.0000019954,0.0000019941, -0.0000019897,0.0000019835,0.0000019754,0.0000019662,0.0000019571, -0.0000019489,0.0000019427,0.0000019388,0.0000019364,0.0000019346, -0.0000019323,0.0000019284,0.0000019224,0.0000019156,0.0000019093, -0.0000019043,0.0000019014,0.0000019003,0.0000019004,0.0000019000, -0.0000019004,0.0000019015,0.0000019029,0.0000019045,0.0000019066, -0.0000019091,0.0000019115,0.0000019130,0.0000019140,0.0000019152, -0.0000019165,0.0000019172,0.0000019166,0.0000019138,0.0000019093, -0.0000019043,0.0000018979,0.0000018893,0.0000018803,0.0000018736, -0.0000018705,0.0000018728,0.0000018803,0.0000018905,0.0000018992, -0.0000019041,0.0000019058,0.0000019070,0.0000019083,0.0000019085, -0.0000019075,0.0000019047,0.0000019005,0.0000018958,0.0000018908, -0.0000018833,0.0000018707,0.0000018557,0.0000018445,0.0000018401, -0.0000018413,0.0000018458,0.0000018506,0.0000018532,0.0000018540, -0.0000018545,0.0000018546,0.0000018540,0.0000018526,0.0000018508, -0.0000018488,0.0000018467,0.0000018446,0.0000018430,0.0000018421, -0.0000018415,0.0000018405,0.0000018391,0.0000018376,0.0000018358, -0.0000018336,0.0000018314,0.0000018291,0.0000018267,0.0000018245, -0.0000018223,0.0000018200,0.0000018179,0.0000018154,0.0000018114, -0.0000018094,0.0000018106,0.0000018146,0.0000018185,0.0000018226, -0.0000018273,0.0000018324,0.0000018349,0.0000018331,0.0000018291, -0.0000018265,0.0000018260,0.0000018268,0.0000018285,0.0000018306, -0.0000018326,0.0000018342,0.0000018356,0.0000018363,0.0000018370, -0.0000018377,0.0000018382,0.0000018382,0.0000018379,0.0000018372, -0.0000018360,0.0000018344,0.0000018321,0.0000018290,0.0000018248, -0.0000018201,0.0000018152,0.0000018103,0.0000018056,0.0000018009, -0.0000017966,0.0000017921,0.0000017876,0.0000017831,0.0000017790, -0.0000017760,0.0000017740,0.0000017732,0.0000017732,0.0000017739, -0.0000017753,0.0000017761,0.0000017765,0.0000017764,0.0000017765, -0.0000017770,0.0000017780,0.0000017793,0.0000017809,0.0000017824, -0.0000017837,0.0000017855,0.0000017886,0.0000017929,0.0000017969, -0.0000017996,0.0000018004,0.0000018000,0.0000017982,0.0000017951, -0.0000017918,0.0000017895,0.0000017882,0.0000017866,0.0000017803, -0.0000017695,0.0000017627,0.0000017632,0.0000017737,0.0000017877, -0.0000017947,0.0000017964,0.0000017984,0.0000018040,0.0000018156, -0.0000018297,0.0000018384,0.0000018402,0.0000018404,0.0000018393, -0.0000018376,0.0000018388,0.0000018447,0.0000018486,0.0000018507, -0.0000018560,0.0000018641,0.0000018720,0.0000018775,0.0000018801, -0.0000018800,0.0000018779,0.0000018766,0.0000018782,0.0000018834, -0.0000018891,0.0000018933,0.0000018968,0.0000018980,0.0000018964, -0.0000018913,0.0000018877,0.0000018865,0.0000018865,0.0000018869, -0.0000018883,0.0000018894,0.0000018897,0.0000018890,0.0000018882, -0.0000018886,0.0000018904,0.0000018927,0.0000018944,0.0000018939, -0.0000018903,0.0000018854,0.0000018812,0.0000018769,0.0000018740, -0.0000018749,0.0000018786,0.0000018814,0.0000018852,0.0000018885, -0.0000018908,0.0000019000,0.0000019065,0.0000019008,0.0000018979, -0.0000019080,0.0000019087,0.0000018884,0.0000018690,0.0000018626, -0.0000018622,0.0000018628,0.0000018638,0.0000018645,0.0000018646, -0.0000018640,0.0000018632,0.0000018621,0.0000018619,0.0000018627, -0.0000018630,0.0000018617,0.0000018599,0.0000018580,0.0000018537, -0.0000018503,0.0000018505,0.0000018492,0.0000018403,0.0000018283, -0.0000018220,0.0000018203,0.0000018203,0.0000018205,0.0000018209, -0.0000018204,0.0000018200,0.0000018189,0.0000018174,0.0000018157, -0.0000018144,0.0000018139,0.0000018138,0.0000018137,0.0000018134, -0.0000018131,0.0000018127,0.0000018125,0.0000018125,0.0000018125, -0.0000018120,0.0000018106,0.0000018085,0.0000018061,0.0000018037, -0.0000018013,0.0000017991,0.0000017968,0.0000017969,0.0000017955, -0.0000017947,0.0000017950,0.0000017957,0.0000017963,0.0000017963, -0.0000017953,0.0000017941,0.0000017930,0.0000017927,0.0000017922, -0.0000017931,0.0000017966,0.0000018041,0.0000018150,0.0000018284, -0.0000018424,0.0000018551,0.0000018656,0.0000018732,0.0000018781, -0.0000018805,0.0000018808,0.0000018794,0.0000018770,0.0000018745, -0.0000018723,0.0000018708,0.0000018698,0.0000018687,0.0000018670, -0.0000018643,0.0000018606,0.0000018558,0.0000018505,0.0000018450, -0.0000018400,0.0000018361,0.0000018330,0.0000018310,0.0000018304, -0.0000018307,0.0000018312,0.0000018320,0.0000018330,0.0000018340, -0.0000018350,0.0000018359,0.0000018366,0.0000018373,0.0000018379, -0.0000018385,0.0000018390,0.0000018393,0.0000018395,0.0000018395, -0.0000018391,0.0000018384,0.0000018374,0.0000018364,0.0000018352, -0.0000018341,0.0000018332,0.0000018326,0.0000018320,0.0000018314, -0.0000018305,0.0000018296,0.0000018286,0.0000018275,0.0000018265, -0.0000018253,0.0000018240,0.0000018224,0.0000018206,0.0000018189, -0.0000018173,0.0000018161,0.0000018153,0.0000018154,0.0000018162, -0.0000018172,0.0000018183,0.0000018198,0.0000018217,0.0000018237, -0.0000018260,0.0000018286,0.0000018311,0.0000018335,0.0000018357, -0.0000018375,0.0000018390,0.0000018402,0.0000018409,0.0000018413, -0.0000018415,0.0000018415,0.0000018417,0.0000018423,0.0000018436, -0.0000018451,0.0000018470,0.0000018492,0.0000018515,0.0000018535, -0.0000018551,0.0000018459,0.0000018475,0.0000018487,0.0000018495, -0.0000018501,0.0000018506,0.0000018509,0.0000018511,0.0000018513, -0.0000018519,0.0000018529,0.0000018545,0.0000018554,0.0000018558, -0.0000018554,0.0000018540,0.0000018523,0.0000018505,0.0000018493, -0.0000018486,0.0000018481,0.0000018473,0.0000018459,0.0000018436, -0.0000018398,0.0000018347,0.0000018291,0.0000018238,0.0000018194, -0.0000018155,0.0000018119,0.0000018085,0.0000018052,0.0000018029, -0.0000018009,0.0000018012,0.0000018032,0.0000018071,0.0000018123, -0.0000018192,0.0000018275,0.0000018365,0.0000018449,0.0000018517, -0.0000018563,0.0000018586,0.0000018590,0.0000018583,0.0000018576, -0.0000018570,0.0000018564,0.0000018556,0.0000018550,0.0000018548, -0.0000018551,0.0000018561,0.0000018579,0.0000018606,0.0000018638, -0.0000018664,0.0000018677,0.0000018670,0.0000018657,0.0000018644, -0.0000018632,0.0000018632,0.0000018650,0.0000018682,0.0000018722, -0.0000018763,0.0000018800,0.0000018832,0.0000018861,0.0000018886, -0.0000018907,0.0000018924,0.0000018943,0.0000018964,0.0000018986, -0.0000019012,0.0000019039,0.0000019066,0.0000019088,0.0000019102, -0.0000019108,0.0000019113,0.0000019114,0.0000019113,0.0000019110, -0.0000019108,0.0000019103,0.0000019092,0.0000019072,0.0000019045, -0.0000019015,0.0000018984,0.0000018953,0.0000018926,0.0000018901, -0.0000018878,0.0000018857,0.0000018837,0.0000018818,0.0000018798, -0.0000018776,0.0000018753,0.0000018734,0.0000018722,0.0000018718, -0.0000018715,0.0000018712,0.0000018701,0.0000018682,0.0000018662, -0.0000018649,0.0000018645,0.0000018647,0.0000018650,0.0000018648, -0.0000018640,0.0000018626,0.0000018608,0.0000018586,0.0000018562, -0.0000018539,0.0000018518,0.0000018500,0.0000018482,0.0000018463, -0.0000018443,0.0000018424,0.0000018406,0.0000018390,0.0000018376, -0.0000018367,0.0000018362,0.0000018358,0.0000018351,0.0000018342, -0.0000018328,0.0000018311,0.0000018293,0.0000018275,0.0000018257, -0.0000018242,0.0000018229,0.0000018220,0.0000018216,0.0000018215, -0.0000018216,0.0000018223,0.0000018239,0.0000018261,0.0000018287, -0.0000018312,0.0000018333,0.0000018349,0.0000018365,0.0000018381, -0.0000018395,0.0000018405,0.0000018415,0.0000018422,0.0000018429, -0.0000018431,0.0000018431,0.0000018427,0.0000018419,0.0000018411, -0.0000018399,0.0000018385,0.0000018368,0.0000018349,0.0000018331, -0.0000018318,0.0000018313,0.0000018316,0.0000018327,0.0000018347, -0.0000018373,0.0000018402,0.0000018433,0.0000018467,0.0000018508, -0.0000018556,0.0000018604,0.0000018644,0.0000018677,0.0000018702, -0.0000018711,0.0000018706,0.0000018700,0.0000018698,0.0000018688, -0.0000018676,0.0000018661,0.0000018639,0.0000018609,0.0000018569, -0.0000018519,0.0000018463,0.0000018404,0.0000018340,0.0000018274, -0.0000018208,0.0000018149,0.0000018105,0.0000018080,0.0000018067, -0.0000018071,0.0000018088,0.0000018119,0.0000018155,0.0000018188, -0.0000018217,0.0000018242,0.0000018263,0.0000018281,0.0000018307, -0.0000018358,0.0000018443,0.0000018560,0.0000018695,0.0000018825, -0.0000018930,0.0000019002,0.0000019048,0.0000019082,0.0000019123, -0.0000019185,0.0000019268,0.0000019361,0.0000019451,0.0000019527, -0.0000019587,0.0000019629,0.0000019659,0.0000019682,0.0000019703, -0.0000019725,0.0000019750,0.0000019776,0.0000019802,0.0000019826, -0.0000019847,0.0000019863,0.0000019874,0.0000019879,0.0000019878, -0.0000019874,0.0000019864,0.0000019852,0.0000019837,0.0000019823, -0.0000019811,0.0000019800,0.0000019788,0.0000019778,0.0000019772, -0.0000019774,0.0000019782,0.0000019795,0.0000019805,0.0000019813, -0.0000019817,0.0000019814,0.0000019805,0.0000019790,0.0000019772, -0.0000019753,0.0000019731,0.0000019707,0.0000019684,0.0000019664, -0.0000019650,0.0000019645,0.0000019648,0.0000019655,0.0000019661, -0.0000019669,0.0000019681,0.0000019697,0.0000019719,0.0000019752, -0.0000019795,0.0000019844,0.0000019897,0.0000019952,0.0000020007, -0.0000020054,0.0000020091,0.0000020115,0.0000020129,0.0000020140, -0.0000020156,0.0000020183,0.0000020218,0.0000020254,0.0000020281, -0.0000020290,0.0000020275,0.0000020239,0.0000020186,0.0000020134, -0.0000020101,0.0000020093,0.0000020092,0.0000020085,0.0000020065, -0.0000020042,0.0000020055,0.0000020118,0.0000020157,0.0000020152, -0.0000020193,0.0000020303,0.0000020363,0.0000020348,0.0000020305, -0.0000020295,0.0000020300,0.0000020279,0.0000020211,0.0000020145, -0.0000020113,0.0000020074,0.0000020010,0.0000019986,0.0000020016, -0.0000020093,0.0000020234,0.0000020387,0.0000020450,0.0000020437, -0.0000020391,0.0000020304,0.0000020193,0.0000020122,0.0000020116, -0.0000020168,0.0000020246,0.0000020343,0.0000020471,0.0000020604, -0.0000020702,0.0000020746,0.0000020748,0.0000020734,0.0000020721, -0.0000020714,0.0000020710,0.0000020704,0.0000020694,0.0000020680, -0.0000020664,0.0000020646,0.0000020629,0.0000020614,0.0000020603, -0.0000020597,0.0000020592,0.0000020590,0.0000020593,0.0000020604, -0.0000020625,0.0000020656,0.0000020693,0.0000020734,0.0000020776, -0.0000020814,0.0000020844,0.0000020866,0.0000020876,0.0000020876, -0.0000020868,0.0000020856,0.0000020846,0.0000020838,0.0000020831, -0.0000020823,0.0000020813,0.0000020800,0.0000020785,0.0000020770, -0.0000020752,0.0000020733,0.0000020712,0.0000020690,0.0000020666, -0.0000020645,0.0000020630,0.0000020619,0.0000020611,0.0000020608, -0.0000020607,0.0000020610,0.0000020613,0.0000020616,0.0000020619, -0.0000020620,0.0000020619,0.0000020616,0.0000020615,0.0000020616, -0.0000020622,0.0000020629,0.0000020635,0.0000020639,0.0000020640, -0.0000020639,0.0000020634,0.0000020625,0.0000020611,0.0000020591, -0.0000020565,0.0000020536,0.0000020505,0.0000020479,0.0000020460, -0.0000020444,0.0000020427,0.0000020407,0.0000020386,0.0000020365, -0.0000020348,0.0000020335,0.0000020320,0.0000020299,0.0000020272, -0.0000020243,0.0000020215,0.0000020188,0.0000020157,0.0000020122, -0.0000020085,0.0000020047,0.0000020013,0.0000019979,0.0000019947, -0.0000019920,0.0000019899,0.0000019880,0.0000019858,0.0000019834, -0.0000019810,0.0000019787,0.0000019766,0.0000019750,0.0000019739, -0.0000019733,0.0000019731,0.0000019735,0.0000019745,0.0000019761, -0.0000019782,0.0000019805,0.0000019829,0.0000019851,0.0000019870, -0.0000019888,0.0000019906,0.0000019928,0.0000019952,0.0000019977, -0.0000020000,0.0000020025,0.0000020053,0.0000020086,0.0000020126, -0.0000020171,0.0000020216,0.0000020261,0.0000020303,0.0000020343, -0.0000020380,0.0000020412,0.0000020440,0.0000020467,0.0000020492, -0.0000020515,0.0000020533,0.0000020546,0.0000020556,0.0000020561, -0.0000020565,0.0000020562,0.0000020552,0.0000020549,0.0000020534, -0.0000020516,0.0000020506,0.0000020495,0.0000020487,0.0000020484, -0.0000020476,0.0000020470,0.0000020463,0.0000020459,0.0000020454, -0.0000020449,0.0000020448,0.0000020451,0.0000020460,0.0000020469, -0.0000020477,0.0000020484,0.0000020489,0.0000020491,0.0000020490, -0.0000020492,0.0000020496,0.0000020496,0.0000020493,0.0000020488, -0.0000020479,0.0000020468,0.0000020454,0.0000020434,0.0000020411, -0.0000020384,0.0000020355,0.0000020329,0.0000020310,0.0000020297, -0.0000020283,0.0000020273,0.0000020268,0.0000020274,0.0000020291, -0.0000020318,0.0000020358,0.0000020409,0.0000020457,0.0000020493, -0.0000020523,0.0000020553,0.0000020582,0.0000020607,0.0000020624, -0.0000020635,0.0000020638,0.0000020633,0.0000020623,0.0000020615, -0.0000020602,0.0000020591,0.0000020588,0.0000020589,0.0000020597, -0.0000020610,0.0000020624,0.0000020640,0.0000020658,0.0000020670, -0.0000020675,0.0000020676,0.0000020668,0.0000020652,0.0000020632, -0.0000020614,0.0000020593,0.0000020569,0.0000020541,0.0000020512, -0.0000020485,0.0000020459,0.0000020436,0.0000020419,0.0000020405, -0.0000020393,0.0000020383,0.0000020379,0.0000020379,0.0000020384, -0.0000020395,0.0000020410,0.0000020421,0.0000020424,0.0000020427, -0.0000020427,0.0000020432,0.0000020443,0.0000020457,0.0000020474, -0.0000020494,0.0000020517,0.0000020540,0.0000020557,0.0000020565, -0.0000020564,0.0000020553,0.0000020541,0.0000020530,0.0000020528, -0.0000020532,0.0000020544,0.0000020567,0.0000020600,0.0000020648, -0.0000020700,0.0000020728,0.0000020722,0.0000020676,0.0000020604, -0.0000020531,0.0000020471,0.0000020428,0.0000020390,0.0000020348, -0.0000020301,0.0000020261,0.0000020240,0.0000020225,0.0000020220, -0.0000020216,0.0000020214,0.0000020217,0.0000020230,0.0000020251, -0.0000020280,0.0000020322,0.0000020369,0.0000020416,0.0000020463, -0.0000020510,0.0000020559,0.0000020604,0.0000020644,0.0000020677, -0.0000020702,0.0000020716,0.0000020717,0.0000020705,0.0000020682, -0.0000020654,0.0000020622,0.0000020590,0.0000020556,0.0000020525, -0.0000020506,0.0000020493,0.0000020496,0.0000020510,0.0000020526, -0.0000020539,0.0000020553,0.0000020567,0.0000020580,0.0000020592, -0.0000020603,0.0000020611,0.0000020613,0.0000020608,0.0000020596, -0.0000020576,0.0000020550,0.0000020522,0.0000020495,0.0000020468, -0.0000020449,0.0000020436,0.0000020428,0.0000020426,0.0000020435, -0.0000020455,0.0000020476,0.0000020489,0.0000020495,0.0000020494, -0.0000020489,0.0000020478,0.0000020459,0.0000020435,0.0000020412, -0.0000020395,0.0000020379,0.0000020364,0.0000020347,0.0000020332, -0.0000020320,0.0000020310,0.0000020305,0.0000020304,0.0000020301, -0.0000020293,0.0000020276,0.0000020252,0.0000020222,0.0000020188, -0.0000020151,0.0000020115,0.0000020079,0.0000020044,0.0000020009, -0.0000019981,0.0000019960,0.0000019941,0.0000019924,0.0000019912, -0.0000019902,0.0000019892,0.0000019882,0.0000019874,0.0000019868, -0.0000019863,0.0000019857,0.0000019847,0.0000019837,0.0000019829, -0.0000019825,0.0000019826,0.0000019834,0.0000019845,0.0000019859, -0.0000019871,0.0000019877,0.0000019879,0.0000019878,0.0000019877, -0.0000019875,0.0000019867,0.0000019846,0.0000019817,0.0000019774, -0.0000019726,0.0000019675,0.0000019628,0.0000019589,0.0000019563, -0.0000019555,0.0000019560,0.0000019578,0.0000019598,0.0000019610, -0.0000019611,0.0000019610,0.0000019610,0.0000019606,0.0000019597, -0.0000019586,0.0000019579,0.0000019577,0.0000019585,0.0000019602, -0.0000019624,0.0000019654,0.0000019692,0.0000019739,0.0000019789, -0.0000019839,0.0000019883,0.0000019913,0.0000019929,0.0000019930, -0.0000019918,0.0000019891,0.0000019851,0.0000019805,0.0000019763, -0.0000019732,0.0000019718,0.0000019724,0.0000019741,0.0000019766, -0.0000019789,0.0000019805,0.0000019814,0.0000019822,0.0000019822, -0.0000019812,0.0000019799,0.0000019784,0.0000019772,0.0000019764, -0.0000019759,0.0000019753,0.0000019745,0.0000019733,0.0000019725, -0.0000019726,0.0000019735,0.0000019757,0.0000019789,0.0000019824, -0.0000019858,0.0000019890,0.0000019918,0.0000019943,0.0000019968, -0.0000019993,0.0000020000,0.0000020012,0.0000020014,0.0000020010, -0.0000020000,0.0000019982,0.0000019964,0.0000019948,0.0000019940, -0.0000019947,0.0000019958,0.0000019966,0.0000019974,0.0000019970, -0.0000019948,0.0000019906,0.0000019844,0.0000019767,0.0000019691, -0.0000019625,0.0000019590,0.0000019568,0.0000019578,0.0000019609, -0.0000019643,0.0000019660,0.0000019666,0.0000019654,0.0000019631, -0.0000019604,0.0000019574,0.0000019545,0.0000019515,0.0000019501, -0.0000019488,0.0000019489,0.0000019499,0.0000019520,0.0000019548, -0.0000019583,0.0000019624,0.0000019672,0.0000019722,0.0000019769, -0.0000019812,0.0000019850,0.0000019890,0.0000019938,0.0000019994, -0.0000020048,0.0000020089,0.0000020114,0.0000020127,0.0000020130, -0.0000020132,0.0000020136,0.0000020147,0.0000020163,0.0000020175, -0.0000020187,0.0000020205,0.0000020224,0.0000020241,0.0000020253, -0.0000020257,0.0000020252,0.0000020232,0.0000020197,0.0000020152, -0.0000020104,0.0000020055,0.0000020012,0.0000019979,0.0000019956, -0.0000019932,0.0000019900,0.0000019857,0.0000019807,0.0000019757, -0.0000019714,0.0000019683,0.0000019660,0.0000019642,0.0000019627, -0.0000019619,0.0000019619,0.0000019626,0.0000019638,0.0000019649, -0.0000019658,0.0000019663,0.0000019666,0.0000019673,0.0000019691, -0.0000019714,0.0000019739,0.0000019762,0.0000019785,0.0000019799, -0.0000019805,0.0000019805,0.0000019798,0.0000019783,0.0000019767, -0.0000019753,0.0000019743,0.0000019735,0.0000019730,0.0000019727, -0.0000019723,0.0000019718,0.0000019715,0.0000019712,0.0000019708, -0.0000019703,0.0000019698,0.0000019691,0.0000019684,0.0000019674, -0.0000019650,0.0000019613,0.0000019564,0.0000019505,0.0000019445, -0.0000019389,0.0000019332,0.0000019276,0.0000019220,0.0000019155, -0.0000019092,0.0000019033,0.0000018973,0.0000018917,0.0000018868, -0.0000018828,0.0000018794,0.0000018773,0.0000018773,0.0000018789, -0.0000018807,0.0000018810,0.0000018801,0.0000018791,0.0000018784, -0.0000018787,0.0000018802,0.0000018823,0.0000018838,0.0000018846, -0.0000018862,0.0000018890,0.0000018924,0.0000018953,0.0000018962, -0.0000018954,0.0000018937,0.0000018924,0.0000018922,0.0000018933, -0.0000018957,0.0000018981,0.0000019002,0.0000019017,0.0000019021, -0.0000019007,0.0000018986,0.0000018957,0.0000018921,0.0000018875, -0.0000018825,0.0000018780,0.0000018751,0.0000018738,0.0000018737, -0.0000018744,0.0000018762,0.0000018783,0.0000018797,0.0000018801, -0.0000018797,0.0000018792,0.0000018788,0.0000018784,0.0000018775, -0.0000018769,0.0000018770,0.0000018774,0.0000018782,0.0000018788, -0.0000018796,0.0000018808,0.0000018823,0.0000018837,0.0000018852, -0.0000018870,0.0000018895,0.0000018928,0.0000018972,0.0000019030, -0.0000019100,0.0000019179,0.0000019270,0.0000019365,0.0000019454, -0.0000019535,0.0000019601,0.0000019647,0.0000019678,0.0000019701, -0.0000019721,0.0000019745,0.0000019778,0.0000019817,0.0000019860, -0.0000019901,0.0000019934,0.0000019965,0.0000019966,0.0000019948, -0.0000019913,0.0000019849,0.0000019757,0.0000019650,0.0000019543, -0.0000019449,0.0000019381,0.0000019344,0.0000019319,0.0000019300, -0.0000019273,0.0000019234,0.0000019185,0.0000019131,0.0000019081, -0.0000019045,0.0000019023,0.0000019007,0.0000018999,0.0000018999, -0.0000019008,0.0000019019,0.0000019033,0.0000019055,0.0000019081, -0.0000019106,0.0000019124,0.0000019135,0.0000019145,0.0000019156, -0.0000019164,0.0000019158,0.0000019131,0.0000019090,0.0000019041, -0.0000018980,0.0000018899,0.0000018807,0.0000018727,0.0000018694, -0.0000018705,0.0000018772,0.0000018870,0.0000018963,0.0000019022, -0.0000019046,0.0000019057,0.0000019068,0.0000019075,0.0000019071, -0.0000019048,0.0000019007,0.0000018961,0.0000018915,0.0000018851, -0.0000018740,0.0000018597,0.0000018477,0.0000018420,0.0000018428, -0.0000018473,0.0000018516,0.0000018534,0.0000018535,0.0000018539, -0.0000018542,0.0000018542,0.0000018528,0.0000018509,0.0000018489, -0.0000018465,0.0000018440,0.0000018424,0.0000018415,0.0000018404, -0.0000018388,0.0000018370,0.0000018348,0.0000018319,0.0000018291, -0.0000018264,0.0000018238,0.0000018213,0.0000018193,0.0000018175, -0.0000018159,0.0000018135,0.0000018103,0.0000018092,0.0000018110, -0.0000018148,0.0000018186,0.0000018230,0.0000018275,0.0000018325, -0.0000018330,0.0000018261,0.0000018189,0.0000018147,0.0000018131, -0.0000018125,0.0000018127,0.0000018140,0.0000018155,0.0000018170, -0.0000018184,0.0000018198,0.0000018212,0.0000018225,0.0000018232, -0.0000018236,0.0000018235,0.0000018230,0.0000018224,0.0000018216, -0.0000018202,0.0000018179,0.0000018146,0.0000018103,0.0000018057, -0.0000018017,0.0000017982,0.0000017952,0.0000017930,0.0000017907, -0.0000017880,0.0000017851,0.0000017825,0.0000017805,0.0000017791, -0.0000017784,0.0000017778,0.0000017773,0.0000017772,0.0000017771, -0.0000017767,0.0000017765,0.0000017766,0.0000017770,0.0000017778, -0.0000017794,0.0000017815,0.0000017839,0.0000017867,0.0000017901, -0.0000017938,0.0000017972,0.0000017995,0.0000018003,0.0000018001, -0.0000017990,0.0000017968,0.0000017939,0.0000017913,0.0000017897, -0.0000017882,0.0000017837,0.0000017739,0.0000017644,0.0000017621, -0.0000017683,0.0000017820,0.0000017916,0.0000017947,0.0000017968, -0.0000018015,0.0000018117,0.0000018257,0.0000018364,0.0000018394, -0.0000018397,0.0000018389,0.0000018364,0.0000018353,0.0000018388, -0.0000018443,0.0000018472,0.0000018516,0.0000018589,0.0000018674, -0.0000018740,0.0000018779,0.0000018789,0.0000018777,0.0000018754, -0.0000018749,0.0000018771,0.0000018820,0.0000018867,0.0000018906, -0.0000018941,0.0000018955,0.0000018945,0.0000018910,0.0000018891, -0.0000018891,0.0000018895,0.0000018898,0.0000018905,0.0000018910, -0.0000018906,0.0000018902,0.0000018906,0.0000018921,0.0000018941, -0.0000018959,0.0000018957,0.0000018918,0.0000018853,0.0000018803, -0.0000018774,0.0000018741,0.0000018731,0.0000018760,0.0000018793, -0.0000018817,0.0000018854,0.0000018877,0.0000018909,0.0000019012, -0.0000019053,0.0000018975,0.0000018966,0.0000019086,0.0000019108, -0.0000018934,0.0000018755,0.0000018690,0.0000018691,0.0000018702, -0.0000018713,0.0000018716,0.0000018701,0.0000018669,0.0000018636, -0.0000018613,0.0000018604,0.0000018611,0.0000018621,0.0000018616, -0.0000018604,0.0000018567,0.0000018495,0.0000018453,0.0000018471, -0.0000018487,0.0000018439,0.0000018330,0.0000018234,0.0000018197, -0.0000018180,0.0000018177,0.0000018177,0.0000018177,0.0000018174, -0.0000018168,0.0000018157,0.0000018144,0.0000018134,0.0000018126, -0.0000018125,0.0000018126,0.0000018126,0.0000018127,0.0000018130, -0.0000018137,0.0000018149,0.0000018157,0.0000018169,0.0000018174, -0.0000018172,0.0000018165,0.0000018153,0.0000018134,0.0000018105, -0.0000018068,0.0000018031,0.0000017987,0.0000017945,0.0000017934, -0.0000017916,0.0000017914,0.0000017926,0.0000017943,0.0000017950, -0.0000017951,0.0000017942,0.0000017927,0.0000017923,0.0000017914, -0.0000017930,0.0000017979,0.0000018067,0.0000018185,0.0000018319, -0.0000018452,0.0000018566,0.0000018654,0.0000018714,0.0000018748, -0.0000018758,0.0000018748,0.0000018727,0.0000018701,0.0000018678, -0.0000018662,0.0000018651,0.0000018640,0.0000018623,0.0000018595, -0.0000018554,0.0000018504,0.0000018449,0.0000018393,0.0000018339, -0.0000018294,0.0000018254,0.0000018226,0.0000018205,0.0000018193, -0.0000018189,0.0000018191,0.0000018195,0.0000018198,0.0000018199, -0.0000018199,0.0000018199,0.0000018197,0.0000018193,0.0000018188, -0.0000018182,0.0000018177,0.0000018173,0.0000018168,0.0000018162, -0.0000018156,0.0000018151,0.0000018148,0.0000018147,0.0000018149, -0.0000018150,0.0000018149,0.0000018146,0.0000018141,0.0000018135, -0.0000018130,0.0000018125,0.0000018118,0.0000018108,0.0000018095, -0.0000018078,0.0000018060,0.0000018041,0.0000018024,0.0000018011, -0.0000018005,0.0000018010,0.0000018020,0.0000018034,0.0000018050, -0.0000018068,0.0000018086,0.0000018108,0.0000018133,0.0000018157, -0.0000018181,0.0000018207,0.0000018230,0.0000018252,0.0000018270, -0.0000018284,0.0000018295,0.0000018303,0.0000018307,0.0000018308, -0.0000018308,0.0000018312,0.0000018321,0.0000018338,0.0000018361, -0.0000018389,0.0000018416,0.0000018440,0.0000018369,0.0000018388, -0.0000018399,0.0000018404,0.0000018404,0.0000018405,0.0000018409, -0.0000018418,0.0000018432,0.0000018448,0.0000018463,0.0000018479, -0.0000018496,0.0000018515,0.0000018534,0.0000018545,0.0000018544, -0.0000018539,0.0000018525,0.0000018510,0.0000018491,0.0000018470, -0.0000018452,0.0000018434,0.0000018416,0.0000018394,0.0000018360, -0.0000018314,0.0000018262,0.0000018210,0.0000018163,0.0000018122, -0.0000018083,0.0000018045,0.0000018012,0.0000017993,0.0000017986, -0.0000017996,0.0000018018,0.0000018056,0.0000018108,0.0000018172, -0.0000018244,0.0000018320,0.0000018392,0.0000018452,0.0000018495, -0.0000018518,0.0000018527,0.0000018527,0.0000018523,0.0000018518, -0.0000018515,0.0000018513,0.0000018509,0.0000018505,0.0000018502, -0.0000018507,0.0000018525,0.0000018555,0.0000018590,0.0000018621, -0.0000018641,0.0000018642,0.0000018640,0.0000018635,0.0000018635, -0.0000018641,0.0000018653,0.0000018672,0.0000018697,0.0000018724, -0.0000018754,0.0000018785,0.0000018814,0.0000018840,0.0000018864, -0.0000018883,0.0000018902,0.0000018924,0.0000018954,0.0000018989, -0.0000019024,0.0000019056,0.0000019083,0.0000019103,0.0000019113, -0.0000019117,0.0000019121,0.0000019120,0.0000019114,0.0000019101, -0.0000019082,0.0000019057,0.0000019027,0.0000018993,0.0000018958, -0.0000018925,0.0000018894,0.0000018866,0.0000018840,0.0000018815, -0.0000018798,0.0000018784,0.0000018769,0.0000018750,0.0000018730, -0.0000018712,0.0000018701,0.0000018699,0.0000018704,0.0000018704, -0.0000018700,0.0000018691,0.0000018680,0.0000018670,0.0000018664, -0.0000018662,0.0000018660,0.0000018653,0.0000018641,0.0000018626, -0.0000018607,0.0000018584,0.0000018559,0.0000018535,0.0000018513, -0.0000018490,0.0000018466,0.0000018439,0.0000018414,0.0000018392, -0.0000018375,0.0000018363,0.0000018357,0.0000018358,0.0000018358, -0.0000018363,0.0000018363,0.0000018357,0.0000018343,0.0000018322, -0.0000018298,0.0000018274,0.0000018252,0.0000018234,0.0000018221, -0.0000018215,0.0000018213,0.0000018215,0.0000018225,0.0000018244, -0.0000018270,0.0000018298,0.0000018324,0.0000018344,0.0000018361, -0.0000018377,0.0000018393,0.0000018406,0.0000018416,0.0000018424, -0.0000018429,0.0000018433,0.0000018433,0.0000018432,0.0000018427, -0.0000018420,0.0000018410,0.0000018398,0.0000018383,0.0000018365, -0.0000018345,0.0000018324,0.0000018309,0.0000018296,0.0000018289, -0.0000018289,0.0000018294,0.0000018303,0.0000018314,0.0000018328, -0.0000018345,0.0000018373,0.0000018412,0.0000018459,0.0000018510, -0.0000018558,0.0000018603,0.0000018638,0.0000018660,0.0000018677, -0.0000018688,0.0000018683,0.0000018674,0.0000018668,0.0000018663, -0.0000018653,0.0000018637,0.0000018614,0.0000018582,0.0000018540, -0.0000018486,0.0000018416,0.0000018333,0.0000018245,0.0000018164, -0.0000018102,0.0000018063,0.0000018048,0.0000018054,0.0000018076, -0.0000018107,0.0000018141,0.0000018176,0.0000018211,0.0000018240, -0.0000018258,0.0000018266,0.0000018274,0.0000018297,0.0000018347, -0.0000018431,0.0000018543,0.0000018668,0.0000018791,0.0000018892, -0.0000018964,0.0000019011,0.0000019045,0.0000019085,0.0000019139, -0.0000019210,0.0000019293,0.0000019376,0.0000019450,0.0000019509, -0.0000019555,0.0000019590,0.0000019617,0.0000019642,0.0000019665, -0.0000019686,0.0000019705,0.0000019721,0.0000019733,0.0000019741, -0.0000019746,0.0000019745,0.0000019741,0.0000019735,0.0000019727, -0.0000019717,0.0000019708,0.0000019700,0.0000019694,0.0000019688, -0.0000019682,0.0000019679,0.0000019682,0.0000019693,0.0000019708, -0.0000019723,0.0000019734,0.0000019741,0.0000019740,0.0000019732, -0.0000019716,0.0000019694,0.0000019669,0.0000019641,0.0000019613, -0.0000019587,0.0000019563,0.0000019544,0.0000019534,0.0000019532, -0.0000019533,0.0000019530,0.0000019530,0.0000019532,0.0000019539, -0.0000019556,0.0000019587,0.0000019630,0.0000019685,0.0000019750, -0.0000019821,0.0000019891,0.0000019959,0.0000020021,0.0000020073, -0.0000020108,0.0000020128,0.0000020137,0.0000020148,0.0000020173, -0.0000020209,0.0000020243,0.0000020260,0.0000020256,0.0000020233, -0.0000020191,0.0000020138,0.0000020099,0.0000020085,0.0000020081, -0.0000020068,0.0000020043,0.0000020026,0.0000020055,0.0000020124, -0.0000020148,0.0000020142,0.0000020202,0.0000020315,0.0000020360, -0.0000020340,0.0000020305,0.0000020297,0.0000020298,0.0000020265, -0.0000020192,0.0000020132,0.0000020103,0.0000020058,0.0000020001, -0.0000019995,0.0000020039,0.0000020124,0.0000020262,0.0000020394, -0.0000020431,0.0000020412,0.0000020354,0.0000020264,0.0000020163, -0.0000020100,0.0000020094,0.0000020139,0.0000020202,0.0000020273, -0.0000020370,0.0000020489,0.0000020600,0.0000020674,0.0000020703, -0.0000020698,0.0000020679,0.0000020658,0.0000020642,0.0000020631, -0.0000020623,0.0000020616,0.0000020607,0.0000020596,0.0000020584, -0.0000020574,0.0000020565,0.0000020558,0.0000020552,0.0000020545, -0.0000020537,0.0000020530,0.0000020527,0.0000020528,0.0000020535, -0.0000020552,0.0000020578,0.0000020613,0.0000020653,0.0000020693, -0.0000020728,0.0000020754,0.0000020769,0.0000020774,0.0000020770, -0.0000020759,0.0000020742,0.0000020721,0.0000020698,0.0000020675, -0.0000020654,0.0000020635,0.0000020617,0.0000020600,0.0000020583, -0.0000020564,0.0000020547,0.0000020535,0.0000020526,0.0000020520, -0.0000020518,0.0000020517,0.0000020517,0.0000020517,0.0000020518, -0.0000020517,0.0000020514,0.0000020509,0.0000020505,0.0000020503, -0.0000020503,0.0000020506,0.0000020510,0.0000020513,0.0000020513, -0.0000020512,0.0000020507,0.0000020501,0.0000020491,0.0000020477, -0.0000020457,0.0000020431,0.0000020402,0.0000020373,0.0000020351, -0.0000020339,0.0000020330,0.0000020321,0.0000020311,0.0000020301, -0.0000020291,0.0000020283,0.0000020276,0.0000020264,0.0000020243, -0.0000020214,0.0000020183,0.0000020154,0.0000020123,0.0000020089, -0.0000020048,0.0000020003,0.0000019957,0.0000019917,0.0000019884, -0.0000019857,0.0000019836,0.0000019819,0.0000019802,0.0000019783, -0.0000019763,0.0000019742,0.0000019723,0.0000019704,0.0000019686, -0.0000019672,0.0000019662,0.0000019655,0.0000019654,0.0000019658, -0.0000019671,0.0000019690,0.0000019711,0.0000019730,0.0000019746, -0.0000019760,0.0000019771,0.0000019780,0.0000019789,0.0000019798, -0.0000019803,0.0000019807,0.0000019812,0.0000019820,0.0000019833, -0.0000019852,0.0000019877,0.0000019909,0.0000019946,0.0000019985, -0.0000020028,0.0000020073,0.0000020120,0.0000020167,0.0000020215, -0.0000020264,0.0000020312,0.0000020358,0.0000020398,0.0000020431, -0.0000020462,0.0000020489,0.0000020509,0.0000020523,0.0000020532, -0.0000020527,0.0000020519,0.0000020516,0.0000020505,0.0000020492, -0.0000020486,0.0000020480,0.0000020471,0.0000020459,0.0000020446, -0.0000020430,0.0000020419,0.0000020415,0.0000020418,0.0000020421, -0.0000020425,0.0000020429,0.0000020432,0.0000020433,0.0000020428, -0.0000020410,0.0000020404,0.0000020406,0.0000020408,0.0000020412, -0.0000020417,0.0000020421,0.0000020423,0.0000020420,0.0000020410, -0.0000020395,0.0000020375,0.0000020352,0.0000020328,0.0000020308, -0.0000020292,0.0000020277,0.0000020263,0.0000020253,0.0000020248, -0.0000020248,0.0000020260,0.0000020291,0.0000020337,0.0000020390, -0.0000020441,0.0000020485,0.0000020523,0.0000020557,0.0000020586, -0.0000020607,0.0000020620,0.0000020626,0.0000020624,0.0000020616, -0.0000020608,0.0000020598,0.0000020586,0.0000020578,0.0000020574, -0.0000020573,0.0000020578,0.0000020584,0.0000020594,0.0000020608, -0.0000020620,0.0000020629,0.0000020636,0.0000020638,0.0000020635, -0.0000020622,0.0000020603,0.0000020582,0.0000020559,0.0000020532, -0.0000020507,0.0000020484,0.0000020465,0.0000020447,0.0000020435, -0.0000020429,0.0000020426,0.0000020424,0.0000020425,0.0000020430, -0.0000020440,0.0000020452,0.0000020464,0.0000020473,0.0000020474, -0.0000020467,0.0000020455,0.0000020441,0.0000020434,0.0000020430, -0.0000020429,0.0000020429,0.0000020428,0.0000020433,0.0000020442, -0.0000020457,0.0000020482,0.0000020507,0.0000020520,0.0000020519, -0.0000020512,0.0000020509,0.0000020517,0.0000020531,0.0000020549, -0.0000020577,0.0000020617,0.0000020668,0.0000020709,0.0000020717, -0.0000020690,0.0000020624,0.0000020544,0.0000020469,0.0000020413, -0.0000020374,0.0000020340,0.0000020302,0.0000020262,0.0000020229, -0.0000020214,0.0000020203,0.0000020196,0.0000020196,0.0000020200, -0.0000020209,0.0000020221,0.0000020240,0.0000020264,0.0000020297, -0.0000020337,0.0000020386,0.0000020440,0.0000020496,0.0000020548, -0.0000020594,0.0000020633,0.0000020659,0.0000020672,0.0000020672, -0.0000020662,0.0000020643,0.0000020625,0.0000020603,0.0000020576, -0.0000020544,0.0000020514,0.0000020488,0.0000020474,0.0000020471, -0.0000020476,0.0000020485,0.0000020497,0.0000020509,0.0000020522, -0.0000020534,0.0000020546,0.0000020555,0.0000020563,0.0000020568, -0.0000020567,0.0000020555,0.0000020536,0.0000020512,0.0000020480, -0.0000020448,0.0000020424,0.0000020401,0.0000020382,0.0000020370, -0.0000020370,0.0000020383,0.0000020403,0.0000020418,0.0000020428, -0.0000020433,0.0000020434,0.0000020431,0.0000020423,0.0000020410, -0.0000020398,0.0000020390,0.0000020388,0.0000020386,0.0000020383, -0.0000020377,0.0000020362,0.0000020347,0.0000020335,0.0000020327, -0.0000020317,0.0000020304,0.0000020283,0.0000020259,0.0000020231, -0.0000020199,0.0000020163,0.0000020129,0.0000020095,0.0000020058, -0.0000020024,0.0000019996,0.0000019969,0.0000019943,0.0000019920, -0.0000019902,0.0000019883,0.0000019862,0.0000019842,0.0000019822, -0.0000019802,0.0000019785,0.0000019771,0.0000019762,0.0000019754, -0.0000019749,0.0000019749,0.0000019757,0.0000019769,0.0000019784, -0.0000019801,0.0000019816,0.0000019826,0.0000019832,0.0000019833, -0.0000019831,0.0000019827,0.0000019821,0.0000019807,0.0000019777, -0.0000019741,0.0000019694,0.0000019641,0.0000019588,0.0000019542, -0.0000019505,0.0000019484,0.0000019480,0.0000019489,0.0000019503, -0.0000019512,0.0000019516,0.0000019523,0.0000019530,0.0000019533, -0.0000019533,0.0000019531,0.0000019532,0.0000019542,0.0000019560, -0.0000019583,0.0000019608,0.0000019638,0.0000019669,0.0000019703, -0.0000019739,0.0000019776,0.0000019805,0.0000019823,0.0000019828, -0.0000019823,0.0000019804,0.0000019775,0.0000019738,0.0000019697, -0.0000019660,0.0000019638,0.0000019630,0.0000019635,0.0000019651, -0.0000019673,0.0000019694,0.0000019716,0.0000019739,0.0000019759, -0.0000019771,0.0000019772,0.0000019762,0.0000019749,0.0000019741, -0.0000019738,0.0000019739,0.0000019741,0.0000019734,0.0000019722, -0.0000019705,0.0000019688,0.0000019675,0.0000019667,0.0000019675, -0.0000019698,0.0000019733,0.0000019774,0.0000019820,0.0000019868, -0.0000019913,0.0000019951,0.0000019982,0.0000020004,0.0000020019, -0.0000020016,0.0000020017,0.0000020003,0.0000019993,0.0000019981, -0.0000019975,0.0000019969,0.0000019962,0.0000019958,0.0000019956, -0.0000019957,0.0000019953,0.0000019929,0.0000019884,0.0000019819, -0.0000019741,0.0000019660,0.0000019589,0.0000019562,0.0000019552, -0.0000019571,0.0000019606,0.0000019637,0.0000019661,0.0000019665, -0.0000019659,0.0000019641,0.0000019612,0.0000019574,0.0000019536, -0.0000019501,0.0000019477,0.0000019459,0.0000019462,0.0000019481, -0.0000019510,0.0000019546,0.0000019590,0.0000019642,0.0000019700, -0.0000019755,0.0000019803,0.0000019840,0.0000019867,0.0000019898, -0.0000019940,0.0000019990,0.0000020040,0.0000020081,0.0000020106, -0.0000020116,0.0000020124,0.0000020138,0.0000020154,0.0000020163, -0.0000020170,0.0000020181,0.0000020190,0.0000020196,0.0000020200, -0.0000020200,0.0000020193,0.0000020175,0.0000020144,0.0000020106, -0.0000020064,0.0000020022,0.0000019988,0.0000019961,0.0000019940, -0.0000019918,0.0000019891,0.0000019856,0.0000019813,0.0000019770, -0.0000019730,0.0000019698,0.0000019675,0.0000019657,0.0000019641, -0.0000019629,0.0000019625,0.0000019631,0.0000019641,0.0000019652, -0.0000019658,0.0000019660,0.0000019659,0.0000019664,0.0000019678, -0.0000019701,0.0000019730,0.0000019765,0.0000019797,0.0000019816, -0.0000019831,0.0000019840,0.0000019842,0.0000019835,0.0000019825, -0.0000019815,0.0000019806,0.0000019795,0.0000019784,0.0000019770, -0.0000019751,0.0000019732,0.0000019718,0.0000019704,0.0000019695, -0.0000019688,0.0000019682,0.0000019679,0.0000019675,0.0000019665, -0.0000019639,0.0000019591,0.0000019532,0.0000019473,0.0000019419, -0.0000019371,0.0000019328,0.0000019282,0.0000019228,0.0000019168, -0.0000019110,0.0000019053,0.0000018991,0.0000018934,0.0000018882, -0.0000018830,0.0000018781,0.0000018741,0.0000018722,0.0000018725, -0.0000018747,0.0000018776,0.0000018795,0.0000018799,0.0000018794, -0.0000018785,0.0000018785,0.0000018799,0.0000018811,0.0000018821, -0.0000018834,0.0000018857,0.0000018893,0.0000018928,0.0000018945, -0.0000018941,0.0000018923,0.0000018899,0.0000018887,0.0000018893, -0.0000018912,0.0000018934,0.0000018959,0.0000018983,0.0000018993, -0.0000018990,0.0000018975,0.0000018959,0.0000018934,0.0000018902, -0.0000018860,0.0000018817,0.0000018783,0.0000018759,0.0000018742, -0.0000018736,0.0000018741,0.0000018755,0.0000018767,0.0000018771, -0.0000018769,0.0000018764,0.0000018758,0.0000018748,0.0000018736, -0.0000018729,0.0000018728,0.0000018731,0.0000018737,0.0000018743, -0.0000018755,0.0000018773,0.0000018791,0.0000018807,0.0000018819, -0.0000018831,0.0000018845,0.0000018860,0.0000018881,0.0000018912, -0.0000018952,0.0000019003,0.0000019067,0.0000019147,0.0000019238, -0.0000019336,0.0000019432,0.0000019518,0.0000019590,0.0000019645, -0.0000019683,0.0000019713,0.0000019740,0.0000019769,0.0000019803, -0.0000019841,0.0000019883,0.0000019923,0.0000019947,0.0000019950, -0.0000019950,0.0000019917,0.0000019845,0.0000019746,0.0000019627, -0.0000019506,0.0000019404,0.0000019334,0.0000019298,0.0000019274, -0.0000019253,0.0000019232,0.0000019201,0.0000019161,0.0000019119, -0.0000019084,0.0000019053,0.0000019026,0.0000019008,0.0000019005, -0.0000019011,0.0000019019,0.0000019035,0.0000019054,0.0000019078, -0.0000019100,0.0000019117,0.0000019126,0.0000019135,0.0000019144, -0.0000019149,0.0000019141,0.0000019121,0.0000019084,0.0000019037, -0.0000018980,0.0000018906,0.0000018816,0.0000018731,0.0000018690, -0.0000018696,0.0000018745,0.0000018836,0.0000018932,0.0000019000, -0.0000019032,0.0000019044,0.0000019053,0.0000019062,0.0000019056, -0.0000019040,0.0000019005,0.0000018962,0.0000018921,0.0000018869, -0.0000018775,0.0000018639,0.0000018512,0.0000018444,0.0000018447, -0.0000018487,0.0000018523,0.0000018532,0.0000018532,0.0000018537, -0.0000018548,0.0000018546,0.0000018530,0.0000018509,0.0000018485, -0.0000018458,0.0000018433,0.0000018416,0.0000018404,0.0000018387, -0.0000018366,0.0000018342,0.0000018313,0.0000018281,0.0000018250, -0.0000018221,0.0000018197,0.0000018178,0.0000018162,0.0000018145, -0.0000018122,0.0000018097,0.0000018092,0.0000018114,0.0000018151, -0.0000018189,0.0000018230,0.0000018273,0.0000018321,0.0000018307, -0.0000018205,0.0000018126,0.0000018088,0.0000018069,0.0000018064, -0.0000018065,0.0000018067,0.0000018067,0.0000018065,0.0000018063, -0.0000018066,0.0000018070,0.0000018078,0.0000018086,0.0000018092, -0.0000018095,0.0000018095,0.0000018093,0.0000018090,0.0000018083, -0.0000018067,0.0000018043,0.0000018009,0.0000017970,0.0000017933, -0.0000017901,0.0000017876,0.0000017857,0.0000017843,0.0000017834, -0.0000017826,0.0000017818,0.0000017814,0.0000017815,0.0000017822, -0.0000017831,0.0000017841,0.0000017845,0.0000017844,0.0000017840, -0.0000017835,0.0000017833,0.0000017834,0.0000017840,0.0000017854, -0.0000017874,0.0000017899,0.0000017926,0.0000017955,0.0000017982, -0.0000017999,0.0000018008,0.0000018008,0.0000018001,0.0000017987, -0.0000017963,0.0000017939,0.0000017925,0.0000017913,0.0000017877, -0.0000017791,0.0000017681,0.0000017628,0.0000017647,0.0000017763, -0.0000017881,0.0000017928,0.0000017949,0.0000017988,0.0000018076, -0.0000018211,0.0000018333,0.0000018381,0.0000018384,0.0000018380, -0.0000018358,0.0000018332,0.0000018337,0.0000018389,0.0000018437, -0.0000018479,0.0000018547,0.0000018632,0.0000018707,0.0000018757, -0.0000018781,0.0000018780,0.0000018759,0.0000018737,0.0000018733, -0.0000018753,0.0000018795,0.0000018834,0.0000018873,0.0000018911, -0.0000018932,0.0000018929,0.0000018910,0.0000018904,0.0000018910, -0.0000018921,0.0000018928,0.0000018935,0.0000018935,0.0000018933, -0.0000018936,0.0000018947,0.0000018961,0.0000018972,0.0000018969, -0.0000018929,0.0000018849,0.0000018784,0.0000018760,0.0000018739, -0.0000018719,0.0000018736,0.0000018775,0.0000018789,0.0000018809, -0.0000018843,0.0000018855,0.0000018921,0.0000019046,0.0000019041, -0.0000018946,0.0000018963,0.0000019087,0.0000019113,0.0000018985, -0.0000018830,0.0000018757,0.0000018744,0.0000018749,0.0000018756, -0.0000018759,0.0000018739,0.0000018691,0.0000018638,0.0000018603, -0.0000018591,0.0000018596,0.0000018606,0.0000018609,0.0000018595, -0.0000018532,0.0000018447,0.0000018415,0.0000018439,0.0000018474, -0.0000018468,0.0000018400,0.0000018307,0.0000018231,0.0000018181, -0.0000018168,0.0000018156,0.0000018140,0.0000018127,0.0000018116, -0.0000018105,0.0000018094,0.0000018086,0.0000018084,0.0000018088, -0.0000018095,0.0000018100,0.0000018106,0.0000018116,0.0000018128, -0.0000018143,0.0000018159,0.0000018171,0.0000018182,0.0000018189, -0.0000018192,0.0000018193,0.0000018191,0.0000018182,0.0000018163, -0.0000018136,0.0000018093,0.0000018039,0.0000017987,0.0000017932, -0.0000017904,0.0000017881,0.0000017889,0.0000017915,0.0000017941, -0.0000017950,0.0000017947,0.0000017931,0.0000017911,0.0000017902, -0.0000017907,0.0000017942,0.0000018012,0.0000018108,0.0000018222, -0.0000018346,0.0000018464,0.0000018562,0.0000018635,0.0000018680, -0.0000018699,0.0000018695,0.0000018678,0.0000018655,0.0000018633, -0.0000018617,0.0000018605,0.0000018592,0.0000018572,0.0000018541, -0.0000018499,0.0000018448,0.0000018392,0.0000018336,0.0000018282, -0.0000018231,0.0000018190,0.0000018149,0.0000018118,0.0000018094, -0.0000018080,0.0000018068,0.0000018057,0.0000018046,0.0000018039, -0.0000018033,0.0000018027,0.0000018020,0.0000018013,0.0000018008, -0.0000018005,0.0000018004,0.0000018003,0.0000018002,0.0000018004, -0.0000018007,0.0000018012,0.0000018017,0.0000018020,0.0000018021, -0.0000018021,0.0000018019,0.0000018017,0.0000018015,0.0000018013, -0.0000018009,0.0000018002,0.0000017991,0.0000017976,0.0000017958, -0.0000017937,0.0000017914,0.0000017893,0.0000017878,0.0000017873, -0.0000017876,0.0000017888,0.0000017906,0.0000017929,0.0000017954, -0.0000017980,0.0000018008,0.0000018034,0.0000018060,0.0000018087, -0.0000018114,0.0000018139,0.0000018161,0.0000018180,0.0000018196, -0.0000018209,0.0000018220,0.0000018227,0.0000018230,0.0000018230, -0.0000018233,0.0000018242,0.0000018259,0.0000018283,0.0000018312, -0.0000018343,0.0000018273,0.0000018306,0.0000018332,0.0000018347, -0.0000018351,0.0000018346,0.0000018335,0.0000018325,0.0000018321, -0.0000018327,0.0000018342,0.0000018364,0.0000018392,0.0000018423, -0.0000018452,0.0000018479,0.0000018502,0.0000018521,0.0000018529, -0.0000018530,0.0000018525,0.0000018506,0.0000018479,0.0000018448, -0.0000018416,0.0000018392,0.0000018371,0.0000018348,0.0000018318, -0.0000018281,0.0000018236,0.0000018190,0.0000018146,0.0000018106, -0.0000018066,0.0000018026,0.0000017996,0.0000017980,0.0000017980, -0.0000017993,0.0000018016,0.0000018051,0.0000018095,0.0000018150, -0.0000018213,0.0000018277,0.0000018335,0.0000018383,0.0000018421, -0.0000018449,0.0000018466,0.0000018474,0.0000018477,0.0000018478, -0.0000018479,0.0000018478,0.0000018472,0.0000018465,0.0000018462, -0.0000018467,0.0000018485,0.0000018513,0.0000018548,0.0000018583, -0.0000018615,0.0000018634,0.0000018642,0.0000018649,0.0000018650, -0.0000018650,0.0000018654,0.0000018662,0.0000018674,0.0000018693, -0.0000018716,0.0000018743,0.0000018770,0.0000018793,0.0000018813, -0.0000018837,0.0000018865,0.0000018896,0.0000018929,0.0000018963, -0.0000019000,0.0000019036,0.0000019068,0.0000019096,0.0000019117, -0.0000019121,0.0000019119,0.0000019109,0.0000019090,0.0000019063, -0.0000019033,0.0000019001,0.0000018967,0.0000018931,0.0000018895, -0.0000018862,0.0000018831,0.0000018806,0.0000018783,0.0000018766, -0.0000018753,0.0000018740,0.0000018726,0.0000018708,0.0000018691, -0.0000018681,0.0000018682,0.0000018690,0.0000018698,0.0000018703, -0.0000018702,0.0000018697,0.0000018690,0.0000018683,0.0000018676, -0.0000018666,0.0000018652,0.0000018635,0.0000018616,0.0000018595, -0.0000018572,0.0000018547,0.0000018525,0.0000018504,0.0000018479, -0.0000018449,0.0000018417,0.0000018389,0.0000018369,0.0000018356, -0.0000018346,0.0000018343,0.0000018346,0.0000018356,0.0000018364, -0.0000018372,0.0000018369,0.0000018357,0.0000018337,0.0000018310, -0.0000018282,0.0000018255,0.0000018233,0.0000018220,0.0000018218, -0.0000018222,0.0000018234,0.0000018254,0.0000018281,0.0000018310, -0.0000018335,0.0000018356,0.0000018372,0.0000018386,0.0000018398, -0.0000018408,0.0000018415,0.0000018419,0.0000018420,0.0000018420, -0.0000018418,0.0000018417,0.0000018414,0.0000018408,0.0000018398, -0.0000018385,0.0000018371,0.0000018353,0.0000018334,0.0000018314, -0.0000018296,0.0000018283,0.0000018276,0.0000018277,0.0000018279, -0.0000018283,0.0000018288,0.0000018293,0.0000018300,0.0000018314, -0.0000018338,0.0000018370,0.0000018405,0.0000018443,0.0000018480, -0.0000018516,0.0000018551,0.0000018583,0.0000018612,0.0000018633, -0.0000018646,0.0000018655,0.0000018659,0.0000018652,0.0000018643, -0.0000018635,0.0000018624,0.0000018608,0.0000018582,0.0000018538, -0.0000018471,0.0000018383,0.0000018286,0.0000018191,0.0000018113, -0.0000018061,0.0000018043,0.0000018043,0.0000018061,0.0000018090, -0.0000018125,0.0000018163,0.0000018199,0.0000018228,0.0000018245, -0.0000018247,0.0000018246,0.0000018251,0.0000018273,0.0000018321, -0.0000018399,0.0000018501,0.0000018617,0.0000018732,0.0000018833, -0.0000018911,0.0000018966,0.0000019005,0.0000019041,0.0000019083, -0.0000019139,0.0000019206,0.0000019278,0.0000019349,0.0000019411, -0.0000019464,0.0000019506,0.0000019538,0.0000019562,0.0000019581, -0.0000019593,0.0000019602,0.0000019608,0.0000019610,0.0000019609, -0.0000019604,0.0000019599,0.0000019593,0.0000019586,0.0000019578, -0.0000019571,0.0000019569,0.0000019567,0.0000019564,0.0000019563, -0.0000019569,0.0000019582,0.0000019601,0.0000019620,0.0000019637, -0.0000019649,0.0000019652,0.0000019649,0.0000019638,0.0000019619, -0.0000019595,0.0000019567,0.0000019539,0.0000019513,0.0000019489, -0.0000019468,0.0000019452,0.0000019442,0.0000019431,0.0000019419, -0.0000019408,0.0000019401,0.0000019403,0.0000019416,0.0000019441, -0.0000019480,0.0000019535,0.0000019604,0.0000019680,0.0000019761, -0.0000019845,0.0000019928,0.0000020004,0.0000020068,0.0000020109, -0.0000020124,0.0000020127,0.0000020139,0.0000020168,0.0000020202, -0.0000020223,0.0000020228,0.0000020219,0.0000020190,0.0000020140, -0.0000020097,0.0000020078,0.0000020068,0.0000020050,0.0000020021, -0.0000020014,0.0000020065,0.0000020132,0.0000020133,0.0000020131, -0.0000020213,0.0000020323,0.0000020356,0.0000020332,0.0000020301, -0.0000020294,0.0000020289,0.0000020248,0.0000020174,0.0000020120, -0.0000020092,0.0000020044,0.0000019998,0.0000020010,0.0000020064, -0.0000020149,0.0000020278,0.0000020388,0.0000020414,0.0000020382, -0.0000020319,0.0000020232,0.0000020139,0.0000020079,0.0000020065, -0.0000020100,0.0000020151,0.0000020205,0.0000020269,0.0000020356, -0.0000020455,0.0000020542,0.0000020599,0.0000020624,0.0000020620, -0.0000020601,0.0000020578,0.0000020557,0.0000020542,0.0000020531, -0.0000020524,0.0000020520,0.0000020518,0.0000020518,0.0000020520, -0.0000020524,0.0000020527,0.0000020528,0.0000020525,0.0000020517, -0.0000020504,0.0000020488,0.0000020471,0.0000020457,0.0000020449, -0.0000020454,0.0000020469,0.0000020490,0.0000020515,0.0000020544, -0.0000020573,0.0000020599,0.0000020620,0.0000020632,0.0000020634, -0.0000020626,0.0000020610,0.0000020588,0.0000020564,0.0000020538, -0.0000020516,0.0000020497,0.0000020480,0.0000020467,0.0000020457, -0.0000020449,0.0000020443,0.0000020439,0.0000020437,0.0000020435, -0.0000020432,0.0000020431,0.0000020429,0.0000020425,0.0000020420, -0.0000020416,0.0000020415,0.0000020416,0.0000020420,0.0000020423, -0.0000020424,0.0000020423,0.0000020420,0.0000020416,0.0000020410, -0.0000020401,0.0000020386,0.0000020366,0.0000020343,0.0000020317, -0.0000020290,0.0000020269,0.0000020255,0.0000020244,0.0000020233, -0.0000020222,0.0000020211,0.0000020201,0.0000020192,0.0000020183, -0.0000020168,0.0000020143,0.0000020111,0.0000020078,0.0000020047, -0.0000020018,0.0000019987,0.0000019952,0.0000019912,0.0000019872, -0.0000019836,0.0000019810,0.0000019794,0.0000019783,0.0000019774, -0.0000019765,0.0000019755,0.0000019743,0.0000019728,0.0000019713, -0.0000019696,0.0000019677,0.0000019660,0.0000019643,0.0000019633, -0.0000019626,0.0000019623,0.0000019628,0.0000019640,0.0000019657, -0.0000019674,0.0000019690,0.0000019704,0.0000019717,0.0000019728, -0.0000019739,0.0000019746,0.0000019747,0.0000019747,0.0000019745, -0.0000019743,0.0000019740,0.0000019739,0.0000019741,0.0000019747, -0.0000019758,0.0000019774,0.0000019793,0.0000019817,0.0000019847, -0.0000019881,0.0000019919,0.0000019964,0.0000020014,0.0000020066, -0.0000020117,0.0000020163,0.0000020207,0.0000020251,0.0000020293, -0.0000020331,0.0000020364,0.0000020390,0.0000020410,0.0000020429, -0.0000020443,0.0000020450,0.0000020455,0.0000020462,0.0000020464, -0.0000020457,0.0000020447,0.0000020438,0.0000020434,0.0000020430, -0.0000020432,0.0000020436,0.0000020439,0.0000020446,0.0000020448, -0.0000020448,0.0000020436,0.0000020413,0.0000020401,0.0000020391, -0.0000020384,0.0000020384,0.0000020386,0.0000020391,0.0000020396, -0.0000020396,0.0000020391,0.0000020382,0.0000020367,0.0000020350, -0.0000020333,0.0000020317,0.0000020302,0.0000020285,0.0000020269, -0.0000020256,0.0000020250,0.0000020248,0.0000020255,0.0000020277, -0.0000020307,0.0000020349,0.0000020397,0.0000020445,0.0000020486, -0.0000020525,0.0000020560,0.0000020588,0.0000020607,0.0000020616, -0.0000020617,0.0000020610,0.0000020603,0.0000020597,0.0000020588, -0.0000020579,0.0000020573,0.0000020570,0.0000020570,0.0000020570, -0.0000020569,0.0000020575,0.0000020583,0.0000020592,0.0000020602, -0.0000020611,0.0000020615,0.0000020611,0.0000020595,0.0000020571, -0.0000020542,0.0000020511,0.0000020481,0.0000020456,0.0000020438, -0.0000020427,0.0000020422,0.0000020422,0.0000020424,0.0000020427, -0.0000020434,0.0000020447,0.0000020463,0.0000020479,0.0000020494, -0.0000020506,0.0000020511,0.0000020509,0.0000020503,0.0000020487, -0.0000020463,0.0000020441,0.0000020427,0.0000020415,0.0000020403, -0.0000020393,0.0000020387,0.0000020388,0.0000020396,0.0000020411, -0.0000020434,0.0000020460,0.0000020481,0.0000020494,0.0000020500, -0.0000020504,0.0000020512,0.0000020526,0.0000020548,0.0000020582, -0.0000020626,0.0000020675,0.0000020698,0.0000020689,0.0000020638, -0.0000020561,0.0000020482,0.0000020415,0.0000020367,0.0000020332, -0.0000020301,0.0000020271,0.0000020240,0.0000020210,0.0000020197, -0.0000020198,0.0000020199,0.0000020199,0.0000020200,0.0000020202, -0.0000020207,0.0000020218,0.0000020237,0.0000020265,0.0000020305, -0.0000020352,0.0000020399,0.0000020445,0.0000020488,0.0000020524, -0.0000020551,0.0000020570,0.0000020582,0.0000020587,0.0000020588, -0.0000020585,0.0000020565,0.0000020542,0.0000020517,0.0000020490, -0.0000020468,0.0000020457,0.0000020455,0.0000020459,0.0000020467, -0.0000020480,0.0000020492,0.0000020501,0.0000020509,0.0000020519, -0.0000020530,0.0000020539,0.0000020545,0.0000020542,0.0000020531, -0.0000020512,0.0000020485,0.0000020451,0.0000020417,0.0000020386, -0.0000020363,0.0000020344,0.0000020334,0.0000020336,0.0000020344, -0.0000020359,0.0000020376,0.0000020391,0.0000020402,0.0000020408, -0.0000020410,0.0000020410,0.0000020409,0.0000020410,0.0000020411, -0.0000020412,0.0000020412,0.0000020404,0.0000020386,0.0000020366, -0.0000020349,0.0000020331,0.0000020313,0.0000020293,0.0000020269, -0.0000020243,0.0000020214,0.0000020181,0.0000020149,0.0000020115, -0.0000020081,0.0000020046,0.0000020016,0.0000019985,0.0000019956, -0.0000019930,0.0000019908,0.0000019886,0.0000019862,0.0000019839, -0.0000019814,0.0000019784,0.0000019751,0.0000019722,0.0000019699, -0.0000019685,0.0000019677,0.0000019675,0.0000019679,0.0000019691, -0.0000019705,0.0000019722,0.0000019742,0.0000019761,0.0000019775, -0.0000019784,0.0000019787,0.0000019784,0.0000019780,0.0000019773, -0.0000019761,0.0000019737,0.0000019700,0.0000019654,0.0000019601, -0.0000019546,0.0000019493,0.0000019445,0.0000019414,0.0000019397, -0.0000019394,0.0000019399,0.0000019407,0.0000019418,0.0000019430, -0.0000019441,0.0000019450,0.0000019454,0.0000019454,0.0000019460, -0.0000019476,0.0000019501,0.0000019531,0.0000019563,0.0000019596, -0.0000019628,0.0000019660,0.0000019691,0.0000019717,0.0000019732, -0.0000019735,0.0000019725,0.0000019707,0.0000019677,0.0000019640, -0.0000019600,0.0000019567,0.0000019547,0.0000019539,0.0000019539, -0.0000019548,0.0000019566,0.0000019587,0.0000019612,0.0000019634, -0.0000019657,0.0000019680,0.0000019697,0.0000019705,0.0000019704, -0.0000019702,0.0000019702,0.0000019704,0.0000019711,0.0000019718, -0.0000019723,0.0000019722,0.0000019713,0.0000019693,0.0000019663, -0.0000019645,0.0000019621,0.0000019620,0.0000019638,0.0000019671, -0.0000019718,0.0000019771,0.0000019826,0.0000019876,0.0000019917, -0.0000019945,0.0000019964,0.0000019973,0.0000019978,0.0000019980, -0.0000019984,0.0000019984,0.0000019990,0.0000019984,0.0000019973, -0.0000019960,0.0000019952,0.0000019946,0.0000019937,0.0000019925, -0.0000019897,0.0000019854,0.0000019789,0.0000019706,0.0000019625, -0.0000019563,0.0000019546,0.0000019542,0.0000019560,0.0000019596, -0.0000019629,0.0000019653,0.0000019656,0.0000019654,0.0000019636, -0.0000019604,0.0000019564,0.0000019520,0.0000019477,0.0000019450, -0.0000019435,0.0000019442,0.0000019467,0.0000019506,0.0000019558, -0.0000019618,0.0000019685,0.0000019749,0.0000019796,0.0000019826, -0.0000019842,0.0000019852,0.0000019874,0.0000019917,0.0000019967, -0.0000020010,0.0000020042,0.0000020071,0.0000020101,0.0000020129, -0.0000020146,0.0000020157,0.0000020165,0.0000020169,0.0000020169, -0.0000020166,0.0000020161,0.0000020149,0.0000020128,0.0000020096, -0.0000020058,0.0000020021,0.0000019987,0.0000019961,0.0000019941, -0.0000019923,0.0000019904,0.0000019880,0.0000019856,0.0000019828, -0.0000019795,0.0000019758,0.0000019725,0.0000019698,0.0000019680, -0.0000019665,0.0000019652,0.0000019643,0.0000019642,0.0000019647, -0.0000019651,0.0000019651,0.0000019648,0.0000019644,0.0000019645, -0.0000019657,0.0000019677,0.0000019706,0.0000019742,0.0000019776, -0.0000019801,0.0000019820,0.0000019832,0.0000019837,0.0000019834, -0.0000019830,0.0000019829,0.0000019829,0.0000019826,0.0000019819, -0.0000019803,0.0000019777,0.0000019751,0.0000019730,0.0000019709, -0.0000019694,0.0000019684,0.0000019679,0.0000019678,0.0000019676, -0.0000019656,0.0000019610,0.0000019549,0.0000019486,0.0000019430, -0.0000019385,0.0000019350,0.0000019316,0.0000019281,0.0000019239, -0.0000019185,0.0000019126,0.0000019067,0.0000019009,0.0000018953, -0.0000018894,0.0000018833,0.0000018773,0.0000018719,0.0000018686, -0.0000018676,0.0000018687,0.0000018723,0.0000018769,0.0000018801, -0.0000018808,0.0000018797,0.0000018783,0.0000018777,0.0000018781, -0.0000018794,0.0000018807,0.0000018825,0.0000018855,0.0000018892, -0.0000018922,0.0000018927,0.0000018908,0.0000018879,0.0000018853, -0.0000018849,0.0000018861,0.0000018882,0.0000018911,0.0000018937, -0.0000018950,0.0000018953,0.0000018951,0.0000018945,0.0000018932, -0.0000018913,0.0000018882,0.0000018846,0.0000018813,0.0000018785, -0.0000018758,0.0000018734,0.0000018723,0.0000018721,0.0000018724, -0.0000018728,0.0000018728,0.0000018726,0.0000018719,0.0000018707, -0.0000018695,0.0000018687,0.0000018685,0.0000018688,0.0000018690, -0.0000018694,0.0000018706,0.0000018725,0.0000018746,0.0000018766, -0.0000018783,0.0000018796,0.0000018809,0.0000018820,0.0000018832, -0.0000018848,0.0000018868,0.0000018892,0.0000018925,0.0000018972, -0.0000019037,0.0000019118,0.0000019212,0.0000019314,0.0000019417, -0.0000019511,0.0000019590,0.0000019652,0.0000019698,0.0000019735, -0.0000019766,0.0000019794,0.0000019828,0.0000019867,0.0000019904, -0.0000019934,0.0000019951,0.0000019945,0.0000019906,0.0000019833, -0.0000019723,0.0000019592,0.0000019461,0.0000019356,0.0000019289, -0.0000019255,0.0000019236,0.0000019218,0.0000019201,0.0000019177, -0.0000019149,0.0000019121,0.0000019091,0.0000019059,0.0000019033, -0.0000019020,0.0000019021,0.0000019031,0.0000019046,0.0000019062, -0.0000019080,0.0000019097,0.0000019109,0.0000019117,0.0000019123, -0.0000019129,0.0000019132,0.0000019126,0.0000019109,0.0000019077, -0.0000019031,0.0000018978,0.0000018914,0.0000018830,0.0000018744, -0.0000018690,0.0000018685,0.0000018724,0.0000018803,0.0000018898, -0.0000018975,0.0000019019,0.0000019035,0.0000019041,0.0000019044, -0.0000019042,0.0000019030,0.0000019001,0.0000018962,0.0000018927, -0.0000018887,0.0000018808,0.0000018681,0.0000018551,0.0000018473, -0.0000018472,0.0000018497,0.0000018524,0.0000018530,0.0000018529, -0.0000018540,0.0000018547,0.0000018544,0.0000018527,0.0000018502, -0.0000018475,0.0000018447,0.0000018423,0.0000018405,0.0000018385, -0.0000018361,0.0000018335,0.0000018308,0.0000018278,0.0000018245, -0.0000018212,0.0000018186,0.0000018168,0.0000018154,0.0000018138, -0.0000018115,0.0000018095,0.0000018094,0.0000018121,0.0000018157, -0.0000018191,0.0000018226,0.0000018266,0.0000018313,0.0000018294, -0.0000018179,0.0000018096,0.0000018066,0.0000018064,0.0000018075, -0.0000018090,0.0000018092,0.0000018085,0.0000018075,0.0000018067, -0.0000018060,0.0000018057,0.0000018057,0.0000018058,0.0000018057, -0.0000018056,0.0000018052,0.0000018044,0.0000018032,0.0000018020, -0.0000018004,0.0000017983,0.0000017958,0.0000017928,0.0000017896, -0.0000017868,0.0000017846,0.0000017823,0.0000017798,0.0000017782, -0.0000017772,0.0000017769,0.0000017773,0.0000017784,0.0000017803, -0.0000017825,0.0000017847,0.0000017867,0.0000017883,0.0000017890, -0.0000017897,0.0000017905,0.0000017908,0.0000017911,0.0000017917, -0.0000017927,0.0000017940,0.0000017959,0.0000017982,0.0000018001, -0.0000018012,0.0000018016,0.0000018013,0.0000018002,0.0000017986, -0.0000017966,0.0000017954,0.0000017949,0.0000017932,0.0000017865, -0.0000017750,0.0000017653,0.0000017633,0.0000017711,0.0000017842, -0.0000017918,0.0000017937,0.0000017962,0.0000018031,0.0000018155, -0.0000018293,0.0000018369,0.0000018381,0.0000018376,0.0000018360, -0.0000018328,0.0000018316,0.0000018344,0.0000018404,0.0000018452, -0.0000018514,0.0000018599,0.0000018679,0.0000018739,0.0000018771, -0.0000018780,0.0000018771,0.0000018748,0.0000018726,0.0000018717, -0.0000018731,0.0000018762,0.0000018795,0.0000018835,0.0000018877, -0.0000018905,0.0000018915,0.0000018912,0.0000018914,0.0000018925, -0.0000018941,0.0000018956,0.0000018964,0.0000018968,0.0000018973, -0.0000018981,0.0000018987,0.0000018991,0.0000018978,0.0000018933, -0.0000018837,0.0000018757,0.0000018736,0.0000018731,0.0000018710, -0.0000018711,0.0000018758,0.0000018774,0.0000018770,0.0000018793, -0.0000018819,0.0000018843,0.0000018962,0.0000019064,0.0000018996, -0.0000018910,0.0000018967,0.0000019092,0.0000019118,0.0000019038, -0.0000018921,0.0000018852,0.0000018818,0.0000018790,0.0000018771, -0.0000018768,0.0000018750,0.0000018693,0.0000018627,0.0000018587, -0.0000018576,0.0000018579,0.0000018591,0.0000018596,0.0000018568, -0.0000018486,0.0000018415,0.0000018401,0.0000018421,0.0000018454, -0.0000018470,0.0000018455,0.0000018407,0.0000018346,0.0000018290, -0.0000018245,0.0000018207,0.0000018177,0.0000018155,0.0000018141, -0.0000018133,0.0000018129,0.0000018132,0.0000018143,0.0000018158, -0.0000018172,0.0000018183,0.0000018194,0.0000018205,0.0000018217, -0.0000018228,0.0000018237,0.0000018244,0.0000018248,0.0000018249, -0.0000018246,0.0000018242,0.0000018234,0.0000018222,0.0000018207, -0.0000018189,0.0000018164,0.0000018129,0.0000018085,0.0000018026, -0.0000017963,0.0000017909,0.0000017887,0.0000017876,0.0000017891, -0.0000017916,0.0000017935,0.0000017933,0.0000017922,0.0000017905, -0.0000017899,0.0000017903,0.0000017932,0.0000017980,0.0000018051, -0.0000018143,0.0000018249,0.0000018360,0.0000018460,0.0000018539, -0.0000018595,0.0000018627,0.0000018638,0.0000018630,0.0000018611, -0.0000018591,0.0000018573,0.0000018557,0.0000018539,0.0000018515, -0.0000018480,0.0000018436,0.0000018388,0.0000018335,0.0000018279, -0.0000018224,0.0000018173,0.0000018128,0.0000018088,0.0000018060, -0.0000018033,0.0000018011,0.0000017992,0.0000017979,0.0000017969, -0.0000017961,0.0000017956,0.0000017950,0.0000017944,0.0000017938, -0.0000017936,0.0000017934,0.0000017935,0.0000017937,0.0000017940, -0.0000017944,0.0000017948,0.0000017951,0.0000017953,0.0000017954, -0.0000017956,0.0000017957,0.0000017957,0.0000017958,0.0000017959, -0.0000017959,0.0000017954,0.0000017943,0.0000017929,0.0000017909, -0.0000017884,0.0000017857,0.0000017833,0.0000017814,0.0000017801, -0.0000017797,0.0000017799,0.0000017813,0.0000017834,0.0000017858, -0.0000017887,0.0000017916,0.0000017946,0.0000017977,0.0000018009, -0.0000018039,0.0000018067,0.0000018091,0.0000018112,0.0000018130, -0.0000018143,0.0000018154,0.0000018163,0.0000018167,0.0000018169, -0.0000018171,0.0000018177,0.0000018190,0.0000018209,0.0000018238, -0.0000018163,0.0000018192,0.0000018225,0.0000018255,0.0000018278, -0.0000018290,0.0000018290,0.0000018281,0.0000018266,0.0000018252, -0.0000018243,0.0000018242,0.0000018252,0.0000018274,0.0000018306, -0.0000018347,0.0000018389,0.0000018431,0.0000018467,0.0000018492, -0.0000018510,0.0000018512,0.0000018507,0.0000018491,0.0000018460, -0.0000018423,0.0000018387,0.0000018356,0.0000018331,0.0000018311, -0.0000018292,0.0000018267,0.0000018234,0.0000018197,0.0000018158, -0.0000018117,0.0000018072,0.0000018029,0.0000017997,0.0000017984, -0.0000017987,0.0000018000,0.0000018019,0.0000018049,0.0000018091, -0.0000018142,0.0000018196,0.0000018246,0.0000018290,0.0000018330, -0.0000018363,0.0000018391,0.0000018412,0.0000018426,0.0000018435, -0.0000018440,0.0000018442,0.0000018441,0.0000018438,0.0000018435, -0.0000018434,0.0000018438,0.0000018450,0.0000018474,0.0000018510, -0.0000018552,0.0000018592,0.0000018627,0.0000018648,0.0000018653, -0.0000018658,0.0000018660,0.0000018658,0.0000018657,0.0000018659, -0.0000018669,0.0000018685,0.0000018705,0.0000018727,0.0000018752, -0.0000018780,0.0000018812,0.0000018843,0.0000018876,0.0000018910, -0.0000018944,0.0000018979,0.0000019013,0.0000019049,0.0000019081, -0.0000019104,0.0000019106,0.0000019095,0.0000019072,0.0000019042, -0.0000019008,0.0000018972,0.0000018934,0.0000018897,0.0000018862, -0.0000018834,0.0000018806,0.0000018779,0.0000018755,0.0000018736, -0.0000018726,0.0000018718,0.0000018706,0.0000018689,0.0000018674, -0.0000018667,0.0000018669,0.0000018678,0.0000018692,0.0000018704, -0.0000018711,0.0000018711,0.0000018705,0.0000018696,0.0000018685, -0.0000018669,0.0000018649,0.0000018626,0.0000018603,0.0000018578, -0.0000018552,0.0000018530,0.0000018510,0.0000018489,0.0000018461, -0.0000018430,0.0000018402,0.0000018377,0.0000018358,0.0000018343, -0.0000018335,0.0000018334,0.0000018339,0.0000018351,0.0000018366, -0.0000018373,0.0000018377,0.0000018372,0.0000018355,0.0000018331, -0.0000018302,0.0000018274,0.0000018255,0.0000018245,0.0000018244, -0.0000018249,0.0000018265,0.0000018288,0.0000018310,0.0000018332, -0.0000018351,0.0000018367,0.0000018380,0.0000018390,0.0000018397, -0.0000018403,0.0000018407,0.0000018409,0.0000018410,0.0000018410, -0.0000018411,0.0000018411,0.0000018404,0.0000018394,0.0000018380, -0.0000018365,0.0000018347,0.0000018327,0.0000018304,0.0000018286, -0.0000018271,0.0000018260,0.0000018256,0.0000018256,0.0000018259, -0.0000018263,0.0000018268,0.0000018275,0.0000018289,0.0000018310, -0.0000018334,0.0000018359,0.0000018383,0.0000018406,0.0000018429, -0.0000018452,0.0000018477,0.0000018503,0.0000018532,0.0000018560, -0.0000018585,0.0000018604,0.0000018617,0.0000018624,0.0000018626, -0.0000018621,0.0000018615,0.0000018609,0.0000018592,0.0000018557, -0.0000018501,0.0000018424,0.0000018330,0.0000018235,0.0000018144, -0.0000018073,0.0000018045,0.0000018032,0.0000018042,0.0000018067, -0.0000018101,0.0000018138,0.0000018176,0.0000018209,0.0000018230, -0.0000018234,0.0000018232,0.0000018227,0.0000018229,0.0000018246, -0.0000018284,0.0000018347,0.0000018436,0.0000018542,0.0000018656, -0.0000018764,0.0000018853,0.0000018917,0.0000018959,0.0000018989, -0.0000019019,0.0000019057,0.0000019107,0.0000019167,0.0000019229, -0.0000019287,0.0000019339,0.0000019380,0.0000019411,0.0000019432, -0.0000019446,0.0000019457,0.0000019463,0.0000019463,0.0000019460, -0.0000019457,0.0000019451,0.0000019445,0.0000019438,0.0000019434, -0.0000019432,0.0000019432,0.0000019433,0.0000019435,0.0000019444, -0.0000019460,0.0000019481,0.0000019504,0.0000019528,0.0000019547, -0.0000019558,0.0000019560,0.0000019556,0.0000019543,0.0000019523, -0.0000019498,0.0000019471,0.0000019445,0.0000019420,0.0000019395, -0.0000019371,0.0000019349,0.0000019327,0.0000019304,0.0000019284, -0.0000019271,0.0000019271,0.0000019284,0.0000019306,0.0000019342, -0.0000019396,0.0000019463,0.0000019539,0.0000019626,0.0000019722, -0.0000019822,0.0000019919,0.0000020005,0.0000020070,0.0000020105, -0.0000020112,0.0000020113,0.0000020132,0.0000020161,0.0000020184, -0.0000020198,0.0000020202,0.0000020184,0.0000020139,0.0000020098, -0.0000020072,0.0000020055,0.0000020030,0.0000020002,0.0000020012, -0.0000020083,0.0000020128,0.0000020116,0.0000020129,0.0000020225, -0.0000020327,0.0000020349,0.0000020324,0.0000020294,0.0000020285, -0.0000020275,0.0000020229,0.0000020158,0.0000020109,0.0000020080, -0.0000020032,0.0000020005,0.0000020028,0.0000020085,0.0000020165, -0.0000020279,0.0000020371,0.0000020387,0.0000020352,0.0000020289, -0.0000020210,0.0000020124,0.0000020055,0.0000020033,0.0000020053, -0.0000020096,0.0000020139,0.0000020177,0.0000020223,0.0000020284, -0.0000020354,0.0000020419,0.0000020468,0.0000020499,0.0000020510, -0.0000020506,0.0000020491,0.0000020473,0.0000020459,0.0000020448, -0.0000020443,0.0000020441,0.0000020444,0.0000020450,0.0000020457, -0.0000020464,0.0000020472,0.0000020480,0.0000020486,0.0000020484, -0.0000020473,0.0000020456,0.0000020434,0.0000020413,0.0000020393, -0.0000020376,0.0000020359,0.0000020354,0.0000020357,0.0000020367, -0.0000020384,0.0000020406,0.0000020425,0.0000020435,0.0000020439, -0.0000020440,0.0000020432,0.0000020418,0.0000020404,0.0000020394, -0.0000020385,0.0000020378,0.0000020374,0.0000020371,0.0000020366, -0.0000020360,0.0000020354,0.0000020346,0.0000020339,0.0000020335, -0.0000020332,0.0000020329,0.0000020325,0.0000020322,0.0000020321, -0.0000020322,0.0000020325,0.0000020328,0.0000020330,0.0000020330, -0.0000020327,0.0000020323,0.0000020315,0.0000020301,0.0000020281, -0.0000020257,0.0000020232,0.0000020206,0.0000020176,0.0000020147, -0.0000020123,0.0000020102,0.0000020083,0.0000020067,0.0000020054, -0.0000020045,0.0000020041,0.0000020037,0.0000020028,0.0000020013, -0.0000019994,0.0000019973,0.0000019952,0.0000019934,0.0000019915, -0.0000019892,0.0000019863,0.0000019832,0.0000019803,0.0000019783, -0.0000019771,0.0000019765,0.0000019761,0.0000019758,0.0000019753, -0.0000019744,0.0000019732,0.0000019718,0.0000019700,0.0000019681, -0.0000019659,0.0000019639,0.0000019624,0.0000019610,0.0000019598, -0.0000019589,0.0000019587,0.0000019592,0.0000019600,0.0000019611, -0.0000019622,0.0000019634,0.0000019646,0.0000019660,0.0000019673, -0.0000019682,0.0000019691,0.0000019699,0.0000019704,0.0000019708, -0.0000019711,0.0000019713,0.0000019716,0.0000019720,0.0000019725, -0.0000019730,0.0000019736,0.0000019745,0.0000019755,0.0000019770, -0.0000019791,0.0000019819,0.0000019854,0.0000019892,0.0000019927, -0.0000019961,0.0000019997,0.0000020032,0.0000020068,0.0000020103, -0.0000020135,0.0000020165,0.0000020194,0.0000020223,0.0000020248, -0.0000020272,0.0000020291,0.0000020306,0.0000020318,0.0000020328, -0.0000020334,0.0000020342,0.0000020355,0.0000020371,0.0000020387, -0.0000020402,0.0000020417,0.0000020430,0.0000020443,0.0000020441, -0.0000020433,0.0000020426,0.0000020412,0.0000020404,0.0000020397, -0.0000020399,0.0000020402,0.0000020405,0.0000020404,0.0000020401, -0.0000020391,0.0000020381,0.0000020370,0.0000020358,0.0000020347, -0.0000020336,0.0000020323,0.0000020309,0.0000020297,0.0000020289, -0.0000020285,0.0000020287,0.0000020303,0.0000020326,0.0000020357, -0.0000020396,0.0000020437,0.0000020474,0.0000020510,0.0000020545, -0.0000020575,0.0000020599,0.0000020614,0.0000020620,0.0000020616, -0.0000020611,0.0000020607,0.0000020600,0.0000020592,0.0000020587, -0.0000020583,0.0000020578,0.0000020574,0.0000020570,0.0000020569, -0.0000020574,0.0000020580,0.0000020586,0.0000020592,0.0000020597, -0.0000020597,0.0000020587,0.0000020565,0.0000020535,0.0000020501, -0.0000020467,0.0000020438,0.0000020417,0.0000020405,0.0000020402, -0.0000020403,0.0000020408,0.0000020420,0.0000020434,0.0000020449, -0.0000020465,0.0000020481,0.0000020497,0.0000020510,0.0000020515, -0.0000020516,0.0000020516,0.0000020511,0.0000020495,0.0000020473, -0.0000020451,0.0000020431,0.0000020408,0.0000020388,0.0000020373, -0.0000020365,0.0000020361,0.0000020358,0.0000020358,0.0000020368, -0.0000020394,0.0000020429,0.0000020462,0.0000020483,0.0000020493, -0.0000020499,0.0000020507,0.0000020523,0.0000020549,0.0000020587, -0.0000020631,0.0000020664,0.0000020668,0.0000020642,0.0000020582, -0.0000020504,0.0000020430,0.0000020371,0.0000020330,0.0000020302, -0.0000020278,0.0000020255,0.0000020237,0.0000020224,0.0000020213, -0.0000020208,0.0000020208,0.0000020209,0.0000020209,0.0000020207, -0.0000020208,0.0000020216,0.0000020234,0.0000020258,0.0000020285, -0.0000020312,0.0000020336,0.0000020360,0.0000020382,0.0000020401, -0.0000020418,0.0000020436,0.0000020455,0.0000020470,0.0000020473, -0.0000020469,0.0000020456,0.0000020438,0.0000020419,0.0000020404, -0.0000020396,0.0000020399,0.0000020410,0.0000020427,0.0000020445, -0.0000020463,0.0000020480,0.0000020495,0.0000020512,0.0000020528, -0.0000020539,0.0000020539,0.0000020534,0.0000020520,0.0000020498, -0.0000020469,0.0000020434,0.0000020398,0.0000020367,0.0000020343, -0.0000020330,0.0000020318,0.0000020317,0.0000020332,0.0000020356, -0.0000020377,0.0000020391,0.0000020403,0.0000020416,0.0000020429, -0.0000020435,0.0000020435,0.0000020432,0.0000020430,0.0000020424, -0.0000020411,0.0000020392,0.0000020369,0.0000020343,0.0000020318, -0.0000020294,0.0000020270,0.0000020243,0.0000020212,0.0000020179, -0.0000020148,0.0000020117,0.0000020086,0.0000020056,0.0000020029, -0.0000019999,0.0000019969,0.0000019942,0.0000019920,0.0000019897, -0.0000019874,0.0000019853,0.0000019828,0.0000019796,0.0000019760, -0.0000019724,0.0000019691,0.0000019663,0.0000019643,0.0000019630, -0.0000019627,0.0000019633,0.0000019646,0.0000019661,0.0000019679, -0.0000019698,0.0000019716,0.0000019731,0.0000019741,0.0000019745, -0.0000019742,0.0000019735,0.0000019725,0.0000019709,0.0000019683, -0.0000019645,0.0000019597,0.0000019543,0.0000019485,0.0000019424, -0.0000019370,0.0000019329,0.0000019301,0.0000019288,0.0000019291, -0.0000019303,0.0000019320,0.0000019339,0.0000019359,0.0000019374, -0.0000019381,0.0000019384,0.0000019393,0.0000019411,0.0000019435, -0.0000019463,0.0000019493,0.0000019523,0.0000019555,0.0000019585, -0.0000019610,0.0000019629,0.0000019638,0.0000019639,0.0000019626, -0.0000019599,0.0000019560,0.0000019512,0.0000019466,0.0000019438, -0.0000019428,0.0000019427,0.0000019436,0.0000019455,0.0000019482, -0.0000019511,0.0000019534,0.0000019552,0.0000019569,0.0000019587, -0.0000019601,0.0000019613,0.0000019625,0.0000019637,0.0000019649, -0.0000019661,0.0000019671,0.0000019679,0.0000019688,0.0000019697, -0.0000019700,0.0000019693,0.0000019679,0.0000019657,0.0000019633, -0.0000019614,0.0000019606,0.0000019614,0.0000019639,0.0000019678, -0.0000019728,0.0000019778,0.0000019821,0.0000019851,0.0000019871, -0.0000019883,0.0000019892,0.0000019905,0.0000019926,0.0000019947, -0.0000019965,0.0000019977,0.0000019979,0.0000019968,0.0000019949, -0.0000019930,0.0000019915,0.0000019903,0.0000019884,0.0000019863, -0.0000019821,0.0000019748,0.0000019668,0.0000019600,0.0000019549, -0.0000019537,0.0000019534,0.0000019550,0.0000019584,0.0000019614, -0.0000019634,0.0000019641,0.0000019637,0.0000019619,0.0000019584, -0.0000019541,0.0000019493,0.0000019452,0.0000019429,0.0000019424, -0.0000019441,0.0000019478,0.0000019532,0.0000019599,0.0000019667, -0.0000019730,0.0000019776,0.0000019800,0.0000019806,0.0000019806, -0.0000019816,0.0000019838,0.0000019867,0.0000019901,0.0000019939, -0.0000019986,0.0000020035,0.0000020075,0.0000020105,0.0000020124, -0.0000020138,0.0000020143,0.0000020140,0.0000020132,0.0000020116, -0.0000020091,0.0000020055,0.0000020014,0.0000019974,0.0000019941, -0.0000019915,0.0000019898,0.0000019884,0.0000019869,0.0000019855, -0.0000019843,0.0000019830,0.0000019810,0.0000019784,0.0000019753, -0.0000019727,0.0000019709,0.0000019698,0.0000019687,0.0000019675, -0.0000019665,0.0000019660,0.0000019655,0.0000019647,0.0000019633, -0.0000019621,0.0000019617,0.0000019625,0.0000019643,0.0000019671, -0.0000019706,0.0000019738,0.0000019762,0.0000019779,0.0000019790, -0.0000019797,0.0000019801,0.0000019803,0.0000019810,0.0000019817, -0.0000019821,0.0000019818,0.0000019810,0.0000019792,0.0000019767, -0.0000019737,0.0000019710,0.0000019692,0.0000019685,0.0000019683, -0.0000019676,0.0000019657,0.0000019617,0.0000019558,0.0000019492, -0.0000019434,0.0000019392,0.0000019357,0.0000019328,0.0000019305, -0.0000019280,0.0000019241,0.0000019191,0.0000019137,0.0000019084, -0.0000019025,0.0000018959,0.0000018892,0.0000018827,0.0000018763, -0.0000018705,0.0000018663,0.0000018640,0.0000018641,0.0000018670, -0.0000018723,0.0000018779,0.0000018808,0.0000018806,0.0000018787, -0.0000018764,0.0000018754,0.0000018762,0.0000018782,0.0000018799, -0.0000018819,0.0000018850,0.0000018881,0.0000018896,0.0000018888, -0.0000018858,0.0000018825,0.0000018811,0.0000018815,0.0000018830, -0.0000018856,0.0000018881,0.0000018897,0.0000018907,0.0000018915, -0.0000018919,0.0000018919,0.0000018908,0.0000018886,0.0000018857, -0.0000018831,0.0000018805,0.0000018775,0.0000018742,0.0000018714, -0.0000018697,0.0000018681,0.0000018675,0.0000018673,0.0000018673, -0.0000018668,0.0000018658,0.0000018647,0.0000018641,0.0000018641, -0.0000018642,0.0000018644,0.0000018647,0.0000018656,0.0000018671, -0.0000018691,0.0000018713,0.0000018732,0.0000018749,0.0000018766, -0.0000018780,0.0000018790,0.0000018803,0.0000018816,0.0000018829, -0.0000018843,0.0000018866,0.0000018901,0.0000018949,0.0000019014, -0.0000019097,0.0000019197,0.0000019305,0.0000019413,0.0000019511, -0.0000019596,0.0000019668,0.0000019720,0.0000019758,0.0000019792, -0.0000019827,0.0000019862,0.0000019895,0.0000019922,0.0000019937, -0.0000019931,0.0000019888,0.0000019810,0.0000019688,0.0000019548, -0.0000019414,0.0000019312,0.0000019247,0.0000019218,0.0000019200, -0.0000019188,0.0000019176,0.0000019160,0.0000019148,0.0000019129, -0.0000019100,0.0000019070,0.0000019051,0.0000019047,0.0000019053, -0.0000019064,0.0000019075,0.0000019087,0.0000019098,0.0000019104, -0.0000019107,0.0000019110,0.0000019114,0.0000019115,0.0000019112, -0.0000019100,0.0000019071,0.0000019027,0.0000018979,0.0000018922, -0.0000018845,0.0000018759,0.0000018699,0.0000018682,0.0000018706, -0.0000018772,0.0000018863,0.0000018950,0.0000019007,0.0000019028, -0.0000019030,0.0000019029,0.0000019028,0.0000019019,0.0000018996, -0.0000018964,0.0000018935,0.0000018904,0.0000018842,0.0000018728, -0.0000018594,0.0000018502,0.0000018484,0.0000018500,0.0000018519, -0.0000018522,0.0000018525,0.0000018533,0.0000018539,0.0000018534, -0.0000018516,0.0000018491,0.0000018461,0.0000018432,0.0000018406, -0.0000018380,0.0000018352,0.0000018325,0.0000018297,0.0000018272, -0.0000018241,0.0000018209,0.0000018183,0.0000018166,0.0000018153, -0.0000018138,0.0000018117,0.0000018103,0.0000018106,0.0000018133, -0.0000018165,0.0000018195,0.0000018223,0.0000018255,0.0000018302, -0.0000018290,0.0000018174,0.0000018086,0.0000018062,0.0000018083, -0.0000018120,0.0000018138,0.0000018139,0.0000018130,0.0000018119, -0.0000018110,0.0000018103,0.0000018094,0.0000018085,0.0000018079, -0.0000018074,0.0000018066,0.0000018056,0.0000018043,0.0000018027, -0.0000018006,0.0000017982,0.0000017957,0.0000017932,0.0000017904, -0.0000017876,0.0000017851,0.0000017831,0.0000017811,0.0000017790, -0.0000017770,0.0000017754,0.0000017743,0.0000017739,0.0000017739, -0.0000017754,0.0000017777,0.0000017803,0.0000017830,0.0000017855, -0.0000017876,0.0000017893,0.0000017907,0.0000017915,0.0000017919, -0.0000017920,0.0000017929,0.0000017944,0.0000017967,0.0000017992, -0.0000018010,0.0000018019,0.0000018022,0.0000018017,0.0000018005, -0.0000017989,0.0000017977,0.0000017975,0.0000017973,0.0000017942, -0.0000017848,0.0000017724,0.0000017655,0.0000017672,0.0000017794, -0.0000017908,0.0000017952,0.0000017965,0.0000018002,0.0000018097, -0.0000018236,0.0000018350,0.0000018386,0.0000018387,0.0000018377, -0.0000018349,0.0000018323,0.0000018327,0.0000018379,0.0000018439, -0.0000018497,0.0000018575,0.0000018657,0.0000018720,0.0000018759, -0.0000018775,0.0000018775,0.0000018762,0.0000018738,0.0000018714, -0.0000018703,0.0000018710,0.0000018732,0.0000018760,0.0000018796, -0.0000018838,0.0000018874,0.0000018898,0.0000018913,0.0000018924, -0.0000018940,0.0000018959,0.0000018977,0.0000018991,0.0000019001, -0.0000019008,0.0000019011,0.0000019009,0.0000018992,0.0000018931, -0.0000018820,0.0000018726,0.0000018703,0.0000018715,0.0000018707, -0.0000018690,0.0000018729,0.0000018767,0.0000018750,0.0000018750, -0.0000018779,0.0000018800,0.0000018876,0.0000019005,0.0000019023, -0.0000018932,0.0000018903,0.0000018983,0.0000019095,0.0000019125, -0.0000019080,0.0000019013,0.0000018968,0.0000018917,0.0000018840, -0.0000018780,0.0000018765,0.0000018740,0.0000018671,0.0000018601, -0.0000018565,0.0000018558,0.0000018562,0.0000018573,0.0000018573, -0.0000018527,0.0000018447,0.0000018401,0.0000018401,0.0000018420, -0.0000018441,0.0000018456,0.0000018455,0.0000018451,0.0000018434, -0.0000018406,0.0000018376,0.0000018350,0.0000018327,0.0000018308, -0.0000018294,0.0000018284,0.0000018279,0.0000018280,0.0000018287, -0.0000018297,0.0000018308,0.0000018317,0.0000018327,0.0000018336, -0.0000018343,0.0000018349,0.0000018353,0.0000018357,0.0000018358, -0.0000018355,0.0000018348,0.0000018335,0.0000018316,0.0000018292, -0.0000018268,0.0000018243,0.0000018218,0.0000018189,0.0000018156, -0.0000018114,0.0000018065,0.0000018009,0.0000017952,0.0000017903, -0.0000017890,0.0000017881,0.0000017890,0.0000017906,0.0000017918, -0.0000017914,0.0000017908,0.0000017909,0.0000017916,0.0000017936, -0.0000017966,0.0000018012,0.0000018078,0.0000018162,0.0000018256, -0.0000018350,0.0000018436,0.0000018508,0.0000018558,0.0000018582, -0.0000018583,0.0000018569,0.0000018547,0.0000018524,0.0000018501, -0.0000018477,0.0000018446,0.0000018409,0.0000018372,0.0000018322, -0.0000018270,0.0000018218,0.0000018167,0.0000018121,0.0000018081, -0.0000018046,0.0000018018,0.0000017998,0.0000017984,0.0000017974, -0.0000017965,0.0000017959,0.0000017954,0.0000017947,0.0000017940, -0.0000017934,0.0000017930,0.0000017928,0.0000017926,0.0000017925, -0.0000017925,0.0000017926,0.0000017927,0.0000017930,0.0000017932, -0.0000017935,0.0000017938,0.0000017942,0.0000017945,0.0000017950, -0.0000017956,0.0000017958,0.0000017955,0.0000017946,0.0000017930, -0.0000017909,0.0000017885,0.0000017859,0.0000017836,0.0000017814, -0.0000017796,0.0000017786,0.0000017784,0.0000017789,0.0000017799, -0.0000017815,0.0000017835,0.0000017858,0.0000017882,0.0000017910, -0.0000017940,0.0000017971,0.0000018000,0.0000018028,0.0000018053, -0.0000018076,0.0000018094,0.0000018109,0.0000018121,0.0000018128, -0.0000018130,0.0000018130,0.0000018131,0.0000018135,0.0000018145, -0.0000018117,0.0000018123,0.0000018138,0.0000018161,0.0000018183, -0.0000018202,0.0000018214,0.0000018217,0.0000018213,0.0000018202, -0.0000018188,0.0000018174,0.0000018163,0.0000018159,0.0000018166, -0.0000018186,0.0000018218,0.0000018263,0.0000018317,0.0000018372, -0.0000018422,0.0000018459,0.0000018481,0.0000018494,0.0000018496, -0.0000018484,0.0000018457,0.0000018419,0.0000018378,0.0000018342, -0.0000018319,0.0000018307,0.0000018299,0.0000018285,0.0000018263, -0.0000018231,0.0000018191,0.0000018144,0.0000018093,0.0000018045, -0.0000018012,0.0000017998,0.0000018006,0.0000018018,0.0000018039, -0.0000018071,0.0000018111,0.0000018151,0.0000018187,0.0000018221, -0.0000018253,0.0000018283,0.0000018312,0.0000018336,0.0000018355, -0.0000018369,0.0000018381,0.0000018391,0.0000018399,0.0000018404, -0.0000018406,0.0000018407,0.0000018408,0.0000018412,0.0000018424, -0.0000018447,0.0000018479,0.0000018517,0.0000018557,0.0000018594, -0.0000018625,0.0000018646,0.0000018654,0.0000018653,0.0000018647, -0.0000018645,0.0000018645,0.0000018652,0.0000018663,0.0000018679, -0.0000018703,0.0000018736,0.0000018773,0.0000018810,0.0000018844, -0.0000018874,0.0000018899,0.0000018923,0.0000018952,0.0000018988, -0.0000019026,0.0000019057,0.0000019074,0.0000019069,0.0000019050, -0.0000019018,0.0000018979,0.0000018938,0.0000018899,0.0000018865, -0.0000018837,0.0000018812,0.0000018783,0.0000018752,0.0000018731, -0.0000018718,0.0000018711,0.0000018702,0.0000018689,0.0000018674, -0.0000018664,0.0000018657,0.0000018658,0.0000018670,0.0000018689, -0.0000018706,0.0000018713,0.0000018714,0.0000018710,0.0000018702, -0.0000018688,0.0000018669,0.0000018644,0.0000018617,0.0000018589, -0.0000018559,0.0000018532,0.0000018510,0.0000018488,0.0000018465, -0.0000018441,0.0000018416,0.0000018393,0.0000018372,0.0000018353, -0.0000018341,0.0000018333,0.0000018332,0.0000018337,0.0000018347, -0.0000018359,0.0000018372,0.0000018376,0.0000018377,0.0000018370, -0.0000018354,0.0000018337,0.0000018321,0.0000018308,0.0000018301, -0.0000018300,0.0000018304,0.0000018313,0.0000018325,0.0000018341, -0.0000018358,0.0000018374,0.0000018388,0.0000018399,0.0000018407, -0.0000018415,0.0000018421,0.0000018426,0.0000018428,0.0000018431, -0.0000018434,0.0000018434,0.0000018430,0.0000018420,0.0000018406, -0.0000018390,0.0000018371,0.0000018348,0.0000018322,0.0000018299, -0.0000018280,0.0000018264,0.0000018252,0.0000018249,0.0000018246, -0.0000018244,0.0000018245,0.0000018250,0.0000018263,0.0000018282, -0.0000018303,0.0000018326,0.0000018346,0.0000018365,0.0000018383, -0.0000018399,0.0000018412,0.0000018425,0.0000018442,0.0000018463, -0.0000018486,0.0000018511,0.0000018534,0.0000018555,0.0000018570, -0.0000018583,0.0000018593,0.0000018599,0.0000018589,0.0000018576, -0.0000018551,0.0000018510,0.0000018454,0.0000018378,0.0000018283, -0.0000018182,0.0000018096,0.0000018037,0.0000018015,0.0000018016, -0.0000018033,0.0000018063,0.0000018101,0.0000018142,0.0000018181, -0.0000018207,0.0000018223,0.0000018222,0.0000018215,0.0000018203, -0.0000018197,0.0000018207,0.0000018234,0.0000018287,0.0000018367, -0.0000018466,0.0000018574,0.0000018679,0.0000018771,0.0000018843, -0.0000018895,0.0000018932,0.0000018962,0.0000018989,0.0000019019, -0.0000019052,0.0000019088,0.0000019125,0.0000019158,0.0000019187, -0.0000019214,0.0000019237,0.0000019255,0.0000019266,0.0000019274, -0.0000019279,0.0000019281,0.0000019280,0.0000019279,0.0000019280, -0.0000019282,0.0000019287,0.0000019293,0.0000019299,0.0000019310, -0.0000019328,0.0000019350,0.0000019376,0.0000019403,0.0000019426, -0.0000019443,0.0000019452,0.0000019452,0.0000019443,0.0000019425, -0.0000019403,0.0000019378,0.0000019351,0.0000019325,0.0000019298, -0.0000019268,0.0000019238,0.0000019209,0.0000019181,0.0000019156, -0.0000019141,0.0000019138,0.0000019147,0.0000019166,0.0000019203, -0.0000019259,0.0000019326,0.0000019404,0.0000019494,0.0000019597, -0.0000019711,0.0000019824,0.0000019927,0.0000020012,0.0000020070, -0.0000020092,0.0000020092,0.0000020100,0.0000020122,0.0000020146, -0.0000020169,0.0000020181,0.0000020170,0.0000020136,0.0000020100, -0.0000020071,0.0000020043,0.0000020010,0.0000019990,0.0000020021, -0.0000020096,0.0000020121,0.0000020101,0.0000020124,0.0000020232, -0.0000020329,0.0000020345,0.0000020315,0.0000020285,0.0000020273, -0.0000020257,0.0000020209,0.0000020142,0.0000020097,0.0000020067, -0.0000020024,0.0000020003,0.0000020039,0.0000020098,0.0000020167, -0.0000020262,0.0000020343,0.0000020358,0.0000020325,0.0000020267, -0.0000020197,0.0000020117,0.0000020044,0.0000020005,0.0000020006, -0.0000020037,0.0000020074,0.0000020101,0.0000020119,0.0000020141, -0.0000020173,0.0000020213,0.0000020256,0.0000020298,0.0000020334, -0.0000020360,0.0000020379,0.0000020391,0.0000020398,0.0000020400, -0.0000020398,0.0000020395,0.0000020391,0.0000020388,0.0000020386, -0.0000020385,0.0000020385,0.0000020389,0.0000020398,0.0000020413, -0.0000020425,0.0000020426,0.0000020418,0.0000020399,0.0000020374, -0.0000020347,0.0000020318,0.0000020296,0.0000020273,0.0000020257, -0.0000020244,0.0000020233,0.0000020225,0.0000020220,0.0000020216, -0.0000020209,0.0000020200,0.0000020191,0.0000020186,0.0000020185, -0.0000020186,0.0000020189,0.0000020192,0.0000020193,0.0000020188, -0.0000020182,0.0000020176,0.0000020167,0.0000020158,0.0000020153, -0.0000020151,0.0000020150,0.0000020149,0.0000020149,0.0000020151, -0.0000020152,0.0000020153,0.0000020155,0.0000020156,0.0000020157, -0.0000020153,0.0000020143,0.0000020127,0.0000020106,0.0000020083, -0.0000020060,0.0000020036,0.0000020008,0.0000019980,0.0000019955, -0.0000019936,0.0000019921,0.0000019909,0.0000019904,0.0000019904, -0.0000019911,0.0000019919,0.0000019923,0.0000019923,0.0000019921, -0.0000019916,0.0000019909,0.0000019900,0.0000019888,0.0000019871, -0.0000019847,0.0000019821,0.0000019796,0.0000019778,0.0000019764, -0.0000019755,0.0000019751,0.0000019751,0.0000019751,0.0000019745, -0.0000019740,0.0000019727,0.0000019711,0.0000019694,0.0000019673, -0.0000019650,0.0000019627,0.0000019605,0.0000019583,0.0000019563, -0.0000019546,0.0000019535,0.0000019528,0.0000019529,0.0000019532, -0.0000019537,0.0000019545,0.0000019555,0.0000019566,0.0000019577, -0.0000019590,0.0000019603,0.0000019615,0.0000019628,0.0000019640, -0.0000019653,0.0000019666,0.0000019679,0.0000019692,0.0000019703, -0.0000019714,0.0000019723,0.0000019728,0.0000019736,0.0000019745, -0.0000019759,0.0000019780,0.0000019804,0.0000019828,0.0000019851, -0.0000019875,0.0000019898,0.0000019921,0.0000019943,0.0000019964, -0.0000019981,0.0000020000,0.0000020021,0.0000020038,0.0000020056, -0.0000020072,0.0000020084,0.0000020095,0.0000020106,0.0000020115, -0.0000020126,0.0000020143,0.0000020163,0.0000020185,0.0000020209, -0.0000020234,0.0000020256,0.0000020281,0.0000020304,0.0000020321, -0.0000020334,0.0000020344,0.0000020352,0.0000020359,0.0000020369, -0.0000020379,0.0000020391,0.0000020398,0.0000020401,0.0000020401, -0.0000020398,0.0000020393,0.0000020394,0.0000020390,0.0000020386, -0.0000020383,0.0000020377,0.0000020369,0.0000020363,0.0000020356, -0.0000020354,0.0000020364,0.0000020380,0.0000020403,0.0000020434, -0.0000020464,0.0000020492,0.0000020521,0.0000020550,0.0000020575, -0.0000020597,0.0000020614,0.0000020625,0.0000020626,0.0000020627, -0.0000020626,0.0000020621,0.0000020613,0.0000020611,0.0000020610, -0.0000020607,0.0000020602,0.0000020597,0.0000020592,0.0000020590, -0.0000020588,0.0000020587,0.0000020585,0.0000020582,0.0000020580, -0.0000020573,0.0000020554,0.0000020528,0.0000020498,0.0000020466, -0.0000020435,0.0000020411,0.0000020395,0.0000020391,0.0000020393, -0.0000020403,0.0000020420,0.0000020440,0.0000020458,0.0000020470, -0.0000020480,0.0000020487,0.0000020494,0.0000020498,0.0000020499, -0.0000020498,0.0000020496,0.0000020487,0.0000020473,0.0000020456, -0.0000020443,0.0000020424,0.0000020399,0.0000020376,0.0000020361, -0.0000020353,0.0000020349,0.0000020342,0.0000020334,0.0000020335, -0.0000020347,0.0000020373,0.0000020409,0.0000020447,0.0000020473, -0.0000020485,0.0000020489,0.0000020498,0.0000020519,0.0000020549, -0.0000020582,0.0000020620,0.0000020635,0.0000020632,0.0000020596, -0.0000020531,0.0000020457,0.0000020390,0.0000020342,0.0000020309, -0.0000020290,0.0000020282,0.0000020278,0.0000020272,0.0000020262, -0.0000020247,0.0000020233,0.0000020220,0.0000020214,0.0000020215, -0.0000020214,0.0000020219,0.0000020228,0.0000020241,0.0000020250, -0.0000020255,0.0000020260,0.0000020264,0.0000020267,0.0000020274, -0.0000020288,0.0000020305,0.0000020321,0.0000020335,0.0000020342, -0.0000020340,0.0000020329,0.0000020314,0.0000020300,0.0000020291, -0.0000020290,0.0000020298,0.0000020314,0.0000020334,0.0000020358, -0.0000020384,0.0000020411,0.0000020442,0.0000020473,0.0000020497, -0.0000020513,0.0000020520,0.0000020512,0.0000020505,0.0000020484, -0.0000020454,0.0000020420,0.0000020386,0.0000020358,0.0000020334, -0.0000020318,0.0000020314,0.0000020324,0.0000020342,0.0000020361, -0.0000020378,0.0000020396,0.0000020415,0.0000020432,0.0000020441, -0.0000020442,0.0000020442,0.0000020434,0.0000020422,0.0000020406, -0.0000020386,0.0000020359,0.0000020328,0.0000020300,0.0000020274, -0.0000020247,0.0000020215,0.0000020180,0.0000020146,0.0000020115, -0.0000020086,0.0000020059,0.0000020035,0.0000020008,0.0000019979, -0.0000019950,0.0000019927,0.0000019905,0.0000019883,0.0000019862, -0.0000019839,0.0000019807,0.0000019771,0.0000019736,0.0000019699, -0.0000019664,0.0000019635,0.0000019610,0.0000019591,0.0000019582, -0.0000019581,0.0000019589,0.0000019602,0.0000019619,0.0000019635, -0.0000019650,0.0000019664,0.0000019676,0.0000019681,0.0000019681, -0.0000019674,0.0000019659,0.0000019637,0.0000019604,0.0000019561, -0.0000019513,0.0000019460,0.0000019400,0.0000019336,0.0000019279, -0.0000019231,0.0000019198,0.0000019181,0.0000019180,0.0000019190, -0.0000019207,0.0000019232,0.0000019261,0.0000019285,0.0000019301, -0.0000019312,0.0000019328,0.0000019350,0.0000019374,0.0000019398, -0.0000019422,0.0000019447,0.0000019470,0.0000019489,0.0000019503, -0.0000019511,0.0000019514,0.0000019513,0.0000019504,0.0000019481, -0.0000019443,0.0000019396,0.0000019358,0.0000019334,0.0000019318, -0.0000019315,0.0000019327,0.0000019355,0.0000019392,0.0000019423, -0.0000019445,0.0000019461,0.0000019475,0.0000019487,0.0000019500, -0.0000019512,0.0000019526,0.0000019542,0.0000019562,0.0000019584, -0.0000019605,0.0000019622,0.0000019636,0.0000019650,0.0000019662, -0.0000019672,0.0000019671,0.0000019673,0.0000019665,0.0000019647, -0.0000019629,0.0000019613,0.0000019603,0.0000019613,0.0000019640, -0.0000019674,0.0000019710,0.0000019739,0.0000019760,0.0000019773, -0.0000019786,0.0000019806,0.0000019832,0.0000019866,0.0000019907, -0.0000019939,0.0000019953,0.0000019946,0.0000019924,0.0000019904, -0.0000019884,0.0000019867,0.0000019861,0.0000019841,0.0000019819, -0.0000019776,0.0000019714,0.0000019648,0.0000019589,0.0000019541, -0.0000019530,0.0000019524,0.0000019536,0.0000019563,0.0000019588, -0.0000019608,0.0000019617,0.0000019610,0.0000019589,0.0000019556, -0.0000019518,0.0000019477,0.0000019446,0.0000019433,0.0000019438, -0.0000019465,0.0000019511,0.0000019572,0.0000019634,0.0000019690, -0.0000019736,0.0000019761,0.0000019769,0.0000019770,0.0000019766, -0.0000019761,0.0000019766,0.0000019782,0.0000019818,0.0000019868, -0.0000019918,0.0000019964,0.0000020003,0.0000020037,0.0000020063, -0.0000020077,0.0000020079,0.0000020072,0.0000020052,0.0000020021, -0.0000019981,0.0000019938,0.0000019899,0.0000019868,0.0000019847, -0.0000019831,0.0000019819,0.0000019811,0.0000019811,0.0000019810, -0.0000019803,0.0000019792,0.0000019774,0.0000019757,0.0000019745, -0.0000019738,0.0000019729,0.0000019713,0.0000019696,0.0000019681, -0.0000019668,0.0000019649,0.0000019626,0.0000019603,0.0000019589, -0.0000019588,0.0000019599,0.0000019623,0.0000019655,0.0000019686, -0.0000019710,0.0000019727,0.0000019740,0.0000019748,0.0000019755, -0.0000019765,0.0000019777,0.0000019789,0.0000019798,0.0000019802, -0.0000019802,0.0000019791,0.0000019760,0.0000019722,0.0000019695, -0.0000019683,0.0000019678,0.0000019672,0.0000019651,0.0000019614, -0.0000019562,0.0000019500,0.0000019443,0.0000019398,0.0000019365, -0.0000019336,0.0000019312,0.0000019294,0.0000019270,0.0000019241, -0.0000019201,0.0000019150,0.0000019092,0.0000019028,0.0000018957, -0.0000018885,0.0000018817,0.0000018751,0.0000018692,0.0000018647, -0.0000018617,0.0000018614,0.0000018633,0.0000018669,0.0000018720, -0.0000018771,0.0000018793,0.0000018782,0.0000018757,0.0000018734, -0.0000018733,0.0000018752,0.0000018772,0.0000018789,0.0000018805, -0.0000018826,0.0000018850,0.0000018858,0.0000018834,0.0000018802, -0.0000018781,0.0000018775,0.0000018781,0.0000018798,0.0000018819, -0.0000018839,0.0000018857,0.0000018872,0.0000018884,0.0000018895, -0.0000018892,0.0000018871,0.0000018849,0.0000018831,0.0000018811, -0.0000018784,0.0000018749,0.0000018715,0.0000018681,0.0000018651, -0.0000018631,0.0000018620,0.0000018615,0.0000018608,0.0000018596, -0.0000018587,0.0000018585,0.0000018586,0.0000018591,0.0000018594, -0.0000018599,0.0000018606,0.0000018617,0.0000018633,0.0000018652, -0.0000018673,0.0000018694,0.0000018714,0.0000018729,0.0000018739, -0.0000018750,0.0000018763,0.0000018775,0.0000018787,0.0000018803, -0.0000018822,0.0000018848,0.0000018884,0.0000018934,0.0000019003, -0.0000019091,0.0000019192,0.0000019300,0.0000019412,0.0000019521, -0.0000019615,0.0000019690,0.0000019750,0.0000019797,0.0000019833, -0.0000019862,0.0000019888,0.0000019910,0.0000019919,0.0000019911, -0.0000019863,0.0000019775,0.0000019646,0.0000019503,0.0000019368, -0.0000019265,0.0000019205,0.0000019180,0.0000019168,0.0000019159, -0.0000019159,0.0000019159,0.0000019153,0.0000019137,0.0000019116, -0.0000019096,0.0000019085,0.0000019084,0.0000019089,0.0000019095, -0.0000019099,0.0000019101,0.0000019100,0.0000019099,0.0000019100, -0.0000019103,0.0000019105,0.0000019104,0.0000019095,0.0000019068, -0.0000019028,0.0000018983,0.0000018932,0.0000018865,0.0000018784, -0.0000018715,0.0000018691,0.0000018702,0.0000018752,0.0000018835, -0.0000018926,0.0000018993,0.0000019022,0.0000019024,0.0000019018, -0.0000019012,0.0000019002,0.0000018989,0.0000018967,0.0000018944, -0.0000018923,0.0000018874,0.0000018769,0.0000018629,0.0000018521, -0.0000018483,0.0000018489,0.0000018504,0.0000018510,0.0000018512, -0.0000018518,0.0000018524,0.0000018520,0.0000018504,0.0000018477, -0.0000018444,0.0000018408,0.0000018375,0.0000018343,0.0000018312, -0.0000018284,0.0000018260,0.0000018235,0.0000018213,0.0000018193, -0.0000018176,0.0000018163,0.0000018150,0.0000018133,0.0000018123, -0.0000018129,0.0000018152,0.0000018178,0.0000018204,0.0000018225, -0.0000018245,0.0000018288,0.0000018290,0.0000018183,0.0000018085, -0.0000018065,0.0000018105,0.0000018151,0.0000018157,0.0000018150, -0.0000018138,0.0000018126,0.0000018115,0.0000018105,0.0000018099, -0.0000018089,0.0000018078,0.0000018069,0.0000018060,0.0000018051, -0.0000018042,0.0000018030,0.0000018009,0.0000017984,0.0000017957, -0.0000017927,0.0000017897,0.0000017869,0.0000017840,0.0000017817, -0.0000017800,0.0000017787,0.0000017774,0.0000017762,0.0000017751, -0.0000017744,0.0000017739,0.0000017740,0.0000017751,0.0000017764, -0.0000017785,0.0000017809,0.0000017834,0.0000017858,0.0000017878, -0.0000017892,0.0000017900,0.0000017907,0.0000017920,0.0000017943, -0.0000017970,0.0000017996,0.0000018014,0.0000018023,0.0000018024, -0.0000018017,0.0000018007,0.0000017996,0.0000017993,0.0000017997, -0.0000017992,0.0000017940,0.0000017829,0.0000017718,0.0000017683, -0.0000017744,0.0000017879,0.0000017968,0.0000017995,0.0000018013, -0.0000018071,0.0000018187,0.0000018321,0.0000018395,0.0000018407, -0.0000018404,0.0000018388,0.0000018360,0.0000018350,0.0000018375, -0.0000018430,0.0000018491,0.0000018559,0.0000018636,0.0000018702, -0.0000018743,0.0000018764,0.0000018771,0.0000018768,0.0000018751, -0.0000018725,0.0000018702,0.0000018692,0.0000018696,0.0000018711, -0.0000018733,0.0000018765,0.0000018801,0.0000018838,0.0000018876, -0.0000018908,0.0000018933,0.0000018955,0.0000018979,0.0000018998, -0.0000019011,0.0000019019,0.0000019020,0.0000019017,0.0000018998, -0.0000018923,0.0000018800,0.0000018701,0.0000018675,0.0000018695, -0.0000018705,0.0000018685,0.0000018697,0.0000018752,0.0000018747, -0.0000018727,0.0000018747,0.0000018769,0.0000018818,0.0000018958, -0.0000019035,0.0000018965,0.0000018884,0.0000018900,0.0000018999, -0.0000019095,0.0000019118,0.0000019096,0.0000019062,0.0000019031, -0.0000018956,0.0000018840,0.0000018770,0.0000018754,0.0000018708, -0.0000018629,0.0000018567,0.0000018541,0.0000018539,0.0000018543, -0.0000018547,0.0000018536,0.0000018486,0.0000018422,0.0000018396, -0.0000018402,0.0000018419,0.0000018436,0.0000018447,0.0000018454, -0.0000018454,0.0000018452,0.0000018446,0.0000018438,0.0000018428, -0.0000018416,0.0000018404,0.0000018393,0.0000018383,0.0000018377, -0.0000018374,0.0000018375,0.0000018378,0.0000018382,0.0000018386, -0.0000018390,0.0000018393,0.0000018397,0.0000018403,0.0000018412, -0.0000018422,0.0000018431,0.0000018434,0.0000018433,0.0000018423, -0.0000018404,0.0000018380,0.0000018350,0.0000018317,0.0000018283, -0.0000018251,0.0000018220,0.0000018187,0.0000018148,0.0000018102, -0.0000018050,0.0000017995,0.0000017943,0.0000017896,0.0000017875, -0.0000017870,0.0000017881,0.0000017899,0.0000017913,0.0000017916, -0.0000017923,0.0000017931,0.0000017942,0.0000017960,0.0000017987, -0.0000018031,0.0000018094,0.0000018171,0.0000018259,0.0000018350, -0.0000018429,0.0000018489,0.0000018521,0.0000018528,0.0000018516, -0.0000018492,0.0000018464,0.0000018434,0.0000018404,0.0000018373, -0.0000018336,0.0000018291,0.0000018248,0.0000018201,0.0000018156, -0.0000018114,0.0000018074,0.0000018040,0.0000018014,0.0000017996, -0.0000017984,0.0000017973,0.0000017966,0.0000017961,0.0000017956, -0.0000017950,0.0000017941,0.0000017935,0.0000017925,0.0000017917, -0.0000017909,0.0000017902,0.0000017900,0.0000017900,0.0000017903, -0.0000017906,0.0000017910,0.0000017914,0.0000017919,0.0000017924, -0.0000017929,0.0000017936,0.0000017943,0.0000017947,0.0000017945, -0.0000017936,0.0000017924,0.0000017906,0.0000017885,0.0000017866, -0.0000017847,0.0000017827,0.0000017810,0.0000017802,0.0000017801, -0.0000017805,0.0000017814,0.0000017826,0.0000017839,0.0000017851, -0.0000017864,0.0000017881,0.0000017903,0.0000017927,0.0000017951, -0.0000017976,0.0000018002,0.0000018028,0.0000018052,0.0000018072, -0.0000018089,0.0000018101,0.0000018110,0.0000018114,0.0000018115, -0.0000018116,0.0000018106,0.0000018107,0.0000018109,0.0000018116, -0.0000018127,0.0000018138,0.0000018147,0.0000018153,0.0000018153, -0.0000018147,0.0000018134,0.0000018117,0.0000018099,0.0000018082, -0.0000018073,0.0000018073,0.0000018085,0.0000018110,0.0000018146, -0.0000018193,0.0000018252,0.0000018319,0.0000018383,0.0000018436, -0.0000018473,0.0000018495,0.0000018500,0.0000018491,0.0000018468, -0.0000018434,0.0000018397,0.0000018367,0.0000018346,0.0000018332, -0.0000018323,0.0000018312,0.0000018294,0.0000018264,0.0000018222, -0.0000018169,0.0000018112,0.0000018062,0.0000018029,0.0000018018, -0.0000018028,0.0000018044,0.0000018068,0.0000018098,0.0000018126, -0.0000018151,0.0000018176,0.0000018202,0.0000018229,0.0000018251, -0.0000018266,0.0000018277,0.0000018287,0.0000018301,0.0000018319, -0.0000018336,0.0000018351,0.0000018363,0.0000018373,0.0000018381, -0.0000018388,0.0000018396,0.0000018405,0.0000018417,0.0000018437, -0.0000018465,0.0000018499,0.0000018537,0.0000018570,0.0000018595, -0.0000018610,0.0000018618,0.0000018620,0.0000018621,0.0000018624, -0.0000018629,0.0000018644,0.0000018674,0.0000018714,0.0000018754, -0.0000018791,0.0000018822,0.0000018846,0.0000018866,0.0000018885, -0.0000018906,0.0000018933,0.0000018963,0.0000018993,0.0000019017, -0.0000019025,0.0000019013,0.0000018987,0.0000018947,0.0000018905, -0.0000018868,0.0000018840,0.0000018815,0.0000018788,0.0000018759, -0.0000018737,0.0000018721,0.0000018711,0.0000018702,0.0000018691, -0.0000018678,0.0000018665,0.0000018656,0.0000018650,0.0000018654, -0.0000018670,0.0000018691,0.0000018705,0.0000018712,0.0000018711, -0.0000018708,0.0000018699,0.0000018683,0.0000018661,0.0000018636, -0.0000018608,0.0000018575,0.0000018544,0.0000018515,0.0000018488, -0.0000018464,0.0000018443,0.0000018423,0.0000018402,0.0000018382, -0.0000018366,0.0000018354,0.0000018344,0.0000018337,0.0000018335, -0.0000018336,0.0000018340,0.0000018351,0.0000018361,0.0000018372, -0.0000018374,0.0000018378,0.0000018377,0.0000018375,0.0000018374, -0.0000018374,0.0000018374,0.0000018375,0.0000018377,0.0000018382, -0.0000018392,0.0000018406,0.0000018419,0.0000018432,0.0000018443, -0.0000018450,0.0000018454,0.0000018457,0.0000018457,0.0000018455, -0.0000018454,0.0000018454,0.0000018452,0.0000018447,0.0000018438, -0.0000018427,0.0000018413,0.0000018395,0.0000018376,0.0000018354, -0.0000018333,0.0000018316,0.0000018299,0.0000018283,0.0000018271, -0.0000018262,0.0000018256,0.0000018251,0.0000018250,0.0000018257, -0.0000018269,0.0000018283,0.0000018296,0.0000018310,0.0000018326, -0.0000018343,0.0000018359,0.0000018371,0.0000018380,0.0000018389, -0.0000018401,0.0000018415,0.0000018431,0.0000018450,0.0000018469, -0.0000018488,0.0000018509,0.0000018530,0.0000018549,0.0000018559, -0.0000018559,0.0000018544,0.0000018533,0.0000018510,0.0000018473, -0.0000018412,0.0000018327,0.0000018226,0.0000018130,0.0000018050, -0.0000018014,0.0000017993,0.0000017996,0.0000018015,0.0000018049, -0.0000018090,0.0000018133,0.0000018173,0.0000018197,0.0000018202, -0.0000018195,0.0000018182,0.0000018168,0.0000018161,0.0000018169, -0.0000018192,0.0000018236,0.0000018301,0.0000018383,0.0000018477, -0.0000018574,0.0000018666,0.0000018748,0.0000018814,0.0000018863, -0.0000018895,0.0000018917,0.0000018932,0.0000018942,0.0000018950, -0.0000018960,0.0000018971,0.0000018984,0.0000018998,0.0000019012, -0.0000019027,0.0000019040,0.0000019051,0.0000019058,0.0000019065, -0.0000019074,0.0000019087,0.0000019100,0.0000019113,0.0000019125, -0.0000019142,0.0000019164,0.0000019189,0.0000019217,0.0000019244, -0.0000019269,0.0000019289,0.0000019303,0.0000019308,0.0000019303, -0.0000019291,0.0000019273,0.0000019250,0.0000019226,0.0000019203, -0.0000019178,0.0000019149,0.0000019118,0.0000019088,0.0000019060, -0.0000019035,0.0000019017,0.0000019007,0.0000019007,0.0000019022, -0.0000019057,0.0000019113,0.0000019186,0.0000019271,0.0000019368, -0.0000019479,0.0000019601,0.0000019726,0.0000019840,0.0000019940, -0.0000020019,0.0000020063,0.0000020069,0.0000020069,0.0000020085, -0.0000020111,0.0000020138,0.0000020157,0.0000020153,0.0000020133, -0.0000020105,0.0000020072,0.0000020033,0.0000019994,0.0000019984, -0.0000020037,0.0000020105,0.0000020106,0.0000020084,0.0000020121, -0.0000020236,0.0000020327,0.0000020335,0.0000020305,0.0000020273, -0.0000020254,0.0000020234,0.0000020188,0.0000020125,0.0000020083, -0.0000020054,0.0000020016,0.0000020003,0.0000020041,0.0000020098, -0.0000020155,0.0000020234,0.0000020308,0.0000020328,0.0000020300, -0.0000020251,0.0000020190,0.0000020121,0.0000020049,0.0000019996, -0.0000019977,0.0000019986,0.0000020011,0.0000020036,0.0000020053, -0.0000020060,0.0000020065,0.0000020074,0.0000020089,0.0000020110, -0.0000020135,0.0000020163,0.0000020195,0.0000020228,0.0000020260, -0.0000020287,0.0000020311,0.0000020332,0.0000020349,0.0000020359, -0.0000020359,0.0000020352,0.0000020340,0.0000020329,0.0000020321, -0.0000020319,0.0000020326,0.0000020340,0.0000020349,0.0000020349, -0.0000020338,0.0000020317,0.0000020292,0.0000020266,0.0000020241, -0.0000020217,0.0000020192,0.0000020165,0.0000020141,0.0000020119, -0.0000020098,0.0000020080,0.0000020064,0.0000020051,0.0000020043, -0.0000020040,0.0000020039,0.0000020039,0.0000020037,0.0000020032, -0.0000020028,0.0000020025,0.0000020018,0.0000020005,0.0000019993, -0.0000019987,0.0000019985,0.0000019984,0.0000019985,0.0000019987, -0.0000019986,0.0000019982,0.0000019981,0.0000019983,0.0000019985, -0.0000019984,0.0000019978,0.0000019967,0.0000019953,0.0000019940, -0.0000019925,0.0000019911,0.0000019895,0.0000019876,0.0000019860, -0.0000019849,0.0000019841,0.0000019835,0.0000019833,0.0000019836, -0.0000019847,0.0000019859,0.0000019869,0.0000019877,0.0000019884, -0.0000019887,0.0000019885,0.0000019878,0.0000019867,0.0000019851, -0.0000019832,0.0000019810,0.0000019789,0.0000019770,0.0000019753, -0.0000019740,0.0000019731,0.0000019729,0.0000019730,0.0000019731, -0.0000019729,0.0000019723,0.0000019712,0.0000019697,0.0000019677, -0.0000019652,0.0000019625,0.0000019598,0.0000019571,0.0000019546, -0.0000019523,0.0000019502,0.0000019488,0.0000019481,0.0000019479, -0.0000019479,0.0000019482,0.0000019488,0.0000019494,0.0000019502, -0.0000019511,0.0000019520,0.0000019530,0.0000019542,0.0000019554, -0.0000019568,0.0000019583,0.0000019599,0.0000019614,0.0000019631, -0.0000019647,0.0000019663,0.0000019674,0.0000019686,0.0000019699, -0.0000019712,0.0000019728,0.0000019748,0.0000019771,0.0000019793, -0.0000019814,0.0000019835,0.0000019856,0.0000019876,0.0000019893, -0.0000019909,0.0000019923,0.0000019937,0.0000019948,0.0000019957, -0.0000019965,0.0000019970,0.0000019973,0.0000019973,0.0000019973, -0.0000019975,0.0000019983,0.0000019991,0.0000020003,0.0000020015, -0.0000020029,0.0000020041,0.0000020056,0.0000020076,0.0000020097, -0.0000020116,0.0000020132,0.0000020146,0.0000020164,0.0000020186, -0.0000020210,0.0000020236,0.0000020260,0.0000020285,0.0000020310, -0.0000020335,0.0000020355,0.0000020368,0.0000020378,0.0000020391, -0.0000020402,0.0000020404,0.0000020403,0.0000020404,0.0000020399, -0.0000020398,0.0000020408,0.0000020422,0.0000020444,0.0000020471, -0.0000020496,0.0000020516,0.0000020537,0.0000020560,0.0000020579, -0.0000020594,0.0000020607,0.0000020618,0.0000020625,0.0000020630, -0.0000020634,0.0000020629,0.0000020623,0.0000020625,0.0000020633, -0.0000020641,0.0000020642,0.0000020638,0.0000020631,0.0000020623, -0.0000020613,0.0000020604,0.0000020594,0.0000020582,0.0000020572, -0.0000020560,0.0000020542,0.0000020517,0.0000020491,0.0000020462, -0.0000020433,0.0000020409,0.0000020393,0.0000020390,0.0000020397, -0.0000020409,0.0000020427,0.0000020449,0.0000020467,0.0000020477, -0.0000020483,0.0000020485,0.0000020485,0.0000020482,0.0000020477, -0.0000020471,0.0000020463,0.0000020453,0.0000020440,0.0000020428, -0.0000020420,0.0000020412,0.0000020404,0.0000020389,0.0000020371, -0.0000020358,0.0000020349,0.0000020341,0.0000020332,0.0000020325, -0.0000020314,0.0000020312,0.0000020324,0.0000020350,0.0000020386, -0.0000020424,0.0000020453,0.0000020471,0.0000020483,0.0000020495, -0.0000020514,0.0000020544,0.0000020576,0.0000020606,0.0000020616, -0.0000020604,0.0000020561,0.0000020499,0.0000020433,0.0000020375, -0.0000020336,0.0000020319,0.0000020319,0.0000020323,0.0000020321, -0.0000020311,0.0000020291,0.0000020267,0.0000020245,0.0000020227, -0.0000020222,0.0000020219,0.0000020219,0.0000020226,0.0000020230, -0.0000020231,0.0000020227,0.0000020221,0.0000020215,0.0000020212, -0.0000020213,0.0000020216,0.0000020226,0.0000020239,0.0000020249, -0.0000020251,0.0000020247,0.0000020240,0.0000020229,0.0000020217, -0.0000020210,0.0000020209,0.0000020214,0.0000020223,0.0000020235, -0.0000020252,0.0000020277,0.0000020310,0.0000020346,0.0000020381, -0.0000020412,0.0000020437,0.0000020457,0.0000020465,0.0000020459, -0.0000020436,0.0000020412,0.0000020380,0.0000020352,0.0000020330, -0.0000020314,0.0000020308,0.0000020308,0.0000020313,0.0000020326, -0.0000020345,0.0000020363,0.0000020383,0.0000020406,0.0000020424, -0.0000020433,0.0000020433,0.0000020425,0.0000020411,0.0000020393, -0.0000020372,0.0000020345,0.0000020314,0.0000020284,0.0000020254, -0.0000020221,0.0000020185,0.0000020147,0.0000020108,0.0000020072, -0.0000020043,0.0000020019,0.0000019994,0.0000019965,0.0000019935, -0.0000019909,0.0000019885,0.0000019863,0.0000019843,0.0000019820, -0.0000019789,0.0000019755,0.0000019720,0.0000019683,0.0000019645, -0.0000019611,0.0000019581,0.0000019555,0.0000019534,0.0000019519, -0.0000019513,0.0000019515,0.0000019523,0.0000019537,0.0000019553, -0.0000019571,0.0000019587,0.0000019601,0.0000019610,0.0000019611, -0.0000019607,0.0000019594,0.0000019567,0.0000019528,0.0000019484, -0.0000019439,0.0000019388,0.0000019330,0.0000019270,0.0000019216, -0.0000019175,0.0000019136,0.0000019108,0.0000019090,0.0000019087, -0.0000019101,0.0000019125,0.0000019154,0.0000019180,0.0000019199, -0.0000019217,0.0000019241,0.0000019269,0.0000019297,0.0000019324, -0.0000019349,0.0000019373,0.0000019392,0.0000019401,0.0000019400, -0.0000019392,0.0000019381,0.0000019368,0.0000019351,0.0000019328, -0.0000019302,0.0000019281,0.0000019264,0.0000019246,0.0000019231, -0.0000019228,0.0000019241,0.0000019264,0.0000019290,0.0000019314, -0.0000019335,0.0000019353,0.0000019371,0.0000019386,0.0000019396, -0.0000019403,0.0000019411,0.0000019425,0.0000019446,0.0000019474, -0.0000019505,0.0000019536,0.0000019566,0.0000019591,0.0000019611, -0.0000019628,0.0000019644,0.0000019657,0.0000019664,0.0000019671, -0.0000019661,0.0000019640,0.0000019615,0.0000019602,0.0000019587, -0.0000019588,0.0000019602,0.0000019622,0.0000019641,0.0000019663, -0.0000019685,0.0000019711,0.0000019743,0.0000019781,0.0000019824, -0.0000019862,0.0000019884,0.0000019886,0.0000019875,0.0000019854, -0.0000019832,0.0000019816,0.0000019809,0.0000019807,0.0000019791, -0.0000019779,0.0000019745,0.0000019694,0.0000019635,0.0000019582, -0.0000019537,0.0000019516,0.0000019506,0.0000019514,0.0000019534, -0.0000019556,0.0000019573,0.0000019579,0.0000019569,0.0000019557, -0.0000019534,0.0000019502,0.0000019477,0.0000019457,0.0000019458, -0.0000019468,0.0000019494,0.0000019534,0.0000019582,0.0000019632, -0.0000019678,0.0000019712,0.0000019729,0.0000019730,0.0000019722, -0.0000019708,0.0000019699,0.0000019703,0.0000019720,0.0000019747, -0.0000019779,0.0000019817,0.0000019856,0.0000019894,0.0000019926, -0.0000019948,0.0000019962,0.0000019967,0.0000019961,0.0000019941, -0.0000019910,0.0000019874,0.0000019840,0.0000019814,0.0000019796, -0.0000019784,0.0000019780,0.0000019782,0.0000019789,0.0000019794, -0.0000019792,0.0000019788,0.0000019783,0.0000019779,0.0000019775, -0.0000019767,0.0000019750,0.0000019726,0.0000019702,0.0000019678, -0.0000019649,0.0000019618,0.0000019588,0.0000019567,0.0000019554, -0.0000019553,0.0000019567,0.0000019590,0.0000019619,0.0000019648, -0.0000019671,0.0000019688,0.0000019702,0.0000019714,0.0000019727, -0.0000019742,0.0000019758,0.0000019771,0.0000019782,0.0000019784, -0.0000019765,0.0000019726,0.0000019686,0.0000019660,0.0000019649, -0.0000019644,0.0000019631,0.0000019603,0.0000019558,0.0000019504, -0.0000019448,0.0000019402,0.0000019367,0.0000019339,0.0000019314, -0.0000019296,0.0000019277,0.0000019255,0.0000019230,0.0000019193, -0.0000019143,0.0000019087,0.0000019026,0.0000018955,0.0000018878, -0.0000018806,0.0000018741,0.0000018681,0.0000018634,0.0000018605, -0.0000018596,0.0000018601,0.0000018615,0.0000018646,0.0000018698, -0.0000018747,0.0000018762,0.0000018746,0.0000018720,0.0000018707, -0.0000018717,0.0000018739,0.0000018757,0.0000018764,0.0000018774, -0.0000018797,0.0000018814,0.0000018805,0.0000018781,0.0000018753, -0.0000018737,0.0000018735,0.0000018743,0.0000018761,0.0000018782, -0.0000018805,0.0000018825,0.0000018844,0.0000018860,0.0000018860, -0.0000018844,0.0000018831,0.0000018819,0.0000018800,0.0000018778, -0.0000018748,0.0000018713,0.0000018674,0.0000018634,0.0000018601, -0.0000018579,0.0000018565,0.0000018551,0.0000018535,0.0000018527, -0.0000018523,0.0000018525,0.0000018530,0.0000018535,0.0000018541, -0.0000018547,0.0000018556,0.0000018570,0.0000018591,0.0000018612, -0.0000018634,0.0000018655,0.0000018670,0.0000018678,0.0000018689, -0.0000018701,0.0000018712,0.0000018726,0.0000018745,0.0000018765, -0.0000018787,0.0000018810,0.0000018840,0.0000018881,0.0000018933, -0.0000019000,0.0000019084,0.0000019189,0.0000019307,0.0000019429, -0.0000019545,0.0000019650,0.0000019735,0.0000019797,0.0000019837, -0.0000019864,0.0000019883,0.0000019898,0.0000019897,0.0000019883, -0.0000019830,0.0000019736,0.0000019604,0.0000019455,0.0000019320, -0.0000019222,0.0000019169,0.0000019145,0.0000019136,0.0000019140, -0.0000019153,0.0000019160,0.0000019165,0.0000019157,0.0000019142, -0.0000019128,0.0000019121,0.0000019119,0.0000019118,0.0000019115, -0.0000019107,0.0000019099,0.0000019095,0.0000019094,0.0000019098, -0.0000019103,0.0000019103,0.0000019094,0.0000019071,0.0000019035, -0.0000018993,0.0000018948,0.0000018890,0.0000018817,0.0000018747, -0.0000018705,0.0000018703,0.0000018738,0.0000018812,0.0000018903, -0.0000018978,0.0000019016,0.0000019017,0.0000019007,0.0000018996, -0.0000018991,0.0000018985,0.0000018970,0.0000018952,0.0000018935, -0.0000018894,0.0000018795,0.0000018652,0.0000018528,0.0000018474, -0.0000018470,0.0000018486,0.0000018491,0.0000018491,0.0000018498, -0.0000018506,0.0000018502,0.0000018490,0.0000018463,0.0000018423, -0.0000018381,0.0000018341,0.0000018305,0.0000018272,0.0000018245, -0.0000018226,0.0000018215,0.0000018205,0.0000018194,0.0000018184, -0.0000018174,0.0000018161,0.0000018154,0.0000018158,0.0000018175, -0.0000018197,0.0000018219,0.0000018233,0.0000018241,0.0000018276, -0.0000018286,0.0000018200,0.0000018094,0.0000018067,0.0000018112, -0.0000018160,0.0000018163,0.0000018153,0.0000018143,0.0000018134, -0.0000018124,0.0000018113,0.0000018099,0.0000018082,0.0000018065, -0.0000018053,0.0000018041,0.0000018030,0.0000018020,0.0000018009, -0.0000017996,0.0000017980,0.0000017960,0.0000017936,0.0000017909, -0.0000017879,0.0000017846,0.0000017818,0.0000017800,0.0000017792, -0.0000017787,0.0000017783,0.0000017780,0.0000017774,0.0000017767, -0.0000017761,0.0000017760,0.0000017764,0.0000017775,0.0000017788, -0.0000017803,0.0000017825,0.0000017847,0.0000017867,0.0000017886, -0.0000017904,0.0000017927,0.0000017954,0.0000017980,0.0000018001, -0.0000018015,0.0000018021,0.0000018022,0.0000018016,0.0000018011, -0.0000018010,0.0000018015,0.0000018019,0.0000018002,0.0000017929, -0.0000017812,0.0000017728,0.0000017722,0.0000017823,0.0000017955, -0.0000018025,0.0000018046,0.0000018074,0.0000018157,0.0000018285, -0.0000018398,0.0000018440,0.0000018438,0.0000018428,0.0000018410, -0.0000018391,0.0000018395,0.0000018434,0.0000018489,0.0000018548, -0.0000018615,0.0000018680,0.0000018727,0.0000018750,0.0000018759, -0.0000018762,0.0000018755,0.0000018734,0.0000018709,0.0000018693, -0.0000018686,0.0000018688,0.0000018695,0.0000018710,0.0000018735, -0.0000018767,0.0000018808,0.0000018856,0.0000018900,0.0000018936, -0.0000018967,0.0000018991,0.0000019007,0.0000019017,0.0000019019, -0.0000019015,0.0000018985,0.0000018897,0.0000018771,0.0000018679, -0.0000018656,0.0000018679,0.0000018700,0.0000018684,0.0000018673, -0.0000018733,0.0000018749,0.0000018719,0.0000018726,0.0000018752, -0.0000018776,0.0000018901,0.0000019032,0.0000018996,0.0000018887, -0.0000018863,0.0000018917,0.0000019010,0.0000019083,0.0000019101, -0.0000019083,0.0000019058,0.0000019015,0.0000018905,0.0000018790, -0.0000018751,0.0000018726,0.0000018656,0.0000018578,0.0000018533, -0.0000018519,0.0000018518,0.0000018517,0.0000018514,0.0000018496, -0.0000018454,0.0000018409,0.0000018389,0.0000018391,0.0000018404, -0.0000018418,0.0000018431,0.0000018440,0.0000018447,0.0000018452, -0.0000018456,0.0000018457,0.0000018454,0.0000018450,0.0000018443, -0.0000018435,0.0000018426,0.0000018416,0.0000018405,0.0000018396, -0.0000018390,0.0000018389,0.0000018392,0.0000018401,0.0000018418, -0.0000018438,0.0000018459,0.0000018475,0.0000018486,0.0000018494, -0.0000018498,0.0000018496,0.0000018487,0.0000018472,0.0000018450, -0.0000018424,0.0000018395,0.0000018363,0.0000018327,0.0000018291, -0.0000018255,0.0000018217,0.0000018179,0.0000018138,0.0000018088, -0.0000018033,0.0000017973,0.0000017914,0.0000017869,0.0000017853, -0.0000017865,0.0000017888,0.0000017911,0.0000017928,0.0000017936, -0.0000017943,0.0000017951,0.0000017965,0.0000017988,0.0000018017, -0.0000018059,0.0000018118,0.0000018192,0.0000018272,0.0000018347, -0.0000018406,0.0000018443,0.0000018456,0.0000018447,0.0000018424, -0.0000018394,0.0000018361,0.0000018326,0.0000018290,0.0000018252, -0.0000018212,0.0000018172,0.0000018134,0.0000018097,0.0000018063, -0.0000018033,0.0000018008,0.0000017988,0.0000017972,0.0000017960, -0.0000017952,0.0000017946,0.0000017938,0.0000017927,0.0000017915, -0.0000017899,0.0000017883,0.0000017867,0.0000017855,0.0000017848, -0.0000017848,0.0000017852,0.0000017858,0.0000017865,0.0000017871, -0.0000017876,0.0000017880,0.0000017883,0.0000017888,0.0000017896, -0.0000017903,0.0000017906,0.0000017906,0.0000017902,0.0000017892, -0.0000017879,0.0000017865,0.0000017852,0.0000017837,0.0000017823, -0.0000017816,0.0000017813,0.0000017817,0.0000017828,0.0000017842, -0.0000017853,0.0000017862,0.0000017869,0.0000017877,0.0000017890, -0.0000017903,0.0000017917,0.0000017933,0.0000017951,0.0000017971, -0.0000017993,0.0000018013,0.0000018031,0.0000018049,0.0000018069, -0.0000018086,0.0000018097,0.0000018103,0.0000018082,0.0000018090, -0.0000018095,0.0000018100,0.0000018105,0.0000018109,0.0000018110, -0.0000018111,0.0000018110,0.0000018107,0.0000018098,0.0000018082, -0.0000018059,0.0000018036,0.0000018013,0.0000018000,0.0000017998, -0.0000018009,0.0000018032,0.0000018064,0.0000018107,0.0000018160, -0.0000018222,0.0000018289,0.0000018359,0.0000018422,0.0000018473, -0.0000018504,0.0000018512,0.0000018510,0.0000018497,0.0000018470, -0.0000018435,0.0000018400,0.0000018372,0.0000018352,0.0000018341, -0.0000018333,0.0000018317,0.0000018288,0.0000018243,0.0000018188, -0.0000018129,0.0000018080,0.0000018049,0.0000018043,0.0000018053, -0.0000018070,0.0000018093,0.0000018114,0.0000018133,0.0000018154, -0.0000018178,0.0000018200,0.0000018215,0.0000018219,0.0000018218, -0.0000018217,0.0000018221,0.0000018231,0.0000018247,0.0000018268, -0.0000018291,0.0000018316,0.0000018338,0.0000018356,0.0000018367, -0.0000018372,0.0000018373,0.0000018377,0.0000018386,0.0000018403, -0.0000018427,0.0000018457,0.0000018487,0.0000018515,0.0000018536, -0.0000018548,0.0000018557,0.0000018568,0.0000018585,0.0000018610, -0.0000018642,0.0000018681,0.0000018723,0.0000018761,0.0000018795, -0.0000018824,0.0000018846,0.0000018863,0.0000018877,0.0000018892, -0.0000018908,0.0000018928,0.0000018950,0.0000018969,0.0000018970, -0.0000018948,0.0000018916,0.0000018878,0.0000018843,0.0000018814, -0.0000018788,0.0000018768,0.0000018750,0.0000018735,0.0000018721, -0.0000018709,0.0000018698,0.0000018687,0.0000018674,0.0000018661, -0.0000018650,0.0000018649,0.0000018658,0.0000018674,0.0000018690, -0.0000018699,0.0000018703,0.0000018702,0.0000018696,0.0000018686, -0.0000018671,0.0000018650,0.0000018624,0.0000018594,0.0000018562, -0.0000018531,0.0000018499,0.0000018470,0.0000018445,0.0000018424, -0.0000018403,0.0000018384,0.0000018371,0.0000018365,0.0000018358, -0.0000018350,0.0000018342,0.0000018335,0.0000018333,0.0000018336, -0.0000018343,0.0000018353,0.0000018364,0.0000018375,0.0000018382, -0.0000018390,0.0000018400,0.0000018410,0.0000018419,0.0000018425, -0.0000018430,0.0000018435,0.0000018441,0.0000018448,0.0000018457, -0.0000018465,0.0000018470,0.0000018470,0.0000018469,0.0000018466, -0.0000018460,0.0000018453,0.0000018447,0.0000018443,0.0000018439, -0.0000018433,0.0000018425,0.0000018415,0.0000018404,0.0000018389, -0.0000018373,0.0000018359,0.0000018348,0.0000018337,0.0000018326, -0.0000018314,0.0000018303,0.0000018296,0.0000018291,0.0000018287, -0.0000018284,0.0000018285,0.0000018288,0.0000018291,0.0000018294, -0.0000018296,0.0000018301,0.0000018310,0.0000018321,0.0000018330, -0.0000018339,0.0000018347,0.0000018356,0.0000018367,0.0000018379, -0.0000018391,0.0000018404,0.0000018419,0.0000018437,0.0000018458, -0.0000018480,0.0000018499,0.0000018511,0.0000018518,0.0000018519, -0.0000018509,0.0000018500,0.0000018476,0.0000018432,0.0000018365, -0.0000018277,0.0000018179,0.0000018089,0.0000018010,0.0000017974, -0.0000017953,0.0000017957,0.0000017979,0.0000018021,0.0000018070, -0.0000018113,0.0000018144,0.0000018161,0.0000018162,0.0000018154, -0.0000018142,0.0000018131,0.0000018126,0.0000018134,0.0000018156, -0.0000018194,0.0000018245,0.0000018310,0.0000018384,0.0000018464, -0.0000018544,0.0000018618,0.0000018685,0.0000018741,0.0000018785, -0.0000018815,0.0000018834,0.0000018842,0.0000018844,0.0000018842, -0.0000018840,0.0000018839,0.0000018841,0.0000018843,0.0000018845, -0.0000018847,0.0000018852,0.0000018861,0.0000018875,0.0000018890, -0.0000018904,0.0000018921,0.0000018943,0.0000018966,0.0000018994, -0.0000019023,0.0000019053,0.0000019078,0.0000019101,0.0000019119, -0.0000019129,0.0000019131,0.0000019127,0.0000019117,0.0000019102, -0.0000019086,0.0000019069,0.0000019048,0.0000019021,0.0000018991, -0.0000018962,0.0000018937,0.0000018915,0.0000018895,0.0000018879, -0.0000018873,0.0000018880,0.0000018910,0.0000018964,0.0000019040, -0.0000019135,0.0000019246,0.0000019368,0.0000019497,0.0000019629, -0.0000019754,0.0000019865,0.0000019959,0.0000020022,0.0000020041, -0.0000020039,0.0000020050,0.0000020078,0.0000020109,0.0000020133, -0.0000020139,0.0000020131,0.0000020110,0.0000020073,0.0000020024, -0.0000019982,0.0000019988,0.0000020056,0.0000020102,0.0000020089, -0.0000020068,0.0000020115,0.0000020234,0.0000020320,0.0000020324, -0.0000020294,0.0000020259,0.0000020234,0.0000020208,0.0000020164, -0.0000020108,0.0000020071,0.0000020045,0.0000020009,0.0000019996, -0.0000020032,0.0000020089,0.0000020139,0.0000020202,0.0000020268, -0.0000020292,0.0000020278,0.0000020239,0.0000020191,0.0000020138, -0.0000020081,0.0000020022,0.0000019976,0.0000019959,0.0000019964, -0.0000019983,0.0000020004,0.0000020020,0.0000020030,0.0000020035, -0.0000020037,0.0000020038,0.0000020043,0.0000020050,0.0000020059, -0.0000020071,0.0000020086,0.0000020106,0.0000020133,0.0000020170, -0.0000020214,0.0000020259,0.0000020297,0.0000020318,0.0000020322, -0.0000020318,0.0000020305,0.0000020289,0.0000020271,0.0000020260, -0.0000020253,0.0000020250,0.0000020247,0.0000020241,0.0000020230, -0.0000020215,0.0000020197,0.0000020178,0.0000020156,0.0000020133, -0.0000020109,0.0000020086,0.0000020068,0.0000020053,0.0000020038, -0.0000020024,0.0000020015,0.0000020007,0.0000019998,0.0000019989, -0.0000019979,0.0000019972,0.0000019967,0.0000019959,0.0000019945, -0.0000019931,0.0000019921,0.0000019916,0.0000019914,0.0000019914, -0.0000019915,0.0000019913,0.0000019909,0.0000019906,0.0000019906, -0.0000019909,0.0000019911,0.0000019911,0.0000019907,0.0000019905, -0.0000019900,0.0000019891,0.0000019885,0.0000019877,0.0000019864, -0.0000019852,0.0000019844,0.0000019837,0.0000019828,0.0000019822, -0.0000019821,0.0000019828,0.0000019837,0.0000019845,0.0000019853, -0.0000019858,0.0000019861,0.0000019858,0.0000019849,0.0000019836, -0.0000019821,0.0000019805,0.0000019784,0.0000019762,0.0000019741, -0.0000019720,0.0000019702,0.0000019686,0.0000019676,0.0000019673, -0.0000019675,0.0000019678,0.0000019678,0.0000019673,0.0000019663, -0.0000019648,0.0000019628,0.0000019606,0.0000019581,0.0000019557, -0.0000019534,0.0000019512,0.0000019490,0.0000019474,0.0000019464, -0.0000019458,0.0000019457,0.0000019460,0.0000019465,0.0000019471, -0.0000019478,0.0000019486,0.0000019495,0.0000019504,0.0000019512, -0.0000019521,0.0000019531,0.0000019543,0.0000019555,0.0000019564, -0.0000019575,0.0000019586,0.0000019596,0.0000019607,0.0000019620, -0.0000019635,0.0000019649,0.0000019665,0.0000019682,0.0000019702, -0.0000019724,0.0000019743,0.0000019761,0.0000019779,0.0000019796, -0.0000019814,0.0000019831,0.0000019847,0.0000019863,0.0000019877, -0.0000019890,0.0000019901,0.0000019911,0.0000019919,0.0000019924, -0.0000019927,0.0000019931,0.0000019937,0.0000019943,0.0000019951, -0.0000019957,0.0000019963,0.0000019966,0.0000019968,0.0000019970, -0.0000019974,0.0000019977,0.0000019975,0.0000019972,0.0000019972, -0.0000019977,0.0000019983,0.0000019998,0.0000020020,0.0000020047, -0.0000020080,0.0000020116,0.0000020152,0.0000020188,0.0000020226, -0.0000020266,0.0000020298,0.0000020322,0.0000020342,0.0000020358, -0.0000020369,0.0000020379,0.0000020394,0.0000020413,0.0000020438, -0.0000020468,0.0000020493,0.0000020514,0.0000020533,0.0000020550, -0.0000020561,0.0000020569,0.0000020575,0.0000020582,0.0000020589, -0.0000020598,0.0000020607,0.0000020610,0.0000020611,0.0000020620, -0.0000020634,0.0000020646,0.0000020651,0.0000020650,0.0000020644, -0.0000020635,0.0000020625,0.0000020615,0.0000020603,0.0000020590, -0.0000020576,0.0000020559,0.0000020537,0.0000020513,0.0000020489, -0.0000020462,0.0000020434,0.0000020412,0.0000020400,0.0000020400, -0.0000020407,0.0000020419,0.0000020436,0.0000020458,0.0000020477, -0.0000020487,0.0000020492,0.0000020492,0.0000020482,0.0000020466, -0.0000020448,0.0000020432,0.0000020418,0.0000020404,0.0000020388, -0.0000020375,0.0000020364,0.0000020359,0.0000020360,0.0000020364, -0.0000020364,0.0000020359,0.0000020352,0.0000020341,0.0000020330, -0.0000020318,0.0000020304,0.0000020294,0.0000020285,0.0000020283, -0.0000020294,0.0000020318,0.0000020352,0.0000020397,0.0000020437, -0.0000020460,0.0000020473,0.0000020487,0.0000020510,0.0000020538, -0.0000020567,0.0000020589,0.0000020592,0.0000020582,0.0000020544, -0.0000020488,0.0000020435,0.0000020396,0.0000020375,0.0000020367, -0.0000020363,0.0000020357,0.0000020344,0.0000020328,0.0000020312, -0.0000020292,0.0000020269,0.0000020248,0.0000020233,0.0000020230, -0.0000020227,0.0000020220,0.0000020209,0.0000020200,0.0000020192, -0.0000020185,0.0000020179,0.0000020179,0.0000020185,0.0000020195, -0.0000020205,0.0000020212,0.0000020216,0.0000020215,0.0000020209, -0.0000020202,0.0000020191,0.0000020179,0.0000020171,0.0000020168, -0.0000020168,0.0000020169,0.0000020181,0.0000020203,0.0000020230, -0.0000020258,0.0000020288,0.0000020317,0.0000020344,0.0000020363, -0.0000020368,0.0000020362,0.0000020346,0.0000020323,0.0000020301, -0.0000020281,0.0000020266,0.0000020259,0.0000020258,0.0000020261, -0.0000020271,0.0000020287,0.0000020309,0.0000020336,0.0000020366, -0.0000020392,0.0000020405,0.0000020406,0.0000020402,0.0000020391, -0.0000020374,0.0000020356,0.0000020330,0.0000020297,0.0000020260, -0.0000020218,0.0000020175,0.0000020130,0.0000020083,0.0000020036, -0.0000019996,0.0000019966,0.0000019943,0.0000019917,0.0000019889, -0.0000019864,0.0000019839,0.0000019818,0.0000019800,0.0000019781, -0.0000019758,0.0000019731,0.0000019702,0.0000019670,0.0000019634, -0.0000019598,0.0000019567,0.0000019542,0.0000019521,0.0000019503, -0.0000019486,0.0000019477,0.0000019472,0.0000019473,0.0000019482, -0.0000019497,0.0000019516,0.0000019536,0.0000019552,0.0000019561, -0.0000019562,0.0000019557,0.0000019539,0.0000019508,0.0000019468, -0.0000019427,0.0000019383,0.0000019339,0.0000019294,0.0000019248, -0.0000019201,0.0000019157,0.0000019117,0.0000019080,0.0000019061, -0.0000019047,0.0000019048,0.0000019060,0.0000019077,0.0000019094, -0.0000019108,0.0000019126,0.0000019151,0.0000019178,0.0000019207, -0.0000019236,0.0000019266,0.0000019292,0.0000019311,0.0000019316, -0.0000019307,0.0000019286,0.0000019257,0.0000019224,0.0000019191, -0.0000019165,0.0000019156,0.0000019155,0.0000019154,0.0000019150, -0.0000019149,0.0000019161,0.0000019175,0.0000019188,0.0000019200, -0.0000019211,0.0000019223,0.0000019237,0.0000019252,0.0000019266, -0.0000019277,0.0000019285,0.0000019291,0.0000019300,0.0000019316, -0.0000019342,0.0000019378,0.0000019422,0.0000019469,0.0000019510, -0.0000019543,0.0000019569,0.0000019587,0.0000019607,0.0000019630, -0.0000019649,0.0000019657,0.0000019654,0.0000019634,0.0000019603, -0.0000019565,0.0000019534,0.0000019518,0.0000019519,0.0000019532, -0.0000019562,0.0000019599,0.0000019635,0.0000019668,0.0000019703, -0.0000019741,0.0000019773,0.0000019793,0.0000019800,0.0000019793, -0.0000019774,0.0000019753,0.0000019740,0.0000019737,0.0000019741, -0.0000019749,0.0000019756,0.0000019745,0.0000019718,0.0000019679, -0.0000019629,0.0000019574,0.0000019526,0.0000019494,0.0000019478, -0.0000019483,0.0000019500,0.0000019518,0.0000019529,0.0000019535, -0.0000019535,0.0000019525,0.0000019515,0.0000019505,0.0000019492, -0.0000019480,0.0000019475,0.0000019474,0.0000019488,0.0000019520, -0.0000019566,0.0000019611,0.0000019649,0.0000019678,0.0000019691, -0.0000019690,0.0000019683,0.0000019672,0.0000019665,0.0000019663, -0.0000019666,0.0000019675,0.0000019693,0.0000019717,0.0000019743, -0.0000019767,0.0000019790,0.0000019813,0.0000019835,0.0000019848, -0.0000019847,0.0000019833,0.0000019813,0.0000019795,0.0000019783, -0.0000019776,0.0000019772,0.0000019776,0.0000019786,0.0000019796, -0.0000019802,0.0000019805,0.0000019806,0.0000019804,0.0000019799, -0.0000019789,0.0000019771,0.0000019744,0.0000019711,0.0000019676, -0.0000019638,0.0000019601,0.0000019569,0.0000019546,0.0000019526, -0.0000019514,0.0000019516,0.0000019528,0.0000019548,0.0000019575, -0.0000019604,0.0000019629,0.0000019649,0.0000019668,0.0000019687, -0.0000019708,0.0000019730,0.0000019748,0.0000019756,0.0000019749, -0.0000019716,0.0000019667,0.0000019624,0.0000019601,0.0000019590, -0.0000019584,0.0000019573,0.0000019545,0.0000019500,0.0000019450, -0.0000019404,0.0000019366,0.0000019334,0.0000019305,0.0000019282, -0.0000019267,0.0000019248,0.0000019226,0.0000019200,0.0000019165, -0.0000019122,0.0000019069,0.0000019011,0.0000018945,0.0000018868, -0.0000018793,0.0000018730,0.0000018674,0.0000018629,0.0000018599, -0.0000018581,0.0000018569,0.0000018570,0.0000018582,0.0000018613, -0.0000018666,0.0000018716,0.0000018727,0.0000018709,0.0000018689, -0.0000018684,0.0000018697,0.0000018719,0.0000018729,0.0000018732, -0.0000018746,0.0000018762,0.0000018768,0.0000018755,0.0000018725, -0.0000018702,0.0000018692,0.0000018697,0.0000018709,0.0000018729, -0.0000018753,0.0000018774,0.0000018797,0.0000018813,0.0000018811, -0.0000018803,0.0000018798,0.0000018788,0.0000018775,0.0000018757, -0.0000018733,0.0000018705,0.0000018665,0.0000018622,0.0000018582, -0.0000018552,0.0000018529,0.0000018509,0.0000018493,0.0000018480, -0.0000018471,0.0000018468,0.0000018468,0.0000018468,0.0000018471, -0.0000018478,0.0000018489,0.0000018505,0.0000018523,0.0000018544, -0.0000018568,0.0000018590,0.0000018604,0.0000018616,0.0000018628, -0.0000018638,0.0000018649,0.0000018663,0.0000018682,0.0000018705, -0.0000018730,0.0000018757,0.0000018785,0.0000018812,0.0000018840, -0.0000018876,0.0000018925,0.0000018994,0.0000019087,0.0000019200, -0.0000019331,0.0000019470,0.0000019602,0.0000019711,0.0000019790, -0.0000019838,0.0000019864,0.0000019876,0.0000019882,0.0000019874, -0.0000019855,0.0000019797,0.0000019696,0.0000019558,0.0000019409, -0.0000019278,0.0000019186,0.0000019133,0.0000019112,0.0000019114, -0.0000019131,0.0000019156,0.0000019171,0.0000019181,0.0000019178, -0.0000019168,0.0000019158,0.0000019152,0.0000019146,0.0000019136, -0.0000019122,0.0000019106,0.0000019094,0.0000019095,0.0000019101, -0.0000019106,0.0000019107,0.0000019099,0.0000019079,0.0000019047, -0.0000019009,0.0000018968,0.0000018920,0.0000018856,0.0000018785, -0.0000018729,0.0000018718,0.0000018734,0.0000018793,0.0000018879, -0.0000018958,0.0000019004,0.0000019010,0.0000019001,0.0000018986, -0.0000018978,0.0000018974,0.0000018965,0.0000018951,0.0000018936, -0.0000018899,0.0000018807,0.0000018663,0.0000018527,0.0000018461, -0.0000018449,0.0000018462,0.0000018467,0.0000018466,0.0000018472, -0.0000018483,0.0000018486,0.0000018476,0.0000018449,0.0000018405, -0.0000018355,0.0000018310,0.0000018271,0.0000018241,0.0000018222, -0.0000018213,0.0000018210,0.0000018210,0.0000018209,0.0000018207, -0.0000018198,0.0000018191,0.0000018193,0.0000018204,0.0000018221, -0.0000018238,0.0000018243,0.0000018244,0.0000018267,0.0000018281, -0.0000018220,0.0000018109,0.0000018067,0.0000018106,0.0000018160, -0.0000018167,0.0000018162,0.0000018154,0.0000018144,0.0000018130, -0.0000018108,0.0000018082,0.0000018059,0.0000018041,0.0000018028, -0.0000018017,0.0000018007,0.0000017997,0.0000017984,0.0000017973, -0.0000017963,0.0000017950,0.0000017935,0.0000017919,0.0000017897, -0.0000017870,0.0000017844,0.0000017824,0.0000017814,0.0000017809, -0.0000017807,0.0000017808,0.0000017808,0.0000017806,0.0000017803, -0.0000017798,0.0000017794,0.0000017793,0.0000017795,0.0000017802, -0.0000017814,0.0000017829,0.0000017851,0.0000017879,0.0000017907, -0.0000017936,0.0000017965,0.0000017990,0.0000018007,0.0000018017, -0.0000018022,0.0000018022,0.0000018020,0.0000018019,0.0000018026, -0.0000018036,0.0000018036,0.0000018002,0.0000017911,0.0000017802, -0.0000017745,0.0000017769,0.0000017894,0.0000018018,0.0000018078, -0.0000018103,0.0000018147,0.0000018247,0.0000018376,0.0000018462, -0.0000018482,0.0000018475,0.0000018462,0.0000018444,0.0000018436, -0.0000018453,0.0000018498,0.0000018549,0.0000018601,0.0000018657, -0.0000018705,0.0000018734,0.0000018745,0.0000018747,0.0000018745, -0.0000018732,0.0000018711,0.0000018695,0.0000018685,0.0000018679, -0.0000018676,0.0000018676,0.0000018685,0.0000018708,0.0000018745, -0.0000018792,0.0000018844,0.0000018892,0.0000018933,0.0000018964, -0.0000018986,0.0000019000,0.0000019005,0.0000018995,0.0000018950, -0.0000018853,0.0000018733,0.0000018656,0.0000018641,0.0000018666, -0.0000018696,0.0000018691,0.0000018656,0.0000018696,0.0000018750, -0.0000018719,0.0000018714,0.0000018740,0.0000018755,0.0000018862, -0.0000019018,0.0000019023,0.0000018899,0.0000018837,0.0000018869, -0.0000018938,0.0000019012,0.0000019065,0.0000019078,0.0000019063, -0.0000019033,0.0000018946,0.0000018816,0.0000018745,0.0000018724, -0.0000018670,0.0000018590,0.0000018532,0.0000018506,0.0000018499, -0.0000018496,0.0000018487,0.0000018475,0.0000018457,0.0000018427, -0.0000018399,0.0000018384,0.0000018383,0.0000018390,0.0000018401, -0.0000018415,0.0000018430,0.0000018441,0.0000018448,0.0000018451, -0.0000018450,0.0000018445,0.0000018438,0.0000018429,0.0000018419, -0.0000018409,0.0000018398,0.0000018392,0.0000018392,0.0000018396, -0.0000018414,0.0000018442,0.0000018472,0.0000018501,0.0000018524, -0.0000018538,0.0000018545,0.0000018549,0.0000018549,0.0000018544, -0.0000018533,0.0000018521,0.0000018505,0.0000018487,0.0000018468, -0.0000018444,0.0000018417,0.0000018387,0.0000018358,0.0000018325, -0.0000018289,0.0000018250,0.0000018209,0.0000018165,0.0000018119, -0.0000018064,0.0000018001,0.0000017936,0.0000017882,0.0000017863, -0.0000017858,0.0000017880,0.0000017910,0.0000017933,0.0000017949, -0.0000017960,0.0000017974,0.0000017991,0.0000018007,0.0000018024, -0.0000018050,0.0000018085,0.0000018135,0.0000018197,0.0000018259, -0.0000018313,0.0000018351,0.0000018368,0.0000018364,0.0000018345, -0.0000018317,0.0000018283,0.0000018246,0.0000018208,0.0000018172, -0.0000018135,0.0000018101,0.0000018070,0.0000018041,0.0000018016, -0.0000017993,0.0000017970,0.0000017950,0.0000017935,0.0000017923, -0.0000017911,0.0000017895,0.0000017879,0.0000017860,0.0000017841, -0.0000017822,0.0000017806,0.0000017796,0.0000017795,0.0000017801, -0.0000017809,0.0000017819,0.0000017827,0.0000017834,0.0000017837, -0.0000017839,0.0000017842,0.0000017847,0.0000017856,0.0000017865, -0.0000017871,0.0000017874,0.0000017872,0.0000017867,0.0000017860, -0.0000017851,0.0000017838,0.0000017827,0.0000017818,0.0000017813, -0.0000017813,0.0000017824,0.0000017840,0.0000017856,0.0000017870, -0.0000017881,0.0000017889,0.0000017896,0.0000017903,0.0000017913, -0.0000017924,0.0000017936,0.0000017948,0.0000017961,0.0000017974, -0.0000017989,0.0000018003,0.0000018018,0.0000018037,0.0000018056, -0.0000018071,0.0000018044,0.0000018055,0.0000018064,0.0000018074, -0.0000018083,0.0000018090,0.0000018092,0.0000018091,0.0000018087, -0.0000018083,0.0000018080,0.0000018072,0.0000018056,0.0000018035, -0.0000018009,0.0000017984,0.0000017970,0.0000017962,0.0000017965, -0.0000017983,0.0000018010,0.0000018048,0.0000018096,0.0000018150, -0.0000018210,0.0000018274,0.0000018340,0.0000018405,0.0000018464, -0.0000018509,0.0000018522,0.0000018532,0.0000018523,0.0000018500, -0.0000018464,0.0000018425,0.0000018392,0.0000018369,0.0000018357, -0.0000018347,0.0000018331,0.0000018303,0.0000018259,0.0000018204, -0.0000018146,0.0000018099,0.0000018069,0.0000018067,0.0000018073, -0.0000018090,0.0000018109,0.0000018128,0.0000018149,0.0000018169, -0.0000018188,0.0000018199,0.0000018198,0.0000018188,0.0000018174, -0.0000018161,0.0000018154,0.0000018159,0.0000018174,0.0000018199, -0.0000018233,0.0000018269,0.0000018301,0.0000018321,0.0000018332, -0.0000018333,0.0000018330,0.0000018325,0.0000018325,0.0000018332, -0.0000018349,0.0000018375,0.0000018402,0.0000018426,0.0000018447, -0.0000018468,0.0000018492,0.0000018519,0.0000018548,0.0000018581, -0.0000018619,0.0000018661,0.0000018704,0.0000018747,0.0000018787, -0.0000018821,0.0000018847,0.0000018862,0.0000018867,0.0000018867, -0.0000018872,0.0000018886,0.0000018904,0.0000018916,0.0000018908, -0.0000018885,0.0000018851,0.0000018816,0.0000018786,0.0000018769, -0.0000018760,0.0000018751,0.0000018739,0.0000018724,0.0000018713, -0.0000018701,0.0000018686,0.0000018671,0.0000018658,0.0000018651, -0.0000018654,0.0000018662,0.0000018673,0.0000018681,0.0000018686, -0.0000018687,0.0000018685,0.0000018680,0.0000018671,0.0000018655, -0.0000018633,0.0000018606,0.0000018578,0.0000018549,0.0000018517, -0.0000018486,0.0000018456,0.0000018429,0.0000018404,0.0000018384, -0.0000018372,0.0000018367,0.0000018364,0.0000018358,0.0000018351, -0.0000018343,0.0000018337,0.0000018336,0.0000018337,0.0000018342, -0.0000018351,0.0000018362,0.0000018372,0.0000018384,0.0000018397, -0.0000018411,0.0000018424,0.0000018433,0.0000018441,0.0000018446, -0.0000018450,0.0000018454,0.0000018459,0.0000018462,0.0000018462, -0.0000018461,0.0000018457,0.0000018451,0.0000018443,0.0000018433, -0.0000018425,0.0000018419,0.0000018413,0.0000018405,0.0000018398, -0.0000018389,0.0000018379,0.0000018366,0.0000018353,0.0000018344, -0.0000018337,0.0000018330,0.0000018324,0.0000018315,0.0000018310, -0.0000018310,0.0000018313,0.0000018317,0.0000018320,0.0000018324, -0.0000018327,0.0000018325,0.0000018319,0.0000018311,0.0000018304, -0.0000018304,0.0000018302,0.0000018305,0.0000018308,0.0000018311, -0.0000018316,0.0000018323,0.0000018333,0.0000018342,0.0000018352, -0.0000018365,0.0000018382,0.0000018400,0.0000018419,0.0000018437, -0.0000018456,0.0000018470,0.0000018479,0.0000018484,0.0000018486, -0.0000018476,0.0000018465,0.0000018438,0.0000018392,0.0000018325, -0.0000018236,0.0000018136,0.0000018045,0.0000017968,0.0000017934, -0.0000017912,0.0000017921,0.0000017946,0.0000017984,0.0000018027, -0.0000018064,0.0000018092,0.0000018110,0.0000018115,0.0000018109, -0.0000018099,0.0000018091,0.0000018092,0.0000018103,0.0000018124, -0.0000018156,0.0000018197,0.0000018243,0.0000018294,0.0000018348, -0.0000018404,0.0000018461,0.0000018516,0.0000018569,0.0000018618, -0.0000018660,0.0000018694,0.0000018720,0.0000018741,0.0000018756, -0.0000018764,0.0000018765,0.0000018762,0.0000018756,0.0000018752, -0.0000018750,0.0000018751,0.0000018755,0.0000018762,0.0000018772, -0.0000018783,0.0000018797,0.0000018817,0.0000018842,0.0000018867, -0.0000018890,0.0000018911,0.0000018928,0.0000018938,0.0000018943, -0.0000018945,0.0000018943,0.0000018940,0.0000018934,0.0000018924, -0.0000018907,0.0000018883,0.0000018856,0.0000018832,0.0000018814, -0.0000018799,0.0000018783,0.0000018766,0.0000018754,0.0000018754, -0.0000018775,0.0000018822,0.0000018898,0.0000019001,0.0000019128, -0.0000019263,0.0000019398,0.0000019535,0.0000019668,0.0000019790, -0.0000019896,0.0000019977,0.0000020007,0.0000020007,0.0000020017, -0.0000020049,0.0000020083,0.0000020110,0.0000020126,0.0000020128, -0.0000020113,0.0000020073,0.0000020016,0.0000019978,0.0000020001, -0.0000020070,0.0000020095,0.0000020070,0.0000020051,0.0000020106, -0.0000020227,0.0000020308,0.0000020310,0.0000020282,0.0000020245, -0.0000020212,0.0000020182,0.0000020141,0.0000020095,0.0000020066, -0.0000020042,0.0000020006,0.0000019989,0.0000020020,0.0000020077, -0.0000020124,0.0000020168,0.0000020219,0.0000020255,0.0000020251, -0.0000020228,0.0000020195,0.0000020161,0.0000020122,0.0000020071, -0.0000020016,0.0000019973,0.0000019962,0.0000019964,0.0000019977, -0.0000019994,0.0000020009,0.0000020021,0.0000020029,0.0000020034, -0.0000020036,0.0000020037,0.0000020032,0.0000020026,0.0000020021, -0.0000020019,0.0000020019,0.0000020024,0.0000020044,0.0000020082, -0.0000020134,0.0000020192,0.0000020243,0.0000020275,0.0000020285, -0.0000020284,0.0000020269,0.0000020246,0.0000020225,0.0000020199, -0.0000020179,0.0000020170,0.0000020165,0.0000020153,0.0000020144, -0.0000020134,0.0000020122,0.0000020103,0.0000020085,0.0000020069, -0.0000020056,0.0000020043,0.0000020030,0.0000020020,0.0000020011, -0.0000020002,0.0000019992,0.0000019981,0.0000019972,0.0000019964, -0.0000019957,0.0000019946,0.0000019933,0.0000019921,0.0000019915, -0.0000019913,0.0000019914,0.0000019915,0.0000019915,0.0000019913, -0.0000019909,0.0000019906,0.0000019906,0.0000019909,0.0000019913, -0.0000019913,0.0000019911,0.0000019908,0.0000019906,0.0000019903, -0.0000019896,0.0000019885,0.0000019872,0.0000019861,0.0000019846, -0.0000019834,0.0000019826,0.0000019823,0.0000019826,0.0000019832, -0.0000019837,0.0000019840,0.0000019841,0.0000019839,0.0000019833, -0.0000019822,0.0000019807,0.0000019789,0.0000019767,0.0000019743, -0.0000019716,0.0000019690,0.0000019665,0.0000019642,0.0000019622, -0.0000019607,0.0000019599,0.0000019598,0.0000019601,0.0000019604, -0.0000019607,0.0000019606,0.0000019601,0.0000019590,0.0000019575, -0.0000019557,0.0000019537,0.0000019516,0.0000019496,0.0000019476, -0.0000019461,0.0000019448,0.0000019436,0.0000019429,0.0000019429, -0.0000019434,0.0000019441,0.0000019450,0.0000019461,0.0000019474, -0.0000019486,0.0000019497,0.0000019508,0.0000019521,0.0000019535, -0.0000019545,0.0000019551,0.0000019557,0.0000019562,0.0000019567, -0.0000019572,0.0000019581,0.0000019594,0.0000019609,0.0000019624, -0.0000019640,0.0000019659,0.0000019680,0.0000019698,0.0000019713, -0.0000019725,0.0000019735,0.0000019745,0.0000019754,0.0000019762, -0.0000019772,0.0000019782,0.0000019791,0.0000019801,0.0000019810, -0.0000019820,0.0000019831,0.0000019840,0.0000019850,0.0000019863, -0.0000019879,0.0000019895,0.0000019911,0.0000019927,0.0000019941, -0.0000019952,0.0000019958,0.0000019960,0.0000019959,0.0000019952, -0.0000019938,0.0000019925,0.0000019911,0.0000019894,0.0000019880, -0.0000019879,0.0000019880,0.0000019884,0.0000019895,0.0000019912, -0.0000019941,0.0000019982,0.0000020026,0.0000020068,0.0000020107, -0.0000020144,0.0000020178,0.0000020206,0.0000020231,0.0000020257, -0.0000020287,0.0000020321,0.0000020358,0.0000020392,0.0000020422, -0.0000020448,0.0000020469,0.0000020482,0.0000020490,0.0000020494, -0.0000020497,0.0000020501,0.0000020509,0.0000020521,0.0000020531, -0.0000020542,0.0000020561,0.0000020583,0.0000020600,0.0000020611, -0.0000020616,0.0000020617,0.0000020616,0.0000020610,0.0000020599, -0.0000020587,0.0000020576,0.0000020565,0.0000020551,0.0000020532, -0.0000020512,0.0000020495,0.0000020476,0.0000020453,0.0000020436, -0.0000020424,0.0000020420,0.0000020421,0.0000020427,0.0000020437, -0.0000020451,0.0000020463,0.0000020470,0.0000020471,0.0000020466, -0.0000020451,0.0000020422,0.0000020388,0.0000020359,0.0000020334, -0.0000020315,0.0000020298,0.0000020285,0.0000020268,0.0000020256, -0.0000020257,0.0000020265,0.0000020282,0.0000020304,0.0000020321, -0.0000020328,0.0000020319,0.0000020308,0.0000020295,0.0000020282, -0.0000020269,0.0000020261,0.0000020253,0.0000020247,0.0000020256, -0.0000020285,0.0000020326,0.0000020372,0.0000020414,0.0000020444, -0.0000020462,0.0000020477,0.0000020499,0.0000020526,0.0000020555, -0.0000020576,0.0000020581,0.0000020573,0.0000020547,0.0000020513, -0.0000020480,0.0000020451,0.0000020427,0.0000020409,0.0000020392, -0.0000020380,0.0000020367,0.0000020351,0.0000020331,0.0000020309, -0.0000020287,0.0000020272,0.0000020256,0.0000020235,0.0000020214, -0.0000020194,0.0000020183,0.0000020168,0.0000020154,0.0000020154, -0.0000020161,0.0000020171,0.0000020184,0.0000020197,0.0000020207, -0.0000020209,0.0000020209,0.0000020202,0.0000020189,0.0000020172, -0.0000020160,0.0000020147,0.0000020139,0.0000020135,0.0000020138, -0.0000020148,0.0000020165,0.0000020183,0.0000020204,0.0000020229, -0.0000020253,0.0000020270,0.0000020277,0.0000020275,0.0000020265, -0.0000020249,0.0000020227,0.0000020205,0.0000020191,0.0000020188, -0.0000020195,0.0000020202,0.0000020211,0.0000020230,0.0000020256, -0.0000020285,0.0000020315,0.0000020340,0.0000020358,0.0000020364, -0.0000020363,0.0000020355,0.0000020344,0.0000020327,0.0000020298, -0.0000020259,0.0000020212,0.0000020161,0.0000020108,0.0000020058, -0.0000020007,0.0000019959,0.0000019921,0.0000019894,0.0000019874, -0.0000019858,0.0000019842,0.0000019823,0.0000019803,0.0000019789, -0.0000019773,0.0000019756,0.0000019740,0.0000019720,0.0000019695, -0.0000019666,0.0000019636,0.0000019608,0.0000019581,0.0000019557, -0.0000019537,0.0000019519,0.0000019503,0.0000019489,0.0000019478, -0.0000019473,0.0000019477,0.0000019484,0.0000019498,0.0000019511, -0.0000019523,0.0000019530,0.0000019529,0.0000019514,0.0000019489, -0.0000019455,0.0000019415,0.0000019373,0.0000019334,0.0000019300, -0.0000019265,0.0000019230,0.0000019194,0.0000019161,0.0000019129, -0.0000019095,0.0000019064,0.0000019044,0.0000019040,0.0000019041, -0.0000019045,0.0000019049,0.0000019056,0.0000019067,0.0000019083, -0.0000019105,0.0000019130,0.0000019157,0.0000019184,0.0000019207, -0.0000019220,0.0000019221,0.0000019207,0.0000019180,0.0000019143, -0.0000019101,0.0000019060,0.0000019034,0.0000019026,0.0000019028, -0.0000019034,0.0000019045,0.0000019067,0.0000019088,0.0000019103, -0.0000019113,0.0000019122,0.0000019129,0.0000019132,0.0000019133, -0.0000019137,0.0000019141,0.0000019147,0.0000019155,0.0000019164, -0.0000019174,0.0000019188,0.0000019209,0.0000019241,0.0000019288, -0.0000019345,0.0000019403,0.0000019452,0.0000019486,0.0000019515, -0.0000019542,0.0000019567,0.0000019593,0.0000019614,0.0000019626, -0.0000019615,0.0000019596,0.0000019560,0.0000019514,0.0000019479, -0.0000019452,0.0000019452,0.0000019480,0.0000019523,0.0000019566, -0.0000019605,0.0000019642,0.0000019672,0.0000019691,0.0000019701, -0.0000019702,0.0000019691,0.0000019674,0.0000019658,0.0000019649, -0.0000019649,0.0000019662,0.0000019684,0.0000019702,0.0000019714, -0.0000019704,0.0000019697,0.0000019668,0.0000019617,0.0000019559, -0.0000019503,0.0000019465,0.0000019452,0.0000019455,0.0000019465, -0.0000019471,0.0000019480,0.0000019488,0.0000019500,0.0000019513, -0.0000019519,0.0000019517,0.0000019501,0.0000019476,0.0000019458, -0.0000019451,0.0000019465,0.0000019496,0.0000019537,0.0000019578, -0.0000019616,0.0000019645,0.0000019657,0.0000019657,0.0000019653, -0.0000019648,0.0000019640,0.0000019633,0.0000019628,0.0000019626, -0.0000019630,0.0000019638,0.0000019650,0.0000019669,0.0000019697, -0.0000019725,0.0000019746,0.0000019753,0.0000019753,0.0000019754, -0.0000019761,0.0000019768,0.0000019773,0.0000019780,0.0000019790, -0.0000019802,0.0000019814,0.0000019821,0.0000019822,0.0000019814, -0.0000019801,0.0000019786,0.0000019765,0.0000019739,0.0000019702, -0.0000019660,0.0000019616,0.0000019576,0.0000019545,0.0000019523, -0.0000019503,0.0000019486,0.0000019477,0.0000019479,0.0000019486, -0.0000019503,0.0000019528,0.0000019558,0.0000019587,0.0000019617, -0.0000019646,0.0000019675,0.0000019704,0.0000019720,0.0000019718, -0.0000019688,0.0000019640,0.0000019590,0.0000019552,0.0000019532, -0.0000019524,0.0000019521,0.0000019510,0.0000019486,0.0000019448, -0.0000019407,0.0000019367,0.0000019329,0.0000019295,0.0000019266, -0.0000019244,0.0000019232,0.0000019216,0.0000019191,0.0000019160, -0.0000019127,0.0000019088,0.0000019040,0.0000018983,0.0000018917, -0.0000018844,0.0000018774,0.0000018715,0.0000018665,0.0000018622, -0.0000018592,0.0000018567,0.0000018547,0.0000018536,0.0000018531, -0.0000018541,0.0000018582,0.0000018644,0.0000018687,0.0000018692, -0.0000018677,0.0000018658,0.0000018658,0.0000018677,0.0000018693, -0.0000018695,0.0000018697,0.0000018711,0.0000018727,0.0000018721, -0.0000018697,0.0000018670,0.0000018656,0.0000018655,0.0000018663, -0.0000018678,0.0000018699,0.0000018722,0.0000018744,0.0000018754, -0.0000018752,0.0000018750,0.0000018748,0.0000018741,0.0000018733, -0.0000018721,0.0000018707,0.0000018683,0.0000018649,0.0000018608, -0.0000018566,0.0000018531,0.0000018503,0.0000018484,0.0000018466, -0.0000018447,0.0000018433,0.0000018424,0.0000018416,0.0000018410, -0.0000018410,0.0000018416,0.0000018426,0.0000018439,0.0000018455, -0.0000018474,0.0000018497,0.0000018518,0.0000018534,0.0000018548, -0.0000018562,0.0000018575,0.0000018587,0.0000018601,0.0000018620, -0.0000018643,0.0000018669,0.0000018698,0.0000018729,0.0000018758, -0.0000018784,0.0000018807,0.0000018833,0.0000018868,0.0000018920, -0.0000018998,0.0000019107,0.0000019245,0.0000019399,0.0000019551, -0.0000019684,0.0000019780,0.0000019835,0.0000019861,0.0000019869, -0.0000019866,0.0000019855,0.0000019827,0.0000019762,0.0000019654, -0.0000019516,0.0000019372,0.0000019249,0.0000019159,0.0000019108, -0.0000019092,0.0000019106,0.0000019133,0.0000019163,0.0000019187, -0.0000019197,0.0000019197,0.0000019191,0.0000019183,0.0000019175, -0.0000019165,0.0000019147,0.0000019123,0.0000019106,0.0000019103, -0.0000019107,0.0000019113,0.0000019113,0.0000019106,0.0000019090, -0.0000019063,0.0000019029,0.0000018993,0.0000018950,0.0000018892, -0.0000018823,0.0000018760,0.0000018726,0.0000018735,0.0000018781, -0.0000018856,0.0000018937,0.0000018993,0.0000019009,0.0000018999, -0.0000018977,0.0000018962,0.0000018958,0.0000018951,0.0000018939, -0.0000018924,0.0000018890,0.0000018805,0.0000018665,0.0000018524, -0.0000018442,0.0000018424,0.0000018433,0.0000018437,0.0000018436, -0.0000018441,0.0000018453,0.0000018466,0.0000018462,0.0000018438, -0.0000018393,0.0000018342,0.0000018297,0.0000018262,0.0000018236, -0.0000018220,0.0000018214,0.0000018217,0.0000018225,0.0000018233, -0.0000018235,0.0000018232,0.0000018233,0.0000018239,0.0000018248, -0.0000018255,0.0000018251,0.0000018245,0.0000018260,0.0000018279, -0.0000018236,0.0000018129,0.0000018069,0.0000018094,0.0000018149, -0.0000018168,0.0000018170,0.0000018165,0.0000018153,0.0000018131, -0.0000018100,0.0000018068,0.0000018045,0.0000018026,0.0000018009, -0.0000017999,0.0000017991,0.0000017983,0.0000017973,0.0000017959, -0.0000017946,0.0000017935,0.0000017925,0.0000017915,0.0000017903, -0.0000017888,0.0000017871,0.0000017853,0.0000017838,0.0000017832, -0.0000017833,0.0000017835,0.0000017835,0.0000017835,0.0000017833, -0.0000017830,0.0000017826,0.0000017824,0.0000017823,0.0000017821, -0.0000017826,0.0000017838,0.0000017855,0.0000017880,0.0000017908, -0.0000017940,0.0000017972,0.0000017998,0.0000018015,0.0000018025, -0.0000018028,0.0000018029,0.0000018030,0.0000018033,0.0000018041, -0.0000018046,0.0000018039,0.0000017987,0.0000017891,0.0000017797, -0.0000017769,0.0000017821,0.0000017958,0.0000018071,0.0000018125, -0.0000018158,0.0000018218,0.0000018330,0.0000018451,0.0000018514, -0.0000018520,0.0000018510,0.0000018501,0.0000018494,0.0000018496, -0.0000018521,0.0000018561,0.0000018599,0.0000018639,0.0000018681, -0.0000018712,0.0000018726,0.0000018727,0.0000018725,0.0000018717, -0.0000018704,0.0000018691,0.0000018680,0.0000018671,0.0000018663, -0.0000018654,0.0000018652,0.0000018662,0.0000018696,0.0000018743, -0.0000018795,0.0000018844,0.0000018889,0.0000018925,0.0000018953, -0.0000018971,0.0000018976,0.0000018956,0.0000018896,0.0000018797, -0.0000018695,0.0000018637,0.0000018629,0.0000018653,0.0000018694, -0.0000018700,0.0000018654,0.0000018659,0.0000018734,0.0000018727, -0.0000018702,0.0000018729,0.0000018753,0.0000018841,0.0000019004, -0.0000019032,0.0000018920,0.0000018828,0.0000018839,0.0000018896, -0.0000018956,0.0000019013,0.0000019053,0.0000019058,0.0000019036, -0.0000018961,0.0000018826,0.0000018731,0.0000018707,0.0000018665, -0.0000018592,0.0000018530,0.0000018497,0.0000018486,0.0000018484, -0.0000018476,0.0000018461,0.0000018448,0.0000018431,0.0000018413, -0.0000018400,0.0000018397,0.0000018402,0.0000018411,0.0000018424, -0.0000018438,0.0000018447,0.0000018449,0.0000018447,0.0000018438, -0.0000018424,0.0000018411,0.0000018399,0.0000018389,0.0000018384, -0.0000018385,0.0000018398,0.0000018422,0.0000018455,0.0000018493, -0.0000018531,0.0000018562,0.0000018583,0.0000018596,0.0000018605, -0.0000018611,0.0000018615,0.0000018616,0.0000018608,0.0000018589, -0.0000018564,0.0000018538,0.0000018514,0.0000018493,0.0000018473, -0.0000018452,0.0000018433,0.0000018415,0.0000018395,0.0000018372, -0.0000018346,0.0000018315,0.0000018278,0.0000018235,0.0000018190, -0.0000018144,0.0000018092,0.0000018030,0.0000017961,0.0000017896, -0.0000017858,0.0000017860,0.0000017880,0.0000017913,0.0000017944, -0.0000017965,0.0000017982,0.0000018001,0.0000018019,0.0000018034, -0.0000018047,0.0000018052,0.0000018068,0.0000018089,0.0000018126, -0.0000018170,0.0000018213,0.0000018247,0.0000018265,0.0000018267, -0.0000018255,0.0000018232,0.0000018201,0.0000018167,0.0000018131, -0.0000018096,0.0000018064,0.0000018035,0.0000018010,0.0000017987, -0.0000017962,0.0000017938,0.0000017916,0.0000017896,0.0000017879, -0.0000017861,0.0000017843,0.0000017826,0.0000017808,0.0000017792, -0.0000017777,0.0000017766,0.0000017762,0.0000017765,0.0000017774, -0.0000017785,0.0000017794,0.0000017802,0.0000017806,0.0000017809, -0.0000017812,0.0000017816,0.0000017822,0.0000017832,0.0000017842, -0.0000017851,0.0000017857,0.0000017860,0.0000017858,0.0000017854, -0.0000017846,0.0000017837,0.0000017828,0.0000017819,0.0000017816, -0.0000017822,0.0000017836,0.0000017851,0.0000017869,0.0000017885, -0.0000017898,0.0000017907,0.0000017913,0.0000017920,0.0000017927, -0.0000017935,0.0000017946,0.0000017955,0.0000017963,0.0000017974, -0.0000017982,0.0000017991,0.0000018005,0.0000018018,0.0000018030, -0.0000018027,0.0000018032,0.0000018039,0.0000018045,0.0000018052, -0.0000018061,0.0000018069,0.0000018073,0.0000018072,0.0000018068, -0.0000018068,0.0000018068,0.0000018064,0.0000018055,0.0000018042, -0.0000018021,0.0000017998,0.0000017976,0.0000017957,0.0000017952, -0.0000017957,0.0000017975,0.0000018008,0.0000018048,0.0000018093, -0.0000018142,0.0000018195,0.0000018253,0.0000018316,0.0000018382, -0.0000018445,0.0000018499,0.0000018538,0.0000018550,0.0000018541, -0.0000018517,0.0000018482,0.0000018441,0.0000018406,0.0000018381, -0.0000018366,0.0000018353,0.0000018337,0.0000018311,0.0000018271, -0.0000018219,0.0000018163,0.0000018119,0.0000018091,0.0000018089, -0.0000018095,0.0000018109,0.0000018126,0.0000018145,0.0000018164, -0.0000018181,0.0000018191,0.0000018189,0.0000018177,0.0000018157, -0.0000018139,0.0000018118,0.0000018104,0.0000018105,0.0000018121, -0.0000018149,0.0000018184,0.0000018218,0.0000018247,0.0000018266, -0.0000018276,0.0000018275,0.0000018267,0.0000018262,0.0000018264, -0.0000018276,0.0000018292,0.0000018310,0.0000018329,0.0000018352, -0.0000018379,0.0000018411,0.0000018444,0.0000018476,0.0000018509, -0.0000018544,0.0000018583,0.0000018626,0.0000018673,0.0000018725, -0.0000018776,0.0000018818,0.0000018842,0.0000018843,0.0000018834, -0.0000018825,0.0000018827,0.0000018844,0.0000018863,0.0000018867, -0.0000018852,0.0000018824,0.0000018792,0.0000018771,0.0000018764, -0.0000018761,0.0000018755,0.0000018743,0.0000018730,0.0000018716, -0.0000018700,0.0000018682,0.0000018666,0.0000018657,0.0000018653, -0.0000018653,0.0000018658,0.0000018665,0.0000018670,0.0000018670, -0.0000018669,0.0000018667,0.0000018663,0.0000018651,0.0000018633, -0.0000018610,0.0000018586,0.0000018561,0.0000018534,0.0000018504, -0.0000018471,0.0000018439,0.0000018411,0.0000018388,0.0000018373, -0.0000018367,0.0000018363,0.0000018359,0.0000018353,0.0000018348, -0.0000018343,0.0000018340,0.0000018339,0.0000018341,0.0000018346, -0.0000018354,0.0000018362,0.0000018373,0.0000018387,0.0000018401, -0.0000018414,0.0000018426,0.0000018435,0.0000018441,0.0000018445, -0.0000018448,0.0000018449,0.0000018450,0.0000018449,0.0000018447, -0.0000018444,0.0000018439,0.0000018432,0.0000018422,0.0000018413, -0.0000018405,0.0000018398,0.0000018391,0.0000018383,0.0000018375, -0.0000018364,0.0000018352,0.0000018342,0.0000018334,0.0000018328, -0.0000018320,0.0000018312,0.0000018305,0.0000018301,0.0000018306, -0.0000018315,0.0000018325,0.0000018335,0.0000018346,0.0000018353, -0.0000018356,0.0000018352,0.0000018342,0.0000018329,0.0000018317, -0.0000018309,0.0000018305,0.0000018303,0.0000018300,0.0000018296, -0.0000018296,0.0000018296,0.0000018298,0.0000018303,0.0000018313, -0.0000018328,0.0000018344,0.0000018362,0.0000018383,0.0000018403, -0.0000018419,0.0000018431,0.0000018440,0.0000018448,0.0000018453, -0.0000018453,0.0000018441,0.0000018431,0.0000018406,0.0000018360, -0.0000018291,0.0000018203,0.0000018107,0.0000018021,0.0000017946, -0.0000017914,0.0000017892,0.0000017885,0.0000017900,0.0000017929, -0.0000017966,0.0000018005,0.0000018037,0.0000018058,0.0000018066, -0.0000018062,0.0000018054,0.0000018046,0.0000018046,0.0000018057, -0.0000018076,0.0000018102,0.0000018133,0.0000018167,0.0000018202, -0.0000018237,0.0000018272,0.0000018309,0.0000018347,0.0000018386, -0.0000018427,0.0000018471,0.0000018517,0.0000018561,0.0000018602, -0.0000018637,0.0000018665,0.0000018686,0.0000018702,0.0000018714, -0.0000018723,0.0000018727,0.0000018728,0.0000018727,0.0000018722, -0.0000018718,0.0000018720,0.0000018727,0.0000018737,0.0000018750, -0.0000018763,0.0000018773,0.0000018779,0.0000018782,0.0000018783, -0.0000018786,0.0000018789,0.0000018789,0.0000018785,0.0000018776, -0.0000018760,0.0000018741,0.0000018724,0.0000018714,0.0000018708, -0.0000018698,0.0000018681,0.0000018663,0.0000018654,0.0000018665, -0.0000018704,0.0000018775,0.0000018881,0.0000019016,0.0000019162, -0.0000019302,0.0000019443,0.0000019587,0.0000019720,0.0000019837, -0.0000019929,0.0000019972,0.0000019972,0.0000019985,0.0000020021, -0.0000020056,0.0000020087,0.0000020114,0.0000020124,0.0000020111, -0.0000020068,0.0000020005,0.0000019975,0.0000020016,0.0000020075, -0.0000020082,0.0000020049,0.0000020033,0.0000020093,0.0000020213, -0.0000020292,0.0000020295,0.0000020271,0.0000020234,0.0000020196, -0.0000020160,0.0000020123,0.0000020090,0.0000020067,0.0000020045, -0.0000020012,0.0000019993,0.0000020010,0.0000020062,0.0000020106, -0.0000020135,0.0000020168,0.0000020202,0.0000020218,0.0000020209, -0.0000020193,0.0000020177,0.0000020157,0.0000020127,0.0000020088, -0.0000020050,0.0000020020,0.0000020000,0.0000019993,0.0000019996, -0.0000019996,0.0000020001,0.0000020009,0.0000020016,0.0000020022, -0.0000020026,0.0000020026,0.0000020023,0.0000020018,0.0000020011, -0.0000020003,0.0000019993,0.0000019986,0.0000019986,0.0000019998, -0.0000020029,0.0000020077,0.0000020132,0.0000020181,0.0000020214, -0.0000020228,0.0000020231,0.0000020220,0.0000020204,0.0000020185, -0.0000020173,0.0000020159,0.0000020147,0.0000020138,0.0000020130, -0.0000020122,0.0000020112,0.0000020103,0.0000020096,0.0000020088, -0.0000020079,0.0000020071,0.0000020064,0.0000020058,0.0000020049, -0.0000020037,0.0000020025,0.0000020016,0.0000020006,0.0000019994, -0.0000019976,0.0000019959,0.0000019946,0.0000019934,0.0000019933, -0.0000019934,0.0000019933,0.0000019930,0.0000019925,0.0000019916, -0.0000019910,0.0000019909,0.0000019911,0.0000019912,0.0000019911, -0.0000019909,0.0000019908,0.0000019904,0.0000019897,0.0000019886, -0.0000019872,0.0000019854,0.0000019836,0.0000019820,0.0000019810, -0.0000019808,0.0000019809,0.0000019812,0.0000019815,0.0000019816, -0.0000019815,0.0000019811,0.0000019801,0.0000019788,0.0000019772, -0.0000019753,0.0000019729,0.0000019702,0.0000019675,0.0000019650, -0.0000019626,0.0000019603,0.0000019583,0.0000019565,0.0000019553, -0.0000019546,0.0000019546,0.0000019550,0.0000019556,0.0000019560, -0.0000019559,0.0000019553,0.0000019541,0.0000019524,0.0000019503, -0.0000019480,0.0000019459,0.0000019441,0.0000019423,0.0000019406, -0.0000019388,0.0000019374,0.0000019367,0.0000019365,0.0000019368, -0.0000019376,0.0000019388,0.0000019402,0.0000019418,0.0000019434, -0.0000019452,0.0000019470,0.0000019486,0.0000019499,0.0000019507, -0.0000019513,0.0000019520,0.0000019525,0.0000019531,0.0000019538, -0.0000019551,0.0000019567,0.0000019585,0.0000019606,0.0000019628, -0.0000019653,0.0000019678,0.0000019698,0.0000019713,0.0000019723, -0.0000019730,0.0000019735,0.0000019739,0.0000019742,0.0000019742, -0.0000019739,0.0000019734,0.0000019731,0.0000019733,0.0000019736, -0.0000019736,0.0000019736,0.0000019744,0.0000019756,0.0000019771, -0.0000019791,0.0000019813,0.0000019837,0.0000019861,0.0000019881, -0.0000019897,0.0000019910,0.0000019916,0.0000019913,0.0000019905, -0.0000019893,0.0000019879,0.0000019866,0.0000019856,0.0000019845, -0.0000019833,0.0000019821,0.0000019814,0.0000019819,0.0000019835, -0.0000019855,0.0000019878,0.0000019906,0.0000019935,0.0000019964, -0.0000019993,0.0000020021,0.0000020050,0.0000020081,0.0000020118, -0.0000020156,0.0000020195,0.0000020230,0.0000020262,0.0000020291, -0.0000020312,0.0000020325,0.0000020333,0.0000020338,0.0000020340, -0.0000020348,0.0000020362,0.0000020376,0.0000020395,0.0000020423, -0.0000020452,0.0000020479,0.0000020500,0.0000020512,0.0000020519, -0.0000020523,0.0000020524,0.0000020519,0.0000020510,0.0000020503, -0.0000020500,0.0000020499,0.0000020495,0.0000020489,0.0000020480, -0.0000020467,0.0000020452,0.0000020438,0.0000020427,0.0000020417, -0.0000020407,0.0000020399,0.0000020395,0.0000020394,0.0000020395, -0.0000020391,0.0000020386,0.0000020381,0.0000020371,0.0000020346, -0.0000020308,0.0000020266,0.0000020228,0.0000020198,0.0000020174, -0.0000020156,0.0000020139,0.0000020125,0.0000020119,0.0000020125, -0.0000020140,0.0000020161,0.0000020189,0.0000020219,0.0000020245, -0.0000020265,0.0000020275,0.0000020267,0.0000020257,0.0000020249, -0.0000020237,0.0000020225,0.0000020212,0.0000020212,0.0000020225, -0.0000020251,0.0000020291,0.0000020340,0.0000020389,0.0000020427, -0.0000020452,0.0000020474,0.0000020499,0.0000020527,0.0000020554, -0.0000020572,0.0000020580,0.0000020588,0.0000020581,0.0000020560, -0.0000020531,0.0000020499,0.0000020468,0.0000020442,0.0000020417, -0.0000020392,0.0000020367,0.0000020342,0.0000020320,0.0000020306, -0.0000020292,0.0000020275,0.0000020257,0.0000020239,0.0000020217, -0.0000020192,0.0000020175,0.0000020165,0.0000020165,0.0000020173, -0.0000020186,0.0000020200,0.0000020209,0.0000020217,0.0000020224, -0.0000020223,0.0000020209,0.0000020189,0.0000020163,0.0000020143, -0.0000020134,0.0000020126,0.0000020121,0.0000020122,0.0000020129, -0.0000020140,0.0000020154,0.0000020173,0.0000020192,0.0000020208, -0.0000020217,0.0000020218,0.0000020211,0.0000020196,0.0000020175, -0.0000020155,0.0000020142,0.0000020141,0.0000020145,0.0000020152, -0.0000020160,0.0000020177,0.0000020200,0.0000020221,0.0000020244, -0.0000020270,0.0000020291,0.0000020302,0.0000020303,0.0000020297, -0.0000020289,0.0000020275,0.0000020248,0.0000020213,0.0000020167, -0.0000020116,0.0000020063,0.0000020012,0.0000019964,0.0000019925, -0.0000019897,0.0000019876,0.0000019864,0.0000019858,0.0000019849, -0.0000019838,0.0000019829,0.0000019819,0.0000019809,0.0000019803, -0.0000019793,0.0000019777,0.0000019758,0.0000019736,0.0000019711, -0.0000019684,0.0000019656,0.0000019629,0.0000019605,0.0000019581, -0.0000019557,0.0000019537,0.0000019523,0.0000019512,0.0000019502, -0.0000019496,0.0000019500,0.0000019504,0.0000019509,0.0000019511, -0.0000019504,0.0000019485,0.0000019457,0.0000019422,0.0000019383, -0.0000019342,0.0000019303,0.0000019270,0.0000019241,0.0000019213, -0.0000019187,0.0000019162,0.0000019131,0.0000019097,0.0000019069, -0.0000019052,0.0000019044,0.0000019040,0.0000019039,0.0000019039, -0.0000019037,0.0000019037,0.0000019044,0.0000019058,0.0000019077, -0.0000019098,0.0000019117,0.0000019129,0.0000019134,0.0000019128, -0.0000019109,0.0000019080,0.0000019044,0.0000019001,0.0000018963, -0.0000018940,0.0000018931,0.0000018929,0.0000018939,0.0000018961, -0.0000018983,0.0000019002,0.0000019017,0.0000019032,0.0000019046, -0.0000019053,0.0000019053,0.0000019048,0.0000019041,0.0000019037, -0.0000019036,0.0000019035,0.0000019038,0.0000019046,0.0000019058, -0.0000019078,0.0000019112,0.0000019159,0.0000019217,0.0000019275, -0.0000019331,0.0000019386,0.0000019432,0.0000019465,0.0000019491, -0.0000019515,0.0000019538,0.0000019557,0.0000019566,0.0000019561, -0.0000019537,0.0000019500,0.0000019458,0.0000019425,0.0000019413, -0.0000019425,0.0000019456,0.0000019498,0.0000019542,0.0000019581, -0.0000019606,0.0000019616,0.0000019616,0.0000019606,0.0000019592, -0.0000019578,0.0000019567,0.0000019564,0.0000019570,0.0000019585, -0.0000019607,0.0000019631,0.0000019654,0.0000019676,0.0000019685, -0.0000019681,0.0000019652,0.0000019596,0.0000019529,0.0000019474, -0.0000019440,0.0000019427,0.0000019418,0.0000019420,0.0000019424, -0.0000019431,0.0000019451,0.0000019480,0.0000019507,0.0000019510, -0.0000019505,0.0000019481,0.0000019449,0.0000019430,0.0000019426, -0.0000019436,0.0000019464,0.0000019507,0.0000019551,0.0000019584, -0.0000019605,0.0000019619,0.0000019625,0.0000019625,0.0000019619, -0.0000019612,0.0000019603,0.0000019595,0.0000019591,0.0000019593, -0.0000019602,0.0000019622,0.0000019647,0.0000019667,0.0000019677, -0.0000019681,0.0000019691,0.0000019710,0.0000019731,0.0000019747, -0.0000019761,0.0000019776,0.0000019792,0.0000019808,0.0000019819, -0.0000019817,0.0000019806,0.0000019790,0.0000019769,0.0000019744, -0.0000019716,0.0000019679,0.0000019633,0.0000019586,0.0000019544, -0.0000019515,0.0000019493,0.0000019473,0.0000019456,0.0000019442, -0.0000019436,0.0000019436,0.0000019444,0.0000019464,0.0000019496, -0.0000019534,0.0000019575,0.0000019615,0.0000019652,0.0000019680, -0.0000019684,0.0000019660,0.0000019610,0.0000019553,0.0000019507, -0.0000019481,0.0000019473,0.0000019472,0.0000019466,0.0000019450, -0.0000019429,0.0000019400,0.0000019365,0.0000019328,0.0000019293, -0.0000019257,0.0000019227,0.0000019212,0.0000019199,0.0000019182, -0.0000019157,0.0000019124,0.0000019085,0.0000019047,0.0000019002, -0.0000018946,0.0000018883,0.0000018816,0.0000018751,0.0000018694, -0.0000018647,0.0000018611,0.0000018582,0.0000018555,0.0000018530, -0.0000018509,0.0000018494,0.0000018491,0.0000018512,0.0000018563, -0.0000018622,0.0000018658,0.0000018658,0.0000018638,0.0000018624, -0.0000018630,0.0000018649,0.0000018657,0.0000018658,0.0000018668, -0.0000018682,0.0000018685,0.0000018669,0.0000018643,0.0000018624, -0.0000018617,0.0000018617,0.0000018629,0.0000018647,0.0000018668, -0.0000018685,0.0000018691,0.0000018692,0.0000018694,0.0000018691, -0.0000018686,0.0000018681,0.0000018673,0.0000018666,0.0000018653, -0.0000018623,0.0000018585,0.0000018544,0.0000018507,0.0000018480, -0.0000018460,0.0000018439,0.0000018418,0.0000018403,0.0000018388, -0.0000018375,0.0000018368,0.0000018367,0.0000018371,0.0000018376, -0.0000018387,0.0000018398,0.0000018413,0.0000018431,0.0000018447, -0.0000018459,0.0000018471,0.0000018486,0.0000018502,0.0000018517, -0.0000018535,0.0000018558,0.0000018580,0.0000018603,0.0000018631, -0.0000018664,0.0000018697,0.0000018728,0.0000018755,0.0000018778, -0.0000018798,0.0000018824,0.0000018867,0.0000018934,0.0000019035, -0.0000019172,0.0000019337,0.0000019508,0.0000019656,0.0000019765, -0.0000019828,0.0000019857,0.0000019855,0.0000019844,0.0000019831, -0.0000019795,0.0000019723,0.0000019615,0.0000019485,0.0000019353, -0.0000019236,0.0000019149,0.0000019101,0.0000019094,0.0000019108, -0.0000019138,0.0000019172,0.0000019195,0.0000019207,0.0000019210, -0.0000019207,0.0000019202,0.0000019192,0.0000019174,0.0000019151, -0.0000019129,0.0000019115,0.0000019113,0.0000019117,0.0000019119, -0.0000019116,0.0000019103,0.0000019080,0.0000019051,0.0000019016, -0.0000018973,0.0000018921,0.0000018858,0.0000018794,0.0000018751, -0.0000018748,0.0000018775,0.0000018843,0.0000018920,0.0000018978, -0.0000019000,0.0000018989,0.0000018965,0.0000018944,0.0000018936, -0.0000018933,0.0000018923,0.0000018900,0.0000018867,0.0000018792, -0.0000018663,0.0000018522,0.0000018427,0.0000018397,0.0000018402, -0.0000018406,0.0000018403,0.0000018406,0.0000018425,0.0000018448, -0.0000018458,0.0000018441,0.0000018402,0.0000018355,0.0000018314, -0.0000018280,0.0000018254,0.0000018235,0.0000018229,0.0000018233, -0.0000018244,0.0000018254,0.0000018258,0.0000018261,0.0000018262, -0.0000018264,0.0000018262,0.0000018253,0.0000018245,0.0000018255, -0.0000018274,0.0000018247,0.0000018150,0.0000018078,0.0000018082, -0.0000018134,0.0000018165,0.0000018174,0.0000018174,0.0000018166, -0.0000018147,0.0000018114,0.0000018079,0.0000018049,0.0000018024, -0.0000018005,0.0000017993,0.0000017984,0.0000017977,0.0000017968, -0.0000017954,0.0000017938,0.0000017924,0.0000017915,0.0000017907, -0.0000017899,0.0000017892,0.0000017884,0.0000017875,0.0000017869, -0.0000017862,0.0000017857,0.0000017853,0.0000017851,0.0000017849, -0.0000017846,0.0000017844,0.0000017843,0.0000017844,0.0000017846, -0.0000017850,0.0000017857,0.0000017865,0.0000017876,0.0000017895, -0.0000017919,0.0000017947,0.0000017977,0.0000018004,0.0000018023, -0.0000018034,0.0000018039,0.0000018041,0.0000018044,0.0000018047, -0.0000018048,0.0000018045,0.0000018023,0.0000017959,0.0000017866, -0.0000017799,0.0000017791,0.0000017876,0.0000018017,0.0000018119, -0.0000018169,0.0000018207,0.0000018280,0.0000018398,0.0000018510, -0.0000018559,0.0000018560,0.0000018550,0.0000018549,0.0000018550, -0.0000018558,0.0000018580,0.0000018606,0.0000018633,0.0000018663, -0.0000018690,0.0000018704,0.0000018706,0.0000018702,0.0000018695, -0.0000018686,0.0000018677,0.0000018666,0.0000018653,0.0000018641, -0.0000018628,0.0000018621,0.0000018626,0.0000018657,0.0000018707, -0.0000018759,0.0000018810,0.0000018856,0.0000018895,0.0000018923, -0.0000018938,0.0000018933,0.0000018899,0.0000018829,0.0000018741, -0.0000018665,0.0000018625,0.0000018620,0.0000018641,0.0000018684, -0.0000018707,0.0000018667,0.0000018632,0.0000018708,0.0000018732, -0.0000018698,0.0000018711,0.0000018746,0.0000018820,0.0000018985, -0.0000019041,0.0000018952,0.0000018842,0.0000018825,0.0000018867, -0.0000018920,0.0000018971,0.0000019019,0.0000019041,0.0000019031, -0.0000018963,0.0000018826,0.0000018714,0.0000018680,0.0000018646, -0.0000018580,0.0000018522,0.0000018488,0.0000018477,0.0000018478, -0.0000018479,0.0000018473,0.0000018466,0.0000018461,0.0000018459, -0.0000018460,0.0000018464,0.0000018470,0.0000018475,0.0000018480, -0.0000018485,0.0000018486,0.0000018483,0.0000018475,0.0000018462, -0.0000018447,0.0000018433,0.0000018422,0.0000018410,0.0000018402, -0.0000018400,0.0000018410,0.0000018438,0.0000018481,0.0000018532, -0.0000018582,0.0000018623,0.0000018651,0.0000018667,0.0000018677, -0.0000018685,0.0000018692,0.0000018695,0.0000018692,0.0000018676, -0.0000018647,0.0000018609,0.0000018569,0.0000018532,0.0000018500, -0.0000018473,0.0000018449,0.0000018429,0.0000018413,0.0000018399, -0.0000018385,0.0000018370,0.0000018352,0.0000018326,0.0000018293, -0.0000018253,0.0000018210,0.0000018164,0.0000018115,0.0000018053, -0.0000017984,0.0000017924,0.0000017878,0.0000017864,0.0000017885, -0.0000017920,0.0000017954,0.0000017981,0.0000018005,0.0000018030, -0.0000018049,0.0000018062,0.0000018067,0.0000018055,0.0000018055, -0.0000018057,0.0000018065,0.0000018089,0.0000018115,0.0000018137, -0.0000018152,0.0000018156,0.0000018149,0.0000018132,0.0000018109, -0.0000018081,0.0000018050,0.0000018021,0.0000017995,0.0000017972, -0.0000017948,0.0000017922,0.0000017896,0.0000017870,0.0000017846, -0.0000017828,0.0000017813,0.0000017800,0.0000017788,0.0000017776, -0.0000017765,0.0000017755,0.0000017750,0.0000017748,0.0000017751, -0.0000017757,0.0000017766,0.0000017775,0.0000017782,0.0000017787, -0.0000017791,0.0000017794,0.0000017796,0.0000017802,0.0000017810, -0.0000017819,0.0000017828,0.0000017837,0.0000017843,0.0000017846, -0.0000017847,0.0000017844,0.0000017838,0.0000017831,0.0000017827, -0.0000017833,0.0000017845,0.0000017859,0.0000017877,0.0000017897, -0.0000017914,0.0000017927,0.0000017938,0.0000017946,0.0000017953, -0.0000017958,0.0000017964,0.0000017971,0.0000017979,0.0000017986, -0.0000017991,0.0000017995,0.0000018002,0.0000018013,0.0000018021, -0.0000018044,0.0000018047,0.0000018053,0.0000018054,0.0000018054, -0.0000018055,0.0000018061,0.0000018067,0.0000018069,0.0000018067, -0.0000018068,0.0000018068,0.0000018067,0.0000018064,0.0000018060, -0.0000018052,0.0000018040,0.0000018022,0.0000018000,0.0000017981, -0.0000017970,0.0000017963,0.0000017967,0.0000017983,0.0000018010, -0.0000018045,0.0000018083,0.0000018125,0.0000018171,0.0000018225, -0.0000018285,0.0000018349,0.0000018418,0.0000018482,0.0000018530, -0.0000018541,0.0000018541,0.0000018523,0.0000018487,0.0000018448, -0.0000018414,0.0000018388,0.0000018369,0.0000018354,0.0000018338, -0.0000018314,0.0000018279,0.0000018234,0.0000018185,0.0000018144, -0.0000018117,0.0000018109,0.0000018114,0.0000018124,0.0000018138, -0.0000018155,0.0000018172,0.0000018183,0.0000018184,0.0000018178, -0.0000018165,0.0000018145,0.0000018121,0.0000018098,0.0000018088, -0.0000018089,0.0000018096,0.0000018113,0.0000018135,0.0000018160, -0.0000018184,0.0000018202,0.0000018211,0.0000018215,0.0000018216, -0.0000018220,0.0000018224,0.0000018230,0.0000018241,0.0000018255, -0.0000018276,0.0000018304,0.0000018338,0.0000018375,0.0000018413, -0.0000018450,0.0000018484,0.0000018516,0.0000018549,0.0000018590, -0.0000018643,0.0000018703,0.0000018760,0.0000018799,0.0000018810, -0.0000018800,0.0000018784,0.0000018781,0.0000018791,0.0000018809, -0.0000018824,0.0000018821,0.0000018803,0.0000018781,0.0000018768, -0.0000018764,0.0000018762,0.0000018756,0.0000018744,0.0000018728, -0.0000018709,0.0000018689,0.0000018672,0.0000018661,0.0000018652, -0.0000018647,0.0000018647,0.0000018650,0.0000018654,0.0000018655, -0.0000018654,0.0000018652,0.0000018649,0.0000018642,0.0000018627, -0.0000018609,0.0000018589,0.0000018567,0.0000018543,0.0000018515, -0.0000018483,0.0000018449,0.0000018418,0.0000018392,0.0000018375, -0.0000018366,0.0000018361,0.0000018356,0.0000018351,0.0000018346, -0.0000018343,0.0000018342,0.0000018342,0.0000018343,0.0000018346, -0.0000018352,0.0000018359,0.0000018368,0.0000018380,0.0000018395, -0.0000018408,0.0000018421,0.0000018431,0.0000018439,0.0000018443, -0.0000018445,0.0000018445,0.0000018445,0.0000018443,0.0000018439, -0.0000018435,0.0000018430,0.0000018422,0.0000018412,0.0000018402, -0.0000018395,0.0000018387,0.0000018379,0.0000018371,0.0000018362, -0.0000018353,0.0000018345,0.0000018337,0.0000018331,0.0000018324, -0.0000018315,0.0000018307,0.0000018301,0.0000018301,0.0000018304, -0.0000018315,0.0000018328,0.0000018339,0.0000018350,0.0000018360, -0.0000018369,0.0000018371,0.0000018366,0.0000018354,0.0000018340, -0.0000018328,0.0000018319,0.0000018313,0.0000018307,0.0000018302, -0.0000018295,0.0000018289,0.0000018282,0.0000018277,0.0000018277, -0.0000018282,0.0000018290,0.0000018306,0.0000018326,0.0000018346, -0.0000018365,0.0000018381,0.0000018394,0.0000018407,0.0000018416, -0.0000018420,0.0000018420,0.0000018420,0.0000018410,0.0000018401, -0.0000018373,0.0000018327,0.0000018265,0.0000018186,0.0000018106, -0.0000018033,0.0000017966,0.0000017906,0.0000017891,0.0000017871, -0.0000017863,0.0000017881,0.0000017913,0.0000017949,0.0000017980, -0.0000018002,0.0000018011,0.0000018010,0.0000018004,0.0000017998, -0.0000017996,0.0000018000,0.0000018010,0.0000018027,0.0000018051, -0.0000018078,0.0000018106,0.0000018134,0.0000018161,0.0000018185, -0.0000018211,0.0000018239,0.0000018271,0.0000018309,0.0000018349, -0.0000018392,0.0000018437,0.0000018483,0.0000018530,0.0000018576, -0.0000018618,0.0000018653,0.0000018679,0.0000018695,0.0000018699, -0.0000018696,0.0000018691,0.0000018684,0.0000018678,0.0000018676, -0.0000018678,0.0000018679,0.0000018679,0.0000018678,0.0000018679, -0.0000018683,0.0000018688,0.0000018690,0.0000018689,0.0000018686, -0.0000018678,0.0000018667,0.0000018658,0.0000018654,0.0000018651, -0.0000018643,0.0000018625,0.0000018602,0.0000018589,0.0000018592, -0.0000018620,0.0000018679,0.0000018778,0.0000018916,0.0000019068, -0.0000019215,0.0000019360,0.0000019511,0.0000019655,0.0000019780, -0.0000019882,0.0000019934,0.0000019937,0.0000019953,0.0000019992, -0.0000020028,0.0000020066,0.0000020104,0.0000020116,0.0000020104, -0.0000020055,0.0000019991,0.0000019977,0.0000020028,0.0000020074, -0.0000020067,0.0000020029,0.0000020014,0.0000020078,0.0000020195, -0.0000020274,0.0000020281,0.0000020261,0.0000020227,0.0000020184, -0.0000020144,0.0000020111,0.0000020088,0.0000020070,0.0000020055, -0.0000020030,0.0000020002,0.0000020003,0.0000020039,0.0000020083, -0.0000020109,0.0000020126,0.0000020150,0.0000020177,0.0000020190, -0.0000020187,0.0000020185,0.0000020179,0.0000020166,0.0000020150, -0.0000020132,0.0000020111,0.0000020088,0.0000020067,0.0000020046, -0.0000020026,0.0000020012,0.0000020004,0.0000019993,0.0000019986, -0.0000019981,0.0000019977,0.0000019975,0.0000019976,0.0000019980, -0.0000019981,0.0000019980,0.0000019977,0.0000019970,0.0000019961, -0.0000019957,0.0000019961,0.0000019981,0.0000020014,0.0000020054, -0.0000020091,0.0000020120,0.0000020141,0.0000020155,0.0000020161, -0.0000020164,0.0000020164,0.0000020160,0.0000020152,0.0000020146, -0.0000020140,0.0000020134,0.0000020129,0.0000020123,0.0000020117, -0.0000020111,0.0000020103,0.0000020092,0.0000020076,0.0000020058, -0.0000020041,0.0000020026,0.0000020009,0.0000019989,0.0000019966, -0.0000019941,0.0000019921,0.0000019904,0.0000019892,0.0000019883, -0.0000019876,0.0000019870,0.0000019861,0.0000019852,0.0000019842, -0.0000019837,0.0000019836,0.0000019839,0.0000019843,0.0000019845, -0.0000019846,0.0000019845,0.0000019841,0.0000019834,0.0000019821, -0.0000019804,0.0000019787,0.0000019774,0.0000019768,0.0000019769, -0.0000019770,0.0000019774,0.0000019779,0.0000019782,0.0000019782, -0.0000019778,0.0000019771,0.0000019761,0.0000019750,0.0000019734, -0.0000019716,0.0000019692,0.0000019670,0.0000019647,0.0000019623, -0.0000019602,0.0000019583,0.0000019564,0.0000019547,0.0000019534, -0.0000019526,0.0000019522,0.0000019522,0.0000019521,0.0000019518, -0.0000019509,0.0000019495,0.0000019476,0.0000019453,0.0000019430, -0.0000019410,0.0000019390,0.0000019370,0.0000019354,0.0000019337, -0.0000019322,0.0000019309,0.0000019299,0.0000019293,0.0000019295, -0.0000019300,0.0000019310,0.0000019324,0.0000019341,0.0000019361, -0.0000019380,0.0000019397,0.0000019411,0.0000019421,0.0000019427, -0.0000019434,0.0000019439,0.0000019445,0.0000019452,0.0000019464, -0.0000019481,0.0000019502,0.0000019527,0.0000019554,0.0000019585, -0.0000019620,0.0000019653,0.0000019679,0.0000019700,0.0000019717, -0.0000019730,0.0000019739,0.0000019742,0.0000019742,0.0000019742, -0.0000019733,0.0000019729,0.0000019724,0.0000019717,0.0000019705, -0.0000019697,0.0000019692,0.0000019681,0.0000019685,0.0000019694, -0.0000019705,0.0000019721,0.0000019739,0.0000019759,0.0000019780, -0.0000019799,0.0000019815,0.0000019826,0.0000019830,0.0000019830, -0.0000019826,0.0000019821,0.0000019817,0.0000019814,0.0000019809, -0.0000019805,0.0000019804,0.0000019807,0.0000019811,0.0000019815, -0.0000019822,0.0000019834,0.0000019847,0.0000019863,0.0000019881, -0.0000019902,0.0000019923,0.0000019947,0.0000019970,0.0000019993, -0.0000020018,0.0000020044,0.0000020070,0.0000020094,0.0000020115, -0.0000020131,0.0000020140,0.0000020144,0.0000020145,0.0000020149, -0.0000020159,0.0000020172,0.0000020193,0.0000020222,0.0000020255, -0.0000020288,0.0000020319,0.0000020340,0.0000020352,0.0000020360, -0.0000020365,0.0000020365,0.0000020364,0.0000020363,0.0000020363, -0.0000020365,0.0000020368,0.0000020372,0.0000020376,0.0000020380, -0.0000020379,0.0000020375,0.0000020369,0.0000020358,0.0000020344, -0.0000020331,0.0000020318,0.0000020310,0.0000020306,0.0000020299, -0.0000020290,0.0000020286,0.0000020284,0.0000020272,0.0000020246, -0.0000020211,0.0000020172,0.0000020135,0.0000020101,0.0000020075, -0.0000020052,0.0000020030,0.0000020013,0.0000020005,0.0000020004, -0.0000020010,0.0000020022,0.0000020040,0.0000020064,0.0000020096, -0.0000020133,0.0000020171,0.0000020204,0.0000020226,0.0000020222, -0.0000020209,0.0000020199,0.0000020185,0.0000020175,0.0000020170, -0.0000020181,0.0000020211,0.0000020256,0.0000020313,0.0000020373, -0.0000020426,0.0000020465,0.0000020492,0.0000020515,0.0000020535, -0.0000020559,0.0000020584,0.0000020601,0.0000020609,0.0000020608, -0.0000020592,0.0000020566,0.0000020532,0.0000020493,0.0000020452, -0.0000020412,0.0000020376,0.0000020347,0.0000020326,0.0000020309, -0.0000020296,0.0000020285,0.0000020273,0.0000020263,0.0000020256, -0.0000020250,0.0000020243,0.0000020236,0.0000020232,0.0000020232, -0.0000020233,0.0000020238,0.0000020247,0.0000020253,0.0000020253, -0.0000020242,0.0000020221,0.0000020196,0.0000020172,0.0000020154, -0.0000020145,0.0000020138,0.0000020130,0.0000020132,0.0000020136, -0.0000020136,0.0000020141,0.0000020151,0.0000020159,0.0000020161, -0.0000020159,0.0000020153,0.0000020145,0.0000020134,0.0000020126, -0.0000020121,0.0000020116,0.0000020114,0.0000020113,0.0000020113, -0.0000020117,0.0000020127,0.0000020138,0.0000020157,0.0000020182, -0.0000020207,0.0000020223,0.0000020229,0.0000020232,0.0000020235, -0.0000020231,0.0000020217,0.0000020191,0.0000020154,0.0000020111, -0.0000020066,0.0000020024,0.0000019991,0.0000019965,0.0000019945, -0.0000019933,0.0000019923,0.0000019917,0.0000019911,0.0000019904, -0.0000019891,0.0000019879,0.0000019872,0.0000019865,0.0000019853, -0.0000019836,0.0000019817,0.0000019794,0.0000019768,0.0000019741, -0.0000019714,0.0000019686,0.0000019659,0.0000019635,0.0000019613, -0.0000019596,0.0000019581,0.0000019564,0.0000019545,0.0000019529, -0.0000019519,0.0000019514,0.0000019509,0.0000019503,0.0000019493, -0.0000019478,0.0000019458,0.0000019430,0.0000019396,0.0000019358, -0.0000019321,0.0000019286,0.0000019254,0.0000019224,0.0000019193, -0.0000019157,0.0000019122,0.0000019093,0.0000019072,0.0000019059, -0.0000019051,0.0000019046,0.0000019046,0.0000019046,0.0000019041, -0.0000019035,0.0000019035,0.0000019041,0.0000019051,0.0000019062, -0.0000019073,0.0000019077,0.0000019075,0.0000019061,0.0000019037, -0.0000019006,0.0000018969,0.0000018932,0.0000018902,0.0000018882, -0.0000018871,0.0000018873,0.0000018886,0.0000018901,0.0000018913, -0.0000018924,0.0000018937,0.0000018951,0.0000018965,0.0000018974, -0.0000018978,0.0000018978,0.0000018972,0.0000018960,0.0000018946, -0.0000018935,0.0000018931,0.0000018934,0.0000018944,0.0000018966, -0.0000019000,0.0000019040,0.0000019088,0.0000019145,0.0000019209, -0.0000019270,0.0000019321,0.0000019362,0.0000019394,0.0000019420, -0.0000019443,0.0000019465,0.0000019481,0.0000019487,0.0000019481, -0.0000019464,0.0000019444,0.0000019426,0.0000019407,0.0000019401, -0.0000019413,0.0000019437,0.0000019475,0.0000019510,0.0000019534, -0.0000019542,0.0000019537,0.0000019525,0.0000019512,0.0000019502, -0.0000019500,0.0000019502,0.0000019508,0.0000019519,0.0000019532, -0.0000019552,0.0000019579,0.0000019612,0.0000019642,0.0000019661, -0.0000019654,0.0000019620,0.0000019560,0.0000019495,0.0000019441, -0.0000019405,0.0000019393,0.0000019382,0.0000019379,0.0000019379, -0.0000019390,0.0000019416,0.0000019451,0.0000019480,0.0000019480, -0.0000019474,0.0000019455,0.0000019428,0.0000019412,0.0000019405, -0.0000019419,0.0000019450,0.0000019485,0.0000019515,0.0000019539, -0.0000019563,0.0000019578,0.0000019581,0.0000019576,0.0000019566, -0.0000019559,0.0000019561,0.0000019566,0.0000019573,0.0000019587, -0.0000019608,0.0000019627,0.0000019635,0.0000019636,0.0000019645, -0.0000019662,0.0000019679,0.0000019693,0.0000019707,0.0000019722, -0.0000019741,0.0000019761,0.0000019778,0.0000019783,0.0000019779, -0.0000019764,0.0000019741,0.0000019715,0.0000019686,0.0000019650, -0.0000019603,0.0000019553,0.0000019510,0.0000019484,0.0000019458, -0.0000019436,0.0000019418,0.0000019407,0.0000019402,0.0000019404, -0.0000019417,0.0000019440,0.0000019472,0.0000019511,0.0000019554, -0.0000019597,0.0000019632,0.0000019641,0.0000019622,0.0000019575, -0.0000019517,0.0000019465,0.0000019434,0.0000019427,0.0000019428, -0.0000019431,0.0000019425,0.0000019404,0.0000019379,0.0000019349, -0.0000019315,0.0000019283,0.0000019251,0.0000019217,0.0000019196, -0.0000019183,0.0000019165,0.0000019146,0.0000019122,0.0000019086, -0.0000019041,0.0000018997,0.0000018955,0.0000018909,0.0000018855, -0.0000018790,0.0000018723,0.0000018665,0.0000018625,0.0000018598, -0.0000018571,0.0000018541,0.0000018512,0.0000018487,0.0000018469, -0.0000018456,0.0000018459,0.0000018490,0.0000018549,0.0000018608, -0.0000018631,0.0000018617,0.0000018595,0.0000018584,0.0000018596, -0.0000018614,0.0000018626,0.0000018635,0.0000018645,0.0000018650, -0.0000018641,0.0000018621,0.0000018599,0.0000018582,0.0000018576, -0.0000018579,0.0000018592,0.0000018608,0.0000018624,0.0000018631, -0.0000018634,0.0000018637,0.0000018635,0.0000018631,0.0000018625, -0.0000018623,0.0000018622,0.0000018613,0.0000018588,0.0000018553, -0.0000018516,0.0000018484,0.0000018455,0.0000018431,0.0000018408, -0.0000018388,0.0000018370,0.0000018351,0.0000018335,0.0000018328, -0.0000018329,0.0000018333,0.0000018340,0.0000018349,0.0000018356, -0.0000018366,0.0000018380,0.0000018391,0.0000018397,0.0000018404, -0.0000018415,0.0000018427,0.0000018443,0.0000018464,0.0000018488, -0.0000018509,0.0000018532,0.0000018559,0.0000018590,0.0000018624, -0.0000018659,0.0000018693,0.0000018725,0.0000018750,0.0000018773, -0.0000018796,0.0000018827,0.0000018883,0.0000018978,0.0000019116, -0.0000019287,0.0000019465,0.0000019625,0.0000019745,0.0000019816, -0.0000019844,0.0000019834,0.0000019828,0.0000019806,0.0000019759, -0.0000019685,0.0000019585,0.0000019470,0.0000019350,0.0000019241, -0.0000019160,0.0000019115,0.0000019111,0.0000019123,0.0000019146, -0.0000019175,0.0000019200,0.0000019212,0.0000019215,0.0000019214, -0.0000019210,0.0000019200,0.0000019181,0.0000019156,0.0000019133, -0.0000019122,0.0000019122,0.0000019126,0.0000019125,0.0000019116, -0.0000019099,0.0000019073,0.0000019035,0.0000018990,0.0000018943, -0.0000018890,0.0000018832,0.0000018783,0.0000018767,0.0000018785, -0.0000018833,0.0000018899,0.0000018954,0.0000018980,0.0000018975, -0.0000018949,0.0000018922,0.0000018908,0.0000018906,0.0000018895, -0.0000018870,0.0000018840,0.0000018776,0.0000018664,0.0000018527, -0.0000018420,0.0000018374,0.0000018369,0.0000018372,0.0000018372, -0.0000018377,0.0000018405,0.0000018442,0.0000018466,0.0000018461, -0.0000018432,0.0000018391,0.0000018349,0.0000018315,0.0000018288, -0.0000018269,0.0000018260,0.0000018260,0.0000018263,0.0000018267, -0.0000018268,0.0000018268,0.0000018266,0.0000018259,0.0000018249, -0.0000018244,0.0000018253,0.0000018268,0.0000018251,0.0000018168, -0.0000018092,0.0000018079,0.0000018115,0.0000018154,0.0000018173, -0.0000018180,0.0000018179,0.0000018172,0.0000018149,0.0000018113, -0.0000018077,0.0000018040,0.0000018009,0.0000017991,0.0000017979, -0.0000017969,0.0000017959,0.0000017949,0.0000017937,0.0000017926, -0.0000017917,0.0000017910,0.0000017906,0.0000017904,0.0000017902, -0.0000017903,0.0000017903,0.0000017899,0.0000017895,0.0000017888, -0.0000017879,0.0000017868,0.0000017856,0.0000017848,0.0000017844, -0.0000017844,0.0000017850,0.0000017859,0.0000017869,0.0000017881, -0.0000017892,0.0000017907,0.0000017927,0.0000017950,0.0000017976, -0.0000018002,0.0000018022,0.0000018034,0.0000018039,0.0000018040, -0.0000018042,0.0000018040,0.0000018030,0.0000018008,0.0000017967, -0.0000017905,0.0000017840,0.0000017806,0.0000017826,0.0000017932, -0.0000018067,0.0000018161,0.0000018209,0.0000018252,0.0000018333, -0.0000018451,0.0000018557,0.0000018599,0.0000018597,0.0000018590, -0.0000018592,0.0000018597,0.0000018605,0.0000018619,0.0000018635, -0.0000018653,0.0000018673,0.0000018685,0.0000018685,0.0000018679, -0.0000018670,0.0000018662,0.0000018655,0.0000018646,0.0000018631, -0.0000018611,0.0000018593,0.0000018581,0.0000018587,0.0000018617, -0.0000018672,0.0000018730,0.0000018784,0.0000018833,0.0000018872, -0.0000018895,0.0000018897,0.0000018877,0.0000018828,0.0000018761, -0.0000018694,0.0000018643,0.0000018617,0.0000018611,0.0000018626, -0.0000018670,0.0000018706,0.0000018684,0.0000018626,0.0000018668, -0.0000018732,0.0000018697,0.0000018693,0.0000018729,0.0000018789, -0.0000018954,0.0000019047,0.0000018980,0.0000018867,0.0000018830, -0.0000018853,0.0000018898,0.0000018943,0.0000018990,0.0000019017, -0.0000019014,0.0000018955,0.0000018817,0.0000018695,0.0000018650, -0.0000018616,0.0000018558,0.0000018507,0.0000018479,0.0000018469, -0.0000018472,0.0000018480,0.0000018487,0.0000018492,0.0000018495, -0.0000018496,0.0000018496,0.0000018495,0.0000018489,0.0000018485, -0.0000018486,0.0000018490,0.0000018492,0.0000018490,0.0000018492, -0.0000018488,0.0000018478,0.0000018467,0.0000018456,0.0000018445, -0.0000018437,0.0000018432,0.0000018433,0.0000018441,0.0000018468, -0.0000018500,0.0000018538,0.0000018583,0.0000018626,0.0000018665, -0.0000018688,0.0000018714,0.0000018732,0.0000018743,0.0000018749, -0.0000018747,0.0000018733,0.0000018708,0.0000018669,0.0000018623, -0.0000018577,0.0000018537,0.0000018502,0.0000018472,0.0000018449, -0.0000018431,0.0000018411,0.0000018386,0.0000018369,0.0000018357, -0.0000018343,0.0000018324,0.0000018298,0.0000018264,0.0000018223, -0.0000018179,0.0000018132,0.0000018080,0.0000018016,0.0000017948, -0.0000017896,0.0000017885,0.0000017888,0.0000017923,0.0000017961, -0.0000017996,0.0000018028,0.0000018059,0.0000018078,0.0000018088, -0.0000018084,0.0000018069,0.0000018042,0.0000018036,0.0000018024, -0.0000018018,0.0000018027,0.0000018032,0.0000018036,0.0000018037, -0.0000018032,0.0000018023,0.0000018007,0.0000017986,0.0000017966, -0.0000017947,0.0000017927,0.0000017904,0.0000017879,0.0000017854, -0.0000017828,0.0000017806,0.0000017792,0.0000017783,0.0000017776, -0.0000017769,0.0000017762,0.0000017754,0.0000017747,0.0000017741, -0.0000017737,0.0000017736,0.0000017739,0.0000017747,0.0000017756, -0.0000017763,0.0000017767,0.0000017770,0.0000017772,0.0000017774, -0.0000017778,0.0000017783,0.0000017791,0.0000017802,0.0000017815, -0.0000017827,0.0000017839,0.0000017845,0.0000017847,0.0000017845, -0.0000017842,0.0000017846,0.0000017855,0.0000017867,0.0000017883, -0.0000017903,0.0000017923,0.0000017943,0.0000017960,0.0000017974, -0.0000017984,0.0000017991,0.0000017999,0.0000018010,0.0000018021, -0.0000018030,0.0000018037,0.0000018041,0.0000018043,0.0000018044, -0.0000018044,0.0000018084,0.0000018082,0.0000018084,0.0000018085, -0.0000018084,0.0000018082,0.0000018081,0.0000018084,0.0000018088, -0.0000018089,0.0000018089,0.0000018090,0.0000018089,0.0000018084, -0.0000018076,0.0000018068,0.0000018059,0.0000018050,0.0000018039, -0.0000018028,0.0000018015,0.0000018003,0.0000017991,0.0000017984, -0.0000017992,0.0000018001,0.0000018014,0.0000018037,0.0000018066, -0.0000018101,0.0000018140,0.0000018186,0.0000018244,0.0000018313, -0.0000018385,0.0000018450,0.0000018504,0.0000018534,0.0000018531, -0.0000018516,0.0000018486,0.0000018451,0.0000018417,0.0000018389, -0.0000018367,0.0000018350,0.0000018335,0.0000018317,0.0000018289, -0.0000018252,0.0000018207,0.0000018168,0.0000018140,0.0000018126, -0.0000018129,0.0000018136,0.0000018146,0.0000018159,0.0000018170, -0.0000018178,0.0000018181,0.0000018179,0.0000018171,0.0000018156, -0.0000018137,0.0000018119,0.0000018102,0.0000018097,0.0000018090, -0.0000018090,0.0000018099,0.0000018114,0.0000018133,0.0000018151, -0.0000018166,0.0000018179,0.0000018183,0.0000018184,0.0000018183, -0.0000018186,0.0000018192,0.0000018209,0.0000018236,0.0000018273, -0.0000018318,0.0000018365,0.0000018407,0.0000018441,0.0000018467, -0.0000018490,0.0000018517,0.0000018558,0.0000018613,0.0000018676, -0.0000018732,0.0000018766,0.0000018769,0.0000018758,0.0000018743, -0.0000018743,0.0000018758,0.0000018779,0.0000018789,0.0000018783, -0.0000018774,0.0000018767,0.0000018763,0.0000018759,0.0000018750, -0.0000018734,0.0000018714,0.0000018692,0.0000018672,0.0000018658, -0.0000018648,0.0000018641,0.0000018638,0.0000018636,0.0000018636, -0.0000018637,0.0000018637,0.0000018635,0.0000018632,0.0000018627, -0.0000018618,0.0000018603,0.0000018586,0.0000018566,0.0000018545, -0.0000018519,0.0000018489,0.0000018455,0.0000018421,0.0000018392, -0.0000018372,0.0000018361,0.0000018354,0.0000018348,0.0000018344, -0.0000018340,0.0000018338,0.0000018338,0.0000018339,0.0000018341, -0.0000018343,0.0000018348,0.0000018355,0.0000018363,0.0000018374, -0.0000018388,0.0000018402,0.0000018413,0.0000018424,0.0000018431, -0.0000018436,0.0000018438,0.0000018436,0.0000018433,0.0000018426, -0.0000018418,0.0000018409,0.0000018400,0.0000018389,0.0000018376, -0.0000018363,0.0000018349,0.0000018330,0.0000018310,0.0000018291, -0.0000018275,0.0000018264,0.0000018257,0.0000018256,0.0000018257, -0.0000018257,0.0000018256,0.0000018256,0.0000018257,0.0000018262, -0.0000018270,0.0000018285,0.0000018303,0.0000018324,0.0000018343, -0.0000018360,0.0000018371,0.0000018372,0.0000018372,0.0000018367, -0.0000018355,0.0000018343,0.0000018332,0.0000018324,0.0000018318, -0.0000018313,0.0000018307,0.0000018299,0.0000018289,0.0000018280, -0.0000018273,0.0000018271,0.0000018270,0.0000018272,0.0000018280, -0.0000018292,0.0000018308,0.0000018324,0.0000018341,0.0000018359, -0.0000018374,0.0000018385,0.0000018389,0.0000018390,0.0000018390, -0.0000018386,0.0000018369,0.0000018359,0.0000018336,0.0000018298, -0.0000018254,0.0000018200,0.0000018139,0.0000018074,0.0000018014, -0.0000017951,0.0000017895,0.0000017879,0.0000017865,0.0000017859, -0.0000017872,0.0000017897,0.0000017923,0.0000017945,0.0000017961, -0.0000017966,0.0000017962,0.0000017951,0.0000017937,0.0000017929, -0.0000017929,0.0000017940,0.0000017962,0.0000017991,0.0000018023, -0.0000018051,0.0000018077,0.0000018102,0.0000018126,0.0000018150, -0.0000018175,0.0000018201,0.0000018230,0.0000018263,0.0000018302, -0.0000018347,0.0000018395,0.0000018445,0.0000018494,0.0000018538, -0.0000018576,0.0000018607,0.0000018628,0.0000018638,0.0000018640, -0.0000018639,0.0000018635,0.0000018630,0.0000018624,0.0000018619, -0.0000018621,0.0000018627,0.0000018631,0.0000018632,0.0000018633, -0.0000018633,0.0000018629,0.0000018623,0.0000018618,0.0000018616, -0.0000018613,0.0000018601,0.0000018580,0.0000018557,0.0000018546, -0.0000018550,0.0000018571,0.0000018616,0.0000018702,0.0000018833, -0.0000018986,0.0000019140,0.0000019290,0.0000019447,0.0000019597, -0.0000019727,0.0000019836,0.0000019893,0.0000019897,0.0000019919, -0.0000019964,0.0000020001,0.0000020047,0.0000020093,0.0000020106, -0.0000020091,0.0000020036,0.0000019975,0.0000019980,0.0000020033, -0.0000020064,0.0000020048,0.0000020010,0.0000020000,0.0000020060, -0.0000020170,0.0000020251,0.0000020264,0.0000020248,0.0000020219, -0.0000020179,0.0000020138,0.0000020105,0.0000020082,0.0000020071, -0.0000020067,0.0000020051,0.0000020022,0.0000020006,0.0000020019, -0.0000020057,0.0000020087,0.0000020104,0.0000020119,0.0000020140, -0.0000020160,0.0000020175,0.0000020179,0.0000020175,0.0000020170, -0.0000020167,0.0000020162,0.0000020152,0.0000020138,0.0000020123, -0.0000020103,0.0000020080,0.0000020056,0.0000020031,0.0000020007, -0.0000019986,0.0000019966,0.0000019945,0.0000019925,0.0000019910, -0.0000019904,0.0000019904,0.0000019910,0.0000019918,0.0000019925, -0.0000019927,0.0000019926,0.0000019920,0.0000019916,0.0000019916, -0.0000019924,0.0000019940,0.0000019963,0.0000019987,0.0000020009, -0.0000020030,0.0000020048,0.0000020060,0.0000020066,0.0000020070, -0.0000020073,0.0000020074,0.0000020070,0.0000020061,0.0000020050, -0.0000020034,0.0000020015,0.0000019995,0.0000019974,0.0000019952, -0.0000019930,0.0000019910,0.0000019889,0.0000019867,0.0000019845, -0.0000019823,0.0000019801,0.0000019781,0.0000019764,0.0000019751, -0.0000019741,0.0000019733,0.0000019725,0.0000019716,0.0000019707, -0.0000019702,0.0000019704,0.0000019713,0.0000019725,0.0000019734, -0.0000019742,0.0000019748,0.0000019755,0.0000019758,0.0000019756, -0.0000019748,0.0000019740,0.0000019734,0.0000019733,0.0000019736, -0.0000019739,0.0000019745,0.0000019751,0.0000019758,0.0000019762, -0.0000019764,0.0000019762,0.0000019758,0.0000019752,0.0000019743, -0.0000019730,0.0000019712,0.0000019691,0.0000019668,0.0000019641, -0.0000019615,0.0000019593,0.0000019565,0.0000019543,0.0000019522, -0.0000019503,0.0000019487,0.0000019475,0.0000019466,0.0000019457, -0.0000019447,0.0000019434,0.0000019418,0.0000019402,0.0000019388, -0.0000019371,0.0000019356,0.0000019344,0.0000019334,0.0000019322, -0.0000019311,0.0000019297,0.0000019281,0.0000019271,0.0000019262, -0.0000019257,0.0000019257,0.0000019263,0.0000019275,0.0000019290, -0.0000019305,0.0000019319,0.0000019332,0.0000019340,0.0000019344, -0.0000019347,0.0000019349,0.0000019352,0.0000019354,0.0000019361, -0.0000019374,0.0000019391,0.0000019413,0.0000019438,0.0000019469, -0.0000019506,0.0000019544,0.0000019578,0.0000019609,0.0000019639, -0.0000019663,0.0000019682,0.0000019700,0.0000019718,0.0000019725, -0.0000019732,0.0000019739,0.0000019731,0.0000019734,0.0000019728, -0.0000019714,0.0000019702,0.0000019688,0.0000019681,0.0000019677, -0.0000019680,0.0000019684,0.0000019682,0.0000019687,0.0000019696, -0.0000019705,0.0000019715,0.0000019726,0.0000019736,0.0000019742, -0.0000019746,0.0000019749,0.0000019752,0.0000019754,0.0000019756, -0.0000019759,0.0000019766,0.0000019775,0.0000019784,0.0000019791, -0.0000019799,0.0000019808,0.0000019819,0.0000019833,0.0000019849, -0.0000019871,0.0000019895,0.0000019919,0.0000019938,0.0000019952, -0.0000019967,0.0000019984,0.0000019999,0.0000020013,0.0000020024, -0.0000020032,0.0000020036,0.0000020035,0.0000020029,0.0000020024, -0.0000020025,0.0000020031,0.0000020046,0.0000020068,0.0000020094, -0.0000020121,0.0000020148,0.0000020170,0.0000020186,0.0000020195, -0.0000020199,0.0000020202,0.0000020206,0.0000020208,0.0000020207, -0.0000020206,0.0000020206,0.0000020209,0.0000020218,0.0000020232, -0.0000020250,0.0000020266,0.0000020278,0.0000020282,0.0000020278, -0.0000020272,0.0000020266,0.0000020262,0.0000020258,0.0000020254, -0.0000020246,0.0000020238,0.0000020234,0.0000020227,0.0000020217, -0.0000020199,0.0000020172,0.0000020137,0.0000020100,0.0000020071, -0.0000020042,0.0000020015,0.0000019993,0.0000019973,0.0000019955, -0.0000019937,0.0000019925,0.0000019918,0.0000019917,0.0000019923, -0.0000019940,0.0000019972,0.0000020018,0.0000020071,0.0000020120, -0.0000020160,0.0000020178,0.0000020171,0.0000020155,0.0000020143, -0.0000020133,0.0000020133,0.0000020154,0.0000020194,0.0000020250, -0.0000020315,0.0000020383,0.0000020441,0.0000020484,0.0000020513, -0.0000020535,0.0000020558,0.0000020580,0.0000020601,0.0000020609, -0.0000020611,0.0000020606,0.0000020592,0.0000020567,0.0000020531, -0.0000020489,0.0000020445,0.0000020403,0.0000020369,0.0000020342, -0.0000020323,0.0000020308,0.0000020300,0.0000020298,0.0000020302, -0.0000020304,0.0000020304,0.0000020305,0.0000020307,0.0000020309, -0.0000020314,0.0000020319,0.0000020321,0.0000020320,0.0000020312, -0.0000020296,0.0000020273,0.0000020243,0.0000020214,0.0000020197, -0.0000020189,0.0000020183,0.0000020178,0.0000020175,0.0000020171, -0.0000020167,0.0000020162,0.0000020155,0.0000020149,0.0000020131, -0.0000020115,0.0000020106,0.0000020101,0.0000020099,0.0000020100, -0.0000020099,0.0000020095,0.0000020089,0.0000020078,0.0000020065, -0.0000020053,0.0000020049,0.0000020053,0.0000020069,0.0000020099, -0.0000020130,0.0000020155,0.0000020175,0.0000020195,0.0000020212, -0.0000020222,0.0000020221,0.0000020208,0.0000020184,0.0000020154, -0.0000020120,0.0000020090,0.0000020064,0.0000020041,0.0000020023, -0.0000020007,0.0000019991,0.0000019978,0.0000019965,0.0000019946, -0.0000019927,0.0000019913,0.0000019900,0.0000019887,0.0000019870, -0.0000019852,0.0000019831,0.0000019808,0.0000019787,0.0000019767, -0.0000019746,0.0000019726,0.0000019709,0.0000019695,0.0000019684, -0.0000019678,0.0000019670,0.0000019658,0.0000019643,0.0000019627, -0.0000019612,0.0000019598,0.0000019586,0.0000019574,0.0000019563, -0.0000019551,0.0000019535,0.0000019516,0.0000019491,0.0000019461, -0.0000019425,0.0000019383,0.0000019341,0.0000019295,0.0000019244, -0.0000019194,0.0000019148,0.0000019111,0.0000019088,0.0000019071, -0.0000019059,0.0000019055,0.0000019058,0.0000019060,0.0000019057, -0.0000019053,0.0000019048,0.0000019047,0.0000019053,0.0000019058, -0.0000019063,0.0000019062,0.0000019052,0.0000019033,0.0000019005, -0.0000018970,0.0000018931,0.0000018895,0.0000018870,0.0000018855, -0.0000018848,0.0000018851,0.0000018858,0.0000018864,0.0000018870, -0.0000018877,0.0000018884,0.0000018891,0.0000018899,0.0000018908, -0.0000018915,0.0000018916,0.0000018910,0.0000018897,0.0000018882, -0.0000018869,0.0000018858,0.0000018855,0.0000018864,0.0000018878, -0.0000018898,0.0000018928,0.0000018973,0.0000019028,0.0000019085, -0.0000019140,0.0000019192,0.0000019236,0.0000019274,0.0000019309, -0.0000019343,0.0000019369,0.0000019384,0.0000019394,0.0000019402, -0.0000019410,0.0000019415,0.0000019410,0.0000019403,0.0000019398, -0.0000019395,0.0000019400,0.0000019416,0.0000019438,0.0000019457, -0.0000019467,0.0000019466,0.0000019459,0.0000019453,0.0000019452, -0.0000019454,0.0000019459,0.0000019462,0.0000019463,0.0000019467, -0.0000019478,0.0000019501,0.0000019532,0.0000019571,0.0000019609, -0.0000019630,0.0000019622,0.0000019584,0.0000019520,0.0000019457, -0.0000019405,0.0000019375,0.0000019363,0.0000019351,0.0000019333, -0.0000019330,0.0000019340,0.0000019368,0.0000019408,0.0000019444, -0.0000019458,0.0000019450,0.0000019438,0.0000019418,0.0000019408, -0.0000019409,0.0000019418,0.0000019436,0.0000019456,0.0000019481, -0.0000019500,0.0000019509,0.0000019511,0.0000019505,0.0000019502, -0.0000019506,0.0000019514,0.0000019524,0.0000019537,0.0000019555, -0.0000019573,0.0000019580,0.0000019583,0.0000019597,0.0000019617, -0.0000019634,0.0000019644,0.0000019650,0.0000019658,0.0000019671, -0.0000019690,0.0000019709,0.0000019726,0.0000019732,0.0000019725, -0.0000019706,0.0000019679,0.0000019647,0.0000019608,0.0000019561, -0.0000019510,0.0000019473,0.0000019452,0.0000019428,0.0000019405, -0.0000019390,0.0000019385,0.0000019386,0.0000019394,0.0000019411, -0.0000019438,0.0000019471,0.0000019508,0.0000019548,0.0000019581, -0.0000019591,0.0000019576,0.0000019529,0.0000019473,0.0000019425, -0.0000019396,0.0000019386,0.0000019386,0.0000019388,0.0000019390, -0.0000019382,0.0000019362,0.0000019332,0.0000019296,0.0000019259, -0.0000019232,0.0000019209,0.0000019183,0.0000019164,0.0000019147, -0.0000019124,0.0000019107,0.0000019085,0.0000019046,0.0000018993, -0.0000018948,0.0000018911,0.0000018875,0.0000018832,0.0000018771, -0.0000018703,0.0000018643,0.0000018601,0.0000018575,0.0000018555, -0.0000018525,0.0000018496,0.0000018472,0.0000018450,0.0000018435, -0.0000018427,0.0000018441,0.0000018491,0.0000018556,0.0000018595, -0.0000018592,0.0000018565,0.0000018542,0.0000018545,0.0000018568, -0.0000018595,0.0000018610,0.0000018616,0.0000018620,0.0000018615, -0.0000018602,0.0000018580,0.0000018554,0.0000018536,0.0000018528, -0.0000018530,0.0000018542,0.0000018558,0.0000018569,0.0000018578, -0.0000018582,0.0000018580,0.0000018577,0.0000018578,0.0000018582, -0.0000018582,0.0000018570,0.0000018545,0.0000018515,0.0000018485, -0.0000018453,0.0000018424,0.0000018400,0.0000018379,0.0000018357, -0.0000018333,0.0000018310,0.0000018292,0.0000018285,0.0000018286, -0.0000018290,0.0000018298,0.0000018307,0.0000018315,0.0000018324, -0.0000018337,0.0000018346,0.0000018351,0.0000018356,0.0000018363, -0.0000018370,0.0000018380,0.0000018394,0.0000018411,0.0000018431, -0.0000018454,0.0000018480,0.0000018509,0.0000018542,0.0000018578, -0.0000018618,0.0000018656,0.0000018692,0.0000018723,0.0000018747, -0.0000018766,0.0000018792,0.0000018845,0.0000018936,0.0000019070, -0.0000019238,0.0000019418,0.0000019585,0.0000019715,0.0000019793, -0.0000019827,0.0000019819,0.0000019808,0.0000019776,0.0000019723, -0.0000019651,0.0000019564,0.0000019464,0.0000019360,0.0000019265, -0.0000019192,0.0000019147,0.0000019132,0.0000019136,0.0000019149, -0.0000019177,0.0000019199,0.0000019213,0.0000019217,0.0000019219, -0.0000019217,0.0000019206,0.0000019183,0.0000019157,0.0000019137, -0.0000019129,0.0000019131,0.0000019133,0.0000019131,0.0000019119, -0.0000019092,0.0000019053,0.0000019008,0.0000018964,0.0000018919, -0.0000018868,0.0000018821,0.0000018791,0.0000018791,0.0000018825, -0.0000018874,0.0000018922,0.0000018952,0.0000018950,0.0000018928, -0.0000018897,0.0000018880,0.0000018874,0.0000018862,0.0000018839, -0.0000018811,0.0000018762,0.0000018669,0.0000018540,0.0000018420, -0.0000018360,0.0000018340,0.0000018349,0.0000018358,0.0000018370, -0.0000018401,0.0000018446,0.0000018479,0.0000018486,0.0000018471, -0.0000018437,0.0000018396,0.0000018362,0.0000018337,0.0000018318, -0.0000018304,0.0000018295,0.0000018288,0.0000018281,0.0000018275, -0.0000018269,0.0000018259,0.0000018250,0.0000018249,0.0000018258, -0.0000018267,0.0000018252,0.0000018184,0.0000018109,0.0000018080, -0.0000018099,0.0000018140,0.0000018168,0.0000018183,0.0000018189, -0.0000018191,0.0000018185,0.0000018161,0.0000018125,0.0000018074, -0.0000018025,0.0000017994,0.0000017979,0.0000017965,0.0000017951, -0.0000017942,0.0000017936,0.0000017934,0.0000017930,0.0000017927, -0.0000017928,0.0000017932,0.0000017940,0.0000017943,0.0000017945, -0.0000017948,0.0000017947,0.0000017942,0.0000017931,0.0000017913, -0.0000017891,0.0000017871,0.0000017856,0.0000017850,0.0000017851, -0.0000017855,0.0000017865,0.0000017875,0.0000017885,0.0000017896, -0.0000017911,0.0000017929,0.0000017951,0.0000017971,0.0000017989, -0.0000018000,0.0000018005,0.0000018004,0.0000017997,0.0000017983, -0.0000017959,0.0000017928,0.0000017889,0.0000017847,0.0000017817, -0.0000017814,0.0000017868,0.0000017986,0.0000018110,0.0000018195, -0.0000018243,0.0000018291,0.0000018375,0.0000018493,0.0000018591, -0.0000018630,0.0000018627,0.0000018620,0.0000018622,0.0000018629, -0.0000018635,0.0000018640,0.0000018646,0.0000018658,0.0000018670, -0.0000018669,0.0000018658,0.0000018647,0.0000018637,0.0000018631, -0.0000018623,0.0000018607,0.0000018581,0.0000018554,0.0000018536, -0.0000018539,0.0000018567,0.0000018626,0.0000018691,0.0000018750, -0.0000018800,0.0000018836,0.0000018851,0.0000018839,0.0000018807, -0.0000018758,0.0000018706,0.0000018663,0.0000018631,0.0000018609, -0.0000018598,0.0000018607,0.0000018653,0.0000018705,0.0000018698, -0.0000018630,0.0000018636,0.0000018716,0.0000018703,0.0000018676, -0.0000018707,0.0000018753,0.0000018895,0.0000019035,0.0000018999, -0.0000018888,0.0000018837,0.0000018847,0.0000018885,0.0000018926, -0.0000018967,0.0000018988,0.0000018987,0.0000018935,0.0000018799, -0.0000018671,0.0000018617,0.0000018581,0.0000018529,0.0000018486, -0.0000018462,0.0000018455,0.0000018457,0.0000018463,0.0000018469, -0.0000018472,0.0000018470,0.0000018476,0.0000018491,0.0000018498, -0.0000018540,0.0000018603,0.0000018667,0.0000018724,0.0000018770, -0.0000018804,0.0000018824,0.0000018829,0.0000018824,0.0000018808, -0.0000018787,0.0000018759,0.0000018727,0.0000018691,0.0000018655, -0.0000018618,0.0000018583,0.0000018556,0.0000018537,0.0000018553, -0.0000018570,0.0000018587,0.0000018611,0.0000018646,0.0000018681, -0.0000018711,0.0000018735,0.0000018755,0.0000018766,0.0000018768, -0.0000018757,0.0000018729,0.0000018685,0.0000018637,0.0000018593, -0.0000018557,0.0000018532,0.0000018518,0.0000018505,0.0000018481, -0.0000018443,0.0000018402,0.0000018362,0.0000018340,0.0000018329, -0.0000018317,0.0000018297,0.0000018269,0.0000018232,0.0000018194, -0.0000018155,0.0000018109,0.0000018044,0.0000017975,0.0000017911, -0.0000017892,0.0000017896,0.0000017924,0.0000017968,0.0000018012, -0.0000018050,0.0000018081,0.0000018103,0.0000018112,0.0000018100, -0.0000018075,0.0000018047,0.0000018010,0.0000017997,0.0000017966, -0.0000017956,0.0000017944,0.0000017938,0.0000017934,0.0000017929, -0.0000017923,0.0000017914,0.0000017905,0.0000017894,0.0000017880, -0.0000017863,0.0000017845,0.0000017825,0.0000017805,0.0000017788, -0.0000017777,0.0000017769,0.0000017764,0.0000017758,0.0000017752, -0.0000017744,0.0000017736,0.0000017728,0.0000017722,0.0000017719, -0.0000017720,0.0000017727,0.0000017734,0.0000017739,0.0000017741, -0.0000017743,0.0000017745,0.0000017747,0.0000017752,0.0000017764, -0.0000017778,0.0000017793,0.0000017812,0.0000017830,0.0000017843, -0.0000017850,0.0000017853,0.0000017853,0.0000017854,0.0000017856, -0.0000017863,0.0000017874,0.0000017891,0.0000017910,0.0000017931, -0.0000017953,0.0000017973,0.0000017987,0.0000017998,0.0000018009, -0.0000018025,0.0000018040,0.0000018055,0.0000018070,0.0000018081, -0.0000018088,0.0000018091,0.0000018090,0.0000018120,0.0000018118, -0.0000018117,0.0000018115,0.0000018111,0.0000018107,0.0000018103, -0.0000018102,0.0000018107,0.0000018115,0.0000018124,0.0000018129, -0.0000018134,0.0000018134,0.0000018127,0.0000018114,0.0000018099, -0.0000018083,0.0000018070,0.0000018060,0.0000018052,0.0000018044, -0.0000018033,0.0000018020,0.0000018011,0.0000018007,0.0000018005, -0.0000018006,0.0000018016,0.0000018029,0.0000018046,0.0000018068, -0.0000018098,0.0000018141,0.0000018200,0.0000018268,0.0000018339, -0.0000018408,0.0000018468,0.0000018512,0.0000018519,0.0000018504, -0.0000018480,0.0000018447,0.0000018412,0.0000018381,0.0000018359, -0.0000018344,0.0000018333,0.0000018320,0.0000018298,0.0000018265, -0.0000018227,0.0000018190,0.0000018162,0.0000018144,0.0000018141, -0.0000018143,0.0000018149,0.0000018156,0.0000018165,0.0000018176, -0.0000018188,0.0000018199,0.0000018200,0.0000018195,0.0000018182, -0.0000018161,0.0000018136,0.0000018110,0.0000018093,0.0000018083, -0.0000018081,0.0000018087,0.0000018102,0.0000018125,0.0000018146, -0.0000018156,0.0000018154,0.0000018143,0.0000018130,0.0000018127, -0.0000018137,0.0000018163,0.0000018204,0.0000018257,0.0000018312, -0.0000018361,0.0000018400,0.0000018428,0.0000018445,0.0000018460, -0.0000018482,0.0000018521,0.0000018581,0.0000018652,0.0000018711, -0.0000018737,0.0000018729,0.0000018710,0.0000018701,0.0000018710, -0.0000018735,0.0000018761,0.0000018771,0.0000018768,0.0000018762, -0.0000018756,0.0000018746,0.0000018731,0.0000018711,0.0000018688, -0.0000018667,0.0000018651,0.0000018640,0.0000018633,0.0000018628, -0.0000018623,0.0000018618,0.0000018616,0.0000018615,0.0000018614, -0.0000018611,0.0000018608,0.0000018602,0.0000018592,0.0000018577, -0.0000018559,0.0000018540,0.0000018516,0.0000018489,0.0000018458, -0.0000018424,0.0000018391,0.0000018366,0.0000018349,0.0000018337, -0.0000018330,0.0000018326,0.0000018325,0.0000018326,0.0000018328, -0.0000018331,0.0000018333,0.0000018336,0.0000018340,0.0000018346, -0.0000018354,0.0000018364,0.0000018375,0.0000018387,0.0000018397, -0.0000018405,0.0000018411,0.0000018413,0.0000018412,0.0000018408, -0.0000018402,0.0000018392,0.0000018381,0.0000018367,0.0000018352, -0.0000018333,0.0000018307,0.0000018275,0.0000018236,0.0000018192, -0.0000018149,0.0000018109,0.0000018075,0.0000018050,0.0000018036, -0.0000018030,0.0000018030,0.0000018036,0.0000018045,0.0000018058, -0.0000018074,0.0000018093,0.0000018115,0.0000018142,0.0000018174, -0.0000018209,0.0000018244,0.0000018278,0.0000018308,0.0000018331, -0.0000018347,0.0000018354,0.0000018350,0.0000018341,0.0000018330, -0.0000018322,0.0000018317,0.0000018317,0.0000018315,0.0000018309, -0.0000018302,0.0000018297,0.0000018292,0.0000018287,0.0000018281, -0.0000018274,0.0000018272,0.0000018269,0.0000018269,0.0000018274, -0.0000018285,0.0000018301,0.0000018319,0.0000018337,0.0000018350, -0.0000018358,0.0000018360,0.0000018356,0.0000018350,0.0000018342, -0.0000018327,0.0000018311,0.0000018299,0.0000018282,0.0000018257, -0.0000018223,0.0000018179,0.0000018128,0.0000018074,0.0000018025, -0.0000017976,0.0000017929,0.0000017891,0.0000017882,0.0000017874, -0.0000017872,0.0000017880,0.0000017894,0.0000017903,0.0000017906, -0.0000017900,0.0000017887,0.0000017872,0.0000017865,0.0000017868, -0.0000017884,0.0000017908,0.0000017938,0.0000017971,0.0000018003, -0.0000018031,0.0000018055,0.0000018078,0.0000018101,0.0000018121, -0.0000018143,0.0000018168,0.0000018194,0.0000018220,0.0000018247, -0.0000018277,0.0000018311,0.0000018350,0.0000018393,0.0000018436, -0.0000018479,0.0000018517,0.0000018549,0.0000018571,0.0000018582, -0.0000018583,0.0000018584,0.0000018587,0.0000018590,0.0000018589, -0.0000018587,0.0000018587,0.0000018587,0.0000018584,0.0000018579, -0.0000018577,0.0000018575,0.0000018568,0.0000018553,0.0000018530, -0.0000018514,0.0000018514,0.0000018525,0.0000018546,0.0000018581, -0.0000018650,0.0000018765,0.0000018918,0.0000019080,0.0000019237, -0.0000019396,0.0000019547,0.0000019678,0.0000019792,0.0000019847, -0.0000019851,0.0000019883,0.0000019931,0.0000019974,0.0000020031, -0.0000020077,0.0000020090,0.0000020071,0.0000020010,0.0000019964, -0.0000019981,0.0000020031,0.0000020050,0.0000020032,0.0000019994, -0.0000019986,0.0000020037,0.0000020136,0.0000020217,0.0000020244, -0.0000020234,0.0000020211,0.0000020179,0.0000020141,0.0000020103, -0.0000020076,0.0000020069,0.0000020073,0.0000020072,0.0000020053, -0.0000020025,0.0000020014,0.0000020028,0.0000020060,0.0000020086, -0.0000020105,0.0000020118,0.0000020131,0.0000020142,0.0000020150, -0.0000020153,0.0000020153,0.0000020151,0.0000020146,0.0000020137, -0.0000020126,0.0000020111,0.0000020093,0.0000020075,0.0000020055, -0.0000020033,0.0000020014,0.0000019993,0.0000019970,0.0000019943, -0.0000019915,0.0000019887,0.0000019865,0.0000019846,0.0000019832, -0.0000019826,0.0000019826,0.0000019835,0.0000019848,0.0000019858, -0.0000019864,0.0000019866,0.0000019867,0.0000019867,0.0000019867, -0.0000019868,0.0000019872,0.0000019878,0.0000019886,0.0000019895, -0.0000019902,0.0000019905,0.0000019905,0.0000019901,0.0000019892, -0.0000019880,0.0000019862,0.0000019842,0.0000019824,0.0000019808, -0.0000019791,0.0000019773,0.0000019757,0.0000019741,0.0000019725, -0.0000019711,0.0000019696,0.0000019681,0.0000019668,0.0000019656, -0.0000019646,0.0000019638,0.0000019631,0.0000019624,0.0000019617, -0.0000019611,0.0000019609,0.0000019613,0.0000019624,0.0000019639, -0.0000019653,0.0000019668,0.0000019682,0.0000019698,0.0000019710, -0.0000019718,0.0000019723,0.0000019725,0.0000019725,0.0000019728, -0.0000019733,0.0000019736,0.0000019741,0.0000019746,0.0000019754, -0.0000019759,0.0000019762,0.0000019762,0.0000019758,0.0000019752, -0.0000019744,0.0000019729,0.0000019708,0.0000019685,0.0000019660, -0.0000019630,0.0000019600,0.0000019571,0.0000019540,0.0000019512, -0.0000019487,0.0000019463,0.0000019440,0.0000019422,0.0000019409, -0.0000019399,0.0000019390,0.0000019382,0.0000019378,0.0000019373, -0.0000019365,0.0000019357,0.0000019354,0.0000019351,0.0000019348, -0.0000019341,0.0000019331,0.0000019316,0.0000019299,0.0000019280, -0.0000019263,0.0000019251,0.0000019242,0.0000019242,0.0000019247, -0.0000019255,0.0000019263,0.0000019271,0.0000019278,0.0000019282, -0.0000019283,0.0000019282,0.0000019281,0.0000019279,0.0000019276, -0.0000019278,0.0000019284,0.0000019293,0.0000019308,0.0000019326, -0.0000019350,0.0000019380,0.0000019413,0.0000019444,0.0000019475, -0.0000019505,0.0000019530,0.0000019555,0.0000019580,0.0000019606, -0.0000019631,0.0000019655,0.0000019677,0.0000019692,0.0000019707, -0.0000019712,0.0000019712,0.0000019712,0.0000019699,0.0000019690, -0.0000019690,0.0000019690,0.0000019688,0.0000019681,0.0000019676, -0.0000019670,0.0000019664,0.0000019661,0.0000019664,0.0000019669, -0.0000019675,0.0000019681,0.0000019690,0.0000019700,0.0000019710, -0.0000019716,0.0000019722,0.0000019729,0.0000019735,0.0000019740, -0.0000019744,0.0000019748,0.0000019753,0.0000019761,0.0000019772, -0.0000019788,0.0000019811,0.0000019840,0.0000019871,0.0000019901, -0.0000019928,0.0000019953,0.0000019976,0.0000019996,0.0000020012, -0.0000020025,0.0000020034,0.0000020037,0.0000020036,0.0000020028, -0.0000020020,0.0000020017,0.0000020017,0.0000020025,0.0000020038, -0.0000020054,0.0000020073,0.0000020092,0.0000020108,0.0000020122, -0.0000020130,0.0000020134,0.0000020138,0.0000020142,0.0000020142, -0.0000020138,0.0000020129,0.0000020122,0.0000020118,0.0000020118, -0.0000020128,0.0000020148,0.0000020178,0.0000020209,0.0000020234, -0.0000020249,0.0000020256,0.0000020258,0.0000020258,0.0000020254, -0.0000020249,0.0000020243,0.0000020233,0.0000020222,0.0000020212, -0.0000020206,0.0000020202,0.0000020190,0.0000020172,0.0000020151, -0.0000020129,0.0000020103,0.0000020078,0.0000020055,0.0000020033, -0.0000020006,0.0000019973,0.0000019938,0.0000019906,0.0000019891, -0.0000019872,0.0000019850,0.0000019842,0.0000019851,0.0000019875, -0.0000019918,0.0000019973,0.0000020030,0.0000020078,0.0000020115, -0.0000020129,0.0000020122,0.0000020124,0.0000020126,0.0000020136, -0.0000020162,0.0000020204,0.0000020257,0.0000020317,0.0000020383, -0.0000020446,0.0000020503,0.0000020543,0.0000020567,0.0000020580, -0.0000020586,0.0000020588,0.0000020588,0.0000020582,0.0000020567, -0.0000020550,0.0000020526,0.0000020497,0.0000020464,0.0000020435, -0.0000020407,0.0000020379,0.0000020354,0.0000020337,0.0000020331, -0.0000020331,0.0000020332,0.0000020336,0.0000020342,0.0000020348, -0.0000020356,0.0000020365,0.0000020371,0.0000020377,0.0000020381, -0.0000020379,0.0000020370,0.0000020350,0.0000020322,0.0000020295, -0.0000020273,0.0000020254,0.0000020241,0.0000020232,0.0000020226, -0.0000020223,0.0000020223,0.0000020217,0.0000020202,0.0000020179, -0.0000020150,0.0000020129,0.0000020117,0.0000020109,0.0000020107, -0.0000020108,0.0000020106,0.0000020099,0.0000020087,0.0000020067, -0.0000020048,0.0000020029,0.0000020015,0.0000020014,0.0000020030, -0.0000020058,0.0000020092,0.0000020127,0.0000020162,0.0000020196, -0.0000020225,0.0000020246,0.0000020256,0.0000020254,0.0000020240, -0.0000020214,0.0000020183,0.0000020151,0.0000020119,0.0000020091, -0.0000020069,0.0000020048,0.0000020028,0.0000020008,0.0000019987, -0.0000019966,0.0000019951,0.0000019938,0.0000019926,0.0000019914, -0.0000019900,0.0000019886,0.0000019873,0.0000019860,0.0000019849, -0.0000019840,0.0000019830,0.0000019821,0.0000019817,0.0000019812, -0.0000019811,0.0000019813,0.0000019814,0.0000019812,0.0000019804, -0.0000019789,0.0000019771,0.0000019755,0.0000019741,0.0000019729, -0.0000019716,0.0000019700,0.0000019684,0.0000019670,0.0000019654, -0.0000019629,0.0000019595,0.0000019553,0.0000019500,0.0000019437, -0.0000019367,0.0000019296,0.0000019232,0.0000019181,0.0000019141, -0.0000019111,0.0000019092,0.0000019082,0.0000019081,0.0000019081, -0.0000019079,0.0000019073,0.0000019065,0.0000019062,0.0000019064, -0.0000019066,0.0000019069,0.0000019071,0.0000019068,0.0000019055, -0.0000019029,0.0000018994,0.0000018951,0.0000018907,0.0000018872, -0.0000018851,0.0000018845,0.0000018846,0.0000018849,0.0000018855, -0.0000018860,0.0000018862,0.0000018863,0.0000018867,0.0000018871, -0.0000018876,0.0000018879,0.0000018878,0.0000018872,0.0000018858, -0.0000018840,0.0000018823,0.0000018808,0.0000018799,0.0000018801, -0.0000018807,0.0000018819,0.0000018844,0.0000018879,0.0000018921, -0.0000018966,0.0000019015,0.0000019060,0.0000019102,0.0000019146, -0.0000019191,0.0000019233,0.0000019263,0.0000019284,0.0000019300, -0.0000019315,0.0000019333,0.0000019351,0.0000019366,0.0000019383, -0.0000019391,0.0000019389,0.0000019392,0.0000019387,0.0000019389, -0.0000019393,0.0000019400,0.0000019405,0.0000019408,0.0000019411, -0.0000019414,0.0000019419,0.0000019422,0.0000019420,0.0000019415, -0.0000019413,0.0000019416,0.0000019429,0.0000019455,0.0000019495, -0.0000019541,0.0000019583,0.0000019598,0.0000019582,0.0000019537, -0.0000019479,0.0000019422,0.0000019378,0.0000019345,0.0000019322, -0.0000019301,0.0000019278,0.0000019276,0.0000019291,0.0000019329, -0.0000019374,0.0000019413,0.0000019436,0.0000019440,0.0000019436, -0.0000019433,0.0000019431,0.0000019427,0.0000019430,0.0000019433, -0.0000019434,0.0000019433,0.0000019432,0.0000019427,0.0000019430, -0.0000019445,0.0000019462,0.0000019471,0.0000019475,0.0000019483, -0.0000019491,0.0000019493,0.0000019498,0.0000019516,0.0000019541, -0.0000019564,0.0000019582,0.0000019595,0.0000019604,0.0000019615, -0.0000019627,0.0000019645,0.0000019662,0.0000019673,0.0000019675, -0.0000019662,0.0000019637,0.0000019601,0.0000019555,0.0000019504, -0.0000019456,0.0000019428,0.0000019413,0.0000019397,0.0000019381, -0.0000019373,0.0000019374,0.0000019383,0.0000019395,0.0000019413, -0.0000019441,0.0000019473,0.0000019504,0.0000019531,0.0000019540, -0.0000019526,0.0000019486,0.0000019434,0.0000019388,0.0000019357, -0.0000019347,0.0000019349,0.0000019351,0.0000019347,0.0000019341, -0.0000019330,0.0000019313,0.0000019279,0.0000019236,0.0000019205, -0.0000019186,0.0000019170,0.0000019148,0.0000019123,0.0000019099, -0.0000019077,0.0000019062,0.0000019042,0.0000019005,0.0000018956, -0.0000018911,0.0000018878,0.0000018852,0.0000018819,0.0000018767, -0.0000018706,0.0000018638,0.0000018585,0.0000018555,0.0000018534, -0.0000018509,0.0000018484,0.0000018461,0.0000018439,0.0000018423, -0.0000018414,0.0000018421,0.0000018457,0.0000018512,0.0000018550, -0.0000018556,0.0000018538,0.0000018516,0.0000018505,0.0000018522, -0.0000018558,0.0000018581,0.0000018591,0.0000018593,0.0000018591, -0.0000018585,0.0000018563,0.0000018532,0.0000018502,0.0000018478, -0.0000018468,0.0000018474,0.0000018488,0.0000018506,0.0000018520, -0.0000018525,0.0000018526,0.0000018531,0.0000018540,0.0000018548, -0.0000018546,0.0000018531,0.0000018506,0.0000018478,0.0000018448, -0.0000018420,0.0000018394,0.0000018372,0.0000018351,0.0000018325, -0.0000018297,0.0000018272,0.0000018253,0.0000018240,0.0000018235, -0.0000018236,0.0000018242,0.0000018250,0.0000018259,0.0000018268, -0.0000018282,0.0000018295,0.0000018305,0.0000018313,0.0000018320, -0.0000018324,0.0000018328,0.0000018334,0.0000018344,0.0000018359, -0.0000018377,0.0000018399,0.0000018425,0.0000018456,0.0000018491, -0.0000018528,0.0000018568,0.0000018610,0.0000018651,0.0000018687, -0.0000018714,0.0000018736,0.0000018766,0.0000018816,0.0000018899, -0.0000019023,0.0000019184,0.0000019361,0.0000019532,0.0000019673, -0.0000019764,0.0000019806,0.0000019804,0.0000019788,0.0000019747, -0.0000019688,0.0000019621,0.0000019546,0.0000019464,0.0000019382, -0.0000019304,0.0000019238,0.0000019188,0.0000019154,0.0000019149, -0.0000019159,0.0000019180,0.0000019200,0.0000019214,0.0000019222, -0.0000019226,0.0000019222,0.0000019207,0.0000019184,0.0000019159, -0.0000019142,0.0000019138,0.0000019141,0.0000019143,0.0000019135, -0.0000019110,0.0000019071,0.0000019027,0.0000018982,0.0000018939, -0.0000018896,0.0000018853,0.0000018818,0.0000018808,0.0000018815, -0.0000018845,0.0000018885,0.0000018915,0.0000018918,0.0000018899, -0.0000018871,0.0000018852,0.0000018843,0.0000018830,0.0000018808, -0.0000018780,0.0000018748,0.0000018675,0.0000018558,0.0000018433, -0.0000018350,0.0000018334,0.0000018344,0.0000018360,0.0000018379, -0.0000018411,0.0000018455,0.0000018491,0.0000018515,0.0000018511, -0.0000018486,0.0000018451,0.0000018416,0.0000018389,0.0000018368, -0.0000018351,0.0000018337,0.0000018323,0.0000018310,0.0000018297, -0.0000018283,0.0000018273,0.0000018271,0.0000018273,0.0000018274, -0.0000018252,0.0000018194,0.0000018126,0.0000018086,0.0000018091, -0.0000018128,0.0000018160,0.0000018182,0.0000018197,0.0000018207, -0.0000018215,0.0000018210,0.0000018184,0.0000018123,0.0000018054, -0.0000018010,0.0000017991,0.0000017970,0.0000017952,0.0000017945, -0.0000017947,0.0000017952,0.0000017954,0.0000017957,0.0000017962, -0.0000017976,0.0000017991,0.0000018002,0.0000018012,0.0000018017, -0.0000018018,0.0000018014,0.0000018005,0.0000017990,0.0000017966, -0.0000017938,0.0000017915,0.0000017897,0.0000017883,0.0000017874, -0.0000017870,0.0000017873,0.0000017873,0.0000017874,0.0000017878, -0.0000017890,0.0000017903,0.0000017916,0.0000017927,0.0000017933, -0.0000017933,0.0000017928,0.0000017913,0.0000017892,0.0000017868, -0.0000017843,0.0000017821,0.0000017807,0.0000017807,0.0000017835, -0.0000017918,0.0000018037,0.0000018147,0.0000018221,0.0000018267, -0.0000018320,0.0000018408,0.0000018526,0.0000018617,0.0000018652, -0.0000018647,0.0000018639,0.0000018642,0.0000018648,0.0000018647, -0.0000018642,0.0000018642,0.0000018649,0.0000018650,0.0000018641, -0.0000018629,0.0000018619,0.0000018613,0.0000018604,0.0000018585, -0.0000018554,0.0000018518,0.0000018495,0.0000018490,0.0000018512, -0.0000018567,0.0000018636,0.0000018698,0.0000018748,0.0000018778, -0.0000018785,0.0000018768,0.0000018737,0.0000018702,0.0000018673, -0.0000018648,0.0000018624,0.0000018599,0.0000018580,0.0000018580, -0.0000018627,0.0000018695,0.0000018710,0.0000018647,0.0000018620, -0.0000018703,0.0000018710,0.0000018668,0.0000018681,0.0000018723, -0.0000018816,0.0000018986,0.0000019005,0.0000018905,0.0000018846, -0.0000018846,0.0000018874,0.0000018909,0.0000018943,0.0000018957, -0.0000018956,0.0000018907,0.0000018774,0.0000018645,0.0000018585, -0.0000018546,0.0000018500,0.0000018464,0.0000018444,0.0000018436, -0.0000018434,0.0000018432,0.0000018442,0.0000018455,0.0000018491, -0.0000018583,0.0000018685,0.0000018770,0.0000018836,0.0000018891, -0.0000018934,0.0000018972,0.0000019003,0.0000019027,0.0000019043, -0.0000019052,0.0000019053,0.0000019048,0.0000019035,0.0000019018, -0.0000018993,0.0000018960,0.0000018922,0.0000018882,0.0000018844, -0.0000018808,0.0000018773,0.0000018743,0.0000018725,0.0000018709, -0.0000018689,0.0000018679,0.0000018679,0.0000018691,0.0000018717, -0.0000018738,0.0000018761,0.0000018776,0.0000018788,0.0000018785, -0.0000018762,0.0000018724,0.0000018678,0.0000018637,0.0000018612, -0.0000018606,0.0000018618,0.0000018635,0.0000018631,0.0000018593, -0.0000018525,0.0000018439,0.0000018374,0.0000018329,0.0000018316, -0.0000018311,0.0000018296,0.0000018275,0.0000018246,0.0000018215, -0.0000018179,0.0000018134,0.0000018069,0.0000017994,0.0000017928, -0.0000017892,0.0000017900,0.0000017927,0.0000017975,0.0000018022, -0.0000018064,0.0000018098,0.0000018120,0.0000018126,0.0000018112, -0.0000018084,0.0000018046,0.0000018004,0.0000017968,0.0000017932, -0.0000017914,0.0000017890,0.0000017882,0.0000017873,0.0000017868, -0.0000017865,0.0000017861,0.0000017856,0.0000017850,0.0000017841, -0.0000017828,0.0000017812,0.0000017797,0.0000017783,0.0000017772, -0.0000017764,0.0000017757,0.0000017750,0.0000017742,0.0000017734, -0.0000017723,0.0000017715,0.0000017710,0.0000017706,0.0000017705, -0.0000017709,0.0000017713,0.0000017716,0.0000017718,0.0000017722, -0.0000017727,0.0000017738,0.0000017756,0.0000017773,0.0000017794, -0.0000017816,0.0000017836,0.0000017850,0.0000017858,0.0000017860, -0.0000017861,0.0000017858,0.0000017856,0.0000017858,0.0000017861, -0.0000017870,0.0000017882,0.0000017899,0.0000017919,0.0000017941, -0.0000017960,0.0000017977,0.0000017993,0.0000018012,0.0000018030, -0.0000018050,0.0000018071,0.0000018087,0.0000018102,0.0000018115, -0.0000018121,0.0000018140,0.0000018147,0.0000018149,0.0000018146, -0.0000018142,0.0000018137,0.0000018129,0.0000018123,0.0000018122, -0.0000018128,0.0000018140,0.0000018152,0.0000018165,0.0000018177, -0.0000018180,0.0000018175,0.0000018165,0.0000018150,0.0000018132, -0.0000018114,0.0000018099,0.0000018087,0.0000018077,0.0000018065, -0.0000018052,0.0000018039,0.0000018026,0.0000018016,0.0000018012, -0.0000018015,0.0000018016,0.0000018016,0.0000018018,0.0000018027, -0.0000018052,0.0000018092,0.0000018146,0.0000018215,0.0000018292, -0.0000018364,0.0000018427,0.0000018476,0.0000018493,0.0000018490, -0.0000018464,0.0000018434,0.0000018399,0.0000018372,0.0000018354, -0.0000018343,0.0000018333,0.0000018321,0.0000018304,0.0000018279, -0.0000018245,0.0000018208,0.0000018178,0.0000018159,0.0000018150, -0.0000018150,0.0000018152,0.0000018158,0.0000018172,0.0000018192, -0.0000018212,0.0000018231,0.0000018245,0.0000018246,0.0000018234, -0.0000018208,0.0000018174,0.0000018140,0.0000018106,0.0000018083, -0.0000018074,0.0000018076,0.0000018094,0.0000018117,0.0000018129, -0.0000018127,0.0000018110,0.0000018087,0.0000018069,0.0000018069, -0.0000018084,0.0000018121,0.0000018177,0.0000018241,0.0000018301, -0.0000018350,0.0000018385,0.0000018404,0.0000018413,0.0000018419, -0.0000018441,0.0000018490,0.0000018567,0.0000018649,0.0000018696, -0.0000018698,0.0000018677,0.0000018664,0.0000018672,0.0000018702, -0.0000018737,0.0000018756,0.0000018757,0.0000018750,0.0000018739, -0.0000018723,0.0000018701,0.0000018679,0.0000018658,0.0000018640, -0.0000018626,0.0000018619,0.0000018614,0.0000018608,0.0000018601, -0.0000018595,0.0000018590,0.0000018587,0.0000018584,0.0000018580, -0.0000018576,0.0000018569,0.0000018559,0.0000018546,0.0000018530, -0.0000018510,0.0000018487,0.0000018459,0.0000018427,0.0000018392, -0.0000018362,0.0000018337,0.0000018318,0.0000018307,0.0000018301, -0.0000018301,0.0000018304,0.0000018310,0.0000018317,0.0000018323, -0.0000018328,0.0000018334,0.0000018340,0.0000018347,0.0000018356, -0.0000018365,0.0000018375,0.0000018384,0.0000018391,0.0000018394, -0.0000018394,0.0000018391,0.0000018386,0.0000018376,0.0000018360, -0.0000018340,0.0000018317,0.0000018285,0.0000018242,0.0000018188, -0.0000018128,0.0000018067,0.0000018007,0.0000017951,0.0000017900, -0.0000017856,0.0000017822,0.0000017796,0.0000017778,0.0000017766, -0.0000017763,0.0000017768,0.0000017780,0.0000017800,0.0000017825, -0.0000017854,0.0000017890,0.0000017931,0.0000017975,0.0000018023, -0.0000018071,0.0000018119,0.0000018164,0.0000018204,0.0000018238, -0.0000018264,0.0000018281,0.0000018291,0.0000018297,0.0000018304, -0.0000018310,0.0000018312,0.0000018307,0.0000018306,0.0000018308, -0.0000018312,0.0000018311,0.0000018309,0.0000018301,0.0000018289, -0.0000018275,0.0000018264,0.0000018255,0.0000018251,0.0000018255, -0.0000018266,0.0000018282,0.0000018297,0.0000018309,0.0000018316, -0.0000018317,0.0000018312,0.0000018306,0.0000018297,0.0000018289, -0.0000018285,0.0000018276,0.0000018270,0.0000018264,0.0000018252, -0.0000018234,0.0000018214,0.0000018191,0.0000018160,0.0000018120, -0.0000018075,0.0000018032,0.0000017984,0.0000017932,0.0000017888, -0.0000017871,0.0000017850,0.0000017832,0.0000017831,0.0000017834, -0.0000017837,0.0000017840,0.0000017842,0.0000017842,0.0000017847, -0.0000017864,0.0000017892,0.0000017926,0.0000017963,0.0000017997, -0.0000018023,0.0000018041,0.0000018059,0.0000018080,0.0000018102, -0.0000018123,0.0000018138,0.0000018147,0.0000018151,0.0000018155, -0.0000018160,0.0000018172,0.0000018194,0.0000018231,0.0000018283, -0.0000018347,0.0000018409,0.0000018462,0.0000018504,0.0000018535, -0.0000018555,0.0000018561,0.0000018558,0.0000018551,0.0000018544, -0.0000018538,0.0000018530,0.0000018524,0.0000018521,0.0000018517, -0.0000018507,0.0000018488,0.0000018471,0.0000018468,0.0000018482, -0.0000018505,0.0000018531,0.0000018562,0.0000018613,0.0000018713, -0.0000018865,0.0000019037,0.0000019197,0.0000019356,0.0000019505, -0.0000019636,0.0000019749,0.0000019799,0.0000019803,0.0000019844, -0.0000019895,0.0000019945,0.0000020012,0.0000020061,0.0000020075, -0.0000020046,0.0000019981,0.0000019952,0.0000019982,0.0000020025, -0.0000020037,0.0000020015,0.0000019982,0.0000019973,0.0000020009, -0.0000020088,0.0000020168,0.0000020210,0.0000020213,0.0000020198, -0.0000020176,0.0000020145,0.0000020107,0.0000020075,0.0000020065, -0.0000020072,0.0000020081,0.0000020077,0.0000020053,0.0000020027, -0.0000020018,0.0000020028,0.0000020059,0.0000020089,0.0000020108, -0.0000020114,0.0000020116,0.0000020119,0.0000020119,0.0000020117, -0.0000020115,0.0000020109,0.0000020099,0.0000020087,0.0000020072, -0.0000020053,0.0000020034,0.0000020015,0.0000019997,0.0000019979, -0.0000019960,0.0000019940,0.0000019917,0.0000019892,0.0000019867, -0.0000019843,0.0000019819,0.0000019795,0.0000019773,0.0000019756, -0.0000019748,0.0000019748,0.0000019756,0.0000019767,0.0000019779, -0.0000019789,0.0000019794,0.0000019796,0.0000019794,0.0000019791, -0.0000019790,0.0000019791,0.0000019791,0.0000019787,0.0000019782, -0.0000019776,0.0000019768,0.0000019756,0.0000019740,0.0000019722, -0.0000019708,0.0000019700,0.0000019690,0.0000019679,0.0000019667, -0.0000019655,0.0000019646,0.0000019639,0.0000019632,0.0000019626, -0.0000019622,0.0000019618,0.0000019615,0.0000019611,0.0000019605, -0.0000019601,0.0000019597,0.0000019593,0.0000019592,0.0000019595, -0.0000019605,0.0000019617,0.0000019631,0.0000019648,0.0000019667, -0.0000019686,0.0000019700,0.0000019712,0.0000019720,0.0000019726, -0.0000019729,0.0000019732,0.0000019732,0.0000019732,0.0000019730, -0.0000019728,0.0000019730,0.0000019729,0.0000019726,0.0000019720, -0.0000019711,0.0000019701,0.0000019687,0.0000019669,0.0000019647, -0.0000019626,0.0000019606,0.0000019581,0.0000019556,0.0000019530, -0.0000019504,0.0000019481,0.0000019459,0.0000019436,0.0000019413, -0.0000019395,0.0000019379,0.0000019369,0.0000019363,0.0000019360, -0.0000019356,0.0000019352,0.0000019349,0.0000019351,0.0000019357, -0.0000019359,0.0000019357,0.0000019350,0.0000019339,0.0000019326, -0.0000019308,0.0000019287,0.0000019266,0.0000019249,0.0000019237, -0.0000019234,0.0000019234,0.0000019236,0.0000019238,0.0000019239, -0.0000019240,0.0000019239,0.0000019235,0.0000019230,0.0000019224, -0.0000019218,0.0000019211,0.0000019206,0.0000019207,0.0000019211, -0.0000019218,0.0000019229,0.0000019246,0.0000019269,0.0000019295, -0.0000019321,0.0000019344,0.0000019369,0.0000019390,0.0000019410, -0.0000019431,0.0000019455,0.0000019485,0.0000019514,0.0000019542, -0.0000019569,0.0000019594,0.0000019616,0.0000019632,0.0000019646, -0.0000019653,0.0000019660,0.0000019665,0.0000019670,0.0000019672, -0.0000019671,0.0000019666,0.0000019660,0.0000019648,0.0000019638, -0.0000019629,0.0000019625,0.0000019625,0.0000019629,0.0000019638, -0.0000019653,0.0000019671,0.0000019689,0.0000019705,0.0000019717, -0.0000019725,0.0000019727,0.0000019727,0.0000019725,0.0000019723, -0.0000019720,0.0000019720,0.0000019726,0.0000019738,0.0000019757, -0.0000019781,0.0000019810,0.0000019840,0.0000019871,0.0000019902, -0.0000019931,0.0000019958,0.0000019983,0.0000020005,0.0000020020, -0.0000020028,0.0000020029,0.0000020027,0.0000020027,0.0000020028, -0.0000020031,0.0000020042,0.0000020061,0.0000020081,0.0000020100, -0.0000020116,0.0000020128,0.0000020135,0.0000020143,0.0000020150, -0.0000020153,0.0000020152,0.0000020145,0.0000020136,0.0000020125, -0.0000020115,0.0000020108,0.0000020107,0.0000020117,0.0000020136, -0.0000020166,0.0000020201,0.0000020230,0.0000020250,0.0000020259, -0.0000020262,0.0000020259,0.0000020253,0.0000020249,0.0000020241, -0.0000020229,0.0000020213,0.0000020202,0.0000020197,0.0000020189, -0.0000020184,0.0000020180,0.0000020172,0.0000020159,0.0000020141, -0.0000020124,0.0000020110,0.0000020092,0.0000020065,0.0000020032, -0.0000019996,0.0000019960,0.0000019925,0.0000019886,0.0000019842, -0.0000019817,0.0000019788,0.0000019775,0.0000019794,0.0000019833, -0.0000019885,0.0000019944,0.0000020002,0.0000020053,0.0000020094, -0.0000020118,0.0000020126,0.0000020136,0.0000020149,0.0000020166, -0.0000020200,0.0000020245,0.0000020306,0.0000020381,0.0000020460, -0.0000020525,0.0000020564,0.0000020576,0.0000020572,0.0000020571, -0.0000020560,0.0000020545,0.0000020526,0.0000020506,0.0000020483, -0.0000020462,0.0000020444,0.0000020430,0.0000020417,0.0000020400, -0.0000020385,0.0000020374,0.0000020364,0.0000020355,0.0000020353, -0.0000020358,0.0000020367,0.0000020378,0.0000020386,0.0000020391, -0.0000020396,0.0000020398,0.0000020401,0.0000020401,0.0000020394, -0.0000020382,0.0000020368,0.0000020349,0.0000020331,0.0000020316, -0.0000020302,0.0000020292,0.0000020287,0.0000020277,0.0000020260, -0.0000020242,0.0000020217,0.0000020196,0.0000020181,0.0000020172, -0.0000020168,0.0000020169,0.0000020171,0.0000020168,0.0000020159, -0.0000020143,0.0000020117,0.0000020087,0.0000020060,0.0000020041, -0.0000020037,0.0000020051,0.0000020075,0.0000020106,0.0000020139, -0.0000020175,0.0000020215,0.0000020248,0.0000020271,0.0000020287, -0.0000020288,0.0000020273,0.0000020245,0.0000020214,0.0000020181, -0.0000020151,0.0000020125,0.0000020106,0.0000020090,0.0000020074, -0.0000020058,0.0000020042,0.0000020032,0.0000020025,0.0000020021, -0.0000020017,0.0000020010,0.0000020003,0.0000019998,0.0000019991, -0.0000019984,0.0000019976,0.0000019967,0.0000019960,0.0000019953, -0.0000019945,0.0000019941,0.0000019941,0.0000019942,0.0000019944, -0.0000019942,0.0000019931,0.0000019912,0.0000019895,0.0000019882, -0.0000019872,0.0000019863,0.0000019851,0.0000019835,0.0000019818, -0.0000019803,0.0000019786,0.0000019767,0.0000019742,0.0000019704, -0.0000019651,0.0000019586,0.0000019510,0.0000019430,0.0000019355, -0.0000019286,0.0000019227,0.0000019184,0.0000019156,0.0000019140, -0.0000019133,0.0000019126,0.0000019117,0.0000019103,0.0000019084, -0.0000019071,0.0000019069,0.0000019067,0.0000019076,0.0000019089, -0.0000019102,0.0000019104,0.0000019094,0.0000019069,0.0000019028, -0.0000018983,0.0000018943,0.0000018911,0.0000018887,0.0000018872, -0.0000018864,0.0000018861,0.0000018858,0.0000018860,0.0000018863, -0.0000018866,0.0000018869,0.0000018872,0.0000018874,0.0000018870, -0.0000018858,0.0000018839,0.0000018816,0.0000018793,0.0000018766, -0.0000018754,0.0000018753,0.0000018757,0.0000018770,0.0000018787, -0.0000018808,0.0000018834,0.0000018868,0.0000018904,0.0000018941, -0.0000018982,0.0000019026,0.0000019073,0.0000019115,0.0000019151, -0.0000019181,0.0000019207,0.0000019228,0.0000019248,0.0000019268, -0.0000019296,0.0000019329,0.0000019359,0.0000019383,0.0000019386, -0.0000019383,0.0000019372,0.0000019363,0.0000019362,0.0000019364, -0.0000019368,0.0000019372,0.0000019376,0.0000019381,0.0000019380, -0.0000019374,0.0000019366,0.0000019361,0.0000019361,0.0000019369, -0.0000019389,0.0000019423,0.0000019469,0.0000019516,0.0000019549, -0.0000019550,0.0000019537,0.0000019496,0.0000019442,0.0000019385, -0.0000019336,0.0000019295,0.0000019267,0.0000019248,0.0000019230, -0.0000019238,0.0000019264,0.0000019303,0.0000019348,0.0000019387, -0.0000019417,0.0000019443,0.0000019455,0.0000019461,0.0000019465, -0.0000019457,0.0000019434,0.0000019412,0.0000019384,0.0000019361, -0.0000019359,0.0000019380,0.0000019404,0.0000019422,0.0000019434, -0.0000019435,0.0000019425,0.0000019413,0.0000019414,0.0000019431, -0.0000019454,0.0000019478,0.0000019501,0.0000019522,0.0000019541, -0.0000019558,0.0000019576,0.0000019593,0.0000019607,0.0000019617, -0.0000019620,0.0000019614,0.0000019592,0.0000019553,0.0000019501, -0.0000019447,0.0000019404,0.0000019381,0.0000019370,0.0000019363, -0.0000019355,0.0000019353,0.0000019364,0.0000019382,0.0000019401, -0.0000019424,0.0000019451,0.0000019478,0.0000019498,0.0000019504, -0.0000019489,0.0000019456,0.0000019410,0.0000019365,0.0000019333, -0.0000019313,0.0000019308,0.0000019314,0.0000019313,0.0000019305, -0.0000019289,0.0000019271,0.0000019251,0.0000019216,0.0000019181, -0.0000019160,0.0000019145,0.0000019133,0.0000019112,0.0000019080, -0.0000019049,0.0000019026,0.0000019012,0.0000018997,0.0000018971, -0.0000018931,0.0000018888,0.0000018854,0.0000018839,0.0000018821, -0.0000018785,0.0000018724,0.0000018650,0.0000018584,0.0000018544, -0.0000018520,0.0000018497,0.0000018473,0.0000018452,0.0000018434, -0.0000018418,0.0000018413,0.0000018419,0.0000018442,0.0000018478, -0.0000018512,0.0000018527,0.0000018520,0.0000018501,0.0000018479, -0.0000018484,0.0000018510,0.0000018542,0.0000018559,0.0000018565, -0.0000018568,0.0000018565,0.0000018547,0.0000018516,0.0000018478, -0.0000018443,0.0000018418,0.0000018412,0.0000018423,0.0000018445, -0.0000018458,0.0000018467,0.0000018476,0.0000018487,0.0000018502, -0.0000018513,0.0000018512,0.0000018498,0.0000018475,0.0000018446, -0.0000018418,0.0000018393,0.0000018370,0.0000018349,0.0000018324, -0.0000018296,0.0000018267,0.0000018241,0.0000018217,0.0000018197, -0.0000018186,0.0000018181,0.0000018181,0.0000018185,0.0000018190, -0.0000018196,0.0000018208,0.0000018225,0.0000018240,0.0000018251, -0.0000018260,0.0000018267,0.0000018273,0.0000018278,0.0000018284, -0.0000018295,0.0000018308,0.0000018325,0.0000018346,0.0000018373, -0.0000018401,0.0000018432,0.0000018468,0.0000018509,0.0000018555, -0.0000018603,0.0000018647,0.0000018681,0.0000018711,0.0000018742, -0.0000018788,0.0000018861,0.0000018972,0.0000019120,0.0000019294, -0.0000019469,0.0000019619,0.0000019723,0.0000019777,0.0000019780, -0.0000019760,0.0000019716,0.0000019657,0.0000019597,0.0000019531, -0.0000019470,0.0000019411,0.0000019349,0.0000019287,0.0000019230, -0.0000019189,0.0000019171,0.0000019180,0.0000019190,0.0000019207, -0.0000019220,0.0000019227,0.0000019228,0.0000019223,0.0000019208, -0.0000019184,0.0000019161,0.0000019148,0.0000019147,0.0000019150, -0.0000019145,0.0000019126,0.0000019090,0.0000019044,0.0000018996, -0.0000018954,0.0000018916,0.0000018879,0.0000018843,0.0000018816, -0.0000018806,0.0000018818,0.0000018846,0.0000018869,0.0000018874, -0.0000018863,0.0000018843,0.0000018827,0.0000018814,0.0000018798, -0.0000018777,0.0000018755,0.0000018736,0.0000018683,0.0000018582, -0.0000018461,0.0000018367,0.0000018334,0.0000018342,0.0000018371, -0.0000018399,0.0000018428,0.0000018466,0.0000018507,0.0000018537, -0.0000018543,0.0000018531,0.0000018502,0.0000018468,0.0000018438, -0.0000018415,0.0000018395,0.0000018377,0.0000018360,0.0000018343, -0.0000018326,0.0000018310,0.0000018298,0.0000018289,0.0000018278, -0.0000018248,0.0000018196,0.0000018139,0.0000018102,0.0000018099, -0.0000018127,0.0000018161,0.0000018186,0.0000018205,0.0000018222, -0.0000018241,0.0000018253,0.0000018240,0.0000018183,0.0000018100, -0.0000018039,0.0000018009,0.0000017985,0.0000017966,0.0000017961, -0.0000017969,0.0000017981,0.0000017994,0.0000018007,0.0000018021, -0.0000018044,0.0000018070,0.0000018092,0.0000018109,0.0000018122, -0.0000018129,0.0000018127,0.0000018118,0.0000018104,0.0000018080, -0.0000018051,0.0000018023,0.0000017995,0.0000017969,0.0000017945, -0.0000017924,0.0000017908,0.0000017894,0.0000017882,0.0000017875, -0.0000017877,0.0000017876,0.0000017875,0.0000017874,0.0000017872, -0.0000017865,0.0000017856,0.0000017841,0.0000017823,0.0000017807, -0.0000017796,0.0000017794,0.0000017798,0.0000017821,0.0000017881, -0.0000017980,0.0000018093,0.0000018185,0.0000018246,0.0000018291, -0.0000018349,0.0000018441,0.0000018555,0.0000018637,0.0000018664, -0.0000018658,0.0000018649,0.0000018652,0.0000018653,0.0000018642, -0.0000018629,0.0000018625,0.0000018627,0.0000018622,0.0000018611, -0.0000018603,0.0000018596,0.0000018587,0.0000018567,0.0000018535, -0.0000018493,0.0000018462,0.0000018454,0.0000018464,0.0000018507, -0.0000018573,0.0000018636,0.0000018684,0.0000018711,0.0000018712, -0.0000018700,0.0000018684,0.0000018670,0.0000018657,0.0000018640, -0.0000018613,0.0000018579,0.0000018552,0.0000018548,0.0000018595, -0.0000018673,0.0000018715,0.0000018673,0.0000018610,0.0000018681, -0.0000018723,0.0000018665,0.0000018658,0.0000018698,0.0000018748, -0.0000018898,0.0000018993,0.0000018926,0.0000018855,0.0000018844, -0.0000018861,0.0000018891,0.0000018916,0.0000018923,0.0000018924, -0.0000018877,0.0000018747,0.0000018621,0.0000018558,0.0000018518, -0.0000018478,0.0000018448,0.0000018431,0.0000018424,0.0000018424, -0.0000018445,0.0000018535,0.0000018643,0.0000018739,0.0000018825, -0.0000018901,0.0000018963,0.0000019007,0.0000019033,0.0000019046, -0.0000019054,0.0000019060,0.0000019067,0.0000019071,0.0000019071, -0.0000019067,0.0000019055,0.0000019046,0.0000019044,0.0000019030, -0.0000019027,0.0000019034,0.0000019042,0.0000019037,0.0000019014, -0.0000018977,0.0000018935,0.0000018892,0.0000018858,0.0000018833, -0.0000018818,0.0000018811,0.0000018811,0.0000018813,0.0000018814, -0.0000018815,0.0000018815,0.0000018815,0.0000018810,0.0000018796, -0.0000018773,0.0000018739,0.0000018703,0.0000018679,0.0000018677, -0.0000018700,0.0000018746,0.0000018792,0.0000018811,0.0000018788, -0.0000018718,0.0000018613,0.0000018494,0.0000018392,0.0000018332, -0.0000018309,0.0000018303,0.0000018297,0.0000018284,0.0000018261, -0.0000018232,0.0000018200,0.0000018155,0.0000018088,0.0000018007, -0.0000017940,0.0000017893,0.0000017899,0.0000017927,0.0000017976, -0.0000018027,0.0000018070,0.0000018104,0.0000018127,0.0000018132, -0.0000018118,0.0000018089,0.0000018048,0.0000018002,0.0000017958, -0.0000017921,0.0000017897,0.0000017878,0.0000017867,0.0000017861, -0.0000017855,0.0000017852,0.0000017847,0.0000017843,0.0000017836, -0.0000017829,0.0000017818,0.0000017805,0.0000017792,0.0000017780, -0.0000017769,0.0000017760,0.0000017751,0.0000017741,0.0000017729, -0.0000017720,0.0000017713,0.0000017707,0.0000017700,0.0000017701, -0.0000017704,0.0000017708,0.0000017713,0.0000017723,0.0000017738, -0.0000017759,0.0000017785,0.0000017812,0.0000017837,0.0000017859, -0.0000017878,0.0000017893,0.0000017904,0.0000017911,0.0000017912, -0.0000017906,0.0000017897,0.0000017888,0.0000017882,0.0000017879, -0.0000017879,0.0000017888,0.0000017897,0.0000017909,0.0000017925, -0.0000017942,0.0000017960,0.0000017981,0.0000018002,0.0000018025, -0.0000018049,0.0000018074,0.0000018096,0.0000018116,0.0000018128, -0.0000018111,0.0000018129,0.0000018143,0.0000018152,0.0000018152, -0.0000018155,0.0000018157,0.0000018155,0.0000018150,0.0000018146, -0.0000018149,0.0000018157,0.0000018170,0.0000018185,0.0000018196, -0.0000018203,0.0000018206,0.0000018202,0.0000018194,0.0000018179, -0.0000018163,0.0000018147,0.0000018135,0.0000018123,0.0000018109, -0.0000018094,0.0000018078,0.0000018060,0.0000018041,0.0000018026, -0.0000018017,0.0000018012,0.0000018006,0.0000017995,0.0000017983, -0.0000017984,0.0000018002,0.0000018040,0.0000018095,0.0000018165, -0.0000018241,0.0000018314,0.0000018381,0.0000018435,0.0000018466, -0.0000018460,0.0000018444,0.0000018417,0.0000018390,0.0000018371, -0.0000018356,0.0000018343,0.0000018332,0.0000018324,0.0000018310, -0.0000018287,0.0000018256,0.0000018223,0.0000018194,0.0000018175, -0.0000018166,0.0000018165,0.0000018172,0.0000018184,0.0000018201, -0.0000018223,0.0000018250,0.0000018275,0.0000018293,0.0000018296, -0.0000018286,0.0000018258,0.0000018217,0.0000018170,0.0000018124, -0.0000018087,0.0000018076,0.0000018078,0.0000018090,0.0000018101, -0.0000018102,0.0000018087,0.0000018061,0.0000018036,0.0000018016, -0.0000018016,0.0000018035,0.0000018083,0.0000018149,0.0000018216, -0.0000018275,0.0000018322,0.0000018354,0.0000018368,0.0000018370, -0.0000018378,0.0000018415,0.0000018492,0.0000018583,0.0000018649, -0.0000018663,0.0000018652,0.0000018637,0.0000018644,0.0000018674, -0.0000018710,0.0000018731,0.0000018734,0.0000018726,0.0000018709, -0.0000018686,0.0000018661,0.0000018640,0.0000018622,0.0000018609, -0.0000018601,0.0000018596,0.0000018590,0.0000018583,0.0000018575, -0.0000018567,0.0000018558,0.0000018551,0.0000018544,0.0000018540, -0.0000018535,0.0000018528,0.0000018521,0.0000018512,0.0000018500, -0.0000018481,0.0000018457,0.0000018430,0.0000018397,0.0000018363, -0.0000018332,0.0000018308,0.0000018291,0.0000018281,0.0000018277, -0.0000018278,0.0000018285,0.0000018295,0.0000018306,0.0000018316, -0.0000018325,0.0000018335,0.0000018343,0.0000018352,0.0000018361, -0.0000018371,0.0000018380,0.0000018386,0.0000018389,0.0000018389, -0.0000018383,0.0000018370,0.0000018347,0.0000018316,0.0000018275, -0.0000018225,0.0000018165,0.0000018097,0.0000018027,0.0000017959, -0.0000017898,0.0000017841,0.0000017791,0.0000017748,0.0000017711, -0.0000017678,0.0000017651,0.0000017628,0.0000017607,0.0000017588, -0.0000017576,0.0000017574,0.0000017583,0.0000017600,0.0000017625, -0.0000017657,0.0000017696,0.0000017738,0.0000017783,0.0000017830, -0.0000017876,0.0000017923,0.0000017969,0.0000018012,0.0000018053, -0.0000018091,0.0000018124,0.0000018153,0.0000018181,0.0000018210, -0.0000018237,0.0000018262,0.0000018285,0.0000018307,0.0000018316, -0.0000018322,0.0000018326,0.0000018324,0.0000018315,0.0000018300, -0.0000018282,0.0000018264,0.0000018250,0.0000018247,0.0000018247, -0.0000018249,0.0000018253,0.0000018257,0.0000018259,0.0000018258, -0.0000018256,0.0000018252,0.0000018246,0.0000018243,0.0000018243, -0.0000018244,0.0000018245,0.0000018246,0.0000018245,0.0000018238, -0.0000018241,0.0000018247,0.0000018250,0.0000018245,0.0000018232, -0.0000018208,0.0000018171,0.0000018121,0.0000018066,0.0000018004, -0.0000017931,0.0000017860,0.0000017824,0.0000017798,0.0000017786, -0.0000017795,0.0000017814,0.0000017827,0.0000017835,0.0000017844, -0.0000017858,0.0000017883,0.0000017922,0.0000017964,0.0000017998, -0.0000018018,0.0000018031,0.0000018044,0.0000018058,0.0000018074, -0.0000018087,0.0000018094,0.0000018092,0.0000018082,0.0000018064, -0.0000018046,0.0000018032,0.0000018033,0.0000018056,0.0000018105, -0.0000018174,0.0000018255,0.0000018340,0.0000018418,0.0000018476, -0.0000018511,0.0000018526,0.0000018524,0.0000018515,0.0000018499, -0.0000018482,0.0000018469,0.0000018459,0.0000018449,0.0000018434, -0.0000018414,0.0000018406,0.0000018418,0.0000018447,0.0000018483, -0.0000018519,0.0000018548,0.0000018585,0.0000018673,0.0000018828, -0.0000019003,0.0000019165,0.0000019324,0.0000019471,0.0000019601, -0.0000019712,0.0000019748,0.0000019756,0.0000019803,0.0000019858, -0.0000019917,0.0000019994,0.0000020046,0.0000020054,0.0000020012, -0.0000019953,0.0000019941,0.0000019981,0.0000020016,0.0000020020, -0.0000020001,0.0000019972,0.0000019961,0.0000019977,0.0000020032, -0.0000020101,0.0000020153,0.0000020175,0.0000020174,0.0000020162, -0.0000020144,0.0000020115,0.0000020083,0.0000020064,0.0000020065, -0.0000020075,0.0000020080,0.0000020074,0.0000020054,0.0000020030, -0.0000020022,0.0000020029,0.0000020052,0.0000020075,0.0000020092, -0.0000020101,0.0000020103,0.0000020100,0.0000020094,0.0000020085, -0.0000020075,0.0000020063,0.0000020050,0.0000020035,0.0000020017, -0.0000019999,0.0000019981,0.0000019963,0.0000019945,0.0000019924, -0.0000019902,0.0000019879,0.0000019853,0.0000019827,0.0000019803, -0.0000019782,0.0000019763,0.0000019744,0.0000019728,0.0000019715, -0.0000019706,0.0000019702,0.0000019701,0.0000019701,0.0000019704, -0.0000019708,0.0000019711,0.0000019714,0.0000019715,0.0000019717, -0.0000019718,0.0000019720,0.0000019718,0.0000019713,0.0000019704, -0.0000019693,0.0000019679,0.0000019664,0.0000019654,0.0000019649, -0.0000019645,0.0000019640,0.0000019633,0.0000019625,0.0000019620, -0.0000019617,0.0000019616,0.0000019617,0.0000019619,0.0000019620, -0.0000019617,0.0000019614,0.0000019613,0.0000019611,0.0000019608, -0.0000019603,0.0000019599,0.0000019600,0.0000019607,0.0000019616, -0.0000019628,0.0000019640,0.0000019656,0.0000019671,0.0000019683, -0.0000019692,0.0000019698,0.0000019702,0.0000019703,0.0000019698, -0.0000019691,0.0000019684,0.0000019675,0.0000019666,0.0000019661, -0.0000019655,0.0000019648,0.0000019640,0.0000019630,0.0000019620, -0.0000019609,0.0000019596,0.0000019582,0.0000019568,0.0000019555, -0.0000019541,0.0000019526,0.0000019506,0.0000019486,0.0000019467, -0.0000019447,0.0000019424,0.0000019401,0.0000019378,0.0000019360, -0.0000019348,0.0000019339,0.0000019331,0.0000019325,0.0000019323, -0.0000019324,0.0000019328,0.0000019336,0.0000019337,0.0000019335, -0.0000019330,0.0000019322,0.0000019309,0.0000019291,0.0000019270, -0.0000019249,0.0000019230,0.0000019219,0.0000019213,0.0000019211, -0.0000019211,0.0000019211,0.0000019209,0.0000019207,0.0000019204, -0.0000019197,0.0000019190,0.0000019182,0.0000019172,0.0000019160, -0.0000019150,0.0000019145,0.0000019145,0.0000019146,0.0000019151, -0.0000019161,0.0000019176,0.0000019195,0.0000019216,0.0000019235, -0.0000019254,0.0000019271,0.0000019289,0.0000019307,0.0000019328, -0.0000019353,0.0000019378,0.0000019401,0.0000019426,0.0000019449, -0.0000019473,0.0000019494,0.0000019514,0.0000019534,0.0000019551, -0.0000019567,0.0000019581,0.0000019595,0.0000019605,0.0000019610, -0.0000019611,0.0000019606,0.0000019596,0.0000019587,0.0000019578, -0.0000019572,0.0000019569,0.0000019573,0.0000019585,0.0000019607, -0.0000019634,0.0000019663,0.0000019688,0.0000019708,0.0000019720, -0.0000019725,0.0000019726,0.0000019724,0.0000019721,0.0000019719, -0.0000019718,0.0000019723,0.0000019729,0.0000019736,0.0000019742, -0.0000019757,0.0000019776,0.0000019798,0.0000019823,0.0000019850, -0.0000019877,0.0000019903,0.0000019926,0.0000019945,0.0000019956, -0.0000019962,0.0000019973,0.0000019982,0.0000019989,0.0000020001, -0.0000020022,0.0000020046,0.0000020068,0.0000020090,0.0000020111, -0.0000020131,0.0000020148,0.0000020159,0.0000020167,0.0000020172, -0.0000020172,0.0000020168,0.0000020161,0.0000020147,0.0000020131, -0.0000020120,0.0000020119,0.0000020126,0.0000020138,0.0000020161, -0.0000020189,0.0000020214,0.0000020233,0.0000020243,0.0000020244, -0.0000020239,0.0000020229,0.0000020223,0.0000020215,0.0000020201, -0.0000020184,0.0000020173,0.0000020167,0.0000020167,0.0000020169, -0.0000020164,0.0000020159,0.0000020149,0.0000020137,0.0000020123, -0.0000020108,0.0000020092,0.0000020076,0.0000020058,0.0000020036, -0.0000020011,0.0000019980,0.0000019941,0.0000019896,0.0000019842, -0.0000019792,0.0000019773,0.0000019754,0.0000019751,0.0000019773, -0.0000019817,0.0000019871,0.0000019931,0.0000019991,0.0000020047, -0.0000020096,0.0000020127,0.0000020144,0.0000020152,0.0000020163, -0.0000020190,0.0000020241,0.0000020310,0.0000020386,0.0000020455, -0.0000020510,0.0000020552,0.0000020561,0.0000020554,0.0000020553, -0.0000020526,0.0000020498,0.0000020470,0.0000020442,0.0000020413, -0.0000020397,0.0000020385,0.0000020378,0.0000020379,0.0000020382, -0.0000020388,0.0000020388,0.0000020386,0.0000020384,0.0000020382, -0.0000020384,0.0000020388,0.0000020392,0.0000020394,0.0000020394, -0.0000020397,0.0000020399,0.0000020396,0.0000020394,0.0000020389, -0.0000020379,0.0000020366,0.0000020353,0.0000020346,0.0000020336, -0.0000020321,0.0000020306,0.0000020292,0.0000020275,0.0000020263, -0.0000020249,0.0000020237,0.0000020232,0.0000020232,0.0000020236, -0.0000020238,0.0000020237,0.0000020227,0.0000020213,0.0000020191, -0.0000020162,0.0000020133,0.0000020115,0.0000020105,0.0000020110, -0.0000020125,0.0000020147,0.0000020172,0.0000020201,0.0000020233, -0.0000020260,0.0000020283,0.0000020297,0.0000020296,0.0000020282, -0.0000020264,0.0000020241,0.0000020220,0.0000020205,0.0000020194, -0.0000020188,0.0000020183,0.0000020175,0.0000020167,0.0000020166, -0.0000020163,0.0000020160,0.0000020157,0.0000020154,0.0000020151, -0.0000020149,0.0000020144,0.0000020134,0.0000020119,0.0000020103, -0.0000020087,0.0000020068,0.0000020049,0.0000020036,0.0000020026, -0.0000020019,0.0000020014,0.0000020008,0.0000019997,0.0000019982, -0.0000019964,0.0000019949,0.0000019938,0.0000019932,0.0000019928, -0.0000019918,0.0000019904,0.0000019889,0.0000019872,0.0000019858, -0.0000019843,0.0000019821,0.0000019789,0.0000019747,0.0000019693, -0.0000019628,0.0000019557,0.0000019483,0.0000019405,0.0000019336, -0.0000019285,0.0000019247,0.0000019220,0.0000019202,0.0000019186, -0.0000019169,0.0000019145,0.0000019116,0.0000019091,0.0000019073, -0.0000019068,0.0000019074,0.0000019094,0.0000019118,0.0000019134, -0.0000019137,0.0000019126,0.0000019105,0.0000019079,0.0000019048, -0.0000019017,0.0000018989,0.0000018967,0.0000018950,0.0000018938, -0.0000018929,0.0000018924,0.0000018920,0.0000018917,0.0000018912, -0.0000018905,0.0000018891,0.0000018871,0.0000018849,0.0000018824, -0.0000018797,0.0000018766,0.0000018745,0.0000018727,0.0000018720, -0.0000018724,0.0000018734,0.0000018744,0.0000018758,0.0000018778, -0.0000018801,0.0000018826,0.0000018851,0.0000018883,0.0000018922, -0.0000018963,0.0000019004,0.0000019044,0.0000019081,0.0000019113, -0.0000019138,0.0000019157,0.0000019177,0.0000019209,0.0000019255, -0.0000019307,0.0000019348,0.0000019376,0.0000019382,0.0000019377, -0.0000019372,0.0000019359,0.0000019355,0.0000019345,0.0000019341, -0.0000019341,0.0000019338,0.0000019330,0.0000019319,0.0000019312, -0.0000019308,0.0000019308,0.0000019313,0.0000019329,0.0000019358, -0.0000019399,0.0000019446,0.0000019482,0.0000019508,0.0000019507, -0.0000019489,0.0000019447,0.0000019388,0.0000019325,0.0000019276, -0.0000019243,0.0000019221,0.0000019215,0.0000019215,0.0000019234, -0.0000019260,0.0000019290,0.0000019328,0.0000019373,0.0000019413, -0.0000019449,0.0000019477,0.0000019484,0.0000019475,0.0000019444, -0.0000019400,0.0000019360,0.0000019347,0.0000019348,0.0000019358, -0.0000019370,0.0000019384,0.0000019386,0.0000019379,0.0000019370, -0.0000019371,0.0000019383,0.0000019395,0.0000019411,0.0000019431, -0.0000019453,0.0000019478,0.0000019501,0.0000019525,0.0000019545, -0.0000019562,0.0000019574,0.0000019576,0.0000019568,0.0000019546, -0.0000019506,0.0000019454,0.0000019402,0.0000019367,0.0000019346, -0.0000019337,0.0000019335,0.0000019335,0.0000019339,0.0000019356, -0.0000019384,0.0000019413,0.0000019441,0.0000019468,0.0000019490, -0.0000019500,0.0000019496,0.0000019466,0.0000019423,0.0000019376, -0.0000019331,0.0000019299,0.0000019279,0.0000019268,0.0000019269, -0.0000019269,0.0000019257,0.0000019232,0.0000019206,0.0000019182, -0.0000019152,0.0000019133,0.0000019124,0.0000019117,0.0000019103, -0.0000019077,0.0000019033,0.0000018997,0.0000018974,0.0000018963, -0.0000018957,0.0000018940,0.0000018908,0.0000018864,0.0000018833, -0.0000018831,0.0000018828,0.0000018803,0.0000018750,0.0000018675, -0.0000018598,0.0000018542,0.0000018514,0.0000018491,0.0000018468, -0.0000018448,0.0000018431,0.0000018421,0.0000018420,0.0000018426, -0.0000018447,0.0000018472,0.0000018497,0.0000018506,0.0000018506, -0.0000018488,0.0000018466,0.0000018453,0.0000018464,0.0000018490, -0.0000018518,0.0000018535,0.0000018541,0.0000018541,0.0000018530, -0.0000018505,0.0000018467,0.0000018419,0.0000018385,0.0000018367, -0.0000018372,0.0000018388,0.0000018402,0.0000018412,0.0000018421, -0.0000018436,0.0000018454,0.0000018468,0.0000018470,0.0000018463, -0.0000018445,0.0000018423,0.0000018400,0.0000018381,0.0000018358, -0.0000018334,0.0000018307,0.0000018275,0.0000018244,0.0000018216, -0.0000018188,0.0000018165,0.0000018147,0.0000018133,0.0000018126, -0.0000018124,0.0000018122,0.0000018124,0.0000018133,0.0000018147, -0.0000018159,0.0000018171,0.0000018182,0.0000018193,0.0000018202, -0.0000018208,0.0000018216,0.0000018227,0.0000018239,0.0000018253, -0.0000018274,0.0000018296,0.0000018318,0.0000018342,0.0000018370, -0.0000018404,0.0000018449,0.0000018502,0.0000018556,0.0000018606, -0.0000018650,0.0000018686,0.0000018717,0.0000018757,0.0000018821, -0.0000018918,0.0000019054,0.0000019220,0.0000019391,0.0000019543, -0.0000019661,0.0000019728,0.0000019735,0.0000019712,0.0000019685, -0.0000019634,0.0000019576,0.0000019524,0.0000019482,0.0000019437, -0.0000019389,0.0000019331,0.0000019273,0.0000019230,0.0000019204, -0.0000019202,0.0000019204,0.0000019214,0.0000019225,0.0000019231, -0.0000019234,0.0000019226,0.0000019207,0.0000019182,0.0000019161, -0.0000019153,0.0000019154,0.0000019152,0.0000019137,0.0000019106, -0.0000019061,0.0000019011,0.0000018966,0.0000018928,0.0000018895, -0.0000018863,0.0000018828,0.0000018807,0.0000018797,0.0000018808, -0.0000018820,0.0000018825,0.0000018821,0.0000018814,0.0000018803, -0.0000018788,0.0000018770,0.0000018753,0.0000018739,0.0000018725, -0.0000018688,0.0000018609,0.0000018497,0.0000018395,0.0000018345, -0.0000018349,0.0000018383,0.0000018422,0.0000018451,0.0000018482, -0.0000018520,0.0000018548,0.0000018565,0.0000018560,0.0000018539, -0.0000018511,0.0000018482,0.0000018455,0.0000018430,0.0000018406, -0.0000018383,0.0000018362,0.0000018341,0.0000018320,0.0000018299, -0.0000018275,0.0000018241,0.0000018197,0.0000018154,0.0000018127, -0.0000018126,0.0000018148,0.0000018174,0.0000018195,0.0000018217, -0.0000018243,0.0000018269,0.0000018287,0.0000018291,0.0000018249, -0.0000018164,0.0000018086,0.0000018034,0.0000018005,0.0000017989, -0.0000017984,0.0000017995,0.0000018014,0.0000018038,0.0000018061, -0.0000018086,0.0000018121,0.0000018157,0.0000018188,0.0000018215, -0.0000018234,0.0000018246,0.0000018247,0.0000018243,0.0000018232, -0.0000018213,0.0000018190,0.0000018162,0.0000018131,0.0000018102, -0.0000018072,0.0000018041,0.0000018010,0.0000017979,0.0000017951, -0.0000017927,0.0000017908,0.0000017892,0.0000017879,0.0000017869, -0.0000017859,0.0000017846,0.0000017833,0.0000017819,0.0000017807, -0.0000017799,0.0000017799,0.0000017808,0.0000017833,0.0000017883, -0.0000017961,0.0000018057,0.0000018151,0.0000018224,0.0000018274, -0.0000018317,0.0000018381,0.0000018474,0.0000018578,0.0000018649, -0.0000018668,0.0000018662,0.0000018653,0.0000018654,0.0000018646, -0.0000018624,0.0000018606,0.0000018603,0.0000018602,0.0000018597, -0.0000018588,0.0000018578,0.0000018565,0.0000018545,0.0000018514, -0.0000018475,0.0000018441,0.0000018429,0.0000018435,0.0000018464, -0.0000018521,0.0000018579,0.0000018622,0.0000018646,0.0000018654, -0.0000018656,0.0000018658,0.0000018658,0.0000018652,0.0000018630, -0.0000018593,0.0000018549,0.0000018514,0.0000018512,0.0000018561, -0.0000018645,0.0000018707,0.0000018693,0.0000018624,0.0000018656, -0.0000018736,0.0000018684,0.0000018642,0.0000018674,0.0000018714, -0.0000018795,0.0000018951,0.0000018957,0.0000018875,0.0000018844, -0.0000018850,0.0000018872,0.0000018888,0.0000018892,0.0000018893, -0.0000018848,0.0000018721,0.0000018601,0.0000018539,0.0000018502, -0.0000018469,0.0000018445,0.0000018432,0.0000018456,0.0000018545, -0.0000018652,0.0000018752,0.0000018838,0.0000018914,0.0000018969, -0.0000018996,0.0000019002,0.0000019005,0.0000019016,0.0000019015, -0.0000019018,0.0000019029,0.0000019049,0.0000019072,0.0000019100, -0.0000019108,0.0000019084,0.0000019005,0.0000018892,0.0000018795, -0.0000018745,0.0000018745,0.0000018779,0.0000018839,0.0000018910, -0.0000018974,0.0000018984,0.0000018992,0.0000018986,0.0000018951, -0.0000018912,0.0000018879,0.0000018856,0.0000018851,0.0000018851, -0.0000018869,0.0000018882,0.0000018891,0.0000018888,0.0000018871, -0.0000018846,0.0000018819,0.0000018793,0.0000018775,0.0000018773, -0.0000018787,0.0000018823,0.0000018871,0.0000018914,0.0000018934, -0.0000018927,0.0000018885,0.0000018801,0.0000018676,0.0000018534, -0.0000018404,0.0000018328,0.0000018303,0.0000018300,0.0000018301, -0.0000018292,0.0000018275,0.0000018250,0.0000018216,0.0000018169, -0.0000018099,0.0000018012,0.0000017941,0.0000017893,0.0000017897, -0.0000017929,0.0000017979,0.0000018028,0.0000018070,0.0000018103, -0.0000018123,0.0000018120,0.0000018111,0.0000018087,0.0000018049, -0.0000018007,0.0000017967,0.0000017937,0.0000017917,0.0000017904, -0.0000017895,0.0000017888,0.0000017881,0.0000017874,0.0000017868, -0.0000017862,0.0000017853,0.0000017840,0.0000017826,0.0000017811, -0.0000017797,0.0000017785,0.0000017775,0.0000017766,0.0000017755, -0.0000017744,0.0000017734,0.0000017727,0.0000017720,0.0000017716, -0.0000017721,0.0000017733,0.0000017748,0.0000017767,0.0000017794, -0.0000017824,0.0000017856,0.0000017888,0.0000017913,0.0000017934, -0.0000017953,0.0000017970,0.0000017988,0.0000017999,0.0000018003, -0.0000017999,0.0000017986,0.0000017967,0.0000017948,0.0000017933, -0.0000017920,0.0000017911,0.0000017908,0.0000017908,0.0000017912, -0.0000017918,0.0000017928,0.0000017941,0.0000017960,0.0000017979, -0.0000017999,0.0000018021,0.0000018044,0.0000018069,0.0000018092, -0.0000018050,0.0000018067,0.0000018083,0.0000018098,0.0000018108, -0.0000018117,0.0000018129,0.0000018141,0.0000018150,0.0000018149, -0.0000018148,0.0000018150,0.0000018157,0.0000018170,0.0000018184, -0.0000018194,0.0000018201,0.0000018204,0.0000018203,0.0000018195, -0.0000018188,0.0000018177,0.0000018168,0.0000018162,0.0000018154, -0.0000018147,0.0000018139,0.0000018126,0.0000018108,0.0000018082, -0.0000018056,0.0000018034,0.0000018016,0.0000018000,0.0000017979, -0.0000017963,0.0000017946,0.0000017940,0.0000017952,0.0000017990, -0.0000018046,0.0000018114,0.0000018187,0.0000018258,0.0000018325, -0.0000018382,0.0000018425,0.0000018434,0.0000018421,0.0000018407, -0.0000018389,0.0000018372,0.0000018355,0.0000018344,0.0000018335, -0.0000018324,0.0000018310,0.0000018289,0.0000018264,0.0000018237, -0.0000018214,0.0000018200,0.0000018196,0.0000018200,0.0000018210, -0.0000018225,0.0000018244,0.0000018266,0.0000018294,0.0000018319, -0.0000018337,0.0000018340,0.0000018325,0.0000018293,0.0000018248, -0.0000018193,0.0000018142,0.0000018100,0.0000018083,0.0000018074, -0.0000018077,0.0000018080,0.0000018074,0.0000018053,0.0000018019, -0.0000017987,0.0000017961,0.0000017961,0.0000017990,0.0000018042, -0.0000018106,0.0000018174,0.0000018239,0.0000018290,0.0000018319, -0.0000018328,0.0000018331,0.0000018357,0.0000018423,0.0000018512, -0.0000018592,0.0000018628,0.0000018624,0.0000018614,0.0000018620, -0.0000018646,0.0000018678,0.0000018696,0.0000018698,0.0000018687, -0.0000018666,0.0000018639,0.0000018616,0.0000018598,0.0000018586, -0.0000018579,0.0000018574,0.0000018570,0.0000018563,0.0000018555, -0.0000018546,0.0000018534,0.0000018521,0.0000018509,0.0000018501, -0.0000018495,0.0000018489,0.0000018485,0.0000018481,0.0000018476, -0.0000018466,0.0000018448,0.0000018427,0.0000018401,0.0000018371, -0.0000018341,0.0000018313,0.0000018290,0.0000018274,0.0000018264, -0.0000018260,0.0000018263,0.0000018272,0.0000018283,0.0000018295, -0.0000018309,0.0000018323,0.0000018335,0.0000018345,0.0000018356, -0.0000018366,0.0000018374,0.0000018378,0.0000018377,0.0000018369, -0.0000018351,0.0000018321,0.0000018278,0.0000018222,0.0000018155, -0.0000018081,0.0000018006,0.0000017934,0.0000017869,0.0000017812, -0.0000017762,0.0000017719,0.0000017684,0.0000017656,0.0000017631, -0.0000017607,0.0000017585,0.0000017563,0.0000017541,0.0000017518, -0.0000017496,0.0000017481,0.0000017478,0.0000017484,0.0000017500, -0.0000017527,0.0000017562,0.0000017599,0.0000017637,0.0000017675, -0.0000017710,0.0000017742,0.0000017772,0.0000017801,0.0000017828, -0.0000017858,0.0000017886,0.0000017915,0.0000017948,0.0000017986, -0.0000018030,0.0000018083,0.0000018143,0.0000018202,0.0000018251, -0.0000018288,0.0000018314,0.0000018325,0.0000018322,0.0000018313, -0.0000018298,0.0000018282,0.0000018269,0.0000018261,0.0000018256, -0.0000018251,0.0000018246,0.0000018238,0.0000018229,0.0000018218, -0.0000018207,0.0000018196,0.0000018187,0.0000018182,0.0000018182, -0.0000018183,0.0000018185,0.0000018186,0.0000018189,0.0000018196, -0.0000018209,0.0000018228,0.0000018247,0.0000018254,0.0000018263, -0.0000018266,0.0000018262,0.0000018248,0.0000018220,0.0000018176, -0.0000018115,0.0000018045,0.0000017971,0.0000017891,0.0000017820, -0.0000017791,0.0000017782,0.0000017785,0.0000017810,0.0000017835, -0.0000017854,0.0000017872,0.0000017897,0.0000017931,0.0000017969, -0.0000018003,0.0000018025,0.0000018035,0.0000018038,0.0000018044, -0.0000018050,0.0000018052,0.0000018046,0.0000018031,0.0000018009, -0.0000017982,0.0000017954,0.0000017931,0.0000017926,0.0000017940, -0.0000017978,0.0000018045,0.0000018134,0.0000018230,0.0000018321, -0.0000018399,0.0000018455,0.0000018483,0.0000018485,0.0000018472, -0.0000018449,0.0000018425,0.0000018405,0.0000018386,0.0000018366, -0.0000018349,0.0000018351,0.0000018375,0.0000018411,0.0000018458, -0.0000018504,0.0000018532,0.0000018561,0.0000018645,0.0000018800, -0.0000018978,0.0000019143,0.0000019301,0.0000019443,0.0000019571, -0.0000019676,0.0000019700,0.0000019710,0.0000019765,0.0000019823, -0.0000019891,0.0000019977,0.0000020028,0.0000020024,0.0000019975, -0.0000019929,0.0000019936,0.0000019980,0.0000020005,0.0000020006, -0.0000019987,0.0000019963,0.0000019946,0.0000019945,0.0000019970, -0.0000020019,0.0000020070,0.0000020106,0.0000020125,0.0000020133, -0.0000020130,0.0000020119,0.0000020098,0.0000020075,0.0000020060, -0.0000020058,0.0000020064,0.0000020071,0.0000020071,0.0000020060, -0.0000020042,0.0000020026,0.0000020024,0.0000020031,0.0000020044, -0.0000020056,0.0000020066,0.0000020068,0.0000020064,0.0000020055, -0.0000020042,0.0000020028,0.0000020012,0.0000019996,0.0000019979, -0.0000019963,0.0000019946,0.0000019930,0.0000019913,0.0000019895, -0.0000019874,0.0000019850,0.0000019826,0.0000019800,0.0000019775, -0.0000019754,0.0000019735,0.0000019722,0.0000019712,0.0000019706, -0.0000019702,0.0000019700,0.0000019696,0.0000019693,0.0000019693, -0.0000019692,0.0000019691,0.0000019690,0.0000019690,0.0000019690, -0.0000019691,0.0000019692,0.0000019689,0.0000019681,0.0000019671, -0.0000019659,0.0000019647,0.0000019639,0.0000019636,0.0000019636, -0.0000019634,0.0000019627,0.0000019622,0.0000019618,0.0000019615, -0.0000019614,0.0000019615,0.0000019619,0.0000019619,0.0000019617, -0.0000019615,0.0000019614,0.0000019611,0.0000019605,0.0000019596, -0.0000019589,0.0000019585,0.0000019586,0.0000019590,0.0000019597, -0.0000019604,0.0000019612,0.0000019619,0.0000019629,0.0000019637, -0.0000019644,0.0000019648,0.0000019646,0.0000019639,0.0000019629, -0.0000019620,0.0000019611,0.0000019603,0.0000019599,0.0000019596, -0.0000019591,0.0000019586,0.0000019579,0.0000019571,0.0000019564, -0.0000019555,0.0000019545,0.0000019534,0.0000019522,0.0000019510, -0.0000019497,0.0000019478,0.0000019457,0.0000019436,0.0000019414, -0.0000019390,0.0000019366,0.0000019340,0.0000019318,0.0000019302, -0.0000019288,0.0000019278,0.0000019275,0.0000019276,0.0000019279, -0.0000019284,0.0000019289,0.0000019288,0.0000019283,0.0000019278, -0.0000019270,0.0000019259,0.0000019243,0.0000019226,0.0000019209, -0.0000019193,0.0000019182,0.0000019175,0.0000019172,0.0000019172, -0.0000019173,0.0000019172,0.0000019170,0.0000019167,0.0000019161, -0.0000019156,0.0000019148,0.0000019138,0.0000019126,0.0000019115, -0.0000019104,0.0000019099,0.0000019097,0.0000019098,0.0000019103, -0.0000019112,0.0000019125,0.0000019140,0.0000019154,0.0000019170, -0.0000019185,0.0000019202,0.0000019219,0.0000019240,0.0000019261, -0.0000019281,0.0000019298,0.0000019317,0.0000019332,0.0000019346, -0.0000019362,0.0000019377,0.0000019395,0.0000019413,0.0000019431, -0.0000019449,0.0000019469,0.0000019488,0.0000019501,0.0000019512, -0.0000019516,0.0000019516,0.0000019512,0.0000019506,0.0000019500, -0.0000019496,0.0000019496,0.0000019504,0.0000019521,0.0000019547, -0.0000019578,0.0000019611,0.0000019644,0.0000019672,0.0000019693, -0.0000019709,0.0000019718,0.0000019723,0.0000019725,0.0000019731, -0.0000019739,0.0000019744,0.0000019744,0.0000019742,0.0000019739, -0.0000019743,0.0000019743,0.0000019753,0.0000019767,0.0000019784, -0.0000019801,0.0000019817,0.0000019833,0.0000019846,0.0000019858, -0.0000019873,0.0000019886,0.0000019895,0.0000019908,0.0000019925, -0.0000019945,0.0000019969,0.0000019995,0.0000020023,0.0000020051, -0.0000020078,0.0000020101,0.0000020120,0.0000020137,0.0000020151, -0.0000020160,0.0000020162,0.0000020157,0.0000020143,0.0000020130, -0.0000020124,0.0000020120,0.0000020115,0.0000020116,0.0000020127, -0.0000020144,0.0000020161,0.0000020177,0.0000020184,0.0000020184, -0.0000020177,0.0000020165,0.0000020154,0.0000020143,0.0000020132, -0.0000020122,0.0000020117,0.0000020118,0.0000020120,0.0000020118, -0.0000020117,0.0000020115,0.0000020108,0.0000020099,0.0000020084, -0.0000020067,0.0000020051,0.0000020040,0.0000020034,0.0000020023, -0.0000020013,0.0000020005,0.0000019985,0.0000019955,0.0000019920, -0.0000019884,0.0000019840,0.0000019791,0.0000019764,0.0000019752, -0.0000019743,0.0000019758,0.0000019806,0.0000019869,0.0000019940, -0.0000020014,0.0000020077,0.0000020121,0.0000020143,0.0000020152, -0.0000020172,0.0000020201,0.0000020248,0.0000020304,0.0000020360, -0.0000020414,0.0000020461,0.0000020507,0.0000020530,0.0000020516, -0.0000020513,0.0000020497,0.0000020464,0.0000020429,0.0000020394, -0.0000020367,0.0000020346,0.0000020336,0.0000020339,0.0000020347, -0.0000020363,0.0000020380,0.0000020385,0.0000020395,0.0000020398, -0.0000020397,0.0000020394,0.0000020387,0.0000020381,0.0000020379, -0.0000020379,0.0000020383,0.0000020384,0.0000020381,0.0000020373, -0.0000020368,0.0000020360,0.0000020349,0.0000020329,0.0000020310, -0.0000020297,0.0000020287,0.0000020290,0.0000020292,0.0000020292, -0.0000020289,0.0000020288,0.0000020289,0.0000020291,0.0000020289, -0.0000020286,0.0000020277,0.0000020266,0.0000020254,0.0000020235, -0.0000020216,0.0000020199,0.0000020192,0.0000020190,0.0000020194, -0.0000020205,0.0000020220,0.0000020239,0.0000020265,0.0000020290, -0.0000020309,0.0000020317,0.0000020317,0.0000020314,0.0000020306, -0.0000020295,0.0000020288,0.0000020283,0.0000020282,0.0000020285, -0.0000020287,0.0000020283,0.0000020284,0.0000020289,0.0000020290, -0.0000020284,0.0000020276,0.0000020272,0.0000020269,0.0000020263, -0.0000020247,0.0000020226,0.0000020203,0.0000020180,0.0000020153, -0.0000020122,0.0000020096,0.0000020073,0.0000020058,0.0000020048, -0.0000020036,0.0000020026,0.0000020017,0.0000020004,0.0000019987, -0.0000019971,0.0000019957,0.0000019946,0.0000019938,0.0000019929, -0.0000019919,0.0000019906,0.0000019892,0.0000019880,0.0000019865, -0.0000019844,0.0000019819,0.0000019787,0.0000019745,0.0000019699, -0.0000019647,0.0000019585,0.0000019521,0.0000019463,0.0000019412, -0.0000019365,0.0000019328,0.0000019297,0.0000019267,0.0000019238, -0.0000019207,0.0000019173,0.0000019135,0.0000019104,0.0000019085, -0.0000019086,0.0000019099,0.0000019118,0.0000019128,0.0000019133, -0.0000019128,0.0000019124,0.0000019116,0.0000019109,0.0000019095, -0.0000019082,0.0000019076,0.0000019071,0.0000019069,0.0000019067, -0.0000019066,0.0000019060,0.0000019049,0.0000019032,0.0000019002, -0.0000018961,0.0000018918,0.0000018872,0.0000018826,0.0000018785, -0.0000018752,0.0000018728,0.0000018714,0.0000018706,0.0000018700, -0.0000018702,0.0000018711,0.0000018727,0.0000018747,0.0000018762, -0.0000018776,0.0000018793,0.0000018816,0.0000018845,0.0000018878, -0.0000018913,0.0000018950,0.0000018987,0.0000019020,0.0000019043, -0.0000019062,0.0000019087,0.0000019125,0.0000019175,0.0000019232, -0.0000019290,0.0000019336,0.0000019370,0.0000019387,0.0000019392, -0.0000019385,0.0000019364,0.0000019341,0.0000019328,0.0000019314, -0.0000019297,0.0000019281,0.0000019266,0.0000019257,0.0000019252, -0.0000019251,0.0000019258,0.0000019274,0.0000019301,0.0000019335, -0.0000019370,0.0000019408,0.0000019440,0.0000019459,0.0000019453, -0.0000019427,0.0000019383,0.0000019326,0.0000019270,0.0000019225, -0.0000019210,0.0000019200,0.0000019212,0.0000019230,0.0000019246, -0.0000019264,0.0000019290,0.0000019326,0.0000019368,0.0000019411, -0.0000019445,0.0000019461,0.0000019449,0.0000019428,0.0000019403, -0.0000019392,0.0000019380,0.0000019367,0.0000019361,0.0000019350, -0.0000019337,0.0000019324,0.0000019319,0.0000019331,0.0000019357, -0.0000019374,0.0000019384,0.0000019389,0.0000019397,0.0000019417, -0.0000019444,0.0000019470,0.0000019492,0.0000019514,0.0000019532, -0.0000019537,0.0000019528,0.0000019500,0.0000019455,0.0000019401, -0.0000019358,0.0000019329,0.0000019315,0.0000019310,0.0000019314, -0.0000019320,0.0000019332,0.0000019355,0.0000019392,0.0000019430, -0.0000019461,0.0000019485,0.0000019504,0.0000019511,0.0000019498, -0.0000019459,0.0000019411,0.0000019357,0.0000019304,0.0000019268, -0.0000019241,0.0000019223,0.0000019218,0.0000019217,0.0000019205, -0.0000019172,0.0000019136,0.0000019108,0.0000019091,0.0000019089, -0.0000019095,0.0000019091,0.0000019074,0.0000019036,0.0000018984, -0.0000018946,0.0000018927,0.0000018921,0.0000018916,0.0000018902, -0.0000018873,0.0000018837,0.0000018817,0.0000018816,0.0000018825, -0.0000018810,0.0000018767,0.0000018699,0.0000018618,0.0000018551, -0.0000018513,0.0000018491,0.0000018468,0.0000018446,0.0000018434, -0.0000018428,0.0000018431,0.0000018447,0.0000018468,0.0000018487, -0.0000018494,0.0000018498,0.0000018492,0.0000018479,0.0000018456, -0.0000018437,0.0000018423,0.0000018436,0.0000018469,0.0000018497, -0.0000018511,0.0000018515,0.0000018511,0.0000018493,0.0000018458, -0.0000018409,0.0000018369,0.0000018351,0.0000018346,0.0000018353, -0.0000018357,0.0000018360,0.0000018365,0.0000018378,0.0000018395, -0.0000018409,0.0000018418,0.0000018421,0.0000018414,0.0000018403, -0.0000018391,0.0000018378,0.0000018359,0.0000018337,0.0000018307, -0.0000018271,0.0000018234,0.0000018198,0.0000018169,0.0000018146, -0.0000018121,0.0000018099,0.0000018083,0.0000018073,0.0000018067, -0.0000018065,0.0000018069,0.0000018077,0.0000018087,0.0000018096, -0.0000018107,0.0000018117,0.0000018125,0.0000018130,0.0000018138, -0.0000018147,0.0000018158,0.0000018174,0.0000018194,0.0000018215, -0.0000018237,0.0000018259,0.0000018282,0.0000018311,0.0000018348, -0.0000018396,0.0000018451,0.0000018510,0.0000018569,0.0000018619, -0.0000018658,0.0000018691,0.0000018728,0.0000018782,0.0000018868, -0.0000018989,0.0000019138,0.0000019298,0.0000019447,0.0000019572, -0.0000019646,0.0000019688,0.0000019689,0.0000019670,0.0000019619, -0.0000019566,0.0000019527,0.0000019488,0.0000019453,0.0000019412, -0.0000019366,0.0000019319,0.0000019275,0.0000019239,0.0000019219, -0.0000019220,0.0000019228,0.0000019236,0.0000019241,0.0000019240, -0.0000019225,0.0000019198,0.0000019174,0.0000019161,0.0000019156, -0.0000019152,0.0000019141,0.0000019116,0.0000019076,0.0000019026, -0.0000018976,0.0000018934,0.0000018903,0.0000018874,0.0000018840, -0.0000018804,0.0000018780,0.0000018770,0.0000018771,0.0000018775, -0.0000018779,0.0000018780,0.0000018774,0.0000018761,0.0000018747, -0.0000018735,0.0000018724,0.0000018712,0.0000018689,0.0000018633, -0.0000018539,0.0000018437,0.0000018367,0.0000018359,0.0000018393, -0.0000018442,0.0000018478,0.0000018505,0.0000018532,0.0000018557, -0.0000018570,0.0000018571,0.0000018560,0.0000018540,0.0000018514, -0.0000018485,0.0000018454,0.0000018422,0.0000018392,0.0000018363, -0.0000018333,0.0000018305,0.0000018274,0.0000018241,0.0000018208, -0.0000018183,0.0000018172,0.0000018175,0.0000018187,0.0000018200, -0.0000018216,0.0000018238,0.0000018267,0.0000018297,0.0000018319, -0.0000018332,0.0000018312,0.0000018245,0.0000018155,0.0000018077, -0.0000018032,0.0000018017,0.0000018011,0.0000018019,0.0000018045, -0.0000018077,0.0000018107,0.0000018142,0.0000018183,0.0000018226, -0.0000018266,0.0000018302,0.0000018329,0.0000018347,0.0000018357, -0.0000018358,0.0000018352,0.0000018339,0.0000018322,0.0000018299, -0.0000018273,0.0000018245,0.0000018218,0.0000018189,0.0000018157, -0.0000018124,0.0000018088,0.0000018049,0.0000018010,0.0000017975, -0.0000017943,0.0000017918,0.0000017895,0.0000017875,0.0000017859, -0.0000017849,0.0000017845,0.0000017850,0.0000017865,0.0000017889, -0.0000017930,0.0000017989,0.0000018060,0.0000018137,0.0000018207, -0.0000018262,0.0000018303,0.0000018349,0.0000018415,0.0000018507, -0.0000018600,0.0000018657,0.0000018667,0.0000018659,0.0000018652, -0.0000018648,0.0000018628,0.0000018598,0.0000018583,0.0000018583, -0.0000018583,0.0000018576,0.0000018563,0.0000018545,0.0000018523, -0.0000018493,0.0000018457,0.0000018429,0.0000018420,0.0000018423, -0.0000018442,0.0000018485,0.0000018536,0.0000018576,0.0000018601, -0.0000018617,0.0000018635,0.0000018651,0.0000018658,0.0000018647, -0.0000018612,0.0000018562,0.0000018510,0.0000018474,0.0000018478, -0.0000018527,0.0000018612,0.0000018697,0.0000018701,0.0000018633, -0.0000018640,0.0000018735,0.0000018711,0.0000018647,0.0000018655, -0.0000018703,0.0000018729,0.0000018847,0.0000018964,0.0000018917, -0.0000018851,0.0000018841,0.0000018851,0.0000018863,0.0000018867, -0.0000018867,0.0000018821,0.0000018698,0.0000018586,0.0000018528, -0.0000018493,0.0000018469,0.0000018461,0.0000018518,0.0000018625, -0.0000018738,0.0000018826,0.0000018893,0.0000018943,0.0000018961, -0.0000018961,0.0000018943,0.0000018920,0.0000018904,0.0000018898, -0.0000018897,0.0000018904,0.0000018912,0.0000018924,0.0000018949, -0.0000018998,0.0000019066,0.0000019115,0.0000019090,0.0000018945, -0.0000018724,0.0000018545,0.0000018469,0.0000018463,0.0000018485, -0.0000018527,0.0000018593,0.0000018676,0.0000018764,0.0000018860, -0.0000018937,0.0000018943,0.0000018944,0.0000018921,0.0000018876, -0.0000018846,0.0000018823,0.0000018815,0.0000018829,0.0000018852, -0.0000018881,0.0000018881,0.0000018884,0.0000018883,0.0000018879, -0.0000018872,0.0000018873,0.0000018884,0.0000018905,0.0000018927, -0.0000018948,0.0000018959,0.0000018965,0.0000018957,0.0000018923, -0.0000018836,0.0000018702,0.0000018545,0.0000018401,0.0000018320, -0.0000018301,0.0000018302,0.0000018307,0.0000018305,0.0000018288, -0.0000018262,0.0000018224,0.0000018171,0.0000018097,0.0000018011, -0.0000017938,0.0000017896,0.0000017902,0.0000017938,0.0000017982, -0.0000018026,0.0000018062,0.0000018090,0.0000018104,0.0000018110, -0.0000018104,0.0000018085,0.0000018053,0.0000018021,0.0000017992, -0.0000017972,0.0000017961,0.0000017955,0.0000017950,0.0000017944, -0.0000017937,0.0000017929,0.0000017918,0.0000017904,0.0000017888, -0.0000017869,0.0000017851,0.0000017833,0.0000017818,0.0000017805, -0.0000017794,0.0000017783,0.0000017773,0.0000017768,0.0000017763, -0.0000017764,0.0000017774,0.0000017791,0.0000017815,0.0000017841, -0.0000017870,0.0000017904,0.0000017935,0.0000017965,0.0000017990, -0.0000018009,0.0000018025,0.0000018041,0.0000018056,0.0000018067, -0.0000018072,0.0000018071,0.0000018059,0.0000018040,0.0000018016, -0.0000017992,0.0000017975,0.0000017959,0.0000017948,0.0000017942, -0.0000017936,0.0000017933,0.0000017934,0.0000017937,0.0000017949, -0.0000017962,0.0000017977,0.0000017989,0.0000018004,0.0000018018, -0.0000018034,0.0000018067,0.0000018068,0.0000018072,0.0000018079, -0.0000018085,0.0000018086,0.0000018081,0.0000018086,0.0000018099, -0.0000018106,0.0000018109,0.0000018112,0.0000018120,0.0000018130, -0.0000018143,0.0000018158,0.0000018168,0.0000018174,0.0000018176, -0.0000018175,0.0000018170,0.0000018161,0.0000018152,0.0000018146, -0.0000018144,0.0000018145,0.0000018148,0.0000018149,0.0000018147, -0.0000018139,0.0000018121,0.0000018092,0.0000018063,0.0000018035, -0.0000018007,0.0000017982,0.0000017955,0.0000017931,0.0000017906, -0.0000017897,0.0000017906,0.0000017941,0.0000017996,0.0000018060, -0.0000018126,0.0000018194,0.0000018263,0.0000018328,0.0000018379, -0.0000018408,0.0000018408,0.0000018398,0.0000018387,0.0000018372, -0.0000018360,0.0000018348,0.0000018334,0.0000018320,0.0000018306, -0.0000018291,0.0000018274,0.0000018257,0.0000018243,0.0000018236, -0.0000018237,0.0000018245,0.0000018258,0.0000018275,0.0000018296, -0.0000018319,0.0000018339,0.0000018354,0.0000018365,0.0000018364, -0.0000018349,0.0000018316,0.0000018268,0.0000018210,0.0000018153, -0.0000018104,0.0000018076,0.0000018068,0.0000018065,0.0000018063, -0.0000018049,0.0000018017,0.0000017970,0.0000017927,0.0000017903, -0.0000017909,0.0000017940,0.0000017994,0.0000018064,0.0000018140, -0.0000018208,0.0000018258,0.0000018282,0.0000018291,0.0000018307, -0.0000018358,0.0000018439,0.0000018528,0.0000018587,0.0000018604, -0.0000018600,0.0000018601,0.0000018619,0.0000018642,0.0000018654, -0.0000018652,0.0000018637,0.0000018612,0.0000018587,0.0000018569, -0.0000018556,0.0000018549,0.0000018547,0.0000018545,0.0000018541, -0.0000018535,0.0000018526,0.0000018513,0.0000018497,0.0000018480, -0.0000018468,0.0000018459,0.0000018451,0.0000018445,0.0000018442, -0.0000018440,0.0000018436,0.0000018430,0.0000018417,0.0000018397, -0.0000018373,0.0000018349,0.0000018325,0.0000018299,0.0000018277, -0.0000018262,0.0000018254,0.0000018253,0.0000018258,0.0000018265, -0.0000018274,0.0000018286,0.0000018299,0.0000018311,0.0000018322, -0.0000018331,0.0000018336,0.0000018337,0.0000018332,0.0000018317, -0.0000018291,0.0000018255,0.0000018206,0.0000018145,0.0000018076, -0.0000017999,0.0000017922,0.0000017849,0.0000017787,0.0000017735, -0.0000017690,0.0000017657,0.0000017633,0.0000017617,0.0000017603, -0.0000017590,0.0000017576,0.0000017559,0.0000017541,0.0000017521, -0.0000017499,0.0000017476,0.0000017453,0.0000017437,0.0000017434, -0.0000017441,0.0000017463,0.0000017498,0.0000017537,0.0000017577, -0.0000017615,0.0000017647,0.0000017672,0.0000017690,0.0000017702, -0.0000017710,0.0000017717,0.0000017721,0.0000017726,0.0000017735, -0.0000017751,0.0000017779,0.0000017827,0.0000017893,0.0000017969, -0.0000018045,0.0000018118,0.0000018183,0.0000018234,0.0000018268, -0.0000018284,0.0000018289,0.0000018279,0.0000018274,0.0000018272, -0.0000018271,0.0000018268,0.0000018261,0.0000018251,0.0000018237, -0.0000018220,0.0000018201,0.0000018182,0.0000018168,0.0000018154, -0.0000018146,0.0000018137,0.0000018128,0.0000018121,0.0000018117, -0.0000018121,0.0000018131,0.0000018149,0.0000018171,0.0000018195, -0.0000018217,0.0000018237,0.0000018253,0.0000018251,0.0000018249, -0.0000018241,0.0000018221,0.0000018191,0.0000018145,0.0000018083, -0.0000018012,0.0000017932,0.0000017850,0.0000017803,0.0000017798, -0.0000017804,0.0000017830,0.0000017860,0.0000017883,0.0000017905, -0.0000017933,0.0000017967,0.0000018001,0.0000018024,0.0000018033, -0.0000018033,0.0000018029,0.0000018022,0.0000018008,0.0000017985, -0.0000017957,0.0000017926,0.0000017897,0.0000017876,0.0000017867, -0.0000017868,0.0000017881,0.0000017919,0.0000017978,0.0000018051, -0.0000018137,0.0000018233,0.0000018325,0.0000018397,0.0000018435, -0.0000018438,0.0000018420,0.0000018391,0.0000018361,0.0000018335, -0.0000018314,0.0000018305,0.0000018315,0.0000018342,0.0000018380, -0.0000018432,0.0000018483,0.0000018514,0.0000018542,0.0000018623, -0.0000018780,0.0000018964,0.0000019129,0.0000019282,0.0000019417, -0.0000019544,0.0000019639,0.0000019651,0.0000019671,0.0000019734, -0.0000019792,0.0000019870,0.0000019961,0.0000020003,0.0000019987, -0.0000019938,0.0000019909,0.0000019935,0.0000019973,0.0000019991, -0.0000019990,0.0000019972,0.0000019951,0.0000019934,0.0000019918, -0.0000019915,0.0000019936,0.0000019972,0.0000020009,0.0000020040, -0.0000020067,0.0000020090,0.0000020101,0.0000020098,0.0000020090, -0.0000020070,0.0000020052,0.0000020045,0.0000020050,0.0000020061, -0.0000020068,0.0000020067,0.0000020056,0.0000020041,0.0000020025, -0.0000020013,0.0000020008,0.0000020005,0.0000020000,0.0000019995, -0.0000019988,0.0000019977,0.0000019964,0.0000019950,0.0000019936, -0.0000019924,0.0000019912,0.0000019901,0.0000019889,0.0000019876, -0.0000019863,0.0000019847,0.0000019831,0.0000019813,0.0000019792, -0.0000019774,0.0000019756,0.0000019741,0.0000019729,0.0000019720, -0.0000019714,0.0000019710,0.0000019706,0.0000019703,0.0000019702, -0.0000019701,0.0000019700,0.0000019698,0.0000019695,0.0000019694, -0.0000019693,0.0000019693,0.0000019691,0.0000019683,0.0000019673, -0.0000019661,0.0000019649,0.0000019641,0.0000019636,0.0000019633, -0.0000019626,0.0000019615,0.0000019606,0.0000019597,0.0000019589, -0.0000019586,0.0000019586,0.0000019587,0.0000019588,0.0000019588, -0.0000019588,0.0000019584,0.0000019578,0.0000019570,0.0000019562, -0.0000019555,0.0000019552,0.0000019553,0.0000019557,0.0000019563, -0.0000019569,0.0000019575,0.0000019583,0.0000019590,0.0000019599, -0.0000019608,0.0000019613,0.0000019612,0.0000019608,0.0000019601, -0.0000019592,0.0000019583,0.0000019575,0.0000019571,0.0000019567, -0.0000019561,0.0000019554,0.0000019543,0.0000019532,0.0000019521, -0.0000019506,0.0000019492,0.0000019478,0.0000019461,0.0000019445, -0.0000019430,0.0000019410,0.0000019387,0.0000019364,0.0000019342, -0.0000019320,0.0000019296,0.0000019269,0.0000019248,0.0000019232, -0.0000019220,0.0000019218,0.0000019221,0.0000019225,0.0000019230, -0.0000019237,0.0000019243,0.0000019242,0.0000019236,0.0000019229, -0.0000019220,0.0000019210,0.0000019197,0.0000019185,0.0000019173, -0.0000019158,0.0000019147,0.0000019139,0.0000019135,0.0000019135, -0.0000019135,0.0000019136,0.0000019136,0.0000019133,0.0000019130, -0.0000019127,0.0000019122,0.0000019116,0.0000019107,0.0000019096, -0.0000019084,0.0000019074,0.0000019066,0.0000019062,0.0000019063, -0.0000019067,0.0000019074,0.0000019083,0.0000019094,0.0000019108, -0.0000019122,0.0000019137,0.0000019154,0.0000019176,0.0000019198, -0.0000019218,0.0000019235,0.0000019250,0.0000019263,0.0000019271, -0.0000019277,0.0000019284,0.0000019291,0.0000019301,0.0000019313, -0.0000019327,0.0000019343,0.0000019359,0.0000019374,0.0000019388, -0.0000019397,0.0000019404,0.0000019407,0.0000019408,0.0000019408, -0.0000019410,0.0000019414,0.0000019420,0.0000019433,0.0000019451, -0.0000019476,0.0000019505,0.0000019539,0.0000019574,0.0000019607, -0.0000019637,0.0000019662,0.0000019682,0.0000019699,0.0000019718, -0.0000019736,0.0000019748,0.0000019755,0.0000019754,0.0000019749, -0.0000019743,0.0000019738,0.0000019734,0.0000019733,0.0000019736, -0.0000019739,0.0000019744,0.0000019750,0.0000019760,0.0000019771, -0.0000019784,0.0000019799,0.0000019812,0.0000019823,0.0000019836, -0.0000019851,0.0000019868,0.0000019890,0.0000019913,0.0000019937, -0.0000019966,0.0000019994,0.0000020021,0.0000020048,0.0000020073, -0.0000020094,0.0000020108,0.0000020116,0.0000020116,0.0000020111, -0.0000020106,0.0000020100,0.0000020089,0.0000020078,0.0000020070, -0.0000020069,0.0000020072,0.0000020081,0.0000020088,0.0000020090, -0.0000020087,0.0000020077,0.0000020062,0.0000020051,0.0000020043, -0.0000020038,0.0000020041,0.0000020047,0.0000020050,0.0000020053, -0.0000020055,0.0000020060,0.0000020067,0.0000020066,0.0000020058, -0.0000020044,0.0000020026,0.0000020006,0.0000019987,0.0000019969, -0.0000019964,0.0000019965,0.0000019970,0.0000019970,0.0000019984, -0.0000019989,0.0000019972,0.0000019936,0.0000019892,0.0000019842, -0.0000019788,0.0000019753,0.0000019746,0.0000019747,0.0000019780, -0.0000019844,0.0000019914,0.0000019979,0.0000020035,0.0000020086, -0.0000020126,0.0000020165,0.0000020198,0.0000020221,0.0000020246, -0.0000020275,0.0000020310,0.0000020347,0.0000020381,0.0000020414, -0.0000020448,0.0000020469,0.0000020463,0.0000020457,0.0000020440, -0.0000020406,0.0000020376,0.0000020351,0.0000020332,0.0000020317, -0.0000020314,0.0000020320,0.0000020333,0.0000020349,0.0000020368, -0.0000020383,0.0000020385,0.0000020382,0.0000020376,0.0000020367, -0.0000020360,0.0000020358,0.0000020357,0.0000020358,0.0000020358, -0.0000020357,0.0000020346,0.0000020327,0.0000020306,0.0000020289, -0.0000020279,0.0000020276,0.0000020283,0.0000020296,0.0000020307, -0.0000020317,0.0000020324,0.0000020326,0.0000020323,0.0000020314, -0.0000020305,0.0000020298,0.0000020292,0.0000020285,0.0000020278, -0.0000020269,0.0000020261,0.0000020257,0.0000020253,0.0000020251, -0.0000020254,0.0000020260,0.0000020275,0.0000020297,0.0000020323, -0.0000020340,0.0000020346,0.0000020347,0.0000020345,0.0000020341, -0.0000020337,0.0000020332,0.0000020334,0.0000020337,0.0000020343, -0.0000020344,0.0000020348,0.0000020352,0.0000020353,0.0000020352, -0.0000020347,0.0000020342,0.0000020335,0.0000020326,0.0000020311, -0.0000020292,0.0000020270,0.0000020248,0.0000020223,0.0000020198, -0.0000020170,0.0000020142,0.0000020115,0.0000020090,0.0000020071, -0.0000020065,0.0000020064,0.0000020060,0.0000020050,0.0000020033, -0.0000020013,0.0000019991,0.0000019967,0.0000019946,0.0000019931, -0.0000019918,0.0000019903,0.0000019891,0.0000019882,0.0000019863, -0.0000019837,0.0000019808,0.0000019777,0.0000019749,0.0000019718, -0.0000019680,0.0000019641,0.0000019600,0.0000019561,0.0000019524, -0.0000019492,0.0000019460,0.0000019418,0.0000019373,0.0000019333, -0.0000019291,0.0000019240,0.0000019190,0.0000019150,0.0000019123, -0.0000019117,0.0000019120,0.0000019122,0.0000019120,0.0000019113, -0.0000019103,0.0000019096,0.0000019094,0.0000019089,0.0000019090, -0.0000019099,0.0000019105,0.0000019129,0.0000019152,0.0000019175, -0.0000019192,0.0000019203,0.0000019202,0.0000019186,0.0000019154, -0.0000019107,0.0000019046,0.0000018973,0.0000018898,0.0000018831, -0.0000018778,0.0000018738,0.0000018708,0.0000018693,0.0000018684, -0.0000018681,0.0000018690,0.0000018706,0.0000018720,0.0000018734, -0.0000018746,0.0000018761,0.0000018782,0.0000018805,0.0000018827, -0.0000018850,0.0000018876,0.0000018905,0.0000018931,0.0000018953, -0.0000018975,0.0000019002,0.0000019041,0.0000019090,0.0000019146, -0.0000019208,0.0000019272,0.0000019334,0.0000019382,0.0000019398, -0.0000019408,0.0000019394,0.0000019363,0.0000019330,0.0000019298, -0.0000019267,0.0000019241,0.0000019218,0.0000019204,0.0000019195, -0.0000019195,0.0000019202,0.0000019219,0.0000019244,0.0000019269, -0.0000019297,0.0000019329,0.0000019360,0.0000019385,0.0000019399, -0.0000019389,0.0000019364,0.0000019326,0.0000019280,0.0000019234, -0.0000019201,0.0000019194,0.0000019202,0.0000019220,0.0000019241, -0.0000019263,0.0000019283,0.0000019307,0.0000019333,0.0000019358, -0.0000019380,0.0000019391,0.0000019395,0.0000019405,0.0000019418, -0.0000019423,0.0000019418,0.0000019403,0.0000019375,0.0000019337, -0.0000019305,0.0000019285,0.0000019287,0.0000019312,0.0000019333, -0.0000019348,0.0000019357,0.0000019363,0.0000019375,0.0000019392, -0.0000019409,0.0000019424,0.0000019444,0.0000019462,0.0000019470, -0.0000019464,0.0000019436,0.0000019388,0.0000019338,0.0000019300, -0.0000019279,0.0000019273,0.0000019274,0.0000019287,0.0000019307, -0.0000019325,0.0000019358,0.0000019403,0.0000019445,0.0000019475, -0.0000019497,0.0000019510,0.0000019507,0.0000019481,0.0000019436, -0.0000019385,0.0000019327,0.0000019273,0.0000019232,0.0000019203, -0.0000019181,0.0000019170,0.0000019164,0.0000019147,0.0000019113, -0.0000019071,0.0000019042,0.0000019035,0.0000019050,0.0000019067, -0.0000019067,0.0000019042,0.0000018993,0.0000018940,0.0000018905, -0.0000018888,0.0000018880,0.0000018870,0.0000018851,0.0000018827, -0.0000018803,0.0000018783,0.0000018785,0.0000018798,0.0000018796, -0.0000018760,0.0000018703,0.0000018631,0.0000018562,0.0000018512, -0.0000018485,0.0000018462,0.0000018443,0.0000018437,0.0000018439, -0.0000018451,0.0000018471,0.0000018494,0.0000018507,0.0000018507, -0.0000018497,0.0000018486,0.0000018470,0.0000018452,0.0000018426, -0.0000018395,0.0000018390,0.0000018419,0.0000018457,0.0000018478, -0.0000018488,0.0000018487,0.0000018476,0.0000018447,0.0000018409, -0.0000018378,0.0000018358,0.0000018350,0.0000018342,0.0000018332, -0.0000018324,0.0000018319,0.0000018321,0.0000018332,0.0000018346, -0.0000018361,0.0000018372,0.0000018376,0.0000018378,0.0000018379, -0.0000018374,0.0000018366,0.0000018350,0.0000018321,0.0000018286, -0.0000018244,0.0000018203,0.0000018167,0.0000018136,0.0000018106, -0.0000018079,0.0000018056,0.0000018039,0.0000018027,0.0000018021, -0.0000018021,0.0000018025,0.0000018032,0.0000018040,0.0000018048, -0.0000018055,0.0000018059,0.0000018061,0.0000018063,0.0000018067, -0.0000018076,0.0000018089,0.0000018105,0.0000018125,0.0000018149, -0.0000018173,0.0000018198,0.0000018225,0.0000018257,0.0000018298, -0.0000018348,0.0000018406,0.0000018471,0.0000018533,0.0000018586, -0.0000018631,0.0000018666,0.0000018701,0.0000018750,0.0000018823, -0.0000018927,0.0000019053,0.0000019192,0.0000019333,0.0000019457, -0.0000019558,0.0000019626,0.0000019640,0.0000019611,0.0000019601, -0.0000019566,0.0000019523,0.0000019489,0.0000019459,0.0000019435, -0.0000019404,0.0000019363,0.0000019319,0.0000019276,0.0000019248, -0.0000019238,0.0000019241,0.0000019246,0.0000019248,0.0000019236, -0.0000019211,0.0000019185,0.0000019166,0.0000019155,0.0000019149, -0.0000019141,0.0000019121,0.0000019087,0.0000019040,0.0000018987, -0.0000018941,0.0000018907,0.0000018879,0.0000018846,0.0000018805, -0.0000018766,0.0000018739,0.0000018725,0.0000018726,0.0000018735, -0.0000018739,0.0000018737,0.0000018733,0.0000018729,0.0000018720, -0.0000018709,0.0000018694,0.0000018682,0.0000018649,0.0000018578, -0.0000018482,0.0000018402,0.0000018383,0.0000018405,0.0000018457, -0.0000018503,0.0000018531,0.0000018547,0.0000018559,0.0000018567, -0.0000018569,0.0000018567,0.0000018553,0.0000018529,0.0000018499, -0.0000018466,0.0000018429,0.0000018390,0.0000018353,0.0000018318, -0.0000018287,0.0000018260,0.0000018241,0.0000018229,0.0000018227, -0.0000018231,0.0000018237,0.0000018241,0.0000018249,0.0000018269, -0.0000018299,0.0000018326,0.0000018350,0.0000018366,0.0000018365, -0.0000018326,0.0000018242,0.0000018144,0.0000018073,0.0000018043, -0.0000018034,0.0000018036,0.0000018064,0.0000018104,0.0000018147, -0.0000018187,0.0000018231,0.0000018282,0.0000018333,0.0000018379, -0.0000018415,0.0000018444,0.0000018464,0.0000018473,0.0000018473, -0.0000018464,0.0000018452,0.0000018433,0.0000018410,0.0000018384, -0.0000018357,0.0000018330,0.0000018305,0.0000018277,0.0000018243, -0.0000018203,0.0000018159,0.0000018113,0.0000018068,0.0000018030, -0.0000017999,0.0000017975,0.0000017958,0.0000017950,0.0000017950, -0.0000017960,0.0000017981,0.0000018012,0.0000018052,0.0000018102, -0.0000018158,0.0000018215,0.0000018264,0.0000018303,0.0000018341, -0.0000018391,0.0000018460,0.0000018547,0.0000018625,0.0000018662, -0.0000018663,0.0000018652,0.0000018643,0.0000018628,0.0000018597, -0.0000018570,0.0000018565,0.0000018567,0.0000018562,0.0000018546, -0.0000018526,0.0000018502,0.0000018475,0.0000018445,0.0000018424, -0.0000018418,0.0000018423,0.0000018434,0.0000018464,0.0000018506, -0.0000018545,0.0000018577,0.0000018604,0.0000018630,0.0000018650, -0.0000018656,0.0000018635,0.0000018585,0.0000018524,0.0000018470, -0.0000018442,0.0000018458,0.0000018502,0.0000018579,0.0000018669, -0.0000018707,0.0000018647,0.0000018633,0.0000018736,0.0000018737, -0.0000018657,0.0000018651,0.0000018703,0.0000018726,0.0000018748, -0.0000018890,0.0000018953,0.0000018885,0.0000018836,0.0000018835, -0.0000018845,0.0000018850,0.0000018851,0.0000018798,0.0000018681, -0.0000018579,0.0000018522,0.0000018491,0.0000018486,0.0000018551, -0.0000018671,0.0000018785,0.0000018855,0.0000018899,0.0000018935, -0.0000018947,0.0000018927,0.0000018884,0.0000018854,0.0000018848, -0.0000018864,0.0000018888,0.0000018915,0.0000018942,0.0000018958, -0.0000018961,0.0000018953,0.0000018953,0.0000018989,0.0000019054, -0.0000019081,0.0000018970,0.0000018704,0.0000018458,0.0000018350, -0.0000018328,0.0000018319,0.0000018318,0.0000018332,0.0000018368, -0.0000018426,0.0000018506,0.0000018602,0.0000018706,0.0000018795, -0.0000018876,0.0000018904,0.0000018888,0.0000018858,0.0000018809, -0.0000018758,0.0000018723,0.0000018721,0.0000018748,0.0000018780, -0.0000018815,0.0000018854,0.0000018878,0.0000018893,0.0000018898, -0.0000018908,0.0000018923,0.0000018934,0.0000018943,0.0000018953, -0.0000018959,0.0000018965,0.0000018959,0.0000018920,0.0000018835, -0.0000018694,0.0000018529,0.0000018388,0.0000018315,0.0000018301, -0.0000018308,0.0000018315,0.0000018314,0.0000018296,0.0000018263, -0.0000018218,0.0000018161,0.0000018088,0.0000018007,0.0000017943, -0.0000017911,0.0000017916,0.0000017949,0.0000017984,0.0000018018, -0.0000018045,0.0000018067,0.0000018083,0.0000018092,0.0000018081, -0.0000018072,0.0000018055,0.0000018037,0.0000018024,0.0000018020, -0.0000018020,0.0000018020,0.0000018018,0.0000018014,0.0000018006, -0.0000017995,0.0000017980,0.0000017962,0.0000017943,0.0000017922, -0.0000017902,0.0000017882,0.0000017864,0.0000017849,0.0000017838, -0.0000017832,0.0000017830,0.0000017832,0.0000017841,0.0000017856, -0.0000017878,0.0000017906,0.0000017935,0.0000017965,0.0000017992, -0.0000018016,0.0000018037,0.0000018053,0.0000018063,0.0000018067, -0.0000018073,0.0000018079,0.0000018085,0.0000018087,0.0000018086, -0.0000018078,0.0000018062,0.0000018044,0.0000018032,0.0000018023, -0.0000018018,0.0000018015,0.0000018012,0.0000018009,0.0000018007, -0.0000018009,0.0000018014,0.0000018023,0.0000018032,0.0000018042, -0.0000018053,0.0000018058,0.0000018064,0.0000018193,0.0000018190, -0.0000018183,0.0000018174,0.0000018163,0.0000018149,0.0000018127, -0.0000018109,0.0000018096,0.0000018094,0.0000018092,0.0000018091, -0.0000018085,0.0000018090,0.0000018101,0.0000018115,0.0000018129, -0.0000018142,0.0000018150,0.0000018154,0.0000018152,0.0000018144, -0.0000018132,0.0000018119,0.0000018108,0.0000018103,0.0000018104, -0.0000018113,0.0000018122,0.0000018132,0.0000018129,0.0000018119, -0.0000018101,0.0000018079,0.0000018051,0.0000018020,0.0000017993, -0.0000017964,0.0000017930,0.0000017898,0.0000017872,0.0000017854, -0.0000017861,0.0000017891,0.0000017942,0.0000018002,0.0000018066, -0.0000018132,0.0000018202,0.0000018273,0.0000018335,0.0000018382, -0.0000018396,0.0000018390,0.0000018385,0.0000018376,0.0000018365, -0.0000018351,0.0000018335,0.0000018320,0.0000018308,0.0000018299, -0.0000018290,0.0000018281,0.0000018275,0.0000018273,0.0000018278, -0.0000018290,0.0000018310,0.0000018330,0.0000018348,0.0000018362, -0.0000018371,0.0000018377,0.0000018378,0.0000018372,0.0000018354, -0.0000018322,0.0000018273,0.0000018213,0.0000018154,0.0000018102, -0.0000018068,0.0000018059,0.0000018057,0.0000018048,0.0000018014, -0.0000017959,0.0000017905,0.0000017865,0.0000017848,0.0000017858, -0.0000017895,0.0000017956,0.0000018033,0.0000018114,0.0000018183, -0.0000018227,0.0000018249,0.0000018266,0.0000018303,0.0000018373, -0.0000018464,0.0000018542,0.0000018580,0.0000018583,0.0000018580, -0.0000018590,0.0000018605,0.0000018609,0.0000018599,0.0000018578, -0.0000018556,0.0000018538,0.0000018524,0.0000018516,0.0000018515, -0.0000018517,0.0000018517,0.0000018513,0.0000018505,0.0000018491, -0.0000018474,0.0000018456,0.0000018439,0.0000018427,0.0000018417, -0.0000018410,0.0000018405,0.0000018400,0.0000018397,0.0000018395, -0.0000018389,0.0000018376,0.0000018360,0.0000018342,0.0000018321, -0.0000018296,0.0000018273,0.0000018259,0.0000018250,0.0000018244, -0.0000018243,0.0000018246,0.0000018251,0.0000018255,0.0000018258, -0.0000018260,0.0000018261,0.0000018259,0.0000018251,0.0000018237, -0.0000018215,0.0000018183,0.0000018142,0.0000018092,0.0000018035, -0.0000017974,0.0000017908,0.0000017841,0.0000017775,0.0000017718, -0.0000017673,0.0000017637,0.0000017610,0.0000017593,0.0000017584, -0.0000017579,0.0000017573,0.0000017565,0.0000017556,0.0000017544, -0.0000017530,0.0000017512,0.0000017492,0.0000017469,0.0000017445, -0.0000017424,0.0000017408,0.0000017405,0.0000017414,0.0000017443, -0.0000017484,0.0000017533,0.0000017580,0.0000017620,0.0000017653, -0.0000017675,0.0000017685,0.0000017689,0.0000017687,0.0000017676, -0.0000017660,0.0000017645,0.0000017635,0.0000017633,0.0000017646, -0.0000017681,0.0000017730,0.0000017793,0.0000017865,0.0000017941, -0.0000018016,0.0000018082,0.0000018136,0.0000018177,0.0000018206, -0.0000018227,0.0000018241,0.0000018252,0.0000018259,0.0000018259, -0.0000018254,0.0000018244,0.0000018235,0.0000018219,0.0000018203, -0.0000018189,0.0000018176,0.0000018161,0.0000018145,0.0000018128, -0.0000018110,0.0000018098,0.0000018082,0.0000018075,0.0000018077, -0.0000018084,0.0000018099,0.0000018117,0.0000018138,0.0000018159, -0.0000018178,0.0000018196,0.0000018210,0.0000018214,0.0000018213, -0.0000018209,0.0000018196,0.0000018168,0.0000018114,0.0000018044, -0.0000017965,0.0000017882,0.0000017827,0.0000017823,0.0000017832, -0.0000017862,0.0000017888,0.0000017907,0.0000017927,0.0000017954, -0.0000017986,0.0000018011,0.0000018016,0.0000018008,0.0000017994, -0.0000017976,0.0000017950,0.0000017915,0.0000017878,0.0000017848, -0.0000017831,0.0000017829,0.0000017833,0.0000017850,0.0000017878, -0.0000017910,0.0000017947,0.0000018001,0.0000018076,0.0000018170, -0.0000018266,0.0000018341,0.0000018376,0.0000018374,0.0000018351, -0.0000018319,0.0000018290,0.0000018273,0.0000018275,0.0000018292, -0.0000018319,0.0000018355,0.0000018405,0.0000018459,0.0000018496, -0.0000018524,0.0000018603,0.0000018772,0.0000018960,0.0000019119, -0.0000019266,0.0000019394,0.0000019520,0.0000019603,0.0000019607, -0.0000019640,0.0000019709,0.0000019765,0.0000019853,0.0000019945, -0.0000019973,0.0000019947,0.0000019902,0.0000019894,0.0000019930, -0.0000019961,0.0000019973,0.0000019971,0.0000019953,0.0000019937, -0.0000019920,0.0000019895,0.0000019874,0.0000019869,0.0000019880, -0.0000019900,0.0000019927,0.0000019959,0.0000019997,0.0000020039, -0.0000020073,0.0000020083,0.0000020082,0.0000020064,0.0000020045, -0.0000020036,0.0000020039,0.0000020049,0.0000020059,0.0000020064, -0.0000020061,0.0000020051,0.0000020036,0.0000020019,0.0000020003, -0.0000019987,0.0000019970,0.0000019952,0.0000019935,0.0000019918, -0.0000019901,0.0000019886,0.0000019874,0.0000019862,0.0000019850, -0.0000019839,0.0000019828,0.0000019817,0.0000019808,0.0000019799, -0.0000019788,0.0000019777,0.0000019765,0.0000019755,0.0000019747, -0.0000019741,0.0000019736,0.0000019733,0.0000019730,0.0000019727, -0.0000019725,0.0000019723,0.0000019720,0.0000019717,0.0000019713, -0.0000019710,0.0000019706,0.0000019703,0.0000019699,0.0000019689, -0.0000019678,0.0000019665,0.0000019649,0.0000019636,0.0000019623, -0.0000019611,0.0000019595,0.0000019578,0.0000019562,0.0000019548, -0.0000019535,0.0000019529,0.0000019530,0.0000019537,0.0000019543, -0.0000019551,0.0000019555,0.0000019555,0.0000019553,0.0000019550, -0.0000019548,0.0000019549,0.0000019551,0.0000019558,0.0000019565, -0.0000019569,0.0000019573,0.0000019582,0.0000019587,0.0000019591, -0.0000019597,0.0000019597,0.0000019598,0.0000019594,0.0000019587, -0.0000019577,0.0000019561,0.0000019546,0.0000019532,0.0000019520, -0.0000019509,0.0000019496,0.0000019480,0.0000019462,0.0000019444, -0.0000019425,0.0000019405,0.0000019387,0.0000019372,0.0000019356, -0.0000019340,0.0000019327,0.0000019310,0.0000019290,0.0000019271, -0.0000019254,0.0000019236,0.0000019215,0.0000019193,0.0000019175, -0.0000019161,0.0000019153,0.0000019153,0.0000019155,0.0000019156, -0.0000019155,0.0000019156,0.0000019156,0.0000019148,0.0000019137, -0.0000019122,0.0000019107,0.0000019090,0.0000019071,0.0000019055, -0.0000019039,0.0000019021,0.0000019005,0.0000018995,0.0000018988, -0.0000018986,0.0000018988,0.0000018992,0.0000018997,0.0000019002, -0.0000019007,0.0000019013,0.0000019021,0.0000019028,0.0000019033, -0.0000019035,0.0000019036,0.0000019034,0.0000019031,0.0000019030, -0.0000019032,0.0000019038,0.0000019043,0.0000019048,0.0000019055, -0.0000019066,0.0000019076,0.0000019087,0.0000019100,0.0000019119, -0.0000019139,0.0000019158,0.0000019176,0.0000019193,0.0000019209, -0.0000019219,0.0000019226,0.0000019231,0.0000019234,0.0000019239, -0.0000019245,0.0000019252,0.0000019259,0.0000019268,0.0000019277, -0.0000019285,0.0000019291,0.0000019298,0.0000019304,0.0000019308, -0.0000019312,0.0000019317,0.0000019323,0.0000019332,0.0000019343, -0.0000019357,0.0000019376,0.0000019399,0.0000019426,0.0000019456, -0.0000019489,0.0000019521,0.0000019553,0.0000019586,0.0000019616, -0.0000019647,0.0000019677,0.0000019703,0.0000019723,0.0000019734, -0.0000019740,0.0000019738,0.0000019734,0.0000019727,0.0000019721, -0.0000019712,0.0000019705,0.0000019699,0.0000019695,0.0000019696, -0.0000019701,0.0000019709,0.0000019723,0.0000019739,0.0000019757, -0.0000019773,0.0000019788,0.0000019802,0.0000019817,0.0000019833, -0.0000019850,0.0000019871,0.0000019896,0.0000019922,0.0000019950, -0.0000019979,0.0000020006,0.0000020026,0.0000020040,0.0000020052, -0.0000020057,0.0000020060,0.0000020057,0.0000020051,0.0000020044, -0.0000020029,0.0000020016,0.0000020005,0.0000020002,0.0000020003, -0.0000020002,0.0000020000,0.0000019998,0.0000019990,0.0000019979, -0.0000019970,0.0000019965,0.0000019966,0.0000019973,0.0000019983, -0.0000019994,0.0000020004,0.0000020017,0.0000020031,0.0000020041, -0.0000020045,0.0000020041,0.0000020029,0.0000020008,0.0000019976, -0.0000019948,0.0000019920,0.0000019900,0.0000019895,0.0000019903, -0.0000019929,0.0000019965,0.0000019985,0.0000020001,0.0000019996, -0.0000019971,0.0000019929,0.0000019883,0.0000019836,0.0000019792, -0.0000019782,0.0000019777,0.0000019790,0.0000019818,0.0000019863, -0.0000019920,0.0000019982,0.0000020046,0.0000020108,0.0000020162, -0.0000020203,0.0000020225,0.0000020232,0.0000020241,0.0000020249, -0.0000020264,0.0000020286,0.0000020310,0.0000020339,0.0000020374, -0.0000020403,0.0000020403,0.0000020396,0.0000020395,0.0000020372, -0.0000020344,0.0000020323,0.0000020308,0.0000020301,0.0000020295, -0.0000020300,0.0000020310,0.0000020321,0.0000020331,0.0000020340, -0.0000020346,0.0000020346,0.0000020350,0.0000020355,0.0000020358, -0.0000020359,0.0000020347,0.0000020329,0.0000020308,0.0000020290, -0.0000020279,0.0000020269,0.0000020264,0.0000020271,0.0000020288, -0.0000020308,0.0000020325,0.0000020334,0.0000020340,0.0000020336, -0.0000020324,0.0000020311,0.0000020306,0.0000020304,0.0000020300, -0.0000020292,0.0000020280,0.0000020271,0.0000020266,0.0000020262, -0.0000020258,0.0000020257,0.0000020259,0.0000020269,0.0000020292, -0.0000020317,0.0000020334,0.0000020344,0.0000020346,0.0000020347, -0.0000020346,0.0000020341,0.0000020344,0.0000020349,0.0000020353, -0.0000020353,0.0000020358,0.0000020362,0.0000020359,0.0000020356, -0.0000020356,0.0000020359,0.0000020359,0.0000020351,0.0000020344, -0.0000020335,0.0000020324,0.0000020311,0.0000020294,0.0000020279, -0.0000020259,0.0000020237,0.0000020209,0.0000020179,0.0000020152, -0.0000020130,0.0000020115,0.0000020113,0.0000020115,0.0000020113, -0.0000020103,0.0000020084,0.0000020059,0.0000020031,0.0000020002, -0.0000019977,0.0000019954,0.0000019934,0.0000019922,0.0000019902, -0.0000019878,0.0000019844,0.0000019805,0.0000019768,0.0000019737, -0.0000019707,0.0000019679,0.0000019652,0.0000019626,0.0000019603, -0.0000019586,0.0000019569,0.0000019547,0.0000019514,0.0000019479, -0.0000019435,0.0000019383,0.0000019325,0.0000019267,0.0000019217, -0.0000019184,0.0000019166,0.0000019156,0.0000019143,0.0000019123, -0.0000019105,0.0000019084,0.0000019071,0.0000019055,0.0000019047, -0.0000019048,0.0000019060,0.0000019082,0.0000019112,0.0000019151, -0.0000019194,0.0000019235,0.0000019255,0.0000019272,0.0000019285, -0.0000019277,0.0000019251,0.0000019199,0.0000019126,0.0000019044, -0.0000018963,0.0000018882,0.0000018809,0.0000018749,0.0000018703, -0.0000018678,0.0000018679,0.0000018681,0.0000018691,0.0000018702, -0.0000018714,0.0000018728,0.0000018747,0.0000018768,0.0000018786, -0.0000018800,0.0000018813,0.0000018829,0.0000018844,0.0000018860, -0.0000018881,0.0000018903,0.0000018931,0.0000018963,0.0000019005, -0.0000019058,0.0000019119,0.0000019191,0.0000019268,0.0000019338, -0.0000019392,0.0000019412,0.0000019417,0.0000019394,0.0000019359, -0.0000019308,0.0000019254,0.0000019210,0.0000019180,0.0000019155, -0.0000019143,0.0000019140,0.0000019149,0.0000019167,0.0000019187, -0.0000019209,0.0000019231,0.0000019252,0.0000019275,0.0000019300, -0.0000019321,0.0000019335,0.0000019336,0.0000019321,0.0000019286, -0.0000019254,0.0000019218,0.0000019197,0.0000019188,0.0000019195, -0.0000019220,0.0000019250,0.0000019280,0.0000019300,0.0000019309, -0.0000019311,0.0000019310,0.0000019326,0.0000019354,0.0000019387, -0.0000019411,0.0000019426,0.0000019432,0.0000019416,0.0000019384, -0.0000019341,0.0000019308,0.0000019296,0.0000019300,0.0000019298, -0.0000019291,0.0000019294,0.0000019306,0.0000019325,0.0000019345, -0.0000019364,0.0000019379,0.0000019391,0.0000019397,0.0000019396, -0.0000019385,0.0000019357,0.0000019315,0.0000019277,0.0000019247, -0.0000019234,0.0000019232,0.0000019238,0.0000019264,0.0000019293, -0.0000019320,0.0000019360,0.0000019406,0.0000019445,0.0000019469, -0.0000019480,0.0000019475,0.0000019454,0.0000019420,0.0000019380, -0.0000019340,0.0000019298,0.0000019259,0.0000019219,0.0000019188, -0.0000019161,0.0000019137,0.0000019114,0.0000019093,0.0000019062, -0.0000019023,0.0000018994,0.0000018992,0.0000019017,0.0000019038, -0.0000019038,0.0000019008,0.0000018955,0.0000018905,0.0000018874, -0.0000018856,0.0000018838,0.0000018819,0.0000018800,0.0000018779, -0.0000018752,0.0000018731,0.0000018728,0.0000018742,0.0000018752, -0.0000018733,0.0000018688,0.0000018628,0.0000018562,0.0000018507, -0.0000018473,0.0000018446,0.0000018430,0.0000018432,0.0000018448, -0.0000018470,0.0000018494,0.0000018519,0.0000018534,0.0000018529, -0.0000018511,0.0000018487,0.0000018468,0.0000018454,0.0000018424, -0.0000018381,0.0000018360,0.0000018378,0.0000018416,0.0000018448, -0.0000018463,0.0000018464,0.0000018459,0.0000018438,0.0000018415, -0.0000018397,0.0000018384,0.0000018372,0.0000018351,0.0000018330, -0.0000018313,0.0000018291,0.0000018282,0.0000018282,0.0000018291, -0.0000018305,0.0000018319,0.0000018329,0.0000018340,0.0000018353, -0.0000018364,0.0000018364,0.0000018354,0.0000018335,0.0000018307, -0.0000018269,0.0000018227,0.0000018187,0.0000018150,0.0000018112, -0.0000018076,0.0000018044,0.0000018022,0.0000018006,0.0000017995, -0.0000017991,0.0000017990,0.0000017993,0.0000017997,0.0000018003, -0.0000018008,0.0000018010,0.0000018011,0.0000018010,0.0000018011, -0.0000018016,0.0000018022,0.0000018031,0.0000018046,0.0000018064, -0.0000018086,0.0000018112,0.0000018140,0.0000018173,0.0000018211, -0.0000018256,0.0000018308,0.0000018368,0.0000018432,0.0000018496, -0.0000018552,0.0000018598,0.0000018635,0.0000018672,0.0000018717, -0.0000018781,0.0000018864,0.0000018966,0.0000019085,0.0000019210, -0.0000019333,0.0000019447,0.0000019521,0.0000019574,0.0000019585, -0.0000019569,0.0000019541,0.0000019516,0.0000019490,0.0000019472, -0.0000019458,0.0000019441,0.0000019406,0.0000019360,0.0000019312, -0.0000019273,0.0000019256,0.0000019251,0.0000019252,0.0000019243, -0.0000019222,0.0000019194,0.0000019169,0.0000019153,0.0000019143, -0.0000019135,0.0000019120,0.0000019092,0.0000019050,0.0000018999, -0.0000018950,0.0000018911,0.0000018879,0.0000018845,0.0000018804, -0.0000018757,0.0000018717,0.0000018691,0.0000018688,0.0000018692, -0.0000018695,0.0000018697,0.0000018702,0.0000018707,0.0000018704, -0.0000018691,0.0000018680,0.0000018671,0.0000018657,0.0000018611, -0.0000018529,0.0000018448,0.0000018408,0.0000018418,0.0000018466, -0.0000018521,0.0000018552,0.0000018561,0.0000018561,0.0000018562, -0.0000018563,0.0000018559,0.0000018545,0.0000018523,0.0000018498, -0.0000018468,0.0000018432,0.0000018392,0.0000018354,0.0000018326, -0.0000018306,0.0000018292,0.0000018287,0.0000018286,0.0000018285, -0.0000018287,0.0000018288,0.0000018293,0.0000018308,0.0000018330, -0.0000018354,0.0000018377,0.0000018396,0.0000018405,0.0000018391, -0.0000018333,0.0000018233,0.0000018135,0.0000018076,0.0000018055, -0.0000018054,0.0000018074,0.0000018117,0.0000018167,0.0000018214, -0.0000018263,0.0000018316,0.0000018375,0.0000018427,0.0000018471, -0.0000018507,0.0000018535,0.0000018553,0.0000018560,0.0000018558, -0.0000018551,0.0000018538,0.0000018520,0.0000018497,0.0000018471, -0.0000018447,0.0000018425,0.0000018401,0.0000018373,0.0000018337, -0.0000018296,0.0000018252,0.0000018207,0.0000018165,0.0000018131, -0.0000018104,0.0000018087,0.0000018080,0.0000018079,0.0000018087, -0.0000018105,0.0000018133,0.0000018167,0.0000018202,0.0000018241, -0.0000018279,0.0000018314,0.0000018347,0.0000018388,0.0000018443, -0.0000018514,0.0000018594,0.0000018649,0.0000018663,0.0000018655, -0.0000018641,0.0000018625,0.0000018598,0.0000018568,0.0000018555, -0.0000018554,0.0000018547,0.0000018530,0.0000018508,0.0000018486, -0.0000018462,0.0000018441,0.0000018429,0.0000018424,0.0000018427, -0.0000018434,0.0000018454,0.0000018487,0.0000018525,0.0000018566, -0.0000018605,0.0000018636,0.0000018652,0.0000018648,0.0000018612, -0.0000018549,0.0000018484,0.0000018438,0.0000018422,0.0000018444, -0.0000018490,0.0000018552,0.0000018635,0.0000018697,0.0000018666, -0.0000018624,0.0000018721,0.0000018761,0.0000018681,0.0000018650, -0.0000018711,0.0000018761,0.0000018737,0.0000018773,0.0000018916, -0.0000018940,0.0000018866,0.0000018826,0.0000018828,0.0000018840, -0.0000018837,0.0000018781,0.0000018674,0.0000018581,0.0000018528, -0.0000018506,0.0000018542,0.0000018661,0.0000018791,0.0000018858, -0.0000018885,0.0000018915,0.0000018936,0.0000018923,0.0000018880, -0.0000018851,0.0000018849,0.0000018869,0.0000018907,0.0000018942, -0.0000018972,0.0000018996,0.0000019015,0.0000019024,0.0000019015, -0.0000018993,0.0000018998,0.0000019042,0.0000019029,0.0000018840, -0.0000018533,0.0000018308,0.0000018234,0.0000018217,0.0000018201, -0.0000018191,0.0000018194,0.0000018212,0.0000018241,0.0000018279, -0.0000018328,0.0000018392,0.0000018475,0.0000018575,0.0000018681, -0.0000018768,0.0000018827,0.0000018842,0.0000018805,0.0000018743, -0.0000018673,0.0000018608,0.0000018575,0.0000018579,0.0000018617, -0.0000018669,0.0000018723,0.0000018774,0.0000018815,0.0000018845, -0.0000018869,0.0000018890,0.0000018907,0.0000018922,0.0000018934, -0.0000018944,0.0000018944,0.0000018918,0.0000018891,0.0000018809, -0.0000018663,0.0000018500,0.0000018367,0.0000018308,0.0000018302, -0.0000018313,0.0000018324,0.0000018318,0.0000018291,0.0000018251, -0.0000018201,0.0000018147,0.0000018083,0.0000018014,0.0000017958, -0.0000017935,0.0000017938,0.0000017960,0.0000017983,0.0000018006, -0.0000018025,0.0000018041,0.0000018051,0.0000018055,0.0000018058, -0.0000018055,0.0000018051,0.0000018052,0.0000018058,0.0000018066, -0.0000018073,0.0000018077,0.0000018077,0.0000018073,0.0000018064, -0.0000018052,0.0000018038,0.0000018022,0.0000018006,0.0000017986, -0.0000017964,0.0000017944,0.0000017926,0.0000017912,0.0000017905, -0.0000017901,0.0000017901,0.0000017906,0.0000017920,0.0000017940, -0.0000017961,0.0000017980,0.0000018002,0.0000018022,0.0000018040, -0.0000018049,0.0000018051,0.0000018050,0.0000018051,0.0000018054, -0.0000018064,0.0000018075,0.0000018086,0.0000018093,0.0000018094, -0.0000018092,0.0000018091,0.0000018093,0.0000018097,0.0000018103, -0.0000018108,0.0000018112,0.0000018116,0.0000018122,0.0000018129, -0.0000018138,0.0000018148,0.0000018161,0.0000018175,0.0000018185, -0.0000018192,0.0000018335,0.0000018344,0.0000018347,0.0000018346, -0.0000018336,0.0000018320,0.0000018297,0.0000018272,0.0000018237, -0.0000018202,0.0000018170,0.0000018145,0.0000018116,0.0000018096, -0.0000018095,0.0000018101,0.0000018110,0.0000018118,0.0000018131, -0.0000018141,0.0000018147,0.0000018146,0.0000018138,0.0000018123, -0.0000018105,0.0000018090,0.0000018078,0.0000018076,0.0000018078, -0.0000018087,0.0000018096,0.0000018097,0.0000018090,0.0000018078, -0.0000018059,0.0000018036,0.0000018014,0.0000017993,0.0000017972, -0.0000017945,0.0000017909,0.0000017867,0.0000017831,0.0000017809, -0.0000017811,0.0000017841,0.0000017895,0.0000017954,0.0000018012, -0.0000018071,0.0000018138,0.0000018214,0.0000018287,0.0000018344, -0.0000018383,0.0000018390,0.0000018390,0.0000018386,0.0000018376, -0.0000018360,0.0000018344,0.0000018329,0.0000018318,0.0000018310, -0.0000018305,0.0000018301,0.0000018300,0.0000018305,0.0000018317, -0.0000018335,0.0000018358,0.0000018378,0.0000018391,0.0000018394, -0.0000018388,0.0000018378,0.0000018372,0.0000018366,0.0000018350, -0.0000018317,0.0000018267,0.0000018204,0.0000018139,0.0000018087, -0.0000018060,0.0000018050,0.0000018036,0.0000018003,0.0000017951, -0.0000017890,0.0000017840,0.0000017803,0.0000017797,0.0000017817, -0.0000017865,0.0000017937,0.0000018021,0.0000018100,0.0000018164, -0.0000018205,0.0000018231,0.0000018260,0.0000018315,0.0000018401, -0.0000018491,0.0000018548,0.0000018560,0.0000018558,0.0000018561, -0.0000018566,0.0000018560,0.0000018542,0.0000018522,0.0000018505, -0.0000018491,0.0000018482,0.0000018482,0.0000018486,0.0000018487, -0.0000018486,0.0000018478,0.0000018465,0.0000018448,0.0000018428, -0.0000018409,0.0000018394,0.0000018383,0.0000018375,0.0000018366, -0.0000018355,0.0000018345,0.0000018338,0.0000018332,0.0000018324, -0.0000018312,0.0000018297,0.0000018280,0.0000018259,0.0000018239, -0.0000018224,0.0000018213,0.0000018205,0.0000018201,0.0000018200, -0.0000018199,0.0000018194,0.0000018184,0.0000018171,0.0000018156, -0.0000018136,0.0000018111,0.0000018079,0.0000018042,0.0000017999, -0.0000017953,0.0000017904,0.0000017854,0.0000017805,0.0000017755, -0.0000017708,0.0000017667,0.0000017634,0.0000017608,0.0000017586, -0.0000017570,0.0000017560,0.0000017555,0.0000017550,0.0000017546, -0.0000017540,0.0000017534,0.0000017526,0.0000017515,0.0000017501, -0.0000017483,0.0000017463,0.0000017440,0.0000017416,0.0000017394, -0.0000017377,0.0000017374,0.0000017389,0.0000017426,0.0000017475, -0.0000017528,0.0000017577,0.0000017620,0.0000017653,0.0000017673, -0.0000017683,0.0000017681,0.0000017670,0.0000017656,0.0000017640, -0.0000017620,0.0000017606,0.0000017597,0.0000017598,0.0000017611, -0.0000017636,0.0000017672,0.0000017720,0.0000017778,0.0000017840, -0.0000017899,0.0000017956,0.0000018007,0.0000018052,0.0000018089, -0.0000018120,0.0000018147,0.0000018168,0.0000018181,0.0000018190, -0.0000018193,0.0000018191,0.0000018188,0.0000018188,0.0000018174, -0.0000018163,0.0000018152,0.0000018143,0.0000018133,0.0000018121, -0.0000018106,0.0000018090,0.0000018076,0.0000018069,0.0000018062, -0.0000018059,0.0000018058,0.0000018060,0.0000018068,0.0000018082, -0.0000018099,0.0000018120,0.0000018145,0.0000018172,0.0000018192, -0.0000018195,0.0000018196,0.0000018182,0.0000018141,0.0000018072, -0.0000017988,0.0000017901,0.0000017851,0.0000017849,0.0000017858, -0.0000017880,0.0000017897,0.0000017915,0.0000017940,0.0000017966, -0.0000017983,0.0000017981,0.0000017966,0.0000017944,0.0000017917, -0.0000017883,0.0000017846,0.0000017814,0.0000017795,0.0000017791, -0.0000017801,0.0000017831,0.0000017868,0.0000017896,0.0000017917, -0.0000017939,0.0000017976,0.0000018040,0.0000018129,0.0000018218, -0.0000018279,0.0000018296,0.0000018283,0.0000018257,0.0000018234, -0.0000018232,0.0000018248,0.0000018275,0.0000018303,0.0000018335, -0.0000018379,0.0000018436,0.0000018477,0.0000018503,0.0000018590, -0.0000018770,0.0000018956,0.0000019112,0.0000019254,0.0000019376, -0.0000019500,0.0000019562,0.0000019567,0.0000019616,0.0000019683, -0.0000019742,0.0000019840,0.0000019924,0.0000019940,0.0000019906, -0.0000019873,0.0000019883,0.0000019920,0.0000019942,0.0000019952, -0.0000019948,0.0000019932,0.0000019920,0.0000019904,0.0000019876, -0.0000019848,0.0000019826,0.0000019817,0.0000019817,0.0000019826, -0.0000019844,0.0000019876,0.0000019923,0.0000019979,0.0000020030, -0.0000020062,0.0000020067,0.0000020060,0.0000020047,0.0000020036, -0.0000020033,0.0000020037,0.0000020040,0.0000020045,0.0000020048, -0.0000020050,0.0000020048,0.0000020040,0.0000020028,0.0000020012, -0.0000019991,0.0000019970,0.0000019947,0.0000019923,0.0000019902, -0.0000019883,0.0000019863,0.0000019844,0.0000019825,0.0000019807, -0.0000019790,0.0000019777,0.0000019767,0.0000019757,0.0000019746, -0.0000019735,0.0000019728,0.0000019726,0.0000019725,0.0000019725, -0.0000019725,0.0000019725,0.0000019725,0.0000019723,0.0000019721, -0.0000019718,0.0000019714,0.0000019710,0.0000019705,0.0000019699, -0.0000019690,0.0000019678,0.0000019662,0.0000019645,0.0000019624, -0.0000019604,0.0000019586,0.0000019569,0.0000019551,0.0000019535, -0.0000019519,0.0000019507,0.0000019501,0.0000019499,0.0000019506, -0.0000019523,0.0000019538,0.0000019554,0.0000019564,0.0000019566, -0.0000019567,0.0000019570,0.0000019572,0.0000019572,0.0000019568, -0.0000019578,0.0000019580,0.0000019574,0.0000019571,0.0000019573, -0.0000019572,0.0000019569,0.0000019565,0.0000019557,0.0000019545, -0.0000019532,0.0000019518,0.0000019500,0.0000019479,0.0000019459, -0.0000019438,0.0000019418,0.0000019398,0.0000019379,0.0000019357, -0.0000019335,0.0000019316,0.0000019298,0.0000019280,0.0000019265, -0.0000019253,0.0000019239,0.0000019224,0.0000019210,0.0000019194, -0.0000019174,0.0000019152,0.0000019130,0.0000019105,0.0000019075, -0.0000019042,0.0000019010,0.0000018979,0.0000018953,0.0000018933, -0.0000018915,0.0000018894,0.0000018872,0.0000018851,0.0000018833, -0.0000018809,0.0000018783,0.0000018757,0.0000018731,0.0000018702, -0.0000018674,0.0000018650,0.0000018628,0.0000018605,0.0000018585, -0.0000018570,0.0000018560,0.0000018556,0.0000018558,0.0000018564, -0.0000018574,0.0000018585,0.0000018599,0.0000018619,0.0000018644, -0.0000018672,0.0000018701,0.0000018730,0.0000018761,0.0000018789, -0.0000018816,0.0000018842,0.0000018872,0.0000018904,0.0000018932, -0.0000018958,0.0000018983,0.0000019007,0.0000019028,0.0000019044, -0.0000019060,0.0000019079,0.0000019099,0.0000019115,0.0000019128, -0.0000019141,0.0000019154,0.0000019163,0.0000019171,0.0000019176, -0.0000019181,0.0000019186,0.0000019193,0.0000019200,0.0000019207, -0.0000019215,0.0000019220,0.0000019225,0.0000019230,0.0000019236, -0.0000019240,0.0000019242,0.0000019243,0.0000019243,0.0000019243, -0.0000019247,0.0000019252,0.0000019262,0.0000019275,0.0000019293, -0.0000019315,0.0000019341,0.0000019369,0.0000019399,0.0000019431, -0.0000019466,0.0000019502,0.0000019537,0.0000019573,0.0000019605, -0.0000019634,0.0000019658,0.0000019677,0.0000019691,0.0000019700, -0.0000019703,0.0000019700,0.0000019694,0.0000019684,0.0000019673, -0.0000019662,0.0000019651,0.0000019643,0.0000019642,0.0000019646, -0.0000019659,0.0000019680,0.0000019702,0.0000019721,0.0000019738, -0.0000019752,0.0000019767,0.0000019785,0.0000019804,0.0000019826, -0.0000019850,0.0000019872,0.0000019897,0.0000019921,0.0000019945, -0.0000019961,0.0000019972,0.0000019978,0.0000019984,0.0000019989, -0.0000019991,0.0000019989,0.0000019983,0.0000019971,0.0000019956, -0.0000019943,0.0000019938,0.0000019937,0.0000019939,0.0000019943, -0.0000019946,0.0000019946,0.0000019941,0.0000019934,0.0000019929, -0.0000019928,0.0000019934,0.0000019947,0.0000019961,0.0000019977, -0.0000019992,0.0000020008,0.0000020022,0.0000020032,0.0000020033, -0.0000020025,0.0000020005,0.0000019975,0.0000019935,0.0000019895, -0.0000019868,0.0000019853,0.0000019856,0.0000019881,0.0000019915, -0.0000019948,0.0000019978,0.0000019986,0.0000019989,0.0000019975, -0.0000019948,0.0000019911,0.0000019875,0.0000019847,0.0000019823, -0.0000019814,0.0000019802,0.0000019808,0.0000019831,0.0000019876, -0.0000019935,0.0000019998,0.0000020059,0.0000020112,0.0000020158, -0.0000020188,0.0000020201,0.0000020200,0.0000020196,0.0000020195, -0.0000020203,0.0000020215,0.0000020232,0.0000020255,0.0000020294, -0.0000020334,0.0000020354,0.0000020347,0.0000020354,0.0000020345, -0.0000020330,0.0000020317,0.0000020302,0.0000020296,0.0000020285, -0.0000020280,0.0000020282,0.0000020289,0.0000020299,0.0000020315, -0.0000020334,0.0000020348,0.0000020350,0.0000020349,0.0000020339, -0.0000020321,0.0000020301,0.0000020282,0.0000020266,0.0000020259, -0.0000020262,0.0000020274,0.0000020293,0.0000020308,0.0000020321, -0.0000020328,0.0000020330,0.0000020326,0.0000020321,0.0000020320, -0.0000020319,0.0000020315,0.0000020306,0.0000020288,0.0000020269, -0.0000020257,0.0000020244,0.0000020236,0.0000020229,0.0000020225, -0.0000020231,0.0000020249,0.0000020269,0.0000020287,0.0000020301, -0.0000020314,0.0000020325,0.0000020326,0.0000020330,0.0000020337, -0.0000020344,0.0000020339,0.0000020340,0.0000020344,0.0000020338, -0.0000020335,0.0000020335,0.0000020337,0.0000020344,0.0000020346, -0.0000020346,0.0000020341,0.0000020338,0.0000020334,0.0000020330, -0.0000020321,0.0000020308,0.0000020296,0.0000020281,0.0000020262, -0.0000020238,0.0000020209,0.0000020178,0.0000020151,0.0000020136, -0.0000020133,0.0000020131,0.0000020130,0.0000020126,0.0000020115, -0.0000020097,0.0000020072,0.0000020042,0.0000020013,0.0000019995, -0.0000019976,0.0000019957,0.0000019931,0.0000019895,0.0000019852, -0.0000019810,0.0000019768,0.0000019731,0.0000019698,0.0000019668, -0.0000019640,0.0000019620,0.0000019603,0.0000019595,0.0000019583, -0.0000019564,0.0000019535,0.0000019499,0.0000019457,0.0000019404, -0.0000019352,0.0000019304,0.0000019268,0.0000019240,0.0000019216, -0.0000019186,0.0000019157,0.0000019125,0.0000019097,0.0000019071, -0.0000019050,0.0000019038,0.0000019037,0.0000019036,0.0000019052, -0.0000019079,0.0000019114,0.0000019156,0.0000019197,0.0000019230, -0.0000019262,0.0000019291,0.0000019301,0.0000019306,0.0000019292, -0.0000019256,0.0000019205,0.0000019133,0.0000019048,0.0000018959, -0.0000018869,0.0000018796,0.0000018746,0.0000018716,0.0000018700, -0.0000018698,0.0000018702,0.0000018704,0.0000018714,0.0000018730, -0.0000018751,0.0000018769,0.0000018782,0.0000018792,0.0000018799, -0.0000018808,0.0000018824,0.0000018839,0.0000018855,0.0000018877, -0.0000018905,0.0000018937,0.0000018979,0.0000019035,0.0000019106, -0.0000019182,0.0000019261,0.0000019335,0.0000019387,0.0000019414, -0.0000019413,0.0000019385,0.0000019334,0.0000019266,0.0000019201, -0.0000019149,0.0000019119,0.0000019096,0.0000019091,0.0000019103, -0.0000019117,0.0000019133,0.0000019150,0.0000019167,0.0000019181, -0.0000019194,0.0000019214,0.0000019240,0.0000019262,0.0000019277, -0.0000019286,0.0000019281,0.0000019271,0.0000019245,0.0000019211, -0.0000019186,0.0000019175,0.0000019182,0.0000019209,0.0000019239, -0.0000019262,0.0000019269,0.0000019271,0.0000019287,0.0000019309, -0.0000019333,0.0000019358,0.0000019387,0.0000019407,0.0000019411, -0.0000019394,0.0000019382,0.0000019372,0.0000019358,0.0000019340, -0.0000019308,0.0000019277,0.0000019249,0.0000019244,0.0000019249, -0.0000019263,0.0000019292,0.0000019327,0.0000019356,0.0000019370, -0.0000019367,0.0000019350,0.0000019318,0.0000019281,0.0000019253, -0.0000019229,0.0000019218,0.0000019216,0.0000019226,0.0000019253, -0.0000019283,0.0000019311,0.0000019342,0.0000019370,0.0000019387, -0.0000019390,0.0000019380,0.0000019363,0.0000019345,0.0000019328, -0.0000019314,0.0000019301,0.0000019288,0.0000019261,0.0000019225, -0.0000019188,0.0000019149,0.0000019111,0.0000019078,0.0000019053, -0.0000019031,0.0000019000,0.0000018974,0.0000018972,0.0000018991, -0.0000019007,0.0000019006,0.0000018977,0.0000018928,0.0000018879, -0.0000018845,0.0000018819,0.0000018794,0.0000018773,0.0000018752, -0.0000018726,0.0000018693,0.0000018665,0.0000018656,0.0000018670, -0.0000018686,0.0000018685,0.0000018658,0.0000018607,0.0000018549, -0.0000018496,0.0000018454,0.0000018423,0.0000018408,0.0000018417, -0.0000018447,0.0000018485,0.0000018516,0.0000018546,0.0000018561, -0.0000018556,0.0000018532,0.0000018498,0.0000018475,0.0000018465, -0.0000018432,0.0000018380,0.0000018351,0.0000018348,0.0000018379, -0.0000018418,0.0000018441,0.0000018447,0.0000018445,0.0000018433, -0.0000018418,0.0000018408,0.0000018402,0.0000018390,0.0000018373, -0.0000018353,0.0000018323,0.0000018291,0.0000018270,0.0000018259, -0.0000018254,0.0000018257,0.0000018267,0.0000018278,0.0000018293, -0.0000018314,0.0000018335,0.0000018346,0.0000018345,0.0000018337, -0.0000018318,0.0000018291,0.0000018257,0.0000018221,0.0000018181, -0.0000018138,0.0000018094,0.0000018053,0.0000018022,0.0000017999, -0.0000017986,0.0000017978,0.0000017972,0.0000017969,0.0000017970, -0.0000017972,0.0000017975,0.0000017979,0.0000017981,0.0000017982, -0.0000017984,0.0000017987,0.0000017990,0.0000017994,0.0000018001, -0.0000018008,0.0000018020,0.0000018039,0.0000018064,0.0000018092, -0.0000018129,0.0000018172,0.0000018219,0.0000018272,0.0000018331, -0.0000018394,0.0000018457,0.0000018512,0.0000018560,0.0000018599, -0.0000018637,0.0000018682,0.0000018739,0.0000018809,0.0000018893, -0.0000018989,0.0000019097,0.0000019211,0.0000019319,0.0000019420, -0.0000019485,0.0000019520,0.0000019525,0.0000019516,0.0000019499, -0.0000019492,0.0000019493,0.0000019487,0.0000019473,0.0000019438, -0.0000019393,0.0000019342,0.0000019300,0.0000019275,0.0000019263, -0.0000019251,0.0000019232,0.0000019203,0.0000019171,0.0000019147, -0.0000019134,0.0000019124,0.0000019112,0.0000019089,0.0000019053, -0.0000019007,0.0000018959,0.0000018917,0.0000018879,0.0000018841, -0.0000018801,0.0000018755,0.0000018705,0.0000018672,0.0000018655, -0.0000018653,0.0000018654,0.0000018656,0.0000018665,0.0000018678, -0.0000018684,0.0000018677,0.0000018666,0.0000018662,0.0000018658, -0.0000018632,0.0000018570,0.0000018497,0.0000018450,0.0000018449, -0.0000018477,0.0000018524,0.0000018559,0.0000018571,0.0000018569, -0.0000018562,0.0000018553,0.0000018539,0.0000018521,0.0000018503, -0.0000018484,0.0000018461,0.0000018431,0.0000018398,0.0000018371, -0.0000018352,0.0000018340,0.0000018339,0.0000018338,0.0000018333, -0.0000018328,0.0000018327,0.0000018331,0.0000018342,0.0000018357, -0.0000018380,0.0000018401,0.0000018420,0.0000018434,0.0000018438, -0.0000018410,0.0000018330,0.0000018222,0.0000018129,0.0000018084, -0.0000018074,0.0000018085,0.0000018115,0.0000018163,0.0000018219, -0.0000018272,0.0000018330,0.0000018392,0.0000018449,0.0000018500, -0.0000018541,0.0000018573,0.0000018597,0.0000018613,0.0000018618, -0.0000018616,0.0000018609,0.0000018595,0.0000018575,0.0000018553, -0.0000018531,0.0000018509,0.0000018487,0.0000018461,0.0000018431, -0.0000018397,0.0000018360,0.0000018323,0.0000018285,0.0000018249, -0.0000018218,0.0000018198,0.0000018186,0.0000018184,0.0000018190, -0.0000018204,0.0000018225,0.0000018247,0.0000018266,0.0000018291, -0.0000018322,0.0000018355,0.0000018392,0.0000018439,0.0000018500, -0.0000018575,0.0000018634,0.0000018657,0.0000018653,0.0000018640, -0.0000018623,0.0000018599,0.0000018571,0.0000018553,0.0000018546, -0.0000018537,0.0000018519,0.0000018499,0.0000018479,0.0000018460, -0.0000018445,0.0000018436,0.0000018432,0.0000018430,0.0000018435, -0.0000018450,0.0000018481,0.0000018523,0.0000018569,0.0000018612, -0.0000018640,0.0000018649,0.0000018629,0.0000018577,0.0000018508, -0.0000018445,0.0000018411,0.0000018418,0.0000018444,0.0000018489, -0.0000018537,0.0000018603,0.0000018678,0.0000018680,0.0000018629, -0.0000018696,0.0000018784,0.0000018717,0.0000018656,0.0000018713, -0.0000018809,0.0000018798,0.0000018743,0.0000018792,0.0000018929, -0.0000018940,0.0000018858,0.0000018813,0.0000018812,0.0000018809, -0.0000018763,0.0000018675,0.0000018594,0.0000018543,0.0000018528, -0.0000018594,0.0000018734,0.0000018843,0.0000018871,0.0000018883, -0.0000018917,0.0000018936,0.0000018919,0.0000018886,0.0000018872, -0.0000018889,0.0000018915,0.0000018942,0.0000018965,0.0000018985, -0.0000019005,0.0000019027,0.0000019044,0.0000019039,0.0000019016, -0.0000019013,0.0000019014,0.0000018889,0.0000018576,0.0000018274, -0.0000018141,0.0000018110,0.0000018085,0.0000018065,0.0000018060, -0.0000018063,0.0000018075,0.0000018099,0.0000018134,0.0000018177, -0.0000018224,0.0000018275,0.0000018333,0.0000018402,0.0000018489, -0.0000018586,0.0000018676,0.0000018725,0.0000018731,0.0000018695, -0.0000018617,0.0000018532,0.0000018453,0.0000018410,0.0000018411, -0.0000018441,0.0000018491,0.0000018551,0.0000018606,0.0000018657, -0.0000018706,0.0000018751,0.0000018793,0.0000018828,0.0000018852, -0.0000018865,0.0000018873,0.0000018874,0.0000018878,0.0000018838, -0.0000018752,0.0000018614,0.0000018461,0.0000018345,0.0000018302, -0.0000018307,0.0000018319,0.0000018324,0.0000018313,0.0000018279, -0.0000018233,0.0000018186,0.0000018141,0.0000018086,0.0000018030, -0.0000017983,0.0000017962,0.0000017966,0.0000017973,0.0000017986, -0.0000017997,0.0000018005,0.0000018011,0.0000018016,0.0000018023, -0.0000018028,0.0000018038,0.0000018051,0.0000018068,0.0000018081, -0.0000018096,0.0000018106,0.0000018110,0.0000018108,0.0000018102, -0.0000018093,0.0000018083,0.0000018071,0.0000018056,0.0000018037, -0.0000018019,0.0000017998,0.0000017977,0.0000017959,0.0000017943, -0.0000017933,0.0000017929,0.0000017927,0.0000017937,0.0000017948, -0.0000017960,0.0000017975,0.0000017988,0.0000017996,0.0000017999, -0.0000017998,0.0000018000,0.0000018006,0.0000018015,0.0000018034, -0.0000018057,0.0000018079,0.0000018101,0.0000018120,0.0000018133, -0.0000018142,0.0000018153,0.0000018163,0.0000018173,0.0000018183, -0.0000018194,0.0000018206,0.0000018217,0.0000018229,0.0000018241, -0.0000018254,0.0000018270,0.0000018288,0.0000018305,0.0000018321, -0.0000018421,0.0000018440,0.0000018457,0.0000018470,0.0000018475, -0.0000018473,0.0000018469,0.0000018457,0.0000018435,0.0000018404, -0.0000018367,0.0000018328,0.0000018285,0.0000018239,0.0000018195, -0.0000018165,0.0000018145,0.0000018130,0.0000018129,0.0000018138, -0.0000018146,0.0000018148,0.0000018152,0.0000018146,0.0000018133, -0.0000018120,0.0000018101,0.0000018083,0.0000018073,0.0000018073, -0.0000018076,0.0000018076,0.0000018073,0.0000018062,0.0000018044, -0.0000018024,0.0000018000,0.0000017980,0.0000017967,0.0000017954, -0.0000017941,0.0000017919,0.0000017882,0.0000017833,0.0000017793, -0.0000017769,0.0000017772,0.0000017805,0.0000017856,0.0000017908, -0.0000017958,0.0000018010,0.0000018075,0.0000018154,0.0000018236, -0.0000018310,0.0000018367,0.0000018395,0.0000018403,0.0000018402, -0.0000018390,0.0000018373,0.0000018355,0.0000018340,0.0000018328, -0.0000018319,0.0000018315,0.0000018316,0.0000018321,0.0000018335, -0.0000018355,0.0000018380,0.0000018401,0.0000018415,0.0000018415, -0.0000018403,0.0000018387,0.0000018373,0.0000018365,0.0000018356, -0.0000018337,0.0000018299,0.0000018242,0.0000018173,0.0000018109, -0.0000018063,0.0000018035,0.0000018014,0.0000017984,0.0000017938, -0.0000017879,0.0000017819,0.0000017781,0.0000017762,0.0000017768, -0.0000017801,0.0000017863,0.0000017939,0.0000018021,0.0000018097, -0.0000018156,0.0000018193,0.0000018219,0.0000018263,0.0000018341, -0.0000018436,0.0000018508,0.0000018534,0.0000018532,0.0000018527, -0.0000018523,0.0000018511,0.0000018493,0.0000018475,0.0000018461, -0.0000018452,0.0000018451,0.0000018452,0.0000018453,0.0000018452, -0.0000018445,0.0000018432,0.0000018415,0.0000018395,0.0000018374, -0.0000018357,0.0000018343,0.0000018330,0.0000018314,0.0000018295, -0.0000018273,0.0000018253,0.0000018237,0.0000018223,0.0000018207, -0.0000018189,0.0000018174,0.0000018157,0.0000018142,0.0000018129, -0.0000018121,0.0000018113,0.0000018107,0.0000018101,0.0000018095, -0.0000018086,0.0000018069,0.0000018046,0.0000018018,0.0000017986, -0.0000017950,0.0000017909,0.0000017865,0.0000017821,0.0000017778, -0.0000017739,0.0000017704,0.0000017675,0.0000017650,0.0000017629, -0.0000017610,0.0000017592,0.0000017574,0.0000017558,0.0000017546, -0.0000017537,0.0000017532,0.0000017530,0.0000017528,0.0000017526, -0.0000017523,0.0000017517,0.0000017509,0.0000017495,0.0000017475, -0.0000017453,0.0000017429,0.0000017404,0.0000017379,0.0000017358, -0.0000017346,0.0000017351,0.0000017376,0.0000017418,0.0000017468, -0.0000017518,0.0000017565,0.0000017604,0.0000017634,0.0000017653, -0.0000017662,0.0000017661,0.0000017654,0.0000017645,0.0000017628, -0.0000017611,0.0000017599,0.0000017594,0.0000017592,0.0000017592, -0.0000017599,0.0000017615,0.0000017641,0.0000017672,0.0000017704, -0.0000017741,0.0000017781,0.0000017819,0.0000017856,0.0000017891, -0.0000017922,0.0000017950,0.0000017974,0.0000017996,0.0000018012, -0.0000018024,0.0000018035,0.0000018042,0.0000018046,0.0000018048, -0.0000018053,0.0000018060,0.0000018068,0.0000018076,0.0000018080, -0.0000018080,0.0000018072,0.0000018062,0.0000018061,0.0000018064, -0.0000018055,0.0000018041,0.0000018028,0.0000018016,0.0000018008, -0.0000018011,0.0000018025,0.0000018055,0.0000018095,0.0000018140, -0.0000018184,0.0000018205,0.0000018211,0.0000018203,0.0000018159, -0.0000018079,0.0000017985,0.0000017896,0.0000017858,0.0000017858, -0.0000017870,0.0000017889,0.0000017904,0.0000017920,0.0000017940, -0.0000017948,0.0000017940,0.0000017915,0.0000017885,0.0000017853, -0.0000017821,0.0000017791,0.0000017770,0.0000017763,0.0000017774, -0.0000017809,0.0000017854,0.0000017893,0.0000017916,0.0000017925, -0.0000017935,0.0000017963,0.0000018018,0.0000018090,0.0000018150, -0.0000018177,0.0000018173,0.0000018158,0.0000018153,0.0000018171, -0.0000018208,0.0000018250,0.0000018286,0.0000018315,0.0000018356, -0.0000018413,0.0000018455,0.0000018482,0.0000018582,0.0000018771, -0.0000018954,0.0000019106,0.0000019241,0.0000019361,0.0000019478, -0.0000019524,0.0000019532,0.0000019591,0.0000019656,0.0000019722, -0.0000019826,0.0000019901,0.0000019904,0.0000019868,0.0000019847, -0.0000019873,0.0000019904,0.0000019918,0.0000019926,0.0000019922, -0.0000019908,0.0000019898,0.0000019884,0.0000019860,0.0000019833, -0.0000019811,0.0000019797,0.0000019785,0.0000019776,0.0000019773, -0.0000019779,0.0000019804,0.0000019847,0.0000019906,0.0000019970, -0.0000020022,0.0000020046,0.0000020057,0.0000020049,0.0000020037, -0.0000020028,0.0000020018,0.0000020014,0.0000020016,0.0000020020, -0.0000020024,0.0000020025,0.0000020025,0.0000020019,0.0000020009, -0.0000019996,0.0000019978,0.0000019961,0.0000019950,0.0000019931, -0.0000019911,0.0000019890,0.0000019867,0.0000019846,0.0000019824, -0.0000019803,0.0000019780,0.0000019757,0.0000019736,0.0000019719, -0.0000019709,0.0000019703,0.0000019700,0.0000019694,0.0000019689, -0.0000019686,0.0000019685,0.0000019683,0.0000019679,0.0000019676, -0.0000019669,0.0000019664,0.0000019656,0.0000019647,0.0000019634, -0.0000019622,0.0000019607,0.0000019595,0.0000019578,0.0000019564, -0.0000019553,0.0000019542,0.0000019535,0.0000019524,0.0000019517, -0.0000019515,0.0000019520,0.0000019532,0.0000019551,0.0000019567, -0.0000019573,0.0000019582,0.0000019580,0.0000019573,0.0000019569, -0.0000019564,0.0000019556,0.0000019547,0.0000019543,0.0000019537, -0.0000019527,0.0000019515,0.0000019508,0.0000019502,0.0000019494, -0.0000019484,0.0000019468,0.0000019450,0.0000019430,0.0000019406, -0.0000019384,0.0000019363,0.0000019342,0.0000019320,0.0000019297, -0.0000019275,0.0000019254,0.0000019231,0.0000019207,0.0000019187, -0.0000019167,0.0000019142,0.0000019115,0.0000019085,0.0000019053, -0.0000019018,0.0000018980,0.0000018941,0.0000018896,0.0000018847, -0.0000018796,0.0000018739,0.0000018681,0.0000018621,0.0000018562, -0.0000018505,0.0000018457,0.0000018417,0.0000018383,0.0000018350, -0.0000018319,0.0000018292,0.0000018270,0.0000018244,0.0000018217, -0.0000018192,0.0000018168,0.0000018143,0.0000018119,0.0000018098, -0.0000018079,0.0000018061,0.0000018045,0.0000018032,0.0000018020, -0.0000018010,0.0000018007,0.0000018005,0.0000018005,0.0000018008, -0.0000018014,0.0000018028,0.0000018051,0.0000018078,0.0000018110, -0.0000018148,0.0000018191,0.0000018238,0.0000018286,0.0000018336, -0.0000018392,0.0000018454,0.0000018520,0.0000018586,0.0000018652, -0.0000018718,0.0000018780,0.0000018835,0.0000018887,0.0000018941, -0.0000018990,0.0000019027,0.0000019056,0.0000019080,0.0000019098, -0.0000019111,0.0000019120,0.0000019126,0.0000019129,0.0000019134, -0.0000019139,0.0000019146,0.0000019154,0.0000019162,0.0000019170, -0.0000019176,0.0000019182,0.0000019190,0.0000019197,0.0000019203, -0.0000019206,0.0000019204,0.0000019202,0.0000019198,0.0000019195, -0.0000019193,0.0000019195,0.0000019202,0.0000019214,0.0000019231, -0.0000019253,0.0000019279,0.0000019309,0.0000019343,0.0000019383, -0.0000019421,0.0000019458,0.0000019493,0.0000019525,0.0000019553, -0.0000019578,0.0000019601,0.0000019620,0.0000019636,0.0000019646, -0.0000019650,0.0000019649,0.0000019644,0.0000019635,0.0000019622, -0.0000019610,0.0000019599,0.0000019595,0.0000019600,0.0000019609, -0.0000019625,0.0000019642,0.0000019658,0.0000019677,0.0000019694, -0.0000019712,0.0000019733,0.0000019756,0.0000019779,0.0000019803, -0.0000019824,0.0000019844,0.0000019865,0.0000019885,0.0000019899, -0.0000019904,0.0000019907,0.0000019909,0.0000019911,0.0000019910, -0.0000019912,0.0000019911,0.0000019905,0.0000019893,0.0000019884, -0.0000019882,0.0000019883,0.0000019890,0.0000019898,0.0000019908, -0.0000019912,0.0000019914,0.0000019915,0.0000019915,0.0000019917, -0.0000019921,0.0000019929,0.0000019938,0.0000019952,0.0000019971, -0.0000019990,0.0000020005,0.0000020017,0.0000020021,0.0000020019, -0.0000020003,0.0000019973,0.0000019936,0.0000019891,0.0000019855, -0.0000019837,0.0000019839,0.0000019844,0.0000019868,0.0000019897, -0.0000019928,0.0000019954,0.0000019971,0.0000019971,0.0000019962, -0.0000019947,0.0000019931,0.0000019913,0.0000019893,0.0000019876, -0.0000019858,0.0000019844,0.0000019851,0.0000019857,0.0000019868, -0.0000019899,0.0000019943,0.0000019985,0.0000020024,0.0000020062, -0.0000020100,0.0000020130,0.0000020152,0.0000020152,0.0000020142, -0.0000020129,0.0000020125,0.0000020137,0.0000020158,0.0000020193, -0.0000020243,0.0000020294,0.0000020334,0.0000020343,0.0000020355, -0.0000020351,0.0000020333,0.0000020316,0.0000020303,0.0000020289, -0.0000020284,0.0000020280,0.0000020281,0.0000020287,0.0000020295, -0.0000020298,0.0000020308,0.0000020310,0.0000020306,0.0000020292, -0.0000020278,0.0000020265,0.0000020262,0.0000020269,0.0000020277, -0.0000020286,0.0000020295,0.0000020300,0.0000020304,0.0000020308, -0.0000020315,0.0000020318,0.0000020317,0.0000020315,0.0000020314, -0.0000020313,0.0000020302,0.0000020286,0.0000020267,0.0000020246, -0.0000020229,0.0000020217,0.0000020204,0.0000020200,0.0000020210, -0.0000020225,0.0000020241,0.0000020253,0.0000020269,0.0000020279, -0.0000020291,0.0000020304,0.0000020317,0.0000020317,0.0000020318, -0.0000020322,0.0000020312,0.0000020306,0.0000020309,0.0000020313, -0.0000020308,0.0000020306,0.0000020310,0.0000020313,0.0000020312, -0.0000020313,0.0000020312,0.0000020309,0.0000020302,0.0000020296, -0.0000020287,0.0000020273,0.0000020255,0.0000020235,0.0000020206, -0.0000020172,0.0000020134,0.0000020098,0.0000020076,0.0000020070, -0.0000020072,0.0000020079,0.0000020086,0.0000020087,0.0000020070, -0.0000020052,0.0000020036,0.0000020016,0.0000019997,0.0000019987, -0.0000019973,0.0000019946,0.0000019915,0.0000019879,0.0000019836, -0.0000019795,0.0000019755,0.0000019718,0.0000019683,0.0000019655, -0.0000019636,0.0000019624,0.0000019611,0.0000019593,0.0000019564, -0.0000019533,0.0000019494,0.0000019452,0.0000019414,0.0000019377, -0.0000019344,0.0000019315,0.0000019287,0.0000019260,0.0000019230, -0.0000019197,0.0000019163,0.0000019132,0.0000019106,0.0000019083, -0.0000019067,0.0000019062,0.0000019066,0.0000019087,0.0000019105, -0.0000019134,0.0000019158,0.0000019182,0.0000019213,0.0000019243, -0.0000019267,0.0000019288,0.0000019295,0.0000019300,0.0000019286, -0.0000019253,0.0000019202,0.0000019125,0.0000019044,0.0000018966, -0.0000018901,0.0000018852,0.0000018812,0.0000018775,0.0000018748, -0.0000018726,0.0000018723,0.0000018733,0.0000018739,0.0000018747, -0.0000018758,0.0000018768,0.0000018775,0.0000018791,0.0000018807, -0.0000018820,0.0000018834,0.0000018850,0.0000018867,0.0000018891, -0.0000018925,0.0000018973,0.0000019028,0.0000019090,0.0000019165, -0.0000019243,0.0000019314,0.0000019367,0.0000019399,0.0000019391, -0.0000019351,0.0000019288,0.0000019210,0.0000019143,0.0000019088, -0.0000019067,0.0000019055,0.0000019056,0.0000019064,0.0000019080, -0.0000019094,0.0000019105,0.0000019113,0.0000019124,0.0000019140, -0.0000019157,0.0000019177,0.0000019199,0.0000019226,0.0000019251, -0.0000019253,0.0000019252,0.0000019231,0.0000019203,0.0000019175, -0.0000019157,0.0000019151,0.0000019165,0.0000019185,0.0000019220, -0.0000019261,0.0000019289,0.0000019305,0.0000019317,0.0000019333, -0.0000019350,0.0000019363,0.0000019368,0.0000019381,0.0000019392, -0.0000019403,0.0000019396,0.0000019358,0.0000019308,0.0000019262, -0.0000019235,0.0000019214,0.0000019193,0.0000019205,0.0000019236, -0.0000019271,0.0000019301,0.0000019316,0.0000019311,0.0000019290, -0.0000019266,0.0000019242,0.0000019222,0.0000019209,0.0000019200, -0.0000019203,0.0000019216,0.0000019225,0.0000019230,0.0000019232, -0.0000019227,0.0000019223,0.0000019216,0.0000019210,0.0000019218, -0.0000019236,0.0000019255,0.0000019269,0.0000019275,0.0000019274, -0.0000019256,0.0000019227,0.0000019184,0.0000019141,0.0000019096, -0.0000019065,0.0000019042,0.0000019026,0.0000019002,0.0000018980, -0.0000018972,0.0000018976,0.0000018981,0.0000018971,0.0000018945, -0.0000018903,0.0000018858,0.0000018814,0.0000018778,0.0000018753, -0.0000018733,0.0000018707,0.0000018672,0.0000018629,0.0000018590, -0.0000018577,0.0000018586,0.0000018609,0.0000018621,0.0000018607, -0.0000018568,0.0000018522,0.0000018474,0.0000018431,0.0000018397, -0.0000018386,0.0000018399,0.0000018438,0.0000018492,0.0000018538, -0.0000018568,0.0000018585,0.0000018582,0.0000018556,0.0000018516, -0.0000018498,0.0000018484,0.0000018446,0.0000018392,0.0000018344, -0.0000018327,0.0000018345,0.0000018384,0.0000018418,0.0000018434, -0.0000018439,0.0000018430,0.0000018416,0.0000018408,0.0000018402, -0.0000018397,0.0000018391,0.0000018374,0.0000018347,0.0000018312, -0.0000018284,0.0000018259,0.0000018241,0.0000018231,0.0000018228, -0.0000018233,0.0000018244,0.0000018264,0.0000018287,0.0000018309, -0.0000018323,0.0000018325,0.0000018312,0.0000018299,0.0000018277, -0.0000018250,0.0000018215,0.0000018173,0.0000018127,0.0000018082, -0.0000018042,0.0000018010,0.0000017988,0.0000017974,0.0000017966, -0.0000017964,0.0000017961,0.0000017959,0.0000017959,0.0000017962, -0.0000017966,0.0000017971,0.0000017975,0.0000017980,0.0000017983, -0.0000017986,0.0000017988,0.0000017989,0.0000017993,0.0000018000, -0.0000018012,0.0000018029,0.0000018058,0.0000018092,0.0000018133, -0.0000018183,0.0000018240,0.0000018300,0.0000018360,0.0000018419, -0.0000018470,0.0000018512,0.0000018554,0.0000018599,0.0000018647, -0.0000018702,0.0000018764,0.0000018833,0.0000018911,0.0000018998, -0.0000019096,0.0000019200,0.0000019296,0.0000019377,0.0000019436, -0.0000019471,0.0000019491,0.0000019497,0.0000019498,0.0000019510, -0.0000019517,0.0000019502,0.0000019467,0.0000019422,0.0000019372, -0.0000019328,0.0000019294,0.0000019269,0.0000019243,0.0000019211, -0.0000019174,0.0000019140,0.0000019120,0.0000019108,0.0000019097, -0.0000019079,0.0000019049,0.0000019009,0.0000018968,0.0000018925, -0.0000018882,0.0000018839,0.0000018797,0.0000018751,0.0000018704, -0.0000018665,0.0000018642,0.0000018627,0.0000018619,0.0000018620, -0.0000018630,0.0000018645,0.0000018660,0.0000018662,0.0000018658, -0.0000018654,0.0000018651,0.0000018641,0.0000018605,0.0000018552, -0.0000018509,0.0000018489,0.0000018494,0.0000018519,0.0000018553, -0.0000018572,0.0000018575,0.0000018562,0.0000018541,0.0000018518, -0.0000018494,0.0000018475,0.0000018458,0.0000018440,0.0000018420, -0.0000018398,0.0000018375,0.0000018363,0.0000018363,0.0000018363, -0.0000018361,0.0000018358,0.0000018357,0.0000018358,0.0000018365, -0.0000018378,0.0000018399,0.0000018420,0.0000018436,0.0000018453, -0.0000018466,0.0000018460,0.0000018413,0.0000018319,0.0000018211, -0.0000018132,0.0000018099,0.0000018098,0.0000018113,0.0000018145, -0.0000018197,0.0000018252,0.0000018310,0.0000018378,0.0000018450, -0.0000018512,0.0000018557,0.0000018592,0.0000018621,0.0000018646, -0.0000018659,0.0000018664,0.0000018661,0.0000018652,0.0000018637, -0.0000018619,0.0000018598,0.0000018575,0.0000018549,0.0000018520, -0.0000018489,0.0000018458,0.0000018428,0.0000018399,0.0000018366, -0.0000018330,0.0000018298,0.0000018273,0.0000018258,0.0000018254, -0.0000018258,0.0000018266,0.0000018279,0.0000018292,0.0000018307, -0.0000018331,0.0000018365,0.0000018404,0.0000018448,0.0000018503, -0.0000018568,0.0000018624,0.0000018647,0.0000018644,0.0000018632, -0.0000018617,0.0000018598,0.0000018575,0.0000018555,0.0000018544, -0.0000018531,0.0000018514,0.0000018496,0.0000018479,0.0000018464, -0.0000018452,0.0000018443,0.0000018435,0.0000018429,0.0000018432, -0.0000018448,0.0000018484,0.0000018531,0.0000018579,0.0000018617, -0.0000018635,0.0000018628,0.0000018591,0.0000018531,0.0000018466, -0.0000018417,0.0000018398,0.0000018408,0.0000018451,0.0000018500, -0.0000018535,0.0000018576,0.0000018648,0.0000018685,0.0000018645, -0.0000018674,0.0000018785,0.0000018754,0.0000018680,0.0000018708, -0.0000018843,0.0000018876,0.0000018807,0.0000018741,0.0000018799, -0.0000018938,0.0000018945,0.0000018858,0.0000018797,0.0000018769, -0.0000018737,0.0000018680,0.0000018614,0.0000018563,0.0000018550, -0.0000018617,0.0000018754,0.0000018850,0.0000018867,0.0000018873, -0.0000018906,0.0000018939,0.0000018939,0.0000018925,0.0000018924, -0.0000018937,0.0000018952,0.0000018962,0.0000018969,0.0000018975, -0.0000018985,0.0000019007,0.0000019032,0.0000019035,0.0000019022, -0.0000019012,0.0000018920,0.0000018624,0.0000018257,0.0000018050, -0.0000017990,0.0000017954,0.0000017921,0.0000017912,0.0000017918, -0.0000017934,0.0000017952,0.0000017973,0.0000018003,0.0000018048, -0.0000018100,0.0000018154,0.0000018209,0.0000018265,0.0000018320, -0.0000018380,0.0000018445,0.0000018509,0.0000018558,0.0000018582, -0.0000018573,0.0000018527,0.0000018452,0.0000018371,0.0000018314, -0.0000018289,0.0000018294,0.0000018321,0.0000018360,0.0000018401, -0.0000018441,0.0000018487,0.0000018539,0.0000018596,0.0000018647, -0.0000018683,0.0000018706,0.0000018723,0.0000018743,0.0000018770, -0.0000018787,0.0000018752,0.0000018684,0.0000018553,0.0000018411, -0.0000018322,0.0000018298,0.0000018306,0.0000018322,0.0000018326, -0.0000018306,0.0000018266,0.0000018220,0.0000018179,0.0000018141, -0.0000018097,0.0000018052,0.0000018015,0.0000017993,0.0000017986, -0.0000017986,0.0000017993,0.0000017993,0.0000017993,0.0000017995, -0.0000017995,0.0000018002,0.0000018016,0.0000018034,0.0000018056, -0.0000018076,0.0000018093,0.0000018106,0.0000018112,0.0000018113, -0.0000018112,0.0000018106,0.0000018095,0.0000018082,0.0000018064, -0.0000018047,0.0000018027,0.0000018005,0.0000017984,0.0000017962, -0.0000017940,0.0000017923,0.0000017912,0.0000017905,0.0000017905, -0.0000017908,0.0000017915,0.0000017926,0.0000017936,0.0000017949, -0.0000017960,0.0000017971,0.0000017986,0.0000018007,0.0000018032, -0.0000018063,0.0000018094,0.0000018124,0.0000018153,0.0000018178, -0.0000018192,0.0000018206,0.0000018222,0.0000018236,0.0000018245, -0.0000018258,0.0000018275,0.0000018293,0.0000018308,0.0000018321, -0.0000018334,0.0000018350,0.0000018367,0.0000018384,0.0000018401, -0.0000018472,0.0000018489,0.0000018505,0.0000018522,0.0000018538, -0.0000018549,0.0000018558,0.0000018560,0.0000018559,0.0000018551, -0.0000018535,0.0000018514,0.0000018486,0.0000018449,0.0000018401, -0.0000018349,0.0000018303,0.0000018258,0.0000018219,0.0000018193, -0.0000018181,0.0000018174,0.0000018172,0.0000018174,0.0000018174, -0.0000018167,0.0000018156,0.0000018136,0.0000018115,0.0000018102, -0.0000018095,0.0000018091,0.0000018087,0.0000018077,0.0000018059, -0.0000018036,0.0000018005,0.0000017975,0.0000017945,0.0000017921, -0.0000017913,0.0000017911,0.0000017904,0.0000017887,0.0000017850, -0.0000017801,0.0000017762,0.0000017738,0.0000017742,0.0000017771, -0.0000017816,0.0000017864,0.0000017913,0.0000017966,0.0000018029, -0.0000018106,0.0000018191,0.0000018274,0.0000018344,0.0000018393, -0.0000018407,0.0000018413,0.0000018403,0.0000018386,0.0000018368, -0.0000018350,0.0000018336,0.0000018328,0.0000018325,0.0000018329, -0.0000018342,0.0000018364,0.0000018390,0.0000018414,0.0000018429, -0.0000018432,0.0000018423,0.0000018404,0.0000018381,0.0000018360, -0.0000018350,0.0000018341,0.0000018315,0.0000018264,0.0000018196, -0.0000018122,0.0000018057,0.0000018012,0.0000017984,0.0000017958, -0.0000017920,0.0000017869,0.0000017816,0.0000017771,0.0000017748, -0.0000017744,0.0000017767,0.0000017814,0.0000017878,0.0000017951, -0.0000018026,0.0000018094,0.0000018145,0.0000018180,0.0000018220, -0.0000018287,0.0000018379,0.0000018459,0.0000018498,0.0000018498, -0.0000018489,0.0000018480,0.0000018468,0.0000018452,0.0000018437, -0.0000018427,0.0000018421,0.0000018419,0.0000018418,0.0000018415, -0.0000018408,0.0000018394,0.0000018376,0.0000018355,0.0000018333, -0.0000018311,0.0000018291,0.0000018268,0.0000018243,0.0000018213, -0.0000018180,0.0000018144,0.0000018111,0.0000018083,0.0000018057, -0.0000018035,0.0000018018,0.0000018005,0.0000017994,0.0000017986, -0.0000017983,0.0000017980,0.0000017974,0.0000017967,0.0000017961, -0.0000017952,0.0000017937,0.0000017912,0.0000017881,0.0000017846, -0.0000017808,0.0000017767,0.0000017725,0.0000017687,0.0000017654, -0.0000017631,0.0000017617,0.0000017609,0.0000017602,0.0000017596, -0.0000017585,0.0000017572,0.0000017560,0.0000017550,0.0000017541, -0.0000017535,0.0000017533,0.0000017532,0.0000017531,0.0000017529, -0.0000017526,0.0000017523,0.0000017516,0.0000017503,0.0000017484, -0.0000017460,0.0000017431,0.0000017401,0.0000017372,0.0000017348, -0.0000017328,0.0000017325,0.0000017337,0.0000017369,0.0000017413, -0.0000017460,0.0000017506,0.0000017546,0.0000017579,0.0000017604, -0.0000017620,0.0000017629,0.0000017630,0.0000017626,0.0000017617, -0.0000017606,0.0000017599,0.0000017595,0.0000017591,0.0000017587, -0.0000017585,0.0000017589,0.0000017599,0.0000017609,0.0000017620, -0.0000017632,0.0000017645,0.0000017658,0.0000017671,0.0000017686, -0.0000017703,0.0000017721,0.0000017739,0.0000017755,0.0000017768, -0.0000017780,0.0000017788,0.0000017793,0.0000017796,0.0000017800, -0.0000017810,0.0000017823,0.0000017840,0.0000017856,0.0000017873, -0.0000017893,0.0000017914,0.0000017938,0.0000017971,0.0000018004, -0.0000018026,0.0000018028,0.0000018018,0.0000018014,0.0000018000, -0.0000017979,0.0000017966,0.0000017966,0.0000017983,0.0000018021, -0.0000018074,0.0000018134,0.0000018194,0.0000018227,0.0000018233, -0.0000018218,0.0000018157,0.0000018061,0.0000017956,0.0000017875, -0.0000017859,0.0000017863,0.0000017878,0.0000017890,0.0000017902, -0.0000017913,0.0000017910,0.0000017890,0.0000017859,0.0000017826, -0.0000017795,0.0000017770,0.0000017754,0.0000017750,0.0000017765, -0.0000017797,0.0000017839,0.0000017881,0.0000017913,0.0000017926, -0.0000017928,0.0000017931,0.0000017944,0.0000017974,0.0000018007, -0.0000018024,0.0000018023,0.0000018018,0.0000018034,0.0000018080, -0.0000018142,0.0000018207,0.0000018261,0.0000018294,0.0000018332, -0.0000018388,0.0000018431,0.0000018463,0.0000018577,0.0000018775, -0.0000018951,0.0000019097,0.0000019229,0.0000019343,0.0000019453, -0.0000019489,0.0000019500,0.0000019564,0.0000019630,0.0000019704, -0.0000019809,0.0000019870,0.0000019865,0.0000019834,0.0000019828, -0.0000019857,0.0000019879,0.0000019888,0.0000019896,0.0000019892, -0.0000019881,0.0000019872,0.0000019861,0.0000019844,0.0000019825, -0.0000019808,0.0000019796,0.0000019784,0.0000019771,0.0000019759, -0.0000019751,0.0000019753,0.0000019764,0.0000019795,0.0000019844, -0.0000019906,0.0000019963,0.0000020006,0.0000020023,0.0000020033, -0.0000020028,0.0000020014,0.0000020004,0.0000019997,0.0000019991, -0.0000019988,0.0000019986,0.0000019982,0.0000019976,0.0000019970, -0.0000019962,0.0000019954,0.0000019947,0.0000019938,0.0000019929, -0.0000019922,0.0000019912,0.0000019902,0.0000019894,0.0000019876, -0.0000019853,0.0000019827,0.0000019799,0.0000019774,0.0000019751, -0.0000019733,0.0000019717,0.0000019703,0.0000019689,0.0000019677, -0.0000019669,0.0000019663,0.0000019656,0.0000019649,0.0000019643, -0.0000019637,0.0000019632,0.0000019628,0.0000019621,0.0000019617, -0.0000019612,0.0000019606,0.0000019599,0.0000019592,0.0000019586, -0.0000019581,0.0000019571,0.0000019562,0.0000019552,0.0000019543, -0.0000019544,0.0000019548,0.0000019553,0.0000019555,0.0000019549, -0.0000019540,0.0000019529,0.0000019517,0.0000019503,0.0000019493, -0.0000019486,0.0000019477,0.0000019466,0.0000019456,0.0000019444, -0.0000019432,0.0000019421,0.0000019411,0.0000019397,0.0000019381, -0.0000019359,0.0000019337,0.0000019316,0.0000019293,0.0000019272, -0.0000019250,0.0000019225,0.0000019198,0.0000019166,0.0000019132, -0.0000019093,0.0000019049,0.0000018999,0.0000018946,0.0000018889, -0.0000018827,0.0000018760,0.0000018691,0.0000018622,0.0000018552, -0.0000018482,0.0000018413,0.0000018342,0.0000018271,0.0000018200, -0.0000018129,0.0000018063,0.0000018003,0.0000017949,0.0000017902, -0.0000017868,0.0000017844,0.0000017828,0.0000017816,0.0000017807, -0.0000017803,0.0000017803,0.0000017799,0.0000017791,0.0000017784, -0.0000017778,0.0000017770,0.0000017762,0.0000017756,0.0000017748, -0.0000017741,0.0000017736,0.0000017730,0.0000017720,0.0000017706, -0.0000017695,0.0000017683,0.0000017670,0.0000017654,0.0000017638, -0.0000017629,0.0000017630,0.0000017635,0.0000017644,0.0000017657, -0.0000017674,0.0000017697,0.0000017727,0.0000017760,0.0000017798, -0.0000017846,0.0000017905,0.0000017971,0.0000018044,0.0000018125, -0.0000018213,0.0000018301,0.0000018392,0.0000018491,0.0000018587, -0.0000018674,0.0000018751,0.0000018820,0.0000018880,0.0000018931, -0.0000018973,0.0000019006,0.0000019030,0.0000019050,0.0000019068, -0.0000019085,0.0000019100,0.0000019113,0.0000019122,0.0000019128, -0.0000019133,0.0000019138,0.0000019144,0.0000019152,0.0000019159, -0.0000019166,0.0000019170,0.0000019171,0.0000019171,0.0000019168, -0.0000019163,0.0000019160,0.0000019158,0.0000019158,0.0000019164, -0.0000019177,0.0000019197,0.0000019225,0.0000019259,0.0000019297, -0.0000019334,0.0000019372,0.0000019408,0.0000019441,0.0000019471, -0.0000019499,0.0000019525,0.0000019546,0.0000019564,0.0000019578, -0.0000019587,0.0000019589,0.0000019587,0.0000019585,0.0000019580, -0.0000019574,0.0000019570,0.0000019569,0.0000019569,0.0000019573, -0.0000019583,0.0000019594,0.0000019607,0.0000019622,0.0000019638, -0.0000019655,0.0000019675,0.0000019695,0.0000019716,0.0000019741, -0.0000019764,0.0000019783,0.0000019798,0.0000019817,0.0000019830, -0.0000019837,0.0000019839,0.0000019838,0.0000019837,0.0000019838, -0.0000019835,0.0000019835,0.0000019837,0.0000019835,0.0000019832, -0.0000019831,0.0000019836,0.0000019843,0.0000019852,0.0000019865, -0.0000019877,0.0000019889,0.0000019901,0.0000019911,0.0000019917, -0.0000019920,0.0000019922,0.0000019929,0.0000019941,0.0000019961, -0.0000019978,0.0000019992,0.0000020004,0.0000020010,0.0000020004, -0.0000019991,0.0000019965,0.0000019928,0.0000019889,0.0000019857, -0.0000019836,0.0000019828,0.0000019825,0.0000019838,0.0000019863, -0.0000019892,0.0000019922,0.0000019944,0.0000019954,0.0000019953, -0.0000019951,0.0000019956,0.0000019956,0.0000019954,0.0000019947, -0.0000019938,0.0000019929,0.0000019922,0.0000019912,0.0000019909, -0.0000019900,0.0000019894,0.0000019887,0.0000019902,0.0000019924, -0.0000019955,0.0000019989,0.0000020022,0.0000020054,0.0000020075, -0.0000020081,0.0000020074,0.0000020071,0.0000020080,0.0000020103, -0.0000020139,0.0000020182,0.0000020231,0.0000020281,0.0000020319, -0.0000020331,0.0000020328,0.0000020335,0.0000020330,0.0000020325, -0.0000020324,0.0000020324,0.0000020316,0.0000020302,0.0000020298, -0.0000020292,0.0000020285,0.0000020273,0.0000020262,0.0000020248, -0.0000020236,0.0000020227,0.0000020227,0.0000020234,0.0000020245, -0.0000020259,0.0000020272,0.0000020280,0.0000020286,0.0000020296, -0.0000020302,0.0000020301,0.0000020299,0.0000020299,0.0000020303, -0.0000020302,0.0000020296,0.0000020287,0.0000020272,0.0000020255, -0.0000020237,0.0000020216,0.0000020207,0.0000020204,0.0000020212, -0.0000020223,0.0000020234,0.0000020243,0.0000020253,0.0000020270, -0.0000020287,0.0000020294,0.0000020302,0.0000020309,0.0000020304, -0.0000020298,0.0000020298,0.0000020301,0.0000020291,0.0000020280, -0.0000020267,0.0000020261,0.0000020253,0.0000020253,0.0000020250, -0.0000020242,0.0000020236,0.0000020233,0.0000020223,0.0000020210, -0.0000020202,0.0000020190,0.0000020173,0.0000020149,0.0000020115, -0.0000020080,0.0000020041,0.0000020004,0.0000019986,0.0000019980, -0.0000019981,0.0000019986,0.0000019993,0.0000020001,0.0000020005, -0.0000019995,0.0000019977,0.0000019970,0.0000019966,0.0000019959, -0.0000019946,0.0000019929,0.0000019905,0.0000019874,0.0000019842, -0.0000019802,0.0000019762,0.0000019724,0.0000019695,0.0000019675, -0.0000019661,0.0000019647,0.0000019625,0.0000019594,0.0000019559, -0.0000019519,0.0000019486,0.0000019457,0.0000019427,0.0000019400, -0.0000019375,0.0000019355,0.0000019334,0.0000019314,0.0000019290, -0.0000019264,0.0000019239,0.0000019211,0.0000019185,0.0000019165, -0.0000019149,0.0000019138,0.0000019138,0.0000019146,0.0000019153, -0.0000019165,0.0000019172,0.0000019184,0.0000019198,0.0000019214, -0.0000019237,0.0000019259,0.0000019277,0.0000019286,0.0000019282, -0.0000019264,0.0000019230,0.0000019188,0.0000019142,0.0000019098, -0.0000019049,0.0000018995,0.0000018940,0.0000018885,0.0000018836, -0.0000018801,0.0000018773,0.0000018750,0.0000018749,0.0000018748, -0.0000018752,0.0000018754,0.0000018771,0.0000018785,0.0000018797, -0.0000018815,0.0000018833,0.0000018850,0.0000018872,0.0000018902, -0.0000018936,0.0000018969,0.0000019013,0.0000019071,0.0000019139, -0.0000019208,0.0000019277,0.0000019330,0.0000019353,0.0000019343, -0.0000019294,0.0000019232,0.0000019155,0.0000019090,0.0000019045, -0.0000019026,0.0000019013,0.0000019016,0.0000019026,0.0000019036, -0.0000019046,0.0000019054,0.0000019064,0.0000019074,0.0000019083, -0.0000019094,0.0000019116,0.0000019149,0.0000019186,0.0000019214, -0.0000019232,0.0000019232,0.0000019215,0.0000019184,0.0000019145, -0.0000019116,0.0000019100,0.0000019130,0.0000019185,0.0000019239, -0.0000019274,0.0000019292,0.0000019300,0.0000019306,0.0000019308, -0.0000019315,0.0000019339,0.0000019368,0.0000019399,0.0000019403, -0.0000019383,0.0000019348,0.0000019308,0.0000019262,0.0000019217, -0.0000019185,0.0000019168,0.0000019172,0.0000019189,0.0000019211, -0.0000019221,0.0000019220,0.0000019208,0.0000019199,0.0000019183, -0.0000019161,0.0000019139,0.0000019123,0.0000019104,0.0000019087, -0.0000019075,0.0000019065,0.0000019059,0.0000019051,0.0000019051, -0.0000019060,0.0000019077,0.0000019112,0.0000019154,0.0000019191, -0.0000019216,0.0000019235,0.0000019243,0.0000019237,0.0000019223, -0.0000019188,0.0000019149,0.0000019106,0.0000019073,0.0000019051, -0.0000019039,0.0000019023,0.0000019003,0.0000018982,0.0000018970, -0.0000018957,0.0000018936,0.0000018909,0.0000018875,0.0000018834, -0.0000018782,0.0000018740,0.0000018718,0.0000018697,0.0000018660, -0.0000018612,0.0000018560,0.0000018513,0.0000018494,0.0000018500, -0.0000018528,0.0000018545,0.0000018537,0.0000018509,0.0000018479, -0.0000018436,0.0000018393,0.0000018367,0.0000018366,0.0000018385, -0.0000018428,0.0000018491,0.0000018549,0.0000018585,0.0000018606, -0.0000018605,0.0000018580,0.0000018546,0.0000018525,0.0000018505, -0.0000018467,0.0000018408,0.0000018353,0.0000018319,0.0000018318, -0.0000018353,0.0000018393,0.0000018417,0.0000018434,0.0000018430, -0.0000018416,0.0000018404,0.0000018395,0.0000018392,0.0000018385, -0.0000018376,0.0000018358,0.0000018335,0.0000018310,0.0000018280, -0.0000018251,0.0000018229,0.0000018217,0.0000018209,0.0000018205, -0.0000018213,0.0000018231,0.0000018254,0.0000018277,0.0000018292, -0.0000018298,0.0000018291,0.0000018279,0.0000018261,0.0000018234, -0.0000018200,0.0000018161,0.0000018120,0.0000018079,0.0000018041, -0.0000018009,0.0000017986,0.0000017974,0.0000017966,0.0000017959, -0.0000017956,0.0000017952,0.0000017951,0.0000017955,0.0000017962, -0.0000017970,0.0000017976,0.0000017982,0.0000017986,0.0000017989, -0.0000017989,0.0000017990,0.0000017992,0.0000017992,0.0000017998, -0.0000018009,0.0000018027,0.0000018060,0.0000018104,0.0000018155, -0.0000018211,0.0000018268,0.0000018323,0.0000018372,0.0000018418, -0.0000018463,0.0000018509,0.0000018557,0.0000018609,0.0000018665, -0.0000018724,0.0000018783,0.0000018847,0.0000018921,0.0000019002, -0.0000019085,0.0000019170,0.0000019258,0.0000019336,0.0000019409, -0.0000019464,0.0000019507,0.0000019530,0.0000019543,0.0000019543, -0.0000019527,0.0000019493,0.0000019448,0.0000019399,0.0000019350, -0.0000019306,0.0000019266,0.0000019224,0.0000019178,0.0000019135, -0.0000019104,0.0000019086,0.0000019076,0.0000019061,0.0000019039, -0.0000019007,0.0000018971,0.0000018933,0.0000018890,0.0000018845, -0.0000018798,0.0000018753,0.0000018711,0.0000018675,0.0000018642, -0.0000018615,0.0000018600,0.0000018596,0.0000018602,0.0000018616, -0.0000018633,0.0000018647,0.0000018649,0.0000018643,0.0000018641, -0.0000018641,0.0000018631,0.0000018604,0.0000018569,0.0000018538, -0.0000018523,0.0000018524,0.0000018540,0.0000018561,0.0000018567, -0.0000018558,0.0000018535,0.0000018505,0.0000018475,0.0000018447, -0.0000018427,0.0000018413,0.0000018398,0.0000018379,0.0000018365, -0.0000018364,0.0000018365,0.0000018368,0.0000018371,0.0000018375, -0.0000018377,0.0000018382,0.0000018395,0.0000018414,0.0000018433, -0.0000018446,0.0000018463,0.0000018480,0.0000018486,0.0000018465, -0.0000018406,0.0000018309,0.0000018211,0.0000018142,0.0000018116, -0.0000018119,0.0000018135,0.0000018170,0.0000018213,0.0000018264, -0.0000018329,0.0000018407,0.0000018484,0.0000018545,0.0000018592, -0.0000018628,0.0000018655,0.0000018673,0.0000018682,0.0000018686, -0.0000018681,0.0000018673,0.0000018661,0.0000018646,0.0000018626, -0.0000018599,0.0000018567,0.0000018534,0.0000018503,0.0000018474, -0.0000018446,0.0000018417,0.0000018385,0.0000018354,0.0000018328, -0.0000018314,0.0000018308,0.0000018310,0.0000018317,0.0000018324, -0.0000018337,0.0000018356,0.0000018385,0.0000018424,0.0000018470, -0.0000018522,0.0000018573,0.0000018613,0.0000018633,0.0000018631, -0.0000018617,0.0000018600,0.0000018584,0.0000018567,0.0000018552, -0.0000018540,0.0000018526,0.0000018510,0.0000018494,0.0000018478, -0.0000018464,0.0000018451,0.0000018442,0.0000018432,0.0000018426, -0.0000018430,0.0000018453,0.0000018494,0.0000018541,0.0000018581, -0.0000018605,0.0000018609,0.0000018587,0.0000018539,0.0000018482, -0.0000018432,0.0000018401,0.0000018394,0.0000018414,0.0000018464, -0.0000018514,0.0000018541,0.0000018560,0.0000018613,0.0000018672, -0.0000018660,0.0000018670,0.0000018782,0.0000018780,0.0000018706, -0.0000018710,0.0000018843,0.0000018930,0.0000018901,0.0000018797, -0.0000018736,0.0000018794,0.0000018931,0.0000018950,0.0000018872, -0.0000018792,0.0000018739,0.0000018690,0.0000018640,0.0000018589, -0.0000018572,0.0000018615,0.0000018735,0.0000018836,0.0000018862, -0.0000018861,0.0000018877,0.0000018915,0.0000018943,0.0000018956, -0.0000018962,0.0000018968,0.0000018973,0.0000018975,0.0000018975, -0.0000018973,0.0000018972,0.0000018986,0.0000019011,0.0000019021, -0.0000019021,0.0000018957,0.0000018697,0.0000018289,0.0000017991, -0.0000017885,0.0000017846,0.0000017811,0.0000017794,0.0000017794, -0.0000017804,0.0000017825,0.0000017851,0.0000017877,0.0000017904, -0.0000017942,0.0000017994,0.0000018055,0.0000018116,0.0000018177, -0.0000018238,0.0000018292,0.0000018335,0.0000018372,0.0000018406, -0.0000018435,0.0000018449,0.0000018442,0.0000018408,0.0000018353, -0.0000018298,0.0000018257,0.0000018236,0.0000018234,0.0000018248, -0.0000018266,0.0000018279,0.0000018295,0.0000018316,0.0000018350, -0.0000018396,0.0000018443,0.0000018480,0.0000018509,0.0000018531, -0.0000018558,0.0000018601,0.0000018661,0.0000018698,0.0000018680, -0.0000018617,0.0000018486,0.0000018361,0.0000018302,0.0000018294, -0.0000018307,0.0000018323,0.0000018325,0.0000018300,0.0000018255, -0.0000018211,0.0000018176,0.0000018146,0.0000018113,0.0000018079, -0.0000018050,0.0000018019,0.0000018005,0.0000017997,0.0000017994, -0.0000017994,0.0000017992,0.0000017995,0.0000018001,0.0000018011, -0.0000018028,0.0000018046,0.0000018064,0.0000018081,0.0000018093, -0.0000018102,0.0000018107,0.0000018109,0.0000018103,0.0000018091, -0.0000018074,0.0000018055,0.0000018036,0.0000018017,0.0000017995, -0.0000017972,0.0000017943,0.0000017918,0.0000017899,0.0000017880, -0.0000017872,0.0000017872,0.0000017878,0.0000017899,0.0000017918, -0.0000017942,0.0000017966,0.0000017992,0.0000018020,0.0000018051, -0.0000018085,0.0000018118,0.0000018149,0.0000018179,0.0000018207, -0.0000018233,0.0000018249,0.0000018262,0.0000018275,0.0000018289, -0.0000018299,0.0000018311,0.0000018328,0.0000018348,0.0000018367, -0.0000018382,0.0000018395,0.0000018410,0.0000018425,0.0000018440, -0.0000018455,0.0000018500,0.0000018515,0.0000018529,0.0000018543, -0.0000018558,0.0000018572,0.0000018583,0.0000018594,0.0000018603, -0.0000018610,0.0000018616,0.0000018614,0.0000018604,0.0000018590, -0.0000018567,0.0000018532,0.0000018491,0.0000018446,0.0000018397, -0.0000018345,0.0000018301,0.0000018268,0.0000018245,0.0000018231, -0.0000018229,0.0000018220,0.0000018211,0.0000018201,0.0000018183, -0.0000018164,0.0000018151,0.0000018141,0.0000018135,0.0000018126, -0.0000018113,0.0000018092,0.0000018064,0.0000018025,0.0000017981, -0.0000017936,0.0000017905,0.0000017886,0.0000017874,0.0000017869, -0.0000017865,0.0000017844,0.0000017812,0.0000017767,0.0000017732, -0.0000017709,0.0000017716,0.0000017748,0.0000017796,0.0000017846, -0.0000017895,0.0000017943,0.0000017996,0.0000018062,0.0000018140, -0.0000018225,0.0000018305,0.0000018371,0.0000018406,0.0000018414, -0.0000018411,0.0000018396,0.0000018375,0.0000018356,0.0000018342, -0.0000018335,0.0000018335,0.0000018342,0.0000018360,0.0000018387, -0.0000018415,0.0000018435,0.0000018443,0.0000018439,0.0000018421, -0.0000018393,0.0000018367,0.0000018352,0.0000018340,0.0000018314, -0.0000018264,0.0000018193,0.0000018112,0.0000018036,0.0000017983, -0.0000017950,0.0000017924,0.0000017896,0.0000017858,0.0000017814, -0.0000017774,0.0000017749,0.0000017745,0.0000017760,0.0000017793, -0.0000017836,0.0000017889,0.0000017954,0.0000018026,0.0000018089, -0.0000018138,0.0000018179,0.0000018235,0.0000018317,0.0000018402, -0.0000018452,0.0000018459,0.0000018449,0.0000018439,0.0000018430, -0.0000018420,0.0000018408,0.0000018398,0.0000018392,0.0000018388, -0.0000018380,0.0000018368,0.0000018351,0.0000018332,0.0000018310, -0.0000018284,0.0000018255,0.0000018226,0.0000018195,0.0000018161, -0.0000018123,0.0000018079,0.0000018031,0.0000017984,0.0000017942, -0.0000017906,0.0000017878,0.0000017858,0.0000017844,0.0000017833, -0.0000017828,0.0000017829,0.0000017831,0.0000017832,0.0000017832, -0.0000017831,0.0000017827,0.0000017815,0.0000017795,0.0000017767, -0.0000017736,0.0000017704,0.0000017671,0.0000017639,0.0000017614, -0.0000017599,0.0000017594,0.0000017593,0.0000017593,0.0000017593, -0.0000017590,0.0000017583,0.0000017576,0.0000017569,0.0000017563, -0.0000017554,0.0000017542,0.0000017532,0.0000017523,0.0000017513, -0.0000017503,0.0000017496,0.0000017492,0.0000017487,0.0000017480, -0.0000017470,0.0000017452,0.0000017429,0.0000017406,0.0000017380, -0.0000017353,0.0000017328,0.0000017314,0.0000017317,0.0000017338, -0.0000017372,0.0000017414,0.0000017456,0.0000017494,0.0000017526, -0.0000017552,0.0000017571,0.0000017584,0.0000017591,0.0000017594, -0.0000017592,0.0000017588,0.0000017587,0.0000017586,0.0000017584, -0.0000017580,0.0000017578,0.0000017580,0.0000017586,0.0000017593, -0.0000017599,0.0000017602,0.0000017603,0.0000017601,0.0000017598, -0.0000017598,0.0000017600,0.0000017603,0.0000017609,0.0000017615, -0.0000017619,0.0000017623,0.0000017624,0.0000017621,0.0000017616, -0.0000017615,0.0000017615,0.0000017618,0.0000017621,0.0000017623, -0.0000017627,0.0000017636,0.0000017654,0.0000017683,0.0000017722, -0.0000017768,0.0000017817,0.0000017864,0.0000017911,0.0000017954, -0.0000017976,0.0000017967,0.0000017963,0.0000017954,0.0000017941, -0.0000017942,0.0000017963,0.0000018011,0.0000018080,0.0000018158, -0.0000018227,0.0000018263,0.0000018266,0.0000018219,0.0000018124, -0.0000018005,0.0000017902,0.0000017865,0.0000017865,0.0000017869, -0.0000017876,0.0000017880,0.0000017879,0.0000017867,0.0000017840, -0.0000017803,0.0000017772,0.0000017752,0.0000017741,0.0000017748, -0.0000017772,0.0000017800,0.0000017831,0.0000017867,0.0000017901, -0.0000017924,0.0000017929,0.0000017919,0.0000017900,0.0000017886, -0.0000017878,0.0000017866,0.0000017852,0.0000017855,0.0000017894, -0.0000017963,0.0000018051,0.0000018148,0.0000018228,0.0000018273, -0.0000018309,0.0000018364,0.0000018407,0.0000018445,0.0000018576, -0.0000018777,0.0000018945,0.0000019089,0.0000019213,0.0000019324, -0.0000019431,0.0000019454,0.0000019468,0.0000019535,0.0000019606, -0.0000019687,0.0000019783,0.0000019831,0.0000019826,0.0000019805, -0.0000019810,0.0000019834,0.0000019847,0.0000019853,0.0000019858, -0.0000019858,0.0000019851,0.0000019844,0.0000019835,0.0000019825, -0.0000019815,0.0000019807,0.0000019804,0.0000019798,0.0000019791, -0.0000019782,0.0000019772,0.0000019762,0.0000019760,0.0000019762, -0.0000019780,0.0000019804,0.0000019844,0.0000019891,0.0000019936, -0.0000019970,0.0000019988,0.0000019992,0.0000019991,0.0000019988, -0.0000019983,0.0000019976,0.0000019968,0.0000019957,0.0000019946, -0.0000019935,0.0000019926,0.0000019918,0.0000019911,0.0000019904, -0.0000019902,0.0000019902,0.0000019901,0.0000019897,0.0000019887, -0.0000019875,0.0000019860,0.0000019845,0.0000019826,0.0000019808, -0.0000019789,0.0000019772,0.0000019755,0.0000019739,0.0000019723, -0.0000019710,0.0000019698,0.0000019687,0.0000019678,0.0000019671, -0.0000019667,0.0000019663,0.0000019661,0.0000019659,0.0000019658, -0.0000019658,0.0000019651,0.0000019643,0.0000019631,0.0000019615, -0.0000019602,0.0000019584,0.0000019565,0.0000019543,0.0000019522, -0.0000019505,0.0000019493,0.0000019482,0.0000019473,0.0000019462, -0.0000019450,0.0000019442,0.0000019432,0.0000019422,0.0000019416, -0.0000019409,0.0000019398,0.0000019383,0.0000019368,0.0000019352, -0.0000019340,0.0000019328,0.0000019314,0.0000019298,0.0000019278, -0.0000019252,0.0000019222,0.0000019189,0.0000019152,0.0000019113, -0.0000019068,0.0000019013,0.0000018950,0.0000018878,0.0000018798, -0.0000018711,0.0000018619,0.0000018525,0.0000018430,0.0000018336, -0.0000018244,0.0000018157,0.0000018074,0.0000017996,0.0000017926, -0.0000017863,0.0000017808,0.0000017757,0.0000017709,0.0000017665, -0.0000017625,0.0000017593,0.0000017569,0.0000017555,0.0000017548, -0.0000017550,0.0000017557,0.0000017570,0.0000017582,0.0000017593, -0.0000017609,0.0000017633,0.0000017649,0.0000017660,0.0000017670, -0.0000017678,0.0000017684,0.0000017689,0.0000017692,0.0000017692, -0.0000017691,0.0000017691,0.0000017691,0.0000017681,0.0000017665, -0.0000017652,0.0000017638,0.0000017620,0.0000017597,0.0000017574, -0.0000017560,0.0000017552,0.0000017544,0.0000017527,0.0000017508, -0.0000017492,0.0000017488,0.0000017493,0.0000017497,0.0000017497, -0.0000017500,0.0000017512,0.0000017534,0.0000017569,0.0000017613, -0.0000017664,0.0000017724,0.0000017797,0.0000017886,0.0000017983, -0.0000018080,0.0000018175,0.0000018268,0.0000018362,0.0000018455, -0.0000018540,0.0000018615,0.0000018684,0.0000018748,0.0000018808, -0.0000018865,0.0000018920,0.0000018968,0.0000019009,0.0000019041, -0.0000019065,0.0000019081,0.0000019091,0.0000019099,0.0000019107, -0.0000019115,0.0000019122,0.0000019130,0.0000019139,0.0000019145, -0.0000019148,0.0000019147,0.0000019142,0.0000019137,0.0000019130, -0.0000019129,0.0000019135,0.0000019146,0.0000019163,0.0000019186, -0.0000019212,0.0000019242,0.0000019274,0.0000019310,0.0000019346, -0.0000019382,0.0000019417,0.0000019448,0.0000019475,0.0000019496, -0.0000019513,0.0000019524,0.0000019532,0.0000019539,0.0000019544, -0.0000019546,0.0000019547,0.0000019548,0.0000019548,0.0000019547, -0.0000019550,0.0000019554,0.0000019558,0.0000019567,0.0000019577, -0.0000019588,0.0000019601,0.0000019617,0.0000019634,0.0000019653, -0.0000019675,0.0000019698,0.0000019717,0.0000019733,0.0000019749, -0.0000019760,0.0000019770,0.0000019781,0.0000019789,0.0000019787, -0.0000019784,0.0000019778,0.0000019774,0.0000019770,0.0000019769, -0.0000019772,0.0000019776,0.0000019783,0.0000019793,0.0000019807, -0.0000019829,0.0000019853,0.0000019877,0.0000019897,0.0000019911, -0.0000019919,0.0000019922,0.0000019925,0.0000019929,0.0000019938, -0.0000019954,0.0000019973,0.0000019988,0.0000019998,0.0000019999, -0.0000019993,0.0000019977,0.0000019954,0.0000019921,0.0000019888, -0.0000019858,0.0000019834,0.0000019824,0.0000019822,0.0000019831, -0.0000019853,0.0000019881,0.0000019906,0.0000019926,0.0000019940, -0.0000019953,0.0000019961,0.0000019969,0.0000019973,0.0000019971, -0.0000019974,0.0000019984,0.0000019989,0.0000019992,0.0000019986, -0.0000019977,0.0000019957,0.0000019932,0.0000019905,0.0000019874, -0.0000019852,0.0000019843,0.0000019846,0.0000019858,0.0000019882, -0.0000019922,0.0000019968,0.0000020014,0.0000020048,0.0000020068, -0.0000020076,0.0000020083,0.0000020097,0.0000020119,0.0000020154, -0.0000020193,0.0000020239,0.0000020282,0.0000020314,0.0000020331, -0.0000020345,0.0000020366,0.0000020374,0.0000020369,0.0000020365, -0.0000020358,0.0000020344,0.0000020332,0.0000020311,0.0000020288, -0.0000020262,0.0000020231,0.0000020211,0.0000020190,0.0000020181, -0.0000020180,0.0000020186,0.0000020194,0.0000020200,0.0000020204, -0.0000020216,0.0000020225,0.0000020236,0.0000020246,0.0000020262, -0.0000020278,0.0000020289,0.0000020293,0.0000020294,0.0000020283, -0.0000020267,0.0000020247,0.0000020232,0.0000020225,0.0000020227, -0.0000020233,0.0000020242,0.0000020249,0.0000020261,0.0000020273, -0.0000020282,0.0000020293,0.0000020307,0.0000020305,0.0000020308, -0.0000020312,0.0000020313,0.0000020298,0.0000020278,0.0000020259, -0.0000020234,0.0000020201,0.0000020172,0.0000020152,0.0000020136, -0.0000020131,0.0000020131,0.0000020129,0.0000020131,0.0000020136, -0.0000020140,0.0000020142,0.0000020134,0.0000020118,0.0000020099, -0.0000020070,0.0000020030,0.0000019993,0.0000019964,0.0000019948, -0.0000019932,0.0000019925,0.0000019923,0.0000019928,0.0000019934, -0.0000019935,0.0000019934,0.0000019937,0.0000019937,0.0000019934, -0.0000019928,0.0000019914,0.0000019898,0.0000019875,0.0000019844, -0.0000019808,0.0000019770,0.0000019735,0.0000019707,0.0000019694, -0.0000019688,0.0000019678,0.0000019654,0.0000019620,0.0000019585, -0.0000019550,0.0000019517,0.0000019489,0.0000019464,0.0000019438, -0.0000019416,0.0000019402,0.0000019390,0.0000019379,0.0000019370, -0.0000019358,0.0000019342,0.0000019324,0.0000019307,0.0000019288, -0.0000019269,0.0000019254,0.0000019246,0.0000019239,0.0000019231, -0.0000019219,0.0000019208,0.0000019195,0.0000019196,0.0000019200, -0.0000019206,0.0000019217,0.0000019226,0.0000019238,0.0000019243, -0.0000019246,0.0000019238,0.0000019240,0.0000019237,0.0000019224, -0.0000019203,0.0000019168,0.0000019123,0.0000019069,0.0000019012, -0.0000018954,0.0000018895,0.0000018843,0.0000018806,0.0000018778, -0.0000018755,0.0000018758,0.0000018759,0.0000018755,0.0000018761, -0.0000018782,0.0000018807,0.0000018838,0.0000018869,0.0000018899, -0.0000018920,0.0000018938,0.0000018963,0.0000018994,0.0000019035, -0.0000019089,0.0000019152,0.0000019214,0.0000019267,0.0000019287, -0.0000019273,0.0000019229,0.0000019169,0.0000019102,0.0000019047, -0.0000019005,0.0000018988,0.0000018976,0.0000018974,0.0000018983, -0.0000018995,0.0000019006,0.0000019011,0.0000019014,0.0000019016, -0.0000019023,0.0000019045,0.0000019074,0.0000019105,0.0000019139, -0.0000019169,0.0000019186,0.0000019182,0.0000019163,0.0000019137, -0.0000019105,0.0000019098,0.0000019117,0.0000019155,0.0000019198, -0.0000019236,0.0000019265,0.0000019278,0.0000019278,0.0000019279, -0.0000019293,0.0000019314,0.0000019346,0.0000019362,0.0000019363, -0.0000019348,0.0000019331,0.0000019294,0.0000019250,0.0000019203, -0.0000019167,0.0000019153,0.0000019153,0.0000019163,0.0000019163, -0.0000019154,0.0000019142,0.0000019133,0.0000019121,0.0000019098, -0.0000019078,0.0000019061,0.0000019038,0.0000019008,0.0000018991, -0.0000018983,0.0000018983,0.0000018986,0.0000018996,0.0000019011, -0.0000019032,0.0000019067,0.0000019108,0.0000019147,0.0000019176, -0.0000019204,0.0000019221,0.0000019226,0.0000019219,0.0000019192, -0.0000019160,0.0000019116,0.0000019074,0.0000019053,0.0000019040, -0.0000019031,0.0000019013,0.0000018991,0.0000018962,0.0000018933, -0.0000018902,0.0000018870,0.0000018839,0.0000018800,0.0000018746, -0.0000018702,0.0000018681,0.0000018659,0.0000018614,0.0000018550, -0.0000018486,0.0000018433,0.0000018403,0.0000018414,0.0000018444, -0.0000018459,0.0000018455,0.0000018436,0.0000018420,0.0000018386, -0.0000018349,0.0000018333,0.0000018343,0.0000018371,0.0000018415, -0.0000018480,0.0000018549,0.0000018600,0.0000018620,0.0000018624, -0.0000018608,0.0000018575,0.0000018552,0.0000018527,0.0000018487, -0.0000018435,0.0000018369,0.0000018315,0.0000018311,0.0000018336, -0.0000018366,0.0000018394,0.0000018422,0.0000018426,0.0000018416, -0.0000018398,0.0000018384,0.0000018377,0.0000018370,0.0000018363, -0.0000018352,0.0000018338,0.0000018320,0.0000018296,0.0000018268, -0.0000018243,0.0000018226,0.0000018209,0.0000018195,0.0000018185, -0.0000018185,0.0000018196,0.0000018218,0.0000018244,0.0000018263, -0.0000018269,0.0000018268,0.0000018253,0.0000018238,0.0000018214, -0.0000018186,0.0000018155,0.0000018123,0.0000018086,0.0000018050, -0.0000018020,0.0000017999,0.0000017985,0.0000017973,0.0000017961, -0.0000017948,0.0000017943,0.0000017942,0.0000017949,0.0000017957, -0.0000017965,0.0000017974,0.0000017981,0.0000017986,0.0000017989, -0.0000017991,0.0000017992,0.0000017993,0.0000017993,0.0000017990, -0.0000017999,0.0000018014,0.0000018039,0.0000018075,0.0000018119, -0.0000018170,0.0000018222,0.0000018273,0.0000018322,0.0000018370, -0.0000018417,0.0000018464,0.0000018516,0.0000018571,0.0000018628, -0.0000018684,0.0000018740,0.0000018799,0.0000018857,0.0000018916, -0.0000018982,0.0000019057,0.0000019143,0.0000019239,0.0000019342, -0.0000019443,0.0000019517,0.0000019552,0.0000019561,0.0000019563, -0.0000019549,0.0000019514,0.0000019469,0.0000019418,0.0000019364, -0.0000019309,0.0000019249,0.0000019189,0.0000019133,0.0000019090, -0.0000019062,0.0000019046,0.0000019037,0.0000019022,0.0000019000, -0.0000018971,0.0000018936,0.0000018899,0.0000018857,0.0000018810, -0.0000018764,0.0000018724,0.0000018690,0.0000018656,0.0000018620, -0.0000018594,0.0000018584,0.0000018584,0.0000018594,0.0000018609, -0.0000018625,0.0000018633,0.0000018631,0.0000018630,0.0000018635, -0.0000018642,0.0000018638,0.0000018619,0.0000018591,0.0000018562, -0.0000018541,0.0000018536,0.0000018543,0.0000018550,0.0000018546, -0.0000018529,0.0000018500,0.0000018467,0.0000018436,0.0000018413, -0.0000018392,0.0000018371,0.0000018356,0.0000018351,0.0000018355, -0.0000018364,0.0000018375,0.0000018383,0.0000018390,0.0000018400, -0.0000018412,0.0000018427,0.0000018444,0.0000018457,0.0000018468, -0.0000018483,0.0000018493,0.0000018490,0.0000018460,0.0000018397, -0.0000018309,0.0000018220,0.0000018155,0.0000018132,0.0000018140, -0.0000018157,0.0000018182,0.0000018217,0.0000018268,0.0000018334, -0.0000018407,0.0000018480,0.0000018547,0.0000018602,0.0000018642, -0.0000018669,0.0000018684,0.0000018689,0.0000018688,0.0000018684, -0.0000018677,0.0000018669,0.0000018655,0.0000018636,0.0000018611, -0.0000018583,0.0000018554,0.0000018525,0.0000018499,0.0000018472, -0.0000018442,0.0000018413,0.0000018390,0.0000018377,0.0000018372, -0.0000018372,0.0000018379,0.0000018390,0.0000018405,0.0000018427, -0.0000018459,0.0000018498,0.0000018541,0.0000018572,0.0000018597, -0.0000018604,0.0000018599,0.0000018586,0.0000018571,0.0000018556, -0.0000018544,0.0000018534,0.0000018527,0.0000018516,0.0000018502, -0.0000018487,0.0000018471,0.0000018455,0.0000018442,0.0000018433, -0.0000018429,0.0000018427,0.0000018439,0.0000018468,0.0000018507, -0.0000018541,0.0000018566,0.0000018573,0.0000018559,0.0000018524, -0.0000018480,0.0000018438,0.0000018408,0.0000018400,0.0000018403, -0.0000018431,0.0000018482,0.0000018530,0.0000018552,0.0000018554, -0.0000018581,0.0000018648,0.0000018662,0.0000018667,0.0000018780, -0.0000018798,0.0000018720,0.0000018722,0.0000018833,0.0000018929, -0.0000018944,0.0000018880,0.0000018772,0.0000018728,0.0000018778, -0.0000018920,0.0000018963,0.0000018900,0.0000018817,0.0000018743, -0.0000018678,0.0000018629,0.0000018606,0.0000018622,0.0000018703, -0.0000018802,0.0000018854,0.0000018859,0.0000018858,0.0000018869, -0.0000018898,0.0000018928,0.0000018952,0.0000018966,0.0000018971, -0.0000018977,0.0000018982,0.0000018978,0.0000018969,0.0000018977, -0.0000018996,0.0000019007,0.0000018993,0.0000018805,0.0000018390, -0.0000017992,0.0000017820,0.0000017781,0.0000017756,0.0000017739, -0.0000017732,0.0000017732,0.0000017737,0.0000017753,0.0000017778, -0.0000017806,0.0000017834,0.0000017869,0.0000017920,0.0000017984, -0.0000018049,0.0000018110,0.0000018169,0.0000018225,0.0000018272, -0.0000018305,0.0000018327,0.0000018340,0.0000018340,0.0000018330, -0.0000018308,0.0000018275,0.0000018240,0.0000018210,0.0000018193, -0.0000018191,0.0000018202,0.0000018213,0.0000018218,0.0000018218, -0.0000018216,0.0000018218,0.0000018232,0.0000018261,0.0000018293, -0.0000018324,0.0000018347,0.0000018364,0.0000018387,0.0000018428, -0.0000018497,0.0000018585,0.0000018642,0.0000018635,0.0000018549, -0.0000018422,0.0000018323,0.0000018288,0.0000018293,0.0000018313, -0.0000018329,0.0000018323,0.0000018292,0.0000018247,0.0000018207, -0.0000018176,0.0000018155,0.0000018135,0.0000018108,0.0000018077, -0.0000018048,0.0000018025,0.0000018012,0.0000018005,0.0000018006, -0.0000018011,0.0000018018,0.0000018029,0.0000018044,0.0000018060, -0.0000018076,0.0000018089,0.0000018099,0.0000018106,0.0000018110, -0.0000018108,0.0000018100,0.0000018086,0.0000018071,0.0000018053, -0.0000018034,0.0000018014,0.0000017996,0.0000017972,0.0000017948, -0.0000017924,0.0000017904,0.0000017894,0.0000017897,0.0000017910, -0.0000017936,0.0000017968,0.0000018001,0.0000018037,0.0000018071, -0.0000018100,0.0000018130,0.0000018160,0.0000018190,0.0000018216, -0.0000018239,0.0000018259,0.0000018278,0.0000018289,0.0000018298, -0.0000018306,0.0000018314,0.0000018321,0.0000018332,0.0000018346, -0.0000018360,0.0000018377,0.0000018395,0.0000018415,0.0000018434, -0.0000018451,0.0000018467,0.0000018483,0.0000018497,0.0000018514, -0.0000018530,0.0000018543,0.0000018557,0.0000018570,0.0000018583, -0.0000018595,0.0000018606,0.0000018620,0.0000018631,0.0000018641, -0.0000018645,0.0000018644,0.0000018640,0.0000018629,0.0000018609, -0.0000018584,0.0000018550,0.0000018507,0.0000018456,0.0000018407, -0.0000018366,0.0000018333,0.0000018308,0.0000018290,0.0000018272, -0.0000018256,0.0000018240,0.0000018221,0.0000018204,0.0000018191, -0.0000018183,0.0000018177,0.0000018169,0.0000018156,0.0000018136, -0.0000018108,0.0000018068,0.0000018021,0.0000017972,0.0000017925, -0.0000017884,0.0000017857,0.0000017837,0.0000017828,0.0000017817, -0.0000017797,0.0000017768,0.0000017737,0.0000017711,0.0000017704, -0.0000017722,0.0000017754,0.0000017801,0.0000017849,0.0000017891, -0.0000017929,0.0000017969,0.0000018021,0.0000018089,0.0000018171, -0.0000018257,0.0000018333,0.0000018394,0.0000018412,0.0000018411, -0.0000018397,0.0000018376,0.0000018358,0.0000018347,0.0000018341, -0.0000018342,0.0000018350,0.0000018371,0.0000018400,0.0000018430, -0.0000018447,0.0000018452,0.0000018441,0.0000018414,0.0000018383, -0.0000018356,0.0000018329,0.0000018293,0.0000018241,0.0000018170, -0.0000018086,0.0000018008,0.0000017949,0.0000017912,0.0000017889, -0.0000017867,0.0000017842,0.0000017811,0.0000017785,0.0000017768, -0.0000017766,0.0000017772,0.0000017788,0.0000017810,0.0000017842, -0.0000017891,0.0000017955,0.0000018025,0.0000018088,0.0000018135, -0.0000018184,0.0000018257,0.0000018341,0.0000018401,0.0000018416, -0.0000018411,0.0000018403,0.0000018399,0.0000018392,0.0000018384, -0.0000018375,0.0000018364,0.0000018350,0.0000018332,0.0000018311, -0.0000018289,0.0000018265,0.0000018234,0.0000018199,0.0000018161, -0.0000018122,0.0000018084,0.0000018039,0.0000017990,0.0000017938, -0.0000017886,0.0000017837,0.0000017796,0.0000017762,0.0000017734, -0.0000017711,0.0000017696,0.0000017688,0.0000017688,0.0000017695, -0.0000017704,0.0000017713,0.0000017719,0.0000017720,0.0000017714, -0.0000017702,0.0000017683,0.0000017661,0.0000017640,0.0000017620, -0.0000017604,0.0000017594,0.0000017592,0.0000017592,0.0000017595, -0.0000017598,0.0000017601,0.0000017602,0.0000017600,0.0000017593, -0.0000017580,0.0000017562,0.0000017538,0.0000017512,0.0000017489, -0.0000017469,0.0000017453,0.0000017441,0.0000017434,0.0000017427, -0.0000017421,0.0000017412,0.0000017402,0.0000017389,0.0000017376, -0.0000017364,0.0000017353,0.0000017339,0.0000017326,0.0000017320, -0.0000017322,0.0000017335,0.0000017358,0.0000017390,0.0000017425, -0.0000017459,0.0000017489,0.0000017513,0.0000017533,0.0000017548, -0.0000017559,0.0000017567,0.0000017570,0.0000017571,0.0000017572, -0.0000017574,0.0000017575,0.0000017572,0.0000017569,0.0000017568, -0.0000017571,0.0000017576,0.0000017582,0.0000017588,0.0000017592, -0.0000017593,0.0000017593,0.0000017591,0.0000017588,0.0000017588, -0.0000017591,0.0000017592,0.0000017592,0.0000017592,0.0000017589, -0.0000017585,0.0000017578,0.0000017572,0.0000017565,0.0000017557, -0.0000017547,0.0000017537,0.0000017525,0.0000017514,0.0000017509, -0.0000017514,0.0000017527,0.0000017551,0.0000017584,0.0000017623, -0.0000017672,0.0000017728,0.0000017784,0.0000017841,0.0000017897, -0.0000017932,0.0000017934,0.0000017928,0.0000017923,0.0000017929, -0.0000017965,0.0000018034,0.0000018130,0.0000018225,0.0000018279, -0.0000018292,0.0000018263,0.0000018179,0.0000018057,0.0000017935, -0.0000017866,0.0000017857,0.0000017858,0.0000017856,0.0000017849, -0.0000017838,0.0000017818,0.0000017787,0.0000017759,0.0000017739, -0.0000017733,0.0000017750,0.0000017778,0.0000017806,0.0000017831, -0.0000017857,0.0000017887,0.0000017914,0.0000017924,0.0000017911, -0.0000017875,0.0000017826,0.0000017775,0.0000017723,0.0000017690, -0.0000017697,0.0000017753,0.0000017839,0.0000017950,0.0000018077, -0.0000018188,0.0000018252,0.0000018287,0.0000018337,0.0000018380, -0.0000018428,0.0000018572,0.0000018773,0.0000018937,0.0000019078, -0.0000019193,0.0000019308,0.0000019408,0.0000019421,0.0000019436, -0.0000019506,0.0000019584,0.0000019665,0.0000019746,0.0000019787, -0.0000019785,0.0000019775,0.0000019785,0.0000019803,0.0000019810, -0.0000019813,0.0000019817,0.0000019818,0.0000019815,0.0000019808, -0.0000019803,0.0000019800,0.0000019799,0.0000019804,0.0000019805, -0.0000019807,0.0000019807,0.0000019805,0.0000019805,0.0000019799, -0.0000019792,0.0000019785,0.0000019785,0.0000019786,0.0000019796, -0.0000019810,0.0000019839,0.0000019871,0.0000019900,0.0000019922, -0.0000019941,0.0000019950,0.0000019954,0.0000019953,0.0000019947, -0.0000019938,0.0000019927,0.0000019917,0.0000019908,0.0000019899, -0.0000019893,0.0000019894,0.0000019894,0.0000019893,0.0000019890, -0.0000019883,0.0000019873,0.0000019861,0.0000019846,0.0000019830, -0.0000019816,0.0000019804,0.0000019792,0.0000019780,0.0000019768, -0.0000019756,0.0000019747,0.0000019737,0.0000019727,0.0000019718, -0.0000019709,0.0000019704,0.0000019701,0.0000019697,0.0000019691, -0.0000019683,0.0000019679,0.0000019665,0.0000019648,0.0000019623, -0.0000019597,0.0000019567,0.0000019535,0.0000019500,0.0000019466, -0.0000019436,0.0000019416,0.0000019405,0.0000019399,0.0000019397, -0.0000019393,0.0000019386,0.0000019376,0.0000019364,0.0000019351, -0.0000019338,0.0000019323,0.0000019307,0.0000019290,0.0000019273, -0.0000019257,0.0000019243,0.0000019225,0.0000019201,0.0000019168, -0.0000019123,0.0000019066,0.0000018996,0.0000018915,0.0000018827, -0.0000018735,0.0000018640,0.0000018536,0.0000018427,0.0000018316, -0.0000018205,0.0000018098,0.0000017998,0.0000017905,0.0000017821, -0.0000017743,0.0000017674,0.0000017617,0.0000017567,0.0000017525, -0.0000017494,0.0000017474,0.0000017461,0.0000017456,0.0000017452, -0.0000017451,0.0000017452,0.0000017456,0.0000017461,0.0000017470, -0.0000017484,0.0000017502,0.0000017521,0.0000017541,0.0000017557, -0.0000017569,0.0000017585,0.0000017608,0.0000017626,0.0000017639, -0.0000017651,0.0000017659,0.0000017664,0.0000017668,0.0000017671, -0.0000017672,0.0000017672,0.0000017672,0.0000017672,0.0000017668, -0.0000017659,0.0000017647,0.0000017636,0.0000017623,0.0000017608, -0.0000017589,0.0000017570,0.0000017554,0.0000017539,0.0000017520, -0.0000017505,0.0000017492,0.0000017484,0.0000017479,0.0000017471, -0.0000017462,0.0000017453,0.0000017447,0.0000017445,0.0000017448, -0.0000017451,0.0000017460,0.0000017478,0.0000017507,0.0000017543, -0.0000017589,0.0000017640,0.0000017697,0.0000017756,0.0000017818, -0.0000017887,0.0000017959,0.0000018034,0.0000018108,0.0000018182, -0.0000018259,0.0000018341,0.0000018433,0.0000018528,0.0000018621, -0.0000018709,0.0000018793,0.0000018867,0.0000018927,0.0000018975, -0.0000019014,0.0000019042,0.0000019064,0.0000019083,0.0000019098, -0.0000019109,0.0000019118,0.0000019123,0.0000019125,0.0000019123, -0.0000019119,0.0000019117,0.0000019116,0.0000019120,0.0000019126, -0.0000019133,0.0000019143,0.0000019156,0.0000019170,0.0000019190, -0.0000019215,0.0000019246,0.0000019281,0.0000019317,0.0000019353, -0.0000019386,0.0000019414,0.0000019439,0.0000019463,0.0000019484, -0.0000019503,0.0000019516,0.0000019525,0.0000019530,0.0000019534, -0.0000019533,0.0000019535,0.0000019536,0.0000019535,0.0000019537, -0.0000019539,0.0000019542,0.0000019548,0.0000019556,0.0000019567, -0.0000019579,0.0000019593,0.0000019609,0.0000019632,0.0000019652, -0.0000019668,0.0000019680,0.0000019700,0.0000019722,0.0000019740, -0.0000019753,0.0000019759,0.0000019760,0.0000019753,0.0000019738, -0.0000019724,0.0000019716,0.0000019713,0.0000019716,0.0000019730, -0.0000019753,0.0000019778,0.0000019805,0.0000019834,0.0000019864, -0.0000019888,0.0000019906,0.0000019917,0.0000019924,0.0000019927, -0.0000019930,0.0000019938,0.0000019951,0.0000019967,0.0000019981, -0.0000019989,0.0000019987,0.0000019980,0.0000019962,0.0000019938, -0.0000019908,0.0000019874,0.0000019848,0.0000019832,0.0000019823, -0.0000019822,0.0000019833,0.0000019856,0.0000019879,0.0000019901, -0.0000019920,0.0000019941,0.0000019962,0.0000019972,0.0000019977, -0.0000019975,0.0000019982,0.0000019989,0.0000019998,0.0000020005, -0.0000020009,0.0000020013,0.0000020004,0.0000019994,0.0000019971, -0.0000019941,0.0000019904,0.0000019858,0.0000019816,0.0000019764, -0.0000019736,0.0000019743,0.0000019779,0.0000019838,0.0000019911, -0.0000019976,0.0000020029,0.0000020053,0.0000020060,0.0000020062, -0.0000020062,0.0000020068,0.0000020085,0.0000020117,0.0000020162, -0.0000020215,0.0000020273,0.0000020330,0.0000020369,0.0000020382, -0.0000020396,0.0000020415,0.0000020417,0.0000020413,0.0000020402, -0.0000020383,0.0000020354,0.0000020319,0.0000020276,0.0000020235, -0.0000020206,0.0000020186,0.0000020174,0.0000020156,0.0000020142, -0.0000020125,0.0000020113,0.0000020110,0.0000020113,0.0000020122, -0.0000020138,0.0000020167,0.0000020200,0.0000020225,0.0000020241, -0.0000020244,0.0000020239,0.0000020230,0.0000020220,0.0000020215, -0.0000020214,0.0000020220,0.0000020231,0.0000020243,0.0000020254, -0.0000020262,0.0000020267,0.0000020277,0.0000020284,0.0000020285, -0.0000020286,0.0000020284,0.0000020269,0.0000020241,0.0000020206, -0.0000020169,0.0000020126,0.0000020082,0.0000020046,0.0000020026, -0.0000020027,0.0000020041,0.0000020052,0.0000020070,0.0000020090, -0.0000020108,0.0000020118,0.0000020117,0.0000020111,0.0000020099, -0.0000020074,0.0000020037,0.0000020002,0.0000019967,0.0000019937, -0.0000019917,0.0000019901,0.0000019880,0.0000019860,0.0000019849, -0.0000019847,0.0000019849,0.0000019858,0.0000019874,0.0000019883, -0.0000019889,0.0000019893,0.0000019888,0.0000019874,0.0000019847, -0.0000019817,0.0000019782,0.0000019747,0.0000019714,0.0000019696, -0.0000019689,0.0000019685,0.0000019675,0.0000019665,0.0000019642, -0.0000019611,0.0000019579,0.0000019548,0.0000019517,0.0000019487, -0.0000019462,0.0000019442,0.0000019425,0.0000019414,0.0000019408, -0.0000019405,0.0000019399,0.0000019393,0.0000019387,0.0000019381, -0.0000019374,0.0000019366,0.0000019358,0.0000019353,0.0000019346, -0.0000019335,0.0000019321,0.0000019299,0.0000019271,0.0000019249, -0.0000019227,0.0000019208,0.0000019201,0.0000019187,0.0000019180, -0.0000019180,0.0000019190,0.0000019204,0.0000019223,0.0000019244, -0.0000019253,0.0000019259,0.0000019251,0.0000019235,0.0000019207, -0.0000019168,0.0000019119,0.0000019060,0.0000019001,0.0000018945, -0.0000018891,0.0000018845,0.0000018808,0.0000018768,0.0000018743, -0.0000018742,0.0000018748,0.0000018775,0.0000018814,0.0000018858, -0.0000018895,0.0000018916,0.0000018929,0.0000018935,0.0000018940, -0.0000018953,0.0000018980,0.0000019023,0.0000019082,0.0000019140, -0.0000019187,0.0000019207,0.0000019184,0.0000019161,0.0000019115, -0.0000019065,0.0000019018,0.0000018977,0.0000018948,0.0000018937, -0.0000018941,0.0000018950,0.0000018957,0.0000018961,0.0000018957, -0.0000018955,0.0000018967,0.0000018984,0.0000019000,0.0000019020, -0.0000019044,0.0000019067,0.0000019088,0.0000019103,0.0000019110, -0.0000019108,0.0000019114,0.0000019122,0.0000019127,0.0000019137, -0.0000019161,0.0000019194,0.0000019223,0.0000019248,0.0000019262, -0.0000019272,0.0000019277,0.0000019289,0.0000019294,0.0000019296, -0.0000019304,0.0000019305,0.0000019286,0.0000019262,0.0000019228, -0.0000019188,0.0000019152,0.0000019130,0.0000019130,0.0000019131, -0.0000019130,0.0000019123,0.0000019118,0.0000019112,0.0000019100, -0.0000019092,0.0000019086,0.0000019070,0.0000019046,0.0000019027, -0.0000019016,0.0000019014,0.0000019016,0.0000019023,0.0000019035, -0.0000019051,0.0000019075,0.0000019106,0.0000019143,0.0000019169, -0.0000019193,0.0000019204,0.0000019207,0.0000019193,0.0000019163, -0.0000019126,0.0000019080,0.0000019035,0.0000019007,0.0000018995, -0.0000018993,0.0000018991,0.0000018974,0.0000018941,0.0000018903, -0.0000018866,0.0000018826,0.0000018788,0.0000018748,0.0000018700, -0.0000018662,0.0000018642,0.0000018617,0.0000018567,0.0000018496, -0.0000018426,0.0000018360,0.0000018321,0.0000018333,0.0000018359, -0.0000018371,0.0000018371,0.0000018363,0.0000018359,0.0000018337, -0.0000018313,0.0000018306,0.0000018321,0.0000018353,0.0000018397, -0.0000018461,0.0000018535,0.0000018594,0.0000018626,0.0000018639, -0.0000018627,0.0000018603,0.0000018577,0.0000018540,0.0000018505, -0.0000018458,0.0000018388,0.0000018335,0.0000018318,0.0000018328, -0.0000018341,0.0000018366,0.0000018399,0.0000018418,0.0000018406, -0.0000018386,0.0000018369,0.0000018359,0.0000018353,0.0000018349, -0.0000018337,0.0000018322,0.0000018308,0.0000018292,0.0000018271, -0.0000018252,0.0000018237,0.0000018222,0.0000018204,0.0000018185, -0.0000018172,0.0000018164,0.0000018174,0.0000018193,0.0000018212, -0.0000018227,0.0000018236,0.0000018236,0.0000018225,0.0000018211, -0.0000018195,0.0000018178,0.0000018158,0.0000018131,0.0000018100, -0.0000018072,0.0000018049,0.0000018030,0.0000018012,0.0000017990, -0.0000017967,0.0000017950,0.0000017943,0.0000017943,0.0000017944, -0.0000017950,0.0000017958,0.0000017966,0.0000017973,0.0000017977, -0.0000017982,0.0000017987,0.0000017991,0.0000017992,0.0000017996, -0.0000017999,0.0000018001,0.0000018007,0.0000018016,0.0000018038, -0.0000018073,0.0000018117,0.0000018169,0.0000018224,0.0000018277, -0.0000018326,0.0000018376,0.0000018425,0.0000018477,0.0000018532, -0.0000018590,0.0000018648,0.0000018702,0.0000018752,0.0000018798, -0.0000018844,0.0000018892,0.0000018954,0.0000019038,0.0000019153, -0.0000019285,0.0000019412,0.0000019509,0.0000019569,0.0000019587, -0.0000019587,0.0000019568,0.0000019527,0.0000019480,0.0000019426, -0.0000019364,0.0000019293,0.0000019216,0.0000019143,0.0000019083, -0.0000019042,0.0000019016,0.0000019006,0.0000019001,0.0000018987, -0.0000018964,0.0000018933,0.0000018902,0.0000018867,0.0000018826, -0.0000018785,0.0000018747,0.0000018712,0.0000018676,0.0000018640, -0.0000018606,0.0000018584,0.0000018578,0.0000018580,0.0000018590, -0.0000018603,0.0000018613,0.0000018616,0.0000018617,0.0000018623, -0.0000018638,0.0000018653,0.0000018653,0.0000018634,0.0000018605, -0.0000018575,0.0000018548,0.0000018533,0.0000018527,0.0000018523, -0.0000018512,0.0000018492,0.0000018468,0.0000018441,0.0000018408, -0.0000018377,0.0000018355,0.0000018345,0.0000018346,0.0000018356, -0.0000018370,0.0000018386,0.0000018399,0.0000018409,0.0000018422, -0.0000018437,0.0000018453,0.0000018467,0.0000018473,0.0000018481, -0.0000018492,0.0000018493,0.0000018482,0.0000018452,0.0000018394, -0.0000018314,0.0000018232,0.0000018173,0.0000018151,0.0000018158, -0.0000018170,0.0000018193,0.0000018226,0.0000018269,0.0000018317, -0.0000018377,0.0000018447,0.0000018516,0.0000018576,0.0000018623, -0.0000018658,0.0000018678,0.0000018685,0.0000018684,0.0000018679, -0.0000018670,0.0000018660,0.0000018648,0.0000018633,0.0000018615, -0.0000018596,0.0000018576,0.0000018556,0.0000018534,0.0000018510, -0.0000018487,0.0000018469,0.0000018457,0.0000018451,0.0000018450, -0.0000018455,0.0000018466,0.0000018480,0.0000018498,0.0000018512, -0.0000018537,0.0000018552,0.0000018556,0.0000018554,0.0000018548, -0.0000018537,0.0000018525,0.0000018516,0.0000018509,0.0000018505, -0.0000018503,0.0000018497,0.0000018486,0.0000018471,0.0000018454, -0.0000018441,0.0000018432,0.0000018429,0.0000018431,0.0000018438, -0.0000018456,0.0000018484,0.0000018507,0.0000018528,0.0000018528, -0.0000018516,0.0000018488,0.0000018453,0.0000018422,0.0000018401, -0.0000018395,0.0000018398,0.0000018417,0.0000018457,0.0000018509, -0.0000018549,0.0000018562,0.0000018554,0.0000018556,0.0000018612, -0.0000018659,0.0000018659,0.0000018758,0.0000018825,0.0000018746, -0.0000018723,0.0000018822,0.0000018902,0.0000018937,0.0000018931, -0.0000018833,0.0000018739,0.0000018720,0.0000018754,0.0000018881, -0.0000018968,0.0000018935,0.0000018860,0.0000018796,0.0000018738, -0.0000018695,0.0000018686,0.0000018713,0.0000018775,0.0000018833, -0.0000018859,0.0000018861,0.0000018860,0.0000018865,0.0000018883, -0.0000018906,0.0000018930,0.0000018950,0.0000018966,0.0000018978, -0.0000018977,0.0000018970,0.0000018976,0.0000018991,0.0000018995, -0.0000018891,0.0000018542,0.0000018078,0.0000017801,0.0000017738, -0.0000017724,0.0000017707,0.0000017702,0.0000017700,0.0000017696, -0.0000017695,0.0000017702,0.0000017723,0.0000017750,0.0000017778, -0.0000017810,0.0000017856,0.0000017916,0.0000017980,0.0000018037, -0.0000018087,0.0000018130,0.0000018167,0.0000018193,0.0000018209, -0.0000018213,0.0000018206,0.0000018191,0.0000018173,0.0000018156, -0.0000018139,0.0000018128,0.0000018126,0.0000018133,0.0000018143, -0.0000018151,0.0000018153,0.0000018149,0.0000018146,0.0000018143, -0.0000018145,0.0000018158,0.0000018179,0.0000018202,0.0000018224, -0.0000018241,0.0000018254,0.0000018268,0.0000018296,0.0000018352, -0.0000018445,0.0000018553,0.0000018614,0.0000018579,0.0000018470, -0.0000018354,0.0000018296,0.0000018281,0.0000018296,0.0000018319, -0.0000018328,0.0000018319,0.0000018285,0.0000018240,0.0000018206, -0.0000018182,0.0000018169,0.0000018154,0.0000018130,0.0000018102, -0.0000018074,0.0000018052,0.0000018039,0.0000018034,0.0000018035, -0.0000018040,0.0000018053,0.0000018070,0.0000018086,0.0000018103, -0.0000018117,0.0000018128,0.0000018135,0.0000018138,0.0000018135, -0.0000018126,0.0000018115,0.0000018100,0.0000018084,0.0000018070, -0.0000018059,0.0000018047,0.0000018034,0.0000018016,0.0000017999, -0.0000017992,0.0000017996,0.0000018010,0.0000018035,0.0000018067, -0.0000018100,0.0000018132,0.0000018160,0.0000018179,0.0000018195, -0.0000018211,0.0000018232,0.0000018253,0.0000018270,0.0000018285, -0.0000018298,0.0000018304,0.0000018309,0.0000018311,0.0000018314, -0.0000018317,0.0000018324,0.0000018336,0.0000018348,0.0000018362, -0.0000018378,0.0000018397,0.0000018419,0.0000018439,0.0000018458, -0.0000018478,0.0000018465,0.0000018484,0.0000018504,0.0000018520, -0.0000018535,0.0000018548,0.0000018562,0.0000018578,0.0000018593, -0.0000018609,0.0000018624,0.0000018638,0.0000018647,0.0000018652, -0.0000018654,0.0000018651,0.0000018646,0.0000018637,0.0000018623, -0.0000018603,0.0000018572,0.0000018530,0.0000018487,0.0000018449, -0.0000018410,0.0000018378,0.0000018348,0.0000018319,0.0000018292, -0.0000018268,0.0000018246,0.0000018225,0.0000018210,0.0000018202, -0.0000018198,0.0000018193,0.0000018184,0.0000018170,0.0000018145, -0.0000018111,0.0000018068,0.0000018021,0.0000017970,0.0000017917, -0.0000017868,0.0000017834,0.0000017815,0.0000017801,0.0000017787, -0.0000017771,0.0000017751,0.0000017732,0.0000017723,0.0000017723, -0.0000017744,0.0000017777,0.0000017821,0.0000017862,0.0000017899, -0.0000017928,0.0000017956,0.0000017993,0.0000018047,0.0000018119, -0.0000018208,0.0000018297,0.0000018370,0.0000018399,0.0000018403, -0.0000018394,0.0000018375,0.0000018359,0.0000018349,0.0000018343, -0.0000018341,0.0000018351,0.0000018381,0.0000018420,0.0000018452, -0.0000018463,0.0000018454,0.0000018427,0.0000018389,0.0000018348, -0.0000018306,0.0000018263,0.0000018208,0.0000018135,0.0000018051, -0.0000017972,0.0000017911,0.0000017873,0.0000017852,0.0000017839, -0.0000017826,0.0000017815,0.0000017806,0.0000017799,0.0000017795, -0.0000017796,0.0000017799,0.0000017802,0.0000017811,0.0000017838, -0.0000017889,0.0000017959,0.0000018032,0.0000018089,0.0000018138, -0.0000018199,0.0000018277,0.0000018344,0.0000018372,0.0000018373, -0.0000018371,0.0000018371,0.0000018370,0.0000018362,0.0000018346, -0.0000018326,0.0000018302,0.0000018276,0.0000018251,0.0000018225, -0.0000018194,0.0000018155,0.0000018112,0.0000018069,0.0000018025, -0.0000017981,0.0000017933,0.0000017882,0.0000017830,0.0000017780, -0.0000017733,0.0000017691,0.0000017655,0.0000017624,0.0000017602, -0.0000017590,0.0000017587,0.0000017592,0.0000017602,0.0000017615, -0.0000017626,0.0000017633,0.0000017635,0.0000017633,0.0000017626, -0.0000017617,0.0000017607,0.0000017599,0.0000017593,0.0000017590, -0.0000017590,0.0000017593,0.0000017598,0.0000017603,0.0000017608, -0.0000017608,0.0000017600,0.0000017584,0.0000017559,0.0000017528, -0.0000017497,0.0000017473,0.0000017458,0.0000017448,0.0000017440, -0.0000017434,0.0000017428,0.0000017420,0.0000017410,0.0000017395, -0.0000017374,0.0000017349,0.0000017324,0.0000017302,0.0000017290, -0.0000017287,0.0000017290,0.0000017299,0.0000017315,0.0000017336, -0.0000017362,0.0000017390,0.0000017421,0.0000017450,0.0000017476, -0.0000017498,0.0000017515,0.0000017531,0.0000017544,0.0000017553, -0.0000017557,0.0000017560,0.0000017563,0.0000017567,0.0000017571, -0.0000017569,0.0000017566,0.0000017561,0.0000017558,0.0000017559, -0.0000017564,0.0000017572,0.0000017580,0.0000017588,0.0000017592, -0.0000017593,0.0000017598,0.0000017602,0.0000017605,0.0000017605, -0.0000017605,0.0000017604,0.0000017600,0.0000017595,0.0000017589, -0.0000017584,0.0000017576,0.0000017566,0.0000017554,0.0000017540, -0.0000017523,0.0000017505,0.0000017495,0.0000017487,0.0000017487, -0.0000017487,0.0000017492,0.0000017495,0.0000017507,0.0000017529, -0.0000017561,0.0000017608,0.0000017673,0.0000017750,0.0000017827, -0.0000017890,0.0000017915,0.0000017912,0.0000017915,0.0000017947, -0.0000018018,0.0000018119,0.0000018223,0.0000018292,0.0000018324, -0.0000018307,0.0000018225,0.0000018090,0.0000017950,0.0000017859, -0.0000017838,0.0000017831,0.0000017825,0.0000017811,0.0000017792, -0.0000017774,0.0000017755,0.0000017734,0.0000017729,0.0000017746, -0.0000017774,0.0000017803,0.0000017830,0.0000017854,0.0000017876, -0.0000017898,0.0000017910,0.0000017900,0.0000017855,0.0000017785, -0.0000017700,0.0000017615,0.0000017566,0.0000017575,0.0000017638, -0.0000017728,0.0000017846,0.0000017997,0.0000018145,0.0000018231, -0.0000018261,0.0000018304,0.0000018353,0.0000018410,0.0000018561, -0.0000018760,0.0000018924,0.0000019061,0.0000019174,0.0000019289, -0.0000019381,0.0000019387,0.0000019401,0.0000019476,0.0000019563, -0.0000019636,0.0000019703,0.0000019739,0.0000019741,0.0000019741, -0.0000019753,0.0000019767,0.0000019772,0.0000019772,0.0000019774, -0.0000019776,0.0000019771,0.0000019765,0.0000019761,0.0000019761, -0.0000019769,0.0000019782,0.0000019791,0.0000019798,0.0000019803, -0.0000019807,0.0000019809,0.0000019813,0.0000019810,0.0000019804, -0.0000019800,0.0000019797,0.0000019798,0.0000019803,0.0000019810, -0.0000019822,0.0000019836,0.0000019854,0.0000019870,0.0000019883, -0.0000019891,0.0000019896,0.0000019895,0.0000019890,0.0000019884, -0.0000019879,0.0000019874,0.0000019872,0.0000019875,0.0000019876, -0.0000019879,0.0000019880,0.0000019879,0.0000019872,0.0000019863, -0.0000019851,0.0000019837,0.0000019824,0.0000019812,0.0000019800, -0.0000019787,0.0000019776,0.0000019766,0.0000019757,0.0000019748, -0.0000019739,0.0000019729,0.0000019718,0.0000019708,0.0000019700, -0.0000019690,0.0000019679,0.0000019666,0.0000019648,0.0000019622, -0.0000019589,0.0000019550,0.0000019511,0.0000019475,0.0000019443, -0.0000019413,0.0000019390,0.0000019372,0.0000019364,0.0000019364, -0.0000019363,0.0000019357,0.0000019343,0.0000019323,0.0000019299, -0.0000019276,0.0000019257,0.0000019241,0.0000019225,0.0000019207, -0.0000019186,0.0000019159,0.0000019123,0.0000019078,0.0000019021, -0.0000018948,0.0000018859,0.0000018756,0.0000018640,0.0000018515, -0.0000018386,0.0000018258,0.0000018136,0.0000018026,0.0000017921, -0.0000017824,0.0000017738,0.0000017661,0.0000017596,0.0000017545, -0.0000017504,0.0000017470,0.0000017442,0.0000017417,0.0000017402, -0.0000017392,0.0000017384,0.0000017382,0.0000017385,0.0000017393, -0.0000017407,0.0000017421,0.0000017433,0.0000017442,0.0000017448, -0.0000017452,0.0000017457,0.0000017464,0.0000017472,0.0000017480, -0.0000017489,0.0000017496,0.0000017500,0.0000017506,0.0000017514, -0.0000017524,0.0000017532,0.0000017540,0.0000017546,0.0000017550, -0.0000017553,0.0000017557,0.0000017560,0.0000017562,0.0000017565, -0.0000017568,0.0000017568,0.0000017564,0.0000017559,0.0000017553, -0.0000017545,0.0000017538,0.0000017525,0.0000017508,0.0000017493, -0.0000017482,0.0000017471,0.0000017461,0.0000017450,0.0000017441, -0.0000017433,0.0000017425,0.0000017421,0.0000017417,0.0000017414, -0.0000017416,0.0000017422,0.0000017430,0.0000017440,0.0000017454, -0.0000017468,0.0000017484,0.0000017509,0.0000017539,0.0000017563, -0.0000017573,0.0000017584,0.0000017607,0.0000017636,0.0000017655, -0.0000017669,0.0000017695,0.0000017734,0.0000017777,0.0000017828, -0.0000017903,0.0000017996,0.0000018096,0.0000018204,0.0000018321, -0.0000018443,0.0000018559,0.0000018665,0.0000018761,0.0000018848, -0.0000018924,0.0000018982,0.0000019026,0.0000019060,0.0000019082, -0.0000019094,0.0000019098,0.0000019098,0.0000019096,0.0000019097, -0.0000019103,0.0000019111,0.0000019118,0.0000019124,0.0000019129, -0.0000019133,0.0000019138,0.0000019146,0.0000019157,0.0000019173, -0.0000019194,0.0000019221,0.0000019250,0.0000019280,0.0000019314, -0.0000019349,0.0000019385,0.0000019420,0.0000019451,0.0000019475, -0.0000019491,0.0000019503,0.0000019509,0.0000019517,0.0000019523, -0.0000019525,0.0000019526,0.0000019527,0.0000019526,0.0000019525, -0.0000019525,0.0000019524,0.0000019525,0.0000019530,0.0000019540, -0.0000019551,0.0000019564,0.0000019579,0.0000019598,0.0000019618, -0.0000019642,0.0000019668,0.0000019694,0.0000019714,0.0000019729, -0.0000019739,0.0000019736,0.0000019720,0.0000019703,0.0000019690, -0.0000019685,0.0000019694,0.0000019710,0.0000019733,0.0000019762, -0.0000019790,0.0000019819,0.0000019846,0.0000019873,0.0000019894, -0.0000019911,0.0000019920,0.0000019925,0.0000019931,0.0000019936, -0.0000019947,0.0000019960,0.0000019970,0.0000019977,0.0000019974, -0.0000019962,0.0000019941,0.0000019913,0.0000019885,0.0000019860, -0.0000019844,0.0000019831,0.0000019823,0.0000019822,0.0000019835, -0.0000019855,0.0000019877,0.0000019902,0.0000019929,0.0000019951, -0.0000019967,0.0000019977,0.0000019986,0.0000019995,0.0000019998, -0.0000020000,0.0000020001,0.0000020000,0.0000019998,0.0000019994, -0.0000019987,0.0000019973,0.0000019957,0.0000019936,0.0000019902, -0.0000019861,0.0000019813,0.0000019771,0.0000019749,0.0000019754, -0.0000019758,0.0000019780,0.0000019817,0.0000019854,0.0000019899, -0.0000019950,0.0000019995,0.0000020028,0.0000020038,0.0000020042, -0.0000020046,0.0000020058,0.0000020082,0.0000020121,0.0000020173, -0.0000020230,0.0000020285,0.0000020339,0.0000020376,0.0000020408, -0.0000020417,0.0000020415,0.0000020415,0.0000020399,0.0000020372, -0.0000020337,0.0000020299,0.0000020267,0.0000020241,0.0000020213, -0.0000020181,0.0000020150,0.0000020121,0.0000020094,0.0000020078, -0.0000020074,0.0000020073,0.0000020075,0.0000020094,0.0000020121, -0.0000020142,0.0000020154,0.0000020160,0.0000020158,0.0000020151, -0.0000020142,0.0000020132,0.0000020125,0.0000020125,0.0000020127, -0.0000020135,0.0000020142,0.0000020142,0.0000020144,0.0000020149, -0.0000020154,0.0000020160,0.0000020159,0.0000020147,0.0000020128, -0.0000020103,0.0000020069,0.0000020039,0.0000020007,0.0000019984, -0.0000019975,0.0000019979,0.0000019988,0.0000019995,0.0000020003, -0.0000020013,0.0000020021,0.0000020026,0.0000020021,0.0000020007, -0.0000019986,0.0000019959,0.0000019923,0.0000019882,0.0000019836, -0.0000019798,0.0000019774,0.0000019758,0.0000019749,0.0000019741, -0.0000019733,0.0000019723,0.0000019712,0.0000019707,0.0000019719, -0.0000019736,0.0000019753,0.0000019766,0.0000019770,0.0000019772, -0.0000019765,0.0000019752,0.0000019736,0.0000019714,0.0000019685, -0.0000019657,0.0000019633,0.0000019625,0.0000019623,0.0000019624, -0.0000019625,0.0000019619,0.0000019603,0.0000019597,0.0000019575, -0.0000019543,0.0000019512,0.0000019486,0.0000019462,0.0000019443, -0.0000019428,0.0000019419,0.0000019411,0.0000019405,0.0000019398, -0.0000019393,0.0000019391,0.0000019392,0.0000019396,0.0000019396, -0.0000019404,0.0000019409,0.0000019415,0.0000019414,0.0000019400, -0.0000019376,0.0000019347,0.0000019313,0.0000019276,0.0000019236, -0.0000019195,0.0000019163,0.0000019154,0.0000019148,0.0000019154, -0.0000019172,0.0000019201,0.0000019224,0.0000019241,0.0000019255, -0.0000019249,0.0000019249,0.0000019235,0.0000019209,0.0000019179, -0.0000019142,0.0000019101,0.0000019049,0.0000018989,0.0000018921, -0.0000018853,0.0000018801,0.0000018766,0.0000018757,0.0000018770, -0.0000018795,0.0000018836,0.0000018873,0.0000018900,0.0000018916, -0.0000018918,0.0000018909,0.0000018903,0.0000018905,0.0000018925, -0.0000018954,0.0000019000,0.0000019049,0.0000019089,0.0000019116, -0.0000019125,0.0000019107,0.0000019081,0.0000019037,0.0000018982, -0.0000018942,0.0000018922,0.0000018914,0.0000018911,0.0000018914, -0.0000018911,0.0000018907,0.0000018910,0.0000018916,0.0000018921, -0.0000018927,0.0000018934,0.0000018941,0.0000018951,0.0000018965, -0.0000018986,0.0000019021,0.0000019065,0.0000019114,0.0000019124, -0.0000019139,0.0000019140,0.0000019143,0.0000019158,0.0000019187, -0.0000019219,0.0000019247,0.0000019263,0.0000019265,0.0000019253, -0.0000019239,0.0000019235,0.0000019230,0.0000019225,0.0000019220, -0.0000019211,0.0000019178,0.0000019153,0.0000019124,0.0000019107, -0.0000019097,0.0000019089,0.0000019081,0.0000019086,0.0000019095, -0.0000019101,0.0000019114,0.0000019129,0.0000019131,0.0000019121, -0.0000019104,0.0000019089,0.0000019076,0.0000019070,0.0000019070, -0.0000019078,0.0000019084,0.0000019088,0.0000019106,0.0000019124, -0.0000019137,0.0000019142,0.0000019137,0.0000019123,0.0000019092, -0.0000019056,0.0000019017,0.0000018975,0.0000018935,0.0000018907, -0.0000018899,0.0000018911,0.0000018929,0.0000018934,0.0000018911, -0.0000018868,0.0000018818,0.0000018766,0.0000018720,0.0000018681, -0.0000018648,0.0000018621,0.0000018601,0.0000018573,0.0000018522, -0.0000018458,0.0000018388,0.0000018310,0.0000018270,0.0000018273, -0.0000018289,0.0000018295,0.0000018297,0.0000018298,0.0000018303, -0.0000018299,0.0000018288,0.0000018288,0.0000018303,0.0000018334, -0.0000018378,0.0000018441,0.0000018512,0.0000018576,0.0000018624, -0.0000018640,0.0000018640,0.0000018629,0.0000018594,0.0000018552, -0.0000018518,0.0000018469,0.0000018406,0.0000018354,0.0000018326, -0.0000018327,0.0000018325,0.0000018338,0.0000018369,0.0000018391, -0.0000018384,0.0000018365,0.0000018349,0.0000018340,0.0000018337, -0.0000018332,0.0000018317,0.0000018301,0.0000018291,0.0000018277, -0.0000018258,0.0000018241,0.0000018229,0.0000018219,0.0000018209, -0.0000018194,0.0000018176,0.0000018161,0.0000018153,0.0000018156, -0.0000018166,0.0000018178,0.0000018189,0.0000018196,0.0000018197, -0.0000018193,0.0000018187,0.0000018177,0.0000018169,0.0000018154, -0.0000018137,0.0000018119,0.0000018101,0.0000018083,0.0000018062, -0.0000018037,0.0000018012,0.0000017989,0.0000017971,0.0000017956, -0.0000017947,0.0000017947,0.0000017948,0.0000017951,0.0000017954, -0.0000017957,0.0000017961,0.0000017965,0.0000017971,0.0000017982, -0.0000017993,0.0000018001,0.0000018003,0.0000018000,0.0000017991, -0.0000017994,0.0000018004,0.0000018028,0.0000018069,0.0000018118, -0.0000018177,0.0000018235,0.0000018289,0.0000018341,0.0000018393, -0.0000018445,0.0000018499,0.0000018556,0.0000018612,0.0000018663, -0.0000018706,0.0000018743,0.0000018776,0.0000018813,0.0000018870, -0.0000018960,0.0000019083,0.0000019229,0.0000019373,0.0000019498, -0.0000019576,0.0000019598,0.0000019607,0.0000019579,0.0000019532, -0.0000019479,0.0000019420,0.0000019347,0.0000019262,0.0000019172, -0.0000019090,0.0000019028,0.0000018993,0.0000018975,0.0000018970, -0.0000018965,0.0000018948,0.0000018923,0.0000018895,0.0000018869, -0.0000018844,0.0000018817,0.0000018782,0.0000018743,0.0000018703, -0.0000018667,0.0000018633,0.0000018602,0.0000018580,0.0000018575, -0.0000018578,0.0000018586,0.0000018594,0.0000018598,0.0000018601, -0.0000018609,0.0000018626,0.0000018649,0.0000018664,0.0000018662, -0.0000018642,0.0000018612,0.0000018576,0.0000018540,0.0000018513, -0.0000018497,0.0000018486,0.0000018477,0.0000018463,0.0000018439, -0.0000018407,0.0000018378,0.0000018358,0.0000018347,0.0000018349, -0.0000018360,0.0000018377,0.0000018394,0.0000018408,0.0000018422, -0.0000018438,0.0000018456,0.0000018469,0.0000018475,0.0000018477, -0.0000018481,0.0000018484,0.0000018480,0.0000018463,0.0000018440, -0.0000018391,0.0000018321,0.0000018247,0.0000018193,0.0000018168, -0.0000018167,0.0000018179,0.0000018202,0.0000018231,0.0000018259, -0.0000018292,0.0000018336,0.0000018391,0.0000018454,0.0000018518, -0.0000018573,0.0000018618,0.0000018649,0.0000018666,0.0000018671, -0.0000018665,0.0000018655,0.0000018644,0.0000018631,0.0000018617, -0.0000018606,0.0000018596,0.0000018585,0.0000018571,0.0000018557, -0.0000018543,0.0000018530,0.0000018521,0.0000018514,0.0000018510, -0.0000018508,0.0000018507,0.0000018511,0.0000018510,0.0000018506, -0.0000018502,0.0000018497,0.0000018493,0.0000018489,0.0000018487, -0.0000018484,0.0000018481,0.0000018478,0.0000018477,0.0000018476, -0.0000018471,0.0000018463,0.0000018452,0.0000018440,0.0000018433, -0.0000018431,0.0000018436,0.0000018444,0.0000018454,0.0000018466, -0.0000018482,0.0000018491,0.0000018486,0.0000018466,0.0000018441, -0.0000018414,0.0000018390,0.0000018376,0.0000018372,0.0000018384, -0.0000018404,0.0000018437,0.0000018486,0.0000018537,0.0000018569, -0.0000018574,0.0000018557,0.0000018541,0.0000018571,0.0000018640, -0.0000018657,0.0000018729,0.0000018834,0.0000018778,0.0000018720, -0.0000018804,0.0000018884,0.0000018882,0.0000018916,0.0000018885, -0.0000018767,0.0000018709,0.0000018714,0.0000018730,0.0000018816, -0.0000018943,0.0000018966,0.0000018911,0.0000018848,0.0000018812, -0.0000018792,0.0000018785,0.0000018795,0.0000018823,0.0000018854, -0.0000018869,0.0000018872,0.0000018871,0.0000018875,0.0000018889, -0.0000018908,0.0000018932,0.0000018955,0.0000018968,0.0000018968, -0.0000018966,0.0000018975,0.0000018986,0.0000018965,0.0000018726, -0.0000018247,0.0000017842,0.0000017705,0.0000017687,0.0000017667, -0.0000017658,0.0000017662,0.0000017664,0.0000017655,0.0000017646, -0.0000017647,0.0000017663,0.0000017689,0.0000017716,0.0000017746, -0.0000017785,0.0000017833,0.0000017885,0.0000017933,0.0000017974, -0.0000018006,0.0000018029,0.0000018042,0.0000018049,0.0000018051, -0.0000018048,0.0000018044,0.0000018040,0.0000018039,0.0000018038, -0.0000018037,0.0000018037,0.0000018040,0.0000018042,0.0000018042, -0.0000018040,0.0000018038,0.0000018039,0.0000018044,0.0000018052, -0.0000018066,0.0000018085,0.0000018104,0.0000018123,0.0000018143, -0.0000018161,0.0000018176,0.0000018190,0.0000018210,0.0000018247, -0.0000018326,0.0000018446,0.0000018546,0.0000018562,0.0000018511, -0.0000018402,0.0000018311,0.0000018277,0.0000018275,0.0000018300, -0.0000018319,0.0000018324,0.0000018310,0.0000018276,0.0000018237, -0.0000018210,0.0000018192,0.0000018180,0.0000018165,0.0000018145, -0.0000018125,0.0000018108,0.0000018094,0.0000018083,0.0000018073, -0.0000018071,0.0000018077,0.0000018088,0.0000018104,0.0000018121, -0.0000018138,0.0000018154,0.0000018168,0.0000018179,0.0000018185, -0.0000018185,0.0000018178,0.0000018171,0.0000018166,0.0000018161, -0.0000018158,0.0000018153,0.0000018145,0.0000018131,0.0000018122, -0.0000018119,0.0000018123,0.0000018135,0.0000018156,0.0000018181, -0.0000018204,0.0000018221,0.0000018231,0.0000018236,0.0000018240, -0.0000018249,0.0000018264,0.0000018279,0.0000018291,0.0000018303, -0.0000018309,0.0000018312,0.0000018312,0.0000018312,0.0000018308, -0.0000018307,0.0000018314,0.0000018326,0.0000018337,0.0000018351, -0.0000018368,0.0000018387,0.0000018407,0.0000018427,0.0000018446, -0.0000018409,0.0000018427,0.0000018446,0.0000018464,0.0000018480, -0.0000018497,0.0000018513,0.0000018531,0.0000018548,0.0000018566, -0.0000018586,0.0000018606,0.0000018624,0.0000018641,0.0000018649, -0.0000018649,0.0000018646,0.0000018640,0.0000018633,0.0000018621, -0.0000018607,0.0000018588,0.0000018562,0.0000018534,0.0000018503, -0.0000018470,0.0000018438,0.0000018404,0.0000018369,0.0000018333, -0.0000018301,0.0000018271,0.0000018244,0.0000018225,0.0000018213, -0.0000018205,0.0000018203,0.0000018202,0.0000018195,0.0000018177, -0.0000018152,0.0000018119,0.0000018079,0.0000018030,0.0000017976, -0.0000017923,0.0000017877,0.0000017841,0.0000017816,0.0000017797, -0.0000017782,0.0000017764,0.0000017746,0.0000017734,0.0000017737, -0.0000017746,0.0000017771,0.0000017807,0.0000017849,0.0000017887, -0.0000017915,0.0000017936,0.0000017953,0.0000017975,0.0000018014, -0.0000018080,0.0000018165,0.0000018261,0.0000018346,0.0000018396, -0.0000018396,0.0000018388,0.0000018370,0.0000018356,0.0000018345, -0.0000018339,0.0000018341,0.0000018363,0.0000018401,0.0000018441, -0.0000018457,0.0000018454,0.0000018426,0.0000018381,0.0000018333, -0.0000018285,0.0000018232,0.0000018170,0.0000018094,0.0000018011, -0.0000017934,0.0000017874,0.0000017837,0.0000017821,0.0000017819, -0.0000017819,0.0000017822,0.0000017825,0.0000017825,0.0000017823, -0.0000017819,0.0000017813,0.0000017805,0.0000017794,0.0000017800, -0.0000017835,0.0000017899,0.0000017974,0.0000018041,0.0000018092, -0.0000018143,0.0000018210,0.0000018278,0.0000018322,0.0000018337, -0.0000018344,0.0000018349,0.0000018347,0.0000018333,0.0000018310, -0.0000018282,0.0000018253,0.0000018226,0.0000018199,0.0000018167, -0.0000018129,0.0000018087,0.0000018043,0.0000017997,0.0000017950, -0.0000017906,0.0000017863,0.0000017816,0.0000017765,0.0000017714, -0.0000017666,0.0000017623,0.0000017585,0.0000017559,0.0000017545, -0.0000017540,0.0000017541,0.0000017547,0.0000017555,0.0000017564, -0.0000017573,0.0000017580,0.0000017587,0.0000017590,0.0000017588, -0.0000017583,0.0000017580,0.0000017579,0.0000017580,0.0000017582, -0.0000017587,0.0000017593,0.0000017596,0.0000017596,0.0000017588, -0.0000017573,0.0000017555,0.0000017532,0.0000017509,0.0000017495, -0.0000017491,0.0000017490,0.0000017489,0.0000017488,0.0000017485, -0.0000017478,0.0000017468,0.0000017453,0.0000017431,0.0000017404, -0.0000017371,0.0000017335,0.0000017300,0.0000017274,0.0000017257, -0.0000017250,0.0000017255,0.0000017274,0.0000017304,0.0000017336, -0.0000017371,0.0000017408,0.0000017442,0.0000017470,0.0000017493, -0.0000017510,0.0000017525,0.0000017536,0.0000017544,0.0000017546, -0.0000017548,0.0000017551,0.0000017557,0.0000017562,0.0000017565, -0.0000017563,0.0000017557,0.0000017551,0.0000017551,0.0000017553, -0.0000017559,0.0000017567,0.0000017575,0.0000017584,0.0000017594, -0.0000017606,0.0000017618,0.0000017626,0.0000017631,0.0000017635, -0.0000017636,0.0000017634,0.0000017629,0.0000017624,0.0000017616, -0.0000017607,0.0000017595,0.0000017582,0.0000017567,0.0000017549, -0.0000017530,0.0000017517,0.0000017512,0.0000017508,0.0000017503, -0.0000017493,0.0000017486,0.0000017475,0.0000017466,0.0000017457, -0.0000017458,0.0000017478,0.0000017524,0.0000017597,0.0000017693, -0.0000017791,0.0000017870,0.0000017911,0.0000017930,0.0000017964, -0.0000018028,0.0000018122,0.0000018225,0.0000018312,0.0000018352, -0.0000018336,0.0000018248,0.0000018102,0.0000017946,0.0000017842, -0.0000017814,0.0000017801,0.0000017785,0.0000017771,0.0000017761, -0.0000017750,0.0000017736,0.0000017732,0.0000017745,0.0000017767, -0.0000017795,0.0000017827,0.0000017854,0.0000017872,0.0000017886, -0.0000017893,0.0000017883,0.0000017837,0.0000017753,0.0000017646, -0.0000017545,0.0000017495,0.0000017501,0.0000017559,0.0000017638, -0.0000017749,0.0000017912,0.0000018094,0.0000018202,0.0000018229, -0.0000018268,0.0000018324,0.0000018388,0.0000018538,0.0000018740, -0.0000018906,0.0000019040,0.0000019152,0.0000019266,0.0000019353, -0.0000019356,0.0000019365,0.0000019443,0.0000019536,0.0000019604, -0.0000019657,0.0000019687,0.0000019694,0.0000019701,0.0000019716, -0.0000019731,0.0000019738,0.0000019739,0.0000019739,0.0000019739, -0.0000019732,0.0000019725,0.0000019718,0.0000019718,0.0000019728, -0.0000019741,0.0000019753,0.0000019762,0.0000019770,0.0000019778, -0.0000019789,0.0000019796,0.0000019797,0.0000019796,0.0000019795, -0.0000019796,0.0000019801,0.0000019809,0.0000019815,0.0000019820, -0.0000019826,0.0000019831,0.0000019835,0.0000019837,0.0000019840, -0.0000019841,0.0000019838,0.0000019834,0.0000019831,0.0000019830, -0.0000019830,0.0000019835,0.0000019835,0.0000019836,0.0000019836, -0.0000019835,0.0000019833,0.0000019828,0.0000019820,0.0000019810, -0.0000019799,0.0000019789,0.0000019779,0.0000019768,0.0000019757, -0.0000019746,0.0000019734,0.0000019720,0.0000019705,0.0000019689, -0.0000019672,0.0000019654,0.0000019634,0.0000019614,0.0000019595, -0.0000019573,0.0000019547,0.0000019518,0.0000019486,0.0000019455, -0.0000019429,0.0000019410,0.0000019396,0.0000019381,0.0000019370, -0.0000019356,0.0000019343,0.0000019329,0.0000019309,0.0000019281, -0.0000019252,0.0000019224,0.0000019199,0.0000019179,0.0000019159, -0.0000019133,0.0000019095,0.0000019046,0.0000018983,0.0000018905, -0.0000018811,0.0000018705,0.0000018587,0.0000018458,0.0000018324, -0.0000018191,0.0000018058,0.0000017931,0.0000017816,0.0000017715, -0.0000017632,0.0000017570,0.0000017521,0.0000017487,0.0000017459, -0.0000017443,0.0000017426,0.0000017426,0.0000017429,0.0000017418, -0.0000017408,0.0000017400,0.0000017398,0.0000017391,0.0000017383, -0.0000017377,0.0000017374,0.0000017373,0.0000017376,0.0000017376, -0.0000017374,0.0000017369,0.0000017362,0.0000017353,0.0000017344, -0.0000017336,0.0000017330,0.0000017328,0.0000017330,0.0000017334, -0.0000017339,0.0000017344,0.0000017351,0.0000017360,0.0000017370, -0.0000017378,0.0000017386,0.0000017393,0.0000017400,0.0000017407, -0.0000017413,0.0000017418,0.0000017424,0.0000017428,0.0000017430, -0.0000017430,0.0000017430,0.0000017427,0.0000017422,0.0000017418, -0.0000017412,0.0000017402,0.0000017392,0.0000017384,0.0000017378, -0.0000017371,0.0000017360,0.0000017350,0.0000017342,0.0000017332, -0.0000017321,0.0000017311,0.0000017304,0.0000017304,0.0000017313, -0.0000017327,0.0000017344,0.0000017366,0.0000017392,0.0000017426, -0.0000017469,0.0000017509,0.0000017540,0.0000017558,0.0000017574, -0.0000017591,0.0000017599,0.0000017583,0.0000017576,0.0000017578, -0.0000017558,0.0000017522,0.0000017511,0.0000017531,0.0000017546, -0.0000017570,0.0000017619,0.0000017696,0.0000017787,0.0000017892, -0.0000018017,0.0000018152,0.0000018296,0.0000018442,0.0000018583, -0.0000018709,0.0000018816,0.0000018903,0.0000018969,0.0000019014, -0.0000019040,0.0000019056,0.0000019068,0.0000019078,0.0000019086, -0.0000019095,0.0000019102,0.0000019110,0.0000019118,0.0000019124, -0.0000019128,0.0000019131,0.0000019134,0.0000019139,0.0000019147, -0.0000019160,0.0000019176,0.0000019197,0.0000019226,0.0000019261, -0.0000019298,0.0000019336,0.0000019371,0.0000019400,0.0000019422, -0.0000019440,0.0000019459,0.0000019477,0.0000019492,0.0000019503, -0.0000019510,0.0000019515,0.0000019517,0.0000019515,0.0000019511, -0.0000019506,0.0000019501,0.0000019498,0.0000019498,0.0000019499, -0.0000019505,0.0000019520,0.0000019539,0.0000019562,0.0000019587, -0.0000019614,0.0000019641,0.0000019663,0.0000019685,0.0000019703, -0.0000019707,0.0000019702,0.0000019694,0.0000019693,0.0000019697, -0.0000019704,0.0000019717,0.0000019739,0.0000019767,0.0000019795, -0.0000019821,0.0000019845,0.0000019868,0.0000019890,0.0000019908, -0.0000019918,0.0000019925,0.0000019932,0.0000019941,0.0000019949, -0.0000019955,0.0000019959,0.0000019961,0.0000019957,0.0000019944, -0.0000019926,0.0000019906,0.0000019885,0.0000019869,0.0000019853, -0.0000019838,0.0000019827,0.0000019828,0.0000019836,0.0000019853, -0.0000019880,0.0000019910,0.0000019934,0.0000019955,0.0000019969, -0.0000019983,0.0000019998,0.0000020003,0.0000020004,0.0000019999, -0.0000019992,0.0000019987,0.0000019980,0.0000019973,0.0000019961, -0.0000019946,0.0000019922,0.0000019892,0.0000019860,0.0000019837, -0.0000019832,0.0000019837,0.0000019838,0.0000019830,0.0000019811, -0.0000019793,0.0000019769,0.0000019770,0.0000019785,0.0000019812, -0.0000019849,0.0000019899,0.0000019955,0.0000020002,0.0000020038, -0.0000020059,0.0000020079,0.0000020103,0.0000020129,0.0000020161, -0.0000020197,0.0000020232,0.0000020265,0.0000020295,0.0000020324, -0.0000020342,0.0000020351,0.0000020342,0.0000020319,0.0000020293, -0.0000020267,0.0000020239,0.0000020211,0.0000020180,0.0000020147, -0.0000020116,0.0000020088,0.0000020076,0.0000020072,0.0000020070, -0.0000020074,0.0000020092,0.0000020115,0.0000020130,0.0000020137, -0.0000020138,0.0000020134,0.0000020127,0.0000020120,0.0000020107, -0.0000020098,0.0000020089,0.0000020078,0.0000020076,0.0000020074, -0.0000020068,0.0000020069,0.0000020072,0.0000020079,0.0000020082, -0.0000020078,0.0000020068,0.0000020050,0.0000020025,0.0000019999, -0.0000019973,0.0000019956,0.0000019942,0.0000019935,0.0000019924, -0.0000019914,0.0000019902,0.0000019884,0.0000019863,0.0000019847, -0.0000019839,0.0000019827,0.0000019811,0.0000019787,0.0000019758, -0.0000019723,0.0000019674,0.0000019629,0.0000019590,0.0000019569, -0.0000019567,0.0000019574,0.0000019590,0.0000019606,0.0000019612, -0.0000019611,0.0000019615,0.0000019629,0.0000019644,0.0000019651, -0.0000019651,0.0000019645,0.0000019636,0.0000019628,0.0000019628, -0.0000019629,0.0000019617,0.0000019595,0.0000019566,0.0000019540, -0.0000019523,0.0000019510,0.0000019503,0.0000019509,0.0000019516, -0.0000019530,0.0000019537,0.0000019528,0.0000019516,0.0000019493, -0.0000019473,0.0000019458,0.0000019444,0.0000019428,0.0000019414, -0.0000019404,0.0000019396,0.0000019391,0.0000019386,0.0000019382, -0.0000019380,0.0000019382,0.0000019392,0.0000019404,0.0000019422, -0.0000019439,0.0000019452,0.0000019459,0.0000019457,0.0000019445, -0.0000019420,0.0000019380,0.0000019329,0.0000019275,0.0000019227, -0.0000019187,0.0000019151,0.0000019137,0.0000019137,0.0000019148, -0.0000019161,0.0000019181,0.0000019199,0.0000019210,0.0000019216, -0.0000019217,0.0000019211,0.0000019205,0.0000019201,0.0000019186, -0.0000019156,0.0000019114,0.0000019059,0.0000018993,0.0000018928, -0.0000018869,0.0000018831,0.0000018808,0.0000018821,0.0000018831, -0.0000018846,0.0000018868,0.0000018884,0.0000018889,0.0000018888, -0.0000018878,0.0000018872,0.0000018864,0.0000018863,0.0000018872, -0.0000018896,0.0000018938,0.0000018988,0.0000019035,0.0000019065, -0.0000019056,0.0000019032,0.0000018998,0.0000018961,0.0000018932, -0.0000018905,0.0000018898,0.0000018883,0.0000018878,0.0000018876, -0.0000018871,0.0000018863,0.0000018855,0.0000018849,0.0000018844, -0.0000018840,0.0000018838,0.0000018841,0.0000018866,0.0000018921, -0.0000018996,0.0000019060,0.0000019118,0.0000019137,0.0000019153, -0.0000019148,0.0000019147,0.0000019162,0.0000019193,0.0000019227, -0.0000019248,0.0000019241,0.0000019226,0.0000019204,0.0000019177, -0.0000019148,0.0000019130,0.0000019118,0.0000019111,0.0000019103, -0.0000019098,0.0000019096,0.0000019086,0.0000019071,0.0000019054, -0.0000019044,0.0000019040,0.0000019046,0.0000019064,0.0000019090, -0.0000019110,0.0000019111,0.0000019101,0.0000019081,0.0000019058, -0.0000019043,0.0000019039,0.0000019044,0.0000019043,0.0000019040, -0.0000019043,0.0000019044,0.0000019046,0.0000019046,0.0000019038, -0.0000019023,0.0000018994,0.0000018961,0.0000018925,0.0000018889, -0.0000018854,0.0000018829,0.0000018825,0.0000018845,0.0000018879, -0.0000018896,0.0000018885,0.0000018841,0.0000018773,0.0000018709, -0.0000018648,0.0000018611,0.0000018592,0.0000018578,0.0000018567, -0.0000018539,0.0000018490,0.0000018436,0.0000018371,0.0000018289, -0.0000018248,0.0000018240,0.0000018244,0.0000018242,0.0000018243, -0.0000018253,0.0000018263,0.0000018272,0.0000018268,0.0000018271, -0.0000018282,0.0000018312,0.0000018359,0.0000018420,0.0000018489, -0.0000018554,0.0000018608,0.0000018638,0.0000018650,0.0000018645, -0.0000018614,0.0000018574,0.0000018531,0.0000018477,0.0000018420, -0.0000018365,0.0000018332,0.0000018322,0.0000018317,0.0000018319, -0.0000018337,0.0000018352,0.0000018347,0.0000018335,0.0000018324, -0.0000018316,0.0000018313,0.0000018309,0.0000018297,0.0000018288, -0.0000018276,0.0000018258,0.0000018238,0.0000018218,0.0000018204, -0.0000018193,0.0000018185,0.0000018177,0.0000018166,0.0000018154, -0.0000018143,0.0000018138,0.0000018138,0.0000018142,0.0000018149, -0.0000018156,0.0000018158,0.0000018158,0.0000018157,0.0000018156, -0.0000018154,0.0000018148,0.0000018142,0.0000018136,0.0000018125, -0.0000018112,0.0000018096,0.0000018076,0.0000018055,0.0000018034, -0.0000018011,0.0000017988,0.0000017970,0.0000017957,0.0000017950, -0.0000017948,0.0000017945,0.0000017945,0.0000017944,0.0000017940, -0.0000017942,0.0000017951,0.0000017966,0.0000017981,0.0000017992, -0.0000017993,0.0000017993,0.0000017987,0.0000017979,0.0000017987, -0.0000018002,0.0000018031,0.0000018077,0.0000018134,0.0000018197, -0.0000018258,0.0000018313,0.0000018367,0.0000018421,0.0000018472, -0.0000018525,0.0000018576,0.0000018621,0.0000018660,0.0000018691, -0.0000018718,0.0000018755,0.0000018814,0.0000018902,0.0000019026, -0.0000019179,0.0000019337,0.0000019477,0.0000019576,0.0000019610, -0.0000019609,0.0000019579,0.0000019526,0.0000019467,0.0000019400, -0.0000019318,0.0000019222,0.0000019121,0.0000019034,0.0000018977, -0.0000018950,0.0000018934,0.0000018931,0.0000018923,0.0000018904, -0.0000018885,0.0000018870,0.0000018861,0.0000018847,0.0000018821, -0.0000018784,0.0000018742,0.0000018700,0.0000018665,0.0000018632, -0.0000018599,0.0000018577,0.0000018571,0.0000018574,0.0000018578, -0.0000018581,0.0000018585,0.0000018592,0.0000018607,0.0000018633, -0.0000018660,0.0000018672,0.0000018664,0.0000018641,0.0000018607, -0.0000018565,0.0000018520,0.0000018485,0.0000018466,0.0000018457, -0.0000018445,0.0000018427,0.0000018404,0.0000018382,0.0000018365, -0.0000018355,0.0000018355,0.0000018365,0.0000018380,0.0000018395, -0.0000018410,0.0000018428,0.0000018448,0.0000018462,0.0000018470, -0.0000018470,0.0000018468,0.0000018467,0.0000018463,0.0000018455, -0.0000018447,0.0000018430,0.0000018387,0.0000018326,0.0000018262, -0.0000018209,0.0000018180,0.0000018171,0.0000018178,0.0000018197, -0.0000018220,0.0000018244,0.0000018267,0.0000018292,0.0000018327, -0.0000018375,0.0000018432,0.0000018489,0.0000018542,0.0000018590, -0.0000018624,0.0000018642,0.0000018643,0.0000018636,0.0000018622, -0.0000018612,0.0000018602,0.0000018593,0.0000018583,0.0000018573, -0.0000018563,0.0000018555,0.0000018551,0.0000018545,0.0000018536, -0.0000018526,0.0000018516,0.0000018508,0.0000018500,0.0000018489, -0.0000018477,0.0000018467,0.0000018462,0.0000018461,0.0000018465, -0.0000018469,0.0000018470,0.0000018467,0.0000018463,0.0000018457, -0.0000018452,0.0000018447,0.0000018444,0.0000018441,0.0000018440, -0.0000018443,0.0000018448,0.0000018452,0.0000018457,0.0000018459, -0.0000018454,0.0000018442,0.0000018420,0.0000018394,0.0000018369, -0.0000018351,0.0000018342,0.0000018344,0.0000018358,0.0000018379, -0.0000018415,0.0000018462,0.0000018514,0.0000018559,0.0000018585, -0.0000018585,0.0000018562,0.0000018530,0.0000018535,0.0000018604, -0.0000018652,0.0000018708,0.0000018823,0.0000018805,0.0000018727, -0.0000018785,0.0000018861,0.0000018793,0.0000018819,0.0000018890, -0.0000018817,0.0000018714,0.0000018691,0.0000018710,0.0000018718, -0.0000018757,0.0000018869,0.0000018955,0.0000018963,0.0000018921, -0.0000018876,0.0000018851,0.0000018846,0.0000018853,0.0000018872, -0.0000018889,0.0000018894,0.0000018890,0.0000018889,0.0000018895, -0.0000018911,0.0000018933,0.0000018953,0.0000018961,0.0000018959, -0.0000018964,0.0000018976,0.0000018981,0.0000018860,0.0000018466, -0.0000017976,0.0000017710,0.0000017655,0.0000017626,0.0000017598, -0.0000017598,0.0000017610,0.0000017618,0.0000017609,0.0000017592, -0.0000017588,0.0000017599,0.0000017621,0.0000017650,0.0000017681, -0.0000017714,0.0000017749,0.0000017785,0.0000017817,0.0000017843, -0.0000017865,0.0000017881,0.0000017892,0.0000017900,0.0000017906, -0.0000017911,0.0000017915,0.0000017918,0.0000017920,0.0000017920, -0.0000017917,0.0000017912,0.0000017906,0.0000017901,0.0000017898, -0.0000017901,0.0000017907,0.0000017916,0.0000017927,0.0000017941, -0.0000017959,0.0000017980,0.0000018000,0.0000018019,0.0000018038, -0.0000018059,0.0000018081,0.0000018102,0.0000018125,0.0000018145, -0.0000018174,0.0000018242,0.0000018354,0.0000018476,0.0000018544, -0.0000018527,0.0000018430,0.0000018328,0.0000018266,0.0000018266, -0.0000018277,0.0000018298,0.0000018314,0.0000018312,0.0000018298, -0.0000018268,0.0000018239,0.0000018218,0.0000018202,0.0000018186, -0.0000018174,0.0000018165,0.0000018158,0.0000018151,0.0000018139, -0.0000018127,0.0000018116,0.0000018108,0.0000018108,0.0000018113, -0.0000018123,0.0000018138,0.0000018156,0.0000018180,0.0000018199, -0.0000018217,0.0000018230,0.0000018241,0.0000018250,0.0000018258, -0.0000018262,0.0000018263,0.0000018261,0.0000018253,0.0000018241, -0.0000018228,0.0000018221,0.0000018218,0.0000018225,0.0000018241, -0.0000018255,0.0000018266,0.0000018270,0.0000018270,0.0000018267, -0.0000018264,0.0000018269,0.0000018278,0.0000018291,0.0000018302, -0.0000018309,0.0000018312,0.0000018311,0.0000018308,0.0000018301, -0.0000018290,0.0000018285,0.0000018288,0.0000018297,0.0000018309, -0.0000018321,0.0000018338,0.0000018356,0.0000018373,0.0000018391, -0.0000018361,0.0000018381,0.0000018400,0.0000018419,0.0000018438, -0.0000018456,0.0000018473,0.0000018490,0.0000018506,0.0000018523, -0.0000018539,0.0000018557,0.0000018577,0.0000018598,0.0000018617, -0.0000018629,0.0000018634,0.0000018633,0.0000018629,0.0000018619, -0.0000018606,0.0000018590,0.0000018574,0.0000018554,0.0000018532, -0.0000018513,0.0000018495,0.0000018474,0.0000018448,0.0000018417, -0.0000018383,0.0000018349,0.0000018314,0.0000018283,0.0000018257, -0.0000018238,0.0000018229,0.0000018227,0.0000018227,0.0000018223, -0.0000018215,0.0000018203,0.0000018181,0.0000018146,0.0000018099, -0.0000018044,0.0000017987,0.0000017934,0.0000017890,0.0000017858, -0.0000017835,0.0000017818,0.0000017794,0.0000017768,0.0000017747, -0.0000017746,0.0000017755,0.0000017770,0.0000017801,0.0000017842, -0.0000017881,0.0000017915,0.0000017938,0.0000017950,0.0000017951, -0.0000017960,0.0000017985,0.0000018041,0.0000018130,0.0000018236, -0.0000018333,0.0000018389,0.0000018389,0.0000018379,0.0000018361, -0.0000018346,0.0000018337,0.0000018334,0.0000018344,0.0000018374, -0.0000018414,0.0000018443,0.0000018440,0.0000018411,0.0000018367, -0.0000018317,0.0000018265,0.0000018204,0.0000018132,0.0000018051, -0.0000017969,0.0000017896,0.0000017842,0.0000017814,0.0000017803, -0.0000017804,0.0000017812,0.0000017825,0.0000017838,0.0000017845, -0.0000017845,0.0000017839,0.0000017824,0.0000017804,0.0000017790, -0.0000017783,0.0000017799,0.0000017847,0.0000017917,0.0000017988, -0.0000018041,0.0000018085,0.0000018141,0.0000018210,0.0000018267, -0.0000018300,0.0000018317,0.0000018322,0.0000018317,0.0000018299, -0.0000018273,0.0000018245,0.0000018216,0.0000018187,0.0000018155, -0.0000018119,0.0000018081,0.0000018039,0.0000017992,0.0000017944, -0.0000017900,0.0000017860,0.0000017817,0.0000017769,0.0000017718, -0.0000017669,0.0000017623,0.0000017582,0.0000017554,0.0000017540, -0.0000017535,0.0000017536,0.0000017540,0.0000017542,0.0000017543, -0.0000017545,0.0000017548,0.0000017554,0.0000017559,0.0000017559, -0.0000017557,0.0000017556,0.0000017557,0.0000017559,0.0000017561, -0.0000017566,0.0000017572,0.0000017573,0.0000017570,0.0000017566, -0.0000017561,0.0000017556,0.0000017552,0.0000017550,0.0000017550, -0.0000017552,0.0000017552,0.0000017552,0.0000017552,0.0000017552, -0.0000017548,0.0000017537,0.0000017518,0.0000017491,0.0000017458, -0.0000017420,0.0000017379,0.0000017340,0.0000017309,0.0000017282, -0.0000017261,0.0000017257,0.0000017259,0.0000017270,0.0000017289, -0.0000017319,0.0000017356,0.0000017393,0.0000017427,0.0000017456, -0.0000017477,0.0000017494,0.0000017507,0.0000017515,0.0000017518, -0.0000017520,0.0000017523,0.0000017527,0.0000017534,0.0000017539, -0.0000017542,0.0000017542,0.0000017542,0.0000017543,0.0000017545, -0.0000017549,0.0000017555,0.0000017564,0.0000017575,0.0000017591, -0.0000017610,0.0000017627,0.0000017642,0.0000017656,0.0000017668, -0.0000017674,0.0000017674,0.0000017671,0.0000017664,0.0000017654, -0.0000017641,0.0000017626,0.0000017612,0.0000017596,0.0000017579, -0.0000017562,0.0000017551,0.0000017547,0.0000017545,0.0000017537, -0.0000017525,0.0000017511,0.0000017495,0.0000017474,0.0000017448, -0.0000017427,0.0000017406,0.0000017398,0.0000017415,0.0000017469, -0.0000017557,0.0000017682,0.0000017813,0.0000017917,0.0000017969, -0.0000017999,0.0000018049,0.0000018130,0.0000018230,0.0000018319, -0.0000018359,0.0000018346,0.0000018252,0.0000018097,0.0000017931, -0.0000017812,0.0000017774,0.0000017761,0.0000017752,0.0000017748, -0.0000017743,0.0000017739,0.0000017743,0.0000017752,0.0000017765, -0.0000017787,0.0000017818,0.0000017849,0.0000017869,0.0000017876, -0.0000017874,0.0000017859,0.0000017817,0.0000017733,0.0000017615, -0.0000017504,0.0000017454,0.0000017464,0.0000017511,0.0000017571, -0.0000017663,0.0000017823,0.0000018026,0.0000018163,0.0000018198, -0.0000018234,0.0000018294,0.0000018359,0.0000018507,0.0000018711, -0.0000018880,0.0000019012,0.0000019122,0.0000019234,0.0000019322, -0.0000019325,0.0000019329,0.0000019402,0.0000019499,0.0000019568, -0.0000019610,0.0000019634,0.0000019645,0.0000019660,0.0000019679, -0.0000019697,0.0000019709,0.0000019714,0.0000019715,0.0000019714, -0.0000019708,0.0000019699,0.0000019692,0.0000019695,0.0000019701, -0.0000019711,0.0000019719,0.0000019725,0.0000019730,0.0000019739, -0.0000019751,0.0000019762,0.0000019770,0.0000019775,0.0000019780, -0.0000019786,0.0000019794,0.0000019800,0.0000019807,0.0000019814, -0.0000019820,0.0000019824,0.0000019824,0.0000019822,0.0000019820, -0.0000019814,0.0000019805,0.0000019801,0.0000019799,0.0000019799, -0.0000019803,0.0000019802,0.0000019800,0.0000019795,0.0000019789, -0.0000019780,0.0000019768,0.0000019755,0.0000019741,0.0000019726, -0.0000019710,0.0000019695,0.0000019681,0.0000019665,0.0000019650, -0.0000019634,0.0000019618,0.0000019601,0.0000019583,0.0000019562, -0.0000019543,0.0000019523,0.0000019505,0.0000019489,0.0000019474, -0.0000019459,0.0000019445,0.0000019432,0.0000019421,0.0000019411, -0.0000019402,0.0000019386,0.0000019363,0.0000019334,0.0000019299, -0.0000019265,0.0000019233,0.0000019203,0.0000019176,0.0000019153, -0.0000019128,0.0000019097,0.0000019054,0.0000018992,0.0000018910, -0.0000018813,0.0000018700,0.0000018576,0.0000018442,0.0000018305, -0.0000018169,0.0000018039,0.0000017918,0.0000017808,0.0000017713, -0.0000017630,0.0000017562,0.0000017509,0.0000017475,0.0000017446, -0.0000017447,0.0000017446,0.0000017441,0.0000017442,0.0000017449, -0.0000017449,0.0000017450,0.0000017450,0.0000017438,0.0000017424, -0.0000017409,0.0000017389,0.0000017360,0.0000017336,0.0000017310, -0.0000017287,0.0000017268,0.0000017253,0.0000017240,0.0000017229, -0.0000017218,0.0000017207,0.0000017199,0.0000017191,0.0000017184, -0.0000017178,0.0000017178,0.0000017184,0.0000017192,0.0000017200, -0.0000017211,0.0000017222,0.0000017232,0.0000017241,0.0000017250, -0.0000017258,0.0000017266,0.0000017278,0.0000017291,0.0000017305, -0.0000017317,0.0000017327,0.0000017337,0.0000017346,0.0000017351, -0.0000017354,0.0000017357,0.0000017360,0.0000017358,0.0000017361, -0.0000017366,0.0000017362,0.0000017355,0.0000017351,0.0000017343, -0.0000017334,0.0000017324,0.0000017313,0.0000017300,0.0000017283, -0.0000017265,0.0000017241,0.0000017222,0.0000017215,0.0000017220, -0.0000017220,0.0000017226,0.0000017248,0.0000017285,0.0000017327, -0.0000017374,0.0000017422,0.0000017466,0.0000017504,0.0000017539, -0.0000017567,0.0000017580,0.0000017586,0.0000017578,0.0000017563, -0.0000017532,0.0000017519,0.0000017484,0.0000017447,0.0000017438, -0.0000017428,0.0000017395,0.0000017398,0.0000017435,0.0000017479, -0.0000017539,0.0000017633,0.0000017764,0.0000017911,0.0000018070, -0.0000018235,0.0000018395,0.0000018544,0.0000018676,0.0000018789, -0.0000018882,0.0000018954,0.0000019007,0.0000019042,0.0000019063, -0.0000019078,0.0000019084,0.0000019093,0.0000019100,0.0000019107, -0.0000019112,0.0000019115,0.0000019117,0.0000019119,0.0000019124, -0.0000019128,0.0000019136,0.0000019152,0.0000019174,0.0000019201, -0.0000019229,0.0000019259,0.0000019289,0.0000019314,0.0000019336, -0.0000019362,0.0000019387,0.0000019411,0.0000019432,0.0000019450, -0.0000019466,0.0000019478,0.0000019485,0.0000019489,0.0000019490, -0.0000019489,0.0000019484,0.0000019477,0.0000019472,0.0000019470, -0.0000019474,0.0000019485,0.0000019506,0.0000019528,0.0000019550, -0.0000019572,0.0000019593,0.0000019612,0.0000019631,0.0000019648, -0.0000019659,0.0000019670,0.0000019682,0.0000019693,0.0000019702, -0.0000019708,0.0000019721,0.0000019746,0.0000019776,0.0000019808, -0.0000019834,0.0000019858,0.0000019881,0.0000019900,0.0000019914, -0.0000019925,0.0000019934,0.0000019945,0.0000019953,0.0000019956, -0.0000019959,0.0000019960,0.0000019956,0.0000019953,0.0000019948, -0.0000019937,0.0000019925,0.0000019914,0.0000019901,0.0000019882, -0.0000019865,0.0000019851,0.0000019847,0.0000019858,0.0000019876, -0.0000019902,0.0000019927,0.0000019949,0.0000019965,0.0000019980, -0.0000019991,0.0000019999,0.0000020000,0.0000019996,0.0000019990, -0.0000019984,0.0000019975,0.0000019966,0.0000019953,0.0000019936, -0.0000019911,0.0000019876,0.0000019844,0.0000019837,0.0000019842, -0.0000019854,0.0000019867,0.0000019877,0.0000019873,0.0000019855, -0.0000019832,0.0000019801,0.0000019778,0.0000019755,0.0000019743, -0.0000019752,0.0000019774,0.0000019815,0.0000019877,0.0000019948, -0.0000020019,0.0000020078,0.0000020117,0.0000020145,0.0000020163, -0.0000020176,0.0000020184,0.0000020192,0.0000020194,0.0000020200, -0.0000020204,0.0000020201,0.0000020195,0.0000020181,0.0000020167, -0.0000020147,0.0000020125,0.0000020107,0.0000020091,0.0000020071, -0.0000020063,0.0000020059,0.0000020058,0.0000020062,0.0000020071, -0.0000020090,0.0000020109,0.0000020125,0.0000020133,0.0000020134, -0.0000020128,0.0000020122,0.0000020117,0.0000020108,0.0000020096, -0.0000020078,0.0000020061,0.0000020052,0.0000020041,0.0000020035, -0.0000020030,0.0000020032,0.0000020028,0.0000020024,0.0000020009, -0.0000019981,0.0000019951,0.0000019920,0.0000019888,0.0000019860, -0.0000019836,0.0000019818,0.0000019796,0.0000019777,0.0000019761, -0.0000019746,0.0000019724,0.0000019705,0.0000019697,0.0000019696, -0.0000019697,0.0000019695,0.0000019691,0.0000019670,0.0000019636, -0.0000019599,0.0000019553,0.0000019498,0.0000019461,0.0000019440, -0.0000019445,0.0000019461,0.0000019484,0.0000019509,0.0000019530, -0.0000019551,0.0000019570,0.0000019578,0.0000019578,0.0000019571, -0.0000019556,0.0000019540,0.0000019536,0.0000019543,0.0000019553, -0.0000019557,0.0000019548,0.0000019522,0.0000019493,0.0000019468, -0.0000019446,0.0000019429,0.0000019413,0.0000019407,0.0000019406, -0.0000019403,0.0000019404,0.0000019407,0.0000019407,0.0000019407, -0.0000019408,0.0000019403,0.0000019392,0.0000019379,0.0000019368, -0.0000019360,0.0000019350,0.0000019337,0.0000019325,0.0000019319, -0.0000019321,0.0000019330,0.0000019346,0.0000019369,0.0000019398, -0.0000019430,0.0000019465,0.0000019476,0.0000019490,0.0000019485, -0.0000019464,0.0000019433,0.0000019393,0.0000019344,0.0000019290, -0.0000019233,0.0000019191,0.0000019153,0.0000019139,0.0000019124, -0.0000019123,0.0000019126,0.0000019131,0.0000019136,0.0000019145, -0.0000019158,0.0000019170,0.0000019183,0.0000019185,0.0000019166, -0.0000019162,0.0000019135,0.0000019096,0.0000019052,0.0000019005, -0.0000018954,0.0000018913,0.0000018886,0.0000018860,0.0000018853, -0.0000018848,0.0000018840,0.0000018845,0.0000018854,0.0000018865, -0.0000018860,0.0000018838,0.0000018813,0.0000018780,0.0000018772, -0.0000018789,0.0000018835,0.0000018896,0.0000018955,0.0000018989, -0.0000019010,0.0000018994,0.0000018984,0.0000018959,0.0000018929, -0.0000018899,0.0000018874,0.0000018866,0.0000018852,0.0000018834, -0.0000018811,0.0000018788,0.0000018769,0.0000018753,0.0000018740, -0.0000018731,0.0000018736,0.0000018763,0.0000018826,0.0000018906, -0.0000018989,0.0000019062,0.0000019124,0.0000019144,0.0000019159, -0.0000019156,0.0000019160,0.0000019181,0.0000019203,0.0000019220, -0.0000019220,0.0000019207,0.0000019170,0.0000019122,0.0000019075, -0.0000019035,0.0000019002,0.0000018978,0.0000018975,0.0000018995, -0.0000019028,0.0000019055,0.0000019053,0.0000019053,0.0000019041, -0.0000019033,0.0000019037,0.0000019051,0.0000019064,0.0000019067, -0.0000019059,0.0000019035,0.0000019005,0.0000018982,0.0000018977, -0.0000018978,0.0000018987,0.0000018997,0.0000019001,0.0000019004, -0.0000019011,0.0000019015,0.0000019018,0.0000019008,0.0000018979, -0.0000018942,0.0000018904,0.0000018866,0.0000018829,0.0000018805, -0.0000018801,0.0000018822,0.0000018863,0.0000018890,0.0000018885, -0.0000018838,0.0000018762,0.0000018672,0.0000018598,0.0000018555, -0.0000018540,0.0000018536,0.0000018534,0.0000018518,0.0000018477, -0.0000018429,0.0000018372,0.0000018295,0.0000018249,0.0000018226, -0.0000018221,0.0000018219,0.0000018225,0.0000018230,0.0000018236, -0.0000018247,0.0000018250,0.0000018250,0.0000018255,0.0000018280, -0.0000018328,0.0000018390,0.0000018462,0.0000018525,0.0000018583, -0.0000018624,0.0000018648,0.0000018649,0.0000018634,0.0000018601, -0.0000018552,0.0000018496,0.0000018437,0.0000018376,0.0000018335, -0.0000018321,0.0000018314,0.0000018304,0.0000018303,0.0000018306, -0.0000018300,0.0000018296,0.0000018288,0.0000018280,0.0000018279, -0.0000018280,0.0000018280,0.0000018276,0.0000018262,0.0000018242, -0.0000018222,0.0000018203,0.0000018186,0.0000018168,0.0000018151, -0.0000018142,0.0000018135,0.0000018128,0.0000018119,0.0000018113, -0.0000018113,0.0000018116,0.0000018124,0.0000018130,0.0000018131, -0.0000018130,0.0000018128,0.0000018127,0.0000018127,0.0000018128, -0.0000018128,0.0000018126,0.0000018120,0.0000018111,0.0000018100, -0.0000018088,0.0000018076,0.0000018061,0.0000018040,0.0000018015, -0.0000017992,0.0000017973,0.0000017959,0.0000017950,0.0000017946, -0.0000017943,0.0000017936,0.0000017930,0.0000017925,0.0000017923, -0.0000017930,0.0000017945,0.0000017962,0.0000017977,0.0000017987, -0.0000017986,0.0000017987,0.0000017986,0.0000017979,0.0000017988, -0.0000018012,0.0000018049,0.0000018102,0.0000018165,0.0000018229, -0.0000018290,0.0000018349,0.0000018401,0.0000018448,0.0000018493, -0.0000018538,0.0000018580,0.0000018615,0.0000018647,0.0000018680, -0.0000018718,0.0000018775,0.0000018861,0.0000018984,0.0000019137, -0.0000019299,0.0000019448,0.0000019555,0.0000019593,0.0000019591, -0.0000019567,0.0000019509,0.0000019443,0.0000019370,0.0000019281, -0.0000019176,0.0000019068,0.0000018980,0.0000018928,0.0000018908, -0.0000018896,0.0000018890,0.0000018884,0.0000018881,0.0000018877, -0.0000018874,0.0000018867,0.0000018855,0.0000018830,0.0000018791, -0.0000018744,0.0000018700,0.0000018664,0.0000018629,0.0000018594, -0.0000018572,0.0000018563,0.0000018564,0.0000018566,0.0000018567, -0.0000018572,0.0000018587,0.0000018611,0.0000018639,0.0000018661, -0.0000018666,0.0000018657,0.0000018630,0.0000018592,0.0000018546, -0.0000018500,0.0000018462,0.0000018439,0.0000018423,0.0000018409, -0.0000018394,0.0000018377,0.0000018361,0.0000018353,0.0000018355, -0.0000018363,0.0000018375,0.0000018388,0.0000018406,0.0000018429, -0.0000018447,0.0000018459,0.0000018463,0.0000018458,0.0000018450, -0.0000018443,0.0000018435,0.0000018436,0.0000018431,0.0000018413, -0.0000018376,0.0000018323,0.0000018266,0.0000018219,0.0000018187, -0.0000018170,0.0000018164,0.0000018173,0.0000018194,0.0000018221, -0.0000018243,0.0000018258,0.0000018276,0.0000018303,0.0000018338, -0.0000018385,0.0000018439,0.0000018495,0.0000018541,0.0000018575, -0.0000018594,0.0000018598,0.0000018594,0.0000018589,0.0000018582, -0.0000018572,0.0000018563,0.0000018557,0.0000018554,0.0000018552, -0.0000018546,0.0000018538,0.0000018529,0.0000018520,0.0000018512, -0.0000018503,0.0000018493,0.0000018484,0.0000018475,0.0000018468, -0.0000018466,0.0000018468,0.0000018469,0.0000018468,0.0000018462, -0.0000018456,0.0000018452,0.0000018450,0.0000018451,0.0000018452, -0.0000018449,0.0000018448,0.0000018445,0.0000018437,0.0000018425, -0.0000018409,0.0000018390,0.0000018368,0.0000018345,0.0000018325, -0.0000018312,0.0000018307,0.0000018312,0.0000018327,0.0000018353, -0.0000018392,0.0000018439,0.0000018489,0.0000018535,0.0000018569, -0.0000018586,0.0000018589,0.0000018565,0.0000018523,0.0000018507, -0.0000018558,0.0000018633,0.0000018694,0.0000018818,0.0000018817, -0.0000018742,0.0000018765,0.0000018850,0.0000018714,0.0000018639, -0.0000018791,0.0000018852,0.0000018763,0.0000018693,0.0000018691, -0.0000018710,0.0000018722,0.0000018724,0.0000018776,0.0000018881, -0.0000018950,0.0000018962,0.0000018947,0.0000018931,0.0000018922, -0.0000018922,0.0000018924,0.0000018923,0.0000018918,0.0000018916, -0.0000018920,0.0000018932,0.0000018945,0.0000018951,0.0000018952, -0.0000018957,0.0000018966,0.0000018970,0.0000018931,0.0000018661, -0.0000018165,0.0000017774,0.0000017645,0.0000017606,0.0000017558, -0.0000017535,0.0000017540,0.0000017557,0.0000017567,0.0000017561, -0.0000017539,0.0000017526,0.0000017533,0.0000017555,0.0000017586, -0.0000017618,0.0000017645,0.0000017669,0.0000017690,0.0000017711, -0.0000017731,0.0000017748,0.0000017762,0.0000017771,0.0000017778, -0.0000017786,0.0000017793,0.0000017798,0.0000017800,0.0000017799, -0.0000017797,0.0000017795,0.0000017793,0.0000017791,0.0000017792, -0.0000017796,0.0000017805,0.0000017817,0.0000017829,0.0000017842, -0.0000017855,0.0000017870,0.0000017888,0.0000017906,0.0000017925, -0.0000017943,0.0000017962,0.0000017985,0.0000018007,0.0000018033, -0.0000018062,0.0000018089,0.0000018124,0.0000018189,0.0000018294, -0.0000018414,0.0000018501,0.0000018503,0.0000018453,0.0000018349, -0.0000018279,0.0000018252,0.0000018252,0.0000018267,0.0000018287, -0.0000018304,0.0000018302,0.0000018284,0.0000018261,0.0000018242, -0.0000018225,0.0000018213,0.0000018203,0.0000018198,0.0000018198, -0.0000018195,0.0000018190,0.0000018180,0.0000018166,0.0000018151, -0.0000018138,0.0000018130,0.0000018128,0.0000018130,0.0000018146, -0.0000018169,0.0000018195,0.0000018220,0.0000018245,0.0000018265, -0.0000018287,0.0000018306,0.0000018319,0.0000018324,0.0000018324, -0.0000018317,0.0000018303,0.0000018288,0.0000018276,0.0000018272, -0.0000018277,0.0000018284,0.0000018289,0.0000018289,0.0000018285, -0.0000018277,0.0000018269,0.0000018263,0.0000018263,0.0000018269, -0.0000018278,0.0000018282,0.0000018283,0.0000018282,0.0000018277, -0.0000018269,0.0000018256,0.0000018243,0.0000018237,0.0000018240, -0.0000018252,0.0000018268,0.0000018284,0.0000018301,0.0000018320, -0.0000018340,0.0000018349,0.0000018375,0.0000018398,0.0000018418, -0.0000018436,0.0000018456,0.0000018475,0.0000018493,0.0000018509, -0.0000018525,0.0000018538,0.0000018551,0.0000018563,0.0000018574, -0.0000018587,0.0000018599,0.0000018606,0.0000018610,0.0000018610, -0.0000018610,0.0000018603,0.0000018589,0.0000018570,0.0000018548, -0.0000018523,0.0000018500,0.0000018484,0.0000018474,0.0000018464, -0.0000018452,0.0000018438,0.0000018419,0.0000018392,0.0000018365, -0.0000018337,0.0000018311,0.0000018290,0.0000018278,0.0000018269, -0.0000018263,0.0000018258,0.0000018254,0.0000018247,0.0000018232, -0.0000018205,0.0000018164,0.0000018110,0.0000018051,0.0000017992, -0.0000017943,0.0000017908,0.0000017888,0.0000017871,0.0000017846, -0.0000017816,0.0000017789,0.0000017771,0.0000017766,0.0000017777, -0.0000017797,0.0000017831,0.0000017874,0.0000017915,0.0000017945, -0.0000017955,0.0000017953,0.0000017947,0.0000017944,0.0000017963, -0.0000018019,0.0000018119,0.0000018238,0.0000018340,0.0000018379, -0.0000018382,0.0000018365,0.0000018346,0.0000018333,0.0000018323, -0.0000018324,0.0000018344,0.0000018377,0.0000018408,0.0000018407, -0.0000018389,0.0000018349,0.0000018300,0.0000018243,0.0000018176, -0.0000018097,0.0000018013,0.0000017932,0.0000017867,0.0000017824, -0.0000017802,0.0000017792,0.0000017793,0.0000017806,0.0000017826, -0.0000017847,0.0000017858,0.0000017858,0.0000017849,0.0000017833, -0.0000017812,0.0000017790,0.0000017773,0.0000017773,0.0000017799, -0.0000017853,0.0000017925,0.0000017987,0.0000018032,0.0000018079, -0.0000018139,0.0000018201,0.0000018248,0.0000018275,0.0000018283, -0.0000018280,0.0000018266,0.0000018247,0.0000018221,0.0000018190, -0.0000018156,0.0000018125,0.0000018093,0.0000018055,0.0000018009, -0.0000017957,0.0000017908,0.0000017864,0.0000017823,0.0000017782, -0.0000017738,0.0000017693,0.0000017647,0.0000017603,0.0000017571, -0.0000017554,0.0000017550,0.0000017553,0.0000017558,0.0000017556, -0.0000017549,0.0000017540,0.0000017533,0.0000017530,0.0000017529, -0.0000017529,0.0000017528,0.0000017529,0.0000017532,0.0000017534, -0.0000017537,0.0000017546,0.0000017557,0.0000017568,0.0000017575, -0.0000017585,0.0000017597,0.0000017608,0.0000017612,0.0000017615, -0.0000017617,0.0000017621,0.0000017626,0.0000017635,0.0000017646, -0.0000017654,0.0000017655,0.0000017646,0.0000017626,0.0000017595, -0.0000017555,0.0000017507,0.0000017459,0.0000017414,0.0000017375, -0.0000017342,0.0000017319,0.0000017303,0.0000017292,0.0000017284, -0.0000017288,0.0000017296,0.0000017309,0.0000017330,0.0000017356, -0.0000017379,0.0000017400,0.0000017418,0.0000017432,0.0000017444, -0.0000017452,0.0000017460,0.0000017467,0.0000017472,0.0000017479, -0.0000017486,0.0000017495,0.0000017504,0.0000017513,0.0000017520, -0.0000017527,0.0000017534,0.0000017543,0.0000017556,0.0000017573, -0.0000017595,0.0000017617,0.0000017638,0.0000017658,0.0000017677, -0.0000017693,0.0000017702,0.0000017705,0.0000017704,0.0000017697, -0.0000017683,0.0000017668,0.0000017651,0.0000017633,0.0000017617, -0.0000017600,0.0000017587,0.0000017581,0.0000017581,0.0000017577, -0.0000017569,0.0000017555,0.0000017539,0.0000017521,0.0000017496, -0.0000017466,0.0000017430,0.0000017396,0.0000017369,0.0000017347, -0.0000017343,0.0000017371,0.0000017459,0.0000017602,0.0000017773, -0.0000017917,0.0000018002,0.0000018038,0.0000018074,0.0000018138, -0.0000018229,0.0000018316,0.0000018353,0.0000018339,0.0000018242, -0.0000018074,0.0000017892,0.0000017771,0.0000017740,0.0000017737, -0.0000017738,0.0000017739,0.0000017744,0.0000017754,0.0000017762, -0.0000017768,0.0000017780,0.0000017803,0.0000017831,0.0000017855, -0.0000017865,0.0000017857,0.0000017835,0.0000017794,0.0000017716, -0.0000017598,0.0000017485,0.0000017440,0.0000017445,0.0000017482, -0.0000017526,0.0000017594,0.0000017731,0.0000017939,0.0000018109, -0.0000018168,0.0000018203,0.0000018261,0.0000018326,0.0000018463, -0.0000018667,0.0000018841,0.0000018970,0.0000019080,0.0000019192, -0.0000019284,0.0000019298,0.0000019295,0.0000019352,0.0000019448, -0.0000019525,0.0000019565,0.0000019583,0.0000019597,0.0000019619, -0.0000019642,0.0000019665,0.0000019684,0.0000019695,0.0000019702, -0.0000019705,0.0000019703,0.0000019698,0.0000019696,0.0000019699, -0.0000019703,0.0000019709,0.0000019714,0.0000019714,0.0000019716, -0.0000019716,0.0000019724,0.0000019736,0.0000019748,0.0000019761, -0.0000019772,0.0000019781,0.0000019786,0.0000019791,0.0000019794, -0.0000019798,0.0000019801,0.0000019803,0.0000019805,0.0000019805, -0.0000019803,0.0000019796,0.0000019793,0.0000019793,0.0000019792, -0.0000019793,0.0000019790,0.0000019787,0.0000019783,0.0000019776, -0.0000019766,0.0000019750,0.0000019734,0.0000019714,0.0000019693, -0.0000019672,0.0000019651,0.0000019630,0.0000019610,0.0000019592, -0.0000019574,0.0000019556,0.0000019539,0.0000019521,0.0000019504, -0.0000019487,0.0000019474,0.0000019463,0.0000019454,0.0000019448, -0.0000019441,0.0000019432,0.0000019420,0.0000019403,0.0000019380, -0.0000019351,0.0000019315,0.0000019272,0.0000019228,0.0000019188, -0.0000019156,0.0000019133,0.0000019111,0.0000019082,0.0000019039, -0.0000018974,0.0000018887,0.0000018777,0.0000018647,0.0000018504, -0.0000018358,0.0000018212,0.0000018069,0.0000017937,0.0000017823, -0.0000017727,0.0000017651,0.0000017595,0.0000017551,0.0000017517, -0.0000017492,0.0000017488,0.0000017468,0.0000017469,0.0000017470, -0.0000017477,0.0000017485,0.0000017493,0.0000017497,0.0000017489, -0.0000017484,0.0000017466,0.0000017446,0.0000017411,0.0000017377, -0.0000017338,0.0000017296,0.0000017251,0.0000017217,0.0000017186, -0.0000017158,0.0000017140,0.0000017127,0.0000017120,0.0000017118, -0.0000017117,0.0000017116,0.0000017120,0.0000017123,0.0000017124, -0.0000017122,0.0000017119,0.0000017118,0.0000017119,0.0000017122, -0.0000017126,0.0000017135,0.0000017152,0.0000017170,0.0000017183, -0.0000017198,0.0000017222,0.0000017244,0.0000017266,0.0000017292, -0.0000017307,0.0000017328,0.0000017350,0.0000017368,0.0000017379, -0.0000017389,0.0000017399,0.0000017406,0.0000017412,0.0000017418, -0.0000017424,0.0000017429,0.0000017431,0.0000017435,0.0000017435, -0.0000017431,0.0000017422,0.0000017409,0.0000017390,0.0000017366, -0.0000017338,0.0000017309,0.0000017281,0.0000017263,0.0000017243, -0.0000017218,0.0000017204,0.0000017207,0.0000017231,0.0000017228, -0.0000017256,0.0000017298,0.0000017325,0.0000017356,0.0000017401, -0.0000017443,0.0000017473,0.0000017501,0.0000017519,0.0000017529, -0.0000017534,0.0000017525,0.0000017504,0.0000017493,0.0000017470, -0.0000017436,0.0000017402,0.0000017384,0.0000017360,0.0000017337, -0.0000017336,0.0000017313,0.0000017340,0.0000017397,0.0000017482, -0.0000017582,0.0000017707,0.0000017857,0.0000018021,0.0000018194, -0.0000018367,0.0000018532,0.0000018680,0.0000018804,0.0000018904, -0.0000018976,0.0000019025,0.0000019058,0.0000019078,0.0000019086, -0.0000019092,0.0000019094,0.0000019093,0.0000019090,0.0000019088, -0.0000019087,0.0000019090,0.0000019101,0.0000019119,0.0000019141, -0.0000019164,0.0000019188,0.0000019212,0.0000019232,0.0000019255, -0.0000019277,0.0000019299,0.0000019319,0.0000019337,0.0000019356, -0.0000019374,0.0000019392,0.0000019406,0.0000019419,0.0000019432, -0.0000019441,0.0000019444,0.0000019446,0.0000019447,0.0000019449, -0.0000019452,0.0000019459,0.0000019473,0.0000019491,0.0000019511, -0.0000019529,0.0000019545,0.0000019559,0.0000019573,0.0000019584, -0.0000019596,0.0000019613,0.0000019633,0.0000019652,0.0000019668, -0.0000019677,0.0000019687,0.0000019705,0.0000019733,0.0000019768, -0.0000019802,0.0000019835,0.0000019866,0.0000019889,0.0000019906, -0.0000019921,0.0000019937,0.0000019950,0.0000019961,0.0000019973, -0.0000019978,0.0000019980,0.0000019980,0.0000019979,0.0000019977, -0.0000019971,0.0000019964,0.0000019959,0.0000019952,0.0000019939, -0.0000019925,0.0000019910,0.0000019898,0.0000019899,0.0000019908, -0.0000019922,0.0000019943,0.0000019964,0.0000019982,0.0000020000, -0.0000020011,0.0000020016,0.0000020015,0.0000020010,0.0000020001, -0.0000019989,0.0000019975,0.0000019959,0.0000019942,0.0000019919, -0.0000019891,0.0000019858,0.0000019850,0.0000019851,0.0000019853, -0.0000019856,0.0000019863,0.0000019862,0.0000019857,0.0000019858, -0.0000019864,0.0000019858,0.0000019845,0.0000019824,0.0000019796, -0.0000019766,0.0000019754,0.0000019741,0.0000019754,0.0000019786, -0.0000019834,0.0000019894,0.0000019965,0.0000020038,0.0000020107, -0.0000020153,0.0000020178,0.0000020184,0.0000020179,0.0000020161, -0.0000020136,0.0000020111,0.0000020084,0.0000020056,0.0000020030, -0.0000020002,0.0000019976,0.0000019954,0.0000019938,0.0000019940, -0.0000019952,0.0000019965,0.0000019980,0.0000019996,0.0000020015, -0.0000020037,0.0000020052,0.0000020062,0.0000020068,0.0000020074, -0.0000020080,0.0000020076,0.0000020069,0.0000020056,0.0000020037, -0.0000020013,0.0000019986,0.0000019964,0.0000019945,0.0000019925, -0.0000019911,0.0000019898,0.0000019888,0.0000019870,0.0000019851, -0.0000019824,0.0000019796,0.0000019771,0.0000019756,0.0000019740, -0.0000019731,0.0000019715,0.0000019696,0.0000019682,0.0000019674, -0.0000019666,0.0000019663,0.0000019665,0.0000019661,0.0000019656, -0.0000019657,0.0000019664,0.0000019659,0.0000019635,0.0000019602, -0.0000019556,0.0000019503,0.0000019445,0.0000019379,0.0000019324, -0.0000019291,0.0000019283,0.0000019296,0.0000019322,0.0000019355, -0.0000019387,0.0000019403,0.0000019407,0.0000019403,0.0000019389, -0.0000019370,0.0000019355,0.0000019350,0.0000019357,0.0000019373, -0.0000019393,0.0000019407,0.0000019412,0.0000019411,0.0000019408, -0.0000019402,0.0000019386,0.0000019365,0.0000019336,0.0000019305, -0.0000019285,0.0000019275,0.0000019272,0.0000019280,0.0000019297, -0.0000019319,0.0000019333,0.0000019336,0.0000019335,0.0000019333, -0.0000019326,0.0000019311,0.0000019291,0.0000019270,0.0000019255, -0.0000019248,0.0000019248,0.0000019255,0.0000019272,0.0000019304, -0.0000019348,0.0000019395,0.0000019434,0.0000019463,0.0000019479, -0.0000019479,0.0000019485,0.0000019474,0.0000019450,0.0000019411, -0.0000019361,0.0000019303,0.0000019244,0.0000019196,0.0000019155, -0.0000019117,0.0000019101,0.0000019078,0.0000019071,0.0000019073, -0.0000019083,0.0000019097,0.0000019110,0.0000019118,0.0000019126, -0.0000019129,0.0000019124,0.0000019110,0.0000019103,0.0000019084, -0.0000019062,0.0000019033,0.0000018991,0.0000018939,0.0000018894, -0.0000018844,0.0000018824,0.0000018814,0.0000018827,0.0000018842, -0.0000018847,0.0000018829,0.0000018788,0.0000018736,0.0000018692, -0.0000018673,0.0000018682,0.0000018727,0.0000018793,0.0000018871, -0.0000018933,0.0000018977,0.0000018988,0.0000018977,0.0000018959, -0.0000018927,0.0000018895,0.0000018861,0.0000018829,0.0000018796, -0.0000018766,0.0000018731,0.0000018693,0.0000018662,0.0000018640, -0.0000018632,0.0000018644,0.0000018684,0.0000018741,0.0000018810, -0.0000018896,0.0000018984,0.0000019062,0.0000019126,0.0000019154, -0.0000019171,0.0000019173,0.0000019174,0.0000019185,0.0000019197, -0.0000019197,0.0000019176,0.0000019133,0.0000019074,0.0000019012, -0.0000018953,0.0000018888,0.0000018845,0.0000018842,0.0000018861, -0.0000018897,0.0000018941,0.0000018982,0.0000019012,0.0000019032, -0.0000019046,0.0000019064,0.0000019087,0.0000019098,0.0000019094, -0.0000019075,0.0000019037,0.0000019009,0.0000018999,0.0000019006, -0.0000019024,0.0000019035,0.0000019039,0.0000019040,0.0000019041, -0.0000019044,0.0000019046,0.0000019035,0.0000018996,0.0000018952, -0.0000018909,0.0000018866,0.0000018827,0.0000018801,0.0000018798, -0.0000018821,0.0000018862,0.0000018894,0.0000018894,0.0000018856, -0.0000018778,0.0000018678,0.0000018587,0.0000018525,0.0000018506, -0.0000018505,0.0000018510,0.0000018509,0.0000018480,0.0000018434, -0.0000018381,0.0000018315,0.0000018270,0.0000018235,0.0000018220, -0.0000018221,0.0000018229,0.0000018229,0.0000018224,0.0000018227, -0.0000018228,0.0000018223,0.0000018229,0.0000018250,0.0000018290, -0.0000018348,0.0000018417,0.0000018482,0.0000018546,0.0000018596, -0.0000018627,0.0000018641,0.0000018639,0.0000018617,0.0000018576, -0.0000018524,0.0000018460,0.0000018396,0.0000018351,0.0000018326, -0.0000018311,0.0000018292,0.0000018272,0.0000018258,0.0000018250, -0.0000018246,0.0000018239,0.0000018236,0.0000018239,0.0000018248, -0.0000018255,0.0000018254,0.0000018243,0.0000018229,0.0000018217, -0.0000018206,0.0000018192,0.0000018171,0.0000018146,0.0000018129, -0.0000018111,0.0000018100,0.0000018089,0.0000018080,0.0000018079, -0.0000018083,0.0000018092,0.0000018103,0.0000018110,0.0000018113, -0.0000018112,0.0000018110,0.0000018111,0.0000018113,0.0000018113, -0.0000018111,0.0000018106,0.0000018099,0.0000018091,0.0000018085, -0.0000018078,0.0000018068,0.0000018050,0.0000018028,0.0000018004, -0.0000017981,0.0000017962,0.0000017949,0.0000017939,0.0000017932, -0.0000017927,0.0000017922,0.0000017914,0.0000017908,0.0000017911, -0.0000017919,0.0000017934,0.0000017952,0.0000017970,0.0000017982, -0.0000017990,0.0000017992,0.0000017988,0.0000017991,0.0000017995, -0.0000018007,0.0000018040,0.0000018087,0.0000018142,0.0000018206, -0.0000018270,0.0000018326,0.0000018377,0.0000018422,0.0000018462, -0.0000018501,0.0000018541,0.0000018583,0.0000018621,0.0000018656, -0.0000018694,0.0000018748,0.0000018831,0.0000018947,0.0000019093, -0.0000019256,0.0000019406,0.0000019516,0.0000019579,0.0000019568, -0.0000019543,0.0000019481,0.0000019413,0.0000019335,0.0000019237, -0.0000019124,0.0000019014,0.0000018931,0.0000018891,0.0000018873, -0.0000018869,0.0000018873,0.0000018879,0.0000018883,0.0000018881, -0.0000018879,0.0000018877,0.0000018867,0.0000018839,0.0000018796, -0.0000018746,0.0000018700,0.0000018661,0.0000018622,0.0000018583, -0.0000018559,0.0000018550,0.0000018550,0.0000018551,0.0000018553, -0.0000018567,0.0000018588,0.0000018610,0.0000018634,0.0000018653, -0.0000018657,0.0000018644,0.0000018615,0.0000018574,0.0000018527, -0.0000018479,0.0000018438,0.0000018410,0.0000018394,0.0000018381, -0.0000018365,0.0000018350,0.0000018344,0.0000018345,0.0000018349, -0.0000018357,0.0000018371,0.0000018392,0.0000018415,0.0000018433, -0.0000018443,0.0000018442,0.0000018433,0.0000018425,0.0000018418, -0.0000018417,0.0000018417,0.0000018407,0.0000018385,0.0000018354, -0.0000018308,0.0000018262,0.0000018219,0.0000018183,0.0000018158, -0.0000018147,0.0000018142,0.0000018160,0.0000018186,0.0000018214, -0.0000018237,0.0000018250,0.0000018259,0.0000018269,0.0000018291, -0.0000018324,0.0000018365,0.0000018409,0.0000018451,0.0000018484, -0.0000018509,0.0000018527,0.0000018537,0.0000018539,0.0000018539, -0.0000018540,0.0000018540,0.0000018539,0.0000018536,0.0000018531, -0.0000018525,0.0000018521,0.0000018515,0.0000018508,0.0000018500, -0.0000018491,0.0000018480,0.0000018471,0.0000018467,0.0000018466, -0.0000018466,0.0000018463,0.0000018461,0.0000018461,0.0000018460, -0.0000018458,0.0000018452,0.0000018439,0.0000018423,0.0000018403, -0.0000018379,0.0000018352,0.0000018325,0.0000018302,0.0000018284, -0.0000018271,0.0000018264,0.0000018267,0.0000018277,0.0000018296, -0.0000018324,0.0000018364,0.0000018412,0.0000018463,0.0000018508, -0.0000018543,0.0000018564,0.0000018577,0.0000018578,0.0000018560, -0.0000018518,0.0000018480,0.0000018506,0.0000018596,0.0000018671, -0.0000018801,0.0000018829,0.0000018748,0.0000018746,0.0000018836, -0.0000018700,0.0000018458,0.0000018533,0.0000018770,0.0000018820, -0.0000018753,0.0000018705,0.0000018706,0.0000018719,0.0000018725, -0.0000018724,0.0000018725,0.0000018771,0.0000018859,0.0000018932, -0.0000018954,0.0000018955,0.0000018953,0.0000018952,0.0000018950, -0.0000018949,0.0000018949,0.0000018951,0.0000018952,0.0000018950, -0.0000018949,0.0000018953,0.0000018959,0.0000018962,0.0000018938, -0.0000018771,0.0000018353,0.0000017891,0.0000017664,0.0000017604, -0.0000017549,0.0000017503,0.0000017489,0.0000017493,0.0000017506, -0.0000017515,0.0000017509,0.0000017484,0.0000017470,0.0000017477, -0.0000017501,0.0000017531,0.0000017561,0.0000017584,0.0000017604, -0.0000017624,0.0000017644,0.0000017661,0.0000017673,0.0000017680, -0.0000017684,0.0000017690,0.0000017699,0.0000017707,0.0000017715, -0.0000017722,0.0000017729,0.0000017735,0.0000017742,0.0000017749, -0.0000017760,0.0000017766,0.0000017773,0.0000017783,0.0000017795, -0.0000017807,0.0000017816,0.0000017822,0.0000017834,0.0000017845, -0.0000017856,0.0000017870,0.0000017883,0.0000017899,0.0000017918, -0.0000017937,0.0000017959,0.0000017985,0.0000018015,0.0000018049, -0.0000018095,0.0000018164,0.0000018256,0.0000018363,0.0000018447, -0.0000018484,0.0000018456,0.0000018367,0.0000018277,0.0000018233, -0.0000018229,0.0000018236,0.0000018253,0.0000018278,0.0000018289, -0.0000018282,0.0000018266,0.0000018250,0.0000018241,0.0000018235, -0.0000018235,0.0000018236,0.0000018237,0.0000018236,0.0000018234, -0.0000018227,0.0000018215,0.0000018198,0.0000018180,0.0000018162, -0.0000018145,0.0000018141,0.0000018147,0.0000018159,0.0000018176, -0.0000018199,0.0000018229,0.0000018260,0.0000018289,0.0000018314, -0.0000018329,0.0000018333,0.0000018333,0.0000018325,0.0000018309, -0.0000018294,0.0000018283,0.0000018280,0.0000018282,0.0000018283, -0.0000018281,0.0000018273,0.0000018260,0.0000018246,0.0000018231, -0.0000018222,0.0000018217,0.0000018218,0.0000018223,0.0000018224, -0.0000018225,0.0000018225,0.0000018223,0.0000018217,0.0000018212, -0.0000018207,0.0000018209,0.0000018217,0.0000018236,0.0000018259, -0.0000018282,0.0000018301,0.0000018325,0.0000018370,0.0000018395, -0.0000018419,0.0000018439,0.0000018456,0.0000018473,0.0000018492, -0.0000018510,0.0000018528,0.0000018545,0.0000018560,0.0000018573, -0.0000018584,0.0000018592,0.0000018599,0.0000018604,0.0000018605, -0.0000018605,0.0000018601,0.0000018597,0.0000018592,0.0000018583, -0.0000018569,0.0000018548,0.0000018522,0.0000018493,0.0000018462, -0.0000018438,0.0000018425,0.0000018420,0.0000018418,0.0000018417, -0.0000018411,0.0000018407,0.0000018399,0.0000018387,0.0000018371, -0.0000018351,0.0000018330,0.0000018310,0.0000018296,0.0000018286, -0.0000018279,0.0000018273,0.0000018264,0.0000018246,0.0000018213, -0.0000018165,0.0000018107,0.0000018047,0.0000017992,0.0000017954, -0.0000017932,0.0000017918,0.0000017901,0.0000017878,0.0000017852, -0.0000017829,0.0000017813,0.0000017801,0.0000017808,0.0000017827, -0.0000017861,0.0000017905,0.0000017946,0.0000017966,0.0000017968, -0.0000017956,0.0000017944,0.0000017937,0.0000017957,0.0000018025, -0.0000018140,0.0000018264,0.0000018354,0.0000018372,0.0000018363, -0.0000018342,0.0000018320,0.0000018306,0.0000018302,0.0000018311, -0.0000018333,0.0000018361,0.0000018374,0.0000018363,0.0000018330, -0.0000018280,0.0000018221,0.0000018151,0.0000018071,0.0000017988, -0.0000017913,0.0000017855,0.0000017816,0.0000017794,0.0000017786, -0.0000017788,0.0000017801,0.0000017824,0.0000017849,0.0000017862, -0.0000017864,0.0000017857,0.0000017844,0.0000017822,0.0000017791, -0.0000017764,0.0000017748,0.0000017755,0.0000017796,0.0000017867, -0.0000017938,0.0000017986,0.0000018020,0.0000018061,0.0000018119, -0.0000018175,0.0000018213,0.0000018234,0.0000018242,0.0000018239, -0.0000018226,0.0000018201,0.0000018175,0.0000018148,0.0000018119, -0.0000018086,0.0000018044,0.0000017991,0.0000017936,0.0000017885, -0.0000017838,0.0000017796,0.0000017758,0.0000017723,0.0000017684, -0.0000017640,0.0000017601,0.0000017580,0.0000017576,0.0000017579, -0.0000017585,0.0000017585,0.0000017574,0.0000017556,0.0000017538, -0.0000017526,0.0000017520,0.0000017518,0.0000017519,0.0000017523, -0.0000017527,0.0000017533,0.0000017544,0.0000017563,0.0000017588, -0.0000017612,0.0000017633,0.0000017650,0.0000017664,0.0000017674, -0.0000017681,0.0000017690,0.0000017702,0.0000017713,0.0000017724, -0.0000017734,0.0000017740,0.0000017739,0.0000017731,0.0000017716, -0.0000017697,0.0000017671,0.0000017642,0.0000017609,0.0000017573, -0.0000017533,0.0000017493,0.0000017453,0.0000017417,0.0000017387, -0.0000017363,0.0000017347,0.0000017337,0.0000017328,0.0000017322, -0.0000017326,0.0000017327,0.0000017328,0.0000017332,0.0000017336, -0.0000017342,0.0000017352,0.0000017363,0.0000017376,0.0000017389, -0.0000017401,0.0000017411,0.0000017423,0.0000017435,0.0000017448, -0.0000017464,0.0000017479,0.0000017494,0.0000017509,0.0000017528, -0.0000017552,0.0000017579,0.0000017606,0.0000017631,0.0000017654, -0.0000017678,0.0000017699,0.0000017716,0.0000017728,0.0000017733, -0.0000017732,0.0000017721,0.0000017704,0.0000017686,0.0000017666, -0.0000017645,0.0000017625,0.0000017609,0.0000017600,0.0000017600, -0.0000017603,0.0000017602,0.0000017594,0.0000017580,0.0000017560, -0.0000017536,0.0000017508,0.0000017476,0.0000017440,0.0000017403, -0.0000017365,0.0000017334,0.0000017309,0.0000017299,0.0000017322, -0.0000017408,0.0000017557,0.0000017740,0.0000017913,0.0000018030, -0.0000018074,0.0000018091,0.0000018139,0.0000018217,0.0000018300, -0.0000018337,0.0000018320,0.0000018213,0.0000018036,0.0000017856, -0.0000017741,0.0000017724,0.0000017730,0.0000017738,0.0000017745, -0.0000017756,0.0000017766,0.0000017771,0.0000017775,0.0000017785, -0.0000017805,0.0000017830,0.0000017845,0.0000017840,0.0000017812, -0.0000017770,0.0000017697,0.0000017589,0.0000017480,0.0000017433, -0.0000017433,0.0000017466,0.0000017499,0.0000017540,0.0000017639, -0.0000017830,0.0000018028,0.0000018129,0.0000018175,0.0000018224, -0.0000018284,0.0000018405,0.0000018601,0.0000018783,0.0000018917, -0.0000019030,0.0000019140,0.0000019238,0.0000019273,0.0000019264, -0.0000019298,0.0000019382,0.0000019467,0.0000019518,0.0000019539, -0.0000019554,0.0000019579,0.0000019607,0.0000019634,0.0000019659, -0.0000019681,0.0000019699,0.0000019711,0.0000019717,0.0000019719, -0.0000019722,0.0000019722,0.0000019723,0.0000019725,0.0000019726, -0.0000019723,0.0000019717,0.0000019712,0.0000019715,0.0000019727, -0.0000019743,0.0000019759,0.0000019775,0.0000019785,0.0000019792, -0.0000019794,0.0000019794,0.0000019790,0.0000019788,0.0000019787, -0.0000019786,0.0000019785,0.0000019782,0.0000019783,0.0000019787, -0.0000019789,0.0000019790,0.0000019789,0.0000019787,0.0000019784, -0.0000019778,0.0000019769,0.0000019755,0.0000019738,0.0000019719, -0.0000019699,0.0000019677,0.0000019655,0.0000019634,0.0000019612, -0.0000019593,0.0000019574,0.0000019555,0.0000019537,0.0000019520, -0.0000019503,0.0000019485,0.0000019469,0.0000019455,0.0000019441, -0.0000019426,0.0000019406,0.0000019382,0.0000019350,0.0000019312, -0.0000019272,0.0000019233,0.0000019195,0.0000019161,0.0000019133, -0.0000019109,0.0000019080,0.0000019041,0.0000018982,0.0000018897, -0.0000018787,0.0000018654,0.0000018507,0.0000018348,0.0000018188, -0.0000018033,0.0000017893,0.0000017776,0.0000017679,0.0000017609, -0.0000017564,0.0000017538,0.0000017522,0.0000017525,0.0000017517, -0.0000017511,0.0000017510,0.0000017516,0.0000017523,0.0000017530, -0.0000017538,0.0000017537,0.0000017533,0.0000017514,0.0000017505, -0.0000017475,0.0000017447,0.0000017407,0.0000017364,0.0000017317, -0.0000017270,0.0000017227,0.0000017187,0.0000017149,0.0000017125, -0.0000017107,0.0000017092,0.0000017085,0.0000017085,0.0000017092, -0.0000017097,0.0000017103,0.0000017109,0.0000017117,0.0000017125, -0.0000017128,0.0000017126,0.0000017123,0.0000017122,0.0000017120, -0.0000017120,0.0000017129,0.0000017149,0.0000017182,0.0000017214, -0.0000017243,0.0000017275,0.0000017306,0.0000017335,0.0000017363, -0.0000017390,0.0000017415,0.0000017444,0.0000017473,0.0000017496, -0.0000017512,0.0000017522,0.0000017530,0.0000017539,0.0000017544, -0.0000017548,0.0000017552,0.0000017557,0.0000017560,0.0000017567, -0.0000017570,0.0000017570,0.0000017565,0.0000017555,0.0000017541, -0.0000017521,0.0000017496,0.0000017469,0.0000017440,0.0000017410, -0.0000017381,0.0000017355,0.0000017332,0.0000017312,0.0000017295, -0.0000017286,0.0000017295,0.0000017301,0.0000017298,0.0000017309, -0.0000017349,0.0000017348,0.0000017365,0.0000017390,0.0000017409, -0.0000017417,0.0000017427,0.0000017440,0.0000017440,0.0000017442, -0.0000017434,0.0000017430,0.0000017423,0.0000017410,0.0000017389, -0.0000017376,0.0000017354,0.0000017326,0.0000017310,0.0000017301, -0.0000017305,0.0000017298,0.0000017301,0.0000017348,0.0000017422, -0.0000017524,0.0000017662,0.0000017825,0.0000018010,0.0000018203, -0.0000018392,0.0000018564,0.0000018713,0.0000018837,0.0000018932, -0.0000018999,0.0000019045,0.0000019068,0.0000019078,0.0000019073, -0.0000019065,0.0000019058,0.0000019053,0.0000019053,0.0000019061, -0.0000019078,0.0000019100,0.0000019124,0.0000019149,0.0000019175, -0.0000019200,0.0000019223,0.0000019243,0.0000019259,0.0000019272, -0.0000019284,0.0000019296,0.0000019307,0.0000019316,0.0000019325, -0.0000019335,0.0000019342,0.0000019351,0.0000019364,0.0000019377, -0.0000019389,0.0000019401,0.0000019414,0.0000019430,0.0000019448, -0.0000019468,0.0000019489,0.0000019509,0.0000019523,0.0000019535, -0.0000019546,0.0000019557,0.0000019571,0.0000019587,0.0000019603, -0.0000019618,0.0000019631,0.0000019641,0.0000019655,0.0000019677, -0.0000019705,0.0000019739,0.0000019774,0.0000019812,0.0000019844, -0.0000019870,0.0000019892,0.0000019914,0.0000019932,0.0000019949, -0.0000019966,0.0000019980,0.0000019985,0.0000019998,0.0000020004, -0.0000020004,0.0000020001,0.0000019998,0.0000019994,0.0000019986, -0.0000019977,0.0000019966,0.0000019954,0.0000019947,0.0000019949, -0.0000019954,0.0000019961,0.0000019973,0.0000019988,0.0000020005, -0.0000020022,0.0000020036,0.0000020043,0.0000020043,0.0000020038, -0.0000020027,0.0000020010,0.0000019991,0.0000019968,0.0000019941, -0.0000019915,0.0000019889,0.0000019878,0.0000019877,0.0000019872, -0.0000019865,0.0000019861,0.0000019859,0.0000019852,0.0000019844, -0.0000019845,0.0000019845,0.0000019843,0.0000019839,0.0000019835, -0.0000019830,0.0000019818,0.0000019800,0.0000019785,0.0000019773, -0.0000019781,0.0000019787,0.0000019809,0.0000019842,0.0000019890, -0.0000019944,0.0000019997,0.0000020048,0.0000020091,0.0000020118, -0.0000020122,0.0000020108,0.0000020082,0.0000020051,0.0000020016, -0.0000019980,0.0000019944,0.0000019909,0.0000019873,0.0000019852, -0.0000019849,0.0000019856,0.0000019867,0.0000019885,0.0000019907, -0.0000019936,0.0000019963,0.0000019979,0.0000019987,0.0000019991, -0.0000019997,0.0000019999,0.0000020005,0.0000019998,0.0000019981, -0.0000019958,0.0000019933,0.0000019906,0.0000019884,0.0000019867, -0.0000019848,0.0000019834,0.0000019817,0.0000019804,0.0000019792, -0.0000019780,0.0000019766,0.0000019757,0.0000019752,0.0000019744, -0.0000019745,0.0000019738,0.0000019718,0.0000019692,0.0000019670, -0.0000019650,0.0000019640,0.0000019635,0.0000019620,0.0000019599, -0.0000019581,0.0000019571,0.0000019558,0.0000019544,0.0000019520, -0.0000019481,0.0000019438,0.0000019387,0.0000019325,0.0000019264, -0.0000019214,0.0000019179,0.0000019163,0.0000019166,0.0000019185, -0.0000019211,0.0000019228,0.0000019238,0.0000019239,0.0000019232, -0.0000019216,0.0000019195,0.0000019172,0.0000019153,0.0000019141, -0.0000019138,0.0000019146,0.0000019162,0.0000019187,0.0000019218, -0.0000019247,0.0000019265,0.0000019272,0.0000019256,0.0000019227, -0.0000019195,0.0000019163,0.0000019136,0.0000019120,0.0000019120, -0.0000019136,0.0000019159,0.0000019184,0.0000019206,0.0000019224, -0.0000019239,0.0000019247,0.0000019245,0.0000019236,0.0000019221, -0.0000019205,0.0000019194,0.0000019186,0.0000019181,0.0000019189, -0.0000019211,0.0000019249,0.0000019294,0.0000019338,0.0000019376, -0.0000019413,0.0000019445,0.0000019472,0.0000019479,0.0000019478, -0.0000019466,0.0000019437,0.0000019401,0.0000019361,0.0000019313, -0.0000019255,0.0000019194,0.0000019141,0.0000019101,0.0000019069, -0.0000019058,0.0000019048,0.0000019045,0.0000019043,0.0000019047, -0.0000019054,0.0000019059,0.0000019066,0.0000019069,0.0000019079, -0.0000019090,0.0000019091,0.0000019094,0.0000019068,0.0000019025, -0.0000018959,0.0000018889,0.0000018844,0.0000018816,0.0000018821, -0.0000018822,0.0000018824,0.0000018816,0.0000018785,0.0000018727, -0.0000018663,0.0000018612,0.0000018571,0.0000018575,0.0000018636, -0.0000018723,0.0000018814,0.0000018895,0.0000018945,0.0000018972, -0.0000018971,0.0000018964,0.0000018929,0.0000018880,0.0000018828, -0.0000018777,0.0000018727,0.0000018677,0.0000018633,0.0000018581, -0.0000018552,0.0000018551,0.0000018574,0.0000018615,0.0000018660, -0.0000018720,0.0000018796,0.0000018883,0.0000018975,0.0000019064, -0.0000019138,0.0000019170,0.0000019181,0.0000019181,0.0000019179, -0.0000019176,0.0000019161,0.0000019133,0.0000019084,0.0000019025, -0.0000018958,0.0000018881,0.0000018817,0.0000018767,0.0000018744, -0.0000018748,0.0000018764,0.0000018781,0.0000018804,0.0000018840, -0.0000018888,0.0000018943,0.0000019001,0.0000019046,0.0000019071, -0.0000019059,0.0000019033,0.0000019014,0.0000019012,0.0000019028, -0.0000019045,0.0000019057,0.0000019062,0.0000019060,0.0000019058, -0.0000019053,0.0000019053,0.0000019028,0.0000018990,0.0000018945, -0.0000018902,0.0000018857,0.0000018818,0.0000018795,0.0000018792, -0.0000018813,0.0000018852,0.0000018889,0.0000018895,0.0000018869, -0.0000018797,0.0000018701,0.0000018601,0.0000018529,0.0000018495, -0.0000018495,0.0000018501,0.0000018508,0.0000018487,0.0000018441, -0.0000018390,0.0000018340,0.0000018308,0.0000018268,0.0000018243, -0.0000018247,0.0000018253,0.0000018239,0.0000018222,0.0000018209, -0.0000018198,0.0000018191,0.0000018201,0.0000018228,0.0000018266, -0.0000018312,0.0000018367,0.0000018424,0.0000018486,0.0000018545, -0.0000018587,0.0000018614,0.0000018625,0.0000018612,0.0000018586, -0.0000018544,0.0000018488,0.0000018427,0.0000018372,0.0000018333, -0.0000018308,0.0000018275,0.0000018243,0.0000018215,0.0000018201, -0.0000018195,0.0000018192,0.0000018193,0.0000018201,0.0000018213, -0.0000018223,0.0000018228,0.0000018226,0.0000018222,0.0000018220, -0.0000018218,0.0000018211,0.0000018195,0.0000018169,0.0000018141, -0.0000018117,0.0000018097,0.0000018080,0.0000018069,0.0000018057, -0.0000018053,0.0000018055,0.0000018063,0.0000018072,0.0000018080, -0.0000018086,0.0000018092,0.0000018099,0.0000018103,0.0000018105, -0.0000018103,0.0000018097,0.0000018091,0.0000018085,0.0000018079, -0.0000018074,0.0000018065,0.0000018050,0.0000018031,0.0000018010, -0.0000017988,0.0000017964,0.0000017942,0.0000017926,0.0000017909, -0.0000017899,0.0000017893,0.0000017889,0.0000017888,0.0000017892, -0.0000017902,0.0000017918,0.0000017940,0.0000017961,0.0000017975, -0.0000017987,0.0000017993,0.0000017997,0.0000018000,0.0000018000, -0.0000018008,0.0000018024,0.0000018048,0.0000018078,0.0000018124, -0.0000018180,0.0000018241,0.0000018299,0.0000018349,0.0000018392, -0.0000018429,0.0000018468,0.0000018512,0.0000018557,0.0000018598, -0.0000018634,0.0000018672,0.0000018725,0.0000018803,0.0000018914, -0.0000019053,0.0000019209,0.0000019359,0.0000019476,0.0000019545, -0.0000019536,0.0000019507,0.0000019446,0.0000019376,0.0000019292, -0.0000019189,0.0000019073,0.0000018967,0.0000018897,0.0000018869, -0.0000018866,0.0000018868,0.0000018874,0.0000018883,0.0000018887, -0.0000018888,0.0000018890,0.0000018887,0.0000018873,0.0000018845, -0.0000018800,0.0000018745,0.0000018695,0.0000018650,0.0000018606, -0.0000018566,0.0000018544,0.0000018534,0.0000018532,0.0000018535, -0.0000018544,0.0000018562,0.0000018582,0.0000018603,0.0000018626, -0.0000018644,0.0000018648,0.0000018629,0.0000018593,0.0000018551, -0.0000018506,0.0000018462,0.0000018422,0.0000018393,0.0000018374, -0.0000018359,0.0000018346,0.0000018340,0.0000018340,0.0000018339, -0.0000018340,0.0000018353,0.0000018371,0.0000018388,0.0000018401, -0.0000018405,0.0000018402,0.0000018397,0.0000018396,0.0000018395, -0.0000018392,0.0000018384,0.0000018371,0.0000018351,0.0000018323, -0.0000018287,0.0000018247,0.0000018208,0.0000018173,0.0000018146, -0.0000018131,0.0000018124,0.0000018135,0.0000018158,0.0000018185, -0.0000018213,0.0000018234,0.0000018243,0.0000018243,0.0000018238, -0.0000018237,0.0000018246,0.0000018267,0.0000018294,0.0000018326, -0.0000018362,0.0000018397,0.0000018428,0.0000018456,0.0000018476, -0.0000018489,0.0000018498,0.0000018502,0.0000018505,0.0000018504, -0.0000018502,0.0000018497,0.0000018491,0.0000018485,0.0000018477, -0.0000018468,0.0000018460,0.0000018454,0.0000018454,0.0000018455, -0.0000018455,0.0000018452,0.0000018445,0.0000018431,0.0000018409, -0.0000018383,0.0000018353,0.0000018321,0.0000018289,0.0000018257, -0.0000018229,0.0000018210,0.0000018201,0.0000018204,0.0000018213, -0.0000018232,0.0000018258,0.0000018288,0.0000018327,0.0000018373, -0.0000018420,0.0000018460,0.0000018498,0.0000018524,0.0000018541, -0.0000018550,0.0000018553,0.0000018543,0.0000018510,0.0000018462, -0.0000018459,0.0000018545,0.0000018639,0.0000018766,0.0000018842, -0.0000018769,0.0000018730,0.0000018805,0.0000018726,0.0000018394, -0.0000018298,0.0000018450,0.0000018691,0.0000018780,0.0000018753, -0.0000018741,0.0000018743,0.0000018746,0.0000018743,0.0000018736, -0.0000018724,0.0000018722,0.0000018748,0.0000018812,0.0000018884, -0.0000018933,0.0000018954,0.0000018963,0.0000018968,0.0000018968, -0.0000018966,0.0000018962,0.0000018959,0.0000018956,0.0000018950, -0.0000018940,0.0000018913,0.0000018794,0.0000018453,0.0000017994, -0.0000017704,0.0000017615,0.0000017559,0.0000017499,0.0000017471, -0.0000017465,0.0000017460,0.0000017460,0.0000017463,0.0000017456, -0.0000017437,0.0000017429,0.0000017439,0.0000017466,0.0000017497, -0.0000017526,0.0000017550,0.0000017569,0.0000017587,0.0000017601, -0.0000017611,0.0000017617,0.0000017622,0.0000017628,0.0000017641, -0.0000017659,0.0000017676,0.0000017689,0.0000017704,0.0000017716, -0.0000017736,0.0000017756,0.0000017771,0.0000017783,0.0000017791, -0.0000017799,0.0000017805,0.0000017806,0.0000017804,0.0000017805, -0.0000017800,0.0000017801,0.0000017800,0.0000017801,0.0000017806, -0.0000017815,0.0000017829,0.0000017848,0.0000017871,0.0000017898, -0.0000017927,0.0000017957,0.0000017992,0.0000018032,0.0000018086, -0.0000018153,0.0000018236,0.0000018327,0.0000018402,0.0000018444, -0.0000018431,0.0000018368,0.0000018270,0.0000018218,0.0000018209, -0.0000018212,0.0000018220,0.0000018239,0.0000018263,0.0000018267, -0.0000018256,0.0000018246,0.0000018238,0.0000018243,0.0000018250, -0.0000018264,0.0000018268,0.0000018271,0.0000018273,0.0000018270, -0.0000018260,0.0000018246,0.0000018229,0.0000018205,0.0000018187, -0.0000018174,0.0000018168,0.0000018167,0.0000018174,0.0000018191, -0.0000018212,0.0000018238,0.0000018266,0.0000018289,0.0000018305, -0.0000018312,0.0000018310,0.0000018301,0.0000018287,0.0000018273, -0.0000018263,0.0000018259,0.0000018258,0.0000018255,0.0000018248, -0.0000018234,0.0000018218,0.0000018202,0.0000018187,0.0000018178, -0.0000018173,0.0000018178,0.0000018185,0.0000018191,0.0000018202, -0.0000018207,0.0000018212,0.0000018214,0.0000018218,0.0000018225, -0.0000018236,0.0000018252,0.0000018276,0.0000018302,0.0000018326, -0.0000018348,0.0000018391,0.0000018406,0.0000018422,0.0000018441, -0.0000018461,0.0000018477,0.0000018493,0.0000018510,0.0000018529, -0.0000018547,0.0000018564,0.0000018580,0.0000018594,0.0000018605, -0.0000018614,0.0000018620,0.0000018622,0.0000018619,0.0000018612, -0.0000018603,0.0000018592,0.0000018581,0.0000018568,0.0000018550, -0.0000018527,0.0000018500,0.0000018468,0.0000018437,0.0000018406, -0.0000018385,0.0000018373,0.0000018370,0.0000018376,0.0000018387, -0.0000018400,0.0000018406,0.0000018408,0.0000018405,0.0000018393, -0.0000018373,0.0000018352,0.0000018333,0.0000018315,0.0000018300, -0.0000018288,0.0000018278,0.0000018264,0.0000018240,0.0000018203, -0.0000018154,0.0000018094,0.0000018035,0.0000017991,0.0000017961, -0.0000017943,0.0000017934,0.0000017923,0.0000017915,0.0000017902, -0.0000017883,0.0000017862,0.0000017847,0.0000017846,0.0000017860, -0.0000017894,0.0000017936,0.0000017969,0.0000017984,0.0000017981, -0.0000017962,0.0000017940,0.0000017940,0.0000017973,0.0000018057, -0.0000018178,0.0000018288,0.0000018353,0.0000018347,0.0000018323, -0.0000018296,0.0000018282,0.0000018275,0.0000018278,0.0000018290, -0.0000018312,0.0000018337,0.0000018334,0.0000018306,0.0000018257, -0.0000018199,0.0000018135,0.0000018063,0.0000017985,0.0000017913, -0.0000017856,0.0000017817,0.0000017793,0.0000017782,0.0000017781, -0.0000017796,0.0000017821,0.0000017846,0.0000017862,0.0000017868, -0.0000017864,0.0000017852,0.0000017826,0.0000017789,0.0000017754, -0.0000017731,0.0000017726,0.0000017754,0.0000017814,0.0000017882, -0.0000017933,0.0000017961,0.0000017986,0.0000018030,0.0000018086, -0.0000018138,0.0000018174,0.0000018196,0.0000018203,0.0000018204, -0.0000018197,0.0000018180,0.0000018155,0.0000018123,0.0000018086, -0.0000018041,0.0000017988,0.0000017931,0.0000017874,0.0000017822, -0.0000017780,0.0000017752,0.0000017725,0.0000017688,0.0000017646, -0.0000017617,0.0000017604,0.0000017602,0.0000017606,0.0000017608, -0.0000017602,0.0000017588,0.0000017570,0.0000017553,0.0000017543, -0.0000017541,0.0000017546,0.0000017553,0.0000017564,0.0000017580, -0.0000017603,0.0000017631,0.0000017662,0.0000017689,0.0000017711, -0.0000017729,0.0000017747,0.0000017762,0.0000017776,0.0000017789, -0.0000017798,0.0000017799,0.0000017791,0.0000017775,0.0000017757, -0.0000017737,0.0000017721,0.0000017704,0.0000017686,0.0000017669, -0.0000017656,0.0000017645,0.0000017633,0.0000017620,0.0000017606, -0.0000017586,0.0000017557,0.0000017521,0.0000017483,0.0000017451, -0.0000017426,0.0000017406,0.0000017389,0.0000017374,0.0000017358, -0.0000017343,0.0000017326,0.0000017314,0.0000017304,0.0000017297, -0.0000017296,0.0000017302,0.0000017314,0.0000017331,0.0000017347, -0.0000017362,0.0000017377,0.0000017392,0.0000017409,0.0000017429, -0.0000017447,0.0000017468,0.0000017496,0.0000017532,0.0000017571, -0.0000017609,0.0000017642,0.0000017672,0.0000017699,0.0000017725, -0.0000017748,0.0000017763,0.0000017770,0.0000017768,0.0000017757, -0.0000017739,0.0000017718,0.0000017695,0.0000017670,0.0000017645, -0.0000017627,0.0000017621,0.0000017623,0.0000017629,0.0000017632, -0.0000017625,0.0000017608,0.0000017581,0.0000017549,0.0000017513, -0.0000017479,0.0000017445,0.0000017405,0.0000017365,0.0000017327, -0.0000017300,0.0000017282,0.0000017278,0.0000017311,0.0000017392, -0.0000017532,0.0000017719,0.0000017909,0.0000018040,0.0000018087, -0.0000018094,0.0000018129,0.0000018197,0.0000018274,0.0000018309, -0.0000018292,0.0000018183,0.0000018004,0.0000017832,0.0000017730, -0.0000017722,0.0000017733,0.0000017742,0.0000017751,0.0000017761, -0.0000017767,0.0000017769,0.0000017771,0.0000017779,0.0000017797, -0.0000017816,0.0000017818,0.0000017795,0.0000017748,0.0000017679, -0.0000017581,0.0000017479,0.0000017426,0.0000017424,0.0000017454, -0.0000017482,0.0000017500,0.0000017553,0.0000017704,0.0000017911, -0.0000018071,0.0000018146,0.0000018186,0.0000018234,0.0000018333, -0.0000018512,0.0000018704,0.0000018851,0.0000018968,0.0000019078, -0.0000019182,0.0000019243,0.0000019241,0.0000019252,0.0000019306, -0.0000019386,0.0000019455,0.0000019495,0.0000019521,0.0000019548, -0.0000019577,0.0000019609,0.0000019641,0.0000019672,0.0000019699, -0.0000019718,0.0000019726,0.0000019732,0.0000019736,0.0000019734, -0.0000019727,0.0000019723,0.0000019718,0.0000019711,0.0000019704, -0.0000019696,0.0000019697,0.0000019707,0.0000019722,0.0000019743, -0.0000019762,0.0000019776,0.0000019786,0.0000019790,0.0000019789, -0.0000019786,0.0000019782,0.0000019779,0.0000019774,0.0000019769, -0.0000019771,0.0000019776,0.0000019781,0.0000019784,0.0000019787, -0.0000019787,0.0000019785,0.0000019782,0.0000019775,0.0000019763, -0.0000019745,0.0000019726,0.0000019707,0.0000019684,0.0000019661, -0.0000019639,0.0000019615,0.0000019594,0.0000019570,0.0000019546, -0.0000019523,0.0000019500,0.0000019475,0.0000019448,0.0000019420, -0.0000019390,0.0000019360,0.0000019329,0.0000019295,0.0000019259, -0.0000019222,0.0000019188,0.0000019161,0.0000019140,0.0000019123, -0.0000019102,0.0000019067,0.0000019014,0.0000018934,0.0000018828, -0.0000018699,0.0000018553,0.0000018394,0.0000018229,0.0000018066, -0.0000017911,0.0000017778,0.0000017666,0.0000017585,0.0000017536, -0.0000017508,0.0000017501,0.0000017512,0.0000017521,0.0000017529, -0.0000017541,0.0000017550,0.0000017559,0.0000017567,0.0000017572, -0.0000017571,0.0000017562,0.0000017557,0.0000017536,0.0000017510, -0.0000017475,0.0000017437,0.0000017397,0.0000017357,0.0000017317, -0.0000017276,0.0000017237,0.0000017202,0.0000017170,0.0000017143, -0.0000017119,0.0000017108,0.0000017096,0.0000017087,0.0000017083, -0.0000017087,0.0000017095,0.0000017103,0.0000017112,0.0000017124, -0.0000017143,0.0000017165,0.0000017190,0.0000017213,0.0000017235, -0.0000017255,0.0000017270,0.0000017284,0.0000017298,0.0000017313, -0.0000017332,0.0000017350,0.0000017368,0.0000017394,0.0000017418, -0.0000017433,0.0000017448,0.0000017466,0.0000017486,0.0000017507, -0.0000017529,0.0000017545,0.0000017555,0.0000017566,0.0000017574, -0.0000017581,0.0000017585,0.0000017588,0.0000017591,0.0000017594, -0.0000017598,0.0000017605,0.0000017610,0.0000017616,0.0000017619, -0.0000017619,0.0000017614,0.0000017599,0.0000017580,0.0000017564, -0.0000017545,0.0000017524,0.0000017503,0.0000017484,0.0000017462, -0.0000017443,0.0000017427,0.0000017415,0.0000017406,0.0000017399, -0.0000017392,0.0000017390,0.0000017390,0.0000017386,0.0000017387, -0.0000017390,0.0000017381,0.0000017373,0.0000017383,0.0000017366, -0.0000017351,0.0000017344,0.0000017345,0.0000017333,0.0000017329, -0.0000017334,0.0000017342,0.0000017353,0.0000017358,0.0000017369, -0.0000017359,0.0000017361,0.0000017342,0.0000017312,0.0000017282, -0.0000017259,0.0000017245,0.0000017249,0.0000017247,0.0000017307, -0.0000017396,0.0000017517,0.0000017676,0.0000017853,0.0000018043, -0.0000018240,0.0000018425,0.0000018588,0.0000018725,0.0000018836, -0.0000018918,0.0000018974,0.0000019009,0.0000019026,0.0000019028, -0.0000019025,0.0000019028,0.0000019034,0.0000019045,0.0000019060, -0.0000019082,0.0000019108,0.0000019134,0.0000019159,0.0000019182, -0.0000019200,0.0000019216,0.0000019230,0.0000019243,0.0000019252, -0.0000019258,0.0000019262,0.0000019262,0.0000019261,0.0000019263, -0.0000019269,0.0000019278,0.0000019289,0.0000019303,0.0000019321, -0.0000019342,0.0000019367,0.0000019395,0.0000019422,0.0000019448, -0.0000019470,0.0000019489,0.0000019504,0.0000019521,0.0000019538, -0.0000019555,0.0000019570,0.0000019583,0.0000019594,0.0000019606, -0.0000019618,0.0000019636,0.0000019657,0.0000019683,0.0000019711, -0.0000019741,0.0000019772,0.0000019801,0.0000019826,0.0000019851, -0.0000019874,0.0000019892,0.0000019909,0.0000019929,0.0000019952, -0.0000019976,0.0000019995,0.0000020005,0.0000020005,0.0000020011, -0.0000020012,0.0000020007,0.0000019996,0.0000019982,0.0000019967, -0.0000019964,0.0000019969,0.0000019975,0.0000019981,0.0000019985, -0.0000019993,0.0000020005,0.0000020017,0.0000020029,0.0000020038, -0.0000020042,0.0000020035,0.0000020028,0.0000020016,0.0000019997, -0.0000019973,0.0000019947,0.0000019921,0.0000019909,0.0000019910, -0.0000019913,0.0000019910,0.0000019899,0.0000019887,0.0000019872, -0.0000019856,0.0000019847,0.0000019844,0.0000019840,0.0000019831, -0.0000019817,0.0000019802,0.0000019789,0.0000019780,0.0000019776, -0.0000019778,0.0000019784,0.0000019803,0.0000019824,0.0000019844, -0.0000019865,0.0000019894,0.0000019920,0.0000019945,0.0000019965, -0.0000019978,0.0000019982,0.0000019980,0.0000019975,0.0000019968, -0.0000019959,0.0000019945,0.0000019930,0.0000019907,0.0000019873, -0.0000019847,0.0000019836,0.0000019838,0.0000019844,0.0000019852, -0.0000019864,0.0000019883,0.0000019911,0.0000019938,0.0000019957, -0.0000019970,0.0000019984,0.0000019993,0.0000020001,0.0000020001, -0.0000019994,0.0000019981,0.0000019963,0.0000019941,0.0000019919, -0.0000019903,0.0000019892,0.0000019882,0.0000019865,0.0000019852, -0.0000019837,0.0000019826,0.0000019815,0.0000019807,0.0000019799, -0.0000019788,0.0000019780,0.0000019767,0.0000019745,0.0000019709, -0.0000019669,0.0000019622,0.0000019575,0.0000019534,0.0000019492, -0.0000019452,0.0000019413,0.0000019386,0.0000019365,0.0000019353, -0.0000019339,0.0000019324,0.0000019310,0.0000019288,0.0000019259, -0.0000019231,0.0000019206,0.0000019180,0.0000019160,0.0000019152, -0.0000019160,0.0000019174,0.0000019188,0.0000019193,0.0000019193, -0.0000019191,0.0000019183,0.0000019165,0.0000019147,0.0000019124, -0.0000019098,0.0000019074,0.0000019052,0.0000019030,0.0000019022, -0.0000019032,0.0000019055,0.0000019084,0.0000019113,0.0000019129, -0.0000019133,0.0000019125,0.0000019103,0.0000019072,0.0000019042, -0.0000019019,0.0000019006,0.0000019002,0.0000019007,0.0000019017, -0.0000019028,0.0000019041,0.0000019056,0.0000019070,0.0000019082, -0.0000019088,0.0000019090,0.0000019091,0.0000019088,0.0000019085, -0.0000019089,0.0000019101,0.0000019121,0.0000019147,0.0000019180, -0.0000019214,0.0000019255,0.0000019305,0.0000019355,0.0000019399, -0.0000019430,0.0000019444,0.0000019447,0.0000019432,0.0000019426, -0.0000019411,0.0000019383,0.0000019344,0.0000019297,0.0000019248, -0.0000019196,0.0000019147,0.0000019107,0.0000019074,0.0000019042, -0.0000019027,0.0000019023,0.0000019016,0.0000019009,0.0000019005, -0.0000019003,0.0000019012,0.0000019035,0.0000019058,0.0000019075, -0.0000019072,0.0000019056,0.0000019012,0.0000018957,0.0000018900, -0.0000018862,0.0000018828,0.0000018816,0.0000018810,0.0000018809, -0.0000018787,0.0000018737,0.0000018657,0.0000018572,0.0000018521, -0.0000018495,0.0000018514,0.0000018573,0.0000018658,0.0000018755, -0.0000018849,0.0000018921,0.0000018975,0.0000018962,0.0000018950, -0.0000018908,0.0000018849,0.0000018781,0.0000018711,0.0000018641, -0.0000018576,0.0000018531,0.0000018500,0.0000018498,0.0000018514, -0.0000018538,0.0000018579,0.0000018633,0.0000018695,0.0000018775, -0.0000018876,0.0000018981,0.0000019074,0.0000019149,0.0000019179, -0.0000019181,0.0000019171,0.0000019148,0.0000019116,0.0000019076, -0.0000019028,0.0000018973,0.0000018909,0.0000018842,0.0000018784, -0.0000018743,0.0000018725,0.0000018712,0.0000018691,0.0000018671, -0.0000018665,0.0000018669,0.0000018688,0.0000018726,0.0000018767, -0.0000018803,0.0000018815,0.0000018809,0.0000018807,0.0000018824, -0.0000018855,0.0000018886,0.0000018913,0.0000018929,0.0000018947, -0.0000018961,0.0000018965,0.0000018960,0.0000018940,0.0000018911, -0.0000018873,0.0000018839,0.0000018809,0.0000018781,0.0000018767, -0.0000018771,0.0000018789,0.0000018823,0.0000018857,0.0000018870, -0.0000018850,0.0000018795,0.0000018711,0.0000018618,0.0000018542, -0.0000018502,0.0000018499,0.0000018504,0.0000018511,0.0000018494, -0.0000018450,0.0000018400,0.0000018365,0.0000018353,0.0000018325, -0.0000018291,0.0000018286,0.0000018286,0.0000018262,0.0000018232, -0.0000018200,0.0000018179,0.0000018167,0.0000018172,0.0000018200, -0.0000018246,0.0000018292,0.0000018338,0.0000018379,0.0000018424, -0.0000018475,0.0000018525,0.0000018565,0.0000018586,0.0000018587, -0.0000018572,0.0000018547,0.0000018505,0.0000018448,0.0000018390, -0.0000018341,0.0000018304,0.0000018265,0.0000018220,0.0000018181, -0.0000018163,0.0000018158,0.0000018158,0.0000018162,0.0000018172, -0.0000018184,0.0000018195,0.0000018204,0.0000018210,0.0000018214, -0.0000018219,0.0000018221,0.0000018220,0.0000018212,0.0000018195, -0.0000018170,0.0000018143,0.0000018120,0.0000018100,0.0000018083, -0.0000018068,0.0000018054,0.0000018046,0.0000018036,0.0000018032, -0.0000018034,0.0000018040,0.0000018051,0.0000018064,0.0000018076, -0.0000018084,0.0000018087,0.0000018085,0.0000018081,0.0000018076, -0.0000018071,0.0000018065,0.0000018055,0.0000018044,0.0000018032, -0.0000018017,0.0000017997,0.0000017973,0.0000017946,0.0000017917, -0.0000017893,0.0000017872,0.0000017856,0.0000017847,0.0000017846, -0.0000017851,0.0000017866,0.0000017892,0.0000017924,0.0000017949, -0.0000017969,0.0000017983,0.0000017995,0.0000018002,0.0000018004, -0.0000018009,0.0000018018,0.0000018029,0.0000018038,0.0000018050, -0.0000018074,0.0000018108,0.0000018154,0.0000018210,0.0000018265, -0.0000018315,0.0000018358,0.0000018398,0.0000018439,0.0000018485, -0.0000018532,0.0000018574,0.0000018614,0.0000018655,0.0000018706, -0.0000018780,0.0000018882,0.0000019011,0.0000019162,0.0000019310, -0.0000019429,0.0000019493,0.0000019486,0.0000019461,0.0000019408, -0.0000019337,0.0000019247,0.0000019145,0.0000019042,0.0000018953, -0.0000018895,0.0000018871,0.0000018870,0.0000018875,0.0000018884, -0.0000018893,0.0000018895,0.0000018894,0.0000018892,0.0000018889, -0.0000018878,0.0000018849,0.0000018800,0.0000018740,0.0000018683, -0.0000018633,0.0000018587,0.0000018549,0.0000018527,0.0000018517, -0.0000018517,0.0000018523,0.0000018539,0.0000018560,0.0000018581, -0.0000018601,0.0000018621,0.0000018632,0.0000018627,0.0000018604, -0.0000018570,0.0000018530,0.0000018488,0.0000018445,0.0000018409, -0.0000018383,0.0000018365,0.0000018352,0.0000018344,0.0000018340, -0.0000018333,0.0000018329,0.0000018333,0.0000018344,0.0000018354, -0.0000018359,0.0000018355,0.0000018351,0.0000018356,0.0000018363, -0.0000018363,0.0000018355,0.0000018342,0.0000018328,0.0000018314, -0.0000018292,0.0000018264,0.0000018232,0.0000018199,0.0000018166, -0.0000018140,0.0000018126,0.0000018124,0.0000018129,0.0000018142, -0.0000018162,0.0000018187,0.0000018208,0.0000018221,0.0000018225, -0.0000018221,0.0000018209,0.0000018198,0.0000018186,0.0000018170, -0.0000018181,0.0000018205,0.0000018241,0.0000018278,0.0000018310, -0.0000018340,0.0000018368,0.0000018390,0.0000018405,0.0000018415, -0.0000018420,0.0000018421,0.0000018418,0.0000018413,0.0000018407, -0.0000018398,0.0000018389,0.0000018381,0.0000018376,0.0000018371, -0.0000018362,0.0000018348,0.0000018330,0.0000018305,0.0000018278, -0.0000018249,0.0000018219,0.0000018189,0.0000018163,0.0000018144, -0.0000018135,0.0000018137,0.0000018152,0.0000018175,0.0000018209, -0.0000018242,0.0000018279,0.0000018319,0.0000018359,0.0000018397, -0.0000018427,0.0000018452,0.0000018473,0.0000018489,0.0000018502, -0.0000018509,0.0000018512,0.0000018497,0.0000018450,0.0000018426, -0.0000018489,0.0000018600,0.0000018725,0.0000018836,0.0000018800, -0.0000018721,0.0000018784,0.0000018757,0.0000018415,0.0000018199, -0.0000018179,0.0000018286,0.0000018474,0.0000018610,0.0000018680, -0.0000018715,0.0000018736,0.0000018749,0.0000018752,0.0000018755, -0.0000018752,0.0000018740,0.0000018732,0.0000018742,0.0000018773, -0.0000018818,0.0000018867,0.0000018904,0.0000018927,0.0000018937, -0.0000018939,0.0000018931,0.0000018911,0.0000018883,0.0000018843, -0.0000018723,0.0000018424,0.0000018014,0.0000017723,0.0000017623, -0.0000017574,0.0000017509,0.0000017466,0.0000017452,0.0000017446, -0.0000017433,0.0000017417,0.0000017411,0.0000017408,0.0000017400, -0.0000017399,0.0000017417,0.0000017451,0.0000017485,0.0000017514, -0.0000017533,0.0000017546,0.0000017555,0.0000017562,0.0000017570, -0.0000017582,0.0000017599,0.0000017614,0.0000017636,0.0000017655, -0.0000017672,0.0000017694,0.0000017723,0.0000017755,0.0000017785, -0.0000017809,0.0000017824,0.0000017827,0.0000017819,0.0000017809, -0.0000017801,0.0000017781,0.0000017766,0.0000017748,0.0000017729, -0.0000017716,0.0000017706,0.0000017699,0.0000017694,0.0000017694, -0.0000017702,0.0000017716,0.0000017740,0.0000017776,0.0000017819, -0.0000017864,0.0000017913,0.0000017963,0.0000018014,0.0000018071, -0.0000018140,0.0000018220,0.0000018292,0.0000018351,0.0000018399, -0.0000018414,0.0000018357,0.0000018269,0.0000018207,0.0000018193, -0.0000018194,0.0000018194,0.0000018203,0.0000018221,0.0000018239, -0.0000018243,0.0000018234,0.0000018230,0.0000018233,0.0000018247, -0.0000018263,0.0000018274,0.0000018283,0.0000018287,0.0000018290, -0.0000018291,0.0000018286,0.0000018277,0.0000018261,0.0000018244, -0.0000018226,0.0000018209,0.0000018200,0.0000018200,0.0000018206, -0.0000018219,0.0000018233,0.0000018249,0.0000018261,0.0000018268, -0.0000018272,0.0000018273,0.0000018267,0.0000018255,0.0000018245, -0.0000018238,0.0000018234,0.0000018232,0.0000018229,0.0000018220, -0.0000018210,0.0000018197,0.0000018183,0.0000018174,0.0000018172, -0.0000018178,0.0000018191,0.0000018204,0.0000018220,0.0000018239, -0.0000018253,0.0000018266,0.0000018278,0.0000018287,0.0000018296, -0.0000018308,0.0000018319,0.0000018336,0.0000018354,0.0000018372, -0.0000018385,0.0000018399,0.0000018412,0.0000018426,0.0000018443, -0.0000018461,0.0000018479,0.0000018496,0.0000018514,0.0000018536, -0.0000018556,0.0000018576,0.0000018596,0.0000018613,0.0000018626, -0.0000018636,0.0000018641,0.0000018640,0.0000018632,0.0000018619, -0.0000018603,0.0000018586,0.0000018569,0.0000018554,0.0000018535, -0.0000018513,0.0000018485,0.0000018452,0.0000018419,0.0000018389, -0.0000018368,0.0000018359,0.0000018356,0.0000018361,0.0000018369, -0.0000018381,0.0000018395,0.0000018411,0.0000018418,0.0000018414, -0.0000018401,0.0000018386,0.0000018367,0.0000018344,0.0000018322, -0.0000018302,0.0000018285,0.0000018268,0.0000018248,0.0000018220, -0.0000018181,0.0000018129,0.0000018072,0.0000018022,0.0000017980, -0.0000017952,0.0000017943,0.0000017945,0.0000017952,0.0000017957, -0.0000017950,0.0000017932,0.0000017911,0.0000017896,0.0000017888, -0.0000017902,0.0000017927,0.0000017965,0.0000017992,0.0000018005, -0.0000017995,0.0000017970,0.0000017953,0.0000017950,0.0000017997, -0.0000018093,0.0000018206,0.0000018292,0.0000018315,0.0000018292, -0.0000018268,0.0000018252,0.0000018245,0.0000018242,0.0000018251, -0.0000018275,0.0000018298,0.0000018298,0.0000018277,0.0000018236, -0.0000018189,0.0000018135,0.0000018070,0.0000017998,0.0000017928, -0.0000017867,0.0000017820,0.0000017789,0.0000017776,0.0000017777, -0.0000017794,0.0000017819,0.0000017845,0.0000017865,0.0000017873, -0.0000017870,0.0000017856,0.0000017828,0.0000017789,0.0000017749, -0.0000017719,0.0000017707,0.0000017718,0.0000017758,0.0000017814, -0.0000017867,0.0000017901,0.0000017924,0.0000017956,0.0000018003, -0.0000018056,0.0000018105,0.0000018149,0.0000018181,0.0000018197, -0.0000018199,0.0000018187,0.0000018163,0.0000018131,0.0000018093, -0.0000018048,0.0000017995,0.0000017936,0.0000017874,0.0000017821, -0.0000017786,0.0000017764,0.0000017739,0.0000017704,0.0000017670, -0.0000017646,0.0000017633,0.0000017629,0.0000017629,0.0000017626, -0.0000017617,0.0000017607,0.0000017596,0.0000017590,0.0000017592, -0.0000017602,0.0000017615,0.0000017632,0.0000017656,0.0000017685, -0.0000017717,0.0000017751,0.0000017782,0.0000017808,0.0000017832, -0.0000017852,0.0000017865,0.0000017869,0.0000017865,0.0000017850, -0.0000017823,0.0000017790,0.0000017757,0.0000017725,0.0000017700, -0.0000017682,0.0000017668,0.0000017656,0.0000017647,0.0000017643, -0.0000017641,0.0000017640,0.0000017644,0.0000017652,0.0000017660, -0.0000017659,0.0000017647,0.0000017624,0.0000017594,0.0000017560, -0.0000017526,0.0000017494,0.0000017466,0.0000017439,0.0000017410, -0.0000017379,0.0000017350,0.0000017322,0.0000017297,0.0000017285, -0.0000017278,0.0000017277,0.0000017282,0.0000017296,0.0000017313, -0.0000017329,0.0000017344,0.0000017359,0.0000017374,0.0000017389, -0.0000017410,0.0000017442,0.0000017484,0.0000017532,0.0000017581, -0.0000017629,0.0000017672,0.0000017710,0.0000017743,0.0000017768, -0.0000017789,0.0000017801,0.0000017804,0.0000017797,0.0000017782, -0.0000017762,0.0000017740,0.0000017715,0.0000017692,0.0000017676, -0.0000017671,0.0000017674,0.0000017681,0.0000017682,0.0000017676, -0.0000017655,0.0000017622,0.0000017579,0.0000017534,0.0000017492, -0.0000017450,0.0000017405,0.0000017358,0.0000017319,0.0000017289, -0.0000017271,0.0000017265,0.0000017279,0.0000017320,0.0000017396, -0.0000017524,0.0000017705,0.0000017897,0.0000018033,0.0000018083, -0.0000018085,0.0000018109,0.0000018169,0.0000018243,0.0000018283, -0.0000018270,0.0000018158,0.0000017985,0.0000017821,0.0000017730, -0.0000017722,0.0000017731,0.0000017740,0.0000017747,0.0000017755, -0.0000017761,0.0000017760,0.0000017757,0.0000017764,0.0000017780, -0.0000017789,0.0000017774,0.0000017733,0.0000017664,0.0000017572, -0.0000017476,0.0000017421,0.0000017413,0.0000017440,0.0000017468, -0.0000017471,0.0000017487,0.0000017579,0.0000017761,0.0000017967, -0.0000018101,0.0000018148,0.0000018180,0.0000018254,0.0000018402, -0.0000018599,0.0000018768,0.0000018895,0.0000019010,0.0000019119, -0.0000019200,0.0000019226,0.0000019224,0.0000019246,0.0000019297, -0.0000019366,0.0000019428,0.0000019475,0.0000019513,0.0000019550, -0.0000019588,0.0000019624,0.0000019657,0.0000019685,0.0000019704, -0.0000019713,0.0000019714,0.0000019709,0.0000019697,0.0000019682, -0.0000019668,0.0000019655,0.0000019643,0.0000019633,0.0000019628, -0.0000019628,0.0000019634,0.0000019649,0.0000019669,0.0000019689, -0.0000019706,0.0000019718,0.0000019726,0.0000019730,0.0000019729, -0.0000019727,0.0000019724,0.0000019721,0.0000019723,0.0000019728, -0.0000019735,0.0000019741,0.0000019746,0.0000019753,0.0000019759, -0.0000019760,0.0000019758,0.0000019750,0.0000019734,0.0000019716, -0.0000019697,0.0000019672,0.0000019646,0.0000019619,0.0000019589, -0.0000019554,0.0000019518,0.0000019482,0.0000019447,0.0000019413, -0.0000019379,0.0000019342,0.0000019304,0.0000019264,0.0000019229, -0.0000019199,0.0000019173,0.0000019153,0.0000019136,0.0000019124, -0.0000019112,0.0000019092,0.0000019055,0.0000018991,0.0000018897, -0.0000018776,0.0000018633,0.0000018475,0.0000018309,0.0000018143, -0.0000017979,0.0000017828,0.0000017696,0.0000017595,0.0000017527, -0.0000017485,0.0000017466,0.0000017466,0.0000017479,0.0000017499, -0.0000017523,0.0000017547,0.0000017567,0.0000017585,0.0000017589, -0.0000017594,0.0000017585,0.0000017579,0.0000017557,0.0000017531, -0.0000017500,0.0000017467,0.0000017434,0.0000017398,0.0000017363, -0.0000017331,0.0000017307,0.0000017281,0.0000017252,0.0000017224, -0.0000017198,0.0000017172,0.0000017151,0.0000017130,0.0000017118, -0.0000017109,0.0000017100,0.0000017103,0.0000017121,0.0000017152, -0.0000017190,0.0000017232,0.0000017276,0.0000017325,0.0000017376, -0.0000017421,0.0000017452,0.0000017472,0.0000017480,0.0000017476, -0.0000017461,0.0000017442,0.0000017417,0.0000017398,0.0000017383, -0.0000017376,0.0000017374,0.0000017373,0.0000017378,0.0000017389, -0.0000017404,0.0000017420,0.0000017439,0.0000017458,0.0000017474, -0.0000017487,0.0000017500,0.0000017513,0.0000017525,0.0000017536, -0.0000017546,0.0000017555,0.0000017562,0.0000017569,0.0000017579, -0.0000017588,0.0000017597,0.0000017603,0.0000017606,0.0000017604, -0.0000017599,0.0000017591,0.0000017585,0.0000017573,0.0000017561, -0.0000017548,0.0000017536,0.0000017523,0.0000017510,0.0000017499, -0.0000017490,0.0000017482,0.0000017477,0.0000017470,0.0000017465, -0.0000017464,0.0000017463,0.0000017459,0.0000017452,0.0000017442, -0.0000017430,0.0000017413,0.0000017389,0.0000017364,0.0000017343, -0.0000017316,0.0000017286,0.0000017275,0.0000017252,0.0000017245, -0.0000017258,0.0000017282,0.0000017307,0.0000017335,0.0000017362, -0.0000017367,0.0000017362,0.0000017348,0.0000017318,0.0000017287, -0.0000017251,0.0000017227,0.0000017220,0.0000017219,0.0000017227, -0.0000017262,0.0000017337,0.0000017441,0.0000017576,0.0000017736, -0.0000017905,0.0000018076,0.0000018241,0.0000018397,0.0000018535, -0.0000018649,0.0000018741,0.0000018813,0.0000018867,0.0000018908, -0.0000018939,0.0000018966,0.0000018991,0.0000019019,0.0000019047, -0.0000019073,0.0000019095,0.0000019114,0.0000019128,0.0000019143, -0.0000019158,0.0000019173,0.0000019187,0.0000019198,0.0000019206, -0.0000019212,0.0000019215,0.0000019218,0.0000019219,0.0000019220, -0.0000019221,0.0000019225,0.0000019233,0.0000019249,0.0000019271, -0.0000019297,0.0000019325,0.0000019351,0.0000019376,0.0000019400, -0.0000019427,0.0000019455,0.0000019481,0.0000019505,0.0000019526, -0.0000019542,0.0000019555,0.0000019567,0.0000019583,0.0000019602, -0.0000019623,0.0000019645,0.0000019667,0.0000019691,0.0000019717, -0.0000019736,0.0000019756,0.0000019778,0.0000019797,0.0000019809, -0.0000019819,0.0000019837,0.0000019863,0.0000019895,0.0000019927, -0.0000019952,0.0000019972,0.0000019990,0.0000020003,0.0000020002, -0.0000019994,0.0000019982,0.0000019969,0.0000019961,0.0000019959, -0.0000019965,0.0000019971,0.0000019977,0.0000019980,0.0000019984, -0.0000019989,0.0000019994,0.0000019998,0.0000020002,0.0000020000, -0.0000019995,0.0000019988,0.0000019977,0.0000019961,0.0000019945, -0.0000019928,0.0000019916,0.0000019912,0.0000019913,0.0000019911, -0.0000019912,0.0000019913,0.0000019909,0.0000019897,0.0000019879, -0.0000019862,0.0000019847,0.0000019832,0.0000019810,0.0000019786, -0.0000019760,0.0000019738,0.0000019724,0.0000019724,0.0000019738, -0.0000019767,0.0000019806,0.0000019844,0.0000019881,0.0000019913, -0.0000019945,0.0000019965,0.0000019973,0.0000019971,0.0000019959, -0.0000019937,0.0000019907,0.0000019877,0.0000019850,0.0000019823, -0.0000019797,0.0000019770,0.0000019746,0.0000019742,0.0000019753, -0.0000019771,0.0000019792,0.0000019812,0.0000019830,0.0000019850, -0.0000019870,0.0000019892,0.0000019915,0.0000019945,0.0000019970, -0.0000019986,0.0000020000,0.0000020000,0.0000019989,0.0000019973, -0.0000019955,0.0000019941,0.0000019928,0.0000019922,0.0000019916, -0.0000019906,0.0000019895,0.0000019876,0.0000019866,0.0000019855, -0.0000019837,0.0000019816,0.0000019791,0.0000019761,0.0000019732, -0.0000019697,0.0000019650,0.0000019602,0.0000019557,0.0000019509, -0.0000019454,0.0000019400,0.0000019350,0.0000019305,0.0000019271, -0.0000019249,0.0000019236,0.0000019233,0.0000019237,0.0000019244, -0.0000019251,0.0000019250,0.0000019241,0.0000019237,0.0000019234, -0.0000019230,0.0000019226,0.0000019226,0.0000019228,0.0000019228, -0.0000019229,0.0000019231,0.0000019231,0.0000019223,0.0000019207, -0.0000019186,0.0000019162,0.0000019138,0.0000019117,0.0000019097, -0.0000019074,0.0000019052,0.0000019032,0.0000019027,0.0000019020, -0.0000019023,0.0000019035,0.0000019057,0.0000019075,0.0000019076, -0.0000019064,0.0000019041,0.0000019018,0.0000019002,0.0000018993, -0.0000018988,0.0000018980,0.0000018976,0.0000018964,0.0000018953, -0.0000018944,0.0000018944,0.0000018947,0.0000018949,0.0000018953, -0.0000018956,0.0000018959,0.0000018966,0.0000018980,0.0000019001, -0.0000019024,0.0000019045,0.0000019065,0.0000019091,0.0000019125, -0.0000019171,0.0000019223,0.0000019272,0.0000019314,0.0000019344, -0.0000019363,0.0000019378,0.0000019386,0.0000019393,0.0000019376, -0.0000019375,0.0000019349,0.0000019316,0.0000019278,0.0000019236, -0.0000019191,0.0000019143,0.0000019102,0.0000019072,0.0000019049, -0.0000019027,0.0000019002,0.0000018980,0.0000018965,0.0000018963, -0.0000018970,0.0000018982,0.0000019007,0.0000019019,0.0000019030, -0.0000019011,0.0000018991,0.0000018955,0.0000018906,0.0000018858, -0.0000018837,0.0000018830,0.0000018817,0.0000018785,0.0000018728, -0.0000018650,0.0000018576,0.0000018517,0.0000018469,0.0000018460, -0.0000018467,0.0000018525,0.0000018616,0.0000018723,0.0000018822, -0.0000018888,0.0000018933,0.0000018923,0.0000018919,0.0000018873, -0.0000018804,0.0000018724,0.0000018640,0.0000018565,0.0000018513, -0.0000018486,0.0000018466,0.0000018456,0.0000018467,0.0000018495, -0.0000018541,0.0000018605,0.0000018682,0.0000018771,0.0000018881, -0.0000018989,0.0000019076,0.0000019140,0.0000019159,0.0000019141, -0.0000019110,0.0000019068,0.0000019024,0.0000018978,0.0000018927, -0.0000018872,0.0000018821,0.0000018780,0.0000018762,0.0000018751, -0.0000018729,0.0000018697,0.0000018663,0.0000018641,0.0000018627, -0.0000018625,0.0000018628,0.0000018627,0.0000018605,0.0000018571, -0.0000018548,0.0000018553,0.0000018580,0.0000018622,0.0000018657, -0.0000018695,0.0000018741,0.0000018780,0.0000018803,0.0000018808, -0.0000018802,0.0000018785,0.0000018762,0.0000018745,0.0000018731, -0.0000018720,0.0000018723,0.0000018729,0.0000018744,0.0000018766, -0.0000018792,0.0000018809,0.0000018803,0.0000018758,0.0000018688, -0.0000018614,0.0000018546,0.0000018511,0.0000018505,0.0000018507, -0.0000018509,0.0000018494,0.0000018454,0.0000018411,0.0000018381, -0.0000018383,0.0000018379,0.0000018350,0.0000018330,0.0000018321, -0.0000018299,0.0000018264,0.0000018217,0.0000018186,0.0000018169, -0.0000018161,0.0000018168,0.0000018206,0.0000018256,0.0000018311, -0.0000018356,0.0000018390,0.0000018418,0.0000018457,0.0000018496, -0.0000018526,0.0000018543,0.0000018544,0.0000018527,0.0000018498, -0.0000018453,0.0000018399,0.0000018345,0.0000018300,0.0000018256, -0.0000018207,0.0000018164,0.0000018141,0.0000018138,0.0000018142, -0.0000018151,0.0000018161,0.0000018172,0.0000018182,0.0000018191, -0.0000018199,0.0000018206,0.0000018212,0.0000018217,0.0000018218, -0.0000018216,0.0000018207,0.0000018189,0.0000018163,0.0000018138, -0.0000018120,0.0000018107,0.0000018094,0.0000018079,0.0000018061, -0.0000018042,0.0000018024,0.0000018007,0.0000018003,0.0000018008, -0.0000018020,0.0000018034,0.0000018046,0.0000018054,0.0000018058, -0.0000018058,0.0000018053,0.0000018048,0.0000018043,0.0000018036, -0.0000018029,0.0000018020,0.0000018008,0.0000017995,0.0000017976, -0.0000017950,0.0000017920,0.0000017889,0.0000017859,0.0000017836, -0.0000017817,0.0000017805,0.0000017803,0.0000017814,0.0000017842, -0.0000017876,0.0000017909,0.0000017937,0.0000017963,0.0000017983, -0.0000017998,0.0000018007,0.0000018012,0.0000018019,0.0000018028, -0.0000018037,0.0000018046,0.0000018058,0.0000018073,0.0000018095, -0.0000018132,0.0000018176,0.0000018224,0.0000018274,0.0000018323, -0.0000018369,0.0000018414,0.0000018461,0.0000018509,0.0000018555, -0.0000018597,0.0000018638,0.0000018688,0.0000018755,0.0000018849, -0.0000018971,0.0000019115,0.0000019255,0.0000019367,0.0000019431, -0.0000019438,0.0000019412,0.0000019372,0.0000019300,0.0000019218, -0.0000019133,0.0000019041,0.0000018956,0.0000018898,0.0000018879, -0.0000018884,0.0000018892,0.0000018897,0.0000018899,0.0000018896, -0.0000018892,0.0000018891,0.0000018892,0.0000018880,0.0000018849, -0.0000018794,0.0000018727,0.0000018666,0.0000018617,0.0000018573, -0.0000018537,0.0000018516,0.0000018506,0.0000018508,0.0000018521, -0.0000018544,0.0000018568,0.0000018585,0.0000018596,0.0000018605, -0.0000018607,0.0000018602,0.0000018581,0.0000018546,0.0000018503, -0.0000018463,0.0000018428,0.0000018397,0.0000018375,0.0000018362, -0.0000018352,0.0000018342,0.0000018331,0.0000018322,0.0000018320, -0.0000018319,0.0000018316,0.0000018309,0.0000018303,0.0000018308, -0.0000018319,0.0000018326,0.0000018325,0.0000018314,0.0000018299, -0.0000018287,0.0000018278,0.0000018262,0.0000018240,0.0000018214, -0.0000018188,0.0000018161,0.0000018140,0.0000018129,0.0000018126, -0.0000018126,0.0000018132,0.0000018145,0.0000018161,0.0000018175, -0.0000018186,0.0000018197,0.0000018200,0.0000018195,0.0000018182, -0.0000018167,0.0000018150,0.0000018143,0.0000018149,0.0000018145, -0.0000018141,0.0000018156,0.0000018177,0.0000018194,0.0000018203, -0.0000018211,0.0000018218,0.0000018220,0.0000018218,0.0000018213, -0.0000018206,0.0000018196,0.0000018186,0.0000018180,0.0000018177, -0.0000018173,0.0000018169,0.0000018162,0.0000018152,0.0000018140, -0.0000018127,0.0000018114,0.0000018101,0.0000018090,0.0000018087, -0.0000018092,0.0000018109,0.0000018129,0.0000018158,0.0000018192, -0.0000018228,0.0000018263,0.0000018295,0.0000018322,0.0000018344, -0.0000018361,0.0000018376,0.0000018393,0.0000018414,0.0000018438, -0.0000018461,0.0000018476,0.0000018478,0.0000018447,0.0000018401, -0.0000018433,0.0000018555,0.0000018688,0.0000018824,0.0000018820, -0.0000018733,0.0000018759,0.0000018779,0.0000018474,0.0000018177, -0.0000018089,0.0000018038,0.0000018043,0.0000018122,0.0000018224, -0.0000018314,0.0000018391,0.0000018464,0.0000018533,0.0000018594, -0.0000018644,0.0000018680,0.0000018704,0.0000018720,0.0000018732, -0.0000018744,0.0000018761,0.0000018780,0.0000018794,0.0000018799, -0.0000018798,0.0000018783,0.0000018749,0.0000018670,0.0000018496, -0.0000018209,0.0000017898,0.0000017697,0.0000017623,0.0000017583, -0.0000017524,0.0000017474,0.0000017452,0.0000017440,0.0000017427, -0.0000017408,0.0000017381,0.0000017364,0.0000017363,0.0000017365, -0.0000017374,0.0000017404,0.0000017446,0.0000017483,0.0000017505, -0.0000017516,0.0000017521,0.0000017528,0.0000017542,0.0000017560, -0.0000017589,0.0000017616,0.0000017633,0.0000017650,0.0000017673, -0.0000017704,0.0000017743,0.0000017782,0.0000017816,0.0000017834, -0.0000017837,0.0000017834,0.0000017811,0.0000017783,0.0000017762, -0.0000017739,0.0000017720,0.0000017705,0.0000017687,0.0000017678, -0.0000017672,0.0000017662,0.0000017654,0.0000017644,0.0000017634, -0.0000017621,0.0000017612,0.0000017617,0.0000017640,0.0000017668, -0.0000017712,0.0000017767,0.0000017832,0.0000017900,0.0000017969, -0.0000018039,0.0000018116,0.0000018191,0.0000018256,0.0000018308, -0.0000018354,0.0000018373,0.0000018346,0.0000018269,0.0000018201, -0.0000018178,0.0000018181,0.0000018180,0.0000018173,0.0000018179, -0.0000018198,0.0000018214,0.0000018221,0.0000018222,0.0000018223, -0.0000018233,0.0000018247,0.0000018259,0.0000018267,0.0000018273, -0.0000018283,0.0000018290,0.0000018294,0.0000018301,0.0000018306, -0.0000018305,0.0000018288,0.0000018271,0.0000018253,0.0000018242, -0.0000018240,0.0000018244,0.0000018251,0.0000018255,0.0000018256, -0.0000018254,0.0000018253,0.0000018250,0.0000018240,0.0000018230, -0.0000018224,0.0000018221,0.0000018220,0.0000018219,0.0000018217, -0.0000018213,0.0000018207,0.0000018198,0.0000018197,0.0000018204, -0.0000018215,0.0000018232,0.0000018252,0.0000018273,0.0000018297, -0.0000018317,0.0000018331,0.0000018339,0.0000018342,0.0000018342, -0.0000018344,0.0000018345,0.0000018348,0.0000018356,0.0000018369, -0.0000018372,0.0000018384,0.0000018400,0.0000018413,0.0000018426, -0.0000018447,0.0000018470,0.0000018493,0.0000018517,0.0000018542, -0.0000018568,0.0000018593,0.0000018616,0.0000018637,0.0000018655, -0.0000018669,0.0000018679,0.0000018681,0.0000018679,0.0000018668, -0.0000018648,0.0000018622,0.0000018594,0.0000018567,0.0000018541, -0.0000018517,0.0000018495,0.0000018471,0.0000018445,0.0000018417, -0.0000018395,0.0000018382,0.0000018374,0.0000018370,0.0000018374, -0.0000018381,0.0000018389,0.0000018403,0.0000018416,0.0000018420, -0.0000018418,0.0000018411,0.0000018399,0.0000018384,0.0000018365, -0.0000018340,0.0000018315,0.0000018292,0.0000018271,0.0000018250, -0.0000018225,0.0000018192,0.0000018148,0.0000018099,0.0000018045, -0.0000017995,0.0000017959,0.0000017947,0.0000017951,0.0000017968, -0.0000017979,0.0000017988,0.0000017987,0.0000017979,0.0000017958, -0.0000017937,0.0000017927,0.0000017942,0.0000017970,0.0000018004, -0.0000018028,0.0000018029,0.0000018005,0.0000017968,0.0000017950, -0.0000017957,0.0000018019,0.0000018116,0.0000018209,0.0000018263, -0.0000018260,0.0000018240,0.0000018220,0.0000018212,0.0000018212, -0.0000018221,0.0000018239,0.0000018257,0.0000018262,0.0000018255, -0.0000018232,0.0000018193,0.0000018145,0.0000018087,0.0000018021, -0.0000017951,0.0000017883,0.0000017824,0.0000017786,0.0000017773, -0.0000017776,0.0000017796,0.0000017826,0.0000017853,0.0000017871, -0.0000017876,0.0000017870,0.0000017854,0.0000017827,0.0000017791, -0.0000017750,0.0000017717,0.0000017700,0.0000017695,0.0000017706, -0.0000017743,0.0000017796,0.0000017845,0.0000017879,0.0000017906, -0.0000017943,0.0000017996,0.0000018056,0.0000018110,0.0000018152, -0.0000018181,0.0000018192,0.0000018190,0.0000018173,0.0000018142, -0.0000018103,0.0000018057,0.0000018004,0.0000017945,0.0000017885, -0.0000017836,0.0000017805,0.0000017785,0.0000017763,0.0000017736, -0.0000017713,0.0000017692,0.0000017677,0.0000017668,0.0000017661, -0.0000017652,0.0000017643,0.0000017636,0.0000017635,0.0000017644, -0.0000017661,0.0000017682,0.0000017710,0.0000017746,0.0000017786, -0.0000017828,0.0000017866,0.0000017897,0.0000017919,0.0000017933, -0.0000017936,0.0000017931,0.0000017915,0.0000017887,0.0000017849, -0.0000017806,0.0000017764,0.0000017726,0.0000017695,0.0000017671, -0.0000017654,0.0000017643,0.0000017638,0.0000017637,0.0000017638, -0.0000017642,0.0000017648,0.0000017658,0.0000017671,0.0000017686, -0.0000017700,0.0000017709,0.0000017712,0.0000017704,0.0000017686, -0.0000017661,0.0000017630,0.0000017597,0.0000017561,0.0000017521, -0.0000017477,0.0000017434,0.0000017390,0.0000017350,0.0000017317, -0.0000017293,0.0000017275,0.0000017273,0.0000017275,0.0000017284, -0.0000017296,0.0000017307,0.0000017318,0.0000017327,0.0000017338, -0.0000017356,0.0000017382,0.0000017420,0.0000017467,0.0000017519, -0.0000017575,0.0000017632,0.0000017685,0.0000017729,0.0000017764, -0.0000017791,0.0000017807,0.0000017811,0.0000017809,0.0000017797, -0.0000017781,0.0000017766,0.0000017750,0.0000017738,0.0000017732, -0.0000017734,0.0000017742,0.0000017750,0.0000017753,0.0000017745, -0.0000017723,0.0000017686,0.0000017638,0.0000017585,0.0000017532, -0.0000017476,0.0000017419,0.0000017360,0.0000017311,0.0000017276, -0.0000017257,0.0000017251,0.0000017263,0.0000017294,0.0000017338, -0.0000017407,0.0000017524,0.0000017692,0.0000017874,0.0000018011, -0.0000018067,0.0000018067,0.0000018083,0.0000018141,0.0000018220, -0.0000018262,0.0000018250,0.0000018143,0.0000017974,0.0000017816, -0.0000017725,0.0000017719,0.0000017723,0.0000017731,0.0000017739, -0.0000017747,0.0000017750,0.0000017745,0.0000017742,0.0000017746, -0.0000017754,0.0000017751,0.0000017722,0.0000017660,0.0000017570, -0.0000017476,0.0000017415,0.0000017398,0.0000017423,0.0000017454, -0.0000017454,0.0000017446,0.0000017476,0.0000017598,0.0000017806, -0.0000018009,0.0000018104,0.0000018131,0.0000018175,0.0000018286, -0.0000018470,0.0000018662,0.0000018813,0.0000018936,0.0000019047, -0.0000019139,0.0000019200,0.0000019213,0.0000019214,0.0000019235, -0.0000019277,0.0000019332,0.0000019387,0.0000019438,0.0000019485, -0.0000019529,0.0000019568,0.0000019598,0.0000019620,0.0000019632, -0.0000019635,0.0000019630,0.0000019619,0.0000019606,0.0000019591, -0.0000019575,0.0000019561,0.0000019550,0.0000019545,0.0000019543, -0.0000019545,0.0000019551,0.0000019561,0.0000019573,0.0000019586, -0.0000019598,0.0000019610,0.0000019618,0.0000019622,0.0000019624, -0.0000019624,0.0000019624,0.0000019626,0.0000019630,0.0000019633, -0.0000019636,0.0000019639,0.0000019646,0.0000019654,0.0000019657, -0.0000019656,0.0000019654,0.0000019645,0.0000019630,0.0000019610, -0.0000019585,0.0000019554,0.0000019521,0.0000019484,0.0000019443, -0.0000019401,0.0000019360,0.0000019322,0.0000019288,0.0000019257, -0.0000019227,0.0000019199,0.0000019173,0.0000019152,0.0000019138, -0.0000019126,0.0000019113,0.0000019094,0.0000019064,0.0000019018, -0.0000018947,0.0000018850,0.0000018727,0.0000018585,0.0000018429, -0.0000018263,0.0000018089,0.0000017922,0.0000017771,0.0000017644, -0.0000017547,0.0000017482,0.0000017448,0.0000017434,0.0000017436, -0.0000017449,0.0000017464,0.0000017491,0.0000017524,0.0000017556, -0.0000017580,0.0000017590,0.0000017597,0.0000017582,0.0000017569, -0.0000017544,0.0000017516,0.0000017484,0.0000017450,0.0000017420, -0.0000017395,0.0000017378,0.0000017360,0.0000017344,0.0000017327, -0.0000017316,0.0000017301,0.0000017284,0.0000017263,0.0000017234, -0.0000017202,0.0000017174,0.0000017154,0.0000017151,0.0000017163, -0.0000017190,0.0000017235,0.0000017300,0.0000017373,0.0000017437, -0.0000017491,0.0000017540,0.0000017574,0.0000017596,0.0000017607, -0.0000017602,0.0000017577,0.0000017551,0.0000017519,0.0000017480, -0.0000017446,0.0000017407,0.0000017376,0.0000017355,0.0000017341, -0.0000017330,0.0000017321,0.0000017317,0.0000017320,0.0000017333, -0.0000017349,0.0000017367,0.0000017385,0.0000017402,0.0000017418, -0.0000017435,0.0000017450,0.0000017463,0.0000017477,0.0000017492, -0.0000017506,0.0000017518,0.0000017528,0.0000017540,0.0000017553, -0.0000017566,0.0000017576,0.0000017584,0.0000017589,0.0000017593, -0.0000017594,0.0000017594,0.0000017590,0.0000017586,0.0000017580, -0.0000017572,0.0000017564,0.0000017558,0.0000017550,0.0000017541, -0.0000017532,0.0000017524,0.0000017516,0.0000017509,0.0000017505, -0.0000017502,0.0000017499,0.0000017494,0.0000017486,0.0000017475, -0.0000017461,0.0000017442,0.0000017420,0.0000017394,0.0000017368, -0.0000017339,0.0000017305,0.0000017270,0.0000017247,0.0000017241, -0.0000017247,0.0000017265,0.0000017283,0.0000017301,0.0000017312, -0.0000017326,0.0000017326,0.0000017321,0.0000017304,0.0000017289, -0.0000017267,0.0000017247,0.0000017234,0.0000017229,0.0000017236, -0.0000017249,0.0000017269,0.0000017296,0.0000017354,0.0000017430, -0.0000017520,0.0000017626,0.0000017752,0.0000017882,0.0000018011, -0.0000018138,0.0000018259,0.0000018370,0.0000018472,0.0000018565, -0.0000018652,0.0000018733,0.0000018808,0.0000018877,0.0000018938, -0.0000018988,0.0000019025,0.0000019054,0.0000019078,0.0000019096, -0.0000019108,0.0000019117,0.0000019124,0.0000019134,0.0000019144, -0.0000019154,0.0000019164,0.0000019173,0.0000019179,0.0000019184, -0.0000019188,0.0000019191,0.0000019200,0.0000019213,0.0000019229, -0.0000019246,0.0000019264,0.0000019282,0.0000019302,0.0000019328, -0.0000019357,0.0000019387,0.0000019417,0.0000019444,0.0000019468, -0.0000019487,0.0000019503,0.0000019521,0.0000019545,0.0000019571, -0.0000019596,0.0000019618,0.0000019645,0.0000019669,0.0000019687, -0.0000019706,0.0000019723,0.0000019732,0.0000019736,0.0000019738, -0.0000019746,0.0000019763,0.0000019789,0.0000019821,0.0000019855, -0.0000019885,0.0000019914,0.0000019941,0.0000019959,0.0000019966, -0.0000019967,0.0000019960,0.0000019952,0.0000019944,0.0000019940, -0.0000019941,0.0000019945,0.0000019949,0.0000019952,0.0000019952, -0.0000019948,0.0000019943,0.0000019938,0.0000019934,0.0000019930, -0.0000019927,0.0000019927,0.0000019931,0.0000019931,0.0000019924, -0.0000019915,0.0000019904,0.0000019896,0.0000019890,0.0000019891, -0.0000019898,0.0000019906,0.0000019910,0.0000019904,0.0000019887, -0.0000019865,0.0000019843,0.0000019816,0.0000019784,0.0000019751, -0.0000019720,0.0000019701,0.0000019694,0.0000019705,0.0000019730, -0.0000019770,0.0000019813,0.0000019853,0.0000019890,0.0000019921, -0.0000019942,0.0000019953,0.0000019952,0.0000019945,0.0000019930, -0.0000019909,0.0000019881,0.0000019848,0.0000019812,0.0000019768, -0.0000019723,0.0000019686,0.0000019665,0.0000019655,0.0000019657, -0.0000019670,0.0000019687,0.0000019705,0.0000019724,0.0000019743, -0.0000019764,0.0000019792,0.0000019824,0.0000019852,0.0000019878, -0.0000019895,0.0000019902,0.0000019897,0.0000019888,0.0000019875, -0.0000019861,0.0000019858,0.0000019851,0.0000019840,0.0000019832, -0.0000019822,0.0000019821,0.0000019819,0.0000019810,0.0000019795, -0.0000019777,0.0000019748,0.0000019720,0.0000019686,0.0000019643, -0.0000019596,0.0000019555,0.0000019518,0.0000019477,0.0000019436, -0.0000019397,0.0000019357,0.0000019317,0.0000019285,0.0000019265, -0.0000019260,0.0000019266,0.0000019278,0.0000019293,0.0000019308, -0.0000019321,0.0000019333,0.0000019347,0.0000019357,0.0000019361, -0.0000019363,0.0000019361,0.0000019351,0.0000019342,0.0000019341, -0.0000019346,0.0000019346,0.0000019339,0.0000019319,0.0000019287, -0.0000019246,0.0000019207,0.0000019175,0.0000019150,0.0000019134, -0.0000019122,0.0000019104,0.0000019087,0.0000019069,0.0000019060, -0.0000019064,0.0000019071,0.0000019073,0.0000019064,0.0000019043, -0.0000019023,0.0000019014,0.0000019019,0.0000019027,0.0000019032, -0.0000019032,0.0000019022,0.0000019008,0.0000018988,0.0000018975, -0.0000018963,0.0000018951,0.0000018941,0.0000018931,0.0000018929, -0.0000018921,0.0000018915,0.0000018924,0.0000018941,0.0000018960, -0.0000018975,0.0000018991,0.0000019005,0.0000019023,0.0000019051, -0.0000019085,0.0000019121,0.0000019160,0.0000019195,0.0000019226, -0.0000019256,0.0000019283,0.0000019309,0.0000019328,0.0000019335, -0.0000019333,0.0000019312,0.0000019299,0.0000019271,0.0000019236, -0.0000019202,0.0000019174,0.0000019151,0.0000019126,0.0000019092, -0.0000019049,0.0000019009,0.0000018980,0.0000018953,0.0000018943, -0.0000018929,0.0000018928,0.0000018939,0.0000018954,0.0000018973, -0.0000018976,0.0000018961,0.0000018931,0.0000018911,0.0000018892, -0.0000018868,0.0000018836,0.0000018782,0.0000018710,0.0000018648, -0.0000018601,0.0000018553,0.0000018500,0.0000018454,0.0000018448, -0.0000018471,0.0000018523,0.0000018595,0.0000018672,0.0000018752, -0.0000018823,0.0000018881,0.0000018881,0.0000018884,0.0000018839, -0.0000018766,0.0000018684,0.0000018607,0.0000018541,0.0000018484, -0.0000018444,0.0000018410,0.0000018402,0.0000018418,0.0000018459, -0.0000018521,0.0000018598,0.0000018685,0.0000018780,0.0000018877, -0.0000018970,0.0000019039,0.0000019082,0.0000019087,0.0000019067, -0.0000019037,0.0000018994,0.0000018950,0.0000018907,0.0000018860, -0.0000018816,0.0000018794,0.0000018786,0.0000018780,0.0000018768, -0.0000018747,0.0000018717,0.0000018691,0.0000018672,0.0000018660, -0.0000018637,0.0000018596,0.0000018549,0.0000018504,0.0000018481, -0.0000018488,0.0000018510,0.0000018546,0.0000018582,0.0000018626, -0.0000018670,0.0000018701,0.0000018714,0.0000018715,0.0000018704, -0.0000018689,0.0000018678,0.0000018673,0.0000018673,0.0000018677, -0.0000018684,0.0000018689,0.0000018699,0.0000018714,0.0000018724, -0.0000018721,0.0000018690,0.0000018644,0.0000018582,0.0000018527, -0.0000018498,0.0000018490,0.0000018490,0.0000018491,0.0000018482, -0.0000018450,0.0000018416,0.0000018390,0.0000018397,0.0000018411, -0.0000018398,0.0000018374,0.0000018356,0.0000018337,0.0000018307, -0.0000018270,0.0000018233,0.0000018201,0.0000018174,0.0000018165, -0.0000018176,0.0000018203,0.0000018254,0.0000018313,0.0000018358, -0.0000018384,0.0000018408,0.0000018432,0.0000018458,0.0000018481, -0.0000018493,0.0000018492,0.0000018469,0.0000018438,0.0000018392, -0.0000018338,0.0000018289,0.0000018245,0.0000018196,0.0000018150, -0.0000018126,0.0000018124,0.0000018135,0.0000018151,0.0000018166, -0.0000018179,0.0000018190,0.0000018199,0.0000018206,0.0000018207, -0.0000018204,0.0000018200,0.0000018197,0.0000018193,0.0000018187, -0.0000018171,0.0000018146,0.0000018123,0.0000018106,0.0000018096, -0.0000018087,0.0000018078,0.0000018066,0.0000018051,0.0000018031, -0.0000018011,0.0000017997,0.0000017991,0.0000017995,0.0000018005, -0.0000018016,0.0000018027,0.0000018033,0.0000018033,0.0000018029, -0.0000018024,0.0000018017,0.0000018011,0.0000018004,0.0000017996, -0.0000017987,0.0000017976,0.0000017959,0.0000017936,0.0000017909, -0.0000017880,0.0000017851,0.0000017824,0.0000017802,0.0000017785, -0.0000017773,0.0000017775,0.0000017789,0.0000017811,0.0000017837, -0.0000017865,0.0000017899,0.0000017935,0.0000017966,0.0000017987, -0.0000018002,0.0000018015,0.0000018025,0.0000018034,0.0000018046, -0.0000018056,0.0000018064,0.0000018075,0.0000018088,0.0000018103, -0.0000018132,0.0000018179,0.0000018232,0.0000018287,0.0000018341, -0.0000018392,0.0000018441,0.0000018490,0.0000018536,0.0000018579, -0.0000018621,0.0000018668,0.0000018730,0.0000018817,0.0000018930, -0.0000019058,0.0000019187,0.0000019301,0.0000019366,0.0000019391, -0.0000019367,0.0000019342,0.0000019282,0.0000019211,0.0000019131, -0.0000019042,0.0000018960,0.0000018910,0.0000018899,0.0000018902, -0.0000018904,0.0000018904,0.0000018900,0.0000018894,0.0000018891, -0.0000018891,0.0000018892,0.0000018879,0.0000018843,0.0000018784, -0.0000018716,0.0000018654,0.0000018605,0.0000018564,0.0000018530, -0.0000018511,0.0000018509,0.0000018519,0.0000018536,0.0000018555, -0.0000018569,0.0000018576,0.0000018580,0.0000018582,0.0000018583, -0.0000018576,0.0000018555,0.0000018521,0.0000018480,0.0000018439, -0.0000018403,0.0000018378,0.0000018363,0.0000018355,0.0000018345, -0.0000018332,0.0000018317,0.0000018304,0.0000018291,0.0000018278, -0.0000018269,0.0000018270,0.0000018276,0.0000018286,0.0000018292, -0.0000018291,0.0000018283,0.0000018273,0.0000018261,0.0000018248, -0.0000018231,0.0000018210,0.0000018191,0.0000018172,0.0000018156, -0.0000018142,0.0000018133,0.0000018126,0.0000018123,0.0000018122, -0.0000018128,0.0000018137,0.0000018147,0.0000018160,0.0000018172, -0.0000018180,0.0000018183,0.0000018184,0.0000018184,0.0000018177, -0.0000018166,0.0000018154,0.0000018136,0.0000018116,0.0000018105, -0.0000018095,0.0000018075,0.0000018058,0.0000018041,0.0000018030, -0.0000018020,0.0000018006,0.0000017990,0.0000017977,0.0000017970, -0.0000017971,0.0000017978,0.0000017989,0.0000018001,0.0000018011, -0.0000018020,0.0000018027,0.0000018033,0.0000018041,0.0000018051, -0.0000018063,0.0000018079,0.0000018099,0.0000018123,0.0000018149, -0.0000018177,0.0000018207,0.0000018231,0.0000018249,0.0000018262, -0.0000018273,0.0000018285,0.0000018299,0.0000018318,0.0000018344, -0.0000018376,0.0000018412,0.0000018445,0.0000018461,0.0000018448, -0.0000018396,0.0000018393,0.0000018503,0.0000018652,0.0000018816, -0.0000018830,0.0000018747,0.0000018735,0.0000018810,0.0000018575, -0.0000018189,0.0000018035,0.0000017947,0.0000017876,0.0000017825, -0.0000017793,0.0000017788,0.0000017804,0.0000017835,0.0000017880, -0.0000017936,0.0000017999,0.0000018066,0.0000018135,0.0000018205, -0.0000018269,0.0000018323,0.0000018366,0.0000018394,0.0000018406, -0.0000018402,0.0000018365,0.0000018288,0.0000018165,0.0000018000, -0.0000017824,0.0000017689,0.0000017622,0.0000017600,0.0000017579, -0.0000017533,0.0000017484,0.0000017461,0.0000017450,0.0000017431, -0.0000017411,0.0000017388,0.0000017351,0.0000017320,0.0000017320, -0.0000017336,0.0000017358,0.0000017395,0.0000017440,0.0000017472, -0.0000017488,0.0000017494,0.0000017505,0.0000017526,0.0000017562, -0.0000017599,0.0000017626,0.0000017640,0.0000017655,0.0000017681, -0.0000017719,0.0000017760,0.0000017796,0.0000017820,0.0000017823, -0.0000017811,0.0000017787,0.0000017765,0.0000017741,0.0000017723, -0.0000017717,0.0000017712,0.0000017715,0.0000017719,0.0000017718, -0.0000017717,0.0000017713,0.0000017707,0.0000017699,0.0000017685, -0.0000017668,0.0000017649,0.0000017631,0.0000017614,0.0000017609, -0.0000017609,0.0000017620,0.0000017644,0.0000017684,0.0000017746, -0.0000017823,0.0000017905,0.0000017990,0.0000018073,0.0000018150, -0.0000018215,0.0000018264,0.0000018309,0.0000018338,0.0000018325, -0.0000018263,0.0000018188,0.0000018160,0.0000018168,0.0000018173, -0.0000018158,0.0000018145,0.0000018151,0.0000018169,0.0000018188, -0.0000018201,0.0000018211,0.0000018223,0.0000018233,0.0000018239, -0.0000018242,0.0000018248,0.0000018255,0.0000018263,0.0000018274, -0.0000018291,0.0000018312,0.0000018322,0.0000018329,0.0000018332, -0.0000018317,0.0000018299,0.0000018287,0.0000018281,0.0000018275, -0.0000018273,0.0000018271,0.0000018267,0.0000018262,0.0000018250, -0.0000018238,0.0000018231,0.0000018228,0.0000018226,0.0000018226, -0.0000018225,0.0000018227,0.0000018225,0.0000018226,0.0000018232, -0.0000018246,0.0000018260,0.0000018277,0.0000018297,0.0000018317, -0.0000018335,0.0000018350,0.0000018360,0.0000018363,0.0000018362, -0.0000018357,0.0000018352,0.0000018349,0.0000018349,0.0000018353, -0.0000018361,0.0000018374,0.0000018387,0.0000018404,0.0000018424, -0.0000018445,0.0000018467,0.0000018494,0.0000018524,0.0000018553, -0.0000018580,0.0000018606,0.0000018631,0.0000018653,0.0000018672, -0.0000018687,0.0000018702,0.0000018715,0.0000018725,0.0000018727, -0.0000018723,0.0000018713,0.0000018695,0.0000018668,0.0000018632, -0.0000018592,0.0000018554,0.0000018521,0.0000018491,0.0000018464, -0.0000018445,0.0000018428,0.0000018415,0.0000018411,0.0000018408, -0.0000018407,0.0000018409,0.0000018413,0.0000018418,0.0000018425, -0.0000018430,0.0000018431,0.0000018425,0.0000018415,0.0000018403, -0.0000018388,0.0000018367,0.0000018344,0.0000018320,0.0000018297, -0.0000018274,0.0000018252,0.0000018229,0.0000018201,0.0000018163, -0.0000018117,0.0000018062,0.0000018010,0.0000017970,0.0000017952, -0.0000017958,0.0000017972,0.0000017990,0.0000018005,0.0000018021, -0.0000018021,0.0000018007,0.0000017986,0.0000017972,0.0000017973, -0.0000017994,0.0000018023,0.0000018048,0.0000018057,0.0000018038, -0.0000017994,0.0000017950,0.0000017936,0.0000017961,0.0000018029, -0.0000018120,0.0000018196,0.0000018224,0.0000018211,0.0000018193, -0.0000018184,0.0000018184,0.0000018193,0.0000018205,0.0000018222, -0.0000018242,0.0000018247,0.0000018233,0.0000018204,0.0000018162, -0.0000018109,0.0000018046,0.0000017975,0.0000017899,0.0000017830, -0.0000017786,0.0000017777,0.0000017783,0.0000017810,0.0000017841, -0.0000017866,0.0000017877,0.0000017874,0.0000017865,0.0000017849, -0.0000017826,0.0000017800,0.0000017764,0.0000017724,0.0000017692, -0.0000017673,0.0000017674,0.0000017695,0.0000017734,0.0000017784, -0.0000017838,0.0000017886,0.0000017928,0.0000017970,0.0000018017, -0.0000018067,0.0000018115,0.0000018156,0.0000018181,0.0000018186, -0.0000018175,0.0000018148,0.0000018109,0.0000018064,0.0000018014, -0.0000017958,0.0000017904,0.0000017861,0.0000017832,0.0000017812, -0.0000017796,0.0000017788,0.0000017775,0.0000017756,0.0000017740, -0.0000017729,0.0000017717,0.0000017704,0.0000017697,0.0000017700, -0.0000017716,0.0000017743,0.0000017778,0.0000017818,0.0000017863, -0.0000017907,0.0000017946,0.0000017972,0.0000017984,0.0000017985, -0.0000017979,0.0000017966,0.0000017944,0.0000017914,0.0000017874, -0.0000017827,0.0000017781,0.0000017741,0.0000017709,0.0000017680, -0.0000017655,0.0000017632,0.0000017615,0.0000017608,0.0000017610, -0.0000017615,0.0000017627,0.0000017645,0.0000017664,0.0000017682, -0.0000017702,0.0000017721,0.0000017736,0.0000017748,0.0000017752, -0.0000017751,0.0000017744,0.0000017730,0.0000017710,0.0000017685, -0.0000017651,0.0000017609,0.0000017561,0.0000017508,0.0000017456, -0.0000017406,0.0000017360,0.0000017323,0.0000017299,0.0000017286, -0.0000017287,0.0000017289,0.0000017292,0.0000017294,0.0000017298, -0.0000017305,0.0000017318,0.0000017337,0.0000017365,0.0000017403, -0.0000017450,0.0000017505,0.0000017566,0.0000017625,0.0000017678, -0.0000017721,0.0000017755,0.0000017779,0.0000017790,0.0000017790, -0.0000017781,0.0000017770,0.0000017758,0.0000017750,0.0000017749, -0.0000017755,0.0000017770,0.0000017790,0.0000017807,0.0000017816, -0.0000017813,0.0000017794,0.0000017757,0.0000017708,0.0000017653, -0.0000017592,0.0000017528,0.0000017461,0.0000017392,0.0000017327, -0.0000017278,0.0000017248,0.0000017235,0.0000017242,0.0000017269, -0.0000017306,0.0000017350,0.0000017416,0.0000017524,0.0000017674, -0.0000017841,0.0000017977,0.0000018045,0.0000018048,0.0000018066, -0.0000018120,0.0000018197,0.0000018242,0.0000018236,0.0000018130, -0.0000017966,0.0000017815,0.0000017721,0.0000017708,0.0000017712, -0.0000017722,0.0000017732,0.0000017738,0.0000017735,0.0000017725, -0.0000017716,0.0000017717,0.0000017717,0.0000017705,0.0000017663, -0.0000017583,0.0000017485,0.0000017408,0.0000017381,0.0000017399, -0.0000017433,0.0000017441,0.0000017420,0.0000017405,0.0000017456, -0.0000017621,0.0000017852,0.0000018025,0.0000018085,0.0000018108, -0.0000018181,0.0000018333,0.0000018530,0.0000018708,0.0000018845, -0.0000018959,0.0000019060,0.0000019143,0.0000019197,0.0000019210, -0.0000019213,0.0000019227,0.0000019253,0.0000019288,0.0000019329, -0.0000019371,0.0000019411,0.0000019447,0.0000019474,0.0000019492, -0.0000019503,0.0000019509,0.0000019509,0.0000019505,0.0000019503, -0.0000019500,0.0000019495,0.0000019491,0.0000019489,0.0000019490, -0.0000019492,0.0000019497,0.0000019502,0.0000019507,0.0000019514, -0.0000019521,0.0000019530,0.0000019540,0.0000019548,0.0000019553, -0.0000019557,0.0000019560,0.0000019563,0.0000019568,0.0000019569, -0.0000019566,0.0000019562,0.0000019560,0.0000019557,0.0000019551, -0.0000019541,0.0000019531,0.0000019520,0.0000019502,0.0000019481, -0.0000019456,0.0000019428,0.0000019399,0.0000019367,0.0000019332, -0.0000019301,0.0000019275,0.0000019254,0.0000019234,0.0000019214, -0.0000019193,0.0000019174,0.0000019156,0.0000019134,0.0000019108, -0.0000019074,0.0000019026,0.0000018962,0.0000018879,0.0000018780, -0.0000018663,0.0000018531,0.0000018385,0.0000018230,0.0000018065, -0.0000017898,0.0000017740,0.0000017611,0.0000017518,0.0000017458, -0.0000017422,0.0000017408,0.0000017408,0.0000017421,0.0000017439, -0.0000017463,0.0000017493,0.0000017525,0.0000017553,0.0000017572, -0.0000017574,0.0000017565,0.0000017542,0.0000017514,0.0000017484, -0.0000017455,0.0000017431,0.0000017411,0.0000017398,0.0000017387, -0.0000017381,0.0000017380,0.0000017378,0.0000017375,0.0000017368, -0.0000017358,0.0000017343,0.0000017322,0.0000017296,0.0000017266, -0.0000017243,0.0000017240,0.0000017261,0.0000017304,0.0000017363, -0.0000017426,0.0000017490,0.0000017546,0.0000017594,0.0000017619, -0.0000017624,0.0000017626,0.0000017619,0.0000017609,0.0000017593, -0.0000017574,0.0000017551,0.0000017529,0.0000017505,0.0000017481, -0.0000017461,0.0000017441,0.0000017421,0.0000017406,0.0000017395, -0.0000017385,0.0000017374,0.0000017362,0.0000017353,0.0000017352, -0.0000017359,0.0000017370,0.0000017382,0.0000017398,0.0000017415, -0.0000017429,0.0000017440,0.0000017451,0.0000017459,0.0000017469, -0.0000017479,0.0000017489,0.0000017499,0.0000017509,0.0000017523, -0.0000017538,0.0000017551,0.0000017561,0.0000017569,0.0000017577, -0.0000017586,0.0000017593,0.0000017598,0.0000017600,0.0000017602, -0.0000017601,0.0000017601,0.0000017605,0.0000017608,0.0000017605, -0.0000017600,0.0000017594,0.0000017587,0.0000017578,0.0000017570, -0.0000017561,0.0000017552,0.0000017540,0.0000017527,0.0000017512, -0.0000017493,0.0000017473,0.0000017452,0.0000017427,0.0000017406, -0.0000017383,0.0000017354,0.0000017326,0.0000017307,0.0000017303, -0.0000017305,0.0000017309,0.0000017310,0.0000017307,0.0000017304, -0.0000017296,0.0000017286,0.0000017282,0.0000017267,0.0000017259, -0.0000017249,0.0000017239,0.0000017229,0.0000017229,0.0000017234, -0.0000017249,0.0000017276,0.0000017302,0.0000017328,0.0000017347, -0.0000017367,0.0000017392,0.0000017430,0.0000017477,0.0000017533, -0.0000017602,0.0000017680,0.0000017766,0.0000017859,0.0000017958, -0.0000018067,0.0000018179,0.0000018292,0.0000018406,0.0000018519, -0.0000018626,0.0000018722,0.0000018811,0.0000018893,0.0000018959, -0.0000019005,0.0000019036,0.0000019057,0.0000019071,0.0000019082, -0.0000019091,0.0000019099,0.0000019108,0.0000019116,0.0000019125, -0.0000019134,0.0000019145,0.0000019157,0.0000019172,0.0000019187, -0.0000019201,0.0000019214,0.0000019229,0.0000019247,0.0000019266, -0.0000019284,0.0000019305,0.0000019326,0.0000019348,0.0000019368, -0.0000019388,0.0000019408,0.0000019431,0.0000019455,0.0000019481, -0.0000019511,0.0000019541,0.0000019574,0.0000019604,0.0000019629, -0.0000019650,0.0000019667,0.0000019677,0.0000019681,0.0000019682, -0.0000019684,0.0000019689,0.0000019702,0.0000019725,0.0000019754, -0.0000019785,0.0000019817,0.0000019851,0.0000019881,0.0000019905, -0.0000019919,0.0000019925,0.0000019925,0.0000019922,0.0000019918, -0.0000019914,0.0000019911,0.0000019910,0.0000019909,0.0000019906, -0.0000019897,0.0000019884,0.0000019872,0.0000019862,0.0000019855, -0.0000019856,0.0000019864,0.0000019875,0.0000019888,0.0000019899, -0.0000019902,0.0000019895,0.0000019886,0.0000019876,0.0000019873, -0.0000019877,0.0000019887,0.0000019893,0.0000019893,0.0000019883, -0.0000019864,0.0000019839,0.0000019808,0.0000019775,0.0000019745, -0.0000019722,0.0000019702,0.0000019690,0.0000019691,0.0000019710, -0.0000019745,0.0000019787,0.0000019826,0.0000019862,0.0000019890, -0.0000019908,0.0000019913,0.0000019912,0.0000019905,0.0000019893, -0.0000019878,0.0000019858,0.0000019833,0.0000019802,0.0000019768, -0.0000019742,0.0000019720,0.0000019698,0.0000019677,0.0000019664, -0.0000019666,0.0000019673,0.0000019681,0.0000019686,0.0000019690, -0.0000019695,0.0000019705,0.0000019717,0.0000019727,0.0000019741, -0.0000019753,0.0000019765,0.0000019777,0.0000019785,0.0000019796, -0.0000019803,0.0000019803,0.0000019799,0.0000019795,0.0000019790, -0.0000019794,0.0000019802,0.0000019803,0.0000019802,0.0000019798, -0.0000019787,0.0000019766,0.0000019747,0.0000019725,0.0000019694, -0.0000019663,0.0000019633,0.0000019602,0.0000019574,0.0000019550, -0.0000019526,0.0000019498,0.0000019469,0.0000019444,0.0000019431, -0.0000019430,0.0000019442,0.0000019457,0.0000019471,0.0000019482, -0.0000019490,0.0000019495,0.0000019499,0.0000019500,0.0000019497, -0.0000019487,0.0000019472,0.0000019454,0.0000019446,0.0000019449, -0.0000019460,0.0000019467,0.0000019466,0.0000019454,0.0000019426, -0.0000019386,0.0000019343,0.0000019299,0.0000019255,0.0000019218, -0.0000019190,0.0000019172,0.0000019163,0.0000019159,0.0000019158, -0.0000019151,0.0000019136,0.0000019115,0.0000019085,0.0000019049, -0.0000019021,0.0000019017,0.0000019016,0.0000019026,0.0000019039, -0.0000019046,0.0000019040,0.0000019038,0.0000019033,0.0000019029, -0.0000019023,0.0000019016,0.0000019004,0.0000018985,0.0000018966, -0.0000018946,0.0000018929,0.0000018932,0.0000018932,0.0000018944, -0.0000018962,0.0000018973,0.0000018979,0.0000018984,0.0000018990, -0.0000018996,0.0000019007,0.0000019026,0.0000019048,0.0000019073, -0.0000019104,0.0000019140,0.0000019181,0.0000019217,0.0000019244, -0.0000019259,0.0000019264,0.0000019259,0.0000019246,0.0000019223, -0.0000019213,0.0000019208,0.0000019197,0.0000019180,0.0000019156, -0.0000019124,0.0000019083,0.0000019040,0.0000018995,0.0000018954, -0.0000018913,0.0000018892,0.0000018875,0.0000018881,0.0000018901, -0.0000018918,0.0000018936,0.0000018942,0.0000018946,0.0000018933, -0.0000018906,0.0000018853,0.0000018783,0.0000018717,0.0000018663, -0.0000018619,0.0000018582,0.0000018547,0.0000018516,0.0000018497, -0.0000018492,0.0000018485,0.0000018493,0.0000018533,0.0000018601, -0.0000018685,0.0000018763,0.0000018824,0.0000018841,0.0000018844, -0.0000018810,0.0000018756,0.0000018685,0.0000018599,0.0000018511, -0.0000018434,0.0000018391,0.0000018369,0.0000018368,0.0000018395, -0.0000018454,0.0000018527,0.0000018607,0.0000018683,0.0000018758, -0.0000018835,0.0000018908,0.0000018963,0.0000019000,0.0000019015, -0.0000019005,0.0000018986,0.0000018954,0.0000018906,0.0000018858, -0.0000018826,0.0000018814,0.0000018811,0.0000018811,0.0000018803, -0.0000018786,0.0000018764,0.0000018745,0.0000018730,0.0000018714, -0.0000018680,0.0000018621,0.0000018559,0.0000018515,0.0000018511, -0.0000018525,0.0000018544,0.0000018560,0.0000018588,0.0000018617, -0.0000018647,0.0000018666,0.0000018666,0.0000018656,0.0000018645, -0.0000018640,0.0000018640,0.0000018637,0.0000018640,0.0000018641, -0.0000018634,0.0000018635,0.0000018641,0.0000018644,0.0000018639, -0.0000018615,0.0000018574,0.0000018524,0.0000018482,0.0000018457, -0.0000018447,0.0000018449,0.0000018452,0.0000018450,0.0000018436, -0.0000018410,0.0000018390,0.0000018402,0.0000018427,0.0000018432, -0.0000018415,0.0000018397,0.0000018378,0.0000018358,0.0000018333, -0.0000018300,0.0000018259,0.0000018220,0.0000018188,0.0000018178, -0.0000018182,0.0000018198,0.0000018236,0.0000018283,0.0000018327, -0.0000018365,0.0000018395,0.0000018414,0.0000018427,0.0000018435, -0.0000018434,0.0000018422,0.0000018403,0.0000018363,0.0000018315, -0.0000018268,0.0000018222,0.0000018174,0.0000018130,0.0000018109, -0.0000018116,0.0000018136,0.0000018156,0.0000018175,0.0000018188, -0.0000018199,0.0000018206,0.0000018207,0.0000018197,0.0000018180, -0.0000018159,0.0000018141,0.0000018127,0.0000018115,0.0000018101, -0.0000018079,0.0000018055,0.0000018038,0.0000018029,0.0000018025, -0.0000018023,0.0000018021,0.0000018015,0.0000018006,0.0000017996, -0.0000017990,0.0000017988,0.0000017990,0.0000017997,0.0000018007, -0.0000018018,0.0000018025,0.0000018027,0.0000018025,0.0000018019, -0.0000018012,0.0000018005,0.0000017995,0.0000017984,0.0000017974, -0.0000017957,0.0000017936,0.0000017913,0.0000017888,0.0000017862, -0.0000017834,0.0000017810,0.0000017789,0.0000017771,0.0000017760, -0.0000017756,0.0000017756,0.0000017759,0.0000017768,0.0000017786, -0.0000017816,0.0000017852,0.0000017890,0.0000017927,0.0000017960, -0.0000017986,0.0000018008,0.0000018025,0.0000018038,0.0000018050, -0.0000018061,0.0000018070,0.0000018069,0.0000018065,0.0000018069, -0.0000018092,0.0000018132,0.0000018188,0.0000018253,0.0000018316, -0.0000018376,0.0000018428,0.0000018475,0.0000018519,0.0000018561, -0.0000018603,0.0000018648,0.0000018707,0.0000018783,0.0000018881, -0.0000018995,0.0000019117,0.0000019233,0.0000019303,0.0000019355, -0.0000019338,0.0000019324,0.0000019272,0.0000019207,0.0000019128, -0.0000019046,0.0000018973,0.0000018930,0.0000018918,0.0000018919, -0.0000018918,0.0000018910,0.0000018900,0.0000018892,0.0000018888, -0.0000018889,0.0000018889,0.0000018873,0.0000018834,0.0000018775, -0.0000018707,0.0000018647,0.0000018601,0.0000018567,0.0000018544, -0.0000018531,0.0000018530,0.0000018533,0.0000018541,0.0000018551, -0.0000018561,0.0000018566,0.0000018566,0.0000018563,0.0000018559, -0.0000018549,0.0000018531,0.0000018500,0.0000018457,0.0000018411, -0.0000018373,0.0000018351,0.0000018341,0.0000018332,0.0000018318, -0.0000018301,0.0000018282,0.0000018262,0.0000018249,0.0000018245, -0.0000018244,0.0000018251,0.0000018261,0.0000018268,0.0000018271, -0.0000018270,0.0000018261,0.0000018248,0.0000018230,0.0000018207, -0.0000018186,0.0000018171,0.0000018158,0.0000018148,0.0000018141, -0.0000018134,0.0000018126,0.0000018115,0.0000018108,0.0000018107, -0.0000018110,0.0000018121,0.0000018136,0.0000018152,0.0000018165, -0.0000018177,0.0000018186,0.0000018190,0.0000018191,0.0000018188, -0.0000018179,0.0000018165,0.0000018142,0.0000018117,0.0000018089, -0.0000018060,0.0000018032,0.0000018006,0.0000017982,0.0000017954, -0.0000017927,0.0000017908,0.0000017897,0.0000017897,0.0000017903, -0.0000017920,0.0000017940,0.0000017961,0.0000017980,0.0000017998, -0.0000018016,0.0000018034,0.0000018052,0.0000018071,0.0000018091, -0.0000018113,0.0000018134,0.0000018152,0.0000018169,0.0000018181, -0.0000018188,0.0000018196,0.0000018210,0.0000018226,0.0000018246, -0.0000018276,0.0000018305,0.0000018339,0.0000018378,0.0000018420, -0.0000018450,0.0000018452,0.0000018405,0.0000018377,0.0000018453, -0.0000018609,0.0000018796,0.0000018843,0.0000018778,0.0000018718, -0.0000018783,0.0000018688,0.0000018266,0.0000018015,0.0000017893, -0.0000017806,0.0000017747,0.0000017684,0.0000017615,0.0000017555, -0.0000017513,0.0000017488,0.0000017478,0.0000017487,0.0000017501, -0.0000017513,0.0000017525,0.0000017538,0.0000017559,0.0000017581, -0.0000017603,0.0000017619,0.0000017626,0.0000017622,0.0000017612, -0.0000017600,0.0000017583,0.0000017566,0.0000017560,0.0000017561, -0.0000017550,0.0000017523,0.0000017487,0.0000017468,0.0000017464, -0.0000017456,0.0000017429,0.0000017401,0.0000017376,0.0000017331, -0.0000017284,0.0000017280,0.0000017310,0.0000017348,0.0000017389, -0.0000017427,0.0000017450,0.0000017464,0.0000017484,0.0000017520, -0.0000017568,0.0000017611,0.0000017636,0.0000017649,0.0000017665, -0.0000017692,0.0000017727,0.0000017761,0.0000017778,0.0000017784, -0.0000017769,0.0000017751,0.0000017733,0.0000017722,0.0000017730, -0.0000017730,0.0000017739,0.0000017751,0.0000017766,0.0000017781, -0.0000017791,0.0000017797,0.0000017800,0.0000017798,0.0000017791, -0.0000017779,0.0000017762,0.0000017741,0.0000017718,0.0000017693, -0.0000017668,0.0000017645,0.0000017631,0.0000017626,0.0000017626, -0.0000017632,0.0000017651,0.0000017698,0.0000017767,0.0000017851, -0.0000017941,0.0000018024,0.0000018102,0.0000018170,0.0000018223, -0.0000018266,0.0000018302,0.0000018300,0.0000018250,0.0000018179, -0.0000018145,0.0000018153,0.0000018168,0.0000018158,0.0000018133, -0.0000018113,0.0000018112,0.0000018128,0.0000018148,0.0000018173, -0.0000018195,0.0000018209,0.0000018216,0.0000018221,0.0000018227, -0.0000018231,0.0000018235,0.0000018239,0.0000018244,0.0000018257, -0.0000018277,0.0000018311,0.0000018333,0.0000018342,0.0000018354, -0.0000018345,0.0000018331,0.0000018316,0.0000018303,0.0000018291, -0.0000018283,0.0000018275,0.0000018268,0.0000018261,0.0000018256, -0.0000018252,0.0000018251,0.0000018250,0.0000018250,0.0000018251, -0.0000018259,0.0000018270,0.0000018282,0.0000018296,0.0000018310, -0.0000018322,0.0000018336,0.0000018348,0.0000018356,0.0000018362, -0.0000018366,0.0000018365,0.0000018362,0.0000018358,0.0000018355, -0.0000018356,0.0000018360,0.0000018365,0.0000018417,0.0000018434, -0.0000018454,0.0000018477,0.0000018500,0.0000018521,0.0000018544, -0.0000018569,0.0000018596,0.0000018622,0.0000018648,0.0000018672, -0.0000018694,0.0000018710,0.0000018720,0.0000018726,0.0000018734, -0.0000018740,0.0000018743,0.0000018746,0.0000018746,0.0000018740, -0.0000018730,0.0000018710,0.0000018681,0.0000018646,0.0000018607, -0.0000018568,0.0000018532,0.0000018498,0.0000018470,0.0000018453, -0.0000018446,0.0000018445,0.0000018445,0.0000018446,0.0000018448, -0.0000018451,0.0000018454,0.0000018457,0.0000018458,0.0000018454, -0.0000018443,0.0000018430,0.0000018414,0.0000018392,0.0000018365, -0.0000018336,0.0000018312,0.0000018292,0.0000018272,0.0000018253, -0.0000018236,0.0000018213,0.0000018181,0.0000018137,0.0000018083, -0.0000018028,0.0000017987,0.0000017969,0.0000017972,0.0000017985, -0.0000018000,0.0000018016,0.0000018031,0.0000018040,0.0000018037, -0.0000018028,0.0000018018,0.0000018017,0.0000018030,0.0000018051, -0.0000018070,0.0000018079,0.0000018061,0.0000018017,0.0000017960, -0.0000017924,0.0000017911,0.0000017949,0.0000018031,0.0000018123, -0.0000018180,0.0000018186,0.0000018172,0.0000018160,0.0000018159, -0.0000018168,0.0000018184,0.0000018207,0.0000018229,0.0000018240, -0.0000018240,0.0000018221,0.0000018183,0.0000018131,0.0000018069, -0.0000017999,0.0000017920,0.0000017846,0.0000017799,0.0000017791, -0.0000017803,0.0000017831,0.0000017859,0.0000017876,0.0000017877, -0.0000017869,0.0000017856,0.0000017842,0.0000017827,0.0000017807, -0.0000017772,0.0000017729,0.0000017693,0.0000017670,0.0000017658, -0.0000017665,0.0000017698,0.0000017752,0.0000017813,0.0000017868, -0.0000017914,0.0000017952,0.0000017990,0.0000018031,0.0000018074, -0.0000018115,0.0000018147,0.0000018165,0.0000018162,0.0000018141, -0.0000018108,0.0000018068,0.0000018022,0.0000017973,0.0000017927, -0.0000017889,0.0000017860,0.0000017844,0.0000017843,0.0000017842, -0.0000017834,0.0000017824,0.0000017814,0.0000017805,0.0000017795, -0.0000017791,0.0000017796,0.0000017814,0.0000017847,0.0000017887, -0.0000017926,0.0000017960,0.0000017988,0.0000018007,0.0000018012, -0.0000018008,0.0000017996,0.0000017980,0.0000017959,0.0000017931, -0.0000017892,0.0000017846,0.0000017800,0.0000017761,0.0000017729, -0.0000017698,0.0000017663,0.0000017623,0.0000017584,0.0000017556, -0.0000017543,0.0000017542,0.0000017551,0.0000017570,0.0000017597, -0.0000017629,0.0000017662,0.0000017694,0.0000017722,0.0000017743, -0.0000017757,0.0000017768,0.0000017773,0.0000017773,0.0000017767, -0.0000017759,0.0000017748,0.0000017733,0.0000017709,0.0000017677, -0.0000017638,0.0000017593,0.0000017541,0.0000017486,0.0000017434, -0.0000017390,0.0000017357,0.0000017330,0.0000017310,0.0000017296, -0.0000017291,0.0000017290,0.0000017293,0.0000017301,0.0000017312, -0.0000017332,0.0000017363,0.0000017403,0.0000017450,0.0000017501, -0.0000017555,0.0000017606,0.0000017650,0.0000017687,0.0000017712, -0.0000017728,0.0000017734,0.0000017733,0.0000017727,0.0000017725, -0.0000017728,0.0000017736,0.0000017754,0.0000017782,0.0000017809, -0.0000017832,0.0000017850,0.0000017858,0.0000017848,0.0000017819, -0.0000017774,0.0000017718,0.0000017655,0.0000017588,0.0000017517, -0.0000017442,0.0000017369,0.0000017307,0.0000017261,0.0000017233, -0.0000017225,0.0000017237,0.0000017268,0.0000017307,0.0000017357, -0.0000017426,0.0000017522,0.0000017651,0.0000017806,0.0000017943, -0.0000018023,0.0000018033,0.0000018048,0.0000018098,0.0000018173, -0.0000018218,0.0000018215,0.0000018119,0.0000017969,0.0000017824, -0.0000017716,0.0000017697,0.0000017701,0.0000017713,0.0000017721, -0.0000017720,0.0000017711,0.0000017696,0.0000017682,0.0000017677, -0.0000017678,0.0000017660,0.0000017601,0.0000017505,0.0000017411, -0.0000017371,0.0000017372,0.0000017401,0.0000017418,0.0000017400, -0.0000017365,0.0000017360,0.0000017454,0.0000017647,0.0000017866, -0.0000018007,0.0000018060,0.0000018106,0.0000018209,0.0000018374, -0.0000018562,0.0000018725,0.0000018853,0.0000018962,0.0000019058, -0.0000019135,0.0000019188,0.0000019211,0.0000019219,0.0000019227, -0.0000019242,0.0000019261,0.0000019283,0.0000019308,0.0000019332, -0.0000019353,0.0000019369,0.0000019382,0.0000019391,0.0000019398, -0.0000019402,0.0000019407,0.0000019413,0.0000019418,0.0000019424, -0.0000019429,0.0000019436,0.0000019443,0.0000019450,0.0000019457, -0.0000019461,0.0000019467,0.0000019475,0.0000019485,0.0000019497, -0.0000019509,0.0000019519,0.0000019528,0.0000019536,0.0000019546, -0.0000019552,0.0000019554,0.0000019554,0.0000019551,0.0000019543, -0.0000019532,0.0000019516,0.0000019498,0.0000019477,0.0000019453, -0.0000019428,0.0000019403,0.0000019377,0.0000019353,0.0000019328, -0.0000019302,0.0000019284,0.0000019269,0.0000019251,0.0000019230, -0.0000019205,0.0000019177,0.0000019143,0.0000019101,0.0000019047, -0.0000018981,0.0000018902,0.0000018809,0.0000018703,0.0000018587, -0.0000018463,0.0000018330,0.0000018187,0.0000018033,0.0000017876, -0.0000017728,0.0000017601,0.0000017504,0.0000017443,0.0000017413, -0.0000017399,0.0000017397,0.0000017400,0.0000017415,0.0000017440, -0.0000017471,0.0000017498,0.0000017523,0.0000017538,0.0000017541, -0.0000017531,0.0000017510,0.0000017481,0.0000017450,0.0000017425, -0.0000017405,0.0000017393,0.0000017389,0.0000017391,0.0000017394, -0.0000017399,0.0000017407,0.0000017414,0.0000017416,0.0000017413, -0.0000017400,0.0000017379,0.0000017359,0.0000017348,0.0000017349, -0.0000017367,0.0000017401,0.0000017445,0.0000017492,0.0000017531, -0.0000017564,0.0000017572,0.0000017577,0.0000017588,0.0000017581, -0.0000017570,0.0000017558,0.0000017556,0.0000017553,0.0000017550, -0.0000017549,0.0000017551,0.0000017551,0.0000017549,0.0000017545, -0.0000017539,0.0000017530,0.0000017519,0.0000017505,0.0000017489, -0.0000017474,0.0000017461,0.0000017448,0.0000017433,0.0000017416, -0.0000017401,0.0000017392,0.0000017392,0.0000017399,0.0000017411, -0.0000017426,0.0000017440,0.0000017452,0.0000017462,0.0000017471, -0.0000017478,0.0000017485,0.0000017492,0.0000017498,0.0000017505, -0.0000017515,0.0000017528,0.0000017539,0.0000017547,0.0000017550, -0.0000017553,0.0000017564,0.0000017575,0.0000017579,0.0000017583, -0.0000017590,0.0000017593,0.0000017598,0.0000017612,0.0000017625, -0.0000017630,0.0000017640,0.0000017647,0.0000017646,0.0000017647, -0.0000017650,0.0000017645,0.0000017639,0.0000017629,0.0000017612, -0.0000017592,0.0000017568,0.0000017543,0.0000017510,0.0000017473, -0.0000017441,0.0000017410,0.0000017376,0.0000017353,0.0000017345, -0.0000017346,0.0000017358,0.0000017368,0.0000017374,0.0000017375, -0.0000017368,0.0000017352,0.0000017333,0.0000017310,0.0000017285, -0.0000017260,0.0000017239,0.0000017216,0.0000017201,0.0000017199, -0.0000017195,0.0000017214,0.0000017243,0.0000017278,0.0000017314, -0.0000017344,0.0000017371,0.0000017397,0.0000017413,0.0000017421, -0.0000017430,0.0000017435,0.0000017439,0.0000017461,0.0000017491, -0.0000017533,0.0000017587,0.0000017650,0.0000017721,0.0000017805, -0.0000017902,0.0000018006,0.0000018120,0.0000018246,0.0000018381, -0.0000018512,0.0000018632,0.0000018738,0.0000018823,0.0000018892, -0.0000018948,0.0000018990,0.0000019020,0.0000019042,0.0000019058, -0.0000019068,0.0000019076,0.0000019083,0.0000019095,0.0000019110, -0.0000019127,0.0000019145,0.0000019162,0.0000019182,0.0000019205, -0.0000019227,0.0000019244,0.0000019258,0.0000019270,0.0000019282, -0.0000019296,0.0000019309,0.0000019322,0.0000019338,0.0000019357, -0.0000019379,0.0000019404,0.0000019431,0.0000019466,0.0000019504, -0.0000019536,0.0000019566,0.0000019592,0.0000019611,0.0000019624, -0.0000019632,0.0000019636,0.0000019637,0.0000019640,0.0000019650, -0.0000019670,0.0000019695,0.0000019725,0.0000019756,0.0000019791, -0.0000019821,0.0000019842,0.0000019857,0.0000019870,0.0000019880, -0.0000019883,0.0000019885,0.0000019885,0.0000019882,0.0000019874, -0.0000019860,0.0000019844,0.0000019829,0.0000019816,0.0000019810, -0.0000019809,0.0000019810,0.0000019815,0.0000019823,0.0000019831, -0.0000019841,0.0000019851,0.0000019857,0.0000019862,0.0000019865, -0.0000019871,0.0000019878,0.0000019886,0.0000019890,0.0000019889, -0.0000019882,0.0000019868,0.0000019847,0.0000019817,0.0000019780, -0.0000019747,0.0000019720,0.0000019696,0.0000019681,0.0000019677, -0.0000019691,0.0000019724,0.0000019766,0.0000019805,0.0000019835, -0.0000019856,0.0000019871,0.0000019877,0.0000019879,0.0000019876, -0.0000019866,0.0000019848,0.0000019825,0.0000019798,0.0000019769, -0.0000019741,0.0000019720,0.0000019701,0.0000019683,0.0000019670, -0.0000019670,0.0000019683,0.0000019703,0.0000019722,0.0000019735, -0.0000019740,0.0000019743,0.0000019745,0.0000019744,0.0000019742, -0.0000019743,0.0000019747,0.0000019751,0.0000019758,0.0000019772, -0.0000019784,0.0000019786,0.0000019786,0.0000019782,0.0000019774, -0.0000019773,0.0000019777,0.0000019775,0.0000019774,0.0000019775, -0.0000019768,0.0000019752,0.0000019737,0.0000019721,0.0000019704, -0.0000019691,0.0000019681,0.0000019672,0.0000019668,0.0000019664, -0.0000019656,0.0000019642,0.0000019625,0.0000019608,0.0000019594, -0.0000019583,0.0000019579,0.0000019585,0.0000019598,0.0000019610, -0.0000019618,0.0000019619,0.0000019615,0.0000019603,0.0000019586, -0.0000019564,0.0000019540,0.0000019519,0.0000019502,0.0000019495, -0.0000019498,0.0000019507,0.0000019523,0.0000019533,0.0000019530, -0.0000019515,0.0000019494,0.0000019464,0.0000019425,0.0000019376, -0.0000019322,0.0000019272,0.0000019239,0.0000019227,0.0000019227, -0.0000019225,0.0000019214,0.0000019193,0.0000019165,0.0000019131, -0.0000019099,0.0000019074,0.0000019053,0.0000019038,0.0000019030, -0.0000019025,0.0000019019,0.0000019013,0.0000019014,0.0000019017, -0.0000019027,0.0000019037,0.0000019041,0.0000019035,0.0000019022, -0.0000019002,0.0000018976,0.0000018953,0.0000018937,0.0000018941, -0.0000018954,0.0000018968,0.0000018977,0.0000018984,0.0000018982, -0.0000018979,0.0000018970,0.0000018962,0.0000018961,0.0000018962, -0.0000018971,0.0000018988,0.0000019015,0.0000019051,0.0000019090, -0.0000019124,0.0000019151,0.0000019168,0.0000019178,0.0000019182, -0.0000019180,0.0000019179,0.0000019180,0.0000019180,0.0000019181, -0.0000019177,0.0000019164,0.0000019143,0.0000019111,0.0000019065, -0.0000019010,0.0000018945,0.0000018891,0.0000018849,0.0000018838, -0.0000018840,0.0000018866,0.0000018902,0.0000018929,0.0000018943, -0.0000018933,0.0000018909,0.0000018863,0.0000018805,0.0000018745, -0.0000018693,0.0000018650,0.0000018619,0.0000018604,0.0000018590, -0.0000018564,0.0000018531,0.0000018483,0.0000018472,0.0000018460, -0.0000018491,0.0000018544,0.0000018612,0.0000018684,0.0000018749, -0.0000018810,0.0000018812,0.0000018803,0.0000018757,0.0000018674, -0.0000018577,0.0000018487,0.0000018413,0.0000018365,0.0000018354, -0.0000018372,0.0000018410,0.0000018464,0.0000018530,0.0000018598, -0.0000018658,0.0000018708,0.0000018759,0.0000018816,0.0000018876, -0.0000018931,0.0000018966,0.0000018961,0.0000018942,0.0000018906, -0.0000018868,0.0000018851,0.0000018851,0.0000018853,0.0000018848, -0.0000018834,0.0000018810,0.0000018782,0.0000018765,0.0000018757, -0.0000018737,0.0000018697,0.0000018642,0.0000018601,0.0000018584, -0.0000018576,0.0000018568,0.0000018564,0.0000018562,0.0000018570, -0.0000018594,0.0000018612,0.0000018612,0.0000018604,0.0000018603, -0.0000018607,0.0000018612,0.0000018611,0.0000018612,0.0000018603, -0.0000018587,0.0000018580,0.0000018583,0.0000018586,0.0000018587, -0.0000018563,0.0000018524,0.0000018477,0.0000018437,0.0000018406, -0.0000018390,0.0000018387,0.0000018393,0.0000018401,0.0000018404, -0.0000018393,0.0000018380,0.0000018394,0.0000018428,0.0000018450, -0.0000018447,0.0000018434,0.0000018418,0.0000018401,0.0000018381, -0.0000018354,0.0000018314,0.0000018271,0.0000018232,0.0000018198, -0.0000018185,0.0000018174,0.0000018175,0.0000018193,0.0000018232, -0.0000018286,0.0000018345,0.0000018387,0.0000018402,0.0000018396, -0.0000018379,0.0000018362,0.0000018343,0.0000018314,0.0000018276, -0.0000018232,0.0000018185,0.0000018141,0.0000018106,0.0000018096, -0.0000018108,0.0000018129,0.0000018146,0.0000018159,0.0000018170, -0.0000018177,0.0000018177,0.0000018170,0.0000018152,0.0000018129, -0.0000018106,0.0000018085,0.0000018069,0.0000018056,0.0000018041, -0.0000018020,0.0000017996,0.0000017978,0.0000017968,0.0000017962, -0.0000017958,0.0000017953,0.0000017947,0.0000017942,0.0000017941, -0.0000017944,0.0000017952,0.0000017962,0.0000017975,0.0000017992, -0.0000018007,0.0000018019,0.0000018027,0.0000018030,0.0000018029, -0.0000018027,0.0000018022,0.0000018016,0.0000018005,0.0000017987, -0.0000017963,0.0000017934,0.0000017905,0.0000017878,0.0000017851, -0.0000017827,0.0000017804,0.0000017782,0.0000017761,0.0000017753, -0.0000017748,0.0000017741,0.0000017733,0.0000017730,0.0000017738, -0.0000017754,0.0000017775,0.0000017803,0.0000017839,0.0000017880, -0.0000017923,0.0000017961,0.0000017991,0.0000018014,0.0000018032, -0.0000018047,0.0000018058,0.0000018060,0.0000018055,0.0000018047, -0.0000018041,0.0000018051,0.0000018086,0.0000018149,0.0000018224, -0.0000018299,0.0000018367,0.0000018419,0.0000018462,0.0000018502, -0.0000018542,0.0000018586,0.0000018631,0.0000018683,0.0000018746, -0.0000018828,0.0000018926,0.0000019040,0.0000019160,0.0000019251, -0.0000019325,0.0000019320,0.0000019317,0.0000019267,0.0000019201, -0.0000019128,0.0000019055,0.0000018989,0.0000018947,0.0000018934, -0.0000018935,0.0000018932,0.0000018916,0.0000018898,0.0000018888, -0.0000018884,0.0000018883,0.0000018880,0.0000018863,0.0000018828, -0.0000018773,0.0000018708,0.0000018653,0.0000018616,0.0000018590, -0.0000018568,0.0000018552,0.0000018543,0.0000018540,0.0000018542, -0.0000018546,0.0000018551,0.0000018554,0.0000018552,0.0000018544, -0.0000018536,0.0000018529,0.0000018512,0.0000018475,0.0000018423, -0.0000018373,0.0000018337,0.0000018316,0.0000018303,0.0000018289, -0.0000018269,0.0000018247,0.0000018230,0.0000018222,0.0000018218, -0.0000018218,0.0000018223,0.0000018235,0.0000018248,0.0000018258, -0.0000018258,0.0000018250,0.0000018236,0.0000018216,0.0000018193, -0.0000018173,0.0000018157,0.0000018144,0.0000018138,0.0000018133, -0.0000018126,0.0000018115,0.0000018104,0.0000018097,0.0000018094, -0.0000018096,0.0000018107,0.0000018123,0.0000018142,0.0000018161, -0.0000018176,0.0000018187,0.0000018195,0.0000018199,0.0000018197, -0.0000018190,0.0000018177,0.0000018158,0.0000018135,0.0000018108, -0.0000018078,0.0000018045,0.0000018010,0.0000017976,0.0000017944, -0.0000017919,0.0000017905,0.0000017901,0.0000017906,0.0000017921, -0.0000017940,0.0000017959,0.0000017977,0.0000017994,0.0000018011, -0.0000018030,0.0000018049,0.0000018069,0.0000018087,0.0000018101, -0.0000018109,0.0000018116,0.0000018127,0.0000018137,0.0000018152, -0.0000018178,0.0000018205,0.0000018237,0.0000018271,0.0000018305, -0.0000018336,0.0000018367,0.0000018403,0.0000018441,0.0000018456, -0.0000018424,0.0000018370,0.0000018406,0.0000018561,0.0000018763, -0.0000018851,0.0000018805,0.0000018721,0.0000018747,0.0000018762, -0.0000018427,0.0000018055,0.0000017890,0.0000017784,0.0000017707, -0.0000017632,0.0000017557,0.0000017500,0.0000017472,0.0000017466, -0.0000017468,0.0000017479,0.0000017494,0.0000017508,0.0000017521, -0.0000017530,0.0000017539,0.0000017549,0.0000017557,0.0000017562, -0.0000017566,0.0000017568,0.0000017566,0.0000017560,0.0000017551, -0.0000017540,0.0000017529,0.0000017520,0.0000017503,0.0000017484, -0.0000017471,0.0000017469,0.0000017474,0.0000017466,0.0000017433, -0.0000017399,0.0000017372,0.0000017324,0.0000017261,0.0000017246, -0.0000017284,0.0000017337,0.0000017379,0.0000017406,0.0000017423, -0.0000017451,0.0000017501,0.0000017565,0.0000017612,0.0000017637, -0.0000017652,0.0000017672,0.0000017699,0.0000017724,0.0000017734, -0.0000017739,0.0000017726,0.0000017711,0.0000017703,0.0000017709, -0.0000017716,0.0000017735,0.0000017757,0.0000017779,0.0000017796, -0.0000017810,0.0000017823,0.0000017834,0.0000017842,0.0000017848, -0.0000017850,0.0000017847,0.0000017840,0.0000017826,0.0000017809, -0.0000017786,0.0000017760,0.0000017731,0.0000017702,0.0000017674, -0.0000017652,0.0000017642,0.0000017638,0.0000017636,0.0000017640, -0.0000017660,0.0000017691,0.0000017746,0.0000017822,0.0000017904, -0.0000017982,0.0000018060,0.0000018127,0.0000018181,0.0000018225, -0.0000018259,0.0000018272,0.0000018235,0.0000018172,0.0000018131, -0.0000018133,0.0000018156,0.0000018162,0.0000018139,0.0000018104, -0.0000018088,0.0000018075,0.0000018079,0.0000018099,0.0000018123, -0.0000018145,0.0000018164,0.0000018180,0.0000018195,0.0000018208, -0.0000018218,0.0000018212,0.0000018200,0.0000018188,0.0000018192, -0.0000018218,0.0000018252,0.0000018301,0.0000018350,0.0000018362, -0.0000018381,0.0000018371,0.0000018352,0.0000018330,0.0000018311, -0.0000018295,0.0000018284,0.0000018278,0.0000018275,0.0000018273, -0.0000018270,0.0000018265,0.0000018267,0.0000018279,0.0000018294, -0.0000018306,0.0000018318,0.0000018328,0.0000018336,0.0000018344, -0.0000018354,0.0000018361,0.0000018366,0.0000018372,0.0000018377, -0.0000018378,0.0000018376,0.0000018376,0.0000018385,0.0000018394, -0.0000018404,0.0000018503,0.0000018518,0.0000018533,0.0000018550, -0.0000018568,0.0000018586,0.0000018606,0.0000018627,0.0000018645, -0.0000018662,0.0000018677,0.0000018694,0.0000018710,0.0000018720, -0.0000018723,0.0000018724,0.0000018722,0.0000018719,0.0000018716, -0.0000018717,0.0000018722,0.0000018728,0.0000018732,0.0000018732, -0.0000018727,0.0000018716,0.0000018700,0.0000018672,0.0000018640, -0.0000018607,0.0000018573,0.0000018541,0.0000018517,0.0000018501, -0.0000018490,0.0000018481,0.0000018477,0.0000018479,0.0000018483, -0.0000018486,0.0000018489,0.0000018486,0.0000018478,0.0000018467, -0.0000018454,0.0000018434,0.0000018404,0.0000018367,0.0000018332, -0.0000018304,0.0000018281,0.0000018263,0.0000018249,0.0000018238, -0.0000018223,0.0000018199,0.0000018161,0.0000018111,0.0000018060, -0.0000018019,0.0000018000,0.0000017999,0.0000018005,0.0000018015, -0.0000018027,0.0000018040,0.0000018050,0.0000018058,0.0000018059, -0.0000018060,0.0000018062,0.0000018068,0.0000018080,0.0000018092, -0.0000018094,0.0000018075,0.0000018029,0.0000017962,0.0000017899, -0.0000017867,0.0000017882,0.0000017957,0.0000018057,0.0000018134, -0.0000018161,0.0000018152,0.0000018140,0.0000018142,0.0000018158, -0.0000018180,0.0000018203,0.0000018225,0.0000018242,0.0000018250, -0.0000018240,0.0000018205,0.0000018152,0.0000018091,0.0000018021, -0.0000017943,0.0000017872,0.0000017826,0.0000017817,0.0000017828, -0.0000017849,0.0000017872,0.0000017884,0.0000017881,0.0000017866, -0.0000017846,0.0000017830,0.0000017820,0.0000017805,0.0000017778, -0.0000017743,0.0000017708,0.0000017683,0.0000017677,0.0000017687, -0.0000017711,0.0000017748,0.0000017791,0.0000017835,0.0000017879, -0.0000017923,0.0000017963,0.0000018001,0.0000018037,0.0000018071, -0.0000018102,0.0000018124,0.0000018130,0.0000018118,0.0000018095, -0.0000018064,0.0000018026,0.0000017987,0.0000017949,0.0000017916, -0.0000017893,0.0000017883,0.0000017883,0.0000017881,0.0000017876, -0.0000017871,0.0000017866,0.0000017864,0.0000017864,0.0000017867, -0.0000017881,0.0000017909,0.0000017942,0.0000017967,0.0000017984, -0.0000018000,0.0000018009,0.0000018010,0.0000018003,0.0000017989, -0.0000017969,0.0000017940,0.0000017901,0.0000017856,0.0000017812, -0.0000017777,0.0000017747,0.0000017713,0.0000017668,0.0000017612, -0.0000017553,0.0000017504,0.0000017474,0.0000017466,0.0000017470, -0.0000017487,0.0000017512,0.0000017544,0.0000017577,0.0000017612, -0.0000017648,0.0000017682,0.0000017713,0.0000017740,0.0000017759, -0.0000017771,0.0000017771,0.0000017766,0.0000017760,0.0000017755, -0.0000017748,0.0000017739,0.0000017727,0.0000017712,0.0000017692, -0.0000017661,0.0000017620,0.0000017574,0.0000017530,0.0000017486, -0.0000017443,0.0000017401,0.0000017362,0.0000017329,0.0000017305, -0.0000017296,0.0000017298,0.0000017305,0.0000017323,0.0000017350, -0.0000017383,0.0000017421,0.0000017461,0.0000017502,0.0000017542, -0.0000017579,0.0000017608,0.0000017627,0.0000017640,0.0000017649, -0.0000017652,0.0000017654,0.0000017661,0.0000017676,0.0000017696, -0.0000017727,0.0000017766,0.0000017802,0.0000017834,0.0000017859, -0.0000017870,0.0000017872,0.0000017858,0.0000017826,0.0000017779, -0.0000017719,0.0000017647,0.0000017570,0.0000017490,0.0000017413, -0.0000017347,0.0000017294,0.0000017251,0.0000017227,0.0000017221, -0.0000017233,0.0000017261,0.0000017302,0.0000017361,0.0000017434, -0.0000017520,0.0000017631,0.0000017774,0.0000017911,0.0000018000, -0.0000018018,0.0000018027,0.0000018069,0.0000018140,0.0000018197, -0.0000018196,0.0000018121,0.0000017984,0.0000017842,0.0000017722, -0.0000017691,0.0000017693,0.0000017702,0.0000017704,0.0000017696, -0.0000017681,0.0000017662,0.0000017646,0.0000017642,0.0000017635, -0.0000017607,0.0000017531,0.0000017434,0.0000017365,0.0000017337, -0.0000017356,0.0000017381,0.0000017376,0.0000017343,0.0000017313, -0.0000017334,0.0000017445,0.0000017644,0.0000017855,0.0000017990, -0.0000018055,0.0000018116,0.0000018222,0.0000018380,0.0000018560, -0.0000018717,0.0000018843,0.0000018947,0.0000019037,0.0000019111, -0.0000019169,0.0000019207,0.0000019230,0.0000019243,0.0000019253, -0.0000019264,0.0000019274,0.0000019283,0.0000019291,0.0000019299, -0.0000019306,0.0000019312,0.0000019316,0.0000019321,0.0000019327, -0.0000019335,0.0000019344,0.0000019353,0.0000019361,0.0000019370, -0.0000019380,0.0000019389,0.0000019397,0.0000019404,0.0000019411, -0.0000019418,0.0000019429,0.0000019444,0.0000019460,0.0000019474, -0.0000019489,0.0000019504,0.0000019516,0.0000019524,0.0000019527, -0.0000019527,0.0000019523,0.0000019515,0.0000019503,0.0000019486, -0.0000019466,0.0000019442,0.0000019416,0.0000019391,0.0000019363, -0.0000019337,0.0000019310,0.0000019287,0.0000019266,0.0000019243, -0.0000019214,0.0000019179,0.0000019136,0.0000019081,0.0000019014, -0.0000018935,0.0000018844,0.0000018741,0.0000018632,0.0000018516, -0.0000018395,0.0000018266,0.0000018128,0.0000017984,0.0000017839, -0.0000017701,0.0000017587,0.0000017502,0.0000017444,0.0000017409, -0.0000017392,0.0000017395,0.0000017399,0.0000017410,0.0000017428, -0.0000017451,0.0000017475,0.0000017492,0.0000017503,0.0000017505, -0.0000017493,0.0000017472,0.0000017447,0.0000017423,0.0000017402, -0.0000017388,0.0000017380,0.0000017379,0.0000017384,0.0000017388, -0.0000017398,0.0000017409,0.0000017418,0.0000017424,0.0000017424, -0.0000017424,0.0000017417,0.0000017408,0.0000017412,0.0000017436, -0.0000017480,0.0000017535,0.0000017585,0.0000017613,0.0000017615, -0.0000017604,0.0000017569,0.0000017534,0.0000017495,0.0000017476, -0.0000017466,0.0000017465,0.0000017469,0.0000017485,0.0000017508, -0.0000017530,0.0000017546,0.0000017558,0.0000017565,0.0000017569, -0.0000017569,0.0000017563,0.0000017555,0.0000017545,0.0000017533, -0.0000017520,0.0000017509,0.0000017498,0.0000017490,0.0000017486, -0.0000017482,0.0000017477,0.0000017471,0.0000017466,0.0000017466, -0.0000017472,0.0000017484,0.0000017498,0.0000017512,0.0000017524, -0.0000017537,0.0000017548,0.0000017556,0.0000017562,0.0000017567, -0.0000017571,0.0000017575,0.0000017578,0.0000017579,0.0000017582, -0.0000017583,0.0000017584,0.0000017585,0.0000017590,0.0000017591, -0.0000017588,0.0000017587,0.0000017588,0.0000017587,0.0000017593, -0.0000017607,0.0000017610,0.0000017623,0.0000017638,0.0000017644, -0.0000017650,0.0000017664,0.0000017673,0.0000017682,0.0000017692, -0.0000017691,0.0000017689,0.0000017681,0.0000017664,0.0000017645, -0.0000017614,0.0000017573,0.0000017530,0.0000017485,0.0000017438, -0.0000017401,0.0000017379,0.0000017370,0.0000017374,0.0000017385, -0.0000017396,0.0000017408,0.0000017412,0.0000017411,0.0000017405, -0.0000017392,0.0000017371,0.0000017346,0.0000017317,0.0000017284, -0.0000017250,0.0000017219,0.0000017199,0.0000017194,0.0000017203, -0.0000017214,0.0000017246,0.0000017284,0.0000017323,0.0000017362, -0.0000017392,0.0000017413,0.0000017426,0.0000017431,0.0000017432, -0.0000017437,0.0000017447,0.0000017456,0.0000017467,0.0000017475, -0.0000017473,0.0000017481,0.0000017503,0.0000017533,0.0000017578, -0.0000017643,0.0000017733,0.0000017843,0.0000017971,0.0000018108, -0.0000018243,0.0000018375,0.0000018500,0.0000018616,0.0000018722, -0.0000018812,0.0000018886,0.0000018942,0.0000018985,0.0000019016, -0.0000019039,0.0000019057,0.0000019071,0.0000019083,0.0000019097, -0.0000019118,0.0000019142,0.0000019163,0.0000019182,0.0000019198, -0.0000019211,0.0000019222,0.0000019235,0.0000019250,0.0000019262, -0.0000019273,0.0000019286,0.0000019300,0.0000019315,0.0000019332, -0.0000019357,0.0000019385,0.0000019416,0.0000019452,0.0000019488, -0.0000019520,0.0000019546,0.0000019567,0.0000019581,0.0000019588, -0.0000019591,0.0000019593,0.0000019598,0.0000019613,0.0000019635, -0.0000019663,0.0000019693,0.0000019721,0.0000019746,0.0000019768, -0.0000019789,0.0000019806,0.0000019819,0.0000019830,0.0000019838, -0.0000019839,0.0000019832,0.0000019816,0.0000019796,0.0000019781, -0.0000019780,0.0000019786,0.0000019789,0.0000019789,0.0000019788, -0.0000019789,0.0000019791,0.0000019789,0.0000019787,0.0000019786, -0.0000019794,0.0000019814,0.0000019840,0.0000019863,0.0000019882, -0.0000019894,0.0000019903,0.0000019904,0.0000019897,0.0000019881, -0.0000019854,0.0000019821,0.0000019787,0.0000019750,0.0000019713, -0.0000019683,0.0000019669,0.0000019674,0.0000019698,0.0000019732, -0.0000019767,0.0000019798,0.0000019822,0.0000019837,0.0000019842, -0.0000019845,0.0000019843,0.0000019833,0.0000019816,0.0000019795, -0.0000019773,0.0000019750,0.0000019727,0.0000019705,0.0000019685, -0.0000019670,0.0000019667,0.0000019671,0.0000019682,0.0000019698, -0.0000019716,0.0000019729,0.0000019736,0.0000019740,0.0000019742, -0.0000019744,0.0000019749,0.0000019757,0.0000019769,0.0000019785, -0.0000019803,0.0000019819,0.0000019831,0.0000019840,0.0000019845, -0.0000019843,0.0000019840,0.0000019835,0.0000019817,0.0000019794, -0.0000019776,0.0000019762,0.0000019741,0.0000019711,0.0000019681, -0.0000019653,0.0000019627,0.0000019607,0.0000019599,0.0000019603, -0.0000019615,0.0000019626,0.0000019626,0.0000019623,0.0000019620, -0.0000019623,0.0000019625,0.0000019624,0.0000019620,0.0000019620, -0.0000019624,0.0000019629,0.0000019626,0.0000019623,0.0000019615, -0.0000019606,0.0000019592,0.0000019573,0.0000019552,0.0000019528, -0.0000019504,0.0000019486,0.0000019482,0.0000019493,0.0000019514, -0.0000019532,0.0000019535,0.0000019535,0.0000019529,0.0000019510, -0.0000019480,0.0000019441,0.0000019393,0.0000019343,0.0000019305, -0.0000019280,0.0000019263,0.0000019245,0.0000019223,0.0000019200, -0.0000019179,0.0000019164,0.0000019149,0.0000019135,0.0000019119, -0.0000019101,0.0000019083,0.0000019059,0.0000019035,0.0000019020, -0.0000019017,0.0000019026,0.0000019044,0.0000019062,0.0000019072, -0.0000019069,0.0000019056,0.0000019035,0.0000019007,0.0000018978, -0.0000018963,0.0000018965,0.0000018973,0.0000018982,0.0000018989, -0.0000018991,0.0000018985,0.0000018975,0.0000018966,0.0000018954, -0.0000018947,0.0000018940,0.0000018933,0.0000018934,0.0000018948, -0.0000018970,0.0000018996,0.0000019021,0.0000019046,0.0000019071, -0.0000019089,0.0000019099,0.0000019106,0.0000019111,0.0000019111, -0.0000019118,0.0000019132,0.0000019137,0.0000019150,0.0000019142, -0.0000019137,0.0000019112,0.0000019066,0.0000019004,0.0000018936, -0.0000018878,0.0000018834,0.0000018842,0.0000018858,0.0000018880, -0.0000018892,0.0000018901,0.0000018898,0.0000018880,0.0000018855, -0.0000018818,0.0000018777,0.0000018737,0.0000018705,0.0000018680, -0.0000018660,0.0000018639,0.0000018616,0.0000018579,0.0000018533, -0.0000018488,0.0000018466,0.0000018450,0.0000018448,0.0000018473, -0.0000018533,0.0000018612,0.0000018690,0.0000018763,0.0000018768, -0.0000018769,0.0000018728,0.0000018658,0.0000018576,0.0000018493, -0.0000018430,0.0000018386,0.0000018391,0.0000018396,0.0000018425, -0.0000018472,0.0000018519,0.0000018561,0.0000018591,0.0000018620, -0.0000018668,0.0000018740,0.0000018811,0.0000018860,0.0000018892, -0.0000018886,0.0000018871,0.0000018870,0.0000018882,0.0000018891, -0.0000018891,0.0000018879,0.0000018856,0.0000018823,0.0000018791, -0.0000018772,0.0000018759,0.0000018740,0.0000018713,0.0000018686, -0.0000018668,0.0000018649,0.0000018620,0.0000018583,0.0000018555, -0.0000018544,0.0000018546,0.0000018555,0.0000018552,0.0000018550, -0.0000018559,0.0000018574,0.0000018582,0.0000018585,0.0000018586, -0.0000018571,0.0000018550,0.0000018537,0.0000018537,0.0000018548, -0.0000018558,0.0000018541,0.0000018503,0.0000018456,0.0000018412, -0.0000018374,0.0000018344,0.0000018329,0.0000018330,0.0000018344, -0.0000018358,0.0000018359,0.0000018352,0.0000018366,0.0000018409, -0.0000018445,0.0000018459,0.0000018453,0.0000018441,0.0000018429, -0.0000018414,0.0000018395,0.0000018360,0.0000018314,0.0000018265, -0.0000018223,0.0000018194,0.0000018172,0.0000018148,0.0000018141, -0.0000018150,0.0000018184,0.0000018243,0.0000018312,0.0000018364, -0.0000018372,0.0000018353,0.0000018323,0.0000018292,0.0000018260, -0.0000018224,0.0000018180,0.0000018135,0.0000018094,0.0000018068, -0.0000018059,0.0000018069,0.0000018086,0.0000018096,0.0000018103, -0.0000018108,0.0000018114,0.0000018117,0.0000018112,0.0000018099, -0.0000018087,0.0000018078,0.0000018069,0.0000018062,0.0000018055, -0.0000018042,0.0000018020,0.0000017996,0.0000017977,0.0000017964, -0.0000017953,0.0000017943,0.0000017928,0.0000017912,0.0000017901, -0.0000017895,0.0000017898,0.0000017908,0.0000017924,0.0000017946, -0.0000017970,0.0000017991,0.0000018005,0.0000018016,0.0000018028, -0.0000018036,0.0000018039,0.0000018041,0.0000018039,0.0000018031, -0.0000018014,0.0000017988,0.0000017955,0.0000017920,0.0000017887, -0.0000017861,0.0000017840,0.0000017820,0.0000017798,0.0000017777, -0.0000017760,0.0000017745,0.0000017730,0.0000017722,0.0000017715, -0.0000017715,0.0000017724,0.0000017736,0.0000017752,0.0000017775, -0.0000017806,0.0000017843,0.0000017885,0.0000017927,0.0000017964, -0.0000017992,0.0000018016,0.0000018035,0.0000018047,0.0000018047, -0.0000018041,0.0000018023,0.0000018002,0.0000018009,0.0000018046, -0.0000018115,0.0000018203,0.0000018289,0.0000018360,0.0000018411, -0.0000018448,0.0000018483,0.0000018522,0.0000018569,0.0000018613, -0.0000018654,0.0000018699,0.0000018761,0.0000018847,0.0000018965, -0.0000019101,0.0000019213,0.0000019305,0.0000019316,0.0000019310, -0.0000019256,0.0000019192,0.0000019128,0.0000019062,0.0000019003, -0.0000018967,0.0000018957,0.0000018957,0.0000018945,0.0000018921, -0.0000018896,0.0000018883,0.0000018876,0.0000018876,0.0000018874, -0.0000018858,0.0000018824,0.0000018776,0.0000018724,0.0000018677, -0.0000018639,0.0000018611,0.0000018592,0.0000018575,0.0000018557, -0.0000018541,0.0000018534,0.0000018535,0.0000018541,0.0000018544, -0.0000018541,0.0000018530,0.0000018518,0.0000018502,0.0000018475, -0.0000018434,0.0000018385,0.0000018337,0.0000018302,0.0000018275, -0.0000018250,0.0000018226,0.0000018207,0.0000018196,0.0000018190, -0.0000018188,0.0000018188,0.0000018195,0.0000018210,0.0000018225, -0.0000018231,0.0000018232,0.0000018227,0.0000018214,0.0000018194, -0.0000018173,0.0000018157,0.0000018142,0.0000018131,0.0000018124, -0.0000018119,0.0000018112,0.0000018104,0.0000018098,0.0000018095, -0.0000018096,0.0000018106,0.0000018122,0.0000018143,0.0000018162, -0.0000018177,0.0000018188,0.0000018197,0.0000018202,0.0000018202, -0.0000018197,0.0000018188,0.0000018174,0.0000018156,0.0000018134, -0.0000018108,0.0000018078,0.0000018043,0.0000018005,0.0000017968, -0.0000017937,0.0000017915,0.0000017904,0.0000017904,0.0000017914, -0.0000017928,0.0000017943,0.0000017956,0.0000017970,0.0000017986, -0.0000018007,0.0000018028,0.0000018047,0.0000018062,0.0000018071, -0.0000018081,0.0000018096,0.0000018116,0.0000018143,0.0000018184, -0.0000018234,0.0000018287,0.0000018337,0.0000018376,0.0000018400, -0.0000018413,0.0000018425,0.0000018447,0.0000018465,0.0000018445, -0.0000018380,0.0000018374,0.0000018510,0.0000018717,0.0000018843, -0.0000018827,0.0000018730,0.0000018712,0.0000018787,0.0000018633, -0.0000018194,0.0000017939,0.0000017809,0.0000017713,0.0000017622, -0.0000017534,0.0000017481,0.0000017460,0.0000017471,0.0000017486, -0.0000017505,0.0000017524,0.0000017537,0.0000017543,0.0000017547, -0.0000017549,0.0000017553,0.0000017559,0.0000017566,0.0000017571, -0.0000017572,0.0000017569,0.0000017560,0.0000017545,0.0000017528, -0.0000017511,0.0000017496,0.0000017484,0.0000017478,0.0000017475, -0.0000017481,0.0000017488,0.0000017482,0.0000017448,0.0000017407, -0.0000017378,0.0000017329,0.0000017253,0.0000017221,0.0000017258, -0.0000017324,0.0000017364,0.0000017379,0.0000017400,0.0000017457, -0.0000017537,0.0000017598,0.0000017627,0.0000017645,0.0000017671, -0.0000017695,0.0000017702,0.0000017702,0.0000017685,0.0000017674, -0.0000017672,0.0000017686,0.0000017706,0.0000017732,0.0000017757, -0.0000017782,0.0000017803,0.0000017820,0.0000017833,0.0000017846, -0.0000017859,0.0000017871,0.0000017880,0.0000017886,0.0000017887, -0.0000017884,0.0000017876,0.0000017863,0.0000017846,0.0000017825, -0.0000017799,0.0000017769,0.0000017737,0.0000017704,0.0000017674, -0.0000017651,0.0000017638,0.0000017637,0.0000017641,0.0000017651, -0.0000017674,0.0000017699,0.0000017741,0.0000017801,0.0000017874, -0.0000017954,0.0000018030,0.0000018094,0.0000018145,0.0000018186, -0.0000018223,0.0000018241,0.0000018220,0.0000018164,0.0000018118, -0.0000018113,0.0000018134,0.0000018154,0.0000018150,0.0000018122, -0.0000018087,0.0000018051,0.0000018030,0.0000018029,0.0000018040, -0.0000018057,0.0000018081,0.0000018104,0.0000018131,0.0000018162, -0.0000018182,0.0000018189,0.0000018175,0.0000018151,0.0000018126, -0.0000018115,0.0000018122,0.0000018170,0.0000018239,0.0000018312, -0.0000018373,0.0000018386,0.0000018402,0.0000018387,0.0000018363, -0.0000018338,0.0000018319,0.0000018307,0.0000018300,0.0000018294, -0.0000018291,0.0000018292,0.0000018301,0.0000018317,0.0000018330, -0.0000018341,0.0000018352,0.0000018361,0.0000018369,0.0000018379, -0.0000018389,0.0000018397,0.0000018404,0.0000018411,0.0000018418, -0.0000018422,0.0000018427,0.0000018444,0.0000018465,0.0000018486, -0.0000018593,0.0000018609,0.0000018624,0.0000018638,0.0000018652, -0.0000018661,0.0000018666,0.0000018669,0.0000018672,0.0000018673, -0.0000018674,0.0000018677,0.0000018685,0.0000018695,0.0000018702, -0.0000018703,0.0000018700,0.0000018691,0.0000018682,0.0000018677, -0.0000018675,0.0000018677,0.0000018684,0.0000018694,0.0000018707, -0.0000018719,0.0000018723,0.0000018722,0.0000018715,0.0000018698, -0.0000018676,0.0000018649,0.0000018624,0.0000018601,0.0000018580, -0.0000018558,0.0000018536,0.0000018521,0.0000018513,0.0000018509, -0.0000018508,0.0000018506,0.0000018502,0.0000018497,0.0000018489, -0.0000018476,0.0000018453,0.0000018417,0.0000018374,0.0000018334, -0.0000018302,0.0000018275,0.0000018254,0.0000018239,0.0000018230, -0.0000018221,0.0000018209,0.0000018185,0.0000018148,0.0000018106, -0.0000018071,0.0000018051,0.0000018042,0.0000018038,0.0000018038, -0.0000018041,0.0000018052,0.0000018064,0.0000018078,0.0000018090, -0.0000018096,0.0000018099,0.0000018101,0.0000018105,0.0000018110, -0.0000018106,0.0000018082,0.0000018031,0.0000017959,0.0000017883, -0.0000017843,0.0000017839,0.0000017897,0.0000017996,0.0000018087, -0.0000018134,0.0000018136,0.0000018139,0.0000018147,0.0000018167, -0.0000018187,0.0000018207,0.0000018228,0.0000018250,0.0000018264, -0.0000018257,0.0000018223,0.0000018169,0.0000018105,0.0000018037, -0.0000017969,0.0000017908,0.0000017865,0.0000017849,0.0000017852, -0.0000017865,0.0000017884,0.0000017892,0.0000017884,0.0000017864, -0.0000017840,0.0000017822,0.0000017810,0.0000017799,0.0000017786, -0.0000017767,0.0000017746,0.0000017728,0.0000017720,0.0000017726, -0.0000017742,0.0000017760,0.0000017782,0.0000017808,0.0000017840, -0.0000017877,0.0000017920,0.0000017963,0.0000018002,0.0000018035, -0.0000018063,0.0000018081,0.0000018089,0.0000018085,0.0000018070, -0.0000018048,0.0000018023,0.0000017995,0.0000017968,0.0000017945, -0.0000017930,0.0000017922,0.0000017913,0.0000017901,0.0000017891, -0.0000017883,0.0000017877,0.0000017876,0.0000017877,0.0000017889, -0.0000017913,0.0000017939,0.0000017960,0.0000017973,0.0000017984, -0.0000017994,0.0000017997,0.0000017990,0.0000017972,0.0000017942, -0.0000017905,0.0000017864,0.0000017824,0.0000017791,0.0000017762, -0.0000017725,0.0000017674,0.0000017608,0.0000017538,0.0000017475, -0.0000017431,0.0000017413,0.0000017414,0.0000017430,0.0000017455, -0.0000017486,0.0000017519,0.0000017552,0.0000017584,0.0000017615, -0.0000017645,0.0000017676,0.0000017702,0.0000017723,0.0000017737, -0.0000017744,0.0000017743,0.0000017740,0.0000017737,0.0000017735, -0.0000017732,0.0000017728,0.0000017724,0.0000017720,0.0000017712, -0.0000017696,0.0000017674,0.0000017646,0.0000017614,0.0000017578, -0.0000017538,0.0000017491,0.0000017443,0.0000017399,0.0000017360, -0.0000017334,0.0000017326,0.0000017335,0.0000017360,0.0000017388, -0.0000017417,0.0000017448,0.0000017479,0.0000017509,0.0000017533, -0.0000017549,0.0000017557,0.0000017560,0.0000017561,0.0000017560, -0.0000017564,0.0000017578,0.0000017601,0.0000017636,0.0000017681, -0.0000017723,0.0000017765,0.0000017805,0.0000017838,0.0000017862, -0.0000017870,0.0000017869,0.0000017853,0.0000017823,0.0000017776, -0.0000017710,0.0000017632,0.0000017544,0.0000017457,0.0000017384, -0.0000017325,0.0000017276,0.0000017243,0.0000017225,0.0000017222, -0.0000017229,0.0000017252,0.0000017300,0.0000017370,0.0000017441, -0.0000017516,0.0000017613,0.0000017740,0.0000017871,0.0000017967, -0.0000017994,0.0000018002,0.0000018038,0.0000018103,0.0000018163, -0.0000018183,0.0000018134,0.0000018011,0.0000017871,0.0000017747, -0.0000017692,0.0000017684,0.0000017684,0.0000017679,0.0000017667, -0.0000017647,0.0000017625,0.0000017611,0.0000017607,0.0000017590, -0.0000017545,0.0000017464,0.0000017370,0.0000017323,0.0000017313, -0.0000017329,0.0000017341,0.0000017327,0.0000017295,0.0000017276, -0.0000017314,0.0000017436,0.0000017627,0.0000017827,0.0000017973, -0.0000018053,0.0000018115,0.0000018213,0.0000018360,0.0000018531, -0.0000018687,0.0000018813,0.0000018913,0.0000018995,0.0000019064, -0.0000019124,0.0000019174,0.0000019211,0.0000019238,0.0000019255, -0.0000019265,0.0000019271,0.0000019273,0.0000019274,0.0000019274, -0.0000019273,0.0000019272,0.0000019272,0.0000019275,0.0000019280, -0.0000019286,0.0000019291,0.0000019296,0.0000019302,0.0000019308, -0.0000019315,0.0000019322,0.0000019328,0.0000019335,0.0000019344, -0.0000019357,0.0000019372,0.0000019388,0.0000019405,0.0000019424, -0.0000019439,0.0000019449,0.0000019454,0.0000019456,0.0000019454, -0.0000019450,0.0000019441,0.0000019428,0.0000019411,0.0000019388, -0.0000019363,0.0000019336,0.0000019306,0.0000019276,0.0000019247, -0.0000019220,0.0000019188,0.0000019148,0.0000019100,0.0000019043, -0.0000018973,0.0000018890,0.0000018791,0.0000018685,0.0000018572, -0.0000018454,0.0000018333,0.0000018203,0.0000018065,0.0000017921, -0.0000017780,0.0000017655,0.0000017556,0.0000017484,0.0000017440, -0.0000017414,0.0000017399,0.0000017394,0.0000017398,0.0000017414, -0.0000017433,0.0000017450,0.0000017465,0.0000017470,0.0000017475, -0.0000017467,0.0000017450,0.0000017430,0.0000017408,0.0000017391, -0.0000017377,0.0000017369,0.0000017367,0.0000017369,0.0000017373, -0.0000017379,0.0000017388,0.0000017398,0.0000017408,0.0000017415, -0.0000017418,0.0000017415,0.0000017416,0.0000017426,0.0000017455, -0.0000017504,0.0000017569,0.0000017630,0.0000017678,0.0000017688, -0.0000017667,0.0000017628,0.0000017561,0.0000017500,0.0000017446, -0.0000017407,0.0000017394,0.0000017395,0.0000017409,0.0000017427, -0.0000017449,0.0000017476,0.0000017503,0.0000017523,0.0000017535, -0.0000017540,0.0000017542,0.0000017540,0.0000017536,0.0000017531, -0.0000017527,0.0000017527,0.0000017529,0.0000017528,0.0000017533, -0.0000017541,0.0000017551,0.0000017562,0.0000017573,0.0000017580, -0.0000017583,0.0000017579,0.0000017574,0.0000017577,0.0000017581, -0.0000017588,0.0000017596,0.0000017604,0.0000017613,0.0000017623, -0.0000017632,0.0000017639,0.0000017645,0.0000017650,0.0000017654, -0.0000017656,0.0000017655,0.0000017654,0.0000017655,0.0000017654, -0.0000017655,0.0000017656,0.0000017656,0.0000017654,0.0000017647, -0.0000017643,0.0000017640,0.0000017639,0.0000017640,0.0000017640, -0.0000017648,0.0000017653,0.0000017655,0.0000017659,0.0000017663, -0.0000017674,0.0000017686,0.0000017695,0.0000017703,0.0000017713, -0.0000017715,0.0000017710,0.0000017703,0.0000017688,0.0000017661, -0.0000017627,0.0000017588,0.0000017544,0.0000017501,0.0000017466, -0.0000017438,0.0000017418,0.0000017407,0.0000017404,0.0000017408, -0.0000017411,0.0000017416,0.0000017419,0.0000017421,0.0000017419, -0.0000017419,0.0000017411,0.0000017396,0.0000017374,0.0000017340, -0.0000017310,0.0000017278,0.0000017252,0.0000017237,0.0000017234, -0.0000017242,0.0000017269,0.0000017287,0.0000017316,0.0000017348, -0.0000017372,0.0000017392,0.0000017406,0.0000017425,0.0000017442, -0.0000017456,0.0000017469,0.0000017474,0.0000017470,0.0000017459, -0.0000017444,0.0000017429,0.0000017412,0.0000017397,0.0000017390, -0.0000017412,0.0000017456,0.0000017517,0.0000017597,0.0000017695, -0.0000017812,0.0000017944,0.0000018086,0.0000018234,0.0000018377, -0.0000018511,0.0000018634,0.0000018745,0.0000018839,0.0000018913, -0.0000018970,0.0000019011,0.0000019041,0.0000019071,0.0000019096, -0.0000019114,0.0000019125,0.0000019133,0.0000019141,0.0000019149, -0.0000019159,0.0000019171,0.0000019183,0.0000019195,0.0000019207, -0.0000019218,0.0000019230,0.0000019244,0.0000019261,0.0000019281, -0.0000019306,0.0000019335,0.0000019369,0.0000019407,0.0000019441, -0.0000019472,0.0000019501,0.0000019521,0.0000019532,0.0000019536, -0.0000019537,0.0000019542,0.0000019555,0.0000019575,0.0000019598, -0.0000019624,0.0000019651,0.0000019675,0.0000019695,0.0000019713, -0.0000019730,0.0000019742,0.0000019748,0.0000019750,0.0000019748, -0.0000019741,0.0000019735,0.0000019736,0.0000019744,0.0000019754, -0.0000019764,0.0000019768,0.0000019769,0.0000019766,0.0000019762, -0.0000019756,0.0000019746,0.0000019733,0.0000019727,0.0000019736, -0.0000019758,0.0000019788,0.0000019819,0.0000019848,0.0000019876, -0.0000019897,0.0000019904,0.0000019902,0.0000019882,0.0000019854, -0.0000019825,0.0000019790,0.0000019748,0.0000019707,0.0000019679, -0.0000019678,0.0000019688,0.0000019708,0.0000019734,0.0000019760, -0.0000019785,0.0000019805,0.0000019815,0.0000019819,0.0000019816, -0.0000019803,0.0000019784,0.0000019763,0.0000019739,0.0000019716, -0.0000019697,0.0000019685,0.0000019678,0.0000019679,0.0000019686, -0.0000019698,0.0000019712,0.0000019726,0.0000019740,0.0000019750, -0.0000019755,0.0000019753,0.0000019749,0.0000019750,0.0000019755, -0.0000019759,0.0000019764,0.0000019774,0.0000019784,0.0000019794, -0.0000019807,0.0000019818,0.0000019825,0.0000019833,0.0000019840, -0.0000019839,0.0000019826,0.0000019808,0.0000019792,0.0000019778, -0.0000019755,0.0000019725,0.0000019699,0.0000019671,0.0000019646, -0.0000019624,0.0000019607,0.0000019601,0.0000019595,0.0000019584, -0.0000019576,0.0000019578,0.0000019589,0.0000019602,0.0000019615, -0.0000019622,0.0000019627,0.0000019627,0.0000019622,0.0000019612, -0.0000019603,0.0000019600,0.0000019596,0.0000019590,0.0000019580, -0.0000019565,0.0000019548,0.0000019530,0.0000019507,0.0000019484, -0.0000019469,0.0000019466,0.0000019472,0.0000019485,0.0000019503, -0.0000019518,0.0000019515,0.0000019509,0.0000019489,0.0000019461, -0.0000019429,0.0000019395,0.0000019362,0.0000019328,0.0000019294, -0.0000019255,0.0000019214,0.0000019181,0.0000019163,0.0000019154, -0.0000019153,0.0000019155,0.0000019166,0.0000019169,0.0000019156, -0.0000019135,0.0000019113,0.0000019098,0.0000019092,0.0000019100, -0.0000019119,0.0000019140,0.0000019152,0.0000019153,0.0000019144, -0.0000019122,0.0000019091,0.0000019058,0.0000019034,0.0000019023, -0.0000019022,0.0000019023,0.0000019023,0.0000019018,0.0000019007, -0.0000018994,0.0000018981,0.0000018964,0.0000018947,0.0000018934, -0.0000018927,0.0000018929,0.0000018930,0.0000018936,0.0000018947, -0.0000018965,0.0000018987,0.0000019008,0.0000019023,0.0000019031, -0.0000019037,0.0000019040,0.0000019043,0.0000019051,0.0000019057, -0.0000019069,0.0000019084,0.0000019092,0.0000019100,0.0000019093, -0.0000019072,0.0000019046,0.0000018998,0.0000018947,0.0000018913, -0.0000018901,0.0000018883,0.0000018876,0.0000018873,0.0000018857, -0.0000018846,0.0000018837,0.0000018826,0.0000018810,0.0000018794, -0.0000018781,0.0000018763,0.0000018742,0.0000018716,0.0000018686, -0.0000018652,0.0000018621,0.0000018588,0.0000018548,0.0000018502, -0.0000018446,0.0000018424,0.0000018409,0.0000018435,0.0000018486, -0.0000018547,0.0000018605,0.0000018661,0.0000018704,0.0000018694, -0.0000018690,0.0000018656,0.0000018599,0.0000018543,0.0000018493, -0.0000018447,0.0000018437,0.0000018423,0.0000018427,0.0000018444, -0.0000018463,0.0000018491,0.0000018523,0.0000018562,0.0000018603, -0.0000018652,0.0000018708,0.0000018754,0.0000018785,0.0000018814, -0.0000018853,0.0000018884,0.0000018903,0.0000018905,0.0000018888, -0.0000018861,0.0000018822,0.0000018787,0.0000018770,0.0000018768, -0.0000018762,0.0000018756,0.0000018748,0.0000018725,0.0000018684, -0.0000018630,0.0000018580,0.0000018551,0.0000018536,0.0000018526, -0.0000018515,0.0000018513,0.0000018527,0.0000018541,0.0000018548, -0.0000018553,0.0000018554,0.0000018540,0.0000018520,0.0000018506, -0.0000018507,0.0000018526,0.0000018537,0.0000018525,0.0000018496, -0.0000018454,0.0000018407,0.0000018366,0.0000018323,0.0000018294, -0.0000018284,0.0000018292,0.0000018304,0.0000018310,0.0000018310, -0.0000018321,0.0000018363,0.0000018412,0.0000018444,0.0000018452, -0.0000018448,0.0000018443,0.0000018434,0.0000018419,0.0000018392, -0.0000018349,0.0000018295,0.0000018243,0.0000018204,0.0000018169, -0.0000018141,0.0000018119,0.0000018110,0.0000018119,0.0000018149, -0.0000018203,0.0000018269,0.0000018317,0.0000018322,0.0000018300, -0.0000018264,0.0000018226,0.0000018188,0.0000018145,0.0000018100, -0.0000018058,0.0000018029,0.0000018014,0.0000018016,0.0000018025, -0.0000018034,0.0000018045,0.0000018057,0.0000018069,0.0000018080, -0.0000018084,0.0000018081,0.0000018079,0.0000018079,0.0000018076, -0.0000018072,0.0000018067,0.0000018055,0.0000018035,0.0000018014, -0.0000017998,0.0000017984,0.0000017970,0.0000017952,0.0000017932, -0.0000017910,0.0000017891,0.0000017876,0.0000017874,0.0000017885, -0.0000017910,0.0000017940,0.0000017968,0.0000017990,0.0000018006, -0.0000018022,0.0000018035,0.0000018048,0.0000018054,0.0000018055, -0.0000018055,0.0000018048,0.0000018030,0.0000018005,0.0000017974, -0.0000017939,0.0000017906,0.0000017880,0.0000017860,0.0000017841, -0.0000017821,0.0000017801,0.0000017780,0.0000017759,0.0000017741, -0.0000017727,0.0000017718,0.0000017721,0.0000017725,0.0000017734, -0.0000017748,0.0000017759,0.0000017770,0.0000017789,0.0000017817, -0.0000017852,0.0000017892,0.0000017929,0.0000017963,0.0000017990, -0.0000018012,0.0000018028,0.0000018025,0.0000018014,0.0000017988, -0.0000017973,0.0000017978,0.0000018016,0.0000018092,0.0000018186, -0.0000018278,0.0000018352,0.0000018401,0.0000018431,0.0000018463, -0.0000018504,0.0000018548,0.0000018584,0.0000018610,0.0000018640, -0.0000018692,0.0000018780,0.0000018906,0.0000019054,0.0000019184, -0.0000019286,0.0000019298,0.0000019292,0.0000019243,0.0000019184, -0.0000019129,0.0000019075,0.0000019025,0.0000018993,0.0000018981, -0.0000018974,0.0000018956,0.0000018927,0.0000018897,0.0000018881, -0.0000018876,0.0000018871,0.0000018866,0.0000018855,0.0000018831, -0.0000018791,0.0000018743,0.0000018700,0.0000018668,0.0000018640, -0.0000018614,0.0000018590,0.0000018564,0.0000018542,0.0000018532, -0.0000018531,0.0000018534,0.0000018535,0.0000018528,0.0000018511, -0.0000018489,0.0000018463,0.0000018430,0.0000018390,0.0000018347, -0.0000018303,0.0000018261,0.0000018224,0.0000018197,0.0000018180, -0.0000018171,0.0000018164,0.0000018163,0.0000018169,0.0000018180, -0.0000018192,0.0000018201,0.0000018205,0.0000018204,0.0000018196, -0.0000018181,0.0000018163,0.0000018147,0.0000018133,0.0000018121, -0.0000018113,0.0000018109,0.0000018106,0.0000018102,0.0000018099, -0.0000018097,0.0000018098,0.0000018106,0.0000018122,0.0000018143, -0.0000018164,0.0000018180,0.0000018193,0.0000018201,0.0000018206, -0.0000018204,0.0000018198,0.0000018188,0.0000018174,0.0000018158, -0.0000018137,0.0000018112,0.0000018083,0.0000018051,0.0000018016, -0.0000017981,0.0000017949,0.0000017922,0.0000017905,0.0000017900, -0.0000017906,0.0000017914,0.0000017924,0.0000017934,0.0000017950, -0.0000017970,0.0000017994,0.0000018019,0.0000018040,0.0000018058, -0.0000018076,0.0000018100,0.0000018135,0.0000018186,0.0000018250, -0.0000018321,0.0000018388,0.0000018442,0.0000018484,0.0000018507, -0.0000018510,0.0000018500,0.0000018489,0.0000018488,0.0000018473, -0.0000018404,0.0000018367,0.0000018463,0.0000018666,0.0000018830, -0.0000018836,0.0000018754,0.0000018703,0.0000018736,0.0000018768, -0.0000018468,0.0000018080,0.0000017874,0.0000017758,0.0000017648, -0.0000017536,0.0000017482,0.0000017499,0.0000017545,0.0000017582, -0.0000017606,0.0000017624,0.0000017637,0.0000017641,0.0000017638, -0.0000017629,0.0000017616,0.0000017602,0.0000017591,0.0000017583, -0.0000017579,0.0000017575,0.0000017569,0.0000017558,0.0000017542, -0.0000017523,0.0000017507,0.0000017498,0.0000017493,0.0000017493, -0.0000017498,0.0000017504,0.0000017503,0.0000017475,0.0000017431, -0.0000017396,0.0000017345,0.0000017260,0.0000017206,0.0000017234, -0.0000017306,0.0000017346,0.0000017355,0.0000017391,0.0000017478, -0.0000017563,0.0000017606,0.0000017630,0.0000017657,0.0000017675, -0.0000017677,0.0000017660,0.0000017641,0.0000017638,0.0000017654, -0.0000017684,0.0000017719,0.0000017752,0.0000017781,0.0000017808, -0.0000017831,0.0000017850,0.0000017865,0.0000017877,0.0000017888, -0.0000017894,0.0000017895,0.0000017890,0.0000017886,0.0000017880, -0.0000017874,0.0000017867,0.0000017857,0.0000017846,0.0000017833, -0.0000017817,0.0000017794,0.0000017770,0.0000017745,0.0000017717, -0.0000017689,0.0000017666,0.0000017652,0.0000017646,0.0000017652, -0.0000017666,0.0000017687,0.0000017707,0.0000017735,0.0000017780, -0.0000017846,0.0000017926,0.0000018005,0.0000018068,0.0000018115, -0.0000018155,0.0000018193,0.0000018210,0.0000018196,0.0000018157, -0.0000018111,0.0000018091,0.0000018106,0.0000018133,0.0000018146, -0.0000018135,0.0000018110,0.0000018075,0.0000018039,0.0000018014, -0.0000018003,0.0000017996,0.0000018005,0.0000018021,0.0000018048, -0.0000018082,0.0000018116,0.0000018142,0.0000018149,0.0000018134, -0.0000018100,0.0000018056,0.0000018020,0.0000018029,0.0000018080, -0.0000018161,0.0000018248,0.0000018334,0.0000018394,0.0000018402, -0.0000018411,0.0000018399,0.0000018379,0.0000018363,0.0000018351, -0.0000018344,0.0000018344,0.0000018349,0.0000018363,0.0000018379, -0.0000018391,0.0000018403,0.0000018415,0.0000018424,0.0000018433, -0.0000018442,0.0000018452,0.0000018462,0.0000018472,0.0000018484, -0.0000018495,0.0000018508,0.0000018528,0.0000018551,0.0000018573, -0.0000018677,0.0000018694,0.0000018703,0.0000018702,0.0000018701, -0.0000018693,0.0000018683,0.0000018673,0.0000018665,0.0000018664, -0.0000018666,0.0000018669,0.0000018673,0.0000018680,0.0000018684, -0.0000018684,0.0000018680,0.0000018672,0.0000018659,0.0000018647, -0.0000018635,0.0000018627,0.0000018625,0.0000018631,0.0000018643, -0.0000018663,0.0000018686,0.0000018707,0.0000018719,0.0000018717, -0.0000018713,0.0000018707,0.0000018698,0.0000018687,0.0000018676, -0.0000018661,0.0000018641,0.0000018617,0.0000018593,0.0000018571, -0.0000018551,0.0000018536,0.0000018525,0.0000018518,0.0000018511, -0.0000018501,0.0000018486,0.0000018461,0.0000018423,0.0000018380, -0.0000018340,0.0000018306,0.0000018275,0.0000018248,0.0000018227, -0.0000018216,0.0000018213,0.0000018209,0.0000018201,0.0000018184, -0.0000018157,0.0000018132,0.0000018114,0.0000018100,0.0000018087, -0.0000018074,0.0000018070,0.0000018078,0.0000018092,0.0000018105, -0.0000018115,0.0000018121,0.0000018123,0.0000018122,0.0000018124, -0.0000018124,0.0000018113,0.0000018082,0.0000018028,0.0000017955, -0.0000017879,0.0000017824,0.0000017814,0.0000017853,0.0000017944, -0.0000018046,0.0000018117,0.0000018140,0.0000018151,0.0000018164, -0.0000018180,0.0000018196,0.0000018213,0.0000018235,0.0000018258, -0.0000018269,0.0000018265,0.0000018234,0.0000018180,0.0000018116, -0.0000018054,0.0000018000,0.0000017952,0.0000017912,0.0000017883, -0.0000017876,0.0000017885,0.0000017896,0.0000017898,0.0000017890, -0.0000017870,0.0000017846,0.0000017824,0.0000017808,0.0000017799, -0.0000017798,0.0000017797,0.0000017792,0.0000017782,0.0000017771, -0.0000017767,0.0000017772,0.0000017783,0.0000017793,0.0000017803, -0.0000017818,0.0000017840,0.0000017871,0.0000017911,0.0000017954, -0.0000017995,0.0000018027,0.0000018047,0.0000018053,0.0000018048, -0.0000018038,0.0000018025,0.0000018010,0.0000017995,0.0000017983, -0.0000017973,0.0000017962,0.0000017949,0.0000017931,0.0000017912, -0.0000017893,0.0000017877,0.0000017867,0.0000017867,0.0000017873, -0.0000017888,0.0000017913,0.0000017938,0.0000017955,0.0000017967, -0.0000017974,0.0000017974,0.0000017960,0.0000017930,0.0000017892, -0.0000017856,0.0000017824,0.0000017798,0.0000017773,0.0000017740, -0.0000017689,0.0000017620,0.0000017545,0.0000017477,0.0000017426, -0.0000017398,0.0000017392,0.0000017400,0.0000017422,0.0000017450, -0.0000017483,0.0000017516,0.0000017549,0.0000017582,0.0000017612, -0.0000017641,0.0000017667,0.0000017688,0.0000017703,0.0000017714, -0.0000017717,0.0000017714,0.0000017707,0.0000017701,0.0000017696, -0.0000017695,0.0000017696,0.0000017700,0.0000017707,0.0000017710, -0.0000017708,0.0000017703,0.0000017694,0.0000017683,0.0000017667, -0.0000017645,0.0000017617,0.0000017584,0.0000017544,0.0000017500, -0.0000017458,0.0000017426,0.0000017411,0.0000017411,0.0000017422, -0.0000017438,0.0000017463,0.0000017490,0.0000017512,0.0000017524, -0.0000017528,0.0000017522,0.0000017512,0.0000017500,0.0000017490, -0.0000017487,0.0000017502,0.0000017534,0.0000017579,0.0000017623, -0.0000017665,0.0000017709,0.0000017751,0.0000017789,0.0000017821, -0.0000017843,0.0000017852,0.0000017846,0.0000017833,0.0000017805, -0.0000017758,0.0000017696,0.0000017615,0.0000017522,0.0000017438, -0.0000017365,0.0000017304,0.0000017259,0.0000017232,0.0000017223, -0.0000017223,0.0000017227,0.0000017255,0.0000017306,0.0000017371, -0.0000017438,0.0000017505,0.0000017590,0.0000017703,0.0000017826, -0.0000017930,0.0000017974,0.0000017977,0.0000018003,0.0000018064, -0.0000018139,0.0000018164,0.0000018144,0.0000018045,0.0000017915, -0.0000017780,0.0000017683,0.0000017670,0.0000017657,0.0000017649, -0.0000017633,0.0000017610,0.0000017588,0.0000017573,0.0000017562, -0.0000017541,0.0000017485,0.0000017403,0.0000017319,0.0000017275, -0.0000017276,0.0000017295,0.0000017298,0.0000017284,0.0000017265, -0.0000017253,0.0000017299,0.0000017413,0.0000017584,0.0000017780, -0.0000017943,0.0000018043,0.0000018108,0.0000018190,0.0000018318, -0.0000018476,0.0000018628,0.0000018752,0.0000018847,0.0000018925, -0.0000018992,0.0000019050,0.0000019099,0.0000019138,0.0000019170, -0.0000019193,0.0000019207,0.0000019215,0.0000019218,0.0000019218, -0.0000019214,0.0000019209,0.0000019207,0.0000019208,0.0000019208, -0.0000019208,0.0000019208,0.0000019207,0.0000019207,0.0000019207, -0.0000019210,0.0000019214,0.0000019220,0.0000019228,0.0000019238, -0.0000019252,0.0000019269,0.0000019286,0.0000019303,0.0000019317, -0.0000019328,0.0000019334,0.0000019336,0.0000019334,0.0000019329, -0.0000019321,0.0000019310,0.0000019295,0.0000019275,0.0000019250, -0.0000019222,0.0000019191,0.0000019159,0.0000019124,0.0000019085, -0.0000019036,0.0000018976,0.0000018904,0.0000018824,0.0000018735, -0.0000018637,0.0000018528,0.0000018412,0.0000018287,0.0000018152, -0.0000018009,0.0000017863,0.0000017723,0.0000017604,0.0000017513, -0.0000017453,0.0000017421,0.0000017404,0.0000017397,0.0000017398, -0.0000017404,0.0000017416,0.0000017434,0.0000017451,0.0000017462, -0.0000017466,0.0000017463,0.0000017451,0.0000017428,0.0000017400, -0.0000017375,0.0000017358,0.0000017350,0.0000017347,0.0000017348, -0.0000017351,0.0000017354,0.0000017358,0.0000017364,0.0000017375, -0.0000017389,0.0000017400,0.0000017408,0.0000017413,0.0000017415, -0.0000017432,0.0000017479,0.0000017549,0.0000017626,0.0000017688, -0.0000017713,0.0000017708,0.0000017679,0.0000017609,0.0000017536, -0.0000017469,0.0000017420,0.0000017390,0.0000017377,0.0000017381, -0.0000017388,0.0000017400,0.0000017413,0.0000017424,0.0000017438, -0.0000017454,0.0000017468,0.0000017481,0.0000017493,0.0000017507, -0.0000017518,0.0000017530,0.0000017532,0.0000017541,0.0000017551, -0.0000017563,0.0000017575,0.0000017586,0.0000017599,0.0000017610, -0.0000017619,0.0000017631,0.0000017638,0.0000017636,0.0000017630, -0.0000017622,0.0000017613,0.0000017610,0.0000017611,0.0000017613, -0.0000017621,0.0000017633,0.0000017645,0.0000017656,0.0000017668, -0.0000017679,0.0000017689,0.0000017696,0.0000017702,0.0000017704, -0.0000017703,0.0000017700,0.0000017696,0.0000017695,0.0000017696, -0.0000017700,0.0000017702,0.0000017701,0.0000017697,0.0000017694, -0.0000017693,0.0000017695,0.0000017698,0.0000017699,0.0000017702, -0.0000017707,0.0000017711,0.0000017711,0.0000017712,0.0000017717, -0.0000017722,0.0000017725,0.0000017729,0.0000017734,0.0000017736, -0.0000017730,0.0000017722,0.0000017713,0.0000017696,0.0000017674, -0.0000017651,0.0000017624,0.0000017595,0.0000017567,0.0000017537, -0.0000017505,0.0000017474,0.0000017447,0.0000017430,0.0000017421, -0.0000017415,0.0000017413,0.0000017413,0.0000017417,0.0000017423, -0.0000017431,0.0000017437,0.0000017446,0.0000017441,0.0000017435, -0.0000017420,0.0000017396,0.0000017368,0.0000017340,0.0000017317, -0.0000017298,0.0000017285,0.0000017287,0.0000017298,0.0000017308, -0.0000017314,0.0000017333,0.0000017358,0.0000017379,0.0000017404, -0.0000017430,0.0000017448,0.0000017454,0.0000017451,0.0000017440, -0.0000017423,0.0000017408,0.0000017390,0.0000017372,0.0000017359, -0.0000017345,0.0000017326,0.0000017317,0.0000017315,0.0000017349, -0.0000017399,0.0000017473,0.0000017569,0.0000017687,0.0000017821, -0.0000017970,0.0000018130,0.0000018291,0.0000018443,0.0000018578, -0.0000018697,0.0000018802,0.0000018888,0.0000018957,0.0000019012, -0.0000019052,0.0000019077,0.0000019091,0.0000019102,0.0000019110, -0.0000019115,0.0000019116,0.0000019117,0.0000019120,0.0000019119, -0.0000019118,0.0000019122,0.0000019134,0.0000019154,0.0000019181, -0.0000019211,0.0000019246,0.0000019288,0.0000019332,0.0000019375, -0.0000019416,0.0000019447,0.0000019467,0.0000019479,0.0000019484, -0.0000019487,0.0000019495,0.0000019507,0.0000019523,0.0000019544, -0.0000019568,0.0000019590,0.0000019610,0.0000019628,0.0000019642, -0.0000019648,0.0000019648,0.0000019643,0.0000019637,0.0000019639, -0.0000019650,0.0000019663,0.0000019675,0.0000019689,0.0000019704, -0.0000019718,0.0000019731,0.0000019737,0.0000019736,0.0000019731, -0.0000019720,0.0000019704,0.0000019688,0.0000019687,0.0000019696, -0.0000019709,0.0000019728,0.0000019753,0.0000019782,0.0000019813, -0.0000019841,0.0000019857,0.0000019857,0.0000019840,0.0000019826, -0.0000019803,0.0000019764,0.0000019721,0.0000019689,0.0000019674, -0.0000019674,0.0000019682,0.0000019700,0.0000019725,0.0000019753, -0.0000019776,0.0000019792,0.0000019800,0.0000019800,0.0000019790, -0.0000019774,0.0000019753,0.0000019727,0.0000019699,0.0000019681, -0.0000019672,0.0000019669,0.0000019671,0.0000019680,0.0000019693, -0.0000019708,0.0000019725,0.0000019741,0.0000019754,0.0000019766, -0.0000019775,0.0000019787,0.0000019801,0.0000019815,0.0000019825, -0.0000019831,0.0000019834,0.0000019836,0.0000019840,0.0000019842, -0.0000019840,0.0000019836,0.0000019832,0.0000019823,0.0000019804, -0.0000019781,0.0000019759,0.0000019739,0.0000019720,0.0000019700, -0.0000019680,0.0000019662,0.0000019648,0.0000019636,0.0000019623, -0.0000019619,0.0000019610,0.0000019591,0.0000019577,0.0000019577, -0.0000019584,0.0000019594,0.0000019604,0.0000019617,0.0000019628, -0.0000019631,0.0000019624,0.0000019607,0.0000019595,0.0000019596, -0.0000019599,0.0000019600,0.0000019597,0.0000019588,0.0000019574, -0.0000019560,0.0000019546,0.0000019533,0.0000019520,0.0000019503, -0.0000019482,0.0000019468,0.0000019463,0.0000019468,0.0000019482, -0.0000019496,0.0000019494,0.0000019485,0.0000019469,0.0000019450, -0.0000019430,0.0000019406,0.0000019376,0.0000019337,0.0000019291, -0.0000019244,0.0000019202,0.0000019164,0.0000019148,0.0000019137, -0.0000019149,0.0000019170,0.0000019182,0.0000019195,0.0000019191, -0.0000019183,0.0000019171,0.0000019163,0.0000019169,0.0000019186, -0.0000019207,0.0000019218,0.0000019222,0.0000019222,0.0000019207, -0.0000019181,0.0000019147,0.0000019117,0.0000019097,0.0000019086, -0.0000019078,0.0000019071,0.0000019060,0.0000019047,0.0000019034, -0.0000019017,0.0000019000,0.0000018982,0.0000018964,0.0000018952, -0.0000018938,0.0000018932,0.0000018932,0.0000018932,0.0000018944, -0.0000018961,0.0000018975,0.0000018982,0.0000018985,0.0000018987, -0.0000018991,0.0000018998,0.0000019002,0.0000019003,0.0000019003, -0.0000018999,0.0000018996,0.0000019003,0.0000019012,0.0000019035, -0.0000019029,0.0000019027,0.0000019019,0.0000019009,0.0000018983, -0.0000018949,0.0000018914,0.0000018866,0.0000018829,0.0000018807, -0.0000018794,0.0000018786,0.0000018785,0.0000018790,0.0000018788, -0.0000018786,0.0000018777,0.0000018761,0.0000018737,0.0000018710, -0.0000018677,0.0000018636,0.0000018590,0.0000018540,0.0000018496, -0.0000018461,0.0000018436,0.0000018436,0.0000018423,0.0000018430, -0.0000018455,0.0000018492,0.0000018538,0.0000018594,0.0000018636, -0.0000018634,0.0000018648,0.0000018637,0.0000018607,0.0000018569, -0.0000018516,0.0000018461,0.0000018431,0.0000018400,0.0000018399, -0.0000018425,0.0000018461,0.0000018490,0.0000018503,0.0000018514, -0.0000018535,0.0000018573,0.0000018632,0.0000018705,0.0000018774, -0.0000018831,0.0000018867,0.0000018879,0.0000018876,0.0000018849, -0.0000018812,0.0000018789,0.0000018785,0.0000018788,0.0000018794, -0.0000018794,0.0000018781,0.0000018745,0.0000018695,0.0000018643, -0.0000018598,0.0000018564,0.0000018535,0.0000018512,0.0000018507, -0.0000018511,0.0000018510,0.0000018512,0.0000018515,0.0000018516, -0.0000018512,0.0000018502,0.0000018491,0.0000018498,0.0000018516, -0.0000018522,0.0000018514,0.0000018487,0.0000018450,0.0000018406, -0.0000018365,0.0000018319,0.0000018281,0.0000018259,0.0000018252, -0.0000018251,0.0000018251,0.0000018252,0.0000018264,0.0000018301, -0.0000018353,0.0000018400,0.0000018434,0.0000018450,0.0000018452, -0.0000018447,0.0000018434,0.0000018410,0.0000018374,0.0000018321, -0.0000018264,0.0000018217,0.0000018177,0.0000018144,0.0000018116, -0.0000018099,0.0000018097,0.0000018108,0.0000018132,0.0000018170, -0.0000018215,0.0000018245,0.0000018249,0.0000018233,0.0000018210, -0.0000018180,0.0000018141,0.0000018096,0.0000018055,0.0000018026, -0.0000018012,0.0000018006,0.0000018009,0.0000018017,0.0000018032, -0.0000018049,0.0000018064,0.0000018076,0.0000018080,0.0000018078, -0.0000018074,0.0000018067,0.0000018058,0.0000018047,0.0000018037, -0.0000018023,0.0000018007,0.0000017993,0.0000017984,0.0000017976, -0.0000017965,0.0000017947,0.0000017924,0.0000017899,0.0000017874, -0.0000017851,0.0000017837,0.0000017840,0.0000017860,0.0000017891, -0.0000017925,0.0000017958,0.0000017989,0.0000018017,0.0000018041, -0.0000018054,0.0000018062,0.0000018063,0.0000018060,0.0000018052, -0.0000018037,0.0000018016,0.0000017989,0.0000017960,0.0000017931, -0.0000017905,0.0000017880,0.0000017856,0.0000017833,0.0000017811, -0.0000017791,0.0000017772,0.0000017756,0.0000017744,0.0000017736, -0.0000017733,0.0000017737,0.0000017751,0.0000017765,0.0000017774, -0.0000017777,0.0000017782,0.0000017782,0.0000017796,0.0000017822, -0.0000017856,0.0000017893,0.0000017927,0.0000017958,0.0000017984, -0.0000018002,0.0000018001,0.0000017991,0.0000017966,0.0000017952, -0.0000017959,0.0000018000,0.0000018075,0.0000018172,0.0000018268, -0.0000018341,0.0000018386,0.0000018414,0.0000018441,0.0000018476, -0.0000018512,0.0000018541,0.0000018561,0.0000018587,0.0000018639, -0.0000018727,0.0000018854,0.0000019009,0.0000019147,0.0000019256, -0.0000019277,0.0000019274,0.0000019230,0.0000019179,0.0000019133, -0.0000019090,0.0000019049,0.0000019019,0.0000019003,0.0000018991, -0.0000018970,0.0000018940,0.0000018909,0.0000018884,0.0000018871, -0.0000018869,0.0000018868,0.0000018857,0.0000018833,0.0000018798, -0.0000018761,0.0000018728,0.0000018695,0.0000018663,0.0000018633, -0.0000018605,0.0000018574,0.0000018549,0.0000018533,0.0000018527, -0.0000018525,0.0000018523,0.0000018512,0.0000018491,0.0000018461, -0.0000018427,0.0000018388,0.0000018344,0.0000018296,0.0000018248, -0.0000018209,0.0000018181,0.0000018162,0.0000018146,0.0000018138, -0.0000018146,0.0000018162,0.0000018178,0.0000018189,0.0000018194, -0.0000018194,0.0000018187,0.0000018175,0.0000018160,0.0000018142, -0.0000018125,0.0000018111,0.0000018100,0.0000018093,0.0000018089, -0.0000018089,0.0000018091,0.0000018094,0.0000018096,0.0000018103, -0.0000018117,0.0000018138,0.0000018159,0.0000018177,0.0000018193, -0.0000018205,0.0000018213,0.0000018217,0.0000018217,0.0000018212, -0.0000018203,0.0000018189,0.0000018170,0.0000018148,0.0000018121, -0.0000018091,0.0000018058,0.0000018026,0.0000017996,0.0000017970, -0.0000017950,0.0000017940,0.0000017940,0.0000017945,0.0000017951, -0.0000017959,0.0000017974,0.0000017995,0.0000018022,0.0000018054, -0.0000018087,0.0000018124,0.0000018167,0.0000018221,0.0000018285, -0.0000018356,0.0000018423,0.0000018477,0.0000018518,0.0000018548, -0.0000018572,0.0000018586,0.0000018585,0.0000018560,0.0000018532, -0.0000018510,0.0000018442,0.0000018364,0.0000018417,0.0000018613, -0.0000018812,0.0000018835,0.0000018780,0.0000018711,0.0000018699, -0.0000018762,0.0000018728,0.0000018396,0.0000018057,0.0000017847, -0.0000017694,0.0000017554,0.0000017505,0.0000017575,0.0000017649, -0.0000017678,0.0000017679,0.0000017682,0.0000017695,0.0000017708, -0.0000017716,0.0000017719,0.0000017709,0.0000017692,0.0000017669, -0.0000017646,0.0000017628,0.0000017613,0.0000017602,0.0000017593, -0.0000017580,0.0000017565,0.0000017549,0.0000017537,0.0000017530, -0.0000017524,0.0000017522,0.0000017525,0.0000017526,0.0000017507, -0.0000017466,0.0000017429,0.0000017377,0.0000017286,0.0000017206, -0.0000017213,0.0000017283,0.0000017326,0.0000017337,0.0000017395, -0.0000017495,0.0000017566,0.0000017602,0.0000017634,0.0000017652, -0.0000017645,0.0000017619,0.0000017607,0.0000017620,0.0000017649, -0.0000017691,0.0000017734,0.0000017773,0.0000017810,0.0000017840, -0.0000017863,0.0000017879,0.0000017891,0.0000017895,0.0000017892, -0.0000017888,0.0000017874,0.0000017860,0.0000017851,0.0000017843, -0.0000017838,0.0000017835,0.0000017832,0.0000017827,0.0000017820, -0.0000017812,0.0000017803,0.0000017790,0.0000017774,0.0000017759, -0.0000017742,0.0000017724,0.0000017706,0.0000017691,0.0000017682, -0.0000017678,0.0000017680,0.0000017691,0.0000017704,0.0000017718, -0.0000017736,0.0000017764,0.0000017816,0.0000017890,0.0000017969, -0.0000018033,0.0000018084,0.0000018124,0.0000018154,0.0000018174, -0.0000018172,0.0000018138,0.0000018098,0.0000018078,0.0000018079, -0.0000018101,0.0000018123,0.0000018135,0.0000018134,0.0000018116, -0.0000018089,0.0000018055,0.0000018017,0.0000017991,0.0000017974, -0.0000017970,0.0000017983,0.0000018008,0.0000018044,0.0000018083, -0.0000018112,0.0000018115,0.0000018087,0.0000018038,0.0000017992, -0.0000017966,0.0000017973,0.0000018017,0.0000018092,0.0000018188, -0.0000018279,0.0000018363,0.0000018408,0.0000018427,0.0000018432, -0.0000018430,0.0000018425,0.0000018420,0.0000018418,0.0000018425, -0.0000018436,0.0000018447,0.0000018460,0.0000018473,0.0000018483, -0.0000018494,0.0000018505,0.0000018518,0.0000018532,0.0000018545, -0.0000018558,0.0000018573,0.0000018590,0.0000018610,0.0000018632, -0.0000018655,0.0000018725,0.0000018724,0.0000018716,0.0000018704, -0.0000018692,0.0000018684,0.0000018681,0.0000018679,0.0000018674, -0.0000018674,0.0000018669,0.0000018664,0.0000018660,0.0000018653, -0.0000018640,0.0000018626,0.0000018614,0.0000018604,0.0000018595, -0.0000018585,0.0000018578,0.0000018571,0.0000018566,0.0000018564, -0.0000018570,0.0000018580,0.0000018598,0.0000018620,0.0000018644, -0.0000018665,0.0000018684,0.0000018699,0.0000018706,0.0000018709, -0.0000018714,0.0000018718,0.0000018718,0.0000018712,0.0000018698, -0.0000018675,0.0000018648,0.0000018621,0.0000018596,0.0000018574, -0.0000018557,0.0000018540,0.0000018521,0.0000018498,0.0000018465, -0.0000018424,0.0000018381,0.0000018343,0.0000018308,0.0000018274, -0.0000018243,0.0000018218,0.0000018207,0.0000018204,0.0000018207, -0.0000018207,0.0000018208,0.0000018200,0.0000018190,0.0000018179, -0.0000018166,0.0000018149,0.0000018136,0.0000018128,0.0000018128, -0.0000018132,0.0000018136,0.0000018136,0.0000018135,0.0000018133, -0.0000018135,0.0000018137,0.0000018132,0.0000018116,0.0000018082, -0.0000018028,0.0000017959,0.0000017890,0.0000017829,0.0000017801, -0.0000017826,0.0000017910,0.0000018022,0.0000018107,0.0000018151, -0.0000018170,0.0000018183,0.0000018193,0.0000018204,0.0000018222, -0.0000018243,0.0000018261,0.0000018270,0.0000018267,0.0000018239, -0.0000018189,0.0000018129,0.0000018075,0.0000018033,0.0000017996, -0.0000017961,0.0000017930,0.0000017911,0.0000017906,0.0000017908, -0.0000017909,0.0000017904,0.0000017887,0.0000017862,0.0000017834, -0.0000017814,0.0000017808,0.0000017813,0.0000017822,0.0000017828, -0.0000017828,0.0000017819,0.0000017809,0.0000017805,0.0000017807, -0.0000017811,0.0000017816,0.0000017820,0.0000017827,0.0000017839, -0.0000017860,0.0000017892,0.0000017934,0.0000017976,0.0000018007, -0.0000018021,0.0000018020,0.0000018013,0.0000018003,0.0000017996, -0.0000017993,0.0000017993,0.0000017990,0.0000017980,0.0000017964, -0.0000017944,0.0000017922,0.0000017897,0.0000017877,0.0000017866, -0.0000017863,0.0000017870,0.0000017889,0.0000017911,0.0000017929, -0.0000017938,0.0000017939,0.0000017925,0.0000017895,0.0000017855, -0.0000017818,0.0000017792,0.0000017776,0.0000017760,0.0000017736, -0.0000017694,0.0000017634,0.0000017562,0.0000017493,0.0000017440, -0.0000017406,0.0000017390,0.0000017388,0.0000017402,0.0000017428, -0.0000017459,0.0000017490,0.0000017522,0.0000017554,0.0000017586, -0.0000017618,0.0000017648,0.0000017675,0.0000017695,0.0000017710, -0.0000017718,0.0000017718,0.0000017711,0.0000017700,0.0000017687, -0.0000017673,0.0000017662,0.0000017657,0.0000017658,0.0000017664, -0.0000017673,0.0000017681,0.0000017688,0.0000017691,0.0000017690, -0.0000017687,0.0000017684,0.0000017682,0.0000017676,0.0000017659, -0.0000017632,0.0000017599,0.0000017568,0.0000017544,0.0000017527, -0.0000017518,0.0000017520,0.0000017528,0.0000017539,0.0000017547, -0.0000017548,0.0000017538,0.0000017521,0.0000017500,0.0000017480, -0.0000017460,0.0000017452,0.0000017464,0.0000017496,0.0000017539, -0.0000017577,0.0000017615,0.0000017655,0.0000017693,0.0000017730, -0.0000017764,0.0000017790,0.0000017808,0.0000017818,0.0000017816, -0.0000017799,0.0000017770,0.0000017729,0.0000017671,0.0000017597, -0.0000017518,0.0000017438,0.0000017364,0.0000017298,0.0000017251, -0.0000017226,0.0000017220,0.0000017225,0.0000017235,0.0000017259, -0.0000017306,0.0000017362,0.0000017422,0.0000017488,0.0000017564, -0.0000017661,0.0000017775,0.0000017881,0.0000017941,0.0000017950, -0.0000017971,0.0000018025,0.0000018101,0.0000018150,0.0000018149, -0.0000018082,0.0000017960,0.0000017823,0.0000017693,0.0000017649, -0.0000017627,0.0000017611,0.0000017592,0.0000017570,0.0000017548, -0.0000017532,0.0000017514,0.0000017484,0.0000017422,0.0000017343, -0.0000017274,0.0000017242,0.0000017246,0.0000017259,0.0000017263, -0.0000017252,0.0000017244,0.0000017245,0.0000017282,0.0000017373, -0.0000017519,0.0000017703,0.0000017879,0.0000018006,0.0000018086, -0.0000018159,0.0000018259,0.0000018387,0.0000018524,0.0000018646, -0.0000018748,0.0000018830,0.0000018896,0.0000018948,0.0000018989, -0.0000019023,0.0000019047,0.0000019064,0.0000019076,0.0000019083, -0.0000019085,0.0000019085,0.0000019084,0.0000019084,0.0000019083, -0.0000019081,0.0000019078,0.0000019073,0.0000019069,0.0000019066, -0.0000019064,0.0000019064,0.0000019069,0.0000019076,0.0000019085, -0.0000019098,0.0000019114,0.0000019132,0.0000019148,0.0000019160, -0.0000019168,0.0000019171,0.0000019171,0.0000019167,0.0000019159, -0.0000019149,0.0000019137,0.0000019122,0.0000019101,0.0000019075, -0.0000019045,0.0000019008,0.0000018966,0.0000018919,0.0000018866, -0.0000018803,0.0000018731,0.0000018650,0.0000018564,0.0000018472, -0.0000018370,0.0000018251,0.0000018114,0.0000017966,0.0000017817, -0.0000017680,0.0000017567,0.0000017483,0.0000017428,0.0000017397, -0.0000017385,0.0000017385,0.0000017391,0.0000017402,0.0000017418, -0.0000017434,0.0000017447,0.0000017452,0.0000017456,0.0000017448, -0.0000017434,0.0000017415,0.0000017393,0.0000017368,0.0000017348, -0.0000017337,0.0000017333,0.0000017333,0.0000017334,0.0000017335, -0.0000017337,0.0000017340,0.0000017348,0.0000017362,0.0000017379, -0.0000017390,0.0000017399,0.0000017409,0.0000017442,0.0000017502, -0.0000017585,0.0000017668,0.0000017728,0.0000017750,0.0000017722, -0.0000017658,0.0000017582,0.0000017505,0.0000017442,0.0000017401, -0.0000017383,0.0000017377,0.0000017379,0.0000017382,0.0000017388, -0.0000017394,0.0000017397,0.0000017399,0.0000017406,0.0000017420, -0.0000017439,0.0000017461,0.0000017484,0.0000017513,0.0000017541, -0.0000017566,0.0000017582,0.0000017592,0.0000017595,0.0000017597, -0.0000017596,0.0000017594,0.0000017596,0.0000017600,0.0000017604, -0.0000017612,0.0000017625,0.0000017640,0.0000017642,0.0000017647, -0.0000017651,0.0000017652,0.0000017658,0.0000017670,0.0000017684, -0.0000017705,0.0000017726,0.0000017745,0.0000017760,0.0000017774, -0.0000017786,0.0000017797,0.0000017806,0.0000017812,0.0000017813, -0.0000017811,0.0000017803,0.0000017794,0.0000017784,0.0000017779, -0.0000017774,0.0000017766,0.0000017760,0.0000017750,0.0000017740, -0.0000017734,0.0000017734,0.0000017737,0.0000017737,0.0000017740, -0.0000017751,0.0000017762,0.0000017770,0.0000017774,0.0000017780, -0.0000017785,0.0000017786,0.0000017787,0.0000017789,0.0000017789, -0.0000017782,0.0000017770,0.0000017755,0.0000017735,0.0000017714, -0.0000017695,0.0000017674,0.0000017655,0.0000017638,0.0000017617, -0.0000017591,0.0000017558,0.0000017520,0.0000017491,0.0000017467, -0.0000017446,0.0000017429,0.0000017418,0.0000017412,0.0000017418, -0.0000017426,0.0000017436,0.0000017448,0.0000017461,0.0000017472, -0.0000017485,0.0000017486,0.0000017481,0.0000017470,0.0000017454, -0.0000017428,0.0000017395,0.0000017363,0.0000017339,0.0000017317, -0.0000017301,0.0000017303,0.0000017305,0.0000017312,0.0000017322, -0.0000017345,0.0000017367,0.0000017381,0.0000017396,0.0000017405, -0.0000017408,0.0000017405,0.0000017400,0.0000017388,0.0000017376, -0.0000017356,0.0000017332,0.0000017307,0.0000017288,0.0000017275, -0.0000017264,0.0000017254,0.0000017247,0.0000017275,0.0000017322, -0.0000017396,0.0000017497,0.0000017623,0.0000017763,0.0000017912, -0.0000018064,0.0000018215,0.0000018362,0.0000018494,0.0000018609, -0.0000018711,0.0000018800,0.0000018874,0.0000018933,0.0000018981, -0.0000019018,0.0000019042,0.0000019056,0.0000019060,0.0000019058, -0.0000019048,0.0000019035,0.0000019029,0.0000019032,0.0000019044, -0.0000019065,0.0000019098,0.0000019142,0.0000019196,0.0000019258, -0.0000019319,0.0000019369,0.0000019407,0.0000019433,0.0000019449, -0.0000019456,0.0000019462,0.0000019466,0.0000019472,0.0000019482, -0.0000019496,0.0000019513,0.0000019531,0.0000019546,0.0000019555, -0.0000019558,0.0000019554,0.0000019544,0.0000019538,0.0000019544, -0.0000019556,0.0000019568,0.0000019580,0.0000019594,0.0000019611, -0.0000019633,0.0000019659,0.0000019681,0.0000019697,0.0000019704, -0.0000019700,0.0000019686,0.0000019666,0.0000019658,0.0000019661, -0.0000019670,0.0000019676,0.0000019681,0.0000019690,0.0000019702, -0.0000019715,0.0000019725,0.0000019732,0.0000019741,0.0000019748, -0.0000019746,0.0000019728,0.0000019696,0.0000019672,0.0000019659, -0.0000019650,0.0000019647,0.0000019653,0.0000019670,0.0000019694, -0.0000019719,0.0000019741,0.0000019757,0.0000019766,0.0000019769, -0.0000019759,0.0000019749,0.0000019732,0.0000019713,0.0000019702, -0.0000019695,0.0000019693,0.0000019695,0.0000019702,0.0000019708, -0.0000019714,0.0000019719,0.0000019726,0.0000019730,0.0000019733, -0.0000019740,0.0000019752,0.0000019769,0.0000019788,0.0000019808, -0.0000019826,0.0000019839,0.0000019853,0.0000019869,0.0000019879, -0.0000019883,0.0000019886,0.0000019885,0.0000019877,0.0000019858, -0.0000019834,0.0000019805,0.0000019776,0.0000019748,0.0000019717, -0.0000019687,0.0000019661,0.0000019638,0.0000019618,0.0000019606, -0.0000019593,0.0000019573,0.0000019559,0.0000019560,0.0000019570, -0.0000019581,0.0000019591,0.0000019604,0.0000019618,0.0000019622, -0.0000019615,0.0000019594,0.0000019574,0.0000019563,0.0000019562, -0.0000019567,0.0000019574,0.0000019577,0.0000019574,0.0000019567, -0.0000019561,0.0000019556,0.0000019551,0.0000019542,0.0000019528, -0.0000019504,0.0000019475,0.0000019451,0.0000019442,0.0000019448, -0.0000019458,0.0000019464,0.0000019461,0.0000019454,0.0000019440, -0.0000019429,0.0000019418,0.0000019400,0.0000019375,0.0000019344, -0.0000019307,0.0000019263,0.0000019220,0.0000019182,0.0000019157, -0.0000019157,0.0000019163,0.0000019175,0.0000019188,0.0000019197, -0.0000019190,0.0000019181,0.0000019176,0.0000019181,0.0000019190, -0.0000019196,0.0000019202,0.0000019205,0.0000019205,0.0000019200, -0.0000019174,0.0000019155,0.0000019135,0.0000019116,0.0000019104, -0.0000019097,0.0000019090,0.0000019078,0.0000019067,0.0000019057, -0.0000019047,0.0000019040,0.0000019033,0.0000019022,0.0000019003, -0.0000018978,0.0000018960,0.0000018943,0.0000018939,0.0000018937, -0.0000018946,0.0000018951,0.0000018952,0.0000018950,0.0000018952, -0.0000018962,0.0000018971,0.0000018973,0.0000018965,0.0000018948, -0.0000018927,0.0000018906,0.0000018899,0.0000018915,0.0000018948, -0.0000018975,0.0000019014,0.0000019042,0.0000019044,0.0000019047, -0.0000019025,0.0000018970,0.0000018903,0.0000018846,0.0000018795, -0.0000018772,0.0000018752,0.0000018753,0.0000018760,0.0000018765, -0.0000018773,0.0000018774,0.0000018787,0.0000018790,0.0000018777, -0.0000018741,0.0000018686,0.0000018627,0.0000018587,0.0000018563, -0.0000018541,0.0000018516,0.0000018479,0.0000018436,0.0000018415, -0.0000018385,0.0000018376,0.0000018393,0.0000018422,0.0000018465, -0.0000018530,0.0000018594,0.0000018615,0.0000018641,0.0000018638, -0.0000018602,0.0000018546,0.0000018479,0.0000018427,0.0000018414, -0.0000018422,0.0000018433,0.0000018436,0.0000018432,0.0000018420, -0.0000018414,0.0000018420,0.0000018460,0.0000018541,0.0000018634, -0.0000018715,0.0000018780,0.0000018822,0.0000018834,0.0000018830, -0.0000018820,0.0000018816,0.0000018819,0.0000018817,0.0000018810, -0.0000018795,0.0000018771,0.0000018746,0.0000018711,0.0000018668, -0.0000018624,0.0000018583,0.0000018551,0.0000018532,0.0000018512, -0.0000018491,0.0000018478,0.0000018473,0.0000018479,0.0000018484, -0.0000018485,0.0000018489,0.0000018505,0.0000018519,0.0000018521, -0.0000018505,0.0000018477,0.0000018441,0.0000018400,0.0000018360, -0.0000018319,0.0000018278,0.0000018245,0.0000018228,0.0000018212, -0.0000018202,0.0000018197,0.0000018207,0.0000018239,0.0000018291, -0.0000018346,0.0000018400,0.0000018441,0.0000018461,0.0000018461, -0.0000018445,0.0000018419,0.0000018385,0.0000018339,0.0000018285, -0.0000018234,0.0000018189,0.0000018154,0.0000018122,0.0000018098, -0.0000018092,0.0000018098,0.0000018108,0.0000018121,0.0000018140, -0.0000018156,0.0000018164,0.0000018168,0.0000018167,0.0000018155, -0.0000018133,0.0000018100,0.0000018067,0.0000018041,0.0000018021, -0.0000018011,0.0000018006,0.0000018003,0.0000018006,0.0000018014, -0.0000018022,0.0000018031,0.0000018038,0.0000018039,0.0000018039, -0.0000018036,0.0000018032,0.0000018025,0.0000018015,0.0000018002, -0.0000017989,0.0000017979,0.0000017973,0.0000017968,0.0000017962, -0.0000017949,0.0000017928,0.0000017902,0.0000017872,0.0000017840, -0.0000017810,0.0000017791,0.0000017791,0.0000017807,0.0000017834, -0.0000017868,0.0000017906,0.0000017943,0.0000017975,0.0000018000, -0.0000018020,0.0000018034,0.0000018037,0.0000018032,0.0000018021, -0.0000018000,0.0000017983,0.0000017968,0.0000017953,0.0000017935, -0.0000017912,0.0000017883,0.0000017852,0.0000017819,0.0000017788, -0.0000017764,0.0000017747,0.0000017739,0.0000017735,0.0000017740, -0.0000017753,0.0000017772,0.0000017790,0.0000017803,0.0000017804, -0.0000017795,0.0000017781,0.0000017776,0.0000017778,0.0000017794, -0.0000017824,0.0000017859,0.0000017893,0.0000017924,0.0000017953, -0.0000017971,0.0000017975,0.0000017972,0.0000017955,0.0000017943, -0.0000017952,0.0000017992,0.0000018065,0.0000018161,0.0000018255, -0.0000018326,0.0000018368,0.0000018389,0.0000018406,0.0000018434, -0.0000018469,0.0000018498,0.0000018522,0.0000018550,0.0000018596, -0.0000018676,0.0000018801,0.0000018957,0.0000019104,0.0000019224, -0.0000019256,0.0000019264,0.0000019225,0.0000019177,0.0000019137, -0.0000019103,0.0000019070,0.0000019044,0.0000019028,0.0000019014, -0.0000018992,0.0000018958,0.0000018921,0.0000018896,0.0000018883, -0.0000018874,0.0000018863,0.0000018845,0.0000018823,0.0000018800, -0.0000018775,0.0000018748,0.0000018717,0.0000018683,0.0000018648, -0.0000018617,0.0000018590,0.0000018564,0.0000018540,0.0000018523, -0.0000018516,0.0000018509,0.0000018493,0.0000018467,0.0000018435, -0.0000018394,0.0000018342,0.0000018287,0.0000018238,0.0000018200, -0.0000018168,0.0000018139,0.0000018118,0.0000018117,0.0000018131, -0.0000018152,0.0000018170,0.0000018181,0.0000018186,0.0000018186, -0.0000018179,0.0000018168,0.0000018152,0.0000018132,0.0000018114, -0.0000018099,0.0000018088,0.0000018083,0.0000018083,0.0000018088, -0.0000018094,0.0000018099,0.0000018108,0.0000018124,0.0000018145, -0.0000018165,0.0000018186,0.0000018208,0.0000018230,0.0000018248, -0.0000018263,0.0000018273,0.0000018277,0.0000018276,0.0000018269, -0.0000018256,0.0000018237,0.0000018214,0.0000018187,0.0000018158, -0.0000018130,0.0000018103,0.0000018079,0.0000018060,0.0000018048, -0.0000018044,0.0000018042,0.0000018045,0.0000018053,0.0000018067, -0.0000018093,0.0000018129,0.0000018174,0.0000018227,0.0000018282, -0.0000018340,0.0000018394,0.0000018443,0.0000018485,0.0000018517, -0.0000018544,0.0000018567,0.0000018583,0.0000018599,0.0000018618, -0.0000018619,0.0000018588,0.0000018551,0.0000018489,0.0000018386, -0.0000018381,0.0000018556,0.0000018788,0.0000018834,0.0000018804, -0.0000018722,0.0000018699,0.0000018703,0.0000018760,0.0000018700, -0.0000018409,0.0000018051,0.0000017767,0.0000017580,0.0000017542, -0.0000017646,0.0000017704,0.0000017691,0.0000017658,0.0000017642, -0.0000017650,0.0000017672,0.0000017695,0.0000017715,0.0000017726, -0.0000017725,0.0000017716,0.0000017697,0.0000017677,0.0000017661, -0.0000017650,0.0000017640,0.0000017629,0.0000017615,0.0000017600, -0.0000017586,0.0000017574,0.0000017563,0.0000017554,0.0000017554, -0.0000017555,0.0000017539,0.0000017500,0.0000017464,0.0000017416, -0.0000017326,0.0000017232,0.0000017216,0.0000017271,0.0000017316, -0.0000017335,0.0000017409,0.0000017504,0.0000017561,0.0000017600, -0.0000017624,0.0000017618,0.0000017589,0.0000017578,0.0000017599, -0.0000017642,0.0000017693,0.0000017746,0.0000017796,0.0000017837, -0.0000017867,0.0000017885,0.0000017892,0.0000017893,0.0000017892, -0.0000017881,0.0000017863,0.0000017844,0.0000017828,0.0000017821, -0.0000017819,0.0000017819,0.0000017821,0.0000017822,0.0000017823, -0.0000017820,0.0000017815,0.0000017808,0.0000017799,0.0000017788, -0.0000017777,0.0000017766,0.0000017754,0.0000017742,0.0000017729, -0.0000017719,0.0000017713,0.0000017711,0.0000017711,0.0000017716, -0.0000017723,0.0000017733,0.0000017739,0.0000017746,0.0000017759, -0.0000017787,0.0000017842,0.0000017911,0.0000017979,0.0000018031, -0.0000018069,0.0000018100,0.0000018124,0.0000018128,0.0000018109, -0.0000018078,0.0000018057,0.0000018055,0.0000018071,0.0000018097, -0.0000018120,0.0000018134,0.0000018140,0.0000018132,0.0000018107, -0.0000018070,0.0000018026,0.0000017990,0.0000017968,0.0000017968, -0.0000017982,0.0000018008,0.0000018046,0.0000018078,0.0000018091, -0.0000018081,0.0000018055,0.0000018015,0.0000017974,0.0000017959, -0.0000017965,0.0000017992,0.0000018051,0.0000018137,0.0000018236, -0.0000018333,0.0000018416,0.0000018452,0.0000018477,0.0000018486, -0.0000018488,0.0000018493,0.0000018498,0.0000018502,0.0000018511, -0.0000018524,0.0000018537,0.0000018550,0.0000018563,0.0000018577, -0.0000018592,0.0000018605,0.0000018617,0.0000018635,0.0000018656, -0.0000018679,0.0000018700,0.0000018714,0.0000018706,0.0000018694, -0.0000018683,0.0000018680,0.0000018683,0.0000018688,0.0000018685, -0.0000018677,0.0000018665,0.0000018648,0.0000018626,0.0000018603, -0.0000018585,0.0000018572,0.0000018561,0.0000018551,0.0000018544, -0.0000018542,0.0000018541,0.0000018542,0.0000018543,0.0000018542, -0.0000018539,0.0000018537,0.0000018535,0.0000018535,0.0000018539, -0.0000018546,0.0000018557,0.0000018570,0.0000018590,0.0000018615, -0.0000018641,0.0000018667,0.0000018691,0.0000018715,0.0000018729, -0.0000018743,0.0000018750,0.0000018748,0.0000018737,0.0000018720, -0.0000018697,0.0000018672,0.0000018648,0.0000018625,0.0000018601, -0.0000018572,0.0000018536,0.0000018492,0.0000018442,0.0000018392, -0.0000018348,0.0000018307,0.0000018269,0.0000018236,0.0000018213, -0.0000018201,0.0000018198,0.0000018203,0.0000018211,0.0000018216, -0.0000018225,0.0000018231,0.0000018234,0.0000018235,0.0000018233, -0.0000018221,0.0000018208,0.0000018196,0.0000018186,0.0000018171, -0.0000018155,0.0000018140,0.0000018137,0.0000018139,0.0000018139, -0.0000018136,0.0000018122,0.0000018089,0.0000018037,0.0000017974, -0.0000017904,0.0000017835,0.0000017807,0.0000017817,0.0000017896, -0.0000018004,0.0000018097,0.0000018158,0.0000018185,0.0000018196, -0.0000018202,0.0000018211,0.0000018228,0.0000018248,0.0000018263, -0.0000018269,0.0000018264,0.0000018241,0.0000018197,0.0000018145, -0.0000018101,0.0000018066,0.0000018038,0.0000018010,0.0000017982, -0.0000017959,0.0000017944,0.0000017938,0.0000017935,0.0000017926, -0.0000017908,0.0000017884,0.0000017860,0.0000017840,0.0000017830, -0.0000017832,0.0000017843,0.0000017855,0.0000017861,0.0000017861, -0.0000017852,0.0000017840,0.0000017831,0.0000017830,0.0000017831, -0.0000017833,0.0000017831,0.0000017828,0.0000017830,0.0000017840, -0.0000017865,0.0000017904,0.0000017947,0.0000017982,0.0000017998, -0.0000017999,0.0000017994,0.0000017992,0.0000017994,0.0000017997, -0.0000017996,0.0000017989,0.0000017975,0.0000017955,0.0000017931, -0.0000017905,0.0000017881,0.0000017866,0.0000017862,0.0000017869, -0.0000017883,0.0000017895,0.0000017895,0.0000017879,0.0000017844, -0.0000017801,0.0000017762,0.0000017735,0.0000017721,0.0000017713, -0.0000017700,0.0000017671,0.0000017624,0.0000017563,0.0000017504, -0.0000017456,0.0000017422,0.0000017400,0.0000017392,0.0000017396, -0.0000017414,0.0000017441,0.0000017471,0.0000017501,0.0000017529, -0.0000017558,0.0000017588,0.0000017619,0.0000017650,0.0000017678, -0.0000017701,0.0000017718,0.0000017728,0.0000017729,0.0000017724, -0.0000017711,0.0000017697,0.0000017681,0.0000017666,0.0000017653, -0.0000017643,0.0000017635,0.0000017632,0.0000017633,0.0000017642, -0.0000017652,0.0000017662,0.0000017672,0.0000017682,0.0000017690, -0.0000017697,0.0000017698,0.0000017693,0.0000017684,0.0000017670, -0.0000017656,0.0000017640,0.0000017629,0.0000017623,0.0000017622, -0.0000017623,0.0000017622,0.0000017614,0.0000017599,0.0000017578, -0.0000017549,0.0000017517,0.0000017489,0.0000017477,0.0000017483, -0.0000017511,0.0000017544,0.0000017574,0.0000017609,0.0000017638, -0.0000017667,0.0000017697,0.0000017727,0.0000017753,0.0000017771, -0.0000017782,0.0000017783,0.0000017771,0.0000017751,0.0000017724, -0.0000017688,0.0000017637,0.0000017581,0.0000017523,0.0000017455, -0.0000017383,0.0000017317,0.0000017265,0.0000017236,0.0000017229, -0.0000017234,0.0000017245,0.0000017264,0.0000017297,0.0000017342, -0.0000017398,0.0000017458,0.0000017526,0.0000017611,0.0000017715, -0.0000017821,0.0000017901,0.0000017931,0.0000017949,0.0000017994, -0.0000018059,0.0000018126,0.0000018154,0.0000018114,0.0000018005, -0.0000017862,0.0000017714,0.0000017612,0.0000017581,0.0000017563, -0.0000017548,0.0000017531,0.0000017512,0.0000017491,0.0000017464, -0.0000017423,0.0000017367,0.0000017303,0.0000017246,0.0000017220, -0.0000017222,0.0000017231,0.0000017240,0.0000017240,0.0000017236, -0.0000017237,0.0000017260,0.0000017327,0.0000017440,0.0000017599, -0.0000017778,0.0000017935,0.0000018047,0.0000018124,0.0000018197, -0.0000018285,0.0000018391,0.0000018500,0.0000018600,0.0000018684, -0.0000018752,0.0000018805,0.0000018844,0.0000018872,0.0000018892, -0.0000018906,0.0000018915,0.0000018921,0.0000018926,0.0000018929, -0.0000018929,0.0000018928,0.0000018924,0.0000018918,0.0000018910, -0.0000018905,0.0000018901,0.0000018899,0.0000018899,0.0000018905, -0.0000018914,0.0000018924,0.0000018938,0.0000018954,0.0000018969, -0.0000018979,0.0000018983,0.0000018981,0.0000018975,0.0000018963, -0.0000018947,0.0000018930,0.0000018911,0.0000018888,0.0000018859, -0.0000018827,0.0000018790,0.0000018746,0.0000018698,0.0000018648, -0.0000018594,0.0000018531,0.0000018459,0.0000018376,0.0000018282, -0.0000018176,0.0000018052,0.0000017914,0.0000017772,0.0000017644, -0.0000017544,0.0000017472,0.0000017425,0.0000017393,0.0000017374, -0.0000017373,0.0000017378,0.0000017398,0.0000017419,0.0000017439, -0.0000017450,0.0000017449,0.0000017446,0.0000017437,0.0000017421, -0.0000017399,0.0000017376,0.0000017358,0.0000017344,0.0000017335, -0.0000017331,0.0000017330,0.0000017329,0.0000017327,0.0000017326, -0.0000017330,0.0000017335,0.0000017349,0.0000017366,0.0000017385, -0.0000017400,0.0000017417,0.0000017454,0.0000017523,0.0000017615, -0.0000017696,0.0000017745,0.0000017750,0.0000017717,0.0000017642, -0.0000017561,0.0000017490,0.0000017438,0.0000017411,0.0000017398, -0.0000017389,0.0000017392,0.0000017392,0.0000017390,0.0000017388, -0.0000017385,0.0000017387,0.0000017394,0.0000017406,0.0000017433, -0.0000017465,0.0000017498,0.0000017531,0.0000017562,0.0000017585, -0.0000017600,0.0000017605,0.0000017601,0.0000017593,0.0000017584, -0.0000017577,0.0000017574,0.0000017576,0.0000017585,0.0000017597, -0.0000017618,0.0000017643,0.0000017671,0.0000017700,0.0000017725, -0.0000017745,0.0000017756,0.0000017762,0.0000017773,0.0000017788, -0.0000017805,0.0000017823,0.0000017839,0.0000017855,0.0000017868, -0.0000017879,0.0000017889,0.0000017902,0.0000017913,0.0000017922, -0.0000017928,0.0000017931,0.0000017929,0.0000017924,0.0000017916, -0.0000017906,0.0000017902,0.0000017892,0.0000017881,0.0000017867, -0.0000017851,0.0000017836,0.0000017824,0.0000017816,0.0000017807, -0.0000017803,0.0000017809,0.0000017818,0.0000017826,0.0000017829, -0.0000017833,0.0000017838,0.0000017840,0.0000017840,0.0000017842, -0.0000017844,0.0000017842,0.0000017835,0.0000017823,0.0000017805, -0.0000017787,0.0000017766,0.0000017743,0.0000017723,0.0000017706, -0.0000017689,0.0000017669,0.0000017641,0.0000017604,0.0000017571, -0.0000017541,0.0000017511,0.0000017483,0.0000017458,0.0000017439, -0.0000017431,0.0000017431,0.0000017436,0.0000017445,0.0000017458, -0.0000017474,0.0000017487,0.0000017499,0.0000017510,0.0000017523, -0.0000017527,0.0000017518,0.0000017500,0.0000017477,0.0000017453, -0.0000017422,0.0000017392,0.0000017368,0.0000017345,0.0000017321, -0.0000017305,0.0000017300,0.0000017295,0.0000017285,0.0000017295, -0.0000017308,0.0000017326,0.0000017346,0.0000017365,0.0000017379, -0.0000017385,0.0000017381,0.0000017369,0.0000017357,0.0000017334, -0.0000017309,0.0000017281,0.0000017252,0.0000017230,0.0000017218, -0.0000017207,0.0000017204,0.0000017231,0.0000017275,0.0000017338, -0.0000017417,0.0000017510,0.0000017615,0.0000017733,0.0000017855, -0.0000017975,0.0000018092,0.0000018208,0.0000018324,0.0000018433, -0.0000018531,0.0000018622,0.0000018709,0.0000018782,0.0000018837, -0.0000018878,0.0000018908,0.0000018929,0.0000018943,0.0000018951, -0.0000018957,0.0000018966,0.0000018985,0.0000019014,0.0000019057, -0.0000019112,0.0000019175,0.0000019238,0.0000019298,0.0000019348, -0.0000019386,0.0000019412,0.0000019429,0.0000019438,0.0000019442, -0.0000019443,0.0000019447,0.0000019453,0.0000019461,0.0000019465, -0.0000019468,0.0000019466,0.0000019460,0.0000019453,0.0000019450, -0.0000019454,0.0000019468,0.0000019480,0.0000019487,0.0000019496, -0.0000019510,0.0000019532,0.0000019559,0.0000019588,0.0000019617, -0.0000019640,0.0000019650,0.0000019648,0.0000019637,0.0000019632, -0.0000019631,0.0000019638,0.0000019643,0.0000019645,0.0000019645, -0.0000019640,0.0000019626,0.0000019609,0.0000019592,0.0000019583, -0.0000019581,0.0000019582,0.0000019580,0.0000019578,0.0000019584, -0.0000019593,0.0000019598,0.0000019595,0.0000019594,0.0000019601, -0.0000019615,0.0000019634,0.0000019656,0.0000019675,0.0000019689, -0.0000019697,0.0000019698,0.0000019693,0.0000019688,0.0000019690, -0.0000019693,0.0000019696,0.0000019696,0.0000019703,0.0000019712, -0.0000019719,0.0000019725,0.0000019731,0.0000019734,0.0000019734, -0.0000019734,0.0000019737,0.0000019741,0.0000019747,0.0000019757, -0.0000019767,0.0000019775,0.0000019782,0.0000019792,0.0000019803, -0.0000019813,0.0000019822,0.0000019829,0.0000019835,0.0000019838, -0.0000019839,0.0000019837,0.0000019832,0.0000019823,0.0000019807, -0.0000019789,0.0000019771,0.0000019747,0.0000019718,0.0000019697, -0.0000019674,0.0000019638,0.0000019606,0.0000019593,0.0000019591, -0.0000019593,0.0000019598,0.0000019611,0.0000019628,0.0000019632, -0.0000019625,0.0000019602,0.0000019578,0.0000019561,0.0000019546, -0.0000019530,0.0000019527,0.0000019530,0.0000019533,0.0000019534, -0.0000019534,0.0000019537,0.0000019540,0.0000019540,0.0000019534, -0.0000019516,0.0000019486,0.0000019454,0.0000019424,0.0000019405, -0.0000019403,0.0000019407,0.0000019411,0.0000019409,0.0000019402, -0.0000019394,0.0000019388,0.0000019381,0.0000019370,0.0000019361, -0.0000019342,0.0000019330,0.0000019307,0.0000019272,0.0000019232, -0.0000019199,0.0000019176,0.0000019163,0.0000019161,0.0000019164, -0.0000019163,0.0000019156,0.0000019147,0.0000019140,0.0000019139, -0.0000019140,0.0000019135,0.0000019127,0.0000019118,0.0000019110, -0.0000019101,0.0000019089,0.0000019075,0.0000019065,0.0000019064, -0.0000019067,0.0000019065,0.0000019055,0.0000019043,0.0000019032, -0.0000019028,0.0000019030,0.0000019037,0.0000019049,0.0000019048, -0.0000019040,0.0000019025,0.0000019003,0.0000018978,0.0000018961, -0.0000018950,0.0000018943,0.0000018934,0.0000018926,0.0000018920, -0.0000018927,0.0000018939,0.0000018945,0.0000018942,0.0000018928, -0.0000018901,0.0000018867,0.0000018837,0.0000018833,0.0000018854, -0.0000018882,0.0000018915,0.0000018953,0.0000018987,0.0000019027, -0.0000019048,0.0000019030,0.0000019004,0.0000018957,0.0000018890, -0.0000018828,0.0000018779,0.0000018744,0.0000018735,0.0000018727, -0.0000018728,0.0000018741,0.0000018758,0.0000018781,0.0000018791, -0.0000018803,0.0000018784,0.0000018743,0.0000018704,0.0000018671, -0.0000018641,0.0000018615,0.0000018585,0.0000018547,0.0000018508, -0.0000018461,0.0000018412,0.0000018377,0.0000018332,0.0000018322, -0.0000018343,0.0000018383,0.0000018426,0.0000018472,0.0000018526, -0.0000018575,0.0000018590,0.0000018581,0.0000018564,0.0000018552, -0.0000018531,0.0000018491,0.0000018446,0.0000018413,0.0000018388, -0.0000018368,0.0000018350,0.0000018341,0.0000018351,0.0000018388, -0.0000018457,0.0000018547,0.0000018636,0.0000018705,0.0000018762, -0.0000018797,0.0000018823,0.0000018840,0.0000018841,0.0000018833, -0.0000018813,0.0000018788,0.0000018771,0.0000018745,0.0000018715, -0.0000018681,0.0000018648,0.0000018621,0.0000018594,0.0000018553, -0.0000018504,0.0000018465,0.0000018447,0.0000018446,0.0000018446, -0.0000018455,0.0000018477,0.0000018503,0.0000018518,0.0000018519, -0.0000018500,0.0000018469,0.0000018431,0.0000018390,0.0000018351, -0.0000018315,0.0000018277,0.0000018242,0.0000018216,0.0000018197, -0.0000018176,0.0000018162,0.0000018162,0.0000018196,0.0000018248, -0.0000018302,0.0000018363,0.0000018418,0.0000018454,0.0000018463, -0.0000018449,0.0000018419,0.0000018386,0.0000018346,0.0000018301, -0.0000018257,0.0000018214,0.0000018175,0.0000018139,0.0000018105, -0.0000018091,0.0000018095,0.0000018105,0.0000018107,0.0000018109, -0.0000018111,0.0000018114,0.0000018117,0.0000018116,0.0000018108, -0.0000018094,0.0000018071,0.0000018046,0.0000018019,0.0000017993, -0.0000017971,0.0000017952,0.0000017938,0.0000017930,0.0000017929, -0.0000017936,0.0000017951,0.0000017973,0.0000017995,0.0000018015, -0.0000018028,0.0000018032,0.0000018030,0.0000018025,0.0000018015, -0.0000018001,0.0000017989,0.0000017981,0.0000017975,0.0000017970, -0.0000017963,0.0000017950,0.0000017928,0.0000017901,0.0000017871, -0.0000017839,0.0000017807,0.0000017789,0.0000017780,0.0000017783, -0.0000017799,0.0000017826,0.0000017854,0.0000017877,0.0000017894, -0.0000017908,0.0000017918,0.0000017927,0.0000017935,0.0000017940, -0.0000017943,0.0000017944,0.0000017947,0.0000017946,0.0000017946, -0.0000017939,0.0000017920,0.0000017888,0.0000017844,0.0000017796, -0.0000017752,0.0000017724,0.0000017710,0.0000017711,0.0000017727, -0.0000017754,0.0000017781,0.0000017803,0.0000017816,0.0000017825, -0.0000017819,0.0000017804,0.0000017779,0.0000017765,0.0000017756, -0.0000017770,0.0000017798,0.0000017830,0.0000017862,0.0000017891, -0.0000017921,0.0000017945,0.0000017963,0.0000017963,0.0000017954, -0.0000017948,0.0000017948,0.0000017984,0.0000018053,0.0000018145, -0.0000018237,0.0000018305,0.0000018341,0.0000018351,0.0000018365, -0.0000018392,0.0000018429,0.0000018466,0.0000018493,0.0000018515, -0.0000018552,0.0000018624,0.0000018745,0.0000018906,0.0000019067, -0.0000019201,0.0000019248,0.0000019261,0.0000019217,0.0000019170, -0.0000019134,0.0000019109,0.0000019088,0.0000019072,0.0000019060, -0.0000019044,0.0000019019,0.0000018987,0.0000018953,0.0000018920, -0.0000018890,0.0000018867,0.0000018847,0.0000018828,0.0000018812, -0.0000018797,0.0000018781,0.0000018759,0.0000018730,0.0000018697, -0.0000018668,0.0000018641,0.0000018615,0.0000018585,0.0000018555, -0.0000018529,0.0000018507,0.0000018487,0.0000018466,0.0000018441, -0.0000018406,0.0000018357,0.0000018303,0.0000018255,0.0000018214, -0.0000018171,0.0000018133,0.0000018111,0.0000018110,0.0000018116, -0.0000018128,0.0000018142,0.0000018154,0.0000018162,0.0000018164, -0.0000018162,0.0000018152,0.0000018137,0.0000018121,0.0000018107, -0.0000018098,0.0000018094,0.0000018094,0.0000018100,0.0000018106, -0.0000018114,0.0000018124,0.0000018139,0.0000018158,0.0000018179, -0.0000018203,0.0000018231,0.0000018259,0.0000018283,0.0000018304, -0.0000018318,0.0000018326,0.0000018328,0.0000018324,0.0000018311, -0.0000018292,0.0000018269,0.0000018245,0.0000018221,0.0000018198, -0.0000018180,0.0000018167,0.0000018159,0.0000018158,0.0000018161, -0.0000018169,0.0000018183,0.0000018200,0.0000018222,0.0000018254, -0.0000018295,0.0000018341,0.0000018383,0.0000018420,0.0000018448, -0.0000018473,0.0000018500,0.0000018532,0.0000018570,0.0000018610, -0.0000018631,0.0000018627,0.0000018621,0.0000018633,0.0000018630, -0.0000018595,0.0000018537,0.0000018429,0.0000018383,0.0000018506, -0.0000018754,0.0000018837,0.0000018817,0.0000018744,0.0000018705, -0.0000018693,0.0000018702,0.0000018745,0.0000018707,0.0000018406, -0.0000017937,0.0000017616,0.0000017571,0.0000017688,0.0000017716, -0.0000017655,0.0000017593,0.0000017583,0.0000017593,0.0000017607, -0.0000017627,0.0000017656,0.0000017686,0.0000017709,0.0000017719, -0.0000017711,0.0000017699,0.0000017685,0.0000017675,0.0000017668, -0.0000017663,0.0000017656,0.0000017647,0.0000017639,0.0000017627, -0.0000017614,0.0000017602,0.0000017597,0.0000017592,0.0000017568, -0.0000017526,0.0000017492,0.0000017449,0.0000017367,0.0000017271, -0.0000017232,0.0000017269,0.0000017312,0.0000017344,0.0000017430, -0.0000017516,0.0000017569,0.0000017604,0.0000017600,0.0000017563, -0.0000017548,0.0000017575,0.0000017629,0.0000017688,0.0000017751, -0.0000017809,0.0000017853,0.0000017875,0.0000017883,0.0000017885, -0.0000017885,0.0000017881,0.0000017867,0.0000017843,0.0000017823, -0.0000017812,0.0000017810,0.0000017810,0.0000017814,0.0000017819, -0.0000017829,0.0000017846,0.0000017858,0.0000017860,0.0000017854, -0.0000017844,0.0000017831,0.0000017817,0.0000017802,0.0000017789, -0.0000017777,0.0000017766,0.0000017756,0.0000017746,0.0000017737, -0.0000017731,0.0000017730,0.0000017735,0.0000017744,0.0000017755, -0.0000017764,0.0000017768,0.0000017763,0.0000017757,0.0000017760, -0.0000017788,0.0000017840,0.0000017898,0.0000017952,0.0000017997, -0.0000018034,0.0000018062,0.0000018073,0.0000018066,0.0000018046, -0.0000018031,0.0000018028,0.0000018044,0.0000018072,0.0000018098, -0.0000018120,0.0000018136,0.0000018140,0.0000018136,0.0000018114, -0.0000018076,0.0000018035,0.0000018003,0.0000017993,0.0000017996, -0.0000018015,0.0000018036,0.0000018058,0.0000018076,0.0000018085, -0.0000018085,0.0000018064,0.0000018033,0.0000018003,0.0000017980, -0.0000017978,0.0000017998,0.0000018042,0.0000018115,0.0000018220, -0.0000018335,0.0000018429,0.0000018486,0.0000018508,0.0000018529, -0.0000018541,0.0000018550,0.0000018559,0.0000018572,0.0000018586, -0.0000018599,0.0000018610,0.0000018624,0.0000018639,0.0000018652, -0.0000018666,0.0000018684,0.0000018697,0.0000018713,0.0000018716, -0.0000018714,0.0000018668,0.0000018673,0.0000018676,0.0000018674, -0.0000018666,0.0000018649,0.0000018624,0.0000018597,0.0000018572, -0.0000018554,0.0000018542,0.0000018532,0.0000018525,0.0000018519, -0.0000018513,0.0000018508,0.0000018505,0.0000018503,0.0000018501, -0.0000018501,0.0000018505,0.0000018511,0.0000018515,0.0000018516, -0.0000018513,0.0000018510,0.0000018508,0.0000018508,0.0000018509, -0.0000018511,0.0000018516,0.0000018528,0.0000018546,0.0000018569, -0.0000018598,0.0000018635,0.0000018675,0.0000018712,0.0000018742, -0.0000018756,0.0000018766,0.0000018766,0.0000018759,0.0000018748, -0.0000018733,0.0000018716,0.0000018697,0.0000018674,0.0000018643, -0.0000018603,0.0000018554,0.0000018498,0.0000018439,0.0000018381, -0.0000018326,0.0000018278,0.0000018241,0.0000018213,0.0000018197, -0.0000018196,0.0000018197,0.0000018205,0.0000018218,0.0000018236, -0.0000018254,0.0000018281,0.0000018301,0.0000018312,0.0000018309, -0.0000018295,0.0000018276,0.0000018249,0.0000018213,0.0000018175, -0.0000018148,0.0000018139,0.0000018136,0.0000018138,0.0000018140, -0.0000018129,0.0000018099,0.0000018052,0.0000017989,0.0000017917, -0.0000017852,0.0000017814,0.0000017831,0.0000017895,0.0000017991, -0.0000018088,0.0000018160,0.0000018195,0.0000018203,0.0000018208, -0.0000018216,0.0000018232,0.0000018250,0.0000018263,0.0000018265, -0.0000018257,0.0000018236,0.0000018203,0.0000018163,0.0000018128, -0.0000018101,0.0000018081,0.0000018062,0.0000018041,0.0000018021, -0.0000018003,0.0000017987,0.0000017972,0.0000017957,0.0000017941, -0.0000017923,0.0000017905,0.0000017886,0.0000017869,0.0000017861, -0.0000017865,0.0000017876,0.0000017886,0.0000017890,0.0000017884, -0.0000017872,0.0000017859,0.0000017851,0.0000017846,0.0000017844, -0.0000017839,0.0000017831,0.0000017821,0.0000017812,0.0000017814, -0.0000017837,0.0000017877,0.0000017924,0.0000017963,0.0000017985, -0.0000017992,0.0000017993,0.0000017998,0.0000018000,0.0000018001, -0.0000017994,0.0000017979,0.0000017959,0.0000017933,0.0000017904, -0.0000017879,0.0000017863,0.0000017859,0.0000017862,0.0000017860, -0.0000017839,0.0000017799,0.0000017752,0.0000017713,0.0000017687, -0.0000017673,0.0000017666,0.0000017657,0.0000017638,0.0000017601, -0.0000017550,0.0000017502,0.0000017466,0.0000017441,0.0000017423, -0.0000017415,0.0000017415,0.0000017425,0.0000017443,0.0000017468, -0.0000017496,0.0000017521,0.0000017544,0.0000017569,0.0000017593, -0.0000017617,0.0000017642,0.0000017665,0.0000017687,0.0000017708, -0.0000017725,0.0000017731,0.0000017728,0.0000017721,0.0000017710, -0.0000017699,0.0000017687,0.0000017675,0.0000017660,0.0000017643, -0.0000017626,0.0000017613,0.0000017607,0.0000017610,0.0000017619, -0.0000017633,0.0000017649,0.0000017665,0.0000017678,0.0000017688, -0.0000017695,0.0000017700,0.0000017700,0.0000017697,0.0000017697, -0.0000017693,0.0000017690,0.0000017688,0.0000017688,0.0000017685, -0.0000017676,0.0000017664,0.0000017647,0.0000017622,0.0000017596, -0.0000017578,0.0000017574,0.0000017580,0.0000017598,0.0000017619, -0.0000017645,0.0000017668,0.0000017691,0.0000017711,0.0000017731, -0.0000017749,0.0000017765,0.0000017773,0.0000017774,0.0000017767, -0.0000017753,0.0000017732,0.0000017707,0.0000017674,0.0000017639, -0.0000017604,0.0000017570,0.0000017526,0.0000017474,0.0000017414, -0.0000017355,0.0000017308,0.0000017276,0.0000017258,0.0000017254, -0.0000017259,0.0000017267,0.0000017286,0.0000017322,0.0000017365, -0.0000017415,0.0000017480,0.0000017560,0.0000017654,0.0000017759, -0.0000017856,0.0000017911,0.0000017930,0.0000017963,0.0000018020, -0.0000018092,0.0000018125,0.0000018119,0.0000018037,0.0000017896, -0.0000017738,0.0000017594,0.0000017545,0.0000017527,0.0000017514, -0.0000017497,0.0000017471,0.0000017440,0.0000017408,0.0000017376, -0.0000017334,0.0000017282,0.0000017235,0.0000017213,0.0000017209, -0.0000017217,0.0000017225,0.0000017229,0.0000017233,0.0000017238, -0.0000017254,0.0000017297,0.0000017374,0.0000017488,0.0000017640, -0.0000017806,0.0000017952,0.0000018057,0.0000018129,0.0000018192, -0.0000018257,0.0000018330,0.0000018404,0.0000018476,0.0000018538, -0.0000018589,0.0000018629,0.0000018659,0.0000018681,0.0000018700, -0.0000018715,0.0000018726,0.0000018733,0.0000018735,0.0000018734, -0.0000018728,0.0000018722,0.0000018718,0.0000018715,0.0000018711, -0.0000018707,0.0000018709,0.0000018716,0.0000018724,0.0000018733, -0.0000018743,0.0000018751,0.0000018755,0.0000018752,0.0000018743, -0.0000018729,0.0000018708,0.0000018684,0.0000018658,0.0000018631, -0.0000018601,0.0000018570,0.0000018540,0.0000018505,0.0000018465, -0.0000018420,0.0000018370,0.0000018310,0.0000018235,0.0000018143, -0.0000018038,0.0000017925,0.0000017810,0.0000017698,0.0000017597, -0.0000017515,0.0000017458,0.0000017421,0.0000017395,0.0000017379, -0.0000017374,0.0000017374,0.0000017392,0.0000017420,0.0000017447, -0.0000017459,0.0000017457,0.0000017450,0.0000017433,0.0000017414, -0.0000017395,0.0000017374,0.0000017353,0.0000017336,0.0000017326, -0.0000017323,0.0000017323,0.0000017323,0.0000017322,0.0000017322, -0.0000017324,0.0000017333,0.0000017351,0.0000017373,0.0000017394, -0.0000017414,0.0000017440,0.0000017487,0.0000017562,0.0000017655, -0.0000017736,0.0000017773,0.0000017763,0.0000017716,0.0000017634, -0.0000017549,0.0000017484,0.0000017446,0.0000017427,0.0000017422, -0.0000017422,0.0000017422,0.0000017418,0.0000017412,0.0000017405, -0.0000017401,0.0000017404,0.0000017415,0.0000017435,0.0000017464, -0.0000017500,0.0000017532,0.0000017556,0.0000017572,0.0000017582, -0.0000017587,0.0000017590,0.0000017591,0.0000017593,0.0000017596, -0.0000017590,0.0000017596,0.0000017605,0.0000017616,0.0000017631, -0.0000017650,0.0000017672,0.0000017696,0.0000017721,0.0000017741, -0.0000017758,0.0000017775,0.0000017788,0.0000017798,0.0000017811, -0.0000017819,0.0000017831,0.0000017850,0.0000017868,0.0000017885, -0.0000017904,0.0000017921,0.0000017934,0.0000017948,0.0000017962, -0.0000017975,0.0000017985,0.0000017993,0.0000018001,0.0000018003, -0.0000018001,0.0000017996,0.0000017991,0.0000017990,0.0000017984, -0.0000017975,0.0000017965,0.0000017954,0.0000017939,0.0000017923, -0.0000017914,0.0000017907,0.0000017899,0.0000017899,0.0000017904, -0.0000017913,0.0000017917,0.0000017919,0.0000017921,0.0000017918, -0.0000017912,0.0000017904,0.0000017896,0.0000017889,0.0000017881, -0.0000017874,0.0000017863,0.0000017850,0.0000017835,0.0000017817, -0.0000017801,0.0000017787,0.0000017774,0.0000017759,0.0000017737, -0.0000017703,0.0000017669,0.0000017638,0.0000017603,0.0000017570, -0.0000017537,0.0000017507,0.0000017486,0.0000017472,0.0000017463, -0.0000017459,0.0000017467,0.0000017475,0.0000017484,0.0000017494, -0.0000017508,0.0000017526,0.0000017537,0.0000017539,0.0000017539, -0.0000017534,0.0000017524,0.0000017507,0.0000017492,0.0000017471, -0.0000017445,0.0000017415,0.0000017383,0.0000017348,0.0000017311, -0.0000017275,0.0000017248,0.0000017236,0.0000017230,0.0000017242, -0.0000017271,0.0000017300,0.0000017326,0.0000017351,0.0000017370, -0.0000017378,0.0000017375,0.0000017363,0.0000017341,0.0000017306, -0.0000017270,0.0000017236,0.0000017210,0.0000017198,0.0000017200, -0.0000017212,0.0000017236,0.0000017268,0.0000017308,0.0000017355, -0.0000017410,0.0000017471,0.0000017536,0.0000017603,0.0000017676, -0.0000017754,0.0000017837,0.0000017922,0.0000018009,0.0000018101, -0.0000018193,0.0000018280,0.0000018363,0.0000018443,0.0000018518, -0.0000018588,0.0000018652,0.0000018710,0.0000018764,0.0000018819, -0.0000018876,0.0000018933,0.0000018989,0.0000019046,0.0000019105, -0.0000019165,0.0000019221,0.0000019270,0.0000019309,0.0000019341, -0.0000019365,0.0000019381,0.0000019390,0.0000019396,0.0000019401, -0.0000019404,0.0000019404,0.0000019400,0.0000019394,0.0000019387, -0.0000019382,0.0000019379,0.0000019384,0.0000019394,0.0000019404, -0.0000019412,0.0000019422,0.0000019436,0.0000019454,0.0000019474, -0.0000019499,0.0000019527,0.0000019549,0.0000019564,0.0000019573, -0.0000019579,0.0000019586,0.0000019595,0.0000019606,0.0000019612, -0.0000019615,0.0000019616,0.0000019610,0.0000019597,0.0000019574, -0.0000019542,0.0000019507,0.0000019473,0.0000019444,0.0000019420, -0.0000019413,0.0000019426,0.0000019453,0.0000019478,0.0000019494, -0.0000019504,0.0000019513,0.0000019523,0.0000019537,0.0000019553, -0.0000019568,0.0000019583,0.0000019593,0.0000019596,0.0000019597, -0.0000019601,0.0000019606,0.0000019610,0.0000019613,0.0000019615, -0.0000019621,0.0000019624,0.0000019627,0.0000019631,0.0000019637, -0.0000019642,0.0000019648,0.0000019661,0.0000019673,0.0000019683, -0.0000019697,0.0000019714,0.0000019730,0.0000019741,0.0000019750, -0.0000019759,0.0000019764,0.0000019766,0.0000019765,0.0000019764, -0.0000019764,0.0000019764,0.0000019771,0.0000019781,0.0000019787, -0.0000019787,0.0000019786,0.0000019785,0.0000019776,0.0000019759, -0.0000019745,0.0000019733,0.0000019712,0.0000019693,0.0000019683, -0.0000019673,0.0000019663,0.0000019656,0.0000019661,0.0000019672, -0.0000019675,0.0000019665,0.0000019644,0.0000019625,0.0000019614, -0.0000019602,0.0000019584,0.0000019567,0.0000019554,0.0000019546, -0.0000019539,0.0000019535,0.0000019536,0.0000019541,0.0000019544, -0.0000019541,0.0000019529,0.0000019509,0.0000019478,0.0000019437, -0.0000019403,0.0000019378,0.0000019364,0.0000019362,0.0000019360, -0.0000019354,0.0000019346,0.0000019340,0.0000019333,0.0000019320, -0.0000019305,0.0000019292,0.0000019288,0.0000019285,0.0000019277, -0.0000019252,0.0000019235,0.0000019208,0.0000019185,0.0000019167, -0.0000019154,0.0000019142,0.0000019120,0.0000019106,0.0000019094, -0.0000019088,0.0000019091,0.0000019095,0.0000019092,0.0000019074, -0.0000019047,0.0000019024,0.0000019005,0.0000018981,0.0000018965, -0.0000018965,0.0000018974,0.0000018988,0.0000018994,0.0000018991, -0.0000018983,0.0000018975,0.0000018968,0.0000018972,0.0000018987, -0.0000019006,0.0000019022,0.0000019031,0.0000019028,0.0000019028, -0.0000019016,0.0000019000,0.0000018976,0.0000018954,0.0000018927, -0.0000018909,0.0000018900,0.0000018909,0.0000018919,0.0000018920, -0.0000018909,0.0000018881,0.0000018843,0.0000018810,0.0000018803, -0.0000018817,0.0000018839,0.0000018859,0.0000018876,0.0000018892, -0.0000018913,0.0000018941,0.0000018958,0.0000018981,0.0000018975, -0.0000018966,0.0000018932,0.0000018884,0.0000018829,0.0000018783, -0.0000018740,0.0000018718,0.0000018708,0.0000018712,0.0000018729, -0.0000018747,0.0000018762,0.0000018775,0.0000018775,0.0000018785, -0.0000018782,0.0000018771,0.0000018742,0.0000018697,0.0000018652, -0.0000018612,0.0000018574,0.0000018535,0.0000018487,0.0000018435, -0.0000018389,0.0000018354,0.0000018343,0.0000018312,0.0000018282, -0.0000018279,0.0000018305,0.0000018356,0.0000018422,0.0000018511, -0.0000018594,0.0000018650,0.0000018653,0.0000018611,0.0000018536, -0.0000018452,0.0000018382,0.0000018335,0.0000018309,0.0000018302, -0.0000018304,0.0000018321,0.0000018354,0.0000018401,0.0000018471, -0.0000018562,0.0000018643,0.0000018717,0.0000018775,0.0000018812, -0.0000018830,0.0000018829,0.0000018817,0.0000018797,0.0000018766, -0.0000018737,0.0000018706,0.0000018683,0.0000018675,0.0000018661, -0.0000018622,0.0000018564,0.0000018509,0.0000018467,0.0000018437, -0.0000018416,0.0000018416,0.0000018436,0.0000018467,0.0000018489, -0.0000018499,0.0000018488,0.0000018461,0.0000018424,0.0000018379, -0.0000018339,0.0000018309,0.0000018281,0.0000018248,0.0000018216, -0.0000018194,0.0000018174,0.0000018154,0.0000018152,0.0000018176, -0.0000018220,0.0000018272,0.0000018329,0.0000018384,0.0000018429, -0.0000018448,0.0000018441,0.0000018416,0.0000018382,0.0000018348, -0.0000018314,0.0000018283,0.0000018247,0.0000018207,0.0000018169, -0.0000018133,0.0000018108,0.0000018103,0.0000018108,0.0000018109, -0.0000018102,0.0000018100,0.0000018105,0.0000018110,0.0000018108, -0.0000018100,0.0000018084,0.0000018063,0.0000018041,0.0000018014, -0.0000017984,0.0000017955,0.0000017928,0.0000017906,0.0000017893, -0.0000017891,0.0000017895,0.0000017909,0.0000017931,0.0000017958, -0.0000017986,0.0000018006,0.0000018015,0.0000018014,0.0000018008, -0.0000017996,0.0000017979,0.0000017964,0.0000017955,0.0000017949, -0.0000017945,0.0000017942,0.0000017934,0.0000017919,0.0000017902, -0.0000017887,0.0000017867,0.0000017840,0.0000017810,0.0000017788, -0.0000017777,0.0000017777,0.0000017782,0.0000017791,0.0000017798, -0.0000017799,0.0000017792,0.0000017780,0.0000017770,0.0000017771, -0.0000017781,0.0000017803,0.0000017832,0.0000017863,0.0000017890, -0.0000017912,0.0000017931,0.0000017927,0.0000017913,0.0000017881, -0.0000017831,0.0000017775,0.0000017723,0.0000017699,0.0000017685, -0.0000017695,0.0000017724,0.0000017757,0.0000017786,0.0000017806, -0.0000017821,0.0000017821,0.0000017816,0.0000017796,0.0000017764, -0.0000017748,0.0000017738,0.0000017750,0.0000017779,0.0000017810, -0.0000017836,0.0000017862,0.0000017894,0.0000017927,0.0000017952, -0.0000017958,0.0000017953,0.0000017947,0.0000017943,0.0000017974, -0.0000018038,0.0000018127,0.0000018214,0.0000018272,0.0000018303, -0.0000018312,0.0000018323,0.0000018354,0.0000018397,0.0000018437, -0.0000018463,0.0000018481,0.0000018510,0.0000018575,0.0000018695, -0.0000018861,0.0000019033,0.0000019180,0.0000019235,0.0000019246, -0.0000019208,0.0000019163,0.0000019131,0.0000019114,0.0000019105, -0.0000019100,0.0000019094,0.0000019083,0.0000019065,0.0000019034, -0.0000018989,0.0000018939,0.0000018895,0.0000018863,0.0000018838, -0.0000018818,0.0000018801,0.0000018787,0.0000018773,0.0000018758, -0.0000018739,0.0000018717,0.0000018695,0.0000018673,0.0000018646, -0.0000018612,0.0000018574,0.0000018535,0.0000018500,0.0000018469, -0.0000018440,0.0000018409,0.0000018373,0.0000018334,0.0000018293, -0.0000018251,0.0000018209,0.0000018172,0.0000018146,0.0000018129, -0.0000018122,0.0000018121,0.0000018124,0.0000018128,0.0000018131, -0.0000018131,0.0000018129,0.0000018122,0.0000018113,0.0000018104, -0.0000018099,0.0000018100,0.0000018107,0.0000018116,0.0000018126, -0.0000018136,0.0000018149,0.0000018164,0.0000018181,0.0000018201, -0.0000018227,0.0000018253,0.0000018278,0.0000018300,0.0000018317, -0.0000018330,0.0000018339,0.0000018344,0.0000018343,0.0000018336, -0.0000018325,0.0000018310,0.0000018294,0.0000018279,0.0000018269, -0.0000018265,0.0000018269,0.0000018280,0.0000018295,0.0000018313, -0.0000018333,0.0000018350,0.0000018363,0.0000018372,0.0000018383, -0.0000018398,0.0000018413,0.0000018429,0.0000018447,0.0000018476, -0.0000018521,0.0000018578,0.0000018637,0.0000018694,0.0000018731, -0.0000018730,0.0000018682,0.0000018642,0.0000018639,0.0000018628, -0.0000018582,0.0000018476,0.0000018393,0.0000018470,0.0000018708, -0.0000018840,0.0000018819,0.0000018778,0.0000018713,0.0000018703, -0.0000018688,0.0000018691,0.0000018730,0.0000018704,0.0000018269, -0.0000017722,0.0000017580,0.0000017700,0.0000017715,0.0000017622, -0.0000017573,0.0000017594,0.0000017613,0.0000017610,0.0000017617, -0.0000017623,0.0000017630,0.0000017649,0.0000017675,0.0000017698, -0.0000017707,0.0000017707,0.0000017699,0.0000017689,0.0000017682, -0.0000017680,0.0000017682,0.0000017686,0.0000017685,0.0000017677, -0.0000017667,0.0000017652,0.0000017624,0.0000017584,0.0000017541, -0.0000017511,0.0000017474,0.0000017400,0.0000017312,0.0000017253, -0.0000017272,0.0000017311,0.0000017360,0.0000017455,0.0000017533, -0.0000017585,0.0000017601,0.0000017568,0.0000017536,0.0000017554, -0.0000017610,0.0000017679,0.0000017748,0.0000017810,0.0000017847, -0.0000017859,0.0000017864,0.0000017866,0.0000017872,0.0000017875, -0.0000017866,0.0000017840,0.0000017815,0.0000017805,0.0000017804, -0.0000017805,0.0000017810,0.0000017828,0.0000017865,0.0000017908, -0.0000017943,0.0000017964,0.0000017968,0.0000017963,0.0000017946, -0.0000017922,0.0000017894,0.0000017865,0.0000017841,0.0000017821, -0.0000017805,0.0000017791,0.0000017779,0.0000017767,0.0000017757, -0.0000017750,0.0000017747,0.0000017750,0.0000017761,0.0000017774, -0.0000017787,0.0000017789,0.0000017778,0.0000017759,0.0000017746, -0.0000017748,0.0000017774,0.0000017821,0.0000017871,0.0000017915, -0.0000017954,0.0000017983,0.0000017999,0.0000017999,0.0000017991, -0.0000017985,0.0000017994,0.0000018023,0.0000018057,0.0000018084, -0.0000018103,0.0000018121,0.0000018137,0.0000018142,0.0000018136, -0.0000018112,0.0000018077,0.0000018049,0.0000018035,0.0000018036, -0.0000018043,0.0000018051,0.0000018060,0.0000018074,0.0000018092, -0.0000018106,0.0000018110,0.0000018097,0.0000018069,0.0000018037, -0.0000018018,0.0000018021,0.0000018027,0.0000018057,0.0000018128, -0.0000018234,0.0000018350,0.0000018442,0.0000018501,0.0000018536, -0.0000018555,0.0000018573,0.0000018594,0.0000018612,0.0000018627, -0.0000018640,0.0000018652,0.0000018665,0.0000018677,0.0000018684, -0.0000018688,0.0000018688,0.0000018685,0.0000018676,0.0000018667, -0.0000018652,0.0000018646,0.0000018624,0.0000018592,0.0000018560, -0.0000018536,0.0000018522,0.0000018513,0.0000018507,0.0000018502, -0.0000018496,0.0000018488,0.0000018477,0.0000018463,0.0000018452, -0.0000018446,0.0000018447,0.0000018450,0.0000018454,0.0000018458, -0.0000018463,0.0000018472,0.0000018480,0.0000018484,0.0000018483, -0.0000018480,0.0000018477,0.0000018474,0.0000018472,0.0000018471, -0.0000018470,0.0000018473,0.0000018480,0.0000018491,0.0000018506, -0.0000018529,0.0000018564,0.0000018609,0.0000018658,0.0000018706, -0.0000018741,0.0000018761,0.0000018765,0.0000018768,0.0000018766, -0.0000018761,0.0000018751,0.0000018738,0.0000018722,0.0000018700, -0.0000018670,0.0000018629,0.0000018578,0.0000018519,0.0000018454, -0.0000018391,0.0000018333,0.0000018279,0.0000018233,0.0000018204, -0.0000018194,0.0000018191,0.0000018197,0.0000018213,0.0000018244, -0.0000018279,0.0000018315,0.0000018346,0.0000018376,0.0000018387, -0.0000018380,0.0000018357,0.0000018317,0.0000018262,0.0000018204, -0.0000018158,0.0000018135,0.0000018137,0.0000018140,0.0000018145, -0.0000018138,0.0000018112,0.0000018066,0.0000018007,0.0000017939, -0.0000017882,0.0000017851,0.0000017856,0.0000017900,0.0000017981, -0.0000018075,0.0000018149,0.0000018189,0.0000018204,0.0000018210, -0.0000018219,0.0000018233,0.0000018248,0.0000018257,0.0000018255, -0.0000018247,0.0000018230,0.0000018207,0.0000018180,0.0000018157, -0.0000018142,0.0000018130,0.0000018118,0.0000018105,0.0000018089, -0.0000018067,0.0000018043,0.0000018021,0.0000018005,0.0000017991, -0.0000017981,0.0000017968,0.0000017952,0.0000017932,0.0000017913, -0.0000017901,0.0000017898,0.0000017903,0.0000017909,0.0000017908, -0.0000017899,0.0000017884,0.0000017868,0.0000017855,0.0000017847, -0.0000017842,0.0000017835,0.0000017823,0.0000017807,0.0000017795, -0.0000017801,0.0000017826,0.0000017863,0.0000017906,0.0000017945, -0.0000017971,0.0000017990,0.0000018002,0.0000018005,0.0000018005, -0.0000017999,0.0000017984,0.0000017961,0.0000017931,0.0000017900, -0.0000017873,0.0000017852,0.0000017835,0.0000017811,0.0000017772, -0.0000017726,0.0000017689,0.0000017665,0.0000017653,0.0000017647, -0.0000017640,0.0000017627,0.0000017599,0.0000017555,0.0000017509, -0.0000017476,0.0000017458,0.0000017450,0.0000017449,0.0000017454, -0.0000017466,0.0000017482,0.0000017501,0.0000017527,0.0000017555, -0.0000017578,0.0000017595,0.0000017609,0.0000017622,0.0000017635, -0.0000017647,0.0000017656,0.0000017664,0.0000017676,0.0000017689, -0.0000017702,0.0000017711,0.0000017714,0.0000017711,0.0000017707, -0.0000017701,0.0000017690,0.0000017678,0.0000017664,0.0000017649, -0.0000017632,0.0000017615,0.0000017605,0.0000017605,0.0000017609, -0.0000017620,0.0000017636,0.0000017651,0.0000017664,0.0000017677, -0.0000017687,0.0000017693,0.0000017697,0.0000017700,0.0000017702, -0.0000017704,0.0000017706,0.0000017709,0.0000017707,0.0000017700, -0.0000017686,0.0000017665,0.0000017647,0.0000017634,0.0000017629, -0.0000017644,0.0000017661,0.0000017682,0.0000017706,0.0000017732, -0.0000017758,0.0000017782,0.0000017799,0.0000017813,0.0000017825, -0.0000017830,0.0000017826,0.0000017817,0.0000017801,0.0000017777, -0.0000017748,0.0000017715,0.0000017677,0.0000017640,0.0000017611, -0.0000017584,0.0000017554,0.0000017519,0.0000017479,0.0000017438, -0.0000017397,0.0000017362,0.0000017331,0.0000017305,0.0000017289, -0.0000017279,0.0000017284,0.0000017290,0.0000017301,0.0000017327, -0.0000017372,0.0000017434,0.0000017509,0.0000017599,0.0000017699, -0.0000017798,0.0000017874,0.0000017911,0.0000017935,0.0000017975, -0.0000018039,0.0000018083,0.0000018111,0.0000018055,0.0000017928, -0.0000017769,0.0000017613,0.0000017516,0.0000017489,0.0000017470, -0.0000017451,0.0000017426,0.0000017398,0.0000017376,0.0000017354, -0.0000017321,0.0000017277,0.0000017233,0.0000017214,0.0000017204, -0.0000017209,0.0000017222,0.0000017236,0.0000017248,0.0000017256, -0.0000017266,0.0000017283,0.0000017325,0.0000017392,0.0000017491, -0.0000017620,0.0000017762,0.0000017895,0.0000018002,0.0000018081, -0.0000018139,0.0000018187,0.0000018230,0.0000018272,0.0000018312, -0.0000018346,0.0000018376,0.0000018402,0.0000018424,0.0000018443, -0.0000018457,0.0000018466,0.0000018471,0.0000018473,0.0000018471, -0.0000018473,0.0000018473,0.0000018470,0.0000018466,0.0000018465, -0.0000018468,0.0000018473,0.0000018477,0.0000018482,0.0000018485, -0.0000018484,0.0000018477,0.0000018465,0.0000018450,0.0000018433, -0.0000018413,0.0000018391,0.0000018367,0.0000018340,0.0000018314, -0.0000018283,0.0000018242,0.0000018190,0.0000018126,0.0000018049, -0.0000017961,0.0000017863,0.0000017763,0.0000017667,0.0000017586, -0.0000017524,0.0000017477,0.0000017438,0.0000017407,0.0000017382, -0.0000017367,0.0000017368,0.0000017374,0.0000017396,0.0000017425, -0.0000017454,0.0000017471,0.0000017476,0.0000017467,0.0000017447, -0.0000017422,0.0000017396,0.0000017374,0.0000017357,0.0000017343, -0.0000017331,0.0000017321,0.0000017312,0.0000017308,0.0000017308, -0.0000017311,0.0000017317,0.0000017327,0.0000017348,0.0000017378, -0.0000017409,0.0000017436,0.0000017467,0.0000017518,0.0000017594, -0.0000017689,0.0000017777,0.0000017816,0.0000017791,0.0000017739, -0.0000017651,0.0000017567,0.0000017504,0.0000017469,0.0000017458, -0.0000017457,0.0000017457,0.0000017455,0.0000017450,0.0000017442, -0.0000017434,0.0000017431,0.0000017439,0.0000017459,0.0000017486, -0.0000017516,0.0000017543,0.0000017564,0.0000017576,0.0000017581, -0.0000017581,0.0000017582,0.0000017586,0.0000017593,0.0000017612, -0.0000017633,0.0000017653,0.0000017669,0.0000017679,0.0000017684, -0.0000017683,0.0000017679,0.0000017679,0.0000017686,0.0000017701, -0.0000017721,0.0000017737,0.0000017752,0.0000017772,0.0000017798, -0.0000017827,0.0000017862,0.0000017890,0.0000017917,0.0000017952, -0.0000017988,0.0000018019,0.0000018046,0.0000018071,0.0000018094, -0.0000018114,0.0000018130,0.0000018144,0.0000018154,0.0000018160, -0.0000018164,0.0000018165,0.0000018161,0.0000018149,0.0000018134, -0.0000018121,0.0000018110,0.0000018093,0.0000018075,0.0000018056, -0.0000018039,0.0000018019,0.0000017999,0.0000017990,0.0000017982, -0.0000017969,0.0000017964,0.0000017969,0.0000017982,0.0000017995, -0.0000018006,0.0000018015,0.0000018021,0.0000018018,0.0000018009, -0.0000017994,0.0000017977,0.0000017961,0.0000017944,0.0000017924, -0.0000017905,0.0000017886,0.0000017868,0.0000017854,0.0000017844, -0.0000017836,0.0000017830,0.0000017819,0.0000017798,0.0000017775, -0.0000017751,0.0000017721,0.0000017688,0.0000017651,0.0000017616, -0.0000017589,0.0000017566,0.0000017544,0.0000017526,0.0000017516, -0.0000017508,0.0000017502,0.0000017500,0.0000017506,0.0000017519, -0.0000017526,0.0000017530,0.0000017535,0.0000017539,0.0000017540, -0.0000017541,0.0000017543,0.0000017532,0.0000017513,0.0000017493, -0.0000017468,0.0000017434,0.0000017392,0.0000017345,0.0000017298, -0.0000017254,0.0000017220,0.0000017207,0.0000017215,0.0000017223, -0.0000017244,0.0000017278,0.0000017309,0.0000017334,0.0000017353, -0.0000017362,0.0000017361,0.0000017344,0.0000017317,0.0000017282, -0.0000017244,0.0000017217,0.0000017208,0.0000017211,0.0000017221, -0.0000017237,0.0000017260,0.0000017288,0.0000017318,0.0000017350, -0.0000017384,0.0000017419,0.0000017455,0.0000017490,0.0000017523, -0.0000017557,0.0000017596,0.0000017637,0.0000017681,0.0000017726, -0.0000017775,0.0000017832,0.0000017896,0.0000017965,0.0000018039, -0.0000018123,0.0000018220,0.0000018328,0.0000018446,0.0000018568, -0.0000018686,0.0000018799,0.0000018905,0.0000019000,0.0000019080, -0.0000019144,0.0000019194,0.0000019233,0.0000019260,0.0000019279, -0.0000019291,0.0000019301,0.0000019308,0.0000019314,0.0000019322, -0.0000019328,0.0000019329,0.0000019328,0.0000019329,0.0000019333, -0.0000019340,0.0000019347,0.0000019356,0.0000019364,0.0000019376, -0.0000019392,0.0000019411,0.0000019432,0.0000019455,0.0000019475, -0.0000019488,0.0000019496,0.0000019502,0.0000019516,0.0000019535, -0.0000019557,0.0000019575,0.0000019587,0.0000019595,0.0000019599, -0.0000019597,0.0000019585,0.0000019564,0.0000019539,0.0000019505, -0.0000019463,0.0000019415,0.0000019376,0.0000019342,0.0000019333, -0.0000019339,0.0000019347,0.0000019358,0.0000019374,0.0000019391, -0.0000019408,0.0000019424,0.0000019439,0.0000019453,0.0000019465, -0.0000019473,0.0000019482,0.0000019489,0.0000019497,0.0000019505, -0.0000019512,0.0000019516,0.0000019521,0.0000019524,0.0000019521, -0.0000019513,0.0000019502,0.0000019489,0.0000019477,0.0000019469, -0.0000019465,0.0000019465,0.0000019469,0.0000019482,0.0000019500, -0.0000019521,0.0000019545,0.0000019569,0.0000019590,0.0000019606, -0.0000019619,0.0000019629,0.0000019640,0.0000019651,0.0000019667, -0.0000019686,0.0000019706,0.0000019722,0.0000019737,0.0000019748, -0.0000019749,0.0000019740,0.0000019732,0.0000019725,0.0000019710, -0.0000019701,0.0000019703,0.0000019705,0.0000019700,0.0000019694, -0.0000019695,0.0000019700,0.0000019697,0.0000019683,0.0000019661, -0.0000019642,0.0000019629,0.0000019620,0.0000019613,0.0000019609, -0.0000019608,0.0000019605,0.0000019601,0.0000019600,0.0000019605, -0.0000019615,0.0000019628,0.0000019629,0.0000019618,0.0000019599, -0.0000019572,0.0000019535,0.0000019487,0.0000019435,0.0000019388, -0.0000019357,0.0000019350,0.0000019338,0.0000019327,0.0000019320, -0.0000019316,0.0000019306,0.0000019285,0.0000019267,0.0000019248, -0.0000019232,0.0000019216,0.0000019207,0.0000019202,0.0000019199, -0.0000019197,0.0000019193,0.0000019182,0.0000019162,0.0000019138, -0.0000019114,0.0000019089,0.0000019074,0.0000019081,0.0000019091, -0.0000019101,0.0000019098,0.0000019080,0.0000019057,0.0000019026, -0.0000018990,0.0000018956,0.0000018932,0.0000018942,0.0000018950, -0.0000018963,0.0000018975,0.0000018969,0.0000018960,0.0000018947, -0.0000018945,0.0000018934,0.0000018945,0.0000018959,0.0000018972, -0.0000018990,0.0000019003,0.0000019020,0.0000019027,0.0000019027, -0.0000019008,0.0000018973,0.0000018931,0.0000018903,0.0000018900, -0.0000018903,0.0000018911,0.0000018903,0.0000018876,0.0000018832, -0.0000018797,0.0000018779,0.0000018789,0.0000018814,0.0000018837, -0.0000018853,0.0000018856,0.0000018855,0.0000018853,0.0000018853, -0.0000018865,0.0000018886,0.0000018899,0.0000018914,0.0000018909, -0.0000018908,0.0000018881,0.0000018836,0.0000018790,0.0000018753, -0.0000018721,0.0000018716,0.0000018706,0.0000018708,0.0000018718, -0.0000018726,0.0000018750,0.0000018784,0.0000018817,0.0000018828, -0.0000018819,0.0000018794,0.0000018752,0.0000018700,0.0000018648, -0.0000018598,0.0000018554,0.0000018520,0.0000018497,0.0000018469, -0.0000018415,0.0000018336,0.0000018271,0.0000018202,0.0000018166, -0.0000018172,0.0000018224,0.0000018333,0.0000018467,0.0000018578, -0.0000018634,0.0000018642,0.0000018613,0.0000018551,0.0000018465, -0.0000018373,0.0000018317,0.0000018306,0.0000018317,0.0000018339, -0.0000018355,0.0000018381,0.0000018413,0.0000018451,0.0000018509, -0.0000018579,0.0000018652,0.0000018718,0.0000018773,0.0000018802, -0.0000018799,0.0000018779,0.0000018761,0.0000018728,0.0000018704, -0.0000018703,0.0000018705,0.0000018686,0.0000018642,0.0000018589, -0.0000018541,0.0000018489,0.0000018433,0.0000018400,0.0000018392, -0.0000018399,0.0000018422,0.0000018439,0.0000018447,0.0000018440, -0.0000018411,0.0000018369,0.0000018329,0.0000018306,0.0000018287, -0.0000018257,0.0000018225,0.0000018202,0.0000018187,0.0000018174, -0.0000018167,0.0000018172,0.0000018198,0.0000018238,0.0000018289, -0.0000018339,0.0000018383,0.0000018418,0.0000018423,0.0000018404, -0.0000018377,0.0000018349,0.0000018327,0.0000018306,0.0000018279, -0.0000018246,0.0000018212,0.0000018179,0.0000018151,0.0000018136, -0.0000018133,0.0000018129,0.0000018119,0.0000018111,0.0000018116, -0.0000018128,0.0000018135,0.0000018134,0.0000018125,0.0000018112, -0.0000018096,0.0000018074,0.0000018040,0.0000017998,0.0000017955, -0.0000017920,0.0000017899,0.0000017891,0.0000017888,0.0000017883, -0.0000017883,0.0000017890,0.0000017903,0.0000017916,0.0000017922, -0.0000017922,0.0000017916,0.0000017901,0.0000017881,0.0000017863, -0.0000017855,0.0000017852,0.0000017852,0.0000017852,0.0000017850, -0.0000017845,0.0000017841,0.0000017837,0.0000017831,0.0000017816, -0.0000017796,0.0000017775,0.0000017757,0.0000017748,0.0000017744, -0.0000017740,0.0000017734,0.0000017725,0.0000017709,0.0000017688, -0.0000017664,0.0000017642,0.0000017636,0.0000017649,0.0000017678, -0.0000017718,0.0000017764,0.0000017810,0.0000017847,0.0000017875, -0.0000017891,0.0000017881,0.0000017858,0.0000017819,0.0000017771, -0.0000017723,0.0000017688,0.0000017683,0.0000017695,0.0000017716, -0.0000017738,0.0000017758,0.0000017778,0.0000017797,0.0000017805, -0.0000017800,0.0000017778,0.0000017746,0.0000017730,0.0000017726, -0.0000017743,0.0000017770,0.0000017794,0.0000017815,0.0000017839, -0.0000017872,0.0000017909,0.0000017940,0.0000017952,0.0000017952, -0.0000017945,0.0000017937,0.0000017962,0.0000018019,0.0000018099, -0.0000018179,0.0000018233,0.0000018264,0.0000018272,0.0000018287, -0.0000018321,0.0000018370,0.0000018415,0.0000018438,0.0000018447, -0.0000018469,0.0000018528,0.0000018647,0.0000018819,0.0000019000, -0.0000019149,0.0000019219,0.0000019233,0.0000019203,0.0000019158, -0.0000019124,0.0000019112,0.0000019115,0.0000019122,0.0000019132, -0.0000019131,0.0000019116,0.0000019082,0.0000019033,0.0000018975, -0.0000018915,0.0000018867,0.0000018833,0.0000018808,0.0000018785, -0.0000018769,0.0000018762,0.0000018758,0.0000018752,0.0000018743, -0.0000018729,0.0000018708,0.0000018675,0.0000018634,0.0000018593, -0.0000018552,0.0000018513,0.0000018473,0.0000018431,0.0000018388, -0.0000018348,0.0000018312,0.0000018282,0.0000018257,0.0000018234, -0.0000018212,0.0000018191,0.0000018171,0.0000018153,0.0000018138, -0.0000018127,0.0000018119,0.0000018113,0.0000018108,0.0000018105, -0.0000018103,0.0000018106,0.0000018112,0.0000018124,0.0000018139, -0.0000018156,0.0000018171,0.0000018185,0.0000018197,0.0000018211, -0.0000018228,0.0000018248,0.0000018268,0.0000018288,0.0000018306, -0.0000018325,0.0000018346,0.0000018368,0.0000018389,0.0000018406, -0.0000018418,0.0000018425,0.0000018428,0.0000018427,0.0000018425, -0.0000018424,0.0000018423,0.0000018428,0.0000018438,0.0000018448, -0.0000018456,0.0000018458,0.0000018453,0.0000018442,0.0000018430, -0.0000018426,0.0000018432,0.0000018452,0.0000018484,0.0000018528, -0.0000018589,0.0000018656,0.0000018716,0.0000018762,0.0000018800, -0.0000018819,0.0000018795,0.0000018706,0.0000018645,0.0000018638, -0.0000018613,0.0000018529,0.0000018414,0.0000018442,0.0000018659, -0.0000018836,0.0000018820,0.0000018801,0.0000018733,0.0000018710, -0.0000018702,0.0000018682,0.0000018684,0.0000018728,0.0000018634, -0.0000018001,0.0000017606,0.0000017683,0.0000017724,0.0000017619, -0.0000017589,0.0000017652,0.0000017654,0.0000017620,0.0000017633, -0.0000017647,0.0000017640,0.0000017622,0.0000017613,0.0000017630, -0.0000017663,0.0000017696,0.0000017719,0.0000017730,0.0000017728, -0.0000017725,0.0000017730,0.0000017741,0.0000017751,0.0000017751, -0.0000017736,0.0000017700,0.0000017644,0.0000017590,0.0000017547, -0.0000017521,0.0000017490,0.0000017422,0.0000017348,0.0000017287, -0.0000017282,0.0000017313,0.0000017379,0.0000017483,0.0000017556, -0.0000017601,0.0000017587,0.0000017537,0.0000017537,0.0000017594, -0.0000017669,0.0000017744,0.0000017803,0.0000017827,0.0000017832, -0.0000017830,0.0000017837,0.0000017853,0.0000017867,0.0000017870, -0.0000017850,0.0000017818,0.0000017800,0.0000017799,0.0000017802, -0.0000017803,0.0000017815,0.0000017857,0.0000017920,0.0000017979, -0.0000018015,0.0000018030,0.0000018034,0.0000018034,0.0000018028, -0.0000018015,0.0000017995,0.0000017968,0.0000017936,0.0000017903, -0.0000017872,0.0000017847,0.0000017827,0.0000017810,0.0000017794, -0.0000017780,0.0000017768,0.0000017761,0.0000017762,0.0000017769, -0.0000017783,0.0000017796,0.0000017798,0.0000017788,0.0000017766, -0.0000017746,0.0000017736,0.0000017743,0.0000017769,0.0000017804, -0.0000017840,0.0000017875,0.0000017902,0.0000017918,0.0000017925, -0.0000017929,0.0000017938,0.0000017966,0.0000018010,0.0000018049, -0.0000018074,0.0000018094,0.0000018114,0.0000018133,0.0000018143, -0.0000018142,0.0000018131,0.0000018110,0.0000018087,0.0000018076, -0.0000018074,0.0000018071,0.0000018071,0.0000018074,0.0000018080, -0.0000018096,0.0000018116,0.0000018133,0.0000018139,0.0000018123, -0.0000018101,0.0000018085,0.0000018069,0.0000018053,0.0000018055, -0.0000018079,0.0000018149,0.0000018256,0.0000018366,0.0000018449, -0.0000018499,0.0000018533,0.0000018561,0.0000018584,0.0000018605, -0.0000018622,0.0000018636,0.0000018643,0.0000018645,0.0000018642, -0.0000018636,0.0000018632,0.0000018638,0.0000018645,0.0000018649, -0.0000018548,0.0000018517,0.0000018491,0.0000018476,0.0000018474, -0.0000018474,0.0000018472,0.0000018466,0.0000018460,0.0000018454, -0.0000018447,0.0000018438,0.0000018429,0.0000018419,0.0000018413, -0.0000018412,0.0000018414,0.0000018418,0.0000018425,0.0000018432, -0.0000018437,0.0000018441,0.0000018445,0.0000018447,0.0000018446, -0.0000018442,0.0000018437,0.0000018431,0.0000018427,0.0000018424, -0.0000018422,0.0000018423,0.0000018427,0.0000018434,0.0000018442, -0.0000018454,0.0000018474,0.0000018505,0.0000018548,0.0000018598, -0.0000018649,0.0000018693,0.0000018727,0.0000018750,0.0000018761, -0.0000018762,0.0000018755,0.0000018746,0.0000018740,0.0000018734, -0.0000018724,0.0000018706,0.0000018678,0.0000018643,0.0000018602, -0.0000018549,0.0000018491,0.0000018428,0.0000018360,0.0000018295, -0.0000018244,0.0000018212,0.0000018192,0.0000018204,0.0000018220, -0.0000018254,0.0000018294,0.0000018338,0.0000018384,0.0000018418, -0.0000018443,0.0000018447,0.0000018427,0.0000018384,0.0000018318, -0.0000018242,0.0000018179,0.0000018142,0.0000018136,0.0000018140, -0.0000018147,0.0000018147,0.0000018130,0.0000018092,0.0000018033, -0.0000017973,0.0000017925,0.0000017891,0.0000017891,0.0000017910, -0.0000017972,0.0000018054,0.0000018125,0.0000018171,0.0000018195, -0.0000018207,0.0000018217,0.0000018229,0.0000018240,0.0000018247, -0.0000018244,0.0000018238,0.0000018227,0.0000018211,0.0000018194, -0.0000018182,0.0000018177,0.0000018175,0.0000018174,0.0000018168, -0.0000018154,0.0000018131,0.0000018105,0.0000018082,0.0000018064, -0.0000018056,0.0000018052,0.0000018047,0.0000018035,0.0000018014, -0.0000017985,0.0000017956,0.0000017934,0.0000017924,0.0000017921, -0.0000017919,0.0000017912,0.0000017899,0.0000017879,0.0000017859, -0.0000017846,0.0000017840,0.0000017836,0.0000017830,0.0000017819, -0.0000017810,0.0000017806,0.0000017810,0.0000017826,0.0000017855, -0.0000017891,0.0000017931,0.0000017964,0.0000017986,0.0000017998, -0.0000018002,0.0000017993,0.0000017977,0.0000017950,0.0000017913, -0.0000017874,0.0000017835,0.0000017798,0.0000017761,0.0000017725, -0.0000017692,0.0000017672,0.0000017659,0.0000017653,0.0000017648, -0.0000017638,0.0000017616,0.0000017582,0.0000017540,0.0000017503, -0.0000017482,0.0000017479,0.0000017486,0.0000017503,0.0000017521, -0.0000017539,0.0000017556,0.0000017575,0.0000017600,0.0000017630, -0.0000017658,0.0000017677,0.0000017690,0.0000017696,0.0000017698, -0.0000017695,0.0000017688,0.0000017680,0.0000017672,0.0000017664, -0.0000017660,0.0000017662,0.0000017671,0.0000017686,0.0000017697, -0.0000017698,0.0000017694,0.0000017689,0.0000017679,0.0000017667, -0.0000017654,0.0000017638,0.0000017625,0.0000017615,0.0000017612, -0.0000017617,0.0000017628,0.0000017640,0.0000017652,0.0000017665, -0.0000017676,0.0000017683,0.0000017688,0.0000017693,0.0000017696, -0.0000017700,0.0000017706,0.0000017709,0.0000017705,0.0000017693, -0.0000017673,0.0000017651,0.0000017632,0.0000017621,0.0000017627, -0.0000017640,0.0000017660,0.0000017684,0.0000017713,0.0000017748, -0.0000017778,0.0000017803,0.0000017831,0.0000017846,0.0000017863, -0.0000017872,0.0000017874,0.0000017867,0.0000017855,0.0000017834, -0.0000017806,0.0000017768,0.0000017727,0.0000017688,0.0000017652, -0.0000017617,0.0000017580,0.0000017543,0.0000017509,0.0000017476, -0.0000017448,0.0000017423,0.0000017398,0.0000017374,0.0000017354, -0.0000017340,0.0000017329,0.0000017317,0.0000017303,0.0000017294, -0.0000017303,0.0000017335,0.0000017390,0.0000017461,0.0000017544, -0.0000017632,0.0000017729,0.0000017820,0.0000017878,0.0000017907, -0.0000017938,0.0000017986,0.0000018042,0.0000018069,0.0000018048, -0.0000017955,0.0000017810,0.0000017652,0.0000017512,0.0000017454, -0.0000017429,0.0000017410,0.0000017399,0.0000017385,0.0000017366, -0.0000017341,0.0000017309,0.0000017277,0.0000017244,0.0000017220, -0.0000017219,0.0000017226,0.0000017238,0.0000017252,0.0000017265, -0.0000017275,0.0000017282,0.0000017290,0.0000017301,0.0000017328, -0.0000017374,0.0000017439,0.0000017528,0.0000017637,0.0000017750, -0.0000017854,0.0000017938,0.0000018002,0.0000018053,0.0000018094, -0.0000018126,0.0000018153,0.0000018176,0.0000018195,0.0000018209, -0.0000018220,0.0000018230,0.0000018237,0.0000018243,0.0000018251, -0.0000018255,0.0000018253,0.0000018249,0.0000018247,0.0000018247, -0.0000018247,0.0000018246,0.0000018244,0.0000018244,0.0000018241, -0.0000018233,0.0000018223,0.0000018212,0.0000018197,0.0000018179, -0.0000018154,0.0000018122,0.0000018085,0.0000018040,0.0000017984, -0.0000017918,0.0000017842,0.0000017763,0.0000017684,0.0000017611, -0.0000017549,0.0000017498,0.0000017458,0.0000017430,0.0000017411, -0.0000017390,0.0000017372,0.0000017355,0.0000017352,0.0000017361, -0.0000017393,0.0000017430,0.0000017463,0.0000017484,0.0000017492, -0.0000017483,0.0000017469,0.0000017447,0.0000017419,0.0000017389, -0.0000017364,0.0000017348,0.0000017337,0.0000017328,0.0000017318, -0.0000017307,0.0000017297,0.0000017295,0.0000017302,0.0000017313, -0.0000017334,0.0000017366,0.0000017403,0.0000017441,0.0000017485, -0.0000017544,0.0000017626,0.0000017723,0.0000017803,0.0000017838, -0.0000017822,0.0000017766,0.0000017677,0.0000017594,0.0000017536, -0.0000017505,0.0000017492,0.0000017492,0.0000017497,0.0000017497, -0.0000017491,0.0000017480,0.0000017473,0.0000017474,0.0000017485, -0.0000017505,0.0000017531,0.0000017555,0.0000017571,0.0000017580, -0.0000017584,0.0000017585,0.0000017588,0.0000017600,0.0000017620, -0.0000017642,0.0000017670,0.0000017699,0.0000017722,0.0000017735, -0.0000017740,0.0000017736,0.0000017725,0.0000017715,0.0000017711, -0.0000017715,0.0000017728,0.0000017753,0.0000017785,0.0000017819, -0.0000017856,0.0000017897,0.0000017941,0.0000017986,0.0000018031, -0.0000018073,0.0000018114,0.0000018151,0.0000018184,0.0000018213, -0.0000018242,0.0000018268,0.0000018285,0.0000018300,0.0000018314, -0.0000018327,0.0000018340,0.0000018350,0.0000018359,0.0000018365, -0.0000018367,0.0000018365,0.0000018358,0.0000018346,0.0000018332, -0.0000018316,0.0000018291,0.0000018266,0.0000018241,0.0000018217, -0.0000018188,0.0000018158,0.0000018133,0.0000018107,0.0000018078, -0.0000018055,0.0000018041,0.0000018038,0.0000018042,0.0000018053, -0.0000018064,0.0000018080,0.0000018094,0.0000018103,0.0000018102, -0.0000018094,0.0000018080,0.0000018061,0.0000018035,0.0000018006, -0.0000017975,0.0000017946,0.0000017920,0.0000017895,0.0000017876, -0.0000017867,0.0000017860,0.0000017850,0.0000017841,0.0000017833, -0.0000017818,0.0000017797,0.0000017769,0.0000017743,0.0000017721, -0.0000017700,0.0000017674,0.0000017648,0.0000017626,0.0000017605, -0.0000017583,0.0000017561,0.0000017548,0.0000017539,0.0000017529, -0.0000017523,0.0000017523,0.0000017525,0.0000017528,0.0000017538, -0.0000017550,0.0000017553,0.0000017546,0.0000017543,0.0000017525, -0.0000017498,0.0000017461,0.0000017415,0.0000017365,0.0000017316, -0.0000017269,0.0000017238,0.0000017223,0.0000017222,0.0000017236, -0.0000017254,0.0000017274,0.0000017294,0.0000017313,0.0000017327, -0.0000017334,0.0000017332,0.0000017318,0.0000017295,0.0000017264, -0.0000017233,0.0000017214,0.0000017209,0.0000017212,0.0000017224, -0.0000017241,0.0000017261,0.0000017282,0.0000017303,0.0000017323, -0.0000017346,0.0000017371,0.0000017396,0.0000017418,0.0000017434, -0.0000017447,0.0000017461,0.0000017476,0.0000017490,0.0000017498, -0.0000017506,0.0000017518,0.0000017530,0.0000017548,0.0000017583, -0.0000017635,0.0000017708,0.0000017805,0.0000017922,0.0000018058, -0.0000018209,0.0000018371,0.0000018537,0.0000018696,0.0000018837, -0.0000018956,0.0000019052,0.0000019122,0.0000019168,0.0000019194, -0.0000019207,0.0000019212,0.0000019215,0.0000019217,0.0000019220, -0.0000019224,0.0000019230,0.0000019240,0.0000019256,0.0000019273, -0.0000019289,0.0000019301,0.0000019314,0.0000019328,0.0000019345, -0.0000019367,0.0000019394,0.0000019420,0.0000019437,0.0000019447, -0.0000019454,0.0000019460,0.0000019474,0.0000019496,0.0000019526, -0.0000019550,0.0000019569,0.0000019587,0.0000019595,0.0000019592, -0.0000019581,0.0000019566,0.0000019546,0.0000019519,0.0000019485, -0.0000019445,0.0000019403,0.0000019367,0.0000019339,0.0000019323, -0.0000019302,0.0000019287,0.0000019278,0.0000019275,0.0000019279, -0.0000019291,0.0000019308,0.0000019325,0.0000019339,0.0000019352, -0.0000019362,0.0000019373,0.0000019383,0.0000019392,0.0000019402, -0.0000019413,0.0000019422,0.0000019425,0.0000019424,0.0000019415, -0.0000019397,0.0000019379,0.0000019363,0.0000019348,0.0000019334, -0.0000019322,0.0000019313,0.0000019313,0.0000019317,0.0000019322, -0.0000019330,0.0000019342,0.0000019349,0.0000019352,0.0000019350, -0.0000019346,0.0000019347,0.0000019356,0.0000019375,0.0000019403, -0.0000019438,0.0000019480,0.0000019521,0.0000019555,0.0000019578, -0.0000019599,0.0000019619,0.0000019629,0.0000019640,0.0000019659, -0.0000019676,0.0000019685,0.0000019690,0.0000019697,0.0000019703, -0.0000019699,0.0000019683,0.0000019665,0.0000019650,0.0000019636, -0.0000019619,0.0000019602,0.0000019592,0.0000019589,0.0000019588, -0.0000019591,0.0000019602,0.0000019617,0.0000019644,0.0000019673, -0.0000019690,0.0000019696,0.0000019696,0.0000019693,0.0000019683, -0.0000019658,0.0000019620,0.0000019571,0.0000019516,0.0000019457, -0.0000019401,0.0000019360,0.0000019341,0.0000019337,0.0000019332, -0.0000019320,0.0000019303,0.0000019285,0.0000019260,0.0000019227, -0.0000019197,0.0000019187,0.0000019189,0.0000019198,0.0000019213, -0.0000019228,0.0000019231,0.0000019219,0.0000019200,0.0000019174, -0.0000019149,0.0000019139,0.0000019147,0.0000019165,0.0000019180, -0.0000019181,0.0000019168,0.0000019146,0.0000019117,0.0000019080, -0.0000019040,0.0000019015,0.0000019009,0.0000019012,0.0000019019, -0.0000019022,0.0000019019,0.0000019009,0.0000018993,0.0000018978, -0.0000018969,0.0000018961,0.0000018959,0.0000018966,0.0000018968, -0.0000018984,0.0000019011,0.0000019030,0.0000019035,0.0000019020, -0.0000018987,0.0000018944,0.0000018914,0.0000018904,0.0000018908, -0.0000018907,0.0000018893,0.0000018855,0.0000018815,0.0000018784, -0.0000018781,0.0000018779,0.0000018791,0.0000018812,0.0000018828, -0.0000018835,0.0000018829,0.0000018816,0.0000018805,0.0000018798, -0.0000018796,0.0000018807,0.0000018825,0.0000018842,0.0000018860, -0.0000018856,0.0000018869,0.0000018857,0.0000018826,0.0000018789, -0.0000018745,0.0000018709,0.0000018706,0.0000018701,0.0000018711, -0.0000018738,0.0000018769,0.0000018798,0.0000018824,0.0000018840, -0.0000018840,0.0000018825,0.0000018796,0.0000018751,0.0000018695, -0.0000018645,0.0000018610,0.0000018581,0.0000018541,0.0000018482, -0.0000018409,0.0000018331,0.0000018260,0.0000018200,0.0000018185, -0.0000018200,0.0000018244,0.0000018298,0.0000018360,0.0000018431, -0.0000018502,0.0000018544,0.0000018548,0.0000018523,0.0000018474, -0.0000018424,0.0000018385,0.0000018369,0.0000018379,0.0000018406, -0.0000018430,0.0000018443,0.0000018444,0.0000018443,0.0000018451, -0.0000018507,0.0000018592,0.0000018661,0.0000018708,0.0000018744, -0.0000018757,0.0000018743,0.0000018736,0.0000018735,0.0000018736, -0.0000018729,0.0000018703,0.0000018662,0.0000018621,0.0000018565, -0.0000018495,0.0000018431,0.0000018376,0.0000018347,0.0000018343, -0.0000018356,0.0000018374,0.0000018385,0.0000018378,0.0000018350, -0.0000018320,0.0000018303,0.0000018290,0.0000018271,0.0000018246, -0.0000018223,0.0000018209,0.0000018197,0.0000018182,0.0000018174, -0.0000018174,0.0000018197,0.0000018239,0.0000018285,0.0000018329, -0.0000018366,0.0000018386,0.0000018388,0.0000018374,0.0000018357, -0.0000018341,0.0000018325,0.0000018303,0.0000018279,0.0000018255, -0.0000018227,0.0000018198,0.0000018178,0.0000018171,0.0000018169, -0.0000018165,0.0000018158,0.0000018157,0.0000018162,0.0000018171, -0.0000018179,0.0000018181,0.0000018175,0.0000018162,0.0000018142, -0.0000018110,0.0000018060,0.0000018005,0.0000017954,0.0000017917, -0.0000017890,0.0000017864,0.0000017831,0.0000017795,0.0000017770, -0.0000017761,0.0000017763,0.0000017772,0.0000017785,0.0000017797, -0.0000017801,0.0000017797,0.0000017787,0.0000017779,0.0000017774, -0.0000017770,0.0000017770,0.0000017775,0.0000017781,0.0000017781, -0.0000017778,0.0000017773,0.0000017764,0.0000017747,0.0000017728, -0.0000017710,0.0000017699,0.0000017691,0.0000017680,0.0000017665, -0.0000017647,0.0000017628,0.0000017608,0.0000017586,0.0000017563, -0.0000017544,0.0000017537,0.0000017544,0.0000017567,0.0000017606, -0.0000017657,0.0000017715,0.0000017773,0.0000017815,0.0000017840, -0.0000017838,0.0000017836,0.0000017815,0.0000017781,0.0000017747, -0.0000017719,0.0000017703,0.0000017688,0.0000017685,0.0000017693, -0.0000017711,0.0000017736,0.0000017760,0.0000017776,0.0000017771, -0.0000017755,0.0000017732,0.0000017718,0.0000017723,0.0000017740, -0.0000017761,0.0000017780,0.0000017798,0.0000017819,0.0000017849, -0.0000017892,0.0000017929,0.0000017947,0.0000017947,0.0000017938, -0.0000017929,0.0000017945,0.0000017994,0.0000018065,0.0000018138, -0.0000018189,0.0000018225,0.0000018243,0.0000018265,0.0000018306, -0.0000018354,0.0000018391,0.0000018408,0.0000018412,0.0000018429, -0.0000018487,0.0000018606,0.0000018778,0.0000018962,0.0000019110, -0.0000019207,0.0000019207,0.0000019196,0.0000019153,0.0000019121, -0.0000019116,0.0000019125,0.0000019144,0.0000019161,0.0000019174, -0.0000019168,0.0000019139,0.0000019087,0.0000019018,0.0000018945, -0.0000018879,0.0000018827,0.0000018791,0.0000018770,0.0000018761, -0.0000018762,0.0000018768,0.0000018771,0.0000018768,0.0000018753, -0.0000018730,0.0000018701,0.0000018666,0.0000018625,0.0000018581, -0.0000018536,0.0000018488,0.0000018443,0.0000018402,0.0000018364, -0.0000018332,0.0000018306,0.0000018283,0.0000018261,0.0000018241, -0.0000018221,0.0000018198,0.0000018174,0.0000018151,0.0000018129, -0.0000018112,0.0000018102,0.0000018100,0.0000018102,0.0000018109, -0.0000018122,0.0000018139,0.0000018158,0.0000018173,0.0000018185, -0.0000018193,0.0000018206,0.0000018225,0.0000018246,0.0000018275, -0.0000018308,0.0000018344,0.0000018383,0.0000018422,0.0000018459, -0.0000018493,0.0000018520,0.0000018539,0.0000018552,0.0000018558, -0.0000018559,0.0000018558,0.0000018554,0.0000018547,0.0000018543, -0.0000018544,0.0000018546,0.0000018545,0.0000018540,0.0000018532, -0.0000018528,0.0000018531,0.0000018548,0.0000018573,0.0000018606, -0.0000018642,0.0000018680,0.0000018721,0.0000018755,0.0000018778, -0.0000018803,0.0000018832,0.0000018849,0.0000018802,0.0000018690, -0.0000018638,0.0000018626,0.0000018571,0.0000018457,0.0000018441, -0.0000018612,0.0000018821,0.0000018828,0.0000018808,0.0000018766, -0.0000018720,0.0000018715,0.0000018704,0.0000018686,0.0000018696, -0.0000018732,0.0000018458,0.0000017766,0.0000017644,0.0000017740, -0.0000017648,0.0000017599,0.0000017696,0.0000017690,0.0000017606, -0.0000017590,0.0000017618,0.0000017640,0.0000017631,0.0000017603, -0.0000017576,0.0000017574,0.0000017603,0.0000017648,0.0000017697, -0.0000017735,0.0000017760,0.0000017778,0.0000017788,0.0000017796, -0.0000017794,0.0000017768,0.0000017719,0.0000017657,0.0000017602, -0.0000017561,0.0000017532,0.0000017494,0.0000017431,0.0000017376, -0.0000017318,0.0000017302,0.0000017324,0.0000017404,0.0000017511, -0.0000017581,0.0000017601,0.0000017563,0.0000017531,0.0000017568, -0.0000017651,0.0000017738,0.0000017796,0.0000017808,0.0000017801, -0.0000017793,0.0000017803,0.0000017825,0.0000017848,0.0000017861, -0.0000017857,0.0000017832,0.0000017799,0.0000017785,0.0000017788, -0.0000017796,0.0000017800,0.0000017811,0.0000017850,0.0000017914, -0.0000017978,0.0000018018,0.0000018034,0.0000018038,0.0000018038, -0.0000018039,0.0000018035,0.0000018032,0.0000018028,0.0000018018, -0.0000017999,0.0000017971,0.0000017938,0.0000017906,0.0000017879, -0.0000017856,0.0000017834,0.0000017813,0.0000017794,0.0000017778, -0.0000017770,0.0000017772,0.0000017780,0.0000017790,0.0000017796, -0.0000017792,0.0000017778,0.0000017760,0.0000017746,0.0000017743, -0.0000017754,0.0000017774,0.0000017799,0.0000017828,0.0000017851, -0.0000017867,0.0000017879,0.0000017894,0.0000017922,0.0000017963, -0.0000018007,0.0000018044,0.0000018074,0.0000018096,0.0000018111, -0.0000018127,0.0000018139,0.0000018146,0.0000018147,0.0000018134, -0.0000018115,0.0000018102,0.0000018093,0.0000018091,0.0000018090, -0.0000018089,0.0000018092,0.0000018099,0.0000018116,0.0000018137, -0.0000018146,0.0000018154,0.0000018150,0.0000018141,0.0000018127, -0.0000018101,0.0000018078,0.0000018069,0.0000018098,0.0000018178, -0.0000018285,0.0000018377,0.0000018441,0.0000018482,0.0000018509, -0.0000018531,0.0000018551,0.0000018569,0.0000018581,0.0000018590, -0.0000018596,0.0000018604,0.0000018612,0.0000018617,0.0000018609, -0.0000018582,0.0000018421,0.0000018422,0.0000018427,0.0000018427, -0.0000018426,0.0000018422,0.0000018417,0.0000018415,0.0000018418, -0.0000018423,0.0000018423,0.0000018419,0.0000018413,0.0000018408, -0.0000018404,0.0000018402,0.0000018401,0.0000018400,0.0000018402, -0.0000018407,0.0000018412,0.0000018416,0.0000018418,0.0000018418, -0.0000018416,0.0000018411,0.0000018402,0.0000018392,0.0000018382, -0.0000018374,0.0000018369,0.0000018368,0.0000018371,0.0000018378, -0.0000018387,0.0000018399,0.0000018414,0.0000018436,0.0000018465, -0.0000018501,0.0000018544,0.0000018589,0.0000018635,0.0000018675, -0.0000018705,0.0000018722,0.0000018729,0.0000018730,0.0000018726, -0.0000018722,0.0000018718,0.0000018712,0.0000018697,0.0000018688, -0.0000018675,0.0000018654,0.0000018626,0.0000018587,0.0000018532, -0.0000018465,0.0000018395,0.0000018330,0.0000018274,0.0000018241, -0.0000018227,0.0000018247,0.0000018272,0.0000018309,0.0000018352, -0.0000018400,0.0000018443,0.0000018472,0.0000018489,0.0000018481, -0.0000018443,0.0000018378,0.0000018294,0.0000018211,0.0000018154, -0.0000018138,0.0000018142,0.0000018150,0.0000018163,0.0000018157, -0.0000018121,0.0000018067,0.0000018013,0.0000017967,0.0000017931, -0.0000017912,0.0000017925,0.0000017966,0.0000018027,0.0000018091, -0.0000018142,0.0000018175,0.0000018193,0.0000018206,0.0000018218, -0.0000018229,0.0000018235,0.0000018236,0.0000018234,0.0000018227, -0.0000018213,0.0000018201,0.0000018196,0.0000018200,0.0000018209, -0.0000018217,0.0000018216,0.0000018208,0.0000018192,0.0000018171, -0.0000018149,0.0000018132,0.0000018125,0.0000018127,0.0000018131, -0.0000018127,0.0000018107,0.0000018070,0.0000018024,0.0000017982, -0.0000017951,0.0000017934,0.0000017923,0.0000017914,0.0000017902, -0.0000017886,0.0000017865,0.0000017847,0.0000017837,0.0000017834, -0.0000017834,0.0000017834,0.0000017833,0.0000017828,0.0000017825, -0.0000017828,0.0000017841,0.0000017863,0.0000017890,0.0000017917, -0.0000017940,0.0000017957,0.0000017963,0.0000017959,0.0000017940, -0.0000017906,0.0000017865,0.0000017821,0.0000017781,0.0000017746, -0.0000017717,0.0000017700,0.0000017691,0.0000017689,0.0000017686, -0.0000017675,0.0000017655,0.0000017626,0.0000017590,0.0000017556, -0.0000017531,0.0000017521,0.0000017526,0.0000017545,0.0000017570, -0.0000017594,0.0000017614,0.0000017628,0.0000017642,0.0000017662, -0.0000017690,0.0000017720,0.0000017744,0.0000017762,0.0000017773, -0.0000017778,0.0000017778,0.0000017770,0.0000017753,0.0000017729, -0.0000017700,0.0000017670,0.0000017650,0.0000017640,0.0000017641, -0.0000017653,0.0000017668,0.0000017682,0.0000017686,0.0000017683, -0.0000017676,0.0000017664,0.0000017651,0.0000017638,0.0000017624, -0.0000017615,0.0000017615,0.0000017619,0.0000017624,0.0000017633, -0.0000017642,0.0000017651,0.0000017661,0.0000017671,0.0000017681, -0.0000017691,0.0000017704,0.0000017711,0.0000017715,0.0000017711, -0.0000017696,0.0000017672,0.0000017648,0.0000017627,0.0000017615, -0.0000017613,0.0000017612,0.0000017622,0.0000017638,0.0000017664, -0.0000017691,0.0000017715,0.0000017744,0.0000017771,0.0000017794, -0.0000017813,0.0000017828,0.0000017843,0.0000017855,0.0000017855, -0.0000017855,0.0000017844,0.0000017822,0.0000017800,0.0000017772, -0.0000017737,0.0000017694,0.0000017648,0.0000017603,0.0000017559, -0.0000017518,0.0000017480,0.0000017449,0.0000017424,0.0000017406, -0.0000017395,0.0000017389,0.0000017386,0.0000017379,0.0000017363, -0.0000017337,0.0000017313,0.0000017306,0.0000017318,0.0000017355, -0.0000017410,0.0000017484,0.0000017568,0.0000017655,0.0000017742, -0.0000017821,0.0000017874,0.0000017903,0.0000017929,0.0000017970, -0.0000017998,0.0000018021,0.0000017970,0.0000017853,0.0000017706, -0.0000017555,0.0000017433,0.0000017401,0.0000017394,0.0000017393, -0.0000017382,0.0000017356,0.0000017332,0.0000017312,0.0000017291, -0.0000017270,0.0000017253,0.0000017245,0.0000017251,0.0000017259, -0.0000017270,0.0000017282,0.0000017289,0.0000017294,0.0000017296, -0.0000017298,0.0000017300,0.0000017307,0.0000017325,0.0000017354, -0.0000017395,0.0000017451,0.0000017518,0.0000017590,0.0000017663, -0.0000017731,0.0000017791,0.0000017844,0.0000017887,0.0000017919, -0.0000017943,0.0000017961,0.0000017977,0.0000017990,0.0000018007, -0.0000018018,0.0000018024,0.0000018025,0.0000018023,0.0000018022, -0.0000018021,0.0000018016,0.0000018008,0.0000017998,0.0000017987, -0.0000017972,0.0000017953,0.0000017930,0.0000017902,0.0000017868, -0.0000017829,0.0000017785,0.0000017740,0.0000017690,0.0000017637, -0.0000017586,0.0000017542,0.0000017505,0.0000017476,0.0000017454, -0.0000017437,0.0000017419,0.0000017395,0.0000017375,0.0000017357, -0.0000017349,0.0000017350,0.0000017364,0.0000017389,0.0000017427, -0.0000017464,0.0000017489,0.0000017496,0.0000017496,0.0000017485, -0.0000017466,0.0000017442,0.0000017417,0.0000017392,0.0000017369, -0.0000017349,0.0000017335,0.0000017324,0.0000017314,0.0000017302, -0.0000017293,0.0000017292,0.0000017299,0.0000017319,0.0000017347, -0.0000017385,0.0000017429,0.0000017482,0.0000017548,0.0000017635, -0.0000017730,0.0000017809,0.0000017852,0.0000017839,0.0000017770, -0.0000017689,0.0000017617,0.0000017569,0.0000017544,0.0000017530, -0.0000017524,0.0000017523,0.0000017521,0.0000017518,0.0000017518, -0.0000017519,0.0000017525,0.0000017541,0.0000017563,0.0000017583, -0.0000017594,0.0000017598,0.0000017596,0.0000017594,0.0000017598, -0.0000017612,0.0000017637,0.0000017672,0.0000017709,0.0000017740, -0.0000017761,0.0000017772,0.0000017777,0.0000017779,0.0000017784, -0.0000017794,0.0000017808,0.0000017824,0.0000017848,0.0000017880, -0.0000017912,0.0000017946,0.0000017979,0.0000018012,0.0000018040, -0.0000018065,0.0000018091,0.0000018123,0.0000018148,0.0000018178, -0.0000018196,0.0000018222,0.0000018238,0.0000018248,0.0000018265, -0.0000018283,0.0000018294,0.0000018300,0.0000018308,0.0000018317, -0.0000018329,0.0000018342,0.0000018358,0.0000018373,0.0000018387, -0.0000018399,0.0000018409,0.0000018418,0.0000018412,0.0000018416, -0.0000018418,0.0000018409,0.0000018400,0.0000018389,0.0000018381, -0.0000018366,0.0000018340,0.0000018315,0.0000018293,0.0000018265, -0.0000018232,0.0000018202,0.0000018179,0.0000018162,0.0000018150, -0.0000018142,0.0000018143,0.0000018150,0.0000018159,0.0000018164, -0.0000018167,0.0000018163,0.0000018155,0.0000018143,0.0000018124, -0.0000018100,0.0000018072,0.0000018038,0.0000017999,0.0000017963, -0.0000017936,0.0000017911,0.0000017891,0.0000017879,0.0000017871, -0.0000017862,0.0000017852,0.0000017840,0.0000017830,0.0000017824, -0.0000017817,0.0000017805,0.0000017786,0.0000017767,0.0000017745, -0.0000017717,0.0000017687,0.0000017661,0.0000017635,0.0000017607, -0.0000017584,0.0000017565,0.0000017548,0.0000017533,0.0000017528, -0.0000017532,0.0000017534,0.0000017539,0.0000017547,0.0000017547, -0.0000017537,0.0000017518,0.0000017479,0.0000017430,0.0000017376, -0.0000017322,0.0000017280,0.0000017255,0.0000017245,0.0000017248, -0.0000017264,0.0000017283,0.0000017305,0.0000017323,0.0000017335, -0.0000017339,0.0000017334,0.0000017320,0.0000017299,0.0000017271, -0.0000017241,0.0000017213,0.0000017193,0.0000017183,0.0000017182, -0.0000017191,0.0000017211,0.0000017236,0.0000017264,0.0000017290, -0.0000017313,0.0000017333,0.0000017349,0.0000017362,0.0000017372, -0.0000017378,0.0000017382,0.0000017388,0.0000017398,0.0000017410, -0.0000017417,0.0000017417,0.0000017414,0.0000017407,0.0000017402, -0.0000017405,0.0000017415,0.0000017436,0.0000017471,0.0000017526, -0.0000017606,0.0000017711,0.0000017846,0.0000018007,0.0000018186, -0.0000018369,0.0000018544,0.0000018703,0.0000018840,0.0000018948, -0.0000019027,0.0000019080,0.0000019115,0.0000019133,0.0000019137, -0.0000019133,0.0000019129,0.0000019127,0.0000019133,0.0000019148, -0.0000019166,0.0000019183,0.0000019202,0.0000019223,0.0000019243, -0.0000019268,0.0000019298,0.0000019326,0.0000019348,0.0000019365, -0.0000019377,0.0000019392,0.0000019411,0.0000019439,0.0000019472, -0.0000019503,0.0000019535,0.0000019562,0.0000019575,0.0000019578, -0.0000019574,0.0000019568,0.0000019552,0.0000019528,0.0000019500, -0.0000019468,0.0000019435,0.0000019403,0.0000019374,0.0000019348, -0.0000019318,0.0000019286,0.0000019257,0.0000019220,0.0000019194, -0.0000019182,0.0000019182,0.0000019190,0.0000019206,0.0000019223, -0.0000019239,0.0000019255,0.0000019266,0.0000019275,0.0000019285, -0.0000019292,0.0000019295,0.0000019295,0.0000019284,0.0000019266, -0.0000019252,0.0000019236,0.0000019221,0.0000019214,0.0000019208, -0.0000019200,0.0000019196,0.0000019203,0.0000019213,0.0000019225, -0.0000019239,0.0000019251,0.0000019253,0.0000019246,0.0000019227, -0.0000019205,0.0000019187,0.0000019170,0.0000019157,0.0000019156, -0.0000019163,0.0000019173,0.0000019182,0.0000019195,0.0000019219, -0.0000019255,0.0000019289,0.0000019329,0.0000019380,0.0000019431, -0.0000019479,0.0000019525,0.0000019572,0.0000019614,0.0000019640, -0.0000019649,0.0000019653,0.0000019652,0.0000019654,0.0000019647, -0.0000019630,0.0000019610,0.0000019591,0.0000019575,0.0000019560, -0.0000019554,0.0000019560,0.0000019587,0.0000019618,0.0000019643, -0.0000019666,0.0000019689,0.0000019710,0.0000019721,0.0000019722, -0.0000019720,0.0000019711,0.0000019688,0.0000019650,0.0000019600, -0.0000019544,0.0000019497,0.0000019467,0.0000019446,0.0000019425, -0.0000019406,0.0000019388,0.0000019368,0.0000019340,0.0000019303, -0.0000019268,0.0000019246,0.0000019246,0.0000019259,0.0000019282, -0.0000019303,0.0000019314,0.0000019312,0.0000019299,0.0000019278, -0.0000019262,0.0000019260,0.0000019269,0.0000019281,0.0000019285, -0.0000019279,0.0000019266,0.0000019250,0.0000019225,0.0000019190, -0.0000019160,0.0000019141,0.0000019132,0.0000019127,0.0000019122, -0.0000019116,0.0000019109,0.0000019099,0.0000019083,0.0000019061, -0.0000019042,0.0000019028,0.0000019016,0.0000019005,0.0000019003, -0.0000019013,0.0000019025,0.0000019038,0.0000019044,0.0000019030, -0.0000019001,0.0000018969,0.0000018941,0.0000018924,0.0000018915, -0.0000018906,0.0000018885,0.0000018857,0.0000018831,0.0000018814, -0.0000018795,0.0000018781,0.0000018776,0.0000018777,0.0000018782, -0.0000018788,0.0000018790,0.0000018787,0.0000018775,0.0000018760, -0.0000018747,0.0000018736,0.0000018734,0.0000018749,0.0000018772, -0.0000018808,0.0000018847,0.0000018861,0.0000018870,0.0000018851, -0.0000018818,0.0000018783,0.0000018746,0.0000018725,0.0000018737, -0.0000018754,0.0000018771,0.0000018786,0.0000018796,0.0000018806, -0.0000018821,0.0000018835,0.0000018837,0.0000018823,0.0000018796, -0.0000018761,0.0000018717,0.0000018663,0.0000018597,0.0000018525, -0.0000018462,0.0000018410,0.0000018367,0.0000018341,0.0000018330, -0.0000018318,0.0000018305,0.0000018282,0.0000018263,0.0000018261, -0.0000018281,0.0000018322,0.0000018383,0.0000018438,0.0000018473, -0.0000018489,0.0000018484,0.0000018475,0.0000018488,0.0000018507, -0.0000018521,0.0000018511,0.0000018476,0.0000018431,0.0000018414, -0.0000018417,0.0000018437,0.0000018506,0.0000018586,0.0000018658, -0.0000018710,0.0000018745,0.0000018763,0.0000018775,0.0000018769, -0.0000018750,0.0000018717,0.0000018680,0.0000018632,0.0000018568, -0.0000018489,0.0000018405,0.0000018335,0.0000018292,0.0000018276, -0.0000018286,0.0000018306,0.0000018313,0.0000018306,0.0000018294, -0.0000018291,0.0000018291,0.0000018284,0.0000018270,0.0000018250, -0.0000018233,0.0000018219,0.0000018200,0.0000018173,0.0000018161, -0.0000018166,0.0000018194,0.0000018233,0.0000018273,0.0000018312, -0.0000018345,0.0000018368,0.0000018375,0.0000018372,0.0000018356, -0.0000018335,0.0000018316,0.0000018298,0.0000018282,0.0000018262, -0.0000018235,0.0000018210,0.0000018197,0.0000018196,0.0000018200, -0.0000018205,0.0000018209,0.0000018213,0.0000018221,0.0000018229, -0.0000018234,0.0000018231,0.0000018217,0.0000018192,0.0000018151, -0.0000018093,0.0000018029,0.0000017969,0.0000017914,0.0000017865, -0.0000017815,0.0000017762,0.0000017712,0.0000017680,0.0000017672, -0.0000017679,0.0000017702,0.0000017731,0.0000017760,0.0000017784, -0.0000017795,0.0000017792,0.0000017783,0.0000017773,0.0000017768, -0.0000017771,0.0000017781,0.0000017790,0.0000017792,0.0000017789, -0.0000017780,0.0000017766,0.0000017748,0.0000017729,0.0000017714, -0.0000017703,0.0000017694,0.0000017679,0.0000017658,0.0000017635, -0.0000017611,0.0000017588,0.0000017564,0.0000017540,0.0000017524, -0.0000017502,0.0000017478,0.0000017467,0.0000017473,0.0000017500, -0.0000017553,0.0000017625,0.0000017702,0.0000017764,0.0000017803, -0.0000017823,0.0000017818,0.0000017812,0.0000017795,0.0000017767, -0.0000017731,0.0000017697,0.0000017678,0.0000017662,0.0000017661, -0.0000017672,0.0000017697,0.0000017723,0.0000017743,0.0000017738, -0.0000017732,0.0000017719,0.0000017711,0.0000017716,0.0000017732, -0.0000017751,0.0000017767,0.0000017777,0.0000017794,0.0000017826, -0.0000017874,0.0000017911,0.0000017937,0.0000017937,0.0000017924, -0.0000017913,0.0000017923,0.0000017961,0.0000018024,0.0000018097, -0.0000018157,0.0000018205,0.0000018238,0.0000018262,0.0000018294, -0.0000018334,0.0000018363,0.0000018381,0.0000018383,0.0000018398, -0.0000018455,0.0000018567,0.0000018731,0.0000018915,0.0000019057, -0.0000019172,0.0000019171,0.0000019190,0.0000019159,0.0000019136, -0.0000019133,0.0000019142,0.0000019166,0.0000019188,0.0000019204, -0.0000019204,0.0000019181,0.0000019133,0.0000019065,0.0000018983, -0.0000018901,0.0000018834,0.0000018790,0.0000018769,0.0000018767, -0.0000018772,0.0000018779,0.0000018787,0.0000018786,0.0000018775, -0.0000018758,0.0000018734,0.0000018700,0.0000018655,0.0000018605, -0.0000018560,0.0000018524,0.0000018493,0.0000018461,0.0000018433, -0.0000018408,0.0000018381,0.0000018353,0.0000018326,0.0000018296, -0.0000018263,0.0000018228,0.0000018193,0.0000018160,0.0000018135, -0.0000018120,0.0000018116,0.0000018118,0.0000018126,0.0000018138, -0.0000018152,0.0000018168,0.0000018183,0.0000018197,0.0000018216, -0.0000018247,0.0000018291,0.0000018337,0.0000018383,0.0000018428, -0.0000018469,0.0000018503,0.0000018530,0.0000018553,0.0000018573, -0.0000018589,0.0000018600,0.0000018606,0.0000018611,0.0000018618, -0.0000018626,0.0000018634,0.0000018643,0.0000018657,0.0000018672, -0.0000018684,0.0000018690,0.0000018696,0.0000018704,0.0000018718, -0.0000018736,0.0000018750,0.0000018756,0.0000018753,0.0000018750, -0.0000018754,0.0000018767,0.0000018790,0.0000018818,0.0000018849, -0.0000018855,0.0000018765,0.0000018657,0.0000018627,0.0000018599, -0.0000018499,0.0000018448,0.0000018573,0.0000018798,0.0000018839, -0.0000018810,0.0000018797,0.0000018742,0.0000018725,0.0000018724, -0.0000018714,0.0000018703,0.0000018718,0.0000018714,0.0000018236, -0.0000017688,0.0000017707,0.0000017716,0.0000017599,0.0000017666, -0.0000017737,0.0000017661,0.0000017590,0.0000017567,0.0000017571, -0.0000017586,0.0000017590,0.0000017574,0.0000017552,0.0000017542, -0.0000017547,0.0000017572,0.0000017611,0.0000017657,0.0000017701, -0.0000017734,0.0000017752,0.0000017755,0.0000017738,0.0000017708, -0.0000017670,0.0000017630,0.0000017585,0.0000017540,0.0000017486, -0.0000017435,0.0000017400,0.0000017344,0.0000017322,0.0000017348, -0.0000017438,0.0000017539,0.0000017599,0.0000017598,0.0000017544, -0.0000017541,0.0000017618,0.0000017719,0.0000017790,0.0000017800, -0.0000017776,0.0000017759,0.0000017766,0.0000017789,0.0000017812, -0.0000017829,0.0000017840,0.0000017840,0.0000017822,0.0000017793, -0.0000017771,0.0000017767,0.0000017774,0.0000017786,0.0000017799, -0.0000017821,0.0000017860,0.0000017913,0.0000017964,0.0000018001, -0.0000018019,0.0000018025,0.0000018025,0.0000018022,0.0000018018, -0.0000018014,0.0000018014,0.0000018018,0.0000018012,0.0000018010, -0.0000017998,0.0000017973,0.0000017944,0.0000017914,0.0000017886, -0.0000017858,0.0000017831,0.0000017806,0.0000017787,0.0000017777, -0.0000017778,0.0000017778,0.0000017783,0.0000017785,0.0000017781, -0.0000017771,0.0000017761,0.0000017761,0.0000017769,0.0000017785, -0.0000017810,0.0000017834,0.0000017852,0.0000017869,0.0000017888, -0.0000017912,0.0000017943,0.0000017977,0.0000018014,0.0000018048, -0.0000018070,0.0000018081,0.0000018095,0.0000018116,0.0000018138, -0.0000018156,0.0000018161,0.0000018150,0.0000018131,0.0000018112, -0.0000018102,0.0000018099,0.0000018101,0.0000018102,0.0000018099, -0.0000018098,0.0000018106,0.0000018126,0.0000018152,0.0000018168, -0.0000018180,0.0000018183,0.0000018171,0.0000018146,0.0000018110, -0.0000018090,0.0000018094,0.0000018135,0.0000018209,0.0000018292, -0.0000018364,0.0000018419,0.0000018461,0.0000018498,0.0000018524, -0.0000018544,0.0000018557,0.0000018560,0.0000018555,0.0000018538, -0.0000018507,0.0000018469,0.0000018437,0.0000018382,0.0000018382, -0.0000018378,0.0000018375,0.0000018379,0.0000018387,0.0000018392, -0.0000018396,0.0000018399,0.0000018399,0.0000018397,0.0000018391, -0.0000018385,0.0000018378,0.0000018372,0.0000018369,0.0000018368, -0.0000018367,0.0000018368,0.0000018371,0.0000018375,0.0000018377, -0.0000018378,0.0000018377,0.0000018374,0.0000018366,0.0000018355, -0.0000018343,0.0000018330,0.0000018318,0.0000018310,0.0000018306, -0.0000018307,0.0000018313,0.0000018325,0.0000018340,0.0000018359, -0.0000018382,0.0000018406,0.0000018434,0.0000018468,0.0000018506, -0.0000018546,0.0000018583,0.0000018616,0.0000018641,0.0000018659, -0.0000018671,0.0000018676,0.0000018675,0.0000018675,0.0000018675, -0.0000018674,0.0000018676,0.0000018678,0.0000018671,0.0000018672, -0.0000018663,0.0000018643,0.0000018609,0.0000018564,0.0000018507, -0.0000018445,0.0000018385,0.0000018332,0.0000018297,0.0000018292, -0.0000018305,0.0000018324,0.0000018357,0.0000018401,0.0000018449, -0.0000018487,0.0000018508,0.0000018516,0.0000018496,0.0000018440, -0.0000018352,0.0000018251,0.0000018175,0.0000018141,0.0000018142, -0.0000018163,0.0000018186,0.0000018186,0.0000018155,0.0000018103, -0.0000018051,0.0000018007,0.0000017972,0.0000017946,0.0000017944, -0.0000017956,0.0000017997,0.0000018049,0.0000018100,0.0000018138, -0.0000018164,0.0000018181,0.0000018197,0.0000018213,0.0000018226, -0.0000018232,0.0000018229,0.0000018222,0.0000018212,0.0000018207, -0.0000018211,0.0000018219,0.0000018224,0.0000018229,0.0000018236, -0.0000018240,0.0000018238,0.0000018229,0.0000018215,0.0000018203, -0.0000018197,0.0000018201,0.0000018208,0.0000018209,0.0000018195, -0.0000018159,0.0000018105,0.0000018044,0.0000017992,0.0000017957, -0.0000017933,0.0000017914,0.0000017897,0.0000017883,0.0000017866, -0.0000017848,0.0000017836,0.0000017832,0.0000017836,0.0000017843, -0.0000017850,0.0000017854,0.0000017858,0.0000017859,0.0000017862, -0.0000017866,0.0000017874,0.0000017888,0.0000017904,0.0000017919, -0.0000017924,0.0000017917,0.0000017895,0.0000017863,0.0000017831, -0.0000017801,0.0000017775,0.0000017760,0.0000017756,0.0000017756, -0.0000017750,0.0000017740,0.0000017722,0.0000017693,0.0000017659, -0.0000017629,0.0000017605,0.0000017592,0.0000017591,0.0000017600, -0.0000017618,0.0000017640,0.0000017662,0.0000017682,0.0000017695, -0.0000017703,0.0000017715,0.0000017733,0.0000017755,0.0000017778, -0.0000017799,0.0000017816,0.0000017828,0.0000017833,0.0000017831, -0.0000017822,0.0000017804,0.0000017779,0.0000017748,0.0000017712, -0.0000017680,0.0000017655,0.0000017645,0.0000017642,0.0000017647, -0.0000017658,0.0000017666,0.0000017668,0.0000017664,0.0000017657, -0.0000017646,0.0000017633,0.0000017622,0.0000017615,0.0000017607, -0.0000017597,0.0000017590,0.0000017585,0.0000017584,0.0000017588, -0.0000017597,0.0000017610,0.0000017634,0.0000017662,0.0000017690, -0.0000017713,0.0000017714,0.0000017711,0.0000017706,0.0000017688, -0.0000017669,0.0000017652,0.0000017642,0.0000017633,0.0000017629, -0.0000017640,0.0000017651,0.0000017664,0.0000017672,0.0000017683, -0.0000017695,0.0000017704,0.0000017711,0.0000017719,0.0000017732, -0.0000017748,0.0000017771,0.0000017793,0.0000017810,0.0000017820, -0.0000017829,0.0000017831,0.0000017819,0.0000017792,0.0000017752, -0.0000017704,0.0000017653,0.0000017599,0.0000017548,0.0000017497, -0.0000017451,0.0000017417,0.0000017401,0.0000017397,0.0000017402, -0.0000017407,0.0000017411,0.0000017404,0.0000017390,0.0000017367, -0.0000017340,0.0000017332,0.0000017335,0.0000017365,0.0000017421, -0.0000017491,0.0000017567,0.0000017652,0.0000017743,0.0000017815, -0.0000017857,0.0000017878,0.0000017905,0.0000017943,0.0000017959, -0.0000017952,0.0000017889,0.0000017768,0.0000017629,0.0000017500, -0.0000017413,0.0000017385,0.0000017378,0.0000017376,0.0000017363, -0.0000017343,0.0000017328,0.0000017318,0.0000017307,0.0000017295, -0.0000017282,0.0000017275,0.0000017275,0.0000017279,0.0000017285, -0.0000017292,0.0000017297,0.0000017298,0.0000017296,0.0000017294, -0.0000017291,0.0000017289,0.0000017286,0.0000017288,0.0000017294, -0.0000017306,0.0000017324,0.0000017350,0.0000017383,0.0000017419, -0.0000017455,0.0000017490,0.0000017523,0.0000017552,0.0000017575, -0.0000017601,0.0000017624,0.0000017640,0.0000017649,0.0000017653, -0.0000017658,0.0000017663,0.0000017663,0.0000017656,0.0000017648, -0.0000017639,0.0000017628,0.0000017614,0.0000017595,0.0000017573, -0.0000017551,0.0000017530,0.0000017512,0.0000017495,0.0000017479, -0.0000017466,0.0000017457,0.0000017451,0.0000017446,0.0000017436, -0.0000017423,0.0000017406,0.0000017383,0.0000017369,0.0000017356, -0.0000017357,0.0000017374,0.0000017406,0.0000017440,0.0000017468, -0.0000017487,0.0000017493,0.0000017494,0.0000017486,0.0000017472, -0.0000017454,0.0000017433,0.0000017415,0.0000017399,0.0000017382, -0.0000017364,0.0000017346,0.0000017329,0.0000017314,0.0000017305, -0.0000017297,0.0000017296,0.0000017309,0.0000017335,0.0000017369, -0.0000017410,0.0000017466,0.0000017539,0.0000017628,0.0000017724, -0.0000017797,0.0000017826,0.0000017821,0.0000017764,0.0000017686, -0.0000017619,0.0000017578,0.0000017562,0.0000017557,0.0000017555, -0.0000017548,0.0000017541,0.0000017538,0.0000017539,0.0000017548, -0.0000017567,0.0000017594,0.0000017619,0.0000017636,0.0000017643, -0.0000017641,0.0000017633,0.0000017632,0.0000017645,0.0000017669, -0.0000017697,0.0000017727,0.0000017756,0.0000017778,0.0000017793, -0.0000017804,0.0000017816,0.0000017833,0.0000017858,0.0000017892, -0.0000017934,0.0000017980,0.0000018022,0.0000018060,0.0000018092, -0.0000018115,0.0000018127,0.0000018134,0.0000018136,0.0000018129, -0.0000018118,0.0000018109,0.0000018113,0.0000018114,0.0000018118, -0.0000018128,0.0000018138,0.0000018157,0.0000018178,0.0000018192, -0.0000018207,0.0000018223,0.0000018234,0.0000018255,0.0000018263, -0.0000018285,0.0000018306,0.0000018323,0.0000018340,0.0000018356, -0.0000018370,0.0000018383,0.0000018395,0.0000018406,0.0000018414, -0.0000018418,0.0000018418,0.0000018415,0.0000018411,0.0000018413, -0.0000018407,0.0000018403,0.0000018393,0.0000018387,0.0000018389, -0.0000018381,0.0000018362,0.0000018353,0.0000018342,0.0000018327, -0.0000018308,0.0000018292,0.0000018278,0.0000018267,0.0000018257, -0.0000018249,0.0000018243,0.0000018234,0.0000018227,0.0000018218, -0.0000018207,0.0000018193,0.0000018174,0.0000018148,0.0000018117, -0.0000018082,0.0000018047,0.0000018014,0.0000017984,0.0000017955, -0.0000017930,0.0000017911,0.0000017893,0.0000017879,0.0000017871, -0.0000017868,0.0000017869,0.0000017872,0.0000017871,0.0000017869, -0.0000017863,0.0000017844,0.0000017822,0.0000017799,0.0000017771, -0.0000017740,0.0000017713,0.0000017693,0.0000017661,0.0000017624, -0.0000017591,0.0000017564,0.0000017542,0.0000017529,0.0000017523, -0.0000017522,0.0000017515,0.0000017511,0.0000017500,0.0000017474, -0.0000017440,0.0000017391,0.0000017346,0.0000017312,0.0000017289, -0.0000017274,0.0000017273,0.0000017288,0.0000017311,0.0000017336, -0.0000017360,0.0000017377,0.0000017379,0.0000017371,0.0000017347, -0.0000017318,0.0000017287,0.0000017253,0.0000017221,0.0000017192, -0.0000017168,0.0000017152,0.0000017148,0.0000017152,0.0000017172, -0.0000017205,0.0000017241,0.0000017276,0.0000017306,0.0000017325, -0.0000017337,0.0000017345,0.0000017348,0.0000017348,0.0000017353, -0.0000017367,0.0000017381,0.0000017390,0.0000017396,0.0000017397, -0.0000017393,0.0000017390,0.0000017389,0.0000017390,0.0000017385, -0.0000017378,0.0000017383,0.0000017402,0.0000017439,0.0000017499, -0.0000017590,0.0000017711,0.0000017854,0.0000018010,0.0000018172, -0.0000018336,0.0000018489,0.0000018625,0.0000018742,0.0000018837, -0.0000018911,0.0000018965,0.0000018998,0.0000019017,0.0000019028, -0.0000019037,0.0000019047,0.0000019060,0.0000019073,0.0000019088, -0.0000019108,0.0000019131,0.0000019154,0.0000019175,0.0000019195, -0.0000019213,0.0000019230,0.0000019253,0.0000019282,0.0000019320, -0.0000019357,0.0000019394,0.0000019432,0.0000019465,0.0000019488, -0.0000019507,0.0000019523,0.0000019530,0.0000019527,0.0000019512, -0.0000019494,0.0000019473,0.0000019449,0.0000019423,0.0000019396, -0.0000019367,0.0000019338,0.0000019305,0.0000019267,0.0000019226, -0.0000019186,0.0000019155,0.0000019125,0.0000019112,0.0000019108, -0.0000019110,0.0000019119,0.0000019129,0.0000019136,0.0000019146, -0.0000019150,0.0000019150,0.0000019144,0.0000019128,0.0000019104, -0.0000019086,0.0000019065,0.0000019049,0.0000019046,0.0000019044, -0.0000019039,0.0000019033,0.0000019034,0.0000019045,0.0000019057, -0.0000019069,0.0000019076,0.0000019074,0.0000019066,0.0000019052, -0.0000019034,0.0000019017,0.0000019003,0.0000018985,0.0000018967, -0.0000018954,0.0000018939,0.0000018918,0.0000018893,0.0000018875, -0.0000018874,0.0000018876,0.0000018887,0.0000018918,0.0000018965, -0.0000019020,0.0000019081,0.0000019147,0.0000019219,0.0000019291, -0.0000019361,0.0000019430,0.0000019500,0.0000019561,0.0000019605, -0.0000019626,0.0000019625,0.0000019627,0.0000019620,0.0000019605, -0.0000019585,0.0000019568,0.0000019568,0.0000019570,0.0000019573, -0.0000019583,0.0000019599,0.0000019621,0.0000019644,0.0000019664, -0.0000019682,0.0000019698,0.0000019710,0.0000019704,0.0000019700, -0.0000019680,0.0000019653,0.0000019630,0.0000019610,0.0000019584, -0.0000019552,0.0000019518,0.0000019486,0.0000019459,0.0000019432, -0.0000019404,0.0000019376,0.0000019356,0.0000019342,0.0000019343, -0.0000019356,0.0000019372,0.0000019376,0.0000019366,0.0000019353, -0.0000019343,0.0000019342,0.0000019348,0.0000019358,0.0000019361, -0.0000019358,0.0000019349,0.0000019337,0.0000019320,0.0000019294, -0.0000019270,0.0000019255,0.0000019247,0.0000019239,0.0000019227, -0.0000019213,0.0000019199,0.0000019188,0.0000019174,0.0000019153, -0.0000019128,0.0000019106,0.0000019090,0.0000019080,0.0000019075, -0.0000019070,0.0000019069,0.0000019071,0.0000019072,0.0000019066, -0.0000019053,0.0000019036,0.0000019013,0.0000018989,0.0000018967, -0.0000018947,0.0000018923,0.0000018898,0.0000018879,0.0000018865, -0.0000018851,0.0000018833,0.0000018810,0.0000018782,0.0000018765, -0.0000018745,0.0000018741,0.0000018742,0.0000018741,0.0000018733, -0.0000018723,0.0000018709,0.0000018695,0.0000018684,0.0000018682, -0.0000018697,0.0000018733,0.0000018773,0.0000018817,0.0000018856, -0.0000018878,0.0000018879,0.0000018860,0.0000018835,0.0000018814, -0.0000018794,0.0000018785,0.0000018785,0.0000018788,0.0000018782, -0.0000018783,0.0000018793,0.0000018811,0.0000018821,0.0000018831, -0.0000018828,0.0000018812,0.0000018782,0.0000018739,0.0000018679, -0.0000018615,0.0000018556,0.0000018505,0.0000018467,0.0000018447, -0.0000018442,0.0000018436,0.0000018418,0.0000018382,0.0000018331, -0.0000018276,0.0000018224,0.0000018194,0.0000018194,0.0000018230, -0.0000018311,0.0000018411,0.0000018499,0.0000018571,0.0000018614, -0.0000018622,0.0000018618,0.0000018580,0.0000018528,0.0000018463, -0.0000018395,0.0000018346,0.0000018339,0.0000018367,0.0000018459, -0.0000018569,0.0000018677,0.0000018755,0.0000018791,0.0000018799, -0.0000018791,0.0000018757,0.0000018720,0.0000018676,0.0000018622, -0.0000018546,0.0000018457,0.0000018361,0.0000018283,0.0000018236, -0.0000018222,0.0000018230,0.0000018240,0.0000018239,0.0000018239, -0.0000018251,0.0000018266,0.0000018278,0.0000018279,0.0000018267, -0.0000018252,0.0000018237,0.0000018216,0.0000018187,0.0000018165, -0.0000018163,0.0000018178,0.0000018206,0.0000018240,0.0000018278, -0.0000018318,0.0000018353,0.0000018374,0.0000018378,0.0000018362, -0.0000018334,0.0000018313,0.0000018301,0.0000018292,0.0000018279, -0.0000018255,0.0000018224,0.0000018203,0.0000018195,0.0000018200, -0.0000018212,0.0000018224,0.0000018233,0.0000018242,0.0000018248, -0.0000018254,0.0000018254,0.0000018239,0.0000018205,0.0000018152, -0.0000018082,0.0000018009,0.0000017941,0.0000017882,0.0000017830, -0.0000017783,0.0000017736,0.0000017697,0.0000017680,0.0000017686, -0.0000017709,0.0000017737,0.0000017763,0.0000017785,0.0000017803, -0.0000017816,0.0000017818,0.0000017811,0.0000017804,0.0000017801, -0.0000017802,0.0000017808,0.0000017817,0.0000017823,0.0000017821, -0.0000017815,0.0000017804,0.0000017790,0.0000017774,0.0000017761, -0.0000017753,0.0000017742,0.0000017727,0.0000017711,0.0000017690, -0.0000017666,0.0000017638,0.0000017608,0.0000017583,0.0000017559, -0.0000017532,0.0000017504,0.0000017474,0.0000017458,0.0000017443, -0.0000017455,0.0000017497,0.0000017560,0.0000017631,0.0000017700, -0.0000017756,0.0000017795,0.0000017805,0.0000017802,0.0000017783, -0.0000017755,0.0000017723,0.0000017697,0.0000017677,0.0000017660, -0.0000017655,0.0000017660,0.0000017675,0.0000017695,0.0000017711, -0.0000017714,0.0000017707,0.0000017702,0.0000017702,0.0000017709, -0.0000017725,0.0000017737,0.0000017743,0.0000017752,0.0000017772, -0.0000017805,0.0000017852,0.0000017892,0.0000017923,0.0000017921, -0.0000017905,0.0000017890,0.0000017896,0.0000017927,0.0000017989, -0.0000018069,0.0000018145,0.0000018204,0.0000018238,0.0000018256, -0.0000018280,0.0000018313,0.0000018340,0.0000018356,0.0000018360, -0.0000018373,0.0000018422,0.0000018522,0.0000018676,0.0000018849, -0.0000018987,0.0000019106,0.0000019167,0.0000019176,0.0000019197, -0.0000019182,0.0000019175,0.0000019176,0.0000019182,0.0000019197, -0.0000019207,0.0000019212,0.0000019200,0.0000019164,0.0000019108, -0.0000019034,0.0000018949,0.0000018870,0.0000018814,0.0000018785, -0.0000018779,0.0000018783,0.0000018791,0.0000018799,0.0000018800, -0.0000018794,0.0000018779,0.0000018752,0.0000018716,0.0000018674, -0.0000018638,0.0000018608,0.0000018578,0.0000018551,0.0000018531, -0.0000018514,0.0000018496,0.0000018477,0.0000018454,0.0000018429, -0.0000018397,0.0000018359,0.0000018323,0.0000018293,0.0000018272, -0.0000018260,0.0000018255,0.0000018252,0.0000018252,0.0000018255, -0.0000018264,0.0000018277,0.0000018293,0.0000018313,0.0000018344, -0.0000018384,0.0000018422,0.0000018452,0.0000018478,0.0000018503, -0.0000018527,0.0000018550,0.0000018574,0.0000018600,0.0000018627, -0.0000018651,0.0000018672,0.0000018691,0.0000018710,0.0000018731, -0.0000018752,0.0000018775,0.0000018798,0.0000018820,0.0000018835, -0.0000018841,0.0000018842,0.0000018844,0.0000018844,0.0000018843, -0.0000018833,0.0000018810,0.0000018781,0.0000018762,0.0000018766, -0.0000018793,0.0000018827,0.0000018852,0.0000018864,0.0000018829, -0.0000018705,0.0000018631,0.0000018611,0.0000018536,0.0000018469, -0.0000018551,0.0000018768,0.0000018851,0.0000018818,0.0000018813, -0.0000018778,0.0000018741,0.0000018738,0.0000018736,0.0000018731, -0.0000018727,0.0000018734,0.0000018691,0.0000018052,0.0000017664, -0.0000017737,0.0000017676,0.0000017595,0.0000017708,0.0000017737, -0.0000017686,0.0000017621,0.0000017575,0.0000017553,0.0000017549, -0.0000017549,0.0000017551,0.0000017545,0.0000017540,0.0000017540, -0.0000017542,0.0000017549,0.0000017570,0.0000017598,0.0000017630, -0.0000017657,0.0000017674,0.0000017676,0.0000017660,0.0000017625, -0.0000017577,0.0000017527,0.0000017483,0.0000017456,0.0000017424, -0.0000017366,0.0000017345,0.0000017386,0.0000017484,0.0000017569, -0.0000017610,0.0000017580,0.0000017537,0.0000017577,0.0000017681, -0.0000017777,0.0000017798,0.0000017767,0.0000017731,0.0000017727, -0.0000017744,0.0000017764,0.0000017779,0.0000017792,0.0000017804, -0.0000017812,0.0000017810,0.0000017796,0.0000017775,0.0000017760, -0.0000017755,0.0000017760,0.0000017772,0.0000017789,0.0000017811, -0.0000017840,0.0000017875,0.0000017913,0.0000017948,0.0000017974, -0.0000017989,0.0000017996,0.0000017994,0.0000017986,0.0000017975, -0.0000017970,0.0000017973,0.0000017982,0.0000017999,0.0000018002, -0.0000018010,0.0000017997,0.0000017976,0.0000017948,0.0000017916, -0.0000017884,0.0000017853,0.0000017828,0.0000017807,0.0000017792, -0.0000017785,0.0000017785,0.0000017785,0.0000017782,0.0000017781, -0.0000017785,0.0000017794,0.0000017810,0.0000017830,0.0000017853, -0.0000017872,0.0000017890,0.0000017908,0.0000017924,0.0000017942, -0.0000017961,0.0000017983,0.0000018006,0.0000018025,0.0000018041, -0.0000018059,0.0000018087,0.0000018121,0.0000018150,0.0000018164, -0.0000018161,0.0000018149,0.0000018127,0.0000018107,0.0000018096, -0.0000018098,0.0000018103,0.0000018104,0.0000018095,0.0000018089, -0.0000018099,0.0000018122,0.0000018155,0.0000018185,0.0000018202, -0.0000018207,0.0000018202,0.0000018183,0.0000018149,0.0000018117, -0.0000018104,0.0000018114,0.0000018152,0.0000018209,0.0000018272, -0.0000018334,0.0000018384,0.0000018414,0.0000018429,0.0000018432, -0.0000018427,0.0000018411,0.0000018393,0.0000018381,0.0000018378, -0.0000018379,0.0000018352,0.0000018353,0.0000018358,0.0000018363, -0.0000018366,0.0000018367,0.0000018359,0.0000018352,0.0000018347, -0.0000018345,0.0000018343,0.0000018339,0.0000018332,0.0000018327, -0.0000018325,0.0000018324,0.0000018323,0.0000018323,0.0000018326, -0.0000018333,0.0000018340,0.0000018345,0.0000018346,0.0000018346, -0.0000018342,0.0000018334,0.0000018322,0.0000018307,0.0000018291, -0.0000018275,0.0000018262,0.0000018252,0.0000018248,0.0000018250, -0.0000018258,0.0000018274,0.0000018296,0.0000018321,0.0000018348, -0.0000018377,0.0000018412,0.0000018450,0.0000018488,0.0000018520, -0.0000018544,0.0000018563,0.0000018578,0.0000018588,0.0000018595, -0.0000018597,0.0000018598,0.0000018600,0.0000018607,0.0000018619, -0.0000018631,0.0000018646,0.0000018659,0.0000018667,0.0000018663, -0.0000018664,0.0000018652,0.0000018630,0.0000018599,0.0000018558, -0.0000018507,0.0000018454,0.0000018409,0.0000018367,0.0000018353, -0.0000018350,0.0000018370,0.0000018399,0.0000018443,0.0000018486, -0.0000018520,0.0000018537,0.0000018534,0.0000018490,0.0000018403, -0.0000018299,0.0000018205,0.0000018154,0.0000018157,0.0000018181, -0.0000018208,0.0000018218,0.0000018190,0.0000018139,0.0000018090, -0.0000018049,0.0000018011,0.0000017979,0.0000017957,0.0000017950, -0.0000017964,0.0000017996,0.0000018042,0.0000018084,0.0000018118, -0.0000018144,0.0000018168,0.0000018192,0.0000018211,0.0000018221, -0.0000018221,0.0000018214,0.0000018214,0.0000018219,0.0000018224, -0.0000018226,0.0000018227,0.0000018228,0.0000018235,0.0000018247, -0.0000018261,0.0000018268,0.0000018271,0.0000018270,0.0000018268, -0.0000018267,0.0000018269,0.0000018273,0.0000018266,0.0000018239, -0.0000018186,0.0000018117,0.0000018048,0.0000017993,0.0000017951, -0.0000017917,0.0000017889,0.0000017871,0.0000017857,0.0000017843, -0.0000017833,0.0000017830,0.0000017836,0.0000017848,0.0000017864, -0.0000017876,0.0000017882,0.0000017883,0.0000017881,0.0000017881, -0.0000017883,0.0000017892,0.0000017905,0.0000017916,0.0000017918, -0.0000017910,0.0000017896,0.0000017881,0.0000017864,0.0000017849, -0.0000017840,0.0000017836,0.0000017829,0.0000017815,0.0000017796, -0.0000017772,0.0000017744,0.0000017717,0.0000017697,0.0000017688, -0.0000017689,0.0000017694,0.0000017703,0.0000017713,0.0000017724, -0.0000017739,0.0000017756,0.0000017771,0.0000017780,0.0000017786, -0.0000017792,0.0000017803,0.0000017818,0.0000017837,0.0000017853, -0.0000017864,0.0000017867,0.0000017865,0.0000017858,0.0000017848, -0.0000017834,0.0000017813,0.0000017791,0.0000017771,0.0000017745, -0.0000017715,0.0000017685,0.0000017662,0.0000017655,0.0000017652, -0.0000017649,0.0000017649,0.0000017647,0.0000017641,0.0000017635, -0.0000017631,0.0000017627,0.0000017619,0.0000017607,0.0000017588, -0.0000017569,0.0000017552,0.0000017537,0.0000017519,0.0000017517, -0.0000017527,0.0000017545,0.0000017569,0.0000017600,0.0000017629, -0.0000017656,0.0000017679,0.0000017687,0.0000017684,0.0000017687, -0.0000017693,0.0000017691,0.0000017685,0.0000017695,0.0000017706, -0.0000017709,0.0000017708,0.0000017706,0.0000017701,0.0000017694, -0.0000017679,0.0000017669,0.0000017659,0.0000017660,0.0000017668, -0.0000017681,0.0000017706,0.0000017738,0.0000017773,0.0000017810, -0.0000017825,0.0000017839,0.0000017830,0.0000017804,0.0000017764, -0.0000017715,0.0000017659,0.0000017595,0.0000017529,0.0000017473, -0.0000017432,0.0000017408,0.0000017404,0.0000017403,0.0000017411, -0.0000017425,0.0000017440,0.0000017443,0.0000017431,0.0000017401, -0.0000017359,0.0000017337,0.0000017332,0.0000017350,0.0000017398, -0.0000017472,0.0000017559,0.0000017651,0.0000017733,0.0000017796, -0.0000017829,0.0000017846,0.0000017865,0.0000017899,0.0000017906, -0.0000017888,0.0000017830,0.0000017733,0.0000017614,0.0000017495, -0.0000017410,0.0000017376,0.0000017371,0.0000017370,0.0000017362, -0.0000017353,0.0000017346,0.0000017340,0.0000017329,0.0000017312, -0.0000017294,0.0000017283,0.0000017280,0.0000017282,0.0000017288, -0.0000017292,0.0000017294,0.0000017295,0.0000017292,0.0000017288, -0.0000017284,0.0000017278,0.0000017271,0.0000017266,0.0000017264, -0.0000017261,0.0000017257,0.0000017260,0.0000017271,0.0000017288, -0.0000017307,0.0000017323,0.0000017347,0.0000017370,0.0000017387, -0.0000017397,0.0000017401,0.0000017406,0.0000017412,0.0000017415, -0.0000017418,0.0000017421,0.0000017428,0.0000017437,0.0000017444, -0.0000017448,0.0000017452,0.0000017456,0.0000017459,0.0000017463, -0.0000017464,0.0000017462,0.0000017457,0.0000017452,0.0000017443, -0.0000017432,0.0000017422,0.0000017410,0.0000017402,0.0000017399, -0.0000017405,0.0000017420,0.0000017442,0.0000017469,0.0000017493, -0.0000017506,0.0000017506,0.0000017498,0.0000017487,0.0000017473, -0.0000017459,0.0000017446,0.0000017436,0.0000017424,0.0000017416, -0.0000017406,0.0000017392,0.0000017373,0.0000017351,0.0000017330, -0.0000017316,0.0000017310,0.0000017313,0.0000017326,0.0000017355, -0.0000017398,0.0000017454,0.0000017526,0.0000017617,0.0000017710, -0.0000017771,0.0000017790,0.0000017789,0.0000017731,0.0000017661, -0.0000017602,0.0000017569,0.0000017559,0.0000017559,0.0000017557, -0.0000017552,0.0000017547,0.0000017549,0.0000017556,0.0000017573, -0.0000017598,0.0000017626,0.0000017652,0.0000017672,0.0000017681, -0.0000017682,0.0000017683,0.0000017690,0.0000017706,0.0000017733, -0.0000017763,0.0000017785,0.0000017797,0.0000017803,0.0000017810, -0.0000017827,0.0000017857,0.0000017898,0.0000017948,0.0000018002, -0.0000018053,0.0000018101,0.0000018141,0.0000018170,0.0000018187, -0.0000018195,0.0000018194,0.0000018183,0.0000018165,0.0000018145, -0.0000018122,0.0000018101,0.0000018093,0.0000018084,0.0000018082, -0.0000018086,0.0000018105,0.0000018124,0.0000018156,0.0000018195, -0.0000018234,0.0000018268,0.0000018299,0.0000018326,0.0000018349, -0.0000018372,0.0000018393,0.0000018418,0.0000018439,0.0000018459, -0.0000018480,0.0000018498,0.0000018513,0.0000018524,0.0000018531, -0.0000018532,0.0000018528,0.0000018521,0.0000018511,0.0000018500, -0.0000018487,0.0000018468,0.0000018443,0.0000018429,0.0000018413, -0.0000018399,0.0000018395,0.0000018390,0.0000018383,0.0000018393, -0.0000018395,0.0000018395,0.0000018395,0.0000018395,0.0000018388, -0.0000018383,0.0000018375,0.0000018365,0.0000018361,0.0000018349, -0.0000018336,0.0000018323,0.0000018306,0.0000018285,0.0000018262, -0.0000018239,0.0000018211,0.0000018178,0.0000018145,0.0000018114, -0.0000018083,0.0000018051,0.0000018023,0.0000017998,0.0000017971, -0.0000017950,0.0000017931,0.0000017918,0.0000017909,0.0000017904, -0.0000017901,0.0000017903,0.0000017905,0.0000017900,0.0000017892, -0.0000017881,0.0000017866,0.0000017852,0.0000017847,0.0000017841, -0.0000017820,0.0000017784,0.0000017745,0.0000017704,0.0000017660, -0.0000017618,0.0000017575,0.0000017540,0.0000017510,0.0000017486, -0.0000017470,0.0000017453,0.0000017433,0.0000017413,0.0000017394, -0.0000017380,0.0000017360,0.0000017339,0.0000017323,0.0000017321, -0.0000017326,0.0000017338,0.0000017353,0.0000017372,0.0000017387, -0.0000017395,0.0000017395,0.0000017386,0.0000017371,0.0000017347, -0.0000017317,0.0000017284,0.0000017245,0.0000017206,0.0000017172, -0.0000017150,0.0000017139,0.0000017139,0.0000017150,0.0000017172, -0.0000017199,0.0000017228,0.0000017260,0.0000017290,0.0000017314, -0.0000017330,0.0000017348,0.0000017370,0.0000017387,0.0000017401, -0.0000017410,0.0000017412,0.0000017406,0.0000017400,0.0000017397, -0.0000017394,0.0000017390,0.0000017382,0.0000017376,0.0000017376, -0.0000017378,0.0000017379,0.0000017391,0.0000017422,0.0000017470, -0.0000017534,0.0000017615,0.0000017717,0.0000017828,0.0000017949, -0.0000018071,0.0000018191,0.0000018307,0.0000018421,0.0000018527, -0.0000018624,0.0000018710,0.0000018783,0.0000018842,0.0000018890, -0.0000018928,0.0000018959,0.0000018989,0.0000019014,0.0000019033, -0.0000019048,0.0000019063,0.0000019074,0.0000019090,0.0000019110, -0.0000019138,0.0000019175,0.0000019208,0.0000019245,0.0000019282, -0.0000019310,0.0000019334,0.0000019361,0.0000019386,0.0000019408, -0.0000019425,0.0000019436,0.0000019443,0.0000019443,0.0000019434, -0.0000019423,0.0000019403,0.0000019374,0.0000019345,0.0000019317, -0.0000019288,0.0000019255,0.0000019217,0.0000019175,0.0000019136, -0.0000019103,0.0000019079,0.0000019060,0.0000019048,0.0000019038, -0.0000019034,0.0000019031,0.0000019030,0.0000019026,0.0000019014, -0.0000018994,0.0000018975,0.0000018950,0.0000018925,0.0000018911, -0.0000018898,0.0000018878,0.0000018850,0.0000018821,0.0000018807, -0.0000018799,0.0000018790,0.0000018773,0.0000018745,0.0000018710, -0.0000018679,0.0000018656,0.0000018645,0.0000018643,0.0000018642, -0.0000018636,0.0000018631,0.0000018627,0.0000018620,0.0000018609, -0.0000018600,0.0000018597,0.0000018590,0.0000018583,0.0000018587, -0.0000018603,0.0000018616,0.0000018623,0.0000018632,0.0000018653, -0.0000018691,0.0000018752,0.0000018843,0.0000018966,0.0000019104, -0.0000019237,0.0000019355,0.0000019455,0.0000019529,0.0000019578, -0.0000019604,0.0000019604,0.0000019613,0.0000019615,0.0000019607, -0.0000019597,0.0000019590,0.0000019590,0.0000019587,0.0000019588, -0.0000019588,0.0000019589,0.0000019596,0.0000019608,0.0000019623, -0.0000019639,0.0000019653,0.0000019667,0.0000019666,0.0000019675, -0.0000019681,0.0000019670,0.0000019642,0.0000019606,0.0000019570, -0.0000019538,0.0000019511,0.0000019486,0.0000019464,0.0000019441, -0.0000019423,0.0000019415,0.0000019418,0.0000019414,0.0000019398, -0.0000019378,0.0000019361,0.0000019357,0.0000019367,0.0000019387, -0.0000019403,0.0000019412,0.0000019415,0.0000019411,0.0000019396, -0.0000019372,0.0000019348,0.0000019334,0.0000019328,0.0000019326, -0.0000019318,0.0000019303,0.0000019283,0.0000019265,0.0000019251, -0.0000019230,0.0000019200,0.0000019165,0.0000019139,0.0000019128, -0.0000019126,0.0000019126,0.0000019126,0.0000019126,0.0000019123, -0.0000019114,0.0000019102,0.0000019091,0.0000019080,0.0000019066, -0.0000019050,0.0000019031,0.0000019004,0.0000018975,0.0000018950, -0.0000018927,0.0000018906,0.0000018884,0.0000018862,0.0000018835, -0.0000018803,0.0000018773,0.0000018748,0.0000018729,0.0000018720, -0.0000018702,0.0000018687,0.0000018678,0.0000018671,0.0000018662, -0.0000018653,0.0000018649,0.0000018658,0.0000018681,0.0000018715, -0.0000018752,0.0000018787,0.0000018824,0.0000018860,0.0000018879, -0.0000018895,0.0000018894,0.0000018878,0.0000018850,0.0000018819, -0.0000018797,0.0000018789,0.0000018791,0.0000018791,0.0000018796, -0.0000018805,0.0000018814,0.0000018814,0.0000018808,0.0000018791, -0.0000018764,0.0000018730,0.0000018695,0.0000018661,0.0000018628, -0.0000018593,0.0000018560,0.0000018529,0.0000018501,0.0000018480, -0.0000018466,0.0000018450,0.0000018411,0.0000018344,0.0000018257, -0.0000018185,0.0000018156,0.0000018185,0.0000018280,0.0000018420, -0.0000018552,0.0000018643,0.0000018683,0.0000018677,0.0000018637, -0.0000018566,0.0000018482,0.0000018396,0.0000018314,0.0000018269, -0.0000018273,0.0000018366,0.0000018512,0.0000018653,0.0000018753, -0.0000018798,0.0000018800,0.0000018778,0.0000018745,0.0000018703, -0.0000018653,0.0000018586,0.0000018507,0.0000018413,0.0000018317, -0.0000018243,0.0000018199,0.0000018184,0.0000018177,0.0000018176, -0.0000018178,0.0000018189,0.0000018209,0.0000018237,0.0000018259, -0.0000018259,0.0000018247,0.0000018234,0.0000018219,0.0000018198, -0.0000018185,0.0000018182,0.0000018191,0.0000018213,0.0000018242, -0.0000018274,0.0000018307,0.0000018342,0.0000018369,0.0000018374, -0.0000018351,0.0000018320,0.0000018303,0.0000018298,0.0000018292, -0.0000018281,0.0000018257,0.0000018223,0.0000018190,0.0000018170, -0.0000018161,0.0000018168,0.0000018184,0.0000018200,0.0000018211, -0.0000018219,0.0000018222,0.0000018218,0.0000018200,0.0000018164, -0.0000018112,0.0000018048,0.0000017980,0.0000017918,0.0000017868, -0.0000017828,0.0000017795,0.0000017766,0.0000017747,0.0000017746, -0.0000017761,0.0000017778,0.0000017785,0.0000017786,0.0000017785, -0.0000017788,0.0000017794,0.0000017799,0.0000017805,0.0000017812, -0.0000017815,0.0000017818,0.0000017824,0.0000017832,0.0000017835, -0.0000017833,0.0000017829,0.0000017825,0.0000017816,0.0000017803, -0.0000017791,0.0000017780,0.0000017767,0.0000017752,0.0000017734, -0.0000017711,0.0000017683,0.0000017649,0.0000017615,0.0000017584, -0.0000017560,0.0000017542,0.0000017525,0.0000017509,0.0000017496, -0.0000017486,0.0000017478,0.0000017481,0.0000017496,0.0000017529, -0.0000017580,0.0000017641,0.0000017697,0.0000017735,0.0000017757, -0.0000017763,0.0000017756,0.0000017744,0.0000017729,0.0000017713, -0.0000017697,0.0000017681,0.0000017669,0.0000017671,0.0000017672, -0.0000017676,0.0000017681,0.0000017684,0.0000017686,0.0000017688, -0.0000017693,0.0000017700,0.0000017705,0.0000017713,0.0000017723, -0.0000017737,0.0000017759,0.0000017790,0.0000017834,0.0000017873, -0.0000017904,0.0000017901,0.0000017883,0.0000017865,0.0000017868, -0.0000017900,0.0000017967,0.0000018056,0.0000018140,0.0000018202, -0.0000018235,0.0000018249,0.0000018267,0.0000018294,0.0000018320, -0.0000018336,0.0000018342,0.0000018349,0.0000018391,0.0000018477, -0.0000018606,0.0000018764,0.0000018920,0.0000019037,0.0000019149, -0.0000019196,0.0000019216,0.0000019242,0.0000019226,0.0000019214, -0.0000019205,0.0000019200,0.0000019199,0.0000019198,0.0000019196, -0.0000019183,0.0000019145,0.0000019089,0.0000019016,0.0000018939, -0.0000018872,0.0000018823,0.0000018797,0.0000018798,0.0000018800, -0.0000018800,0.0000018800,0.0000018794,0.0000018780,0.0000018760, -0.0000018737,0.0000018711,0.0000018683,0.0000018656,0.0000018635, -0.0000018619,0.0000018602,0.0000018584,0.0000018565,0.0000018544, -0.0000018517,0.0000018489,0.0000018461,0.0000018440,0.0000018427, -0.0000018423,0.0000018424,0.0000018426,0.0000018427,0.0000018426, -0.0000018423,0.0000018421,0.0000018422,0.0000018427,0.0000018442, -0.0000018465,0.0000018491,0.0000018516,0.0000018542,0.0000018573, -0.0000018610,0.0000018649,0.0000018687,0.0000018722,0.0000018753, -0.0000018777,0.0000018792,0.0000018799,0.0000018806,0.0000018815, -0.0000018831,0.0000018851,0.0000018874,0.0000018894,0.0000018905, -0.0000018906,0.0000018906,0.0000018904,0.0000018904,0.0000018900, -0.0000018885,0.0000018858,0.0000018827,0.0000018810,0.0000018820, -0.0000018849,0.0000018872,0.0000018879,0.0000018870,0.0000018768, -0.0000018654,0.0000018617,0.0000018568,0.0000018498,0.0000018541, -0.0000018736,0.0000018861,0.0000018836,0.0000018822,0.0000018812, -0.0000018772,0.0000018754,0.0000018750,0.0000018748,0.0000018749, -0.0000018750,0.0000018754,0.0000018682,0.0000017970,0.0000017689, -0.0000017743,0.0000017655,0.0000017604,0.0000017690,0.0000017727, -0.0000017696,0.0000017667,0.0000017623,0.0000017586,0.0000017561, -0.0000017547,0.0000017544,0.0000017543,0.0000017544,0.0000017543, -0.0000017543,0.0000017546,0.0000017550,0.0000017556,0.0000017569, -0.0000017583,0.0000017590,0.0000017583,0.0000017564,0.0000017538, -0.0000017516,0.0000017497,0.0000017475,0.0000017430,0.0000017384, -0.0000017378,0.0000017442,0.0000017537,0.0000017600,0.0000017608, -0.0000017558,0.0000017544,0.0000017630,0.0000017747,0.0000017808, -0.0000017779,0.0000017725,0.0000017706,0.0000017711,0.0000017723, -0.0000017734,0.0000017744,0.0000017754,0.0000017763,0.0000017772, -0.0000017779,0.0000017781,0.0000017777,0.0000017768,0.0000017760, -0.0000017755,0.0000017752,0.0000017754,0.0000017763,0.0000017779, -0.0000017803,0.0000017831,0.0000017860,0.0000017890,0.0000017915, -0.0000017936,0.0000017949,0.0000017951,0.0000017946,0.0000017935, -0.0000017923,0.0000017917,0.0000017921,0.0000017936,0.0000017958, -0.0000017981,0.0000018001,0.0000017997,0.0000017991,0.0000017975, -0.0000017949,0.0000017920,0.0000017893,0.0000017869,0.0000017849, -0.0000017835,0.0000017826,0.0000017819,0.0000017816,0.0000017819, -0.0000017827,0.0000017840,0.0000017855,0.0000017872,0.0000017888, -0.0000017903,0.0000017915,0.0000017924,0.0000017933,0.0000017943, -0.0000017955,0.0000017971,0.0000017995,0.0000018020,0.0000018047, -0.0000018079,0.0000018111,0.0000018135,0.0000018149,0.0000018152, -0.0000018144,0.0000018128,0.0000018107,0.0000018087,0.0000018081, -0.0000018086,0.0000018092,0.0000018089,0.0000018083,0.0000018083, -0.0000018100,0.0000018134,0.0000018169,0.0000018200,0.0000018216, -0.0000018220,0.0000018220,0.0000018203,0.0000018176,0.0000018140, -0.0000018118,0.0000018119,0.0000018137,0.0000018168,0.0000018212, -0.0000018249,0.0000018277,0.0000018295,0.0000018309,0.0000018322, -0.0000018330,0.0000018340,0.0000018349,0.0000018353,0.0000018354, -0.0000018368,0.0000018370,0.0000018365,0.0000018351,0.0000018329, -0.0000018310,0.0000018293,0.0000018285,0.0000018285,0.0000018288, -0.0000018291,0.0000018291,0.0000018290,0.0000018293,0.0000018298, -0.0000018303,0.0000018306,0.0000018312,0.0000018323,0.0000018334, -0.0000018343,0.0000018349,0.0000018350,0.0000018349,0.0000018346, -0.0000018340,0.0000018329,0.0000018313,0.0000018294,0.0000018274, -0.0000018257,0.0000018242,0.0000018232,0.0000018225,0.0000018226, -0.0000018234,0.0000018249,0.0000018269,0.0000018296,0.0000018328, -0.0000018363,0.0000018404,0.0000018444,0.0000018476,0.0000018501, -0.0000018518,0.0000018527,0.0000018530,0.0000018528,0.0000018521, -0.0000018514,0.0000018511,0.0000018516,0.0000018525,0.0000018541, -0.0000018564,0.0000018590,0.0000018614,0.0000018637,0.0000018653, -0.0000018662,0.0000018663,0.0000018665,0.0000018658,0.0000018641, -0.0000018616,0.0000018576,0.0000018525,0.0000018477,0.0000018429, -0.0000018401,0.0000018390,0.0000018410,0.0000018437,0.0000018477, -0.0000018518,0.0000018546,0.0000018545,0.0000018521,0.0000018451, -0.0000018349,0.0000018251,0.0000018190,0.0000018184,0.0000018205, -0.0000018232,0.0000018244,0.0000018221,0.0000018177,0.0000018130, -0.0000018088,0.0000018051,0.0000018016,0.0000017978,0.0000017947, -0.0000017936,0.0000017945,0.0000017977,0.0000018018,0.0000018056, -0.0000018091,0.0000018122,0.0000018151,0.0000018175,0.0000018192, -0.0000018202,0.0000018212,0.0000018219,0.0000018224,0.0000018227, -0.0000018230,0.0000018229,0.0000018227,0.0000018230,0.0000018243, -0.0000018264,0.0000018283,0.0000018303,0.0000018319,0.0000018323, -0.0000018320,0.0000018317,0.0000018316,0.0000018313,0.0000018296, -0.0000018255,0.0000018192,0.0000018117,0.0000018043,0.0000017979, -0.0000017929,0.0000017889,0.0000017859,0.0000017842,0.0000017833, -0.0000017826,0.0000017828,0.0000017841,0.0000017859,0.0000017878, -0.0000017890,0.0000017895,0.0000017895,0.0000017892,0.0000017891, -0.0000017897,0.0000017908,0.0000017922,0.0000017932,0.0000017938, -0.0000017937,0.0000017934,0.0000017929,0.0000017920,0.0000017912, -0.0000017903,0.0000017890,0.0000017872,0.0000017852,0.0000017833, -0.0000017816,0.0000017804,0.0000017800,0.0000017805,0.0000017815, -0.0000017822,0.0000017824,0.0000017821,0.0000017818,0.0000017818, -0.0000017824,0.0000017835,0.0000017848,0.0000017859,0.0000017868, -0.0000017877,0.0000017889,0.0000017906,0.0000017923,0.0000017934, -0.0000017936,0.0000017931,0.0000017923,0.0000017911,0.0000017890, -0.0000017866,0.0000017846,0.0000017834,0.0000017822,0.0000017807, -0.0000017784,0.0000017755,0.0000017726,0.0000017696,0.0000017672, -0.0000017654,0.0000017643,0.0000017636,0.0000017625,0.0000017625, -0.0000017628,0.0000017629,0.0000017626,0.0000017618,0.0000017607, -0.0000017591,0.0000017568,0.0000017546,0.0000017527,0.0000017516, -0.0000017502,0.0000017498,0.0000017496,0.0000017505,0.0000017519, -0.0000017537,0.0000017554,0.0000017575,0.0000017601,0.0000017633, -0.0000017661,0.0000017684,0.0000017707,0.0000017724,0.0000017746, -0.0000017759,0.0000017758,0.0000017745,0.0000017728,0.0000017711, -0.0000017693,0.0000017672,0.0000017656,0.0000017642,0.0000017634, -0.0000017641,0.0000017659,0.0000017687,0.0000017723,0.0000017762, -0.0000017799,0.0000017820,0.0000017832,0.0000017828,0.0000017807, -0.0000017770,0.0000017718,0.0000017655,0.0000017595,0.0000017544, -0.0000017501,0.0000017459,0.0000017421,0.0000017413,0.0000017407, -0.0000017421,0.0000017442,0.0000017465,0.0000017464,0.0000017444, -0.0000017404,0.0000017349,0.0000017306,0.0000017293,0.0000017317, -0.0000017382,0.0000017463,0.0000017550,0.0000017634,0.0000017707, -0.0000017758,0.0000017786,0.0000017796,0.0000017808,0.0000017839, -0.0000017861,0.0000017859,0.0000017824,0.0000017739,0.0000017629, -0.0000017514,0.0000017424,0.0000017379,0.0000017369,0.0000017373, -0.0000017373,0.0000017367,0.0000017359,0.0000017347,0.0000017330, -0.0000017309,0.0000017291,0.0000017278,0.0000017271,0.0000017272, -0.0000017278,0.0000017288,0.0000017300,0.0000017306,0.0000017307, -0.0000017301,0.0000017291,0.0000017278,0.0000017268,0.0000017260, -0.0000017258,0.0000017263,0.0000017267,0.0000017278,0.0000017289, -0.0000017307,0.0000017328,0.0000017345,0.0000017356,0.0000017363, -0.0000017369,0.0000017375,0.0000017379,0.0000017382,0.0000017388, -0.0000017401,0.0000017415,0.0000017427,0.0000017435,0.0000017438, -0.0000017440,0.0000017445,0.0000017449,0.0000017450,0.0000017450, -0.0000017448,0.0000017445,0.0000017443,0.0000017444,0.0000017451, -0.0000017463,0.0000017479,0.0000017498,0.0000017518,0.0000017534, -0.0000017544,0.0000017547,0.0000017542,0.0000017530,0.0000017512, -0.0000017494,0.0000017479,0.0000017464,0.0000017454,0.0000017449, -0.0000017449,0.0000017447,0.0000017440,0.0000017427,0.0000017408, -0.0000017384,0.0000017361,0.0000017343,0.0000017335,0.0000017337, -0.0000017352,0.0000017383,0.0000017436,0.0000017516,0.0000017612, -0.0000017705,0.0000017766,0.0000017777,0.0000017758,0.0000017697, -0.0000017627,0.0000017571,0.0000017542,0.0000017535,0.0000017539, -0.0000017542,0.0000017541,0.0000017537,0.0000017536,0.0000017550, -0.0000017578,0.0000017613,0.0000017647,0.0000017671,0.0000017686, -0.0000017695,0.0000017702,0.0000017715,0.0000017734,0.0000017758, -0.0000017782,0.0000017800,0.0000017810,0.0000017817,0.0000017824, -0.0000017837,0.0000017861,0.0000017900,0.0000017954,0.0000018013, -0.0000018070,0.0000018119,0.0000018155,0.0000018179,0.0000018191, -0.0000018197,0.0000018197,0.0000018196,0.0000018185,0.0000018175, -0.0000018164,0.0000018147,0.0000018132,0.0000018133,0.0000018146, -0.0000018161,0.0000018177,0.0000018199,0.0000018233,0.0000018272, -0.0000018309,0.0000018348,0.0000018387,0.0000018421,0.0000018450, -0.0000018473,0.0000018503,0.0000018519,0.0000018528,0.0000018531, -0.0000018546,0.0000018555,0.0000018560,0.0000018581,0.0000018602, -0.0000018622,0.0000018639,0.0000018652,0.0000018656,0.0000018665, -0.0000018672,0.0000018674,0.0000018666,0.0000018653,0.0000018638, -0.0000018611,0.0000018581,0.0000018551,0.0000018522,0.0000018494, -0.0000018466,0.0000018446,0.0000018433,0.0000018421,0.0000018417, -0.0000018415,0.0000018412,0.0000018412,0.0000018412,0.0000018409, -0.0000018410,0.0000018416,0.0000018422,0.0000018430,0.0000018431, -0.0000018424,0.0000018412,0.0000018396,0.0000018373,0.0000018338, -0.0000018298,0.0000018254,0.0000018211,0.0000018173,0.0000018138, -0.0000018107,0.0000018077,0.0000018052,0.0000018032,0.0000018014, -0.0000017999,0.0000017985,0.0000017968,0.0000017950,0.0000017935, -0.0000017926,0.0000017913,0.0000017900,0.0000017892,0.0000017889, -0.0000017890,0.0000017902,0.0000017918,0.0000017932,0.0000017922, -0.0000017904,0.0000017881,0.0000017847,0.0000017797,0.0000017738, -0.0000017678,0.0000017614,0.0000017551,0.0000017499,0.0000017457, -0.0000017422,0.0000017400,0.0000017390,0.0000017387,0.0000017382, -0.0000017376,0.0000017372,0.0000017371,0.0000017374,0.0000017376, -0.0000017378,0.0000017380,0.0000017381,0.0000017382,0.0000017386, -0.0000017388,0.0000017389,0.0000017388,0.0000017383,0.0000017370, -0.0000017348,0.0000017320,0.0000017289,0.0000017255,0.0000017219, -0.0000017188,0.0000017166,0.0000017156,0.0000017148,0.0000017154, -0.0000017173,0.0000017196,0.0000017222,0.0000017257,0.0000017296, -0.0000017340,0.0000017381,0.0000017410,0.0000017432,0.0000017440, -0.0000017437,0.0000017434,0.0000017427,0.0000017421,0.0000017416, -0.0000017409,0.0000017401,0.0000017393,0.0000017386,0.0000017384, -0.0000017393,0.0000017402,0.0000017413,0.0000017423,0.0000017436, -0.0000017463,0.0000017502,0.0000017551,0.0000017604,0.0000017658, -0.0000017717,0.0000017782,0.0000017855,0.0000017938,0.0000018037, -0.0000018147,0.0000018258,0.0000018364,0.0000018463,0.0000018554, -0.0000018632,0.0000018697,0.0000018751,0.0000018799,0.0000018834, -0.0000018863,0.0000018899,0.0000018931,0.0000018967,0.0000019003, -0.0000019037,0.0000019075,0.0000019108,0.0000019136,0.0000019163, -0.0000019188,0.0000019211,0.0000019233,0.0000019256,0.0000019283, -0.0000019312,0.0000019338,0.0000019359,0.0000019368,0.0000019365, -0.0000019349,0.0000019329,0.0000019309,0.0000019286,0.0000019257, -0.0000019224,0.0000019189,0.0000019154,0.0000019122,0.0000019092, -0.0000019064,0.0000019042,0.0000019029,0.0000019019,0.0000019013, -0.0000019004,0.0000018990,0.0000018975,0.0000018958,0.0000018930, -0.0000018893,0.0000018860,0.0000018824,0.0000018774,0.0000018712, -0.0000018642,0.0000018577,0.0000018520,0.0000018471,0.0000018424, -0.0000018368,0.0000018307,0.0000018250,0.0000018202,0.0000018168, -0.0000018148,0.0000018140,0.0000018129,0.0000018115,0.0000018110, -0.0000018113,0.0000018119,0.0000018129,0.0000018146,0.0000018173, -0.0000018204,0.0000018241,0.0000018287,0.0000018324,0.0000018339, -0.0000018337,0.0000018320,0.0000018299,0.0000018289,0.0000018300, -0.0000018340,0.0000018414,0.0000018525,0.0000018675,0.0000018853, -0.0000019036,0.0000019200,0.0000019333,0.0000019435,0.0000019514, -0.0000019565,0.0000019590,0.0000019602,0.0000019601,0.0000019609, -0.0000019615,0.0000019609,0.0000019597,0.0000019582,0.0000019568, -0.0000019557,0.0000019550,0.0000019548,0.0000019553,0.0000019571, -0.0000019596,0.0000019623,0.0000019647,0.0000019663,0.0000019665, -0.0000019660,0.0000019642,0.0000019619,0.0000019590,0.0000019562, -0.0000019541,0.0000019519,0.0000019498,0.0000019487,0.0000019486, -0.0000019480,0.0000019461,0.0000019431,0.0000019399,0.0000019374, -0.0000019373,0.0000019390,0.0000019414,0.0000019435,0.0000019456, -0.0000019470,0.0000019466,0.0000019447,0.0000019420,0.0000019398, -0.0000019385,0.0000019380,0.0000019374,0.0000019364,0.0000019348, -0.0000019333,0.0000019321,0.0000019305,0.0000019278,0.0000019239, -0.0000019198,0.0000019167,0.0000019149,0.0000019146,0.0000019152, -0.0000019159,0.0000019161,0.0000019155,0.0000019145,0.0000019134, -0.0000019124,0.0000019117,0.0000019109,0.0000019099,0.0000019087, -0.0000019076,0.0000019061,0.0000019036,0.0000019003,0.0000018966, -0.0000018928,0.0000018890,0.0000018854,0.0000018821,0.0000018793, -0.0000018770,0.0000018752,0.0000018725,0.0000018695,0.0000018670, -0.0000018660,0.0000018654,0.0000018647,0.0000018642,0.0000018636, -0.0000018642,0.0000018658,0.0000018677,0.0000018695,0.0000018712, -0.0000018734,0.0000018772,0.0000018833,0.0000018889,0.0000018914, -0.0000018918,0.0000018903,0.0000018874,0.0000018840,0.0000018811, -0.0000018800,0.0000018801,0.0000018805,0.0000018809,0.0000018810, -0.0000018807,0.0000018797,0.0000018780,0.0000018760,0.0000018741, -0.0000018728,0.0000018721,0.0000018711,0.0000018691,0.0000018659, -0.0000018619,0.0000018579,0.0000018551,0.0000018535,0.0000018526, -0.0000018514,0.0000018480,0.0000018420,0.0000018349,0.0000018289, -0.0000018271,0.0000018291,0.0000018367,0.0000018464,0.0000018561, -0.0000018634,0.0000018654,0.0000018631,0.0000018572,0.0000018493, -0.0000018398,0.0000018303,0.0000018248,0.0000018259,0.0000018342, -0.0000018490,0.0000018633,0.0000018730,0.0000018769,0.0000018769, -0.0000018742,0.0000018709,0.0000018668,0.0000018611,0.0000018541, -0.0000018458,0.0000018368,0.0000018283,0.0000018216,0.0000018173, -0.0000018151,0.0000018146,0.0000018145,0.0000018141,0.0000018150, -0.0000018180,0.0000018211,0.0000018220,0.0000018211,0.0000018202, -0.0000018199,0.0000018196,0.0000018194,0.0000018200,0.0000018216, -0.0000018237,0.0000018260,0.0000018284,0.0000018307,0.0000018332, -0.0000018351,0.0000018353,0.0000018333,0.0000018303,0.0000018288, -0.0000018290,0.0000018291,0.0000018278,0.0000018250,0.0000018215, -0.0000018179,0.0000018146,0.0000018122,0.0000018115,0.0000018119, -0.0000018127,0.0000018136,0.0000018146,0.0000018152,0.0000018147, -0.0000018128,0.0000018100,0.0000018068,0.0000018027,0.0000017978, -0.0000017931,0.0000017895,0.0000017867,0.0000017846,0.0000017828, -0.0000017814,0.0000017805,0.0000017799,0.0000017793,0.0000017783, -0.0000017772,0.0000017764,0.0000017764,0.0000017775,0.0000017797, -0.0000017823,0.0000017851,0.0000017881,0.0000017906,0.0000017926, -0.0000017941,0.0000017951,0.0000017957,0.0000017962,0.0000017966, -0.0000017966,0.0000017961,0.0000017956,0.0000017949,0.0000017942, -0.0000017934,0.0000017916,0.0000017885,0.0000017839,0.0000017778, -0.0000017708,0.0000017638,0.0000017577,0.0000017533,0.0000017514, -0.0000017504,0.0000017504,0.0000017512,0.0000017517,0.0000017516, -0.0000017516,0.0000017521,0.0000017537,0.0000017565,0.0000017596, -0.0000017626,0.0000017654,0.0000017683,0.0000017713,0.0000017736, -0.0000017741,0.0000017741,0.0000017736,0.0000017727,0.0000017717, -0.0000017702,0.0000017683,0.0000017673,0.0000017661,0.0000017660, -0.0000017662,0.0000017666,0.0000017673,0.0000017679,0.0000017683, -0.0000017690,0.0000017701,0.0000017717,0.0000017732,0.0000017749, -0.0000017776,0.0000017817,0.0000017853,0.0000017880,0.0000017875, -0.0000017856,0.0000017844,0.0000017848,0.0000017882,0.0000017953, -0.0000018048,0.0000018136,0.0000018201,0.0000018232,0.0000018242, -0.0000018254,0.0000018279,0.0000018305,0.0000018322,0.0000018328, -0.0000018331,0.0000018359,0.0000018427,0.0000018541,0.0000018679, -0.0000018827,0.0000018969,0.0000019081,0.0000019190,0.0000019239, -0.0000019247,0.0000019273,0.0000019252,0.0000019228,0.0000019204, -0.0000019192,0.0000019195,0.0000019198,0.0000019194,0.0000019177, -0.0000019143,0.0000019091,0.0000019022,0.0000018952,0.0000018891, -0.0000018841,0.0000018806,0.0000018794,0.0000018784,0.0000018779, -0.0000018774,0.0000018773,0.0000018771,0.0000018764,0.0000018754, -0.0000018742,0.0000018730,0.0000018719,0.0000018705,0.0000018686, -0.0000018662,0.0000018634,0.0000018605,0.0000018577,0.0000018555, -0.0000018539,0.0000018529,0.0000018525,0.0000018528,0.0000018532, -0.0000018534,0.0000018532,0.0000018532,0.0000018536,0.0000018548, -0.0000018571,0.0000018602,0.0000018640,0.0000018679,0.0000018716, -0.0000018752,0.0000018787,0.0000018820,0.0000018845,0.0000018861, -0.0000018869,0.0000018871,0.0000018868,0.0000018863,0.0000018865, -0.0000018879,0.0000018897,0.0000018918,0.0000018937,0.0000018934, -0.0000018924,0.0000018902,0.0000018883,0.0000018876,0.0000018879, -0.0000018893,0.0000018909,0.0000018902,0.0000018888,0.0000018869, -0.0000018867,0.0000018871,0.0000018882,0.0000018888,0.0000018833, -0.0000018695,0.0000018623,0.0000018590,0.0000018529,0.0000018541, -0.0000018706,0.0000018854,0.0000018858,0.0000018837,0.0000018835, -0.0000018808,0.0000018778,0.0000018765,0.0000018758,0.0000018757, -0.0000018765,0.0000018775,0.0000018778,0.0000018693,0.0000017982, -0.0000017718,0.0000017746,0.0000017664,0.0000017599,0.0000017631, -0.0000017663,0.0000017670,0.0000017664,0.0000017648,0.0000017635, -0.0000017610,0.0000017583,0.0000017564,0.0000017555,0.0000017548, -0.0000017549,0.0000017550,0.0000017551,0.0000017550,0.0000017548, -0.0000017546,0.0000017545,0.0000017544,0.0000017540,0.0000017531, -0.0000017518,0.0000017496,0.0000017463,0.0000017425,0.0000017409, -0.0000017443,0.0000017520,0.0000017589,0.0000017618,0.0000017593, -0.0000017541,0.0000017578,0.0000017695,0.0000017792,0.0000017803, -0.0000017744,0.0000017702,0.0000017703,0.0000017711,0.0000017714, -0.0000017715,0.0000017716,0.0000017718,0.0000017721,0.0000017724, -0.0000017728,0.0000017735,0.0000017743,0.0000017751,0.0000017758, -0.0000017761,0.0000017761,0.0000017758,0.0000017754,0.0000017748, -0.0000017750,0.0000017761,0.0000017779,0.0000017804,0.0000017831, -0.0000017857,0.0000017879,0.0000017895,0.0000017905,0.0000017905, -0.0000017898,0.0000017885,0.0000017872,0.0000017863,0.0000017864, -0.0000017877,0.0000017903,0.0000017933,0.0000017961,0.0000017987, -0.0000017987,0.0000017993,0.0000017985,0.0000017971,0.0000017954, -0.0000017935,0.0000017919,0.0000017905,0.0000017893,0.0000017885, -0.0000017883,0.0000017885,0.0000017890,0.0000017897,0.0000017907, -0.0000017917,0.0000017925,0.0000017933,0.0000017943,0.0000017955, -0.0000017970,0.0000017989,0.0000018014,0.0000018040,0.0000018062, -0.0000018080,0.0000018101,0.0000018111,0.0000018118,0.0000018120, -0.0000018114,0.0000018101,0.0000018083,0.0000018061,0.0000018049, -0.0000018049,0.0000018058,0.0000018066,0.0000018068,0.0000018074, -0.0000018093,0.0000018122,0.0000018156,0.0000018191,0.0000018214, -0.0000018226,0.0000018229,0.0000018224,0.0000018204,0.0000018176, -0.0000018151,0.0000018140,0.0000018144,0.0000018167,0.0000018195, -0.0000018222,0.0000018249,0.0000018273,0.0000018295,0.0000018311, -0.0000018322,0.0000018331,0.0000018340,0.0000018349,0.0000018358, -0.0000018380,0.0000018359,0.0000018330,0.0000018296,0.0000018266, -0.0000018248,0.0000018237,0.0000018234,0.0000018240,0.0000018248, -0.0000018254,0.0000018258,0.0000018265,0.0000018273,0.0000018281, -0.0000018288,0.0000018295,0.0000018303,0.0000018311,0.0000018316, -0.0000018317,0.0000018318,0.0000018319,0.0000018319,0.0000018319, -0.0000018317,0.0000018311,0.0000018299,0.0000018285,0.0000018269, -0.0000018255,0.0000018242,0.0000018232,0.0000018227,0.0000018226, -0.0000018231,0.0000018239,0.0000018252,0.0000018274,0.0000018306, -0.0000018340,0.0000018375,0.0000018409,0.0000018440,0.0000018466, -0.0000018485,0.0000018497,0.0000018500,0.0000018494,0.0000018481, -0.0000018464,0.0000018454,0.0000018447,0.0000018445,0.0000018450, -0.0000018465,0.0000018490,0.0000018521,0.0000018553,0.0000018585, -0.0000018616,0.0000018643,0.0000018665,0.0000018674,0.0000018688, -0.0000018695,0.0000018688,0.0000018666,0.0000018632,0.0000018581, -0.0000018523,0.0000018473,0.0000018443,0.0000018428,0.0000018443, -0.0000018468,0.0000018503,0.0000018531,0.0000018542,0.0000018536, -0.0000018488,0.0000018408,0.0000018313,0.0000018246,0.0000018218, -0.0000018234,0.0000018253,0.0000018261,0.0000018249,0.0000018216, -0.0000018171,0.0000018126,0.0000018091,0.0000018049,0.0000018000, -0.0000017947,0.0000017919,0.0000017903,0.0000017919,0.0000017946, -0.0000017983,0.0000018021,0.0000018057,0.0000018090,0.0000018117, -0.0000018142,0.0000018164,0.0000018181,0.0000018198,0.0000018215, -0.0000018227,0.0000018231,0.0000018234,0.0000018234,0.0000018236, -0.0000018242,0.0000018257,0.0000018281,0.0000018311,0.0000018334, -0.0000018349,0.0000018353,0.0000018349,0.0000018344,0.0000018339, -0.0000018329,0.0000018305,0.0000018259,0.0000018190,0.0000018107, -0.0000018025,0.0000017958,0.0000017905,0.0000017863,0.0000017836, -0.0000017826,0.0000017820,0.0000017825,0.0000017838,0.0000017858, -0.0000017880,0.0000017897,0.0000017902,0.0000017906,0.0000017904, -0.0000017904,0.0000017910,0.0000017920,0.0000017932,0.0000017941, -0.0000017947,0.0000017950,0.0000017951,0.0000017949,0.0000017945, -0.0000017941,0.0000017936,0.0000017930,0.0000017929,0.0000017929, -0.0000017930,0.0000017932,0.0000017935,0.0000017941,0.0000017944, -0.0000017943,0.0000017934,0.0000017918,0.0000017901,0.0000017888, -0.0000017883,0.0000017886,0.0000017895,0.0000017909,0.0000017924, -0.0000017941,0.0000017959,0.0000017979,0.0000018001,0.0000018020, -0.0000018030,0.0000018030,0.0000018022,0.0000018007,0.0000017986, -0.0000017960,0.0000017933,0.0000017908,0.0000017887,0.0000017869, -0.0000017850,0.0000017834,0.0000017815,0.0000017790,0.0000017761, -0.0000017728,0.0000017696,0.0000017667,0.0000017647,0.0000017636, -0.0000017632,0.0000017631,0.0000017631,0.0000017630,0.0000017625, -0.0000017616,0.0000017609,0.0000017600,0.0000017588,0.0000017578, -0.0000017567,0.0000017548,0.0000017528,0.0000017512,0.0000017496, -0.0000017484,0.0000017460,0.0000017450,0.0000017456,0.0000017466, -0.0000017489,0.0000017521,0.0000017565,0.0000017612,0.0000017651, -0.0000017680,0.0000017696,0.0000017702,0.0000017703,0.0000017697, -0.0000017683,0.0000017671,0.0000017658,0.0000017647,0.0000017641, -0.0000017641,0.0000017646,0.0000017663,0.0000017689,0.0000017713, -0.0000017736,0.0000017759,0.0000017781,0.0000017800,0.0000017806, -0.0000017804,0.0000017785,0.0000017755,0.0000017727,0.0000017695, -0.0000017654,0.0000017601,0.0000017544,0.0000017486,0.0000017436, -0.0000017422,0.0000017415,0.0000017426,0.0000017447,0.0000017460, -0.0000017450,0.0000017417,0.0000017369,0.0000017318,0.0000017284, -0.0000017276,0.0000017299,0.0000017360,0.0000017437,0.0000017516, -0.0000017589,0.0000017654,0.0000017700,0.0000017726,0.0000017742, -0.0000017766,0.0000017809,0.0000017834,0.0000017849,0.0000017829, -0.0000017767,0.0000017670,0.0000017554,0.0000017450,0.0000017390, -0.0000017372,0.0000017372,0.0000017369,0.0000017358,0.0000017346, -0.0000017333,0.0000017319,0.0000017304,0.0000017288,0.0000017277, -0.0000017273,0.0000017276,0.0000017287,0.0000017304,0.0000017322, -0.0000017333,0.0000017331,0.0000017319,0.0000017300,0.0000017286, -0.0000017278,0.0000017274,0.0000017273,0.0000017277,0.0000017286, -0.0000017299,0.0000017305,0.0000017313,0.0000017318,0.0000017320, -0.0000017323,0.0000017327,0.0000017330,0.0000017336,0.0000017345, -0.0000017355,0.0000017364,0.0000017372,0.0000017377,0.0000017385, -0.0000017399,0.0000017414,0.0000017431,0.0000017445,0.0000017461, -0.0000017477,0.0000017496,0.0000017518,0.0000017541,0.0000017565, -0.0000017587,0.0000017599,0.0000017604,0.0000017601,0.0000017589, -0.0000017573,0.0000017556,0.0000017537,0.0000017516,0.0000017498, -0.0000017486,0.0000017480,0.0000017476,0.0000017476,0.0000017476, -0.0000017471,0.0000017457,0.0000017436,0.0000017413,0.0000017391, -0.0000017374,0.0000017367,0.0000017372,0.0000017392,0.0000017433, -0.0000017503,0.0000017596,0.0000017693,0.0000017766,0.0000017774, -0.0000017748,0.0000017682,0.0000017611,0.0000017553,0.0000017519, -0.0000017509,0.0000017508,0.0000017509,0.0000017509,0.0000017512, -0.0000017521,0.0000017535,0.0000017559,0.0000017597,0.0000017634, -0.0000017666,0.0000017686,0.0000017698,0.0000017709,0.0000017725, -0.0000017748,0.0000017773,0.0000017796,0.0000017808,0.0000017811, -0.0000017813,0.0000017823,0.0000017849,0.0000017892,0.0000017942, -0.0000017993,0.0000018041,0.0000018084,0.0000018119,0.0000018145, -0.0000018158,0.0000018172,0.0000018170,0.0000018167,0.0000018167, -0.0000018170,0.0000018177,0.0000018186,0.0000018202,0.0000018217, -0.0000018235,0.0000018262,0.0000018292,0.0000018322,0.0000018348, -0.0000018364,0.0000018376,0.0000018392,0.0000018405,0.0000018420, -0.0000018423,0.0000018435,0.0000018451,0.0000018455,0.0000018462, -0.0000018473,0.0000018475,0.0000018469,0.0000018462,0.0000018461, -0.0000018461,0.0000018466,0.0000018476,0.0000018493,0.0000018513, -0.0000018533,0.0000018554,0.0000018579,0.0000018606,0.0000018632, -0.0000018651,0.0000018665,0.0000018684,0.0000018696,0.0000018676, -0.0000018687,0.0000018683,0.0000018658,0.0000018645,0.0000018621, -0.0000018596,0.0000018574,0.0000018549,0.0000018526,0.0000018505, -0.0000018485,0.0000018466,0.0000018441,0.0000018421,0.0000018414, -0.0000018415,0.0000018418,0.0000018436,0.0000018444,0.0000018460, -0.0000018471,0.0000018479,0.0000018487,0.0000018473,0.0000018450, -0.0000018415,0.0000018370,0.0000018325,0.0000018276,0.0000018225, -0.0000018174,0.0000018136,0.0000018105,0.0000018081,0.0000018067, -0.0000018056,0.0000018041,0.0000018023,0.0000018002,0.0000017983, -0.0000017961,0.0000017939,0.0000017920,0.0000017906,0.0000017900, -0.0000017907,0.0000017925,0.0000017941,0.0000017957,0.0000017970, -0.0000017987,0.0000017984,0.0000017957,0.0000017916,0.0000017865, -0.0000017800,0.0000017724,0.0000017647,0.0000017574,0.0000017509, -0.0000017461,0.0000017432,0.0000017415,0.0000017399,0.0000017387, -0.0000017380,0.0000017376,0.0000017380,0.0000017388,0.0000017399, -0.0000017411,0.0000017413,0.0000017407,0.0000017398,0.0000017392, -0.0000017390,0.0000017392,0.0000017394,0.0000017390,0.0000017377, -0.0000017362,0.0000017348,0.0000017338,0.0000017323,0.0000017301, -0.0000017274,0.0000017241,0.0000017212,0.0000017190,0.0000017181, -0.0000017178,0.0000017181,0.0000017201,0.0000017233,0.0000017270, -0.0000017314,0.0000017359,0.0000017398,0.0000017421,0.0000017434, -0.0000017436,0.0000017436,0.0000017438,0.0000017437,0.0000017435, -0.0000017432,0.0000017428,0.0000017422,0.0000017422,0.0000017426, -0.0000017429,0.0000017430,0.0000017430,0.0000017436,0.0000017440, -0.0000017451,0.0000017464,0.0000017476,0.0000017488,0.0000017500, -0.0000017516,0.0000017531,0.0000017545,0.0000017568,0.0000017605, -0.0000017653,0.0000017713,0.0000017782,0.0000017857,0.0000017936, -0.0000018016,0.0000018092,0.0000018165,0.0000018232,0.0000018303, -0.0000018375,0.0000018444,0.0000018520,0.0000018591,0.0000018660, -0.0000018722,0.0000018774,0.0000018823,0.0000018866,0.0000018901, -0.0000018931,0.0000018959,0.0000018992,0.0000019033,0.0000019082, -0.0000019134,0.0000019182,0.0000019219,0.0000019243,0.0000019257, -0.0000019262,0.0000019259,0.0000019245,0.0000019224,0.0000019195, -0.0000019166,0.0000019139,0.0000019117,0.0000019097,0.0000019080, -0.0000019064,0.0000019048,0.0000019033,0.0000019012,0.0000018985, -0.0000018953,0.0000018917,0.0000018873,0.0000018815,0.0000018758, -0.0000018701,0.0000018630,0.0000018550,0.0000018466,0.0000018385, -0.0000018307,0.0000018231,0.0000018157,0.0000018074,0.0000017979, -0.0000017889,0.0000017813,0.0000017748,0.0000017697,0.0000017662, -0.0000017630,0.0000017593,0.0000017559,0.0000017540,0.0000017537, -0.0000017542,0.0000017555,0.0000017587,0.0000017631,0.0000017679, -0.0000017736,0.0000017797,0.0000017845,0.0000017872,0.0000017881, -0.0000017881,0.0000017881,0.0000017899,0.0000017934,0.0000017969, -0.0000018010,0.0000018075,0.0000018172,0.0000018300,0.0000018455, -0.0000018637,0.0000018833,0.0000019018,0.0000019179,0.0000019310, -0.0000019406,0.0000019474,0.0000019527,0.0000019562,0.0000019578, -0.0000019581,0.0000019583,0.0000019575,0.0000019565,0.0000019551, -0.0000019536,0.0000019524,0.0000019521,0.0000019529,0.0000019548, -0.0000019570,0.0000019589,0.0000019608,0.0000019624,0.0000019637, -0.0000019634,0.0000019624,0.0000019606,0.0000019588,0.0000019565, -0.0000019544,0.0000019532,0.0000019529,0.0000019525,0.0000019516, -0.0000019501,0.0000019470,0.0000019432,0.0000019404,0.0000019399, -0.0000019412,0.0000019434,0.0000019460,0.0000019485,0.0000019496, -0.0000019492,0.0000019478,0.0000019457,0.0000019438,0.0000019423, -0.0000019411,0.0000019396,0.0000019379,0.0000019365,0.0000019356, -0.0000019351,0.0000019338,0.0000019313,0.0000019278,0.0000019233, -0.0000019191,0.0000019167,0.0000019159,0.0000019162,0.0000019166, -0.0000019164,0.0000019161,0.0000019159,0.0000019154,0.0000019151, -0.0000019145,0.0000019136,0.0000019130,0.0000019132,0.0000019135, -0.0000019132,0.0000019118,0.0000019088,0.0000019041,0.0000018990, -0.0000018941,0.0000018893,0.0000018851,0.0000018818,0.0000018795, -0.0000018771,0.0000018740,0.0000018710,0.0000018693,0.0000018683, -0.0000018674,0.0000018663,0.0000018649,0.0000018645,0.0000018640, -0.0000018639,0.0000018644,0.0000018649,0.0000018653,0.0000018661, -0.0000018688,0.0000018741,0.0000018809,0.0000018867,0.0000018898, -0.0000018910,0.0000018910,0.0000018888,0.0000018853,0.0000018821, -0.0000018811,0.0000018817,0.0000018830,0.0000018837,0.0000018828, -0.0000018801,0.0000018770,0.0000018754,0.0000018750,0.0000018759, -0.0000018773,0.0000018776,0.0000018750,0.0000018703,0.0000018662, -0.0000018645,0.0000018644,0.0000018645,0.0000018634,0.0000018601, -0.0000018561,0.0000018532,0.0000018519,0.0000018509,0.0000018487, -0.0000018460,0.0000018439,0.0000018434,0.0000018466,0.0000018511, -0.0000018560,0.0000018577,0.0000018551,0.0000018487,0.0000018410, -0.0000018339,0.0000018299,0.0000018312,0.0000018379,0.0000018481, -0.0000018596,0.0000018674,0.0000018708,0.0000018711,0.0000018693, -0.0000018666,0.0000018624,0.0000018560,0.0000018488,0.0000018414, -0.0000018339,0.0000018262,0.0000018197,0.0000018160,0.0000018148, -0.0000018146,0.0000018135,0.0000018130,0.0000018145,0.0000018169, -0.0000018178,0.0000018168,0.0000018155,0.0000018152,0.0000018159, -0.0000018175,0.0000018197,0.0000018221,0.0000018243,0.0000018260, -0.0000018273,0.0000018288,0.0000018304,0.0000018316,0.0000018318, -0.0000018310,0.0000018291,0.0000018281,0.0000018286,0.0000018289, -0.0000018277,0.0000018246,0.0000018212,0.0000018176,0.0000018137, -0.0000018103,0.0000018084,0.0000018078,0.0000018079,0.0000018087, -0.0000018096,0.0000018100,0.0000018094,0.0000018081,0.0000018067, -0.0000018051,0.0000018029,0.0000017999,0.0000017968,0.0000017945, -0.0000017928,0.0000017908,0.0000017883,0.0000017856,0.0000017831, -0.0000017812,0.0000017799,0.0000017796,0.0000017801,0.0000017816, -0.0000017843,0.0000017884,0.0000017931,0.0000017977,0.0000018019, -0.0000018058,0.0000018094,0.0000018124,0.0000018147,0.0000018161, -0.0000018170,0.0000018177,0.0000018183,0.0000018187,0.0000018187, -0.0000018187,0.0000018189,0.0000018193,0.0000018195,0.0000018191, -0.0000018175,0.0000018138,0.0000018076,0.0000017994,0.0000017901, -0.0000017804,0.0000017715,0.0000017644,0.0000017592,0.0000017555, -0.0000017531,0.0000017523,0.0000017523,0.0000017525,0.0000017532, -0.0000017548,0.0000017563,0.0000017577,0.0000017586,0.0000017595, -0.0000017612,0.0000017633,0.0000017658,0.0000017690,0.0000017727, -0.0000017743,0.0000017757,0.0000017759,0.0000017748,0.0000017723, -0.0000017694,0.0000017668,0.0000017655,0.0000017648,0.0000017651, -0.0000017655,0.0000017663,0.0000017671,0.0000017679,0.0000017686, -0.0000017697,0.0000017711,0.0000017724,0.0000017738,0.0000017761, -0.0000017797,0.0000017828,0.0000017853,0.0000017849,0.0000017837, -0.0000017824,0.0000017835,0.0000017877,0.0000017948,0.0000018045, -0.0000018131,0.0000018195,0.0000018225,0.0000018236,0.0000018252, -0.0000018281,0.0000018303,0.0000018314,0.0000018316,0.0000018320, -0.0000018338,0.0000018388,0.0000018469,0.0000018586,0.0000018723, -0.0000018864,0.0000018993,0.0000019100,0.0000019198,0.0000019252, -0.0000019250,0.0000019259,0.0000019247,0.0000019230,0.0000019221, -0.0000019218,0.0000019215,0.0000019215,0.0000019208,0.0000019183, -0.0000019147,0.0000019100,0.0000019038,0.0000018963,0.0000018891, -0.0000018829,0.0000018787,0.0000018768,0.0000018757,0.0000018756, -0.0000018763,0.0000018773,0.0000018785,0.0000018796,0.0000018805, -0.0000018810,0.0000018810,0.0000018803,0.0000018791,0.0000018778, -0.0000018763,0.0000018744,0.0000018725,0.0000018711,0.0000018705, -0.0000018705,0.0000018708,0.0000018711,0.0000018714,0.0000018720, -0.0000018730,0.0000018749,0.0000018777,0.0000018809,0.0000018844, -0.0000018878,0.0000018902,0.0000018915,0.0000018924,0.0000018933, -0.0000018939,0.0000018943,0.0000018944,0.0000018946,0.0000018946, -0.0000018950,0.0000018961,0.0000018965,0.0000018962,0.0000018948, -0.0000018902,0.0000018826,0.0000018734,0.0000018644,0.0000018579, -0.0000018555,0.0000018576,0.0000018659,0.0000018777,0.0000018868, -0.0000018898,0.0000018886,0.0000018851,0.0000018837,0.0000018876, -0.0000018876,0.0000018760,0.0000018645,0.0000018604,0.0000018556, -0.0000018550,0.0000018684,0.0000018839,0.0000018871,0.0000018853, -0.0000018852,0.0000018838,0.0000018805,0.0000018780,0.0000018769, -0.0000018762,0.0000018764,0.0000018778,0.0000018792,0.0000018796, -0.0000018735,0.0000018075,0.0000017753,0.0000017759,0.0000017697, -0.0000017603,0.0000017585,0.0000017587,0.0000017598,0.0000017610, -0.0000017622,0.0000017635,0.0000017639,0.0000017632,0.0000017616, -0.0000017595,0.0000017578,0.0000017566,0.0000017563,0.0000017561, -0.0000017559,0.0000017556,0.0000017550,0.0000017545,0.0000017538, -0.0000017526,0.0000017507,0.0000017488,0.0000017475,0.0000017471, -0.0000017494,0.0000017543,0.0000017594,0.0000017616,0.0000017604, -0.0000017562,0.0000017554,0.0000017644,0.0000017765,0.0000017815, -0.0000017777,0.0000017723,0.0000017709,0.0000017719,0.0000017723, -0.0000017719,0.0000017714,0.0000017713,0.0000017713,0.0000017715, -0.0000017716,0.0000017717,0.0000017717,0.0000017719,0.0000017726, -0.0000017736,0.0000017748,0.0000017759,0.0000017769,0.0000017775, -0.0000017775,0.0000017768,0.0000017756,0.0000017749,0.0000017747, -0.0000017755,0.0000017772,0.0000017796,0.0000017822,0.0000017845, -0.0000017861,0.0000017868,0.0000017867,0.0000017858,0.0000017845, -0.0000017829,0.0000017815,0.0000017810,0.0000017817,0.0000017837, -0.0000017869,0.0000017907,0.0000017942,0.0000017973,0.0000017998, -0.0000018001,0.0000018009,0.0000018006,0.0000017999,0.0000017991, -0.0000017979,0.0000017969,0.0000017962,0.0000017959,0.0000017958, -0.0000017961,0.0000017966,0.0000017972,0.0000017979,0.0000017987, -0.0000017998,0.0000018010,0.0000018024,0.0000018035,0.0000018046, -0.0000018055,0.0000018055,0.0000018055,0.0000018053,0.0000018053, -0.0000018053,0.0000018048,0.0000018038,0.0000018026,0.0000018012, -0.0000018003,0.0000018004,0.0000018016,0.0000018031,0.0000018047, -0.0000018066,0.0000018088,0.0000018120,0.0000018151,0.0000018184, -0.0000018210,0.0000018225,0.0000018230,0.0000018224,0.0000018210, -0.0000018194,0.0000018179,0.0000018172,0.0000018177,0.0000018193, -0.0000018215,0.0000018241,0.0000018267,0.0000018289,0.0000018304, -0.0000018314,0.0000018325,0.0000018344,0.0000018365,0.0000018383, -0.0000018388,0.0000018331,0.0000018298,0.0000018271,0.0000018245, -0.0000018224,0.0000018208,0.0000018190,0.0000018177,0.0000018172, -0.0000018170,0.0000018172,0.0000018180,0.0000018193,0.0000018207, -0.0000018218,0.0000018230,0.0000018242,0.0000018252,0.0000018264, -0.0000018275,0.0000018283,0.0000018290,0.0000018296,0.0000018300, -0.0000018301,0.0000018300,0.0000018295,0.0000018286,0.0000018273, -0.0000018257,0.0000018241,0.0000018225,0.0000018215,0.0000018211, -0.0000018214,0.0000018221,0.0000018231,0.0000018243,0.0000018265, -0.0000018297,0.0000018330,0.0000018361,0.0000018391,0.0000018420, -0.0000018442,0.0000018458,0.0000018469,0.0000018475,0.0000018474, -0.0000018463,0.0000018447,0.0000018431,0.0000018418,0.0000018406, -0.0000018401,0.0000018406,0.0000018421,0.0000018444,0.0000018467, -0.0000018491,0.0000018523,0.0000018563,0.0000018602,0.0000018641, -0.0000018673,0.0000018705,0.0000018715,0.0000018725,0.0000018720, -0.0000018700,0.0000018666,0.0000018619,0.0000018565,0.0000018511, -0.0000018474,0.0000018458,0.0000018468,0.0000018487,0.0000018509, -0.0000018533,0.0000018537,0.0000018521,0.0000018466,0.0000018387, -0.0000018311,0.0000018266,0.0000018255,0.0000018266,0.0000018278, -0.0000018277,0.0000018252,0.0000018208,0.0000018165,0.0000018124, -0.0000018078,0.0000018021,0.0000017958,0.0000017910,0.0000017889, -0.0000017875,0.0000017886,0.0000017910,0.0000017942,0.0000017976, -0.0000018009,0.0000018042,0.0000018072,0.0000018097,0.0000018123, -0.0000018148,0.0000018172,0.0000018200,0.0000018223,0.0000018235, -0.0000018241,0.0000018251,0.0000018255,0.0000018260,0.0000018275, -0.0000018297,0.0000018321,0.0000018344,0.0000018355,0.0000018362, -0.0000018359,0.0000018352,0.0000018346,0.0000018335,0.0000018306, -0.0000018253,0.0000018179,0.0000018094,0.0000018012,0.0000017945, -0.0000017894,0.0000017855,0.0000017828,0.0000017821,0.0000017814, -0.0000017821,0.0000017837,0.0000017862,0.0000017889,0.0000017908, -0.0000017915,0.0000017921,0.0000017922,0.0000017928,0.0000017936, -0.0000017943,0.0000017949,0.0000017956,0.0000017962,0.0000017966, -0.0000017973,0.0000017983,0.0000017991,0.0000018000,0.0000018012, -0.0000018027,0.0000018039,0.0000018044,0.0000018042,0.0000018036, -0.0000018026,0.0000018012,0.0000017994,0.0000017972,0.0000017954, -0.0000017940,0.0000017932,0.0000017931,0.0000017938,0.0000017949, -0.0000017963,0.0000017979,0.0000017997,0.0000018016,0.0000018038, -0.0000018063,0.0000018086,0.0000018097,0.0000018096,0.0000018088, -0.0000018074,0.0000018059,0.0000018036,0.0000018011,0.0000017984, -0.0000017951,0.0000017923,0.0000017898,0.0000017874,0.0000017852, -0.0000017829,0.0000017804,0.0000017776,0.0000017751,0.0000017726, -0.0000017707,0.0000017694,0.0000017684,0.0000017676,0.0000017667, -0.0000017658,0.0000017653,0.0000017645,0.0000017636,0.0000017625, -0.0000017619,0.0000017612,0.0000017600,0.0000017592,0.0000017580, -0.0000017566,0.0000017541,0.0000017510,0.0000017475,0.0000017450, -0.0000017422,0.0000017413,0.0000017412,0.0000017427,0.0000017447, -0.0000017471,0.0000017490,0.0000017504,0.0000017517,0.0000017532, -0.0000017546,0.0000017558,0.0000017564,0.0000017571,0.0000017583, -0.0000017600,0.0000017617,0.0000017636,0.0000017662,0.0000017688, -0.0000017707,0.0000017720,0.0000017730,0.0000017737,0.0000017743, -0.0000017750,0.0000017754,0.0000017761,0.0000017764,0.0000017777, -0.0000017779,0.0000017770,0.0000017744,0.0000017706,0.0000017657, -0.0000017597,0.0000017532,0.0000017472,0.0000017436,0.0000017418, -0.0000017408,0.0000017409,0.0000017408,0.0000017401,0.0000017385, -0.0000017353,0.0000017306,0.0000017265,0.0000017253,0.0000017269, -0.0000017316,0.0000017383,0.0000017455,0.0000017525,0.0000017593, -0.0000017652,0.0000017696,0.0000017722,0.0000017743,0.0000017775, -0.0000017793,0.0000017824,0.0000017830,0.0000017797,0.0000017717, -0.0000017603,0.0000017488,0.0000017402,0.0000017358,0.0000017345, -0.0000017342,0.0000017340,0.0000017338,0.0000017337,0.0000017333, -0.0000017324,0.0000017307,0.0000017292,0.0000017284,0.0000017285, -0.0000017297,0.0000017314,0.0000017328,0.0000017336,0.0000017339, -0.0000017336,0.0000017335,0.0000017327,0.0000017318,0.0000017313, -0.0000017313,0.0000017310,0.0000017305,0.0000017300,0.0000017291, -0.0000017284,0.0000017281,0.0000017272,0.0000017276,0.0000017285, -0.0000017294,0.0000017305,0.0000017318,0.0000017337,0.0000017360, -0.0000017386,0.0000017415,0.0000017446,0.0000017479,0.0000017512, -0.0000017540,0.0000017565,0.0000017590,0.0000017609,0.0000017623, -0.0000017626,0.0000017625,0.0000017618,0.0000017607,0.0000017593, -0.0000017577,0.0000017562,0.0000017549,0.0000017535,0.0000017523, -0.0000017515,0.0000017511,0.0000017505,0.0000017498,0.0000017488, -0.0000017476,0.0000017458,0.0000017437,0.0000017417,0.0000017404, -0.0000017399,0.0000017413,0.0000017450,0.0000017512,0.0000017594, -0.0000017681,0.0000017749,0.0000017757,0.0000017741,0.0000017673, -0.0000017597,0.0000017541,0.0000017512,0.0000017497,0.0000017488, -0.0000017480,0.0000017476,0.0000017477,0.0000017488,0.0000017511, -0.0000017541,0.0000017570,0.0000017602,0.0000017631,0.0000017656, -0.0000017680,0.0000017704,0.0000017727,0.0000017747,0.0000017764, -0.0000017777,0.0000017783,0.0000017787,0.0000017797,0.0000017814, -0.0000017842,0.0000017886,0.0000017941,0.0000017996,0.0000018041, -0.0000018073,0.0000018094,0.0000018108,0.0000018122,0.0000018127, -0.0000018130,0.0000018136,0.0000018143,0.0000018156,0.0000018178, -0.0000018210,0.0000018246,0.0000018283,0.0000018317,0.0000018346, -0.0000018372,0.0000018393,0.0000018408,0.0000018407,0.0000018398, -0.0000018383,0.0000018361,0.0000018343,0.0000018330,0.0000018320, -0.0000018315,0.0000018312,0.0000018312,0.0000018312,0.0000018317, -0.0000018325,0.0000018334,0.0000018340,0.0000018340,0.0000018341, -0.0000018342,0.0000018342,0.0000018345,0.0000018353,0.0000018367, -0.0000018381,0.0000018398,0.0000018418,0.0000018440,0.0000018463, -0.0000018485,0.0000018508,0.0000018534,0.0000018558,0.0000018580, -0.0000018603,0.0000018622,0.0000018634,0.0000018648,0.0000018652, -0.0000018654,0.0000018667,0.0000018664,0.0000018647,0.0000018644, -0.0000018628,0.0000018596,0.0000018560,0.0000018525,0.0000018493, -0.0000018465,0.0000018453,0.0000018438,0.0000018429,0.0000018438, -0.0000018447,0.0000018463,0.0000018482,0.0000018497,0.0000018514, -0.0000018503,0.0000018500,0.0000018481,0.0000018449,0.0000018398, -0.0000018348,0.0000018298,0.0000018247,0.0000018200,0.0000018163, -0.0000018136,0.0000018108,0.0000018083,0.0000018060,0.0000018041, -0.0000018020,0.0000017997,0.0000017973,0.0000017953,0.0000017939, -0.0000017934,0.0000017936,0.0000017944,0.0000017962,0.0000017982, -0.0000017998,0.0000018005,0.0000018003,0.0000017993,0.0000017973, -0.0000017938,0.0000017891,0.0000017830,0.0000017760,0.0000017687, -0.0000017624,0.0000017576,0.0000017536,0.0000017499,0.0000017467, -0.0000017441,0.0000017415,0.0000017394,0.0000017381,0.0000017381, -0.0000017394,0.0000017404,0.0000017416,0.0000017421,0.0000017421, -0.0000017415,0.0000017413,0.0000017417,0.0000017419,0.0000017408, -0.0000017393,0.0000017377,0.0000017365,0.0000017357,0.0000017344, -0.0000017328,0.0000017315,0.0000017299,0.0000017277,0.0000017251, -0.0000017228,0.0000017215,0.0000017217,0.0000017237,0.0000017262, -0.0000017292,0.0000017330,0.0000017360,0.0000017383,0.0000017396, -0.0000017400,0.0000017401,0.0000017399,0.0000017400,0.0000017406, -0.0000017417,0.0000017429,0.0000017438,0.0000017450,0.0000017463, -0.0000017473,0.0000017478,0.0000017476,0.0000017471,0.0000017464, -0.0000017465,0.0000017470,0.0000017477,0.0000017482,0.0000017486, -0.0000017496,0.0000017507,0.0000017512,0.0000017514,0.0000017516, -0.0000017514,0.0000017514,0.0000017521,0.0000017532,0.0000017540, -0.0000017544,0.0000017547,0.0000017567,0.0000017597,0.0000017643, -0.0000017695,0.0000017766,0.0000017847,0.0000017931,0.0000018024, -0.0000018112,0.0000018195,0.0000018275,0.0000018340,0.0000018395, -0.0000018442,0.0000018486,0.0000018532,0.0000018585,0.0000018648, -0.0000018718,0.0000018791,0.0000018860,0.0000018920,0.0000018971, -0.0000019015,0.0000019042,0.0000019052,0.0000019052,0.0000019046, -0.0000019032,0.0000019014,0.0000018992,0.0000018975,0.0000018958, -0.0000018938,0.0000018914,0.0000018877,0.0000018825,0.0000018767, -0.0000018705,0.0000018644,0.0000018577,0.0000018512,0.0000018450, -0.0000018376,0.0000018294,0.0000018209,0.0000018131,0.0000018065, -0.0000017995,0.0000017920,0.0000017839,0.0000017752,0.0000017674, -0.0000017618,0.0000017568,0.0000017528,0.0000017505,0.0000017487, -0.0000017464,0.0000017444,0.0000017429,0.0000017421,0.0000017419, -0.0000017421,0.0000017434,0.0000017467,0.0000017508,0.0000017547, -0.0000017581,0.0000017602,0.0000017607,0.0000017601,0.0000017580, -0.0000017554,0.0000017537,0.0000017535,0.0000017541,0.0000017565, -0.0000017615,0.0000017688,0.0000017765,0.0000017844,0.0000017950, -0.0000018087,0.0000018247,0.0000018427,0.0000018620,0.0000018810, -0.0000018984,0.0000019136,0.0000019259,0.0000019350,0.0000019414, -0.0000019465,0.0000019501,0.0000019516,0.0000019515,0.0000019510, -0.0000019508,0.0000019507,0.0000019507,0.0000019513,0.0000019521, -0.0000019532,0.0000019544,0.0000019563,0.0000019590,0.0000019610, -0.0000019621,0.0000019619,0.0000019617,0.0000019606,0.0000019588, -0.0000019569,0.0000019547,0.0000019528,0.0000019519,0.0000019510, -0.0000019489,0.0000019470,0.0000019441,0.0000019422,0.0000019417, -0.0000019426,0.0000019444,0.0000019467,0.0000019487,0.0000019498, -0.0000019500,0.0000019496,0.0000019487,0.0000019475,0.0000019457, -0.0000019432,0.0000019406,0.0000019382,0.0000019366,0.0000019357, -0.0000019349,0.0000019349,0.0000019332,0.0000019300,0.0000019257, -0.0000019217,0.0000019188,0.0000019173,0.0000019163,0.0000019154, -0.0000019149,0.0000019149,0.0000019154,0.0000019161,0.0000019169, -0.0000019168,0.0000019162,0.0000019160,0.0000019164,0.0000019169, -0.0000019169,0.0000019157,0.0000019135,0.0000019102,0.0000019062, -0.0000019012,0.0000018960,0.0000018913,0.0000018877,0.0000018845, -0.0000018806,0.0000018764,0.0000018734,0.0000018723,0.0000018726, -0.0000018727,0.0000018721,0.0000018709,0.0000018686,0.0000018658, -0.0000018638,0.0000018614,0.0000018602,0.0000018599,0.0000018606, -0.0000018629,0.0000018664,0.0000018709,0.0000018765,0.0000018827, -0.0000018881,0.0000018902,0.0000018903,0.0000018880,0.0000018849, -0.0000018830,0.0000018830,0.0000018843,0.0000018856,0.0000018851, -0.0000018824,0.0000018789,0.0000018769,0.0000018778,0.0000018805, -0.0000018827,0.0000018819,0.0000018779,0.0000018732,0.0000018709, -0.0000018712,0.0000018729,0.0000018744,0.0000018740,0.0000018712, -0.0000018676,0.0000018652,0.0000018653,0.0000018669,0.0000018670, -0.0000018637,0.0000018567,0.0000018482,0.0000018420,0.0000018418, -0.0000018450,0.0000018489,0.0000018511,0.0000018495,0.0000018451, -0.0000018411,0.0000018391,0.0000018393,0.0000018422,0.0000018472, -0.0000018539,0.0000018600,0.0000018636,0.0000018649,0.0000018647, -0.0000018620,0.0000018571,0.0000018509,0.0000018445,0.0000018380, -0.0000018313,0.0000018246,0.0000018196,0.0000018175,0.0000018173, -0.0000018163,0.0000018149,0.0000018149,0.0000018159,0.0000018160, -0.0000018140,0.0000018115,0.0000018105,0.0000018112,0.0000018135, -0.0000018166,0.0000018195,0.0000018216,0.0000018225,0.0000018230, -0.0000018241,0.0000018259,0.0000018278,0.0000018289,0.0000018291, -0.0000018289,0.0000018287,0.0000018289,0.0000018290,0.0000018278, -0.0000018250,0.0000018215,0.0000018174,0.0000018132,0.0000018096, -0.0000018069,0.0000018063,0.0000018068,0.0000018078,0.0000018083, -0.0000018084,0.0000018083,0.0000018080,0.0000018073,0.0000018063, -0.0000018048,0.0000018028,0.0000018009,0.0000017992,0.0000017976, -0.0000017953,0.0000017923,0.0000017892,0.0000017868,0.0000017859, -0.0000017870,0.0000017903,0.0000017950,0.0000018004,0.0000018064, -0.0000018122,0.0000018168,0.0000018195,0.0000018209,0.0000018217, -0.0000018225,0.0000018236,0.0000018249,0.0000018262,0.0000018271, -0.0000018274,0.0000018273,0.0000018268,0.0000018262,0.0000018261, -0.0000018262,0.0000018267,0.0000018273,0.0000018274,0.0000018268, -0.0000018244,0.0000018202,0.0000018145,0.0000018077,0.0000018008, -0.0000017948,0.0000017893,0.0000017838,0.0000017782,0.0000017721, -0.0000017656,0.0000017594,0.0000017552,0.0000017548,0.0000017562, -0.0000017576,0.0000017586,0.0000017593,0.0000017597,0.0000017595, -0.0000017593,0.0000017596,0.0000017614,0.0000017650,0.0000017695, -0.0000017742,0.0000017763,0.0000017780,0.0000017772,0.0000017741, -0.0000017703,0.0000017673,0.0000017656,0.0000017651,0.0000017650, -0.0000017657,0.0000017670,0.0000017676,0.0000017676,0.0000017679, -0.0000017689,0.0000017702,0.0000017713,0.0000017724,0.0000017743, -0.0000017773,0.0000017803,0.0000017826,0.0000017828,0.0000017824, -0.0000017819,0.0000017829,0.0000017871,0.0000017946,0.0000018038, -0.0000018121,0.0000018190,0.0000018234,0.0000018256,0.0000018269, -0.0000018285,0.0000018299,0.0000018309,0.0000018311,0.0000018309, -0.0000018316,0.0000018347,0.0000018411,0.0000018500,0.0000018610, -0.0000018733,0.0000018855,0.0000018968,0.0000019061,0.0000019143, -0.0000019205,0.0000019231,0.0000019227,0.0000019236,0.0000019249, -0.0000019256,0.0000019260,0.0000019258,0.0000019247,0.0000019225, -0.0000019189,0.0000019138,0.0000019077,0.0000019009,0.0000018942, -0.0000018880,0.0000018828,0.0000018786,0.0000018765,0.0000018766, -0.0000018773,0.0000018789,0.0000018803,0.0000018813,0.0000018823, -0.0000018831,0.0000018836,0.0000018841,0.0000018846,0.0000018850, -0.0000018852,0.0000018857,0.0000018863,0.0000018870,0.0000018876, -0.0000018877,0.0000018875,0.0000018876,0.0000018879,0.0000018887, -0.0000018904,0.0000018923,0.0000018946,0.0000018968,0.0000018984, -0.0000018993,0.0000019000,0.0000019011,0.0000019022,0.0000019029, -0.0000019036,0.0000019024,0.0000019012,0.0000018998,0.0000018971, -0.0000018928,0.0000018853,0.0000018734,0.0000018581,0.0000018418, -0.0000018267,0.0000018146,0.0000018065,0.0000018037,0.0000018071, -0.0000018210,0.0000018448,0.0000018700,0.0000018842,0.0000018826, -0.0000018748,0.0000018778,0.0000018874,0.0000018830,0.0000018688, -0.0000018618,0.0000018578,0.0000018569,0.0000018665,0.0000018820, -0.0000018876,0.0000018868,0.0000018866,0.0000018859,0.0000018828, -0.0000018797,0.0000018780,0.0000018770,0.0000018768,0.0000018777, -0.0000018793,0.0000018803,0.0000018808,0.0000018798,0.0000018250, -0.0000017827,0.0000017772,0.0000017742,0.0000017659,0.0000017603, -0.0000017583,0.0000017584,0.0000017584,0.0000017595,0.0000017606, -0.0000017624,0.0000017643,0.0000017654,0.0000017655,0.0000017640, -0.0000017617,0.0000017597,0.0000017586,0.0000017583,0.0000017581, -0.0000017577,0.0000017576,0.0000017572,0.0000017566,0.0000017562, -0.0000017565,0.0000017575,0.0000017584,0.0000017602,0.0000017601, -0.0000017588,0.0000017565,0.0000017565,0.0000017627,0.0000017737, -0.0000017808,0.0000017801,0.0000017746,0.0000017725,0.0000017736, -0.0000017745,0.0000017744,0.0000017744,0.0000017747,0.0000017752, -0.0000017759,0.0000017765,0.0000017767,0.0000017766,0.0000017762, -0.0000017755,0.0000017748,0.0000017742,0.0000017742,0.0000017743, -0.0000017749,0.0000017759,0.0000017770,0.0000017778,0.0000017783, -0.0000017781,0.0000017770,0.0000017754,0.0000017741,0.0000017740, -0.0000017748,0.0000017768,0.0000017793,0.0000017814,0.0000017829, -0.0000017836,0.0000017835,0.0000017826,0.0000017808,0.0000017788, -0.0000017768,0.0000017756,0.0000017756,0.0000017770,0.0000017797, -0.0000017832,0.0000017874,0.0000017917,0.0000017952,0.0000017978, -0.0000017997,0.0000018013,0.0000018010,0.0000018016,0.0000018016, -0.0000018015,0.0000018013,0.0000018014,0.0000018014,0.0000018015, -0.0000018015,0.0000018015,0.0000018015,0.0000018016,0.0000018016, -0.0000018014,0.0000018010,0.0000018002,0.0000017993,0.0000017982, -0.0000017975,0.0000017970,0.0000017970,0.0000017969,0.0000017965, -0.0000017959,0.0000017953,0.0000017952,0.0000017961,0.0000017979, -0.0000018003,0.0000018028,0.0000018053,0.0000018085,0.0000018119, -0.0000018147,0.0000018177,0.0000018203,0.0000018218,0.0000018223, -0.0000018220,0.0000018212,0.0000018205,0.0000018200,0.0000018200, -0.0000018208,0.0000018222,0.0000018242,0.0000018265,0.0000018286, -0.0000018302,0.0000018316,0.0000018335,0.0000018359,0.0000018388, -0.0000018400,0.0000018391,0.0000018366,0.0000018272,0.0000018249, -0.0000018223,0.0000018187,0.0000018149,0.0000018111,0.0000018078, -0.0000018058,0.0000018059,0.0000018078,0.0000018104,0.0000018131, -0.0000018160,0.0000018185,0.0000018207,0.0000018229,0.0000018247, -0.0000018262,0.0000018276,0.0000018288,0.0000018297,0.0000018301, -0.0000018299,0.0000018298,0.0000018293,0.0000018286,0.0000018279, -0.0000018269,0.0000018257,0.0000018245,0.0000018232,0.0000018215, -0.0000018205,0.0000018205,0.0000018212,0.0000018218,0.0000018225, -0.0000018235,0.0000018252,0.0000018278,0.0000018305,0.0000018334, -0.0000018366,0.0000018397,0.0000018421,0.0000018436,0.0000018444, -0.0000018450,0.0000018450,0.0000018443,0.0000018432,0.0000018415, -0.0000018398,0.0000018385,0.0000018381,0.0000018383,0.0000018396, -0.0000018414,0.0000018428,0.0000018437,0.0000018452,0.0000018477, -0.0000018509,0.0000018551,0.0000018599,0.0000018649,0.0000018690, -0.0000018718,0.0000018731,0.0000018735,0.0000018737,0.0000018727, -0.0000018699,0.0000018652,0.0000018595,0.0000018541,0.0000018500, -0.0000018477,0.0000018475,0.0000018489,0.0000018513,0.0000018536, -0.0000018544,0.0000018519,0.0000018457,0.0000018379,0.0000018314, -0.0000018280,0.0000018279,0.0000018291,0.0000018294,0.0000018278, -0.0000018244,0.0000018200,0.0000018154,0.0000018105,0.0000018046, -0.0000017984,0.0000017928,0.0000017887,0.0000017869,0.0000017858, -0.0000017866,0.0000017877,0.0000017900,0.0000017932,0.0000017962, -0.0000017991,0.0000018020,0.0000018047,0.0000018073,0.0000018100, -0.0000018134,0.0000018171,0.0000018212,0.0000018248,0.0000018261, -0.0000018276,0.0000018281,0.0000018282,0.0000018282,0.0000018292, -0.0000018311,0.0000018332,0.0000018349,0.0000018348,0.0000018349, -0.0000018348,0.0000018346,0.0000018332,0.0000018301,0.0000018248, -0.0000018175,0.0000018094,0.0000018018,0.0000017949,0.0000017895, -0.0000017854,0.0000017825,0.0000017813,0.0000017808,0.0000017817, -0.0000017837,0.0000017864,0.0000017892,0.0000017912,0.0000017925, -0.0000017932,0.0000017940,0.0000017947,0.0000017953,0.0000017960, -0.0000017967,0.0000017977,0.0000017991,0.0000018008,0.0000018023, -0.0000018035,0.0000018044,0.0000018055,0.0000018067,0.0000018073, -0.0000018071,0.0000018063,0.0000018051,0.0000018036,0.0000018018, -0.0000017999,0.0000017984,0.0000017976,0.0000017971,0.0000017969, -0.0000017973,0.0000017979,0.0000017986,0.0000017996,0.0000018009, -0.0000018020,0.0000018037,0.0000018062,0.0000018088,0.0000018107, -0.0000018114,0.0000018115,0.0000018118,0.0000018119,0.0000018112, -0.0000018102,0.0000018085,0.0000018058,0.0000018028,0.0000017996, -0.0000017963,0.0000017931,0.0000017898,0.0000017863,0.0000017834, -0.0000017807,0.0000017786,0.0000017772,0.0000017763,0.0000017756, -0.0000017750,0.0000017743,0.0000017740,0.0000017732,0.0000017722, -0.0000017711,0.0000017698,0.0000017687,0.0000017673,0.0000017660, -0.0000017645,0.0000017630,0.0000017612,0.0000017592,0.0000017566, -0.0000017538,0.0000017511,0.0000017490,0.0000017475,0.0000017463, -0.0000017454,0.0000017452,0.0000017443,0.0000017440,0.0000017433, -0.0000017420,0.0000017409,0.0000017405,0.0000017403,0.0000017397, -0.0000017404,0.0000017426,0.0000017459,0.0000017497,0.0000017539, -0.0000017584,0.0000017627,0.0000017662,0.0000017688,0.0000017704, -0.0000017713,0.0000017719,0.0000017719,0.0000017717,0.0000017721, -0.0000017735,0.0000017755,0.0000017776,0.0000017787,0.0000017793, -0.0000017791,0.0000017780,0.0000017752,0.0000017705,0.0000017644, -0.0000017574,0.0000017503,0.0000017438,0.0000017395,0.0000017366, -0.0000017359,0.0000017360,0.0000017363,0.0000017354,0.0000017331, -0.0000017293,0.0000017255,0.0000017225,0.0000017223,0.0000017258, -0.0000017321,0.0000017397,0.0000017477,0.0000017554,0.0000017621, -0.0000017670,0.0000017693,0.0000017704,0.0000017724,0.0000017760, -0.0000017798,0.0000017819,0.0000017807,0.0000017756,0.0000017659, -0.0000017536,0.0000017426,0.0000017359,0.0000017336,0.0000017338, -0.0000017345,0.0000017350,0.0000017349,0.0000017347,0.0000017340, -0.0000017326,0.0000017311,0.0000017300,0.0000017293,0.0000017293, -0.0000017303,0.0000017324,0.0000017348,0.0000017367,0.0000017379, -0.0000017381,0.0000017390,0.0000017384,0.0000017372,0.0000017358, -0.0000017341,0.0000017321,0.0000017303,0.0000017289,0.0000017285, -0.0000017291,0.0000017301,0.0000017313,0.0000017329,0.0000017354, -0.0000017384,0.0000017416,0.0000017449,0.0000017483,0.0000017517, -0.0000017548,0.0000017571,0.0000017588,0.0000017605,0.0000017616, -0.0000017621,0.0000017623,0.0000017620,0.0000017614,0.0000017607, -0.0000017598,0.0000017590,0.0000017583,0.0000017576,0.0000017567, -0.0000017556,0.0000017544,0.0000017532,0.0000017519,0.0000017505, -0.0000017491,0.0000017476,0.0000017461,0.0000017448,0.0000017442, -0.0000017451,0.0000017478,0.0000017531,0.0000017606,0.0000017685, -0.0000017740,0.0000017743,0.0000017726,0.0000017659,0.0000017583, -0.0000017527,0.0000017496,0.0000017482,0.0000017474,0.0000017463, -0.0000017453,0.0000017453,0.0000017465,0.0000017482,0.0000017513, -0.0000017546,0.0000017570,0.0000017588,0.0000017615,0.0000017644, -0.0000017675,0.0000017709,0.0000017733,0.0000017745,0.0000017750, -0.0000017750,0.0000017755,0.0000017767,0.0000017789,0.0000017827, -0.0000017871,0.0000017915,0.0000017961,0.0000018003,0.0000018038, -0.0000018062,0.0000018079,0.0000018087,0.0000018092,0.0000018099, -0.0000018108,0.0000018122,0.0000018146,0.0000018180,0.0000018217, -0.0000018255,0.0000018292,0.0000018323,0.0000018340,0.0000018351, -0.0000018357,0.0000018359,0.0000018354,0.0000018343,0.0000018324, -0.0000018300,0.0000018282,0.0000018273,0.0000018259,0.0000018262, -0.0000018262,0.0000018267,0.0000018273,0.0000018284,0.0000018296, -0.0000018302,0.0000018312,0.0000018324,0.0000018332,0.0000018334, -0.0000018333,0.0000018331,0.0000018329,0.0000018330,0.0000018331, -0.0000018337,0.0000018344,0.0000018348,0.0000018355,0.0000018367, -0.0000018380,0.0000018393,0.0000018406,0.0000018418,0.0000018432, -0.0000018448,0.0000018466,0.0000018484,0.0000018498,0.0000018512, -0.0000018533,0.0000018566,0.0000018598,0.0000018619,0.0000018641, -0.0000018670,0.0000018673,0.0000018652,0.0000018660,0.0000018638, -0.0000018612,0.0000018592,0.0000018570,0.0000018538,0.0000018510, -0.0000018486,0.0000018465,0.0000018452,0.0000018457,0.0000018457, -0.0000018469,0.0000018483,0.0000018491,0.0000018508,0.0000018510, -0.0000018490,0.0000018489,0.0000018469,0.0000018429,0.0000018386, -0.0000018340,0.0000018292,0.0000018242,0.0000018196,0.0000018154, -0.0000018119,0.0000018085,0.0000018051,0.0000018018,0.0000017993, -0.0000017980,0.0000017973,0.0000017977,0.0000017987,0.0000017999, -0.0000018014,0.0000018023,0.0000018024,0.0000018016,0.0000018002, -0.0000017981,0.0000017953,0.0000017927,0.0000017899,0.0000017864, -0.0000017826,0.0000017791,0.0000017759,0.0000017719,0.0000017674, -0.0000017628,0.0000017584,0.0000017538,0.0000017494,0.0000017452, -0.0000017414,0.0000017392,0.0000017387,0.0000017391,0.0000017405, -0.0000017411,0.0000017417,0.0000017424,0.0000017428,0.0000017435, -0.0000017438,0.0000017440,0.0000017442,0.0000017432,0.0000017415, -0.0000017392,0.0000017371,0.0000017354,0.0000017341,0.0000017316, -0.0000017291,0.0000017266,0.0000017250,0.0000017251,0.0000017263, -0.0000017277,0.0000017305,0.0000017344,0.0000017376,0.0000017401, -0.0000017413,0.0000017412,0.0000017400,0.0000017384,0.0000017363, -0.0000017352,0.0000017352,0.0000017358,0.0000017373,0.0000017399, -0.0000017432,0.0000017462,0.0000017484,0.0000017492,0.0000017505, -0.0000017512,0.0000017516,0.0000017519,0.0000017518,0.0000017516, -0.0000017513,0.0000017518,0.0000017525,0.0000017532,0.0000017539, -0.0000017546,0.0000017548,0.0000017544,0.0000017537,0.0000017530, -0.0000017523,0.0000017517,0.0000017497,0.0000017478,0.0000017478, -0.0000017470,0.0000017464,0.0000017480,0.0000017494,0.0000017518, -0.0000017555,0.0000017600,0.0000017656,0.0000017720,0.0000017781, -0.0000017835,0.0000017883,0.0000017933,0.0000017981,0.0000018031, -0.0000018085,0.0000018143,0.0000018208,0.0000018278,0.0000018352, -0.0000018426,0.0000018491,0.0000018542,0.0000018581,0.0000018609, -0.0000018624,0.0000018624,0.0000018609,0.0000018593,0.0000018571, -0.0000018547,0.0000018526,0.0000018492,0.0000018441,0.0000018380, -0.0000018314,0.0000018252,0.0000018189,0.0000018135,0.0000018092, -0.0000018041,0.0000017984,0.0000017932,0.0000017892,0.0000017870, -0.0000017851,0.0000017820,0.0000017779,0.0000017733,0.0000017684, -0.0000017652,0.0000017638,0.0000017629,0.0000017622,0.0000017610, -0.0000017590,0.0000017572,0.0000017559,0.0000017546,0.0000017536, -0.0000017531,0.0000017527,0.0000017535,0.0000017559,0.0000017589, -0.0000017613,0.0000017628,0.0000017629,0.0000017611,0.0000017579, -0.0000017548,0.0000017523,0.0000017508,0.0000017486,0.0000017461, -0.0000017451,0.0000017463,0.0000017484,0.0000017509,0.0000017550, -0.0000017604,0.0000017677,0.0000017780,0.0000017914,0.0000018071, -0.0000018233,0.0000018390,0.0000018541,0.0000018693,0.0000018843, -0.0000018996,0.0000019137,0.0000019248,0.0000019322,0.0000019368, -0.0000019399,0.0000019422,0.0000019438,0.0000019452,0.0000019463, -0.0000019470,0.0000019479,0.0000019493,0.0000019519,0.0000019547, -0.0000019570,0.0000019593,0.0000019617,0.0000019625,0.0000019631, -0.0000019624,0.0000019597,0.0000019561,0.0000019525,0.0000019497, -0.0000019474,0.0000019460,0.0000019448,0.0000019438,0.0000019429, -0.0000019427,0.0000019436,0.0000019450,0.0000019468,0.0000019483, -0.0000019495,0.0000019504,0.0000019509,0.0000019509,0.0000019498, -0.0000019473,0.0000019440,0.0000019408,0.0000019379,0.0000019355, -0.0000019344,0.0000019343,0.0000019339,0.0000019328,0.0000019299, -0.0000019265,0.0000019230,0.0000019203,0.0000019183,0.0000019161, -0.0000019139,0.0000019124,0.0000019121,0.0000019131,0.0000019150, -0.0000019167,0.0000019172,0.0000019184,0.0000019191,0.0000019193, -0.0000019186,0.0000019174,0.0000019159,0.0000019142,0.0000019123, -0.0000019098,0.0000019067,0.0000019033,0.0000018999,0.0000018964, -0.0000018921,0.0000018870,0.0000018822,0.0000018791,0.0000018780, -0.0000018784,0.0000018787,0.0000018783,0.0000018769,0.0000018745, -0.0000018711,0.0000018664,0.0000018616,0.0000018586,0.0000018563, -0.0000018562,0.0000018579,0.0000018604,0.0000018633,0.0000018672, -0.0000018729,0.0000018795,0.0000018853,0.0000018876,0.0000018881, -0.0000018867,0.0000018851,0.0000018846,0.0000018846,0.0000018843, -0.0000018833,0.0000018818,0.0000018811,0.0000018819,0.0000018840, -0.0000018865,0.0000018869,0.0000018844,0.0000018804,0.0000018773, -0.0000018767,0.0000018779,0.0000018801,0.0000018819,0.0000018829, -0.0000018832,0.0000018830,0.0000018818,0.0000018801,0.0000018785, -0.0000018765,0.0000018732,0.0000018661,0.0000018562,0.0000018450, -0.0000018361,0.0000018358,0.0000018421,0.0000018482,0.0000018502, -0.0000018498,0.0000018499,0.0000018491,0.0000018476,0.0000018461, -0.0000018458,0.0000018475,0.0000018519,0.0000018566,0.0000018594, -0.0000018599,0.0000018570,0.0000018523,0.0000018465,0.0000018409, -0.0000018354,0.0000018294,0.0000018239,0.0000018209,0.0000018209, -0.0000018209,0.0000018195,0.0000018181,0.0000018174,0.0000018161, -0.0000018133,0.0000018100,0.0000018079,0.0000018078,0.0000018099, -0.0000018133,0.0000018165,0.0000018182,0.0000018184,0.0000018183, -0.0000018195,0.0000018222,0.0000018253,0.0000018277,0.0000018291, -0.0000018299,0.0000018300,0.0000018297,0.0000018289,0.0000018275, -0.0000018254,0.0000018219,0.0000018174,0.0000018127,0.0000018083, -0.0000018056,0.0000018055,0.0000018066,0.0000018078,0.0000018089, -0.0000018099,0.0000018103,0.0000018102,0.0000018094,0.0000018079, -0.0000018058,0.0000018038,0.0000018021,0.0000018007,0.0000017991, -0.0000017968,0.0000017944,0.0000017932,0.0000017942,0.0000017980, -0.0000018043,0.0000018113,0.0000018174,0.0000018229,0.0000018277, -0.0000018315,0.0000018334,0.0000018335,0.0000018321,0.0000018300, -0.0000018282,0.0000018271,0.0000018270,0.0000018278,0.0000018291, -0.0000018303,0.0000018309,0.0000018308,0.0000018303,0.0000018295, -0.0000018286,0.0000018282,0.0000018286,0.0000018287,0.0000018278, -0.0000018250,0.0000018205,0.0000018150,0.0000018096,0.0000018054, -0.0000018022,0.0000017990,0.0000017957,0.0000017926,0.0000017895, -0.0000017858,0.0000017811,0.0000017758,0.0000017702,0.0000017648, -0.0000017608,0.0000017596,0.0000017596,0.0000017593,0.0000017590, -0.0000017586,0.0000017586,0.0000017590,0.0000017605,0.0000017640, -0.0000017685,0.0000017730,0.0000017767,0.0000017775,0.0000017769, -0.0000017744,0.0000017711,0.0000017683,0.0000017666,0.0000017661, -0.0000017669,0.0000017676,0.0000017680,0.0000017675,0.0000017670, -0.0000017672,0.0000017679,0.0000017690,0.0000017701,0.0000017706, -0.0000017719,0.0000017747,0.0000017779,0.0000017807,0.0000017819, -0.0000017814,0.0000017809,0.0000017823,0.0000017865,0.0000017934, -0.0000018028,0.0000018126,0.0000018209,0.0000018256,0.0000018273, -0.0000018282,0.0000018294,0.0000018305,0.0000018306,0.0000018303, -0.0000018294,0.0000018298,0.0000018321,0.0000018362,0.0000018419, -0.0000018493,0.0000018585,0.0000018685,0.0000018783,0.0000018877, -0.0000018967,0.0000019049,0.0000019124,0.0000019186,0.0000019238, -0.0000019265,0.0000019273,0.0000019300,0.0000019311,0.0000019292, -0.0000019262,0.0000019216,0.0000019159,0.0000019099,0.0000019039, -0.0000018984,0.0000018935,0.0000018896,0.0000018869,0.0000018850, -0.0000018840,0.0000018834,0.0000018831,0.0000018831,0.0000018833, -0.0000018835,0.0000018837,0.0000018841,0.0000018849,0.0000018857, -0.0000018867,0.0000018877,0.0000018888,0.0000018895,0.0000018897, -0.0000018895,0.0000018893,0.0000018896,0.0000018907,0.0000018927, -0.0000018954,0.0000018987,0.0000019022,0.0000019050,0.0000019069, -0.0000019082,0.0000019083,0.0000019077,0.0000019059,0.0000019031, -0.0000018986,0.0000018922,0.0000018840,0.0000018742,0.0000018623, -0.0000018480,0.0000018319,0.0000018157,0.0000018012,0.0000017895, -0.0000017810,0.0000017759,0.0000017741,0.0000017752,0.0000017855, -0.0000018114,0.0000018478,0.0000018707,0.0000018663,0.0000018616, -0.0000018775,0.0000018862,0.0000018757,0.0000018641,0.0000018596, -0.0000018584,0.0000018652,0.0000018796,0.0000018874,0.0000018877, -0.0000018875,0.0000018870,0.0000018844,0.0000018810,0.0000018790, -0.0000018784,0.0000018789,0.0000018802,0.0000018810,0.0000018809, -0.0000018808,0.0000018812,0.0000018804,0.0000018504,0.0000017963, -0.0000017791,0.0000017769,0.0000017735,0.0000017690,0.0000017666, -0.0000017659,0.0000017652,0.0000017638,0.0000017625,0.0000017622, -0.0000017628,0.0000017644,0.0000017671,0.0000017684,0.0000017692, -0.0000017674,0.0000017650,0.0000017630,0.0000017616,0.0000017610, -0.0000017609,0.0000017607,0.0000017599,0.0000017595,0.0000017590, -0.0000017585,0.0000017579,0.0000017568,0.0000017574,0.0000017598, -0.0000017662,0.0000017748,0.0000017800,0.0000017799,0.0000017761, -0.0000017736,0.0000017745,0.0000017761,0.0000017765,0.0000017767, -0.0000017773,0.0000017780,0.0000017788,0.0000017796,0.0000017803, -0.0000017811,0.0000017818,0.0000017823,0.0000017823,0.0000017820, -0.0000017813,0.0000017802,0.0000017788,0.0000017774,0.0000017762, -0.0000017756,0.0000017752,0.0000017754,0.0000017760,0.0000017768, -0.0000017771,0.0000017766,0.0000017755,0.0000017741,0.0000017732, -0.0000017734,0.0000017746,0.0000017764,0.0000017783,0.0000017798, -0.0000017806,0.0000017804,0.0000017792,0.0000017773,0.0000017750, -0.0000017732,0.0000017715,0.0000017707,0.0000017712,0.0000017730, -0.0000017758,0.0000017792,0.0000017828,0.0000017863,0.0000017897, -0.0000017927,0.0000017951,0.0000017968,0.0000017982,0.0000017991, -0.0000017999,0.0000018005,0.0000018010,0.0000018012,0.0000018011, -0.0000018010,0.0000018007,0.0000018002,0.0000017995,0.0000017986, -0.0000017974,0.0000017959,0.0000017942,0.0000017927,0.0000017917, -0.0000017911,0.0000017910,0.0000017908,0.0000017906,0.0000017907, -0.0000017917,0.0000017934,0.0000017958,0.0000017984,0.0000018013, -0.0000018047,0.0000018081,0.0000018112,0.0000018135,0.0000018167, -0.0000018193,0.0000018211,0.0000018217,0.0000018217,0.0000018216, -0.0000018212,0.0000018211,0.0000018220,0.0000018233,0.0000018248, -0.0000018266,0.0000018284,0.0000018300,0.0000018321,0.0000018349, -0.0000018380,0.0000018400,0.0000018396,0.0000018370,0.0000018331, -0.0000018298,0.0000018213,0.0000018168,0.0000018114,0.0000018066, -0.0000018030,0.0000018004,0.0000017999,0.0000018014,0.0000018041, -0.0000018077,0.0000018113,0.0000018142,0.0000018164,0.0000018180, -0.0000018191,0.0000018195,0.0000018193,0.0000018191,0.0000018188, -0.0000018189,0.0000018191,0.0000018187,0.0000018178,0.0000018170, -0.0000018161,0.0000018153,0.0000018146,0.0000018137,0.0000018128, -0.0000018124,0.0000018124,0.0000018130,0.0000018144,0.0000018165, -0.0000018188,0.0000018211,0.0000018220,0.0000018235,0.0000018256, -0.0000018276,0.0000018294,0.0000018314,0.0000018341,0.0000018367, -0.0000018389,0.0000018404,0.0000018410,0.0000018412,0.0000018410, -0.0000018406,0.0000018396,0.0000018379,0.0000018361,0.0000018350, -0.0000018348,0.0000018353,0.0000018371,0.0000018394,0.0000018414, -0.0000018425,0.0000018433,0.0000018443,0.0000018456,0.0000018478, -0.0000018514,0.0000018556,0.0000018604,0.0000018651,0.0000018690, -0.0000018717,0.0000018741,0.0000018752,0.0000018760,0.0000018753, -0.0000018727,0.0000018682,0.0000018621,0.0000018558,0.0000018505, -0.0000018476,0.0000018472,0.0000018492,0.0000018530,0.0000018551, -0.0000018557,0.0000018513,0.0000018441,0.0000018365,0.0000018311, -0.0000018294,0.0000018295,0.0000018303,0.0000018300,0.0000018273, -0.0000018232,0.0000018184,0.0000018130,0.0000018072,0.0000018020, -0.0000017971,0.0000017926,0.0000017892,0.0000017871,0.0000017863, -0.0000017861,0.0000017871,0.0000017888,0.0000017903,0.0000017924, -0.0000017947,0.0000017965,0.0000017982,0.0000018008,0.0000018044, -0.0000018093,0.0000018152,0.0000018208,0.0000018258,0.0000018286, -0.0000018299,0.0000018297,0.0000018286,0.0000018276,0.0000018278, -0.0000018291,0.0000018303,0.0000018322,0.0000018339,0.0000018344, -0.0000018343,0.0000018342,0.0000018333,0.0000018305,0.0000018257, -0.0000018192,0.0000018110,0.0000018029,0.0000017958,0.0000017900, -0.0000017856,0.0000017824,0.0000017812,0.0000017811,0.0000017819, -0.0000017839,0.0000017862,0.0000017885,0.0000017904,0.0000017919, -0.0000017928,0.0000017936,0.0000017944,0.0000017949,0.0000017955, -0.0000017969,0.0000017984,0.0000017996,0.0000018005,0.0000018012, -0.0000018023,0.0000018037,0.0000018046,0.0000018051,0.0000018049, -0.0000018043,0.0000018034,0.0000018026,0.0000018016,0.0000018007, -0.0000018000,0.0000017995,0.0000017991,0.0000017986,0.0000017986, -0.0000017987,0.0000017992,0.0000017999,0.0000018008,0.0000018019, -0.0000018037,0.0000018058,0.0000018079,0.0000018097,0.0000018109, -0.0000018120,0.0000018130,0.0000018137,0.0000018146,0.0000018146, -0.0000018134,0.0000018114,0.0000018090,0.0000018062,0.0000018031, -0.0000017995,0.0000017957,0.0000017920,0.0000017888,0.0000017859, -0.0000017836,0.0000017818,0.0000017803,0.0000017795,0.0000017792, -0.0000017790,0.0000017787,0.0000017784,0.0000017778,0.0000017772, -0.0000017768,0.0000017764,0.0000017752,0.0000017734,0.0000017713, -0.0000017686,0.0000017654,0.0000017618,0.0000017581,0.0000017551, -0.0000017532,0.0000017526,0.0000017525,0.0000017527,0.0000017529, -0.0000017532,0.0000017532,0.0000017523,0.0000017501,0.0000017469, -0.0000017429,0.0000017388,0.0000017355,0.0000017330,0.0000017326, -0.0000017344,0.0000017373,0.0000017413,0.0000017458,0.0000017509, -0.0000017556,0.0000017594,0.0000017621,0.0000017644,0.0000017665, -0.0000017682,0.0000017698,0.0000017716,0.0000017731,0.0000017743, -0.0000017753,0.0000017760,0.0000017765,0.0000017773,0.0000017778, -0.0000017790,0.0000017789,0.0000017764,0.0000017717,0.0000017654, -0.0000017583,0.0000017515,0.0000017447,0.0000017386,0.0000017347, -0.0000017324,0.0000017322,0.0000017332,0.0000017333,0.0000017318, -0.0000017283,0.0000017248,0.0000017216,0.0000017200,0.0000017223, -0.0000017284,0.0000017358,0.0000017435,0.0000017510,0.0000017574, -0.0000017621,0.0000017650,0.0000017668,0.0000017684,0.0000017709, -0.0000017745,0.0000017786,0.0000017806,0.0000017790,0.0000017722, -0.0000017612,0.0000017495,0.0000017407,0.0000017364,0.0000017352, -0.0000017352,0.0000017353,0.0000017356,0.0000017355,0.0000017350, -0.0000017337,0.0000017318,0.0000017299,0.0000017293,0.0000017302, -0.0000017323,0.0000017348,0.0000017376,0.0000017406,0.0000017427, -0.0000017437,0.0000017434,0.0000017432,0.0000017416,0.0000017399, -0.0000017387,0.0000017381,0.0000017383,0.0000017390,0.0000017398, -0.0000017413,0.0000017436,0.0000017458,0.0000017480,0.0000017502, -0.0000017525,0.0000017546,0.0000017566,0.0000017582,0.0000017595, -0.0000017606,0.0000017614,0.0000017619,0.0000017623,0.0000017624, -0.0000017621,0.0000017618,0.0000017614,0.0000017610,0.0000017606, -0.0000017599,0.0000017588,0.0000017574,0.0000017557,0.0000017538, -0.0000017521,0.0000017508,0.0000017497,0.0000017489,0.0000017489, -0.0000017503,0.0000017535,0.0000017585,0.0000017648,0.0000017706, -0.0000017744,0.0000017740,0.0000017714,0.0000017650,0.0000017577, -0.0000017521,0.0000017490,0.0000017475,0.0000017466,0.0000017455, -0.0000017443,0.0000017438,0.0000017446,0.0000017469,0.0000017496, -0.0000017521,0.0000017544,0.0000017563,0.0000017580,0.0000017605, -0.0000017643,0.0000017681,0.0000017707,0.0000017719,0.0000017722, -0.0000017718,0.0000017723,0.0000017743,0.0000017768,0.0000017807, -0.0000017849,0.0000017893,0.0000017936,0.0000017975,0.0000018007, -0.0000018031,0.0000018047,0.0000018061,0.0000018073,0.0000018083, -0.0000018102,0.0000018126,0.0000018156,0.0000018191,0.0000018226, -0.0000018254,0.0000018273,0.0000018282,0.0000018290,0.0000018295, -0.0000018296,0.0000018296,0.0000018301,0.0000018306,0.0000018312, -0.0000018315,0.0000018317,0.0000018323,0.0000018335,0.0000018346, -0.0000018357,0.0000018367,0.0000018375,0.0000018390,0.0000018407, -0.0000018423,0.0000018431,0.0000018436,0.0000018440,0.0000018444, -0.0000018444,0.0000018441,0.0000018432,0.0000018420,0.0000018407, -0.0000018391,0.0000018374,0.0000018360,0.0000018349,0.0000018350, -0.0000018353,0.0000018355,0.0000018362,0.0000018372,0.0000018382, -0.0000018391,0.0000018400,0.0000018411,0.0000018419,0.0000018424, -0.0000018426,0.0000018427,0.0000018435,0.0000018443,0.0000018464, -0.0000018496,0.0000018528,0.0000018555,0.0000018578,0.0000018597, -0.0000018614,0.0000018620,0.0000018630,0.0000018642,0.0000018628, -0.0000018632,0.0000018617,0.0000018596,0.0000018569,0.0000018546, -0.0000018519,0.0000018497,0.0000018477,0.0000018462,0.0000018458, -0.0000018454,0.0000018463,0.0000018468,0.0000018484,0.0000018496, -0.0000018493,0.0000018487,0.0000018480,0.0000018454,0.0000018420, -0.0000018378,0.0000018327,0.0000018275,0.0000018220,0.0000018162, -0.0000018109,0.0000018062,0.0000018030,0.0000018009,0.0000018008, -0.0000018018,0.0000018034,0.0000018048,0.0000018062,0.0000018072, -0.0000018074,0.0000018061,0.0000018032,0.0000017993,0.0000017950, -0.0000017908,0.0000017870,0.0000017841,0.0000017827,0.0000017824, -0.0000017821,0.0000017808,0.0000017788,0.0000017758,0.0000017716, -0.0000017667,0.0000017612,0.0000017557,0.0000017506,0.0000017461, -0.0000017428,0.0000017414,0.0000017407,0.0000017405,0.0000017414, -0.0000017422,0.0000017425,0.0000017431,0.0000017443,0.0000017465, -0.0000017483,0.0000017486,0.0000017479,0.0000017467,0.0000017447, -0.0000017411,0.0000017376,0.0000017336,0.0000017298,0.0000017276, -0.0000017270,0.0000017269,0.0000017274,0.0000017299,0.0000017336, -0.0000017380,0.0000017423,0.0000017457,0.0000017470,0.0000017468, -0.0000017453,0.0000017424,0.0000017390,0.0000017359,0.0000017339, -0.0000017323,0.0000017332,0.0000017349,0.0000017367,0.0000017389, -0.0000017418,0.0000017442,0.0000017470,0.0000017498,0.0000017521, -0.0000017533,0.0000017553,0.0000017566,0.0000017579,0.0000017584, -0.0000017589,0.0000017596,0.0000017602,0.0000017605,0.0000017601, -0.0000017586,0.0000017577,0.0000017569,0.0000017551,0.0000017524, -0.0000017509,0.0000017502,0.0000017490,0.0000017479,0.0000017479, -0.0000017487,0.0000017495,0.0000017496,0.0000017500,0.0000017506, -0.0000017518,0.0000017539,0.0000017562,0.0000017590,0.0000017619, -0.0000017651,0.0000017685,0.0000017711,0.0000017735,0.0000017758, -0.0000017787,0.0000017826,0.0000017871,0.0000017914,0.0000017952, -0.0000017987,0.0000018021,0.0000018041,0.0000018045,0.0000018049, -0.0000018048,0.0000018041,0.0000018037,0.0000018026,0.0000018002, -0.0000017970,0.0000017936,0.0000017909,0.0000017881,0.0000017859, -0.0000017853,0.0000017849,0.0000017843,0.0000017838,0.0000017839, -0.0000017851,0.0000017861,0.0000017863,0.0000017849,0.0000017824, -0.0000017798,0.0000017773,0.0000017764,0.0000017767,0.0000017773, -0.0000017774,0.0000017766,0.0000017752,0.0000017737,0.0000017724, -0.0000017710,0.0000017694,0.0000017677,0.0000017667,0.0000017672, -0.0000017687,0.0000017700,0.0000017705,0.0000017703,0.0000017689, -0.0000017657,0.0000017617,0.0000017588,0.0000017573,0.0000017558, -0.0000017540,0.0000017526,0.0000017517,0.0000017503,0.0000017494, -0.0000017490,0.0000017487,0.0000017496,0.0000017530,0.0000017595, -0.0000017684,0.0000017773,0.0000017847,0.0000017910,0.0000017984, -0.0000018080,0.0000018207,0.0000018360,0.0000018523,0.0000018684, -0.0000018836,0.0000018980,0.0000019106,0.0000019208,0.0000019284, -0.0000019335,0.0000019364,0.0000019379,0.0000019395,0.0000019415, -0.0000019439,0.0000019462,0.0000019496,0.0000019541,0.0000019583, -0.0000019615,0.0000019642,0.0000019640,0.0000019616,0.0000019574, -0.0000019525,0.0000019482,0.0000019455,0.0000019447,0.0000019444, -0.0000019440,0.0000019435,0.0000019437,0.0000019443,0.0000019454, -0.0000019465,0.0000019476,0.0000019489,0.0000019503,0.0000019512, -0.0000019507,0.0000019489,0.0000019459,0.0000019427,0.0000019392, -0.0000019360,0.0000019334,0.0000019321,0.0000019319,0.0000019315, -0.0000019300,0.0000019275,0.0000019244,0.0000019216,0.0000019195, -0.0000019177,0.0000019152,0.0000019126,0.0000019107,0.0000019096, -0.0000019101,0.0000019119,0.0000019139,0.0000019161,0.0000019184, -0.0000019198,0.0000019200,0.0000019189,0.0000019170,0.0000019148, -0.0000019127,0.0000019106,0.0000019090,0.0000019077,0.0000019062, -0.0000019050,0.0000019028,0.0000018996,0.0000018955,0.0000018919, -0.0000018893,0.0000018876,0.0000018862,0.0000018848,0.0000018833, -0.0000018814,0.0000018787,0.0000018753,0.0000018716,0.0000018673, -0.0000018622,0.0000018577,0.0000018556,0.0000018542,0.0000018551, -0.0000018573,0.0000018604,0.0000018645,0.0000018696,0.0000018760, -0.0000018822,0.0000018860,0.0000018867,0.0000018864,0.0000018853, -0.0000018838,0.0000018814,0.0000018796,0.0000018795,0.0000018810, -0.0000018831,0.0000018859,0.0000018879,0.0000018880,0.0000018864, -0.0000018842,0.0000018825,0.0000018823,0.0000018831,0.0000018845, -0.0000018867,0.0000018899,0.0000018934,0.0000018961,0.0000018962, -0.0000018934,0.0000018886,0.0000018821,0.0000018759,0.0000018707, -0.0000018615,0.0000018486,0.0000018383,0.0000018349,0.0000018376, -0.0000018440,0.0000018514,0.0000018560,0.0000018574,0.0000018573, -0.0000018542,0.0000018487,0.0000018435,0.0000018421,0.0000018444, -0.0000018498,0.0000018537,0.0000018549,0.0000018528,0.0000018488, -0.0000018436,0.0000018381,0.0000018325,0.0000018272,0.0000018239, -0.0000018239,0.0000018247,0.0000018241,0.0000018222,0.0000018204, -0.0000018184,0.0000018148,0.0000018106,0.0000018076,0.0000018069, -0.0000018080,0.0000018111,0.0000018147,0.0000018168,0.0000018168, -0.0000018167,0.0000018181,0.0000018216,0.0000018256,0.0000018289, -0.0000018308,0.0000018316,0.0000018316,0.0000018309,0.0000018293, -0.0000018274,0.0000018250,0.0000018213,0.0000018166,0.0000018115, -0.0000018071,0.0000018048,0.0000018048,0.0000018064,0.0000018087, -0.0000018112,0.0000018129,0.0000018130,0.0000018117,0.0000018092, -0.0000018062,0.0000018039,0.0000018025,0.0000018013,0.0000018000, -0.0000017985,0.0000017968,0.0000017963,0.0000017991,0.0000018062, -0.0000018154,0.0000018240,0.0000018305,0.0000018351,0.0000018387, -0.0000018417,0.0000018432,0.0000018432,0.0000018417,0.0000018391, -0.0000018364,0.0000018338,0.0000018316,0.0000018300,0.0000018294, -0.0000018301,0.0000018315,0.0000018331,0.0000018344,0.0000018347, -0.0000018342,0.0000018323,0.0000018304,0.0000018295,0.0000018291, -0.0000018280,0.0000018258,0.0000018222,0.0000018176,0.0000018127, -0.0000018084,0.0000018045,0.0000018004,0.0000017966,0.0000017941, -0.0000017935,0.0000017939,0.0000017945,0.0000017940,0.0000017914, -0.0000017862,0.0000017790,0.0000017711,0.0000017635,0.0000017591, -0.0000017579,0.0000017576,0.0000017585,0.0000017599,0.0000017621, -0.0000017639,0.0000017660,0.0000017681,0.0000017702,0.0000017729, -0.0000017752,0.0000017755,0.0000017740,0.0000017716,0.0000017697, -0.0000017691,0.0000017693,0.0000017696,0.0000017694,0.0000017686, -0.0000017672,0.0000017663,0.0000017662,0.0000017670,0.0000017676, -0.0000017679,0.0000017683,0.0000017699,0.0000017727,0.0000017762, -0.0000017792,0.0000017805,0.0000017800,0.0000017800,0.0000017810, -0.0000017853,0.0000017942,0.0000018055,0.0000018150,0.0000018221, -0.0000018274,0.0000018294,0.0000018307,0.0000018306,0.0000018296, -0.0000018285,0.0000018282,0.0000018283,0.0000018290,0.0000018295, -0.0000018309,0.0000018337,0.0000018382,0.0000018443,0.0000018514, -0.0000018591,0.0000018676,0.0000018762,0.0000018852,0.0000018948, -0.0000019042,0.0000019124,0.0000019207,0.0000019278,0.0000019301, -0.0000019303,0.0000019318,0.0000019287,0.0000019241,0.0000019193, -0.0000019144,0.0000019098,0.0000019058,0.0000019025,0.0000018998, -0.0000018973,0.0000018953,0.0000018939,0.0000018929,0.0000018920, -0.0000018912,0.0000018901,0.0000018893,0.0000018892,0.0000018896, -0.0000018904,0.0000018913,0.0000018920,0.0000018926,0.0000018932, -0.0000018939,0.0000018947,0.0000018960,0.0000018982,0.0000019010, -0.0000019044,0.0000019080,0.0000019102,0.0000019110,0.0000019105, -0.0000019079,0.0000019034,0.0000018968,0.0000018886,0.0000018794, -0.0000018695,0.0000018586,0.0000018471,0.0000018359,0.0000018246, -0.0000018130,0.0000018014,0.0000017902,0.0000017807,0.0000017742, -0.0000017715,0.0000017702,0.0000017698,0.0000017697,0.0000017723, -0.0000017927,0.0000018310,0.0000018518,0.0000018469,0.0000018557, -0.0000018812,0.0000018832,0.0000018687,0.0000018612,0.0000018594, -0.0000018642,0.0000018770,0.0000018863,0.0000018878,0.0000018877, -0.0000018875,0.0000018849,0.0000018810,0.0000018790,0.0000018790, -0.0000018808,0.0000018834,0.0000018843,0.0000018837,0.0000018814, -0.0000018802,0.0000018784,0.0000018811,0.0000018722,0.0000018184, -0.0000017881,0.0000017781,0.0000017771,0.0000017764,0.0000017754, -0.0000017751,0.0000017744,0.0000017727,0.0000017706,0.0000017683, -0.0000017659,0.0000017644,0.0000017648,0.0000017672,0.0000017707, -0.0000017732,0.0000017737,0.0000017740,0.0000017725,0.0000017708, -0.0000017692,0.0000017676,0.0000017662,0.0000017652,0.0000017647, -0.0000017653,0.0000017671,0.0000017707,0.0000017749,0.0000017773, -0.0000017798,0.0000017788,0.0000017756,0.0000017741,0.0000017751, -0.0000017764,0.0000017770,0.0000017770,0.0000017772,0.0000017775, -0.0000017780,0.0000017788,0.0000017799,0.0000017812,0.0000017826, -0.0000017840,0.0000017852,0.0000017862,0.0000017868,0.0000017869, -0.0000017865,0.0000017856,0.0000017844,0.0000017828,0.0000017810, -0.0000017790,0.0000017770,0.0000017756,0.0000017745,0.0000017743, -0.0000017747,0.0000017753,0.0000017757,0.0000017754,0.0000017743, -0.0000017733,0.0000017724,0.0000017726,0.0000017738,0.0000017755, -0.0000017770,0.0000017778,0.0000017777,0.0000017766,0.0000017750, -0.0000017729,0.0000017704,0.0000017692,0.0000017678,0.0000017673, -0.0000017681,0.0000017699,0.0000017724,0.0000017751,0.0000017780, -0.0000017809,0.0000017838,0.0000017865,0.0000017891,0.0000017914, -0.0000017934,0.0000017950,0.0000017962,0.0000017970,0.0000017974, -0.0000017975,0.0000017975,0.0000017971,0.0000017966,0.0000017955, -0.0000017941,0.0000017924,0.0000017906,0.0000017891,0.0000017883, -0.0000017880,0.0000017885,0.0000017892,0.0000017899,0.0000017912, -0.0000017931,0.0000017954,0.0000017981,0.0000018011,0.0000018042, -0.0000018070,0.0000018098,0.0000018127,0.0000018160,0.0000018188, -0.0000018205,0.0000018211,0.0000018217,0.0000018217,0.0000018217, -0.0000018223,0.0000018237,0.0000018254,0.0000018272,0.0000018287, -0.0000018307,0.0000018336,0.0000018367,0.0000018387,0.0000018387, -0.0000018365,0.0000018326,0.0000018293,0.0000018268,0.0000018245, -0.0000018090,0.0000018040,0.0000018002,0.0000017982,0.0000017968, -0.0000017968,0.0000017982,0.0000018005,0.0000018026,0.0000018045, -0.0000018059,0.0000018067,0.0000018067,0.0000018061,0.0000018054, -0.0000018051,0.0000018052,0.0000018058,0.0000018069,0.0000018080, -0.0000018086,0.0000018086,0.0000018081,0.0000018074,0.0000018065, -0.0000018054,0.0000018043,0.0000018030,0.0000018019,0.0000018013, -0.0000018014,0.0000018027,0.0000018049,0.0000018077,0.0000018108, -0.0000018144,0.0000018175,0.0000018203,0.0000018235,0.0000018266, -0.0000018291,0.0000018311,0.0000018338,0.0000018363,0.0000018380, -0.0000018386,0.0000018384,0.0000018378,0.0000018368,0.0000018360, -0.0000018345,0.0000018326,0.0000018305,0.0000018292,0.0000018289, -0.0000018295,0.0000018313,0.0000018340,0.0000018371,0.0000018396, -0.0000018419,0.0000018437,0.0000018447,0.0000018460,0.0000018476, -0.0000018493,0.0000018519,0.0000018555,0.0000018595,0.0000018638, -0.0000018681,0.0000018723,0.0000018752,0.0000018773,0.0000018783, -0.0000018781,0.0000018753,0.0000018698,0.0000018626,0.0000018555, -0.0000018495,0.0000018479,0.0000018487,0.0000018523,0.0000018560, -0.0000018571,0.0000018551,0.0000018490,0.0000018415,0.0000018350, -0.0000018310,0.0000018305,0.0000018314,0.0000018313,0.0000018296, -0.0000018259,0.0000018209,0.0000018156,0.0000018111,0.0000018067, -0.0000018023,0.0000017985,0.0000017954,0.0000017929,0.0000017913, -0.0000017903,0.0000017898,0.0000017897,0.0000017901,0.0000017902, -0.0000017906,0.0000017901,0.0000017904,0.0000017918,0.0000017952, -0.0000018005,0.0000018064,0.0000018131,0.0000018197,0.0000018256, -0.0000018294,0.0000018305,0.0000018303,0.0000018283,0.0000018267, -0.0000018254,0.0000018257,0.0000018272,0.0000018295,0.0000018319, -0.0000018336,0.0000018343,0.0000018348,0.0000018344,0.0000018320, -0.0000018272,0.0000018203,0.0000018124,0.0000018041,0.0000017967, -0.0000017908,0.0000017865,0.0000017836,0.0000017823,0.0000017824, -0.0000017827,0.0000017842,0.0000017859,0.0000017877,0.0000017890, -0.0000017903,0.0000017913,0.0000017920,0.0000017925,0.0000017936, -0.0000017942,0.0000017944,0.0000017948,0.0000017955,0.0000017965, -0.0000017980,0.0000017992,0.0000018002,0.0000018011,0.0000018012, -0.0000018016,0.0000018017,0.0000018017,0.0000018017,0.0000018014, -0.0000018007,0.0000018002,0.0000017995,0.0000017989,0.0000017988, -0.0000017986,0.0000017989,0.0000017992,0.0000018000,0.0000018012, -0.0000018026,0.0000018039,0.0000018054,0.0000018073,0.0000018091, -0.0000018105,0.0000018121,0.0000018140,0.0000018149,0.0000018145, -0.0000018138,0.0000018127,0.0000018110,0.0000018092,0.0000018067, -0.0000018037,0.0000018006,0.0000017976,0.0000017950,0.0000017927, -0.0000017907,0.0000017891,0.0000017878,0.0000017864,0.0000017849, -0.0000017836,0.0000017824,0.0000017814,0.0000017809,0.0000017810, -0.0000017811,0.0000017807,0.0000017797,0.0000017782,0.0000017761, -0.0000017732,0.0000017697,0.0000017657,0.0000017620,0.0000017593, -0.0000017578,0.0000017572,0.0000017573,0.0000017580,0.0000017593, -0.0000017604,0.0000017608,0.0000017601,0.0000017581,0.0000017544, -0.0000017496,0.0000017445,0.0000017401,0.0000017371,0.0000017363, -0.0000017369,0.0000017382,0.0000017403,0.0000017431,0.0000017460, -0.0000017487,0.0000017513,0.0000017540,0.0000017570,0.0000017603, -0.0000017647,0.0000017692,0.0000017727,0.0000017748,0.0000017756, -0.0000017757,0.0000017752,0.0000017743,0.0000017740,0.0000017742, -0.0000017750,0.0000017747,0.0000017741,0.0000017725,0.0000017691, -0.0000017644,0.0000017589,0.0000017529,0.0000017465,0.0000017402, -0.0000017354,0.0000017331,0.0000017323,0.0000017325,0.0000017329, -0.0000017324,0.0000017303,0.0000017264,0.0000017231,0.0000017211, -0.0000017219,0.0000017262,0.0000017326,0.0000017396,0.0000017459, -0.0000017515,0.0000017564,0.0000017602,0.0000017624,0.0000017639, -0.0000017656,0.0000017689,0.0000017734,0.0000017786,0.0000017806, -0.0000017782,0.0000017712,0.0000017610,0.0000017507,0.0000017430, -0.0000017389,0.0000017373,0.0000017364,0.0000017353,0.0000017340, -0.0000017327,0.0000017322,0.0000017323,0.0000017328,0.0000017337, -0.0000017350,0.0000017366,0.0000017384,0.0000017401,0.0000017417, -0.0000017425,0.0000017429,0.0000017430,0.0000017435,0.0000017444, -0.0000017457,0.0000017473,0.0000017491,0.0000017509,0.0000017526, -0.0000017541,0.0000017552,0.0000017562,0.0000017572,0.0000017584, -0.0000017597,0.0000017609,0.0000017618,0.0000017626,0.0000017632, -0.0000017636,0.0000017637,0.0000017633,0.0000017630,0.0000017623, -0.0000017617,0.0000017611,0.0000017605,0.0000017598,0.0000017589, -0.0000017576,0.0000017560,0.0000017544,0.0000017533,0.0000017532, -0.0000017540,0.0000017562,0.0000017600,0.0000017653,0.0000017708, -0.0000017749,0.0000017771,0.0000017759,0.0000017711,0.0000017639, -0.0000017569,0.0000017519,0.0000017491,0.0000017483,0.0000017478, -0.0000017468,0.0000017459,0.0000017450,0.0000017454,0.0000017470, -0.0000017495,0.0000017517,0.0000017532,0.0000017546,0.0000017565, -0.0000017592,0.0000017621,0.0000017655,0.0000017684,0.0000017701, -0.0000017706,0.0000017708,0.0000017716,0.0000017731,0.0000017762, -0.0000017801,0.0000017846,0.0000017891,0.0000017933,0.0000017971, -0.0000018005,0.0000018031,0.0000018046,0.0000018057,0.0000018070, -0.0000018092,0.0000018122,0.0000018159,0.0000018197,0.0000018230, -0.0000018256,0.0000018272,0.0000018279,0.0000018279,0.0000018277, -0.0000018281,0.0000018288,0.0000018310,0.0000018335,0.0000018362, -0.0000018389,0.0000018417,0.0000018446,0.0000018470,0.0000018489, -0.0000018506,0.0000018516,0.0000018528,0.0000018540,0.0000018546, -0.0000018552,0.0000018562,0.0000018577,0.0000018601,0.0000018617, -0.0000018624,0.0000018625,0.0000018623,0.0000018617,0.0000018607, -0.0000018592,0.0000018571,0.0000018547,0.0000018518,0.0000018485, -0.0000018450,0.0000018418,0.0000018394,0.0000018376,0.0000018364, -0.0000018360,0.0000018359,0.0000018363,0.0000018367,0.0000018374, -0.0000018385,0.0000018400,0.0000018414,0.0000018420,0.0000018423, -0.0000018422,0.0000018414,0.0000018416,0.0000018431,0.0000018447, -0.0000018463,0.0000018478,0.0000018483,0.0000018493,0.0000018510, -0.0000018533,0.0000018562,0.0000018583,0.0000018602,0.0000018616, -0.0000018629,0.0000018622,0.0000018615,0.0000018615,0.0000018595, -0.0000018576,0.0000018553,0.0000018517,0.0000018495,0.0000018467, -0.0000018451,0.0000018439,0.0000018452,0.0000018453,0.0000018462, -0.0000018472,0.0000018479,0.0000018482,0.0000018473,0.0000018460, -0.0000018431,0.0000018392,0.0000018345,0.0000018291,0.0000018232, -0.0000018171,0.0000018118,0.0000018080,0.0000018060,0.0000018057, -0.0000018071,0.0000018083,0.0000018098,0.0000018110,0.0000018113, -0.0000018095,0.0000018070,0.0000018036,0.0000017989,0.0000017939, -0.0000017897,0.0000017862,0.0000017839,0.0000017826,0.0000017821, -0.0000017821,0.0000017821,0.0000017812,0.0000017795,0.0000017769, -0.0000017733,0.0000017688,0.0000017636,0.0000017582,0.0000017531, -0.0000017485,0.0000017453,0.0000017435,0.0000017426,0.0000017425, -0.0000017424,0.0000017431,0.0000017453,0.0000017477,0.0000017498, -0.0000017519,0.0000017530,0.0000017525,0.0000017504,0.0000017467, -0.0000017422,0.0000017374,0.0000017343,0.0000017318,0.0000017295, -0.0000017288,0.0000017300,0.0000017320,0.0000017356,0.0000017406, -0.0000017454,0.0000017485,0.0000017509,0.0000017523,0.0000017522, -0.0000017499,0.0000017463,0.0000017424,0.0000017388,0.0000017362, -0.0000017346,0.0000017339,0.0000017330,0.0000017334,0.0000017340, -0.0000017354,0.0000017377,0.0000017411,0.0000017452,0.0000017494, -0.0000017539,0.0000017576,0.0000017598,0.0000017615,0.0000017630, -0.0000017641,0.0000017652,0.0000017655,0.0000017638,0.0000017622, -0.0000017607,0.0000017585,0.0000017561,0.0000017542,0.0000017528, -0.0000017512,0.0000017507,0.0000017505,0.0000017512,0.0000017514, -0.0000017517,0.0000017523,0.0000017522,0.0000017524,0.0000017530, -0.0000017538,0.0000017546,0.0000017561,0.0000017584,0.0000017607, -0.0000017629,0.0000017640,0.0000017644,0.0000017649,0.0000017658, -0.0000017662,0.0000017659,0.0000017658,0.0000017664,0.0000017672, -0.0000017684,0.0000017705,0.0000017724,0.0000017746,0.0000017774, -0.0000017797,0.0000017808,0.0000017815,0.0000017822,0.0000017832, -0.0000017829,0.0000017822,0.0000017831,0.0000017843,0.0000017842, -0.0000017844,0.0000017859,0.0000017881,0.0000017901,0.0000017911, -0.0000017904,0.0000017888,0.0000017873,0.0000017857,0.0000017845, -0.0000017841,0.0000017842,0.0000017847,0.0000017854,0.0000017864, -0.0000017870,0.0000017869,0.0000017860,0.0000017845,0.0000017825, -0.0000017800,0.0000017786,0.0000017784,0.0000017782,0.0000017777, -0.0000017767,0.0000017748,0.0000017720,0.0000017686,0.0000017654, -0.0000017632,0.0000017615,0.0000017606,0.0000017605,0.0000017609, -0.0000017604,0.0000017585,0.0000017561,0.0000017541,0.0000017528, -0.0000017533,0.0000017562,0.0000017592,0.0000017642,0.0000017691, -0.0000017717,0.0000017726,0.0000017745,0.0000017780,0.0000017831, -0.0000017890,0.0000017959,0.0000018056,0.0000018190,0.0000018350, -0.0000018525,0.0000018697,0.0000018855,0.0000018987,0.0000019091, -0.0000019178,0.0000019241,0.0000019284,0.0000019317,0.0000019353, -0.0000019402,0.0000019456,0.0000019507,0.0000019559,0.0000019596, -0.0000019608,0.0000019589,0.0000019568,0.0000019523,0.0000019484, -0.0000019466,0.0000019460,0.0000019456,0.0000019447,0.0000019439, -0.0000019433,0.0000019436,0.0000019441,0.0000019445,0.0000019454, -0.0000019469,0.0000019487,0.0000019494,0.0000019484,0.0000019457, -0.0000019426,0.0000019394,0.0000019360,0.0000019325,0.0000019297, -0.0000019280,0.0000019275,0.0000019271,0.0000019256,0.0000019230, -0.0000019198,0.0000019172,0.0000019156,0.0000019144,0.0000019127, -0.0000019112,0.0000019096,0.0000019087,0.0000019085,0.0000019090, -0.0000019101,0.0000019121,0.0000019146,0.0000019169,0.0000019184, -0.0000019179,0.0000019161,0.0000019133,0.0000019102,0.0000019077, -0.0000019060,0.0000019051,0.0000019046,0.0000019041,0.0000019028, -0.0000019025,0.0000019025,0.0000019019,0.0000019005,0.0000018984, -0.0000018953,0.0000018916,0.0000018879,0.0000018845,0.0000018814, -0.0000018786,0.0000018757,0.0000018727,0.0000018695,0.0000018654, -0.0000018605,0.0000018562,0.0000018545,0.0000018536,0.0000018546, -0.0000018575,0.0000018620,0.0000018676,0.0000018735,0.0000018793, -0.0000018838,0.0000018853,0.0000018851,0.0000018829,0.0000018803, -0.0000018791,0.0000018788,0.0000018787,0.0000018792,0.0000018807, -0.0000018824,0.0000018836,0.0000018842,0.0000018844,0.0000018846, -0.0000018849,0.0000018855,0.0000018869,0.0000018899,0.0000018941, -0.0000018984,0.0000019009,0.0000019005,0.0000018993,0.0000018948, -0.0000018878,0.0000018799,0.0000018715,0.0000018644,0.0000018559, -0.0000018448,0.0000018357,0.0000018341,0.0000018410,0.0000018519, -0.0000018603,0.0000018639,0.0000018638,0.0000018588,0.0000018504, -0.0000018413,0.0000018367,0.0000018374,0.0000018429,0.0000018482, -0.0000018511,0.0000018498,0.0000018458,0.0000018406,0.0000018350, -0.0000018297,0.0000018262,0.0000018255,0.0000018262,0.0000018264, -0.0000018253,0.0000018236,0.0000018217,0.0000018182,0.0000018136, -0.0000018098,0.0000018081,0.0000018081,0.0000018101,0.0000018136, -0.0000018163,0.0000018170,0.0000018173,0.0000018193,0.0000018233, -0.0000018278,0.0000018312,0.0000018327,0.0000018327,0.0000018326, -0.0000018319,0.0000018300,0.0000018270,0.0000018233,0.0000018189, -0.0000018146,0.0000018103,0.0000018063,0.0000018044,0.0000018051, -0.0000018078,0.0000018110,0.0000018137,0.0000018148,0.0000018139, -0.0000018109,0.0000018064,0.0000018024,0.0000018001,0.0000017992, -0.0000017988,0.0000017983,0.0000017978,0.0000017980,0.0000018015, -0.0000018090,0.0000018189,0.0000018285,0.0000018358,0.0000018408, -0.0000018447,0.0000018480,0.0000018503,0.0000018511,0.0000018505, -0.0000018483,0.0000018455,0.0000018429,0.0000018406,0.0000018381, -0.0000018355,0.0000018334,0.0000018321,0.0000018318,0.0000018325, -0.0000018335,0.0000018343,0.0000018342,0.0000018329,0.0000018307, -0.0000018284,0.0000018264,0.0000018250,0.0000018239,0.0000018224, -0.0000018201,0.0000018167,0.0000018125,0.0000018080,0.0000018030, -0.0000017982,0.0000017947,0.0000017930,0.0000017932,0.0000017949, -0.0000017974,0.0000017987,0.0000017977,0.0000017943,0.0000017887, -0.0000017817,0.0000017744,0.0000017675,0.0000017624,0.0000017606, -0.0000017622,0.0000017638,0.0000017649,0.0000017657,0.0000017659, -0.0000017663,0.0000017674,0.0000017692,0.0000017714,0.0000017723, -0.0000017725,0.0000017726,0.0000017730,0.0000017734,0.0000017731, -0.0000017720,0.0000017705,0.0000017689,0.0000017671,0.0000017664, -0.0000017654,0.0000017654,0.0000017659,0.0000017661,0.0000017663, -0.0000017675,0.0000017706,0.0000017747,0.0000017777,0.0000017789, -0.0000017787,0.0000017789,0.0000017828,0.0000017899,0.0000017981, -0.0000018073,0.0000018163,0.0000018235,0.0000018294,0.0000018305, -0.0000018307,0.0000018294,0.0000018282,0.0000018272,0.0000018271, -0.0000018265,0.0000018256,0.0000018253,0.0000018257,0.0000018272, -0.0000018296,0.0000018327,0.0000018371,0.0000018424,0.0000018487, -0.0000018563,0.0000018655,0.0000018749,0.0000018852,0.0000018957, -0.0000019047,0.0000019132,0.0000019210,0.0000019257,0.0000019255, -0.0000019254,0.0000019260,0.0000019243,0.0000019221,0.0000019198, -0.0000019175,0.0000019147,0.0000019119,0.0000019094,0.0000019073, -0.0000019054,0.0000019039,0.0000019027,0.0000019019,0.0000019016, -0.0000019019,0.0000019029,0.0000019037,0.0000019041,0.0000019045, -0.0000019051,0.0000019060,0.0000019063,0.0000019061,0.0000019064, -0.0000019075,0.0000019085,0.0000019085,0.0000019066,0.0000019023, -0.0000018952,0.0000018861,0.0000018758,0.0000018646,0.0000018537, -0.0000018441,0.0000018349,0.0000018259,0.0000018177,0.0000018102, -0.0000018021,0.0000017933,0.0000017848,0.0000017777,0.0000017736, -0.0000017725,0.0000017731,0.0000017740,0.0000017739,0.0000017720, -0.0000017713,0.0000017871,0.0000018195,0.0000018315,0.0000018340, -0.0000018629,0.0000018842,0.0000018757,0.0000018638,0.0000018599, -0.0000018630,0.0000018741,0.0000018843,0.0000018871,0.0000018872, -0.0000018871,0.0000018842,0.0000018799,0.0000018782,0.0000018796, -0.0000018824,0.0000018839,0.0000018841,0.0000018812,0.0000018777, -0.0000018745,0.0000018709,0.0000018688,0.0000018715,0.0000018758, -0.0000018504,0.0000018088,0.0000017841,0.0000017788,0.0000017778, -0.0000017781,0.0000017785,0.0000017786,0.0000017780,0.0000017773, -0.0000017763,0.0000017744,0.0000017712,0.0000017676,0.0000017657, -0.0000017669,0.0000017693,0.0000017734,0.0000017775,0.0000017799, -0.0000017808,0.0000017816,0.0000017812,0.0000017811,0.0000017805, -0.0000017794,0.0000017785,0.0000017784,0.0000017772,0.0000017758, -0.0000017739,0.0000017725,0.0000017727,0.0000017741,0.0000017757, -0.0000017762,0.0000017757,0.0000017753,0.0000017754,0.0000017762, -0.0000017775,0.0000017796,0.0000017822,0.0000017852,0.0000017882, -0.0000017908,0.0000017930,0.0000017945,0.0000017952,0.0000017954, -0.0000017952,0.0000017946,0.0000017935,0.0000017920,0.0000017901, -0.0000017878,0.0000017852,0.0000017825,0.0000017799,0.0000017776, -0.0000017758,0.0000017750,0.0000017741,0.0000017740,0.0000017743, -0.0000017743,0.0000017737,0.0000017723,0.0000017712,0.0000017712, -0.0000017720,0.0000017736,0.0000017752,0.0000017762,0.0000017762, -0.0000017756,0.0000017741,0.0000017718,0.0000017695,0.0000017670, -0.0000017654,0.0000017646,0.0000017648,0.0000017660,0.0000017678, -0.0000017700,0.0000017725,0.0000017752,0.0000017782,0.0000017812, -0.0000017843,0.0000017872,0.0000017898,0.0000017917,0.0000017928, -0.0000017931,0.0000017930,0.0000017924,0.0000017915,0.0000017902, -0.0000017890,0.0000017877,0.0000017867,0.0000017862,0.0000017866, -0.0000017877,0.0000017889,0.0000017906,0.0000017921,0.0000017935, -0.0000017948,0.0000017964,0.0000017987,0.0000018012,0.0000018039, -0.0000018069,0.0000018099,0.0000018131,0.0000018163,0.0000018185, -0.0000018196,0.0000018206,0.0000018215,0.0000018219,0.0000018225, -0.0000018241,0.0000018261,0.0000018280,0.0000018301,0.0000018327, -0.0000018354,0.0000018370,0.0000018367,0.0000018346,0.0000018312, -0.0000018281,0.0000018259,0.0000018235,0.0000018195,0.0000018144, -0.0000017983,0.0000017949,0.0000017925,0.0000017914,0.0000017911, -0.0000017915,0.0000017926,0.0000017937,0.0000017943,0.0000017952, -0.0000017964,0.0000017975,0.0000017982,0.0000017986,0.0000017990, -0.0000017993,0.0000017998,0.0000018004,0.0000018007,0.0000018005, -0.0000017999,0.0000017990,0.0000017982,0.0000017973,0.0000017964, -0.0000017956,0.0000017949,0.0000017942,0.0000017935,0.0000017931, -0.0000017938,0.0000017954,0.0000017976,0.0000018002,0.0000018031, -0.0000018062,0.0000018096,0.0000018129,0.0000018164,0.0000018204, -0.0000018245,0.0000018280,0.0000018319,0.0000018355,0.0000018378, -0.0000018383,0.0000018380,0.0000018369,0.0000018358,0.0000018345, -0.0000018328,0.0000018304,0.0000018277,0.0000018257,0.0000018248, -0.0000018246,0.0000018252,0.0000018269,0.0000018296,0.0000018327, -0.0000018362,0.0000018396,0.0000018422,0.0000018446,0.0000018464, -0.0000018475,0.0000018485,0.0000018497,0.0000018516,0.0000018544, -0.0000018582,0.0000018630,0.0000018683,0.0000018732,0.0000018769, -0.0000018799,0.0000018810,0.0000018802,0.0000018763,0.0000018699, -0.0000018614,0.0000018540,0.0000018492,0.0000018484,0.0000018510, -0.0000018546,0.0000018573,0.0000018562,0.0000018521,0.0000018455, -0.0000018383,0.0000018337,0.0000018324,0.0000018322,0.0000018324, -0.0000018310,0.0000018279,0.0000018239,0.0000018199,0.0000018156, -0.0000018117,0.0000018083,0.0000018055,0.0000018035,0.0000018018, -0.0000018004,0.0000017990,0.0000017979,0.0000017968,0.0000017955, -0.0000017937,0.0000017907,0.0000017889,0.0000017873,0.0000017863, -0.0000017879,0.0000017914,0.0000017965,0.0000018031,0.0000018103, -0.0000018170,0.0000018235,0.0000018292,0.0000018300,0.0000018303, -0.0000018273,0.0000018241,0.0000018220,0.0000018223,0.0000018242, -0.0000018271,0.0000018303,0.0000018330,0.0000018345,0.0000018346, -0.0000018346,0.0000018319,0.0000018273,0.0000018211,0.0000018135, -0.0000018060,0.0000017986,0.0000017926,0.0000017882,0.0000017853, -0.0000017835,0.0000017835,0.0000017836,0.0000017845,0.0000017856, -0.0000017868,0.0000017881,0.0000017896,0.0000017911,0.0000017925, -0.0000017933,0.0000017937,0.0000017943,0.0000017952,0.0000017963, -0.0000017971,0.0000017986,0.0000017997,0.0000018002,0.0000018006, -0.0000018008,0.0000018014,0.0000018023,0.0000018029,0.0000018031, -0.0000018028,0.0000018024,0.0000018019,0.0000018014,0.0000018005, -0.0000017999,0.0000017996,0.0000017997,0.0000017996,0.0000017999, -0.0000018006,0.0000018012,0.0000018019,0.0000018032,0.0000018046, -0.0000018058,0.0000018071,0.0000018091,0.0000018110,0.0000018121, -0.0000018122,0.0000018116,0.0000018108,0.0000018100,0.0000018089, -0.0000018073,0.0000018054,0.0000018035,0.0000018019,0.0000018004, -0.0000017986,0.0000017970,0.0000017954,0.0000017938,0.0000017922, -0.0000017908,0.0000017894,0.0000017881,0.0000017870,0.0000017863, -0.0000017855,0.0000017844,0.0000017828,0.0000017809,0.0000017787, -0.0000017764,0.0000017734,0.0000017702,0.0000017675,0.0000017658, -0.0000017650,0.0000017646,0.0000017649,0.0000017656,0.0000017663, -0.0000017666,0.0000017664,0.0000017654,0.0000017637,0.0000017611, -0.0000017574,0.0000017535,0.0000017502,0.0000017478,0.0000017464, -0.0000017458,0.0000017458,0.0000017456,0.0000017457,0.0000017458, -0.0000017455,0.0000017454,0.0000017462,0.0000017479,0.0000017511, -0.0000017560,0.0000017617,0.0000017673,0.0000017720,0.0000017752, -0.0000017768,0.0000017768,0.0000017759,0.0000017741,0.0000017719, -0.0000017699,0.0000017685,0.0000017680,0.0000017678,0.0000017669, -0.0000017662,0.0000017653,0.0000017633,0.0000017599,0.0000017553, -0.0000017504,0.0000017455,0.0000017409,0.0000017372,0.0000017353, -0.0000017350,0.0000017349,0.0000017345,0.0000017338,0.0000017321, -0.0000017289,0.0000017267,0.0000017256,0.0000017268,0.0000017305, -0.0000017356,0.0000017408,0.0000017458,0.0000017503,0.0000017540, -0.0000017570,0.0000017591,0.0000017608,0.0000017635,0.0000017684, -0.0000017742,0.0000017789,0.0000017806,0.0000017791,0.0000017740, -0.0000017654,0.0000017561,0.0000017483,0.0000017423,0.0000017380, -0.0000017355,0.0000017340,0.0000017335,0.0000017342,0.0000017354, -0.0000017365,0.0000017381,0.0000017391,0.0000017396,0.0000017399, -0.0000017398,0.0000017392,0.0000017395,0.0000017412,0.0000017439, -0.0000017467,0.0000017496,0.0000017524,0.0000017545,0.0000017561, -0.0000017572,0.0000017581,0.0000017589,0.0000017596,0.0000017605, -0.0000017615,0.0000017625,0.0000017631,0.0000017634,0.0000017635, -0.0000017634,0.0000017629,0.0000017620,0.0000017610,0.0000017600, -0.0000017594,0.0000017590,0.0000017590,0.0000017587,0.0000017585, -0.0000017586,0.0000017592,0.0000017606,0.0000017633,0.0000017674, -0.0000017718,0.0000017762,0.0000017799,0.0000017804,0.0000017777, -0.0000017727,0.0000017659,0.0000017586,0.0000017529,0.0000017498, -0.0000017486,0.0000017482,0.0000017481,0.0000017477,0.0000017476, -0.0000017483,0.0000017499,0.0000017518,0.0000017533,0.0000017544, -0.0000017554,0.0000017568,0.0000017593,0.0000017623,0.0000017649, -0.0000017668,0.0000017683,0.0000017693,0.0000017704,0.0000017724, -0.0000017752,0.0000017787,0.0000017829,0.0000017874,0.0000017920, -0.0000017963,0.0000018002,0.0000018032,0.0000018052,0.0000018069, -0.0000018084,0.0000018104,0.0000018132,0.0000018169,0.0000018211, -0.0000018249,0.0000018278,0.0000018296,0.0000018306,0.0000018314, -0.0000018325,0.0000018341,0.0000018362,0.0000018387,0.0000018413, -0.0000018444,0.0000018479,0.0000018512,0.0000018544,0.0000018570, -0.0000018590,0.0000018608,0.0000018623,0.0000018638,0.0000018655, -0.0000018671,0.0000018691,0.0000018711,0.0000018721,0.0000018734, -0.0000018745,0.0000018755,0.0000018770,0.0000018775,0.0000018775, -0.0000018764,0.0000018747,0.0000018720,0.0000018694,0.0000018670, -0.0000018645,0.0000018617,0.0000018587,0.0000018554,0.0000018519, -0.0000018484,0.0000018452,0.0000018425,0.0000018405,0.0000018388, -0.0000018379,0.0000018372,0.0000018365,0.0000018363,0.0000018362, -0.0000018370,0.0000018384,0.0000018397,0.0000018407,0.0000018413, -0.0000018413,0.0000018416,0.0000018425,0.0000018438,0.0000018453, -0.0000018456,0.0000018447,0.0000018450,0.0000018441,0.0000018446, -0.0000018465,0.0000018480,0.0000018497,0.0000018524,0.0000018547, -0.0000018561,0.0000018583,0.0000018602,0.0000018615,0.0000018632, -0.0000018617,0.0000018619,0.0000018602,0.0000018575,0.0000018540, -0.0000018507,0.0000018484,0.0000018454,0.0000018439,0.0000018428, -0.0000018437,0.0000018431,0.0000018441,0.0000018445,0.0000018450, -0.0000018452,0.0000018445,0.0000018443,0.0000018417,0.0000018376, -0.0000018330,0.0000018275,0.0000018218,0.0000018172,0.0000018139, -0.0000018121,0.0000018117,0.0000018122,0.0000018126,0.0000018123, -0.0000018116,0.0000018107,0.0000018083,0.0000018046,0.0000018007, -0.0000017966,0.0000017922,0.0000017888,0.0000017863,0.0000017846, -0.0000017837,0.0000017828,0.0000017818,0.0000017813,0.0000017808, -0.0000017796,0.0000017776,0.0000017746,0.0000017706,0.0000017658, -0.0000017606,0.0000017560,0.0000017516,0.0000017486,0.0000017466, -0.0000017460,0.0000017468,0.0000017477,0.0000017494,0.0000017522, -0.0000017544,0.0000017550,0.0000017547,0.0000017525,0.0000017491, -0.0000017451,0.0000017404,0.0000017372,0.0000017342,0.0000017327, -0.0000017329,0.0000017340,0.0000017366,0.0000017405,0.0000017446, -0.0000017478,0.0000017505,0.0000017533,0.0000017551,0.0000017550, -0.0000017538,0.0000017521,0.0000017494,0.0000017465,0.0000017438, -0.0000017410,0.0000017381,0.0000017353,0.0000017334,0.0000017332, -0.0000017328,0.0000017345,0.0000017375,0.0000017412,0.0000017454, -0.0000017494,0.0000017529,0.0000017557,0.0000017582,0.0000017598, -0.0000017617,0.0000017628,0.0000017624,0.0000017609,0.0000017593, -0.0000017574,0.0000017567,0.0000017552,0.0000017532,0.0000017523, -0.0000017519,0.0000017521,0.0000017530,0.0000017530,0.0000017538, -0.0000017550,0.0000017552,0.0000017544,0.0000017540,0.0000017540, -0.0000017546,0.0000017555,0.0000017572,0.0000017594,0.0000017615, -0.0000017629,0.0000017643,0.0000017652,0.0000017654,0.0000017648, -0.0000017642,0.0000017638,0.0000017629,0.0000017626,0.0000017642, -0.0000017668,0.0000017697,0.0000017732,0.0000017767,0.0000017792, -0.0000017807,0.0000017822,0.0000017840,0.0000017848,0.0000017848, -0.0000017854,0.0000017864,0.0000017865,0.0000017869,0.0000017890, -0.0000017911,0.0000017927,0.0000017935,0.0000017927,0.0000017908, -0.0000017890,0.0000017877,0.0000017863,0.0000017851,0.0000017844, -0.0000017841,0.0000017844,0.0000017859,0.0000017877,0.0000017893, -0.0000017897,0.0000017889,0.0000017876,0.0000017858,0.0000017837, -0.0000017822,0.0000017809,0.0000017797,0.0000017778,0.0000017753, -0.0000017722,0.0000017686,0.0000017653,0.0000017628,0.0000017609, -0.0000017598,0.0000017605,0.0000017619,0.0000017632,0.0000017640, -0.0000017638,0.0000017634,0.0000017631,0.0000017628,0.0000017624, -0.0000017614,0.0000017620,0.0000017636,0.0000017662,0.0000017676, -0.0000017695,0.0000017718,0.0000017728,0.0000017728,0.0000017707, -0.0000017693,0.0000017709,0.0000017761,0.0000017844,0.0000017957, -0.0000018091,0.0000018236,0.0000018390,0.0000018559,0.0000018718, -0.0000018858,0.0000018975,0.0000019083,0.0000019176,0.0000019260, -0.0000019333,0.0000019400,0.0000019456,0.0000019499,0.0000019526, -0.0000019535,0.0000019519,0.0000019493,0.0000019482,0.0000019473, -0.0000019469,0.0000019458,0.0000019442,0.0000019430,0.0000019424, -0.0000019420,0.0000019416,0.0000019415,0.0000019423,0.0000019444, -0.0000019458,0.0000019458,0.0000019440,0.0000019413,0.0000019382, -0.0000019349,0.0000019312,0.0000019273,0.0000019240,0.0000019219, -0.0000019211,0.0000019205,0.0000019188,0.0000019161,0.0000019131, -0.0000019108,0.0000019095,0.0000019090,0.0000019088,0.0000019088, -0.0000019087,0.0000019083,0.0000019077,0.0000019067,0.0000019060, -0.0000019065,0.0000019083,0.0000019111,0.0000019132,0.0000019137, -0.0000019125,0.0000019097,0.0000019065,0.0000019042,0.0000019027, -0.0000019014,0.0000019004,0.0000018995,0.0000019002,0.0000019024, -0.0000019040,0.0000019062,0.0000019066,0.0000019053,0.0000019025, -0.0000018984,0.0000018932,0.0000018877,0.0000018835,0.0000018809, -0.0000018794,0.0000018779,0.0000018760,0.0000018734,0.0000018699, -0.0000018650,0.0000018592,0.0000018547,0.0000018522,0.0000018528, -0.0000018564,0.0000018615,0.0000018664,0.0000018707,0.0000018757, -0.0000018807,0.0000018836,0.0000018843,0.0000018834,0.0000018813, -0.0000018790,0.0000018771,0.0000018761,0.0000018763,0.0000018775, -0.0000018794,0.0000018816,0.0000018830,0.0000018834,0.0000018836, -0.0000018848,0.0000018870,0.0000018903,0.0000018935,0.0000018954, -0.0000018963,0.0000018976,0.0000018981,0.0000018979,0.0000018931, -0.0000018838,0.0000018748,0.0000018688,0.0000018617,0.0000018504, -0.0000018386,0.0000018349,0.0000018398,0.0000018528,0.0000018637, -0.0000018682,0.0000018674,0.0000018606,0.0000018498,0.0000018389, -0.0000018324,0.0000018328,0.0000018384,0.0000018451,0.0000018475, -0.0000018462,0.0000018422,0.0000018378,0.0000018326,0.0000018282, -0.0000018262,0.0000018260,0.0000018263,0.0000018264,0.0000018258, -0.0000018246,0.0000018218,0.0000018176,0.0000018131,0.0000018098, -0.0000018087,0.0000018092,0.0000018122,0.0000018153,0.0000018168, -0.0000018175,0.0000018198,0.0000018244,0.0000018293,0.0000018324, -0.0000018329,0.0000018326,0.0000018322,0.0000018317,0.0000018298, -0.0000018257,0.0000018205,0.0000018151,0.0000018109,0.0000018079, -0.0000018057,0.0000018053,0.0000018066,0.0000018098,0.0000018130, -0.0000018147,0.0000018144,0.0000018122,0.0000018082,0.0000018032, -0.0000017991,0.0000017970,0.0000017964,0.0000017963,0.0000017968, -0.0000017988,0.0000018031,0.0000018105,0.0000018198,0.0000018293, -0.0000018372,0.0000018429,0.0000018471,0.0000018508,0.0000018537, -0.0000018549,0.0000018551,0.0000018544,0.0000018530,0.0000018511, -0.0000018493,0.0000018473,0.0000018452,0.0000018426,0.0000018397, -0.0000018366,0.0000018338,0.0000018319,0.0000018311,0.0000018308, -0.0000018307,0.0000018303,0.0000018291,0.0000018270,0.0000018246, -0.0000018229,0.0000018220,0.0000018213,0.0000018205,0.0000018186, -0.0000018154,0.0000018113,0.0000018067,0.0000018021,0.0000017979, -0.0000017946,0.0000017927,0.0000017925,0.0000017934,0.0000017954, -0.0000017960,0.0000017960,0.0000017952,0.0000017936,0.0000017915, -0.0000017887,0.0000017843,0.0000017782,0.0000017712,0.0000017659, -0.0000017648,0.0000017647,0.0000017650,0.0000017654,0.0000017648, -0.0000017639,0.0000017643,0.0000017667,0.0000017705,0.0000017737, -0.0000017766,0.0000017778,0.0000017775,0.0000017759,0.0000017738, -0.0000017721,0.0000017701,0.0000017672,0.0000017656,0.0000017645, -0.0000017641,0.0000017638,0.0000017634,0.0000017636,0.0000017655, -0.0000017690,0.0000017729,0.0000017764,0.0000017783,0.0000017811, -0.0000017848,0.0000017886,0.0000017934,0.0000018000,0.0000018080, -0.0000018167,0.0000018232,0.0000018276,0.0000018293,0.0000018296, -0.0000018288,0.0000018275,0.0000018261,0.0000018239,0.0000018225, -0.0000018219,0.0000018217,0.0000018216,0.0000018217,0.0000018226, -0.0000018240,0.0000018261,0.0000018298,0.0000018354,0.0000018420, -0.0000018491,0.0000018570,0.0000018649,0.0000018734,0.0000018821, -0.0000018900,0.0000018975,0.0000019050,0.0000019119,0.0000019176, -0.0000019216,0.0000019221,0.0000019226,0.0000019238,0.0000019236, -0.0000019220,0.0000019200,0.0000019178,0.0000019155,0.0000019136, -0.0000019120,0.0000019111,0.0000019110,0.0000019112,0.0000019114, -0.0000019109,0.0000019100,0.0000019091,0.0000019076,0.0000019049, -0.0000019011,0.0000018972,0.0000018936,0.0000018901,0.0000018857, -0.0000018794,0.0000018712,0.0000018620,0.0000018530,0.0000018443, -0.0000018358,0.0000018284,0.0000018218,0.0000018152,0.0000018084, -0.0000018018,0.0000017950,0.0000017877,0.0000017813,0.0000017773, -0.0000017752,0.0000017758,0.0000017784,0.0000017811,0.0000017823, -0.0000017813,0.0000017768,0.0000017743,0.0000017874,0.0000018117, -0.0000018189,0.0000018358,0.0000018744,0.0000018831,0.0000018692, -0.0000018609,0.0000018615,0.0000018708,0.0000018814,0.0000018856, -0.0000018859,0.0000018857,0.0000018827,0.0000018786,0.0000018783, -0.0000018821,0.0000018820,0.0000018786,0.0000018660,0.0000018525, -0.0000018429,0.0000018390,0.0000018401,0.0000018433,0.0000018466, -0.0000018512,0.0000018655,0.0000018663,0.0000018390,0.0000018077, -0.0000017860,0.0000017783,0.0000017773,0.0000017783,0.0000017793, -0.0000017798,0.0000017801,0.0000017804,0.0000017805,0.0000017791, -0.0000017758,0.0000017715,0.0000017679,0.0000017662,0.0000017679, -0.0000017706,0.0000017742,0.0000017774,0.0000017799,0.0000017809, -0.0000017815,0.0000017805,0.0000017786,0.0000017758,0.0000017730, -0.0000017708,0.0000017697,0.0000017698,0.0000017705,0.0000017720, -0.0000017729,0.0000017730,0.0000017728,0.0000017727,0.0000017738, -0.0000017758,0.0000017788,0.0000017828,0.0000017872,0.0000017913, -0.0000017947,0.0000017974,0.0000017994,0.0000018007,0.0000018014, -0.0000018015,0.0000018012,0.0000018005,0.0000017996,0.0000017988, -0.0000017979,0.0000017969,0.0000017954,0.0000017935,0.0000017911, -0.0000017883,0.0000017852,0.0000017819,0.0000017787,0.0000017759, -0.0000017741,0.0000017730,0.0000017728,0.0000017729,0.0000017728, -0.0000017718,0.0000017706,0.0000017703,0.0000017709,0.0000017724, -0.0000017740,0.0000017755,0.0000017757,0.0000017752,0.0000017736, -0.0000017712,0.0000017684,0.0000017656,0.0000017640,0.0000017623, -0.0000017618,0.0000017626,0.0000017642,0.0000017664,0.0000017687, -0.0000017711,0.0000017739,0.0000017774,0.0000017815,0.0000017854, -0.0000017880,0.0000017890,0.0000017890,0.0000017885,0.0000017874, -0.0000017861,0.0000017848,0.0000017835,0.0000017826,0.0000017826, -0.0000017839,0.0000017863,0.0000017888,0.0000017911,0.0000017931, -0.0000017945,0.0000017956,0.0000017969,0.0000017989,0.0000018014, -0.0000018044,0.0000018080,0.0000018113,0.0000018141,0.0000018159, -0.0000018172,0.0000018185,0.0000018202,0.0000018218,0.0000018234, -0.0000018255,0.0000018277,0.0000018300,0.0000018321,0.0000018342, -0.0000018349,0.0000018343,0.0000018320,0.0000018288,0.0000018263, -0.0000018244,0.0000018218,0.0000018177,0.0000018124,0.0000018073, -0.0000018025,0.0000017867,0.0000017844,0.0000017836,0.0000017835, -0.0000017839,0.0000017848,0.0000017865,0.0000017883,0.0000017903, -0.0000017921,0.0000017939,0.0000017952,0.0000017957,0.0000017954, -0.0000017947,0.0000017937,0.0000017924,0.0000017914,0.0000017904, -0.0000017895,0.0000017891,0.0000017891,0.0000017892,0.0000017895, -0.0000017900,0.0000017903,0.0000017904,0.0000017902,0.0000017895, -0.0000017894,0.0000017902,0.0000017913,0.0000017928,0.0000017946, -0.0000017966,0.0000017991,0.0000018019,0.0000018050,0.0000018084, -0.0000018122,0.0000018163,0.0000018205,0.0000018250,0.0000018294, -0.0000018329,0.0000018351,0.0000018358,0.0000018354,0.0000018351, -0.0000018344,0.0000018329,0.0000018307,0.0000018282,0.0000018262, -0.0000018245,0.0000018235,0.0000018227,0.0000018226,0.0000018237, -0.0000018257,0.0000018287,0.0000018322,0.0000018359,0.0000018394, -0.0000018425,0.0000018449,0.0000018466,0.0000018477,0.0000018486, -0.0000018497,0.0000018511,0.0000018540,0.0000018585,0.0000018637, -0.0000018692,0.0000018745,0.0000018790,0.0000018821,0.0000018825, -0.0000018810,0.0000018761,0.0000018684,0.0000018596,0.0000018527, -0.0000018497,0.0000018504,0.0000018528,0.0000018548,0.0000018546, -0.0000018527,0.0000018477,0.0000018422,0.0000018381,0.0000018356, -0.0000018343,0.0000018335,0.0000018321,0.0000018302,0.0000018277, -0.0000018244,0.0000018209,0.0000018176,0.0000018149,0.0000018130, -0.0000018115,0.0000018103,0.0000018095,0.0000018090,0.0000018086, -0.0000018076,0.0000018054,0.0000018019,0.0000017976,0.0000017929, -0.0000017886,0.0000017863,0.0000017859,0.0000017852,0.0000017883, -0.0000017930,0.0000017990,0.0000018064,0.0000018140,0.0000018209, -0.0000018271,0.0000018278,0.0000018282,0.0000018248,0.0000018213, -0.0000018195,0.0000018202,0.0000018227,0.0000018259,0.0000018290, -0.0000018316,0.0000018335,0.0000018333,0.0000018330,0.0000018308, -0.0000018271,0.0000018219,0.0000018153,0.0000018081,0.0000018011, -0.0000017949,0.0000017902,0.0000017869,0.0000017846,0.0000017842, -0.0000017836,0.0000017835,0.0000017842,0.0000017858,0.0000017878, -0.0000017896,0.0000017913,0.0000017927,0.0000017943,0.0000017957, -0.0000017969,0.0000017982,0.0000017998,0.0000018011,0.0000018013, -0.0000018015,0.0000018015,0.0000018023,0.0000018033,0.0000018041, -0.0000018047,0.0000018051,0.0000018052,0.0000018051,0.0000018048, -0.0000018041,0.0000018035,0.0000018030,0.0000018023,0.0000018016, -0.0000018009,0.0000018009,0.0000018009,0.0000018011,0.0000018015, -0.0000018018,0.0000018017,0.0000018020,0.0000018030,0.0000018049, -0.0000018067,0.0000018081,0.0000018089,0.0000018091,0.0000018090, -0.0000018087,0.0000018081,0.0000018078,0.0000018075,0.0000018075, -0.0000018075,0.0000018074,0.0000018069,0.0000018057,0.0000018038, -0.0000018018,0.0000017996,0.0000017973,0.0000017951,0.0000017933, -0.0000017920,0.0000017907,0.0000017892,0.0000017873,0.0000017849, -0.0000017821,0.0000017787,0.0000017747,0.0000017709,0.0000017682, -0.0000017672,0.0000017673,0.0000017685,0.0000017707,0.0000017728, -0.0000017743,0.0000017746,0.0000017740,0.0000017723,0.0000017696, -0.0000017658,0.0000017617,0.0000017578,0.0000017551,0.0000017535, -0.0000017533,0.0000017539,0.0000017546,0.0000017546,0.0000017537, -0.0000017522,0.0000017502,0.0000017483,0.0000017475,0.0000017475, -0.0000017484,0.0000017507,0.0000017542,0.0000017585,0.0000017633, -0.0000017684,0.0000017733,0.0000017766,0.0000017782,0.0000017779, -0.0000017757,0.0000017721,0.0000017681,0.0000017644,0.0000017615, -0.0000017604,0.0000017606,0.0000017615,0.0000017622,0.0000017625, -0.0000017622,0.0000017607,0.0000017579,0.0000017547,0.0000017514, -0.0000017480,0.0000017446,0.0000017417,0.0000017401,0.0000017400, -0.0000017405,0.0000017408,0.0000017404,0.0000017382,0.0000017341, -0.0000017312,0.0000017296,0.0000017300,0.0000017325,0.0000017359, -0.0000017393,0.0000017427,0.0000017461,0.0000017498,0.0000017539, -0.0000017573,0.0000017602,0.0000017638,0.0000017689,0.0000017746, -0.0000017795,0.0000017815,0.0000017805,0.0000017750,0.0000017686, -0.0000017602,0.0000017529,0.0000017476,0.0000017444,0.0000017427, -0.0000017418,0.0000017415,0.0000017411,0.0000017407,0.0000017406, -0.0000017401,0.0000017393,0.0000017391,0.0000017404,0.0000017426, -0.0000017450,0.0000017479,0.0000017507,0.0000017527,0.0000017540, -0.0000017550,0.0000017554,0.0000017560,0.0000017566,0.0000017573, -0.0000017583,0.0000017594,0.0000017603,0.0000017610,0.0000017614, -0.0000017615,0.0000017618,0.0000017612,0.0000017605,0.0000017597, -0.0000017595,0.0000017601,0.0000017611,0.0000017629,0.0000017656, -0.0000017690,0.0000017720,0.0000017750,0.0000017781,0.0000017804, -0.0000017819,0.0000017812,0.0000017788,0.0000017739,0.0000017677, -0.0000017622,0.0000017577,0.0000017547,0.0000017519,0.0000017501, -0.0000017486,0.0000017483,0.0000017493,0.0000017509,0.0000017528, -0.0000017546,0.0000017561,0.0000017569,0.0000017577,0.0000017593, -0.0000017619,0.0000017646,0.0000017666,0.0000017674,0.0000017675, -0.0000017680,0.0000017698,0.0000017725,0.0000017764,0.0000017811, -0.0000017862,0.0000017913,0.0000017964,0.0000018012,0.0000018052, -0.0000018080,0.0000018096,0.0000018103,0.0000018116,0.0000018142, -0.0000018180,0.0000018224,0.0000018265,0.0000018297,0.0000018320, -0.0000018336,0.0000018351,0.0000018372,0.0000018402,0.0000018439, -0.0000018481,0.0000018524,0.0000018562,0.0000018590,0.0000018608, -0.0000018615,0.0000018621,0.0000018635,0.0000018658,0.0000018685, -0.0000018712,0.0000018736,0.0000018759,0.0000018787,0.0000018812, -0.0000018834,0.0000018852,0.0000018869,0.0000018869,0.0000018864, -0.0000018852,0.0000018837,0.0000018823,0.0000018800,0.0000018775, -0.0000018744,0.0000018714,0.0000018681,0.0000018645,0.0000018613, -0.0000018585,0.0000018558,0.0000018531,0.0000018504,0.0000018477, -0.0000018452,0.0000018429,0.0000018412,0.0000018401,0.0000018391, -0.0000018384,0.0000018383,0.0000018381,0.0000018380,0.0000018375, -0.0000018371,0.0000018373,0.0000018376,0.0000018384,0.0000018392, -0.0000018397,0.0000018403,0.0000018412,0.0000018430,0.0000018451, -0.0000018468,0.0000018474,0.0000018470,0.0000018459,0.0000018450, -0.0000018449,0.0000018441,0.0000018446,0.0000018447,0.0000018460, -0.0000018468,0.0000018484,0.0000018510,0.0000018537,0.0000018566, -0.0000018591,0.0000018612,0.0000018629,0.0000018634,0.0000018631, -0.0000018619,0.0000018592,0.0000018559,0.0000018523,0.0000018493, -0.0000018458,0.0000018439,0.0000018414,0.0000018406,0.0000018411, -0.0000018409,0.0000018420,0.0000018438,0.0000018447,0.0000018460, -0.0000018459,0.0000018460,0.0000018426,0.0000018378,0.0000018331, -0.0000018285,0.0000018243,0.0000018207,0.0000018177,0.0000018157, -0.0000018146,0.0000018142,0.0000018139,0.0000018128,0.0000018106, -0.0000018075,0.0000018034,0.0000017991,0.0000017953,0.0000017920, -0.0000017897,0.0000017883,0.0000017872,0.0000017861,0.0000017851, -0.0000017842,0.0000017830,0.0000017814,0.0000017797,0.0000017774, -0.0000017747,0.0000017713,0.0000017674,0.0000017633,0.0000017604, -0.0000017576,0.0000017557,0.0000017548,0.0000017539,0.0000017546, -0.0000017555,0.0000017562,0.0000017562,0.0000017558,0.0000017533, -0.0000017503,0.0000017458,0.0000017408,0.0000017365,0.0000017343, -0.0000017344,0.0000017356,0.0000017379,0.0000017415,0.0000017456, -0.0000017490,0.0000017518,0.0000017545,0.0000017561,0.0000017571, -0.0000017570,0.0000017557,0.0000017544,0.0000017525,0.0000017502, -0.0000017486,0.0000017464,0.0000017433,0.0000017405,0.0000017390, -0.0000017384,0.0000017387,0.0000017400,0.0000017430,0.0000017461, -0.0000017487,0.0000017513,0.0000017535,0.0000017556,0.0000017566, -0.0000017577,0.0000017576,0.0000017560,0.0000017536,0.0000017511, -0.0000017493,0.0000017486,0.0000017482,0.0000017467,0.0000017466, -0.0000017474,0.0000017498,0.0000017516,0.0000017528,0.0000017542, -0.0000017555,0.0000017558,0.0000017551,0.0000017542,0.0000017537, -0.0000017537,0.0000017543,0.0000017556,0.0000017576,0.0000017594, -0.0000017612,0.0000017631,0.0000017640,0.0000017643,0.0000017646, -0.0000017644,0.0000017633,0.0000017629,0.0000017648,0.0000017674, -0.0000017702,0.0000017735,0.0000017768,0.0000017790,0.0000017805, -0.0000017821,0.0000017839,0.0000017851,0.0000017853,0.0000017858, -0.0000017866,0.0000017867,0.0000017872,0.0000017894,0.0000017915, -0.0000017930,0.0000017933,0.0000017918,0.0000017888,0.0000017854, -0.0000017829,0.0000017812,0.0000017797,0.0000017778,0.0000017758, -0.0000017749,0.0000017758,0.0000017786,0.0000017819,0.0000017844, -0.0000017848,0.0000017842,0.0000017835,0.0000017826,0.0000017814, -0.0000017801,0.0000017786,0.0000017769,0.0000017744,0.0000017713, -0.0000017679,0.0000017633,0.0000017592,0.0000017566,0.0000017553, -0.0000017553,0.0000017566,0.0000017589,0.0000017610,0.0000017626, -0.0000017643,0.0000017663,0.0000017680,0.0000017688,0.0000017685, -0.0000017669,0.0000017652,0.0000017651,0.0000017662,0.0000017686, -0.0000017712,0.0000017726,0.0000017725,0.0000017700,0.0000017668, -0.0000017641,0.0000017625,0.0000017620,0.0000017635,0.0000017662, -0.0000017706,0.0000017775,0.0000017876,0.0000018002,0.0000018142, -0.0000018299,0.0000018475,0.0000018642,0.0000018803,0.0000018952, -0.0000019085,0.0000019190,0.0000019275,0.0000019345,0.0000019396, -0.0000019427,0.0000019444,0.0000019453,0.0000019453,0.0000019454, -0.0000019447,0.0000019434,0.0000019422,0.0000019414,0.0000019407, -0.0000019399,0.0000019389,0.0000019386,0.0000019400,0.0000019414, -0.0000019414,0.0000019402,0.0000019379,0.0000019350,0.0000019318, -0.0000019282,0.0000019241,0.0000019201,0.0000019168,0.0000019148, -0.0000019136,0.0000019126,0.0000019111,0.0000019092,0.0000019071, -0.0000019051,0.0000019037,0.0000019035,0.0000019044,0.0000019056, -0.0000019066,0.0000019070,0.0000019061,0.0000019043,0.0000019022, -0.0000019014,0.0000019022,0.0000019038,0.0000019052,0.0000019055, -0.0000019046,0.0000019029,0.0000019014,0.0000019004,0.0000018992, -0.0000018975,0.0000018957,0.0000018957,0.0000018976,0.0000019005, -0.0000019034,0.0000019057,0.0000019064,0.0000019060,0.0000019046, -0.0000019020,0.0000018975,0.0000018917,0.0000018864,0.0000018835, -0.0000018831,0.0000018836,0.0000018834,0.0000018813,0.0000018776, -0.0000018726,0.0000018666,0.0000018604,0.0000018559,0.0000018546, -0.0000018546,0.0000018569,0.0000018604,0.0000018638,0.0000018674, -0.0000018727,0.0000018789,0.0000018831,0.0000018852,0.0000018844, -0.0000018816,0.0000018785,0.0000018766,0.0000018768,0.0000018786, -0.0000018814,0.0000018835,0.0000018842,0.0000018842,0.0000018847, -0.0000018859,0.0000018881,0.0000018900,0.0000018899,0.0000018889, -0.0000018880,0.0000018901,0.0000018947,0.0000018969,0.0000018953, -0.0000018898,0.0000018811,0.0000018723,0.0000018644,0.0000018542, -0.0000018429,0.0000018374,0.0000018417,0.0000018531,0.0000018643, -0.0000018695,0.0000018678,0.0000018599,0.0000018487,0.0000018377, -0.0000018316,0.0000018320,0.0000018356,0.0000018398,0.0000018414, -0.0000018415,0.0000018398,0.0000018365,0.0000018316,0.0000018275, -0.0000018255,0.0000018252,0.0000018256,0.0000018260,0.0000018259, -0.0000018245,0.0000018209,0.0000018158,0.0000018108,0.0000018082, -0.0000018079,0.0000018098,0.0000018125,0.0000018139,0.0000018145, -0.0000018168,0.0000018217,0.0000018268,0.0000018300,0.0000018305, -0.0000018296,0.0000018292,0.0000018293,0.0000018279,0.0000018239, -0.0000018179,0.0000018117,0.0000018073,0.0000018057,0.0000018056, -0.0000018060,0.0000018079,0.0000018109,0.0000018131,0.0000018133, -0.0000018119,0.0000018088,0.0000018048,0.0000018010,0.0000017983, -0.0000017966,0.0000017955,0.0000017957,0.0000017981,0.0000018032, -0.0000018109,0.0000018210,0.0000018313,0.0000018399,0.0000018465, -0.0000018514,0.0000018548,0.0000018574,0.0000018582,0.0000018579, -0.0000018573,0.0000018568,0.0000018563,0.0000018555,0.0000018545, -0.0000018531,0.0000018510,0.0000018483,0.0000018450,0.0000018412, -0.0000018373,0.0000018337,0.0000018307,0.0000018287,0.0000018276, -0.0000018272,0.0000018273,0.0000018272,0.0000018262,0.0000018247, -0.0000018234,0.0000018230,0.0000018229,0.0000018225,0.0000018206, -0.0000018164,0.0000018106,0.0000018049,0.0000018001,0.0000017964, -0.0000017933,0.0000017911,0.0000017904,0.0000017908,0.0000017913, -0.0000017914,0.0000017918,0.0000017932,0.0000017968,0.0000018005, -0.0000018007,0.0000017970,0.0000017899,0.0000017807,0.0000017712, -0.0000017655,0.0000017654,0.0000017647,0.0000017638,0.0000017624, -0.0000017605,0.0000017612,0.0000017653,0.0000017715,0.0000017776, -0.0000017810,0.0000017818,0.0000017807,0.0000017789,0.0000017765, -0.0000017739,0.0000017709,0.0000017672,0.0000017644,0.0000017626, -0.0000017612,0.0000017605,0.0000017603,0.0000017612,0.0000017638, -0.0000017684,0.0000017736,0.0000017795,0.0000017846,0.0000017874, -0.0000017889,0.0000017911,0.0000017946,0.0000018005,0.0000018075, -0.0000018138,0.0000018192,0.0000018234,0.0000018270,0.0000018273, -0.0000018275,0.0000018257,0.0000018228,0.0000018207,0.0000018195, -0.0000018185,0.0000018178,0.0000018178,0.0000018179,0.0000018180, -0.0000018187,0.0000018202,0.0000018231,0.0000018262,0.0000018300, -0.0000018346,0.0000018403,0.0000018463,0.0000018517,0.0000018575, -0.0000018640,0.0000018703,0.0000018777,0.0000018856,0.0000018936, -0.0000019004,0.0000019059,0.0000019095,0.0000019112,0.0000019117, -0.0000019109,0.0000019092,0.0000019075,0.0000019058,0.0000019039, -0.0000019020,0.0000019000,0.0000018977,0.0000018946,0.0000018911, -0.0000018872,0.0000018822,0.0000018759,0.0000018691,0.0000018631, -0.0000018588,0.0000018554,0.0000018517,0.0000018472,0.0000018421, -0.0000018369,0.0000018317,0.0000018261,0.0000018200,0.0000018140, -0.0000018078,0.0000018011,0.0000017943,0.0000017883,0.0000017830, -0.0000017790,0.0000017775,0.0000017779,0.0000017804,0.0000017840, -0.0000017872,0.0000017886,0.0000017883,0.0000017859,0.0000017799, -0.0000017768,0.0000017887,0.0000018040,0.0000018135,0.0000018516, -0.0000018826,0.0000018767,0.0000018638,0.0000018608,0.0000018671, -0.0000018778,0.0000018833,0.0000018842,0.0000018840,0.0000018812, -0.0000018786,0.0000018813,0.0000018822,0.0000018754,0.0000018509, -0.0000018242,0.0000018042,0.0000017923,0.0000017867,0.0000017862, -0.0000017909,0.0000018003,0.0000018113,0.0000018211,0.0000018341, -0.0000018558,0.0000018593,0.0000018376,0.0000018104,0.0000017902, -0.0000017809,0.0000017777,0.0000017785,0.0000017792,0.0000017811, -0.0000017819,0.0000017820,0.0000017812,0.0000017798,0.0000017781, -0.0000017756,0.0000017720,0.0000017688,0.0000017672,0.0000017678, -0.0000017697,0.0000017723,0.0000017747,0.0000017772,0.0000017791, -0.0000017795,0.0000017782,0.0000017762,0.0000017737,0.0000017716, -0.0000017703,0.0000017702,0.0000017704,0.0000017707,0.0000017711, -0.0000017718,0.0000017732,0.0000017762,0.0000017807,0.0000017861, -0.0000017911,0.0000017945,0.0000017968,0.0000017983,0.0000017993, -0.0000018004,0.0000018012,0.0000018014,0.0000018011,0.0000017999, -0.0000017984,0.0000017968,0.0000017959,0.0000017956,0.0000017957, -0.0000017958,0.0000017958,0.0000017954,0.0000017945,0.0000017928, -0.0000017901,0.0000017863,0.0000017818,0.0000017775,0.0000017742, -0.0000017724,0.0000017718,0.0000017720,0.0000017720,0.0000017713, -0.0000017703,0.0000017697,0.0000017702,0.0000017715,0.0000017731, -0.0000017746,0.0000017747,0.0000017745,0.0000017731,0.0000017709, -0.0000017680,0.0000017647,0.0000017615,0.0000017593,0.0000017586, -0.0000017591,0.0000017603,0.0000017617,0.0000017635,0.0000017660, -0.0000017699,0.0000017749,0.0000017795,0.0000017825,0.0000017835, -0.0000017834,0.0000017830,0.0000017828,0.0000017824,0.0000017818, -0.0000017813,0.0000017812,0.0000017821,0.0000017842,0.0000017868, -0.0000017892,0.0000017916,0.0000017934,0.0000017949,0.0000017967, -0.0000017994,0.0000018029,0.0000018065,0.0000018094,0.0000018113, -0.0000018127,0.0000018139,0.0000018160,0.0000018187,0.0000018218, -0.0000018252,0.0000018280,0.0000018303,0.0000018322,0.0000018333, -0.0000018328,0.0000018313,0.0000018285,0.0000018256,0.0000018236, -0.0000018220,0.0000018194,0.0000018155,0.0000018107,0.0000018055, -0.0000018002,0.0000017949,0.0000017902,0.0000017769,0.0000017774, -0.0000017785,0.0000017793,0.0000017802,0.0000017819,0.0000017839, -0.0000017863,0.0000017885,0.0000017897,0.0000017903,0.0000017902, -0.0000017895,0.0000017879,0.0000017862,0.0000017843,0.0000017826, -0.0000017809,0.0000017797,0.0000017788,0.0000017781,0.0000017780, -0.0000017783,0.0000017791,0.0000017801,0.0000017807,0.0000017811, -0.0000017814,0.0000017823,0.0000017841,0.0000017862,0.0000017885, -0.0000017908,0.0000017928,0.0000017947,0.0000017969,0.0000017991, -0.0000018013,0.0000018039,0.0000018067,0.0000018097,0.0000018132, -0.0000018173,0.0000018217,0.0000018255,0.0000018283,0.0000018298, -0.0000018306,0.0000018310,0.0000018311,0.0000018305,0.0000018290, -0.0000018275,0.0000018257,0.0000018240,0.0000018227,0.0000018215, -0.0000018202,0.0000018200,0.0000018209,0.0000018229,0.0000018258, -0.0000018293,0.0000018329,0.0000018364,0.0000018395,0.0000018422, -0.0000018445,0.0000018466,0.0000018478,0.0000018487,0.0000018502, -0.0000018525,0.0000018555,0.0000018595,0.0000018646,0.0000018704, -0.0000018761,0.0000018804,0.0000018831,0.0000018832,0.0000018804, -0.0000018743,0.0000018659,0.0000018580,0.0000018528,0.0000018508, -0.0000018512,0.0000018523,0.0000018526,0.0000018515,0.0000018494, -0.0000018463,0.0000018428,0.0000018397,0.0000018374,0.0000018357, -0.0000018345,0.0000018331,0.0000018314,0.0000018290,0.0000018263, -0.0000018237,0.0000018216,0.0000018200,0.0000018188,0.0000018180, -0.0000018175,0.0000018178,0.0000018181,0.0000018176,0.0000018161, -0.0000018131,0.0000018086,0.0000018029,0.0000017969,0.0000017915, -0.0000017865,0.0000017850,0.0000017849,0.0000017858,0.0000017895, -0.0000017954,0.0000018026,0.0000018097,0.0000018166,0.0000018230, -0.0000018239,0.0000018255,0.0000018230,0.0000018200,0.0000018192, -0.0000018199,0.0000018219,0.0000018246,0.0000018273,0.0000018294, -0.0000018310,0.0000018310,0.0000018309,0.0000018296,0.0000018266, -0.0000018223,0.0000018167,0.0000018101,0.0000018035,0.0000017973, -0.0000017917,0.0000017876,0.0000017846,0.0000017830,0.0000017817, -0.0000017821,0.0000017831,0.0000017842,0.0000017856,0.0000017871, -0.0000017886,0.0000017907,0.0000017930,0.0000017951,0.0000017973, -0.0000017988,0.0000017995,0.0000017999,0.0000018002,0.0000018014, -0.0000018027,0.0000018038,0.0000018049,0.0000018057,0.0000018064, -0.0000018069,0.0000018072,0.0000018074,0.0000018076,0.0000018072, -0.0000018067,0.0000018057,0.0000018046,0.0000018037,0.0000018030, -0.0000018028,0.0000018026,0.0000018023,0.0000018014,0.0000018003, -0.0000017997,0.0000018000,0.0000018009,0.0000018023,0.0000018038, -0.0000018051,0.0000018059,0.0000018061,0.0000018062,0.0000018068, -0.0000018077,0.0000018087,0.0000018099,0.0000018118,0.0000018138, -0.0000018150,0.0000018155,0.0000018154,0.0000018142,0.0000018124, -0.0000018101,0.0000018078,0.0000018055,0.0000018031,0.0000018002, -0.0000017972,0.0000017938,0.0000017898,0.0000017851,0.0000017800, -0.0000017751,0.0000017714,0.0000017695,0.0000017694,0.0000017709, -0.0000017730,0.0000017750,0.0000017766,0.0000017775,0.0000017773, -0.0000017763,0.0000017739,0.0000017704,0.0000017664,0.0000017625, -0.0000017593,0.0000017572,0.0000017567,0.0000017573,0.0000017584, -0.0000017593,0.0000017595,0.0000017589,0.0000017573,0.0000017554, -0.0000017539,0.0000017532,0.0000017532,0.0000017540,0.0000017549, -0.0000017556,0.0000017573,0.0000017600,0.0000017637,0.0000017682, -0.0000017732,0.0000017766,0.0000017777,0.0000017768,0.0000017739, -0.0000017701,0.0000017658,0.0000017620,0.0000017598,0.0000017586, -0.0000017579,0.0000017576,0.0000017579,0.0000017583,0.0000017584, -0.0000017584,0.0000017580,0.0000017572,0.0000017556,0.0000017538, -0.0000017524,0.0000017516,0.0000017510,0.0000017505,0.0000017500, -0.0000017494,0.0000017486,0.0000017469,0.0000017430,0.0000017373, -0.0000017328,0.0000017300,0.0000017296,0.0000017310,0.0000017335, -0.0000017365,0.0000017404,0.0000017453,0.0000017507,0.0000017554, -0.0000017587,0.0000017607,0.0000017625,0.0000017652,0.0000017685, -0.0000017716,0.0000017739,0.0000017746,0.0000017739,0.0000017709, -0.0000017679,0.0000017647,0.0000017609,0.0000017576,0.0000017548, -0.0000017522,0.0000017498,0.0000017478,0.0000017466,0.0000017467, -0.0000017477,0.0000017493,0.0000017515,0.0000017537,0.0000017552, -0.0000017561,0.0000017565,0.0000017566,0.0000017566,0.0000017567, -0.0000017573,0.0000017580,0.0000017590,0.0000017601,0.0000017612, -0.0000017623,0.0000017633,0.0000017642,0.0000017650,0.0000017657, -0.0000017664,0.0000017675,0.0000017696,0.0000017723,0.0000017755, -0.0000017787,0.0000017813,0.0000017830,0.0000017815,0.0000017817, -0.0000017791,0.0000017762,0.0000017723,0.0000017685,0.0000017646, -0.0000017614,0.0000017596,0.0000017576,0.0000017559,0.0000017544, -0.0000017526,0.0000017516,0.0000017521,0.0000017543,0.0000017568, -0.0000017583,0.0000017590,0.0000017599,0.0000017617,0.0000017644, -0.0000017675,0.0000017698,0.0000017704,0.0000017697,0.0000017691, -0.0000017695,0.0000017724,0.0000017770,0.0000017823,0.0000017878, -0.0000017938,0.0000017999,0.0000018054,0.0000018098,0.0000018126, -0.0000018140,0.0000018145,0.0000018151,0.0000018171,0.0000018211, -0.0000018258,0.0000018302,0.0000018333,0.0000018351,0.0000018368, -0.0000018395,0.0000018438,0.0000018492,0.0000018548,0.0000018599, -0.0000018640,0.0000018669,0.0000018688,0.0000018700,0.0000018707, -0.0000018712,0.0000018718,0.0000018726,0.0000018744,0.0000018775, -0.0000018810,0.0000018842,0.0000018867,0.0000018888,0.0000018901, -0.0000018910,0.0000018911,0.0000018912,0.0000018900,0.0000018886, -0.0000018867,0.0000018838,0.0000018807,0.0000018782,0.0000018753, -0.0000018719,0.0000018682,0.0000018649,0.0000018615,0.0000018579, -0.0000018543,0.0000018515,0.0000018493,0.0000018471,0.0000018447, -0.0000018424,0.0000018403,0.0000018385,0.0000018370,0.0000018360, -0.0000018355,0.0000018351,0.0000018351,0.0000018357,0.0000018366, -0.0000018370,0.0000018372,0.0000018372,0.0000018375,0.0000018381, -0.0000018386,0.0000018394,0.0000018402,0.0000018407,0.0000018416, -0.0000018438,0.0000018465,0.0000018485,0.0000018497,0.0000018500, -0.0000018501,0.0000018498,0.0000018485,0.0000018469,0.0000018456, -0.0000018450,0.0000018437,0.0000018439,0.0000018442,0.0000018457, -0.0000018473,0.0000018497,0.0000018528,0.0000018559,0.0000018592, -0.0000018618,0.0000018632,0.0000018633,0.0000018627,0.0000018627, -0.0000018605,0.0000018577,0.0000018544,0.0000018501,0.0000018461, -0.0000018430,0.0000018402,0.0000018389,0.0000018388,0.0000018394, -0.0000018416,0.0000018445,0.0000018467,0.0000018476,0.0000018479, -0.0000018481,0.0000018471,0.0000018438,0.0000018401,0.0000018367, -0.0000018329,0.0000018290,0.0000018255,0.0000018225,0.0000018195, -0.0000018162,0.0000018132,0.0000018107,0.0000018082,0.0000018055, -0.0000018025,0.0000017994,0.0000017971,0.0000017950,0.0000017935, -0.0000017922,0.0000017909,0.0000017892,0.0000017874,0.0000017853, -0.0000017830,0.0000017805,0.0000017781,0.0000017759,0.0000017738, -0.0000017729,0.0000017723,0.0000017714,0.0000017697,0.0000017681, -0.0000017650,0.0000017631,0.0000017620,0.0000017605,0.0000017589, -0.0000017580,0.0000017557,0.0000017521,0.0000017469,0.0000017416, -0.0000017380,0.0000017354,0.0000017351,0.0000017364,0.0000017392, -0.0000017428,0.0000017469,0.0000017514,0.0000017557,0.0000017579, -0.0000017599,0.0000017614,0.0000017610,0.0000017596,0.0000017573, -0.0000017552,0.0000017530,0.0000017504,0.0000017478,0.0000017448, -0.0000017434,0.0000017435,0.0000017448,0.0000017466,0.0000017495, -0.0000017527,0.0000017553,0.0000017576,0.0000017597,0.0000017613, -0.0000017619,0.0000017621,0.0000017611,0.0000017586,0.0000017549, -0.0000017506,0.0000017481,0.0000017463,0.0000017442,0.0000017427, -0.0000017415,0.0000017417,0.0000017443,0.0000017461,0.0000017479, -0.0000017496,0.0000017511,0.0000017516,0.0000017516,0.0000017512, -0.0000017512,0.0000017510,0.0000017518,0.0000017530,0.0000017548, -0.0000017565,0.0000017590,0.0000017605,0.0000017613,0.0000017617, -0.0000017622,0.0000017616,0.0000017608,0.0000017626,0.0000017658, -0.0000017693,0.0000017730,0.0000017763,0.0000017786,0.0000017798, -0.0000017809,0.0000017824,0.0000017830,0.0000017818,0.0000017807, -0.0000017805,0.0000017797,0.0000017797,0.0000017822,0.0000017849, -0.0000017870,0.0000017870,0.0000017853,0.0000017823,0.0000017780, -0.0000017743,0.0000017718,0.0000017701,0.0000017681,0.0000017658, -0.0000017641,0.0000017638,0.0000017654,0.0000017689,0.0000017731, -0.0000017765,0.0000017775,0.0000017776,0.0000017774,0.0000017770, -0.0000017762,0.0000017750,0.0000017739,0.0000017727,0.0000017708, -0.0000017685,0.0000017650,0.0000017601,0.0000017560,0.0000017532, -0.0000017516,0.0000017514,0.0000017522,0.0000017544,0.0000017572, -0.0000017595,0.0000017629,0.0000017660,0.0000017679,0.0000017690, -0.0000017688,0.0000017679,0.0000017665,0.0000017664,0.0000017686, -0.0000017725,0.0000017758,0.0000017762,0.0000017742,0.0000017704, -0.0000017663,0.0000017629,0.0000017617,0.0000017609,0.0000017597, -0.0000017591,0.0000017588,0.0000017599,0.0000017626,0.0000017658, -0.0000017728,0.0000017845,0.0000017980,0.0000018130,0.0000018303, -0.0000018485,0.0000018652,0.0000018803,0.0000018940,0.0000019061, -0.0000019164,0.0000019248,0.0000019314,0.0000019356,0.0000019382, -0.0000019393,0.0000019390,0.0000019383,0.0000019379,0.0000019375, -0.0000019370,0.0000019362,0.0000019353,0.0000019361,0.0000019372, -0.0000019372,0.0000019361,0.0000019339,0.0000019312,0.0000019281, -0.0000019247,0.0000019208,0.0000019168,0.0000019132,0.0000019103, -0.0000019080,0.0000019064,0.0000019051,0.0000019042,0.0000019036, -0.0000019022,0.0000019005,0.0000018996,0.0000019000,0.0000019009, -0.0000019021,0.0000019032,0.0000019035,0.0000019027,0.0000019010, -0.0000018993,0.0000018984,0.0000018980,0.0000018977,0.0000018971, -0.0000018961,0.0000018948,0.0000018940,0.0000018938,0.0000018936, -0.0000018928,0.0000018919,0.0000018920,0.0000018932,0.0000018955, -0.0000018982,0.0000019007,0.0000019019,0.0000019018,0.0000019015, -0.0000019014,0.0000019004,0.0000018983,0.0000018946,0.0000018906, -0.0000018878,0.0000018873,0.0000018881,0.0000018888,0.0000018881, -0.0000018852,0.0000018795,0.0000018725,0.0000018668,0.0000018632, -0.0000018603,0.0000018582,0.0000018576,0.0000018576,0.0000018592, -0.0000018626,0.0000018669,0.0000018721,0.0000018772,0.0000018808, -0.0000018819,0.0000018819,0.0000018812,0.0000018814,0.0000018831, -0.0000018856,0.0000018873,0.0000018883,0.0000018888,0.0000018889, -0.0000018892,0.0000018902,0.0000018909,0.0000018900,0.0000018880, -0.0000018847,0.0000018836,0.0000018851,0.0000018886,0.0000018933, -0.0000018968,0.0000018946,0.0000018860,0.0000018745,0.0000018654, -0.0000018578,0.0000018496,0.0000018444,0.0000018453,0.0000018536, -0.0000018640,0.0000018686,0.0000018660,0.0000018587,0.0000018490, -0.0000018401,0.0000018337,0.0000018307,0.0000018307,0.0000018324, -0.0000018358,0.0000018386,0.0000018388,0.0000018354,0.0000018306, -0.0000018268,0.0000018248,0.0000018245,0.0000018250,0.0000018257, -0.0000018255,0.0000018230,0.0000018179,0.0000018119,0.0000018074, -0.0000018060,0.0000018068,0.0000018090,0.0000018100,0.0000018100, -0.0000018114,0.0000018155,0.0000018208,0.0000018246,0.0000018253, -0.0000018247,0.0000018246,0.0000018253,0.0000018250,0.0000018219, -0.0000018163,0.0000018103,0.0000018060,0.0000018044,0.0000018048, -0.0000018062,0.0000018082,0.0000018106,0.0000018118,0.0000018112, -0.0000018087,0.0000018052,0.0000018023,0.0000018005,0.0000017989, -0.0000017972,0.0000017966,0.0000017983,0.0000018030,0.0000018108, -0.0000018209,0.0000018314,0.0000018410,0.0000018488,0.0000018547, -0.0000018585,0.0000018603,0.0000018612,0.0000018612,0.0000018607, -0.0000018607,0.0000018608,0.0000018609,0.0000018610,0.0000018603, -0.0000018585,0.0000018556,0.0000018521,0.0000018481,0.0000018438, -0.0000018397,0.0000018357,0.0000018320,0.0000018289,0.0000018267, -0.0000018262,0.0000018271,0.0000018283,0.0000018292,0.0000018296, -0.0000018293,0.0000018286,0.0000018282,0.0000018278,0.0000018262, -0.0000018219,0.0000018155,0.0000018085,0.0000018024,0.0000017974, -0.0000017934,0.0000017906,0.0000017894,0.0000017892,0.0000017894, -0.0000017894,0.0000017896,0.0000017911,0.0000017943,0.0000017988, -0.0000018022,0.0000018031,0.0000018011,0.0000017956,0.0000017881, -0.0000017798,0.0000017713,0.0000017655,0.0000017632,0.0000017618, -0.0000017600,0.0000017591,0.0000017613,0.0000017672,0.0000017746, -0.0000017808,0.0000017847,0.0000017857,0.0000017845,0.0000017819, -0.0000017789,0.0000017752,0.0000017706,0.0000017654,0.0000017614, -0.0000017588,0.0000017577,0.0000017574,0.0000017582,0.0000017607, -0.0000017654,0.0000017722,0.0000017798,0.0000017855,0.0000017883, -0.0000017892,0.0000017896,0.0000017914,0.0000017951,0.0000017991, -0.0000018031,0.0000018078,0.0000018133,0.0000018176,0.0000018217, -0.0000018243,0.0000018225,0.0000018214,0.0000018207,0.0000018191, -0.0000018176,0.0000018170,0.0000018160,0.0000018155,0.0000018156, -0.0000018159,0.0000018165,0.0000018169,0.0000018173,0.0000018181, -0.0000018200,0.0000018229,0.0000018265,0.0000018305,0.0000018346, -0.0000018378,0.0000018416,0.0000018464,0.0000018520,0.0000018579, -0.0000018642,0.0000018698,0.0000018741,0.0000018768,0.0000018782, -0.0000018780,0.0000018768,0.0000018760,0.0000018750,0.0000018731, -0.0000018704,0.0000018668,0.0000018619,0.0000018566,0.0000018516, -0.0000018466,0.0000018417,0.0000018372,0.0000018341,0.0000018327, -0.0000018320,0.0000018311,0.0000018296,0.0000018273,0.0000018239, -0.0000018194,0.0000018138,0.0000018077,0.0000018016,0.0000017953, -0.0000017891,0.0000017838,0.0000017804,0.0000017784,0.0000017782, -0.0000017807,0.0000017849,0.0000017891,0.0000017919,0.0000017928, -0.0000017923,0.0000017904,0.0000017868,0.0000017808,0.0000017790, -0.0000017893,0.0000017965,0.0000018216,0.0000018707,0.0000018830, -0.0000018696,0.0000018609,0.0000018634,0.0000018734,0.0000018804, -0.0000018821,0.0000018822,0.0000018802,0.0000018799,0.0000018849, -0.0000018808,0.0000018519,0.0000018152,0.0000017889,0.0000017760, -0.0000017704,0.0000017676,0.0000017657,0.0000017648,0.0000017645, -0.0000017681,0.0000017771,0.0000017886,0.0000018004,0.0000018178, -0.0000018426,0.0000018480,0.0000018399,0.0000018209,0.0000018001, -0.0000017868,0.0000017791,0.0000017773,0.0000017795,0.0000017810, -0.0000017818,0.0000017808,0.0000017789,0.0000017774,0.0000017770, -0.0000017765,0.0000017760,0.0000017748,0.0000017716,0.0000017686, -0.0000017667,0.0000017672,0.0000017685,0.0000017713,0.0000017745, -0.0000017781,0.0000017804,0.0000017799,0.0000017785,0.0000017762, -0.0000017741,0.0000017725,0.0000017718,0.0000017721,0.0000017731, -0.0000017760,0.0000017811,0.0000017872,0.0000017917,0.0000017943, -0.0000017950,0.0000017947,0.0000017947,0.0000017951,0.0000017961, -0.0000017966,0.0000017960,0.0000017937,0.0000017912,0.0000017896, -0.0000017894,0.0000017900,0.0000017912,0.0000017925,0.0000017938, -0.0000017947,0.0000017954,0.0000017957,0.0000017956,0.0000017948, -0.0000017930,0.0000017896,0.0000017846,0.0000017793,0.0000017749, -0.0000017724,0.0000017716,0.0000017715,0.0000017717,0.0000017713, -0.0000017703,0.0000017696,0.0000017696,0.0000017704,0.0000017717, -0.0000017731,0.0000017739,0.0000017739,0.0000017733,0.0000017713, -0.0000017677,0.0000017633,0.0000017595,0.0000017575,0.0000017562, -0.0000017559,0.0000017563,0.0000017573,0.0000017591,0.0000017624, -0.0000017671,0.0000017720,0.0000017752,0.0000017763,0.0000017764, -0.0000017768,0.0000017778,0.0000017789,0.0000017799,0.0000017809, -0.0000017822,0.0000017840,0.0000017860,0.0000017881,0.0000017905, -0.0000017927,0.0000017948,0.0000017970,0.0000017998,0.0000018028, -0.0000018052,0.0000018064,0.0000018076,0.0000018099,0.0000018137, -0.0000018183,0.0000018232,0.0000018273,0.0000018303,0.0000018320, -0.0000018326,0.0000018313,0.0000018283,0.0000018248,0.0000018222, -0.0000018205,0.0000018190,0.0000018164,0.0000018128,0.0000018086, -0.0000018031,0.0000017962,0.0000017892,0.0000017836,0.0000017798, -0.0000017777,0.0000017742,0.0000017754,0.0000017756,0.0000017757, -0.0000017767,0.0000017787,0.0000017806,0.0000017819,0.0000017823, -0.0000017820,0.0000017814,0.0000017803,0.0000017788,0.0000017773, -0.0000017764,0.0000017745,0.0000017736,0.0000017735,0.0000017739, -0.0000017741,0.0000017745,0.0000017752,0.0000017759,0.0000017765, -0.0000017768,0.0000017765,0.0000017758,0.0000017750,0.0000017750, -0.0000017756,0.0000017771,0.0000017795,0.0000017824,0.0000017856, -0.0000017892,0.0000017931,0.0000017967,0.0000018000,0.0000018028, -0.0000018054,0.0000018076,0.0000018102,0.0000018136,0.0000018172, -0.0000018205,0.0000018231,0.0000018247,0.0000018260,0.0000018268, -0.0000018270,0.0000018266,0.0000018262,0.0000018254,0.0000018240, -0.0000018226,0.0000018214,0.0000018199,0.0000018179,0.0000018167, -0.0000018170,0.0000018188,0.0000018214,0.0000018246,0.0000018283, -0.0000018317,0.0000018346,0.0000018369,0.0000018394,0.0000018419, -0.0000018441,0.0000018461,0.0000018484,0.0000018504,0.0000018522, -0.0000018540,0.0000018567,0.0000018607,0.0000018660,0.0000018719, -0.0000018774,0.0000018814,0.0000018830,0.0000018823,0.0000018786, -0.0000018719,0.0000018640,0.0000018571,0.0000018526,0.0000018504, -0.0000018496,0.0000018500,0.0000018506,0.0000018500,0.0000018480, -0.0000018456,0.0000018432,0.0000018412,0.0000018397,0.0000018383, -0.0000018370,0.0000018355,0.0000018336,0.0000018315,0.0000018296, -0.0000018280,0.0000018265,0.0000018252,0.0000018242,0.0000018241, -0.0000018245,0.0000018250,0.0000018253,0.0000018250,0.0000018234, -0.0000018202,0.0000018152,0.0000018090,0.0000018019,0.0000017951, -0.0000017896,0.0000017854,0.0000017856,0.0000017847,0.0000017872, -0.0000017916,0.0000017976,0.0000018044,0.0000018107,0.0000018174, -0.0000018218,0.0000018238,0.0000018229,0.0000018207,0.0000018195, -0.0000018195,0.0000018209,0.0000018231,0.0000018256,0.0000018276, -0.0000018291,0.0000018293,0.0000018287,0.0000018276,0.0000018254, -0.0000018218,0.0000018173,0.0000018117,0.0000018050,0.0000017986, -0.0000017926,0.0000017877,0.0000017845,0.0000017828,0.0000017825, -0.0000017820,0.0000017815,0.0000017817,0.0000017828,0.0000017845, -0.0000017867,0.0000017889,0.0000017910,0.0000017926,0.0000017937, -0.0000017946,0.0000017956,0.0000017971,0.0000017990,0.0000018010, -0.0000018031,0.0000018049,0.0000018067,0.0000018083,0.0000018097, -0.0000018110,0.0000018118,0.0000018122,0.0000018121,0.0000018115, -0.0000018104,0.0000018092,0.0000018078,0.0000018066,0.0000018058, -0.0000018049,0.0000018036,0.0000018019,0.0000018004,0.0000017988, -0.0000017979,0.0000017978,0.0000017985,0.0000017996,0.0000018005, -0.0000018009,0.0000018008,0.0000018008,0.0000018015,0.0000018029, -0.0000018049,0.0000018072,0.0000018099,0.0000018129,0.0000018154, -0.0000018169,0.0000018178,0.0000018186,0.0000018186,0.0000018182, -0.0000018173,0.0000018162,0.0000018150,0.0000018133,0.0000018106, -0.0000018065,0.0000018013,0.0000017952,0.0000017891,0.0000017841, -0.0000017813,0.0000017804,0.0000017806,0.0000017810,0.0000017812, -0.0000017809,0.0000017801,0.0000017790,0.0000017771,0.0000017742, -0.0000017705,0.0000017666,0.0000017631,0.0000017605,0.0000017586, -0.0000017576,0.0000017579,0.0000017589,0.0000017598,0.0000017606, -0.0000017613,0.0000017615,0.0000017613,0.0000017612,0.0000017611, -0.0000017610,0.0000017607,0.0000017601,0.0000017594,0.0000017590, -0.0000017587,0.0000017590,0.0000017607,0.0000017631,0.0000017663, -0.0000017699,0.0000017729,0.0000017745,0.0000017750,0.0000017744, -0.0000017727,0.0000017705,0.0000017677,0.0000017640,0.0000017601, -0.0000017570,0.0000017543,0.0000017522,0.0000017518,0.0000017525, -0.0000017538,0.0000017548,0.0000017562,0.0000017587,0.0000017609, -0.0000017621,0.0000017626,0.0000017629,0.0000017626,0.0000017609, -0.0000017581,0.0000017548,0.0000017518,0.0000017482,0.0000017431, -0.0000017368,0.0000017318,0.0000017291,0.0000017289,0.0000017313, -0.0000017348,0.0000017385,0.0000017424,0.0000017467,0.0000017509, -0.0000017538,0.0000017551,0.0000017552,0.0000017553,0.0000017563, -0.0000017587,0.0000017623,0.0000017660,0.0000017688,0.0000017706, -0.0000017713,0.0000017710,0.0000017695,0.0000017664,0.0000017636, -0.0000017634,0.0000017631,0.0000017635,0.0000017646,0.0000017660, -0.0000017669,0.0000017672,0.0000017677,0.0000017680,0.0000017679, -0.0000017673,0.0000017668,0.0000017666,0.0000017669,0.0000017677, -0.0000017690,0.0000017704,0.0000017720,0.0000017738,0.0000017757, -0.0000017775,0.0000017787,0.0000017797,0.0000017810,0.0000017823, -0.0000017835,0.0000017827,0.0000017830,0.0000017813,0.0000017791, -0.0000017759,0.0000017725,0.0000017694,0.0000017671,0.0000017656, -0.0000017646,0.0000017633,0.0000017622,0.0000017610,0.0000017598, -0.0000017590,0.0000017586,0.0000017582,0.0000017578,0.0000017580, -0.0000017592,0.0000017608,0.0000017623,0.0000017640,0.0000017666, -0.0000017695,0.0000017716,0.0000017725,0.0000017725,0.0000017720, -0.0000017724,0.0000017743,0.0000017775,0.0000017826,0.0000017888, -0.0000017956,0.0000018020,0.0000018078,0.0000018126,0.0000018159, -0.0000018175,0.0000018177,0.0000018178,0.0000018190,0.0000018222, -0.0000018267,0.0000018308,0.0000018337,0.0000018360,0.0000018388, -0.0000018431,0.0000018492,0.0000018564,0.0000018633,0.0000018688, -0.0000018724,0.0000018746,0.0000018755,0.0000018758,0.0000018760, -0.0000018767,0.0000018783,0.0000018807,0.0000018829,0.0000018846, -0.0000018858,0.0000018875,0.0000018890,0.0000018899,0.0000018904, -0.0000018907,0.0000018908,0.0000018902,0.0000018890,0.0000018878, -0.0000018862,0.0000018844,0.0000018822,0.0000018797,0.0000018769, -0.0000018743,0.0000018715,0.0000018681,0.0000018641,0.0000018604, -0.0000018571,0.0000018541,0.0000018515,0.0000018496,0.0000018483, -0.0000018468,0.0000018453,0.0000018436,0.0000018418,0.0000018403, -0.0000018387,0.0000018372,0.0000018357,0.0000018342,0.0000018335, -0.0000018328,0.0000018327,0.0000018326,0.0000018329,0.0000018332, -0.0000018337,0.0000018349,0.0000018365,0.0000018386,0.0000018408, -0.0000018415,0.0000018427,0.0000018444,0.0000018468,0.0000018488, -0.0000018504,0.0000018518,0.0000018529,0.0000018540,0.0000018545, -0.0000018537,0.0000018524,0.0000018507,0.0000018485,0.0000018464, -0.0000018453,0.0000018437,0.0000018444,0.0000018444,0.0000018461, -0.0000018485,0.0000018514,0.0000018545,0.0000018574,0.0000018596, -0.0000018618,0.0000018634,0.0000018638,0.0000018641,0.0000018640, -0.0000018615,0.0000018585,0.0000018554,0.0000018508,0.0000018460, -0.0000018421,0.0000018394,0.0000018388,0.0000018395,0.0000018409, -0.0000018432,0.0000018454,0.0000018474,0.0000018489,0.0000018498, -0.0000018505,0.0000018513,0.0000018514,0.0000018493,0.0000018463, -0.0000018426,0.0000018380,0.0000018321,0.0000018257,0.0000018203, -0.0000018163,0.0000018128,0.0000018101,0.0000018079,0.0000018063, -0.0000018048,0.0000018029,0.0000018011,0.0000017988,0.0000017963, -0.0000017939,0.0000017917,0.0000017898,0.0000017872,0.0000017842, -0.0000017811,0.0000017783,0.0000017774,0.0000017784,0.0000017804, -0.0000017820,0.0000017820,0.0000017807,0.0000017779,0.0000017756, -0.0000017723,0.0000017688,0.0000017655,0.0000017631,0.0000017596, -0.0000017549,0.0000017497,0.0000017459,0.0000017416,0.0000017384, -0.0000017376,0.0000017381,0.0000017397,0.0000017421,0.0000017463, -0.0000017514,0.0000017549,0.0000017585,0.0000017619,0.0000017643, -0.0000017646,0.0000017632,0.0000017618,0.0000017592,0.0000017557, -0.0000017525,0.0000017485,0.0000017455,0.0000017459,0.0000017482, -0.0000017505,0.0000017537,0.0000017569,0.0000017602,0.0000017630, -0.0000017655,0.0000017674,0.0000017684,0.0000017684,0.0000017667, -0.0000017645,0.0000017613,0.0000017574,0.0000017537,0.0000017508, -0.0000017483,0.0000017474,0.0000017469,0.0000017474,0.0000017479, -0.0000017489,0.0000017493,0.0000017500,0.0000017493,0.0000017483, -0.0000017471,0.0000017457,0.0000017450,0.0000017449,0.0000017452, -0.0000017469,0.0000017493,0.0000017528,0.0000017559,0.0000017579, -0.0000017590,0.0000017598,0.0000017593,0.0000017585,0.0000017594, -0.0000017614,0.0000017640,0.0000017672,0.0000017704,0.0000017725, -0.0000017737,0.0000017746,0.0000017755,0.0000017759,0.0000017744, -0.0000017727,0.0000017713,0.0000017698,0.0000017697,0.0000017721, -0.0000017751,0.0000017786,0.0000017801,0.0000017796,0.0000017773, -0.0000017732,0.0000017691,0.0000017664,0.0000017635,0.0000017609, -0.0000017590,0.0000017573,0.0000017558,0.0000017548,0.0000017555, -0.0000017584,0.0000017627,0.0000017663,0.0000017679,0.0000017685, -0.0000017686,0.0000017686,0.0000017683,0.0000017678,0.0000017674, -0.0000017673,0.0000017672,0.0000017663,0.0000017640,0.0000017610, -0.0000017583,0.0000017556,0.0000017532,0.0000017516,0.0000017509, -0.0000017524,0.0000017548,0.0000017579,0.0000017613,0.0000017643, -0.0000017664,0.0000017670,0.0000017667,0.0000017650,0.0000017640, -0.0000017651,0.0000017686,0.0000017736,0.0000017769,0.0000017775, -0.0000017773,0.0000017749,0.0000017723,0.0000017689,0.0000017655, -0.0000017619,0.0000017588,0.0000017584,0.0000017587,0.0000017583, -0.0000017573,0.0000017576,0.0000017601,0.0000017640,0.0000017693, -0.0000017772,0.0000017893,0.0000018026,0.0000018165,0.0000018315, -0.0000018469,0.0000018621,0.0000018774,0.0000018923,0.0000019048, -0.0000019149,0.0000019221,0.0000019263,0.0000019285,0.0000019301, -0.0000019308,0.0000019316,0.0000019323,0.0000019323,0.0000019335, -0.0000019348,0.0000019353,0.0000019344,0.0000019322,0.0000019294, -0.0000019264,0.0000019232,0.0000019194,0.0000019155,0.0000019117, -0.0000019082,0.0000019050,0.0000019020,0.0000018995,0.0000018981, -0.0000018976,0.0000018969,0.0000018956,0.0000018947,0.0000018948, -0.0000018953,0.0000018959,0.0000018962,0.0000018962,0.0000018959, -0.0000018954,0.0000018950,0.0000018947,0.0000018944,0.0000018937, -0.0000018922,0.0000018904,0.0000018883,0.0000018869,0.0000018866, -0.0000018866,0.0000018863,0.0000018863,0.0000018868,0.0000018881, -0.0000018903,0.0000018929,0.0000018950,0.0000018960,0.0000018959, -0.0000018950,0.0000018939,0.0000018937,0.0000018946,0.0000018944, -0.0000018947,0.0000018938,0.0000018925,0.0000018917,0.0000018914, -0.0000018915,0.0000018911,0.0000018896,0.0000018859,0.0000018801, -0.0000018740,0.0000018696,0.0000018674,0.0000018657,0.0000018630, -0.0000018602,0.0000018592,0.0000018596,0.0000018627,0.0000018667, -0.0000018699,0.0000018722,0.0000018741,0.0000018760,0.0000018791, -0.0000018835,0.0000018874,0.0000018902,0.0000018919,0.0000018926, -0.0000018925,0.0000018929,0.0000018944,0.0000018958,0.0000018959, -0.0000018947,0.0000018914,0.0000018882,0.0000018853,0.0000018835, -0.0000018847,0.0000018893,0.0000018947,0.0000018952,0.0000018879, -0.0000018765,0.0000018675,0.0000018626,0.0000018578,0.0000018525, -0.0000018498,0.0000018530,0.0000018603,0.0000018659,0.0000018645, -0.0000018590,0.0000018518,0.0000018436,0.0000018351,0.0000018281, -0.0000018251,0.0000018269,0.0000018324,0.0000018365,0.0000018368, -0.0000018336,0.0000018293,0.0000018263,0.0000018249,0.0000018243, -0.0000018245,0.0000018248,0.0000018236,0.0000018195,0.0000018135, -0.0000018077,0.0000018049,0.0000018052,0.0000018070,0.0000018080, -0.0000018077,0.0000018079,0.0000018106,0.0000018153,0.0000018193, -0.0000018208,0.0000018209,0.0000018213,0.0000018222,0.0000018224, -0.0000018204,0.0000018166,0.0000018118,0.0000018070,0.0000018041, -0.0000018038,0.0000018051,0.0000018071,0.0000018091,0.0000018096, -0.0000018084,0.0000018058,0.0000018034,0.0000018021,0.0000018009, -0.0000017995,0.0000017987,0.0000017999,0.0000018041,0.0000018115, -0.0000018211,0.0000018310,0.0000018396,0.0000018466,0.0000018523, -0.0000018566,0.0000018593,0.0000018603,0.0000018605,0.0000018610, -0.0000018622,0.0000018635,0.0000018648,0.0000018667,0.0000018673, -0.0000018661,0.0000018631,0.0000018590,0.0000018545,0.0000018496, -0.0000018446,0.0000018401,0.0000018365,0.0000018334,0.0000018305, -0.0000018284,0.0000018278,0.0000018284,0.0000018300,0.0000018316, -0.0000018326,0.0000018326,0.0000018314,0.0000018296,0.0000018281, -0.0000018265,0.0000018236,0.0000018193,0.0000018139,0.0000018078, -0.0000018016,0.0000017960,0.0000017918,0.0000017897,0.0000017894, -0.0000017898,0.0000017907,0.0000017913,0.0000017917,0.0000017929, -0.0000017950,0.0000017970,0.0000017993,0.0000018009,0.0000018023, -0.0000018009,0.0000017956,0.0000017865,0.0000017753,0.0000017659, -0.0000017617,0.0000017611,0.0000017608,0.0000017617,0.0000017650, -0.0000017706,0.0000017782,0.0000017851,0.0000017892,0.0000017899, -0.0000017879,0.0000017842,0.0000017796,0.0000017741,0.0000017676, -0.0000017609,0.0000017563,0.0000017546,0.0000017548,0.0000017564, -0.0000017593,0.0000017644,0.0000017713,0.0000017779,0.0000017831, -0.0000017866,0.0000017880,0.0000017884,0.0000017893,0.0000017907, -0.0000017920,0.0000017942,0.0000017977,0.0000018014,0.0000018057, -0.0000018100,0.0000018126,0.0000018144,0.0000018170,0.0000018189, -0.0000018193,0.0000018200,0.0000018186,0.0000018171,0.0000018159, -0.0000018156,0.0000018150,0.0000018142,0.0000018138,0.0000018130, -0.0000018122,0.0000018120,0.0000018126,0.0000018143,0.0000018167, -0.0000018187,0.0000018207,0.0000018232,0.0000018258,0.0000018288, -0.0000018323,0.0000018353,0.0000018389,0.0000018422,0.0000018446, -0.0000018466,0.0000018474,0.0000018481,0.0000018489,0.0000018489, -0.0000018481,0.0000018461,0.0000018427,0.0000018389,0.0000018348, -0.0000018309,0.0000018272,0.0000018240,0.0000018218,0.0000018206, -0.0000018202,0.0000018202,0.0000018198,0.0000018180,0.0000018147, -0.0000018098,0.0000018041,0.0000017985,0.0000017934,0.0000017885, -0.0000017841,0.0000017813,0.0000017801,0.0000017807,0.0000017837, -0.0000017885,0.0000017926,0.0000017948,0.0000017953,0.0000017948, -0.0000017928,0.0000017900,0.0000017860,0.0000017803,0.0000017811, -0.0000017878,0.0000017993,0.0000018448,0.0000018827,0.0000018779, -0.0000018635,0.0000018611,0.0000018684,0.0000018768,0.0000018796, -0.0000018798,0.0000018791,0.0000018824,0.0000018852,0.0000018697, -0.0000018274,0.0000017908,0.0000017748,0.0000017705,0.0000017686, -0.0000017668,0.0000017653,0.0000017646,0.0000017642,0.0000017638, -0.0000017634,0.0000017627,0.0000017655,0.0000017743,0.0000017845, -0.0000018016,0.0000018263,0.0000018416,0.0000018405,0.0000018311, -0.0000018140,0.0000017975,0.0000017860,0.0000017800,0.0000017788, -0.0000017795,0.0000017796,0.0000017777,0.0000017761,0.0000017757, -0.0000017758,0.0000017763,0.0000017768,0.0000017771,0.0000017767, -0.0000017746,0.0000017704,0.0000017660,0.0000017639,0.0000017651, -0.0000017682,0.0000017731,0.0000017784,0.0000017819,0.0000017827, -0.0000017813,0.0000017788,0.0000017767,0.0000017756,0.0000017762, -0.0000017797,0.0000017853,0.0000017904,0.0000017927,0.0000017927, -0.0000017912,0.0000017898,0.0000017896,0.0000017904,0.0000017913, -0.0000017908,0.0000017874,0.0000017840,0.0000017833,0.0000017854, -0.0000017892,0.0000017924,0.0000017949,0.0000017967,0.0000017978, -0.0000017984,0.0000017986,0.0000017985,0.0000017982,0.0000017975, -0.0000017965,0.0000017948,0.0000017918,0.0000017870,0.0000017812, -0.0000017762,0.0000017727,0.0000017712,0.0000017710,0.0000017714, -0.0000017716,0.0000017711,0.0000017700,0.0000017697,0.0000017701, -0.0000017712,0.0000017727,0.0000017739,0.0000017743,0.0000017735, -0.0000017707,0.0000017664,0.0000017620,0.0000017586,0.0000017561, -0.0000017548,0.0000017539,0.0000017539,0.0000017544,0.0000017561, -0.0000017598,0.0000017647,0.0000017687,0.0000017704,0.0000017707, -0.0000017717,0.0000017738,0.0000017759,0.0000017778,0.0000017798, -0.0000017816,0.0000017835,0.0000017856,0.0000017880,0.0000017901, -0.0000017917,0.0000017932,0.0000017951,0.0000017972,0.0000017995, -0.0000018026,0.0000018072,0.0000018130,0.0000018192,0.0000018241, -0.0000018278,0.0000018298,0.0000018301,0.0000018290,0.0000018256, -0.0000018219,0.0000018193,0.0000018177,0.0000018158,0.0000018130, -0.0000018098,0.0000018059,0.0000018003,0.0000017926,0.0000017837, -0.0000017763,0.0000017721,0.0000017710,0.0000017716,0.0000017728, -0.0000017723,0.0000017715,0.0000017710,0.0000017714,0.0000017722, -0.0000017726,0.0000017725,0.0000017723,0.0000017720,0.0000017729, -0.0000017737,0.0000017749,0.0000017763,0.0000017780,0.0000017798, -0.0000017821,0.0000017840,0.0000017858,0.0000017874,0.0000017888, -0.0000017895,0.0000017897,0.0000017894,0.0000017889,0.0000017882, -0.0000017872,0.0000017860,0.0000017849,0.0000017836,0.0000017825, -0.0000017816,0.0000017807,0.0000017806,0.0000017805,0.0000017811, -0.0000017827,0.0000017859,0.0000017901,0.0000017950,0.0000017997, -0.0000018041,0.0000018083,0.0000018122,0.0000018159,0.0000018192, -0.0000018216,0.0000018232,0.0000018247,0.0000018256,0.0000018261, -0.0000018261,0.0000018263,0.0000018261,0.0000018253,0.0000018243, -0.0000018233,0.0000018215,0.0000018189,0.0000018167,0.0000018163, -0.0000018178,0.0000018196,0.0000018223,0.0000018257,0.0000018290, -0.0000018313,0.0000018329,0.0000018347,0.0000018365,0.0000018385, -0.0000018410,0.0000018442,0.0000018475,0.0000018501,0.0000018520, -0.0000018535,0.0000018553,0.0000018581,0.0000018626,0.0000018679, -0.0000018733,0.0000018783,0.0000018816,0.0000018821,0.0000018811, -0.0000018766,0.0000018700,0.0000018625,0.0000018560,0.0000018516, -0.0000018496,0.0000018497,0.0000018490,0.0000018482,0.0000018469, -0.0000018463,0.0000018451,0.0000018444,0.0000018433,0.0000018423, -0.0000018414,0.0000018404,0.0000018391,0.0000018377,0.0000018364, -0.0000018348,0.0000018331,0.0000018316,0.0000018302,0.0000018291, -0.0000018288,0.0000018291,0.0000018300,0.0000018307,0.0000018306, -0.0000018291,0.0000018262,0.0000018216,0.0000018154,0.0000018079, -0.0000018005,0.0000017939,0.0000017884,0.0000017858,0.0000017854, -0.0000017852,0.0000017878,0.0000017923,0.0000017984,0.0000018052, -0.0000018122,0.0000018188,0.0000018211,0.0000018226,0.0000018213, -0.0000018200,0.0000018197,0.0000018207,0.0000018229,0.0000018253, -0.0000018271,0.0000018279,0.0000018276,0.0000018268,0.0000018255, -0.0000018234,0.0000018206,0.0000018167,0.0000018119,0.0000018064, -0.0000018005,0.0000017954,0.0000017915,0.0000017884,0.0000017859, -0.0000017838,0.0000017824,0.0000017828,0.0000017839,0.0000017853, -0.0000017870,0.0000017885,0.0000017896,0.0000017904,0.0000017910, -0.0000017921,0.0000017938,0.0000017960,0.0000017982,0.0000018005, -0.0000018029,0.0000018056,0.0000018084,0.0000018108,0.0000018132, -0.0000018153,0.0000018171,0.0000018181,0.0000018184,0.0000018180, -0.0000018172,0.0000018160,0.0000018143,0.0000018126,0.0000018109, -0.0000018089,0.0000018065,0.0000018039,0.0000018011,0.0000017987, -0.0000017967,0.0000017955,0.0000017951,0.0000017949,0.0000017945, -0.0000017939,0.0000017933,0.0000017931,0.0000017935,0.0000017944, -0.0000017957,0.0000017973,0.0000017993,0.0000018017,0.0000018042, -0.0000018068,0.0000018091,0.0000018109,0.0000018124,0.0000018141, -0.0000018156,0.0000018163,0.0000018167,0.0000018165,0.0000018152, -0.0000018123,0.0000018088,0.0000018049,0.0000018021,0.0000018009, -0.0000018007,0.0000018005,0.0000018000,0.0000017987,0.0000017968, -0.0000017945,0.0000017913,0.0000017869,0.0000017817,0.0000017759, -0.0000017698,0.0000017641,0.0000017601,0.0000017570,0.0000017546, -0.0000017539,0.0000017543,0.0000017556,0.0000017572,0.0000017591, -0.0000017609,0.0000017625,0.0000017650,0.0000017675,0.0000017689, -0.0000017689,0.0000017679,0.0000017661,0.0000017641,0.0000017622, -0.0000017612,0.0000017609,0.0000017601,0.0000017597,0.0000017602, -0.0000017620,0.0000017647,0.0000017681,0.0000017716,0.0000017749, -0.0000017777,0.0000017786,0.0000017777,0.0000017750,0.0000017705, -0.0000017646,0.0000017583,0.0000017532,0.0000017501,0.0000017478, -0.0000017471,0.0000017487,0.0000017521,0.0000017562,0.0000017607, -0.0000017644,0.0000017677,0.0000017708,0.0000017717,0.0000017709, -0.0000017685,0.0000017643,0.0000017592,0.0000017554,0.0000017523, -0.0000017488,0.0000017438,0.0000017383,0.0000017346,0.0000017334, -0.0000017337,0.0000017351,0.0000017374,0.0000017385,0.0000017402, -0.0000017422,0.0000017444,0.0000017467,0.0000017486,0.0000017502, -0.0000017513,0.0000017520,0.0000017528,0.0000017541,0.0000017554, -0.0000017570,0.0000017585,0.0000017600,0.0000017624,0.0000017655, -0.0000017688,0.0000017722,0.0000017753,0.0000017771,0.0000017779, -0.0000017784,0.0000017794,0.0000017799,0.0000017792,0.0000017798, -0.0000017803,0.0000017805,0.0000017810,0.0000017819,0.0000017829, -0.0000017837,0.0000017837,0.0000017844,0.0000017855,0.0000017855, -0.0000017845,0.0000017837,0.0000017823,0.0000017805,0.0000017778, -0.0000017746,0.0000017716,0.0000017693,0.0000017676,0.0000017661, -0.0000017654,0.0000017654,0.0000017651,0.0000017651,0.0000017650, -0.0000017648,0.0000017644,0.0000017642,0.0000017644,0.0000017647, -0.0000017644,0.0000017634,0.0000017629,0.0000017640,0.0000017666, -0.0000017696,0.0000017721,0.0000017734,0.0000017737,0.0000017734, -0.0000017734,0.0000017744,0.0000017767,0.0000017803,0.0000017846, -0.0000017896,0.0000017957,0.0000018026,0.0000018091,0.0000018140, -0.0000018169,0.0000018184,0.0000018188,0.0000018193,0.0000018206, -0.0000018229,0.0000018259,0.0000018291,0.0000018321,0.0000018345, -0.0000018380,0.0000018438,0.0000018517,0.0000018598,0.0000018669, -0.0000018721,0.0000018753,0.0000018766,0.0000018769,0.0000018771, -0.0000018778,0.0000018791,0.0000018810,0.0000018835,0.0000018858, -0.0000018873,0.0000018875,0.0000018875,0.0000018874,0.0000018872, -0.0000018868,0.0000018865,0.0000018863,0.0000018859,0.0000018853, -0.0000018848,0.0000018840,0.0000018828,0.0000018817,0.0000018803, -0.0000018788,0.0000018766,0.0000018733,0.0000018699,0.0000018661, -0.0000018619,0.0000018579,0.0000018548,0.0000018524,0.0000018507, -0.0000018495,0.0000018489,0.0000018487,0.0000018486,0.0000018484, -0.0000018479,0.0000018473,0.0000018467,0.0000018458,0.0000018445, -0.0000018428,0.0000018410,0.0000018390,0.0000018369,0.0000018346, -0.0000018325,0.0000018314,0.0000018295,0.0000018282,0.0000018278, -0.0000018287,0.0000018309,0.0000018346,0.0000018383,0.0000018415, -0.0000018448,0.0000018480,0.0000018500,0.0000018525,0.0000018537, -0.0000018541,0.0000018554,0.0000018569,0.0000018579,0.0000018582, -0.0000018578,0.0000018566,0.0000018548,0.0000018524,0.0000018495, -0.0000018472,0.0000018456,0.0000018447,0.0000018453,0.0000018466, -0.0000018487,0.0000018511,0.0000018534,0.0000018560,0.0000018587, -0.0000018612,0.0000018634,0.0000018650,0.0000018645,0.0000018658, -0.0000018656,0.0000018631,0.0000018594,0.0000018547,0.0000018498, -0.0000018454,0.0000018420,0.0000018408,0.0000018407,0.0000018410, -0.0000018418,0.0000018447,0.0000018474,0.0000018500,0.0000018523, -0.0000018539,0.0000018547,0.0000018547,0.0000018546,0.0000018547, -0.0000018514,0.0000018469,0.0000018424,0.0000018376,0.0000018317, -0.0000018253,0.0000018193,0.0000018144,0.0000018112,0.0000018089, -0.0000018079,0.0000018069,0.0000018051,0.0000018026,0.0000017992, -0.0000017958,0.0000017924,0.0000017896,0.0000017870,0.0000017847, -0.0000017828,0.0000017826,0.0000017840,0.0000017859,0.0000017874, -0.0000017888,0.0000017893,0.0000017879,0.0000017864,0.0000017837, -0.0000017801,0.0000017757,0.0000017709,0.0000017658,0.0000017606, -0.0000017553,0.0000017510,0.0000017468,0.0000017434,0.0000017415, -0.0000017413,0.0000017422,0.0000017444,0.0000017479,0.0000017506, -0.0000017545,0.0000017585,0.0000017622,0.0000017640,0.0000017643, -0.0000017648,0.0000017633,0.0000017607,0.0000017578,0.0000017534, -0.0000017490,0.0000017489,0.0000017512,0.0000017546,0.0000017576, -0.0000017610,0.0000017647,0.0000017674,0.0000017697,0.0000017709, -0.0000017713,0.0000017710,0.0000017682,0.0000017654,0.0000017625, -0.0000017598,0.0000017567,0.0000017533,0.0000017516,0.0000017518, -0.0000017528,0.0000017546,0.0000017563,0.0000017574,0.0000017589, -0.0000017582,0.0000017566,0.0000017548,0.0000017520,0.0000017493, -0.0000017467,0.0000017449,0.0000017436,0.0000017434,0.0000017446, -0.0000017474,0.0000017499,0.0000017523,0.0000017548,0.0000017562, -0.0000017561,0.0000017576,0.0000017601,0.0000017624,0.0000017653, -0.0000017679,0.0000017691,0.0000017694,0.0000017697,0.0000017701, -0.0000017705,0.0000017693,0.0000017678,0.0000017665,0.0000017654, -0.0000017659,0.0000017678,0.0000017706,0.0000017743,0.0000017763, -0.0000017768,0.0000017762,0.0000017736,0.0000017695,0.0000017663, -0.0000017630,0.0000017603,0.0000017585,0.0000017570,0.0000017556, -0.0000017545,0.0000017533,0.0000017526,0.0000017539,0.0000017571, -0.0000017599,0.0000017616,0.0000017621,0.0000017622,0.0000017621, -0.0000017624,0.0000017620,0.0000017616,0.0000017621,0.0000017628, -0.0000017633,0.0000017630,0.0000017624,0.0000017613,0.0000017595, -0.0000017575,0.0000017557,0.0000017549,0.0000017557,0.0000017572, -0.0000017590,0.0000017608,0.0000017630,0.0000017649,0.0000017656, -0.0000017645,0.0000017633,0.0000017630,0.0000017642,0.0000017666, -0.0000017697,0.0000017724,0.0000017752,0.0000017766,0.0000017779, -0.0000017782,0.0000017761,0.0000017729,0.0000017688,0.0000017661, -0.0000017639,0.0000017614,0.0000017591,0.0000017580,0.0000017596, -0.0000017609,0.0000017618,0.0000017623,0.0000017653,0.0000017692, -0.0000017741,0.0000017812,0.0000017899,0.0000018005,0.0000018138, -0.0000018294,0.0000018456,0.0000018616,0.0000018765,0.0000018886, -0.0000018982,0.0000019060,0.0000019116,0.0000019167,0.0000019211, -0.0000019241,0.0000019271,0.0000019296,0.0000019312,0.0000019315, -0.0000019303,0.0000019283,0.0000019255,0.0000019222,0.0000019185, -0.0000019146,0.0000019106,0.0000019069,0.0000019026,0.0000018984, -0.0000018943,0.0000018912,0.0000018896,0.0000018883,0.0000018863, -0.0000018845,0.0000018838,0.0000018841,0.0000018846,0.0000018847, -0.0000018839,0.0000018827,0.0000018818,0.0000018817,0.0000018823, -0.0000018832,0.0000018836,0.0000018832,0.0000018823,0.0000018808, -0.0000018795,0.0000018790,0.0000018790,0.0000018790,0.0000018796, -0.0000018803,0.0000018815,0.0000018835,0.0000018859,0.0000018877, -0.0000018889,0.0000018894,0.0000018888,0.0000018872,0.0000018859, -0.0000018855,0.0000018866,0.0000018892,0.0000018920,0.0000018934, -0.0000018946,0.0000018946,0.0000018937,0.0000018925,0.0000018916, -0.0000018906,0.0000018891,0.0000018869,0.0000018834,0.0000018791, -0.0000018752,0.0000018724,0.0000018699,0.0000018663,0.0000018622, -0.0000018606,0.0000018603,0.0000018615,0.0000018638,0.0000018665, -0.0000018687,0.0000018713,0.0000018748,0.0000018783,0.0000018817, -0.0000018846,0.0000018865,0.0000018875,0.0000018888,0.0000018908, -0.0000018933,0.0000018962,0.0000018986,0.0000018995,0.0000018989, -0.0000018967,0.0000018915,0.0000018866,0.0000018845,0.0000018853, -0.0000018890,0.0000018911,0.0000018887,0.0000018810,0.0000018728, -0.0000018683,0.0000018647,0.0000018582,0.0000018514,0.0000018507, -0.0000018564,0.0000018625,0.0000018640,0.0000018605,0.0000018542, -0.0000018456,0.0000018348,0.0000018259,0.0000018237,0.0000018265, -0.0000018318,0.0000018346,0.0000018338,0.0000018307,0.0000018282, -0.0000018268,0.0000018249,0.0000018235,0.0000018233,0.0000018228, -0.0000018207,0.0000018161,0.0000018102,0.0000018062,0.0000018055, -0.0000018069,0.0000018083,0.0000018085,0.0000018080,0.0000018091, -0.0000018129,0.0000018168,0.0000018190,0.0000018199,0.0000018207, -0.0000018212,0.0000018212,0.0000018200,0.0000018177,0.0000018138, -0.0000018088,0.0000018047,0.0000018030,0.0000018031,0.0000018046, -0.0000018068,0.0000018074,0.0000018064,0.0000018051,0.0000018046, -0.0000018040,0.0000018030,0.0000018023,0.0000018031,0.0000018069, -0.0000018138,0.0000018227,0.0000018320,0.0000018399,0.0000018459, -0.0000018500,0.0000018528,0.0000018549,0.0000018560,0.0000018568, -0.0000018576,0.0000018590,0.0000018608,0.0000018635,0.0000018670, -0.0000018696,0.0000018698,0.0000018684,0.0000018651,0.0000018610, -0.0000018563,0.0000018508,0.0000018451,0.0000018402,0.0000018367, -0.0000018344,0.0000018326,0.0000018311,0.0000018303,0.0000018307, -0.0000018315,0.0000018322,0.0000018323,0.0000018316,0.0000018291, -0.0000018255,0.0000018224,0.0000018205,0.0000018199,0.0000018194, -0.0000018172,0.0000018133,0.0000018082,0.0000018024,0.0000017967, -0.0000017926,0.0000017910,0.0000017917,0.0000017935,0.0000017948, -0.0000017952,0.0000017951,0.0000017942,0.0000017934,0.0000017941, -0.0000017968,0.0000018007,0.0000018040,0.0000018038,0.0000017994, -0.0000017895,0.0000017767,0.0000017668,0.0000017632,0.0000017635, -0.0000017643,0.0000017659,0.0000017696,0.0000017752,0.0000017824, -0.0000017894,0.0000017931,0.0000017926,0.0000017890,0.0000017837, -0.0000017773,0.0000017695,0.0000017614,0.0000017553,0.0000017526, -0.0000017527,0.0000017551,0.0000017592,0.0000017643,0.0000017692, -0.0000017737,0.0000017785,0.0000017825,0.0000017847,0.0000017860, -0.0000017864,0.0000017861,0.0000017865,0.0000017882,0.0000017897, -0.0000017913,0.0000017934,0.0000017955,0.0000017973,0.0000018003, -0.0000018056,0.0000018109,0.0000018168,0.0000018191,0.0000018201, -0.0000018206,0.0000018194,0.0000018176,0.0000018149,0.0000018134, -0.0000018118,0.0000018105,0.0000018094,0.0000018084,0.0000018077, -0.0000018078,0.0000018082,0.0000018088,0.0000018099,0.0000018108, -0.0000018124,0.0000018140,0.0000018148,0.0000018160,0.0000018177, -0.0000018200,0.0000018225,0.0000018250,0.0000018278,0.0000018303, -0.0000018325,0.0000018336,0.0000018333,0.0000018317,0.0000018298, -0.0000018276,0.0000018252,0.0000018224,0.0000018193,0.0000018165, -0.0000018144,0.0000018134,0.0000018132,0.0000018125,0.0000018106, -0.0000018073,0.0000018033,0.0000017994,0.0000017956,0.0000017915, -0.0000017876,0.0000017854,0.0000017850,0.0000017854,0.0000017871, -0.0000017906,0.0000017941,0.0000017959,0.0000017963,0.0000017959, -0.0000017944,0.0000017918,0.0000017886,0.0000017844,0.0000017805, -0.0000017825,0.0000017863,0.0000018151,0.0000018695,0.0000018840, -0.0000018699,0.0000018608,0.0000018637,0.0000018722,0.0000018768, -0.0000018776,0.0000018778,0.0000018842,0.0000018848,0.0000018572, -0.0000018088,0.0000017801,0.0000017732,0.0000017718,0.0000017711, -0.0000017697,0.0000017680,0.0000017663,0.0000017649,0.0000017643, -0.0000017642,0.0000017638,0.0000017622,0.0000017611,0.0000017621, -0.0000017668,0.0000017741,0.0000017867,0.0000018068,0.0000018267, -0.0000018361,0.0000018365,0.0000018284,0.0000018105,0.0000017918, -0.0000017799,0.0000017777,0.0000017782,0.0000017773,0.0000017762, -0.0000017763,0.0000017772,0.0000017779,0.0000017781,0.0000017780, -0.0000017778,0.0000017777,0.0000017772,0.0000017758,0.0000017713, -0.0000017656,0.0000017620,0.0000017626,0.0000017655,0.0000017718, -0.0000017786,0.0000017826,0.0000017837,0.0000017834,0.0000017817, -0.0000017812,0.0000017832,0.0000017872,0.0000017904,0.0000017914, -0.0000017902,0.0000017878,0.0000017862,0.0000017862,0.0000017872, -0.0000017874,0.0000017847,0.0000017805,0.0000017798,0.0000017832, -0.0000017882,0.0000017911,0.0000017919,0.0000017921,0.0000017927, -0.0000017940,0.0000017958,0.0000017978,0.0000017994,0.0000018005, -0.0000018007,0.0000018000,0.0000017987,0.0000017969,0.0000017940, -0.0000017893,0.0000017831,0.0000017771,0.0000017728,0.0000017709, -0.0000017706,0.0000017713,0.0000017722,0.0000017724,0.0000017717, -0.0000017712,0.0000017716,0.0000017725,0.0000017736,0.0000017741, -0.0000017739,0.0000017724,0.0000017690,0.0000017648,0.0000017610, -0.0000017582,0.0000017558,0.0000017539,0.0000017530,0.0000017528, -0.0000017534,0.0000017557,0.0000017601,0.0000017647,0.0000017676, -0.0000017691,0.0000017705,0.0000017724,0.0000017742,0.0000017756, -0.0000017765,0.0000017773,0.0000017785,0.0000017803,0.0000017824, -0.0000017844,0.0000017869,0.0000017904,0.0000017947,0.0000017998, -0.0000018059,0.0000018122,0.0000018177,0.0000018215,0.0000018238, -0.0000018245,0.0000018236,0.0000018216,0.0000018193,0.0000018171, -0.0000018152,0.0000018130,0.0000018101,0.0000018067,0.0000018027, -0.0000017973,0.0000017898,0.0000017809,0.0000017720,0.0000017663, -0.0000017651,0.0000017663,0.0000017687,0.0000017707,0.0000017720, -0.0000017683,0.0000017672,0.0000017666,0.0000017652,0.0000017632, -0.0000017621,0.0000017638,0.0000017668,0.0000017716,0.0000017767, -0.0000017822,0.0000017874,0.0000017919,0.0000017957,0.0000017986, -0.0000018008,0.0000018026,0.0000018044,0.0000018062,0.0000018080, -0.0000018095,0.0000018103,0.0000018102,0.0000018097,0.0000018087, -0.0000018069,0.0000018047,0.0000018022,0.0000017995,0.0000017970, -0.0000017949,0.0000017930,0.0000017907,0.0000017884,0.0000017856, -0.0000017832,0.0000017826,0.0000017829,0.0000017845,0.0000017870, -0.0000017914,0.0000017968,0.0000018025,0.0000018087,0.0000018144, -0.0000018186,0.0000018218,0.0000018242,0.0000018257,0.0000018263, -0.0000018276,0.0000018287,0.0000018293,0.0000018294,0.0000018292, -0.0000018286,0.0000018269,0.0000018246,0.0000018222,0.0000018209, -0.0000018209,0.0000018218,0.0000018236,0.0000018260,0.0000018283, -0.0000018295,0.0000018304,0.0000018314,0.0000018324,0.0000018336, -0.0000018355,0.0000018385,0.0000018424,0.0000018462,0.0000018493, -0.0000018516,0.0000018534,0.0000018549,0.0000018573,0.0000018603, -0.0000018640,0.0000018689,0.0000018744,0.0000018790,0.0000018812, -0.0000018810,0.0000018794,0.0000018748,0.0000018684,0.0000018621, -0.0000018571,0.0000018538,0.0000018508,0.0000018482,0.0000018465, -0.0000018457,0.0000018450,0.0000018450,0.0000018445,0.0000018438, -0.0000018439,0.0000018441,0.0000018438,0.0000018439,0.0000018439, -0.0000018438,0.0000018429,0.0000018415,0.0000018399,0.0000018379, -0.0000018359,0.0000018341,0.0000018330,0.0000018328,0.0000018330, -0.0000018337,0.0000018341,0.0000018334,0.0000018314,0.0000018277, -0.0000018220,0.0000018147,0.0000018063,0.0000017981,0.0000017917, -0.0000017865,0.0000017848,0.0000017837,0.0000017850,0.0000017881, -0.0000017934,0.0000017994,0.0000018059,0.0000018132,0.0000018194, -0.0000018212,0.0000018216,0.0000018212,0.0000018211,0.0000018220, -0.0000018234,0.0000018248,0.0000018262,0.0000018265,0.0000018262, -0.0000018256,0.0000018241,0.0000018218,0.0000018188,0.0000018156, -0.0000018122,0.0000018086,0.0000018052,0.0000018017,0.0000017982, -0.0000017947,0.0000017918,0.0000017899,0.0000017891,0.0000017892, -0.0000017898,0.0000017903,0.0000017907,0.0000017908,0.0000017911, -0.0000017918,0.0000017930,0.0000017948,0.0000017969,0.0000017989, -0.0000018012,0.0000018038,0.0000018069,0.0000018100,0.0000018130, -0.0000018160,0.0000018187,0.0000018212,0.0000018231,0.0000018239, -0.0000018240,0.0000018238,0.0000018230,0.0000018218,0.0000018202, -0.0000018178,0.0000018149,0.0000018116,0.0000018079,0.0000018040, -0.0000018000,0.0000017964,0.0000017938,0.0000017920,0.0000017904, -0.0000017891,0.0000017880,0.0000017876,0.0000017879,0.0000017884, -0.0000017889,0.0000017894,0.0000017900,0.0000017907,0.0000017916, -0.0000017930,0.0000017947,0.0000017966,0.0000017987,0.0000018013, -0.0000018041,0.0000018067,0.0000018089,0.0000018104,0.0000018109, -0.0000018103,0.0000018089,0.0000018079,0.0000018083,0.0000018101, -0.0000018124,0.0000018142,0.0000018154,0.0000018159,0.0000018155, -0.0000018141,0.0000018115,0.0000018073,0.0000018020,0.0000017957, -0.0000017886,0.0000017810,0.0000017734,0.0000017660,0.0000017591, -0.0000017542,0.0000017519,0.0000017511,0.0000017514,0.0000017525, -0.0000017542,0.0000017571,0.0000017611,0.0000017658,0.0000017697, -0.0000017725,0.0000017740,0.0000017738,0.0000017723,0.0000017695, -0.0000017668,0.0000017640,0.0000017612,0.0000017592,0.0000017580, -0.0000017577,0.0000017580,0.0000017593,0.0000017618,0.0000017657, -0.0000017711,0.0000017766,0.0000017807,0.0000017830,0.0000017828, -0.0000017807,0.0000017767,0.0000017713,0.0000017647,0.0000017582, -0.0000017531,0.0000017504,0.0000017481,0.0000017468,0.0000017478, -0.0000017513,0.0000017571,0.0000017636,0.0000017689,0.0000017721, -0.0000017741,0.0000017746,0.0000017733,0.0000017709,0.0000017670, -0.0000017626,0.0000017593,0.0000017573,0.0000017548,0.0000017500, -0.0000017439,0.0000017386,0.0000017353,0.0000017335,0.0000017326, -0.0000017329,0.0000017329,0.0000017348,0.0000017377,0.0000017411, -0.0000017442,0.0000017464,0.0000017477,0.0000017476,0.0000017465, -0.0000017450,0.0000017442,0.0000017452,0.0000017479,0.0000017519, -0.0000017563,0.0000017607,0.0000017647,0.0000017680,0.0000017707, -0.0000017727,0.0000017740,0.0000017748,0.0000017756,0.0000017762, -0.0000017770,0.0000017779,0.0000017787,0.0000017793,0.0000017796, -0.0000017794,0.0000017790,0.0000017782,0.0000017772,0.0000017757, -0.0000017741,0.0000017725,0.0000017710,0.0000017693,0.0000017677, -0.0000017670,0.0000017668,0.0000017663,0.0000017656,0.0000017654, -0.0000017658,0.0000017666,0.0000017677,0.0000017688,0.0000017697, -0.0000017703,0.0000017705,0.0000017706,0.0000017706,0.0000017705, -0.0000017703,0.0000017709,0.0000017725,0.0000017746,0.0000017760, -0.0000017760,0.0000017750,0.0000017743,0.0000017750,0.0000017773, -0.0000017810,0.0000017857,0.0000017910,0.0000017967,0.0000018026, -0.0000018083,0.0000018129,0.0000018158,0.0000018173,0.0000018180, -0.0000018187,0.0000018199,0.0000018225,0.0000018257,0.0000018282, -0.0000018298,0.0000018314,0.0000018347,0.0000018412,0.0000018501, -0.0000018590,0.0000018661,0.0000018706,0.0000018729,0.0000018741, -0.0000018741,0.0000018739,0.0000018743,0.0000018755,0.0000018778, -0.0000018801,0.0000018822,0.0000018839,0.0000018842,0.0000018836, -0.0000018824,0.0000018808,0.0000018793,0.0000018781,0.0000018779, -0.0000018779,0.0000018778,0.0000018779,0.0000018781,0.0000018782, -0.0000018783,0.0000018782,0.0000018775,0.0000018762,0.0000018741, -0.0000018711,0.0000018674,0.0000018630,0.0000018580,0.0000018532, -0.0000018495,0.0000018472,0.0000018460,0.0000018455,0.0000018456, -0.0000018466,0.0000018480,0.0000018494,0.0000018507,0.0000018518, -0.0000018526,0.0000018531,0.0000018532,0.0000018531,0.0000018526, -0.0000018519,0.0000018502,0.0000018478,0.0000018449,0.0000018415, -0.0000018376,0.0000018335,0.0000018294,0.0000018254,0.0000018233, -0.0000018224,0.0000018243,0.0000018276,0.0000018319,0.0000018370, -0.0000018426,0.0000018480,0.0000018532,0.0000018548,0.0000018571, -0.0000018578,0.0000018589,0.0000018595,0.0000018603,0.0000018608, -0.0000018613,0.0000018614,0.0000018606,0.0000018587,0.0000018560, -0.0000018529,0.0000018499,0.0000018476,0.0000018462,0.0000018462, -0.0000018459,0.0000018475,0.0000018499,0.0000018532,0.0000018564, -0.0000018596,0.0000018627,0.0000018650,0.0000018665,0.0000018680, -0.0000018688,0.0000018680,0.0000018658,0.0000018622,0.0000018580, -0.0000018538,0.0000018499,0.0000018467,0.0000018439,0.0000018429, -0.0000018436,0.0000018456,0.0000018475,0.0000018496,0.0000018521, -0.0000018536,0.0000018543,0.0000018548,0.0000018551,0.0000018545, -0.0000018537,0.0000018545,0.0000018547,0.0000018532,0.0000018500, -0.0000018447,0.0000018376,0.0000018300,0.0000018226,0.0000018169, -0.0000018129,0.0000018098,0.0000018082,0.0000018067,0.0000018042, -0.0000018007,0.0000017965,0.0000017920,0.0000017888,0.0000017868, -0.0000017866,0.0000017880,0.0000017899,0.0000017916,0.0000017929, -0.0000017938,0.0000017948,0.0000017946,0.0000017939,0.0000017921, -0.0000017888,0.0000017844,0.0000017794,0.0000017750,0.0000017693, -0.0000017638,0.0000017584,0.0000017534,0.0000017492,0.0000017469, -0.0000017457,0.0000017467,0.0000017482,0.0000017503,0.0000017540, -0.0000017573,0.0000017610,0.0000017629,0.0000017641,0.0000017650, -0.0000017645,0.0000017626,0.0000017597,0.0000017559,0.0000017522, -0.0000017512,0.0000017530,0.0000017562,0.0000017596,0.0000017634, -0.0000017672,0.0000017708,0.0000017735,0.0000017743,0.0000017742, -0.0000017733,0.0000017703,0.0000017669,0.0000017633,0.0000017599, -0.0000017559,0.0000017522,0.0000017511,0.0000017523,0.0000017547, -0.0000017574,0.0000017601,0.0000017628,0.0000017643,0.0000017646, -0.0000017635,0.0000017624,0.0000017599,0.0000017575,0.0000017553, -0.0000017534,0.0000017513,0.0000017502,0.0000017502,0.0000017504, -0.0000017509,0.0000017518,0.0000017522,0.0000017520,0.0000017527, -0.0000017555,0.0000017584,0.0000017620,0.0000017651,0.0000017668, -0.0000017675,0.0000017674,0.0000017672,0.0000017677,0.0000017672, -0.0000017659,0.0000017647,0.0000017634,0.0000017641,0.0000017657, -0.0000017682,0.0000017712,0.0000017726,0.0000017729,0.0000017726, -0.0000017710,0.0000017690,0.0000017663,0.0000017620,0.0000017590, -0.0000017572,0.0000017556,0.0000017550,0.0000017553,0.0000017553, -0.0000017547,0.0000017543,0.0000017548,0.0000017565,0.0000017589, -0.0000017603,0.0000017608,0.0000017602,0.0000017604,0.0000017605, -0.0000017599,0.0000017595,0.0000017596,0.0000017607,0.0000017621, -0.0000017629,0.0000017627,0.0000017617,0.0000017609,0.0000017600, -0.0000017589,0.0000017593,0.0000017599,0.0000017603,0.0000017605, -0.0000017615,0.0000017627,0.0000017640,0.0000017641,0.0000017641, -0.0000017646,0.0000017651,0.0000017654,0.0000017660,0.0000017668, -0.0000017690,0.0000017716,0.0000017745,0.0000017772,0.0000017782, -0.0000017791,0.0000017791,0.0000017783,0.0000017768,0.0000017741, -0.0000017710,0.0000017686,0.0000017663,0.0000017647,0.0000017634, -0.0000017627,0.0000017644,0.0000017649,0.0000017639,0.0000017628, -0.0000017637,0.0000017663,0.0000017709,0.0000017779,0.0000017871, -0.0000017985,0.0000018122,0.0000018256,0.0000018388,0.0000018513, -0.0000018629,0.0000018741,0.0000018844,0.0000018929,0.0000019004, -0.0000019062,0.0000019106,0.0000019134,0.0000019147,0.0000019152, -0.0000019147,0.0000019132,0.0000019115,0.0000019092,0.0000019058, -0.0000019014,0.0000018966,0.0000018915,0.0000018864,0.0000018824, -0.0000018802,0.0000018781,0.0000018751,0.0000018716,0.0000018691, -0.0000018679,0.0000018679,0.0000018679,0.0000018673,0.0000018656, -0.0000018636,0.0000018622,0.0000018619,0.0000018625,0.0000018633, -0.0000018639,0.0000018643,0.0000018641,0.0000018638,0.0000018640, -0.0000018643,0.0000018651,0.0000018666,0.0000018681,0.0000018702, -0.0000018726,0.0000018750,0.0000018766,0.0000018772,0.0000018775, -0.0000018777,0.0000018780,0.0000018782,0.0000018784,0.0000018789, -0.0000018804,0.0000018828,0.0000018860,0.0000018898,0.0000018932, -0.0000018942,0.0000018940,0.0000018925,0.0000018908,0.0000018899, -0.0000018896,0.0000018903,0.0000018903,0.0000018891,0.0000018859, -0.0000018810,0.0000018757,0.0000018710,0.0000018674,0.0000018646, -0.0000018624,0.0000018615,0.0000018619,0.0000018640,0.0000018674, -0.0000018707,0.0000018730,0.0000018743,0.0000018748,0.0000018745, -0.0000018743,0.0000018744,0.0000018756,0.0000018779,0.0000018824, -0.0000018883,0.0000018945,0.0000018993,0.0000019022,0.0000019026, -0.0000019003,0.0000018943,0.0000018869,0.0000018824,0.0000018835, -0.0000018885,0.0000018908,0.0000018863,0.0000018779,0.0000018723, -0.0000018691,0.0000018632,0.0000018547,0.0000018505,0.0000018537, -0.0000018604,0.0000018632,0.0000018610,0.0000018548,0.0000018461, -0.0000018363,0.0000018291,0.0000018276,0.0000018294,0.0000018320, -0.0000018323,0.0000018300,0.0000018278,0.0000018267,0.0000018249, -0.0000018225,0.0000018213,0.0000018213,0.0000018211,0.0000018186, -0.0000018136,0.0000018088,0.0000018072,0.0000018084,0.0000018105, -0.0000018110,0.0000018102,0.0000018107,0.0000018133,0.0000018165, -0.0000018187,0.0000018201,0.0000018212,0.0000018217,0.0000018212, -0.0000018198,0.0000018177,0.0000018145,0.0000018099,0.0000018051, -0.0000018022,0.0000018015,0.0000018020,0.0000018040,0.0000018058, -0.0000018067,0.0000018070,0.0000018070,0.0000018068,0.0000018070, -0.0000018087,0.0000018126,0.0000018193,0.0000018279,0.0000018370, -0.0000018448,0.0000018505,0.0000018542,0.0000018560,0.0000018568, -0.0000018571,0.0000018575,0.0000018582,0.0000018587,0.0000018590, -0.0000018602,0.0000018624,0.0000018656,0.0000018678,0.0000018685, -0.0000018676,0.0000018658,0.0000018629,0.0000018581,0.0000018516, -0.0000018449,0.0000018397,0.0000018364,0.0000018346,0.0000018336, -0.0000018329,0.0000018325,0.0000018324,0.0000018322,0.0000018313, -0.0000018300,0.0000018281,0.0000018249,0.0000018204,0.0000018156, -0.0000018129,0.0000018125,0.0000018135,0.0000018136,0.0000018127, -0.0000018108,0.0000018076,0.0000018038,0.0000018004,0.0000017979, -0.0000017974,0.0000017985,0.0000017993,0.0000017988,0.0000017975, -0.0000017960,0.0000017947,0.0000017939,0.0000017942,0.0000017968, -0.0000018012,0.0000018050,0.0000018062,0.0000018017,0.0000017908, -0.0000017775,0.0000017682,0.0000017662,0.0000017676,0.0000017692, -0.0000017710,0.0000017743,0.0000017801,0.0000017868,0.0000017925, -0.0000017943,0.0000017920,0.0000017864,0.0000017791,0.0000017712, -0.0000017631,0.0000017560,0.0000017523,0.0000017521,0.0000017546, -0.0000017590,0.0000017625,0.0000017653,0.0000017691,0.0000017735, -0.0000017771,0.0000017797,0.0000017813,0.0000017817,0.0000017821, -0.0000017828,0.0000017828,0.0000017826,0.0000017825,0.0000017822, -0.0000017819,0.0000017831,0.0000017865,0.0000017918,0.0000017985, -0.0000018050,0.0000018104,0.0000018161,0.0000018196,0.0000018210, -0.0000018204,0.0000018182,0.0000018152,0.0000018121,0.0000018094, -0.0000018081,0.0000018069,0.0000018055,0.0000018041,0.0000018034, -0.0000018034,0.0000018032,0.0000018032,0.0000018035,0.0000018033, -0.0000018030,0.0000018028,0.0000018033,0.0000018046,0.0000018061, -0.0000018092,0.0000018126,0.0000018158,0.0000018181,0.0000018188, -0.0000018186,0.0000018181,0.0000018175,0.0000018170,0.0000018161, -0.0000018142,0.0000018119,0.0000018101,0.0000018091,0.0000018083, -0.0000018071,0.0000018053,0.0000018029,0.0000018006,0.0000017988, -0.0000017966,0.0000017935,0.0000017912,0.0000017907,0.0000017909, -0.0000017909,0.0000017917,0.0000017939,0.0000017957,0.0000017963, -0.0000017962,0.0000017952,0.0000017930,0.0000017899,0.0000017867, -0.0000017830,0.0000017814,0.0000017823,0.0000017928,0.0000018429, -0.0000018836,0.0000018789,0.0000018636,0.0000018608,0.0000018670, -0.0000018732,0.0000018754,0.0000018767,0.0000018844,0.0000018848, -0.0000018481,0.0000017986,0.0000017769,0.0000017736,0.0000017736, -0.0000017736,0.0000017741,0.0000017747,0.0000017746,0.0000017732, -0.0000017710,0.0000017686,0.0000017670,0.0000017664,0.0000017658, -0.0000017639,0.0000017616,0.0000017612,0.0000017630,0.0000017677, -0.0000017753,0.0000017888,0.0000018076,0.0000018250,0.0000018352, -0.0000018326,0.0000018168,0.0000017921,0.0000017789,0.0000017778, -0.0000017779,0.0000017774,0.0000017780,0.0000017798,0.0000017817, -0.0000017829,0.0000017829,0.0000017820,0.0000017806,0.0000017788, -0.0000017769,0.0000017759,0.0000017744,0.0000017702,0.0000017638, -0.0000017591,0.0000017591,0.0000017633,0.0000017711,0.0000017785, -0.0000017830,0.0000017846,0.0000017849,0.0000017858,0.0000017881, -0.0000017902,0.0000017907,0.0000017893,0.0000017867,0.0000017849, -0.0000017846,0.0000017851,0.0000017846,0.0000017812,0.0000017779, -0.0000017789,0.0000017828,0.0000017839,0.0000017819,0.0000017798, -0.0000017796,0.0000017808,0.0000017824,0.0000017842,0.0000017863, -0.0000017891,0.0000017927,0.0000017965,0.0000017990,0.0000017999, -0.0000018000,0.0000017987,0.0000017960,0.0000017912,0.0000017847, -0.0000017781,0.0000017731,0.0000017707,0.0000017702,0.0000017712, -0.0000017730,0.0000017739,0.0000017737,0.0000017734,0.0000017734, -0.0000017735,0.0000017736,0.0000017732,0.0000017720,0.0000017695, -0.0000017661,0.0000017627,0.0000017599,0.0000017573,0.0000017552, -0.0000017536,0.0000017530,0.0000017530,0.0000017541,0.0000017570, -0.0000017610,0.0000017650,0.0000017682,0.0000017702,0.0000017717, -0.0000017727,0.0000017732,0.0000017733,0.0000017738,0.0000017755, -0.0000017784,0.0000017818,0.0000017861,0.0000017911,0.0000017963, -0.0000018015,0.0000018063,0.0000018104,0.0000018133,0.0000018151, -0.0000018156,0.0000018154,0.0000018147,0.0000018136,0.0000018116, -0.0000018089,0.0000018062,0.0000018031,0.0000017993,0.0000017944, -0.0000017881,0.0000017806,0.0000017725,0.0000017650,0.0000017617, -0.0000017621,0.0000017647,0.0000017677,0.0000017698,0.0000017704, -0.0000017699,0.0000017635,0.0000017611,0.0000017575,0.0000017552, -0.0000017562,0.0000017609,0.0000017690,0.0000017785,0.0000017873, -0.0000017944,0.0000018002,0.0000018048,0.0000018088,0.0000018117, -0.0000018138,0.0000018153,0.0000018163,0.0000018171,0.0000018179, -0.0000018188,0.0000018196,0.0000018208,0.0000018218,0.0000018225, -0.0000018231,0.0000018236,0.0000018239,0.0000018232,0.0000018217, -0.0000018198,0.0000018173,0.0000018138,0.0000018095,0.0000018051, -0.0000018008,0.0000017967,0.0000017926,0.0000017895,0.0000017859, -0.0000017843,0.0000017846,0.0000017862,0.0000017894,0.0000017940, -0.0000018000,0.0000018057,0.0000018111,0.0000018158,0.0000018198, -0.0000018230,0.0000018258,0.0000018282,0.0000018300,0.0000018307, -0.0000018310,0.0000018312,0.0000018304,0.0000018291,0.0000018277, -0.0000018264,0.0000018263,0.0000018271,0.0000018284,0.0000018297, -0.0000018303,0.0000018302,0.0000018299,0.0000018296,0.0000018296, -0.0000018302,0.0000018316,0.0000018344,0.0000018379,0.0000018415, -0.0000018452,0.0000018484,0.0000018510,0.0000018529,0.0000018547, -0.0000018564,0.0000018583,0.0000018610,0.0000018651,0.0000018700, -0.0000018748,0.0000018785,0.0000018803,0.0000018798,0.0000018778, -0.0000018739,0.0000018694,0.0000018650,0.0000018601,0.0000018553, -0.0000018514,0.0000018481,0.0000018459,0.0000018445,0.0000018435, -0.0000018423,0.0000018418,0.0000018414,0.0000018418,0.0000018429, -0.0000018444,0.0000018461,0.0000018470,0.0000018482,0.0000018487, -0.0000018486,0.0000018473,0.0000018450,0.0000018424,0.0000018401, -0.0000018381,0.0000018367,0.0000018358,0.0000018360,0.0000018366, -0.0000018369,0.0000018357,0.0000018327,0.0000018275,0.0000018202, -0.0000018116,0.0000018029,0.0000017955,0.0000017899,0.0000017854, -0.0000017853,0.0000017842,0.0000017853,0.0000017881,0.0000017929, -0.0000017990,0.0000018062,0.0000018142,0.0000018201,0.0000018222, -0.0000018232,0.0000018232,0.0000018230,0.0000018233,0.0000018240, -0.0000018250,0.0000018257,0.0000018259,0.0000018251,0.0000018234, -0.0000018213,0.0000018191,0.0000018170,0.0000018148,0.0000018127, -0.0000018103,0.0000018076,0.0000018048,0.0000018022,0.0000018000, -0.0000017987,0.0000017978,0.0000017968,0.0000017958,0.0000017948, -0.0000017939,0.0000017933,0.0000017936,0.0000017946,0.0000017962, -0.0000017979,0.0000017999,0.0000018024,0.0000018054,0.0000018090, -0.0000018125,0.0000018159,0.0000018194,0.0000018225,0.0000018253, -0.0000018277,0.0000018291,0.0000018298,0.0000018301,0.0000018299, -0.0000018291,0.0000018274,0.0000018250,0.0000018219,0.0000018179, -0.0000018133,0.0000018083,0.0000018029,0.0000017978,0.0000017939, -0.0000017911,0.0000017892,0.0000017878,0.0000017872,0.0000017875, -0.0000017884,0.0000017893,0.0000017899,0.0000017903,0.0000017906, -0.0000017909,0.0000017912,0.0000017917,0.0000017925,0.0000017937, -0.0000017951,0.0000017967,0.0000017982,0.0000017992,0.0000018000, -0.0000018000,0.0000017997,0.0000017994,0.0000018000,0.0000018022, -0.0000018057,0.0000018098,0.0000018135,0.0000018164,0.0000018182, -0.0000018196,0.0000018202,0.0000018195,0.0000018178,0.0000018153, -0.0000018118,0.0000018073,0.0000018020,0.0000017959,0.0000017890, -0.0000017815,0.0000017743,0.0000017680,0.0000017627,0.0000017583, -0.0000017552,0.0000017545,0.0000017547,0.0000017556,0.0000017585, -0.0000017619,0.0000017653,0.0000017686,0.0000017716,0.0000017735, -0.0000017743,0.0000017737,0.0000017717,0.0000017680,0.0000017635, -0.0000017597,0.0000017577,0.0000017572,0.0000017576,0.0000017590, -0.0000017611,0.0000017642,0.0000017679,0.0000017720,0.0000017762, -0.0000017800,0.0000017826,0.0000017836,0.0000017831,0.0000017807, -0.0000017771,0.0000017735,0.0000017692,0.0000017632,0.0000017562, -0.0000017503,0.0000017464,0.0000017447,0.0000017460,0.0000017504, -0.0000017565,0.0000017626,0.0000017679,0.0000017720,0.0000017757, -0.0000017781,0.0000017784,0.0000017767,0.0000017734,0.0000017693, -0.0000017656,0.0000017620,0.0000017574,0.0000017513,0.0000017440, -0.0000017375,0.0000017333,0.0000017321,0.0000017328,0.0000017343, -0.0000017366,0.0000017380,0.0000017387,0.0000017393,0.0000017391, -0.0000017390,0.0000017394,0.0000017410,0.0000017434,0.0000017462, -0.0000017490,0.0000017516,0.0000017536,0.0000017553,0.0000017568, -0.0000017580,0.0000017586,0.0000017589,0.0000017593,0.0000017599, -0.0000017608,0.0000017620,0.0000017633,0.0000017645,0.0000017654, -0.0000017660,0.0000017664,0.0000017666,0.0000017668,0.0000017669, -0.0000017670,0.0000017672,0.0000017672,0.0000017675,0.0000017673, -0.0000017671,0.0000017671,0.0000017672,0.0000017673,0.0000017677, -0.0000017688,0.0000017706,0.0000017724,0.0000017742,0.0000017757, -0.0000017766,0.0000017773,0.0000017778,0.0000017785,0.0000017793, -0.0000017797,0.0000017794,0.0000017786,0.0000017779,0.0000017770, -0.0000017765,0.0000017768,0.0000017784,0.0000017812,0.0000017853, -0.0000017903,0.0000017962,0.0000018022,0.0000018074,0.0000018111, -0.0000018137,0.0000018146,0.0000018154,0.0000018161,0.0000018180, -0.0000018207,0.0000018239,0.0000018266,0.0000018285,0.0000018298, -0.0000018325,0.0000018380,0.0000018459,0.0000018546,0.0000018614, -0.0000018655,0.0000018679,0.0000018679,0.0000018671,0.0000018663, -0.0000018660,0.0000018669,0.0000018686,0.0000018706,0.0000018725, -0.0000018738,0.0000018741,0.0000018735,0.0000018722,0.0000018704, -0.0000018685,0.0000018665,0.0000018654,0.0000018648,0.0000018647, -0.0000018657,0.0000018669,0.0000018679,0.0000018686,0.0000018691, -0.0000018696,0.0000018699,0.0000018697,0.0000018682,0.0000018652, -0.0000018611,0.0000018565,0.0000018521,0.0000018479,0.0000018439, -0.0000018409,0.0000018395,0.0000018392,0.0000018393,0.0000018404, -0.0000018426,0.0000018457,0.0000018487,0.0000018510,0.0000018530, -0.0000018551,0.0000018571,0.0000018586,0.0000018598,0.0000018606, -0.0000018607,0.0000018602,0.0000018590,0.0000018572,0.0000018546, -0.0000018511,0.0000018464,0.0000018408,0.0000018346,0.0000018293, -0.0000018248,0.0000018216,0.0000018215,0.0000018221,0.0000018250, -0.0000018298,0.0000018368,0.0000018441,0.0000018508,0.0000018555, -0.0000018596,0.0000018610,0.0000018624,0.0000018625,0.0000018628, -0.0000018629,0.0000018633,0.0000018638,0.0000018638,0.0000018633, -0.0000018618,0.0000018592,0.0000018556,0.0000018518,0.0000018480, -0.0000018452,0.0000018440,0.0000018443,0.0000018462,0.0000018496, -0.0000018542,0.0000018589,0.0000018629,0.0000018662,0.0000018689, -0.0000018703,0.0000018707,0.0000018701,0.0000018684,0.0000018662, -0.0000018638,0.0000018612,0.0000018581,0.0000018550,0.0000018530, -0.0000018512,0.0000018502,0.0000018493,0.0000018497,0.0000018510, -0.0000018521,0.0000018523,0.0000018517,0.0000018516,0.0000018515, -0.0000018528,0.0000018548,0.0000018564,0.0000018578,0.0000018592, -0.0000018596,0.0000018579,0.0000018542,0.0000018489,0.0000018424, -0.0000018349,0.0000018267,0.0000018194,0.0000018136,0.0000018092, -0.0000018060,0.0000018034,0.0000018002,0.0000017964,0.0000017925, -0.0000017895,0.0000017892,0.0000017907,0.0000017932,0.0000017962, -0.0000017988,0.0000018009,0.0000018022,0.0000018010,0.0000017989, -0.0000017969,0.0000017934,0.0000017899,0.0000017861,0.0000017822, -0.0000017780,0.0000017731,0.0000017678,0.0000017625,0.0000017586, -0.0000017550,0.0000017528,0.0000017517,0.0000017525,0.0000017545, -0.0000017570,0.0000017601,0.0000017625,0.0000017649,0.0000017665, -0.0000017670,0.0000017664,0.0000017642,0.0000017610,0.0000017573, -0.0000017564,0.0000017570,0.0000017587,0.0000017619,0.0000017648, -0.0000017681,0.0000017717,0.0000017747,0.0000017751,0.0000017743, -0.0000017729,0.0000017707,0.0000017674,0.0000017639,0.0000017601, -0.0000017552,0.0000017513,0.0000017502,0.0000017512,0.0000017543, -0.0000017583,0.0000017626,0.0000017656,0.0000017672,0.0000017679, -0.0000017678,0.0000017665,0.0000017644,0.0000017619,0.0000017600, -0.0000017587,0.0000017581,0.0000017586,0.0000017596,0.0000017595, -0.0000017596,0.0000017596,0.0000017584,0.0000017570,0.0000017576, -0.0000017587,0.0000017615,0.0000017640,0.0000017653,0.0000017658, -0.0000017655,0.0000017649,0.0000017645,0.0000017638,0.0000017630, -0.0000017619,0.0000017606,0.0000017612,0.0000017630,0.0000017654, -0.0000017679,0.0000017691,0.0000017692,0.0000017696,0.0000017680, -0.0000017663,0.0000017648,0.0000017612,0.0000017580,0.0000017551, -0.0000017532,0.0000017523,0.0000017523,0.0000017532,0.0000017546, -0.0000017555,0.0000017555,0.0000017555,0.0000017563,0.0000017574, -0.0000017584,0.0000017585,0.0000017591,0.0000017596,0.0000017593, -0.0000017588,0.0000017590,0.0000017593,0.0000017609,0.0000017627, -0.0000017635,0.0000017636,0.0000017631,0.0000017624,0.0000017619, -0.0000017614,0.0000017614,0.0000017614,0.0000017608,0.0000017604, -0.0000017601,0.0000017606,0.0000017611,0.0000017627,0.0000017644, -0.0000017659,0.0000017673,0.0000017673,0.0000017672,0.0000017685, -0.0000017702,0.0000017714,0.0000017736,0.0000017755,0.0000017775, -0.0000017798,0.0000017817,0.0000017845,0.0000017848,0.0000017839, -0.0000017828,0.0000017805,0.0000017777,0.0000017742,0.0000017709, -0.0000017688,0.0000017668,0.0000017642,0.0000017617,0.0000017609, -0.0000017603,0.0000017581,0.0000017584,0.0000017598,0.0000017627, -0.0000017677,0.0000017733,0.0000017802,0.0000017883,0.0000017979, -0.0000018098,0.0000018221,0.0000018339,0.0000018452,0.0000018548, -0.0000018626,0.0000018686,0.0000018728,0.0000018768,0.0000018796, -0.0000018818,0.0000018839,0.0000018858,0.0000018863,0.0000018849, -0.0000018819,0.0000018778,0.0000018731,0.0000018697,0.0000018682, -0.0000018670,0.0000018647,0.0000018611,0.0000018572,0.0000018541, -0.0000018522,0.0000018515,0.0000018512,0.0000018497,0.0000018471, -0.0000018444,0.0000018421,0.0000018407,0.0000018404,0.0000018409, -0.0000018413,0.0000018413,0.0000018414,0.0000018419,0.0000018426, -0.0000018437,0.0000018453,0.0000018475,0.0000018509,0.0000018549, -0.0000018587,0.0000018612,0.0000018620,0.0000018615,0.0000018607, -0.0000018604,0.0000018619,0.0000018647,0.0000018682,0.0000018718, -0.0000018748,0.0000018774,0.0000018801,0.0000018835,0.0000018873, -0.0000018899,0.0000018910,0.0000018901,0.0000018893,0.0000018888, -0.0000018895,0.0000018918,0.0000018945,0.0000018957,0.0000018943, -0.0000018897,0.0000018829,0.0000018761,0.0000018715,0.0000018694, -0.0000018687,0.0000018679,0.0000018674,0.0000018684,0.0000018690, -0.0000018694,0.0000018703,0.0000018708,0.0000018703,0.0000018693, -0.0000018681,0.0000018668,0.0000018657,0.0000018657,0.0000018680, -0.0000018737,0.0000018822,0.0000018913,0.0000018989,0.0000019034, -0.0000019043,0.0000019000,0.0000018922,0.0000018847,0.0000018830, -0.0000018869,0.0000018907,0.0000018887,0.0000018818,0.0000018759, -0.0000018722,0.0000018660,0.0000018569,0.0000018513,0.0000018523, -0.0000018582,0.0000018628,0.0000018617,0.0000018558,0.0000018480, -0.0000018407,0.0000018354,0.0000018328,0.0000018321,0.0000018307, -0.0000018278,0.0000018255,0.0000018248,0.0000018236,0.0000018214, -0.0000018198,0.0000018198,0.0000018205,0.0000018197,0.0000018163, -0.0000018122,0.0000018103,0.0000018110,0.0000018131,0.0000018140, -0.0000018135,0.0000018135,0.0000018147,0.0000018165,0.0000018184, -0.0000018203,0.0000018218,0.0000018225,0.0000018217,0.0000018195, -0.0000018169,0.0000018143,0.0000018109,0.0000018065,0.0000018030, -0.0000018014,0.0000018008,0.0000018021,0.0000018049,0.0000018075, -0.0000018087,0.0000018089,0.0000018093,0.0000018113,0.0000018158, -0.0000018230,0.0000018321,0.0000018413,0.0000018487,0.0000018541, -0.0000018576,0.0000018596,0.0000018603,0.0000018607,0.0000018616, -0.0000018630,0.0000018645,0.0000018645,0.0000018637,0.0000018631, -0.0000018627,0.0000018625,0.0000018629,0.0000018639,0.0000018651, -0.0000018657,0.0000018640,0.0000018591,0.0000018515,0.0000018439, -0.0000018384,0.0000018353,0.0000018342,0.0000018341,0.0000018338, -0.0000018333,0.0000018327,0.0000018314,0.0000018296,0.0000018279, -0.0000018261,0.0000018230,0.0000018184,0.0000018131,0.0000018076, -0.0000018038,0.0000018027,0.0000018039,0.0000018059,0.0000018070, -0.0000018074,0.0000018074,0.0000018068,0.0000018057,0.0000018051, -0.0000018046,0.0000018037,0.0000018022,0.0000018006,0.0000017995, -0.0000017981,0.0000017960,0.0000017955,0.0000017965,0.0000017993, -0.0000018035,0.0000018068,0.0000018072,0.0000018018,0.0000017899, -0.0000017770,0.0000017705,0.0000017706,0.0000017721,0.0000017738, -0.0000017757,0.0000017793,0.0000017842,0.0000017893,0.0000017923, -0.0000017910,0.0000017861,0.0000017797,0.0000017725,0.0000017644, -0.0000017571,0.0000017529,0.0000017523,0.0000017539,0.0000017563, -0.0000017587,0.0000017617,0.0000017651,0.0000017684,0.0000017711, -0.0000017731,0.0000017748,0.0000017766,0.0000017783,0.0000017786, -0.0000017779,0.0000017765,0.0000017743,0.0000017723,0.0000017718, -0.0000017727,0.0000017749,0.0000017792,0.0000017847,0.0000017898, -0.0000017957,0.0000018027,0.0000018090,0.0000018149,0.0000018184, -0.0000018193,0.0000018186,0.0000018159,0.0000018129,0.0000018100, -0.0000018067,0.0000018037,0.0000018013,0.0000017998,0.0000017989, -0.0000017984,0.0000017980,0.0000017974,0.0000017958,0.0000017944, -0.0000017935,0.0000017933,0.0000017933,0.0000017943,0.0000017965, -0.0000017990,0.0000018011,0.0000018023,0.0000018028,0.0000018033, -0.0000018037,0.0000018048,0.0000018060,0.0000018059,0.0000018051, -0.0000018046,0.0000018042,0.0000018038,0.0000018031,0.0000018023, -0.0000018013,0.0000018007,0.0000018003,0.0000017987,0.0000017960, -0.0000017946,0.0000017946,0.0000017940,0.0000017930,0.0000017934, -0.0000017949,0.0000017960,0.0000017962,0.0000017956,0.0000017937, -0.0000017910,0.0000017880,0.0000017853,0.0000017828,0.0000017821, -0.0000017825,0.0000018140,0.0000018709,0.0000018852,0.0000018706, -0.0000018606,0.0000018624,0.0000018691,0.0000018729,0.0000018757, -0.0000018841,0.0000018825,0.0000018429,0.0000017944,0.0000017759, -0.0000017745,0.0000017747,0.0000017757,0.0000017781,0.0000017808, -0.0000017828,0.0000017840,0.0000017839,0.0000017819,0.0000017783, -0.0000017745,0.0000017712,0.0000017692,0.0000017673,0.0000017646, -0.0000017614,0.0000017603,0.0000017614,0.0000017651,0.0000017694, -0.0000017764,0.0000017899,0.0000018115,0.0000018320,0.0000018342, -0.0000018129,0.0000017864,0.0000017782,0.0000017783,0.0000017783, -0.0000017787,0.0000017804,0.0000017826,0.0000017844,0.0000017860, -0.0000017873,0.0000017874,0.0000017856,0.0000017823,0.0000017782, -0.0000017750,0.0000017740,0.0000017730,0.0000017681,0.0000017603, -0.0000017556,0.0000017561,0.0000017616,0.0000017702,0.0000017777, -0.0000017829,0.0000017863,0.0000017887,0.0000017904,0.0000017908, -0.0000017901,0.0000017879,0.0000017854,0.0000017841,0.0000017837, -0.0000017828,0.0000017797,0.0000017771,0.0000017774,0.0000017787, -0.0000017778,0.0000017762,0.0000017764,0.0000017775,0.0000017788, -0.0000017801,0.0000017814,0.0000017824,0.0000017830,0.0000017837, -0.0000017855,0.0000017887,0.0000017931,0.0000017971,0.0000017989, -0.0000017990,0.0000017971,0.0000017924,0.0000017855,0.0000017783, -0.0000017729,0.0000017703,0.0000017699,0.0000017716,0.0000017739, -0.0000017753,0.0000017753,0.0000017748,0.0000017740,0.0000017731, -0.0000017719,0.0000017705,0.0000017687,0.0000017660,0.0000017627, -0.0000017597,0.0000017577,0.0000017563,0.0000017550,0.0000017538, -0.0000017532,0.0000017531,0.0000017537,0.0000017561,0.0000017601, -0.0000017643,0.0000017676,0.0000017697,0.0000017712,0.0000017723, -0.0000017734,0.0000017755,0.0000017787,0.0000017823,0.0000017863, -0.0000017907,0.0000017949,0.0000017987,0.0000018021,0.0000018050, -0.0000018068,0.0000018075,0.0000018075,0.0000018065,0.0000018050, -0.0000018027,0.0000017998,0.0000017967,0.0000017935,0.0000017899, -0.0000017858,0.0000017807,0.0000017745,0.0000017677,0.0000017617, -0.0000017596,0.0000017612,0.0000017652,0.0000017680,0.0000017689, -0.0000017686,0.0000017670,0.0000017651,0.0000017556,0.0000017510, -0.0000017508,0.0000017561,0.0000017658,0.0000017773,0.0000017881, -0.0000017965,0.0000018029,0.0000018076,0.0000018097,0.0000018114, -0.0000018128,0.0000018137,0.0000018143,0.0000018151,0.0000018162, -0.0000018173,0.0000018183,0.0000018190,0.0000018195,0.0000018201, -0.0000018208,0.0000018218,0.0000018229,0.0000018242,0.0000018255, -0.0000018270,0.0000018288,0.0000018304,0.0000018310,0.0000018301, -0.0000018280,0.0000018246,0.0000018202,0.0000018151,0.0000018103, -0.0000018057,0.0000018014,0.0000017971,0.0000017931,0.0000017898, -0.0000017873,0.0000017873,0.0000017886,0.0000017924,0.0000017968, -0.0000018012,0.0000018055,0.0000018100,0.0000018143,0.0000018181, -0.0000018213,0.0000018237,0.0000018257,0.0000018270,0.0000018275, -0.0000018278,0.0000018277,0.0000018274,0.0000018279,0.0000018302, -0.0000018319,0.0000018336,0.0000018339,0.0000018332,0.0000018319, -0.0000018303,0.0000018290,0.0000018290,0.0000018303,0.0000018325, -0.0000018351,0.0000018381,0.0000018415,0.0000018448,0.0000018476, -0.0000018499,0.0000018520,0.0000018538,0.0000018555,0.0000018570, -0.0000018589,0.0000018618,0.0000018659,0.0000018706,0.0000018747, -0.0000018778,0.0000018790,0.0000018780,0.0000018771,0.0000018751, -0.0000018720,0.0000018677,0.0000018637,0.0000018592,0.0000018548, -0.0000018512,0.0000018472,0.0000018443,0.0000018415,0.0000018395, -0.0000018386,0.0000018380,0.0000018385,0.0000018400,0.0000018421, -0.0000018448,0.0000018475,0.0000018503,0.0000018515,0.0000018521, -0.0000018518,0.0000018506,0.0000018486,0.0000018461,0.0000018437, -0.0000018419,0.0000018405,0.0000018396,0.0000018391,0.0000018390, -0.0000018380,0.0000018355,0.0000018310,0.0000018249,0.0000018178, -0.0000018101,0.0000018023,0.0000017954,0.0000017900,0.0000017860, -0.0000017852,0.0000017833,0.0000017843,0.0000017876,0.0000017928, -0.0000017997,0.0000018082,0.0000018169,0.0000018223,0.0000018234, -0.0000018237,0.0000018238,0.0000018237,0.0000018238,0.0000018241, -0.0000018245,0.0000018247,0.0000018245,0.0000018241,0.0000018235, -0.0000018229,0.0000018219,0.0000018207,0.0000018189,0.0000018166, -0.0000018141,0.0000018117,0.0000018096,0.0000018076,0.0000018056, -0.0000018037,0.0000018016,0.0000017995,0.0000017973,0.0000017954, -0.0000017951,0.0000017956,0.0000017964,0.0000017978,0.0000017999, -0.0000018026,0.0000018059,0.0000018097,0.0000018138,0.0000018179, -0.0000018219,0.0000018257,0.0000018289,0.0000018308,0.0000018324, -0.0000018337,0.0000018345,0.0000018344,0.0000018333,0.0000018312, -0.0000018282,0.0000018245,0.0000018200,0.0000018150,0.0000018093, -0.0000018035,0.0000017982,0.0000017940,0.0000017908,0.0000017887, -0.0000017878,0.0000017881,0.0000017890,0.0000017901,0.0000017914, -0.0000017924,0.0000017932,0.0000017938,0.0000017942,0.0000017946, -0.0000017948,0.0000017950,0.0000017954,0.0000017957,0.0000017956, -0.0000017952,0.0000017943,0.0000017931,0.0000017919,0.0000017912, -0.0000017918,0.0000017942,0.0000017979,0.0000018021,0.0000018061, -0.0000018097,0.0000018129,0.0000018156,0.0000018174,0.0000018180, -0.0000018176,0.0000018163,0.0000018141,0.0000018111,0.0000018075, -0.0000018032,0.0000017983,0.0000017935,0.0000017892,0.0000017857, -0.0000017827,0.0000017795,0.0000017758,0.0000017721,0.0000017684, -0.0000017654,0.0000017634,0.0000017631,0.0000017630,0.0000017628, -0.0000017635,0.0000017645,0.0000017666,0.0000017686,0.0000017700, -0.0000017701,0.0000017690,0.0000017670,0.0000017637,0.0000017606, -0.0000017594,0.0000017598,0.0000017614,0.0000017632,0.0000017653, -0.0000017678,0.0000017702,0.0000017725,0.0000017749,0.0000017775, -0.0000017800,0.0000017817,0.0000017834,0.0000017846,0.0000017842, -0.0000017818,0.0000017774,0.0000017712,0.0000017630,0.0000017539, -0.0000017464,0.0000017419,0.0000017409,0.0000017430,0.0000017475, -0.0000017537,0.0000017609,0.0000017686,0.0000017758,0.0000017814, -0.0000017845,0.0000017847,0.0000017814,0.0000017769,0.0000017711, -0.0000017659,0.0000017611,0.0000017562,0.0000017515,0.0000017476, -0.0000017441,0.0000017417,0.0000017403,0.0000017395,0.0000017387, -0.0000017373,0.0000017364,0.0000017369,0.0000017389,0.0000017412, -0.0000017435,0.0000017462,0.0000017487,0.0000017506,0.0000017523, -0.0000017532,0.0000017542,0.0000017544,0.0000017542,0.0000017539, -0.0000017537,0.0000017539,0.0000017546,0.0000017555,0.0000017567, -0.0000017582,0.0000017594,0.0000017605,0.0000017615,0.0000017626, -0.0000017636,0.0000017648,0.0000017665,0.0000017671,0.0000017681, -0.0000017691,0.0000017700,0.0000017710,0.0000017721,0.0000017729, -0.0000017736,0.0000017746,0.0000017762,0.0000017782,0.0000017802, -0.0000017824,0.0000017843,0.0000017857,0.0000017866,0.0000017865, -0.0000017857,0.0000017841,0.0000017819,0.0000017798,0.0000017787, -0.0000017787,0.0000017805,0.0000017830,0.0000017860,0.0000017898, -0.0000017947,0.0000018003,0.0000018055,0.0000018091,0.0000018111, -0.0000018120,0.0000018123,0.0000018128,0.0000018140,0.0000018166, -0.0000018202,0.0000018235,0.0000018259,0.0000018280,0.0000018310, -0.0000018362,0.0000018432,0.0000018507,0.0000018566,0.0000018601, -0.0000018618,0.0000018608,0.0000018588,0.0000018569,0.0000018559, -0.0000018560,0.0000018572,0.0000018587,0.0000018597,0.0000018600, -0.0000018599,0.0000018591,0.0000018575,0.0000018552,0.0000018524, -0.0000018496,0.0000018475,0.0000018466,0.0000018468,0.0000018477, -0.0000018487,0.0000018506,0.0000018527,0.0000018548,0.0000018568, -0.0000018584,0.0000018595,0.0000018601,0.0000018602,0.0000018590, -0.0000018564,0.0000018519,0.0000018471,0.0000018434,0.0000018407, -0.0000018381,0.0000018360,0.0000018351,0.0000018351,0.0000018357, -0.0000018369,0.0000018388,0.0000018413,0.0000018440,0.0000018467, -0.0000018498,0.0000018533,0.0000018569,0.0000018598,0.0000018620, -0.0000018640,0.0000018653,0.0000018658,0.0000018656,0.0000018652, -0.0000018642,0.0000018623,0.0000018591,0.0000018547,0.0000018494, -0.0000018436,0.0000018375,0.0000018318,0.0000018269,0.0000018236, -0.0000018216,0.0000018223,0.0000018245,0.0000018297,0.0000018365, -0.0000018443,0.0000018517,0.0000018578,0.0000018616,0.0000018642, -0.0000018657,0.0000018656,0.0000018654,0.0000018646,0.0000018645, -0.0000018647,0.0000018648,0.0000018643,0.0000018627,0.0000018600, -0.0000018558,0.0000018507,0.0000018469,0.0000018443,0.0000018432, -0.0000018449,0.0000018476,0.0000018521,0.0000018572,0.0000018627, -0.0000018675,0.0000018708,0.0000018726,0.0000018731,0.0000018723, -0.0000018702,0.0000018680,0.0000018659,0.0000018640,0.0000018633, -0.0000018630,0.0000018622,0.0000018609,0.0000018597,0.0000018585, -0.0000018573,0.0000018559,0.0000018538,0.0000018511,0.0000018488, -0.0000018479,0.0000018493,0.0000018521,0.0000018551,0.0000018579, -0.0000018605,0.0000018623,0.0000018630,0.0000018623,0.0000018605, -0.0000018586,0.0000018557,0.0000018510,0.0000018449,0.0000018374, -0.0000018283,0.0000018190,0.0000018115,0.0000018062,0.0000018018, -0.0000017989,0.0000017965,0.0000017941,0.0000017927,0.0000017928, -0.0000017949,0.0000017984,0.0000018029,0.0000018067,0.0000018081, -0.0000018079,0.0000018058,0.0000018018,0.0000017977,0.0000017932, -0.0000017895,0.0000017864,0.0000017834,0.0000017797,0.0000017755, -0.0000017724,0.0000017687,0.0000017650,0.0000017622,0.0000017604, -0.0000017594,0.0000017599,0.0000017607,0.0000017616,0.0000017639, -0.0000017662,0.0000017674,0.0000017683,0.0000017681,0.0000017666, -0.0000017649,0.0000017656,0.0000017665,0.0000017677,0.0000017694, -0.0000017716,0.0000017736,0.0000017761,0.0000017788,0.0000017791, -0.0000017776,0.0000017751,0.0000017732,0.0000017704,0.0000017668, -0.0000017630,0.0000017585,0.0000017550,0.0000017531,0.0000017537, -0.0000017561,0.0000017600,0.0000017645,0.0000017671,0.0000017686, -0.0000017695,0.0000017701,0.0000017692,0.0000017677,0.0000017658, -0.0000017639,0.0000017626,0.0000017621,0.0000017629,0.0000017645, -0.0000017647,0.0000017663,0.0000017667,0.0000017659,0.0000017656, -0.0000017661,0.0000017669,0.0000017690,0.0000017704,0.0000017705, -0.0000017705,0.0000017702,0.0000017694,0.0000017683,0.0000017679, -0.0000017668,0.0000017651,0.0000017656,0.0000017672,0.0000017693, -0.0000017717,0.0000017730,0.0000017733,0.0000017741,0.0000017732, -0.0000017722,0.0000017706,0.0000017677,0.0000017646,0.0000017612, -0.0000017581,0.0000017562,0.0000017549,0.0000017544,0.0000017551, -0.0000017568,0.0000017579,0.0000017580,0.0000017573,0.0000017568, -0.0000017568,0.0000017569,0.0000017576,0.0000017586,0.0000017593, -0.0000017595,0.0000017593,0.0000017597,0.0000017609,0.0000017628, -0.0000017649,0.0000017665,0.0000017673,0.0000017672,0.0000017677, -0.0000017668,0.0000017662,0.0000017661,0.0000017642,0.0000017615, -0.0000017591,0.0000017571,0.0000017558,0.0000017568,0.0000017587, -0.0000017616,0.0000017645,0.0000017665,0.0000017678,0.0000017705, -0.0000017724,0.0000017733,0.0000017746,0.0000017757,0.0000017769, -0.0000017783,0.0000017811,0.0000017845,0.0000017866,0.0000017881, -0.0000017895,0.0000017901,0.0000017895,0.0000017874,0.0000017841, -0.0000017810,0.0000017766,0.0000017719,0.0000017668,0.0000017636, -0.0000017608,0.0000017580,0.0000017571,0.0000017569,0.0000017570, -0.0000017563,0.0000017553,0.0000017548,0.0000017547,0.0000017568, -0.0000017626,0.0000017704,0.0000017789,0.0000017883,0.0000017970, -0.0000018049,0.0000018113,0.0000018160,0.0000018205,0.0000018245, -0.0000018286,0.0000018331,0.0000018388,0.0000018446,0.0000018489, -0.0000018515,0.0000018519,0.0000018507,0.0000018502,0.0000018509, -0.0000018523,0.0000018528,0.0000018514,0.0000018486,0.0000018447, -0.0000018411,0.0000018389,0.0000018376,0.0000018358,0.0000018328, -0.0000018290,0.0000018249,0.0000018212,0.0000018188,0.0000018176, -0.0000018171,0.0000018170,0.0000018172,0.0000018176,0.0000018184, -0.0000018194,0.0000018203,0.0000018218,0.0000018252,0.0000018300, -0.0000018352,0.0000018399,0.0000018427,0.0000018436,0.0000018428, -0.0000018415,0.0000018414,0.0000018429,0.0000018468,0.0000018526, -0.0000018592,0.0000018654,0.0000018702,0.0000018739,0.0000018769, -0.0000018800,0.0000018826,0.0000018840,0.0000018849,0.0000018858, -0.0000018871,0.0000018893,0.0000018924,0.0000018957,0.0000018972, -0.0000018970,0.0000018942,0.0000018892,0.0000018831,0.0000018783, -0.0000018761,0.0000018762,0.0000018774,0.0000018784,0.0000018769, -0.0000018735,0.0000018709,0.0000018688,0.0000018669,0.0000018658, -0.0000018655,0.0000018652,0.0000018646,0.0000018636,0.0000018626, -0.0000018624,0.0000018646,0.0000018701,0.0000018787,0.0000018884, -0.0000018965,0.0000019013,0.0000019021,0.0000018976,0.0000018901, -0.0000018847,0.0000018848,0.0000018884,0.0000018899,0.0000018854, -0.0000018780,0.0000018730,0.0000018690,0.0000018619,0.0000018544, -0.0000018525,0.0000018567,0.0000018613,0.0000018615,0.0000018571, -0.0000018511,0.0000018459,0.0000018419,0.0000018377,0.0000018326, -0.0000018273,0.0000018238,0.0000018225,0.0000018220,0.0000018207, -0.0000018194,0.0000018193,0.0000018202,0.0000018202,0.0000018179, -0.0000018149,0.0000018131,0.0000018134,0.0000018150,0.0000018160, -0.0000018159,0.0000018159,0.0000018163,0.0000018176,0.0000018189, -0.0000018202,0.0000018216,0.0000018225,0.0000018220,0.0000018199, -0.0000018173,0.0000018150,0.0000018123,0.0000018088,0.0000018055, -0.0000018029,0.0000018014,0.0000018016,0.0000018037,0.0000018064, -0.0000018082,0.0000018093,0.0000018110,0.0000018148,0.0000018219, -0.0000018313,0.0000018406,0.0000018479,0.0000018528,0.0000018558, -0.0000018570,0.0000018573,0.0000018576,0.0000018588,0.0000018614, -0.0000018646,0.0000018673,0.0000018684,0.0000018679,0.0000018665, -0.0000018636,0.0000018608,0.0000018596,0.0000018602,0.0000018625, -0.0000018639,0.0000018629,0.0000018580,0.0000018502,0.0000018424, -0.0000018368,0.0000018342,0.0000018339,0.0000018338,0.0000018333, -0.0000018328,0.0000018320,0.0000018307,0.0000018293,0.0000018282, -0.0000018268,0.0000018241,0.0000018192,0.0000018122,0.0000018046, -0.0000017986,0.0000017962,0.0000017960,0.0000017971,0.0000017995, -0.0000018028,0.0000018059,0.0000018076,0.0000018080,0.0000018076, -0.0000018073,0.0000018073,0.0000018069,0.0000018051,0.0000018025, -0.0000018002,0.0000017990,0.0000017989,0.0000017991,0.0000017996, -0.0000018009,0.0000018042,0.0000018074,0.0000018070,0.0000018003, -0.0000017887,0.0000017783,0.0000017737,0.0000017744,0.0000017767, -0.0000017788,0.0000017806,0.0000017826,0.0000017849,0.0000017865, -0.0000017858,0.0000017826,0.0000017778,0.0000017715,0.0000017648, -0.0000017592,0.0000017557,0.0000017538,0.0000017527,0.0000017530, -0.0000017554,0.0000017584,0.0000017611,0.0000017628,0.0000017640, -0.0000017657,0.0000017683,0.0000017712,0.0000017732,0.0000017741, -0.0000017737,0.0000017714,0.0000017683,0.0000017660,0.0000017647, -0.0000017644,0.0000017660,0.0000017692,0.0000017718,0.0000017747, -0.0000017798,0.0000017861,0.0000017933,0.0000018010,0.0000018074, -0.0000018133,0.0000018162,0.0000018180,0.0000018176,0.0000018150, -0.0000018105,0.0000018055,0.0000018011,0.0000017985,0.0000017964, -0.0000017949,0.0000017937,0.0000017918,0.0000017901,0.0000017882, -0.0000017866,0.0000017853,0.0000017843,0.0000017840,0.0000017841, -0.0000017850,0.0000017856,0.0000017862,0.0000017868,0.0000017881, -0.0000017909,0.0000017943,0.0000017966,0.0000017980,0.0000017989, -0.0000017995,0.0000018002,0.0000018010,0.0000018015,0.0000018015, -0.0000018018,0.0000018016,0.0000017995,0.0000017969,0.0000017963, -0.0000017962,0.0000017948,0.0000017936,0.0000017938,0.0000017947, -0.0000017955,0.0000017956,0.0000017939,0.0000017914,0.0000017888, -0.0000017863,0.0000017842,0.0000017828,0.0000017824,0.0000017929, -0.0000018466,0.0000018853,0.0000018798,0.0000018641,0.0000018602, -0.0000018649,0.0000018704,0.0000018743,0.0000018824,0.0000018815, -0.0000018426,0.0000017947,0.0000017775,0.0000017761,0.0000017774, -0.0000017814,0.0000017869,0.0000017912,0.0000017930,0.0000017933, -0.0000017927,0.0000017914,0.0000017907,0.0000017895,0.0000017857, -0.0000017808,0.0000017759,0.0000017714,0.0000017673,0.0000017632, -0.0000017599,0.0000017584,0.0000017594,0.0000017632,0.0000017675, -0.0000017719,0.0000017823,0.0000018073,0.0000018341,0.0000018330, -0.0000018009,0.0000017798,0.0000017781,0.0000017782,0.0000017785, -0.0000017798,0.0000017820,0.0000017848,0.0000017878,0.0000017916, -0.0000017952,0.0000017966,0.0000017945,0.0000017886,0.0000017812, -0.0000017752,0.0000017729,0.0000017723,0.0000017698,0.0000017631, -0.0000017545,0.0000017512,0.0000017528,0.0000017602,0.0000017698, -0.0000017790,0.0000017857,0.0000017895,0.0000017909,0.0000017912, -0.0000017900,0.0000017873,0.0000017843,0.0000017821,0.0000017810, -0.0000017789,0.0000017764,0.0000017760,0.0000017766,0.0000017762, -0.0000017750,0.0000017727,0.0000017693,0.0000017669,0.0000017671, -0.0000017698,0.0000017740,0.0000017784,0.0000017815,0.0000017828, -0.0000017831,0.0000017841,0.0000017870,0.0000017915,0.0000017955, -0.0000017968,0.0000017959,0.0000017916,0.0000017848,0.0000017779, -0.0000017727,0.0000017703,0.0000017702,0.0000017720,0.0000017746, -0.0000017761,0.0000017761,0.0000017749,0.0000017730,0.0000017711, -0.0000017692,0.0000017673,0.0000017650,0.0000017622,0.0000017595, -0.0000017576,0.0000017565,0.0000017555,0.0000017541,0.0000017528, -0.0000017516,0.0000017514,0.0000017520,0.0000017539,0.0000017567, -0.0000017601,0.0000017636,0.0000017666,0.0000017690,0.0000017722, -0.0000017760,0.0000017801,0.0000017839,0.0000017874,0.0000017906, -0.0000017931,0.0000017948,0.0000017957,0.0000017959,0.0000017952, -0.0000017942,0.0000017926,0.0000017905,0.0000017882,0.0000017860, -0.0000017842,0.0000017820,0.0000017792,0.0000017754,0.0000017705, -0.0000017647,0.0000017602,0.0000017590,0.0000017613,0.0000017661, -0.0000017694,0.0000017697,0.0000017676,0.0000017647,0.0000017626, -0.0000017601,0.0000017477,0.0000017505,0.0000017605,0.0000017741, -0.0000017871,0.0000017968,0.0000018030,0.0000018053,0.0000018062, -0.0000018075,0.0000018092,0.0000018110,0.0000018126,0.0000018140, -0.0000018153,0.0000018165,0.0000018179,0.0000018192,0.0000018205, -0.0000018218,0.0000018229,0.0000018238,0.0000018249,0.0000018259, -0.0000018267,0.0000018272,0.0000018278,0.0000018293,0.0000018317, -0.0000018344,0.0000018366,0.0000018377,0.0000018376,0.0000018363, -0.0000018336,0.0000018302,0.0000018265,0.0000018230,0.0000018196, -0.0000018160,0.0000018115,0.0000018065,0.0000018016,0.0000017971, -0.0000017939,0.0000017930,0.0000017941,0.0000017949,0.0000017966, -0.0000017990,0.0000018017,0.0000018051,0.0000018077,0.0000018102, -0.0000018126,0.0000018147,0.0000018167,0.0000018185,0.0000018199, -0.0000018216,0.0000018247,0.0000018280,0.0000018311,0.0000018339, -0.0000018349,0.0000018347,0.0000018337,0.0000018316,0.0000018298, -0.0000018296,0.0000018307,0.0000018324,0.0000018343,0.0000018366, -0.0000018394,0.0000018421,0.0000018446,0.0000018468,0.0000018488, -0.0000018506,0.0000018528,0.0000018546,0.0000018559,0.0000018572, -0.0000018593,0.0000018626,0.0000018667,0.0000018707,0.0000018739, -0.0000018759,0.0000018766,0.0000018777,0.0000018764,0.0000018758, -0.0000018745,0.0000018721,0.0000018686,0.0000018647,0.0000018603, -0.0000018560,0.0000018519,0.0000018479,0.0000018443,0.0000018413, -0.0000018392,0.0000018382,0.0000018396,0.0000018404,0.0000018428, -0.0000018458,0.0000018482,0.0000018502,0.0000018519,0.0000018526, -0.0000018528,0.0000018526,0.0000018519,0.0000018507,0.0000018491, -0.0000018475,0.0000018460,0.0000018442,0.0000018422,0.0000018402, -0.0000018383,0.0000018363,0.0000018336,0.0000018300,0.0000018250, -0.0000018186,0.0000018113,0.0000018038,0.0000017970,0.0000017913, -0.0000017867,0.0000017857,0.0000017833,0.0000017840,0.0000017881, -0.0000017939,0.0000018009,0.0000018087,0.0000018164,0.0000018222, -0.0000018239,0.0000018241,0.0000018242,0.0000018239,0.0000018236, -0.0000018238,0.0000018243,0.0000018254,0.0000018266,0.0000018277, -0.0000018284,0.0000018283,0.0000018279,0.0000018266,0.0000018249, -0.0000018230,0.0000018209,0.0000018189,0.0000018171,0.0000018151, -0.0000018127,0.0000018099,0.0000018068,0.0000018038,0.0000018015, -0.0000018000,0.0000017996,0.0000018006,0.0000018021,0.0000018039, -0.0000018063,0.0000018095,0.0000018132,0.0000018171,0.0000018211, -0.0000018248,0.0000018280,0.0000018305,0.0000018326,0.0000018338, -0.0000018339,0.0000018331,0.0000018313,0.0000018284,0.0000018246, -0.0000018200,0.0000018149,0.0000018094,0.0000018036,0.0000017981, -0.0000017934,0.0000017897,0.0000017871,0.0000017858,0.0000017860, -0.0000017872,0.0000017888,0.0000017904,0.0000017919,0.0000017931, -0.0000017940,0.0000017948,0.0000017954,0.0000017954,0.0000017949, -0.0000017944,0.0000017940,0.0000017936,0.0000017930,0.0000017921, -0.0000017907,0.0000017894,0.0000017891,0.0000017901,0.0000017931, -0.0000017971,0.0000018014,0.0000018057,0.0000018096,0.0000018130, -0.0000018159,0.0000018180,0.0000018192,0.0000018196,0.0000018192, -0.0000018179,0.0000018160,0.0000018135,0.0000018098,0.0000018056, -0.0000018013,0.0000017971,0.0000017936,0.0000017911,0.0000017891, -0.0000017869,0.0000017847,0.0000017829,0.0000017817,0.0000017809, -0.0000017796,0.0000017769,0.0000017732,0.0000017693,0.0000017664, -0.0000017647,0.0000017621,0.0000017602,0.0000017593,0.0000017596, -0.0000017616,0.0000017636,0.0000017654,0.0000017669,0.0000017672, -0.0000017667,0.0000017658,0.0000017657,0.0000017666,0.0000017679, -0.0000017697,0.0000017715,0.0000017730,0.0000017743,0.0000017757, -0.0000017785,0.0000017821,0.0000017847,0.0000017860,0.0000017863, -0.0000017849,0.0000017813,0.0000017752,0.0000017668,0.0000017571, -0.0000017480,0.0000017419,0.0000017389,0.0000017397,0.0000017435, -0.0000017486,0.0000017557,0.0000017640,0.0000017723,0.0000017790, -0.0000017830,0.0000017845,0.0000017838,0.0000017794,0.0000017753, -0.0000017704,0.0000017666,0.0000017640,0.0000017618,0.0000017596, -0.0000017569,0.0000017535,0.0000017496,0.0000017466,0.0000017460, -0.0000017469,0.0000017484,0.0000017502,0.0000017518,0.0000017530, -0.0000017538,0.0000017541,0.0000017544,0.0000017546,0.0000017546, -0.0000017543,0.0000017539,0.0000017536,0.0000017536,0.0000017541, -0.0000017547,0.0000017558,0.0000017573,0.0000017587,0.0000017603, -0.0000017619,0.0000017635,0.0000017651,0.0000017670,0.0000017693, -0.0000017713,0.0000017734,0.0000017754,0.0000017771,0.0000017788, -0.0000017803,0.0000017814,0.0000017821,0.0000017830,0.0000017844, -0.0000017863,0.0000017884,0.0000017902,0.0000017913,0.0000017915, -0.0000017905,0.0000017883,0.0000017860,0.0000017838,0.0000017823, -0.0000017817,0.0000017821,0.0000017840,0.0000017871,0.0000017907, -0.0000017947,0.0000017993,0.0000018038,0.0000018073,0.0000018093, -0.0000018099,0.0000018099,0.0000018099,0.0000018106,0.0000018126, -0.0000018154,0.0000018189,0.0000018218,0.0000018246,0.0000018285, -0.0000018340,0.0000018411,0.0000018480,0.0000018528,0.0000018553, -0.0000018565,0.0000018553,0.0000018529,0.0000018500,0.0000018478, -0.0000018469,0.0000018469,0.0000018475,0.0000018483,0.0000018490, -0.0000018490,0.0000018477,0.0000018454,0.0000018422,0.0000018381, -0.0000018339,0.0000018300,0.0000018274,0.0000018264,0.0000018273, -0.0000018299,0.0000018333,0.0000018373,0.0000018413,0.0000018454, -0.0000018500,0.0000018544,0.0000018575,0.0000018596,0.0000018606, -0.0000018605,0.0000018589,0.0000018555,0.0000018511,0.0000018465, -0.0000018430,0.0000018408,0.0000018393,0.0000018380,0.0000018372, -0.0000018372,0.0000018373,0.0000018375,0.0000018381,0.0000018391, -0.0000018399,0.0000018409,0.0000018430,0.0000018464,0.0000018507, -0.0000018553,0.0000018596,0.0000018633,0.0000018658,0.0000018665, -0.0000018672,0.0000018678,0.0000018679,0.0000018672,0.0000018656, -0.0000018632,0.0000018598,0.0000018556,0.0000018508,0.0000018455, -0.0000018400,0.0000018344,0.0000018298,0.0000018257,0.0000018233, -0.0000018248,0.0000018261,0.0000018308,0.0000018369,0.0000018441, -0.0000018518,0.0000018587,0.0000018637,0.0000018673,0.0000018678, -0.0000018674,0.0000018662,0.0000018651,0.0000018646,0.0000018641, -0.0000018637,0.0000018629,0.0000018610,0.0000018576,0.0000018539, -0.0000018505,0.0000018475,0.0000018464,0.0000018468,0.0000018493, -0.0000018528,0.0000018575,0.0000018622,0.0000018664,0.0000018702, -0.0000018730,0.0000018743,0.0000018738,0.0000018730,0.0000018707, -0.0000018681,0.0000018671,0.0000018668,0.0000018666,0.0000018665, -0.0000018671,0.0000018675,0.0000018672,0.0000018657,0.0000018627, -0.0000018584,0.0000018536,0.0000018506,0.0000018502,0.0000018508, -0.0000018530,0.0000018558,0.0000018589,0.0000018620,0.0000018645, -0.0000018655,0.0000018653,0.0000018646,0.0000018627,0.0000018602, -0.0000018576,0.0000018548,0.0000018506,0.0000018442,0.0000018366, -0.0000018276,0.0000018177,0.0000018090,0.0000018027,0.0000017993, -0.0000017976,0.0000017967,0.0000017965,0.0000017974,0.0000018002, -0.0000018037,0.0000018075,0.0000018110,0.0000018122,0.0000018113, -0.0000018085,0.0000018036,0.0000017984,0.0000017940,0.0000017901, -0.0000017862,0.0000017827,0.0000017803,0.0000017773,0.0000017746, -0.0000017724,0.0000017703,0.0000017688,0.0000017686,0.0000017676, -0.0000017667,0.0000017668,0.0000017673,0.0000017677,0.0000017679, -0.0000017683,0.0000017679,0.0000017682,0.0000017708,0.0000017731, -0.0000017755,0.0000017776,0.0000017797,0.0000017814,0.0000017831, -0.0000017844,0.0000017842,0.0000017827,0.0000017806,0.0000017785, -0.0000017765,0.0000017736,0.0000017707,0.0000017677,0.0000017660, -0.0000017656,0.0000017663,0.0000017676,0.0000017702,0.0000017722, -0.0000017737,0.0000017740,0.0000017738,0.0000017736,0.0000017723, -0.0000017711,0.0000017697,0.0000017683,0.0000017676,0.0000017669, -0.0000017679,0.0000017688,0.0000017697,0.0000017706,0.0000017707, -0.0000017705,0.0000017713,0.0000017711,0.0000017723,0.0000017732, -0.0000017731,0.0000017738,0.0000017740,0.0000017740,0.0000017748, -0.0000017754,0.0000017750,0.0000017741,0.0000017738,0.0000017747, -0.0000017755,0.0000017780,0.0000017791,0.0000017795,0.0000017813, -0.0000017807,0.0000017807,0.0000017799,0.0000017779,0.0000017750, -0.0000017718,0.0000017681,0.0000017651,0.0000017621,0.0000017593, -0.0000017575,0.0000017580,0.0000017586,0.0000017601,0.0000017602, -0.0000017587,0.0000017571,0.0000017559,0.0000017562,0.0000017578, -0.0000017596,0.0000017610,0.0000017617,0.0000017624,0.0000017637, -0.0000017655,0.0000017678,0.0000017703,0.0000017720,0.0000017723, -0.0000017734,0.0000017739,0.0000017739,0.0000017738,0.0000017730, -0.0000017705,0.0000017655,0.0000017606,0.0000017559,0.0000017548, -0.0000017541,0.0000017549,0.0000017575,0.0000017602,0.0000017641, -0.0000017683,0.0000017715,0.0000017744,0.0000017762,0.0000017776, -0.0000017787,0.0000017798,0.0000017821,0.0000017845,0.0000017871, -0.0000017890,0.0000017907,0.0000017921,0.0000017928,0.0000017931, -0.0000017928,0.0000017921,0.0000017890,0.0000017842,0.0000017784, -0.0000017732,0.0000017679,0.0000017634,0.0000017599,0.0000017583, -0.0000017576,0.0000017564,0.0000017548,0.0000017526,0.0000017502, -0.0000017495,0.0000017505,0.0000017533,0.0000017573,0.0000017624, -0.0000017669,0.0000017716,0.0000017751,0.0000017767,0.0000017775, -0.0000017773,0.0000017775,0.0000017785,0.0000017823,0.0000017879, -0.0000017947,0.0000018016,0.0000018068,0.0000018108,0.0000018152, -0.0000018203,0.0000018258,0.0000018303,0.0000018326,0.0000018328, -0.0000018305,0.0000018269,0.0000018233,0.0000018202,0.0000018173, -0.0000018135,0.0000018086,0.0000018029,0.0000017973,0.0000017925, -0.0000017884,0.0000017854,0.0000017842,0.0000017846,0.0000017857, -0.0000017872,0.0000017883,0.0000017891,0.0000017902,0.0000017928, -0.0000017971,0.0000018022,0.0000018077,0.0000018129,0.0000018168, -0.0000018190,0.0000018200,0.0000018207,0.0000018215,0.0000018236, -0.0000018278,0.0000018339,0.0000018412,0.0000018490,0.0000018568, -0.0000018636,0.0000018691,0.0000018723,0.0000018738,0.0000018748, -0.0000018771,0.0000018803,0.0000018840,0.0000018876,0.0000018910, -0.0000018936,0.0000018952,0.0000018950,0.0000018947,0.0000018929, -0.0000018907,0.0000018881,0.0000018858,0.0000018853,0.0000018857, -0.0000018852,0.0000018836,0.0000018808,0.0000018767,0.0000018720, -0.0000018678,0.0000018652,0.0000018637,0.0000018635,0.0000018635, -0.0000018633,0.0000018631,0.0000018633,0.0000018645,0.0000018668, -0.0000018702,0.0000018757,0.0000018844,0.0000018939,0.0000018998, -0.0000019000,0.0000018943,0.0000018863,0.0000018838,0.0000018867, -0.0000018895,0.0000018865,0.0000018796,0.0000018757,0.0000018730, -0.0000018664,0.0000018577,0.0000018530,0.0000018548,0.0000018593, -0.0000018612,0.0000018594,0.0000018550,0.0000018500,0.0000018443, -0.0000018376,0.0000018307,0.0000018252,0.0000018226,0.0000018219, -0.0000018214,0.0000018207,0.0000018208,0.0000018215,0.0000018214, -0.0000018195,0.0000018168,0.0000018150,0.0000018150,0.0000018160, -0.0000018168,0.0000018176,0.0000018186,0.0000018196,0.0000018202, -0.0000018201,0.0000018199,0.0000018205,0.0000018216,0.0000018219, -0.0000018211,0.0000018187,0.0000018161,0.0000018135,0.0000018106, -0.0000018080,0.0000018058,0.0000018038,0.0000018027,0.0000018025, -0.0000018031,0.0000018051,0.0000018079,0.0000018115,0.0000018174, -0.0000018259,0.0000018349,0.0000018421,0.0000018472,0.0000018503, -0.0000018517,0.0000018518,0.0000018519,0.0000018529,0.0000018552, -0.0000018585,0.0000018624,0.0000018658,0.0000018677,0.0000018679, -0.0000018663,0.0000018633,0.0000018608,0.0000018596,0.0000018598, -0.0000018606,0.0000018607,0.0000018588,0.0000018539,0.0000018473, -0.0000018406,0.0000018360,0.0000018340,0.0000018330,0.0000018322, -0.0000018321,0.0000018324,0.0000018322,0.0000018317,0.0000018313, -0.0000018310,0.0000018295,0.0000018252,0.0000018187,0.0000018111, -0.0000018040,0.0000017990,0.0000017960,0.0000017944,0.0000017942, -0.0000017956,0.0000017984,0.0000018016,0.0000018042,0.0000018053, -0.0000018054,0.0000018060,0.0000018077,0.0000018091,0.0000018083, -0.0000018053,0.0000018025,0.0000018014,0.0000018014,0.0000018012, -0.0000018002,0.0000017986,0.0000017994,0.0000018045,0.0000018100, -0.0000018095,0.0000018004,0.0000017888,0.0000017802,0.0000017778, -0.0000017795,0.0000017815,0.0000017823,0.0000017822,0.0000017813, -0.0000017798,0.0000017782,0.0000017759,0.0000017719,0.0000017681, -0.0000017644,0.0000017619,0.0000017592,0.0000017555,0.0000017527, -0.0000017520,0.0000017528,0.0000017545,0.0000017561,0.0000017570, -0.0000017580,0.0000017598,0.0000017621,0.0000017647,0.0000017672, -0.0000017686,0.0000017678,0.0000017661,0.0000017642,0.0000017626, -0.0000017609,0.0000017601,0.0000017605,0.0000017604,0.0000017605, -0.0000017619,0.0000017651,0.0000017704,0.0000017774,0.0000017845, -0.0000017920,0.0000017996,0.0000018062,0.0000018123,0.0000018155, -0.0000018159,0.0000018141,0.0000018103,0.0000018057,0.0000018013, -0.0000017974,0.0000017939,0.0000017911,0.0000017892,0.0000017872, -0.0000017851,0.0000017828,0.0000017809,0.0000017787,0.0000017764, -0.0000017750,0.0000017742,0.0000017736,0.0000017737,0.0000017752, -0.0000017795,0.0000017854,0.0000017901,0.0000017938,0.0000017963, -0.0000017977,0.0000017993,0.0000018010,0.0000018026,0.0000018034, -0.0000018035,0.0000018025,0.0000017998,0.0000017977,0.0000017978, -0.0000017971,0.0000017947,0.0000017927,0.0000017927,0.0000017940, -0.0000017953,0.0000017945,0.0000017918,0.0000017896,0.0000017870, -0.0000017845,0.0000017833,0.0000017828,0.0000017836,0.0000018197, -0.0000018752,0.0000018863,0.0000018718,0.0000018612,0.0000018615, -0.0000018674,0.0000018729,0.0000018803,0.0000018807,0.0000018468, -0.0000017987,0.0000017800,0.0000017789,0.0000017817,0.0000017882, -0.0000017945,0.0000017966,0.0000017940,0.0000017907,0.0000017869, -0.0000017850,0.0000017852,0.0000017871,0.0000017899,0.0000017910, -0.0000017888,0.0000017850,0.0000017793,0.0000017728,0.0000017657, -0.0000017596,0.0000017565,0.0000017557,0.0000017578,0.0000017625, -0.0000017683,0.0000017735,0.0000017860,0.0000018194,0.0000018404, -0.0000018196,0.0000017869,0.0000017778,0.0000017778,0.0000017782, -0.0000017798,0.0000017834,0.0000017911,0.0000018016,0.0000018112, -0.0000018164,0.0000018170,0.0000018138,0.0000018066,0.0000017959, -0.0000017842,0.0000017749,0.0000017708,0.0000017704,0.0000017694, -0.0000017645,0.0000017555,0.0000017481,0.0000017468,0.0000017515, -0.0000017622,0.0000017737,0.0000017829,0.0000017888,0.0000017914, -0.0000017916,0.0000017900,0.0000017861,0.0000017818,0.0000017791, -0.0000017774,0.0000017758,0.0000017752,0.0000017759,0.0000017760, -0.0000017735,0.0000017669,0.0000017594,0.0000017551,0.0000017545, -0.0000017555,0.0000017582,0.0000017629,0.0000017695,0.0000017764, -0.0000017808,0.0000017821,0.0000017821,0.0000017833,0.0000017866, -0.0000017910,0.0000017933,0.0000017929,0.0000017893,0.0000017833, -0.0000017768,0.0000017722,0.0000017705,0.0000017708,0.0000017729, -0.0000017754,0.0000017762,0.0000017756,0.0000017739,0.0000017716, -0.0000017688,0.0000017660,0.0000017635,0.0000017610,0.0000017587, -0.0000017567,0.0000017554,0.0000017544,0.0000017532,0.0000017516, -0.0000017501,0.0000017495,0.0000017496,0.0000017498,0.0000017504, -0.0000017516,0.0000017532,0.0000017557,0.0000017591,0.0000017632, -0.0000017673,0.0000017710,0.0000017740,0.0000017764,0.0000017779, -0.0000017787,0.0000017793,0.0000017795,0.0000017795,0.0000017794, -0.0000017794,0.0000017791,0.0000017786,0.0000017778,0.0000017763, -0.0000017740,0.0000017707,0.0000017666,0.0000017622,0.0000017592, -0.0000017589,0.0000017618,0.0000017672,0.0000017710,0.0000017711, -0.0000017676,0.0000017632,0.0000017604,0.0000017565,0.0000017506, -0.0000017543,0.0000017676,0.0000017826,0.0000017947,0.0000018018, -0.0000018041,0.0000018046,0.0000018055,0.0000018072,0.0000018095, -0.0000018121,0.0000018145,0.0000018163,0.0000018177,0.0000018188, -0.0000018196,0.0000018206,0.0000018215,0.0000018224,0.0000018235, -0.0000018250,0.0000018271,0.0000018296,0.0000018318,0.0000018333, -0.0000018338,0.0000018339,0.0000018340,0.0000018343,0.0000018358, -0.0000018385,0.0000018415,0.0000018433,0.0000018432,0.0000018417, -0.0000018396,0.0000018373,0.0000018349,0.0000018328,0.0000018305, -0.0000018278,0.0000018249,0.0000018214,0.0000018172,0.0000018125, -0.0000018087,0.0000018058,0.0000018035,0.0000018026,0.0000018018, -0.0000018021,0.0000018027,0.0000018043,0.0000018042,0.0000018051, -0.0000018056,0.0000018061,0.0000018074,0.0000018088,0.0000018111, -0.0000018149,0.0000018197,0.0000018247,0.0000018288,0.0000018314, -0.0000018325,0.0000018321,0.0000018307,0.0000018295,0.0000018296, -0.0000018306,0.0000018322,0.0000018340,0.0000018359,0.0000018381, -0.0000018402,0.0000018421,0.0000018441,0.0000018458,0.0000018474, -0.0000018494,0.0000018517,0.0000018537,0.0000018549,0.0000018560, -0.0000018576,0.0000018602,0.0000018635,0.0000018667,0.0000018695, -0.0000018714,0.0000018731,0.0000018743,0.0000018751,0.0000018765, -0.0000018757,0.0000018760,0.0000018739,0.0000018716,0.0000018688, -0.0000018653,0.0000018618,0.0000018578,0.0000018535,0.0000018499, -0.0000018470,0.0000018454,0.0000018453,0.0000018459,0.0000018475, -0.0000018489,0.0000018504,0.0000018519,0.0000018527,0.0000018530, -0.0000018530,0.0000018532,0.0000018532,0.0000018534,0.0000018536, -0.0000018533,0.0000018521,0.0000018502,0.0000018479,0.0000018450, -0.0000018418,0.0000018391,0.0000018373,0.0000018361,0.0000018344, -0.0000018316,0.0000018274,0.0000018218,0.0000018150,0.0000018073, -0.0000018000,0.0000017932,0.0000017874,0.0000017862,0.0000017846, -0.0000017850,0.0000017887,0.0000017940,0.0000018000,0.0000018062, -0.0000018125,0.0000018180,0.0000018217,0.0000018237,0.0000018244, -0.0000018251,0.0000018261,0.0000018274,0.0000018286,0.0000018301, -0.0000018321,0.0000018334,0.0000018336,0.0000018332,0.0000018323, -0.0000018311,0.0000018296,0.0000018282,0.0000018269,0.0000018256, -0.0000018239,0.0000018217,0.0000018190,0.0000018166,0.0000018143, -0.0000018124,0.0000018110,0.0000018102,0.0000018099,0.0000018102, -0.0000018112,0.0000018129,0.0000018150,0.0000018175,0.0000018200, -0.0000018227,0.0000018252,0.0000018273,0.0000018289,0.0000018296, -0.0000018292,0.0000018277,0.0000018254,0.0000018221,0.0000018181, -0.0000018135,0.0000018086,0.0000018035,0.0000017984,0.0000017934, -0.0000017888,0.0000017854,0.0000017833,0.0000017826,0.0000017831, -0.0000017846,0.0000017867,0.0000017888,0.0000017907,0.0000017924, -0.0000017939,0.0000017947,0.0000017949,0.0000017943,0.0000017931, -0.0000017919,0.0000017908,0.0000017897,0.0000017884,0.0000017870, -0.0000017863,0.0000017867,0.0000017888,0.0000017924,0.0000017969, -0.0000018019,0.0000018071,0.0000018118,0.0000018161,0.0000018200, -0.0000018230,0.0000018250,0.0000018262,0.0000018263,0.0000018254, -0.0000018238,0.0000018217,0.0000018193,0.0000018172,0.0000018150, -0.0000018126,0.0000018108,0.0000018093,0.0000018073,0.0000018043, -0.0000018006,0.0000017968,0.0000017934,0.0000017908,0.0000017892, -0.0000017880,0.0000017863,0.0000017837,0.0000017810,0.0000017774, -0.0000017722,0.0000017659,0.0000017599,0.0000017552,0.0000017522, -0.0000017519,0.0000017554,0.0000017610,0.0000017665,0.0000017707, -0.0000017732,0.0000017732,0.0000017719,0.0000017698,0.0000017688, -0.0000017684,0.0000017690,0.0000017707,0.0000017728,0.0000017753, -0.0000017776,0.0000017795,0.0000017812,0.0000017830,0.0000017843, -0.0000017843,0.0000017830,0.0000017800,0.0000017753,0.0000017693, -0.0000017611,0.0000017527,0.0000017459,0.0000017429,0.0000017424, -0.0000017443,0.0000017478,0.0000017507,0.0000017553,0.0000017610, -0.0000017674,0.0000017727,0.0000017767,0.0000017796,0.0000017809, -0.0000017803,0.0000017775,0.0000017766,0.0000017729,0.0000017689, -0.0000017650,0.0000017625,0.0000017624,0.0000017636,0.0000017654, -0.0000017669,0.0000017680,0.0000017686,0.0000017689,0.0000017684, -0.0000017671,0.0000017663,0.0000017655,0.0000017646,0.0000017641, -0.0000017643,0.0000017643,0.0000017646,0.0000017651,0.0000017659, -0.0000017669,0.0000017681,0.0000017697,0.0000017716,0.0000017734, -0.0000017750,0.0000017769,0.0000017791,0.0000017814,0.0000017834, -0.0000017856,0.0000017876,0.0000017893,0.0000017909,0.0000017922, -0.0000017929,0.0000017931,0.0000017932,0.0000017936,0.0000017935, -0.0000017929,0.0000017923,0.0000017909,0.0000017890,0.0000017869, -0.0000017851,0.0000017842,0.0000017841,0.0000017852,0.0000017872, -0.0000017903,0.0000017945,0.0000017990,0.0000018032,0.0000018067, -0.0000018086,0.0000018094,0.0000018095,0.0000018095,0.0000018095, -0.0000018104,0.0000018125,0.0000018154,0.0000018184,0.0000018216, -0.0000018255,0.0000018312,0.0000018383,0.0000018453,0.0000018504, -0.0000018531,0.0000018537,0.0000018520,0.0000018492,0.0000018458, -0.0000018431,0.0000018416,0.0000018413,0.0000018415,0.0000018414, -0.0000018411,0.0000018410,0.0000018408,0.0000018400,0.0000018374, -0.0000018328,0.0000018278,0.0000018232,0.0000018198,0.0000018182, -0.0000018178,0.0000018189,0.0000018227,0.0000018283,0.0000018344, -0.0000018408,0.0000018473,0.0000018536,0.0000018590,0.0000018630, -0.0000018656,0.0000018667,0.0000018664,0.0000018652,0.0000018624, -0.0000018583,0.0000018538,0.0000018496,0.0000018466,0.0000018449, -0.0000018440,0.0000018432,0.0000018424,0.0000018417,0.0000018410, -0.0000018403,0.0000018397,0.0000018393,0.0000018387,0.0000018385, -0.0000018389,0.0000018404,0.0000018431,0.0000018470,0.0000018517, -0.0000018564,0.0000018605,0.0000018636,0.0000018661,0.0000018679, -0.0000018687,0.0000018686,0.0000018677,0.0000018665,0.0000018648, -0.0000018624,0.0000018594,0.0000018558,0.0000018515,0.0000018467, -0.0000018418,0.0000018372,0.0000018329,0.0000018292,0.0000018274, -0.0000018268,0.0000018272,0.0000018312,0.0000018378,0.0000018451, -0.0000018531,0.0000018603,0.0000018659,0.0000018686,0.0000018686, -0.0000018677,0.0000018660,0.0000018640,0.0000018626,0.0000018617, -0.0000018606,0.0000018589,0.0000018571,0.0000018557,0.0000018537, -0.0000018528,0.0000018523,0.0000018530,0.0000018548,0.0000018571, -0.0000018598,0.0000018618,0.0000018643,0.0000018672,0.0000018698, -0.0000018714,0.0000018724,0.0000018722,0.0000018716,0.0000018716, -0.0000018718,0.0000018720,0.0000018717,0.0000018713,0.0000018707, -0.0000018700,0.0000018687,0.0000018668,0.0000018642,0.0000018613, -0.0000018601,0.0000018596,0.0000018592,0.0000018594,0.0000018596, -0.0000018598,0.0000018609,0.0000018627,0.0000018647,0.0000018665, -0.0000018676,0.0000018676,0.0000018665,0.0000018645,0.0000018615, -0.0000018580,0.0000018546,0.0000018519,0.0000018484,0.0000018432, -0.0000018356,0.0000018258,0.0000018156,0.0000018071,0.0000018021, -0.0000017999,0.0000017997,0.0000018009,0.0000018021,0.0000018042, -0.0000018069,0.0000018102,0.0000018125,0.0000018137,0.0000018125, -0.0000018096,0.0000018058,0.0000018009,0.0000017960,0.0000017915, -0.0000017876,0.0000017837,0.0000017804,0.0000017782,0.0000017759, -0.0000017743,0.0000017733,0.0000017729,0.0000017732,0.0000017738, -0.0000017738,0.0000017734,0.0000017720,0.0000017707,0.0000017694, -0.0000017700,0.0000017733,0.0000017768,0.0000017800,0.0000017826, -0.0000017850,0.0000017868,0.0000017880,0.0000017878,0.0000017865, -0.0000017842,0.0000017816,0.0000017791,0.0000017766,0.0000017737, -0.0000017715,0.0000017702,0.0000017710,0.0000017737,0.0000017767, -0.0000017805,0.0000017834,0.0000017853,0.0000017866,0.0000017866, -0.0000017859,0.0000017842,0.0000017824,0.0000017806,0.0000017784, -0.0000017769,0.0000017763,0.0000017761,0.0000017768,0.0000017772, -0.0000017778,0.0000017776,0.0000017767,0.0000017775,0.0000017774, -0.0000017780,0.0000017783,0.0000017775,0.0000017775,0.0000017774, -0.0000017776,0.0000017791,0.0000017800,0.0000017801,0.0000017794, -0.0000017792,0.0000017793,0.0000017798,0.0000017816,0.0000017822, -0.0000017824,0.0000017845,0.0000017843,0.0000017847,0.0000017850, -0.0000017841,0.0000017830,0.0000017805,0.0000017779,0.0000017760, -0.0000017726,0.0000017690,0.0000017647,0.0000017619,0.0000017603, -0.0000017612,0.0000017626,0.0000017624,0.0000017606,0.0000017581, -0.0000017571,0.0000017584,0.0000017612,0.0000017638,0.0000017661, -0.0000017679,0.0000017695,0.0000017713,0.0000017728,0.0000017745, -0.0000017754,0.0000017757,0.0000017759,0.0000017765,0.0000017765, -0.0000017768,0.0000017773,0.0000017775,0.0000017743,0.0000017703, -0.0000017642,0.0000017598,0.0000017562,0.0000017535,0.0000017540, -0.0000017556,0.0000017593,0.0000017638,0.0000017679,0.0000017715, -0.0000017743,0.0000017760,0.0000017782,0.0000017805,0.0000017830, -0.0000017852,0.0000017880,0.0000017910,0.0000017927,0.0000017935, -0.0000017936,0.0000017941,0.0000017954,0.0000017970,0.0000017966, -0.0000017935,0.0000017889,0.0000017842,0.0000017787,0.0000017729, -0.0000017680,0.0000017647,0.0000017626,0.0000017609,0.0000017590, -0.0000017567,0.0000017541,0.0000017523,0.0000017527,0.0000017547, -0.0000017576,0.0000017612,0.0000017644,0.0000017676,0.0000017692, -0.0000017690,0.0000017671,0.0000017622,0.0000017552,0.0000017510, -0.0000017469,0.0000017461,0.0000017471,0.0000017510,0.0000017544, -0.0000017590,0.0000017663,0.0000017745,0.0000017831,0.0000017907, -0.0000017967,0.0000018002,0.0000018009,0.0000017994,0.0000017966, -0.0000017936,0.0000017905,0.0000017874,0.0000017824,0.0000017762, -0.0000017703,0.0000017647,0.0000017583,0.0000017522,0.0000017486, -0.0000017480,0.0000017493,0.0000017513,0.0000017523,0.0000017532, -0.0000017548,0.0000017580,0.0000017619,0.0000017661,0.0000017706, -0.0000017752,0.0000017798,0.0000017844,0.0000017884,0.0000017917, -0.0000017941,0.0000017972,0.0000018015,0.0000018069,0.0000018131, -0.0000018199,0.0000018285,0.0000018382,0.0000018475,0.0000018546, -0.0000018594,0.0000018624,0.0000018659,0.0000018701,0.0000018750, -0.0000018798,0.0000018837,0.0000018867,0.0000018889,0.0000018901, -0.0000018911,0.0000018922,0.0000018939,0.0000018959,0.0000018966, -0.0000018968,0.0000018956,0.0000018924,0.0000018889,0.0000018864, -0.0000018845,0.0000018821,0.0000018790,0.0000018755,0.0000018721, -0.0000018691,0.0000018665,0.0000018642,0.0000018631,0.0000018634, -0.0000018647,0.0000018667,0.0000018679,0.0000018683,0.0000018698, -0.0000018751,0.0000018841,0.0000018927,0.0000018961,0.0000018942, -0.0000018882,0.0000018840,0.0000018850,0.0000018878,0.0000018872, -0.0000018830,0.0000018790,0.0000018759,0.0000018698,0.0000018601, -0.0000018532,0.0000018535,0.0000018584,0.0000018618,0.0000018610, -0.0000018558,0.0000018485,0.0000018413,0.0000018352,0.0000018303, -0.0000018268,0.0000018246,0.0000018236,0.0000018236,0.0000018244, -0.0000018252,0.0000018247,0.0000018223,0.0000018191,0.0000018167, -0.0000018158,0.0000018162,0.0000018176,0.0000018202,0.0000018231, -0.0000018247,0.0000018245,0.0000018228,0.0000018209,0.0000018200, -0.0000018207,0.0000018215,0.0000018212,0.0000018193,0.0000018167, -0.0000018138,0.0000018113,0.0000018097,0.0000018085,0.0000018065, -0.0000018037,0.0000018020,0.0000018018,0.0000018033,0.0000018061, -0.0000018106,0.0000018172,0.0000018248,0.0000018319,0.0000018376, -0.0000018421,0.0000018454,0.0000018474,0.0000018487,0.0000018502, -0.0000018524,0.0000018548,0.0000018574,0.0000018603,0.0000018627, -0.0000018639,0.0000018637,0.0000018627,0.0000018618,0.0000018613, -0.0000018611,0.0000018608,0.0000018593,0.0000018562,0.0000018519, -0.0000018473,0.0000018425,0.0000018383,0.0000018357,0.0000018338, -0.0000018321,0.0000018313,0.0000018320,0.0000018332,0.0000018336, -0.0000018339,0.0000018344,0.0000018344,0.0000018317,0.0000018256, -0.0000018186,0.0000018130,0.0000018081,0.0000018032,0.0000017993, -0.0000017971,0.0000017957,0.0000017948,0.0000017952,0.0000017970, -0.0000017991,0.0000018003,0.0000018013,0.0000018025,0.0000018049, -0.0000018076,0.0000018085,0.0000018074,0.0000018050,0.0000018028, -0.0000018017,0.0000018011,0.0000017989,0.0000017953,0.0000017952, -0.0000018005,0.0000018096,0.0000018141,0.0000018108,0.0000018012, -0.0000017906,0.0000017834,0.0000017820,0.0000017821,0.0000017830, -0.0000017822,0.0000017788,0.0000017741,0.0000017698,0.0000017670, -0.0000017652,0.0000017640,0.0000017633,0.0000017628,0.0000017610, -0.0000017582,0.0000017549,0.0000017521,0.0000017508,0.0000017506, -0.0000017511,0.0000017525,0.0000017539,0.0000017553,0.0000017572, -0.0000017594,0.0000017608,0.0000017609,0.0000017603,0.0000017595, -0.0000017589,0.0000017583,0.0000017579,0.0000017576,0.0000017564, -0.0000017546,0.0000017528,0.0000017524,0.0000017539,0.0000017576, -0.0000017624,0.0000017688,0.0000017768,0.0000017849,0.0000017928, -0.0000017997,0.0000018046,0.0000018089,0.0000018108,0.0000018094, -0.0000018084,0.0000018061,0.0000018021,0.0000017981,0.0000017948, -0.0000017914,0.0000017879,0.0000017846,0.0000017820,0.0000017795, -0.0000017763,0.0000017739,0.0000017718,0.0000017689,0.0000017678, -0.0000017687,0.0000017738,0.0000017810,0.0000017876,0.0000017924, -0.0000017962,0.0000017987,0.0000018010,0.0000018037,0.0000018055, -0.0000018059,0.0000018051,0.0000018032,0.0000018005,0.0000017993, -0.0000017993,0.0000017970,0.0000017927,0.0000017905,0.0000017918, -0.0000017947,0.0000017952,0.0000017928,0.0000017905,0.0000017882, -0.0000017852,0.0000017833,0.0000017828,0.0000017824,0.0000017992, -0.0000018553,0.0000018880,0.0000018811,0.0000018666,0.0000018618, -0.0000018646,0.0000018707,0.0000018785,0.0000018810,0.0000018539, -0.0000018072,0.0000017840,0.0000017825,0.0000017853,0.0000017926, -0.0000017961,0.0000017937,0.0000017842,0.0000017725,0.0000017632, -0.0000017583,0.0000017574,0.0000017599,0.0000017653,0.0000017720, -0.0000017802,0.0000017865,0.0000017887,0.0000017877,0.0000017823, -0.0000017732,0.0000017630,0.0000017556,0.0000017530,0.0000017545, -0.0000017583,0.0000017647,0.0000017724,0.0000017789,0.0000018011, -0.0000018384,0.0000018405,0.0000018062,0.0000017830,0.0000017804, -0.0000017823,0.0000017903,0.0000018051,0.0000018218,0.0000018367, -0.0000018453,0.0000018472,0.0000018448,0.0000018386,0.0000018294, -0.0000018166,0.0000018009,0.0000017850,0.0000017732,0.0000017682, -0.0000017679,0.0000017681,0.0000017651,0.0000017570,0.0000017476, -0.0000017437,0.0000017462,0.0000017557,0.0000017684,0.0000017801, -0.0000017881,0.0000017916,0.0000017919,0.0000017893,0.0000017837, -0.0000017783,0.0000017757,0.0000017747,0.0000017746,0.0000017754, -0.0000017759,0.0000017733,0.0000017652,0.0000017572,0.0000017539, -0.0000017535,0.0000017533,0.0000017528,0.0000017529,0.0000017553, -0.0000017612,0.0000017697,0.0000017773,0.0000017808,0.0000017811, -0.0000017814,0.0000017836,0.0000017870,0.0000017894,0.0000017894, -0.0000017865,0.0000017809,0.0000017752,0.0000017718,0.0000017707, -0.0000017712,0.0000017729,0.0000017750,0.0000017754,0.0000017747, -0.0000017729,0.0000017701,0.0000017665,0.0000017629,0.0000017598, -0.0000017574,0.0000017556,0.0000017541,0.0000017527,0.0000017514, -0.0000017501,0.0000017490,0.0000017481,0.0000017477,0.0000017475, -0.0000017473,0.0000017475,0.0000017484,0.0000017499,0.0000017518, -0.0000017542,0.0000017570,0.0000017600,0.0000017627,0.0000017648, -0.0000017665,0.0000017681,0.0000017696,0.0000017707,0.0000017717, -0.0000017724,0.0000017726,0.0000017722,0.0000017711,0.0000017691, -0.0000017661,0.0000017626,0.0000017596,0.0000017580,0.0000017585, -0.0000017624,0.0000017682,0.0000017724,0.0000017726,0.0000017686, -0.0000017633,0.0000017592,0.0000017537,0.0000017476,0.0000017472, -0.0000017757,0.0000017900,0.0000017992,0.0000018027,0.0000018032, -0.0000018051,0.0000018080,0.0000018115,0.0000018147,0.0000018177, -0.0000018207,0.0000018232,0.0000018252,0.0000018265,0.0000018274, -0.0000018281,0.0000018288,0.0000018293,0.0000018295,0.0000018297, -0.0000018305,0.0000018322,0.0000018343,0.0000018359,0.0000018368, -0.0000018371,0.0000018369,0.0000018362,0.0000018359,0.0000018366, -0.0000018393,0.0000018432,0.0000018468,0.0000018484,0.0000018480, -0.0000018465,0.0000018446,0.0000018427,0.0000018411,0.0000018396, -0.0000018384,0.0000018372,0.0000018355,0.0000018332,0.0000018305, -0.0000018278,0.0000018252,0.0000018229,0.0000018207,0.0000018186, -0.0000018167,0.0000018149,0.0000018131,0.0000018116,0.0000018101, -0.0000018079,0.0000018062,0.0000018050,0.0000018046,0.0000018046, -0.0000018065,0.0000018099,0.0000018142,0.0000018185,0.0000018223, -0.0000018247,0.0000018257,0.0000018256,0.0000018255,0.0000018262, -0.0000018275,0.0000018293,0.0000018312,0.0000018331,0.0000018351, -0.0000018368,0.0000018384,0.0000018402,0.0000018421,0.0000018438, -0.0000018458,0.0000018483,0.0000018509,0.0000018530,0.0000018542, -0.0000018551,0.0000018563,0.0000018583,0.0000018608,0.0000018633, -0.0000018651,0.0000018665,0.0000018679,0.0000018692,0.0000018711, -0.0000018725,0.0000018735,0.0000018730,0.0000018730,0.0000018712, -0.0000018687,0.0000018671,0.0000018642,0.0000018604,0.0000018567, -0.0000018534,0.0000018512,0.0000018502,0.0000018501,0.0000018507, -0.0000018517,0.0000018532,0.0000018544,0.0000018554,0.0000018561, -0.0000018562,0.0000018560,0.0000018558,0.0000018555,0.0000018555, -0.0000018555,0.0000018554,0.0000018551,0.0000018544,0.0000018526, -0.0000018503,0.0000018477,0.0000018451,0.0000018424,0.0000018401, -0.0000018388,0.0000018381,0.0000018369,0.0000018347,0.0000018312, -0.0000018262,0.0000018194,0.0000018114,0.0000018038,0.0000017965, -0.0000017902,0.0000017888,0.0000017875,0.0000017870,0.0000017883, -0.0000017914,0.0000017949,0.0000017987,0.0000018030,0.0000018078, -0.0000018130,0.0000018182,0.0000018232,0.0000018273,0.0000018309, -0.0000018333,0.0000018347,0.0000018353,0.0000018358,0.0000018363, -0.0000018363,0.0000018355,0.0000018340,0.0000018322,0.0000018304, -0.0000018288,0.0000018273,0.0000018252,0.0000018233,0.0000018216, -0.0000018200,0.0000018189,0.0000018180,0.0000018171,0.0000018164, -0.0000018161,0.0000018161,0.0000018165,0.0000018172,0.0000018179, -0.0000018188,0.0000018200,0.0000018213,0.0000018222,0.0000018227, -0.0000018226,0.0000018218,0.0000018204,0.0000018184,0.0000018159, -0.0000018128,0.0000018090,0.0000018049,0.0000018009,0.0000017966, -0.0000017919,0.0000017874,0.0000017840,0.0000017821,0.0000017813, -0.0000017816,0.0000017826,0.0000017842,0.0000017864,0.0000017885, -0.0000017903,0.0000017915,0.0000017920,0.0000017918,0.0000017911, -0.0000017905,0.0000017895,0.0000017879,0.0000017858,0.0000017835, -0.0000017819,0.0000017820,0.0000017840,0.0000017879,0.0000017928, -0.0000017979,0.0000018034,0.0000018089,0.0000018139,0.0000018184, -0.0000018224,0.0000018258,0.0000018280,0.0000018291,0.0000018292, -0.0000018284,0.0000018266,0.0000018246,0.0000018231,0.0000018219, -0.0000018212,0.0000018211,0.0000018211,0.0000018208,0.0000018202, -0.0000018189,0.0000018169,0.0000018143,0.0000018114,0.0000018082, -0.0000018044,0.0000017998,0.0000017948,0.0000017912,0.0000017882, -0.0000017844,0.0000017798,0.0000017739,0.0000017674,0.0000017617, -0.0000017574,0.0000017561,0.0000017553,0.0000017560,0.0000017587, -0.0000017632,0.0000017693,0.0000017745,0.0000017770,0.0000017764, -0.0000017739,0.0000017707,0.0000017689,0.0000017690,0.0000017714, -0.0000017744,0.0000017767,0.0000017782,0.0000017786,0.0000017785, -0.0000017782,0.0000017785,0.0000017784,0.0000017776,0.0000017762, -0.0000017739,0.0000017716,0.0000017674,0.0000017617,0.0000017558, -0.0000017506,0.0000017476,0.0000017458,0.0000017450,0.0000017452, -0.0000017457,0.0000017488,0.0000017547,0.0000017616,0.0000017680, -0.0000017732,0.0000017767,0.0000017787,0.0000017793,0.0000017778, -0.0000017749,0.0000017756,0.0000017758,0.0000017772,0.0000017790, -0.0000017805,0.0000017817,0.0000017828,0.0000017835,0.0000017829, -0.0000017821,0.0000017814,0.0000017806,0.0000017803,0.0000017807, -0.0000017812,0.0000017816,0.0000017821,0.0000017827,0.0000017834, -0.0000017842,0.0000017851,0.0000017866,0.0000017884,0.0000017898, -0.0000017911,0.0000017928,0.0000017947,0.0000017963,0.0000017978, -0.0000017991,0.0000018002,0.0000018010,0.0000018008,0.0000017997, -0.0000017981,0.0000017955,0.0000017941,0.0000017922,0.0000017905, -0.0000017891,0.0000017880,0.0000017870,0.0000017863,0.0000017857, -0.0000017859,0.0000017872,0.0000017899,0.0000017937,0.0000017981, -0.0000018025,0.0000018059,0.0000018083,0.0000018096,0.0000018100, -0.0000018101,0.0000018106,0.0000018114,0.0000018128,0.0000018149, -0.0000018175,0.0000018204,0.0000018242,0.0000018295,0.0000018361, -0.0000018428,0.0000018482,0.0000018513,0.0000018519,0.0000018516, -0.0000018489,0.0000018454,0.0000018423,0.0000018404,0.0000018397, -0.0000018397,0.0000018394,0.0000018392,0.0000018387,0.0000018379, -0.0000018371,0.0000018360,0.0000018330,0.0000018289,0.0000018241, -0.0000018207,0.0000018191,0.0000018186,0.0000018196,0.0000018224, -0.0000018264,0.0000018325,0.0000018397,0.0000018473,0.0000018547, -0.0000018608,0.0000018658,0.0000018693,0.0000018710,0.0000018717, -0.0000018709,0.0000018686,0.0000018649,0.0000018606,0.0000018561, -0.0000018519,0.0000018486,0.0000018468,0.0000018461,0.0000018458, -0.0000018454,0.0000018447,0.0000018438,0.0000018428,0.0000018418, -0.0000018409,0.0000018402,0.0000018395,0.0000018389,0.0000018385, -0.0000018387,0.0000018399,0.0000018418,0.0000018442,0.0000018474, -0.0000018514,0.0000018559,0.0000018606,0.0000018649,0.0000018681, -0.0000018695,0.0000018697,0.0000018693,0.0000018685,0.0000018672, -0.0000018654,0.0000018631,0.0000018602,0.0000018568,0.0000018531, -0.0000018496,0.0000018460,0.0000018418,0.0000018375,0.0000018336, -0.0000018305,0.0000018305,0.0000018329,0.0000018346,0.0000018399, -0.0000018476,0.0000018556,0.0000018622,0.0000018668,0.0000018690, -0.0000018687,0.0000018669,0.0000018644,0.0000018617,0.0000018593, -0.0000018576,0.0000018561,0.0000018555,0.0000018556,0.0000018562, -0.0000018573,0.0000018582,0.0000018593,0.0000018603,0.0000018612, -0.0000018619,0.0000018621,0.0000018625,0.0000018634,0.0000018639, -0.0000018644,0.0000018649,0.0000018664,0.0000018687,0.0000018715, -0.0000018738,0.0000018760,0.0000018768,0.0000018764,0.0000018757, -0.0000018733,0.0000018699,0.0000018660,0.0000018628,0.0000018620, -0.0000018624,0.0000018643,0.0000018675,0.0000018692,0.0000018702, -0.0000018703,0.0000018693,0.0000018689,0.0000018684,0.0000018671, -0.0000018665,0.0000018669,0.0000018672,0.0000018669,0.0000018653, -0.0000018622,0.0000018587,0.0000018554,0.0000018525,0.0000018500, -0.0000018468,0.0000018417,0.0000018338,0.0000018238,0.0000018139, -0.0000018071,0.0000018039,0.0000018032,0.0000018041,0.0000018056, -0.0000018068,0.0000018087,0.0000018109,0.0000018122,0.0000018128, -0.0000018122,0.0000018102,0.0000018071,0.0000018040,0.0000018003, -0.0000017962,0.0000017922,0.0000017883,0.0000017843,0.0000017810, -0.0000017778,0.0000017755,0.0000017751,0.0000017759,0.0000017771, -0.0000017776,0.0000017773,0.0000017764,0.0000017752,0.0000017750, -0.0000017774,0.0000017810,0.0000017846,0.0000017876,0.0000017902, -0.0000017923,0.0000017935,0.0000017929,0.0000017913,0.0000017887, -0.0000017853,0.0000017818,0.0000017781,0.0000017745,0.0000017716, -0.0000017711,0.0000017729,0.0000017764,0.0000017806,0.0000017844, -0.0000017876,0.0000017904,0.0000017924,0.0000017935,0.0000017935, -0.0000017928,0.0000017917,0.0000017900,0.0000017882,0.0000017873, -0.0000017866,0.0000017869,0.0000017881,0.0000017887,0.0000017890, -0.0000017879,0.0000017874,0.0000017876,0.0000017867,0.0000017869, -0.0000017866,0.0000017866,0.0000017867,0.0000017865,0.0000017876, -0.0000017892,0.0000017891,0.0000017886,0.0000017880,0.0000017865, -0.0000017869,0.0000017873,0.0000017880,0.0000017885,0.0000017897, -0.0000017902,0.0000017907,0.0000017911,0.0000017905,0.0000017899, -0.0000017880,0.0000017865,0.0000017856,0.0000017841,0.0000017814, -0.0000017778,0.0000017742,0.0000017699,0.0000017669,0.0000017670, -0.0000017681,0.0000017674,0.0000017650,0.0000017632,0.0000017635, -0.0000017666,0.0000017697,0.0000017718,0.0000017750,0.0000017771, -0.0000017785,0.0000017787,0.0000017787,0.0000017778,0.0000017775, -0.0000017764,0.0000017753,0.0000017748,0.0000017742,0.0000017746, -0.0000017766,0.0000017755,0.0000017746,0.0000017707,0.0000017657, -0.0000017608,0.0000017564,0.0000017549,0.0000017551,0.0000017572, -0.0000017615,0.0000017660,0.0000017686,0.0000017710,0.0000017731, -0.0000017756,0.0000017783,0.0000017808,0.0000017828,0.0000017862, -0.0000017905,0.0000017936,0.0000017955,0.0000017965,0.0000017967, -0.0000017975,0.0000017989,0.0000017998,0.0000017985,0.0000017954, -0.0000017920,0.0000017878,0.0000017824,0.0000017776,0.0000017733, -0.0000017701,0.0000017676,0.0000017653,0.0000017635,0.0000017613, -0.0000017598,0.0000017597,0.0000017614,0.0000017638,0.0000017664, -0.0000017686,0.0000017711,0.0000017725,0.0000017720,0.0000017700, -0.0000017649,0.0000017579,0.0000017501,0.0000017422,0.0000017365, -0.0000017317,0.0000017271,0.0000017238,0.0000017240,0.0000017271, -0.0000017332,0.0000017406,0.0000017482,0.0000017547,0.0000017595, -0.0000017621,0.0000017634,0.0000017634,0.0000017629,0.0000017629, -0.0000017630,0.0000017608,0.0000017573,0.0000017537,0.0000017495, -0.0000017433,0.0000017361,0.0000017299,0.0000017273,0.0000017272, -0.0000017292,0.0000017295,0.0000017293,0.0000017305,0.0000017338, -0.0000017385,0.0000017428,0.0000017462,0.0000017484,0.0000017505, -0.0000017537,0.0000017576,0.0000017612,0.0000017638,0.0000017663, -0.0000017700,0.0000017753,0.0000017817,0.0000017887,0.0000017972, -0.0000018066,0.0000018156,0.0000018238,0.0000018319,0.0000018394, -0.0000018473,0.0000018549,0.0000018621,0.0000018689,0.0000018746, -0.0000018786,0.0000018813,0.0000018826,0.0000018836,0.0000018851, -0.0000018880,0.0000018921,0.0000018967,0.0000019009,0.0000019040, -0.0000019028,0.0000018993,0.0000018946,0.0000018898,0.0000018859, -0.0000018833,0.0000018818,0.0000018815,0.0000018814,0.0000018802, -0.0000018770,0.0000018722,0.0000018673,0.0000018652,0.0000018659, -0.0000018678,0.0000018690,0.0000018686,0.0000018682,0.0000018696, -0.0000018748,0.0000018824,0.0000018891,0.0000018910,0.0000018886, -0.0000018841,0.0000018835,0.0000018872,0.0000018893,0.0000018867, -0.0000018817,0.0000018773,0.0000018703,0.0000018600,0.0000018532, -0.0000018536,0.0000018582,0.0000018603,0.0000018580,0.0000018515, -0.0000018446,0.0000018392,0.0000018351,0.0000018316,0.0000018287, -0.0000018272,0.0000018277,0.0000018295,0.0000018309,0.0000018302, -0.0000018275,0.0000018239,0.0000018204,0.0000018181,0.0000018178, -0.0000018199,0.0000018237,0.0000018277,0.0000018296,0.0000018294, -0.0000018270,0.0000018234,0.0000018207,0.0000018201,0.0000018204, -0.0000018201,0.0000018187,0.0000018161,0.0000018131,0.0000018107, -0.0000018097,0.0000018092,0.0000018080,0.0000018061,0.0000018047, -0.0000018047,0.0000018060,0.0000018085,0.0000018127,0.0000018181, -0.0000018244,0.0000018307,0.0000018366,0.0000018413,0.0000018450, -0.0000018474,0.0000018493,0.0000018514,0.0000018534,0.0000018550, -0.0000018568,0.0000018585,0.0000018592,0.0000018590,0.0000018586, -0.0000018590,0.0000018601,0.0000018612,0.0000018616,0.0000018609, -0.0000018574,0.0000018517,0.0000018460,0.0000018410,0.0000018371, -0.0000018346,0.0000018332,0.0000018322,0.0000018321,0.0000018326, -0.0000018339,0.0000018348,0.0000018352,0.0000018356,0.0000018362, -0.0000018359,0.0000018327,0.0000018273,0.0000018223,0.0000018184, -0.0000018149,0.0000018108,0.0000018062,0.0000018016,0.0000017972, -0.0000017936,0.0000017918,0.0000017922,0.0000017940,0.0000017961, -0.0000017977,0.0000017991,0.0000018012,0.0000018043,0.0000018070, -0.0000018074,0.0000018055,0.0000018024,0.0000017999,0.0000017981, -0.0000017957,0.0000017933,0.0000017932,0.0000017984,0.0000018087, -0.0000018165,0.0000018182,0.0000018131,0.0000018027,0.0000017914, -0.0000017836,0.0000017811,0.0000017813,0.0000017805,0.0000017768, -0.0000017709,0.0000017660,0.0000017618,0.0000017592,0.0000017590, -0.0000017606,0.0000017617,0.0000017618,0.0000017602,0.0000017571, -0.0000017536,0.0000017501,0.0000017481,0.0000017481,0.0000017489, -0.0000017504,0.0000017528,0.0000017552,0.0000017560,0.0000017559, -0.0000017548,0.0000017534,0.0000017524,0.0000017519,0.0000017517, -0.0000017518,0.0000017511,0.0000017497,0.0000017479,0.0000017467, -0.0000017465,0.0000017472,0.0000017489,0.0000017521,0.0000017571, -0.0000017636,0.0000017712,0.0000017787,0.0000017851,0.0000017909, -0.0000017954,0.0000017979,0.0000018012,0.0000018046,0.0000018036, -0.0000018041,0.0000018032,0.0000018006,0.0000017973,0.0000017939, -0.0000017902,0.0000017866,0.0000017825,0.0000017789,0.0000017750, -0.0000017706,0.0000017678,0.0000017680,0.0000017723,0.0000017798, -0.0000017871,0.0000017924,0.0000017975,0.0000018015,0.0000018042, -0.0000018068,0.0000018085,0.0000018083,0.0000018065,0.0000018038, -0.0000018015,0.0000018007,0.0000017994,0.0000017948,0.0000017897, -0.0000017893,0.0000017928,0.0000017954,0.0000017943,0.0000017915, -0.0000017894,0.0000017866,0.0000017838,0.0000017830,0.0000017826, -0.0000017875,0.0000018317,0.0000018820,0.0000018884,0.0000018747, -0.0000018656,0.0000018647,0.0000018685,0.0000018762,0.0000018813, -0.0000018630,0.0000018203,0.0000017925,0.0000017860,0.0000017877, -0.0000017940,0.0000017959,0.0000017885,0.0000017751,0.0000017620, -0.0000017531,0.0000017489,0.0000017476,0.0000017473,0.0000017476, -0.0000017480,0.0000017513,0.0000017597,0.0000017706,0.0000017819, -0.0000017886,0.0000017882,0.0000017830,0.0000017718,0.0000017589, -0.0000017519,0.0000017527,0.0000017568,0.0000017622,0.0000017714, -0.0000017786,0.0000017896,0.0000018218,0.0000018480,0.0000018419, -0.0000018211,0.0000018138,0.0000018210,0.0000018365,0.0000018447, -0.0000018515,0.0000018530,0.0000018509,0.0000018490,0.0000018486, -0.0000018477,0.0000018437,0.0000018360,0.0000018206,0.0000018010, -0.0000017824,0.0000017700,0.0000017653,0.0000017654,0.0000017669, -0.0000017654,0.0000017585,0.0000017484,0.0000017425,0.0000017431, -0.0000017510,0.0000017645,0.0000017779,0.0000017874,0.0000017918, -0.0000017920,0.0000017877,0.0000017805,0.0000017754,0.0000017740, -0.0000017741,0.0000017751,0.0000017764,0.0000017749,0.0000017677, -0.0000017595,0.0000017558,0.0000017551,0.0000017541,0.0000017524, -0.0000017510,0.0000017505,0.0000017516,0.0000017560,0.0000017643, -0.0000017737,0.0000017793,0.0000017802,0.0000017803,0.0000017819, -0.0000017849,0.0000017869,0.0000017865,0.0000017833,0.0000017781, -0.0000017737,0.0000017712,0.0000017703,0.0000017708,0.0000017725, -0.0000017743,0.0000017747,0.0000017737,0.0000017720,0.0000017694, -0.0000017655,0.0000017611,0.0000017577,0.0000017554,0.0000017537, -0.0000017521,0.0000017505,0.0000017493,0.0000017487,0.0000017484, -0.0000017479,0.0000017475,0.0000017468,0.0000017464,0.0000017468, -0.0000017475,0.0000017487,0.0000017510,0.0000017539,0.0000017567, -0.0000017588,0.0000017602,0.0000017614,0.0000017627,0.0000017638, -0.0000017646,0.0000017651,0.0000017657,0.0000017658,0.0000017649, -0.0000017627,0.0000017599,0.0000017576,0.0000017569,0.0000017584, -0.0000017631,0.0000017694,0.0000017737,0.0000017740,0.0000017700, -0.0000017644,0.0000017594,0.0000017525,0.0000017468,0.0000017484, -0.0000017596,0.0000017960,0.0000018016,0.0000018023,0.0000018038, -0.0000018081,0.0000018136,0.0000018193,0.0000018241,0.0000018276, -0.0000018305,0.0000018330,0.0000018349,0.0000018361,0.0000018369, -0.0000018376,0.0000018379,0.0000018381,0.0000018382,0.0000018380, -0.0000018377,0.0000018376,0.0000018382,0.0000018394,0.0000018402, -0.0000018400,0.0000018392,0.0000018384,0.0000018376,0.0000018381, -0.0000018402,0.0000018436,0.0000018473,0.0000018502,0.0000018515, -0.0000018514,0.0000018505,0.0000018493,0.0000018480,0.0000018467, -0.0000018457,0.0000018449,0.0000018442,0.0000018433,0.0000018420, -0.0000018407,0.0000018395,0.0000018386,0.0000018381,0.0000018375, -0.0000018364,0.0000018351,0.0000018335,0.0000018315,0.0000018289, -0.0000018256,0.0000018220,0.0000018182,0.0000018141,0.0000018107, -0.0000018081,0.0000018067,0.0000018075,0.0000018072,0.0000018089, -0.0000018110,0.0000018131,0.0000018149,0.0000018163,0.0000018174, -0.0000018189,0.0000018208,0.0000018229,0.0000018248,0.0000018266, -0.0000018285,0.0000018302,0.0000018317,0.0000018336,0.0000018360, -0.0000018385,0.0000018412,0.0000018442,0.0000018474,0.0000018504, -0.0000018525,0.0000018534,0.0000018539,0.0000018550,0.0000018569, -0.0000018589,0.0000018601,0.0000018611,0.0000018619,0.0000018627, -0.0000018638,0.0000018653,0.0000018663,0.0000018671,0.0000018672, -0.0000018667,0.0000018658,0.0000018638,0.0000018608,0.0000018577, -0.0000018544,0.0000018513,0.0000018491,0.0000018475,0.0000018468, -0.0000018470,0.0000018480,0.0000018496,0.0000018507,0.0000018522, -0.0000018538,0.0000018551,0.0000018564,0.0000018564,0.0000018577, -0.0000018587,0.0000018590,0.0000018586,0.0000018580,0.0000018571, -0.0000018559,0.0000018548,0.0000018537,0.0000018524,0.0000018509, -0.0000018491,0.0000018471,0.0000018448,0.0000018428,0.0000018413, -0.0000018403,0.0000018394,0.0000018381,0.0000018356,0.0000018314, -0.0000018253,0.0000018178,0.0000018103,0.0000018030,0.0000017960, -0.0000017901,0.0000017876,0.0000017861,0.0000017851,0.0000017853, -0.0000017865,0.0000017888,0.0000017921,0.0000017970,0.0000018030, -0.0000018096,0.0000018158,0.0000018213,0.0000018259,0.0000018296, -0.0000018328,0.0000018354,0.0000018358,0.0000018356,0.0000018350, -0.0000018339,0.0000018324,0.0000018307,0.0000018287,0.0000018263, -0.0000018244,0.0000018226,0.0000018212,0.0000018204,0.0000018199, -0.0000018192,0.0000018185,0.0000018182,0.0000018180,0.0000018177, -0.0000018177,0.0000018176,0.0000018178,0.0000018184,0.0000018189, -0.0000018191,0.0000018191,0.0000018188,0.0000018181,0.0000018170, -0.0000018155,0.0000018136,0.0000018113,0.0000018084,0.0000018052, -0.0000018016,0.0000017971,0.0000017922,0.0000017876,0.0000017837, -0.0000017813,0.0000017805,0.0000017801,0.0000017803,0.0000017812, -0.0000017822,0.0000017828,0.0000017829,0.0000017826,0.0000017820, -0.0000017816,0.0000017813,0.0000017809,0.0000017805,0.0000017796, -0.0000017782,0.0000017768,0.0000017764,0.0000017774,0.0000017807, -0.0000017856,0.0000017908,0.0000017963,0.0000018018,0.0000018068, -0.0000018113,0.0000018157,0.0000018200,0.0000018235,0.0000018258, -0.0000018271,0.0000018274,0.0000018268,0.0000018265,0.0000018266, -0.0000018267,0.0000018269,0.0000018273,0.0000018278,0.0000018282, -0.0000018289,0.0000018287,0.0000018278,0.0000018263,0.0000018244, -0.0000018224,0.0000018200,0.0000018167,0.0000018129,0.0000018094, -0.0000018046,0.0000017989,0.0000017929,0.0000017869,0.0000017810, -0.0000017758,0.0000017724,0.0000017701,0.0000017673,0.0000017641, -0.0000017608,0.0000017580,0.0000017573,0.0000017601,0.0000017655, -0.0000017722,0.0000017770,0.0000017789,0.0000017779,0.0000017754, -0.0000017730,0.0000017718,0.0000017721,0.0000017735,0.0000017744, -0.0000017746,0.0000017741,0.0000017734,0.0000017729,0.0000017728, -0.0000017734,0.0000017740,0.0000017748,0.0000017758,0.0000017768, -0.0000017754,0.0000017708,0.0000017640,0.0000017575,0.0000017515, -0.0000017468,0.0000017443,0.0000017430,0.0000017440,0.0000017473, -0.0000017498,0.0000017543,0.0000017592,0.0000017633,0.0000017665, -0.0000017695,0.0000017729,0.0000017769,0.0000017810,0.0000017850, -0.0000017878,0.0000017893,0.0000017902,0.0000017913,0.0000017926, -0.0000017922,0.0000017926,0.0000017928,0.0000017927,0.0000017932, -0.0000017943,0.0000017952,0.0000017960,0.0000017970,0.0000017982, -0.0000017993,0.0000018002,0.0000018015,0.0000018032,0.0000018046, -0.0000018055,0.0000018062,0.0000018068,0.0000018069,0.0000018068, -0.0000018061,0.0000018051,0.0000018036,0.0000018019,0.0000017990, -0.0000017959,0.0000017929,0.0000017904,0.0000017885,0.0000017874, -0.0000017869,0.0000017869,0.0000017868,0.0000017877,0.0000017889, -0.0000017908,0.0000017938,0.0000017977,0.0000018018,0.0000018051, -0.0000018077,0.0000018094,0.0000018105,0.0000018113,0.0000018117, -0.0000018124,0.0000018140,0.0000018159,0.0000018180,0.0000018203, -0.0000018237,0.0000018285,0.0000018347,0.0000018411,0.0000018464, -0.0000018495,0.0000018505,0.0000018510,0.0000018493,0.0000018464, -0.0000018434,0.0000018415,0.0000018411,0.0000018410,0.0000018412, -0.0000018406,0.0000018395,0.0000018388,0.0000018383,0.0000018377, -0.0000018362,0.0000018326,0.0000018285,0.0000018253,0.0000018232, -0.0000018226,0.0000018239,0.0000018262,0.0000018287,0.0000018326, -0.0000018376,0.0000018444,0.0000018518,0.0000018589,0.0000018649, -0.0000018690,0.0000018719,0.0000018734,0.0000018737,0.0000018726, -0.0000018699,0.0000018654,0.0000018595,0.0000018538,0.0000018493, -0.0000018461,0.0000018440,0.0000018431,0.0000018429,0.0000018430, -0.0000018429,0.0000018425,0.0000018418,0.0000018410,0.0000018403, -0.0000018398,0.0000018397,0.0000018396,0.0000018395,0.0000018395, -0.0000018398,0.0000018402,0.0000018406,0.0000018411,0.0000018422, -0.0000018443,0.0000018480,0.0000018531,0.0000018589,0.0000018646, -0.0000018689,0.0000018711,0.0000018719,0.0000018720,0.0000018715, -0.0000018704,0.0000018688,0.0000018669,0.0000018646,0.0000018620, -0.0000018595,0.0000018572,0.0000018547,0.0000018514,0.0000018475, -0.0000018435,0.0000018400,0.0000018374,0.0000018358,0.0000018360, -0.0000018398,0.0000018453,0.0000018519,0.0000018584,0.0000018641, -0.0000018675,0.0000018687,0.0000018676,0.0000018646,0.0000018610, -0.0000018574,0.0000018548,0.0000018537,0.0000018541,0.0000018560, -0.0000018582,0.0000018604,0.0000018622,0.0000018634,0.0000018637, -0.0000018634,0.0000018625,0.0000018618,0.0000018608,0.0000018591, -0.0000018572,0.0000018561,0.0000018563,0.0000018578,0.0000018601, -0.0000018637,0.0000018685,0.0000018726,0.0000018757,0.0000018776, -0.0000018776,0.0000018754,0.0000018728,0.0000018698,0.0000018674, -0.0000018659,0.0000018659,0.0000018674,0.0000018695,0.0000018721, -0.0000018750,0.0000018783,0.0000018796,0.0000018795,0.0000018773, -0.0000018734,0.0000018699,0.0000018674,0.0000018658,0.0000018653, -0.0000018652,0.0000018649,0.0000018636,0.0000018610,0.0000018575, -0.0000018540,0.0000018515,0.0000018493,0.0000018457,0.0000018393, -0.0000018309,0.0000018217,0.0000018142,0.0000018091,0.0000018068, -0.0000018067,0.0000018077,0.0000018086,0.0000018094,0.0000018107, -0.0000018114,0.0000018113,0.0000018106,0.0000018097,0.0000018085, -0.0000018072,0.0000018055,0.0000018024,0.0000017986,0.0000017949, -0.0000017906,0.0000017861,0.0000017827,0.0000017806,0.0000017797, -0.0000017794,0.0000017790,0.0000017786,0.0000017782,0.0000017791, -0.0000017814,0.0000017845,0.0000017878,0.0000017908,0.0000017935, -0.0000017959,0.0000017972,0.0000017972,0.0000017961,0.0000017944, -0.0000017919,0.0000017887,0.0000017849,0.0000017810,0.0000017785, -0.0000017786,0.0000017804,0.0000017834,0.0000017864,0.0000017895, -0.0000017927,0.0000017950,0.0000017966,0.0000017976,0.0000017978, -0.0000017977,0.0000017972,0.0000017959,0.0000017949,0.0000017936, -0.0000017926,0.0000017927,0.0000017936,0.0000017940,0.0000017940, -0.0000017934,0.0000017939,0.0000017940,0.0000017940,0.0000017940, -0.0000017933,0.0000017946,0.0000017949,0.0000017966,0.0000017986, -0.0000017986,0.0000017992,0.0000017983,0.0000017974,0.0000017962, -0.0000017953,0.0000017953,0.0000017958,0.0000017966,0.0000017975, -0.0000017982,0.0000017993,0.0000017993,0.0000017991,0.0000017973, -0.0000017954,0.0000017940,0.0000017928,0.0000017908,0.0000017890, -0.0000017859,0.0000017828,0.0000017778,0.0000017740,0.0000017729, -0.0000017729,0.0000017718,0.0000017692,0.0000017688,0.0000017711, -0.0000017743,0.0000017769,0.0000017797,0.0000017830,0.0000017856, -0.0000017858,0.0000017848,0.0000017826,0.0000017803,0.0000017782, -0.0000017756,0.0000017740,0.0000017723,0.0000017709,0.0000017728, -0.0000017733,0.0000017740,0.0000017730,0.0000017699,0.0000017647, -0.0000017598,0.0000017566,0.0000017550,0.0000017564,0.0000017599, -0.0000017638,0.0000017656,0.0000017674,0.0000017702,0.0000017724, -0.0000017750,0.0000017779,0.0000017797,0.0000017823,0.0000017865, -0.0000017910,0.0000017945,0.0000017978,0.0000017998,0.0000018010, -0.0000018012,0.0000018016,0.0000018013,0.0000017995,0.0000017970, -0.0000017941,0.0000017906,0.0000017865,0.0000017820,0.0000017779, -0.0000017740,0.0000017709,0.0000017689,0.0000017669,0.0000017660, -0.0000017666,0.0000017688,0.0000017712,0.0000017736,0.0000017753, -0.0000017772,0.0000017784,0.0000017785,0.0000017772,0.0000017732, -0.0000017669,0.0000017598,0.0000017521,0.0000017445,0.0000017372, -0.0000017294,0.0000017221,0.0000017184,0.0000017159,0.0000017171, -0.0000017199,0.0000017243,0.0000017284,0.0000017319,0.0000017339, -0.0000017356,0.0000017371,0.0000017393,0.0000017432,0.0000017470, -0.0000017491,0.0000017502,0.0000017500,0.0000017478,0.0000017437, -0.0000017376,0.0000017312,0.0000017265,0.0000017255,0.0000017266, -0.0000017255,0.0000017250,0.0000017242,0.0000017265,0.0000017314, -0.0000017363,0.0000017395,0.0000017409,0.0000017411,0.0000017415, -0.0000017428,0.0000017446,0.0000017458,0.0000017464,0.0000017468, -0.0000017486,0.0000017518,0.0000017574,0.0000017648,0.0000017731, -0.0000017810,0.0000017875,0.0000017942,0.0000018020,0.0000018131, -0.0000018258,0.0000018383,0.0000018491,0.0000018580,0.0000018658, -0.0000018718,0.0000018753,0.0000018771,0.0000018782,0.0000018801, -0.0000018831,0.0000018875,0.0000018936,0.0000018994,0.0000019025, -0.0000019040,0.0000019034,0.0000019003,0.0000018956,0.0000018900, -0.0000018857,0.0000018843,0.0000018846,0.0000018853,0.0000018856, -0.0000018852,0.0000018828,0.0000018786,0.0000018738,0.0000018706, -0.0000018695,0.0000018687,0.0000018673,0.0000018659,0.0000018658, -0.0000018682,0.0000018742,0.0000018817,0.0000018863,0.0000018866, -0.0000018849,0.0000018856,0.0000018886,0.0000018902,0.0000018876, -0.0000018822,0.0000018764,0.0000018693,0.0000018606,0.0000018550, -0.0000018540,0.0000018559,0.0000018564,0.0000018536,0.0000018482, -0.0000018426,0.0000018384,0.0000018353,0.0000018327,0.0000018315, -0.0000018324,0.0000018348,0.0000018370,0.0000018371,0.0000018354, -0.0000018324,0.0000018285,0.0000018249,0.0000018231,0.0000018241, -0.0000018271,0.0000018306,0.0000018328,0.0000018329,0.0000018302, -0.0000018255,0.0000018214,0.0000018196,0.0000018188,0.0000018180, -0.0000018164,0.0000018137,0.0000018104,0.0000018081,0.0000018075, -0.0000018080,0.0000018090,0.0000018098,0.0000018103,0.0000018108, -0.0000018116,0.0000018135,0.0000018174,0.0000018230,0.0000018298, -0.0000018368,0.0000018431,0.0000018478,0.0000018504,0.0000018516, -0.0000018526,0.0000018539,0.0000018551,0.0000018559,0.0000018568, -0.0000018574,0.0000018568,0.0000018562,0.0000018560,0.0000018570, -0.0000018589,0.0000018608,0.0000018615,0.0000018594,0.0000018552, -0.0000018503,0.0000018445,0.0000018386,0.0000018337,0.0000018304, -0.0000018290,0.0000018294,0.0000018316,0.0000018343,0.0000018365, -0.0000018372,0.0000018367,0.0000018359,0.0000018357,0.0000018356, -0.0000018344,0.0000018315,0.0000018280,0.0000018255,0.0000018236, -0.0000018207,0.0000018154,0.0000018078,0.0000017995,0.0000017924, -0.0000017884,0.0000017876,0.0000017888,0.0000017913,0.0000017947, -0.0000017980,0.0000018001,0.0000018015,0.0000018033,0.0000018040, -0.0000018027,0.0000017995,0.0000017959,0.0000017939,0.0000017934, -0.0000017932,0.0000017946,0.0000017995,0.0000018089,0.0000018188, -0.0000018248,0.0000018231,0.0000018135,0.0000018000,0.0000017872, -0.0000017802,0.0000017775,0.0000017772,0.0000017758,0.0000017718, -0.0000017658,0.0000017590,0.0000017545,0.0000017542,0.0000017556, -0.0000017579,0.0000017598,0.0000017596,0.0000017577,0.0000017546, -0.0000017512,0.0000017483,0.0000017472,0.0000017473,0.0000017491, -0.0000017519,0.0000017538,0.0000017546,0.0000017540,0.0000017522, -0.0000017501,0.0000017479,0.0000017464,0.0000017452,0.0000017433, -0.0000017408,0.0000017387,0.0000017375,0.0000017380,0.0000017397, -0.0000017420,0.0000017443,0.0000017469,0.0000017501,0.0000017546, -0.0000017599,0.0000017653,0.0000017712,0.0000017766,0.0000017806, -0.0000017840,0.0000017879,0.0000017916,0.0000017957,0.0000017993, -0.0000018013,0.0000018012,0.0000018015,0.0000018000,0.0000017969, -0.0000017929,0.0000017889,0.0000017842,0.0000017786,0.0000017734, -0.0000017716,0.0000017744,0.0000017810,0.0000017876,0.0000017933, -0.0000017980,0.0000018027,0.0000018060,0.0000018085,0.0000018103, -0.0000018101,0.0000018076,0.0000018043,0.0000018017,0.0000018001, -0.0000017973,0.0000017917,0.0000017878,0.0000017897,0.0000017943, -0.0000017955,0.0000017929,0.0000017903,0.0000017879,0.0000017848, -0.0000017832,0.0000017829,0.0000017830,0.0000018110,0.0000018666, -0.0000018902,0.0000018827,0.0000018717,0.0000018682,0.0000018688, -0.0000018741,0.0000018805,0.0000018720,0.0000018366,0.0000018054, -0.0000017925,0.0000017902,0.0000017938,0.0000017947,0.0000017864, -0.0000017734,0.0000017618,0.0000017541,0.0000017501,0.0000017486, -0.0000017486,0.0000017488,0.0000017489,0.0000017487,0.0000017482, -0.0000017484,0.0000017522,0.0000017633,0.0000017772,0.0000017874, -0.0000017882,0.0000017807,0.0000017661,0.0000017541,0.0000017526, -0.0000017568,0.0000017616,0.0000017700,0.0000017794,0.0000017844, -0.0000017983,0.0000018269,0.0000018500,0.0000018573,0.0000018568, -0.0000018525,0.0000018450,0.0000018352,0.0000018247,0.0000018163, -0.0000018120,0.0000018121,0.0000018171,0.0000018264,0.0000018359, -0.0000018400,0.0000018353,0.0000018186,0.0000017959,0.0000017768, -0.0000017660,0.0000017626,0.0000017632,0.0000017657,0.0000017656, -0.0000017593,0.0000017497,0.0000017423,0.0000017420,0.0000017493, -0.0000017628,0.0000017772,0.0000017875,0.0000017920,0.0000017911, -0.0000017849,0.0000017776,0.0000017740,0.0000017738,0.0000017749, -0.0000017763,0.0000017763,0.0000017713,0.0000017635,0.0000017588, -0.0000017580,0.0000017573,0.0000017548,0.0000017518,0.0000017500, -0.0000017497,0.0000017505,0.0000017536,0.0000017610,0.0000017709, -0.0000017780,0.0000017796,0.0000017796,0.0000017812,0.0000017837, -0.0000017843,0.0000017832,0.0000017797,0.0000017754,0.0000017722, -0.0000017707,0.0000017703,0.0000017708,0.0000017725,0.0000017737, -0.0000017736,0.0000017729,0.0000017718,0.0000017696,0.0000017659, -0.0000017615,0.0000017578,0.0000017553,0.0000017537,0.0000017522, -0.0000017511,0.0000017506,0.0000017504,0.0000017500,0.0000017495, -0.0000017491,0.0000017488,0.0000017487,0.0000017491,0.0000017503, -0.0000017520,0.0000017537,0.0000017549,0.0000017555,0.0000017558, -0.0000017563,0.0000017571,0.0000017581,0.0000017591,0.0000017602, -0.0000017607,0.0000017599,0.0000017580,0.0000017564,0.0000017562, -0.0000017583,0.0000017638,0.0000017707,0.0000017753,0.0000017755, -0.0000017715,0.0000017658,0.0000017604,0.0000017531,0.0000017480, -0.0000017505,0.0000017646,0.0000017824,0.0000018028,0.0000018031, -0.0000018064,0.0000018133,0.0000018212,0.0000018282,0.0000018333, -0.0000018367,0.0000018387,0.0000018402,0.0000018416,0.0000018429, -0.0000018439,0.0000018450,0.0000018458,0.0000018460,0.0000018458, -0.0000018455,0.0000018450,0.0000018442,0.0000018434,0.0000018428, -0.0000018428,0.0000018430,0.0000018429,0.0000018427,0.0000018427, -0.0000018436,0.0000018458,0.0000018488,0.0000018508,0.0000018514, -0.0000018515,0.0000018513,0.0000018513,0.0000018514,0.0000018515, -0.0000018514,0.0000018511,0.0000018504,0.0000018495,0.0000018486, -0.0000018472,0.0000018456,0.0000018443,0.0000018436,0.0000018435, -0.0000018447,0.0000018462,0.0000018472,0.0000018477,0.0000018476, -0.0000018467,0.0000018450,0.0000018424,0.0000018391,0.0000018351, -0.0000018307,0.0000018263,0.0000018220,0.0000018179,0.0000018141, -0.0000018105,0.0000018076,0.0000018064,0.0000018055,0.0000018058, -0.0000018065,0.0000018077,0.0000018093,0.0000018115,0.0000018140, -0.0000018161,0.0000018177,0.0000018191,0.0000018207,0.0000018223, -0.0000018243,0.0000018270,0.0000018304,0.0000018341,0.0000018382, -0.0000018424,0.0000018467,0.0000018498,0.0000018515,0.0000018522, -0.0000018529,0.0000018541,0.0000018555,0.0000018565,0.0000018574, -0.0000018577,0.0000018578,0.0000018583,0.0000018592,0.0000018601, -0.0000018609,0.0000018615,0.0000018616,0.0000018608,0.0000018590, -0.0000018567,0.0000018541,0.0000018512,0.0000018484,0.0000018460, -0.0000018441,0.0000018428,0.0000018423,0.0000018426,0.0000018431, -0.0000018436,0.0000018446,0.0000018461,0.0000018478,0.0000018497, -0.0000018511,0.0000018530,0.0000018548,0.0000018564,0.0000018579, -0.0000018579,0.0000018588,0.0000018590,0.0000018584,0.0000018572, -0.0000018562,0.0000018556,0.0000018549,0.0000018540,0.0000018529, -0.0000018517,0.0000018502,0.0000018480,0.0000018455,0.0000018440, -0.0000018436,0.0000018435,0.0000018428,0.0000018411,0.0000018380, -0.0000018333,0.0000018268,0.0000018187,0.0000018102,0.0000018018, -0.0000017940,0.0000017875,0.0000017847,0.0000017836,0.0000017828, -0.0000017831,0.0000017851,0.0000017886,0.0000017927,0.0000017970, -0.0000018010,0.0000018048,0.0000018085,0.0000018120,0.0000018152, -0.0000018179,0.0000018201,0.0000018216,0.0000018224,0.0000018227, -0.0000018226,0.0000018224,0.0000018225,0.0000018216,0.0000018208, -0.0000018206,0.0000018209,0.0000018214,0.0000018221,0.0000018227, -0.0000018230,0.0000018230,0.0000018226,0.0000018223,0.0000018224, -0.0000018230,0.0000018236,0.0000018241,0.0000018244,0.0000018243, -0.0000018239,0.0000018233,0.0000018224,0.0000018212,0.0000018196, -0.0000018175,0.0000018149,0.0000018116,0.0000018075,0.0000018028, -0.0000017977,0.0000017925,0.0000017878,0.0000017843,0.0000017822, -0.0000017811,0.0000017807,0.0000017798,0.0000017782,0.0000017764, -0.0000017744,0.0000017726,0.0000017711,0.0000017702,0.0000017699, -0.0000017703,0.0000017708,0.0000017712,0.0000017715,0.0000017717, -0.0000017726,0.0000017752,0.0000017795,0.0000017845,0.0000017898, -0.0000017951,0.0000017998,0.0000018039,0.0000018081,0.0000018125, -0.0000018165,0.0000018196,0.0000018221,0.0000018241,0.0000018256, -0.0000018272,0.0000018291,0.0000018310,0.0000018317,0.0000018322, -0.0000018326,0.0000018333,0.0000018345,0.0000018352,0.0000018350, -0.0000018345,0.0000018336,0.0000018322,0.0000018300,0.0000018271, -0.0000018237,0.0000018206,0.0000018167,0.0000018123,0.0000018074, -0.0000018028,0.0000017985,0.0000017942,0.0000017900,0.0000017865, -0.0000017826,0.0000017783,0.0000017739,0.0000017700,0.0000017661, -0.0000017628,0.0000017607,0.0000017609,0.0000017633,0.0000017686, -0.0000017758,0.0000017811,0.0000017829,0.0000017812,0.0000017771, -0.0000017732,0.0000017707,0.0000017697,0.0000017692,0.0000017688, -0.0000017682,0.0000017683,0.0000017702,0.0000017724,0.0000017742, -0.0000017770,0.0000017788,0.0000017799,0.0000017799,0.0000017781, -0.0000017739,0.0000017678,0.0000017619,0.0000017574,0.0000017546, -0.0000017525,0.0000017514,0.0000017509,0.0000017512,0.0000017512, -0.0000017527,0.0000017551,0.0000017563,0.0000017606,0.0000017655, -0.0000017707,0.0000017763,0.0000017801,0.0000017843,0.0000017879, -0.0000017909,0.0000017927,0.0000017953,0.0000017973,0.0000017985, -0.0000017999,0.0000018016,0.0000018027,0.0000018037,0.0000018051, -0.0000018060,0.0000018074,0.0000018089,0.0000018097,0.0000018103, -0.0000018111,0.0000018113,0.0000018110,0.0000018102,0.0000018089, -0.0000018075,0.0000018056,0.0000018035,0.0000018012,0.0000017986, -0.0000017958,0.0000017932,0.0000017908,0.0000017887,0.0000017876, -0.0000017869,0.0000017874,0.0000017885,0.0000017904,0.0000017931, -0.0000017962,0.0000017994,0.0000018026,0.0000018055,0.0000018077, -0.0000018092,0.0000018106,0.0000018117,0.0000018127,0.0000018138, -0.0000018146,0.0000018159,0.0000018179,0.0000018201,0.0000018228, -0.0000018268,0.0000018325,0.0000018388,0.0000018444,0.0000018478, -0.0000018490,0.0000018494,0.0000018481,0.0000018460,0.0000018438, -0.0000018425,0.0000018422,0.0000018427,0.0000018437,0.0000018439, -0.0000018432,0.0000018424,0.0000018415,0.0000018403,0.0000018393, -0.0000018374,0.0000018343,0.0000018304,0.0000018278,0.0000018271, -0.0000018278,0.0000018294,0.0000018310,0.0000018330,0.0000018354, -0.0000018395,0.0000018455,0.0000018525,0.0000018596,0.0000018656, -0.0000018698,0.0000018723,0.0000018736,0.0000018740,0.0000018727, -0.0000018688,0.0000018631,0.0000018568,0.0000018507,0.0000018457, -0.0000018423,0.0000018406,0.0000018401,0.0000018402,0.0000018405, -0.0000018408,0.0000018408,0.0000018407,0.0000018406,0.0000018405, -0.0000018403,0.0000018402,0.0000018405,0.0000018410,0.0000018414, -0.0000018416,0.0000018414,0.0000018409,0.0000018402,0.0000018400, -0.0000018404,0.0000018416,0.0000018441,0.0000018480,0.0000018535, -0.0000018599,0.0000018659,0.0000018700,0.0000018723,0.0000018732, -0.0000018735,0.0000018730,0.0000018720,0.0000018706,0.0000018691, -0.0000018672,0.0000018655,0.0000018642,0.0000018631,0.0000018617, -0.0000018596,0.0000018567,0.0000018532,0.0000018496,0.0000018462, -0.0000018436,0.0000018429,0.0000018440,0.0000018474,0.0000018509, -0.0000018566,0.0000018616,0.0000018651,0.0000018668,0.0000018663, -0.0000018641,0.0000018603,0.0000018566,0.0000018539,0.0000018532, -0.0000018542,0.0000018564,0.0000018594,0.0000018622,0.0000018638, -0.0000018645,0.0000018642,0.0000018631,0.0000018619,0.0000018601, -0.0000018579,0.0000018554,0.0000018536,0.0000018526,0.0000018520, -0.0000018517,0.0000018528,0.0000018560,0.0000018600,0.0000018638, -0.0000018674,0.0000018704,0.0000018720,0.0000018731,0.0000018742, -0.0000018744,0.0000018748,0.0000018747,0.0000018744,0.0000018741, -0.0000018737,0.0000018744,0.0000018764,0.0000018788,0.0000018816, -0.0000018845,0.0000018849,0.0000018829,0.0000018790,0.0000018738, -0.0000018688,0.0000018654,0.0000018640,0.0000018640,0.0000018645, -0.0000018647,0.0000018636,0.0000018609,0.0000018573,0.0000018535, -0.0000018500,0.0000018468,0.0000018432,0.0000018380,0.0000018304, -0.0000018216,0.0000018147,0.0000018103,0.0000018087,0.0000018086, -0.0000018093,0.0000018096,0.0000018094,0.0000018094,0.0000018094, -0.0000018092,0.0000018095,0.0000018097,0.0000018091,0.0000018076, -0.0000018053,0.0000018023,0.0000017989,0.0000017954,0.0000017923, -0.0000017896,0.0000017874,0.0000017853,0.0000017835,0.0000017823, -0.0000017832,0.0000017850,0.0000017874,0.0000017901,0.0000017924, -0.0000017943,0.0000017959,0.0000017969,0.0000017971,0.0000017965, -0.0000017956,0.0000017942,0.0000017919,0.0000017890,0.0000017870, -0.0000017870,0.0000017883,0.0000017902,0.0000017922,0.0000017939, -0.0000017966,0.0000017997,0.0000018020,0.0000018041,0.0000018059, -0.0000018069,0.0000018071,0.0000018069,0.0000018065,0.0000018058, -0.0000018045,0.0000018025,0.0000018014,0.0000018002,0.0000017987, -0.0000017970,0.0000017956,0.0000017948,0.0000017942,0.0000017941, -0.0000017936,0.0000017945,0.0000017950,0.0000017968,0.0000017993, -0.0000018012,0.0000018020,0.0000018023,0.0000018021,0.0000018010, -0.0000018003,0.0000017997,0.0000017993,0.0000017995,0.0000018008, -0.0000018017,0.0000018028,0.0000018042,0.0000018055,0.0000018056, -0.0000018042,0.0000018034,0.0000018014,0.0000017991,0.0000017970, -0.0000017950,0.0000017929,0.0000017898,0.0000017855,0.0000017811, -0.0000017776,0.0000017758,0.0000017740,0.0000017729,0.0000017736, -0.0000017757,0.0000017791,0.0000017826,0.0000017864,0.0000017906, -0.0000017926,0.0000017932,0.0000017911,0.0000017879,0.0000017849, -0.0000017814,0.0000017782,0.0000017756,0.0000017726,0.0000017728, -0.0000017732,0.0000017746,0.0000017749,0.0000017741,0.0000017703, -0.0000017656,0.0000017608,0.0000017574,0.0000017571,0.0000017592, -0.0000017615,0.0000017625,0.0000017635,0.0000017650,0.0000017665, -0.0000017686,0.0000017720,0.0000017750,0.0000017785,0.0000017826, -0.0000017872,0.0000017918,0.0000017967,0.0000017999,0.0000018021, -0.0000018027,0.0000018026,0.0000018022,0.0000018014,0.0000017999, -0.0000017984,0.0000017971,0.0000017943,0.0000017907,0.0000017865, -0.0000017814,0.0000017773,0.0000017743,0.0000017711,0.0000017696, -0.0000017702,0.0000017727,0.0000017757,0.0000017786,0.0000017804, -0.0000017822,0.0000017833,0.0000017835,0.0000017824,0.0000017793, -0.0000017747,0.0000017692,0.0000017634,0.0000017571,0.0000017503, -0.0000017429,0.0000017348,0.0000017272,0.0000017222,0.0000017195, -0.0000017191,0.0000017216,0.0000017233,0.0000017249,0.0000017247, -0.0000017245,0.0000017249,0.0000017271,0.0000017317,0.0000017368, -0.0000017415,0.0000017456,0.0000017481,0.0000017486,0.0000017477, -0.0000017449,0.0000017402,0.0000017355,0.0000017335,0.0000017336, -0.0000017317,0.0000017287,0.0000017267,0.0000017273,0.0000017313, -0.0000017361,0.0000017394,0.0000017412,0.0000017414,0.0000017412, -0.0000017417,0.0000017422,0.0000017426,0.0000017422,0.0000017409, -0.0000017390,0.0000017375,0.0000017388,0.0000017424,0.0000017471, -0.0000017516,0.0000017559,0.0000017592,0.0000017626,0.0000017695, -0.0000017811,0.0000017968,0.0000018131,0.0000018275,0.0000018406, -0.0000018516,0.0000018598,0.0000018661,0.0000018709,0.0000018748, -0.0000018772,0.0000018794,0.0000018826,0.0000018861,0.0000018898, -0.0000018940,0.0000018980,0.0000018995,0.0000018999,0.0000018985, -0.0000018954,0.0000018921,0.0000018895,0.0000018876,0.0000018874, -0.0000018882,0.0000018888,0.0000018888,0.0000018879,0.0000018849, -0.0000018801,0.0000018744,0.0000018685,0.0000018639,0.0000018611, -0.0000018613,0.0000018644,0.0000018692,0.0000018745,0.0000018797, -0.0000018839,0.0000018865,0.0000018879,0.0000018890,0.0000018893, -0.0000018869,0.0000018813,0.0000018752,0.0000018691,0.0000018616, -0.0000018555,0.0000018527,0.0000018529,0.0000018530,0.0000018505, -0.0000018461,0.0000018420,0.0000018387,0.0000018361,0.0000018348, -0.0000018355,0.0000018384,0.0000018420,0.0000018441,0.0000018441, -0.0000018425,0.0000018391,0.0000018346,0.0000018310,0.0000018295, -0.0000018303,0.0000018322,0.0000018335,0.0000018332,0.0000018309, -0.0000018266,0.0000018221,0.0000018187,0.0000018165,0.0000018151, -0.0000018131,0.0000018095,0.0000018059,0.0000018048,0.0000018058, -0.0000018080,0.0000018101,0.0000018123,0.0000018140,0.0000018148, -0.0000018163,0.0000018187,0.0000018227,0.0000018292,0.0000018369, -0.0000018441,0.0000018497,0.0000018530,0.0000018551,0.0000018566, -0.0000018585,0.0000018601,0.0000018605,0.0000018600,0.0000018589, -0.0000018576,0.0000018564,0.0000018558,0.0000018561,0.0000018576, -0.0000018601,0.0000018624,0.0000018618,0.0000018590,0.0000018553, -0.0000018516,0.0000018473,0.0000018419,0.0000018357,0.0000018301, -0.0000018271,0.0000018276,0.0000018307,0.0000018347,0.0000018375, -0.0000018383,0.0000018371,0.0000018353,0.0000018346,0.0000018351, -0.0000018362,0.0000018365,0.0000018362,0.0000018344,0.0000018320, -0.0000018284,0.0000018228,0.0000018146,0.0000018039,0.0000017934, -0.0000017862,0.0000017837,0.0000017845,0.0000017884,0.0000017943, -0.0000017984,0.0000017991,0.0000017980,0.0000017978,0.0000017983, -0.0000017980,0.0000017954,0.0000017921,0.0000017915,0.0000017934, -0.0000017962,0.0000017984,0.0000018020,0.0000018093,0.0000018189, -0.0000018254,0.0000018260,0.0000018203,0.0000018077,0.0000017920, -0.0000017798,0.0000017747,0.0000017740,0.0000017745,0.0000017733, -0.0000017682,0.0000017609,0.0000017544,0.0000017510,0.0000017508, -0.0000017528,0.0000017547,0.0000017559,0.0000017552,0.0000017544, -0.0000017525,0.0000017505,0.0000017490,0.0000017489,0.0000017500, -0.0000017516,0.0000017538,0.0000017545,0.0000017538,0.0000017523, -0.0000017501,0.0000017480,0.0000017454,0.0000017417,0.0000017370, -0.0000017325,0.0000017287,0.0000017269,0.0000017278,0.0000017310, -0.0000017352,0.0000017391,0.0000017423,0.0000017456,0.0000017489, -0.0000017520,0.0000017556,0.0000017594,0.0000017632,0.0000017668, -0.0000017708,0.0000017751,0.0000017788,0.0000017828,0.0000017876, -0.0000017915,0.0000017962,0.0000017997,0.0000017992,0.0000017989, -0.0000017970,0.0000017936,0.0000017885,0.0000017833,0.0000017811, -0.0000017815,0.0000017846,0.0000017894,0.0000017945,0.0000017986, -0.0000018028,0.0000018065,0.0000018094,0.0000018113,0.0000018114, -0.0000018086,0.0000018046,0.0000018009,0.0000017978,0.0000017943, -0.0000017897,0.0000017880,0.0000017908,0.0000017946,0.0000017946, -0.0000017920,0.0000017884,0.0000017845,0.0000017826,0.0000017830, -0.0000017830,0.0000017956,0.0000018452,0.0000018867,0.0000018888, -0.0000018780,0.0000018721,0.0000018713,0.0000018740,0.0000018804, -0.0000018787,0.0000018540,0.0000018229,0.0000018035,0.0000017936, -0.0000017937,0.0000017944,0.0000017874,0.0000017764,0.0000017671, -0.0000017598,0.0000017554,0.0000017532,0.0000017525,0.0000017523, -0.0000017520,0.0000017516,0.0000017514,0.0000017513,0.0000017503, -0.0000017490,0.0000017500,0.0000017591,0.0000017753,0.0000017870, -0.0000017856,0.0000017736,0.0000017579,0.0000017528,0.0000017574, -0.0000017615,0.0000017674,0.0000017773,0.0000017844,0.0000017871, -0.0000017925,0.0000018011,0.0000018071,0.0000018069,0.0000018012, -0.0000017941,0.0000017886,0.0000017858,0.0000017848,0.0000017845, -0.0000017847,0.0000017872,0.0000017949,0.0000018092,0.0000018264, -0.0000018349,0.0000018310,0.0000018104,0.0000017864,0.0000017701, -0.0000017617,0.0000017591,0.0000017615,0.0000017655,0.0000017660, -0.0000017606,0.0000017513,0.0000017434,0.0000017421,0.0000017487, -0.0000017623,0.0000017772,0.0000017877,0.0000017913,0.0000017887, -0.0000017818,0.0000017761,0.0000017745,0.0000017750,0.0000017761, -0.0000017766,0.0000017743,0.0000017677,0.0000017621,0.0000017605, -0.0000017605,0.0000017589,0.0000017555,0.0000017523,0.0000017509, -0.0000017511,0.0000017521,0.0000017543,0.0000017604,0.0000017699, -0.0000017771,0.0000017793,0.0000017795,0.0000017807,0.0000017823, -0.0000017822,0.0000017797,0.0000017755,0.0000017722,0.0000017708, -0.0000017703,0.0000017701,0.0000017709,0.0000017722,0.0000017730, -0.0000017728,0.0000017727,0.0000017724,0.0000017710,0.0000017678, -0.0000017636,0.0000017602,0.0000017584,0.0000017576,0.0000017564, -0.0000017548,0.0000017532,0.0000017522,0.0000017519,0.0000017520, -0.0000017523,0.0000017529,0.0000017538,0.0000017544,0.0000017544, -0.0000017540,0.0000017533,0.0000017528,0.0000017527,0.0000017532, -0.0000017543,0.0000017560,0.0000017573,0.0000017576,0.0000017564, -0.0000017553,0.0000017558,0.0000017587,0.0000017647,0.0000017719, -0.0000017769,0.0000017773,0.0000017736,0.0000017679,0.0000017621, -0.0000017543,0.0000017491,0.0000017527,0.0000017687,0.0000017875, -0.0000017997,0.0000018048,0.0000018107,0.0000018199,0.0000018287, -0.0000018353,0.0000018395,0.0000018419,0.0000018432,0.0000018441, -0.0000018451,0.0000018467,0.0000018485,0.0000018500,0.0000018510, -0.0000018515,0.0000018514,0.0000018507,0.0000018497,0.0000018484, -0.0000018471,0.0000018459,0.0000018450,0.0000018446,0.0000018451, -0.0000018467,0.0000018486,0.0000018507,0.0000018530,0.0000018542, -0.0000018540,0.0000018532,0.0000018522,0.0000018515,0.0000018510, -0.0000018507,0.0000018509,0.0000018512,0.0000018517,0.0000018518, -0.0000018516,0.0000018513,0.0000018507,0.0000018499,0.0000018489, -0.0000018481,0.0000018476,0.0000018476,0.0000018485,0.0000018497, -0.0000018505,0.0000018515,0.0000018520,0.0000018518,0.0000018510, -0.0000018493,0.0000018476,0.0000018455,0.0000018429,0.0000018403, -0.0000018374,0.0000018336,0.0000018295,0.0000018239,0.0000018179, -0.0000018125,0.0000018091,0.0000018057,0.0000018046,0.0000018038, -0.0000018037,0.0000018056,0.0000018069,0.0000018078,0.0000018091, -0.0000018101,0.0000018108,0.0000018117,0.0000018133,0.0000018158, -0.0000018195,0.0000018240,0.0000018294,0.0000018353,0.0000018408, -0.0000018455,0.0000018487,0.0000018505,0.0000018516,0.0000018521, -0.0000018527,0.0000018536,0.0000018544,0.0000018545,0.0000018542, -0.0000018544,0.0000018550,0.0000018558,0.0000018567,0.0000018576, -0.0000018580,0.0000018576,0.0000018562,0.0000018545,0.0000018521, -0.0000018494,0.0000018468,0.0000018444,0.0000018423,0.0000018407, -0.0000018395,0.0000018390,0.0000018388,0.0000018386,0.0000018388, -0.0000018397,0.0000018409,0.0000018425,0.0000018441,0.0000018457, -0.0000018471,0.0000018484,0.0000018496,0.0000018503,0.0000018516, -0.0000018534,0.0000018555,0.0000018569,0.0000018577,0.0000018591, -0.0000018594,0.0000018588,0.0000018580,0.0000018573,0.0000018563, -0.0000018551,0.0000018539,0.0000018529,0.0000018519,0.0000018506, -0.0000018495,0.0000018490,0.0000018490,0.0000018488,0.0000018478, -0.0000018452,0.0000018408,0.0000018344,0.0000018266,0.0000018178, -0.0000018090,0.0000018012,0.0000017947,0.0000017901,0.0000017874, -0.0000017877,0.0000017894,0.0000017917,0.0000017943,0.0000017965, -0.0000017984,0.0000018006,0.0000018025,0.0000018040,0.0000018052, -0.0000018058,0.0000018060,0.0000018059,0.0000018056,0.0000018051, -0.0000018050,0.0000018052,0.0000018058,0.0000018069,0.0000018083, -0.0000018102,0.0000018128,0.0000018159,0.0000018191,0.0000018218, -0.0000018230,0.0000018235,0.0000018243,0.0000018254,0.0000018266, -0.0000018275,0.0000018281,0.0000018285,0.0000018289,0.0000018290, -0.0000018288,0.0000018283,0.0000018273,0.0000018259,0.0000018244, -0.0000018223,0.0000018193,0.0000018156,0.0000018115,0.0000018069, -0.0000018022,0.0000017978,0.0000017943,0.0000017918,0.0000017895, -0.0000017868,0.0000017835,0.0000017801,0.0000017770,0.0000017740, -0.0000017711,0.0000017691,0.0000017683,0.0000017686,0.0000017694, -0.0000017702,0.0000017708,0.0000017714,0.0000017731,0.0000017762, -0.0000017805,0.0000017849,0.0000017890,0.0000017931,0.0000017971, -0.0000018008,0.0000018046,0.0000018084,0.0000018122,0.0000018154, -0.0000018181,0.0000018205,0.0000018233,0.0000018268,0.0000018306, -0.0000018335,0.0000018354,0.0000018368,0.0000018378,0.0000018390, -0.0000018404,0.0000018413,0.0000018413,0.0000018412,0.0000018405, -0.0000018396,0.0000018384,0.0000018367,0.0000018341,0.0000018314, -0.0000018282,0.0000018240,0.0000018192,0.0000018146,0.0000018105, -0.0000018069,0.0000018047,0.0000018030,0.0000018007,0.0000017974, -0.0000017926,0.0000017870,0.0000017812,0.0000017759,0.0000017713, -0.0000017674,0.0000017651,0.0000017637,0.0000017657,0.0000017700, -0.0000017764,0.0000017821,0.0000017854,0.0000017835,0.0000017789, -0.0000017724,0.0000017675,0.0000017637,0.0000017626,0.0000017642, -0.0000017667,0.0000017702,0.0000017744,0.0000017779,0.0000017804, -0.0000017816,0.0000017820,0.0000017809,0.0000017789,0.0000017766, -0.0000017746,0.0000017719,0.0000017695,0.0000017678,0.0000017667, -0.0000017653,0.0000017628,0.0000017607,0.0000017583,0.0000017570, -0.0000017568,0.0000017580,0.0000017606,0.0000017650,0.0000017673, -0.0000017696,0.0000017729,0.0000017764,0.0000017789,0.0000017817, -0.0000017844,0.0000017872,0.0000017904,0.0000017936,0.0000017960, -0.0000017982,0.0000018000,0.0000018018,0.0000018038,0.0000018055, -0.0000018064,0.0000018068,0.0000018073,0.0000018072,0.0000018064, -0.0000018057,0.0000018047,0.0000018036,0.0000018026,0.0000018013, -0.0000018001,0.0000017981,0.0000017963,0.0000017944,0.0000017929, -0.0000017917,0.0000017910,0.0000017912,0.0000017927,0.0000017950, -0.0000017977,0.0000018007,0.0000018036,0.0000018061,0.0000018082, -0.0000018100,0.0000018115,0.0000018128,0.0000018140,0.0000018150, -0.0000018159,0.0000018170,0.0000018179,0.0000018193,0.0000018216, -0.0000018250,0.0000018297,0.0000018355,0.0000018412,0.0000018452, -0.0000018473,0.0000018481,0.0000018473,0.0000018456,0.0000018436, -0.0000018421,0.0000018420,0.0000018429,0.0000018446,0.0000018460, -0.0000018466,0.0000018464,0.0000018458,0.0000018452,0.0000018445, -0.0000018430,0.0000018399,0.0000018356,0.0000018320,0.0000018302, -0.0000018300,0.0000018309,0.0000018319,0.0000018333,0.0000018347, -0.0000018371,0.0000018409,0.0000018461,0.0000018529,0.0000018596, -0.0000018652,0.0000018693,0.0000018723,0.0000018738,0.0000018740, -0.0000018727,0.0000018686,0.0000018623,0.0000018551,0.0000018486, -0.0000018438,0.0000018409,0.0000018395,0.0000018391,0.0000018394, -0.0000018400,0.0000018404,0.0000018407,0.0000018409,0.0000018412, -0.0000018419,0.0000018427,0.0000018434,0.0000018439,0.0000018448, -0.0000018459,0.0000018463,0.0000018456,0.0000018439,0.0000018418, -0.0000018400,0.0000018391,0.0000018395,0.0000018411,0.0000018436, -0.0000018472,0.0000018520,0.0000018575,0.0000018629,0.0000018670, -0.0000018700,0.0000018718,0.0000018727,0.0000018728,0.0000018719, -0.0000018712,0.0000018701,0.0000018688,0.0000018675,0.0000018665, -0.0000018657,0.0000018656,0.0000018653,0.0000018640,0.0000018622, -0.0000018599,0.0000018571,0.0000018546,0.0000018523,0.0000018506, -0.0000018503,0.0000018519,0.0000018548,0.0000018573,0.0000018597, -0.0000018628,0.0000018648,0.0000018649,0.0000018633,0.0000018603, -0.0000018571,0.0000018550,0.0000018542,0.0000018549,0.0000018569, -0.0000018593,0.0000018614,0.0000018626,0.0000018627,0.0000018621, -0.0000018610,0.0000018596,0.0000018575,0.0000018558,0.0000018544, -0.0000018535,0.0000018527,0.0000018527,0.0000018530,0.0000018539, -0.0000018552,0.0000018569,0.0000018593,0.0000018613,0.0000018636, -0.0000018667,0.0000018701,0.0000018736,0.0000018766,0.0000018791, -0.0000018814,0.0000018826,0.0000018825,0.0000018819,0.0000018808, -0.0000018796,0.0000018797,0.0000018812,0.0000018827,0.0000018835, -0.0000018843,0.0000018840,0.0000018820,0.0000018784,0.0000018730, -0.0000018679,0.0000018648,0.0000018642,0.0000018649,0.0000018659, -0.0000018660,0.0000018641,0.0000018600,0.0000018551,0.0000018511, -0.0000018484,0.0000018461,0.0000018425,0.0000018366,0.0000018282, -0.0000018195,0.0000018132,0.0000018100,0.0000018093,0.0000018085, -0.0000018082,0.0000018083,0.0000018083,0.0000018092,0.0000018100, -0.0000018099,0.0000018096,0.0000018087,0.0000018067,0.0000018042, -0.0000018018,0.0000017993,0.0000017969,0.0000017949,0.0000017933, -0.0000017917,0.0000017911,0.0000017920,0.0000017936,0.0000017955, -0.0000017971,0.0000017986,0.0000017994,0.0000017998,0.0000017998, -0.0000017992,0.0000017982,0.0000017972,0.0000017959,0.0000017937, -0.0000017925,0.0000017930,0.0000017947,0.0000017966,0.0000017985, -0.0000017995,0.0000018001,0.0000018018,0.0000018037,0.0000018057, -0.0000018083,0.0000018110,0.0000018135,0.0000018152,0.0000018165, -0.0000018175,0.0000018184,0.0000018188,0.0000018183,0.0000018173, -0.0000018152,0.0000018126,0.0000018092,0.0000018061,0.0000018030, -0.0000018005,0.0000017984,0.0000017973,0.0000017961,0.0000017963, -0.0000017977,0.0000017994,0.0000018002,0.0000018005,0.0000018004, -0.0000018005,0.0000017999,0.0000017996,0.0000017991,0.0000017991, -0.0000018001,0.0000018010,0.0000018022,0.0000018041,0.0000018057, -0.0000018073,0.0000018082,0.0000018080,0.0000018080,0.0000018064, -0.0000018040,0.0000018027,0.0000018005,0.0000017990,0.0000017968, -0.0000017944,0.0000017890,0.0000017838,0.0000017800,0.0000017782, -0.0000017774,0.0000017776,0.0000017796,0.0000017831,0.0000017879, -0.0000017932,0.0000017968,0.0000017998,0.0000017996,0.0000017980, -0.0000017952,0.0000017916,0.0000017880,0.0000017849,0.0000017806, -0.0000017786,0.0000017780,0.0000017783,0.0000017785,0.0000017786, -0.0000017766,0.0000017730,0.0000017685,0.0000017652,0.0000017637, -0.0000017638,0.0000017639,0.0000017638,0.0000017629,0.0000017625, -0.0000017620,0.0000017618,0.0000017632,0.0000017661,0.0000017701, -0.0000017751,0.0000017804,0.0000017869,0.0000017934,0.0000017985, -0.0000018015,0.0000018022,0.0000018020,0.0000018006,0.0000017996, -0.0000017997,0.0000017997,0.0000018004,0.0000017996,0.0000017982, -0.0000017951,0.0000017904,0.0000017861,0.0000017822,0.0000017775, -0.0000017743,0.0000017734,0.0000017752,0.0000017782,0.0000017812, -0.0000017830,0.0000017845,0.0000017850,0.0000017849,0.0000017837, -0.0000017815,0.0000017788,0.0000017755,0.0000017717,0.0000017670, -0.0000017624,0.0000017567,0.0000017503,0.0000017430,0.0000017363, -0.0000017308,0.0000017277,0.0000017264,0.0000017267,0.0000017268, -0.0000017255,0.0000017234,0.0000017226,0.0000017223,0.0000017248, -0.0000017290,0.0000017338,0.0000017386,0.0000017425,0.0000017449, -0.0000017463,0.0000017457,0.0000017447,0.0000017419,0.0000017413, -0.0000017417,0.0000017399,0.0000017363,0.0000017328,0.0000017311, -0.0000017333,0.0000017373,0.0000017404,0.0000017419,0.0000017422, -0.0000017424,0.0000017429,0.0000017431,0.0000017428,0.0000017421, -0.0000017412,0.0000017393,0.0000017374,0.0000017371,0.0000017371, -0.0000017378,0.0000017379,0.0000017394,0.0000017395,0.0000017390, -0.0000017397,0.0000017432,0.0000017517,0.0000017640,0.0000017786, -0.0000017959,0.0000018133,0.0000018283,0.0000018405,0.0000018512, -0.0000018607,0.0000018677,0.0000018728,0.0000018765,0.0000018776, -0.0000018777,0.0000018786,0.0000018812,0.0000018848,0.0000018885, -0.0000018918,0.0000018940,0.0000018949,0.0000018950,0.0000018936, -0.0000018920,0.0000018910,0.0000018908,0.0000018915,0.0000018923, -0.0000018924,0.0000018909,0.0000018868,0.0000018796,0.0000018698, -0.0000018613,0.0000018575,0.0000018585,0.0000018621,0.0000018652, -0.0000018683,0.0000018741,0.0000018817,0.0000018870,0.0000018886, -0.0000018885,0.0000018880,0.0000018855,0.0000018799,0.0000018741, -0.0000018688,0.0000018629,0.0000018564,0.0000018528,0.0000018514, -0.0000018499,0.0000018478,0.0000018451,0.0000018423,0.0000018395, -0.0000018372,0.0000018371,0.0000018401,0.0000018441,0.0000018473, -0.0000018491,0.0000018489,0.0000018467,0.0000018428,0.0000018388, -0.0000018360,0.0000018344,0.0000018333,0.0000018325,0.0000018317, -0.0000018300,0.0000018265,0.0000018218,0.0000018175,0.0000018146, -0.0000018125,0.0000018093,0.0000018053,0.0000018036,0.0000018041, -0.0000018061,0.0000018087,0.0000018115,0.0000018144,0.0000018164, -0.0000018182,0.0000018204,0.0000018235,0.0000018284,0.0000018351, -0.0000018419,0.0000018476,0.0000018518,0.0000018547,0.0000018575, -0.0000018615,0.0000018658,0.0000018680,0.0000018677,0.0000018655, -0.0000018625,0.0000018601,0.0000018587,0.0000018582,0.0000018589, -0.0000018614,0.0000018650,0.0000018663,0.0000018656,0.0000018629, -0.0000018591,0.0000018552,0.0000018515,0.0000018475,0.0000018425, -0.0000018369,0.0000018324,0.0000018309,0.0000018319,0.0000018344, -0.0000018363,0.0000018369,0.0000018363,0.0000018346,0.0000018334, -0.0000018338,0.0000018365,0.0000018406,0.0000018434,0.0000018436, -0.0000018401,0.0000018341,0.0000018277,0.0000018205,0.0000018102, -0.0000017973,0.0000017866,0.0000017822,0.0000017836,0.0000017892, -0.0000017954,0.0000017982,0.0000017972,0.0000017947,0.0000017933, -0.0000017935,0.0000017934,0.0000017913,0.0000017898,0.0000017911, -0.0000017955,0.0000017994,0.0000018016,0.0000018041,0.0000018092, -0.0000018167,0.0000018239,0.0000018270,0.0000018243,0.0000018136, -0.0000017984,0.0000017842,0.0000017749,0.0000017720,0.0000017725, -0.0000017730,0.0000017712,0.0000017658,0.0000017595,0.0000017542, -0.0000017518,0.0000017497,0.0000017491,0.0000017497,0.0000017505, -0.0000017512,0.0000017511,0.0000017510,0.0000017507,0.0000017509, -0.0000017520,0.0000017534,0.0000017543,0.0000017547,0.0000017547, -0.0000017542,0.0000017533,0.0000017508,0.0000017460,0.0000017407, -0.0000017354,0.0000017296,0.0000017252,0.0000017215,0.0000017221, -0.0000017248,0.0000017284,0.0000017324,0.0000017364,0.0000017396, -0.0000017420,0.0000017443,0.0000017470,0.0000017499,0.0000017528, -0.0000017560,0.0000017594,0.0000017625,0.0000017661,0.0000017707, -0.0000017752,0.0000017801,0.0000017851,0.0000017892,0.0000017922, -0.0000017947,0.0000017942,0.0000017923,0.0000017913,0.0000017910, -0.0000017909,0.0000017915,0.0000017934,0.0000017966,0.0000018005, -0.0000018040,0.0000018071,0.0000018096,0.0000018118,0.0000018124, -0.0000018095,0.0000018046,0.0000017996,0.0000017951,0.0000017915, -0.0000017887,0.0000017881,0.0000017909,0.0000017943,0.0000017939, -0.0000017912,0.0000017858,0.0000017806,0.0000017807,0.0000017818, -0.0000017849,0.0000018211,0.0000018736,0.0000018906,0.0000018840, -0.0000018760,0.0000018737,0.0000018748,0.0000018798,0.0000018825, -0.0000018701,0.0000018441,0.0000018199,0.0000018010,0.0000017951, -0.0000017954,0.0000017903,0.0000017814,0.0000017737,0.0000017685, -0.0000017644,0.0000017604,0.0000017571,0.0000017549,0.0000017533, -0.0000017524,0.0000017523,0.0000017530,0.0000017540,0.0000017546, -0.0000017525,0.0000017486,0.0000017486,0.0000017585,0.0000017768, -0.0000017855,0.0000017804,0.0000017636,0.0000017551,0.0000017578, -0.0000017621,0.0000017644,0.0000017704,0.0000017794,0.0000017853, -0.0000017862,0.0000017852,0.0000017837,0.0000017826,0.0000017819, -0.0000017816,0.0000017814,0.0000017815,0.0000017814,0.0000017810, -0.0000017806,0.0000017798,0.0000017805,0.0000017863,0.0000018020, -0.0000018226,0.0000018313,0.0000018207,0.0000017969,0.0000017755, -0.0000017640,0.0000017580,0.0000017566,0.0000017615,0.0000017666, -0.0000017672,0.0000017619,0.0000017521,0.0000017437,0.0000017422, -0.0000017485,0.0000017627,0.0000017780,0.0000017877,0.0000017894, -0.0000017860,0.0000017794,0.0000017757,0.0000017756,0.0000017763, -0.0000017766,0.0000017759,0.0000017714,0.0000017651,0.0000017619, -0.0000017619,0.0000017617,0.0000017596,0.0000017564,0.0000017544, -0.0000017544,0.0000017549,0.0000017552,0.0000017568,0.0000017622, -0.0000017706,0.0000017771,0.0000017785,0.0000017782,0.0000017791, -0.0000017801,0.0000017787,0.0000017749,0.0000017713,0.0000017699, -0.0000017699,0.0000017702,0.0000017704,0.0000017711,0.0000017721, -0.0000017726,0.0000017726,0.0000017726,0.0000017725,0.0000017716, -0.0000017697,0.0000017673,0.0000017651,0.0000017638,0.0000017627, -0.0000017610,0.0000017585,0.0000017560,0.0000017544,0.0000017541, -0.0000017547,0.0000017559,0.0000017566,0.0000017565,0.0000017550, -0.0000017529,0.0000017516,0.0000017515,0.0000017523,0.0000017538, -0.0000017552,0.0000017557,0.0000017552,0.0000017547,0.0000017558, -0.0000017596,0.0000017660,0.0000017731,0.0000017784,0.0000017793, -0.0000017762,0.0000017708,0.0000017645,0.0000017561,0.0000017508, -0.0000017544,0.0000017713,0.0000017905,0.0000018016,0.0000018035, -0.0000018152,0.0000018261,0.0000018353,0.0000018408,0.0000018435, -0.0000018446,0.0000018455,0.0000018468,0.0000018485,0.0000018505, -0.0000018523,0.0000018534,0.0000018534,0.0000018531,0.0000018523, -0.0000018513,0.0000018500,0.0000018486,0.0000018471,0.0000018460, -0.0000018458,0.0000018464,0.0000018480,0.0000018506,0.0000018536, -0.0000018559,0.0000018570,0.0000018573,0.0000018565,0.0000018546, -0.0000018520,0.0000018495,0.0000018473,0.0000018458,0.0000018456, -0.0000018463,0.0000018480,0.0000018499,0.0000018515,0.0000018516, -0.0000018515,0.0000018514,0.0000018510,0.0000018504,0.0000018491, -0.0000018484,0.0000018480,0.0000018477,0.0000018479,0.0000018482, -0.0000018487,0.0000018490,0.0000018489,0.0000018485,0.0000018479, -0.0000018477,0.0000018472,0.0000018469,0.0000018467,0.0000018461, -0.0000018447,0.0000018426,0.0000018385,0.0000018334,0.0000018281, -0.0000018227,0.0000018177,0.0000018135,0.0000018101,0.0000018088, -0.0000018086,0.0000018074,0.0000018067,0.0000018071,0.0000018074, -0.0000018049,0.0000018043,0.0000018051,0.0000018062,0.0000018087, -0.0000018128,0.0000018187,0.0000018256,0.0000018326,0.0000018392, -0.0000018446,0.0000018483,0.0000018502,0.0000018508,0.0000018511, -0.0000018516,0.0000018518,0.0000018514,0.0000018509,0.0000018508, -0.0000018511,0.0000018517,0.0000018525,0.0000018533,0.0000018535, -0.0000018530,0.0000018519,0.0000018501,0.0000018477,0.0000018450, -0.0000018424,0.0000018399,0.0000018377,0.0000018359,0.0000018347, -0.0000018340,0.0000018336,0.0000018332,0.0000018328,0.0000018331, -0.0000018342,0.0000018356,0.0000018370,0.0000018382,0.0000018392, -0.0000018398,0.0000018402,0.0000018405,0.0000018410,0.0000018421, -0.0000018438,0.0000018458,0.0000018484,0.0000018514,0.0000018547, -0.0000018578,0.0000018587,0.0000018598,0.0000018606,0.0000018603, -0.0000018598,0.0000018594,0.0000018590,0.0000018586,0.0000018581, -0.0000018576,0.0000018573,0.0000018568,0.0000018560,0.0000018548, -0.0000018534,0.0000018515,0.0000018488,0.0000018451,0.0000018404, -0.0000018347,0.0000018284,0.0000018221,0.0000018158,0.0000018102, -0.0000018062,0.0000018041,0.0000018034,0.0000018035,0.0000018043, -0.0000018057,0.0000018073,0.0000018084,0.0000018089,0.0000018087, -0.0000018080,0.0000018074,0.0000018060,0.0000018041,0.0000018029, -0.0000018018,0.0000018015,0.0000018004,0.0000017985,0.0000017972, -0.0000017973,0.0000017986,0.0000018007,0.0000018032,0.0000018057, -0.0000018081,0.0000018106,0.0000018133,0.0000018154,0.0000018172, -0.0000018186,0.0000018194,0.0000018201,0.0000018211,0.0000018224, -0.0000018236,0.0000018242,0.0000018243,0.0000018239,0.0000018232, -0.0000018218,0.0000018198,0.0000018178,0.0000018152,0.0000018123, -0.0000018093,0.0000018067,0.0000018045,0.0000018023,0.0000017998, -0.0000017970,0.0000017938,0.0000017907,0.0000017875,0.0000017847, -0.0000017822,0.0000017801,0.0000017788,0.0000017782,0.0000017777, -0.0000017767,0.0000017767,0.0000017777,0.0000017804,0.0000017850, -0.0000017898,0.0000017943,0.0000017984,0.0000018013,0.0000018039, -0.0000018063,0.0000018091,0.0000018119,0.0000018146,0.0000018166, -0.0000018187,0.0000018214,0.0000018252,0.0000018296,0.0000018326, -0.0000018355,0.0000018379,0.0000018400,0.0000018432,0.0000018463, -0.0000018485,0.0000018502,0.0000018515,0.0000018520,0.0000018523, -0.0000018520,0.0000018509,0.0000018491,0.0000018464,0.0000018434, -0.0000018397,0.0000018357,0.0000018314,0.0000018268,0.0000018225, -0.0000018190,0.0000018158,0.0000018124,0.0000018090,0.0000018060, -0.0000018033,0.0000018002,0.0000017957,0.0000017901,0.0000017837, -0.0000017777,0.0000017735,0.0000017709,0.0000017707,0.0000017709, -0.0000017735,0.0000017778,0.0000017819,0.0000017853,0.0000017839, -0.0000017783,0.0000017710,0.0000017658,0.0000017643,0.0000017640, -0.0000017669,0.0000017708,0.0000017752,0.0000017789,0.0000017818, -0.0000017833,0.0000017836,0.0000017835,0.0000017838,0.0000017834, -0.0000017826,0.0000017806,0.0000017788,0.0000017771,0.0000017762, -0.0000017755,0.0000017741,0.0000017725,0.0000017710,0.0000017694, -0.0000017684,0.0000017677,0.0000017686,0.0000017688,0.0000017696, -0.0000017712,0.0000017725,0.0000017743,0.0000017756,0.0000017771, -0.0000017787,0.0000017818,0.0000017843,0.0000017867,0.0000017890, -0.0000017911,0.0000017935,0.0000017956,0.0000017972,0.0000017984, -0.0000017997,0.0000018008,0.0000018014,0.0000018024,0.0000018026, -0.0000018024,0.0000018029,0.0000018032,0.0000018033,0.0000018035, -0.0000018036,0.0000018031,0.0000018028,0.0000018021,0.0000018015, -0.0000018013,0.0000018018,0.0000018030,0.0000018041,0.0000018054, -0.0000018069,0.0000018088,0.0000018110,0.0000018134,0.0000018154, -0.0000018171,0.0000018183,0.0000018191,0.0000018197,0.0000018204, -0.0000018214,0.0000018235,0.0000018273,0.0000018324,0.0000018376, -0.0000018419,0.0000018446,0.0000018459,0.0000018463,0.0000018457, -0.0000018445,0.0000018433,0.0000018424,0.0000018423,0.0000018439, -0.0000018460,0.0000018482,0.0000018496,0.0000018502,0.0000018501, -0.0000018495,0.0000018480,0.0000018449,0.0000018404,0.0000018365, -0.0000018338,0.0000018326,0.0000018325,0.0000018330,0.0000018336, -0.0000018344,0.0000018363,0.0000018396,0.0000018436,0.0000018481, -0.0000018533,0.0000018590,0.0000018640,0.0000018682,0.0000018710, -0.0000018729,0.0000018734,0.0000018713,0.0000018663,0.0000018596, -0.0000018524,0.0000018461,0.0000018419,0.0000018399,0.0000018392, -0.0000018392,0.0000018392,0.0000018395,0.0000018399,0.0000018404, -0.0000018410,0.0000018417,0.0000018425,0.0000018437,0.0000018455, -0.0000018472,0.0000018485,0.0000018496,0.0000018504,0.0000018506, -0.0000018498,0.0000018475,0.0000018443,0.0000018411,0.0000018395, -0.0000018398,0.0000018417,0.0000018449,0.0000018489,0.0000018535, -0.0000018578,0.0000018615,0.0000018645,0.0000018671,0.0000018692, -0.0000018704,0.0000018707,0.0000018707,0.0000018703,0.0000018696, -0.0000018686,0.0000018677,0.0000018664,0.0000018655,0.0000018654, -0.0000018654,0.0000018651,0.0000018645,0.0000018638,0.0000018623, -0.0000018610,0.0000018598,0.0000018587,0.0000018582,0.0000018585, -0.0000018590,0.0000018592,0.0000018596,0.0000018608,0.0000018623, -0.0000018634,0.0000018639,0.0000018633,0.0000018610,0.0000018585, -0.0000018560,0.0000018551,0.0000018555,0.0000018564,0.0000018577, -0.0000018588,0.0000018590,0.0000018586,0.0000018581,0.0000018572, -0.0000018561,0.0000018553,0.0000018552,0.0000018553,0.0000018562, -0.0000018572,0.0000018578,0.0000018583,0.0000018586,0.0000018596, -0.0000018610,0.0000018622,0.0000018639,0.0000018662,0.0000018694, -0.0000018733,0.0000018771,0.0000018805,0.0000018836,0.0000018863, -0.0000018884,0.0000018892,0.0000018888,0.0000018874,0.0000018858, -0.0000018839,0.0000018817,0.0000018798,0.0000018792,0.0000018799, -0.0000018819,0.0000018842,0.0000018847,0.0000018826,0.0000018784, -0.0000018725,0.0000018681,0.0000018661,0.0000018658,0.0000018664, -0.0000018667,0.0000018657,0.0000018626,0.0000018575,0.0000018526, -0.0000018496,0.0000018475,0.0000018444,0.0000018399,0.0000018335, -0.0000018260,0.0000018188,0.0000018129,0.0000018095,0.0000018085, -0.0000018084,0.0000018091,0.0000018099,0.0000018106,0.0000018106, -0.0000018099,0.0000018088,0.0000018069,0.0000018042,0.0000018013, -0.0000017988,0.0000017968,0.0000017952,0.0000017938,0.0000017945, -0.0000017959,0.0000017982,0.0000018005,0.0000018022,0.0000018032, -0.0000018040,0.0000018048,0.0000018052,0.0000018050,0.0000018041, -0.0000018031,0.0000018016,0.0000018010,0.0000018014,0.0000018033, -0.0000018060,0.0000018087,0.0000018105,0.0000018109,0.0000018113, -0.0000018113,0.0000018110,0.0000018117,0.0000018130,0.0000018148, -0.0000018170,0.0000018189,0.0000018210,0.0000018230,0.0000018251, -0.0000018269,0.0000018287,0.0000018293,0.0000018292,0.0000018279, -0.0000018259,0.0000018232,0.0000018204,0.0000018177,0.0000018154, -0.0000018127,0.0000018095,0.0000018079,0.0000018073,0.0000018056, -0.0000018039,0.0000018023,0.0000018007,0.0000017996,0.0000017981, -0.0000017976,0.0000017970,0.0000017975,0.0000017989,0.0000018011, -0.0000018035,0.0000018053,0.0000018074,0.0000018092,0.0000018100, -0.0000018117,0.0000018112,0.0000018104,0.0000018092,0.0000018089, -0.0000018077,0.0000018062,0.0000018045,0.0000018018,0.0000017975, -0.0000017922,0.0000017892,0.0000017872,0.0000017857,0.0000017845, -0.0000017851,0.0000017886,0.0000017940,0.0000017982,0.0000018029, -0.0000018057,0.0000018066,0.0000018053,0.0000018036,0.0000018004, -0.0000017975,0.0000017935,0.0000017908,0.0000017893,0.0000017876, -0.0000017864,0.0000017853,0.0000017828,0.0000017794,0.0000017757, -0.0000017727,0.0000017719,0.0000017721,0.0000017722,0.0000017719, -0.0000017703,0.0000017675,0.0000017652,0.0000017622,0.0000017604, -0.0000017600,0.0000017612,0.0000017645,0.0000017693,0.0000017761, -0.0000017841,0.0000017928,0.0000017980,0.0000017999,0.0000018004, -0.0000017981,0.0000017956,0.0000017958,0.0000017975,0.0000017993, -0.0000018005,0.0000018013,0.0000018008,0.0000017986,0.0000017956, -0.0000017920,0.0000017871,0.0000017824,0.0000017798,0.0000017796, -0.0000017817,0.0000017844,0.0000017860,0.0000017866,0.0000017860, -0.0000017847,0.0000017826,0.0000017808,0.0000017794,0.0000017777, -0.0000017759,0.0000017733,0.0000017704,0.0000017671,0.0000017632, -0.0000017580,0.0000017522,0.0000017465,0.0000017418,0.0000017377, -0.0000017350,0.0000017333,0.0000017305,0.0000017263,0.0000017232, -0.0000017217,0.0000017223,0.0000017248,0.0000017282,0.0000017329, -0.0000017362,0.0000017387,0.0000017404,0.0000017420,0.0000017425, -0.0000017428,0.0000017447,0.0000017473,0.0000017473,0.0000017445, -0.0000017409,0.0000017383,0.0000017385,0.0000017413,0.0000017438, -0.0000017448,0.0000017443,0.0000017435,0.0000017438,0.0000017445, -0.0000017443,0.0000017431,0.0000017419,0.0000017408,0.0000017407, -0.0000017400,0.0000017395,0.0000017385,0.0000017371,0.0000017368, -0.0000017356,0.0000017346,0.0000017325,0.0000017299,0.0000017290, -0.0000017315,0.0000017370,0.0000017471,0.0000017617,0.0000017783, -0.0000017950,0.0000018121,0.0000018279,0.0000018408,0.0000018516, -0.0000018606,0.0000018658,0.0000018681,0.0000018687,0.0000018691, -0.0000018701,0.0000018723,0.0000018756,0.0000018790,0.0000018824, -0.0000018859,0.0000018892,0.0000018914,0.0000018934,0.0000018944, -0.0000018949,0.0000018957,0.0000018958,0.0000018945,0.0000018918, -0.0000018875,0.0000018809,0.0000018719,0.0000018629,0.0000018584, -0.0000018578,0.0000018598,0.0000018620,0.0000018647,0.0000018699, -0.0000018778,0.0000018851,0.0000018881,0.0000018876,0.0000018865, -0.0000018832,0.0000018779,0.0000018730,0.0000018694,0.0000018653, -0.0000018596,0.0000018531,0.0000018486,0.0000018468,0.0000018465, -0.0000018457,0.0000018434,0.0000018404,0.0000018394,0.0000018409, -0.0000018441,0.0000018472,0.0000018491,0.0000018503,0.0000018503, -0.0000018484,0.0000018453,0.0000018420,0.0000018385,0.0000018352, -0.0000018329,0.0000018314,0.0000018296,0.0000018263,0.0000018214, -0.0000018167,0.0000018133,0.0000018103,0.0000018070,0.0000018045, -0.0000018037,0.0000018048,0.0000018068,0.0000018100,0.0000018139, -0.0000018176,0.0000018207,0.0000018236,0.0000018266,0.0000018303, -0.0000018348,0.0000018395,0.0000018441,0.0000018483,0.0000018521, -0.0000018562,0.0000018620,0.0000018684,0.0000018727,0.0000018737, -0.0000018720,0.0000018687,0.0000018655,0.0000018633,0.0000018623, -0.0000018623,0.0000018633,0.0000018662,0.0000018686,0.0000018692, -0.0000018691,0.0000018675,0.0000018643,0.0000018603,0.0000018562, -0.0000018531,0.0000018506,0.0000018475,0.0000018435,0.0000018398, -0.0000018374,0.0000018363,0.0000018356,0.0000018352,0.0000018349, -0.0000018341,0.0000018330,0.0000018335,0.0000018369,0.0000018428, -0.0000018480,0.0000018495,0.0000018468,0.0000018396,0.0000018318, -0.0000018248,0.0000018151,0.0000018016,0.0000017890,0.0000017835, -0.0000017859,0.0000017925,0.0000017973,0.0000017979,0.0000017957, -0.0000017927,0.0000017902,0.0000017889,0.0000017884,0.0000017883, -0.0000017891,0.0000017918,0.0000017967,0.0000018015,0.0000018048, -0.0000018071,0.0000018098,0.0000018149,0.0000018211,0.0000018258, -0.0000018248,0.0000018177,0.0000018051,0.0000017908,0.0000017789, -0.0000017722,0.0000017698,0.0000017709,0.0000017727,0.0000017719, -0.0000017685,0.0000017628,0.0000017567,0.0000017512,0.0000017485, -0.0000017457,0.0000017445,0.0000017450,0.0000017458,0.0000017470, -0.0000017491,0.0000017515,0.0000017533,0.0000017544,0.0000017548, -0.0000017554,0.0000017562,0.0000017565,0.0000017548,0.0000017507, -0.0000017462,0.0000017418,0.0000017366,0.0000017308,0.0000017260, -0.0000017238,0.0000017239,0.0000017255,0.0000017271,0.0000017287, -0.0000017299,0.0000017309,0.0000017324,0.0000017346,0.0000017371, -0.0000017395,0.0000017422,0.0000017453,0.0000017482,0.0000017512, -0.0000017554,0.0000017599,0.0000017647,0.0000017693,0.0000017732, -0.0000017763,0.0000017798,0.0000017830,0.0000017856,0.0000017901, -0.0000017934,0.0000017958,0.0000017975,0.0000017983,0.0000017993, -0.0000018025,0.0000018058,0.0000018078,0.0000018097,0.0000018114, -0.0000018126,0.0000018104,0.0000018048,0.0000017987,0.0000017927, -0.0000017890,0.0000017875,0.0000017870,0.0000017892,0.0000017921, -0.0000017924,0.0000017902,0.0000017834,0.0000017774,0.0000017790, -0.0000017801,0.0000017955,0.0000018472,0.0000018869,0.0000018889, -0.0000018804,0.0000018755,0.0000018749,0.0000018785,0.0000018837, -0.0000018817,0.0000018661,0.0000018423,0.0000018143,0.0000017980, -0.0000017971,0.0000017943,0.0000017869,0.0000017798,0.0000017758, -0.0000017734,0.0000017693,0.0000017630,0.0000017572,0.0000017530, -0.0000017497,0.0000017478,0.0000017479,0.0000017502,0.0000017539, -0.0000017568,0.0000017571,0.0000017539,0.0000017484,0.0000017484, -0.0000017612,0.0000017805,0.0000017850,0.0000017718,0.0000017574, -0.0000017578,0.0000017629,0.0000017644,0.0000017660,0.0000017692, -0.0000017730,0.0000017765,0.0000017789,0.0000017801,0.0000017802, -0.0000017798,0.0000017797,0.0000017799,0.0000017805,0.0000017810, -0.0000017810,0.0000017804,0.0000017789,0.0000017783,0.0000017780, -0.0000017844,0.0000018019,0.0000018213,0.0000018245,0.0000018061, -0.0000017811,0.0000017663,0.0000017587,0.0000017542,0.0000017558, -0.0000017627,0.0000017677,0.0000017680,0.0000017624,0.0000017525, -0.0000017436,0.0000017420,0.0000017493,0.0000017642,0.0000017789, -0.0000017874,0.0000017881,0.0000017834,0.0000017786,0.0000017770, -0.0000017771,0.0000017771,0.0000017767,0.0000017740,0.0000017684, -0.0000017635,0.0000017622,0.0000017625,0.0000017618,0.0000017595, -0.0000017578,0.0000017581,0.0000017593,0.0000017594,0.0000017586, -0.0000017598,0.0000017648,0.0000017723,0.0000017771,0.0000017772, -0.0000017766,0.0000017778,0.0000017782,0.0000017754,0.0000017711, -0.0000017684,0.0000017685,0.0000017699,0.0000017707,0.0000017711, -0.0000017720,0.0000017727,0.0000017726,0.0000017721,0.0000017722, -0.0000017731,0.0000017736,0.0000017729,0.0000017707,0.0000017685, -0.0000017669,0.0000017652,0.0000017625,0.0000017590,0.0000017561, -0.0000017553,0.0000017557,0.0000017568,0.0000017573,0.0000017566, -0.0000017546,0.0000017527,0.0000017522,0.0000017529,0.0000017541, -0.0000017544,0.0000017539,0.0000017542,0.0000017564,0.0000017610, -0.0000017676,0.0000017746,0.0000017797,0.0000017807,0.0000017782, -0.0000017729,0.0000017665,0.0000017583,0.0000017526,0.0000017562, -0.0000017732,0.0000017925,0.0000018026,0.0000018041,0.0000018068, -0.0000018312,0.0000018398,0.0000018446,0.0000018466,0.0000018473, -0.0000018480,0.0000018492,0.0000018507,0.0000018525,0.0000018542, -0.0000018550,0.0000018545,0.0000018532,0.0000018517,0.0000018500, -0.0000018486,0.0000018473,0.0000018459,0.0000018457,0.0000018470, -0.0000018494,0.0000018524,0.0000018551,0.0000018573,0.0000018586, -0.0000018588,0.0000018588,0.0000018580,0.0000018552,0.0000018505, -0.0000018449,0.0000018416,0.0000018408,0.0000018416,0.0000018433, -0.0000018455,0.0000018470,0.0000018473,0.0000018470,0.0000018463, -0.0000018458,0.0000018457,0.0000018457,0.0000018449,0.0000018440, -0.0000018433,0.0000018429,0.0000018430,0.0000018433,0.0000018442, -0.0000018457,0.0000018468,0.0000018474,0.0000018474,0.0000018474, -0.0000018479,0.0000018487,0.0000018493,0.0000018498,0.0000018501, -0.0000018500,0.0000018496,0.0000018481,0.0000018455,0.0000018421, -0.0000018384,0.0000018344,0.0000018302,0.0000018266,0.0000018240, -0.0000018218,0.0000018192,0.0000018167,0.0000018146,0.0000018120, -0.0000018088,0.0000018068,0.0000018053,0.0000018037,0.0000018046, -0.0000018055,0.0000018091,0.0000018148,0.0000018224,0.0000018308, -0.0000018386,0.0000018445,0.0000018480,0.0000018496,0.0000018502, -0.0000018502,0.0000018497,0.0000018488,0.0000018480,0.0000018477, -0.0000018477,0.0000018478,0.0000018482,0.0000018484,0.0000018480, -0.0000018471,0.0000018458,0.0000018441,0.0000018420,0.0000018396, -0.0000018372,0.0000018349,0.0000018330,0.0000018315,0.0000018306, -0.0000018302,0.0000018298,0.0000018292,0.0000018286,0.0000018289, -0.0000018298,0.0000018307,0.0000018315,0.0000018321,0.0000018325, -0.0000018327,0.0000018325,0.0000018321,0.0000018319,0.0000018322, -0.0000018330,0.0000018345,0.0000018365,0.0000018387,0.0000018411, -0.0000018435,0.0000018461,0.0000018495,0.0000018535,0.0000018575, -0.0000018599,0.0000018618,0.0000018640,0.0000018656,0.0000018660, -0.0000018659,0.0000018656,0.0000018649,0.0000018640,0.0000018627, -0.0000018612,0.0000018596,0.0000018578,0.0000018557,0.0000018536, -0.0000018515,0.0000018493,0.0000018468,0.0000018434,0.0000018394, -0.0000018356,0.0000018324,0.0000018298,0.0000018278,0.0000018268, -0.0000018268,0.0000018271,0.0000018274,0.0000018274,0.0000018267, -0.0000018259,0.0000018250,0.0000018230,0.0000018202,0.0000018175, -0.0000018153,0.0000018133,0.0000018109,0.0000018083,0.0000018055, -0.0000018030,0.0000018009,0.0000018004,0.0000017999,0.0000017993, -0.0000017996,0.0000018003,0.0000018009,0.0000018019,0.0000018026, -0.0000018033,0.0000018037,0.0000018040,0.0000018048,0.0000018059, -0.0000018075,0.0000018091,0.0000018104,0.0000018115,0.0000018122, -0.0000018126,0.0000018122,0.0000018115,0.0000018108,0.0000018100, -0.0000018088,0.0000018077,0.0000018067,0.0000018055,0.0000018040, -0.0000018025,0.0000018012,0.0000017997,0.0000017982,0.0000017966, -0.0000017950,0.0000017941,0.0000017934,0.0000017928,0.0000017922, -0.0000017905,0.0000017887,0.0000017870,0.0000017863,0.0000017875, -0.0000017903,0.0000017940,0.0000017982,0.0000018016,0.0000018046, -0.0000018069,0.0000018092,0.0000018116,0.0000018137,0.0000018152, -0.0000018174,0.0000018202,0.0000018236,0.0000018266,0.0000018290, -0.0000018316,0.0000018346,0.0000018377,0.0000018418,0.0000018466, -0.0000018497,0.0000018528,0.0000018560,0.0000018585,0.0000018610, -0.0000018631,0.0000018644,0.0000018648,0.0000018647,0.0000018635, -0.0000018614,0.0000018580,0.0000018533,0.0000018482,0.0000018429, -0.0000018384,0.0000018348,0.0000018320,0.0000018286,0.0000018233, -0.0000018170,0.0000018111,0.0000018068,0.0000018040,0.0000018020, -0.0000017992,0.0000017946,0.0000017884,0.0000017823,0.0000017774, -0.0000017760,0.0000017746,0.0000017758,0.0000017786,0.0000017825, -0.0000017857,0.0000017857,0.0000017824,0.0000017758,0.0000017704, -0.0000017680,0.0000017677,0.0000017695,0.0000017724,0.0000017755, -0.0000017786,0.0000017820,0.0000017854,0.0000017880,0.0000017904, -0.0000017914,0.0000017924,0.0000017908,0.0000017887,0.0000017872, -0.0000017858,0.0000017838,0.0000017830,0.0000017818,0.0000017813, -0.0000017799,0.0000017794,0.0000017785,0.0000017774,0.0000017774, -0.0000017766,0.0000017765,0.0000017769,0.0000017780,0.0000017796, -0.0000017820,0.0000017841,0.0000017863,0.0000017882,0.0000017904, -0.0000017924,0.0000017944,0.0000017961,0.0000017982,0.0000018002, -0.0000018021,0.0000018039,0.0000018055,0.0000018071,0.0000018086, -0.0000018105,0.0000018123,0.0000018139,0.0000018153,0.0000018166, -0.0000018167,0.0000018163,0.0000018154,0.0000018137,0.0000018118, -0.0000018103,0.0000018091,0.0000018082,0.0000018082,0.0000018092, -0.0000018113,0.0000018142,0.0000018169,0.0000018193,0.0000018211, -0.0000018224,0.0000018232,0.0000018238,0.0000018248,0.0000018268, -0.0000018301,0.0000018345,0.0000018389,0.0000018422,0.0000018436, -0.0000018444,0.0000018448,0.0000018447,0.0000018443,0.0000018438, -0.0000018435,0.0000018439,0.0000018453,0.0000018479,0.0000018507, -0.0000018528,0.0000018542,0.0000018544,0.0000018528,0.0000018498, -0.0000018452,0.0000018408,0.0000018376,0.0000018358,0.0000018353, -0.0000018356,0.0000018360,0.0000018366,0.0000018378,0.0000018399, -0.0000018423,0.0000018450,0.0000018482,0.0000018520,0.0000018564, -0.0000018607,0.0000018646,0.0000018674,0.0000018686,0.0000018676, -0.0000018639,0.0000018578,0.0000018508,0.0000018447,0.0000018403, -0.0000018378,0.0000018372,0.0000018376,0.0000018383,0.0000018392, -0.0000018397,0.0000018399,0.0000018401,0.0000018405,0.0000018415, -0.0000018429,0.0000018443,0.0000018457,0.0000018475,0.0000018494, -0.0000018509,0.0000018519,0.0000018524,0.0000018526,0.0000018521, -0.0000018504,0.0000018478,0.0000018450,0.0000018431,0.0000018425, -0.0000018442,0.0000018476,0.0000018517,0.0000018555,0.0000018587, -0.0000018612,0.0000018634,0.0000018656,0.0000018674,0.0000018684, -0.0000018688,0.0000018690,0.0000018689,0.0000018687,0.0000018682, -0.0000018674,0.0000018663,0.0000018653,0.0000018649,0.0000018643, -0.0000018641,0.0000018640,0.0000018635,0.0000018627,0.0000018619, -0.0000018614,0.0000018612,0.0000018615,0.0000018627,0.0000018641, -0.0000018645,0.0000018644,0.0000018641,0.0000018635,0.0000018635, -0.0000018641,0.0000018646,0.0000018640,0.0000018624,0.0000018596, -0.0000018571,0.0000018557,0.0000018550,0.0000018549,0.0000018551, -0.0000018551,0.0000018548,0.0000018541,0.0000018530,0.0000018526, -0.0000018528,0.0000018537,0.0000018552,0.0000018575,0.0000018596, -0.0000018614,0.0000018631,0.0000018641,0.0000018656,0.0000018670, -0.0000018682,0.0000018699,0.0000018719,0.0000018749,0.0000018786, -0.0000018824,0.0000018853,0.0000018879,0.0000018906,0.0000018927, -0.0000018939,0.0000018944,0.0000018943,0.0000018933,0.0000018912, -0.0000018881,0.0000018844,0.0000018805,0.0000018779,0.0000018774, -0.0000018786,0.0000018810,0.0000018843,0.0000018867,0.0000018866, -0.0000018842,0.0000018786,0.0000018723,0.0000018679,0.0000018660, -0.0000018661,0.0000018667,0.0000018666,0.0000018643,0.0000018598, -0.0000018544,0.0000018496,0.0000018472,0.0000018459,0.0000018435, -0.0000018387,0.0000018325,0.0000018257,0.0000018194,0.0000018146, -0.0000018120,0.0000018111,0.0000018115,0.0000018116,0.0000018112, -0.0000018108,0.0000018097,0.0000018073,0.0000018041,0.0000018011, -0.0000017979,0.0000017949,0.0000017933,0.0000017933,0.0000017943, -0.0000017963,0.0000017984,0.0000017998,0.0000018005,0.0000018013, -0.0000018023,0.0000018030,0.0000018034,0.0000018038,0.0000018034, -0.0000018039,0.0000018049,0.0000018067,0.0000018096,0.0000018135, -0.0000018175,0.0000018204,0.0000018226,0.0000018249,0.0000018260, -0.0000018262,0.0000018266,0.0000018266,0.0000018267,0.0000018272, -0.0000018282,0.0000018294,0.0000018306,0.0000018319,0.0000018334, -0.0000018351,0.0000018362,0.0000018367,0.0000018366,0.0000018364, -0.0000018361,0.0000018350,0.0000018347,0.0000018343,0.0000018329, -0.0000018308,0.0000018291,0.0000018273,0.0000018238,0.0000018197, -0.0000018149,0.0000018107,0.0000018064,0.0000018026,0.0000017995, -0.0000017981,0.0000017988,0.0000018002,0.0000018025,0.0000018053, -0.0000018074,0.0000018093,0.0000018117,0.0000018136,0.0000018152, -0.0000018152,0.0000018150,0.0000018150,0.0000018155,0.0000018146, -0.0000018138,0.0000018109,0.0000018083,0.0000018043,0.0000018010, -0.0000018000,0.0000017987,0.0000017975,0.0000017958,0.0000017958, -0.0000017982,0.0000018014,0.0000018050,0.0000018092,0.0000018119, -0.0000018127,0.0000018140,0.0000018128,0.0000018106,0.0000018084, -0.0000018068,0.0000018056,0.0000018037,0.0000018020,0.0000017996, -0.0000017959,0.0000017914,0.0000017863,0.0000017815,0.0000017788, -0.0000017780,0.0000017787,0.0000017801,0.0000017798,0.0000017784, -0.0000017761,0.0000017725,0.0000017681,0.0000017643,0.0000017610, -0.0000017615,0.0000017625,0.0000017656,0.0000017719,0.0000017808, -0.0000017884,0.0000017922,0.0000017945,0.0000017943,0.0000017915, -0.0000017906,0.0000017923,0.0000017946,0.0000017969,0.0000017993, -0.0000018007,0.0000018007,0.0000018012,0.0000018002,0.0000017972, -0.0000017929,0.0000017894,0.0000017877,0.0000017879,0.0000017892, -0.0000017904,0.0000017906,0.0000017895,0.0000017868,0.0000017834, -0.0000017809,0.0000017791,0.0000017775,0.0000017765,0.0000017751, -0.0000017734,0.0000017717,0.0000017702,0.0000017677,0.0000017650, -0.0000017619,0.0000017583,0.0000017536,0.0000017489,0.0000017447, -0.0000017399,0.0000017339,0.0000017285,0.0000017245,0.0000017235, -0.0000017250,0.0000017275,0.0000017312,0.0000017339,0.0000017360, -0.0000017369,0.0000017375,0.0000017380,0.0000017397,0.0000017443, -0.0000017490,0.0000017515,0.0000017507,0.0000017483,0.0000017459, -0.0000017450,0.0000017471,0.0000017499,0.0000017514,0.0000017503, -0.0000017483,0.0000017475,0.0000017480,0.0000017477,0.0000017465, -0.0000017443,0.0000017426,0.0000017429,0.0000017430,0.0000017432, -0.0000017420,0.0000017397,0.0000017377,0.0000017353,0.0000017337, -0.0000017322,0.0000017299,0.0000017272,0.0000017256,0.0000017238, -0.0000017248,0.0000017301,0.0000017386,0.0000017493,0.0000017632, -0.0000017780,0.0000017922,0.0000018067,0.0000018209,0.0000018322, -0.0000018407,0.0000018470,0.0000018519,0.0000018559,0.0000018589, -0.0000018618,0.0000018646,0.0000018672,0.0000018698,0.0000018728, -0.0000018777,0.0000018841,0.0000018904,0.0000018952,0.0000018980, -0.0000018991,0.0000018976,0.0000018938,0.0000018892,0.0000018847, -0.0000018803,0.0000018752,0.0000018679,0.0000018610,0.0000018594, -0.0000018596,0.0000018600,0.0000018615,0.0000018661,0.0000018740, -0.0000018823,0.0000018867,0.0000018859,0.0000018836,0.0000018799, -0.0000018758,0.0000018734,0.0000018718,0.0000018686,0.0000018619, -0.0000018536,0.0000018481,0.0000018468,0.0000018468,0.0000018455, -0.0000018437,0.0000018423,0.0000018424,0.0000018432,0.0000018451, -0.0000018479,0.0000018505,0.0000018521,0.0000018517,0.0000018497, -0.0000018463,0.0000018424,0.0000018390,0.0000018365,0.0000018345, -0.0000018317,0.0000018273,0.0000018220,0.0000018174,0.0000018139, -0.0000018113,0.0000018093,0.0000018075,0.0000018063,0.0000018068, -0.0000018085,0.0000018121,0.0000018167,0.0000018216,0.0000018264, -0.0000018303,0.0000018337,0.0000018370,0.0000018401,0.0000018429, -0.0000018457,0.0000018491,0.0000018536,0.0000018607,0.0000018693, -0.0000018762,0.0000018788,0.0000018780,0.0000018745,0.0000018707, -0.0000018679,0.0000018665,0.0000018656,0.0000018652,0.0000018665, -0.0000018681,0.0000018690,0.0000018690,0.0000018686,0.0000018675, -0.0000018663,0.0000018645,0.0000018619,0.0000018596,0.0000018578, -0.0000018558,0.0000018531,0.0000018495,0.0000018451,0.0000018408, -0.0000018373,0.0000018352,0.0000018340,0.0000018334,0.0000018336, -0.0000018352,0.0000018385,0.0000018434,0.0000018485,0.0000018513, -0.0000018499,0.0000018438,0.0000018356,0.0000018274,0.0000018177, -0.0000018046,0.0000017917,0.0000017869,0.0000017898,0.0000017955, -0.0000017982,0.0000017976,0.0000017948,0.0000017911,0.0000017878, -0.0000017853,0.0000017851,0.0000017861,0.0000017879,0.0000017921, -0.0000017984,0.0000018043,0.0000018083,0.0000018097,0.0000018108, -0.0000018132,0.0000018178,0.0000018220,0.0000018204,0.0000018169, -0.0000018088,0.0000017968,0.0000017848,0.0000017754,0.0000017713, -0.0000017720,0.0000017740,0.0000017756,0.0000017748,0.0000017713, -0.0000017660,0.0000017600,0.0000017539,0.0000017483,0.0000017437, -0.0000017412,0.0000017403,0.0000017415,0.0000017446,0.0000017482, -0.0000017511,0.0000017532,0.0000017551,0.0000017567,0.0000017574, -0.0000017559,0.0000017521,0.0000017481,0.0000017444,0.0000017404, -0.0000017358,0.0000017314,0.0000017285,0.0000017282,0.0000017296, -0.0000017307,0.0000017305,0.0000017287,0.0000017270,0.0000017254, -0.0000017247,0.0000017252,0.0000017262,0.0000017277,0.0000017301, -0.0000017330,0.0000017360,0.0000017401,0.0000017446,0.0000017496, -0.0000017548,0.0000017590,0.0000017620,0.0000017642,0.0000017665, -0.0000017704,0.0000017772,0.0000017852,0.0000017917,0.0000017968, -0.0000017992,0.0000018004,0.0000018030,0.0000018064,0.0000018081, -0.0000018094,0.0000018104,0.0000018120,0.0000018108,0.0000018055, -0.0000017983,0.0000017915,0.0000017869,0.0000017855,0.0000017852, -0.0000017859,0.0000017882,0.0000017898,0.0000017887,0.0000017818, -0.0000017749,0.0000017769,0.0000017789,0.0000018076,0.0000018651, -0.0000018891,0.0000018853,0.0000018790,0.0000018760,0.0000018771, -0.0000018821,0.0000018858,0.0000018824,0.0000018670,0.0000018363, -0.0000018062,0.0000017989,0.0000017983,0.0000017932,0.0000017861, -0.0000017811,0.0000017791,0.0000017768,0.0000017703,0.0000017615, -0.0000017541,0.0000017486,0.0000017440,0.0000017413,0.0000017415, -0.0000017443,0.0000017496,0.0000017556,0.0000017592,0.0000017588, -0.0000017537,0.0000017468,0.0000017484,0.0000017682,0.0000017864, -0.0000017814,0.0000017646,0.0000017579,0.0000017615,0.0000017670, -0.0000017670,0.0000017658,0.0000017661,0.0000017676,0.0000017686, -0.0000017696,0.0000017706,0.0000017715,0.0000017723,0.0000017732, -0.0000017750,0.0000017781,0.0000017815,0.0000017830,0.0000017812, -0.0000017778,0.0000017759,0.0000017770,0.0000017866,0.0000018071, -0.0000018199,0.0000018119,0.0000017867,0.0000017683,0.0000017603, -0.0000017545,0.0000017525,0.0000017558,0.0000017640,0.0000017693, -0.0000017692,0.0000017627,0.0000017518,0.0000017426,0.0000017408, -0.0000017496,0.0000017656,0.0000017800,0.0000017865,0.0000017858, -0.0000017814,0.0000017787,0.0000017784,0.0000017781,0.0000017773, -0.0000017755,0.0000017711,0.0000017654,0.0000017623,0.0000017621, -0.0000017622,0.0000017612,0.0000017600,0.0000017605,0.0000017626, -0.0000017635,0.0000017628,0.0000017616,0.0000017629,0.0000017678, -0.0000017739,0.0000017762,0.0000017752,0.0000017746,0.0000017756, -0.0000017754,0.0000017720,0.0000017683,0.0000017675,0.0000017695, -0.0000017723,0.0000017739,0.0000017743,0.0000017743,0.0000017733, -0.0000017723,0.0000017722,0.0000017736,0.0000017753,0.0000017754, -0.0000017734,0.0000017705,0.0000017681,0.0000017657,0.0000017626, -0.0000017588,0.0000017560,0.0000017554,0.0000017561,0.0000017576, -0.0000017583,0.0000017573,0.0000017551,0.0000017536,0.0000017536, -0.0000017537,0.0000017533,0.0000017538,0.0000017569,0.0000017625, -0.0000017694,0.0000017761,0.0000017803,0.0000017811,0.0000017788, -0.0000017737,0.0000017670,0.0000017591,0.0000017545,0.0000017581, -0.0000017748,0.0000017936,0.0000018029,0.0000018044,0.0000018086, -0.0000018192,0.0000018425,0.0000018467,0.0000018489,0.0000018500, -0.0000018507,0.0000018512,0.0000018517,0.0000018527,0.0000018546, -0.0000018562,0.0000018565,0.0000018554,0.0000018539,0.0000018526, -0.0000018511,0.0000018497,0.0000018487,0.0000018484,0.0000018501, -0.0000018534,0.0000018564,0.0000018581,0.0000018585,0.0000018589, -0.0000018595,0.0000018596,0.0000018585,0.0000018543,0.0000018480, -0.0000018441,0.0000018420,0.0000018420,0.0000018426,0.0000018428, -0.0000018415,0.0000018392,0.0000018373,0.0000018367,0.0000018371, -0.0000018379,0.0000018388,0.0000018399,0.0000018414,0.0000018421, -0.0000018428,0.0000018439,0.0000018448,0.0000018459,0.0000018468, -0.0000018482,0.0000018500,0.0000018514,0.0000018522,0.0000018525, -0.0000018531,0.0000018544,0.0000018556,0.0000018561,0.0000018564, -0.0000018564,0.0000018561,0.0000018556,0.0000018546,0.0000018530, -0.0000018511,0.0000018496,0.0000018475,0.0000018451,0.0000018427, -0.0000018406,0.0000018385,0.0000018357,0.0000018323,0.0000018289, -0.0000018256,0.0000018223,0.0000018190,0.0000018156,0.0000018120, -0.0000018085,0.0000018061,0.0000018062,0.0000018072,0.0000018128, -0.0000018211,0.0000018300,0.0000018382,0.0000018443,0.0000018477, -0.0000018486,0.0000018483,0.0000018475,0.0000018466,0.0000018458, -0.0000018454,0.0000018453,0.0000018453,0.0000018454,0.0000018448, -0.0000018439,0.0000018429,0.0000018416,0.0000018402,0.0000018387, -0.0000018368,0.0000018348,0.0000018333,0.0000018318,0.0000018308, -0.0000018303,0.0000018302,0.0000018301,0.0000018299,0.0000018298, -0.0000018305,0.0000018314,0.0000018321,0.0000018324,0.0000018323, -0.0000018320,0.0000018315,0.0000018304,0.0000018294,0.0000018285, -0.0000018280,0.0000018277,0.0000018278,0.0000018281,0.0000018286, -0.0000018296,0.0000018311,0.0000018330,0.0000018354,0.0000018382, -0.0000018414,0.0000018448,0.0000018489,0.0000018540,0.0000018594, -0.0000018646,0.0000018679,0.0000018708,0.0000018730,0.0000018733, -0.0000018723,0.0000018704,0.0000018680,0.0000018654,0.0000018630, -0.0000018610,0.0000018594,0.0000018580,0.0000018566,0.0000018549, -0.0000018532,0.0000018517,0.0000018501,0.0000018484,0.0000018470, -0.0000018464,0.0000018464,0.0000018466,0.0000018468,0.0000018469, -0.0000018467,0.0000018469,0.0000018472,0.0000018464,0.0000018445, -0.0000018422,0.0000018404,0.0000018385,0.0000018361,0.0000018336, -0.0000018307,0.0000018279,0.0000018249,0.0000018219,0.0000018187, -0.0000018156,0.0000018128,0.0000018104,0.0000018088,0.0000018073, -0.0000018058,0.0000018043,0.0000018030,0.0000018024,0.0000018023, -0.0000018023,0.0000018030,0.0000018026,0.0000018025,0.0000018031, -0.0000018038,0.0000018048,0.0000018055,0.0000018055,0.0000018055, -0.0000018050,0.0000018042,0.0000018031,0.0000018020,0.0000018007, -0.0000017991,0.0000017976,0.0000017965,0.0000017959,0.0000017957, -0.0000017955,0.0000017956,0.0000017957,0.0000017966,0.0000017979, -0.0000017976,0.0000017970,0.0000017958,0.0000017939,0.0000017923, -0.0000017913,0.0000017912,0.0000017918,0.0000017926,0.0000017936, -0.0000017950,0.0000017969,0.0000017991,0.0000018021,0.0000018048, -0.0000018086,0.0000018126,0.0000018171,0.0000018213,0.0000018240, -0.0000018264,0.0000018282,0.0000018300,0.0000018322,0.0000018354, -0.0000018395,0.0000018426,0.0000018458,0.0000018491,0.0000018521, -0.0000018554,0.0000018591,0.0000018624,0.0000018649,0.0000018665, -0.0000018684,0.0000018701,0.0000018706,0.0000018695,0.0000018672, -0.0000018646,0.0000018603,0.0000018555,0.0000018508,0.0000018470, -0.0000018441,0.0000018410,0.0000018363,0.0000018294,0.0000018213, -0.0000018136,0.0000018085,0.0000018062,0.0000018048,0.0000018024, -0.0000017975,0.0000017904,0.0000017826,0.0000017786,0.0000017772, -0.0000017785,0.0000017828,0.0000017872,0.0000017902,0.0000017904, -0.0000017871,0.0000017806,0.0000017737,0.0000017697,0.0000017681, -0.0000017683,0.0000017706,0.0000017749,0.0000017798,0.0000017855, -0.0000017901,0.0000017937,0.0000017962,0.0000017976,0.0000017982, -0.0000017988,0.0000017977,0.0000017965,0.0000017948,0.0000017940, -0.0000017923,0.0000017907,0.0000017888,0.0000017866,0.0000017855, -0.0000017840,0.0000017830,0.0000017824,0.0000017828,0.0000017842, -0.0000017869,0.0000017895,0.0000017923,0.0000017948,0.0000017974, -0.0000017995,0.0000018018,0.0000018036,0.0000018060,0.0000018087, -0.0000018110,0.0000018133,0.0000018156,0.0000018181,0.0000018201, -0.0000018223,0.0000018242,0.0000018259,0.0000018271,0.0000018278, -0.0000018275,0.0000018262,0.0000018244,0.0000018223,0.0000018198, -0.0000018174,0.0000018154,0.0000018138,0.0000018131,0.0000018137, -0.0000018156,0.0000018181,0.0000018205,0.0000018227,0.0000018246, -0.0000018260,0.0000018273,0.0000018288,0.0000018311,0.0000018340, -0.0000018374,0.0000018402,0.0000018424,0.0000018438,0.0000018441, -0.0000018442,0.0000018445,0.0000018445,0.0000018448,0.0000018452, -0.0000018463,0.0000018481,0.0000018510,0.0000018540,0.0000018564, -0.0000018576,0.0000018571,0.0000018551,0.0000018510,0.0000018460, -0.0000018416,0.0000018392,0.0000018382,0.0000018382,0.0000018385, -0.0000018394,0.0000018408,0.0000018428,0.0000018445,0.0000018454, -0.0000018461,0.0000018471,0.0000018493,0.0000018528,0.0000018565, -0.0000018599,0.0000018620,0.0000018622,0.0000018595,0.0000018539, -0.0000018468,0.0000018402,0.0000018354,0.0000018330,0.0000018328, -0.0000018335,0.0000018349,0.0000018363,0.0000018376,0.0000018388, -0.0000018397,0.0000018402,0.0000018407,0.0000018412,0.0000018423, -0.0000018441,0.0000018461,0.0000018475,0.0000018487,0.0000018502, -0.0000018517,0.0000018528,0.0000018535,0.0000018540,0.0000018540, -0.0000018533,0.0000018523,0.0000018509,0.0000018497,0.0000018494, -0.0000018506,0.0000018528,0.0000018552,0.0000018576,0.0000018597, -0.0000018614,0.0000018633,0.0000018652,0.0000018667,0.0000018677, -0.0000018682,0.0000018684,0.0000018683,0.0000018682,0.0000018680, -0.0000018678,0.0000018675,0.0000018668,0.0000018661,0.0000018651, -0.0000018642,0.0000018636,0.0000018630,0.0000018620,0.0000018610, -0.0000018603,0.0000018603,0.0000018610,0.0000018628,0.0000018648, -0.0000018667,0.0000018678,0.0000018683,0.0000018677,0.0000018669, -0.0000018664,0.0000018665,0.0000018665,0.0000018664,0.0000018645, -0.0000018619,0.0000018591,0.0000018563,0.0000018542,0.0000018532, -0.0000018525,0.0000018520,0.0000018508,0.0000018498,0.0000018492, -0.0000018497,0.0000018508,0.0000018535,0.0000018566,0.0000018596, -0.0000018622,0.0000018643,0.0000018668,0.0000018692,0.0000018712, -0.0000018736,0.0000018757,0.0000018783,0.0000018817,0.0000018853, -0.0000018887,0.0000018914,0.0000018936,0.0000018955,0.0000018968, -0.0000018976,0.0000018980,0.0000018978,0.0000018973,0.0000018967, -0.0000018948,0.0000018915,0.0000018875,0.0000018838,0.0000018811, -0.0000018791,0.0000018783,0.0000018792,0.0000018817,0.0000018854, -0.0000018893,0.0000018907,0.0000018890,0.0000018838,0.0000018759, -0.0000018692,0.0000018655,0.0000018647,0.0000018653,0.0000018655, -0.0000018643,0.0000018611,0.0000018564,0.0000018521,0.0000018488, -0.0000018462,0.0000018443,0.0000018420,0.0000018384,0.0000018340, -0.0000018295,0.0000018250,0.0000018211,0.0000018179,0.0000018153, -0.0000018135,0.0000018121,0.0000018099,0.0000018071,0.0000018039, -0.0000018005,0.0000017970,0.0000017950,0.0000017942,0.0000017945, -0.0000017953,0.0000017963,0.0000017969,0.0000017971,0.0000017975, -0.0000017977,0.0000017979,0.0000017982,0.0000017989,0.0000018004, -0.0000018018,0.0000018036,0.0000018058,0.0000018089,0.0000018127, -0.0000018164,0.0000018200,0.0000018240,0.0000018275,0.0000018305, -0.0000018338,0.0000018369,0.0000018386,0.0000018404,0.0000018420, -0.0000018432,0.0000018442,0.0000018450,0.0000018454,0.0000018460, -0.0000018466,0.0000018471,0.0000018470,0.0000018468,0.0000018469, -0.0000018471,0.0000018476,0.0000018485,0.0000018494,0.0000018498, -0.0000018500,0.0000018502,0.0000018493,0.0000018472,0.0000018436, -0.0000018387,0.0000018335,0.0000018276,0.0000018215,0.0000018165, -0.0000018129,0.0000018110,0.0000018110,0.0000018126,0.0000018148, -0.0000018164,0.0000018187,0.0000018208,0.0000018237,0.0000018246, -0.0000018255,0.0000018256,0.0000018250,0.0000018241,0.0000018239, -0.0000018217,0.0000018189,0.0000018162,0.0000018126,0.0000018108, -0.0000018100,0.0000018094,0.0000018089,0.0000018081,0.0000018080, -0.0000018099,0.0000018115,0.0000018142,0.0000018165,0.0000018186, -0.0000018204,0.0000018221,0.0000018211,0.0000018207,0.0000018197, -0.0000018191,0.0000018179,0.0000018175,0.0000018161,0.0000018137, -0.0000018101,0.0000018054,0.0000017997,0.0000017941,0.0000017903, -0.0000017885,0.0000017881,0.0000017877,0.0000017877,0.0000017869, -0.0000017848,0.0000017818,0.0000017776,0.0000017725,0.0000017685, -0.0000017661,0.0000017650,0.0000017676,0.0000017709,0.0000017769, -0.0000017803,0.0000017826,0.0000017849,0.0000017848,0.0000017851, -0.0000017864,0.0000017886,0.0000017917,0.0000017942,0.0000017962, -0.0000017984,0.0000018007,0.0000018019,0.0000018016,0.0000017995, -0.0000017977,0.0000017966,0.0000017956,0.0000017952,0.0000017952, -0.0000017954,0.0000017947,0.0000017921,0.0000017884,0.0000017851, -0.0000017820,0.0000017793,0.0000017771,0.0000017749,0.0000017731, -0.0000017719,0.0000017716,0.0000017712,0.0000017710,0.0000017709, -0.0000017705,0.0000017684,0.0000017645,0.0000017595,0.0000017541, -0.0000017473,0.0000017402,0.0000017344,0.0000017309,0.0000017296, -0.0000017307,0.0000017334,0.0000017358,0.0000017373,0.0000017375, -0.0000017369,0.0000017359,0.0000017370,0.0000017419,0.0000017484, -0.0000017523,0.0000017534,0.0000017525,0.0000017511,0.0000017500, -0.0000017518,0.0000017548,0.0000017573,0.0000017582,0.0000017569, -0.0000017556,0.0000017551,0.0000017542,0.0000017528,0.0000017500, -0.0000017475,0.0000017468,0.0000017467,0.0000017471,0.0000017459, -0.0000017432,0.0000017397,0.0000017358,0.0000017332,0.0000017310, -0.0000017302,0.0000017294,0.0000017275,0.0000017252,0.0000017238, -0.0000017253,0.0000017270,0.0000017310,0.0000017370,0.0000017441, -0.0000017508,0.0000017586,0.0000017683,0.0000017784,0.0000017884, -0.0000017986,0.0000018087,0.0000018191,0.0000018286,0.0000018372, -0.0000018441,0.0000018491,0.0000018534,0.0000018578,0.0000018635, -0.0000018694,0.0000018756,0.0000018831,0.0000018915,0.0000018972, -0.0000018975,0.0000018957,0.0000018905,0.0000018858,0.0000018834, -0.0000018818,0.0000018782,0.0000018725,0.0000018658,0.0000018603, -0.0000018587,0.0000018574,0.0000018578,0.0000018622,0.0000018699, -0.0000018784,0.0000018836,0.0000018837,0.0000018813,0.0000018782, -0.0000018758,0.0000018745,0.0000018734,0.0000018704,0.0000018647, -0.0000018576,0.0000018510,0.0000018469,0.0000018457,0.0000018454, -0.0000018448,0.0000018435,0.0000018434,0.0000018446,0.0000018474, -0.0000018508,0.0000018529,0.0000018534,0.0000018520,0.0000018490, -0.0000018458,0.0000018437,0.0000018419,0.0000018390,0.0000018345, -0.0000018291,0.0000018241,0.0000018203,0.0000018181,0.0000018164, -0.0000018149,0.0000018132,0.0000018113,0.0000018105,0.0000018118, -0.0000018152,0.0000018200,0.0000018257,0.0000018305,0.0000018345, -0.0000018385,0.0000018421,0.0000018452,0.0000018476,0.0000018495, -0.0000018524,0.0000018583,0.0000018672,0.0000018763,0.0000018821, -0.0000018836,0.0000018813,0.0000018770,0.0000018734,0.0000018713, -0.0000018699,0.0000018683,0.0000018677,0.0000018678,0.0000018680, -0.0000018679,0.0000018679,0.0000018674,0.0000018665,0.0000018657, -0.0000018652,0.0000018650,0.0000018646,0.0000018633,0.0000018610, -0.0000018580,0.0000018544,0.0000018504,0.0000018461,0.0000018415, -0.0000018371,0.0000018343,0.0000018339,0.0000018352,0.0000018372, -0.0000018400,0.0000018439,0.0000018480,0.0000018505,0.0000018499, -0.0000018455,0.0000018377,0.0000018287,0.0000018180,0.0000018045, -0.0000017930,0.0000017903,0.0000017938,0.0000017977,0.0000017984, -0.0000017975,0.0000017950,0.0000017909,0.0000017859,0.0000017826, -0.0000017824,0.0000017842,0.0000017875,0.0000017934,0.0000018005, -0.0000018075,0.0000018122,0.0000018131,0.0000018119,0.0000018114, -0.0000018130,0.0000018145,0.0000018151,0.0000018113,0.0000018070, -0.0000018004,0.0000017926,0.0000017858,0.0000017807,0.0000017770, -0.0000017764,0.0000017766,0.0000017769,0.0000017763,0.0000017742, -0.0000017703,0.0000017650,0.0000017585,0.0000017522,0.0000017469, -0.0000017431,0.0000017436,0.0000017454,0.0000017484,0.0000017510, -0.0000017531,0.0000017555,0.0000017571,0.0000017557,0.0000017520, -0.0000017482,0.0000017448,0.0000017418,0.0000017381,0.0000017335, -0.0000017300,0.0000017297,0.0000017318,0.0000017340,0.0000017343, -0.0000017330,0.0000017308,0.0000017277,0.0000017247,0.0000017235, -0.0000017201,0.0000017180,0.0000017180,0.0000017191,0.0000017208, -0.0000017236,0.0000017276,0.0000017323,0.0000017379,0.0000017433, -0.0000017477,0.0000017505,0.0000017531,0.0000017574,0.0000017636, -0.0000017710,0.0000017786,0.0000017856,0.0000017914,0.0000017948, -0.0000017979,0.0000018021,0.0000018057,0.0000018079,0.0000018085, -0.0000018100,0.0000018098,0.0000018055,0.0000017984,0.0000017912, -0.0000017858,0.0000017831,0.0000017825,0.0000017818,0.0000017828, -0.0000017859,0.0000017870,0.0000017816,0.0000017735,0.0000017746, -0.0000017770,0.0000018121,0.0000018693,0.0000018881,0.0000018843, -0.0000018789,0.0000018777,0.0000018804,0.0000018858,0.0000018887, -0.0000018856,0.0000018628,0.0000018243,0.0000018021,0.0000018005, -0.0000017988,0.0000017931,0.0000017863,0.0000017821,0.0000017808, -0.0000017771,0.0000017679,0.0000017574,0.0000017496,0.0000017438, -0.0000017397,0.0000017388,0.0000017399,0.0000017421,0.0000017459, -0.0000017523,0.0000017583,0.0000017606,0.0000017591,0.0000017516, -0.0000017451,0.0000017513,0.0000017765,0.0000017874,0.0000017757, -0.0000017612,0.0000017572,0.0000017620,0.0000017676,0.0000017693, -0.0000017688,0.0000017680,0.0000017679,0.0000017683,0.0000017690, -0.0000017697,0.0000017697,0.0000017695,0.0000017699,0.0000017718, -0.0000017762,0.0000017817,0.0000017847,0.0000017817,0.0000017761, -0.0000017748,0.0000017791,0.0000017936,0.0000018124,0.0000018133, -0.0000017918,0.0000017703,0.0000017608,0.0000017548,0.0000017506, -0.0000017511,0.0000017571,0.0000017657,0.0000017707,0.0000017697, -0.0000017617,0.0000017491,0.0000017403,0.0000017404,0.0000017514, -0.0000017683,0.0000017813,0.0000017855,0.0000017840,0.0000017807, -0.0000017796,0.0000017796,0.0000017784,0.0000017764,0.0000017730, -0.0000017676,0.0000017628,0.0000017611,0.0000017613,0.0000017616, -0.0000017613,0.0000017619,0.0000017648,0.0000017672,0.0000017668, -0.0000017650,0.0000017646,0.0000017661,0.0000017707,0.0000017748, -0.0000017745,0.0000017719,0.0000017719,0.0000017733,0.0000017725, -0.0000017695,0.0000017683,0.0000017704,0.0000017742,0.0000017764, -0.0000017767,0.0000017757,0.0000017740,0.0000017726,0.0000017725, -0.0000017739,0.0000017757,0.0000017757,0.0000017734,0.0000017698, -0.0000017665,0.0000017636,0.0000017602,0.0000017569,0.0000017558, -0.0000017564,0.0000017585,0.0000017603,0.0000017600,0.0000017575, -0.0000017548,0.0000017538,0.0000017534,0.0000017540,0.0000017577, -0.0000017642,0.0000017712,0.0000017770,0.0000017802,0.0000017801, -0.0000017773,0.0000017724,0.0000017658,0.0000017583,0.0000017551, -0.0000017603,0.0000017768,0.0000017947,0.0000018028,0.0000018039, -0.0000018097,0.0000018222,0.0000018347,0.0000018477,0.0000018504, -0.0000018522,0.0000018531,0.0000018534,0.0000018539,0.0000018549, -0.0000018565,0.0000018583,0.0000018595,0.0000018594,0.0000018587, -0.0000018582,0.0000018578,0.0000018568,0.0000018554,0.0000018542, -0.0000018541,0.0000018557,0.0000018580,0.0000018586,0.0000018584, -0.0000018583,0.0000018590,0.0000018596,0.0000018583,0.0000018533, -0.0000018475,0.0000018447,0.0000018448,0.0000018449,0.0000018432, -0.0000018395,0.0000018345,0.0000018310,0.0000018307,0.0000018319, -0.0000018342,0.0000018368,0.0000018403,0.0000018436,0.0000018460, -0.0000018475,0.0000018484,0.0000018489,0.0000018491,0.0000018496, -0.0000018502,0.0000018511,0.0000018526,0.0000018542,0.0000018558, -0.0000018568,0.0000018576,0.0000018588,0.0000018607,0.0000018621, -0.0000018630,0.0000018637,0.0000018641,0.0000018640,0.0000018632, -0.0000018620,0.0000018603,0.0000018587,0.0000018576,0.0000018562, -0.0000018551,0.0000018540,0.0000018528,0.0000018512,0.0000018488, -0.0000018454,0.0000018421,0.0000018391,0.0000018363,0.0000018334, -0.0000018299,0.0000018256,0.0000018205,0.0000018145,0.0000018094, -0.0000018064,0.0000018081,0.0000018127,0.0000018206,0.0000018302, -0.0000018389,0.0000018446,0.0000018463,0.0000018459,0.0000018447, -0.0000018437,0.0000018429,0.0000018426,0.0000018427,0.0000018429, -0.0000018429,0.0000018421,0.0000018410,0.0000018399,0.0000018390, -0.0000018380,0.0000018369,0.0000018355,0.0000018342,0.0000018333, -0.0000018329,0.0000018325,0.0000018326,0.0000018331,0.0000018333, -0.0000018334,0.0000018337,0.0000018343,0.0000018350,0.0000018353, -0.0000018354,0.0000018351,0.0000018345,0.0000018332,0.0000018319, -0.0000018308,0.0000018300,0.0000018290,0.0000018281,0.0000018273, -0.0000018268,0.0000018262,0.0000018259,0.0000018259,0.0000018261, -0.0000018268,0.0000018283,0.0000018303,0.0000018328,0.0000018358, -0.0000018390,0.0000018424,0.0000018463,0.0000018512,0.0000018569, -0.0000018627,0.0000018684,0.0000018721,0.0000018740,0.0000018760, -0.0000018757,0.0000018739,0.0000018717,0.0000018691,0.0000018664, -0.0000018639,0.0000018618,0.0000018602,0.0000018591,0.0000018583, -0.0000018578,0.0000018572,0.0000018568,0.0000018571,0.0000018574, -0.0000018577,0.0000018576,0.0000018573,0.0000018578,0.0000018585, -0.0000018585,0.0000018579,0.0000018571,0.0000018568,0.0000018564, -0.0000018556,0.0000018548,0.0000018535,0.0000018520,0.0000018502, -0.0000018484,0.0000018463,0.0000018439,0.0000018413,0.0000018385, -0.0000018360,0.0000018335,0.0000018306,0.0000018274,0.0000018242, -0.0000018212,0.0000018190,0.0000018172,0.0000018160,0.0000018146, -0.0000018127,0.0000018120,0.0000018111,0.0000018109,0.0000018111, -0.0000018112,0.0000018110,0.0000018106,0.0000018097,0.0000018081, -0.0000018061,0.0000018034,0.0000018010,0.0000017986,0.0000017959, -0.0000017948,0.0000017936,0.0000017922,0.0000017903,0.0000017900, -0.0000017913,0.0000017917,0.0000017926,0.0000017934,0.0000017937, -0.0000017934,0.0000017929,0.0000017926,0.0000017926,0.0000017925, -0.0000017917,0.0000017904,0.0000017888,0.0000017875,0.0000017873, -0.0000017882,0.0000017903,0.0000017944,0.0000018002,0.0000018069, -0.0000018122,0.0000018167,0.0000018205,0.0000018235,0.0000018264, -0.0000018286,0.0000018310,0.0000018338,0.0000018356,0.0000018373, -0.0000018389,0.0000018405,0.0000018424,0.0000018450,0.0000018479, -0.0000018506,0.0000018533,0.0000018562,0.0000018594,0.0000018626, -0.0000018658,0.0000018677,0.0000018690,0.0000018694,0.0000018688, -0.0000018670,0.0000018645,0.0000018603,0.0000018559,0.0000018527, -0.0000018504,0.0000018477,0.0000018423,0.0000018333,0.0000018225, -0.0000018134,0.0000018087,0.0000018073,0.0000018063,0.0000018037, -0.0000017975,0.0000017891,0.0000017844,0.0000017833,0.0000017847, -0.0000017888,0.0000017921,0.0000017932,0.0000017915,0.0000017880, -0.0000017813,0.0000017745,0.0000017706,0.0000017697,0.0000017705, -0.0000017742,0.0000017789,0.0000017845,0.0000017894,0.0000017934, -0.0000017966,0.0000017992,0.0000018009,0.0000018025,0.0000018033, -0.0000018049,0.0000018053,0.0000018044,0.0000018028,0.0000018003, -0.0000017977,0.0000017943,0.0000017912,0.0000017890,0.0000017873, -0.0000017868,0.0000017884,0.0000017910,0.0000017942,0.0000017974, -0.0000018007,0.0000018036,0.0000018064,0.0000018087,0.0000018110, -0.0000018137,0.0000018168,0.0000018192,0.0000018215,0.0000018244, -0.0000018267,0.0000018285,0.0000018299,0.0000018314,0.0000018322, -0.0000018325,0.0000018324,0.0000018313,0.0000018300,0.0000018285, -0.0000018268,0.0000018248,0.0000018228,0.0000018212,0.0000018198, -0.0000018196,0.0000018206,0.0000018221,0.0000018241,0.0000018260, -0.0000018281,0.0000018300,0.0000018322,0.0000018349,0.0000018378, -0.0000018403,0.0000018420,0.0000018431,0.0000018440,0.0000018449, -0.0000018453,0.0000018457,0.0000018465,0.0000018470,0.0000018480, -0.0000018498,0.0000018524,0.0000018556,0.0000018588,0.0000018608, -0.0000018610,0.0000018597,0.0000018567,0.0000018524,0.0000018479, -0.0000018447,0.0000018425,0.0000018412,0.0000018408,0.0000018412, -0.0000018429,0.0000018450,0.0000018466,0.0000018471,0.0000018469, -0.0000018464,0.0000018465,0.0000018480,0.0000018512,0.0000018548, -0.0000018578,0.0000018591,0.0000018580,0.0000018541,0.0000018478, -0.0000018411,0.0000018357,0.0000018326,0.0000018309,0.0000018309, -0.0000018317,0.0000018329,0.0000018344,0.0000018354,0.0000018367, -0.0000018381,0.0000018391,0.0000018398,0.0000018404,0.0000018411, -0.0000018420,0.0000018435,0.0000018454,0.0000018470,0.0000018483, -0.0000018497,0.0000018515,0.0000018534,0.0000018551,0.0000018567, -0.0000018582,0.0000018590,0.0000018590,0.0000018586,0.0000018579, -0.0000018575,0.0000018578,0.0000018585,0.0000018593,0.0000018601, -0.0000018608,0.0000018618,0.0000018632,0.0000018647,0.0000018663, -0.0000018677,0.0000018686,0.0000018691,0.0000018691,0.0000018691, -0.0000018692,0.0000018695,0.0000018699,0.0000018699,0.0000018692, -0.0000018677,0.0000018660,0.0000018646,0.0000018635,0.0000018625, -0.0000018613,0.0000018600,0.0000018590,0.0000018587,0.0000018599, -0.0000018620,0.0000018647,0.0000018672,0.0000018689,0.0000018698, -0.0000018700,0.0000018699,0.0000018695,0.0000018694,0.0000018697, -0.0000018693,0.0000018681,0.0000018656,0.0000018614,0.0000018572, -0.0000018541,0.0000018523,0.0000018510,0.0000018495,0.0000018485, -0.0000018482,0.0000018487,0.0000018505,0.0000018530,0.0000018560, -0.0000018590,0.0000018615,0.0000018641,0.0000018668,0.0000018696, -0.0000018725,0.0000018757,0.0000018784,0.0000018815,0.0000018853, -0.0000018891,0.0000018925,0.0000018957,0.0000018981,0.0000018997, -0.0000019007,0.0000019009,0.0000019004,0.0000018991,0.0000018977, -0.0000018964,0.0000018946,0.0000018924,0.0000018906,0.0000018888, -0.0000018873,0.0000018862,0.0000018847,0.0000018828,0.0000018811, -0.0000018814,0.0000018839,0.0000018877,0.0000018920,0.0000018941, -0.0000018927,0.0000018873,0.0000018785,0.0000018702,0.0000018651, -0.0000018630,0.0000018631,0.0000018643,0.0000018644,0.0000018628, -0.0000018593,0.0000018547,0.0000018506,0.0000018477,0.0000018459, -0.0000018450,0.0000018442,0.0000018424,0.0000018394,0.0000018354, -0.0000018308,0.0000018262,0.0000018222,0.0000018179,0.0000018133, -0.0000018087,0.0000018044,0.0000018006,0.0000017985,0.0000017973, -0.0000017968,0.0000017970,0.0000017970,0.0000017967,0.0000017968, -0.0000017965,0.0000017964,0.0000017963,0.0000017964,0.0000017975, -0.0000017990,0.0000018007,0.0000018030,0.0000018055,0.0000018083, -0.0000018113,0.0000018138,0.0000018160,0.0000018184,0.0000018209, -0.0000018241,0.0000018286,0.0000018335,0.0000018384,0.0000018424, -0.0000018460,0.0000018493,0.0000018518,0.0000018535,0.0000018551, -0.0000018563,0.0000018574,0.0000018580,0.0000018580,0.0000018584, -0.0000018592,0.0000018601,0.0000018611,0.0000018624,0.0000018635, -0.0000018645,0.0000018660,0.0000018670,0.0000018669,0.0000018664, -0.0000018644,0.0000018612,0.0000018572,0.0000018523,0.0000018467, -0.0000018415,0.0000018374,0.0000018348,0.0000018335,0.0000018333, -0.0000018340,0.0000018343,0.0000018353,0.0000018378,0.0000018400, -0.0000018414,0.0000018424,0.0000018423,0.0000018402,0.0000018389, -0.0000018368,0.0000018348,0.0000018316,0.0000018289,0.0000018263, -0.0000018251,0.0000018235,0.0000018227,0.0000018225,0.0000018218, -0.0000018236,0.0000018241,0.0000018259,0.0000018279,0.0000018303, -0.0000018317,0.0000018335,0.0000018335,0.0000018335,0.0000018325, -0.0000018312,0.0000018296,0.0000018287,0.0000018280,0.0000018271, -0.0000018255,0.0000018233,0.0000018199,0.0000018150,0.0000018106, -0.0000018071,0.0000018041,0.0000018014,0.0000018002,0.0000017991, -0.0000017972,0.0000017947,0.0000017914,0.0000017866,0.0000017819, -0.0000017783,0.0000017757,0.0000017734,0.0000017720,0.0000017735, -0.0000017728,0.0000017723,0.0000017729,0.0000017739,0.0000017761, -0.0000017785,0.0000017816,0.0000017853,0.0000017885,0.0000017913, -0.0000017943,0.0000017977,0.0000018003,0.0000018007,0.0000018004, -0.0000018000,0.0000018005,0.0000017999,0.0000017987,0.0000017976, -0.0000017977,0.0000017976,0.0000017967,0.0000017943,0.0000017919, -0.0000017888,0.0000017854,0.0000017816,0.0000017774,0.0000017738, -0.0000017714,0.0000017711,0.0000017711,0.0000017718,0.0000017731, -0.0000017759,0.0000017768,0.0000017752,0.0000017718,0.0000017675, -0.0000017619,0.0000017557,0.0000017499,0.0000017447,0.0000017409, -0.0000017397,0.0000017406,0.0000017422,0.0000017429,0.0000017426, -0.0000017403,0.0000017377,0.0000017378,0.0000017417,0.0000017476, -0.0000017518,0.0000017536,0.0000017536,0.0000017531,0.0000017524, -0.0000017539,0.0000017564,0.0000017597,0.0000017631,0.0000017646, -0.0000017649,0.0000017647,0.0000017633,0.0000017613,0.0000017583, -0.0000017553,0.0000017536,0.0000017530,0.0000017532,0.0000017512, -0.0000017479,0.0000017434,0.0000017385,0.0000017338,0.0000017303, -0.0000017289,0.0000017288,0.0000017280,0.0000017270,0.0000017262, -0.0000017263,0.0000017276,0.0000017308,0.0000017344,0.0000017373, -0.0000017386,0.0000017387,0.0000017401,0.0000017428,0.0000017461, -0.0000017506,0.0000017560,0.0000017640,0.0000017739,0.0000017853, -0.0000017972,0.0000018082,0.0000018186,0.0000018292,0.0000018406, -0.0000018512,0.0000018601,0.0000018684,0.0000018768,0.0000018843, -0.0000018905,0.0000018920,0.0000018899,0.0000018867,0.0000018844, -0.0000018837,0.0000018829,0.0000018805,0.0000018761,0.0000018705, -0.0000018644,0.0000018585,0.0000018558,0.0000018555,0.0000018587, -0.0000018657,0.0000018740,0.0000018805,0.0000018812,0.0000018801, -0.0000018778,0.0000018759,0.0000018750,0.0000018750,0.0000018741, -0.0000018696,0.0000018613,0.0000018534,0.0000018487,0.0000018472, -0.0000018465,0.0000018454,0.0000018443,0.0000018445,0.0000018461, -0.0000018488,0.0000018516,0.0000018525,0.0000018512,0.0000018489, -0.0000018473,0.0000018467,0.0000018451,0.0000018410,0.0000018354, -0.0000018302,0.0000018268,0.0000018253,0.0000018240,0.0000018229, -0.0000018219,0.0000018198,0.0000018181,0.0000018175,0.0000018186, -0.0000018213,0.0000018262,0.0000018312,0.0000018354,0.0000018400, -0.0000018450,0.0000018493,0.0000018522,0.0000018536,0.0000018544, -0.0000018569,0.0000018629,0.0000018716,0.0000018796,0.0000018838, -0.0000018840,0.0000018814,0.0000018781,0.0000018759,0.0000018747, -0.0000018734,0.0000018723,0.0000018709,0.0000018692,0.0000018681, -0.0000018681,0.0000018683,0.0000018681,0.0000018674,0.0000018665, -0.0000018659,0.0000018656,0.0000018654,0.0000018645,0.0000018626, -0.0000018596,0.0000018560,0.0000018528,0.0000018493,0.0000018455, -0.0000018412,0.0000018377,0.0000018362,0.0000018363,0.0000018377, -0.0000018406,0.0000018447,0.0000018480,0.0000018489,0.0000018482, -0.0000018445,0.0000018375,0.0000018276,0.0000018153,0.0000018023, -0.0000017941,0.0000017938,0.0000017968,0.0000017985,0.0000017989, -0.0000017986,0.0000017962,0.0000017907,0.0000017843,0.0000017814, -0.0000017816,0.0000017835,0.0000017878,0.0000017949,0.0000018036, -0.0000018117,0.0000018159,0.0000018152,0.0000018114,0.0000018077, -0.0000018064,0.0000018065,0.0000018058,0.0000018046,0.0000018024, -0.0000018028,0.0000018019,0.0000017992,0.0000017942,0.0000017887, -0.0000017840,0.0000017806,0.0000017788,0.0000017777,0.0000017767, -0.0000017756,0.0000017734,0.0000017694,0.0000017646,0.0000017605, -0.0000017583,0.0000017581,0.0000017585,0.0000017587,0.0000017585, -0.0000017588,0.0000017583,0.0000017552,0.0000017514,0.0000017476, -0.0000017444,0.0000017419,0.0000017386,0.0000017340,0.0000017305, -0.0000017303,0.0000017326,0.0000017347,0.0000017351,0.0000017344, -0.0000017335,0.0000017318,0.0000017299,0.0000017276,0.0000017233, -0.0000017185,0.0000017163,0.0000017135,0.0000017120,0.0000017123, -0.0000017137,0.0000017162,0.0000017198,0.0000017243,0.0000017292, -0.0000017340,0.0000017395,0.0000017462,0.0000017528,0.0000017593, -0.0000017657,0.0000017720,0.0000017777,0.0000017820,0.0000017855, -0.0000017902,0.0000017966,0.0000018021,0.0000018051,0.0000018074, -0.0000018074,0.0000018040,0.0000017982,0.0000017911,0.0000017853, -0.0000017810,0.0000017790,0.0000017775,0.0000017771,0.0000017798, -0.0000017842,0.0000017824,0.0000017739,0.0000017723,0.0000017734, -0.0000018049,0.0000018601,0.0000018862,0.0000018862,0.0000018821, -0.0000018812,0.0000018845,0.0000018899,0.0000018924,0.0000018842, -0.0000018500,0.0000018130,0.0000018019,0.0000018018,0.0000017989, -0.0000017921,0.0000017850,0.0000017822,0.0000017806,0.0000017735, -0.0000017610,0.0000017504,0.0000017437,0.0000017397,0.0000017389, -0.0000017410,0.0000017440,0.0000017458,0.0000017472,0.0000017509, -0.0000017563,0.0000017617,0.0000017621,0.0000017578,0.0000017488, -0.0000017431,0.0000017558,0.0000017817,0.0000017861,0.0000017728, -0.0000017612,0.0000017581,0.0000017610,0.0000017623,0.0000017638, -0.0000017665,0.0000017694,0.0000017720,0.0000017743,0.0000017758, -0.0000017765,0.0000017756,0.0000017727,0.0000017705,0.0000017709, -0.0000017763,0.0000017842,0.0000017860,0.0000017797,0.0000017741, -0.0000017747,0.0000017844,0.0000018027,0.0000018118,0.0000017954, -0.0000017724,0.0000017611,0.0000017555,0.0000017511,0.0000017502, -0.0000017517,0.0000017584,0.0000017674,0.0000017723,0.0000017699, -0.0000017596,0.0000017463,0.0000017387,0.0000017411,0.0000017546, -0.0000017722,0.0000017836,0.0000017855,0.0000017826,0.0000017807, -0.0000017805,0.0000017797,0.0000017772,0.0000017740,0.0000017694, -0.0000017637,0.0000017599,0.0000017595,0.0000017606,0.0000017613, -0.0000017624,0.0000017656,0.0000017691,0.0000017702,0.0000017689, -0.0000017672,0.0000017668,0.0000017686,0.0000017727,0.0000017743, -0.0000017717,0.0000017694,0.0000017705,0.0000017720,0.0000017713, -0.0000017705,0.0000017717,0.0000017750,0.0000017775,0.0000017781, -0.0000017768,0.0000017743,0.0000017726,0.0000017727,0.0000017742, -0.0000017752,0.0000017744,0.0000017711,0.0000017671,0.0000017639, -0.0000017610,0.0000017579,0.0000017566,0.0000017573,0.0000017602, -0.0000017629,0.0000017626,0.0000017592,0.0000017554,0.0000017540, -0.0000017543,0.0000017583,0.0000017659,0.0000017737,0.0000017783, -0.0000017792,0.0000017775,0.0000017735,0.0000017686,0.0000017625, -0.0000017563,0.0000017547,0.0000017626,0.0000017794,0.0000017957, -0.0000018024,0.0000018036,0.0000018101,0.0000018240,0.0000018367, -0.0000018439,0.0000018514,0.0000018540,0.0000018555,0.0000018566, -0.0000018579,0.0000018593,0.0000018603,0.0000018611,0.0000018617, -0.0000018616,0.0000018613,0.0000018612,0.0000018612,0.0000018611, -0.0000018607,0.0000018595,0.0000018583,0.0000018574,0.0000018572, -0.0000018579,0.0000018578,0.0000018572,0.0000018577,0.0000018587, -0.0000018576,0.0000018526,0.0000018478,0.0000018468,0.0000018479, -0.0000018473,0.0000018432,0.0000018355,0.0000018294,0.0000018285, -0.0000018298,0.0000018324,0.0000018365,0.0000018415,0.0000018458, -0.0000018482,0.0000018487,0.0000018485,0.0000018480,0.0000018481, -0.0000018500,0.0000018502,0.0000018515,0.0000018534,0.0000018555, -0.0000018582,0.0000018606,0.0000018626,0.0000018642,0.0000018654, -0.0000018672,0.0000018689,0.0000018698,0.0000018704,0.0000018706, -0.0000018707,0.0000018706,0.0000018700,0.0000018692,0.0000018682, -0.0000018670,0.0000018655,0.0000018642,0.0000018635,0.0000018626, -0.0000018614,0.0000018599,0.0000018574,0.0000018542,0.0000018512, -0.0000018484,0.0000018460,0.0000018437,0.0000018406,0.0000018368, -0.0000018322,0.0000018261,0.0000018195,0.0000018133,0.0000018095, -0.0000018097,0.0000018138,0.0000018223,0.0000018320,0.0000018397, -0.0000018434,0.0000018440,0.0000018428,0.0000018411,0.0000018396, -0.0000018387,0.0000018387,0.0000018391,0.0000018392,0.0000018387, -0.0000018379,0.0000018375,0.0000018372,0.0000018369,0.0000018364, -0.0000018356,0.0000018351,0.0000018351,0.0000018348,0.0000018344, -0.0000018343,0.0000018340,0.0000018335,0.0000018329,0.0000018326, -0.0000018327,0.0000018327,0.0000018325,0.0000018323,0.0000018319, -0.0000018311,0.0000018298,0.0000018286,0.0000018275,0.0000018267, -0.0000018262,0.0000018260,0.0000018259,0.0000018260,0.0000018258, -0.0000018261,0.0000018266,0.0000018269,0.0000018272,0.0000018278, -0.0000018281,0.0000018286,0.0000018294,0.0000018306,0.0000018323, -0.0000018349,0.0000018384,0.0000018420,0.0000018453,0.0000018484, -0.0000018519,0.0000018560,0.0000018606,0.0000018651,0.0000018694, -0.0000018716,0.0000018730,0.0000018748,0.0000018750,0.0000018741, -0.0000018727,0.0000018712,0.0000018696,0.0000018681,0.0000018663, -0.0000018650,0.0000018644,0.0000018641,0.0000018640,0.0000018635, -0.0000018632,0.0000018635,0.0000018640,0.0000018642,0.0000018643, -0.0000018644,0.0000018646,0.0000018648,0.0000018649,0.0000018649, -0.0000018647,0.0000018643,0.0000018636,0.0000018626,0.0000018615, -0.0000018605,0.0000018596,0.0000018585,0.0000018574,0.0000018563, -0.0000018550,0.0000018531,0.0000018511,0.0000018492,0.0000018477, -0.0000018462,0.0000018449,0.0000018438,0.0000018415,0.0000018399, -0.0000018384,0.0000018374,0.0000018367,0.0000018360,0.0000018351, -0.0000018346,0.0000018340,0.0000018331,0.0000018315,0.0000018295, -0.0000018271,0.0000018248,0.0000018220,0.0000018189,0.0000018162, -0.0000018130,0.0000018098,0.0000018073,0.0000018039,0.0000018006, -0.0000017984,0.0000017971,0.0000017952,0.0000017943,0.0000017941, -0.0000017943,0.0000017954,0.0000017960,0.0000017957,0.0000017946, -0.0000017925,0.0000017899,0.0000017875,0.0000017865,0.0000017864, -0.0000017886,0.0000017930,0.0000017981,0.0000018032,0.0000018080, -0.0000018125,0.0000018164,0.0000018203,0.0000018240,0.0000018275, -0.0000018309,0.0000018331,0.0000018345,0.0000018359,0.0000018371, -0.0000018380,0.0000018391,0.0000018405,0.0000018422,0.0000018434, -0.0000018444,0.0000018456,0.0000018475,0.0000018503,0.0000018537, -0.0000018577,0.0000018620,0.0000018655,0.0000018685,0.0000018705, -0.0000018708,0.0000018701,0.0000018674,0.0000018635,0.0000018599, -0.0000018571,0.0000018546,0.0000018501,0.0000018415,0.0000018294, -0.0000018179,0.0000018119,0.0000018110,0.0000018116,0.0000018113, -0.0000018062,0.0000017971,0.0000017904,0.0000017881,0.0000017885, -0.0000017902,0.0000017914,0.0000017914,0.0000017899,0.0000017871, -0.0000017831,0.0000017793,0.0000017769,0.0000017764,0.0000017772, -0.0000017800,0.0000017832,0.0000017874,0.0000017917,0.0000017949, -0.0000017977,0.0000018000,0.0000018034,0.0000018069,0.0000018096, -0.0000018112,0.0000018116,0.0000018104,0.0000018075,0.0000018045, -0.0000018014,0.0000017981,0.0000017952,0.0000017932,0.0000017929, -0.0000017943,0.0000017965,0.0000017994,0.0000018018,0.0000018047, -0.0000018075,0.0000018101,0.0000018124,0.0000018156,0.0000018180, -0.0000018207,0.0000018237,0.0000018271,0.0000018293,0.0000018313, -0.0000018333,0.0000018347,0.0000018355,0.0000018364,0.0000018363, -0.0000018359,0.0000018349,0.0000018335,0.0000018319,0.0000018300, -0.0000018282,0.0000018267,0.0000018255,0.0000018257,0.0000018266, -0.0000018279,0.0000018298,0.0000018323,0.0000018350,0.0000018377, -0.0000018402,0.0000018420,0.0000018433,0.0000018441,0.0000018449, -0.0000018462,0.0000018474,0.0000018482,0.0000018489,0.0000018501, -0.0000018512,0.0000018530,0.0000018558,0.0000018590,0.0000018612, -0.0000018622,0.0000018620,0.0000018605,0.0000018575,0.0000018538, -0.0000018500,0.0000018468,0.0000018447,0.0000018436,0.0000018436, -0.0000018449,0.0000018468,0.0000018485,0.0000018491,0.0000018486, -0.0000018478,0.0000018470,0.0000018472,0.0000018494,0.0000018532, -0.0000018571,0.0000018595,0.0000018596,0.0000018576,0.0000018525, -0.0000018460,0.0000018404,0.0000018372,0.0000018358,0.0000018353, -0.0000018354,0.0000018357,0.0000018357,0.0000018355,0.0000018354, -0.0000018356,0.0000018363,0.0000018373,0.0000018382,0.0000018385, -0.0000018387,0.0000018388,0.0000018392,0.0000018400,0.0000018416, -0.0000018437,0.0000018460,0.0000018487,0.0000018519,0.0000018552, -0.0000018587,0.0000018622,0.0000018650,0.0000018666,0.0000018669, -0.0000018663,0.0000018651,0.0000018638,0.0000018629,0.0000018626, -0.0000018623,0.0000018622,0.0000018622,0.0000018626,0.0000018634, -0.0000018647,0.0000018664,0.0000018681,0.0000018695,0.0000018706, -0.0000018712,0.0000018712,0.0000018711,0.0000018707,0.0000018711, -0.0000018710,0.0000018699,0.0000018681,0.0000018662,0.0000018647, -0.0000018641,0.0000018635,0.0000018631,0.0000018619,0.0000018598, -0.0000018579,0.0000018573,0.0000018581,0.0000018603,0.0000018629, -0.0000018654,0.0000018680,0.0000018701,0.0000018711,0.0000018712, -0.0000018709,0.0000018713,0.0000018723,0.0000018729,0.0000018719, -0.0000018688,0.0000018643,0.0000018600,0.0000018564,0.0000018536, -0.0000018514,0.0000018504,0.0000018507,0.0000018518,0.0000018535, -0.0000018555,0.0000018576,0.0000018596,0.0000018622,0.0000018645, -0.0000018668,0.0000018691,0.0000018718,0.0000018754,0.0000018784, -0.0000018817,0.0000018858,0.0000018901,0.0000018942,0.0000018979, -0.0000019008,0.0000019030,0.0000019048,0.0000019050,0.0000019043, -0.0000019024,0.0000018996,0.0000018966,0.0000018929,0.0000018892, -0.0000018869,0.0000018860,0.0000018864,0.0000018880,0.0000018892, -0.0000018892,0.0000018885,0.0000018871,0.0000018853,0.0000018853, -0.0000018874,0.0000018904,0.0000018937,0.0000018956,0.0000018949, -0.0000018904,0.0000018816,0.0000018716,0.0000018640,0.0000018606, -0.0000018604,0.0000018617,0.0000018631,0.0000018630,0.0000018620, -0.0000018589,0.0000018550,0.0000018521,0.0000018502,0.0000018491, -0.0000018483,0.0000018470,0.0000018450,0.0000018423,0.0000018391, -0.0000018347,0.0000018294,0.0000018237,0.0000018182,0.0000018135, -0.0000018102,0.0000018080,0.0000018066,0.0000018059,0.0000018051, -0.0000018039,0.0000018025,0.0000018012,0.0000018000,0.0000017989, -0.0000017986,0.0000017990,0.0000018004,0.0000018017,0.0000018036, -0.0000018063,0.0000018093,0.0000018120,0.0000018142,0.0000018162, -0.0000018172,0.0000018174,0.0000018180,0.0000018203,0.0000018245, -0.0000018297,0.0000018353,0.0000018407,0.0000018456,0.0000018497, -0.0000018530,0.0000018555,0.0000018574,0.0000018586,0.0000018592, -0.0000018598,0.0000018612,0.0000018632,0.0000018657,0.0000018679, -0.0000018699,0.0000018714,0.0000018733,0.0000018752,0.0000018770, -0.0000018777,0.0000018776,0.0000018763,0.0000018744,0.0000018716, -0.0000018677,0.0000018629,0.0000018580,0.0000018542,0.0000018513, -0.0000018494,0.0000018483,0.0000018469,0.0000018466,0.0000018472, -0.0000018496,0.0000018514,0.0000018539,0.0000018553,0.0000018549, -0.0000018534,0.0000018517,0.0000018495,0.0000018471,0.0000018443, -0.0000018424,0.0000018411,0.0000018404,0.0000018390,0.0000018383, -0.0000018370,0.0000018384,0.0000018392,0.0000018408,0.0000018427, -0.0000018452,0.0000018475,0.0000018500,0.0000018511,0.0000018509, -0.0000018498,0.0000018481,0.0000018458,0.0000018432,0.0000018415, -0.0000018401,0.0000018387,0.0000018375,0.0000018353,0.0000018325, -0.0000018296,0.0000018268,0.0000018237,0.0000018198,0.0000018174, -0.0000018157,0.0000018140,0.0000018115,0.0000018078,0.0000018024, -0.0000017966,0.0000017924,0.0000017893,0.0000017862,0.0000017826, -0.0000017787,0.0000017746,0.0000017709,0.0000017687,0.0000017666, -0.0000017668,0.0000017693,0.0000017735,0.0000017777,0.0000017818, -0.0000017864,0.0000017908,0.0000017947,0.0000017977,0.0000017991, -0.0000017996,0.0000017996,0.0000018002,0.0000018001,0.0000017987, -0.0000017968,0.0000017963,0.0000017961,0.0000017961,0.0000017953, -0.0000017948,0.0000017936,0.0000017924,0.0000017892,0.0000017842, -0.0000017788,0.0000017742,0.0000017717,0.0000017709,0.0000017717, -0.0000017737,0.0000017773,0.0000017800,0.0000017807,0.0000017790, -0.0000017758,0.0000017721,0.0000017681,0.0000017638,0.0000017590, -0.0000017541,0.0000017512,0.0000017512,0.0000017520,0.0000017522, -0.0000017512,0.0000017477,0.0000017439,0.0000017427,0.0000017447, -0.0000017491,0.0000017524,0.0000017535,0.0000017532,0.0000017526, -0.0000017519,0.0000017534,0.0000017557,0.0000017597,0.0000017642, -0.0000017681,0.0000017714,0.0000017729,0.0000017725,0.0000017705, -0.0000017673,0.0000017638,0.0000017615,0.0000017608,0.0000017608, -0.0000017585,0.0000017548,0.0000017497,0.0000017438,0.0000017379, -0.0000017326,0.0000017293,0.0000017282,0.0000017277,0.0000017270, -0.0000017264,0.0000017258,0.0000017265,0.0000017296,0.0000017341, -0.0000017376,0.0000017379,0.0000017367,0.0000017358,0.0000017349, -0.0000017346,0.0000017344,0.0000017339,0.0000017346,0.0000017367, -0.0000017407,0.0000017461,0.0000017532,0.0000017630,0.0000017763, -0.0000017933,0.0000018114,0.0000018289,0.0000018453,0.0000018595, -0.0000018697,0.0000018766,0.0000018812,0.0000018836,0.0000018839, -0.0000018835,0.0000018834,0.0000018835,0.0000018840,0.0000018833, -0.0000018805,0.0000018756,0.0000018690,0.0000018614,0.0000018553, -0.0000018528,0.0000018548,0.0000018612,0.0000018695,0.0000018772, -0.0000018798,0.0000018797,0.0000018783,0.0000018777,0.0000018781, -0.0000018783,0.0000018766,0.0000018717,0.0000018650,0.0000018587, -0.0000018541,0.0000018509,0.0000018482,0.0000018454,0.0000018440, -0.0000018431,0.0000018442,0.0000018462,0.0000018475,0.0000018470, -0.0000018461,0.0000018460,0.0000018457,0.0000018438,0.0000018398, -0.0000018345,0.0000018306,0.0000018296,0.0000018291,0.0000018286, -0.0000018281,0.0000018271,0.0000018261,0.0000018257,0.0000018260, -0.0000018273,0.0000018309,0.0000018355,0.0000018400,0.0000018451, -0.0000018506,0.0000018552,0.0000018583,0.0000018595,0.0000018592, -0.0000018593,0.0000018619,0.0000018679,0.0000018758,0.0000018819, -0.0000018839,0.0000018827,0.0000018796,0.0000018770,0.0000018757, -0.0000018753,0.0000018753,0.0000018751,0.0000018735,0.0000018715, -0.0000018702,0.0000018695,0.0000018690,0.0000018685,0.0000018682, -0.0000018679,0.0000018676,0.0000018671,0.0000018656,0.0000018636, -0.0000018620,0.0000018605,0.0000018580,0.0000018545,0.0000018510, -0.0000018484,0.0000018459,0.0000018426,0.0000018392,0.0000018370, -0.0000018373,0.0000018403,0.0000018447,0.0000018474,0.0000018475, -0.0000018461,0.0000018422,0.0000018344,0.0000018233,0.0000018107, -0.0000018007,0.0000017968,0.0000017973,0.0000017985,0.0000017993, -0.0000018002,0.0000018000,0.0000017968,0.0000017902,0.0000017840, -0.0000017816,0.0000017817,0.0000017832,0.0000017888,0.0000017978, -0.0000018074,0.0000018142,0.0000018161,0.0000018139,0.0000018083, -0.0000018037,0.0000018007,0.0000017990,0.0000017977,0.0000017977, -0.0000018000,0.0000018044,0.0000018081,0.0000018089,0.0000018072, -0.0000018031,0.0000017976,0.0000017925,0.0000017880,0.0000017837, -0.0000017801,0.0000017773,0.0000017749,0.0000017733,0.0000017734, -0.0000017749,0.0000017769,0.0000017784,0.0000017787,0.0000017784, -0.0000017780,0.0000017755,0.0000017702,0.0000017635,0.0000017569, -0.0000017510,0.0000017455,0.0000017396,0.0000017334,0.0000017301, -0.0000017305,0.0000017328,0.0000017344,0.0000017348,0.0000017348, -0.0000017349,0.0000017345,0.0000017333,0.0000017314,0.0000017281, -0.0000017234,0.0000017193,0.0000017158,0.0000017128,0.0000017106, -0.0000017096,0.0000017083,0.0000017082,0.0000017096,0.0000017124, -0.0000017166,0.0000017230,0.0000017314,0.0000017397,0.0000017474, -0.0000017544,0.0000017607,0.0000017662,0.0000017701,0.0000017725, -0.0000017754,0.0000017816,0.0000017897,0.0000017972,0.0000018027, -0.0000018039,0.0000018016,0.0000017968,0.0000017908,0.0000017847, -0.0000017790,0.0000017752,0.0000017728,0.0000017709,0.0000017718, -0.0000017777,0.0000017810,0.0000017754,0.0000017706,0.0000017694, -0.0000017895,0.0000018365,0.0000018740,0.0000018875,0.0000018895, -0.0000018886,0.0000018914,0.0000018952,0.0000018933,0.0000018721, -0.0000018307,0.0000018052,0.0000018025,0.0000018016,0.0000017963, -0.0000017872,0.0000017822,0.0000017814,0.0000017763,0.0000017633, -0.0000017500,0.0000017423,0.0000017385,0.0000017390,0.0000017432, -0.0000017489,0.0000017533,0.0000017544,0.0000017529,0.0000017518, -0.0000017553,0.0000017610,0.0000017635,0.0000017618,0.0000017554, -0.0000017451,0.0000017423,0.0000017626,0.0000017865,0.0000017853, -0.0000017729,0.0000017632,0.0000017592,0.0000017624,0.0000017627, -0.0000017629,0.0000017649,0.0000017677,0.0000017720,0.0000017762, -0.0000017794,0.0000017813,0.0000017808,0.0000017772,0.0000017724, -0.0000017718,0.0000017791,0.0000017866,0.0000017845,0.0000017747, -0.0000017728,0.0000017794,0.0000017938,0.0000018046,0.0000017968, -0.0000017746,0.0000017616,0.0000017560,0.0000017517,0.0000017506, -0.0000017507,0.0000017529,0.0000017600,0.0000017689,0.0000017727, -0.0000017689,0.0000017566,0.0000017429,0.0000017372,0.0000017433, -0.0000017606,0.0000017772,0.0000017840,0.0000017837,0.0000017814, -0.0000017805,0.0000017801,0.0000017779,0.0000017746,0.0000017708, -0.0000017654,0.0000017599,0.0000017573,0.0000017579,0.0000017599, -0.0000017619,0.0000017653,0.0000017696,0.0000017721,0.0000017717, -0.0000017697,0.0000017679,0.0000017683,0.0000017714,0.0000017743, -0.0000017729,0.0000017695,0.0000017690,0.0000017712,0.0000017725, -0.0000017725,0.0000017732,0.0000017759,0.0000017786,0.0000017794, -0.0000017775,0.0000017742,0.0000017722,0.0000017725,0.0000017733, -0.0000017732,0.0000017710,0.0000017674,0.0000017644,0.0000017618, -0.0000017592,0.0000017580,0.0000017590,0.0000017631,0.0000017660, -0.0000017649,0.0000017597,0.0000017554,0.0000017549,0.0000017588, -0.0000017669,0.0000017754,0.0000017790,0.0000017781,0.0000017738, -0.0000017678,0.0000017622,0.0000017571,0.0000017541,0.0000017553, -0.0000017654,0.0000017823,0.0000017962,0.0000018011,0.0000018026, -0.0000018101,0.0000018247,0.0000018375,0.0000018442,0.0000018481, -0.0000018556,0.0000018586,0.0000018610,0.0000018627,0.0000018639, -0.0000018644,0.0000018643,0.0000018638,0.0000018631,0.0000018622, -0.0000018616,0.0000018614,0.0000018614,0.0000018615,0.0000018613, -0.0000018607,0.0000018597,0.0000018583,0.0000018569,0.0000018560, -0.0000018555,0.0000018555,0.0000018566,0.0000018562,0.0000018520, -0.0000018476,0.0000018475,0.0000018495,0.0000018495,0.0000018445, -0.0000018352,0.0000018300,0.0000018294,0.0000018321,0.0000018367, -0.0000018418,0.0000018454,0.0000018469,0.0000018466,0.0000018453, -0.0000018457,0.0000018481,0.0000018518,0.0000018563,0.0000018601, -0.0000018622,0.0000018649,0.0000018674,0.0000018697,0.0000018714, -0.0000018732,0.0000018743,0.0000018752,0.0000018762,0.0000018784, -0.0000018805,0.0000018821,0.0000018824,0.0000018819,0.0000018813, -0.0000018799,0.0000018780,0.0000018764,0.0000018752,0.0000018742, -0.0000018731,0.0000018722,0.0000018717,0.0000018708,0.0000018695, -0.0000018675,0.0000018646,0.0000018614,0.0000018584,0.0000018558, -0.0000018533,0.0000018507,0.0000018476,0.0000018440,0.0000018397, -0.0000018346,0.0000018295,0.0000018232,0.0000018161,0.0000018115, -0.0000018125,0.0000018169,0.0000018248,0.0000018329,0.0000018388, -0.0000018417,0.0000018418,0.0000018401,0.0000018378,0.0000018365, -0.0000018360,0.0000018363,0.0000018367,0.0000018370,0.0000018371, -0.0000018376,0.0000018380,0.0000018382,0.0000018379,0.0000018371, -0.0000018364,0.0000018355,0.0000018341,0.0000018326,0.0000018314, -0.0000018298,0.0000018280,0.0000018270,0.0000018267,0.0000018265, -0.0000018260,0.0000018256,0.0000018254,0.0000018249,0.0000018241, -0.0000018230,0.0000018215,0.0000018199,0.0000018186,0.0000018179, -0.0000018175,0.0000018175,0.0000018180,0.0000018189,0.0000018203, -0.0000018219,0.0000018235,0.0000018253,0.0000018271,0.0000018283, -0.0000018288,0.0000018295,0.0000018298,0.0000018301,0.0000018311, -0.0000018324,0.0000018340,0.0000018358,0.0000018374,0.0000018392, -0.0000018412,0.0000018431,0.0000018453,0.0000018475,0.0000018496, -0.0000018528,0.0000018566,0.0000018608,0.0000018653,0.0000018695, -0.0000018719,0.0000018736,0.0000018765,0.0000018780,0.0000018784, -0.0000018780,0.0000018780,0.0000018772,0.0000018754,0.0000018738, -0.0000018724,0.0000018711,0.0000018696,0.0000018687,0.0000018684, -0.0000018688,0.0000018691,0.0000018695,0.0000018701,0.0000018708, -0.0000018709,0.0000018710,0.0000018707,0.0000018700,0.0000018691, -0.0000018681,0.0000018676,0.0000018670,0.0000018664,0.0000018657, -0.0000018650,0.0000018641,0.0000018634,0.0000018628,0.0000018625, -0.0000018623,0.0000018625,0.0000018620,0.0000018616,0.0000018608, -0.0000018600,0.0000018594,0.0000018588,0.0000018576,0.0000018561, -0.0000018549,0.0000018537,0.0000018525,0.0000018512,0.0000018497, -0.0000018482,0.0000018468,0.0000018452,0.0000018435,0.0000018418, -0.0000018407,0.0000018386,0.0000018355,0.0000018320,0.0000018290, -0.0000018252,0.0000018211,0.0000018177,0.0000018148,0.0000018131, -0.0000018129,0.0000018131,0.0000018130,0.0000018121,0.0000018101, -0.0000018071,0.0000018036,0.0000018004,0.0000017985,0.0000017984, -0.0000017995,0.0000018016,0.0000018049,0.0000018086,0.0000018119, -0.0000018148,0.0000018177,0.0000018213,0.0000018247,0.0000018283, -0.0000018312,0.0000018332,0.0000018352,0.0000018371,0.0000018386, -0.0000018397,0.0000018405,0.0000018410,0.0000018415,0.0000018420, -0.0000018424,0.0000018430,0.0000018438,0.0000018452,0.0000018477, -0.0000018513,0.0000018559,0.0000018610,0.0000018660,0.0000018701, -0.0000018734,0.0000018751,0.0000018757,0.0000018742,0.0000018705, -0.0000018654,0.0000018608,0.0000018572,0.0000018532,0.0000018463, -0.0000018356,0.0000018245,0.0000018183,0.0000018174,0.0000018178, -0.0000018176,0.0000018123,0.0000018023,0.0000017929,0.0000017883, -0.0000017875,0.0000017886,0.0000017891,0.0000017897,0.0000017900, -0.0000017899,0.0000017888,0.0000017872,0.0000017855,0.0000017844, -0.0000017847,0.0000017859,0.0000017879,0.0000017907,0.0000017929, -0.0000017959,0.0000017991,0.0000018023,0.0000018066,0.0000018103, -0.0000018135,0.0000018150,0.0000018153,0.0000018151,0.0000018126, -0.0000018099,0.0000018069,0.0000018042,0.0000018025,0.0000018022, -0.0000018027,0.0000018039,0.0000018058,0.0000018083,0.0000018105, -0.0000018128,0.0000018159,0.0000018190,0.0000018223,0.0000018261, -0.0000018303,0.0000018340,0.0000018370,0.0000018395,0.0000018416, -0.0000018428,0.0000018436,0.0000018437,0.0000018434,0.0000018426, -0.0000018413,0.0000018397,0.0000018380,0.0000018361,0.0000018346, -0.0000018331,0.0000018327,0.0000018331,0.0000018340,0.0000018354, -0.0000018375,0.0000018397,0.0000018416,0.0000018429,0.0000018437, -0.0000018447,0.0000018462,0.0000018478,0.0000018495,0.0000018507, -0.0000018512,0.0000018517,0.0000018525,0.0000018539,0.0000018564, -0.0000018585,0.0000018601,0.0000018608,0.0000018597,0.0000018580, -0.0000018559,0.0000018534,0.0000018504,0.0000018479,0.0000018461, -0.0000018456,0.0000018463,0.0000018482,0.0000018505,0.0000018512, -0.0000018509,0.0000018494,0.0000018482,0.0000018481,0.0000018495, -0.0000018529,0.0000018574,0.0000018612,0.0000018618,0.0000018609, -0.0000018567,0.0000018506,0.0000018447,0.0000018409,0.0000018394, -0.0000018397,0.0000018406,0.0000018413,0.0000018415,0.0000018412, -0.0000018405,0.0000018395,0.0000018384,0.0000018374,0.0000018369, -0.0000018369,0.0000018368,0.0000018363,0.0000018358,0.0000018357, -0.0000018360,0.0000018369,0.0000018387,0.0000018414,0.0000018449, -0.0000018495,0.0000018546,0.0000018596,0.0000018643,0.0000018683, -0.0000018710,0.0000018725,0.0000018728,0.0000018719,0.0000018699, -0.0000018675,0.0000018656,0.0000018646,0.0000018639,0.0000018634, -0.0000018631,0.0000018631,0.0000018640,0.0000018656,0.0000018672, -0.0000018688,0.0000018704,0.0000018716,0.0000018720,0.0000018709, -0.0000018694,0.0000018679,0.0000018660,0.0000018642,0.0000018625, -0.0000018608,0.0000018596,0.0000018593,0.0000018600,0.0000018613, -0.0000018628,0.0000018633,0.0000018622,0.0000018597,0.0000018575, -0.0000018564,0.0000018568,0.0000018580,0.0000018602,0.0000018633, -0.0000018661,0.0000018682,0.0000018697,0.0000018706,0.0000018716, -0.0000018729,0.0000018743,0.0000018747,0.0000018744,0.0000018719, -0.0000018685,0.0000018645,0.0000018608,0.0000018582,0.0000018575, -0.0000018579,0.0000018592,0.0000018605,0.0000018615,0.0000018621, -0.0000018631,0.0000018646,0.0000018664,0.0000018681,0.0000018696, -0.0000018714,0.0000018740,0.0000018766,0.0000018800,0.0000018837, -0.0000018878,0.0000018924,0.0000018971,0.0000019012,0.0000019043, -0.0000019063,0.0000019071,0.0000019068,0.0000019049,0.0000019017, -0.0000018975,0.0000018925,0.0000018872,0.0000018826,0.0000018797, -0.0000018792,0.0000018807,0.0000018833,0.0000018865,0.0000018896, -0.0000018914,0.0000018919,0.0000018919,0.0000018915,0.0000018907, -0.0000018910,0.0000018927,0.0000018949,0.0000018963,0.0000018958, -0.0000018918,0.0000018832,0.0000018723,0.0000018632,0.0000018580, -0.0000018572,0.0000018592,0.0000018624,0.0000018651,0.0000018654, -0.0000018645,0.0000018618,0.0000018582,0.0000018548,0.0000018521, -0.0000018501,0.0000018488,0.0000018479,0.0000018460,0.0000018433, -0.0000018400,0.0000018365,0.0000018332,0.0000018307,0.0000018292, -0.0000018287,0.0000018283,0.0000018277,0.0000018269,0.0000018259, -0.0000018244,0.0000018223,0.0000018202,0.0000018181,0.0000018158, -0.0000018140,0.0000018125,0.0000018117,0.0000018117,0.0000018125, -0.0000018141,0.0000018153,0.0000018166,0.0000018171,0.0000018170, -0.0000018169,0.0000018172,0.0000018191,0.0000018226,0.0000018275, -0.0000018330,0.0000018382,0.0000018431,0.0000018473,0.0000018502, -0.0000018523,0.0000018539,0.0000018545,0.0000018553,0.0000018575, -0.0000018605,0.0000018633,0.0000018663,0.0000018689,0.0000018713, -0.0000018739,0.0000018763,0.0000018784,0.0000018801,0.0000018811, -0.0000018809,0.0000018800,0.0000018789,0.0000018768,0.0000018736, -0.0000018697,0.0000018659,0.0000018635,0.0000018621,0.0000018595, -0.0000018567,0.0000018553,0.0000018558,0.0000018567,0.0000018581, -0.0000018595,0.0000018607,0.0000018608,0.0000018597,0.0000018583, -0.0000018567,0.0000018549,0.0000018532,0.0000018516,0.0000018506, -0.0000018500,0.0000018491,0.0000018483,0.0000018480,0.0000018482, -0.0000018493,0.0000018503,0.0000018526,0.0000018560,0.0000018592, -0.0000018622,0.0000018639,0.0000018642,0.0000018639,0.0000018626, -0.0000018599,0.0000018574,0.0000018547,0.0000018532,0.0000018521, -0.0000018505,0.0000018491,0.0000018474,0.0000018458,0.0000018429, -0.0000018389,0.0000018350,0.0000018319,0.0000018305,0.0000018291, -0.0000018267,0.0000018227,0.0000018167,0.0000018107,0.0000018060, -0.0000018018,0.0000017969,0.0000017911,0.0000017849,0.0000017789, -0.0000017728,0.0000017673,0.0000017651,0.0000017654,0.0000017676, -0.0000017708,0.0000017755,0.0000017811,0.0000017866,0.0000017910, -0.0000017950,0.0000017978,0.0000017991,0.0000017989,0.0000017988, -0.0000017984,0.0000017973,0.0000017952,0.0000017940,0.0000017929, -0.0000017925,0.0000017920,0.0000017918,0.0000017924,0.0000017932, -0.0000017926,0.0000017896,0.0000017855,0.0000017807,0.0000017764, -0.0000017737,0.0000017732,0.0000017739,0.0000017766,0.0000017808, -0.0000017836,0.0000017840,0.0000017823,0.0000017793,0.0000017760, -0.0000017724,0.0000017681,0.0000017634,0.0000017608,0.0000017605, -0.0000017612,0.0000017617,0.0000017600,0.0000017559,0.0000017514, -0.0000017492,0.0000017495,0.0000017523,0.0000017546,0.0000017548, -0.0000017530,0.0000017513,0.0000017501,0.0000017511,0.0000017534, -0.0000017575,0.0000017630,0.0000017687,0.0000017738,0.0000017773, -0.0000017794,0.0000017785,0.0000017756,0.0000017718,0.0000017689, -0.0000017676,0.0000017671,0.0000017653,0.0000017622,0.0000017574, -0.0000017514,0.0000017448,0.0000017384,0.0000017334,0.0000017305, -0.0000017292,0.0000017284,0.0000017275,0.0000017268,0.0000017268, -0.0000017294,0.0000017340,0.0000017369,0.0000017373,0.0000017362, -0.0000017344,0.0000017340,0.0000017340,0.0000017344,0.0000017336, -0.0000017322,0.0000017317,0.0000017308,0.0000017288,0.0000017278, -0.0000017295,0.0000017347,0.0000017443,0.0000017584,0.0000017769, -0.0000017993,0.0000018232,0.0000018434,0.0000018575,0.0000018663, -0.0000018718,0.0000018755,0.0000018782,0.0000018802,0.0000018825, -0.0000018844,0.0000018856,0.0000018861,0.0000018844,0.0000018806, -0.0000018745,0.0000018659,0.0000018563,0.0000018514,0.0000018515, -0.0000018573,0.0000018662,0.0000018744,0.0000018789,0.0000018810, -0.0000018814,0.0000018814,0.0000018805,0.0000018786,0.0000018762, -0.0000018733,0.0000018700,0.0000018658,0.0000018608,0.0000018551, -0.0000018491,0.0000018438,0.0000018416,0.0000018399,0.0000018397, -0.0000018398,0.0000018396,0.0000018398,0.0000018406,0.0000018411, -0.0000018399,0.0000018369,0.0000018335,0.0000018315,0.0000018307, -0.0000018307,0.0000018312,0.0000018311,0.0000018307,0.0000018313, -0.0000018326,0.0000018347,0.0000018382,0.0000018423,0.0000018463, -0.0000018510,0.0000018566,0.0000018610,0.0000018631,0.0000018633, -0.0000018625,0.0000018618,0.0000018629,0.0000018674,0.0000018750, -0.0000018826,0.0000018865,0.0000018865,0.0000018837,0.0000018795, -0.0000018762,0.0000018747,0.0000018748,0.0000018753,0.0000018748, -0.0000018738,0.0000018729,0.0000018720,0.0000018702,0.0000018684, -0.0000018669,0.0000018663,0.0000018665,0.0000018669,0.0000018666, -0.0000018652,0.0000018636,0.0000018624,0.0000018611,0.0000018596, -0.0000018568,0.0000018532,0.0000018506,0.0000018488,0.0000018460, -0.0000018418,0.0000018380,0.0000018369,0.0000018391,0.0000018431, -0.0000018457,0.0000018457,0.0000018431,0.0000018375,0.0000018285, -0.0000018175,0.0000018077,0.0000018020,0.0000018001,0.0000017996, -0.0000017996,0.0000018003,0.0000018014,0.0000018011,0.0000017973, -0.0000017907,0.0000017855,0.0000017827,0.0000017818,0.0000017843, -0.0000017913,0.0000018010,0.0000018091,0.0000018134,0.0000018136, -0.0000018102,0.0000018047,0.0000017999,0.0000017969,0.0000017952, -0.0000017946,0.0000017954,0.0000017986,0.0000018034,0.0000018087, -0.0000018113,0.0000018144,0.0000018141,0.0000018119,0.0000018080, -0.0000018029,0.0000017968,0.0000017905,0.0000017851,0.0000017815, -0.0000017803,0.0000017813,0.0000017841,0.0000017879,0.0000017913, -0.0000017946,0.0000017969,0.0000017963,0.0000017931,0.0000017879, -0.0000017815,0.0000017743,0.0000017663,0.0000017572,0.0000017472, -0.0000017395,0.0000017357,0.0000017338,0.0000017345,0.0000017347, -0.0000017352,0.0000017362,0.0000017373,0.0000017369,0.0000017355, -0.0000017323,0.0000017274,0.0000017225,0.0000017194,0.0000017172, -0.0000017147,0.0000017123,0.0000017095,0.0000017072,0.0000017066, -0.0000017060,0.0000017067,0.0000017095,0.0000017162,0.0000017243, -0.0000017328,0.0000017408,0.0000017485,0.0000017550,0.0000017598, -0.0000017622,0.0000017635,0.0000017669,0.0000017740,0.0000017841, -0.0000017935,0.0000017977,0.0000017972,0.0000017943,0.0000017896, -0.0000017836,0.0000017767,0.0000017711,0.0000017677,0.0000017647, -0.0000017641,0.0000017685,0.0000017752,0.0000017760,0.0000017715, -0.0000017667,0.0000017737,0.0000018040,0.0000018429,0.0000018727, -0.0000018863,0.0000018903,0.0000018921,0.0000018910,0.0000018767, -0.0000018423,0.0000018125,0.0000018032,0.0000018022,0.0000017951, -0.0000017853,0.0000017806,0.0000017803,0.0000017754,0.0000017614, -0.0000017472,0.0000017391,0.0000017360,0.0000017372,0.0000017430, -0.0000017502,0.0000017566,0.0000017618,0.0000017645,0.0000017626, -0.0000017573,0.0000017562,0.0000017615,0.0000017656,0.0000017649, -0.0000017603,0.0000017534,0.0000017427,0.0000017437,0.0000017667, -0.0000017863,0.0000017836,0.0000017747,0.0000017653,0.0000017606, -0.0000017640,0.0000017652,0.0000017658,0.0000017681,0.0000017718, -0.0000017767,0.0000017813,0.0000017841,0.0000017849,0.0000017830, -0.0000017786,0.0000017731,0.0000017744,0.0000017838,0.0000017882, -0.0000017791,0.0000017729,0.0000017763,0.0000017874,0.0000017998, -0.0000017967,0.0000017770,0.0000017623,0.0000017562,0.0000017521, -0.0000017511,0.0000017518,0.0000017523,0.0000017547,0.0000017619, -0.0000017711,0.0000017735,0.0000017669,0.0000017527,0.0000017397, -0.0000017379,0.0000017498,0.0000017680,0.0000017814,0.0000017841, -0.0000017820,0.0000017801,0.0000017798,0.0000017783,0.0000017751, -0.0000017717,0.0000017670,0.0000017603,0.0000017552,0.0000017546, -0.0000017573,0.0000017604,0.0000017640,0.0000017690,0.0000017726, -0.0000017729,0.0000017710,0.0000017687,0.0000017682,0.0000017701, -0.0000017734,0.0000017734,0.0000017699,0.0000017674,0.0000017686, -0.0000017714,0.0000017730,0.0000017743,0.0000017769,0.0000017795, -0.0000017798,0.0000017766,0.0000017725,0.0000017707,0.0000017708, -0.0000017709,0.0000017696,0.0000017670,0.0000017644,0.0000017623, -0.0000017602,0.0000017593,0.0000017618,0.0000017668,0.0000017687, -0.0000017651,0.0000017589,0.0000017564,0.0000017588,0.0000017668, -0.0000017755,0.0000017785,0.0000017758,0.0000017697,0.0000017626, -0.0000017558,0.0000017514,0.0000017514,0.0000017571,0.0000017700, -0.0000017857,0.0000017965,0.0000017996,0.0000018016,0.0000018102, -0.0000018250,0.0000018372,0.0000018438,0.0000018482,0.0000018521, -0.0000018613,0.0000018647,0.0000018664,0.0000018664,0.0000018665, -0.0000018664,0.0000018660,0.0000018652,0.0000018639,0.0000018627, -0.0000018617,0.0000018613,0.0000018612,0.0000018611,0.0000018609, -0.0000018606,0.0000018598,0.0000018583,0.0000018556,0.0000018535, -0.0000018531,0.0000018539,0.0000018543,0.0000018516,0.0000018472, -0.0000018467,0.0000018493,0.0000018507,0.0000018466,0.0000018376, -0.0000018320,0.0000018322,0.0000018362,0.0000018417,0.0000018463, -0.0000018474,0.0000018458,0.0000018435,0.0000018445,0.0000018489, -0.0000018569,0.0000018627,0.0000018673,0.0000018705,0.0000018713, -0.0000018712,0.0000018707,0.0000018707,0.0000018707,0.0000018708, -0.0000018715,0.0000018723,0.0000018733,0.0000018748,0.0000018780, -0.0000018815,0.0000018849,0.0000018861,0.0000018892,0.0000018899, -0.0000018902,0.0000018893,0.0000018872,0.0000018847,0.0000018822, -0.0000018803,0.0000018790,0.0000018782,0.0000018775,0.0000018764, -0.0000018745,0.0000018716,0.0000018685,0.0000018657,0.0000018631, -0.0000018605,0.0000018577,0.0000018545,0.0000018503,0.0000018453, -0.0000018403,0.0000018360,0.0000018310,0.0000018247,0.0000018179, -0.0000018137,0.0000018145,0.0000018191,0.0000018257,0.0000018324, -0.0000018373,0.0000018395,0.0000018389,0.0000018375,0.0000018367, -0.0000018366,0.0000018368,0.0000018374,0.0000018382,0.0000018390, -0.0000018397,0.0000018401,0.0000018393,0.0000018379,0.0000018360, -0.0000018341,0.0000018317,0.0000018294,0.0000018274,0.0000018258, -0.0000018241,0.0000018226,0.0000018222,0.0000018218,0.0000018211, -0.0000018205,0.0000018200,0.0000018193,0.0000018184,0.0000018173, -0.0000018159,0.0000018140,0.0000018122,0.0000018104,0.0000018090, -0.0000018082,0.0000018080,0.0000018083,0.0000018090,0.0000018102, -0.0000018113,0.0000018126,0.0000018145,0.0000018166,0.0000018186, -0.0000018207,0.0000018229,0.0000018246,0.0000018263,0.0000018283, -0.0000018300,0.0000018312,0.0000018321,0.0000018328,0.0000018333, -0.0000018338,0.0000018346,0.0000018355,0.0000018363,0.0000018375, -0.0000018389,0.0000018404,0.0000018420,0.0000018442,0.0000018468, -0.0000018494,0.0000018528,0.0000018567,0.0000018608,0.0000018653, -0.0000018696,0.0000018737,0.0000018765,0.0000018768,0.0000018776, -0.0000018791,0.0000018795,0.0000018789,0.0000018782,0.0000018777, -0.0000018780,0.0000018779,0.0000018782,0.0000018785,0.0000018789, -0.0000018791,0.0000018791,0.0000018789,0.0000018784,0.0000018777, -0.0000018769,0.0000018760,0.0000018751,0.0000018743,0.0000018733, -0.0000018724,0.0000018716,0.0000018707,0.0000018698,0.0000018691, -0.0000018688,0.0000018691,0.0000018688,0.0000018692,0.0000018696, -0.0000018695,0.0000018696,0.0000018690,0.0000018680,0.0000018665, -0.0000018647,0.0000018632,0.0000018619,0.0000018606,0.0000018596, -0.0000018587,0.0000018580,0.0000018574,0.0000018572,0.0000018576, -0.0000018578,0.0000018572,0.0000018560,0.0000018546,0.0000018522, -0.0000018484,0.0000018443,0.0000018407,0.0000018372,0.0000018342, -0.0000018323,0.0000018317,0.0000018316,0.0000018315,0.0000018307, -0.0000018291,0.0000018267,0.0000018244,0.0000018230,0.0000018218, -0.0000018205,0.0000018193,0.0000018190,0.0000018194,0.0000018206, -0.0000018220,0.0000018238,0.0000018261,0.0000018285,0.0000018312, -0.0000018338,0.0000018356,0.0000018369,0.0000018384,0.0000018398, -0.0000018407,0.0000018411,0.0000018413,0.0000018412,0.0000018412, -0.0000018413,0.0000018420,0.0000018427,0.0000018443,0.0000018461, -0.0000018484,0.0000018516,0.0000018560,0.0000018613,0.0000018666, -0.0000018716,0.0000018757,0.0000018792,0.0000018815,0.0000018823, -0.0000018807,0.0000018760,0.0000018693,0.0000018632,0.0000018592, -0.0000018566,0.0000018520,0.0000018428,0.0000018316,0.0000018240, -0.0000018215,0.0000018210,0.0000018195,0.0000018134,0.0000018029, -0.0000017929,0.0000017879,0.0000017866,0.0000017875,0.0000017895, -0.0000017915,0.0000017936,0.0000017949,0.0000017953,0.0000017948, -0.0000017938,0.0000017926,0.0000017923,0.0000017922,0.0000017924, -0.0000017939,0.0000017962,0.0000017981,0.0000018011,0.0000018048, -0.0000018089,0.0000018124,0.0000018156,0.0000018175,0.0000018186, -0.0000018188,0.0000018187,0.0000018169,0.0000018154,0.0000018144, -0.0000018139,0.0000018147,0.0000018165,0.0000018183,0.0000018204, -0.0000018231,0.0000018267,0.0000018304,0.0000018346,0.0000018388, -0.0000018429,0.0000018463,0.0000018491,0.0000018514,0.0000018528, -0.0000018534,0.0000018536,0.0000018532,0.0000018526,0.0000018516, -0.0000018504,0.0000018489,0.0000018472,0.0000018452,0.0000018433, -0.0000018420,0.0000018416,0.0000018415,0.0000018414,0.0000018417, -0.0000018424,0.0000018429,0.0000018438,0.0000018450,0.0000018466, -0.0000018484,0.0000018496,0.0000018505,0.0000018511,0.0000018509, -0.0000018510,0.0000018519,0.0000018535,0.0000018553,0.0000018560, -0.0000018553,0.0000018539,0.0000018526,0.0000018513,0.0000018498, -0.0000018482,0.0000018471,0.0000018464,0.0000018466,0.0000018482, -0.0000018501,0.0000018513,0.0000018511,0.0000018499,0.0000018486, -0.0000018482,0.0000018492,0.0000018523,0.0000018571,0.0000018616, -0.0000018633,0.0000018626,0.0000018589,0.0000018528,0.0000018467, -0.0000018426,0.0000018411,0.0000018413,0.0000018420,0.0000018430, -0.0000018438,0.0000018438,0.0000018436,0.0000018430,0.0000018418, -0.0000018406,0.0000018395,0.0000018381,0.0000018371,0.0000018365, -0.0000018362,0.0000018355,0.0000018351,0.0000018353,0.0000018360, -0.0000018375,0.0000018398,0.0000018430,0.0000018472,0.0000018525, -0.0000018583,0.0000018636,0.0000018683,0.0000018717,0.0000018738, -0.0000018750,0.0000018752,0.0000018741,0.0000018719,0.0000018691, -0.0000018668,0.0000018654,0.0000018646,0.0000018639,0.0000018634, -0.0000018636,0.0000018651,0.0000018669,0.0000018680,0.0000018685, -0.0000018682,0.0000018669,0.0000018642,0.0000018608,0.0000018578, -0.0000018548,0.0000018517,0.0000018497,0.0000018486,0.0000018479, -0.0000018479,0.0000018489,0.0000018507,0.0000018535,0.0000018569, -0.0000018606,0.0000018626,0.0000018624,0.0000018599,0.0000018575, -0.0000018564,0.0000018563,0.0000018572,0.0000018590,0.0000018607, -0.0000018627,0.0000018651,0.0000018672,0.0000018691,0.0000018710, -0.0000018731,0.0000018748,0.0000018757,0.0000018761,0.0000018749, -0.0000018721,0.0000018690,0.0000018672,0.0000018665,0.0000018669, -0.0000018677,0.0000018688,0.0000018693,0.0000018697,0.0000018699, -0.0000018700,0.0000018707,0.0000018713,0.0000018718,0.0000018725, -0.0000018735,0.0000018750,0.0000018773,0.0000018801,0.0000018838, -0.0000018885,0.0000018935,0.0000018977,0.0000019011,0.0000019039, -0.0000019054,0.0000019049,0.0000019025,0.0000018988,0.0000018943, -0.0000018892,0.0000018834,0.0000018776,0.0000018732,0.0000018707, -0.0000018697,0.0000018704,0.0000018731,0.0000018775,0.0000018829, -0.0000018887,0.0000018935,0.0000018966,0.0000018974,0.0000018972, -0.0000018963,0.0000018948,0.0000018945,0.0000018953,0.0000018961, -0.0000018954,0.0000018916,0.0000018836,0.0000018728,0.0000018627, -0.0000018576,0.0000018567,0.0000018587,0.0000018630,0.0000018672, -0.0000018700,0.0000018699,0.0000018674,0.0000018631,0.0000018583, -0.0000018542,0.0000018516,0.0000018493,0.0000018471,0.0000018455, -0.0000018441,0.0000018427,0.0000018418,0.0000018418,0.0000018422, -0.0000018424,0.0000018426,0.0000018427,0.0000018424,0.0000018417, -0.0000018414,0.0000018413,0.0000018409,0.0000018402,0.0000018393, -0.0000018377,0.0000018353,0.0000018327,0.0000018303,0.0000018278, -0.0000018255,0.0000018237,0.0000018218,0.0000018197,0.0000018182, -0.0000018177,0.0000018180,0.0000018202,0.0000018232,0.0000018275, -0.0000018323,0.0000018371,0.0000018413,0.0000018442,0.0000018462, -0.0000018473,0.0000018479,0.0000018492,0.0000018520,0.0000018550, -0.0000018579,0.0000018611,0.0000018638,0.0000018661,0.0000018689, -0.0000018714,0.0000018734,0.0000018757,0.0000018774,0.0000018782, -0.0000018786,0.0000018785,0.0000018785,0.0000018776,0.0000018755, -0.0000018734,0.0000018728,0.0000018724,0.0000018708,0.0000018691, -0.0000018683,0.0000018679,0.0000018670,0.0000018665,0.0000018664, -0.0000018667,0.0000018661,0.0000018654,0.0000018645,0.0000018635, -0.0000018625,0.0000018607,0.0000018588,0.0000018573,0.0000018556, -0.0000018542,0.0000018525,0.0000018515,0.0000018507,0.0000018511, -0.0000018522,0.0000018550,0.0000018583,0.0000018621,0.0000018653, -0.0000018672,0.0000018690,0.0000018697,0.0000018695,0.0000018681, -0.0000018656,0.0000018635,0.0000018619,0.0000018608,0.0000018608, -0.0000018613,0.0000018624,0.0000018617,0.0000018596,0.0000018555, -0.0000018507,0.0000018474,0.0000018448,0.0000018426,0.0000018405, -0.0000018366,0.0000018312,0.0000018261,0.0000018211,0.0000018156, -0.0000018095,0.0000018033,0.0000017958,0.0000017871,0.0000017782, -0.0000017709,0.0000017672,0.0000017669,0.0000017686,0.0000017721, -0.0000017766,0.0000017819,0.0000017872,0.0000017927,0.0000017966, -0.0000017986,0.0000017986,0.0000017977,0.0000017963,0.0000017946, -0.0000017928,0.0000017918,0.0000017904,0.0000017898,0.0000017888, -0.0000017878,0.0000017880,0.0000017886,0.0000017891,0.0000017884, -0.0000017861,0.0000017832,0.0000017804,0.0000017782,0.0000017771, -0.0000017764,0.0000017775,0.0000017806,0.0000017844,0.0000017874, -0.0000017886,0.0000017876,0.0000017844,0.0000017803,0.0000017750, -0.0000017699,0.0000017673,0.0000017664,0.0000017673,0.0000017685, -0.0000017670,0.0000017628,0.0000017583,0.0000017552,0.0000017542, -0.0000017561,0.0000017576,0.0000017572,0.0000017543,0.0000017516, -0.0000017489,0.0000017486,0.0000017505,0.0000017549,0.0000017612, -0.0000017677,0.0000017738,0.0000017790,0.0000017830,0.0000017842, -0.0000017821,0.0000017786,0.0000017752,0.0000017729,0.0000017716, -0.0000017695,0.0000017667,0.0000017630,0.0000017581,0.0000017521, -0.0000017458,0.0000017401,0.0000017360,0.0000017335,0.0000017317, -0.0000017305,0.0000017296,0.0000017300,0.0000017331,0.0000017372, -0.0000017392,0.0000017390,0.0000017371,0.0000017342,0.0000017331, -0.0000017328,0.0000017342,0.0000017354,0.0000017350,0.0000017338, -0.0000017323,0.0000017294,0.0000017266,0.0000017265,0.0000017262, -0.0000017271,0.0000017307,0.0000017390,0.0000017532,0.0000017727, -0.0000017952,0.0000018179,0.0000018371,0.0000018519,0.0000018628, -0.0000018700,0.0000018741,0.0000018772,0.0000018806,0.0000018848, -0.0000018869,0.0000018884,0.0000018883,0.0000018860,0.0000018797, -0.0000018695,0.0000018579,0.0000018521,0.0000018508,0.0000018552, -0.0000018634,0.0000018723,0.0000018801,0.0000018843,0.0000018853, -0.0000018838,0.0000018804,0.0000018772,0.0000018757,0.0000018753, -0.0000018742,0.0000018712,0.0000018657,0.0000018581,0.0000018498, -0.0000018430,0.0000018384,0.0000018368,0.0000018347,0.0000018337, -0.0000018340,0.0000018353,0.0000018367,0.0000018372,0.0000018364, -0.0000018349,0.0000018328,0.0000018315,0.0000018317,0.0000018323, -0.0000018329,0.0000018349,0.0000018374,0.0000018405,0.0000018448, -0.0000018497,0.0000018536,0.0000018571,0.0000018610,0.0000018645, -0.0000018660,0.0000018653,0.0000018634,0.0000018618,0.0000018622, -0.0000018660,0.0000018739,0.0000018835,0.0000018899,0.0000018919, -0.0000018903,0.0000018861,0.0000018810,0.0000018771,0.0000018751, -0.0000018746,0.0000018738,0.0000018728,0.0000018723,0.0000018718, -0.0000018706,0.0000018685,0.0000018660,0.0000018638,0.0000018625, -0.0000018622,0.0000018624,0.0000018624,0.0000018619,0.0000018611, -0.0000018603,0.0000018596,0.0000018589,0.0000018574,0.0000018550, -0.0000018517,0.0000018484,0.0000018456,0.0000018421,0.0000018381, -0.0000018357,0.0000018364,0.0000018398,0.0000018429,0.0000018428, -0.0000018387,0.0000018309,0.0000018213,0.0000018130,0.0000018075, -0.0000018045,0.0000018024,0.0000018003,0.0000017999,0.0000018012, -0.0000018026,0.0000018020,0.0000017981,0.0000017925,0.0000017874, -0.0000017836,0.0000017837,0.0000017868,0.0000017943,0.0000018024, -0.0000018077,0.0000018099,0.0000018092,0.0000018054,0.0000018008, -0.0000017979,0.0000017971,0.0000017974,0.0000017973,0.0000017979, -0.0000017985,0.0000018006,0.0000018048,0.0000018105,0.0000018152, -0.0000018168,0.0000018179,0.0000018169,0.0000018141,0.0000018103, -0.0000018069,0.0000018044,0.0000018019,0.0000018001,0.0000017990, -0.0000017984,0.0000017985,0.0000018001,0.0000018022,0.0000018035, -0.0000018034,0.0000018019,0.0000017989,0.0000017950,0.0000017898, -0.0000017825,0.0000017733,0.0000017648,0.0000017580,0.0000017513, -0.0000017454,0.0000017405,0.0000017374,0.0000017372,0.0000017385, -0.0000017392,0.0000017388,0.0000017368,0.0000017323,0.0000017270, -0.0000017231,0.0000017205,0.0000017179,0.0000017159,0.0000017140, -0.0000017123,0.0000017104,0.0000017089,0.0000017067,0.0000017068, -0.0000017085,0.0000017140,0.0000017205,0.0000017278,0.0000017352, -0.0000017419,0.0000017474,0.0000017512,0.0000017532,0.0000017553, -0.0000017600,0.0000017694,0.0000017804,0.0000017873,0.0000017894, -0.0000017889,0.0000017863,0.0000017808,0.0000017732,0.0000017663, -0.0000017617,0.0000017583,0.0000017572,0.0000017592,0.0000017660, -0.0000017727,0.0000017727,0.0000017675,0.0000017658,0.0000017771, -0.0000018023,0.0000018309,0.0000018501,0.0000018590,0.0000018606, -0.0000018530,0.0000018323,0.0000018116,0.0000018014,0.0000017960, -0.0000017879,0.0000017807,0.0000017786,0.0000017781,0.0000017694, -0.0000017534,0.0000017407,0.0000017337,0.0000017314,0.0000017343, -0.0000017407,0.0000017486,0.0000017553,0.0000017613,0.0000017675, -0.0000017730,0.0000017729,0.0000017661,0.0000017610,0.0000017624, -0.0000017685,0.0000017692,0.0000017639,0.0000017587,0.0000017511, -0.0000017399,0.0000017446,0.0000017691,0.0000017854,0.0000017824, -0.0000017759,0.0000017667,0.0000017611,0.0000017648,0.0000017681, -0.0000017697,0.0000017723,0.0000017763,0.0000017812,0.0000017860, -0.0000017885,0.0000017880,0.0000017832,0.0000017773,0.0000017740, -0.0000017798,0.0000017882,0.0000017829,0.0000017728,0.0000017745, -0.0000017836,0.0000017941,0.0000017949,0.0000017789,0.0000017633, -0.0000017564,0.0000017523,0.0000017516,0.0000017535,0.0000017542, -0.0000017542,0.0000017565,0.0000017644,0.0000017720,0.0000017726, -0.0000017635,0.0000017489,0.0000017396,0.0000017422,0.0000017572, -0.0000017744,0.0000017822,0.0000017824,0.0000017804,0.0000017792, -0.0000017780,0.0000017753,0.0000017720,0.0000017681,0.0000017618, -0.0000017548,0.0000017517,0.0000017535,0.0000017578,0.0000017620, -0.0000017671,0.0000017715,0.0000017727,0.0000017714,0.0000017686, -0.0000017670,0.0000017682,0.0000017716,0.0000017728,0.0000017693, -0.0000017654,0.0000017656,0.0000017688,0.0000017722,0.0000017747, -0.0000017772,0.0000017790,0.0000017777,0.0000017733,0.0000017693, -0.0000017683,0.0000017684,0.0000017679,0.0000017658,0.0000017637, -0.0000017624,0.0000017610,0.0000017612,0.0000017651,0.0000017701, -0.0000017697,0.0000017633,0.0000017573,0.0000017584,0.0000017656, -0.0000017733,0.0000017752,0.0000017710,0.0000017636,0.0000017569, -0.0000017518,0.0000017496,0.0000017516,0.0000017615,0.0000017760, -0.0000017889,0.0000017957,0.0000017977,0.0000018007,0.0000018111, -0.0000018255,0.0000018364,0.0000018427,0.0000018477,0.0000018525, -0.0000018570,0.0000018664,0.0000018670,0.0000018662,0.0000018653, -0.0000018647,0.0000018640,0.0000018634,0.0000018628,0.0000018619, -0.0000018610,0.0000018600,0.0000018592,0.0000018587,0.0000018587, -0.0000018593,0.0000018595,0.0000018588,0.0000018567,0.0000018536, -0.0000018517,0.0000018520,0.0000018526,0.0000018513,0.0000018477, -0.0000018462,0.0000018483,0.0000018506,0.0000018489,0.0000018410, -0.0000018347,0.0000018347,0.0000018399,0.0000018464,0.0000018497, -0.0000018488,0.0000018452,0.0000018428,0.0000018468,0.0000018574, -0.0000018654,0.0000018695,0.0000018707,0.0000018697,0.0000018674, -0.0000018648,0.0000018632,0.0000018620,0.0000018619,0.0000018624, -0.0000018635,0.0000018650,0.0000018670,0.0000018683,0.0000018702, -0.0000018738,0.0000018770,0.0000018794,0.0000018821,0.0000018855, -0.0000018884,0.0000018917,0.0000018938,0.0000018954,0.0000018950, -0.0000018932,0.0000018904,0.0000018875,0.0000018849,0.0000018828, -0.0000018808,0.0000018787,0.0000018760,0.0000018732,0.0000018707, -0.0000018685,0.0000018663,0.0000018640,0.0000018613,0.0000018573, -0.0000018516,0.0000018453,0.0000018400,0.0000018354,0.0000018307, -0.0000018250,0.0000018183,0.0000018148,0.0000018156,0.0000018198, -0.0000018257,0.0000018309,0.0000018344,0.0000018357,0.0000018362, -0.0000018367,0.0000018371,0.0000018375,0.0000018384,0.0000018393, -0.0000018397,0.0000018394,0.0000018385,0.0000018365,0.0000018340, -0.0000018316,0.0000018291,0.0000018266,0.0000018248,0.0000018233, -0.0000018220,0.0000018206,0.0000018196,0.0000018190,0.0000018181, -0.0000018174,0.0000018172,0.0000018170,0.0000018164,0.0000018156, -0.0000018146,0.0000018133,0.0000018118,0.0000018101,0.0000018084, -0.0000018071,0.0000018064,0.0000018060,0.0000018055,0.0000018051, -0.0000018051,0.0000018050,0.0000018051,0.0000018056,0.0000018061, -0.0000018068,0.0000018078,0.0000018088,0.0000018100,0.0000018118, -0.0000018141,0.0000018164,0.0000018187,0.0000018211,0.0000018239, -0.0000018264,0.0000018282,0.0000018297,0.0000018310,0.0000018318, -0.0000018323,0.0000018330,0.0000018337,0.0000018345,0.0000018359, -0.0000018376,0.0000018390,0.0000018406,0.0000018424,0.0000018446, -0.0000018470,0.0000018499,0.0000018525,0.0000018544,0.0000018559, -0.0000018577,0.0000018597,0.0000018611,0.0000018620,0.0000018632, -0.0000018649,0.0000018672,0.0000018693,0.0000018719,0.0000018744, -0.0000018770,0.0000018790,0.0000018796,0.0000018803,0.0000018821, -0.0000018835,0.0000018853,0.0000018859,0.0000018862,0.0000018860, -0.0000018857,0.0000018853,0.0000018847,0.0000018837,0.0000018826, -0.0000018816,0.0000018807,0.0000018801,0.0000018791,0.0000018789, -0.0000018787,0.0000018785,0.0000018784,0.0000018773,0.0000018756, -0.0000018736,0.0000018715,0.0000018689,0.0000018661,0.0000018638, -0.0000018621,0.0000018610,0.0000018605,0.0000018606,0.0000018608, -0.0000018617,0.0000018630,0.0000018642,0.0000018657,0.0000018672, -0.0000018674,0.0000018662,0.0000018636,0.0000018602,0.0000018561, -0.0000018519,0.0000018483,0.0000018453,0.0000018430,0.0000018413, -0.0000018400,0.0000018389,0.0000018383,0.0000018388,0.0000018394, -0.0000018396,0.0000018396,0.0000018386,0.0000018369,0.0000018351, -0.0000018337,0.0000018328,0.0000018332,0.0000018346,0.0000018364, -0.0000018385,0.0000018409,0.0000018427,0.0000018436,0.0000018441, -0.0000018443,0.0000018444,0.0000018441,0.0000018438,0.0000018434, -0.0000018431,0.0000018429,0.0000018431,0.0000018437,0.0000018454, -0.0000018476,0.0000018499,0.0000018526,0.0000018556,0.0000018596, -0.0000018643,0.0000018691,0.0000018740,0.0000018789,0.0000018833, -0.0000018869,0.0000018884,0.0000018885,0.0000018860,0.0000018808, -0.0000018740,0.0000018679,0.0000018637,0.0000018611,0.0000018566, -0.0000018471,0.0000018349,0.0000018255,0.0000018210,0.0000018188, -0.0000018165,0.0000018122,0.0000018047,0.0000017961,0.0000017910, -0.0000017899,0.0000017908,0.0000017931,0.0000017952,0.0000017975, -0.0000017995,0.0000018004,0.0000018007,0.0000018014,0.0000018006, -0.0000017999,0.0000017994,0.0000017988,0.0000017984,0.0000017989, -0.0000018010,0.0000018027,0.0000018057,0.0000018093,0.0000018129, -0.0000018166,0.0000018195,0.0000018212,0.0000018218,0.0000018218, -0.0000018222,0.0000018225,0.0000018238,0.0000018254,0.0000018270, -0.0000018290,0.0000018317,0.0000018352,0.0000018392,0.0000018432, -0.0000018469,0.0000018506,0.0000018542,0.0000018571,0.0000018593, -0.0000018601,0.0000018605,0.0000018611,0.0000018612,0.0000018608, -0.0000018601,0.0000018587,0.0000018570,0.0000018544,0.0000018514, -0.0000018489,0.0000018470,0.0000018452,0.0000018436,0.0000018428, -0.0000018427,0.0000018430,0.0000018441,0.0000018456,0.0000018471, -0.0000018482,0.0000018484,0.0000018479,0.0000018471,0.0000018467, -0.0000018473,0.0000018484,0.0000018487,0.0000018482,0.0000018475, -0.0000018470,0.0000018466,0.0000018465,0.0000018465,0.0000018458, -0.0000018449,0.0000018447,0.0000018454,0.0000018468,0.0000018482, -0.0000018486,0.0000018480,0.0000018468,0.0000018468,0.0000018479, -0.0000018513,0.0000018562,0.0000018609,0.0000018630,0.0000018622, -0.0000018584,0.0000018523,0.0000018464,0.0000018427,0.0000018413, -0.0000018415,0.0000018422,0.0000018429,0.0000018433,0.0000018436, -0.0000018435,0.0000018430,0.0000018420,0.0000018409,0.0000018397, -0.0000018385,0.0000018377,0.0000018372,0.0000018370,0.0000018372, -0.0000018374,0.0000018378,0.0000018385,0.0000018396,0.0000018408, -0.0000018424,0.0000018444,0.0000018471,0.0000018507,0.0000018553, -0.0000018602,0.0000018650,0.0000018692,0.0000018723,0.0000018742, -0.0000018752,0.0000018752,0.0000018743,0.0000018722,0.0000018697, -0.0000018674,0.0000018658,0.0000018649,0.0000018641,0.0000018636, -0.0000018642,0.0000018652,0.0000018656,0.0000018633,0.0000018592, -0.0000018548,0.0000018506,0.0000018466,0.0000018439,0.0000018423, -0.0000018410,0.0000018399,0.0000018394,0.0000018400,0.0000018407, -0.0000018416,0.0000018428,0.0000018444,0.0000018462,0.0000018492, -0.0000018538,0.0000018589,0.0000018614,0.0000018609,0.0000018597, -0.0000018583,0.0000018573,0.0000018569,0.0000018568,0.0000018571, -0.0000018578,0.0000018595,0.0000018617,0.0000018639,0.0000018660, -0.0000018684,0.0000018712,0.0000018742,0.0000018763,0.0000018770, -0.0000018767,0.0000018757,0.0000018751,0.0000018750,0.0000018752, -0.0000018758,0.0000018767,0.0000018777,0.0000018782,0.0000018783, -0.0000018783,0.0000018783,0.0000018776,0.0000018768,0.0000018761, -0.0000018756,0.0000018758,0.0000018762,0.0000018780,0.0000018805, -0.0000018842,0.0000018883,0.0000018919,0.0000018948,0.0000018968, -0.0000018980,0.0000018976,0.0000018952,0.0000018920,0.0000018883, -0.0000018838,0.0000018785,0.0000018726,0.0000018675,0.0000018634, -0.0000018599,0.0000018574,0.0000018571,0.0000018593,0.0000018642, -0.0000018704,0.0000018782,0.0000018867,0.0000018936,0.0000018986, -0.0000019017,0.0000019018,0.0000019002,0.0000018982,0.0000018966, -0.0000018956,0.0000018946,0.0000018930,0.0000018900,0.0000018838, -0.0000018745,0.0000018647,0.0000018591,0.0000018568,0.0000018590, -0.0000018642,0.0000018694,0.0000018728,0.0000018727,0.0000018704, -0.0000018668,0.0000018623,0.0000018572,0.0000018526,0.0000018494, -0.0000018470,0.0000018451,0.0000018441,0.0000018441,0.0000018443, -0.0000018446,0.0000018452,0.0000018453,0.0000018446,0.0000018443, -0.0000018447,0.0000018454,0.0000018463,0.0000018473,0.0000018484, -0.0000018491,0.0000018494,0.0000018494,0.0000018490,0.0000018478, -0.0000018459,0.0000018433,0.0000018395,0.0000018348,0.0000018302, -0.0000018266,0.0000018246,0.0000018243,0.0000018253,0.0000018275, -0.0000018306,0.0000018343,0.0000018374,0.0000018397,0.0000018414, -0.0000018427,0.0000018433,0.0000018445,0.0000018466,0.0000018491, -0.0000018521,0.0000018551,0.0000018577,0.0000018605,0.0000018632, -0.0000018653,0.0000018672,0.0000018692,0.0000018705,0.0000018711, -0.0000018713,0.0000018719,0.0000018723,0.0000018720,0.0000018710, -0.0000018708,0.0000018716,0.0000018718,0.0000018715,0.0000018715, -0.0000018725,0.0000018727,0.0000018715,0.0000018702,0.0000018695, -0.0000018696,0.0000018697,0.0000018704,0.0000018717,0.0000018720, -0.0000018721,0.0000018711,0.0000018694,0.0000018674,0.0000018648, -0.0000018612,0.0000018581,0.0000018553,0.0000018528,0.0000018523, -0.0000018523,0.0000018544,0.0000018574,0.0000018603,0.0000018633, -0.0000018663,0.0000018686,0.0000018704,0.0000018710,0.0000018704, -0.0000018686,0.0000018663,0.0000018643,0.0000018642,0.0000018653, -0.0000018683,0.0000018711,0.0000018731,0.0000018723,0.0000018692, -0.0000018661,0.0000018625,0.0000018596,0.0000018571,0.0000018540, -0.0000018496,0.0000018440,0.0000018385,0.0000018341,0.0000018302, -0.0000018267,0.0000018213,0.0000018132,0.0000018027,0.0000017905, -0.0000017799,0.0000017730,0.0000017707,0.0000017725,0.0000017749, -0.0000017783,0.0000017837,0.0000017898,0.0000017947,0.0000017981, -0.0000017990,0.0000017984,0.0000017963,0.0000017934,0.0000017905, -0.0000017885,0.0000017870,0.0000017863,0.0000017860,0.0000017853, -0.0000017853,0.0000017849,0.0000017844,0.0000017837,0.0000017827, -0.0000017808,0.0000017792,0.0000017780,0.0000017774,0.0000017786, -0.0000017796,0.0000017818,0.0000017852,0.0000017894,0.0000017930, -0.0000017947,0.0000017941,0.0000017908,0.0000017852,0.0000017796, -0.0000017752,0.0000017725,0.0000017726,0.0000017736,0.0000017727, -0.0000017690,0.0000017646,0.0000017607,0.0000017586,0.0000017590, -0.0000017601,0.0000017597,0.0000017570,0.0000017536,0.0000017493, -0.0000017478,0.0000017486,0.0000017528,0.0000017596,0.0000017665, -0.0000017729,0.0000017791,0.0000017846,0.0000017870,0.0000017863, -0.0000017842,0.0000017812,0.0000017784,0.0000017761,0.0000017727, -0.0000017691,0.0000017655,0.0000017616,0.0000017565,0.0000017507, -0.0000017455,0.0000017418,0.0000017390,0.0000017366,0.0000017350, -0.0000017342,0.0000017354,0.0000017398,0.0000017441,0.0000017460, -0.0000017464,0.0000017444,0.0000017404,0.0000017360,0.0000017334, -0.0000017338,0.0000017354,0.0000017353,0.0000017346,0.0000017341, -0.0000017319,0.0000017300,0.0000017290,0.0000017281,0.0000017273, -0.0000017291,0.0000017308,0.0000017355,0.0000017426,0.0000017537, -0.0000017690,0.0000017888,0.0000018116,0.0000018345,0.0000018525, -0.0000018636,0.0000018700,0.0000018743,0.0000018787,0.0000018834, -0.0000018884,0.0000018907,0.0000018919,0.0000018900,0.0000018835, -0.0000018727,0.0000018610,0.0000018521,0.0000018501,0.0000018540, -0.0000018617,0.0000018716,0.0000018808,0.0000018853,0.0000018865, -0.0000018843,0.0000018808,0.0000018777,0.0000018758,0.0000018751, -0.0000018751,0.0000018735,0.0000018684,0.0000018604,0.0000018519, -0.0000018446,0.0000018391,0.0000018352,0.0000018333,0.0000018335, -0.0000018347,0.0000018368,0.0000018392,0.0000018413,0.0000018409, -0.0000018385,0.0000018360,0.0000018344,0.0000018344,0.0000018367, -0.0000018402,0.0000018438,0.0000018476,0.0000018520,0.0000018563, -0.0000018601,0.0000018640,0.0000018671,0.0000018683,0.0000018672, -0.0000018646,0.0000018622,0.0000018616,0.0000018643,0.0000018716, -0.0000018814,0.0000018892,0.0000018927,0.0000018925,0.0000018893, -0.0000018844,0.0000018799,0.0000018769,0.0000018751,0.0000018734, -0.0000018713,0.0000018695,0.0000018683,0.0000018672,0.0000018655, -0.0000018633,0.0000018610,0.0000018590,0.0000018578,0.0000018572, -0.0000018566,0.0000018553,0.0000018541,0.0000018539,0.0000018543, -0.0000018547,0.0000018549,0.0000018550,0.0000018535,0.0000018494, -0.0000018449,0.0000018418,0.0000018394,0.0000018358,0.0000018325, -0.0000018324,0.0000018354,0.0000018384,0.0000018376,0.0000018317, -0.0000018228,0.0000018156,0.0000018117,0.0000018094,0.0000018064, -0.0000018025,0.0000017998,0.0000018000,0.0000018023,0.0000018039, -0.0000018034,0.0000018002,0.0000017950,0.0000017892,0.0000017858, -0.0000017863,0.0000017901,0.0000017962,0.0000018012,0.0000018037, -0.0000018044,0.0000018032,0.0000018004,0.0000017982,0.0000017994, -0.0000018024,0.0000018043,0.0000018039,0.0000018016,0.0000017993, -0.0000017991,0.0000018021,0.0000018071,0.0000018117,0.0000018147, -0.0000018162,0.0000018165,0.0000018195,0.0000018228,0.0000018257, -0.0000018273,0.0000018270,0.0000018252,0.0000018218,0.0000018179, -0.0000018147,0.0000018122,0.0000018097,0.0000018073,0.0000018047, -0.0000018023,0.0000018000,0.0000017969,0.0000017928,0.0000017889, -0.0000017859,0.0000017830,0.0000017779,0.0000017702,0.0000017615, -0.0000017546,0.0000017505,0.0000017482,0.0000017462,0.0000017437, -0.0000017406,0.0000017362,0.0000017312,0.0000017275,0.0000017246, -0.0000017214,0.0000017186,0.0000017168,0.0000017157,0.0000017150, -0.0000017140,0.0000017127,0.0000017112,0.0000017113,0.0000017133, -0.0000017173,0.0000017218,0.0000017266,0.0000017312,0.0000017351, -0.0000017392,0.0000017426,0.0000017447,0.0000017481,0.0000017557, -0.0000017663,0.0000017743,0.0000017785,0.0000017799,0.0000017789, -0.0000017746,0.0000017674,0.0000017603,0.0000017553,0.0000017516, -0.0000017507,0.0000017517,0.0000017561,0.0000017635,0.0000017688, -0.0000017680,0.0000017657,0.0000017663,0.0000017738,0.0000017862, -0.0000017981,0.0000018062,0.0000018079,0.0000018029,0.0000017957, -0.0000017906,0.0000017860,0.0000017805,0.0000017766,0.0000017736, -0.0000017665,0.0000017541,0.0000017415,0.0000017327,0.0000017280, -0.0000017281,0.0000017333,0.0000017417,0.0000017500,0.0000017561, -0.0000017607,0.0000017650,0.0000017705,0.0000017766,0.0000017788, -0.0000017739,0.0000017662,0.0000017645,0.0000017700,0.0000017736, -0.0000017700,0.0000017626,0.0000017582,0.0000017480,0.0000017364, -0.0000017448,0.0000017709,0.0000017846,0.0000017803,0.0000017760, -0.0000017672,0.0000017619,0.0000017665,0.0000017720,0.0000017743, -0.0000017773,0.0000017810,0.0000017853,0.0000017907,0.0000017932, -0.0000017884,0.0000017807,0.0000017759,0.0000017775,0.0000017875, -0.0000017869,0.0000017737,0.0000017732,0.0000017813,0.0000017899, -0.0000017927,0.0000017801,0.0000017644,0.0000017567,0.0000017521, -0.0000017514,0.0000017542,0.0000017555,0.0000017551,0.0000017549, -0.0000017575,0.0000017659,0.0000017735,0.0000017721,0.0000017597, -0.0000017442,0.0000017398,0.0000017484,0.0000017660,0.0000017794, -0.0000017822,0.0000017805,0.0000017785,0.0000017772,0.0000017750, -0.0000017719,0.0000017687,0.0000017633,0.0000017547,0.0000017485, -0.0000017493,0.0000017543,0.0000017594,0.0000017645,0.0000017699, -0.0000017721,0.0000017709,0.0000017676,0.0000017655,0.0000017663, -0.0000017695,0.0000017712,0.0000017693,0.0000017649,0.0000017636, -0.0000017661,0.0000017701,0.0000017736,0.0000017759,0.0000017761, -0.0000017729,0.0000017681,0.0000017659,0.0000017661,0.0000017662, -0.0000017648,0.0000017634,0.0000017628,0.0000017623,0.0000017633, -0.0000017682,0.0000017718,0.0000017687,0.0000017610,0.0000017587, -0.0000017645,0.0000017710,0.0000017714,0.0000017654,0.0000017577, -0.0000017523,0.0000017504,0.0000017511,0.0000017571,0.0000017690, -0.0000017819,0.0000017906,0.0000017937,0.0000017958,0.0000018016, -0.0000018131,0.0000018262,0.0000018356,0.0000018414,0.0000018466, -0.0000018521,0.0000018577,0.0000018631,0.0000018656,0.0000018627, -0.0000018595,0.0000018564,0.0000018537,0.0000018518,0.0000018509, -0.0000018508,0.0000018512,0.0000018515,0.0000018514,0.0000018517, -0.0000018527,0.0000018548,0.0000018570,0.0000018578,0.0000018569, -0.0000018544,0.0000018521,0.0000018516,0.0000018521,0.0000018515, -0.0000018488,0.0000018467,0.0000018479,0.0000018508,0.0000018509, -0.0000018450,0.0000018375,0.0000018364,0.0000018417,0.0000018498, -0.0000018535,0.0000018516,0.0000018470,0.0000018448,0.0000018510, -0.0000018631,0.0000018692,0.0000018701,0.0000018689,0.0000018642, -0.0000018603,0.0000018583,0.0000018582,0.0000018593,0.0000018605, -0.0000018622,0.0000018644,0.0000018665,0.0000018688,0.0000018711, -0.0000018731,0.0000018753,0.0000018783,0.0000018807,0.0000018820, -0.0000018832,0.0000018839,0.0000018851,0.0000018867,0.0000018900, -0.0000018934,0.0000018973,0.0000018995,0.0000018998,0.0000018978, -0.0000018945,0.0000018905,0.0000018864,0.0000018825,0.0000018787, -0.0000018749,0.0000018720,0.0000018697,0.0000018680,0.0000018663, -0.0000018647,0.0000018623,0.0000018578,0.0000018509,0.0000018436, -0.0000018379,0.0000018337,0.0000018297,0.0000018238,0.0000018174, -0.0000018146,0.0000018162,0.0000018205,0.0000018249,0.0000018282, -0.0000018303,0.0000018318,0.0000018331,0.0000018343,0.0000018354, -0.0000018362,0.0000018365,0.0000018361,0.0000018352,0.0000018337, -0.0000018318,0.0000018296,0.0000018275,0.0000018254,0.0000018234, -0.0000018219,0.0000018207,0.0000018196,0.0000018191,0.0000018189, -0.0000018189,0.0000018192,0.0000018197,0.0000018202,0.0000018202, -0.0000018196,0.0000018186,0.0000018172,0.0000018157,0.0000018143, -0.0000018131,0.0000018120,0.0000018110,0.0000018101,0.0000018096, -0.0000018094,0.0000018095,0.0000018092,0.0000018087,0.0000018081, -0.0000018077,0.0000018073,0.0000018067,0.0000018064,0.0000018051, -0.0000018038,0.0000018031,0.0000018026,0.0000018024,0.0000018024, -0.0000018030,0.0000018048,0.0000018074,0.0000018105,0.0000018142, -0.0000018183,0.0000018221,0.0000018252,0.0000018278,0.0000018299, -0.0000018315,0.0000018332,0.0000018348,0.0000018360,0.0000018369, -0.0000018380,0.0000018395,0.0000018413,0.0000018435,0.0000018454, -0.0000018465,0.0000018468,0.0000018469,0.0000018473,0.0000018471, -0.0000018462,0.0000018457,0.0000018459,0.0000018463,0.0000018471, -0.0000018488,0.0000018508,0.0000018528,0.0000018555,0.0000018577, -0.0000018606,0.0000018633,0.0000018660,0.0000018686,0.0000018714, -0.0000018744,0.0000018771,0.0000018796,0.0000018826,0.0000018847, -0.0000018848,0.0000018852,0.0000018866,0.0000018886,0.0000018904, -0.0000018918,0.0000018929,0.0000018939,0.0000018947,0.0000018951, -0.0000018946,0.0000018934,0.0000018915,0.0000018889,0.0000018857, -0.0000018820,0.0000018779,0.0000018738,0.0000018700,0.0000018668, -0.0000018644,0.0000018630,0.0000018630,0.0000018637,0.0000018648, -0.0000018666,0.0000018684,0.0000018703,0.0000018720,0.0000018728, -0.0000018723,0.0000018706,0.0000018680,0.0000018650,0.0000018619, -0.0000018587,0.0000018555,0.0000018524,0.0000018501,0.0000018491, -0.0000018492,0.0000018495,0.0000018499,0.0000018502,0.0000018502, -0.0000018494,0.0000018476,0.0000018452,0.0000018426,0.0000018408, -0.0000018404,0.0000018408,0.0000018420,0.0000018443,0.0000018468, -0.0000018487,0.0000018500,0.0000018512,0.0000018525,0.0000018534, -0.0000018539,0.0000018540,0.0000018534,0.0000018525,0.0000018515, -0.0000018510,0.0000018512,0.0000018519,0.0000018532,0.0000018551, -0.0000018572,0.0000018595,0.0000018620,0.0000018658,0.0000018705, -0.0000018758,0.0000018810,0.0000018857,0.0000018891,0.0000018917, -0.0000018932,0.0000018935,0.0000018924,0.0000018872,0.0000018796, -0.0000018725,0.0000018676,0.0000018635,0.0000018574,0.0000018471, -0.0000018344,0.0000018239,0.0000018179,0.0000018158,0.0000018151, -0.0000018144,0.0000018115,0.0000018056,0.0000017991,0.0000017955, -0.0000017948,0.0000017958,0.0000017976,0.0000017990,0.0000018022, -0.0000018052,0.0000018075,0.0000018084,0.0000018088,0.0000018075, -0.0000018055,0.0000018032,0.0000018017,0.0000018017,0.0000018029, -0.0000018044,0.0000018071,0.0000018102,0.0000018133,0.0000018159, -0.0000018183,0.0000018200,0.0000018211,0.0000018227,0.0000018246, -0.0000018266,0.0000018286,0.0000018307,0.0000018337,0.0000018374, -0.0000018412,0.0000018449,0.0000018483,0.0000018517,0.0000018544, -0.0000018569,0.0000018583,0.0000018595,0.0000018608,0.0000018613, -0.0000018612,0.0000018605,0.0000018591,0.0000018570,0.0000018542, -0.0000018508,0.0000018478,0.0000018451,0.0000018432,0.0000018420, -0.0000018417,0.0000018420,0.0000018431,0.0000018446,0.0000018460, -0.0000018468,0.0000018468,0.0000018461,0.0000018446,0.0000018433, -0.0000018424,0.0000018418,0.0000018411,0.0000018404,0.0000018400, -0.0000018408,0.0000018428,0.0000018442,0.0000018444,0.0000018436, -0.0000018423,0.0000018413,0.0000018415,0.0000018426,0.0000018434, -0.0000018435,0.0000018431,0.0000018435,0.0000018451,0.0000018487, -0.0000018536,0.0000018576,0.0000018605,0.0000018601,0.0000018562, -0.0000018501,0.0000018441,0.0000018401,0.0000018390,0.0000018397, -0.0000018406,0.0000018407,0.0000018404,0.0000018399,0.0000018397, -0.0000018397,0.0000018394,0.0000018389,0.0000018384,0.0000018379, -0.0000018377,0.0000018374,0.0000018376,0.0000018383,0.0000018396, -0.0000018413,0.0000018428,0.0000018443,0.0000018459,0.0000018472, -0.0000018481,0.0000018487,0.0000018494,0.0000018505,0.0000018528, -0.0000018563,0.0000018601,0.0000018639,0.0000018674,0.0000018703, -0.0000018726,0.0000018736,0.0000018738,0.0000018731,0.0000018714, -0.0000018691,0.0000018670,0.0000018656,0.0000018643,0.0000018626, -0.0000018606,0.0000018590,0.0000018571,0.0000018534,0.0000018470, -0.0000018407,0.0000018366,0.0000018351,0.0000018352,0.0000018368, -0.0000018376,0.0000018392,0.0000018399,0.0000018415,0.0000018428, -0.0000018437,0.0000018447,0.0000018455,0.0000018457,0.0000018456, -0.0000018461,0.0000018478,0.0000018521,0.0000018564,0.0000018593, -0.0000018602,0.0000018596,0.0000018586,0.0000018573,0.0000018565, -0.0000018561,0.0000018556,0.0000018560,0.0000018568,0.0000018579, -0.0000018594,0.0000018615,0.0000018641,0.0000018680,0.0000018725, -0.0000018755,0.0000018771,0.0000018782,0.0000018796,0.0000018809, -0.0000018817,0.0000018825,0.0000018838,0.0000018850,0.0000018858, -0.0000018865,0.0000018870,0.0000018867,0.0000018856,0.0000018842, -0.0000018827,0.0000018810,0.0000018796,0.0000018788,0.0000018786, -0.0000018795,0.0000018811,0.0000018837,0.0000018860,0.0000018872, -0.0000018882,0.0000018884,0.0000018879,0.0000018869,0.0000018855, -0.0000018836,0.0000018813,0.0000018779,0.0000018730,0.0000018679, -0.0000018630,0.0000018583,0.0000018538,0.0000018505,0.0000018493, -0.0000018484,0.0000018490,0.0000018539,0.0000018613,0.0000018698, -0.0000018796,0.0000018898,0.0000018986,0.0000019038,0.0000019050, -0.0000019037,0.0000019002,0.0000018962,0.0000018936,0.0000018931, -0.0000018926,0.0000018906,0.0000018851,0.0000018763,0.0000018665, -0.0000018611,0.0000018583,0.0000018605,0.0000018649,0.0000018695, -0.0000018718,0.0000018740,0.0000018732,0.0000018702,0.0000018665, -0.0000018624,0.0000018583,0.0000018546,0.0000018522,0.0000018507, -0.0000018498,0.0000018495,0.0000018494,0.0000018486,0.0000018478, -0.0000018477,0.0000018480,0.0000018485,0.0000018492,0.0000018501, -0.0000018510,0.0000018517,0.0000018523,0.0000018527,0.0000018530, -0.0000018537,0.0000018541,0.0000018538,0.0000018523,0.0000018498, -0.0000018464,0.0000018427,0.0000018395,0.0000018376,0.0000018368, -0.0000018368,0.0000018376,0.0000018390,0.0000018403,0.0000018415, -0.0000018427,0.0000018438,0.0000018445,0.0000018451,0.0000018457, -0.0000018473,0.0000018493,0.0000018509,0.0000018527,0.0000018552, -0.0000018577,0.0000018601,0.0000018624,0.0000018648,0.0000018661, -0.0000018661,0.0000018661,0.0000018665,0.0000018663,0.0000018650, -0.0000018632,0.0000018624,0.0000018625,0.0000018627,0.0000018629, -0.0000018642,0.0000018655,0.0000018657,0.0000018649,0.0000018637, -0.0000018633,0.0000018636,0.0000018653,0.0000018682,0.0000018711, -0.0000018736,0.0000018759,0.0000018778,0.0000018783,0.0000018778, -0.0000018756,0.0000018722,0.0000018686,0.0000018649,0.0000018613, -0.0000018580,0.0000018572,0.0000018578,0.0000018594,0.0000018602, -0.0000018622,0.0000018645,0.0000018670,0.0000018691,0.0000018705, -0.0000018704,0.0000018691,0.0000018669,0.0000018656,0.0000018658, -0.0000018677,0.0000018705,0.0000018746,0.0000018765,0.0000018772, -0.0000018764,0.0000018747,0.0000018730,0.0000018717,0.0000018704, -0.0000018681,0.0000018633,0.0000018570,0.0000018516,0.0000018480, -0.0000018469,0.0000018457,0.0000018421,0.0000018345,0.0000018227, -0.0000018091,0.0000017967,0.0000017871,0.0000017809,0.0000017780, -0.0000017787,0.0000017826,0.0000017860,0.0000017904,0.0000017944, -0.0000017976,0.0000017991,0.0000017989,0.0000017961,0.0000017916, -0.0000017876,0.0000017846,0.0000017824,0.0000017819,0.0000017825, -0.0000017835,0.0000017829,0.0000017813,0.0000017801,0.0000017791, -0.0000017780,0.0000017758,0.0000017739,0.0000017734,0.0000017756, -0.0000017787,0.0000017824,0.0000017867,0.0000017915,0.0000017960, -0.0000017987,0.0000018003,0.0000017999,0.0000017968,0.0000017923, -0.0000017871,0.0000017825,0.0000017807,0.0000017801,0.0000017792, -0.0000017764,0.0000017722,0.0000017680,0.0000017644,0.0000017627, -0.0000017629,0.0000017626,0.0000017603,0.0000017570,0.0000017523, -0.0000017494,0.0000017495,0.0000017534,0.0000017596,0.0000017662, -0.0000017727,0.0000017792,0.0000017846,0.0000017879,0.0000017884, -0.0000017879,0.0000017865,0.0000017843,0.0000017820,0.0000017777, -0.0000017731,0.0000017693,0.0000017652,0.0000017599,0.0000017543, -0.0000017494,0.0000017462,0.0000017434,0.0000017407,0.0000017396, -0.0000017391,0.0000017406,0.0000017454,0.0000017501,0.0000017531, -0.0000017547,0.0000017538,0.0000017509,0.0000017460,0.0000017414, -0.0000017392,0.0000017388,0.0000017375,0.0000017359,0.0000017353, -0.0000017344,0.0000017334,0.0000017330,0.0000017318,0.0000017310, -0.0000017316,0.0000017346,0.0000017365,0.0000017395,0.0000017391, -0.0000017410,0.0000017490,0.0000017639,0.0000017862,0.0000018124, -0.0000018360,0.0000018537,0.0000018649,0.0000018718,0.0000018771, -0.0000018825,0.0000018880,0.0000018927,0.0000018945,0.0000018931, -0.0000018871,0.0000018768,0.0000018647,0.0000018544,0.0000018503, -0.0000018525,0.0000018603,0.0000018703,0.0000018800,0.0000018861, -0.0000018879,0.0000018864,0.0000018830,0.0000018784,0.0000018748, -0.0000018732,0.0000018727,0.0000018720,0.0000018685,0.0000018627, -0.0000018557,0.0000018488,0.0000018435,0.0000018400,0.0000018384, -0.0000018386,0.0000018414,0.0000018461,0.0000018502,0.0000018512, -0.0000018496,0.0000018461,0.0000018424,0.0000018410,0.0000018422, -0.0000018445,0.0000018473,0.0000018505,0.0000018538,0.0000018575, -0.0000018620,0.0000018662,0.0000018685,0.0000018682,0.0000018659, -0.0000018634,0.0000018626,0.0000018647,0.0000018714,0.0000018798, -0.0000018862,0.0000018890,0.0000018886,0.0000018858,0.0000018810, -0.0000018765,0.0000018737,0.0000018723,0.0000018710,0.0000018689, -0.0000018662,0.0000018634,0.0000018611,0.0000018594,0.0000018576, -0.0000018560,0.0000018549,0.0000018541,0.0000018532,0.0000018522, -0.0000018505,0.0000018483,0.0000018471,0.0000018471,0.0000018473, -0.0000018475,0.0000018485,0.0000018491,0.0000018484,0.0000018445, -0.0000018396,0.0000018364,0.0000018344,0.0000018312,0.0000018282, -0.0000018280,0.0000018305,0.0000018320,0.0000018300,0.0000018228, -0.0000018161,0.0000018136,0.0000018131,0.0000018106,0.0000018057, -0.0000018011,0.0000017994,0.0000018009,0.0000018035,0.0000018052, -0.0000018053,0.0000018028,0.0000017969,0.0000017913,0.0000017896, -0.0000017904,0.0000017931,0.0000017957,0.0000017972,0.0000017979, -0.0000017980,0.0000017971,0.0000017966,0.0000017992,0.0000018041, -0.0000018091,0.0000018108,0.0000018094,0.0000018064,0.0000018042, -0.0000018037,0.0000018062,0.0000018082,0.0000018101,0.0000018113, -0.0000018139,0.0000018193,0.0000018257,0.0000018311,0.0000018360, -0.0000018397,0.0000018417,0.0000018413,0.0000018393,0.0000018362, -0.0000018319,0.0000018266,0.0000018212,0.0000018157,0.0000018106, -0.0000018053,0.0000017991,0.0000017935,0.0000017910,0.0000017917, -0.0000017930,0.0000017923,0.0000017885,0.0000017832,0.0000017786, -0.0000017748,0.0000017707,0.0000017651,0.0000017584,0.0000017512, -0.0000017437,0.0000017369,0.0000017325,0.0000017294,0.0000017259, -0.0000017222,0.0000017192,0.0000017172,0.0000017163,0.0000017161, -0.0000017168,0.0000017177,0.0000017185,0.0000017193,0.0000017212, -0.0000017234,0.0000017260,0.0000017277,0.0000017289,0.0000017315, -0.0000017342,0.0000017356,0.0000017376,0.0000017432,0.0000017523, -0.0000017605,0.0000017663,0.0000017693,0.0000017693,0.0000017660, -0.0000017604,0.0000017545,0.0000017496,0.0000017451,0.0000017438, -0.0000017456,0.0000017485,0.0000017528,0.0000017584,0.0000017622, -0.0000017640,0.0000017642,0.0000017645,0.0000017663,0.0000017700, -0.0000017743,0.0000017768,0.0000017775,0.0000017768,0.0000017742, -0.0000017700,0.0000017651,0.0000017587,0.0000017493,0.0000017382, -0.0000017298,0.0000017259,0.0000017263,0.0000017313,0.0000017399, -0.0000017494,0.0000017574,0.0000017626,0.0000017652,0.0000017661, -0.0000017668,0.0000017700,0.0000017764,0.0000017801,0.0000017776, -0.0000017703,0.0000017664,0.0000017705,0.0000017765,0.0000017761, -0.0000017689,0.0000017618,0.0000017563,0.0000017417,0.0000017345, -0.0000017466,0.0000017737,0.0000017836,0.0000017789,0.0000017750, -0.0000017660,0.0000017627,0.0000017698,0.0000017766,0.0000017793, -0.0000017821,0.0000017854,0.0000017913,0.0000017971,0.0000017947, -0.0000017843,0.0000017780,0.0000017771,0.0000017850,0.0000017892, -0.0000017763,0.0000017723,0.0000017800,0.0000017861,0.0000017897, -0.0000017806,0.0000017654,0.0000017571,0.0000017521,0.0000017511, -0.0000017541,0.0000017556,0.0000017551,0.0000017539,0.0000017537, -0.0000017584,0.0000017695,0.0000017746,0.0000017688,0.0000017534, -0.0000017422,0.0000017427,0.0000017568,0.0000017734,0.0000017809, -0.0000017804,0.0000017780,0.0000017760,0.0000017738,0.0000017711, -0.0000017684,0.0000017643,0.0000017561,0.0000017473,0.0000017451, -0.0000017501,0.0000017564,0.0000017616,0.0000017672,0.0000017708, -0.0000017701,0.0000017664,0.0000017638,0.0000017643,0.0000017674, -0.0000017697,0.0000017684,0.0000017645,0.0000017625,0.0000017638, -0.0000017674,0.0000017711,0.0000017723,0.0000017704,0.0000017661, -0.0000017632,0.0000017634,0.0000017641,0.0000017637,0.0000017634, -0.0000017638,0.0000017637,0.0000017658,0.0000017711,0.0000017721, -0.0000017654,0.0000017605,0.0000017635,0.0000017695,0.0000017684, -0.0000017608,0.0000017530,0.0000017496,0.0000017498,0.0000017559, -0.0000017671,0.0000017785,0.0000017861,0.0000017896,0.0000017915, -0.0000017955,0.0000018042,0.0000018164,0.0000018273,0.0000018347, -0.0000018403,0.0000018455,0.0000018510,0.0000018574,0.0000018632, -0.0000018661,0.0000018571,0.0000018513,0.0000018460,0.0000018415, -0.0000018380,0.0000018355,0.0000018342,0.0000018340,0.0000018345, -0.0000018355,0.0000018369,0.0000018398,0.0000018448,0.0000018506, -0.0000018549,0.0000018561,0.0000018554,0.0000018536,0.0000018523, -0.0000018522,0.0000018521,0.0000018504,0.0000018481,0.0000018483, -0.0000018512,0.0000018526,0.0000018490,0.0000018414,0.0000018380, -0.0000018413,0.0000018503,0.0000018564,0.0000018555,0.0000018504, -0.0000018473,0.0000018530,0.0000018652,0.0000018701,0.0000018700, -0.0000018664,0.0000018594,0.0000018561,0.0000018571,0.0000018593, -0.0000018615,0.0000018631,0.0000018644,0.0000018658,0.0000018676, -0.0000018695,0.0000018715,0.0000018738,0.0000018765,0.0000018796, -0.0000018832,0.0000018868,0.0000018895,0.0000018909,0.0000018909, -0.0000018900,0.0000018881,0.0000018878,0.0000018882,0.0000018910, -0.0000018959,0.0000019001,0.0000019014,0.0000019018,0.0000018996, -0.0000018955,0.0000018904,0.0000018852,0.0000018797,0.0000018751, -0.0000018714,0.0000018684,0.0000018659,0.0000018645,0.0000018632, -0.0000018615,0.0000018563,0.0000018480,0.0000018400,0.0000018349, -0.0000018316,0.0000018280,0.0000018222,0.0000018171,0.0000018158, -0.0000018175,0.0000018204,0.0000018231,0.0000018251,0.0000018266, -0.0000018282,0.0000018299,0.0000018311,0.0000018320,0.0000018323, -0.0000018319,0.0000018312,0.0000018302,0.0000018289,0.0000018273, -0.0000018254,0.0000018234,0.0000018219,0.0000018211,0.0000018208, -0.0000018222,0.0000018240,0.0000018256,0.0000018260,0.0000018260, -0.0000018257,0.0000018248,0.0000018236,0.0000018225,0.0000018220, -0.0000018218,0.0000018220,0.0000018223,0.0000018221,0.0000018216, -0.0000018206,0.0000018196,0.0000018191,0.0000018192,0.0000018191, -0.0000018188,0.0000018181,0.0000018174,0.0000018164,0.0000018152, -0.0000018137,0.0000018119,0.0000018100,0.0000018083,0.0000018064, -0.0000018046,0.0000018028,0.0000018006,0.0000017992,0.0000017981, -0.0000017980,0.0000017988,0.0000018006,0.0000018031,0.0000018061, -0.0000018093,0.0000018126,0.0000018157,0.0000018188,0.0000018224, -0.0000018261,0.0000018293,0.0000018320,0.0000018348,0.0000018373, -0.0000018397,0.0000018415,0.0000018433,0.0000018445,0.0000018445, -0.0000018439,0.0000018434,0.0000018427,0.0000018411,0.0000018395, -0.0000018390,0.0000018382,0.0000018379,0.0000018385,0.0000018392, -0.0000018397,0.0000018408,0.0000018421,0.0000018436,0.0000018451, -0.0000018465,0.0000018480,0.0000018497,0.0000018514,0.0000018533, -0.0000018555,0.0000018576,0.0000018595,0.0000018611,0.0000018624, -0.0000018641,0.0000018665,0.0000018692,0.0000018723,0.0000018757, -0.0000018793,0.0000018831,0.0000018862,0.0000018884,0.0000018901, -0.0000018904,0.0000018900,0.0000018892,0.0000018885,0.0000018872, -0.0000018850,0.0000018825,0.0000018798,0.0000018769,0.0000018744, -0.0000018729,0.0000018724,0.0000018727,0.0000018730,0.0000018734, -0.0000018747,0.0000018766,0.0000018779,0.0000018784,0.0000018782, -0.0000018775,0.0000018759,0.0000018735,0.0000018704,0.0000018673, -0.0000018645,0.0000018624,0.0000018619,0.0000018623,0.0000018631, -0.0000018640,0.0000018644,0.0000018644,0.0000018639,0.0000018624, -0.0000018600,0.0000018572,0.0000018546,0.0000018525,0.0000018510, -0.0000018506,0.0000018513,0.0000018536,0.0000018567,0.0000018599, -0.0000018632,0.0000018660,0.0000018684,0.0000018702,0.0000018709, -0.0000018704,0.0000018690,0.0000018670,0.0000018653,0.0000018636, -0.0000018622,0.0000018613,0.0000018608,0.0000018607,0.0000018611, -0.0000018619,0.0000018640,0.0000018671,0.0000018716,0.0000018764, -0.0000018808,0.0000018844,0.0000018880,0.0000018917,0.0000018958, -0.0000018989,0.0000018995,0.0000018975,0.0000018916,0.0000018829, -0.0000018745,0.0000018683,0.0000018631,0.0000018557,0.0000018450, -0.0000018328,0.0000018231,0.0000018184,0.0000018175,0.0000018197, -0.0000018216,0.0000018218,0.0000018171,0.0000018087,0.0000018016, -0.0000017980,0.0000017973,0.0000017989,0.0000018020,0.0000018061, -0.0000018099,0.0000018124,0.0000018134,0.0000018125,0.0000018113, -0.0000018090,0.0000018073,0.0000018063,0.0000018061,0.0000018065, -0.0000018076,0.0000018088,0.0000018099,0.0000018115,0.0000018129, -0.0000018144,0.0000018169,0.0000018196,0.0000018220,0.0000018242, -0.0000018265,0.0000018295,0.0000018331,0.0000018367,0.0000018398, -0.0000018426,0.0000018449,0.0000018469,0.0000018486,0.0000018500, -0.0000018511,0.0000018517,0.0000018516,0.0000018509,0.0000018498, -0.0000018479,0.0000018459,0.0000018436,0.0000018415,0.0000018402, -0.0000018398,0.0000018406,0.0000018415,0.0000018430,0.0000018445, -0.0000018458,0.0000018464,0.0000018464,0.0000018452,0.0000018436, -0.0000018417,0.0000018399,0.0000018383,0.0000018367,0.0000018359, -0.0000018368,0.0000018394,0.0000018424,0.0000018441,0.0000018440, -0.0000018419,0.0000018393,0.0000018378,0.0000018376,0.0000018381, -0.0000018388,0.0000018391,0.0000018397,0.0000018416,0.0000018455, -0.0000018508,0.0000018553,0.0000018571,0.0000018557,0.0000018514, -0.0000018454,0.0000018398,0.0000018362,0.0000018350,0.0000018355, -0.0000018363,0.0000018364,0.0000018359,0.0000018350,0.0000018341, -0.0000018334,0.0000018335,0.0000018341,0.0000018350,0.0000018364, -0.0000018372,0.0000018382,0.0000018389,0.0000018398,0.0000018411, -0.0000018428,0.0000018450,0.0000018474,0.0000018491,0.0000018505, -0.0000018516,0.0000018521,0.0000018520,0.0000018517,0.0000018513, -0.0000018515,0.0000018532,0.0000018557,0.0000018583,0.0000018606, -0.0000018628,0.0000018652,0.0000018670,0.0000018675,0.0000018672, -0.0000018658,0.0000018642,0.0000018628,0.0000018612,0.0000018591, -0.0000018564,0.0000018527,0.0000018482,0.0000018441,0.0000018401, -0.0000018355,0.0000018315,0.0000018296,0.0000018315,0.0000018345, -0.0000018380,0.0000018420,0.0000018454,0.0000018478,0.0000018500, -0.0000018518,0.0000018528,0.0000018533,0.0000018536,0.0000018535, -0.0000018525,0.0000018507,0.0000018484,0.0000018470,0.0000018472, -0.0000018501,0.0000018541,0.0000018574,0.0000018588,0.0000018587, -0.0000018576,0.0000018567,0.0000018558,0.0000018548,0.0000018541, -0.0000018538,0.0000018541,0.0000018546,0.0000018550,0.0000018561, -0.0000018594,0.0000018642,0.0000018686,0.0000018718,0.0000018750, -0.0000018786,0.0000018815,0.0000018837,0.0000018859,0.0000018879, -0.0000018892,0.0000018906,0.0000018919,0.0000018925,0.0000018925, -0.0000018919,0.0000018908,0.0000018894,0.0000018872,0.0000018847, -0.0000018827,0.0000018810,0.0000018797,0.0000018798,0.0000018805, -0.0000018812,0.0000018811,0.0000018803,0.0000018795,0.0000018797, -0.0000018802,0.0000018806,0.0000018812,0.0000018811,0.0000018799, -0.0000018776,0.0000018743,0.0000018704,0.0000018663,0.0000018617, -0.0000018569,0.0000018521,0.0000018480,0.0000018452,0.0000018441, -0.0000018442,0.0000018451,0.0000018499,0.0000018593,0.0000018719, -0.0000018846,0.0000018951,0.0000019014,0.0000019039,0.0000019025, -0.0000018989,0.0000018960,0.0000018948,0.0000018946,0.0000018938, -0.0000018913,0.0000018855,0.0000018769,0.0000018677,0.0000018622, -0.0000018594,0.0000018596,0.0000018631,0.0000018673,0.0000018710, -0.0000018720,0.0000018733,0.0000018728,0.0000018707,0.0000018684, -0.0000018663,0.0000018645,0.0000018627,0.0000018613,0.0000018599, -0.0000018582,0.0000018571,0.0000018563,0.0000018558,0.0000018553, -0.0000018551,0.0000018551,0.0000018556,0.0000018564,0.0000018572, -0.0000018577,0.0000018580,0.0000018583,0.0000018583,0.0000018572, -0.0000018553,0.0000018530,0.0000018505,0.0000018480,0.0000018460, -0.0000018454,0.0000018455,0.0000018458,0.0000018468,0.0000018479, -0.0000018484,0.0000018492,0.0000018500,0.0000018513,0.0000018523, -0.0000018524,0.0000018523,0.0000018528,0.0000018536,0.0000018541, -0.0000018548,0.0000018556,0.0000018566,0.0000018579,0.0000018600, -0.0000018623,0.0000018638,0.0000018645,0.0000018652,0.0000018657, -0.0000018650,0.0000018630,0.0000018611,0.0000018595,0.0000018586, -0.0000018578,0.0000018576,0.0000018583,0.0000018585,0.0000018582, -0.0000018572,0.0000018560,0.0000018553,0.0000018558,0.0000018578, -0.0000018606,0.0000018633,0.0000018671,0.0000018713,0.0000018752, -0.0000018781,0.0000018791,0.0000018790,0.0000018774,0.0000018757, -0.0000018738,0.0000018720,0.0000018700,0.0000018685,0.0000018674, -0.0000018659,0.0000018653,0.0000018652,0.0000018664,0.0000018671, -0.0000018684,0.0000018695,0.0000018697,0.0000018694,0.0000018690, -0.0000018685,0.0000018682,0.0000018688,0.0000018715,0.0000018743, -0.0000018763,0.0000018769,0.0000018764,0.0000018762,0.0000018766, -0.0000018781,0.0000018798,0.0000018792,0.0000018762,0.0000018716, -0.0000018672,0.0000018654,0.0000018654,0.0000018648,0.0000018617, -0.0000018545,0.0000018441,0.0000018318,0.0000018191,0.0000018073, -0.0000017976,0.0000017911,0.0000017885,0.0000017874,0.0000017893, -0.0000017909,0.0000017929,0.0000017964,0.0000017986,0.0000017984, -0.0000017954,0.0000017909,0.0000017864,0.0000017820,0.0000017802, -0.0000017810,0.0000017826,0.0000017821,0.0000017804,0.0000017785, -0.0000017768,0.0000017761,0.0000017740,0.0000017716,0.0000017695, -0.0000017703,0.0000017744,0.0000017799,0.0000017860,0.0000017921, -0.0000017976,0.0000018008,0.0000018031,0.0000018046,0.0000018044, -0.0000018027,0.0000017988,0.0000017944,0.0000017913,0.0000017888, -0.0000017874,0.0000017855,0.0000017819,0.0000017782,0.0000017740, -0.0000017707,0.0000017695,0.0000017682,0.0000017659,0.0000017632, -0.0000017594,0.0000017563,0.0000017553,0.0000017581,0.0000017630, -0.0000017689,0.0000017751,0.0000017810,0.0000017857,0.0000017889, -0.0000017899,0.0000017908,0.0000017909,0.0000017903,0.0000017889, -0.0000017851,0.0000017807,0.0000017770,0.0000017725,0.0000017669, -0.0000017609,0.0000017555,0.0000017519,0.0000017484,0.0000017457, -0.0000017445,0.0000017442,0.0000017452,0.0000017488,0.0000017529, -0.0000017563,0.0000017587,0.0000017593,0.0000017585,0.0000017555, -0.0000017518,0.0000017490,0.0000017482,0.0000017465,0.0000017444, -0.0000017427,0.0000017406,0.0000017387,0.0000017372,0.0000017360, -0.0000017363,0.0000017381,0.0000017402,0.0000017421,0.0000017425, -0.0000017397,0.0000017380,0.0000017335,0.0000017355,0.0000017450, -0.0000017634,0.0000017878,0.0000018148,0.0000018393,0.0000018578, -0.0000018693,0.0000018762,0.0000018815,0.0000018868,0.0000018922, -0.0000018945,0.0000018947,0.0000018904,0.0000018809,0.0000018682, -0.0000018569,0.0000018531,0.0000018532,0.0000018596,0.0000018693, -0.0000018789,0.0000018864,0.0000018899,0.0000018891,0.0000018845, -0.0000018782,0.0000018731,0.0000018698,0.0000018686,0.0000018675, -0.0000018667,0.0000018632,0.0000018584,0.0000018539,0.0000018504, -0.0000018480,0.0000018479,0.0000018502,0.0000018547,0.0000018592, -0.0000018619,0.0000018616,0.0000018583,0.0000018541,0.0000018513, -0.0000018499,0.0000018499,0.0000018512,0.0000018533,0.0000018561, -0.0000018596,0.0000018629,0.0000018653,0.0000018662,0.0000018654, -0.0000018638,0.0000018634,0.0000018661,0.0000018723,0.0000018795, -0.0000018837,0.0000018836,0.0000018805,0.0000018754,0.0000018701, -0.0000018663,0.0000018645,0.0000018638,0.0000018634,0.0000018624, -0.0000018604,0.0000018574,0.0000018547,0.0000018529,0.0000018519, -0.0000018510,0.0000018506,0.0000018505,0.0000018502,0.0000018494, -0.0000018476,0.0000018454,0.0000018439,0.0000018432,0.0000018420, -0.0000018403,0.0000018399,0.0000018407,0.0000018416,0.0000018417, -0.0000018391,0.0000018344,0.0000018305,0.0000018283,0.0000018259, -0.0000018236,0.0000018236,0.0000018257,0.0000018262,0.0000018219, -0.0000018158,0.0000018131,0.0000018135,0.0000018129,0.0000018088, -0.0000018035,0.0000018000,0.0000017996,0.0000018013,0.0000018041, -0.0000018071,0.0000018080,0.0000018044,0.0000017980,0.0000017947, -0.0000017946,0.0000017947,0.0000017945,0.0000017931,0.0000017924, -0.0000017920,0.0000017920,0.0000017930,0.0000017968,0.0000018026, -0.0000018086,0.0000018119,0.0000018141,0.0000018141,0.0000018134, -0.0000018126,0.0000018124,0.0000018129,0.0000018133,0.0000018140, -0.0000018163,0.0000018203,0.0000018248,0.0000018291,0.0000018335, -0.0000018384,0.0000018428,0.0000018449,0.0000018460,0.0000018460, -0.0000018445,0.0000018415,0.0000018372,0.0000018322,0.0000018269, -0.0000018205,0.0000018127,0.0000018057,0.0000018019,0.0000018002, -0.0000017990,0.0000017972,0.0000017946,0.0000017929,0.0000017928, -0.0000017930,0.0000017913,0.0000017864,0.0000017788,0.0000017696, -0.0000017597,0.0000017508,0.0000017442,0.0000017392,0.0000017340, -0.0000017282,0.0000017231,0.0000017195,0.0000017173,0.0000017166, -0.0000017179,0.0000017208,0.0000017233,0.0000017254,0.0000017275, -0.0000017291,0.0000017298,0.0000017299,0.0000017298,0.0000017308, -0.0000017321,0.0000017314,0.0000017313,0.0000017338,0.0000017396, -0.0000017465,0.0000017535,0.0000017587,0.0000017600,0.0000017579, -0.0000017544,0.0000017508,0.0000017462,0.0000017408,0.0000017380, -0.0000017396,0.0000017429,0.0000017449,0.0000017478,0.0000017518, -0.0000017551,0.0000017574,0.0000017582,0.0000017581,0.0000017588, -0.0000017611,0.0000017622,0.0000017612,0.0000017580,0.0000017529, -0.0000017463,0.0000017391,0.0000017321,0.0000017268,0.0000017245, -0.0000017261,0.0000017307,0.0000017389,0.0000017481,0.0000017568, -0.0000017641,0.0000017690,0.0000017714,0.0000017713,0.0000017696, -0.0000017671,0.0000017681,0.0000017742,0.0000017779,0.0000017768, -0.0000017712,0.0000017664,0.0000017692,0.0000017768,0.0000017788, -0.0000017747,0.0000017667,0.0000017600,0.0000017524,0.0000017377, -0.0000017363,0.0000017509,0.0000017764,0.0000017817,0.0000017771, -0.0000017730,0.0000017647,0.0000017656,0.0000017752,0.0000017821, -0.0000017836,0.0000017860,0.0000017926,0.0000018028,0.0000018017, -0.0000017886,0.0000017800,0.0000017783,0.0000017843,0.0000017907, -0.0000017791,0.0000017723,0.0000017793,0.0000017836,0.0000017867, -0.0000017801,0.0000017663,0.0000017577,0.0000017524,0.0000017512, -0.0000017542,0.0000017554,0.0000017548,0.0000017535,0.0000017521, -0.0000017530,0.0000017612,0.0000017721,0.0000017738,0.0000017627, -0.0000017464,0.0000017411,0.0000017494,0.0000017665,0.0000017780, -0.0000017796,0.0000017778,0.0000017750,0.0000017722,0.0000017695, -0.0000017672,0.0000017645,0.0000017576,0.0000017474,0.0000017431, -0.0000017459,0.0000017526,0.0000017584,0.0000017642,0.0000017690, -0.0000017693,0.0000017654,0.0000017620,0.0000017621,0.0000017648, -0.0000017673,0.0000017667,0.0000017637,0.0000017616,0.0000017624, -0.0000017653,0.0000017675,0.0000017670,0.0000017640,0.0000017615, -0.0000017616,0.0000017625,0.0000017627,0.0000017635,0.0000017645, -0.0000017651,0.0000017684,0.0000017723,0.0000017701,0.0000017628, -0.0000017624,0.0000017670,0.0000017660,0.0000017581,0.0000017506, -0.0000017482,0.0000017509,0.0000017618,0.0000017759,0.0000017852, -0.0000017875,0.0000017876,0.0000017902,0.0000017976,0.0000018089, -0.0000018203,0.0000018285,0.0000018342,0.0000018395,0.0000018444, -0.0000018496,0.0000018561,0.0000018618,0.0000018640,0.0000018621, -0.0000018439,0.0000018379,0.0000018339,0.0000018313,0.0000018292, -0.0000018273,0.0000018249,0.0000018232,0.0000018223,0.0000018223, -0.0000018234,0.0000018281,0.0000018367,0.0000018466,0.0000018532, -0.0000018552,0.0000018554,0.0000018547,0.0000018539,0.0000018533, -0.0000018522,0.0000018503,0.0000018496,0.0000018517,0.0000018538, -0.0000018522,0.0000018457,0.0000018399,0.0000018401,0.0000018472, -0.0000018562,0.0000018583,0.0000018546,0.0000018498,0.0000018524, -0.0000018641,0.0000018713,0.0000018708,0.0000018661,0.0000018573, -0.0000018535,0.0000018561,0.0000018604,0.0000018628,0.0000018634, -0.0000018631,0.0000018628,0.0000018631,0.0000018645,0.0000018668, -0.0000018695,0.0000018727,0.0000018759,0.0000018795,0.0000018837, -0.0000018881,0.0000018919,0.0000018950,0.0000018968,0.0000018979, -0.0000018965,0.0000018928,0.0000018894,0.0000018884,0.0000018896, -0.0000018930,0.0000018972,0.0000019001,0.0000019022,0.0000019005, -0.0000018974,0.0000018939,0.0000018887,0.0000018836,0.0000018789, -0.0000018736,0.0000018686,0.0000018646,0.0000018626,0.0000018619, -0.0000018597,0.0000018524,0.0000018427,0.0000018360,0.0000018323, -0.0000018302,0.0000018272,0.0000018226,0.0000018189,0.0000018175, -0.0000018188,0.0000018200,0.0000018217,0.0000018235,0.0000018253, -0.0000018269,0.0000018282,0.0000018294,0.0000018300,0.0000018299, -0.0000018296,0.0000018292,0.0000018280,0.0000018265,0.0000018249, -0.0000018243,0.0000018249,0.0000018268,0.0000018295,0.0000018318, -0.0000018328,0.0000018322,0.0000018301,0.0000018284,0.0000018277, -0.0000018278,0.0000018288,0.0000018302,0.0000018314,0.0000018324, -0.0000018337,0.0000018353,0.0000018375,0.0000018400,0.0000018421, -0.0000018437,0.0000018452,0.0000018468,0.0000018478,0.0000018481, -0.0000018478,0.0000018467,0.0000018445,0.0000018414,0.0000018376, -0.0000018333,0.0000018290,0.0000018245,0.0000018198,0.0000018157, -0.0000018119,0.0000018084,0.0000018057,0.0000018041,0.0000018032, -0.0000018032,0.0000018037,0.0000018042,0.0000018055,0.0000018064, -0.0000018065,0.0000018067,0.0000018075,0.0000018091,0.0000018112, -0.0000018133,0.0000018162,0.0000018190,0.0000018226,0.0000018262, -0.0000018293,0.0000018323,0.0000018346,0.0000018365,0.0000018372, -0.0000018378,0.0000018381,0.0000018368,0.0000018358,0.0000018354, -0.0000018347,0.0000018344,0.0000018350,0.0000018352,0.0000018355, -0.0000018359,0.0000018362,0.0000018368,0.0000018378,0.0000018385, -0.0000018393,0.0000018399,0.0000018408,0.0000018425,0.0000018441, -0.0000018448,0.0000018454,0.0000018462,0.0000018465,0.0000018465, -0.0000018470,0.0000018483,0.0000018499,0.0000018521,0.0000018547, -0.0000018575,0.0000018597,0.0000018616,0.0000018633,0.0000018645, -0.0000018651,0.0000018656,0.0000018659,0.0000018657,0.0000018655, -0.0000018652,0.0000018646,0.0000018639,0.0000018633,0.0000018632, -0.0000018638,0.0000018652,0.0000018671,0.0000018695,0.0000018725, -0.0000018756,0.0000018781,0.0000018792,0.0000018808,0.0000018826, -0.0000018837,0.0000018834,0.0000018818,0.0000018792,0.0000018763, -0.0000018741,0.0000018725,0.0000018719,0.0000018720,0.0000018730, -0.0000018742,0.0000018753,0.0000018760,0.0000018761,0.0000018755, -0.0000018742,0.0000018727,0.0000018710,0.0000018693,0.0000018679, -0.0000018676,0.0000018685,0.0000018704,0.0000018730,0.0000018763, -0.0000018794,0.0000018822,0.0000018846,0.0000018860,0.0000018861, -0.0000018853,0.0000018843,0.0000018827,0.0000018804,0.0000018780, -0.0000018757,0.0000018732,0.0000018706,0.0000018683,0.0000018668, -0.0000018666,0.0000018674,0.0000018694,0.0000018720,0.0000018757, -0.0000018797,0.0000018833,0.0000018871,0.0000018909,0.0000018951, -0.0000018993,0.0000019025,0.0000019028,0.0000018998,0.0000018926, -0.0000018830,0.0000018742,0.0000018674,0.0000018618,0.0000018548, -0.0000018456,0.0000018354,0.0000018276,0.0000018239,0.0000018237, -0.0000018265,0.0000018300,0.0000018306,0.0000018268,0.0000018181, -0.0000018096,0.0000018050,0.0000018033,0.0000018036,0.0000018056, -0.0000018072,0.0000018100,0.0000018125,0.0000018142,0.0000018142, -0.0000018134,0.0000018126,0.0000018116,0.0000018110,0.0000018104, -0.0000018099,0.0000018094,0.0000018091,0.0000018091,0.0000018101, -0.0000018119,0.0000018140,0.0000018159,0.0000018178,0.0000018204, -0.0000018236,0.0000018269,0.0000018302,0.0000018331,0.0000018354, -0.0000018372,0.0000018388,0.0000018401,0.0000018414,0.0000018425, -0.0000018429,0.0000018428,0.0000018426,0.0000018421,0.0000018412, -0.0000018406,0.0000018404,0.0000018400,0.0000018408,0.0000018423, -0.0000018434,0.0000018442,0.0000018449,0.0000018448,0.0000018442, -0.0000018429,0.0000018411,0.0000018392,0.0000018378,0.0000018367, -0.0000018361,0.0000018364,0.0000018390,0.0000018427,0.0000018456, -0.0000018462,0.0000018440,0.0000018403,0.0000018369,0.0000018351, -0.0000018349,0.0000018356,0.0000018363,0.0000018369,0.0000018387, -0.0000018428,0.0000018483,0.0000018525,0.0000018536,0.0000018517, -0.0000018468,0.0000018405,0.0000018353,0.0000018324,0.0000018316, -0.0000018317,0.0000018320,0.0000018324,0.0000018324,0.0000018323, -0.0000018323,0.0000018319,0.0000018318,0.0000018322,0.0000018332, -0.0000018347,0.0000018365,0.0000018386,0.0000018408,0.0000018425, -0.0000018436,0.0000018445,0.0000018455,0.0000018470,0.0000018488, -0.0000018509,0.0000018523,0.0000018528,0.0000018528,0.0000018526, -0.0000018517,0.0000018505,0.0000018492,0.0000018488,0.0000018493, -0.0000018504,0.0000018513,0.0000018517,0.0000018521,0.0000018529, -0.0000018535,0.0000018532,0.0000018520,0.0000018503,0.0000018494, -0.0000018489,0.0000018475,0.0000018449,0.0000018415,0.0000018372, -0.0000018327,0.0000018298,0.0000018283,0.0000018287,0.0000018295, -0.0000018331,0.0000018390,0.0000018446,0.0000018497,0.0000018546, -0.0000018581,0.0000018603,0.0000018622,0.0000018633,0.0000018635, -0.0000018633,0.0000018632,0.0000018626,0.0000018613,0.0000018589, -0.0000018547,0.0000018499,0.0000018466,0.0000018464,0.0000018479, -0.0000018511,0.0000018543,0.0000018562,0.0000018569,0.0000018568, -0.0000018558,0.0000018540,0.0000018523,0.0000018519,0.0000018521, -0.0000018522,0.0000018516,0.0000018513,0.0000018524,0.0000018553, -0.0000018584,0.0000018615,0.0000018660,0.0000018711,0.0000018759, -0.0000018805,0.0000018845,0.0000018872,0.0000018892,0.0000018910, -0.0000018923,0.0000018931,0.0000018937,0.0000018938,0.0000018933, -0.0000018918,0.0000018898,0.0000018874,0.0000018847,0.0000018821, -0.0000018803,0.0000018789,0.0000018785,0.0000018780,0.0000018766, -0.0000018748,0.0000018740,0.0000018745,0.0000018758,0.0000018780, -0.0000018805,0.0000018816,0.0000018819,0.0000018818,0.0000018807, -0.0000018789,0.0000018765,0.0000018733,0.0000018693,0.0000018643, -0.0000018586,0.0000018530,0.0000018481,0.0000018445,0.0000018425, -0.0000018418,0.0000018419,0.0000018446,0.0000018516,0.0000018626, -0.0000018761,0.0000018889,0.0000018973,0.0000019011,0.0000019026, -0.0000019015,0.0000018990,0.0000018968,0.0000018957,0.0000018942, -0.0000018912,0.0000018857,0.0000018776,0.0000018688,0.0000018620, -0.0000018594,0.0000018590,0.0000018601,0.0000018622,0.0000018650, -0.0000018674,0.0000018688,0.0000018685,0.0000018685,0.0000018682, -0.0000018676,0.0000018667,0.0000018655,0.0000018645,0.0000018641, -0.0000018637,0.0000018631,0.0000018626,0.0000018621,0.0000018617, -0.0000018622,0.0000018630,0.0000018636,0.0000018640,0.0000018641, -0.0000018642,0.0000018640,0.0000018628,0.0000018602,0.0000018566, -0.0000018529,0.0000018496,0.0000018472,0.0000018460,0.0000018459, -0.0000018466,0.0000018478,0.0000018488,0.0000018502,0.0000018514, -0.0000018532,0.0000018551,0.0000018567,0.0000018577,0.0000018585, -0.0000018597,0.0000018609,0.0000018615,0.0000018620,0.0000018626, -0.0000018627,0.0000018626,0.0000018636,0.0000018654,0.0000018665, -0.0000018673,0.0000018683,0.0000018686,0.0000018679,0.0000018663, -0.0000018645,0.0000018628,0.0000018612,0.0000018601,0.0000018606, -0.0000018606,0.0000018599,0.0000018590,0.0000018577,0.0000018567, -0.0000018556,0.0000018565,0.0000018580,0.0000018598,0.0000018619, -0.0000018649,0.0000018683,0.0000018717,0.0000018745,0.0000018760, -0.0000018760,0.0000018759,0.0000018760,0.0000018766,0.0000018773, -0.0000018774,0.0000018770,0.0000018762,0.0000018755,0.0000018743, -0.0000018731,0.0000018715,0.0000018702,0.0000018694,0.0000018696, -0.0000018699,0.0000018707,0.0000018711,0.0000018709,0.0000018703, -0.0000018713,0.0000018727,0.0000018740,0.0000018745,0.0000018744, -0.0000018744,0.0000018750,0.0000018770,0.0000018808,0.0000018836, -0.0000018856,0.0000018852,0.0000018829,0.0000018814,0.0000018816, -0.0000018824,0.0000018824,0.0000018796,0.0000018740,0.0000018652, -0.0000018536,0.0000018413,0.0000018294,0.0000018191,0.0000018105, -0.0000018043,0.0000018003,0.0000017973,0.0000017947,0.0000017963, -0.0000017979,0.0000017985,0.0000017968,0.0000017934,0.0000017891, -0.0000017842,0.0000017813,0.0000017819,0.0000017842,0.0000017851, -0.0000017831,0.0000017794,0.0000017763,0.0000017748,0.0000017726, -0.0000017707,0.0000017683,0.0000017680,0.0000017711,0.0000017765, -0.0000017833,0.0000017903,0.0000017963,0.0000018009,0.0000018042, -0.0000018064,0.0000018077,0.0000018087,0.0000018070,0.0000018040, -0.0000018008,0.0000017971,0.0000017946,0.0000017930,0.0000017909, -0.0000017890,0.0000017858,0.0000017827,0.0000017804,0.0000017778, -0.0000017750,0.0000017728,0.0000017697,0.0000017674,0.0000017662, -0.0000017676,0.0000017708,0.0000017748,0.0000017794,0.0000017843, -0.0000017880,0.0000017906,0.0000017918,0.0000017931,0.0000017947, -0.0000017956,0.0000017959,0.0000017942,0.0000017911,0.0000017882, -0.0000017840,0.0000017785,0.0000017726,0.0000017666,0.0000017620, -0.0000017578,0.0000017550,0.0000017533,0.0000017524,0.0000017521, -0.0000017537,0.0000017563,0.0000017590,0.0000017611,0.0000017625, -0.0000017628,0.0000017609,0.0000017579,0.0000017560,0.0000017560, -0.0000017560,0.0000017555,0.0000017545,0.0000017524,0.0000017495, -0.0000017453,0.0000017423,0.0000017425,0.0000017454,0.0000017478, -0.0000017479,0.0000017466,0.0000017435,0.0000017392,0.0000017335, -0.0000017313,0.0000017284,0.0000017321,0.0000017452,0.0000017662, -0.0000017932,0.0000018231,0.0000018488,0.0000018660,0.0000018753, -0.0000018802,0.0000018846,0.0000018898,0.0000018950,0.0000018970, -0.0000018937,0.0000018850,0.0000018730,0.0000018618,0.0000018558, -0.0000018566,0.0000018607,0.0000018688,0.0000018781,0.0000018862, -0.0000018895,0.0000018897,0.0000018850,0.0000018781,0.0000018713, -0.0000018674,0.0000018643,0.0000018628,0.0000018615,0.0000018592, -0.0000018578,0.0000018571,0.0000018568,0.0000018575,0.0000018601, -0.0000018638,0.0000018676,0.0000018704,0.0000018706,0.0000018686, -0.0000018659,0.0000018634,0.0000018617,0.0000018613,0.0000018619, -0.0000018633,0.0000018649,0.0000018659,0.0000018661,0.0000018657, -0.0000018644,0.0000018633,0.0000018637,0.0000018663,0.0000018712, -0.0000018771,0.0000018803,0.0000018787,0.0000018725,0.0000018645, -0.0000018585,0.0000018561,0.0000018559,0.0000018563,0.0000018565, -0.0000018561,0.0000018547,0.0000018521,0.0000018498,0.0000018485, -0.0000018484,0.0000018483,0.0000018482,0.0000018482,0.0000018486, -0.0000018482,0.0000018462,0.0000018433,0.0000018409,0.0000018399, -0.0000018392,0.0000018368,0.0000018339,0.0000018326,0.0000018330, -0.0000018346,0.0000018356,0.0000018340,0.0000018291,0.0000018246, -0.0000018229,0.0000018215,0.0000018198,0.0000018196,0.0000018208, -0.0000018197,0.0000018150,0.0000018114,0.0000018119,0.0000018128, -0.0000018108,0.0000018056,0.0000018012,0.0000017990,0.0000017993, -0.0000018017,0.0000018058,0.0000018101,0.0000018104,0.0000018052, -0.0000017998,0.0000017990,0.0000017991,0.0000017971,0.0000017928, -0.0000017896,0.0000017878,0.0000017878,0.0000017899,0.0000017945, -0.0000017996,0.0000018046,0.0000018092,0.0000018135,0.0000018155, -0.0000018179,0.0000018193,0.0000018199,0.0000018199,0.0000018203, -0.0000018222,0.0000018251,0.0000018278,0.0000018293,0.0000018303, -0.0000018330,0.0000018358,0.0000018390,0.0000018414,0.0000018426, -0.0000018433,0.0000018436,0.0000018433,0.0000018414,0.0000018398, -0.0000018377,0.0000018343,0.0000018299,0.0000018264,0.0000018242, -0.0000018211,0.0000018161,0.0000018102,0.0000018048,0.0000018017, -0.0000018011,0.0000018017,0.0000018012,0.0000017978,0.0000017918, -0.0000017842,0.0000017760,0.0000017682,0.0000017617,0.0000017560, -0.0000017491,0.0000017411,0.0000017333,0.0000017265,0.0000017216, -0.0000017195,0.0000017201,0.0000017221,0.0000017246,0.0000017274, -0.0000017299,0.0000017320,0.0000017338,0.0000017345,0.0000017350, -0.0000017349,0.0000017341,0.0000017329,0.0000017314,0.0000017316, -0.0000017321,0.0000017353,0.0000017408,0.0000017469,0.0000017500, -0.0000017497,0.0000017484,0.0000017473,0.0000017441,0.0000017391, -0.0000017345,0.0000017341,0.0000017374,0.0000017400,0.0000017415, -0.0000017435,0.0000017454,0.0000017463,0.0000017459,0.0000017448, -0.0000017449,0.0000017454,0.0000017444,0.0000017413,0.0000017373, -0.0000017336,0.0000017306,0.0000017287,0.0000017284,0.0000017309, -0.0000017346,0.0000017388,0.0000017440,0.0000017512,0.0000017586, -0.0000017646,0.0000017694,0.0000017724,0.0000017736,0.0000017733, -0.0000017716,0.0000017674,0.0000017660,0.0000017709,0.0000017741, -0.0000017741,0.0000017693,0.0000017640,0.0000017655,0.0000017746, -0.0000017782,0.0000017769,0.0000017713,0.0000017647,0.0000017584, -0.0000017468,0.0000017362,0.0000017388,0.0000017583,0.0000017794, -0.0000017796,0.0000017756,0.0000017690,0.0000017633,0.0000017705, -0.0000017825,0.0000017853,0.0000017868,0.0000017945,0.0000018083, -0.0000018092,0.0000017933,0.0000017818,0.0000017798,0.0000017840, -0.0000017916,0.0000017816,0.0000017726,0.0000017790,0.0000017819, -0.0000017839,0.0000017788,0.0000017665,0.0000017581,0.0000017530, -0.0000017516,0.0000017546,0.0000017557,0.0000017552,0.0000017543, -0.0000017528,0.0000017515,0.0000017544,0.0000017659,0.0000017753, -0.0000017700,0.0000017539,0.0000017418,0.0000017435,0.0000017590, -0.0000017744,0.0000017795,0.0000017782,0.0000017746,0.0000017709, -0.0000017677,0.0000017655,0.0000017638,0.0000017590,0.0000017492, -0.0000017413,0.0000017421,0.0000017486,0.0000017553,0.0000017619, -0.0000017676,0.0000017688,0.0000017651,0.0000017610,0.0000017602, -0.0000017621,0.0000017642,0.0000017644,0.0000017629,0.0000017612, -0.0000017613,0.0000017626,0.0000017626,0.0000017610,0.0000017599, -0.0000017605,0.0000017615,0.0000017623,0.0000017638,0.0000017650, -0.0000017664,0.0000017706,0.0000017725,0.0000017675,0.0000017630, -0.0000017649,0.0000017643,0.0000017568,0.0000017494,0.0000017476, -0.0000017527,0.0000017672,0.0000017817,0.0000017879,0.0000017879, -0.0000017883,0.0000017929,0.0000018027,0.0000018141,0.0000018235, -0.0000018296,0.0000018340,0.0000018384,0.0000018424,0.0000018471, -0.0000018535,0.0000018589,0.0000018605,0.0000018573,0.0000018511, -0.0000018325,0.0000018305,0.0000018303,0.0000018308,0.0000018303, -0.0000018287,0.0000018263,0.0000018234,0.0000018208,0.0000018188, -0.0000018183,0.0000018208,0.0000018297,0.0000018423,0.0000018515, -0.0000018552,0.0000018570,0.0000018574,0.0000018565,0.0000018552, -0.0000018534,0.0000018520,0.0000018527,0.0000018548,0.0000018551, -0.0000018510,0.0000018440,0.0000018407,0.0000018436,0.0000018524, -0.0000018591,0.0000018581,0.0000018529,0.0000018512,0.0000018596, -0.0000018709,0.0000018721,0.0000018687,0.0000018590,0.0000018529, -0.0000018550,0.0000018601,0.0000018615,0.0000018601,0.0000018583, -0.0000018576,0.0000018582,0.0000018600,0.0000018627,0.0000018658, -0.0000018690,0.0000018725,0.0000018753,0.0000018792,0.0000018834, -0.0000018881,0.0000018919,0.0000018952,0.0000018979,0.0000019003, -0.0000019020,0.0000019005,0.0000018966,0.0000018922,0.0000018896, -0.0000018893,0.0000018902,0.0000018920,0.0000018945,0.0000018959, -0.0000018954,0.0000018954,0.0000018915,0.0000018906,0.0000018879, -0.0000018831,0.0000018767,0.0000018690,0.0000018632,0.0000018612, -0.0000018602,0.0000018560,0.0000018466,0.0000018381,0.0000018335, -0.0000018318,0.0000018312,0.0000018293,0.0000018257,0.0000018224, -0.0000018207,0.0000018207,0.0000018217,0.0000018235,0.0000018251, -0.0000018266,0.0000018281,0.0000018292,0.0000018297,0.0000018301, -0.0000018307,0.0000018310,0.0000018306,0.0000018304,0.0000018314, -0.0000018331,0.0000018351,0.0000018367,0.0000018372,0.0000018365, -0.0000018352,0.0000018337,0.0000018331,0.0000018336,0.0000018349, -0.0000018360,0.0000018376,0.0000018411,0.0000018471,0.0000018545, -0.0000018612,0.0000018663,0.0000018704,0.0000018736,0.0000018761, -0.0000018782,0.0000018803,0.0000018827,0.0000018847,0.0000018860, -0.0000018866,0.0000018865,0.0000018854,0.0000018833,0.0000018801, -0.0000018761,0.0000018715,0.0000018663,0.0000018605,0.0000018542, -0.0000018477,0.0000018412,0.0000018349,0.0000018290,0.0000018241, -0.0000018204,0.0000018175,0.0000018150,0.0000018133,0.0000018125, -0.0000018115,0.0000018103,0.0000018097,0.0000018097,0.0000018106, -0.0000018117,0.0000018127,0.0000018135,0.0000018148,0.0000018161, -0.0000018170,0.0000018179,0.0000018187,0.0000018195,0.0000018195, -0.0000018190,0.0000018186,0.0000018173,0.0000018172,0.0000018173, -0.0000018178,0.0000018189,0.0000018207,0.0000018223,0.0000018238, -0.0000018254,0.0000018266,0.0000018281,0.0000018299,0.0000018318, -0.0000018336,0.0000018355,0.0000018378,0.0000018403,0.0000018417, -0.0000018426,0.0000018434,0.0000018439,0.0000018436,0.0000018427, -0.0000018427,0.0000018431,0.0000018437,0.0000018449,0.0000018466, -0.0000018484,0.0000018501,0.0000018519,0.0000018534,0.0000018543, -0.0000018546,0.0000018546,0.0000018546,0.0000018540,0.0000018530, -0.0000018519,0.0000018505,0.0000018484,0.0000018460,0.0000018437, -0.0000018418,0.0000018408,0.0000018411,0.0000018428,0.0000018453, -0.0000018482,0.0000018518,0.0000018560,0.0000018604,0.0000018644, -0.0000018681,0.0000018715,0.0000018743,0.0000018758,0.0000018761, -0.0000018769,0.0000018783,0.0000018795,0.0000018804,0.0000018812, -0.0000018821,0.0000018829,0.0000018835,0.0000018836,0.0000018832, -0.0000018828,0.0000018822,0.0000018813,0.0000018802,0.0000018792, -0.0000018786,0.0000018788,0.0000018795,0.0000018809,0.0000018833, -0.0000018859,0.0000018882,0.0000018904,0.0000018924,0.0000018935, -0.0000018941,0.0000018942,0.0000018942,0.0000018934,0.0000018918, -0.0000018893,0.0000018862,0.0000018829,0.0000018796,0.0000018765, -0.0000018738,0.0000018718,0.0000018707,0.0000018706,0.0000018721, -0.0000018754,0.0000018799,0.0000018842,0.0000018877,0.0000018907, -0.0000018940,0.0000018977,0.0000019012,0.0000019033,0.0000019028, -0.0000018987,0.0000018904,0.0000018806,0.0000018728,0.0000018678, -0.0000018639,0.0000018584,0.0000018508,0.0000018422,0.0000018354, -0.0000018317,0.0000018305,0.0000018317,0.0000018349,0.0000018363, -0.0000018353,0.0000018295,0.0000018214,0.0000018150,0.0000018111, -0.0000018082,0.0000018069,0.0000018078,0.0000018086,0.0000018108, -0.0000018128,0.0000018136,0.0000018137,0.0000018137,0.0000018129, -0.0000018128,0.0000018123,0.0000018118,0.0000018111,0.0000018115, -0.0000018126,0.0000018135,0.0000018145,0.0000018161,0.0000018185, -0.0000018211,0.0000018239,0.0000018271,0.0000018300,0.0000018324, -0.0000018344,0.0000018363,0.0000018381,0.0000018399,0.0000018413, -0.0000018419,0.0000018426,0.0000018431,0.0000018433,0.0000018431, -0.0000018425,0.0000018422,0.0000018422,0.0000018425,0.0000018420, -0.0000018413,0.0000018404,0.0000018392,0.0000018381,0.0000018372, -0.0000018365,0.0000018360,0.0000018361,0.0000018371,0.0000018397, -0.0000018436,0.0000018474,0.0000018491,0.0000018483,0.0000018453, -0.0000018413,0.0000018381,0.0000018366,0.0000018365,0.0000018368, -0.0000018370,0.0000018379,0.0000018411,0.0000018460,0.0000018502, -0.0000018512,0.0000018487,0.0000018427,0.0000018359,0.0000018306, -0.0000018282,0.0000018283,0.0000018293,0.0000018302,0.0000018304, -0.0000018305,0.0000018309,0.0000018318,0.0000018328,0.0000018341, -0.0000018353,0.0000018364,0.0000018377,0.0000018397,0.0000018420, -0.0000018441,0.0000018460,0.0000018476,0.0000018482,0.0000018480, -0.0000018477,0.0000018475,0.0000018479,0.0000018489,0.0000018502, -0.0000018507,0.0000018505,0.0000018497,0.0000018481,0.0000018455, -0.0000018425,0.0000018400,0.0000018387,0.0000018386,0.0000018389, -0.0000018388,0.0000018381,0.0000018373,0.0000018371,0.0000018371, -0.0000018368,0.0000018360,0.0000018356,0.0000018361,0.0000018362, -0.0000018349,0.0000018330,0.0000018308,0.0000018282,0.0000018272, -0.0000018273,0.0000018303,0.0000018340,0.0000018386,0.0000018450, -0.0000018515,0.0000018566,0.0000018613,0.0000018655,0.0000018682, -0.0000018697,0.0000018711,0.0000018716,0.0000018712,0.0000018709, -0.0000018709,0.0000018705,0.0000018691,0.0000018662,0.0000018615, -0.0000018554,0.0000018496,0.0000018455,0.0000018440,0.0000018439, -0.0000018464,0.0000018501,0.0000018534,0.0000018556,0.0000018557, -0.0000018536,0.0000018513,0.0000018504,0.0000018507,0.0000018510, -0.0000018507,0.0000018502,0.0000018497,0.0000018504,0.0000018515, -0.0000018533,0.0000018569,0.0000018616,0.0000018670,0.0000018723, -0.0000018769,0.0000018805,0.0000018834,0.0000018856,0.0000018871, -0.0000018885,0.0000018899,0.0000018907,0.0000018906,0.0000018897, -0.0000018881,0.0000018854,0.0000018829,0.0000018809,0.0000018790, -0.0000018776,0.0000018764,0.0000018748,0.0000018732,0.0000018723, -0.0000018725,0.0000018734,0.0000018752,0.0000018781,0.0000018809, -0.0000018826,0.0000018841,0.0000018852,0.0000018854,0.0000018848, -0.0000018833,0.0000018814,0.0000018789,0.0000018750,0.0000018700, -0.0000018642,0.0000018579,0.0000018521,0.0000018479,0.0000018447, -0.0000018423,0.0000018413,0.0000018413,0.0000018420,0.0000018466, -0.0000018564,0.0000018704,0.0000018858,0.0000018984,0.0000019040, -0.0000019049,0.0000019030,0.0000018998,0.0000018978,0.0000018969, -0.0000018954,0.0000018918,0.0000018858,0.0000018783,0.0000018708, -0.0000018645,0.0000018600,0.0000018591,0.0000018584,0.0000018585, -0.0000018587,0.0000018590,0.0000018591,0.0000018591,0.0000018587, -0.0000018581,0.0000018575,0.0000018573,0.0000018575,0.0000018576, -0.0000018577,0.0000018582,0.0000018591,0.0000018606,0.0000018628, -0.0000018652,0.0000018675,0.0000018694,0.0000018706,0.0000018712, -0.0000018709,0.0000018693,0.0000018659,0.0000018614,0.0000018572, -0.0000018537,0.0000018505,0.0000018481,0.0000018467,0.0000018466, -0.0000018470,0.0000018476,0.0000018485,0.0000018499,0.0000018517, -0.0000018535,0.0000018548,0.0000018558,0.0000018568,0.0000018584, -0.0000018599,0.0000018610,0.0000018628,0.0000018641,0.0000018652, -0.0000018661,0.0000018681,0.0000018704,0.0000018724,0.0000018745, -0.0000018763,0.0000018773,0.0000018777,0.0000018772,0.0000018759, -0.0000018740,0.0000018726,0.0000018727,0.0000018730,0.0000018725, -0.0000018717,0.0000018703,0.0000018687,0.0000018672,0.0000018657, -0.0000018651,0.0000018654,0.0000018661,0.0000018678,0.0000018699, -0.0000018724,0.0000018745,0.0000018755,0.0000018754,0.0000018752, -0.0000018755,0.0000018763,0.0000018777,0.0000018790,0.0000018805, -0.0000018816,0.0000018830,0.0000018846,0.0000018851,0.0000018841, -0.0000018825,0.0000018798,0.0000018770,0.0000018753,0.0000018746, -0.0000018743,0.0000018738,0.0000018729,0.0000018729,0.0000018738, -0.0000018747,0.0000018752,0.0000018748,0.0000018742,0.0000018741, -0.0000018745,0.0000018770,0.0000018811,0.0000018852,0.0000018875, -0.0000018885,0.0000018887,0.0000018898,0.0000018916,0.0000018938, -0.0000018948,0.0000018939,0.0000018902,0.0000018830,0.0000018736, -0.0000018626,0.0000018514,0.0000018403,0.0000018313,0.0000018246, -0.0000018181,0.0000018117,0.0000018076,0.0000018051,0.0000018035, -0.0000018014,0.0000017975,0.0000017922,0.0000017866,0.0000017825, -0.0000017830,0.0000017862,0.0000017896,0.0000017886,0.0000017848, -0.0000017801,0.0000017760,0.0000017729,0.0000017707,0.0000017683, -0.0000017679,0.0000017701,0.0000017743,0.0000017810,0.0000017881, -0.0000017940,0.0000017988,0.0000018026,0.0000018058,0.0000018086, -0.0000018110,0.0000018119,0.0000018108,0.0000018082,0.0000018037, -0.0000017995,0.0000017968,0.0000017954,0.0000017951,0.0000017941, -0.0000017928,0.0000017908,0.0000017878,0.0000017846,0.0000017820, -0.0000017789,0.0000017772,0.0000017761,0.0000017770,0.0000017790, -0.0000017811,0.0000017834,0.0000017862,0.0000017886,0.0000017908, -0.0000017923,0.0000017938,0.0000017961,0.0000017987,0.0000018009, -0.0000018018,0.0000018011,0.0000017998,0.0000017969,0.0000017924, -0.0000017870,0.0000017811,0.0000017760,0.0000017718,0.0000017688, -0.0000017663,0.0000017647,0.0000017637,0.0000017630,0.0000017641, -0.0000017659,0.0000017677,0.0000017692,0.0000017696,0.0000017684, -0.0000017651,0.0000017622,0.0000017623,0.0000017635,0.0000017649, -0.0000017654,0.0000017652,0.0000017625,0.0000017566,0.0000017513, -0.0000017499,0.0000017524,0.0000017552,0.0000017551,0.0000017518, -0.0000017468,0.0000017420,0.0000017376,0.0000017335,0.0000017278, -0.0000017264,0.0000017263,0.0000017327,0.0000017491,0.0000017750, -0.0000018067,0.0000018374,0.0000018605,0.0000018732,0.0000018788, -0.0000018822,0.0000018868,0.0000018929,0.0000018965,0.0000018966, -0.0000018902,0.0000018797,0.0000018695,0.0000018615,0.0000018601, -0.0000018618,0.0000018687,0.0000018769,0.0000018837,0.0000018879, -0.0000018876,0.0000018840,0.0000018781,0.0000018715,0.0000018652, -0.0000018610,0.0000018575,0.0000018554,0.0000018555,0.0000018569, -0.0000018588,0.0000018623,0.0000018666,0.0000018708,0.0000018740, -0.0000018757,0.0000018759,0.0000018752,0.0000018740,0.0000018731, -0.0000018729,0.0000018735,0.0000018747,0.0000018757,0.0000018761, -0.0000018753,0.0000018732,0.0000018700,0.0000018669,0.0000018654, -0.0000018661,0.0000018689,0.0000018724,0.0000018738,0.0000018717, -0.0000018656,0.0000018579,0.0000018525,0.0000018511,0.0000018522, -0.0000018539,0.0000018545,0.0000018541,0.0000018525,0.0000018500, -0.0000018477,0.0000018466,0.0000018467,0.0000018471,0.0000018471, -0.0000018471,0.0000018469,0.0000018463,0.0000018443,0.0000018413, -0.0000018376,0.0000018348,0.0000018342,0.0000018336,0.0000018313, -0.0000018284,0.0000018270,0.0000018275,0.0000018294,0.0000018303, -0.0000018286,0.0000018241,0.0000018207,0.0000018193,0.0000018178, -0.0000018163,0.0000018166,0.0000018171,0.0000018142,0.0000018097, -0.0000018085,0.0000018104,0.0000018105,0.0000018070,0.0000018023, -0.0000017991,0.0000017980,0.0000017994,0.0000018031,0.0000018087, -0.0000018131,0.0000018119,0.0000018061,0.0000018020,0.0000018019, -0.0000018016,0.0000017972,0.0000017910,0.0000017868,0.0000017860, -0.0000017885,0.0000017940,0.0000017991,0.0000018021,0.0000018049, -0.0000018083,0.0000018119,0.0000018161,0.0000018203,0.0000018227, -0.0000018235,0.0000018243,0.0000018266,0.0000018306,0.0000018345, -0.0000018366,0.0000018372,0.0000018381,0.0000018395,0.0000018409, -0.0000018415,0.0000018410,0.0000018405,0.0000018393,0.0000018388, -0.0000018385,0.0000018385,0.0000018385,0.0000018373,0.0000018368, -0.0000018375,0.0000018392,0.0000018388,0.0000018353,0.0000018300, -0.0000018244,0.0000018195,0.0000018155,0.0000018125,0.0000018092, -0.0000018044,0.0000017981,0.0000017915,0.0000017854,0.0000017801, -0.0000017759,0.0000017715,0.0000017656,0.0000017585,0.0000017500, -0.0000017411,0.0000017340,0.0000017297,0.0000017276,0.0000017265, -0.0000017268,0.0000017280,0.0000017287,0.0000017310,0.0000017334, -0.0000017363,0.0000017384,0.0000017392,0.0000017391,0.0000017386, -0.0000017370,0.0000017350,0.0000017327,0.0000017321,0.0000017327, -0.0000017363,0.0000017394,0.0000017402,0.0000017405,0.0000017413, -0.0000017411,0.0000017376,0.0000017329,0.0000017306,0.0000017319, -0.0000017348,0.0000017372,0.0000017396,0.0000017406,0.0000017400, -0.0000017385,0.0000017368,0.0000017363,0.0000017359,0.0000017352, -0.0000017346,0.0000017331,0.0000017344,0.0000017363,0.0000017390, -0.0000017427,0.0000017466,0.0000017496,0.0000017514,0.0000017536, -0.0000017571,0.0000017613,0.0000017660,0.0000017692,0.0000017711, -0.0000017728,0.0000017738,0.0000017727,0.0000017679,0.0000017658, -0.0000017686,0.0000017711,0.0000017706,0.0000017657,0.0000017601, -0.0000017601,0.0000017697,0.0000017762,0.0000017761,0.0000017733, -0.0000017693,0.0000017638,0.0000017552,0.0000017424,0.0000017370, -0.0000017452,0.0000017672,0.0000017791,0.0000017768,0.0000017726, -0.0000017651,0.0000017667,0.0000017801,0.0000017867,0.0000017874, -0.0000017961,0.0000018136,0.0000018165,0.0000017982,0.0000017835, -0.0000017810,0.0000017844,0.0000017922,0.0000017836,0.0000017733, -0.0000017791,0.0000017807,0.0000017813,0.0000017769,0.0000017663, -0.0000017585,0.0000017533,0.0000017519,0.0000017551,0.0000017562, -0.0000017559,0.0000017557,0.0000017546,0.0000017522,0.0000017516, -0.0000017584,0.0000017702,0.0000017737,0.0000017617,0.0000017452, -0.0000017411,0.0000017518,0.0000017688,0.0000017779,0.0000017782, -0.0000017750,0.0000017704,0.0000017663,0.0000017639,0.0000017630, -0.0000017602,0.0000017512,0.0000017415,0.0000017395,0.0000017447, -0.0000017518,0.0000017588,0.0000017657,0.0000017684,0.0000017654, -0.0000017606,0.0000017586,0.0000017591,0.0000017608,0.0000017624, -0.0000017619,0.0000017603,0.0000017594,0.0000017588,0.0000017581, -0.0000017583,0.0000017595,0.0000017608,0.0000017624,0.0000017647, -0.0000017659,0.0000017682,0.0000017728,0.0000017723,0.0000017662, -0.0000017640,0.0000017637,0.0000017571,0.0000017492,0.0000017468, -0.0000017527,0.0000017690,0.0000017833,0.0000017874,0.0000017881, -0.0000017925,0.0000018008,0.0000018103,0.0000018188,0.0000018251, -0.0000018301,0.0000018337,0.0000018363,0.0000018391,0.0000018429, -0.0000018485,0.0000018528,0.0000018525,0.0000018489,0.0000018431, -0.0000018370,0.0000018294,0.0000018316,0.0000018344,0.0000018365, -0.0000018371,0.0000018362,0.0000018343,0.0000018315,0.0000018278, -0.0000018233,0.0000018197,0.0000018193,0.0000018248,0.0000018379, -0.0000018494,0.0000018557,0.0000018593,0.0000018603,0.0000018594, -0.0000018579,0.0000018560,0.0000018546,0.0000018552,0.0000018568, -0.0000018564,0.0000018515,0.0000018450,0.0000018431,0.0000018475, -0.0000018560,0.0000018597,0.0000018567,0.0000018518,0.0000018537, -0.0000018653,0.0000018728,0.0000018715,0.0000018631,0.0000018530, -0.0000018533,0.0000018583,0.0000018587,0.0000018551,0.0000018531, -0.0000018536,0.0000018559,0.0000018580,0.0000018614,0.0000018655, -0.0000018691,0.0000018718,0.0000018742,0.0000018764,0.0000018798, -0.0000018833,0.0000018872,0.0000018907,0.0000018943,0.0000018974, -0.0000018999,0.0000019022,0.0000019031,0.0000019024,0.0000018999, -0.0000018959,0.0000018919,0.0000018892,0.0000018876,0.0000018861, -0.0000018866,0.0000018869,0.0000018876,0.0000018876,0.0000018887, -0.0000018894,0.0000018883,0.0000018846,0.0000018769,0.0000018676, -0.0000018616,0.0000018597,0.0000018581,0.0000018513,0.0000018426, -0.0000018368,0.0000018344,0.0000018347,0.0000018352,0.0000018339, -0.0000018314,0.0000018288,0.0000018272,0.0000018275,0.0000018282, -0.0000018288,0.0000018298,0.0000018312,0.0000018326,0.0000018344, -0.0000018363,0.0000018381,0.0000018390,0.0000018396,0.0000018404, -0.0000018411,0.0000018413,0.0000018408,0.0000018403,0.0000018401, -0.0000018403,0.0000018407,0.0000018409,0.0000018409,0.0000018412, -0.0000018441,0.0000018509,0.0000018601,0.0000018693,0.0000018773, -0.0000018840,0.0000018893,0.0000018939,0.0000018981,0.0000019020, -0.0000019055,0.0000019087,0.0000019115,0.0000019140,0.0000019159, -0.0000019172,0.0000019178,0.0000019178,0.0000019174,0.0000019164, -0.0000019148,0.0000019127,0.0000019104,0.0000019075,0.0000019039, -0.0000018996,0.0000018950,0.0000018899,0.0000018842,0.0000018783, -0.0000018726,0.0000018669,0.0000018609,0.0000018547,0.0000018489, -0.0000018436,0.0000018384,0.0000018335,0.0000018291,0.0000018259, -0.0000018239,0.0000018219,0.0000018210,0.0000018201,0.0000018196, -0.0000018188,0.0000018181,0.0000018181,0.0000018180,0.0000018175, -0.0000018161,0.0000018136,0.0000018117,0.0000018094,0.0000018077, -0.0000018062,0.0000018052,0.0000018052,0.0000018055,0.0000018057, -0.0000018063,0.0000018066,0.0000018072,0.0000018078,0.0000018094, -0.0000018113,0.0000018136,0.0000018167,0.0000018200,0.0000018226, -0.0000018251,0.0000018278,0.0000018303,0.0000018326,0.0000018342, -0.0000018351,0.0000018365,0.0000018384,0.0000018401,0.0000018420, -0.0000018440,0.0000018458,0.0000018477,0.0000018497,0.0000018513, -0.0000018523,0.0000018527,0.0000018527,0.0000018528,0.0000018524, -0.0000018514,0.0000018499,0.0000018480,0.0000018457,0.0000018428, -0.0000018398,0.0000018369,0.0000018342,0.0000018323,0.0000018316, -0.0000018319,0.0000018330,0.0000018352,0.0000018379,0.0000018406, -0.0000018429,0.0000018450,0.0000018470,0.0000018488,0.0000018506, -0.0000018529,0.0000018557,0.0000018593,0.0000018638,0.0000018691, -0.0000018745,0.0000018795,0.0000018830,0.0000018847,0.0000018857, -0.0000018865,0.0000018869,0.0000018870,0.0000018869,0.0000018864, -0.0000018857,0.0000018849,0.0000018845,0.0000018847,0.0000018855, -0.0000018865,0.0000018877,0.0000018892,0.0000018907,0.0000018918, -0.0000018925,0.0000018927,0.0000018929,0.0000018930,0.0000018928, -0.0000018918,0.0000018903,0.0000018883,0.0000018862,0.0000018841, -0.0000018815,0.0000018784,0.0000018750,0.0000018721,0.0000018706, -0.0000018703,0.0000018718,0.0000018751,0.0000018796,0.0000018845, -0.0000018889,0.0000018920,0.0000018939,0.0000018956,0.0000018980, -0.0000019005,0.0000019016,0.0000019003,0.0000018954,0.0000018872, -0.0000018792,0.0000018740,0.0000018718,0.0000018698,0.0000018658, -0.0000018590,0.0000018507,0.0000018434,0.0000018385,0.0000018365, -0.0000018364,0.0000018388,0.0000018414,0.0000018415,0.0000018396, -0.0000018329,0.0000018246,0.0000018184,0.0000018140,0.0000018105, -0.0000018090,0.0000018085,0.0000018100,0.0000018093,0.0000018102, -0.0000018107,0.0000018108,0.0000018113,0.0000018116,0.0000018128, -0.0000018138,0.0000018145,0.0000018153,0.0000018165,0.0000018179, -0.0000018200,0.0000018217,0.0000018237,0.0000018262,0.0000018287, -0.0000018309,0.0000018330,0.0000018351,0.0000018370,0.0000018387, -0.0000018399,0.0000018408,0.0000018414,0.0000018415,0.0000018410, -0.0000018400,0.0000018391,0.0000018382,0.0000018371,0.0000018358, -0.0000018347,0.0000018339,0.0000018333,0.0000018331,0.0000018335, -0.0000018345,0.0000018360,0.0000018389,0.0000018434,0.0000018484, -0.0000018518,0.0000018524,0.0000018506,0.0000018476,0.0000018447, -0.0000018432,0.0000018431,0.0000018433,0.0000018430,0.0000018429, -0.0000018445,0.0000018476,0.0000018502,0.0000018502,0.0000018465, -0.0000018397,0.0000018325,0.0000018271,0.0000018249,0.0000018250, -0.0000018261,0.0000018272,0.0000018282,0.0000018289,0.0000018298, -0.0000018308,0.0000018322,0.0000018339,0.0000018358,0.0000018377, -0.0000018398,0.0000018422,0.0000018445,0.0000018467,0.0000018486, -0.0000018501,0.0000018511,0.0000018514,0.0000018510,0.0000018497, -0.0000018481,0.0000018464,0.0000018448,0.0000018439,0.0000018436, -0.0000018431,0.0000018422,0.0000018408,0.0000018388,0.0000018354, -0.0000018315,0.0000018284,0.0000018271,0.0000018274,0.0000018284, -0.0000018289,0.0000018285,0.0000018280,0.0000018281,0.0000018285, -0.0000018292,0.0000018300,0.0000018312,0.0000018325,0.0000018327, -0.0000018321,0.0000018308,0.0000018305,0.0000018305,0.0000018324, -0.0000018367,0.0000018414,0.0000018454,0.0000018502,0.0000018558, -0.0000018605,0.0000018648,0.0000018690,0.0000018722,0.0000018742, -0.0000018756,0.0000018766,0.0000018768,0.0000018763,0.0000018762, -0.0000018767,0.0000018765,0.0000018750,0.0000018720,0.0000018671, -0.0000018608,0.0000018538,0.0000018470,0.0000018422,0.0000018395, -0.0000018395,0.0000018427,0.0000018476,0.0000018525,0.0000018544, -0.0000018532,0.0000018512,0.0000018500,0.0000018501,0.0000018505, -0.0000018504,0.0000018499,0.0000018496,0.0000018494,0.0000018496, -0.0000018507,0.0000018534,0.0000018568,0.0000018609,0.0000018651, -0.0000018690,0.0000018726,0.0000018756,0.0000018775,0.0000018790, -0.0000018808,0.0000018826,0.0000018837,0.0000018839,0.0000018834, -0.0000018822,0.0000018808,0.0000018796,0.0000018781,0.0000018766, -0.0000018751,0.0000018736,0.0000018725,0.0000018720,0.0000018724, -0.0000018735,0.0000018750,0.0000018771,0.0000018797,0.0000018822, -0.0000018847,0.0000018871,0.0000018887,0.0000018892,0.0000018891, -0.0000018879,0.0000018866,0.0000018849,0.0000018826,0.0000018795, -0.0000018749,0.0000018691,0.0000018633,0.0000018580,0.0000018530, -0.0000018482,0.0000018445,0.0000018417,0.0000018392,0.0000018373, -0.0000018379,0.0000018437,0.0000018564,0.0000018741,0.0000018917, -0.0000019026,0.0000019056,0.0000019051,0.0000019028,0.0000019006, -0.0000018988,0.0000018973,0.0000018955,0.0000018926,0.0000018881, -0.0000018824,0.0000018766,0.0000018718,0.0000018679,0.0000018649, -0.0000018627,0.0000018608,0.0000018588,0.0000018578,0.0000018572, -0.0000018562,0.0000018552,0.0000018542,0.0000018536,0.0000018529, -0.0000018522,0.0000018521,0.0000018528,0.0000018548,0.0000018578, -0.0000018607,0.0000018637,0.0000018672,0.0000018704,0.0000018729, -0.0000018746,0.0000018748,0.0000018729,0.0000018694,0.0000018652, -0.0000018611,0.0000018573,0.0000018538,0.0000018509,0.0000018490, -0.0000018477,0.0000018478,0.0000018484,0.0000018501,0.0000018521, -0.0000018538,0.0000018550,0.0000018555,0.0000018558,0.0000018558, -0.0000018554,0.0000018548,0.0000018555,0.0000018564,0.0000018573, -0.0000018591,0.0000018620,0.0000018651,0.0000018684,0.0000018723, -0.0000018759,0.0000018785,0.0000018810,0.0000018825,0.0000018828, -0.0000018828,0.0000018829,0.0000018840,0.0000018846,0.0000018847, -0.0000018847,0.0000018840,0.0000018825,0.0000018801,0.0000018777, -0.0000018760,0.0000018746,0.0000018739,0.0000018743,0.0000018754, -0.0000018766,0.0000018775,0.0000018775,0.0000018768,0.0000018765, -0.0000018773,0.0000018785,0.0000018797,0.0000018812,0.0000018827, -0.0000018847,0.0000018877,0.0000018914,0.0000018944,0.0000018961, -0.0000018959,0.0000018940,0.0000018911,0.0000018886,0.0000018864, -0.0000018841,0.0000018813,0.0000018790,0.0000018782,0.0000018787, -0.0000018800,0.0000018808,0.0000018803,0.0000018787,0.0000018768, -0.0000018774,0.0000018782,0.0000018812,0.0000018852,0.0000018878, -0.0000018894,0.0000018909,0.0000018928,0.0000018954,0.0000018977, -0.0000019006,0.0000019022,0.0000019008,0.0000018968,0.0000018904, -0.0000018817,0.0000018712,0.0000018609,0.0000018523,0.0000018442, -0.0000018360,0.0000018295,0.0000018236,0.0000018191,0.0000018149, -0.0000018094,0.0000018024,0.0000017947,0.0000017882,0.0000017857, -0.0000017884,0.0000017932,0.0000017949,0.0000017926,0.0000017873, -0.0000017814,0.0000017773,0.0000017740,0.0000017707,0.0000017690, -0.0000017705,0.0000017736,0.0000017789,0.0000017862,0.0000017926, -0.0000017973,0.0000018006,0.0000018037,0.0000018069,0.0000018104, -0.0000018129,0.0000018142,0.0000018133,0.0000018094,0.0000018041, -0.0000017991,0.0000017965,0.0000017967,0.0000017968,0.0000017969, -0.0000017959,0.0000017934,0.0000017903,0.0000017871,0.0000017835, -0.0000017811,0.0000017800,0.0000017812,0.0000017834,0.0000017845, -0.0000017846,0.0000017848,0.0000017858,0.0000017873,0.0000017886, -0.0000017904,0.0000017938,0.0000017982,0.0000018024,0.0000018049, -0.0000018063,0.0000018074,0.0000018063,0.0000018031,0.0000017987, -0.0000017934,0.0000017892,0.0000017859,0.0000017830,0.0000017805, -0.0000017789,0.0000017775,0.0000017764,0.0000017760,0.0000017772, -0.0000017788,0.0000017806,0.0000017816,0.0000017807,0.0000017773, -0.0000017735,0.0000017724,0.0000017732,0.0000017753,0.0000017774, -0.0000017779,0.0000017757,0.0000017695,0.0000017632,0.0000017588, -0.0000017583,0.0000017601,0.0000017610,0.0000017584,0.0000017523, -0.0000017460,0.0000017413,0.0000017382,0.0000017341,0.0000017292, -0.0000017240,0.0000017221,0.0000017253,0.0000017363,0.0000017590, -0.0000017911,0.0000018252,0.0000018528,0.0000018694,0.0000018765, -0.0000018794,0.0000018837,0.0000018907,0.0000018967,0.0000018978, -0.0000018943,0.0000018867,0.0000018769,0.0000018680,0.0000018642, -0.0000018656,0.0000018691,0.0000018741,0.0000018791,0.0000018833, -0.0000018840,0.0000018827,0.0000018784,0.0000018719,0.0000018647, -0.0000018580,0.0000018544,0.0000018532,0.0000018545,0.0000018578, -0.0000018628,0.0000018683,0.0000018727,0.0000018756,0.0000018764, -0.0000018763,0.0000018755,0.0000018752,0.0000018754,0.0000018767, -0.0000018784,0.0000018797,0.0000018809,0.0000018816,0.0000018808, -0.0000018782,0.0000018741,0.0000018700,0.0000018672,0.0000018667, -0.0000018674,0.0000018671,0.0000018643,0.0000018596,0.0000018549, -0.0000018518,0.0000018508,0.0000018519,0.0000018535,0.0000018541, -0.0000018537,0.0000018521,0.0000018494,0.0000018467,0.0000018446, -0.0000018434,0.0000018428,0.0000018427,0.0000018425,0.0000018418, -0.0000018408,0.0000018392,0.0000018373,0.0000018337,0.0000018298, -0.0000018278,0.0000018278,0.0000018281,0.0000018272,0.0000018255, -0.0000018246,0.0000018249,0.0000018259,0.0000018262,0.0000018242, -0.0000018204,0.0000018174,0.0000018161,0.0000018152,0.0000018142, -0.0000018138,0.0000018128,0.0000018095,0.0000018065,0.0000018065, -0.0000018078,0.0000018068,0.0000018033,0.0000017992,0.0000017968, -0.0000017973,0.0000018006,0.0000018058,0.0000018118,0.0000018152, -0.0000018130,0.0000018075,0.0000018041,0.0000018032,0.0000018014, -0.0000017962,0.0000017901,0.0000017867,0.0000017882,0.0000017939, -0.0000018002,0.0000018038,0.0000018052,0.0000018062,0.0000018073, -0.0000018102,0.0000018152,0.0000018201,0.0000018232,0.0000018249, -0.0000018266,0.0000018299,0.0000018344,0.0000018385,0.0000018420, -0.0000018442,0.0000018457,0.0000018471,0.0000018476,0.0000018467, -0.0000018453,0.0000018433,0.0000018413,0.0000018399,0.0000018385, -0.0000018374,0.0000018362,0.0000018363,0.0000018379,0.0000018411, -0.0000018422,0.0000018424,0.0000018414,0.0000018404,0.0000018378, -0.0000018340,0.0000018292,0.0000018231,0.0000018158,0.0000018081, -0.0000018013,0.0000017959,0.0000017914,0.0000017869,0.0000017818, -0.0000017763,0.0000017708,0.0000017644,0.0000017580,0.0000017523, -0.0000017472,0.0000017425,0.0000017386,0.0000017359,0.0000017329, -0.0000017306,0.0000017305,0.0000017312,0.0000017342,0.0000017370, -0.0000017397,0.0000017418,0.0000017437,0.0000017443,0.0000017438, -0.0000017406,0.0000017364,0.0000017332,0.0000017332,0.0000017330, -0.0000017330,0.0000017327,0.0000017335,0.0000017350,0.0000017347, -0.0000017319,0.0000017293,0.0000017278,0.0000017289,0.0000017318, -0.0000017354,0.0000017373,0.0000017376,0.0000017369,0.0000017363, -0.0000017365,0.0000017365,0.0000017365,0.0000017371,0.0000017391, -0.0000017422,0.0000017454,0.0000017483,0.0000017512,0.0000017539, -0.0000017551,0.0000017553,0.0000017563,0.0000017580,0.0000017606, -0.0000017637,0.0000017664,0.0000017691,0.0000017721,0.0000017746, -0.0000017741,0.0000017689,0.0000017669,0.0000017689,0.0000017704, -0.0000017688,0.0000017626,0.0000017566,0.0000017564,0.0000017648, -0.0000017726,0.0000017742,0.0000017734,0.0000017711,0.0000017688, -0.0000017615,0.0000017507,0.0000017402,0.0000017402,0.0000017537, -0.0000017743,0.0000017773,0.0000017743,0.0000017663,0.0000017651, -0.0000017768,0.0000017875,0.0000017881,0.0000017975,0.0000018178, -0.0000018215,0.0000018027,0.0000017848,0.0000017824,0.0000017852, -0.0000017925,0.0000017851,0.0000017741,0.0000017794,0.0000017799, -0.0000017787,0.0000017746,0.0000017657,0.0000017585,0.0000017531, -0.0000017517,0.0000017555,0.0000017567,0.0000017561,0.0000017560, -0.0000017556,0.0000017539,0.0000017513,0.0000017536,0.0000017657, -0.0000017740,0.0000017677,0.0000017497,0.0000017408,0.0000017462, -0.0000017631,0.0000017756,0.0000017777,0.0000017757,0.0000017707, -0.0000017655,0.0000017626,0.0000017621,0.0000017609,0.0000017535, -0.0000017425,0.0000017384,0.0000017414,0.0000017483,0.0000017556, -0.0000017632,0.0000017677,0.0000017660,0.0000017609,0.0000017575, -0.0000017567,0.0000017578,0.0000017595,0.0000017596,0.0000017581, -0.0000017566,0.0000017564,0.0000017573,0.0000017589,0.0000017604, -0.0000017628,0.0000017657,0.0000017673,0.0000017704,0.0000017741, -0.0000017722,0.0000017664,0.0000017637,0.0000017587,0.0000017505, -0.0000017468,0.0000017515,0.0000017677,0.0000017821,0.0000017859, -0.0000017888,0.0000017978,0.0000018094,0.0000018182,0.0000018229, -0.0000018263,0.0000018291,0.0000018315,0.0000018328,0.0000018341, -0.0000018371,0.0000018413,0.0000018431,0.0000018412,0.0000018367, -0.0000018324,0.0000018290,0.0000018280,0.0000018337,0.0000018381, -0.0000018411,0.0000018425,0.0000018424,0.0000018412,0.0000018396, -0.0000018380,0.0000018355,0.0000018317,0.0000018263,0.0000018215, -0.0000018226,0.0000018336,0.0000018468,0.0000018562,0.0000018614, -0.0000018629,0.0000018627,0.0000018613,0.0000018594,0.0000018578, -0.0000018575,0.0000018585,0.0000018587,0.0000018548,0.0000018482, -0.0000018457,0.0000018504,0.0000018578,0.0000018596,0.0000018549, -0.0000018512,0.0000018572,0.0000018694,0.0000018732,0.0000018674, -0.0000018557,0.0000018508,0.0000018550,0.0000018550,0.0000018505, -0.0000018490,0.0000018525,0.0000018580,0.0000018634,0.0000018667, -0.0000018686,0.0000018704,0.0000018727,0.0000018755,0.0000018777, -0.0000018787,0.0000018804,0.0000018824,0.0000018851,0.0000018882, -0.0000018919,0.0000018955,0.0000018983,0.0000019007,0.0000019026, -0.0000019035,0.0000019039,0.0000019022,0.0000018985,0.0000018940, -0.0000018895,0.0000018861,0.0000018839,0.0000018828,0.0000018813, -0.0000018812,0.0000018823,0.0000018842,0.0000018862,0.0000018863, -0.0000018833,0.0000018748,0.0000018653,0.0000018601,0.0000018584, -0.0000018554,0.0000018490,0.0000018429,0.0000018391,0.0000018385, -0.0000018395,0.0000018402,0.0000018399,0.0000018391,0.0000018384, -0.0000018383,0.0000018383,0.0000018385,0.0000018393,0.0000018410, -0.0000018431,0.0000018452,0.0000018468,0.0000018474,0.0000018472, -0.0000018464,0.0000018455,0.0000018447,0.0000018448,0.0000018458, -0.0000018470,0.0000018480,0.0000018480,0.0000018477,0.0000018486, -0.0000018530,0.0000018606,0.0000018699,0.0000018789,0.0000018870, -0.0000018943,0.0000019014,0.0000019079,0.0000019134,0.0000019175, -0.0000019198,0.0000019208,0.0000019210,0.0000019202,0.0000019190, -0.0000019183,0.0000019181,0.0000019178,0.0000019170,0.0000019165, -0.0000019161,0.0000019157,0.0000019150,0.0000019143,0.0000019139, -0.0000019136,0.0000019134,0.0000019134,0.0000019128,0.0000019118, -0.0000019107,0.0000019093,0.0000019079,0.0000019061,0.0000019036, -0.0000019005,0.0000018971,0.0000018934,0.0000018892,0.0000018846, -0.0000018803,0.0000018768,0.0000018732,0.0000018693,0.0000018659, -0.0000018624,0.0000018594,0.0000018554,0.0000018522,0.0000018490, -0.0000018453,0.0000018420,0.0000018383,0.0000018341,0.0000018305, -0.0000018266,0.0000018231,0.0000018195,0.0000018163,0.0000018139, -0.0000018117,0.0000018096,0.0000018076,0.0000018063,0.0000018053, -0.0000018055,0.0000018067,0.0000018069,0.0000018087,0.0000018102, -0.0000018107,0.0000018108,0.0000018114,0.0000018126,0.0000018143, -0.0000018159,0.0000018169,0.0000018175,0.0000018190,0.0000018207, -0.0000018223,0.0000018243,0.0000018264,0.0000018284,0.0000018309, -0.0000018337,0.0000018364,0.0000018387,0.0000018407,0.0000018426, -0.0000018446,0.0000018461,0.0000018468,0.0000018467,0.0000018459, -0.0000018442,0.0000018420,0.0000018393,0.0000018364,0.0000018335, -0.0000018313,0.0000018302,0.0000018301,0.0000018310,0.0000018325, -0.0000018345,0.0000018367,0.0000018388,0.0000018404,0.0000018412, -0.0000018414,0.0000018417,0.0000018420,0.0000018421,0.0000018422, -0.0000018428,0.0000018447,0.0000018482,0.0000018530,0.0000018586, -0.0000018639,0.0000018680,0.0000018711,0.0000018736,0.0000018755, -0.0000018769,0.0000018780,0.0000018785,0.0000018786,0.0000018785, -0.0000018790,0.0000018793,0.0000018793,0.0000018789,0.0000018782, -0.0000018773,0.0000018764,0.0000018757,0.0000018753,0.0000018753, -0.0000018755,0.0000018757,0.0000018758,0.0000018758,0.0000018759, -0.0000018759,0.0000018755,0.0000018747,0.0000018731,0.0000018707, -0.0000018681,0.0000018659,0.0000018647,0.0000018646,0.0000018663, -0.0000018702,0.0000018757,0.0000018815,0.0000018868,0.0000018907, -0.0000018931,0.0000018941,0.0000018947,0.0000018964,0.0000018988, -0.0000018997,0.0000018973,0.0000018925,0.0000018859,0.0000018810, -0.0000018794,0.0000018790,0.0000018775,0.0000018732,0.0000018663, -0.0000018587,0.0000018519,0.0000018464,0.0000018428,0.0000018413, -0.0000018422,0.0000018443,0.0000018447,0.0000018434,0.0000018405, -0.0000018339,0.0000018272,0.0000018222,0.0000018175,0.0000018127, -0.0000018092,0.0000018075,0.0000018060,0.0000018055,0.0000018054, -0.0000018073,0.0000018090,0.0000018110,0.0000018132,0.0000018149, -0.0000018164,0.0000018183,0.0000018196,0.0000018206,0.0000018217, -0.0000018229,0.0000018242,0.0000018256,0.0000018271,0.0000018285, -0.0000018298,0.0000018309,0.0000018316,0.0000018319,0.0000018321, -0.0000018319,0.0000018316,0.0000018313,0.0000018309,0.0000018304, -0.0000018300,0.0000018301,0.0000018303,0.0000018310,0.0000018327, -0.0000018344,0.0000018379,0.0000018426,0.0000018477,0.0000018518, -0.0000018537,0.0000018537,0.0000018522,0.0000018503,0.0000018492, -0.0000018491,0.0000018495,0.0000018496,0.0000018497,0.0000018509, -0.0000018535,0.0000018547,0.0000018537,0.0000018491,0.0000018416, -0.0000018337,0.0000018284,0.0000018254,0.0000018242,0.0000018239, -0.0000018240,0.0000018243,0.0000018248,0.0000018258,0.0000018271, -0.0000018286,0.0000018303,0.0000018323,0.0000018343,0.0000018363, -0.0000018383,0.0000018406,0.0000018431,0.0000018457,0.0000018475, -0.0000018489,0.0000018500,0.0000018507,0.0000018505,0.0000018493, -0.0000018474,0.0000018451,0.0000018422,0.0000018393,0.0000018372, -0.0000018358,0.0000018348,0.0000018342,0.0000018335,0.0000018320, -0.0000018289,0.0000018252,0.0000018226,0.0000018222,0.0000018236, -0.0000018260,0.0000018273,0.0000018275,0.0000018274,0.0000018280, -0.0000018290,0.0000018307,0.0000018326,0.0000018347,0.0000018361, -0.0000018364,0.0000018366,0.0000018374,0.0000018391,0.0000018415, -0.0000018450,0.0000018488,0.0000018517,0.0000018547,0.0000018587, -0.0000018631,0.0000018676,0.0000018724,0.0000018766,0.0000018795, -0.0000018816,0.0000018827,0.0000018830,0.0000018825,0.0000018814, -0.0000018808,0.0000018807,0.0000018803,0.0000018789,0.0000018761, -0.0000018712,0.0000018643,0.0000018566,0.0000018492,0.0000018429, -0.0000018386,0.0000018372,0.0000018379,0.0000018423,0.0000018477, -0.0000018512,0.0000018517,0.0000018509,0.0000018506,0.0000018507, -0.0000018509,0.0000018508,0.0000018501,0.0000018493,0.0000018485, -0.0000018483,0.0000018496,0.0000018520,0.0000018551,0.0000018582, -0.0000018612,0.0000018642,0.0000018672,0.0000018695,0.0000018712, -0.0000018729,0.0000018747,0.0000018765,0.0000018777,0.0000018781, -0.0000018779,0.0000018778,0.0000018779,0.0000018774,0.0000018764, -0.0000018751,0.0000018736,0.0000018727,0.0000018729,0.0000018738, -0.0000018748,0.0000018762,0.0000018781,0.0000018800,0.0000018822, -0.0000018850,0.0000018882,0.0000018911,0.0000018929,0.0000018935, -0.0000018934,0.0000018925,0.0000018916,0.0000018909,0.0000018897, -0.0000018871,0.0000018831,0.0000018785,0.0000018739,0.0000018695, -0.0000018647,0.0000018594,0.0000018541,0.0000018491,0.0000018436, -0.0000018381,0.0000018348,0.0000018344,0.0000018379,0.0000018486, -0.0000018655,0.0000018837,0.0000018979,0.0000019037,0.0000019055, -0.0000019044,0.0000019023,0.0000019006,0.0000018996,0.0000018991, -0.0000018983,0.0000018966,0.0000018940,0.0000018906,0.0000018871, -0.0000018840,0.0000018811,0.0000018780,0.0000018752,0.0000018733, -0.0000018718,0.0000018700,0.0000018682,0.0000018666,0.0000018654, -0.0000018641,0.0000018628,0.0000018619,0.0000018615,0.0000018617, -0.0000018624,0.0000018633,0.0000018644,0.0000018658,0.0000018676, -0.0000018697,0.0000018717,0.0000018728,0.0000018730,0.0000018722, -0.0000018710,0.0000018702,0.0000018685,0.0000018654,0.0000018619, -0.0000018586,0.0000018559,0.0000018540,0.0000018536,0.0000018545, -0.0000018556,0.0000018564,0.0000018570,0.0000018572,0.0000018571, -0.0000018565,0.0000018551,0.0000018535,0.0000018522,0.0000018507, -0.0000018495,0.0000018501,0.0000018518,0.0000018541,0.0000018573, -0.0000018609,0.0000018651,0.0000018690,0.0000018722,0.0000018748, -0.0000018768,0.0000018782,0.0000018802,0.0000018826,0.0000018845, -0.0000018860,0.0000018865,0.0000018868,0.0000018862,0.0000018842, -0.0000018818,0.0000018793,0.0000018770,0.0000018757,0.0000018753, -0.0000018751,0.0000018750,0.0000018749,0.0000018746,0.0000018742, -0.0000018744,0.0000018751,0.0000018763,0.0000018781,0.0000018798, -0.0000018810,0.0000018835,0.0000018879,0.0000018930,0.0000018977, -0.0000018999,0.0000019023,0.0000019025,0.0000019016,0.0000019001, -0.0000018980,0.0000018948,0.0000018908,0.0000018874,0.0000018858, -0.0000018861,0.0000018875,0.0000018889,0.0000018889,0.0000018875, -0.0000018853,0.0000018828,0.0000018817,0.0000018836,0.0000018863, -0.0000018888,0.0000018906,0.0000018918,0.0000018932,0.0000018957, -0.0000018991,0.0000019025,0.0000019038,0.0000019054,0.0000019049, -0.0000019017,0.0000018955,0.0000018876,0.0000018794,0.0000018713, -0.0000018630,0.0000018554,0.0000018473,0.0000018395,0.0000018327, -0.0000018259,0.0000018177,0.0000018089,0.0000018002,0.0000017954, -0.0000017958,0.0000018000,0.0000018034,0.0000018025,0.0000017972, -0.0000017902,0.0000017846,0.0000017805,0.0000017770,0.0000017748, -0.0000017746,0.0000017751,0.0000017784,0.0000017840,0.0000017905, -0.0000017960,0.0000018001,0.0000018031,0.0000018056,0.0000018083, -0.0000018110,0.0000018137,0.0000018148,0.0000018130,0.0000018085, -0.0000018023,0.0000017985,0.0000017974,0.0000017975,0.0000017976, -0.0000017965,0.0000017945,0.0000017921,0.0000017886,0.0000017844, -0.0000017805,0.0000017797,0.0000017818,0.0000017847,0.0000017855, -0.0000017841,0.0000017824,0.0000017819,0.0000017823,0.0000017823, -0.0000017835,0.0000017870,0.0000017931,0.0000017992,0.0000018036, -0.0000018069,0.0000018090,0.0000018096,0.0000018077,0.0000018036, -0.0000017991,0.0000017963,0.0000017939,0.0000017917,0.0000017902, -0.0000017892,0.0000017887,0.0000017879,0.0000017874,0.0000017883, -0.0000017895,0.0000017921,0.0000017939,0.0000017939,0.0000017915, -0.0000017882,0.0000017866,0.0000017870,0.0000017891,0.0000017910, -0.0000017919,0.0000017895,0.0000017840,0.0000017775,0.0000017712, -0.0000017669,0.0000017648,0.0000017640,0.0000017626,0.0000017581, -0.0000017514,0.0000017457,0.0000017424,0.0000017393,0.0000017351, -0.0000017295,0.0000017235,0.0000017206,0.0000017186,0.0000017269, -0.0000017475,0.0000017782,0.0000018123,0.0000018421,0.0000018621, -0.0000018719,0.0000018767,0.0000018811,0.0000018866,0.0000018935, -0.0000018980,0.0000018991,0.0000018942,0.0000018851,0.0000018766, -0.0000018704,0.0000018691,0.0000018688,0.0000018711,0.0000018748, -0.0000018780,0.0000018802,0.0000018796,0.0000018771,0.0000018712, -0.0000018641,0.0000018584,0.0000018551,0.0000018559,0.0000018585, -0.0000018631,0.0000018680,0.0000018720,0.0000018741,0.0000018748, -0.0000018736,0.0000018723,0.0000018722,0.0000018736,0.0000018753, -0.0000018765,0.0000018778,0.0000018794,0.0000018805,0.0000018797, -0.0000018768,0.0000018724,0.0000018678,0.0000018644,0.0000018626, -0.0000018613,0.0000018594,0.0000018570,0.0000018550,0.0000018537, -0.0000018532,0.0000018535,0.0000018537,0.0000018535,0.0000018525, -0.0000018507,0.0000018481,0.0000018451,0.0000018418,0.0000018383, -0.0000018352,0.0000018335,0.0000018330,0.0000018327,0.0000018321, -0.0000018316,0.0000018310,0.0000018290,0.0000018259,0.0000018230, -0.0000018219,0.0000018231,0.0000018245,0.0000018248,0.0000018243, -0.0000018236,0.0000018234,0.0000018236,0.0000018233,0.0000018207, -0.0000018168,0.0000018144,0.0000018140,0.0000018132,0.0000018115, -0.0000018105,0.0000018094,0.0000018067,0.0000018045,0.0000018044, -0.0000018046,0.0000018033,0.0000017998,0.0000017961,0.0000017953, -0.0000017981,0.0000018032,0.0000018088,0.0000018138,0.0000018157, -0.0000018137,0.0000018093,0.0000018054,0.0000018030,0.0000018005, -0.0000017958,0.0000017908,0.0000017901,0.0000017936,0.0000018000, -0.0000018057,0.0000018090,0.0000018097,0.0000018090,0.0000018093, -0.0000018104,0.0000018138,0.0000018176,0.0000018204,0.0000018225, -0.0000018248,0.0000018286,0.0000018341,0.0000018402,0.0000018454, -0.0000018481,0.0000018505,0.0000018517,0.0000018523,0.0000018525, -0.0000018522,0.0000018512,0.0000018495,0.0000018468,0.0000018431, -0.0000018397,0.0000018373,0.0000018379,0.0000018387,0.0000018400, -0.0000018406,0.0000018425,0.0000018442,0.0000018461,0.0000018455, -0.0000018429,0.0000018381,0.0000018316,0.0000018249,0.0000018195, -0.0000018148,0.0000018094,0.0000018029,0.0000017952,0.0000017874, -0.0000017800,0.0000017736,0.0000017689,0.0000017652,0.0000017621, -0.0000017590,0.0000017564,0.0000017532,0.0000017480,0.0000017419, -0.0000017368,0.0000017346,0.0000017334,0.0000017347,0.0000017371, -0.0000017406,0.0000017442,0.0000017476,0.0000017509,0.0000017507, -0.0000017473,0.0000017424,0.0000017389,0.0000017355,0.0000017328, -0.0000017301,0.0000017289,0.0000017296,0.0000017309,0.0000017305, -0.0000017291,0.0000017264,0.0000017249,0.0000017264,0.0000017294, -0.0000017317,0.0000017324,0.0000017323,0.0000017328,0.0000017338, -0.0000017346,0.0000017349,0.0000017361,0.0000017393,0.0000017432, -0.0000017463,0.0000017486,0.0000017502,0.0000017515,0.0000017520, -0.0000017522,0.0000017529,0.0000017540,0.0000017558,0.0000017599, -0.0000017654,0.0000017701,0.0000017741,0.0000017765,0.0000017753, -0.0000017701,0.0000017688,0.0000017703,0.0000017707,0.0000017679, -0.0000017606,0.0000017546,0.0000017543,0.0000017619,0.0000017699, -0.0000017732,0.0000017725,0.0000017710,0.0000017704,0.0000017668, -0.0000017572,0.0000017460,0.0000017401,0.0000017457,0.0000017645, -0.0000017764,0.0000017748,0.0000017676,0.0000017649,0.0000017743, -0.0000017881,0.0000017888,0.0000017993,0.0000018208,0.0000018238, -0.0000018065,0.0000017861,0.0000017835,0.0000017862,0.0000017931, -0.0000017857,0.0000017746,0.0000017796,0.0000017791,0.0000017762, -0.0000017721,0.0000017649,0.0000017586,0.0000017525,0.0000017514, -0.0000017559,0.0000017570,0.0000017557,0.0000017551,0.0000017547, -0.0000017541,0.0000017525,0.0000017522,0.0000017596,0.0000017724, -0.0000017722,0.0000017556,0.0000017418,0.0000017424,0.0000017573, -0.0000017725,0.0000017777,0.0000017764,0.0000017713,0.0000017653, -0.0000017615,0.0000017608,0.0000017608,0.0000017559,0.0000017452, -0.0000017379,0.0000017389,0.0000017451,0.0000017523,0.0000017597, -0.0000017660,0.0000017667,0.0000017620,0.0000017569,0.0000017546, -0.0000017548,0.0000017564,0.0000017570,0.0000017562,0.0000017558, -0.0000017565,0.0000017578,0.0000017597,0.0000017630,0.0000017663, -0.0000017686,0.0000017728,0.0000017758,0.0000017721,0.0000017665, -0.0000017616,0.0000017537,0.0000017485,0.0000017509,0.0000017651, -0.0000017802,0.0000017845,0.0000017886,0.0000018012,0.0000018152, -0.0000018237,0.0000018262,0.0000018262,0.0000018263,0.0000018262, -0.0000018261,0.0000018264,0.0000018284,0.0000018311,0.0000018314, -0.0000018281,0.0000018241,0.0000018224,0.0000018234,0.0000018252, -0.0000018290,0.0000018385,0.0000018415,0.0000018424,0.0000018423, -0.0000018416,0.0000018404,0.0000018387,0.0000018368,0.0000018358, -0.0000018351,0.0000018333,0.0000018267,0.0000018232,0.0000018298, -0.0000018431,0.0000018556,0.0000018626,0.0000018650,0.0000018651, -0.0000018643,0.0000018631,0.0000018616,0.0000018606,0.0000018608, -0.0000018613,0.0000018589,0.0000018522,0.0000018479,0.0000018514, -0.0000018585,0.0000018585,0.0000018530,0.0000018521,0.0000018617, -0.0000018721,0.0000018707,0.0000018600,0.0000018504,0.0000018513, -0.0000018519,0.0000018479,0.0000018485,0.0000018561,0.0000018647, -0.0000018687,0.0000018703,0.0000018732,0.0000018779,0.0000018838, -0.0000018894,0.0000018928,0.0000018935,0.0000018922,0.0000018890, -0.0000018854,0.0000018847,0.0000018857,0.0000018880,0.0000018913, -0.0000018953,0.0000018987,0.0000019015,0.0000019033,0.0000019041, -0.0000019035,0.0000019020,0.0000018993,0.0000018959,0.0000018924, -0.0000018889,0.0000018858,0.0000018833,0.0000018817,0.0000018809, -0.0000018812,0.0000018819,0.0000018837,0.0000018845,0.0000018806, -0.0000018720,0.0000018636,0.0000018593,0.0000018576,0.0000018550, -0.0000018505,0.0000018460,0.0000018436,0.0000018432,0.0000018441, -0.0000018453,0.0000018463,0.0000018471,0.0000018477,0.0000018479, -0.0000018483,0.0000018494,0.0000018509,0.0000018519,0.0000018521, -0.0000018515,0.0000018504,0.0000018493,0.0000018490,0.0000018496, -0.0000018509,0.0000018525,0.0000018539,0.0000018545,0.0000018556, -0.0000018585,0.0000018639,0.0000018709,0.0000018784,0.0000018861, -0.0000018939,0.0000019019,0.0000019098,0.0000019168,0.0000019218, -0.0000019241,0.0000019237,0.0000019211,0.0000019172,0.0000019124, -0.0000019083,0.0000019052,0.0000019030,0.0000019017,0.0000019011, -0.0000019007,0.0000019005,0.0000019005,0.0000019006,0.0000019009, -0.0000019010,0.0000019009,0.0000019005,0.0000018999,0.0000018998, -0.0000018997,0.0000018996,0.0000018998,0.0000019002,0.0000019007, -0.0000019012,0.0000019017,0.0000019021,0.0000019019,0.0000019020, -0.0000019025,0.0000019027,0.0000019023,0.0000019022,0.0000019030, -0.0000019034,0.0000019036,0.0000019036,0.0000019034,0.0000019032, -0.0000019018,0.0000019005,0.0000018989,0.0000018974,0.0000018950, -0.0000018924,0.0000018900,0.0000018876,0.0000018846,0.0000018815, -0.0000018777,0.0000018739,0.0000018702,0.0000018667,0.0000018628, -0.0000018588,0.0000018551,0.0000018517,0.0000018486,0.0000018457, -0.0000018435,0.0000018415,0.0000018396,0.0000018372,0.0000018342, -0.0000018315,0.0000018296,0.0000018278,0.0000018258,0.0000018237, -0.0000018219,0.0000018209,0.0000018210,0.0000018210,0.0000018221, -0.0000018234,0.0000018239,0.0000018241,0.0000018252,0.0000018267, -0.0000018278,0.0000018283,0.0000018293,0.0000018303,0.0000018308, -0.0000018310,0.0000018309,0.0000018303,0.0000018294,0.0000018282, -0.0000018268,0.0000018257,0.0000018247,0.0000018244,0.0000018251, -0.0000018266,0.0000018288,0.0000018314,0.0000018343,0.0000018374, -0.0000018399,0.0000018414,0.0000018421,0.0000018427,0.0000018431, -0.0000018431,0.0000018424,0.0000018412,0.0000018399,0.0000018387, -0.0000018379,0.0000018384,0.0000018399,0.0000018417,0.0000018430, -0.0000018442,0.0000018455,0.0000018469,0.0000018484,0.0000018498, -0.0000018509,0.0000018519,0.0000018532,0.0000018546,0.0000018552, -0.0000018553,0.0000018551,0.0000018542,0.0000018532,0.0000018526, -0.0000018524,0.0000018525,0.0000018532,0.0000018545,0.0000018557, -0.0000018568,0.0000018584,0.0000018600,0.0000018609,0.0000018610, -0.0000018602,0.0000018592,0.0000018580,0.0000018566,0.0000018548, -0.0000018531,0.0000018521,0.0000018524,0.0000018550,0.0000018596, -0.0000018654,0.0000018714,0.0000018775,0.0000018831,0.0000018874, -0.0000018899,0.0000018911,0.0000018922,0.0000018943,0.0000018968, -0.0000018981,0.0000018961,0.0000018932,0.0000018885,0.0000018854, -0.0000018845,0.0000018843,0.0000018833,0.0000018797,0.0000018736, -0.0000018666,0.0000018600,0.0000018542,0.0000018494,0.0000018460, -0.0000018445,0.0000018451,0.0000018465,0.0000018461,0.0000018439, -0.0000018413,0.0000018351,0.0000018288,0.0000018233,0.0000018177, -0.0000018119,0.0000018078,0.0000018067,0.0000018057,0.0000018070, -0.0000018088,0.0000018096,0.0000018112,0.0000018137,0.0000018158, -0.0000018171,0.0000018179,0.0000018184,0.0000018187,0.0000018193, -0.0000018200,0.0000018208,0.0000018214,0.0000018222,0.0000018231, -0.0000018238,0.0000018246,0.0000018254,0.0000018262,0.0000018268, -0.0000018277,0.0000018287,0.0000018296,0.0000018305,0.0000018326, -0.0000018354,0.0000018391,0.0000018435,0.0000018481,0.0000018519, -0.0000018541,0.0000018546,0.0000018538,0.0000018528,0.0000018521, -0.0000018519,0.0000018521,0.0000018523,0.0000018527,0.0000018544, -0.0000018575,0.0000018594,0.0000018588,0.0000018545,0.0000018469, -0.0000018390,0.0000018335,0.0000018300,0.0000018275,0.0000018252, -0.0000018228,0.0000018207,0.0000018195,0.0000018192,0.0000018196, -0.0000018205,0.0000018218,0.0000018230,0.0000018243,0.0000018262, -0.0000018287,0.0000018316,0.0000018347,0.0000018376,0.0000018399, -0.0000018415,0.0000018422,0.0000018428,0.0000018439,0.0000018448, -0.0000018449,0.0000018443,0.0000018434,0.0000018419,0.0000018393, -0.0000018366,0.0000018345,0.0000018328,0.0000018320,0.0000018319, -0.0000018320,0.0000018310,0.0000018282,0.0000018251,0.0000018234, -0.0000018239,0.0000018266,0.0000018296,0.0000018310,0.0000018314, -0.0000018319,0.0000018326,0.0000018342,0.0000018369,0.0000018399, -0.0000018422,0.0000018436,0.0000018446,0.0000018459,0.0000018479, -0.0000018503,0.0000018530,0.0000018553,0.0000018567,0.0000018585, -0.0000018622,0.0000018677,0.0000018741,0.0000018807,0.0000018859, -0.0000018899,0.0000018930,0.0000018948,0.0000018950,0.0000018943, -0.0000018927,0.0000018897,0.0000018867,0.0000018849,0.0000018833, -0.0000018815,0.0000018787,0.0000018730,0.0000018650,0.0000018568, -0.0000018496,0.0000018436,0.0000018392,0.0000018370,0.0000018376, -0.0000018399,0.0000018443,0.0000018476,0.0000018486,0.0000018493, -0.0000018506,0.0000018518,0.0000018523,0.0000018520,0.0000018510, -0.0000018495,0.0000018482,0.0000018480,0.0000018487,0.0000018505, -0.0000018529,0.0000018554,0.0000018576,0.0000018596,0.0000018615, -0.0000018636,0.0000018658,0.0000018679,0.0000018697,0.0000018714, -0.0000018730,0.0000018741,0.0000018748,0.0000018758,0.0000018768, -0.0000018771,0.0000018763,0.0000018753,0.0000018746,0.0000018745, -0.0000018755,0.0000018767,0.0000018778,0.0000018791,0.0000018809, -0.0000018830,0.0000018856,0.0000018887,0.0000018920,0.0000018948, -0.0000018966,0.0000018977,0.0000018980,0.0000018978,0.0000018974, -0.0000018969,0.0000018948,0.0000018913,0.0000018876,0.0000018839, -0.0000018804,0.0000018774,0.0000018744,0.0000018709,0.0000018665, -0.0000018613,0.0000018549,0.0000018471,0.0000018392,0.0000018342, -0.0000018322,0.0000018346,0.0000018431,0.0000018580,0.0000018758, -0.0000018914,0.0000019016,0.0000019049,0.0000019060,0.0000019051, -0.0000019037,0.0000019028,0.0000019026,0.0000019028,0.0000019028, -0.0000019023,0.0000019011,0.0000018995,0.0000018974,0.0000018947, -0.0000018922,0.0000018904,0.0000018888,0.0000018869,0.0000018848, -0.0000018828,0.0000018813,0.0000018800,0.0000018785,0.0000018772, -0.0000018764,0.0000018760,0.0000018759,0.0000018755,0.0000018746, -0.0000018739,0.0000018736,0.0000018734,0.0000018726,0.0000018718, -0.0000018713,0.0000018709,0.0000018711,0.0000018717,0.0000018718, -0.0000018717,0.0000018716,0.0000018702,0.0000018688,0.0000018674, -0.0000018675,0.0000018682,0.0000018682,0.0000018674,0.0000018659, -0.0000018642,0.0000018622,0.0000018595,0.0000018560,0.0000018531, -0.0000018506,0.0000018484,0.0000018465,0.0000018462,0.0000018474, -0.0000018494,0.0000018523,0.0000018556,0.0000018591,0.0000018622, -0.0000018647,0.0000018668,0.0000018683,0.0000018696,0.0000018720, -0.0000018750,0.0000018777,0.0000018800,0.0000018821,0.0000018831, -0.0000018826,0.0000018813,0.0000018794,0.0000018771,0.0000018751, -0.0000018734,0.0000018716,0.0000018703,0.0000018696,0.0000018691, -0.0000018686,0.0000018683,0.0000018681,0.0000018678,0.0000018678, -0.0000018680,0.0000018679,0.0000018686,0.0000018716,0.0000018763, -0.0000018821,0.0000018880,0.0000018941,0.0000018989,0.0000019016, -0.0000019019,0.0000019019,0.0000019009,0.0000018985,0.0000018950, -0.0000018920,0.0000018902,0.0000018902,0.0000018916,0.0000018939, -0.0000018957,0.0000018957,0.0000018939,0.0000018911,0.0000018890, -0.0000018884,0.0000018893,0.0000018911,0.0000018923,0.0000018930, -0.0000018940,0.0000018963,0.0000018990,0.0000019014,0.0000019040, -0.0000019063,0.0000019069,0.0000019055,0.0000019021,0.0000018974, -0.0000018921,0.0000018867,0.0000018814,0.0000018741,0.0000018650, -0.0000018557,0.0000018466,0.0000018369,0.0000018264,0.0000018160, -0.0000018091,0.0000018073,0.0000018096,0.0000018133,0.0000018145, -0.0000018106,0.0000018034,0.0000017958,0.0000017899,0.0000017863, -0.0000017848,0.0000017840,0.0000017827,0.0000017824,0.0000017851, -0.0000017890,0.0000017939,0.0000017989,0.0000018030,0.0000018061, -0.0000018081,0.0000018097,0.0000018117,0.0000018130,0.0000018126, -0.0000018104,0.0000018047,0.0000018009,0.0000017993,0.0000017993, -0.0000017990,0.0000017975,0.0000017955,0.0000017935,0.0000017900, -0.0000017852,0.0000017802,0.0000017799,0.0000017822,0.0000017856, -0.0000017865,0.0000017849,0.0000017825,0.0000017814,0.0000017802, -0.0000017785,0.0000017785,0.0000017808,0.0000017870,0.0000017938, -0.0000017998,0.0000018047,0.0000018087,0.0000018098,0.0000018084, -0.0000018045,0.0000018002,0.0000017977,0.0000017951,0.0000017927, -0.0000017917,0.0000017918,0.0000017922,0.0000017926,0.0000017929, -0.0000017935,0.0000017947,0.0000017972,0.0000017995,0.0000018007, -0.0000018002,0.0000017984,0.0000017979,0.0000017991,0.0000018016, -0.0000018043,0.0000018057,0.0000018040,0.0000017995,0.0000017938, -0.0000017868,0.0000017803,0.0000017741,0.0000017687,0.0000017646, -0.0000017608,0.0000017562,0.0000017516,0.0000017478,0.0000017436, -0.0000017398,0.0000017356,0.0000017292,0.0000017214,0.0000017164, -0.0000017152,0.0000017224,0.0000017397,0.0000017664,0.0000017984, -0.0000018281,0.0000018507,0.0000018652,0.0000018732,0.0000018778, -0.0000018835,0.0000018914,0.0000018989,0.0000019014,0.0000018984, -0.0000018927,0.0000018850,0.0000018776,0.0000018716,0.0000018694, -0.0000018684,0.0000018699,0.0000018723,0.0000018746,0.0000018750, -0.0000018728,0.0000018690,0.0000018645,0.0000018609,0.0000018600, -0.0000018616,0.0000018650,0.0000018684,0.0000018711,0.0000018726, -0.0000018723,0.0000018701,0.0000018687,0.0000018693,0.0000018706, -0.0000018712,0.0000018715,0.0000018721,0.0000018733,0.0000018742, -0.0000018735,0.0000018708,0.0000018669,0.0000018635,0.0000018610, -0.0000018592,0.0000018576,0.0000018566,0.0000018563,0.0000018566, -0.0000018571,0.0000018570,0.0000018561,0.0000018540,0.0000018516, -0.0000018486,0.0000018447,0.0000018407,0.0000018368,0.0000018329, -0.0000018291,0.0000018266,0.0000018259,0.0000018258,0.0000018259, -0.0000018260,0.0000018261,0.0000018252,0.0000018228,0.0000018199, -0.0000018177,0.0000018179,0.0000018198,0.0000018218,0.0000018227, -0.0000018227,0.0000018226,0.0000018227,0.0000018225,0.0000018209, -0.0000018175,0.0000018140,0.0000018125,0.0000018122,0.0000018108, -0.0000018088,0.0000018080,0.0000018074,0.0000018052,0.0000018028, -0.0000018018,0.0000018015,0.0000018000,0.0000017966,0.0000017938, -0.0000017949,0.0000018001,0.0000018059,0.0000018106,0.0000018141, -0.0000018153,0.0000018142,0.0000018107,0.0000018069,0.0000018041, -0.0000018007,0.0000017963,0.0000017935,0.0000017945,0.0000017992, -0.0000018053,0.0000018103,0.0000018136,0.0000018141,0.0000018134, -0.0000018123,0.0000018132,0.0000018140,0.0000018154,0.0000018168, -0.0000018180,0.0000018202,0.0000018246,0.0000018314,0.0000018393, -0.0000018460,0.0000018503,0.0000018522,0.0000018531,0.0000018540, -0.0000018553,0.0000018563,0.0000018567,0.0000018559,0.0000018530, -0.0000018488,0.0000018448,0.0000018423,0.0000018414,0.0000018407, -0.0000018405,0.0000018421,0.0000018437,0.0000018461,0.0000018472, -0.0000018478,0.0000018468,0.0000018447,0.0000018421,0.0000018393, -0.0000018353,0.0000018295,0.0000018226,0.0000018150,0.0000018065, -0.0000017969,0.0000017874,0.0000017791,0.0000017733,0.0000017702, -0.0000017690,0.0000017691,0.0000017683,0.0000017652,0.0000017606, -0.0000017548,0.0000017488,0.0000017425,0.0000017391,0.0000017368, -0.0000017391,0.0000017414,0.0000017468,0.0000017520,0.0000017557, -0.0000017568,0.0000017543,0.0000017508,0.0000017465,0.0000017419, -0.0000017367,0.0000017314,0.0000017296,0.0000017298,0.0000017303, -0.0000017299,0.0000017275,0.0000017243,0.0000017236,0.0000017250, -0.0000017262,0.0000017257,0.0000017251,0.0000017254,0.0000017265, -0.0000017275,0.0000017284,0.0000017310,0.0000017363,0.0000017421, -0.0000017463,0.0000017487,0.0000017492,0.0000017491,0.0000017481, -0.0000017470,0.0000017468,0.0000017482,0.0000017520,0.0000017597, -0.0000017681,0.0000017741,0.0000017777,0.0000017785,0.0000017757, -0.0000017712,0.0000017712,0.0000017723,0.0000017712,0.0000017665, -0.0000017589,0.0000017539,0.0000017539,0.0000017609,0.0000017690, -0.0000017729,0.0000017721,0.0000017705,0.0000017710,0.0000017702, -0.0000017629,0.0000017514,0.0000017423,0.0000017427,0.0000017554, -0.0000017719,0.0000017740,0.0000017680,0.0000017649,0.0000017728, -0.0000017878,0.0000017897,0.0000018019,0.0000018234,0.0000018242, -0.0000018087,0.0000017871,0.0000017841,0.0000017872,0.0000017942, -0.0000017861,0.0000017746,0.0000017795,0.0000017787,0.0000017742, -0.0000017697,0.0000017643,0.0000017585,0.0000017519,0.0000017516, -0.0000017562,0.0000017569,0.0000017555,0.0000017544,0.0000017533, -0.0000017528,0.0000017523,0.0000017518,0.0000017555,0.0000017672, -0.0000017729,0.0000017620,0.0000017451,0.0000017409,0.0000017517, -0.0000017684,0.0000017770,0.0000017769,0.0000017722,0.0000017653, -0.0000017606,0.0000017600,0.0000017605,0.0000017573,0.0000017476, -0.0000017393,0.0000017384,0.0000017426,0.0000017490,0.0000017567, -0.0000017643,0.0000017667,0.0000017630,0.0000017574,0.0000017541, -0.0000017534,0.0000017544,0.0000017554,0.0000017557,0.0000017560, -0.0000017569,0.0000017592,0.0000017633,0.0000017669,0.0000017700, -0.0000017750,0.0000017766,0.0000017715,0.0000017653,0.0000017583, -0.0000017506,0.0000017499,0.0000017614,0.0000017779,0.0000017837, -0.0000017873,0.0000018013,0.0000018178,0.0000018272,0.0000018286, -0.0000018257,0.0000018215,0.0000018189,0.0000018172,0.0000018165, -0.0000018176,0.0000018193,0.0000018194,0.0000018174,0.0000018154, -0.0000018165,0.0000018200,0.0000018244,0.0000018294,0.0000018344, -0.0000018382,0.0000018399,0.0000018402,0.0000018401,0.0000018396, -0.0000018387,0.0000018367,0.0000018335,0.0000018320,0.0000018337, -0.0000018356,0.0000018324,0.0000018264,0.0000018267,0.0000018380, -0.0000018532,0.0000018625,0.0000018655,0.0000018657,0.0000018654, -0.0000018647,0.0000018642,0.0000018633,0.0000018630,0.0000018634, -0.0000018623,0.0000018560,0.0000018498,0.0000018514,0.0000018578, -0.0000018566,0.0000018520,0.0000018548,0.0000018662,0.0000018717, -0.0000018644,0.0000018522,0.0000018482,0.0000018491,0.0000018460, -0.0000018480,0.0000018596,0.0000018680,0.0000018693,0.0000018711, -0.0000018762,0.0000018842,0.0000018934,0.0000019004,0.0000019034, -0.0000019043,0.0000019045,0.0000019041,0.0000019004,0.0000018926, -0.0000018858,0.0000018839,0.0000018846,0.0000018863,0.0000018907, -0.0000018961,0.0000019003,0.0000019028,0.0000019030,0.0000019025, -0.0000019018,0.0000019012,0.0000018996,0.0000018975,0.0000018948, -0.0000018922,0.0000018900,0.0000018880,0.0000018856,0.0000018829, -0.0000018813,0.0000018811,0.0000018824,0.0000018824,0.0000018783, -0.0000018707,0.0000018636,0.0000018599,0.0000018586,0.0000018568, -0.0000018538,0.0000018509,0.0000018489,0.0000018485,0.0000018491, -0.0000018500,0.0000018510,0.0000018519,0.0000018525,0.0000018532, -0.0000018540,0.0000018545,0.0000018543,0.0000018537,0.0000018533, -0.0000018532,0.0000018539,0.0000018554,0.0000018572,0.0000018593, -0.0000018621,0.0000018658,0.0000018700,0.0000018750,0.0000018807, -0.0000018866,0.0000018929,0.0000019002,0.0000019084,0.0000019163, -0.0000019221,0.0000019241,0.0000019233,0.0000019195,0.0000019133, -0.0000019069,0.0000019018,0.0000018984,0.0000018970,0.0000018974, -0.0000018991,0.0000019016,0.0000019038,0.0000019063,0.0000019089, -0.0000019111,0.0000019127,0.0000019140,0.0000019150,0.0000019155, -0.0000019154,0.0000019146,0.0000019138,0.0000019130,0.0000019121, -0.0000019110,0.0000019102,0.0000019096,0.0000019087,0.0000019076, -0.0000019065,0.0000019055,0.0000019044,0.0000019033,0.0000019026, -0.0000019017,0.0000019012,0.0000019015,0.0000019022,0.0000019030, -0.0000019037,0.0000019047,0.0000019059,0.0000019061,0.0000019062, -0.0000019063,0.0000019061,0.0000019054,0.0000019044,0.0000019037, -0.0000019038,0.0000019034,0.0000019032,0.0000019025,0.0000019019, -0.0000019010,0.0000019004,0.0000018997,0.0000018989,0.0000018983, -0.0000018975,0.0000018968,0.0000018960,0.0000018957,0.0000018954, -0.0000018948,0.0000018943,0.0000018929,0.0000018908,0.0000018889, -0.0000018872,0.0000018850,0.0000018825,0.0000018797,0.0000018765, -0.0000018734,0.0000018706,0.0000018679,0.0000018656,0.0000018634, -0.0000018613,0.0000018594,0.0000018577,0.0000018559,0.0000018533, -0.0000018506,0.0000018477,0.0000018448,0.0000018413,0.0000018373, -0.0000018332,0.0000018293,0.0000018265,0.0000018223,0.0000018177, -0.0000018138,0.0000018108,0.0000018090,0.0000018084,0.0000018092, -0.0000018115,0.0000018154,0.0000018206,0.0000018263,0.0000018317, -0.0000018364,0.0000018400,0.0000018427,0.0000018448,0.0000018462, -0.0000018462,0.0000018449,0.0000018432,0.0000018411,0.0000018390, -0.0000018378,0.0000018376,0.0000018373,0.0000018365,0.0000018356, -0.0000018345,0.0000018339,0.0000018338,0.0000018342,0.0000018350, -0.0000018364,0.0000018383,0.0000018401,0.0000018414,0.0000018422, -0.0000018424,0.0000018422,0.0000018423,0.0000018427,0.0000018429, -0.0000018433,0.0000018440,0.0000018449,0.0000018461,0.0000018478, -0.0000018497,0.0000018515,0.0000018525,0.0000018525,0.0000018515, -0.0000018501,0.0000018490,0.0000018478,0.0000018462,0.0000018445, -0.0000018431,0.0000018427,0.0000018430,0.0000018445,0.0000018477, -0.0000018526,0.0000018583,0.0000018640,0.0000018696,0.0000018752, -0.0000018803,0.0000018840,0.0000018866,0.0000018899,0.0000018945, -0.0000018984,0.0000018998,0.0000018980,0.0000018946,0.0000018905, -0.0000018883,0.0000018878,0.0000018877,0.0000018869,0.0000018839, -0.0000018788,0.0000018729,0.0000018673,0.0000018618,0.0000018562, -0.0000018514,0.0000018481,0.0000018465,0.0000018465,0.0000018467, -0.0000018446,0.0000018427,0.0000018392,0.0000018341,0.0000018290, -0.0000018250,0.0000018207,0.0000018168,0.0000018147,0.0000018135, -0.0000018134,0.0000018144,0.0000018156,0.0000018169,0.0000018179, -0.0000018183,0.0000018187,0.0000018191,0.0000018196,0.0000018200, -0.0000018205,0.0000018213,0.0000018223,0.0000018232,0.0000018244, -0.0000018260,0.0000018277,0.0000018294,0.0000018316,0.0000018341, -0.0000018368,0.0000018400,0.0000018434,0.0000018468,0.0000018501, -0.0000018525,0.0000018537,0.0000018540,0.0000018539,0.0000018532, -0.0000018527,0.0000018526,0.0000018527,0.0000018529,0.0000018543, -0.0000018574,0.0000018613,0.0000018636,0.0000018631,0.0000018588, -0.0000018516,0.0000018443,0.0000018392,0.0000018360,0.0000018331, -0.0000018296,0.0000018255,0.0000018214,0.0000018179,0.0000018151, -0.0000018131,0.0000018119,0.0000018114,0.0000018113,0.0000018117, -0.0000018122,0.0000018132,0.0000018156,0.0000018195,0.0000018233, -0.0000018261,0.0000018280,0.0000018297,0.0000018312,0.0000018330, -0.0000018354,0.0000018385,0.0000018410,0.0000018422,0.0000018425, -0.0000018425,0.0000018418,0.0000018399,0.0000018378,0.0000018361, -0.0000018349,0.0000018344,0.0000018348,0.0000018350,0.0000018342, -0.0000018319,0.0000018293,0.0000018282,0.0000018295,0.0000018328, -0.0000018354,0.0000018362,0.0000018364,0.0000018368,0.0000018379, -0.0000018405,0.0000018441,0.0000018473,0.0000018495,0.0000018512, -0.0000018526,0.0000018543,0.0000018563,0.0000018585,0.0000018603, -0.0000018608,0.0000018624,0.0000018674,0.0000018757,0.0000018847, -0.0000018922,0.0000018973,0.0000019005,0.0000019032,0.0000019059, -0.0000019074,0.0000019082,0.0000019079,0.0000019058,0.0000019014, -0.0000018966,0.0000018922,0.0000018883,0.0000018845,0.0000018795, -0.0000018727,0.0000018640,0.0000018551,0.0000018477,0.0000018419, -0.0000018384,0.0000018377,0.0000018388,0.0000018413,0.0000018444, -0.0000018463,0.0000018466,0.0000018473,0.0000018496,0.0000018518, -0.0000018528,0.0000018527,0.0000018518,0.0000018507,0.0000018498, -0.0000018491,0.0000018491,0.0000018497,0.0000018511,0.0000018525, -0.0000018535,0.0000018544,0.0000018556,0.0000018576,0.0000018600, -0.0000018620,0.0000018637,0.0000018654,0.0000018674,0.0000018694, -0.0000018713,0.0000018733,0.0000018752,0.0000018764,0.0000018763, -0.0000018757,0.0000018757,0.0000018759,0.0000018768,0.0000018783, -0.0000018795,0.0000018813,0.0000018835,0.0000018859,0.0000018885, -0.0000018913,0.0000018941,0.0000018965,0.0000018979,0.0000018994, -0.0000019002,0.0000019005,0.0000018999,0.0000018984,0.0000018957, -0.0000018926,0.0000018897,0.0000018873,0.0000018852,0.0000018837, -0.0000018826,0.0000018807,0.0000018776,0.0000018732,0.0000018674, -0.0000018598,0.0000018503,0.0000018407,0.0000018336,0.0000018305, -0.0000018319,0.0000018396,0.0000018531,0.0000018696,0.0000018856, -0.0000018982,0.0000019052,0.0000019071,0.0000019073,0.0000019070, -0.0000019069,0.0000019072,0.0000019078,0.0000019081,0.0000019082, -0.0000019080,0.0000019070,0.0000019055,0.0000019045,0.0000019040, -0.0000019037,0.0000019031,0.0000019019,0.0000019002,0.0000018986, -0.0000018969,0.0000018945,0.0000018922,0.0000018905,0.0000018893, -0.0000018882,0.0000018868,0.0000018855,0.0000018849,0.0000018840, -0.0000018824,0.0000018802,0.0000018780,0.0000018760,0.0000018746, -0.0000018734,0.0000018724,0.0000018720,0.0000018720,0.0000018722, -0.0000018727,0.0000018736,0.0000018752,0.0000018780,0.0000018807, -0.0000018824,0.0000018825,0.0000018811,0.0000018787,0.0000018753, -0.0000018705,0.0000018644,0.0000018590,0.0000018538,0.0000018492, -0.0000018454,0.0000018430,0.0000018426,0.0000018437,0.0000018464, -0.0000018501,0.0000018544,0.0000018586,0.0000018619,0.0000018644, -0.0000018662,0.0000018679,0.0000018707,0.0000018738,0.0000018766, -0.0000018794,0.0000018815,0.0000018825,0.0000018822,0.0000018815, -0.0000018803,0.0000018785,0.0000018762,0.0000018737,0.0000018713, -0.0000018692,0.0000018678,0.0000018671,0.0000018666,0.0000018658, -0.0000018647,0.0000018638,0.0000018621,0.0000018600,0.0000018579, -0.0000018573,0.0000018587,0.0000018619,0.0000018666,0.0000018730, -0.0000018802,0.0000018861,0.0000018902,0.0000018933,0.0000018954, -0.0000018963,0.0000018949,0.0000018933,0.0000018913,0.0000018899, -0.0000018899,0.0000018914,0.0000018942,0.0000018965,0.0000018987, -0.0000018986,0.0000018969,0.0000018947,0.0000018931,0.0000018931, -0.0000018938,0.0000018943,0.0000018949,0.0000018966,0.0000018984, -0.0000019000,0.0000019018,0.0000019039,0.0000019055,0.0000019057, -0.0000019041,0.0000019021,0.0000018993,0.0000018970,0.0000018960, -0.0000018938,0.0000018883,0.0000018806,0.0000018718,0.0000018621, -0.0000018510,0.0000018394,0.0000018303,0.0000018244,0.0000018222, -0.0000018228,0.0000018239,0.0000018227,0.0000018178,0.0000018099, -0.0000018023,0.0000017981,0.0000017966,0.0000017966,0.0000017956, -0.0000017936,0.0000017920,0.0000017922,0.0000017949,0.0000017977, -0.0000018016,0.0000018058,0.0000018087,0.0000018103,0.0000018111, -0.0000018115,0.0000018116,0.0000018096,0.0000018055,0.0000018015, -0.0000018001,0.0000018001,0.0000018003,0.0000017997,0.0000017988, -0.0000017978,0.0000017946,0.0000017894,0.0000017843,0.0000017833, -0.0000017851,0.0000017880,0.0000017895,0.0000017888,0.0000017874, -0.0000017859,0.0000017835,0.0000017805,0.0000017790,0.0000017794, -0.0000017844,0.0000017902,0.0000017962,0.0000018023,0.0000018075, -0.0000018095,0.0000018092,0.0000018060,0.0000018022,0.0000017990, -0.0000017952,0.0000017917,0.0000017898,0.0000017895,0.0000017903, -0.0000017916,0.0000017927,0.0000017937,0.0000017954,0.0000017978, -0.0000017997,0.0000018012,0.0000018012,0.0000018007,0.0000018014, -0.0000018032,0.0000018065,0.0000018104,0.0000018133,0.0000018132, -0.0000018107,0.0000018075,0.0000018025,0.0000017969,0.0000017895, -0.0000017800,0.0000017709,0.0000017635,0.0000017593,0.0000017570, -0.0000017535,0.0000017486,0.0000017438,0.0000017397,0.0000017342, -0.0000017259,0.0000017181,0.0000017149,0.0000017154,0.0000017208, -0.0000017346,0.0000017564,0.0000017836,0.0000018119,0.0000018368, -0.0000018554,0.0000018672,0.0000018744,0.0000018806,0.0000018880, -0.0000018957,0.0000018999,0.0000019024,0.0000018994,0.0000018928, -0.0000018842,0.0000018764,0.0000018702,0.0000018676,0.0000018658, -0.0000018662,0.0000018668,0.0000018674,0.0000018674,0.0000018665, -0.0000018652,0.0000018650,0.0000018659,0.0000018673,0.0000018687, -0.0000018701,0.0000018705,0.0000018687,0.0000018666,0.0000018658, -0.0000018661,0.0000018663,0.0000018659,0.0000018655,0.0000018659, -0.0000018671,0.0000018679,0.0000018674,0.0000018660,0.0000018646, -0.0000018635,0.0000018620,0.0000018599,0.0000018582,0.0000018578, -0.0000018584,0.0000018594,0.0000018600,0.0000018593,0.0000018568, -0.0000018528,0.0000018479,0.0000018419,0.0000018363,0.0000018318, -0.0000018286,0.0000018262,0.0000018250,0.0000018246,0.0000018246, -0.0000018247,0.0000018246,0.0000018244,0.0000018234,0.0000018209, -0.0000018175,0.0000018142,0.0000018127,0.0000018132,0.0000018150, -0.0000018171,0.0000018187,0.0000018199,0.0000018209,0.0000018213, -0.0000018207,0.0000018187,0.0000018157,0.0000018127,0.0000018111, -0.0000018102,0.0000018083,0.0000018066,0.0000018065,0.0000018062, -0.0000018039,0.0000018008,0.0000017989,0.0000017982,0.0000017969, -0.0000017942,0.0000017933,0.0000017963,0.0000018023,0.0000018075, -0.0000018112,0.0000018136,0.0000018145,0.0000018138,0.0000018118, -0.0000018094,0.0000018069,0.0000018032,0.0000017993,0.0000017975, -0.0000017996,0.0000018044,0.0000018098,0.0000018143,0.0000018170, -0.0000018179,0.0000018175,0.0000018170,0.0000018163,0.0000018156, -0.0000018159,0.0000018157,0.0000018154,0.0000018167,0.0000018207, -0.0000018272,0.0000018355,0.0000018433,0.0000018491,0.0000018524, -0.0000018540,0.0000018547,0.0000018551,0.0000018561,0.0000018573, -0.0000018567,0.0000018551,0.0000018526,0.0000018500,0.0000018481, -0.0000018470,0.0000018465,0.0000018461,0.0000018458,0.0000018458, -0.0000018464,0.0000018473,0.0000018483,0.0000018502,0.0000018512, -0.0000018508,0.0000018481,0.0000018434,0.0000018387,0.0000018344, -0.0000018289,0.0000018210,0.0000018108,0.0000017998,0.0000017902, -0.0000017828,0.0000017784,0.0000017767,0.0000017759,0.0000017755, -0.0000017748,0.0000017724,0.0000017681,0.0000017621,0.0000017551, -0.0000017482,0.0000017438,0.0000017413,0.0000017452,0.0000017490, -0.0000017551,0.0000017590,0.0000017600,0.0000017603,0.0000017591, -0.0000017559,0.0000017506,0.0000017437,0.0000017380,0.0000017347, -0.0000017332,0.0000017332,0.0000017310,0.0000017268,0.0000017246, -0.0000017247,0.0000017245,0.0000017227,0.0000017206,0.0000017204, -0.0000017218,0.0000017238,0.0000017266,0.0000017314,0.0000017383, -0.0000017447,0.0000017485,0.0000017496,0.0000017494,0.0000017486, -0.0000017467,0.0000017443,0.0000017449,0.0000017475,0.0000017538, -0.0000017643,0.0000017748,0.0000017800,0.0000017808,0.0000017797, -0.0000017752,0.0000017724,0.0000017736,0.0000017736,0.0000017709, -0.0000017652,0.0000017576,0.0000017541,0.0000017555,0.0000017619, -0.0000017695,0.0000017732,0.0000017720,0.0000017702,0.0000017708, -0.0000017714,0.0000017670,0.0000017557,0.0000017471,0.0000017429, -0.0000017491,0.0000017649,0.0000017712,0.0000017673,0.0000017648, -0.0000017716,0.0000017871,0.0000017904,0.0000018055,0.0000018248, -0.0000018238,0.0000018099,0.0000017875,0.0000017847,0.0000017880, -0.0000017943,0.0000017857,0.0000017750,0.0000017796,0.0000017784, -0.0000017728,0.0000017683,0.0000017642,0.0000017581,0.0000017514, -0.0000017520,0.0000017564,0.0000017568,0.0000017558,0.0000017548, -0.0000017530,0.0000017516,0.0000017513,0.0000017514,0.0000017537, -0.0000017644,0.0000017730,0.0000017661,0.0000017479,0.0000017404, -0.0000017475,0.0000017637,0.0000017748,0.0000017765,0.0000017732, -0.0000017659,0.0000017600,0.0000017586,0.0000017599,0.0000017582, -0.0000017501,0.0000017412,0.0000017387,0.0000017412,0.0000017465, -0.0000017534,0.0000017621,0.0000017670,0.0000017649,0.0000017593, -0.0000017554,0.0000017537,0.0000017539,0.0000017548,0.0000017556, -0.0000017568,0.0000017601,0.0000017643,0.0000017674,0.0000017715, -0.0000017771,0.0000017773,0.0000017712,0.0000017639,0.0000017558, -0.0000017513,0.0000017571,0.0000017740,0.0000017848,0.0000017871, -0.0000017986,0.0000018171,0.0000018285,0.0000018291,0.0000018231, -0.0000018162,0.0000018119,0.0000018086,0.0000018067,0.0000018069, -0.0000018085,0.0000018094,0.0000018100,0.0000018113,0.0000018137, -0.0000018174,0.0000018225,0.0000018275,0.0000018316,0.0000018352, -0.0000018383,0.0000018404,0.0000018413,0.0000018414,0.0000018414, -0.0000018406,0.0000018380,0.0000018338,0.0000018303,0.0000018303, -0.0000018340,0.0000018353,0.0000018302,0.0000018257,0.0000018321, -0.0000018470,0.0000018586,0.0000018631,0.0000018640,0.0000018639, -0.0000018638,0.0000018638,0.0000018638,0.0000018640,0.0000018651, -0.0000018647,0.0000018589,0.0000018509,0.0000018513,0.0000018563, -0.0000018548,0.0000018516,0.0000018588,0.0000018689,0.0000018678, -0.0000018558,0.0000018468,0.0000018462,0.0000018453,0.0000018475, -0.0000018596,0.0000018673,0.0000018679,0.0000018685,0.0000018739, -0.0000018824,0.0000018928,0.0000019012,0.0000019039,0.0000019043, -0.0000019037,0.0000019042,0.0000019055,0.0000019037,0.0000018953, -0.0000018850,0.0000018819,0.0000018821,0.0000018826,0.0000018860, -0.0000018926,0.0000018986,0.0000019021,0.0000019028,0.0000019019, -0.0000019011,0.0000019002,0.0000018992,0.0000018980,0.0000018965, -0.0000018953,0.0000018940,0.0000018924,0.0000018903,0.0000018874, -0.0000018846,0.0000018824,0.0000018819,0.0000018824,0.0000018813, -0.0000018778,0.0000018716,0.0000018655,0.0000018620,0.0000018606, -0.0000018595,0.0000018579,0.0000018563,0.0000018553,0.0000018549, -0.0000018549,0.0000018553,0.0000018559,0.0000018566,0.0000018572, -0.0000018576,0.0000018578,0.0000018577,0.0000018577,0.0000018584, -0.0000018602,0.0000018632,0.0000018672,0.0000018716,0.0000018761, -0.0000018807,0.0000018848,0.0000018886,0.0000018934,0.0000018996, -0.0000019070,0.0000019149,0.0000019215,0.0000019235,0.0000019218, -0.0000019174,0.0000019104,0.0000019039,0.0000018995,0.0000018981, -0.0000018991,0.0000019019,0.0000019062,0.0000019113,0.0000019163, -0.0000019209,0.0000019248,0.0000019277,0.0000019297,0.0000019311, -0.0000019320,0.0000019327,0.0000019330,0.0000019328,0.0000019324, -0.0000019316,0.0000019306,0.0000019295,0.0000019284,0.0000019273, -0.0000019265,0.0000019261,0.0000019257,0.0000019251,0.0000019243, -0.0000019234,0.0000019224,0.0000019213,0.0000019201,0.0000019191, -0.0000019186,0.0000019188,0.0000019197,0.0000019208,0.0000019218, -0.0000019225,0.0000019232,0.0000019238,0.0000019233,0.0000019231, -0.0000019230,0.0000019224,0.0000019208,0.0000019199,0.0000019199, -0.0000019196,0.0000019194,0.0000019190,0.0000019184,0.0000019177, -0.0000019173,0.0000019168,0.0000019162,0.0000019157,0.0000019156, -0.0000019156,0.0000019158,0.0000019164,0.0000019168,0.0000019175, -0.0000019179,0.0000019178,0.0000019173,0.0000019166,0.0000019161, -0.0000019149,0.0000019134,0.0000019119,0.0000019102,0.0000019084, -0.0000019072,0.0000019065,0.0000019060,0.0000019058,0.0000019058, -0.0000019061,0.0000019063,0.0000019063,0.0000019059,0.0000019059, -0.0000019053,0.0000019036,0.0000019004,0.0000018959,0.0000018903, -0.0000018838,0.0000018759,0.0000018667,0.0000018570,0.0000018472, -0.0000018375,0.0000018285,0.0000018207,0.0000018145,0.0000018109, -0.0000018103,0.0000018104,0.0000018112,0.0000018131,0.0000018159, -0.0000018192,0.0000018231,0.0000018278,0.0000018333,0.0000018386, -0.0000018423,0.0000018440,0.0000018443,0.0000018440,0.0000018427, -0.0000018409,0.0000018394,0.0000018379,0.0000018363,0.0000018347, -0.0000018334,0.0000018323,0.0000018316,0.0000018314,0.0000018320, -0.0000018334,0.0000018350,0.0000018367,0.0000018383,0.0000018395, -0.0000018402,0.0000018407,0.0000018415,0.0000018424,0.0000018428, -0.0000018428,0.0000018425,0.0000018425,0.0000018425,0.0000018428, -0.0000018436,0.0000018448,0.0000018457,0.0000018457,0.0000018452, -0.0000018446,0.0000018438,0.0000018427,0.0000018416,0.0000018406, -0.0000018399,0.0000018396,0.0000018394,0.0000018391,0.0000018394, -0.0000018410,0.0000018439,0.0000018477,0.0000018517,0.0000018561, -0.0000018613,0.0000018673,0.0000018733,0.0000018791,0.0000018848, -0.0000018906,0.0000018961,0.0000018997,0.0000019003,0.0000018977, -0.0000018956,0.0000018921,0.0000018897,0.0000018882,0.0000018872, -0.0000018856,0.0000018841,0.0000018821,0.0000018779,0.0000018734, -0.0000018685,0.0000018632,0.0000018577,0.0000018525,0.0000018486, -0.0000018462,0.0000018450,0.0000018441,0.0000018425,0.0000018415, -0.0000018393,0.0000018362,0.0000018334,0.0000018312,0.0000018287, -0.0000018266,0.0000018256,0.0000018258,0.0000018262,0.0000018266, -0.0000018272,0.0000018277,0.0000018279,0.0000018282,0.0000018289, -0.0000018297,0.0000018306,0.0000018317,0.0000018333,0.0000018353, -0.0000018375,0.0000018398,0.0000018424,0.0000018452,0.0000018475, -0.0000018494,0.0000018511,0.0000018522,0.0000018525,0.0000018527, -0.0000018520,0.0000018514,0.0000018509,0.0000018513,0.0000018523, -0.0000018537,0.0000018567,0.0000018608,0.0000018647,0.0000018663, -0.0000018651,0.0000018606,0.0000018545,0.0000018489,0.0000018447, -0.0000018413,0.0000018377,0.0000018334,0.0000018288,0.0000018243, -0.0000018200,0.0000018158,0.0000018118,0.0000018084,0.0000018052, -0.0000018026,0.0000018011,0.0000018010,0.0000018020,0.0000018035, -0.0000018050,0.0000018070,0.0000018096,0.0000018120,0.0000018138, -0.0000018163,0.0000018200,0.0000018245,0.0000018291,0.0000018337, -0.0000018380,0.0000018413,0.0000018431,0.0000018441,0.0000018446, -0.0000018443,0.0000018429,0.0000018413,0.0000018398,0.0000018390, -0.0000018389,0.0000018394,0.0000018395,0.0000018384,0.0000018363, -0.0000018342,0.0000018337,0.0000018353,0.0000018381,0.0000018397, -0.0000018401,0.0000018404,0.0000018411,0.0000018430,0.0000018464, -0.0000018500,0.0000018529,0.0000018551,0.0000018569,0.0000018583, -0.0000018596,0.0000018613,0.0000018631,0.0000018643,0.0000018672, -0.0000018746,0.0000018853,0.0000018945,0.0000018996,0.0000019008, -0.0000019031,0.0000019038,0.0000019062,0.0000019087,0.0000019117, -0.0000019136,0.0000019159,0.0000019153,0.0000019126,0.0000019081, -0.0000019024,0.0000018959,0.0000018884,0.0000018807,0.0000018725, -0.0000018626,0.0000018525,0.0000018440,0.0000018386,0.0000018373, -0.0000018385,0.0000018411,0.0000018442,0.0000018469,0.0000018476, -0.0000018470,0.0000018471,0.0000018487,0.0000018504,0.0000018515, -0.0000018516,0.0000018510,0.0000018505,0.0000018500,0.0000018494, -0.0000018492,0.0000018496,0.0000018498,0.0000018503,0.0000018507, -0.0000018510,0.0000018516,0.0000018530,0.0000018550,0.0000018571, -0.0000018588,0.0000018604,0.0000018628,0.0000018655,0.0000018681, -0.0000018709,0.0000018732,0.0000018743,0.0000018746,0.0000018743, -0.0000018742,0.0000018747,0.0000018763,0.0000018785,0.0000018804, -0.0000018825,0.0000018848,0.0000018870,0.0000018892,0.0000018918, -0.0000018942,0.0000018961,0.0000018972,0.0000018983,0.0000018989, -0.0000018988,0.0000018974,0.0000018951,0.0000018929,0.0000018912, -0.0000018900,0.0000018895,0.0000018892,0.0000018888,0.0000018885, -0.0000018878,0.0000018859,0.0000018825,0.0000018778,0.0000018715, -0.0000018631,0.0000018523,0.0000018411,0.0000018326,0.0000018290, -0.0000018299,0.0000018370,0.0000018497,0.0000018655,0.0000018815, -0.0000018945,0.0000019030,0.0000019074,0.0000019090,0.0000019103, -0.0000019113,0.0000019120,0.0000019122,0.0000019120,0.0000019115, -0.0000019108,0.0000019101,0.0000019101,0.0000019107,0.0000019119, -0.0000019133,0.0000019141,0.0000019141,0.0000019138,0.0000019133, -0.0000019119,0.0000019099,0.0000019082,0.0000019065,0.0000019045, -0.0000019024,0.0000019009,0.0000018988,0.0000018960,0.0000018931, -0.0000018900,0.0000018867,0.0000018840,0.0000018819,0.0000018796, -0.0000018771,0.0000018753,0.0000018746,0.0000018743,0.0000018748, -0.0000018755,0.0000018775,0.0000018807,0.0000018838,0.0000018864, -0.0000018877,0.0000018879,0.0000018874,0.0000018860,0.0000018827, -0.0000018776,0.0000018721,0.0000018661,0.0000018599,0.0000018541, -0.0000018494,0.0000018461,0.0000018445,0.0000018441,0.0000018452, -0.0000018479,0.0000018506,0.0000018535,0.0000018569,0.0000018600, -0.0000018633,0.0000018673,0.0000018719,0.0000018761,0.0000018797, -0.0000018822,0.0000018839,0.0000018859,0.0000018870,0.0000018869, -0.0000018859,0.0000018842,0.0000018819,0.0000018795,0.0000018773, -0.0000018752,0.0000018732,0.0000018717,0.0000018703,0.0000018686, -0.0000018661,0.0000018630,0.0000018596,0.0000018560,0.0000018553, -0.0000018551,0.0000018556,0.0000018580,0.0000018629,0.0000018692, -0.0000018745,0.0000018788,0.0000018827,0.0000018860,0.0000018888, -0.0000018906,0.0000018907,0.0000018897,0.0000018890,0.0000018890, -0.0000018901,0.0000018926,0.0000018958,0.0000018984,0.0000018993, -0.0000018986,0.0000018966,0.0000018946,0.0000018938,0.0000018941, -0.0000018950,0.0000018968,0.0000018989,0.0000019011,0.0000019031, -0.0000019048,0.0000019059,0.0000019057,0.0000019041,0.0000019016, -0.0000018988,0.0000018966,0.0000018966,0.0000018964,0.0000018963, -0.0000018944,0.0000018901,0.0000018845,0.0000018774,0.0000018687, -0.0000018603,0.0000018520,0.0000018448,0.0000018393,0.0000018357, -0.0000018330,0.0000018293,0.0000018228,0.0000018152,0.0000018100, -0.0000018079,0.0000018091,0.0000018099,0.0000018089,0.0000018064, -0.0000018037,0.0000018019,0.0000018009,0.0000018028,0.0000018046, -0.0000018076,0.0000018100,0.0000018113,0.0000018117,0.0000018113, -0.0000018098,0.0000018062,0.0000018022,0.0000018001,0.0000017989, -0.0000017986,0.0000017994,0.0000018010,0.0000018028,0.0000018014, -0.0000017972,0.0000017932,0.0000017915,0.0000017915,0.0000017928, -0.0000017943,0.0000017947,0.0000017944,0.0000017935,0.0000017907, -0.0000017867,0.0000017835,0.0000017825,0.0000017858,0.0000017897, -0.0000017943,0.0000017994,0.0000018050,0.0000018089,0.0000018098, -0.0000018087,0.0000018061,0.0000018033,0.0000017991,0.0000017941, -0.0000017901,0.0000017882,0.0000017883,0.0000017892,0.0000017908, -0.0000017931,0.0000017959,0.0000017985,0.0000018002,0.0000018012, -0.0000018015,0.0000018017,0.0000018032,0.0000018052,0.0000018082, -0.0000018112,0.0000018141,0.0000018148,0.0000018142,0.0000018135, -0.0000018119,0.0000018099,0.0000018061,0.0000017976,0.0000017850, -0.0000017727,0.0000017648,0.0000017610,0.0000017578,0.0000017533, -0.0000017480,0.0000017434,0.0000017379,0.0000017307,0.0000017238, -0.0000017188,0.0000017161,0.0000017177,0.0000017222,0.0000017320, -0.0000017485,0.0000017702,0.0000017954,0.0000018209,0.0000018431, -0.0000018594,0.0000018703,0.0000018778,0.0000018848,0.0000018923, -0.0000018993,0.0000019026,0.0000019030,0.0000018986,0.0000018908, -0.0000018817,0.0000018729,0.0000018652,0.0000018607,0.0000018580, -0.0000018579,0.0000018590,0.0000018612,0.0000018645,0.0000018662, -0.0000018677,0.0000018688,0.0000018695,0.0000018694,0.0000018679, -0.0000018661,0.0000018647,0.0000018637,0.0000018628,0.0000018616, -0.0000018606,0.0000018607,0.0000018622,0.0000018641,0.0000018651, -0.0000018655,0.0000018663,0.0000018673,0.0000018676,0.0000018659, -0.0000018628,0.0000018602,0.0000018593,0.0000018599,0.0000018607, -0.0000018604,0.0000018583,0.0000018542,0.0000018484,0.0000018420, -0.0000018364,0.0000018319,0.0000018286,0.0000018264,0.0000018253, -0.0000018248,0.0000018246,0.0000018248,0.0000018246,0.0000018238, -0.0000018222,0.0000018193,0.0000018153,0.0000018108,0.0000018076, -0.0000018062,0.0000018063,0.0000018075,0.0000018096,0.0000018122, -0.0000018147,0.0000018169,0.0000018183,0.0000018184,0.0000018169, -0.0000018143,0.0000018113,0.0000018095,0.0000018085,0.0000018065, -0.0000018052,0.0000018055,0.0000018051,0.0000018022,0.0000017983, -0.0000017958,0.0000017953,0.0000017947,0.0000017935,0.0000017939, -0.0000017979,0.0000018032,0.0000018075,0.0000018102,0.0000018119, -0.0000018128,0.0000018126,0.0000018126,0.0000018121,0.0000018106, -0.0000018077,0.0000018044,0.0000018033,0.0000018051,0.0000018089, -0.0000018131,0.0000018166,0.0000018188,0.0000018200,0.0000018206, -0.0000018207,0.0000018202,0.0000018197,0.0000018188,0.0000018170, -0.0000018157,0.0000018161,0.0000018182,0.0000018229,0.0000018300, -0.0000018379,0.0000018448,0.0000018497,0.0000018521,0.0000018531, -0.0000018539,0.0000018548,0.0000018550,0.0000018550,0.0000018542, -0.0000018535,0.0000018525,0.0000018527,0.0000018535,0.0000018531, -0.0000018514,0.0000018494,0.0000018480,0.0000018474,0.0000018483, -0.0000018503,0.0000018522,0.0000018525,0.0000018522,0.0000018506, -0.0000018492,0.0000018480,0.0000018459,0.0000018421,0.0000018360, -0.0000018280,0.0000018187,0.0000018087,0.0000018000,0.0000017930, -0.0000017874,0.0000017839,0.0000017822,0.0000017812,0.0000017800, -0.0000017780,0.0000017746,0.0000017690,0.0000017614,0.0000017545, -0.0000017505,0.0000017484,0.0000017528,0.0000017557,0.0000017587, -0.0000017622,0.0000017646,0.0000017658,0.0000017638,0.0000017593, -0.0000017528,0.0000017468,0.0000017430,0.0000017416,0.0000017387, -0.0000017345,0.0000017319,0.0000017305,0.0000017281,0.0000017241, -0.0000017211,0.0000017204,0.0000017230,0.0000017274,0.0000017320, -0.0000017378,0.0000017442,0.0000017486,0.0000017499,0.0000017495, -0.0000017484,0.0000017466,0.0000017456,0.0000017452,0.0000017473, -0.0000017525,0.0000017618,0.0000017743,0.0000017833,0.0000017845, -0.0000017826,0.0000017794,0.0000017749,0.0000017738,0.0000017757, -0.0000017743,0.0000017700,0.0000017638,0.0000017575,0.0000017563, -0.0000017585,0.0000017640,0.0000017707,0.0000017735,0.0000017721, -0.0000017704,0.0000017708,0.0000017716,0.0000017692,0.0000017600, -0.0000017512,0.0000017450,0.0000017457,0.0000017580,0.0000017679, -0.0000017656,0.0000017642,0.0000017707,0.0000017861,0.0000017909, -0.0000018100,0.0000018251,0.0000018239,0.0000018098,0.0000017874, -0.0000017851,0.0000017884,0.0000017951,0.0000017854,0.0000017748, -0.0000017795,0.0000017782,0.0000017724,0.0000017679,0.0000017645, -0.0000017576,0.0000017513,0.0000017528,0.0000017570,0.0000017575, -0.0000017577,0.0000017573,0.0000017548,0.0000017520,0.0000017506, -0.0000017507,0.0000017526,0.0000017611,0.0000017733,0.0000017702, -0.0000017514,0.0000017401,0.0000017439,0.0000017594,0.0000017728, -0.0000017760,0.0000017737,0.0000017664,0.0000017596,0.0000017578, -0.0000017591,0.0000017584,0.0000017521,0.0000017441,0.0000017406, -0.0000017412,0.0000017447,0.0000017505,0.0000017588,0.0000017661, -0.0000017668,0.0000017622,0.0000017580,0.0000017561,0.0000017557, -0.0000017564,0.0000017587,0.0000017622,0.0000017652,0.0000017684, -0.0000017747,0.0000017794,0.0000017777,0.0000017703,0.0000017623, -0.0000017551,0.0000017551,0.0000017675,0.0000017830,0.0000017883, -0.0000017959,0.0000018142,0.0000018290,0.0000018303,0.0000018209, -0.0000018112,0.0000018072,0.0000018034,0.0000018000,0.0000017993, -0.0000018006,0.0000018024,0.0000018046,0.0000018078,0.0000018113, -0.0000018151,0.0000018195,0.0000018241,0.0000018282,0.0000018319, -0.0000018353,0.0000018418,0.0000018439,0.0000018452,0.0000018459, -0.0000018464,0.0000018459,0.0000018437,0.0000018390,0.0000018331, -0.0000018295,0.0000018310,0.0000018351,0.0000018341,0.0000018275, -0.0000018278,0.0000018377,0.0000018498,0.0000018563,0.0000018587, -0.0000018597,0.0000018604,0.0000018611,0.0000018618,0.0000018633, -0.0000018657,0.0000018664,0.0000018613,0.0000018528,0.0000018517, -0.0000018551,0.0000018534,0.0000018535,0.0000018624,0.0000018675, -0.0000018605,0.0000018487,0.0000018444,0.0000018436,0.0000018452, -0.0000018564,0.0000018658,0.0000018657,0.0000018648,0.0000018675, -0.0000018723,0.0000018804,0.0000018910,0.0000019001,0.0000019041, -0.0000019041,0.0000019028,0.0000019023,0.0000019027,0.0000018995, -0.0000018899,0.0000018808,0.0000018794,0.0000018810,0.0000018808, -0.0000018826,0.0000018889,0.0000018961,0.0000019015,0.0000019041, -0.0000019037,0.0000019020,0.0000019000,0.0000018982,0.0000018969, -0.0000018954,0.0000018943,0.0000018932,0.0000018921,0.0000018911, -0.0000018898,0.0000018883,0.0000018864,0.0000018844,0.0000018829, -0.0000018823,0.0000018818,0.0000018791,0.0000018738,0.0000018686, -0.0000018651,0.0000018633,0.0000018626,0.0000018620,0.0000018616, -0.0000018613,0.0000018612,0.0000018614,0.0000018619,0.0000018623, -0.0000018625,0.0000018627,0.0000018633,0.0000018647,0.0000018672, -0.0000018711,0.0000018759,0.0000018812,0.0000018857,0.0000018892, -0.0000018921,0.0000018951,0.0000018995,0.0000019059,0.0000019135, -0.0000019198,0.0000019220,0.0000019207,0.0000019159,0.0000019083, -0.0000019021,0.0000018991,0.0000018993,0.0000019025,0.0000019087, -0.0000019165,0.0000019241,0.0000019307,0.0000019358,0.0000019400, -0.0000019435,0.0000019463,0.0000019485,0.0000019501,0.0000019513, -0.0000019521,0.0000019528,0.0000019531,0.0000019528,0.0000019525, -0.0000019517,0.0000019506,0.0000019495,0.0000019481,0.0000019470, -0.0000019463,0.0000019457,0.0000019447,0.0000019434,0.0000019419, -0.0000019405,0.0000019390,0.0000019372,0.0000019353,0.0000019334, -0.0000019319,0.0000019311,0.0000019313,0.0000019319,0.0000019325, -0.0000019330,0.0000019334,0.0000019337,0.0000019336,0.0000019334, -0.0000019336,0.0000019335,0.0000019328,0.0000019328,0.0000019332, -0.0000019333,0.0000019336,0.0000019342,0.0000019345,0.0000019347, -0.0000019350,0.0000019353,0.0000019353,0.0000019351,0.0000019347, -0.0000019346,0.0000019347,0.0000019354,0.0000019362,0.0000019372, -0.0000019383,0.0000019389,0.0000019392,0.0000019396,0.0000019398, -0.0000019394,0.0000019384,0.0000019375,0.0000019364,0.0000019347, -0.0000019329,0.0000019316,0.0000019304,0.0000019294,0.0000019286, -0.0000019281,0.0000019275,0.0000019269,0.0000019264,0.0000019268, -0.0000019269,0.0000019267,0.0000019260,0.0000019251,0.0000019237, -0.0000019219,0.0000019194,0.0000019161,0.0000019120,0.0000019070, -0.0000019007,0.0000018932,0.0000018851,0.0000018767,0.0000018681, -0.0000018597,0.0000018516,0.0000018436,0.0000018360,0.0000018295, -0.0000018247,0.0000018221,0.0000018204,0.0000018197,0.0000018210, -0.0000018235,0.0000018261,0.0000018297,0.0000018335,0.0000018367, -0.0000018387,0.0000018393,0.0000018388,0.0000018378,0.0000018364, -0.0000018348,0.0000018335,0.0000018324,0.0000018316,0.0000018317, -0.0000018325,0.0000018335,0.0000018345,0.0000018359,0.0000018374, -0.0000018387,0.0000018397,0.0000018406,0.0000018416,0.0000018426, -0.0000018430,0.0000018432,0.0000018430,0.0000018425,0.0000018412, -0.0000018399,0.0000018394,0.0000018393,0.0000018392,0.0000018389, -0.0000018386,0.0000018385,0.0000018381,0.0000018374,0.0000018368, -0.0000018365,0.0000018367,0.0000018371,0.0000018376,0.0000018379, -0.0000018376,0.0000018369,0.0000018371,0.0000018387,0.0000018409, -0.0000018438,0.0000018476,0.0000018523,0.0000018583,0.0000018651, -0.0000018714,0.0000018769,0.0000018825,0.0000018889,0.0000018947, -0.0000018986,0.0000018996,0.0000018969,0.0000018945,0.0000018906, -0.0000018875,0.0000018852,0.0000018838,0.0000018833,0.0000018828, -0.0000018817,0.0000018803,0.0000018780,0.0000018738,0.0000018686, -0.0000018631,0.0000018573,0.0000018521,0.0000018487,0.0000018471, -0.0000018467,0.0000018464,0.0000018456,0.0000018440,0.0000018418, -0.0000018397,0.0000018382,0.0000018376,0.0000018372,0.0000018370, -0.0000018374,0.0000018376,0.0000018375,0.0000018378,0.0000018385, -0.0000018395,0.0000018406,0.0000018418,0.0000018430,0.0000018443, -0.0000018454,0.0000018468,0.0000018480,0.0000018484,0.0000018489, -0.0000018491,0.0000018493,0.0000018494,0.0000018493,0.0000018496, -0.0000018505,0.0000018513,0.0000018535,0.0000018565,0.0000018601, -0.0000018637,0.0000018665,0.0000018673,0.0000018652,0.0000018604, -0.0000018549,0.0000018505,0.0000018470,0.0000018436,0.0000018397, -0.0000018351,0.0000018304,0.0000018260,0.0000018222,0.0000018183, -0.0000018139,0.0000018091,0.0000018042,0.0000018000,0.0000017968, -0.0000017946,0.0000017939,0.0000017947,0.0000017960,0.0000017969, -0.0000017970,0.0000017977,0.0000017999,0.0000018034,0.0000018077, -0.0000018126,0.0000018183,0.0000018243,0.0000018297,0.0000018344, -0.0000018388,0.0000018423,0.0000018445,0.0000018457,0.0000018463, -0.0000018462,0.0000018452,0.0000018435,0.0000018420,0.0000018419, -0.0000018425,0.0000018433,0.0000018433,0.0000018422,0.0000018401, -0.0000018383,0.0000018382,0.0000018399,0.0000018419,0.0000018428, -0.0000018430,0.0000018433,0.0000018443,0.0000018468,0.0000018502, -0.0000018534,0.0000018560,0.0000018582,0.0000018599,0.0000018613, -0.0000018627,0.0000018649,0.0000018681,0.0000018739,0.0000018829, -0.0000018926,0.0000018981,0.0000018996,0.0000018982,0.0000018977, -0.0000018985,0.0000019003,0.0000019027,0.0000019062,0.0000019102, -0.0000019141,0.0000019167,0.0000019181,0.0000019181,0.0000019156, -0.0000019107,0.0000019032,0.0000018938,0.0000018842,0.0000018738, -0.0000018620,0.0000018507,0.0000018420,0.0000018379,0.0000018378, -0.0000018399,0.0000018432,0.0000018471,0.0000018502,0.0000018510, -0.0000018505,0.0000018502,0.0000018503,0.0000018509,0.0000018512, -0.0000018512,0.0000018513,0.0000018515,0.0000018514,0.0000018508, -0.0000018504,0.0000018499,0.0000018495,0.0000018490,0.0000018487, -0.0000018483,0.0000018483,0.0000018493,0.0000018517,0.0000018545, -0.0000018567,0.0000018589,0.0000018617,0.0000018643,0.0000018671, -0.0000018699,0.0000018715,0.0000018722,0.0000018724,0.0000018720, -0.0000018716,0.0000018724,0.0000018743,0.0000018763,0.0000018783, -0.0000018805,0.0000018828,0.0000018849,0.0000018873,0.0000018899, -0.0000018921,0.0000018935,0.0000018939,0.0000018945,0.0000018945, -0.0000018941,0.0000018933,0.0000018926,0.0000018923,0.0000018923, -0.0000018924,0.0000018927,0.0000018927,0.0000018929,0.0000018932, -0.0000018934,0.0000018930,0.0000018913,0.0000018876,0.0000018817, -0.0000018739,0.0000018641,0.0000018521,0.0000018396,0.0000018302, -0.0000018265,0.0000018285,0.0000018365,0.0000018490,0.0000018633, -0.0000018769,0.0000018886,0.0000018980,0.0000019043,0.0000019084, -0.0000019114,0.0000019125,0.0000019129,0.0000019130,0.0000019129, -0.0000019123,0.0000019118,0.0000019120,0.0000019130,0.0000019148, -0.0000019166,0.0000019176,0.0000019182,0.0000019192,0.0000019197, -0.0000019196,0.0000019196,0.0000019198,0.0000019198,0.0000019192, -0.0000019191,0.0000019187,0.0000019170,0.0000019141,0.0000019101, -0.0000019048,0.0000018993,0.0000018945,0.0000018904,0.0000018862, -0.0000018824,0.0000018801,0.0000018795,0.0000018794,0.0000018803, -0.0000018813,0.0000018833,0.0000018858,0.0000018880,0.0000018893, -0.0000018895,0.0000018891,0.0000018885,0.0000018873,0.0000018853, -0.0000018827,0.0000018796,0.0000018753,0.0000018705,0.0000018661, -0.0000018621,0.0000018584,0.0000018554,0.0000018530,0.0000018512, -0.0000018502,0.0000018502,0.0000018504,0.0000018514,0.0000018534, -0.0000018557,0.0000018588,0.0000018631,0.0000018672,0.0000018707, -0.0000018747,0.0000018789,0.0000018826,0.0000018854,0.0000018870, -0.0000018866,0.0000018868,0.0000018863,0.0000018851,0.0000018835, -0.0000018819,0.0000018809,0.0000018809,0.0000018807,0.0000018792, -0.0000018766,0.0000018732,0.0000018688,0.0000018649,0.0000018616, -0.0000018587,0.0000018578,0.0000018587,0.0000018607,0.0000018646, -0.0000018686,0.0000018729,0.0000018772,0.0000018817,0.0000018860, -0.0000018890,0.0000018907,0.0000018912,0.0000018915,0.0000018918, -0.0000018929,0.0000018953,0.0000018976,0.0000018991,0.0000018993, -0.0000018985,0.0000018960,0.0000018937,0.0000018926,0.0000018927, -0.0000018939,0.0000018963,0.0000018992,0.0000019025,0.0000019056, -0.0000019084,0.0000019093,0.0000019081,0.0000019053,0.0000019011, -0.0000018966,0.0000018937,0.0000018921,0.0000018928,0.0000018939, -0.0000018929,0.0000018919,0.0000018905,0.0000018883,0.0000018855, -0.0000018810,0.0000018743,0.0000018661,0.0000018575,0.0000018500, -0.0000018438,0.0000018371,0.0000018294,0.0000018228,0.0000018193, -0.0000018201,0.0000018219,0.0000018230,0.0000018222,0.0000018198, -0.0000018166,0.0000018125,0.0000018090,0.0000018071,0.0000018076, -0.0000018085,0.0000018101,0.0000018113,0.0000018116,0.0000018111, -0.0000018087,0.0000018052,0.0000018016,0.0000017984,0.0000017962, -0.0000017968,0.0000017995,0.0000018027,0.0000018045,0.0000018037, -0.0000018020,0.0000018006,0.0000017990,0.0000017983,0.0000017984, -0.0000017985,0.0000017986,0.0000017982,0.0000017960,0.0000017925, -0.0000017892,0.0000017872,0.0000017887,0.0000017912,0.0000017934, -0.0000017961,0.0000018009,0.0000018052,0.0000018078,0.0000018084, -0.0000018083,0.0000018076,0.0000018051,0.0000018008,0.0000017963, -0.0000017931,0.0000017913,0.0000017912,0.0000017925,0.0000017953, -0.0000017991,0.0000018028,0.0000018047,0.0000018053,0.0000018062, -0.0000018074,0.0000018095,0.0000018117,0.0000018138,0.0000018156, -0.0000018171,0.0000018171,0.0000018157,0.0000018148,0.0000018147, -0.0000018157,0.0000018169,0.0000018129,0.0000018031,0.0000017896, -0.0000017774,0.0000017685,0.0000017622,0.0000017571,0.0000017525, -0.0000017473,0.0000017414,0.0000017359,0.0000017306,0.0000017254, -0.0000017213,0.0000017200,0.0000017226,0.0000017266,0.0000017333, -0.0000017439,0.0000017602,0.0000017816,0.0000018060,0.0000018301, -0.0000018501,0.0000018647,0.0000018737,0.0000018801,0.0000018871, -0.0000018949,0.0000019009,0.0000019025,0.0000019013,0.0000018957, -0.0000018858,0.0000018739,0.0000018631,0.0000018554,0.0000018506, -0.0000018496,0.0000018519,0.0000018566,0.0000018616,0.0000018659, -0.0000018690,0.0000018697,0.0000018693,0.0000018681,0.0000018670, -0.0000018661,0.0000018647,0.0000018622,0.0000018600,0.0000018589, -0.0000018592,0.0000018608,0.0000018628,0.0000018642,0.0000018658, -0.0000018681,0.0000018699,0.0000018696,0.0000018670,0.0000018634, -0.0000018610,0.0000018606,0.0000018608,0.0000018605,0.0000018585, -0.0000018544,0.0000018489,0.0000018436,0.0000018393,0.0000018359, -0.0000018325,0.0000018290,0.0000018263,0.0000018247,0.0000018236, -0.0000018228,0.0000018223,0.0000018209,0.0000018184,0.0000018154, -0.0000018115,0.0000018067,0.0000018024,0.0000018000,0.0000017990, -0.0000017986,0.0000017991,0.0000018009,0.0000018037,0.0000018070, -0.0000018109,0.0000018140,0.0000018154,0.0000018151,0.0000018126, -0.0000018098,0.0000018086,0.0000018075,0.0000018051,0.0000018040, -0.0000018043,0.0000018036,0.0000017999,0.0000017953,0.0000017928, -0.0000017931,0.0000017940,0.0000017944,0.0000017957,0.0000017987, -0.0000018024,0.0000018056,0.0000018079,0.0000018096,0.0000018110, -0.0000018120,0.0000018128,0.0000018127,0.0000018126,0.0000018112, -0.0000018094,0.0000018091,0.0000018105,0.0000018132,0.0000018155, -0.0000018173,0.0000018188,0.0000018203,0.0000018218,0.0000018234, -0.0000018246,0.0000018247,0.0000018236,0.0000018213,0.0000018190, -0.0000018172,0.0000018178,0.0000018206,0.0000018257,0.0000018321, -0.0000018383,0.0000018431,0.0000018470,0.0000018505,0.0000018528, -0.0000018533,0.0000018532,0.0000018527,0.0000018521,0.0000018523, -0.0000018541,0.0000018566,0.0000018571,0.0000018555,0.0000018535, -0.0000018516,0.0000018499,0.0000018498,0.0000018510,0.0000018519, -0.0000018524,0.0000018529,0.0000018540,0.0000018549,0.0000018553, -0.0000018552,0.0000018544,0.0000018528,0.0000018501,0.0000018453, -0.0000018383,0.0000018305,0.0000018218,0.0000018122,0.0000018030, -0.0000017954,0.0000017899,0.0000017862,0.0000017849,0.0000017856, -0.0000017857,0.0000017829,0.0000017775,0.0000017693,0.0000017617, -0.0000017573,0.0000017537,0.0000017551,0.0000017588,0.0000017636, -0.0000017672,0.0000017690,0.0000017692,0.0000017656,0.0000017604, -0.0000017563,0.0000017539,0.0000017505,0.0000017470,0.0000017452, -0.0000017437,0.0000017401,0.0000017346,0.0000017298,0.0000017289, -0.0000017320,0.0000017371,0.0000017416,0.0000017457,0.0000017485, -0.0000017494,0.0000017492,0.0000017480,0.0000017459,0.0000017453, -0.0000017468,0.0000017503,0.0000017558,0.0000017641,0.0000017747, -0.0000017850,0.0000017895,0.0000017876,0.0000017837,0.0000017794, -0.0000017759,0.0000017762,0.0000017774,0.0000017741,0.0000017686, -0.0000017624,0.0000017586,0.0000017587,0.0000017618,0.0000017668, -0.0000017721,0.0000017738,0.0000017724,0.0000017710,0.0000017716, -0.0000017719,0.0000017701,0.0000017632,0.0000017549,0.0000017481, -0.0000017439,0.0000017523,0.0000017628,0.0000017632,0.0000017631, -0.0000017701,0.0000017854,0.0000017920,0.0000018150,0.0000018263, -0.0000018248,0.0000018088,0.0000017867,0.0000017851,0.0000017889, -0.0000017952,0.0000017845,0.0000017748,0.0000017792,0.0000017782, -0.0000017730,0.0000017686,0.0000017647,0.0000017566,0.0000017514, -0.0000017540,0.0000017583,0.0000017595,0.0000017611,0.0000017615, -0.0000017592,0.0000017544,0.0000017509,0.0000017503,0.0000017519, -0.0000017585,0.0000017710,0.0000017726,0.0000017548,0.0000017401, -0.0000017411,0.0000017552,0.0000017701,0.0000017755,0.0000017739, -0.0000017667,0.0000017595,0.0000017574,0.0000017587,0.0000017586, -0.0000017535,0.0000017473,0.0000017438,0.0000017423,0.0000017433, -0.0000017477,0.0000017554,0.0000017650,0.0000017686,0.0000017652, -0.0000017610,0.0000017595,0.0000017599,0.0000017620,0.0000017646, -0.0000017670,0.0000017716,0.0000017790,0.0000017820,0.0000017772, -0.0000017690,0.0000017609,0.0000017564,0.0000017613,0.0000017780, -0.0000017898,0.0000017944,0.0000018094,0.0000018277,0.0000018322, -0.0000018226,0.0000018088,0.0000018037,0.0000018014,0.0000017973, -0.0000017957,0.0000017960,0.0000017977,0.0000018005,0.0000018041, -0.0000018084,0.0000018129,0.0000018175,0.0000018221,0.0000018265, -0.0000018308,0.0000018350,0.0000018387,0.0000018420,0.0000018438, -0.0000018452,0.0000018464,0.0000018474,0.0000018481,0.0000018482, -0.0000018461,0.0000018403,0.0000018330,0.0000018299,0.0000018333, -0.0000018365,0.0000018326,0.0000018276,0.0000018295,0.0000018374, -0.0000018443,0.0000018483,0.0000018513,0.0000018545,0.0000018573, -0.0000018590,0.0000018614,0.0000018655,0.0000018677,0.0000018631, -0.0000018544,0.0000018523,0.0000018539,0.0000018530,0.0000018563, -0.0000018647,0.0000018637,0.0000018523,0.0000018440,0.0000018425, -0.0000018429,0.0000018507,0.0000018633,0.0000018654,0.0000018633, -0.0000018640,0.0000018652,0.0000018675,0.0000018727,0.0000018825, -0.0000018952,0.0000019042,0.0000019062,0.0000019040,0.0000019010, -0.0000018967,0.0000018886,0.0000018796,0.0000018760,0.0000018787, -0.0000018813,0.0000018808,0.0000018812,0.0000018864,0.0000018939, -0.0000019008,0.0000019053,0.0000019068,0.0000019055,0.0000019028, -0.0000018999,0.0000018974,0.0000018951,0.0000018934,0.0000018920, -0.0000018910,0.0000018906,0.0000018906,0.0000018903,0.0000018893, -0.0000018872,0.0000018849,0.0000018837,0.0000018835,0.0000018831, -0.0000018809,0.0000018772,0.0000018732,0.0000018702,0.0000018684, -0.0000018674,0.0000018670,0.0000018670,0.0000018671,0.0000018676, -0.0000018685,0.0000018693,0.0000018705,0.0000018727,0.0000018761, -0.0000018803,0.0000018850,0.0000018897,0.0000018935,0.0000018961, -0.0000018980,0.0000019009,0.0000019058,0.0000019122,0.0000019180, -0.0000019204,0.0000019188,0.0000019139,0.0000019069,0.0000019018, -0.0000019005,0.0000019025,0.0000019086,0.0000019179,0.0000019278, -0.0000019369,0.0000019445,0.0000019506,0.0000019550,0.0000019571, -0.0000019584,0.0000019590,0.0000019590,0.0000019587,0.0000019581, -0.0000019572,0.0000019561,0.0000019548,0.0000019538,0.0000019526, -0.0000019516,0.0000019508,0.0000019498,0.0000019492,0.0000019489, -0.0000019486,0.0000019485,0.0000019486,0.0000019483,0.0000019476, -0.0000019466,0.0000019454,0.0000019442,0.0000019430,0.0000019417, -0.0000019402,0.0000019385,0.0000019371,0.0000019369,0.0000019373, -0.0000019379,0.0000019385,0.0000019390,0.0000019392,0.0000019395, -0.0000019397,0.0000019402,0.0000019406,0.0000019404,0.0000019403, -0.0000019405,0.0000019402,0.0000019400,0.0000019401,0.0000019402, -0.0000019403,0.0000019404,0.0000019405,0.0000019405,0.0000019403, -0.0000019400,0.0000019395,0.0000019395,0.0000019399,0.0000019413, -0.0000019422,0.0000019431,0.0000019441,0.0000019450,0.0000019457, -0.0000019464,0.0000019468,0.0000019468,0.0000019465,0.0000019463, -0.0000019461,0.0000019456,0.0000019450,0.0000019445,0.0000019444, -0.0000019443,0.0000019444,0.0000019447,0.0000019456,0.0000019469, -0.0000019483,0.0000019494,0.0000019502,0.0000019507,0.0000019506, -0.0000019494,0.0000019474,0.0000019445,0.0000019408,0.0000019362, -0.0000019312,0.0000019259,0.0000019207,0.0000019159,0.0000019119, -0.0000019085,0.0000019051,0.0000019015,0.0000018977,0.0000018931, -0.0000018872,0.0000018799,0.0000018710,0.0000018607,0.0000018502, -0.0000018403,0.0000018317,0.0000018258,0.0000018222,0.0000018201, -0.0000018201,0.0000018206,0.0000018222,0.0000018243,0.0000018262, -0.0000018275,0.0000018279,0.0000018273,0.0000018267,0.0000018266, -0.0000018269,0.0000018278,0.0000018290,0.0000018302,0.0000018316, -0.0000018333,0.0000018351,0.0000018369,0.0000018383,0.0000018398, -0.0000018412,0.0000018422,0.0000018428,0.0000018434,0.0000018434, -0.0000018422,0.0000018404,0.0000018388,0.0000018376,0.0000018366, -0.0000018360,0.0000018358,0.0000018354,0.0000018351,0.0000018346, -0.0000018337,0.0000018329,0.0000018326,0.0000018326,0.0000018332, -0.0000018341,0.0000018347,0.0000018349,0.0000018344,0.0000018339, -0.0000018339,0.0000018348,0.0000018367,0.0000018396,0.0000018442, -0.0000018495,0.0000018551,0.0000018605,0.0000018650,0.0000018689, -0.0000018731,0.0000018787,0.0000018853,0.0000018911,0.0000018946, -0.0000018955,0.0000018938,0.0000018906,0.0000018863,0.0000018823, -0.0000018796,0.0000018787,0.0000018789,0.0000018797,0.0000018800, -0.0000018787,0.0000018763,0.0000018750,0.0000018708,0.0000018666, -0.0000018627,0.0000018601,0.0000018581,0.0000018561,0.0000018544, -0.0000018527,0.0000018514,0.0000018493,0.0000018473,0.0000018456, -0.0000018442,0.0000018432,0.0000018422,0.0000018414,0.0000018406, -0.0000018410,0.0000018416,0.0000018422,0.0000018429,0.0000018436, -0.0000018443,0.0000018452,0.0000018460,0.0000018467,0.0000018473, -0.0000018475,0.0000018479,0.0000018489,0.0000018508,0.0000018529, -0.0000018554,0.0000018585,0.0000018618,0.0000018647,0.0000018666, -0.0000018668,0.0000018650,0.0000018622,0.0000018579,0.0000018539, -0.0000018504,0.0000018470,0.0000018428,0.0000018377,0.0000018328, -0.0000018287,0.0000018256,0.0000018228,0.0000018196,0.0000018157, -0.0000018109,0.0000018054,0.0000018001,0.0000017957,0.0000017923, -0.0000017899,0.0000017883,0.0000017874,0.0000017870,0.0000017872, -0.0000017879,0.0000017898,0.0000017934,0.0000017983,0.0000018035, -0.0000018085,0.0000018137,0.0000018195,0.0000018255,0.0000018307, -0.0000018353,0.0000018397,0.0000018430,0.0000018450,0.0000018464, -0.0000018474,0.0000018476,0.0000018467,0.0000018450,0.0000018441, -0.0000018447,0.0000018461,0.0000018472,0.0000018471,0.0000018457, -0.0000018435,0.0000018418,0.0000018418,0.0000018433,0.0000018445, -0.0000018446,0.0000018439,0.0000018437,0.0000018453,0.0000018483, -0.0000018515,0.0000018544,0.0000018571,0.0000018598,0.0000018624, -0.0000018654,0.0000018689,0.0000018739,0.0000018814,0.0000018899, -0.0000018952,0.0000018966,0.0000018953,0.0000018939,0.0000018942, -0.0000018966,0.0000019000,0.0000019023,0.0000019048,0.0000019081, -0.0000019114,0.0000019141,0.0000019165,0.0000019179,0.0000019182, -0.0000019169,0.0000019137,0.0000019079,0.0000018997,0.0000018897, -0.0000018780,0.0000018655,0.0000018546,0.0000018465,0.0000018420, -0.0000018413,0.0000018429,0.0000018462,0.0000018504,0.0000018535, -0.0000018546,0.0000018553,0.0000018553,0.0000018554,0.0000018555, -0.0000018554,0.0000018560,0.0000018571,0.0000018576,0.0000018574, -0.0000018566,0.0000018556,0.0000018545,0.0000018530,0.0000018510, -0.0000018492,0.0000018477,0.0000018468,0.0000018475,0.0000018496, -0.0000018525,0.0000018554,0.0000018586,0.0000018615,0.0000018642, -0.0000018673,0.0000018696,0.0000018709,0.0000018716,0.0000018715, -0.0000018707,0.0000018702,0.0000018703,0.0000018712,0.0000018725, -0.0000018745,0.0000018771,0.0000018793,0.0000018812,0.0000018838, -0.0000018867,0.0000018890,0.0000018902,0.0000018907,0.0000018917, -0.0000018924,0.0000018929,0.0000018938,0.0000018954,0.0000018970, -0.0000018980,0.0000018982,0.0000018980,0.0000018978,0.0000018980, -0.0000018984,0.0000018993,0.0000019004,0.0000019001,0.0000018972, -0.0000018918,0.0000018845,0.0000018753,0.0000018632,0.0000018487, -0.0000018352,0.0000018272,0.0000018261,0.0000018293,0.0000018379, -0.0000018493,0.0000018610,0.0000018718,0.0000018810,0.0000018882, -0.0000018944,0.0000018998,0.0000019035,0.0000019056,0.0000019070, -0.0000019077,0.0000019079,0.0000019085,0.0000019099,0.0000019117, -0.0000019138,0.0000019156,0.0000019171,0.0000019185,0.0000019198, -0.0000019205,0.0000019210,0.0000019218,0.0000019232,0.0000019246, -0.0000019263,0.0000019278,0.0000019292,0.0000019296,0.0000019285, -0.0000019255,0.0000019210,0.0000019156,0.0000019098,0.0000019034, -0.0000018963,0.0000018900,0.0000018857,0.0000018837,0.0000018832, -0.0000018846,0.0000018866,0.0000018893,0.0000018925,0.0000018952, -0.0000018963,0.0000018960,0.0000018946,0.0000018926,0.0000018899, -0.0000018867,0.0000018838,0.0000018806,0.0000018765,0.0000018723, -0.0000018695,0.0000018676,0.0000018658,0.0000018641,0.0000018626, -0.0000018609,0.0000018590,0.0000018573,0.0000018561,0.0000018554, -0.0000018552,0.0000018558,0.0000018571,0.0000018595,0.0000018616, -0.0000018642,0.0000018677,0.0000018713,0.0000018747,0.0000018779, -0.0000018801,0.0000018818,0.0000018829,0.0000018830,0.0000018824, -0.0000018821,0.0000018826,0.0000018837,0.0000018854,0.0000018865, -0.0000018863,0.0000018853,0.0000018837,0.0000018812,0.0000018779, -0.0000018733,0.0000018693,0.0000018655,0.0000018630,0.0000018634, -0.0000018648,0.0000018677,0.0000018720,0.0000018769,0.0000018817, -0.0000018869,0.0000018912,0.0000018938,0.0000018959,0.0000018972, -0.0000018983,0.0000019003,0.0000019022,0.0000019032,0.0000019033, -0.0000019030,0.0000019012,0.0000018983,0.0000018955,0.0000018936, -0.0000018936,0.0000018941,0.0000018951,0.0000018974,0.0000019012, -0.0000019054,0.0000019092,0.0000019104,0.0000019108,0.0000019086, -0.0000019033,0.0000018967,0.0000018909,0.0000018887,0.0000018880, -0.0000018887,0.0000018893,0.0000018901,0.0000018911,0.0000018933, -0.0000018952,0.0000018941,0.0000018898,0.0000018823,0.0000018727, -0.0000018637,0.0000018557,0.0000018476,0.0000018400,0.0000018344, -0.0000018330,0.0000018339,0.0000018352,0.0000018356,0.0000018344, -0.0000018316,0.0000018273,0.0000018225,0.0000018171,0.0000018122, -0.0000018101,0.0000018095,0.0000018109,0.0000018118,0.0000018118, -0.0000018109,0.0000018085,0.0000018052,0.0000018018,0.0000017986, -0.0000017972,0.0000017971,0.0000017999,0.0000018032,0.0000018044, -0.0000018051,0.0000018053,0.0000018039,0.0000018021,0.0000018005, -0.0000017993,0.0000017986,0.0000017979,0.0000017962,0.0000017944, -0.0000017920,0.0000017900,0.0000017907,0.0000017923,0.0000017930, -0.0000017936,0.0000017967,0.0000018000,0.0000018024,0.0000018044, -0.0000018061,0.0000018078,0.0000018078,0.0000018066,0.0000018047, -0.0000018030,0.0000018017,0.0000018012,0.0000018016,0.0000018033, -0.0000018066,0.0000018098,0.0000018111,0.0000018112,0.0000018115, -0.0000018129,0.0000018148,0.0000018173,0.0000018199,0.0000018221, -0.0000018238,0.0000018237,0.0000018221,0.0000018205,0.0000018193, -0.0000018200,0.0000018220,0.0000018213,0.0000018157,0.0000018056, -0.0000017942,0.0000017825,0.0000017717,0.0000017631,0.0000017571, -0.0000017516,0.0000017461,0.0000017415,0.0000017378,0.0000017333, -0.0000017287,0.0000017262,0.0000017267,0.0000017295,0.0000017330, -0.0000017374,0.0000017442,0.0000017544,0.0000017694,0.0000017907, -0.0000018153,0.0000018379,0.0000018551,0.0000018663,0.0000018743, -0.0000018814,0.0000018888,0.0000018961,0.0000019013,0.0000019009, -0.0000018965,0.0000018873,0.0000018753,0.0000018635,0.0000018533, -0.0000018484,0.0000018462,0.0000018482,0.0000018522,0.0000018575, -0.0000018623,0.0000018652,0.0000018674,0.0000018678,0.0000018686, -0.0000018691,0.0000018679,0.0000018653,0.0000018629,0.0000018616, -0.0000018616,0.0000018625,0.0000018637,0.0000018647,0.0000018668, -0.0000018695,0.0000018704,0.0000018693,0.0000018664,0.0000018638, -0.0000018627,0.0000018622,0.0000018612,0.0000018587,0.0000018546, -0.0000018499,0.0000018457,0.0000018427,0.0000018404,0.0000018374, -0.0000018328,0.0000018276,0.0000018234,0.0000018202,0.0000018181, -0.0000018169,0.0000018152,0.0000018122,0.0000018089,0.0000018052, -0.0000018004,0.0000017955,0.0000017923,0.0000017915,0.0000017915, -0.0000017916,0.0000017918,0.0000017931,0.0000017958,0.0000017999, -0.0000018044,0.0000018087,0.0000018120,0.0000018124,0.0000018101, -0.0000018085,0.0000018080,0.0000018062,0.0000018036,0.0000018031, -0.0000018033,0.0000018017,0.0000017971,0.0000017925,0.0000017913, -0.0000017927,0.0000017949,0.0000017963,0.0000017973,0.0000017986, -0.0000018007,0.0000018030,0.0000018049,0.0000018067,0.0000018087, -0.0000018103,0.0000018111,0.0000018119,0.0000018120,0.0000018121, -0.0000018121,0.0000018131,0.0000018151,0.0000018168,0.0000018175, -0.0000018179,0.0000018184,0.0000018195,0.0000018212,0.0000018243, -0.0000018264,0.0000018287,0.0000018287,0.0000018267,0.0000018234, -0.0000018206,0.0000018197,0.0000018220,0.0000018246,0.0000018277, -0.0000018312,0.0000018359,0.0000018415,0.0000018468,0.0000018501, -0.0000018514,0.0000018509,0.0000018500,0.0000018506,0.0000018535, -0.0000018567,0.0000018575,0.0000018564,0.0000018544,0.0000018529, -0.0000018522,0.0000018531,0.0000018549,0.0000018554,0.0000018550, -0.0000018553,0.0000018564,0.0000018576,0.0000018583,0.0000018585, -0.0000018587,0.0000018594,0.0000018599,0.0000018590,0.0000018569, -0.0000018535,0.0000018479,0.0000018396,0.0000018299,0.0000018201, -0.0000018104,0.0000018016,0.0000017960,0.0000017945,0.0000017955, -0.0000017968,0.0000017963,0.0000017924,0.0000017846,0.0000017738, -0.0000017632,0.0000017581,0.0000017567,0.0000017590,0.0000017637, -0.0000017682,0.0000017709,0.0000017711,0.0000017688,0.0000017664, -0.0000017645,0.0000017620,0.0000017600,0.0000017594,0.0000017584, -0.0000017555,0.0000017503,0.0000017447,0.0000017426,0.0000017439, -0.0000017463,0.0000017478,0.0000017486,0.0000017486,0.0000017482, -0.0000017481,0.0000017470,0.0000017458,0.0000017477,0.0000017536, -0.0000017611,0.0000017690,0.0000017774,0.0000017857,0.0000017921, -0.0000017929,0.0000017888,0.0000017846,0.0000017805,0.0000017784, -0.0000017792,0.0000017786,0.0000017730,0.0000017667,0.0000017618, -0.0000017604,0.0000017619,0.0000017656,0.0000017703,0.0000017743, -0.0000017748,0.0000017733,0.0000017727,0.0000017735,0.0000017728, -0.0000017704,0.0000017654,0.0000017585,0.0000017515,0.0000017442, -0.0000017480,0.0000017575,0.0000017605,0.0000017616,0.0000017699, -0.0000017850,0.0000017943,0.0000018204,0.0000018292,0.0000018259, -0.0000018062,0.0000017855,0.0000017849,0.0000017893,0.0000017959, -0.0000017837,0.0000017750,0.0000017785,0.0000017781,0.0000017741, -0.0000017697,0.0000017637,0.0000017544,0.0000017511,0.0000017561, -0.0000017607,0.0000017629,0.0000017654,0.0000017663,0.0000017646, -0.0000017585,0.0000017526,0.0000017509,0.0000017514,0.0000017564, -0.0000017681,0.0000017731,0.0000017579,0.0000017415,0.0000017396, -0.0000017517,0.0000017669,0.0000017746,0.0000017734,0.0000017663, -0.0000017592,0.0000017572,0.0000017583,0.0000017584,0.0000017545, -0.0000017501,0.0000017475,0.0000017445,0.0000017430,0.0000017452, -0.0000017513,0.0000017616,0.0000017694,0.0000017686,0.0000017643, -0.0000017629,0.0000017638,0.0000017661,0.0000017701,0.0000017768, -0.0000017830,0.0000017827,0.0000017760,0.0000017674,0.0000017606, -0.0000017592,0.0000017692,0.0000017867,0.0000017949,0.0000018033, -0.0000018232,0.0000018346,0.0000018292,0.0000018108,0.0000018004, -0.0000017987,0.0000017960,0.0000017938,0.0000017939,0.0000017951, -0.0000017977,0.0000018018,0.0000018069,0.0000018124,0.0000018173, -0.0000018214,0.0000018248,0.0000018285,0.0000018322,0.0000018359, -0.0000018393,0.0000018383,0.0000018400,0.0000018414,0.0000018426, -0.0000018436,0.0000018449,0.0000018468,0.0000018485,0.0000018467, -0.0000018408,0.0000018337,0.0000018326,0.0000018364,0.0000018371, -0.0000018321,0.0000018275,0.0000018280,0.0000018316,0.0000018349, -0.0000018387,0.0000018446,0.0000018513,0.0000018558,0.0000018592, -0.0000018649,0.0000018682,0.0000018645,0.0000018558,0.0000018526, -0.0000018528,0.0000018531,0.0000018593,0.0000018642,0.0000018571, -0.0000018464,0.0000018422,0.0000018417,0.0000018452,0.0000018580, -0.0000018658,0.0000018649,0.0000018648,0.0000018662,0.0000018668, -0.0000018675,0.0000018690,0.0000018748,0.0000018878,0.0000019018, -0.0000019083,0.0000019066,0.0000018999,0.0000018895,0.0000018777, -0.0000018723,0.0000018744,0.0000018805,0.0000018832,0.0000018817, -0.0000018813,0.0000018855,0.0000018924,0.0000018994,0.0000019052, -0.0000019081,0.0000019087,0.0000019072,0.0000019044,0.0000019012, -0.0000018985,0.0000018966,0.0000018951,0.0000018942,0.0000018939, -0.0000018936,0.0000018926,0.0000018910,0.0000018890,0.0000018873, -0.0000018863,0.0000018856,0.0000018855,0.0000018853,0.0000018844, -0.0000018826,0.0000018806,0.0000018789,0.0000018776,0.0000018769, -0.0000018769,0.0000018773,0.0000018785,0.0000018803,0.0000018827, -0.0000018862,0.0000018902,0.0000018940,0.0000018972,0.0000018998, -0.0000019023,0.0000019049,0.0000019084,0.0000019127,0.0000019166, -0.0000019181,0.0000019163,0.0000019114,0.0000019052,0.0000019014, -0.0000019023,0.0000019070,0.0000019167,0.0000019282,0.0000019390, -0.0000019480,0.0000019547,0.0000019587,0.0000019598,0.0000019600, -0.0000019590,0.0000019572,0.0000019556,0.0000019542,0.0000019531, -0.0000019527,0.0000019523,0.0000019519,0.0000019513,0.0000019505, -0.0000019501,0.0000019497,0.0000019494,0.0000019491,0.0000019489, -0.0000019489,0.0000019490,0.0000019494,0.0000019499,0.0000019500, -0.0000019497,0.0000019489,0.0000019478,0.0000019465,0.0000019452, -0.0000019439,0.0000019426,0.0000019411,0.0000019394,0.0000019376, -0.0000019362,0.0000019359,0.0000019362,0.0000019365,0.0000019370, -0.0000019377,0.0000019386,0.0000019395,0.0000019400,0.0000019405, -0.0000019406,0.0000019401,0.0000019397,0.0000019387,0.0000019378, -0.0000019373,0.0000019366,0.0000019364,0.0000019362,0.0000019361, -0.0000019358,0.0000019358,0.0000019358,0.0000019355,0.0000019355, -0.0000019357,0.0000019360,0.0000019367,0.0000019372,0.0000019379, -0.0000019386,0.0000019387,0.0000019389,0.0000019393,0.0000019390, -0.0000019383,0.0000019375,0.0000019367,0.0000019361,0.0000019356, -0.0000019353,0.0000019351,0.0000019349,0.0000019349,0.0000019354, -0.0000019366,0.0000019382,0.0000019402,0.0000019425,0.0000019447, -0.0000019470,0.0000019488,0.0000019501,0.0000019514,0.0000019526, -0.0000019528,0.0000019520,0.0000019502,0.0000019480,0.0000019451, -0.0000019418,0.0000019383,0.0000019343,0.0000019298,0.0000019249, -0.0000019201,0.0000019161,0.0000019128,0.0000019095,0.0000019063, -0.0000019027,0.0000018981,0.0000018918,0.0000018826,0.0000018700, -0.0000018555,0.0000018416,0.0000018302,0.0000018225,0.0000018173, -0.0000018135,0.0000018119,0.0000018116,0.0000018097,0.0000018083, -0.0000018072,0.0000018071,0.0000018073,0.0000018081,0.0000018096, -0.0000018115,0.0000018135,0.0000018157,0.0000018179,0.0000018203, -0.0000018228,0.0000018255,0.0000018283,0.0000018305,0.0000018318, -0.0000018328,0.0000018333,0.0000018334,0.0000018328,0.0000018319, -0.0000018310,0.0000018302,0.0000018302,0.0000018309,0.0000018317, -0.0000018324,0.0000018333,0.0000018339,0.0000018337,0.0000018330, -0.0000018324,0.0000018319,0.0000018316,0.0000018311,0.0000018307, -0.0000018305,0.0000018301,0.0000018294,0.0000018293,0.0000018305, -0.0000018323,0.0000018348,0.0000018385,0.0000018433,0.0000018485, -0.0000018534,0.0000018579,0.0000018616,0.0000018643,0.0000018664, -0.0000018692,0.0000018734,0.0000018788,0.0000018837,0.0000018869, -0.0000018881,0.0000018866,0.0000018826,0.0000018795,0.0000018759, -0.0000018734,0.0000018719,0.0000018714,0.0000018716,0.0000018718, -0.0000018718,0.0000018712,0.0000018699,0.0000018695,0.0000018684, -0.0000018698,0.0000018689,0.0000018678,0.0000018668,0.0000018657, -0.0000018645,0.0000018622,0.0000018595,0.0000018567,0.0000018543, -0.0000018516,0.0000018488,0.0000018470,0.0000018460,0.0000018456, -0.0000018457,0.0000018461,0.0000018470,0.0000018484,0.0000018498, -0.0000018514,0.0000018529,0.0000018543,0.0000018562,0.0000018585, -0.0000018607,0.0000018632,0.0000018653,0.0000018660,0.0000018657, -0.0000018655,0.0000018628,0.0000018590,0.0000018545,0.0000018500, -0.0000018459,0.0000018424,0.0000018383,0.0000018335,0.0000018294, -0.0000018271,0.0000018256,0.0000018234,0.0000018203,0.0000018163, -0.0000018117,0.0000018067,0.0000018019,0.0000017972,0.0000017929, -0.0000017890,0.0000017850,0.0000017813,0.0000017786,0.0000017780, -0.0000017791,0.0000017818,0.0000017853,0.0000017898,0.0000017951, -0.0000018008,0.0000018064,0.0000018114,0.0000018163,0.0000018221, -0.0000018284,0.0000018342,0.0000018393,0.0000018433,0.0000018460, -0.0000018478,0.0000018492,0.0000018504,0.0000018507,0.0000018496, -0.0000018482,0.0000018478,0.0000018489,0.0000018505,0.0000018514, -0.0000018507,0.0000018486,0.0000018463,0.0000018450,0.0000018450, -0.0000018456,0.0000018454,0.0000018441,0.0000018429,0.0000018431, -0.0000018456,0.0000018491,0.0000018529,0.0000018568,0.0000018610, -0.0000018656,0.0000018709,0.0000018763,0.0000018812,0.0000018869, -0.0000018922,0.0000018939,0.0000018926,0.0000018922,0.0000018941, -0.0000018989,0.0000019040,0.0000019092,0.0000019125,0.0000019141, -0.0000019148,0.0000019155,0.0000019164,0.0000019173,0.0000019185, -0.0000019187,0.0000019176,0.0000019158,0.0000019135,0.0000019099, -0.0000019042,0.0000018963,0.0000018865,0.0000018758,0.0000018652, -0.0000018559,0.0000018500,0.0000018480,0.0000018487,0.0000018511, -0.0000018545,0.0000018567,0.0000018581,0.0000018595,0.0000018602, -0.0000018606,0.0000018607,0.0000018611,0.0000018623,0.0000018633, -0.0000018637,0.0000018634,0.0000018620,0.0000018603,0.0000018588, -0.0000018571,0.0000018552,0.0000018527,0.0000018502,0.0000018485, -0.0000018482,0.0000018495,0.0000018515,0.0000018545,0.0000018576, -0.0000018606,0.0000018637,0.0000018665,0.0000018688,0.0000018704, -0.0000018712,0.0000018710,0.0000018704,0.0000018698,0.0000018694, -0.0000018692,0.0000018697,0.0000018716,0.0000018740,0.0000018757, -0.0000018775,0.0000018805,0.0000018840,0.0000018869,0.0000018888, -0.0000018905,0.0000018927,0.0000018947,0.0000018961,0.0000018978, -0.0000019000,0.0000019018,0.0000019030,0.0000019038,0.0000019039, -0.0000019036,0.0000019035,0.0000019038,0.0000019051,0.0000019064, -0.0000019063,0.0000019043,0.0000019001,0.0000018936,0.0000018849, -0.0000018729,0.0000018575,0.0000018418,0.0000018298,0.0000018248, -0.0000018254,0.0000018310,0.0000018398,0.0000018496,0.0000018586, -0.0000018660,0.0000018715,0.0000018761,0.0000018797,0.0000018822, -0.0000018840,0.0000018850,0.0000018852,0.0000018858,0.0000018876, -0.0000018901,0.0000018931,0.0000018968,0.0000019006,0.0000019042, -0.0000019080,0.0000019116,0.0000019147,0.0000019178,0.0000019209, -0.0000019237,0.0000019261,0.0000019284,0.0000019309,0.0000019334, -0.0000019352,0.0000019356,0.0000019343,0.0000019319,0.0000019287, -0.0000019240,0.0000019175,0.0000019101,0.0000019026,0.0000018960, -0.0000018913,0.0000018890,0.0000018888,0.0000018899,0.0000018926, -0.0000018967,0.0000019001,0.0000019018,0.0000019024,0.0000019016, -0.0000018993,0.0000018961,0.0000018926,0.0000018897,0.0000018860, -0.0000018818,0.0000018778,0.0000018750,0.0000018729,0.0000018706, -0.0000018688,0.0000018677,0.0000018664,0.0000018647,0.0000018628, -0.0000018610,0.0000018601,0.0000018600,0.0000018604,0.0000018616, -0.0000018630,0.0000018645,0.0000018670,0.0000018697,0.0000018730, -0.0000018761,0.0000018783,0.0000018800,0.0000018815,0.0000018824, -0.0000018820,0.0000018821,0.0000018831,0.0000018843,0.0000018853, -0.0000018865,0.0000018873,0.0000018882,0.0000018889,0.0000018890, -0.0000018886,0.0000018860,0.0000018817,0.0000018774,0.0000018733, -0.0000018698,0.0000018676,0.0000018680,0.0000018704,0.0000018741, -0.0000018779,0.0000018825,0.0000018876,0.0000018927,0.0000018972, -0.0000018996,0.0000019016,0.0000019047,0.0000019079,0.0000019100, -0.0000019106,0.0000019104,0.0000019094,0.0000019076,0.0000019059, -0.0000019040,0.0000019016,0.0000018996,0.0000018975,0.0000018971, -0.0000018976,0.0000018996,0.0000019026,0.0000019061,0.0000019103, -0.0000019115,0.0000019101,0.0000019046,0.0000018972,0.0000018909, -0.0000018866,0.0000018855,0.0000018853,0.0000018853,0.0000018866, -0.0000018901,0.0000018944,0.0000018970,0.0000018993,0.0000018962, -0.0000018893,0.0000018808,0.0000018724,0.0000018646,0.0000018574, -0.0000018513,0.0000018488,0.0000018486,0.0000018494,0.0000018496, -0.0000018480,0.0000018445,0.0000018399,0.0000018353,0.0000018296, -0.0000018236,0.0000018192,0.0000018169,0.0000018156,0.0000018142, -0.0000018130,0.0000018117,0.0000018097,0.0000018078,0.0000018062, -0.0000018041,0.0000018022,0.0000018003,0.0000018012,0.0000018031, -0.0000018039,0.0000018052,0.0000018060,0.0000018053,0.0000018036, -0.0000018014,0.0000017995,0.0000017978,0.0000017959,0.0000017949, -0.0000017936,0.0000017920,0.0000017910,0.0000017914,0.0000017931, -0.0000017937,0.0000017942,0.0000017957,0.0000017975,0.0000017984, -0.0000017996,0.0000018011,0.0000018036,0.0000018057,0.0000018073, -0.0000018089,0.0000018105,0.0000018117,0.0000018122,0.0000018124, -0.0000018124,0.0000018136,0.0000018151,0.0000018151,0.0000018138, -0.0000018135,0.0000018140,0.0000018154,0.0000018177,0.0000018205, -0.0000018235,0.0000018263,0.0000018286,0.0000018289,0.0000018288, -0.0000018277,0.0000018277,0.0000018287,0.0000018276,0.0000018233, -0.0000018163,0.0000018073,0.0000017968,0.0000017850,0.0000017743, -0.0000017663,0.0000017591,0.0000017527,0.0000017485,0.0000017452, -0.0000017415,0.0000017377,0.0000017349,0.0000017338,0.0000017348, -0.0000017380,0.0000017406,0.0000017443,0.0000017444,0.0000017479, -0.0000017590,0.0000017763,0.0000017984,0.0000018218,0.0000018410, -0.0000018558,0.0000018663,0.0000018749,0.0000018835,0.0000018913, -0.0000018972,0.0000018980,0.0000018963,0.0000018895,0.0000018789, -0.0000018668,0.0000018567,0.0000018490,0.0000018478,0.0000018469, -0.0000018490,0.0000018523,0.0000018557,0.0000018593,0.0000018627, -0.0000018657,0.0000018677,0.0000018666,0.0000018659,0.0000018662, -0.0000018668,0.0000018672,0.0000018673,0.0000018675,0.0000018684, -0.0000018705,0.0000018725,0.0000018726,0.0000018707,0.0000018678, -0.0000018656,0.0000018645,0.0000018631,0.0000018604,0.0000018564, -0.0000018523,0.0000018486,0.0000018454,0.0000018431,0.0000018406, -0.0000018359,0.0000018291,0.0000018225,0.0000018174,0.0000018146, -0.0000018131,0.0000018113,0.0000018087,0.0000018055,0.0000018015, -0.0000017966,0.0000017903,0.0000017852,0.0000017837,0.0000017842, -0.0000017856,0.0000017861,0.0000017864,0.0000017878,0.0000017911, -0.0000017949,0.0000017991,0.0000018043,0.0000018083,0.0000018090, -0.0000018078,0.0000018076,0.0000018072,0.0000018052,0.0000018031, -0.0000018023,0.0000018019,0.0000017995,0.0000017952,0.0000017920, -0.0000017920,0.0000017942,0.0000017966,0.0000017978,0.0000017985, -0.0000017992,0.0000018000,0.0000018007,0.0000018016,0.0000018030, -0.0000018046,0.0000018058,0.0000018066,0.0000018077,0.0000018093, -0.0000018109,0.0000018124,0.0000018147,0.0000018172,0.0000018187, -0.0000018194,0.0000018191,0.0000018189,0.0000018188,0.0000018202, -0.0000018231,0.0000018273,0.0000018303,0.0000018321,0.0000018306, -0.0000018277,0.0000018254,0.0000018248,0.0000018246,0.0000018252, -0.0000018253,0.0000018275,0.0000018316,0.0000018374,0.0000018427, -0.0000018461,0.0000018473,0.0000018476,0.0000018490,0.0000018526, -0.0000018564,0.0000018575,0.0000018561,0.0000018537,0.0000018518, -0.0000018520,0.0000018546,0.0000018581,0.0000018598,0.0000018601, -0.0000018602,0.0000018606,0.0000018608,0.0000018605,0.0000018597, -0.0000018596,0.0000018605,0.0000018612,0.0000018616,0.0000018616, -0.0000018609,0.0000018588,0.0000018553,0.0000018505,0.0000018447, -0.0000018373,0.0000018291,0.0000018214,0.0000018155,0.0000018110, -0.0000018084,0.0000018071,0.0000018061,0.0000018028,0.0000017949, -0.0000017836,0.0000017727,0.0000017641,0.0000017615,0.0000017619, -0.0000017637,0.0000017680,0.0000017704,0.0000017706,0.0000017704, -0.0000017699,0.0000017693,0.0000017689,0.0000017689,0.0000017683, -0.0000017661,0.0000017619,0.0000017568,0.0000017537,0.0000017523, -0.0000017509,0.0000017494,0.0000017487,0.0000017486,0.0000017494, -0.0000017509,0.0000017511,0.0000017523,0.0000017572,0.0000017653, -0.0000017734,0.0000017807,0.0000017865,0.0000017916,0.0000017950, -0.0000017936,0.0000017893,0.0000017852,0.0000017826,0.0000017823, -0.0000017822,0.0000017788,0.0000017710,0.0000017646,0.0000017618, -0.0000017627,0.0000017661,0.0000017709,0.0000017753,0.0000017775, -0.0000017773,0.0000017763,0.0000017760,0.0000017763,0.0000017742, -0.0000017707,0.0000017670,0.0000017615,0.0000017547,0.0000017446, -0.0000017450,0.0000017533,0.0000017575,0.0000017601,0.0000017704, -0.0000017847,0.0000017987,0.0000018261,0.0000018352,0.0000018254, -0.0000018028,0.0000017851,0.0000017848,0.0000017899,0.0000017964, -0.0000017831,0.0000017751,0.0000017774,0.0000017771,0.0000017747, -0.0000017698,0.0000017611,0.0000017523,0.0000017526,0.0000017594, -0.0000017639,0.0000017670,0.0000017701,0.0000017715,0.0000017700, -0.0000017631,0.0000017549,0.0000017510,0.0000017510,0.0000017552, -0.0000017658,0.0000017727,0.0000017606,0.0000017429,0.0000017389, -0.0000017487,0.0000017637,0.0000017721,0.0000017716,0.0000017651, -0.0000017585,0.0000017567,0.0000017580,0.0000017582,0.0000017551, -0.0000017521,0.0000017508,0.0000017468,0.0000017424,0.0000017427, -0.0000017473,0.0000017569,0.0000017682,0.0000017721,0.0000017711, -0.0000017700,0.0000017714,0.0000017764,0.0000017821,0.0000017843, -0.0000017810,0.0000017734,0.0000017657,0.0000017615,0.0000017639, -0.0000017781,0.0000017932,0.0000018002,0.0000018148,0.0000018342, -0.0000018372,0.0000018212,0.0000018023,0.0000017962,0.0000017953, -0.0000017939,0.0000017940,0.0000017957,0.0000017989,0.0000018032, -0.0000018081,0.0000018131,0.0000018171,0.0000018197,0.0000018220, -0.0000018241,0.0000018267,0.0000018297,0.0000018328,0.0000018359, -0.0000018315,0.0000018333,0.0000018351,0.0000018368,0.0000018383, -0.0000018397,0.0000018418,0.0000018449,0.0000018479,0.0000018478, -0.0000018419,0.0000018360,0.0000018360,0.0000018386,0.0000018381, -0.0000018329,0.0000018282,0.0000018273,0.0000018260,0.0000018280, -0.0000018331,0.0000018425,0.0000018512,0.0000018569,0.0000018638, -0.0000018687,0.0000018655,0.0000018570,0.0000018531,0.0000018525, -0.0000018544,0.0000018610,0.0000018611,0.0000018507,0.0000018427, -0.0000018409,0.0000018412,0.0000018497,0.0000018638,0.0000018683, -0.0000018686,0.0000018711,0.0000018732,0.0000018737,0.0000018730, -0.0000018709,0.0000018715,0.0000018796,0.0000018951,0.0000019074, -0.0000019095,0.0000019013,0.0000018860,0.0000018727,0.0000018686, -0.0000018748,0.0000018829,0.0000018853,0.0000018833,0.0000018823, -0.0000018853,0.0000018907,0.0000018967,0.0000019026,0.0000019070, -0.0000019090,0.0000019083,0.0000019072,0.0000019053,0.0000019035, -0.0000019019,0.0000019005,0.0000018998,0.0000018996,0.0000018988, -0.0000018975,0.0000018953,0.0000018928,0.0000018909,0.0000018898, -0.0000018892,0.0000018892,0.0000018898,0.0000018903,0.0000018904, -0.0000018904,0.0000018902,0.0000018901,0.0000018902,0.0000018907, -0.0000018918,0.0000018933,0.0000018955,0.0000018983,0.0000019012, -0.0000019038,0.0000019063,0.0000019091,0.0000019123,0.0000019156, -0.0000019179,0.0000019170,0.0000019142,0.0000019089,0.0000019039, -0.0000019033,0.0000019062,0.0000019130,0.0000019252,0.0000019382, -0.0000019494,0.0000019570,0.0000019608,0.0000019619,0.0000019613, -0.0000019601,0.0000019590,0.0000019574,0.0000019558,0.0000019545, -0.0000019534,0.0000019532,0.0000019532,0.0000019534,0.0000019535, -0.0000019536,0.0000019538,0.0000019540,0.0000019543,0.0000019554, -0.0000019566,0.0000019576,0.0000019581,0.0000019585,0.0000019587, -0.0000019584,0.0000019576,0.0000019564,0.0000019550,0.0000019532, -0.0000019511,0.0000019490,0.0000019471,0.0000019454,0.0000019438, -0.0000019423,0.0000019409,0.0000019395,0.0000019379,0.0000019372, -0.0000019373,0.0000019378,0.0000019384,0.0000019392,0.0000019401, -0.0000019408,0.0000019411,0.0000019411,0.0000019411,0.0000019409, -0.0000019412,0.0000019414,0.0000019415,0.0000019421,0.0000019425, -0.0000019433,0.0000019438,0.0000019445,0.0000019447,0.0000019450, -0.0000019451,0.0000019452,0.0000019454,0.0000019456,0.0000019455, -0.0000019458,0.0000019465,0.0000019472,0.0000019477,0.0000019483, -0.0000019491,0.0000019500,0.0000019504,0.0000019507,0.0000019505, -0.0000019501,0.0000019499,0.0000019493,0.0000019487,0.0000019481, -0.0000019470,0.0000019458,0.0000019447,0.0000019441,0.0000019435, -0.0000019429,0.0000019430,0.0000019428,0.0000019418,0.0000019406, -0.0000019396,0.0000019388,0.0000019385,0.0000019385,0.0000019385, -0.0000019386,0.0000019391,0.0000019400,0.0000019409,0.0000019414, -0.0000019418,0.0000019420,0.0000019418,0.0000019409,0.0000019395, -0.0000019376,0.0000019342,0.0000019295,0.0000019240,0.0000019183, -0.0000019131,0.0000019085,0.0000019037,0.0000018978,0.0000018892, -0.0000018776,0.0000018635,0.0000018488,0.0000018357,0.0000018255, -0.0000018179,0.0000018127,0.0000018089,0.0000018057,0.0000018031, -0.0000018014,0.0000018008,0.0000018009,0.0000018014,0.0000018023, -0.0000018035,0.0000018041,0.0000018043,0.0000018060,0.0000018082, -0.0000018100,0.0000018121,0.0000018131,0.0000018136,0.0000018138, -0.0000018135,0.0000018132,0.0000018130,0.0000018123,0.0000018115, -0.0000018115,0.0000018125,0.0000018140,0.0000018163,0.0000018199, -0.0000018240,0.0000018274,0.0000018298,0.0000018312,0.0000018320, -0.0000018326,0.0000018327,0.0000018322,0.0000018312,0.0000018297, -0.0000018279,0.0000018263,0.0000018255,0.0000018260,0.0000018282, -0.0000018310,0.0000018342,0.0000018383,0.0000018428,0.0000018472, -0.0000018514,0.0000018558,0.0000018596,0.0000018616,0.0000018619, -0.0000018618,0.0000018627,0.0000018655,0.0000018697,0.0000018737, -0.0000018765,0.0000018776,0.0000018769,0.0000018746,0.0000018708, -0.0000018672,0.0000018639,0.0000018610,0.0000018594,0.0000018587, -0.0000018590,0.0000018600,0.0000018617,0.0000018638,0.0000018658, -0.0000018685,0.0000018706,0.0000018732,0.0000018742,0.0000018734, -0.0000018746,0.0000018733,0.0000018713,0.0000018690,0.0000018669, -0.0000018639,0.0000018614,0.0000018598,0.0000018585,0.0000018576, -0.0000018576,0.0000018583,0.0000018595,0.0000018608,0.0000018616, -0.0000018621,0.0000018628,0.0000018632,0.0000018630,0.0000018633, -0.0000018618,0.0000018589,0.0000018554,0.0000018517,0.0000018477, -0.0000018435,0.0000018396,0.0000018360,0.0000018328,0.0000018301, -0.0000018280,0.0000018266,0.0000018257,0.0000018245,0.0000018226, -0.0000018193,0.0000018145,0.0000018093,0.0000018048,0.0000018009, -0.0000017968,0.0000017920,0.0000017868,0.0000017816,0.0000017771, -0.0000017744,0.0000017741,0.0000017755,0.0000017789,0.0000017835, -0.0000017883,0.0000017936,0.0000017998,0.0000018064,0.0000018125, -0.0000018179,0.0000018236,0.0000018302,0.0000018376,0.0000018445, -0.0000018498,0.0000018529,0.0000018543,0.0000018553,0.0000018564, -0.0000018571,0.0000018568,0.0000018554,0.0000018543,0.0000018543, -0.0000018552,0.0000018561,0.0000018561,0.0000018545,0.0000018521, -0.0000018502,0.0000018492,0.0000018487,0.0000018479,0.0000018458, -0.0000018435,0.0000018430,0.0000018448,0.0000018485,0.0000018536, -0.0000018592,0.0000018651,0.0000018709,0.0000018768,0.0000018821, -0.0000018855,0.0000018872,0.0000018893,0.0000018898,0.0000018907, -0.0000018933,0.0000019005,0.0000019092,0.0000019163,0.0000019214, -0.0000019246,0.0000019259,0.0000019259,0.0000019248,0.0000019236, -0.0000019234,0.0000019239,0.0000019242,0.0000019230,0.0000019208, -0.0000019180,0.0000019150,0.0000019118,0.0000019078,0.0000019028, -0.0000018962,0.0000018874,0.0000018775,0.0000018679,0.0000018612, -0.0000018580,0.0000018571,0.0000018578,0.0000018596,0.0000018612, -0.0000018625,0.0000018639,0.0000018643,0.0000018642,0.0000018642, -0.0000018649,0.0000018658,0.0000018664,0.0000018665,0.0000018652, -0.0000018627,0.0000018604,0.0000018587,0.0000018578,0.0000018561, -0.0000018540,0.0000018522,0.0000018508,0.0000018507,0.0000018516, -0.0000018532,0.0000018554,0.0000018578,0.0000018599,0.0000018619, -0.0000018639,0.0000018661,0.0000018680,0.0000018690,0.0000018693, -0.0000018691,0.0000018688,0.0000018684,0.0000018680,0.0000018683, -0.0000018697,0.0000018716,0.0000018734,0.0000018760,0.0000018796, -0.0000018835,0.0000018868,0.0000018894,0.0000018920,0.0000018945, -0.0000018965,0.0000018983,0.0000019003,0.0000019022,0.0000019035, -0.0000019043,0.0000019047,0.0000019048,0.0000019050,0.0000019052, -0.0000019058,0.0000019074,0.0000019089,0.0000019092,0.0000019085, -0.0000019055,0.0000019002,0.0000018925,0.0000018808,0.0000018653, -0.0000018486,0.0000018346,0.0000018265,0.0000018250,0.0000018272, -0.0000018332,0.0000018409,0.0000018486,0.0000018548,0.0000018594, -0.0000018627,0.0000018649,0.0000018661,0.0000018660,0.0000018649, -0.0000018642,0.0000018649,0.0000018666,0.0000018686,0.0000018709, -0.0000018738,0.0000018772,0.0000018812,0.0000018863,0.0000018919, -0.0000018978,0.0000019043,0.0000019109,0.0000019170,0.0000019224, -0.0000019273,0.0000019317,0.0000019350,0.0000019371,0.0000019378, -0.0000019381,0.0000019378,0.0000019363,0.0000019327,0.0000019274, -0.0000019212,0.0000019143,0.0000019076,0.0000019024,0.0000018990, -0.0000018970,0.0000018970,0.0000018988,0.0000019016,0.0000019041, -0.0000019058,0.0000019064,0.0000019057,0.0000019038,0.0000019013, -0.0000018987,0.0000018963,0.0000018935,0.0000018902,0.0000018869, -0.0000018844,0.0000018820,0.0000018794,0.0000018771,0.0000018753, -0.0000018736,0.0000018708,0.0000018672,0.0000018643,0.0000018630, -0.0000018626,0.0000018630,0.0000018642,0.0000018658,0.0000018679, -0.0000018709,0.0000018746,0.0000018782,0.0000018807,0.0000018822, -0.0000018836,0.0000018849,0.0000018859,0.0000018871,0.0000018890, -0.0000018910,0.0000018921,0.0000018920,0.0000018919,0.0000018922, -0.0000018923,0.0000018916,0.0000018912,0.0000018902,0.0000018871, -0.0000018832,0.0000018801,0.0000018767,0.0000018732,0.0000018713, -0.0000018721,0.0000018745,0.0000018764,0.0000018788,0.0000018812, -0.0000018854,0.0000018913,0.0000018961,0.0000018998,0.0000019039, -0.0000019084,0.0000019113,0.0000019136,0.0000019145,0.0000019147, -0.0000019151,0.0000019157,0.0000019158,0.0000019146,0.0000019123, -0.0000019091,0.0000019061,0.0000019037,0.0000019012,0.0000019012, -0.0000019016,0.0000019045,0.0000019080,0.0000019101,0.0000019080, -0.0000019033,0.0000018971,0.0000018910,0.0000018871,0.0000018852, -0.0000018842,0.0000018841,0.0000018855,0.0000018884,0.0000018932, -0.0000018971,0.0000018969,0.0000018944,0.0000018887,0.0000018817, -0.0000018747,0.0000018679,0.0000018622,0.0000018603,0.0000018609, -0.0000018629,0.0000018645,0.0000018632,0.0000018588,0.0000018524, -0.0000018461,0.0000018396,0.0000018350,0.0000018327,0.0000018309, -0.0000018280,0.0000018242,0.0000018201,0.0000018156,0.0000018110, -0.0000018080,0.0000018071,0.0000018075,0.0000018073,0.0000018069, -0.0000018077,0.0000018076,0.0000018072,0.0000018074,0.0000018078, -0.0000018073,0.0000018060,0.0000018040,0.0000018021,0.0000017996, -0.0000017977,0.0000017964,0.0000017951,0.0000017934,0.0000017924, -0.0000017915,0.0000017937,0.0000017954,0.0000017963,0.0000017979, -0.0000017990,0.0000017988,0.0000017987,0.0000017984,0.0000017995, -0.0000018016,0.0000018046,0.0000018082,0.0000018120,0.0000018148, -0.0000018170,0.0000018179,0.0000018170,0.0000018169,0.0000018168, -0.0000018159,0.0000018151,0.0000018147,0.0000018144,0.0000018155, -0.0000018168,0.0000018189,0.0000018213,0.0000018250,0.0000018286, -0.0000018307,0.0000018335,0.0000018346,0.0000018362,0.0000018367, -0.0000018350,0.0000018310,0.0000018248,0.0000018170,0.0000018074, -0.0000017975,0.0000017891,0.0000017808,0.0000017716,0.0000017631, -0.0000017572,0.0000017535,0.0000017504,0.0000017472,0.0000017447, -0.0000017434,0.0000017441,0.0000017467,0.0000017489,0.0000017489, -0.0000017453,0.0000017439,0.0000017432,0.0000017480,0.0000017608, -0.0000017802,0.0000018024,0.0000018234,0.0000018408,0.0000018551, -0.0000018674,0.0000018775,0.0000018857,0.0000018918,0.0000018956, -0.0000018948,0.0000018906,0.0000018829,0.0000018732,0.0000018635, -0.0000018557,0.0000018503,0.0000018490,0.0000018485,0.0000018498, -0.0000018517,0.0000018541,0.0000018563,0.0000018574,0.0000018582, -0.0000018606,0.0000018650,0.0000018677,0.0000018692,0.0000018706, -0.0000018716,0.0000018730,0.0000018747,0.0000018752,0.0000018743, -0.0000018717,0.0000018688,0.0000018666,0.0000018648,0.0000018625, -0.0000018592,0.0000018557,0.0000018521,0.0000018482,0.0000018444, -0.0000018411,0.0000018369,0.0000018305,0.0000018234,0.0000018174, -0.0000018144,0.0000018130,0.0000018111,0.0000018087,0.0000018060, -0.0000018025,0.0000017977,0.0000017911,0.0000017847,0.0000017813, -0.0000017810,0.0000017824,0.0000017835,0.0000017839,0.0000017844, -0.0000017863,0.0000017897,0.0000017923,0.0000017958,0.0000018009, -0.0000018050,0.0000018058,0.0000018058,0.0000018060,0.0000018056, -0.0000018040,0.0000018023,0.0000018013,0.0000018003,0.0000017982, -0.0000017956,0.0000017943,0.0000017947,0.0000017961,0.0000017976, -0.0000017986,0.0000017998,0.0000018008,0.0000018008,0.0000018005, -0.0000017994,0.0000017989,0.0000017989,0.0000017988,0.0000017990, -0.0000018004,0.0000018031,0.0000018059,0.0000018093,0.0000018132, -0.0000018168,0.0000018193,0.0000018197,0.0000018201,0.0000018195, -0.0000018194,0.0000018201,0.0000018229,0.0000018265,0.0000018295, -0.0000018311,0.0000018310,0.0000018313,0.0000018310,0.0000018301, -0.0000018283,0.0000018266,0.0000018263,0.0000018272,0.0000018307, -0.0000018345,0.0000018377,0.0000018399,0.0000018419,0.0000018452, -0.0000018503,0.0000018555,0.0000018574,0.0000018568,0.0000018539, -0.0000018509,0.0000018502,0.0000018526,0.0000018566,0.0000018599, -0.0000018615,0.0000018629,0.0000018645,0.0000018652,0.0000018646, -0.0000018635,0.0000018628,0.0000018625,0.0000018623,0.0000018622, -0.0000018617,0.0000018608,0.0000018602,0.0000018595,0.0000018587, -0.0000018574,0.0000018555,0.0000018532,0.0000018496,0.0000018442, -0.0000018369,0.0000018292,0.0000018219,0.0000018159,0.0000018115, -0.0000018071,0.0000018007,0.0000017926,0.0000017830,0.0000017741, -0.0000017668,0.0000017654,0.0000017667,0.0000017685,0.0000017698, -0.0000017702,0.0000017709,0.0000017726,0.0000017739,0.0000017744, -0.0000017738,0.0000017718,0.0000017683,0.0000017642,0.0000017614, -0.0000017589,0.0000017555,0.0000017530,0.0000017527,0.0000017541, -0.0000017569,0.0000017589,0.0000017596,0.0000017618,0.0000017678, -0.0000017752,0.0000017819,0.0000017869,0.0000017903,0.0000017939, -0.0000017959,0.0000017940,0.0000017896,0.0000017857,0.0000017856, -0.0000017865,0.0000017848,0.0000017771,0.0000017676,0.0000017635, -0.0000017639,0.0000017671,0.0000017726,0.0000017778,0.0000017807, -0.0000017814,0.0000017821,0.0000017820,0.0000017811,0.0000017797, -0.0000017755,0.0000017711,0.0000017679,0.0000017637,0.0000017570, -0.0000017442,0.0000017430,0.0000017501,0.0000017550,0.0000017587, -0.0000017720,0.0000017848,0.0000018056,0.0000018331,0.0000018411, -0.0000018231,0.0000017992,0.0000017840,0.0000017846,0.0000017908, -0.0000017962,0.0000017826,0.0000017747,0.0000017755,0.0000017755, -0.0000017736,0.0000017683,0.0000017583,0.0000017523,0.0000017557, -0.0000017636,0.0000017675,0.0000017717,0.0000017756,0.0000017768, -0.0000017747,0.0000017674,0.0000017576,0.0000017519,0.0000017511, -0.0000017544,0.0000017644,0.0000017720,0.0000017622,0.0000017438, -0.0000017383,0.0000017465,0.0000017610,0.0000017697,0.0000017694, -0.0000017634,0.0000017577,0.0000017564,0.0000017576,0.0000017579, -0.0000017553,0.0000017533,0.0000017531,0.0000017494,0.0000017433, -0.0000017418,0.0000017452,0.0000017529,0.0000017640,0.0000017721, -0.0000017756,0.0000017775,0.0000017805,0.0000017824,0.0000017821, -0.0000017768,0.0000017698,0.0000017646,0.0000017631,0.0000017696, -0.0000017864,0.0000017986,0.0000018066,0.0000018258,0.0000018404, -0.0000018359,0.0000018158,0.0000018007,0.0000017978,0.0000017979, -0.0000017990,0.0000018012,0.0000018041,0.0000018076,0.0000018108, -0.0000018135,0.0000018153,0.0000018172,0.0000018186,0.0000018194, -0.0000018203,0.0000018218,0.0000018239,0.0000018265,0.0000018292, -0.0000018189,0.0000018212,0.0000018238,0.0000018270,0.0000018304, -0.0000018336,0.0000018364,0.0000018397,0.0000018445,0.0000018494, -0.0000018495,0.0000018437,0.0000018388,0.0000018388,0.0000018409, -0.0000018405,0.0000018365,0.0000018310,0.0000018264,0.0000018240, -0.0000018246,0.0000018326,0.0000018448,0.0000018537,0.0000018620, -0.0000018687,0.0000018664,0.0000018580,0.0000018532,0.0000018524, -0.0000018559,0.0000018601,0.0000018559,0.0000018455,0.0000018408, -0.0000018394,0.0000018416,0.0000018548,0.0000018689,0.0000018726, -0.0000018739,0.0000018766,0.0000018781,0.0000018781,0.0000018770, -0.0000018747,0.0000018725,0.0000018743,0.0000018849,0.0000019009, -0.0000019092,0.0000019062,0.0000018913,0.0000018738,0.0000018685, -0.0000018731,0.0000018824,0.0000018862,0.0000018853,0.0000018838, -0.0000018849,0.0000018882,0.0000018926,0.0000018973,0.0000019015, -0.0000019043,0.0000019055,0.0000019056,0.0000019051,0.0000019040, -0.0000019025,0.0000019010,0.0000019003,0.0000019003,0.0000019006, -0.0000019014,0.0000019007,0.0000018994,0.0000018976,0.0000018959, -0.0000018947,0.0000018947,0.0000018954,0.0000018961,0.0000018969, -0.0000018979,0.0000018989,0.0000018999,0.0000019009,0.0000019020, -0.0000019032,0.0000019049,0.0000019072,0.0000019097,0.0000019122, -0.0000019150,0.0000019170,0.0000019180,0.0000019166,0.0000019136, -0.0000019076,0.0000019037,0.0000019048,0.0000019088,0.0000019197, -0.0000019337,0.0000019466,0.0000019567,0.0000019624,0.0000019632, -0.0000019610,0.0000019575,0.0000019541,0.0000019524,0.0000019520, -0.0000019518,0.0000019521,0.0000019522,0.0000019523,0.0000019523, -0.0000019523,0.0000019523,0.0000019522,0.0000019520,0.0000019519, -0.0000019521,0.0000019526,0.0000019530,0.0000019537,0.0000019543, -0.0000019546,0.0000019544,0.0000019544,0.0000019547,0.0000019553, -0.0000019560,0.0000019569,0.0000019578,0.0000019581,0.0000019579, -0.0000019570,0.0000019557,0.0000019538,0.0000019516,0.0000019491, -0.0000019468,0.0000019443,0.0000019418,0.0000019399,0.0000019395, -0.0000019398,0.0000019405,0.0000019413,0.0000019420,0.0000019426, -0.0000019429,0.0000019431,0.0000019437,0.0000019445,0.0000019454, -0.0000019465,0.0000019477,0.0000019489,0.0000019501,0.0000019513, -0.0000019522,0.0000019528,0.0000019529,0.0000019534,0.0000019537, -0.0000019539,0.0000019540,0.0000019543,0.0000019543,0.0000019544, -0.0000019548,0.0000019553,0.0000019559,0.0000019568,0.0000019580, -0.0000019597,0.0000019610,0.0000019617,0.0000019620,0.0000019620, -0.0000019621,0.0000019621,0.0000019618,0.0000019616,0.0000019613, -0.0000019606,0.0000019603,0.0000019605,0.0000019608,0.0000019611, -0.0000019616,0.0000019617,0.0000019609,0.0000019594,0.0000019571, -0.0000019538,0.0000019498,0.0000019451,0.0000019401,0.0000019354, -0.0000019314,0.0000019288,0.0000019274,0.0000019270,0.0000019278, -0.0000019297,0.0000019321,0.0000019345,0.0000019367,0.0000019386, -0.0000019404,0.0000019414,0.0000019410,0.0000019394,0.0000019357, -0.0000019298,0.0000019225,0.0000019149,0.0000019085,0.0000019036, -0.0000018987,0.0000018920,0.0000018832,0.0000018729,0.0000018620, -0.0000018521,0.0000018440,0.0000018375,0.0000018322,0.0000018279, -0.0000018248,0.0000018226,0.0000018204,0.0000018181,0.0000018156, -0.0000018127,0.0000018104,0.0000018100,0.0000018106,0.0000018113, -0.0000018117,0.0000018113,0.0000018105,0.0000018096,0.0000018084, -0.0000018072,0.0000018064,0.0000018052,0.0000018031,0.0000018014, -0.0000018007,0.0000017999,0.0000017992,0.0000017989,0.0000018016, -0.0000018053,0.0000018093,0.0000018135,0.0000018177,0.0000018217, -0.0000018255,0.0000018284,0.0000018298,0.0000018300,0.0000018294, -0.0000018282,0.0000018268,0.0000018256,0.0000018253,0.0000018262, -0.0000018279,0.0000018305,0.0000018339,0.0000018374,0.0000018413, -0.0000018456,0.0000018497,0.0000018535,0.0000018564,0.0000018581, -0.0000018584,0.0000018575,0.0000018560,0.0000018556,0.0000018572, -0.0000018602,0.0000018632,0.0000018655,0.0000018665,0.0000018659, -0.0000018635,0.0000018599,0.0000018560,0.0000018523,0.0000018498, -0.0000018470,0.0000018463,0.0000018473,0.0000018494,0.0000018523, -0.0000018557,0.0000018587,0.0000018620,0.0000018656,0.0000018683, -0.0000018703,0.0000018711,0.0000018718,0.0000018719,0.0000018702, -0.0000018675,0.0000018653,0.0000018634,0.0000018615,0.0000018609, -0.0000018605,0.0000018599,0.0000018592,0.0000018582,0.0000018571, -0.0000018561,0.0000018546,0.0000018525,0.0000018499,0.0000018468, -0.0000018431,0.0000018395,0.0000018366,0.0000018340,0.0000018318, -0.0000018301,0.0000018291,0.0000018286,0.0000018279,0.0000018271, -0.0000018264,0.0000018249,0.0000018219,0.0000018182,0.0000018148, -0.0000018111,0.0000018067,0.0000018018,0.0000017968,0.0000017917, -0.0000017870,0.0000017828,0.0000017795,0.0000017770,0.0000017759, -0.0000017766,0.0000017796,0.0000017844,0.0000017899,0.0000017959, -0.0000018026,0.0000018105,0.0000018184,0.0000018255,0.0000018321, -0.0000018392,0.0000018471,0.0000018548,0.0000018610,0.0000018647, -0.0000018657,0.0000018659,0.0000018663,0.0000018667,0.0000018662, -0.0000018651,0.0000018639,0.0000018634,0.0000018634,0.0000018636, -0.0000018635,0.0000018623,0.0000018603,0.0000018585,0.0000018572, -0.0000018558,0.0000018539,0.0000018510,0.0000018479,0.0000018464, -0.0000018476,0.0000018509,0.0000018559,0.0000018619,0.0000018679, -0.0000018733,0.0000018770,0.0000018808,0.0000018822,0.0000018830, -0.0000018840,0.0000018872,0.0000018916,0.0000019001,0.0000019103, -0.0000019197,0.0000019268,0.0000019318,0.0000019354,0.0000019373, -0.0000019379,0.0000019375,0.0000019364,0.0000019358,0.0000019359, -0.0000019360,0.0000019354,0.0000019331,0.0000019299,0.0000019259, -0.0000019214,0.0000019168,0.0000019125,0.0000019083,0.0000019025, -0.0000018952,0.0000018873,0.0000018796,0.0000018739,0.0000018707, -0.0000018688,0.0000018683,0.0000018687,0.0000018688,0.0000018698, -0.0000018707,0.0000018704,0.0000018701,0.0000018701,0.0000018707, -0.0000018716,0.0000018724,0.0000018721,0.0000018702,0.0000018671, -0.0000018635,0.0000018605,0.0000018580,0.0000018558,0.0000018535, -0.0000018519,0.0000018514,0.0000018524,0.0000018542,0.0000018560, -0.0000018578,0.0000018592,0.0000018600,0.0000018603,0.0000018616, -0.0000018634,0.0000018647,0.0000018656,0.0000018662,0.0000018664, -0.0000018664,0.0000018663,0.0000018664,0.0000018674,0.0000018692, -0.0000018713,0.0000018739,0.0000018771,0.0000018805,0.0000018838, -0.0000018866,0.0000018891,0.0000018917,0.0000018939,0.0000018956, -0.0000018970,0.0000018980,0.0000018984,0.0000018985,0.0000018990, -0.0000018998,0.0000019008,0.0000019025,0.0000019042,0.0000019061, -0.0000019084,0.0000019103,0.0000019114,0.0000019113,0.0000019090, -0.0000019046,0.0000018973,0.0000018861,0.0000018711,0.0000018551, -0.0000018407,0.0000018304,0.0000018261,0.0000018261,0.0000018295, -0.0000018350,0.0000018407,0.0000018457,0.0000018496,0.0000018522, -0.0000018538,0.0000018548,0.0000018549,0.0000018550,0.0000018565, -0.0000018590,0.0000018613,0.0000018631,0.0000018645,0.0000018654, -0.0000018665,0.0000018682,0.0000018704,0.0000018732,0.0000018775, -0.0000018840,0.0000018926,0.0000019019,0.0000019111,0.0000019194, -0.0000019263,0.0000019319,0.0000019360,0.0000019381,0.0000019392, -0.0000019395,0.0000019388,0.0000019366,0.0000019333,0.0000019289, -0.0000019235,0.0000019175,0.0000019123,0.0000019084,0.0000019058, -0.0000019059,0.0000019071,0.0000019094,0.0000019118,0.0000019134, -0.0000019138,0.0000019129,0.0000019110,0.0000019084,0.0000019068, -0.0000019050,0.0000019024,0.0000018991,0.0000018961,0.0000018934, -0.0000018905,0.0000018872,0.0000018845,0.0000018828,0.0000018810, -0.0000018781,0.0000018747,0.0000018713,0.0000018686,0.0000018668, -0.0000018663,0.0000018668,0.0000018688,0.0000018718,0.0000018750, -0.0000018782,0.0000018809,0.0000018827,0.0000018837,0.0000018849, -0.0000018864,0.0000018883,0.0000018911,0.0000018946,0.0000018982, -0.0000019006,0.0000019013,0.0000019021,0.0000019029,0.0000019024, -0.0000019005,0.0000018978,0.0000018939,0.0000018888,0.0000018842, -0.0000018808,0.0000018776,0.0000018750,0.0000018742,0.0000018750, -0.0000018766,0.0000018776,0.0000018775,0.0000018786,0.0000018824, -0.0000018871,0.0000018915,0.0000018959,0.0000019009,0.0000019060, -0.0000019100,0.0000019126,0.0000019149,0.0000019166,0.0000019188, -0.0000019208,0.0000019217,0.0000019211,0.0000019195,0.0000019175, -0.0000019147,0.0000019111,0.0000019074,0.0000019048,0.0000019043, -0.0000019054,0.0000019067,0.0000019065,0.0000019047,0.0000019007, -0.0000018952,0.0000018906,0.0000018880,0.0000018869,0.0000018861, -0.0000018853,0.0000018851,0.0000018877,0.0000018908,0.0000018928, -0.0000018920,0.0000018890,0.0000018846,0.0000018786,0.0000018718, -0.0000018655,0.0000018634,0.0000018644,0.0000018688,0.0000018734, -0.0000018751,0.0000018729,0.0000018670,0.0000018588,0.0000018501, -0.0000018453,0.0000018438,0.0000018433,0.0000018419,0.0000018390, -0.0000018339,0.0000018266,0.0000018183,0.0000018113,0.0000018079, -0.0000018082,0.0000018092,0.0000018117,0.0000018136,0.0000018134, -0.0000018126,0.0000018127,0.0000018131,0.0000018130,0.0000018119, -0.0000018103,0.0000018087,0.0000018071,0.0000018060,0.0000018051, -0.0000018032,0.0000018000,0.0000017963,0.0000017937,0.0000017950, -0.0000017971,0.0000017993,0.0000018016,0.0000018033,0.0000018031, -0.0000018021,0.0000018007,0.0000017998,0.0000018012,0.0000018036, -0.0000018074,0.0000018119,0.0000018159,0.0000018188,0.0000018197, -0.0000018187,0.0000018180,0.0000018175,0.0000018174,0.0000018181, -0.0000018186,0.0000018186,0.0000018188,0.0000018195,0.0000018208, -0.0000018223,0.0000018257,0.0000018287,0.0000018317,0.0000018351, -0.0000018375,0.0000018409,0.0000018426,0.0000018411,0.0000018378, -0.0000018324,0.0000018252,0.0000018175,0.0000018107,0.0000018036, -0.0000017956,0.0000017860,0.0000017767,0.0000017697,0.0000017643, -0.0000017597,0.0000017565,0.0000017544,0.0000017532,0.0000017544, -0.0000017576,0.0000017590,0.0000017571,0.0000017518,0.0000017454, -0.0000017410,0.0000017369,0.0000017379,0.0000017478,0.0000017636, -0.0000017824,0.0000018026,0.0000018225,0.0000018410,0.0000018565, -0.0000018688,0.0000018782,0.0000018851,0.0000018899,0.0000018899, -0.0000018910,0.0000018881,0.0000018812,0.0000018725,0.0000018653, -0.0000018595,0.0000018556,0.0000018530,0.0000018519,0.0000018509, -0.0000018488,0.0000018462,0.0000018460,0.0000018493,0.0000018552, -0.0000018608,0.0000018654,0.0000018690,0.0000018720,0.0000018745, -0.0000018752,0.0000018745,0.0000018723,0.0000018698,0.0000018674, -0.0000018655,0.0000018634,0.0000018609,0.0000018580,0.0000018546, -0.0000018504,0.0000018451,0.0000018399,0.0000018355,0.0000018307, -0.0000018249,0.0000018192,0.0000018153,0.0000018134,0.0000018117, -0.0000018090,0.0000018064,0.0000018039,0.0000018006,0.0000017946, -0.0000017876,0.0000017822,0.0000017811,0.0000017823,0.0000017836, -0.0000017842,0.0000017849,0.0000017859,0.0000017878,0.0000017892, -0.0000017905,0.0000017935,0.0000017978,0.0000018005,0.0000018012, -0.0000018012,0.0000018018,0.0000018021,0.0000018018,0.0000018012, -0.0000018002,0.0000017990,0.0000017976,0.0000017965,0.0000017962, -0.0000017966,0.0000017974,0.0000017982,0.0000017996,0.0000018015, -0.0000018028,0.0000018027,0.0000018013,0.0000017993,0.0000017975, -0.0000017949,0.0000017923,0.0000017908,0.0000017917,0.0000017944, -0.0000017982,0.0000018029,0.0000018080,0.0000018129,0.0000018167, -0.0000018194,0.0000018200,0.0000018204,0.0000018207,0.0000018216, -0.0000018227,0.0000018241,0.0000018258,0.0000018277,0.0000018307, -0.0000018329,0.0000018352,0.0000018349,0.0000018326,0.0000018302, -0.0000018294,0.0000018300,0.0000018311,0.0000018314,0.0000018320, -0.0000018337,0.0000018377,0.0000018442,0.0000018512,0.0000018559, -0.0000018566,0.0000018554,0.0000018521,0.0000018495,0.0000018496, -0.0000018521,0.0000018548,0.0000018577,0.0000018607,0.0000018642, -0.0000018666,0.0000018685,0.0000018692,0.0000018695,0.0000018693, -0.0000018681,0.0000018667,0.0000018650,0.0000018635,0.0000018623, -0.0000018609,0.0000018599,0.0000018592,0.0000018598,0.0000018626, -0.0000018644,0.0000018635,0.0000018599,0.0000018529,0.0000018431, -0.0000018318,0.0000018220,0.0000018142,0.0000018081,0.0000018033, -0.0000017980,0.0000017915,0.0000017837,0.0000017779,0.0000017740, -0.0000017723,0.0000017710,0.0000017695,0.0000017711,0.0000017739, -0.0000017762,0.0000017772,0.0000017767,0.0000017750,0.0000017727, -0.0000017701,0.0000017680,0.0000017653,0.0000017615,0.0000017590, -0.0000017588,0.0000017608,0.0000017633,0.0000017643,0.0000017652, -0.0000017688,0.0000017751,0.0000017806,0.0000017849,0.0000017881, -0.0000017912,0.0000017957,0.0000017973,0.0000017944,0.0000017892, -0.0000017877,0.0000017899,0.0000017901,0.0000017840,0.0000017729, -0.0000017655,0.0000017653,0.0000017688,0.0000017750,0.0000017810, -0.0000017839,0.0000017847,0.0000017867,0.0000017889,0.0000017887, -0.0000017866,0.0000017825,0.0000017765,0.0000017712,0.0000017682, -0.0000017652,0.0000017586,0.0000017442,0.0000017408,0.0000017478, -0.0000017528,0.0000017580,0.0000017746,0.0000017861,0.0000018145, -0.0000018416,0.0000018437,0.0000018199,0.0000017952,0.0000017814, -0.0000017843,0.0000017912,0.0000017957,0.0000017821,0.0000017743, -0.0000017732,0.0000017729,0.0000017708,0.0000017647,0.0000017558, -0.0000017536,0.0000017608,0.0000017674,0.0000017715,0.0000017772, -0.0000017803,0.0000017801,0.0000017773,0.0000017708,0.0000017602, -0.0000017530,0.0000017520,0.0000017541,0.0000017639,0.0000017719, -0.0000017632,0.0000017442,0.0000017381,0.0000017450,0.0000017589, -0.0000017673,0.0000017666,0.0000017613,0.0000017568,0.0000017563, -0.0000017576,0.0000017579,0.0000017557,0.0000017542,0.0000017549, -0.0000017519,0.0000017445,0.0000017413,0.0000017442,0.0000017501, -0.0000017576,0.0000017663,0.0000017729,0.0000017764,0.0000017772, -0.0000017752,0.0000017707,0.0000017664,0.0000017640,0.0000017648, -0.0000017757,0.0000017935,0.0000018034,0.0000018143,0.0000018345, -0.0000018436,0.0000018346,0.0000018163,0.0000018064,0.0000018059, -0.0000018067,0.0000018079,0.0000018090,0.0000018099,0.0000018109, -0.0000018122,0.0000018136,0.0000018150,0.0000018156,0.0000018149, -0.0000018131,0.0000018115,0.0000018111,0.0000018119,0.0000018140, -0.0000018165,0.0000018091,0.0000018113,0.0000018141,0.0000018176, -0.0000018214,0.0000018255,0.0000018298,0.0000018340,0.0000018390, -0.0000018461,0.0000018516,0.0000018513,0.0000018456,0.0000018410, -0.0000018413,0.0000018439,0.0000018447,0.0000018412,0.0000018340, -0.0000018254,0.0000018201,0.0000018240,0.0000018373,0.0000018494, -0.0000018594,0.0000018680,0.0000018672,0.0000018587,0.0000018531, -0.0000018531,0.0000018570,0.0000018587,0.0000018510,0.0000018427, -0.0000018403,0.0000018394,0.0000018433,0.0000018592,0.0000018728, -0.0000018759,0.0000018766,0.0000018774,0.0000018774,0.0000018762, -0.0000018753,0.0000018749,0.0000018745,0.0000018732,0.0000018760, -0.0000018881,0.0000019037,0.0000019104,0.0000019036,0.0000018868, -0.0000018729,0.0000018718,0.0000018764,0.0000018824,0.0000018849, -0.0000018852,0.0000018858,0.0000018873,0.0000018895,0.0000018919, -0.0000018942,0.0000018962,0.0000018976,0.0000018983,0.0000018982, -0.0000018975,0.0000018963,0.0000018949,0.0000018941,0.0000018943, -0.0000018957,0.0000018982,0.0000019009,0.0000019019,0.0000019031, -0.0000019030,0.0000019022,0.0000019019,0.0000019022,0.0000019028, -0.0000019039,0.0000019052,0.0000019066,0.0000019080,0.0000019094, -0.0000019108,0.0000019125,0.0000019144,0.0000019159,0.0000019169, -0.0000019164,0.0000019149,0.0000019106,0.0000019063,0.0000019045, -0.0000019066,0.0000019131,0.0000019257,0.0000019389,0.0000019503, -0.0000019579,0.0000019605,0.0000019598,0.0000019581,0.0000019561, -0.0000019544,0.0000019531,0.0000019526,0.0000019528,0.0000019521, -0.0000019499,0.0000019468,0.0000019430,0.0000019388,0.0000019350, -0.0000019321,0.0000019298,0.0000019282,0.0000019275,0.0000019277, -0.0000019289,0.0000019311,0.0000019340,0.0000019376,0.0000019420, -0.0000019466,0.0000019507,0.0000019541,0.0000019567,0.0000019578, -0.0000019578,0.0000019567,0.0000019543,0.0000019511,0.0000019481, -0.0000019458,0.0000019443,0.0000019440,0.0000019439,0.0000019450, -0.0000019461,0.0000019465,0.0000019463,0.0000019457,0.0000019458, -0.0000019467,0.0000019476,0.0000019482,0.0000019482,0.0000019482, -0.0000019485,0.0000019496,0.0000019502,0.0000019514,0.0000019527, -0.0000019542,0.0000019556,0.0000019571,0.0000019583,0.0000019594, -0.0000019605,0.0000019613,0.0000019619,0.0000019630,0.0000019642, -0.0000019651,0.0000019660,0.0000019668,0.0000019679,0.0000019691, -0.0000019702,0.0000019710,0.0000019718,0.0000019725,0.0000019733, -0.0000019741,0.0000019748,0.0000019750,0.0000019750,0.0000019750, -0.0000019750,0.0000019756,0.0000019760,0.0000019761,0.0000019758, -0.0000019752,0.0000019746,0.0000019742,0.0000019740,0.0000019738, -0.0000019732,0.0000019723,0.0000019710,0.0000019693,0.0000019675, -0.0000019657,0.0000019634,0.0000019610,0.0000019582,0.0000019544, -0.0000019485,0.0000019411,0.0000019330,0.0000019257,0.0000019203, -0.0000019172,0.0000019168,0.0000019190,0.0000019222,0.0000019257, -0.0000019290,0.0000019322,0.0000019356,0.0000019387,0.0000019407, -0.0000019412,0.0000019401,0.0000019367,0.0000019304,0.0000019230, -0.0000019156,0.0000019090,0.0000019038,0.0000018996,0.0000018955, -0.0000018915,0.0000018874,0.0000018832,0.0000018790,0.0000018753, -0.0000018724,0.0000018699,0.0000018670,0.0000018632,0.0000018584, -0.0000018527,0.0000018473,0.0000018427,0.0000018389,0.0000018357, -0.0000018331,0.0000018301,0.0000018265,0.0000018232,0.0000018200, -0.0000018171,0.0000018149,0.0000018128,0.0000018101,0.0000018074, -0.0000018049,0.0000018025,0.0000018000,0.0000017983,0.0000017977, -0.0000017977,0.0000017985,0.0000017996,0.0000018012,0.0000018032, -0.0000018053,0.0000018085,0.0000018116,0.0000018145,0.0000018172, -0.0000018194,0.0000018211,0.0000018224,0.0000018232,0.0000018240, -0.0000018254,0.0000018269,0.0000018288,0.0000018311,0.0000018336, -0.0000018367,0.0000018404,0.0000018441,0.0000018475,0.0000018505, -0.0000018526,0.0000018540,0.0000018543,0.0000018534,0.0000018516, -0.0000018495,0.0000018484,0.0000018490,0.0000018511,0.0000018534, -0.0000018551,0.0000018557,0.0000018548,0.0000018526,0.0000018494, -0.0000018468,0.0000018444,0.0000018429,0.0000018424,0.0000018424, -0.0000018425,0.0000018441,0.0000018461,0.0000018485,0.0000018511, -0.0000018533,0.0000018553,0.0000018571,0.0000018583,0.0000018588, -0.0000018586,0.0000018578,0.0000018564,0.0000018550,0.0000018535, -0.0000018518,0.0000018500,0.0000018481,0.0000018464,0.0000018450, -0.0000018437,0.0000018422,0.0000018404,0.0000018383,0.0000018362, -0.0000018341,0.0000018325,0.0000018314,0.0000018307,0.0000018306, -0.0000018305,0.0000018305,0.0000018302,0.0000018288,0.0000018267, -0.0000018246,0.0000018221,0.0000018194,0.0000018163,0.0000018125, -0.0000018071,0.0000018009,0.0000017953,0.0000017916,0.0000017892, -0.0000017876,0.0000017865,0.0000017860,0.0000017856,0.0000017858, -0.0000017874,0.0000017912,0.0000017969,0.0000018039,0.0000018117, -0.0000018205,0.0000018299,0.0000018383,0.0000018454,0.0000018517, -0.0000018578,0.0000018634,0.0000018681,0.0000018717,0.0000018734, -0.0000018739,0.0000018742,0.0000018744,0.0000018743,0.0000018737, -0.0000018730,0.0000018725,0.0000018723,0.0000018722,0.0000018720, -0.0000018711,0.0000018693,0.0000018678,0.0000018665,0.0000018644, -0.0000018613,0.0000018573,0.0000018537,0.0000018519,0.0000018524, -0.0000018546,0.0000018575,0.0000018613,0.0000018659,0.0000018691, -0.0000018713,0.0000018729,0.0000018746,0.0000018775,0.0000018823, -0.0000018887,0.0000018974,0.0000019082,0.0000019195,0.0000019289, -0.0000019366,0.0000019429,0.0000019475,0.0000019506,0.0000019524, -0.0000019532,0.0000019532,0.0000019530,0.0000019534,0.0000019534, -0.0000019528,0.0000019512,0.0000019482,0.0000019442,0.0000019389, -0.0000019328,0.0000019267,0.0000019209,0.0000019148,0.0000019080, -0.0000019008,0.0000018938,0.0000018880,0.0000018845,0.0000018835, -0.0000018832,0.0000018831,0.0000018826,0.0000018822,0.0000018827, -0.0000018826,0.0000018826,0.0000018824,0.0000018829,0.0000018837, -0.0000018851,0.0000018861,0.0000018857,0.0000018837,0.0000018802, -0.0000018746,0.0000018686,0.0000018636,0.0000018587,0.0000018545, -0.0000018516,0.0000018514,0.0000018527,0.0000018553,0.0000018578, -0.0000018595,0.0000018603,0.0000018606,0.0000018609,0.0000018621, -0.0000018629,0.0000018638,0.0000018644,0.0000018647,0.0000018651, -0.0000018652,0.0000018654,0.0000018667,0.0000018684,0.0000018703, -0.0000018723,0.0000018750,0.0000018778,0.0000018804,0.0000018824, -0.0000018840,0.0000018856,0.0000018867,0.0000018873,0.0000018878, -0.0000018886,0.0000018897,0.0000018914,0.0000018934,0.0000018959, -0.0000018987,0.0000019019,0.0000019050,0.0000019078,0.0000019108, -0.0000019134,0.0000019152,0.0000019160,0.0000019155,0.0000019127, -0.0000019076,0.0000019002,0.0000018895,0.0000018755,0.0000018606, -0.0000018469,0.0000018358,0.0000018292,0.0000018282,0.0000018301, -0.0000018337,0.0000018371,0.0000018403,0.0000018430,0.0000018450, -0.0000018466,0.0000018477,0.0000018489,0.0000018517,0.0000018557, -0.0000018592,0.0000018618,0.0000018637,0.0000018650,0.0000018660, -0.0000018670,0.0000018681,0.0000018688,0.0000018693,0.0000018703, -0.0000018727,0.0000018783,0.0000018862,0.0000018950,0.0000019043, -0.0000019136,0.0000019225,0.0000019297,0.0000019350,0.0000019382, -0.0000019391,0.0000019386,0.0000019379,0.0000019362,0.0000019335, -0.0000019293,0.0000019241,0.0000019193,0.0000019152,0.0000019124, -0.0000019125,0.0000019135,0.0000019159,0.0000019191,0.0000019213, -0.0000019224,0.0000019225,0.0000019218,0.0000019212,0.0000019201, -0.0000019181,0.0000019152,0.0000019124,0.0000019092,0.0000019053, -0.0000019010,0.0000018967,0.0000018927,0.0000018896,0.0000018868, -0.0000018838,0.0000018806,0.0000018776,0.0000018752,0.0000018729, -0.0000018713,0.0000018717,0.0000018739,0.0000018765,0.0000018784, -0.0000018799,0.0000018810,0.0000018814,0.0000018819,0.0000018827, -0.0000018840,0.0000018863,0.0000018900,0.0000018947,0.0000018993, -0.0000019025,0.0000019044,0.0000019072,0.0000019105,0.0000019111, -0.0000019097,0.0000019072,0.0000019031,0.0000018981,0.0000018936, -0.0000018895,0.0000018851,0.0000018808,0.0000018778,0.0000018768, -0.0000018773,0.0000018768,0.0000018760,0.0000018768,0.0000018794, -0.0000018825,0.0000018855,0.0000018892,0.0000018941,0.0000018994, -0.0000019044,0.0000019091,0.0000019136,0.0000019179,0.0000019211, -0.0000019225,0.0000019229,0.0000019227,0.0000019220,0.0000019207, -0.0000019188,0.0000019161,0.0000019131,0.0000019103,0.0000019081, -0.0000019064,0.0000019056,0.0000019042,0.0000019015,0.0000018973, -0.0000018931,0.0000018906,0.0000018907,0.0000018906,0.0000018896, -0.0000018875,0.0000018874,0.0000018874,0.0000018875,0.0000018867, -0.0000018855,0.0000018833,0.0000018793,0.0000018733,0.0000018665, -0.0000018631,0.0000018630,0.0000018671,0.0000018732,0.0000018778, -0.0000018799,0.0000018776,0.0000018713,0.0000018634,0.0000018577, -0.0000018547,0.0000018531,0.0000018523,0.0000018508,0.0000018475, -0.0000018418,0.0000018335,0.0000018239,0.0000018164,0.0000018119, -0.0000018108,0.0000018138,0.0000018155,0.0000018156,0.0000018152, -0.0000018156,0.0000018172,0.0000018184,0.0000018186,0.0000018179, -0.0000018172,0.0000018176,0.0000018185,0.0000018187,0.0000018173, -0.0000018134,0.0000018072,0.0000018007,0.0000017984,0.0000017997, -0.0000018021,0.0000018054,0.0000018080,0.0000018094,0.0000018091, -0.0000018073,0.0000018052,0.0000018047,0.0000018064,0.0000018099, -0.0000018148,0.0000018199,0.0000018234,0.0000018245,0.0000018236, -0.0000018223,0.0000018212,0.0000018218,0.0000018237,0.0000018253, -0.0000018255,0.0000018256,0.0000018262,0.0000018270,0.0000018280, -0.0000018302,0.0000018318,0.0000018345,0.0000018368,0.0000018395, -0.0000018439,0.0000018457,0.0000018450,0.0000018421,0.0000018377, -0.0000018326,0.0000018282,0.0000018231,0.0000018169,0.0000018087, -0.0000017994,0.0000017909,0.0000017838,0.0000017771,0.0000017707, -0.0000017662,0.0000017629,0.0000017624,0.0000017648,0.0000017685, -0.0000017693,0.0000017661,0.0000017594,0.0000017512,0.0000017436, -0.0000017356,0.0000017331,0.0000017335,0.0000017384,0.0000017483, -0.0000017629,0.0000017821,0.0000018027,0.0000018231,0.0000018413, -0.0000018562,0.0000018675,0.0000018761,0.0000018834,0.0000018902, -0.0000018900,0.0000018895,0.0000018866,0.0000018817,0.0000018758, -0.0000018710,0.0000018666,0.0000018620,0.0000018564,0.0000018490, -0.0000018434,0.0000018399,0.0000018411,0.0000018448,0.0000018493, -0.0000018540,0.0000018589,0.0000018640,0.0000018681,0.0000018699, -0.0000018693,0.0000018674,0.0000018654,0.0000018638,0.0000018621, -0.0000018600,0.0000018576,0.0000018546,0.0000018507,0.0000018450, -0.0000018382,0.0000018326,0.0000018287,0.0000018246,0.0000018198, -0.0000018156,0.0000018128,0.0000018106,0.0000018080,0.0000018049, -0.0000018029,0.0000018013,0.0000017975,0.0000017906,0.0000017840, -0.0000017812,0.0000017817,0.0000017833,0.0000017846,0.0000017860, -0.0000017873,0.0000017882,0.0000017885,0.0000017890,0.0000017899, -0.0000017922,0.0000017942,0.0000017947,0.0000017947,0.0000017948, -0.0000017954,0.0000017970,0.0000017989,0.0000017994,0.0000017989, -0.0000017978,0.0000017968,0.0000017964,0.0000017967,0.0000017975, -0.0000017983,0.0000017997,0.0000018016,0.0000018034,0.0000018044, -0.0000018043,0.0000018033,0.0000018011,0.0000017978,0.0000017935, -0.0000017889,0.0000017869,0.0000017867,0.0000017883,0.0000017916, -0.0000017961,0.0000018015,0.0000018069,0.0000018118,0.0000018159, -0.0000018192,0.0000018212,0.0000018224,0.0000018222,0.0000018216, -0.0000018215,0.0000018223,0.0000018250,0.0000018289,0.0000018331, -0.0000018360,0.0000018362,0.0000018359,0.0000018357,0.0000018350, -0.0000018338,0.0000018312,0.0000018296,0.0000018278,0.0000018299, -0.0000018349,0.0000018420,0.0000018492,0.0000018542,0.0000018554, -0.0000018539,0.0000018510,0.0000018491,0.0000018486,0.0000018491, -0.0000018506,0.0000018539,0.0000018583,0.0000018637,0.0000018684, -0.0000018719,0.0000018756,0.0000018769,0.0000018766,0.0000018753, -0.0000018737,0.0000018717,0.0000018690,0.0000018651,0.0000018613, -0.0000018592,0.0000018596,0.0000018626,0.0000018656,0.0000018678, -0.0000018667,0.0000018647,0.0000018584,0.0000018496,0.0000018386, -0.0000018267,0.0000018157,0.0000018079,0.0000018038,0.0000018015, -0.0000017986,0.0000017954,0.0000017923,0.0000017877,0.0000017819, -0.0000017765,0.0000017753,0.0000017771,0.0000017778,0.0000017776, -0.0000017763,0.0000017752,0.0000017736,0.0000017719,0.0000017700, -0.0000017671,0.0000017635,0.0000017614,0.0000017615,0.0000017637, -0.0000017664,0.0000017681,0.0000017702,0.0000017745,0.0000017787, -0.0000017819,0.0000017851,0.0000017880,0.0000017928,0.0000017980, -0.0000017983,0.0000017934,0.0000017896,0.0000017918,0.0000017942, -0.0000017904,0.0000017799,0.0000017694,0.0000017676,0.0000017711, -0.0000017777,0.0000017843,0.0000017871,0.0000017874,0.0000017896, -0.0000017934,0.0000017951,0.0000017943,0.0000017907,0.0000017842, -0.0000017769,0.0000017710,0.0000017683,0.0000017662,0.0000017597, -0.0000017440,0.0000017392,0.0000017459,0.0000017505,0.0000017588, -0.0000017767,0.0000017899,0.0000018251,0.0000018482,0.0000018437, -0.0000018159,0.0000017906,0.0000017790,0.0000017841,0.0000017914, -0.0000017950,0.0000017820,0.0000017732,0.0000017713,0.0000017697, -0.0000017664,0.0000017603,0.0000017549,0.0000017581,0.0000017660, -0.0000017700,0.0000017766,0.0000017819,0.0000017822,0.0000017804, -0.0000017779,0.0000017731,0.0000017626,0.0000017539,0.0000017527, -0.0000017545,0.0000017641,0.0000017723,0.0000017635,0.0000017438, -0.0000017375,0.0000017439,0.0000017573,0.0000017647,0.0000017636, -0.0000017590,0.0000017562,0.0000017565,0.0000017580,0.0000017580, -0.0000017558,0.0000017549,0.0000017557,0.0000017534,0.0000017459, -0.0000017414,0.0000017433,0.0000017488,0.0000017531,0.0000017583, -0.0000017635,0.0000017661,0.0000017660,0.0000017651,0.0000017643, -0.0000017638,0.0000017668,0.0000017820,0.0000017988,0.0000018075, -0.0000018227,0.0000018418,0.0000018456,0.0000018346,0.0000018207, -0.0000018141,0.0000018121,0.0000018108,0.0000018099,0.0000018097, -0.0000018103,0.0000018116,0.0000018128,0.0000018130,0.0000018119, -0.0000018091,0.0000018057,0.0000018029,0.0000018012,0.0000018011, -0.0000018022,0.0000018044,0.0000018068,0.0000018083,0.0000018103, -0.0000018128,0.0000018159,0.0000018187,0.0000018217,0.0000018245, -0.0000018280,0.0000018325,0.0000018397,0.0000018487,0.0000018536, -0.0000018533,0.0000018477,0.0000018434,0.0000018439,0.0000018469, -0.0000018481,0.0000018436,0.0000018324,0.0000018202,0.0000018186, -0.0000018296,0.0000018439,0.0000018560,0.0000018665,0.0000018676, -0.0000018593,0.0000018530,0.0000018538,0.0000018574,0.0000018559, -0.0000018469,0.0000018409,0.0000018393,0.0000018380,0.0000018445, -0.0000018621,0.0000018746,0.0000018763,0.0000018759,0.0000018744, -0.0000018727,0.0000018709,0.0000018699,0.0000018707,0.0000018728, -0.0000018733,0.0000018732,0.0000018769,0.0000018893,0.0000019042, -0.0000019118,0.0000019061,0.0000018919,0.0000018794,0.0000018748, -0.0000018759,0.0000018791,0.0000018819,0.0000018840,0.0000018856, -0.0000018870,0.0000018880,0.0000018888,0.0000018895,0.0000018899, -0.0000018901,0.0000018899,0.0000018895,0.0000018889,0.0000018882, -0.0000018875,0.0000018870,0.0000018874,0.0000018895,0.0000018931, -0.0000018972,0.0000019010,0.0000019039,0.0000019046,0.0000019069, -0.0000019076,0.0000019093,0.0000019103,0.0000019116,0.0000019129, -0.0000019142,0.0000019144,0.0000019149,0.0000019150,0.0000019133, -0.0000019103,0.0000019066,0.0000019053,0.0000019053,0.0000019077, -0.0000019163,0.0000019278,0.0000019398,0.0000019506,0.0000019577, -0.0000019599,0.0000019601,0.0000019600,0.0000019581,0.0000019552, -0.0000019514,0.0000019467,0.0000019413,0.0000019356,0.0000019300, -0.0000019243,0.0000019188,0.0000019142,0.0000019133,0.0000019099, -0.0000019095,0.0000019109,0.0000019130,0.0000019156,0.0000019187, -0.0000019221,0.0000019255,0.0000019284,0.0000019307,0.0000019328, -0.0000019353,0.0000019381,0.0000019406,0.0000019431,0.0000019460, -0.0000019489,0.0000019516,0.0000019538,0.0000019554,0.0000019563, -0.0000019563,0.0000019550,0.0000019519,0.0000019475,0.0000019424, -0.0000019374,0.0000019330,0.0000019303,0.0000019291,0.0000019279, -0.0000019295,0.0000019324,0.0000019357,0.0000019387,0.0000019412, -0.0000019432,0.0000019452,0.0000019476,0.0000019504,0.0000019534, -0.0000019563,0.0000019592,0.0000019618,0.0000019648,0.0000019673, -0.0000019692,0.0000019706,0.0000019714,0.0000019717,0.0000019724, -0.0000019730,0.0000019729,0.0000019732,0.0000019737,0.0000019740, -0.0000019743,0.0000019742,0.0000019747,0.0000019751,0.0000019756, -0.0000019761,0.0000019771,0.0000019777,0.0000019781,0.0000019781, -0.0000019779,0.0000019776,0.0000019778,0.0000019778,0.0000019778, -0.0000019777,0.0000019775,0.0000019775,0.0000019778,0.0000019781, -0.0000019783,0.0000019780,0.0000019773,0.0000019761,0.0000019742, -0.0000019715,0.0000019679,0.0000019640,0.0000019604,0.0000019574, -0.0000019547,0.0000019523,0.0000019496,0.0000019448,0.0000019368, -0.0000019265,0.0000019161,0.0000019087,0.0000019061,0.0000019073, -0.0000019108,0.0000019153,0.0000019193,0.0000019229,0.0000019266, -0.0000019308,0.0000019353,0.0000019393,0.0000019415,0.0000019418, -0.0000019408,0.0000019372,0.0000019314,0.0000019248,0.0000019183, -0.0000019126,0.0000019080,0.0000019043,0.0000019011,0.0000018983, -0.0000018962,0.0000018949,0.0000018941,0.0000018934,0.0000018920, -0.0000018900,0.0000018875,0.0000018848,0.0000018819,0.0000018785, -0.0000018754,0.0000018725,0.0000018690,0.0000018647,0.0000018599, -0.0000018548,0.0000018496,0.0000018444,0.0000018391,0.0000018334, -0.0000018276,0.0000018221,0.0000018170,0.0000018124,0.0000018089, -0.0000018064,0.0000018047,0.0000018038,0.0000018033,0.0000018031, -0.0000018033,0.0000018034,0.0000018032,0.0000018032,0.0000018030, -0.0000018029,0.0000018030,0.0000018025,0.0000018040,0.0000018064, -0.0000018095,0.0000018130,0.0000018165,0.0000018201,0.0000018238, -0.0000018273,0.0000018309,0.0000018341,0.0000018369,0.0000018398, -0.0000018429,0.0000018455,0.0000018476,0.0000018490,0.0000018494, -0.0000018493,0.0000018483,0.0000018465,0.0000018442,0.0000018423, -0.0000018416,0.0000018422,0.0000018435,0.0000018446,0.0000018453, -0.0000018459,0.0000018461,0.0000018459,0.0000018448,0.0000018450, -0.0000018444,0.0000018437,0.0000018437,0.0000018435,0.0000018439, -0.0000018450,0.0000018450,0.0000018453,0.0000018457,0.0000018461, -0.0000018462,0.0000018461,0.0000018459,0.0000018453,0.0000018446, -0.0000018437,0.0000018426,0.0000018413,0.0000018399,0.0000018390, -0.0000018384,0.0000018379,0.0000018376,0.0000018369,0.0000018360, -0.0000018349,0.0000018342,0.0000018339,0.0000018335,0.0000018332, -0.0000018326,0.0000018316,0.0000018305,0.0000018286,0.0000018256, -0.0000018231,0.0000018212,0.0000018191,0.0000018153,0.0000018095, -0.0000018028,0.0000017972,0.0000017941,0.0000017927,0.0000017930, -0.0000017945,0.0000017963,0.0000017982,0.0000018000,0.0000018012, -0.0000018030,0.0000018065,0.0000018119,0.0000018193,0.0000018273, -0.0000018352,0.0000018429,0.0000018494,0.0000018541,0.0000018577, -0.0000018611,0.0000018645,0.0000018678,0.0000018708,0.0000018732, -0.0000018745,0.0000018752,0.0000018758,0.0000018761,0.0000018762, -0.0000018765,0.0000018769,0.0000018771,0.0000018773,0.0000018774, -0.0000018771,0.0000018759,0.0000018744,0.0000018728,0.0000018702, -0.0000018661,0.0000018613,0.0000018576,0.0000018564,0.0000018569, -0.0000018576,0.0000018577,0.0000018581,0.0000018597,0.0000018612, -0.0000018631,0.0000018664,0.0000018704,0.0000018771,0.0000018860, -0.0000018956,0.0000019055,0.0000019163,0.0000019280,0.0000019390, -0.0000019479,0.0000019547,0.0000019598,0.0000019634,0.0000019659, -0.0000019677,0.0000019686,0.0000019685,0.0000019684,0.0000019690, -0.0000019688,0.0000019677,0.0000019658,0.0000019633,0.0000019595, -0.0000019543,0.0000019482,0.0000019414,0.0000019346,0.0000019271, -0.0000019186,0.0000019099,0.0000019018,0.0000018957,0.0000018935, -0.0000018941,0.0000018951,0.0000018962,0.0000018972,0.0000018974, -0.0000018976,0.0000018981,0.0000018982,0.0000018984,0.0000018988, -0.0000018994,0.0000019006,0.0000019012,0.0000019008,0.0000018995, -0.0000018955,0.0000018886,0.0000018807,0.0000018728,0.0000018653, -0.0000018587,0.0000018541,0.0000018529,0.0000018541,0.0000018563, -0.0000018581,0.0000018598,0.0000018608,0.0000018616,0.0000018624, -0.0000018631,0.0000018641,0.0000018651,0.0000018657,0.0000018661, -0.0000018662,0.0000018662,0.0000018673,0.0000018685,0.0000018693, -0.0000018700,0.0000018716,0.0000018731,0.0000018749,0.0000018760, -0.0000018764,0.0000018775,0.0000018785,0.0000018795,0.0000018808, -0.0000018833,0.0000018870,0.0000018915,0.0000018960,0.0000019011, -0.0000019064,0.0000019103,0.0000019132,0.0000019157,0.0000019181, -0.0000019203,0.0000019215,0.0000019216,0.0000019210,0.0000019191, -0.0000019152,0.0000019091,0.0000019012,0.0000018908,0.0000018782, -0.0000018652,0.0000018532,0.0000018427,0.0000018360,0.0000018342, -0.0000018350,0.0000018369,0.0000018398,0.0000018428,0.0000018454, -0.0000018477,0.0000018495,0.0000018510,0.0000018538,0.0000018584, -0.0000018632,0.0000018668,0.0000018693,0.0000018707,0.0000018709, -0.0000018704,0.0000018703,0.0000018707,0.0000018711,0.0000018713, -0.0000018716,0.0000018727,0.0000018749,0.0000018788,0.0000018842, -0.0000018913,0.0000018999,0.0000019092,0.0000019187,0.0000019275, -0.0000019337,0.0000019371,0.0000019381,0.0000019382,0.0000019376, -0.0000019353,0.0000019317,0.0000019280,0.0000019242,0.0000019204, -0.0000019177,0.0000019177,0.0000019187,0.0000019213,0.0000019244, -0.0000019265,0.0000019276,0.0000019282,0.0000019290,0.0000019289, -0.0000019279,0.0000019262,0.0000019248,0.0000019229,0.0000019197, -0.0000019156,0.0000019113,0.0000019068,0.0000019020,0.0000018981, -0.0000018943,0.0000018900,0.0000018860,0.0000018827,0.0000018795, -0.0000018764,0.0000018747,0.0000018749,0.0000018766,0.0000018786, -0.0000018799,0.0000018806,0.0000018812,0.0000018817,0.0000018821, -0.0000018817,0.0000018819,0.0000018837,0.0000018867,0.0000018903, -0.0000018935,0.0000018963,0.0000019000,0.0000019050,0.0000019094, -0.0000019111,0.0000019123,0.0000019129,0.0000019122,0.0000019106, -0.0000019085,0.0000019052,0.0000019002,0.0000018941,0.0000018885, -0.0000018843,0.0000018807,0.0000018773,0.0000018762,0.0000018755, -0.0000018762,0.0000018778,0.0000018794,0.0000018819,0.0000018865, -0.0000018928,0.0000018993,0.0000019056,0.0000019118,0.0000019171, -0.0000019203,0.0000019216,0.0000019221,0.0000019217,0.0000019208, -0.0000019200,0.0000019192,0.0000019179,0.0000019161,0.0000019132, -0.0000019096,0.0000019065,0.0000019041,0.0000019016,0.0000018987, -0.0000018955,0.0000018934,0.0000018942,0.0000018949,0.0000018957, -0.0000018941,0.0000018921,0.0000018899,0.0000018866,0.0000018841, -0.0000018810,0.0000018790,0.0000018768,0.0000018727,0.0000018676, -0.0000018636,0.0000018619,0.0000018635,0.0000018680,0.0000018735, -0.0000018777,0.0000018789,0.0000018765,0.0000018731,0.0000018696, -0.0000018665,0.0000018638,0.0000018615,0.0000018590,0.0000018568, -0.0000018540,0.0000018494,0.0000018424,0.0000018346,0.0000018261, -0.0000018201,0.0000018185,0.0000018174,0.0000018160,0.0000018142, -0.0000018140,0.0000018156,0.0000018182,0.0000018200,0.0000018206, -0.0000018216,0.0000018248,0.0000018286,0.0000018314,0.0000018328, -0.0000018304,0.0000018234,0.0000018146,0.0000018080,0.0000018054, -0.0000018058,0.0000018090,0.0000018131,0.0000018154,0.0000018158, -0.0000018145,0.0000018124,0.0000018109,0.0000018115,0.0000018142, -0.0000018191,0.0000018247,0.0000018294,0.0000018317,0.0000018313, -0.0000018297,0.0000018277,0.0000018275,0.0000018291,0.0000018305, -0.0000018308,0.0000018314,0.0000018323,0.0000018335,0.0000018343, -0.0000018354,0.0000018363,0.0000018379,0.0000018390,0.0000018421, -0.0000018461,0.0000018477,0.0000018475,0.0000018452,0.0000018420, -0.0000018388,0.0000018361,0.0000018326,0.0000018268,0.0000018193, -0.0000018114,0.0000018041,0.0000017972,0.0000017902,0.0000017834, -0.0000017769,0.0000017721,0.0000017712,0.0000017739,0.0000017776, -0.0000017783,0.0000017746,0.0000017671,0.0000017586,0.0000017499, -0.0000017416,0.0000017355,0.0000017320,0.0000017302,0.0000017306, -0.0000017373,0.0000017483,0.0000017629,0.0000017819,0.0000018023, -0.0000018216,0.0000018383,0.0000018531,0.0000018668,0.0000018782, -0.0000018853,0.0000018896,0.0000018886,0.0000018886,0.0000018873, -0.0000018851,0.0000018821,0.0000018772,0.0000018697,0.0000018604, -0.0000018520,0.0000018462,0.0000018428,0.0000018436,0.0000018437, -0.0000018451,0.0000018481,0.0000018520,0.0000018555,0.0000018574, -0.0000018574,0.0000018563,0.0000018550,0.0000018537,0.0000018522, -0.0000018505,0.0000018480,0.0000018450,0.0000018412,0.0000018354, -0.0000018289,0.0000018245,0.0000018216,0.0000018185,0.0000018151, -0.0000018121,0.0000018096,0.0000018069,0.0000018041,0.0000018021, -0.0000018013,0.0000018001,0.0000017956,0.0000017890,0.0000017837, -0.0000017821,0.0000017832,0.0000017846,0.0000017862,0.0000017875, -0.0000017886,0.0000017893,0.0000017899,0.0000017902,0.0000017913, -0.0000017925,0.0000017920,0.0000017908,0.0000017893,0.0000017879, -0.0000017879,0.0000017899,0.0000017933,0.0000017963,0.0000017972, -0.0000017968,0.0000017962,0.0000017961,0.0000017963,0.0000017974, -0.0000017995,0.0000018022,0.0000018044,0.0000018058,0.0000018063, -0.0000018062,0.0000018051,0.0000018026,0.0000017989,0.0000017942, -0.0000017902,0.0000017874,0.0000017869,0.0000017886,0.0000017909, -0.0000017941,0.0000017977,0.0000018019,0.0000018069,0.0000018127, -0.0000018180,0.0000018213,0.0000018219,0.0000018209,0.0000018199, -0.0000018196,0.0000018207,0.0000018230,0.0000018262,0.0000018298, -0.0000018325,0.0000018355,0.0000018379,0.0000018397,0.0000018392, -0.0000018371,0.0000018334,0.0000018297,0.0000018279,0.0000018286, -0.0000018323,0.0000018385,0.0000018456,0.0000018508,0.0000018528, -0.0000018512,0.0000018496,0.0000018474,0.0000018458,0.0000018457, -0.0000018472,0.0000018507,0.0000018568,0.0000018641,0.0000018712, -0.0000018765,0.0000018794,0.0000018812,0.0000018821,0.0000018825, -0.0000018814,0.0000018785,0.0000018731,0.0000018670,0.0000018622, -0.0000018601,0.0000018615,0.0000018624,0.0000018636,0.0000018644, -0.0000018632,0.0000018612,0.0000018579,0.0000018519,0.0000018426, -0.0000018305,0.0000018186,0.0000018098,0.0000018046,0.0000018035, -0.0000018052,0.0000018068,0.0000018051,0.0000017996,0.0000017939, -0.0000017912,0.0000017893,0.0000017859,0.0000017813,0.0000017782, -0.0000017759,0.0000017737,0.0000017717,0.0000017701,0.0000017678, -0.0000017658,0.0000017653,0.0000017663,0.0000017697,0.0000017725, -0.0000017739,0.0000017755,0.0000017775,0.0000017789,0.0000017810, -0.0000017841,0.0000017886,0.0000017956,0.0000017997,0.0000017975, -0.0000017922,0.0000017925,0.0000017968,0.0000017959,0.0000017871, -0.0000017753,0.0000017708,0.0000017742,0.0000017807,0.0000017871, -0.0000017903,0.0000017905,0.0000017922,0.0000017963,0.0000017988, -0.0000017993,0.0000017983,0.0000017932,0.0000017850,0.0000017769, -0.0000017710,0.0000017688,0.0000017669,0.0000017601,0.0000017441, -0.0000017381,0.0000017435,0.0000017480,0.0000017622,0.0000017774, -0.0000017981,0.0000018361,0.0000018517,0.0000018413,0.0000018115, -0.0000017858,0.0000017774,0.0000017839,0.0000017913,0.0000017943, -0.0000017822,0.0000017737,0.0000017698,0.0000017667,0.0000017624, -0.0000017577,0.0000017582,0.0000017649,0.0000017681,0.0000017738, -0.0000017813,0.0000017835,0.0000017819,0.0000017794,0.0000017781, -0.0000017751,0.0000017651,0.0000017551,0.0000017536,0.0000017555, -0.0000017654,0.0000017738,0.0000017630,0.0000017427,0.0000017367, -0.0000017432,0.0000017559,0.0000017625,0.0000017611,0.0000017576, -0.0000017564,0.0000017576,0.0000017583,0.0000017577,0.0000017557, -0.0000017551,0.0000017562,0.0000017544,0.0000017477,0.0000017415, -0.0000017427,0.0000017482,0.0000017518,0.0000017544,0.0000017574, -0.0000017602,0.0000017625,0.0000017633,0.0000017632,0.0000017700, -0.0000017887,0.0000018036,0.0000018122,0.0000018303,0.0000018468, -0.0000018462,0.0000018349,0.0000018231,0.0000018163,0.0000018128, -0.0000018112,0.0000018108,0.0000018113,0.0000018123,0.0000018126, -0.0000018112,0.0000018080,0.0000018041,0.0000018016,0.0000018002, -0.0000018000,0.0000018002,0.0000018010,0.0000018025,0.0000018045, -0.0000018065,0.0000018103,0.0000018122,0.0000018149,0.0000018182, -0.0000018216,0.0000018239,0.0000018251,0.0000018257,0.0000018276, -0.0000018325,0.0000018412,0.0000018514,0.0000018573,0.0000018566, -0.0000018501,0.0000018455,0.0000018464,0.0000018487,0.0000018487, -0.0000018408,0.0000018247,0.0000018154,0.0000018222,0.0000018375, -0.0000018519,0.0000018645,0.0000018678,0.0000018599,0.0000018532, -0.0000018540,0.0000018564,0.0000018529,0.0000018441,0.0000018399, -0.0000018382,0.0000018366,0.0000018449,0.0000018629,0.0000018746, -0.0000018755,0.0000018730,0.0000018703,0.0000018690,0.0000018679, -0.0000018672,0.0000018673,0.0000018685,0.0000018707,0.0000018723, -0.0000018728,0.0000018767,0.0000018882,0.0000019031,0.0000019108, -0.0000019118,0.0000019038,0.0000018930,0.0000018843,0.0000018793, -0.0000018797,0.0000018792,0.0000018809,0.0000018822,0.0000018833, -0.0000018835,0.0000018837,0.0000018836,0.0000018835,0.0000018832, -0.0000018830,0.0000018833,0.0000018837,0.0000018837,0.0000018834, -0.0000018830,0.0000018831,0.0000018844,0.0000018875,0.0000018914, -0.0000018958,0.0000018996,0.0000019032,0.0000019061,0.0000019083, -0.0000019094,0.0000019102,0.0000019100,0.0000019089,0.0000019065, -0.0000019043,0.0000019029,0.0000019026,0.0000019055,0.0000019096, -0.0000019188,0.0000019286,0.0000019398,0.0000019491,0.0000019564, -0.0000019593,0.0000019598,0.0000019596,0.0000019549,0.0000019484, -0.0000019411,0.0000019333,0.0000019254,0.0000019176,0.0000019103, -0.0000019058,0.0000019019,0.0000019014,0.0000019043,0.0000019104, -0.0000019186,0.0000019282,0.0000019386,0.0000019480,0.0000019558, -0.0000019619,0.0000019663,0.0000019671,0.0000019686,0.0000019701, -0.0000019704,0.0000019701,0.0000019697,0.0000019698,0.0000019695, -0.0000019687,0.0000019681,0.0000019682,0.0000019667,0.0000019647, -0.0000019629,0.0000019616,0.0000019606,0.0000019598,0.0000019591, -0.0000019580,0.0000019559,0.0000019522,0.0000019469,0.0000019403, -0.0000019332,0.0000019270,0.0000019227,0.0000019213,0.0000019223, -0.0000019251,0.0000019281,0.0000019310,0.0000019341,0.0000019382, -0.0000019428,0.0000019477,0.0000019522,0.0000019564,0.0000019603, -0.0000019638,0.0000019667,0.0000019687,0.0000019703,0.0000019712, -0.0000019716,0.0000019720,0.0000019724,0.0000019727,0.0000019732, -0.0000019735,0.0000019738,0.0000019735,0.0000019727,0.0000019718, -0.0000019704,0.0000019685,0.0000019668,0.0000019654,0.0000019640, -0.0000019628,0.0000019618,0.0000019613,0.0000019612,0.0000019616, -0.0000019621,0.0000019625,0.0000019627,0.0000019626,0.0000019633, -0.0000019648,0.0000019669,0.0000019685,0.0000019697,0.0000019700, -0.0000019694,0.0000019674,0.0000019643,0.0000019601,0.0000019554, -0.0000019508,0.0000019468,0.0000019436,0.0000019414,0.0000019399, -0.0000019372,0.0000019313,0.0000019220,0.0000019110,0.0000019016, -0.0000018966,0.0000018961,0.0000018991,0.0000019033,0.0000019080, -0.0000019120,0.0000019153,0.0000019188,0.0000019230,0.0000019279, -0.0000019330,0.0000019374,0.0000019404,0.0000019420,0.0000019421, -0.0000019415,0.0000019392,0.0000019357,0.0000019315,0.0000019269, -0.0000019221,0.0000019178,0.0000019140,0.0000019106,0.0000019079, -0.0000019053,0.0000019026,0.0000019000,0.0000018977,0.0000018959, -0.0000018948,0.0000018944,0.0000018943,0.0000018945,0.0000018946, -0.0000018937,0.0000018920,0.0000018896,0.0000018868,0.0000018835, -0.0000018789,0.0000018730,0.0000018663,0.0000018588,0.0000018509, -0.0000018428,0.0000018350,0.0000018280,0.0000018223,0.0000018184, -0.0000018157,0.0000018138,0.0000018128,0.0000018122,0.0000018115, -0.0000018106,0.0000018090,0.0000018068,0.0000018042,0.0000018013, -0.0000017987,0.0000017968,0.0000017962,0.0000017955,0.0000017957, -0.0000017987,0.0000018032,0.0000018086,0.0000018152,0.0000018217, -0.0000018269,0.0000018313,0.0000018353,0.0000018389,0.0000018418, -0.0000018440,0.0000018451,0.0000018453,0.0000018448,0.0000018438, -0.0000018423,0.0000018405,0.0000018384,0.0000018366,0.0000018353, -0.0000018346,0.0000018344,0.0000018351,0.0000018364,0.0000018384, -0.0000018411,0.0000018439,0.0000018455,0.0000018464,0.0000018474, -0.0000018472,0.0000018469,0.0000018467,0.0000018461,0.0000018453, -0.0000018445,0.0000018439,0.0000018428,0.0000018412,0.0000018404, -0.0000018394,0.0000018385,0.0000018377,0.0000018370,0.0000018365, -0.0000018360,0.0000018357,0.0000018357,0.0000018358,0.0000018359, -0.0000018357,0.0000018348,0.0000018336,0.0000018326,0.0000018315, -0.0000018302,0.0000018285,0.0000018267,0.0000018250,0.0000018236, -0.0000018219,0.0000018197,0.0000018166,0.0000018122,0.0000018061, -0.0000017999,0.0000017954,0.0000017934,0.0000017937,0.0000017953, -0.0000017985,0.0000018032,0.0000018084,0.0000018132,0.0000018176, -0.0000018212,0.0000018240,0.0000018271,0.0000018313,0.0000018368, -0.0000018424,0.0000018466,0.0000018495,0.0000018521,0.0000018544, -0.0000018563,0.0000018585,0.0000018612,0.0000018645,0.0000018680, -0.0000018709,0.0000018725,0.0000018731,0.0000018736,0.0000018739, -0.0000018741,0.0000018748,0.0000018758,0.0000018766,0.0000018771, -0.0000018777,0.0000018782,0.0000018779,0.0000018764,0.0000018742, -0.0000018716,0.0000018672,0.0000018625,0.0000018593,0.0000018585, -0.0000018590,0.0000018588,0.0000018576,0.0000018560,0.0000018555, -0.0000018568,0.0000018594,0.0000018664,0.0000018742,0.0000018831, -0.0000018937,0.0000019045,0.0000019151,0.0000019264,0.0000019381, -0.0000019492,0.0000019581,0.0000019641,0.0000019687,0.0000019732, -0.0000019769,0.0000019792,0.0000019807,0.0000019809,0.0000019799, -0.0000019796,0.0000019802,0.0000019798,0.0000019788,0.0000019770, -0.0000019750,0.0000019722,0.0000019681,0.0000019632,0.0000019577, -0.0000019514,0.0000019440,0.0000019349,0.0000019256,0.0000019163, -0.0000019090,0.0000019055,0.0000019046,0.0000019048,0.0000019062, -0.0000019075,0.0000019076,0.0000019083,0.0000019091,0.0000019091, -0.0000019087,0.0000019085,0.0000019092,0.0000019100,0.0000019100, -0.0000019094,0.0000019076,0.0000019041,0.0000018986,0.0000018916, -0.0000018836,0.0000018752,0.0000018676,0.0000018620,0.0000018590, -0.0000018582,0.0000018583,0.0000018591,0.0000018602,0.0000018617, -0.0000018631,0.0000018640,0.0000018653,0.0000018667,0.0000018675, -0.0000018677,0.0000018677,0.0000018672,0.0000018675,0.0000018682, -0.0000018683,0.0000018683,0.0000018693,0.0000018707,0.0000018730, -0.0000018753,0.0000018770,0.0000018791,0.0000018818,0.0000018848, -0.0000018881,0.0000018921,0.0000018973,0.0000019035,0.0000019096, -0.0000019151,0.0000019202,0.0000019238,0.0000019259,0.0000019274, -0.0000019283,0.0000019288,0.0000019284,0.0000019269,0.0000019247, -0.0000019222,0.0000019193,0.0000019149,0.0000019085,0.0000019006, -0.0000018912,0.0000018807,0.0000018702,0.0000018605,0.0000018527, -0.0000018480,0.0000018464,0.0000018468,0.0000018489,0.0000018525, -0.0000018562,0.0000018596,0.0000018626,0.0000018648,0.0000018668, -0.0000018701,0.0000018741,0.0000018775,0.0000018797,0.0000018810, -0.0000018811,0.0000018801,0.0000018787,0.0000018775,0.0000018766, -0.0000018759,0.0000018753,0.0000018748,0.0000018751,0.0000018767, -0.0000018795,0.0000018833,0.0000018879,0.0000018932,0.0000018996, -0.0000019083,0.0000019178,0.0000019261,0.0000019326,0.0000019369, -0.0000019389,0.0000019386,0.0000019362,0.0000019332,0.0000019303, -0.0000019270,0.0000019238,0.0000019218,0.0000019224,0.0000019241, -0.0000019266,0.0000019291,0.0000019304,0.0000019309,0.0000019315, -0.0000019319,0.0000019316,0.0000019308,0.0000019301,0.0000019294, -0.0000019274,0.0000019243,0.0000019213,0.0000019179,0.0000019133, -0.0000019092,0.0000019060,0.0000019025,0.0000018980,0.0000018935, -0.0000018893,0.0000018852,0.0000018819,0.0000018804,0.0000018808, -0.0000018827,0.0000018849,0.0000018866,0.0000018875,0.0000018878, -0.0000018877,0.0000018868,0.0000018858,0.0000018856,0.0000018863, -0.0000018867,0.0000018874,0.0000018881,0.0000018895,0.0000018924, -0.0000018967,0.0000019016,0.0000019064,0.0000019105,0.0000019130, -0.0000019151,0.0000019172,0.0000019181,0.0000019172,0.0000019141, -0.0000019095,0.0000019040,0.0000018981,0.0000018919,0.0000018855, -0.0000018791,0.0000018760,0.0000018740,0.0000018733,0.0000018737, -0.0000018762,0.0000018812,0.0000018876,0.0000018944,0.0000019014, -0.0000019080,0.0000019135,0.0000019171,0.0000019183,0.0000019181, -0.0000019176,0.0000019174,0.0000019175,0.0000019180,0.0000019171, -0.0000019162,0.0000019133,0.0000019094,0.0000019057,0.0000019022, -0.0000018994,0.0000018974,0.0000018967,0.0000018975,0.0000018987, -0.0000019011,0.0000019013,0.0000019003,0.0000018981,0.0000018934, -0.0000018874,0.0000018812,0.0000018772,0.0000018733,0.0000018695, -0.0000018660,0.0000018639,0.0000018625,0.0000018628,0.0000018644, -0.0000018674,0.0000018704,0.0000018729,0.0000018744,0.0000018743, -0.0000018752,0.0000018749,0.0000018732,0.0000018707,0.0000018672, -0.0000018639,0.0000018617,0.0000018600,0.0000018584,0.0000018548, -0.0000018477,0.0000018396,0.0000018328,0.0000018260,0.0000018201, -0.0000018147,0.0000018125,0.0000018115,0.0000018133,0.0000018154, -0.0000018170,0.0000018197,0.0000018250,0.0000018313,0.0000018365, -0.0000018421,0.0000018433,0.0000018390,0.0000018318,0.0000018243, -0.0000018181,0.0000018151,0.0000018160,0.0000018189,0.0000018209, -0.0000018212,0.0000018206,0.0000018187,0.0000018169,0.0000018163, -0.0000018178,0.0000018213,0.0000018265,0.0000018319,0.0000018348, -0.0000018360,0.0000018346,0.0000018319,0.0000018307,0.0000018309, -0.0000018314,0.0000018317,0.0000018330,0.0000018348,0.0000018369, -0.0000018381,0.0000018387,0.0000018394,0.0000018398,0.0000018406, -0.0000018438,0.0000018472,0.0000018490,0.0000018494,0.0000018486, -0.0000018468,0.0000018446,0.0000018418,0.0000018374,0.0000018319, -0.0000018265,0.0000018211,0.0000018148,0.0000018086,0.0000018025, -0.0000017962,0.0000017891,0.0000017829,0.0000017803,0.0000017816, -0.0000017842,0.0000017848,0.0000017811,0.0000017739,0.0000017658, -0.0000017578,0.0000017500,0.0000017419,0.0000017353,0.0000017298, -0.0000017296,0.0000017287,0.0000017299,0.0000017363,0.0000017468, -0.0000017614,0.0000017795,0.0000017986,0.0000018183,0.0000018379, -0.0000018553,0.0000018684,0.0000018780,0.0000018839,0.0000018880, -0.0000018886,0.0000018900,0.0000018894,0.0000018869,0.0000018819, -0.0000018753,0.0000018687,0.0000018627,0.0000018580,0.0000018541, -0.0000018505,0.0000018476,0.0000018484,0.0000018489,0.0000018485, -0.0000018477,0.0000018466,0.0000018452,0.0000018434,0.0000018415, -0.0000018397,0.0000018381,0.0000018363,0.0000018345,0.0000018318, -0.0000018273,0.0000018224,0.0000018194,0.0000018178,0.0000018159, -0.0000018137,0.0000018114,0.0000018087,0.0000018063,0.0000018054, -0.0000018056,0.0000018064,0.0000018060,0.0000018025,0.0000017963, -0.0000017910,0.0000017893,0.0000017890,0.0000017885,0.0000017881, -0.0000017883,0.0000017895,0.0000017906,0.0000017918,0.0000017927, -0.0000017940,0.0000017944,0.0000017926,0.0000017899,0.0000017874, -0.0000017851,0.0000017836,0.0000017842,0.0000017876,0.0000017917, -0.0000017944,0.0000017954,0.0000017957,0.0000017956,0.0000017959, -0.0000017977,0.0000018010,0.0000018043,0.0000018069,0.0000018083, -0.0000018085,0.0000018079,0.0000018059,0.0000018028,0.0000017994, -0.0000017957,0.0000017924,0.0000017908,0.0000017915,0.0000017932, -0.0000017950,0.0000017966,0.0000017989,0.0000018016,0.0000018062, -0.0000018119,0.0000018169,0.0000018192,0.0000018193,0.0000018188, -0.0000018186,0.0000018194,0.0000018207,0.0000018223,0.0000018238, -0.0000018255,0.0000018287,0.0000018328,0.0000018364,0.0000018396, -0.0000018401,0.0000018403,0.0000018381,0.0000018344,0.0000018315, -0.0000018301,0.0000018322,0.0000018367,0.0000018414,0.0000018454, -0.0000018476,0.0000018480,0.0000018466,0.0000018451,0.0000018444, -0.0000018444,0.0000018458,0.0000018501,0.0000018573,0.0000018655, -0.0000018722,0.0000018768,0.0000018798,0.0000018831,0.0000018851, -0.0000018866,0.0000018854,0.0000018819,0.0000018765,0.0000018711, -0.0000018670,0.0000018640,0.0000018616,0.0000018611,0.0000018590, -0.0000018583,0.0000018577,0.0000018571,0.0000018553,0.0000018522, -0.0000018450,0.0000018348,0.0000018234,0.0000018132,0.0000018080, -0.0000018076,0.0000018099,0.0000018107,0.0000018098,0.0000018091, -0.0000018084,0.0000018058,0.0000018000,0.0000017932,0.0000017876, -0.0000017834,0.0000017801,0.0000017782,0.0000017770,0.0000017754, -0.0000017747,0.0000017747,0.0000017761,0.0000017785,0.0000017791, -0.0000017782,0.0000017777,0.0000017773,0.0000017774,0.0000017795, -0.0000017837,0.0000017912,0.0000017990,0.0000018004,0.0000017958, -0.0000017939,0.0000017979,0.0000017992,0.0000017936,0.0000017824, -0.0000017755,0.0000017780,0.0000017844,0.0000017895,0.0000017924, -0.0000017933,0.0000017950,0.0000017988,0.0000018014,0.0000018022, -0.0000018026,0.0000018008,0.0000017948,0.0000017856,0.0000017772, -0.0000017721,0.0000017697,0.0000017670,0.0000017602,0.0000017443, -0.0000017370,0.0000017406,0.0000017475,0.0000017668,0.0000017787, -0.0000018103,0.0000018454,0.0000018520,0.0000018378,0.0000018068, -0.0000017814,0.0000017764,0.0000017839,0.0000017908,0.0000017934, -0.0000017829,0.0000017748,0.0000017693,0.0000017650,0.0000017611, -0.0000017612,0.0000017658,0.0000017676,0.0000017710,0.0000017791, -0.0000017833,0.0000017830,0.0000017808,0.0000017794,0.0000017792, -0.0000017776,0.0000017676,0.0000017561,0.0000017546,0.0000017569, -0.0000017675,0.0000017753,0.0000017612,0.0000017407,0.0000017358, -0.0000017430,0.0000017551,0.0000017609,0.0000017592,0.0000017568, -0.0000017573,0.0000017590,0.0000017587,0.0000017573,0.0000017552, -0.0000017552,0.0000017574,0.0000017565,0.0000017509,0.0000017439, -0.0000017431,0.0000017471,0.0000017516,0.0000017548,0.0000017581, -0.0000017606,0.0000017611,0.0000017627,0.0000017751,0.0000017952, -0.0000018072,0.0000018171,0.0000018366,0.0000018478,0.0000018450, -0.0000018330,0.0000018224,0.0000018166,0.0000018142,0.0000018134, -0.0000018133,0.0000018131,0.0000018122,0.0000018093,0.0000018053, -0.0000018024,0.0000018016,0.0000018025,0.0000018037,0.0000018044, -0.0000018046,0.0000018049,0.0000018056,0.0000018069,0.0000018086, -0.0000018120,0.0000018139,0.0000018165,0.0000018202,0.0000018246, -0.0000018283,0.0000018298,0.0000018296,0.0000018285,0.0000018289, -0.0000018327,0.0000018434,0.0000018560,0.0000018627,0.0000018602, -0.0000018517,0.0000018468,0.0000018471,0.0000018491,0.0000018465, -0.0000018307,0.0000018148,0.0000018163,0.0000018309,0.0000018470, -0.0000018617,0.0000018672,0.0000018603,0.0000018528,0.0000018535, -0.0000018551,0.0000018503,0.0000018423,0.0000018392,0.0000018371, -0.0000018355,0.0000018441,0.0000018613,0.0000018726,0.0000018734, -0.0000018702,0.0000018680,0.0000018678,0.0000018674,0.0000018670, -0.0000018669,0.0000018665,0.0000018668,0.0000018688,0.0000018710, -0.0000018720,0.0000018755,0.0000018856,0.0000019003,0.0000019128, -0.0000019175,0.0000019162,0.0000019108,0.0000019032,0.0000018962, -0.0000018913,0.0000018877,0.0000018857,0.0000018838,0.0000018817, -0.0000018813,0.0000018791,0.0000018776,0.0000018773,0.0000018770, -0.0000018775,0.0000018787,0.0000018798,0.0000018802,0.0000018803, -0.0000018802,0.0000018805,0.0000018821,0.0000018843,0.0000018872, -0.0000018905,0.0000018935,0.0000018959,0.0000018976,0.0000018982, -0.0000018983,0.0000018994,0.0000019008,0.0000019023,0.0000019056, -0.0000019125,0.0000019208,0.0000019310,0.0000019415,0.0000019494, -0.0000019555,0.0000019568,0.0000019566,0.0000019538,0.0000019471, -0.0000019397,0.0000019315,0.0000019225,0.0000019128,0.0000019038, -0.0000018967,0.0000018962,0.0000019021,0.0000019132,0.0000019286, -0.0000019442,0.0000019560,0.0000019606,0.0000019645,0.0000019669, -0.0000019679,0.0000019676,0.0000019668,0.0000019662,0.0000019665, -0.0000019666,0.0000019667,0.0000019665,0.0000019660,0.0000019651, -0.0000019639,0.0000019634,0.0000019638,0.0000019647,0.0000019648, -0.0000019662,0.0000019675,0.0000019686,0.0000019694,0.0000019700, -0.0000019701,0.0000019693,0.0000019676,0.0000019663,0.0000019638, -0.0000019608,0.0000019576,0.0000019540,0.0000019498,0.0000019449, -0.0000019402,0.0000019367,0.0000019350,0.0000019347,0.0000019351, -0.0000019365,0.0000019388,0.0000019422,0.0000019464,0.0000019511, -0.0000019557,0.0000019596,0.0000019628,0.0000019655,0.0000019677, -0.0000019691,0.0000019701,0.0000019710,0.0000019711,0.0000019710, -0.0000019709,0.0000019703,0.0000019696,0.0000019684,0.0000019662, -0.0000019631,0.0000019600,0.0000019584,0.0000019576,0.0000019573, -0.0000019574,0.0000019578,0.0000019587,0.0000019597,0.0000019606, -0.0000019611,0.0000019613,0.0000019613,0.0000019611,0.0000019608, -0.0000019610,0.0000019617,0.0000019628,0.0000019633,0.0000019632, -0.0000019619,0.0000019595,0.0000019562,0.0000019519,0.0000019476, -0.0000019440,0.0000019404,0.0000019371,0.0000019343,0.0000019320, -0.0000019293,0.0000019257,0.0000019209,0.0000019142,0.0000019061, -0.0000018986,0.0000018945,0.0000018920,0.0000018927,0.0000018954, -0.0000018992,0.0000019030,0.0000019058,0.0000019080,0.0000019100, -0.0000019121,0.0000019145,0.0000019179,0.0000019225,0.0000019275, -0.0000019320,0.0000019358,0.0000019392,0.0000019416,0.0000019431, -0.0000019431,0.0000019424,0.0000019409,0.0000019392,0.0000019375, -0.0000019358,0.0000019340,0.0000019321,0.0000019297,0.0000019264, -0.0000019225,0.0000019179,0.0000019132,0.0000019091,0.0000019057, -0.0000019030,0.0000019015,0.0000019007,0.0000019002,0.0000018999, -0.0000019001,0.0000019006,0.0000019007,0.0000018998,0.0000018980, -0.0000018955,0.0000018920,0.0000018875,0.0000018821,0.0000018760, -0.0000018696,0.0000018632,0.0000018569,0.0000018504,0.0000018439, -0.0000018378,0.0000018328,0.0000018291,0.0000018256,0.0000018223, -0.0000018192,0.0000018162,0.0000018128,0.0000018093,0.0000018053, -0.0000018010,0.0000017968,0.0000017929,0.0000017907,0.0000017904, -0.0000017900,0.0000017928,0.0000017982,0.0000018044,0.0000018104, -0.0000018171,0.0000018234,0.0000018290,0.0000018337,0.0000018374, -0.0000018399,0.0000018411,0.0000018408,0.0000018395,0.0000018377, -0.0000018356,0.0000018335,0.0000018319,0.0000018301,0.0000018286, -0.0000018277,0.0000018276,0.0000018286,0.0000018313,0.0000018346, -0.0000018383,0.0000018419,0.0000018451,0.0000018471,0.0000018483, -0.0000018484,0.0000018486,0.0000018478,0.0000018469,0.0000018459, -0.0000018441,0.0000018420,0.0000018400,0.0000018383,0.0000018367, -0.0000018351,0.0000018341,0.0000018332,0.0000018325,0.0000018319, -0.0000018314,0.0000018309,0.0000018303,0.0000018293,0.0000018273, -0.0000018249,0.0000018227,0.0000018207,0.0000018188,0.0000018170, -0.0000018155,0.0000018143,0.0000018124,0.0000018088,0.0000018038, -0.0000017984,0.0000017936,0.0000017906,0.0000017901,0.0000017915, -0.0000017944,0.0000017992,0.0000018060,0.0000018141,0.0000018225, -0.0000018302,0.0000018368,0.0000018420,0.0000018451,0.0000018457, -0.0000018454,0.0000018457,0.0000018473,0.0000018487,0.0000018492, -0.0000018500,0.0000018515,0.0000018535,0.0000018555,0.0000018582, -0.0000018617,0.0000018656,0.0000018688,0.0000018703,0.0000018707, -0.0000018707,0.0000018707,0.0000018707,0.0000018710,0.0000018721, -0.0000018736,0.0000018748,0.0000018758,0.0000018766,0.0000018768, -0.0000018758,0.0000018733,0.0000018698,0.0000018658,0.0000018621, -0.0000018600,0.0000018597,0.0000018598,0.0000018587,0.0000018575, -0.0000018565,0.0000018571,0.0000018594,0.0000018647,0.0000018728, -0.0000018825,0.0000018924,0.0000019032,0.0000019149,0.0000019267, -0.0000019383,0.0000019489,0.0000019577,0.0000019650,0.0000019711, -0.0000019764,0.0000019819,0.0000019869,0.0000019898,0.0000019911, -0.0000019913,0.0000019906,0.0000019892,0.0000019892,0.0000019897, -0.0000019898,0.0000019887,0.0000019867,0.0000019849,0.0000019822, -0.0000019789,0.0000019751,0.0000019703,0.0000019649,0.0000019588, -0.0000019516,0.0000019440,0.0000019348,0.0000019271,0.0000019227, -0.0000019206,0.0000019202,0.0000019206,0.0000019205,0.0000019202, -0.0000019204,0.0000019204,0.0000019198,0.0000019193,0.0000019191, -0.0000019194,0.0000019191,0.0000019176,0.0000019141,0.0000019104, -0.0000019071,0.0000019035,0.0000018993,0.0000018937,0.0000018872, -0.0000018801,0.0000018734,0.0000018683,0.0000018654,0.0000018638, -0.0000018633,0.0000018641,0.0000018656,0.0000018665,0.0000018674, -0.0000018685,0.0000018693,0.0000018697,0.0000018698,0.0000018698, -0.0000018702,0.0000018717,0.0000018739,0.0000018767,0.0000018801, -0.0000018839,0.0000018886,0.0000018932,0.0000018971,0.0000019006, -0.0000019038,0.0000019067,0.0000019088,0.0000019104,0.0000019125, -0.0000019158,0.0000019186,0.0000019218,0.0000019252,0.0000019284, -0.0000019312,0.0000019343,0.0000019364,0.0000019367,0.0000019356, -0.0000019329,0.0000019287,0.0000019244,0.0000019206,0.0000019169, -0.0000019119,0.0000019053,0.0000018977,0.0000018899,0.0000018821, -0.0000018747,0.0000018687,0.0000018644,0.0000018625,0.0000018629, -0.0000018655,0.0000018698,0.0000018747,0.0000018792,0.0000018831, -0.0000018853,0.0000018853,0.0000018849,0.0000018855,0.0000018865, -0.0000018867,0.0000018869,0.0000018869,0.0000018861,0.0000018846, -0.0000018829,0.0000018813,0.0000018798,0.0000018786,0.0000018775, -0.0000018769,0.0000018773,0.0000018789,0.0000018813,0.0000018847, -0.0000018886,0.0000018924,0.0000018968,0.0000019020,0.0000019085, -0.0000019168,0.0000019260,0.0000019338,0.0000019384,0.0000019392, -0.0000019378,0.0000019354,0.0000019324,0.0000019290,0.0000019260, -0.0000019248,0.0000019260,0.0000019280,0.0000019297,0.0000019311, -0.0000019321,0.0000019328,0.0000019331,0.0000019332,0.0000019329, -0.0000019326,0.0000019324,0.0000019313,0.0000019293,0.0000019270, -0.0000019246,0.0000019213,0.0000019177,0.0000019146,0.0000019119, -0.0000019087,0.0000019049,0.0000019013,0.0000018975,0.0000018938, -0.0000018914,0.0000018906,0.0000018913,0.0000018932,0.0000018954, -0.0000018968,0.0000018970,0.0000018963,0.0000018955,0.0000018946, -0.0000018937,0.0000018924,0.0000018908,0.0000018893,0.0000018883, -0.0000018878,0.0000018877,0.0000018890,0.0000018929,0.0000018978, -0.0000019020,0.0000019055,0.0000019090,0.0000019130,0.0000019169, -0.0000019188,0.0000019201,0.0000019200,0.0000019183,0.0000019153, -0.0000019111,0.0000019053,0.0000018971,0.0000018879,0.0000018797, -0.0000018745,0.0000018731,0.0000018723,0.0000018735,0.0000018774, -0.0000018829,0.0000018890,0.0000018954,0.0000019019,0.0000019074, -0.0000019102,0.0000019105,0.0000019101,0.0000019101,0.0000019106, -0.0000019120,0.0000019136,0.0000019149,0.0000019133,0.0000019118, -0.0000019090,0.0000019047,0.0000019009,0.0000018984,0.0000018987, -0.0000018999,0.0000019017,0.0000019044,0.0000019055,0.0000019061, -0.0000019060,0.0000019034,0.0000018977,0.0000018901,0.0000018819, -0.0000018750,0.0000018679,0.0000018643,0.0000018629,0.0000018630, -0.0000018632,0.0000018641,0.0000018646,0.0000018646,0.0000018652, -0.0000018672,0.0000018702,0.0000018745,0.0000018766,0.0000018778, -0.0000018769,0.0000018743,0.0000018708,0.0000018678,0.0000018665, -0.0000018682,0.0000018698,0.0000018678,0.0000018624,0.0000018542, -0.0000018439,0.0000018335,0.0000018231,0.0000018152,0.0000018106, -0.0000018100,0.0000018098,0.0000018107,0.0000018134,0.0000018186, -0.0000018260,0.0000018344,0.0000018422,0.0000018461,0.0000018469, -0.0000018441,0.0000018400,0.0000018347,0.0000018296,0.0000018282, -0.0000018284,0.0000018282,0.0000018270,0.0000018260,0.0000018242, -0.0000018222,0.0000018210,0.0000018211,0.0000018229,0.0000018261, -0.0000018306,0.0000018343,0.0000018356,0.0000018342,0.0000018316, -0.0000018297,0.0000018290,0.0000018281,0.0000018283,0.0000018305, -0.0000018340,0.0000018374,0.0000018391,0.0000018409,0.0000018410, -0.0000018404,0.0000018415,0.0000018443,0.0000018476,0.0000018494, -0.0000018502,0.0000018510,0.0000018515,0.0000018505,0.0000018466, -0.0000018406,0.0000018345,0.0000018300,0.0000018259,0.0000018218, -0.0000018175,0.0000018131,0.0000018083,0.0000018017,0.0000017949, -0.0000017900,0.0000017885,0.0000017890,0.0000017890,0.0000017857, -0.0000017795,0.0000017726,0.0000017658,0.0000017586,0.0000017505, -0.0000017434,0.0000017372,0.0000017326,0.0000017281,0.0000017275, -0.0000017255,0.0000017266,0.0000017335,0.0000017441,0.0000017587, -0.0000017771,0.0000017978,0.0000018181,0.0000018368,0.0000018527, -0.0000018656,0.0000018759,0.0000018828,0.0000018865,0.0000018885, -0.0000018863,0.0000018853,0.0000018829,0.0000018808,0.0000018787, -0.0000018762,0.0000018728,0.0000018688,0.0000018652,0.0000018623, -0.0000018591,0.0000018555,0.0000018516,0.0000018479,0.0000018444, -0.0000018412,0.0000018387,0.0000018370,0.0000018353,0.0000018337, -0.0000018321,0.0000018296,0.0000018259,0.0000018226,0.0000018214, -0.0000018219,0.0000018226,0.0000018223,0.0000018206,0.0000018186, -0.0000018183,0.0000018202,0.0000018221,0.0000018235,0.0000018232, -0.0000018193,0.0000018128,0.0000018079,0.0000018055,0.0000018025, -0.0000017986,0.0000017938,0.0000017909,0.0000017900,0.0000017915, -0.0000017933,0.0000017956,0.0000017976,0.0000017976,0.0000017958, -0.0000017930,0.0000017898,0.0000017861,0.0000017833,0.0000017827, -0.0000017839,0.0000017869,0.0000017901,0.0000017921,0.0000017930, -0.0000017935,0.0000017950,0.0000017978,0.0000018014,0.0000018051, -0.0000018079,0.0000018089,0.0000018092,0.0000018078,0.0000018049, -0.0000018023,0.0000017998,0.0000017972,0.0000017959,0.0000017962, -0.0000017977,0.0000017992,0.0000018002,0.0000018014,0.0000018028, -0.0000018055,0.0000018087,0.0000018125,0.0000018150,0.0000018160, -0.0000018165,0.0000018177,0.0000018195,0.0000018212,0.0000018224, -0.0000018226,0.0000018229,0.0000018234,0.0000018252,0.0000018283, -0.0000018324,0.0000018365,0.0000018407,0.0000018421,0.0000018418, -0.0000018394,0.0000018364,0.0000018355,0.0000018350,0.0000018356, -0.0000018373,0.0000018396,0.0000018420,0.0000018436,0.0000018441, -0.0000018440,0.0000018441,0.0000018443,0.0000018463,0.0000018514, -0.0000018584,0.0000018649,0.0000018697,0.0000018740,0.0000018782, -0.0000018822,0.0000018847,0.0000018858,0.0000018842,0.0000018833, -0.0000018806,0.0000018776,0.0000018732,0.0000018689,0.0000018637, -0.0000018593,0.0000018555,0.0000018541,0.0000018547,0.0000018548, -0.0000018537,0.0000018512,0.0000018464,0.0000018395,0.0000018304, -0.0000018218,0.0000018157,0.0000018129,0.0000018101,0.0000018101, -0.0000018122,0.0000018137,0.0000018116,0.0000018080,0.0000018012, -0.0000017956,0.0000017917,0.0000017886,0.0000017867,0.0000017849, -0.0000017833,0.0000017819,0.0000017815,0.0000017829,0.0000017832, -0.0000017811,0.0000017785,0.0000017768,0.0000017752,0.0000017756, -0.0000017791,0.0000017864,0.0000017963,0.0000018017,0.0000017993, -0.0000017963,0.0000017986,0.0000018014,0.0000017983,0.0000017890, -0.0000017815,0.0000017828,0.0000017889,0.0000017925,0.0000017941, -0.0000017954,0.0000017977,0.0000018016,0.0000018043,0.0000018051, -0.0000018053,0.0000018048,0.0000018021,0.0000017956,0.0000017861, -0.0000017783,0.0000017743,0.0000017706,0.0000017667,0.0000017603, -0.0000017443,0.0000017366,0.0000017382,0.0000017511,0.0000017692, -0.0000017841,0.0000018242,0.0000018507,0.0000018504,0.0000018336, -0.0000018022,0.0000017774,0.0000017764,0.0000017837,0.0000017899, -0.0000017925,0.0000017837,0.0000017766,0.0000017712,0.0000017671, -0.0000017665,0.0000017687,0.0000017690,0.0000017702,0.0000017768, -0.0000017819,0.0000017826,0.0000017810,0.0000017810,0.0000017817, -0.0000017821,0.0000017806,0.0000017694,0.0000017569,0.0000017560, -0.0000017590,0.0000017701,0.0000017757,0.0000017579,0.0000017385, -0.0000017359,0.0000017431,0.0000017546,0.0000017597,0.0000017581, -0.0000017568,0.0000017583,0.0000017597,0.0000017586,0.0000017569, -0.0000017549,0.0000017556,0.0000017597,0.0000017610,0.0000017558, -0.0000017472,0.0000017442,0.0000017459,0.0000017502,0.0000017539, -0.0000017564,0.0000017583,0.0000017651,0.0000017824,0.0000018007, -0.0000018097,0.0000018220,0.0000018415,0.0000018489,0.0000018426, -0.0000018299,0.0000018216,0.0000018184,0.0000018169,0.0000018158, -0.0000018147,0.0000018120,0.0000018080,0.0000018048,0.0000018036, -0.0000018041,0.0000018059,0.0000018071,0.0000018075,0.0000018078, -0.0000018081,0.0000018085,0.0000018089,0.0000018094,0.0000018104, -0.0000018129,0.0000018148,0.0000018177,0.0000018218,0.0000018266, -0.0000018312,0.0000018344,0.0000018355,0.0000018342,0.0000018310, -0.0000018296,0.0000018341,0.0000018473,0.0000018616,0.0000018675, -0.0000018618,0.0000018516,0.0000018468,0.0000018483,0.0000018487, -0.0000018367,0.0000018172,0.0000018122,0.0000018247,0.0000018419, -0.0000018577,0.0000018650,0.0000018601,0.0000018523,0.0000018525, -0.0000018540,0.0000018484,0.0000018409,0.0000018383,0.0000018358, -0.0000018341,0.0000018421,0.0000018576,0.0000018687,0.0000018706, -0.0000018682,0.0000018671,0.0000018675,0.0000018672,0.0000018666, -0.0000018668,0.0000018668,0.0000018658,0.0000018651,0.0000018667, -0.0000018695,0.0000018713,0.0000018743,0.0000018828,0.0000018961, -0.0000019088,0.0000019185,0.0000019218,0.0000019243,0.0000019223, -0.0000019207,0.0000019175,0.0000019134,0.0000019087,0.0000019031, -0.0000018972,0.0000018915,0.0000018870,0.0000018830,0.0000018799, -0.0000018781,0.0000018774,0.0000018782,0.0000018786,0.0000018791, -0.0000018794,0.0000018803,0.0000018818,0.0000018835,0.0000018860, -0.0000018886,0.0000018910,0.0000018932,0.0000018967,0.0000019001, -0.0000019051,0.0000019118,0.0000019191,0.0000019278,0.0000019370, -0.0000019442,0.0000019500,0.0000019525,0.0000019532,0.0000019515, -0.0000019461,0.0000019390,0.0000019310,0.0000019219,0.0000019122, -0.0000019025,0.0000018962,0.0000018994,0.0000019077,0.0000019253, -0.0000019458,0.0000019601,0.0000019650,0.0000019665,0.0000019656, -0.0000019623,0.0000019599,0.0000019597,0.0000019593,0.0000019601, -0.0000019620,0.0000019645,0.0000019679,0.0000019718,0.0000019755, -0.0000019785,0.0000019809,0.0000019821,0.0000019818,0.0000019804, -0.0000019778,0.0000019753,0.0000019723,0.0000019694,0.0000019671, -0.0000019649,0.0000019630,0.0000019617,0.0000019617,0.0000019629, -0.0000019637,0.0000019653,0.0000019664,0.0000019668,0.0000019666, -0.0000019654,0.0000019638,0.0000019623,0.0000019622,0.0000019617, -0.0000019617,0.0000019618,0.0000019620,0.0000019622,0.0000019625, -0.0000019633,0.0000019645,0.0000019657,0.0000019671,0.0000019678, -0.0000019679,0.0000019681,0.0000019683,0.0000019683,0.0000019683, -0.0000019680,0.0000019673,0.0000019661,0.0000019642,0.0000019622, -0.0000019600,0.0000019590,0.0000019585,0.0000019578,0.0000019577, -0.0000019584,0.0000019593,0.0000019601,0.0000019610,0.0000019622, -0.0000019638,0.0000019653,0.0000019662,0.0000019663,0.0000019661, -0.0000019655,0.0000019660,0.0000019661,0.0000019655,0.0000019640, -0.0000019615,0.0000019580,0.0000019542,0.0000019506,0.0000019472, -0.0000019443,0.0000019420,0.0000019392,0.0000019368,0.0000019344, -0.0000019314,0.0000019264,0.0000019200,0.0000019136,0.0000019066, -0.0000019022,0.0000018973,0.0000018946,0.0000018941,0.0000018950, -0.0000018971,0.0000018998,0.0000019025,0.0000019052,0.0000019073, -0.0000019083,0.0000019088,0.0000019095,0.0000019107,0.0000019122, -0.0000019135,0.0000019152,0.0000019179,0.0000019214,0.0000019248, -0.0000019283,0.0000019321,0.0000019362,0.0000019398,0.0000019420, -0.0000019437,0.0000019451,0.0000019464,0.0000019473,0.0000019475, -0.0000019472,0.0000019468,0.0000019462,0.0000019453,0.0000019436, -0.0000019406,0.0000019363,0.0000019309,0.0000019246,0.0000019181, -0.0000019123,0.0000019076,0.0000019045,0.0000019031,0.0000019029, -0.0000019035,0.0000019039,0.0000019040,0.0000019041,0.0000019039, -0.0000019029,0.0000019013,0.0000018995,0.0000018974,0.0000018954, -0.0000018932,0.0000018905,0.0000018870,0.0000018828,0.0000018784, -0.0000018739,0.0000018691,0.0000018630,0.0000018560,0.0000018486, -0.0000018410,0.0000018338,0.0000018275,0.0000018216,0.0000018159, -0.0000018103,0.0000018045,0.0000017991,0.0000017947,0.0000017914, -0.0000017894,0.0000017897,0.0000017910,0.0000017906,0.0000017944, -0.0000017992,0.0000018042,0.0000018100,0.0000018159,0.0000018222, -0.0000018276,0.0000018314,0.0000018333,0.0000018333,0.0000018320, -0.0000018299,0.0000018276,0.0000018255,0.0000018239,0.0000018233, -0.0000018232,0.0000018235,0.0000018251,0.0000018269,0.0000018295, -0.0000018328,0.0000018365,0.0000018400,0.0000018429,0.0000018453, -0.0000018466,0.0000018471,0.0000018470,0.0000018468,0.0000018451, -0.0000018436,0.0000018415,0.0000018392,0.0000018367,0.0000018345, -0.0000018326,0.0000018307,0.0000018292,0.0000018280,0.0000018267, -0.0000018250,0.0000018234,0.0000018216,0.0000018190,0.0000018161, -0.0000018137,0.0000018116,0.0000018091,0.0000018060,0.0000018024, -0.0000017982,0.0000017935,0.0000017889,0.0000017857,0.0000017847, -0.0000017854,0.0000017878,0.0000017918,0.0000017976,0.0000018053, -0.0000018153,0.0000018271,0.0000018384,0.0000018472,0.0000018530, -0.0000018556,0.0000018553,0.0000018529,0.0000018490,0.0000018461, -0.0000018457,0.0000018464,0.0000018472,0.0000018480,0.0000018494, -0.0000018516,0.0000018538,0.0000018560,0.0000018589,0.0000018622, -0.0000018651,0.0000018668,0.0000018674,0.0000018677,0.0000018676, -0.0000018674,0.0000018677,0.0000018689,0.0000018707,0.0000018725, -0.0000018738,0.0000018746,0.0000018748,0.0000018739,0.0000018711, -0.0000018674,0.0000018641,0.0000018621,0.0000018611,0.0000018613, -0.0000018608,0.0000018595,0.0000018595,0.0000018613,0.0000018650, -0.0000018695,0.0000018757,0.0000018837,0.0000018933,0.0000019039, -0.0000019154,0.0000019277,0.0000019395,0.0000019495,0.0000019577, -0.0000019647,0.0000019718,0.0000019790,0.0000019856,0.0000019911, -0.0000019954,0.0000019984,0.0000019999,0.0000020003,0.0000020001, -0.0000019992,0.0000019983,0.0000019984,0.0000019991,0.0000019995, -0.0000019985,0.0000019973,0.0000019955,0.0000019925,0.0000019886, -0.0000019836,0.0000019783,0.0000019734,0.0000019687,0.0000019641, -0.0000019582,0.0000019503,0.0000019439,0.0000019405,0.0000019391, -0.0000019390,0.0000019386,0.0000019375,0.0000019360,0.0000019340, -0.0000019320,0.0000019299,0.0000019283,0.0000019279,0.0000019283, -0.0000019282,0.0000019250,0.0000019187,0.0000019121,0.0000019072, -0.0000019045,0.0000019030,0.0000019010,0.0000018970,0.0000018912, -0.0000018846,0.0000018794,0.0000018760,0.0000018734,0.0000018720, -0.0000018717,0.0000018717,0.0000018722,0.0000018733,0.0000018747, -0.0000018766,0.0000018791,0.0000018819,0.0000018858,0.0000018908, -0.0000018961,0.0000019015,0.0000019066,0.0000019105,0.0000019140, -0.0000019172,0.0000019195,0.0000019207,0.0000019209,0.0000019206, -0.0000019188,0.0000019171,0.0000019156,0.0000019155,0.0000019169, -0.0000019191,0.0000019221,0.0000019259,0.0000019298,0.0000019335, -0.0000019370,0.0000019389,0.0000019391,0.0000019378,0.0000019341, -0.0000019291,0.0000019242,0.0000019193,0.0000019141,0.0000019080, -0.0000019012,0.0000018945,0.0000018884,0.0000018831,0.0000018795, -0.0000018782,0.0000018787,0.0000018812,0.0000018856,0.0000018911, -0.0000018966,0.0000019004,0.0000019021,0.0000019015,0.0000018983, -0.0000018930,0.0000018888,0.0000018867,0.0000018861,0.0000018862, -0.0000018865,0.0000018861,0.0000018850,0.0000018836,0.0000018820, -0.0000018803,0.0000018789,0.0000018777,0.0000018771,0.0000018773, -0.0000018782,0.0000018796,0.0000018820,0.0000018853,0.0000018885, -0.0000018916,0.0000018952,0.0000018982,0.0000019023,0.0000019095, -0.0000019189,0.0000019283,0.0000019356,0.0000019390,0.0000019395, -0.0000019383,0.0000019357,0.0000019323,0.0000019292,0.0000019280, -0.0000019285,0.0000019293,0.0000019299,0.0000019308,0.0000019313, -0.0000019317,0.0000019322,0.0000019325,0.0000019327,0.0000019329, -0.0000019328,0.0000019319,0.0000019306,0.0000019287,0.0000019259, -0.0000019232,0.0000019209,0.0000019193,0.0000019171,0.0000019140, -0.0000019108,0.0000019075,0.0000019040,0.0000019012,0.0000019000, -0.0000019004,0.0000019019,0.0000019039,0.0000019055,0.0000019059, -0.0000019058,0.0000019051,0.0000019033,0.0000019014,0.0000018997, -0.0000018969,0.0000018934,0.0000018904,0.0000018886,0.0000018880, -0.0000018888,0.0000018911,0.0000018943,0.0000018972,0.0000018999, -0.0000019029,0.0000019063,0.0000019103,0.0000019137,0.0000019165, -0.0000019184,0.0000019191,0.0000019197,0.0000019188,0.0000019170, -0.0000019131,0.0000019061,0.0000018975,0.0000018896,0.0000018831, -0.0000018779,0.0000018744,0.0000018750,0.0000018769,0.0000018800, -0.0000018844,0.0000018897,0.0000018953,0.0000018994,0.0000019009, -0.0000019007,0.0000019004,0.0000019009,0.0000019023,0.0000019050, -0.0000019080,0.0000019094,0.0000019100,0.0000019090,0.0000019068, -0.0000019032,0.0000019004,0.0000019005,0.0000019019,0.0000019043, -0.0000019064,0.0000019068,0.0000019073,0.0000019080,0.0000019082, -0.0000019058,0.0000019011,0.0000018940,0.0000018853,0.0000018757, -0.0000018684,0.0000018654,0.0000018647,0.0000018645,0.0000018645, -0.0000018644,0.0000018626,0.0000018605,0.0000018601,0.0000018628, -0.0000018687,0.0000018739,0.0000018774,0.0000018782,0.0000018779, -0.0000018755,0.0000018729,0.0000018715,0.0000018739,0.0000018780, -0.0000018805,0.0000018803,0.0000018751,0.0000018657,0.0000018538, -0.0000018401,0.0000018279,0.0000018186,0.0000018129,0.0000018097, -0.0000018091,0.0000018093,0.0000018129,0.0000018188,0.0000018264, -0.0000018346,0.0000018413,0.0000018450,0.0000018461,0.0000018465, -0.0000018451,0.0000018424,0.0000018412,0.0000018401,0.0000018375, -0.0000018343,0.0000018319,0.0000018298,0.0000018277,0.0000018261, -0.0000018250,0.0000018247,0.0000018265,0.0000018296,0.0000018326, -0.0000018340,0.0000018328,0.0000018302,0.0000018287,0.0000018269, -0.0000018250,0.0000018253,0.0000018277,0.0000018322,0.0000018369, -0.0000018406,0.0000018430,0.0000018436,0.0000018433,0.0000018438, -0.0000018458,0.0000018476,0.0000018489,0.0000018499,0.0000018520, -0.0000018540,0.0000018545,0.0000018512,0.0000018447,0.0000018374, -0.0000018315,0.0000018273,0.0000018245,0.0000018223,0.0000018208, -0.0000018181,0.0000018130,0.0000018064,0.0000017998,0.0000017952, -0.0000017935,0.0000017923,0.0000017892,0.0000017842,0.0000017784, -0.0000017727,0.0000017667,0.0000017605,0.0000017541,0.0000017470, -0.0000017402,0.0000017335,0.0000017284,0.0000017234,0.0000017234, -0.0000017228,0.0000017251,0.0000017315,0.0000017421,0.0000017568, -0.0000017739,0.0000017930,0.0000018124,0.0000018310,0.0000018469, -0.0000018594,0.0000018686,0.0000018747,0.0000018782,0.0000018803, -0.0000018824,0.0000018827,0.0000018843,0.0000018849,0.0000018850, -0.0000018844,0.0000018822,0.0000018797,0.0000018773,0.0000018742, -0.0000018701,0.0000018653,0.0000018601,0.0000018550,0.0000018509, -0.0000018479,0.0000018457,0.0000018441,0.0000018427,0.0000018407, -0.0000018383,0.0000018371,0.0000018381,0.0000018409,0.0000018433, -0.0000018435,0.0000018417,0.0000018404,0.0000018417,0.0000018443, -0.0000018459,0.0000018460,0.0000018442,0.0000018392,0.0000018335, -0.0000018302,0.0000018277,0.0000018243,0.0000018184,0.0000018105, -0.0000018013,0.0000017956,0.0000017943,0.0000017957,0.0000017983, -0.0000018001,0.0000018003,0.0000017998,0.0000017984,0.0000017960, -0.0000017924,0.0000017881,0.0000017850,0.0000017841,0.0000017849, -0.0000017861,0.0000017873,0.0000017883,0.0000017894,0.0000017916, -0.0000017950,0.0000017991,0.0000018027,0.0000018053,0.0000018067, -0.0000018063,0.0000018045,0.0000018024,0.0000018015,0.0000018005, -0.0000018002,0.0000018007,0.0000018016,0.0000018022,0.0000018032, -0.0000018046,0.0000018057,0.0000018070,0.0000018090,0.0000018109, -0.0000018124,0.0000018130,0.0000018144,0.0000018170,0.0000018203, -0.0000018230,0.0000018245,0.0000018245,0.0000018236,0.0000018226, -0.0000018227,0.0000018236,0.0000018258,0.0000018296,0.0000018344, -0.0000018384,0.0000018405,0.0000018408,0.0000018403,0.0000018399, -0.0000018384,0.0000018369,0.0000018351,0.0000018338,0.0000018350, -0.0000018377,0.0000018402,0.0000018418,0.0000018430,0.0000018443, -0.0000018459,0.0000018489,0.0000018532,0.0000018578,0.0000018619, -0.0000018659,0.0000018704,0.0000018745,0.0000018778,0.0000018797, -0.0000018812,0.0000018817,0.0000018832,0.0000018829,0.0000018824, -0.0000018794,0.0000018741,0.0000018668,0.0000018592,0.0000018554, -0.0000018539,0.0000018538,0.0000018531,0.0000018518,0.0000018501, -0.0000018486,0.0000018455,0.0000018401,0.0000018322,0.0000018232, -0.0000018151,0.0000018122,0.0000018117,0.0000018102,0.0000018080, -0.0000018029,0.0000017975,0.0000017947,0.0000017919,0.0000017895, -0.0000017871,0.0000017848,0.0000017826,0.0000017813,0.0000017825, -0.0000017844,0.0000017826,0.0000017790,0.0000017764,0.0000017737, -0.0000017730,0.0000017761,0.0000017831,0.0000017936,0.0000018019, -0.0000018024,0.0000017994,0.0000018000,0.0000018024,0.0000018013, -0.0000017943,0.0000017874,0.0000017878,0.0000017934,0.0000017963, -0.0000017964,0.0000017971,0.0000017998,0.0000018042,0.0000018075, -0.0000018082,0.0000018078,0.0000018066,0.0000018046,0.0000018016, -0.0000017957,0.0000017871,0.0000017810,0.0000017769,0.0000017705, -0.0000017661,0.0000017603,0.0000017440,0.0000017358,0.0000017382, -0.0000017573,0.0000017699,0.0000017955,0.0000018371,0.0000018509, -0.0000018493,0.0000018292,0.0000017976,0.0000017757,0.0000017757, -0.0000017833,0.0000017885,0.0000017914,0.0000017846,0.0000017785, -0.0000017748,0.0000017727,0.0000017725,0.0000017716,0.0000017718, -0.0000017762,0.0000017807,0.0000017819,0.0000017788,0.0000017787, -0.0000017822,0.0000017850,0.0000017859,0.0000017837,0.0000017702, -0.0000017575,0.0000017575,0.0000017616,0.0000017729,0.0000017743, -0.0000017534,0.0000017362,0.0000017363,0.0000017434,0.0000017552, -0.0000017596,0.0000017573,0.0000017571,0.0000017597,0.0000017602, -0.0000017579,0.0000017561,0.0000017547,0.0000017569,0.0000017643, -0.0000017676,0.0000017622,0.0000017527,0.0000017477,0.0000017481, -0.0000017500,0.0000017538,0.0000017597,0.0000017720,0.0000017909, -0.0000018048,0.0000018117,0.0000018266,0.0000018451,0.0000018487, -0.0000018397,0.0000018280,0.0000018227,0.0000018209,0.0000018188, -0.0000018164,0.0000018124,0.0000018076,0.0000018046,0.0000018040, -0.0000018045,0.0000018056,0.0000018066,0.0000018069,0.0000018072, -0.0000018080,0.0000018091,0.0000018104,0.0000018115,0.0000018115, -0.0000018118,0.0000018129,0.0000018145,0.0000018176,0.0000018223, -0.0000018278,0.0000018333,0.0000018369,0.0000018393,0.0000018402, -0.0000018382,0.0000018336,0.0000018311,0.0000018369,0.0000018517, -0.0000018664,0.0000018694,0.0000018606,0.0000018501,0.0000018473, -0.0000018486,0.0000018417,0.0000018216,0.0000018108,0.0000018190, -0.0000018360,0.0000018525,0.0000018625,0.0000018596,0.0000018519, -0.0000018514,0.0000018525,0.0000018468,0.0000018395,0.0000018369, -0.0000018343,0.0000018325,0.0000018396,0.0000018535,0.0000018631, -0.0000018654,0.0000018652,0.0000018657,0.0000018668,0.0000018664, -0.0000018652,0.0000018649,0.0000018656,0.0000018655,0.0000018642, -0.0000018631,0.0000018649,0.0000018684,0.0000018709,0.0000018738, -0.0000018805,0.0000018909,0.0000019018,0.0000019115,0.0000019184, -0.0000019247,0.0000019305,0.0000019315,0.0000019360,0.0000019355, -0.0000019341,0.0000019315,0.0000019270,0.0000019209,0.0000019144, -0.0000019078,0.0000019024,0.0000018980,0.0000018945,0.0000018926, -0.0000018917,0.0000018917,0.0000018927,0.0000018948,0.0000018981, -0.0000019021,0.0000019067,0.0000019124,0.0000019189,0.0000019256, -0.0000019321,0.0000019377,0.0000019434,0.0000019486,0.0000019507, -0.0000019501,0.0000019484,0.0000019436,0.0000019374,0.0000019299, -0.0000019207,0.0000019114,0.0000019026,0.0000018957,0.0000018968, -0.0000019031,0.0000019235,0.0000019484,0.0000019654,0.0000019730, -0.0000019746,0.0000019705,0.0000019643,0.0000019596,0.0000019574, -0.0000019570,0.0000019589,0.0000019622,0.0000019661,0.0000019712, -0.0000019775,0.0000019849,0.0000019930,0.0000020003,0.0000020041, -0.0000020054,0.0000020056,0.0000020049,0.0000020034,0.0000020016, -0.0000019996,0.0000019982,0.0000019973,0.0000019961,0.0000019951, -0.0000019946,0.0000019905,0.0000019851,0.0000019791,0.0000019732, -0.0000019683,0.0000019642,0.0000019611,0.0000019592,0.0000019585, -0.0000019586,0.0000019582,0.0000019595,0.0000019610,0.0000019627, -0.0000019643,0.0000019657,0.0000019667,0.0000019674,0.0000019677, -0.0000019679,0.0000019678,0.0000019674,0.0000019669,0.0000019663, -0.0000019656,0.0000019647,0.0000019635,0.0000019620,0.0000019606, -0.0000019601,0.0000019593,0.0000019585,0.0000019583,0.0000019590, -0.0000019603,0.0000019617,0.0000019629,0.0000019640,0.0000019651, -0.0000019665,0.0000019681,0.0000019695,0.0000019709,0.0000019716, -0.0000019712,0.0000019716,0.0000019711,0.0000019695,0.0000019667, -0.0000019626,0.0000019578,0.0000019534,0.0000019494,0.0000019461, -0.0000019434,0.0000019410,0.0000019390,0.0000019370,0.0000019342, -0.0000019302,0.0000019245,0.0000019175,0.0000019109,0.0000019056, -0.0000019033,0.0000019005,0.0000018997,0.0000019002,0.0000019011, -0.0000019028,0.0000019045,0.0000019065,0.0000019076,0.0000019081, -0.0000019083,0.0000019083,0.0000019085,0.0000019087,0.0000019091, -0.0000019098,0.0000019106,0.0000019120,0.0000019136,0.0000019151, -0.0000019163,0.0000019175,0.0000019191,0.0000019217,0.0000019248, -0.0000019283,0.0000019321,0.0000019362,0.0000019404,0.0000019440, -0.0000019470,0.0000019498,0.0000019521,0.0000019534,0.0000019536, -0.0000019532,0.0000019524,0.0000019516,0.0000019508,0.0000019503, -0.0000019492,0.0000019470,0.0000019434,0.0000019385,0.0000019328, -0.0000019267,0.0000019207,0.0000019156,0.0000019120,0.0000019097, -0.0000019081,0.0000019069,0.0000019062,0.0000019057,0.0000019054, -0.0000019046,0.0000019037,0.0000019028,0.0000019019,0.0000019011, -0.0000019002,0.0000018995,0.0000018986,0.0000018974,0.0000018964, -0.0000018954,0.0000018941,0.0000018919,0.0000018888,0.0000018845, -0.0000018789,0.0000018722,0.0000018649,0.0000018564,0.0000018468, -0.0000018370,0.0000018276,0.0000018190,0.0000018116,0.0000018053, -0.0000017998,0.0000017952,0.0000017922,0.0000017904,0.0000017900, -0.0000017906,0.0000017905,0.0000017908,0.0000017937,0.0000017982, -0.0000018037,0.0000018090,0.0000018140,0.0000018174,0.0000018194, -0.0000018199,0.0000018190,0.0000018176,0.0000018163,0.0000018161, -0.0000018166,0.0000018182,0.0000018207,0.0000018228,0.0000018247, -0.0000018268,0.0000018294,0.0000018320,0.0000018344,0.0000018369, -0.0000018391,0.0000018406,0.0000018415,0.0000018420,0.0000018420, -0.0000018414,0.0000018401,0.0000018379,0.0000018355,0.0000018333, -0.0000018311,0.0000018290,0.0000018273,0.0000018260,0.0000018244, -0.0000018221,0.0000018198,0.0000018173,0.0000018140,0.0000018101, -0.0000018061,0.0000018018,0.0000017971,0.0000017920,0.0000017867, -0.0000017822,0.0000017795,0.0000017790,0.0000017808,0.0000017840, -0.0000017890,0.0000017961,0.0000018047,0.0000018150,0.0000018273, -0.0000018407,0.0000018519,0.0000018579,0.0000018592,0.0000018585, -0.0000018564,0.0000018529,0.0000018486,0.0000018455,0.0000018445, -0.0000018451,0.0000018461,0.0000018469,0.0000018480,0.0000018495, -0.0000018511,0.0000018529,0.0000018552,0.0000018581,0.0000018607, -0.0000018621,0.0000018628,0.0000018630,0.0000018631,0.0000018632, -0.0000018642,0.0000018662,0.0000018688,0.0000018711,0.0000018728, -0.0000018736,0.0000018737,0.0000018726,0.0000018700,0.0000018665, -0.0000018642,0.0000018631,0.0000018635,0.0000018638,0.0000018630, -0.0000018629,0.0000018659,0.0000018704,0.0000018758,0.0000018822, -0.0000018894,0.0000018977,0.0000019079,0.0000019192,0.0000019306, -0.0000019413,0.0000019509,0.0000019591,0.0000019659,0.0000019730, -0.0000019809,0.0000019888,0.0000019954,0.0000020003,0.0000020038, -0.0000020067,0.0000020094,0.0000020111,0.0000020115,0.0000020110, -0.0000020097,0.0000020083,0.0000020075,0.0000020075,0.0000020073, -0.0000020069,0.0000020065,0.0000020051,0.0000020018,0.0000019967, -0.0000019906,0.0000019842,0.0000019786,0.0000019741,0.0000019704, -0.0000019658,0.0000019600,0.0000019554,0.0000019527,0.0000019516, -0.0000019508,0.0000019490,0.0000019461,0.0000019420,0.0000019371, -0.0000019323,0.0000019287,0.0000019276,0.0000019290,0.0000019314, -0.0000019314,0.0000019264,0.0000019177,0.0000019101,0.0000019056, -0.0000019046,0.0000019053,0.0000019052,0.0000019034,0.0000018996, -0.0000018952,0.0000018917,0.0000018882,0.0000018856,0.0000018839, -0.0000018833,0.0000018844,0.0000018871,0.0000018908,0.0000018955, -0.0000019009,0.0000019062,0.0000019116,0.0000019167,0.0000019208, -0.0000019239,0.0000019265,0.0000019274,0.0000019271,0.0000019267, -0.0000019261,0.0000019252,0.0000019239,0.0000019222,0.0000019197, -0.0000019169,0.0000019137,0.0000019120,0.0000019110,0.0000019119, -0.0000019144,0.0000019183,0.0000019234,0.0000019289,0.0000019338, -0.0000019371,0.0000019387,0.0000019390,0.0000019377,0.0000019343, -0.0000019299,0.0000019253,0.0000019204,0.0000019144,0.0000019077, -0.0000019012,0.0000018959,0.0000018923,0.0000018914,0.0000018931, -0.0000018969,0.0000019019,0.0000019075,0.0000019124,0.0000019153, -0.0000019149,0.0000019110,0.0000019058,0.0000018999,0.0000018938, -0.0000018896,0.0000018890,0.0000018904,0.0000018929,0.0000018948, -0.0000018957,0.0000018954,0.0000018936,0.0000018911,0.0000018885, -0.0000018859,0.0000018834,0.0000018814,0.0000018804,0.0000018804, -0.0000018808,0.0000018819,0.0000018837,0.0000018858,0.0000018885, -0.0000018916,0.0000018950,0.0000018980,0.0000019017,0.0000019065, -0.0000019145,0.0000019246,0.0000019335,0.0000019388,0.0000019411, -0.0000019412,0.0000019393,0.0000019361,0.0000019330,0.0000019311, -0.0000019305,0.0000019305,0.0000019304,0.0000019302,0.0000019301, -0.0000019305,0.0000019312,0.0000019322,0.0000019332,0.0000019337, -0.0000019337,0.0000019333,0.0000019314,0.0000019287,0.0000019262, -0.0000019249,0.0000019246,0.0000019241,0.0000019222,0.0000019196, -0.0000019169,0.0000019138,0.0000019113,0.0000019103,0.0000019106, -0.0000019118,0.0000019129,0.0000019138,0.0000019145,0.0000019151, -0.0000019149,0.0000019133,0.0000019115,0.0000019099,0.0000019069, -0.0000019023,0.0000018979,0.0000018938,0.0000018906,0.0000018899, -0.0000018920,0.0000018943,0.0000018955,0.0000018970,0.0000018993, -0.0000019028,0.0000019064,0.0000019096,0.0000019124,0.0000019147, -0.0000019163,0.0000019173,0.0000019173,0.0000019168,0.0000019150, -0.0000019134,0.0000019101,0.0000019048,0.0000018989,0.0000018927, -0.0000018868,0.0000018828,0.0000018806,0.0000018803,0.0000018824, -0.0000018845,0.0000018877,0.0000018913,0.0000018933,0.0000018935, -0.0000018931,0.0000018935,0.0000018949,0.0000018974,0.0000019007, -0.0000019033,0.0000019053,0.0000019064,0.0000019058,0.0000019037, -0.0000019024,0.0000019026,0.0000019045,0.0000019075,0.0000019090, -0.0000019084,0.0000019075,0.0000019072,0.0000019069,0.0000019064, -0.0000019046,0.0000019013,0.0000018956,0.0000018881,0.0000018805, -0.0000018752,0.0000018721,0.0000018699,0.0000018686,0.0000018667, -0.0000018631,0.0000018596,0.0000018572,0.0000018569,0.0000018605, -0.0000018660,0.0000018722,0.0000018764,0.0000018778,0.0000018764, -0.0000018752,0.0000018744,0.0000018765,0.0000018803,0.0000018849, -0.0000018894,0.0000018891,0.0000018840,0.0000018742,0.0000018610, -0.0000018478,0.0000018358,0.0000018264,0.0000018197,0.0000018155, -0.0000018143,0.0000018152,0.0000018191,0.0000018224,0.0000018284, -0.0000018335,0.0000018371,0.0000018406,0.0000018441,0.0000018465, -0.0000018466,0.0000018482,0.0000018479,0.0000018454,0.0000018412, -0.0000018376,0.0000018347,0.0000018321,0.0000018301,0.0000018282, -0.0000018272,0.0000018280,0.0000018306,0.0000018337,0.0000018351, -0.0000018344,0.0000018323,0.0000018305,0.0000018285,0.0000018264, -0.0000018262,0.0000018288,0.0000018332,0.0000018384,0.0000018425, -0.0000018461,0.0000018482,0.0000018491,0.0000018490,0.0000018489, -0.0000018487,0.0000018490,0.0000018493,0.0000018514,0.0000018539, -0.0000018546,0.0000018537,0.0000018489,0.0000018415,0.0000018337, -0.0000018280,0.0000018249,0.0000018243,0.0000018241,0.0000018235, -0.0000018211,0.0000018160,0.0000018088,0.0000018024,0.0000017983, -0.0000017959,0.0000017927,0.0000017882,0.0000017829,0.0000017779, -0.0000017736,0.0000017698,0.0000017644,0.0000017575,0.0000017492, -0.0000017406,0.0000017333,0.0000017280,0.0000017250,0.0000017222, -0.0000017223,0.0000017203,0.0000017231,0.0000017283,0.0000017384, -0.0000017523,0.0000017688,0.0000017863,0.0000018028,0.0000018178, -0.0000018307,0.0000018416,0.0000018506,0.0000018584,0.0000018659, -0.0000018724,0.0000018775,0.0000018819,0.0000018854,0.0000018850, -0.0000018855,0.0000018854,0.0000018871,0.0000018873,0.0000018857, -0.0000018825,0.0000018785,0.0000018742,0.0000018702,0.0000018671, -0.0000018650,0.0000018638,0.0000018625,0.0000018606,0.0000018588, -0.0000018587,0.0000018607,0.0000018635,0.0000018648,0.0000018638, -0.0000018617,0.0000018611,0.0000018625,0.0000018645,0.0000018648, -0.0000018636,0.0000018602,0.0000018556,0.0000018525,0.0000018520, -0.0000018516,0.0000018500,0.0000018465,0.0000018392,0.0000018284, -0.0000018173,0.0000018090,0.0000018044,0.0000018028,0.0000018024, -0.0000018021,0.0000018018,0.0000018018,0.0000018016,0.0000018000, -0.0000017966,0.0000017923,0.0000017885,0.0000017865,0.0000017855, -0.0000017848,0.0000017848,0.0000017857,0.0000017876,0.0000017909, -0.0000017945,0.0000017972,0.0000017989,0.0000017992,0.0000017990, -0.0000017992,0.0000017998,0.0000018007,0.0000018016,0.0000018035, -0.0000018047,0.0000018048,0.0000018051,0.0000018055,0.0000018064, -0.0000018076,0.0000018094,0.0000018112,0.0000018123,0.0000018129, -0.0000018146,0.0000018177,0.0000018221,0.0000018261,0.0000018277, -0.0000018274,0.0000018258,0.0000018242,0.0000018235,0.0000018239, -0.0000018252,0.0000018280,0.0000018303,0.0000018328,0.0000018344, -0.0000018358,0.0000018370,0.0000018378,0.0000018382,0.0000018376, -0.0000018360,0.0000018338,0.0000018329,0.0000018327,0.0000018344, -0.0000018367,0.0000018394,0.0000018427,0.0000018460,0.0000018488, -0.0000018510,0.0000018533,0.0000018560,0.0000018588,0.0000018627, -0.0000018665,0.0000018696,0.0000018717,0.0000018730,0.0000018748, -0.0000018774,0.0000018804,0.0000018824,0.0000018833,0.0000018819, -0.0000018773,0.0000018702,0.0000018620,0.0000018559,0.0000018535, -0.0000018524,0.0000018511,0.0000018499,0.0000018503,0.0000018516, -0.0000018503,0.0000018450,0.0000018369,0.0000018291,0.0000018228, -0.0000018159,0.0000018093,0.0000018023,0.0000017951,0.0000017919, -0.0000017900,0.0000017876,0.0000017847,0.0000017819,0.0000017795, -0.0000017782,0.0000017795,0.0000017834,0.0000017835,0.0000017794, -0.0000017759,0.0000017728,0.0000017715,0.0000017744,0.0000017826, -0.0000017932,0.0000018022,0.0000018046,0.0000018024,0.0000018019, -0.0000018032,0.0000018031,0.0000017984,0.0000017928,0.0000017925, -0.0000017973,0.0000018002,0.0000017998,0.0000017992,0.0000018012, -0.0000018060,0.0000018098,0.0000018103,0.0000018092,0.0000018070, -0.0000018046,0.0000018023,0.0000018007,0.0000017966,0.0000017899, -0.0000017844,0.0000017781,0.0000017694,0.0000017656,0.0000017594, -0.0000017431,0.0000017350,0.0000017435,0.0000017618,0.0000017738, -0.0000018117,0.0000018459,0.0000018515,0.0000018466,0.0000018243, -0.0000017936,0.0000017749,0.0000017751,0.0000017824,0.0000017868, -0.0000017898,0.0000017853,0.0000017800,0.0000017778,0.0000017763, -0.0000017744,0.0000017743,0.0000017769,0.0000017805,0.0000017817, -0.0000017773,0.0000017745,0.0000017774,0.0000017835,0.0000017882, -0.0000017895,0.0000017859,0.0000017696,0.0000017588,0.0000017592, -0.0000017645,0.0000017754,0.0000017711,0.0000017481,0.0000017358, -0.0000017370,0.0000017442,0.0000017565,0.0000017595,0.0000017569, -0.0000017578,0.0000017605,0.0000017596,0.0000017569,0.0000017551, -0.0000017543,0.0000017595,0.0000017701,0.0000017747,0.0000017701, -0.0000017619,0.0000017562,0.0000017550,0.0000017575,0.0000017659, -0.0000017812,0.0000017984,0.0000018074,0.0000018134,0.0000018304, -0.0000018473,0.0000018478,0.0000018372,0.0000018278,0.0000018247, -0.0000018227,0.0000018192,0.0000018135,0.0000018073,0.0000018037, -0.0000018028,0.0000018027,0.0000018025,0.0000018021,0.0000018012, -0.0000018003,0.0000018002,0.0000018017,0.0000018049,0.0000018086, -0.0000018112,0.0000018121,0.0000018125,0.0000018126,0.0000018131, -0.0000018156,0.0000018204,0.0000018271,0.0000018335,0.0000018378, -0.0000018406,0.0000018429,0.0000018438,0.0000018415,0.0000018365, -0.0000018338,0.0000018405,0.0000018565,0.0000018689,0.0000018684, -0.0000018575,0.0000018482,0.0000018475,0.0000018449,0.0000018278, -0.0000018108,0.0000018138,0.0000018296,0.0000018466,0.0000018592, -0.0000018590,0.0000018517,0.0000018500,0.0000018510,0.0000018456, -0.0000018384,0.0000018356,0.0000018329,0.0000018310,0.0000018362, -0.0000018493,0.0000018583,0.0000018606,0.0000018618,0.0000018640, -0.0000018656,0.0000018650,0.0000018631,0.0000018620,0.0000018623, -0.0000018631,0.0000018631,0.0000018621,0.0000018617,0.0000018638, -0.0000018679,0.0000018713,0.0000018743,0.0000018791,0.0000018863, -0.0000018944,0.0000019020,0.0000019086,0.0000019145,0.0000019202, -0.0000019253,0.0000019304,0.0000019354,0.0000019397,0.0000019392, -0.0000019427,0.0000019415,0.0000019393,0.0000019367,0.0000019338, -0.0000019309,0.0000019282,0.0000019271,0.0000019272,0.0000019282, -0.0000019304,0.0000019336,0.0000019378,0.0000019418,0.0000019442, -0.0000019464,0.0000019484,0.0000019484,0.0000019460,0.0000019447, -0.0000019406,0.0000019342,0.0000019266,0.0000019182,0.0000019099, -0.0000019020,0.0000018952,0.0000018903,0.0000018932,0.0000019024, -0.0000019278,0.0000019542,0.0000019716,0.0000019814,0.0000019815, -0.0000019740,0.0000019655,0.0000019607,0.0000019584,0.0000019594, -0.0000019624,0.0000019684,0.0000019758,0.0000019824,0.0000019874, -0.0000019910,0.0000019937,0.0000019961,0.0000019996,0.0000020020, -0.0000020032,0.0000020033,0.0000020026,0.0000020009,0.0000019986, -0.0000019958,0.0000019931,0.0000019909,0.0000019901,0.0000019906, -0.0000019926,0.0000019948,0.0000019967,0.0000019978,0.0000019977, -0.0000019956,0.0000019923,0.0000019887,0.0000019823,0.0000019756, -0.0000019697,0.0000019650,0.0000019616,0.0000019590,0.0000019574, -0.0000019568,0.0000019571,0.0000019579,0.0000019585,0.0000019587, -0.0000019588,0.0000019590,0.0000019589,0.0000019588,0.0000019586, -0.0000019586,0.0000019587,0.0000019590,0.0000019597,0.0000019605, -0.0000019616,0.0000019630,0.0000019644,0.0000019656,0.0000019666, -0.0000019677,0.0000019691,0.0000019707,0.0000019725,0.0000019741, -0.0000019754,0.0000019762,0.0000019762,0.0000019753,0.0000019745, -0.0000019727,0.0000019692,0.0000019642,0.0000019579,0.0000019513, -0.0000019455,0.0000019410,0.0000019380,0.0000019359,0.0000019335, -0.0000019303,0.0000019257,0.0000019196,0.0000019123,0.0000019048, -0.0000018990,0.0000018977,0.0000018972,0.0000018979,0.0000019006, -0.0000019039,0.0000019072,0.0000019090,0.0000019101,0.0000019105, -0.0000019104,0.0000019102,0.0000019103,0.0000019103,0.0000019102, -0.0000019100,0.0000019097,0.0000019099,0.0000019106,0.0000019117, -0.0000019128,0.0000019143,0.0000019161,0.0000019181,0.0000019197, -0.0000019213,0.0000019227,0.0000019242,0.0000019260,0.0000019284, -0.0000019311,0.0000019341,0.0000019376,0.0000019417,0.0000019455, -0.0000019487,0.0000019511,0.0000019530,0.0000019539,0.0000019544, -0.0000019541,0.0000019537,0.0000019533,0.0000019528,0.0000019522, -0.0000019517,0.0000019510,0.0000019492,0.0000019459,0.0000019415, -0.0000019367,0.0000019316,0.0000019264,0.0000019214,0.0000019171, -0.0000019136,0.0000019108,0.0000019085,0.0000019069,0.0000019056, -0.0000019042,0.0000019029,0.0000019019,0.0000019012,0.0000019006, -0.0000019002,0.0000018999,0.0000018993,0.0000018987,0.0000018986, -0.0000018987,0.0000018989,0.0000018991,0.0000018992,0.0000018990, -0.0000018983,0.0000018962,0.0000018939,0.0000018913,0.0000018876, -0.0000018820,0.0000018749,0.0000018663,0.0000018562,0.0000018456, -0.0000018352,0.0000018256,0.0000018170,0.0000018097,0.0000018039, -0.0000017989,0.0000017951,0.0000017925,0.0000017911,0.0000017911, -0.0000017924,0.0000017938,0.0000017950,0.0000017957,0.0000017986, -0.0000018009,0.0000018021,0.0000018022,0.0000018018,0.0000018019, -0.0000018028,0.0000018044,0.0000018069,0.0000018104,0.0000018142, -0.0000018173,0.0000018202,0.0000018232,0.0000018257,0.0000018278, -0.0000018298,0.0000018316,0.0000018329,0.0000018338,0.0000018345, -0.0000018348,0.0000018348,0.0000018342,0.0000018325,0.0000018304, -0.0000018286,0.0000018268,0.0000018250,0.0000018235,0.0000018221, -0.0000018201,0.0000018170,0.0000018135,0.0000018096,0.0000018048, -0.0000017996,0.0000017939,0.0000017886,0.0000017844,0.0000017812, -0.0000017789,0.0000017781,0.0000017786,0.0000017817,0.0000017878, -0.0000017954,0.0000018048,0.0000018158,0.0000018281,0.0000018404, -0.0000018506,0.0000018568,0.0000018592,0.0000018585,0.0000018566, -0.0000018546,0.0000018525,0.0000018497,0.0000018469,0.0000018453, -0.0000018450,0.0000018452,0.0000018456,0.0000018465,0.0000018481, -0.0000018511,0.0000018558,0.0000018607,0.0000018649,0.0000018672, -0.0000018673,0.0000018650,0.0000018620,0.0000018602,0.0000018598, -0.0000018608,0.0000018636,0.0000018670,0.0000018702,0.0000018724, -0.0000018734,0.0000018734,0.0000018723,0.0000018701,0.0000018677, -0.0000018668,0.0000018673,0.0000018681,0.0000018678,0.0000018676, -0.0000018697,0.0000018749,0.0000018808,0.0000018869,0.0000018952, -0.0000019052,0.0000019154,0.0000019259,0.0000019367,0.0000019463, -0.0000019545,0.0000019622,0.0000019696,0.0000019767,0.0000019838, -0.0000019915,0.0000019988,0.0000020052,0.0000020100,0.0000020141, -0.0000020173,0.0000020196,0.0000020219,0.0000020232,0.0000020225, -0.0000020201,0.0000020174,0.0000020143,0.0000020117,0.0000020108, -0.0000020102,0.0000020097,0.0000020093,0.0000020083,0.0000020054, -0.0000020007,0.0000019948,0.0000019882,0.0000019810,0.0000019745, -0.0000019697,0.0000019659,0.0000019622,0.0000019592,0.0000019574, -0.0000019562,0.0000019546,0.0000019515,0.0000019468,0.0000019404, -0.0000019335,0.0000019280,0.0000019260,0.0000019273,0.0000019302, -0.0000019308,0.0000019263,0.0000019181,0.0000019115,0.0000019076, -0.0000019066,0.0000019077,0.0000019090,0.0000019094,0.0000019085, -0.0000019066,0.0000019047,0.0000019025,0.0000019012,0.0000019009, -0.0000019019,0.0000019046,0.0000019090,0.0000019140,0.0000019187, -0.0000019232,0.0000019269,0.0000019297,0.0000019317,0.0000019327, -0.0000019333,0.0000019343,0.0000019353,0.0000019361,0.0000019368, -0.0000019373,0.0000019374,0.0000019369,0.0000019352,0.0000019317, -0.0000019271,0.0000019218,0.0000019168,0.0000019126,0.0000019103, -0.0000019104,0.0000019117,0.0000019149,0.0000019208,0.0000019278, -0.0000019329,0.0000019364,0.0000019385,0.0000019387,0.0000019370, -0.0000019344,0.0000019314,0.0000019275,0.0000019224,0.0000019172, -0.0000019125,0.0000019092,0.0000019083,0.0000019093,0.0000019125, -0.0000019168,0.0000019209,0.0000019240,0.0000019242,0.0000019218, -0.0000019170,0.0000019110,0.0000019064,0.0000019042,0.0000019037, -0.0000019036,0.0000019042,0.0000019059,0.0000019078,0.0000019084, -0.0000019091,0.0000019090,0.0000019085,0.0000019067,0.0000019039, -0.0000019012,0.0000018984,0.0000018956,0.0000018935,0.0000018924, -0.0000018916,0.0000018912,0.0000018913,0.0000018916,0.0000018929, -0.0000018950,0.0000018972,0.0000019001,0.0000019031,0.0000019061, -0.0000019110,0.0000019189,0.0000019277,0.0000019353,0.0000019403, -0.0000019420,0.0000019419,0.0000019406,0.0000019379,0.0000019351, -0.0000019330,0.0000019317,0.0000019304,0.0000019292,0.0000019287, -0.0000019291,0.0000019304,0.0000019324,0.0000019341,0.0000019352, -0.0000019361,0.0000019360,0.0000019344,0.0000019324,0.0000019311, -0.0000019298,0.0000019288,0.0000019282,0.0000019275,0.0000019260, -0.0000019240,0.0000019216,0.0000019195,0.0000019186,0.0000019185, -0.0000019182,0.0000019178,0.0000019176,0.0000019179,0.0000019184, -0.0000019190,0.0000019195,0.0000019191,0.0000019179,0.0000019166, -0.0000019151,0.0000019122,0.0000019077,0.0000019027,0.0000018994, -0.0000018986,0.0000018985,0.0000018976,0.0000018974,0.0000018988, -0.0000019012,0.0000019044,0.0000019077,0.0000019110,0.0000019136, -0.0000019151,0.0000019159,0.0000019156,0.0000019141,0.0000019126, -0.0000019121,0.0000019108,0.0000019093,0.0000019064,0.0000019030, -0.0000018991,0.0000018948,0.0000018912,0.0000018892,0.0000018888, -0.0000018886,0.0000018891,0.0000018910,0.0000018920,0.0000018921, -0.0000018919,0.0000018924,0.0000018939,0.0000018959,0.0000018985, -0.0000019014,0.0000019037,0.0000019045,0.0000019041,0.0000019034, -0.0000019036,0.0000019043,0.0000019069,0.0000019103,0.0000019122, -0.0000019118,0.0000019101,0.0000019076,0.0000019051,0.0000019029, -0.0000019019,0.0000019005,0.0000018981,0.0000018950,0.0000018904, -0.0000018861,0.0000018825,0.0000018796,0.0000018773,0.0000018740, -0.0000018691,0.0000018644,0.0000018585,0.0000018556,0.0000018546, -0.0000018569,0.0000018617,0.0000018678,0.0000018725,0.0000018747, -0.0000018751,0.0000018748,0.0000018770,0.0000018803,0.0000018855, -0.0000018914,0.0000018939,0.0000018938,0.0000018883,0.0000018790, -0.0000018684,0.0000018571,0.0000018469,0.0000018383,0.0000018328, -0.0000018305,0.0000018290,0.0000018280,0.0000018280,0.0000018300, -0.0000018318,0.0000018319,0.0000018339,0.0000018376,0.0000018417, -0.0000018452,0.0000018492,0.0000018508,0.0000018491,0.0000018454, -0.0000018412,0.0000018374,0.0000018340,0.0000018315,0.0000018295, -0.0000018287,0.0000018298,0.0000018327,0.0000018365,0.0000018388, -0.0000018391,0.0000018386,0.0000018377,0.0000018360,0.0000018340, -0.0000018334,0.0000018347,0.0000018381,0.0000018418,0.0000018453, -0.0000018494,0.0000018526,0.0000018544,0.0000018546,0.0000018538, -0.0000018523,0.0000018508,0.0000018499,0.0000018505,0.0000018516, -0.0000018531,0.0000018528,0.0000018505,0.0000018449,0.0000018374, -0.0000018305,0.0000018267,0.0000018247,0.0000018241,0.0000018243, -0.0000018247,0.0000018220,0.0000018166,0.0000018095,0.0000018042, -0.0000018002,0.0000017965,0.0000017918,0.0000017862,0.0000017814, -0.0000017794,0.0000017771,0.0000017727,0.0000017663,0.0000017576, -0.0000017485,0.0000017409,0.0000017354,0.0000017315,0.0000017278, -0.0000017234,0.0000017196,0.0000017189,0.0000017186,0.0000017227, -0.0000017293,0.0000017387,0.0000017485,0.0000017589,0.0000017694, -0.0000017806,0.0000017918,0.0000018025,0.0000018135,0.0000018250, -0.0000018364,0.0000018463,0.0000018546,0.0000018614,0.0000018668, -0.0000018719,0.0000018777,0.0000018832,0.0000018872,0.0000018859, -0.0000018845,0.0000018842,0.0000018828,0.0000018803,0.0000018782, -0.0000018772,0.0000018768,0.0000018756,0.0000018734,0.0000018715, -0.0000018714,0.0000018728,0.0000018740,0.0000018738,0.0000018722, -0.0000018707,0.0000018708,0.0000018724,0.0000018739,0.0000018735, -0.0000018714,0.0000018681,0.0000018654,0.0000018655,0.0000018672, -0.0000018689,0.0000018695,0.0000018686,0.0000018654,0.0000018594, -0.0000018514,0.0000018422,0.0000018324,0.0000018236,0.0000018158, -0.0000018095,0.0000018051,0.0000018032,0.0000018029,0.0000018032, -0.0000018025,0.0000018000,0.0000017960,0.0000017920,0.0000017885, -0.0000017860,0.0000017853,0.0000017856,0.0000017865,0.0000017884, -0.0000017904,0.0000017914,0.0000017913,0.0000017914,0.0000017926, -0.0000017945,0.0000017974,0.0000018001,0.0000018034,0.0000018056, -0.0000018069,0.0000018066,0.0000018057,0.0000018057,0.0000018069, -0.0000018091,0.0000018115,0.0000018136,0.0000018154,0.0000018175, -0.0000018210,0.0000018259,0.0000018298,0.0000018310,0.0000018308, -0.0000018292,0.0000018271,0.0000018261,0.0000018268,0.0000018287, -0.0000018306,0.0000018323,0.0000018328,0.0000018330,0.0000018336, -0.0000018331,0.0000018329,0.0000018328,0.0000018333,0.0000018340, -0.0000018344,0.0000018338,0.0000018320,0.0000018305,0.0000018311, -0.0000018335,0.0000018381,0.0000018433,0.0000018476,0.0000018501, -0.0000018514,0.0000018527,0.0000018541,0.0000018567,0.0000018598, -0.0000018626,0.0000018646,0.0000018657,0.0000018673,0.0000018694, -0.0000018716,0.0000018746,0.0000018778,0.0000018805,0.0000018816, -0.0000018800,0.0000018715,0.0000018614,0.0000018542,0.0000018510, -0.0000018498,0.0000018498,0.0000018507,0.0000018514,0.0000018502, -0.0000018473,0.0000018446,0.0000018410,0.0000018345,0.0000018244, -0.0000018129,0.0000018023,0.0000017959,0.0000017927,0.0000017901, -0.0000017868,0.0000017835,0.0000017807,0.0000017789,0.0000017800, -0.0000017836,0.0000017851,0.0000017813,0.0000017765,0.0000017734, -0.0000017720,0.0000017754,0.0000017845,0.0000017953,0.0000018037, -0.0000018063,0.0000018045,0.0000018034,0.0000018041,0.0000018046, -0.0000018021,0.0000017975,0.0000017970,0.0000018006,0.0000018031, -0.0000018032,0.0000018020,0.0000018021,0.0000018064,0.0000018111, -0.0000018112,0.0000018088,0.0000018060,0.0000018030,0.0000018006, -0.0000018004,0.0000018012,0.0000017993,0.0000017933,0.0000017860, -0.0000017772,0.0000017678,0.0000017647,0.0000017577,0.0000017423, -0.0000017377,0.0000017529,0.0000017638,0.0000017848,0.0000018285, -0.0000018505,0.0000018512,0.0000018434,0.0000018190,0.0000017903, -0.0000017721,0.0000017736,0.0000017816,0.0000017849,0.0000017881, -0.0000017860,0.0000017811,0.0000017786,0.0000017773,0.0000017771, -0.0000017785,0.0000017809,0.0000017815,0.0000017755,0.0000017708, -0.0000017715,0.0000017769,0.0000017853,0.0000017911,0.0000017923, -0.0000017862,0.0000017674,0.0000017596,0.0000017611,0.0000017675, -0.0000017759,0.0000017658,0.0000017431,0.0000017363,0.0000017379, -0.0000017463,0.0000017581,0.0000017587,0.0000017562,0.0000017586, -0.0000017606,0.0000017583,0.0000017558,0.0000017541,0.0000017548, -0.0000017643,0.0000017761,0.0000017800,0.0000017772,0.0000017724, -0.0000017684,0.0000017687,0.0000017759,0.0000017904,0.0000018035, -0.0000018084,0.0000018152,0.0000018333,0.0000018479,0.0000018463, -0.0000018360,0.0000018287,0.0000018267,0.0000018237,0.0000018173, -0.0000018088,0.0000018036,0.0000018025,0.0000018014,0.0000017979, -0.0000017931,0.0000017886,0.0000017854,0.0000017835,0.0000017829, -0.0000017844,0.0000017892,0.0000017972,0.0000018056,0.0000018111, -0.0000018126,0.0000018121,0.0000018117,0.0000018127,0.0000018166, -0.0000018231,0.0000018305,0.0000018363,0.0000018399,0.0000018425, -0.0000018450,0.0000018461,0.0000018440,0.0000018392,0.0000018368, -0.0000018447,0.0000018608,0.0000018702,0.0000018658,0.0000018526, -0.0000018471,0.0000018466,0.0000018342,0.0000018140,0.0000018101, -0.0000018234,0.0000018406,0.0000018547,0.0000018577,0.0000018514, -0.0000018486,0.0000018494,0.0000018449,0.0000018376,0.0000018343, -0.0000018320,0.0000018295,0.0000018327,0.0000018443,0.0000018546, -0.0000018584,0.0000018601,0.0000018625,0.0000018638,0.0000018632, -0.0000018614,0.0000018598,0.0000018592,0.0000018595,0.0000018602, -0.0000018607,0.0000018606,0.0000018608,0.0000018632,0.0000018676, -0.0000018717,0.0000018749,0.0000018789,0.0000018840,0.0000018895, -0.0000018948,0.0000018996,0.0000019037,0.0000019073,0.0000019105, -0.0000019138,0.0000019177,0.0000019229,0.0000019282,0.0000019331, -0.0000019374,0.0000019411,0.0000019436,0.0000019415,0.0000019404, -0.0000019419,0.0000019426,0.0000019426,0.0000019421,0.0000019438, -0.0000019459,0.0000019443,0.0000019406,0.0000019366,0.0000019318, -0.0000019259,0.0000019193,0.0000019126,0.0000019056,0.0000018983, -0.0000018918,0.0000018871,0.0000018844,0.0000018872,0.0000018931, -0.0000019135,0.0000019426,0.0000019682,0.0000019835,0.0000019872, -0.0000019809,0.0000019702,0.0000019623,0.0000019593,0.0000019600, -0.0000019635,0.0000019696,0.0000019773,0.0000019843,0.0000019880, -0.0000019906,0.0000019920,0.0000019927,0.0000019932,0.0000019940, -0.0000019949,0.0000019955,0.0000019960,0.0000019964,0.0000019965, -0.0000019962,0.0000019955,0.0000019945,0.0000019931,0.0000019913, -0.0000019895,0.0000019891,0.0000019896,0.0000019909,0.0000019922, -0.0000019928,0.0000019929,0.0000019925,0.0000019917,0.0000019904, -0.0000019894,0.0000019881,0.0000019859,0.0000019843,0.0000019819, -0.0000019781,0.0000019743,0.0000019711,0.0000019688,0.0000019672, -0.0000019657,0.0000019645,0.0000019638,0.0000019633,0.0000019634, -0.0000019638,0.0000019645,0.0000019655,0.0000019667,0.0000019680, -0.0000019693,0.0000019703,0.0000019712,0.0000019722,0.0000019733, -0.0000019743,0.0000019750,0.0000019759,0.0000019768,0.0000019777, -0.0000019786,0.0000019782,0.0000019783,0.0000019775,0.0000019753, -0.0000019710,0.0000019647,0.0000019571,0.0000019500,0.0000019441, -0.0000019394,0.0000019357,0.0000019323,0.0000019291,0.0000019259, -0.0000019221,0.0000019161,0.0000019075,0.0000018983,0.0000018921, -0.0000018916,0.0000018922,0.0000018950,0.0000018991,0.0000019030, -0.0000019061,0.0000019077,0.0000019087,0.0000019083,0.0000019074, -0.0000019068,0.0000019068,0.0000019076,0.0000019087,0.0000019101, -0.0000019114,0.0000019120,0.0000019131,0.0000019141,0.0000019156, -0.0000019178,0.0000019206,0.0000019232,0.0000019258,0.0000019284, -0.0000019307,0.0000019322,0.0000019337,0.0000019350,0.0000019364, -0.0000019381,0.0000019395,0.0000019411,0.0000019429,0.0000019451, -0.0000019469,0.0000019487,0.0000019503,0.0000019517,0.0000019527, -0.0000019532,0.0000019529,0.0000019521,0.0000019513,0.0000019502, -0.0000019487,0.0000019472,0.0000019452,0.0000019423,0.0000019385, -0.0000019338,0.0000019288,0.0000019239,0.0000019195,0.0000019156, -0.0000019122,0.0000019091,0.0000019064,0.0000019042,0.0000019023, -0.0000019006,0.0000018991,0.0000018976,0.0000018962,0.0000018952, -0.0000018945,0.0000018939,0.0000018939,0.0000018940,0.0000018940, -0.0000018942,0.0000018947,0.0000018953,0.0000018960,0.0000018970, -0.0000018979,0.0000018985,0.0000018985,0.0000018980,0.0000018974, -0.0000018968,0.0000018960,0.0000018950,0.0000018924,0.0000018892, -0.0000018847,0.0000018790,0.0000018723,0.0000018642,0.0000018551, -0.0000018456,0.0000018365,0.0000018282,0.0000018205,0.0000018140, -0.0000018091,0.0000018053,0.0000018026,0.0000018005,0.0000017985, -0.0000017972,0.0000017966,0.0000017961,0.0000017952,0.0000017932, -0.0000017911,0.0000017891,0.0000017889,0.0000017899,0.0000017919, -0.0000017945,0.0000017979,0.0000018019,0.0000018055,0.0000018094, -0.0000018131,0.0000018165,0.0000018193,0.0000018213,0.0000018227, -0.0000018236,0.0000018240,0.0000018240,0.0000018236,0.0000018228, -0.0000018209,0.0000018188,0.0000018170,0.0000018152,0.0000018133, -0.0000018117,0.0000018101,0.0000018078,0.0000018046,0.0000018010, -0.0000017970,0.0000017927,0.0000017884,0.0000017843,0.0000017816, -0.0000017807,0.0000017804,0.0000017819,0.0000017845,0.0000017894, -0.0000017971,0.0000018068,0.0000018178,0.0000018293,0.0000018397, -0.0000018472,0.0000018519,0.0000018548,0.0000018561,0.0000018558, -0.0000018551,0.0000018547,0.0000018535,0.0000018512,0.0000018482, -0.0000018459,0.0000018451,0.0000018454,0.0000018496,0.0000018579, -0.0000018688,0.0000018810,0.0000018926,0.0000019015,0.0000019068, -0.0000019078,0.0000019039,0.0000018947,0.0000018817,0.0000018697, -0.0000018626,0.0000018610,0.0000018623,0.0000018657,0.0000018695, -0.0000018720,0.0000018731,0.0000018732,0.0000018722,0.0000018708, -0.0000018701,0.0000018717,0.0000018740,0.0000018747,0.0000018741, -0.0000018747,0.0000018778,0.0000018837,0.0000018906,0.0000018992, -0.0000019102,0.0000019224,0.0000019337,0.0000019441,0.0000019539, -0.0000019625,0.0000019700,0.0000019766,0.0000019831,0.0000019895, -0.0000019956,0.0000020017,0.0000020079,0.0000020131,0.0000020178, -0.0000020206,0.0000020218,0.0000020233,0.0000020225,0.0000020230, -0.0000020220,0.0000020191,0.0000020159,0.0000020126,0.0000020098, -0.0000020080,0.0000020074,0.0000020069,0.0000020068,0.0000020066, -0.0000020055,0.0000020026,0.0000019989,0.0000019944,0.0000019874, -0.0000019782,0.0000019699,0.0000019646,0.0000019615,0.0000019591, -0.0000019570,0.0000019559,0.0000019547,0.0000019523,0.0000019477, -0.0000019410,0.0000019337,0.0000019284,0.0000019267,0.0000019271, -0.0000019272,0.0000019246,0.0000019189,0.0000019134,0.0000019113, -0.0000019105,0.0000019109,0.0000019124,0.0000019142,0.0000019152, -0.0000019154,0.0000019151,0.0000019149,0.0000019145,0.0000019152, -0.0000019167,0.0000019188,0.0000019220,0.0000019255,0.0000019294, -0.0000019324,0.0000019347,0.0000019369,0.0000019394,0.0000019420, -0.0000019448,0.0000019472,0.0000019495,0.0000019521,0.0000019539, -0.0000019550,0.0000019555,0.0000019558,0.0000019557,0.0000019549, -0.0000019528,0.0000019496,0.0000019451,0.0000019387,0.0000019305, -0.0000019217,0.0000019150,0.0000019119,0.0000019113,0.0000019131, -0.0000019191,0.0000019261,0.0000019322,0.0000019365,0.0000019379, -0.0000019374,0.0000019362,0.0000019349,0.0000019324,0.0000019295, -0.0000019271,0.0000019256,0.0000019254,0.0000019257,0.0000019264, -0.0000019277,0.0000019289,0.0000019286,0.0000019273,0.0000019248, -0.0000019210,0.0000019185,0.0000019183,0.0000019191,0.0000019199, -0.0000019193,0.0000019155,0.0000019121,0.0000019097,0.0000019085, -0.0000019085,0.0000019087,0.0000019090,0.0000019090,0.0000019081, -0.0000019063,0.0000019046,0.0000019036,0.0000019025,0.0000019021, -0.0000019020,0.0000019021,0.0000019027,0.0000019030,0.0000019030, -0.0000019036,0.0000019048,0.0000019061,0.0000019074,0.0000019094, -0.0000019117,0.0000019152,0.0000019205,0.0000019272,0.0000019334, -0.0000019379,0.0000019404,0.0000019413,0.0000019410,0.0000019394, -0.0000019373,0.0000019350,0.0000019324,0.0000019296,0.0000019278, -0.0000019273,0.0000019279,0.0000019300,0.0000019329,0.0000019356, -0.0000019379,0.0000019400,0.0000019405,0.0000019393,0.0000019379, -0.0000019370,0.0000019355,0.0000019335,0.0000019320,0.0000019313, -0.0000019303,0.0000019289,0.0000019271,0.0000019254,0.0000019242, -0.0000019232,0.0000019220,0.0000019209,0.0000019213,0.0000019222, -0.0000019232,0.0000019248,0.0000019262,0.0000019261,0.0000019244, -0.0000019230,0.0000019226,0.0000019219,0.0000019196,0.0000019159, -0.0000019127,0.0000019113,0.0000019106,0.0000019089,0.0000019069, -0.0000019062,0.0000019064,0.0000019079,0.0000019110,0.0000019140, -0.0000019160,0.0000019169,0.0000019170,0.0000019163,0.0000019146, -0.0000019120,0.0000019106,0.0000019094,0.0000019079,0.0000019062, -0.0000019042,0.0000019023,0.0000018999,0.0000018975,0.0000018963, -0.0000018963,0.0000018962,0.0000018955,0.0000018954,0.0000018955, -0.0000018951,0.0000018949,0.0000018958,0.0000018975,0.0000018995, -0.0000019019,0.0000019045,0.0000019066,0.0000019072,0.0000019063, -0.0000019059,0.0000019062,0.0000019064,0.0000019092,0.0000019124, -0.0000019148,0.0000019154,0.0000019141,0.0000019112,0.0000019067, -0.0000019027,0.0000019006,0.0000018986,0.0000018972,0.0000018961, -0.0000018945,0.0000018919,0.0000018888,0.0000018862,0.0000018842, -0.0000018817,0.0000018785,0.0000018737,0.0000018672,0.0000018611, -0.0000018556,0.0000018528,0.0000018515,0.0000018552,0.0000018611, -0.0000018670,0.0000018713,0.0000018737,0.0000018763,0.0000018789, -0.0000018837,0.0000018894,0.0000018934,0.0000018949,0.0000018935, -0.0000018889,0.0000018832,0.0000018762,0.0000018685,0.0000018610, -0.0000018557,0.0000018534,0.0000018513,0.0000018480,0.0000018440, -0.0000018412,0.0000018384,0.0000018351,0.0000018343,0.0000018369, -0.0000018394,0.0000018438,0.0000018491,0.0000018520,0.0000018513, -0.0000018488,0.0000018448,0.0000018401,0.0000018358,0.0000018326, -0.0000018307,0.0000018306,0.0000018319,0.0000018353,0.0000018398, -0.0000018434,0.0000018452,0.0000018468,0.0000018476,0.0000018471, -0.0000018454,0.0000018444,0.0000018442,0.0000018459,0.0000018477, -0.0000018500,0.0000018525,0.0000018550,0.0000018569,0.0000018580, -0.0000018582,0.0000018571,0.0000018552,0.0000018525,0.0000018504, -0.0000018498,0.0000018496,0.0000018497,0.0000018489,0.0000018454, -0.0000018397,0.0000018346,0.0000018301,0.0000018258,0.0000018238, -0.0000018235,0.0000018248,0.0000018250,0.0000018220,0.0000018168, -0.0000018104,0.0000018052,0.0000018004,0.0000017948,0.0000017886, -0.0000017851,0.0000017840,0.0000017824,0.0000017791,0.0000017727, -0.0000017642,0.0000017559,0.0000017496,0.0000017451,0.0000017409, -0.0000017354,0.0000017288,0.0000017232,0.0000017200,0.0000017200, -0.0000017225,0.0000017258,0.0000017281,0.0000017302,0.0000017314, -0.0000017346,0.0000017390,0.0000017449,0.0000017523,0.0000017617, -0.0000017727,0.0000017838,0.0000017939,0.0000018030,0.0000018113, -0.0000018203,0.0000018305,0.0000018410,0.0000018507,0.0000018587, -0.0000018652,0.0000018712,0.0000018761,0.0000018788,0.0000018790, -0.0000018787,0.0000018789,0.0000018785,0.0000018765,0.0000018739, -0.0000018727,0.0000018730,0.0000018739,0.0000018740,0.0000018726, -0.0000018712,0.0000018712,0.0000018726,0.0000018747,0.0000018757, -0.0000018748,0.0000018727,0.0000018703,0.0000018693,0.0000018703, -0.0000018724,0.0000018745,0.0000018754,0.0000018751,0.0000018742, -0.0000018730,0.0000018725,0.0000018710,0.0000018660,0.0000018582, -0.0000018475,0.0000018344,0.0000018211,0.0000018106,0.0000018055, -0.0000018049,0.0000018049,0.0000018039,0.0000018016,0.0000017981, -0.0000017942,0.0000017915,0.0000017902,0.0000017894,0.0000017888, -0.0000017894,0.0000017894,0.0000017887,0.0000017878,0.0000017881, -0.0000017902,0.0000017938,0.0000017974,0.0000018012,0.0000018049, -0.0000018074,0.0000018078,0.0000018069,0.0000018064,0.0000018072, -0.0000018094,0.0000018118,0.0000018148,0.0000018184,0.0000018227, -0.0000018277,0.0000018322,0.0000018346,0.0000018348,0.0000018342, -0.0000018326,0.0000018303,0.0000018295,0.0000018305,0.0000018329, -0.0000018355,0.0000018371,0.0000018374,0.0000018367,0.0000018355, -0.0000018336,0.0000018310,0.0000018290,0.0000018284,0.0000018295, -0.0000018321,0.0000018342,0.0000018335,0.0000018307,0.0000018289, -0.0000018287,0.0000018323,0.0000018378,0.0000018431,0.0000018469, -0.0000018492,0.0000018506,0.0000018514,0.0000018525,0.0000018544, -0.0000018566,0.0000018583,0.0000018600,0.0000018616,0.0000018631, -0.0000018639,0.0000018649,0.0000018674,0.0000018725,0.0000018783, -0.0000018813,0.0000018776,0.0000018681,0.0000018570,0.0000018497, -0.0000018474,0.0000018482,0.0000018495,0.0000018487,0.0000018468, -0.0000018454,0.0000018453,0.0000018443,0.0000018394,0.0000018303, -0.0000018193,0.0000018108,0.0000018056,0.0000018020,0.0000017988, -0.0000017955,0.0000017919,0.0000017886,0.0000017878,0.0000017895, -0.0000017899,0.0000017852,0.0000017789,0.0000017757,0.0000017752, -0.0000017793,0.0000017883,0.0000017982,0.0000018052,0.0000018073, -0.0000018057,0.0000018045,0.0000018055,0.0000018067,0.0000018057, -0.0000018017,0.0000018007,0.0000018037,0.0000018058,0.0000018061, -0.0000018046,0.0000018028,0.0000018056,0.0000018110,0.0000018114, -0.0000018074,0.0000018038,0.0000018009,0.0000017982,0.0000017979, -0.0000018007,0.0000018035,0.0000018018,0.0000017940,0.0000017850, -0.0000017749,0.0000017660,0.0000017633,0.0000017560,0.0000017435, -0.0000017466,0.0000017591,0.0000017673,0.0000018024,0.0000018418, -0.0000018519,0.0000018495,0.0000018395,0.0000018138,0.0000017866, -0.0000017693,0.0000017723,0.0000017808,0.0000017832,0.0000017873, -0.0000017866,0.0000017825,0.0000017796,0.0000017792,0.0000017800, -0.0000017814,0.0000017808,0.0000017731,0.0000017666,0.0000017661, -0.0000017696,0.0000017779,0.0000017880,0.0000017927,0.0000017933, -0.0000017844,0.0000017643,0.0000017603,0.0000017631,0.0000017711, -0.0000017763,0.0000017583,0.0000017392,0.0000017369,0.0000017391, -0.0000017490,0.0000017581,0.0000017569,0.0000017559,0.0000017597, -0.0000017596,0.0000017567,0.0000017549,0.0000017537,0.0000017567, -0.0000017701,0.0000017803,0.0000017821,0.0000017827,0.0000017832, -0.0000017834,0.0000017882,0.0000017983,0.0000018058,0.0000018082, -0.0000018168,0.0000018353,0.0000018477,0.0000018456,0.0000018360, -0.0000018304,0.0000018284,0.0000018233,0.0000018143,0.0000018062, -0.0000018033,0.0000018010,0.0000017930,0.0000017823,0.0000017745, -0.0000017712,0.0000017719,0.0000017719,0.0000017719,0.0000017720, -0.0000017720,0.0000017785,0.0000017904,0.0000018035,0.0000018109, -0.0000018099,0.0000018101,0.0000018098,0.0000018119,0.0000018173, -0.0000018246,0.0000018312,0.0000018357,0.0000018392,0.0000018431, -0.0000018461,0.0000018472,0.0000018463,0.0000018415,0.0000018403, -0.0000018499,0.0000018658,0.0000018694,0.0000018596,0.0000018488, -0.0000018470,0.0000018397,0.0000018195,0.0000018087,0.0000018179, -0.0000018340,0.0000018489,0.0000018549,0.0000018509,0.0000018475, -0.0000018478,0.0000018447,0.0000018375,0.0000018337,0.0000018317, -0.0000018293,0.0000018297,0.0000018376,0.0000018489,0.0000018557, -0.0000018586,0.0000018606,0.0000018614,0.0000018610,0.0000018597, -0.0000018582,0.0000018574,0.0000018572,0.0000018571,0.0000018575, -0.0000018586,0.0000018595,0.0000018605,0.0000018633,0.0000018677, -0.0000018719,0.0000018752,0.0000018785,0.0000018822,0.0000018865, -0.0000018911,0.0000018954,0.0000018986,0.0000019003,0.0000019006, -0.0000019003,0.0000019007,0.0000019026,0.0000019054,0.0000019091, -0.0000019131,0.0000019165,0.0000019191,0.0000019211,0.0000019223, -0.0000019225,0.0000019220,0.0000019206,0.0000019185,0.0000019158, -0.0000019122,0.0000019078,0.0000019029,0.0000018975,0.0000018919, -0.0000018863,0.0000018815,0.0000018782,0.0000018773,0.0000018801, -0.0000018836,0.0000018929,0.0000019129,0.0000019428,0.0000019714, -0.0000019856,0.0000019875,0.0000019819,0.0000019710,0.0000019624, -0.0000019585,0.0000019581,0.0000019603,0.0000019647,0.0000019706, -0.0000019767,0.0000019819,0.0000019858,0.0000019881,0.0000019895, -0.0000019904,0.0000019909,0.0000019914,0.0000019916,0.0000019911, -0.0000019902,0.0000019892,0.0000019883,0.0000019876,0.0000019870, -0.0000019866,0.0000019863,0.0000019858,0.0000019855,0.0000019858, -0.0000019873,0.0000019894,0.0000019912,0.0000019926,0.0000019934, -0.0000019936,0.0000019931,0.0000019921,0.0000019904,0.0000019886, -0.0000019870,0.0000019857,0.0000019847,0.0000019838,0.0000019826, -0.0000019811,0.0000019796,0.0000019780,0.0000019766,0.0000019754, -0.0000019743,0.0000019734,0.0000019730,0.0000019731,0.0000019733, -0.0000019735,0.0000019739,0.0000019743,0.0000019747,0.0000019750, -0.0000019752,0.0000019758,0.0000019766,0.0000019772,0.0000019778, -0.0000019778,0.0000019783,0.0000019782,0.0000019779,0.0000019761, -0.0000019725,0.0000019673,0.0000019610,0.0000019546,0.0000019486, -0.0000019431,0.0000019383,0.0000019336,0.0000019292,0.0000019258, -0.0000019236,0.0000019212,0.0000019169,0.0000019100,0.0000019025, -0.0000018952,0.0000018911,0.0000018908,0.0000018926,0.0000018954, -0.0000018987,0.0000019018,0.0000019043,0.0000019061,0.0000019070, -0.0000019068,0.0000019054,0.0000019036,0.0000019025,0.0000019026, -0.0000019041,0.0000019063,0.0000019091,0.0000019111,0.0000019126, -0.0000019145,0.0000019166,0.0000019189,0.0000019217,0.0000019245, -0.0000019273,0.0000019299,0.0000019328,0.0000019350,0.0000019368, -0.0000019383,0.0000019394,0.0000019406,0.0000019414,0.0000019417, -0.0000019420,0.0000019425,0.0000019429,0.0000019431,0.0000019432, -0.0000019430,0.0000019426,0.0000019417,0.0000019400,0.0000019375, -0.0000019348,0.0000019320,0.0000019289,0.0000019257,0.0000019227, -0.0000019197,0.0000019165,0.0000019131,0.0000019098,0.0000019066, -0.0000019036,0.0000019008,0.0000018983,0.0000018957,0.0000018931, -0.0000018906,0.0000018881,0.0000018858,0.0000018839,0.0000018824, -0.0000018811,0.0000018799,0.0000018792,0.0000018788,0.0000018786, -0.0000018790,0.0000018797,0.0000018805,0.0000018819,0.0000018835, -0.0000018851,0.0000018868,0.0000018887,0.0000018906,0.0000018919, -0.0000018927,0.0000018936,0.0000018945,0.0000018953,0.0000018958, -0.0000018955,0.0000018949,0.0000018940,0.0000018932,0.0000018915, -0.0000018888,0.0000018851,0.0000018807,0.0000018759,0.0000018703, -0.0000018642,0.0000018576,0.0000018508,0.0000018444,0.0000018386, -0.0000018332,0.0000018276,0.0000018219,0.0000018164,0.0000018117, -0.0000018075,0.0000018032,0.0000017989,0.0000017949,0.0000017913, -0.0000017888,0.0000017868,0.0000017863,0.0000017864,0.0000017876, -0.0000017881,0.0000017904,0.0000017931,0.0000017961,0.0000017992, -0.0000018025,0.0000018050,0.0000018066,0.0000018076,0.0000018079, -0.0000018074,0.0000018068,0.0000018060,0.0000018045,0.0000018030, -0.0000018017,0.0000018002,0.0000017985,0.0000017973,0.0000017965, -0.0000017950,0.0000017929,0.0000017910,0.0000017893,0.0000017872, -0.0000017857,0.0000017843,0.0000017849,0.0000017874,0.0000017916, -0.0000017972,0.0000018042,0.0000018126,0.0000018217,0.0000018304, -0.0000018379,0.0000018433,0.0000018465,0.0000018484,0.0000018507, -0.0000018530,0.0000018545,0.0000018550,0.0000018550,0.0000018539, -0.0000018519,0.0000018507,0.0000018524,0.0000018595,0.0000018713, -0.0000018868,0.0000019044,0.0000019216,0.0000019359,0.0000019469, -0.0000019544,0.0000019584,0.0000019590,0.0000019558,0.0000019458, -0.0000019278,0.0000019055,0.0000018859,0.0000018734,0.0000018681, -0.0000018679,0.0000018700,0.0000018721,0.0000018730,0.0000018730, -0.0000018722,0.0000018716,0.0000018732,0.0000018774,0.0000018811, -0.0000018819,0.0000018815,0.0000018827,0.0000018862,0.0000018925, -0.0000019018,0.0000019137,0.0000019266,0.0000019393,0.0000019510, -0.0000019619,0.0000019721,0.0000019809,0.0000019878,0.0000019931, -0.0000019973,0.0000020007,0.0000020048,0.0000020086,0.0000020120, -0.0000020149,0.0000020156,0.0000020157,0.0000020137,0.0000020116, -0.0000020093,0.0000020078,0.0000020060,0.0000020039,0.0000020016, -0.0000019990,0.0000019963,0.0000019947,0.0000019948,0.0000019954, -0.0000019962,0.0000019974,0.0000019980,0.0000019969,0.0000019942, -0.0000019909,0.0000019855,0.0000019772,0.0000019682,0.0000019617, -0.0000019585,0.0000019569,0.0000019556,0.0000019543,0.0000019527, -0.0000019496,0.0000019440,0.0000019371,0.0000019317,0.0000019288, -0.0000019269,0.0000019241,0.0000019199,0.0000019144,0.0000019103, -0.0000019107,0.0000019133,0.0000019161,0.0000019181,0.0000019198, -0.0000019216,0.0000019231,0.0000019236,0.0000019236,0.0000019236, -0.0000019239,0.0000019248,0.0000019262,0.0000019281,0.0000019303, -0.0000019332,0.0000019376,0.0000019427,0.0000019483,0.0000019540, -0.0000019595,0.0000019638,0.0000019679,0.0000019712,0.0000019724, -0.0000019728,0.0000019722,0.0000019704,0.0000019677,0.0000019649, -0.0000019626,0.0000019608,0.0000019593,0.0000019582,0.0000019584, -0.0000019573,0.0000019522,0.0000019426,0.0000019304,0.0000019200, -0.0000019131,0.0000019112,0.0000019130,0.0000019180,0.0000019246, -0.0000019305,0.0000019337,0.0000019348,0.0000019351,0.0000019351, -0.0000019346,0.0000019338,0.0000019333,0.0000019328,0.0000019323, -0.0000019319,0.0000019314,0.0000019307,0.0000019301,0.0000019289, -0.0000019275,0.0000019276,0.0000019286,0.0000019312,0.0000019324, -0.0000019298,0.0000019253,0.0000019204,0.0000019163,0.0000019128, -0.0000019108,0.0000019101,0.0000019105,0.0000019107,0.0000019108, -0.0000019108,0.0000019098,0.0000019074,0.0000019044,0.0000019024, -0.0000019016,0.0000019019,0.0000019019,0.0000019023,0.0000019034, -0.0000019046,0.0000019054,0.0000019067,0.0000019085,0.0000019095, -0.0000019096,0.0000019107,0.0000019129,0.0000019159,0.0000019195, -0.0000019240,0.0000019288,0.0000019330,0.0000019358,0.0000019376, -0.0000019385,0.0000019381,0.0000019369,0.0000019349,0.0000019328, -0.0000019313,0.0000019302,0.0000019299,0.0000019308,0.0000019336, -0.0000019376,0.0000019413,0.0000019441,0.0000019464,0.0000019473, -0.0000019468,0.0000019449,0.0000019431,0.0000019415,0.0000019393, -0.0000019373,0.0000019363,0.0000019358,0.0000019349,0.0000019339, -0.0000019325,0.0000019317,0.0000019314,0.0000019314,0.0000019314, -0.0000019319,0.0000019331,0.0000019341,0.0000019353,0.0000019366, -0.0000019366,0.0000019351,0.0000019324,0.0000019305,0.0000019295, -0.0000019280,0.0000019253,0.0000019225,0.0000019207,0.0000019197, -0.0000019186,0.0000019184,0.0000019185,0.0000019186,0.0000019198, -0.0000019225,0.0000019248,0.0000019261,0.0000019264,0.0000019255, -0.0000019241,0.0000019214,0.0000019174,0.0000019137,0.0000019106, -0.0000019078,0.0000019054,0.0000019034,0.0000019014,0.0000018996, -0.0000018977,0.0000018968,0.0000018974,0.0000018980,0.0000018984, -0.0000018984,0.0000018988,0.0000018987,0.0000018984,0.0000018991, -0.0000019012,0.0000019039,0.0000019066,0.0000019092,0.0000019115, -0.0000019126,0.0000019119,0.0000019115,0.0000019108,0.0000019102, -0.0000019122,0.0000019146,0.0000019165,0.0000019177,0.0000019180, -0.0000019161,0.0000019120,0.0000019075,0.0000019039,0.0000019016, -0.0000019002,0.0000019000,0.0000018989,0.0000018957,0.0000018913, -0.0000018874,0.0000018852,0.0000018835,0.0000018828,0.0000018808, -0.0000018774,0.0000018718,0.0000018646,0.0000018563,0.0000018493, -0.0000018471,0.0000018489,0.0000018544,0.0000018617,0.0000018678, -0.0000018729,0.0000018765,0.0000018809,0.0000018856,0.0000018894, -0.0000018918,0.0000018917,0.0000018897,0.0000018895,0.0000018881, -0.0000018855,0.0000018819,0.0000018788,0.0000018772,0.0000018752, -0.0000018714,0.0000018660,0.0000018605,0.0000018541,0.0000018477, -0.0000018436,0.0000018419,0.0000018420,0.0000018465,0.0000018517, -0.0000018555,0.0000018569,0.0000018562,0.0000018535,0.0000018490, -0.0000018441,0.0000018400,0.0000018378,0.0000018374,0.0000018382, -0.0000018413,0.0000018460,0.0000018489,0.0000018513,0.0000018541, -0.0000018557,0.0000018555,0.0000018540,0.0000018525,0.0000018524, -0.0000018535,0.0000018548,0.0000018560,0.0000018565,0.0000018570, -0.0000018580,0.0000018596,0.0000018610,0.0000018612,0.0000018597, -0.0000018562,0.0000018524,0.0000018485,0.0000018462,0.0000018449, -0.0000018443,0.0000018424,0.0000018402,0.0000018381,0.0000018338, -0.0000018284,0.0000018241,0.0000018235,0.0000018244,0.0000018259, -0.0000018262,0.0000018227,0.0000018170,0.0000018107,0.0000018045, -0.0000017977,0.0000017915,0.0000017891,0.0000017881,0.0000017866, -0.0000017833,0.0000017769,0.0000017689,0.0000017622,0.0000017582, -0.0000017549,0.0000017504,0.0000017437,0.0000017360,0.0000017293, -0.0000017262,0.0000017256,0.0000017271,0.0000017291,0.0000017291, -0.0000017267,0.0000017251,0.0000017221,0.0000017216,0.0000017221, -0.0000017247,0.0000017291,0.0000017347,0.0000017404,0.0000017459, -0.0000017512,0.0000017574,0.0000017658,0.0000017757,0.0000017858, -0.0000017957,0.0000018062,0.0000018172,0.0000018287,0.0000018398, -0.0000018494,0.0000018572,0.0000018633,0.0000018673,0.0000018682, -0.0000018668,0.0000018646,0.0000018631,0.0000018626,0.0000018623, -0.0000018622,0.0000018622,0.0000018624,0.0000018644,0.0000018682, -0.0000018717,0.0000018733,0.0000018726,0.0000018712,0.0000018697, -0.0000018697,0.0000018706,0.0000018724,0.0000018737,0.0000018737, -0.0000018728,0.0000018718,0.0000018714,0.0000018722,0.0000018736, -0.0000018741,0.0000018725,0.0000018680,0.0000018583,0.0000018436, -0.0000018280,0.0000018165,0.0000018103,0.0000018073,0.0000018057, -0.0000018035,0.0000018008,0.0000017983,0.0000017969,0.0000017963, -0.0000017953,0.0000017940,0.0000017926,0.0000017911,0.0000017896, -0.0000017886,0.0000017902,0.0000017934,0.0000017968,0.0000018001, -0.0000018040,0.0000018072,0.0000018088,0.0000018093,0.0000018099, -0.0000018109,0.0000018122,0.0000018136,0.0000018161,0.0000018209, -0.0000018275,0.0000018347,0.0000018400,0.0000018412,0.0000018403, -0.0000018380,0.0000018351,0.0000018329,0.0000018328,0.0000018345, -0.0000018373,0.0000018402,0.0000018423,0.0000018427,0.0000018415, -0.0000018390,0.0000018357,0.0000018319,0.0000018289,0.0000018272, -0.0000018269,0.0000018286,0.0000018317,0.0000018338,0.0000018330, -0.0000018304,0.0000018282,0.0000018292,0.0000018329,0.0000018371, -0.0000018408,0.0000018437,0.0000018458,0.0000018469,0.0000018479, -0.0000018496,0.0000018514,0.0000018531,0.0000018545,0.0000018563, -0.0000018578,0.0000018586,0.0000018586,0.0000018593,0.0000018619, -0.0000018675,0.0000018739,0.0000018766,0.0000018727,0.0000018615, -0.0000018496,0.0000018434,0.0000018442,0.0000018457,0.0000018450, -0.0000018435,0.0000018435,0.0000018445,0.0000018430,0.0000018388, -0.0000018320,0.0000018250,0.0000018200,0.0000018167,0.0000018141, -0.0000018115,0.0000018078,0.0000018034,0.0000017999,0.0000017989, -0.0000017978,0.0000017922,0.0000017846,0.0000017811,0.0000017815, -0.0000017856,0.0000017934,0.0000018010,0.0000018057,0.0000018069, -0.0000018059,0.0000018055,0.0000018075,0.0000018094,0.0000018090, -0.0000018052,0.0000018035,0.0000018062,0.0000018087,0.0000018087, -0.0000018071,0.0000018038,0.0000018040,0.0000018089,0.0000018105, -0.0000018055,0.0000018016,0.0000017999,0.0000017971,0.0000017960, -0.0000017982,0.0000018027,0.0000018048,0.0000018014,0.0000017921, -0.0000017822,0.0000017716,0.0000017640,0.0000017613,0.0000017547, -0.0000017489,0.0000017559,0.0000017605,0.0000017789,0.0000018229, -0.0000018498,0.0000018514,0.0000018466,0.0000018349,0.0000018088, -0.0000017832,0.0000017668,0.0000017707,0.0000017802,0.0000017818, -0.0000017846,0.0000017855,0.0000017842,0.0000017821,0.0000017815, -0.0000017813,0.0000017791,0.0000017701,0.0000017633,0.0000017613, -0.0000017625,0.0000017684,0.0000017800,0.0000017899,0.0000017936, -0.0000017930,0.0000017803,0.0000017617,0.0000017620,0.0000017656, -0.0000017748,0.0000017725,0.0000017502,0.0000017375,0.0000017380, -0.0000017408,0.0000017515,0.0000017569,0.0000017548,0.0000017564, -0.0000017589,0.0000017574,0.0000017555,0.0000017541,0.0000017535, -0.0000017603,0.0000017748,0.0000017805,0.0000017818,0.0000017864, -0.0000017917,0.0000017963,0.0000018016,0.0000018048,0.0000018072, -0.0000018182,0.0000018366,0.0000018472,0.0000018451,0.0000018367, -0.0000018322,0.0000018294,0.0000018222,0.0000018126,0.0000018067, -0.0000018021,0.0000017902,0.0000017755,0.0000017687,0.0000017690, -0.0000017714,0.0000017735,0.0000017747,0.0000017748,0.0000017732, -0.0000017702,0.0000017690,0.0000017734,0.0000017876,0.0000018031, -0.0000018037,0.0000018082,0.0000018074,0.0000018074,0.0000018109, -0.0000018171,0.0000018239,0.0000018291,0.0000018331,0.0000018375, -0.0000018422,0.0000018462,0.0000018486,0.0000018482,0.0000018434, -0.0000018447,0.0000018559,0.0000018678,0.0000018661,0.0000018538, -0.0000018471,0.0000018433,0.0000018268,0.0000018110,0.0000018132, -0.0000018269,0.0000018421,0.0000018516,0.0000018505,0.0000018464, -0.0000018466,0.0000018450,0.0000018382,0.0000018336,0.0000018319, -0.0000018297,0.0000018288,0.0000018321,0.0000018407,0.0000018493, -0.0000018543,0.0000018565,0.0000018569,0.0000018566,0.0000018557, -0.0000018551,0.0000018553,0.0000018556,0.0000018551,0.0000018546, -0.0000018553,0.0000018572,0.0000018593,0.0000018613,0.0000018642, -0.0000018680,0.0000018716,0.0000018745,0.0000018772,0.0000018803, -0.0000018838,0.0000018876,0.0000018913,0.0000018943,0.0000018958, -0.0000018957,0.0000018944,0.0000018930,0.0000018916,0.0000018907, -0.0000018910,0.0000018921,0.0000018929,0.0000018936,0.0000018938, -0.0000018936,0.0000018931,0.0000018921,0.0000018904,0.0000018879, -0.0000018845,0.0000018808,0.0000018770,0.0000018733,0.0000018710, -0.0000018709,0.0000018734,0.0000018763,0.0000018814,0.0000018886, -0.0000019021,0.0000019265,0.0000019572,0.0000019801,0.0000019864, -0.0000019851,0.0000019778,0.0000019684,0.0000019607,0.0000019561, -0.0000019538,0.0000019531,0.0000019538,0.0000019558,0.0000019589, -0.0000019630,0.0000019682,0.0000019743,0.0000019808,0.0000019861, -0.0000019887,0.0000019888,0.0000019876,0.0000019858,0.0000019842, -0.0000019830,0.0000019826,0.0000019830,0.0000019830,0.0000019825, -0.0000019815,0.0000019803,0.0000019790,0.0000019782,0.0000019794, -0.0000019821,0.0000019853,0.0000019885,0.0000019915,0.0000019941, -0.0000019957,0.0000019963,0.0000019971,0.0000019967,0.0000019957, -0.0000019941,0.0000019921,0.0000019898,0.0000019876,0.0000019856, -0.0000019835,0.0000019815,0.0000019795,0.0000019778,0.0000019765, -0.0000019756,0.0000019750,0.0000019749,0.0000019748,0.0000019749, -0.0000019752,0.0000019758,0.0000019762,0.0000019765,0.0000019772, -0.0000019781,0.0000019784,0.0000019786,0.0000019779,0.0000019764, -0.0000019743,0.0000019712,0.0000019672,0.0000019624,0.0000019574, -0.0000019530,0.0000019490,0.0000019449,0.0000019402,0.0000019348, -0.0000019294,0.0000019250,0.0000019225,0.0000019218,0.0000019211, -0.0000019196,0.0000019166,0.0000019117,0.0000019059,0.0000019007, -0.0000018973,0.0000018959,0.0000018957,0.0000018968,0.0000018986, -0.0000019001,0.0000019020,0.0000019041,0.0000019059,0.0000019064, -0.0000019056,0.0000019039,0.0000019025,0.0000019019,0.0000019016, -0.0000019019,0.0000019034,0.0000019051,0.0000019065,0.0000019081, -0.0000019102,0.0000019123,0.0000019142,0.0000019161,0.0000019180, -0.0000019199,0.0000019216,0.0000019227,0.0000019234,0.0000019238, -0.0000019242,0.0000019248,0.0000019245,0.0000019239,0.0000019232, -0.0000019224,0.0000019215,0.0000019202,0.0000019189,0.0000019176, -0.0000019161,0.0000019140,0.0000019115,0.0000019088,0.0000019065, -0.0000019046,0.0000019027,0.0000019011,0.0000019002,0.0000018992, -0.0000018978,0.0000018961,0.0000018941,0.0000018917,0.0000018890, -0.0000018865,0.0000018839,0.0000018813,0.0000018792,0.0000018773, -0.0000018751,0.0000018730,0.0000018710,0.0000018695,0.0000018684, -0.0000018677,0.0000018673,0.0000018672,0.0000018672,0.0000018682, -0.0000018697,0.0000018715,0.0000018734,0.0000018750,0.0000018768, -0.0000018789,0.0000018810,0.0000018828,0.0000018838,0.0000018844, -0.0000018857,0.0000018871,0.0000018887,0.0000018904,0.0000018918, -0.0000018925,0.0000018927,0.0000018927,0.0000018924,0.0000018913, -0.0000018890,0.0000018865,0.0000018847,0.0000018828,0.0000018796, -0.0000018766,0.0000018741,0.0000018716,0.0000018692,0.0000018661, -0.0000018618,0.0000018566,0.0000018506,0.0000018445,0.0000018381, -0.0000018311,0.0000018239,0.0000018171,0.0000018108,0.0000018051, -0.0000018000,0.0000017961,0.0000017931,0.0000017908,0.0000017890, -0.0000017880,0.0000017883,0.0000017895,0.0000017913,0.0000017926, -0.0000017933,0.0000017941,0.0000017946,0.0000017944,0.0000017937, -0.0000017936,0.0000017936,0.0000017934,0.0000017931,0.0000017929, -0.0000017929,0.0000017927,0.0000017929,0.0000017931,0.0000017922, -0.0000017910,0.0000017907,0.0000017908,0.0000017918,0.0000017942, -0.0000017977,0.0000018022,0.0000018080,0.0000018146,0.0000018214, -0.0000018277,0.0000018328,0.0000018362,0.0000018385,0.0000018407, -0.0000018424,0.0000018444,0.0000018479,0.0000018518,0.0000018540, -0.0000018547,0.0000018548,0.0000018564,0.0000018620,0.0000018740, -0.0000018906,0.0000019082,0.0000019253,0.0000019410,0.0000019546, -0.0000019652,0.0000019728,0.0000019780,0.0000019818,0.0000019846, -0.0000019865,0.0000019869,0.0000019843,0.0000019731,0.0000019524, -0.0000019270,0.0000019039,0.0000018871,0.0000018779,0.0000018747, -0.0000018743,0.0000018742,0.0000018734,0.0000018725,0.0000018732, -0.0000018771,0.0000018831,0.0000018875,0.0000018884,0.0000018879, -0.0000018898,0.0000018952,0.0000019041,0.0000019159,0.0000019292, -0.0000019428,0.0000019559,0.0000019691,0.0000019815,0.0000019916, -0.0000019989,0.0000020034,0.0000020054,0.0000020059,0.0000020069, -0.0000020071,0.0000020087,0.0000020075,0.0000020058,0.0000020026, -0.0000019987,0.0000019953,0.0000019923,0.0000019905,0.0000019893, -0.0000019884,0.0000019872,0.0000019856,0.0000019839,0.0000019817, -0.0000019794,0.0000019785,0.0000019794,0.0000019810,0.0000019832, -0.0000019850,0.0000019852,0.0000019829,0.0000019790,0.0000019746, -0.0000019691,0.0000019640,0.0000019605,0.0000019582,0.0000019564, -0.0000019545,0.0000019523,0.0000019490,0.0000019444,0.0000019390, -0.0000019342,0.0000019311,0.0000019285,0.0000019237,0.0000019166, -0.0000019106,0.0000019090,0.0000019101,0.0000019148,0.0000019204, -0.0000019249,0.0000019274,0.0000019288,0.0000019298,0.0000019305, -0.0000019307,0.0000019305,0.0000019304,0.0000019308,0.0000019317, -0.0000019333,0.0000019367,0.0000019418,0.0000019485,0.0000019575, -0.0000019669,0.0000019763,0.0000019849,0.0000019925,0.0000019976, -0.0000020016,0.0000020042,0.0000020039,0.0000020022,0.0000019992, -0.0000019950,0.0000019891,0.0000019822,0.0000019755,0.0000019689, -0.0000019629,0.0000019591,0.0000019584,0.0000019588,0.0000019591, -0.0000019569,0.0000019489,0.0000019365,0.0000019234,0.0000019145, -0.0000019121,0.0000019136,0.0000019175,0.0000019223,0.0000019258, -0.0000019280,0.0000019297,0.0000019309,0.0000019317,0.0000019319, -0.0000019314,0.0000019305,0.0000019302,0.0000019309,0.0000019319, -0.0000019328,0.0000019338,0.0000019348,0.0000019365,0.0000019392, -0.0000019391,0.0000019375,0.0000019334,0.0000019289,0.0000019259, -0.0000019243,0.0000019227,0.0000019211,0.0000019198,0.0000019195, -0.0000019203,0.0000019216,0.0000019225,0.0000019226,0.0000019211, -0.0000019176,0.0000019130,0.0000019088,0.0000019060,0.0000019046, -0.0000019041,0.0000019040,0.0000019046,0.0000019056,0.0000019062, -0.0000019068,0.0000019080,0.0000019084,0.0000019082,0.0000019084, -0.0000019105,0.0000019131,0.0000019158,0.0000019191,0.0000019233, -0.0000019278,0.0000019316,0.0000019344,0.0000019362,0.0000019372, -0.0000019374,0.0000019372,0.0000019373,0.0000019382,0.0000019394, -0.0000019407,0.0000019426,0.0000019455,0.0000019491,0.0000019516, -0.0000019532,0.0000019545,0.0000019557,0.0000019561,0.0000019549, -0.0000019526,0.0000019498,0.0000019470,0.0000019443,0.0000019430, -0.0000019433,0.0000019444,0.0000019455,0.0000019463,0.0000019464, -0.0000019459,0.0000019453,0.0000019441,0.0000019422,0.0000019405, -0.0000019396,0.0000019395,0.0000019392,0.0000019386,0.0000019377, -0.0000019356,0.0000019324,0.0000019295,0.0000019271,0.0000019247, -0.0000019220,0.0000019195,0.0000019181,0.0000019183,0.0000019195, -0.0000019211,0.0000019231,0.0000019266,0.0000019303,0.0000019324, -0.0000019339,0.0000019351,0.0000019351,0.0000019345,0.0000019326, -0.0000019290,0.0000019244,0.0000019198,0.0000019155,0.0000019109, -0.0000019064,0.0000019023,0.0000018990,0.0000018969,0.0000018949, -0.0000018945,0.0000018950,0.0000018961,0.0000018974,0.0000018987, -0.0000018989,0.0000018989,0.0000018996,0.0000019018,0.0000019049, -0.0000019081,0.0000019109,0.0000019134,0.0000019151,0.0000019156, -0.0000019159,0.0000019148,0.0000019134,0.0000019145,0.0000019161, -0.0000019176,0.0000019190,0.0000019202,0.0000019195,0.0000019169, -0.0000019132,0.0000019103,0.0000019086,0.0000019083,0.0000019088, -0.0000019077,0.0000019034,0.0000018971,0.0000018904,0.0000018856, -0.0000018829,0.0000018819,0.0000018825,0.0000018820,0.0000018802, -0.0000018761,0.0000018681,0.0000018577,0.0000018486,0.0000018451, -0.0000018455,0.0000018512,0.0000018582,0.0000018656,0.0000018713, -0.0000018764,0.0000018806,0.0000018837,0.0000018858,0.0000018863, -0.0000018869,0.0000018884,0.0000018908,0.0000018932,0.0000018957, -0.0000018967,0.0000018968,0.0000018953,0.0000018921,0.0000018869, -0.0000018806,0.0000018728,0.0000018646,0.0000018580,0.0000018531, -0.0000018507,0.0000018528,0.0000018568,0.0000018608,0.0000018646, -0.0000018668,0.0000018665,0.0000018641,0.0000018601,0.0000018559, -0.0000018530,0.0000018516,0.0000018518,0.0000018539,0.0000018561, -0.0000018562,0.0000018576,0.0000018591,0.0000018590,0.0000018575, -0.0000018556,0.0000018544,0.0000018549,0.0000018571,0.0000018599, -0.0000018615,0.0000018617,0.0000018611,0.0000018611,0.0000018624, -0.0000018636,0.0000018645,0.0000018635,0.0000018606,0.0000018558, -0.0000018498,0.0000018443,0.0000018412,0.0000018390,0.0000018381, -0.0000018393,0.0000018395,0.0000018371,0.0000018318,0.0000018267, -0.0000018239,0.0000018246,0.0000018268,0.0000018287,0.0000018275, -0.0000018232,0.0000018171,0.0000018097,0.0000018017,0.0000017964, -0.0000017938,0.0000017918,0.0000017895,0.0000017855,0.0000017791, -0.0000017722,0.0000017675,0.0000017651,0.0000017625,0.0000017581, -0.0000017517,0.0000017447,0.0000017388,0.0000017351,0.0000017335, -0.0000017340,0.0000017344,0.0000017332,0.0000017293,0.0000017255, -0.0000017229,0.0000017207,0.0000017198,0.0000017213,0.0000017217, -0.0000017220,0.0000017225,0.0000017228,0.0000017236,0.0000017263, -0.0000017309,0.0000017364,0.0000017422,0.0000017489,0.0000017569, -0.0000017656,0.0000017751,0.0000017856,0.0000017972,0.0000018092, -0.0000018201,0.0000018277,0.0000018313,0.0000018319,0.0000018312, -0.0000018307,0.0000018306,0.0000018310,0.0000018323,0.0000018339, -0.0000018363,0.0000018414,0.0000018488,0.0000018556,0.0000018607, -0.0000018638,0.0000018645,0.0000018639,0.0000018625,0.0000018615, -0.0000018607,0.0000018594,0.0000018570,0.0000018535,0.0000018498, -0.0000018476,0.0000018493,0.0000018551,0.0000018629,0.0000018678, -0.0000018692,0.0000018655,0.0000018558,0.0000018431,0.0000018309, -0.0000018213,0.0000018145,0.0000018093,0.0000018049,0.0000018010, -0.0000017992,0.0000017994,0.0000018001,0.0000017999,0.0000017989, -0.0000017974,0.0000017957,0.0000017940,0.0000017942,0.0000017960, -0.0000017989,0.0000018018,0.0000018054,0.0000018083,0.0000018103, -0.0000018124,0.0000018148,0.0000018173,0.0000018188,0.0000018194, -0.0000018207,0.0000018245,0.0000018313,0.0000018396,0.0000018463, -0.0000018485,0.0000018471,0.0000018430,0.0000018384,0.0000018359, -0.0000018360,0.0000018379,0.0000018406,0.0000018437,0.0000018463, -0.0000018469,0.0000018453,0.0000018418,0.0000018374,0.0000018333, -0.0000018301,0.0000018278,0.0000018267,0.0000018269,0.0000018287, -0.0000018318,0.0000018341,0.0000018344,0.0000018325,0.0000018314, -0.0000018321,0.0000018332,0.0000018350,0.0000018363,0.0000018373, -0.0000018381,0.0000018393,0.0000018421,0.0000018452,0.0000018475, -0.0000018491,0.0000018506,0.0000018524,0.0000018539,0.0000018543, -0.0000018542,0.0000018548,0.0000018578,0.0000018635,0.0000018697, -0.0000018723,0.0000018657,0.0000018517,0.0000018409,0.0000018385, -0.0000018401,0.0000018412,0.0000018415,0.0000018426,0.0000018430, -0.0000018407,0.0000018358,0.0000018305,0.0000018262,0.0000018237, -0.0000018218,0.0000018200,0.0000018170,0.0000018124,0.0000018084, -0.0000018065,0.0000018050,0.0000018001,0.0000017931,0.0000017903, -0.0000017911,0.0000017941,0.0000017993,0.0000018040,0.0000018058, -0.0000018060,0.0000018062,0.0000018072,0.0000018101,0.0000018125, -0.0000018115,0.0000018072,0.0000018050,0.0000018078,0.0000018115, -0.0000018115,0.0000018092,0.0000018051,0.0000018029,0.0000018060, -0.0000018076,0.0000018033,0.0000017991,0.0000017992,0.0000017983, -0.0000017963,0.0000017964,0.0000017998,0.0000018035,0.0000018039, -0.0000017989,0.0000017888,0.0000017782,0.0000017679,0.0000017618, -0.0000017594,0.0000017553,0.0000017565,0.0000017592,0.0000017645, -0.0000017989,0.0000018398,0.0000018523,0.0000018491,0.0000018433, -0.0000018298,0.0000018041,0.0000017801,0.0000017655,0.0000017688, -0.0000017792,0.0000017802,0.0000017808,0.0000017833,0.0000017835, -0.0000017822,0.0000017808,0.0000017756,0.0000017666,0.0000017612, -0.0000017590,0.0000017578,0.0000017596,0.0000017687,0.0000017823, -0.0000017905,0.0000017932,0.0000017916,0.0000017746,0.0000017619, -0.0000017635,0.0000017682,0.0000017762,0.0000017653,0.0000017440, -0.0000017390,0.0000017392,0.0000017431,0.0000017530,0.0000017546, -0.0000017535,0.0000017566,0.0000017567,0.0000017553,0.0000017545, -0.0000017532,0.0000017544,0.0000017652,0.0000017780,0.0000017796, -0.0000017812,0.0000017891,0.0000017958,0.0000017999,0.0000018015, -0.0000018057,0.0000018192,0.0000018368,0.0000018465,0.0000018449, -0.0000018377,0.0000018340,0.0000018302,0.0000018218,0.0000018129, -0.0000018068,0.0000017952,0.0000017764,0.0000017679,0.0000017695, -0.0000017736,0.0000017755,0.0000017758,0.0000017756,0.0000017757, -0.0000017758,0.0000017743,0.0000017707,0.0000017679,0.0000017721, -0.0000017882,0.0000017915,0.0000018041,0.0000018051,0.0000018040, -0.0000018052,0.0000018095,0.0000018158,0.0000018218,0.0000018262, -0.0000018303,0.0000018352,0.0000018404,0.0000018461,0.0000018502, -0.0000018494,0.0000018458,0.0000018480,0.0000018606,0.0000018684, -0.0000018607,0.0000018492,0.0000018452,0.0000018344,0.0000018152, -0.0000018101,0.0000018203,0.0000018358,0.0000018474,0.0000018496, -0.0000018457,0.0000018449,0.0000018450,0.0000018397,0.0000018344, -0.0000018324,0.0000018306,0.0000018293,0.0000018302,0.0000018344, -0.0000018405,0.0000018454,0.0000018477,0.0000018480,0.0000018477, -0.0000018475,0.0000018487,0.0000018513,0.0000018533,0.0000018533, -0.0000018525,0.0000018523,0.0000018539,0.0000018572,0.0000018607, -0.0000018632,0.0000018655,0.0000018680,0.0000018704,0.0000018728, -0.0000018753,0.0000018780,0.0000018805,0.0000018831,0.0000018857, -0.0000018883,0.0000018903,0.0000018915,0.0000018917,0.0000018907, -0.0000018892,0.0000018883,0.0000018883,0.0000018871,0.0000018861, -0.0000018849,0.0000018831,0.0000018811,0.0000018785,0.0000018753, -0.0000018718,0.0000018685,0.0000018660,0.0000018649,0.0000018665, -0.0000018702,0.0000018760,0.0000018818,0.0000018865,0.0000018912, -0.0000019007,0.0000019189,0.0000019441,0.0000019683,0.0000019803, -0.0000019824,0.0000019793,0.0000019730,0.0000019672,0.0000019618, -0.0000019572,0.0000019538,0.0000019514,0.0000019504,0.0000019497, -0.0000019491,0.0000019493,0.0000019521,0.0000019582,0.0000019670, -0.0000019759,0.0000019814,0.0000019827,0.0000019813,0.0000019802, -0.0000019800,0.0000019809,0.0000019826,0.0000019834,0.0000019833, -0.0000019826,0.0000019816,0.0000019803,0.0000019788,0.0000019779, -0.0000019785,0.0000019802,0.0000019819,0.0000019843,0.0000019875, -0.0000019908,0.0000019937,0.0000019963,0.0000019979,0.0000019986, -0.0000019985,0.0000019980,0.0000019966,0.0000019951,0.0000019939, -0.0000019923,0.0000019899,0.0000019865,0.0000019832,0.0000019798, -0.0000019769,0.0000019746,0.0000019733,0.0000019730,0.0000019730, -0.0000019736,0.0000019746,0.0000019755,0.0000019759,0.0000019762, -0.0000019761,0.0000019751,0.0000019728,0.0000019696,0.0000019657, -0.0000019617,0.0000019583,0.0000019555,0.0000019531,0.0000019506, -0.0000019476,0.0000019438,0.0000019391,0.0000019337,0.0000019290, -0.0000019256,0.0000019232,0.0000019220,0.0000019216,0.0000019219, -0.0000019225,0.0000019228,0.0000019220,0.0000019200,0.0000019169, -0.0000019133,0.0000019099,0.0000019070,0.0000019049,0.0000019031, -0.0000019014,0.0000019004,0.0000019004,0.0000019014,0.0000019023, -0.0000019018,0.0000019021,0.0000019021,0.0000019019,0.0000019009, -0.0000018996,0.0000018988,0.0000018986,0.0000018991,0.0000019001, -0.0000019012,0.0000019024,0.0000019036,0.0000019049,0.0000019059, -0.0000019066,0.0000019068,0.0000019068,0.0000019067,0.0000019066, -0.0000019064,0.0000019062,0.0000019051,0.0000019043,0.0000019039, -0.0000019038,0.0000019030,0.0000019029,0.0000019029,0.0000019025, -0.0000019018,0.0000019009,0.0000019000,0.0000018990,0.0000018980, -0.0000018972,0.0000018963,0.0000018958,0.0000018959,0.0000018960, -0.0000018959,0.0000018956,0.0000018948,0.0000018934,0.0000018915, -0.0000018898,0.0000018879,0.0000018858,0.0000018838,0.0000018818, -0.0000018795,0.0000018771,0.0000018749,0.0000018729,0.0000018712, -0.0000018696,0.0000018684,0.0000018674,0.0000018669,0.0000018676, -0.0000018687,0.0000018702,0.0000018716,0.0000018731,0.0000018748, -0.0000018767,0.0000018784,0.0000018794,0.0000018797,0.0000018796, -0.0000018798,0.0000018800,0.0000018805,0.0000018814,0.0000018831, -0.0000018843,0.0000018852,0.0000018859,0.0000018865,0.0000018865, -0.0000018856,0.0000018846,0.0000018839,0.0000018834,0.0000018821, -0.0000018804,0.0000018795,0.0000018796,0.0000018795,0.0000018794, -0.0000018787,0.0000018777,0.0000018759,0.0000018729,0.0000018691, -0.0000018640,0.0000018580,0.0000018512,0.0000018441,0.0000018367, -0.0000018292,0.0000018226,0.0000018168,0.0000018113,0.0000018059, -0.0000018011,0.0000017978,0.0000017963,0.0000017957,0.0000017952, -0.0000017946,0.0000017941,0.0000017936,0.0000017926,0.0000017920, -0.0000017923,0.0000017933,0.0000017944,0.0000017953,0.0000017961, -0.0000017968,0.0000017977,0.0000017992,0.0000018009,0.0000018019, -0.0000018030,0.0000018049,0.0000018080,0.0000018122,0.0000018168, -0.0000018215,0.0000018261,0.0000018302,0.0000018330,0.0000018346, -0.0000018348,0.0000018346,0.0000018350,0.0000018365,0.0000018392, -0.0000018425,0.0000018464,0.0000018502,0.0000018528,0.0000018553, -0.0000018624,0.0000018783,0.0000019006,0.0000019239,0.0000019436, -0.0000019578,0.0000019672,0.0000019735,0.0000019778,0.0000019805, -0.0000019819,0.0000019829,0.0000019848,0.0000019876,0.0000019915, -0.0000019955,0.0000019971,0.0000019949,0.0000019851,0.0000019667, -0.0000019424,0.0000019174,0.0000018976,0.0000018858,0.0000018804, -0.0000018779,0.0000018756,0.0000018746,0.0000018762,0.0000018819, -0.0000018888,0.0000018929,0.0000018935,0.0000018939,0.0000018980, -0.0000019069,0.0000019185,0.0000019314,0.0000019450,0.0000019597, -0.0000019749,0.0000019893,0.0000020008,0.0000020077,0.0000020105, -0.0000020110,0.0000020091,0.0000020078,0.0000020056,0.0000020032, -0.0000019995,0.0000019947,0.0000019893,0.0000019847,0.0000019812, -0.0000019790,0.0000019781,0.0000019779,0.0000019778,0.0000019774, -0.0000019768,0.0000019757,0.0000019743,0.0000019721,0.0000019694, -0.0000019671,0.0000019669,0.0000019686,0.0000019711,0.0000019733, -0.0000019740,0.0000019730,0.0000019702,0.0000019671,0.0000019643, -0.0000019621,0.0000019603,0.0000019579,0.0000019548,0.0000019508, -0.0000019465,0.0000019424,0.0000019391,0.0000019366,0.0000019340, -0.0000019299,0.0000019242,0.0000019174,0.0000019120,0.0000019099, -0.0000019122,0.0000019184,0.0000019244,0.0000019296,0.0000019341, -0.0000019372,0.0000019383,0.0000019385,0.0000019383,0.0000019382, -0.0000019385,0.0000019398,0.0000019425,0.0000019467,0.0000019522, -0.0000019596,0.0000019688,0.0000019799,0.0000019924,0.0000020030, -0.0000020113,0.0000020180,0.0000020241,0.0000020289,0.0000020322, -0.0000020340,0.0000020337,0.0000020320,0.0000020292,0.0000020253, -0.0000020185,0.0000020087,0.0000019982,0.0000019877,0.0000019768, -0.0000019667,0.0000019598,0.0000019580,0.0000019585,0.0000019592, -0.0000019578,0.0000019520,0.0000019411,0.0000019283,0.0000019187, -0.0000019151,0.0000019159,0.0000019183,0.0000019199,0.0000019210, -0.0000019225,0.0000019238,0.0000019249,0.0000019260,0.0000019265, -0.0000019281,0.0000019312,0.0000019350,0.0000019391,0.0000019419, -0.0000019436,0.0000019434,0.0000019431,0.0000019416,0.0000019396, -0.0000019374,0.0000019353,0.0000019339,0.0000019333,0.0000019326, -0.0000019309,0.0000019294,0.0000019291,0.0000019298,0.0000019315, -0.0000019341,0.0000019362,0.0000019368,0.0000019357,0.0000019326, -0.0000019285,0.0000019243,0.0000019202,0.0000019174,0.0000019160, -0.0000019151,0.0000019149,0.0000019153,0.0000019156,0.0000019158, -0.0000019157,0.0000019150,0.0000019142,0.0000019138,0.0000019143, -0.0000019159,0.0000019180,0.0000019207,0.0000019243,0.0000019286, -0.0000019327,0.0000019363,0.0000019394,0.0000019417,0.0000019435, -0.0000019451,0.0000019465,0.0000019476,0.0000019491,0.0000019514, -0.0000019541,0.0000019564,0.0000019579,0.0000019586,0.0000019591, -0.0000019596,0.0000019608,0.0000019622,0.0000019625,0.0000019616, -0.0000019596,0.0000019566,0.0000019531,0.0000019519,0.0000019528, -0.0000019539,0.0000019544,0.0000019543,0.0000019530,0.0000019505, -0.0000019477,0.0000019448,0.0000019414,0.0000019381,0.0000019365, -0.0000019358,0.0000019352,0.0000019344,0.0000019332,0.0000019313, -0.0000019282,0.0000019243,0.0000019208,0.0000019180,0.0000019149, -0.0000019118,0.0000019103,0.0000019111,0.0000019134,0.0000019159, -0.0000019189,0.0000019230,0.0000019270,0.0000019298,0.0000019320, -0.0000019342,0.0000019362,0.0000019374,0.0000019379,0.0000019369, -0.0000019348,0.0000019323,0.0000019289,0.0000019239,0.0000019177, -0.0000019111,0.0000019050,0.0000019003,0.0000018962,0.0000018939, -0.0000018924,0.0000018927,0.0000018944,0.0000018962,0.0000018974, -0.0000018976,0.0000018980,0.0000018998,0.0000019027,0.0000019059, -0.0000019094,0.0000019122,0.0000019142,0.0000019156,0.0000019162, -0.0000019156,0.0000019137,0.0000019141,0.0000019156,0.0000019175, -0.0000019193,0.0000019206,0.0000019201,0.0000019184,0.0000019163, -0.0000019146,0.0000019141,0.0000019154,0.0000019174,0.0000019178, -0.0000019148,0.0000019086,0.0000019007,0.0000018931,0.0000018869, -0.0000018844,0.0000018833,0.0000018832,0.0000018837,0.0000018828, -0.0000018782,0.0000018697,0.0000018596,0.0000018510,0.0000018467, -0.0000018467,0.0000018504,0.0000018571,0.0000018638,0.0000018696, -0.0000018735,0.0000018759,0.0000018778,0.0000018788,0.0000018802, -0.0000018825,0.0000018864,0.0000018927,0.0000018997,0.0000019042, -0.0000019074,0.0000019073,0.0000019054,0.0000019015,0.0000018964, -0.0000018892,0.0000018812,0.0000018741,0.0000018674,0.0000018630, -0.0000018615,0.0000018624,0.0000018649,0.0000018693,0.0000018729, -0.0000018749,0.0000018755,0.0000018740,0.0000018715,0.0000018688, -0.0000018673,0.0000018669,0.0000018674,0.0000018661,0.0000018641, -0.0000018635,0.0000018621,0.0000018590,0.0000018561,0.0000018536, -0.0000018531,0.0000018543,0.0000018580,0.0000018624,0.0000018665, -0.0000018689,0.0000018696,0.0000018697,0.0000018698,0.0000018697, -0.0000018691,0.0000018682,0.0000018659,0.0000018612,0.0000018545, -0.0000018472,0.0000018410,0.0000018368,0.0000018366,0.0000018389, -0.0000018403,0.0000018388,0.0000018344,0.0000018290,0.0000018256, -0.0000018254,0.0000018276,0.0000018301,0.0000018313,0.0000018295, -0.0000018243,0.0000018164,0.0000018080,0.0000018029,0.0000017988, -0.0000017951,0.0000017912,0.0000017860,0.0000017803,0.0000017751, -0.0000017721,0.0000017700,0.0000017672,0.0000017631,0.0000017583, -0.0000017534,0.0000017495,0.0000017463,0.0000017445,0.0000017428, -0.0000017403,0.0000017364,0.0000017321,0.0000017290,0.0000017273, -0.0000017263,0.0000017252,0.0000017244,0.0000017237,0.0000017226, -0.0000017210,0.0000017199,0.0000017187,0.0000017192,0.0000017199, -0.0000017211,0.0000017235,0.0000017274,0.0000017318,0.0000017357, -0.0000017393,0.0000017437,0.0000017500,0.0000017580,0.0000017665, -0.0000017735,0.0000017780,0.0000017799,0.0000017804,0.0000017807, -0.0000017819,0.0000017841,0.0000017870,0.0000017903,0.0000017949, -0.0000018034,0.0000018145,0.0000018253,0.0000018340,0.0000018397, -0.0000018406,0.0000018384,0.0000018331,0.0000018272,0.0000018227, -0.0000018195,0.0000018159,0.0000018111,0.0000018055,0.0000018033, -0.0000018071,0.0000018179,0.0000018342,0.0000018521,0.0000018635, -0.0000018642,0.0000018607,0.0000018534,0.0000018447,0.0000018358, -0.0000018269,0.0000018186,0.0000018102,0.0000018037,0.0000018004, -0.0000018006,0.0000018017,0.0000018022,0.0000018019,0.0000018009, -0.0000018000,0.0000017999,0.0000018010,0.0000018034,0.0000018062, -0.0000018096,0.0000018121,0.0000018140,0.0000018166,0.0000018201, -0.0000018237,0.0000018265,0.0000018283,0.0000018294,0.0000018313, -0.0000018358,0.0000018426,0.0000018495,0.0000018529,0.0000018523, -0.0000018483,0.0000018435,0.0000018405,0.0000018400,0.0000018408, -0.0000018428,0.0000018454,0.0000018479,0.0000018486,0.0000018473, -0.0000018438,0.0000018391,0.0000018349,0.0000018314,0.0000018285, -0.0000018270,0.0000018268,0.0000018274,0.0000018295,0.0000018330, -0.0000018362,0.0000018379,0.0000018370,0.0000018351,0.0000018338, -0.0000018332,0.0000018312,0.0000018294,0.0000018281,0.0000018288, -0.0000018318,0.0000018356,0.0000018387,0.0000018413,0.0000018438, -0.0000018463,0.0000018482,0.0000018493,0.0000018499,0.0000018510, -0.0000018524,0.0000018546,0.0000018601,0.0000018670,0.0000018662, -0.0000018562,0.0000018416,0.0000018343,0.0000018344,0.0000018370, -0.0000018394,0.0000018400,0.0000018390,0.0000018353,0.0000018303, -0.0000018262,0.0000018236,0.0000018217,0.0000018199,0.0000018174, -0.0000018139,0.0000018104,0.0000018093,0.0000018089,0.0000018064, -0.0000018024,0.0000018015,0.0000018030,0.0000018045,0.0000018060, -0.0000018069,0.0000018061,0.0000018056,0.0000018069,0.0000018096, -0.0000018128,0.0000018146,0.0000018129,0.0000018081,0.0000018055, -0.0000018088,0.0000018136,0.0000018139,0.0000018107,0.0000018062, -0.0000018026,0.0000018031,0.0000018042,0.0000018009,0.0000017968, -0.0000017979,0.0000018001,0.0000017996,0.0000017975,0.0000017979, -0.0000018000,0.0000018017,0.0000018015,0.0000017956,0.0000017849, -0.0000017738,0.0000017642,0.0000017598,0.0000017584,0.0000017584, -0.0000017600,0.0000017595,0.0000017785,0.0000018224,0.0000018500, -0.0000018519,0.0000018455,0.0000018389,0.0000018241,0.0000018001, -0.0000017782,0.0000017638,0.0000017664,0.0000017780,0.0000017788, -0.0000017772,0.0000017778,0.0000017780,0.0000017761,0.0000017709, -0.0000017643,0.0000017609,0.0000017593,0.0000017571,0.0000017551, -0.0000017584,0.0000017714,0.0000017838,0.0000017904,0.0000017928, -0.0000017882,0.0000017678,0.0000017615,0.0000017649,0.0000017715, -0.0000017750,0.0000017559,0.0000017406,0.0000017406,0.0000017400, -0.0000017459,0.0000017525,0.0000017521,0.0000017535,0.0000017548, -0.0000017539,0.0000017539,0.0000017537,0.0000017530,0.0000017565, -0.0000017702,0.0000017785,0.0000017782,0.0000017829,0.0000017900, -0.0000017944,0.0000017977,0.0000018048,0.0000018197,0.0000018360, -0.0000018448,0.0000018445,0.0000018387,0.0000018354,0.0000018311, -0.0000018227,0.0000018145,0.0000018053,0.0000017876,0.0000017701, -0.0000017676,0.0000017721,0.0000017745,0.0000017743,0.0000017729, -0.0000017714,0.0000017706,0.0000017709,0.0000017722,0.0000017720, -0.0000017690,0.0000017661,0.0000017730,0.0000017766,0.0000017943, -0.0000018023,0.0000018024,0.0000018015,0.0000018035,0.0000018084, -0.0000018146,0.0000018196,0.0000018237,0.0000018282,0.0000018328, -0.0000018385,0.0000018461,0.0000018512,0.0000018502,0.0000018466, -0.0000018523,0.0000018647,0.0000018654,0.0000018545,0.0000018470, -0.0000018403,0.0000018216,0.0000018100,0.0000018147,0.0000018292, -0.0000018419,0.0000018471,0.0000018452,0.0000018431,0.0000018443, -0.0000018419,0.0000018364,0.0000018337,0.0000018324,0.0000018310, -0.0000018307,0.0000018316,0.0000018337,0.0000018358,0.0000018369, -0.0000018374,0.0000018377,0.0000018386,0.0000018416,0.0000018465, -0.0000018505,0.0000018514,0.0000018505,0.0000018502,0.0000018513, -0.0000018543,0.0000018588,0.0000018628,0.0000018651,0.0000018664, -0.0000018675,0.0000018689,0.0000018708,0.0000018730,0.0000018749, -0.0000018769,0.0000018787,0.0000018805,0.0000018826,0.0000018852, -0.0000018879,0.0000018899,0.0000018906,0.0000018902,0.0000018893, -0.0000018875,0.0000018847,0.0000018806,0.0000018757,0.0000018705, -0.0000018660,0.0000018625,0.0000018600,0.0000018590,0.0000018598, -0.0000018631,0.0000018686,0.0000018756,0.0000018821,0.0000018872, -0.0000018911,0.0000018951,0.0000019029,0.0000019136,0.0000019268, -0.0000019391,0.0000019483,0.0000019535,0.0000019552,0.0000019543, -0.0000019521,0.0000019498,0.0000019480,0.0000019473,0.0000019470, -0.0000019476,0.0000019477,0.0000019477,0.0000019476,0.0000019471, -0.0000019478,0.0000019531,0.0000019632,0.0000019734,0.0000019786, -0.0000019795,0.0000019793,0.0000019797,0.0000019808,0.0000019813, -0.0000019813,0.0000019814,0.0000019815,0.0000019812,0.0000019805, -0.0000019793,0.0000019792,0.0000019800,0.0000019812,0.0000019826, -0.0000019843,0.0000019861,0.0000019876,0.0000019895,0.0000019919, -0.0000019945,0.0000019968,0.0000019977,0.0000019972,0.0000019958, -0.0000019940,0.0000019922,0.0000019902,0.0000019870,0.0000019822, -0.0000019760,0.0000019693,0.0000019628,0.0000019579,0.0000019554, -0.0000019557,0.0000019572,0.0000019592,0.0000019609,0.0000019619, -0.0000019623,0.0000019621,0.0000019611,0.0000019595,0.0000019576, -0.0000019560,0.0000019551,0.0000019546,0.0000019539,0.0000019522, -0.0000019496,0.0000019462,0.0000019420,0.0000019376,0.0000019333, -0.0000019300,0.0000019278,0.0000019263,0.0000019252,0.0000019245, -0.0000019246,0.0000019253,0.0000019266,0.0000019280,0.0000019294, -0.0000019299,0.0000019302,0.0000019292,0.0000019275,0.0000019253, -0.0000019223,0.0000019188,0.0000019153,0.0000019122,0.0000019091, -0.0000019058,0.0000019031,0.0000019011,0.0000018998,0.0000018992, -0.0000018985,0.0000018980,0.0000018980,0.0000018986,0.0000018994, -0.0000019003,0.0000019013,0.0000019023,0.0000019029,0.0000019035, -0.0000019038,0.0000019041,0.0000019043,0.0000019044,0.0000019045, -0.0000019050,0.0000019054,0.0000019054,0.0000019053,0.0000019055, -0.0000019056,0.0000019059,0.0000019058,0.0000019063,0.0000019071, -0.0000019077,0.0000019087,0.0000019097,0.0000019109,0.0000019123, -0.0000019140,0.0000019156,0.0000019177,0.0000019202,0.0000019229, -0.0000019256,0.0000019283,0.0000019309,0.0000019329,0.0000019340, -0.0000019346,0.0000019349,0.0000019343,0.0000019331,0.0000019317, -0.0000019299,0.0000019276,0.0000019249,0.0000019215,0.0000019178, -0.0000019140,0.0000019103,0.0000019066,0.0000019031,0.0000019000, -0.0000018980,0.0000018965,0.0000018952,0.0000018943,0.0000018934, -0.0000018928,0.0000018925,0.0000018919,0.0000018906,0.0000018888, -0.0000018867,0.0000018852,0.0000018838,0.0000018831,0.0000018829, -0.0000018826,0.0000018822,0.0000018818,0.0000018818,0.0000018822, -0.0000018819,0.0000018807,0.0000018800,0.0000018783,0.0000018781, -0.0000018781,0.0000018780,0.0000018783,0.0000018787,0.0000018797, -0.0000018802,0.0000018801,0.0000018800,0.0000018797,0.0000018787, -0.0000018778,0.0000018769,0.0000018761,0.0000018735,0.0000018701, -0.0000018657,0.0000018604,0.0000018547,0.0000018487,0.0000018423, -0.0000018355,0.0000018286,0.0000018224,0.0000018180,0.0000018149, -0.0000018119,0.0000018093,0.0000018076,0.0000018062,0.0000018050, -0.0000018047,0.0000018056,0.0000018074,0.0000018096,0.0000018114, -0.0000018131,0.0000018151,0.0000018173,0.0000018198,0.0000018223, -0.0000018245,0.0000018270,0.0000018298,0.0000018328,0.0000018353, -0.0000018366,0.0000018371,0.0000018365,0.0000018349,0.0000018337, -0.0000018318,0.0000018311,0.0000018318,0.0000018346,0.0000018381, -0.0000018410,0.0000018438,0.0000018479,0.0000018559,0.0000018715, -0.0000018950,0.0000019225,0.0000019478,0.0000019656,0.0000019754, -0.0000019801,0.0000019820,0.0000019827,0.0000019830,0.0000019825, -0.0000019814,0.0000019798,0.0000019797,0.0000019814,0.0000019860, -0.0000019925,0.0000019973,0.0000019991,0.0000019975,0.0000019898, -0.0000019739,0.0000019499,0.0000019238,0.0000019031,0.0000018910, -0.0000018845,0.0000018803,0.0000018790,0.0000018816,0.0000018881, -0.0000018944,0.0000018976,0.0000018986,0.0000019019,0.0000019101, -0.0000019213,0.0000019331,0.0000019468,0.0000019626,0.0000019802, -0.0000019965,0.0000020078,0.0000020140,0.0000020155,0.0000020127, -0.0000020106,0.0000020073,0.0000020028,0.0000019974,0.0000019915, -0.0000019851,0.0000019791,0.0000019745,0.0000019714,0.0000019698, -0.0000019694,0.0000019697,0.0000019704,0.0000019707,0.0000019699, -0.0000019687,0.0000019673,0.0000019656,0.0000019633,0.0000019606, -0.0000019578,0.0000019566,0.0000019581,0.0000019615,0.0000019648, -0.0000019667,0.0000019667,0.0000019656,0.0000019640,0.0000019620, -0.0000019594,0.0000019563,0.0000019524,0.0000019479,0.0000019437, -0.0000019401,0.0000019374,0.0000019358,0.0000019345,0.0000019313, -0.0000019252,0.0000019198,0.0000019165,0.0000019171,0.0000019199, -0.0000019244,0.0000019298,0.0000019354,0.0000019400,0.0000019441, -0.0000019475,0.0000019496,0.0000019507,0.0000019517,0.0000019533, -0.0000019562,0.0000019609,0.0000019673,0.0000019755,0.0000019851, -0.0000019942,0.0000020025,0.0000020115,0.0000020198,0.0000020239, -0.0000020273,0.0000020296,0.0000020314,0.0000020335,0.0000020352, -0.0000020363,0.0000020370,0.0000020368,0.0000020358,0.0000020353, -0.0000020337,0.0000020266,0.0000020153,0.0000020035,0.0000019922, -0.0000019807,0.0000019688,0.0000019601,0.0000019570,0.0000019574, -0.0000019579,0.0000019567,0.0000019535,0.0000019461,0.0000019362, -0.0000019275,0.0000019230,0.0000019214,0.0000019213,0.0000019218, -0.0000019227,0.0000019241,0.0000019259,0.0000019284,0.0000019316, -0.0000019358,0.0000019404,0.0000019434,0.0000019452,0.0000019453, -0.0000019445,0.0000019434,0.0000019428,0.0000019434,0.0000019446, -0.0000019454,0.0000019448,0.0000019429,0.0000019408,0.0000019392, -0.0000019379,0.0000019376,0.0000019381,0.0000019394,0.0000019410, -0.0000019426,0.0000019440,0.0000019443,0.0000019435,0.0000019416, -0.0000019391,0.0000019358,0.0000019316,0.0000019280,0.0000019259, -0.0000019246,0.0000019243,0.0000019246,0.0000019255,0.0000019264, -0.0000019264,0.0000019255,0.0000019242,0.0000019228,0.0000019216, -0.0000019220,0.0000019228,0.0000019246,0.0000019275,0.0000019313, -0.0000019351,0.0000019390,0.0000019425,0.0000019449,0.0000019469, -0.0000019482,0.0000019485,0.0000019489,0.0000019505,0.0000019534, -0.0000019567,0.0000019589,0.0000019597,0.0000019597,0.0000019593, -0.0000019592,0.0000019602,0.0000019618,0.0000019627,0.0000019624, -0.0000019610,0.0000019584,0.0000019553,0.0000019532,0.0000019525, -0.0000019526,0.0000019530,0.0000019530,0.0000019521,0.0000019503, -0.0000019483,0.0000019466,0.0000019452,0.0000019442,0.0000019438, -0.0000019436,0.0000019432,0.0000019425,0.0000019410,0.0000019388, -0.0000019360,0.0000019333,0.0000019305,0.0000019270,0.0000019226, -0.0000019186,0.0000019168,0.0000019171,0.0000019181,0.0000019196, -0.0000019222,0.0000019250,0.0000019268,0.0000019283,0.0000019298, -0.0000019313,0.0000019330,0.0000019350,0.0000019368,0.0000019377, -0.0000019383,0.0000019386,0.0000019377,0.0000019348,0.0000019302, -0.0000019240,0.0000019172,0.0000019107,0.0000019043,0.0000018985, -0.0000018943,0.0000018929,0.0000018940,0.0000018954,0.0000018964, -0.0000018966,0.0000018966,0.0000018976,0.0000018997,0.0000019024, -0.0000019055,0.0000019085,0.0000019111,0.0000019131,0.0000019138, -0.0000019136,0.0000019115,0.0000019108,0.0000019125,0.0000019151, -0.0000019173,0.0000019188,0.0000019189,0.0000019181,0.0000019166, -0.0000019155,0.0000019156,0.0000019179,0.0000019212,0.0000019241, -0.0000019248,0.0000019216,0.0000019156,0.0000019079,0.0000019000, -0.0000018943,0.0000018902,0.0000018882,0.0000018874,0.0000018864, -0.0000018838,0.0000018795,0.0000018732,0.0000018654,0.0000018573, -0.0000018510,0.0000018502,0.0000018525,0.0000018575,0.0000018627, -0.0000018658,0.0000018672,0.0000018685,0.0000018697,0.0000018715, -0.0000018740,0.0000018788,0.0000018868,0.0000018955,0.0000019030, -0.0000019079,0.0000019087,0.0000019083,0.0000019064,0.0000019035, -0.0000018989,0.0000018931,0.0000018876,0.0000018817,0.0000018766, -0.0000018721,0.0000018691,0.0000018693,0.0000018718,0.0000018745, -0.0000018771,0.0000018794,0.0000018799,0.0000018787,0.0000018769, -0.0000018754,0.0000018754,0.0000018748,0.0000018725,0.0000018703, -0.0000018683,0.0000018649,0.0000018604,0.0000018563,0.0000018544, -0.0000018538,0.0000018555,0.0000018596,0.0000018653,0.0000018714, -0.0000018772,0.0000018804,0.0000018816,0.0000018812,0.0000018794, -0.0000018773,0.0000018760,0.0000018736,0.0000018693,0.0000018628, -0.0000018548,0.0000018472,0.0000018415,0.0000018403,0.0000018411, -0.0000018416,0.0000018401,0.0000018363,0.0000018314,0.0000018275, -0.0000018268,0.0000018291,0.0000018323,0.0000018350,0.0000018349, -0.0000018312,0.0000018239,0.0000018164,0.0000018097,0.0000018035, -0.0000017978,0.0000017918,0.0000017857,0.0000017811,0.0000017783, -0.0000017764,0.0000017736,0.0000017697,0.0000017654,0.0000017624, -0.0000017606,0.0000017595,0.0000017588,0.0000017570,0.0000017529, -0.0000017470,0.0000017404,0.0000017355,0.0000017335,0.0000017335, -0.0000017331,0.0000017317,0.0000017300,0.0000017284,0.0000017266, -0.0000017240,0.0000017214,0.0000017197,0.0000017191,0.0000017184, -0.0000017181,0.0000017194,0.0000017223,0.0000017253,0.0000017275, -0.0000017282,0.0000017276,0.0000017277,0.0000017293,0.0000017323, -0.0000017355,0.0000017373,0.0000017372,0.0000017362,0.0000017362, -0.0000017378,0.0000017401,0.0000017431,0.0000017469,0.0000017529, -0.0000017626,0.0000017745,0.0000017857,0.0000017939,0.0000017974, -0.0000017953,0.0000017883,0.0000017792,0.0000017720,0.0000017689, -0.0000017682,0.0000017666,0.0000017627,0.0000017588,0.0000017606, -0.0000017687,0.0000017828,0.0000018042,0.0000018285,0.0000018480, -0.0000018593,0.0000018592,0.0000018580,0.0000018538,0.0000018472, -0.0000018394,0.0000018298,0.0000018193,0.0000018095,0.0000018037, -0.0000018019,0.0000018025,0.0000018030,0.0000018029,0.0000018028, -0.0000018035,0.0000018053,0.0000018080,0.0000018114,0.0000018150, -0.0000018177,0.0000018197,0.0000018223,0.0000018258,0.0000018293, -0.0000018328,0.0000018364,0.0000018389,0.0000018404,0.0000018425, -0.0000018460,0.0000018507,0.0000018538,0.0000018536,0.0000018515, -0.0000018483,0.0000018461,0.0000018450,0.0000018446,0.0000018452, -0.0000018465,0.0000018479,0.0000018481,0.0000018470,0.0000018448, -0.0000018414,0.0000018373,0.0000018330,0.0000018293,0.0000018271, -0.0000018265,0.0000018266,0.0000018281,0.0000018314,0.0000018361, -0.0000018400,0.0000018419,0.0000018407,0.0000018384,0.0000018350, -0.0000018308,0.0000018264,0.0000018238,0.0000018224,0.0000018236, -0.0000018255,0.0000018281,0.0000018314,0.0000018349,0.0000018381, -0.0000018407,0.0000018430,0.0000018458,0.0000018485,0.0000018495, -0.0000018492,0.0000018515,0.0000018592,0.0000018649,0.0000018604, -0.0000018451,0.0000018321,0.0000018294,0.0000018328,0.0000018356, -0.0000018357,0.0000018328,0.0000018277,0.0000018231,0.0000018204, -0.0000018186,0.0000018165,0.0000018145,0.0000018123,0.0000018103, -0.0000018095,0.0000018103,0.0000018106,0.0000018103,0.0000018118, -0.0000018137,0.0000018135,0.0000018115,0.0000018094,0.0000018068, -0.0000018064,0.0000018086,0.0000018120,0.0000018145,0.0000018155, -0.0000018135,0.0000018084,0.0000018060,0.0000018095,0.0000018150, -0.0000018154,0.0000018117,0.0000018068,0.0000018028,0.0000018016, -0.0000018015,0.0000017984,0.0000017948,0.0000017963,0.0000018011, -0.0000018035,0.0000018017,0.0000017989,0.0000017980,0.0000017984, -0.0000017993,0.0000017986,0.0000017919,0.0000017804,0.0000017695, -0.0000017615,0.0000017588,0.0000017586,0.0000017600,0.0000017579, -0.0000017654,0.0000018024,0.0000018409,0.0000018528,0.0000018487, -0.0000018402,0.0000018329,0.0000018180,0.0000017969,0.0000017765, -0.0000017622,0.0000017639,0.0000017749,0.0000017788,0.0000017757, -0.0000017729,0.0000017707,0.0000017678,0.0000017645,0.0000017625, -0.0000017618,0.0000017588,0.0000017540,0.0000017531,0.0000017609, -0.0000017747,0.0000017845,0.0000017897,0.0000017919,0.0000017824, -0.0000017622,0.0000017625,0.0000017663,0.0000017745,0.0000017690, -0.0000017474,0.0000017418,0.0000017414,0.0000017412,0.0000017480, -0.0000017510,0.0000017515,0.0000017532,0.0000017524,0.0000017524, -0.0000017534,0.0000017533,0.0000017532,0.0000017599,0.0000017736, -0.0000017783,0.0000017804,0.0000017874,0.0000017910,0.0000017951, -0.0000018043,0.0000018195,0.0000018340,0.0000018423,0.0000018435, -0.0000018396,0.0000018366,0.0000018319,0.0000018239,0.0000018163, -0.0000018046,0.0000017835,0.0000017688,0.0000017691,0.0000017722, -0.0000017733,0.0000017731,0.0000017716,0.0000017695,0.0000017675, -0.0000017666,0.0000017670,0.0000017687,0.0000017692,0.0000017661, -0.0000017651,0.0000017657,0.0000017802,0.0000017966,0.0000018016, -0.0000018001,0.0000018001,0.0000018029,0.0000018078,0.0000018131, -0.0000018178,0.0000018226,0.0000018268,0.0000018307,0.0000018372, -0.0000018466,0.0000018522,0.0000018504,0.0000018490,0.0000018571, -0.0000018653,0.0000018610,0.0000018504,0.0000018444,0.0000018303, -0.0000018121,0.0000018108,0.0000018226,0.0000018354,0.0000018437, -0.0000018448,0.0000018421,0.0000018426,0.0000018434,0.0000018399, -0.0000018363,0.0000018350,0.0000018335,0.0000018319,0.0000018317, -0.0000018320,0.0000018323,0.0000018322,0.0000018321,0.0000018321, -0.0000018331,0.0000018366,0.0000018425,0.0000018477,0.0000018490, -0.0000018481,0.0000018482,0.0000018498,0.0000018520,0.0000018557, -0.0000018606,0.0000018646,0.0000018664,0.0000018669,0.0000018670, -0.0000018673,0.0000018682,0.0000018695,0.0000018713,0.0000018736, -0.0000018757,0.0000018774,0.0000018796,0.0000018832,0.0000018874, -0.0000018900,0.0000018905,0.0000018894,0.0000018859,0.0000018798, -0.0000018725,0.0000018654,0.0000018601,0.0000018568,0.0000018555, -0.0000018553,0.0000018557,0.0000018573,0.0000018607,0.0000018655, -0.0000018707,0.0000018758,0.0000018806,0.0000018851,0.0000018893, -0.0000018936,0.0000018982,0.0000019027,0.0000019066,0.0000019096, -0.0000019111,0.0000019110,0.0000019093,0.0000019074,0.0000019064, -0.0000019064,0.0000019085,0.0000019127,0.0000019182,0.0000019247, -0.0000019316,0.0000019373,0.0000019408,0.0000019419,0.0000019440, -0.0000019525,0.0000019648,0.0000019732,0.0000019753,0.0000019746, -0.0000019737,0.0000019733,0.0000019742,0.0000019761,0.0000019775, -0.0000019778,0.0000019774,0.0000019769,0.0000019767,0.0000019778, -0.0000019794,0.0000019811,0.0000019829,0.0000019847,0.0000019864, -0.0000019875,0.0000019878,0.0000019882,0.0000019898,0.0000019922, -0.0000019945,0.0000019955,0.0000019948,0.0000019928,0.0000019902, -0.0000019871,0.0000019830,0.0000019772,0.0000019688,0.0000019585, -0.0000019490,0.0000019413,0.0000019378,0.0000019370,0.0000019387, -0.0000019406,0.0000019422,0.0000019440,0.0000019460,0.0000019481, -0.0000019502,0.0000019518,0.0000019528,0.0000019532,0.0000019535, -0.0000019530,0.0000019514,0.0000019486,0.0000019453,0.0000019419, -0.0000019388,0.0000019364,0.0000019344,0.0000019324,0.0000019304, -0.0000019284,0.0000019260,0.0000019245,0.0000019243,0.0000019252, -0.0000019267,0.0000019282,0.0000019292,0.0000019300,0.0000019310, -0.0000019318,0.0000019320,0.0000019316,0.0000019307,0.0000019299, -0.0000019288,0.0000019272,0.0000019249,0.0000019223,0.0000019199, -0.0000019174,0.0000019149,0.0000019126,0.0000019106,0.0000019091, -0.0000019084,0.0000019085,0.0000019090,0.0000019097,0.0000019103, -0.0000019110,0.0000019124,0.0000019139,0.0000019157,0.0000019175, -0.0000019192,0.0000019211,0.0000019235,0.0000019262,0.0000019290, -0.0000019320,0.0000019347,0.0000019372,0.0000019399,0.0000019425, -0.0000019450,0.0000019475,0.0000019496,0.0000019528,0.0000019569, -0.0000019613,0.0000019658,0.0000019700,0.0000019736,0.0000019771, -0.0000019806,0.0000019840,0.0000019873,0.0000019881,0.0000019877, -0.0000019891,0.0000019902,0.0000019908,0.0000019910,0.0000019908, -0.0000019902,0.0000019895,0.0000019889,0.0000019879,0.0000019873, -0.0000019881,0.0000019882,0.0000019860,0.0000019836,0.0000019810, -0.0000019784,0.0000019756,0.0000019733,0.0000019710,0.0000019684, -0.0000019654,0.0000019619,0.0000019585,0.0000019552,0.0000019513, -0.0000019467,0.0000019414,0.0000019356,0.0000019303,0.0000019253, -0.0000019207,0.0000019159,0.0000019111,0.0000019064,0.0000019021, -0.0000018982,0.0000018942,0.0000018902,0.0000018867,0.0000018834, -0.0000018801,0.0000018773,0.0000018756,0.0000018754,0.0000018749, -0.0000018750,0.0000018753,0.0000018756,0.0000018761,0.0000018771, -0.0000018775,0.0000018771,0.0000018768,0.0000018764,0.0000018758, -0.0000018752,0.0000018747,0.0000018739,0.0000018727,0.0000018716, -0.0000018686,0.0000018650,0.0000018609,0.0000018558,0.0000018503, -0.0000018455,0.0000018415,0.0000018377,0.0000018344,0.0000018324, -0.0000018311,0.0000018301,0.0000018300,0.0000018309,0.0000018326, -0.0000018346,0.0000018365,0.0000018381,0.0000018399,0.0000018415, -0.0000018428,0.0000018440,0.0000018453,0.0000018454,0.0000018439, -0.0000018427,0.0000018405,0.0000018382,0.0000018353,0.0000018327, -0.0000018310,0.0000018304,0.0000018308,0.0000018322,0.0000018342, -0.0000018364,0.0000018390,0.0000018442,0.0000018576,0.0000018806, -0.0000019098,0.0000019390,0.0000019622,0.0000019766,0.0000019836, -0.0000019861,0.0000019870,0.0000019874,0.0000019876,0.0000019871, -0.0000019847,0.0000019799,0.0000019747,0.0000019714,0.0000019712, -0.0000019737,0.0000019805,0.0000019902,0.0000019975,0.0000019992, -0.0000019981,0.0000019916,0.0000019755,0.0000019503,0.0000019238, -0.0000019046,0.0000018934,0.0000018872,0.0000018858,0.0000018894, -0.0000018959,0.0000019007,0.0000019028,0.0000019063,0.0000019141, -0.0000019250,0.0000019358,0.0000019479,0.0000019643,0.0000019842, -0.0000020022,0.0000020139,0.0000020182,0.0000020168,0.0000020149, -0.0000020104,0.0000020048,0.0000019988,0.0000019922,0.0000019846, -0.0000019776,0.0000019725,0.0000019682,0.0000019656,0.0000019646, -0.0000019643,0.0000019644,0.0000019648,0.0000019653,0.0000019656, -0.0000019652,0.0000019637,0.0000019616,0.0000019590,0.0000019561, -0.0000019530,0.0000019498,0.0000019470,0.0000019469,0.0000019496, -0.0000019533,0.0000019564,0.0000019578,0.0000019576,0.0000019561, -0.0000019540,0.0000019513,0.0000019480,0.0000019444,0.0000019408, -0.0000019381,0.0000019362,0.0000019345,0.0000019321,0.0000019291, -0.0000019267,0.0000019243,0.0000019240,0.0000019273,0.0000019319, -0.0000019360,0.0000019395,0.0000019433,0.0000019482,0.0000019531, -0.0000019577,0.0000019621,0.0000019662,0.0000019702,0.0000019743, -0.0000019791,0.0000019854,0.0000019927,0.0000019993,0.0000020058, -0.0000020117,0.0000020136,0.0000020155,0.0000020181,0.0000020184, -0.0000020169,0.0000020155,0.0000020149,0.0000020160,0.0000020191, -0.0000020231,0.0000020270,0.0000020301,0.0000020317,0.0000020319, -0.0000020331,0.0000020351,0.0000020341,0.0000020275,0.0000020156, -0.0000020035,0.0000019927,0.0000019819,0.0000019699,0.0000019602, -0.0000019562,0.0000019553,0.0000019557,0.0000019553,0.0000019531, -0.0000019499,0.0000019446,0.0000019394,0.0000019355,0.0000019336, -0.0000019332,0.0000019337,0.0000019350,0.0000019367,0.0000019387, -0.0000019399,0.0000019408,0.0000019421,0.0000019437,0.0000019457, -0.0000019476,0.0000019489,0.0000019500,0.0000019512,0.0000019532, -0.0000019548,0.0000019551,0.0000019537,0.0000019511,0.0000019489, -0.0000019474,0.0000019463,0.0000019455,0.0000019457,0.0000019467, -0.0000019478,0.0000019486,0.0000019487,0.0000019484,0.0000019474, -0.0000019451,0.0000019418,0.0000019373,0.0000019323,0.0000019285, -0.0000019265,0.0000019254,0.0000019253,0.0000019263,0.0000019285, -0.0000019308,0.0000019319,0.0000019315,0.0000019299,0.0000019278, -0.0000019260,0.0000019245,0.0000019234,0.0000019235,0.0000019247, -0.0000019270,0.0000019303,0.0000019343,0.0000019374,0.0000019394, -0.0000019416,0.0000019427,0.0000019434,0.0000019460,0.0000019495, -0.0000019539,0.0000019583,0.0000019609,0.0000019624,0.0000019625, -0.0000019614,0.0000019601,0.0000019600,0.0000019609,0.0000019614, -0.0000019608,0.0000019589,0.0000019567,0.0000019548,0.0000019537, -0.0000019539,0.0000019554,0.0000019573,0.0000019588,0.0000019601, -0.0000019609,0.0000019611,0.0000019608,0.0000019603,0.0000019594, -0.0000019581,0.0000019565,0.0000019555,0.0000019547,0.0000019528, -0.0000019496,0.0000019465,0.0000019444,0.0000019420,0.0000019390, -0.0000019358,0.0000019333,0.0000019323,0.0000019324,0.0000019340, -0.0000019363,0.0000019387,0.0000019397,0.0000019395,0.0000019392, -0.0000019392,0.0000019392,0.0000019389,0.0000019389,0.0000019389, -0.0000019390,0.0000019396,0.0000019404,0.0000019404,0.0000019391, -0.0000019367,0.0000019328,0.0000019276,0.0000019218,0.0000019153, -0.0000019085,0.0000019028,0.0000018995,0.0000018985,0.0000018986, -0.0000018986,0.0000018981,0.0000018973,0.0000018978,0.0000018988, -0.0000019007,0.0000019030,0.0000019055,0.0000019086,0.0000019112, -0.0000019120,0.0000019114,0.0000019092,0.0000019070,0.0000019081, -0.0000019108,0.0000019137,0.0000019154,0.0000019160,0.0000019157, -0.0000019149,0.0000019142,0.0000019149,0.0000019175,0.0000019215, -0.0000019263,0.0000019312,0.0000019314,0.0000019285,0.0000019230, -0.0000019155,0.0000019090,0.0000019034,0.0000018993,0.0000018968, -0.0000018943,0.0000018908,0.0000018871,0.0000018831,0.0000018782, -0.0000018713,0.0000018631,0.0000018569,0.0000018543,0.0000018569, -0.0000018599,0.0000018610,0.0000018607,0.0000018609,0.0000018615, -0.0000018627,0.0000018649,0.0000018703,0.0000018787,0.0000018879, -0.0000018963,0.0000019020,0.0000019044,0.0000019044,0.0000019026, -0.0000019013,0.0000018986,0.0000018949,0.0000018925,0.0000018901, -0.0000018867,0.0000018819,0.0000018774,0.0000018757,0.0000018761, -0.0000018774,0.0000018797,0.0000018818,0.0000018826,0.0000018816, -0.0000018797,0.0000018782,0.0000018781,0.0000018773,0.0000018754, -0.0000018740,0.0000018720,0.0000018688,0.0000018653,0.0000018623, -0.0000018604,0.0000018595,0.0000018603,0.0000018633,0.0000018690, -0.0000018761,0.0000018824,0.0000018874,0.0000018901,0.0000018904, -0.0000018886,0.0000018868,0.0000018856,0.0000018830,0.0000018787, -0.0000018727,0.0000018659,0.0000018592,0.0000018541,0.0000018513, -0.0000018495,0.0000018475,0.0000018445,0.0000018402,0.0000018349, -0.0000018305,0.0000018295,0.0000018318,0.0000018354,0.0000018380, -0.0000018389,0.0000018369,0.0000018314,0.0000018244,0.0000018161, -0.0000018080,0.0000018005,0.0000017924,0.0000017858,0.0000017823, -0.0000017816,0.0000017802,0.0000017767,0.0000017713,0.0000017669, -0.0000017652,0.0000017661,0.0000017679,0.0000017697,0.0000017680, -0.0000017624,0.0000017541,0.0000017462,0.0000017415,0.0000017404, -0.0000017408,0.0000017403,0.0000017388,0.0000017368,0.0000017343, -0.0000017313,0.0000017281,0.0000017250,0.0000017223,0.0000017198, -0.0000017180,0.0000017178,0.0000017186,0.0000017209,0.0000017241, -0.0000017261,0.0000017263,0.0000017249,0.0000017235,0.0000017228, -0.0000017228,0.0000017232,0.0000017223,0.0000017192,0.0000017157, -0.0000017141,0.0000017140,0.0000017145,0.0000017165,0.0000017202, -0.0000017258,0.0000017329,0.0000017411,0.0000017482,0.0000017519, -0.0000017509,0.0000017449,0.0000017370,0.0000017305,0.0000017283, -0.0000017298,0.0000017319,0.0000017315,0.0000017294,0.0000017319, -0.0000017382,0.0000017459,0.0000017579,0.0000017757,0.0000017968, -0.0000018188,0.0000018381,0.0000018521,0.0000018547,0.0000018553, -0.0000018527,0.0000018470,0.0000018385,0.0000018273,0.0000018167, -0.0000018087,0.0000018050,0.0000018037,0.0000018033,0.0000018035, -0.0000018049,0.0000018074,0.0000018109,0.0000018151,0.0000018196, -0.0000018230,0.0000018258,0.0000018291,0.0000018325,0.0000018351, -0.0000018380,0.0000018417,0.0000018456,0.0000018483,0.0000018498, -0.0000018507,0.0000018521,0.0000018531,0.0000018526,0.0000018513, -0.0000018498,0.0000018493,0.0000018489,0.0000018482,0.0000018479, -0.0000018480,0.0000018477,0.0000018466,0.0000018454,0.0000018450, -0.0000018435,0.0000018403,0.0000018357,0.0000018310,0.0000018274, -0.0000018256,0.0000018255,0.0000018276,0.0000018309,0.0000018349, -0.0000018395,0.0000018431,0.0000018447,0.0000018439,0.0000018405, -0.0000018352,0.0000018294,0.0000018246,0.0000018217,0.0000018206, -0.0000018200,0.0000018209,0.0000018229,0.0000018255,0.0000018283, -0.0000018321,0.0000018367,0.0000018419,0.0000018457,0.0000018469, -0.0000018460,0.0000018466,0.0000018522,0.0000018612,0.0000018608, -0.0000018485,0.0000018316,0.0000018261,0.0000018289,0.0000018315, -0.0000018305,0.0000018260,0.0000018206,0.0000018174,0.0000018157, -0.0000018136,0.0000018120,0.0000018111,0.0000018102,0.0000018101, -0.0000018118,0.0000018140,0.0000018160,0.0000018186,0.0000018200, -0.0000018182,0.0000018140,0.0000018106,0.0000018078,0.0000018078, -0.0000018101,0.0000018127,0.0000018142,0.0000018149,0.0000018131, -0.0000018085,0.0000018065,0.0000018098,0.0000018150,0.0000018158, -0.0000018119,0.0000018068,0.0000018029,0.0000018011,0.0000018001, -0.0000017968,0.0000017932,0.0000017948,0.0000018014,0.0000018067, -0.0000018070,0.0000018028,0.0000017985,0.0000017968,0.0000017964, -0.0000017970,0.0000017954,0.0000017871,0.0000017759,0.0000017664, -0.0000017600,0.0000017583,0.0000017594,0.0000017573,0.0000017578, -0.0000017846,0.0000018273,0.0000018509,0.0000018520,0.0000018422, -0.0000018329,0.0000018270,0.0000018121,0.0000017938,0.0000017748, -0.0000017607,0.0000017601,0.0000017706,0.0000017770,0.0000017761, -0.0000017725,0.0000017698,0.0000017681,0.0000017672,0.0000017657, -0.0000017615,0.0000017545,0.0000017504,0.0000017538,0.0000017649, -0.0000017772,0.0000017850,0.0000017892,0.0000017897,0.0000017729, -0.0000017609,0.0000017639,0.0000017690,0.0000017751,0.0000017596, -0.0000017434,0.0000017431,0.0000017408,0.0000017433,0.0000017486, -0.0000017503,0.0000017524,0.0000017521,0.0000017513,0.0000017521, -0.0000017534,0.0000017533,0.0000017542,0.0000017635,0.0000017757, -0.0000017794,0.0000017873,0.0000017942,0.0000017965,0.0000018053, -0.0000018186,0.0000018307,0.0000018390,0.0000018419,0.0000018401, -0.0000018376,0.0000018326,0.0000018251,0.0000018180,0.0000018051, -0.0000017828,0.0000017695,0.0000017702,0.0000017722,0.0000017721, -0.0000017713,0.0000017700,0.0000017684,0.0000017666,0.0000017650, -0.0000017643,0.0000017647,0.0000017663,0.0000017665,0.0000017639, -0.0000017617,0.0000017669,0.0000017844,0.0000017977,0.0000017996, -0.0000017988,0.0000017991,0.0000018016,0.0000018065,0.0000018121, -0.0000018176,0.0000018227,0.0000018257,0.0000018289,0.0000018370, -0.0000018477,0.0000018528,0.0000018507,0.0000018514,0.0000018610, -0.0000018646,0.0000018559,0.0000018476,0.0000018379,0.0000018193, -0.0000018099,0.0000018171,0.0000018295,0.0000018392,0.0000018437, -0.0000018424,0.0000018408,0.0000018423,0.0000018428,0.0000018401, -0.0000018381,0.0000018370,0.0000018349,0.0000018327,0.0000018321, -0.0000018322,0.0000018323,0.0000018320,0.0000018315,0.0000018317, -0.0000018346,0.0000018403,0.0000018453,0.0000018464,0.0000018454, -0.0000018461,0.0000018485,0.0000018506,0.0000018526,0.0000018566, -0.0000018617,0.0000018654,0.0000018669,0.0000018667,0.0000018659, -0.0000018651,0.0000018650,0.0000018658,0.0000018681,0.0000018711, -0.0000018740,0.0000018766,0.0000018801,0.0000018841,0.0000018874, -0.0000018890,0.0000018884,0.0000018852,0.0000018798,0.0000018736, -0.0000018682,0.0000018643,0.0000018619,0.0000018606,0.0000018601, -0.0000018604,0.0000018614,0.0000018629,0.0000018651,0.0000018667, -0.0000018681,0.0000018697,0.0000018724,0.0000018752,0.0000018781, -0.0000018810,0.0000018838,0.0000018863,0.0000018882,0.0000018892, -0.0000018892,0.0000018882,0.0000018868,0.0000018853,0.0000018849, -0.0000018853,0.0000018863,0.0000018883,0.0000018927,0.0000019012, -0.0000019127,0.0000019235,0.0000019302,0.0000019347,0.0000019429, -0.0000019558,0.0000019665,0.0000019703,0.0000019700,0.0000019698, -0.0000019714,0.0000019736,0.0000019731,0.0000019695,0.0000019663, -0.0000019654,0.0000019670,0.0000019705,0.0000019746,0.0000019779, -0.0000019799,0.0000019812,0.0000019827,0.0000019847,0.0000019866, -0.0000019876,0.0000019876,0.0000019872,0.0000019880,0.0000019902, -0.0000019927,0.0000019938,0.0000019926,0.0000019898,0.0000019866, -0.0000019835,0.0000019790,0.0000019712,0.0000019608,0.0000019505, -0.0000019429,0.0000019387,0.0000019368,0.0000019360,0.0000019360, -0.0000019355,0.0000019366,0.0000019383,0.0000019402,0.0000019420, -0.0000019437,0.0000019446,0.0000019451,0.0000019446,0.0000019434, -0.0000019417,0.0000019400,0.0000019385,0.0000019379,0.0000019369, -0.0000019358,0.0000019337,0.0000019316,0.0000019295,0.0000019274, -0.0000019260,0.0000019259,0.0000019271,0.0000019291,0.0000019309, -0.0000019323,0.0000019335,0.0000019347,0.0000019364,0.0000019381, -0.0000019394,0.0000019404,0.0000019414,0.0000019423,0.0000019425, -0.0000019422,0.0000019417,0.0000019413,0.0000019409,0.0000019402, -0.0000019398,0.0000019397,0.0000019396,0.0000019399,0.0000019407, -0.0000019419,0.0000019433,0.0000019451,0.0000019475,0.0000019504, -0.0000019534,0.0000019564,0.0000019593,0.0000019621,0.0000019656, -0.0000019697,0.0000019748,0.0000019797,0.0000019844,0.0000019887, -0.0000019925,0.0000019958,0.0000019945,0.0000019964,0.0000019966, -0.0000019955,0.0000019959,0.0000019965,0.0000019962,0.0000019948, -0.0000019921,0.0000019890,0.0000019859,0.0000019833,0.0000019812, -0.0000019801,0.0000019798,0.0000019794,0.0000019792,0.0000019791, -0.0000019788,0.0000019784,0.0000019782,0.0000019782,0.0000019788, -0.0000019797,0.0000019807,0.0000019818,0.0000019831,0.0000019844, -0.0000019855,0.0000019865,0.0000019875,0.0000019888,0.0000019904, -0.0000019926,0.0000019945,0.0000019955,0.0000019964,0.0000019969, -0.0000019982,0.0000019998,0.0000020011,0.0000020019,0.0000020019, -0.0000020015,0.0000019981,0.0000019932,0.0000019873,0.0000019809, -0.0000019743,0.0000019675,0.0000019603,0.0000019523,0.0000019438, -0.0000019347,0.0000019254,0.0000019161,0.0000019067,0.0000018982, -0.0000018911,0.0000018856,0.0000018818,0.0000018793,0.0000018773, -0.0000018752,0.0000018740,0.0000018747,0.0000018746,0.0000018743, -0.0000018748,0.0000018747,0.0000018746,0.0000018746,0.0000018744, -0.0000018736,0.0000018725,0.0000018714,0.0000018702,0.0000018691, -0.0000018676,0.0000018655,0.0000018635,0.0000018607,0.0000018583, -0.0000018558,0.0000018537,0.0000018525,0.0000018516,0.0000018507, -0.0000018505,0.0000018508,0.0000018515,0.0000018525,0.0000018533, -0.0000018537,0.0000018537,0.0000018530,0.0000018509,0.0000018490, -0.0000018481,0.0000018450,0.0000018411,0.0000018377,0.0000018350, -0.0000018328,0.0000018313,0.0000018313,0.0000018318,0.0000018321, -0.0000018325,0.0000018334,0.0000018366,0.0000018464,0.0000018648, -0.0000018909,0.0000019216,0.0000019503,0.0000019711,0.0000019824, -0.0000019870,0.0000019890,0.0000019904,0.0000019920,0.0000019939, -0.0000019944,0.0000019920,0.0000019862,0.0000019784,0.0000019717, -0.0000019683,0.0000019679,0.0000019684,0.0000019709,0.0000019775, -0.0000019884,0.0000019974,0.0000019999,0.0000019988,0.0000019909, -0.0000019719,0.0000019445,0.0000019194,0.0000019032,0.0000018952, -0.0000018944,0.0000018988,0.0000019048,0.0000019083,0.0000019108, -0.0000019177,0.0000019287,0.0000019391,0.0000019500,0.0000019655, -0.0000019861,0.0000020060,0.0000020185,0.0000020222,0.0000020198, -0.0000020154,0.0000020101,0.0000020032,0.0000019957,0.0000019872, -0.0000019795,0.0000019737,0.0000019687,0.0000019653,0.0000019637, -0.0000019622,0.0000019611,0.0000019606,0.0000019603,0.0000019603, -0.0000019604,0.0000019605,0.0000019605,0.0000019598,0.0000019580, -0.0000019555,0.0000019527,0.0000019498,0.0000019466,0.0000019433, -0.0000019412,0.0000019413,0.0000019433,0.0000019458,0.0000019480, -0.0000019487,0.0000019481,0.0000019466,0.0000019447,0.0000019423, -0.0000019395,0.0000019372,0.0000019348,0.0000019320,0.0000019313, -0.0000019297,0.0000019292,0.0000019311,0.0000019355,0.0000019404, -0.0000019449,0.0000019493,0.0000019533,0.0000019570,0.0000019606, -0.0000019650,0.0000019713,0.0000019778,0.0000019845,0.0000019912, -0.0000019976,0.0000020024,0.0000020065,0.0000020110,0.0000020142, -0.0000020140,0.0000020149,0.0000020147,0.0000020116,0.0000020082, -0.0000020049,0.0000020029,0.0000020020,0.0000020018,0.0000020039, -0.0000020067,0.0000020107,0.0000020162,0.0000020207,0.0000020243, -0.0000020260,0.0000020257,0.0000020266,0.0000020301,0.0000020335, -0.0000020324,0.0000020254,0.0000020138,0.0000020024,0.0000019929, -0.0000019833,0.0000019720,0.0000019618,0.0000019555,0.0000019541, -0.0000019539,0.0000019532,0.0000019519,0.0000019496,0.0000019473, -0.0000019447,0.0000019431,0.0000019422,0.0000019413,0.0000019406, -0.0000019403,0.0000019407,0.0000019417,0.0000019437,0.0000019471, -0.0000019511,0.0000019551,0.0000019582,0.0000019602,0.0000019616, -0.0000019622,0.0000019626,0.0000019628,0.0000019627,0.0000019613, -0.0000019585,0.0000019558,0.0000019540,0.0000019528,0.0000019512, -0.0000019509,0.0000019519,0.0000019536,0.0000019552,0.0000019559, -0.0000019558,0.0000019547,0.0000019525,0.0000019495,0.0000019459, -0.0000019425,0.0000019400,0.0000019387,0.0000019383,0.0000019390, -0.0000019406,0.0000019427,0.0000019442,0.0000019441,0.0000019429, -0.0000019403,0.0000019376,0.0000019358,0.0000019329,0.0000019295, -0.0000019273,0.0000019260,0.0000019254,0.0000019270,0.0000019299, -0.0000019328,0.0000019354,0.0000019385,0.0000019409,0.0000019436, -0.0000019482,0.0000019539,0.0000019597,0.0000019646,0.0000019678, -0.0000019700,0.0000019708,0.0000019698,0.0000019675,0.0000019660, -0.0000019660,0.0000019661,0.0000019657,0.0000019652,0.0000019640, -0.0000019625,0.0000019633,0.0000019656,0.0000019681,0.0000019693, -0.0000019695,0.0000019699,0.0000019704,0.0000019699,0.0000019682, -0.0000019662,0.0000019642,0.0000019624,0.0000019608,0.0000019593, -0.0000019578,0.0000019556,0.0000019525,0.0000019497,0.0000019471, -0.0000019442,0.0000019415,0.0000019392,0.0000019375,0.0000019371, -0.0000019382,0.0000019412,0.0000019444,0.0000019468,0.0000019480, -0.0000019487,0.0000019499,0.0000019514,0.0000019521,0.0000019524, -0.0000019524,0.0000019520,0.0000019516,0.0000019508,0.0000019492, -0.0000019468,0.0000019442,0.0000019411,0.0000019372,0.0000019330, -0.0000019285,0.0000019234,0.0000019178,0.0000019128,0.0000019094, -0.0000019077,0.0000019071,0.0000019064,0.0000019052,0.0000019034, -0.0000019020,0.0000019017,0.0000019025,0.0000019041,0.0000019062, -0.0000019092,0.0000019119,0.0000019127,0.0000019115,0.0000019086, -0.0000019056,0.0000019066,0.0000019086,0.0000019113,0.0000019126, -0.0000019124,0.0000019111,0.0000019100,0.0000019098,0.0000019112, -0.0000019148,0.0000019205,0.0000019276,0.0000019338,0.0000019372, -0.0000019368,0.0000019337,0.0000019280,0.0000019226,0.0000019170, -0.0000019129,0.0000019105,0.0000019075,0.0000019030,0.0000018974, -0.0000018918,0.0000018871,0.0000018815,0.0000018744,0.0000018669, -0.0000018619,0.0000018610,0.0000018622,0.0000018628,0.0000018618, -0.0000018600,0.0000018591,0.0000018572,0.0000018580,0.0000018624, -0.0000018703,0.0000018796,0.0000018883,0.0000018945,0.0000018973, -0.0000018965,0.0000018939,0.0000018915,0.0000018893,0.0000018881, -0.0000018881,0.0000018886,0.0000018867,0.0000018835,0.0000018806, -0.0000018792,0.0000018799,0.0000018813,0.0000018837,0.0000018861, -0.0000018870,0.0000018865,0.0000018842,0.0000018830,0.0000018826, -0.0000018814,0.0000018793,0.0000018782,0.0000018765,0.0000018739, -0.0000018715,0.0000018696,0.0000018684,0.0000018675,0.0000018671, -0.0000018685,0.0000018729,0.0000018783,0.0000018840,0.0000018891, -0.0000018923,0.0000018924,0.0000018922,0.0000018918,0.0000018923, -0.0000018908,0.0000018871,0.0000018819,0.0000018768,0.0000018727, -0.0000018704,0.0000018679,0.0000018641,0.0000018593,0.0000018542, -0.0000018482,0.0000018413,0.0000018362,0.0000018350,0.0000018368, -0.0000018390,0.0000018404,0.0000018418,0.0000018407,0.0000018374, -0.0000018311,0.0000018220,0.0000018125,0.0000018034,0.0000017941, -0.0000017871,0.0000017847,0.0000017847,0.0000017836,0.0000017795, -0.0000017733,0.0000017691,0.0000017690,0.0000017714,0.0000017757, -0.0000017780,0.0000017758,0.0000017692,0.0000017606,0.0000017537, -0.0000017496,0.0000017485,0.0000017482,0.0000017478,0.0000017468, -0.0000017447,0.0000017412,0.0000017371,0.0000017333,0.0000017300, -0.0000017270,0.0000017242,0.0000017216,0.0000017193,0.0000017195, -0.0000017206,0.0000017226,0.0000017242,0.0000017245,0.0000017237, -0.0000017229,0.0000017232,0.0000017239,0.0000017235,0.0000017207, -0.0000017156,0.0000017122,0.0000017095,0.0000017080,0.0000017074, -0.0000017090,0.0000017126,0.0000017162,0.0000017195,0.0000017227, -0.0000017252,0.0000017256,0.0000017227,0.0000017169,0.0000017111, -0.0000017094,0.0000017110,0.0000017143,0.0000017165,0.0000017164, -0.0000017192,0.0000017258,0.0000017301,0.0000017333,0.0000017380, -0.0000017449,0.0000017565,0.0000017759,0.0000018011,0.0000018264, -0.0000018454,0.0000018526,0.0000018527,0.0000018499,0.0000018431, -0.0000018341,0.0000018244,0.0000018164,0.0000018110,0.0000018082, -0.0000018076,0.0000018086,0.0000018106,0.0000018140,0.0000018188, -0.0000018238,0.0000018280,0.0000018317,0.0000018361,0.0000018401, -0.0000018423,0.0000018437,0.0000018458,0.0000018490,0.0000018525, -0.0000018544,0.0000018548,0.0000018545,0.0000018536,0.0000018519, -0.0000018497,0.0000018486,0.0000018491,0.0000018495,0.0000018493, -0.0000018496,0.0000018495,0.0000018479,0.0000018456,0.0000018443, -0.0000018448,0.0000018449,0.0000018429,0.0000018387,0.0000018334, -0.0000018285,0.0000018255,0.0000018249,0.0000018271,0.0000018305, -0.0000018341,0.0000018379,0.0000018420,0.0000018456,0.0000018470, -0.0000018457,0.0000018419,0.0000018363,0.0000018297,0.0000018240, -0.0000018204,0.0000018181,0.0000018175,0.0000018179,0.0000018186, -0.0000018205,0.0000018251,0.0000018312,0.0000018376,0.0000018422, -0.0000018438,0.0000018438,0.0000018441,0.0000018475,0.0000018567, -0.0000018606,0.0000018511,0.0000018334,0.0000018249,0.0000018261, -0.0000018273,0.0000018256,0.0000018207,0.0000018167,0.0000018146, -0.0000018124,0.0000018113,0.0000018110,0.0000018106,0.0000018114, -0.0000018139,0.0000018168,0.0000018190,0.0000018210,0.0000018211, -0.0000018190,0.0000018146,0.0000018104,0.0000018082,0.0000018084, -0.0000018096,0.0000018113,0.0000018125,0.0000018134,0.0000018124, -0.0000018090,0.0000018073,0.0000018096,0.0000018138,0.0000018146, -0.0000018112,0.0000018062,0.0000018027,0.0000018011,0.0000018001, -0.0000017967,0.0000017927,0.0000017934,0.0000018007,0.0000018089, -0.0000018118,0.0000018088,0.0000018013,0.0000017970,0.0000017953, -0.0000017950,0.0000017954,0.0000017916,0.0000017817,0.0000017722, -0.0000017641,0.0000017587,0.0000017581,0.0000017567,0.0000017555, -0.0000017715,0.0000018129,0.0000018450,0.0000018528,0.0000018472, -0.0000018324,0.0000018259,0.0000018212,0.0000018058,0.0000017904, -0.0000017736,0.0000017581,0.0000017546,0.0000017636,0.0000017724, -0.0000017746,0.0000017746,0.0000017734,0.0000017718,0.0000017683, -0.0000017631,0.0000017554,0.0000017496,0.0000017495,0.0000017566, -0.0000017689,0.0000017793,0.0000017849,0.0000017883,0.0000017839, -0.0000017642,0.0000017611,0.0000017651,0.0000017729,0.0000017713, -0.0000017501,0.0000017439,0.0000017429,0.0000017409,0.0000017454, -0.0000017489,0.0000017518,0.0000017525,0.0000017514,0.0000017512, -0.0000017525,0.0000017536,0.0000017535,0.0000017558,0.0000017669, -0.0000017770,0.0000017842,0.0000017981,0.0000018036,0.0000018078, -0.0000018171,0.0000018264,0.0000018348,0.0000018397,0.0000018394, -0.0000018377,0.0000018328,0.0000018257,0.0000018196,0.0000018071, -0.0000017842,0.0000017704,0.0000017707,0.0000017716,0.0000017702, -0.0000017684,0.0000017679,0.0000017681,0.0000017671,0.0000017649, -0.0000017628,0.0000017623,0.0000017628,0.0000017641,0.0000017637, -0.0000017610,0.0000017600,0.0000017698,0.0000017879,0.0000017976, -0.0000017982,0.0000017970,0.0000017970,0.0000018002,0.0000018063, -0.0000018127,0.0000018189,0.0000018229,0.0000018243,0.0000018279, -0.0000018379,0.0000018496,0.0000018528,0.0000018514,0.0000018552, -0.0000018634,0.0000018612,0.0000018517,0.0000018437,0.0000018284, -0.0000018122,0.0000018126,0.0000018238,0.0000018338,0.0000018408, -0.0000018429,0.0000018402,0.0000018393,0.0000018424,0.0000018437, -0.0000018420,0.0000018411,0.0000018403,0.0000018380,0.0000018348, -0.0000018323,0.0000018309,0.0000018306,0.0000018306,0.0000018312, -0.0000018341,0.0000018394,0.0000018435,0.0000018438,0.0000018425, -0.0000018436,0.0000018469,0.0000018493,0.0000018502,0.0000018522, -0.0000018564,0.0000018608,0.0000018640,0.0000018655,0.0000018655, -0.0000018643,0.0000018628,0.0000018620,0.0000018626,0.0000018649, -0.0000018682,0.0000018720,0.0000018757,0.0000018792,0.0000018823, -0.0000018843,0.0000018846,0.0000018836,0.0000018811,0.0000018782, -0.0000018756,0.0000018734,0.0000018715,0.0000018709,0.0000018710, -0.0000018720,0.0000018730,0.0000018732,0.0000018733,0.0000018732, -0.0000018731,0.0000018732,0.0000018737,0.0000018745,0.0000018747, -0.0000018746,0.0000018745,0.0000018751,0.0000018754,0.0000018750, -0.0000018741,0.0000018727,0.0000018711,0.0000018685,0.0000018673, -0.0000018670,0.0000018684,0.0000018712,0.0000018749,0.0000018804, -0.0000018888,0.0000019001,0.0000019117,0.0000019213,0.0000019317, -0.0000019457,0.0000019589,0.0000019664,0.0000019690,0.0000019702, -0.0000019706,0.0000019666,0.0000019567,0.0000019475,0.0000019445, -0.0000019459,0.0000019515,0.0000019591,0.0000019677,0.0000019751, -0.0000019790,0.0000019803,0.0000019807,0.0000019821,0.0000019843, -0.0000019864,0.0000019873,0.0000019870,0.0000019864,0.0000019873, -0.0000019897,0.0000019918,0.0000019923,0.0000019908,0.0000019887, -0.0000019867,0.0000019842,0.0000019799,0.0000019737,0.0000019664, -0.0000019592,0.0000019525,0.0000019462,0.0000019410,0.0000019373, -0.0000019346,0.0000019334,0.0000019335,0.0000019340,0.0000019353, -0.0000019366,0.0000019373,0.0000019379,0.0000019383,0.0000019392, -0.0000019404,0.0000019414,0.0000019421,0.0000019431,0.0000019441, -0.0000019445,0.0000019446,0.0000019455,0.0000019470,0.0000019490, -0.0000019519,0.0000019558,0.0000019600,0.0000019639,0.0000019665, -0.0000019684,0.0000019705,0.0000019733,0.0000019763,0.0000019789, -0.0000019810,0.0000019832,0.0000019852,0.0000019867,0.0000019876, -0.0000019879,0.0000019877,0.0000019873,0.0000019866,0.0000019860, -0.0000019858,0.0000019861,0.0000019869,0.0000019881,0.0000019899, -0.0000019920,0.0000019947,0.0000019973,0.0000019968,0.0000019990, -0.0000019996,0.0000020009,0.0000020012,0.0000020026,0.0000020029, -0.0000020038,0.0000020036,0.0000020018,0.0000019987,0.0000019947, -0.0000019902,0.0000019857,0.0000019813,0.0000019771,0.0000019734, -0.0000019699,0.0000019670,0.0000019641,0.0000019605,0.0000019569, -0.0000019539,0.0000019511,0.0000019496,0.0000019486,0.0000019480, -0.0000019480,0.0000019485,0.0000019491,0.0000019494,0.0000019494, -0.0000019489,0.0000019483,0.0000019481,0.0000019482,0.0000019485, -0.0000019493,0.0000019504,0.0000019517,0.0000019532,0.0000019551, -0.0000019572,0.0000019595,0.0000019622,0.0000019654,0.0000019697, -0.0000019740,0.0000019778,0.0000019811,0.0000019840,0.0000019871, -0.0000019905,0.0000019936,0.0000019965,0.0000019993,0.0000020021, -0.0000020055,0.0000020078,0.0000020088,0.0000020104,0.0000020122, -0.0000020142,0.0000020163,0.0000020140,0.0000020076,0.0000019991, -0.0000019892,0.0000019782,0.0000019659,0.0000019532,0.0000019411, -0.0000019297,0.0000019193,0.0000019101,0.0000019018,0.0000018944, -0.0000018886,0.0000018840,0.0000018804,0.0000018781,0.0000018768, -0.0000018760,0.0000018755,0.0000018752,0.0000018747,0.0000018739, -0.0000018726,0.0000018713,0.0000018701,0.0000018688,0.0000018669, -0.0000018649,0.0000018630,0.0000018615,0.0000018599,0.0000018582, -0.0000018570,0.0000018564,0.0000018555,0.0000018549,0.0000018546, -0.0000018547,0.0000018549,0.0000018548,0.0000018542,0.0000018530, -0.0000018516,0.0000018498,0.0000018471,0.0000018441,0.0000018413, -0.0000018388,0.0000018359,0.0000018335,0.0000018328,0.0000018318, -0.0000018317,0.0000018326,0.0000018340,0.0000018371,0.0000018441, -0.0000018574,0.0000018788,0.0000019064,0.0000019344,0.0000019583, -0.0000019755,0.0000019847,0.0000019880,0.0000019893,0.0000019909, -0.0000019937,0.0000019975,0.0000020005,0.0000019996,0.0000019924, -0.0000019815,0.0000019732,0.0000019696,0.0000019691,0.0000019698, -0.0000019704,0.0000019709,0.0000019718,0.0000019770,0.0000019896, -0.0000019995,0.0000020011,0.0000019982,0.0000019865,0.0000019620, -0.0000019338,0.0000019130,0.0000019037,0.0000019038,0.0000019088, -0.0000019139,0.0000019170,0.0000019218,0.0000019312,0.0000019418, -0.0000019521,0.0000019668,0.0000019877,0.0000020083,0.0000020212, -0.0000020240,0.0000020213,0.0000020163,0.0000020102,0.0000020023, -0.0000019936,0.0000019844,0.0000019768,0.0000019713,0.0000019678, -0.0000019656,0.0000019634,0.0000019613,0.0000019595,0.0000019579, -0.0000019566,0.0000019553,0.0000019550,0.0000019555,0.0000019555, -0.0000019553,0.0000019548,0.0000019535,0.0000019515,0.0000019494, -0.0000019473,0.0000019449,0.0000019420,0.0000019390,0.0000019377, -0.0000019379,0.0000019398,0.0000019418,0.0000019433,0.0000019440, -0.0000019439,0.0000019428,0.0000019415,0.0000019383,0.0000019356, -0.0000019344,0.0000019332,0.0000019337,0.0000019372,0.0000019422, -0.0000019480,0.0000019540,0.0000019594,0.0000019640,0.0000019685, -0.0000019733,0.0000019783,0.0000019835,0.0000019891,0.0000019959, -0.0000020024,0.0000020085,0.0000020139,0.0000020172,0.0000020165, -0.0000020159,0.0000020165,0.0000020151,0.0000020122,0.0000020088, -0.0000020050,0.0000020021,0.0000020000,0.0000019989,0.0000019983, -0.0000019997,0.0000020019,0.0000020054,0.0000020097,0.0000020139, -0.0000020180,0.0000020208,0.0000020223,0.0000020228,0.0000020220, -0.0000020218,0.0000020250,0.0000020302,0.0000020326,0.0000020301, -0.0000020220,0.0000020116,0.0000020018,0.0000019936,0.0000019858, -0.0000019764,0.0000019659,0.0000019581,0.0000019533,0.0000019514, -0.0000019503,0.0000019491,0.0000019475,0.0000019451,0.0000019432, -0.0000019425,0.0000019423,0.0000019421,0.0000019430,0.0000019450, -0.0000019479,0.0000019512,0.0000019548,0.0000019581,0.0000019614, -0.0000019641,0.0000019663,0.0000019670,0.0000019672,0.0000019673, -0.0000019672,0.0000019668,0.0000019651,0.0000019622,0.0000019595, -0.0000019582,0.0000019572,0.0000019553,0.0000019546,0.0000019555, -0.0000019578,0.0000019600,0.0000019620,0.0000019632,0.0000019632, -0.0000019629,0.0000019630,0.0000019631,0.0000019632,0.0000019638, -0.0000019640,0.0000019645,0.0000019655,0.0000019663,0.0000019662, -0.0000019656,0.0000019637,0.0000019609,0.0000019571,0.0000019534, -0.0000019508,0.0000019480,0.0000019446,0.0000019425,0.0000019400, -0.0000019372,0.0000019356,0.0000019355,0.0000019367,0.0000019384, -0.0000019415,0.0000019453,0.0000019490,0.0000019541,0.0000019603, -0.0000019666,0.0000019713,0.0000019742,0.0000019764,0.0000019776, -0.0000019769,0.0000019746,0.0000019731,0.0000019729,0.0000019729, -0.0000019732,0.0000019739,0.0000019735,0.0000019727,0.0000019731, -0.0000019741,0.0000019749,0.0000019752,0.0000019754,0.0000019752, -0.0000019750,0.0000019749,0.0000019745,0.0000019733,0.0000019717, -0.0000019703,0.0000019692,0.0000019683,0.0000019670,0.0000019656, -0.0000019640,0.0000019619,0.0000019594,0.0000019562,0.0000019531, -0.0000019505,0.0000019490,0.0000019490,0.0000019504,0.0000019524, -0.0000019538,0.0000019542,0.0000019543,0.0000019548,0.0000019561, -0.0000019577,0.0000019595,0.0000019611,0.0000019626,0.0000019642, -0.0000019655,0.0000019656,0.0000019647,0.0000019627,0.0000019595, -0.0000019546,0.0000019485,0.0000019422,0.0000019358,0.0000019294, -0.0000019236,0.0000019192,0.0000019166,0.0000019153,0.0000019148, -0.0000019147,0.0000019138,0.0000019117,0.0000019100,0.0000019090, -0.0000019091,0.0000019102,0.0000019120,0.0000019145,0.0000019171, -0.0000019177,0.0000019164,0.0000019128,0.0000019094,0.0000019084, -0.0000019096,0.0000019118,0.0000019122,0.0000019108,0.0000019071, -0.0000019046,0.0000019041,0.0000019074,0.0000019126,0.0000019190, -0.0000019271,0.0000019346,0.0000019391,0.0000019405,0.0000019393, -0.0000019353,0.0000019310,0.0000019266,0.0000019239,0.0000019227, -0.0000019212,0.0000019174,0.0000019109,0.0000019035,0.0000018959, -0.0000018885,0.0000018819,0.0000018760,0.0000018707,0.0000018685, -0.0000018697,0.0000018716,0.0000018709,0.0000018676,0.0000018626, -0.0000018585,0.0000018567,0.0000018578,0.0000018633,0.0000018714, -0.0000018798,0.0000018865,0.0000018900,0.0000018891,0.0000018857, -0.0000018817,0.0000018779,0.0000018760,0.0000018765,0.0000018768, -0.0000018765,0.0000018753,0.0000018745,0.0000018753,0.0000018778, -0.0000018811,0.0000018851,0.0000018881,0.0000018898,0.0000018902, -0.0000018899,0.0000018898,0.0000018900,0.0000018890,0.0000018871, -0.0000018863,0.0000018845,0.0000018817,0.0000018790,0.0000018780, -0.0000018778,0.0000018771,0.0000018757,0.0000018754,0.0000018777, -0.0000018814,0.0000018853,0.0000018883,0.0000018900,0.0000018902, -0.0000018902,0.0000018924,0.0000018944,0.0000018953,0.0000018924, -0.0000018874,0.0000018839,0.0000018833,0.0000018844,0.0000018841, -0.0000018803,0.0000018743,0.0000018677,0.0000018600,0.0000018523, -0.0000018466,0.0000018444,0.0000018443,0.0000018438,0.0000018437, -0.0000018437,0.0000018428,0.0000018412,0.0000018360,0.0000018270, -0.0000018170,0.0000018067,0.0000017967,0.0000017904,0.0000017884, -0.0000017882,0.0000017868,0.0000017820,0.0000017758,0.0000017727, -0.0000017740,0.0000017784,0.0000017832,0.0000017847,0.0000017815, -0.0000017746,0.0000017675,0.0000017617,0.0000017580,0.0000017558, -0.0000017547,0.0000017543,0.0000017535,0.0000017510,0.0000017471, -0.0000017424,0.0000017381,0.0000017350,0.0000017332,0.0000017316, -0.0000017287,0.0000017255,0.0000017232,0.0000017222,0.0000017225, -0.0000017226,0.0000017223,0.0000017216,0.0000017223,0.0000017244, -0.0000017268,0.0000017268,0.0000017237,0.0000017182,0.0000017130, -0.0000017096,0.0000017078,0.0000017082,0.0000017111,0.0000017144, -0.0000017166,0.0000017172,0.0000017174,0.0000017177,0.0000017187, -0.0000017154,0.0000017095,0.0000017066,0.0000017065,0.0000017084, -0.0000017110,0.0000017118,0.0000017147,0.0000017213,0.0000017254, -0.0000017265,0.0000017256,0.0000017229,0.0000017208,0.0000017242, -0.0000017376,0.0000017641,0.0000017971,0.0000018267,0.0000018454, -0.0000018498,0.0000018498,0.0000018456,0.0000018395,0.0000018322, -0.0000018252,0.0000018204,0.0000018184,0.0000018186,0.0000018194, -0.0000018217,0.0000018258,0.0000018302,0.0000018340,0.0000018377, -0.0000018425,0.0000018469,0.0000018496,0.0000018504,0.0000018508, -0.0000018521,0.0000018544,0.0000018561,0.0000018568,0.0000018567, -0.0000018554,0.0000018526,0.0000018492,0.0000018479,0.0000018479, -0.0000018481,0.0000018484,0.0000018495,0.0000018497,0.0000018482, -0.0000018454,0.0000018441,0.0000018449,0.0000018457,0.0000018446, -0.0000018410,0.0000018359,0.0000018307,0.0000018268,0.0000018252, -0.0000018265,0.0000018296,0.0000018334,0.0000018370,0.0000018410, -0.0000018452,0.0000018477,0.0000018479,0.0000018459,0.0000018410, -0.0000018336,0.0000018259,0.0000018200,0.0000018165,0.0000018151, -0.0000018147,0.0000018146,0.0000018166,0.0000018213,0.0000018266, -0.0000018327,0.0000018383,0.0000018409,0.0000018420,0.0000018428, -0.0000018451,0.0000018523,0.0000018592,0.0000018539,0.0000018361, -0.0000018248,0.0000018232,0.0000018238,0.0000018216,0.0000018183, -0.0000018156,0.0000018129,0.0000018116,0.0000018116,0.0000018117, -0.0000018130,0.0000018158,0.0000018184,0.0000018199,0.0000018206, -0.0000018202,0.0000018178,0.0000018138,0.0000018098,0.0000018071, -0.0000018066,0.0000018075,0.0000018084,0.0000018098,0.0000018117, -0.0000018117,0.0000018094,0.0000018081,0.0000018093,0.0000018119, -0.0000018124,0.0000018097,0.0000018053,0.0000018020,0.0000018009, -0.0000018007,0.0000017983,0.0000017937,0.0000017927,0.0000017988, -0.0000018083,0.0000018154,0.0000018157,0.0000018075,0.0000017987, -0.0000017956,0.0000017945,0.0000017950,0.0000017937,0.0000017862, -0.0000017768,0.0000017691,0.0000017612,0.0000017568,0.0000017548, -0.0000017537,0.0000017631,0.0000017993,0.0000018366,0.0000018521, -0.0000018521,0.0000018372,0.0000018227,0.0000018203,0.0000018148, -0.0000017991,0.0000017873,0.0000017727,0.0000017557,0.0000017507, -0.0000017556,0.0000017639,0.0000017693,0.0000017715,0.0000017705, -0.0000017672,0.0000017619,0.0000017555,0.0000017503,0.0000017482, -0.0000017503,0.0000017601,0.0000017727,0.0000017801,0.0000017838, -0.0000017864,0.0000017752,0.0000017604,0.0000017630,0.0000017674, -0.0000017755,0.0000017622,0.0000017452,0.0000017448,0.0000017417, -0.0000017428,0.0000017467,0.0000017508,0.0000017531,0.0000017527, -0.0000017519,0.0000017518,0.0000017536,0.0000017543,0.0000017540, -0.0000017575,0.0000017696,0.0000017789,0.0000017920,0.0000018071, -0.0000018105,0.0000018154,0.0000018219,0.0000018295,0.0000018365, -0.0000018383,0.0000018373,0.0000018327,0.0000018258,0.0000018208, -0.0000018103,0.0000017876,0.0000017698,0.0000017694,0.0000017700, -0.0000017678,0.0000017663,0.0000017670,0.0000017688,0.0000017689, -0.0000017668,0.0000017632,0.0000017611,0.0000017606,0.0000017611, -0.0000017619,0.0000017602,0.0000017584,0.0000017595,0.0000017731, -0.0000017908,0.0000017978,0.0000017977,0.0000017959,0.0000017957, -0.0000018007,0.0000018080,0.0000018148,0.0000018203,0.0000018225, -0.0000018233,0.0000018283,0.0000018401,0.0000018510,0.0000018534, -0.0000018530,0.0000018586,0.0000018631,0.0000018569,0.0000018482, -0.0000018370,0.0000018190,0.0000018108,0.0000018181,0.0000018284, -0.0000018358,0.0000018409,0.0000018414,0.0000018383,0.0000018378, -0.0000018415,0.0000018439,0.0000018438,0.0000018440,0.0000018441, -0.0000018426,0.0000018382,0.0000018329,0.0000018290,0.0000018278, -0.0000018287,0.0000018326,0.0000018381,0.0000018415,0.0000018410, -0.0000018395,0.0000018409,0.0000018448,0.0000018474,0.0000018479, -0.0000018485,0.0000018507,0.0000018541,0.0000018574,0.0000018600, -0.0000018617,0.0000018623,0.0000018620,0.0000018608,0.0000018595, -0.0000018592,0.0000018603,0.0000018629,0.0000018661,0.0000018693, -0.0000018722,0.0000018742,0.0000018752,0.0000018752,0.0000018745, -0.0000018733,0.0000018723,0.0000018712,0.0000018707,0.0000018712, -0.0000018723,0.0000018744,0.0000018757,0.0000018767,0.0000018774, -0.0000018786,0.0000018791,0.0000018804,0.0000018813,0.0000018816, -0.0000018818,0.0000018816,0.0000018811,0.0000018803,0.0000018791, -0.0000018775,0.0000018755,0.0000018733,0.0000018707,0.0000018669, -0.0000018628,0.0000018588,0.0000018567,0.0000018564,0.0000018586, -0.0000018635,0.0000018696,0.0000018782,0.0000018899,0.0000019026, -0.0000019157,0.0000019308,0.0000019463,0.0000019587,0.0000019661, -0.0000019685,0.0000019660,0.0000019560,0.0000019435,0.0000019381, -0.0000019382,0.0000019422,0.0000019464,0.0000019511,0.0000019605, -0.0000019712,0.0000019787,0.0000019809,0.0000019808,0.0000019810, -0.0000019819,0.0000019843,0.0000019863,0.0000019866,0.0000019859, -0.0000019857,0.0000019871,0.0000019897,0.0000019917,0.0000019924, -0.0000019919,0.0000019908,0.0000019896,0.0000019883,0.0000019864, -0.0000019833,0.0000019784,0.0000019717,0.0000019641,0.0000019572, -0.0000019523,0.0000019496,0.0000019494,0.0000019512,0.0000019537, -0.0000019562,0.0000019585,0.0000019605,0.0000019626,0.0000019648, -0.0000019672,0.0000019703,0.0000019735,0.0000019764,0.0000019792, -0.0000019813,0.0000019825,0.0000019840,0.0000019868,0.0000019898, -0.0000019928,0.0000019963,0.0000019998,0.0000020013,0.0000020008, -0.0000019999,0.0000019997,0.0000020002,0.0000020010,0.0000020012, -0.0000020009,0.0000020008,0.0000020009,0.0000020012,0.0000020013, -0.0000020014,0.0000020012,0.0000020008,0.0000020002,0.0000019993, -0.0000019984,0.0000019978,0.0000019973,0.0000019969,0.0000019964, -0.0000019957,0.0000019947,0.0000019934,0.0000019919,0.0000019899, -0.0000019876,0.0000019847,0.0000019816,0.0000019785,0.0000019757, -0.0000019729,0.0000019699,0.0000019665,0.0000019628,0.0000019587, -0.0000019549,0.0000019507,0.0000019467,0.0000019460,0.0000019449, -0.0000019438,0.0000019440,0.0000019441,0.0000019433,0.0000019419, -0.0000019416,0.0000019393,0.0000019381,0.0000019366,0.0000019344, -0.0000019325,0.0000019304,0.0000019284,0.0000019264,0.0000019241, -0.0000019219,0.0000019196,0.0000019179,0.0000019167,0.0000019158, -0.0000019154,0.0000019155,0.0000019161,0.0000019170,0.0000019180, -0.0000019196,0.0000019216,0.0000019240,0.0000019268,0.0000019308, -0.0000019350,0.0000019390,0.0000019429,0.0000019464,0.0000019500, -0.0000019541,0.0000019587,0.0000019636,0.0000019687,0.0000019744, -0.0000019809,0.0000019871,0.0000019929,0.0000019987,0.0000020041, -0.0000020093,0.0000020144,0.0000020184,0.0000020206,0.0000020211, -0.0000020217,0.0000020207,0.0000020208,0.0000020131,0.0000020035, -0.0000019932,0.0000019824,0.0000019708,0.0000019587,0.0000019470, -0.0000019356,0.0000019244,0.0000019145,0.0000019066,0.0000019002, -0.0000018951,0.0000018912,0.0000018877,0.0000018843,0.0000018812, -0.0000018783,0.0000018759,0.0000018741,0.0000018718,0.0000018690, -0.0000018663,0.0000018639,0.0000018616,0.0000018592,0.0000018571, -0.0000018555,0.0000018543,0.0000018528,0.0000018520,0.0000018518, -0.0000018519,0.0000018517,0.0000018510,0.0000018497,0.0000018481, -0.0000018467,0.0000018450,0.0000018428,0.0000018406,0.0000018390, -0.0000018372,0.0000018346,0.0000018337,0.0000018344,0.0000018366, -0.0000018416,0.0000018499,0.0000018622,0.0000018793,0.0000019010, -0.0000019258,0.0000019496,0.0000019679,0.0000019789,0.0000019842, -0.0000019865,0.0000019881,0.0000019897,0.0000019924,0.0000019974, -0.0000020027,0.0000020044,0.0000019994,0.0000019860,0.0000019728, -0.0000019671,0.0000019670,0.0000019694,0.0000019718,0.0000019734, -0.0000019739,0.0000019729,0.0000019725,0.0000019800,0.0000019951, -0.0000020022,0.0000020014,0.0000019951,0.0000019769,0.0000019476, -0.0000019224,0.0000019120,0.0000019131,0.0000019184,0.0000019224, -0.0000019261,0.0000019335,0.0000019431,0.0000019527,0.0000019673, -0.0000019882,0.0000020102,0.0000020235,0.0000020256,0.0000020224, -0.0000020165,0.0000020101,0.0000020021,0.0000019922,0.0000019825, -0.0000019759,0.0000019709,0.0000019681,0.0000019664,0.0000019643, -0.0000019618,0.0000019591,0.0000019572,0.0000019555,0.0000019553, -0.0000019542,0.0000019537,0.0000019549,0.0000019560,0.0000019563, -0.0000019561,0.0000019555,0.0000019542,0.0000019526,0.0000019511, -0.0000019490,0.0000019463,0.0000019431,0.0000019401,0.0000019390, -0.0000019399,0.0000019414,0.0000019429,0.0000019443,0.0000019454, -0.0000019459,0.0000019457,0.0000019451,0.0000019451,0.0000019468, -0.0000019497,0.0000019531,0.0000019577,0.0000019636,0.0000019692, -0.0000019746,0.0000019803,0.0000019860,0.0000019921,0.0000019976, -0.0000020019,0.0000020055,0.0000020096,0.0000020130,0.0000020147, -0.0000020165,0.0000020188,0.0000020185,0.0000020168,0.0000020149, -0.0000020124,0.0000020093,0.0000020060,0.0000020021,0.0000019989, -0.0000019979,0.0000019993,0.0000020015,0.0000020042,0.0000020087, -0.0000020140,0.0000020186,0.0000020218,0.0000020238,0.0000020241, -0.0000020231,0.0000020218,0.0000020202,0.0000020191,0.0000020191, -0.0000020226,0.0000020283,0.0000020321,0.0000020318,0.0000020269, -0.0000020192,0.0000020107,0.0000020026,0.0000019960,0.0000019899, -0.0000019825,0.0000019729,0.0000019623,0.0000019547,0.0000019500, -0.0000019479,0.0000019463,0.0000019448,0.0000019436,0.0000019435, -0.0000019443,0.0000019446,0.0000019458,0.0000019477,0.0000019507, -0.0000019541,0.0000019573,0.0000019599,0.0000019624,0.0000019650, -0.0000019672,0.0000019676,0.0000019677,0.0000019682,0.0000019686, -0.0000019682,0.0000019666,0.0000019640,0.0000019617,0.0000019611, -0.0000019604,0.0000019590,0.0000019583,0.0000019589,0.0000019604, -0.0000019622,0.0000019645,0.0000019668,0.0000019684,0.0000019699, -0.0000019714,0.0000019730,0.0000019747,0.0000019765,0.0000019775, -0.0000019788,0.0000019804,0.0000019809,0.0000019809,0.0000019806, -0.0000019793,0.0000019768,0.0000019736,0.0000019696,0.0000019653, -0.0000019612,0.0000019574,0.0000019557,0.0000019545,0.0000019524, -0.0000019498,0.0000019472,0.0000019455,0.0000019452,0.0000019473, -0.0000019506,0.0000019531,0.0000019575,0.0000019638,0.0000019704, -0.0000019751,0.0000019780,0.0000019806,0.0000019819,0.0000019812, -0.0000019797,0.0000019792,0.0000019794,0.0000019798,0.0000019808, -0.0000019818,0.0000019817,0.0000019817,0.0000019825,0.0000019827, -0.0000019819,0.0000019818,0.0000019828,0.0000019831,0.0000019826, -0.0000019828,0.0000019835,0.0000019837,0.0000019834,0.0000019832, -0.0000019828,0.0000019828,0.0000019831,0.0000019829,0.0000019820, -0.0000019801,0.0000019773,0.0000019736,0.0000019700,0.0000019676, -0.0000019668,0.0000019669,0.0000019680,0.0000019688,0.0000019687, -0.0000019685,0.0000019683,0.0000019683,0.0000019688,0.0000019700, -0.0000019714,0.0000019727,0.0000019738,0.0000019748,0.0000019757, -0.0000019764,0.0000019767,0.0000019763,0.0000019746,0.0000019711, -0.0000019660,0.0000019593,0.0000019514,0.0000019430,0.0000019348, -0.0000019276,0.0000019223,0.0000019190,0.0000019177,0.0000019176, -0.0000019170,0.0000019156,0.0000019153,0.0000019149,0.0000019148, -0.0000019164,0.0000019191,0.0000019223,0.0000019252,0.0000019262, -0.0000019249,0.0000019216,0.0000019181,0.0000019156,0.0000019155, -0.0000019163,0.0000019154,0.0000019118,0.0000019067,0.0000019027, -0.0000019036,0.0000019071,0.0000019125,0.0000019191,0.0000019271, -0.0000019346,0.0000019397,0.0000019421,0.0000019412,0.0000019383, -0.0000019348,0.0000019317,0.0000019308,0.0000019312,0.0000019310, -0.0000019286,0.0000019237,0.0000019163,0.0000019067,0.0000018970, -0.0000018897,0.0000018837,0.0000018784,0.0000018761,0.0000018777, -0.0000018809,0.0000018824,0.0000018799,0.0000018743,0.0000018677, -0.0000018613,0.0000018582,0.0000018606,0.0000018654,0.0000018716, -0.0000018777,0.0000018821,0.0000018830,0.0000018805,0.0000018758, -0.0000018702,0.0000018666,0.0000018643,0.0000018628,0.0000018616, -0.0000018606,0.0000018608,0.0000018629,0.0000018675,0.0000018736, -0.0000018796,0.0000018840,0.0000018865,0.0000018886,0.0000018905, -0.0000018923,0.0000018944,0.0000018955,0.0000018960,0.0000018968, -0.0000018957,0.0000018931,0.0000018908,0.0000018908,0.0000018911, -0.0000018901,0.0000018878,0.0000018865,0.0000018875,0.0000018886, -0.0000018893,0.0000018895,0.0000018890,0.0000018875,0.0000018882, -0.0000018913,0.0000018953,0.0000018966,0.0000018941,0.0000018894, -0.0000018867,0.0000018886,0.0000018930,0.0000018957,0.0000018934, -0.0000018880,0.0000018812,0.0000018736,0.0000018659,0.0000018601, -0.0000018567,0.0000018537,0.0000018505,0.0000018478,0.0000018456, -0.0000018443,0.0000018430,0.0000018388,0.0000018309,0.0000018209, -0.0000018099,0.0000018006,0.0000017958,0.0000017937,0.0000017930, -0.0000017901,0.0000017845,0.0000017790,0.0000017778,0.0000017806, -0.0000017857,0.0000017899,0.0000017905,0.0000017868,0.0000017810, -0.0000017754,0.0000017704,0.0000017656,0.0000017620,0.0000017596, -0.0000017584,0.0000017570,0.0000017546,0.0000017506,0.0000017455, -0.0000017409,0.0000017389,0.0000017392,0.0000017392,0.0000017374, -0.0000017340,0.0000017301,0.0000017265,0.0000017234,0.0000017218, -0.0000017197,0.0000017190,0.0000017209,0.0000017253,0.0000017285, -0.0000017291,0.0000017263,0.0000017204,0.0000017152,0.0000017122, -0.0000017112,0.0000017121,0.0000017145,0.0000017169,0.0000017181, -0.0000017179,0.0000017171,0.0000017189,0.0000017187,0.0000017135, -0.0000017082,0.0000017067,0.0000017079,0.0000017095,0.0000017107, -0.0000017129,0.0000017182,0.0000017236,0.0000017260,0.0000017251, -0.0000017217,0.0000017169,0.0000017116,0.0000017101,0.0000017197, -0.0000017431,0.0000017768,0.0000018120,0.0000018364,0.0000018477, -0.0000018476,0.0000018471,0.0000018436,0.0000018387,0.0000018345, -0.0000018324,0.0000018324,0.0000018325,0.0000018335,0.0000018361, -0.0000018386,0.0000018405,0.0000018428,0.0000018466,0.0000018509, -0.0000018543,0.0000018559,0.0000018560,0.0000018560,0.0000018567, -0.0000018574,0.0000018578,0.0000018577,0.0000018569,0.0000018542, -0.0000018506,0.0000018488,0.0000018480,0.0000018477,0.0000018475, -0.0000018484,0.0000018494,0.0000018485,0.0000018461,0.0000018447, -0.0000018453,0.0000018463,0.0000018456,0.0000018423,0.0000018377, -0.0000018334,0.0000018296,0.0000018272,0.0000018269,0.0000018290, -0.0000018330,0.0000018370,0.0000018411,0.0000018454,0.0000018478, -0.0000018478,0.0000018456,0.0000018403,0.0000018323,0.0000018243, -0.0000018176,0.0000018137,0.0000018122,0.0000018117,0.0000018123, -0.0000018156,0.0000018196,0.0000018224,0.0000018279,0.0000018349, -0.0000018388,0.0000018403,0.0000018422,0.0000018439,0.0000018486, -0.0000018576,0.0000018557,0.0000018382,0.0000018240,0.0000018205, -0.0000018205,0.0000018196,0.0000018180,0.0000018146,0.0000018123, -0.0000018127,0.0000018135,0.0000018148,0.0000018172,0.0000018189, -0.0000018197,0.0000018200,0.0000018193,0.0000018170,0.0000018133, -0.0000018090,0.0000018048,0.0000018027,0.0000018037,0.0000018055, -0.0000018075,0.0000018099,0.0000018104,0.0000018091,0.0000018084, -0.0000018090,0.0000018099,0.0000018100,0.0000018080,0.0000018043, -0.0000018012,0.0000018003,0.0000018008,0.0000018001,0.0000017959, -0.0000017931,0.0000017967,0.0000018057,0.0000018152,0.0000018204, -0.0000018175,0.0000018044,0.0000017963,0.0000017947,0.0000017949, -0.0000017947,0.0000017894,0.0000017803,0.0000017731,0.0000017649, -0.0000017569,0.0000017526,0.0000017515,0.0000017582,0.0000017879, -0.0000018267,0.0000018487,0.0000018525,0.0000018452,0.0000018259, -0.0000018163,0.0000018163,0.0000018077,0.0000017928,0.0000017848, -0.0000017726,0.0000017564,0.0000017498,0.0000017489,0.0000017535, -0.0000017585,0.0000017608,0.0000017601,0.0000017573,0.0000017538, -0.0000017512,0.0000017491,0.0000017475,0.0000017520,0.0000017651, -0.0000017747,0.0000017792,0.0000017827,0.0000017814,0.0000017651, -0.0000017599,0.0000017647,0.0000017721,0.0000017732,0.0000017516, -0.0000017456,0.0000017447,0.0000017425,0.0000017449,0.0000017490, -0.0000017536,0.0000017546,0.0000017550,0.0000017526,0.0000017533, -0.0000017549,0.0000017545,0.0000017540,0.0000017595,0.0000017716, -0.0000017817,0.0000017992,0.0000018112,0.0000018134,0.0000018179, -0.0000018244,0.0000018319,0.0000018364,0.0000018366,0.0000018324, -0.0000018253,0.0000018210,0.0000018139,0.0000017936,0.0000017722, -0.0000017678,0.0000017674,0.0000017664,0.0000017658,0.0000017668, -0.0000017682,0.0000017687,0.0000017680,0.0000017654,0.0000017616, -0.0000017596,0.0000017593,0.0000017597,0.0000017593,0.0000017585, -0.0000017561,0.0000017592,0.0000017762,0.0000017927,0.0000017983, -0.0000017968,0.0000017938,0.0000017963,0.0000018037,0.0000018110, -0.0000018171,0.0000018210,0.0000018223,0.0000018237,0.0000018302, -0.0000018427,0.0000018526,0.0000018534,0.0000018547,0.0000018614, -0.0000018613,0.0000018529,0.0000018438,0.0000018289,0.0000018133, -0.0000018131,0.0000018228,0.0000018307,0.0000018365,0.0000018410, -0.0000018400,0.0000018359,0.0000018356,0.0000018398,0.0000018431, -0.0000018441,0.0000018450,0.0000018461,0.0000018449,0.0000018398, -0.0000018322,0.0000018265,0.0000018255,0.0000018298,0.0000018360, -0.0000018386,0.0000018376,0.0000018364,0.0000018383,0.0000018423, -0.0000018444,0.0000018448,0.0000018451,0.0000018462,0.0000018481, -0.0000018503,0.0000018524,0.0000018542,0.0000018560,0.0000018576, -0.0000018582,0.0000018575,0.0000018564,0.0000018554,0.0000018552, -0.0000018555,0.0000018565,0.0000018578,0.0000018590,0.0000018595, -0.0000018593,0.0000018588,0.0000018581,0.0000018573,0.0000018567, -0.0000018566,0.0000018575,0.0000018596,0.0000018619,0.0000018638, -0.0000018658,0.0000018686,0.0000018717,0.0000018750,0.0000018786, -0.0000018815,0.0000018830,0.0000018844,0.0000018850,0.0000018852, -0.0000018849,0.0000018843,0.0000018833,0.0000018815,0.0000018792, -0.0000018763,0.0000018726,0.0000018684,0.0000018637,0.0000018594, -0.0000018560,0.0000018537,0.0000018547,0.0000018555,0.0000018609, -0.0000018691,0.0000018801,0.0000018930,0.0000019072,0.0000019232, -0.0000019400,0.0000019545,0.0000019633,0.0000019625,0.0000019528, -0.0000019437,0.0000019430,0.0000019499,0.0000019555,0.0000019545, -0.0000019535,0.0000019576,0.0000019687,0.0000019795,0.0000019833, -0.0000019826,0.0000019809,0.0000019804,0.0000019819,0.0000019843, -0.0000019856,0.0000019852,0.0000019843,0.0000019850,0.0000019878, -0.0000019911,0.0000019932,0.0000019944,0.0000019947,0.0000019945, -0.0000019943,0.0000019943,0.0000019940,0.0000019925,0.0000019897, -0.0000019866,0.0000019852,0.0000019863,0.0000019895,0.0000019936, -0.0000019970,0.0000019996,0.0000020019,0.0000020025,0.0000020030, -0.0000020044,0.0000020058,0.0000020070,0.0000020082,0.0000020094, -0.0000020099,0.0000020079,0.0000020063,0.0000020046,0.0000020045, -0.0000020046,0.0000020038,0.0000020028,0.0000020019,0.0000020009, -0.0000019998,0.0000019984,0.0000019965,0.0000019943,0.0000019921, -0.0000019900,0.0000019878,0.0000019856,0.0000019840,0.0000019830, -0.0000019819,0.0000019808,0.0000019798,0.0000019786,0.0000019771, -0.0000019754,0.0000019739,0.0000019730,0.0000019723,0.0000019711, -0.0000019697,0.0000019679,0.0000019660,0.0000019639,0.0000019618, -0.0000019592,0.0000019559,0.0000019523,0.0000019487,0.0000019457, -0.0000019436,0.0000019425,0.0000019431,0.0000019439,0.0000019445, -0.0000019445,0.0000019456,0.0000019464,0.0000019470,0.0000019482, -0.0000019475,0.0000019481,0.0000019456,0.0000019422,0.0000019372, -0.0000019307,0.0000019230,0.0000019137,0.0000019050,0.0000018965, -0.0000018889,0.0000018855,0.0000018769,0.0000018712,0.0000018677, -0.0000018648,0.0000018627,0.0000018613,0.0000018599,0.0000018586, -0.0000018576,0.0000018568,0.0000018564,0.0000018567,0.0000018577, -0.0000018589,0.0000018606,0.0000018626,0.0000018647,0.0000018672, -0.0000018710,0.0000018756,0.0000018806,0.0000018855,0.0000018907, -0.0000018968,0.0000019023,0.0000019065,0.0000019117,0.0000019179, -0.0000019249,0.0000019329,0.0000019411,0.0000019499,0.0000019594, -0.0000019695,0.0000019793,0.0000019886,0.0000019970,0.0000020041, -0.0000020097,0.0000020142,0.0000020181,0.0000020204,0.0000020213, -0.0000020205,0.0000020212,0.0000020207,0.0000020208,0.0000020152, -0.0000020069,0.0000019970,0.0000019865,0.0000019760,0.0000019658, -0.0000019558,0.0000019462,0.0000019371,0.0000019281,0.0000019193, -0.0000019113,0.0000019041,0.0000018981,0.0000018930,0.0000018878, -0.0000018827,0.0000018778,0.0000018735,0.0000018696,0.0000018656, -0.0000018619,0.0000018588,0.0000018560,0.0000018540,0.0000018529, -0.0000018524,0.0000018521,0.0000018517,0.0000018508,0.0000018497, -0.0000018484,0.0000018473,0.0000018459,0.0000018446,0.0000018439, -0.0000018436,0.0000018443,0.0000018473,0.0000018531,0.0000018620, -0.0000018744,0.0000018904,0.0000019089,0.0000019289,0.0000019482, -0.0000019648,0.0000019767,0.0000019831,0.0000019851,0.0000019853, -0.0000019862,0.0000019876,0.0000019900,0.0000019946,0.0000020012, -0.0000020065,0.0000020057,0.0000019967,0.0000019812,0.0000019681, -0.0000019635,0.0000019645,0.0000019678,0.0000019706,0.0000019729, -0.0000019747,0.0000019748,0.0000019721,0.0000019735,0.0000019882, -0.0000020016,0.0000020032,0.0000020006,0.0000019881,0.0000019597, -0.0000019314,0.0000019200,0.0000019218,0.0000019269,0.0000019301, -0.0000019346,0.0000019431,0.0000019518,0.0000019647,0.0000019863, -0.0000020104,0.0000020248,0.0000020277,0.0000020244,0.0000020177, -0.0000020102,0.0000020013,0.0000019916,0.0000019819,0.0000019750, -0.0000019710,0.0000019692,0.0000019669,0.0000019645,0.0000019625, -0.0000019607,0.0000019593,0.0000019585,0.0000019593,0.0000019608, -0.0000019629,0.0000019652,0.0000019676,0.0000019698,0.0000019714, -0.0000019721,0.0000019725,0.0000019723,0.0000019716,0.0000019706, -0.0000019691,0.0000019669,0.0000019640,0.0000019604,0.0000019577, -0.0000019572,0.0000019577,0.0000019588,0.0000019601,0.0000019618, -0.0000019638,0.0000019663,0.0000019687,0.0000019710,0.0000019739, -0.0000019775,0.0000019809,0.0000019840,0.0000019880,0.0000019929, -0.0000019982,0.0000020034,0.0000020078,0.0000020114,0.0000020145, -0.0000020158,0.0000020154,0.0000020152,0.0000020150,0.0000020149, -0.0000020159,0.0000020163,0.0000020160,0.0000020151,0.0000020125, -0.0000020085,0.0000020034,0.0000020003,0.0000019984,0.0000019999, -0.0000020049,0.0000020116,0.0000020179,0.0000020226,0.0000020257, -0.0000020285,0.0000020288,0.0000020284,0.0000020270,0.0000020244, -0.0000020217,0.0000020194,0.0000020181,0.0000020175,0.0000020194, -0.0000020239,0.0000020296,0.0000020333,0.0000020335,0.0000020307, -0.0000020254,0.0000020193,0.0000020129,0.0000020064,0.0000020000, -0.0000019941,0.0000019877,0.0000019794,0.0000019697,0.0000019611, -0.0000019550,0.0000019507,0.0000019482,0.0000019473,0.0000019473, -0.0000019488,0.0000019506,0.0000019531,0.0000019558,0.0000019596, -0.0000019636,0.0000019665,0.0000019687,0.0000019702,0.0000019718, -0.0000019727,0.0000019722,0.0000019716,0.0000019718,0.0000019720, -0.0000019715,0.0000019702,0.0000019687,0.0000019673,0.0000019671, -0.0000019670,0.0000019665,0.0000019666,0.0000019671,0.0000019676, -0.0000019683,0.0000019698,0.0000019719,0.0000019737,0.0000019752, -0.0000019760,0.0000019771,0.0000019780,0.0000019785,0.0000019793, -0.0000019811,0.0000019831,0.0000019842,0.0000019844,0.0000019840, -0.0000019830,0.0000019818,0.0000019808,0.0000019792,0.0000019757, -0.0000019716,0.0000019672,0.0000019635,0.0000019614,0.0000019605, -0.0000019594,0.0000019575,0.0000019553,0.0000019545,0.0000019554, -0.0000019572,0.0000019585,0.0000019626,0.0000019694,0.0000019769, -0.0000019821,0.0000019859,0.0000019884,0.0000019889,0.0000019877, -0.0000019868,0.0000019871,0.0000019876,0.0000019883,0.0000019897, -0.0000019906,0.0000019904,0.0000019904,0.0000019904,0.0000019896, -0.0000019884,0.0000019895,0.0000019908,0.0000019914,0.0000019932, -0.0000019952,0.0000019971,0.0000019986,0.0000019990,0.0000019991, -0.0000019986,0.0000019983,0.0000019985,0.0000019984,0.0000019965, -0.0000019934,0.0000019902,0.0000019861,0.0000019825,0.0000019802, -0.0000019796,0.0000019805,0.0000019817,0.0000019822,0.0000019827, -0.0000019835,0.0000019841,0.0000019848,0.0000019862,0.0000019878, -0.0000019895,0.0000019909,0.0000019917,0.0000019921,0.0000019920, -0.0000019915,0.0000019905,0.0000019888,0.0000019860,0.0000019826, -0.0000019782,0.0000019729,0.0000019669,0.0000019602,0.0000019524, -0.0000019438,0.0000019356,0.0000019287,0.0000019239,0.0000019204, -0.0000019175,0.0000019159,0.0000019160,0.0000019153,0.0000019156, -0.0000019183,0.0000019223,0.0000019270,0.0000019310,0.0000019327, -0.0000019319,0.0000019301,0.0000019283,0.0000019263,0.0000019252, -0.0000019246,0.0000019221,0.0000019168,0.0000019101,0.0000019068, -0.0000019070,0.0000019106,0.0000019150,0.0000019217,0.0000019291, -0.0000019360,0.0000019411,0.0000019435,0.0000019422,0.0000019399, -0.0000019369,0.0000019348,0.0000019347,0.0000019356,0.0000019360, -0.0000019353,0.0000019321,0.0000019257,0.0000019173,0.0000019087, -0.0000019014,0.0000018947,0.0000018879,0.0000018834,0.0000018830, -0.0000018862,0.0000018895,0.0000018904,0.0000018879,0.0000018813, -0.0000018723,0.0000018659,0.0000018636,0.0000018648,0.0000018670, -0.0000018709,0.0000018752,0.0000018773,0.0000018757,0.0000018717, -0.0000018661,0.0000018610,0.0000018569,0.0000018536,0.0000018505, -0.0000018481,0.0000018481,0.0000018504,0.0000018561,0.0000018633, -0.0000018701,0.0000018744,0.0000018775,0.0000018804,0.0000018846, -0.0000018894,0.0000018938,0.0000018972,0.0000019008,0.0000019043, -0.0000019055,0.0000019048,0.0000019043,0.0000019048,0.0000019049, -0.0000019034,0.0000019007,0.0000018992,0.0000018989,0.0000018977, -0.0000018958,0.0000018933,0.0000018902,0.0000018885,0.0000018891, -0.0000018922,0.0000018960,0.0000018971,0.0000018947,0.0000018902, -0.0000018881,0.0000018914,0.0000018978,0.0000019014,0.0000019012, -0.0000018975,0.0000018919,0.0000018849,0.0000018785,0.0000018735, -0.0000018691,0.0000018638,0.0000018583,0.0000018530,0.0000018482, -0.0000018458,0.0000018435,0.0000018398,0.0000018335,0.0000018240, -0.0000018136,0.0000018069,0.0000018028,0.0000018010,0.0000017989, -0.0000017946,0.0000017888,0.0000017852,0.0000017856,0.0000017885, -0.0000017927,0.0000017956,0.0000017951,0.0000017924,0.0000017885, -0.0000017840,0.0000017783,0.0000017726,0.0000017673,0.0000017634, -0.0000017611,0.0000017591,0.0000017564,0.0000017522,0.0000017470, -0.0000017429,0.0000017421,0.0000017435,0.0000017452,0.0000017450, -0.0000017424,0.0000017376,0.0000017314,0.0000017256,0.0000017207, -0.0000017177,0.0000017167,0.0000017196,0.0000017248,0.0000017286, -0.0000017289,0.0000017257,0.0000017206,0.0000017174,0.0000017164, -0.0000017158,0.0000017163,0.0000017179,0.0000017198,0.0000017206, -0.0000017193,0.0000017195,0.0000017212,0.0000017189,0.0000017124, -0.0000017085,0.0000017086,0.0000017094,0.0000017101,0.0000017107, -0.0000017144,0.0000017210,0.0000017256,0.0000017267,0.0000017252, -0.0000017203,0.0000017131,0.0000017077,0.0000017067,0.0000017140, -0.0000017329,0.0000017649,0.0000018014,0.0000018293,0.0000018436, -0.0000018479,0.0000018472,0.0000018462,0.0000018442,0.0000018434, -0.0000018438,0.0000018436,0.0000018436,0.0000018445,0.0000018449, -0.0000018447,0.0000018449,0.0000018472,0.0000018511,0.0000018552, -0.0000018575,0.0000018586,0.0000018587,0.0000018591,0.0000018594, -0.0000018593,0.0000018588,0.0000018576,0.0000018550,0.0000018522, -0.0000018507,0.0000018500,0.0000018486,0.0000018474,0.0000018475, -0.0000018487,0.0000018488,0.0000018471,0.0000018456,0.0000018458, -0.0000018467,0.0000018459,0.0000018425,0.0000018387,0.0000018359, -0.0000018331,0.0000018300,0.0000018283,0.0000018298,0.0000018332, -0.0000018374,0.0000018419,0.0000018457,0.0000018470,0.0000018459, -0.0000018417,0.0000018346,0.0000018267,0.0000018195,0.0000018136, -0.0000018101,0.0000018090,0.0000018092,0.0000018113,0.0000018155, -0.0000018180,0.0000018188,0.0000018245,0.0000018331,0.0000018374, -0.0000018391,0.0000018415,0.0000018432,0.0000018465,0.0000018560, -0.0000018560,0.0000018391,0.0000018228,0.0000018181,0.0000018189, -0.0000018195,0.0000018173,0.0000018135,0.0000018132,0.0000018150, -0.0000018165,0.0000018180,0.0000018193,0.0000018200,0.0000018206, -0.0000018200,0.0000018177,0.0000018135,0.0000018079,0.0000018022, -0.0000017992,0.0000018005,0.0000018036,0.0000018058,0.0000018075, -0.0000018081,0.0000018077,0.0000018079,0.0000018084,0.0000018084, -0.0000018079,0.0000018062,0.0000018032,0.0000018002,0.0000017993, -0.0000018003,0.0000018011,0.0000017985,0.0000017945,0.0000017952, -0.0000018027,0.0000018129,0.0000018216,0.0000018241,0.0000018163, -0.0000018003,0.0000017944,0.0000017949,0.0000017951,0.0000017913, -0.0000017828,0.0000017755,0.0000017681,0.0000017586,0.0000017518, -0.0000017506,0.0000017564,0.0000017800,0.0000018165,0.0000018435, -0.0000018517,0.0000018511,0.0000018351,0.0000018166,0.0000018127, -0.0000018114,0.0000017997,0.0000017880,0.0000017840,0.0000017739, -0.0000017580,0.0000017476,0.0000017446,0.0000017461,0.0000017491, -0.0000017514,0.0000017516,0.0000017508,0.0000017510,0.0000017509, -0.0000017477,0.0000017477,0.0000017567,0.0000017684,0.0000017754, -0.0000017783,0.0000017807,0.0000017741,0.0000017599,0.0000017627, -0.0000017675,0.0000017764,0.0000017638,0.0000017467,0.0000017472, -0.0000017438,0.0000017443,0.0000017472,0.0000017531,0.0000017564, -0.0000017594,0.0000017564,0.0000017539,0.0000017553,0.0000017558, -0.0000017545,0.0000017540,0.0000017610,0.0000017728,0.0000017847, -0.0000018042,0.0000018124,0.0000018147,0.0000018199,0.0000018270, -0.0000018335,0.0000018354,0.0000018322,0.0000018248,0.0000018199, -0.0000018163,0.0000018016,0.0000017780,0.0000017671,0.0000017667, -0.0000017668,0.0000017667,0.0000017670,0.0000017670,0.0000017663, -0.0000017662,0.0000017661,0.0000017639,0.0000017606,0.0000017593, -0.0000017592,0.0000017600,0.0000017591,0.0000017565,0.0000017543, -0.0000017596,0.0000017771,0.0000017931,0.0000017971,0.0000017941, -0.0000017936,0.0000017997,0.0000018077,0.0000018139,0.0000018186, -0.0000018215,0.0000018229,0.0000018252,0.0000018332,0.0000018459, -0.0000018528,0.0000018536,0.0000018578,0.0000018625,0.0000018583, -0.0000018496,0.0000018387,0.0000018211,0.0000018117,0.0000018168, -0.0000018258,0.0000018312,0.0000018365,0.0000018406,0.0000018390, -0.0000018343,0.0000018330,0.0000018366,0.0000018406,0.0000018428, -0.0000018446,0.0000018458,0.0000018444,0.0000018378,0.0000018290, -0.0000018248,0.0000018271,0.0000018331,0.0000018355,0.0000018336, -0.0000018324,0.0000018353,0.0000018395,0.0000018409,0.0000018409, -0.0000018411,0.0000018418,0.0000018429,0.0000018443,0.0000018457, -0.0000018466,0.0000018473,0.0000018486,0.0000018500,0.0000018509, -0.0000018513,0.0000018512,0.0000018508,0.0000018502,0.0000018496, -0.0000018494,0.0000018492,0.0000018491,0.0000018487,0.0000018481, -0.0000018473,0.0000018464,0.0000018460,0.0000018462,0.0000018475, -0.0000018494,0.0000018514,0.0000018530,0.0000018544,0.0000018564, -0.0000018590,0.0000018620,0.0000018658,0.0000018702,0.0000018741, -0.0000018777,0.0000018807,0.0000018826,0.0000018836,0.0000018838, -0.0000018830,0.0000018812,0.0000018783,0.0000018750,0.0000018717, -0.0000018692,0.0000018671,0.0000018655,0.0000018635,0.0000018597, -0.0000018567,0.0000018548,0.0000018553,0.0000018573,0.0000018615, -0.0000018688,0.0000018781,0.0000018909,0.0000019085,0.0000019304, -0.0000019507,0.0000019587,0.0000019545,0.0000019491,0.0000019532, -0.0000019645,0.0000019695,0.0000019663,0.0000019605,0.0000019606, -0.0000019711,0.0000019836,0.0000019872,0.0000019850,0.0000019816, -0.0000019796,0.0000019798,0.0000019822,0.0000019844,0.0000019839, -0.0000019826,0.0000019835,0.0000019875,0.0000019914,0.0000019944, -0.0000019971,0.0000019986,0.0000019983,0.0000019976,0.0000019979, -0.0000019995,0.0000020017,0.0000020045,0.0000020078,0.0000020112, -0.0000020145,0.0000020145,0.0000020149,0.0000020154,0.0000020164, -0.0000020161,0.0000020150,0.0000020147,0.0000020143,0.0000020134, -0.0000020125,0.0000020111,0.0000020097,0.0000020080,0.0000020063, -0.0000020042,0.0000020022,0.0000019993,0.0000019968,0.0000019946, -0.0000019922,0.0000019897,0.0000019868,0.0000019829,0.0000019781, -0.0000019729,0.0000019676,0.0000019638,0.0000019608,0.0000019579, -0.0000019554,0.0000019537,0.0000019523,0.0000019509,0.0000019498, -0.0000019491,0.0000019484,0.0000019474,0.0000019479,0.0000019485, -0.0000019489,0.0000019489,0.0000019481,0.0000019474,0.0000019468, -0.0000019464,0.0000019458,0.0000019448,0.0000019438,0.0000019428, -0.0000019418,0.0000019412,0.0000019411,0.0000019418,0.0000019430, -0.0000019446,0.0000019468,0.0000019493,0.0000019520,0.0000019522, -0.0000019514,0.0000019467,0.0000019388,0.0000019265,0.0000019125, -0.0000018979,0.0000018831,0.0000018710,0.0000018603,0.0000018505, -0.0000018443,0.0000018410,0.0000018420,0.0000018450,0.0000018414, -0.0000018420,0.0000018449,0.0000018466,0.0000018484,0.0000018517, -0.0000018543,0.0000018557,0.0000018562,0.0000018562,0.0000018555, -0.0000018547,0.0000018542,0.0000018534,0.0000018522,0.0000018507, -0.0000018488,0.0000018468,0.0000018458,0.0000018453,0.0000018441, -0.0000018425,0.0000018417,0.0000018440,0.0000018476,0.0000018469, -0.0000018447,0.0000018502,0.0000018574,0.0000018663,0.0000018769, -0.0000018891,0.0000019013,0.0000019143,0.0000019275,0.0000019399, -0.0000019514,0.0000019623,0.0000019726,0.0000019824,0.0000019913, -0.0000019989,0.0000020048,0.0000020096,0.0000020140,0.0000020177, -0.0000020198,0.0000020207,0.0000020199,0.0000020193,0.0000020189, -0.0000020198,0.0000020171,0.0000020115,0.0000020048,0.0000019978, -0.0000019898,0.0000019805,0.0000019705,0.0000019605,0.0000019507, -0.0000019413,0.0000019321,0.0000019231,0.0000019147,0.0000019073, -0.0000019003,0.0000018937,0.0000018879,0.0000018829,0.0000018785, -0.0000018751,0.0000018729,0.0000018714,0.0000018704,0.0000018697, -0.0000018690,0.0000018686,0.0000018685,0.0000018688,0.0000018699, -0.0000018720,0.0000018753,0.0000018799,0.0000018869,0.0000018970, -0.0000019101,0.0000019249,0.0000019405,0.0000019555,0.0000019684, -0.0000019782,0.0000019842,0.0000019868,0.0000019870,0.0000019862, -0.0000019859,0.0000019867,0.0000019890,0.0000019920,0.0000019973, -0.0000020036,0.0000020067,0.0000020045,0.0000019959,0.0000019832, -0.0000019707,0.0000019638,0.0000019630,0.0000019651,0.0000019672, -0.0000019693,0.0000019724,0.0000019747,0.0000019733,0.0000019718, -0.0000019818,0.0000019994,0.0000020042,0.0000020038,0.0000019962, -0.0000019707,0.0000019400,0.0000019280,0.0000019299,0.0000019344, -0.0000019371,0.0000019424,0.0000019497,0.0000019599,0.0000019808, -0.0000020067,0.0000020263,0.0000020311,0.0000020266,0.0000020195, -0.0000020115,0.0000020014,0.0000019909,0.0000019815,0.0000019752, -0.0000019714,0.0000019696,0.0000019673,0.0000019656,0.0000019636, -0.0000019625,0.0000019639,0.0000019673,0.0000019718,0.0000019765, -0.0000019812,0.0000019855,0.0000019895,0.0000019930,0.0000019961, -0.0000019986,0.0000020002,0.0000020010,0.0000020016,0.0000020013, -0.0000020006,0.0000019998,0.0000019986,0.0000019967,0.0000019941, -0.0000019913,0.0000019897,0.0000019893,0.0000019897,0.0000019907, -0.0000019920,0.0000019938,0.0000019964,0.0000019994,0.0000020017, -0.0000020038,0.0000020062,0.0000020085,0.0000020104,0.0000020121, -0.0000020142,0.0000020166,0.0000020190,0.0000020207,0.0000020211, -0.0000020210,0.0000020205,0.0000020198,0.0000020191,0.0000020181, -0.0000020178,0.0000020172,0.0000020158,0.0000020132,0.0000020096, -0.0000020054,0.0000020026,0.0000020007,0.0000020022,0.0000020079, -0.0000020155,0.0000020224,0.0000020275,0.0000020294,0.0000020297, -0.0000020290,0.0000020275,0.0000020256,0.0000020235,0.0000020216, -0.0000020207,0.0000020191,0.0000020191,0.0000020200,0.0000020220, -0.0000020260,0.0000020307,0.0000020344,0.0000020359,0.0000020355, -0.0000020336,0.0000020303,0.0000020264,0.0000020221,0.0000020172, -0.0000020112,0.0000020046,0.0000019980,0.0000019920,0.0000019859, -0.0000019802,0.0000019745,0.0000019693,0.0000019664,0.0000019657, -0.0000019664,0.0000019684,0.0000019712,0.0000019743,0.0000019769, -0.0000019796,0.0000019823,0.0000019840,0.0000019854,0.0000019863, -0.0000019866,0.0000019861,0.0000019849,0.0000019838,0.0000019830, -0.0000019826,0.0000019824,0.0000019818,0.0000019813,0.0000019808, -0.0000019806,0.0000019808,0.0000019810,0.0000019814,0.0000019816, -0.0000019812,0.0000019805,0.0000019802,0.0000019802,0.0000019801, -0.0000019798,0.0000019787,0.0000019782,0.0000019774,0.0000019771, -0.0000019784,0.0000019803,0.0000019825,0.0000019843,0.0000019850, -0.0000019851,0.0000019849,0.0000019845,0.0000019842,0.0000019839, -0.0000019821,0.0000019795,0.0000019761,0.0000019714,0.0000019667, -0.0000019641,0.0000019638,0.0000019645,0.0000019647,0.0000019651, -0.0000019658,0.0000019668,0.0000019680,0.0000019719,0.0000019788, -0.0000019855,0.0000019898,0.0000019924,0.0000019933,0.0000019926, -0.0000019906,0.0000019900,0.0000019906,0.0000019909,0.0000019921, -0.0000019938,0.0000019946,0.0000019949,0.0000019953,0.0000019957, -0.0000019960,0.0000019975,0.0000020002,0.0000020034,0.0000020070, -0.0000020098,0.0000020106,0.0000020101,0.0000020094,0.0000020072, -0.0000020052,0.0000020043,0.0000020042,0.0000020042,0.0000020034, -0.0000020013,0.0000019987,0.0000019954,0.0000019912,0.0000019876, -0.0000019855,0.0000019852,0.0000019859,0.0000019866,0.0000019874, -0.0000019888,0.0000019903,0.0000019917,0.0000019931,0.0000019948, -0.0000019970,0.0000019992,0.0000020012,0.0000020033,0.0000020048, -0.0000020056,0.0000020059,0.0000020056,0.0000020042,0.0000020010, -0.0000019960,0.0000019897,0.0000019831,0.0000019771,0.0000019711, -0.0000019649,0.0000019584,0.0000019517,0.0000019450,0.0000019387, -0.0000019323,0.0000019258,0.0000019212,0.0000019181,0.0000019157, -0.0000019161,0.0000019187,0.0000019230,0.0000019277,0.0000019314, -0.0000019334,0.0000019328,0.0000019336,0.0000019344,0.0000019341, -0.0000019333,0.0000019317,0.0000019278,0.0000019211,0.0000019154, -0.0000019128,0.0000019136,0.0000019161,0.0000019196,0.0000019252, -0.0000019318,0.0000019378,0.0000019423,0.0000019436,0.0000019436, -0.0000019419,0.0000019399,0.0000019384,0.0000019376,0.0000019376, -0.0000019381,0.0000019380,0.0000019358,0.0000019308,0.0000019254, -0.0000019200,0.0000019148,0.0000019087,0.0000019007,0.0000018930, -0.0000018887,0.0000018891,0.0000018922,0.0000018954,0.0000018970, -0.0000018930,0.0000018852,0.0000018780,0.0000018725,0.0000018693, -0.0000018684,0.0000018698,0.0000018716,0.0000018725,0.0000018711, -0.0000018675,0.0000018631,0.0000018580,0.0000018538,0.0000018493, -0.0000018448,0.0000018418,0.0000018413,0.0000018436,0.0000018493, -0.0000018561,0.0000018626,0.0000018664,0.0000018691,0.0000018725, -0.0000018775,0.0000018833,0.0000018883,0.0000018936,0.0000019005, -0.0000019067,0.0000019100,0.0000019122,0.0000019132,0.0000019146, -0.0000019147,0.0000019128,0.0000019101,0.0000019083,0.0000019069, -0.0000019044,0.0000019007,0.0000018963,0.0000018929,0.0000018921, -0.0000018929,0.0000018957,0.0000018981,0.0000018987,0.0000018963, -0.0000018923,0.0000018917,0.0000018952,0.0000019004,0.0000019037, -0.0000019044,0.0000019024,0.0000018976,0.0000018924,0.0000018881, -0.0000018844,0.0000018799,0.0000018736,0.0000018659,0.0000018581, -0.0000018522,0.0000018477,0.0000018438,0.0000018400,0.0000018348, -0.0000018266,0.0000018196,0.0000018144,0.0000018114,0.0000018092, -0.0000018058,0.0000018008,0.0000017963,0.0000017948,0.0000017957, -0.0000017980,0.0000018005,0.0000018011,0.0000018005,0.0000017986, -0.0000017955,0.0000017908,0.0000017850,0.0000017786,0.0000017722, -0.0000017674,0.0000017639,0.0000017606,0.0000017571,0.0000017528, -0.0000017481,0.0000017449,0.0000017449,0.0000017473,0.0000017502, -0.0000017516,0.0000017501,0.0000017450,0.0000017374,0.0000017296, -0.0000017225,0.0000017172,0.0000017173,0.0000017206,0.0000017247, -0.0000017273,0.0000017264,0.0000017227,0.0000017198,0.0000017198, -0.0000017198,0.0000017195,0.0000017197,0.0000017209,0.0000017225, -0.0000017225,0.0000017211,0.0000017218,0.0000017220,0.0000017178, -0.0000017120,0.0000017101,0.0000017109,0.0000017119,0.0000017120, -0.0000017134,0.0000017186,0.0000017248,0.0000017284,0.0000017291, -0.0000017255,0.0000017178,0.0000017101,0.0000017070,0.0000017073, -0.0000017108,0.0000017262,0.0000017570,0.0000017922,0.0000018208, -0.0000018380,0.0000018456,0.0000018474,0.0000018473,0.0000018486, -0.0000018494,0.0000018488,0.0000018479,0.0000018471,0.0000018464, -0.0000018453,0.0000018442,0.0000018452,0.0000018484,0.0000018525, -0.0000018560,0.0000018578,0.0000018587,0.0000018599,0.0000018610, -0.0000018611,0.0000018602,0.0000018582,0.0000018550,0.0000018526, -0.0000018521,0.0000018520,0.0000018506,0.0000018484,0.0000018476, -0.0000018485,0.0000018489,0.0000018477,0.0000018463,0.0000018463, -0.0000018469,0.0000018459,0.0000018423,0.0000018388,0.0000018373, -0.0000018357,0.0000018327,0.0000018305,0.0000018309,0.0000018342, -0.0000018385,0.0000018425,0.0000018449,0.0000018450,0.0000018417, -0.0000018346,0.0000018265,0.0000018198,0.0000018139,0.0000018091, -0.0000018072,0.0000018074,0.0000018088,0.0000018116,0.0000018145, -0.0000018154,0.0000018163,0.0000018234,0.0000018332,0.0000018364, -0.0000018382,0.0000018411,0.0000018436,0.0000018459,0.0000018545, -0.0000018546,0.0000018383,0.0000018213,0.0000018170,0.0000018186, -0.0000018192,0.0000018156,0.0000018133,0.0000018147,0.0000018172, -0.0000018184,0.0000018196,0.0000018213,0.0000018227,0.0000018223, -0.0000018192,0.0000018135,0.0000018063,0.0000018000,0.0000017971, -0.0000017986,0.0000018021,0.0000018041,0.0000018048,0.0000018052, -0.0000018060,0.0000018072,0.0000018077,0.0000018071,0.0000018059, -0.0000018042,0.0000018015,0.0000017988,0.0000017978,0.0000017991, -0.0000018011,0.0000018003,0.0000017966,0.0000017950,0.0000017997, -0.0000018096,0.0000018205,0.0000018266,0.0000018259,0.0000018131, -0.0000017968,0.0000017940,0.0000017952,0.0000017927,0.0000017848, -0.0000017767,0.0000017697,0.0000017612,0.0000017530,0.0000017509, -0.0000017570,0.0000017764,0.0000018083,0.0000018372,0.0000018497, -0.0000018512,0.0000018455,0.0000018250,0.0000018103,0.0000018084, -0.0000018041,0.0000017926,0.0000017854,0.0000017843,0.0000017751, -0.0000017593,0.0000017490,0.0000017444,0.0000017437,0.0000017454, -0.0000017474,0.0000017487,0.0000017507,0.0000017523,0.0000017498, -0.0000017464,0.0000017496,0.0000017615,0.0000017710,0.0000017752, -0.0000017774,0.0000017778,0.0000017654,0.0000017599,0.0000017656, -0.0000017730,0.0000017748,0.0000017527,0.0000017481,0.0000017466, -0.0000017446,0.0000017461,0.0000017520,0.0000017577,0.0000017637, -0.0000017622,0.0000017567,0.0000017562,0.0000017569,0.0000017557, -0.0000017541,0.0000017544,0.0000017626,0.0000017739,0.0000017878, -0.0000018066,0.0000018132,0.0000018160,0.0000018222,0.0000018291, -0.0000018329,0.0000018317,0.0000018248,0.0000018183,0.0000018165, -0.0000018095,0.0000017902,0.0000017714,0.0000017668,0.0000017665, -0.0000017668,0.0000017665,0.0000017654,0.0000017646,0.0000017648, -0.0000017659,0.0000017657,0.0000017627,0.0000017605,0.0000017603, -0.0000017626,0.0000017622,0.0000017599,0.0000017554,0.0000017520, -0.0000017590,0.0000017785,0.0000017939,0.0000017950,0.0000017921, -0.0000017961,0.0000018042,0.0000018109,0.0000018155,0.0000018188, -0.0000018214,0.0000018236,0.0000018274,0.0000018368,0.0000018483, -0.0000018538,0.0000018554,0.0000018603,0.0000018618,0.0000018552, -0.0000018463,0.0000018328,0.0000018166,0.0000018130,0.0000018198, -0.0000018267,0.0000018312,0.0000018369,0.0000018404,0.0000018385, -0.0000018330,0.0000018307,0.0000018324,0.0000018368,0.0000018407, -0.0000018434,0.0000018440,0.0000018412,0.0000018329,0.0000018259, -0.0000018259,0.0000018302,0.0000018322,0.0000018297,0.0000018287, -0.0000018323,0.0000018366,0.0000018377,0.0000018373,0.0000018369, -0.0000018371,0.0000018377,0.0000018389,0.0000018405,0.0000018417, -0.0000018420,0.0000018420,0.0000018420,0.0000018421,0.0000018423, -0.0000018426,0.0000018428,0.0000018428,0.0000018425,0.0000018420, -0.0000018413,0.0000018404,0.0000018395,0.0000018385,0.0000018373, -0.0000018361,0.0000018355,0.0000018357,0.0000018372,0.0000018395, -0.0000018421,0.0000018443,0.0000018467,0.0000018498,0.0000018531, -0.0000018558,0.0000018584,0.0000018608,0.0000018629,0.0000018651, -0.0000018673,0.0000018695,0.0000018721,0.0000018748,0.0000018769, -0.0000018772,0.0000018759,0.0000018732,0.0000018696,0.0000018665, -0.0000018648,0.0000018653,0.0000018658,0.0000018646,0.0000018647, -0.0000018629,0.0000018607,0.0000018585,0.0000018567,0.0000018573, -0.0000018569,0.0000018622,0.0000018739,0.0000018980,0.0000019313, -0.0000019528,0.0000019546,0.0000019534,0.0000019615,0.0000019727, -0.0000019769,0.0000019748,0.0000019682,0.0000019671,0.0000019787, -0.0000019900,0.0000019910,0.0000019864,0.0000019819,0.0000019790, -0.0000019793,0.0000019825,0.0000019840,0.0000019822,0.0000019819, -0.0000019853,0.0000019902,0.0000019938,0.0000019974,0.0000020005, -0.0000020017,0.0000020018,0.0000020026,0.0000020048,0.0000020081, -0.0000020114,0.0000020129,0.0000020141,0.0000020140,0.0000020130, -0.0000020117,0.0000020106,0.0000020100,0.0000020090,0.0000020085, -0.0000020074,0.0000020059,0.0000020046,0.0000020043,0.0000020034, -0.0000020016,0.0000019998,0.0000019975,0.0000019941,0.0000019905, -0.0000019858,0.0000019803,0.0000019743,0.0000019689,0.0000019648, -0.0000019606,0.0000019558,0.0000019510,0.0000019466,0.0000019436, -0.0000019420,0.0000019414,0.0000019409,0.0000019408,0.0000019414, -0.0000019424,0.0000019429,0.0000019431,0.0000019441,0.0000019452, -0.0000019461,0.0000019468,0.0000019475,0.0000019479,0.0000019480, -0.0000019478,0.0000019476,0.0000019470,0.0000019460,0.0000019448, -0.0000019437,0.0000019430,0.0000019421,0.0000019409,0.0000019403, -0.0000019405,0.0000019423,0.0000019457,0.0000019493,0.0000019522, -0.0000019528,0.0000019505,0.0000019422,0.0000019270,0.0000019066, -0.0000018838,0.0000018621,0.0000018456,0.0000018342,0.0000018302, -0.0000018326,0.0000018331,0.0000018375,0.0000018435,0.0000018498, -0.0000018569,0.0000018640,0.0000018711,0.0000018770,0.0000018788, -0.0000018804,0.0000018817,0.0000018845,0.0000018869,0.0000018876, -0.0000018881,0.0000018883,0.0000018887,0.0000018894,0.0000018904, -0.0000018915,0.0000018924,0.0000018927,0.0000018918,0.0000018908, -0.0000018909,0.0000018918,0.0000018928,0.0000018892,0.0000018840, -0.0000018770,0.0000018687,0.0000018597,0.0000018510,0.0000018441, -0.0000018396,0.0000018376,0.0000018381,0.0000018424,0.0000018480, -0.0000018523,0.0000018625,0.0000018747,0.0000018886,0.0000019021, -0.0000019158,0.0000019296,0.0000019418,0.0000019528,0.0000019627, -0.0000019726,0.0000019826,0.0000019922,0.0000020001,0.0000020059, -0.0000020103,0.0000020137,0.0000020165,0.0000020189,0.0000020209, -0.0000020218,0.0000020228,0.0000020240,0.0000020253,0.0000020246, -0.0000020200,0.0000020142,0.0000020081,0.0000020012,0.0000019931, -0.0000019844,0.0000019757,0.0000019672,0.0000019589,0.0000019511, -0.0000019441,0.0000019381,0.0000019329,0.0000019288,0.0000019256, -0.0000019232,0.0000019215,0.0000019204,0.0000019202,0.0000019204, -0.0000019211,0.0000019229,0.0000019257,0.0000019296,0.0000019343, -0.0000019402,0.0000019477,0.0000019568,0.0000019665,0.0000019757, -0.0000019830,0.0000019877,0.0000019900,0.0000019901,0.0000019890, -0.0000019880,0.0000019876,0.0000019881,0.0000019897,0.0000019924, -0.0000019958,0.0000019998,0.0000020035,0.0000020044,0.0000020014, -0.0000019966,0.0000019906,0.0000019791,0.0000019667,0.0000019626, -0.0000019635,0.0000019651,0.0000019664,0.0000019695,0.0000019733, -0.0000019738,0.0000019704,0.0000019773,0.0000019969,0.0000020053, -0.0000020053,0.0000020016,0.0000019796,0.0000019485,0.0000019358, -0.0000019376,0.0000019409,0.0000019434,0.0000019489,0.0000019550, -0.0000019715,0.0000019990,0.0000020237,0.0000020331,0.0000020307, -0.0000020228,0.0000020133,0.0000020025,0.0000019913,0.0000019816, -0.0000019753,0.0000019717,0.0000019700,0.0000019680,0.0000019662, -0.0000019657,0.0000019671,0.0000019712,0.0000019788,0.0000019867, -0.0000019947,0.0000020017,0.0000020069,0.0000020096,0.0000020120, -0.0000020148,0.0000020166,0.0000020177,0.0000020187,0.0000020200, -0.0000020210,0.0000020214,0.0000020212,0.0000020209,0.0000020207, -0.0000020202,0.0000020191,0.0000020176,0.0000020167,0.0000020162, -0.0000020164,0.0000020172,0.0000020182,0.0000020192,0.0000020207, -0.0000020226,0.0000020244,0.0000020257,0.0000020269,0.0000020280, -0.0000020282,0.0000020280,0.0000020276,0.0000020278,0.0000020282, -0.0000020286,0.0000020297,0.0000020302,0.0000020299,0.0000020275, -0.0000020253,0.0000020218,0.0000020179,0.0000020132,0.0000020081, -0.0000020040,0.0000020024,0.0000020030,0.0000020057,0.0000020101, -0.0000020163,0.0000020223,0.0000020255,0.0000020271,0.0000020271, -0.0000020258,0.0000020246,0.0000020232,0.0000020222,0.0000020213, -0.0000020217,0.0000020228,0.0000020241,0.0000020260,0.0000020286, -0.0000020318,0.0000020347,0.0000020372,0.0000020392,0.0000020396, -0.0000020389,0.0000020378,0.0000020364,0.0000020346,0.0000020321, -0.0000020290,0.0000020252,0.0000020207,0.0000020156,0.0000020100, -0.0000020040,0.0000019985,0.0000019947,0.0000019918,0.0000019893, -0.0000019883,0.0000019884,0.0000019893,0.0000019904,0.0000019915, -0.0000019927,0.0000019933,0.0000019939,0.0000019944,0.0000019956, -0.0000019970,0.0000019979,0.0000019984,0.0000019980,0.0000019969, -0.0000019963,0.0000019953,0.0000019947,0.0000019951,0.0000019950, -0.0000019944,0.0000019941,0.0000019940,0.0000019943,0.0000019942, -0.0000019940,0.0000019933,0.0000019921,0.0000019902,0.0000019880, -0.0000019859,0.0000019840,0.0000019824,0.0000019801,0.0000019784, -0.0000019772,0.0000019771,0.0000019784,0.0000019801,0.0000019824, -0.0000019850,0.0000019868,0.0000019886,0.0000019894,0.0000019902, -0.0000019905,0.0000019898,0.0000019888,0.0000019869,0.0000019845, -0.0000019798,0.0000019733,0.0000019682,0.0000019677,0.0000019694, -0.0000019709,0.0000019717,0.0000019726,0.0000019734,0.0000019746, -0.0000019771,0.0000019825,0.0000019864,0.0000019889,0.0000019904, -0.0000019914,0.0000019916,0.0000019903,0.0000019909,0.0000019920, -0.0000019928,0.0000019955,0.0000019982,0.0000020010,0.0000020037, -0.0000020059,0.0000020078,0.0000020097,0.0000020118,0.0000020132, -0.0000020143,0.0000020156,0.0000020154,0.0000020145,0.0000020131, -0.0000020123,0.0000020122,0.0000020116,0.0000020108,0.0000020103, -0.0000020093,0.0000020078,0.0000020051,0.0000020023,0.0000019985, -0.0000019943,0.0000019913,0.0000019897,0.0000019896,0.0000019906, -0.0000019918,0.0000019932,0.0000019947,0.0000019957,0.0000019966, -0.0000019977,0.0000019991,0.0000020008,0.0000020028,0.0000020046, -0.0000020055,0.0000020060,0.0000020065,0.0000020070,0.0000020074, -0.0000020070,0.0000020046,0.0000020010,0.0000019969,0.0000019921, -0.0000019864,0.0000019800,0.0000019734,0.0000019672,0.0000019614, -0.0000019562,0.0000019510,0.0000019446,0.0000019381,0.0000019327, -0.0000019272,0.0000019230,0.0000019217,0.0000019226,0.0000019250, -0.0000019284,0.0000019301,0.0000019309,0.0000019311,0.0000019332, -0.0000019353,0.0000019355,0.0000019347,0.0000019322,0.0000019271, -0.0000019212,0.0000019171,0.0000019164,0.0000019176,0.0000019194, -0.0000019224,0.0000019270,0.0000019321,0.0000019367,0.0000019399, -0.0000019417,0.0000019426,0.0000019421,0.0000019425,0.0000019406, -0.0000019386,0.0000019379,0.0000019383,0.0000019382,0.0000019367, -0.0000019336,0.0000019309,0.0000019278,0.0000019246,0.0000019204, -0.0000019136,0.0000019053,0.0000018980,0.0000018943,0.0000018943, -0.0000018972,0.0000018995,0.0000018986,0.0000018947,0.0000018892, -0.0000018833,0.0000018781,0.0000018749,0.0000018736,0.0000018726, -0.0000018710,0.0000018685,0.0000018662,0.0000018630,0.0000018587, -0.0000018539,0.0000018485,0.0000018433,0.0000018403,0.0000018407, -0.0000018422,0.0000018467,0.0000018523,0.0000018584,0.0000018618, -0.0000018650,0.0000018688,0.0000018741,0.0000018792,0.0000018834, -0.0000018887,0.0000018964,0.0000019046,0.0000019106,0.0000019139, -0.0000019166,0.0000019194,0.0000019200,0.0000019180,0.0000019155, -0.0000019138,0.0000019119,0.0000019082,0.0000019030,0.0000018982, -0.0000018958,0.0000018960,0.0000018980,0.0000019000,0.0000019013, -0.0000019012,0.0000018991,0.0000018971,0.0000018974,0.0000019001, -0.0000019031,0.0000019046,0.0000019047,0.0000019025,0.0000018991, -0.0000018961,0.0000018944,0.0000018924,0.0000018887,0.0000018814, -0.0000018718,0.0000018629,0.0000018564,0.0000018504,0.0000018443, -0.0000018400,0.0000018350,0.0000018308,0.0000018264,0.0000018231, -0.0000018207,0.0000018175,0.0000018133,0.0000018088,0.0000018060, -0.0000018059,0.0000018071,0.0000018086,0.0000018094,0.0000018093, -0.0000018080,0.0000018052,0.0000018009,0.0000017953,0.0000017894, -0.0000017828,0.0000017767,0.0000017716,0.0000017669,0.0000017622, -0.0000017577,0.0000017530,0.0000017488,0.0000017467,0.0000017475, -0.0000017506,0.0000017550,0.0000017578,0.0000017571,0.0000017526, -0.0000017457,0.0000017374,0.0000017287,0.0000017232,0.0000017231, -0.0000017249,0.0000017269,0.0000017268,0.0000017239,0.0000017210, -0.0000017209,0.0000017221,0.0000017224,0.0000017221,0.0000017223, -0.0000017234,0.0000017247,0.0000017244,0.0000017228,0.0000017229, -0.0000017221,0.0000017177,0.0000017132,0.0000017133,0.0000017157, -0.0000017171,0.0000017175,0.0000017194,0.0000017250,0.0000017304, -0.0000017331,0.0000017322,0.0000017259,0.0000017165,0.0000017104, -0.0000017082,0.0000017071,0.0000017083,0.0000017228,0.0000017492, -0.0000017800,0.0000018055,0.0000018239,0.0000018356,0.0000018426, -0.0000018481,0.0000018499,0.0000018491,0.0000018481,0.0000018470, -0.0000018460,0.0000018448,0.0000018432,0.0000018432,0.0000018453, -0.0000018491,0.0000018529,0.0000018556,0.0000018572,0.0000018595, -0.0000018615,0.0000018622,0.0000018613,0.0000018587,0.0000018546, -0.0000018525,0.0000018532,0.0000018538,0.0000018526,0.0000018501, -0.0000018486,0.0000018491,0.0000018494,0.0000018485,0.0000018470, -0.0000018466,0.0000018470,0.0000018459,0.0000018422,0.0000018387, -0.0000018376,0.0000018370,0.0000018350,0.0000018326,0.0000018327, -0.0000018359,0.0000018395,0.0000018421,0.0000018429,0.0000018415, -0.0000018350,0.0000018262,0.0000018192,0.0000018137,0.0000018091, -0.0000018067,0.0000018068,0.0000018078,0.0000018090,0.0000018106, -0.0000018121,0.0000018131,0.0000018161,0.0000018253,0.0000018340, -0.0000018354,0.0000018377,0.0000018415,0.0000018447,0.0000018459, -0.0000018531,0.0000018535,0.0000018370,0.0000018203,0.0000018168, -0.0000018183,0.0000018175,0.0000018137,0.0000018131,0.0000018161, -0.0000018185,0.0000018197,0.0000018226,0.0000018250,0.0000018247, -0.0000018208,0.0000018131,0.0000018041,0.0000017979,0.0000017960, -0.0000017973,0.0000018001,0.0000018016,0.0000018020,0.0000018030, -0.0000018047,0.0000018063,0.0000018068,0.0000018056,0.0000018036, -0.0000018018,0.0000017996,0.0000017973,0.0000017963,0.0000017974, -0.0000018001,0.0000018007,0.0000017984,0.0000017957,0.0000017973, -0.0000018055,0.0000018175,0.0000018266,0.0000018289,0.0000018250, -0.0000018100,0.0000017955,0.0000017942,0.0000017938,0.0000017880, -0.0000017791,0.0000017711,0.0000017635,0.0000017557,0.0000017536, -0.0000017603,0.0000017767,0.0000018034,0.0000018309,0.0000018462, -0.0000018499,0.0000018495,0.0000018386,0.0000018170,0.0000018052, -0.0000018027,0.0000017964,0.0000017871,0.0000017844,0.0000017846, -0.0000017760,0.0000017612,0.0000017517,0.0000017469,0.0000017447, -0.0000017460,0.0000017484,0.0000017520,0.0000017549,0.0000017533, -0.0000017473,0.0000017462,0.0000017550,0.0000017658,0.0000017730, -0.0000017748,0.0000017771,0.0000017731,0.0000017606,0.0000017636, -0.0000017688,0.0000017777,0.0000017651,0.0000017491,0.0000017490, -0.0000017459,0.0000017461,0.0000017509,0.0000017587,0.0000017672, -0.0000017684,0.0000017616,0.0000017581,0.0000017587,0.0000017576, -0.0000017556,0.0000017540,0.0000017549,0.0000017640,0.0000017749, -0.0000017892,0.0000018070,0.0000018129,0.0000018165,0.0000018232, -0.0000018287,0.0000018295,0.0000018247,0.0000018175,0.0000018147, -0.0000018130,0.0000018036,0.0000017861,0.0000017718,0.0000017666, -0.0000017654,0.0000017648,0.0000017640,0.0000017643,0.0000017655, -0.0000017672,0.0000017674,0.0000017646,0.0000017615,0.0000017615, -0.0000017651,0.0000017670,0.0000017658,0.0000017609,0.0000017530, -0.0000017503,0.0000017622,0.0000017846,0.0000017945,0.0000017918, -0.0000017927,0.0000018002,0.0000018079,0.0000018123,0.0000018147, -0.0000018173,0.0000018209,0.0000018244,0.0000018303,0.0000018407, -0.0000018510,0.0000018551,0.0000018573,0.0000018612,0.0000018595, -0.0000018519,0.0000018426,0.0000018281,0.0000018146,0.0000018137, -0.0000018213,0.0000018274,0.0000018322,0.0000018380,0.0000018404, -0.0000018385,0.0000018325,0.0000018280,0.0000018288,0.0000018337, -0.0000018389,0.0000018418,0.0000018414,0.0000018358,0.0000018278, -0.0000018253,0.0000018279,0.0000018288,0.0000018268,0.0000018266, -0.0000018301,0.0000018340,0.0000018352,0.0000018348,0.0000018340, -0.0000018338,0.0000018342,0.0000018360,0.0000018389,0.0000018415, -0.0000018429,0.0000018429,0.0000018424,0.0000018415,0.0000018410, -0.0000018398,0.0000018390,0.0000018384,0.0000018379,0.0000018370, -0.0000018356,0.0000018341,0.0000018328,0.0000018313,0.0000018297, -0.0000018278,0.0000018261,0.0000018255,0.0000018259,0.0000018276, -0.0000018296,0.0000018312,0.0000018330,0.0000018357,0.0000018392, -0.0000018434,0.0000018480,0.0000018526,0.0000018563,0.0000018588, -0.0000018599,0.0000018603,0.0000018606,0.0000018612,0.0000018624, -0.0000018645,0.0000018661,0.0000018663,0.0000018652,0.0000018635, -0.0000018622,0.0000018623,0.0000018629,0.0000018639,0.0000018659, -0.0000018673,0.0000018669,0.0000018656,0.0000018621,0.0000018578, -0.0000018535,0.0000018516,0.0000018511,0.0000018703,0.0000019138, -0.0000019472,0.0000019548,0.0000019580,0.0000019693,0.0000019783, -0.0000019819,0.0000019795,0.0000019728,0.0000019756,0.0000019887, -0.0000019945,0.0000019915,0.0000019860,0.0000019816,0.0000019796, -0.0000019819,0.0000019846,0.0000019832,0.0000019820,0.0000019855, -0.0000019910,0.0000019949,0.0000019983,0.0000020015,0.0000020041, -0.0000020064,0.0000020088,0.0000020112,0.0000020122,0.0000020122, -0.0000020107,0.0000020090,0.0000020078,0.0000020076,0.0000020064, -0.0000020041,0.0000020025,0.0000019993,0.0000019963,0.0000019937, -0.0000019911,0.0000019886,0.0000019870,0.0000019846,0.0000019814, -0.0000019778,0.0000019739,0.0000019697,0.0000019656,0.0000019607, -0.0000019558,0.0000019519,0.0000019499,0.0000019482,0.0000019470, -0.0000019458,0.0000019453,0.0000019457,0.0000019461,0.0000019460, -0.0000019450,0.0000019441,0.0000019436,0.0000019435,0.0000019434, -0.0000019436,0.0000019434,0.0000019428,0.0000019425,0.0000019420, -0.0000019410,0.0000019411,0.0000019418,0.0000019420,0.0000019418, -0.0000019413,0.0000019407,0.0000019397,0.0000019389,0.0000019385, -0.0000019386,0.0000019390,0.0000019397,0.0000019409,0.0000019437, -0.0000019479,0.0000019520,0.0000019537,0.0000019517,0.0000019424, -0.0000019243,0.0000018992,0.0000018708,0.0000018450,0.0000018273, -0.0000018186,0.0000018197,0.0000018257,0.0000018365,0.0000018463, -0.0000018570,0.0000018662,0.0000018688,0.0000018719,0.0000018750, -0.0000018768,0.0000018771,0.0000018768,0.0000018763,0.0000018754, -0.0000018741,0.0000018723,0.0000018700,0.0000018678,0.0000018660, -0.0000018661,0.0000018666,0.0000018680,0.0000018701,0.0000018727, -0.0000018751,0.0000018772,0.0000018791,0.0000018822,0.0000018855, -0.0000018886,0.0000018914,0.0000018940,0.0000018959,0.0000018963, -0.0000018950,0.0000018918,0.0000018874,0.0000018824,0.0000018777, -0.0000018760,0.0000018734,0.0000018692,0.0000018649,0.0000018593, -0.0000018527,0.0000018481,0.0000018483,0.0000018528,0.0000018544, -0.0000018661,0.0000018780,0.0000018905,0.0000019042,0.0000019185, -0.0000019325,0.0000019458,0.0000019576,0.0000019684,0.0000019782, -0.0000019870,0.0000019950,0.0000020018,0.0000020075,0.0000020131, -0.0000020178,0.0000020214,0.0000020245,0.0000020269,0.0000020270, -0.0000020271,0.0000020279,0.0000020280,0.0000020269,0.0000020232, -0.0000020193,0.0000020151,0.0000020106,0.0000020057,0.0000020012, -0.0000019969,0.0000019930,0.0000019898,0.0000019869,0.0000019843, -0.0000019820,0.0000019804,0.0000019794,0.0000019785,0.0000019778, -0.0000019778,0.0000019781,0.0000019787,0.0000019796,0.0000019814, -0.0000019841,0.0000019877,0.0000019915,0.0000019944,0.0000019954, -0.0000019946,0.0000019926,0.0000019907,0.0000019897,0.0000019899, -0.0000019917,0.0000019939,0.0000019964,0.0000019989,0.0000020008, -0.0000020015,0.0000020005,0.0000019980,0.0000019967,0.0000019967, -0.0000019882,0.0000019712,0.0000019630,0.0000019631,0.0000019645, -0.0000019655,0.0000019681,0.0000019723,0.0000019734,0.0000019696, -0.0000019740,0.0000019953,0.0000020060,0.0000020063,0.0000020046, -0.0000019863,0.0000019567,0.0000019436,0.0000019445,0.0000019467, -0.0000019491,0.0000019536,0.0000019627,0.0000019873,0.0000020156, -0.0000020328,0.0000020333,0.0000020272,0.0000020168,0.0000020047, -0.0000019929,0.0000019824,0.0000019757,0.0000019722,0.0000019702, -0.0000019691,0.0000019681,0.0000019689,0.0000019728,0.0000019810, -0.0000019905,0.0000020003,0.0000020092,0.0000020136,0.0000020168, -0.0000020199,0.0000020187,0.0000020174,0.0000020184,0.0000020189, -0.0000020184,0.0000020178,0.0000020183,0.0000020192,0.0000020200, -0.0000020206,0.0000020212,0.0000020216,0.0000020219,0.0000020220, -0.0000020218,0.0000020219,0.0000020224,0.0000020232,0.0000020244, -0.0000020258,0.0000020269,0.0000020280,0.0000020293,0.0000020305, -0.0000020315,0.0000020323,0.0000020326,0.0000020323,0.0000020321, -0.0000020325,0.0000020333,0.0000020342,0.0000020342,0.0000020337, -0.0000020327,0.0000020300,0.0000020258,0.0000020201,0.0000020144, -0.0000020087,0.0000020037,0.0000020014,0.0000020025,0.0000020066, -0.0000020121,0.0000020171,0.0000020205,0.0000020232,0.0000020253, -0.0000020263,0.0000020267,0.0000020269,0.0000020273,0.0000020278, -0.0000020281,0.0000020290,0.0000020309,0.0000020337,0.0000020363, -0.0000020383,0.0000020402,0.0000020419,0.0000020432,0.0000020428, -0.0000020422,0.0000020419,0.0000020413,0.0000020404,0.0000020399, -0.0000020392,0.0000020382,0.0000020365,0.0000020339,0.0000020306, -0.0000020269,0.0000020234,0.0000020202,0.0000020165,0.0000020125, -0.0000020087,0.0000020058,0.0000020037,0.0000020023,0.0000020017, -0.0000020012,0.0000020006,0.0000020001,0.0000019996,0.0000019987, -0.0000019980,0.0000019976,0.0000019982,0.0000019992,0.0000020004, -0.0000020015,0.0000020027,0.0000020028,0.0000020027,0.0000020025, -0.0000020023,0.0000020028,0.0000020029,0.0000020027,0.0000020031, -0.0000020039,0.0000020044,0.0000020046,0.0000020044,0.0000020038, -0.0000020028,0.0000020012,0.0000019992,0.0000019969,0.0000019946, -0.0000019927,0.0000019902,0.0000019881,0.0000019867,0.0000019865, -0.0000019867,0.0000019874,0.0000019890,0.0000019908,0.0000019928, -0.0000019945,0.0000019958,0.0000019973,0.0000019977,0.0000019977, -0.0000019973,0.0000019960,0.0000019936,0.0000019883,0.0000019805, -0.0000019746,0.0000019722,0.0000019724,0.0000019728,0.0000019731, -0.0000019735,0.0000019734,0.0000019741,0.0000019755,0.0000019792, -0.0000019822,0.0000019849,0.0000019886,0.0000019913,0.0000019936, -0.0000019952,0.0000019980,0.0000020001,0.0000020035,0.0000020076, -0.0000020112,0.0000020144,0.0000020166,0.0000020174,0.0000020173, -0.0000020168,0.0000020163,0.0000020162,0.0000020167,0.0000020188, -0.0000020204,0.0000020222,0.0000020234,0.0000020251,0.0000020268, -0.0000020268,0.0000020249,0.0000020224,0.0000020197,0.0000020157, -0.0000020110,0.0000020064,0.0000020014,0.0000019968,0.0000019938, -0.0000019923,0.0000019930,0.0000019939,0.0000019952,0.0000019964, -0.0000019968,0.0000019971,0.0000019979,0.0000019987,0.0000020001, -0.0000020021,0.0000020037,0.0000020044,0.0000020045,0.0000020039, -0.0000020028,0.0000020012,0.0000019993,0.0000019974,0.0000019960, -0.0000019948,0.0000019930,0.0000019905,0.0000019867,0.0000019823, -0.0000019768,0.0000019708,0.0000019651,0.0000019600,0.0000019548, -0.0000019498,0.0000019457,0.0000019409,0.0000019361,0.0000019330, -0.0000019315,0.0000019313,0.0000019319,0.0000019325,0.0000019321, -0.0000019307,0.0000019310,0.0000019324,0.0000019338,0.0000019334, -0.0000019314,0.0000019276,0.0000019226,0.0000019186,0.0000019161, -0.0000019160,0.0000019177,0.0000019195,0.0000019222,0.0000019254, -0.0000019284,0.0000019312,0.0000019325,0.0000019347,0.0000019368, -0.0000019394,0.0000019398,0.0000019380,0.0000019358,0.0000019350, -0.0000019355,0.0000019360,0.0000019358,0.0000019349,0.0000019340, -0.0000019315,0.0000019287,0.0000019260,0.0000019218,0.0000019156, -0.0000019086,0.0000019027,0.0000018993,0.0000018992,0.0000019000, -0.0000018999,0.0000018986,0.0000018956,0.0000018914,0.0000018867, -0.0000018824,0.0000018792,0.0000018758,0.0000018720,0.0000018692, -0.0000018687,0.0000018676,0.0000018653,0.0000018610,0.0000018553, -0.0000018494,0.0000018459,0.0000018445,0.0000018451,0.0000018484, -0.0000018518,0.0000018569,0.0000018599,0.0000018636,0.0000018684, -0.0000018744,0.0000018795,0.0000018834,0.0000018878,0.0000018943, -0.0000019015,0.0000019071,0.0000019119,0.0000019171,0.0000019209, -0.0000019217,0.0000019202,0.0000019186,0.0000019175,0.0000019150, -0.0000019107,0.0000019050,0.0000019001,0.0000018985,0.0000019000, -0.0000019025,0.0000019037,0.0000019036,0.0000019028,0.0000019023, -0.0000019033,0.0000019051,0.0000019062,0.0000019061,0.0000019049, -0.0000019028,0.0000019000,0.0000018977,0.0000018968,0.0000018973, -0.0000018970,0.0000018946,0.0000018869,0.0000018765,0.0000018673, -0.0000018605,0.0000018530,0.0000018457,0.0000018399,0.0000018371, -0.0000018350,0.0000018331,0.0000018318,0.0000018295,0.0000018259, -0.0000018220,0.0000018183,0.0000018166,0.0000018165,0.0000018175, -0.0000018186,0.0000018195,0.0000018194,0.0000018175,0.0000018132, -0.0000018062,0.0000017984,0.0000017913,0.0000017849,0.0000017800, -0.0000017756,0.0000017705,0.0000017647,0.0000017587,0.0000017531, -0.0000017491,0.0000017481,0.0000017498,0.0000017537,0.0000017586, -0.0000017619,0.0000017623,0.0000017598,0.0000017547,0.0000017472, -0.0000017395,0.0000017353,0.0000017342,0.0000017345,0.0000017336, -0.0000017303,0.0000017264,0.0000017247,0.0000017254,0.0000017263, -0.0000017262,0.0000017256,0.0000017253,0.0000017259,0.0000017266, -0.0000017251,0.0000017235,0.0000017239,0.0000017228,0.0000017187, -0.0000017161,0.0000017179,0.0000017219,0.0000017244,0.0000017244, -0.0000017265,0.0000017320,0.0000017368,0.0000017379,0.0000017349, -0.0000017257,0.0000017172,0.0000017135,0.0000017103,0.0000017077, -0.0000017103,0.0000017204,0.0000017384,0.0000017578,0.0000017766, -0.0000017931,0.0000018080,0.0000018215,0.0000018299,0.0000018347, -0.0000018372,0.0000018379,0.0000018385,0.0000018394,0.0000018395, -0.0000018401,0.0000018422,0.0000018461,0.0000018502,0.0000018534, -0.0000018558,0.0000018590,0.0000018619,0.0000018626,0.0000018617, -0.0000018585,0.0000018542,0.0000018531,0.0000018550,0.0000018559, -0.0000018547,0.0000018519,0.0000018501,0.0000018505,0.0000018508, -0.0000018498,0.0000018474,0.0000018466,0.0000018471,0.0000018462, -0.0000018424,0.0000018388,0.0000018381,0.0000018381,0.0000018365, -0.0000018342,0.0000018345,0.0000018372,0.0000018396,0.0000018413, -0.0000018408,0.0000018354,0.0000018265,0.0000018190,0.0000018138, -0.0000018096,0.0000018074,0.0000018065,0.0000018064,0.0000018066, -0.0000018074,0.0000018089,0.0000018106,0.0000018133,0.0000018192, -0.0000018289,0.0000018340,0.0000018344,0.0000018380,0.0000018432, -0.0000018460,0.0000018454,0.0000018521,0.0000018530,0.0000018353, -0.0000018197,0.0000018165,0.0000018174,0.0000018149,0.0000018114, -0.0000018133,0.0000018175,0.0000018198,0.0000018230,0.0000018264, -0.0000018266,0.0000018223,0.0000018135,0.0000018028,0.0000017957, -0.0000017945,0.0000017959,0.0000017979,0.0000017991,0.0000017998, -0.0000018016,0.0000018039,0.0000018051,0.0000018050,0.0000018036, -0.0000018015,0.0000017998,0.0000017985,0.0000017971,0.0000017958, -0.0000017963,0.0000017988,0.0000018005,0.0000017997,0.0000017971, -0.0000017962,0.0000018014,0.0000018126,0.0000018239,0.0000018296, -0.0000018294,0.0000018235,0.0000018095,0.0000017963,0.0000017933, -0.0000017912,0.0000017853,0.0000017763,0.0000017679,0.0000017615, -0.0000017602,0.0000017664,0.0000017803,0.0000018026,0.0000018265, -0.0000018419,0.0000018478,0.0000018487,0.0000018459,0.0000018314, -0.0000018110,0.0000018012,0.0000017963,0.0000017893,0.0000017835, -0.0000017837,0.0000017850,0.0000017767,0.0000017628,0.0000017554, -0.0000017518,0.0000017494,0.0000017502,0.0000017540,0.0000017583, -0.0000017585,0.0000017512,0.0000017452,0.0000017499,0.0000017604, -0.0000017707,0.0000017739,0.0000017750,0.0000017760,0.0000017669, -0.0000017622,0.0000017667,0.0000017745,0.0000017768,0.0000017542, -0.0000017502,0.0000017485,0.0000017470,0.0000017502,0.0000017591, -0.0000017688,0.0000017735,0.0000017679,0.0000017608,0.0000017601, -0.0000017607,0.0000017584,0.0000017556,0.0000017540,0.0000017552, -0.0000017641,0.0000017745,0.0000017888,0.0000018056,0.0000018117, -0.0000018149,0.0000018207,0.0000018239,0.0000018226,0.0000018173, -0.0000018132,0.0000018126,0.0000018104,0.0000018021,0.0000017892, -0.0000017774,0.0000017700,0.0000017661,0.0000017648,0.0000017656, -0.0000017686,0.0000017707,0.0000017701,0.0000017663,0.0000017622, -0.0000017622,0.0000017671,0.0000017712,0.0000017718,0.0000017684, -0.0000017597,0.0000017510,0.0000017518,0.0000017716,0.0000017910, -0.0000017923,0.0000017906,0.0000017959,0.0000018041,0.0000018091, -0.0000018106,0.0000018117,0.0000018153,0.0000018205,0.0000018258, -0.0000018334,0.0000018445,0.0000018533,0.0000018560,0.0000018582, -0.0000018602,0.0000018566,0.0000018493,0.0000018397,0.0000018248, -0.0000018127,0.0000018147,0.0000018230,0.0000018287,0.0000018336, -0.0000018387,0.0000018404,0.0000018383,0.0000018315,0.0000018256, -0.0000018259,0.0000018316,0.0000018376,0.0000018395,0.0000018366, -0.0000018298,0.0000018269,0.0000018275,0.0000018272,0.0000018251, -0.0000018257,0.0000018294,0.0000018325,0.0000018335,0.0000018336, -0.0000018330,0.0000018326,0.0000018341,0.0000018377,0.0000018422, -0.0000018456,0.0000018472,0.0000018473,0.0000018471,0.0000018465, -0.0000018453,0.0000018439,0.0000018424,0.0000018406,0.0000018383, -0.0000018363,0.0000018328,0.0000018284,0.0000018245,0.0000018212, -0.0000018188,0.0000018172,0.0000018160,0.0000018153,0.0000018154, -0.0000018166,0.0000018180,0.0000018190,0.0000018200,0.0000018215, -0.0000018235,0.0000018255,0.0000018280,0.0000018314,0.0000018358, -0.0000018410,0.0000018461,0.0000018502,0.0000018528,0.0000018536, -0.0000018537,0.0000018537,0.0000018541,0.0000018552,0.0000018563, -0.0000018574,0.0000018580,0.0000018588,0.0000018596,0.0000018604, -0.0000018624,0.0000018642,0.0000018650,0.0000018648,0.0000018635, -0.0000018611,0.0000018570,0.0000018502,0.0000018460,0.0000018564, -0.0000019075,0.0000019475,0.0000019573,0.0000019660,0.0000019786, -0.0000019849,0.0000019854,0.0000019800,0.0000019774,0.0000019874, -0.0000019960,0.0000019951,0.0000019901,0.0000019856,0.0000019831, -0.0000019844,0.0000019863,0.0000019844,0.0000019836,0.0000019878, -0.0000019934,0.0000019969,0.0000020000,0.0000020030,0.0000020056, -0.0000020080,0.0000020098,0.0000020101,0.0000020090,0.0000020069, -0.0000020058,0.0000020054,0.0000020040,0.0000020012,0.0000019953, -0.0000019879,0.0000019822,0.0000019771,0.0000019725,0.0000019690, -0.0000019667,0.0000019638,0.0000019630,0.0000019618,0.0000019619, -0.0000019603,0.0000019598,0.0000019591,0.0000019583,0.0000019572, -0.0000019562,0.0000019561,0.0000019563,0.0000019571,0.0000019582, -0.0000019594,0.0000019603,0.0000019610,0.0000019608,0.0000019605, -0.0000019595,0.0000019580,0.0000019568,0.0000019561,0.0000019554, -0.0000019546,0.0000019537,0.0000019523,0.0000019502,0.0000019471, -0.0000019436,0.0000019407,0.0000019393,0.0000019389,0.0000019389, -0.0000019387,0.0000019379,0.0000019366,0.0000019355,0.0000019354, -0.0000019358,0.0000019369,0.0000019395,0.0000019439,0.0000019489, -0.0000019528,0.0000019540,0.0000019503,0.0000019368,0.0000019121, -0.0000018798,0.0000018475,0.0000018234,0.0000018116,0.0000018138, -0.0000018218,0.0000018338,0.0000018452,0.0000018536,0.0000018583, -0.0000018633,0.0000018655,0.0000018668,0.0000018674,0.0000018674, -0.0000018671,0.0000018663,0.0000018652,0.0000018641,0.0000018624, -0.0000018608,0.0000018597,0.0000018580,0.0000018562,0.0000018563, -0.0000018579,0.0000018599,0.0000018625,0.0000018652,0.0000018681, -0.0000018707,0.0000018726,0.0000018742,0.0000018762,0.0000018783, -0.0000018802,0.0000018816,0.0000018828,0.0000018838,0.0000018844, -0.0000018846,0.0000018845,0.0000018833,0.0000018803,0.0000018770, -0.0000018757,0.0000018776,0.0000018856,0.0000018953,0.0000018998, -0.0000019016,0.0000018918,0.0000018763,0.0000018605,0.0000018470, -0.0000018413,0.0000018405,0.0000018398,0.0000018471,0.0000018582, -0.0000018710,0.0000018858,0.0000019015,0.0000019163,0.0000019298, -0.0000019422,0.0000019534,0.0000019640,0.0000019741,0.0000019842, -0.0000019935,0.0000020018,0.0000020092,0.0000020153,0.0000020199, -0.0000020235,0.0000020260,0.0000020271,0.0000020270,0.0000020263, -0.0000020259,0.0000020257,0.0000020249,0.0000020253,0.0000020244, -0.0000020227,0.0000020211,0.0000020197,0.0000020179,0.0000020159, -0.0000020137,0.0000020121,0.0000020106,0.0000020088,0.0000020067, -0.0000020045,0.0000020025,0.0000020005,0.0000019989,0.0000019985, -0.0000019995,0.0000020012,0.0000020021,0.0000020009,0.0000019983, -0.0000019947,0.0000019921,0.0000019910,0.0000019917,0.0000019939, -0.0000019959,0.0000019973,0.0000019986,0.0000019996,0.0000019991, -0.0000019977,0.0000019960,0.0000019966,0.0000020003,0.0000019956, -0.0000019751,0.0000019637,0.0000019636,0.0000019649,0.0000019657, -0.0000019689,0.0000019725,0.0000019729,0.0000019689,0.0000019722, -0.0000019950,0.0000020070,0.0000020072,0.0000020061,0.0000019909, -0.0000019641,0.0000019511,0.0000019512,0.0000019521,0.0000019538, -0.0000019581,0.0000019743,0.0000020039,0.0000020280,0.0000020349, -0.0000020309,0.0000020212,0.0000020088,0.0000019957,0.0000019847, -0.0000019772,0.0000019732,0.0000019708,0.0000019700,0.0000019695, -0.0000019733,0.0000019800,0.0000019905,0.0000020007,0.0000020107, -0.0000020161,0.0000020183,0.0000020179,0.0000020162,0.0000020144, -0.0000020131,0.0000020122,0.0000020113,0.0000020111,0.0000020110, -0.0000020108,0.0000020111,0.0000020116,0.0000020123,0.0000020131, -0.0000020138,0.0000020147,0.0000020153,0.0000020159,0.0000020162, -0.0000020165,0.0000020173,0.0000020187,0.0000020200,0.0000020214, -0.0000020228,0.0000020237,0.0000020243,0.0000020250,0.0000020256, -0.0000020259,0.0000020260,0.0000020257,0.0000020253,0.0000020249, -0.0000020241,0.0000020230,0.0000020219,0.0000020204,0.0000020180, -0.0000020150,0.0000020115,0.0000020075,0.0000020060,0.0000020043, -0.0000020044,0.0000020080,0.0000020138,0.0000020188,0.0000020218, -0.0000020225,0.0000020234,0.0000020262,0.0000020309,0.0000020355, -0.0000020387,0.0000020404,0.0000020414,0.0000020420,0.0000020424, -0.0000020428,0.0000020438,0.0000020454,0.0000020453,0.0000020449, -0.0000020448,0.0000020441,0.0000020428,0.0000020413,0.0000020402, -0.0000020398,0.0000020398,0.0000020401,0.0000020402,0.0000020400, -0.0000020394,0.0000020381,0.0000020363,0.0000020339,0.0000020313, -0.0000020289,0.0000020269,0.0000020252,0.0000020232,0.0000020213, -0.0000020193,0.0000020172,0.0000020151,0.0000020134,0.0000020117, -0.0000020099,0.0000020085,0.0000020069,0.0000020054,0.0000020048, -0.0000020048,0.0000020055,0.0000020066,0.0000020081,0.0000020099, -0.0000020120,0.0000020135,0.0000020139,0.0000020144,0.0000020147, -0.0000020159,0.0000020170,0.0000020180,0.0000020192,0.0000020206, -0.0000020213,0.0000020223,0.0000020229,0.0000020226,0.0000020220, -0.0000020209,0.0000020194,0.0000020172,0.0000020147,0.0000020120, -0.0000020094,0.0000020069,0.0000020052,0.0000020040,0.0000020027, -0.0000020012,0.0000020003,0.0000019989,0.0000019983,0.0000019978, -0.0000019985,0.0000019996,0.0000020004,0.0000020021,0.0000020032, -0.0000020029,0.0000020000,0.0000019943,0.0000019873,0.0000019817, -0.0000019776,0.0000019748,0.0000019737,0.0000019730,0.0000019724, -0.0000019721,0.0000019721,0.0000019747,0.0000019801,0.0000019850, -0.0000019908,0.0000019970,0.0000020014,0.0000020058,0.0000020090, -0.0000020112,0.0000020131,0.0000020167,0.0000020199,0.0000020207, -0.0000020208,0.0000020201,0.0000020186,0.0000020181,0.0000020196, -0.0000020220,0.0000020255,0.0000020288,0.0000020332,0.0000020361, -0.0000020386,0.0000020404,0.0000020418,0.0000020418,0.0000020402, -0.0000020373,0.0000020338,0.0000020291,0.0000020236,0.0000020181, -0.0000020116,0.0000020053,0.0000019999,0.0000019959,0.0000019935, -0.0000019928,0.0000019924,0.0000019926,0.0000019923,0.0000019928, -0.0000019937,0.0000019945,0.0000019956,0.0000019973,0.0000019986, -0.0000019992,0.0000019998,0.0000019992,0.0000019973,0.0000019952, -0.0000019931,0.0000019911,0.0000019894,0.0000019876,0.0000019855, -0.0000019838,0.0000019821,0.0000019800,0.0000019775,0.0000019740, -0.0000019693,0.0000019640,0.0000019586,0.0000019538,0.0000019497, -0.0000019458,0.0000019425,0.0000019403,0.0000019392,0.0000019392, -0.0000019401,0.0000019404,0.0000019395,0.0000019369,0.0000019339, -0.0000019330,0.0000019333,0.0000019330,0.0000019311,0.0000019278, -0.0000019237,0.0000019203,0.0000019175,0.0000019160,0.0000019167, -0.0000019180,0.0000019200,0.0000019222,0.0000019233,0.0000019242, -0.0000019249,0.0000019249,0.0000019260,0.0000019291,0.0000019326, -0.0000019331,0.0000019314,0.0000019287,0.0000019269,0.0000019273, -0.0000019292,0.0000019317,0.0000019336,0.0000019340,0.0000019318, -0.0000019290,0.0000019266,0.0000019239,0.0000019205,0.0000019164, -0.0000019116,0.0000019069,0.0000019041,0.0000019026,0.0000019011, -0.0000018996,0.0000018979,0.0000018954,0.0000018917,0.0000018874, -0.0000018833,0.0000018784,0.0000018734,0.0000018710,0.0000018717, -0.0000018729,0.0000018729,0.0000018708,0.0000018667,0.0000018625, -0.0000018599,0.0000018577,0.0000018558,0.0000018552,0.0000018568, -0.0000018586,0.0000018608,0.0000018639,0.0000018697,0.0000018766, -0.0000018833,0.0000018885,0.0000018925,0.0000018972,0.0000019006, -0.0000019044,0.0000019099,0.0000019165,0.0000019203,0.0000019210, -0.0000019201,0.0000019197,0.0000019190,0.0000019172,0.0000019138, -0.0000019079,0.0000019028,0.0000019015,0.0000019033,0.0000019052, -0.0000019050,0.0000019037,0.0000019030,0.0000019046,0.0000019095, -0.0000019121,0.0000019120,0.0000019092,0.0000019048,0.0000019002, -0.0000018963,0.0000018949,0.0000018954,0.0000018970,0.0000018985, -0.0000018975,0.0000018913,0.0000018809,0.0000018716,0.0000018639, -0.0000018558,0.0000018477,0.0000018419,0.0000018392,0.0000018383, -0.0000018389,0.0000018389,0.0000018371,0.0000018345,0.0000018312, -0.0000018283,0.0000018265,0.0000018259,0.0000018262,0.0000018273, -0.0000018285,0.0000018293,0.0000018281,0.0000018220,0.0000018122, -0.0000018016,0.0000017924,0.0000017861,0.0000017824,0.0000017789, -0.0000017739,0.0000017675,0.0000017607,0.0000017546,0.0000017507, -0.0000017496,0.0000017512,0.0000017549,0.0000017594,0.0000017632, -0.0000017653,0.0000017648,0.0000017620,0.0000017572,0.0000017525, -0.0000017497,0.0000017485,0.0000017466,0.0000017429,0.0000017383, -0.0000017347,0.0000017335,0.0000017336,0.0000017334,0.0000017327, -0.0000017313,0.0000017300,0.0000017295,0.0000017282,0.0000017257, -0.0000017248,0.0000017252,0.0000017239,0.0000017208,0.0000017197, -0.0000017232,0.0000017287,0.0000017307,0.0000017305,0.0000017337, -0.0000017392,0.0000017421,0.0000017417,0.0000017355,0.0000017261, -0.0000017202,0.0000017182,0.0000017144,0.0000017122,0.0000017137, -0.0000017170,0.0000017228,0.0000017305,0.0000017393,0.0000017512, -0.0000017660,0.0000017782,0.0000017885,0.0000017978,0.0000018048, -0.0000018108,0.0000018169,0.0000018219,0.0000018262,0.0000018310, -0.0000018363,0.0000018413,0.0000018458,0.0000018498,0.0000018541, -0.0000018583,0.0000018607,0.0000018603,0.0000018574,0.0000018537, -0.0000018541,0.0000018571,0.0000018578,0.0000018563,0.0000018534, -0.0000018518,0.0000018525,0.0000018529,0.0000018507,0.0000018472, -0.0000018465,0.0000018472,0.0000018462,0.0000018425,0.0000018394, -0.0000018391,0.0000018391,0.0000018369,0.0000018348,0.0000018353, -0.0000018373,0.0000018393,0.0000018397,0.0000018351,0.0000018266, -0.0000018193,0.0000018145,0.0000018112,0.0000018088,0.0000018063, -0.0000018044,0.0000018040,0.0000018049,0.0000018070,0.0000018090, -0.0000018117,0.0000018164,0.0000018236,0.0000018310,0.0000018324, -0.0000018335,0.0000018396,0.0000018452,0.0000018460,0.0000018450, -0.0000018519,0.0000018513,0.0000018336,0.0000018194,0.0000018163, -0.0000018155,0.0000018107,0.0000018092,0.0000018146,0.0000018193, -0.0000018226,0.0000018263,0.0000018274,0.0000018242,0.0000018158, -0.0000018047,0.0000017959,0.0000017930,0.0000017938,0.0000017961, -0.0000017977,0.0000017987,0.0000018008,0.0000018028,0.0000018034, -0.0000018025,0.0000018009,0.0000017993,0.0000017986,0.0000017986, -0.0000017980,0.0000017970,0.0000017970,0.0000017984,0.0000018004, -0.0000018010,0.0000017995,0.0000017976,0.0000017990,0.0000018074, -0.0000018190,0.0000018280,0.0000018301,0.0000018284,0.0000018231, -0.0000018108,0.0000017977,0.0000017922,0.0000017905,0.0000017855, -0.0000017784,0.0000017727,0.0000017713,0.0000017746,0.0000017856, -0.0000018051,0.0000018254,0.0000018383,0.0000018449,0.0000018470, -0.0000018466,0.0000018402,0.0000018247,0.0000018074,0.0000017972, -0.0000017890,0.0000017838,0.0000017818,0.0000017847,0.0000017860, -0.0000017771,0.0000017645,0.0000017593,0.0000017578,0.0000017566, -0.0000017575,0.0000017610,0.0000017628,0.0000017572,0.0000017467, -0.0000017461,0.0000017555,0.0000017676,0.0000017740,0.0000017738, -0.0000017757,0.0000017727,0.0000017642,0.0000017653,0.0000017703, -0.0000017801,0.0000017663,0.0000017515,0.0000017513,0.0000017487, -0.0000017501,0.0000017589,0.0000017692,0.0000017764,0.0000017737, -0.0000017659,0.0000017612,0.0000017631,0.0000017627,0.0000017582, -0.0000017555,0.0000017538,0.0000017547,0.0000017625,0.0000017728, -0.0000017864,0.0000018024,0.0000018096,0.0000018113,0.0000018152, -0.0000018173,0.0000018162,0.0000018135,0.0000018122,0.0000018117, -0.0000018089,0.0000018021,0.0000017929,0.0000017836,0.0000017758, -0.0000017720,0.0000017724,0.0000017747,0.0000017758,0.0000017738, -0.0000017679,0.0000017629,0.0000017630,0.0000017690,0.0000017733, -0.0000017749,0.0000017743,0.0000017679,0.0000017562,0.0000017495, -0.0000017604,0.0000017841,0.0000017924,0.0000017903,0.0000017922, -0.0000017995,0.0000018055,0.0000018069,0.0000018066,0.0000018085, -0.0000018145,0.0000018211,0.0000018275,0.0000018367,0.0000018479, -0.0000018547,0.0000018562,0.0000018578,0.0000018588,0.0000018548, -0.0000018473,0.0000018372,0.0000018219,0.0000018130,0.0000018158, -0.0000018246,0.0000018300,0.0000018345,0.0000018388,0.0000018400, -0.0000018371,0.0000018291,0.0000018224,0.0000018240,0.0000018313, -0.0000018365,0.0000018358,0.0000018313,0.0000018286,0.0000018282, -0.0000018269,0.0000018258,0.0000018273,0.0000018307,0.0000018324, -0.0000018328,0.0000018332,0.0000018333,0.0000018336,0.0000018367, -0.0000018420,0.0000018465,0.0000018487,0.0000018492,0.0000018489, -0.0000018481,0.0000018470,0.0000018443,0.0000018407,0.0000018365, -0.0000018320,0.0000018275,0.0000018235,0.0000018202,0.0000018179, -0.0000018166,0.0000018165,0.0000018172,0.0000018178,0.0000018180, -0.0000018177,0.0000018178,0.0000018183,0.0000018187,0.0000018188, -0.0000018191,0.0000018189,0.0000018189,0.0000018189,0.0000018193, -0.0000018201,0.0000018203,0.0000018211,0.0000018229,0.0000018265, -0.0000018314,0.0000018366,0.0000018408,0.0000018433,0.0000018447, -0.0000018461,0.0000018480,0.0000018500,0.0000018519,0.0000018544, -0.0000018567,0.0000018582,0.0000018594,0.0000018598,0.0000018595, -0.0000018584,0.0000018576,0.0000018568,0.0000018555,0.0000018511, -0.0000018448,0.0000018562,0.0000019161,0.0000019538,0.0000019640, -0.0000019766,0.0000019859,0.0000019884,0.0000019850,0.0000019808, -0.0000019876,0.0000019972,0.0000019969,0.0000019935,0.0000019896, -0.0000019870,0.0000019881,0.0000019888,0.0000019860,0.0000019854, -0.0000019896,0.0000019947,0.0000019973,0.0000020000,0.0000020022, -0.0000020038,0.0000020047,0.0000020049,0.0000020038,0.0000020030, -0.0000020030,0.0000020037,0.0000020005,0.0000019930,0.0000019829, -0.0000019727,0.0000019651,0.0000019612,0.0000019615,0.0000019604, -0.0000019601,0.0000019615,0.0000019612,0.0000019622,0.0000019639, -0.0000019654,0.0000019668,0.0000019682,0.0000019696,0.0000019712, -0.0000019723,0.0000019724,0.0000019731,0.0000019731,0.0000019727, -0.0000019728,0.0000019729,0.0000019716,0.0000019706,0.0000019697, -0.0000019691,0.0000019688,0.0000019680,0.0000019675,0.0000019677, -0.0000019679,0.0000019681,0.0000019681,0.0000019674,0.0000019674, -0.0000019653,0.0000019618,0.0000019570,0.0000019509,0.0000019453, -0.0000019423,0.0000019412,0.0000019399,0.0000019374,0.0000019348, -0.0000019332,0.0000019330,0.0000019348,0.0000019397,0.0000019465, -0.0000019521,0.0000019537,0.0000019509,0.0000019367,0.0000019087, -0.0000018717,0.0000018367,0.0000018145,0.0000018094,0.0000018131, -0.0000018239,0.0000018351,0.0000018427,0.0000018476,0.0000018529, -0.0000018569,0.0000018597,0.0000018614,0.0000018621,0.0000018615, -0.0000018600,0.0000018580,0.0000018561,0.0000018544,0.0000018531, -0.0000018526,0.0000018540,0.0000018563,0.0000018583,0.0000018598, -0.0000018620,0.0000018651,0.0000018678,0.0000018704,0.0000018719, -0.0000018718,0.0000018725,0.0000018726,0.0000018731,0.0000018742, -0.0000018763,0.0000018790,0.0000018812,0.0000018825,0.0000018830, -0.0000018822,0.0000018810,0.0000018808,0.0000018823,0.0000018839, -0.0000018832,0.0000018773,0.0000018682,0.0000018645,0.0000018686, -0.0000018845,0.0000019039,0.0000019139,0.0000019109,0.0000018983, -0.0000018760,0.0000018572,0.0000018457,0.0000018386,0.0000018344, -0.0000018342,0.0000018347,0.0000018379,0.0000018474,0.0000018585, -0.0000018718,0.0000018867,0.0000019015,0.0000019159,0.0000019293, -0.0000019420,0.0000019538,0.0000019651,0.0000019758,0.0000019854, -0.0000019944,0.0000020024,0.0000020088,0.0000020136,0.0000020170, -0.0000020195,0.0000020220,0.0000020236,0.0000020242,0.0000020255, -0.0000020253,0.0000020254,0.0000020253,0.0000020250,0.0000020241, -0.0000020225,0.0000020211,0.0000020204,0.0000020195,0.0000020181, -0.0000020163,0.0000020146,0.0000020127,0.0000020109,0.0000020096, -0.0000020096,0.0000020098,0.0000020091,0.0000020057,0.0000020009, -0.0000019957,0.0000019924,0.0000019914,0.0000019915,0.0000019929, -0.0000019941,0.0000019941,0.0000019943,0.0000019950,0.0000019958, -0.0000019963,0.0000019963,0.0000019971,0.0000020019,0.0000020004, -0.0000019785,0.0000019649,0.0000019642,0.0000019657,0.0000019664, -0.0000019706,0.0000019734,0.0000019725,0.0000019681,0.0000019718, -0.0000019959,0.0000020083,0.0000020085,0.0000020067,0.0000019941, -0.0000019704,0.0000019576,0.0000019571,0.0000019572,0.0000019579, -0.0000019654,0.0000019893,0.0000020177,0.0000020349,0.0000020347, -0.0000020254,0.0000020131,0.0000019998,0.0000019881,0.0000019801, -0.0000019754,0.0000019725,0.0000019713,0.0000019715,0.0000019777, -0.0000019870,0.0000019985,0.0000020085,0.0000020147,0.0000020166, -0.0000020171,0.0000020131,0.0000020097,0.0000020083,0.0000020070, -0.0000020078,0.0000020064,0.0000020076,0.0000020080,0.0000020081, -0.0000020083,0.0000020087,0.0000020091,0.0000020090,0.0000020090, -0.0000020091,0.0000020096,0.0000020106,0.0000020117,0.0000020128, -0.0000020140,0.0000020146,0.0000020161,0.0000020180,0.0000020219, -0.0000020230,0.0000020232,0.0000020229,0.0000020230,0.0000020225, -0.0000020214,0.0000020198,0.0000020180,0.0000020164,0.0000020151, -0.0000020133,0.0000020113,0.0000020096,0.0000020085,0.0000020078, -0.0000020074,0.0000020071,0.0000020074,0.0000020092,0.0000020124, -0.0000020167,0.0000020214,0.0000020252,0.0000020263,0.0000020264, -0.0000020280,0.0000020330,0.0000020404,0.0000020472,0.0000020512, -0.0000020525,0.0000020521,0.0000020510,0.0000020498,0.0000020484, -0.0000020473,0.0000020464,0.0000020459,0.0000020446,0.0000020427, -0.0000020407,0.0000020392,0.0000020379,0.0000020370,0.0000020368, -0.0000020370,0.0000020378,0.0000020385,0.0000020389,0.0000020390, -0.0000020388,0.0000020382,0.0000020370,0.0000020356,0.0000020341, -0.0000020326,0.0000020313,0.0000020302,0.0000020292,0.0000020282, -0.0000020272,0.0000020259,0.0000020242,0.0000020226,0.0000020211, -0.0000020196,0.0000020182,0.0000020173,0.0000020167,0.0000020170, -0.0000020182,0.0000020198,0.0000020216,0.0000020234,0.0000020253, -0.0000020276,0.0000020294,0.0000020302,0.0000020305,0.0000020310, -0.0000020320,0.0000020329,0.0000020337,0.0000020348,0.0000020356, -0.0000020361,0.0000020370,0.0000020373,0.0000020365,0.0000020354, -0.0000020341,0.0000020322,0.0000020296,0.0000020267,0.0000020232, -0.0000020209,0.0000020191,0.0000020196,0.0000020195,0.0000020190, -0.0000020181,0.0000020154,0.0000020107,0.0000020058,0.0000020011, -0.0000019987,0.0000019979,0.0000019983,0.0000020004,0.0000020025, -0.0000020025,0.0000019998,0.0000019951,0.0000019892,0.0000019842, -0.0000019794,0.0000019751,0.0000019735,0.0000019731,0.0000019734, -0.0000019757,0.0000019803,0.0000019869,0.0000019945,0.0000020009, -0.0000020065,0.0000020111,0.0000020147,0.0000020173,0.0000020173, -0.0000020166,0.0000020171,0.0000020192,0.0000020209,0.0000020211, -0.0000020226,0.0000020235,0.0000020255,0.0000020298,0.0000020349, -0.0000020393,0.0000020425,0.0000020445,0.0000020454,0.0000020455, -0.0000020463,0.0000020469,0.0000020465,0.0000020448,0.0000020422, -0.0000020390,0.0000020353,0.0000020302,0.0000020241,0.0000020180, -0.0000020113,0.0000020048,0.0000019995,0.0000019954,0.0000019920, -0.0000019904,0.0000019899,0.0000019913,0.0000019932,0.0000019960, -0.0000019999,0.0000020032,0.0000020050,0.0000020051,0.0000020044, -0.0000020035,0.0000020018,0.0000019987,0.0000019953,0.0000019931, -0.0000019920,0.0000019908,0.0000019890,0.0000019868,0.0000019841, -0.0000019811,0.0000019784,0.0000019757,0.0000019734,0.0000019712, -0.0000019681,0.0000019641,0.0000019597,0.0000019550,0.0000019508, -0.0000019474,0.0000019449,0.0000019433,0.0000019432,0.0000019443, -0.0000019457,0.0000019459,0.0000019442,0.0000019412,0.0000019388, -0.0000019371,0.0000019362,0.0000019346,0.0000019317,0.0000019288, -0.0000019263,0.0000019246,0.0000019236,0.0000019238,0.0000019248, -0.0000019259,0.0000019269,0.0000019268,0.0000019255,0.0000019242, -0.0000019231,0.0000019229,0.0000019230,0.0000019263,0.0000019290, -0.0000019292,0.0000019269,0.0000019233,0.0000019203,0.0000019195, -0.0000019211,0.0000019245,0.0000019283,0.0000019303,0.0000019295, -0.0000019278,0.0000019256,0.0000019233,0.0000019214,0.0000019199, -0.0000019174,0.0000019138,0.0000019112,0.0000019086,0.0000019056, -0.0000019028,0.0000019004,0.0000018978,0.0000018947,0.0000018911, -0.0000018865,0.0000018805,0.0000018748,0.0000018727,0.0000018734, -0.0000018748,0.0000018759,0.0000018761,0.0000018755,0.0000018752, -0.0000018758,0.0000018753,0.0000018729,0.0000018705,0.0000018687, -0.0000018663,0.0000018657,0.0000018681,0.0000018739,0.0000018811, -0.0000018890,0.0000018961,0.0000019001,0.0000019021,0.0000019029, -0.0000019054,0.0000019106,0.0000019166,0.0000019195,0.0000019203, -0.0000019199,0.0000019200,0.0000019197,0.0000019196,0.0000019172, -0.0000019111,0.0000019056,0.0000019038,0.0000019051,0.0000019054, -0.0000019041,0.0000019020,0.0000019026,0.0000019081,0.0000019145, -0.0000019177,0.0000019166,0.0000019119,0.0000019053,0.0000018986, -0.0000018936,0.0000018912,0.0000018918,0.0000018953,0.0000018982, -0.0000018999,0.0000018955,0.0000018861,0.0000018757,0.0000018670, -0.0000018590,0.0000018506,0.0000018442,0.0000018406,0.0000018410, -0.0000018432,0.0000018445,0.0000018438,0.0000018420,0.0000018395, -0.0000018371,0.0000018352,0.0000018340,0.0000018335,0.0000018338, -0.0000018353,0.0000018375,0.0000018363,0.0000018296,0.0000018186, -0.0000018060,0.0000017949,0.0000017881,0.0000017842,0.0000017805, -0.0000017758,0.0000017702,0.0000017643,0.0000017586,0.0000017539, -0.0000017515,0.0000017521,0.0000017543,0.0000017583,0.0000017625, -0.0000017657,0.0000017672,0.0000017673,0.0000017660,0.0000017641, -0.0000017628,0.0000017607,0.0000017570,0.0000017528,0.0000017486, -0.0000017457,0.0000017439,0.0000017430,0.0000017422,0.0000017410, -0.0000017387,0.0000017362,0.0000017339,0.0000017305,0.0000017273, -0.0000017265,0.0000017268,0.0000017258,0.0000017237,0.0000017242, -0.0000017290,0.0000017342,0.0000017357,0.0000017365,0.0000017400, -0.0000017441,0.0000017454,0.0000017435,0.0000017361,0.0000017271, -0.0000017243,0.0000017234,0.0000017204,0.0000017185,0.0000017170, -0.0000017161,0.0000017138,0.0000017117,0.0000017124,0.0000017195, -0.0000017270,0.0000017349,0.0000017443,0.0000017533,0.0000017618, -0.0000017720,0.0000017826,0.0000017928,0.0000018022,0.0000018104, -0.0000018172,0.0000018237,0.0000018300,0.0000018359,0.0000018422, -0.0000018477,0.0000018510,0.0000018513,0.0000018515,0.0000018549, -0.0000018583,0.0000018587,0.0000018568,0.0000018544,0.0000018535, -0.0000018546,0.0000018540,0.0000018499,0.0000018465,0.0000018463, -0.0000018468,0.0000018454,0.0000018418,0.0000018398,0.0000018398, -0.0000018387,0.0000018356,0.0000018343,0.0000018352,0.0000018376, -0.0000018384,0.0000018340,0.0000018259,0.0000018196,0.0000018159, -0.0000018133,0.0000018106,0.0000018065,0.0000018031,0.0000018022, -0.0000018028,0.0000018044,0.0000018066,0.0000018092,0.0000018137, -0.0000018199,0.0000018264,0.0000018302,0.0000018298,0.0000018340, -0.0000018420,0.0000018463,0.0000018451,0.0000018445,0.0000018516, -0.0000018489,0.0000018317,0.0000018189,0.0000018152,0.0000018108, -0.0000018057,0.0000018093,0.0000018170,0.0000018216,0.0000018248, -0.0000018268,0.0000018256,0.0000018197,0.0000018101,0.0000018005, -0.0000017942,0.0000017928,0.0000017942,0.0000017966,0.0000017981, -0.0000017998,0.0000018014,0.0000018014,0.0000018002,0.0000017983, -0.0000017970,0.0000017972,0.0000017986,0.0000017998,0.0000017997, -0.0000017996,0.0000018000,0.0000018010,0.0000018023,0.0000018021, -0.0000018002,0.0000017997,0.0000018041,0.0000018137,0.0000018242, -0.0000018298,0.0000018299,0.0000018278,0.0000018233,0.0000018137, -0.0000018016,0.0000017953,0.0000017923,0.0000017888,0.0000017849, -0.0000017830,0.0000017842,0.0000017924,0.0000018089,0.0000018259, -0.0000018367,0.0000018423,0.0000018451,0.0000018454,0.0000018424, -0.0000018333,0.0000018199,0.0000018052,0.0000017910,0.0000017828, -0.0000017817,0.0000017833,0.0000017878,0.0000017872,0.0000017776, -0.0000017663,0.0000017635,0.0000017638,0.0000017637,0.0000017645, -0.0000017661,0.0000017635,0.0000017507,0.0000017450,0.0000017508, -0.0000017640,0.0000017735,0.0000017740,0.0000017738,0.0000017742, -0.0000017684,0.0000017655,0.0000017684,0.0000017768,0.0000017787, -0.0000017561,0.0000017528,0.0000017514,0.0000017507,0.0000017583, -0.0000017688,0.0000017782,0.0000017777,0.0000017722,0.0000017642, -0.0000017640,0.0000017661,0.0000017636,0.0000017580,0.0000017553, -0.0000017533,0.0000017533,0.0000017598,0.0000017695,0.0000017818, -0.0000017968,0.0000018068,0.0000018089,0.0000018106,0.0000018131, -0.0000018137,0.0000018132,0.0000018121,0.0000018096,0.0000018051, -0.0000017992,0.0000017931,0.0000017874,0.0000017845,0.0000017839, -0.0000017832,0.0000017811,0.0000017762,0.0000017697,0.0000017647, -0.0000017650,0.0000017711,0.0000017735,0.0000017755,0.0000017762, -0.0000017734,0.0000017630,0.0000017521,0.0000017542,0.0000017762, -0.0000017914,0.0000017907,0.0000017898,0.0000017951,0.0000018018, -0.0000018041,0.0000018032,0.0000018031,0.0000018079,0.0000018156, -0.0000018223,0.0000018296,0.0000018399,0.0000018505,0.0000018555, -0.0000018563,0.0000018579,0.0000018576,0.0000018531,0.0000018459, -0.0000018352,0.0000018197,0.0000018118,0.0000018173,0.0000018263, -0.0000018315,0.0000018354,0.0000018385,0.0000018390,0.0000018341, -0.0000018245,0.0000018202,0.0000018246,0.0000018321,0.0000018343, -0.0000018328,0.0000018317,0.0000018311,0.0000018292,0.0000018285, -0.0000018310,0.0000018333,0.0000018332,0.0000018326,0.0000018328, -0.0000018333,0.0000018353,0.0000018397,0.0000018444,0.0000018472, -0.0000018480,0.0000018478,0.0000018459,0.0000018414,0.0000018348, -0.0000018276,0.0000018216,0.0000018176,0.0000018159,0.0000018159, -0.0000018174,0.0000018192,0.0000018204,0.0000018212,0.0000018214, -0.0000018214,0.0000018211,0.0000018207,0.0000018201,0.0000018196, -0.0000018197,0.0000018200,0.0000018200,0.0000018202,0.0000018205, -0.0000018208,0.0000018210,0.0000018208,0.0000018204,0.0000018200, -0.0000018191,0.0000018178,0.0000018169,0.0000018164,0.0000018152, -0.0000018177,0.0000018227,0.0000018278,0.0000018323,0.0000018369, -0.0000018415,0.0000018456,0.0000018500,0.0000018539,0.0000018567, -0.0000018585,0.0000018589,0.0000018580,0.0000018560,0.0000018538, -0.0000018512,0.0000018499,0.0000018483,0.0000018450,0.0000018697, -0.0000019348,0.0000019630,0.0000019733,0.0000019833,0.0000019890, -0.0000019882,0.0000019842,0.0000019890,0.0000019978,0.0000019980, -0.0000019960,0.0000019930,0.0000019906,0.0000019917,0.0000019919, -0.0000019889,0.0000019875,0.0000019900,0.0000019936,0.0000019956, -0.0000019975,0.0000019991,0.0000020001,0.0000020011,0.0000020019, -0.0000020024,0.0000020022,0.0000020006,0.0000019949,0.0000019840, -0.0000019717,0.0000019626,0.0000019602,0.0000019597,0.0000019624, -0.0000019654,0.0000019671,0.0000019688,0.0000019708,0.0000019720, -0.0000019720,0.0000019722,0.0000019742,0.0000019758,0.0000019764, -0.0000019764,0.0000019772,0.0000019776,0.0000019764,0.0000019758, -0.0000019749,0.0000019734,0.0000019718,0.0000019702,0.0000019681, -0.0000019656,0.0000019631,0.0000019608,0.0000019593,0.0000019587, -0.0000019591,0.0000019607,0.0000019632,0.0000019653,0.0000019664, -0.0000019666,0.0000019668,0.0000019675,0.0000019685,0.0000019684, -0.0000019657,0.0000019581,0.0000019497,0.0000019445,0.0000019423, -0.0000019400,0.0000019361,0.0000019327,0.0000019318,0.0000019339, -0.0000019399,0.0000019472,0.0000019518,0.0000019516,0.0000019404, -0.0000019124,0.0000018724,0.0000018343,0.0000018120,0.0000018082, -0.0000018137,0.0000018240,0.0000018333,0.0000018394,0.0000018438, -0.0000018484,0.0000018529,0.0000018560,0.0000018574,0.0000018573, -0.0000018560,0.0000018537,0.0000018512,0.0000018493,0.0000018490, -0.0000018501,0.0000018523,0.0000018557,0.0000018603,0.0000018654, -0.0000018693,0.0000018692,0.0000018706,0.0000018713,0.0000018718, -0.0000018716,0.0000018700,0.0000018663,0.0000018625,0.0000018595, -0.0000018580,0.0000018591,0.0000018630,0.0000018692,0.0000018762, -0.0000018815,0.0000018848,0.0000018862,0.0000018855,0.0000018851, -0.0000018862,0.0000018889,0.0000018922,0.0000018923,0.0000018838, -0.0000018695,0.0000018618,0.0000018644,0.0000018799,0.0000018997, -0.0000019083,0.0000019008,0.0000018803,0.0000018602,0.0000018484, -0.0000018434,0.0000018404,0.0000018374,0.0000018344,0.0000018321, -0.0000018304,0.0000018289,0.0000018310,0.0000018375,0.0000018469, -0.0000018594,0.0000018740,0.0000018904,0.0000019064,0.0000019209, -0.0000019341,0.0000019461,0.0000019572,0.0000019674,0.0000019760, -0.0000019831,0.0000019895,0.0000019959,0.0000020023,0.0000020079, -0.0000020126,0.0000020165,0.0000020198,0.0000020223,0.0000020234, -0.0000020248,0.0000020247,0.0000020232,0.0000020239,0.0000020237, -0.0000020230,0.0000020218,0.0000020204,0.0000020189,0.0000020172, -0.0000020156,0.0000020146,0.0000020144,0.0000020121,0.0000020087, -0.0000020033,0.0000019980,0.0000019938,0.0000019921,0.0000019916, -0.0000019912,0.0000019908,0.0000019891,0.0000019882,0.0000019894, -0.0000019920,0.0000019950,0.0000019968,0.0000019985,0.0000020032, -0.0000020041,0.0000019839,0.0000019657,0.0000019655,0.0000019665, -0.0000019673,0.0000019722,0.0000019742,0.0000019721,0.0000019673, -0.0000019731,0.0000019977,0.0000020096,0.0000020100,0.0000020081, -0.0000019964,0.0000019753,0.0000019630,0.0000019619,0.0000019612, -0.0000019626,0.0000019764,0.0000020045,0.0000020282,0.0000020360, -0.0000020317,0.0000020184,0.0000020042,0.0000019918,0.0000019833, -0.0000019785,0.0000019745,0.0000019735,0.0000019740,0.0000019818, -0.0000019931,0.0000020050,0.0000020128,0.0000020157,0.0000020148, -0.0000020110,0.0000020076,0.0000020062,0.0000020042,0.0000020042, -0.0000020042,0.0000020032,0.0000020001,0.0000019958,0.0000019919, -0.0000019867,0.0000019820,0.0000019789,0.0000019764,0.0000019739, -0.0000019723,0.0000019718,0.0000019724,0.0000019738,0.0000019761, -0.0000019797,0.0000019847,0.0000019910,0.0000019977,0.0000020047, -0.0000020122,0.0000020185,0.0000020228,0.0000020258,0.0000020285, -0.0000020305,0.0000020329,0.0000020330,0.0000020317,0.0000020298, -0.0000020281,0.0000020266,0.0000020242,0.0000020218,0.0000020198, -0.0000020184,0.0000020184,0.0000020196,0.0000020214,0.0000020237, -0.0000020262,0.0000020284,0.0000020298,0.0000020310,0.0000020328, -0.0000020368,0.0000020428,0.0000020496,0.0000020555,0.0000020588, -0.0000020590,0.0000020572,0.0000020544,0.0000020520,0.0000020502, -0.0000020488,0.0000020476,0.0000020465,0.0000020448,0.0000020421, -0.0000020395,0.0000020376,0.0000020369,0.0000020363,0.0000020360, -0.0000020359,0.0000020362,0.0000020369,0.0000020375,0.0000020380, -0.0000020383,0.0000020385,0.0000020386,0.0000020382,0.0000020374, -0.0000020364,0.0000020352,0.0000020341,0.0000020332,0.0000020324, -0.0000020317,0.0000020310,0.0000020303,0.0000020295,0.0000020288, -0.0000020283,0.0000020279,0.0000020276,0.0000020276,0.0000020280, -0.0000020289,0.0000020304,0.0000020321,0.0000020338,0.0000020351, -0.0000020364,0.0000020378,0.0000020389,0.0000020393,0.0000020397, -0.0000020402,0.0000020406,0.0000020415,0.0000020423,0.0000020432, -0.0000020438,0.0000020443,0.0000020445,0.0000020441,0.0000020427, -0.0000020408,0.0000020384,0.0000020355,0.0000020320,0.0000020280, -0.0000020237,0.0000020211,0.0000020191,0.0000020201,0.0000020216, -0.0000020231,0.0000020251,0.0000020255,0.0000020227,0.0000020177, -0.0000020113,0.0000020046,0.0000019997,0.0000019971,0.0000019967, -0.0000019964,0.0000019955,0.0000019932,0.0000019886,0.0000019837, -0.0000019804,0.0000019773,0.0000019761,0.0000019772,0.0000019817, -0.0000019879,0.0000019949,0.0000020015,0.0000020071,0.0000020116, -0.0000020149,0.0000020152,0.0000020165,0.0000020172,0.0000020165, -0.0000020149,0.0000020142,0.0000020157,0.0000020198,0.0000020246, -0.0000020293,0.0000020346,0.0000020389,0.0000020432,0.0000020466, -0.0000020490,0.0000020485,0.0000020474,0.0000020457,0.0000020444, -0.0000020446,0.0000020455,0.0000020454,0.0000020444,0.0000020420, -0.0000020388,0.0000020352,0.0000020303,0.0000020244,0.0000020176, -0.0000020110,0.0000020050,0.0000020001,0.0000019968,0.0000019938, -0.0000019921,0.0000019929,0.0000019963,0.0000020015,0.0000020074, -0.0000020135,0.0000020197,0.0000020230,0.0000020237,0.0000020228, -0.0000020207,0.0000020176,0.0000020136,0.0000020095,0.0000020063, -0.0000020040,0.0000020018,0.0000019986,0.0000019955,0.0000019927, -0.0000019900,0.0000019872,0.0000019840,0.0000019810,0.0000019782, -0.0000019759,0.0000019735,0.0000019715,0.0000019696,0.0000019672, -0.0000019640,0.0000019601,0.0000019561,0.0000019529,0.0000019510, -0.0000019501,0.0000019496,0.0000019486,0.0000019466,0.0000019444, -0.0000019415,0.0000019394,0.0000019379,0.0000019369,0.0000019358, -0.0000019349,0.0000019349,0.0000019360,0.0000019373,0.0000019384, -0.0000019393,0.0000019401,0.0000019391,0.0000019363,0.0000019328, -0.0000019303,0.0000019287,0.0000019273,0.0000019281,0.0000019305, -0.0000019322,0.0000019316,0.0000019285,0.0000019243,0.0000019198, -0.0000019175,0.0000019167,0.0000019186,0.0000019218,0.0000019245, -0.0000019257,0.0000019257,0.0000019247,0.0000019233,0.0000019225, -0.0000019218,0.0000019200,0.0000019176,0.0000019167,0.0000019154, -0.0000019131,0.0000019098,0.0000019061,0.0000019026,0.0000018997, -0.0000018964,0.0000018917,0.0000018859,0.0000018807,0.0000018773, -0.0000018755,0.0000018753,0.0000018756,0.0000018762,0.0000018775, -0.0000018800,0.0000018853,0.0000018881,0.0000018880,0.0000018867, -0.0000018836,0.0000018785,0.0000018762,0.0000018769,0.0000018811, -0.0000018874,0.0000018955,0.0000019027,0.0000019062,0.0000019070, -0.0000019064,0.0000019083,0.0000019138,0.0000019188,0.0000019212, -0.0000019220,0.0000019223,0.0000019223,0.0000019225,0.0000019232, -0.0000019207,0.0000019138,0.0000019074,0.0000019051,0.0000019052, -0.0000019044,0.0000019015,0.0000018996,0.0000019021,0.0000019104, -0.0000019178,0.0000019210,0.0000019194,0.0000019142,0.0000019074, -0.0000018997,0.0000018923,0.0000018887,0.0000018885,0.0000018916, -0.0000018968,0.0000019006,0.0000018990,0.0000018906,0.0000018795, -0.0000018702,0.0000018614,0.0000018531,0.0000018458,0.0000018418, -0.0000018431,0.0000018463,0.0000018489,0.0000018492,0.0000018481, -0.0000018464,0.0000018445,0.0000018427,0.0000018409,0.0000018394, -0.0000018388,0.0000018402,0.0000018418,0.0000018404,0.0000018345, -0.0000018239,0.0000018112,0.0000018003,0.0000017924,0.0000017865, -0.0000017812,0.0000017765,0.0000017726,0.0000017686,0.0000017637, -0.0000017582,0.0000017543,0.0000017530,0.0000017547,0.0000017578, -0.0000017612,0.0000017650,0.0000017685,0.0000017708,0.0000017719, -0.0000017724,0.0000017715,0.0000017687,0.0000017652,0.0000017617, -0.0000017583,0.0000017547,0.0000017525,0.0000017517,0.0000017510, -0.0000017491,0.0000017459,0.0000017426,0.0000017384,0.0000017331, -0.0000017293,0.0000017285,0.0000017289,0.0000017286,0.0000017275, -0.0000017293,0.0000017342,0.0000017384,0.0000017397,0.0000017411, -0.0000017448,0.0000017476,0.0000017478,0.0000017445,0.0000017367, -0.0000017299,0.0000017282,0.0000017278,0.0000017269,0.0000017258, -0.0000017235,0.0000017194,0.0000017135,0.0000017082,0.0000017070, -0.0000017074,0.0000017088,0.0000017108,0.0000017142,0.0000017181, -0.0000017252,0.0000017359,0.0000017482,0.0000017607,0.0000017711, -0.0000017793,0.0000017875,0.0000017957,0.0000018032,0.0000018118, -0.0000018205,0.0000018291,0.0000018359,0.0000018437,0.0000018529, -0.0000018582,0.0000018583,0.0000018565,0.0000018546,0.0000018546, -0.0000018555,0.0000018532,0.0000018482,0.0000018453,0.0000018452, -0.0000018454,0.0000018432,0.0000018404,0.0000018397,0.0000018392, -0.0000018361,0.0000018332,0.0000018335,0.0000018361,0.0000018372, -0.0000018327,0.0000018247,0.0000018193,0.0000018169,0.0000018152, -0.0000018120,0.0000018069,0.0000018030,0.0000018016,0.0000018004, -0.0000017989,0.0000017992,0.0000018016,0.0000018070,0.0000018145, -0.0000018214,0.0000018261,0.0000018270,0.0000018278,0.0000018368, -0.0000018439,0.0000018460,0.0000018439,0.0000018445,0.0000018507, -0.0000018459,0.0000018294,0.0000018175,0.0000018112,0.0000018043, -0.0000018033,0.0000018117,0.0000018194,0.0000018230,0.0000018254, -0.0000018258,0.0000018233,0.0000018173,0.0000018096,0.0000018016, -0.0000017958,0.0000017941,0.0000017957,0.0000017976,0.0000017987, -0.0000017998,0.0000017999,0.0000017995,0.0000017980,0.0000017963, -0.0000017963,0.0000017985,0.0000018013,0.0000018028,0.0000018029, -0.0000018029,0.0000018028,0.0000018032,0.0000018036,0.0000018025, -0.0000018021,0.0000018042,0.0000018104,0.0000018198,0.0000018282, -0.0000018312,0.0000018301,0.0000018275,0.0000018248,0.0000018184, -0.0000018095,0.0000018028,0.0000017989,0.0000017958,0.0000017939, -0.0000017953,0.0000018017,0.0000018133,0.0000018258,0.0000018349, -0.0000018404,0.0000018436,0.0000018451,0.0000018441,0.0000018373, -0.0000018274,0.0000018173,0.0000018032,0.0000017865,0.0000017803, -0.0000017822,0.0000017876,0.0000017911,0.0000017887,0.0000017779, -0.0000017683,0.0000017670,0.0000017684,0.0000017690,0.0000017693, -0.0000017688,0.0000017569,0.0000017459,0.0000017469,0.0000017595, -0.0000017719,0.0000017744,0.0000017723,0.0000017725,0.0000017700, -0.0000017676,0.0000017690,0.0000017728,0.0000017828,0.0000017678, -0.0000017532,0.0000017536,0.0000017525,0.0000017578,0.0000017676, -0.0000017794,0.0000017799,0.0000017771,0.0000017700,0.0000017651, -0.0000017668,0.0000017686,0.0000017644,0.0000017580,0.0000017552, -0.0000017527,0.0000017514,0.0000017557,0.0000017646,0.0000017762, -0.0000017890,0.0000018016,0.0000018082,0.0000018099,0.0000018107, -0.0000018110,0.0000018103,0.0000018079,0.0000018045,0.0000018012, -0.0000017984,0.0000017965,0.0000017952,0.0000017922,0.0000017878, -0.0000017825,0.0000017763,0.0000017713,0.0000017689,0.0000017688, -0.0000017715,0.0000017716,0.0000017729,0.0000017755,0.0000017753, -0.0000017677,0.0000017557,0.0000017530,0.0000017701,0.0000017903, -0.0000017919,0.0000017888,0.0000017912,0.0000017982,0.0000018026, -0.0000018022,0.0000018009,0.0000018030,0.0000018105,0.0000018182, -0.0000018241,0.0000018320,0.0000018429,0.0000018523,0.0000018558, -0.0000018561,0.0000018572,0.0000018569,0.0000018518,0.0000018445, -0.0000018333,0.0000018181,0.0000018116,0.0000018185,0.0000018283, -0.0000018330,0.0000018358,0.0000018376,0.0000018364,0.0000018291, -0.0000018206,0.0000018200,0.0000018263,0.0000018318,0.0000018339, -0.0000018358,0.0000018363,0.0000018339,0.0000018325,0.0000018341, -0.0000018352,0.0000018340,0.0000018323,0.0000018319,0.0000018329, -0.0000018363,0.0000018408,0.0000018436,0.0000018443,0.0000018431, -0.0000018388,0.0000018309,0.0000018210,0.0000018127,0.0000018087, -0.0000018088,0.0000018121,0.0000018160,0.0000018194,0.0000018213, -0.0000018221,0.0000018223,0.0000018225,0.0000018231,0.0000018248, -0.0000018274,0.0000018294,0.0000018305,0.0000018307,0.0000018306, -0.0000018305,0.0000018304,0.0000018298,0.0000018287,0.0000018274, -0.0000018264,0.0000018256,0.0000018246,0.0000018236,0.0000018226, -0.0000018213,0.0000018194,0.0000018168,0.0000018137,0.0000018106, -0.0000018095,0.0000018083,0.0000018130,0.0000018198,0.0000018271, -0.0000018342,0.0000018415,0.0000018482,0.0000018534,0.0000018568, -0.0000018587,0.0000018590,0.0000018575,0.0000018543,0.0000018496, -0.0000018463,0.0000018458,0.0000018483,0.0000018954,0.0000019549, -0.0000019716,0.0000019794,0.0000019867,0.0000019899,0.0000019877, -0.0000019912,0.0000019989,0.0000019996,0.0000019987,0.0000019960, -0.0000019937,0.0000019947,0.0000019956,0.0000019938,0.0000019926, -0.0000019935,0.0000019952,0.0000019969,0.0000019986,0.0000020005, -0.0000020021,0.0000020034,0.0000020028,0.0000020009,0.0000019962, -0.0000019870,0.0000019748,0.0000019637,0.0000019606,0.0000019606, -0.0000019642,0.0000019686,0.0000019718,0.0000019722,0.0000019721, -0.0000019711,0.0000019704,0.0000019696,0.0000019684,0.0000019680, -0.0000019681,0.0000019684,0.0000019684,0.0000019681,0.0000019672, -0.0000019657,0.0000019637,0.0000019613,0.0000019582,0.0000019546, -0.0000019506,0.0000019464,0.0000019420,0.0000019379,0.0000019343, -0.0000019311,0.0000019289,0.0000019280,0.0000019286,0.0000019313, -0.0000019360,0.0000019415,0.0000019470,0.0000019518,0.0000019551, -0.0000019571,0.0000019594,0.0000019630,0.0000019658,0.0000019651, -0.0000019574,0.0000019490,0.0000019435,0.0000019413,0.0000019382, -0.0000019338,0.0000019318,0.0000019334,0.0000019392,0.0000019461, -0.0000019493,0.0000019443,0.0000019209,0.0000018802,0.0000018378, -0.0000018125,0.0000018081,0.0000018138,0.0000018247,0.0000018342, -0.0000018407,0.0000018457,0.0000018500,0.0000018532,0.0000018542, -0.0000018541,0.0000018525,0.0000018498,0.0000018472,0.0000018455, -0.0000018465,0.0000018482,0.0000018519,0.0000018564,0.0000018612, -0.0000018651,0.0000018671,0.0000018681,0.0000018673,0.0000018629, -0.0000018595,0.0000018566,0.0000018544,0.0000018514,0.0000018481, -0.0000018432,0.0000018388,0.0000018348,0.0000018328,0.0000018338, -0.0000018387,0.0000018473,0.0000018584,0.0000018690,0.0000018771, -0.0000018836,0.0000018889,0.0000018936,0.0000018973,0.0000018986, -0.0000018986,0.0000018965,0.0000018880,0.0000018751,0.0000018647, -0.0000018633,0.0000018708,0.0000018875,0.0000019002,0.0000018969, -0.0000018764,0.0000018532,0.0000018401,0.0000018363,0.0000018353, -0.0000018336,0.0000018315,0.0000018299,0.0000018288,0.0000018273, -0.0000018250,0.0000018230,0.0000018211,0.0000018225,0.0000018287, -0.0000018392,0.0000018525,0.0000018675,0.0000018836,0.0000018997, -0.0000019149,0.0000019282,0.0000019390,0.0000019477,0.0000019557, -0.0000019635,0.0000019711,0.0000019785,0.0000019853,0.0000019919, -0.0000019980,0.0000020034,0.0000020086,0.0000020131,0.0000020161, -0.0000020190,0.0000020212,0.0000020223,0.0000020226,0.0000020218, -0.0000020204,0.0000020188,0.0000020169,0.0000020152,0.0000020138, -0.0000020124,0.0000020095,0.0000020058,0.0000020019,0.0000019986, -0.0000019964,0.0000019947,0.0000019929,0.0000019912,0.0000019884, -0.0000019867,0.0000019873,0.0000019902,0.0000019940,0.0000019969, -0.0000019992,0.0000020047,0.0000020076,0.0000019921,0.0000019680, -0.0000019658,0.0000019675,0.0000019683,0.0000019732,0.0000019746, -0.0000019713,0.0000019667,0.0000019753,0.0000020005,0.0000020110, -0.0000020115,0.0000020096,0.0000019986,0.0000019789,0.0000019672, -0.0000019645,0.0000019638,0.0000019694,0.0000019897,0.0000020169, -0.0000020339,0.0000020356,0.0000020258,0.0000020108,0.0000019964, -0.0000019864,0.0000019811,0.0000019773,0.0000019752,0.0000019762, -0.0000019856,0.0000019980,0.0000020097,0.0000020145,0.0000020144, -0.0000020111,0.0000020069,0.0000020048,0.0000020031,0.0000020021, -0.0000019971,0.0000019896,0.0000019794,0.0000019672,0.0000019546, -0.0000019434,0.0000019334,0.0000019250,0.0000019178,0.0000019119, -0.0000019066,0.0000019020,0.0000018985,0.0000018976,0.0000018977, -0.0000018976,0.0000018987,0.0000019020,0.0000019072,0.0000019149, -0.0000019250,0.0000019370,0.0000019494,0.0000019640,0.0000019797, -0.0000019944,0.0000020075,0.0000020183,0.0000020270,0.0000020334, -0.0000020374,0.0000020393,0.0000020403,0.0000020415,0.0000020425, -0.0000020406,0.0000020386,0.0000020365,0.0000020352,0.0000020348, -0.0000020347,0.0000020346,0.0000020343,0.0000020344,0.0000020359, -0.0000020394,0.0000020438,0.0000020471,0.0000020514,0.0000020551, -0.0000020584,0.0000020606,0.0000020607,0.0000020586,0.0000020560, -0.0000020540,0.0000020526,0.0000020513,0.0000020498,0.0000020480, -0.0000020457,0.0000020425,0.0000020396,0.0000020381,0.0000020376, -0.0000020378,0.0000020381,0.0000020385,0.0000020388,0.0000020390, -0.0000020392,0.0000020397,0.0000020402,0.0000020407,0.0000020410, -0.0000020409,0.0000020404,0.0000020395,0.0000020385,0.0000020374, -0.0000020365,0.0000020360,0.0000020357,0.0000020353,0.0000020350, -0.0000020348,0.0000020348,0.0000020350,0.0000020353,0.0000020358, -0.0000020365,0.0000020373,0.0000020380,0.0000020385,0.0000020393, -0.0000020406,0.0000020417,0.0000020427,0.0000020438,0.0000020450, -0.0000020459,0.0000020470,0.0000020477,0.0000020484,0.0000020498, -0.0000020509,0.0000020518,0.0000020523,0.0000020525,0.0000020523, -0.0000020518,0.0000020510,0.0000020496,0.0000020469,0.0000020435, -0.0000020399,0.0000020352,0.0000020294,0.0000020244,0.0000020203, -0.0000020195,0.0000020202,0.0000020216,0.0000020243,0.0000020255, -0.0000020260,0.0000020259,0.0000020225,0.0000020173,0.0000020110, -0.0000020047,0.0000019996,0.0000019967,0.0000019936,0.0000019905, -0.0000019866,0.0000019846,0.0000019853,0.0000019885,0.0000019929, -0.0000019981,0.0000020034,0.0000020089,0.0000020125,0.0000020135, -0.0000020143,0.0000020152,0.0000020154,0.0000020138,0.0000020138, -0.0000020136,0.0000020133,0.0000020143,0.0000020177,0.0000020242, -0.0000020322,0.0000020395,0.0000020452,0.0000020489,0.0000020507, -0.0000020507,0.0000020504,0.0000020491,0.0000020461,0.0000020424, -0.0000020397,0.0000020396,0.0000020408,0.0000020409,0.0000020400, -0.0000020383,0.0000020351,0.0000020312,0.0000020269,0.0000020212, -0.0000020152,0.0000020089,0.0000020036,0.0000020001,0.0000019983, -0.0000019968,0.0000019964,0.0000019978,0.0000020018,0.0000020085, -0.0000020163,0.0000020236,0.0000020301,0.0000020351,0.0000020364, -0.0000020361,0.0000020348,0.0000020322,0.0000020283,0.0000020242, -0.0000020214,0.0000020197,0.0000020182,0.0000020162,0.0000020142, -0.0000020126,0.0000020104,0.0000020074,0.0000020035,0.0000019994, -0.0000019951,0.0000019911,0.0000019880,0.0000019858,0.0000019849, -0.0000019848,0.0000019844,0.0000019831,0.0000019803,0.0000019770, -0.0000019739,0.0000019708,0.0000019675,0.0000019640,0.0000019603, -0.0000019565,0.0000019522,0.0000019485,0.0000019460,0.0000019449, -0.0000019450,0.0000019460,0.0000019482,0.0000019514,0.0000019539, -0.0000019554,0.0000019563,0.0000019568,0.0000019557,0.0000019527, -0.0000019483,0.0000019443,0.0000019419,0.0000019409,0.0000019399, -0.0000019402,0.0000019413,0.0000019414,0.0000019397,0.0000019363, -0.0000019316,0.0000019259,0.0000019208,0.0000019182,0.0000019178, -0.0000019189,0.0000019205,0.0000019220,0.0000019236,0.0000019246, -0.0000019253,0.0000019257,0.0000019248,0.0000019223,0.0000019196, -0.0000019200,0.0000019204,0.0000019198,0.0000019177,0.0000019142, -0.0000019104,0.0000019070,0.0000019039,0.0000019007,0.0000018969, -0.0000018918,0.0000018865,0.0000018819,0.0000018784,0.0000018758, -0.0000018753,0.0000018763,0.0000018815,0.0000018885,0.0000018926, -0.0000018956,0.0000018966,0.0000018940,0.0000018890,0.0000018865, -0.0000018864,0.0000018895,0.0000018941,0.0000019004,0.0000019061, -0.0000019086,0.0000019080,0.0000019077,0.0000019104,0.0000019163, -0.0000019213,0.0000019242,0.0000019261,0.0000019269,0.0000019277, -0.0000019284,0.0000019285,0.0000019246,0.0000019168,0.0000019098, -0.0000019062,0.0000019048,0.0000019026,0.0000018993,0.0000018975, -0.0000019014,0.0000019104,0.0000019182,0.0000019214,0.0000019201, -0.0000019166,0.0000019113,0.0000019024,0.0000018925,0.0000018867, -0.0000018856,0.0000018886,0.0000018944,0.0000019000,0.0000019005, -0.0000018935,0.0000018834,0.0000018726,0.0000018635,0.0000018549, -0.0000018464,0.0000018428,0.0000018447,0.0000018486,0.0000018516, -0.0000018528,0.0000018527,0.0000018517,0.0000018504,0.0000018488, -0.0000018469,0.0000018447,0.0000018432,0.0000018431,0.0000018428, -0.0000018408,0.0000018356,0.0000018271,0.0000018177,0.0000018083, -0.0000017993,0.0000017906,0.0000017827,0.0000017771,0.0000017742, -0.0000017721,0.0000017684,0.0000017631,0.0000017589,0.0000017574, -0.0000017578,0.0000017598,0.0000017617,0.0000017653,0.0000017690, -0.0000017726,0.0000017759,0.0000017774,0.0000017761,0.0000017738, -0.0000017716,0.0000017688,0.0000017644,0.0000017609,0.0000017599, -0.0000017596,0.0000017583,0.0000017553,0.0000017516,0.0000017473, -0.0000017414,0.0000017352,0.0000017315,0.0000017309,0.0000017317, -0.0000017316,0.0000017316,0.0000017343,0.0000017386,0.0000017414, -0.0000017424,0.0000017447,0.0000017481,0.0000017497,0.0000017491, -0.0000017454,0.0000017388,0.0000017336,0.0000017312,0.0000017316, -0.0000017321,0.0000017320,0.0000017304,0.0000017273,0.0000017216, -0.0000017156,0.0000017117,0.0000017097,0.0000017068,0.0000017046, -0.0000017016,0.0000017008,0.0000017046,0.0000017126,0.0000017234, -0.0000017334,0.0000017411,0.0000017491,0.0000017582,0.0000017669, -0.0000017763,0.0000017865,0.0000017985,0.0000018123,0.0000018296, -0.0000018462,0.0000018550,0.0000018569,0.0000018551,0.0000018539, -0.0000018551,0.0000018550,0.0000018506,0.0000018449,0.0000018421, -0.0000018423,0.0000018421,0.0000018399,0.0000018388,0.0000018385, -0.0000018359,0.0000018326,0.0000018325,0.0000018350,0.0000018359, -0.0000018312,0.0000018237,0.0000018191,0.0000018172,0.0000018161, -0.0000018131,0.0000018075,0.0000018034,0.0000018018,0.0000017984, -0.0000017923,0.0000017884,0.0000017893,0.0000017949,0.0000018045, -0.0000018141,0.0000018206,0.0000018231,0.0000018235,0.0000018298, -0.0000018402,0.0000018444,0.0000018449,0.0000018422,0.0000018441, -0.0000018492,0.0000018425,0.0000018264,0.0000018135,0.0000018045, -0.0000018001,0.0000018044,0.0000018148,0.0000018211,0.0000018238, -0.0000018253,0.0000018254,0.0000018234,0.0000018191,0.0000018128, -0.0000018055,0.0000017999,0.0000017981,0.0000017988,0.0000017997, -0.0000018000,0.0000018005,0.0000018007,0.0000018003,0.0000017988, -0.0000017982,0.0000017999,0.0000018031,0.0000018056,0.0000018065, -0.0000018064,0.0000018059,0.0000018051,0.0000018047,0.0000018037, -0.0000018032,0.0000018054,0.0000018101,0.0000018167,0.0000018256, -0.0000018324,0.0000018335,0.0000018310,0.0000018292,0.0000018280, -0.0000018246,0.0000018188,0.0000018144,0.0000018106,0.0000018075, -0.0000018079,0.0000018121,0.0000018176,0.0000018243,0.0000018322, -0.0000018385,0.0000018431,0.0000018459,0.0000018463,0.0000018420, -0.0000018330,0.0000018243,0.0000018162,0.0000018020,0.0000017847, -0.0000017810,0.0000017864,0.0000017927,0.0000017931,0.0000017883, -0.0000017770,0.0000017695,0.0000017698,0.0000017725,0.0000017730, -0.0000017731,0.0000017640,0.0000017500,0.0000017463,0.0000017544, -0.0000017686,0.0000017742,0.0000017722,0.0000017697,0.0000017681, -0.0000017680,0.0000017713,0.0000017722,0.0000017798,0.0000017802, -0.0000017565,0.0000017540,0.0000017547,0.0000017580,0.0000017660, -0.0000017800,0.0000017815,0.0000017802,0.0000017766,0.0000017687, -0.0000017666,0.0000017696,0.0000017704,0.0000017647,0.0000017581, -0.0000017549,0.0000017518,0.0000017495,0.0000017513,0.0000017587, -0.0000017695,0.0000017804,0.0000017915,0.0000018020,0.0000018079, -0.0000018097,0.0000018095,0.0000018081,0.0000018063,0.0000018044, -0.0000018026,0.0000018001,0.0000017965,0.0000017915,0.0000017857, -0.0000017801,0.0000017759,0.0000017739,0.0000017733,0.0000017723, -0.0000017683,0.0000017670,0.0000017686,0.0000017729,0.0000017750, -0.0000017695,0.0000017592,0.0000017546,0.0000017669,0.0000017881, -0.0000017932,0.0000017891,0.0000017883,0.0000017943,0.0000018012, -0.0000018028,0.0000018010,0.0000018009,0.0000018068,0.0000018156, -0.0000018214,0.0000018262,0.0000018344,0.0000018452,0.0000018538, -0.0000018562,0.0000018560,0.0000018569,0.0000018558,0.0000018502, -0.0000018428,0.0000018303,0.0000018142,0.0000018112,0.0000018211, -0.0000018303,0.0000018336,0.0000018355,0.0000018363,0.0000018322, -0.0000018228,0.0000018182,0.0000018209,0.0000018282,0.0000018346, -0.0000018401,0.0000018420,0.0000018399,0.0000018365,0.0000018353, -0.0000018349,0.0000018335,0.0000018317,0.0000018312,0.0000018331, -0.0000018368,0.0000018396,0.0000018400,0.0000018373,0.0000018301, -0.0000018192,0.0000018084,0.0000018024,0.0000018026,0.0000018071, -0.0000018122,0.0000018170,0.0000018192,0.0000018199,0.0000018208, -0.0000018234,0.0000018282,0.0000018342,0.0000018394,0.0000018430, -0.0000018448,0.0000018451,0.0000018445,0.0000018433,0.0000018423, -0.0000018420,0.0000018420,0.0000018417,0.0000018415,0.0000018413, -0.0000018411,0.0000018404,0.0000018389,0.0000018363,0.0000018328, -0.0000018287,0.0000018251,0.0000018220,0.0000018188,0.0000018152, -0.0000018105,0.0000018061,0.0000018046,0.0000018053,0.0000018107, -0.0000018178,0.0000018267,0.0000018361,0.0000018440,0.0000018501, -0.0000018551,0.0000018580,0.0000018576,0.0000018557,0.0000018502, -0.0000018456,0.0000018455,0.0000018612,0.0000019272,0.0000019695, -0.0000019767,0.0000019833,0.0000019901,0.0000019907,0.0000019934, -0.0000020001,0.0000020019,0.0000020016,0.0000019992,0.0000019965, -0.0000019973,0.0000019993,0.0000020002,0.0000020010,0.0000020024, -0.0000020040,0.0000020051,0.0000020055,0.0000020043,0.0000020047, -0.0000020011,0.0000019950,0.0000019865,0.0000019767,0.0000019670, -0.0000019618,0.0000019604,0.0000019640,0.0000019685,0.0000019700, -0.0000019711,0.0000019689,0.0000019643,0.0000019585,0.0000019524, -0.0000019466,0.0000019418,0.0000019386,0.0000019368,0.0000019359, -0.0000019354,0.0000019349,0.0000019342,0.0000019329,0.0000019307, -0.0000019276,0.0000019240,0.0000019199,0.0000019152,0.0000019102, -0.0000019050,0.0000018998,0.0000018949,0.0000018904,0.0000018865, -0.0000018835,0.0000018818,0.0000018816,0.0000018835,0.0000018876, -0.0000018938,0.0000019020,0.0000019119,0.0000019228,0.0000019327, -0.0000019405,0.0000019467,0.0000019529,0.0000019573,0.0000019563, -0.0000019499,0.0000019438,0.0000019415,0.0000019393,0.0000019349, -0.0000019315,0.0000019326,0.0000019381,0.0000019444,0.0000019453, -0.0000019300,0.0000018925,0.0000018469,0.0000018156,0.0000018086, -0.0000018147,0.0000018268,0.0000018374,0.0000018445,0.0000018498, -0.0000018539,0.0000018543,0.0000018533,0.0000018496,0.0000018452, -0.0000018415,0.0000018399,0.0000018420,0.0000018449,0.0000018495, -0.0000018545,0.0000018584,0.0000018602,0.0000018619,0.0000018618, -0.0000018601,0.0000018568,0.0000018534,0.0000018499,0.0000018468, -0.0000018445,0.0000018429,0.0000018406,0.0000018378,0.0000018350, -0.0000018319,0.0000018296,0.0000018287,0.0000018288,0.0000018308, -0.0000018362,0.0000018414,0.0000018486,0.0000018558,0.0000018639, -0.0000018739,0.0000018844,0.0000018918,0.0000018944,0.0000018943, -0.0000018908,0.0000018830,0.0000018742,0.0000018681,0.0000018662, -0.0000018696,0.0000018806,0.0000018931,0.0000018944,0.0000018766, -0.0000018515,0.0000018366,0.0000018318,0.0000018310,0.0000018293, -0.0000018277,0.0000018267,0.0000018259,0.0000018253,0.0000018243, -0.0000018229,0.0000018209,0.0000018191,0.0000018189,0.0000018197, -0.0000018220,0.0000018281,0.0000018378,0.0000018498,0.0000018653, -0.0000018817,0.0000018963,0.0000019098,0.0000019216,0.0000019314, -0.0000019404,0.0000019485,0.0000019557,0.0000019622,0.0000019684, -0.0000019748,0.0000019817,0.0000019878,0.0000019940,0.0000020005, -0.0000020059,0.0000020102,0.0000020129,0.0000020145,0.0000020150, -0.0000020145,0.0000020133,0.0000020118,0.0000020104,0.0000020088, -0.0000020068,0.0000020048,0.0000020030,0.0000020018,0.0000020003, -0.0000019980,0.0000019961,0.0000019938,0.0000019907,0.0000019910, -0.0000019928,0.0000019953,0.0000019973,0.0000019992,0.0000020049, -0.0000020111,0.0000020013,0.0000019739,0.0000019670,0.0000019683, -0.0000019693,0.0000019741,0.0000019748,0.0000019710,0.0000019678, -0.0000019784,0.0000020040,0.0000020136,0.0000020139,0.0000020121, -0.0000020003,0.0000019813,0.0000019698,0.0000019665,0.0000019669, -0.0000019789,0.0000020031,0.0000020261,0.0000020365,0.0000020318, -0.0000020189,0.0000020032,0.0000019908,0.0000019839,0.0000019799, -0.0000019766,0.0000019777,0.0000019881,0.0000020016,0.0000020131, -0.0000020169,0.0000020139,0.0000020087,0.0000020054,0.0000020028, -0.0000019993,0.0000019906,0.0000019777,0.0000019589,0.0000019382, -0.0000019195,0.0000019037,0.0000018896,0.0000018791,0.0000018720, -0.0000018670,0.0000018630,0.0000018596,0.0000018562,0.0000018537, -0.0000018520,0.0000018523,0.0000018537,0.0000018538,0.0000018532, -0.0000018542,0.0000018558,0.0000018589,0.0000018628,0.0000018686, -0.0000018728,0.0000018824,0.0000018959,0.0000019152,0.0000019367, -0.0000019597,0.0000019812,0.0000019992,0.0000020126,0.0000020221, -0.0000020294,0.0000020359,0.0000020409,0.0000020434,0.0000020437, -0.0000020433,0.0000020418,0.0000020407,0.0000020398,0.0000020392, -0.0000020395,0.0000020409,0.0000020422,0.0000020450,0.0000020457, -0.0000020452,0.0000020458,0.0000020494,0.0000020550,0.0000020593, -0.0000020603,0.0000020597,0.0000020582,0.0000020571,0.0000020561, -0.0000020547,0.0000020528,0.0000020507,0.0000020484,0.0000020453, -0.0000020427,0.0000020421,0.0000020427,0.0000020438,0.0000020448, -0.0000020456,0.0000020460,0.0000020460,0.0000020458,0.0000020456, -0.0000020457,0.0000020456,0.0000020454,0.0000020448,0.0000020441, -0.0000020433,0.0000020423,0.0000020416,0.0000020412,0.0000020411, -0.0000020411,0.0000020410,0.0000020411,0.0000020414,0.0000020419, -0.0000020424,0.0000020431,0.0000020438,0.0000020445,0.0000020449, -0.0000020450,0.0000020449,0.0000020451,0.0000020459,0.0000020464, -0.0000020476,0.0000020483,0.0000020491,0.0000020492,0.0000020495, -0.0000020491,0.0000020486,0.0000020487,0.0000020487,0.0000020487, -0.0000020489,0.0000020490,0.0000020489,0.0000020488,0.0000020485, -0.0000020481,0.0000020471,0.0000020455,0.0000020440,0.0000020406, -0.0000020370,0.0000020314,0.0000020267,0.0000020238,0.0000020223, -0.0000020219,0.0000020227,0.0000020239,0.0000020255,0.0000020267, -0.0000020268,0.0000020266,0.0000020239,0.0000020194,0.0000020147, -0.0000020114,0.0000020081,0.0000020056,0.0000020042,0.0000020046, -0.0000020068,0.0000020103,0.0000020127,0.0000020122,0.0000020123, -0.0000020124,0.0000020123,0.0000020129,0.0000020132,0.0000020132, -0.0000020123,0.0000020129,0.0000020146,0.0000020172,0.0000020221, -0.0000020267,0.0000020325,0.0000020393,0.0000020451,0.0000020493, -0.0000020513,0.0000020513,0.0000020507,0.0000020491,0.0000020467, -0.0000020430,0.0000020383,0.0000020343,0.0000020337,0.0000020349, -0.0000020351,0.0000020339,0.0000020321,0.0000020293,0.0000020256, -0.0000020211,0.0000020163,0.0000020111,0.0000020066,0.0000020026, -0.0000020011,0.0000020001,0.0000019999,0.0000020007,0.0000020026, -0.0000020064,0.0000020132,0.0000020221,0.0000020310,0.0000020375, -0.0000020426,0.0000020445,0.0000020436,0.0000020420,0.0000020400, -0.0000020369,0.0000020330,0.0000020301,0.0000020292,0.0000020298, -0.0000020317,0.0000020318,0.0000020316,0.0000020312,0.0000020299, -0.0000020278,0.0000020250,0.0000020214,0.0000020177,0.0000020145, -0.0000020113,0.0000020073,0.0000020048,0.0000020025,0.0000019997, -0.0000019968,0.0000019946,0.0000019930,0.0000019911,0.0000019888, -0.0000019858,0.0000019822,0.0000019782,0.0000019735,0.0000019693, -0.0000019661,0.0000019648,0.0000019651,0.0000019668,0.0000019694, -0.0000019726,0.0000019754,0.0000019765,0.0000019769,0.0000019772, -0.0000019760,0.0000019733,0.0000019691,0.0000019643,0.0000019610, -0.0000019600,0.0000019595,0.0000019590,0.0000019585,0.0000019575, -0.0000019554,0.0000019523,0.0000019483,0.0000019427,0.0000019364, -0.0000019305,0.0000019253,0.0000019219,0.0000019205,0.0000019200, -0.0000019218,0.0000019239,0.0000019262,0.0000019281,0.0000019291, -0.0000019284,0.0000019254,0.0000019228,0.0000019226,0.0000019227, -0.0000019231,0.0000019227,0.0000019208,0.0000019173,0.0000019140, -0.0000019121,0.0000019114,0.0000019093,0.0000019049,0.0000018990, -0.0000018927,0.0000018865,0.0000018809,0.0000018775,0.0000018776, -0.0000018826,0.0000018888,0.0000018937,0.0000018971,0.0000018986, -0.0000018975,0.0000018935,0.0000018918,0.0000018920,0.0000018947, -0.0000018980,0.0000019022,0.0000019059,0.0000019067,0.0000019058, -0.0000019056,0.0000019089,0.0000019152,0.0000019211,0.0000019256, -0.0000019281,0.0000019313,0.0000019333,0.0000019342,0.0000019333, -0.0000019282,0.0000019205,0.0000019130,0.0000019078,0.0000019049, -0.0000019028,0.0000018997,0.0000018974,0.0000019017,0.0000019094, -0.0000019172,0.0000019200,0.0000019194,0.0000019186,0.0000019147, -0.0000019054,0.0000018941,0.0000018865,0.0000018851,0.0000018870, -0.0000018923,0.0000018977,0.0000018990,0.0000018953,0.0000018860, -0.0000018755,0.0000018657,0.0000018555,0.0000018466,0.0000018434, -0.0000018450,0.0000018491,0.0000018524,0.0000018545,0.0000018547, -0.0000018549,0.0000018542,0.0000018533,0.0000018516,0.0000018491, -0.0000018468,0.0000018446,0.0000018422,0.0000018389,0.0000018346, -0.0000018299,0.0000018243,0.0000018169,0.0000018076,0.0000017968, -0.0000017864,0.0000017789,0.0000017757,0.0000017743,0.0000017718, -0.0000017681,0.0000017655,0.0000017645,0.0000017640,0.0000017640, -0.0000017650,0.0000017681,0.0000017712,0.0000017756,0.0000017791, -0.0000017796,0.0000017786,0.0000017779,0.0000017766,0.0000017731, -0.0000017686,0.0000017667,0.0000017667,0.0000017662,0.0000017638, -0.0000017599,0.0000017553,0.0000017498,0.0000017431,0.0000017372, -0.0000017343,0.0000017343,0.0000017350,0.0000017351,0.0000017362, -0.0000017388,0.0000017420,0.0000017437,0.0000017449,0.0000017472, -0.0000017496,0.0000017499,0.0000017493,0.0000017465,0.0000017422, -0.0000017372,0.0000017349,0.0000017342,0.0000017348,0.0000017352, -0.0000017352,0.0000017342,0.0000017303,0.0000017255,0.0000017215, -0.0000017178,0.0000017131,0.0000017074,0.0000017005,0.0000016974, -0.0000016987,0.0000017044,0.0000017111,0.0000017167,0.0000017221, -0.0000017301,0.0000017387,0.0000017472,0.0000017559,0.0000017676, -0.0000017850,0.0000018104,0.0000018347,0.0000018484,0.0000018526, -0.0000018513,0.0000018514,0.0000018525,0.0000018503,0.0000018440, -0.0000018379,0.0000018365,0.0000018382,0.0000018383,0.0000018373, -0.0000018370,0.0000018351,0.0000018319,0.0000018317,0.0000018343, -0.0000018347,0.0000018296,0.0000018230,0.0000018193,0.0000018178, -0.0000018168,0.0000018141,0.0000018085,0.0000018039,0.0000018017, -0.0000017975,0.0000017889,0.0000017805,0.0000017787,0.0000017833, -0.0000017932,0.0000018047,0.0000018134,0.0000018183,0.0000018197, -0.0000018241,0.0000018346,0.0000018418,0.0000018439,0.0000018434, -0.0000018405,0.0000018444,0.0000018473,0.0000018385,0.0000018211, -0.0000018065,0.0000017986,0.0000017983,0.0000018063,0.0000018161, -0.0000018215,0.0000018242,0.0000018256,0.0000018264,0.0000018252, -0.0000018216,0.0000018159,0.0000018096,0.0000018051,0.0000018040, -0.0000018041,0.0000018038,0.0000018036,0.0000018043,0.0000018047, -0.0000018036,0.0000018020,0.0000018024,0.0000018048,0.0000018072, -0.0000018087,0.0000018093,0.0000018090,0.0000018086,0.0000018076, -0.0000018059,0.0000018040,0.0000018047,0.0000018096,0.0000018157, -0.0000018233,0.0000018323,0.0000018371,0.0000018365,0.0000018340, -0.0000018335,0.0000018328,0.0000018301,0.0000018278,0.0000018259, -0.0000018225,0.0000018202,0.0000018203,0.0000018208,0.0000018226, -0.0000018285,0.0000018362,0.0000018430,0.0000018473,0.0000018482, -0.0000018462,0.0000018394,0.0000018311,0.0000018236,0.0000018160, -0.0000018016,0.0000017851,0.0000017837,0.0000017907,0.0000017946, -0.0000017940,0.0000017871,0.0000017761,0.0000017721,0.0000017748, -0.0000017768,0.0000017765,0.0000017705,0.0000017559,0.0000017475, -0.0000017509,0.0000017635,0.0000017720,0.0000017721,0.0000017689, -0.0000017651,0.0000017659,0.0000017713,0.0000017748,0.0000017752, -0.0000017838,0.0000017669,0.0000017543,0.0000017565,0.0000017586, -0.0000017648,0.0000017795,0.0000017829,0.0000017822,0.0000017819, -0.0000017751,0.0000017683,0.0000017688,0.0000017718,0.0000017708, -0.0000017645,0.0000017581,0.0000017540,0.0000017508,0.0000017486, -0.0000017485,0.0000017534,0.0000017616,0.0000017714,0.0000017802, -0.0000017881,0.0000017950,0.0000017995,0.0000018010,0.0000018004, -0.0000017984,0.0000017956,0.0000017918,0.0000017877,0.0000017837, -0.0000017805,0.0000017782,0.0000017764,0.0000017751,0.0000017739, -0.0000017714,0.0000017631,0.0000017626,0.0000017661,0.0000017708, -0.0000017730,0.0000017693,0.0000017612,0.0000017573,0.0000017670, -0.0000017873,0.0000017943,0.0000017910,0.0000017875,0.0000017904, -0.0000017985,0.0000018030,0.0000018028,0.0000018012,0.0000018046, -0.0000018137,0.0000018209,0.0000018241,0.0000018282,0.0000018367, -0.0000018478,0.0000018553,0.0000018567,0.0000018561,0.0000018564, -0.0000018545,0.0000018484,0.0000018404,0.0000018265,0.0000018118, -0.0000018123,0.0000018240,0.0000018313,0.0000018330,0.0000018347, -0.0000018335,0.0000018257,0.0000018174,0.0000018172,0.0000018244, -0.0000018341,0.0000018425,0.0000018468,0.0000018453,0.0000018402, -0.0000018356,0.0000018333,0.0000018322,0.0000018317,0.0000018323, -0.0000018347,0.0000018371,0.0000018374,0.0000018337,0.0000018241, -0.0000018106,0.0000018000,0.0000017969,0.0000018009,0.0000018076, -0.0000018132,0.0000018154,0.0000018164,0.0000018186,0.0000018236, -0.0000018317,0.0000018398,0.0000018457,0.0000018489,0.0000018499, -0.0000018499,0.0000018494,0.0000018485,0.0000018472,0.0000018458, -0.0000018448,0.0000018443,0.0000018442,0.0000018441,0.0000018441, -0.0000018442,0.0000018444,0.0000018447,0.0000018447,0.0000018445, -0.0000018437,0.0000018421,0.0000018385,0.0000018329,0.0000018269, -0.0000018212,0.0000018160,0.0000018113,0.0000018075,0.0000018047, -0.0000018039,0.0000018054,0.0000018122,0.0000018207,0.0000018295, -0.0000018379,0.0000018458,0.0000018522,0.0000018556,0.0000018546, -0.0000018510,0.0000018463,0.0000018475,0.0000018872,0.0000019559, -0.0000019764,0.0000019804,0.0000019889,0.0000019928,0.0000019947, -0.0000020007,0.0000020037,0.0000020044,0.0000020032,0.0000020009, -0.0000020014,0.0000020038,0.0000020065,0.0000020088,0.0000020106, -0.0000020096,0.0000020089,0.0000020044,0.0000019986,0.0000019910, -0.0000019827,0.0000019737,0.0000019665,0.0000019628,0.0000019620, -0.0000019644,0.0000019687,0.0000019698,0.0000019699,0.0000019654, -0.0000019569,0.0000019456,0.0000019326,0.0000019195,0.0000019078, -0.0000018981,0.0000018909,0.0000018866,0.0000018847,0.0000018840, -0.0000018842,0.0000018847,0.0000018851,0.0000018848,0.0000018837, -0.0000018815,0.0000018788,0.0000018756,0.0000018722,0.0000018689, -0.0000018661,0.0000018636,0.0000018612,0.0000018586,0.0000018566, -0.0000018549,0.0000018539,0.0000018535,0.0000018541,0.0000018558, -0.0000018588,0.0000018636,0.0000018703,0.0000018798,0.0000018923, -0.0000019058,0.0000019182,0.0000019285,0.0000019367,0.0000019412, -0.0000019414,0.0000019400,0.0000019399,0.0000019389,0.0000019346, -0.0000019305,0.0000019313,0.0000019371,0.0000019425,0.0000019358, -0.0000019056,0.0000018589,0.0000018220,0.0000018103,0.0000018171, -0.0000018306,0.0000018427,0.0000018499,0.0000018539,0.0000018546, -0.0000018542,0.0000018497,0.0000018424,0.0000018364,0.0000018337, -0.0000018349,0.0000018397,0.0000018459,0.0000018511,0.0000018539, -0.0000018559,0.0000018568,0.0000018560,0.0000018564,0.0000018564, -0.0000018560,0.0000018549,0.0000018540,0.0000018523,0.0000018522, -0.0000018522,0.0000018511,0.0000018485,0.0000018449,0.0000018412, -0.0000018378,0.0000018367,0.0000018367,0.0000018367,0.0000018372, -0.0000018380,0.0000018385,0.0000018400,0.0000018433,0.0000018493, -0.0000018578,0.0000018670,0.0000018731,0.0000018758,0.0000018767, -0.0000018766,0.0000018750,0.0000018738,0.0000018735,0.0000018730, -0.0000018734,0.0000018787,0.0000018892,0.0000018954,0.0000018851, -0.0000018596,0.0000018381,0.0000018295,0.0000018276,0.0000018280, -0.0000018304,0.0000018337,0.0000018358,0.0000018359,0.0000018337, -0.0000018302,0.0000018273,0.0000018255,0.0000018252,0.0000018252, -0.0000018246,0.0000018245,0.0000018249,0.0000018277,0.0000018340, -0.0000018449,0.0000018575,0.0000018715,0.0000018856,0.0000018982, -0.0000019102,0.0000019205,0.0000019291,0.0000019362,0.0000019429, -0.0000019498,0.0000019564,0.0000019623,0.0000019689,0.0000019756, -0.0000019817,0.0000019876,0.0000019931,0.0000019979,0.0000020015, -0.0000020037,0.0000020049,0.0000020054,0.0000020054,0.0000020052, -0.0000020047,0.0000020040,0.0000020035,0.0000020032,0.0000020023, -0.0000020012,0.0000020001,0.0000019989,0.0000019983,0.0000019991, -0.0000019994,0.0000019992,0.0000019996,0.0000020042,0.0000020113, -0.0000020083,0.0000019825,0.0000019694,0.0000019692,0.0000019702, -0.0000019748,0.0000019753,0.0000019711,0.0000019684,0.0000019821, -0.0000020079,0.0000020164,0.0000020169,0.0000020145,0.0000020028, -0.0000019834,0.0000019709,0.0000019675,0.0000019735,0.0000019907, -0.0000020150,0.0000020326,0.0000020348,0.0000020259,0.0000020108, -0.0000019968,0.0000019874,0.0000019825,0.0000019791,0.0000019787, -0.0000019891,0.0000020040,0.0000020151,0.0000020178,0.0000020144, -0.0000020093,0.0000020062,0.0000020013,0.0000019893,0.0000019715, -0.0000019470,0.0000019209,0.0000018979,0.0000018785,0.0000018655, -0.0000018593,0.0000018535,0.0000018474,0.0000018441,0.0000018427, -0.0000018406,0.0000018380,0.0000018354,0.0000018338,0.0000018341, -0.0000018357,0.0000018385,0.0000018422,0.0000018461,0.0000018502, -0.0000018542,0.0000018604,0.0000018661,0.0000018671,0.0000018654, -0.0000018614,0.0000018587,0.0000018593,0.0000018676,0.0000018849, -0.0000019096,0.0000019378,0.0000019654,0.0000019883,0.0000020045, -0.0000020156,0.0000020252,0.0000020346,0.0000020412,0.0000020434, -0.0000020430,0.0000020422,0.0000020417,0.0000020416,0.0000020421, -0.0000020420,0.0000020411,0.0000020386,0.0000020352,0.0000020335, -0.0000020347,0.0000020393,0.0000020464,0.0000020524,0.0000020556, -0.0000020567,0.0000020570,0.0000020567,0.0000020562,0.0000020552, -0.0000020535,0.0000020516,0.0000020497,0.0000020475,0.0000020458, -0.0000020458,0.0000020472,0.0000020489,0.0000020503,0.0000020513, -0.0000020519,0.0000020520,0.0000020516,0.0000020510,0.0000020506, -0.0000020504,0.0000020504,0.0000020494,0.0000020483,0.0000020473, -0.0000020463,0.0000020456,0.0000020455,0.0000020457,0.0000020459, -0.0000020460,0.0000020464,0.0000020470,0.0000020478,0.0000020477, -0.0000020481,0.0000020482,0.0000020482,0.0000020476,0.0000020468, -0.0000020454,0.0000020442,0.0000020434,0.0000020429,0.0000020422, -0.0000020412,0.0000020398,0.0000020381,0.0000020361,0.0000020342, -0.0000020328,0.0000020317,0.0000020308,0.0000020303,0.0000020300, -0.0000020296,0.0000020290,0.0000020288,0.0000020295,0.0000020306, -0.0000020322,0.0000020340,0.0000020363,0.0000020377,0.0000020372, -0.0000020345,0.0000020325,0.0000020300,0.0000020284,0.0000020263, -0.0000020248,0.0000020245,0.0000020248,0.0000020256,0.0000020262, -0.0000020267,0.0000020273,0.0000020270,0.0000020261,0.0000020245, -0.0000020226,0.0000020210,0.0000020195,0.0000020177,0.0000020162, -0.0000020150,0.0000020136,0.0000020126,0.0000020118,0.0000020115, -0.0000020118,0.0000020129,0.0000020148,0.0000020163,0.0000020190, -0.0000020228,0.0000020272,0.0000020322,0.0000020367,0.0000020399, -0.0000020432,0.0000020464,0.0000020487,0.0000020502,0.0000020503, -0.0000020487,0.0000020457,0.0000020420,0.0000020373,0.0000020319, -0.0000020275,0.0000020260,0.0000020271,0.0000020279,0.0000020267, -0.0000020246,0.0000020217,0.0000020183,0.0000020144,0.0000020100, -0.0000020064,0.0000020049,0.0000020037,0.0000020039,0.0000020053, -0.0000020071,0.0000020094,0.0000020117,0.0000020151,0.0000020199, -0.0000020260,0.0000020329,0.0000020373,0.0000020397,0.0000020398, -0.0000020378,0.0000020337,0.0000020281,0.0000020236,0.0000020188, -0.0000020153,0.0000020158,0.0000020200,0.0000020263,0.0000020329, -0.0000020376,0.0000020408,0.0000020432,0.0000020452,0.0000020441, -0.0000020414,0.0000020382,0.0000020360,0.0000020349,0.0000020325, -0.0000020308,0.0000020285,0.0000020246,0.0000020197,0.0000020150, -0.0000020103,0.0000020066,0.0000020032,0.0000019993,0.0000019950, -0.0000019913,0.0000019874,0.0000019837,0.0000019810,0.0000019795, -0.0000019795,0.0000019814,0.0000019838,0.0000019860,0.0000019875, -0.0000019877,0.0000019874,0.0000019876,0.0000019868,0.0000019848, -0.0000019817,0.0000019780,0.0000019752,0.0000019747,0.0000019753, -0.0000019764,0.0000019768,0.0000019763,0.0000019749,0.0000019725, -0.0000019688,0.0000019638,0.0000019580,0.0000019517,0.0000019444, -0.0000019371,0.0000019313,0.0000019269,0.0000019245,0.0000019248, -0.0000019269,0.0000019287,0.0000019298,0.0000019304,0.0000019301, -0.0000019286,0.0000019271,0.0000019256,0.0000019243,0.0000019240, -0.0000019237,0.0000019230,0.0000019204,0.0000019179,0.0000019173, -0.0000019182,0.0000019182,0.0000019156,0.0000019110,0.0000019052, -0.0000018984,0.0000018913,0.0000018857,0.0000018835,0.0000018853, -0.0000018896,0.0000018932,0.0000018959,0.0000018982,0.0000018964, -0.0000018930,0.0000018918,0.0000018922,0.0000018952,0.0000018982, -0.0000019008,0.0000019024,0.0000019019,0.0000019007,0.0000019008, -0.0000019039,0.0000019101,0.0000019162,0.0000019222,0.0000019278, -0.0000019326,0.0000019354,0.0000019356,0.0000019344,0.0000019297, -0.0000019234,0.0000019160,0.0000019101,0.0000019074,0.0000019060, -0.0000019026,0.0000019011,0.0000019042,0.0000019098,0.0000019154, -0.0000019174,0.0000019179,0.0000019187,0.0000019161,0.0000019076, -0.0000018954,0.0000018868,0.0000018853,0.0000018866,0.0000018895, -0.0000018934,0.0000018961,0.0000018939,0.0000018875,0.0000018784, -0.0000018677,0.0000018560,0.0000018470,0.0000018437,0.0000018447, -0.0000018482,0.0000018519,0.0000018537,0.0000018548,0.0000018553, -0.0000018553,0.0000018553,0.0000018539,0.0000018517,0.0000018493, -0.0000018460,0.0000018417,0.0000018373,0.0000018340,0.0000018319, -0.0000018293,0.0000018241,0.0000018158,0.0000018045,0.0000017922, -0.0000017825,0.0000017773,0.0000017752,0.0000017737,0.0000017725, -0.0000017724,0.0000017725,0.0000017721,0.0000017717,0.0000017721, -0.0000017737,0.0000017770,0.0000017807,0.0000017822,0.0000017819, -0.0000017822,0.0000017827,0.0000017808,0.0000017765,0.0000017729, -0.0000017720,0.0000017724,0.0000017716,0.0000017681,0.0000017631, -0.0000017577,0.0000017516,0.0000017450,0.0000017404,0.0000017389, -0.0000017394,0.0000017397,0.0000017401,0.0000017413,0.0000017434, -0.0000017455,0.0000017462,0.0000017470,0.0000017482,0.0000017490, -0.0000017491,0.0000017489,0.0000017482,0.0000017451,0.0000017416, -0.0000017387,0.0000017371,0.0000017365,0.0000017365,0.0000017373, -0.0000017371,0.0000017346,0.0000017307,0.0000017282,0.0000017269, -0.0000017232,0.0000017151,0.0000017053,0.0000017010,0.0000017023, -0.0000017057,0.0000017085,0.0000017103,0.0000017152,0.0000017226, -0.0000017294,0.0000017344,0.0000017424,0.0000017593,0.0000017893, -0.0000018198,0.0000018383,0.0000018446,0.0000018444,0.0000018451, -0.0000018447,0.0000018398,0.0000018319,0.0000018284,0.0000018314, -0.0000018348,0.0000018355,0.0000018355,0.0000018342,0.0000018311, -0.0000018308,0.0000018335,0.0000018337,0.0000018285,0.0000018230, -0.0000018205,0.0000018188,0.0000018180,0.0000018158,0.0000018102, -0.0000018045,0.0000018008,0.0000017967,0.0000017893,0.0000017791, -0.0000017737,0.0000017762,0.0000017855,0.0000017973,0.0000018065, -0.0000018128,0.0000018163,0.0000018198,0.0000018286,0.0000018381, -0.0000018416,0.0000018431,0.0000018412,0.0000018399,0.0000018452, -0.0000018459,0.0000018325,0.0000018121,0.0000017990,0.0000017950, -0.0000017969,0.0000018049,0.0000018128,0.0000018181,0.0000018217, -0.0000018248,0.0000018267,0.0000018254,0.0000018224,0.0000018172, -0.0000018118,0.0000018092,0.0000018090,0.0000018079,0.0000018061, -0.0000018057,0.0000018063,0.0000018058,0.0000018040,0.0000018032, -0.0000018043,0.0000018062,0.0000018076,0.0000018088,0.0000018096, -0.0000018101,0.0000018105,0.0000018099,0.0000018079,0.0000018057, -0.0000018076,0.0000018139,0.0000018220,0.0000018312,0.0000018393, -0.0000018417,0.0000018404,0.0000018392,0.0000018392,0.0000018379, -0.0000018357,0.0000018346,0.0000018326,0.0000018291,0.0000018261, -0.0000018237,0.0000018230,0.0000018261,0.0000018338,0.0000018426, -0.0000018481,0.0000018489,0.0000018476,0.0000018427,0.0000018371, -0.0000018314,0.0000018246,0.0000018157,0.0000018018,0.0000017866, -0.0000017849,0.0000017913,0.0000017960,0.0000017951,0.0000017865, -0.0000017779,0.0000017772,0.0000017793,0.0000017791,0.0000017754, -0.0000017625,0.0000017503,0.0000017496,0.0000017585,0.0000017674, -0.0000017702,0.0000017693,0.0000017642,0.0000017633,0.0000017679, -0.0000017764,0.0000017746,0.0000017798,0.0000017791,0.0000017571, -0.0000017568,0.0000017593,0.0000017642,0.0000017778,0.0000017841, -0.0000017830,0.0000017846,0.0000017819,0.0000017735,0.0000017697, -0.0000017711,0.0000017722,0.0000017698,0.0000017640,0.0000017578, -0.0000017530,0.0000017497,0.0000017479,0.0000017481,0.0000017502, -0.0000017544,0.0000017610,0.0000017688,0.0000017753,0.0000017795, -0.0000017817,0.0000017824,0.0000017819,0.0000017811,0.0000017804, -0.0000017799,0.0000017789,0.0000017773,0.0000017753,0.0000017731, -0.0000017709,0.0000017685,0.0000017660,0.0000017623,0.0000017624, -0.0000017661,0.0000017699,0.0000017708,0.0000017676,0.0000017625, -0.0000017611,0.0000017707,0.0000017885,0.0000017959,0.0000017938, -0.0000017885,0.0000017881,0.0000017947,0.0000018020,0.0000018045, -0.0000018031,0.0000018037,0.0000018108,0.0000018198,0.0000018242, -0.0000018260,0.0000018304,0.0000018398,0.0000018507,0.0000018569, -0.0000018569,0.0000018559,0.0000018560,0.0000018528,0.0000018458, -0.0000018370,0.0000018215,0.0000018098,0.0000018144,0.0000018266, -0.0000018309,0.0000018324,0.0000018337,0.0000018289,0.0000018189, -0.0000018149,0.0000018212,0.0000018330,0.0000018434,0.0000018486, -0.0000018481,0.0000018431,0.0000018367,0.0000018329,0.0000018321, -0.0000018329,0.0000018347,0.0000018364,0.0000018361,0.0000018312, -0.0000018202,0.0000018059,0.0000017954,0.0000017943,0.0000018007, -0.0000018093,0.0000018138,0.0000018143,0.0000018154,0.0000018213, -0.0000018318,0.0000018419,0.0000018483,0.0000018512,0.0000018524, -0.0000018534,0.0000018546,0.0000018552,0.0000018547,0.0000018533, -0.0000018512,0.0000018492,0.0000018480,0.0000018475,0.0000018479, -0.0000018488,0.0000018498,0.0000018505,0.0000018511,0.0000018514, -0.0000018510,0.0000018496,0.0000018472,0.0000018449,0.0000018430, -0.0000018416,0.0000018387,0.0000018323,0.0000018240,0.0000018171, -0.0000018130,0.0000018097,0.0000018065,0.0000018047,0.0000018070, -0.0000018101,0.0000018170,0.0000018244,0.0000018331,0.0000018425, -0.0000018504,0.0000018537,0.0000018510,0.0000018470,0.0000018583, -0.0000019224,0.0000019729,0.0000019795,0.0000019860,0.0000019935, -0.0000019957,0.0000020006,0.0000020046,0.0000020065,0.0000020076, -0.0000020073,0.0000020078,0.0000020096,0.0000020115,0.0000020113, -0.0000020107,0.0000020056,0.0000019968,0.0000019873,0.0000019782, -0.0000019701,0.0000019650,0.0000019643,0.0000019641,0.0000019666, -0.0000019693,0.0000019696,0.0000019698,0.0000019639,0.0000019527, -0.0000019377,0.0000019201,0.0000019014,0.0000018841,0.0000018712, -0.0000018626,0.0000018565,0.0000018528,0.0000018516,0.0000018521, -0.0000018528,0.0000018539,0.0000018554,0.0000018569,0.0000018580, -0.0000018586,0.0000018584,0.0000018578,0.0000018570,0.0000018561, -0.0000018554,0.0000018546,0.0000018541,0.0000018534,0.0000018524, -0.0000018517,0.0000018514,0.0000018514,0.0000018517,0.0000018526, -0.0000018539,0.0000018558,0.0000018580,0.0000018606,0.0000018639, -0.0000018677,0.0000018756,0.0000018872,0.0000019005,0.0000019120, -0.0000019203,0.0000019264,0.0000019315,0.0000019356,0.0000019360, -0.0000019319,0.0000019282,0.0000019299,0.0000019357,0.0000019363, -0.0000019152,0.0000018709,0.0000018293,0.0000018144,0.0000018206, -0.0000018359,0.0000018486,0.0000018548,0.0000018554,0.0000018551, -0.0000018502,0.0000018432,0.0000018360,0.0000018321,0.0000018315, -0.0000018361,0.0000018414,0.0000018471,0.0000018509,0.0000018531, -0.0000018546,0.0000018559,0.0000018575,0.0000018592,0.0000018610, -0.0000018619,0.0000018621,0.0000018617,0.0000018594,0.0000018575, -0.0000018569,0.0000018566,0.0000018547,0.0000018505,0.0000018451, -0.0000018403,0.0000018369,0.0000018367,0.0000018384,0.0000018402, -0.0000018414,0.0000018402,0.0000018379,0.0000018357,0.0000018362, -0.0000018414,0.0000018509,0.0000018603,0.0000018657,0.0000018677, -0.0000018693,0.0000018717,0.0000018735,0.0000018755,0.0000018773, -0.0000018785,0.0000018787,0.0000018806,0.0000018888,0.0000018994, -0.0000019000,0.0000018832,0.0000018570,0.0000018361,0.0000018262, -0.0000018250,0.0000018287,0.0000018367,0.0000018441,0.0000018492, -0.0000018502,0.0000018473,0.0000018443,0.0000018420,0.0000018416, -0.0000018418,0.0000018415,0.0000018406,0.0000018394,0.0000018385, -0.0000018390,0.0000018413,0.0000018469,0.0000018552,0.0000018634, -0.0000018739,0.0000018854,0.0000018963,0.0000019057,0.0000019137, -0.0000019215,0.0000019294,0.0000019367,0.0000019433,0.0000019497, -0.0000019547,0.0000019592,0.0000019648,0.0000019708,0.0000019768, -0.0000019824,0.0000019871,0.0000019912,0.0000019949,0.0000019980, -0.0000020005,0.0000020017,0.0000020029,0.0000020036,0.0000020036, -0.0000020035,0.0000020033,0.0000020032,0.0000020042,0.0000020042, -0.0000020040,0.0000020023,0.0000020011,0.0000020042,0.0000020120, -0.0000020116,0.0000019915,0.0000019723,0.0000019712,0.0000019715, -0.0000019754,0.0000019757,0.0000019714,0.0000019695,0.0000019858, -0.0000020119,0.0000020198,0.0000020206,0.0000020174,0.0000020043, -0.0000019858,0.0000019744,0.0000019721,0.0000019831,0.0000020030, -0.0000020238,0.0000020353,0.0000020314,0.0000020180,0.0000020027, -0.0000019914,0.0000019851,0.0000019813,0.0000019803,0.0000019885, -0.0000020046,0.0000020167,0.0000020191,0.0000020153,0.0000020105, -0.0000020066,0.0000019970,0.0000019767,0.0000019471,0.0000019149, -0.0000018872,0.0000018666,0.0000018551,0.0000018496,0.0000018456, -0.0000018417,0.0000018374,0.0000018302,0.0000018239,0.0000018215, -0.0000018214,0.0000018216,0.0000018208,0.0000018195,0.0000018204, -0.0000018200,0.0000018233,0.0000018289,0.0000018341,0.0000018377, -0.0000018428,0.0000018518,0.0000018607,0.0000018696,0.0000018794, -0.0000018835,0.0000018816,0.0000018715,0.0000018586,0.0000018531, -0.0000018567,0.0000018731,0.0000018998,0.0000019326,0.0000019656, -0.0000019902,0.0000020036,0.0000020132,0.0000020245,0.0000020349, -0.0000020406,0.0000020416,0.0000020405,0.0000020388,0.0000020374, -0.0000020355,0.0000020327,0.0000020297,0.0000020279,0.0000020285, -0.0000020304,0.0000020338,0.0000020384,0.0000020428,0.0000020459, -0.0000020477,0.0000020489,0.0000020494,0.0000020491,0.0000020482, -0.0000020468,0.0000020451,0.0000020432,0.0000020417,0.0000020408, -0.0000020406,0.0000020413,0.0000020425,0.0000020437,0.0000020446, -0.0000020454,0.0000020460,0.0000020464,0.0000020466,0.0000020470, -0.0000020476,0.0000020484,0.0000020487,0.0000020485,0.0000020484, -0.0000020479,0.0000020473,0.0000020470,0.0000020471,0.0000020471, -0.0000020471,0.0000020471,0.0000020470,0.0000020467,0.0000020460, -0.0000020451,0.0000020441,0.0000020427,0.0000020407,0.0000020381, -0.0000020353,0.0000020326,0.0000020305,0.0000020294,0.0000020280, -0.0000020264,0.0000020251,0.0000020239,0.0000020226,0.0000020213, -0.0000020214,0.0000020210,0.0000020206,0.0000020202,0.0000020196, -0.0000020184,0.0000020168,0.0000020149,0.0000020124,0.0000020116, -0.0000020125,0.0000020142,0.0000020173,0.0000020227,0.0000020278, -0.0000020314,0.0000020330,0.0000020327,0.0000020331,0.0000020319, -0.0000020301,0.0000020287,0.0000020276,0.0000020267,0.0000020262, -0.0000020261,0.0000020266,0.0000020265,0.0000020257,0.0000020245, -0.0000020233,0.0000020216,0.0000020198,0.0000020182,0.0000020172, -0.0000020162,0.0000020162,0.0000020165,0.0000020169,0.0000020179, -0.0000020199,0.0000020225,0.0000020257,0.0000020294,0.0000020331, -0.0000020369,0.0000020406,0.0000020435,0.0000020448,0.0000020455, -0.0000020470,0.0000020483,0.0000020489,0.0000020482,0.0000020452, -0.0000020406,0.0000020351,0.0000020291,0.0000020230,0.0000020186, -0.0000020177,0.0000020184,0.0000020190,0.0000020184,0.0000020169, -0.0000020148,0.0000020126,0.0000020109,0.0000020089,0.0000020081, -0.0000020092,0.0000020113,0.0000020141,0.0000020171,0.0000020192, -0.0000020206,0.0000020208,0.0000020200,0.0000020198,0.0000020212, -0.0000020241,0.0000020266,0.0000020299,0.0000020331,0.0000020326, -0.0000020307,0.0000020250,0.0000020159,0.0000020069,0.0000019925, -0.0000019848,0.0000019831,0.0000019876,0.0000019971,0.0000020098, -0.0000020227,0.0000020337,0.0000020413,0.0000020463,0.0000020487, -0.0000020491,0.0000020493,0.0000020512,0.0000020499,0.0000020469, -0.0000020436,0.0000020392,0.0000020342,0.0000020298,0.0000020257, -0.0000020225,0.0000020192,0.0000020155,0.0000020117,0.0000020068, -0.0000020014,0.0000019961,0.0000019920,0.0000019900,0.0000019902, -0.0000019917,0.0000019936,0.0000019945,0.0000019946,0.0000019939, -0.0000019930,0.0000019922,0.0000019911,0.0000019891,0.0000019870, -0.0000019848,0.0000019830,0.0000019823,0.0000019824,0.0000019831, -0.0000019841,0.0000019849,0.0000019857,0.0000019856,0.0000019843, -0.0000019814,0.0000019778,0.0000019738,0.0000019680,0.0000019607, -0.0000019532,0.0000019459,0.0000019392,0.0000019347,0.0000019332, -0.0000019328,0.0000019318,0.0000019303,0.0000019296,0.0000019298, -0.0000019299,0.0000019302,0.0000019290,0.0000019266,0.0000019244, -0.0000019234,0.0000019225,0.0000019204,0.0000019184,0.0000019182, -0.0000019201,0.0000019214,0.0000019220,0.0000019200,0.0000019156, -0.0000019095,0.0000019030,0.0000018966,0.0000018918,0.0000018902, -0.0000018915,0.0000018928,0.0000018942,0.0000018960,0.0000018938, -0.0000018907,0.0000018892,0.0000018890,0.0000018921,0.0000018948, -0.0000018965,0.0000018971,0.0000018961,0.0000018952,0.0000018952, -0.0000018977,0.0000019025,0.0000019084,0.0000019156,0.0000019227, -0.0000019290,0.0000019327,0.0000019332,0.0000019314,0.0000019280, -0.0000019235,0.0000019175,0.0000019123,0.0000019103,0.0000019094, -0.0000019077,0.0000019065,0.0000019074,0.0000019111,0.0000019135, -0.0000019142,0.0000019156,0.0000019175,0.0000019165,0.0000019083, -0.0000018958,0.0000018878,0.0000018860,0.0000018854,0.0000018866, -0.0000018886,0.0000018915,0.0000018912,0.0000018882,0.0000018810, -0.0000018701,0.0000018580,0.0000018489,0.0000018447,0.0000018458, -0.0000018486,0.0000018510,0.0000018525,0.0000018536,0.0000018544, -0.0000018548,0.0000018547,0.0000018538,0.0000018532,0.0000018515, -0.0000018479,0.0000018426,0.0000018373,0.0000018339,0.0000018333, -0.0000018326,0.0000018296,0.0000018228,0.0000018119,0.0000017987, -0.0000017873,0.0000017803,0.0000017770,0.0000017760,0.0000017767, -0.0000017782,0.0000017791,0.0000017795,0.0000017802,0.0000017814, -0.0000017835,0.0000017868,0.0000017885,0.0000017883,0.0000017883, -0.0000017895,0.0000017892,0.0000017860,0.0000017810,0.0000017775, -0.0000017771,0.0000017772,0.0000017753,0.0000017708,0.0000017658, -0.0000017605,0.0000017542,0.0000017486,0.0000017458,0.0000017455, -0.0000017455,0.0000017457,0.0000017460,0.0000017468,0.0000017484, -0.0000017491,0.0000017485,0.0000017479,0.0000017475,0.0000017471, -0.0000017475,0.0000017486,0.0000017488,0.0000017477,0.0000017450, -0.0000017422,0.0000017404,0.0000017389,0.0000017379,0.0000017379, -0.0000017368,0.0000017340,0.0000017325,0.0000017334,0.0000017346, -0.0000017311,0.0000017222,0.0000017136,0.0000017091,0.0000017091, -0.0000017096,0.0000017091,0.0000017104,0.0000017161,0.0000017212, -0.0000017229,0.0000017258,0.0000017386,0.0000017683,0.0000018022, -0.0000018247,0.0000018332,0.0000018336,0.0000018332,0.0000018305, -0.0000018240,0.0000018180,0.0000018209,0.0000018288,0.0000018326, -0.0000018340,0.0000018335,0.0000018307,0.0000018297,0.0000018321, -0.0000018327,0.0000018282,0.0000018236,0.0000018218,0.0000018204, -0.0000018194,0.0000018178,0.0000018128,0.0000018055,0.0000017996, -0.0000017950,0.0000017905,0.0000017828,0.0000017741,0.0000017725, -0.0000017801,0.0000017920,0.0000018019,0.0000018085,0.0000018132, -0.0000018171,0.0000018238,0.0000018333,0.0000018385,0.0000018407, -0.0000018417,0.0000018392,0.0000018410,0.0000018462,0.0000018417, -0.0000018214,0.0000018020,0.0000017937,0.0000017916,0.0000017934, -0.0000017993,0.0000018057,0.0000018107,0.0000018150,0.0000018195, -0.0000018223,0.0000018224,0.0000018198,0.0000018150,0.0000018111, -0.0000018101,0.0000018090,0.0000018058,0.0000018036,0.0000018032, -0.0000018030,0.0000018016,0.0000018003,0.0000018009,0.0000018027, -0.0000018041,0.0000018055,0.0000018069,0.0000018085,0.0000018101, -0.0000018121,0.0000018127,0.0000018108,0.0000018090,0.0000018116, -0.0000018192,0.0000018291,0.0000018389,0.0000018447,0.0000018457, -0.0000018451,0.0000018449,0.0000018456,0.0000018441,0.0000018413, -0.0000018383,0.0000018347,0.0000018311,0.0000018284,0.0000018272, -0.0000018284,0.0000018340,0.0000018421,0.0000018478,0.0000018485, -0.0000018461,0.0000018420,0.0000018379,0.0000018354,0.0000018325, -0.0000018252,0.0000018157,0.0000018022,0.0000017863,0.0000017837, -0.0000017924,0.0000017989,0.0000017966,0.0000017872,0.0000017809, -0.0000017809,0.0000017811,0.0000017784,0.0000017688,0.0000017548, -0.0000017497,0.0000017545,0.0000017621,0.0000017663,0.0000017684, -0.0000017651,0.0000017620,0.0000017640,0.0000017734,0.0000017769, -0.0000017747,0.0000017837,0.0000017670,0.0000017568,0.0000017603, -0.0000017639,0.0000017752,0.0000017851,0.0000017827,0.0000017842, -0.0000017863,0.0000017813,0.0000017739,0.0000017715,0.0000017718, -0.0000017709,0.0000017684,0.0000017635,0.0000017573,0.0000017517, -0.0000017489,0.0000017480,0.0000017484,0.0000017496,0.0000017515, -0.0000017548,0.0000017588,0.0000017628,0.0000017661,0.0000017680, -0.0000017688,0.0000017693,0.0000017702,0.0000017714,0.0000017723, -0.0000017719,0.0000017705,0.0000017688,0.0000017670,0.0000017653, -0.0000017636,0.0000017658,0.0000017651,0.0000017669,0.0000017690, -0.0000017686,0.0000017666,0.0000017647,0.0000017666,0.0000017777, -0.0000017924,0.0000017981,0.0000017970,0.0000017916,0.0000017881, -0.0000017917,0.0000017994,0.0000018046,0.0000018051,0.0000018039, -0.0000018069,0.0000018157,0.0000018230,0.0000018257,0.0000018275, -0.0000018333,0.0000018438,0.0000018539,0.0000018577,0.0000018569, -0.0000018559,0.0000018552,0.0000018500,0.0000018428,0.0000018325, -0.0000018161,0.0000018091,0.0000018190,0.0000018286,0.0000018303, -0.0000018327,0.0000018317,0.0000018227,0.0000018161,0.0000018191, -0.0000018312,0.0000018436,0.0000018494,0.0000018492,0.0000018450, -0.0000018385,0.0000018344,0.0000018338,0.0000018352,0.0000018367, -0.0000018362,0.0000018303,0.0000018173,0.0000018017,0.0000017919, -0.0000017933,0.0000018021,0.0000018114,0.0000018144,0.0000018144, -0.0000018178,0.0000018275,0.0000018392,0.0000018469,0.0000018507, -0.0000018534,0.0000018563,0.0000018590,0.0000018602,0.0000018597, -0.0000018567,0.0000018526,0.0000018486,0.0000018457,0.0000018442, -0.0000018434,0.0000018429,0.0000018428,0.0000018425,0.0000018424, -0.0000018428,0.0000018438,0.0000018449,0.0000018467,0.0000018483, -0.0000018496,0.0000018493,0.0000018458,0.0000018441,0.0000018408, -0.0000018381,0.0000018339,0.0000018268,0.0000018194,0.0000018144, -0.0000018113,0.0000018089,0.0000018077,0.0000018083,0.0000018113, -0.0000018151,0.0000018222,0.0000018325,0.0000018447,0.0000018518, -0.0000018502,0.0000018493,0.0000018813,0.0000019532,0.0000019795, -0.0000019837,0.0000019917,0.0000019965,0.0000020002,0.0000020048, -0.0000020073,0.0000020100,0.0000020121,0.0000020132,0.0000020134, -0.0000020130,0.0000020089,0.0000020003,0.0000019884,0.0000019775, -0.0000019704,0.0000019671,0.0000019654,0.0000019677,0.0000019709, -0.0000019727,0.0000019720,0.0000019691,0.0000019608,0.0000019480, -0.0000019313,0.0000019117,0.0000018910,0.0000018725,0.0000018583, -0.0000018486,0.0000018445,0.0000018440,0.0000018438,0.0000018443, -0.0000018450,0.0000018466,0.0000018479,0.0000018493,0.0000018508, -0.0000018522,0.0000018534,0.0000018543,0.0000018548,0.0000018548, -0.0000018545,0.0000018540,0.0000018533,0.0000018524,0.0000018512, -0.0000018498,0.0000018482,0.0000018468,0.0000018460,0.0000018459, -0.0000018466,0.0000018484,0.0000018511,0.0000018547,0.0000018586, -0.0000018618,0.0000018642,0.0000018656,0.0000018671,0.0000018694, -0.0000018783,0.0000018919,0.0000019035,0.0000019124,0.0000019218, -0.0000019298,0.0000019315,0.0000019280,0.0000019264,0.0000019305, -0.0000019329,0.0000019186,0.0000018796,0.0000018363,0.0000018190, -0.0000018237,0.0000018402,0.0000018533,0.0000018560,0.0000018554, -0.0000018510,0.0000018444,0.0000018371,0.0000018343,0.0000018337, -0.0000018376,0.0000018423,0.0000018466,0.0000018494,0.0000018515, -0.0000018538,0.0000018566,0.0000018599,0.0000018629,0.0000018649, -0.0000018668,0.0000018666,0.0000018651,0.0000018633,0.0000018608, -0.0000018575,0.0000018542,0.0000018512,0.0000018485,0.0000018448, -0.0000018402,0.0000018359,0.0000018327,0.0000018312,0.0000018324, -0.0000018350,0.0000018373,0.0000018389,0.0000018382,0.0000018362, -0.0000018336,0.0000018325,0.0000018345,0.0000018417,0.0000018521, -0.0000018608,0.0000018655,0.0000018683,0.0000018712,0.0000018740, -0.0000018762,0.0000018778,0.0000018801,0.0000018829,0.0000018861, -0.0000018921,0.0000019015,0.0000019079,0.0000019068,0.0000018896, -0.0000018629,0.0000018397,0.0000018270,0.0000018246,0.0000018297, -0.0000018390,0.0000018480,0.0000018521,0.0000018520,0.0000018509, -0.0000018508,0.0000018522,0.0000018539,0.0000018561,0.0000018575, -0.0000018593,0.0000018612,0.0000018613,0.0000018608,0.0000018607, -0.0000018621,0.0000018657,0.0000018706,0.0000018782,0.0000018864, -0.0000018932,0.0000018989,0.0000019049,0.0000019115,0.0000019186, -0.0000019266,0.0000019340,0.0000019391,0.0000019433,0.0000019475, -0.0000019519,0.0000019574,0.0000019636,0.0000019697,0.0000019759, -0.0000019827,0.0000019888,0.0000019937,0.0000019979,0.0000020014, -0.0000020036,0.0000020038,0.0000020041,0.0000020044,0.0000020057, -0.0000020065,0.0000020060,0.0000020046,0.0000020030,0.0000020048, -0.0000020121,0.0000020159,0.0000019992,0.0000019766,0.0000019733, -0.0000019740,0.0000019767,0.0000019765,0.0000019721,0.0000019709, -0.0000019886,0.0000020152,0.0000020235,0.0000020244,0.0000020198, -0.0000020051,0.0000019878,0.0000019798,0.0000019832,0.0000019963, -0.0000020139,0.0000020285,0.0000020332,0.0000020249,0.0000020092, -0.0000019956,0.0000019872,0.0000019831,0.0000019820,0.0000019866, -0.0000020023,0.0000020170,0.0000020208,0.0000020174,0.0000020124, -0.0000020063,0.0000019904,0.0000019614,0.0000019244,0.0000018895, -0.0000018634,0.0000018491,0.0000018438,0.0000018416,0.0000018381, -0.0000018323,0.0000018229,0.0000018151,0.0000018117,0.0000018109, -0.0000018126,0.0000018124,0.0000018138,0.0000018155,0.0000018167, -0.0000018231,0.0000018299,0.0000018383,0.0000018465,0.0000018532, -0.0000018567,0.0000018565,0.0000018562,0.0000018512,0.0000018508, -0.0000018502,0.0000018638,0.0000018849,0.0000018955,0.0000018934, -0.0000018761,0.0000018592,0.0000018542,0.0000018594,0.0000018768, -0.0000019057,0.0000019437,0.0000019779,0.0000019966,0.0000020041, -0.0000020122,0.0000020233,0.0000020323,0.0000020358,0.0000020356, -0.0000020342,0.0000020325,0.0000020300,0.0000020275,0.0000020269, -0.0000020279,0.0000020305,0.0000020332,0.0000020349,0.0000020362, -0.0000020369,0.0000020372,0.0000020375,0.0000020373,0.0000020365, -0.0000020351,0.0000020333,0.0000020313,0.0000020298,0.0000020287, -0.0000020276,0.0000020264,0.0000020255,0.0000020252,0.0000020253, -0.0000020252,0.0000020251,0.0000020253,0.0000020255,0.0000020260, -0.0000020269,0.0000020285,0.0000020308,0.0000020333,0.0000020354, -0.0000020369,0.0000020380,0.0000020387,0.0000020389,0.0000020389, -0.0000020390,0.0000020389,0.0000020386,0.0000020379,0.0000020365, -0.0000020349,0.0000020337,0.0000020329,0.0000020316,0.0000020300, -0.0000020280,0.0000020259,0.0000020241,0.0000020231,0.0000020229, -0.0000020223,0.0000020216,0.0000020216,0.0000020219,0.0000020221, -0.0000020221,0.0000020221,0.0000020223,0.0000020230,0.0000020241, -0.0000020248,0.0000020245,0.0000020230,0.0000020202,0.0000020153, -0.0000020103,0.0000020063,0.0000020042,0.0000020016,0.0000020042, -0.0000020094,0.0000020179,0.0000020261,0.0000020315,0.0000020342, -0.0000020358,0.0000020354,0.0000020347,0.0000020335,0.0000020318, -0.0000020305,0.0000020297,0.0000020290,0.0000020287,0.0000020278, -0.0000020268,0.0000020264,0.0000020255,0.0000020246,0.0000020241, -0.0000020241,0.0000020242,0.0000020252,0.0000020263,0.0000020276, -0.0000020294,0.0000020323,0.0000020353,0.0000020381,0.0000020405, -0.0000020422,0.0000020443,0.0000020464,0.0000020479,0.0000020482, -0.0000020486,0.0000020492,0.0000020486,0.0000020461,0.0000020415, -0.0000020352,0.0000020282,0.0000020212,0.0000020147,0.0000020103, -0.0000020093,0.0000020104,0.0000020114,0.0000020115,0.0000020128, -0.0000020124,0.0000020135,0.0000020145,0.0000020157,0.0000020184, -0.0000020218,0.0000020232,0.0000020230,0.0000020243,0.0000020227, -0.0000020194,0.0000020167,0.0000020137,0.0000020110,0.0000020135, -0.0000020195,0.0000020267,0.0000020347,0.0000020432,0.0000020485, -0.0000020504,0.0000020490,0.0000020432,0.0000020300,0.0000020085, -0.0000019862,0.0000019740,0.0000019662,0.0000019655,0.0000019721, -0.0000019851,0.0000020011,0.0000020161,0.0000020274,0.0000020353, -0.0000020402,0.0000020440,0.0000020482,0.0000020514,0.0000020525, -0.0000020525,0.0000020494,0.0000020446,0.0000020379,0.0000020321, -0.0000020278,0.0000020247,0.0000020220,0.0000020192,0.0000020149, -0.0000020104,0.0000020065,0.0000020038,0.0000020027,0.0000020031, -0.0000020046,0.0000020064,0.0000020076,0.0000020081,0.0000020076, -0.0000020066,0.0000020054,0.0000020039,0.0000020023,0.0000020008, -0.0000019994,0.0000019984,0.0000019974,0.0000019961,0.0000019945, -0.0000019930,0.0000019920,0.0000019912,0.0000019906,0.0000019895, -0.0000019874,0.0000019849,0.0000019828,0.0000019808,0.0000019778, -0.0000019740,0.0000019694,0.0000019631,0.0000019561,0.0000019500, -0.0000019455,0.0000019411,0.0000019364,0.0000019321,0.0000019297, -0.0000019294,0.0000019305,0.0000019317,0.0000019314,0.0000019290, -0.0000019262,0.0000019243,0.0000019229,0.0000019208,0.0000019183, -0.0000019174,0.0000019193,0.0000019221,0.0000019239,0.0000019246, -0.0000019218,0.0000019175,0.0000019126,0.0000019066,0.0000019009, -0.0000018970,0.0000018947,0.0000018928,0.0000018931,0.0000018939, -0.0000018913,0.0000018883,0.0000018861,0.0000018850,0.0000018872, -0.0000018891,0.0000018906,0.0000018914,0.0000018909,0.0000018908, -0.0000018910,0.0000018926,0.0000018962,0.0000019014,0.0000019080, -0.0000019155,0.0000019225,0.0000019266,0.0000019273,0.0000019263, -0.0000019245,0.0000019214,0.0000019167,0.0000019122,0.0000019109, -0.0000019114,0.0000019131,0.0000019129,0.0000019124,0.0000019131, -0.0000019132,0.0000019130,0.0000019142,0.0000019168,0.0000019162, -0.0000019079,0.0000018965,0.0000018884,0.0000018852,0.0000018843, -0.0000018840,0.0000018844,0.0000018863,0.0000018879,0.0000018873, -0.0000018838,0.0000018739,0.0000018620,0.0000018522,0.0000018475, -0.0000018482,0.0000018502,0.0000018515,0.0000018525,0.0000018533, -0.0000018535,0.0000018534,0.0000018532,0.0000018533,0.0000018536, -0.0000018532,0.0000018502,0.0000018447,0.0000018385,0.0000018354, -0.0000018352,0.0000018353,0.0000018332,0.0000018270,0.0000018167, -0.0000018046,0.0000017941,0.0000017865,0.0000017823,0.0000017816, -0.0000017826,0.0000017834,0.0000017838,0.0000017852,0.0000017875, -0.0000017902,0.0000017935,0.0000017961,0.0000017969,0.0000017969, -0.0000017979,0.0000017991,0.0000017978,0.0000017931,0.0000017875, -0.0000017839,0.0000017825,0.0000017809,0.0000017771,0.0000017728, -0.0000017687,0.0000017635,0.0000017577,0.0000017539,0.0000017524, -0.0000017516,0.0000017512,0.0000017514,0.0000017516,0.0000017523, -0.0000017531,0.0000017524,0.0000017501,0.0000017476,0.0000017458, -0.0000017447,0.0000017454,0.0000017475,0.0000017490,0.0000017483, -0.0000017469,0.0000017457,0.0000017441,0.0000017417,0.0000017397, -0.0000017377,0.0000017351,0.0000017336,0.0000017342,0.0000017367, -0.0000017383,0.0000017353,0.0000017291,0.0000017224,0.0000017185, -0.0000017160,0.0000017122,0.0000017111,0.0000017152,0.0000017188, -0.0000017186,0.0000017172,0.0000017240,0.0000017484,0.0000017821, -0.0000018079,0.0000018186,0.0000018187,0.0000018164,0.0000018125, -0.0000018072,0.0000018059,0.0000018178,0.0000018275,0.0000018313, -0.0000018327,0.0000018309,0.0000018290,0.0000018305,0.0000018317, -0.0000018286,0.0000018247,0.0000018234,0.0000018221,0.0000018204, -0.0000018190,0.0000018153,0.0000018080,0.0000018000,0.0000017939, -0.0000017906,0.0000017876,0.0000017792,0.0000017723,0.0000017755, -0.0000017875,0.0000017987,0.0000018058,0.0000018108,0.0000018151, -0.0000018206,0.0000018283,0.0000018342,0.0000018372,0.0000018405, -0.0000018402,0.0000018390,0.0000018437,0.0000018454,0.0000018311, -0.0000018084,0.0000017957,0.0000017915,0.0000017902,0.0000017930, -0.0000017993,0.0000018044,0.0000018083,0.0000018096,0.0000018133, -0.0000018150,0.0000018147,0.0000018118,0.0000018078,0.0000018060, -0.0000018048,0.0000018014,0.0000017973,0.0000017959,0.0000017965, -0.0000017967,0.0000017964,0.0000017970,0.0000018000,0.0000018021, -0.0000018039,0.0000018057,0.0000018072,0.0000018087,0.0000018112, -0.0000018145,0.0000018163,0.0000018158,0.0000018147,0.0000018170, -0.0000018249,0.0000018359,0.0000018448,0.0000018487,0.0000018496, -0.0000018498,0.0000018510,0.0000018521,0.0000018505,0.0000018458, -0.0000018404,0.0000018366,0.0000018349,0.0000018345,0.0000018353, -0.0000018387,0.0000018437,0.0000018470,0.0000018463,0.0000018421, -0.0000018376,0.0000018349,0.0000018342,0.0000018343,0.0000018313, -0.0000018244,0.0000018151,0.0000018005,0.0000017846,0.0000017840, -0.0000017944,0.0000018018,0.0000017980,0.0000017877,0.0000017829, -0.0000017826,0.0000017801,0.0000017739,0.0000017607,0.0000017513, -0.0000017519,0.0000017576,0.0000017617,0.0000017656,0.0000017661, -0.0000017626,0.0000017629,0.0000017674,0.0000017769,0.0000017741, -0.0000017802,0.0000017793,0.0000017593,0.0000017602,0.0000017638, -0.0000017717,0.0000017854,0.0000017821,0.0000017809,0.0000017859, -0.0000017870,0.0000017812,0.0000017751,0.0000017725,0.0000017709, -0.0000017691,0.0000017660,0.0000017612,0.0000017555,0.0000017518, -0.0000017497,0.0000017486,0.0000017492,0.0000017502,0.0000017527, -0.0000017558,0.0000017586,0.0000017611,0.0000017629,0.0000017642, -0.0000017656,0.0000017681,0.0000017710,0.0000017734,0.0000017744, -0.0000017745,0.0000017734,0.0000017715,0.0000017696,0.0000017678, -0.0000017714,0.0000017695,0.0000017692,0.0000017696,0.0000017689, -0.0000017682,0.0000017696,0.0000017752,0.0000017868,0.0000017978, -0.0000018012,0.0000018003,0.0000017952,0.0000017899,0.0000017908, -0.0000017968,0.0000018029,0.0000018055,0.0000018049,0.0000018048, -0.0000018097,0.0000018182,0.0000018241,0.0000018266,0.0000018297, -0.0000018373,0.0000018485,0.0000018568,0.0000018587,0.0000018571, -0.0000018560,0.0000018537,0.0000018471,0.0000018394,0.0000018269, -0.0000018118,0.0000018117,0.0000018231,0.0000018292,0.0000018317, -0.0000018336,0.0000018272,0.0000018176,0.0000018174,0.0000018286, -0.0000018425,0.0000018495,0.0000018497,0.0000018460,0.0000018403, -0.0000018369,0.0000018366,0.0000018374,0.0000018368,0.0000018309, -0.0000018170,0.0000017996,0.0000017889,0.0000017910,0.0000018024, -0.0000018125,0.0000018150,0.0000018154,0.0000018212,0.0000018330, -0.0000018430,0.0000018475,0.0000018501,0.0000018546,0.0000018598, -0.0000018622,0.0000018615,0.0000018574,0.0000018521,0.0000018480, -0.0000018455,0.0000018445,0.0000018445,0.0000018443,0.0000018428, -0.0000018394,0.0000018351,0.0000018285,0.0000018232,0.0000018191, -0.0000018168,0.0000018158,0.0000018163,0.0000018192,0.0000018243, -0.0000018307,0.0000018371,0.0000018416,0.0000018420,0.0000018384, -0.0000018358,0.0000018329,0.0000018283,0.0000018214,0.0000018156, -0.0000018123,0.0000018114,0.0000018114,0.0000018114,0.0000018126, -0.0000018148,0.0000018248,0.0000018402,0.0000018503,0.0000018501, -0.0000018553,0.0000019117,0.0000019721,0.0000019832,0.0000019894, -0.0000019954,0.0000019994,0.0000020040,0.0000020073,0.0000020097, -0.0000020126,0.0000020138,0.0000020129,0.0000020085,0.0000019984, -0.0000019846,0.0000019722,0.0000019679,0.0000019686,0.0000019719, -0.0000019746,0.0000019748,0.0000019747,0.0000019674,0.0000019563, -0.0000019413,0.0000019225,0.0000019020,0.0000018825,0.0000018661, -0.0000018532,0.0000018444,0.0000018404,0.0000018390,0.0000018390, -0.0000018390,0.0000018381,0.0000018369,0.0000018354,0.0000018348, -0.0000018349,0.0000018357,0.0000018371,0.0000018385,0.0000018397, -0.0000018408,0.0000018417,0.0000018422,0.0000018421,0.0000018419, -0.0000018416,0.0000018412,0.0000018406,0.0000018400,0.0000018391, -0.0000018379,0.0000018367,0.0000018361,0.0000018368,0.0000018394, -0.0000018437,0.0000018493,0.0000018555,0.0000018613,0.0000018654, -0.0000018673,0.0000018675,0.0000018667,0.0000018670,0.0000018752, -0.0000018895,0.0000019029,0.0000019151,0.0000019242,0.0000019260, -0.0000019244,0.0000019263,0.0000019307,0.0000019202,0.0000018840, -0.0000018410,0.0000018231,0.0000018268,0.0000018437,0.0000018550, -0.0000018565,0.0000018516,0.0000018442,0.0000018374,0.0000018358, -0.0000018354,0.0000018400,0.0000018463,0.0000018507,0.0000018522, -0.0000018529,0.0000018547,0.0000018580,0.0000018613,0.0000018642, -0.0000018665,0.0000018677,0.0000018673,0.0000018674,0.0000018656, -0.0000018620,0.0000018573,0.0000018520,0.0000018462,0.0000018403, -0.0000018342,0.0000018292,0.0000018247,0.0000018219,0.0000018202, -0.0000018198,0.0000018202,0.0000018221,0.0000018250,0.0000018280, -0.0000018305,0.0000018315,0.0000018316,0.0000018312,0.0000018309, -0.0000018309,0.0000018329,0.0000018397,0.0000018500,0.0000018585, -0.0000018634,0.0000018670,0.0000018709,0.0000018743,0.0000018769, -0.0000018795,0.0000018848,0.0000018915,0.0000018975,0.0000019023, -0.0000019070,0.0000019097,0.0000019051,0.0000018891,0.0000018648, -0.0000018432,0.0000018302,0.0000018265,0.0000018291,0.0000018367, -0.0000018439,0.0000018475,0.0000018482,0.0000018488,0.0000018504, -0.0000018534,0.0000018569,0.0000018608,0.0000018654,0.0000018694, -0.0000018727,0.0000018761,0.0000018775,0.0000018782,0.0000018785, -0.0000018796,0.0000018838,0.0000018888,0.0000018924,0.0000018951, -0.0000018971,0.0000018996,0.0000019036,0.0000019106,0.0000019181, -0.0000019249,0.0000019303,0.0000019337,0.0000019370,0.0000019422, -0.0000019485,0.0000019561,0.0000019644,0.0000019729,0.0000019803, -0.0000019867,0.0000019931,0.0000019986,0.0000020022,0.0000020032, -0.0000020043,0.0000020055,0.0000020067,0.0000020068,0.0000020055, -0.0000020044,0.0000020059,0.0000020119,0.0000020172,0.0000020056, -0.0000019812,0.0000019756,0.0000019766,0.0000019789,0.0000019780, -0.0000019735,0.0000019729,0.0000019910,0.0000020175,0.0000020264, -0.0000020274,0.0000020214,0.0000020064,0.0000019934,0.0000019897, -0.0000019973,0.0000020100,0.0000020232,0.0000020311,0.0000020281, -0.0000020155,0.0000020005,0.0000019896,0.0000019841,0.0000019823, -0.0000019845,0.0000019979,0.0000020155,0.0000020235,0.0000020200, -0.0000020150,0.0000020071,0.0000019857,0.0000019482,0.0000019056, -0.0000018711,0.0000018506,0.0000018420,0.0000018390,0.0000018362, -0.0000018295,0.0000018194,0.0000018102,0.0000018055,0.0000018084, -0.0000018120,0.0000018199,0.0000018262,0.0000018284,0.0000018268, -0.0000018262,0.0000018306,0.0000018426,0.0000018612,0.0000018810, -0.0000018953,0.0000019019,0.0000019030,0.0000019043,0.0000019023, -0.0000018945,0.0000018824,0.0000018591,0.0000018384,0.0000018396, -0.0000018641,0.0000018947,0.0000019032,0.0000018897,0.0000018664, -0.0000018547,0.0000018581,0.0000018702,0.0000018905,0.0000019254, -0.0000019662,0.0000019915,0.0000019976,0.0000020003,0.0000020085, -0.0000020186,0.0000020259,0.0000020297,0.0000020304,0.0000020290, -0.0000020262,0.0000020246,0.0000020256,0.0000020297,0.0000020333, -0.0000020338,0.0000020331,0.0000020321,0.0000020308,0.0000020297, -0.0000020287,0.0000020275,0.0000020262,0.0000020248,0.0000020239, -0.0000020235,0.0000020228,0.0000020216,0.0000020198,0.0000020178, -0.0000020162,0.0000020149,0.0000020134,0.0000020120,0.0000020109, -0.0000020100,0.0000020094,0.0000020093,0.0000020103,0.0000020120, -0.0000020141,0.0000020163,0.0000020184,0.0000020201,0.0000020214, -0.0000020221,0.0000020226,0.0000020234,0.0000020245,0.0000020255, -0.0000020259,0.0000020261,0.0000020264,0.0000020267,0.0000020271, -0.0000020271,0.0000020268,0.0000020259,0.0000020243,0.0000020229, -0.0000020218,0.0000020210,0.0000020205,0.0000020205,0.0000020207, -0.0000020212,0.0000020218,0.0000020220,0.0000020218,0.0000020218, -0.0000020226,0.0000020242,0.0000020264,0.0000020284,0.0000020303, -0.0000020318,0.0000020287,0.0000020222,0.0000020134,0.0000020055, -0.0000019999,0.0000019966,0.0000019951,0.0000019998,0.0000020094, -0.0000020208,0.0000020301,0.0000020356,0.0000020379,0.0000020396, -0.0000020392,0.0000020380,0.0000020368,0.0000020358,0.0000020344, -0.0000020332,0.0000020320,0.0000020311,0.0000020308,0.0000020301, -0.0000020297,0.0000020296,0.0000020299,0.0000020305,0.0000020318, -0.0000020333,0.0000020351,0.0000020372,0.0000020400,0.0000020426, -0.0000020442,0.0000020455,0.0000020459,0.0000020473,0.0000020489, -0.0000020498,0.0000020498,0.0000020494,0.0000020484,0.0000020449, -0.0000020387,0.0000020310,0.0000020232,0.0000020157,0.0000020093, -0.0000020051,0.0000020038,0.0000020063,0.0000020078,0.0000020111, -0.0000020141,0.0000020181,0.0000020211,0.0000020242,0.0000020253, -0.0000020258,0.0000020254,0.0000020232,0.0000020185,0.0000020141, -0.0000020099,0.0000020060,0.0000020060,0.0000020071,0.0000020112, -0.0000020191,0.0000020311,0.0000020408,0.0000020486,0.0000020553, -0.0000020589,0.0000020602,0.0000020611,0.0000020599,0.0000020542, -0.0000020369,0.0000020114,0.0000019867,0.0000019716,0.0000019648, -0.0000019629,0.0000019652,0.0000019719,0.0000019842,0.0000019967, -0.0000020079,0.0000020170,0.0000020240,0.0000020303,0.0000020352, -0.0000020390,0.0000020424,0.0000020447,0.0000020451,0.0000020430, -0.0000020397,0.0000020361,0.0000020327,0.0000020293,0.0000020260, -0.0000020231,0.0000020208,0.0000020192,0.0000020192,0.0000020210, -0.0000020229,0.0000020256,0.0000020278,0.0000020300,0.0000020307, -0.0000020307,0.0000020303,0.0000020298,0.0000020287,0.0000020270, -0.0000020249,0.0000020226,0.0000020201,0.0000020173,0.0000020143, -0.0000020114,0.0000020088,0.0000020063,0.0000020034,0.0000020002, -0.0000019967,0.0000019925,0.0000019877,0.0000019835,0.0000019805, -0.0000019797,0.0000019793,0.0000019800,0.0000019789,0.0000019758, -0.0000019709,0.0000019654,0.0000019592,0.0000019521,0.0000019448, -0.0000019383,0.0000019341,0.0000019323,0.0000019324,0.0000019330, -0.0000019332,0.0000019313,0.0000019286,0.0000019267,0.0000019253, -0.0000019227,0.0000019193,0.0000019179,0.0000019191,0.0000019215, -0.0000019248,0.0000019262,0.0000019247,0.0000019226,0.0000019199, -0.0000019151,0.0000019099,0.0000019050,0.0000018992,0.0000018943, -0.0000018931,0.0000018924,0.0000018895,0.0000018865,0.0000018833, -0.0000018814,0.0000018817,0.0000018831,0.0000018853,0.0000018868, -0.0000018875,0.0000018888,0.0000018897,0.0000018913,0.0000018942, -0.0000018978,0.0000019033,0.0000019101,0.0000019168,0.0000019209, -0.0000019215,0.0000019214,0.0000019212,0.0000019193,0.0000019149, -0.0000019105,0.0000019097,0.0000019134,0.0000019185,0.0000019190, -0.0000019179,0.0000019164,0.0000019146,0.0000019134,0.0000019149, -0.0000019174,0.0000019164,0.0000019086,0.0000018970,0.0000018878, -0.0000018841,0.0000018831,0.0000018820,0.0000018813,0.0000018817, -0.0000018849,0.0000018878,0.0000018864,0.0000018785,0.0000018675, -0.0000018575,0.0000018531,0.0000018530,0.0000018535,0.0000018541, -0.0000018541,0.0000018539,0.0000018532,0.0000018524,0.0000018518, -0.0000018524,0.0000018539,0.0000018544,0.0000018520,0.0000018471, -0.0000018418,0.0000018390,0.0000018383,0.0000018375,0.0000018340, -0.0000018275,0.0000018189,0.0000018100,0.0000018018,0.0000017954, -0.0000017925,0.0000017921,0.0000017914,0.0000017902,0.0000017898, -0.0000017913,0.0000017935,0.0000017960,0.0000017995,0.0000018019, -0.0000018028,0.0000018039,0.0000018062,0.0000018075,0.0000018053, -0.0000018008,0.0000017959,0.0000017921,0.0000017888,0.0000017842, -0.0000017792,0.0000017754,0.0000017716,0.0000017669,0.0000017629, -0.0000017601,0.0000017577,0.0000017559,0.0000017555,0.0000017557, -0.0000017563,0.0000017571,0.0000017571,0.0000017548,0.0000017508, -0.0000017468,0.0000017441,0.0000017426,0.0000017438,0.0000017462, -0.0000017478,0.0000017480,0.0000017485,0.0000017485,0.0000017470, -0.0000017439,0.0000017403,0.0000017368,0.0000017351,0.0000017347, -0.0000017363,0.0000017385,0.0000017398,0.0000017388,0.0000017346, -0.0000017293,0.0000017247,0.0000017197,0.0000017164,0.0000017168, -0.0000017188,0.0000017178,0.0000017152,0.0000017153,0.0000017310, -0.0000017601,0.0000017877,0.0000018012,0.0000018016,0.0000017978, -0.0000017945,0.0000017922,0.0000017969,0.0000018170,0.0000018261, -0.0000018305,0.0000018310,0.0000018290,0.0000018289,0.0000018308, -0.0000018294,0.0000018260,0.0000018246,0.0000018234,0.0000018211, -0.0000018190,0.0000018165,0.0000018115,0.0000018034,0.0000017952, -0.0000017907,0.0000017900,0.0000017862,0.0000017758,0.0000017728, -0.0000017817,0.0000017955,0.0000018046,0.0000018098,0.0000018135, -0.0000018179,0.0000018237,0.0000018289,0.0000018331,0.0000018384, -0.0000018408,0.0000018391,0.0000018408,0.0000018448,0.0000018378, -0.0000018171,0.0000018007,0.0000017955,0.0000017960,0.0000018012, -0.0000018093,0.0000018155,0.0000018171,0.0000018159,0.0000018150, -0.0000018142,0.0000018116,0.0000018084,0.0000018024,0.0000017996, -0.0000017982,0.0000017955,0.0000017920,0.0000017904,0.0000017927, -0.0000017944,0.0000017960,0.0000017976,0.0000018007,0.0000018050, -0.0000018088,0.0000018116,0.0000018132,0.0000018131,0.0000018134, -0.0000018160,0.0000018203,0.0000018230,0.0000018227,0.0000018215, -0.0000018232,0.0000018316,0.0000018421,0.0000018492,0.0000018522, -0.0000018534,0.0000018545,0.0000018571,0.0000018587,0.0000018563, -0.0000018496,0.0000018437,0.0000018420,0.0000018427,0.0000018437, -0.0000018454,0.0000018476,0.0000018482,0.0000018447,0.0000018379, -0.0000018321,0.0000018307,0.0000018313,0.0000018316,0.0000018306, -0.0000018276,0.0000018224,0.0000018121,0.0000017981,0.0000017858, -0.0000017865,0.0000017972,0.0000018043,0.0000017983,0.0000017878, -0.0000017838,0.0000017814,0.0000017771,0.0000017672,0.0000017551, -0.0000017516,0.0000017543,0.0000017575,0.0000017618,0.0000017656, -0.0000017636,0.0000017633,0.0000017645,0.0000017724,0.0000017766, -0.0000017755,0.0000017847,0.0000017682,0.0000017594,0.0000017632, -0.0000017684,0.0000017837,0.0000017824,0.0000017774,0.0000017811, -0.0000017868,0.0000017874,0.0000017822,0.0000017766,0.0000017724, -0.0000017687,0.0000017650,0.0000017613,0.0000017567,0.0000017533, -0.0000017518,0.0000017512,0.0000017511,0.0000017510,0.0000017524, -0.0000017548,0.0000017577,0.0000017606,0.0000017630,0.0000017647, -0.0000017665,0.0000017690,0.0000017719,0.0000017746,0.0000017766, -0.0000017778,0.0000017777,0.0000017764,0.0000017750,0.0000017738, -0.0000017754,0.0000017754,0.0000017753,0.0000017754,0.0000017751, -0.0000017757,0.0000017796,0.0000017864,0.0000017954,0.0000018021, -0.0000018037,0.0000018029,0.0000017982,0.0000017924,0.0000017911, -0.0000017953,0.0000018012,0.0000018052,0.0000018060,0.0000018049, -0.0000018055,0.0000018115,0.0000018193,0.0000018246,0.0000018280, -0.0000018329,0.0000018423,0.0000018534,0.0000018599,0.0000018597, -0.0000018576,0.0000018562,0.0000018517,0.0000018439,0.0000018357, -0.0000018210,0.0000018113,0.0000018166,0.0000018276,0.0000018309, -0.0000018336,0.0000018317,0.0000018214,0.0000018165,0.0000018248, -0.0000018394,0.0000018482,0.0000018492,0.0000018465,0.0000018425, -0.0000018404,0.0000018402,0.0000018390,0.0000018329,0.0000018188, -0.0000018000,0.0000017870,0.0000017882,0.0000018002,0.0000018123, -0.0000018157,0.0000018168,0.0000018242,0.0000018359,0.0000018436, -0.0000018464,0.0000018503,0.0000018564,0.0000018614,0.0000018627, -0.0000018600,0.0000018543,0.0000018499,0.0000018488,0.0000018494, -0.0000018511,0.0000018530,0.0000018540,0.0000018536,0.0000018502, -0.0000018429,0.0000018334,0.0000018236,0.0000018145,0.0000018077, -0.0000018028,0.0000017988,0.0000017952,0.0000017928,0.0000017918, -0.0000017948,0.0000018031,0.0000018155,0.0000018280,0.0000018358, -0.0000018362,0.0000018342,0.0000018316,0.0000018284,0.0000018229, -0.0000018175,0.0000018146,0.0000018138,0.0000018136,0.0000018115, -0.0000018113,0.0000018206,0.0000018382,0.0000018498,0.0000018500, -0.0000018698,0.0000019422,0.0000019808,0.0000019885,0.0000019940, -0.0000019978,0.0000020020,0.0000020060,0.0000020084,0.0000020103, -0.0000020108,0.0000020081,0.0000019996,0.0000019857,0.0000019734, -0.0000019692,0.0000019714,0.0000019761,0.0000019767,0.0000019753, -0.0000019657,0.0000019513,0.0000019329,0.0000019126,0.0000018925, -0.0000018744,0.0000018599,0.0000018499,0.0000018447,0.0000018423, -0.0000018402,0.0000018385,0.0000018357,0.0000018313,0.0000018266, -0.0000018222,0.0000018186,0.0000018158,0.0000018140,0.0000018132, -0.0000018135,0.0000018148,0.0000018165,0.0000018180,0.0000018193, -0.0000018206,0.0000018216,0.0000018223,0.0000018228,0.0000018233, -0.0000018240,0.0000018250,0.0000018264,0.0000018282,0.0000018297, -0.0000018299,0.0000018289,0.0000018286,0.0000018310,0.0000018369, -0.0000018444,0.0000018509,0.0000018573,0.0000018636,0.0000018679, -0.0000018691,0.0000018684,0.0000018664,0.0000018673,0.0000018781, -0.0000018960,0.0000019118,0.0000019205,0.0000019220,0.0000019233, -0.0000019263,0.0000019181,0.0000018856,0.0000018441,0.0000018248, -0.0000018281,0.0000018455,0.0000018525,0.0000018516,0.0000018440, -0.0000018367,0.0000018341,0.0000018353,0.0000018418,0.0000018488, -0.0000018536,0.0000018559,0.0000018562,0.0000018567,0.0000018587, -0.0000018622,0.0000018655,0.0000018675,0.0000018686,0.0000018689, -0.0000018683,0.0000018668,0.0000018632,0.0000018576,0.0000018505, -0.0000018426,0.0000018347,0.0000018271,0.0000018201,0.0000018133, -0.0000018080,0.0000018049,0.0000018038,0.0000018036,0.0000018041, -0.0000018057,0.0000018087,0.0000018129,0.0000018173,0.0000018218, -0.0000018255,0.0000018278,0.0000018292,0.0000018298,0.0000018302, -0.0000018300,0.0000018328,0.0000018399,0.0000018491,0.0000018567, -0.0000018617,0.0000018653,0.0000018689,0.0000018727,0.0000018764, -0.0000018825,0.0000018906,0.0000018967,0.0000018987,0.0000018982, -0.0000018959,0.0000018919,0.0000018843,0.0000018715,0.0000018555, -0.0000018423,0.0000018327,0.0000018275,0.0000018279,0.0000018331, -0.0000018394,0.0000018424,0.0000018434,0.0000018451,0.0000018493, -0.0000018548,0.0000018602,0.0000018637,0.0000018670,0.0000018713, -0.0000018757,0.0000018794,0.0000018829,0.0000018846,0.0000018865, -0.0000018906,0.0000018928,0.0000018938,0.0000018954,0.0000018957, -0.0000018951,0.0000018958,0.0000018990,0.0000019043,0.0000019109, -0.0000019167,0.0000019207,0.0000019251,0.0000019304,0.0000019374, -0.0000019470,0.0000019571,0.0000019666,0.0000019747,0.0000019816, -0.0000019883,0.0000019939,0.0000019980,0.0000020006,0.0000020032, -0.0000020055,0.0000020064,0.0000020056,0.0000020049,0.0000020071, -0.0000020126,0.0000020175,0.0000020089,0.0000019860,0.0000019786, -0.0000019793,0.0000019811,0.0000019794,0.0000019748,0.0000019746, -0.0000019931,0.0000020196,0.0000020289,0.0000020294,0.0000020228, -0.0000020099,0.0000020021,0.0000020029,0.0000020112,0.0000020216, -0.0000020287,0.0000020300,0.0000020213,0.0000020053,0.0000019922, -0.0000019850,0.0000019822,0.0000019828,0.0000019927,0.0000020105, -0.0000020225,0.0000020243,0.0000020188,0.0000020096,0.0000019850, -0.0000019418,0.0000018949,0.0000018611,0.0000018450,0.0000018403, -0.0000018365,0.0000018282,0.0000018173,0.0000018078,0.0000018028, -0.0000018041,0.0000018111,0.0000018246,0.0000018392,0.0000018488, -0.0000018548,0.0000018571,0.0000018549,0.0000018517,0.0000018518, -0.0000018597,0.0000018788,0.0000019057,0.0000019254,0.0000019289, -0.0000019178,0.0000019066,0.0000019057,0.0000019110,0.0000019193, -0.0000019209,0.0000018960,0.0000018530,0.0000018278,0.0000018423, -0.0000018856,0.0000019084,0.0000018973,0.0000018695,0.0000018542, -0.0000018572,0.0000018688,0.0000018838,0.0000019138,0.0000019563, -0.0000019862,0.0000019928,0.0000019914,0.0000019934,0.0000020002, -0.0000020087,0.0000020162,0.0000020208,0.0000020232,0.0000020229, -0.0000020227,0.0000020269,0.0000020316,0.0000020324,0.0000020313, -0.0000020297,0.0000020284,0.0000020273,0.0000020262,0.0000020251, -0.0000020242,0.0000020238,0.0000020237,0.0000020235,0.0000020227, -0.0000020216,0.0000020197,0.0000020177,0.0000020158,0.0000020139, -0.0000020120,0.0000020106,0.0000020096,0.0000020085,0.0000020078, -0.0000020074,0.0000020077,0.0000020087,0.0000020099,0.0000020117, -0.0000020134,0.0000020144,0.0000020152,0.0000020159,0.0000020169, -0.0000020185,0.0000020201,0.0000020223,0.0000020229,0.0000020230, -0.0000020236,0.0000020232,0.0000020217,0.0000020197,0.0000020167, -0.0000020129,0.0000020085,0.0000020043,0.0000020010,0.0000019990, -0.0000019980,0.0000019978,0.0000019987,0.0000020009,0.0000020041, -0.0000020075,0.0000020113,0.0000020153,0.0000020189,0.0000020212, -0.0000020220,0.0000020234,0.0000020264,0.0000020305,0.0000020333, -0.0000020322,0.0000020249,0.0000020143,0.0000020041,0.0000019969, -0.0000019929,0.0000019906,0.0000019934,0.0000020020,0.0000020146, -0.0000020268,0.0000020357,0.0000020404,0.0000020419,0.0000020422, -0.0000020420,0.0000020409,0.0000020390,0.0000020369,0.0000020352, -0.0000020340,0.0000020336,0.0000020331,0.0000020330,0.0000020334, -0.0000020341,0.0000020350,0.0000020364,0.0000020370,0.0000020390, -0.0000020408,0.0000020433,0.0000020455,0.0000020464,0.0000020467, -0.0000020468,0.0000020481,0.0000020499,0.0000020507,0.0000020502, -0.0000020484,0.0000020442,0.0000020374,0.0000020290,0.0000020207, -0.0000020133,0.0000020075,0.0000020051,0.0000020042,0.0000020069, -0.0000020118,0.0000020173,0.0000020216,0.0000020257,0.0000020268, -0.0000020250,0.0000020219,0.0000020174,0.0000020121,0.0000020074, -0.0000020022,0.0000019986,0.0000019986,0.0000020013,0.0000020053, -0.0000020123,0.0000020202,0.0000020301,0.0000020401,0.0000020463, -0.0000020505,0.0000020529,0.0000020536,0.0000020536,0.0000020534, -0.0000020533,0.0000020522,0.0000020457,0.0000020307,0.0000020115, -0.0000019944,0.0000019813,0.0000019733,0.0000019701,0.0000019695, -0.0000019725,0.0000019785,0.0000019846,0.0000019930,0.0000019983, -0.0000020054,0.0000020117,0.0000020161,0.0000020211,0.0000020269, -0.0000020310,0.0000020337,0.0000020348,0.0000020352,0.0000020357, -0.0000020360,0.0000020363,0.0000020365,0.0000020367,0.0000020374, -0.0000020388,0.0000020402,0.0000020413,0.0000020422,0.0000020427, -0.0000020433,0.0000020435,0.0000020438,0.0000020445,0.0000020451, -0.0000020453,0.0000020448,0.0000020434,0.0000020414,0.0000020386, -0.0000020347,0.0000020301,0.0000020250,0.0000020200,0.0000020148, -0.0000020102,0.0000020064,0.0000020032,0.0000019997,0.0000019949, -0.0000019888,0.0000019828,0.0000019791,0.0000019784,0.0000019791, -0.0000019800,0.0000019800,0.0000019786,0.0000019773,0.0000019746, -0.0000019701,0.0000019636,0.0000019557,0.0000019482,0.0000019425, -0.0000019395,0.0000019385,0.0000019379,0.0000019367,0.0000019340, -0.0000019309,0.0000019289,0.0000019269,0.0000019243,0.0000019215, -0.0000019204,0.0000019207,0.0000019225,0.0000019257,0.0000019266, -0.0000019259,0.0000019257,0.0000019248,0.0000019223,0.0000019189, -0.0000019140,0.0000019062,0.0000018984,0.0000018950,0.0000018927, -0.0000018890,0.0000018858,0.0000018817,0.0000018780,0.0000018772, -0.0000018784,0.0000018810,0.0000018835,0.0000018861,0.0000018893, -0.0000018918,0.0000018945,0.0000018969,0.0000018995,0.0000019031, -0.0000019084,0.0000019143,0.0000019176,0.0000019187,0.0000019200, -0.0000019209,0.0000019196,0.0000019146,0.0000019092,0.0000019091, -0.0000019159,0.0000019218,0.0000019238,0.0000019222,0.0000019200, -0.0000019177,0.0000019164,0.0000019176,0.0000019197,0.0000019182, -0.0000019100,0.0000018975,0.0000018873,0.0000018830,0.0000018816, -0.0000018806,0.0000018785,0.0000018789,0.0000018836,0.0000018880, -0.0000018882,0.0000018830,0.0000018730,0.0000018648,0.0000018618, -0.0000018605,0.0000018596,0.0000018587,0.0000018573,0.0000018556, -0.0000018536,0.0000018518,0.0000018513,0.0000018523,0.0000018538, -0.0000018541,0.0000018532,0.0000018502,0.0000018465,0.0000018440, -0.0000018418,0.0000018379,0.0000018319,0.0000018251,0.0000018190, -0.0000018139,0.0000018095,0.0000018067,0.0000018058,0.0000018047, -0.0000018020,0.0000017999,0.0000017993,0.0000017995,0.0000017995, -0.0000018010,0.0000018032,0.0000018045,0.0000018059,0.0000018083, -0.0000018108,0.0000018114,0.0000018098,0.0000018071,0.0000018042, -0.0000018011,0.0000017961,0.0000017898,0.0000017842,0.0000017800, -0.0000017762,0.0000017728,0.0000017696,0.0000017656,0.0000017612, -0.0000017587,0.0000017584,0.0000017595,0.0000017608,0.0000017613, -0.0000017601,0.0000017561,0.0000017504,0.0000017454,0.0000017423, -0.0000017420,0.0000017432,0.0000017452,0.0000017471,0.0000017487, -0.0000017503,0.0000017503,0.0000017481,0.0000017438,0.0000017394, -0.0000017376,0.0000017368,0.0000017363,0.0000017370,0.0000017386, -0.0000017403,0.0000017406,0.0000017371,0.0000017318,0.0000017276, -0.0000017244,0.0000017220,0.0000017216,0.0000017202,0.0000017154, -0.0000017123,0.0000017179,0.0000017386,0.0000017648,0.0000017819, -0.0000017846,0.0000017802,0.0000017778,0.0000017783,0.0000017904, -0.0000018163,0.0000018248,0.0000018296,0.0000018292,0.0000018277, -0.0000018292,0.0000018296,0.0000018269,0.0000018251,0.0000018239, -0.0000018214,0.0000018189,0.0000018170,0.0000018140,0.0000018077, -0.0000017988,0.0000017921,0.0000017904,0.0000017901,0.0000017821, -0.0000017722,0.0000017748,0.0000017893,0.0000018015,0.0000018085, -0.0000018124,0.0000018155,0.0000018196,0.0000018239,0.0000018291, -0.0000018361,0.0000018411,0.0000018398,0.0000018390,0.0000018436, -0.0000018413,0.0000018265,0.0000018114,0.0000018070,0.0000018105, -0.0000018184,0.0000018280,0.0000018349,0.0000018366,0.0000018354, -0.0000018328,0.0000018296,0.0000018252,0.0000018187,0.0000018111, -0.0000018051,0.0000018016,0.0000017986,0.0000017957,0.0000017945, -0.0000017958,0.0000017998,0.0000018041,0.0000018073,0.0000018107, -0.0000018154,0.0000018203,0.0000018243,0.0000018267,0.0000018266, -0.0000018251,0.0000018245,0.0000018269,0.0000018305,0.0000018320, -0.0000018313,0.0000018298,0.0000018312,0.0000018383,0.0000018471, -0.0000018528,0.0000018556,0.0000018572,0.0000018600,0.0000018632, -0.0000018643,0.0000018607,0.0000018536,0.0000018494,0.0000018494, -0.0000018506,0.0000018511,0.0000018514,0.0000018511,0.0000018463, -0.0000018381,0.0000018304,0.0000018283,0.0000018296,0.0000018300, -0.0000018273,0.0000018241,0.0000018223,0.0000018175,0.0000018093, -0.0000017994,0.0000017901,0.0000017882,0.0000017987,0.0000018053, -0.0000017978,0.0000017871,0.0000017822,0.0000017785,0.0000017728, -0.0000017613,0.0000017531,0.0000017528,0.0000017545,0.0000017579, -0.0000017641,0.0000017645,0.0000017644,0.0000017652,0.0000017670, -0.0000017762,0.0000017753,0.0000017821,0.0000017796,0.0000017619, -0.0000017615,0.0000017657,0.0000017808,0.0000017833,0.0000017762, -0.0000017769,0.0000017819,0.0000017877,0.0000017883,0.0000017835, -0.0000017773,0.0000017705,0.0000017645,0.0000017599,0.0000017555, -0.0000017522,0.0000017507,0.0000017507,0.0000017513,0.0000017524, -0.0000017542,0.0000017563,0.0000017585,0.0000017608,0.0000017627, -0.0000017643,0.0000017663,0.0000017684,0.0000017708,0.0000017729, -0.0000017741,0.0000017748,0.0000017746,0.0000017741,0.0000017740, -0.0000017749,0.0000017720,0.0000017748,0.0000017788,0.0000017817, -0.0000017845,0.0000017864,0.0000017910,0.0000017962,0.0000018009, -0.0000018035,0.0000018040,0.0000018032,0.0000017994,0.0000017945, -0.0000017925,0.0000017949,0.0000018001,0.0000018042,0.0000018062, -0.0000018060,0.0000018046,0.0000018069,0.0000018133,0.0000018201, -0.0000018258,0.0000018305,0.0000018374,0.0000018484,0.0000018585, -0.0000018620,0.0000018605,0.0000018580,0.0000018554,0.0000018483, -0.0000018412,0.0000018319,0.0000018170,0.0000018124,0.0000018220, -0.0000018300,0.0000018329,0.0000018339,0.0000018266,0.0000018181, -0.0000018213,0.0000018343,0.0000018454,0.0000018477,0.0000018464, -0.0000018448,0.0000018444,0.0000018440,0.0000018390,0.0000018250, -0.0000018039,0.0000017871,0.0000017851,0.0000017959,0.0000018089, -0.0000018140,0.0000018166,0.0000018256,0.0000018373,0.0000018430, -0.0000018448,0.0000018500,0.0000018575,0.0000018615,0.0000018613, -0.0000018576,0.0000018531,0.0000018516,0.0000018528,0.0000018557, -0.0000018587,0.0000018616,0.0000018647,0.0000018668,0.0000018663, -0.0000018605,0.0000018482,0.0000018337,0.0000018207,0.0000018113, -0.0000018046,0.0000017996,0.0000017947,0.0000017902,0.0000017859, -0.0000017823,0.0000017792,0.0000017781,0.0000017828,0.0000017960, -0.0000018139,0.0000018280,0.0000018339,0.0000018321,0.0000018302, -0.0000018284,0.0000018253,0.0000018206,0.0000018168,0.0000018145, -0.0000018128,0.0000018109,0.0000018186,0.0000018381,0.0000018497, -0.0000018525,0.0000018925,0.0000019639,0.0000019860,0.0000019946, -0.0000019972,0.0000020001,0.0000020034,0.0000020059,0.0000020070, -0.0000020063,0.0000020011,0.0000019895,0.0000019769,0.0000019715, -0.0000019744,0.0000019793,0.0000019794,0.0000019704,0.0000019532, -0.0000019298,0.0000019054,0.0000018847,0.0000018688,0.0000018567, -0.0000018491,0.0000018454,0.0000018441,0.0000018427,0.0000018402, -0.0000018360,0.0000018313,0.0000018262,0.0000018211,0.0000018158, -0.0000018109,0.0000018069,0.0000018044,0.0000018027,0.0000018011, -0.0000018007,0.0000018015,0.0000018028,0.0000018041,0.0000018047, -0.0000018049,0.0000018050,0.0000018052,0.0000018056,0.0000018061, -0.0000018069,0.0000018082,0.0000018103,0.0000018138,0.0000018184, -0.0000018221,0.0000018232,0.0000018226,0.0000018236,0.0000018300, -0.0000018411,0.0000018496,0.0000018545,0.0000018596,0.0000018661, -0.0000018703,0.0000018707,0.0000018680,0.0000018666,0.0000018737, -0.0000018928,0.0000019107,0.0000019188,0.0000019217,0.0000019232, -0.0000019141,0.0000018829,0.0000018435,0.0000018250,0.0000018287, -0.0000018422,0.0000018490,0.0000018442,0.0000018360,0.0000018304, -0.0000018326,0.0000018403,0.0000018501,0.0000018569,0.0000018590, -0.0000018585,0.0000018585,0.0000018599,0.0000018623,0.0000018648, -0.0000018673,0.0000018697,0.0000018714,0.0000018722,0.0000018714, -0.0000018682,0.0000018617,0.0000018526,0.0000018426,0.0000018333, -0.0000018250,0.0000018177,0.0000018115,0.0000018057,0.0000017995, -0.0000017938,0.0000017911,0.0000017902,0.0000017906,0.0000017920, -0.0000017950,0.0000017995,0.0000018051,0.0000018114,0.0000018172, -0.0000018223,0.0000018264,0.0000018292,0.0000018306,0.0000018319, -0.0000018324,0.0000018345,0.0000018395,0.0000018456,0.0000018524, -0.0000018577,0.0000018610,0.0000018634,0.0000018662,0.0000018695, -0.0000018742,0.0000018822,0.0000018891,0.0000018908,0.0000018865, -0.0000018762,0.0000018669,0.0000018616,0.0000018574,0.0000018516, -0.0000018451,0.0000018390,0.0000018323,0.0000018274,0.0000018273, -0.0000018332,0.0000018388,0.0000018418,0.0000018436,0.0000018487, -0.0000018560,0.0000018620,0.0000018651,0.0000018672,0.0000018696, -0.0000018724,0.0000018750,0.0000018785,0.0000018816,0.0000018857, -0.0000018902,0.0000018919,0.0000018928,0.0000018943,0.0000018946, -0.0000018935,0.0000018927,0.0000018930,0.0000018952,0.0000018990, -0.0000019037,0.0000019098,0.0000019161,0.0000019221,0.0000019297, -0.0000019402,0.0000019512,0.0000019625,0.0000019717,0.0000019788, -0.0000019846,0.0000019893,0.0000019934,0.0000019968,0.0000020007, -0.0000020035,0.0000020041,0.0000020045,0.0000020078,0.0000020137, -0.0000020182,0.0000020111,0.0000019901,0.0000019817,0.0000019819, -0.0000019829,0.0000019809,0.0000019762,0.0000019761,0.0000019947, -0.0000020211,0.0000020308,0.0000020306,0.0000020247,0.0000020152, -0.0000020112,0.0000020147,0.0000020220,0.0000020299,0.0000020336, -0.0000020271,0.0000020126,0.0000019961,0.0000019850,0.0000019811, -0.0000019812,0.0000019871,0.0000020037,0.0000020207,0.0000020252, -0.0000020228,0.0000020144,0.0000019895,0.0000019429,0.0000018920, -0.0000018576,0.0000018433,0.0000018395,0.0000018340,0.0000018213, -0.0000018059,0.0000017956,0.0000017992,0.0000018067,0.0000018213, -0.0000018370,0.0000018512,0.0000018635,0.0000018714,0.0000018748, -0.0000018759,0.0000018752,0.0000018729,0.0000018689,0.0000018666, -0.0000018737,0.0000018993,0.0000019278,0.0000019316,0.0000019133, -0.0000018798,0.0000018642,0.0000018684,0.0000018860,0.0000019128, -0.0000019374,0.0000019248,0.0000018686,0.0000018236,0.0000018365, -0.0000018872,0.0000019125,0.0000018973,0.0000018670,0.0000018514, -0.0000018558,0.0000018680,0.0000018795,0.0000019047,0.0000019476, -0.0000019814,0.0000019896,0.0000019869,0.0000019826,0.0000019827, -0.0000019888,0.0000019993,0.0000020126,0.0000020207,0.0000020220, -0.0000020242,0.0000020278,0.0000020294,0.0000020288,0.0000020272, -0.0000020264,0.0000020261,0.0000020251,0.0000020234,0.0000020220, -0.0000020216,0.0000020216,0.0000020215,0.0000020207,0.0000020189, -0.0000020164,0.0000020137,0.0000020112,0.0000020091,0.0000020081, -0.0000020078,0.0000020077,0.0000020074,0.0000020076,0.0000020084, -0.0000020095,0.0000020110,0.0000020128,0.0000020150,0.0000020170, -0.0000020169,0.0000020158,0.0000020152,0.0000020150,0.0000020143, -0.0000020126,0.0000020107,0.0000020081,0.0000020043,0.0000019997, -0.0000019943,0.0000019883,0.0000019820,0.0000019762,0.0000019707, -0.0000019652,0.0000019608,0.0000019580,0.0000019563,0.0000019553, -0.0000019549,0.0000019558,0.0000019583,0.0000019626,0.0000019696, -0.0000019799,0.0000019938,0.0000020088,0.0000020201,0.0000020245, -0.0000020241,0.0000020227,0.0000020231,0.0000020269,0.0000020311, -0.0000020309,0.0000020253,0.0000020133,0.0000020018,0.0000019944, -0.0000019906,0.0000019892,0.0000019892,0.0000019959,0.0000020075, -0.0000020204,0.0000020307,0.0000020372,0.0000020402,0.0000020411, -0.0000020410,0.0000020400,0.0000020388,0.0000020381,0.0000020376, -0.0000020367,0.0000020356,0.0000020353,0.0000020353,0.0000020347, -0.0000020338,0.0000020331,0.0000020326,0.0000020336,0.0000020364, -0.0000020403,0.0000020437,0.0000020456,0.0000020472,0.0000020489, -0.0000020510,0.0000020519,0.0000020513,0.0000020489,0.0000020444, -0.0000020375,0.0000020294,0.0000020216,0.0000020159,0.0000020111, -0.0000020101,0.0000020116,0.0000020153,0.0000020195,0.0000020219, -0.0000020243,0.0000020203,0.0000020158,0.0000020093,0.0000020027, -0.0000019974,0.0000019957,0.0000019956,0.0000019976,0.0000019998, -0.0000020038,0.0000020090,0.0000020113,0.0000020142,0.0000020189, -0.0000020257,0.0000020343,0.0000020410,0.0000020444,0.0000020456, -0.0000020450,0.0000020434,0.0000020411,0.0000020397,0.0000020395, -0.0000020390,0.0000020360,0.0000020298,0.0000020226,0.0000020138, -0.0000020053,0.0000020003,0.0000019979,0.0000019964,0.0000019960, -0.0000019968,0.0000019980,0.0000019988,0.0000019998,0.0000020016, -0.0000020025,0.0000020031,0.0000020048,0.0000020083,0.0000020124, -0.0000020158,0.0000020185,0.0000020218,0.0000020246,0.0000020273, -0.0000020292,0.0000020303,0.0000020303,0.0000020303,0.0000020303, -0.0000020296,0.0000020292,0.0000020300,0.0000020315,0.0000020334, -0.0000020352,0.0000020375,0.0000020398,0.0000020410,0.0000020418, -0.0000020420,0.0000020412,0.0000020396,0.0000020371,0.0000020335, -0.0000020292,0.0000020234,0.0000020170,0.0000020103,0.0000020061, -0.0000020042,0.0000020021,0.0000020004,0.0000019974,0.0000019926, -0.0000019875,0.0000019837,0.0000019813,0.0000019802,0.0000019793, -0.0000019780,0.0000019776,0.0000019776,0.0000019775,0.0000019760, -0.0000019720,0.0000019654,0.0000019584,0.0000019527,0.0000019493, -0.0000019474,0.0000019458,0.0000019433,0.0000019394,0.0000019349, -0.0000019309,0.0000019278,0.0000019252,0.0000019239,0.0000019237, -0.0000019238,0.0000019251,0.0000019268,0.0000019263,0.0000019257, -0.0000019264,0.0000019274,0.0000019282,0.0000019276,0.0000019238, -0.0000019157,0.0000019068,0.0000019010,0.0000018958,0.0000018905, -0.0000018863,0.0000018806,0.0000018756,0.0000018736,0.0000018740, -0.0000018770,0.0000018808,0.0000018854,0.0000018913,0.0000018965, -0.0000019006,0.0000019028,0.0000019038,0.0000019062,0.0000019101, -0.0000019148,0.0000019179,0.0000019200,0.0000019224,0.0000019243, -0.0000019231,0.0000019166,0.0000019102,0.0000019113,0.0000019185, -0.0000019250,0.0000019264,0.0000019248,0.0000019229,0.0000019210, -0.0000019202,0.0000019217,0.0000019232,0.0000019211,0.0000019123, -0.0000018986,0.0000018872,0.0000018813,0.0000018799,0.0000018785, -0.0000018762,0.0000018780,0.0000018834,0.0000018875,0.0000018881, -0.0000018844,0.0000018780,0.0000018741,0.0000018724,0.0000018703, -0.0000018679,0.0000018648,0.0000018612,0.0000018575,0.0000018540, -0.0000018517,0.0000018515,0.0000018525,0.0000018537,0.0000018542, -0.0000018542,0.0000018527,0.0000018507,0.0000018483,0.0000018438, -0.0000018364,0.0000018278,0.0000018210,0.0000018176,0.0000018168, -0.0000018172,0.0000018178,0.0000018175,0.0000018152,0.0000018123, -0.0000018112,0.0000018106,0.0000018091,0.0000018077,0.0000018075, -0.0000018080,0.0000018084,0.0000018095,0.0000018114,0.0000018125, -0.0000018118,0.0000018111,0.0000018104,0.0000018100,0.0000018083, -0.0000018038,0.0000017977,0.0000017923,0.0000017883,0.0000017852, -0.0000017821,0.0000017770,0.0000017699,0.0000017640,0.0000017617, -0.0000017626,0.0000017642,0.0000017652,0.0000017649,0.0000017619, -0.0000017559,0.0000017491,0.0000017446,0.0000017427,0.0000017426, -0.0000017431,0.0000017453,0.0000017480,0.0000017505,0.0000017516, -0.0000017506,0.0000017470,0.0000017423,0.0000017401,0.0000017395, -0.0000017381,0.0000017366,0.0000017361,0.0000017377,0.0000017404, -0.0000017397,0.0000017358,0.0000017322,0.0000017309,0.0000017288, -0.0000017270,0.0000017254,0.0000017205,0.0000017133,0.0000017113, -0.0000017212,0.0000017418,0.0000017618,0.0000017689,0.0000017651, -0.0000017628,0.0000017665,0.0000017839,0.0000018153,0.0000018241, -0.0000018284,0.0000018268,0.0000018273,0.0000018289,0.0000018269, -0.0000018248,0.0000018233,0.0000018211,0.0000018190,0.0000018174, -0.0000018147,0.0000018094,0.0000018016,0.0000017940,0.0000017909, -0.0000017910,0.0000017865,0.0000017741,0.0000017702,0.0000017807, -0.0000017948,0.0000018038,0.0000018091,0.0000018122,0.0000018154, -0.0000018195,0.0000018259,0.0000018344,0.0000018404,0.0000018396, -0.0000018374,0.0000018414,0.0000018429,0.0000018344,0.0000018243, -0.0000018225,0.0000018264,0.0000018333,0.0000018403,0.0000018457, -0.0000018468,0.0000018454,0.0000018450,0.0000018437,0.0000018416, -0.0000018389,0.0000018339,0.0000018280,0.0000018230,0.0000018195, -0.0000018167,0.0000018152,0.0000018158,0.0000018185,0.0000018226, -0.0000018259,0.0000018281,0.0000018307,0.0000018342,0.0000018378, -0.0000018410,0.0000018424,0.0000018415,0.0000018395,0.0000018392, -0.0000018409,0.0000018424,0.0000018425,0.0000018413,0.0000018399, -0.0000018406,0.0000018452,0.0000018514,0.0000018560,0.0000018591, -0.0000018620,0.0000018656,0.0000018686,0.0000018686,0.0000018642, -0.0000018587,0.0000018562,0.0000018560,0.0000018555,0.0000018546, -0.0000018544,0.0000018511,0.0000018435,0.0000018350,0.0000018303, -0.0000018300,0.0000018301,0.0000018266,0.0000018201,0.0000018158, -0.0000018148,0.0000018126,0.0000018093,0.0000018029,0.0000017928, -0.0000017899,0.0000017995,0.0000018052,0.0000017967,0.0000017848, -0.0000017789,0.0000017759,0.0000017686,0.0000017577,0.0000017523, -0.0000017522,0.0000017545,0.0000017614,0.0000017646,0.0000017645, -0.0000017662,0.0000017660,0.0000017719,0.0000017776,0.0000017782, -0.0000017856,0.0000017704,0.0000017603,0.0000017635,0.0000017763, -0.0000017840,0.0000017769,0.0000017759,0.0000017785,0.0000017831, -0.0000017885,0.0000017887,0.0000017842,0.0000017766,0.0000017682, -0.0000017613,0.0000017556,0.0000017520,0.0000017496,0.0000017484, -0.0000017481,0.0000017490,0.0000017514,0.0000017548,0.0000017583, -0.0000017616,0.0000017642,0.0000017665,0.0000017693,0.0000017718, -0.0000017742,0.0000017761,0.0000017768,0.0000017766,0.0000017750, -0.0000017725,0.0000017699,0.0000017694,0.0000017664,0.0000017664, -0.0000017716,0.0000017787,0.0000017851,0.0000017896,0.0000017952, -0.0000017995,0.0000018021,0.0000018027,0.0000018019,0.0000018006, -0.0000017989,0.0000017963,0.0000017944,0.0000017950,0.0000017992, -0.0000018033,0.0000018059,0.0000018071,0.0000018060,0.0000018058, -0.0000018093,0.0000018152,0.0000018218,0.0000018282,0.0000018343, -0.0000018435,0.0000018553,0.0000018634,0.0000018639,0.0000018606, -0.0000018580,0.0000018530,0.0000018452,0.0000018390,0.0000018274, -0.0000018139,0.0000018156,0.0000018263,0.0000018320,0.0000018341, -0.0000018309,0.0000018218,0.0000018193,0.0000018285,0.0000018408, -0.0000018461,0.0000018461,0.0000018465,0.0000018482,0.0000018473, -0.0000018373,0.0000018159,0.0000017929,0.0000017846,0.0000017903, -0.0000018039,0.0000018111,0.0000018142,0.0000018234,0.0000018362, -0.0000018425,0.0000018444,0.0000018497,0.0000018568,0.0000018596, -0.0000018591,0.0000018554,0.0000018527,0.0000018535,0.0000018572, -0.0000018613,0.0000018642,0.0000018673,0.0000018713,0.0000018755, -0.0000018779,0.0000018768,0.0000018683,0.0000018519,0.0000018337, -0.0000018192,0.0000018101,0.0000018042,0.0000017981,0.0000017908, -0.0000017825,0.0000017758,0.0000017720,0.0000017706,0.0000017695, -0.0000017688,0.0000017718,0.0000017834,0.0000018033,0.0000018221, -0.0000018313,0.0000018309,0.0000018299,0.0000018293,0.0000018278, -0.0000018222,0.0000018159,0.0000018128,0.0000018107,0.0000018183, -0.0000018393,0.0000018500,0.0000018600,0.0000019183,0.0000019760, -0.0000019916,0.0000020000,0.0000020005,0.0000020023,0.0000020039, -0.0000020043,0.0000020019,0.0000019936,0.0000019812,0.0000019749, -0.0000019759,0.0000019808,0.0000019805,0.0000019698,0.0000019463, -0.0000019143,0.0000018861,0.0000018667,0.0000018550,0.0000018500, -0.0000018474,0.0000018452,0.0000018436,0.0000018405,0.0000018364, -0.0000018316,0.0000018267,0.0000018225,0.0000018199,0.0000018187, -0.0000018158,0.0000018130,0.0000018097,0.0000018064,0.0000018036, -0.0000018008,0.0000017993,0.0000017993,0.0000017997,0.0000018000, -0.0000018000,0.0000017990,0.0000017973,0.0000017952,0.0000017942, -0.0000017942,0.0000017945,0.0000017952,0.0000017971,0.0000018003, -0.0000018059,0.0000018120,0.0000018157,0.0000018168,0.0000018175, -0.0000018220,0.0000018354,0.0000018486,0.0000018544,0.0000018579, -0.0000018639,0.0000018704,0.0000018725,0.0000018699,0.0000018673, -0.0000018753,0.0000018958,0.0000019126,0.0000019197,0.0000019217, -0.0000019113,0.0000018787,0.0000018401,0.0000018211,0.0000018271, -0.0000018369,0.0000018406,0.0000018334,0.0000018250,0.0000018272, -0.0000018343,0.0000018470,0.0000018573,0.0000018621,0.0000018616, -0.0000018600,0.0000018604,0.0000018628,0.0000018649,0.0000018664, -0.0000018682,0.0000018712,0.0000018743,0.0000018761,0.0000018746, -0.0000018707,0.0000018622,0.0000018498,0.0000018367,0.0000018256, -0.0000018174,0.0000018115,0.0000018068,0.0000018023,0.0000017972, -0.0000017913,0.0000017860,0.0000017843,0.0000017848,0.0000017863, -0.0000017890,0.0000017927,0.0000017979,0.0000018040,0.0000018112, -0.0000018178,0.0000018238,0.0000018294,0.0000018340,0.0000018379, -0.0000018409,0.0000018432,0.0000018458,0.0000018491,0.0000018516, -0.0000018542,0.0000018569,0.0000018590,0.0000018599,0.0000018604, -0.0000018619,0.0000018649,0.0000018715,0.0000018791,0.0000018827, -0.0000018786,0.0000018653,0.0000018540,0.0000018501,0.0000018499, -0.0000018475,0.0000018445,0.0000018407,0.0000018363,0.0000018307, -0.0000018275,0.0000018308,0.0000018378,0.0000018437,0.0000018470, -0.0000018517,0.0000018596,0.0000018687,0.0000018743,0.0000018759, -0.0000018757,0.0000018750,0.0000018754,0.0000018758,0.0000018771, -0.0000018805,0.0000018844,0.0000018864,0.0000018879,0.0000018897, -0.0000018897,0.0000018891,0.0000018886,0.0000018883,0.0000018888, -0.0000018902,0.0000018946,0.0000019021,0.0000019098,0.0000019169, -0.0000019248,0.0000019344,0.0000019456,0.0000019578,0.0000019686, -0.0000019767,0.0000019823,0.0000019870,0.0000019905,0.0000019939, -0.0000019975,0.0000019998,0.0000020023,0.0000020077,0.0000020148, -0.0000020197,0.0000020132,0.0000019934,0.0000019842,0.0000019841, -0.0000019843,0.0000019818,0.0000019773,0.0000019780,0.0000019964, -0.0000020221,0.0000020314,0.0000020312,0.0000020266,0.0000020203, -0.0000020186,0.0000020227,0.0000020292,0.0000020334,0.0000020330, -0.0000020220,0.0000020046,0.0000019889,0.0000019799,0.0000019777, -0.0000019812,0.0000019944,0.0000020135,0.0000020254,0.0000020260, -0.0000020200,0.0000019981,0.0000019517,0.0000018966,0.0000018589, -0.0000018441,0.0000018381,0.0000018281,0.0000018135,0.0000018001, -0.0000017933,0.0000017961,0.0000018105,0.0000018296,0.0000018446, -0.0000018553,0.0000018640,0.0000018702,0.0000018737,0.0000018773, -0.0000018792,0.0000018797,0.0000018786,0.0000018752,0.0000018677, -0.0000018676,0.0000018864,0.0000019182,0.0000019276,0.0000019018, -0.0000018644,0.0000018450,0.0000018452,0.0000018471,0.0000018604, -0.0000018954,0.0000019347,0.0000019316,0.0000018686,0.0000018221, -0.0000018458,0.0000019012,0.0000019144,0.0000018904,0.0000018588, -0.0000018470,0.0000018543,0.0000018661,0.0000018732,0.0000018970, -0.0000019431,0.0000019795,0.0000019883,0.0000019846,0.0000019779, -0.0000019731,0.0000019756,0.0000019924,0.0000020133,0.0000020217, -0.0000020231,0.0000020241,0.0000020250,0.0000020246,0.0000020232, -0.0000020228,0.0000020227,0.0000020218,0.0000020201,0.0000020199, -0.0000020204,0.0000020213,0.0000020218,0.0000020216,0.0000020198, -0.0000020166,0.0000020131,0.0000020099,0.0000020076,0.0000020068, -0.0000020067,0.0000020072,0.0000020062,0.0000020073,0.0000020083, -0.0000020085,0.0000020091,0.0000020096,0.0000020082,0.0000020055, -0.0000020024,0.0000019981,0.0000019934,0.0000019892,0.0000019843, -0.0000019786,0.0000019735,0.0000019694,0.0000019647,0.0000019594, -0.0000019549,0.0000019516,0.0000019516,0.0000019484,0.0000019454, -0.0000019413,0.0000019377,0.0000019362,0.0000019348,0.0000019333, -0.0000019318,0.0000019309,0.0000019301,0.0000019269,0.0000019295, -0.0000019367,0.0000019538,0.0000019806,0.0000020082,0.0000020256, -0.0000020300,0.0000020275,0.0000020225,0.0000020206,0.0000020234, -0.0000020281,0.0000020293,0.0000020231,0.0000020122,0.0000020018, -0.0000019942,0.0000019899,0.0000019874,0.0000019865,0.0000019898, -0.0000019975,0.0000020067,0.0000020152,0.0000020211,0.0000020247, -0.0000020269,0.0000020281,0.0000020285,0.0000020282,0.0000020271, -0.0000020250,0.0000020221,0.0000020191,0.0000020163,0.0000020130, -0.0000020099,0.0000020093,0.0000020122,0.0000020217,0.0000020320, -0.0000020401,0.0000020451,0.0000020482,0.0000020508,0.0000020528, -0.0000020533,0.0000020526,0.0000020494,0.0000020445,0.0000020381, -0.0000020311,0.0000020255,0.0000020212,0.0000020191,0.0000020188, -0.0000020210,0.0000020195,0.0000020204,0.0000020159,0.0000020103, -0.0000020027,0.0000019958,0.0000019910,0.0000019911,0.0000019929, -0.0000019962,0.0000020004,0.0000020038,0.0000020056,0.0000020084, -0.0000020089,0.0000020065,0.0000020037,0.0000020039,0.0000020127, -0.0000020245,0.0000020337,0.0000020377,0.0000020383,0.0000020373, -0.0000020349,0.0000020317,0.0000020292,0.0000020285,0.0000020293, -0.0000020307,0.0000020315,0.0000020313,0.0000020290,0.0000020273, -0.0000020253,0.0000020256,0.0000020262,0.0000020269,0.0000020276, -0.0000020277,0.0000020268,0.0000020253,0.0000020236,0.0000020195, -0.0000020139,0.0000020088,0.0000020055,0.0000020032,0.0000020024, -0.0000020026,0.0000020039,0.0000020055,0.0000020062,0.0000020057, -0.0000020058,0.0000020056,0.0000020055,0.0000020055,0.0000020062, -0.0000020087,0.0000020124,0.0000020162,0.0000020198,0.0000020233, -0.0000020259,0.0000020276,0.0000020283,0.0000020288,0.0000020286, -0.0000020290,0.0000020290,0.0000020287,0.0000020292,0.0000020293, -0.0000020264,0.0000020223,0.0000020174,0.0000020133,0.0000020113, -0.0000020099,0.0000020088,0.0000020080,0.0000020062,0.0000020032, -0.0000019996,0.0000019957,0.0000019920,0.0000019879,0.0000019840, -0.0000019811,0.0000019795,0.0000019785,0.0000019785,0.0000019785, -0.0000019768,0.0000019731,0.0000019680,0.0000019629,0.0000019589, -0.0000019561,0.0000019535,0.0000019504,0.0000019459,0.0000019408, -0.0000019355,0.0000019315,0.0000019287,0.0000019284,0.0000019282, -0.0000019279,0.0000019280,0.0000019272,0.0000019255,0.0000019245, -0.0000019254,0.0000019284,0.0000019321,0.0000019347,0.0000019333, -0.0000019267,0.0000019176,0.0000019092,0.0000019013,0.0000018943, -0.0000018881,0.0000018799,0.0000018728,0.0000018695,0.0000018698, -0.0000018735,0.0000018787,0.0000018855,0.0000018934,0.0000019011, -0.0000019067,0.0000019089,0.0000019093,0.0000019104,0.0000019134, -0.0000019170,0.0000019198,0.0000019231,0.0000019267,0.0000019294, -0.0000019275,0.0000019199,0.0000019129,0.0000019146,0.0000019217, -0.0000019270,0.0000019277,0.0000019260,0.0000019239,0.0000019223, -0.0000019228,0.0000019254,0.0000019269,0.0000019247,0.0000019149, -0.0000019005,0.0000018869,0.0000018802,0.0000018784,0.0000018755, -0.0000018750,0.0000018787,0.0000018833,0.0000018862,0.0000018862, -0.0000018836,0.0000018824,0.0000018835,0.0000018834,0.0000018810, -0.0000018771,0.0000018717,0.0000018654,0.0000018593,0.0000018544, -0.0000018522,0.0000018524,0.0000018537,0.0000018545,0.0000018547, -0.0000018544,0.0000018538,0.0000018530,0.0000018506,0.0000018441, -0.0000018336,0.0000018230,0.0000018173,0.0000018170,0.0000018196, -0.0000018236,0.0000018256,0.0000018247,0.0000018222,0.0000018212, -0.0000018216,0.0000018212,0.0000018191,0.0000018173,0.0000018167, -0.0000018161,0.0000018155,0.0000018158,0.0000018155,0.0000018136, -0.0000018114,0.0000018103,0.0000018111,0.0000018124,0.0000018120, -0.0000018089,0.0000018050,0.0000018019,0.0000017994,0.0000017966, -0.0000017915,0.0000017834,0.0000017750,0.0000017701,0.0000017691, -0.0000017698,0.0000017705,0.0000017703,0.0000017682,0.0000017627, -0.0000017550,0.0000017488,0.0000017452,0.0000017435,0.0000017431, -0.0000017450,0.0000017480,0.0000017510,0.0000017526,0.0000017520, -0.0000017492,0.0000017450,0.0000017422,0.0000017412,0.0000017399, -0.0000017376,0.0000017351,0.0000017349,0.0000017374,0.0000017388, -0.0000017368,0.0000017338,0.0000017332,0.0000017329,0.0000017319, -0.0000017309,0.0000017276,0.0000017199,0.0000017118,0.0000017119, -0.0000017229,0.0000017419,0.0000017541,0.0000017533,0.0000017502, -0.0000017553,0.0000017753,0.0000018125,0.0000018236,0.0000018270, -0.0000018256,0.0000018278,0.0000018268,0.0000018239,0.0000018219, -0.0000018200,0.0000018188,0.0000018170,0.0000018136,0.0000018085, -0.0000018018,0.0000017952,0.0000017917,0.0000017912,0.0000017879, -0.0000017764,0.0000017688,0.0000017736,0.0000017864,0.0000017951, -0.0000018009,0.0000018058,0.0000018102,0.0000018159,0.0000018237, -0.0000018333,0.0000018395,0.0000018381,0.0000018356,0.0000018394, -0.0000018436,0.0000018407,0.0000018347,0.0000018327,0.0000018353, -0.0000018384,0.0000018413,0.0000018447,0.0000018453,0.0000018437, -0.0000018422,0.0000018420,0.0000018425,0.0000018436,0.0000018431, -0.0000018434,0.0000018419,0.0000018399,0.0000018403,0.0000018407, -0.0000018404,0.0000018411,0.0000018428,0.0000018441,0.0000018443, -0.0000018442,0.0000018448,0.0000018465,0.0000018493,0.0000018525, -0.0000018546,0.0000018549,0.0000018546,0.0000018547,0.0000018553, -0.0000018547,0.0000018529,0.0000018512,0.0000018503,0.0000018504, -0.0000018523,0.0000018556,0.0000018595,0.0000018633,0.0000018677, -0.0000018716,0.0000018734,0.0000018718,0.0000018675,0.0000018639, -0.0000018617,0.0000018597,0.0000018580,0.0000018580,0.0000018569, -0.0000018526,0.0000018454,0.0000018385,0.0000018347,0.0000018322, -0.0000018273,0.0000018188,0.0000018100,0.0000018063,0.0000018074, -0.0000018102,0.0000018093,0.0000018046,0.0000017957,0.0000017937, -0.0000018007,0.0000018044,0.0000017945,0.0000017814,0.0000017765, -0.0000017735,0.0000017648,0.0000017547,0.0000017508,0.0000017515, -0.0000017580,0.0000017637,0.0000017639,0.0000017651,0.0000017665, -0.0000017685,0.0000017771,0.0000017779,0.0000017839,0.0000017810, -0.0000017623,0.0000017615,0.0000017708,0.0000017835,0.0000017783, -0.0000017764,0.0000017784,0.0000017800,0.0000017842,0.0000017879, -0.0000017875,0.0000017831,0.0000017762,0.0000017690,0.0000017618, -0.0000017554,0.0000017514,0.0000017487,0.0000017474,0.0000017476, -0.0000017489,0.0000017523,0.0000017560,0.0000017594,0.0000017628, -0.0000017665,0.0000017700,0.0000017727,0.0000017755,0.0000017778, -0.0000017792,0.0000017791,0.0000017780,0.0000017759,0.0000017719, -0.0000017680,0.0000017681,0.0000017638,0.0000017633,0.0000017670, -0.0000017741,0.0000017814,0.0000017891,0.0000017955,0.0000017985, -0.0000017984,0.0000017971,0.0000017961,0.0000017968,0.0000017974, -0.0000017963,0.0000017958,0.0000017984,0.0000018023,0.0000018049, -0.0000018072,0.0000018078,0.0000018068,0.0000018079,0.0000018118, -0.0000018171,0.0000018242,0.0000018316,0.0000018395,0.0000018503, -0.0000018615,0.0000018662,0.0000018640,0.0000018605,0.0000018572, -0.0000018499,0.0000018429,0.0000018367,0.0000018229,0.0000018140, -0.0000018201,0.0000018303,0.0000018339,0.0000018334,0.0000018257, -0.0000018188,0.0000018226,0.0000018346,0.0000018422,0.0000018446, -0.0000018473,0.0000018510,0.0000018491,0.0000018340,0.0000018081, -0.0000017885,0.0000017873,0.0000017984,0.0000018078,0.0000018117, -0.0000018201,0.0000018336,0.0000018417,0.0000018446,0.0000018503, -0.0000018564,0.0000018585,0.0000018576,0.0000018551,0.0000018541, -0.0000018560,0.0000018610,0.0000018660,0.0000018697,0.0000018730, -0.0000018767,0.0000018806,0.0000018846,0.0000018871,0.0000018864, -0.0000018780,0.0000018604,0.0000018401,0.0000018242,0.0000018147, -0.0000018082,0.0000018001,0.0000017896,0.0000017778,0.0000017672, -0.0000017598,0.0000017575,0.0000017581,0.0000017595,0.0000017616, -0.0000017660,0.0000017777,0.0000017978,0.0000018182,0.0000018290, -0.0000018301,0.0000018297,0.0000018301,0.0000018279,0.0000018188, -0.0000018127,0.0000018107,0.0000018193,0.0000018417,0.0000018510, -0.0000018712,0.0000019414,0.0000019823,0.0000019971,0.0000020036, -0.0000020032,0.0000020033,0.0000020022,0.0000019971,0.0000019872, -0.0000019788,0.0000019766,0.0000019813,0.0000019828,0.0000019743, -0.0000019510,0.0000019140,0.0000018789,0.0000018585,0.0000018513, -0.0000018485,0.0000018468,0.0000018446,0.0000018405,0.0000018356, -0.0000018305,0.0000018263,0.0000018235,0.0000018219,0.0000018209, -0.0000018207,0.0000018206,0.0000018199,0.0000018181,0.0000018156, -0.0000018124,0.0000018087,0.0000018052,0.0000018027,0.0000018013, -0.0000018007,0.0000018009,0.0000018009,0.0000018000,0.0000017977, -0.0000017943,0.0000017922,0.0000017922,0.0000017928,0.0000017922, -0.0000017925,0.0000017924,0.0000017967,0.0000018038,0.0000018088, -0.0000018112,0.0000018126,0.0000018158,0.0000018289,0.0000018459, -0.0000018547,0.0000018577,0.0000018626,0.0000018704,0.0000018735, -0.0000018707,0.0000018699,0.0000018833,0.0000019044,0.0000019169, -0.0000019201,0.0000019082,0.0000018746,0.0000018350,0.0000018168, -0.0000018213,0.0000018301,0.0000018295,0.0000018244,0.0000018193, -0.0000018229,0.0000018364,0.0000018519,0.0000018615,0.0000018633, -0.0000018619,0.0000018610,0.0000018623,0.0000018649,0.0000018672, -0.0000018679,0.0000018686,0.0000018711,0.0000018749,0.0000018770, -0.0000018765,0.0000018713,0.0000018615,0.0000018484,0.0000018341, -0.0000018213,0.0000018116,0.0000018054,0.0000018017,0.0000017988, -0.0000017955,0.0000017915,0.0000017876,0.0000017847,0.0000017849, -0.0000017860,0.0000017877,0.0000017906,0.0000017950,0.0000018005, -0.0000018071,0.0000018143,0.0000018220,0.0000018298,0.0000018371, -0.0000018428,0.0000018477,0.0000018516,0.0000018543,0.0000018565, -0.0000018583,0.0000018588,0.0000018588,0.0000018591,0.0000018592, -0.0000018585,0.0000018575,0.0000018571,0.0000018581,0.0000018624, -0.0000018694,0.0000018755,0.0000018739,0.0000018615,0.0000018507, -0.0000018489,0.0000018502,0.0000018520,0.0000018514,0.0000018484, -0.0000018450,0.0000018397,0.0000018354,0.0000018350,0.0000018404, -0.0000018490,0.0000018541,0.0000018560,0.0000018615,0.0000018728, -0.0000018833,0.0000018886,0.0000018893,0.0000018881,0.0000018854, -0.0000018815,0.0000018792,0.0000018791,0.0000018810,0.0000018828, -0.0000018842,0.0000018844,0.0000018836,0.0000018833,0.0000018823, -0.0000018818,0.0000018820,0.0000018837,0.0000018888,0.0000018965, -0.0000019051,0.0000019135,0.0000019217,0.0000019301,0.0000019399, -0.0000019513,0.0000019632,0.0000019732,0.0000019810,0.0000019864, -0.0000019897,0.0000019920,0.0000019941,0.0000019981,0.0000020063, -0.0000020153,0.0000020203,0.0000020150,0.0000019964,0.0000019863, -0.0000019859,0.0000019858,0.0000019826,0.0000019780,0.0000019794, -0.0000019980,0.0000020228,0.0000020312,0.0000020310,0.0000020274, -0.0000020236,0.0000020232,0.0000020280,0.0000020342,0.0000020344, -0.0000020279,0.0000020138,0.0000019973,0.0000019842,0.0000019774, -0.0000019771,0.0000019851,0.0000020039,0.0000020208,0.0000020258, -0.0000020248,0.0000020085,0.0000019665,0.0000019087,0.0000018645, -0.0000018458,0.0000018371,0.0000018234,0.0000018056,0.0000017933, -0.0000017952,0.0000018026,0.0000018194,0.0000018368,0.0000018494, -0.0000018576,0.0000018580,0.0000018606,0.0000018633,0.0000018650, -0.0000018683,0.0000018730,0.0000018750,0.0000018726,0.0000018690, -0.0000018659,0.0000018680,0.0000018843,0.0000019069,0.0000019077, -0.0000018809,0.0000018548,0.0000018469,0.0000018473,0.0000018476, -0.0000018475,0.0000018549,0.0000018956,0.0000019384,0.0000019173, -0.0000018454,0.0000018229,0.0000018717,0.0000019191,0.0000019138, -0.0000018763,0.0000018468,0.0000018434,0.0000018540,0.0000018616, -0.0000018667,0.0000018951,0.0000019454,0.0000019798,0.0000019871, -0.0000019837,0.0000019743,0.0000019661,0.0000019730,0.0000020009, -0.0000020208,0.0000020240,0.0000020231,0.0000020216,0.0000020204, -0.0000020195,0.0000020201,0.0000020206,0.0000020204,0.0000020208, -0.0000020227,0.0000020254,0.0000020273,0.0000020279,0.0000020278, -0.0000020266,0.0000020241,0.0000020206,0.0000020163,0.0000020128, -0.0000020110,0.0000020089,0.0000020069,0.0000020028,0.0000019993, -0.0000019970,0.0000019930,0.0000019886,0.0000019834,0.0000019760, -0.0000019690,0.0000019644,0.0000019601,0.0000019560,0.0000019542, -0.0000019552,0.0000019553,0.0000019546,0.0000019544,0.0000019546, -0.0000019538,0.0000019534,0.0000019543,0.0000019556,0.0000019561, -0.0000019561,0.0000019553,0.0000019540,0.0000019517,0.0000019485, -0.0000019452,0.0000019423,0.0000019385,0.0000019324,0.0000019255, -0.0000019199,0.0000019186,0.0000019307,0.0000019597,0.0000019957, -0.0000020227,0.0000020324,0.0000020311,0.0000020247,0.0000020181, -0.0000020153,0.0000020177,0.0000020223,0.0000020243,0.0000020205, -0.0000020143,0.0000020049,0.0000019975,0.0000019917,0.0000019875, -0.0000019852,0.0000019853,0.0000019850,0.0000019881,0.0000019911, -0.0000019934,0.0000019953,0.0000019968,0.0000019972,0.0000019970, -0.0000019962,0.0000019945,0.0000019917,0.0000019883,0.0000019849, -0.0000019822,0.0000019855,0.0000019935,0.0000020090,0.0000020267, -0.0000020395,0.0000020458,0.0000020490,0.0000020510,0.0000020530, -0.0000020532,0.0000020521,0.0000020491,0.0000020440,0.0000020386, -0.0000020337,0.0000020299,0.0000020272,0.0000020240,0.0000020227, -0.0000020181,0.0000020136,0.0000020065,0.0000019990,0.0000019929, -0.0000019908,0.0000019892,0.0000019932,0.0000019963,0.0000020020, -0.0000020034,0.0000020054,0.0000020038,0.0000020027,0.0000020017, -0.0000019996,0.0000019957,0.0000019956,0.0000019982,0.0000020091, -0.0000020226,0.0000020301,0.0000020324,0.0000020314,0.0000020300, -0.0000020282,0.0000020261,0.0000020246,0.0000020243,0.0000020248, -0.0000020259,0.0000020269,0.0000020277,0.0000020281,0.0000020279, -0.0000020282,0.0000020294,0.0000020305,0.0000020323,0.0000020337, -0.0000020344,0.0000020340,0.0000020335,0.0000020335,0.0000020325, -0.0000020298,0.0000020256,0.0000020214,0.0000020187,0.0000020174, -0.0000020158,0.0000020141,0.0000020121,0.0000020093,0.0000020064, -0.0000020038,0.0000020020,0.0000020009,0.0000020006,0.0000020024, -0.0000020055,0.0000020092,0.0000020132,0.0000020173,0.0000020204, -0.0000020218,0.0000020226,0.0000020230,0.0000020240,0.0000020262, -0.0000020278,0.0000020310,0.0000020345,0.0000020374,0.0000020396, -0.0000020400,0.0000020384,0.0000020357,0.0000020327,0.0000020303, -0.0000020279,0.0000020255,0.0000020234,0.0000020219,0.0000020200, -0.0000020177,0.0000020147,0.0000020110,0.0000020061,0.0000020001, -0.0000019947,0.0000019902,0.0000019862,0.0000019829,0.0000019813, -0.0000019808,0.0000019800,0.0000019783,0.0000019753,0.0000019712, -0.0000019670,0.0000019630,0.0000019592,0.0000019553,0.0000019513, -0.0000019473,0.0000019433,0.0000019409,0.0000019391,0.0000019388, -0.0000019376,0.0000019358,0.0000019331,0.0000019296,0.0000019262, -0.0000019241,0.0000019254,0.0000019293,0.0000019355,0.0000019407, -0.0000019415,0.0000019367,0.0000019278,0.0000019176,0.0000019085, -0.0000018998,0.0000018907,0.0000018801,0.0000018712,0.0000018681, -0.0000018681,0.0000018734,0.0000018793,0.0000018866,0.0000018956, -0.0000019044,0.0000019108,0.0000019136,0.0000019139,0.0000019142, -0.0000019161,0.0000019183,0.0000019216,0.0000019256,0.0000019301, -0.0000019327,0.0000019301,0.0000019218,0.0000019154,0.0000019182, -0.0000019247,0.0000019287,0.0000019283,0.0000019255,0.0000019222, -0.0000019218,0.0000019245,0.0000019278,0.0000019298,0.0000019272, -0.0000019176,0.0000019022,0.0000018876,0.0000018806,0.0000018762, -0.0000018738,0.0000018750,0.0000018796,0.0000018828,0.0000018839, -0.0000018831,0.0000018832,0.0000018865,0.0000018914,0.0000018923, -0.0000018904,0.0000018856,0.0000018783,0.0000018700,0.0000018620, -0.0000018562,0.0000018541,0.0000018549,0.0000018561,0.0000018561, -0.0000018550,0.0000018539,0.0000018536,0.0000018534,0.0000018511, -0.0000018429,0.0000018302,0.0000018193,0.0000018158,0.0000018180, -0.0000018234,0.0000018274,0.0000018294,0.0000018287,0.0000018278, -0.0000018292,0.0000018304,0.0000018298,0.0000018282,0.0000018271, -0.0000018268,0.0000018262,0.0000018253,0.0000018238,0.0000018206, -0.0000018158,0.0000018115,0.0000018106,0.0000018110,0.0000018117, -0.0000018110,0.0000018103,0.0000018096,0.0000018087,0.0000018072, -0.0000018038,0.0000017976,0.0000017903,0.0000017849,0.0000017824, -0.0000017815,0.0000017807,0.0000017794,0.0000017771,0.0000017718, -0.0000017638,0.0000017560,0.0000017507,0.0000017476,0.0000017462, -0.0000017466,0.0000017492,0.0000017528,0.0000017551,0.0000017545, -0.0000017516,0.0000017475,0.0000017439,0.0000017417,0.0000017403, -0.0000017383,0.0000017356,0.0000017341,0.0000017351,0.0000017367, -0.0000017361,0.0000017341,0.0000017327,0.0000017328,0.0000017330, -0.0000017331,0.0000017328,0.0000017287,0.0000017195,0.0000017116, -0.0000017127,0.0000017245,0.0000017396,0.0000017446,0.0000017414, -0.0000017443,0.0000017636,0.0000018055,0.0000018221,0.0000018259, -0.0000018256,0.0000018273,0.0000018238,0.0000018210,0.0000018187, -0.0000018180,0.0000018154,0.0000018111,0.0000018063,0.0000018005, -0.0000017947,0.0000017914,0.0000017911,0.0000017872,0.0000017762, -0.0000017674,0.0000017700,0.0000017802,0.0000017888,0.0000017934, -0.0000017980,0.0000018044,0.0000018124,0.0000018225,0.0000018325, -0.0000018372,0.0000018355,0.0000018335,0.0000018379,0.0000018437, -0.0000018437,0.0000018396,0.0000018359,0.0000018351,0.0000018358, -0.0000018362,0.0000018366,0.0000018362,0.0000018344,0.0000018321, -0.0000018310,0.0000018311,0.0000018324,0.0000018341,0.0000018359, -0.0000018370,0.0000018380,0.0000018403,0.0000018436,0.0000018455, -0.0000018465,0.0000018477,0.0000018488,0.0000018490,0.0000018481, -0.0000018476,0.0000018479,0.0000018498,0.0000018530,0.0000018569, -0.0000018616,0.0000018651,0.0000018672,0.0000018690,0.0000018690, -0.0000018663,0.0000018621,0.0000018596,0.0000018594,0.0000018596, -0.0000018595,0.0000018606,0.0000018638,0.0000018688,0.0000018741, -0.0000018777,0.0000018778,0.0000018744,0.0000018706,0.0000018679, -0.0000018653,0.0000018630,0.0000018625,0.0000018622,0.0000018603, -0.0000018559,0.0000018499,0.0000018441,0.0000018383,0.0000018302, -0.0000018182,0.0000018055,0.0000017979,0.0000017968,0.0000018002, -0.0000018055,0.0000018075,0.0000018059,0.0000017995,0.0000017974, -0.0000018015,0.0000018016,0.0000017911,0.0000017791,0.0000017750, -0.0000017703,0.0000017608,0.0000017519,0.0000017496,0.0000017541, -0.0000017617,0.0000017633,0.0000017626,0.0000017647,0.0000017678, -0.0000017740,0.0000017792,0.0000017798,0.0000017855,0.0000017708, -0.0000017613,0.0000017656,0.0000017812,0.0000017799,0.0000017766, -0.0000017794,0.0000017805,0.0000017814,0.0000017835,0.0000017851, -0.0000017844,0.0000017814,0.0000017780,0.0000017726,0.0000017662, -0.0000017604,0.0000017548,0.0000017504,0.0000017483,0.0000017488, -0.0000017517,0.0000017554,0.0000017589,0.0000017624,0.0000017661, -0.0000017691,0.0000017714,0.0000017741,0.0000017771,0.0000017794, -0.0000017801,0.0000017793,0.0000017773,0.0000017750,0.0000017720, -0.0000017713,0.0000017681,0.0000017640,0.0000017622,0.0000017639, -0.0000017695,0.0000017776,0.0000017859,0.0000017911,0.0000017926, -0.0000017928,0.0000017933,0.0000017957,0.0000017983,0.0000017982, -0.0000017970,0.0000017975,0.0000018007,0.0000018033,0.0000018058, -0.0000018080,0.0000018083,0.0000018083,0.0000018105,0.0000018138, -0.0000018191,0.0000018273,0.0000018362,0.0000018457,0.0000018573, -0.0000018667,0.0000018677,0.0000018633,0.0000018599,0.0000018546, -0.0000018466,0.0000018416,0.0000018336,0.0000018184,0.0000018143, -0.0000018249,0.0000018328,0.0000018334,0.0000018300,0.0000018207, -0.0000018187,0.0000018273,0.0000018365,0.0000018415,0.0000018469, -0.0000018526,0.0000018497,0.0000018303,0.0000018027,0.0000017897, -0.0000017939,0.0000018046,0.0000018095,0.0000018159,0.0000018296, -0.0000018409,0.0000018455,0.0000018513,0.0000018581,0.0000018595, -0.0000018577,0.0000018560,0.0000018558,0.0000018581,0.0000018632, -0.0000018685,0.0000018727,0.0000018765,0.0000018801,0.0000018837, -0.0000018873,0.0000018911,0.0000018942,0.0000018945,0.0000018887, -0.0000018728,0.0000018521,0.0000018352,0.0000018245,0.0000018155, -0.0000018038,0.0000017899,0.0000017759,0.0000017636,0.0000017546, -0.0000017503,0.0000017485,0.0000017496,0.0000017521,0.0000017568, -0.0000017642,0.0000017762,0.0000017957,0.0000018169,0.0000018282, -0.0000018298,0.0000018304,0.0000018305,0.0000018226,0.0000018124, -0.0000018106,0.0000018215,0.0000018443,0.0000018529,0.0000018850, -0.0000019582,0.0000019861,0.0000020022,0.0000020047,0.0000020026, -0.0000019990,0.0000019925,0.0000019842,0.0000019805,0.0000019824, -0.0000019840,0.0000019801,0.0000019636,0.0000019288,0.0000018858, -0.0000018583,0.0000018506,0.0000018487,0.0000018463,0.0000018420, -0.0000018368,0.0000018315,0.0000018269,0.0000018239,0.0000018225, -0.0000018220,0.0000018223,0.0000018225,0.0000018222,0.0000018218, -0.0000018213,0.0000018199,0.0000018178,0.0000018155,0.0000018129, -0.0000018102,0.0000018077,0.0000018055,0.0000018035,0.0000018024, -0.0000018022,0.0000018018,0.0000018002,0.0000017975,0.0000017957, -0.0000017972,0.0000018014,0.0000018020,0.0000017975,0.0000017918, -0.0000017919,0.0000017985,0.0000018045,0.0000018074,0.0000018094, -0.0000018128,0.0000018241,0.0000018429,0.0000018551,0.0000018588, -0.0000018627,0.0000018708,0.0000018735,0.0000018711,0.0000018760, -0.0000018967,0.0000019142,0.0000019186,0.0000019054,0.0000018699, -0.0000018303,0.0000018112,0.0000018132,0.0000018195,0.0000018179, -0.0000018122,0.0000018156,0.0000018232,0.0000018392,0.0000018547, -0.0000018620,0.0000018627,0.0000018602,0.0000018599,0.0000018628, -0.0000018673,0.0000018697,0.0000018699,0.0000018694,0.0000018704, -0.0000018734,0.0000018761,0.0000018757,0.0000018697,0.0000018587, -0.0000018455,0.0000018325,0.0000018202,0.0000018093,0.0000018011, -0.0000017961,0.0000017937,0.0000017923,0.0000017912,0.0000017902, -0.0000017885,0.0000017887,0.0000017908,0.0000017925,0.0000017940, -0.0000017959,0.0000017992,0.0000018037,0.0000018092,0.0000018155, -0.0000018232,0.0000018315,0.0000018393,0.0000018448,0.0000018487, -0.0000018523,0.0000018560,0.0000018584,0.0000018600,0.0000018604, -0.0000018601,0.0000018600,0.0000018598,0.0000018587,0.0000018579, -0.0000018571,0.0000018574,0.0000018597,0.0000018646,0.0000018688, -0.0000018674,0.0000018558,0.0000018475,0.0000018476,0.0000018534, -0.0000018597,0.0000018613,0.0000018592,0.0000018564,0.0000018524, -0.0000018491,0.0000018474,0.0000018493,0.0000018562,0.0000018619, -0.0000018623,0.0000018639,0.0000018729,0.0000018861,0.0000018953, -0.0000018995,0.0000019018,0.0000019006,0.0000018963,0.0000018904, -0.0000018856,0.0000018843,0.0000018856,0.0000018868,0.0000018859, -0.0000018842,0.0000018823,0.0000018797,0.0000018788,0.0000018772, -0.0000018798,0.0000018845,0.0000018915,0.0000019004,0.0000019100, -0.0000019190,0.0000019269,0.0000019345,0.0000019441,0.0000019564, -0.0000019689,0.0000019795,0.0000019865,0.0000019893,0.0000019898, -0.0000019933,0.0000020036,0.0000020154,0.0000020210,0.0000020164, -0.0000019987,0.0000019885,0.0000019882,0.0000019879,0.0000019838, -0.0000019784,0.0000019804,0.0000019996,0.0000020231,0.0000020301, -0.0000020298,0.0000020269,0.0000020249,0.0000020261,0.0000020313, -0.0000020349,0.0000020325,0.0000020204,0.0000020049,0.0000019908, -0.0000019809,0.0000019772,0.0000019796,0.0000019931,0.0000020121, -0.0000020248,0.0000020256,0.0000020165,0.0000019824,0.0000019264, -0.0000018755,0.0000018497,0.0000018374,0.0000018211,0.0000018017, -0.0000017911,0.0000017947,0.0000018087,0.0000018280,0.0000018452, -0.0000018551,0.0000018535,0.0000018537,0.0000018495,0.0000018433, -0.0000018412,0.0000018420,0.0000018487,0.0000018588,0.0000018641, -0.0000018627,0.0000018600,0.0000018635,0.0000018727,0.0000018863, -0.0000018949,0.0000018831,0.0000018609,0.0000018522,0.0000018526, -0.0000018563,0.0000018558,0.0000018531,0.0000018508,0.0000018704, -0.0000019216,0.0000019326,0.0000018730,0.0000018237,0.0000018463, -0.0000019100,0.0000019256,0.0000018980,0.0000018538,0.0000018372, -0.0000018434,0.0000018532,0.0000018561,0.0000018631,0.0000019022, -0.0000019519,0.0000019795,0.0000019843,0.0000019793,0.0000019653, -0.0000019626,0.0000019886,0.0000020184,0.0000020261,0.0000020246, -0.0000020220,0.0000020202,0.0000020201,0.0000020209,0.0000020216, -0.0000020206,0.0000020209,0.0000020220,0.0000020226,0.0000020231, -0.0000020235,0.0000020235,0.0000020225,0.0000020202,0.0000020166, -0.0000020118,0.0000020059,0.0000019998,0.0000019929,0.0000019849, -0.0000019755,0.0000019669,0.0000019612,0.0000019563,0.0000019521, -0.0000019494,0.0000019489,0.0000019476,0.0000019484,0.0000019507, -0.0000019512,0.0000019541,0.0000019579,0.0000019579,0.0000019608, -0.0000019616,0.0000019629,0.0000019625,0.0000019604,0.0000019591, -0.0000019600,0.0000019630,0.0000019669,0.0000019689,0.0000019673, -0.0000019626,0.0000019563,0.0000019501,0.0000019457,0.0000019404, -0.0000019321,0.0000019226,0.0000019161,0.0000019161,0.0000019285, -0.0000019562,0.0000019900,0.0000020162,0.0000020282,0.0000020291, -0.0000020241,0.0000020162,0.0000020097,0.0000020070,0.0000020085, -0.0000020133,0.0000020176,0.0000020183,0.0000020156,0.0000020125, -0.0000020065,0.0000020007,0.0000019947,0.0000019896,0.0000019853, -0.0000019816,0.0000019785,0.0000019762,0.0000019734,0.0000019732, -0.0000019743,0.0000019768,0.0000019790,0.0000019798,0.0000019793, -0.0000019780,0.0000019778,0.0000019824,0.0000019958,0.0000020147, -0.0000020318,0.0000020419,0.0000020454,0.0000020473,0.0000020490, -0.0000020503,0.0000020503,0.0000020490,0.0000020466,0.0000020431, -0.0000020390,0.0000020350,0.0000020309,0.0000020257,0.0000020196, -0.0000020123,0.0000020036,0.0000019968,0.0000019913,0.0000019912, -0.0000019920,0.0000019960,0.0000019998,0.0000019990,0.0000020019, -0.0000019982,0.0000019952,0.0000019918,0.0000019916,0.0000019936, -0.0000019957,0.0000019964,0.0000019955,0.0000019973,0.0000020055, -0.0000020175,0.0000020264,0.0000020291,0.0000020276,0.0000020259, -0.0000020249,0.0000020242,0.0000020235,0.0000020229,0.0000020229, -0.0000020233,0.0000020238,0.0000020241,0.0000020241,0.0000020245, -0.0000020253,0.0000020264,0.0000020282,0.0000020295,0.0000020298, -0.0000020295,0.0000020281,0.0000020258,0.0000020235,0.0000020220, -0.0000020213,0.0000020197,0.0000020183,0.0000020173,0.0000020171, -0.0000020187,0.0000020214,0.0000020233,0.0000020238,0.0000020220, -0.0000020188,0.0000020157,0.0000020114,0.0000020078,0.0000020068, -0.0000020076,0.0000020101,0.0000020139,0.0000020182,0.0000020216, -0.0000020236,0.0000020252,0.0000020262,0.0000020278,0.0000020304, -0.0000020346,0.0000020395,0.0000020448,0.0000020495,0.0000020532, -0.0000020545,0.0000020542,0.0000020528,0.0000020496,0.0000020459, -0.0000020427,0.0000020392,0.0000020353,0.0000020318,0.0000020293, -0.0000020272,0.0000020256,0.0000020241,0.0000020215,0.0000020179, -0.0000020132,0.0000020080,0.0000020030,0.0000019982,0.0000019934, -0.0000019895,0.0000019873,0.0000019857,0.0000019840,0.0000019824, -0.0000019802,0.0000019773,0.0000019735,0.0000019691,0.0000019642, -0.0000019597,0.0000019565,0.0000019544,0.0000019543,0.0000019554, -0.0000019559,0.0000019558,0.0000019536,0.0000019499,0.0000019443, -0.0000019384,0.0000019324,0.0000019283,0.0000019282,0.0000019331, -0.0000019403,0.0000019464,0.0000019484,0.0000019449,0.0000019365, -0.0000019263,0.0000019168,0.0000019061,0.0000018945,0.0000018825, -0.0000018732,0.0000018696,0.0000018723,0.0000018779,0.0000018835, -0.0000018895,0.0000018981,0.0000019071,0.0000019141,0.0000019170, -0.0000019173,0.0000019168,0.0000019170,0.0000019184,0.0000019219, -0.0000019262,0.0000019307,0.0000019327,0.0000019302,0.0000019226, -0.0000019182,0.0000019215,0.0000019270,0.0000019296,0.0000019281, -0.0000019233,0.0000019202,0.0000019209,0.0000019244,0.0000019285, -0.0000019303,0.0000019285,0.0000019196,0.0000019039,0.0000018908, -0.0000018822,0.0000018762,0.0000018739,0.0000018762,0.0000018796, -0.0000018820,0.0000018815,0.0000018811,0.0000018835,0.0000018902, -0.0000018953,0.0000018978,0.0000018963,0.0000018920,0.0000018849, -0.0000018759,0.0000018668,0.0000018604,0.0000018580,0.0000018583, -0.0000018587,0.0000018573,0.0000018547,0.0000018532,0.0000018530, -0.0000018529,0.0000018498,0.0000018402,0.0000018273,0.0000018181, -0.0000018169,0.0000018208,0.0000018262,0.0000018301,0.0000018318, -0.0000018323,0.0000018341,0.0000018365,0.0000018375,0.0000018368, -0.0000018356,0.0000018360,0.0000018367,0.0000018360,0.0000018340, -0.0000018305,0.0000018253,0.0000018191,0.0000018145,0.0000018117, -0.0000018108,0.0000018100,0.0000018095,0.0000018101,0.0000018102, -0.0000018094,0.0000018079,0.0000018046,0.0000018009,0.0000017986, -0.0000017976,0.0000017972,0.0000017960,0.0000017939,0.0000017907, -0.0000017851,0.0000017770,0.0000017685,0.0000017618,0.0000017575, -0.0000017548,0.0000017539,0.0000017553,0.0000017587,0.0000017618, -0.0000017615,0.0000017576,0.0000017521,0.0000017471,0.0000017428, -0.0000017398,0.0000017380,0.0000017358,0.0000017346,0.0000017349, -0.0000017356,0.0000017356,0.0000017345,0.0000017322,0.0000017310, -0.0000017307,0.0000017319,0.0000017336,0.0000017339,0.0000017291, -0.0000017192,0.0000017115,0.0000017138,0.0000017255,0.0000017358, -0.0000017365,0.0000017351,0.0000017498,0.0000017912,0.0000018184, -0.0000018251,0.0000018257,0.0000018261,0.0000018216,0.0000018183, -0.0000018173,0.0000018145,0.0000018089,0.0000018044,0.0000017983, -0.0000017922,0.0000017891,0.0000017889,0.0000017844,0.0000017737, -0.0000017661,0.0000017680,0.0000017768,0.0000017855,0.0000017912, -0.0000017956,0.0000018015,0.0000018109,0.0000018222,0.0000018312, -0.0000018337,0.0000018313,0.0000018307,0.0000018362,0.0000018423, -0.0000018435,0.0000018389,0.0000018323,0.0000018274,0.0000018245, -0.0000018220,0.0000018202,0.0000018193,0.0000018188,0.0000018180, -0.0000018172,0.0000018168,0.0000018167,0.0000018166,0.0000018167, -0.0000018166,0.0000018176,0.0000018199,0.0000018220,0.0000018238, -0.0000018256,0.0000018278,0.0000018299,0.0000018316,0.0000018328, -0.0000018340,0.0000018361,0.0000018382,0.0000018406,0.0000018450, -0.0000018520,0.0000018599,0.0000018671,0.0000018727,0.0000018782, -0.0000018800,0.0000018766,0.0000018707,0.0000018670,0.0000018669, -0.0000018674,0.0000018666,0.0000018664,0.0000018691,0.0000018745, -0.0000018801,0.0000018827,0.0000018810,0.0000018766,0.0000018733, -0.0000018714,0.0000018700,0.0000018688,0.0000018674,0.0000018653, -0.0000018624,0.0000018587,0.0000018543,0.0000018477,0.0000018367, -0.0000018211,0.0000018035,0.0000017899,0.0000017850,0.0000017859, -0.0000017912,0.0000017990,0.0000018056,0.0000018060,0.0000018029, -0.0000018012,0.0000018013,0.0000017985,0.0000017892,0.0000017785, -0.0000017725,0.0000017662,0.0000017570,0.0000017499,0.0000017509, -0.0000017581,0.0000017627,0.0000017606,0.0000017605,0.0000017658, -0.0000017709,0.0000017781,0.0000017787,0.0000017831,0.0000017806, -0.0000017644,0.0000017626,0.0000017765,0.0000017812,0.0000017766, -0.0000017791,0.0000017816,0.0000017812,0.0000017807,0.0000017804, -0.0000017801,0.0000017801,0.0000017798,0.0000017786,0.0000017758, -0.0000017718,0.0000017668,0.0000017618,0.0000017581,0.0000017567, -0.0000017571,0.0000017593,0.0000017621,0.0000017648,0.0000017671, -0.0000017694,0.0000017712,0.0000017729,0.0000017751,0.0000017771, -0.0000017791,0.0000017798,0.0000017786,0.0000017762,0.0000017733, -0.0000017713,0.0000017704,0.0000017687,0.0000017654,0.0000017638, -0.0000017657,0.0000017702,0.0000017785,0.0000017854,0.0000017893, -0.0000017915,0.0000017936,0.0000017963,0.0000017992,0.0000017998, -0.0000017981,0.0000017969,0.0000017985,0.0000018011,0.0000018035, -0.0000018067,0.0000018092,0.0000018097,0.0000018104,0.0000018126, -0.0000018154,0.0000018217,0.0000018317,0.0000018419,0.0000018524, -0.0000018638,0.0000018691,0.0000018671,0.0000018626,0.0000018590, -0.0000018518,0.0000018444,0.0000018403,0.0000018289,0.0000018143, -0.0000018164,0.0000018286,0.0000018332,0.0000018320,0.0000018246, -0.0000018177,0.0000018204,0.0000018296,0.0000018373,0.0000018455, -0.0000018530,0.0000018497,0.0000018276,0.0000018007,0.0000017921, -0.0000018000,0.0000018077,0.0000018117,0.0000018224,0.0000018368, -0.0000018451,0.0000018509,0.0000018586,0.0000018617,0.0000018593, -0.0000018570,0.0000018569,0.0000018583,0.0000018619,0.0000018665, -0.0000018711,0.0000018754,0.0000018795,0.0000018837,0.0000018874, -0.0000018907,0.0000018944,0.0000018982,0.0000019001,0.0000018971, -0.0000018845,0.0000018649,0.0000018476,0.0000018361,0.0000018248, -0.0000018092,0.0000017914,0.0000017761,0.0000017648,0.0000017562, -0.0000017496,0.0000017457,0.0000017438,0.0000017441,0.0000017479, -0.0000017569,0.0000017669,0.0000017784,0.0000017981,0.0000018193, -0.0000018288,0.0000018300,0.0000018306,0.0000018247,0.0000018120, -0.0000018108,0.0000018246,0.0000018470,0.0000018571,0.0000019000, -0.0000019677,0.0000019875,0.0000020028,0.0000020034,0.0000019988, -0.0000019920,0.0000019869,0.0000019863,0.0000019866,0.0000019840, -0.0000019750,0.0000019516,0.0000019087,0.0000018677,0.0000018523, -0.0000018509,0.0000018476,0.0000018416,0.0000018360,0.0000018314, -0.0000018276,0.0000018259,0.0000018247,0.0000018239,0.0000018230, -0.0000018223,0.0000018217,0.0000018213,0.0000018211,0.0000018210, -0.0000018202,0.0000018186,0.0000018167,0.0000018152,0.0000018140, -0.0000018126,0.0000018112,0.0000018091,0.0000018067,0.0000018049, -0.0000018041,0.0000018031,0.0000018014,0.0000018001,0.0000018022, -0.0000018094,0.0000018141,0.0000018103,0.0000017981,0.0000017917, -0.0000017950,0.0000018012,0.0000018047,0.0000018073,0.0000018114, -0.0000018213,0.0000018402,0.0000018560,0.0000018613,0.0000018644, -0.0000018716,0.0000018734,0.0000018735,0.0000018899,0.0000019118, -0.0000019172,0.0000019041,0.0000018649,0.0000018239,0.0000018053, -0.0000018063,0.0000018100,0.0000018083,0.0000018044,0.0000018074, -0.0000018206,0.0000018395,0.0000018554,0.0000018602,0.0000018601, -0.0000018576,0.0000018570,0.0000018610,0.0000018678,0.0000018726, -0.0000018729,0.0000018715,0.0000018710,0.0000018728,0.0000018753, -0.0000018757,0.0000018700,0.0000018577,0.0000018425,0.0000018292, -0.0000018184,0.0000018084,0.0000017993,0.0000017928,0.0000017895, -0.0000017884,0.0000017889,0.0000017904,0.0000017922,0.0000017935, -0.0000017959,0.0000017996,0.0000018020,0.0000018031,0.0000018036, -0.0000018045,0.0000018064,0.0000018094,0.0000018141,0.0000018202, -0.0000018277,0.0000018352,0.0000018400,0.0000018432,0.0000018479, -0.0000018548,0.0000018583,0.0000018583,0.0000018546,0.0000018514, -0.0000018509,0.0000018518,0.0000018523,0.0000018529,0.0000018537, -0.0000018548,0.0000018571,0.0000018603,0.0000018611,0.0000018566, -0.0000018464,0.0000018427,0.0000018460,0.0000018567,0.0000018649, -0.0000018647,0.0000018613,0.0000018580,0.0000018558,0.0000018551, -0.0000018553,0.0000018579,0.0000018623,0.0000018668,0.0000018678, -0.0000018681,0.0000018741,0.0000018871,0.0000018975,0.0000019032, -0.0000019080,0.0000019104,0.0000019096,0.0000019041,0.0000018977, -0.0000018954,0.0000018967,0.0000018983,0.0000018978,0.0000018957, -0.0000018921,0.0000018873,0.0000018825,0.0000018797,0.0000018801, -0.0000018839,0.0000018887,0.0000018961,0.0000019054,0.0000019151, -0.0000019230,0.0000019296,0.0000019383,0.0000019507,0.0000019649, -0.0000019781,0.0000019860,0.0000019874,0.0000019901,0.0000020005, -0.0000020147,0.0000020220,0.0000020181,0.0000020010,0.0000019912, -0.0000019909,0.0000019906,0.0000019860,0.0000019795,0.0000019815, -0.0000020009,0.0000020229,0.0000020285,0.0000020279,0.0000020252, -0.0000020245,0.0000020282,0.0000020337,0.0000020339,0.0000020256, -0.0000020112,0.0000019965,0.0000019851,0.0000019784,0.0000019775, -0.0000019863,0.0000020038,0.0000020194,0.0000020248,0.0000020225, -0.0000019976,0.0000019458,0.0000018898,0.0000018562,0.0000018405, -0.0000018233,0.0000018030,0.0000017942,0.0000017998,0.0000018186, -0.0000018387,0.0000018536,0.0000018612,0.0000018578,0.0000018464, -0.0000018337,0.0000018196,0.0000018071,0.0000018024,0.0000018091, -0.0000018271,0.0000018452,0.0000018539,0.0000018547,0.0000018568, -0.0000018658,0.0000018781,0.0000018831,0.0000018783,0.0000018633, -0.0000018511,0.0000018508,0.0000018568,0.0000018626,0.0000018644, -0.0000018609,0.0000018578,0.0000018696,0.0000019112,0.0000019306, -0.0000018806,0.0000018294,0.0000018348,0.0000019009,0.0000019267, -0.0000019124,0.0000018646,0.0000018338,0.0000018362,0.0000018477, -0.0000018507,0.0000018500,0.0000018675,0.0000019175,0.0000019623, -0.0000019807,0.0000019807,0.0000019681,0.0000019577,0.0000019777, -0.0000020130,0.0000020264,0.0000020261,0.0000020241,0.0000020223, -0.0000020216,0.0000020189,0.0000020130,0.0000020064,0.0000020016, -0.0000019972,0.0000019933,0.0000019908,0.0000019897,0.0000019889, -0.0000019878,0.0000019854,0.0000019813,0.0000019755,0.0000019688, -0.0000019622,0.0000019537,0.0000019474,0.0000019450,0.0000019418, -0.0000019429,0.0000019451,0.0000019483,0.0000019525,0.0000019572, -0.0000019559,0.0000019571,0.0000019584,0.0000019558,0.0000019522, -0.0000019482,0.0000019429,0.0000019379,0.0000019336,0.0000019290, -0.0000019242,0.0000019208,0.0000019224,0.0000019317,0.0000019476, -0.0000019614,0.0000019667,0.0000019645,0.0000019564,0.0000019465, -0.0000019389,0.0000019328,0.0000019256,0.0000019166,0.0000019088, -0.0000019058,0.0000019087,0.0000019216,0.0000019433,0.0000019677, -0.0000019884,0.0000020024,0.0000020102,0.0000020130,0.0000020112, -0.0000020064,0.0000020014,0.0000019983,0.0000019979,0.0000020009, -0.0000020063,0.0000020131,0.0000020185,0.0000020204,0.0000020200, -0.0000020149,0.0000020084,0.0000020007,0.0000019915,0.0000019821, -0.0000019754,0.0000019723,0.0000019722,0.0000019745,0.0000019777, -0.0000019799,0.0000019803,0.0000019803,0.0000019821,0.0000019900, -0.0000020055,0.0000020239,0.0000020367,0.0000020407,0.0000020420, -0.0000020430,0.0000020445,0.0000020456,0.0000020457,0.0000020447, -0.0000020425,0.0000020393,0.0000020350,0.0000020291,0.0000020216, -0.0000020121,0.0000020016,0.0000019933,0.0000019886,0.0000019883, -0.0000019923,0.0000019956,0.0000020009,0.0000020016,0.0000019981, -0.0000019878,0.0000019744,0.0000019637,0.0000019582,0.0000019633, -0.0000019759,0.0000019887,0.0000019963,0.0000019986,0.0000020001, -0.0000020059,0.0000020161,0.0000020252,0.0000020280,0.0000020266, -0.0000020232,0.0000020210,0.0000020201,0.0000020196,0.0000020194, -0.0000020192,0.0000020191,0.0000020193,0.0000020198,0.0000020198, -0.0000020198,0.0000020204,0.0000020222,0.0000020243,0.0000020264, -0.0000020280,0.0000020285,0.0000020283,0.0000020272,0.0000020248, -0.0000020221,0.0000020200,0.0000020182,0.0000020165,0.0000020147, -0.0000020132,0.0000020124,0.0000020127,0.0000020147,0.0000020170, -0.0000020181,0.0000020184,0.0000020178,0.0000020170,0.0000020156, -0.0000020147,0.0000020152,0.0000020171,0.0000020200,0.0000020232, -0.0000020258,0.0000020280,0.0000020300,0.0000020313,0.0000020321, -0.0000020336,0.0000020370,0.0000020422,0.0000020476,0.0000020533, -0.0000020587,0.0000020622,0.0000020630,0.0000020617,0.0000020595, -0.0000020568,0.0000020537,0.0000020503,0.0000020466,0.0000020424, -0.0000020379,0.0000020342,0.0000020310,0.0000020280,0.0000020254, -0.0000020233,0.0000020200,0.0000020163,0.0000020124,0.0000020085, -0.0000020053,0.0000020024,0.0000019997,0.0000019976,0.0000019956, -0.0000019928,0.0000019895,0.0000019861,0.0000019829,0.0000019802, -0.0000019773,0.0000019736,0.0000019698,0.0000019670,0.0000019657, -0.0000019657,0.0000019687,0.0000019717,0.0000019736,0.0000019736, -0.0000019711,0.0000019668,0.0000019603,0.0000019530,0.0000019452, -0.0000019395,0.0000019385,0.0000019419,0.0000019477,0.0000019529, -0.0000019543,0.0000019510,0.0000019437,0.0000019346,0.0000019244, -0.0000019117,0.0000018995,0.0000018876,0.0000018794,0.0000018780, -0.0000018816,0.0000018865,0.0000018902,0.0000018944,0.0000019018, -0.0000019103,0.0000019174,0.0000019207,0.0000019206,0.0000019190, -0.0000019174,0.0000019181,0.0000019212,0.0000019255,0.0000019304, -0.0000019329,0.0000019302,0.0000019239,0.0000019218,0.0000019245, -0.0000019285,0.0000019298,0.0000019266,0.0000019211,0.0000019185, -0.0000019195,0.0000019230,0.0000019274,0.0000019300,0.0000019291, -0.0000019209,0.0000019076,0.0000018950,0.0000018858,0.0000018795, -0.0000018764,0.0000018774,0.0000018800,0.0000018816,0.0000018806, -0.0000018804,0.0000018848,0.0000018918,0.0000018966,0.0000018989, -0.0000018991,0.0000018961,0.0000018905,0.0000018821,0.0000018732, -0.0000018663,0.0000018628,0.0000018618,0.0000018604,0.0000018573, -0.0000018540,0.0000018525,0.0000018523,0.0000018514,0.0000018468, -0.0000018370,0.0000018256,0.0000018197,0.0000018206,0.0000018251, -0.0000018292,0.0000018326,0.0000018350,0.0000018374,0.0000018409, -0.0000018428,0.0000018429,0.0000018414,0.0000018415,0.0000018436, -0.0000018443,0.0000018425,0.0000018391,0.0000018346,0.0000018290, -0.0000018232,0.0000018187,0.0000018152,0.0000018124,0.0000018104, -0.0000018098,0.0000018096,0.0000018085,0.0000018065,0.0000018037, -0.0000018022,0.0000018023,0.0000018038,0.0000018069,0.0000018079, -0.0000018077,0.0000018055,0.0000018003,0.0000017929,0.0000017850, -0.0000017783,0.0000017733,0.0000017698,0.0000017678,0.0000017678, -0.0000017702,0.0000017739,0.0000017748,0.0000017707,0.0000017631, -0.0000017555,0.0000017484,0.0000017422,0.0000017377,0.0000017355, -0.0000017349,0.0000017352,0.0000017359,0.0000017364,0.0000017360, -0.0000017341,0.0000017312,0.0000017287,0.0000017282,0.0000017308, -0.0000017340,0.0000017343,0.0000017287,0.0000017183,0.0000017120, -0.0000017156,0.0000017258,0.0000017318,0.0000017295,0.0000017370, -0.0000017698,0.0000018094,0.0000018235,0.0000018256,0.0000018253, -0.0000018203,0.0000018165,0.0000018157,0.0000018091,0.0000018037, -0.0000017972,0.0000017893,0.0000017856,0.0000017855,0.0000017807, -0.0000017700,0.0000017641,0.0000017668,0.0000017744,0.0000017834, -0.0000017923,0.0000017997,0.0000018060,0.0000018139,0.0000018229, -0.0000018291,0.0000018298,0.0000018273,0.0000018276,0.0000018330, -0.0000018388,0.0000018380,0.0000018301,0.0000018194,0.0000018102, -0.0000018040,0.0000017999,0.0000017974,0.0000017969,0.0000017977, -0.0000017990,0.0000017997,0.0000017996,0.0000017994,0.0000017988, -0.0000017981,0.0000017971,0.0000017962,0.0000017963,0.0000017969, -0.0000017971,0.0000017973,0.0000017982,0.0000017997,0.0000018008, -0.0000018015,0.0000018028,0.0000018058,0.0000018099,0.0000018132, -0.0000018171,0.0000018230,0.0000018313,0.0000018419,0.0000018543, -0.0000018671,0.0000018781,0.0000018829,0.0000018843,0.0000018792, -0.0000018747,0.0000018733,0.0000018735,0.0000018730,0.0000018726, -0.0000018752,0.0000018803,0.0000018851,0.0000018860,0.0000018832, -0.0000018794,0.0000018773,0.0000018771,0.0000018766,0.0000018741, -0.0000018702,0.0000018664,0.0000018635,0.0000018615,0.0000018575, -0.0000018466,0.0000018281,0.0000018067,0.0000017864,0.0000017736, -0.0000017707,0.0000017734,0.0000017799,0.0000017897,0.0000018001, -0.0000018051,0.0000018070,0.0000018044,0.0000018003,0.0000017964, -0.0000017888,0.0000017777,0.0000017693,0.0000017621,0.0000017543, -0.0000017505,0.0000017533,0.0000017603,0.0000017603,0.0000017570, -0.0000017597,0.0000017672,0.0000017741,0.0000017785,0.0000017792, -0.0000017845,0.0000017732,0.0000017628,0.0000017700,0.0000017807, -0.0000017773,0.0000017782,0.0000017814,0.0000017812,0.0000017796, -0.0000017776,0.0000017757,0.0000017756,0.0000017765,0.0000017770, -0.0000017770,0.0000017750,0.0000017725,0.0000017701,0.0000017682, -0.0000017686,0.0000017706,0.0000017735,0.0000017766,0.0000017782, -0.0000017784,0.0000017784,0.0000017776,0.0000017762,0.0000017757, -0.0000017760,0.0000017768,0.0000017779,0.0000017784,0.0000017772, -0.0000017736,0.0000017711,0.0000017704,0.0000017712,0.0000017699, -0.0000017673,0.0000017660,0.0000017680,0.0000017744,0.0000017821, -0.0000017875,0.0000017911,0.0000017943,0.0000017972,0.0000017998, -0.0000018005,0.0000017992,0.0000017967,0.0000017963,0.0000017981, -0.0000018007,0.0000018040,0.0000018088,0.0000018110,0.0000018107, -0.0000018122,0.0000018141,0.0000018172,0.0000018258,0.0000018378, -0.0000018481,0.0000018588,0.0000018691,0.0000018712,0.0000018661, -0.0000018615,0.0000018566,0.0000018482,0.0000018431,0.0000018384, -0.0000018233,0.0000018130,0.0000018203,0.0000018316,0.0000018331, -0.0000018285,0.0000018202,0.0000018169,0.0000018226,0.0000018325, -0.0000018433,0.0000018525,0.0000018495,0.0000018266,0.0000018012, -0.0000017954,0.0000018031,0.0000018092,0.0000018145,0.0000018272, -0.0000018400,0.0000018476,0.0000018553,0.0000018617,0.0000018617, -0.0000018588,0.0000018574,0.0000018582,0.0000018605,0.0000018642, -0.0000018684,0.0000018724,0.0000018765,0.0000018809,0.0000018851, -0.0000018886,0.0000018918,0.0000018955,0.0000018993,0.0000019016, -0.0000019009,0.0000018925,0.0000018757,0.0000018582,0.0000018457, -0.0000018331,0.0000018148,0.0000017940,0.0000017779,0.0000017684, -0.0000017615,0.0000017541,0.0000017468,0.0000017420,0.0000017399, -0.0000017419,0.0000017505,0.0000017627,0.0000017720,0.0000017836, -0.0000018055,0.0000018241,0.0000018289,0.0000018295,0.0000018248, -0.0000018115,0.0000018116,0.0000018283,0.0000018498,0.0000018627, -0.0000019133,0.0000019721,0.0000019871,0.0000020007,0.0000020016, -0.0000019970,0.0000019931,0.0000019908,0.0000019878,0.0000019811, -0.0000019693,0.0000019397,0.0000018924,0.0000018588,0.0000018531, -0.0000018515,0.0000018466,0.0000018399,0.0000018349,0.0000018317, -0.0000018296,0.0000018289,0.0000018280,0.0000018258,0.0000018232, -0.0000018209,0.0000018198,0.0000018194,0.0000018195,0.0000018197, -0.0000018200,0.0000018198,0.0000018198,0.0000018200,0.0000018201, -0.0000018200,0.0000018199,0.0000018193,0.0000018177,0.0000018151, -0.0000018130,0.0000018114,0.0000018098,0.0000018085,0.0000018089, -0.0000018140,0.0000018193,0.0000018180,0.0000018056,0.0000017931, -0.0000017926,0.0000017970,0.0000018008,0.0000018045,0.0000018101, -0.0000018204,0.0000018387,0.0000018573,0.0000018648,0.0000018672, -0.0000018722,0.0000018736,0.0000018829,0.0000019074,0.0000019168, -0.0000019041,0.0000018611,0.0000018182,0.0000017993,0.0000018002, -0.0000018030,0.0000018018,0.0000017999,0.0000018039,0.0000018178, -0.0000018373,0.0000018534,0.0000018589,0.0000018571,0.0000018535, -0.0000018525,0.0000018565,0.0000018648,0.0000018726,0.0000018755, -0.0000018741,0.0000018724,0.0000018730,0.0000018750,0.0000018766, -0.0000018746,0.0000018642,0.0000018471,0.0000018296,0.0000018164, -0.0000018066,0.0000017984,0.0000017914,0.0000017869,0.0000017852, -0.0000017853,0.0000017876,0.0000017917,0.0000017961,0.0000017998, -0.0000018033,0.0000018075,0.0000018103,0.0000018114,0.0000018113, -0.0000018106,0.0000018103,0.0000018113,0.0000018141,0.0000018188, -0.0000018250,0.0000018312,0.0000018358,0.0000018386,0.0000018438, -0.0000018529,0.0000018576,0.0000018542,0.0000018413,0.0000018311, -0.0000018290,0.0000018310,0.0000018330,0.0000018341,0.0000018353, -0.0000018379,0.0000018414,0.0000018445,0.0000018446,0.0000018412, -0.0000018365,0.0000018376,0.0000018457,0.0000018592,0.0000018653, -0.0000018635,0.0000018591,0.0000018551,0.0000018536,0.0000018536, -0.0000018554,0.0000018587,0.0000018635,0.0000018673,0.0000018700, -0.0000018713,0.0000018762,0.0000018888,0.0000018995,0.0000019044, -0.0000019089,0.0000019133,0.0000019163,0.0000019140,0.0000019092, -0.0000019069,0.0000019083,0.0000019120,0.0000019152,0.0000019165, -0.0000019142,0.0000019080,0.0000019002,0.0000018931,0.0000018887, -0.0000018874,0.0000018892,0.0000018936,0.0000019006,0.0000019099, -0.0000019184,0.0000019262,0.0000019351,0.0000019474,0.0000019632, -0.0000019780,0.0000019850,0.0000019880,0.0000019980,0.0000020139, -0.0000020233,0.0000020196,0.0000020035,0.0000019945,0.0000019943, -0.0000019936,0.0000019883,0.0000019813,0.0000019833,0.0000020020, -0.0000020219,0.0000020266,0.0000020255,0.0000020235,0.0000020243, -0.0000020300,0.0000020339,0.0000020299,0.0000020170,0.0000020021, -0.0000019895,0.0000019809,0.0000019777,0.0000019809,0.0000019956, -0.0000020138,0.0000020231,0.0000020242,0.0000020100,0.0000019666, -0.0000019078,0.0000018643,0.0000018436,0.0000018273,0.0000018077, -0.0000017994,0.0000018053,0.0000018256,0.0000018467,0.0000018599, -0.0000018623,0.0000018577,0.0000018420,0.0000018213,0.0000018030, -0.0000017868,0.0000017720,0.0000017654,0.0000017765,0.0000018095, -0.0000018366,0.0000018476,0.0000018516,0.0000018590,0.0000018701, -0.0000018775,0.0000018735,0.0000018616,0.0000018500,0.0000018454, -0.0000018477,0.0000018545,0.0000018623,0.0000018686,0.0000018700, -0.0000018710,0.0000018864,0.0000019098,0.0000019129,0.0000018666, -0.0000018305,0.0000018415,0.0000019002,0.0000019250,0.0000019081, -0.0000018708,0.0000018312,0.0000018310,0.0000018444,0.0000018483, -0.0000018456,0.0000018508,0.0000018896,0.0000019445,0.0000019750, -0.0000019791,0.0000019702,0.0000019563,0.0000019689,0.0000020017, -0.0000020193,0.0000020220,0.0000020195,0.0000020141,0.0000020061, -0.0000019944,0.0000019819,0.0000019733,0.0000019681,0.0000019632, -0.0000019599,0.0000019584,0.0000019571,0.0000019555,0.0000019536, -0.0000019528,0.0000019516,0.0000019490,0.0000019475,0.0000019481, -0.0000019478,0.0000019506,0.0000019543,0.0000019599,0.0000019600, -0.0000019611,0.0000019610,0.0000019564,0.0000019500,0.0000019402, -0.0000019305,0.0000019204,0.0000019098,0.0000018994,0.0000018920, -0.0000018893,0.0000018881,0.0000018861,0.0000018837,0.0000018807, -0.0000018856,0.0000018959,0.0000019191,0.0000019435,0.0000019574, -0.0000019576,0.0000019512,0.0000019411,0.0000019332,0.0000019285, -0.0000019233,0.0000019156,0.0000019083,0.0000019040,0.0000019030, -0.0000019040,0.0000019089,0.0000019161,0.0000019246,0.0000019355, -0.0000019486,0.0000019628,0.0000019772,0.0000019892,0.0000019964, -0.0000019987,0.0000019970,0.0000019941,0.0000019929,0.0000019939, -0.0000019997,0.0000020100,0.0000020192,0.0000020234,0.0000020225, -0.0000020168,0.0000020059,0.0000019913,0.0000019781,0.0000019707, -0.0000019697,0.0000019720,0.0000019764,0.0000019797,0.0000019809, -0.0000019812,0.0000019837,0.0000019925,0.0000020078,0.0000020219, -0.0000020323,0.0000020365,0.0000020376,0.0000020385,0.0000020396, -0.0000020402,0.0000020397,0.0000020374,0.0000020334,0.0000020278, -0.0000020203,0.0000020114,0.0000020026,0.0000019940,0.0000019881, -0.0000019866,0.0000019899,0.0000019952,0.0000019963,0.0000019981, -0.0000019902,0.0000019777,0.0000019619,0.0000019435,0.0000019282, -0.0000019205,0.0000019233,0.0000019396,0.0000019659,0.0000019863, -0.0000019964,0.0000019996,0.0000020042,0.0000020131,0.0000020230, -0.0000020264,0.0000020262,0.0000020223,0.0000020183,0.0000020157, -0.0000020142,0.0000020136,0.0000020137,0.0000020142,0.0000020146, -0.0000020149,0.0000020153,0.0000020157,0.0000020159,0.0000020167, -0.0000020186,0.0000020212,0.0000020237,0.0000020256,0.0000020270, -0.0000020280,0.0000020282,0.0000020277,0.0000020264,0.0000020252, -0.0000020241,0.0000020226,0.0000020209,0.0000020191,0.0000020178, -0.0000020172,0.0000020172,0.0000020174,0.0000020170,0.0000020164, -0.0000020161,0.0000020163,0.0000020170,0.0000020183,0.0000020207, -0.0000020238,0.0000020271,0.0000020302,0.0000020330,0.0000020347, -0.0000020352,0.0000020352,0.0000020352,0.0000020363,0.0000020392, -0.0000020438,0.0000020492,0.0000020545,0.0000020596,0.0000020632, -0.0000020642,0.0000020632,0.0000020611,0.0000020585,0.0000020558, -0.0000020530,0.0000020507,0.0000020485,0.0000020465,0.0000020444, -0.0000020419,0.0000020388,0.0000020347,0.0000020309,0.0000020269, -0.0000020222,0.0000020182,0.0000020145,0.0000020117,0.0000020096, -0.0000020080,0.0000020070,0.0000020058,0.0000020035,0.0000019998, -0.0000019946,0.0000019892,0.0000019848,0.0000019815,0.0000019789, -0.0000019773,0.0000019770,0.0000019778,0.0000019791,0.0000019808, -0.0000019845,0.0000019865,0.0000019877,0.0000019865,0.0000019840, -0.0000019805,0.0000019750,0.0000019685,0.0000019613,0.0000019559, -0.0000019538,0.0000019546,0.0000019576,0.0000019594,0.0000019584, -0.0000019549,0.0000019488,0.0000019400,0.0000019288,0.0000019161, -0.0000019046,0.0000018940,0.0000018891,0.0000018898,0.0000018931, -0.0000018960,0.0000018972,0.0000019005,0.0000019070,0.0000019152, -0.0000019228,0.0000019261,0.0000019253,0.0000019221,0.0000019189, -0.0000019191,0.0000019225,0.0000019268,0.0000019327,0.0000019351, -0.0000019325,0.0000019280,0.0000019270,0.0000019283,0.0000019304, -0.0000019299,0.0000019249,0.0000019197,0.0000019183,0.0000019191, -0.0000019222,0.0000019266,0.0000019296,0.0000019294,0.0000019226, -0.0000019111,0.0000018996,0.0000018915,0.0000018846,0.0000018799, -0.0000018793,0.0000018815,0.0000018814,0.0000018810,0.0000018823, -0.0000018865,0.0000018914,0.0000018958,0.0000018985,0.0000018989, -0.0000018981,0.0000018942,0.0000018873,0.0000018793,0.0000018722, -0.0000018675,0.0000018646,0.0000018610,0.0000018565,0.0000018530, -0.0000018516,0.0000018512,0.0000018489,0.0000018430,0.0000018337, -0.0000018256,0.0000018238,0.0000018261,0.0000018298,0.0000018338, -0.0000018375,0.0000018409,0.0000018447,0.0000018473,0.0000018479, -0.0000018462,0.0000018448,0.0000018465,0.0000018488,0.0000018483, -0.0000018452,0.0000018406,0.0000018358,0.0000018313,0.0000018271, -0.0000018237,0.0000018200,0.0000018169,0.0000018147,0.0000018127, -0.0000018100,0.0000018061,0.0000018025,0.0000017996,0.0000017991, -0.0000018012,0.0000018046,0.0000018086,0.0000018118,0.0000018121, -0.0000018101,0.0000018048,0.0000017988,0.0000017932,0.0000017888, -0.0000017853,0.0000017830,0.0000017824,0.0000017840,0.0000017877, -0.0000017902,0.0000017885,0.0000017814,0.0000017718,0.0000017620, -0.0000017522,0.0000017435,0.0000017382,0.0000017359,0.0000017357, -0.0000017368,0.0000017384,0.0000017392,0.0000017385,0.0000017357, -0.0000017302,0.0000017266,0.0000017274,0.0000017311,0.0000017342, -0.0000017337,0.0000017272,0.0000017181,0.0000017136,0.0000017167, -0.0000017249,0.0000017269,0.0000017285,0.0000017472,0.0000017915, -0.0000018181,0.0000018252,0.0000018251,0.0000018201,0.0000018158, -0.0000018139,0.0000018057,0.0000017991,0.0000017895,0.0000017833, -0.0000017828,0.0000017792,0.0000017673,0.0000017615,0.0000017646, -0.0000017713,0.0000017801,0.0000017921,0.0000018047,0.0000018140, -0.0000018200,0.0000018244,0.0000018264,0.0000018257,0.0000018242, -0.0000018253,0.0000018291,0.0000018305,0.0000018246,0.0000018122, -0.0000017977,0.0000017861,0.0000017794,0.0000017764,0.0000017753, -0.0000017753,0.0000017762,0.0000017776,0.0000017783,0.0000017780, -0.0000017774,0.0000017768,0.0000017763,0.0000017759,0.0000017751, -0.0000017745,0.0000017749,0.0000017756,0.0000017757,0.0000017759, -0.0000017766,0.0000017774,0.0000017773,0.0000017772,0.0000017784, -0.0000017817,0.0000017858,0.0000017895,0.0000017936,0.0000017990, -0.0000018058,0.0000018155,0.0000018291,0.0000018458,0.0000018633, -0.0000018780,0.0000018853,0.0000018861,0.0000018830,0.0000018805, -0.0000018790,0.0000018784,0.0000018785,0.0000018812,0.0000018855, -0.0000018883,0.0000018879,0.0000018855,0.0000018834,0.0000018829, -0.0000018830,0.0000018812,0.0000018766,0.0000018712,0.0000018669, -0.0000018651,0.0000018642,0.0000018567,0.0000018387,0.0000018143, -0.0000017892,0.0000017689,0.0000017570,0.0000017555,0.0000017589, -0.0000017662,0.0000017788,0.0000017936,0.0000018047,0.0000018064, -0.0000018046,0.0000018007,0.0000017959,0.0000017884,0.0000017766, -0.0000017660,0.0000017590,0.0000017536,0.0000017510,0.0000017557, -0.0000017593,0.0000017558,0.0000017538,0.0000017603,0.0000017688, -0.0000017760,0.0000017780,0.0000017823,0.0000017821,0.0000017675, -0.0000017653,0.0000017771,0.0000017776,0.0000017768,0.0000017802, -0.0000017810,0.0000017797,0.0000017772,0.0000017746,0.0000017735, -0.0000017731,0.0000017734,0.0000017736,0.0000017725,0.0000017705, -0.0000017685,0.0000017678,0.0000017694,0.0000017725,0.0000017770, -0.0000017819,0.0000017858,0.0000017880,0.0000017896,0.0000017902, -0.0000017882,0.0000017843,0.0000017807,0.0000017775,0.0000017759, -0.0000017757,0.0000017760,0.0000017742,0.0000017710,0.0000017702, -0.0000017716,0.0000017727,0.0000017715,0.0000017689,0.0000017677, -0.0000017709,0.0000017778,0.0000017840,0.0000017882,0.0000017924, -0.0000017963,0.0000017990,0.0000018002,0.0000017998,0.0000017970, -0.0000017947,0.0000017950,0.0000017974,0.0000018004,0.0000018064, -0.0000018115,0.0000018116,0.0000018116,0.0000018137,0.0000018154, -0.0000018205,0.0000018321,0.0000018440,0.0000018538,0.0000018655, -0.0000018724,0.0000018706,0.0000018645,0.0000018604,0.0000018535, -0.0000018455,0.0000018425,0.0000018348,0.0000018180,0.0000018134, -0.0000018256,0.0000018326,0.0000018311,0.0000018242,0.0000018166, -0.0000018175,0.0000018271,0.0000018402,0.0000018507,0.0000018484, -0.0000018265,0.0000018024,0.0000017977,0.0000018046,0.0000018097, -0.0000018162,0.0000018295,0.0000018408,0.0000018485,0.0000018573, -0.0000018627,0.0000018615,0.0000018589,0.0000018586,0.0000018608, -0.0000018644,0.0000018684,0.0000018720,0.0000018752,0.0000018789, -0.0000018828,0.0000018862,0.0000018888,0.0000018913,0.0000018941, -0.0000018975,0.0000019007,0.0000019017,0.0000018982,0.0000018851, -0.0000018674,0.0000018531,0.0000018392,0.0000018193,0.0000017971, -0.0000017810,0.0000017728,0.0000017664,0.0000017578,0.0000017481, -0.0000017411,0.0000017391,0.0000017402,0.0000017479,0.0000017605, -0.0000017713,0.0000017782,0.0000017937,0.0000018167,0.0000018267, -0.0000018281,0.0000018238,0.0000018113,0.0000018123,0.0000018323, -0.0000018523,0.0000018681,0.0000019230,0.0000019732,0.0000019844, -0.0000019962,0.0000019989,0.0000019960,0.0000019913,0.0000019849, -0.0000019775,0.0000019636,0.0000019282,0.0000018808,0.0000018558, -0.0000018542,0.0000018524,0.0000018466,0.0000018409,0.0000018375, -0.0000018347,0.0000018333,0.0000018326,0.0000018301,0.0000018261, -0.0000018216,0.0000018188,0.0000018177,0.0000018176,0.0000018184, -0.0000018197,0.0000018215,0.0000018232,0.0000018248,0.0000018261, -0.0000018267,0.0000018267,0.0000018263,0.0000018257,0.0000018254, -0.0000018237,0.0000018215,0.0000018193,0.0000018178,0.0000018170, -0.0000018170,0.0000018183,0.0000018205,0.0000018200,0.0000018094, -0.0000017941,0.0000017905,0.0000017924,0.0000017952,0.0000018002, -0.0000018084,0.0000018202,0.0000018386,0.0000018593,0.0000018686, -0.0000018700,0.0000018726,0.0000018778,0.0000018988,0.0000019166, -0.0000019064,0.0000018602,0.0000018137,0.0000017955,0.0000017970, -0.0000017986,0.0000017982,0.0000017972,0.0000018000,0.0000018124, -0.0000018318,0.0000018482,0.0000018547,0.0000018532,0.0000018486, -0.0000018464,0.0000018485,0.0000018566,0.0000018670,0.0000018733, -0.0000018749,0.0000018735,0.0000018722,0.0000018730,0.0000018746, -0.0000018756,0.0000018735,0.0000018634,0.0000018453,0.0000018268, -0.0000018106,0.0000017999,0.0000017922,0.0000017867,0.0000017837, -0.0000017828,0.0000017832,0.0000017863,0.0000017917,0.0000017975, -0.0000018023,0.0000018064,0.0000018106,0.0000018140,0.0000018161, -0.0000018169,0.0000018168,0.0000018166,0.0000018170,0.0000018190, -0.0000018222,0.0000018264,0.0000018310,0.0000018346,0.0000018369, -0.0000018415,0.0000018507,0.0000018573,0.0000018539,0.0000018365, -0.0000018218,0.0000018188,0.0000018225,0.0000018247,0.0000018251, -0.0000018245,0.0000018256,0.0000018278,0.0000018306,0.0000018320, -0.0000018328,0.0000018333,0.0000018379,0.0000018487,0.0000018604, -0.0000018627,0.0000018595,0.0000018564,0.0000018560,0.0000018585, -0.0000018588,0.0000018586,0.0000018596,0.0000018631,0.0000018670, -0.0000018704,0.0000018727,0.0000018787,0.0000018911,0.0000019014, -0.0000019050,0.0000019085,0.0000019138,0.0000019180,0.0000019191, -0.0000019168,0.0000019144,0.0000019157,0.0000019234,0.0000019346, -0.0000019425,0.0000019426,0.0000019361,0.0000019268,0.0000019165, -0.0000019067,0.0000018988,0.0000018940,0.0000018940,0.0000018976, -0.0000019051,0.0000019152,0.0000019245,0.0000019340,0.0000019475, -0.0000019655,0.0000019801,0.0000019872,0.0000019968,0.0000020132, -0.0000020249,0.0000020214,0.0000020059,0.0000019977,0.0000019978, -0.0000019969,0.0000019905,0.0000019827,0.0000019856,0.0000020039, -0.0000020207,0.0000020243,0.0000020229,0.0000020216,0.0000020247, -0.0000020309,0.0000020321,0.0000020232,0.0000020080,0.0000019941, -0.0000019837,0.0000019773,0.0000019778,0.0000019874,0.0000020063, -0.0000020223,0.0000020270,0.0000020193,0.0000019870,0.0000019296, -0.0000018759,0.0000018471,0.0000018301,0.0000018114,0.0000018020, -0.0000018092,0.0000018303,0.0000018505,0.0000018619,0.0000018632, -0.0000018563,0.0000018383,0.0000018167,0.0000018009,0.0000017880, -0.0000017762,0.0000017597,0.0000017495,0.0000017588,0.0000017967, -0.0000018318,0.0000018468,0.0000018539,0.0000018635,0.0000018697, -0.0000018682,0.0000018585,0.0000018473,0.0000018396,0.0000018379, -0.0000018427,0.0000018525,0.0000018648,0.0000018748,0.0000018812, -0.0000018885,0.0000018980,0.0000019052,0.0000018828,0.0000018450, -0.0000018338,0.0000018618,0.0000019084,0.0000019190,0.0000018936, -0.0000018635,0.0000018301,0.0000018272,0.0000018415,0.0000018486, -0.0000018438,0.0000018458,0.0000018743,0.0000019306,0.0000019697, -0.0000019762,0.0000019699,0.0000019582,0.0000019636,0.0000019840, -0.0000019982,0.0000020004,0.0000019948,0.0000019844,0.0000019721, -0.0000019602,0.0000019551,0.0000019553,0.0000019564,0.0000019555, -0.0000019551,0.0000019550,0.0000019545,0.0000019541,0.0000019545, -0.0000019565,0.0000019601,0.0000019644,0.0000019684,0.0000019728, -0.0000019705,0.0000019723,0.0000019674,0.0000019614,0.0000019502, -0.0000019378,0.0000019225,0.0000019051,0.0000018888,0.0000018769, -0.0000018698,0.0000018642,0.0000018603,0.0000018578,0.0000018629, -0.0000018671,0.0000018709,0.0000018727,0.0000018737,0.0000018785, -0.0000018925,0.0000019165,0.0000019418,0.0000019542,0.0000019551, -0.0000019485,0.0000019428,0.0000019371,0.0000019345,0.0000019324, -0.0000019291,0.0000019248,0.0000019211,0.0000019185,0.0000019155, -0.0000019118,0.0000019071,0.0000019018,0.0000018969,0.0000018965, -0.0000019005,0.0000019105,0.0000019286,0.0000019526,0.0000019760, -0.0000019921,0.0000019987,0.0000019983,0.0000019957,0.0000019944, -0.0000019968,0.0000020033,0.0000020113,0.0000020156,0.0000020145, -0.0000020064,0.0000019918,0.0000019768,0.0000019690,0.0000019678, -0.0000019713,0.0000019764,0.0000019801,0.0000019815,0.0000019820, -0.0000019839,0.0000019893,0.0000019986,0.0000020094,0.0000020186, -0.0000020252,0.0000020289,0.0000020304,0.0000020303,0.0000020289, -0.0000020256,0.0000020199,0.0000020124,0.0000020050,0.0000019978, -0.0000019912,0.0000019905,0.0000019895,0.0000019907,0.0000019943, -0.0000019945,0.0000019943,0.0000019849,0.0000019703,0.0000019515, -0.0000019326,0.0000019177,0.0000019047,0.0000019083,0.0000019124, -0.0000019294,0.0000019511,0.0000019754,0.0000019908,0.0000019971, -0.0000020010,0.0000020083,0.0000020177,0.0000020227,0.0000020244, -0.0000020205,0.0000020155,0.0000020118,0.0000020095,0.0000020080, -0.0000020074,0.0000020077,0.0000020086,0.0000020096,0.0000020102, -0.0000020105,0.0000020110,0.0000020115,0.0000020120,0.0000020125, -0.0000020135,0.0000020147,0.0000020161,0.0000020182,0.0000020211, -0.0000020246,0.0000020275,0.0000020292,0.0000020307,0.0000020308, -0.0000020301,0.0000020281,0.0000020257,0.0000020235,0.0000020222, -0.0000020213,0.0000020205,0.0000020189,0.0000020172,0.0000020157, -0.0000020149,0.0000020154,0.0000020171,0.0000020202,0.0000020240, -0.0000020279,0.0000020313,0.0000020332,0.0000020339,0.0000020344, -0.0000020347,0.0000020351,0.0000020370,0.0000020410,0.0000020460, -0.0000020507,0.0000020546,0.0000020580,0.0000020601,0.0000020599, -0.0000020572,0.0000020527,0.0000020485,0.0000020464,0.0000020454, -0.0000020451,0.0000020461,0.0000020485,0.0000020521,0.0000020549, -0.0000020553,0.0000020532,0.0000020504,0.0000020459,0.0000020399, -0.0000020341,0.0000020287,0.0000020244,0.0000020210,0.0000020184, -0.0000020169,0.0000020162,0.0000020148,0.0000020121,0.0000020076, -0.0000020019,0.0000019961,0.0000019910,0.0000019868,0.0000019842, -0.0000019839,0.0000019855,0.0000019879,0.0000019904,0.0000019941, -0.0000019970,0.0000019977,0.0000019970,0.0000019946,0.0000019920, -0.0000019884,0.0000019833,0.0000019785,0.0000019736,0.0000019702, -0.0000019682,0.0000019676,0.0000019670,0.0000019648,0.0000019616, -0.0000019576,0.0000019507,0.0000019410,0.0000019301,0.0000019187, -0.0000019083,0.0000019008,0.0000018994,0.0000019006,0.0000019033, -0.0000019043,0.0000019039,0.0000019070,0.0000019136,0.0000019230, -0.0000019311,0.0000019332,0.0000019311,0.0000019263,0.0000019230, -0.0000019231,0.0000019262,0.0000019319,0.0000019382,0.0000019401, -0.0000019381,0.0000019358,0.0000019348,0.0000019345,0.0000019340, -0.0000019305,0.0000019247,0.0000019211,0.0000019200,0.0000019209, -0.0000019238,0.0000019275,0.0000019299,0.0000019292,0.0000019234, -0.0000019130,0.0000019034,0.0000018966,0.0000018903,0.0000018853, -0.0000018834,0.0000018824,0.0000018829,0.0000018831,0.0000018853, -0.0000018886,0.0000018920,0.0000018952,0.0000018976,0.0000018986, -0.0000018984,0.0000018958,0.0000018906,0.0000018835,0.0000018765, -0.0000018713,0.0000018666,0.0000018608,0.0000018550,0.0000018515, -0.0000018502,0.0000018489,0.0000018456,0.0000018393,0.0000018318, -0.0000018281,0.0000018288,0.0000018321,0.0000018363,0.0000018406, -0.0000018447,0.0000018483,0.0000018517,0.0000018528,0.0000018519, -0.0000018487,0.0000018483,0.0000018508,0.0000018520,0.0000018497, -0.0000018446,0.0000018395,0.0000018356,0.0000018325,0.0000018299, -0.0000018274,0.0000018250,0.0000018233,0.0000018211,0.0000018174, -0.0000018117,0.0000018057,0.0000018008,0.0000017973,0.0000017962, -0.0000017975,0.0000018011,0.0000018058,0.0000018093,0.0000018098, -0.0000018072,0.0000018035,0.0000018000,0.0000017964,0.0000017935, -0.0000017920,0.0000017918,0.0000017933,0.0000017970,0.0000018013, -0.0000018029,0.0000017995,0.0000017917,0.0000017815,0.0000017707, -0.0000017595,0.0000017494,0.0000017424,0.0000017392,0.0000017392, -0.0000017410,0.0000017431,0.0000017443,0.0000017431,0.0000017379, -0.0000017307,0.0000017274,0.0000017286,0.0000017317,0.0000017337, -0.0000017320,0.0000017258,0.0000017178,0.0000017143,0.0000017173, -0.0000017226,0.0000017236,0.0000017311,0.0000017659,0.0000018051, -0.0000018229,0.0000018245,0.0000018210,0.0000018154,0.0000018126, -0.0000018035,0.0000017950,0.0000017856,0.0000017818,0.0000017805, -0.0000017705,0.0000017595,0.0000017604,0.0000017663,0.0000017735, -0.0000017858,0.0000018007,0.0000018142,0.0000018214,0.0000018246, -0.0000018240,0.0000018224,0.0000018213,0.0000018209,0.0000018197, -0.0000018140,0.0000018022,0.0000017867,0.0000017721,0.0000017626, -0.0000017594,0.0000017600,0.0000017611,0.0000017617,0.0000017620, -0.0000017624,0.0000017622,0.0000017613,0.0000017599,0.0000017583, -0.0000017569,0.0000017560,0.0000017555,0.0000017548,0.0000017545, -0.0000017546,0.0000017545,0.0000017548,0.0000017560,0.0000017576, -0.0000017589,0.0000017597,0.0000017604,0.0000017627,0.0000017670, -0.0000017723,0.0000017774,0.0000017824,0.0000017871,0.0000017912, -0.0000017968,0.0000018058,0.0000018196,0.0000018379,0.0000018588, -0.0000018769,0.0000018879,0.0000018909,0.0000018884,0.0000018857, -0.0000018833,0.0000018834,0.0000018859,0.0000018889,0.0000018896, -0.0000018888,0.0000018877,0.0000018873,0.0000018873,0.0000018862, -0.0000018826,0.0000018771,0.0000018718,0.0000018682,0.0000018674, -0.0000018633,0.0000018490,0.0000018248,0.0000017961,0.0000017709, -0.0000017524,0.0000017416,0.0000017390,0.0000017422,0.0000017512, -0.0000017665,0.0000017836,0.0000017967,0.0000018037,0.0000018056, -0.0000018025,0.0000017961,0.0000017877,0.0000017754,0.0000017631, -0.0000017578,0.0000017539,0.0000017527,0.0000017555,0.0000017551, -0.0000017512,0.0000017523,0.0000017613,0.0000017705,0.0000017772, -0.0000017789,0.0000017846,0.0000017773,0.0000017652,0.0000017708, -0.0000017768,0.0000017758,0.0000017784,0.0000017812,0.0000017817, -0.0000017800,0.0000017771,0.0000017755,0.0000017741,0.0000017738, -0.0000017736,0.0000017719,0.0000017695,0.0000017671,0.0000017653, -0.0000017651,0.0000017677,0.0000017723,0.0000017777,0.0000017823, -0.0000017858,0.0000017890,0.0000017908,0.0000017921,0.0000017919, -0.0000017909,0.0000017855,0.0000017795,0.0000017749,0.0000017732, -0.0000017725,0.0000017682,0.0000017686,0.0000017715,0.0000017738, -0.0000017747,0.0000017733,0.0000017705,0.0000017702,0.0000017743, -0.0000017802,0.0000017844,0.0000017886,0.0000017936,0.0000017974, -0.0000017994,0.0000017997,0.0000017973,0.0000017939,0.0000017927, -0.0000017938,0.0000017962,0.0000018024,0.0000018104,0.0000018124, -0.0000018112,0.0000018123,0.0000018146,0.0000018171,0.0000018254, -0.0000018386,0.0000018492,0.0000018593,0.0000018710,0.0000018747, -0.0000018687,0.0000018628,0.0000018579,0.0000018493,0.0000018435, -0.0000018412,0.0000018293,0.0000018129,0.0000018151,0.0000018285, -0.0000018319,0.0000018283,0.0000018200,0.0000018158,0.0000018224, -0.0000018359,0.0000018477,0.0000018466,0.0000018262,0.0000018029, -0.0000017985,0.0000018050,0.0000018091,0.0000018152,0.0000018279, -0.0000018389,0.0000018477,0.0000018574,0.0000018622,0.0000018610, -0.0000018590,0.0000018603,0.0000018641,0.0000018682,0.0000018720, -0.0000018755,0.0000018785,0.0000018815,0.0000018848,0.0000018881, -0.0000018906,0.0000018923,0.0000018941,0.0000018963,0.0000018993, -0.0000019018,0.0000019012,0.0000018929,0.0000018765,0.0000018597, -0.0000018436,0.0000018230,0.0000018005,0.0000017851,0.0000017774, -0.0000017696,0.0000017581,0.0000017477,0.0000017417,0.0000017401, -0.0000017423,0.0000017506,0.0000017615,0.0000017719,0.0000017774, -0.0000017866,0.0000018083,0.0000018234,0.0000018263,0.0000018219, -0.0000018101,0.0000018140,0.0000018365,0.0000018547,0.0000018716, -0.0000019272,0.0000019716,0.0000019795,0.0000019872,0.0000019893, -0.0000019858,0.0000019805,0.0000019745,0.0000019571,0.0000019172, -0.0000018744,0.0000018576,0.0000018565,0.0000018538,0.0000018479, -0.0000018427,0.0000018406,0.0000018380,0.0000018360,0.0000018344, -0.0000018306,0.0000018240,0.0000018184,0.0000018161,0.0000018159, -0.0000018165,0.0000018178,0.0000018195,0.0000018211,0.0000018225, -0.0000018226,0.0000018227,0.0000018225,0.0000018220,0.0000018212, -0.0000018205,0.0000018204,0.0000018208,0.0000018207,0.0000018199, -0.0000018189,0.0000018187,0.0000018188,0.0000018195,0.0000018201, -0.0000018183,0.0000018088,0.0000017943,0.0000017885,0.0000017890, -0.0000017908,0.0000017963,0.0000018060,0.0000018197,0.0000018393, -0.0000018617,0.0000018715,0.0000018717,0.0000018747,0.0000018885, -0.0000019116,0.0000019102,0.0000018658,0.0000018151,0.0000017924, -0.0000017936,0.0000017966,0.0000017962,0.0000017951,0.0000017957, -0.0000018032,0.0000018210,0.0000018395,0.0000018491,0.0000018492, -0.0000018446,0.0000018405,0.0000018400,0.0000018446,0.0000018551, -0.0000018658,0.0000018709,0.0000018710,0.0000018698,0.0000018695, -0.0000018701,0.0000018710,0.0000018717,0.0000018714,0.0000018662, -0.0000018529,0.0000018340,0.0000018153,0.0000018009,0.0000017914, -0.0000017858,0.0000017828,0.0000017822,0.0000017825,0.0000017855, -0.0000017908,0.0000017966,0.0000018015,0.0000018055,0.0000018097, -0.0000018135,0.0000018170,0.0000018204,0.0000018228,0.0000018244, -0.0000018256,0.0000018272,0.0000018293,0.0000018314,0.0000018335, -0.0000018356,0.0000018382,0.0000018436,0.0000018528,0.0000018600, -0.0000018582,0.0000018419,0.0000018226,0.0000018188,0.0000018227, -0.0000018282,0.0000018316,0.0000018324,0.0000018328,0.0000018337, -0.0000018354,0.0000018367,0.0000018382,0.0000018406,0.0000018467, -0.0000018550,0.0000018597,0.0000018582,0.0000018556,0.0000018589, -0.0000018714,0.0000018829,0.0000018848,0.0000018799,0.0000018731, -0.0000018694,0.0000018694,0.0000018715,0.0000018749,0.0000018820, -0.0000018939,0.0000019031,0.0000019059,0.0000019087,0.0000019137, -0.0000019178,0.0000019202,0.0000019199,0.0000019181,0.0000019202, -0.0000019335,0.0000019537,0.0000019662,0.0000019668,0.0000019611, -0.0000019523,0.0000019409,0.0000019280,0.0000019148,0.0000019031, -0.0000018969,0.0000018970,0.0000019037,0.0000019142,0.0000019246, -0.0000019363,0.0000019532,0.0000019727,0.0000019863,0.0000019970, -0.0000020129,0.0000020263,0.0000020236,0.0000020086,0.0000020006, -0.0000020015,0.0000020001,0.0000019927,0.0000019843,0.0000019880, -0.0000020061,0.0000020205,0.0000020222,0.0000020200,0.0000020204, -0.0000020252,0.0000020301,0.0000020278,0.0000020151,0.0000019996, -0.0000019873,0.0000019782,0.0000019743,0.0000019798,0.0000019966, -0.0000020160,0.0000020266,0.0000020272,0.0000020062,0.0000019553, -0.0000018945,0.0000018530,0.0000018316,0.0000018150,0.0000018034, -0.0000018106,0.0000018304,0.0000018498,0.0000018625,0.0000018630, -0.0000018538,0.0000018388,0.0000018202,0.0000018055,0.0000017979, -0.0000017982,0.0000017918,0.0000017713,0.0000017499,0.0000017588, -0.0000017985,0.0000018352,0.0000018504,0.0000018581,0.0000018634, -0.0000018621,0.0000018533,0.0000018432,0.0000018370,0.0000018354, -0.0000018360,0.0000018460,0.0000018614,0.0000018766,0.0000018865, -0.0000018912,0.0000018940,0.0000018912,0.0000018771,0.0000018537, -0.0000018424,0.0000018570,0.0000018913,0.0000019142,0.0000019009, -0.0000018718,0.0000018489,0.0000018270,0.0000018255,0.0000018401, -0.0000018487,0.0000018436,0.0000018443,0.0000018700,0.0000019248, -0.0000019672,0.0000019741,0.0000019705,0.0000019608,0.0000019597, -0.0000019667,0.0000019721,0.0000019705,0.0000019639,0.0000019567, -0.0000019544,0.0000019530,0.0000019574,0.0000019618,0.0000019637, -0.0000019647,0.0000019654,0.0000019668,0.0000019692,0.0000019725, -0.0000019768,0.0000019805,0.0000019801,0.0000019821,0.0000019769, -0.0000019715,0.0000019574,0.0000019434,0.0000019256,0.0000019059, -0.0000018892,0.0000018768,0.0000018647,0.0000018542,0.0000018461, -0.0000018454,0.0000018467,0.0000018488,0.0000018528,0.0000018594, -0.0000018668,0.0000018727,0.0000018746,0.0000018750,0.0000018790, -0.0000018928,0.0000019127,0.0000019353,0.0000019469,0.0000019481, -0.0000019462,0.0000019453,0.0000019469,0.0000019492,0.0000019502, -0.0000019490,0.0000019461,0.0000019423,0.0000019381,0.0000019330, -0.0000019259,0.0000019188,0.0000019097,0.0000019006,0.0000018932, -0.0000018913,0.0000018919,0.0000018989,0.0000019162,0.0000019426, -0.0000019706,0.0000019913,0.0000020006,0.0000020016,0.0000019994, -0.0000019971,0.0000019977,0.0000020029,0.0000020097,0.0000020130, -0.0000020103,0.0000019995,0.0000019844,0.0000019729,0.0000019693, -0.0000019712,0.0000019760,0.0000019803,0.0000019826,0.0000019837, -0.0000019849,0.0000019867,0.0000019892,0.0000019929,0.0000019977, -0.0000020029,0.0000020072,0.0000020088,0.0000020076,0.0000020045, -0.0000019996,0.0000019932,0.0000019871,0.0000019838,0.0000019836, -0.0000019854,0.0000019894,0.0000019919,0.0000019955,0.0000019900, -0.0000019800,0.0000019644,0.0000019451,0.0000019259,0.0000019093, -0.0000019066,0.0000019057,0.0000019149,0.0000019265,0.0000019451, -0.0000019654,0.0000019816,0.0000019941,0.0000019958,0.0000019981, -0.0000020024,0.0000020105,0.0000020165,0.0000020188,0.0000020159, -0.0000020115,0.0000020072,0.0000020041,0.0000020024,0.0000020016, -0.0000020014,0.0000020015,0.0000020019,0.0000020024,0.0000020026, -0.0000020024,0.0000020019,0.0000020011,0.0000019997,0.0000019978, -0.0000019960,0.0000019948,0.0000019947,0.0000019964,0.0000020002, -0.0000020061,0.0000020134,0.0000020212,0.0000020275,0.0000020309, -0.0000020314,0.0000020302,0.0000020272,0.0000020242,0.0000020222, -0.0000020212,0.0000020204,0.0000020194,0.0000020177,0.0000020157, -0.0000020146,0.0000020152,0.0000020174,0.0000020205,0.0000020236, -0.0000020260,0.0000020270,0.0000020275,0.0000020284,0.0000020294, -0.0000020307,0.0000020330,0.0000020363,0.0000020397,0.0000020422, -0.0000020435,0.0000020447,0.0000020457,0.0000020465,0.0000020467, -0.0000020466,0.0000020458,0.0000020443,0.0000020437,0.0000020443, -0.0000020467,0.0000020493,0.0000020517,0.0000020550,0.0000020583, -0.0000020596,0.0000020589,0.0000020562,0.0000020524,0.0000020472, -0.0000020417,0.0000020370,0.0000020325,0.0000020292,0.0000020263, -0.0000020250,0.0000020238,0.0000020226,0.0000020207,0.0000020175, -0.0000020132,0.0000020081,0.0000020030,0.0000019980,0.0000019935, -0.0000019913,0.0000019909,0.0000019917,0.0000019934,0.0000019959, -0.0000020008,0.0000020029,0.0000020041,0.0000020032,0.0000020005, -0.0000019969,0.0000019916,0.0000019869,0.0000019836,0.0000019812, -0.0000019796,0.0000019781,0.0000019766,0.0000019734,0.0000019695, -0.0000019652,0.0000019588,0.0000019500,0.0000019401,0.0000019295, -0.0000019192,0.0000019117,0.0000019081,0.0000019080,0.0000019098, -0.0000019116,0.0000019113,0.0000019108,0.0000019156,0.0000019246, -0.0000019350,0.0000019409,0.0000019402,0.0000019359,0.0000019315, -0.0000019292,0.0000019293,0.0000019327,0.0000019389,0.0000019441, -0.0000019455,0.0000019456,0.0000019454,0.0000019441,0.0000019422, -0.0000019384,0.0000019322,0.0000019269,0.0000019244,0.0000019243, -0.0000019260,0.0000019281,0.0000019305,0.0000019307,0.0000019284, -0.0000019227,0.0000019131,0.0000019054,0.0000019008,0.0000018963, -0.0000018914,0.0000018869,0.0000018853,0.0000018857,0.0000018873, -0.0000018895,0.0000018922,0.0000018942,0.0000018960,0.0000018970, -0.0000018983,0.0000018984,0.0000018960,0.0000018911,0.0000018846, -0.0000018787,0.0000018740,0.0000018678,0.0000018599,0.0000018531, -0.0000018498,0.0000018480,0.0000018461,0.0000018426,0.0000018374, -0.0000018334,0.0000018330,0.0000018355,0.0000018397,0.0000018440, -0.0000018481,0.0000018516,0.0000018552,0.0000018572,0.0000018576, -0.0000018545,0.0000018516,0.0000018525,0.0000018549,0.0000018541, -0.0000018492,0.0000018432,0.0000018384,0.0000018350,0.0000018326, -0.0000018308,0.0000018295,0.0000018292,0.0000018288,0.0000018266, -0.0000018210,0.0000018143,0.0000018081,0.0000018023,0.0000017979, -0.0000017954,0.0000017961,0.0000017982,0.0000018012,0.0000018030, -0.0000018027,0.0000018011,0.0000017985,0.0000017956,0.0000017936, -0.0000017931,0.0000017937,0.0000017957,0.0000017996,0.0000018046, -0.0000018084,0.0000018090,0.0000018052,0.0000017986,0.0000017900, -0.0000017799,0.0000017680,0.0000017570,0.0000017498,0.0000017467, -0.0000017464,0.0000017481,0.0000017502,0.0000017506,0.0000017476, -0.0000017406,0.0000017333,0.0000017296,0.0000017303,0.0000017318, -0.0000017319,0.0000017301,0.0000017245,0.0000017173,0.0000017141, -0.0000017169,0.0000017203,0.0000017224,0.0000017411,0.0000017838, -0.0000018152,0.0000018241,0.0000018223,0.0000018157,0.0000018115, -0.0000018028,0.0000017927,0.0000017847,0.0000017815,0.0000017778, -0.0000017657,0.0000017567,0.0000017583,0.0000017637,0.0000017720, -0.0000017863,0.0000018020,0.0000018128,0.0000018165,0.0000018157, -0.0000018133,0.0000018103,0.0000018057,0.0000017978,0.0000017865, -0.0000017734,0.0000017609,0.0000017521,0.0000017486,0.0000017496, -0.0000017537,0.0000017565,0.0000017576,0.0000017577,0.0000017589, -0.0000017589,0.0000017582,0.0000017578,0.0000017567,0.0000017554, -0.0000017543,0.0000017532,0.0000017518,0.0000017501,0.0000017486, -0.0000017472,0.0000017431,0.0000017413,0.0000017428,0.0000017420, -0.0000017415,0.0000017419,0.0000017418,0.0000017442,0.0000017496, -0.0000017575,0.0000017661,0.0000017748,0.0000017819,0.0000017866, -0.0000017900,0.0000017944,0.0000018021,0.0000018149,0.0000018341, -0.0000018580,0.0000018801,0.0000018927,0.0000018961,0.0000018928, -0.0000018892,0.0000018876,0.0000018885,0.0000018894,0.0000018891, -0.0000018886,0.0000018890,0.0000018900,0.0000018895,0.0000018870, -0.0000018826,0.0000018775,0.0000018733,0.0000018705,0.0000018665, -0.0000018548,0.0000018331,0.0000018046,0.0000017759,0.0000017536, -0.0000017377,0.0000017271,0.0000017231,0.0000017262,0.0000017353, -0.0000017504,0.0000017680,0.0000017842,0.0000017979,0.0000018046, -0.0000018040,0.0000017963,0.0000017869,0.0000017743,0.0000017621, -0.0000017582,0.0000017554,0.0000017525,0.0000017523,0.0000017509, -0.0000017483,0.0000017529,0.0000017627,0.0000017732,0.0000017779, -0.0000017815,0.0000017850,0.0000017717,0.0000017649,0.0000017737, -0.0000017754,0.0000017767,0.0000017807,0.0000017853,0.0000017868, -0.0000017853,0.0000017842,0.0000017829,0.0000017831,0.0000017840, -0.0000017829,0.0000017794,0.0000017765,0.0000017738,0.0000017718, -0.0000017721,0.0000017747,0.0000017780,0.0000017812,0.0000017826, -0.0000017843,0.0000017867,0.0000017882,0.0000017895,0.0000017910, -0.0000017915,0.0000017888,0.0000017815,0.0000017745,0.0000017700, -0.0000017671,0.0000017647,0.0000017682,0.0000017729,0.0000017754, -0.0000017759,0.0000017743,0.0000017723,0.0000017735,0.0000017782, -0.0000017824,0.0000017857,0.0000017904,0.0000017956,0.0000017983, -0.0000017984,0.0000017965,0.0000017934,0.0000017912,0.0000017908, -0.0000017920,0.0000017973,0.0000018069,0.0000018124,0.0000018116, -0.0000018103,0.0000018125,0.0000018153,0.0000018199,0.0000018314, -0.0000018444,0.0000018533,0.0000018652,0.0000018757,0.0000018739, -0.0000018660,0.0000018609,0.0000018544,0.0000018459,0.0000018429, -0.0000018394,0.0000018232,0.0000018118,0.0000018199,0.0000018315, -0.0000018311,0.0000018246,0.0000018178,0.0000018199,0.0000018314, -0.0000018434,0.0000018441,0.0000018264,0.0000018032,0.0000017979, -0.0000018037,0.0000018073,0.0000018119,0.0000018236,0.0000018351, -0.0000018446,0.0000018549,0.0000018609,0.0000018606,0.0000018598, -0.0000018618,0.0000018661,0.0000018703,0.0000018739,0.0000018772, -0.0000018798,0.0000018825,0.0000018858,0.0000018893,0.0000018922, -0.0000018939,0.0000018951,0.0000018959,0.0000018969,0.0000018992, -0.0000019011,0.0000018972,0.0000018845,0.0000018664,0.0000018479, -0.0000018262,0.0000018032,0.0000017883,0.0000017812,0.0000017711, -0.0000017569,0.0000017473,0.0000017444,0.0000017445,0.0000017482, -0.0000017560,0.0000017656,0.0000017736,0.0000017778,0.0000017832, -0.0000018012,0.0000018193,0.0000018238,0.0000018199,0.0000018099, -0.0000018154,0.0000018403,0.0000018567,0.0000018720,0.0000019240, -0.0000019682,0.0000019757,0.0000019787,0.0000019792,0.0000019775, -0.0000019712,0.0000019483,0.0000019063,0.0000018717,0.0000018612, -0.0000018594,0.0000018561,0.0000018500,0.0000018443,0.0000018425, -0.0000018401,0.0000018369,0.0000018343,0.0000018283,0.0000018196, -0.0000018141,0.0000018134,0.0000018147,0.0000018160,0.0000018162, -0.0000018157,0.0000018148,0.0000018126,0.0000018101,0.0000018085, -0.0000018073,0.0000018061,0.0000018046,0.0000018043,0.0000018069, -0.0000018113,0.0000018143,0.0000018146,0.0000018127,0.0000018110, -0.0000018106,0.0000018115,0.0000018122,0.0000018103,0.0000018027, -0.0000017926,0.0000017878,0.0000017879,0.0000017896,0.0000017955, -0.0000018054,0.0000018196,0.0000018403,0.0000018639,0.0000018735, -0.0000018728,0.0000018802,0.0000019028,0.0000019119,0.0000018787, -0.0000018202,0.0000017946,0.0000017932,0.0000017961,0.0000017960, -0.0000017940,0.0000017929,0.0000017945,0.0000018046,0.0000018232, -0.0000018390,0.0000018455,0.0000018434,0.0000018374,0.0000018334, -0.0000018333,0.0000018393,0.0000018508,0.0000018613,0.0000018650, -0.0000018645,0.0000018635,0.0000018639,0.0000018649,0.0000018657, -0.0000018658,0.0000018663,0.0000018663,0.0000018619,0.0000018502, -0.0000018326,0.0000018138,0.0000017981,0.0000017880,0.0000017835, -0.0000017826,0.0000017835,0.0000017870,0.0000017922,0.0000017972, -0.0000018006,0.0000018030,0.0000018063,0.0000018103,0.0000018155, -0.0000018220,0.0000018284,0.0000018324,0.0000018338,0.0000018345, -0.0000018354,0.0000018363,0.0000018378,0.0000018409,0.0000018457, -0.0000018525,0.0000018601,0.0000018641,0.0000018602,0.0000018444, -0.0000018255,0.0000018194,0.0000018219,0.0000018274,0.0000018315, -0.0000018322,0.0000018314,0.0000018328,0.0000018380,0.0000018436, -0.0000018474,0.0000018525,0.0000018570,0.0000018594,0.0000018575, -0.0000018539,0.0000018560,0.0000018750,0.0000019029,0.0000019196, -0.0000019222,0.0000019163,0.0000019045,0.0000018924,0.0000018831, -0.0000018791,0.0000018808,0.0000018870,0.0000018969,0.0000019041, -0.0000019078,0.0000019121,0.0000019163,0.0000019183,0.0000019198, -0.0000019201,0.0000019201,0.0000019236,0.0000019412,0.0000019667, -0.0000019808,0.0000019819,0.0000019780,0.0000019698,0.0000019586, -0.0000019450,0.0000019297,0.0000019137,0.0000019016,0.0000018997, -0.0000019055,0.0000019160,0.0000019276,0.0000019430,0.0000019646, -0.0000019844,0.0000019980,0.0000020136,0.0000020272,0.0000020253, -0.0000020112,0.0000020038,0.0000020055,0.0000020042,0.0000019956, -0.0000019863,0.0000019907,0.0000020087,0.0000020211,0.0000020215, -0.0000020193,0.0000020200,0.0000020253,0.0000020284,0.0000020217, -0.0000020068,0.0000019919,0.0000019809,0.0000019737,0.0000019740, -0.0000019844,0.0000020053,0.0000020223,0.0000020269,0.0000020213, -0.0000019833,0.0000019215,0.0000018675,0.0000018354,0.0000018147, -0.0000018035,0.0000018096,0.0000018286,0.0000018465,0.0000018531, -0.0000018567,0.0000018517,0.0000018393,0.0000018263,0.0000018186, -0.0000018126,0.0000018114,0.0000018135,0.0000018108,0.0000017871, -0.0000017608,0.0000017694,0.0000018112,0.0000018441,0.0000018549, -0.0000018576,0.0000018551,0.0000018463,0.0000018366,0.0000018315, -0.0000018338,0.0000018385,0.0000018482,0.0000018627,0.0000018777, -0.0000018863,0.0000018889,0.0000018861,0.0000018790,0.0000018683, -0.0000018571,0.0000018567,0.0000018708,0.0000018948,0.0000019076, -0.0000018978,0.0000018688,0.0000018472,0.0000018345,0.0000018236, -0.0000018267,0.0000018418,0.0000018488,0.0000018446,0.0000018461, -0.0000018734,0.0000019277,0.0000019679,0.0000019744,0.0000019722, -0.0000019642,0.0000019584,0.0000019578,0.0000019583,0.0000019582, -0.0000019576,0.0000019577,0.0000019603,0.0000019662,0.0000019719, -0.0000019747,0.0000019759,0.0000019776,0.0000019804,0.0000019842, -0.0000019871,0.0000019860,0.0000019860,0.0000019812,0.0000019688, -0.0000019566,0.0000019376,0.0000019197,0.0000019046,0.0000018856, -0.0000018717,0.0000018596,0.0000018520,0.0000018478,0.0000018451, -0.0000018441,0.0000018442,0.0000018452,0.0000018479,0.0000018524, -0.0000018597,0.0000018663,0.0000018713,0.0000018720,0.0000018702, -0.0000018691,0.0000018750,0.0000018879,0.0000019024,0.0000019152, -0.0000019227,0.0000019328,0.0000019423,0.0000019515,0.0000019580, -0.0000019601,0.0000019593,0.0000019565,0.0000019517,0.0000019464, -0.0000019400,0.0000019330,0.0000019251,0.0000019160,0.0000019067, -0.0000018996,0.0000018953,0.0000018959,0.0000019032,0.0000019181, -0.0000019395,0.0000019640,0.0000019854,0.0000019971,0.0000020019, -0.0000020015,0.0000019994,0.0000019984,0.0000020006,0.0000020065, -0.0000020122,0.0000020133,0.0000020090,0.0000019967,0.0000019824, -0.0000019731,0.0000019712,0.0000019732,0.0000019778,0.0000019820, -0.0000019846,0.0000019858,0.0000019864,0.0000019864,0.0000019860, -0.0000019853,0.0000019851,0.0000019846,0.0000019839,0.0000019822, -0.0000019796,0.0000019791,0.0000019778,0.0000019785,0.0000019814, -0.0000019840,0.0000019885,0.0000019882,0.0000019836,0.0000019733, -0.0000019564,0.0000019376,0.0000019215,0.0000019079,0.0000019099, -0.0000019082,0.0000019173,0.0000019337,0.0000019539,0.0000019730, -0.0000019856,0.0000019952,0.0000019943,0.0000019961,0.0000019950, -0.0000019961,0.0000020013,0.0000020070,0.0000020106,0.0000020093, -0.0000020044,0.0000019999,0.0000019969,0.0000019951,0.0000019947, -0.0000019957,0.0000019970,0.0000019975,0.0000019969,0.0000019957, -0.0000019940,0.0000019920,0.0000019894,0.0000019863,0.0000019833, -0.0000019804,0.0000019777,0.0000019758,0.0000019751,0.0000019761, -0.0000019790,0.0000019837,0.0000019903,0.0000019994,0.0000020103, -0.0000020200,0.0000020257,0.0000020268,0.0000020252,0.0000020215, -0.0000020183,0.0000020168,0.0000020164,0.0000020164,0.0000020160, -0.0000020156,0.0000020166,0.0000020189,0.0000020215,0.0000020229, -0.0000020230,0.0000020226,0.0000020231,0.0000020250,0.0000020274, -0.0000020298,0.0000020323,0.0000020344,0.0000020346,0.0000020328, -0.0000020305,0.0000020296,0.0000020305,0.0000020339,0.0000020384, -0.0000020420,0.0000020441,0.0000020458,0.0000020476,0.0000020489, -0.0000020498,0.0000020512,0.0000020527,0.0000020534,0.0000020542, -0.0000020558,0.0000020556,0.0000020539,0.0000020509,0.0000020475, -0.0000020428,0.0000020377,0.0000020339,0.0000020308,0.0000020280, -0.0000020259,0.0000020247,0.0000020238,0.0000020226,0.0000020205, -0.0000020176,0.0000020138,0.0000020094,0.0000020047,0.0000020006, -0.0000019973,0.0000019950,0.0000019944,0.0000019945,0.0000019949, -0.0000019959,0.0000019992,0.0000020026,0.0000020052,0.0000020077, -0.0000020073,0.0000020054,0.0000020014,0.0000019961,0.0000019921, -0.0000019888,0.0000019861,0.0000019837,0.0000019817,0.0000019792, -0.0000019763,0.0000019726,0.0000019666,0.0000019586,0.0000019493, -0.0000019393,0.0000019293,0.0000019222,0.0000019181,0.0000019164, -0.0000019170,0.0000019188,0.0000019197,0.0000019194,0.0000019216, -0.0000019297,0.0000019401,0.0000019475,0.0000019481,0.0000019438, -0.0000019392,0.0000019361,0.0000019351,0.0000019351,0.0000019384, -0.0000019436,0.0000019473,0.0000019504,0.0000019529,0.0000019537, -0.0000019522,0.0000019482,0.0000019416,0.0000019346,0.0000019302, -0.0000019292,0.0000019308,0.0000019333,0.0000019354,0.0000019352, -0.0000019319,0.0000019274,0.0000019206,0.0000019121,0.0000019070, -0.0000019048,0.0000019019,0.0000018961,0.0000018907,0.0000018897, -0.0000018911,0.0000018934,0.0000018960,0.0000018975,0.0000018975, -0.0000018972,0.0000018981,0.0000018990,0.0000018982,0.0000018947, -0.0000018891,0.0000018836,0.0000018796,0.0000018752,0.0000018677, -0.0000018584,0.0000018512,0.0000018476,0.0000018456,0.0000018441, -0.0000018418,0.0000018396,0.0000018390,0.0000018403,0.0000018439, -0.0000018482,0.0000018521,0.0000018554,0.0000018581,0.0000018605, -0.0000018615,0.0000018598,0.0000018558,0.0000018553,0.0000018578, -0.0000018593,0.0000018560,0.0000018493,0.0000018430,0.0000018380, -0.0000018341,0.0000018314,0.0000018301,0.0000018304,0.0000018319, -0.0000018320,0.0000018287,0.0000018227,0.0000018171,0.0000018119, -0.0000018062,0.0000018015,0.0000017983,0.0000017971,0.0000017981, -0.0000017974,0.0000017970,0.0000017955,0.0000017932,0.0000017906, -0.0000017888,0.0000017886,0.0000017898,0.0000017927,0.0000017975, -0.0000018033,0.0000018080,0.0000018097,0.0000018085,0.0000018059, -0.0000018004,0.0000017940,0.0000017856,0.0000017750,0.0000017658, -0.0000017598,0.0000017567,0.0000017558,0.0000017565,0.0000017569, -0.0000017555,0.0000017511,0.0000017438,0.0000017363,0.0000017320, -0.0000017311,0.0000017312,0.0000017303,0.0000017282,0.0000017233, -0.0000017165,0.0000017142,0.0000017163,0.0000017179,0.0000017248, -0.0000017587,0.0000018008,0.0000018220,0.0000018227,0.0000018170, -0.0000018109,0.0000018035,0.0000017926,0.0000017855,0.0000017813, -0.0000017769,0.0000017656,0.0000017559,0.0000017539,0.0000017570, -0.0000017636,0.0000017741,0.0000017843,0.0000017899,0.0000017908, -0.0000017879,0.0000017828,0.0000017753,0.0000017654,0.0000017557, -0.0000017483,0.0000017443,0.0000017427,0.0000017449,0.0000017475, -0.0000017514,0.0000017557,0.0000017586,0.0000017606,0.0000017632, -0.0000017663,0.0000017691,0.0000017707,0.0000017718,0.0000017721, -0.0000017719,0.0000017712,0.0000017697,0.0000017670,0.0000017636, -0.0000017600,0.0000017551,0.0000017502,0.0000017471,0.0000017435, -0.0000017385,0.0000017356,0.0000017311,0.0000017272,0.0000017264, -0.0000017298,0.0000017365,0.0000017463,0.0000017580,0.0000017695, -0.0000017789,0.0000017860,0.0000017913,0.0000017961,0.0000018025, -0.0000018144,0.0000018349,0.0000018615,0.0000018847,0.0000018970, -0.0000018991,0.0000018957,0.0000018923,0.0000018897,0.0000018882, -0.0000018872,0.0000018880,0.0000018904,0.0000018916,0.0000018906, -0.0000018876,0.0000018837,0.0000018801,0.0000018759,0.0000018686, -0.0000018553,0.0000018334,0.0000018065,0.0000017793,0.0000017556, -0.0000017376,0.0000017241,0.0000017148,0.0000017117,0.0000017132, -0.0000017189,0.0000017315,0.0000017489,0.0000017692,0.0000017887, -0.0000018014,0.0000018037,0.0000017975,0.0000017872,0.0000017744, -0.0000017631,0.0000017601,0.0000017553,0.0000017496,0.0000017489, -0.0000017478,0.0000017480,0.0000017546,0.0000017654,0.0000017760, -0.0000017790,0.0000017849,0.0000017815,0.0000017653,0.0000017670, -0.0000017741,0.0000017758,0.0000017792,0.0000017867,0.0000017932, -0.0000017942,0.0000017950,0.0000017955,0.0000017966,0.0000017984, -0.0000017982,0.0000017950,0.0000017925,0.0000017901,0.0000017874, -0.0000017865,0.0000017885,0.0000017908,0.0000017919,0.0000017915, -0.0000017897,0.0000017877,0.0000017860,0.0000017855,0.0000017861, -0.0000017877,0.0000017893,0.0000017881,0.0000017830,0.0000017742, -0.0000017745,0.0000017657,0.0000017641,0.0000017685,0.0000017726, -0.0000017750,0.0000017752,0.0000017734,0.0000017729,0.0000017762, -0.0000017809,0.0000017837,0.0000017869,0.0000017920,0.0000017956, -0.0000017955,0.0000017935,0.0000017913,0.0000017895,0.0000017883, -0.0000017884,0.0000017919,0.0000018011,0.0000018105,0.0000018121, -0.0000018094,0.0000018094,0.0000018128,0.0000018165,0.0000018241, -0.0000018378,0.0000018486,0.0000018578,0.0000018712,0.0000018771, -0.0000018707,0.0000018631,0.0000018584,0.0000018497,0.0000018433, -0.0000018427,0.0000018350,0.0000018170,0.0000018120,0.0000018250, -0.0000018316,0.0000018290,0.0000018232,0.0000018212,0.0000018281, -0.0000018390,0.0000018418,0.0000018270,0.0000018038,0.0000017962, -0.0000018018,0.0000018047,0.0000018074,0.0000018177,0.0000018294, -0.0000018389,0.0000018500,0.0000018589,0.0000018611,0.0000018611, -0.0000018632,0.0000018675,0.0000018722,0.0000018760,0.0000018788, -0.0000018811,0.0000018835,0.0000018862,0.0000018892,0.0000018917, -0.0000018936,0.0000018952,0.0000018952,0.0000018944,0.0000018953, -0.0000018974,0.0000018975,0.0000018906,0.0000018739,0.0000018534, -0.0000018302,0.0000018053,0.0000017896,0.0000017830,0.0000017717, -0.0000017562,0.0000017489,0.0000017491,0.0000017517,0.0000017564, -0.0000017629,0.0000017702,0.0000017757,0.0000017782,0.0000017810, -0.0000017954,0.0000018148,0.0000018212,0.0000018178,0.0000018090, -0.0000018167,0.0000018437,0.0000018583,0.0000018694,0.0000019133, -0.0000019604,0.0000019728,0.0000019750,0.0000019743,0.0000019639, -0.0000019350,0.0000018956,0.0000018707,0.0000018652,0.0000018616, -0.0000018587,0.0000018528,0.0000018457,0.0000018433,0.0000018411, -0.0000018371,0.0000018318,0.0000018236,0.0000018144,0.0000018106, -0.0000018109,0.0000018122,0.0000018115,0.0000018084,0.0000018044, -0.0000018011,0.0000017987,0.0000017976,0.0000017973,0.0000017959, -0.0000017928,0.0000017902,0.0000017911,0.0000017975,0.0000018044, -0.0000018065,0.0000018036,0.0000017994,0.0000017962,0.0000017950, -0.0000017958,0.0000017972,0.0000017973,0.0000017938,0.0000017890, -0.0000017881,0.0000017890,0.0000017930,0.0000018003,0.0000018093, -0.0000018212,0.0000018413,0.0000018656,0.0000018745,0.0000018749, -0.0000018893,0.0000019117,0.0000018959,0.0000018348,0.0000017966, -0.0000017943,0.0000017983,0.0000017986,0.0000017959,0.0000017922, -0.0000017913,0.0000017931,0.0000018017,0.0000018168,0.0000018317, -0.0000018386,0.0000018374,0.0000018317,0.0000018268,0.0000018260, -0.0000018305,0.0000018413,0.0000018522,0.0000018569,0.0000018567, -0.0000018555,0.0000018556,0.0000018571,0.0000018587,0.0000018593, -0.0000018596,0.0000018608,0.0000018622,0.0000018603,0.0000018525, -0.0000018364,0.0000018161,0.0000017984,0.0000017879,0.0000017846, -0.0000017852,0.0000017887,0.0000017943,0.0000017994,0.0000018016, -0.0000018014,0.0000018023,0.0000018053,0.0000018121,0.0000018221, -0.0000018319,0.0000018374,0.0000018389,0.0000018392,0.0000018402, -0.0000018422,0.0000018457,0.0000018505,0.0000018557,0.0000018606, -0.0000018633,0.0000018623,0.0000018550,0.0000018400,0.0000018259, -0.0000018213,0.0000018226,0.0000018277,0.0000018307,0.0000018294, -0.0000018233,0.0000018194,0.0000018243,0.0000018345,0.0000018448, -0.0000018542,0.0000018593,0.0000018584,0.0000018526,0.0000018512, -0.0000018674,0.0000019038,0.0000019348,0.0000019464,0.0000019473, -0.0000019448,0.0000019377,0.0000019262,0.0000019113,0.0000018990, -0.0000018938,0.0000018939,0.0000018991,0.0000019045,0.0000019108, -0.0000019206,0.0000019264,0.0000019248,0.0000019209,0.0000019199, -0.0000019203,0.0000019254,0.0000019454,0.0000019731,0.0000019899, -0.0000019920,0.0000019876,0.0000019792,0.0000019679,0.0000019547, -0.0000019397,0.0000019217,0.0000019066,0.0000019037,0.0000019090, -0.0000019202,0.0000019346,0.0000019564,0.0000019812,0.0000019989, -0.0000020149,0.0000020291,0.0000020274,0.0000020134,0.0000020065, -0.0000020094,0.0000020084,0.0000019993,0.0000019895,0.0000019938, -0.0000020111,0.0000020221,0.0000020220,0.0000020204,0.0000020218, -0.0000020259,0.0000020250,0.0000020144,0.0000019987,0.0000019847, -0.0000019746,0.0000019708,0.0000019750,0.0000019921,0.0000020130, -0.0000020253,0.0000020269,0.0000020058,0.0000019524,0.0000018917, -0.0000018491,0.0000018199,0.0000018033,0.0000018033,0.0000018229, -0.0000018435,0.0000018477,0.0000018458,0.0000018445,0.0000018399, -0.0000018323,0.0000018260,0.0000018227,0.0000018223,0.0000018219, -0.0000018216,0.0000018149,0.0000017912,0.0000017703,0.0000017871, -0.0000018271,0.0000018518,0.0000018549,0.0000018487,0.0000018390, -0.0000018297,0.0000018252,0.0000018286,0.0000018392,0.0000018530, -0.0000018660,0.0000018764,0.0000018820,0.0000018825,0.0000018786, -0.0000018765,0.0000018712,0.0000018718,0.0000018774,0.0000018900, -0.0000018993,0.0000018987,0.0000018821,0.0000018529,0.0000018347, -0.0000018301,0.0000018251,0.0000018218,0.0000018317,0.0000018461, -0.0000018491,0.0000018452,0.0000018500,0.0000018829,0.0000019368, -0.0000019703,0.0000019750,0.0000019742,0.0000019687,0.0000019619, -0.0000019595,0.0000019604,0.0000019637,0.0000019670,0.0000019702, -0.0000019753,0.0000019806,0.0000019831,0.0000019844,0.0000019860, -0.0000019886,0.0000019900,0.0000019900,0.0000019840,0.0000019724, -0.0000019576,0.0000019397,0.0000019225,0.0000019049,0.0000018905, -0.0000018794,0.0000018750,0.0000018638,0.0000018587,0.0000018546, -0.0000018504,0.0000018463,0.0000018437,0.0000018427,0.0000018427, -0.0000018436,0.0000018463,0.0000018513,0.0000018578,0.0000018625, -0.0000018637,0.0000018628,0.0000018618,0.0000018623,0.0000018681, -0.0000018785,0.0000018912,0.0000019074,0.0000019242,0.0000019392, -0.0000019515,0.0000019562,0.0000019574,0.0000019559,0.0000019528, -0.0000019488,0.0000019446,0.0000019406,0.0000019360,0.0000019315, -0.0000019260,0.0000019209,0.0000019160,0.0000019124,0.0000019101, -0.0000019107,0.0000019163,0.0000019281,0.0000019448,0.0000019633, -0.0000019793,0.0000019895,0.0000019949,0.0000019968,0.0000019976, -0.0000019997,0.0000020045,0.0000020106,0.0000020140,0.0000020131, -0.0000020054,0.0000019929,0.0000019808,0.0000019740,0.0000019729, -0.0000019747,0.0000019783,0.0000019814,0.0000019831,0.0000019841, -0.0000019849,0.0000019851,0.0000019848,0.0000019835,0.0000019810, -0.0000019790,0.0000019777,0.0000019774,0.0000019787,0.0000019790, -0.0000019809,0.0000019812,0.0000019780,0.0000019705,0.0000019589, -0.0000019457,0.0000019314,0.0000019169,0.0000019074,0.0000019048, -0.0000019099,0.0000019213,0.0000019395,0.0000019610,0.0000019777, -0.0000019890,0.0000019983,0.0000019981,0.0000019984,0.0000019954, -0.0000019923,0.0000019910,0.0000019931,0.0000019972,0.0000020000, -0.0000019996,0.0000019963,0.0000019914,0.0000019864,0.0000019837, -0.0000019836,0.0000019856,0.0000019887,0.0000019916,0.0000019929, -0.0000019916,0.0000019885,0.0000019846,0.0000019811,0.0000019778, -0.0000019753,0.0000019734,0.0000019720,0.0000019721,0.0000019713, -0.0000019701,0.0000019692,0.0000019699,0.0000019717,0.0000019743, -0.0000019794,0.0000019880,0.0000019993,0.0000020098,0.0000020165, -0.0000020179,0.0000020163,0.0000020134,0.0000020113,0.0000020109, -0.0000020115,0.0000020128,0.0000020150,0.0000020181,0.0000020212, -0.0000020218,0.0000020201,0.0000020177,0.0000020176,0.0000020206, -0.0000020249,0.0000020287,0.0000020317,0.0000020332,0.0000020320, -0.0000020280,0.0000020234,0.0000020211,0.0000020218,0.0000020248, -0.0000020292,0.0000020337,0.0000020378,0.0000020413,0.0000020445, -0.0000020477,0.0000020502,0.0000020509,0.0000020510,0.0000020505, -0.0000020486,0.0000020463,0.0000020443,0.0000020418,0.0000020384, -0.0000020345,0.0000020306,0.0000020263,0.0000020220,0.0000020186, -0.0000020169,0.0000020156,0.0000020144,0.0000020134,0.0000020123, -0.0000020111,0.0000020091,0.0000020064,0.0000020033,0.0000019999, -0.0000019968,0.0000019946,0.0000019939,0.0000019940,0.0000019943, -0.0000019950,0.0000019955,0.0000019960,0.0000019976,0.0000020014, -0.0000020042,0.0000020076,0.0000020094,0.0000020105,0.0000020094, -0.0000020063,0.0000020023,0.0000019974,0.0000019920,0.0000019867, -0.0000019826,0.0000019796,0.0000019775,0.0000019752,0.0000019705, -0.0000019652,0.0000019583,0.0000019502,0.0000019415,0.0000019340, -0.0000019299,0.0000019276,0.0000019273,0.0000019278,0.0000019286, -0.0000019290,0.0000019306,0.0000019368,0.0000019467,0.0000019539, -0.0000019548,0.0000019509,0.0000019449,0.0000019409,0.0000019391, -0.0000019382,0.0000019380,0.0000019408,0.0000019448,0.0000019496, -0.0000019544,0.0000019580,0.0000019588,0.0000019564,0.0000019506, -0.0000019429,0.0000019369,0.0000019341,0.0000019344,0.0000019373, -0.0000019414,0.0000019434,0.0000019406,0.0000019339,0.0000019266, -0.0000019186,0.0000019122,0.0000019093,0.0000019083,0.0000019047, -0.0000018987,0.0000018951,0.0000018955,0.0000018983,0.0000019012, -0.0000019034,0.0000019034,0.0000019010,0.0000018995,0.0000018997, -0.0000018998,0.0000018977,0.0000018927,0.0000018868,0.0000018825, -0.0000018793,0.0000018744,0.0000018665,0.0000018573,0.0000018500, -0.0000018459,0.0000018443,0.0000018442,0.0000018450,0.0000018459, -0.0000018463,0.0000018487,0.0000018531,0.0000018575,0.0000018607, -0.0000018627,0.0000018638,0.0000018641,0.0000018630,0.0000018592, -0.0000018574,0.0000018596,0.0000018632,0.0000018632,0.0000018581, -0.0000018510,0.0000018444,0.0000018380,0.0000018325,0.0000018299, -0.0000018294,0.0000018314,0.0000018329,0.0000018324,0.0000018278, -0.0000018232,0.0000018193,0.0000018154,0.0000018105,0.0000018059, -0.0000018032,0.0000018015,0.0000017993,0.0000017966,0.0000017935, -0.0000017901,0.0000017865,0.0000017829,0.0000017826,0.0000017836, -0.0000017863,0.0000017911,0.0000017972,0.0000018024,0.0000018055, -0.0000018060,0.0000018040,0.0000018006,0.0000017972,0.0000017937, -0.0000017873,0.0000017802,0.0000017737,0.0000017695,0.0000017664, -0.0000017643,0.0000017631,0.0000017611,0.0000017582,0.0000017539, -0.0000017469,0.0000017388,0.0000017335,0.0000017316,0.0000017304, -0.0000017289,0.0000017267,0.0000017217,0.0000017155,0.0000017141, -0.0000017152,0.0000017165,0.0000017360,0.0000017812,0.0000018151, -0.0000018220,0.0000018189,0.0000018112,0.0000018048,0.0000017936, -0.0000017872,0.0000017824,0.0000017782,0.0000017690,0.0000017576, -0.0000017526,0.0000017502,0.0000017507,0.0000017544,0.0000017572, -0.0000017570,0.0000017540,0.0000017489,0.0000017436,0.0000017398, -0.0000017360,0.0000017369,0.0000017397,0.0000017419,0.0000017455, -0.0000017501,0.0000017559,0.0000017622,0.0000017676,0.0000017725, -0.0000017770,0.0000017807,0.0000017847,0.0000017851,0.0000017848, -0.0000017856,0.0000017841,0.0000017819,0.0000017803,0.0000017788, -0.0000017770,0.0000017764,0.0000017735,0.0000017715,0.0000017676, -0.0000017638,0.0000017585,0.0000017511,0.0000017422,0.0000017338, -0.0000017265,0.0000017215,0.0000017192,0.0000017210,0.0000017264, -0.0000017358,0.0000017485,0.0000017622,0.0000017748,0.0000017853, -0.0000017933,0.0000017985,0.0000018039,0.0000018156,0.0000018369, -0.0000018643,0.0000018872,0.0000018995,0.0000019012,0.0000018974, -0.0000018924,0.0000018884,0.0000018876,0.0000018898,0.0000018927, -0.0000018941,0.0000018933,0.0000018910,0.0000018883,0.0000018834, -0.0000018717,0.0000018525,0.0000018261,0.0000017984,0.0000017742, -0.0000017548,0.0000017384,0.0000017244,0.0000017132,0.0000017066, -0.0000017044,0.0000017030,0.0000017046,0.0000017124,0.0000017291, -0.0000017521,0.0000017750,0.0000017934,0.0000018010,0.0000017994, -0.0000017887,0.0000017757,0.0000017654,0.0000017606,0.0000017526, -0.0000017459,0.0000017465,0.0000017468,0.0000017493,0.0000017571, -0.0000017697,0.0000017781,0.0000017816,0.0000017860,0.0000017746, -0.0000017632,0.0000017699,0.0000017751,0.0000017771,0.0000017847, -0.0000017949,0.0000017994,0.0000018023,0.0000018047,0.0000018055, -0.0000018058,0.0000018048,0.0000018015,0.0000017995,0.0000017979, -0.0000017956,0.0000017939,0.0000017948,0.0000017968,0.0000017984, -0.0000017990,0.0000017985,0.0000017970,0.0000017934,0.0000017883, -0.0000017842,0.0000017828,0.0000017841,0.0000017854,0.0000017863, -0.0000017830,0.0000017809,0.0000017746,0.0000017686,0.0000017678, -0.0000017695,0.0000017716,0.0000017729,0.0000017723,0.0000017710, -0.0000017725,0.0000017773,0.0000017806,0.0000017825,0.0000017860, -0.0000017897,0.0000017902,0.0000017890,0.0000017878,0.0000017867, -0.0000017856,0.0000017854,0.0000017877,0.0000017945,0.0000018045, -0.0000018104,0.0000018101,0.0000018075,0.0000018087,0.0000018135, -0.0000018186,0.0000018293,0.0000018430,0.0000018517,0.0000018635, -0.0000018769,0.0000018761,0.0000018665,0.0000018607,0.0000018545, -0.0000018461,0.0000018432,0.0000018416,0.0000018283,0.0000018119, -0.0000018145,0.0000018285,0.0000018317,0.0000018286,0.0000018249, -0.0000018273,0.0000018358,0.0000018396,0.0000018273,0.0000018041, -0.0000017947,0.0000017996,0.0000018026,0.0000018032,0.0000018112, -0.0000018235,0.0000018335,0.0000018443,0.0000018560,0.0000018622, -0.0000018636,0.0000018654,0.0000018693,0.0000018745,0.0000018791, -0.0000018820,0.0000018840,0.0000018861,0.0000018879,0.0000018894, -0.0000018908,0.0000018922,0.0000018943,0.0000018945,0.0000018927, -0.0000018914,0.0000018922,0.0000018946,0.0000018932,0.0000018807, -0.0000018594,0.0000018347,0.0000018078,0.0000017899,0.0000017833, -0.0000017718,0.0000017570,0.0000017527,0.0000017554,0.0000017597, -0.0000017638,0.0000017681,0.0000017731,0.0000017768,0.0000017778, -0.0000017785,0.0000017907,0.0000018110,0.0000018191,0.0000018158, -0.0000018081,0.0000018179,0.0000018463,0.0000018599,0.0000018658, -0.0000018956,0.0000019401,0.0000019572,0.0000019577,0.0000019449, -0.0000019156,0.0000018856,0.0000018718,0.0000018675,0.0000018630, -0.0000018610,0.0000018555,0.0000018474,0.0000018438,0.0000018414, -0.0000018364,0.0000018288,0.0000018176,0.0000018081,0.0000018060, -0.0000018072,0.0000018063,0.0000018015,0.0000017951,0.0000017888, -0.0000017846,0.0000017840,0.0000017875,0.0000017908,0.0000017898, -0.0000017847,0.0000017826,0.0000017880,0.0000017947,0.0000017970, -0.0000017948,0.0000017922,0.0000017908,0.0000017907,0.0000017901, -0.0000017903,0.0000017914,0.0000017922,0.0000017910,0.0000017891, -0.0000017900,0.0000017946,0.0000018020,0.0000018098,0.0000018170, -0.0000018255,0.0000018425,0.0000018663,0.0000018747,0.0000018779, -0.0000018987,0.0000019095,0.0000018635,0.0000018032,0.0000017943, -0.0000017999,0.0000018024,0.0000018005,0.0000017960,0.0000017921, -0.0000017912,0.0000017921,0.0000017959,0.0000018037,0.0000018151, -0.0000018249,0.0000018289,0.0000018268,0.0000018215,0.0000018182, -0.0000018191,0.0000018263,0.0000018368,0.0000018447,0.0000018473, -0.0000018466,0.0000018460,0.0000018469,0.0000018488,0.0000018510, -0.0000018524,0.0000018537,0.0000018560,0.0000018598,0.0000018620, -0.0000018556,0.0000018381,0.0000018148,0.0000017960,0.0000017877, -0.0000017871,0.0000017897,0.0000017951,0.0000018006,0.0000018023, -0.0000018008,0.0000017995,0.0000018009,0.0000018087,0.0000018212, -0.0000018324,0.0000018384,0.0000018401,0.0000018421,0.0000018457, -0.0000018504,0.0000018547,0.0000018573,0.0000018581,0.0000018565, -0.0000018530,0.0000018475,0.0000018393,0.0000018303,0.0000018246, -0.0000018232,0.0000018254,0.0000018298,0.0000018318,0.0000018286, -0.0000018184,0.0000018117,0.0000018149,0.0000018242,0.0000018323, -0.0000018442,0.0000018507,0.0000018502,0.0000018470,0.0000018560, -0.0000018909,0.0000019334,0.0000019544,0.0000019578,0.0000019576, -0.0000019568,0.0000019563,0.0000019530,0.0000019430,0.0000019286, -0.0000019153,0.0000019071,0.0000019046,0.0000019071,0.0000019175, -0.0000019351,0.0000019446,0.0000019404,0.0000019283,0.0000019212, -0.0000019204,0.0000019249,0.0000019465,0.0000019783,0.0000019966, -0.0000019974,0.0000019919,0.0000019837,0.0000019717,0.0000019585, -0.0000019445,0.0000019254,0.0000019094,0.0000019071,0.0000019139, -0.0000019272,0.0000019485,0.0000019769,0.0000019992,0.0000020164, -0.0000020309,0.0000020299,0.0000020157,0.0000020092,0.0000020131, -0.0000020124,0.0000020031,0.0000019935,0.0000019976,0.0000020141, -0.0000020237,0.0000020230,0.0000020220,0.0000020241,0.0000020255, -0.0000020206,0.0000020071,0.0000019913,0.0000019779,0.0000019689, -0.0000019668,0.0000019783,0.0000020004,0.0000020191,0.0000020257, -0.0000020205,0.0000019818,0.0000019195,0.0000018686,0.0000018339, -0.0000018087,0.0000018012,0.0000018172,0.0000018369,0.0000018425, -0.0000018364,0.0000018333,0.0000018347,0.0000018348,0.0000018305, -0.0000018239,0.0000018188,0.0000018174,0.0000018208,0.0000018215, -0.0000018100,0.0000017877,0.0000017820,0.0000018082,0.0000018414, -0.0000018514,0.0000018457,0.0000018331,0.0000018237,0.0000018224, -0.0000018270,0.0000018397,0.0000018555,0.0000018684,0.0000018746, -0.0000018772,0.0000018786,0.0000018769,0.0000018804,0.0000018853, -0.0000018924,0.0000019004,0.0000019026,0.0000018950,0.0000018761, -0.0000018498,0.0000018248,0.0000018168,0.0000018214,0.0000018229, -0.0000018214,0.0000018267,0.0000018411,0.0000018493,0.0000018480, -0.0000018462,0.0000018577,0.0000018989,0.0000019490,0.0000019714, -0.0000019746,0.0000019764,0.0000019740,0.0000019704,0.0000019701, -0.0000019726,0.0000019750,0.0000019770,0.0000019814,0.0000019868, -0.0000019899,0.0000019921,0.0000019929,0.0000019919,0.0000019882, -0.0000019787,0.0000019640,0.0000019454,0.0000019286,0.0000019131, -0.0000019030,0.0000018944,0.0000018863,0.0000018816,0.0000018750, -0.0000018675,0.0000018593,0.0000018505,0.0000018443,0.0000018404, -0.0000018383,0.0000018372,0.0000018368,0.0000018370,0.0000018374, -0.0000018398,0.0000018438,0.0000018492,0.0000018555,0.0000018574, -0.0000018626,0.0000018678,0.0000018773,0.0000018911,0.0000019055, -0.0000019206,0.0000019347,0.0000019423,0.0000019467,0.0000019447, -0.0000019406,0.0000019354,0.0000019319,0.0000019289,0.0000019267, -0.0000019255,0.0000019247,0.0000019240,0.0000019232,0.0000019223, -0.0000019228,0.0000019234,0.0000019246,0.0000019234,0.0000019248, -0.0000019250,0.0000019268,0.0000019301,0.0000019374,0.0000019479, -0.0000019592,0.0000019698,0.0000019786,0.0000019856,0.0000019918, -0.0000019986,0.0000020048,0.0000020085,0.0000020078,0.0000020031, -0.0000019962,0.0000019890,0.0000019838,0.0000019819,0.0000019817, -0.0000019824,0.0000019826,0.0000019831,0.0000019846,0.0000019863, -0.0000019869,0.0000019874,0.0000019875,0.0000019856,0.0000019827, -0.0000019792,0.0000019754,0.0000019707,0.0000019630,0.0000019520, -0.0000019400,0.0000019287,0.0000019176,0.0000019080,0.0000019107, -0.0000019066,0.0000019110,0.0000019226,0.0000019413,0.0000019631, -0.0000019789,0.0000019906,0.0000019986,0.0000019989,0.0000019996, -0.0000019976,0.0000019951,0.0000019929,0.0000019919,0.0000019916, -0.0000019923,0.0000019925,0.0000019910,0.0000019872,0.0000019816, -0.0000019754,0.0000019703,0.0000019677,0.0000019683,0.0000019715, -0.0000019758,0.0000019795,0.0000019808,0.0000019798,0.0000019771, -0.0000019743,0.0000019723,0.0000019729,0.0000019733,0.0000019755, -0.0000019767,0.0000019773,0.0000019769,0.0000019749,0.0000019718, -0.0000019690,0.0000019669,0.0000019658,0.0000019666,0.0000019708, -0.0000019793,0.0000019902,0.0000020005,0.0000020072,0.0000020099, -0.0000020100,0.0000020092,0.0000020092,0.0000020099,0.0000020117, -0.0000020142,0.0000020166,0.0000020173,0.0000020164,0.0000020138, -0.0000020127,0.0000020141,0.0000020177,0.0000020223,0.0000020263, -0.0000020282,0.0000020273,0.0000020240,0.0000020198,0.0000020170, -0.0000020164,0.0000020171,0.0000020197,0.0000020235,0.0000020284, -0.0000020337,0.0000020385,0.0000020416,0.0000020427,0.0000020423, -0.0000020399,0.0000020360,0.0000020316,0.0000020270,0.0000020216, -0.0000020163,0.0000020118,0.0000020076,0.0000020042,0.0000020015, -0.0000019984,0.0000019948,0.0000019914,0.0000019893,0.0000019881, -0.0000019876,0.0000019871,0.0000019861,0.0000019850,0.0000019846, -0.0000019848,0.0000019845,0.0000019841,0.0000019840,0.0000019846, -0.0000019863,0.0000019881,0.0000019895,0.0000019906,0.0000019915, -0.0000019925,0.0000019935,0.0000019970,0.0000020003,0.0000020036, -0.0000020070,0.0000020087,0.0000020098,0.0000020090,0.0000020065, -0.0000020018,0.0000019957,0.0000019888,0.0000019822,0.0000019774, -0.0000019740,0.0000019721,0.0000019701,0.0000019675,0.0000019638, -0.0000019592,0.0000019530,0.0000019465,0.0000019422,0.0000019399, -0.0000019385,0.0000019379,0.0000019371,0.0000019370,0.0000019388, -0.0000019440,0.0000019525,0.0000019593,0.0000019600,0.0000019571, -0.0000019507,0.0000019445,0.0000019412,0.0000019395,0.0000019382, -0.0000019383,0.0000019410,0.0000019455,0.0000019519,0.0000019575, -0.0000019602,0.0000019596,0.0000019559,0.0000019487,0.0000019428, -0.0000019395,0.0000019383,0.0000019392,0.0000019433,0.0000019490, -0.0000019506,0.0000019456,0.0000019365,0.0000019266,0.0000019184, -0.0000019134,0.0000019112,0.0000019091,0.0000019051,0.0000019000, -0.0000018988,0.0000019018,0.0000019052,0.0000019084,0.0000019100, -0.0000019081,0.0000019045,0.0000019020,0.0000019011,0.0000019006, -0.0000018974,0.0000018913,0.0000018855,0.0000018812,0.0000018775, -0.0000018730,0.0000018660,0.0000018576,0.0000018505,0.0000018467, -0.0000018462,0.0000018484,0.0000018515,0.0000018525,0.0000018539, -0.0000018578,0.0000018631,0.0000018672,0.0000018690,0.0000018687, -0.0000018675,0.0000018655,0.0000018621,0.0000018591,0.0000018600, -0.0000018642,0.0000018674,0.0000018657,0.0000018604,0.0000018540, -0.0000018461,0.0000018375,0.0000018312,0.0000018288,0.0000018293, -0.0000018316,0.0000018326,0.0000018302,0.0000018267,0.0000018232, -0.0000018202,0.0000018167,0.0000018133,0.0000018117,0.0000018106, -0.0000018078,0.0000018038,0.0000017992,0.0000017938,0.0000017881, -0.0000017839,0.0000017823,0.0000017818,0.0000017835,0.0000017874, -0.0000017910,0.0000017957,0.0000017986,0.0000017988,0.0000017975, -0.0000017951,0.0000017935,0.0000017921,0.0000017899,0.0000017867, -0.0000017821,0.0000017791,0.0000017764,0.0000017734,0.0000017703, -0.0000017665,0.0000017626,0.0000017595,0.0000017558,0.0000017486, -0.0000017398,0.0000017343,0.0000017319,0.0000017300,0.0000017277, -0.0000017246,0.0000017193,0.0000017154,0.0000017132,0.0000017120, -0.0000017206,0.0000017587,0.0000018023,0.0000018216,0.0000018203, -0.0000018128,0.0000018059,0.0000017962,0.0000017898,0.0000017848, -0.0000017807,0.0000017747,0.0000017649,0.0000017561,0.0000017496, -0.0000017462,0.0000017463,0.0000017437,0.0000017404,0.0000017372, -0.0000017331,0.0000017327,0.0000017357,0.0000017388,0.0000017440, -0.0000017499,0.0000017556,0.0000017620,0.0000017689,0.0000017756, -0.0000017814,0.0000017853,0.0000017879,0.0000017886,0.0000017883, -0.0000017867,0.0000017822,0.0000017779,0.0000017742,0.0000017703, -0.0000017668,0.0000017646,0.0000017638,0.0000017643,0.0000017661, -0.0000017689,0.0000017716,0.0000017726,0.0000017743,0.0000017724, -0.0000017665,0.0000017583,0.0000017486,0.0000017383,0.0000017293, -0.0000017224,0.0000017184,0.0000017170,0.0000017198,0.0000017278, -0.0000017400,0.0000017549,0.0000017702,0.0000017838,0.0000017933, -0.0000017984,0.0000018032,0.0000018151,0.0000018373,0.0000018648, -0.0000018881,0.0000018996,0.0000018993,0.0000018970,0.0000018948, -0.0000018951,0.0000018972,0.0000018998,0.0000019009,0.0000019000, -0.0000018971,0.0000018905,0.0000018757,0.0000018490,0.0000018160, -0.0000017862,0.0000017638,0.0000017487,0.0000017378,0.0000017275, -0.0000017164,0.0000017072,0.0000017020,0.0000016989,0.0000016959, -0.0000016935,0.0000016975,0.0000017124,0.0000017344,0.0000017588, -0.0000017813,0.0000017982,0.0000017999,0.0000017906,0.0000017782, -0.0000017670,0.0000017594,0.0000017489,0.0000017436,0.0000017456, -0.0000017468,0.0000017512,0.0000017613,0.0000017743,0.0000017804, -0.0000017844,0.0000017842,0.0000017684,0.0000017652,0.0000017728, -0.0000017751,0.0000017801,0.0000017921,0.0000018009,0.0000018059, -0.0000018089,0.0000018083,0.0000018061,0.0000018035,0.0000018010, -0.0000018000,0.0000017990,0.0000017977,0.0000017973,0.0000017984, -0.0000018005,0.0000018022,0.0000018025,0.0000018014,0.0000017996, -0.0000017979,0.0000017965,0.0000017925,0.0000017852,0.0000017810, -0.0000017798,0.0000017811,0.0000017824,0.0000017782,0.0000017778, -0.0000017755,0.0000017739,0.0000017736,0.0000017728,0.0000017723, -0.0000017710,0.0000017689,0.0000017678,0.0000017713,0.0000017758, -0.0000017777,0.0000017796,0.0000017826,0.0000017840,0.0000017843, -0.0000017843,0.0000017839,0.0000017829,0.0000017826,0.0000017848, -0.0000017894,0.0000017970,0.0000018056,0.0000018096,0.0000018071, -0.0000018046,0.0000018087,0.0000018149,0.0000018216,0.0000018348, -0.0000018467,0.0000018556,0.0000018702,0.0000018782,0.0000018716, -0.0000018623,0.0000018578,0.0000018497,0.0000018432,0.0000018426, -0.0000018385,0.0000018209,0.0000018094,0.0000018191,0.0000018318, -0.0000018326,0.0000018303,0.0000018294,0.0000018340,0.0000018375, -0.0000018280,0.0000018052,0.0000017935,0.0000017967,0.0000018006, -0.0000017999,0.0000018055,0.0000018185,0.0000018291,0.0000018381, -0.0000018502,0.0000018613,0.0000018671,0.0000018699,0.0000018736, -0.0000018787,0.0000018839,0.0000018874,0.0000018897,0.0000018913, -0.0000018918,0.0000018917,0.0000018915,0.0000018923,0.0000018937, -0.0000018938,0.0000018918,0.0000018890,0.0000018874,0.0000018899, -0.0000018927,0.0000018861,0.0000018658,0.0000018393,0.0000018106, -0.0000017900,0.0000017827,0.0000017721,0.0000017593,0.0000017579, -0.0000017624,0.0000017669,0.0000017693,0.0000017715,0.0000017744, -0.0000017764,0.0000017759,0.0000017755,0.0000017869,0.0000018082, -0.0000018178,0.0000018141,0.0000018071,0.0000018194,0.0000018482, -0.0000018618,0.0000018636,0.0000018763,0.0000019044,0.0000019154, -0.0000019103,0.0000018926,0.0000018775,0.0000018725,0.0000018690, -0.0000018642,0.0000018629,0.0000018578,0.0000018487,0.0000018440, -0.0000018413,0.0000018351,0.0000018251,0.0000018120,0.0000018025, -0.0000018014,0.0000018009,0.0000017961,0.0000017891,0.0000017818, -0.0000017749,0.0000017702,0.0000017710,0.0000017778,0.0000017839, -0.0000017828,0.0000017788,0.0000017806,0.0000017873,0.0000017901, -0.0000017883,0.0000017877,0.0000017904,0.0000017944,0.0000017971, -0.0000017985,0.0000017989,0.0000017990,0.0000017993,0.0000017996, -0.0000017991,0.0000018001,0.0000018047,0.0000018129,0.0000018198, -0.0000018250,0.0000018313,0.0000018443,0.0000018659,0.0000018749, -0.0000018822,0.0000019045,0.0000018930,0.0000018272,0.0000017944, -0.0000017993,0.0000018057,0.0000018048,0.0000018015,0.0000017973, -0.0000017942,0.0000017928,0.0000017922,0.0000017922,0.0000017929, -0.0000017970,0.0000018042,0.0000018120,0.0000018168,0.0000018162, -0.0000018122,0.0000018094,0.0000018107,0.0000018170,0.0000018262, -0.0000018335,0.0000018366,0.0000018372,0.0000018375,0.0000018383, -0.0000018403,0.0000018433,0.0000018463,0.0000018493,0.0000018544, -0.0000018609,0.0000018622,0.0000018529,0.0000018288,0.0000018036, -0.0000017907,0.0000017892,0.0000017913,0.0000017960,0.0000018008, -0.0000018020,0.0000017995,0.0000017972,0.0000017980,0.0000018070, -0.0000018204,0.0000018315,0.0000018368,0.0000018397,0.0000018440, -0.0000018499,0.0000018539,0.0000018555,0.0000018528,0.0000018466, -0.0000018394,0.0000018340,0.0000018307,0.0000018273,0.0000018261, -0.0000018254,0.0000018263,0.0000018292,0.0000018329,0.0000018340, -0.0000018287,0.0000018177,0.0000018128,0.0000018210,0.0000018298, -0.0000018310,0.0000018342,0.0000018373,0.0000018407,0.0000018475, -0.0000018741,0.0000019195,0.0000019536,0.0000019638,0.0000019663, -0.0000019673,0.0000019668,0.0000019662,0.0000019657,0.0000019634, -0.0000019566,0.0000019449,0.0000019321,0.0000019235,0.0000019224, -0.0000019338,0.0000019548,0.0000019666,0.0000019607,0.0000019416, -0.0000019255,0.0000019205,0.0000019241,0.0000019478,0.0000019824, -0.0000019990,0.0000019984,0.0000019937,0.0000019861,0.0000019723, -0.0000019589,0.0000019451,0.0000019240,0.0000019099,0.0000019105, -0.0000019209,0.0000019409,0.0000019714,0.0000019985,0.0000020179, -0.0000020330,0.0000020324,0.0000020181,0.0000020119,0.0000020169, -0.0000020169,0.0000020072,0.0000019977,0.0000020014,0.0000020173, -0.0000020259,0.0000020250,0.0000020241,0.0000020257,0.0000020248, -0.0000020152,0.0000019997,0.0000019849,0.0000019719,0.0000019631, -0.0000019660,0.0000019833,0.0000020067,0.0000020211,0.0000020251, -0.0000020046,0.0000019516,0.0000018913,0.0000018498,0.0000018194, -0.0000018037,0.0000018092,0.0000018297,0.0000018390,0.0000018286, -0.0000018218,0.0000018252,0.0000018305,0.0000018298,0.0000018231, -0.0000018126,0.0000018017,0.0000018003,0.0000018110,0.0000018168, -0.0000018041,0.0000017910,0.0000017954,0.0000018279,0.0000018482, -0.0000018448,0.0000018293,0.0000018181,0.0000018182,0.0000018253, -0.0000018402,0.0000018560,0.0000018668,0.0000018718,0.0000018744, -0.0000018777,0.0000018851,0.0000018931,0.0000019025,0.0000019110, -0.0000019094,0.0000018960,0.0000018712,0.0000018414,0.0000018138, -0.0000017986,0.0000018021,0.0000018129,0.0000018204,0.0000018217, -0.0000018264,0.0000018383,0.0000018481,0.0000018487,0.0000018463, -0.0000018484,0.0000018713,0.0000019183,0.0000019578,0.0000019700, -0.0000019735,0.0000019768,0.0000019762,0.0000019755,0.0000019759, -0.0000019763,0.0000019771,0.0000019816,0.0000019884,0.0000019930, -0.0000019946,0.0000019943,0.0000019897,0.0000019757,0.0000019565, -0.0000019372,0.0000019204,0.0000019116,0.0000019055,0.0000019030, -0.0000018992,0.0000018902,0.0000018766,0.0000018610,0.0000018486, -0.0000018401,0.0000018340,0.0000018314,0.0000018315,0.0000018324, -0.0000018327,0.0000018322,0.0000018313,0.0000018310,0.0000018337, -0.0000018376,0.0000018431,0.0000018512,0.0000018623,0.0000018735, -0.0000018859,0.0000018970,0.0000019108,0.0000019255,0.0000019327, -0.0000019340,0.0000019324,0.0000019281,0.0000019212,0.0000019146, -0.0000019110,0.0000019076,0.0000019060,0.0000019049,0.0000019041, -0.0000019039,0.0000019039,0.0000019041,0.0000019041,0.0000019050, -0.0000019065,0.0000019094,0.0000019139,0.0000019188,0.0000019236, -0.0000019278,0.0000019302,0.0000019324,0.0000019347,0.0000019371, -0.0000019411,0.0000019459,0.0000019531,0.0000019601,0.0000019651, -0.0000019707,0.0000019771,0.0000019830,0.0000019877,0.0000019906, -0.0000019916,0.0000019906,0.0000019887,0.0000019877,0.0000019869, -0.0000019858,0.0000019839,0.0000019826,0.0000019827,0.0000019830, -0.0000019821,0.0000019797,0.0000019748,0.0000019667,0.0000019561, -0.0000019452,0.0000019360,0.0000019264,0.0000019154,0.0000019046, -0.0000019027,0.0000019012,0.0000019029,0.0000019113,0.0000019241, -0.0000019406,0.0000019598,0.0000019762,0.0000019901,0.0000019992, -0.0000019994,0.0000019992,0.0000019983,0.0000019975,0.0000019967, -0.0000019958,0.0000019949,0.0000019937,0.0000019917,0.0000019892, -0.0000019857,0.0000019802,0.0000019730,0.0000019653,0.0000019587, -0.0000019543,0.0000019525,0.0000019530,0.0000019551,0.0000019585, -0.0000019624,0.0000019649,0.0000019664,0.0000019677,0.0000019705, -0.0000019722,0.0000019763,0.0000019810,0.0000019849,0.0000019876, -0.0000019892,0.0000019897,0.0000019886,0.0000019843,0.0000019771, -0.0000019695,0.0000019645,0.0000019623,0.0000019626,0.0000019672, -0.0000019763,0.0000019869,0.0000019965,0.0000020033,0.0000020071, -0.0000020094,0.0000020108,0.0000020120,0.0000020130,0.0000020133, -0.0000020127,0.0000020118,0.0000020119,0.0000020122,0.0000020123, -0.0000020126,0.0000020139,0.0000020166,0.0000020196,0.0000020202, -0.0000020192,0.0000020175,0.0000020158,0.0000020143,0.0000020141, -0.0000020153,0.0000020183,0.0000020230,0.0000020281,0.0000020319, -0.0000020331,0.0000020328,0.0000020312,0.0000020288,0.0000020260, -0.0000020224,0.0000020180,0.0000020134,0.0000020086,0.0000020038, -0.0000019997,0.0000019955,0.0000019921,0.0000019892,0.0000019863, -0.0000019828,0.0000019790,0.0000019755,0.0000019726,0.0000019705, -0.0000019685,0.0000019660,0.0000019636,0.0000019631,0.0000019645, -0.0000019659,0.0000019670,0.0000019684,0.0000019706,0.0000019736, -0.0000019765,0.0000019782,0.0000019787,0.0000019787,0.0000019789, -0.0000019801,0.0000019831,0.0000019877,0.0000019915,0.0000019963, -0.0000019994,0.0000020016,0.0000020024,0.0000020007,0.0000019985, -0.0000019937,0.0000019870,0.0000019796,0.0000019737,0.0000019689, -0.0000019665,0.0000019660,0.0000019658,0.0000019643,0.0000019619, -0.0000019578,0.0000019539,0.0000019501,0.0000019477,0.0000019454, -0.0000019431,0.0000019416,0.0000019413,0.0000019440,0.0000019499, -0.0000019571,0.0000019623,0.0000019627,0.0000019603,0.0000019551, -0.0000019479,0.0000019425,0.0000019399,0.0000019390,0.0000019392, -0.0000019398,0.0000019427,0.0000019477,0.0000019541,0.0000019586, -0.0000019590,0.0000019566,0.0000019507,0.0000019454,0.0000019432, -0.0000019422,0.0000019415,0.0000019428,0.0000019485,0.0000019541, -0.0000019550,0.0000019495,0.0000019389,0.0000019276,0.0000019197, -0.0000019150,0.0000019109,0.0000019079,0.0000019032,0.0000019001, -0.0000019023,0.0000019064,0.0000019106,0.0000019137,0.0000019147, -0.0000019123,0.0000019078,0.0000019038,0.0000019023,0.0000019012, -0.0000018968,0.0000018905,0.0000018844,0.0000018793,0.0000018760, -0.0000018728,0.0000018674,0.0000018606,0.0000018546,0.0000018517, -0.0000018524,0.0000018555,0.0000018575,0.0000018587,0.0000018619, -0.0000018677,0.0000018735,0.0000018762,0.0000018756,0.0000018726, -0.0000018690,0.0000018657,0.0000018621,0.0000018611,0.0000018640, -0.0000018680,0.0000018693,0.0000018669,0.0000018625,0.0000018561, -0.0000018470,0.0000018375,0.0000018307,0.0000018284,0.0000018290, -0.0000018309,0.0000018311,0.0000018295,0.0000018263,0.0000018230, -0.0000018196,0.0000018170,0.0000018175,0.0000018188,0.0000018179, -0.0000018149,0.0000018104,0.0000018047,0.0000017988,0.0000017941, -0.0000017914,0.0000017905,0.0000017905,0.0000017913,0.0000017934, -0.0000017957,0.0000017962,0.0000017949,0.0000017918,0.0000017877, -0.0000017857,0.0000017856,0.0000017858,0.0000017849,0.0000017833, -0.0000017820,0.0000017818,0.0000017806,0.0000017778,0.0000017732, -0.0000017674,0.0000017629,0.0000017606,0.0000017567,0.0000017480, -0.0000017392,0.0000017348,0.0000017328,0.0000017296,0.0000017257, -0.0000017224,0.0000017182,0.0000017131,0.0000017104,0.0000017124, -0.0000017365,0.0000017835,0.0000018150,0.0000018200,0.0000018155, -0.0000018076,0.0000018002,0.0000017932,0.0000017882,0.0000017840, -0.0000017803,0.0000017743,0.0000017664,0.0000017596,0.0000017548, -0.0000017517,0.0000017489,0.0000017460,0.0000017441,0.0000017449, -0.0000017485,0.0000017536,0.0000017593,0.0000017656,0.0000017714, -0.0000017764,0.0000017814,0.0000017849,0.0000017880,0.0000017886, -0.0000017887,0.0000017869,0.0000017835,0.0000017784,0.0000017720, -0.0000017638,0.0000017545,0.0000017466,0.0000017391,0.0000017330, -0.0000017295,0.0000017293,0.0000017321,0.0000017376,0.0000017437, -0.0000017509,0.0000017592,0.0000017666,0.0000017719,0.0000017725, -0.0000017712,0.0000017642,0.0000017551,0.0000017452,0.0000017351, -0.0000017258,0.0000017184,0.0000017148,0.0000017134,0.0000017207, -0.0000017333,0.0000017490,0.0000017653,0.0000017798,0.0000017899, -0.0000017950,0.0000018004,0.0000018133,0.0000018363,0.0000018633, -0.0000018841,0.0000018952,0.0000018990,0.0000019025,0.0000019056, -0.0000019082,0.0000019090,0.0000019073,0.0000019021,0.0000018929, -0.0000018731,0.0000018420,0.0000018062,0.0000017764,0.0000017563, -0.0000017440,0.0000017358,0.0000017291,0.0000017220,0.0000017136, -0.0000017061,0.0000016994,0.0000016953,0.0000016913,0.0000016879, -0.0000016902,0.0000017003,0.0000017185,0.0000017413,0.0000017672, -0.0000017905,0.0000017988,0.0000017935,0.0000017804,0.0000017672, -0.0000017572,0.0000017462,0.0000017428,0.0000017446,0.0000017474, -0.0000017544,0.0000017669,0.0000017790,0.0000017827,0.0000017864, -0.0000017796,0.0000017652,0.0000017675,0.0000017732,0.0000017754, -0.0000017851,0.0000017989,0.0000018075,0.0000018108,0.0000018087, -0.0000018037,0.0000017996,0.0000017981,0.0000017977,0.0000017962, -0.0000017936,0.0000017922,0.0000017942,0.0000017989,0.0000018027, -0.0000018062,0.0000018065,0.0000018045,0.0000017999,0.0000017974, -0.0000017975,0.0000017963,0.0000017881,0.0000017791,0.0000017764, -0.0000017774,0.0000017742,0.0000017746,0.0000017748,0.0000017752, -0.0000017773,0.0000017785,0.0000017780,0.0000017752,0.0000017708, -0.0000017667,0.0000017666,0.0000017696,0.0000017725,0.0000017743, -0.0000017766,0.0000017782,0.0000017797,0.0000017810,0.0000017813, -0.0000017803,0.0000017793,0.0000017811,0.0000017853,0.0000017906, -0.0000017979,0.0000018051,0.0000018065,0.0000018022,0.0000018026, -0.0000018103,0.0000018167,0.0000018256,0.0000018401,0.0000018498, -0.0000018617,0.0000018774,0.0000018773,0.0000018663,0.0000018598, -0.0000018541,0.0000018462,0.0000018432,0.0000018428,0.0000018324, -0.0000018135,0.0000018100,0.0000018246,0.0000018331,0.0000018335, -0.0000018331,0.0000018339,0.0000018356,0.0000018293,0.0000018080, -0.0000017916,0.0000017936,0.0000017992,0.0000017980,0.0000018004, -0.0000018126,0.0000018252,0.0000018333,0.0000018429,0.0000018563, -0.0000018681,0.0000018750,0.0000018794,0.0000018840,0.0000018891, -0.0000018932,0.0000018960,0.0000018974,0.0000018974,0.0000018962, -0.0000018950,0.0000018942,0.0000018937,0.0000018929,0.0000018911, -0.0000018878,0.0000018844,0.0000018848,0.0000018897,0.0000018894, -0.0000018727,0.0000018450,0.0000018144,0.0000017906,0.0000017818, -0.0000017726,0.0000017632,0.0000017630,0.0000017688,0.0000017726, -0.0000017734,0.0000017740,0.0000017751,0.0000017756,0.0000017733, -0.0000017720,0.0000017842,0.0000018069,0.0000018173,0.0000018123, -0.0000018063,0.0000018207,0.0000018486,0.0000018626,0.0000018639, -0.0000018656,0.0000018735,0.0000018772,0.0000018746,0.0000018723, -0.0000018718,0.0000018684,0.0000018653,0.0000018648,0.0000018595, -0.0000018496,0.0000018436,0.0000018402,0.0000018326,0.0000018204, -0.0000018066,0.0000017983,0.0000017962,0.0000017921,0.0000017845, -0.0000017771,0.0000017706,0.0000017647,0.0000017616,0.0000017630, -0.0000017705,0.0000017761,0.0000017746,0.0000017736,0.0000017798, -0.0000017845,0.0000017849,0.0000017867,0.0000017911,0.0000017961, -0.0000017990,0.0000018007,0.0000018019,0.0000018025,0.0000018029, -0.0000018052,0.0000018084,0.0000018105,0.0000018134,0.0000018160, -0.0000018209,0.0000018250,0.0000018291,0.0000018358,0.0000018463, -0.0000018646,0.0000018750,0.0000018867,0.0000019067,0.0000018731, -0.0000018044,0.0000017949,0.0000018059,0.0000018083,0.0000018057, -0.0000018030,0.0000018013,0.0000018002,0.0000017986,0.0000017962, -0.0000017936,0.0000017911,0.0000017896,0.0000017890,0.0000017923, -0.0000017987,0.0000018047,0.0000018065,0.0000018040,0.0000018006, -0.0000018001,0.0000018051,0.0000018144,0.0000018232,0.0000018281, -0.0000018297,0.0000018299,0.0000018300,0.0000018323,0.0000018368, -0.0000018421,0.0000018483,0.0000018564,0.0000018619,0.0000018569, -0.0000018339,0.0000018067,0.0000017915,0.0000017904,0.0000017935, -0.0000017979,0.0000018011,0.0000018007,0.0000017972,0.0000017948, -0.0000017972,0.0000018073,0.0000018202,0.0000018292,0.0000018340, -0.0000018385,0.0000018438,0.0000018477,0.0000018474,0.0000018429, -0.0000018360,0.0000018296,0.0000018259,0.0000018266,0.0000018282, -0.0000018291,0.0000018306,0.0000018320,0.0000018334,0.0000018352, -0.0000018371,0.0000018360,0.0000018281,0.0000018178,0.0000018192, -0.0000018399,0.0000018555,0.0000018509,0.0000018381,0.0000018345, -0.0000018404,0.0000018612,0.0000019016,0.0000019436,0.0000019648, -0.0000019722,0.0000019787,0.0000019826,0.0000019827,0.0000019807, -0.0000019770,0.0000019741,0.0000019718,0.0000019675,0.0000019601, -0.0000019521,0.0000019496,0.0000019574,0.0000019732,0.0000019830, -0.0000019776,0.0000019560,0.0000019321,0.0000019207,0.0000019242, -0.0000019507,0.0000019856,0.0000019998,0.0000019984,0.0000019957, -0.0000019862,0.0000019697,0.0000019574,0.0000019408,0.0000019185, -0.0000019111,0.0000019165,0.0000019339,0.0000019651,0.0000019968, -0.0000020191,0.0000020352,0.0000020351,0.0000020202,0.0000020139, -0.0000020202,0.0000020212,0.0000020120,0.0000020025,0.0000020055, -0.0000020205,0.0000020280,0.0000020268,0.0000020267,0.0000020275, -0.0000020233,0.0000020098,0.0000019928,0.0000019783,0.0000019661, -0.0000019609,0.0000019681,0.0000019897,0.0000020120,0.0000020211, -0.0000020171,0.0000019799,0.0000019196,0.0000018684,0.0000018325, -0.0000018110,0.0000018078,0.0000018260,0.0000018321,0.0000018242, -0.0000018095,0.0000018108,0.0000018215,0.0000018255,0.0000018208, -0.0000018116,0.0000017993,0.0000017883,0.0000017895,0.0000018044, -0.0000018122,0.0000018013,0.0000017946,0.0000018137,0.0000018411, -0.0000018447,0.0000018292,0.0000018141,0.0000018128,0.0000018230, -0.0000018393,0.0000018546,0.0000018636,0.0000018677,0.0000018729, -0.0000018803,0.0000018927,0.0000019065,0.0000019154,0.0000019179, -0.0000019103,0.0000018876,0.0000018509,0.0000018140,0.0000017914, -0.0000017891,0.0000017953,0.0000018101,0.0000018205,0.0000018244, -0.0000018296,0.0000018401,0.0000018483,0.0000018490,0.0000018467, -0.0000018463,0.0000018553,0.0000018889,0.0000019346,0.0000019610, -0.0000019667,0.0000019691,0.0000019712,0.0000019711,0.0000019703, -0.0000019692,0.0000019696,0.0000019748,0.0000019829,0.0000019897, -0.0000019915,0.0000019868,0.0000019726,0.0000019524,0.0000019319, -0.0000019155,0.0000019087,0.0000019085,0.0000019095,0.0000019028, -0.0000018861,0.0000018651,0.0000018463,0.0000018319,0.0000018229, -0.0000018223,0.0000018243,0.0000018265,0.0000018283,0.0000018298, -0.0000018297,0.0000018289,0.0000018291,0.0000018297,0.0000018324, -0.0000018402,0.0000018502,0.0000018621,0.0000018741,0.0000018863, -0.0000018982,0.0000019076,0.0000019142,0.0000019160,0.0000019171, -0.0000019138,0.0000019070,0.0000019012,0.0000018973,0.0000018947, -0.0000018926,0.0000018922,0.0000018935,0.0000018935,0.0000018920, -0.0000018905,0.0000018897,0.0000018894,0.0000018898,0.0000018904, -0.0000018917,0.0000018930,0.0000018943,0.0000018964,0.0000019003, -0.0000019065,0.0000019142,0.0000019227,0.0000019303,0.0000019378, -0.0000019415,0.0000019437,0.0000019448,0.0000019464,0.0000019476, -0.0000019460,0.0000019459,0.0000019475,0.0000019498,0.0000019541, -0.0000019573,0.0000019598,0.0000019623,0.0000019638,0.0000019644, -0.0000019641,0.0000019625,0.0000019596,0.0000019559,0.0000019519, -0.0000019485,0.0000019441,0.0000019374,0.0000019290,0.0000019194, -0.0000019107,0.0000019068,0.0000019075,0.0000019064,0.0000019043, -0.0000019048,0.0000019100,0.0000019213,0.0000019390,0.0000019574, -0.0000019722,0.0000019866,0.0000019965,0.0000019980,0.0000019986, -0.0000019989,0.0000019983,0.0000019973,0.0000019967,0.0000019959, -0.0000019945,0.0000019925,0.0000019897,0.0000019855,0.0000019796, -0.0000019725,0.0000019650,0.0000019571,0.0000019511,0.0000019473, -0.0000019451,0.0000019444,0.0000019450,0.0000019468,0.0000019499, -0.0000019542,0.0000019581,0.0000019621,0.0000019685,0.0000019750, -0.0000019815,0.0000019872,0.0000019916,0.0000019939,0.0000019950, -0.0000019955,0.0000019962,0.0000019972,0.0000019967,0.0000019912, -0.0000019807,0.0000019703,0.0000019648,0.0000019638,0.0000019648, -0.0000019702,0.0000019793,0.0000019895,0.0000019982,0.0000020045, -0.0000020092,0.0000020128,0.0000020145,0.0000020140,0.0000020123, -0.0000020103,0.0000020099,0.0000020109,0.0000020122,0.0000020113, -0.0000020091,0.0000020083,0.0000020099,0.0000020122,0.0000020136, -0.0000020145,0.0000020151,0.0000020148,0.0000020139,0.0000020145, -0.0000020175,0.0000020215,0.0000020250,0.0000020273,0.0000020276, -0.0000020267,0.0000020256,0.0000020248,0.0000020249,0.0000020252, -0.0000020248,0.0000020231,0.0000020200,0.0000020158,0.0000020107, -0.0000020058,0.0000020011,0.0000019972,0.0000019941,0.0000019912, -0.0000019882,0.0000019852,0.0000019819,0.0000019787,0.0000019756, -0.0000019721,0.0000019674,0.0000019620,0.0000019578,0.0000019556, -0.0000019544,0.0000019532,0.0000019524,0.0000019530,0.0000019552, -0.0000019583,0.0000019604,0.0000019610,0.0000019606,0.0000019607, -0.0000019621,0.0000019646,0.0000019704,0.0000019754,0.0000019809, -0.0000019858,0.0000019888,0.0000019906,0.0000019901,0.0000019893, -0.0000019868,0.0000019819,0.0000019758,0.0000019704,0.0000019653, -0.0000019622,0.0000019613,0.0000019613,0.0000019604,0.0000019586, -0.0000019563,0.0000019531,0.0000019496,0.0000019463,0.0000019438, -0.0000019416,0.0000019408,0.0000019425,0.0000019475,0.0000019548, -0.0000019612,0.0000019639,0.0000019638,0.0000019613,0.0000019564, -0.0000019493,0.0000019431,0.0000019408,0.0000019420,0.0000019437, -0.0000019440,0.0000019443,0.0000019465,0.0000019509,0.0000019551, -0.0000019560,0.0000019546,0.0000019504,0.0000019464,0.0000019453, -0.0000019456,0.0000019445,0.0000019433,0.0000019466,0.0000019526, -0.0000019567,0.0000019569,0.0000019513,0.0000019404,0.0000019302, -0.0000019224,0.0000019148,0.0000019096,0.0000019058,0.0000019009, -0.0000019011,0.0000019057,0.0000019108,0.0000019146,0.0000019176, -0.0000019188,0.0000019163,0.0000019103,0.0000019049,0.0000019031, -0.0000019007,0.0000018956,0.0000018893,0.0000018828,0.0000018780, -0.0000018763,0.0000018750,0.0000018718,0.0000018669,0.0000018624, -0.0000018605,0.0000018608,0.0000018617,0.0000018627,0.0000018653, -0.0000018710,0.0000018781,0.0000018828,0.0000018831,0.0000018799, -0.0000018750,0.0000018707,0.0000018668,0.0000018645,0.0000018651, -0.0000018681,0.0000018703,0.0000018695,0.0000018668,0.0000018629, -0.0000018567,0.0000018479,0.0000018383,0.0000018305,0.0000018281, -0.0000018291,0.0000018310,0.0000018318,0.0000018302,0.0000018268, -0.0000018223,0.0000018190,0.0000018200,0.0000018233,0.0000018247, -0.0000018236,0.0000018204,0.0000018161,0.0000018117,0.0000018086, -0.0000018072,0.0000018067,0.0000018063,0.0000018060,0.0000018060, -0.0000018058,0.0000018042,0.0000017995,0.0000017927,0.0000017857, -0.0000017814,0.0000017788,0.0000017787,0.0000017788,0.0000017791, -0.0000017794,0.0000017810,0.0000017827,0.0000017826,0.0000017797, -0.0000017741,0.0000017677,0.0000017638,0.0000017617,0.0000017556, -0.0000017454,0.0000017383,0.0000017359,0.0000017331,0.0000017280, -0.0000017241,0.0000017212,0.0000017156,0.0000017106,0.0000017079, -0.0000017193,0.0000017599,0.0000018014,0.0000018199,0.0000018182, -0.0000018108,0.0000018045,0.0000017975,0.0000017920,0.0000017876, -0.0000017846,0.0000017815,0.0000017773,0.0000017730,0.0000017700, -0.0000017679,0.0000017662,0.0000017645,0.0000017636,0.0000017651, -0.0000017686,0.0000017727,0.0000017769,0.0000017805,0.0000017831, -0.0000017853,0.0000017866,0.0000017874,0.0000017874,0.0000017866, -0.0000017847,0.0000017821,0.0000017778,0.0000017714,0.0000017633, -0.0000017523,0.0000017396,0.0000017284,0.0000017172,0.0000017083, -0.0000017028,0.0000017016,0.0000017044,0.0000017094,0.0000017154, -0.0000017234,0.0000017330,0.0000017443,0.0000017566,0.0000017674, -0.0000017729,0.0000017719,0.0000017684,0.0000017608,0.0000017499, -0.0000017379,0.0000017255,0.0000017144,0.0000017101,0.0000017095, -0.0000017165,0.0000017280,0.0000017421,0.0000017581,0.0000017735, -0.0000017842,0.0000017902,0.0000017969,0.0000018108,0.0000018323, -0.0000018555,0.0000018752,0.0000018899,0.0000018999,0.0000019063, -0.0000019078,0.0000019053,0.0000018975,0.0000018829,0.0000018592, -0.0000018274,0.0000017955,0.0000017707,0.0000017546,0.0000017450, -0.0000017373,0.0000017305,0.0000017243,0.0000017193,0.0000017147, -0.0000017074,0.0000016990,0.0000016926,0.0000016885,0.0000016873, -0.0000016877,0.0000016933,0.0000017055,0.0000017250,0.0000017515, -0.0000017808,0.0000017978,0.0000017961,0.0000017817,0.0000017665, -0.0000017553,0.0000017444,0.0000017418,0.0000017439,0.0000017496, -0.0000017594,0.0000017735,0.0000017824,0.0000017846,0.0000017854, -0.0000017738,0.0000017651,0.0000017700,0.0000017724,0.0000017764, -0.0000017915,0.0000018064,0.0000018127,0.0000018098,0.0000018022, -0.0000017965,0.0000017938,0.0000017915,0.0000017876,0.0000017822, -0.0000017776,0.0000017768,0.0000017802,0.0000017865,0.0000017951, -0.0000018034,0.0000018076,0.0000018057,0.0000018000,0.0000017963, -0.0000017972,0.0000017979,0.0000017912,0.0000017804,0.0000017752, -0.0000017752,0.0000017730,0.0000017727,0.0000017723,0.0000017734, -0.0000017772,0.0000017810,0.0000017813,0.0000017788,0.0000017729, -0.0000017680,0.0000017671,0.0000017692,0.0000017707,0.0000017721, -0.0000017731,0.0000017748,0.0000017767,0.0000017775,0.0000017766, -0.0000017749,0.0000017750,0.0000017788,0.0000017848,0.0000017911, -0.0000017981,0.0000018025,0.0000018011,0.0000017974,0.0000018028, -0.0000018126,0.0000018193,0.0000018318,0.0000018449,0.0000018540, -0.0000018699,0.0000018791,0.0000018718,0.0000018616,0.0000018573, -0.0000018497,0.0000018434,0.0000018432,0.0000018404,0.0000018251, -0.0000018090,0.0000018129,0.0000018285,0.0000018344,0.0000018352, -0.0000018355,0.0000018352,0.0000018310,0.0000018121,0.0000017920, -0.0000017906,0.0000017973,0.0000017972,0.0000017961,0.0000018054, -0.0000018205,0.0000018309,0.0000018379,0.0000018490,0.0000018637, -0.0000018762,0.0000018834,0.0000018881,0.0000018922,0.0000018958, -0.0000018990,0.0000019009,0.0000019012,0.0000019005,0.0000018991, -0.0000018971,0.0000018944,0.0000018921,0.0000018903,0.0000018875, -0.0000018831,0.0000018811,0.0000018861,0.0000018895,0.0000018796, -0.0000018519,0.0000018199,0.0000017922,0.0000017810,0.0000017733, -0.0000017665,0.0000017677,0.0000017733,0.0000017758,0.0000017758, -0.0000017753,0.0000017752,0.0000017740,0.0000017698,0.0000017691, -0.0000017832,0.0000018066,0.0000018163,0.0000018099,0.0000018058, -0.0000018206,0.0000018468,0.0000018619,0.0000018645,0.0000018652, -0.0000018663,0.0000018680,0.0000018693,0.0000018689,0.0000018669, -0.0000018659,0.0000018657,0.0000018602,0.0000018499,0.0000018427, -0.0000018376,0.0000018280,0.0000018142,0.0000018013,0.0000017947, -0.0000017906,0.0000017824,0.0000017732,0.0000017658,0.0000017601, -0.0000017564,0.0000017556,0.0000017586,0.0000017649,0.0000017686, -0.0000017679,0.0000017709,0.0000017780,0.0000017807,0.0000017839, -0.0000017906,0.0000017953,0.0000017966,0.0000017972,0.0000017979, -0.0000017991,0.0000018001,0.0000018004,0.0000018014,0.0000018053, -0.0000018101,0.0000018168,0.0000018197,0.0000018229,0.0000018250, -0.0000018284,0.0000018370,0.0000018478,0.0000018630,0.0000018748, -0.0000018892,0.0000019040,0.0000018540,0.0000017982,0.0000018010, -0.0000018092,0.0000018089,0.0000018072,0.0000018079,0.0000018093, -0.0000018095,0.0000018077,0.0000018046,0.0000018009,0.0000017966, -0.0000017925,0.0000017879,0.0000017848,0.0000017846,0.0000017888, -0.0000017952,0.0000017989,0.0000017969,0.0000017924,0.0000017906, -0.0000017954,0.0000018060,0.0000018165,0.0000018217,0.0000018224, -0.0000018218,0.0000018223,0.0000018260,0.0000018335,0.0000018423, -0.0000018524,0.0000018605,0.0000018569,0.0000018338,0.0000018042, -0.0000017900,0.0000017905,0.0000017954,0.0000017996,0.0000018009, -0.0000017990,0.0000017951,0.0000017941,0.0000017995,0.0000018103, -0.0000018205,0.0000018270,0.0000018314,0.0000018352,0.0000018372, -0.0000018352,0.0000018305,0.0000018257,0.0000018238,0.0000018252, -0.0000018297,0.0000018348,0.0000018390,0.0000018414,0.0000018426, -0.0000018432,0.0000018431,0.0000018424,0.0000018411,0.0000018365, -0.0000018258,0.0000018181,0.0000018274,0.0000018615,0.0000018863, -0.0000018825,0.0000018621,0.0000018504,0.0000018567,0.0000018874, -0.0000019291,0.0000019592,0.0000019728,0.0000019827,0.0000019910, -0.0000019931,0.0000019942,0.0000019964,0.0000019932,0.0000019879, -0.0000019826,0.0000019785,0.0000019750,0.0000019720,0.0000019714, -0.0000019750,0.0000019833,0.0000019891,0.0000019862,0.0000019666, -0.0000019383,0.0000019219,0.0000019259,0.0000019555,0.0000019891, -0.0000020004,0.0000019999,0.0000019969,0.0000019819,0.0000019657, -0.0000019533,0.0000019307,0.0000019136,0.0000019139,0.0000019277, -0.0000019581,0.0000019940,0.0000020195,0.0000020361,0.0000020376, -0.0000020222,0.0000020150,0.0000020226,0.0000020244,0.0000020160, -0.0000020070,0.0000020098,0.0000020240,0.0000020304,0.0000020289, -0.0000020291,0.0000020295,0.0000020221,0.0000020057,0.0000019872, -0.0000019723,0.0000019613,0.0000019582,0.0000019721,0.0000019962, -0.0000020152,0.0000020198,0.0000020032,0.0000019509,0.0000018913, -0.0000018487,0.0000018187,0.0000018137,0.0000018251,0.0000018366, -0.0000018266,0.0000018047,0.0000017969,0.0000018063,0.0000018165, -0.0000018175,0.0000018113,0.0000018043,0.0000017946,0.0000017848, -0.0000017883,0.0000018037,0.0000018094,0.0000018012,0.0000018067, -0.0000018310,0.0000018422,0.0000018332,0.0000018144,0.0000018094, -0.0000018199,0.0000018374,0.0000018514,0.0000018588,0.0000018649, -0.0000018742,0.0000018895,0.0000019021,0.0000019048,0.0000019120, -0.0000019108,0.0000019034,0.0000018872,0.0000018586,0.0000018258, -0.0000017987,0.0000017928,0.0000017989,0.0000018114,0.0000018227, -0.0000018299,0.0000018365,0.0000018445,0.0000018487,0.0000018471, -0.0000018446,0.0000018442,0.0000018464,0.0000018658,0.0000019069, -0.0000019457,0.0000019603,0.0000019601,0.0000019596,0.0000019582, -0.0000019563,0.0000019542,0.0000019537,0.0000019585,0.0000019684, -0.0000019771,0.0000019779,0.0000019682,0.0000019496,0.0000019276, -0.0000019141,0.0000019103,0.0000019129,0.0000019106,0.0000018970, -0.0000018746,0.0000018511,0.0000018303,0.0000018161,0.0000018145, -0.0000018156,0.0000018183,0.0000018217,0.0000018247,0.0000018261, -0.0000018266,0.0000018271,0.0000018270,0.0000018285,0.0000018323, -0.0000018387,0.0000018481,0.0000018596,0.0000018721,0.0000018839, -0.0000018935,0.0000018991,0.0000019017,0.0000019026,0.0000019005, -0.0000018969,0.0000018942,0.0000018944,0.0000018933,0.0000018921, -0.0000018918,0.0000018916,0.0000018900,0.0000018897,0.0000018944, -0.0000018965,0.0000018964,0.0000018959,0.0000018956,0.0000018955, -0.0000018956,0.0000018966,0.0000018975,0.0000018979,0.0000018965, -0.0000018942,0.0000018935,0.0000018943,0.0000018994,0.0000019066, -0.0000019100,0.0000019158,0.0000019221,0.0000019289,0.0000019347, -0.0000019379,0.0000019397,0.0000019399,0.0000019387,0.0000019372, -0.0000019354,0.0000019353,0.0000019338,0.0000019324,0.0000019317, -0.0000019307,0.0000019294,0.0000019279,0.0000019249,0.0000019206, -0.0000019160,0.0000019124,0.0000019097,0.0000019096,0.0000019087, -0.0000019071,0.0000019048,0.0000019070,0.0000019105,0.0000019155, -0.0000019227,0.0000019320,0.0000019443,0.0000019564,0.0000019709, -0.0000019876,0.0000019942,0.0000019949,0.0000019957,0.0000019962, -0.0000019961,0.0000019950,0.0000019932,0.0000019911,0.0000019890, -0.0000019867,0.0000019838,0.0000019800,0.0000019753,0.0000019696, -0.0000019626,0.0000019560,0.0000019500,0.0000019462,0.0000019461, -0.0000019460,0.0000019466,0.0000019472,0.0000019481,0.0000019500, -0.0000019532,0.0000019578,0.0000019640,0.0000019717,0.0000019798, -0.0000019877,0.0000019943,0.0000019984,0.0000020003,0.0000020003, -0.0000019990,0.0000019973,0.0000019962,0.0000019966,0.0000019982, -0.0000019977,0.0000019927,0.0000019814,0.0000019716,0.0000019681, -0.0000019684,0.0000019707,0.0000019759,0.0000019845,0.0000019947, -0.0000020030,0.0000020088,0.0000020133,0.0000020149,0.0000020140, -0.0000020117,0.0000020103,0.0000020093,0.0000020091,0.0000020085, -0.0000020059,0.0000020025,0.0000020012,0.0000020032,0.0000020059, -0.0000020084,0.0000020113,0.0000020133,0.0000020138,0.0000020142, -0.0000020162,0.0000020199,0.0000020232,0.0000020249,0.0000020255, -0.0000020253,0.0000020250,0.0000020253,0.0000020262,0.0000020275, -0.0000020283,0.0000020275,0.0000020248,0.0000020204,0.0000020151, -0.0000020092,0.0000020035,0.0000019990,0.0000019953,0.0000019917, -0.0000019881,0.0000019846,0.0000019812,0.0000019781,0.0000019753, -0.0000019729,0.0000019707,0.0000019679,0.0000019640,0.0000019596, -0.0000019560,0.0000019530,0.0000019494,0.0000019456,0.0000019429, -0.0000019424,0.0000019439,0.0000019457,0.0000019464,0.0000019465, -0.0000019473,0.0000019499,0.0000019537,0.0000019590,0.0000019648, -0.0000019701,0.0000019757,0.0000019792,0.0000019814,0.0000019820, -0.0000019816,0.0000019810,0.0000019785,0.0000019745,0.0000019701, -0.0000019654,0.0000019617,0.0000019588,0.0000019572,0.0000019550, -0.0000019526,0.0000019501,0.0000019473,0.0000019446,0.0000019411, -0.0000019397,0.0000019391,0.0000019407,0.0000019453,0.0000019525, -0.0000019601,0.0000019652,0.0000019664,0.0000019649,0.0000019617, -0.0000019558,0.0000019491,0.0000019441,0.0000019440,0.0000019482, -0.0000019509,0.0000019510,0.0000019501,0.0000019500,0.0000019514, -0.0000019531,0.0000019532,0.0000019523,0.0000019501,0.0000019480, -0.0000019486,0.0000019498,0.0000019488,0.0000019461,0.0000019462, -0.0000019498,0.0000019542,0.0000019565,0.0000019563,0.0000019510, -0.0000019426,0.0000019336,0.0000019234,0.0000019146,0.0000019099, -0.0000019045,0.0000019014,0.0000019046,0.0000019099,0.0000019146, -0.0000019179,0.0000019211,0.0000019225,0.0000019189,0.0000019110, -0.0000019053,0.0000019025,0.0000018988,0.0000018936,0.0000018875, -0.0000018818,0.0000018793,0.0000018797,0.0000018805,0.0000018789, -0.0000018758,0.0000018727,0.0000018702,0.0000018680,0.0000018670, -0.0000018683,0.0000018729,0.0000018803,0.0000018873,0.0000018899, -0.0000018883,0.0000018834,0.0000018775,0.0000018727,0.0000018693, -0.0000018685,0.0000018701,0.0000018716,0.0000018707,0.0000018677, -0.0000018647,0.0000018615,0.0000018566,0.0000018486,0.0000018386, -0.0000018310,0.0000018290,0.0000018306,0.0000018330,0.0000018338, -0.0000018319,0.0000018270,0.0000018223,0.0000018221,0.0000018252, -0.0000018277,0.0000018277,0.0000018258,0.0000018229,0.0000018204, -0.0000018194,0.0000018197,0.0000018205,0.0000018208,0.0000018208, -0.0000018209,0.0000018208,0.0000018186,0.0000018126,0.0000018036, -0.0000017936,0.0000017850,0.0000017794,0.0000017759,0.0000017748, -0.0000017735,0.0000017735,0.0000017755,0.0000017793,0.0000017827, -0.0000017835,0.0000017803,0.0000017742,0.0000017683,0.0000017653, -0.0000017618,0.0000017531,0.0000017431,0.0000017382,0.0000017365, -0.0000017323,0.0000017268,0.0000017236,0.0000017194,0.0000017122, -0.0000017080,0.0000017096,0.0000017357,0.0000017802,0.0000018121, -0.0000018186,0.0000018154,0.0000018087,0.0000018022,0.0000017960, -0.0000017911,0.0000017878,0.0000017858,0.0000017838,0.0000017817, -0.0000017801,0.0000017787,0.0000017768,0.0000017749,0.0000017739, -0.0000017748,0.0000017769,0.0000017789,0.0000017812,0.0000017836, -0.0000017855,0.0000017868,0.0000017877,0.0000017877,0.0000017877, -0.0000017873,0.0000017860,0.0000017836,0.0000017791,0.0000017726, -0.0000017629,0.0000017500,0.0000017353,0.0000017209,0.0000017085, -0.0000016990,0.0000016931,0.0000016911,0.0000016920,0.0000016943, -0.0000016977,0.0000017032,0.0000017105,0.0000017207,0.0000017349, -0.0000017504,0.0000017630,0.0000017714,0.0000017744,0.0000017708, -0.0000017617,0.0000017487,0.0000017345,0.0000017215,0.0000017112, -0.0000017058,0.0000017046,0.0000017113,0.0000017214,0.0000017346, -0.0000017512,0.0000017673,0.0000017792,0.0000017865,0.0000017940, -0.0000018064,0.0000018239,0.0000018440,0.0000018621,0.0000018750, -0.0000018812,0.0000018804,0.0000018726,0.0000018574,0.0000018361, -0.0000018101,0.0000017858,0.0000017682,0.0000017565,0.0000017479, -0.0000017410,0.0000017340,0.0000017266,0.0000017208,0.0000017180, -0.0000017149,0.0000017079,0.0000016986,0.0000016922,0.0000016892, -0.0000016878,0.0000016886,0.0000016906,0.0000016977,0.0000017124, -0.0000017373,0.0000017695,0.0000017945,0.0000017947,0.0000017816, -0.0000017660,0.0000017535,0.0000017427,0.0000017406,0.0000017452, -0.0000017539,0.0000017657,0.0000017792,0.0000017844,0.0000017849, -0.0000017825,0.0000017717,0.0000017670,0.0000017695,0.0000017706, -0.0000017804,0.0000017998,0.0000018128,0.0000018127,0.0000018035, -0.0000017954,0.0000017900,0.0000017849,0.0000017807,0.0000017766, -0.0000017712,0.0000017673,0.0000017672,0.0000017694,0.0000017736, -0.0000017802,0.0000017923,0.0000018035,0.0000018052,0.0000017998, -0.0000017954,0.0000017968,0.0000017995,0.0000017958,0.0000017841, -0.0000017899,0.0000017791,0.0000017738,0.0000017725,0.0000017717, -0.0000017716,0.0000017750,0.0000017791,0.0000017811,0.0000017789, -0.0000017748,0.0000017707,0.0000017702,0.0000017711,0.0000017716, -0.0000017715,0.0000017725,0.0000017740,0.0000017748,0.0000017741, -0.0000017718,0.0000017695,0.0000017710,0.0000017771,0.0000017846, -0.0000017912,0.0000017967,0.0000017979,0.0000017938,0.0000017950, -0.0000018065,0.0000018154,0.0000018235,0.0000018384,0.0000018487, -0.0000018615,0.0000018788,0.0000018776,0.0000018654,0.0000018592, -0.0000018536,0.0000018462,0.0000018434,0.0000018438,0.0000018369, -0.0000018186,0.0000018075,0.0000018159,0.0000018317,0.0000018360, -0.0000018367,0.0000018367,0.0000018334,0.0000018168,0.0000017939, -0.0000017874,0.0000017940,0.0000017967,0.0000017951,0.0000018000, -0.0000018152,0.0000018294,0.0000018365,0.0000018429,0.0000018552, -0.0000018707,0.0000018828,0.0000018891,0.0000018925,0.0000018954, -0.0000018984,0.0000019001,0.0000019007,0.0000019012,0.0000019012, -0.0000019002,0.0000018964,0.0000018924,0.0000018901,0.0000018880, -0.0000018839,0.0000018799,0.0000018818,0.0000018897,0.0000018841, -0.0000018593,0.0000018266,0.0000017952,0.0000017805,0.0000017735, -0.0000017686,0.0000017711,0.0000017752,0.0000017762,0.0000017754, -0.0000017743,0.0000017732,0.0000017704,0.0000017663,0.0000017675, -0.0000017843,0.0000018067,0.0000018142,0.0000018069,0.0000018047, -0.0000018186,0.0000018427,0.0000018592,0.0000018640,0.0000018653, -0.0000018665,0.0000018668,0.0000018665,0.0000018664,0.0000018665, -0.0000018649,0.0000018585,0.0000018488,0.0000018410,0.0000018334, -0.0000018213,0.0000018069,0.0000017964,0.0000017911,0.0000017842, -0.0000017728,0.0000017619,0.0000017547,0.0000017504,0.0000017491, -0.0000017501,0.0000017541,0.0000017595,0.0000017621,0.0000017630, -0.0000017686,0.0000017745,0.0000017783,0.0000017861,0.0000017932, -0.0000017940,0.0000017943,0.0000017967,0.0000017998,0.0000018021, -0.0000018032,0.0000018028,0.0000018007,0.0000018009,0.0000018030, -0.0000018087,0.0000018149,0.0000018186,0.0000018207,0.0000018246, -0.0000018349,0.0000018481,0.0000018614,0.0000018741,0.0000018897, -0.0000018976,0.0000018390,0.0000017984,0.0000018059,0.0000018112, -0.0000018106,0.0000018119,0.0000018159,0.0000018182,0.0000018177, -0.0000018164,0.0000018147,0.0000018123,0.0000018085,0.0000018034, -0.0000017973,0.0000017905,0.0000017845,0.0000017822,0.0000017837, -0.0000017890,0.0000017931,0.0000017916,0.0000017866,0.0000017842, -0.0000017901,0.0000018025,0.0000018122,0.0000018149,0.0000018146, -0.0000018141,0.0000018166,0.0000018247,0.0000018362,0.0000018492, -0.0000018587,0.0000018539,0.0000018278,0.0000017979,0.0000017876, -0.0000017903,0.0000017965,0.0000017997,0.0000017996,0.0000017971, -0.0000017947,0.0000017968,0.0000018052,0.0000018146,0.0000018207, -0.0000018247,0.0000018265,0.0000018257,0.0000018225,0.0000018186, -0.0000018179,0.0000018213,0.0000018285,0.0000018369,0.0000018446, -0.0000018494,0.0000018519,0.0000018526,0.0000018514,0.0000018493, -0.0000018477,0.0000018454,0.0000018415,0.0000018331,0.0000018214, -0.0000018178,0.0000018399,0.0000018837,0.0000019131,0.0000019122, -0.0000018943,0.0000018805,0.0000018858,0.0000019161,0.0000019496, -0.0000019690,0.0000019808,0.0000019896,0.0000019909,0.0000019870, -0.0000019889,0.0000019969,0.0000020031,0.0000020038,0.0000019979, -0.0000019902,0.0000019834,0.0000019796,0.0000019787,0.0000019804, -0.0000019850,0.0000019892,0.0000019887,0.0000019722,0.0000019431, -0.0000019240,0.0000019296,0.0000019621,0.0000019930,0.0000020026, -0.0000020030,0.0000019940,0.0000019751,0.0000019621,0.0000019435, -0.0000019197,0.0000019140,0.0000019226,0.0000019507,0.0000019898, -0.0000020191,0.0000020366,0.0000020389,0.0000020239,0.0000020156, -0.0000020241,0.0000020271,0.0000020188,0.0000020105,0.0000020136, -0.0000020271,0.0000020329,0.0000020312,0.0000020312,0.0000020306, -0.0000020204,0.0000020023,0.0000019835,0.0000019680,0.0000019576, -0.0000019581,0.0000019766,0.0000020024,0.0000020168,0.0000020164, -0.0000019816,0.0000019212,0.0000018677,0.0000018311,0.0000018155, -0.0000018211,0.0000018362,0.0000018319,0.0000018091,0.0000017920, -0.0000017947,0.0000018060,0.0000018115,0.0000018096,0.0000018066, -0.0000018034,0.0000017952,0.0000017868,0.0000017929,0.0000018064, -0.0000018071,0.0000018048,0.0000018203,0.0000018398,0.0000018370, -0.0000018198,0.0000018119,0.0000018182,0.0000018348,0.0000018473, -0.0000018536,0.0000018605,0.0000018764,0.0000018941,0.0000019048, -0.0000019036,0.0000018901,0.0000018778,0.0000018759,0.0000018770, -0.0000018723,0.0000018582,0.0000018392,0.0000018261,0.0000018238, -0.0000018284,0.0000018359,0.0000018422,0.0000018470,0.0000018494, -0.0000018473,0.0000018424,0.0000018408,0.0000018411,0.0000018418, -0.0000018510,0.0000018812,0.0000019230,0.0000019504,0.0000019558, -0.0000019542,0.0000019512,0.0000019481,0.0000019445,0.0000019424, -0.0000019435,0.0000019492,0.0000019549,0.0000019539,0.0000019427, -0.0000019243,0.0000019113,0.0000019107,0.0000019155,0.0000019127, -0.0000018944,0.0000018675,0.0000018392,0.0000018183,0.0000018123, -0.0000018119,0.0000018124,0.0000018150,0.0000018179,0.0000018202, -0.0000018224,0.0000018243,0.0000018257,0.0000018266,0.0000018285, -0.0000018318,0.0000018373,0.0000018451,0.0000018555,0.0000018675, -0.0000018788,0.0000018869,0.0000018911,0.0000018927,0.0000018933, -0.0000018931,0.0000018933,0.0000018920,0.0000018929,0.0000018970, -0.0000019009,0.0000019035,0.0000019088,0.0000019147,0.0000019210, -0.0000019266,0.0000019316,0.0000019372,0.0000019408,0.0000019434, -0.0000019455,0.0000019466,0.0000019467,0.0000019460,0.0000019450, -0.0000019430,0.0000019405,0.0000019369,0.0000019330,0.0000019298, -0.0000019253,0.0000019224,0.0000019211,0.0000019199,0.0000019172, -0.0000019154,0.0000019173,0.0000019180,0.0000019180,0.0000019231, -0.0000019248,0.0000019239,0.0000019247,0.0000019251,0.0000019246, -0.0000019236,0.0000019223,0.0000019204,0.0000019179,0.0000019152, -0.0000019147,0.0000019141,0.0000019103,0.0000019077,0.0000019091, -0.0000019101,0.0000019132,0.0000019157,0.0000019200,0.0000019273, -0.0000019370,0.0000019489,0.0000019585,0.0000019694,0.0000019820, -0.0000019941,0.0000019936,0.0000019946,0.0000019948,0.0000019929, -0.0000019915,0.0000019903,0.0000019880,0.0000019841,0.0000019796, -0.0000019754,0.0000019719,0.0000019686,0.0000019650,0.0000019604, -0.0000019563,0.0000019516,0.0000019481,0.0000019482,0.0000019477, -0.0000019494,0.0000019531,0.0000019567,0.0000019592,0.0000019606, -0.0000019619,0.0000019643,0.0000019681,0.0000019732,0.0000019796, -0.0000019869,0.0000019943,0.0000020003,0.0000020043,0.0000020062, -0.0000020060,0.0000020044,0.0000020014,0.0000019991,0.0000019961, -0.0000019933,0.0000019929,0.0000019947,0.0000019957,0.0000019913, -0.0000019814,0.0000019727,0.0000019699,0.0000019711,0.0000019741, -0.0000019798,0.0000019883,0.0000019984,0.0000020064,0.0000020114, -0.0000020140,0.0000020136,0.0000020113,0.0000020090,0.0000020071, -0.0000020045,0.0000020014,0.0000019979,0.0000019951,0.0000019945, -0.0000019966,0.0000019995,0.0000020026,0.0000020069,0.0000020109, -0.0000020128,0.0000020146,0.0000020171,0.0000020207,0.0000020242, -0.0000020262,0.0000020263,0.0000020259,0.0000020255,0.0000020253, -0.0000020255,0.0000020257,0.0000020255,0.0000020237,0.0000020206, -0.0000020163,0.0000020114,0.0000020061,0.0000020001,0.0000019942, -0.0000019888,0.0000019842,0.0000019806,0.0000019777,0.0000019750, -0.0000019727,0.0000019709,0.0000019692,0.0000019679,0.0000019669, -0.0000019659,0.0000019647,0.0000019629,0.0000019608,0.0000019581, -0.0000019546,0.0000019513,0.0000019494,0.0000019494,0.0000019501, -0.0000019498,0.0000019488,0.0000019486,0.0000019505,0.0000019540, -0.0000019579,0.0000019634,0.0000019678,0.0000019726,0.0000019765, -0.0000019788,0.0000019796,0.0000019792,0.0000019787,0.0000019780, -0.0000019754,0.0000019715,0.0000019672,0.0000019634,0.0000019597, -0.0000019568,0.0000019537,0.0000019514,0.0000019492,0.0000019470, -0.0000019462,0.0000019446,0.0000019440,0.0000019455,0.0000019487, -0.0000019540,0.0000019607,0.0000019663,0.0000019693,0.0000019690, -0.0000019663,0.0000019614,0.0000019558,0.0000019508,0.0000019493, -0.0000019523,0.0000019577,0.0000019593,0.0000019577,0.0000019558, -0.0000019551,0.0000019548,0.0000019539,0.0000019529,0.0000019520, -0.0000019510,0.0000019512,0.0000019534,0.0000019551,0.0000019542, -0.0000019511,0.0000019489,0.0000019491,0.0000019510,0.0000019531, -0.0000019552,0.0000019544,0.0000019510,0.0000019443,0.0000019351, -0.0000019248,0.0000019180,0.0000019128,0.0000019072,0.0000019055, -0.0000019091,0.0000019142,0.0000019177,0.0000019208,0.0000019238, -0.0000019242,0.0000019187,0.0000019103,0.0000019048,0.0000019007, -0.0000018957,0.0000018908,0.0000018865,0.0000018835,0.0000018842, -0.0000018869,0.0000018882,0.0000018873,0.0000018854,0.0000018824, -0.0000018779,0.0000018737,0.0000018723,0.0000018745,0.0000018804, -0.0000018883,0.0000018936,0.0000018947,0.0000018917,0.0000018857, -0.0000018795,0.0000018747,0.0000018727,0.0000018733,0.0000018744, -0.0000018729,0.0000018687,0.0000018644,0.0000018617,0.0000018598, -0.0000018560,0.0000018481,0.0000018388,0.0000018326,0.0000018313, -0.0000018336,0.0000018360,0.0000018365,0.0000018332,0.0000018279, -0.0000018257,0.0000018272,0.0000018288,0.0000018290,0.0000018277, -0.0000018256,0.0000018241,0.0000018242,0.0000018255,0.0000018262, -0.0000018263,0.0000018265,0.0000018282,0.0000018297,0.0000018295, -0.0000018257,0.0000018184,0.0000018093,0.0000017992,0.0000017900, -0.0000017830,0.0000017770,0.0000017730,0.0000017701,0.0000017696, -0.0000017734,0.0000017791,0.0000017828,0.0000017825,0.0000017791, -0.0000017731,0.0000017688,0.0000017667,0.0000017615,0.0000017505, -0.0000017415,0.0000017392,0.0000017376,0.0000017319,0.0000017259, -0.0000017223,0.0000017153,0.0000017094,0.0000017060,0.0000017169, -0.0000017549,0.0000017955,0.0000018177,0.0000018191,0.0000018129, -0.0000018067,0.0000018004,0.0000017950,0.0000017910,0.0000017886, -0.0000017870,0.0000017854,0.0000017837,0.0000017818,0.0000017796, -0.0000017777,0.0000017770,0.0000017784,0.0000017805,0.0000017826, -0.0000017851,0.0000017880,0.0000017901,0.0000017911,0.0000017914, -0.0000017916,0.0000017919,0.0000017915,0.0000017900,0.0000017866, -0.0000017812,0.0000017720,0.0000017597,0.0000017448,0.0000017282, -0.0000017138,0.0000017033,0.0000016968,0.0000016928,0.0000016906, -0.0000016902,0.0000016901,0.0000016912,0.0000016938,0.0000016978, -0.0000017051,0.0000017167,0.0000017316,0.0000017486,0.0000017639, -0.0000017726,0.0000017740,0.0000017686,0.0000017572,0.0000017444, -0.0000017318,0.0000017170,0.0000017029,0.0000016987,0.0000017015, -0.0000017075,0.0000017163,0.0000017296,0.0000017473,0.0000017646, -0.0000017762,0.0000017835,0.0000017909,0.0000018021,0.0000018158, -0.0000018291,0.0000018381,0.0000018411,0.0000018380,0.0000018282, -0.0000018146,0.0000017981,0.0000017821,0.0000017698,0.0000017600, -0.0000017517,0.0000017442,0.0000017376,0.0000017310,0.0000017243, -0.0000017190,0.0000017162,0.0000017129,0.0000017059,0.0000016982, -0.0000016936,0.0000016915,0.0000016901,0.0000016905,0.0000016927, -0.0000016943,0.0000017037,0.0000017246,0.0000017569,0.0000017860, -0.0000017943,0.0000017817,0.0000017653,0.0000017511,0.0000017401, -0.0000017400,0.0000017493,0.0000017593,0.0000017718,0.0000017834, -0.0000017848,0.0000017849,0.0000017818,0.0000017706,0.0000017663, -0.0000017670,0.0000017709,0.0000017874,0.0000018076,0.0000018157, -0.0000018088,0.0000017974,0.0000017892,0.0000017824,0.0000017789, -0.0000017773,0.0000017736,0.0000017689,0.0000017664,0.0000017668, -0.0000017671,0.0000017677,0.0000017704,0.0000017815,0.0000017966, -0.0000018031,0.0000017997,0.0000017943,0.0000017962,0.0000018015, -0.0000018008,0.0000018046,0.0000017973,0.0000017865,0.0000017792, -0.0000017748,0.0000017716,0.0000017710,0.0000017730,0.0000017762, -0.0000017777,0.0000017766,0.0000017734,0.0000017720,0.0000017729, -0.0000017738,0.0000017740,0.0000017740,0.0000017749,0.0000017754, -0.0000017749,0.0000017725,0.0000017692,0.0000017679,0.0000017705, -0.0000017777,0.0000017847,0.0000017900,0.0000017929,0.0000017921, -0.0000017908,0.0000017991,0.0000018112,0.0000018186,0.0000018315, -0.0000018444,0.0000018540,0.0000018725,0.0000018806,0.0000018707, -0.0000018606,0.0000018567,0.0000018497,0.0000018436,0.0000018436, -0.0000018429,0.0000018326,0.0000018141,0.0000018062,0.0000018188, -0.0000018341,0.0000018373,0.0000018373,0.0000018360,0.0000018224, -0.0000017975,0.0000017857,0.0000017896,0.0000017963,0.0000017955, -0.0000017971,0.0000018097,0.0000018264,0.0000018363,0.0000018408, -0.0000018481,0.0000018614,0.0000018758,0.0000018851,0.0000018893, -0.0000018920,0.0000018942,0.0000018955,0.0000018960,0.0000018971, -0.0000018996,0.0000019009,0.0000018984,0.0000018941,0.0000018910, -0.0000018891,0.0000018855,0.0000018797,0.0000018785,0.0000018871, -0.0000018876,0.0000018665,0.0000018337,0.0000017993,0.0000017804, -0.0000017734,0.0000017704,0.0000017733,0.0000017753,0.0000017743, -0.0000017715,0.0000017695,0.0000017677,0.0000017647,0.0000017630, -0.0000017680,0.0000017872,0.0000018069,0.0000018117,0.0000018044, -0.0000018040,0.0000018158,0.0000018371,0.0000018546,0.0000018624, -0.0000018648,0.0000018655,0.0000018659,0.0000018662,0.0000018656, -0.0000018618,0.0000018542,0.0000018452,0.0000018370,0.0000018269, -0.0000018131,0.0000018000,0.0000017922,0.0000017864,0.0000017761, -0.0000017625,0.0000017513,0.0000017443,0.0000017413,0.0000017407, -0.0000017422,0.0000017470,0.0000017529,0.0000017561,0.0000017591, -0.0000017659,0.0000017720,0.0000017793,0.0000017882,0.0000017912, -0.0000017927,0.0000017972,0.0000018029,0.0000018075,0.0000018101, -0.0000018110,0.0000018105,0.0000018079,0.0000018041,0.0000018019, -0.0000018026,0.0000018060,0.0000018099,0.0000018125,0.0000018178, -0.0000018303,0.0000018468,0.0000018601,0.0000018727,0.0000018890, -0.0000018923,0.0000018304,0.0000017984,0.0000018090,0.0000018131, -0.0000018140,0.0000018181,0.0000018226,0.0000018244,0.0000018256, -0.0000018269,0.0000018263,0.0000018232,0.0000018204,0.0000018156, -0.0000018111,0.0000018040,0.0000017951,0.0000017863,0.0000017810, -0.0000017802,0.0000017851,0.0000017895,0.0000017875,0.0000017817, -0.0000017816,0.0000017897,0.0000018013,0.0000018069,0.0000018073, -0.0000018072,0.0000018098,0.0000018177,0.0000018304,0.0000018460, -0.0000018562,0.0000018482,0.0000018179,0.0000017905,0.0000017845, -0.0000017899,0.0000017962,0.0000017983,0.0000017971,0.0000017955, -0.0000017970,0.0000018032,0.0000018117,0.0000018175,0.0000018196, -0.0000018185,0.0000018149,0.0000018111,0.0000018091,0.0000018131, -0.0000018207,0.0000018307,0.0000018397,0.0000018456,0.0000018503, -0.0000018512,0.0000018506,0.0000018491,0.0000018472,0.0000018451, -0.0000018430,0.0000018399,0.0000018339,0.0000018239,0.0000018153, -0.0000018219,0.0000018570,0.0000019056,0.0000019333,0.0000019350, -0.0000019237,0.0000019119,0.0000019164,0.0000019397,0.0000019626, -0.0000019768,0.0000019867,0.0000019847,0.0000019659,0.0000019489, -0.0000019523,0.0000019723,0.0000019952,0.0000020088,0.0000020108, -0.0000020049,0.0000019958,0.0000019877,0.0000019828,0.0000019812, -0.0000019831,0.0000019873,0.0000019879,0.0000019742,0.0000019454, -0.0000019261,0.0000019353,0.0000019699,0.0000019976,0.0000020065, -0.0000020036,0.0000019861,0.0000019698,0.0000019550,0.0000019290, -0.0000019152,0.0000019192,0.0000019432,0.0000019843,0.0000020177, -0.0000020374,0.0000020403,0.0000020248,0.0000020159,0.0000020237, -0.0000020292,0.0000020211,0.0000020129,0.0000020166,0.0000020299, -0.0000020351,0.0000020334,0.0000020339,0.0000020314,0.0000020188, -0.0000019996,0.0000019808,0.0000019659,0.0000019570,0.0000019597, -0.0000019821,0.0000020061,0.0000020171,0.0000020068,0.0000019560, -0.0000018939,0.0000018473,0.0000018193,0.0000018174,0.0000018333, -0.0000018380,0.0000018171,0.0000017936,0.0000017892,0.0000017974, -0.0000018048,0.0000018070,0.0000018062,0.0000018066,0.0000018047, -0.0000017941,0.0000017881,0.0000017971,0.0000018076,0.0000018078, -0.0000018148,0.0000018346,0.0000018407,0.0000018254,0.0000018124, -0.0000018178,0.0000018329,0.0000018443,0.0000018494,0.0000018561, -0.0000018769,0.0000018995,0.0000019062,0.0000018952,0.0000018669, -0.0000018389,0.0000018276,0.0000018349,0.0000018511,0.0000018617, -0.0000018625,0.0000018571,0.0000018530,0.0000018529,0.0000018527, -0.0000018531,0.0000018523,0.0000018478,0.0000018406,0.0000018363, -0.0000018368,0.0000018398,0.0000018408,0.0000018437,0.0000018610, -0.0000018949,0.0000019299,0.0000019496,0.0000019537,0.0000019537, -0.0000019514,0.0000019464,0.0000019410,0.0000019382,0.0000019378, -0.0000019366,0.0000019311,0.0000019185,0.0000019087,0.0000019090, -0.0000019155,0.0000019160,0.0000018998,0.0000018686,0.0000018360, -0.0000018174,0.0000018132,0.0000018106,0.0000018115,0.0000018121, -0.0000018140,0.0000018167,0.0000018195,0.0000018218,0.0000018235, -0.0000018253,0.0000018282,0.0000018324,0.0000018381,0.0000018461, -0.0000018562,0.0000018668,0.0000018757,0.0000018826,0.0000018879, -0.0000018915,0.0000018928,0.0000018933,0.0000018946,0.0000018979, -0.0000019030,0.0000019110,0.0000019211,0.0000019308,0.0000019427, -0.0000019524,0.0000019627,0.0000019712,0.0000019794,0.0000019851, -0.0000019911,0.0000019932,0.0000019939,0.0000019957,0.0000019973, -0.0000019977,0.0000019973,0.0000019966,0.0000019952,0.0000019932, -0.0000019910,0.0000019892,0.0000019868,0.0000019831,0.0000019783, -0.0000019750,0.0000019722,0.0000019690,0.0000019648,0.0000019605, -0.0000019559,0.0000019503,0.0000019445,0.0000019410,0.0000019367, -0.0000019319,0.0000019285,0.0000019255,0.0000019232,0.0000019219, -0.0000019216,0.0000019210,0.0000019205,0.0000019202,0.0000019223, -0.0000019238,0.0000019250,0.0000019287,0.0000019348,0.0000019425, -0.0000019489,0.0000019565,0.0000019667,0.0000019778,0.0000019884, -0.0000019943,0.0000019947,0.0000019962,0.0000019963,0.0000019939, -0.0000019916,0.0000019894,0.0000019867,0.0000019831,0.0000019787, -0.0000019736,0.0000019678,0.0000019617,0.0000019568,0.0000019528, -0.0000019502,0.0000019478,0.0000019455,0.0000019462,0.0000019472, -0.0000019500,0.0000019550,0.0000019602,0.0000019652,0.0000019700, -0.0000019737,0.0000019758,0.0000019770,0.0000019781,0.0000019802, -0.0000019834,0.0000019876,0.0000019925,0.0000019982,0.0000020034, -0.0000020070,0.0000020094,0.0000020099,0.0000020083,0.0000020049, -0.0000020006,0.0000019977,0.0000019955,0.0000019919,0.0000019877, -0.0000019869,0.0000019896,0.0000019920,0.0000019892,0.0000019804, -0.0000019711,0.0000019674,0.0000019689,0.0000019728,0.0000019782, -0.0000019865,0.0000019961,0.0000020041,0.0000020093,0.0000020114, -0.0000020105,0.0000020079,0.0000020043,0.0000020005,0.0000019962, -0.0000019928,0.0000019917,0.0000019920,0.0000019924,0.0000019937, -0.0000019967,0.0000020031,0.0000020088,0.0000020123,0.0000020145, -0.0000020179,0.0000020228,0.0000020268,0.0000020281,0.0000020273, -0.0000020254,0.0000020231,0.0000020215,0.0000020214,0.0000020218, -0.0000020210,0.0000020189,0.0000020162,0.0000020130,0.0000020088, -0.0000020032,0.0000019967,0.0000019910,0.0000019870,0.0000019842, -0.0000019820,0.0000019807,0.0000019798,0.0000019790,0.0000019779, -0.0000019767,0.0000019753,0.0000019741,0.0000019730,0.0000019715, -0.0000019692,0.0000019668,0.0000019645,0.0000019620,0.0000019599, -0.0000019590,0.0000019595,0.0000019605,0.0000019604,0.0000019593, -0.0000019587,0.0000019596,0.0000019620,0.0000019648,0.0000019681, -0.0000019722,0.0000019756,0.0000019791,0.0000019809,0.0000019816, -0.0000019814,0.0000019809,0.0000019801,0.0000019786,0.0000019753, -0.0000019714,0.0000019688,0.0000019658,0.0000019631,0.0000019610, -0.0000019604,0.0000019606,0.0000019603,0.0000019606,0.0000019606, -0.0000019606,0.0000019610,0.0000019628,0.0000019655,0.0000019686, -0.0000019711,0.0000019715,0.0000019697,0.0000019668,0.0000019624, -0.0000019593,0.0000019590,0.0000019617,0.0000019651,0.0000019679, -0.0000019666,0.0000019633,0.0000019603,0.0000019587,0.0000019579, -0.0000019563,0.0000019545,0.0000019541,0.0000019541,0.0000019556, -0.0000019583,0.0000019593,0.0000019581,0.0000019552,0.0000019526, -0.0000019509,0.0000019501,0.0000019500,0.0000019518,0.0000019532, -0.0000019529,0.0000019508,0.0000019454,0.0000019377,0.0000019299, -0.0000019244,0.0000019185,0.0000019131,0.0000019118,0.0000019141, -0.0000019173,0.0000019197,0.0000019227,0.0000019250,0.0000019238, -0.0000019171,0.0000019096,0.0000019037,0.0000018971,0.0000018917, -0.0000018889,0.0000018881,0.0000018892,0.0000018931,0.0000018960, -0.0000018962,0.0000018952,0.0000018931,0.0000018886,0.0000018825, -0.0000018781,0.0000018770,0.0000018803,0.0000018872,0.0000018936, -0.0000018968,0.0000018967,0.0000018925,0.0000018862,0.0000018805, -0.0000018772,0.0000018766,0.0000018774,0.0000018764,0.0000018718, -0.0000018657,0.0000018610,0.0000018594,0.0000018588,0.0000018548, -0.0000018474,0.0000018395,0.0000018351,0.0000018353,0.0000018374, -0.0000018395,0.0000018387,0.0000018346,0.0000018314,0.0000018305, -0.0000018301,0.0000018296,0.0000018282,0.0000018264,0.0000018252, -0.0000018257,0.0000018267,0.0000018264,0.0000018257,0.0000018259, -0.0000018283,0.0000018313,0.0000018329,0.0000018321,0.0000018286, -0.0000018234,0.0000018158,0.0000018072,0.0000017982,0.0000017888, -0.0000017800,0.0000017721,0.0000017688,0.0000017700,0.0000017745, -0.0000017793,0.0000017812,0.0000017797,0.0000017754,0.0000017709, -0.0000017696,0.0000017684,0.0000017600,0.0000017484,0.0000017432, -0.0000017427,0.0000017383,0.0000017297,0.0000017239,0.0000017188, -0.0000017119,0.0000017059,0.0000017060,0.0000017305,0.0000017717, -0.0000018077,0.0000018192,0.0000018172,0.0000018112,0.0000018053, -0.0000017998,0.0000017955,0.0000017923,0.0000017902,0.0000017885, -0.0000017867,0.0000017849,0.0000017831,0.0000017820,0.0000017829, -0.0000017857,0.0000017883,0.0000017905,0.0000017931,0.0000017956, -0.0000017971,0.0000017973,0.0000017971,0.0000017968,0.0000017955, -0.0000017924,0.0000017884,0.0000017810,0.0000017709,0.0000017578, -0.0000017427,0.0000017274,0.0000017140,0.0000017052,0.0000017009, -0.0000016983,0.0000016958,0.0000016927,0.0000016903,0.0000016895, -0.0000016906,0.0000016920,0.0000016934,0.0000016973,0.0000017053, -0.0000017176,0.0000017344,0.0000017518,0.0000017656,0.0000017722, -0.0000017708,0.0000017638,0.0000017527,0.0000017396,0.0000017224, -0.0000017051,0.0000016957,0.0000016950,0.0000017000,0.0000017057, -0.0000017147,0.0000017297,0.0000017468,0.0000017612,0.0000017722, -0.0000017815,0.0000017906,0.0000017996,0.0000018072,0.0000018123, -0.0000018138,0.0000018105,0.0000018036,0.0000017939,0.0000017829, -0.0000017732,0.0000017643,0.0000017555,0.0000017468,0.0000017397, -0.0000017344,0.0000017291,0.0000017234,0.0000017184,0.0000017144, -0.0000017095,0.0000017030,0.0000016972,0.0000016945,0.0000016936, -0.0000016943,0.0000016949,0.0000016935,0.0000016930,0.0000016981, -0.0000017141,0.0000017441,0.0000017788,0.0000017903,0.0000017812, -0.0000017635,0.0000017467,0.0000017376,0.0000017432,0.0000017545, -0.0000017642,0.0000017771,0.0000017853,0.0000017853,0.0000017857, -0.0000017805,0.0000017685,0.0000017645,0.0000017660,0.0000017749, -0.0000017949,0.0000018137,0.0000018140,0.0000018033,0.0000017915, -0.0000017835,0.0000017797,0.0000017794,0.0000017789,0.0000017771, -0.0000017752,0.0000017733,0.0000017708,0.0000017681,0.0000017668, -0.0000017672,0.0000017745,0.0000017899,0.0000018000,0.0000017983, -0.0000017932,0.0000017958,0.0000018036,0.0000018029,0.0000018084, -0.0000018045,0.0000017964,0.0000017887,0.0000017804,0.0000017737, -0.0000017716,0.0000017731,0.0000017747,0.0000017750,0.0000017733, -0.0000017705,0.0000017701,0.0000017723,0.0000017739,0.0000017745, -0.0000017755,0.0000017758,0.0000017754,0.0000017738,0.0000017710, -0.0000017682,0.0000017684,0.0000017734,0.0000017795,0.0000017847, -0.0000017886,0.0000017905,0.0000017898,0.0000017936,0.0000018060, -0.0000018153,0.0000018243,0.0000018388,0.0000018483,0.0000018645, -0.0000018797,0.0000018759,0.0000018635,0.0000018589,0.0000018535, -0.0000018460,0.0000018431,0.0000018438,0.0000018412,0.0000018296, -0.0000018118,0.0000018057,0.0000018190,0.0000018352,0.0000018385, -0.0000018380,0.0000018274,0.0000018030,0.0000017853,0.0000017866, -0.0000017950,0.0000017970,0.0000017968,0.0000018044,0.0000018205, -0.0000018344,0.0000018404,0.0000018438,0.0000018516,0.0000018643, -0.0000018761,0.0000018826,0.0000018856,0.0000018871,0.0000018878, -0.0000018877,0.0000018884,0.0000018926,0.0000018973,0.0000018984, -0.0000018961,0.0000018924,0.0000018903,0.0000018875,0.0000018809, -0.0000018781,0.0000018866,0.0000018913,0.0000018727,0.0000018404, -0.0000018038,0.0000017806,0.0000017732,0.0000017720,0.0000017747, -0.0000017747,0.0000017709,0.0000017663,0.0000017633,0.0000017608, -0.0000017592,0.0000017606,0.0000017711,0.0000017907,0.0000018066, -0.0000018091,0.0000018025,0.0000018031,0.0000018126,0.0000018301, -0.0000018467,0.0000018571,0.0000018618,0.0000018633,0.0000018627, -0.0000018602,0.0000018547,0.0000018470,0.0000018383,0.0000018290, -0.0000018175,0.0000018048,0.0000017948,0.0000017877,0.0000017787, -0.0000017652,0.0000017516,0.0000017418,0.0000017358,0.0000017325, -0.0000017315,0.0000017328,0.0000017386,0.0000017459,0.0000017510, -0.0000017562,0.0000017632,0.0000017703,0.0000017802,0.0000017873, -0.0000017893,0.0000017955,0.0000018040,0.0000018096,0.0000018123, -0.0000018129,0.0000018129,0.0000018131,0.0000018134,0.0000018112, -0.0000018077,0.0000018046,0.0000018033,0.0000018039,0.0000018050, -0.0000018097,0.0000018236,0.0000018438,0.0000018589,0.0000018709, -0.0000018874,0.0000018898,0.0000018280,0.0000017986,0.0000018109, -0.0000018158,0.0000018183,0.0000018225,0.0000018267,0.0000018317, -0.0000018363,0.0000018361,0.0000018302,0.0000018236,0.0000018185, -0.0000018146,0.0000018133,0.0000018105,0.0000018059,0.0000017975, -0.0000017866,0.0000017792,0.0000017782,0.0000017833,0.0000017866, -0.0000017826,0.0000017782,0.0000017812,0.0000017912,0.0000017979, -0.0000017994,0.0000018007,0.0000018048,0.0000018124,0.0000018255, -0.0000018431,0.0000018520,0.0000018397,0.0000018059,0.0000017827, -0.0000017818,0.0000017896,0.0000017949,0.0000017954,0.0000017945, -0.0000017963,0.0000018025,0.0000018106,0.0000018157,0.0000018168, -0.0000018133,0.0000018066,0.0000018013,0.0000018017,0.0000018084, -0.0000018188,0.0000018291,0.0000018357,0.0000018387,0.0000018402, -0.0000018418,0.0000018434,0.0000018451,0.0000018431,0.0000018402, -0.0000018343,0.0000018297,0.0000018262,0.0000018205,0.0000018133, -0.0000018127,0.0000018320,0.0000018781,0.0000019234,0.0000019435, -0.0000019464,0.0000019434,0.0000019383,0.0000019413,0.0000019553, -0.0000019705,0.0000019832,0.0000019855,0.0000019624,0.0000019279, -0.0000019146,0.0000019188,0.0000019366,0.0000019663,0.0000019971, -0.0000020133,0.0000020149,0.0000020089,0.0000019997,0.0000019908, -0.0000019843,0.0000019824,0.0000019845,0.0000019854,0.0000019742, -0.0000019459,0.0000019291,0.0000019429,0.0000019786,0.0000020037, -0.0000020092,0.0000019980,0.0000019780,0.0000019646,0.0000019399, -0.0000019196,0.0000019176,0.0000019363,0.0000019774,0.0000020152, -0.0000020369,0.0000020421,0.0000020257,0.0000020142,0.0000020220, -0.0000020295,0.0000020234,0.0000020148,0.0000020189,0.0000020322, -0.0000020371,0.0000020357,0.0000020358,0.0000020325,0.0000020177, -0.0000019978,0.0000019800,0.0000019658,0.0000019587,0.0000019645, -0.0000019888,0.0000020103,0.0000020163,0.0000019953,0.0000019322, -0.0000018702,0.0000018292,0.0000018169,0.0000018254,0.0000018397, -0.0000018285,0.0000018025,0.0000017886,0.0000017913,0.0000017997, -0.0000018035,0.0000018053,0.0000018073,0.0000018079,0.0000018035, -0.0000017901,0.0000017876,0.0000018001,0.0000018078,0.0000018099, -0.0000018278,0.0000018436,0.0000018362,0.0000018183,0.0000018165, -0.0000018282,0.0000018410,0.0000018465,0.0000018530,0.0000018762, -0.0000019048,0.0000019130,0.0000018942,0.0000018561,0.0000018214, -0.0000018013,0.0000018038,0.0000018119,0.0000018266,0.0000018383, -0.0000018447,0.0000018467,0.0000018464,0.0000018457,0.0000018436, -0.0000018397,0.0000018348,0.0000018315,0.0000018314,0.0000018360, -0.0000018399,0.0000018408,0.0000018408,0.0000018467,0.0000018667, -0.0000018975,0.0000019273,0.0000019473,0.0000019567,0.0000019586, -0.0000019563,0.0000019493,0.0000019405,0.0000019330,0.0000019262, -0.0000019170,0.0000019078,0.0000019062,0.0000019151,0.0000019191, -0.0000019055,0.0000018736,0.0000018395,0.0000018243,0.0000018190, -0.0000018172,0.0000018134,0.0000018105,0.0000018105,0.0000018129, -0.0000018160,0.0000018184,0.0000018207,0.0000018234,0.0000018269, -0.0000018325,0.0000018410,0.0000018508,0.0000018601,0.0000018690, -0.0000018778,0.0000018850,0.0000018905,0.0000018936,0.0000018952, -0.0000018987,0.0000019051,0.0000019142,0.0000019250,0.0000019360, -0.0000019491,0.0000019617,0.0000019737,0.0000019846,0.0000019918, -0.0000019980,0.0000020027,0.0000020014,0.0000020041,0.0000020029, -0.0000020038,0.0000020021,0.0000019999,0.0000019992,0.0000019986, -0.0000019982,0.0000019978,0.0000019977,0.0000019974,0.0000019970, -0.0000019963,0.0000019954,0.0000019946,0.0000019930,0.0000019911, -0.0000019905,0.0000019909,0.0000019910,0.0000019888,0.0000019891, -0.0000019895,0.0000019901,0.0000019895,0.0000019874,0.0000019836, -0.0000019793,0.0000019743,0.0000019678,0.0000019619,0.0000019586, -0.0000019577,0.0000019578,0.0000019597,0.0000019625,0.0000019657, -0.0000019693,0.0000019732,0.0000019782,0.0000019845,0.0000019869, -0.0000019884,0.0000019916,0.0000019951,0.0000019956,0.0000019941, -0.0000019917,0.0000019898,0.0000019876,0.0000019857,0.0000019834, -0.0000019802,0.0000019760,0.0000019706,0.0000019654,0.0000019606, -0.0000019557,0.0000019504,0.0000019458,0.0000019447,0.0000019431, -0.0000019437,0.0000019465,0.0000019514,0.0000019573,0.0000019651, -0.0000019729,0.0000019777,0.0000019805,0.0000019820,0.0000019837, -0.0000019850,0.0000019857,0.0000019875,0.0000019904,0.0000019935, -0.0000019962,0.0000019983,0.0000020011,0.0000020036,0.0000020066, -0.0000020080,0.0000020090,0.0000020082,0.0000020032,0.0000019957, -0.0000019905,0.0000019894,0.0000019883,0.0000019845,0.0000019801, -0.0000019796,0.0000019834,0.0000019871,0.0000019859,0.0000019777, -0.0000019678,0.0000019623,0.0000019617,0.0000019651,0.0000019711, -0.0000019793,0.0000019880,0.0000019959,0.0000020021,0.0000020051, -0.0000020050,0.0000020025,0.0000019992,0.0000019969,0.0000019949, -0.0000019939,0.0000019933,0.0000019924,0.0000019918,0.0000019937, -0.0000020000,0.0000020070,0.0000020111,0.0000020139,0.0000020189, -0.0000020253,0.0000020284,0.0000020278,0.0000020250,0.0000020218, -0.0000020188,0.0000020175,0.0000020182,0.0000020186,0.0000020166, -0.0000020140,0.0000020124,0.0000020103,0.0000020058,0.0000020005, -0.0000019963,0.0000019935,0.0000019915,0.0000019901,0.0000019896, -0.0000019901,0.0000019904,0.0000019899,0.0000019890,0.0000019879, -0.0000019869,0.0000019861,0.0000019857,0.0000019850,0.0000019834, -0.0000019810,0.0000019778,0.0000019737,0.0000019695,0.0000019664, -0.0000019647,0.0000019638,0.0000019623,0.0000019605,0.0000019599, -0.0000019606,0.0000019626,0.0000019647,0.0000019671,0.0000019708, -0.0000019745,0.0000019775,0.0000019797,0.0000019808,0.0000019814, -0.0000019820,0.0000019819,0.0000019808,0.0000019792,0.0000019766, -0.0000019754,0.0000019745,0.0000019728,0.0000019724,0.0000019735, -0.0000019753,0.0000019764,0.0000019763,0.0000019755,0.0000019739, -0.0000019727,0.0000019719,0.0000019720,0.0000019721,0.0000019724, -0.0000019719,0.0000019706,0.0000019692,0.0000019685,0.0000019695, -0.0000019717,0.0000019742,0.0000019750,0.0000019733,0.0000019702, -0.0000019669,0.0000019636,0.0000019610,0.0000019598,0.0000019584, -0.0000019572,0.0000019578,0.0000019597,0.0000019622,0.0000019640, -0.0000019633,0.0000019609,0.0000019575,0.0000019544,0.0000019528, -0.0000019508,0.0000019493,0.0000019494,0.0000019504,0.0000019520, -0.0000019526,0.0000019515,0.0000019481,0.0000019422,0.0000019362, -0.0000019309,0.0000019252,0.0000019206,0.0000019180,0.0000019179, -0.0000019184,0.0000019200,0.0000019232,0.0000019248,0.0000019223, -0.0000019162,0.0000019087,0.0000018999,0.0000018919,0.0000018887, -0.0000018898,0.0000018929,0.0000018984,0.0000019031,0.0000019037, -0.0000019020,0.0000018999,0.0000018963,0.0000018905,0.0000018845, -0.0000018809,0.0000018812,0.0000018858,0.0000018921,0.0000018964, -0.0000018975,0.0000018960,0.0000018909,0.0000018858,0.0000018821, -0.0000018803,0.0000018800,0.0000018795,0.0000018762,0.0000018697, -0.0000018626,0.0000018593,0.0000018592,0.0000018579,0.0000018536, -0.0000018467,0.0000018413,0.0000018392,0.0000018395,0.0000018415, -0.0000018427,0.0000018410,0.0000018382,0.0000018355,0.0000018327, -0.0000018310,0.0000018291,0.0000018272,0.0000018263,0.0000018268, -0.0000018271,0.0000018259,0.0000018240,0.0000018240,0.0000018268, -0.0000018309,0.0000018333,0.0000018338,0.0000018328,0.0000018307, -0.0000018273,0.0000018218,0.0000018144,0.0000018047,0.0000017936, -0.0000017815,0.0000017734,0.0000017709,0.0000017732,0.0000017759, -0.0000017779,0.0000017775,0.0000017742,0.0000017705,0.0000017699, -0.0000017713,0.0000017688,0.0000017581,0.0000017499,0.0000017482, -0.0000017447,0.0000017355,0.0000017259,0.0000017213,0.0000017147, -0.0000017073,0.0000017028,0.0000017124,0.0000017452,0.0000017873, -0.0000018149,0.0000018186,0.0000018156,0.0000018104,0.0000018056, -0.0000018017,0.0000017985,0.0000017961,0.0000017942,0.0000017926, -0.0000017913,0.0000017904,0.0000017907,0.0000017929,0.0000017959, -0.0000017977,0.0000017988,0.0000018001,0.0000018018,0.0000018023, -0.0000018017,0.0000018005,0.0000017976,0.0000017924,0.0000017837, -0.0000017720,0.0000017579,0.0000017427,0.0000017284,0.0000017165, -0.0000017077,0.0000017026,0.0000017012,0.0000017017,0.0000017015, -0.0000016994,0.0000016946,0.0000016901,0.0000016893,0.0000016914, -0.0000016929,0.0000016928,0.0000016934,0.0000016994,0.0000017101, -0.0000017238,0.0000017404,0.0000017555,0.0000017666,0.0000017701, -0.0000017668,0.0000017561,0.0000017428,0.0000017260,0.0000017060, -0.0000016925,0.0000016908,0.0000016957,0.0000017005,0.0000017069, -0.0000017169,0.0000017290,0.0000017428,0.0000017571,0.0000017702, -0.0000017810,0.0000017896,0.0000017961,0.0000018003,0.0000018008, -0.0000017977,0.0000017910,0.0000017821,0.0000017741,0.0000017663, -0.0000017574,0.0000017484,0.0000017408,0.0000017355,0.0000017314, -0.0000017277,0.0000017232,0.0000017183,0.0000017131,0.0000017066, -0.0000017002,0.0000016960,0.0000016952,0.0000016970,0.0000016989, -0.0000016987,0.0000016960,0.0000016937,0.0000016948,0.0000017069, -0.0000017346,0.0000017708,0.0000017871,0.0000017787,0.0000017599, -0.0000017427,0.0000017403,0.0000017489,0.0000017587,0.0000017683, -0.0000017812,0.0000017872,0.0000017862,0.0000017859,0.0000017780, -0.0000017665,0.0000017646,0.0000017677,0.0000017801,0.0000018018, -0.0000018146,0.0000018122,0.0000017989,0.0000017875,0.0000017824, -0.0000017821,0.0000017836,0.0000017856,0.0000017861,0.0000017849, -0.0000017816,0.0000017774,0.0000017717,0.0000017674,0.0000017670, -0.0000017713,0.0000017853,0.0000017964,0.0000017965,0.0000017929, -0.0000017941,0.0000017932,0.0000018023,0.0000018104,0.0000018112, -0.0000018069,0.0000017992,0.0000017887,0.0000017798,0.0000017755, -0.0000017752,0.0000017757,0.0000017749,0.0000017715,0.0000017683, -0.0000017686,0.0000017703,0.0000017718,0.0000017728,0.0000017732, -0.0000017727,0.0000017714,0.0000017698,0.0000017677,0.0000017673, -0.0000017717,0.0000017771,0.0000017817,0.0000017858,0.0000017887, -0.0000017896,0.0000017912,0.0000018012,0.0000018118,0.0000018188, -0.0000018331,0.0000018442,0.0000018566,0.0000018763,0.0000018795, -0.0000018684,0.0000018604,0.0000018567,0.0000018496,0.0000018434, -0.0000018435,0.0000018441,0.0000018405,0.0000018287,0.0000018104, -0.0000018033,0.0000018161,0.0000018329,0.0000018374,0.0000018296, -0.0000018074,0.0000017870,0.0000017853,0.0000017943,0.0000017998, -0.0000017997,0.0000018028,0.0000018142,0.0000018293,0.0000018390, -0.0000018414,0.0000018442,0.0000018530,0.0000018651,0.0000018740, -0.0000018776,0.0000018786,0.0000018787,0.0000018780,0.0000018784, -0.0000018833,0.0000018914,0.0000018972,0.0000018976,0.0000018940, -0.0000018913,0.0000018894,0.0000018833,0.0000018783,0.0000018856, -0.0000018937,0.0000018776,0.0000018459,0.0000018079,0.0000017812, -0.0000017730,0.0000017730,0.0000017757,0.0000017740,0.0000017680, -0.0000017624,0.0000017587,0.0000017559,0.0000017557,0.0000017613, -0.0000017751,0.0000017926,0.0000018051,0.0000018056,0.0000017997, -0.0000018011,0.0000018086,0.0000018215,0.0000018348,0.0000018445, -0.0000018494,0.0000018499,0.0000018475,0.0000018424,0.0000018354, -0.0000018272,0.0000018178,0.0000018074,0.0000017978,0.0000017896, -0.0000017800,0.0000017667,0.0000017521,0.0000017407,0.0000017334, -0.0000017285,0.0000017248,0.0000017232,0.0000017249,0.0000017318, -0.0000017403,0.0000017470,0.0000017540,0.0000017617,0.0000017702, -0.0000017800,0.0000017852,0.0000017903,0.0000018007,0.0000018085, -0.0000018104,0.0000018107,0.0000018079,0.0000018060,0.0000018071, -0.0000018107,0.0000018133,0.0000018134,0.0000018109,0.0000018072, -0.0000018041,0.0000018028,0.0000018042,0.0000018163,0.0000018391, -0.0000018573,0.0000018690,0.0000018853,0.0000018896,0.0000018307, -0.0000017990,0.0000018119,0.0000018187,0.0000018216,0.0000018249, -0.0000018316,0.0000018408,0.0000018436,0.0000018346,0.0000018206, -0.0000018085,0.0000018000,0.0000017954,0.0000017949,0.0000017979, -0.0000018022,0.0000018033,0.0000017971,0.0000017847,0.0000017762, -0.0000017766,0.0000017824,0.0000017823,0.0000017770,0.0000017762, -0.0000017831,0.0000017889,0.0000017906,0.0000017934,0.0000017998, -0.0000018080,0.0000018212,0.0000018404,0.0000018476,0.0000018288, -0.0000017936,0.0000017766,0.0000017799,0.0000017886,0.0000017922, -0.0000017924,0.0000017944,0.0000018011,0.0000018104,0.0000018156, -0.0000018158,0.0000018103,0.0000018019,0.0000017962,0.0000017980, -0.0000018069,0.0000018184,0.0000018255,0.0000018273,0.0000018275, -0.0000018293,0.0000018352,0.0000018463,0.0000018567,0.0000018631, -0.0000018631,0.0000018571,0.0000018466,0.0000018349,0.0000018254, -0.0000018182,0.0000018146,0.0000018216,0.0000018538,0.0000019012, -0.0000019351,0.0000019466,0.0000019498,0.0000019522,0.0000019526, -0.0000019551,0.0000019632,0.0000019763,0.0000019863,0.0000019746, -0.0000019374,0.0000019127,0.0000019131,0.0000019181,0.0000019234, -0.0000019382,0.0000019706,0.0000020031,0.0000020175,0.0000020165, -0.0000020098,0.0000020009,0.0000019919,0.0000019855,0.0000019843, -0.0000019846,0.0000019734,0.0000019451,0.0000019326,0.0000019520, -0.0000019888,0.0000020101,0.0000020082,0.0000019879,0.0000019727, -0.0000019508,0.0000019255,0.0000019196,0.0000019306,0.0000019695, -0.0000020115,0.0000020356,0.0000020423,0.0000020268,0.0000020117, -0.0000020188,0.0000020301,0.0000020260,0.0000020173,0.0000020208, -0.0000020339,0.0000020390,0.0000020378,0.0000020376,0.0000020330, -0.0000020170,0.0000019966,0.0000019805,0.0000019681,0.0000019614, -0.0000019706,0.0000019959,0.0000020143,0.0000020168,0.0000019819, -0.0000019119,0.0000018504,0.0000018196,0.0000018218,0.0000018359, -0.0000018345,0.0000018138,0.0000017930,0.0000017887,0.0000017954, -0.0000018006,0.0000018041,0.0000018073,0.0000018096,0.0000018090, -0.0000017992,0.0000017847,0.0000017869,0.0000018022,0.0000018082, -0.0000018177,0.0000018398,0.0000018454,0.0000018308,0.0000018204, -0.0000018260,0.0000018364,0.0000018424,0.0000018495,0.0000018727, -0.0000019107,0.0000019200,0.0000019031,0.0000018611,0.0000018223, -0.0000018080,0.0000018022,0.0000018048,0.0000018109,0.0000018170, -0.0000018228,0.0000018250,0.0000018273,0.0000018279,0.0000018273, -0.0000018268,0.0000018274,0.0000018300,0.0000018345,0.0000018382, -0.0000018400,0.0000018391,0.0000018379,0.0000018385,0.0000018463, -0.0000018645,0.0000018913,0.0000019204,0.0000019448,0.0000019601, -0.0000019653,0.0000019617,0.0000019493,0.0000019345,0.0000019211, -0.0000019097,0.0000019057,0.0000019124,0.0000019218,0.0000019147, -0.0000018833,0.0000018457,0.0000018307,0.0000018266,0.0000018245, -0.0000018185,0.0000018126,0.0000018102,0.0000018102,0.0000018122, -0.0000018151,0.0000018185,0.0000018221,0.0000018271,0.0000018345, -0.0000018441,0.0000018551,0.0000018664,0.0000018762,0.0000018824, -0.0000018863,0.0000018886,0.0000018910,0.0000018968,0.0000019063, -0.0000019174,0.0000019312,0.0000019468,0.0000019623,0.0000019762, -0.0000019883,0.0000019966,0.0000020019,0.0000020054,0.0000020052, -0.0000020041,0.0000020040,0.0000020023,0.0000019992,0.0000019968, -0.0000019947,0.0000019927,0.0000019912,0.0000019901,0.0000019892, -0.0000019883,0.0000019877,0.0000019877,0.0000019881,0.0000019886, -0.0000019885,0.0000019879,0.0000019868,0.0000019856,0.0000019844, -0.0000019835,0.0000019827,0.0000019820,0.0000019814,0.0000019816, -0.0000019826,0.0000019844,0.0000019867,0.0000019879,0.0000019905, -0.0000019909,0.0000019911,0.0000019900,0.0000019880,0.0000019853, -0.0000019840,0.0000019840,0.0000019845,0.0000019857,0.0000019868, -0.0000019872,0.0000019867,0.0000019851,0.0000019837,0.0000019822, -0.0000019807,0.0000019797,0.0000019799,0.0000019799,0.0000019799, -0.0000019797,0.0000019783,0.0000019760,0.0000019733,0.0000019708, -0.0000019676,0.0000019640,0.0000019604,0.0000019586,0.0000019568, -0.0000019549,0.0000019524,0.0000019494,0.0000019480,0.0000019497, -0.0000019537,0.0000019597,0.0000019678,0.0000019747,0.0000019788, -0.0000019831,0.0000019839,0.0000019841,0.0000019849,0.0000019858, -0.0000019873,0.0000019893,0.0000019917,0.0000019944,0.0000019982, -0.0000019978,0.0000019991,0.0000019980,0.0000019981,0.0000019987, -0.0000020006,0.0000020030,0.0000020039,0.0000020014,0.0000019930, -0.0000019844,0.0000019806,0.0000019802,0.0000019789,0.0000019746, -0.0000019705,0.0000019704,0.0000019752,0.0000019809,0.0000019821, -0.0000019764,0.0000019675,0.0000019610,0.0000019579,0.0000019617, -0.0000019669,0.0000019736,0.0000019809,0.0000019882,0.0000019945, -0.0000019982,0.0000019995,0.0000019996,0.0000020002,0.0000020010, -0.0000020005,0.0000019982,0.0000019951,0.0000019929,0.0000019934, -0.0000019981,0.0000020049,0.0000020093,0.0000020130,0.0000020190, -0.0000020244,0.0000020263,0.0000020233,0.0000020188,0.0000020157, -0.0000020135,0.0000020135,0.0000020147,0.0000020142,0.0000020115, -0.0000020102,0.0000020099,0.0000020079,0.0000020036,0.0000019998, -0.0000019969,0.0000019937,0.0000019900,0.0000019867,0.0000019843, -0.0000019828,0.0000019815,0.0000019797,0.0000019771,0.0000019741, -0.0000019714,0.0000019697,0.0000019692,0.0000019692,0.0000019694, -0.0000019698,0.0000019702,0.0000019697,0.0000019688,0.0000019680, -0.0000019681,0.0000019680,0.0000019671,0.0000019655,0.0000019645, -0.0000019642,0.0000019644,0.0000019647,0.0000019653,0.0000019664, -0.0000019690,0.0000019705,0.0000019718,0.0000019730,0.0000019745, -0.0000019763,0.0000019778,0.0000019779,0.0000019773,0.0000019769, -0.0000019769,0.0000019774,0.0000019768,0.0000019769,0.0000019784, -0.0000019806,0.0000019816,0.0000019810,0.0000019791,0.0000019771, -0.0000019751,0.0000019739,0.0000019737,0.0000019737,0.0000019742, -0.0000019750,0.0000019755,0.0000019759,0.0000019774,0.0000019767, -0.0000019778,0.0000019769,0.0000019757,0.0000019730,0.0000019704, -0.0000019681,0.0000019656,0.0000019631,0.0000019619,0.0000019606, -0.0000019605,0.0000019629,0.0000019669,0.0000019705,0.0000019714, -0.0000019691,0.0000019648,0.0000019597,0.0000019554,0.0000019533, -0.0000019517,0.0000019500,0.0000019487,0.0000019489,0.0000019502, -0.0000019526,0.0000019543,0.0000019536,0.0000019501,0.0000019450, -0.0000019402,0.0000019365,0.0000019325,0.0000019275,0.0000019225, -0.0000019185,0.0000019172,0.0000019194,0.0000019229,0.0000019241, -0.0000019220,0.0000019150,0.0000019049,0.0000018940,0.0000018876, -0.0000018883,0.0000018929,0.0000019001,0.0000019080,0.0000019100, -0.0000019079,0.0000019043,0.0000019006,0.0000018957,0.0000018901, -0.0000018853,0.0000018837,0.0000018860,0.0000018908,0.0000018948, -0.0000018968,0.0000018966,0.0000018933,0.0000018896,0.0000018868, -0.0000018846,0.0000018828,0.0000018816,0.0000018798,0.0000018748, -0.0000018670,0.0000018614,0.0000018601,0.0000018596,0.0000018569, -0.0000018520,0.0000018475,0.0000018444,0.0000018430,0.0000018437, -0.0000018458,0.0000018461,0.0000018447,0.0000018415,0.0000018365, -0.0000018333,0.0000018310,0.0000018289,0.0000018283,0.0000018288, -0.0000018285,0.0000018262,0.0000018237,0.0000018237,0.0000018269, -0.0000018315,0.0000018342,0.0000018346,0.0000018338,0.0000018326, -0.0000018315,0.0000018296,0.0000018256,0.0000018183,0.0000018071, -0.0000017937,0.0000017829,0.0000017771,0.0000017754,0.0000017759, -0.0000017764,0.0000017749,0.0000017714,0.0000017679,0.0000017677, -0.0000017717,0.0000017733,0.0000017672,0.0000017579,0.0000017540, -0.0000017508,0.0000017420,0.0000017299,0.0000017223,0.0000017177, -0.0000017100,0.0000017023,0.0000017023,0.0000017218,0.0000017597, -0.0000017989,0.0000018173,0.0000018182,0.0000018152,0.0000018115, -0.0000018086,0.0000018064,0.0000018043,0.0000018025,0.0000018010, -0.0000017998,0.0000017991,0.0000017997,0.0000018016,0.0000018032, -0.0000018034,0.0000018027,0.0000018026,0.0000018034,0.0000018030, -0.0000017995,0.0000017932,0.0000017833,0.0000017702,0.0000017556, -0.0000017405,0.0000017255,0.0000017131,0.0000017047,0.0000017004, -0.0000016990,0.0000017000,0.0000017021,0.0000017041,0.0000017041, -0.0000017009,0.0000016946,0.0000016893,0.0000016887,0.0000016918, -0.0000016939,0.0000016924,0.0000016916,0.0000016965,0.0000017058, -0.0000017163,0.0000017305,0.0000017461,0.0000017602,0.0000017684, -0.0000017656,0.0000017551,0.0000017417,0.0000017265,0.0000017060, -0.0000016890,0.0000016868,0.0000016921,0.0000016975,0.0000017023, -0.0000017074,0.0000017152,0.0000017262,0.0000017400,0.0000017542, -0.0000017667,0.0000017765,0.0000017834,0.0000017861,0.0000017847, -0.0000017802,0.0000017733,0.0000017671,0.0000017605,0.0000017526, -0.0000017448,0.0000017381,0.0000017335,0.0000017310,0.0000017289, -0.0000017258,0.0000017223,0.0000017179,0.0000017115,0.0000017046, -0.0000016988,0.0000016964,0.0000016980,0.0000017012,0.0000017028, -0.0000017024,0.0000016991,0.0000016950,0.0000016954,0.0000017035, -0.0000017268,0.0000017618,0.0000017821,0.0000017755,0.0000017565, -0.0000017435,0.0000017437,0.0000017521,0.0000017611,0.0000017720, -0.0000017850,0.0000017881,0.0000017867,0.0000017851,0.0000017756, -0.0000017660,0.0000017659,0.0000017712,0.0000017859,0.0000018056, -0.0000018151,0.0000018098,0.0000017962,0.0000017870,0.0000017853, -0.0000017864,0.0000017893,0.0000017921,0.0000017928,0.0000017911, -0.0000017874,0.0000017828,0.0000017756,0.0000017694,0.0000017675, -0.0000017703,0.0000017828,0.0000017934,0.0000017957,0.0000017930, -0.0000017945,0.0000017940,0.0000018008,0.0000018109,0.0000018148, -0.0000018142,0.0000018075,0.0000017981,0.0000017893,0.0000017838, -0.0000017819,0.0000017813,0.0000017790,0.0000017740,0.0000017707, -0.0000017707,0.0000017721,0.0000017725,0.0000017725,0.0000017712, -0.0000017688,0.0000017665,0.0000017642,0.0000017636,0.0000017686, -0.0000017759,0.0000017807,0.0000017843,0.0000017870,0.0000017885, -0.0000017900,0.0000017978,0.0000018083,0.0000018148,0.0000018281, -0.0000018407,0.0000018502,0.0000018705,0.0000018805,0.0000018732, -0.0000018623,0.0000018594,0.0000018541,0.0000018462,0.0000018432, -0.0000018442,0.0000018444,0.0000018406,0.0000018292,0.0000018113, -0.0000018034,0.0000018093,0.0000018203,0.0000018203,0.0000018055, -0.0000017885,0.0000017850,0.0000017941,0.0000018028,0.0000018044, -0.0000018051,0.0000018109,0.0000018236,0.0000018356,0.0000018398, -0.0000018404,0.0000018453,0.0000018556,0.0000018653,0.0000018696, -0.0000018701,0.0000018695,0.0000018690,0.0000018697,0.0000018752, -0.0000018855,0.0000018952,0.0000018979,0.0000018956,0.0000018923, -0.0000018910,0.0000018852,0.0000018779,0.0000018851,0.0000018946, -0.0000018812,0.0000018502,0.0000018115,0.0000017823,0.0000017734, -0.0000017740,0.0000017768,0.0000017726,0.0000017645,0.0000017588, -0.0000017555,0.0000017536,0.0000017552,0.0000017638,0.0000017775, -0.0000017918,0.0000018004,0.0000017998,0.0000017943,0.0000017963, -0.0000018027,0.0000018105,0.0000018193,0.0000018259,0.0000018289, -0.0000018283,0.0000018251,0.0000018200,0.0000018135,0.0000018061, -0.0000017983,0.0000017900,0.0000017798,0.0000017664,0.0000017517, -0.0000017393,0.0000017310,0.0000017255,0.0000017211,0.0000017176, -0.0000017166,0.0000017198,0.0000017276,0.0000017366,0.0000017443, -0.0000017519,0.0000017607,0.0000017711,0.0000017801,0.0000017842, -0.0000017931,0.0000018046,0.0000018087,0.0000018084,0.0000018043, -0.0000017985,0.0000017952,0.0000017958,0.0000018004,0.0000018083, -0.0000018143,0.0000018150,0.0000018126,0.0000018083,0.0000018044, -0.0000018029,0.0000018105,0.0000018334,0.0000018552,0.0000018671, -0.0000018825,0.0000018906,0.0000018370,0.0000018014,0.0000018121, -0.0000018210,0.0000018235,0.0000018269,0.0000018386,0.0000018497, -0.0000018424,0.0000018219,0.0000018030,0.0000017887,0.0000017789, -0.0000017733,0.0000017719,0.0000017740,0.0000017807,0.0000017920, -0.0000017994,0.0000017937,0.0000017805,0.0000017738,0.0000017770, -0.0000017802,0.0000017767,0.0000017739,0.0000017772,0.0000017809, -0.0000017819,0.0000017855,0.0000017944,0.0000018039,0.0000018175, -0.0000018372,0.0000018419,0.0000018159,0.0000017817,0.0000017716, -0.0000017783,0.0000017861,0.0000017889,0.0000017916,0.0000017984, -0.0000018092,0.0000018179,0.0000018178,0.0000018103,0.0000017995, -0.0000017937,0.0000017976,0.0000018081,0.0000018179,0.0000018216, -0.0000018191,0.0000018157,0.0000018224,0.0000018373,0.0000018617, -0.0000018876,0.0000019076,0.0000019185,0.0000019206,0.0000019157, -0.0000019029,0.0000018842,0.0000018645,0.0000018497,0.0000018450, -0.0000018553,0.0000018864,0.0000019211,0.0000019408,0.0000019472, -0.0000019519,0.0000019563,0.0000019581,0.0000019603,0.0000019676, -0.0000019808,0.0000019851,0.0000019599,0.0000019228,0.0000019126, -0.0000019223,0.0000019303,0.0000019295,0.0000019294,0.0000019453, -0.0000019800,0.0000020100,0.0000020178,0.0000020153,0.0000020085, -0.0000020003,0.0000019915,0.0000019865,0.0000019854,0.0000019717, -0.0000019432,0.0000019358,0.0000019634,0.0000020000,0.0000020119, -0.0000019986,0.0000019804,0.0000019613,0.0000019324,0.0000019222, -0.0000019272,0.0000019613,0.0000020067,0.0000020335,0.0000020415, -0.0000020271,0.0000020108,0.0000020148,0.0000020278,0.0000020283, -0.0000020208,0.0000020230,0.0000020354,0.0000020410,0.0000020400, -0.0000020395,0.0000020332,0.0000020164,0.0000019956,0.0000019813, -0.0000019715,0.0000019655,0.0000019773,0.0000020030,0.0000020181, -0.0000020170,0.0000019692,0.0000018950,0.0000018357,0.0000018209, -0.0000018287,0.0000018353,0.0000018229,0.0000017983,0.0000017867, -0.0000017907,0.0000017981,0.0000018045,0.0000018081,0.0000018103, -0.0000018104,0.0000018083,0.0000017940,0.0000017792,0.0000017887, -0.0000018032,0.0000018090,0.0000018282,0.0000018477,0.0000018422, -0.0000018276,0.0000018283,0.0000018353,0.0000018385,0.0000018433, -0.0000018659,0.0000019042,0.0000019351,0.0000019215,0.0000018750, -0.0000018348,0.0000018189,0.0000018171,0.0000018175,0.0000018190, -0.0000018209,0.0000018225,0.0000018239,0.0000018260,0.0000018285, -0.0000018308,0.0000018330,0.0000018356,0.0000018375,0.0000018402, -0.0000018399,0.0000018377,0.0000018348,0.0000018325,0.0000018326, -0.0000018343,0.0000018430,0.0000018611,0.0000018884,0.0000019214, -0.0000019517,0.0000019701,0.0000019719,0.0000019599,0.0000019414, -0.0000019225,0.0000019097,0.0000019094,0.0000019188,0.0000019187, -0.0000018938,0.0000018536,0.0000018332,0.0000018316,0.0000018308, -0.0000018254,0.0000018179,0.0000018125,0.0000018107,0.0000018112, -0.0000018138,0.0000018167,0.0000018207,0.0000018273,0.0000018372, -0.0000018490,0.0000018610,0.0000018718,0.0000018789,0.0000018822, -0.0000018844,0.0000018861,0.0000018890,0.0000018976,0.0000019097, -0.0000019262,0.0000019447,0.0000019633,0.0000019804,0.0000019938, -0.0000020026,0.0000020073,0.0000020078,0.0000020074,0.0000020057, -0.0000020052,0.0000020048,0.0000020024,0.0000019998,0.0000019969, -0.0000019943,0.0000019915,0.0000019894,0.0000019881,0.0000019870, -0.0000019864,0.0000019862,0.0000019856,0.0000019853,0.0000019854, -0.0000019862,0.0000019871,0.0000019876,0.0000019873,0.0000019865, -0.0000019854,0.0000019841,0.0000019829,0.0000019817,0.0000019823, -0.0000019812,0.0000019801,0.0000019798,0.0000019796,0.0000019798, -0.0000019789,0.0000019789,0.0000019775,0.0000019776,0.0000019754, -0.0000019742,0.0000019723,0.0000019726,0.0000019736,0.0000019744, -0.0000019752,0.0000019746,0.0000019737,0.0000019722,0.0000019702, -0.0000019689,0.0000019672,0.0000019665,0.0000019665,0.0000019675, -0.0000019683,0.0000019682,0.0000019672,0.0000019647,0.0000019623, -0.0000019608,0.0000019607,0.0000019595,0.0000019593,0.0000019600, -0.0000019615,0.0000019633,0.0000019637,0.0000019632,0.0000019633, -0.0000019657,0.0000019705,0.0000019760,0.0000019805,0.0000019816, -0.0000019823,0.0000019813,0.0000019822,0.0000019828,0.0000019847, -0.0000019868,0.0000019892,0.0000019922,0.0000019927,0.0000019944, -0.0000019935,0.0000019927,0.0000019897,0.0000019873,0.0000019862, -0.0000019867,0.0000019895,0.0000019940,0.0000019979,0.0000019986, -0.0000019946,0.0000019854,0.0000019775,0.0000019740,0.0000019727, -0.0000019702,0.0000019654,0.0000019613,0.0000019615,0.0000019668, -0.0000019740,0.0000019783,0.0000019776,0.0000019735,0.0000019687, -0.0000019663,0.0000019677,0.0000019718,0.0000019771,0.0000019832, -0.0000019897,0.0000019950,0.0000019986,0.0000020011,0.0000020035, -0.0000020053,0.0000020053,0.0000020030,0.0000019993,0.0000019966, -0.0000019962,0.0000019988,0.0000020044,0.0000020086,0.0000020122, -0.0000020168,0.0000020206,0.0000020204,0.0000020162,0.0000020108, -0.0000020079,0.0000020063,0.0000020059,0.0000020069,0.0000020071, -0.0000020063,0.0000020070,0.0000020071,0.0000020046,0.0000020002, -0.0000019969,0.0000019936,0.0000019883,0.0000019831,0.0000019789, -0.0000019756,0.0000019727,0.0000019700,0.0000019680,0.0000019667, -0.0000019668,0.0000019684,0.0000019702,0.0000019718,0.0000019723, -0.0000019719,0.0000019709,0.0000019694,0.0000019681,0.0000019672, -0.0000019671,0.0000019675,0.0000019679,0.0000019678,0.0000019672, -0.0000019666,0.0000019665,0.0000019665,0.0000019666,0.0000019668, -0.0000019670,0.0000019675,0.0000019682,0.0000019682,0.0000019686, -0.0000019698,0.0000019716,0.0000019737,0.0000019751,0.0000019753, -0.0000019755,0.0000019765,0.0000019772,0.0000019773,0.0000019771, -0.0000019780,0.0000019800,0.0000019813,0.0000019808,0.0000019789, -0.0000019770,0.0000019749,0.0000019737,0.0000019738,0.0000019743, -0.0000019755,0.0000019769,0.0000019778,0.0000019771,0.0000019773, -0.0000019741,0.0000019724,0.0000019709,0.0000019698,0.0000019690, -0.0000019687,0.0000019684,0.0000019669,0.0000019653,0.0000019645, -0.0000019637,0.0000019649,0.0000019688,0.0000019736,0.0000019772, -0.0000019778,0.0000019746,0.0000019692,0.0000019627,0.0000019573, -0.0000019542,0.0000019527,0.0000019514,0.0000019498,0.0000019492, -0.0000019501,0.0000019524,0.0000019552,0.0000019555,0.0000019536, -0.0000019498,0.0000019456,0.0000019431,0.0000019416,0.0000019384, -0.0000019311,0.0000019223,0.0000019164,0.0000019154,0.0000019185, -0.0000019233,0.0000019242,0.0000019202,0.0000019111,0.0000018989, -0.0000018881,0.0000018859,0.0000018899,0.0000018989,0.0000019090, -0.0000019138,0.0000019131,0.0000019088,0.0000019038,0.0000018990, -0.0000018943,0.0000018900,0.0000018877,0.0000018883,0.0000018913, -0.0000018942,0.0000018958,0.0000018961,0.0000018945,0.0000018919, -0.0000018905,0.0000018890,0.0000018862,0.0000018833,0.0000018815, -0.0000018788,0.0000018726,0.0000018657,0.0000018626,0.0000018614, -0.0000018590,0.0000018555,0.0000018523,0.0000018494,0.0000018473, -0.0000018469,0.0000018488,0.0000018503,0.0000018500,0.0000018469, -0.0000018408,0.0000018367,0.0000018342,0.0000018321,0.0000018313, -0.0000018315,0.0000018306,0.0000018276,0.0000018250,0.0000018253, -0.0000018290,0.0000018336,0.0000018358,0.0000018355,0.0000018338, -0.0000018322,0.0000018317,0.0000018312,0.0000018300,0.0000018252, -0.0000018168,0.0000018056,0.0000017942,0.0000017857,0.0000017809, -0.0000017789,0.0000017772,0.0000017738,0.0000017690,0.0000017641, -0.0000017632,0.0000017682,0.0000017735,0.0000017719,0.0000017642, -0.0000017588,0.0000017559,0.0000017481,0.0000017356,0.0000017236, -0.0000017194,0.0000017128,0.0000017042,0.0000016999,0.0000017065, -0.0000017320,0.0000017717,0.0000018051,0.0000018180,0.0000018185, -0.0000018163,0.0000018142,0.0000018129,0.0000018117,0.0000018103, -0.0000018087,0.0000018069,0.0000018055,0.0000018051,0.0000018056, -0.0000018056,0.0000018041,0.0000018024,0.0000018003,0.0000017966, -0.0000017884,0.0000017766,0.0000017624,0.0000017474,0.0000017338, -0.0000017226,0.0000017131,0.0000017053,0.0000017003,0.0000016990, -0.0000016984,0.0000016998,0.0000017022,0.0000017047,0.0000017057, -0.0000017046,0.0000017001,0.0000016935,0.0000016880,0.0000016868, -0.0000016905,0.0000016939,0.0000016926,0.0000016907,0.0000016945, -0.0000017020,0.0000017105,0.0000017239,0.0000017384,0.0000017529, -0.0000017636,0.0000017619,0.0000017499,0.0000017374,0.0000017232, -0.0000017000,0.0000016828,0.0000016824,0.0000016888,0.0000016934, -0.0000016963,0.0000017010,0.0000017073,0.0000017154,0.0000017262, -0.0000017381,0.0000017492,0.0000017580,0.0000017630,0.0000017635, -0.0000017614,0.0000017568,0.0000017525,0.0000017472,0.0000017405, -0.0000017342,0.0000017296,0.0000017274,0.0000017271,0.0000017270, -0.0000017257,0.0000017233,0.0000017198,0.0000017153,0.0000017094, -0.0000017026,0.0000016980,0.0000016986,0.0000017022,0.0000017048, -0.0000017053,0.0000017043,0.0000017011,0.0000016976,0.0000016980, -0.0000017020,0.0000017199,0.0000017534,0.0000017769,0.0000017727, -0.0000017558,0.0000017445,0.0000017450,0.0000017538,0.0000017630, -0.0000017760,0.0000017873,0.0000017887,0.0000017868,0.0000017837, -0.0000017746,0.0000017676,0.0000017693,0.0000017758,0.0000017903, -0.0000018070,0.0000018132,0.0000018075,0.0000017962,0.0000017895, -0.0000017876,0.0000017888,0.0000017923,0.0000017960,0.0000017974, -0.0000017957,0.0000017915,0.0000017870,0.0000017788,0.0000017707, -0.0000017681,0.0000017712,0.0000017828,0.0000017919,0.0000017954, -0.0000017954,0.0000017968,0.0000017954,0.0000017990,0.0000018090, -0.0000018152,0.0000018151,0.0000018118,0.0000018054,0.0000017983, -0.0000017936,0.0000017918,0.0000017904,0.0000017861,0.0000017813, -0.0000017785,0.0000017784,0.0000017785,0.0000017778,0.0000017754, -0.0000017717,0.0000017670,0.0000017622,0.0000017591,0.0000017630, -0.0000017729,0.0000017799,0.0000017835,0.0000017856,0.0000017865, -0.0000017884,0.0000017954,0.0000018055,0.0000018114,0.0000018226, -0.0000018364,0.0000018450,0.0000018633,0.0000018814,0.0000018780, -0.0000018656,0.0000018612,0.0000018582,0.0000018514,0.0000018439, -0.0000018434,0.0000018459,0.0000018452,0.0000018408,0.0000018311, -0.0000018146,0.0000018022,0.0000018005,0.0000018019,0.0000017974, -0.0000017891,0.0000017875,0.0000017960,0.0000018059,0.0000018090, -0.0000018092,0.0000018110,0.0000018193,0.0000018313,0.0000018379, -0.0000018386,0.0000018415,0.0000018499,0.0000018592,0.0000018634, -0.0000018630,0.0000018615,0.0000018612,0.0000018629,0.0000018691, -0.0000018809,0.0000018931,0.0000018981,0.0000018968,0.0000018934, -0.0000018922,0.0000018867,0.0000018778,0.0000018850,0.0000018957, -0.0000018840,0.0000018535,0.0000018141,0.0000017832,0.0000017739, -0.0000017754,0.0000017768,0.0000017692,0.0000017583,0.0000017523, -0.0000017500,0.0000017500,0.0000017545,0.0000017644,0.0000017760, -0.0000017865,0.0000017918,0.0000017899,0.0000017843,0.0000017873, -0.0000017938,0.0000017986,0.0000018034,0.0000018069,0.0000018082, -0.0000018072,0.0000018045,0.0000018003,0.0000017944,0.0000017865, -0.0000017760,0.0000017630,0.0000017493,0.0000017376,0.0000017291, -0.0000017228,0.0000017173,0.0000017128,0.0000017106,0.0000017111, -0.0000017165,0.0000017250,0.0000017342,0.0000017424,0.0000017507, -0.0000017605,0.0000017722,0.0000017801,0.0000017845,0.0000017959, -0.0000018051,0.0000018065,0.0000018046,0.0000017993,0.0000017940, -0.0000017921,0.0000017922,0.0000017933,0.0000017994,0.0000018099, -0.0000018156,0.0000018156,0.0000018127,0.0000018081,0.0000018036, -0.0000018069,0.0000018280,0.0000018525,0.0000018656,0.0000018789, -0.0000018911,0.0000018452,0.0000018041,0.0000018120,0.0000018224, -0.0000018244,0.0000018299,0.0000018460,0.0000018515,0.0000018344, -0.0000018075,0.0000017873,0.0000017722,0.0000017626,0.0000017573, -0.0000017554,0.0000017565,0.0000017610,0.0000017700,0.0000017859, -0.0000017953,0.0000017880,0.0000017752,0.0000017735,0.0000017773, -0.0000017758,0.0000017720,0.0000017728,0.0000017748,0.0000017751, -0.0000017788,0.0000017893,0.0000018005,0.0000018153,0.0000018337, -0.0000018334,0.0000018020,0.0000017715,0.0000017672,0.0000017759, -0.0000017826,0.0000017868,0.0000017941,0.0000018062,0.0000018176, -0.0000018215,0.0000018147,0.0000018024,0.0000017960,0.0000017977, -0.0000018078,0.0000018150,0.0000018162,0.0000018120,0.0000018116, -0.0000018184,0.0000018436,0.0000018788,0.0000019126,0.0000019358, -0.0000019483,0.0000019554,0.0000019585,0.0000019581,0.0000019526, -0.0000019413,0.0000019248,0.0000019082,0.0000018999,0.0000019021, -0.0000019172,0.0000019337,0.0000019431,0.0000019494,0.0000019565, -0.0000019619,0.0000019636,0.0000019649,0.0000019722,0.0000019832, -0.0000019794,0.0000019466,0.0000019154,0.0000019168,0.0000019340, -0.0000019442,0.0000019422,0.0000019351,0.0000019356,0.0000019551, -0.0000019902,0.0000020133,0.0000020162,0.0000020113,0.0000020049, -0.0000019969,0.0000019900,0.0000019861,0.0000019683,0.0000019404, -0.0000019407,0.0000019778,0.0000020096,0.0000020080,0.0000019885, -0.0000019711,0.0000019405,0.0000019243,0.0000019263,0.0000019532, -0.0000020005,0.0000020305,0.0000020392,0.0000020285,0.0000020089, -0.0000020111,0.0000020239,0.0000020292,0.0000020246,0.0000020262, -0.0000020370,0.0000020429,0.0000020422,0.0000020403,0.0000020331, -0.0000020157,0.0000019948,0.0000019823,0.0000019761,0.0000019707, -0.0000019836,0.0000020091,0.0000020213,0.0000020161,0.0000019583, -0.0000018816,0.0000018274,0.0000018252,0.0000018359,0.0000018305, -0.0000018070,0.0000017876,0.0000017862,0.0000017934,0.0000018039, -0.0000018117,0.0000018151,0.0000018123,0.0000018094,0.0000018057, -0.0000017883,0.0000017749,0.0000017897,0.0000018020,0.0000018108, -0.0000018381,0.0000018489,0.0000018366,0.0000018287,0.0000018366, -0.0000018389,0.0000018388,0.0000018566,0.0000018950,0.0000019298, -0.0000019346,0.0000018942,0.0000018502,0.0000018328,0.0000018327, -0.0000018323,0.0000018295,0.0000018277,0.0000018267,0.0000018266, -0.0000018277,0.0000018300,0.0000018324,0.0000018346,0.0000018360, -0.0000018363,0.0000018360,0.0000018349,0.0000018332,0.0000018314, -0.0000018307,0.0000018297,0.0000018311,0.0000018364,0.0000018478, -0.0000018696,0.0000019045,0.0000019440,0.0000019710,0.0000019758, -0.0000019677,0.0000019482,0.0000019269,0.0000019144,0.0000019165, -0.0000019220,0.0000019039,0.0000018620,0.0000018332,0.0000018315, -0.0000018325,0.0000018307,0.0000018250,0.0000018191,0.0000018149, -0.0000018131,0.0000018133,0.0000018164,0.0000018219,0.0000018301, -0.0000018406,0.0000018526,0.0000018642,0.0000018720,0.0000018758, -0.0000018767,0.0000018762,0.0000018801,0.0000018854,0.0000018960, -0.0000019133,0.0000019341,0.0000019558,0.0000019751,0.0000019894, -0.0000019994,0.0000020022,0.0000020059,0.0000020060,0.0000020055, -0.0000020039,0.0000020012,0.0000019972,0.0000019930,0.0000019878, -0.0000019824,0.0000019772,0.0000019720,0.0000019672,0.0000019628, -0.0000019596,0.0000019575,0.0000019559,0.0000019550,0.0000019546, -0.0000019546,0.0000019551,0.0000019557,0.0000019568,0.0000019583, -0.0000019603,0.0000019620,0.0000019638,0.0000019653,0.0000019670, -0.0000019691,0.0000019719,0.0000019754,0.0000019786,0.0000019818, -0.0000019826,0.0000019830,0.0000019844,0.0000019850,0.0000019842, -0.0000019835,0.0000019817,0.0000019792,0.0000019762,0.0000019743, -0.0000019741,0.0000019750,0.0000019763,0.0000019771,0.0000019771, -0.0000019764,0.0000019746,0.0000019725,0.0000019708,0.0000019690, -0.0000019670,0.0000019661,0.0000019659,0.0000019653,0.0000019641, -0.0000019625,0.0000019607,0.0000019603,0.0000019614,0.0000019631, -0.0000019647,0.0000019663,0.0000019686,0.0000019709,0.0000019724, -0.0000019739,0.0000019751,0.0000019770,0.0000019801,0.0000019819, -0.0000019825,0.0000019810,0.0000019782,0.0000019764,0.0000019776, -0.0000019802,0.0000019830,0.0000019861,0.0000019882,0.0000019894, -0.0000019890,0.0000019850,0.0000019789,0.0000019729,0.0000019682, -0.0000019663,0.0000019678,0.0000019722,0.0000019780,0.0000019848, -0.0000019912,0.0000019955,0.0000019960,0.0000019917,0.0000019830, -0.0000019753,0.0000019716,0.0000019692,0.0000019655,0.0000019601, -0.0000019556,0.0000019546,0.0000019583,0.0000019652,0.0000019721, -0.0000019771,0.0000019797,0.0000019799,0.0000019812,0.0000019826, -0.0000019850,0.0000019889,0.0000019934,0.0000019977,0.0000020012, -0.0000020037,0.0000020046,0.0000020057,0.0000020060,0.0000020049, -0.0000020023,0.0000020001,0.0000019995,0.0000020012,0.0000020052, -0.0000020084,0.0000020110,0.0000020133,0.0000020148,0.0000020137, -0.0000020096,0.0000020044,0.0000020012,0.0000019988,0.0000019965, -0.0000019971,0.0000019992,0.0000020015,0.0000020036,0.0000020037, -0.0000020007,0.0000019955,0.0000019917,0.0000019881,0.0000019835, -0.0000019782,0.0000019732,0.0000019704,0.0000019720,0.0000019790, -0.0000019881,0.0000019916,0.0000019886,0.0000019826,0.0000019754, -0.0000019681,0.0000019617,0.0000019571,0.0000019539,0.0000019516, -0.0000019503,0.0000019505,0.0000019521,0.0000019548,0.0000019575, -0.0000019598,0.0000019614,0.0000019621,0.0000019624,0.0000019627, -0.0000019633,0.0000019643,0.0000019652,0.0000019658,0.0000019668, -0.0000019674,0.0000019678,0.0000019687,0.0000019702,0.0000019721, -0.0000019742,0.0000019755,0.0000019755,0.0000019760,0.0000019766, -0.0000019765,0.0000019759,0.0000019755,0.0000019762,0.0000019766, -0.0000019759,0.0000019741,0.0000019720,0.0000019702,0.0000019689, -0.0000019689,0.0000019691,0.0000019695,0.0000019699,0.0000019701, -0.0000019697,0.0000019687,0.0000019663,0.0000019649,0.0000019647, -0.0000019658,0.0000019670,0.0000019682,0.0000019687,0.0000019678, -0.0000019667,0.0000019658,0.0000019656,0.0000019676,0.0000019715, -0.0000019756,0.0000019787,0.0000019799,0.0000019778,0.0000019727, -0.0000019669,0.0000019616,0.0000019578,0.0000019558,0.0000019547, -0.0000019542,0.0000019533,0.0000019536,0.0000019546,0.0000019565, -0.0000019568,0.0000019555,0.0000019523,0.0000019485,0.0000019464, -0.0000019461,0.0000019453,0.0000019394,0.0000019293,0.0000019193, -0.0000019132,0.0000019129,0.0000019181,0.0000019227,0.0000019222, -0.0000019166,0.0000019056,0.0000018924,0.0000018858,0.0000018866, -0.0000018947,0.0000019063,0.0000019147,0.0000019163,0.0000019135, -0.0000019081,0.0000019025,0.0000018981,0.0000018950,0.0000018926, -0.0000018918,0.0000018931,0.0000018951,0.0000018960,0.0000018960, -0.0000018951,0.0000018937,0.0000018931,0.0000018924,0.0000018897, -0.0000018854,0.0000018822,0.0000018808,0.0000018771,0.0000018708, -0.0000018665,0.0000018641,0.0000018615,0.0000018585,0.0000018558, -0.0000018532,0.0000018512,0.0000018507,0.0000018524,0.0000018539, -0.0000018538,0.0000018509,0.0000018449,0.0000018406,0.0000018386, -0.0000018363,0.0000018349,0.0000018342,0.0000018322,0.0000018292, -0.0000018273,0.0000018282,0.0000018320,0.0000018358,0.0000018366, -0.0000018354,0.0000018330,0.0000018308,0.0000018299,0.0000018297, -0.0000018291,0.0000018270,0.0000018225,0.0000018147,0.0000018046, -0.0000017956,0.0000017891,0.0000017845,0.0000017799,0.0000017744, -0.0000017676,0.0000017608,0.0000017588,0.0000017634,0.0000017704, -0.0000017718,0.0000017667,0.0000017608,0.0000017588,0.0000017530, -0.0000017414,0.0000017272,0.0000017195,0.0000017154,0.0000017077, -0.0000017002,0.0000016995,0.0000017112,0.0000017406,0.0000017798, -0.0000018083,0.0000018183,0.0000018190,0.0000018186,0.0000018174, -0.0000018164,0.0000018150,0.0000018128,0.0000018103,0.0000018083, -0.0000018075,0.0000018067,0.0000018048,0.0000017992,0.0000017897, -0.0000017786,0.0000017650,0.0000017496,0.0000017349,0.0000017225, -0.0000017135,0.0000017085,0.0000017062,0.0000017046,0.0000017026, -0.0000017016,0.0000017013,0.0000017016,0.0000017030,0.0000017051, -0.0000017070,0.0000017069,0.0000017044,0.0000016994,0.0000016924, -0.0000016860,0.0000016846,0.0000016887,0.0000016934,0.0000016928, -0.0000016891,0.0000016912,0.0000016976,0.0000017072,0.0000017205, -0.0000017321,0.0000017474,0.0000017596,0.0000017552,0.0000017414, -0.0000017297,0.0000017102,0.0000016856,0.0000016766,0.0000016800, -0.0000016851,0.0000016869,0.0000016912,0.0000016979,0.0000017038, -0.0000017100,0.0000017177,0.0000017259,0.0000017340,0.0000017399, -0.0000017422,0.0000017423,0.0000017401,0.0000017374,0.0000017331, -0.0000017269,0.0000017213,0.0000017183,0.0000017189,0.0000017218, -0.0000017239,0.0000017241,0.0000017229,0.0000017203,0.0000017166, -0.0000017121,0.0000017063,0.0000017003,0.0000016989,0.0000017014, -0.0000017048,0.0000017061,0.0000017053,0.0000017037,0.0000017021, -0.0000017005,0.0000016996,0.0000017014,0.0000017151,0.0000017471, -0.0000017724,0.0000017709,0.0000017559,0.0000017452,0.0000017460, -0.0000017545,0.0000017651,0.0000017792,0.0000017893,0.0000017896, -0.0000017862,0.0000017834,0.0000017766,0.0000017715,0.0000017736, -0.0000017797,0.0000017917,0.0000018047,0.0000018103,0.0000018061, -0.0000017980,0.0000017913,0.0000017884,0.0000017900,0.0000017952, -0.0000018000,0.0000018011,0.0000017975,0.0000017931,0.0000017894, -0.0000017798,0.0000017720,0.0000017702,0.0000017741,0.0000017844, -0.0000017912,0.0000017916,0.0000017960,0.0000017985,0.0000017964, -0.0000017984,0.0000018073,0.0000018132,0.0000018125,0.0000018097, -0.0000018055,0.0000018020,0.0000017998,0.0000017992,0.0000017971, -0.0000017937,0.0000017900,0.0000017876,0.0000017872,0.0000017866, -0.0000017842,0.0000017803,0.0000017739,0.0000017658,0.0000017583, -0.0000017578,0.0000017679,0.0000017777,0.0000017828,0.0000017847, -0.0000017847,0.0000017861,0.0000017934,0.0000018035,0.0000018082, -0.0000018174,0.0000018322,0.0000018414,0.0000018561,0.0000018777, -0.0000018808,0.0000018699,0.0000018622,0.0000018608,0.0000018572, -0.0000018486,0.0000018437,0.0000018452,0.0000018474,0.0000018454, -0.0000018406,0.0000018332,0.0000018199,0.0000018062,0.0000017994, -0.0000017952,0.0000017932,0.0000017943,0.0000018012,0.0000018089, -0.0000018114,0.0000018115,0.0000018116,0.0000018172,0.0000018288, -0.0000018371,0.0000018386,0.0000018408,0.0000018484,0.0000018566, -0.0000018590,0.0000018578,0.0000018561,0.0000018562,0.0000018583, -0.0000018650,0.0000018780,0.0000018913,0.0000018979,0.0000018972, -0.0000018941,0.0000018932,0.0000018876,0.0000018780,0.0000018856, -0.0000018973,0.0000018858,0.0000018556,0.0000018152,0.0000017835, -0.0000017747,0.0000017770,0.0000017760,0.0000017630,0.0000017493, -0.0000017424,0.0000017404,0.0000017418,0.0000017481,0.0000017578, -0.0000017672,0.0000017747,0.0000017779,0.0000017757,0.0000017718, -0.0000017748,0.0000017821,0.0000017869,0.0000017902,0.0000017918, -0.0000017914,0.0000017891,0.0000017844,0.0000017769,0.0000017670, -0.0000017555,0.0000017442,0.0000017346,0.0000017271,0.0000017203, -0.0000017135,0.0000017070,0.0000017025,0.0000017016,0.0000017051, -0.0000017134,0.0000017235,0.0000017328,0.0000017413,0.0000017500, -0.0000017605,0.0000017724,0.0000017798,0.0000017858,0.0000017979, -0.0000018037,0.0000018037,0.0000018022,0.0000017988,0.0000017948, -0.0000017936,0.0000017938,0.0000017940,0.0000017959,0.0000018047, -0.0000018137,0.0000018162,0.0000018154,0.0000018118,0.0000018056, -0.0000018057,0.0000018240,0.0000018499,0.0000018645,0.0000018757, -0.0000018905,0.0000018543,0.0000018070,0.0000018120,0.0000018231, -0.0000018247,0.0000018324,0.0000018494,0.0000018502,0.0000018235, -0.0000017953,0.0000017736,0.0000017592,0.0000017517,0.0000017474, -0.0000017450,0.0000017449,0.0000017489,0.0000017555,0.0000017671, -0.0000017857,0.0000017910,0.0000017794,0.0000017720,0.0000017743, -0.0000017745,0.0000017704,0.0000017695,0.0000017700,0.0000017699, -0.0000017736,0.0000017854,0.0000017984,0.0000018148,0.0000018305, -0.0000018227,0.0000017879,0.0000017632,0.0000017638,0.0000017727, -0.0000017797,0.0000017879,0.0000018009,0.0000018154,0.0000018221, -0.0000018194,0.0000018084,0.0000018005,0.0000018002,0.0000018067, -0.0000018107,0.0000018097,0.0000018101,0.0000018119,0.0000018280, -0.0000018584,0.0000018950,0.0000019255,0.0000019434,0.0000019498, -0.0000019544,0.0000019590,0.0000019623,0.0000019631,0.0000019616, -0.0000019583,0.0000019539,0.0000019459,0.0000019381,0.0000019344, -0.0000019358,0.0000019403,0.0000019464,0.0000019542,0.0000019624, -0.0000019681,0.0000019701,0.0000019707,0.0000019764,0.0000019852, -0.0000019738,0.0000019365,0.0000019138,0.0000019221,0.0000019409, -0.0000019496,0.0000019497,0.0000019439,0.0000019365,0.0000019393, -0.0000019652,0.0000019987,0.0000020139,0.0000020117,0.0000020056, -0.0000019989,0.0000019929,0.0000019862,0.0000019625,0.0000019376, -0.0000019512,0.0000019941,0.0000020126,0.0000019978,0.0000019801, -0.0000019509,0.0000019273,0.0000019267,0.0000019466,0.0000019930, -0.0000020267,0.0000020387,0.0000020304,0.0000020078,0.0000020062, -0.0000020190,0.0000020284,0.0000020281,0.0000020298,0.0000020388, -0.0000020444,0.0000020436,0.0000020411,0.0000020324,0.0000020147, -0.0000019938,0.0000019834,0.0000019802,0.0000019762,0.0000019886, -0.0000020137,0.0000020241,0.0000020156,0.0000019497,0.0000018712, -0.0000018290,0.0000018335,0.0000018377,0.0000018209,0.0000017950, -0.0000017853,0.0000017902,0.0000018031,0.0000018152,0.0000018229, -0.0000018220,0.0000018140,0.0000018059,0.0000018010,0.0000017824, -0.0000017725,0.0000017898,0.0000018002,0.0000018142,0.0000018452, -0.0000018486,0.0000018335,0.0000018338,0.0000018422,0.0000018409, -0.0000018444,0.0000018790,0.0000019250,0.0000019431,0.0000019208, -0.0000018669,0.0000018368,0.0000018387,0.0000018434,0.0000018391, -0.0000018325,0.0000018291,0.0000018281,0.0000018280,0.0000018297, -0.0000018324,0.0000018352,0.0000018374,0.0000018382,0.0000018379, -0.0000018371,0.0000018359,0.0000018344,0.0000018330,0.0000018327, -0.0000018353,0.0000018411,0.0000018516,0.0000018727,0.0000019090, -0.0000019504,0.0000019775,0.0000019811,0.0000019721,0.0000019519, -0.0000019301,0.0000019194,0.0000019215,0.0000019119,0.0000018736, -0.0000018349,0.0000018265,0.0000018289,0.0000018314,0.0000018302, -0.0000018262,0.0000018214,0.0000018172,0.0000018152,0.0000018164, -0.0000018224,0.0000018330,0.0000018458,0.0000018579,0.0000018669, -0.0000018703,0.0000018700,0.0000018676,0.0000018654,0.0000018677, -0.0000018766,0.0000018936,0.0000019159,0.0000019398,0.0000019619, -0.0000019792,0.0000019907,0.0000019930,0.0000019975,0.0000019964, -0.0000019941,0.0000019894,0.0000019834,0.0000019763,0.0000019680, -0.0000019589,0.0000019498,0.0000019407,0.0000019313,0.0000019221, -0.0000019133,0.0000019053,0.0000018988,0.0000018941,0.0000018907, -0.0000018888,0.0000018873,0.0000018862,0.0000018858,0.0000018858, -0.0000018861,0.0000018866,0.0000018871,0.0000018881,0.0000018904, -0.0000018931,0.0000018964,0.0000019002,0.0000019046,0.0000019099, -0.0000019174,0.0000019274,0.0000019399,0.0000019543,0.0000019674, -0.0000019762,0.0000019823,0.0000019858,0.0000019859,0.0000019862, -0.0000019854,0.0000019844,0.0000019834,0.0000019820,0.0000019816, -0.0000019823,0.0000019836,0.0000019846,0.0000019846,0.0000019838, -0.0000019823,0.0000019808,0.0000019794,0.0000019774,0.0000019750, -0.0000019735,0.0000019724,0.0000019706,0.0000019683,0.0000019661, -0.0000019647,0.0000019645,0.0000019658,0.0000019672,0.0000019675, -0.0000019678,0.0000019684,0.0000019693,0.0000019707,0.0000019727, -0.0000019749,0.0000019769,0.0000019780,0.0000019769,0.0000019746, -0.0000019723,0.0000019714,0.0000019734,0.0000019766,0.0000019783, -0.0000019794,0.0000019804,0.0000019795,0.0000019755,0.0000019684, -0.0000019589,0.0000019495,0.0000019436,0.0000019427,0.0000019466, -0.0000019548,0.0000019646,0.0000019746,0.0000019838,0.0000019911, -0.0000019954,0.0000019961,0.0000019924,0.0000019841,0.0000019765, -0.0000019717,0.0000019682,0.0000019637,0.0000019580,0.0000019534, -0.0000019504,0.0000019524,0.0000019569,0.0000019641,0.0000019718, -0.0000019782,0.0000019828,0.0000019881,0.0000019902,0.0000019927, -0.0000019961,0.0000019992,0.0000020013,0.0000020029,0.0000020031, -0.0000020028,0.0000020028,0.0000020029,0.0000020025,0.0000020012, -0.0000020005,0.0000020016,0.0000020046,0.0000020071,0.0000020085, -0.0000020092,0.0000020091,0.0000020079,0.0000020049,0.0000020009, -0.0000019980,0.0000019947,0.0000019914,0.0000019912,0.0000019939, -0.0000019972,0.0000019991,0.0000019993,0.0000019965,0.0000019901, -0.0000019859,0.0000019844,0.0000019814,0.0000019746,0.0000019708, -0.0000019741,0.0000019903,0.0000019993,0.0000019933,0.0000019745, -0.0000019525,0.0000019360,0.0000019312,0.0000019311,0.0000019318, -0.0000019325,0.0000019328,0.0000019319,0.0000019307,0.0000019302, -0.0000019308,0.0000019323,0.0000019339,0.0000019356,0.0000019374, -0.0000019389,0.0000019404,0.0000019420,0.0000019441,0.0000019464, -0.0000019488,0.0000019508,0.0000019525,0.0000019547,0.0000019565, -0.0000019581,0.0000019599,0.0000019620,0.0000019646,0.0000019670, -0.0000019682,0.0000019681,0.0000019688,0.0000019689,0.0000019680, -0.0000019671,0.0000019665,0.0000019665,0.0000019660,0.0000019647, -0.0000019631,0.0000019617,0.0000019612,0.0000019613,0.0000019617, -0.0000019622,0.0000019627,0.0000019632,0.0000019641,0.0000019646, -0.0000019649,0.0000019650,0.0000019655,0.0000019664,0.0000019677, -0.0000019685,0.0000019683,0.0000019669,0.0000019652,0.0000019640, -0.0000019639,0.0000019658,0.0000019690,0.0000019725,0.0000019765, -0.0000019797,0.0000019795,0.0000019767,0.0000019726,0.0000019686, -0.0000019648,0.0000019620,0.0000019606,0.0000019602,0.0000019599, -0.0000019597,0.0000019598,0.0000019601,0.0000019597,0.0000019579, -0.0000019549,0.0000019510,0.0000019488,0.0000019486,0.0000019483, -0.0000019440,0.0000019351,0.0000019239,0.0000019134,0.0000019083, -0.0000019107,0.0000019174,0.0000019211,0.0000019195,0.0000019119, -0.0000018992,0.0000018882,0.0000018853,0.0000018904,0.0000019017, -0.0000019123,0.0000019169,0.0000019168,0.0000019131,0.0000019075, -0.0000019029,0.0000019003,0.0000018979,0.0000018957,0.0000018955, -0.0000018967,0.0000018973,0.0000018968,0.0000018957,0.0000018947, -0.0000018943,0.0000018943,0.0000018926,0.0000018879,0.0000018832, -0.0000018816,0.0000018798,0.0000018755,0.0000018710,0.0000018673, -0.0000018643,0.0000018613,0.0000018584,0.0000018557,0.0000018543, -0.0000018549,0.0000018567,0.0000018576,0.0000018568,0.0000018535, -0.0000018481,0.0000018442,0.0000018425,0.0000018400,0.0000018378, -0.0000018355,0.0000018326,0.0000018301,0.0000018294,0.0000018308, -0.0000018342,0.0000018364,0.0000018357,0.0000018335,0.0000018305, -0.0000018273,0.0000018262,0.0000018270,0.0000018275,0.0000018268, -0.0000018249,0.0000018209,0.0000018147,0.0000018075,0.0000017992, -0.0000017910,0.0000017832,0.0000017753,0.0000017664,0.0000017585, -0.0000017557,0.0000017596,0.0000017666,0.0000017692,0.0000017654, -0.0000017601,0.0000017590,0.0000017565,0.0000017461,0.0000017322, -0.0000017198,0.0000017164,0.0000017120,0.0000017032,0.0000016984, -0.0000017002,0.0000017155,0.0000017470,0.0000017838,0.0000018080, -0.0000018180,0.0000018201,0.0000018201,0.0000018189,0.0000018166, -0.0000018134,0.0000018106,0.0000018086,0.0000018074,0.0000018025, -0.0000017921,0.0000017754,0.0000017553,0.0000017365,0.0000017203, -0.0000017087,0.0000017029,0.0000017009,0.0000017009,0.0000017025, -0.0000017043,0.0000017042,0.0000017035,0.0000017030,0.0000017024, -0.0000017020,0.0000017034,0.0000017063,0.0000017079,0.0000017078, -0.0000017052,0.0000017000,0.0000016923,0.0000016852,0.0000016836, -0.0000016878,0.0000016936,0.0000016920,0.0000016863,0.0000016870, -0.0000016947,0.0000017067,0.0000017178,0.0000017271,0.0000017443, -0.0000017541,0.0000017451,0.0000017310,0.0000017145,0.0000016874, -0.0000016709,0.0000016726,0.0000016785,0.0000016801,0.0000016826, -0.0000016889,0.0000016952,0.0000017009,0.0000017065,0.0000017124, -0.0000017186,0.0000017235,0.0000017260,0.0000017272,0.0000017262, -0.0000017241,0.0000017198,0.0000017138,0.0000017088,0.0000017072, -0.0000017095,0.0000017147,0.0000017188,0.0000017200,0.0000017191, -0.0000017173,0.0000017150,0.0000017119,0.0000017080,0.0000017036, -0.0000017009,0.0000017012,0.0000017032,0.0000017051,0.0000017050, -0.0000017032,0.0000017021,0.0000017020,0.0000017030,0.0000017024, -0.0000017029,0.0000017124,0.0000017421,0.0000017684,0.0000017690, -0.0000017566,0.0000017454,0.0000017462,0.0000017553,0.0000017672, -0.0000017823,0.0000017908,0.0000017889,0.0000017862,0.0000017855, -0.0000017810,0.0000017760,0.0000017770,0.0000017812,0.0000017899, -0.0000018002,0.0000018058,0.0000018034,0.0000017976,0.0000017918, -0.0000017897,0.0000017929,0.0000017986,0.0000018021,0.0000018006, -0.0000017952,0.0000017929,0.0000017897,0.0000017800,0.0000017739, -0.0000017729,0.0000017778,0.0000017867,0.0000017891,0.0000017931, -0.0000017974,0.0000018009,0.0000017990,0.0000017998,0.0000018068, -0.0000018116,0.0000018098,0.0000018054,0.0000018017,0.0000017998, -0.0000017997,0.0000017995,0.0000017986,0.0000017970,0.0000017939, -0.0000017927,0.0000017924,0.0000017911,0.0000017885,0.0000017832, -0.0000017743,0.0000017633,0.0000017567,0.0000017632,0.0000017744, -0.0000017815,0.0000017843,0.0000017840,0.0000017841,0.0000017916, -0.0000018018,0.0000018054,0.0000018128,0.0000018278,0.0000018381, -0.0000018498,0.0000018723,0.0000018816,0.0000018744,0.0000018637, -0.0000018621,0.0000018614,0.0000018561,0.0000018472,0.0000018448, -0.0000018475,0.0000018489,0.0000018450,0.0000018400,0.0000018349, -0.0000018264,0.0000018163,0.0000018091,0.0000018068,0.0000018074, -0.0000018102,0.0000018131,0.0000018135,0.0000018122,0.0000018119, -0.0000018175,0.0000018294,0.0000018381,0.0000018398,0.0000018424, -0.0000018492,0.0000018554,0.0000018566,0.0000018553,0.0000018547, -0.0000018550,0.0000018564,0.0000018635,0.0000018769,0.0000018901, -0.0000018975,0.0000018973,0.0000018941,0.0000018932,0.0000018877, -0.0000018782,0.0000018872,0.0000018990,0.0000018866,0.0000018562, -0.0000018145,0.0000017833,0.0000017762,0.0000017786,0.0000017730, -0.0000017559,0.0000017420,0.0000017335,0.0000017294,0.0000017289, -0.0000017341,0.0000017418,0.0000017489,0.0000017543,0.0000017570, -0.0000017578,0.0000017576,0.0000017598,0.0000017653,0.0000017698, -0.0000017716,0.0000017707,0.0000017671,0.0000017610,0.0000017530, -0.0000017445,0.0000017365,0.0000017299,0.0000017240,0.0000017174, -0.0000017092,0.0000017006,0.0000016940,0.0000016913,0.0000016930, -0.0000016994,0.0000017100,0.0000017215,0.0000017317,0.0000017406, -0.0000017497,0.0000017612,0.0000017736,0.0000017798,0.0000017867, -0.0000017987,0.0000018026,0.0000018016,0.0000018020,0.0000018016, -0.0000017986,0.0000017960,0.0000017959,0.0000017972,0.0000017990, -0.0000018038,0.0000018117,0.0000018165,0.0000018167,0.0000018140, -0.0000018080,0.0000018061,0.0000018218,0.0000018478,0.0000018638, -0.0000018732,0.0000018895,0.0000018640,0.0000018107,0.0000018124, -0.0000018232,0.0000018248,0.0000018352,0.0000018521,0.0000018447, -0.0000018134,0.0000017841,0.0000017616,0.0000017504,0.0000017448, -0.0000017414,0.0000017393,0.0000017382,0.0000017399,0.0000017475, -0.0000017551,0.0000017715,0.0000017879,0.0000017830,0.0000017721, -0.0000017720,0.0000017727,0.0000017690,0.0000017666,0.0000017659, -0.0000017653,0.0000017697,0.0000017829,0.0000017976,0.0000018162, -0.0000018266,0.0000018108,0.0000017741,0.0000017571,0.0000017610, -0.0000017697,0.0000017790,0.0000017929,0.0000018099,0.0000018220, -0.0000018222,0.0000018137,0.0000018054,0.0000018039,0.0000018063, -0.0000018090,0.0000018102,0.0000018157,0.0000018305,0.0000018542, -0.0000018841,0.0000019136,0.0000019346,0.0000019445,0.0000019478, -0.0000019513,0.0000019575,0.0000019640,0.0000019678,0.0000019679, -0.0000019643,0.0000019593,0.0000019559,0.0000019534,0.0000019500, -0.0000019461,0.0000019445,0.0000019458,0.0000019516,0.0000019594, -0.0000019666,0.0000019721,0.0000019751,0.0000019755,0.0000019799, -0.0000019831,0.0000019663,0.0000019289,0.0000019155,0.0000019255, -0.0000019433,0.0000019526,0.0000019551,0.0000019534,0.0000019445, -0.0000019375,0.0000019464,0.0000019779,0.0000020065,0.0000020112, -0.0000020045,0.0000019984,0.0000019940,0.0000019836,0.0000019541, -0.0000019377,0.0000019679,0.0000020083,0.0000020081,0.0000019886, -0.0000019626,0.0000019322,0.0000019278,0.0000019419,0.0000019845, -0.0000020225,0.0000020370,0.0000020321,0.0000020087,0.0000020012, -0.0000020131,0.0000020257,0.0000020297,0.0000020324,0.0000020401, -0.0000020451,0.0000020445,0.0000020403,0.0000020306,0.0000020134, -0.0000019929,0.0000019856,0.0000019855,0.0000019813,0.0000019925, -0.0000020167,0.0000020257,0.0000020165,0.0000019434,0.0000018639, -0.0000018330,0.0000018427,0.0000018397,0.0000018098,0.0000017907, -0.0000017917,0.0000018045,0.0000018192,0.0000018284,0.0000018333, -0.0000018291,0.0000018153,0.0000018025,0.0000017964,0.0000017774, -0.0000017724,0.0000017904,0.0000017994,0.0000018186,0.0000018463, -0.0000018455,0.0000018352,0.0000018401,0.0000018444,0.0000018419, -0.0000018627,0.0000019090,0.0000019448,0.0000019456,0.0000019077, -0.0000018500,0.0000018334,0.0000018402,0.0000018454,0.0000018420, -0.0000018374,0.0000018356,0.0000018373,0.0000018426,0.0000018503, -0.0000018594,0.0000018677,0.0000018737,0.0000018762,0.0000018755, -0.0000018726,0.0000018687,0.0000018652,0.0000018628,0.0000018627, -0.0000018674,0.0000018799,0.0000019044,0.0000019398,0.0000019711, -0.0000019838,0.0000019822,0.0000019692,0.0000019493,0.0000019326, -0.0000019260,0.0000019187,0.0000018845,0.0000018395,0.0000018223, -0.0000018236,0.0000018297,0.0000018329,0.0000018326,0.0000018289, -0.0000018229,0.0000018186,0.0000018178,0.0000018229,0.0000018342, -0.0000018480,0.0000018613,0.0000018694,0.0000018707,0.0000018662, -0.0000018581,0.0000018545,0.0000018580,0.0000018709,0.0000018914, -0.0000019160,0.0000019413,0.0000019613,0.0000019760,0.0000019798, -0.0000019864,0.0000019844,0.0000019793,0.0000019716,0.0000019616, -0.0000019496,0.0000019365,0.0000019236,0.0000019117,0.0000019012, -0.0000018913,0.0000018820,0.0000018744,0.0000018679,0.0000018621, -0.0000018568,0.0000018519,0.0000018480,0.0000018459,0.0000018443, -0.0000018431,0.0000018423,0.0000018415,0.0000018405,0.0000018399, -0.0000018392,0.0000018389,0.0000018384,0.0000018382,0.0000018395, -0.0000018412,0.0000018431,0.0000018456,0.0000018482,0.0000018514, -0.0000018542,0.0000018596,0.0000018691,0.0000018858,0.0000019075, -0.0000019310,0.0000019528,0.0000019698,0.0000019790,0.0000019832, -0.0000019847,0.0000019842,0.0000019838,0.0000019835,0.0000019833, -0.0000019839,0.0000019851,0.0000019862,0.0000019863,0.0000019857, -0.0000019842,0.0000019827,0.0000019810,0.0000019787,0.0000019758, -0.0000019733,0.0000019709,0.0000019688,0.0000019663,0.0000019639, -0.0000019617,0.0000019608,0.0000019614,0.0000019617,0.0000019613, -0.0000019605,0.0000019597,0.0000019601,0.0000019616,0.0000019643, -0.0000019671,0.0000019694,0.0000019699,0.0000019687,0.0000019675, -0.0000019673,0.0000019694,0.0000019722,0.0000019720,0.0000019699, -0.0000019690,0.0000019660,0.0000019569,0.0000019436,0.0000019296, -0.0000019191,0.0000019156,0.0000019196,0.0000019278,0.0000019382, -0.0000019500,0.0000019626,0.0000019755,0.0000019855,0.0000019923, -0.0000019959,0.0000019963,0.0000019934,0.0000019869,0.0000019801, -0.0000019746,0.0000019698,0.0000019646,0.0000019594,0.0000019548, -0.0000019521,0.0000019522,0.0000019553,0.0000019590,0.0000019636, -0.0000019695,0.0000019751,0.0000019806,0.0000019848,0.0000019884, -0.0000019914,0.0000019933,0.0000019945,0.0000019947,0.0000019947, -0.0000019953,0.0000019965,0.0000019980,0.0000019987,0.0000019986, -0.0000019991,0.0000020004,0.0000020017,0.0000020024,0.0000020029, -0.0000020025,0.0000020012,0.0000019996,0.0000019978,0.0000019961, -0.0000019935,0.0000019906,0.0000019904,0.0000019918,0.0000019929, -0.0000019935,0.0000019936,0.0000019920,0.0000019859,0.0000019823, -0.0000019833,0.0000019806,0.0000019742,0.0000019730,0.0000019859, -0.0000020022,0.0000019960,0.0000019743,0.0000019443,0.0000019309, -0.0000019299,0.0000019308,0.0000019318,0.0000019325,0.0000019333, -0.0000019335,0.0000019323,0.0000019304,0.0000019278,0.0000019267, -0.0000019265,0.0000019259,0.0000019250,0.0000019239,0.0000019227, -0.0000019219,0.0000019218,0.0000019220,0.0000019229,0.0000019241, -0.0000019255,0.0000019271,0.0000019288,0.0000019312,0.0000019333, -0.0000019356,0.0000019383,0.0000019412,0.0000019446,0.0000019475, -0.0000019491,0.0000019502,0.0000019521,0.0000019530,0.0000019536, -0.0000019542,0.0000019549,0.0000019560,0.0000019565,0.0000019566, -0.0000019569,0.0000019578,0.0000019591,0.0000019602,0.0000019613, -0.0000019629,0.0000019641,0.0000019648,0.0000019662,0.0000019679, -0.0000019689,0.0000019690,0.0000019687,0.0000019681,0.0000019673, -0.0000019655,0.0000019634,0.0000019612,0.0000019599,0.0000019603, -0.0000019624,0.0000019654,0.0000019692,0.0000019739,0.0000019785, -0.0000019803,0.0000019793,0.0000019771,0.0000019746,0.0000019717, -0.0000019683,0.0000019660,0.0000019650,0.0000019647,0.0000019646, -0.0000019645,0.0000019641,0.0000019633,0.0000019611,0.0000019582, -0.0000019551,0.0000019530,0.0000019521,0.0000019507,0.0000019461, -0.0000019369,0.0000019255,0.0000019139,0.0000019054,0.0000019040, -0.0000019097,0.0000019166,0.0000019194,0.0000019159,0.0000019061, -0.0000018938,0.0000018868,0.0000018882,0.0000018979,0.0000019088, -0.0000019158,0.0000019182,0.0000019174,0.0000019136,0.0000019089, -0.0000019059,0.0000019030,0.0000018996,0.0000018976,0.0000018976, -0.0000018980,0.0000018977,0.0000018965,0.0000018951,0.0000018943, -0.0000018945,0.0000018942,0.0000018907,0.0000018853,0.0000018824, -0.0000018813,0.0000018789,0.0000018751,0.0000018707,0.0000018669, -0.0000018637,0.0000018606,0.0000018573,0.0000018567,0.0000018589, -0.0000018614,0.0000018616,0.0000018594,0.0000018552,0.0000018503, -0.0000018469,0.0000018449,0.0000018424,0.0000018394,0.0000018353, -0.0000018316,0.0000018304,0.0000018307,0.0000018320,0.0000018343, -0.0000018349,0.0000018329,0.0000018305,0.0000018273,0.0000018240, -0.0000018240,0.0000018266,0.0000018277,0.0000018271,0.0000018269, -0.0000018265,0.0000018242,0.0000018183,0.0000018083,0.0000017965, -0.0000017850,0.0000017742,0.0000017642,0.0000017570,0.0000017553, -0.0000017588,0.0000017638,0.0000017656,0.0000017624,0.0000017581, -0.0000017581,0.0000017575,0.0000017497,0.0000017372,0.0000017227, -0.0000017158,0.0000017146,0.0000017076,0.0000016991,0.0000016969, -0.0000017016,0.0000017189,0.0000017492,0.0000017807,0.0000018026, -0.0000018140,0.0000018180,0.0000018177,0.0000018152,0.0000018115, -0.0000018076,0.0000018027,0.0000017937,0.0000017794,0.0000017596, -0.0000017362,0.0000017146,0.0000016993,0.0000016908,0.0000016889, -0.0000016918,0.0000016956,0.0000016981,0.0000016999,0.0000017005, -0.0000017000,0.0000016993,0.0000016984,0.0000016969,0.0000016968, -0.0000016996,0.0000017040,0.0000017070,0.0000017074,0.0000017054, -0.0000017007,0.0000016929,0.0000016856,0.0000016837,0.0000016883, -0.0000016934,0.0000016899,0.0000016821,0.0000016838,0.0000016942, -0.0000017069,0.0000017144,0.0000017243,0.0000017424,0.0000017464, -0.0000017325,0.0000017139,0.0000016856,0.0000016649,0.0000016647, -0.0000016726,0.0000016755,0.0000016771,0.0000016809,0.0000016863, -0.0000016915,0.0000016964,0.0000017011,0.0000017061,0.0000017101, -0.0000017123,0.0000017138,0.0000017126,0.0000017101,0.0000017056, -0.0000017004,0.0000016971,0.0000016967,0.0000017000,0.0000017060, -0.0000017111,0.0000017131,0.0000017125,0.0000017104,0.0000017077, -0.0000017049,0.0000017028,0.0000017011,0.0000017009,0.0000017016, -0.0000017035,0.0000017043,0.0000017035,0.0000017011,0.0000016991, -0.0000016996,0.0000017029,0.0000017058,0.0000017050,0.0000017030, -0.0000017092,0.0000017377,0.0000017656,0.0000017686,0.0000017563, -0.0000017450,0.0000017466,0.0000017560,0.0000017692,0.0000017845, -0.0000017915,0.0000017889,0.0000017876,0.0000017892,0.0000017854, -0.0000017797,0.0000017787,0.0000017805,0.0000017867,0.0000017951, -0.0000018002,0.0000017993,0.0000017951,0.0000017910,0.0000017914, -0.0000017957,0.0000018005,0.0000018010,0.0000017960,0.0000017925, -0.0000017933,0.0000017889,0.0000017805,0.0000017773,0.0000017768, -0.0000017813,0.0000017847,0.0000017923,0.0000017958,0.0000018000, -0.0000018044,0.0000018040,0.0000018039,0.0000018092,0.0000018125, -0.0000018094,0.0000018028,0.0000017978,0.0000017954,0.0000017959, -0.0000017968,0.0000017967,0.0000017945,0.0000017929,0.0000017922, -0.0000017923,0.0000017920,0.0000017897,0.0000017827,0.0000017713, -0.0000017603,0.0000017607,0.0000017710,0.0000017796,0.0000017836, -0.0000017842,0.0000017832,0.0000017903,0.0000018002,0.0000018026, -0.0000018089,0.0000018239,0.0000018352,0.0000018442,0.0000018656, -0.0000018823,0.0000018792,0.0000018666,0.0000018626,0.0000018630, -0.0000018626,0.0000018551,0.0000018469,0.0000018457,0.0000018498, -0.0000018500,0.0000018451,0.0000018391,0.0000018350,0.0000018307, -0.0000018259,0.0000018224,0.0000018206,0.0000018193,0.0000018176, -0.0000018149,0.0000018123,0.0000018129,0.0000018202,0.0000018321, -0.0000018393,0.0000018411,0.0000018444,0.0000018504,0.0000018549, -0.0000018557,0.0000018550,0.0000018550,0.0000018551,0.0000018564, -0.0000018641,0.0000018773,0.0000018898,0.0000018973,0.0000018969, -0.0000018936,0.0000018927,0.0000018866,0.0000018785,0.0000018893, -0.0000019000,0.0000018857,0.0000018552,0.0000018125,0.0000017827, -0.0000017782,0.0000017791,0.0000017690,0.0000017509,0.0000017379, -0.0000017290,0.0000017227,0.0000017189,0.0000017198,0.0000017234, -0.0000017276,0.0000017313,0.0000017348,0.0000017383,0.0000017408, -0.0000017420,0.0000017436,0.0000017446,0.0000017439,0.0000017412, -0.0000017371,0.0000017327,0.0000017286,0.0000017245,0.0000017196, -0.0000017127,0.0000017038,0.0000016940,0.0000016853,0.0000016801, -0.0000016798,0.0000016848,0.0000016942,0.0000017066,0.0000017194, -0.0000017303,0.0000017398,0.0000017492,0.0000017616,0.0000017747, -0.0000017800,0.0000017869,0.0000017992,0.0000018021,0.0000018005, -0.0000018025,0.0000018045,0.0000018022,0.0000017976,0.0000017966, -0.0000017998,0.0000018039,0.0000018076,0.0000018121,0.0000018163, -0.0000018172,0.0000018149,0.0000018093,0.0000018078,0.0000018220, -0.0000018470,0.0000018632,0.0000018712,0.0000018881,0.0000018722, -0.0000018207,0.0000018146,0.0000018232,0.0000018249,0.0000018380, -0.0000018530,0.0000018388,0.0000018033,0.0000017727,0.0000017523, -0.0000017443,0.0000017399,0.0000017382,0.0000017369,0.0000017353, -0.0000017349,0.0000017411,0.0000017495,0.0000017603,0.0000017804, -0.0000017834,0.0000017731,0.0000017707,0.0000017713,0.0000017676, -0.0000017640,0.0000017622,0.0000017613,0.0000017673,0.0000017821, -0.0000017988,0.0000018186,0.0000018240,0.0000017970,0.0000017615, -0.0000017523,0.0000017583,0.0000017681,0.0000017816,0.0000018005, -0.0000018175,0.0000018227,0.0000018175,0.0000018089,0.0000018055, -0.0000018071,0.0000018126,0.0000018241,0.0000018443,0.0000018709, -0.0000018978,0.0000019217,0.0000019389,0.0000019480,0.0000019511, -0.0000019523,0.0000019553,0.0000019609,0.0000019678,0.0000019736, -0.0000019770,0.0000019776,0.0000019746,0.0000019672,0.0000019587, -0.0000019535,0.0000019513,0.0000019500,0.0000019496,0.0000019513, -0.0000019562,0.0000019623,0.0000019681,0.0000019736,0.0000019773, -0.0000019778,0.0000019822,0.0000019846,0.0000019601,0.0000019224, -0.0000019123,0.0000019267,0.0000019465,0.0000019617,0.0000019697, -0.0000019681,0.0000019576,0.0000019446,0.0000019406,0.0000019602, -0.0000019960,0.0000020084,0.0000020028,0.0000019970,0.0000019932, -0.0000019771,0.0000019439,0.0000019441,0.0000019894,0.0000020128, -0.0000019975,0.0000019744,0.0000019399,0.0000019303,0.0000019388, -0.0000019762,0.0000020174,0.0000020336,0.0000020326,0.0000020101, -0.0000019986,0.0000020066,0.0000020207,0.0000020297,0.0000020335, -0.0000020401,0.0000020443,0.0000020435,0.0000020380,0.0000020279, -0.0000020115,0.0000019920,0.0000019859,0.0000019912,0.0000019873, -0.0000019955,0.0000020186,0.0000020270,0.0000020187,0.0000019399, -0.0000018603,0.0000018373,0.0000018459,0.0000018347,0.0000018040, -0.0000017956,0.0000018062,0.0000018215,0.0000018307,0.0000018333, -0.0000018365,0.0000018349,0.0000018189,0.0000018016,0.0000017931, -0.0000017738,0.0000017722,0.0000017916,0.0000018000,0.0000018238, -0.0000018454,0.0000018397,0.0000018371,0.0000018453,0.0000018459, -0.0000018506,0.0000018884,0.0000019352,0.0000019542,0.0000019480, -0.0000019070,0.0000018550,0.0000018331,0.0000018400,0.0000018481, -0.0000018506,0.0000018534,0.0000018599,0.0000018699,0.0000018829, -0.0000018968,0.0000019104,0.0000019239,0.0000019335,0.0000019380, -0.0000019392,0.0000019358,0.0000019304,0.0000019266,0.0000019254, -0.0000019288,0.0000019406,0.0000019599,0.0000019727,0.0000019826, -0.0000019807,0.0000019714,0.0000019569,0.0000019415,0.0000019326, -0.0000019269,0.0000018966,0.0000018469,0.0000018201,0.0000018174, -0.0000018253,0.0000018343,0.0000018385,0.0000018370,0.0000018296, -0.0000018225,0.0000018189,0.0000018236,0.0000018342,0.0000018492, -0.0000018648,0.0000018723,0.0000018696,0.0000018600,0.0000018496, -0.0000018478,0.0000018521,0.0000018655,0.0000018863,0.0000019103, -0.0000019349,0.0000019561,0.0000019693,0.0000019750,0.0000019735, -0.0000019675,0.0000019566,0.0000019431,0.0000019289,0.0000019157, -0.0000019025,0.0000018895,0.0000018774,0.0000018674,0.0000018602, -0.0000018553,0.0000018516,0.0000018486,0.0000018471,0.0000018472, -0.0000018473,0.0000018462,0.0000018440,0.0000018420,0.0000018411, -0.0000018402,0.0000018395,0.0000018393,0.0000018393,0.0000018388, -0.0000018382,0.0000018378,0.0000018378,0.0000018376,0.0000018374, -0.0000018374,0.0000018377,0.0000018385,0.0000018393,0.0000018397, -0.0000018404,0.0000018384,0.0000018360,0.0000018326,0.0000018352, -0.0000018434,0.0000018617,0.0000018865,0.0000019149,0.0000019407, -0.0000019600,0.0000019733,0.0000019801,0.0000019825,0.0000019836, -0.0000019841,0.0000019857,0.0000019870,0.0000019877,0.0000019876, -0.0000019864,0.0000019837,0.0000019802,0.0000019761,0.0000019722, -0.0000019677,0.0000019634,0.0000019597,0.0000019564,0.0000019532, -0.0000019504,0.0000019478,0.0000019461,0.0000019470,0.0000019487, -0.0000019502,0.0000019508,0.0000019510,0.0000019516,0.0000019533, -0.0000019564,0.0000019598,0.0000019632,0.0000019646,0.0000019639, -0.0000019637,0.0000019656,0.0000019679,0.0000019667,0.0000019622, -0.0000019585,0.0000019509,0.0000019306,0.0000019016,0.0000018742, -0.0000018560,0.0000018538,0.0000018701,0.0000018959,0.0000019191, -0.0000019369,0.0000019519,0.0000019667,0.0000019794,0.0000019874, -0.0000019918,0.0000019945,0.0000019955,0.0000019946,0.0000019913, -0.0000019870,0.0000019828,0.0000019790,0.0000019752,0.0000019712, -0.0000019674,0.0000019643,0.0000019624,0.0000019619,0.0000019620, -0.0000019616,0.0000019651,0.0000019653,0.0000019677,0.0000019714, -0.0000019745,0.0000019758,0.0000019768,0.0000019782,0.0000019797, -0.0000019816,0.0000019842,0.0000019869,0.0000019892,0.0000019901, -0.0000019903,0.0000019906,0.0000019909,0.0000019910,0.0000019911, -0.0000019909,0.0000019903,0.0000019897,0.0000019898,0.0000019897, -0.0000019897,0.0000019899,0.0000019903,0.0000019903,0.0000019891, -0.0000019885,0.0000019888,0.0000019881,0.0000019839,0.0000019815, -0.0000019826,0.0000019808,0.0000019760,0.0000019785,0.0000019951, -0.0000020038,0.0000019895,0.0000019635,0.0000019358,0.0000019309, -0.0000019318,0.0000019330,0.0000019335,0.0000019341,0.0000019347, -0.0000019341,0.0000019322,0.0000019282,0.0000019222,0.0000019152, -0.0000019094,0.0000019040,0.0000018997,0.0000018972,0.0000018960, -0.0000018961,0.0000018966,0.0000018981,0.0000019000,0.0000019016, -0.0000019028,0.0000019035,0.0000019041,0.0000019049,0.0000019061, -0.0000019073,0.0000019090,0.0000019111,0.0000019139,0.0000019170, -0.0000019199,0.0000019222,0.0000019251,0.0000019283,0.0000019310, -0.0000019338,0.0000019365,0.0000019397,0.0000019435,0.0000019471, -0.0000019504,0.0000019536,0.0000019568,0.0000019590,0.0000019605, -0.0000019618,0.0000019630,0.0000019643,0.0000019663,0.0000019686, -0.0000019700,0.0000019700,0.0000019688,0.0000019665,0.0000019633, -0.0000019602,0.0000019581,0.0000019569,0.0000019569,0.0000019582, -0.0000019608,0.0000019642,0.0000019680,0.0000019719,0.0000019756, -0.0000019780,0.0000019784,0.0000019776,0.0000019766,0.0000019754, -0.0000019725,0.0000019697,0.0000019682,0.0000019675,0.0000019669, -0.0000019665,0.0000019662,0.0000019658,0.0000019643,0.0000019619, -0.0000019602,0.0000019587,0.0000019566,0.0000019532,0.0000019469, -0.0000019365,0.0000019239,0.0000019122,0.0000019035,0.0000018995, -0.0000019023,0.0000019099,0.0000019163,0.0000019172,0.0000019116, -0.0000019016,0.0000018916,0.0000018889,0.0000018959,0.0000019064, -0.0000019143,0.0000019188,0.0000019204,0.0000019189,0.0000019153, -0.0000019116,0.0000019077,0.0000019032,0.0000018997,0.0000018981, -0.0000018978,0.0000018978,0.0000018970,0.0000018952,0.0000018935, -0.0000018932,0.0000018944,0.0000018934,0.0000018885,0.0000018843, -0.0000018824,0.0000018810,0.0000018780,0.0000018737,0.0000018691, -0.0000018656,0.0000018624,0.0000018585,0.0000018582,0.0000018621, -0.0000018661,0.0000018660,0.0000018623,0.0000018568,0.0000018522, -0.0000018487,0.0000018460,0.0000018436,0.0000018398,0.0000018339, -0.0000018302,0.0000018305,0.0000018312,0.0000018314,0.0000018323, -0.0000018320,0.0000018302,0.0000018288,0.0000018261,0.0000018239, -0.0000018254,0.0000018290,0.0000018297,0.0000018293,0.0000018300, -0.0000018307,0.0000018295,0.0000018235,0.0000018124,0.0000017982, -0.0000017840,0.0000017714,0.0000017617,0.0000017565,0.0000017567, -0.0000017601,0.0000017626,0.0000017624,0.0000017589,0.0000017560, -0.0000017569,0.0000017573,0.0000017521,0.0000017411,0.0000017276, -0.0000017156,0.0000017147,0.0000017122,0.0000017032,0.0000016961, -0.0000016967,0.0000017036,0.0000017194,0.0000017440,0.0000017690, -0.0000017882,0.0000017987,0.0000018017,0.0000017996,0.0000017940, -0.0000017855,0.0000017736,0.0000017579,0.0000017396,0.0000017199, -0.0000017011,0.0000016881,0.0000016820,0.0000016808,0.0000016825, -0.0000016869,0.0000016904,0.0000016918,0.0000016926,0.0000016925, -0.0000016920,0.0000016919,0.0000016910,0.0000016895,0.0000016899, -0.0000016938,0.0000016991,0.0000017030,0.0000017047,0.0000017041, -0.0000016999,0.0000016930,0.0000016863,0.0000016849,0.0000016896, -0.0000016930,0.0000016860,0.0000016784,0.0000016826,0.0000016956, -0.0000017064,0.0000017109,0.0000017247,0.0000017411,0.0000017347, -0.0000017131,0.0000016826,0.0000016600,0.0000016577,0.0000016662, -0.0000016707,0.0000016725,0.0000016748,0.0000016781,0.0000016812, -0.0000016845,0.0000016883,0.0000016926,0.0000016961,0.0000016979, -0.0000016989,0.0000016975,0.0000016952,0.0000016920,0.0000016887, -0.0000016874,0.0000016881,0.0000016916,0.0000016975,0.0000017028, -0.0000017057,0.0000017058,0.0000017040,0.0000017003,0.0000016962, -0.0000016927,0.0000016910,0.0000016921,0.0000016966,0.0000017017, -0.0000017043,0.0000017038,0.0000016998,0.0000016955,0.0000016944, -0.0000016973,0.0000017037,0.0000017080,0.0000017060,0.0000017023, -0.0000017065,0.0000017349,0.0000017640,0.0000017680,0.0000017554, -0.0000017449,0.0000017468,0.0000017567,0.0000017707,0.0000017858, -0.0000017918,0.0000017892,0.0000017895,0.0000017928,0.0000017892, -0.0000017819,0.0000017790,0.0000017795,0.0000017836,0.0000017899, -0.0000017939,0.0000017939,0.0000017915,0.0000017911,0.0000017935, -0.0000017973,0.0000017981,0.0000017949,0.0000017914,0.0000017926, -0.0000017942,0.0000017883,0.0000017823,0.0000017803,0.0000017796, -0.0000017813,0.0000017885,0.0000017964,0.0000017998,0.0000018039, -0.0000018087,0.0000018102,0.0000018104,0.0000018137,0.0000018153, -0.0000018109,0.0000018025,0.0000017955,0.0000017922,0.0000017922, -0.0000017935,0.0000017932,0.0000017910,0.0000017887,0.0000017888, -0.0000017910,0.0000017918,0.0000017881,0.0000017786,0.0000017670, -0.0000017608,0.0000017685,0.0000017777,0.0000017824,0.0000017846, -0.0000017835,0.0000017896,0.0000017985,0.0000017996,0.0000018052, -0.0000018198,0.0000018318,0.0000018396,0.0000018584,0.0000018793, -0.0000018825,0.0000018709,0.0000018627,0.0000018626,0.0000018648, -0.0000018633,0.0000018549,0.0000018477,0.0000018483,0.0000018515, -0.0000018511,0.0000018460,0.0000018388,0.0000018336,0.0000018307, -0.0000018283,0.0000018262,0.0000018235,0.0000018197,0.0000018157, -0.0000018145,0.0000018183,0.0000018275,0.0000018366,0.0000018408, -0.0000018429,0.0000018465,0.0000018515,0.0000018554,0.0000018564, -0.0000018562,0.0000018554,0.0000018549,0.0000018569,0.0000018663, -0.0000018787,0.0000018909,0.0000018974,0.0000018958,0.0000018929, -0.0000018922,0.0000018842,0.0000018783,0.0000018918,0.0000018993, -0.0000018837,0.0000018530,0.0000018094,0.0000017824,0.0000017798, -0.0000017792,0.0000017660,0.0000017493,0.0000017373,0.0000017279, -0.0000017204,0.0000017157,0.0000017136,0.0000017141,0.0000017156, -0.0000017178,0.0000017203,0.0000017234,0.0000017260,0.0000017269, -0.0000017268,0.0000017263,0.0000017254,0.0000017240,0.0000017219, -0.0000017186,0.0000017133,0.0000017056,0.0000016960,0.0000016864, -0.0000016783,0.0000016726,0.0000016698,0.0000016706,0.0000016779, -0.0000016899,0.0000017038,0.0000017174,0.0000017290,0.0000017390, -0.0000017484,0.0000017615,0.0000017756,0.0000017802,0.0000017867, -0.0000017993,0.0000018022,0.0000018003,0.0000018023,0.0000018063, -0.0000018048,0.0000017990,0.0000017964,0.0000018002,0.0000018065, -0.0000018110,0.0000018137,0.0000018158,0.0000018168,0.0000018146, -0.0000018103,0.0000018103,0.0000018246,0.0000018479,0.0000018627, -0.0000018697,0.0000018873,0.0000018781,0.0000018311,0.0000018189, -0.0000018234,0.0000018255,0.0000018415,0.0000018532,0.0000018311, -0.0000017928,0.0000017612,0.0000017455,0.0000017402,0.0000017393, -0.0000017394,0.0000017381,0.0000017353,0.0000017335,0.0000017365, -0.0000017461,0.0000017535,0.0000017727,0.0000017820,0.0000017737, -0.0000017698,0.0000017700,0.0000017663,0.0000017617,0.0000017590, -0.0000017581,0.0000017661,0.0000017834,0.0000018024,0.0000018208, -0.0000018168,0.0000017814,0.0000017521,0.0000017490,0.0000017566, -0.0000017685,0.0000017873,0.0000018080,0.0000018196,0.0000018188, -0.0000018118,0.0000018075,0.0000018083,0.0000018236,0.0000018519, -0.0000018872,0.0000019190,0.0000019425,0.0000019562,0.0000019612, -0.0000019623,0.0000019621,0.0000019622,0.0000019645,0.0000019682, -0.0000019720,0.0000019758,0.0000019771,0.0000019791,0.0000019796, -0.0000019801,0.0000019782,0.0000019693,0.0000019581,0.0000019514, -0.0000019501,0.0000019510,0.0000019536,0.0000019579,0.0000019628, -0.0000019682,0.0000019740,0.0000019778,0.0000019784,0.0000019836, -0.0000019839,0.0000019542,0.0000019168,0.0000019096,0.0000019268, -0.0000019502,0.0000019741,0.0000019893,0.0000019885,0.0000019752, -0.0000019570,0.0000019423,0.0000019512,0.0000019880,0.0000020057, -0.0000020002,0.0000019951,0.0000019908,0.0000019649,0.0000019369, -0.0000019619,0.0000020074,0.0000020065,0.0000019844,0.0000019500, -0.0000019329,0.0000019371,0.0000019684,0.0000020118,0.0000020304, -0.0000020316,0.0000020120,0.0000019943,0.0000020009,0.0000020141, -0.0000020260,0.0000020329,0.0000020384,0.0000020424,0.0000020408, -0.0000020346,0.0000020246,0.0000020092,0.0000019912,0.0000019875, -0.0000019965,0.0000019941,0.0000019984,0.0000020193,0.0000020271, -0.0000020226,0.0000019400,0.0000018603,0.0000018395,0.0000018473, -0.0000018275,0.0000018049,0.0000018056,0.0000018155,0.0000018229, -0.0000018229,0.0000018235,0.0000018328,0.0000018366,0.0000018235, -0.0000018032,0.0000017912,0.0000017717,0.0000017732,0.0000017935, -0.0000018007,0.0000018266,0.0000018432,0.0000018386,0.0000018406, -0.0000018473,0.0000018468,0.0000018672,0.0000019160,0.0000019515, -0.0000019557,0.0000019505,0.0000019239,0.0000018804,0.0000018580, -0.0000018598,0.0000018707,0.0000018824,0.0000018940,0.0000019076, -0.0000019224,0.0000019372,0.0000019476,0.0000019450,0.0000019515, -0.0000019557,0.0000019565,0.0000019602,0.0000019626,0.0000019637, -0.0000019645,0.0000019679,0.0000019719,0.0000019741,0.0000019730, -0.0000019689,0.0000019621,0.0000019531,0.0000019428,0.0000019353, -0.0000019278,0.0000018983,0.0000018487,0.0000018199,0.0000018148, -0.0000018216,0.0000018337,0.0000018430,0.0000018437,0.0000018373, -0.0000018266,0.0000018205,0.0000018228,0.0000018325,0.0000018489, -0.0000018656,0.0000018730,0.0000018683,0.0000018559,0.0000018453, -0.0000018448,0.0000018468,0.0000018569,0.0000018750,0.0000018981, -0.0000019216,0.0000019436,0.0000019539,0.0000019638,0.0000019596, -0.0000019478,0.0000019334,0.0000019183,0.0000019034,0.0000018894, -0.0000018779,0.0000018693,0.0000018626,0.0000018566,0.0000018518, -0.0000018490,0.0000018477,0.0000018470,0.0000018469,0.0000018471, -0.0000018472,0.0000018473,0.0000018475,0.0000018474,0.0000018462, -0.0000018453,0.0000018448,0.0000018450,0.0000018448,0.0000018446, -0.0000018450,0.0000018451,0.0000018443,0.0000018426,0.0000018412, -0.0000018400,0.0000018387,0.0000018362,0.0000018338,0.0000018320, -0.0000018313,0.0000018317,0.0000018341,0.0000018373,0.0000018368, -0.0000018350,0.0000018356,0.0000018307,0.0000018328,0.0000018346, -0.0000018492,0.0000018720,0.0000018991,0.0000019255,0.0000019473, -0.0000019620,0.0000019721,0.0000019783,0.0000019825,0.0000019852, -0.0000019870,0.0000019879,0.0000019870,0.0000019831,0.0000019771, -0.0000019704,0.0000019635,0.0000019567,0.0000019507,0.0000019452, -0.0000019400,0.0000019343,0.0000019296,0.0000019252,0.0000019227, -0.0000019237,0.0000019276,0.0000019328,0.0000019374,0.0000019409, -0.0000019438,0.0000019471,0.0000019512,0.0000019554,0.0000019589, -0.0000019600,0.0000019594,0.0000019606,0.0000019623,0.0000019606, -0.0000019551,0.0000019481,0.0000019310,0.0000018946,0.0000018471, -0.0000018050,0.0000017768,0.0000017669,0.0000017791,0.0000018213, -0.0000018743,0.0000019158,0.0000019425,0.0000019599,0.0000019732, -0.0000019824,0.0000019867,0.0000019895,0.0000019927,0.0000019954, -0.0000019969,0.0000019972,0.0000019964,0.0000019951,0.0000019938, -0.0000019919,0.0000019895,0.0000019868,0.0000019845,0.0000019823, -0.0000019799,0.0000019771,0.0000019744,0.0000019725,0.0000019701, -0.0000019689,0.0000019695,0.0000019687,0.0000019668,0.0000019668, -0.0000019671,0.0000019678,0.0000019700,0.0000019726,0.0000019754, -0.0000019774,0.0000019778,0.0000019777,0.0000019776,0.0000019770, -0.0000019764,0.0000019762,0.0000019763,0.0000019767,0.0000019776, -0.0000019789,0.0000019808,0.0000019844,0.0000019876,0.0000019880, -0.0000019867,0.0000019864,0.0000019872,0.0000019872,0.0000019844, -0.0000019814,0.0000019821,0.0000019820,0.0000019794,0.0000019838, -0.0000019984,0.0000020028,0.0000019881,0.0000019651,0.0000019397, -0.0000019318,0.0000019321,0.0000019330,0.0000019349,0.0000019362, -0.0000019363,0.0000019346,0.0000019290,0.0000019189,0.0000019068, -0.0000018966,0.0000018913,0.0000018901,0.0000018912,0.0000018932, -0.0000018941,0.0000018939,0.0000018937,0.0000018941,0.0000018938, -0.0000018945,0.0000018952,0.0000018954,0.0000018951,0.0000018941, -0.0000018941,0.0000018942,0.0000018952,0.0000018960,0.0000018973, -0.0000018989,0.0000019004,0.0000019013,0.0000019018,0.0000019040, -0.0000019055,0.0000019067,0.0000019085,0.0000019110,0.0000019160, -0.0000019219,0.0000019281,0.0000019342,0.0000019401,0.0000019450, -0.0000019479,0.0000019496,0.0000019512,0.0000019537,0.0000019573, -0.0000019609,0.0000019633,0.0000019641,0.0000019633,0.0000019603, -0.0000019562,0.0000019531,0.0000019519,0.0000019526,0.0000019546, -0.0000019571,0.0000019599,0.0000019625,0.0000019654,0.0000019681, -0.0000019703,0.0000019722,0.0000019736,0.0000019750,0.0000019761, -0.0000019763,0.0000019746,0.0000019725,0.0000019703,0.0000019690, -0.0000019677,0.0000019667,0.0000019668,0.0000019668,0.0000019661, -0.0000019642,0.0000019624,0.0000019603,0.0000019572,0.0000019524, -0.0000019449,0.0000019340,0.0000019212,0.0000019101,0.0000019014, -0.0000018957,0.0000018961,0.0000019030,0.0000019117,0.0000019160, -0.0000019139,0.0000019080,0.0000018988,0.0000018934,0.0000018966, -0.0000019058,0.0000019138,0.0000019188,0.0000019218,0.0000019220, -0.0000019199,0.0000019164,0.0000019116,0.0000019064,0.0000019018, -0.0000018986,0.0000018971,0.0000018970,0.0000018969,0.0000018953, -0.0000018926,0.0000018915,0.0000018937,0.0000018949,0.0000018921, -0.0000018873,0.0000018839,0.0000018820,0.0000018795,0.0000018758, -0.0000018709,0.0000018672,0.0000018639,0.0000018598,0.0000018593, -0.0000018644,0.0000018702,0.0000018704,0.0000018658,0.0000018590, -0.0000018542,0.0000018501,0.0000018465,0.0000018443,0.0000018394, -0.0000018321,0.0000018299,0.0000018314,0.0000018312,0.0000018296, -0.0000018299,0.0000018304,0.0000018303,0.0000018303,0.0000018284, -0.0000018273,0.0000018296,0.0000018330,0.0000018333,0.0000018328, -0.0000018329,0.0000018326,0.0000018297,0.0000018225,0.0000018106, -0.0000017963,0.0000017819,0.0000017694,0.0000017612,0.0000017582, -0.0000017593,0.0000017615,0.0000017619,0.0000017597,0.0000017565, -0.0000017553,0.0000017565,0.0000017568,0.0000017528,0.0000017442, -0.0000017326,0.0000017187,0.0000017130,0.0000017140,0.0000017090, -0.0000016990,0.0000016957,0.0000016982,0.0000017044,0.0000017155, -0.0000017317,0.0000017479,0.0000017587,0.0000017623,0.0000017605, -0.0000017532,0.0000017425,0.0000017299,0.0000017165,0.0000017036, -0.0000016916,0.0000016824,0.0000016781,0.0000016775,0.0000016773, -0.0000016783,0.0000016820,0.0000016847,0.0000016862,0.0000016874, -0.0000016879,0.0000016882,0.0000016887,0.0000016875,0.0000016855, -0.0000016859,0.0000016888,0.0000016932,0.0000016975,0.0000017001, -0.0000017003,0.0000016973,0.0000016923,0.0000016873,0.0000016865, -0.0000016906,0.0000016913,0.0000016816,0.0000016757,0.0000016836, -0.0000016977,0.0000017044,0.0000017095,0.0000017293,0.0000017351, -0.0000017145,0.0000016808,0.0000016560,0.0000016533,0.0000016600, -0.0000016649,0.0000016673,0.0000016694,0.0000016707,0.0000016713, -0.0000016730,0.0000016765,0.0000016802,0.0000016826,0.0000016838, -0.0000016842,0.0000016837,0.0000016836,0.0000016824,0.0000016809, -0.0000016802,0.0000016807,0.0000016843,0.0000016898,0.0000016948, -0.0000016979,0.0000016987,0.0000016975,0.0000016941,0.0000016895, -0.0000016849,0.0000016822,0.0000016824,0.0000016866,0.0000016932, -0.0000016991,0.0000017018,0.0000016996,0.0000016940,0.0000016896, -0.0000016896,0.0000016957,0.0000017046,0.0000017079,0.0000017052, -0.0000017007,0.0000017042,0.0000017327,0.0000017629,0.0000017671, -0.0000017546,0.0000017445,0.0000017469,0.0000017575,0.0000017716, -0.0000017863,0.0000017914,0.0000017894,0.0000017918,0.0000017956, -0.0000017916,0.0000017835,0.0000017788,0.0000017778,0.0000017802, -0.0000017837,0.0000017863,0.0000017878,0.0000017890,0.0000017909, -0.0000017932,0.0000017933,0.0000017908,0.0000017887,0.0000017902, -0.0000017955,0.0000017946,0.0000017878,0.0000017848,0.0000017819, -0.0000017826,0.0000017839,0.0000017932,0.0000018011,0.0000018046, -0.0000018085,0.0000018133,0.0000018157,0.0000018162,0.0000018172, -0.0000018173,0.0000018122,0.0000018026,0.0000017937,0.0000017888, -0.0000017881,0.0000017897,0.0000017895,0.0000017865,0.0000017844, -0.0000017862,0.0000017898,0.0000017902,0.0000017835,0.0000017734, -0.0000017654,0.0000017672,0.0000017762,0.0000017810,0.0000017849, -0.0000017851,0.0000017894,0.0000017962,0.0000017964,0.0000018015, -0.0000018158,0.0000018281,0.0000018359,0.0000018517,0.0000018742, -0.0000018830,0.0000018763,0.0000018651,0.0000018624,0.0000018646, -0.0000018686,0.0000018649,0.0000018553,0.0000018490,0.0000018498, -0.0000018530,0.0000018532,0.0000018491,0.0000018412,0.0000018336, -0.0000018292,0.0000018268,0.0000018247,0.0000018225,0.0000018212, -0.0000018234,0.0000018300,0.0000018372,0.0000018417,0.0000018441, -0.0000018467,0.0000018502,0.0000018541,0.0000018568,0.0000018570, -0.0000018556,0.0000018534,0.0000018529,0.0000018576,0.0000018683, -0.0000018809,0.0000018934,0.0000018978,0.0000018945,0.0000018927, -0.0000018917,0.0000018817,0.0000018785,0.0000018936,0.0000018989, -0.0000018812,0.0000018493,0.0000018059,0.0000017825,0.0000017810, -0.0000017787,0.0000017649,0.0000017494,0.0000017369,0.0000017271, -0.0000017199,0.0000017151,0.0000017131,0.0000017131,0.0000017140, -0.0000017153,0.0000017165,0.0000017180,0.0000017192,0.0000017198, -0.0000017195,0.0000017180,0.0000017151,0.0000017105,0.0000017037, -0.0000016951,0.0000016855,0.0000016766,0.0000016705,0.0000016677, -0.0000016666,0.0000016654,0.0000016659,0.0000016731,0.0000016865, -0.0000017019,0.0000017160,0.0000017280,0.0000017382,0.0000017471, -0.0000017605,0.0000017756,0.0000017799,0.0000017857,0.0000017987, -0.0000018028,0.0000018003,0.0000018012,0.0000018056,0.0000018066, -0.0000018016,0.0000017970,0.0000017989,0.0000018051,0.0000018107, -0.0000018137,0.0000018148,0.0000018149,0.0000018133,0.0000018112, -0.0000018143,0.0000018297,0.0000018505,0.0000018620,0.0000018687, -0.0000018863,0.0000018814,0.0000018394,0.0000018226,0.0000018236, -0.0000018273,0.0000018460,0.0000018510,0.0000018209,0.0000017807, -0.0000017507,0.0000017414,0.0000017403,0.0000017426,0.0000017428, -0.0000017411,0.0000017373,0.0000017334,0.0000017345,0.0000017438, -0.0000017497,0.0000017664,0.0000017804,0.0000017736,0.0000017691, -0.0000017689,0.0000017652,0.0000017599,0.0000017563,0.0000017558, -0.0000017673,0.0000017866,0.0000018078,0.0000018208,0.0000018048, -0.0000017658,0.0000017454,0.0000017470,0.0000017559,0.0000017720, -0.0000017950,0.0000018124,0.0000018167,0.0000018114,0.0000018068, -0.0000018112,0.0000018368,0.0000018808,0.0000019241,0.0000019519, -0.0000019636,0.0000019605,0.0000019619,0.0000019579,0.0000019564, -0.0000019573,0.0000019597,0.0000019642,0.0000019690,0.0000019727, -0.0000019752,0.0000019753,0.0000019718,0.0000019665,0.0000019670, -0.0000019746,0.0000019769,0.0000019703,0.0000019571,0.0000019495, -0.0000019493,0.0000019524,0.0000019568,0.0000019615,0.0000019671, -0.0000019733,0.0000019773,0.0000019782,0.0000019850,0.0000019827, -0.0000019480,0.0000019120,0.0000019083,0.0000019262,0.0000019523, -0.0000019817,0.0000020032,0.0000020061,0.0000019931,0.0000019706, -0.0000019466,0.0000019482,0.0000019851,0.0000020028,0.0000019964, -0.0000019932,0.0000019836,0.0000019491,0.0000019403,0.0000019884, -0.0000020114,0.0000019933,0.0000019627,0.0000019338,0.0000019360, -0.0000019619,0.0000020058,0.0000020271,0.0000020302,0.0000020148, -0.0000019930,0.0000019948,0.0000020079,0.0000020198,0.0000020290, -0.0000020348,0.0000020380,0.0000020363,0.0000020302,0.0000020212, -0.0000020067,0.0000019901,0.0000019886,0.0000020015,0.0000020013, -0.0000020016,0.0000020192,0.0000020275,0.0000020247,0.0000019453, -0.0000018635,0.0000018427,0.0000018468,0.0000018249,0.0000018097, -0.0000018108,0.0000018115,0.0000018065,0.0000018005,0.0000017986, -0.0000018175,0.0000018367,0.0000018277,0.0000018060,0.0000017911, -0.0000017715,0.0000017759,0.0000017961,0.0000018035,0.0000018285, -0.0000018401,0.0000018389,0.0000018462,0.0000018498,0.0000018516, -0.0000018890,0.0000019396,0.0000019589,0.0000019576,0.0000019548, -0.0000019450,0.0000019249,0.0000019116,0.0000019119,0.0000019211, -0.0000019339,0.0000019465,0.0000019562,0.0000019535,0.0000019549, -0.0000019457,0.0000019308,0.0000019188,0.0000019091,0.0000019026, -0.0000019029,0.0000019087,0.0000019197,0.0000019322,0.0000019417, -0.0000019457,0.0000019454,0.0000019431,0.0000019389,0.0000019327, -0.0000019260,0.0000019133,0.0000018812,0.0000018372,0.0000018152, -0.0000018111,0.0000018175,0.0000018310,0.0000018442,0.0000018485, -0.0000018452,0.0000018346,0.0000018255,0.0000018234,0.0000018296, -0.0000018452,0.0000018651,0.0000018743,0.0000018683,0.0000018543, -0.0000018441,0.0000018434,0.0000018434,0.0000018494,0.0000018625, -0.0000018825,0.0000019041,0.0000019256,0.0000019366,0.0000019440, -0.0000019402,0.0000019286,0.0000019135,0.0000018969,0.0000018835, -0.0000018745,0.0000018672,0.0000018612,0.0000018572,0.0000018541, -0.0000018509,0.0000018488,0.0000018474,0.0000018467,0.0000018477, -0.0000018471,0.0000018482,0.0000018497,0.0000018513,0.0000018531, -0.0000018554,0.0000018573,0.0000018580,0.0000018577,0.0000018572, -0.0000018569,0.0000018564,0.0000018553,0.0000018542,0.0000018532, -0.0000018505,0.0000018462,0.0000018422,0.0000018380,0.0000018351, -0.0000018312,0.0000018273,0.0000018198,0.0000018121,0.0000018073, -0.0000018088,0.0000018094,0.0000018106,0.0000018211,0.0000018297, -0.0000018346,0.0000018343,0.0000018331,0.0000018297,0.0000018306, -0.0000018411,0.0000018570,0.0000018782,0.0000019002,0.0000019189, -0.0000019342,0.0000019459,0.0000019549,0.0000019625,0.0000019698, -0.0000019756,0.0000019777,0.0000019746,0.0000019701,0.0000019616, -0.0000019530,0.0000019452,0.0000019378,0.0000019310,0.0000019223, -0.0000019125,0.0000019044,0.0000018995,0.0000018989,0.0000019035, -0.0000019115,0.0000019203,0.0000019287,0.0000019353,0.0000019413, -0.0000019468,0.0000019510,0.0000019536,0.0000019538,0.0000019534, -0.0000019538,0.0000019524,0.0000019468,0.0000019345,0.0000019044, -0.0000018514,0.0000017944,0.0000017548,0.0000017323,0.0000017175, -0.0000017155,0.0000017330,0.0000017910,0.0000018656,0.0000019214, -0.0000019520,0.0000019671,0.0000019769,0.0000019831,0.0000019857, -0.0000019889,0.0000019926,0.0000019956,0.0000019976,0.0000019992, -0.0000019999,0.0000019998,0.0000019992,0.0000019980,0.0000019962, -0.0000019949,0.0000019945,0.0000019941,0.0000019935,0.0000019918, -0.0000019902,0.0000019876,0.0000019864,0.0000019849,0.0000019822, -0.0000019793,0.0000019757,0.0000019723,0.0000019704,0.0000019693, -0.0000019693,0.0000019703,0.0000019716,0.0000019718,0.0000019711, -0.0000019704,0.0000019699,0.0000019693,0.0000019689,0.0000019690, -0.0000019695,0.0000019705,0.0000019718,0.0000019735,0.0000019768, -0.0000019814,0.0000019838,0.0000019844,0.0000019857,0.0000019878, -0.0000019889,0.0000019874,0.0000019833,0.0000019826,0.0000019839, -0.0000019839,0.0000019889,0.0000020003,0.0000020023,0.0000019893, -0.0000019728,0.0000019492,0.0000019344,0.0000019327,0.0000019330, -0.0000019358,0.0000019394,0.0000019397,0.0000019356,0.0000019252, -0.0000019114,0.0000019005,0.0000018952,0.0000018938,0.0000018943, -0.0000018957,0.0000018954,0.0000018941,0.0000018929,0.0000018928, -0.0000018934,0.0000018939,0.0000018964,0.0000019001,0.0000019038, -0.0000019057,0.0000019054,0.0000019040,0.0000019030,0.0000019028, -0.0000019027,0.0000019027,0.0000019031,0.0000019035,0.0000019031, -0.0000019018,0.0000019005,0.0000018995,0.0000018984,0.0000018972, -0.0000018951,0.0000018953,0.0000018980,0.0000019013,0.0000019059, -0.0000019118,0.0000019175,0.0000019222,0.0000019258,0.0000019294, -0.0000019335,0.0000019384,0.0000019431,0.0000019467,0.0000019488, -0.0000019493,0.0000019480,0.0000019456,0.0000019443,0.0000019451, -0.0000019477,0.0000019513,0.0000019550,0.0000019577,0.0000019595, -0.0000019610,0.0000019627,0.0000019641,0.0000019658,0.0000019680, -0.0000019706,0.0000019729,0.0000019741,0.0000019736,0.0000019716, -0.0000019692,0.0000019674,0.0000019659,0.0000019644,0.0000019636, -0.0000019632,0.0000019623,0.0000019602,0.0000019570,0.0000019537, -0.0000019498,0.0000019445,0.0000019377,0.0000019291,0.0000019186, -0.0000019083,0.0000018991,0.0000018923,0.0000018913,0.0000018970, -0.0000019062,0.0000019130,0.0000019135,0.0000019100,0.0000019036, -0.0000018984,0.0000018993,0.0000019060,0.0000019139,0.0000019190, -0.0000019217,0.0000019225,0.0000019216,0.0000019192,0.0000019144, -0.0000019088,0.0000019034,0.0000018992,0.0000018968,0.0000018966, -0.0000018968,0.0000018955,0.0000018922,0.0000018897,0.0000018915, -0.0000018945,0.0000018943,0.0000018905,0.0000018861,0.0000018828, -0.0000018798,0.0000018767,0.0000018724,0.0000018683,0.0000018649, -0.0000018613,0.0000018607,0.0000018659,0.0000018730,0.0000018741, -0.0000018698,0.0000018625,0.0000018567,0.0000018515,0.0000018474, -0.0000018451,0.0000018384,0.0000018309,0.0000018307,0.0000018325, -0.0000018305,0.0000018277,0.0000018289,0.0000018315,0.0000018336, -0.0000018347,0.0000018336,0.0000018326,0.0000018348,0.0000018374, -0.0000018376,0.0000018367,0.0000018353,0.0000018328,0.0000018274, -0.0000018185,0.0000018066,0.0000017943,0.0000017821,0.0000017715, -0.0000017650,0.0000017621,0.0000017618,0.0000017617,0.0000017599, -0.0000017574,0.0000017558,0.0000017558,0.0000017570,0.0000017567, -0.0000017528,0.0000017465,0.0000017368,0.0000017239,0.0000017130, -0.0000017124,0.0000017126,0.0000017048,0.0000016967,0.0000016971, -0.0000017003,0.0000017043,0.0000017099,0.0000017163,0.0000017208, -0.0000017219,0.0000017190,0.0000017120,0.0000017046,0.0000016982, -0.0000016926,0.0000016865,0.0000016813,0.0000016783,0.0000016774, -0.0000016777,0.0000016770,0.0000016782,0.0000016818,0.0000016843, -0.0000016861,0.0000016875,0.0000016883,0.0000016891,0.0000016889, -0.0000016870,0.0000016847,0.0000016841,0.0000016854,0.0000016888, -0.0000016920,0.0000016943,0.0000016953,0.0000016943,0.0000016916, -0.0000016883,0.0000016881,0.0000016915,0.0000016889,0.0000016778, -0.0000016748,0.0000016864,0.0000016990,0.0000017015,0.0000017142, -0.0000017310,0.0000017188,0.0000016821,0.0000016530,0.0000016495, -0.0000016544,0.0000016588,0.0000016617,0.0000016641,0.0000016645, -0.0000016635,0.0000016636,0.0000016664,0.0000016695,0.0000016713, -0.0000016730,0.0000016742,0.0000016757,0.0000016768,0.0000016759, -0.0000016743,0.0000016726,0.0000016727,0.0000016753,0.0000016796, -0.0000016833,0.0000016863,0.0000016880,0.0000016877,0.0000016851, -0.0000016811,0.0000016771,0.0000016750,0.0000016763,0.0000016802, -0.0000016858,0.0000016913,0.0000016950,0.0000016953,0.0000016920, -0.0000016871,0.0000016844,0.0000016869,0.0000016953,0.0000017043, -0.0000017069,0.0000017037,0.0000016984,0.0000017016,0.0000017314, -0.0000017625,0.0000017665,0.0000017540,0.0000017443,0.0000017473, -0.0000017580,0.0000017722,0.0000017861,0.0000017906,0.0000017905, -0.0000017935,0.0000017965,0.0000017935,0.0000017851,0.0000017781, -0.0000017758,0.0000017760,0.0000017768,0.0000017782,0.0000017807, -0.0000017834,0.0000017858,0.0000017861,0.0000017851,0.0000017844, -0.0000017865,0.0000017940,0.0000017979,0.0000017934,0.0000017880, -0.0000017860,0.0000017864,0.0000017832,0.0000017878,0.0000017989, -0.0000018060,0.0000018093,0.0000018133,0.0000018168,0.0000018177, -0.0000018170,0.0000018164,0.0000018154,0.0000018099,0.0000018009, -0.0000017908,0.0000017845,0.0000017842,0.0000017860,0.0000017853, -0.0000017823,0.0000017819,0.0000017855,0.0000017889,0.0000017867, -0.0000017776,0.0000017694,0.0000017674,0.0000017752,0.0000017797, -0.0000017842,0.0000017867,0.0000017896,0.0000017942,0.0000017934, -0.0000017979,0.0000018117,0.0000018247,0.0000018330,0.0000018457, -0.0000018680,0.0000018826,0.0000018812,0.0000018693,0.0000018631, -0.0000018638,0.0000018693,0.0000018723,0.0000018658,0.0000018560, -0.0000018505,0.0000018516,0.0000018546,0.0000018554,0.0000018535, -0.0000018485,0.0000018420,0.0000018372,0.0000018354,0.0000018357, -0.0000018371,0.0000018398,0.0000018432,0.0000018460,0.0000018480, -0.0000018503,0.0000018530,0.0000018556,0.0000018572,0.0000018572, -0.0000018547,0.0000018507,0.0000018486,0.0000018502,0.0000018580, -0.0000018701,0.0000018847,0.0000018959,0.0000018971,0.0000018937, -0.0000018929,0.0000018906,0.0000018796,0.0000018785,0.0000018959, -0.0000018986,0.0000018769,0.0000018441,0.0000018022,0.0000017826, -0.0000017819,0.0000017783,0.0000017648,0.0000017487,0.0000017346, -0.0000017243,0.0000017173,0.0000017128,0.0000017109,0.0000017107, -0.0000017113,0.0000017119,0.0000017122,0.0000017119,0.0000017105, -0.0000017077,0.0000017033,0.0000016972,0.0000016896,0.0000016811, -0.0000016726,0.0000016654,0.0000016610,0.0000016609,0.0000016645, -0.0000016659,0.0000016655,0.0000016648,0.0000016703,0.0000016846, -0.0000017008,0.0000017150,0.0000017273,0.0000017371,0.0000017452, -0.0000017592,0.0000017763,0.0000017806,0.0000017842,0.0000017977, -0.0000018037,0.0000018013,0.0000017998,0.0000018032,0.0000018062, -0.0000018051,0.0000018010,0.0000017993,0.0000018025,0.0000018076, -0.0000018113,0.0000018130,0.0000018130,0.0000018128,0.0000018133, -0.0000018210,0.0000018376,0.0000018544,0.0000018614,0.0000018685, -0.0000018857,0.0000018821,0.0000018453,0.0000018250,0.0000018241, -0.0000018309,0.0000018493,0.0000018447,0.0000018081,0.0000017672, -0.0000017435,0.0000017402,0.0000017434,0.0000017447,0.0000017433, -0.0000017417,0.0000017390,0.0000017344,0.0000017340,0.0000017421, -0.0000017473,0.0000017617,0.0000017783,0.0000017730,0.0000017684, -0.0000017682,0.0000017643,0.0000017582,0.0000017543,0.0000017545, -0.0000017701,0.0000017911,0.0000018133,0.0000018190,0.0000017894, -0.0000017533,0.0000017434,0.0000017464,0.0000017577,0.0000017788, -0.0000018017,0.0000018122,0.0000018101,0.0000018053,0.0000018103, -0.0000018459,0.0000019022,0.0000019476,0.0000019653,0.0000019610, -0.0000019502,0.0000019403,0.0000019322,0.0000019282,0.0000019271, -0.0000019274,0.0000019296,0.0000019349,0.0000019436,0.0000019523, -0.0000019578,0.0000019584,0.0000019502,0.0000019365,0.0000019316, -0.0000019443,0.0000019665,0.0000019776,0.0000019705,0.0000019558, -0.0000019491,0.0000019506,0.0000019550,0.0000019605,0.0000019665, -0.0000019727,0.0000019765,0.0000019784,0.0000019869,0.0000019809, -0.0000019415,0.0000019086,0.0000019083,0.0000019252,0.0000019519, -0.0000019850,0.0000020094,0.0000020159,0.0000020059,0.0000019803, -0.0000019498,0.0000019497,0.0000019886,0.0000019995,0.0000019927, -0.0000019904,0.0000019692,0.0000019378,0.0000019599,0.0000020081, -0.0000020026,0.0000019739,0.0000019407,0.0000019351,0.0000019572, -0.0000019997,0.0000020241,0.0000020273,0.0000020174,0.0000019941, -0.0000019900,0.0000020022,0.0000020135,0.0000020232,0.0000020296, -0.0000020320,0.0000020304,0.0000020253,0.0000020177,0.0000020043, -0.0000019896,0.0000019896,0.0000020056,0.0000020084,0.0000020055, -0.0000020186,0.0000020280,0.0000020255,0.0000019539,0.0000018685, -0.0000018403,0.0000018488,0.0000018247,0.0000018130,0.0000018088, -0.0000018052,0.0000017976,0.0000017908,0.0000017850,0.0000018020, -0.0000018335,0.0000018334,0.0000018090,0.0000017918,0.0000017735, -0.0000017794,0.0000017986,0.0000018071,0.0000018308,0.0000018367, -0.0000018385,0.0000018500,0.0000018514,0.0000018590,0.0000019118, -0.0000019551,0.0000019594,0.0000019568,0.0000019562,0.0000019566, -0.0000019556,0.0000019560,0.0000019584,0.0000019636,0.0000019647, -0.0000019648,0.0000019585,0.0000019389,0.0000019158,0.0000018884, -0.0000018642,0.0000018503,0.0000018431,0.0000018381,0.0000018365, -0.0000018382,0.0000018452,0.0000018576,0.0000018717,0.0000018834, -0.0000018890,0.0000018891,0.0000018809,0.0000018619,0.0000018342, -0.0000018111,0.0000018073,0.0000018064,0.0000018128,0.0000018262, -0.0000018411,0.0000018504,0.0000018507,0.0000018446,0.0000018332, -0.0000018266,0.0000018283,0.0000018387,0.0000018598,0.0000018758, -0.0000018725,0.0000018574,0.0000018461,0.0000018435,0.0000018431, -0.0000018448,0.0000018530,0.0000018697,0.0000018898,0.0000019099, -0.0000019186,0.0000019232,0.0000019199,0.0000019098,0.0000018960, -0.0000018835,0.0000018738,0.0000018670,0.0000018628,0.0000018607, -0.0000018574,0.0000018544,0.0000018510,0.0000018501,0.0000018498, -0.0000018505,0.0000018542,0.0000018588,0.0000018631,0.0000018677, -0.0000018722,0.0000018764,0.0000018796,0.0000018812,0.0000018821, -0.0000018828,0.0000018836,0.0000018844,0.0000018844,0.0000018841, -0.0000018836,0.0000018826,0.0000018809,0.0000018790,0.0000018769, -0.0000018739,0.0000018708,0.0000018674,0.0000018641,0.0000018595, -0.0000018539,0.0000018466,0.0000018377,0.0000018261,0.0000018161, -0.0000018044,0.0000017927,0.0000017947,0.0000017947,0.0000018055, -0.0000018200,0.0000018322,0.0000018340,0.0000018326,0.0000018304, -0.0000018308,0.0000018313,0.0000018409,0.0000018512,0.0000018625, -0.0000018752,0.0000018877,0.0000019004,0.0000019150,0.0000019313, -0.0000019472,0.0000019594,0.0000019659,0.0000019649,0.0000019604, -0.0000019535,0.0000019449,0.0000019353,0.0000019236,0.0000019106, -0.0000018988,0.0000018891,0.0000018851,0.0000018874,0.0000018952, -0.0000019071,0.0000019199,0.0000019298,0.0000019370,0.0000019421, -0.0000019456,0.0000019470,0.0000019462,0.0000019450,0.0000019433, -0.0000019384,0.0000019200,0.0000018740,0.0000018068,0.0000017514, -0.0000017279,0.0000017273,0.0000017240,0.0000017139,0.0000017093, -0.0000017216,0.0000017852,0.0000018710,0.0000019309,0.0000019580, -0.0000019700,0.0000019787,0.0000019840,0.0000019872,0.0000019902, -0.0000019924,0.0000019936,0.0000019942,0.0000019942,0.0000019936, -0.0000019924,0.0000019910,0.0000019897,0.0000019887,0.0000019881, -0.0000019879,0.0000019879,0.0000019881,0.0000019891,0.0000019904, -0.0000019915,0.0000019940,0.0000019940,0.0000019950,0.0000019950, -0.0000019924,0.0000019893,0.0000019867,0.0000019841,0.0000019824, -0.0000019817,0.0000019804,0.0000019784,0.0000019766,0.0000019758, -0.0000019749,0.0000019735,0.0000019722,0.0000019715,0.0000019716, -0.0000019723,0.0000019735,0.0000019751,0.0000019775,0.0000019803, -0.0000019826,0.0000019857,0.0000019893,0.0000019923,0.0000019925, -0.0000019890,0.0000019861,0.0000019872,0.0000019898,0.0000019945, -0.0000020025,0.0000020028,0.0000019907,0.0000019790,0.0000019647, -0.0000019465,0.0000019376,0.0000019347,0.0000019356,0.0000019409, -0.0000019438,0.0000019400,0.0000019279,0.0000019121,0.0000019016, -0.0000018981,0.0000018971,0.0000018960,0.0000018948,0.0000018936, -0.0000018932,0.0000018941,0.0000018963,0.0000019014,0.0000019092, -0.0000019145,0.0000019161,0.0000019159,0.0000019156,0.0000019148, -0.0000019138,0.0000019126,0.0000019110,0.0000019102,0.0000019098, -0.0000019093,0.0000019094,0.0000019097,0.0000019096,0.0000019076, -0.0000019059,0.0000019044,0.0000019025,0.0000019006,0.0000018981, -0.0000018961,0.0000018947,0.0000018953,0.0000018947,0.0000018966, -0.0000018988,0.0000019011,0.0000019048,0.0000019097,0.0000019155, -0.0000019212,0.0000019258,0.0000019296,0.0000019315,0.0000019322, -0.0000019323,0.0000019331,0.0000019359,0.0000019398,0.0000019440, -0.0000019477,0.0000019502,0.0000019514,0.0000019517,0.0000019520, -0.0000019532,0.0000019553,0.0000019579,0.0000019603,0.0000019620, -0.0000019626,0.0000019620,0.0000019602,0.0000019582,0.0000019565, -0.0000019545,0.0000019523,0.0000019505,0.0000019492,0.0000019477, -0.0000019451,0.0000019422,0.0000019391,0.0000019361,0.0000019321, -0.0000019272,0.0000019214,0.0000019133,0.0000019036,0.0000018943, -0.0000018881,0.0000018874,0.0000018921,0.0000018997,0.0000019066, -0.0000019089,0.0000019070,0.0000019030,0.0000019003,0.0000019008, -0.0000019061,0.0000019137,0.0000019187,0.0000019210,0.0000019215, -0.0000019211,0.0000019192,0.0000019152,0.0000019101,0.0000019043, -0.0000018993,0.0000018968,0.0000018970,0.0000018975,0.0000018961, -0.0000018921,0.0000018885,0.0000018890,0.0000018925,0.0000018945, -0.0000018926,0.0000018885,0.0000018840,0.0000018797,0.0000018768, -0.0000018734,0.0000018691,0.0000018656,0.0000018628,0.0000018624, -0.0000018666,0.0000018740,0.0000018770,0.0000018741,0.0000018665, -0.0000018596,0.0000018537,0.0000018491,0.0000018456,0.0000018370, -0.0000018310,0.0000018326,0.0000018336,0.0000018295,0.0000018271, -0.0000018302,0.0000018353,0.0000018385,0.0000018394,0.0000018384, -0.0000018375,0.0000018388,0.0000018412,0.0000018421,0.0000018402, -0.0000018368,0.0000018312,0.0000018230,0.0000018129,0.0000018035, -0.0000017953,0.0000017861,0.0000017775,0.0000017711,0.0000017663, -0.0000017630,0.0000017601,0.0000017576,0.0000017565,0.0000017566, -0.0000017576,0.0000017586,0.0000017576,0.0000017534,0.0000017481, -0.0000017407,0.0000017290,0.0000017159,0.0000017101,0.0000017125, -0.0000017099,0.0000017028,0.0000016984,0.0000016997,0.0000017023, -0.0000017043,0.0000017050,0.0000017048,0.0000017035,0.0000016992, -0.0000016941,0.0000016927,0.0000016907,0.0000016886,0.0000016851, -0.0000016823,0.0000016814,0.0000016814,0.0000016810,0.0000016805, -0.0000016825,0.0000016856,0.0000016876,0.0000016888,0.0000016894, -0.0000016898,0.0000016898,0.0000016887,0.0000016866,0.0000016843, -0.0000016831,0.0000016837,0.0000016854,0.0000016869,0.0000016884, -0.0000016904,0.0000016921,0.0000016915,0.0000016892,0.0000016895, -0.0000016915,0.0000016862,0.0000016744,0.0000016754,0.0000016901, -0.0000016979,0.0000017018,0.0000017214,0.0000017234,0.0000016887, -0.0000016531,0.0000016468,0.0000016496,0.0000016531,0.0000016560, -0.0000016587,0.0000016590,0.0000016580,0.0000016578,0.0000016590, -0.0000016618,0.0000016645,0.0000016671,0.0000016685,0.0000016697, -0.0000016698,0.0000016681,0.0000016659,0.0000016632,0.0000016612, -0.0000016617,0.0000016644,0.0000016675,0.0000016707,0.0000016727, -0.0000016729,0.0000016716,0.0000016692,0.0000016674,0.0000016680, -0.0000016704,0.0000016743,0.0000016792,0.0000016852,0.0000016899, -0.0000016904,0.0000016872,0.0000016827,0.0000016799,0.0000016804, -0.0000016858,0.0000016950,0.0000017029,0.0000017054,0.0000017017, -0.0000016955,0.0000017001,0.0000017319,0.0000017632,0.0000017668, -0.0000017535,0.0000017445,0.0000017477,0.0000017587,0.0000017723, -0.0000017848,0.0000017902,0.0000017913,0.0000017940,0.0000017969, -0.0000017953,0.0000017867,0.0000017784,0.0000017748,0.0000017715, -0.0000017703,0.0000017716,0.0000017746,0.0000017781,0.0000017800, -0.0000017809,0.0000017812,0.0000017837,0.0000017918,0.0000017999, -0.0000017986,0.0000017919,0.0000017890,0.0000017901,0.0000017857, -0.0000017850,0.0000017938,0.0000018045,0.0000018101,0.0000018140, -0.0000018186,0.0000018194,0.0000018162,0.0000018123,0.0000018095, -0.0000018075,0.0000018034,0.0000017961,0.0000017872,0.0000017822, -0.0000017821,0.0000017836,0.0000017820,0.0000017794,0.0000017817, -0.0000017856,0.0000017867,0.0000017807,0.0000017735,0.0000017695, -0.0000017747,0.0000017790,0.0000017827,0.0000017874,0.0000017894, -0.0000017918,0.0000017902,0.0000017943,0.0000018074,0.0000018210, -0.0000018305,0.0000018406,0.0000018617,0.0000018794,0.0000018837, -0.0000018743,0.0000018658,0.0000018643,0.0000018674,0.0000018742, -0.0000018744,0.0000018672,0.0000018573,0.0000018521,0.0000018532, -0.0000018560,0.0000018572,0.0000018576,0.0000018569,0.0000018554, -0.0000018542,0.0000018541,0.0000018542,0.0000018539,0.0000018532, -0.0000018537,0.0000018553,0.0000018574,0.0000018582,0.0000018578, -0.0000018559,0.0000018525,0.0000018475,0.0000018443,0.0000018452, -0.0000018507,0.0000018608,0.0000018756,0.0000018900,0.0000018965, -0.0000018956,0.0000018932,0.0000018933,0.0000018890,0.0000018787, -0.0000018825,0.0000018983,0.0000018949,0.0000018708,0.0000018373, -0.0000017985,0.0000017831,0.0000017826,0.0000017783,0.0000017644, -0.0000017462,0.0000017302,0.0000017180,0.0000017094,0.0000017035, -0.0000017002,0.0000016985,0.0000016973,0.0000016958,0.0000016937, -0.0000016906,0.0000016860,0.0000016802,0.0000016735,0.0000016667, -0.0000016603,0.0000016548,0.0000016516,0.0000016519,0.0000016576, -0.0000016645,0.0000016674,0.0000016666,0.0000016654,0.0000016706, -0.0000016848,0.0000017006,0.0000017145,0.0000017268,0.0000017362, -0.0000017427,0.0000017566,0.0000017762,0.0000017816,0.0000017827, -0.0000017950,0.0000018049,0.0000018037,0.0000018000,0.0000018007, -0.0000018039,0.0000018063,0.0000018062,0.0000018044,0.0000018039, -0.0000018059,0.0000018095,0.0000018121,0.0000018130,0.0000018148, -0.0000018200,0.0000018314,0.0000018471,0.0000018582,0.0000018612, -0.0000018702,0.0000018866,0.0000018800,0.0000018476,0.0000018275, -0.0000018256,0.0000018366,0.0000018495,0.0000018351,0.0000017926, -0.0000017535,0.0000017401,0.0000017418,0.0000017444,0.0000017420, -0.0000017388,0.0000017395,0.0000017398,0.0000017362,0.0000017353, -0.0000017411,0.0000017450,0.0000017585,0.0000017768,0.0000017721, -0.0000017679,0.0000017678,0.0000017635,0.0000017566,0.0000017528, -0.0000017547,0.0000017742,0.0000017966,0.0000018172,0.0000018096, -0.0000017718,0.0000017453,0.0000017419,0.0000017478,0.0000017635, -0.0000017875,0.0000018046,0.0000018068,0.0000018004,0.0000018060, -0.0000018470,0.0000019101,0.0000019521,0.0000019597,0.0000019495, -0.0000019379,0.0000019319,0.0000019310,0.0000019291,0.0000019282, -0.0000019263,0.0000019225,0.0000019176,0.0000019182,0.0000019132, -0.0000019186,0.0000019211,0.0000019203,0.0000019133,0.0000018992, -0.0000018910,0.0000018986,0.0000019287,0.0000019642,0.0000019782, -0.0000019689,0.0000019560,0.0000019521,0.0000019552,0.0000019610, -0.0000019672,0.0000019730,0.0000019757,0.0000019793,0.0000019895, -0.0000019786,0.0000019351,0.0000019062,0.0000019085,0.0000019238, -0.0000019494,0.0000019852,0.0000020124,0.0000020206,0.0000020127, -0.0000019836,0.0000019476,0.0000019564,0.0000019957,0.0000019959, -0.0000019900,0.0000019828,0.0000019490,0.0000019396,0.0000019917, -0.0000020093,0.0000019843,0.0000019506,0.0000019355,0.0000019526, -0.0000019940,0.0000020216,0.0000020257,0.0000020195,0.0000019967, -0.0000019857,0.0000019962,0.0000020083,0.0000020165,0.0000020230, -0.0000020255,0.0000020246,0.0000020207,0.0000020141,0.0000020016, -0.0000019893,0.0000019923,0.0000020087,0.0000020142,0.0000020103, -0.0000020184,0.0000020281,0.0000020256,0.0000019640,0.0000018756, -0.0000018401,0.0000018496,0.0000018273,0.0000018151,0.0000018112, -0.0000018122,0.0000018177,0.0000018145,0.0000017958,0.0000017981, -0.0000018306,0.0000018381,0.0000018133,0.0000017929,0.0000017760, -0.0000017831,0.0000018016,0.0000018097,0.0000018318,0.0000018358, -0.0000018397,0.0000018520,0.0000018529,0.0000018713,0.0000019320, -0.0000019661,0.0000019640,0.0000019587,0.0000019588,0.0000019607, -0.0000019639,0.0000019666,0.0000019686,0.0000019663,0.0000019581, -0.0000019383,0.0000019120,0.0000018799,0.0000018547,0.0000018384, -0.0000018346,0.0000018331,0.0000018383,0.0000018406,0.0000018398, -0.0000018342,0.0000018262,0.0000018209,0.0000018186,0.0000018149, -0.0000018113,0.0000018092,0.0000018080,0.0000018058,0.0000018038, -0.0000018064,0.0000018124,0.0000018226,0.0000018342,0.0000018446, -0.0000018526,0.0000018533,0.0000018465,0.0000018355,0.0000018308, -0.0000018345,0.0000018499,0.0000018702,0.0000018758,0.0000018635, -0.0000018506,0.0000018457,0.0000018439,0.0000018432,0.0000018456, -0.0000018572,0.0000018747,0.0000018951,0.0000019056,0.0000019088, -0.0000019040,0.0000018939,0.0000018836,0.0000018754,0.0000018695, -0.0000018668,0.0000018650,0.0000018614,0.0000018585,0.0000018561, -0.0000018561,0.0000018555,0.0000018592,0.0000018642,0.0000018713, -0.0000018784,0.0000018863,0.0000018913,0.0000018953,0.0000018987, -0.0000018956,0.0000018937,0.0000018934,0.0000018938,0.0000018927, -0.0000018908,0.0000018895,0.0000018898,0.0000018899,0.0000018904, -0.0000018913,0.0000018923,0.0000018918,0.0000018903,0.0000018896, -0.0000018883,0.0000018907,0.0000018930,0.0000018944,0.0000018942, -0.0000018932,0.0000018896,0.0000018834,0.0000018732,0.0000018646, -0.0000018549,0.0000018371,0.0000018176,0.0000017942,0.0000017833, -0.0000017834,0.0000017961,0.0000018132,0.0000018244,0.0000018324, -0.0000018328,0.0000018310,0.0000018291,0.0000018280,0.0000018266, -0.0000018265,0.0000018302,0.0000018364,0.0000018445,0.0000018589, -0.0000018784,0.0000019011,0.0000019237,0.0000019425,0.0000019536, -0.0000019579,0.0000019541,0.0000019484,0.0000019373,0.0000019208, -0.0000019029,0.0000018886,0.0000018803,0.0000018779,0.0000018835, -0.0000018970,0.0000019133,0.0000019254,0.0000019323,0.0000019365, -0.0000019392,0.0000019400,0.0000019385,0.0000019358,0.0000019286, -0.0000019046,0.0000018468,0.0000017709,0.0000017239,0.0000017196, -0.0000017332,0.0000017438,0.0000017415,0.0000017260,0.0000017141, -0.0000017264,0.0000017936,0.0000018802,0.0000019363,0.0000019603, -0.0000019716,0.0000019803,0.0000019858,0.0000019894,0.0000019911, -0.0000019914,0.0000019902,0.0000019880,0.0000019850,0.0000019817, -0.0000019784,0.0000019755,0.0000019736,0.0000019727,0.0000019728, -0.0000019740,0.0000019756,0.0000019771,0.0000019794,0.0000019819, -0.0000019849,0.0000019879,0.0000019910,0.0000019940,0.0000019968, -0.0000019977,0.0000019982,0.0000019978,0.0000019986,0.0000019978, -0.0000019977,0.0000019965,0.0000019940,0.0000019924,0.0000019913, -0.0000019894,0.0000019866,0.0000019843,0.0000019833,0.0000019831, -0.0000019831,0.0000019830,0.0000019828,0.0000019834,0.0000019853, -0.0000019880,0.0000019912,0.0000019942,0.0000019961,0.0000019956, -0.0000019930,0.0000019930,0.0000019965,0.0000020009,0.0000020053, -0.0000020048,0.0000019938,0.0000019810,0.0000019743,0.0000019628, -0.0000019504,0.0000019434,0.0000019394,0.0000019401,0.0000019456, -0.0000019459,0.0000019362,0.0000019188,0.0000019047,0.0000018975, -0.0000018951,0.0000018948,0.0000018948,0.0000018945,0.0000018952, -0.0000019002,0.0000019093,0.0000019163,0.0000019172,0.0000019169, -0.0000019181,0.0000019189,0.0000019171,0.0000019129,0.0000019079, -0.0000019037,0.0000019007,0.0000018993,0.0000018983,0.0000018978, -0.0000018980,0.0000018991,0.0000019011,0.0000019029,0.0000019043, -0.0000019067,0.0000019073,0.0000019079,0.0000019068,0.0000019040, -0.0000019016,0.0000018994,0.0000018969,0.0000018947,0.0000018933, -0.0000018908,0.0000018903,0.0000018919,0.0000018951,0.0000018994, -0.0000019036,0.0000019078,0.0000019117,0.0000019146,0.0000019172, -0.0000019200,0.0000019239,0.0000019281,0.0000019315,0.0000019336, -0.0000019346,0.0000019346,0.0000019336,0.0000019327,0.0000019332, -0.0000019354,0.0000019379,0.0000019397,0.0000019410,0.0000019417, -0.0000019418,0.0000019411,0.0000019400,0.0000019390,0.0000019373, -0.0000019353,0.0000019335,0.0000019315,0.0000019286,0.0000019257, -0.0000019237,0.0000019220,0.0000019204,0.0000019186,0.0000019155, -0.0000019104,0.0000019035,0.0000018952,0.0000018872,0.0000018827, -0.0000018829,0.0000018867,0.0000018920,0.0000018971,0.0000018999, -0.0000018995,0.0000018979,0.0000018974,0.0000018983,0.0000019033, -0.0000019116,0.0000019171,0.0000019192,0.0000019192,0.0000019181, -0.0000019164,0.0000019140,0.0000019103,0.0000019051,0.0000018997, -0.0000018975,0.0000018983,0.0000018991,0.0000018974,0.0000018926, -0.0000018883,0.0000018871,0.0000018896,0.0000018927,0.0000018931, -0.0000018908,0.0000018862,0.0000018805,0.0000018769,0.0000018742, -0.0000018699,0.0000018661,0.0000018645,0.0000018639,0.0000018668, -0.0000018738,0.0000018784,0.0000018773,0.0000018705,0.0000018632, -0.0000018568,0.0000018514,0.0000018454,0.0000018360,0.0000018326, -0.0000018348,0.0000018342,0.0000018291,0.0000018282,0.0000018333, -0.0000018393,0.0000018420,0.0000018421,0.0000018414,0.0000018407, -0.0000018413,0.0000018438,0.0000018453,0.0000018422,0.0000018365, -0.0000018283,0.0000018179,0.0000018085,0.0000018031,0.0000017990, -0.0000017922,0.0000017845,0.0000017771,0.0000017695,0.0000017633, -0.0000017594,0.0000017576,0.0000017578,0.0000017591,0.0000017605, -0.0000017604,0.0000017589,0.0000017548,0.0000017496,0.0000017442, -0.0000017335,0.0000017202,0.0000017105,0.0000017096,0.0000017114, -0.0000017100,0.0000017056,0.0000017023,0.0000017019,0.0000017023, -0.0000017023,0.0000017016,0.0000017000,0.0000016965,0.0000016941, -0.0000016945,0.0000016943,0.0000016924,0.0000016895,0.0000016872, -0.0000016864,0.0000016858,0.0000016843,0.0000016841,0.0000016864, -0.0000016888,0.0000016901,0.0000016905,0.0000016900,0.0000016895, -0.0000016886,0.0000016872,0.0000016854,0.0000016835,0.0000016822, -0.0000016820,0.0000016823,0.0000016821,0.0000016835,0.0000016874, -0.0000016912,0.0000016917,0.0000016898,0.0000016907,0.0000016917, -0.0000016828,0.0000016721,0.0000016780,0.0000016930,0.0000016960, -0.0000017076,0.0000017222,0.0000017002,0.0000016593,0.0000016457, -0.0000016461,0.0000016486,0.0000016513,0.0000016541,0.0000016556, -0.0000016556,0.0000016553,0.0000016557,0.0000016569,0.0000016591, -0.0000016611,0.0000016611,0.0000016609,0.0000016608,0.0000016603, -0.0000016577,0.0000016521,0.0000016476,0.0000016474,0.0000016482, -0.0000016504,0.0000016541,0.0000016564,0.0000016567,0.0000016559, -0.0000016542,0.0000016541,0.0000016567,0.0000016602,0.0000016642, -0.0000016683,0.0000016747,0.0000016819,0.0000016859,0.0000016841, -0.0000016784,0.0000016735,0.0000016730,0.0000016779,0.0000016856, -0.0000016942,0.0000017012,0.0000017030,0.0000016987,0.0000016930, -0.0000017005,0.0000017336,0.0000017639,0.0000017668,0.0000017534, -0.0000017449,0.0000017488,0.0000017593,0.0000017709,0.0000017826, -0.0000017901,0.0000017918,0.0000017940,0.0000017978,0.0000017964, -0.0000017883,0.0000017793,0.0000017725,0.0000017691,0.0000017683, -0.0000017703,0.0000017740,0.0000017772,0.0000017795,0.0000017806, -0.0000017830,0.0000017908,0.0000018008,0.0000018025,0.0000017964, -0.0000017921,0.0000017937,0.0000017895,0.0000017863,0.0000017898, -0.0000018001,0.0000018089,0.0000018139,0.0000018196,0.0000018234, -0.0000018207,0.0000018129,0.0000018056,0.0000018008,0.0000017979, -0.0000017952,0.0000017899,0.0000017843,0.0000017808,0.0000017812, -0.0000017822,0.0000017793,0.0000017787,0.0000017824,0.0000017840, -0.0000017823,0.0000017762,0.0000017728,0.0000017748,0.0000017794, -0.0000017806,0.0000017865,0.0000017889,0.0000017894,0.0000017869, -0.0000017903,0.0000018031,0.0000018168,0.0000018277,0.0000018362, -0.0000018555,0.0000018748,0.0000018835,0.0000018789,0.0000018699, -0.0000018661,0.0000018660,0.0000018724,0.0000018784,0.0000018766, -0.0000018687,0.0000018592,0.0000018537,0.0000018544,0.0000018569, -0.0000018578,0.0000018580,0.0000018590,0.0000018601,0.0000018606, -0.0000018607,0.0000018599,0.0000018583,0.0000018570,0.0000018571, -0.0000018570,0.0000018559,0.0000018528,0.0000018477,0.0000018427, -0.0000018403,0.0000018422,0.0000018475,0.0000018570,0.0000018711, -0.0000018854,0.0000018940,0.0000018952,0.0000018935,0.0000018931, -0.0000018931,0.0000018873,0.0000018797,0.0000018883,0.0000019001, -0.0000018886,0.0000018633,0.0000018294,0.0000017953,0.0000017838, -0.0000017836,0.0000017784,0.0000017624,0.0000017410,0.0000017222, -0.0000017069,0.0000016958,0.0000016879,0.0000016824,0.0000016785, -0.0000016753,0.0000016720,0.0000016687,0.0000016650,0.0000016611, -0.0000016574,0.0000016537,0.0000016499,0.0000016464,0.0000016449, -0.0000016484,0.0000016575,0.0000016668,0.0000016695,0.0000016677, -0.0000016671,0.0000016735,0.0000016868,0.0000017014,0.0000017147, -0.0000017266,0.0000017362,0.0000017412,0.0000017524,0.0000017743, -0.0000017833,0.0000017819,0.0000017914,0.0000018033,0.0000018059, -0.0000018025,0.0000018007,0.0000018020,0.0000018053,0.0000018084, -0.0000018106,0.0000018116,0.0000018121,0.0000018134,0.0000018158, -0.0000018193,0.0000018245,0.0000018329,0.0000018442,0.0000018546, -0.0000018592,0.0000018621,0.0000018741,0.0000018867,0.0000018753, -0.0000018466,0.0000018302,0.0000018296,0.0000018432,0.0000018486, -0.0000018207,0.0000017753,0.0000017436,0.0000017397,0.0000017439, -0.0000017418,0.0000017338,0.0000017301,0.0000017350,0.0000017401, -0.0000017385,0.0000017376,0.0000017409,0.0000017426,0.0000017563, -0.0000017763,0.0000017712,0.0000017677,0.0000017673,0.0000017626, -0.0000017553,0.0000017517,0.0000017568,0.0000017791,0.0000018032, -0.0000018168,0.0000017940,0.0000017559,0.0000017415,0.0000017423, -0.0000017523,0.0000017732,0.0000017949,0.0000018016,0.0000017969, -0.0000017985,0.0000018394,0.0000019091,0.0000019526,0.0000019535, -0.0000019397,0.0000019349,0.0000019407,0.0000019515,0.0000019594, -0.0000019637,0.0000019646,0.0000019632,0.0000019589,0.0000019515, -0.0000019405,0.0000019278,0.0000019170,0.0000019045,0.0000018977, -0.0000018867,0.0000018782,0.0000018735,0.0000018705,0.0000018881, -0.0000019274,0.0000019654,0.0000019769,0.0000019696,0.0000019616, -0.0000019602,0.0000019637,0.0000019691,0.0000019739,0.0000019763, -0.0000019828,0.0000019926,0.0000019760,0.0000019296,0.0000019040, -0.0000019079,0.0000019220,0.0000019462,0.0000019858,0.0000020159, -0.0000020237,0.0000020129,0.0000019778,0.0000019434,0.0000019734, -0.0000019998,0.0000019905,0.0000019879,0.0000019662,0.0000019374, -0.0000019658,0.0000020071,0.0000019946,0.0000019595,0.0000019357, -0.0000019480,0.0000019886,0.0000020186,0.0000020237,0.0000020205, -0.0000020014,0.0000019834,0.0000019889,0.0000020029,0.0000020110, -0.0000020164,0.0000020195,0.0000020193,0.0000020167,0.0000020107, -0.0000019992,0.0000019902,0.0000019947,0.0000020123,0.0000020182, -0.0000020140,0.0000020184,0.0000020277,0.0000020266,0.0000019747, -0.0000018849,0.0000018423,0.0000018516,0.0000018307,0.0000018171, -0.0000018163,0.0000018371,0.0000018572,0.0000018612,0.0000018384, -0.0000018126,0.0000018298,0.0000018403,0.0000018187,0.0000017950, -0.0000017786,0.0000017859,0.0000018043,0.0000018123,0.0000018317, -0.0000018354,0.0000018431,0.0000018547,0.0000018527,0.0000018859, -0.0000019501,0.0000019748,0.0000019707,0.0000019647,0.0000019622, -0.0000019631,0.0000019624,0.0000019604,0.0000019525,0.0000019351, -0.0000019110,0.0000018813,0.0000018544,0.0000018354,0.0000018323, -0.0000018416,0.0000018535,0.0000018678,0.0000018785,0.0000018837, -0.0000018848,0.0000018810,0.0000018699,0.0000018543,0.0000018393, -0.0000018276,0.0000018196,0.0000018151,0.0000018132,0.0000018139, -0.0000018172,0.0000018227,0.0000018288,0.0000018356,0.0000018432, -0.0000018512,0.0000018556,0.0000018513,0.0000018406,0.0000018357, -0.0000018397,0.0000018597,0.0000018777,0.0000018719,0.0000018581, -0.0000018513,0.0000018479,0.0000018436,0.0000018411,0.0000018440, -0.0000018558,0.0000018757,0.0000018880,0.0000018939,0.0000018903, -0.0000018824,0.0000018752,0.0000018700,0.0000018677,0.0000018660, -0.0000018639,0.0000018609,0.0000018592,0.0000018598,0.0000018587, -0.0000018637,0.0000018711,0.0000018812,0.0000018893,0.0000018980, -0.0000019000,0.0000018929,0.0000018918,0.0000018821,0.0000018700, -0.0000018592,0.0000018480,0.0000018399,0.0000018341,0.0000018280, -0.0000018232,0.0000018203,0.0000018188,0.0000018183,0.0000018182, -0.0000018196,0.0000018226,0.0000018267,0.0000018310,0.0000018353, -0.0000018396,0.0000018436,0.0000018477,0.0000018518,0.0000018550, -0.0000018563,0.0000018570,0.0000018579,0.0000018599,0.0000018628, -0.0000018710,0.0000018795,0.0000018771,0.0000018730,0.0000018506, -0.0000018195,0.0000017907,0.0000017741,0.0000017762,0.0000017875, -0.0000018046,0.0000018201,0.0000018295,0.0000018337,0.0000018325, -0.0000018295,0.0000018248,0.0000018203,0.0000018182,0.0000018153, -0.0000018138,0.0000018197,0.0000018313,0.0000018500,0.0000018753, -0.0000019026,0.0000019266,0.0000019435,0.0000019517,0.0000019498, -0.0000019413,0.0000019211,0.0000018989,0.0000018817,0.0000018745, -0.0000018741,0.0000018850,0.0000019020,0.0000019154,0.0000019230, -0.0000019278,0.0000019308,0.0000019316,0.0000019288,0.0000019177, -0.0000018848,0.0000018210,0.0000017463,0.0000017071,0.0000017155, -0.0000017374,0.0000017568,0.0000017617,0.0000017553,0.0000017354, -0.0000017212,0.0000017344,0.0000018039,0.0000018835,0.0000019350, -0.0000019599,0.0000019726,0.0000019815,0.0000019867,0.0000019895, -0.0000019896,0.0000019869,0.0000019821,0.0000019769,0.0000019723, -0.0000019686,0.0000019656,0.0000019634,0.0000019628,0.0000019637, -0.0000019663,0.0000019702,0.0000019735,0.0000019757,0.0000019773, -0.0000019782,0.0000019790,0.0000019796,0.0000019809,0.0000019830, -0.0000019860,0.0000019892,0.0000019924,0.0000019954,0.0000019976, -0.0000019998,0.0000020017,0.0000020017,0.0000020000,0.0000020002, -0.0000020010,0.0000020003,0.0000019991,0.0000019986,0.0000019985, -0.0000019983,0.0000019969,0.0000019953,0.0000019937,0.0000019929, -0.0000019930,0.0000019937,0.0000019946,0.0000019961,0.0000019985, -0.0000019997,0.0000020004,0.0000020029,0.0000020062,0.0000020078, -0.0000020067,0.0000019982,0.0000019831,0.0000019744,0.0000019709, -0.0000019632,0.0000019569,0.0000019526,0.0000019467,0.0000019451, -0.0000019478,0.0000019457,0.0000019312,0.0000019120,0.0000018994, -0.0000018934,0.0000018930,0.0000018955,0.0000018971,0.0000018993, -0.0000019070,0.0000019162,0.0000019180,0.0000019160,0.0000019160, -0.0000019170,0.0000019145,0.0000019090,0.0000019040,0.0000018992, -0.0000018950,0.0000018917,0.0000018889,0.0000018853,0.0000018820, -0.0000018796,0.0000018801,0.0000018832,0.0000018880,0.0000018933, -0.0000018991,0.0000019038,0.0000019069,0.0000019082,0.0000019068, -0.0000019051,0.0000019042,0.0000019029,0.0000019009,0.0000018978, -0.0000018942,0.0000018910,0.0000018889,0.0000018881,0.0000018864, -0.0000018874,0.0000018887,0.0000018915,0.0000018955,0.0000018998, -0.0000019036,0.0000019074,0.0000019107,0.0000019127,0.0000019130, -0.0000019122,0.0000019109,0.0000019094,0.0000019083,0.0000019088, -0.0000019108,0.0000019133,0.0000019157,0.0000019182,0.0000019206, -0.0000019230,0.0000019241,0.0000019246,0.0000019250,0.0000019243, -0.0000019225,0.0000019208,0.0000019184,0.0000019144,0.0000019103, -0.0000019072,0.0000019053,0.0000019039,0.0000019034,0.0000019023, -0.0000018987,0.0000018935,0.0000018876,0.0000018822,0.0000018785, -0.0000018776,0.0000018788,0.0000018819,0.0000018854,0.0000018879, -0.0000018887,0.0000018886,0.0000018888,0.0000018902,0.0000018960, -0.0000019051,0.0000019121,0.0000019149,0.0000019143,0.0000019123, -0.0000019108,0.0000019108,0.0000019098,0.0000019060,0.0000019008, -0.0000018984,0.0000018993,0.0000019002,0.0000018985,0.0000018937, -0.0000018891,0.0000018870,0.0000018878,0.0000018902,0.0000018925, -0.0000018929,0.0000018895,0.0000018826,0.0000018773,0.0000018750, -0.0000018714,0.0000018675,0.0000018663,0.0000018656,0.0000018671, -0.0000018732,0.0000018782,0.0000018785,0.0000018739,0.0000018672, -0.0000018604,0.0000018532,0.0000018445,0.0000018359,0.0000018347, -0.0000018364,0.0000018346,0.0000018310,0.0000018312,0.0000018364, -0.0000018413,0.0000018431,0.0000018427,0.0000018428,0.0000018426, -0.0000018427,0.0000018452,0.0000018470,0.0000018430,0.0000018355, -0.0000018253,0.0000018139,0.0000018068,0.0000018054,0.0000018040, -0.0000017986,0.0000017911,0.0000017821,0.0000017725,0.0000017653, -0.0000017617,0.0000017606,0.0000017617,0.0000017633,0.0000017633, -0.0000017618,0.0000017600,0.0000017568,0.0000017521,0.0000017471, -0.0000017381,0.0000017246,0.0000017140,0.0000017091,0.0000017107, -0.0000017130,0.0000017129,0.0000017096,0.0000017052,0.0000017015, -0.0000016990,0.0000016974,0.0000016961,0.0000016946,0.0000016953, -0.0000016968,0.0000016964,0.0000016940,0.0000016908,0.0000016887, -0.0000016879,0.0000016862,0.0000016842,0.0000016847,0.0000016870, -0.0000016889,0.0000016899,0.0000016896,0.0000016884,0.0000016867, -0.0000016851,0.0000016844,0.0000016834,0.0000016818,0.0000016805, -0.0000016797,0.0000016784,0.0000016780,0.0000016810,0.0000016866, -0.0000016913,0.0000016917,0.0000016902,0.0000016917,0.0000016907, -0.0000016781,0.0000016707,0.0000016825,0.0000016934,0.0000016967, -0.0000017137,0.0000017107,0.0000016721,0.0000016473,0.0000016455, -0.0000016466,0.0000016488,0.0000016517,0.0000016543,0.0000016553, -0.0000016545,0.0000016531,0.0000016516,0.0000016511,0.0000016514, -0.0000016511,0.0000016514,0.0000016538,0.0000016546,0.0000016500, -0.0000016410,0.0000016352,0.0000016343,0.0000016353,0.0000016391, -0.0000016444,0.0000016474,0.0000016478,0.0000016475,0.0000016466, -0.0000016470,0.0000016492,0.0000016518,0.0000016544,0.0000016569, -0.0000016609,0.0000016672,0.0000016736,0.0000016775,0.0000016754, -0.0000016693,0.0000016657,0.0000016689,0.0000016770,0.0000016855, -0.0000016927,0.0000016983,0.0000016992,0.0000016954,0.0000016919, -0.0000017019,0.0000017352,0.0000017648,0.0000017673,0.0000017537, -0.0000017461,0.0000017497,0.0000017583,0.0000017686,0.0000017814, -0.0000017900,0.0000017913,0.0000017927,0.0000017958,0.0000017952, -0.0000017899,0.0000017810,0.0000017732,0.0000017699,0.0000017711, -0.0000017738,0.0000017769,0.0000017794,0.0000017817,0.0000017851, -0.0000017924,0.0000018014,0.0000018037,0.0000018005,0.0000017966, -0.0000017981,0.0000017929,0.0000017885,0.0000017886,0.0000017955, -0.0000018051,0.0000018123,0.0000018184,0.0000018247,0.0000018267, -0.0000018218,0.0000018117,0.0000018027,0.0000017967,0.0000017929, -0.0000017894,0.0000017856,0.0000017819,0.0000017801,0.0000017814, -0.0000017804,0.0000017778,0.0000017796,0.0000017811,0.0000017818, -0.0000017782,0.0000017748,0.0000017756,0.0000017801,0.0000017789, -0.0000017839,0.0000017879,0.0000017872,0.0000017842,0.0000017863, -0.0000017983,0.0000018122,0.0000018243,0.0000018321,0.0000018499, -0.0000018702,0.0000018830,0.0000018821,0.0000018739,0.0000018694, -0.0000018673,0.0000018694,0.0000018780,0.0000018812,0.0000018784, -0.0000018714,0.0000018623,0.0000018553,0.0000018544,0.0000018559, -0.0000018571,0.0000018572,0.0000018572,0.0000018575,0.0000018579, -0.0000018580,0.0000018570,0.0000018549,0.0000018519,0.0000018485, -0.0000018452,0.0000018418,0.0000018385,0.0000018376,0.0000018403, -0.0000018478,0.0000018593,0.0000018731,0.0000018857,0.0000018929, -0.0000018945,0.0000018934,0.0000018922,0.0000018934,0.0000018927, -0.0000018860,0.0000018833,0.0000018944,0.0000018987,0.0000018811, -0.0000018544,0.0000018209,0.0000017927,0.0000017848,0.0000017846, -0.0000017782,0.0000017578,0.0000017323,0.0000017110,0.0000016951, -0.0000016837,0.0000016751,0.0000016687,0.0000016640,0.0000016604, -0.0000016577,0.0000016561,0.0000016555,0.0000016541,0.0000016523, -0.0000016485,0.0000016444,0.0000016431,0.0000016477,0.0000016595, -0.0000016690,0.0000016705,0.0000016692,0.0000016706,0.0000016780, -0.0000016898,0.0000017028,0.0000017155,0.0000017270,0.0000017364, -0.0000017398,0.0000017473,0.0000017697,0.0000017833,0.0000017823, -0.0000017874,0.0000017997,0.0000018056,0.0000018052,0.0000018030, -0.0000018026,0.0000018052,0.0000018091,0.0000018135,0.0000018184, -0.0000018225,0.0000018255,0.0000018285,0.0000018331,0.0000018394, -0.0000018468,0.0000018530,0.0000018564,0.0000018588,0.0000018659, -0.0000018795,0.0000018849,0.0000018679,0.0000018435,0.0000018328, -0.0000018364,0.0000018470,0.0000018403,0.0000018016,0.0000017575, -0.0000017390,0.0000017412,0.0000017437,0.0000017352,0.0000017236, -0.0000017200,0.0000017292,0.0000017405,0.0000017407,0.0000017406, -0.0000017417,0.0000017413,0.0000017558,0.0000017762,0.0000017703, -0.0000017675,0.0000017665,0.0000017615,0.0000017543,0.0000017518, -0.0000017605,0.0000017846,0.0000018092,0.0000018124,0.0000017756, -0.0000017457,0.0000017414,0.0000017454,0.0000017610,0.0000017841, -0.0000017968,0.0000017941,0.0000017919,0.0000018255,0.0000019002, -0.0000019485,0.0000019497,0.0000019366,0.0000019390,0.0000019550, -0.0000019714,0.0000019820,0.0000019849,0.0000019837,0.0000019782, -0.0000019766,0.0000019742,0.0000019716,0.0000019730,0.0000019660, -0.0000019555,0.0000019391,0.0000019184,0.0000019004,0.0000018888, -0.0000018823,0.0000018764,0.0000018761,0.0000018934,0.0000019342, -0.0000019705,0.0000019807,0.0000019775,0.0000019728,0.0000019715, -0.0000019735,0.0000019764,0.0000019796,0.0000019889,0.0000019947, -0.0000019736,0.0000019265,0.0000019032,0.0000019068,0.0000019193, -0.0000019452,0.0000019902,0.0000020204,0.0000020254,0.0000020067, -0.0000019637,0.0000019479,0.0000019931,0.0000019958,0.0000019885, -0.0000019792,0.0000019450,0.0000019471,0.0000019980,0.0000020033, -0.0000019698,0.0000019382,0.0000019422,0.0000019828,0.0000020159, -0.0000020221,0.0000020204,0.0000020067,0.0000019855,0.0000019823, -0.0000019954,0.0000020058,0.0000020109,0.0000020141,0.0000020148, -0.0000020129,0.0000020072,0.0000019968,0.0000019905,0.0000019987, -0.0000020152,0.0000020210,0.0000020172,0.0000020187,0.0000020264, -0.0000020267,0.0000019857,0.0000018970,0.0000018455,0.0000018514, -0.0000018345,0.0000018195,0.0000018264,0.0000018580,0.0000018826, -0.0000018893,0.0000018727,0.0000018378,0.0000018341,0.0000018446, -0.0000018245,0.0000017984,0.0000017811,0.0000017880,0.0000018064, -0.0000018145,0.0000018317,0.0000018348,0.0000018462,0.0000018571, -0.0000018553,0.0000019005,0.0000019634,0.0000019763,0.0000019716, -0.0000019629,0.0000019558,0.0000019491,0.0000019381,0.0000019239, -0.0000019034,0.0000018773,0.0000018524,0.0000018342,0.0000018311, -0.0000018359,0.0000018537,0.0000018771,0.0000018949,0.0000019035, -0.0000019052,0.0000019043,0.0000019011,0.0000019005,0.0000019017, -0.0000018956,0.0000018844,0.0000018720,0.0000018610,0.0000018518, -0.0000018452,0.0000018412,0.0000018394,0.0000018388,0.0000018403, -0.0000018439,0.0000018482,0.0000018528,0.0000018523,0.0000018449, -0.0000018389,0.0000018435,0.0000018687,0.0000018781,0.0000018672, -0.0000018586,0.0000018550,0.0000018496,0.0000018417,0.0000018369, -0.0000018399,0.0000018521,0.0000018645,0.0000018757,0.0000018765, -0.0000018723,0.0000018679,0.0000018670,0.0000018667,0.0000018657, -0.0000018626,0.0000018593,0.0000018552,0.0000018557,0.0000018609, -0.0000018712,0.0000018843,0.0000018913,0.0000018999,0.0000018955, -0.0000018928,0.0000018774,0.0000018584,0.0000018347,0.0000018101, -0.0000017872,0.0000017673,0.0000017498,0.0000017359,0.0000017256, -0.0000017185,0.0000017138,0.0000017112,0.0000017105,0.0000017107, -0.0000017112,0.0000017118,0.0000017135,0.0000017174,0.0000017229, -0.0000017293,0.0000017354,0.0000017404,0.0000017444,0.0000017482, -0.0000017525,0.0000017568,0.0000017594,0.0000017611,0.0000017637, -0.0000017693,0.0000017805,0.0000017966,0.0000018187,0.0000018446, -0.0000018704,0.0000018805,0.0000018764,0.0000018518,0.0000018142, -0.0000017830,0.0000017678,0.0000017656,0.0000017799,0.0000017955, -0.0000018126,0.0000018234,0.0000018296,0.0000018308,0.0000018296, -0.0000018270,0.0000018205,0.0000018139,0.0000018087,0.0000018069, -0.0000018052,0.0000018145,0.0000018317,0.0000018564,0.0000018860, -0.0000019164,0.0000019402,0.0000019500,0.0000019438,0.0000019243, -0.0000018979,0.0000018779,0.0000018707,0.0000018727,0.0000018849, -0.0000018982,0.0000019075,0.0000019138,0.0000019167,0.0000019157, -0.0000019030,0.0000018636,0.0000017946,0.0000017288,0.0000017057, -0.0000017126,0.0000017352,0.0000017525,0.0000017643,0.0000017678, -0.0000017604,0.0000017410,0.0000017270,0.0000017419,0.0000018093, -0.0000018784,0.0000019278,0.0000019567,0.0000019707,0.0000019786, -0.0000019817,0.0000019814,0.0000019775,0.0000019702,0.0000019624, -0.0000019567,0.0000019535,0.0000019520,0.0000019523,0.0000019544, -0.0000019571,0.0000019600,0.0000019639,0.0000019683,0.0000019720, -0.0000019743,0.0000019755,0.0000019759,0.0000019754,0.0000019743, -0.0000019734,0.0000019733,0.0000019744,0.0000019767,0.0000019796, -0.0000019831,0.0000019872,0.0000019913,0.0000019944,0.0000019963, -0.0000019973,0.0000019992,0.0000020015,0.0000020028,0.0000020035, -0.0000020043,0.0000020046,0.0000020035,0.0000020004,0.0000019978, -0.0000019953,0.0000019941,0.0000019934,0.0000019936,0.0000019945, -0.0000019973,0.0000020016,0.0000020051,0.0000020079,0.0000020098, -0.0000020096,0.0000020074,0.0000020016,0.0000019879,0.0000019735, -0.0000019695,0.0000019677,0.0000019644,0.0000019645,0.0000019635, -0.0000019558,0.0000019503,0.0000019501,0.0000019439,0.0000019255, -0.0000019064,0.0000018955,0.0000018916,0.0000018939,0.0000018989, -0.0000019021,0.0000019081,0.0000019163,0.0000019181,0.0000019163, -0.0000019164,0.0000019164,0.0000019117,0.0000019058,0.0000019037, -0.0000019015,0.0000018990,0.0000018947,0.0000018890,0.0000018832, -0.0000018763,0.0000018713,0.0000018697,0.0000018718,0.0000018768, -0.0000018823,0.0000018880,0.0000018940,0.0000018987,0.0000019024, -0.0000019041,0.0000019042,0.0000019042,0.0000019051,0.0000019058, -0.0000019055,0.0000019038,0.0000019010,0.0000018976,0.0000018942, -0.0000018905,0.0000018880,0.0000018860,0.0000018847,0.0000018868, -0.0000018902,0.0000018898,0.0000018908,0.0000018916,0.0000018917, -0.0000018902,0.0000018877,0.0000018857,0.0000018848,0.0000018849, -0.0000018860,0.0000018881,0.0000018912,0.0000018954,0.0000019000, -0.0000019047,0.0000019089,0.0000019114,0.0000019122,0.0000019121, -0.0000019104,0.0000019076,0.0000019053,0.0000019029,0.0000018989, -0.0000018942,0.0000018905,0.0000018883,0.0000018869,0.0000018861, -0.0000018865,0.0000018854,0.0000018825,0.0000018790,0.0000018752, -0.0000018722,0.0000018701,0.0000018693,0.0000018712,0.0000018739, -0.0000018757,0.0000018761,0.0000018757,0.0000018757,0.0000018779, -0.0000018848,0.0000018943,0.0000019027,0.0000019065,0.0000019058, -0.0000019037,0.0000019040,0.0000019070,0.0000019087,0.0000019065, -0.0000019021,0.0000018992,0.0000018994,0.0000019002,0.0000018991, -0.0000018951,0.0000018914,0.0000018890,0.0000018878,0.0000018886, -0.0000018918,0.0000018950,0.0000018934,0.0000018855,0.0000018783, -0.0000018757,0.0000018734,0.0000018697,0.0000018688,0.0000018683, -0.0000018682,0.0000018717,0.0000018767,0.0000018785,0.0000018762, -0.0000018704,0.0000018635,0.0000018542,0.0000018434,0.0000018367, -0.0000018369,0.0000018375,0.0000018359,0.0000018347,0.0000018348, -0.0000018378,0.0000018417,0.0000018431,0.0000018426,0.0000018433, -0.0000018435,0.0000018435,0.0000018461,0.0000018476,0.0000018435, -0.0000018344,0.0000018227,0.0000018118,0.0000018079,0.0000018091, -0.0000018089,0.0000018041,0.0000017958,0.0000017858,0.0000017762, -0.0000017697,0.0000017670,0.0000017665,0.0000017675,0.0000017673, -0.0000017654,0.0000017629,0.0000017609,0.0000017590,0.0000017554, -0.0000017497,0.0000017421,0.0000017293,0.0000017180,0.0000017111, -0.0000017103,0.0000017128,0.0000017149,0.0000017159,0.0000017127, -0.0000017058,0.0000016989,0.0000016949,0.0000016915,0.0000016908, -0.0000016926,0.0000016939,0.0000016931,0.0000016906,0.0000016880, -0.0000016866,0.0000016849,0.0000016822,0.0000016811,0.0000016823, -0.0000016844,0.0000016866,0.0000016872,0.0000016860,0.0000016838, -0.0000016815,0.0000016808,0.0000016809,0.0000016805,0.0000016794, -0.0000016780,0.0000016763,0.0000016751,0.0000016765,0.0000016811, -0.0000016871,0.0000016915,0.0000016915,0.0000016910,0.0000016924, -0.0000016881,0.0000016732,0.0000016716,0.0000016869,0.0000016924, -0.0000017009,0.0000017127,0.0000016898,0.0000016544,0.0000016468, -0.0000016470,0.0000016482,0.0000016506,0.0000016531,0.0000016540, -0.0000016522,0.0000016486,0.0000016446,0.0000016422,0.0000016417, -0.0000016426,0.0000016451,0.0000016493,0.0000016495,0.0000016424, -0.0000016326,0.0000016251,0.0000016248,0.0000016288,0.0000016325, -0.0000016342,0.0000016354,0.0000016356,0.0000016362,0.0000016367, -0.0000016389,0.0000016422,0.0000016459,0.0000016495,0.0000016527, -0.0000016555,0.0000016584,0.0000016614,0.0000016652,0.0000016677, -0.0000016655,0.0000016616,0.0000016612,0.0000016678,0.0000016773, -0.0000016843,0.0000016895,0.0000016935,0.0000016951,0.0000016933, -0.0000016918,0.0000017028,0.0000017370,0.0000017668,0.0000017689, -0.0000017545,0.0000017471,0.0000017494,0.0000017565,0.0000017668, -0.0000017807,0.0000017892,0.0000017902,0.0000017896,0.0000017918, -0.0000017929,0.0000017907,0.0000017837,0.0000017779,0.0000017763, -0.0000017778,0.0000017807,0.0000017838,0.0000017872,0.0000017913, -0.0000017967,0.0000018020,0.0000018041,0.0000018033,0.0000018016, -0.0000018029,0.0000017966,0.0000017908,0.0000017893,0.0000017927, -0.0000018005,0.0000018088,0.0000018158,0.0000018225,0.0000018279, -0.0000018280,0.0000018210,0.0000018114,0.0000018032,0.0000017973, -0.0000017917,0.0000017862,0.0000017821,0.0000017799,0.0000017805, -0.0000017808,0.0000017783,0.0000017776,0.0000017784,0.0000017794, -0.0000017793,0.0000017764,0.0000017771,0.0000017808,0.0000017785, -0.0000017804,0.0000017855,0.0000017852,0.0000017812,0.0000017823, -0.0000017932,0.0000018075,0.0000018209,0.0000018283,0.0000018445, -0.0000018654,0.0000018807,0.0000018836,0.0000018769,0.0000018727, -0.0000018704,0.0000018692,0.0000018751,0.0000018821,0.0000018831, -0.0000018811,0.0000018756,0.0000018670,0.0000018582,0.0000018535, -0.0000018524,0.0000018529,0.0000018532,0.0000018530,0.0000018523, -0.0000018512,0.0000018495,0.0000018466,0.0000018426,0.0000018392, -0.0000018374,0.0000018367,0.0000018391,0.0000018451,0.0000018544, -0.0000018662,0.0000018782,0.0000018882,0.0000018934,0.0000018947, -0.0000018941,0.0000018923,0.0000018920,0.0000018934,0.0000018914, -0.0000018860,0.0000018888,0.0000018996,0.0000018959,0.0000018720, -0.0000018445,0.0000018125,0.0000017908,0.0000017860,0.0000017858, -0.0000017764,0.0000017502,0.0000017218,0.0000017018,0.0000016889, -0.0000016795,0.0000016720,0.0000016663,0.0000016623,0.0000016596, -0.0000016581,0.0000016573,0.0000016564,0.0000016542,0.0000016496, -0.0000016440,0.0000016431,0.0000016503,0.0000016628,0.0000016705, -0.0000016715,0.0000016722,0.0000016762,0.0000016834,0.0000016929, -0.0000017044,0.0000017165,0.0000017275,0.0000017369,0.0000017395, -0.0000017434,0.0000017639,0.0000017831,0.0000017834,0.0000017846, -0.0000017947,0.0000018030,0.0000018056,0.0000018055,0.0000018055, -0.0000018070,0.0000018102,0.0000018145,0.0000018199,0.0000018266, -0.0000018331,0.0000018384,0.0000018429,0.0000018479,0.0000018515, -0.0000018540,0.0000018557,0.0000018617,0.0000018730,0.0000018821, -0.0000018790,0.0000018590,0.0000018404,0.0000018368,0.0000018432, -0.0000018466,0.0000018253,0.0000017806,0.0000017441,0.0000017383, -0.0000017428,0.0000017406,0.0000017279,0.0000017143,0.0000017115, -0.0000017246,0.0000017411,0.0000017429,0.0000017445,0.0000017436, -0.0000017403,0.0000017576,0.0000017765,0.0000017692,0.0000017673, -0.0000017654,0.0000017601,0.0000017536,0.0000017521,0.0000017659, -0.0000017906,0.0000018130,0.0000017997,0.0000017585,0.0000017422, -0.0000017431,0.0000017524,0.0000017731,0.0000017913,0.0000017927, -0.0000017880,0.0000018100,0.0000018824,0.0000019388,0.0000019461, -0.0000019365,0.0000019436,0.0000019647,0.0000019832,0.0000019901, -0.0000019878,0.0000019816,0.0000019700,0.0000019599,0.0000019535, -0.0000019530,0.0000019567,0.0000019648,0.0000019732,0.0000019762, -0.0000019772,0.0000019661,0.0000019506,0.0000019362,0.0000019262, -0.0000019151,0.0000018978,0.0000018868,0.0000019051,0.0000019475, -0.0000019805,0.0000019902,0.0000019883,0.0000019841,0.0000019821, -0.0000019824,0.0000019867,0.0000019955,0.0000019966,0.0000019714, -0.0000019275,0.0000019048,0.0000019064,0.0000019176,0.0000019503, -0.0000020006,0.0000020246,0.0000020253,0.0000019910,0.0000019493, -0.0000019694,0.0000020001,0.0000019904,0.0000019856,0.0000019590, -0.0000019407,0.0000019787,0.0000020048,0.0000019804,0.0000019438, -0.0000019383,0.0000019763,0.0000020130,0.0000020209,0.0000020201, -0.0000020114,0.0000019907,0.0000019792,0.0000019860,0.0000019987, -0.0000020056,0.0000020090,0.0000020100,0.0000020087,0.0000020033, -0.0000019941,0.0000019916,0.0000020022,0.0000020180,0.0000020227, -0.0000020198,0.0000020190,0.0000020248,0.0000020262,0.0000019959, -0.0000019117,0.0000018509,0.0000018471,0.0000018383,0.0000018230, -0.0000018344,0.0000018701,0.0000018822,0.0000018857,0.0000018823, -0.0000018592,0.0000018466,0.0000018486,0.0000018297,0.0000018027, -0.0000017844,0.0000017897,0.0000018076,0.0000018159,0.0000018316, -0.0000018343,0.0000018484,0.0000018586,0.0000018593,0.0000019127, -0.0000019614,0.0000019654,0.0000019471,0.0000019289,0.0000019127, -0.0000018962,0.0000018794,0.0000018609,0.0000018425,0.0000018293, -0.0000018248,0.0000018250,0.0000018408,0.0000018661,0.0000018919, -0.0000019083,0.0000019146,0.0000019139,0.0000019121,0.0000019084, -0.0000019038,0.0000019004,0.0000019000,0.0000019019,0.0000019034, -0.0000019008,0.0000018996,0.0000018979,0.0000018923,0.0000018867, -0.0000018795,0.0000018683,0.0000018553,0.0000018485,0.0000018482, -0.0000018494,0.0000018458,0.0000018401,0.0000018466,0.0000018743, -0.0000018773,0.0000018669,0.0000018616,0.0000018583,0.0000018494, -0.0000018376,0.0000018310,0.0000018333,0.0000018435,0.0000018548, -0.0000018607,0.0000018612,0.0000018632,0.0000018640,0.0000018658, -0.0000018664,0.0000018619,0.0000018571,0.0000018511,0.0000018525, -0.0000018602,0.0000018724,0.0000018876,0.0000019007,0.0000018989, -0.0000018944,0.0000018738,0.0000018480,0.0000018153,0.0000017816, -0.0000017511,0.0000017266,0.0000017081,0.0000016942,0.0000016842, -0.0000016771,0.0000016714,0.0000016671,0.0000016635,0.0000016609, -0.0000016591,0.0000016581,0.0000016579,0.0000016579,0.0000016577, -0.0000016578,0.0000016592,0.0000016624,0.0000016669,0.0000016718, -0.0000016766,0.0000016804,0.0000016834,0.0000016867,0.0000016906, -0.0000016932,0.0000016944,0.0000016957,0.0000016984,0.0000017038, -0.0000017128,0.0000017280,0.0000017531,0.0000017907,0.0000018342, -0.0000018698,0.0000018823,0.0000018720,0.0000018417,0.0000018023, -0.0000017728,0.0000017615,0.0000017585,0.0000017689,0.0000017818, -0.0000017941,0.0000018078,0.0000018198,0.0000018290,0.0000018297, -0.0000018269,0.0000018207,0.0000018129,0.0000018052,0.0000018017, -0.0000018017,0.0000018059,0.0000018211,0.0000018480,0.0000018844, -0.0000019210,0.0000019437,0.0000019434,0.0000019249,0.0000018962, -0.0000018745,0.0000018677,0.0000018689,0.0000018773,0.0000018856, -0.0000018914,0.0000018918,0.0000018809,0.0000018424,0.0000017759, -0.0000017188,0.0000017032,0.0000017150,0.0000017330,0.0000017431, -0.0000017534,0.0000017642,0.0000017681,0.0000017622,0.0000017450, -0.0000017319,0.0000017465,0.0000018085,0.0000018675,0.0000019142, -0.0000019469,0.0000019612,0.0000019652,0.0000019643,0.0000019603, -0.0000019530,0.0000019445,0.0000019379,0.0000019343,0.0000019330, -0.0000019336,0.0000019380,0.0000019443,0.0000019493,0.0000019526, -0.0000019554,0.0000019583,0.0000019609,0.0000019630,0.0000019650, -0.0000019673,0.0000019689,0.0000019695,0.0000019697,0.0000019698, -0.0000019703,0.0000019714,0.0000019731,0.0000019754,0.0000019786, -0.0000019824,0.0000019855,0.0000019880,0.0000019904,0.0000019936, -0.0000019966,0.0000019986,0.0000019997,0.0000019998,0.0000019982, -0.0000019948,0.0000019911,0.0000019886,0.0000019876,0.0000019878, -0.0000019892,0.0000019917,0.0000019948,0.0000019996,0.0000020045, -0.0000020085,0.0000020110,0.0000020104,0.0000020074,0.0000020030, -0.0000019929,0.0000019763,0.0000019667,0.0000019663,0.0000019657, -0.0000019669,0.0000019730,0.0000019741,0.0000019647,0.0000019555, -0.0000019513,0.0000019402,0.0000019193,0.0000019019,0.0000018927, -0.0000018913,0.0000018972,0.0000019035,0.0000019081,0.0000019145, -0.0000019187,0.0000019179,0.0000019175,0.0000019184,0.0000019151, -0.0000019091,0.0000019076,0.0000019077,0.0000019063,0.0000019025, -0.0000018956,0.0000018876,0.0000018793,0.0000018720,0.0000018677, -0.0000018671,0.0000018699,0.0000018742,0.0000018786,0.0000018830, -0.0000018875,0.0000018917,0.0000018955,0.0000018982,0.0000019004, -0.0000019033,0.0000019067,0.0000019083,0.0000019091,0.0000019085, -0.0000019065,0.0000019037,0.0000019014,0.0000018995,0.0000018970, -0.0000018949,0.0000018946,0.0000018946,0.0000018935,0.0000018916, -0.0000018898,0.0000018879,0.0000018851,0.0000018817,0.0000018790, -0.0000018776,0.0000018775,0.0000018783,0.0000018800,0.0000018830, -0.0000018874,0.0000018926,0.0000018975,0.0000019013,0.0000019034, -0.0000019032,0.0000019013,0.0000018982,0.0000018943,0.0000018913, -0.0000018887,0.0000018849,0.0000018809,0.0000018776,0.0000018754, -0.0000018738,0.0000018716,0.0000018699,0.0000018699,0.0000018687, -0.0000018669,0.0000018651,0.0000018639,0.0000018627,0.0000018616, -0.0000018620,0.0000018632,0.0000018631,0.0000018624,0.0000018618, -0.0000018629,0.0000018672,0.0000018746,0.0000018834,0.0000018916, -0.0000018962,0.0000018966,0.0000018964,0.0000018991,0.0000019042, -0.0000019070,0.0000019060,0.0000019022,0.0000018992,0.0000018986, -0.0000018996,0.0000018993,0.0000018973,0.0000018952,0.0000018925, -0.0000018892,0.0000018883,0.0000018918,0.0000018972,0.0000018972, -0.0000018886,0.0000018799,0.0000018771,0.0000018756,0.0000018726, -0.0000018718,0.0000018715,0.0000018695,0.0000018702,0.0000018746, -0.0000018778,0.0000018767,0.0000018722,0.0000018652,0.0000018544, -0.0000018424,0.0000018382,0.0000018388,0.0000018379,0.0000018380, -0.0000018386,0.0000018368,0.0000018369,0.0000018405,0.0000018424, -0.0000018421,0.0000018435,0.0000018441,0.0000018443,0.0000018466, -0.0000018477,0.0000018436,0.0000018335,0.0000018210,0.0000018115, -0.0000018103,0.0000018121,0.0000018122,0.0000018071,0.0000017984, -0.0000017893,0.0000017807,0.0000017752,0.0000017732,0.0000017725, -0.0000017718,0.0000017700,0.0000017670,0.0000017643,0.0000017628, -0.0000017616,0.0000017585,0.0000017517,0.0000017447,0.0000017339, -0.0000017216,0.0000017142,0.0000017112,0.0000017114,0.0000017135, -0.0000017163,0.0000017167,0.0000017126,0.0000017055,0.0000016977, -0.0000016922,0.0000016908,0.0000016913,0.0000016907,0.0000016880, -0.0000016852,0.0000016835,0.0000016820,0.0000016794,0.0000016771, -0.0000016771,0.0000016785,0.0000016807,0.0000016826,0.0000016824, -0.0000016802,0.0000016773,0.0000016760,0.0000016766,0.0000016777, -0.0000016780,0.0000016770,0.0000016753,0.0000016741,0.0000016747, -0.0000016780,0.0000016828,0.0000016883,0.0000016915,0.0000016913, -0.0000016918,0.0000016924,0.0000016831,0.0000016693,0.0000016754, -0.0000016892,0.0000016921,0.0000017051,0.0000017044,0.0000016708, -0.0000016498,0.0000016491,0.0000016489,0.0000016498,0.0000016508, -0.0000016504,0.0000016476,0.0000016428,0.0000016380,0.0000016357, -0.0000016358,0.0000016381,0.0000016418,0.0000016454,0.0000016441, -0.0000016363,0.0000016273,0.0000016188,0.0000016191,0.0000016227, -0.0000016212,0.0000016201,0.0000016211,0.0000016232,0.0000016253, -0.0000016267,0.0000016297,0.0000016320,0.0000016351,0.0000016392, -0.0000016439,0.0000016487,0.0000016535,0.0000016569,0.0000016591, -0.0000016606,0.0000016606,0.0000016590,0.0000016583,0.0000016612, -0.0000016685,0.0000016762,0.0000016810,0.0000016846,0.0000016887, -0.0000016920,0.0000016923,0.0000016916,0.0000017037,0.0000017396, -0.0000017690,0.0000017701,0.0000017555,0.0000017472,0.0000017477, -0.0000017546,0.0000017665,0.0000017801,0.0000017881,0.0000017878, -0.0000017854,0.0000017870,0.0000017907,0.0000017910,0.0000017882, -0.0000017847,0.0000017838,0.0000017858,0.0000017895,0.0000017937, -0.0000017973,0.0000018001,0.0000018018,0.0000018034,0.0000018051, -0.0000018056,0.0000018071,0.0000018009,0.0000017935,0.0000017899, -0.0000017917,0.0000017974,0.0000018045,0.0000018122,0.0000018188, -0.0000018248,0.0000018278,0.0000018254,0.0000018179,0.0000018099, -0.0000018035,0.0000017978,0.0000017901,0.0000017824,0.0000017789, -0.0000017798,0.0000017808,0.0000017786,0.0000017773,0.0000017757, -0.0000017770,0.0000017789,0.0000017774,0.0000017784,0.0000017814, -0.0000017793,0.0000017771,0.0000017811,0.0000017823,0.0000017790, -0.0000017793,0.0000017879,0.0000018024,0.0000018178,0.0000018254, -0.0000018391,0.0000018602,0.0000018772,0.0000018839,0.0000018791, -0.0000018752,0.0000018741,0.0000018717,0.0000018732,0.0000018804, -0.0000018844,0.0000018856,0.0000018851,0.0000018810,0.0000018734, -0.0000018642,0.0000018562,0.0000018510,0.0000018478,0.0000018457, -0.0000018436,0.0000018425,0.0000018416,0.0000018407,0.0000018403, -0.0000018415,0.0000018443,0.0000018492,0.0000018570,0.0000018671, -0.0000018767,0.0000018848,0.0000018904,0.0000018931,0.0000018941, -0.0000018944,0.0000018932,0.0000018922,0.0000018926,0.0000018928, -0.0000018894,0.0000018877,0.0000018959,0.0000019018,0.0000018888, -0.0000018621,0.0000018341,0.0000018050,0.0000017896,0.0000017876, -0.0000017869,0.0000017721,0.0000017406,0.0000017136,0.0000016983, -0.0000016895,0.0000016826,0.0000016767,0.0000016723,0.0000016693, -0.0000016672,0.0000016650,0.0000016616,0.0000016563,0.0000016500, -0.0000016456,0.0000016468,0.0000016564,0.0000016670,0.0000016719, -0.0000016737,0.0000016772,0.0000016825,0.0000016885,0.0000016958, -0.0000017061,0.0000017174,0.0000017280,0.0000017376,0.0000017389, -0.0000017383,0.0000017562,0.0000017806,0.0000017860,0.0000017842, -0.0000017906,0.0000017996,0.0000018042,0.0000018056,0.0000018066, -0.0000018083,0.0000018106,0.0000018139,0.0000018185,0.0000018242, -0.0000018307,0.0000018369,0.0000018418,0.0000018457,0.0000018494, -0.0000018528,0.0000018592,0.0000018693,0.0000018790,0.0000018806, -0.0000018691,0.0000018509,0.0000018408,0.0000018419,0.0000018461, -0.0000018389,0.0000018041,0.0000017597,0.0000017374,0.0000017391, -0.0000017436,0.0000017379,0.0000017228,0.0000017078,0.0000017055, -0.0000017210,0.0000017422,0.0000017463,0.0000017503,0.0000017461, -0.0000017397,0.0000017614,0.0000017758,0.0000017682,0.0000017668, -0.0000017640,0.0000017591,0.0000017538,0.0000017525,0.0000017726, -0.0000017973,0.0000018130,0.0000017804,0.0000017467,0.0000017425, -0.0000017477,0.0000017633,0.0000017845,0.0000017911,0.0000017850, -0.0000017950,0.0000018625,0.0000019314,0.0000019408,0.0000019348, -0.0000019452,0.0000019683,0.0000019873,0.0000019934,0.0000019887, -0.0000019711,0.0000019504,0.0000019349,0.0000019245,0.0000019183, -0.0000019168,0.0000019195,0.0000019294,0.0000019465,0.0000019659, -0.0000019792,0.0000019824,0.0000019829,0.0000019764,0.0000019700, -0.0000019619,0.0000019411,0.0000019094,0.0000018968,0.0000019193, -0.0000019636,0.0000019922,0.0000019991,0.0000019970,0.0000019928, -0.0000019919,0.0000019959,0.0000019997,0.0000019942,0.0000019697, -0.0000019327,0.0000019083,0.0000019060,0.0000019194,0.0000019657, -0.0000020144,0.0000020257,0.0000020148,0.0000019669,0.0000019537, -0.0000019972,0.0000019959,0.0000019886,0.0000019708,0.0000019448, -0.0000019647,0.0000020037,0.0000019903,0.0000019510,0.0000019347, -0.0000019686,0.0000020091,0.0000020206,0.0000020200,0.0000020148, -0.0000019984,0.0000019795,0.0000019774,0.0000019885,0.0000019981, -0.0000020031,0.0000020046,0.0000020035,0.0000019988,0.0000019933, -0.0000019931,0.0000020060,0.0000020200,0.0000020237,0.0000020219, -0.0000020208,0.0000020239,0.0000020255,0.0000020048,0.0000019270, -0.0000018555,0.0000018430,0.0000018418,0.0000018258,0.0000018369, -0.0000018737,0.0000018769,0.0000018690,0.0000018731,0.0000018699, -0.0000018578,0.0000018554,0.0000018357,0.0000018060,0.0000017870, -0.0000017917,0.0000018087,0.0000018168,0.0000018314,0.0000018340, -0.0000018504,0.0000018601,0.0000018579,0.0000019103,0.0000019525, -0.0000019294,0.0000018928,0.0000018672,0.0000018484,0.0000018337, -0.0000018226,0.0000018142,0.0000018121,0.0000018157,0.0000018260, -0.0000018456,0.0000018734,0.0000018990,0.0000019142,0.0000019184, -0.0000019170,0.0000019148,0.0000019124,0.0000019113,0.0000019094, -0.0000019064,0.0000019016,0.0000018976,0.0000018963,0.0000018957, -0.0000018968,0.0000018979,0.0000018999,0.0000019031,0.0000019062, -0.0000018929,0.0000018658,0.0000018478,0.0000018435,0.0000018421, -0.0000018406,0.0000018502,0.0000018760,0.0000018775,0.0000018674, -0.0000018647,0.0000018600,0.0000018471,0.0000018311,0.0000018230, -0.0000018262,0.0000018338,0.0000018425,0.0000018494,0.0000018541, -0.0000018591,0.0000018645,0.0000018659,0.0000018616,0.0000018563, -0.0000018483,0.0000018495,0.0000018576,0.0000018714,0.0000018875, -0.0000018988,0.0000018982,0.0000018855,0.0000018578,0.0000018194, -0.0000017791,0.0000017448,0.0000017186,0.0000016995,0.0000016863, -0.0000016771,0.0000016699,0.0000016635,0.0000016585,0.0000016555, -0.0000016535,0.0000016518,0.0000016500,0.0000016485,0.0000016475, -0.0000016470,0.0000016467,0.0000016465,0.0000016457,0.0000016444, -0.0000016436,0.0000016440,0.0000016459,0.0000016484,0.0000016514, -0.0000016544,0.0000016576,0.0000016610,0.0000016655,0.0000016706, -0.0000016747,0.0000016777,0.0000016800,0.0000016811,0.0000016817, -0.0000016834,0.0000016890,0.0000017072,0.0000017432,0.0000017930, -0.0000018437,0.0000018777,0.0000018847,0.0000018622,0.0000018256, -0.0000017907,0.0000017674,0.0000017566,0.0000017572,0.0000017523, -0.0000017595,0.0000017732,0.0000017889,0.0000018077,0.0000018211, -0.0000018294,0.0000018299,0.0000018208,0.0000018124,0.0000018043, -0.0000017997,0.0000017990,0.0000018044,0.0000018241,0.0000018599, -0.0000019037,0.0000019354,0.0000019395,0.0000019226,0.0000018918, -0.0000018698,0.0000018620,0.0000018603,0.0000018631,0.0000018643, -0.0000018568,0.0000018252,0.0000017677,0.0000017171,0.0000017080, -0.0000017183,0.0000017329,0.0000017384,0.0000017427,0.0000017525, -0.0000017634,0.0000017682,0.0000017638,0.0000017482,0.0000017356, -0.0000017473,0.0000018032,0.0000018557,0.0000018955,0.0000019280, -0.0000019409,0.0000019421,0.0000019404,0.0000019367,0.0000019304, -0.0000019229,0.0000019163,0.0000019129,0.0000019126,0.0000019166, -0.0000019246,0.0000019324,0.0000019376,0.0000019410,0.0000019430, -0.0000019444,0.0000019457,0.0000019475,0.0000019506,0.0000019550, -0.0000019592,0.0000019628,0.0000019655,0.0000019676,0.0000019694, -0.0000019709,0.0000019722,0.0000019734,0.0000019747,0.0000019762, -0.0000019769,0.0000019778,0.0000019797,0.0000019824,0.0000019845, -0.0000019855,0.0000019858,0.0000019849,0.0000019828,0.0000019807, -0.0000019799,0.0000019806,0.0000019825,0.0000019853,0.0000019888, -0.0000019924,0.0000019964,0.0000020009,0.0000020053,0.0000020084, -0.0000020080,0.0000020047,0.0000020006,0.0000019933,0.0000019786, -0.0000019658,0.0000019640,0.0000019648,0.0000019664,0.0000019726, -0.0000019821,0.0000019827,0.0000019724,0.0000019603,0.0000019504, -0.0000019344,0.0000019134,0.0000018990,0.0000018921,0.0000018929, -0.0000019012,0.0000019084,0.0000019130,0.0000019184,0.0000019205, -0.0000019186,0.0000019195,0.0000019210,0.0000019165,0.0000019113, -0.0000019109,0.0000019103,0.0000019083,0.0000019041,0.0000018980, -0.0000018903,0.0000018810,0.0000018725,0.0000018680,0.0000018676, -0.0000018694,0.0000018714,0.0000018732,0.0000018756,0.0000018783, -0.0000018825,0.0000018868,0.0000018907,0.0000018949,0.0000018996, -0.0000019034,0.0000019052,0.0000019053,0.0000019045,0.0000019037, -0.0000019039,0.0000019042,0.0000019050,0.0000019051,0.0000019059, -0.0000019070,0.0000019073,0.0000019062,0.0000019042,0.0000019018, -0.0000018996,0.0000018978,0.0000018968,0.0000018962,0.0000018962, -0.0000018970,0.0000018985,0.0000019005,0.0000019030,0.0000019061, -0.0000019094,0.0000019123,0.0000019140,0.0000019136,0.0000019113, -0.0000019072,0.0000019031,0.0000019005,0.0000018981,0.0000018946, -0.0000018906,0.0000018869,0.0000018833,0.0000018791,0.0000018749, -0.0000018720,0.0000018709,0.0000018690,0.0000018665,0.0000018645, -0.0000018631,0.0000018614,0.0000018590,0.0000018565,0.0000018537, -0.0000018524,0.0000018523,0.0000018544,0.0000018582,0.0000018639, -0.0000018712,0.0000018791,0.0000018865,0.0000018913,0.0000018936, -0.0000018956,0.0000018988,0.0000019030,0.0000019048,0.0000019037, -0.0000019008,0.0000018984,0.0000018979,0.0000018992,0.0000019001, -0.0000019004,0.0000018996,0.0000018960,0.0000018912,0.0000018894, -0.0000018931,0.0000018995,0.0000019001,0.0000018909,0.0000018817, -0.0000018789,0.0000018781,0.0000018758,0.0000018750,0.0000018746, -0.0000018710,0.0000018694,0.0000018728,0.0000018764,0.0000018761, -0.0000018722,0.0000018653,0.0000018536,0.0000018424,0.0000018399, -0.0000018398,0.0000018382,0.0000018406,0.0000018414,0.0000018371, -0.0000018350,0.0000018386,0.0000018410,0.0000018413,0.0000018433, -0.0000018443,0.0000018447,0.0000018463,0.0000018471,0.0000018428, -0.0000018320,0.0000018193,0.0000018118,0.0000018118,0.0000018134, -0.0000018133,0.0000018080,0.0000018005,0.0000017932,0.0000017860, -0.0000017806,0.0000017776,0.0000017760,0.0000017745,0.0000017721, -0.0000017690,0.0000017669,0.0000017654,0.0000017636,0.0000017600, -0.0000017528,0.0000017464,0.0000017373,0.0000017240,0.0000017166, -0.0000017130,0.0000017110,0.0000017103,0.0000017124,0.0000017155, -0.0000017155,0.0000017123,0.0000017058,0.0000017001,0.0000016973, -0.0000016951,0.0000016906,0.0000016857,0.0000016829,0.0000016815, -0.0000016783,0.0000016754,0.0000016745,0.0000016744,0.0000016753, -0.0000016770,0.0000016778,0.0000016765,0.0000016734,0.0000016715, -0.0000016722,0.0000016744,0.0000016765,0.0000016771,0.0000016758, -0.0000016746,0.0000016745,0.0000016767,0.0000016810,0.0000016854, -0.0000016894,0.0000016913,0.0000016914,0.0000016923,0.0000016906, -0.0000016768,0.0000016683,0.0000016803,0.0000016889,0.0000016935, -0.0000017058,0.0000016912,0.0000016604,0.0000016513,0.0000016503, -0.0000016489,0.0000016480,0.0000016464,0.0000016427,0.0000016374, -0.0000016327,0.0000016315,0.0000016330,0.0000016365,0.0000016399, -0.0000016422,0.0000016398,0.0000016324,0.0000016242,0.0000016151, -0.0000016137,0.0000016140,0.0000016114,0.0000016130,0.0000016171, -0.0000016208,0.0000016241,0.0000016265,0.0000016296,0.0000016316, -0.0000016329,0.0000016336,0.0000016338,0.0000016355,0.0000016393, -0.0000016443,0.0000016491,0.0000016524,0.0000016542,0.0000016557, -0.0000016572,0.0000016587,0.0000016618,0.0000016673,0.0000016730, -0.0000016765,0.0000016797,0.0000016849,0.0000016902,0.0000016919, -0.0000016916,0.0000017055,0.0000017428,0.0000017712,0.0000017711, -0.0000017554,0.0000017457,0.0000017457,0.0000017551,0.0000017675, -0.0000017792,0.0000017855,0.0000017839,0.0000017806,0.0000017824, -0.0000017877,0.0000017919,0.0000017929,0.0000017916,0.0000017910, -0.0000017927,0.0000017959,0.0000017989,0.0000018007,0.0000018011, -0.0000018024,0.0000018056,0.0000018083,0.0000018107,0.0000018056, -0.0000017971,0.0000017904,0.0000017905,0.0000017961,0.0000018018, -0.0000018086,0.0000018158,0.0000018205,0.0000018246,0.0000018255, -0.0000018209,0.0000018136,0.0000018071,0.0000018023,0.0000017956, -0.0000017851,0.0000017774,0.0000017779,0.0000017809,0.0000017787, -0.0000017774,0.0000017740,0.0000017746,0.0000017775,0.0000017779, -0.0000017791,0.0000017822,0.0000017807,0.0000017758,0.0000017761, -0.0000017777,0.0000017760,0.0000017765,0.0000017829,0.0000017964, -0.0000018142,0.0000018237,0.0000018345,0.0000018549,0.0000018733, -0.0000018831,0.0000018807,0.0000018768,0.0000018771,0.0000018755, -0.0000018740,0.0000018782,0.0000018840,0.0000018864,0.0000018887, -0.0000018896,0.0000018873,0.0000018817,0.0000018748,0.0000018677, -0.0000018611,0.0000018562,0.0000018530,0.0000018520,0.0000018528, -0.0000018551,0.0000018590,0.0000018640,0.0000018691,0.0000018745, -0.0000018801,0.0000018851,0.0000018889,0.0000018919,0.0000018930, -0.0000018929,0.0000018929,0.0000018928,0.0000018925,0.0000018930, -0.0000018932,0.0000018913,0.0000018887,0.0000018919,0.0000019017, -0.0000019002,0.0000018787,0.0000018514,0.0000018238,0.0000017987, -0.0000017890,0.0000017889,0.0000017867,0.0000017651,0.0000017323, -0.0000017112,0.0000017008,0.0000016937,0.0000016873,0.0000016819, -0.0000016783,0.0000016763,0.0000016736,0.0000016667,0.0000016576, -0.0000016504,0.0000016494,0.0000016550,0.0000016649,0.0000016720, -0.0000016749,0.0000016779,0.0000016829,0.0000016880,0.0000016926, -0.0000016988,0.0000017082,0.0000017182,0.0000017283,0.0000017383, -0.0000017395,0.0000017357,0.0000017461,0.0000017739,0.0000017877, -0.0000017865,0.0000017886,0.0000017967,0.0000018034,0.0000018063, -0.0000018080,0.0000018104,0.0000018131,0.0000018159,0.0000018195, -0.0000018240,0.0000018291,0.0000018344,0.0000018397,0.0000018449, -0.0000018508,0.0000018582,0.0000018677,0.0000018763,0.0000018792, -0.0000018732,0.0000018585,0.0000018459,0.0000018426,0.0000018458, -0.0000018444,0.0000018229,0.0000017803,0.0000017432,0.0000017356, -0.0000017407,0.0000017436,0.0000017368,0.0000017206,0.0000017040, -0.0000017033,0.0000017202,0.0000017439,0.0000017510,0.0000017570, -0.0000017477,0.0000017408,0.0000017672,0.0000017752,0.0000017673, -0.0000017661,0.0000017628,0.0000017593,0.0000017545,0.0000017548, -0.0000017802,0.0000018045,0.0000018081,0.0000017611,0.0000017430, -0.0000017460,0.0000017558,0.0000017760,0.0000017891,0.0000017854, -0.0000017835,0.0000018391,0.0000019186,0.0000019387,0.0000019314, -0.0000019427,0.0000019679,0.0000019887,0.0000019964,0.0000019881, -0.0000019630,0.0000019369,0.0000019242,0.0000019187,0.0000019150, -0.0000019090,0.0000019056,0.0000019026,0.0000019026,0.0000019114, -0.0000019327,0.0000019606,0.0000019799,0.0000019862,0.0000019852, -0.0000019820,0.0000019788,0.0000019725,0.0000019441,0.0000019080, -0.0000019040,0.0000019374,0.0000019793,0.0000020011,0.0000020051, -0.0000020029,0.0000020016,0.0000020028,0.0000020005,0.0000019909, -0.0000019719,0.0000019363,0.0000019087,0.0000019050,0.0000019317, -0.0000019927,0.0000020234,0.0000020220,0.0000019888,0.0000019532, -0.0000019814,0.0000020010,0.0000019904,0.0000019797,0.0000019491, -0.0000019514,0.0000019954,0.0000020000,0.0000019610,0.0000019406, -0.0000019608,0.0000020035,0.0000020188,0.0000020190,0.0000020167, -0.0000020055,0.0000019868,0.0000019751,0.0000019778,0.0000019871, -0.0000019945,0.0000019979,0.0000019973,0.0000019934,0.0000019916, -0.0000019974,0.0000020113,0.0000020223,0.0000020240,0.0000020229, -0.0000020219,0.0000020236,0.0000020249,0.0000020126,0.0000019424, -0.0000018636,0.0000018398,0.0000018457,0.0000018319,0.0000018362, -0.0000018741,0.0000018753,0.0000018580,0.0000018606,0.0000018709, -0.0000018663,0.0000018597,0.0000018422,0.0000018096,0.0000017894, -0.0000017925,0.0000018097,0.0000018177,0.0000018312,0.0000018335, -0.0000018515,0.0000018619,0.0000018574,0.0000018924,0.0000019156, -0.0000018775,0.0000018381,0.0000018191,0.0000018096,0.0000018048, -0.0000018066,0.0000018064,0.0000018128,0.0000018274,0.0000018494, -0.0000018767,0.0000019012,0.0000019167,0.0000019191,0.0000019187, -0.0000019156,0.0000019116,0.0000019083,0.0000019068,0.0000019071, -0.0000019083,0.0000019072,0.0000019039,0.0000018988,0.0000018931, -0.0000018880,0.0000018852,0.0000018865,0.0000018968,0.0000019108, -0.0000019041,0.0000018684,0.0000018445,0.0000018383,0.0000018383, -0.0000018515,0.0000018781,0.0000018775,0.0000018678,0.0000018660, -0.0000018608,0.0000018454,0.0000018267,0.0000018182,0.0000018198, -0.0000018276,0.0000018374,0.0000018471,0.0000018552,0.0000018629, -0.0000018647,0.0000018605,0.0000018532,0.0000018446,0.0000018471, -0.0000018539,0.0000018676,0.0000018844,0.0000018948,0.0000018952, -0.0000018771,0.0000018418,0.0000017987,0.0000017580,0.0000017252, -0.0000017024,0.0000016895,0.0000016811,0.0000016742,0.0000016685, -0.0000016626,0.0000016565,0.0000016500,0.0000016445,0.0000016410, -0.0000016388,0.0000016382,0.0000016380,0.0000016369,0.0000016349, -0.0000016333,0.0000016329,0.0000016322,0.0000016307,0.0000016303, -0.0000016304,0.0000016317,0.0000016351,0.0000016391,0.0000016414, -0.0000016416,0.0000016414,0.0000016420,0.0000016437,0.0000016486, -0.0000016559,0.0000016629,0.0000016703,0.0000016764,0.0000016795, -0.0000016790,0.0000016761,0.0000016752,0.0000016856,0.0000017121, -0.0000017584,0.0000018191,0.0000018693,0.0000018829,0.0000018743, -0.0000018463,0.0000018102,0.0000017819,0.0000017647,0.0000017542, -0.0000017470,0.0000017451,0.0000017405,0.0000017526,0.0000017719, -0.0000017977,0.0000018193,0.0000018312,0.0000018334,0.0000018217, -0.0000018086,0.0000018003,0.0000017989,0.0000018002,0.0000018137, -0.0000018450,0.0000018921,0.0000019308,0.0000019355,0.0000019154, -0.0000018842,0.0000018628,0.0000018543,0.0000018500,0.0000018439, -0.0000018214,0.0000017752,0.0000017323,0.0000017157,0.0000017246, -0.0000017362,0.0000017412,0.0000017431,0.0000017477,0.0000017564, -0.0000017656,0.0000017692,0.0000017660,0.0000017522,0.0000017391, -0.0000017445,0.0000017939,0.0000018468,0.0000018786,0.0000019055, -0.0000019179,0.0000019215,0.0000019229,0.0000019182,0.0000019052, -0.0000018882,0.0000018733,0.0000018674,0.0000018694,0.0000018822, -0.0000018993,0.0000019133,0.0000019226,0.0000019287,0.0000019322, -0.0000019342,0.0000019357,0.0000019377,0.0000019412,0.0000019456, -0.0000019497,0.0000019534,0.0000019570,0.0000019606,0.0000019645, -0.0000019679,0.0000019704,0.0000019718,0.0000019722,0.0000019710, -0.0000019686,0.0000019669,0.0000019675,0.0000019693,0.0000019707, -0.0000019716,0.0000019720,0.0000019720,0.0000019720,0.0000019728, -0.0000019752,0.0000019789,0.0000019830,0.0000019869,0.0000019904, -0.0000019936,0.0000019966,0.0000019996,0.0000020021,0.0000020026, -0.0000019999,0.0000019953,0.0000019878,0.0000019755,0.0000019647, -0.0000019624,0.0000019639,0.0000019665,0.0000019721,0.0000019811, -0.0000019881,0.0000019876,0.0000019783,0.0000019639,0.0000019471, -0.0000019277,0.0000019090,0.0000018980,0.0000018924,0.0000018954, -0.0000019055,0.0000019126,0.0000019164,0.0000019206,0.0000019214, -0.0000019192,0.0000019208,0.0000019237,0.0000019195,0.0000019133, -0.0000019120,0.0000019111,0.0000019097,0.0000019071,0.0000019027, -0.0000018949,0.0000018850,0.0000018773,0.0000018736,0.0000018721, -0.0000018712,0.0000018706,0.0000018691,0.0000018678,0.0000018695, -0.0000018731,0.0000018765,0.0000018805,0.0000018847,0.0000018885, -0.0000018911,0.0000018923,0.0000018931,0.0000018943,0.0000018967, -0.0000019001,0.0000019028,0.0000019047,0.0000019066,0.0000019091, -0.0000019109,0.0000019115,0.0000019110,0.0000019099,0.0000019091, -0.0000019091,0.0000019103,0.0000019116,0.0000019131,0.0000019147, -0.0000019163,0.0000019174,0.0000019188,0.0000019203,0.0000019223, -0.0000019253,0.0000019276,0.0000019282,0.0000019273,0.0000019255, -0.0000019250,0.0000019248,0.0000019245,0.0000019224,0.0000019194, -0.0000019164,0.0000019129,0.0000019081,0.0000019024,0.0000018971, -0.0000018926,0.0000018879,0.0000018828,0.0000018787,0.0000018742, -0.0000018693,0.0000018636,0.0000018582,0.0000018545,0.0000018530, -0.0000018544,0.0000018592,0.0000018654,0.0000018724,0.0000018797, -0.0000018866,0.0000018924,0.0000018969,0.0000019000,0.0000019017, -0.0000019025,0.0000019034,0.0000019032,0.0000019016,0.0000018999, -0.0000018985,0.0000018988,0.0000019005,0.0000019026,0.0000019040, -0.0000019028,0.0000018976,0.0000018928,0.0000018920,0.0000018966, -0.0000019026,0.0000019016,0.0000018915,0.0000018830,0.0000018811, -0.0000018808,0.0000018793,0.0000018784,0.0000018775,0.0000018725, -0.0000018688,0.0000018713,0.0000018748,0.0000018744,0.0000018712, -0.0000018639,0.0000018523,0.0000018434,0.0000018417,0.0000018401, -0.0000018388,0.0000018429,0.0000018431,0.0000018367,0.0000018336, -0.0000018365,0.0000018390,0.0000018398,0.0000018424,0.0000018440, -0.0000018444,0.0000018452,0.0000018457,0.0000018408,0.0000018291, -0.0000018170,0.0000018118,0.0000018123,0.0000018137,0.0000018129, -0.0000018086,0.0000018034,0.0000017977,0.0000017905,0.0000017837, -0.0000017800,0.0000017785,0.0000017768,0.0000017741,0.0000017711, -0.0000017688,0.0000017663,0.0000017638,0.0000017599,0.0000017530, -0.0000017468,0.0000017385,0.0000017248,0.0000017181,0.0000017149, -0.0000017108,0.0000017075,0.0000017067,0.0000017098,0.0000017137, -0.0000017144,0.0000017127,0.0000017094,0.0000017065,0.0000017015, -0.0000016936,0.0000016870,0.0000016841,0.0000016813,0.0000016770, -0.0000016745,0.0000016738,0.0000016730,0.0000016732,0.0000016739, -0.0000016733,0.0000016706,0.0000016683,0.0000016689,0.0000016717, -0.0000016753,0.0000016773,0.0000016770,0.0000016764,0.0000016763, -0.0000016773,0.0000016808,0.0000016846,0.0000016876,0.0000016905, -0.0000016915,0.0000016916,0.0000016918,0.0000016868,0.0000016710, -0.0000016694,0.0000016840,0.0000016874,0.0000016961,0.0000017020, -0.0000016796,0.0000016578,0.0000016522,0.0000016491,0.0000016456, -0.0000016429,0.0000016390,0.0000016337,0.0000016293,0.0000016289, -0.0000016315,0.0000016354,0.0000016383,0.0000016392,0.0000016363, -0.0000016298,0.0000016225,0.0000016136,0.0000016099,0.0000016073, -0.0000016074,0.0000016120,0.0000016175,0.0000016216,0.0000016253, -0.0000016283,0.0000016317,0.0000016344,0.0000016359,0.0000016358, -0.0000016352,0.0000016340,0.0000016326,0.0000016319,0.0000016333, -0.0000016360,0.0000016399,0.0000016455,0.0000016512,0.0000016548, -0.0000016567,0.0000016594,0.0000016641,0.0000016689,0.0000016718, -0.0000016754,0.0000016823,0.0000016896,0.0000016920,0.0000016924, -0.0000017085,0.0000017466,0.0000017732,0.0000017709,0.0000017541, -0.0000017436,0.0000017463,0.0000017575,0.0000017687,0.0000017775, -0.0000017812,0.0000017794,0.0000017774,0.0000017800,0.0000017875, -0.0000017944,0.0000017980,0.0000017991,0.0000017993,0.0000017998, -0.0000018005,0.0000018011,0.0000018012,0.0000018021,0.0000018057, -0.0000018099,0.0000018127,0.0000018091,0.0000018005,0.0000017920, -0.0000017900,0.0000017955,0.0000018019,0.0000018071,0.0000018138, -0.0000018182,0.0000018206,0.0000018229,0.0000018218,0.0000018159, -0.0000018088,0.0000018039,0.0000017989,0.0000017890,0.0000017777, -0.0000017749,0.0000017802,0.0000017790,0.0000017772,0.0000017732, -0.0000017722,0.0000017762,0.0000017775,0.0000017791,0.0000017826, -0.0000017818,0.0000017769,0.0000017722,0.0000017721,0.0000017717, -0.0000017736,0.0000017795,0.0000017908,0.0000018097,0.0000018225, -0.0000018313,0.0000018502,0.0000018689,0.0000018815,0.0000018812, -0.0000018775,0.0000018787,0.0000018792,0.0000018765,0.0000018770, -0.0000018826,0.0000018863,0.0000018888,0.0000018923,0.0000018952, -0.0000018956,0.0000018930,0.0000018885,0.0000018841,0.0000018806, -0.0000018783,0.0000018778,0.0000018792,0.0000018823,0.0000018855, -0.0000018877,0.0000018893,0.0000018904,0.0000018912,0.0000018918, -0.0000018924,0.0000018926,0.0000018920,0.0000018905,0.0000018901, -0.0000018912,0.0000018927,0.0000018938,0.0000018927,0.0000018902, -0.0000018906,0.0000018980,0.0000019033,0.0000018920,0.0000018659, -0.0000018406,0.0000018140,0.0000017941,0.0000017890,0.0000017902, -0.0000017848,0.0000017573,0.0000017283,0.0000017133,0.0000017036, -0.0000016947,0.0000016873,0.0000016828,0.0000016808,0.0000016775, -0.0000016697,0.0000016588,0.0000016532,0.0000016570,0.0000016660, -0.0000016737,0.0000016777,0.0000016803,0.0000016839,0.0000016881, -0.0000016920,0.0000016959,0.0000017019,0.0000017106,0.0000017192, -0.0000017288,0.0000017391,0.0000017399,0.0000017321,0.0000017356, -0.0000017619,0.0000017857,0.0000017895,0.0000017895,0.0000017951, -0.0000018035,0.0000018101,0.0000018140,0.0000018173,0.0000018210, -0.0000018245,0.0000018278,0.0000018317,0.0000018363,0.0000018413, -0.0000018464,0.0000018524,0.0000018594,0.0000018670,0.0000018734, -0.0000018766,0.0000018732,0.0000018629,0.0000018511,0.0000018454, -0.0000018452,0.0000018456,0.0000018343,0.0000018005,0.0000017583, -0.0000017351,0.0000017351,0.0000017407,0.0000017426,0.0000017366, -0.0000017196,0.0000017021,0.0000017023,0.0000017223,0.0000017470, -0.0000017577,0.0000017629,0.0000017478,0.0000017452,0.0000017716, -0.0000017730,0.0000017666,0.0000017648,0.0000017627,0.0000017608, -0.0000017552,0.0000017590,0.0000017881,0.0000018094,0.0000017932, -0.0000017473,0.0000017439,0.0000017520,0.0000017668,0.0000017859, -0.0000017870,0.0000017816,0.0000018138,0.0000018995,0.0000019431, -0.0000019290,0.0000019370,0.0000019641,0.0000019865,0.0000019996, -0.0000019920,0.0000019609,0.0000019337,0.0000019268,0.0000019271, -0.0000019270,0.0000019236,0.0000019184,0.0000019125,0.0000019066, -0.0000019014,0.0000018994,0.0000019051,0.0000019282,0.0000019618, -0.0000019845,0.0000019890,0.0000019841,0.0000019792,0.0000019780, -0.0000019693,0.0000019347,0.0000019054,0.0000019145,0.0000019536, -0.0000019899,0.0000020066,0.0000020097,0.0000020087,0.0000020059, -0.0000019995,0.0000019909,0.0000019717,0.0000019286,0.0000019027, -0.0000019086,0.0000019640,0.0000020173,0.0000020225,0.0000020035, -0.0000019626,0.0000019688,0.0000019978,0.0000019932,0.0000019848, -0.0000019592,0.0000019473,0.0000019817,0.0000020023,0.0000019727, -0.0000019427,0.0000019558,0.0000019961,0.0000020153,0.0000020177, -0.0000020171,0.0000020110,0.0000019967,0.0000019793,0.0000019726, -0.0000019758,0.0000019831,0.0000019883,0.0000019892,0.0000019881, -0.0000019901,0.0000020012,0.0000020167,0.0000020245,0.0000020242, -0.0000020233,0.0000020225,0.0000020228,0.0000020243,0.0000020179, -0.0000019571,0.0000018749,0.0000018403,0.0000018480,0.0000018378, -0.0000018361,0.0000018719,0.0000018769,0.0000018539,0.0000018509, -0.0000018658,0.0000018717,0.0000018656,0.0000018489,0.0000018143, -0.0000017921,0.0000017923,0.0000018099,0.0000018184,0.0000018311, -0.0000018332,0.0000018522,0.0000018637,0.0000018557,0.0000018862, -0.0000018795,0.0000018361,0.0000018106,0.0000018077,0.0000018065, -0.0000018063,0.0000018110,0.0000018207,0.0000018353,0.0000018570, -0.0000018820,0.0000019032,0.0000019161,0.0000019175,0.0000019181, -0.0000019151,0.0000019106,0.0000019051,0.0000019009,0.0000018990, -0.0000018983,0.0000019001,0.0000019043,0.0000019057,0.0000019029, -0.0000018957,0.0000018870,0.0000018830,0.0000018842,0.0000018935, -0.0000019126,0.0000019062,0.0000018668,0.0000018449,0.0000018429, -0.0000018553,0.0000018793,0.0000018775,0.0000018677,0.0000018663, -0.0000018617,0.0000018470,0.0000018259,0.0000018177,0.0000018193, -0.0000018288,0.0000018413,0.0000018526,0.0000018622,0.0000018634, -0.0000018596,0.0000018504,0.0000018412,0.0000018419,0.0000018467, -0.0000018615,0.0000018814,0.0000018921,0.0000018915,0.0000018718, -0.0000018337,0.0000017888,0.0000017467,0.0000017149,0.0000016969, -0.0000016867,0.0000016810,0.0000016763,0.0000016698,0.0000016609, -0.0000016523,0.0000016468,0.0000016442,0.0000016450,0.0000016452, -0.0000016483,0.0000016510,0.0000016531,0.0000016537,0.0000016522, -0.0000016485,0.0000016429,0.0000016373,0.0000016312,0.0000016260, -0.0000016215,0.0000016199,0.0000016191,0.0000016218,0.0000016272, -0.0000016327,0.0000016362,0.0000016369,0.0000016361,0.0000016325, -0.0000016310,0.0000016315,0.0000016356,0.0000016429,0.0000016544, -0.0000016669,0.0000016754,0.0000016756,0.0000016720,0.0000016715, -0.0000016780,0.0000016958,0.0000017379,0.0000018042,0.0000018632, -0.0000018863,0.0000018853,0.0000018591,0.0000018228,0.0000017911, -0.0000017727,0.0000017638,0.0000017546,0.0000017434,0.0000017345, -0.0000017362,0.0000017431,0.0000017679,0.0000017992,0.0000018265, -0.0000018352,0.0000018319,0.0000018159,0.0000018019,0.0000017994, -0.0000018007,0.0000018101,0.0000018396,0.0000018888,0.0000019265, -0.0000019317,0.0000019050,0.0000018742,0.0000018545,0.0000018463, -0.0000018330,0.0000017998,0.0000017569,0.0000017352,0.0000017375, -0.0000017446,0.0000017492,0.0000017525,0.0000017572,0.0000017660, -0.0000017755,0.0000017788,0.0000017746,0.0000017681,0.0000017571, -0.0000017415,0.0000017397,0.0000017792,0.0000018381,0.0000018707, -0.0000018911,0.0000019021,0.0000019051,0.0000018982,0.0000018755, -0.0000018432,0.0000018132,0.0000017929,0.0000017853,0.0000017901, -0.0000018103,0.0000018376,0.0000018631,0.0000018824,0.0000018967, -0.0000019067,0.0000019138,0.0000019192,0.0000019248,0.0000019313, -0.0000019376,0.0000019423,0.0000019452,0.0000019477,0.0000019509, -0.0000019555,0.0000019605,0.0000019650,0.0000019684,0.0000019698, -0.0000019685,0.0000019655,0.0000019633,0.0000019633,0.0000019646, -0.0000019661,0.0000019675,0.0000019679,0.0000019679,0.0000019685, -0.0000019701,0.0000019734,0.0000019777,0.0000019817,0.0000019850, -0.0000019879,0.0000019904,0.0000019923,0.0000019940,0.0000019945, -0.0000019925,0.0000019872,0.0000019790,0.0000019695,0.0000019636, -0.0000019630,0.0000019651,0.0000019683,0.0000019735,0.0000019808, -0.0000019868,0.0000019891,0.0000019884,0.0000019821,0.0000019648, -0.0000019424,0.0000019221,0.0000019071,0.0000018974,0.0000018928, -0.0000018987,0.0000019099,0.0000019160,0.0000019186,0.0000019218, -0.0000019217,0.0000019191,0.0000019209,0.0000019254,0.0000019227, -0.0000019156,0.0000019130,0.0000019126,0.0000019122,0.0000019106, -0.0000019060,0.0000018985,0.0000018910,0.0000018866,0.0000018836, -0.0000018796,0.0000018756,0.0000018719,0.0000018686,0.0000018673, -0.0000018687,0.0000018697,0.0000018705,0.0000018716,0.0000018729, -0.0000018738,0.0000018746,0.0000018759,0.0000018777,0.0000018804, -0.0000018842,0.0000018879,0.0000018906,0.0000018924,0.0000018944, -0.0000018964,0.0000018981,0.0000018995,0.0000019012,0.0000019030, -0.0000019047,0.0000019064,0.0000019081,0.0000019099,0.0000019119, -0.0000019137,0.0000019149,0.0000019158,0.0000019172,0.0000019190, -0.0000019208,0.0000019225,0.0000019241,0.0000019249,0.0000019249, -0.0000019256,0.0000019277,0.0000019293,0.0000019292,0.0000019285, -0.0000019276,0.0000019266,0.0000019254,0.0000019235,0.0000019220, -0.0000019183,0.0000019144,0.0000019101,0.0000019058,0.0000019000, -0.0000018927,0.0000018856,0.0000018792,0.0000018754,0.0000018754, -0.0000018796,0.0000018862,0.0000018930,0.0000018996,0.0000019051, -0.0000019089,0.0000019115,0.0000019129,0.0000019124,0.0000019103, -0.0000019073,0.0000019049,0.0000019033,0.0000019021,0.0000019013, -0.0000019016,0.0000019032,0.0000019049,0.0000019063,0.0000019059, -0.0000019023,0.0000018968,0.0000018943,0.0000018966,0.0000019029, -0.0000019061,0.0000019011,0.0000018902,0.0000018840,0.0000018835, -0.0000018837,0.0000018827,0.0000018814,0.0000018794,0.0000018732, -0.0000018682,0.0000018700,0.0000018733,0.0000018724,0.0000018687, -0.0000018616,0.0000018511,0.0000018454,0.0000018435,0.0000018401, -0.0000018399,0.0000018443,0.0000018433,0.0000018365,0.0000018332, -0.0000018342,0.0000018363,0.0000018374,0.0000018409,0.0000018434, -0.0000018432,0.0000018434,0.0000018437,0.0000018380,0.0000018252, -0.0000018148,0.0000018119,0.0000018126,0.0000018137,0.0000018130, -0.0000018101,0.0000018065,0.0000018009,0.0000017927,0.0000017853, -0.0000017819,0.0000017803,0.0000017776,0.0000017742,0.0000017712, -0.0000017681,0.0000017651,0.0000017625,0.0000017580,0.0000017514, -0.0000017455,0.0000017375,0.0000017241,0.0000017187,0.0000017161, -0.0000017099,0.0000017043,0.0000017012,0.0000017030,0.0000017085, -0.0000017136,0.0000017150,0.0000017148,0.0000017123,0.0000017064, -0.0000016976,0.0000016913,0.0000016878,0.0000016828,0.0000016774, -0.0000016750,0.0000016736,0.0000016725,0.0000016721,0.0000016717, -0.0000016698,0.0000016670,0.0000016669,0.0000016699,0.0000016746, -0.0000016778,0.0000016782,0.0000016781,0.0000016787,0.0000016795, -0.0000016818,0.0000016851,0.0000016875,0.0000016898,0.0000016917, -0.0000016920,0.0000016914,0.0000016907,0.0000016815,0.0000016673, -0.0000016734,0.0000016847,0.0000016862,0.0000016973,0.0000016958, -0.0000016731,0.0000016569,0.0000016505,0.0000016447,0.0000016400, -0.0000016358,0.0000016308,0.0000016275,0.0000016274,0.0000016306, -0.0000016347,0.0000016368,0.0000016365,0.0000016335,0.0000016278, -0.0000016211,0.0000016130,0.0000016085,0.0000016048,0.0000016057, -0.0000016113,0.0000016170,0.0000016215,0.0000016248,0.0000016274, -0.0000016301,0.0000016330,0.0000016351,0.0000016360,0.0000016367, -0.0000016366,0.0000016353,0.0000016336,0.0000016315,0.0000016302, -0.0000016293,0.0000016324,0.0000016389,0.0000016453,0.0000016494, -0.0000016520,0.0000016553,0.0000016599,0.0000016639,0.0000016671, -0.0000016724,0.0000016814,0.0000016899,0.0000016926,0.0000016937, -0.0000017121,0.0000017496,0.0000017735,0.0000017697,0.0000017525, -0.0000017440,0.0000017497,0.0000017604,0.0000017692,0.0000017743, -0.0000017759,0.0000017755,0.0000017762,0.0000017813,0.0000017896, -0.0000017977,0.0000018040,0.0000018078,0.0000018089,0.0000018087, -0.0000018077,0.0000018056,0.0000018047,0.0000018070,0.0000018112, -0.0000018135,0.0000018101,0.0000018021,0.0000017930,0.0000017900, -0.0000017952,0.0000018036,0.0000018082,0.0000018136,0.0000018174, -0.0000018180,0.0000018199,0.0000018207,0.0000018165,0.0000018092, -0.0000018041,0.0000018002,0.0000017919,0.0000017794,0.0000017723, -0.0000017782,0.0000017791,0.0000017766,0.0000017729,0.0000017695, -0.0000017749,0.0000017762,0.0000017783,0.0000017824,0.0000017818, -0.0000017791,0.0000017715,0.0000017669,0.0000017671,0.0000017703, -0.0000017773,0.0000017866,0.0000018052,0.0000018216,0.0000018295, -0.0000018465,0.0000018644,0.0000018780,0.0000018805,0.0000018777, -0.0000018793,0.0000018817,0.0000018798,0.0000018778,0.0000018812, -0.0000018857,0.0000018878,0.0000018908,0.0000018956,0.0000019002, -0.0000019030,0.0000019038,0.0000019031,0.0000019013,0.0000018992, -0.0000018978,0.0000018975,0.0000018980,0.0000018981,0.0000018976, -0.0000018973,0.0000018972,0.0000018968,0.0000018954,0.0000018927, -0.0000018896,0.0000018875,0.0000018869,0.0000018883,0.0000018910, -0.0000018929,0.0000018932,0.0000018917,0.0000018914,0.0000018959, -0.0000019026,0.0000019003,0.0000018783,0.0000018532,0.0000018300, -0.0000018054,0.0000017910,0.0000017892,0.0000017904,0.0000017807, -0.0000017514,0.0000017283,0.0000017144,0.0000017021,0.0000016926, -0.0000016871,0.0000016845,0.0000016801,0.0000016712,0.0000016630, -0.0000016622,0.0000016695,0.0000016772,0.0000016814,0.0000016840, -0.0000016871,0.0000016903,0.0000016929,0.0000016955,0.0000016992, -0.0000017053,0.0000017131,0.0000017202,0.0000017295,0.0000017401, -0.0000017411,0.0000017305,0.0000017259,0.0000017451,0.0000017768, -0.0000017913,0.0000017924,0.0000017957,0.0000018038,0.0000018132, -0.0000018205,0.0000018255,0.0000018293,0.0000018327,0.0000018362, -0.0000018395,0.0000018433,0.0000018484,0.0000018539,0.0000018592, -0.0000018649,0.0000018693,0.0000018722,0.0000018709,0.0000018649, -0.0000018552,0.0000018477,0.0000018459,0.0000018459,0.0000018395, -0.0000018163,0.0000017764,0.0000017413,0.0000017312,0.0000017337, -0.0000017385,0.0000017396,0.0000017353,0.0000017179,0.0000017009, -0.0000017026,0.0000017264,0.0000017522,0.0000017652,0.0000017649, -0.0000017479,0.0000017545,0.0000017768,0.0000017702,0.0000017661, -0.0000017635,0.0000017634,0.0000017628,0.0000017557,0.0000017656, -0.0000017959,0.0000018092,0.0000017719,0.0000017426,0.0000017486, -0.0000017599,0.0000017783,0.0000017886,0.0000017820,0.0000017897, -0.0000018736,0.0000019383,0.0000019335,0.0000019293,0.0000019580, -0.0000019825,0.0000019990,0.0000019985,0.0000019645,0.0000019356, -0.0000019323,0.0000019383,0.0000019376,0.0000019332,0.0000019291, -0.0000019252,0.0000019202,0.0000019143,0.0000019086,0.0000019039, -0.0000019018,0.0000019072,0.0000019314,0.0000019675,0.0000019892, -0.0000019904,0.0000019824,0.0000019764,0.0000019761,0.0000019616, -0.0000019231,0.0000019080,0.0000019279,0.0000019663,0.0000019976, -0.0000020103,0.0000020106,0.0000020061,0.0000019992,0.0000019854, -0.0000019500,0.0000019076,0.0000019004,0.0000019369,0.0000020033, -0.0000020230,0.0000020095,0.0000019769,0.0000019653,0.0000019947, -0.0000019955,0.0000019870,0.0000019653,0.0000019453,0.0000019737, -0.0000020012,0.0000019836,0.0000019518,0.0000019549,0.0000019880, -0.0000020096,0.0000020152,0.0000020165,0.0000020142,0.0000020058, -0.0000019911,0.0000019763,0.0000019711,0.0000019729,0.0000019778, -0.0000019808,0.0000019826,0.0000019894,0.0000020058,0.0000020218, -0.0000020262,0.0000020247,0.0000020234,0.0000020229,0.0000020224, -0.0000020237,0.0000020205,0.0000019694,0.0000018882,0.0000018424, -0.0000018461,0.0000018437,0.0000018383,0.0000018690,0.0000018768, -0.0000018538,0.0000018429,0.0000018556,0.0000018710,0.0000018712, -0.0000018567,0.0000018209,0.0000017952,0.0000017936,0.0000018105, -0.0000018195,0.0000018307,0.0000018324,0.0000018518,0.0000018655, -0.0000018543,0.0000018718,0.0000018549,0.0000018179,0.0000018111, -0.0000018106,0.0000018165,0.0000018250,0.0000018365,0.0000018523, -0.0000018714,0.0000018899,0.0000019052,0.0000019134,0.0000019161, -0.0000019151,0.0000019129,0.0000019096,0.0000019051,0.0000019004, -0.0000018970,0.0000018953,0.0000018938,0.0000018926,0.0000018959, -0.0000019016,0.0000019032,0.0000018980,0.0000018866,0.0000018801, -0.0000018829,0.0000018957,0.0000019153,0.0000019068,0.0000018701, -0.0000018568,0.0000018665,0.0000018854,0.0000018827,0.0000018702, -0.0000018682,0.0000018637,0.0000018523,0.0000018316,0.0000018212, -0.0000018256,0.0000018372,0.0000018507,0.0000018618,0.0000018626, -0.0000018594,0.0000018501,0.0000018399,0.0000018370,0.0000018385, -0.0000018517,0.0000018713,0.0000018903,0.0000018951,0.0000018746, -0.0000018337,0.0000017858,0.0000017402,0.0000017078,0.0000016916, -0.0000016847,0.0000016819,0.0000016769,0.0000016682,0.0000016597, -0.0000016532,0.0000016494,0.0000016499,0.0000016544,0.0000016598, -0.0000016640,0.0000016666,0.0000016670,0.0000016667,0.0000016670, -0.0000016674,0.0000016674,0.0000016657,0.0000016626,0.0000016587, -0.0000016497,0.0000016398,0.0000016312,0.0000016237,0.0000016184, -0.0000016165,0.0000016167,0.0000016204,0.0000016265,0.0000016325, -0.0000016364,0.0000016367,0.0000016323,0.0000016261,0.0000016215, -0.0000016212,0.0000016248,0.0000016377,0.0000016570,0.0000016695, -0.0000016702,0.0000016674,0.0000016697,0.0000016755,0.0000016899, -0.0000017336,0.0000018041,0.0000018639,0.0000018883,0.0000018857, -0.0000018645,0.0000018301,0.0000017945,0.0000017758,0.0000017699, -0.0000017644,0.0000017546,0.0000017427,0.0000017338,0.0000017348, -0.0000017437,0.0000017764,0.0000018169,0.0000018421,0.0000018403, -0.0000018195,0.0000018021,0.0000017987,0.0000018017,0.0000018111, -0.0000018420,0.0000018922,0.0000019265,0.0000019224,0.0000018931, -0.0000018621,0.0000018445,0.0000018265,0.0000017933,0.0000017623, -0.0000017554,0.0000017587,0.0000017622,0.0000017658,0.0000017726, -0.0000017864,0.0000018065,0.0000018186,0.0000018135,0.0000017894, -0.0000017703,0.0000017615,0.0000017470,0.0000017362,0.0000017587, -0.0000018195,0.0000018626,0.0000018781,0.0000018781,0.0000018633, -0.0000018333,0.0000017946,0.0000017622,0.0000017423,0.0000017273, -0.0000017201,0.0000017223,0.0000017349,0.0000017530,0.0000017775, -0.0000018002,0.0000018210,0.0000018374,0.0000018506,0.0000018618, -0.0000018742,0.0000018893,0.0000019054,0.0000019194,0.0000019301, -0.0000019371,0.0000019421,0.0000019472,0.0000019525,0.0000019576, -0.0000019626,0.0000019665,0.0000019684,0.0000019687,0.0000019682, -0.0000019686,0.0000019688,0.0000019688,0.0000019685,0.0000019677, -0.0000019670,0.0000019666,0.0000019681,0.0000019705,0.0000019731, -0.0000019751,0.0000019769,0.0000019788,0.0000019808,0.0000019824, -0.0000019830,0.0000019817,0.0000019770,0.0000019707,0.0000019667, -0.0000019656,0.0000019675,0.0000019705,0.0000019732,0.0000019766, -0.0000019818,0.0000019860,0.0000019868,0.0000019873,0.0000019886, -0.0000019821,0.0000019619,0.0000019379,0.0000019188,0.0000019068, -0.0000018970,0.0000018941,0.0000019022,0.0000019140,0.0000019189, -0.0000019202,0.0000019224,0.0000019215,0.0000019183,0.0000019196, -0.0000019259,0.0000019254,0.0000019183,0.0000019146,0.0000019147, -0.0000019150,0.0000019136,0.0000019086,0.0000019028,0.0000018992, -0.0000018971,0.0000018932,0.0000018877,0.0000018819,0.0000018772, -0.0000018749,0.0000018748,0.0000018745,0.0000018739,0.0000018720, -0.0000018695,0.0000018678,0.0000018655,0.0000018648,0.0000018652, -0.0000018664,0.0000018684,0.0000018699,0.0000018705,0.0000018705, -0.0000018707,0.0000018720,0.0000018742,0.0000018766,0.0000018792, -0.0000018818,0.0000018842,0.0000018860,0.0000018879,0.0000018900, -0.0000018923,0.0000018947,0.0000018975,0.0000019009,0.0000019048, -0.0000019089,0.0000019125,0.0000019154,0.0000019180,0.0000019198, -0.0000019206,0.0000019214,0.0000019229,0.0000019241,0.0000019240, -0.0000019234,0.0000019233,0.0000019236,0.0000019236,0.0000019230, -0.0000019226,0.0000019224,0.0000019223,0.0000019221,0.0000019220, -0.0000019210,0.0000019172,0.0000019129,0.0000019099,0.0000019095, -0.0000019123,0.0000019176,0.0000019230,0.0000019269,0.0000019290, -0.0000019296,0.0000019291,0.0000019274,0.0000019248,0.0000019209, -0.0000019156,0.0000019103,0.0000019070,0.0000019060,0.0000019061, -0.0000019069,0.0000019083,0.0000019098,0.0000019098,0.0000019078, -0.0000019033,0.0000018979,0.0000018953,0.0000018971,0.0000019035, -0.0000019091,0.0000019075,0.0000018979,0.0000018884,0.0000018854, -0.0000018859,0.0000018864,0.0000018852,0.0000018832,0.0000018795, -0.0000018725,0.0000018673,0.0000018688,0.0000018716,0.0000018697, -0.0000018646,0.0000018578,0.0000018505,0.0000018478,0.0000018450, -0.0000018407,0.0000018417,0.0000018449,0.0000018423,0.0000018366, -0.0000018330,0.0000018320,0.0000018335,0.0000018348,0.0000018393, -0.0000018429,0.0000018415,0.0000018412,0.0000018412,0.0000018341, -0.0000018221,0.0000018145,0.0000018125,0.0000018135,0.0000018146, -0.0000018143,0.0000018121,0.0000018080,0.0000018014,0.0000017929, -0.0000017861,0.0000017825,0.0000017798,0.0000017766,0.0000017737, -0.0000017707,0.0000017669,0.0000017635,0.0000017598,0.0000017543, -0.0000017481,0.0000017436,0.0000017346,0.0000017224,0.0000017189, -0.0000017163,0.0000017076,0.0000017006,0.0000016972,0.0000016976, -0.0000017035,0.0000017106,0.0000017144,0.0000017149,0.0000017126, -0.0000017078,0.0000017005,0.0000016952,0.0000016905,0.0000016838, -0.0000016782,0.0000016752,0.0000016731,0.0000016722,0.0000016717, -0.0000016705,0.0000016679,0.0000016665,0.0000016687,0.0000016740, -0.0000016786,0.0000016795,0.0000016797,0.0000016808,0.0000016819, -0.0000016834,0.0000016860,0.0000016882,0.0000016897,0.0000016915, -0.0000016928,0.0000016922,0.0000016905,0.0000016877,0.0000016751, -0.0000016666,0.0000016778,0.0000016836,0.0000016857,0.0000016968, -0.0000016905,0.0000016691,0.0000016546,0.0000016456,0.0000016385, -0.0000016334,0.0000016287,0.0000016259,0.0000016263,0.0000016299, -0.0000016350,0.0000016369,0.0000016349,0.0000016313,0.0000016260, -0.0000016201,0.0000016129,0.0000016089,0.0000016040,0.0000016033, -0.0000016095,0.0000016156,0.0000016196,0.0000016219,0.0000016235, -0.0000016255,0.0000016282,0.0000016308,0.0000016325,0.0000016335, -0.0000016339,0.0000016335,0.0000016339,0.0000016347,0.0000016347, -0.0000016334,0.0000016319,0.0000016336,0.0000016364,0.0000016405, -0.0000016444,0.0000016475,0.0000016506,0.0000016547,0.0000016593, -0.0000016641,0.0000016713,0.0000016813,0.0000016902,0.0000016931, -0.0000016952,0.0000017143,0.0000017510,0.0000017730,0.0000017677, -0.0000017523,0.0000017481,0.0000017534,0.0000017625,0.0000017685, -0.0000017701,0.0000017704,0.0000017719,0.0000017767,0.0000017843, -0.0000017926,0.0000018013,0.0000018090,0.0000018142,0.0000018159, -0.0000018154,0.0000018124,0.0000018092,0.0000018093,0.0000018122, -0.0000018120,0.0000018081,0.0000018015,0.0000017939,0.0000017908, -0.0000017962,0.0000018062,0.0000018113,0.0000018151,0.0000018174, -0.0000018167,0.0000018174,0.0000018189,0.0000018158,0.0000018082, -0.0000018030,0.0000018003,0.0000017937,0.0000017813,0.0000017709, -0.0000017754,0.0000017787,0.0000017758,0.0000017725,0.0000017675, -0.0000017730,0.0000017746,0.0000017766,0.0000017822,0.0000017814, -0.0000017806,0.0000017733,0.0000017641,0.0000017630,0.0000017672, -0.0000017755,0.0000017840,0.0000018018,0.0000018206,0.0000018287, -0.0000018437,0.0000018601,0.0000018737,0.0000018785,0.0000018772, -0.0000018793,0.0000018827,0.0000018822,0.0000018797,0.0000018805, -0.0000018846,0.0000018871,0.0000018883,0.0000018914,0.0000018970, -0.0000019024,0.0000019058,0.0000019071,0.0000019070,0.0000019059, -0.0000019047,0.0000019035,0.0000019031,0.0000019032,0.0000019034, -0.0000019030,0.0000019010,0.0000018978,0.0000018931,0.0000018881, -0.0000018850,0.0000018845,0.0000018855,0.0000018878,0.0000018905, -0.0000018921,0.0000018925,0.0000018926,0.0000018958,0.0000019009, -0.0000019020,0.0000018884,0.0000018623,0.0000018415,0.0000018195, -0.0000017986,0.0000017891,0.0000017891,0.0000017892,0.0000017754, -0.0000017484,0.0000017287,0.0000017121,0.0000016990,0.0000016927, -0.0000016899,0.0000016838,0.0000016748,0.0000016698,0.0000016749, -0.0000016828,0.0000016870,0.0000016879,0.0000016901,0.0000016935, -0.0000016960,0.0000016976,0.0000016995,0.0000017028,0.0000017085, -0.0000017152,0.0000017213,0.0000017304,0.0000017412,0.0000017423, -0.0000017309,0.0000017198,0.0000017268,0.0000017586,0.0000017861, -0.0000017937,0.0000017972,0.0000018041,0.0000018136,0.0000018225, -0.0000018285,0.0000018319,0.0000018342,0.0000018365,0.0000018396, -0.0000018427,0.0000018469,0.0000018525,0.0000018582,0.0000018630, -0.0000018664,0.0000018670,0.0000018645,0.0000018584,0.0000018514, -0.0000018473,0.0000018462,0.0000018420,0.0000018257,0.0000017933, -0.0000017549,0.0000017320,0.0000017298,0.0000017311,0.0000017337, -0.0000017354,0.0000017326,0.0000017140,0.0000016982,0.0000017039, -0.0000017328,0.0000017596,0.0000017718,0.0000017643,0.0000017500, -0.0000017659,0.0000017768,0.0000017679,0.0000017655,0.0000017633, -0.0000017654,0.0000017633,0.0000017567,0.0000017749,0.0000018012, -0.0000018037,0.0000017532,0.0000017436,0.0000017556,0.0000017692, -0.0000017869,0.0000017854,0.0000017812,0.0000018350,0.0000019242, -0.0000019414,0.0000019235,0.0000019488,0.0000019778,0.0000019956, -0.0000020023,0.0000019753,0.0000019372,0.0000019381,0.0000019464, -0.0000019423,0.0000019375,0.0000019357,0.0000019361,0.0000019356, -0.0000019325,0.0000019261,0.0000019178,0.0000019099,0.0000019062, -0.0000019064,0.0000019131,0.0000019398,0.0000019759,0.0000019928, -0.0000019894,0.0000019784,0.0000019754,0.0000019771,0.0000019502, -0.0000019172,0.0000019165,0.0000019383,0.0000019727,0.0000019972, -0.0000020019,0.0000019972,0.0000019814,0.0000019504,0.0000019136, -0.0000018984,0.0000019208,0.0000019837,0.0000020200,0.0000020143, -0.0000019868,0.0000019676,0.0000019872,0.0000019968,0.0000019871, -0.0000019703,0.0000019458,0.0000019624,0.0000020008,0.0000019931, -0.0000019599,0.0000019551,0.0000019807,0.0000020035,0.0000020109, -0.0000020144,0.0000020149,0.0000020117,0.0000020031,0.0000019893, -0.0000019755,0.0000019701,0.0000019709,0.0000019742,0.0000019793, -0.0000019915,0.0000020108,0.0000020259,0.0000020283,0.0000020250, -0.0000020235,0.0000020230,0.0000020218,0.0000020229,0.0000020211, -0.0000019791,0.0000019016,0.0000018470,0.0000018416,0.0000018459, -0.0000018378,0.0000018637,0.0000018824,0.0000018585,0.0000018397, -0.0000018442,0.0000018624,0.0000018703,0.0000018630,0.0000018293, -0.0000017978,0.0000017951,0.0000018117,0.0000018218,0.0000018314, -0.0000018309,0.0000018489,0.0000018658,0.0000018526,0.0000018585, -0.0000018367,0.0000018157,0.0000018140,0.0000018269,0.0000018450, -0.0000018621,0.0000018778,0.0000018903,0.0000019001,0.0000019082, -0.0000019094,0.0000019120,0.0000019118,0.0000019102,0.0000019073, -0.0000019040,0.0000019012,0.0000018988,0.0000018958,0.0000018933, -0.0000018911,0.0000018888,0.0000018883,0.0000018941,0.0000018997, -0.0000018979,0.0000018866,0.0000018780,0.0000018817,0.0000018981, -0.0000019188,0.0000019119,0.0000018851,0.0000018847,0.0000018956, -0.0000018912,0.0000018755,0.0000018724,0.0000018674,0.0000018590, -0.0000018407,0.0000018279,0.0000018342,0.0000018488,0.0000018622, -0.0000018647,0.0000018623,0.0000018521,0.0000018406,0.0000018319, -0.0000018314,0.0000018411,0.0000018596,0.0000018812,0.0000018867, -0.0000018824,0.0000018465,0.0000017940,0.0000017418,0.0000017055, -0.0000016880,0.0000016818,0.0000016792,0.0000016745,0.0000016672, -0.0000016589,0.0000016550,0.0000016558,0.0000016576,0.0000016631, -0.0000016682,0.0000016685,0.0000016658,0.0000016639,0.0000016570, -0.0000016498,0.0000016437,0.0000016406,0.0000016404,0.0000016414, -0.0000016442,0.0000016477,0.0000016508,0.0000016496,0.0000016448, -0.0000016385,0.0000016307,0.0000016249,0.0000016214,0.0000016193, -0.0000016186,0.0000016198,0.0000016227,0.0000016287,0.0000016356, -0.0000016390,0.0000016352,0.0000016276,0.0000016198,0.0000016140, -0.0000016146,0.0000016298,0.0000016533,0.0000016659,0.0000016638, -0.0000016624,0.0000016683,0.0000016747,0.0000016923,0.0000017436, -0.0000018144,0.0000018649,0.0000018823,0.0000018791,0.0000018666, -0.0000018296,0.0000017923,0.0000017758,0.0000017729,0.0000017695, -0.0000017635,0.0000017543,0.0000017401,0.0000017276,0.0000017296, -0.0000017616,0.0000018104,0.0000018425,0.0000018418,0.0000018180, -0.0000018003,0.0000017990,0.0000018038,0.0000018154,0.0000018490, -0.0000018983,0.0000019255,0.0000019121,0.0000018800,0.0000018486, -0.0000018234,0.0000017962,0.0000017778,0.0000017748,0.0000017770, -0.0000017823,0.0000017937,0.0000018137,0.0000018409,0.0000018652, -0.0000018733,0.0000018611,0.0000018165,0.0000017751,0.0000017640, -0.0000017532,0.0000017364,0.0000017381,0.0000017829,0.0000018273, -0.0000018355,0.0000018181,0.0000017855,0.0000017544,0.0000017355, -0.0000017322,0.0000017294,0.0000017248,0.0000017197,0.0000017152, -0.0000017103,0.0000017135,0.0000017141,0.0000017275,0.0000017411, -0.0000017514,0.0000017632,0.0000017752,0.0000017881,0.0000018051, -0.0000018276,0.0000018536,0.0000018776,0.0000018990,0.0000019168, -0.0000019315,0.0000019422,0.0000019496,0.0000019554,0.0000019605, -0.0000019653,0.0000019694,0.0000019731,0.0000019769,0.0000019776, -0.0000019762,0.0000019734,0.0000019701,0.0000019673,0.0000019662, -0.0000019668,0.0000019675,0.0000019673,0.0000019672,0.0000019675, -0.0000019686,0.0000019702,0.0000019716,0.0000019725,0.0000019721, -0.0000019701,0.0000019705,0.0000019733,0.0000019766,0.0000019790, -0.0000019802,0.0000019814,0.0000019837,0.0000019854,0.0000019847, -0.0000019835,0.0000019852,0.0000019862,0.0000019767,0.0000019567, -0.0000019338,0.0000019180,0.0000019076,0.0000018982,0.0000018970, -0.0000019062,0.0000019177,0.0000019213,0.0000019215,0.0000019226, -0.0000019211,0.0000019171,0.0000019177,0.0000019244,0.0000019272, -0.0000019212,0.0000019170,0.0000019172,0.0000019179,0.0000019164, -0.0000019116,0.0000019081,0.0000019074,0.0000019056,0.0000019011, -0.0000018951,0.0000018888,0.0000018846,0.0000018831,0.0000018828, -0.0000018827,0.0000018812,0.0000018775,0.0000018730,0.0000018701, -0.0000018688,0.0000018679,0.0000018677,0.0000018680,0.0000018673, -0.0000018657,0.0000018640,0.0000018629,0.0000018634,0.0000018652, -0.0000018670,0.0000018683,0.0000018698,0.0000018710,0.0000018715, -0.0000018701,0.0000018690,0.0000018691,0.0000018705,0.0000018736, -0.0000018782,0.0000018837,0.0000018903,0.0000018975,0.0000019041, -0.0000019093,0.0000019134,0.0000019167,0.0000019193,0.0000019210, -0.0000019211,0.0000019200,0.0000019185,0.0000019175,0.0000019176, -0.0000019177,0.0000019171,0.0000019165,0.0000019169,0.0000019183, -0.0000019193,0.0000019202,0.0000019205,0.0000019201,0.0000019198, -0.0000019216,0.0000019262,0.0000019314,0.0000019354,0.0000019383, -0.0000019390,0.0000019385,0.0000019368,0.0000019345,0.0000019315, -0.0000019282,0.0000019237,0.0000019178,0.0000019124,0.0000019100, -0.0000019101,0.0000019113,0.0000019128,0.0000019131,0.0000019128, -0.0000019096,0.0000019033,0.0000018965,0.0000018939,0.0000018963, -0.0000019034,0.0000019100,0.0000019103,0.0000019033,0.0000018938, -0.0000018885,0.0000018878,0.0000018882,0.0000018883,0.0000018864, -0.0000018831,0.0000018777,0.0000018705,0.0000018663,0.0000018675, -0.0000018691,0.0000018658,0.0000018592,0.0000018539,0.0000018506, -0.0000018497,0.0000018461,0.0000018423,0.0000018436,0.0000018447, -0.0000018411,0.0000018369,0.0000018331,0.0000018310,0.0000018316, -0.0000018327,0.0000018379,0.0000018424,0.0000018400,0.0000018391, -0.0000018383,0.0000018301,0.0000018204,0.0000018154,0.0000018142, -0.0000018153,0.0000018167,0.0000018164,0.0000018132,0.0000018076, -0.0000018002,0.0000017918,0.0000017853,0.0000017817,0.0000017787, -0.0000017764,0.0000017743,0.0000017705,0.0000017657,0.0000017606, -0.0000017551,0.0000017487,0.0000017444,0.0000017407,0.0000017303, -0.0000017205,0.0000017193,0.0000017153,0.0000017042,0.0000016970, -0.0000016943,0.0000016947,0.0000016999,0.0000017063,0.0000017106, -0.0000017115,0.0000017099,0.0000017058,0.0000017000,0.0000016952, -0.0000016893,0.0000016824,0.0000016773,0.0000016738,0.0000016724, -0.0000016721,0.0000016718,0.0000016703,0.0000016682,0.0000016686, -0.0000016731,0.0000016785,0.0000016806,0.0000016809,0.0000016820, -0.0000016829,0.0000016838,0.0000016860,0.0000016884,0.0000016898, -0.0000016909,0.0000016925,0.0000016931,0.0000016911,0.0000016888, -0.0000016831,0.0000016683,0.0000016677,0.0000016809,0.0000016811, -0.0000016856,0.0000016945,0.0000016854,0.0000016657,0.0000016499, -0.0000016391,0.0000016325,0.0000016282,0.0000016252,0.0000016254, -0.0000016285,0.0000016341,0.0000016370,0.0000016346,0.0000016299, -0.0000016247,0.0000016193,0.0000016131,0.0000016096,0.0000016052, -0.0000016019,0.0000016069,0.0000016137,0.0000016165,0.0000016178, -0.0000016195,0.0000016217,0.0000016253,0.0000016297,0.0000016322, -0.0000016336,0.0000016338,0.0000016322,0.0000016309,0.0000016317, -0.0000016345,0.0000016374,0.0000016388,0.0000016387,0.0000016376, -0.0000016386,0.0000016398,0.0000016423,0.0000016443,0.0000016468, -0.0000016515,0.0000016576,0.0000016633,0.0000016708,0.0000016813, -0.0000016906,0.0000016932,0.0000016957,0.0000017155,0.0000017511, -0.0000017716,0.0000017665,0.0000017554,0.0000017515,0.0000017557, -0.0000017627,0.0000017663,0.0000017659,0.0000017659,0.0000017694, -0.0000017770,0.0000017859,0.0000017952,0.0000018040,0.0000018110, -0.0000018152,0.0000018161,0.0000018151,0.0000018119,0.0000018107, -0.0000018120,0.0000018080,0.0000018046,0.0000018002,0.0000017949, -0.0000017932,0.0000017993,0.0000018096,0.0000018149,0.0000018169, -0.0000018174,0.0000018158,0.0000018157,0.0000018170,0.0000018140, -0.0000018060,0.0000018005,0.0000017991,0.0000017944,0.0000017832, -0.0000017712,0.0000017725,0.0000017775,0.0000017750,0.0000017717, -0.0000017656,0.0000017704,0.0000017732,0.0000017742,0.0000017810, -0.0000017808,0.0000017807,0.0000017758,0.0000017639,0.0000017604, -0.0000017644,0.0000017736,0.0000017824,0.0000017996,0.0000018199, -0.0000018290,0.0000018419,0.0000018562,0.0000018694,0.0000018763, -0.0000018762,0.0000018788,0.0000018827,0.0000018830,0.0000018810, -0.0000018805,0.0000018835,0.0000018862,0.0000018874,0.0000018886, -0.0000018915,0.0000018956,0.0000019005,0.0000019043,0.0000019059, -0.0000019060,0.0000019063,0.0000019066,0.0000019065,0.0000019061, -0.0000019047,0.0000019016,0.0000018971,0.0000018926,0.0000018889, -0.0000018859,0.0000018845,0.0000018845,0.0000018855,0.0000018876, -0.0000018902,0.0000018925,0.0000018941,0.0000018962,0.0000018995, -0.0000019007,0.0000018919,0.0000018692,0.0000018471,0.0000018304, -0.0000018098,0.0000017941,0.0000017884,0.0000017882,0.0000017870, -0.0000017704,0.0000017470,0.0000017273,0.0000017074,0.0000016964, -0.0000016940,0.0000016891,0.0000016803,0.0000016791,0.0000016873, -0.0000016938,0.0000016942,0.0000016934,0.0000016952,0.0000016983, -0.0000017006,0.0000017024,0.0000017042,0.0000017067,0.0000017113, -0.0000017167,0.0000017222,0.0000017315,0.0000017422,0.0000017434, -0.0000017328,0.0000017166,0.0000017114,0.0000017327,0.0000017707, -0.0000017903,0.0000017967,0.0000018033,0.0000018119,0.0000018204, -0.0000018269,0.0000018302,0.0000018315,0.0000018325,0.0000018341, -0.0000018368,0.0000018408,0.0000018460,0.0000018518,0.0000018569, -0.0000018600,0.0000018605,0.0000018583,0.0000018537,0.0000018489, -0.0000018456,0.0000018410,0.0000018293,0.0000018050,0.0000017697, -0.0000017398,0.0000017302,0.0000017290,0.0000017287,0.0000017299, -0.0000017323,0.0000017288,0.0000017078,0.0000016949,0.0000017082, -0.0000017425,0.0000017680,0.0000017736,0.0000017609,0.0000017563, -0.0000017759,0.0000017750,0.0000017664,0.0000017640,0.0000017640, -0.0000017670,0.0000017617,0.0000017592,0.0000017857,0.0000018040, -0.0000017889,0.0000017428,0.0000017497,0.0000017632,0.0000017785, -0.0000017895,0.0000017830,0.0000017980,0.0000018979,0.0000019434, -0.0000019273,0.0000019330,0.0000019708,0.0000019920,0.0000020039, -0.0000019913,0.0000019451,0.0000019388,0.0000019540,0.0000019467, -0.0000019393,0.0000019419,0.0000019451,0.0000019468,0.0000019466, -0.0000019452,0.0000019418,0.0000019343,0.0000019210,0.0000019096, -0.0000019078,0.0000019118,0.0000019221,0.0000019532,0.0000019860, -0.0000019942,0.0000019846,0.0000019752,0.0000019798,0.0000019755, -0.0000019397,0.0000019192,0.0000019225,0.0000019400,0.0000019611, -0.0000019657,0.0000019560,0.0000019349,0.0000019141,0.0000019047, -0.0000019197,0.0000019693,0.0000020143,0.0000020181,0.0000019952, -0.0000019745,0.0000019822,0.0000019971,0.0000019881,0.0000019729, -0.0000019475,0.0000019540,0.0000019926,0.0000019983,0.0000019683, -0.0000019555,0.0000019743,0.0000019969,0.0000020060,0.0000020107, -0.0000020144,0.0000020145,0.0000020112,0.0000020036,0.0000019902, -0.0000019769,0.0000019714,0.0000019726,0.0000019805,0.0000019961, -0.0000020157,0.0000020285,0.0000020298,0.0000020259,0.0000020234, -0.0000020227,0.0000020213,0.0000020223,0.0000020220,0.0000019883, -0.0000019151,0.0000018535,0.0000018385,0.0000018483,0.0000018405, -0.0000018521,0.0000018827,0.0000018697,0.0000018430,0.0000018399, -0.0000018517,0.0000018665,0.0000018663,0.0000018393,0.0000018032, -0.0000017943,0.0000018115,0.0000018241,0.0000018324,0.0000018309, -0.0000018444,0.0000018638,0.0000018506,0.0000018475,0.0000018262, -0.0000018163,0.0000018257,0.0000018554,0.0000018823,0.0000018974, -0.0000019066,0.0000019090,0.0000019080,0.0000019076,0.0000019066, -0.0000019057,0.0000019056,0.0000019047,0.0000019026,0.0000019006, -0.0000018990,0.0000018972,0.0000018951,0.0000018924,0.0000018893, -0.0000018862,0.0000018837,0.0000018856,0.0000018939,0.0000018961, -0.0000018866,0.0000018762,0.0000018798,0.0000018978,0.0000019229, -0.0000019244,0.0000019146,0.0000019117,0.0000019003,0.0000018819, -0.0000018784,0.0000018733,0.0000018658,0.0000018512,0.0000018354, -0.0000018406,0.0000018569,0.0000018675,0.0000018679,0.0000018587, -0.0000018465,0.0000018338,0.0000018297,0.0000018346,0.0000018481, -0.0000018675,0.0000018872,0.0000018925,0.0000018677,0.0000018143, -0.0000017540,0.0000017093,0.0000016856,0.0000016778,0.0000016754, -0.0000016712,0.0000016652,0.0000016589,0.0000016560,0.0000016559, -0.0000016613,0.0000016680,0.0000016704,0.0000016697,0.0000016663, -0.0000016541,0.0000016417,0.0000016336,0.0000016289,0.0000016260, -0.0000016251,0.0000016246,0.0000016242,0.0000016230,0.0000016218, -0.0000016234,0.0000016275,0.0000016320,0.0000016343,0.0000016333, -0.0000016305,0.0000016274,0.0000016252,0.0000016242,0.0000016239, -0.0000016233,0.0000016216,0.0000016202,0.0000016238,0.0000016342, -0.0000016416,0.0000016395,0.0000016301,0.0000016191,0.0000016108, -0.0000016127,0.0000016332,0.0000016575,0.0000016620,0.0000016570, -0.0000016601,0.0000016684,0.0000016767,0.0000017066,0.0000017706, -0.0000018350,0.0000018679,0.0000018766,0.0000018757,0.0000018551, -0.0000018114,0.0000017812,0.0000017743,0.0000017722,0.0000017679, -0.0000017643,0.0000017585,0.0000017437,0.0000017247,0.0000017225, -0.0000017558,0.0000018097,0.0000018435,0.0000018391,0.0000018117, -0.0000017977,0.0000018006,0.0000018069,0.0000018207,0.0000018591, -0.0000019051,0.0000019195,0.0000019046,0.0000018704,0.0000018380, -0.0000018135,0.0000018000,0.0000017987,0.0000018047,0.0000018205, -0.0000018468,0.0000018761,0.0000018980,0.0000019062,0.0000019067, -0.0000018934,0.0000018474,0.0000017849,0.0000017641,0.0000017592, -0.0000017410,0.0000017274,0.0000017384,0.0000017626,0.0000017635, -0.0000017447,0.0000017271,0.0000017278,0.0000017340,0.0000017445, -0.0000017525,0.0000017559,0.0000017533,0.0000017452,0.0000017342, -0.0000017235,0.0000017178,0.0000017179,0.0000017175,0.0000017208, -0.0000017294,0.0000017325,0.0000017317,0.0000017371,0.0000017536, -0.0000017703,0.0000017925,0.0000018212,0.0000018502,0.0000018800, -0.0000019063,0.0000019272,0.0000019420,0.0000019514,0.0000019579, -0.0000019638,0.0000019703,0.0000019768,0.0000019812,0.0000019817, -0.0000019808,0.0000019777,0.0000019741,0.0000019718,0.0000019707, -0.0000019696,0.0000019681,0.0000019667,0.0000019663,0.0000019673, -0.0000019697,0.0000019723,0.0000019749,0.0000019772,0.0000019796, -0.0000019824,0.0000019847,0.0000019858,0.0000019858,0.0000019857, -0.0000019850,0.0000019837,0.0000019811,0.0000019798,0.0000019805, -0.0000019815,0.0000019798,0.0000019684,0.0000019482,0.0000019310, -0.0000019193,0.0000019094,0.0000019014,0.0000019016,0.0000019103, -0.0000019206,0.0000019230,0.0000019228,0.0000019229,0.0000019205, -0.0000019162,0.0000019157,0.0000019219,0.0000019273,0.0000019243, -0.0000019202,0.0000019203,0.0000019212,0.0000019195,0.0000019154, -0.0000019135,0.0000019133,0.0000019111,0.0000019068,0.0000019016, -0.0000018964,0.0000018928,0.0000018903,0.0000018886,0.0000018868, -0.0000018832,0.0000018786,0.0000018757,0.0000018744,0.0000018743, -0.0000018741,0.0000018736,0.0000018728,0.0000018723,0.0000018722, -0.0000018730,0.0000018748,0.0000018772,0.0000018790,0.0000018795, -0.0000018791,0.0000018778,0.0000018757,0.0000018732,0.0000018701, -0.0000018665,0.0000018639,0.0000018636,0.0000018656,0.0000018681, -0.0000018700,0.0000018749,0.0000018811,0.0000018870,0.0000018929, -0.0000018993,0.0000019058,0.0000019105,0.0000019127,0.0000019124, -0.0000019109,0.0000019092,0.0000019087,0.0000019086,0.0000019076, -0.0000019066,0.0000019069,0.0000019077,0.0000019087,0.0000019104, -0.0000019122,0.0000019140,0.0000019168,0.0000019209,0.0000019259, -0.0000019306,0.0000019342,0.0000019365,0.0000019372,0.0000019365, -0.0000019349,0.0000019329,0.0000019304,0.0000019272,0.0000019229, -0.0000019175,0.0000019128,0.0000019108,0.0000019109,0.0000019117, -0.0000019122,0.0000019119,0.0000019092,0.0000019033,0.0000018970, -0.0000018934,0.0000018951,0.0000019019,0.0000019085,0.0000019102, -0.0000019058,0.0000018981,0.0000018929,0.0000018909,0.0000018899, -0.0000018891,0.0000018886,0.0000018860,0.0000018806,0.0000018737, -0.0000018682,0.0000018655,0.0000018656,0.0000018650,0.0000018599, -0.0000018538,0.0000018509,0.0000018508,0.0000018509,0.0000018475, -0.0000018451,0.0000018451,0.0000018442,0.0000018403,0.0000018377, -0.0000018338,0.0000018310,0.0000018310,0.0000018314,0.0000018365, -0.0000018418,0.0000018390,0.0000018376,0.0000018350,0.0000018265, -0.0000018196,0.0000018170,0.0000018168,0.0000018182,0.0000018193, -0.0000018182,0.0000018136,0.0000018064,0.0000017977,0.0000017895, -0.0000017843,0.0000017811,0.0000017781,0.0000017767,0.0000017747, -0.0000017702,0.0000017634,0.0000017567,0.0000017493,0.0000017442, -0.0000017424,0.0000017367,0.0000017254,0.0000017198,0.0000017197, -0.0000017138,0.0000017011,0.0000016950,0.0000016936,0.0000016941, -0.0000016973,0.0000017020,0.0000017057,0.0000017062,0.0000017047, -0.0000017013,0.0000016967,0.0000016914,0.0000016853,0.0000016791, -0.0000016743,0.0000016720,0.0000016722,0.0000016727,0.0000016728, -0.0000016716,0.0000016706,0.0000016729,0.0000016779,0.0000016808, -0.0000016809,0.0000016817,0.0000016826,0.0000016827,0.0000016840, -0.0000016869,0.0000016891,0.0000016899,0.0000016912,0.0000016929, -0.0000016924,0.0000016889,0.0000016860,0.0000016761,0.0000016637, -0.0000016715,0.0000016812,0.0000016786,0.0000016851,0.0000016913, -0.0000016808,0.0000016613,0.0000016442,0.0000016340,0.0000016291, -0.0000016259,0.0000016254,0.0000016275,0.0000016321,0.0000016359, -0.0000016342,0.0000016286,0.0000016234,0.0000016187,0.0000016135, -0.0000016104,0.0000016071,0.0000016022,0.0000016046,0.0000016115, -0.0000016141,0.0000016153,0.0000016178,0.0000016210,0.0000016270, -0.0000016347,0.0000016406,0.0000016437,0.0000016441,0.0000016422, -0.0000016394,0.0000016367,0.0000016346,0.0000016359,0.0000016392, -0.0000016430,0.0000016449,0.0000016443,0.0000016429,0.0000016420, -0.0000016428,0.0000016433,0.0000016461,0.0000016521,0.0000016582, -0.0000016631,0.0000016706,0.0000016819,0.0000016910,0.0000016927, -0.0000016955,0.0000017151,0.0000017508,0.0000017704,0.0000017682, -0.0000017585,0.0000017539,0.0000017558,0.0000017609,0.0000017641, -0.0000017638,0.0000017635,0.0000017670,0.0000017755,0.0000017863, -0.0000017961,0.0000018037,0.0000018092,0.0000018128,0.0000018136, -0.0000018123,0.0000018104,0.0000018097,0.0000018038,0.0000018019, -0.0000017990,0.0000017963,0.0000017969,0.0000018037,0.0000018124, -0.0000018165,0.0000018171,0.0000018163,0.0000018141,0.0000018142, -0.0000018157,0.0000018127,0.0000018041,0.0000017976,0.0000017962, -0.0000017937,0.0000017844,0.0000017722,0.0000017708,0.0000017759, -0.0000017741,0.0000017709,0.0000017639,0.0000017675,0.0000017720, -0.0000017715,0.0000017796,0.0000017799,0.0000017798,0.0000017775, -0.0000017654,0.0000017596,0.0000017629,0.0000017720,0.0000017816, -0.0000017984,0.0000018196,0.0000018298,0.0000018412,0.0000018533, -0.0000018657,0.0000018746,0.0000018751,0.0000018777,0.0000018820, -0.0000018827,0.0000018807,0.0000018796,0.0000018818,0.0000018847, -0.0000018867,0.0000018880,0.0000018900,0.0000018927,0.0000018966, -0.0000019010,0.0000019041,0.0000019056,0.0000019063,0.0000019061, -0.0000019042,0.0000019012,0.0000018977,0.0000018947,0.0000018929, -0.0000018916,0.0000018904,0.0000018883,0.0000018861,0.0000018849, -0.0000018856,0.0000018880,0.0000018909,0.0000018937,0.0000018960, -0.0000018976,0.0000018975,0.0000018899,0.0000018716,0.0000018491, -0.0000018341,0.0000018194,0.0000018022,0.0000017922,0.0000017877, -0.0000017872,0.0000017841,0.0000017662,0.0000017457,0.0000017220, -0.0000017008,0.0000016954,0.0000016938,0.0000016887,0.0000016902, -0.0000016989,0.0000017030,0.0000017003,0.0000016979,0.0000016988, -0.0000017013,0.0000017039,0.0000017067,0.0000017089,0.0000017107, -0.0000017137,0.0000017177,0.0000017229,0.0000017328,0.0000017431, -0.0000017434,0.0000017348,0.0000017191,0.0000017014,0.0000017054, -0.0000017426,0.0000017781,0.0000017927,0.0000018002,0.0000018083, -0.0000018164,0.0000018229,0.0000018265,0.0000018273,0.0000018273, -0.0000018276,0.0000018295,0.0000018332,0.0000018381,0.0000018432, -0.0000018476,0.0000018504,0.0000018511,0.0000018498,0.0000018465, -0.0000018422,0.0000018367,0.0000018274,0.0000018100,0.0000017818, -0.0000017505,0.0000017326,0.0000017310,0.0000017291,0.0000017282, -0.0000017300,0.0000017324,0.0000017240,0.0000017004,0.0000016954, -0.0000017174,0.0000017547,0.0000017732,0.0000017726,0.0000017596, -0.0000017686,0.0000017824,0.0000017721,0.0000017656,0.0000017626, -0.0000017658,0.0000017671,0.0000017611,0.0000017645,0.0000017952, -0.0000018013,0.0000017695,0.0000017414,0.0000017577,0.0000017709, -0.0000017853,0.0000017885,0.0000017865,0.0000018443,0.0000019360, -0.0000019401,0.0000019218,0.0000019571,0.0000019865,0.0000020021, -0.0000020043,0.0000019619,0.0000019360,0.0000019588,0.0000019529, -0.0000019413,0.0000019454,0.0000019498,0.0000019502,0.0000019500, -0.0000019499,0.0000019487,0.0000019470,0.0000019462,0.0000019381, -0.0000019197,0.0000019084,0.0000019121,0.0000019194,0.0000019342, -0.0000019698,0.0000019938,0.0000019916,0.0000019775,0.0000019786, -0.0000019885,0.0000019707,0.0000019386,0.0000019240,0.0000019246, -0.0000019310,0.0000019308,0.0000019247,0.0000019184,0.0000019176, -0.0000019313,0.0000019672,0.0000020057,0.0000020184,0.0000020037, -0.0000019785,0.0000019802,0.0000019959,0.0000019913,0.0000019749, -0.0000019512,0.0000019505,0.0000019860,0.0000020018,0.0000019778, -0.0000019600,0.0000019694,0.0000019899,0.0000020006,0.0000020062, -0.0000020120,0.0000020156,0.0000020154,0.0000020128,0.0000020053, -0.0000019933,0.0000019831,0.0000019805,0.0000019875,0.0000020028, -0.0000020197,0.0000020296,0.0000020310,0.0000020277,0.0000020241, -0.0000020222,0.0000020203,0.0000020216,0.0000020222,0.0000019976, -0.0000019289,0.0000018623,0.0000018347,0.0000018475,0.0000018473, -0.0000018465,0.0000018773,0.0000018800,0.0000018529,0.0000018416, -0.0000018453,0.0000018598,0.0000018668,0.0000018495,0.0000018121, -0.0000017935,0.0000018081,0.0000018248,0.0000018333,0.0000018321, -0.0000018404,0.0000018596,0.0000018487,0.0000018411,0.0000018223, -0.0000018174,0.0000018447,0.0000018865,0.0000019074,0.0000019080, -0.0000019082,0.0000019067,0.0000019039,0.0000019003,0.0000018981, -0.0000018975,0.0000018974,0.0000018977,0.0000018981,0.0000018978, -0.0000018973,0.0000018963,0.0000018945,0.0000018920,0.0000018887, -0.0000018846,0.0000018808,0.0000018794,0.0000018853,0.0000018924, -0.0000018877,0.0000018758,0.0000018774,0.0000018938,0.0000019203, -0.0000019315,0.0000019258,0.0000019074,0.0000018874,0.0000018829, -0.0000018790,0.0000018722,0.0000018614,0.0000018456,0.0000018467, -0.0000018632,0.0000018695,0.0000018663,0.0000018537,0.0000018395, -0.0000018349,0.0000018326,0.0000018418,0.0000018581,0.0000018772, -0.0000018912,0.0000018861,0.0000018488,0.0000017851,0.0000017254, -0.0000016892,0.0000016759,0.0000016725,0.0000016689,0.0000016633, -0.0000016565,0.0000016546,0.0000016565,0.0000016635,0.0000016704, -0.0000016739,0.0000016710,0.0000016606,0.0000016466,0.0000016337, -0.0000016249,0.0000016214,0.0000016226,0.0000016267,0.0000016304, -0.0000016323,0.0000016328,0.0000016326,0.0000016301,0.0000016252, -0.0000016215,0.0000016222,0.0000016256,0.0000016293,0.0000016307, -0.0000016307,0.0000016297,0.0000016278,0.0000016265,0.0000016266, -0.0000016276,0.0000016266,0.0000016213,0.0000016162,0.0000016209, -0.0000016356,0.0000016440,0.0000016403,0.0000016289,0.0000016158, -0.0000016100,0.0000016205,0.0000016484,0.0000016591,0.0000016541, -0.0000016545,0.0000016633,0.0000016701,0.0000016916,0.0000017500, -0.0000018176,0.0000018555,0.0000018670,0.0000018719,0.0000018584, -0.0000018152,0.0000017781,0.0000017700,0.0000017695,0.0000017663, -0.0000017637,0.0000017626,0.0000017589,0.0000017417,0.0000017199, -0.0000017208,0.0000017592,0.0000018163,0.0000018445,0.0000018296, -0.0000018055,0.0000017981,0.0000018028,0.0000018095,0.0000018267, -0.0000018676,0.0000019079,0.0000019150,0.0000019017,0.0000018769, -0.0000018547,0.0000018440,0.0000018454,0.0000018574,0.0000018777, -0.0000018984,0.0000019085,0.0000019096,0.0000018994,0.0000018984, -0.0000018980,0.0000018702,0.0000018002,0.0000017642,0.0000017634, -0.0000017508,0.0000017286,0.0000017184,0.0000017146,0.0000017145, -0.0000017171,0.0000017226,0.0000017369,0.0000017530,0.0000017631, -0.0000017681,0.0000017701,0.0000017710,0.0000017681,0.0000017616, -0.0000017552,0.0000017479,0.0000017422,0.0000017392,0.0000017388, -0.0000017405,0.0000017408,0.0000017380,0.0000017374,0.0000017379, -0.0000017381,0.0000017406,0.0000017509,0.0000017694,0.0000017949, -0.0000018295,0.0000018652,0.0000018980,0.0000019248,0.0000019427, -0.0000019528,0.0000019595,0.0000019668,0.0000019744,0.0000019803, -0.0000019835,0.0000019835,0.0000019834,0.0000019828,0.0000019828, -0.0000019817,0.0000019797,0.0000019775,0.0000019766,0.0000019772, -0.0000019792,0.0000019814,0.0000019836,0.0000019856,0.0000019872, -0.0000019883,0.0000019886,0.0000019880,0.0000019867,0.0000019839, -0.0000019794,0.0000019754,0.0000019741,0.0000019746,0.0000019742, -0.0000019722,0.0000019665,0.0000019543,0.0000019402,0.0000019295, -0.0000019202,0.0000019113,0.0000019064,0.0000019070,0.0000019144, -0.0000019226,0.0000019248,0.0000019245,0.0000019238,0.0000019199, -0.0000019155,0.0000019144,0.0000019195,0.0000019279,0.0000019278, -0.0000019240,0.0000019237,0.0000019247,0.0000019236,0.0000019205, -0.0000019184,0.0000019177,0.0000019154,0.0000019120,0.0000019082, -0.0000019047,0.0000019013,0.0000018970,0.0000018915,0.0000018855, -0.0000018789,0.0000018744,0.0000018718,0.0000018717,0.0000018723, -0.0000018724,0.0000018732,0.0000018760,0.0000018797,0.0000018833, -0.0000018867,0.0000018897,0.0000018917,0.0000018924,0.0000018921, -0.0000018908,0.0000018887,0.0000018860,0.0000018830,0.0000018798, -0.0000018764,0.0000018736,0.0000018720,0.0000018709,0.0000018700, -0.0000018698,0.0000018714,0.0000018734,0.0000018744,0.0000018785, -0.0000018829,0.0000018870,0.0000018902,0.0000018921,0.0000018931, -0.0000018940,0.0000018952,0.0000018957,0.0000018948,0.0000018938, -0.0000018938,0.0000018944,0.0000018956,0.0000018977,0.0000019002, -0.0000019032,0.0000019070,0.0000019112,0.0000019152,0.0000019188, -0.0000019218,0.0000019243,0.0000019257,0.0000019260,0.0000019255, -0.0000019243,0.0000019224,0.0000019198,0.0000019167,0.0000019128, -0.0000019093,0.0000019076,0.0000019076,0.0000019085,0.0000019092, -0.0000019086,0.0000019057,0.0000019011,0.0000018979,0.0000018981, -0.0000019015,0.0000019060,0.0000019078,0.0000019055,0.0000019009, -0.0000018970,0.0000018950,0.0000018926,0.0000018891,0.0000018872, -0.0000018867,0.0000018833,0.0000018764,0.0000018701,0.0000018666, -0.0000018643,0.0000018616,0.0000018578,0.0000018529,0.0000018500, -0.0000018498,0.0000018511,0.0000018521,0.0000018495,0.0000018483, -0.0000018466,0.0000018434,0.0000018406,0.0000018387,0.0000018347, -0.0000018321,0.0000018314,0.0000018313,0.0000018354,0.0000018412, -0.0000018385,0.0000018366,0.0000018323,0.0000018241,0.0000018197, -0.0000018192,0.0000018205,0.0000018222,0.0000018223,0.0000018195, -0.0000018131,0.0000018041,0.0000017955,0.0000017885,0.0000017835, -0.0000017796,0.0000017771,0.0000017764,0.0000017748,0.0000017689, -0.0000017609,0.0000017524,0.0000017459,0.0000017440,0.0000017415, -0.0000017322,0.0000017216,0.0000017197,0.0000017203,0.0000017129, -0.0000016993,0.0000016944,0.0000016941,0.0000016940,0.0000016954, -0.0000016988,0.0000017014,0.0000017007,0.0000016984,0.0000016951, -0.0000016902,0.0000016844,0.0000016791,0.0000016747,0.0000016716, -0.0000016714,0.0000016728,0.0000016741,0.0000016743,0.0000016731, -0.0000016735,0.0000016777,0.0000016810,0.0000016805,0.0000016799, -0.0000016807,0.0000016806,0.0000016805,0.0000016829,0.0000016866, -0.0000016885,0.0000016892,0.0000016908,0.0000016922,0.0000016901, -0.0000016862,0.0000016817,0.0000016680,0.0000016620,0.0000016753, -0.0000016795,0.0000016762,0.0000016831,0.0000016868,0.0000016757, -0.0000016563,0.0000016397,0.0000016312,0.0000016274,0.0000016260, -0.0000016270,0.0000016301,0.0000016346,0.0000016341,0.0000016276, -0.0000016215,0.0000016175,0.0000016139,0.0000016110,0.0000016092, -0.0000016035,0.0000016024,0.0000016087,0.0000016121,0.0000016135, -0.0000016168,0.0000016219,0.0000016315,0.0000016424,0.0000016491, -0.0000016520,0.0000016532,0.0000016531,0.0000016525,0.0000016509, -0.0000016476,0.0000016434,0.0000016404,0.0000016422,0.0000016461, -0.0000016494,0.0000016504,0.0000016484,0.0000016456,0.0000016436, -0.0000016441,0.0000016482,0.0000016546,0.0000016591,0.0000016632, -0.0000016713,0.0000016828,0.0000016906,0.0000016916,0.0000016936, -0.0000017150,0.0000017500,0.0000017708,0.0000017702,0.0000017617, -0.0000017552,0.0000017545,0.0000017586,0.0000017624,0.0000017629, -0.0000017627,0.0000017665,0.0000017750,0.0000017853,0.0000017943, -0.0000018016,0.0000018075,0.0000018108,0.0000018107,0.0000018080, -0.0000018054,0.0000017998,0.0000017991,0.0000017980,0.0000017989, -0.0000018028,0.0000018084,0.0000018135,0.0000018161,0.0000018163, -0.0000018139,0.0000018119,0.0000018133,0.0000018154,0.0000018122, -0.0000018030,0.0000017952,0.0000017924,0.0000017910,0.0000017844, -0.0000017732,0.0000017699,0.0000017739,0.0000017729,0.0000017702, -0.0000017624,0.0000017644,0.0000017708,0.0000017693,0.0000017772, -0.0000017792,0.0000017785,0.0000017779,0.0000017670,0.0000017599, -0.0000017624,0.0000017708,0.0000017814,0.0000017982,0.0000018196, -0.0000018307,0.0000018416,0.0000018519,0.0000018626,0.0000018726, -0.0000018742,0.0000018762,0.0000018801,0.0000018814,0.0000018801, -0.0000018781,0.0000018787,0.0000018815,0.0000018847,0.0000018876, -0.0000018899,0.0000018926,0.0000018955,0.0000018982,0.0000018997, -0.0000018999,0.0000018993,0.0000018980,0.0000018963,0.0000018954, -0.0000018950,0.0000018951,0.0000018947,0.0000018936,0.0000018915, -0.0000018876,0.0000018833,0.0000018808,0.0000018805,0.0000018819, -0.0000018844,0.0000018870,0.0000018883,0.0000018872,0.0000018814, -0.0000018682,0.0000018486,0.0000018323,0.0000018224,0.0000018094, -0.0000017977,0.0000017920,0.0000017878,0.0000017872,0.0000017815, -0.0000017640,0.0000017421,0.0000017128,0.0000016973,0.0000016973, -0.0000016966,0.0000017002,0.0000017095,0.0000017121,0.0000017068, -0.0000017016,0.0000017009,0.0000017032,0.0000017063,0.0000017099, -0.0000017129,0.0000017143,0.0000017160,0.0000017189,0.0000017239, -0.0000017341,0.0000017445,0.0000017434,0.0000017353,0.0000017244, -0.0000017018,0.0000016885,0.0000017069,0.0000017508,0.0000017819, -0.0000017946,0.0000018026,0.0000018104,0.0000018170,0.0000018215, -0.0000018233,0.0000018232,0.0000018226,0.0000018227,0.0000018246, -0.0000018282,0.0000018322,0.0000018355,0.0000018376,0.0000018382, -0.0000018369,0.0000018335,0.0000018284,0.0000018211,0.0000018091, -0.0000017888,0.0000017612,0.0000017387,0.0000017323,0.0000017313, -0.0000017302,0.0000017310,0.0000017329,0.0000017323,0.0000017174, -0.0000016966,0.0000016998,0.0000017325,0.0000017684,0.0000017778, -0.0000017681,0.0000017640,0.0000017802,0.0000017817,0.0000017695, -0.0000017644,0.0000017624,0.0000017667,0.0000017637,0.0000017588, -0.0000017731,0.0000017976,0.0000017928,0.0000017520,0.0000017454, -0.0000017657,0.0000017778,0.0000017893,0.0000017873,0.0000018074, -0.0000018998,0.0000019444,0.0000019306,0.0000019336,0.0000019776, -0.0000019988,0.0000020051,0.0000019900,0.0000019386,0.0000019519, -0.0000019647,0.0000019415,0.0000019468,0.0000019510,0.0000019495, -0.0000019492,0.0000019516,0.0000019535,0.0000019526,0.0000019482, -0.0000019464,0.0000019463,0.0000019348,0.0000019131,0.0000019110, -0.0000019204,0.0000019264,0.0000019511,0.0000019865,0.0000019949, -0.0000019823,0.0000019775,0.0000019909,0.0000019926,0.0000019716, -0.0000019497,0.0000019399,0.0000019377,0.0000019384,0.0000019422, -0.0000019476,0.0000019571,0.0000019773,0.0000020027,0.0000020170, -0.0000020102,0.0000019853,0.0000019780,0.0000019941,0.0000019956, -0.0000019784,0.0000019527,0.0000019450,0.0000019794,0.0000020004, -0.0000019863,0.0000019658,0.0000019681,0.0000019829,0.0000019949, -0.0000020016,0.0000020083,0.0000020150,0.0000020179,0.0000020176, -0.0000020143,0.0000020071,0.0000019990,0.0000019951,0.0000019973, -0.0000020078,0.0000020207,0.0000020289,0.0000020309,0.0000020293, -0.0000020254,0.0000020223,0.0000020201,0.0000020212,0.0000020223, -0.0000020057,0.0000019423,0.0000018731,0.0000018349,0.0000018431, -0.0000018505,0.0000018446,0.0000018703,0.0000018860,0.0000018638, -0.0000018466,0.0000018439,0.0000018526,0.0000018644,0.0000018581, -0.0000018236,0.0000017979,0.0000018037,0.0000018231,0.0000018337, -0.0000018342,0.0000018363,0.0000018538,0.0000018459,0.0000018379, -0.0000018219,0.0000018257,0.0000018664,0.0000019061,0.0000019086, -0.0000018989,0.0000018940,0.0000018916,0.0000018893,0.0000018867, -0.0000018847,0.0000018845,0.0000018856,0.0000018870,0.0000018890, -0.0000018917,0.0000018936,0.0000018941,0.0000018928,0.0000018900, -0.0000018871,0.0000018839,0.0000018798,0.0000018759,0.0000018768, -0.0000018857,0.0000018882,0.0000018784,0.0000018756,0.0000018865, -0.0000019065,0.0000019173,0.0000019078,0.0000018905,0.0000018857, -0.0000018833,0.0000018770,0.0000018687,0.0000018553,0.0000018522, -0.0000018672,0.0000018726,0.0000018655,0.0000018517,0.0000018369, -0.0000018321,0.0000018388,0.0000018522,0.0000018685,0.0000018871, -0.0000018943,0.0000018826,0.0000018301,0.0000017598,0.0000017046, -0.0000016801,0.0000016752,0.0000016717,0.0000016658,0.0000016576, -0.0000016537,0.0000016549,0.0000016609,0.0000016685,0.0000016726, -0.0000016699,0.0000016586,0.0000016436,0.0000016287,0.0000016175, -0.0000016111,0.0000016120,0.0000016164,0.0000016216,0.0000016269, -0.0000016325,0.0000016363,0.0000016380,0.0000016381,0.0000016363, -0.0000016322,0.0000016277,0.0000016264,0.0000016279,0.0000016307, -0.0000016325,0.0000016328,0.0000016322,0.0000016304,0.0000016284, -0.0000016278,0.0000016284,0.0000016279,0.0000016231,0.0000016153, -0.0000016127,0.0000016247,0.0000016411,0.0000016439,0.0000016357, -0.0000016217,0.0000016110,0.0000016178,0.0000016439,0.0000016557, -0.0000016510,0.0000016512,0.0000016587,0.0000016648,0.0000016897, -0.0000017516,0.0000018173,0.0000018495,0.0000018586,0.0000018628, -0.0000018445,0.0000017969,0.0000017618,0.0000017576,0.0000017592, -0.0000017587,0.0000017587,0.0000017610,0.0000017622,0.0000017550, -0.0000017331,0.0000017160,0.0000017219,0.0000017718,0.0000018276, -0.0000018395,0.0000018213,0.0000017997,0.0000017981,0.0000018050, -0.0000018108,0.0000018305,0.0000018679,0.0000018998,0.0000019119, -0.0000019080,0.0000019003,0.0000018957,0.0000018975,0.0000019041, -0.0000019030,0.0000019021,0.0000018910,0.0000018708,0.0000018586, -0.0000018642,0.0000018849,0.0000018814,0.0000018215,0.0000017680, -0.0000017645,0.0000017607,0.0000017455,0.0000017264,0.0000017169, -0.0000017171,0.0000017264,0.0000017424,0.0000017555,0.0000017614, -0.0000017643,0.0000017664,0.0000017678,0.0000017684,0.0000017674, -0.0000017661,0.0000017644,0.0000017619,0.0000017590,0.0000017576, -0.0000017582,0.0000017603,0.0000017624,0.0000017635,0.0000017622, -0.0000017598,0.0000017547,0.0000017469,0.0000017404,0.0000017381, -0.0000017377,0.0000017524,0.0000017764,0.0000018137,0.0000018572, -0.0000018982,0.0000019285,0.0000019450,0.0000019538,0.0000019619, -0.0000019707,0.0000019778,0.0000019825,0.0000019856,0.0000019886, -0.0000019912,0.0000019931,0.0000019926,0.0000019915,0.0000019901, -0.0000019890,0.0000019888,0.0000019890,0.0000019897,0.0000019905, -0.0000019907,0.0000019896,0.0000019872,0.0000019834,0.0000019787, -0.0000019739,0.0000019704,0.0000019689,0.0000019677,0.0000019659, -0.0000019625,0.0000019572,0.0000019498,0.0000019412,0.0000019341, -0.0000019274,0.0000019197,0.0000019138,0.0000019117,0.0000019131, -0.0000019185,0.0000019237,0.0000019264,0.0000019272,0.0000019259, -0.0000019204,0.0000019160,0.0000019144,0.0000019188,0.0000019289, -0.0000019308,0.0000019280,0.0000019273,0.0000019284,0.0000019289, -0.0000019263,0.0000019230,0.0000019212,0.0000019197,0.0000019175, -0.0000019147,0.0000019121,0.0000019087,0.0000019025,0.0000018941, -0.0000018845,0.0000018759,0.0000018703,0.0000018670,0.0000018666, -0.0000018667,0.0000018685,0.0000018753,0.0000018833,0.0000018889, -0.0000018922,0.0000018940,0.0000018950,0.0000018953,0.0000018950, -0.0000018941,0.0000018928,0.0000018914,0.0000018901,0.0000018887, -0.0000018874,0.0000018860,0.0000018846,0.0000018827,0.0000018804, -0.0000018780,0.0000018759,0.0000018743,0.0000018737,0.0000018736, -0.0000018730,0.0000018706,0.0000018691,0.0000018680,0.0000018678, -0.0000018692,0.0000018720,0.0000018752,0.0000018778,0.0000018803, -0.0000018828,0.0000018849,0.0000018869,0.0000018891,0.0000018911, -0.0000018931,0.0000018957,0.0000018984,0.0000019010,0.0000019041, -0.0000019076,0.0000019113,0.0000019138,0.0000019149,0.0000019154, -0.0000019152,0.0000019141,0.0000019129,0.0000019122,0.0000019114, -0.0000019104,0.0000019101,0.0000019111,0.0000019132,0.0000019144, -0.0000019137,0.0000019107,0.0000019069,0.0000019046,0.0000019035, -0.0000019043,0.0000019045,0.0000019034,0.0000019011,0.0000018990, -0.0000018970,0.0000018940,0.0000018890,0.0000018835,0.0000018817, -0.0000018821,0.0000018793,0.0000018730,0.0000018678,0.0000018647, -0.0000018608,0.0000018546,0.0000018489,0.0000018472,0.0000018485, -0.0000018505,0.0000018520,0.0000018535,0.0000018520,0.0000018512, -0.0000018473,0.0000018431,0.0000018415,0.0000018397,0.0000018362, -0.0000018343,0.0000018328,0.0000018318,0.0000018349,0.0000018406, -0.0000018387,0.0000018360,0.0000018305,0.0000018232,0.0000018210, -0.0000018226,0.0000018257,0.0000018271,0.0000018256,0.0000018209, -0.0000018130,0.0000018031,0.0000017950,0.0000017877,0.0000017814, -0.0000017772,0.0000017761,0.0000017763,0.0000017737,0.0000017675, -0.0000017578,0.0000017498,0.0000017474,0.0000017468,0.0000017408, -0.0000017286,0.0000017204,0.0000017211,0.0000017219,0.0000017130, -0.0000016989,0.0000016948,0.0000016952,0.0000016943,0.0000016944, -0.0000016966,0.0000016976,0.0000016959,0.0000016927,0.0000016887, -0.0000016828,0.0000016773,0.0000016736,0.0000016713,0.0000016705, -0.0000016719,0.0000016741,0.0000016757,0.0000016751,0.0000016743, -0.0000016773,0.0000016813,0.0000016808,0.0000016786,0.0000016787, -0.0000016791,0.0000016781,0.0000016788,0.0000016825,0.0000016861, -0.0000016876,0.0000016882,0.0000016896,0.0000016901,0.0000016865, -0.0000016835,0.0000016756,0.0000016615,0.0000016641,0.0000016778, -0.0000016771,0.0000016739,0.0000016799,0.0000016811,0.0000016694, -0.0000016514,0.0000016375,0.0000016304,0.0000016271,0.0000016267, -0.0000016282,0.0000016322,0.0000016341,0.0000016287,0.0000016205, -0.0000016158,0.0000016134,0.0000016111,0.0000016103,0.0000016062, -0.0000016016,0.0000016056,0.0000016102,0.0000016117,0.0000016156, -0.0000016224,0.0000016349,0.0000016473,0.0000016524,0.0000016533, -0.0000016538,0.0000016543,0.0000016556,0.0000016566,0.0000016563, -0.0000016543,0.0000016508,0.0000016475,0.0000016457,0.0000016478, -0.0000016510,0.0000016520,0.0000016513,0.0000016486,0.0000016460, -0.0000016470,0.0000016512,0.0000016560,0.0000016591,0.0000016634, -0.0000016722,0.0000016832,0.0000016899,0.0000016901,0.0000016920, -0.0000017140,0.0000017502,0.0000017722,0.0000017727,0.0000017649, -0.0000017561,0.0000017530,0.0000017555,0.0000017602,0.0000017635, -0.0000017656,0.0000017696,0.0000017764,0.0000017845,0.0000017926, -0.0000018000,0.0000018051,0.0000018061,0.0000018037,0.0000018007, -0.0000017953,0.0000017963,0.0000017991,0.0000018044,0.0000018088, -0.0000018106,0.0000018120,0.0000018136,0.0000018140,0.0000018116, -0.0000018099,0.0000018126,0.0000018153,0.0000018120,0.0000018029, -0.0000017940,0.0000017885,0.0000017861,0.0000017824,0.0000017737, -0.0000017696,0.0000017722,0.0000017714,0.0000017694,0.0000017610, -0.0000017613,0.0000017693,0.0000017679,0.0000017745,0.0000017782, -0.0000017768,0.0000017771,0.0000017678,0.0000017609,0.0000017628, -0.0000017703,0.0000017817,0.0000017987,0.0000018198,0.0000018314, -0.0000018423,0.0000018516,0.0000018608,0.0000018704,0.0000018732, -0.0000018750,0.0000018779,0.0000018797,0.0000018795,0.0000018770, -0.0000018757,0.0000018770,0.0000018800,0.0000018832,0.0000018862, -0.0000018886,0.0000018900,0.0000018904,0.0000018905,0.0000018918, -0.0000018934,0.0000018947,0.0000018965,0.0000018975,0.0000018974, -0.0000018958,0.0000018917,0.0000018850,0.0000018759,0.0000018661, -0.0000018574,0.0000018516,0.0000018502,0.0000018516,0.0000018551, -0.0000018588,0.0000018611,0.0000018606,0.0000018552,0.0000018439, -0.0000018289,0.0000018191,0.0000018116,0.0000018020,0.0000017961, -0.0000017923,0.0000017882,0.0000017874,0.0000017795,0.0000017611, -0.0000017330,0.0000017047,0.0000016995,0.0000017035,0.0000017091, -0.0000017185,0.0000017211,0.0000017143,0.0000017063,0.0000017034, -0.0000017048,0.0000017083,0.0000017121,0.0000017158,0.0000017174, -0.0000017183,0.0000017204,0.0000017254,0.0000017364,0.0000017465, -0.0000017436,0.0000017351,0.0000017276,0.0000017067,0.0000016796, -0.0000016751,0.0000017071,0.0000017548,0.0000017843,0.0000017958, -0.0000018033,0.0000018097,0.0000018148,0.0000018184,0.0000018196, -0.0000018191,0.0000018180,0.0000018175,0.0000018183,0.0000018201, -0.0000018219,0.0000018230,0.0000018229,0.0000018209,0.0000018172, -0.0000018122,0.0000018048,0.0000017917,0.0000017704,0.0000017470, -0.0000017337,0.0000017328,0.0000017333,0.0000017356,0.0000017385, -0.0000017390,0.0000017294,0.0000017055,0.0000016915,0.0000017101, -0.0000017509,0.0000017768,0.0000017768,0.0000017669,0.0000017753, -0.0000017864,0.0000017774,0.0000017680,0.0000017632,0.0000017635, -0.0000017648,0.0000017592,0.0000017607,0.0000017831,0.0000017975, -0.0000017790,0.0000017414,0.0000017550,0.0000017720,0.0000017831, -0.0000017904,0.0000017908,0.0000018419,0.0000019343,0.0000019402, -0.0000019289,0.0000019557,0.0000019895,0.0000020057,0.0000020019, -0.0000019656,0.0000019382,0.0000019714,0.0000019528,0.0000019418, -0.0000019536,0.0000019483,0.0000019458,0.0000019488,0.0000019551, -0.0000019592,0.0000019606,0.0000019548,0.0000019457,0.0000019456, -0.0000019441,0.0000019232,0.0000019110,0.0000019204,0.0000019264, -0.0000019372,0.0000019731,0.0000019948,0.0000019880,0.0000019777, -0.0000019873,0.0000019983,0.0000019975,0.0000019892,0.0000019835, -0.0000019823,0.0000019849,0.0000019889,0.0000019915,0.0000019964, -0.0000020069,0.0000020168,0.0000020152,0.0000019933,0.0000019793, -0.0000019895,0.0000019980,0.0000019844,0.0000019574,0.0000019417, -0.0000019682,0.0000020011,0.0000019937,0.0000019721,0.0000019684, -0.0000019769,0.0000019885,0.0000019972,0.0000020040,0.0000020120, -0.0000020190,0.0000020211,0.0000020196,0.0000020150,0.0000020095, -0.0000020054,0.0000020043,0.0000020085,0.0000020181,0.0000020268, -0.0000020308,0.0000020303,0.0000020264,0.0000020223,0.0000020199, -0.0000020209,0.0000020224,0.0000020115,0.0000019525,0.0000018826, -0.0000018385,0.0000018362,0.0000018529,0.0000018451,0.0000018575, -0.0000018864,0.0000018757,0.0000018523,0.0000018447,0.0000018474, -0.0000018601,0.0000018618,0.0000018356,0.0000018028,0.0000018005, -0.0000018197,0.0000018335,0.0000018364,0.0000018339,0.0000018466, -0.0000018422,0.0000018348,0.0000018205,0.0000018313,0.0000018873, -0.0000019087,0.0000018942,0.0000018779,0.0000018725,0.0000018717, -0.0000018716,0.0000018706,0.0000018691,0.0000018687,0.0000018697, -0.0000018720,0.0000018749,0.0000018791,0.0000018834,0.0000018857, -0.0000018853,0.0000018824,0.0000018799,0.0000018797,0.0000018796, -0.0000018757,0.0000018713,0.0000018754,0.0000018842,0.0000018828, -0.0000018754,0.0000018791,0.0000018866,0.0000018908,0.0000018885, -0.0000018865,0.0000018854,0.0000018804,0.0000018734,0.0000018617, -0.0000018569,0.0000018688,0.0000018733,0.0000018638,0.0000018485, -0.0000018395,0.0000018367,0.0000018467,0.0000018613,0.0000018781, -0.0000018960,0.0000019039,0.0000018816,0.0000018174,0.0000017436, -0.0000016947,0.0000016798,0.0000016773,0.0000016729,0.0000016647, -0.0000016573,0.0000016551,0.0000016586,0.0000016659,0.0000016696, -0.0000016688,0.0000016603,0.0000016457,0.0000016294,0.0000016166, -0.0000016122,0.0000016106,0.0000016104,0.0000016124,0.0000016142, -0.0000016149,0.0000016162,0.0000016204,0.0000016282,0.0000016351, -0.0000016375,0.0000016367,0.0000016338,0.0000016311,0.0000016299, -0.0000016297,0.0000016297,0.0000016299,0.0000016300,0.0000016293, -0.0000016276,0.0000016261,0.0000016256,0.0000016259,0.0000016248, -0.0000016201,0.0000016130,0.0000016101,0.0000016201,0.0000016369, -0.0000016428,0.0000016373,0.0000016241,0.0000016137,0.0000016207, -0.0000016443,0.0000016521,0.0000016471,0.0000016481,0.0000016534, -0.0000016632,0.0000017004,0.0000017700,0.0000018255,0.0000018460, -0.0000018523,0.0000018494,0.0000018124,0.0000017619,0.0000017398, -0.0000017413,0.0000017442,0.0000017452,0.0000017486,0.0000017544, -0.0000017586,0.0000017576,0.0000017441,0.0000017188,0.0000017049, -0.0000017334,0.0000017970,0.0000018375,0.0000018357,0.0000018100, -0.0000017965,0.0000018001,0.0000018053,0.0000018106,0.0000018273, -0.0000018557,0.0000018814,0.0000018961,0.0000019008,0.0000019002, -0.0000018984,0.0000018915,0.0000018763,0.0000018590,0.0000018406, -0.0000018269,0.0000018221,0.0000018306,0.0000018621,0.0000018817, -0.0000018470,0.0000017834,0.0000017651,0.0000017663,0.0000017627, -0.0000017537,0.0000017455,0.0000017436,0.0000017484,0.0000017564, -0.0000017607,0.0000017615,0.0000017615,0.0000017611,0.0000017604, -0.0000017597,0.0000017604,0.0000017626,0.0000017644,0.0000017651, -0.0000017651,0.0000017648,0.0000017656,0.0000017668,0.0000017681, -0.0000017692,0.0000017708,0.0000017724,0.0000017735,0.0000017707, -0.0000017637,0.0000017543,0.0000017430,0.0000017334,0.0000017346, -0.0000017409,0.0000017721,0.0000018198,0.0000018741,0.0000019156, -0.0000019377,0.0000019484,0.0000019579,0.0000019673,0.0000019751, -0.0000019814,0.0000019872,0.0000019923,0.0000019957,0.0000019976, -0.0000019998,0.0000020005,0.0000020000,0.0000019987,0.0000019968, -0.0000019946,0.0000019919,0.0000019876,0.0000019819,0.0000019766, -0.0000019727,0.0000019701,0.0000019680,0.0000019659,0.0000019634, -0.0000019602,0.0000019561,0.0000019506,0.0000019455,0.0000019408, -0.0000019359,0.0000019312,0.0000019260,0.0000019211,0.0000019187, -0.0000019187,0.0000019210,0.0000019243,0.0000019266,0.0000019293, -0.0000019311,0.0000019286,0.0000019228,0.0000019185,0.0000019162, -0.0000019205,0.0000019309,0.0000019345,0.0000019326,0.0000019314, -0.0000019322,0.0000019338,0.0000019318,0.0000019269,0.0000019243, -0.0000019234,0.0000019218,0.0000019194,0.0000019171,0.0000019141, -0.0000019083,0.0000018993,0.0000018886,0.0000018788,0.0000018711, -0.0000018668,0.0000018650,0.0000018648,0.0000018707,0.0000018810, -0.0000018895,0.0000018943,0.0000018969,0.0000018982,0.0000018985, -0.0000018976,0.0000018961,0.0000018949,0.0000018942,0.0000018937, -0.0000018931,0.0000018921,0.0000018911,0.0000018902,0.0000018888, -0.0000018870,0.0000018849,0.0000018823,0.0000018801,0.0000018781, -0.0000018759,0.0000018732,0.0000018700,0.0000018662,0.0000018620, -0.0000018578,0.0000018549,0.0000018543,0.0000018553,0.0000018586, -0.0000018630,0.0000018677,0.0000018720,0.0000018755,0.0000018781, -0.0000018799,0.0000018817,0.0000018836,0.0000018854,0.0000018877, -0.0000018913,0.0000018956,0.0000019000,0.0000019037,0.0000019062, -0.0000019080,0.0000019092,0.0000019098,0.0000019111,0.0000019134, -0.0000019156,0.0000019168,0.0000019178,0.0000019193,0.0000019209, -0.0000019211,0.0000019184,0.0000019133,0.0000019078,0.0000019040, -0.0000019021,0.0000019009,0.0000018992,0.0000018975,0.0000018957, -0.0000018936,0.0000018908,0.0000018864,0.0000018804,0.0000018759, -0.0000018762,0.0000018781,0.0000018760,0.0000018697,0.0000018638, -0.0000018598,0.0000018544,0.0000018472,0.0000018429,0.0000018446, -0.0000018492,0.0000018528,0.0000018541,0.0000018553,0.0000018543, -0.0000018537,0.0000018477,0.0000018438,0.0000018430,0.0000018412, -0.0000018381,0.0000018368,0.0000018347,0.0000018331,0.0000018351, -0.0000018404,0.0000018392,0.0000018357,0.0000018300,0.0000018240, -0.0000018235,0.0000018278,0.0000018324,0.0000018328,0.0000018298, -0.0000018239,0.0000018141,0.0000018032,0.0000017940,0.0000017851, -0.0000017786,0.0000017761,0.0000017763,0.0000017762,0.0000017733, -0.0000017655,0.0000017556,0.0000017509,0.0000017517,0.0000017502, -0.0000017409,0.0000017284,0.0000017226,0.0000017236,0.0000017241, -0.0000017145,0.0000017008,0.0000016967,0.0000016964,0.0000016947, -0.0000016944,0.0000016953,0.0000016951,0.0000016923,0.0000016883, -0.0000016834,0.0000016770,0.0000016723,0.0000016707,0.0000016702, -0.0000016710,0.0000016734,0.0000016759,0.0000016764,0.0000016750, -0.0000016764,0.0000016807,0.0000016814,0.0000016787,0.0000016780, -0.0000016791,0.0000016787,0.0000016776,0.0000016788,0.0000016828, -0.0000016862,0.0000016869,0.0000016866,0.0000016873,0.0000016861, -0.0000016833,0.0000016804,0.0000016679,0.0000016584,0.0000016679, -0.0000016787,0.0000016744,0.0000016719,0.0000016755,0.0000016736, -0.0000016620,0.0000016473,0.0000016362,0.0000016296,0.0000016269, -0.0000016270,0.0000016293,0.0000016329,0.0000016310,0.0000016224, -0.0000016154,0.0000016125,0.0000016106,0.0000016099,0.0000016084, -0.0000016025,0.0000016032,0.0000016089,0.0000016109,0.0000016144, -0.0000016222,0.0000016357,0.0000016489,0.0000016526,0.0000016514, -0.0000016491,0.0000016490,0.0000016507,0.0000016526,0.0000016536, -0.0000016543,0.0000016547,0.0000016553,0.0000016531,0.0000016494, -0.0000016484,0.0000016497,0.0000016516,0.0000016520,0.0000016507, -0.0000016489,0.0000016495,0.0000016523,0.0000016552,0.0000016579, -0.0000016633,0.0000016730,0.0000016842,0.0000016897,0.0000016885, -0.0000016901,0.0000017141,0.0000017521,0.0000017746,0.0000017760, -0.0000017671,0.0000017568,0.0000017525,0.0000017534,0.0000017592, -0.0000017655,0.0000017703,0.0000017750,0.0000017798,0.0000017858, -0.0000017922,0.0000017973,0.0000017995,0.0000017983,0.0000017956, -0.0000017925,0.0000017963,0.0000018031,0.0000018099,0.0000018116, -0.0000018094,0.0000018085,0.0000018108,0.0000018122,0.0000018104, -0.0000018091,0.0000018118,0.0000018142,0.0000018113,0.0000018030, -0.0000017937,0.0000017847,0.0000017795,0.0000017781,0.0000017736, -0.0000017695,0.0000017708,0.0000017697,0.0000017686,0.0000017603, -0.0000017578,0.0000017670,0.0000017671,0.0000017721,0.0000017771, -0.0000017752,0.0000017754,0.0000017678,0.0000017622,0.0000017637, -0.0000017701,0.0000017822,0.0000017997,0.0000018202,0.0000018324, -0.0000018432,0.0000018518,0.0000018597,0.0000018684,0.0000018714, -0.0000018734,0.0000018760,0.0000018781,0.0000018788,0.0000018779, -0.0000018764,0.0000018764,0.0000018779,0.0000018798,0.0000018825, -0.0000018852,0.0000018875,0.0000018889,0.0000018908,0.0000018935, -0.0000018956,0.0000018970,0.0000018970,0.0000018939,0.0000018862, -0.0000018740,0.0000018586,0.0000018417,0.0000018251,0.0000018110, -0.0000018014,0.0000017971,0.0000017975,0.0000018023,0.0000018093, -0.0000018171,0.0000018244,0.0000018293,0.0000018293,0.0000018231, -0.0000018133,0.0000018078,0.0000018026,0.0000017981,0.0000017963, -0.0000017925,0.0000017890,0.0000017880,0.0000017779,0.0000017552, -0.0000017211,0.0000017026,0.0000017067,0.0000017162,0.0000017264, -0.0000017302,0.0000017224,0.0000017124,0.0000017077,0.0000017077, -0.0000017102,0.0000017140,0.0000017178,0.0000017197,0.0000017206, -0.0000017223,0.0000017273,0.0000017388,0.0000017482,0.0000017442, -0.0000017350,0.0000017287,0.0000017083,0.0000016780,0.0000016607, -0.0000016658,0.0000017054,0.0000017563,0.0000017852,0.0000017961, -0.0000018024,0.0000018073,0.0000018115,0.0000018145,0.0000018153, -0.0000018147,0.0000018132,0.0000018120,0.0000018115,0.0000018113, -0.0000018108,0.0000018094,0.0000018072,0.0000018043,0.0000018000, -0.0000017919,0.0000017769,0.0000017564,0.0000017399,0.0000017349, -0.0000017355,0.0000017396,0.0000017454,0.0000017476,0.0000017402, -0.0000017200,0.0000016944,0.0000016939,0.0000017286,0.0000017697, -0.0000017814,0.0000017724,0.0000017724,0.0000017859,0.0000017843, -0.0000017732,0.0000017660,0.0000017616,0.0000017630,0.0000017597, -0.0000017557,0.0000017677,0.0000017915,0.0000017919,0.0000017628, -0.0000017407,0.0000017646,0.0000017766,0.0000017869,0.0000017910, -0.0000018062,0.0000018802,0.0000019445,0.0000019350,0.0000019355, -0.0000019761,0.0000019977,0.0000020090,0.0000019910,0.0000019508, -0.0000019540,0.0000019736,0.0000019408,0.0000019500,0.0000019518, -0.0000019433,0.0000019436,0.0000019486,0.0000019563,0.0000019617, -0.0000019648,0.0000019616,0.0000019491,0.0000019440,0.0000019447, -0.0000019332,0.0000019143,0.0000019202,0.0000019280,0.0000019310, -0.0000019590,0.0000019925,0.0000019921,0.0000019805,0.0000019815, -0.0000019942,0.0000020016,0.0000020047,0.0000020059,0.0000020066, -0.0000020082,0.0000020109,0.0000020127,0.0000020156,0.0000020188, -0.0000020179,0.0000020019,0.0000019809,0.0000019856,0.0000019970, -0.0000019903,0.0000019652,0.0000019419,0.0000019577,0.0000019947, -0.0000019983,0.0000019795,0.0000019705,0.0000019731,0.0000019818, -0.0000019926,0.0000020000,0.0000020077,0.0000020172,0.0000020234, -0.0000020239,0.0000020206,0.0000020158,0.0000020114,0.0000020084, -0.0000020084,0.0000020142,0.0000020234,0.0000020291,0.0000020300, -0.0000020273,0.0000020224,0.0000020193,0.0000020202,0.0000020222, -0.0000020157,0.0000019607,0.0000018893,0.0000018427,0.0000018312, -0.0000018512,0.0000018506,0.0000018473,0.0000018778,0.0000018846, -0.0000018610,0.0000018455,0.0000018449,0.0000018538,0.0000018631, -0.0000018476,0.0000018110,0.0000017977,0.0000018140,0.0000018321, -0.0000018390,0.0000018330,0.0000018391,0.0000018369,0.0000018311, -0.0000018193,0.0000018328,0.0000018992,0.0000019015,0.0000018734, -0.0000018538,0.0000018473,0.0000018477,0.0000018513,0.0000018551, -0.0000018573,0.0000018581,0.0000018587,0.0000018601,0.0000018624, -0.0000018656,0.0000018701,0.0000018730,0.0000018725,0.0000018691, -0.0000018656,0.0000018663,0.0000018723,0.0000018764,0.0000018720, -0.0000018672,0.0000018744,0.0000018828,0.0000018791,0.0000018758, -0.0000018791,0.0000018822,0.0000018842,0.0000018843,0.0000018811, -0.0000018752,0.0000018654,0.0000018599,0.0000018679,0.0000018718, -0.0000018616,0.0000018455,0.0000018364,0.0000018399,0.0000018531, -0.0000018684,0.0000018877,0.0000019065,0.0000019051,0.0000018728, -0.0000018044,0.0000017325,0.0000016910,0.0000016838,0.0000016807, -0.0000016757,0.0000016657,0.0000016587,0.0000016587,0.0000016630, -0.0000016663,0.0000016686,0.0000016647,0.0000016549,0.0000016410, -0.0000016272,0.0000016190,0.0000016154,0.0000016163,0.0000016177, -0.0000016181,0.0000016188,0.0000016186,0.0000016172,0.0000016147, -0.0000016150,0.0000016211,0.0000016313,0.0000016378,0.0000016379, -0.0000016351,0.0000016326,0.0000016304,0.0000016286,0.0000016284, -0.0000016294,0.0000016301,0.0000016292,0.0000016263,0.0000016220, -0.0000016191,0.0000016187,0.0000016177,0.0000016144,0.0000016110, -0.0000016112,0.0000016220,0.0000016369,0.0000016417,0.0000016358, -0.0000016229,0.0000016172,0.0000016289,0.0000016458,0.0000016469, -0.0000016429,0.0000016447,0.0000016500,0.0000016711,0.0000017287, -0.0000017961,0.0000018316,0.0000018426,0.0000018449,0.0000018243, -0.0000017712,0.0000017294,0.0000017225,0.0000017260,0.0000017281, -0.0000017301,0.0000017358,0.0000017438,0.0000017498,0.0000017524, -0.0000017462,0.0000017247,0.0000017028,0.0000017098,0.0000017621, -0.0000018227,0.0000018407,0.0000018236,0.0000018020,0.0000017954, -0.0000018005,0.0000018042,0.0000018076,0.0000018167,0.0000018314, -0.0000018449,0.0000018517,0.0000018517,0.0000018462,0.0000018356, -0.0000018239,0.0000018165,0.0000018143,0.0000018141,0.0000018126, -0.0000018154,0.0000018394,0.0000018723,0.0000018678,0.0000018141, -0.0000017743,0.0000017681,0.0000017698,0.0000017695,0.0000017661, -0.0000017618,0.0000017596,0.0000017606,0.0000017622,0.0000017629, -0.0000017626,0.0000017603,0.0000017573,0.0000017563,0.0000017580, -0.0000017626,0.0000017703,0.0000017769,0.0000017794,0.0000017791, -0.0000017771,0.0000017743,0.0000017716,0.0000017690,0.0000017686, -0.0000017698,0.0000017724,0.0000017752,0.0000017756,0.0000017755, -0.0000017694,0.0000017601,0.0000017477,0.0000017351,0.0000017370, -0.0000017500,0.0000017975,0.0000018601,0.0000019086,0.0000019321, -0.0000019437,0.0000019552,0.0000019659,0.0000019750,0.0000019827, -0.0000019893,0.0000019948,0.0000019992,0.0000020028,0.0000020051, -0.0000020044,0.0000020008,0.0000019951,0.0000019886,0.0000019815, -0.0000019753,0.0000019714,0.0000019696,0.0000019692,0.0000019681, -0.0000019658,0.0000019627,0.0000019594,0.0000019558,0.0000019521, -0.0000019484,0.0000019449,0.0000019410,0.0000019370,0.0000019338, -0.0000019311,0.0000019298,0.0000019302,0.0000019311,0.0000019319, -0.0000019326,0.0000019345,0.0000019373,0.0000019377,0.0000019328, -0.0000019267,0.0000019235,0.0000019213,0.0000019253,0.0000019338, -0.0000019388,0.0000019384,0.0000019369,0.0000019363,0.0000019375, -0.0000019364,0.0000019314,0.0000019271,0.0000019254,0.0000019236, -0.0000019210,0.0000019189,0.0000019174,0.0000019142,0.0000019075, -0.0000018992,0.0000018897,0.0000018810,0.0000018735,0.0000018681, -0.0000018681,0.0000018747,0.0000018833,0.0000018912,0.0000018973, -0.0000019020,0.0000019052,0.0000019055,0.0000019039,0.0000019025, -0.0000019023,0.0000019022,0.0000019019,0.0000019006,0.0000018991, -0.0000018972,0.0000018947,0.0000018923,0.0000018902,0.0000018882, -0.0000018861,0.0000018838,0.0000018810,0.0000018775,0.0000018737, -0.0000018697,0.0000018654,0.0000018605,0.0000018567,0.0000018549, -0.0000018545,0.0000018552,0.0000018569,0.0000018596,0.0000018625, -0.0000018644,0.0000018653,0.0000018662,0.0000018672,0.0000018681, -0.0000018685,0.0000018693,0.0000018716,0.0000018745,0.0000018778, -0.0000018810,0.0000018836,0.0000018857,0.0000018875,0.0000018893, -0.0000018924,0.0000018967,0.0000019009,0.0000019039,0.0000019061, -0.0000019076,0.0000019087,0.0000019084,0.0000019053,0.0000019006, -0.0000018961,0.0000018931,0.0000018915,0.0000018899,0.0000018881, -0.0000018865,0.0000018847,0.0000018826,0.0000018805,0.0000018771, -0.0000018730,0.0000018711,0.0000018725,0.0000018739,0.0000018706, -0.0000018625,0.0000018560,0.0000018528,0.0000018489,0.0000018440, -0.0000018418,0.0000018449,0.0000018515,0.0000018564,0.0000018575, -0.0000018574,0.0000018565,0.0000018546,0.0000018495,0.0000018454, -0.0000018453,0.0000018432,0.0000018404,0.0000018389,0.0000018365, -0.0000018347,0.0000018360,0.0000018409,0.0000018398,0.0000018354, -0.0000018302,0.0000018265,0.0000018283,0.0000018349,0.0000018398, -0.0000018394,0.0000018358,0.0000018271,0.0000018153,0.0000018023, -0.0000017903,0.0000017815,0.0000017783,0.0000017783,0.0000017789, -0.0000017780,0.0000017732,0.0000017655,0.0000017580,0.0000017549, -0.0000017551,0.0000017523,0.0000017424,0.0000017307,0.0000017250, -0.0000017261,0.0000017269,0.0000017184,0.0000017049,0.0000016986, -0.0000016970,0.0000016954,0.0000016953,0.0000016955,0.0000016939, -0.0000016899,0.0000016855,0.0000016797,0.0000016733,0.0000016702, -0.0000016702,0.0000016705,0.0000016723,0.0000016753,0.0000016769, -0.0000016758,0.0000016755,0.0000016794,0.0000016814,0.0000016794, -0.0000016785,0.0000016805,0.0000016817,0.0000016800,0.0000016783, -0.0000016797,0.0000016837,0.0000016863,0.0000016856,0.0000016845, -0.0000016838,0.0000016822,0.0000016815,0.0000016756,0.0000016607, -0.0000016577,0.0000016720,0.0000016783,0.0000016723,0.0000016696, -0.0000016697,0.0000016651,0.0000016547,0.0000016435,0.0000016340, -0.0000016284,0.0000016268,0.0000016274,0.0000016311,0.0000016325, -0.0000016260,0.0000016169,0.0000016125,0.0000016109,0.0000016095, -0.0000016092,0.0000016049,0.0000016021,0.0000016075,0.0000016110, -0.0000016136,0.0000016216,0.0000016352,0.0000016485,0.0000016517, -0.0000016488,0.0000016463,0.0000016468,0.0000016482,0.0000016493, -0.0000016491,0.0000016481,0.0000016486,0.0000016524,0.0000016562, -0.0000016566,0.0000016527,0.0000016491,0.0000016484,0.0000016495, -0.0000016505,0.0000016502,0.0000016500,0.0000016507,0.0000016526, -0.0000016547,0.0000016578,0.0000016644,0.0000016755,0.0000016864, -0.0000016897,0.0000016867,0.0000016883,0.0000017154,0.0000017555, -0.0000017778,0.0000017785,0.0000017686,0.0000017580,0.0000017518, -0.0000017521,0.0000017585,0.0000017675,0.0000017749,0.0000017808, -0.0000017851,0.0000017890,0.0000017924,0.0000017943,0.0000017938, -0.0000017918,0.0000017942,0.0000017992,0.0000018064,0.0000018111, -0.0000018103,0.0000018061,0.0000018056,0.0000018094,0.0000018108, -0.0000018086,0.0000018069,0.0000018092,0.0000018119,0.0000018098, -0.0000018029,0.0000017932,0.0000017812,0.0000017731,0.0000017729, -0.0000017724,0.0000017700,0.0000017700,0.0000017682,0.0000017674, -0.0000017602,0.0000017544,0.0000017643,0.0000017666,0.0000017702, -0.0000017756,0.0000017735,0.0000017732,0.0000017669,0.0000017628, -0.0000017650,0.0000017702,0.0000017827,0.0000018008,0.0000018208, -0.0000018333,0.0000018443,0.0000018519,0.0000018587,0.0000018670, -0.0000018699,0.0000018712,0.0000018739,0.0000018761,0.0000018772, -0.0000018785,0.0000018803,0.0000018819,0.0000018834,0.0000018856, -0.0000018882,0.0000018907,0.0000018920,0.0000018929,0.0000018939, -0.0000018937,0.0000018908,0.0000018837,0.0000018716,0.0000018548, -0.0000018349,0.0000018148,0.0000017959,0.0000017794,0.0000017651, -0.0000017540,0.0000017479,0.0000017471,0.0000017507,0.0000017580, -0.0000017677,0.0000017794,0.0000017920,0.0000018025,0.0000018080, -0.0000018059,0.0000018005,0.0000017985,0.0000017968,0.0000017973, -0.0000017973,0.0000017926,0.0000017903,0.0000017891,0.0000017758, -0.0000017457,0.0000017111,0.0000017050,0.0000017184,0.0000017321, -0.0000017379,0.0000017319,0.0000017199,0.0000017138,0.0000017127, -0.0000017131,0.0000017158,0.0000017196,0.0000017215,0.0000017223, -0.0000017243,0.0000017299,0.0000017417,0.0000017495,0.0000017447, -0.0000017354,0.0000017281,0.0000017062,0.0000016766,0.0000016602, -0.0000016539,0.0000016619,0.0000017025,0.0000017542,0.0000017844, -0.0000017955,0.0000018006,0.0000018042,0.0000018073,0.0000018095, -0.0000018100,0.0000018094,0.0000018083,0.0000018071,0.0000018057, -0.0000018039,0.0000018020,0.0000018000,0.0000017972,0.0000017916, -0.0000017807,0.0000017645,0.0000017486,0.0000017405,0.0000017385, -0.0000017429,0.0000017498,0.0000017544,0.0000017489,0.0000017310, -0.0000017024,0.0000016867,0.0000017077,0.0000017514,0.0000017798, -0.0000017801,0.0000017739,0.0000017836,0.0000017885,0.0000017794, -0.0000017702,0.0000017633,0.0000017608,0.0000017596,0.0000017555, -0.0000017571,0.0000017767,0.0000017948,0.0000017795,0.0000017497, -0.0000017482,0.0000017716,0.0000017802,0.0000017880,0.0000017940, -0.0000018323,0.0000019140,0.0000019447,0.0000019339,0.0000019491, -0.0000019895,0.0000020042,0.0000020066,0.0000019771,0.0000019491, -0.0000019685,0.0000019619,0.0000019398,0.0000019532,0.0000019451, -0.0000019408,0.0000019425,0.0000019489,0.0000019569,0.0000019624, -0.0000019651,0.0000019626,0.0000019515,0.0000019442,0.0000019447, -0.0000019382,0.0000019211,0.0000019217,0.0000019295,0.0000019294, -0.0000019493,0.0000019873,0.0000019953,0.0000019834,0.0000019774, -0.0000019825,0.0000019902,0.0000019957,0.0000019993,0.0000020028, -0.0000020081,0.0000020147,0.0000020209,0.0000020233,0.0000020218, -0.0000020095,0.0000019873,0.0000019824,0.0000019947,0.0000019954, -0.0000019741,0.0000019477,0.0000019503,0.0000019871,0.0000020030, -0.0000019875,0.0000019738,0.0000019718,0.0000019769,0.0000019872, -0.0000019967,0.0000020037,0.0000020129,0.0000020225,0.0000020270, -0.0000020259,0.0000020219,0.0000020170,0.0000020123,0.0000020104, -0.0000020132,0.0000020203,0.0000020263,0.0000020281,0.0000020265, -0.0000020220,0.0000020190,0.0000020200,0.0000020214,0.0000020182, -0.0000019683,0.0000018965,0.0000018483,0.0000018249,0.0000018459, -0.0000018558,0.0000018419,0.0000018619,0.0000018851,0.0000018712, -0.0000018498,0.0000018438,0.0000018482,0.0000018604,0.0000018564, -0.0000018236,0.0000017987,0.0000018056,0.0000018271,0.0000018401, -0.0000018350,0.0000018340,0.0000018316,0.0000018282,0.0000018179, -0.0000018345,0.0000018991,0.0000018888,0.0000018510,0.0000018291, -0.0000018183,0.0000018172,0.0000018207,0.0000018285,0.0000018384, -0.0000018464,0.0000018515,0.0000018543,0.0000018566,0.0000018592, -0.0000018619,0.0000018639,0.0000018624,0.0000018577,0.0000018523, -0.0000018501,0.0000018543,0.0000018658,0.0000018735,0.0000018688, -0.0000018637,0.0000018716,0.0000018796,0.0000018780,0.0000018768, -0.0000018789,0.0000018801,0.0000018791,0.0000018744,0.0000018665, -0.0000018621,0.0000018670,0.0000018687,0.0000018569,0.0000018403, -0.0000018348,0.0000018428,0.0000018564,0.0000018734,0.0000018958, -0.0000019120,0.0000019078,0.0000018638,0.0000017919,0.0000017237, -0.0000016908,0.0000016877,0.0000016849,0.0000016786,0.0000016674, -0.0000016602,0.0000016606,0.0000016645,0.0000016668,0.0000016663, -0.0000016617,0.0000016534,0.0000016429,0.0000016332,0.0000016261, -0.0000016224,0.0000016208,0.0000016193,0.0000016189,0.0000016184, -0.0000016185,0.0000016199,0.0000016234,0.0000016238,0.0000016217, -0.0000016225,0.0000016305,0.0000016388,0.0000016404,0.0000016376, -0.0000016339,0.0000016306,0.0000016298,0.0000016330,0.0000016374, -0.0000016393,0.0000016383,0.0000016333,0.0000016258,0.0000016188, -0.0000016157,0.0000016145,0.0000016135,0.0000016127,0.0000016181, -0.0000016299,0.0000016400,0.0000016397,0.0000016312,0.0000016229, -0.0000016245,0.0000016379,0.0000016443,0.0000016407,0.0000016391, -0.0000016417,0.0000016541,0.0000016974,0.0000017650,0.0000018142, -0.0000018312,0.0000018381,0.0000018339,0.0000017936,0.0000017372, -0.0000017115,0.0000017113,0.0000017130,0.0000017144,0.0000017180, -0.0000017236,0.0000017296,0.0000017349,0.0000017400,0.0000017411, -0.0000017295,0.0000017073,0.0000016998,0.0000017322,0.0000017956, -0.0000018348,0.0000018344,0.0000018137,0.0000017960,0.0000017947, -0.0000017990,0.0000018022,0.0000018026,0.0000018036,0.0000018057, -0.0000018065,0.0000018051,0.0000018021,0.0000018001,0.0000018014, -0.0000018073,0.0000018133,0.0000018140,0.0000018145,0.0000018147, -0.0000018246,0.0000018542,0.0000018718,0.0000018487,0.0000018037, -0.0000017807,0.0000017754,0.0000017749,0.0000017732,0.0000017701, -0.0000017676,0.0000017676,0.0000017692,0.0000017707,0.0000017711, -0.0000017693,0.0000017659,0.0000017646,0.0000017667,0.0000017758, -0.0000017895,0.0000018014,0.0000018055,0.0000018041,0.0000017969, -0.0000017881,0.0000017805,0.0000017744,0.0000017700,0.0000017673, -0.0000017672,0.0000017701,0.0000017732,0.0000017752,0.0000017757, -0.0000017757,0.0000017750,0.0000017631,0.0000017466,0.0000017294, -0.0000017385,0.0000017938,0.0000018645,0.0000019109,0.0000019283, -0.0000019411,0.0000019547,0.0000019669,0.0000019769,0.0000019851, -0.0000019929,0.0000019998,0.0000020042,0.0000020053,0.0000020023, -0.0000019953,0.0000019863,0.0000019783,0.0000019730,0.0000019704, -0.0000019697,0.0000019697,0.0000019696,0.0000019678,0.0000019645, -0.0000019611,0.0000019587,0.0000019573,0.0000019563,0.0000019544, -0.0000019517,0.0000019488,0.0000019466,0.0000019454,0.0000019451, -0.0000019454,0.0000019454,0.0000019442,0.0000019435,0.0000019447, -0.0000019473,0.0000019491,0.0000019471,0.0000019399,0.0000019330, -0.0000019302,0.0000019291,0.0000019310,0.0000019379,0.0000019436, -0.0000019453,0.0000019436,0.0000019410,0.0000019408,0.0000019410, -0.0000019367,0.0000019305,0.0000019267,0.0000019236,0.0000019200, -0.0000019180,0.0000019178,0.0000019180,0.0000019167,0.0000019124, -0.0000019055,0.0000018968,0.0000018872,0.0000018795,0.0000018770, -0.0000018794,0.0000018856,0.0000018927,0.0000018998,0.0000019062, -0.0000019109,0.0000019126,0.0000019126,0.0000019124,0.0000019122, -0.0000019121,0.0000019119,0.0000019121,0.0000019117,0.0000019097, -0.0000019064,0.0000019029,0.0000018992,0.0000018956,0.0000018925, -0.0000018898,0.0000018872,0.0000018842,0.0000018808,0.0000018761, -0.0000018706,0.0000018657,0.0000018626,0.0000018608,0.0000018602, -0.0000018603,0.0000018611,0.0000018626,0.0000018640,0.0000018649, -0.0000018658,0.0000018669,0.0000018677,0.0000018681,0.0000018684, -0.0000018693,0.0000018711,0.0000018735,0.0000018762,0.0000018784, -0.0000018793,0.0000018792,0.0000018791,0.0000018801,0.0000018824, -0.0000018844,0.0000018851,0.0000018853,0.0000018856,0.0000018857, -0.0000018850,0.0000018831,0.0000018807,0.0000018788,0.0000018777, -0.0000018772,0.0000018763,0.0000018752,0.0000018747,0.0000018743, -0.0000018738,0.0000018734,0.0000018713,0.0000018682,0.0000018663, -0.0000018666,0.0000018663,0.0000018619,0.0000018544,0.0000018510, -0.0000018500,0.0000018486,0.0000018453,0.0000018443,0.0000018477, -0.0000018548,0.0000018605,0.0000018614,0.0000018589,0.0000018578, -0.0000018559,0.0000018522,0.0000018475,0.0000018479,0.0000018454, -0.0000018429,0.0000018407,0.0000018375,0.0000018354,0.0000018368, -0.0000018417,0.0000018406,0.0000018352,0.0000018316,0.0000018308, -0.0000018353,0.0000018428,0.0000018466,0.0000018462,0.0000018402, -0.0000018282,0.0000018134,0.0000017982,0.0000017867,0.0000017827, -0.0000017830,0.0000017839,0.0000017834,0.0000017804,0.0000017759, -0.0000017710,0.0000017644,0.0000017588,0.0000017566,0.0000017534, -0.0000017449,0.0000017339,0.0000017275,0.0000017286,0.0000017304, -0.0000017239,0.0000017097,0.0000016997,0.0000016971,0.0000016969, -0.0000016976,0.0000016968,0.0000016931,0.0000016880,0.0000016830, -0.0000016767,0.0000016714,0.0000016704,0.0000016708,0.0000016715, -0.0000016739,0.0000016767,0.0000016766,0.0000016752,0.0000016777, -0.0000016811,0.0000016804,0.0000016796,0.0000016821,0.0000016853, -0.0000016848,0.0000016818,0.0000016800,0.0000016809,0.0000016841, -0.0000016853,0.0000016836,0.0000016815,0.0000016802,0.0000016803, -0.0000016796,0.0000016685,0.0000016558,0.0000016603,0.0000016751, -0.0000016770,0.0000016705,0.0000016670,0.0000016643,0.0000016577, -0.0000016489,0.0000016393,0.0000016314,0.0000016276,0.0000016269, -0.0000016288,0.0000016320,0.0000016295,0.0000016198,0.0000016130, -0.0000016116,0.0000016103,0.0000016096,0.0000016076,0.0000016028, -0.0000016056,0.0000016108,0.0000016132,0.0000016204,0.0000016336, -0.0000016473,0.0000016511,0.0000016484,0.0000016474,0.0000016492, -0.0000016502,0.0000016494,0.0000016477,0.0000016446,0.0000016428, -0.0000016447,0.0000016505,0.0000016564,0.0000016585,0.0000016546, -0.0000016486,0.0000016461,0.0000016460,0.0000016467,0.0000016479, -0.0000016501,0.0000016530,0.0000016553,0.0000016567,0.0000016597, -0.0000016673,0.0000016794,0.0000016887,0.0000016886,0.0000016813, -0.0000016862,0.0000017188,0.0000017601,0.0000017803,0.0000017799, -0.0000017700,0.0000017596,0.0000017527,0.0000017522,0.0000017583, -0.0000017688,0.0000017792,0.0000017860,0.0000017904,0.0000017930, -0.0000017944,0.0000017941,0.0000017927,0.0000017982,0.0000018017, -0.0000018065,0.0000018087,0.0000018065,0.0000018031,0.0000018046, -0.0000018090,0.0000018092,0.0000018048,0.0000018025,0.0000018052, -0.0000018086,0.0000018075,0.0000018017,0.0000017916,0.0000017782, -0.0000017685,0.0000017687,0.0000017708,0.0000017708,0.0000017701, -0.0000017667,0.0000017663,0.0000017608,0.0000017518,0.0000017605, -0.0000017661,0.0000017688,0.0000017738,0.0000017717,0.0000017709, -0.0000017656,0.0000017632,0.0000017664,0.0000017705,0.0000017829, -0.0000018018,0.0000018218,0.0000018342,0.0000018453,0.0000018523, -0.0000018572,0.0000018653,0.0000018691,0.0000018699,0.0000018721, -0.0000018744,0.0000018757,0.0000018776,0.0000018808,0.0000018841, -0.0000018871,0.0000018890,0.0000018900,0.0000018902,0.0000018895, -0.0000018869,0.0000018806,0.0000018687,0.0000018509,0.0000018301, -0.0000018091,0.0000017897,0.0000017729,0.0000017592,0.0000017481, -0.0000017390,0.0000017310,0.0000017245,0.0000017221,0.0000017234, -0.0000017275,0.0000017335,0.0000017420,0.0000017538,0.0000017678, -0.0000017812,0.0000017904,0.0000017923,0.0000017906,0.0000017923, -0.0000017947,0.0000017985,0.0000017985,0.0000017929,0.0000017919, -0.0000017901,0.0000017717,0.0000017338,0.0000017066,0.0000017129, -0.0000017330,0.0000017443,0.0000017414,0.0000017297,0.0000017213, -0.0000017189,0.0000017180,0.0000017188,0.0000017217,0.0000017232, -0.0000017235,0.0000017257,0.0000017327,0.0000017450,0.0000017516, -0.0000017458,0.0000017360,0.0000017256,0.0000017019,0.0000016743, -0.0000016601,0.0000016544,0.0000016514,0.0000016582,0.0000016964, -0.0000017488,0.0000017815,0.0000017938,0.0000017988,0.0000018014, -0.0000018029,0.0000018037,0.0000018037,0.0000018033,0.0000018026, -0.0000018015,0.0000017999,0.0000017979,0.0000017952,0.0000017904, -0.0000017817,0.0000017690,0.0000017558,0.0000017464,0.0000017436, -0.0000017471,0.0000017541,0.0000017593,0.0000017552,0.0000017391, -0.0000017116,0.0000016893,0.0000016901,0.0000017304,0.0000017732, -0.0000017849,0.0000017790,0.0000017822,0.0000017919,0.0000017855, -0.0000017749,0.0000017668,0.0000017608,0.0000017584,0.0000017534, -0.0000017523,0.0000017634,0.0000017850,0.0000017916,0.0000017645, -0.0000017408,0.0000017580,0.0000017756,0.0000017833,0.0000017893, -0.0000018014,0.0000018622,0.0000019370,0.0000019416,0.0000019373, -0.0000019640,0.0000019965,0.0000020062,0.0000019999,0.0000019663, -0.0000019550,0.0000019732,0.0000019486,0.0000019443,0.0000019510, -0.0000019406,0.0000019404,0.0000019431,0.0000019515,0.0000019592, -0.0000019634,0.0000019645,0.0000019598,0.0000019505,0.0000019447, -0.0000019446,0.0000019397,0.0000019263,0.0000019259,0.0000019318, -0.0000019289,0.0000019437,0.0000019814,0.0000019968,0.0000019895, -0.0000019792,0.0000019769,0.0000019782,0.0000019806,0.0000019848, -0.0000019915,0.0000020030,0.0000020169,0.0000020256,0.0000020263, -0.0000020169,0.0000019941,0.0000019813,0.0000019900,0.0000019969, -0.0000019846,0.0000019564,0.0000019438,0.0000019725,0.0000020018, -0.0000019969,0.0000019805,0.0000019736,0.0000019751,0.0000019829, -0.0000019934,0.0000020012,0.0000020087,0.0000020184,0.0000020262, -0.0000020287,0.0000020278,0.0000020240,0.0000020187,0.0000020151, -0.0000020158,0.0000020195,0.0000020230,0.0000020252,0.0000020244, -0.0000020200,0.0000020174,0.0000020191,0.0000020212,0.0000020198, -0.0000019766,0.0000019034,0.0000018551,0.0000018241,0.0000018349, -0.0000018607,0.0000018476,0.0000018472,0.0000018750,0.0000018785, -0.0000018580,0.0000018447,0.0000018445,0.0000018547,0.0000018603, -0.0000018372,0.0000018030,0.0000018000,0.0000018195,0.0000018377, -0.0000018377,0.0000018314,0.0000018270,0.0000018248,0.0000018168, -0.0000018354,0.0000018998,0.0000018732,0.0000018328,0.0000018177, -0.0000018095,0.0000018056,0.0000018034,0.0000018027,0.0000018087, -0.0000018200,0.0000018317,0.0000018418,0.0000018492,0.0000018546, -0.0000018584,0.0000018595,0.0000018571,0.0000018503,0.0000018424, -0.0000018364,0.0000018363,0.0000018442,0.0000018595,0.0000018701, -0.0000018659,0.0000018609,0.0000018665,0.0000018749,0.0000018768, -0.0000018762,0.0000018752,0.0000018711,0.0000018648,0.0000018626, -0.0000018665,0.0000018659,0.0000018523,0.0000018358,0.0000018333, -0.0000018432,0.0000018566,0.0000018776,0.0000019048,0.0000019131, -0.0000019005,0.0000018513,0.0000017785,0.0000017174,0.0000016920, -0.0000016904,0.0000016881,0.0000016805,0.0000016679,0.0000016598, -0.0000016605,0.0000016632,0.0000016645,0.0000016623,0.0000016583, -0.0000016518,0.0000016435,0.0000016350,0.0000016273,0.0000016218, -0.0000016187,0.0000016161,0.0000016151,0.0000016145,0.0000016148, -0.0000016152,0.0000016161,0.0000016199,0.0000016255,0.0000016302, -0.0000016298,0.0000016327,0.0000016400,0.0000016434,0.0000016414, -0.0000016368,0.0000016346,0.0000016372,0.0000016431,0.0000016472, -0.0000016475,0.0000016459,0.0000016428,0.0000016372,0.0000016296, -0.0000016228,0.0000016193,0.0000016190,0.0000016223,0.0000016299, -0.0000016381,0.0000016405,0.0000016351,0.0000016279,0.0000016270, -0.0000016342,0.0000016403,0.0000016386,0.0000016355,0.0000016365, -0.0000016438,0.0000016742,0.0000017338,0.0000017915,0.0000018175, -0.0000018265,0.0000018324,0.0000018225,0.0000017737,0.0000017204, -0.0000017032,0.0000017032,0.0000017025,0.0000017039,0.0000017085, -0.0000017122,0.0000017139,0.0000017158,0.0000017205,0.0000017282, -0.0000017281,0.0000017121,0.0000016978,0.0000017089,0.0000017634, -0.0000018197,0.0000018382,0.0000018267,0.0000018039,0.0000017931, -0.0000017928,0.0000017961,0.0000017978,0.0000017972,0.0000017956, -0.0000017940,0.0000017926,0.0000017925,0.0000017945,0.0000017987, -0.0000018050,0.0000018094,0.0000018103,0.0000018126,0.0000018162, -0.0000018190,0.0000018344,0.0000018596,0.0000018608,0.0000018405, -0.0000018152,0.0000018014,0.0000017970,0.0000017947,0.0000017937, -0.0000017931,0.0000017939,0.0000017961,0.0000017985,0.0000018007, -0.0000018021,0.0000018021,0.0000018023,0.0000018045,0.0000018122, -0.0000018240,0.0000018346,0.0000018376,0.0000018339,0.0000018202, -0.0000018027,0.0000017889,0.0000017806,0.0000017743,0.0000017686, -0.0000017650,0.0000017654,0.0000017681,0.0000017695,0.0000017694, -0.0000017707,0.0000017742,0.0000017789,0.0000017767,0.0000017502, -0.0000017250,0.0000017463,0.0000018156,0.0000018865,0.0000019151, -0.0000019278,0.0000019430,0.0000019577,0.0000019703,0.0000019804, -0.0000019904,0.0000020002,0.0000020061,0.0000020070,0.0000020017, -0.0000019923,0.0000019831,0.0000019765,0.0000019731,0.0000019719, -0.0000019717,0.0000019718,0.0000019708,0.0000019681,0.0000019652, -0.0000019637,0.0000019635,0.0000019637,0.0000019633,0.0000019618, -0.0000019602,0.0000019591,0.0000019588,0.0000019589,0.0000019593, -0.0000019594,0.0000019588,0.0000019589,0.0000019604,0.0000019618, -0.0000019616,0.0000019590,0.0000019522,0.0000019441,0.0000019397, -0.0000019394,0.0000019386,0.0000019389,0.0000019431,0.0000019491, -0.0000019521,0.0000019502,0.0000019460,0.0000019450,0.0000019458, -0.0000019421,0.0000019349,0.0000019291,0.0000019239,0.0000019188, -0.0000019163,0.0000019166,0.0000019196,0.0000019223,0.0000019226, -0.0000019199,0.0000019136,0.0000019051,0.0000018969,0.0000018914, -0.0000018895,0.0000018915,0.0000018965,0.0000019019,0.0000019083, -0.0000019145,0.0000019195,0.0000019214,0.0000019206,0.0000019197, -0.0000019201,0.0000019214,0.0000019224,0.0000019220,0.0000019211, -0.0000019199,0.0000019176,0.0000019136,0.0000019088,0.0000019041, -0.0000019002,0.0000018970,0.0000018938,0.0000018893,0.0000018836, -0.0000018780,0.0000018736,0.0000018701,0.0000018672,0.0000018645, -0.0000018623,0.0000018615,0.0000018617,0.0000018618,0.0000018624, -0.0000018631,0.0000018637,0.0000018640,0.0000018646,0.0000018662, -0.0000018690,0.0000018722,0.0000018755,0.0000018781,0.0000018798, -0.0000018807,0.0000018814,0.0000018828,0.0000018845,0.0000018856, -0.0000018855,0.0000018839,0.0000018813,0.0000018792,0.0000018774, -0.0000018757,0.0000018743,0.0000018732,0.0000018723,0.0000018711, -0.0000018694,0.0000018683,0.0000018689,0.0000018698,0.0000018707, -0.0000018706,0.0000018681,0.0000018648,0.0000018625,0.0000018621, -0.0000018615,0.0000018588,0.0000018548,0.0000018532,0.0000018539, -0.0000018534,0.0000018511,0.0000018501,0.0000018526,0.0000018588, -0.0000018642,0.0000018647,0.0000018611,0.0000018591,0.0000018578, -0.0000018547,0.0000018496,0.0000018502,0.0000018483,0.0000018455, -0.0000018423,0.0000018374,0.0000018349,0.0000018370,0.0000018423, -0.0000018418,0.0000018363,0.0000018352,0.0000018369,0.0000018428, -0.0000018494,0.0000018521,0.0000018503,0.0000018409,0.0000018252, -0.0000018093,0.0000017961,0.0000017897,0.0000017904,0.0000017920, -0.0000017911,0.0000017883,0.0000017849,0.0000017829,0.0000017796, -0.0000017718,0.0000017629,0.0000017575,0.0000017533,0.0000017459, -0.0000017357,0.0000017296,0.0000017305,0.0000017330,0.0000017292, -0.0000017149,0.0000017020,0.0000016987,0.0000017000,0.0000017009, -0.0000016989,0.0000016931,0.0000016867,0.0000016809,0.0000016747, -0.0000016718,0.0000016720,0.0000016719,0.0000016727,0.0000016754, -0.0000016768,0.0000016752,0.0000016759,0.0000016798,0.0000016811, -0.0000016809,0.0000016833,0.0000016874,0.0000016884,0.0000016864, -0.0000016838,0.0000016816,0.0000016812,0.0000016830,0.0000016832, -0.0000016805,0.0000016780,0.0000016779,0.0000016793,0.0000016756, -0.0000016606,0.0000016541,0.0000016643,0.0000016767,0.0000016755, -0.0000016689,0.0000016649,0.0000016599,0.0000016525,0.0000016438, -0.0000016349,0.0000016294,0.0000016273,0.0000016275,0.0000016307, -0.0000016316,0.0000016238,0.0000016142,0.0000016116,0.0000016118, -0.0000016112,0.0000016101,0.0000016051,0.0000016040,0.0000016099, -0.0000016129,0.0000016183,0.0000016308,0.0000016450,0.0000016509, -0.0000016498,0.0000016498,0.0000016516,0.0000016505,0.0000016477, -0.0000016451,0.0000016422,0.0000016403,0.0000016412,0.0000016451, -0.0000016511,0.0000016566,0.0000016586,0.0000016549,0.0000016483, -0.0000016445,0.0000016435,0.0000016444,0.0000016471,0.0000016519, -0.0000016560,0.0000016578,0.0000016585,0.0000016622,0.0000016723, -0.0000016843,0.0000016888,0.0000016827,0.0000016759,0.0000016883, -0.0000017256,0.0000017650,0.0000017820,0.0000017808,0.0000017716, -0.0000017614,0.0000017542,0.0000017533,0.0000017587,0.0000017697, -0.0000017808,0.0000017891,0.0000017938,0.0000017966,0.0000017975, -0.0000017968,0.0000017991,0.0000018009,0.0000018032,0.0000018042, -0.0000018028,0.0000018018,0.0000018046,0.0000018080,0.0000018062, -0.0000018009,0.0000017984,0.0000018016,0.0000018055,0.0000018049, -0.0000017995,0.0000017890,0.0000017762,0.0000017665,0.0000017664, -0.0000017695,0.0000017715,0.0000017706,0.0000017655,0.0000017651, -0.0000017615,0.0000017498,0.0000017559,0.0000017654,0.0000017678, -0.0000017720,0.0000017702,0.0000017684,0.0000017642,0.0000017637, -0.0000017677,0.0000017709,0.0000017829,0.0000018024,0.0000018227, -0.0000018351,0.0000018457,0.0000018528,0.0000018557,0.0000018623, -0.0000018676,0.0000018691,0.0000018709,0.0000018730,0.0000018744, -0.0000018753,0.0000018772,0.0000018791,0.0000018803,0.0000018803, -0.0000018795,0.0000018767,0.0000018693,0.0000018544,0.0000018328, -0.0000018092,0.0000017888,0.0000017727,0.0000017596,0.0000017487, -0.0000017397,0.0000017329,0.0000017280,0.0000017249,0.0000017222, -0.0000017195,0.0000017196,0.0000017220,0.0000017250,0.0000017286, -0.0000017327,0.0000017406,0.0000017520,0.0000017655,0.0000017771, -0.0000017820,0.0000017840,0.0000017898,0.0000017952,0.0000018005, -0.0000018001,0.0000017938,0.0000017938,0.0000017902,0.0000017646, -0.0000017218,0.0000017071,0.0000017255,0.0000017453,0.0000017484, -0.0000017395,0.0000017303,0.0000017264,0.0000017246,0.0000017241, -0.0000017251,0.0000017248,0.0000017244,0.0000017272,0.0000017358, -0.0000017484,0.0000017539,0.0000017473,0.0000017362,0.0000017207, -0.0000016942,0.0000016672,0.0000016502,0.0000016414,0.0000016397, -0.0000016415,0.0000016504,0.0000016862,0.0000017388,0.0000017757, -0.0000017904,0.0000017959,0.0000017987,0.0000017993,0.0000017990, -0.0000017983,0.0000017976,0.0000017966,0.0000017948,0.0000017915, -0.0000017864,0.0000017789,0.0000017696,0.0000017604,0.0000017535, -0.0000017503,0.0000017526,0.0000017583,0.0000017628,0.0000017597, -0.0000017427,0.0000017151,0.0000016888,0.0000016828,0.0000017080, -0.0000017561,0.0000017835,0.0000017840,0.0000017824,0.0000017914, -0.0000017915,0.0000017801,0.0000017709,0.0000017627,0.0000017579, -0.0000017531,0.0000017487,0.0000017539,0.0000017725,0.0000017885, -0.0000017819,0.0000017517,0.0000017424,0.0000017658,0.0000017778, -0.0000017856,0.0000017910,0.0000018145,0.0000018877,0.0000019411, -0.0000019394,0.0000019457,0.0000019769,0.0000020007,0.0000020078, -0.0000019918,0.0000019627,0.0000019643,0.0000019700,0.0000019439, -0.0000019477,0.0000019475,0.0000019402,0.0000019410,0.0000019461, -0.0000019557,0.0000019617,0.0000019632,0.0000019608,0.0000019548, -0.0000019482,0.0000019449,0.0000019448,0.0000019409,0.0000019320, -0.0000019317,0.0000019343,0.0000019286,0.0000019400,0.0000019769, -0.0000019989,0.0000019971,0.0000019880,0.0000019816,0.0000019803, -0.0000019809,0.0000019829,0.0000019884,0.0000020021,0.0000020200, -0.0000020278,0.0000020230,0.0000020027,0.0000019829,0.0000019848, -0.0000019968,0.0000019938,0.0000019705,0.0000019475,0.0000019589, -0.0000019954,0.0000020067,0.0000019918,0.0000019794,0.0000019774, -0.0000019817,0.0000019906,0.0000019999,0.0000020069,0.0000020142, -0.0000020225,0.0000020288,0.0000020310,0.0000020299,0.0000020257, -0.0000020212,0.0000020199,0.0000020211,0.0000020211,0.0000020216, -0.0000020210,0.0000020169,0.0000020148,0.0000020170,0.0000020205, -0.0000020206,0.0000019870,0.0000019131,0.0000018599,0.0000018265, -0.0000018243,0.0000018584,0.0000018593,0.0000018423,0.0000018598, -0.0000018776,0.0000018675,0.0000018496,0.0000018432,0.0000018486, -0.0000018591,0.0000018504,0.0000018143,0.0000017964,0.0000018103, -0.0000018326,0.0000018400,0.0000018312,0.0000018243,0.0000018209, -0.0000018165,0.0000018339,0.0000018999,0.0000018597,0.0000018264, -0.0000018276,0.0000018442,0.0000018487,0.0000018411,0.0000018251, -0.0000018108,0.0000018064,0.0000018112,0.0000018194,0.0000018311, -0.0000018423,0.0000018496,0.0000018520,0.0000018491,0.0000018416, -0.0000018317,0.0000018239,0.0000018215,0.0000018245,0.0000018352, -0.0000018525,0.0000018652,0.0000018650,0.0000018587,0.0000018594, -0.0000018636,0.0000018653,0.0000018635,0.0000018610,0.0000018615, -0.0000018638,0.0000018609,0.0000018457,0.0000018320,0.0000018325, -0.0000018429,0.0000018569,0.0000018836,0.0000019093,0.0000019144, -0.0000018867,0.0000018308,0.0000017616,0.0000017119,0.0000016943, -0.0000016918,0.0000016903,0.0000016826,0.0000016691,0.0000016596, -0.0000016599,0.0000016618,0.0000016601,0.0000016557,0.0000016504, -0.0000016442,0.0000016369,0.0000016294,0.0000016223,0.0000016169, -0.0000016129,0.0000016134,0.0000016154,0.0000016175,0.0000016200, -0.0000016217,0.0000016223,0.0000016220,0.0000016202,0.0000016207, -0.0000016275,0.0000016325,0.0000016353,0.0000016412,0.0000016464, -0.0000016461,0.0000016426,0.0000016419,0.0000016469,0.0000016521, -0.0000016534,0.0000016515,0.0000016493,0.0000016482,0.0000016470, -0.0000016438,0.0000016383,0.0000016337,0.0000016329,0.0000016361, -0.0000016406,0.0000016417,0.0000016381,0.0000016330,0.0000016309, -0.0000016340,0.0000016369,0.0000016360,0.0000016326,0.0000016324, -0.0000016368,0.0000016555,0.0000017010,0.0000017597,0.0000017994, -0.0000018148,0.0000018209,0.0000018285,0.0000018204,0.0000017743, -0.0000017200,0.0000016984,0.0000016967,0.0000016955,0.0000016963, -0.0000016996,0.0000017017,0.0000017019,0.0000017019,0.0000017038, -0.0000017110,0.0000017179,0.0000017134,0.0000016961,0.0000016936, -0.0000017304,0.0000017921,0.0000018328,0.0000018363,0.0000018188, -0.0000017989,0.0000017906,0.0000017891,0.0000017906,0.0000017915, -0.0000017907,0.0000017887,0.0000017872,0.0000017868,0.0000017873, -0.0000017894,0.0000017941,0.0000017977,0.0000017986,0.0000018029, -0.0000018113,0.0000018167,0.0000018223,0.0000018368,0.0000018514, -0.0000018520,0.0000018435,0.0000018340,0.0000018298,0.0000018273, -0.0000018270,0.0000018275,0.0000018292,0.0000018318,0.0000018346, -0.0000018372,0.0000018403,0.0000018435,0.0000018461,0.0000018487, -0.0000018514,0.0000018556,0.0000018595,0.0000018599,0.0000018546, -0.0000018394,0.0000018142,0.0000017929,0.0000017805,0.0000017742, -0.0000017678,0.0000017619,0.0000017607,0.0000017636,0.0000017666, -0.0000017666,0.0000017643,0.0000017644,0.0000017756,0.0000017876, -0.0000017773,0.0000017423,0.0000017243,0.0000017737,0.0000018614, -0.0000019053,0.0000019180,0.0000019337,0.0000019505,0.0000019653, -0.0000019767,0.0000019882,0.0000020007,0.0000020094,0.0000020121, -0.0000020073,0.0000019986,0.0000019895,0.0000019824,0.0000019777, -0.0000019751,0.0000019741,0.0000019735,0.0000019724,0.0000019711, -0.0000019704,0.0000019702,0.0000019698,0.0000019688,0.0000019678, -0.0000019674,0.0000019682,0.0000019697,0.0000019712,0.0000019724, -0.0000019733,0.0000019732,0.0000019724,0.0000019712,0.0000019692, -0.0000019665,0.0000019624,0.0000019567,0.0000019509,0.0000019477, -0.0000019481,0.0000019496,0.0000019482,0.0000019469,0.0000019493, -0.0000019545,0.0000019571,0.0000019555,0.0000019518,0.0000019505, -0.0000019508,0.0000019472,0.0000019402,0.0000019335,0.0000019263, -0.0000019193,0.0000019156,0.0000019159,0.0000019197,0.0000019245, -0.0000019280,0.0000019287,0.0000019264,0.0000019216,0.0000019153, -0.0000019086,0.0000019030,0.0000019006,0.0000019014,0.0000019053, -0.0000019112,0.0000019192,0.0000019267,0.0000019285,0.0000019265, -0.0000019259,0.0000019246,0.0000019220,0.0000019200,0.0000019209, -0.0000019236,0.0000019259,0.0000019264,0.0000019248,0.0000019215, -0.0000019171,0.0000019124,0.0000019075,0.0000019021,0.0000018963, -0.0000018908,0.0000018860,0.0000018817,0.0000018778,0.0000018736, -0.0000018694,0.0000018661,0.0000018637,0.0000018619,0.0000018606, -0.0000018600,0.0000018602,0.0000018611,0.0000018626,0.0000018644, -0.0000018666,0.0000018692,0.0000018725,0.0000018769,0.0000018806, -0.0000018835,0.0000018862,0.0000018886,0.0000018908,0.0000018924, -0.0000018923,0.0000018903,0.0000018870,0.0000018838,0.0000018812, -0.0000018791,0.0000018773,0.0000018757,0.0000018740,0.0000018718, -0.0000018698,0.0000018697,0.0000018709,0.0000018726,0.0000018748, -0.0000018752,0.0000018736,0.0000018712,0.0000018691,0.0000018686, -0.0000018684,0.0000018671,0.0000018649,0.0000018634,0.0000018627, -0.0000018610,0.0000018580,0.0000018562,0.0000018577,0.0000018627, -0.0000018672,0.0000018669,0.0000018638,0.0000018624,0.0000018599, -0.0000018564,0.0000018519,0.0000018527,0.0000018515,0.0000018484, -0.0000018437,0.0000018365,0.0000018337,0.0000018367,0.0000018429, -0.0000018441,0.0000018394,0.0000018399,0.0000018434,0.0000018486, -0.0000018539,0.0000018558,0.0000018518,0.0000018388,0.0000018224, -0.0000018090,0.0000018002,0.0000017984,0.0000018006,0.0000018011, -0.0000017989,0.0000017956,0.0000017934,0.0000017917,0.0000017873, -0.0000017791,0.0000017690,0.0000017596,0.0000017519,0.0000017439, -0.0000017356,0.0000017312,0.0000017320,0.0000017346,0.0000017335, -0.0000017224,0.0000017087,0.0000017031,0.0000017032,0.0000017041, -0.0000017011,0.0000016943,0.0000016866,0.0000016796,0.0000016742, -0.0000016732,0.0000016734,0.0000016729,0.0000016743,0.0000016764, -0.0000016755,0.0000016745,0.0000016777,0.0000016810,0.0000016821, -0.0000016842,0.0000016880,0.0000016900,0.0000016892,0.0000016874, -0.0000016852,0.0000016818,0.0000016800,0.0000016810,0.0000016799, -0.0000016766,0.0000016750,0.0000016766,0.0000016779,0.0000016688, -0.0000016546,0.0000016544,0.0000016679,0.0000016768,0.0000016741, -0.0000016677,0.0000016627,0.0000016567,0.0000016484,0.0000016388, -0.0000016314,0.0000016285,0.0000016275,0.0000016288,0.0000016315, -0.0000016278,0.0000016170,0.0000016115,0.0000016124,0.0000016131, -0.0000016120,0.0000016083,0.0000016043,0.0000016079,0.0000016130, -0.0000016164,0.0000016271,0.0000016422,0.0000016514,0.0000016516, -0.0000016520,0.0000016530,0.0000016495,0.0000016452,0.0000016428, -0.0000016406,0.0000016390,0.0000016397,0.0000016437,0.0000016486, -0.0000016525,0.0000016561,0.0000016576,0.0000016548,0.0000016486, -0.0000016443,0.0000016445,0.0000016466,0.0000016504,0.0000016541, -0.0000016564,0.0000016573,0.0000016598,0.0000016681,0.0000016798, -0.0000016863,0.0000016836,0.0000016759,0.0000016750,0.0000016949, -0.0000017339,0.0000017690,0.0000017826,0.0000017807,0.0000017723, -0.0000017626,0.0000017560,0.0000017560,0.0000017608,0.0000017695, -0.0000017797,0.0000017886,0.0000017946,0.0000017977,0.0000017980, -0.0000017961,0.0000017970,0.0000017987,0.0000018008,0.0000018014, -0.0000018026,0.0000018060,0.0000018072,0.0000018043,0.0000017984, -0.0000017961,0.0000017993,0.0000018027,0.0000018016,0.0000017955, -0.0000017854,0.0000017751,0.0000017666,0.0000017661,0.0000017690, -0.0000017721,0.0000017716,0.0000017647,0.0000017639,0.0000017621, -0.0000017490,0.0000017511,0.0000017638,0.0000017671,0.0000017705, -0.0000017690,0.0000017661,0.0000017629,0.0000017639,0.0000017688, -0.0000017713,0.0000017828,0.0000018024,0.0000018234,0.0000018356, -0.0000018453,0.0000018537,0.0000018555,0.0000018591,0.0000018636, -0.0000018654,0.0000018657,0.0000018657,0.0000018655,0.0000018652, -0.0000018649,0.0000018650,0.0000018654,0.0000018648,0.0000018591, -0.0000018424,0.0000018182,0.0000017945,0.0000017774,0.0000017665, -0.0000017573,0.0000017469,0.0000017370,0.0000017303,0.0000017277, -0.0000017264,0.0000017263,0.0000017263,0.0000017255,0.0000017258, -0.0000017271,0.0000017299,0.0000017319,0.0000017331,0.0000017348, -0.0000017388,0.0000017451,0.0000017564,0.0000017687,0.0000017752, -0.0000017812,0.0000017898,0.0000017969,0.0000018033,0.0000018013, -0.0000017951,0.0000017959,0.0000017888,0.0000017551,0.0000017142, -0.0000017135,0.0000017380,0.0000017505,0.0000017471,0.0000017388, -0.0000017345,0.0000017328,0.0000017321,0.0000017313,0.0000017282, -0.0000017257,0.0000017287,0.0000017394,0.0000017518,0.0000017558, -0.0000017490,0.0000017352,0.0000017124,0.0000016810,0.0000016535, -0.0000016367,0.0000016279,0.0000016266,0.0000016308,0.0000016354, -0.0000016431,0.0000016729,0.0000017231,0.0000017648,0.0000017840, -0.0000017903,0.0000017932,0.0000017942,0.0000017935,0.0000017917, -0.0000017892,0.0000017854,0.0000017799,0.0000017732,0.0000017664, -0.0000017612,0.0000017590,0.0000017582,0.0000017599,0.0000017621, -0.0000017611,0.0000017577,0.0000017393,0.0000017133,0.0000016890, -0.0000016770,0.0000016906,0.0000017350,0.0000017778,0.0000017881, -0.0000017851,0.0000017908,0.0000017945,0.0000017860,0.0000017758, -0.0000017665,0.0000017585,0.0000017533,0.0000017483,0.0000017485, -0.0000017601,0.0000017803,0.0000017878,0.0000017669,0.0000017442, -0.0000017489,0.0000017704,0.0000017796,0.0000017866,0.0000017933, -0.0000018304,0.0000019068,0.0000019427,0.0000019392,0.0000019563, -0.0000019869,0.0000020029,0.0000020059,0.0000019855,0.0000019645, -0.0000019694,0.0000019616,0.0000019410,0.0000019498,0.0000019455, -0.0000019412,0.0000019429,0.0000019504,0.0000019595,0.0000019624, -0.0000019605,0.0000019556,0.0000019507,0.0000019469,0.0000019453, -0.0000019452,0.0000019423,0.0000019375,0.0000019381,0.0000019369, -0.0000019286,0.0000019367,0.0000019715,0.0000019987,0.0000020010, -0.0000019970,0.0000019926,0.0000019902,0.0000019882,0.0000019872, -0.0000019908,0.0000020061,0.0000020241,0.0000020271,0.0000020106, -0.0000019885,0.0000019827,0.0000019921,0.0000019975,0.0000019850, -0.0000019587,0.0000019477,0.0000019758,0.0000020064,0.0000020060, -0.0000019923,0.0000019840,0.0000019836,0.0000019894,0.0000019982, -0.0000020067,0.0000020127,0.0000020185,0.0000020249,0.0000020303, -0.0000020319,0.0000020301,0.0000020262,0.0000020243,0.0000020239, -0.0000020220,0.0000020192,0.0000020173,0.0000020131,0.0000020112, -0.0000020136,0.0000020187,0.0000020202,0.0000019959,0.0000019239, -0.0000018646,0.0000018297,0.0000018204,0.0000018510,0.0000018671, -0.0000018465,0.0000018461,0.0000018707,0.0000018747,0.0000018581, -0.0000018443,0.0000018429,0.0000018553,0.0000018585,0.0000018303, -0.0000017989,0.0000018011,0.0000018239,0.0000018401,0.0000018335, -0.0000018239,0.0000018175,0.0000018140,0.0000018284,0.0000018965, -0.0000018504,0.0000018266,0.0000018645,0.0000018952,0.0000019023, -0.0000019011,0.0000018906,0.0000018677,0.0000018405,0.0000018202, -0.0000018123,0.0000018152,0.0000018241,0.0000018335,0.0000018376, -0.0000018354,0.0000018290,0.0000018223,0.0000018182,0.0000018168, -0.0000018167,0.0000018192,0.0000018275,0.0000018446,0.0000018611, -0.0000018649,0.0000018587,0.0000018550,0.0000018553,0.0000018567, -0.0000018594,0.0000018612,0.0000018558,0.0000018406,0.0000018288, -0.0000018296,0.0000018386,0.0000018547,0.0000018879,0.0000019113, -0.0000019082,0.0000018688,0.0000018060,0.0000017451,0.0000017098, -0.0000016975,0.0000016946,0.0000016917,0.0000016851,0.0000016712, -0.0000016603,0.0000016594,0.0000016612,0.0000016570,0.0000016489, -0.0000016408,0.0000016333,0.0000016264,0.0000016207,0.0000016155, -0.0000016133,0.0000016129,0.0000016142,0.0000016178,0.0000016214, -0.0000016237,0.0000016268,0.0000016280,0.0000016280,0.0000016273, -0.0000016255,0.0000016205,0.0000016194,0.0000016260,0.0000016335, -0.0000016413,0.0000016492,0.0000016516,0.0000016492,0.0000016491, -0.0000016540,0.0000016582,0.0000016578,0.0000016552,0.0000016533, -0.0000016527,0.0000016528,0.0000016528,0.0000016512,0.0000016482, -0.0000016463,0.0000016462,0.0000016459,0.0000016431,0.0000016391, -0.0000016369,0.0000016365,0.0000016358,0.0000016331,0.0000016300, -0.0000016297,0.0000016320,0.0000016423,0.0000016694,0.0000017133, -0.0000017623,0.0000017947,0.0000018088,0.0000018156,0.0000018243, -0.0000018239,0.0000017925,0.0000017359,0.0000017002,0.0000016944, -0.0000016937,0.0000016933,0.0000016934,0.0000016938,0.0000016965, -0.0000016997,0.0000016994,0.0000016998,0.0000017064,0.0000017095, -0.0000016980,0.0000016869,0.0000017015,0.0000017538,0.0000018103, -0.0000018359,0.0000018338,0.0000018156,0.0000017968,0.0000017874, -0.0000017847,0.0000017843,0.0000017833,0.0000017808,0.0000017787, -0.0000017779,0.0000017777,0.0000017797,0.0000017847,0.0000017885, -0.0000017892,0.0000017923,0.0000018006,0.0000018090,0.0000018135, -0.0000018176,0.0000018252,0.0000018322,0.0000018343,0.0000018332, -0.0000018324,0.0000018315,0.0000018315,0.0000018320,0.0000018328, -0.0000018335,0.0000018340,0.0000018349,0.0000018374,0.0000018412, -0.0000018453,0.0000018490,0.0000018516,0.0000018551,0.0000018581, -0.0000018585,0.0000018549,0.0000018411,0.0000018136,0.0000017903, -0.0000017765,0.0000017698,0.0000017635,0.0000017575,0.0000017556, -0.0000017582,0.0000017635,0.0000017661,0.0000017640,0.0000017608, -0.0000017656,0.0000017821,0.0000017890,0.0000017589,0.0000017228, -0.0000017453,0.0000018374,0.0000018969,0.0000019114,0.0000019272, -0.0000019457,0.0000019622,0.0000019750,0.0000019866,0.0000020004, -0.0000020122,0.0000020172,0.0000020165,0.0000020100,0.0000020003, -0.0000019902,0.0000019823,0.0000019776,0.0000019755,0.0000019752, -0.0000019754,0.0000019759,0.0000019759,0.0000019750,0.0000019735, -0.0000019722,0.0000019725,0.0000019741,0.0000019762,0.0000019782, -0.0000019798,0.0000019804,0.0000019794,0.0000019770,0.0000019736, -0.0000019704,0.0000019676,0.0000019651,0.0000019627,0.0000019594, -0.0000019560,0.0000019545,0.0000019558,0.0000019565,0.0000019552, -0.0000019542,0.0000019559,0.0000019591,0.0000019610,0.0000019602, -0.0000019578,0.0000019567,0.0000019559,0.0000019524,0.0000019465, -0.0000019396,0.0000019309,0.0000019227,0.0000019183,0.0000019184, -0.0000019225,0.0000019286,0.0000019331,0.0000019363,0.0000019372, -0.0000019356,0.0000019316,0.0000019248,0.0000019168,0.0000019103, -0.0000019080,0.0000019104,0.0000019166,0.0000019258,0.0000019330, -0.0000019338,0.0000019321,0.0000019261,0.0000019168,0.0000019125, -0.0000019166,0.0000019237,0.0000019280,0.0000019298,0.0000019305, -0.0000019303,0.0000019285,0.0000019255,0.0000019215,0.0000019164, -0.0000019109,0.0000019058,0.0000019014,0.0000018973,0.0000018929, -0.0000018883,0.0000018838,0.0000018799,0.0000018757,0.0000018708, -0.0000018666,0.0000018649,0.0000018650,0.0000018660,0.0000018671, -0.0000018682,0.0000018695,0.0000018716,0.0000018748,0.0000018791, -0.0000018830,0.0000018863,0.0000018895,0.0000018929,0.0000018966, -0.0000019000,0.0000019016,0.0000019011,0.0000018985,0.0000018956, -0.0000018933,0.0000018915,0.0000018897,0.0000018877,0.0000018853, -0.0000018832,0.0000018825,0.0000018837,0.0000018852,0.0000018869, -0.0000018888,0.0000018889,0.0000018871,0.0000018843,0.0000018824, -0.0000018820,0.0000018816,0.0000018799,0.0000018773,0.0000018743, -0.0000018714,0.0000018681,0.0000018647,0.0000018624,0.0000018628, -0.0000018664,0.0000018698,0.0000018702,0.0000018680,0.0000018661, -0.0000018620,0.0000018572,0.0000018544,0.0000018558,0.0000018550, -0.0000018513,0.0000018449,0.0000018349,0.0000018319,0.0000018352, -0.0000018425,0.0000018468,0.0000018435,0.0000018447,0.0000018485, -0.0000018519,0.0000018567,0.0000018578,0.0000018514,0.0000018377, -0.0000018237,0.0000018132,0.0000018079,0.0000018076,0.0000018090, -0.0000018099,0.0000018092,0.0000018072,0.0000018044,0.0000018000, -0.0000017941,0.0000017867,0.0000017765,0.0000017631,0.0000017505, -0.0000017411,0.0000017348,0.0000017315,0.0000017314,0.0000017341, -0.0000017358,0.0000017306,0.0000017183,0.0000017085,0.0000017060, -0.0000017059,0.0000017028,0.0000016954,0.0000016869,0.0000016794, -0.0000016753,0.0000016750,0.0000016743,0.0000016742,0.0000016759, -0.0000016759,0.0000016740,0.0000016753,0.0000016798,0.0000016829, -0.0000016852,0.0000016879,0.0000016905,0.0000016908,0.0000016894, -0.0000016878,0.0000016855,0.0000016806,0.0000016780,0.0000016780, -0.0000016754,0.0000016725,0.0000016725,0.0000016757,0.0000016744, -0.0000016612,0.0000016514,0.0000016569,0.0000016707,0.0000016763, -0.0000016733,0.0000016668,0.0000016606,0.0000016539,0.0000016442, -0.0000016341,0.0000016298,0.0000016285,0.0000016280,0.0000016303, -0.0000016300,0.0000016212,0.0000016119,0.0000016119,0.0000016143, -0.0000016142,0.0000016111,0.0000016058,0.0000016055,0.0000016122, -0.0000016161,0.0000016233,0.0000016378,0.0000016509,0.0000016536, -0.0000016535,0.0000016544,0.0000016503,0.0000016455,0.0000016437, -0.0000016411,0.0000016386,0.0000016384,0.0000016419,0.0000016475, -0.0000016518,0.0000016538,0.0000016553,0.0000016562,0.0000016544, -0.0000016500,0.0000016476,0.0000016494,0.0000016528,0.0000016549, -0.0000016554,0.0000016561,0.0000016590,0.0000016663,0.0000016765, -0.0000016827,0.0000016819,0.0000016763,0.0000016731,0.0000016792, -0.0000017044,0.0000017413,0.0000017706,0.0000017819,0.0000017802, -0.0000017725,0.0000017641,0.0000017594,0.0000017596,0.0000017624, -0.0000017690,0.0000017777,0.0000017857,0.0000017915,0.0000017943, -0.0000017913,0.0000017934,0.0000017960,0.0000017996,0.0000018022, -0.0000018046,0.0000018071,0.0000018068,0.0000018019,0.0000017959, -0.0000017946,0.0000017979,0.0000018001,0.0000017977,0.0000017901, -0.0000017812,0.0000017750,0.0000017690,0.0000017676,0.0000017695, -0.0000017725,0.0000017726,0.0000017646,0.0000017627,0.0000017616, -0.0000017479,0.0000017467,0.0000017615,0.0000017665,0.0000017688, -0.0000017678,0.0000017641,0.0000017615,0.0000017636,0.0000017696, -0.0000017720,0.0000017830,0.0000018020,0.0000018231,0.0000018356, -0.0000018443,0.0000018546,0.0000018569,0.0000018578,0.0000018589, -0.0000018582,0.0000018559,0.0000018532,0.0000018509,0.0000018506, -0.0000018525,0.0000018551,0.0000018521,0.0000018361,0.0000018096, -0.0000017858,0.0000017730,0.0000017680,0.0000017612,0.0000017487, -0.0000017356,0.0000017274,0.0000017271,0.0000017296,0.0000017333, -0.0000017352,0.0000017352,0.0000017343,0.0000017341,0.0000017350, -0.0000017367,0.0000017394,0.0000017411,0.0000017415,0.0000017411, -0.0000017415,0.0000017452,0.0000017536,0.0000017649,0.0000017725, -0.0000017815,0.0000017909,0.0000017992,0.0000018067,0.0000018016, -0.0000017964,0.0000017977,0.0000017856,0.0000017452,0.0000017132, -0.0000017247,0.0000017468,0.0000017501,0.0000017452,0.0000017418, -0.0000017415,0.0000017418,0.0000017404,0.0000017346,0.0000017287, -0.0000017310,0.0000017430,0.0000017552,0.0000017581,0.0000017503, -0.0000017319,0.0000017009,0.0000016644,0.0000016395,0.0000016302, -0.0000016295,0.0000016333,0.0000016351,0.0000016356,0.0000016376, -0.0000016401,0.0000016595,0.0000017018,0.0000017462,0.0000017724, -0.0000017817,0.0000017832,0.0000017826,0.0000017804,0.0000017767, -0.0000017717,0.0000017661,0.0000017615,0.0000017594,0.0000017602, -0.0000017624,0.0000017639,0.0000017632,0.0000017607,0.0000017468, -0.0000017275,0.0000017045,0.0000016858,0.0000016766,0.0000016794, -0.0000017133,0.0000017625,0.0000017880,0.0000017889,0.0000017914, -0.0000017976,0.0000017916,0.0000017804,0.0000017710,0.0000017617, -0.0000017546,0.0000017491,0.0000017471,0.0000017526,0.0000017691, -0.0000017852,0.0000017812,0.0000017525,0.0000017388,0.0000017546, -0.0000017723,0.0000017816,0.0000017874,0.0000017976,0.0000018467, -0.0000019207,0.0000019442,0.0000019419,0.0000019667,0.0000019944, -0.0000020039,0.0000020026,0.0000019823,0.0000019686,0.0000019708, -0.0000019543,0.0000019418,0.0000019509,0.0000019454,0.0000019427, -0.0000019461,0.0000019550,0.0000019614,0.0000019608,0.0000019558, -0.0000019513,0.0000019484,0.0000019466,0.0000019462,0.0000019464, -0.0000019445,0.0000019428,0.0000019440,0.0000019399,0.0000019302, -0.0000019350,0.0000019654,0.0000019934,0.0000020002,0.0000019993, -0.0000019972,0.0000019958,0.0000019930,0.0000019909,0.0000019951, -0.0000020121,0.0000020247,0.0000020177,0.0000019945,0.0000019824, -0.0000019874,0.0000019987,0.0000019959,0.0000019759,0.0000019533, -0.0000019546,0.0000019874,0.0000020116,0.0000020093,0.0000019984, -0.0000019906,0.0000019902,0.0000019965,0.0000020055,0.0000020126, -0.0000020165,0.0000020203,0.0000020259,0.0000020301,0.0000020304, -0.0000020285,0.0000020275,0.0000020272,0.0000020251,0.0000020206, -0.0000020148,0.0000020095,0.0000020076,0.0000020096,0.0000020156, -0.0000020191,0.0000020012,0.0000019317,0.0000018678,0.0000018337, -0.0000018123,0.0000018379,0.0000018716,0.0000018558,0.0000018407, -0.0000018594,0.0000018751,0.0000018658,0.0000018505,0.0000018406, -0.0000018465,0.0000018595,0.0000018477,0.0000018099,0.0000017967, -0.0000018135,0.0000018356,0.0000018366,0.0000018251,0.0000018157, -0.0000018130,0.0000018214,0.0000018920,0.0000018465,0.0000018401, -0.0000019002,0.0000019135,0.0000019138,0.0000019131,0.0000019143, -0.0000019141,0.0000018973,0.0000018683,0.0000018395,0.0000018196, -0.0000018160,0.0000018197,0.0000018239,0.0000018227,0.0000018191, -0.0000018194,0.0000018228,0.0000018283,0.0000018304,0.0000018268, -0.0000018205,0.0000018227,0.0000018342,0.0000018502,0.0000018595, -0.0000018601,0.0000018582,0.0000018576,0.0000018555,0.0000018477, -0.0000018345,0.0000018268,0.0000018288,0.0000018360,0.0000018537, -0.0000018924,0.0000019104,0.0000018965,0.0000018452,0.0000017788, -0.0000017310,0.0000017089,0.0000016997,0.0000016958,0.0000016938, -0.0000016877,0.0000016745,0.0000016628,0.0000016593,0.0000016606, -0.0000016558,0.0000016449,0.0000016338,0.0000016247,0.0000016184, -0.0000016149,0.0000016133,0.0000016133,0.0000016151,0.0000016171, -0.0000016210,0.0000016227,0.0000016232,0.0000016234,0.0000016231, -0.0000016220,0.0000016199,0.0000016179,0.0000016173,0.0000016176, -0.0000016144,0.0000016140,0.0000016252,0.0000016380,0.0000016488, -0.0000016547,0.0000016535,0.0000016531,0.0000016571,0.0000016603, -0.0000016600,0.0000016582,0.0000016572,0.0000016571,0.0000016569, -0.0000016569,0.0000016568,0.0000016554,0.0000016534,0.0000016516, -0.0000016496,0.0000016466,0.0000016434,0.0000016400,0.0000016363, -0.0000016324,0.0000016297,0.0000016291,0.0000016295,0.0000016349, -0.0000016497,0.0000016727,0.0000017030,0.0000017349,0.0000017651, -0.0000017895,0.0000018058,0.0000018173,0.0000018248,0.0000018137, -0.0000017652,0.0000017135,0.0000016949,0.0000016945,0.0000016937, -0.0000016914,0.0000016906,0.0000016981,0.0000017095,0.0000017099, -0.0000017009,0.0000016977,0.0000017016,0.0000016983,0.0000016834, -0.0000016815,0.0000017158,0.0000017748,0.0000018213,0.0000018376, -0.0000018356,0.0000018179,0.0000017974,0.0000017843,0.0000017786, -0.0000017766,0.0000017756,0.0000017753,0.0000017752,0.0000017753, -0.0000017777,0.0000017825,0.0000017855,0.0000017853,0.0000017858, -0.0000017895,0.0000017957,0.0000018012,0.0000018036,0.0000018042, -0.0000018054,0.0000018066,0.0000018071,0.0000018077,0.0000018081, -0.0000018086,0.0000018085,0.0000018077,0.0000018062,0.0000018049, -0.0000018047,0.0000018062,0.0000018090,0.0000018119,0.0000018142, -0.0000018180,0.0000018223,0.0000018279,0.0000018306,0.0000018287, -0.0000018172,0.0000017977,0.0000017801,0.0000017703,0.0000017658, -0.0000017600,0.0000017552,0.0000017539,0.0000017567,0.0000017612, -0.0000017654,0.0000017658,0.0000017621,0.0000017622,0.0000017755, -0.0000017895,0.0000017711,0.0000017206,0.0000017281,0.0000018163, -0.0000018881,0.0000019063,0.0000019222,0.0000019424,0.0000019606, -0.0000019745,0.0000019849,0.0000019968,0.0000020098,0.0000020188, -0.0000020209,0.0000020189,0.0000020107,0.0000019996,0.0000019890, -0.0000019814,0.0000019774,0.0000019764,0.0000019771,0.0000019779, -0.0000019779,0.0000019766,0.0000019744,0.0000019730,0.0000019733, -0.0000019747,0.0000019766,0.0000019783,0.0000019798,0.0000019805, -0.0000019797,0.0000019778,0.0000019760,0.0000019749,0.0000019744, -0.0000019736,0.0000019713,0.0000019668,0.0000019623,0.0000019606, -0.0000019611,0.0000019613,0.0000019607,0.0000019604,0.0000019612, -0.0000019627,0.0000019640,0.0000019643,0.0000019638,0.0000019627, -0.0000019611,0.0000019580,0.0000019536,0.0000019471,0.0000019380, -0.0000019296,0.0000019255,0.0000019272,0.0000019344,0.0000019421, -0.0000019477,0.0000019506,0.0000019514,0.0000019503,0.0000019467, -0.0000019397,0.0000019299,0.0000019209,0.0000019163,0.0000019179, -0.0000019243,0.0000019329,0.0000019383,0.0000019385,0.0000019303, -0.0000019156,0.0000019119,0.0000019216,0.0000019348,0.0000019390, -0.0000019379,0.0000019369,0.0000019365,0.0000019349,0.0000019318, -0.0000019286,0.0000019253,0.0000019216,0.0000019180,0.0000019153, -0.0000019130,0.0000019105,0.0000019080,0.0000019055,0.0000019027, -0.0000018986,0.0000018933,0.0000018891,0.0000018885,0.0000018895, -0.0000018908,0.0000018918,0.0000018931,0.0000018950,0.0000018969, -0.0000018983,0.0000018991,0.0000018993,0.0000018993,0.0000018994, -0.0000019002,0.0000019019,0.0000019039,0.0000019052,0.0000019051, -0.0000019042,0.0000019031,0.0000019024,0.0000019022,0.0000019020, -0.0000019009,0.0000018989,0.0000018968,0.0000018955,0.0000018955, -0.0000018949,0.0000018946,0.0000018938,0.0000018924,0.0000018899, -0.0000018877,0.0000018874,0.0000018882,0.0000018881,0.0000018873, -0.0000018853,0.0000018816,0.0000018778,0.0000018743,0.0000018715, -0.0000018690,0.0000018679,0.0000018696,0.0000018718,0.0000018732, -0.0000018729,0.0000018697,0.0000018639,0.0000018585,0.0000018576, -0.0000018584,0.0000018582,0.0000018539,0.0000018456,0.0000018337, -0.0000018310,0.0000018326,0.0000018409,0.0000018490,0.0000018483, -0.0000018487,0.0000018513,0.0000018534,0.0000018580,0.0000018584, -0.0000018507,0.0000018392,0.0000018282,0.0000018196,0.0000018162, -0.0000018166,0.0000018184,0.0000018203,0.0000018210,0.0000018195, -0.0000018156,0.0000018097,0.0000018032,0.0000017950,0.0000017829, -0.0000017674,0.0000017518,0.0000017402,0.0000017335,0.0000017301, -0.0000017289,0.0000017311,0.0000017355,0.0000017357,0.0000017277, -0.0000017160,0.0000017096,0.0000017071,0.0000017030,0.0000016956, -0.0000016874,0.0000016802,0.0000016771,0.0000016765,0.0000016752, -0.0000016758,0.0000016764,0.0000016743,0.0000016737,0.0000016776, -0.0000016829,0.0000016862,0.0000016880,0.0000016900,0.0000016915, -0.0000016911,0.0000016892,0.0000016879,0.0000016849,0.0000016784, -0.0000016751,0.0000016741,0.0000016708,0.0000016693,0.0000016713, -0.0000016744,0.0000016686,0.0000016543,0.0000016504,0.0000016598, -0.0000016726,0.0000016763,0.0000016728,0.0000016654,0.0000016583, -0.0000016507,0.0000016389,0.0000016312,0.0000016299,0.0000016287, -0.0000016288,0.0000016300,0.0000016252,0.0000016149,0.0000016113, -0.0000016149,0.0000016169,0.0000016139,0.0000016086,0.0000016050, -0.0000016097,0.0000016160,0.0000016205,0.0000016324,0.0000016474, -0.0000016544,0.0000016550,0.0000016557,0.0000016527,0.0000016479, -0.0000016466,0.0000016434,0.0000016397,0.0000016386,0.0000016401, -0.0000016444,0.0000016502,0.0000016534,0.0000016541,0.0000016540, -0.0000016549,0.0000016549,0.0000016529,0.0000016521,0.0000016548, -0.0000016579,0.0000016586,0.0000016582,0.0000016599,0.0000016649, -0.0000016726,0.0000016778,0.0000016780,0.0000016753,0.0000016732, -0.0000016749,0.0000016873,0.0000017138,0.0000017461,0.0000017703, -0.0000017807,0.0000017801,0.0000017735,0.0000017668,0.0000017634, -0.0000017631,0.0000017656,0.0000017705,0.0000017769,0.0000017834, -0.0000017879,0.0000017885,0.0000017916,0.0000017951,0.0000017991, -0.0000018020,0.0000018040,0.0000018051,0.0000018031,0.0000017972, -0.0000017926,0.0000017934,0.0000017968,0.0000017973,0.0000017922, -0.0000017834,0.0000017776,0.0000017759,0.0000017725,0.0000017706, -0.0000017711,0.0000017729,0.0000017731,0.0000017649,0.0000017618, -0.0000017613,0.0000017479,0.0000017424,0.0000017582,0.0000017659, -0.0000017674,0.0000017666,0.0000017625,0.0000017600,0.0000017631, -0.0000017700,0.0000017726,0.0000017833,0.0000018014,0.0000018220, -0.0000018353,0.0000018429,0.0000018543,0.0000018578,0.0000018575, -0.0000018553,0.0000018506,0.0000018457,0.0000018427,0.0000018420, -0.0000018440,0.0000018460,0.0000018397,0.0000018156,0.0000017877, -0.0000017734,0.0000017705,0.0000017670,0.0000017546,0.0000017372, -0.0000017259,0.0000017262,0.0000017312,0.0000017380,0.0000017426, -0.0000017443,0.0000017427,0.0000017395,0.0000017368,0.0000017367, -0.0000017389,0.0000017418,0.0000017456,0.0000017480,0.0000017490, -0.0000017480,0.0000017463,0.0000017478,0.0000017551,0.0000017654, -0.0000017732,0.0000017840,0.0000017925,0.0000018020,0.0000018094, -0.0000018017,0.0000017986,0.0000017989,0.0000017805,0.0000017347, -0.0000017158,0.0000017359,0.0000017485,0.0000017475,0.0000017459, -0.0000017485,0.0000017521,0.0000017514,0.0000017442,0.0000017361, -0.0000017364,0.0000017468,0.0000017575,0.0000017600,0.0000017517, -0.0000017270,0.0000016876,0.0000016505,0.0000016335,0.0000016346, -0.0000016467,0.0000016580,0.0000016618,0.0000016594,0.0000016510, -0.0000016429,0.0000016427,0.0000016506,0.0000016789,0.0000017181, -0.0000017500,0.0000017664,0.0000017707,0.0000017695,0.0000017666, -0.0000017631,0.0000017601,0.0000017584,0.0000017587,0.0000017596, -0.0000017598,0.0000017554,0.0000017459,0.0000017304,0.0000017108, -0.0000016927,0.0000016805,0.0000016752,0.0000016763,0.0000016953, -0.0000017420,0.0000017820,0.0000017909,0.0000017922,0.0000017986, -0.0000017974,0.0000017861,0.0000017756,0.0000017655,0.0000017573, -0.0000017515,0.0000017484,0.0000017490,0.0000017596,0.0000017773, -0.0000017860,0.0000017698,0.0000017411,0.0000017377,0.0000017571, -0.0000017732,0.0000017833,0.0000017879,0.0000018041,0.0000018622, -0.0000019298,0.0000019443,0.0000019462,0.0000019758,0.0000020002, -0.0000020037,0.0000019994,0.0000019798,0.0000019708,0.0000019690, -0.0000019502,0.0000019445,0.0000019514,0.0000019460,0.0000019447, -0.0000019500,0.0000019593,0.0000019620,0.0000019572,0.0000019510, -0.0000019483,0.0000019477,0.0000019474,0.0000019480,0.0000019482, -0.0000019473,0.0000019483,0.0000019499,0.0000019428,0.0000019307, -0.0000019334,0.0000019558,0.0000019812,0.0000019941,0.0000019973, -0.0000019975,0.0000019969,0.0000019948,0.0000019931,0.0000020004, -0.0000020164,0.0000020193,0.0000020024,0.0000019854,0.0000019830, -0.0000019935,0.0000019999,0.0000019915,0.0000019705,0.0000019496, -0.0000019586,0.0000019941,0.0000020155,0.0000020141,0.0000020045, -0.0000019970,0.0000019969,0.0000020033,0.0000020114,0.0000020156, -0.0000020171,0.0000020202,0.0000020247,0.0000020273,0.0000020282, -0.0000020288,0.0000020299,0.0000020294,0.0000020249,0.0000020165, -0.0000020068,0.0000020041,0.0000020055,0.0000020117,0.0000020179, -0.0000020043,0.0000019360,0.0000018677,0.0000018376,0.0000018131, -0.0000018209,0.0000018659,0.0000018688,0.0000018419,0.0000018462, -0.0000018673,0.0000018668,0.0000018555,0.0000018445,0.0000018401, -0.0000018539,0.0000018578,0.0000018275,0.0000017982,0.0000018031, -0.0000018268,0.0000018383,0.0000018278,0.0000018157,0.0000018117, -0.0000018145,0.0000018904,0.0000018467,0.0000018551,0.0000019108, -0.0000019129,0.0000019139,0.0000019139,0.0000019132,0.0000019156, -0.0000019195,0.0000019086,0.0000018848,0.0000018566,0.0000018302, -0.0000018192,0.0000018198,0.0000018192,0.0000018193,0.0000018247, -0.0000018367,0.0000018497,0.0000018545,0.0000018504,0.0000018440, -0.0000018305,0.0000018219,0.0000018248,0.0000018350,0.0000018439, -0.0000018468,0.0000018441,0.0000018363,0.0000018267,0.0000018223, -0.0000018258,0.0000018305,0.0000018475,0.0000018922,0.0000019122, -0.0000018863,0.0000018240,0.0000017593,0.0000017238,0.0000017092, -0.0000017000,0.0000016957,0.0000016947,0.0000016906,0.0000016793, -0.0000016661,0.0000016607,0.0000016604,0.0000016555,0.0000016432, -0.0000016304,0.0000016210,0.0000016154,0.0000016131,0.0000016138, -0.0000016142,0.0000016166,0.0000016184,0.0000016185,0.0000016201, -0.0000016186,0.0000016154,0.0000016119,0.0000016088,0.0000016059, -0.0000016028,0.0000015997,0.0000015979,0.0000015994,0.0000016052, -0.0000016074,0.0000016135,0.0000016286,0.0000016445,0.0000016551, -0.0000016562,0.0000016555,0.0000016581,0.0000016603,0.0000016600, -0.0000016589,0.0000016589,0.0000016602,0.0000016615,0.0000016618, -0.0000016614,0.0000016606,0.0000016587,0.0000016554,0.0000016507, -0.0000016466,0.0000016425,0.0000016388,0.0000016358,0.0000016330, -0.0000016318,0.0000016311,0.0000016321,0.0000016388,0.0000016500, -0.0000016611,0.0000016716,0.0000016862,0.0000017108,0.0000017455, -0.0000017802,0.0000018046,0.0000018207,0.0000018232,0.0000017949, -0.0000017367,0.0000017006,0.0000016963,0.0000016953,0.0000016913, -0.0000016914,0.0000017085,0.0000017340,0.0000017380,0.0000017163, -0.0000016966,0.0000016940,0.0000016944,0.0000016822,0.0000016725, -0.0000016862,0.0000017362,0.0000017934,0.0000018309,0.0000018429, -0.0000018417,0.0000018225,0.0000017977,0.0000017785,0.0000017686, -0.0000017672,0.0000017686,0.0000017698,0.0000017707,0.0000017734, -0.0000017779,0.0000017803,0.0000017805,0.0000017802,0.0000017809, -0.0000017838,0.0000017881,0.0000017908,0.0000017905,0.0000017884, -0.0000017861,0.0000017842,0.0000017833,0.0000017836,0.0000017843, -0.0000017844,0.0000017839,0.0000017829,0.0000017826,0.0000017836, -0.0000017865,0.0000017914,0.0000017962,0.0000017975,0.0000017940, -0.0000017884,0.0000017896,0.0000017899,0.0000017888,0.0000017818, -0.0000017724,0.0000017683,0.0000017674,0.0000017656,0.0000017606, -0.0000017566,0.0000017570,0.0000017602,0.0000017636,0.0000017662, -0.0000017669,0.0000017640,0.0000017620,0.0000017721,0.0000017901, -0.0000017801,0.0000017279,0.0000017194,0.0000017998,0.0000018790, -0.0000019018,0.0000019177,0.0000019395,0.0000019587,0.0000019734, -0.0000019828,0.0000019917,0.0000020029,0.0000020138,0.0000020204, -0.0000020214,0.0000020186,0.0000020105,0.0000020000,0.0000019905, -0.0000019843,0.0000019812,0.0000019798,0.0000019791,0.0000019785, -0.0000019764,0.0000019734,0.0000019712,0.0000019697,0.0000019694, -0.0000019702,0.0000019714,0.0000019734,0.0000019755,0.0000019769, -0.0000019774,0.0000019775,0.0000019781,0.0000019794,0.0000019801, -0.0000019787,0.0000019741,0.0000019691,0.0000019663,0.0000019654, -0.0000019647,0.0000019632,0.0000019630,0.0000019635,0.0000019650, -0.0000019668,0.0000019687,0.0000019693,0.0000019680,0.0000019659, -0.0000019640,0.0000019613,0.0000019556,0.0000019470,0.0000019395, -0.0000019384,0.0000019455,0.0000019567,0.0000019645,0.0000019672, -0.0000019670,0.0000019655,0.0000019630,0.0000019591,0.0000019520, -0.0000019420,0.0000019324,0.0000019273,0.0000019283,0.0000019342, -0.0000019402,0.0000019423,0.0000019378,0.0000019218,0.0000019161, -0.0000019289,0.0000019437,0.0000019456,0.0000019417,0.0000019402, -0.0000019406,0.0000019404,0.0000019370,0.0000019348,0.0000019315, -0.0000019275,0.0000019240,0.0000019218,0.0000019208,0.0000019204, -0.0000019200,0.0000019194,0.0000019183,0.0000019161,0.0000019126, -0.0000019103,0.0000019108,0.0000019129,0.0000019147,0.0000019163, -0.0000019180,0.0000019198,0.0000019211,0.0000019215,0.0000019215, -0.0000019212,0.0000019207,0.0000019200,0.0000019190,0.0000019178, -0.0000019165,0.0000019149,0.0000019123,0.0000019092,0.0000019065, -0.0000019050,0.0000019046,0.0000019040,0.0000019023,0.0000018998, -0.0000018973,0.0000018957,0.0000018955,0.0000018946,0.0000018932, -0.0000018921,0.0000018908,0.0000018883,0.0000018869,0.0000018876, -0.0000018890,0.0000018895,0.0000018900,0.0000018891,0.0000018864, -0.0000018831,0.0000018798,0.0000018769,0.0000018735,0.0000018704, -0.0000018705,0.0000018732,0.0000018749,0.0000018755,0.0000018723, -0.0000018657,0.0000018605,0.0000018601,0.0000018603,0.0000018610, -0.0000018560,0.0000018459,0.0000018338,0.0000018306,0.0000018307, -0.0000018390,0.0000018510,0.0000018525,0.0000018516,0.0000018521, -0.0000018543,0.0000018589,0.0000018579,0.0000018514,0.0000018433, -0.0000018343,0.0000018277,0.0000018262,0.0000018283,0.0000018309, -0.0000018318,0.0000018314,0.0000018300,0.0000018272,0.0000018221, -0.0000018141,0.0000018023,0.0000017881,0.0000017729,0.0000017559, -0.0000017408,0.0000017319,0.0000017280,0.0000017267,0.0000017285, -0.0000017332,0.0000017364,0.0000017341,0.0000017247,0.0000017158, -0.0000017087,0.0000017016,0.0000016950,0.0000016881,0.0000016822, -0.0000016798,0.0000016776,0.0000016764,0.0000016770,0.0000016757, -0.0000016736,0.0000016752,0.0000016815,0.0000016868,0.0000016887, -0.0000016892,0.0000016912,0.0000016922,0.0000016912,0.0000016895, -0.0000016884,0.0000016833,0.0000016752,0.0000016723,0.0000016702, -0.0000016671,0.0000016672,0.0000016709,0.0000016718,0.0000016611, -0.0000016497,0.0000016509,0.0000016625,0.0000016732,0.0000016758, -0.0000016716,0.0000016628,0.0000016558,0.0000016460,0.0000016343, -0.0000016312,0.0000016304,0.0000016286,0.0000016291,0.0000016279, -0.0000016198,0.0000016121,0.0000016140,0.0000016186,0.0000016174, -0.0000016116,0.0000016062,0.0000016068,0.0000016144,0.0000016190, -0.0000016268,0.0000016420,0.0000016541,0.0000016566,0.0000016571, -0.0000016557,0.0000016515,0.0000016498,0.0000016462,0.0000016413, -0.0000016397,0.0000016401,0.0000016420,0.0000016459,0.0000016502, -0.0000016529,0.0000016532,0.0000016529,0.0000016542,0.0000016555, -0.0000016550,0.0000016548,0.0000016566,0.0000016589,0.0000016599, -0.0000016610,0.0000016634,0.0000016678,0.0000016718,0.0000016730, -0.0000016730,0.0000016735,0.0000016750,0.0000016807,0.0000016958, -0.0000017207,0.0000017477,0.0000017691,0.0000017804,0.0000017805, -0.0000017748,0.0000017693,0.0000017673,0.0000017677,0.0000017698, -0.0000017742,0.0000017796,0.0000017842,0.0000017883,0.0000017910, -0.0000017940,0.0000017972,0.0000017992,0.0000018001,0.0000018000, -0.0000017973,0.0000017927,0.0000017912,0.0000017929,0.0000017946, -0.0000017924,0.0000017843,0.0000017771,0.0000017759,0.0000017771, -0.0000017757,0.0000017741,0.0000017733,0.0000017731,0.0000017730, -0.0000017655,0.0000017612,0.0000017608,0.0000017483,0.0000017390, -0.0000017537,0.0000017651,0.0000017665,0.0000017656,0.0000017611, -0.0000017586,0.0000017623,0.0000017702,0.0000017729,0.0000017832, -0.0000018009,0.0000018206,0.0000018344,0.0000018406,0.0000018512, -0.0000018559,0.0000018540,0.0000018488,0.0000018427,0.0000018384, -0.0000018386,0.0000018428,0.0000018432,0.0000018301,0.0000018032, -0.0000017809,0.0000017742,0.0000017734,0.0000017664,0.0000017482, -0.0000017287,0.0000017239,0.0000017301,0.0000017404,0.0000017461, -0.0000017464,0.0000017449,0.0000017410,0.0000017359,0.0000017310, -0.0000017290,0.0000017310,0.0000017359,0.0000017414,0.0000017471, -0.0000017513,0.0000017544,0.0000017537,0.0000017510,0.0000017516, -0.0000017590,0.0000017681,0.0000017762,0.0000017874,0.0000017941, -0.0000018048,0.0000018112,0.0000018021,0.0000018008,0.0000017998, -0.0000017729,0.0000017272,0.0000017227,0.0000017426,0.0000017463, -0.0000017453,0.0000017506,0.0000017593,0.0000017619,0.0000017557, -0.0000017468,0.0000017457,0.0000017528,0.0000017602,0.0000017612, -0.0000017520,0.0000017216,0.0000016764,0.0000016431,0.0000016355, -0.0000016487,0.0000016697,0.0000016855,0.0000016915,0.0000016908, -0.0000016834,0.0000016699,0.0000016555,0.0000016459,0.0000016460, -0.0000016590,0.0000016858,0.0000017152,0.0000017361,0.0000017460, -0.0000017489,0.0000017482,0.0000017462,0.0000017433,0.0000017397, -0.0000017355,0.0000017291,0.0000017198,0.0000017079,0.0000016949, -0.0000016843,0.0000016787,0.0000016763,0.0000016750,0.0000016838, -0.0000017200,0.0000017678,0.0000017909,0.0000017929,0.0000017985, -0.0000018014,0.0000017926,0.0000017810,0.0000017704,0.0000017608, -0.0000017544,0.0000017501,0.0000017494,0.0000017541,0.0000017673, -0.0000017829,0.0000017808,0.0000017552,0.0000017333,0.0000017371, -0.0000017567,0.0000017744,0.0000017843,0.0000017877,0.0000018113, -0.0000018758,0.0000019346,0.0000019428,0.0000019498,0.0000019834, -0.0000020051,0.0000020056,0.0000019972,0.0000019796,0.0000019735, -0.0000019670,0.0000019486,0.0000019473,0.0000019519,0.0000019475, -0.0000019471,0.0000019543,0.0000019630,0.0000019619,0.0000019542, -0.0000019494,0.0000019483,0.0000019490,0.0000019500,0.0000019503, -0.0000019500,0.0000019508,0.0000019540,0.0000019542,0.0000019448, -0.0000019317,0.0000019304,0.0000019449,0.0000019672,0.0000019862, -0.0000019957,0.0000019981,0.0000019978,0.0000019960,0.0000019959, -0.0000020040,0.0000020115,0.0000020062,0.0000019924,0.0000019843, -0.0000019879,0.0000019987,0.0000019998,0.0000019890,0.0000019690, -0.0000019509,0.0000019618,0.0000019951,0.0000020155,0.0000020164, -0.0000020093,0.0000020037,0.0000020042,0.0000020095,0.0000020143, -0.0000020153,0.0000020163,0.0000020200,0.0000020239,0.0000020269, -0.0000020294,0.0000020316,0.0000020327,0.0000020300,0.0000020212, -0.0000020085,0.0000020012,0.0000020014,0.0000020074,0.0000020148, -0.0000020052,0.0000019390,0.0000018672,0.0000018380,0.0000018164, -0.0000018141,0.0000018556,0.0000018778,0.0000018521,0.0000018388, -0.0000018519,0.0000018550,0.0000018518,0.0000018493,0.0000018388, -0.0000018441,0.0000018592,0.0000018463,0.0000018085,0.0000017975, -0.0000018154,0.0000018358,0.0000018318,0.0000018180,0.0000018103, -0.0000018105,0.0000018837,0.0000018493,0.0000018686,0.0000019090, -0.0000019107,0.0000019173,0.0000019239,0.0000019211,0.0000019154, -0.0000019170,0.0000019224,0.0000019121,0.0000018919,0.0000018699, -0.0000018441,0.0000018297,0.0000018274,0.0000018310,0.0000018423, -0.0000018567,0.0000018603,0.0000018549,0.0000018434,0.0000018405, -0.0000018423,0.0000018374,0.0000018297,0.0000018233,0.0000018224, -0.0000018234,0.0000018219,0.0000018180,0.0000018183,0.0000018235, -0.0000018256,0.0000018400,0.0000018861,0.0000019092,0.0000018773, -0.0000018075,0.0000017481,0.0000017216,0.0000017097,0.0000017010, -0.0000016965,0.0000016960,0.0000016934,0.0000016846,0.0000016723, -0.0000016628,0.0000016601,0.0000016557,0.0000016426,0.0000016290, -0.0000016200,0.0000016155,0.0000016140,0.0000016129,0.0000016129, -0.0000016121,0.0000016120,0.0000016115,0.0000016102,0.0000016083, -0.0000016048,0.0000016001,0.0000015958,0.0000015925,0.0000015906, -0.0000015894,0.0000015878,0.0000015855,0.0000015850,0.0000015897, -0.0000016010,0.0000016076,0.0000016171,0.0000016335,0.0000016495, -0.0000016564,0.0000016567,0.0000016590,0.0000016608,0.0000016597, -0.0000016582,0.0000016585,0.0000016609,0.0000016648,0.0000016670, -0.0000016672,0.0000016657,0.0000016613,0.0000016545,0.0000016462, -0.0000016408,0.0000016398,0.0000016410,0.0000016410,0.0000016396, -0.0000016373,0.0000016356,0.0000016360,0.0000016386,0.0000016412, -0.0000016415,0.0000016417,0.0000016469,0.0000016637,0.0000016968, -0.0000017417,0.0000017828,0.0000018102,0.0000018232,0.0000018145, -0.0000017642,0.0000017129,0.0000016978,0.0000016966,0.0000016936, -0.0000016979,0.0000017266,0.0000017640,0.0000017724,0.0000017435, -0.0000017065,0.0000016909,0.0000016896,0.0000016825,0.0000016685, -0.0000016689,0.0000017025,0.0000017601,0.0000018095,0.0000018388, -0.0000018498,0.0000018487,0.0000018276,0.0000017973,0.0000017728, -0.0000017617,0.0000017570,0.0000017555,0.0000017534,0.0000017556, -0.0000017586,0.0000017606,0.0000017608,0.0000017621,0.0000017638, -0.0000017665,0.0000017693,0.0000017704,0.0000017697,0.0000017669, -0.0000017634,0.0000017604,0.0000017587,0.0000017588,0.0000017606, -0.0000017628,0.0000017643,0.0000017650,0.0000017671,0.0000017724, -0.0000017802,0.0000017892,0.0000017976,0.0000018010,0.0000017960, -0.0000017851,0.0000017769,0.0000017738,0.0000017703,0.0000017663, -0.0000017638,0.0000017690,0.0000017735,0.0000017752,0.0000017719, -0.0000017688,0.0000017691,0.0000017713,0.0000017715,0.0000017704, -0.0000017687,0.0000017647,0.0000017615,0.0000017703,0.0000017913, -0.0000017847,0.0000017351,0.0000017174,0.0000017869,0.0000018695, -0.0000018970,0.0000019136,0.0000019365,0.0000019560,0.0000019709, -0.0000019801,0.0000019864,0.0000019941,0.0000020037,0.0000020123, -0.0000020177,0.0000020198,0.0000020170,0.0000020115,0.0000020049, -0.0000019988,0.0000019939,0.0000019901,0.0000019872,0.0000019847, -0.0000019811,0.0000019767,0.0000019725,0.0000019695,0.0000019675, -0.0000019663,0.0000019656,0.0000019660,0.0000019674,0.0000019696, -0.0000019718,0.0000019733,0.0000019751,0.0000019775,0.0000019796, -0.0000019799,0.0000019780,0.0000019744,0.0000019703,0.0000019677, -0.0000019657,0.0000019641,0.0000019635,0.0000019642,0.0000019664, -0.0000019694,0.0000019719,0.0000019729,0.0000019720,0.0000019709, -0.0000019704,0.0000019686,0.0000019633,0.0000019560,0.0000019526, -0.0000019571,0.0000019695,0.0000019793,0.0000019818,0.0000019804, -0.0000019768,0.0000019726,0.0000019691,0.0000019653,0.0000019597, -0.0000019523,0.0000019450,0.0000019408,0.0000019415,0.0000019450, -0.0000019466,0.0000019451,0.0000019318,0.0000019196,0.0000019289, -0.0000019417,0.0000019426,0.0000019384,0.0000019331,0.0000019295, -0.0000019299,0.0000019320,0.0000019353,0.0000019372,0.0000019348, -0.0000019304,0.0000019263,0.0000019236,0.0000019228,0.0000019224, -0.0000019216,0.0000019207,0.0000019193,0.0000019172,0.0000019157, -0.0000019161,0.0000019177,0.0000019191,0.0000019200,0.0000019214, -0.0000019229,0.0000019240,0.0000019245,0.0000019251,0.0000019260, -0.0000019271,0.0000019283,0.0000019289,0.0000019291,0.0000019292, -0.0000019286,0.0000019268,0.0000019240,0.0000019205,0.0000019175, -0.0000019157,0.0000019138,0.0000019110,0.0000019079,0.0000019051, -0.0000019036,0.0000019035,0.0000019037,0.0000019040,0.0000019039, -0.0000019015,0.0000018973,0.0000018944,0.0000018939,0.0000018936, -0.0000018930,0.0000018923,0.0000018909,0.0000018891,0.0000018864, -0.0000018833,0.0000018799,0.0000018747,0.0000018699,0.0000018690, -0.0000018728,0.0000018754,0.0000018754,0.0000018730,0.0000018671, -0.0000018619,0.0000018620,0.0000018627,0.0000018626,0.0000018574, -0.0000018470,0.0000018354,0.0000018314,0.0000018311,0.0000018365, -0.0000018510,0.0000018555,0.0000018530,0.0000018520,0.0000018548, -0.0000018586,0.0000018575,0.0000018543,0.0000018491,0.0000018418, -0.0000018359,0.0000018358,0.0000018399,0.0000018421,0.0000018415, -0.0000018393,0.0000018382,0.0000018374,0.0000018339,0.0000018241, -0.0000018092,0.0000017933,0.0000017772,0.0000017594,0.0000017430, -0.0000017321,0.0000017275,0.0000017268,0.0000017278,0.0000017317, -0.0000017369,0.0000017388,0.0000017342,0.0000017236,0.0000017101, -0.0000017000,0.0000016941,0.0000016890,0.0000016852,0.0000016819, -0.0000016786,0.0000016781,0.0000016778,0.0000016747,0.0000016740, -0.0000016790,0.0000016863,0.0000016897,0.0000016895,0.0000016900, -0.0000016924,0.0000016927,0.0000016915,0.0000016904,0.0000016885, -0.0000016806,0.0000016726,0.0000016700,0.0000016666,0.0000016647, -0.0000016663,0.0000016700,0.0000016665,0.0000016537,0.0000016471, -0.0000016524,0.0000016644,0.0000016733,0.0000016748,0.0000016690, -0.0000016599,0.0000016522,0.0000016402,0.0000016330,0.0000016323, -0.0000016298,0.0000016285,0.0000016287,0.0000016245,0.0000016157, -0.0000016137,0.0000016186,0.0000016211,0.0000016155,0.0000016086, -0.0000016056,0.0000016109,0.0000016178,0.0000016227,0.0000016347, -0.0000016502,0.0000016572,0.0000016580,0.0000016585,0.0000016558, -0.0000016534,0.0000016492,0.0000016427,0.0000016411,0.0000016414, -0.0000016421,0.0000016437,0.0000016459,0.0000016484,0.0000016505, -0.0000016512,0.0000016516,0.0000016529,0.0000016548,0.0000016547, -0.0000016542,0.0000016545,0.0000016561,0.0000016582,0.0000016605, -0.0000016633,0.0000016663,0.0000016685,0.0000016704,0.0000016728, -0.0000016755,0.0000016785,0.0000016860,0.0000017022,0.0000017244, -0.0000017473,0.0000017672,0.0000017792,0.0000017798,0.0000017761, -0.0000017723,0.0000017712,0.0000017724,0.0000017760,0.0000017806, -0.0000017846,0.0000017894,0.0000017907,0.0000017924,0.0000017945, -0.0000017958,0.0000017963,0.0000017961,0.0000017941,0.0000017913, -0.0000017908,0.0000017913,0.0000017901,0.0000017836,0.0000017754, -0.0000017734,0.0000017759,0.0000017783,0.0000017779,0.0000017772, -0.0000017754,0.0000017731,0.0000017728,0.0000017662,0.0000017608, -0.0000017600,0.0000017490,0.0000017359,0.0000017482,0.0000017639, -0.0000017657,0.0000017647,0.0000017600,0.0000017574,0.0000017614, -0.0000017699,0.0000017729,0.0000017826,0.0000018002,0.0000018191, -0.0000018332,0.0000018377,0.0000018447,0.0000018485,0.0000018456, -0.0000018403,0.0000018376,0.0000018377,0.0000018419,0.0000018442, -0.0000018308,0.0000018013,0.0000017817,0.0000017778,0.0000017782, -0.0000017704,0.0000017496,0.0000017286,0.0000017245,0.0000017346, -0.0000017459,0.0000017482,0.0000017458,0.0000017395,0.0000017320, -0.0000017251,0.0000017197,0.0000017170,0.0000017184,0.0000017229, -0.0000017298,0.0000017379,0.0000017459,0.0000017525,0.0000017571, -0.0000017580,0.0000017550,0.0000017555,0.0000017629,0.0000017715, -0.0000017803,0.0000017902,0.0000017957,0.0000018083,0.0000018121, -0.0000018032,0.0000018030,0.0000017996,0.0000017635,0.0000017253, -0.0000017312,0.0000017442,0.0000017429,0.0000017470,0.0000017603, -0.0000017689,0.0000017666,0.0000017591,0.0000017570,0.0000017610, -0.0000017643,0.0000017635,0.0000017510,0.0000017163,0.0000016688, -0.0000016396,0.0000016421,0.0000016641,0.0000016891,0.0000017048, -0.0000017098,0.0000017094,0.0000017062,0.0000016990,0.0000016868, -0.0000016713,0.0000016566,0.0000016484,0.0000016502,0.0000016606, -0.0000016781,0.0000016933,0.0000017024,0.0000017057,0.0000017052, -0.0000017023,0.0000016978,0.0000016936,0.0000016908,0.0000016881, -0.0000016847,0.0000016817,0.0000016814,0.0000016805,0.0000016791, -0.0000016798,0.0000017005,0.0000017466,0.0000017843,0.0000017936, -0.0000017966,0.0000018021,0.0000017991,0.0000017874,0.0000017761, -0.0000017651,0.0000017580,0.0000017544,0.0000017523,0.0000017532, -0.0000017604,0.0000017754,0.0000017846,0.0000017699,0.0000017410, -0.0000017286,0.0000017346,0.0000017552,0.0000017763,0.0000017849, -0.0000017879,0.0000018183,0.0000018867,0.0000019375,0.0000019420, -0.0000019523,0.0000019891,0.0000020102,0.0000020082,0.0000019959, -0.0000019819,0.0000019766,0.0000019651,0.0000019489,0.0000019495, -0.0000019527,0.0000019493,0.0000019495,0.0000019585,0.0000019656, -0.0000019624,0.0000019550,0.0000019529,0.0000019540,0.0000019549, -0.0000019545,0.0000019530,0.0000019528,0.0000019558,0.0000019597, -0.0000019568,0.0000019447,0.0000019317,0.0000019289,0.0000019418, -0.0000019661,0.0000019880,0.0000019978,0.0000019996,0.0000019992, -0.0000019973,0.0000019981,0.0000020030,0.0000020029,0.0000019970, -0.0000019911,0.0000019878,0.0000019932,0.0000020020,0.0000019990, -0.0000019889,0.0000019705,0.0000019538,0.0000019637,0.0000019948, -0.0000020167,0.0000020196,0.0000020147,0.0000020108,0.0000020110, -0.0000020135,0.0000020142,0.0000020147,0.0000020175,0.0000020222, -0.0000020265,0.0000020301,0.0000020326,0.0000020352,0.0000020349, -0.0000020273,0.0000020140,0.0000020038,0.0000019986,0.0000020027, -0.0000020109,0.0000020046,0.0000019402,0.0000018665,0.0000018377, -0.0000018181,0.0000018072,0.0000018429,0.0000018827,0.0000018664, -0.0000018395,0.0000018381,0.0000018368,0.0000018365,0.0000018478, -0.0000018426,0.0000018364,0.0000018523,0.0000018576,0.0000018271, -0.0000017984,0.0000018037,0.0000018280,0.0000018353,0.0000018226, -0.0000018096,0.0000018079,0.0000018719,0.0000018527,0.0000018736, -0.0000019070,0.0000019117,0.0000019221,0.0000019372,0.0000019396, -0.0000019284,0.0000019172,0.0000019194,0.0000019253,0.0000019123, -0.0000018928,0.0000018787,0.0000018612,0.0000018527,0.0000018553, -0.0000018651,0.0000018680,0.0000018533,0.0000018218,0.0000017959, -0.0000017880,0.0000017956,0.0000018128,0.0000018299,0.0000018349, -0.0000018296,0.0000018250,0.0000018232,0.0000018249,0.0000018252, -0.0000018197,0.0000018275,0.0000018756,0.0000019072,0.0000018780, -0.0000018035,0.0000017434,0.0000017199,0.0000017078,0.0000017002, -0.0000016978,0.0000016981,0.0000016956,0.0000016898,0.0000016794, -0.0000016681,0.0000016611,0.0000016565,0.0000016432,0.0000016286, -0.0000016197,0.0000016159,0.0000016137,0.0000016102,0.0000016059, -0.0000016027,0.0000016006,0.0000015989,0.0000015983,0.0000015976, -0.0000015962,0.0000015933,0.0000015897,0.0000015872,0.0000015861, -0.0000015862,0.0000015882,0.0000015883,0.0000015863,0.0000015838, -0.0000015823,0.0000015866,0.0000015992,0.0000016071,0.0000016192, -0.0000016366,0.0000016513,0.0000016560,0.0000016586,0.0000016617, -0.0000016612,0.0000016585,0.0000016569,0.0000016583,0.0000016622, -0.0000016658,0.0000016665,0.0000016633,0.0000016563,0.0000016480, -0.0000016415,0.0000016394,0.0000016418,0.0000016450,0.0000016456, -0.0000016437,0.0000016410,0.0000016381,0.0000016362,0.0000016335, -0.0000016307,0.0000016280,0.0000016281,0.0000016363,0.0000016536, -0.0000016835,0.0000017201,0.0000017639,0.0000017973,0.0000018189, -0.0000018221,0.0000017886,0.0000017305,0.0000017007,0.0000016979, -0.0000016977,0.0000017096,0.0000017452,0.0000017831,0.0000017942, -0.0000017696,0.0000017236,0.0000016944,0.0000016869,0.0000016815, -0.0000016687,0.0000016614,0.0000016767,0.0000017257,0.0000017814, -0.0000018207,0.0000018447,0.0000018561,0.0000018548,0.0000018335, -0.0000018039,0.0000017792,0.0000017633,0.0000017510,0.0000017436, -0.0000017429,0.0000017360,0.0000017351,0.0000017346,0.0000017335, -0.0000017341,0.0000017363,0.0000017387,0.0000017394,0.0000017393, -0.0000017377,0.0000017347,0.0000017312,0.0000017280,0.0000017259, -0.0000017277,0.0000017355,0.0000017452,0.0000017502,0.0000017550, -0.0000017665,0.0000017792,0.0000017881,0.0000017972,0.0000018054, -0.0000018072,0.0000017997,0.0000017894,0.0000017811,0.0000017761, -0.0000017754,0.0000017789,0.0000017864,0.0000017930,0.0000017951, -0.0000017924,0.0000017884,0.0000017873,0.0000017863,0.0000017820, -0.0000017769,0.0000017717,0.0000017646,0.0000017603,0.0000017692, -0.0000017907,0.0000017863,0.0000017387,0.0000017151,0.0000017754, -0.0000018599,0.0000018918,0.0000019098,0.0000019339,0.0000019528, -0.0000019668,0.0000019761,0.0000019814,0.0000019860,0.0000019923, -0.0000020000,0.0000020073,0.0000020130,0.0000020159,0.0000020154, -0.0000020145,0.0000020118,0.0000020085,0.0000020054,0.0000020020, -0.0000019986,0.0000019945,0.0000019895,0.0000019839,0.0000019792, -0.0000019754,0.0000019720,0.0000019691,0.0000019670,0.0000019658, -0.0000019658,0.0000019664,0.0000019670,0.0000019679,0.0000019707, -0.0000019739,0.0000019759,0.0000019760,0.0000019748,0.0000019727, -0.0000019703,0.0000019677,0.0000019655,0.0000019646,0.0000019657, -0.0000019684,0.0000019713,0.0000019739,0.0000019758,0.0000019767, -0.0000019770,0.0000019766,0.0000019739,0.0000019687,0.0000019643, -0.0000019665,0.0000019777,0.0000019888,0.0000019917,0.0000019901, -0.0000019857,0.0000019794,0.0000019739,0.0000019701,0.0000019672, -0.0000019641,0.0000019609,0.0000019574,0.0000019551,0.0000019548, -0.0000019542,0.0000019527,0.0000019428,0.0000019254,0.0000019265, -0.0000019377,0.0000019406,0.0000019370,0.0000019140,0.0000018890, -0.0000018843,0.0000018908,0.0000019041,0.0000019201,0.0000019308, -0.0000019333,0.0000019308,0.0000019284,0.0000019255,0.0000019236, -0.0000019220,0.0000019209,0.0000019200,0.0000019184,0.0000019170, -0.0000019172,0.0000019184,0.0000019197,0.0000019215,0.0000019241, -0.0000019271,0.0000019292,0.0000019300,0.0000019319,0.0000019330, -0.0000019329,0.0000019330,0.0000019332,0.0000019327,0.0000019318, -0.0000019312,0.0000019308,0.0000019295,0.0000019271,0.0000019246, -0.0000019232,0.0000019219,0.0000019196,0.0000019182,0.0000019172, -0.0000019172,0.0000019185,0.0000019200,0.0000019207,0.0000019195, -0.0000019155,0.0000019107,0.0000019075,0.0000019066,0.0000019055, -0.0000019036,0.0000019011,0.0000018994,0.0000018966,0.0000018923, -0.0000018893,0.0000018846,0.0000018771,0.0000018706,0.0000018695, -0.0000018728,0.0000018746,0.0000018746,0.0000018723,0.0000018681, -0.0000018635,0.0000018645,0.0000018651,0.0000018640,0.0000018582, -0.0000018492,0.0000018392,0.0000018346,0.0000018334,0.0000018351, -0.0000018500,0.0000018564,0.0000018528,0.0000018516,0.0000018548, -0.0000018580,0.0000018578,0.0000018586,0.0000018562,0.0000018499, -0.0000018444,0.0000018443,0.0000018477,0.0000018498,0.0000018495, -0.0000018470,0.0000018448,0.0000018436,0.0000018405,0.0000018315, -0.0000018166,0.0000017986,0.0000017807,0.0000017640,0.0000017493, -0.0000017391,0.0000017342,0.0000017317,0.0000017306,0.0000017325, -0.0000017379,0.0000017429,0.0000017417,0.0000017302,0.0000017123, -0.0000016992,0.0000016939,0.0000016914,0.0000016882,0.0000016832, -0.0000016803,0.0000016800,0.0000016774,0.0000016745,0.0000016766, -0.0000016845,0.0000016905,0.0000016910,0.0000016898,0.0000016913, -0.0000016930,0.0000016929,0.0000016921,0.0000016915,0.0000016878, -0.0000016778,0.0000016708,0.0000016677,0.0000016637,0.0000016629, -0.0000016656,0.0000016670,0.0000016591,0.0000016474,0.0000016459, -0.0000016546,0.0000016659,0.0000016733,0.0000016733,0.0000016652, -0.0000016565,0.0000016468,0.0000016367,0.0000016339,0.0000016317, -0.0000016290,0.0000016288,0.0000016272,0.0000016201,0.0000016149, -0.0000016172,0.0000016233,0.0000016211,0.0000016121,0.0000016059, -0.0000016066,0.0000016147,0.0000016202,0.0000016279,0.0000016431, -0.0000016557,0.0000016583,0.0000016594,0.0000016591,0.0000016569, -0.0000016526,0.0000016444,0.0000016419,0.0000016431,0.0000016441, -0.0000016444,0.0000016445,0.0000016442,0.0000016447,0.0000016462, -0.0000016481,0.0000016489,0.0000016498,0.0000016519,0.0000016532, -0.0000016520,0.0000016506,0.0000016510,0.0000016534,0.0000016557, -0.0000016591,0.0000016629,0.0000016663,0.0000016697,0.0000016734, -0.0000016764,0.0000016800,0.0000016896,0.0000017063,0.0000017252, -0.0000017445,0.0000017641,0.0000017777,0.0000017814,0.0000017783, -0.0000017746,0.0000017745,0.0000017782,0.0000017830,0.0000017868, -0.0000017891,0.0000017898,0.0000017910,0.0000017931,0.0000017949, -0.0000017958,0.0000017959,0.0000017940,0.0000017913,0.0000017895, -0.0000017869,0.0000017803,0.0000017725,0.0000017702,0.0000017735, -0.0000017772,0.0000017787,0.0000017787,0.0000017789,0.0000017771, -0.0000017731,0.0000017721,0.0000017667,0.0000017603,0.0000017592, -0.0000017496,0.0000017341,0.0000017419,0.0000017619,0.0000017649, -0.0000017638,0.0000017590,0.0000017564,0.0000017605,0.0000017695, -0.0000017727,0.0000017816,0.0000017995,0.0000018181,0.0000018320, -0.0000018349,0.0000018377,0.0000018398,0.0000018383,0.0000018364, -0.0000018380,0.0000018436,0.0000018466,0.0000018373,0.0000018114, -0.0000017892,0.0000017823,0.0000017821,0.0000017749,0.0000017543, -0.0000017314,0.0000017257,0.0000017366,0.0000017485,0.0000017494, -0.0000017418,0.0000017303,0.0000017216,0.0000017161,0.0000017115, -0.0000017082,0.0000017090,0.0000017130,0.0000017190,0.0000017267, -0.0000017359,0.0000017446,0.0000017517,0.0000017589,0.0000017614, -0.0000017585,0.0000017591,0.0000017666,0.0000017752,0.0000017844, -0.0000017923,0.0000017978,0.0000018115,0.0000018123,0.0000018044, -0.0000018061,0.0000017963,0.0000017520,0.0000017245,0.0000017385, -0.0000017427,0.0000017418,0.0000017546,0.0000017703,0.0000017734, -0.0000017696,0.0000017677,0.0000017694,0.0000017706,0.0000017680, -0.0000017516,0.0000017115,0.0000016633,0.0000016424,0.0000016491, -0.0000016754,0.0000017000,0.0000017140,0.0000017176,0.0000017172, -0.0000017156,0.0000017125,0.0000017070,0.0000016980,0.0000016853, -0.0000016706,0.0000016579,0.0000016510,0.0000016508,0.0000016555, -0.0000016617,0.0000016658,0.0000016680,0.0000016685,0.0000016690, -0.0000016714,0.0000016760,0.0000016810,0.0000016839,0.0000016851, -0.0000016863,0.0000016851,0.0000016828,0.0000016896,0.0000017236, -0.0000017689,0.0000017920,0.0000017956,0.0000018007,0.0000018023, -0.0000017943,0.0000017824,0.0000017706,0.0000017612,0.0000017574, -0.0000017560,0.0000017555,0.0000017573,0.0000017670,0.0000017812, -0.0000017819,0.0000017578,0.0000017294,0.0000017224,0.0000017305, -0.0000017550,0.0000017785,0.0000017850,0.0000017885,0.0000018248, -0.0000018954,0.0000019391,0.0000019390,0.0000019506,0.0000019924, -0.0000020156,0.0000020109,0.0000019949,0.0000019842,0.0000019790, -0.0000019647,0.0000019502,0.0000019516,0.0000019543,0.0000019510, -0.0000019516,0.0000019624,0.0000019693,0.0000019660,0.0000019615, -0.0000019625,0.0000019640,0.0000019633,0.0000019607,0.0000019587, -0.0000019591,0.0000019619,0.0000019626,0.0000019560,0.0000019431, -0.0000019325,0.0000019342,0.0000019525,0.0000019780,0.0000019942, -0.0000019989,0.0000020007,0.0000020016,0.0000020004,0.0000019997, -0.0000019993,0.0000019978,0.0000019967,0.0000019928,0.0000019902, -0.0000019991,0.0000020042,0.0000019986,0.0000019905,0.0000019743, -0.0000019596,0.0000019677,0.0000019966,0.0000020183,0.0000020221, -0.0000020202,0.0000020176,0.0000020160,0.0000020149,0.0000020147, -0.0000020175,0.0000020227,0.0000020276,0.0000020313,0.0000020333, -0.0000020366,0.0000020378,0.0000020327,0.0000020209,0.0000020104, -0.0000020003,0.0000019989,0.0000020063,0.0000020025,0.0000019398, -0.0000018649,0.0000018360,0.0000018219,0.0000018032,0.0000018230, -0.0000018774,0.0000018814,0.0000018494,0.0000018349,0.0000018258, -0.0000018234,0.0000018415,0.0000018454,0.0000018346,0.0000018416, -0.0000018592,0.0000018472,0.0000018102,0.0000017984,0.0000018154, -0.0000018350,0.0000018284,0.0000018117,0.0000018060,0.0000018491, -0.0000018609,0.0000018711,0.0000019060,0.0000019148,0.0000019295, -0.0000019503,0.0000019524,0.0000019489,0.0000019339,0.0000019215, -0.0000019241,0.0000019293,0.0000019117,0.0000018911,0.0000018835, -0.0000018783,0.0000018780,0.0000018766,0.0000018621,0.0000018232, -0.0000017839,0.0000017729,0.0000017801,0.0000017915,0.0000017930, -0.0000017948,0.0000018069,0.0000018159,0.0000018267,0.0000018300, -0.0000018250,0.0000018149,0.0000018217,0.0000018662,0.0000019011, -0.0000018830,0.0000018083,0.0000017425,0.0000017188,0.0000017061, -0.0000016984,0.0000016977,0.0000016997,0.0000016976,0.0000016939, -0.0000016863,0.0000016746,0.0000016631,0.0000016576,0.0000016452, -0.0000016287,0.0000016195,0.0000016162,0.0000016124,0.0000016053, -0.0000015972,0.0000015920,0.0000015904,0.0000015907,0.0000015924, -0.0000015943,0.0000015960,0.0000015962,0.0000015939,0.0000015904, -0.0000015882,0.0000015878,0.0000015894,0.0000015938,0.0000015977, -0.0000015981,0.0000015942,0.0000015863,0.0000015800,0.0000015812, -0.0000015934,0.0000016038,0.0000016198,0.0000016387,0.0000016512, -0.0000016556,0.0000016603,0.0000016628,0.0000016612,0.0000016569, -0.0000016532,0.0000016528,0.0000016551,0.0000016561,0.0000016535, -0.0000016491,0.0000016450,0.0000016426,0.0000016416,0.0000016415, -0.0000016416,0.0000016410,0.0000016396,0.0000016374,0.0000016342, -0.0000016301,0.0000016255,0.0000016213,0.0000016185,0.0000016204, -0.0000016354,0.0000016654,0.0000016988,0.0000017301,0.0000017612, -0.0000017889,0.0000018116,0.0000018231,0.0000018060,0.0000017505, -0.0000017073,0.0000017002,0.0000017022,0.0000017217,0.0000017564, -0.0000017866,0.0000017978,0.0000017838,0.0000017382,0.0000017018, -0.0000016883,0.0000016805,0.0000016692,0.0000016575,0.0000016589, -0.0000016900,0.0000017447,0.0000017936,0.0000018254,0.0000018469, -0.0000018584,0.0000018567,0.0000018441,0.0000018258,0.0000018048, -0.0000017881,0.0000017746,0.0000017639,0.0000017543,0.0000017470, -0.0000017413,0.0000017363,0.0000017344,0.0000017349,0.0000017367, -0.0000017369,0.0000017331,0.0000017276,0.0000017242,0.0000017193, -0.0000017076,0.0000016981,0.0000017014,0.0000017199,0.0000017371, -0.0000017429,0.0000017506,0.0000017668,0.0000017791,0.0000017834, -0.0000017915,0.0000018042,0.0000018099,0.0000018093,0.0000018038, -0.0000017994,0.0000017973,0.0000017985,0.0000018032,0.0000018087, -0.0000018129,0.0000018131,0.0000018095,0.0000018058,0.0000018039, -0.0000017996,0.0000017915,0.0000017834,0.0000017743,0.0000017635, -0.0000017586,0.0000017694,0.0000017906,0.0000017826,0.0000017338, -0.0000017093,0.0000017672,0.0000018524,0.0000018873,0.0000019070, -0.0000019319,0.0000019500,0.0000019621,0.0000019708,0.0000019760, -0.0000019793,0.0000019830,0.0000019883,0.0000019950,0.0000020021, -0.0000020080,0.0000020118,0.0000020136,0.0000020135,0.0000020126, -0.0000020112,0.0000020087,0.0000020072,0.0000020050,0.0000020023, -0.0000019983,0.0000019948,0.0000019917,0.0000019884,0.0000019847, -0.0000019809,0.0000019771,0.0000019739,0.0000019712,0.0000019688, -0.0000019674,0.0000019679,0.0000019700,0.0000019718,0.0000019733, -0.0000019739,0.0000019737,0.0000019726,0.0000019709,0.0000019689, -0.0000019686,0.0000019705,0.0000019732,0.0000019756,0.0000019778, -0.0000019802,0.0000019821,0.0000019823,0.0000019807,0.0000019770, -0.0000019726,0.0000019726,0.0000019817,0.0000019935,0.0000019982, -0.0000019973,0.0000019931,0.0000019870,0.0000019801,0.0000019745, -0.0000019706,0.0000019685,0.0000019675,0.0000019677,0.0000019677, -0.0000019670,0.0000019648,0.0000019613,0.0000019538,0.0000019342, -0.0000019260,0.0000019350,0.0000019420,0.0000019371,0.0000018921, -0.0000018452,0.0000018337,0.0000018366,0.0000018439,0.0000018578, -0.0000018809,0.0000019068,0.0000019227,0.0000019293,0.0000019298, -0.0000019259,0.0000019214,0.0000019177,0.0000019143,0.0000019101, -0.0000019071,0.0000019064,0.0000019067,0.0000019072,0.0000019082, -0.0000019114,0.0000019161,0.0000019198,0.0000019231,0.0000019278, -0.0000019330,0.0000019366,0.0000019405,0.0000019427,0.0000019425, -0.0000019411,0.0000019412,0.0000019391,0.0000019361,0.0000019317, -0.0000019267,0.0000019232,0.0000019211,0.0000019202,0.0000019199, -0.0000019199,0.0000019209,0.0000019227,0.0000019235,0.0000019228, -0.0000019198,0.0000019150,0.0000019113,0.0000019096,0.0000019101, -0.0000019114,0.0000019120,0.0000019127,0.0000019124,0.0000019096, -0.0000019047,0.0000018993,0.0000018918,0.0000018827,0.0000018758, -0.0000018749,0.0000018749,0.0000018750,0.0000018747,0.0000018718, -0.0000018694,0.0000018664,0.0000018682,0.0000018671,0.0000018649, -0.0000018592,0.0000018529,0.0000018450,0.0000018401,0.0000018380, -0.0000018363,0.0000018486,0.0000018560,0.0000018517,0.0000018509, -0.0000018539,0.0000018563,0.0000018591,0.0000018640,0.0000018649, -0.0000018603,0.0000018552,0.0000018537,0.0000018553,0.0000018584, -0.0000018596,0.0000018568,0.0000018514,0.0000018468,0.0000018426, -0.0000018354,0.0000018227,0.0000018055,0.0000017876,0.0000017725, -0.0000017619,0.0000017546,0.0000017475,0.0000017407,0.0000017363, -0.0000017360,0.0000017401,0.0000017454,0.0000017457,0.0000017344, -0.0000017145,0.0000017000,0.0000016959,0.0000016946,0.0000016904, -0.0000016849,0.0000016827,0.0000016807,0.0000016762,0.0000016754, -0.0000016815,0.0000016899,0.0000016927,0.0000016915,0.0000016907, -0.0000016923,0.0000016931,0.0000016928,0.0000016931,0.0000016926, -0.0000016864,0.0000016752,0.0000016689,0.0000016651,0.0000016614, -0.0000016616,0.0000016634,0.0000016616,0.0000016514,0.0000016440, -0.0000016472,0.0000016576,0.0000016676,0.0000016730,0.0000016702, -0.0000016609,0.0000016519,0.0000016420,0.0000016361,0.0000016335, -0.0000016303,0.0000016291,0.0000016281,0.0000016240,0.0000016170, -0.0000016159,0.0000016224,0.0000016257,0.0000016173,0.0000016079, -0.0000016045,0.0000016094,0.0000016177,0.0000016234,0.0000016353, -0.0000016512,0.0000016587,0.0000016596,0.0000016605,0.0000016592, -0.0000016562,0.0000016477,0.0000016422,0.0000016437,0.0000016456, -0.0000016457,0.0000016451,0.0000016434,0.0000016407,0.0000016391, -0.0000016401,0.0000016425,0.0000016441,0.0000016454,0.0000016484, -0.0000016504,0.0000016490,0.0000016466,0.0000016455,0.0000016458, -0.0000016483,0.0000016534,0.0000016589,0.0000016635,0.0000016677, -0.0000016717,0.0000016748,0.0000016801,0.0000016924,0.0000017087, -0.0000017241,0.0000017414,0.0000017618,0.0000017773,0.0000017817, -0.0000017794,0.0000017771,0.0000017787,0.0000017829,0.0000017868, -0.0000017857,0.0000017869,0.0000017891,0.0000017925,0.0000017950, -0.0000017963,0.0000017963,0.0000017937,0.0000017892,0.0000017839, -0.0000017760,0.0000017681,0.0000017663,0.0000017706,0.0000017760, -0.0000017778,0.0000017782,0.0000017785,0.0000017794,0.0000017782, -0.0000017729,0.0000017709,0.0000017667,0.0000017596,0.0000017581, -0.0000017495,0.0000017322,0.0000017361,0.0000017588,0.0000017642, -0.0000017627,0.0000017578,0.0000017554,0.0000017598,0.0000017689, -0.0000017725,0.0000017809,0.0000017989,0.0000018168,0.0000018309, -0.0000018329,0.0000018337,0.0000018356,0.0000018363,0.0000018376, -0.0000018433,0.0000018495,0.0000018465,0.0000018277,0.0000018036, -0.0000017899,0.0000017872,0.0000017829,0.0000017645,0.0000017365, -0.0000017240,0.0000017317,0.0000017478,0.0000017502,0.0000017404, -0.0000017233,0.0000017124,0.0000017093,0.0000017071,0.0000017040, -0.0000017033,0.0000017073,0.0000017130,0.0000017198,0.0000017275, -0.0000017368,0.0000017455,0.0000017514,0.0000017590,0.0000017635, -0.0000017620,0.0000017627,0.0000017700,0.0000017787,0.0000017881, -0.0000017937,0.0000018005,0.0000018140,0.0000018119,0.0000018057, -0.0000018084,0.0000017891,0.0000017413,0.0000017302,0.0000017418, -0.0000017401,0.0000017462,0.0000017652,0.0000017758,0.0000017759, -0.0000017752,0.0000017764,0.0000017768,0.0000017741,0.0000017553, -0.0000017105,0.0000016603,0.0000016426,0.0000016535,0.0000016807, -0.0000017030,0.0000017152,0.0000017186,0.0000017198,0.0000017205, -0.0000017196,0.0000017165,0.0000017110,0.0000017032,0.0000016930, -0.0000016813,0.0000016698,0.0000016607,0.0000016555,0.0000016559, -0.0000016568,0.0000016593,0.0000016628,0.0000016658,0.0000016713, -0.0000016785,0.0000016850,0.0000016895,0.0000016920,0.0000016918, -0.0000016877,0.0000016863,0.0000017057,0.0000017482,0.0000017840, -0.0000017952,0.0000017985,0.0000018025,0.0000017995,0.0000017892, -0.0000017765,0.0000017648,0.0000017595,0.0000017587,0.0000017583, -0.0000017580,0.0000017606,0.0000017726,0.0000017826,0.0000017749, -0.0000017452,0.0000017202,0.0000017152,0.0000017273,0.0000017569, -0.0000017805,0.0000017849,0.0000017890,0.0000018301,0.0000019019, -0.0000019389,0.0000019357,0.0000019469,0.0000019904,0.0000020189, -0.0000020127,0.0000019950,0.0000019867,0.0000019819,0.0000019662, -0.0000019528,0.0000019535,0.0000019557,0.0000019532,0.0000019537, -0.0000019655,0.0000019745,0.0000019732,0.0000019719,0.0000019744, -0.0000019750,0.0000019727,0.0000019698,0.0000019683,0.0000019678, -0.0000019669,0.0000019626,0.0000019535,0.0000019431,0.0000019395, -0.0000019499,0.0000019714,0.0000019890,0.0000019951,0.0000019975, -0.0000020024,0.0000020058,0.0000020052,0.0000020028,0.0000020003, -0.0000019999,0.0000019998,0.0000019949,0.0000019943,0.0000020039, -0.0000020058,0.0000019993,0.0000019934,0.0000019783,0.0000019649, -0.0000019727,0.0000020000,0.0000020211,0.0000020258,0.0000020251, -0.0000020225,0.0000020193,0.0000020177,0.0000020202,0.0000020255, -0.0000020303,0.0000020329,0.0000020336,0.0000020369,0.0000020400, -0.0000020364,0.0000020268,0.0000020182,0.0000020055,0.0000020003, -0.0000020030,0.0000020000,0.0000019388,0.0000018639,0.0000018340, -0.0000018234,0.0000018079,0.0000018100,0.0000018657,0.0000018898, -0.0000018624,0.0000018403,0.0000018310,0.0000018214,0.0000018376, -0.0000018487,0.0000018342,0.0000018331,0.0000018523,0.0000018595, -0.0000018298,0.0000018014,0.0000018048,0.0000018278,0.0000018329, -0.0000018179,0.0000018052,0.0000018231,0.0000018721,0.0000018638, -0.0000019063,0.0000019179,0.0000019360,0.0000019534,0.0000019467, -0.0000019487,0.0000019504,0.0000019426,0.0000019317,0.0000019358, -0.0000019399,0.0000019191,0.0000018977,0.0000018907,0.0000018851, -0.0000018726,0.0000018401,0.0000017952,0.0000017768,0.0000018000, -0.0000018404,0.0000018669,0.0000018727,0.0000018635,0.0000018423, -0.0000018213,0.0000018085,0.0000018041,0.0000018071,0.0000018276, -0.0000018735,0.0000019068,0.0000018923,0.0000018233,0.0000017469, -0.0000017164,0.0000017030,0.0000016957,0.0000016963,0.0000016993, -0.0000016979,0.0000016959,0.0000016914,0.0000016810,0.0000016663, -0.0000016575,0.0000016471,0.0000016297,0.0000016188,0.0000016156, -0.0000016108,0.0000016007,0.0000015899,0.0000015839,0.0000015857, -0.0000015884,0.0000015939,0.0000015984,0.0000016028,0.0000016062, -0.0000016057,0.0000016015,0.0000015956,0.0000015916,0.0000015903, -0.0000015925,0.0000015989,0.0000016048,0.0000016073,0.0000016070, -0.0000016013,0.0000015903,0.0000015792,0.0000015755,0.0000015862, -0.0000016001,0.0000016204,0.0000016397,0.0000016509,0.0000016572, -0.0000016624,0.0000016631,0.0000016603,0.0000016526,0.0000016456, -0.0000016434,0.0000016446,0.0000016459,0.0000016458,0.0000016450, -0.0000016436,0.0000016421,0.0000016395,0.0000016374,0.0000016356, -0.0000016340,0.0000016319,0.0000016287,0.0000016252,0.0000016215, -0.0000016165,0.0000016115,0.0000016112,0.0000016246,0.0000016647, -0.0000017134,0.0000017499,0.0000017715,0.0000017873,0.0000018046, -0.0000018221,0.0000018177,0.0000017699,0.0000017167,0.0000017023, -0.0000017066,0.0000017295,0.0000017589,0.0000017817,0.0000017954, -0.0000017846,0.0000017431,0.0000017072,0.0000016932,0.0000016839, -0.0000016714,0.0000016579,0.0000016514,0.0000016598,0.0000016986, -0.0000017498,0.0000017921,0.0000018209,0.0000018403,0.0000018523, -0.0000018585,0.0000018579,0.0000018529,0.0000018448,0.0000018384, -0.0000018294,0.0000018176,0.0000018084,0.0000018035,0.0000018009, -0.0000018008,0.0000018014,0.0000017944,0.0000017738,0.0000017497, -0.0000017323,0.0000017231,0.0000017115,0.0000016977,0.0000016912, -0.0000017053,0.0000017267,0.0000017382,0.0000017429,0.0000017537, -0.0000017684,0.0000017748,0.0000017771,0.0000017864,0.0000017999, -0.0000018070,0.0000018075,0.0000018071,0.0000018081,0.0000018099, -0.0000018129,0.0000018163,0.0000018180,0.0000018190,0.0000018175, -0.0000018152,0.0000018144,0.0000018131,0.0000018076,0.0000017984, -0.0000017881,0.0000017748,0.0000017614,0.0000017592,0.0000017736, -0.0000017875,0.0000017730,0.0000017201,0.0000017038,0.0000017681, -0.0000018514,0.0000018863,0.0000019071,0.0000019319,0.0000019489, -0.0000019588,0.0000019659,0.0000019706,0.0000019736,0.0000019765, -0.0000019804,0.0000019859,0.0000019924,0.0000019986,0.0000020033, -0.0000020059,0.0000020065,0.0000020061,0.0000020052,0.0000020043, -0.0000020036,0.0000020032,0.0000020027,0.0000020015,0.0000020016, -0.0000020012,0.0000020010,0.0000020007,0.0000019991,0.0000019966, -0.0000019933,0.0000019896,0.0000019852,0.0000019803,0.0000019762, -0.0000019737,0.0000019727,0.0000019734,0.0000019743,0.0000019747, -0.0000019746,0.0000019738,0.0000019732,0.0000019741,0.0000019769, -0.0000019799,0.0000019817,0.0000019828,0.0000019844,0.0000019856, -0.0000019855,0.0000019836,0.0000019800,0.0000019786,0.0000019840, -0.0000019952,0.0000020023,0.0000020028,0.0000019993,0.0000019936, -0.0000019875,0.0000019816,0.0000019760,0.0000019723,0.0000019707, -0.0000019710,0.0000019730,0.0000019751,0.0000019749,0.0000019711, -0.0000019644,0.0000019460,0.0000019276,0.0000019321,0.0000019434, -0.0000019407,0.0000018853,0.0000018319,0.0000018202,0.0000018172, -0.0000018046,0.0000017847,0.0000017863,0.0000018163,0.0000018647, -0.0000019095,0.0000019335,0.0000019371,0.0000019304,0.0000019204, -0.0000019102,0.0000019006,0.0000018954,0.0000018936,0.0000018920, -0.0000018904,0.0000018873,0.0000018846,0.0000018858,0.0000018869, -0.0000018867,0.0000018887,0.0000018948,0.0000019046,0.0000019156, -0.0000019255,0.0000019319,0.0000019370,0.0000019421,0.0000019440, -0.0000019443,0.0000019409,0.0000019360,0.0000019328,0.0000019310, -0.0000019305,0.0000019303,0.0000019299,0.0000019304,0.0000019305, -0.0000019293,0.0000019267,0.0000019221,0.0000019168,0.0000019132, -0.0000019112,0.0000019112,0.0000019121,0.0000019136,0.0000019158, -0.0000019162,0.0000019154,0.0000019127,0.0000019065,0.0000018975, -0.0000018881,0.0000018828,0.0000018833,0.0000018821,0.0000018792, -0.0000018767,0.0000018727,0.0000018718,0.0000018709,0.0000018716, -0.0000018693,0.0000018649,0.0000018601,0.0000018578,0.0000018514, -0.0000018466,0.0000018447,0.0000018417,0.0000018477,0.0000018537, -0.0000018499,0.0000018491,0.0000018518,0.0000018543,0.0000018610, -0.0000018703,0.0000018748,0.0000018737,0.0000018689,0.0000018656, -0.0000018668,0.0000018717,0.0000018736,0.0000018697,0.0000018610, -0.0000018518,0.0000018438,0.0000018355,0.0000018248,0.0000018112, -0.0000017961,0.0000017844,0.0000017782,0.0000017718,0.0000017611, -0.0000017496,0.0000017419,0.0000017395,0.0000017415,0.0000017466, -0.0000017471,0.0000017363,0.0000017165,0.0000017025,0.0000016993, -0.0000016977,0.0000016924,0.0000016870,0.0000016842,0.0000016798, -0.0000016766,0.0000016790,0.0000016877,0.0000016938,0.0000016939, -0.0000016924,0.0000016922,0.0000016933,0.0000016932,0.0000016932, -0.0000016942,0.0000016929,0.0000016838,0.0000016726,0.0000016674, -0.0000016631,0.0000016600,0.0000016597,0.0000016597,0.0000016547, -0.0000016453,0.0000016430,0.0000016502,0.0000016607,0.0000016690, -0.0000016716,0.0000016659,0.0000016561,0.0000016472,0.0000016402, -0.0000016362,0.0000016323,0.0000016302,0.0000016285,0.0000016263, -0.0000016212,0.0000016171,0.0000016198,0.0000016266,0.0000016235, -0.0000016116,0.0000016044,0.0000016044,0.0000016129,0.0000016204, -0.0000016287,0.0000016439,0.0000016569,0.0000016602,0.0000016613, -0.0000016614,0.0000016595,0.0000016530,0.0000016440,0.0000016432, -0.0000016450,0.0000016448,0.0000016440,0.0000016431,0.0000016407, -0.0000016363,0.0000016325,0.0000016319,0.0000016339,0.0000016372, -0.0000016407,0.0000016443,0.0000016463,0.0000016455,0.0000016427, -0.0000016399,0.0000016389,0.0000016422,0.0000016480,0.0000016537, -0.0000016579,0.0000016624,0.0000016675,0.0000016728,0.0000016819, -0.0000016967,0.0000017115,0.0000017235,0.0000017385,0.0000017583, -0.0000017750,0.0000017803,0.0000017797,0.0000017795,0.0000017812, -0.0000017837,0.0000017811,0.0000017821,0.0000017852,0.0000017896, -0.0000017933,0.0000017952,0.0000017943,0.0000017890,0.0000017808, -0.0000017715,0.0000017639,0.0000017631,0.0000017682,0.0000017751, -0.0000017779,0.0000017773,0.0000017770,0.0000017778,0.0000017793, -0.0000017786,0.0000017720,0.0000017694,0.0000017661,0.0000017587, -0.0000017565,0.0000017486,0.0000017288,0.0000017297,0.0000017545, -0.0000017631,0.0000017613,0.0000017562,0.0000017549,0.0000017594, -0.0000017680,0.0000017725,0.0000017808,0.0000017986,0.0000018154, -0.0000018295,0.0000018321,0.0000018327,0.0000018356,0.0000018386, -0.0000018430,0.0000018493,0.0000018513,0.0000018430,0.0000018241, -0.0000018047,0.0000017935,0.0000017900,0.0000017798,0.0000017530, -0.0000017252,0.0000017225,0.0000017383,0.0000017495,0.0000017431, -0.0000017225,0.0000017079,0.0000017037,0.0000017021,0.0000017008, -0.0000017015,0.0000017052,0.0000017114,0.0000017181,0.0000017243, -0.0000017307,0.0000017395,0.0000017480,0.0000017525,0.0000017588, -0.0000017649,0.0000017656,0.0000017660,0.0000017727,0.0000017817, -0.0000017911,0.0000017949,0.0000018045,0.0000018180,0.0000018109, -0.0000018076,0.0000018077,0.0000017790,0.0000017363,0.0000017354, -0.0000017417,0.0000017399,0.0000017557,0.0000017741,0.0000017782, -0.0000017785,0.0000017805,0.0000017818,0.0000017803,0.0000017611, -0.0000017145,0.0000016629,0.0000016431,0.0000016528,0.0000016784, -0.0000016989,0.0000017120,0.0000017168,0.0000017188,0.0000017229, -0.0000017254,0.0000017243,0.0000017199,0.0000017122,0.0000017022, -0.0000016925,0.0000016846,0.0000016782,0.0000016724,0.0000016681, -0.0000016665,0.0000016674,0.0000016703,0.0000016743,0.0000016796, -0.0000016862,0.0000016922,0.0000016958,0.0000016969,0.0000016943, -0.0000016906,0.0000016963,0.0000017273,0.0000017688,0.0000017920, -0.0000017974,0.0000018011,0.0000018016,0.0000017946,0.0000017836, -0.0000017705,0.0000017615,0.0000017601,0.0000017604,0.0000017592, -0.0000017584,0.0000017634,0.0000017780,0.0000017835,0.0000017651, -0.0000017325,0.0000017115,0.0000017094,0.0000017270,0.0000017601, -0.0000017819,0.0000017846,0.0000017892,0.0000018334,0.0000019055, -0.0000019379,0.0000019327,0.0000019410,0.0000019851,0.0000020193, -0.0000020143,0.0000019959,0.0000019890,0.0000019850,0.0000019687, -0.0000019553,0.0000019554,0.0000019585,0.0000019560,0.0000019548, -0.0000019662,0.0000019792,0.0000019818,0.0000019826,0.0000019849, -0.0000019846,0.0000019817,0.0000019789,0.0000019767,0.0000019736, -0.0000019683,0.0000019603,0.0000019519,0.0000019482,0.0000019524, -0.0000019681,0.0000019847,0.0000019922,0.0000019940,0.0000019977, -0.0000020047,0.0000020103,0.0000020115,0.0000020093,0.0000020060, -0.0000020053,0.0000020041,0.0000019982,0.0000019993,0.0000020075, -0.0000020063,0.0000020008,0.0000019959,0.0000019803,0.0000019677, -0.0000019779,0.0000020046,0.0000020237,0.0000020289,0.0000020287, -0.0000020257,0.0000020233,0.0000020246,0.0000020288,0.0000020326, -0.0000020343,0.0000020337,0.0000020363,0.0000020408,0.0000020386, -0.0000020313,0.0000020250,0.0000020122,0.0000020035,0.0000020036, -0.0000019983,0.0000019379,0.0000018644,0.0000018339,0.0000018246, -0.0000018098,0.0000018090,0.0000018522,0.0000018975,0.0000018787, -0.0000018454,0.0000018385,0.0000018362,0.0000018449,0.0000018506, -0.0000018364,0.0000018295,0.0000018411,0.0000018606,0.0000018499, -0.0000018137,0.0000018018,0.0000018157,0.0000018347,0.0000018251, -0.0000018067,0.0000018052,0.0000018791,0.0000018548,0.0000019055, -0.0000019208,0.0000019398,0.0000019423,0.0000019062,0.0000019039, -0.0000019333,0.0000019555,0.0000019565,0.0000019507,0.0000019594, -0.0000019629,0.0000019450,0.0000019218,0.0000018977,0.0000018641, -0.0000018172,0.0000017879,0.0000018030,0.0000018540,0.0000018966, -0.0000019092,0.0000019095,0.0000019092,0.0000019074,0.0000019035, -0.0000018984,0.0000018952,0.0000018946,0.0000019012,0.0000019075, -0.0000018941,0.0000018353,0.0000017590,0.0000017197,0.0000017035, -0.0000016934,0.0000016936,0.0000016979,0.0000016973,0.0000016958, -0.0000016935,0.0000016846,0.0000016693,0.0000016555,0.0000016466, -0.0000016311,0.0000016180,0.0000016136,0.0000016093,0.0000015970, -0.0000015851,0.0000015821,0.0000015839,0.0000015908,0.0000015980, -0.0000016037,0.0000016068,0.0000016098,0.0000016097,0.0000016086, -0.0000016028,0.0000015963,0.0000015924,0.0000015906,0.0000015936, -0.0000016007,0.0000016061,0.0000016080,0.0000016084,0.0000016074, -0.0000016025,0.0000015926,0.0000015774,0.0000015685,0.0000015803, -0.0000015995,0.0000016219,0.0000016402,0.0000016499,0.0000016571, -0.0000016627,0.0000016632,0.0000016584,0.0000016479,0.0000016407, -0.0000016393,0.0000016413,0.0000016445,0.0000016462,0.0000016470, -0.0000016461,0.0000016430,0.0000016386,0.0000016352,0.0000016326, -0.0000016299,0.0000016272,0.0000016249,0.0000016231,0.0000016197, -0.0000016136,0.0000016087,0.0000016096,0.0000016402,0.0000017016, -0.0000017544,0.0000017797,0.0000017870,0.0000017976,0.0000018183, -0.0000018248,0.0000017865,0.0000017271,0.0000017034,0.0000017088, -0.0000017322,0.0000017569,0.0000017754,0.0000017883,0.0000017770, -0.0000017376,0.0000017071,0.0000016978,0.0000016895,0.0000016768, -0.0000016634,0.0000016512,0.0000016470,0.0000016591,0.0000016936, -0.0000017385,0.0000017778,0.0000018064,0.0000018266,0.0000018405, -0.0000018508,0.0000018560,0.0000018593,0.0000018632,0.0000018584, -0.0000018609,0.0000018630,0.0000018666,0.0000018684,0.0000018679, -0.0000018572,0.0000018188,0.0000017755,0.0000017402,0.0000017227, -0.0000017133,0.0000017051,0.0000017058,0.0000017162,0.0000017302, -0.0000017383,0.0000017408,0.0000017470,0.0000017587,0.0000017667, -0.0000017685,0.0000017716,0.0000017806,0.0000017907,0.0000017965, -0.0000018000,0.0000018043,0.0000018088,0.0000018121,0.0000018152, -0.0000018165,0.0000018162,0.0000018152,0.0000018142,0.0000018150, -0.0000018161,0.0000018157,0.0000018104,0.0000018009,0.0000017869, -0.0000017716,0.0000017612,0.0000017653,0.0000017815,0.0000017869, -0.0000017547,0.0000017028,0.0000017081,0.0000017849,0.0000018609, -0.0000018919,0.0000019122,0.0000019352,0.0000019498,0.0000019574, -0.0000019626,0.0000019662,0.0000019688,0.0000019714,0.0000019748, -0.0000019794,0.0000019850,0.0000019904,0.0000019941,0.0000019958, -0.0000019959,0.0000019952,0.0000019942,0.0000019933,0.0000019929, -0.0000019929,0.0000019938,0.0000019949,0.0000019961,0.0000019975, -0.0000019991,0.0000020012,0.0000020035,0.0000020054,0.0000020066, -0.0000020075,0.0000020080,0.0000020064,0.0000020019,0.0000019956, -0.0000019885,0.0000019832,0.0000019803,0.0000019780,0.0000019759, -0.0000019749,0.0000019757,0.0000019780,0.0000019811,0.0000019840, -0.0000019856,0.0000019864,0.0000019872,0.0000019881,0.0000019885, -0.0000019871,0.0000019850,0.0000019876,0.0000019968,0.0000020052, -0.0000020081,0.0000020065,0.0000020005,0.0000019945,0.0000019897, -0.0000019839,0.0000019784,0.0000019750,0.0000019736,0.0000019735, -0.0000019762,0.0000019792,0.0000019792,0.0000019745,0.0000019588, -0.0000019335,0.0000019296,0.0000019429,0.0000019471,0.0000018950, -0.0000018379,0.0000018205,0.0000018091,0.0000017756,0.0000017284, -0.0000017079,0.0000017259,0.0000017904,0.0000018683,0.0000019257, -0.0000019483,0.0000019496,0.0000019409,0.0000019276,0.0000019166, -0.0000019113,0.0000019084,0.0000019043,0.0000018974,0.0000018903, -0.0000018842,0.0000018792,0.0000018748,0.0000018669,0.0000018599, -0.0000018590,0.0000018634,0.0000018703,0.0000018775,0.0000018855, -0.0000018945,0.0000019044,0.0000019149,0.0000019236,0.0000019293, -0.0000019312,0.0000019340,0.0000019367,0.0000019380,0.0000019379, -0.0000019374,0.0000019377,0.0000019372,0.0000019355,0.0000019324, -0.0000019286,0.0000019238,0.0000019207,0.0000019186,0.0000019172, -0.0000019163,0.0000019166,0.0000019169,0.0000019162,0.0000019152, -0.0000019127,0.0000019075,0.0000018998,0.0000018923,0.0000018891, -0.0000018892,0.0000018890,0.0000018856,0.0000018815,0.0000018768, -0.0000018758,0.0000018755,0.0000018746,0.0000018700,0.0000018647, -0.0000018615,0.0000018621,0.0000018580,0.0000018519,0.0000018510, -0.0000018482,0.0000018486,0.0000018506,0.0000018470,0.0000018460, -0.0000018484,0.0000018521,0.0000018626,0.0000018769,0.0000018859, -0.0000018854,0.0000018803,0.0000018767,0.0000018782,0.0000018828, -0.0000018844,0.0000018810,0.0000018724,0.0000018614,0.0000018493, -0.0000018361,0.0000018240,0.0000018144,0.0000018060,0.0000017986, -0.0000017924,0.0000017839,0.0000017705,0.0000017558,0.0000017452, -0.0000017412,0.0000017422,0.0000017475,0.0000017486,0.0000017379, -0.0000017183,0.0000017054,0.0000017029,0.0000017003,0.0000016942, -0.0000016890,0.0000016846,0.0000016797,0.0000016794,0.0000016854, -0.0000016930,0.0000016955,0.0000016954,0.0000016949,0.0000016949, -0.0000016949,0.0000016940,0.0000016942,0.0000016951,0.0000016919, -0.0000016806,0.0000016705,0.0000016661,0.0000016617,0.0000016583, -0.0000016567,0.0000016551,0.0000016482,0.0000016417,0.0000016442, -0.0000016539,0.0000016631,0.0000016694,0.0000016690,0.0000016610, -0.0000016514,0.0000016445,0.0000016401,0.0000016358,0.0000016321, -0.0000016295,0.0000016271,0.0000016246,0.0000016202,0.0000016186, -0.0000016245,0.0000016277,0.0000016178,0.0000016064,0.0000016024, -0.0000016062,0.0000016161,0.0000016238,0.0000016357,0.0000016514, -0.0000016598,0.0000016616,0.0000016630,0.0000016627,0.0000016588, -0.0000016492,0.0000016434,0.0000016440,0.0000016434,0.0000016414, -0.0000016407,0.0000016404,0.0000016375,0.0000016323,0.0000016273, -0.0000016239,0.0000016250,0.0000016295,0.0000016348,0.0000016388, -0.0000016403,0.0000016395,0.0000016375,0.0000016353,0.0000016343, -0.0000016372,0.0000016420,0.0000016461,0.0000016507,0.0000016587, -0.0000016677,0.0000016761,0.0000016877,0.0000017025,0.0000017136, -0.0000017212,0.0000017338,0.0000017534,0.0000017703,0.0000017788, -0.0000017800,0.0000017803,0.0000017806,0.0000017782,0.0000017778, -0.0000017801,0.0000017834,0.0000017866,0.0000017877,0.0000017846, -0.0000017761,0.0000017665,0.0000017606,0.0000017610,0.0000017669, -0.0000017749,0.0000017791,0.0000017783,0.0000017755,0.0000017748, -0.0000017762,0.0000017785,0.0000017781,0.0000017705,0.0000017675, -0.0000017652,0.0000017577,0.0000017547,0.0000017470,0.0000017257, -0.0000017232,0.0000017493,0.0000017615,0.0000017599,0.0000017548, -0.0000017548,0.0000017592,0.0000017670,0.0000017725,0.0000017812, -0.0000017984,0.0000018138,0.0000018278,0.0000018319,0.0000018329, -0.0000018375,0.0000018435,0.0000018486,0.0000018514,0.0000018497, -0.0000018400,0.0000018252,0.0000018101,0.0000017997,0.0000017918, -0.0000017746,0.0000017430,0.0000017212,0.0000017235,0.0000017418, -0.0000017450,0.0000017279,0.0000017077,0.0000017013,0.0000016985, -0.0000016971,0.0000016999,0.0000017067,0.0000017143,0.0000017209, -0.0000017268,0.0000017317,0.0000017361,0.0000017425,0.0000017504, -0.0000017550,0.0000017600,0.0000017671,0.0000017687,0.0000017686, -0.0000017751,0.0000017845,0.0000017934,0.0000017965,0.0000018095, -0.0000018207,0.0000018101,0.0000018085,0.0000018048,0.0000017674, -0.0000017327,0.0000017396,0.0000017397,0.0000017445,0.0000017667, -0.0000017787,0.0000017794,0.0000017815,0.0000017853,0.0000017856, -0.0000017678,0.0000017218,0.0000016707,0.0000016452,0.0000016505, -0.0000016693,0.0000016890,0.0000017053,0.0000017127,0.0000017147, -0.0000017211,0.0000017285,0.0000017305,0.0000017286,0.0000017217, -0.0000017106,0.0000016983,0.0000016886,0.0000016834,0.0000016808, -0.0000016787,0.0000016776,0.0000016780,0.0000016801,0.0000016836, -0.0000016883,0.0000016937,0.0000016982,0.0000017002,0.0000016991, -0.0000016949,0.0000016953,0.0000017136,0.0000017502,0.0000017828, -0.0000017958,0.0000017992,0.0000018014,0.0000017982,0.0000017891, -0.0000017771,0.0000017650,0.0000017607,0.0000017612,0.0000017602, -0.0000017572,0.0000017575,0.0000017668,0.0000017807,0.0000017806, -0.0000017541,0.0000017217,0.0000017052,0.0000017061,0.0000017285, -0.0000017634,0.0000017831,0.0000017833,0.0000017879,0.0000018340, -0.0000019072,0.0000019396,0.0000019315,0.0000019318,0.0000019750, -0.0000020179,0.0000020160,0.0000019964,0.0000019912,0.0000019892, -0.0000019727,0.0000019573,0.0000019573,0.0000019633,0.0000019600, -0.0000019545,0.0000019640,0.0000019803,0.0000019877,0.0000019902, -0.0000019919,0.0000019913,0.0000019883,0.0000019847,0.0000019808, -0.0000019748,0.0000019666,0.0000019581,0.0000019530,0.0000019538, -0.0000019613,0.0000019742,0.0000019855,0.0000019919,0.0000019957, -0.0000019998,0.0000020056,0.0000020124,0.0000020169,0.0000020162, -0.0000020117,0.0000020090,0.0000020064,0.0000020014,0.0000020048, -0.0000020114,0.0000020074,0.0000020026,0.0000019978,0.0000019808, -0.0000019694,0.0000019829,0.0000020085,0.0000020256,0.0000020314, -0.0000020307,0.0000020286,0.0000020287,0.0000020309,0.0000020333, -0.0000020346,0.0000020337,0.0000020354,0.0000020408,0.0000020395, -0.0000020342,0.0000020298,0.0000020174,0.0000020088,0.0000020064, -0.0000019984,0.0000019365,0.0000018647,0.0000018347,0.0000018262, -0.0000018108,0.0000018032,0.0000018368,0.0000018943,0.0000018966, -0.0000018556,0.0000018380,0.0000018413,0.0000018494,0.0000018519, -0.0000018366,0.0000018299,0.0000018348,0.0000018527,0.0000018613, -0.0000018325,0.0000018052,0.0000018064,0.0000018277,0.0000018329, -0.0000018136,0.0000018009,0.0000018653,0.0000018516,0.0000019031, -0.0000019231,0.0000019384,0.0000019246,0.0000018606,0.0000018456, -0.0000018619,0.0000019076,0.0000019482,0.0000019629,0.0000019699, -0.0000019796,0.0000019778,0.0000019559,0.0000019106,0.0000018512, -0.0000018043,0.0000018002,0.0000018463,0.0000018952,0.0000019080, -0.0000019024,0.0000018870,0.0000018723,0.0000018673,0.0000018708, -0.0000018797,0.0000018890,0.0000018939,0.0000018916,0.0000018714, -0.0000018237,0.0000017630,0.0000017232,0.0000017047,0.0000016950, -0.0000016947,0.0000016987,0.0000016965,0.0000016945,0.0000016937, -0.0000016862,0.0000016700,0.0000016516,0.0000016406,0.0000016289, -0.0000016170,0.0000016126,0.0000016069,0.0000015932,0.0000015806, -0.0000015794,0.0000015858,0.0000015945,0.0000016007,0.0000016045, -0.0000016057,0.0000016044,0.0000016034,0.0000016022,0.0000016004, -0.0000015978,0.0000015954,0.0000015941,0.0000015954,0.0000015995, -0.0000016050,0.0000016081,0.0000016079,0.0000016064,0.0000016051, -0.0000016036,0.0000015999,0.0000015930,0.0000015786,0.0000015664, -0.0000015788,0.0000016014,0.0000016247,0.0000016419,0.0000016497, -0.0000016562,0.0000016621,0.0000016627,0.0000016569,0.0000016472, -0.0000016420,0.0000016427,0.0000016473,0.0000016525,0.0000016543, -0.0000016509,0.0000016441,0.0000016376,0.0000016335,0.0000016310, -0.0000016285,0.0000016264,0.0000016251,0.0000016246,0.0000016239, -0.0000016208,0.0000016132,0.0000016066,0.0000016180,0.0000016730, -0.0000017438,0.0000017813,0.0000017869,0.0000017919,0.0000018136, -0.0000018276,0.0000017996,0.0000017372,0.0000017049,0.0000017090, -0.0000017309,0.0000017532,0.0000017710,0.0000017821,0.0000017663, -0.0000017259,0.0000017019,0.0000016972,0.0000016902,0.0000016787, -0.0000016670,0.0000016546,0.0000016450,0.0000016388,0.0000016494, -0.0000016843,0.0000017323,0.0000017748,0.0000018026,0.0000018174, -0.0000018246,0.0000018293,0.0000018340,0.0000018397,0.0000018472, -0.0000018565,0.0000018658,0.0000018703,0.0000018636,0.0000018443, -0.0000018122,0.0000017703,0.0000017366,0.0000017219,0.0000017185, -0.0000017202,0.0000017257,0.0000017355,0.0000017424,0.0000017434, -0.0000017428,0.0000017454,0.0000017535,0.0000017605,0.0000017624, -0.0000017624,0.0000017644,0.0000017696,0.0000017769,0.0000017857, -0.0000017950,0.0000018035,0.0000018093,0.0000018119,0.0000018119, -0.0000018107,0.0000018091,0.0000018088,0.0000018108,0.0000018140, -0.0000018158,0.0000018146,0.0000018078,0.0000017950,0.0000017797, -0.0000017688,0.0000017676,0.0000017773,0.0000017864,0.0000017728, -0.0000017226,0.0000016943,0.0000017337,0.0000018203,0.0000018794, -0.0000019017,0.0000019209,0.0000019393,0.0000019498,0.0000019557, -0.0000019596,0.0000019617,0.0000019633,0.0000019657,0.0000019692, -0.0000019735,0.0000019777,0.0000019808,0.0000019824,0.0000019827, -0.0000019822,0.0000019814,0.0000019811,0.0000019812,0.0000019824, -0.0000019845,0.0000019874,0.0000019894,0.0000019918,0.0000019930, -0.0000019942,0.0000019958,0.0000019980,0.0000020001,0.0000020028, -0.0000020061,0.0000020099,0.0000020135,0.0000020161,0.0000020163, -0.0000020151,0.0000020120,0.0000020061,0.0000019984,0.0000019902, -0.0000019839,0.0000019811,0.0000019813,0.0000019835,0.0000019866, -0.0000019889,0.0000019898,0.0000019902,0.0000019911,0.0000019920, -0.0000019914,0.0000019920,0.0000019983,0.0000020066,0.0000020124, -0.0000020142,0.0000020104,0.0000020032,0.0000019982,0.0000019933, -0.0000019869,0.0000019811,0.0000019762,0.0000019719,0.0000019701, -0.0000019734,0.0000019775,0.0000019775,0.0000019660,0.0000019411, -0.0000019304,0.0000019406,0.0000019494,0.0000019092,0.0000018491, -0.0000018215,0.0000017863,0.0000017282,0.0000016789,0.0000016699, -0.0000017110,0.0000017908,0.0000018639,0.0000019140,0.0000019393, -0.0000019457,0.0000019443,0.0000019370,0.0000019294,0.0000019241, -0.0000019198,0.0000019140,0.0000019060,0.0000018977,0.0000018904, -0.0000018830,0.0000018746,0.0000018662,0.0000018586,0.0000018545, -0.0000018545,0.0000018554,0.0000018551,0.0000018538,0.0000018555, -0.0000018599,0.0000018668,0.0000018752,0.0000018836,0.0000018923, -0.0000019010,0.0000019088,0.0000019143,0.0000019177,0.0000019208, -0.0000019241,0.0000019267,0.0000019285,0.0000019293,0.0000019285, -0.0000019275,0.0000019266,0.0000019257,0.0000019247,0.0000019225, -0.0000019211,0.0000019191,0.0000019171,0.0000019145,0.0000019113, -0.0000019063,0.0000018996,0.0000018945,0.0000018931,0.0000018933, -0.0000018931,0.0000018904,0.0000018863,0.0000018824,0.0000018812, -0.0000018796,0.0000018765,0.0000018694,0.0000018652,0.0000018633, -0.0000018652,0.0000018639,0.0000018555,0.0000018555,0.0000018543, -0.0000018507,0.0000018485,0.0000018445,0.0000018426,0.0000018439, -0.0000018489,0.0000018637,0.0000018817,0.0000018919,0.0000018914, -0.0000018870,0.0000018835,0.0000018837,0.0000018857,0.0000018868, -0.0000018846,0.0000018782,0.0000018695,0.0000018583,0.0000018426, -0.0000018273,0.0000018196,0.0000018165,0.0000018104,0.0000018012, -0.0000017902,0.0000017759,0.0000017603,0.0000017475,0.0000017420, -0.0000017442,0.0000017509,0.0000017509,0.0000017380,0.0000017194, -0.0000017090,0.0000017064,0.0000017022,0.0000016959,0.0000016902, -0.0000016849,0.0000016827,0.0000016854,0.0000016915,0.0000016961, -0.0000016977,0.0000016992,0.0000016993,0.0000016986,0.0000016976, -0.0000016961,0.0000016953,0.0000016954,0.0000016899,0.0000016776, -0.0000016690,0.0000016650,0.0000016601,0.0000016554,0.0000016533, -0.0000016503,0.0000016433,0.0000016406,0.0000016473,0.0000016571, -0.0000016648,0.0000016686,0.0000016656,0.0000016561,0.0000016481, -0.0000016437,0.0000016400,0.0000016350,0.0000016314,0.0000016276, -0.0000016256,0.0000016235,0.0000016199,0.0000016214,0.0000016281, -0.0000016247,0.0000016112,0.0000016024,0.0000016010,0.0000016086, -0.0000016188,0.0000016282,0.0000016427,0.0000016564,0.0000016612, -0.0000016633,0.0000016648,0.0000016637,0.0000016564,0.0000016469, -0.0000016447,0.0000016444,0.0000016411,0.0000016387,0.0000016390, -0.0000016380,0.0000016347,0.0000016306,0.0000016256,0.0000016213, -0.0000016198,0.0000016229,0.0000016275,0.0000016316,0.0000016330, -0.0000016331,0.0000016325,0.0000016306,0.0000016311,0.0000016342, -0.0000016372,0.0000016418,0.0000016509,0.0000016629,0.0000016725, -0.0000016808,0.0000016930,0.0000017057,0.0000017126,0.0000017173, -0.0000017281,0.0000017459,0.0000017635,0.0000017749,0.0000017797, -0.0000017796,0.0000017774,0.0000017768,0.0000017764,0.0000017763, -0.0000017763,0.0000017745,0.0000017686,0.0000017608,0.0000017576, -0.0000017602,0.0000017672,0.0000017753,0.0000017803,0.0000017800, -0.0000017761,0.0000017720,0.0000017713,0.0000017737,0.0000017771, -0.0000017764,0.0000017685,0.0000017656,0.0000017636,0.0000017560, -0.0000017528,0.0000017448,0.0000017223,0.0000017174,0.0000017436, -0.0000017601,0.0000017587,0.0000017539,0.0000017548,0.0000017591, -0.0000017659,0.0000017728,0.0000017819,0.0000017981,0.0000018126, -0.0000018262,0.0000018314,0.0000018326,0.0000018387,0.0000018465, -0.0000018509,0.0000018507,0.0000018461,0.0000018386,0.0000018291, -0.0000018181,0.0000018060,0.0000017928,0.0000017707,0.0000017362, -0.0000017190,0.0000017274,0.0000017431,0.0000017384,0.0000017135, -0.0000017005,0.0000016981,0.0000016945,0.0000016949,0.0000017052, -0.0000017179,0.0000017245,0.0000017277,0.0000017324,0.0000017379, -0.0000017422,0.0000017462,0.0000017527,0.0000017582,0.0000017617, -0.0000017686,0.0000017717,0.0000017712,0.0000017775,0.0000017875, -0.0000017948,0.0000017988,0.0000018153,0.0000018220,0.0000018097, -0.0000018092,0.0000017988,0.0000017544,0.0000017326,0.0000017418, -0.0000017388,0.0000017535,0.0000017755,0.0000017799,0.0000017808, -0.0000017862,0.0000017892,0.0000017744,0.0000017309,0.0000016808, -0.0000016539,0.0000016515,0.0000016594,0.0000016715,0.0000016906, -0.0000017059,0.0000017105,0.0000017164,0.0000017278,0.0000017353, -0.0000017363,0.0000017332,0.0000017250,0.0000017126,0.0000016993, -0.0000016896,0.0000016850,0.0000016837,0.0000016838,0.0000016853, -0.0000016880,0.0000016916,0.0000016957,0.0000016994,0.0000017019, -0.0000017021,0.0000016994,0.0000016977,0.0000017076,0.0000017358, -0.0000017696,0.0000017913,0.0000017983,0.0000018006,0.0000017997, -0.0000017930,0.0000017832,0.0000017705,0.0000017609,0.0000017605, -0.0000017612,0.0000017566,0.0000017523,0.0000017558,0.0000017701, -0.0000017831,0.0000017752,0.0000017434,0.0000017130,0.0000017015, -0.0000017051,0.0000017309,0.0000017663,0.0000017845,0.0000017828, -0.0000017858,0.0000018321,0.0000019069,0.0000019452,0.0000019337, -0.0000019235,0.0000019584,0.0000020086,0.0000020152,0.0000019972, -0.0000019931,0.0000019935,0.0000019775,0.0000019597,0.0000019597, -0.0000019706,0.0000019672,0.0000019555,0.0000019588,0.0000019750, -0.0000019869,0.0000019919,0.0000019937,0.0000019933,0.0000019906, -0.0000019866,0.0000019823,0.0000019763,0.0000019688,0.0000019622, -0.0000019582,0.0000019569,0.0000019587,0.0000019648,0.0000019746, -0.0000019858,0.0000019954,0.0000020016,0.0000020064,0.0000020131, -0.0000020186,0.0000020171,0.0000020120,0.0000020105,0.0000020072, -0.0000020024,0.0000020082,0.0000020120,0.0000020074,0.0000020042, -0.0000019972,0.0000019785,0.0000019730,0.0000019883,0.0000020126, -0.0000020281,0.0000020327,0.0000020321,0.0000020312,0.0000020317, -0.0000020333,0.0000020345,0.0000020334,0.0000020345,0.0000020397, -0.0000020386,0.0000020352,0.0000020319,0.0000020202,0.0000020127, -0.0000020101,0.0000019997,0.0000019364,0.0000018660,0.0000018373, -0.0000018278,0.0000018136,0.0000017979,0.0000018218,0.0000018861, -0.0000019057,0.0000018751,0.0000018401,0.0000018347,0.0000018416, -0.0000018422,0.0000018328,0.0000018297,0.0000018335,0.0000018436, -0.0000018633,0.0000018521,0.0000018154,0.0000018052,0.0000018157, -0.0000018356,0.0000018250,0.0000018015,0.0000018300,0.0000018586, -0.0000018920,0.0000019258,0.0000019356,0.0000019114,0.0000018438, -0.0000018323,0.0000018240,0.0000018282,0.0000018633,0.0000019085, -0.0000019374,0.0000019498,0.0000019484,0.0000019236,0.0000018743, -0.0000018238,0.0000018068,0.0000018371,0.0000018868,0.0000019065, -0.0000018990,0.0000018677,0.0000018259,0.0000017938,0.0000017771, -0.0000017723,0.0000017739,0.0000017793,0.0000017835,0.0000017798, -0.0000017645,0.0000017415,0.0000017206,0.0000017060,0.0000016961, -0.0000016945,0.0000017001,0.0000016997,0.0000016958,0.0000016944, -0.0000016880,0.0000016716,0.0000016495,0.0000016323,0.0000016214, -0.0000016113,0.0000016089,0.0000016046,0.0000015891,0.0000015741, -0.0000015752,0.0000015862,0.0000015967,0.0000016018,0.0000016021, -0.0000016012,0.0000015988,0.0000015977,0.0000015980,0.0000015975, -0.0000015976,0.0000015999,0.0000016021,0.0000016052,0.0000016088, -0.0000016127,0.0000016159,0.0000016166,0.0000016142,0.0000016101, -0.0000016063,0.0000016039,0.0000016021,0.0000015994,0.0000015948, -0.0000015816,0.0000015658,0.0000015757,0.0000016001,0.0000016239, -0.0000016409,0.0000016474,0.0000016533,0.0000016600,0.0000016618, -0.0000016577,0.0000016522,0.0000016512,0.0000016546,0.0000016572, -0.0000016538,0.0000016462,0.0000016395,0.0000016356,0.0000016330, -0.0000016315,0.0000016301,0.0000016287,0.0000016276,0.0000016275, -0.0000016278,0.0000016273,0.0000016225,0.0000016130,0.0000016123, -0.0000016451,0.0000017228,0.0000017813,0.0000017917,0.0000017923, -0.0000018121,0.0000018315,0.0000018099,0.0000017468,0.0000017078, -0.0000017082,0.0000017275,0.0000017484,0.0000017672,0.0000017773, -0.0000017575,0.0000017157,0.0000016948,0.0000016918,0.0000016857, -0.0000016756,0.0000016658,0.0000016570,0.0000016477,0.0000016438, -0.0000016524,0.0000016845,0.0000017340,0.0000017788,0.0000018053, -0.0000018139,0.0000018149,0.0000018162,0.0000018178,0.0000018206, -0.0000018235,0.0000018237,0.0000018195,0.0000018088,0.0000017891, -0.0000017635,0.0000017411,0.0000017301,0.0000017291,0.0000017326, -0.0000017373,0.0000017424,0.0000017467,0.0000017482,0.0000017460, -0.0000017446,0.0000017462,0.0000017513,0.0000017565,0.0000017587, -0.0000017587,0.0000017583,0.0000017599,0.0000017645,0.0000017735, -0.0000017853,0.0000017968,0.0000018046,0.0000018074,0.0000018071, -0.0000018054,0.0000018039,0.0000018039,0.0000018059,0.0000018096, -0.0000018131,0.0000018139,0.0000018090,0.0000017969,0.0000017838, -0.0000017750,0.0000017737,0.0000017793,0.0000017853,0.0000017743, -0.0000017313,0.0000016926,0.0000017129,0.0000017909,0.0000018648, -0.0000018973,0.0000019123,0.0000019277,0.0000019387,0.0000019450, -0.0000019495,0.0000019527,0.0000019546,0.0000019565,0.0000019591, -0.0000019621,0.0000019647,0.0000019664,0.0000019674,0.0000019679, -0.0000019682,0.0000019691,0.0000019724,0.0000019757,0.0000019797, -0.0000019848,0.0000019891,0.0000019928,0.0000019956,0.0000019982, -0.0000019993,0.0000020003,0.0000020011,0.0000020019,0.0000020028, -0.0000020037,0.0000020049,0.0000020066,0.0000020085,0.0000020107, -0.0000020129,0.0000020161,0.0000020198,0.0000020214,0.0000020192, -0.0000020139,0.0000020071,0.0000020005,0.0000019953,0.0000019926, -0.0000019928,0.0000019939,0.0000019940,0.0000019936,0.0000019939, -0.0000019949,0.0000019962,0.0000020005,0.0000020072,0.0000020132, -0.0000020182,0.0000020198,0.0000020151,0.0000020084,0.0000020034, -0.0000019980,0.0000019905,0.0000019793,0.0000019660,0.0000019557, -0.0000019529,0.0000019577,0.0000019634,0.0000019610,0.0000019434, -0.0000019311,0.0000019396,0.0000019509,0.0000019218,0.0000018619, -0.0000018221,0.0000017633,0.0000016921,0.0000016594,0.0000016711, -0.0000017517,0.0000018449,0.0000018940,0.0000019101,0.0000019165, -0.0000019205,0.0000019224,0.0000019219,0.0000019196,0.0000019160, -0.0000019117,0.0000019066,0.0000018999,0.0000018926,0.0000018859, -0.0000018796,0.0000018716,0.0000018634,0.0000018556,0.0000018514, -0.0000018502,0.0000018527,0.0000018534,0.0000018524,0.0000018509, -0.0000018493,0.0000018482,0.0000018486,0.0000018507,0.0000018545, -0.0000018593,0.0000018638,0.0000018672,0.0000018706,0.0000018747, -0.0000018798,0.0000018851,0.0000018908,0.0000018973,0.0000019042, -0.0000019110,0.0000019179,0.0000019234,0.0000019258,0.0000019265, -0.0000019257,0.0000019228,0.0000019188,0.0000019149,0.0000019100, -0.0000019037,0.0000018968,0.0000018937,0.0000018946,0.0000018968, -0.0000018958,0.0000018927,0.0000018886,0.0000018856,0.0000018842, -0.0000018817,0.0000018764,0.0000018690,0.0000018670,0.0000018651, -0.0000018676,0.0000018668,0.0000018578,0.0000018572,0.0000018584, -0.0000018538,0.0000018488,0.0000018430,0.0000018396,0.0000018392, -0.0000018448,0.0000018627,0.0000018832,0.0000018933,0.0000018938, -0.0000018930,0.0000018910,0.0000018895,0.0000018895,0.0000018894, -0.0000018850,0.0000018773,0.0000018707,0.0000018649,0.0000018539, -0.0000018386,0.0000018284,0.0000018246,0.0000018181,0.0000018063, -0.0000017938,0.0000017791,0.0000017615,0.0000017479,0.0000017451, -0.0000017502,0.0000017554,0.0000017518,0.0000017375,0.0000017213, -0.0000017129,0.0000017092,0.0000017037,0.0000016968,0.0000016907, -0.0000016873,0.0000016881,0.0000016916,0.0000016954,0.0000016985, -0.0000017024,0.0000017051,0.0000017046,0.0000017032,0.0000017019, -0.0000016988,0.0000016961,0.0000016950,0.0000016876,0.0000016749, -0.0000016679,0.0000016640,0.0000016574,0.0000016518,0.0000016502, -0.0000016464,0.0000016409,0.0000016425,0.0000016513,0.0000016599, -0.0000016659,0.0000016672,0.0000016611,0.0000016520,0.0000016464, -0.0000016438,0.0000016390,0.0000016339,0.0000016292,0.0000016253, -0.0000016248,0.0000016223,0.0000016201,0.0000016247,0.0000016281, -0.0000016181,0.0000016050,0.0000015986,0.0000016004,0.0000016113, -0.0000016220,0.0000016337,0.0000016491,0.0000016594,0.0000016626, -0.0000016655,0.0000016667,0.0000016631,0.0000016538,0.0000016480, -0.0000016482,0.0000016450,0.0000016401,0.0000016390,0.0000016385, -0.0000016360,0.0000016335,0.0000016307,0.0000016270,0.0000016231, -0.0000016201,0.0000016199,0.0000016216,0.0000016243,0.0000016270, -0.0000016284,0.0000016276,0.0000016279,0.0000016303,0.0000016326, -0.0000016354,0.0000016426,0.0000016546,0.0000016661,0.0000016739, -0.0000016830,0.0000016958,0.0000017062,0.0000017100,0.0000017122, -0.0000017202,0.0000017360,0.0000017549,0.0000017703,0.0000017774, -0.0000017757,0.0000017780,0.0000017756,0.0000017706,0.0000017658, -0.0000017607,0.0000017557,0.0000017547,0.0000017603,0.0000017690, -0.0000017764,0.0000017804,0.0000017806,0.0000017762,0.0000017704, -0.0000017666,0.0000017671,0.0000017704,0.0000017747,0.0000017736, -0.0000017662,0.0000017640,0.0000017612,0.0000017535,0.0000017503, -0.0000017418,0.0000017185,0.0000017115,0.0000017374,0.0000017586, -0.0000017580,0.0000017533,0.0000017545,0.0000017584,0.0000017650, -0.0000017734,0.0000017832,0.0000017980,0.0000018115,0.0000018248, -0.0000018304,0.0000018316,0.0000018381,0.0000018469,0.0000018498, -0.0000018476,0.0000018425,0.0000018383,0.0000018339,0.0000018255, -0.0000018103,0.0000017935,0.0000017690,0.0000017337,0.0000017200, -0.0000017338,0.0000017460,0.0000017311,0.0000017052,0.0000016977, -0.0000016948,0.0000016912,0.0000016984,0.0000017152,0.0000017248, -0.0000017262,0.0000017281,0.0000017335,0.0000017407,0.0000017470, -0.0000017505,0.0000017550,0.0000017610,0.0000017642,0.0000017703, -0.0000017744,0.0000017737,0.0000017800,0.0000017907,0.0000017959, -0.0000018021,0.0000018208,0.0000018221,0.0000018099,0.0000018094, -0.0000017903,0.0000017449,0.0000017372,0.0000017401,0.0000017415, -0.0000017644,0.0000017802,0.0000017807,0.0000017843,0.0000017892, -0.0000017796,0.0000017406,0.0000016929,0.0000016633,0.0000016560, -0.0000016562,0.0000016573,0.0000016698,0.0000016924,0.0000017059, -0.0000017118,0.0000017237,0.0000017364,0.0000017419,0.0000017422, -0.0000017403,0.0000017337,0.0000017229,0.0000017111,0.0000017015, -0.0000016958,0.0000016937,0.0000016942,0.0000016960,0.0000016984, -0.0000017007,0.0000017022,0.0000017027,0.0000017020,0.0000017011, -0.0000017070,0.0000017269,0.0000017572,0.0000017838,0.0000017966, -0.0000017999,0.0000018005,0.0000017959,0.0000017870,0.0000017770, -0.0000017644,0.0000017589,0.0000017611,0.0000017592,0.0000017506, -0.0000017466,0.0000017543,0.0000017727,0.0000017821,0.0000017694, -0.0000017338,0.0000017064,0.0000017000,0.0000017059,0.0000017336, -0.0000017690,0.0000017860,0.0000017826,0.0000017837,0.0000018269, -0.0000019019,0.0000019452,0.0000019374,0.0000019168,0.0000019413, -0.0000019987,0.0000020156,0.0000019984,0.0000019957,0.0000019988, -0.0000019837,0.0000019624,0.0000019617,0.0000019804,0.0000019821, -0.0000019625,0.0000019564,0.0000019646,0.0000019765,0.0000019839, -0.0000019872,0.0000019879,0.0000019865,0.0000019835,0.0000019804, -0.0000019769,0.0000019724,0.0000019672,0.0000019624,0.0000019578, -0.0000019553,0.0000019565,0.0000019641,0.0000019780,0.0000019936, -0.0000020039,0.0000020087,0.0000020128,0.0000020143,0.0000020113, -0.0000020101,0.0000020114,0.0000020067,0.0000020048,0.0000020137, -0.0000020145,0.0000020081,0.0000020052,0.0000019925,0.0000019751, -0.0000019751,0.0000019946,0.0000020174,0.0000020308,0.0000020333, -0.0000020330,0.0000020323,0.0000020328,0.0000020337,0.0000020326, -0.0000020342,0.0000020391,0.0000020370,0.0000020347,0.0000020319, -0.0000020211,0.0000020151,0.0000020126,0.0000020018,0.0000019378, -0.0000018680,0.0000018413,0.0000018295,0.0000018134,0.0000017990, -0.0000018170,0.0000018789,0.0000019168,0.0000018980,0.0000018560, -0.0000018319,0.0000018283,0.0000018286,0.0000018283,0.0000018306, -0.0000018352,0.0000018375,0.0000018563,0.0000018658,0.0000018325, -0.0000018070,0.0000018084,0.0000018272,0.0000018338,0.0000018129, -0.0000018049,0.0000018686,0.0000018725,0.0000019237,0.0000019325, -0.0000019125,0.0000018470,0.0000018390,0.0000018295,0.0000018192, -0.0000018129,0.0000018191,0.0000018413,0.0000018592,0.0000018582, -0.0000018396,0.0000018188,0.0000018148,0.0000018398,0.0000018812, -0.0000019058,0.0000019021,0.0000018694,0.0000018138,0.0000017651, -0.0000017390,0.0000017266,0.0000017207,0.0000017177,0.0000017158, -0.0000017150,0.0000017144,0.0000017122,0.0000017077,0.0000017012, -0.0000016952,0.0000016941,0.0000016998,0.0000017017,0.0000016976, -0.0000016960,0.0000016905,0.0000016746,0.0000016502,0.0000016289, -0.0000016167,0.0000016092,0.0000016051,0.0000016009,0.0000015846, -0.0000015668,0.0000015678,0.0000015820,0.0000015956,0.0000016014, -0.0000016019,0.0000016008,0.0000016007,0.0000016005,0.0000016023, -0.0000016048,0.0000016074,0.0000016103,0.0000016136,0.0000016170, -0.0000016201,0.0000016224,0.0000016239,0.0000016244,0.0000016233, -0.0000016205,0.0000016168,0.0000016140,0.0000016119,0.0000016107, -0.0000016090,0.0000016053,0.0000015987,0.0000015844,0.0000015638, -0.0000015716,0.0000015981,0.0000016225,0.0000016387,0.0000016434, -0.0000016489,0.0000016567,0.0000016594,0.0000016586,0.0000016563, -0.0000016547,0.0000016503,0.0000016424,0.0000016368,0.0000016363, -0.0000016372,0.0000016368,0.0000016357,0.0000016350,0.0000016345, -0.0000016340,0.0000016336,0.0000016333,0.0000016331,0.0000016314, -0.0000016229,0.0000016128,0.0000016278,0.0000016988,0.0000017799, -0.0000018072,0.0000018044,0.0000018166,0.0000018382,0.0000018187, -0.0000017551,0.0000017110,0.0000017073,0.0000017240,0.0000017430, -0.0000017613,0.0000017747,0.0000017575,0.0000017155,0.0000016917, -0.0000016861,0.0000016827,0.0000016774,0.0000016775,0.0000016817, -0.0000016890,0.0000017015,0.0000017244,0.0000017553,0.0000017882, -0.0000018106,0.0000018151,0.0000018136,0.0000018089,0.0000018035, -0.0000017971,0.0000017910,0.0000017821,0.0000017699,0.0000017568, -0.0000017453,0.0000017369,0.0000017358,0.0000017333,0.0000017384, -0.0000017443,0.0000017476,0.0000017493,0.0000017498,0.0000017493, -0.0000017484,0.0000017478,0.0000017493,0.0000017523,0.0000017557, -0.0000017577,0.0000017589,0.0000017599,0.0000017612,0.0000017646, -0.0000017709,0.0000017803,0.0000017901,0.0000017972,0.0000018001, -0.0000018002,0.0000017997,0.0000017996,0.0000018007,0.0000018032, -0.0000018064,0.0000018097,0.0000018103,0.0000018058,0.0000017957, -0.0000017862,0.0000017817,0.0000017816,0.0000017853,0.0000017864, -0.0000017722,0.0000017313,0.0000016964,0.0000017114,0.0000017844, -0.0000018584,0.0000018939,0.0000019073,0.0000019189,0.0000019273, -0.0000019314,0.0000019347,0.0000019382,0.0000019413,0.0000019443, -0.0000019472,0.0000019499,0.0000019521,0.0000019537,0.0000019556, -0.0000019596,0.0000019631,0.0000019675,0.0000019737,0.0000019806, -0.0000019862,0.0000019891,0.0000019911,0.0000019929,0.0000019938, -0.0000019975,0.0000020007,0.0000020040,0.0000020071,0.0000020092, -0.0000020115,0.0000020135,0.0000020152,0.0000020165,0.0000020163, -0.0000020146,0.0000020123,0.0000020102,0.0000020095,0.0000020119, -0.0000020164,0.0000020202,0.0000020226,0.0000020216,0.0000020170, -0.0000020108,0.0000020063,0.0000020048,0.0000020045,0.0000020035, -0.0000020014,0.0000020000,0.0000020008,0.0000020046,0.0000020100, -0.0000020141,0.0000020178,0.0000020228,0.0000020255,0.0000020213, -0.0000020147,0.0000020095,0.0000020034,0.0000019885,0.0000019648, -0.0000019450,0.0000019363,0.0000019351,0.0000019394,0.0000019432, -0.0000019390,0.0000019332,0.0000019410,0.0000019527,0.0000019334, -0.0000018746,0.0000018250,0.0000017517,0.0000016854,0.0000016770, -0.0000017235,0.0000018145,0.0000018869,0.0000019084,0.0000019068, -0.0000019041,0.0000019053,0.0000019082,0.0000019098,0.0000019103, -0.0000019085,0.0000019051,0.0000019019,0.0000018975,0.0000018924, -0.0000018874,0.0000018824,0.0000018771,0.0000018711,0.0000018636, -0.0000018561,0.0000018493,0.0000018480,0.0000018463,0.0000018443, -0.0000018450,0.0000018451,0.0000018452,0.0000018449,0.0000018445, -0.0000018452,0.0000018456,0.0000018450,0.0000018434,0.0000018431, -0.0000018442,0.0000018462,0.0000018485,0.0000018514,0.0000018561, -0.0000018626,0.0000018715,0.0000018835,0.0000018973,0.0000019114, -0.0000019233,0.0000019285,0.0000019275,0.0000019220,0.0000019161, -0.0000019084,0.0000019007,0.0000018938,0.0000018925,0.0000018949, -0.0000018975,0.0000018959,0.0000018926,0.0000018873,0.0000018844, -0.0000018829,0.0000018806,0.0000018746,0.0000018703,0.0000018691, -0.0000018680,0.0000018690,0.0000018674,0.0000018598,0.0000018587, -0.0000018609,0.0000018580,0.0000018524,0.0000018447,0.0000018380, -0.0000018362,0.0000018404,0.0000018597,0.0000018815,0.0000018922, -0.0000018966,0.0000019013,0.0000019020,0.0000018996,0.0000018990, -0.0000018972,0.0000018886,0.0000018767,0.0000018693,0.0000018678, -0.0000018645,0.0000018524,0.0000018382,0.0000018307,0.0000018232, -0.0000018096,0.0000017951,0.0000017774,0.0000017585,0.0000017495, -0.0000017507,0.0000017560,0.0000017579,0.0000017519,0.0000017379, -0.0000017234,0.0000017157,0.0000017109,0.0000017043,0.0000016971, -0.0000016927,0.0000016922,0.0000016941,0.0000016960,0.0000016981, -0.0000017033,0.0000017102,0.0000017125,0.0000017105,0.0000017091, -0.0000017071,0.0000017007,0.0000016961,0.0000016943,0.0000016850, -0.0000016729,0.0000016676,0.0000016622,0.0000016534,0.0000016489, -0.0000016482,0.0000016443,0.0000016417,0.0000016463,0.0000016553, -0.0000016621,0.0000016659,0.0000016641,0.0000016567,0.0000016491, -0.0000016460,0.0000016431,0.0000016373,0.0000016321,0.0000016261, -0.0000016241,0.0000016237,0.0000016210,0.0000016213,0.0000016268, -0.0000016242,0.0000016105,0.0000015997,0.0000015958,0.0000016016, -0.0000016145,0.0000016261,0.0000016399,0.0000016545,0.0000016615, -0.0000016648,0.0000016682,0.0000016678,0.0000016611,0.0000016525, -0.0000016513,0.0000016510,0.0000016453,0.0000016420,0.0000016413, -0.0000016389,0.0000016351,0.0000016317,0.0000016294,0.0000016280, -0.0000016266,0.0000016241,0.0000016204,0.0000016189,0.0000016196, -0.0000016220,0.0000016234,0.0000016250,0.0000016273,0.0000016287, -0.0000016297,0.0000016340,0.0000016438,0.0000016561,0.0000016656, -0.0000016739,0.0000016853,0.0000016977,0.0000017050,0.0000017058, -0.0000017064,0.0000017117,0.0000017268,0.0000017482,0.0000017665, -0.0000017702,0.0000017794,0.0000017761,0.0000017664,0.0000017575, -0.0000017527,0.0000017530,0.0000017605,0.0000017709,0.0000017772, -0.0000017793,0.0000017791,0.0000017747,0.0000017679,0.0000017626, -0.0000017607,0.0000017626,0.0000017667,0.0000017714,0.0000017701, -0.0000017636,0.0000017619,0.0000017583,0.0000017505,0.0000017470, -0.0000017375,0.0000017138,0.0000017052,0.0000017304,0.0000017578, -0.0000017576,0.0000017527,0.0000017541,0.0000017576,0.0000017642, -0.0000017745,0.0000017849,0.0000017984,0.0000018110,0.0000018235, -0.0000018292,0.0000018302,0.0000018361,0.0000018445,0.0000018469, -0.0000018437,0.0000018392,0.0000018376,0.0000018372,0.0000018304, -0.0000018119,0.0000017929,0.0000017676,0.0000017333,0.0000017242, -0.0000017401,0.0000017468,0.0000017246,0.0000017012,0.0000016968, -0.0000016909,0.0000016919,0.0000017080,0.0000017209,0.0000017229, -0.0000017237,0.0000017276,0.0000017337,0.0000017416,0.0000017497, -0.0000017546,0.0000017573,0.0000017638,0.0000017670,0.0000017720, -0.0000017768,0.0000017765,0.0000017832,0.0000017938,0.0000017971, -0.0000018066,0.0000018243,0.0000018209,0.0000018101,0.0000018086, -0.0000017795,0.0000017394,0.0000017377,0.0000017382,0.0000017484, -0.0000017740,0.0000017817,0.0000017826,0.0000017880,0.0000017828, -0.0000017498,0.0000017049,0.0000016748,0.0000016628,0.0000016591, -0.0000016561,0.0000016586,0.0000016755,0.0000016969,0.0000017078, -0.0000017179,0.0000017334,0.0000017440,0.0000017474,0.0000017486, -0.0000017481,0.0000017444,0.0000017379,0.0000017298,0.0000017220, -0.0000017167,0.0000017141,0.0000017128,0.0000017113,0.0000017094, -0.0000017072,0.0000017053,0.0000017054,0.0000017106,0.0000017246, -0.0000017480,0.0000017744,0.0000017931,0.0000018003,0.0000018015, -0.0000017997,0.0000017910,0.0000017809,0.0000017707,0.0000017604, -0.0000017580,0.0000017596,0.0000017555,0.0000017457,0.0000017423, -0.0000017538,0.0000017748,0.0000017820,0.0000017637,0.0000017255, -0.0000017025,0.0000016998,0.0000017079,0.0000017363,0.0000017715, -0.0000017876,0.0000017831,0.0000017810,0.0000018182,0.0000018911, -0.0000019423,0.0000019428,0.0000019170,0.0000019262,0.0000019835, -0.0000020109,0.0000019997,0.0000019984,0.0000020053,0.0000019915, -0.0000019661,0.0000019623,0.0000019876,0.0000020001,0.0000019810, -0.0000019613,0.0000019602,0.0000019650,0.0000019703,0.0000019731, -0.0000019741,0.0000019737,0.0000019723,0.0000019706,0.0000019690, -0.0000019669,0.0000019643,0.0000019615,0.0000019589,0.0000019581, -0.0000019605,0.0000019695,0.0000019841,0.0000019980,0.0000020054, -0.0000020066,0.0000020059,0.0000020041,0.0000020055,0.0000020122, -0.0000020122,0.0000020042,0.0000020080,0.0000020168,0.0000020133, -0.0000020083,0.0000020030,0.0000019850,0.0000019715,0.0000019788, -0.0000020013,0.0000020226,0.0000020327,0.0000020338,0.0000020330, -0.0000020325,0.0000020329,0.0000020314,0.0000020335,0.0000020380, -0.0000020348,0.0000020331,0.0000020301,0.0000020205,0.0000020163, -0.0000020139,0.0000020019,0.0000019376,0.0000018697,0.0000018464, -0.0000018325,0.0000018118,0.0000017977,0.0000018164,0.0000018762, -0.0000019193,0.0000019152,0.0000018793,0.0000018455,0.0000018290, -0.0000018249,0.0000018276,0.0000018347,0.0000018392,0.0000018373, -0.0000018474,0.0000018695,0.0000018542,0.0000018129,0.0000018058, -0.0000018156,0.0000018370,0.0000018259,0.0000017984,0.0000018548, -0.0000018608,0.0000019126,0.0000019286,0.0000019232,0.0000018548, -0.0000018472,0.0000018455,0.0000018399,0.0000018296,0.0000018162, -0.0000018083,0.0000018071,0.0000018100,0.0000018131,0.0000018250, -0.0000018502,0.0000018843,0.0000019061,0.0000019047,0.0000018760, -0.0000018196,0.0000017644,0.0000017322,0.0000017162,0.0000017079, -0.0000017037,0.0000017013,0.0000016993,0.0000016974,0.0000016961, -0.0000016953,0.0000016943,0.0000016936,0.0000016948,0.0000016994, -0.0000017014,0.0000016981,0.0000016968,0.0000016937,0.0000016785, -0.0000016517,0.0000016268,0.0000016143,0.0000016095,0.0000016092, -0.0000016049,0.0000015872,0.0000015658,0.0000015612,0.0000015760, -0.0000015933,0.0000016009,0.0000016037,0.0000016073,0.0000016100, -0.0000016122,0.0000016141,0.0000016167,0.0000016198,0.0000016226, -0.0000016244,0.0000016245,0.0000016240,0.0000016235,0.0000016236, -0.0000016220,0.0000016204,0.0000016187,0.0000016169,0.0000016158, -0.0000016156,0.0000016167,0.0000016179,0.0000016185,0.0000016171, -0.0000016124,0.0000016033,0.0000015875,0.0000015629,0.0000015674, -0.0000015956,0.0000016209,0.0000016364,0.0000016394,0.0000016436, -0.0000016515,0.0000016553,0.0000016534,0.0000016467,0.0000016379, -0.0000016317,0.0000016314,0.0000016352,0.0000016388,0.0000016401, -0.0000016398,0.0000016393,0.0000016390,0.0000016388,0.0000016384, -0.0000016380,0.0000016375,0.0000016371,0.0000016325,0.0000016199, -0.0000016185,0.0000016735,0.0000017692,0.0000018238,0.0000018271, -0.0000018330,0.0000018469,0.0000018264,0.0000017608,0.0000017131, -0.0000017070,0.0000017207,0.0000017378,0.0000017524,0.0000017689, -0.0000017648,0.0000017317,0.0000017013,0.0000016894,0.0000016868, -0.0000016907,0.0000017047,0.0000017264,0.0000017488,0.0000017710, -0.0000017847,0.0000018011,0.0000018055,0.0000018011,0.0000017917, -0.0000017823,0.0000017722,0.0000017623,0.0000017540,0.0000017472, -0.0000017410,0.0000017364,0.0000017378,0.0000017356,0.0000017394, -0.0000017441,0.0000017473,0.0000017493,0.0000017504,0.0000017514, -0.0000017525,0.0000017531,0.0000017533,0.0000017536,0.0000017546, -0.0000017563,0.0000017584,0.0000017603,0.0000017617,0.0000017631, -0.0000017651,0.0000017684,0.0000017730,0.0000017782,0.0000017838, -0.0000017879,0.0000017906,0.0000017921,0.0000017942,0.0000017968, -0.0000017991,0.0000018023,0.0000018055,0.0000018080,0.0000018079, -0.0000018029,0.0000017952,0.0000017899,0.0000017891,0.0000017907, -0.0000017930,0.0000017906,0.0000017704,0.0000017284,0.0000016993, -0.0000017167,0.0000017871,0.0000018567,0.0000018885,0.0000019012, -0.0000019118,0.0000019200,0.0000019226,0.0000019236,0.0000019256, -0.0000019283,0.0000019320,0.0000019360,0.0000019399,0.0000019448, -0.0000019489,0.0000019535,0.0000019601,0.0000019673,0.0000019743, -0.0000019789,0.0000019839,0.0000019844,0.0000019797,0.0000019758, -0.0000019744,0.0000019772,0.0000019830,0.0000019894,0.0000019952, -0.0000019995,0.0000020028,0.0000020057,0.0000020087,0.0000020120, -0.0000020156,0.0000020193,0.0000020224,0.0000020239,0.0000020233, -0.0000020218,0.0000020177,0.0000020138,0.0000020119,0.0000020125, -0.0000020153,0.0000020195,0.0000020216,0.0000020209,0.0000020183, -0.0000020156,0.0000020144,0.0000020137,0.0000020123,0.0000020109, -0.0000020117,0.0000020149,0.0000020177,0.0000020185,0.0000020212, -0.0000020278,0.0000020317,0.0000020278,0.0000020207,0.0000020154, -0.0000020044,0.0000019758,0.0000019470,0.0000019358,0.0000019320, -0.0000019307,0.0000019342,0.0000019365,0.0000019386,0.0000019461, -0.0000019548,0.0000019443,0.0000018867,0.0000018299,0.0000017510, -0.0000016913,0.0000017110,0.0000017935,0.0000018713,0.0000019100, -0.0000019156,0.0000019143,0.0000019114,0.0000019094,0.0000019097, -0.0000019111,0.0000019115,0.0000019113,0.0000019095,0.0000019072, -0.0000019048,0.0000019024,0.0000019006,0.0000019002,0.0000019004, -0.0000018998,0.0000018965,0.0000018882,0.0000018774,0.0000018653, -0.0000018524,0.0000018422,0.0000018390,0.0000018360,0.0000018353, -0.0000018362,0.0000018371,0.0000018382,0.0000018388,0.0000018381, -0.0000018368,0.0000018359,0.0000018357,0.0000018361,0.0000018370, -0.0000018388,0.0000018413,0.0000018442,0.0000018480,0.0000018542, -0.0000018646,0.0000018822,0.0000019036,0.0000019204,0.0000019281, -0.0000019276,0.0000019217,0.0000019109,0.0000019006,0.0000018938, -0.0000018931,0.0000018945,0.0000018959,0.0000018946,0.0000018912, -0.0000018851,0.0000018814,0.0000018805,0.0000018783,0.0000018722, -0.0000018727,0.0000018736,0.0000018742,0.0000018723,0.0000018694, -0.0000018632,0.0000018617,0.0000018646,0.0000018624,0.0000018571, -0.0000018491,0.0000018385,0.0000018341,0.0000018367,0.0000018555, -0.0000018778,0.0000018897,0.0000018992,0.0000019098,0.0000019129, -0.0000019106,0.0000019093,0.0000019056,0.0000018932,0.0000018786, -0.0000018698,0.0000018692,0.0000018700,0.0000018622,0.0000018465, -0.0000018345,0.0000018248,0.0000018094,0.0000017920,0.0000017727, -0.0000017575,0.0000017539,0.0000017560,0.0000017596,0.0000017598, -0.0000017522,0.0000017373,0.0000017240,0.0000017172,0.0000017115, -0.0000017043,0.0000016982,0.0000016967,0.0000016979,0.0000016989, -0.0000016990,0.0000017027,0.0000017124,0.0000017204,0.0000017203, -0.0000017171,0.0000017160,0.0000017115,0.0000017012,0.0000016959, -0.0000016932,0.0000016824,0.0000016718,0.0000016672,0.0000016588, -0.0000016495,0.0000016480,0.0000016482,0.0000016438,0.0000016435, -0.0000016509,0.0000016588,0.0000016633,0.0000016643,0.0000016607, -0.0000016528,0.0000016474,0.0000016459,0.0000016414,0.0000016355, -0.0000016292,0.0000016236,0.0000016231,0.0000016222,0.0000016204, -0.0000016225,0.0000016255,0.0000016173,0.0000016033,0.0000015949, -0.0000015939,0.0000016041,0.0000016184,0.0000016311,0.0000016459, -0.0000016584,0.0000016635,0.0000016677,0.0000016703,0.0000016675, -0.0000016584,0.0000016532,0.0000016544,0.0000016513,0.0000016457, -0.0000016443,0.0000016430,0.0000016386,0.0000016329,0.0000016282, -0.0000016262,0.0000016264,0.0000016271,0.0000016264,0.0000016236, -0.0000016201,0.0000016183,0.0000016175,0.0000016191,0.0000016222, -0.0000016236,0.0000016248,0.0000016270,0.0000016340,0.0000016454, -0.0000016562,0.0000016651,0.0000016758,0.0000016887,0.0000016992, -0.0000017032,0.0000017020,0.0000016996,0.0000017039,0.0000017210, -0.0000017476,0.0000017630,0.0000017792,0.0000017760,0.0000017633, -0.0000017537,0.0000017528,0.0000017608,0.0000017721,0.0000017780, -0.0000017778,0.0000017752,0.0000017705,0.0000017639,0.0000017580, -0.0000017542,0.0000017542,0.0000017576,0.0000017626,0.0000017672, -0.0000017658,0.0000017605,0.0000017589,0.0000017546,0.0000017473, -0.0000017430,0.0000017319,0.0000017085,0.0000016987,0.0000017238, -0.0000017555,0.0000017574,0.0000017522,0.0000017536,0.0000017570, -0.0000017638,0.0000017759,0.0000017870,0.0000017993,0.0000018109, -0.0000018225,0.0000018281,0.0000018288,0.0000018328,0.0000018395, -0.0000018418,0.0000018395,0.0000018369,0.0000018376,0.0000018395, -0.0000018332,0.0000018122,0.0000017920,0.0000017658,0.0000017327, -0.0000017283,0.0000017457,0.0000017471,0.0000017181,0.0000017012, -0.0000016957,0.0000016892,0.0000016992,0.0000017154,0.0000017191, -0.0000017215,0.0000017261,0.0000017318,0.0000017370,0.0000017432, -0.0000017511,0.0000017570,0.0000017598,0.0000017666,0.0000017696, -0.0000017734,0.0000017789,0.0000017799,0.0000017875,0.0000017963, -0.0000017989,0.0000018126,0.0000018285,0.0000018184,0.0000018103, -0.0000018046,0.0000017659,0.0000017332,0.0000017385,0.0000017386, -0.0000017580,0.0000017799,0.0000017828,0.0000017856,0.0000017838, -0.0000017580,0.0000017161,0.0000016859,0.0000016722,0.0000016656, -0.0000016621,0.0000016612,0.0000016674,0.0000016846,0.0000017014, -0.0000017122,0.0000017268,0.0000017415,0.0000017481,0.0000017505, -0.0000017519,0.0000017520,0.0000017508,0.0000017483,0.0000017447, -0.0000017410,0.0000017381,0.0000017357,0.0000017326,0.0000017278, -0.0000017221,0.0000017182,0.0000017191,0.0000017272,0.0000017439, -0.0000017663,0.0000017870,0.0000017989,0.0000018029,0.0000018031, -0.0000017971,0.0000017856,0.0000017752,0.0000017651,0.0000017571, -0.0000017565,0.0000017569,0.0000017523,0.0000017440,0.0000017412, -0.0000017540,0.0000017765,0.0000017829,0.0000017587,0.0000017190, -0.0000016993,0.0000017003,0.0000017106,0.0000017384,0.0000017739, -0.0000017892,0.0000017844,0.0000017808,0.0000018056,0.0000018737, -0.0000019358,0.0000019481,0.0000019218,0.0000019149,0.0000019678, -0.0000020080,0.0000020007,0.0000020006,0.0000020111,0.0000019996, -0.0000019716,0.0000019626,0.0000019864,0.0000020120,0.0000020058, -0.0000019819,0.0000019682,0.0000019663,0.0000019668,0.0000019671, -0.0000019672,0.0000019669,0.0000019661,0.0000019647,0.0000019632, -0.0000019618,0.0000019609,0.0000019605,0.0000019605,0.0000019628, -0.0000019687,0.0000019779,0.0000019873,0.0000019941,0.0000019960, -0.0000019957,0.0000019957,0.0000020004,0.0000020114,0.0000020159, -0.0000020077,0.0000020036,0.0000020137,0.0000020173,0.0000020121, -0.0000020082,0.0000019959,0.0000019744,0.0000019700,0.0000019849, -0.0000020092,0.0000020275,0.0000020334,0.0000020334,0.0000020322, -0.0000020320,0.0000020304,0.0000020337,0.0000020365,0.0000020321, -0.0000020305,0.0000020266,0.0000020185,0.0000020165,0.0000020137, -0.0000020008,0.0000019359,0.0000018704,0.0000018528,0.0000018405, -0.0000018125,0.0000018002,0.0000018225,0.0000018784,0.0000019199, -0.0000019234,0.0000019006,0.0000018668,0.0000018442,0.0000018364, -0.0000018381,0.0000018426,0.0000018427,0.0000018397,0.0000018444, -0.0000018721,0.0000018726,0.0000018292,0.0000018045,0.0000018103, -0.0000018251,0.0000018388,0.0000018118,0.0000018118,0.0000018638, -0.0000018959,0.0000019288,0.0000019303,0.0000018646,0.0000018521, -0.0000018643,0.0000018656,0.0000018593,0.0000018514,0.0000018422, -0.0000018358,0.0000018370,0.0000018484,0.0000018671,0.0000018875, -0.0000019022,0.0000019041,0.0000018833,0.0000018290,0.0000017687, -0.0000017320,0.0000017150,0.0000017051,0.0000016981,0.0000016938, -0.0000016914,0.0000016912,0.0000016913,0.0000016908,0.0000016914, -0.0000016932,0.0000016970,0.0000017007,0.0000017010,0.0000016975, -0.0000016955,0.0000016938,0.0000016820,0.0000016554,0.0000016270, -0.0000016140,0.0000016112,0.0000016128,0.0000016089,0.0000015934, -0.0000015722,0.0000015651,0.0000015762,0.0000015915,0.0000016015, -0.0000016077,0.0000016156,0.0000016215,0.0000016233,0.0000016235, -0.0000016234,0.0000016247,0.0000016266,0.0000016269,0.0000016263, -0.0000016223,0.0000016174,0.0000016129,0.0000016083,0.0000016046, -0.0000016021,0.0000016005,0.0000016002,0.0000016021,0.0000016056, -0.0000016099,0.0000016143,0.0000016175,0.0000016192,0.0000016191, -0.0000016159,0.0000016071,0.0000015904,0.0000015621,0.0000015633, -0.0000015930,0.0000016195,0.0000016341,0.0000016354,0.0000016375, -0.0000016430,0.0000016444,0.0000016396,0.0000016319,0.0000016287, -0.0000016298,0.0000016338,0.0000016382,0.0000016414,0.0000016420, -0.0000016407,0.0000016388,0.0000016374,0.0000016376,0.0000016388, -0.0000016394,0.0000016395,0.0000016388,0.0000016282,0.0000016190, -0.0000016505,0.0000017470,0.0000018273,0.0000018508,0.0000018550, -0.0000018595,0.0000018336,0.0000017638,0.0000017138,0.0000017067, -0.0000017168,0.0000017330,0.0000017436,0.0000017562,0.0000017652, -0.0000017541,0.0000017314,0.0000017143,0.0000017096,0.0000017139, -0.0000017268,0.0000017427,0.0000017582,0.0000017675,0.0000017710, -0.0000017678,0.0000017605,0.0000017530,0.0000017462,0.0000017410, -0.0000017382,0.0000017401,0.0000017369,0.0000017371,0.0000017389, -0.0000017415,0.0000017447,0.0000017478,0.0000017516,0.0000017550, -0.0000017569,0.0000017575,0.0000017576,0.0000017580,0.0000017583, -0.0000017581,0.0000017578,0.0000017576,0.0000017578,0.0000017593, -0.0000017615,0.0000017635,0.0000017650,0.0000017665,0.0000017687, -0.0000017719,0.0000017756,0.0000017784,0.0000017806,0.0000017834, -0.0000017874,0.0000017911,0.0000017957,0.0000017996,0.0000018031, -0.0000018060,0.0000018074,0.0000018066,0.0000018019,0.0000017968, -0.0000017949,0.0000017960,0.0000017972,0.0000017987,0.0000017936, -0.0000017670,0.0000017236,0.0000016958,0.0000017166,0.0000017818, -0.0000018489,0.0000018798,0.0000018897,0.0000018982,0.0000019076, -0.0000019131,0.0000019153,0.0000019173,0.0000019204,0.0000019251, -0.0000019314,0.0000019375,0.0000019442,0.0000019511,0.0000019581, -0.0000019656,0.0000019706,0.0000019745,0.0000019736,0.0000019688, -0.0000019599,0.0000019505,0.0000019461,0.0000019512,0.0000019638, -0.0000019768,0.0000019856,0.0000019896,0.0000019908,0.0000019909, -0.0000019918,0.0000019936,0.0000019963,0.0000019997,0.0000020038, -0.0000020086,0.0000020137,0.0000020186,0.0000020227,0.0000020251, -0.0000020255,0.0000020230,0.0000020197,0.0000020155,0.0000020122, -0.0000020113,0.0000020135,0.0000020183,0.0000020205,0.0000020220, -0.0000020217,0.0000020214,0.0000020211,0.0000020200,0.0000020195, -0.0000020203,0.0000020210,0.0000020213,0.0000020252,0.0000020329, -0.0000020366,0.0000020324,0.0000020252,0.0000020187,0.0000019981, -0.0000019631,0.0000019446,0.0000019427,0.0000019389,0.0000019359, -0.0000019390,0.0000019450,0.0000019529,0.0000019573,0.0000019534, -0.0000018989,0.0000018381,0.0000017582,0.0000017013,0.0000017377, -0.0000018321,0.0000018902,0.0000019114,0.0000019141,0.0000019148, -0.0000019133,0.0000019105,0.0000019094,0.0000019105,0.0000019120, -0.0000019138,0.0000019145,0.0000019138,0.0000019117,0.0000019096, -0.0000019086,0.0000019094,0.0000019117,0.0000019138,0.0000019143, -0.0000019110,0.0000019089,0.0000019030,0.0000018893,0.0000018723, -0.0000018570,0.0000018434,0.0000018364,0.0000018323,0.0000018323, -0.0000018311,0.0000018304,0.0000018292,0.0000018279,0.0000018259, -0.0000018244,0.0000018243,0.0000018256,0.0000018286,0.0000018324, -0.0000018366,0.0000018413,0.0000018463,0.0000018521,0.0000018619, -0.0000018775,0.0000018975,0.0000019159,0.0000019257,0.0000019249, -0.0000019162,0.0000019050,0.0000018965,0.0000018934,0.0000018938, -0.0000018945,0.0000018930,0.0000018890,0.0000018834,0.0000018804, -0.0000018804,0.0000018780,0.0000018744,0.0000018786,0.0000018814, -0.0000018832,0.0000018782,0.0000018737,0.0000018675,0.0000018656, -0.0000018684,0.0000018664,0.0000018608,0.0000018543,0.0000018419, -0.0000018334,0.0000018348,0.0000018512,0.0000018734,0.0000018870, -0.0000019012,0.0000019165,0.0000019211,0.0000019180,0.0000019147, -0.0000019084,0.0000018946,0.0000018814,0.0000018733,0.0000018711, -0.0000018718,0.0000018672,0.0000018522,0.0000018363,0.0000018232, -0.0000018061,0.0000017872,0.0000017690,0.0000017584,0.0000017576, -0.0000017600,0.0000017626,0.0000017612,0.0000017504,0.0000017346, -0.0000017236,0.0000017178,0.0000017114,0.0000017042,0.0000017010, -0.0000017017,0.0000017026,0.0000017020,0.0000017032,0.0000017125, -0.0000017255,0.0000017307,0.0000017280,0.0000017243,0.0000017226, -0.0000017141,0.0000017012,0.0000016959,0.0000016918,0.0000016800, -0.0000016713,0.0000016659,0.0000016546,0.0000016481,0.0000016498, -0.0000016482,0.0000016440,0.0000016471,0.0000016557,0.0000016609, -0.0000016627,0.0000016622,0.0000016569,0.0000016495,0.0000016469, -0.0000016450,0.0000016392,0.0000016332,0.0000016256,0.0000016214, -0.0000016218,0.0000016206,0.0000016194,0.0000016222,0.0000016213, -0.0000016094,0.0000015972,0.0000015912,0.0000015937,0.0000016076, -0.0000016227,0.0000016358,0.0000016509,0.0000016608,0.0000016659, -0.0000016711,0.0000016720,0.0000016650,0.0000016558,0.0000016547, -0.0000016548,0.0000016491,0.0000016464,0.0000016454,0.0000016413, -0.0000016353,0.0000016293,0.0000016245,0.0000016212,0.0000016212, -0.0000016231,0.0000016251,0.0000016250,0.0000016232,0.0000016192, -0.0000016168,0.0000016158,0.0000016167,0.0000016180,0.0000016198, -0.0000016250,0.0000016348,0.0000016459,0.0000016560,0.0000016677, -0.0000016818,0.0000016939,0.0000016998,0.0000016998,0.0000016953, -0.0000016929,0.0000017004,0.0000017289,0.0000017591,0.0000017785, -0.0000017745,0.0000017615,0.0000017556,0.0000017613,0.0000017720, -0.0000017778,0.0000017769,0.0000017715,0.0000017647,0.0000017572, -0.0000017511,0.0000017472,0.0000017452,0.0000017470,0.0000017516, -0.0000017580,0.0000017624,0.0000017606,0.0000017569,0.0000017554, -0.0000017504,0.0000017436,0.0000017382,0.0000017253,0.0000017025, -0.0000016927,0.0000017177,0.0000017533,0.0000017571,0.0000017516, -0.0000017533,0.0000017566,0.0000017636,0.0000017778,0.0000017895, -0.0000018005,0.0000018111,0.0000018218,0.0000018267,0.0000018271, -0.0000018283,0.0000018322,0.0000018354,0.0000018351,0.0000018349, -0.0000018380,0.0000018412,0.0000018347,0.0000018124,0.0000017910, -0.0000017627,0.0000017318,0.0000017318,0.0000017500,0.0000017434, -0.0000017128,0.0000017025,0.0000016936,0.0000016915,0.0000017080, -0.0000017161,0.0000017193,0.0000017262,0.0000017334,0.0000017404, -0.0000017443,0.0000017459,0.0000017512,0.0000017581,0.0000017626, -0.0000017694,0.0000017721,0.0000017746,0.0000017807,0.0000017839, -0.0000017925,0.0000017982,0.0000018019,0.0000018196,0.0000018300, -0.0000018152,0.0000018104,0.0000017980,0.0000017530,0.0000017337, -0.0000017382,0.0000017415,0.0000017677,0.0000017833,0.0000017846, -0.0000017840,0.0000017648,0.0000017266,0.0000016966,0.0000016816, -0.0000016737,0.0000016709,0.0000016728,0.0000016736,0.0000016779, -0.0000016922,0.0000017063,0.0000017184,0.0000017336,0.0000017445, -0.0000017491,0.0000017516,0.0000017525,0.0000017523,0.0000017521, -0.0000017518,0.0000017506,0.0000017491,0.0000017481,0.0000017471, -0.0000017448,0.0000017404,0.0000017364,0.0000017362,0.0000017435, -0.0000017601,0.0000017803,0.0000017957,0.0000018024,0.0000018043, -0.0000018028,0.0000017931,0.0000017800,0.0000017700,0.0000017603, -0.0000017541,0.0000017535,0.0000017535,0.0000017529,0.0000017470, -0.0000017431,0.0000017547,0.0000017779,0.0000017824,0.0000017539, -0.0000017143,0.0000016986,0.0000017018,0.0000017128,0.0000017396, -0.0000017758,0.0000017906,0.0000017857,0.0000017807,0.0000017937, -0.0000018517,0.0000019226,0.0000019515,0.0000019297,0.0000019124, -0.0000019537,0.0000019994,0.0000019994,0.0000020026,0.0000020168, -0.0000020093,0.0000019793,0.0000019615,0.0000019766,0.0000020093, -0.0000020185,0.0000020057,0.0000019891,0.0000019800,0.0000019771, -0.0000019769,0.0000019775,0.0000019782,0.0000019783,0.0000019780, -0.0000019777,0.0000019775,0.0000019773,0.0000019771,0.0000019770, -0.0000019778,0.0000019792,0.0000019814,0.0000019840,0.0000019868, -0.0000019899,0.0000019945,0.0000020030,0.0000020135,0.0000020172, -0.0000020091,0.0000020007,0.0000020099,0.0000020195,0.0000020163, -0.0000020115,0.0000020035,0.0000019819,0.0000019660,0.0000019720, -0.0000019935,0.0000020168,0.0000020301,0.0000020323,0.0000020317, -0.0000020311,0.0000020298,0.0000020340,0.0000020358,0.0000020304, -0.0000020278,0.0000020226,0.0000020165,0.0000020149,0.0000020112, -0.0000019975,0.0000019330,0.0000018684,0.0000018577,0.0000018520, -0.0000018240,0.0000018064,0.0000018305,0.0000018856,0.0000019238, -0.0000019296,0.0000019189,0.0000018924,0.0000018682,0.0000018571, -0.0000018549,0.0000018525,0.0000018461,0.0000018422,0.0000018505, -0.0000018758,0.0000018908,0.0000018530,0.0000018084,0.0000018059, -0.0000018164,0.0000018360,0.0000018304,0.0000017970,0.0000018573, -0.0000018726,0.0000019271,0.0000019335,0.0000018816,0.0000018554, -0.0000018856,0.0000018980,0.0000018966,0.0000018883,0.0000018821, -0.0000018787,0.0000018791,0.0000018867,0.0000018973,0.0000019035, -0.0000019019,0.0000018817,0.0000018335,0.0000017756,0.0000017338, -0.0000017128,0.0000017043,0.0000016982,0.0000016925,0.0000016903, -0.0000016903,0.0000016914,0.0000016931,0.0000016945,0.0000016952, -0.0000016954,0.0000016958,0.0000016960,0.0000016954,0.0000016949, -0.0000016933,0.0000016834,0.0000016583,0.0000016274,0.0000016133, -0.0000016129,0.0000016163,0.0000016114,0.0000015951,0.0000015761, -0.0000015687,0.0000015788,0.0000015933,0.0000016036,0.0000016116, -0.0000016220,0.0000016301,0.0000016314,0.0000016274,0.0000016248, -0.0000016242,0.0000016240,0.0000016237,0.0000016213,0.0000016157, -0.0000016087,0.0000016015,0.0000015950,0.0000015900,0.0000015868, -0.0000015849,0.0000015838,0.0000015843,0.0000015868,0.0000015908, -0.0000015954,0.0000016004,0.0000016058,0.0000016104,0.0000016139, -0.0000016155,0.0000016149,0.0000016082,0.0000015922,0.0000015618, -0.0000015601,0.0000015906,0.0000016181,0.0000016323,0.0000016330, -0.0000016312,0.0000016330,0.0000016339,0.0000016312,0.0000016292, -0.0000016295,0.0000016325,0.0000016375,0.0000016413,0.0000016419, -0.0000016387,0.0000016336,0.0000016320,0.0000016350,0.0000016390, -0.0000016409,0.0000016409,0.0000016408,0.0000016350,0.0000016205, -0.0000016327,0.0000017178,0.0000018182,0.0000018594,0.0000018705, -0.0000018727,0.0000018393,0.0000017645,0.0000017136,0.0000017062, -0.0000017135,0.0000017285,0.0000017379,0.0000017438,0.0000017532, -0.0000017589,0.0000017550,0.0000017463,0.0000017413,0.0000017416, -0.0000017433,0.0000017454,0.0000017476,0.0000017461,0.0000017461, -0.0000017431,0.0000017411,0.0000017407,0.0000017399,0.0000017411, -0.0000017440,0.0000017470,0.0000017498,0.0000017528,0.0000017556, -0.0000017572,0.0000017582,0.0000017591,0.0000017605,0.0000017622, -0.0000017630,0.0000017617,0.0000017607,0.0000017588,0.0000017574, -0.0000017568,0.0000017566,0.0000017571,0.0000017581,0.0000017601, -0.0000017631,0.0000017658,0.0000017680,0.0000017704,0.0000017733, -0.0000017763,0.0000017790,0.0000017813,0.0000017839,0.0000017877, -0.0000017927,0.0000017976,0.0000018019,0.0000018051,0.0000018072, -0.0000018073,0.0000018053,0.0000018013,0.0000017978,0.0000017970, -0.0000017981,0.0000017990,0.0000017989,0.0000017921,0.0000017626, -0.0000017166,0.0000016876,0.0000017003,0.0000017548,0.0000018196, -0.0000018596,0.0000018700,0.0000018738,0.0000018807,0.0000018882, -0.0000018949,0.0000019018,0.0000019097,0.0000019188,0.0000019282, -0.0000019375,0.0000019447,0.0000019523,0.0000019579,0.0000019617, -0.0000019598,0.0000019515,0.0000019381,0.0000019243,0.0000019155, -0.0000019155,0.0000019241,0.0000019420,0.0000019640,0.0000019796, -0.0000019851,0.0000019830,0.0000019781,0.0000019745,0.0000019737, -0.0000019746,0.0000019764,0.0000019789,0.0000019826,0.0000019876, -0.0000019936,0.0000020004,0.0000020069,0.0000020126,0.0000020174, -0.0000020206,0.0000020215,0.0000020208,0.0000020190,0.0000020159, -0.0000020114,0.0000020084,0.0000020096,0.0000020139,0.0000020191, -0.0000020225,0.0000020239,0.0000020259,0.0000020247,0.0000020225, -0.0000020217,0.0000020223,0.0000020238,0.0000020284,0.0000020357, -0.0000020388,0.0000020344,0.0000020277,0.0000020181,0.0000019899, -0.0000019603,0.0000019540,0.0000019515,0.0000019412,0.0000019376, -0.0000019448,0.0000019546,0.0000019579,0.0000019578,0.0000019100, -0.0000018492,0.0000017710,0.0000017067,0.0000017317,0.0000018184, -0.0000018725,0.0000018814,0.0000018807,0.0000018814,0.0000018821, -0.0000018813,0.0000018817,0.0000018842,0.0000018876,0.0000018919, -0.0000018950,0.0000018952,0.0000018925,0.0000018883,0.0000018840, -0.0000018812,0.0000018800,0.0000018802,0.0000018822,0.0000018855, -0.0000018936,0.0000019002,0.0000019064,0.0000019055,0.0000018965, -0.0000018828,0.0000018672,0.0000018548,0.0000018454,0.0000018365, -0.0000018308,0.0000018249,0.0000018210,0.0000018159,0.0000018132, -0.0000018130,0.0000018149,0.0000018172,0.0000018205,0.0000018239, -0.0000018280,0.0000018331,0.0000018408,0.0000018504,0.0000018609, -0.0000018738,0.0000018921,0.0000019092,0.0000019167,0.0000019153, -0.0000019093,0.0000019019,0.0000018964,0.0000018943,0.0000018934, -0.0000018908,0.0000018864,0.0000018824,0.0000018817,0.0000018835, -0.0000018806,0.0000018806,0.0000018870,0.0000018921,0.0000018918, -0.0000018844,0.0000018787,0.0000018718,0.0000018685,0.0000018709, -0.0000018696,0.0000018633,0.0000018577,0.0000018470,0.0000018349, -0.0000018344,0.0000018474,0.0000018687,0.0000018846,0.0000019020, -0.0000019200,0.0000019258,0.0000019218,0.0000019154,0.0000019067, -0.0000018945,0.0000018855,0.0000018776,0.0000018726,0.0000018723, -0.0000018689,0.0000018546,0.0000018354,0.0000018187,0.0000017999, -0.0000017809,0.0000017660,0.0000017606,0.0000017610,0.0000017636, -0.0000017651,0.0000017605,0.0000017467,0.0000017318,0.0000017229, -0.0000017169,0.0000017099,0.0000017053,0.0000017053,0.0000017064, -0.0000017059,0.0000017061,0.0000017134,0.0000017281,0.0000017394, -0.0000017403,0.0000017353,0.0000017314,0.0000017277,0.0000017156, -0.0000017022,0.0000016968,0.0000016905,0.0000016781,0.0000016710, -0.0000016637,0.0000016522,0.0000016498,0.0000016517,0.0000016474, -0.0000016453,0.0000016519,0.0000016586,0.0000016608,0.0000016612, -0.0000016596,0.0000016532,0.0000016478,0.0000016471,0.0000016433, -0.0000016371,0.0000016300,0.0000016216,0.0000016195,0.0000016201, -0.0000016184,0.0000016173,0.0000016194,0.0000016149,0.0000016020, -0.0000015925,0.0000015892,0.0000015956,0.0000016120,0.0000016260, -0.0000016396,0.0000016544,0.0000016628,0.0000016691,0.0000016739, -0.0000016712,0.0000016609,0.0000016551,0.0000016555,0.0000016520, -0.0000016486,0.0000016479,0.0000016446,0.0000016390,0.0000016332, -0.0000016271,0.0000016212,0.0000016167,0.0000016151,0.0000016169, -0.0000016203,0.0000016240,0.0000016245,0.0000016222,0.0000016189, -0.0000016155,0.0000016137,0.0000016139,0.0000016170,0.0000016251, -0.0000016359,0.0000016475,0.0000016613,0.0000016769,0.0000016894, -0.0000016952,0.0000016956,0.0000016921,0.0000016865,0.0000016884, -0.0000017179,0.0000017610,0.0000017771,0.0000017712,0.0000017618, -0.0000017628,0.0000017714,0.0000017766,0.0000017757,0.0000017688, -0.0000017579,0.0000017472,0.0000017390,0.0000017349,0.0000017331, -0.0000017333,0.0000017374,0.0000017440,0.0000017525,0.0000017568, -0.0000017549,0.0000017529,0.0000017516,0.0000017458,0.0000017388, -0.0000017317,0.0000017174,0.0000016963,0.0000016872,0.0000017117, -0.0000017513,0.0000017570,0.0000017512,0.0000017528,0.0000017559, -0.0000017634,0.0000017794,0.0000017919,0.0000018019,0.0000018115, -0.0000018216,0.0000018262,0.0000018255,0.0000018239,0.0000018250, -0.0000018280,0.0000018303,0.0000018324,0.0000018378,0.0000018420, -0.0000018353,0.0000018116,0.0000017884,0.0000017572,0.0000017301, -0.0000017367,0.0000017539,0.0000017371,0.0000017108,0.0000017034, -0.0000016927,0.0000016985,0.0000017124,0.0000017168,0.0000017236, -0.0000017305,0.0000017376,0.0000017461,0.0000017515,0.0000017508, -0.0000017516,0.0000017576,0.0000017650,0.0000017723,0.0000017746, -0.0000017759,0.0000017821,0.0000017883,0.0000017971,0.0000018003, -0.0000018067,0.0000018264,0.0000018286,0.0000018121,0.0000018094, -0.0000017891,0.0000017434,0.0000017370,0.0000017369,0.0000017479, -0.0000017764,0.0000017853,0.0000017845,0.0000017705,0.0000017362, -0.0000017057,0.0000016908,0.0000016825,0.0000016794,0.0000016844, -0.0000016863,0.0000016814,0.0000016849,0.0000016993,0.0000017113, -0.0000017223,0.0000017337,0.0000017402,0.0000017443,0.0000017483, -0.0000017509,0.0000017522,0.0000017528,0.0000017522,0.0000017505, -0.0000017494,0.0000017497,0.0000017500,0.0000017486,0.0000017464, -0.0000017476,0.0000017564,0.0000017729,0.0000017903,0.0000018011, -0.0000018045,0.0000018047,0.0000018011,0.0000017880,0.0000017748, -0.0000017658,0.0000017562,0.0000017500,0.0000017482,0.0000017506, -0.0000017563,0.0000017525,0.0000017451,0.0000017561,0.0000017790, -0.0000017818,0.0000017500,0.0000017105,0.0000016984,0.0000017037, -0.0000017145,0.0000017395,0.0000017767,0.0000017920,0.0000017868, -0.0000017814,0.0000017852,0.0000018275,0.0000019014,0.0000019493, -0.0000019379,0.0000019131,0.0000019427,0.0000019920,0.0000019993, -0.0000020049,0.0000020215,0.0000020202,0.0000019919,0.0000019641, -0.0000019649,0.0000019897,0.0000020116,0.0000020127,0.0000020041, -0.0000019956,0.0000019914,0.0000019903,0.0000019915,0.0000019941, -0.0000019973,0.0000020012,0.0000020060,0.0000020102,0.0000020128, -0.0000020140,0.0000020141,0.0000020133,0.0000020119,0.0000020107, -0.0000020103,0.0000020113,0.0000020138,0.0000020161,0.0000020184, -0.0000020156,0.0000020043,0.0000019974,0.0000020061,0.0000020202, -0.0000020200,0.0000020136,0.0000020075,0.0000019890,0.0000019663, -0.0000019629,0.0000019781,0.0000020028,0.0000020229,0.0000020304, -0.0000020308,0.0000020306,0.0000020301,0.0000020349,0.0000020355, -0.0000020281,0.0000020247,0.0000020196,0.0000020158,0.0000020142, -0.0000020084,0.0000019924,0.0000019282,0.0000018653,0.0000018574, -0.0000018661,0.0000018444,0.0000018252,0.0000018458,0.0000018946, -0.0000019297,0.0000019384,0.0000019356,0.0000019200,0.0000018978, -0.0000018803,0.0000018673,0.0000018576,0.0000018504,0.0000018506, -0.0000018651,0.0000018872,0.0000019025,0.0000018776,0.0000018211, -0.0000018015,0.0000018128,0.0000018232,0.0000018423,0.0000018145, -0.0000018185,0.0000018626,0.0000019099,0.0000019328,0.0000019081, -0.0000018581,0.0000018987,0.0000019238,0.0000019242,0.0000019192, -0.0000019138,0.0000019104,0.0000019073,0.0000019068,0.0000019070, -0.0000018989,0.0000018721,0.0000018267,0.0000017753,0.0000017360, -0.0000017137,0.0000017027,0.0000016952,0.0000016903,0.0000016896, -0.0000016906,0.0000016920,0.0000016931,0.0000016934,0.0000016931, -0.0000016920,0.0000016902,0.0000016892,0.0000016897,0.0000016907, -0.0000016890,0.0000016801,0.0000016589,0.0000016295,0.0000016124, -0.0000016128,0.0000016170,0.0000016105,0.0000015946,0.0000015780, -0.0000015720,0.0000015816,0.0000015952,0.0000016065,0.0000016150, -0.0000016259,0.0000016340,0.0000016346,0.0000016323,0.0000016282, -0.0000016258,0.0000016242,0.0000016204,0.0000016147,0.0000016084, -0.0000016021,0.0000015957,0.0000015894,0.0000015836,0.0000015790, -0.0000015763,0.0000015750,0.0000015746,0.0000015751,0.0000015770, -0.0000015802,0.0000015840,0.0000015878,0.0000015922,0.0000015969, -0.0000016021,0.0000016072,0.0000016108,0.0000016124,0.0000016084, -0.0000015939,0.0000015624,0.0000015594,0.0000015885,0.0000016169, -0.0000016309,0.0000016310,0.0000016269,0.0000016264,0.0000016273, -0.0000016278,0.0000016286,0.0000016315,0.0000016365,0.0000016404, -0.0000016402,0.0000016348,0.0000016295,0.0000016308,0.0000016369, -0.0000016415,0.0000016427,0.0000016424,0.0000016419,0.0000016394, -0.0000016257,0.0000016226,0.0000016847,0.0000017897,0.0000018529, -0.0000018731,0.0000018762,0.0000018396,0.0000017633,0.0000017117, -0.0000017052,0.0000017130,0.0000017258,0.0000017348,0.0000017378, -0.0000017418,0.0000017482,0.0000017533,0.0000017546,0.0000017553, -0.0000017564,0.0000017561,0.0000017539,0.0000017519,0.0000017512, -0.0000017518,0.0000017534,0.0000017553,0.0000017576,0.0000017596, -0.0000017608,0.0000017612,0.0000017617,0.0000017623,0.0000017630, -0.0000017631,0.0000017626,0.0000017620,0.0000017612,0.0000017607, -0.0000017608,0.0000017610,0.0000017595,0.0000017591,0.0000017571, -0.0000017574,0.0000017588,0.0000017604,0.0000017624,0.0000017649, -0.0000017680,0.0000017710,0.0000017739,0.0000017768,0.0000017800, -0.0000017832,0.0000017859,0.0000017881,0.0000017903,0.0000017929, -0.0000017964,0.0000018002,0.0000018036,0.0000018053,0.0000018065, -0.0000018056,0.0000018027,0.0000017989,0.0000017965,0.0000017957, -0.0000017953,0.0000017950,0.0000017948,0.0000017883,0.0000017607, -0.0000017145,0.0000016781,0.0000016745,0.0000017015,0.0000017533, -0.0000018021,0.0000018305,0.0000018431,0.0000018507,0.0000018583, -0.0000018680,0.0000018802,0.0000018948,0.0000019094,0.0000019223, -0.0000019325,0.0000019371,0.0000019376,0.0000019327,0.0000019212, -0.0000019033,0.0000018807,0.0000018610,0.0000018517,0.0000018596, -0.0000018820,0.0000019132,0.0000019441,0.0000019700,0.0000019811, -0.0000019791,0.0000019716,0.0000019652,0.0000019636,0.0000019638, -0.0000019654,0.0000019666,0.0000019667,0.0000019668,0.0000019683, -0.0000019716,0.0000019773,0.0000019859,0.0000019962,0.0000020044, -0.0000020092,0.0000020120,0.0000020135,0.0000020141,0.0000020145, -0.0000020145,0.0000020125,0.0000020082,0.0000020043,0.0000020051, -0.0000020097,0.0000020160,0.0000020227,0.0000020267,0.0000020283, -0.0000020259,0.0000020239,0.0000020241,0.0000020255,0.0000020299, -0.0000020370,0.0000020388,0.0000020338,0.0000020279,0.0000020144, -0.0000019841,0.0000019651,0.0000019621,0.0000019485,0.0000019344, -0.0000019367,0.0000019483,0.0000019564,0.0000019577,0.0000019181, -0.0000018588,0.0000017905,0.0000017163,0.0000017171,0.0000017824, -0.0000018353,0.0000018477,0.0000018509,0.0000018543,0.0000018561, -0.0000018560,0.0000018559,0.0000018571,0.0000018562,0.0000018543, -0.0000018549,0.0000018543,0.0000018517,0.0000018475,0.0000018434, -0.0000018429,0.0000018432,0.0000018420,0.0000018379,0.0000018372, -0.0000018433,0.0000018517,0.0000018686,0.0000018868,0.0000018980, -0.0000019048,0.0000019021,0.0000018984,0.0000018884,0.0000018743, -0.0000018590,0.0000018447,0.0000018327,0.0000018242,0.0000018193, -0.0000018178,0.0000018185,0.0000018193,0.0000018181,0.0000018171, -0.0000018164,0.0000018180,0.0000018234,0.0000018325,0.0000018418, -0.0000018512,0.0000018659,0.0000018844,0.0000019010,0.0000019100, -0.0000019102,0.0000019060,0.0000019006,0.0000018954,0.0000018919, -0.0000018888,0.0000018848,0.0000018837,0.0000018847,0.0000018867, -0.0000018830,0.0000018872,0.0000018943,0.0000019004,0.0000018985, -0.0000018912,0.0000018834,0.0000018750,0.0000018708,0.0000018721, -0.0000018716,0.0000018657,0.0000018592,0.0000018511,0.0000018383, -0.0000018349,0.0000018446,0.0000018640,0.0000018827,0.0000019023, -0.0000019210,0.0000019278,0.0000019233,0.0000019138,0.0000019031, -0.0000018941,0.0000018892,0.0000018814,0.0000018743,0.0000018722, -0.0000018684,0.0000018537,0.0000018321,0.0000018125,0.0000017928, -0.0000017759,0.0000017654,0.0000017621,0.0000017625,0.0000017654, -0.0000017662,0.0000017585,0.0000017435,0.0000017297,0.0000017209, -0.0000017139,0.0000017091,0.0000017087,0.0000017098,0.0000017101, -0.0000017112,0.0000017178,0.0000017312,0.0000017449,0.0000017501, -0.0000017484,0.0000017422,0.0000017376,0.0000017311,0.0000017173, -0.0000017043,0.0000016973,0.0000016887,0.0000016768,0.0000016709, -0.0000016616,0.0000016517,0.0000016525,0.0000016522,0.0000016465, -0.0000016482,0.0000016556,0.0000016588,0.0000016594,0.0000016598, -0.0000016570,0.0000016503,0.0000016481,0.0000016469,0.0000016410, -0.0000016348,0.0000016261,0.0000016186,0.0000016178,0.0000016177, -0.0000016143,0.0000016139,0.0000016154,0.0000016080,0.0000015961, -0.0000015888,0.0000015881,0.0000015996,0.0000016162,0.0000016284, -0.0000016431,0.0000016571,0.0000016652,0.0000016726,0.0000016750, -0.0000016677,0.0000016577,0.0000016559,0.0000016544,0.0000016511, -0.0000016525,0.0000016539,0.0000016516,0.0000016459,0.0000016380, -0.0000016297,0.0000016218,0.0000016147,0.0000016114,0.0000016119, -0.0000016159,0.0000016205,0.0000016239,0.0000016259,0.0000016241, -0.0000016203,0.0000016172,0.0000016167,0.0000016222,0.0000016316, -0.0000016436,0.0000016587,0.0000016741,0.0000016856,0.0000016902, -0.0000016905,0.0000016879,0.0000016816,0.0000016837,0.0000017174, -0.0000017669,0.0000017756,0.0000017693,0.0000017659,0.0000017706, -0.0000017752,0.0000017743,0.0000017658,0.0000017511,0.0000017340, -0.0000017213,0.0000017151,0.0000017132,0.0000017129,0.0000017159, -0.0000017234,0.0000017339,0.0000017451,0.0000017494,0.0000017484, -0.0000017481,0.0000017473,0.0000017408,0.0000017324,0.0000017227, -0.0000017084,0.0000016899,0.0000016819,0.0000017062,0.0000017495, -0.0000017567,0.0000017509,0.0000017521,0.0000017549,0.0000017626, -0.0000017800,0.0000017935,0.0000018031,0.0000018120,0.0000018215, -0.0000018262,0.0000018247,0.0000018204,0.0000018200,0.0000018224, -0.0000018257,0.0000018301,0.0000018377,0.0000018421,0.0000018331, -0.0000018069,0.0000017829,0.0000017503,0.0000017286,0.0000017432, -0.0000017540,0.0000017290,0.0000017115,0.0000017029,0.0000016958, -0.0000017064,0.0000017142,0.0000017199,0.0000017247,0.0000017287, -0.0000017366,0.0000017466,0.0000017548,0.0000017562,0.0000017528, -0.0000017563,0.0000017664,0.0000017748,0.0000017771,0.0000017772, -0.0000017838,0.0000017929,0.0000018010,0.0000018029,0.0000018131, -0.0000018304,0.0000018259,0.0000018102,0.0000018074,0.0000017780, -0.0000017388,0.0000017370,0.0000017369,0.0000017562,0.0000017822, -0.0000017853,0.0000017757,0.0000017461,0.0000017142,0.0000016983, -0.0000016916,0.0000016882,0.0000016925,0.0000016972,0.0000016884, -0.0000016827,0.0000016917,0.0000017060,0.0000017139,0.0000017200, -0.0000017232,0.0000017243,0.0000017298,0.0000017402,0.0000017494, -0.0000017536,0.0000017536,0.0000017518,0.0000017501,0.0000017496, -0.0000017499,0.0000017499,0.0000017508,0.0000017557,0.0000017674, -0.0000017830,0.0000017965,0.0000018036,0.0000018057,0.0000018051, -0.0000017975,0.0000017823,0.0000017707,0.0000017622,0.0000017519, -0.0000017443,0.0000017426,0.0000017503,0.0000017614,0.0000017571, -0.0000017476,0.0000017582,0.0000017798,0.0000017810,0.0000017471, -0.0000017075,0.0000016976,0.0000017048,0.0000017156,0.0000017374, -0.0000017751,0.0000017932,0.0000017876,0.0000017827,0.0000017829, -0.0000018059,0.0000018731,0.0000019393,0.0000019463,0.0000019153, -0.0000019319,0.0000019813,0.0000019970,0.0000020068,0.0000020243, -0.0000020277,0.0000020099,0.0000019786,0.0000019630,0.0000019707, -0.0000019874,0.0000019996,0.0000020016,0.0000020010,0.0000020014, -0.0000020017,0.0000020029,0.0000020043,0.0000020065,0.0000020099, -0.0000020148,0.0000020205,0.0000020253,0.0000020291,0.0000020319, -0.0000020333,0.0000020329,0.0000020305,0.0000020270,0.0000020232, -0.0000020186,0.0000020129,0.0000020053,0.0000019962,0.0000019936, -0.0000020037,0.0000020197,0.0000020223,0.0000020157,0.0000020097, -0.0000019932,0.0000019681,0.0000019573,0.0000019645,0.0000019868, -0.0000020124,0.0000020270,0.0000020297,0.0000020301,0.0000020313, -0.0000020363,0.0000020350,0.0000020268,0.0000020227,0.0000020181, -0.0000020167,0.0000020133,0.0000020053,0.0000019870,0.0000019232, -0.0000018629,0.0000018573,0.0000018788,0.0000018774,0.0000018645, -0.0000018760,0.0000019096,0.0000019359,0.0000019456,0.0000019455, -0.0000019363,0.0000019172,0.0000018948,0.0000018749,0.0000018606, -0.0000018553,0.0000018656,0.0000018856,0.0000019028,0.0000019055, -0.0000018911,0.0000018396,0.0000018016,0.0000018041,0.0000018188, -0.0000018331,0.0000018345,0.0000018015,0.0000018530,0.0000018814, -0.0000019325,0.0000019267,0.0000018646,0.0000018980,0.0000019319, -0.0000019221,0.0000019119,0.0000019094,0.0000019078,0.0000019039, -0.0000018947,0.0000018770,0.0000018470,0.0000018063,0.0000017646, -0.0000017311,0.0000017101,0.0000017009,0.0000016954,0.0000016885, -0.0000016852,0.0000016874,0.0000016911,0.0000016926,0.0000016924, -0.0000016918,0.0000016911,0.0000016899,0.0000016874,0.0000016838, -0.0000016796,0.0000016739,0.0000016640,0.0000016463,0.0000016229, -0.0000016103,0.0000016118,0.0000016177,0.0000016112,0.0000015938, -0.0000015796,0.0000015764,0.0000015841,0.0000015976,0.0000016103, -0.0000016205,0.0000016305,0.0000016365,0.0000016375,0.0000016359, -0.0000016329,0.0000016300,0.0000016265,0.0000016200,0.0000016109, -0.0000016030,0.0000015979,0.0000015943,0.0000015906,0.0000015874, -0.0000015833,0.0000015808,0.0000015815,0.0000015828,0.0000015836, -0.0000015837,0.0000015837,0.0000015842,0.0000015851,0.0000015865, -0.0000015878,0.0000015886,0.0000015903,0.0000015927,0.0000015991, -0.0000016056,0.0000016105,0.0000016087,0.0000015953,0.0000015630, -0.0000015580,0.0000015865,0.0000016157,0.0000016301,0.0000016301, -0.0000016257,0.0000016227,0.0000016229,0.0000016249,0.0000016294, -0.0000016345,0.0000016376,0.0000016362,0.0000016308,0.0000016284, -0.0000016333,0.0000016390,0.0000016403,0.0000016399,0.0000016412, -0.0000016419,0.0000016415,0.0000016326,0.0000016251,0.0000016578, -0.0000017521,0.0000018292,0.0000018602,0.0000018664,0.0000018358, -0.0000017603,0.0000017098,0.0000017036,0.0000017143,0.0000017277, -0.0000017355,0.0000017382,0.0000017401,0.0000017436,0.0000017482, -0.0000017539,0.0000017591,0.0000017627,0.0000017645,0.0000017649, -0.0000017650,0.0000017651,0.0000017654,0.0000017661,0.0000017673, -0.0000017682,0.0000017681,0.0000017674,0.0000017663,0.0000017650, -0.0000017642,0.0000017640,0.0000017640,0.0000017639,0.0000017636, -0.0000017634,0.0000017639,0.0000017656,0.0000017674,0.0000017682, -0.0000017687,0.0000017693,0.0000017705,0.0000017725,0.0000017750, -0.0000017773,0.0000017794,0.0000017813,0.0000017831,0.0000017848, -0.0000017867,0.0000017891,0.0000017915,0.0000017932,0.0000017948, -0.0000017963,0.0000017973,0.0000017997,0.0000018017,0.0000018027, -0.0000018025,0.0000018009,0.0000017982,0.0000017952,0.0000017930, -0.0000017914,0.0000017895,0.0000017881,0.0000017879,0.0000017845, -0.0000017654,0.0000017255,0.0000016805,0.0000016538,0.0000016525, -0.0000016702,0.0000017091,0.0000017551,0.0000017933,0.0000018193, -0.0000018360,0.0000018492,0.0000018615,0.0000018726,0.0000018828, -0.0000018900,0.0000018897,0.0000018793,0.0000018610,0.0000018379, -0.0000018107,0.0000017819,0.0000017602,0.0000017560,0.0000017718, -0.0000018144,0.0000018606,0.0000019092,0.0000019506,0.0000019747, -0.0000019791,0.0000019734,0.0000019667,0.0000019636,0.0000019642, -0.0000019663,0.0000019682,0.0000019690,0.0000019687,0.0000019675, -0.0000019656,0.0000019637,0.0000019629,0.0000019614,0.0000019700, -0.0000019849,0.0000019993,0.0000020071,0.0000020091,0.0000020089, -0.0000020085,0.0000020089,0.0000020100,0.0000020101,0.0000020083, -0.0000020036,0.0000019999,0.0000020013,0.0000020072,0.0000020163, -0.0000020252,0.0000020288,0.0000020284,0.0000020265,0.0000020253, -0.0000020253,0.0000020303,0.0000020375,0.0000020367,0.0000020306, -0.0000020257,0.0000020079,0.0000019815,0.0000019718,0.0000019620, -0.0000019409,0.0000019330,0.0000019410,0.0000019502,0.0000019521, -0.0000019183,0.0000018615,0.0000018108,0.0000017416,0.0000017191, -0.0000017596,0.0000018175,0.0000018445,0.0000018555,0.0000018638, -0.0000018719,0.0000018762,0.0000018754,0.0000018710,0.0000018652, -0.0000018610,0.0000018587,0.0000018573,0.0000018565,0.0000018551, -0.0000018535,0.0000018530,0.0000018530,0.0000018515,0.0000018468, -0.0000018415,0.0000018391,0.0000018334,0.0000018366,0.0000018458, -0.0000018585,0.0000018737,0.0000018874,0.0000018996,0.0000019095, -0.0000019069,0.0000019044,0.0000018924,0.0000018777,0.0000018649, -0.0000018547,0.0000018479,0.0000018444,0.0000018405,0.0000018335, -0.0000018246,0.0000018173,0.0000018125,0.0000018130,0.0000018160, -0.0000018207,0.0000018274,0.0000018387,0.0000018539,0.0000018732, -0.0000018908,0.0000019016,0.0000019045,0.0000019014,0.0000018983, -0.0000018925,0.0000018876,0.0000018829,0.0000018814,0.0000018812, -0.0000018823,0.0000018802,0.0000018872,0.0000018946,0.0000019026, -0.0000019014,0.0000018950,0.0000018860,0.0000018775,0.0000018730, -0.0000018733,0.0000018725,0.0000018677,0.0000018603,0.0000018543, -0.0000018418,0.0000018366,0.0000018429,0.0000018595,0.0000018812, -0.0000019024,0.0000019204,0.0000019287,0.0000019238,0.0000019094, -0.0000018973,0.0000018927,0.0000018904,0.0000018829,0.0000018755, -0.0000018715,0.0000018664,0.0000018507,0.0000018270,0.0000018059, -0.0000017877,0.0000017740,0.0000017650,0.0000017617,0.0000017631, -0.0000017674,0.0000017665,0.0000017569,0.0000017419,0.0000017283, -0.0000017183,0.0000017125,0.0000017118,0.0000017137,0.0000017157, -0.0000017189,0.0000017262,0.0000017376,0.0000017494,0.0000017574, -0.0000017592,0.0000017552,0.0000017482,0.0000017427,0.0000017340, -0.0000017195,0.0000017058,0.0000016968,0.0000016865,0.0000016757, -0.0000016701,0.0000016594,0.0000016530,0.0000016550,0.0000016514, -0.0000016473,0.0000016520,0.0000016566,0.0000016572,0.0000016582, -0.0000016587,0.0000016542,0.0000016493,0.0000016485,0.0000016448, -0.0000016383,0.0000016320,0.0000016223,0.0000016161,0.0000016158, -0.0000016136,0.0000016093,0.0000016108,0.0000016112,0.0000016020, -0.0000015918,0.0000015871,0.0000015897,0.0000016044,0.0000016190, -0.0000016305,0.0000016467,0.0000016596,0.0000016683,0.0000016753, -0.0000016734,0.0000016631,0.0000016569,0.0000016559,0.0000016531, -0.0000016566,0.0000016666,0.0000016704,0.0000016679,0.0000016596, -0.0000016479,0.0000016365,0.0000016258,0.0000016164,0.0000016111, -0.0000016112,0.0000016142,0.0000016189,0.0000016246,0.0000016287, -0.0000016299,0.0000016290,0.0000016278,0.0000016293,0.0000016359, -0.0000016466,0.0000016605,0.0000016741,0.0000016829,0.0000016853, -0.0000016852,0.0000016830,0.0000016779,0.0000016844,0.0000017249, -0.0000017732,0.0000017760,0.0000017700,0.0000017704,0.0000017732, -0.0000017719,0.0000017610,0.0000017426,0.0000017210,0.0000017025, -0.0000016921,0.0000016885,0.0000016874,0.0000016876,0.0000016932, -0.0000017046,0.0000017195,0.0000017336,0.0000017393,0.0000017401, -0.0000017416,0.0000017411,0.0000017339,0.0000017239,0.0000017119, -0.0000016983,0.0000016830,0.0000016765,0.0000017012,0.0000017475, -0.0000017566,0.0000017508,0.0000017515,0.0000017541,0.0000017613, -0.0000017794,0.0000017941,0.0000018039,0.0000018123,0.0000018211, -0.0000018259,0.0000018239,0.0000018177,0.0000018160,0.0000018179, -0.0000018217,0.0000018280,0.0000018372,0.0000018410,0.0000018270, -0.0000017980,0.0000017750,0.0000017431,0.0000017314,0.0000017507, -0.0000017517,0.0000017219,0.0000017119,0.0000017014,0.0000017021, -0.0000017121,0.0000017166,0.0000017195,0.0000017202,0.0000017264, -0.0000017359,0.0000017451,0.0000017550,0.0000017592,0.0000017551, -0.0000017548,0.0000017670,0.0000017775,0.0000017791,0.0000017790, -0.0000017866,0.0000017974,0.0000018045,0.0000018068,0.0000018211, -0.0000018347,0.0000018227,0.0000018094,0.0000018029,0.0000017639, -0.0000017338,0.0000017371,0.0000017379,0.0000017642,0.0000017844, -0.0000017811,0.0000017563,0.0000017239,0.0000017035,0.0000016982, -0.0000016964,0.0000016992,0.0000017039,0.0000016948,0.0000016811, -0.0000016841,0.0000017002,0.0000017100,0.0000017104,0.0000017057, -0.0000016998,0.0000017009,0.0000017163,0.0000017386,0.0000017526, -0.0000017548,0.0000017539,0.0000017531,0.0000017530,0.0000017534, -0.0000017545,0.0000017571,0.0000017644,0.0000017768,0.0000017899, -0.0000017993,0.0000018044,0.0000018069,0.0000018048,0.0000017924, -0.0000017767,0.0000017676,0.0000017592,0.0000017468,0.0000017379, -0.0000017388,0.0000017526,0.0000017653,0.0000017590,0.0000017508, -0.0000017610,0.0000017806,0.0000017800,0.0000017449,0.0000017052, -0.0000016961,0.0000017050,0.0000017158,0.0000017331,0.0000017710, -0.0000017926,0.0000017878,0.0000017837,0.0000017836,0.0000017911, -0.0000018420,0.0000019194,0.0000019493,0.0000019199,0.0000019211, -0.0000019712,0.0000019953,0.0000020076,0.0000020255,0.0000020321, -0.0000020261,0.0000020048,0.0000019832,0.0000019749,0.0000019771, -0.0000019822,0.0000019898,0.0000019945,0.0000019991,0.0000020044, -0.0000020092,0.0000020106,0.0000020141,0.0000020149,0.0000020139, -0.0000020124,0.0000020113,0.0000020110,0.0000020112,0.0000020110, -0.0000020094,0.0000020064,0.0000020029,0.0000020000,0.0000019972, -0.0000019951,0.0000019918,0.0000019945,0.0000020084,0.0000020228, -0.0000020243,0.0000020171,0.0000020103,0.0000019947,0.0000019682, -0.0000019525,0.0000019542,0.0000019717,0.0000020001,0.0000020225, -0.0000020294,0.0000020302,0.0000020326,0.0000020383,0.0000020348, -0.0000020257,0.0000020217,0.0000020191,0.0000020195,0.0000020134, -0.0000020024,0.0000019815,0.0000019183,0.0000018606,0.0000018553, -0.0000018845,0.0000019040,0.0000019082,0.0000019161,0.0000019319, -0.0000019397,0.0000019441,0.0000019391,0.0000019267,0.0000019072, -0.0000018858,0.0000018694,0.0000018628,0.0000018705,0.0000018872, -0.0000019037,0.0000019078,0.0000019014,0.0000018858,0.0000018503, -0.0000018087,0.0000017980,0.0000018122,0.0000018226,0.0000018432, -0.0000018201,0.0000018180,0.0000018658,0.0000019170,0.0000019326, -0.0000018871,0.0000018855,0.0000019317,0.0000018955,0.0000018603, -0.0000018499,0.0000018459,0.0000018408,0.0000018297,0.0000018093, -0.0000017818,0.0000017512,0.0000017235,0.0000017056,0.0000016970, -0.0000016904,0.0000016848,0.0000016823,0.0000016828,0.0000016853, -0.0000016885,0.0000016902,0.0000016906,0.0000016905,0.0000016879, -0.0000016811,0.0000016717,0.0000016607,0.0000016488,0.0000016363, -0.0000016211,0.0000016074,0.0000016055,0.0000016086,0.0000016153, -0.0000016103,0.0000015958,0.0000015815,0.0000015791,0.0000015867, -0.0000015986,0.0000016123,0.0000016250,0.0000016359,0.0000016416, -0.0000016408,0.0000016397,0.0000016390,0.0000016369,0.0000016314, -0.0000016216,0.0000016088,0.0000015991,0.0000015947,0.0000015939, -0.0000015936,0.0000015935,0.0000015965,0.0000016002,0.0000016054, -0.0000016105,0.0000016146,0.0000016172,0.0000016183,0.0000016180, -0.0000016170,0.0000016151,0.0000016124,0.0000016093,0.0000016051, -0.0000015999,0.0000015938,0.0000015891,0.0000015914,0.0000015987, -0.0000016076,0.0000016081,0.0000015958,0.0000015638,0.0000015585, -0.0000015843,0.0000016144,0.0000016287,0.0000016316,0.0000016284, -0.0000016250,0.0000016250,0.0000016287,0.0000016329,0.0000016343, -0.0000016309,0.0000016250,0.0000016253,0.0000016324,0.0000016355, -0.0000016328,0.0000016307,0.0000016332,0.0000016383,0.0000016413, -0.0000016385,0.0000016265,0.0000016364,0.0000017134,0.0000017960, -0.0000018294,0.0000018358,0.0000018158,0.0000017532,0.0000017083, -0.0000017025,0.0000017157,0.0000017328,0.0000017425,0.0000017457, -0.0000017483,0.0000017523,0.0000017578,0.0000017642,0.0000017696, -0.0000017727,0.0000017734,0.0000017727,0.0000017713,0.0000017698, -0.0000017688,0.0000017683,0.0000017689,0.0000017700,0.0000017707, -0.0000017709,0.0000017716,0.0000017722,0.0000017727,0.0000017739, -0.0000017753,0.0000017760,0.0000017762,0.0000017762,0.0000017761, -0.0000017773,0.0000017771,0.0000017755,0.0000017754,0.0000017757, -0.0000017762,0.0000017773,0.0000017794,0.0000017811,0.0000017826, -0.0000017842,0.0000017857,0.0000017869,0.0000017883,0.0000017902, -0.0000017920,0.0000017934,0.0000017946,0.0000017954,0.0000017961, -0.0000017967,0.0000017967,0.0000017960,0.0000017946,0.0000017925, -0.0000017904,0.0000017886,0.0000017868,0.0000017848,0.0000017832, -0.0000017826,0.0000017799,0.0000017669,0.0000017356,0.0000016912, -0.0000016511,0.0000016322,0.0000016357,0.0000016553,0.0000016929, -0.0000017379,0.0000017752,0.0000017984,0.0000018092,0.0000018135, -0.0000018119,0.0000018034,0.0000017901,0.0000017757,0.0000017549, -0.0000017323,0.0000017048,0.0000016804,0.0000016645,0.0000016620, -0.0000016850,0.0000017313,0.0000017943,0.0000018621,0.0000019196, -0.0000019601,0.0000019780,0.0000019784,0.0000019721,0.0000019680, -0.0000019678,0.0000019684,0.0000019696,0.0000019701,0.0000019708, -0.0000019716,0.0000019721,0.0000019718,0.0000019696,0.0000019666, -0.0000019619,0.0000019580,0.0000019604,0.0000019748,0.0000019934, -0.0000020057,0.0000020097,0.0000020098,0.0000020094,0.0000020093, -0.0000020091,0.0000020089,0.0000020072,0.0000020024,0.0000019975, -0.0000019965,0.0000020005,0.0000020091,0.0000020195,0.0000020261, -0.0000020280,0.0000020263,0.0000020237,0.0000020239,0.0000020304, -0.0000020359,0.0000020322,0.0000020275,0.0000020210,0.0000019994, -0.0000019812,0.0000019757,0.0000019589,0.0000019407,0.0000019390, -0.0000019389,0.0000019316,0.0000019004,0.0000018546,0.0000018236, -0.0000017762,0.0000017397,0.0000017620,0.0000018167,0.0000018564, -0.0000018802,0.0000018970,0.0000019080,0.0000019122,0.0000019128, -0.0000019102,0.0000019054,0.0000019023,0.0000019007,0.0000019019, -0.0000019052,0.0000019068,0.0000019058,0.0000019045,0.0000019044, -0.0000019020,0.0000018965,0.0000018888,0.0000018809,0.0000018722, -0.0000018626,0.0000018548,0.0000018530,0.0000018503,0.0000018533, -0.0000018582,0.0000018736,0.0000018870,0.0000019009,0.0000019091, -0.0000019074,0.0000019043,0.0000018927,0.0000018800,0.0000018711, -0.0000018654,0.0000018589,0.0000018493,0.0000018378,0.0000018287, -0.0000018223,0.0000018179,0.0000018161,0.0000018165,0.0000018204, -0.0000018255,0.0000018363,0.0000018524,0.0000018720,0.0000018895, -0.0000018983,0.0000019015,0.0000018984,0.0000018917,0.0000018846, -0.0000018799,0.0000018762,0.0000018749,0.0000018725,0.0000018785, -0.0000018889,0.0000018987,0.0000018994,0.0000018939,0.0000018856, -0.0000018791,0.0000018762,0.0000018759,0.0000018741,0.0000018690, -0.0000018616,0.0000018571,0.0000018447,0.0000018392,0.0000018424, -0.0000018564,0.0000018804,0.0000019026,0.0000019193,0.0000019287, -0.0000019220,0.0000019028,0.0000018914,0.0000018909,0.0000018891, -0.0000018824,0.0000018760,0.0000018705,0.0000018635,0.0000018461, -0.0000018211,0.0000018009,0.0000017850,0.0000017720,0.0000017630, -0.0000017612,0.0000017650,0.0000017681,0.0000017659,0.0000017565, -0.0000017427,0.0000017294,0.0000017209,0.0000017194,0.0000017218, -0.0000017257,0.0000017309,0.0000017387,0.0000017474,0.0000017549, -0.0000017616,0.0000017664,0.0000017662,0.0000017609,0.0000017536, -0.0000017470,0.0000017363,0.0000017211,0.0000017061,0.0000016952, -0.0000016839,0.0000016747,0.0000016687,0.0000016582,0.0000016551, -0.0000016557,0.0000016507,0.0000016498,0.0000016541,0.0000016553, -0.0000016558,0.0000016581,0.0000016571,0.0000016515,0.0000016487, -0.0000016473,0.0000016413,0.0000016358,0.0000016290,0.0000016188, -0.0000016140,0.0000016131,0.0000016081,0.0000016051,0.0000016086, -0.0000016070,0.0000015976,0.0000015889,0.0000015860,0.0000015929, -0.0000016086,0.0000016206,0.0000016336,0.0000016503,0.0000016622, -0.0000016716,0.0000016759,0.0000016692,0.0000016593,0.0000016568, -0.0000016552,0.0000016582,0.0000016746,0.0000016871,0.0000016870, -0.0000016800,0.0000016673,0.0000016539,0.0000016421,0.0000016304, -0.0000016197,0.0000016135,0.0000016129,0.0000016153,0.0000016201, -0.0000016257,0.0000016303,0.0000016339,0.0000016365,0.0000016404, -0.0000016464,0.0000016551,0.0000016653,0.0000016748,0.0000016799, -0.0000016805,0.0000016801,0.0000016775,0.0000016744,0.0000016913, -0.0000017392,0.0000017778,0.0000017763,0.0000017722,0.0000017721, -0.0000017690,0.0000017549,0.0000017329,0.0000017091,0.0000016885, -0.0000016757,0.0000016697,0.0000016669,0.0000016646,0.0000016645, -0.0000016703,0.0000016832,0.0000017014,0.0000017179,0.0000017255, -0.0000017289,0.0000017323,0.0000017318,0.0000017235,0.0000017124, -0.0000017001,0.0000016885,0.0000016759,0.0000016709,0.0000016958, -0.0000017445,0.0000017562,0.0000017507,0.0000017510,0.0000017535, -0.0000017601,0.0000017781,0.0000017937,0.0000018039,0.0000018122, -0.0000018203,0.0000018250,0.0000018225,0.0000018144,0.0000018113, -0.0000018129,0.0000018180,0.0000018266,0.0000018368,0.0000018376, -0.0000018159,0.0000017886,0.0000017660,0.0000017364,0.0000017357, -0.0000017564,0.0000017432,0.0000017178,0.0000017100,0.0000017017, -0.0000017105,0.0000017162,0.0000017172,0.0000017145,0.0000017183, -0.0000017288,0.0000017382,0.0000017453,0.0000017535,0.0000017604, -0.0000017572,0.0000017535,0.0000017665,0.0000017796,0.0000017811, -0.0000017810,0.0000017899,0.0000018022,0.0000018075,0.0000018122, -0.0000018288,0.0000018354,0.0000018188,0.0000018097,0.0000017969, -0.0000017510,0.0000017351,0.0000017352,0.0000017416,0.0000017707, -0.0000017813,0.0000017663,0.0000017354,0.0000017103,0.0000017008, -0.0000017014,0.0000017049,0.0000017091,0.0000017007,0.0000016804, -0.0000016756,0.0000016915,0.0000017064,0.0000017064,0.0000016953, -0.0000016834,0.0000016803,0.0000016906,0.0000017195,0.0000017466, -0.0000017557,0.0000017559,0.0000017575,0.0000017595,0.0000017603, -0.0000017610,0.0000017644,0.0000017728,0.0000017837,0.0000017931, -0.0000017995,0.0000018043,0.0000018071,0.0000018028,0.0000017866, -0.0000017724,0.0000017656,0.0000017555,0.0000017406,0.0000017319, -0.0000017376,0.0000017559,0.0000017652,0.0000017592,0.0000017539, -0.0000017640,0.0000017812,0.0000017792,0.0000017434,0.0000017035, -0.0000016938,0.0000017036,0.0000017159,0.0000017282,0.0000017636, -0.0000017918,0.0000017892,0.0000017839,0.0000017855,0.0000017874, -0.0000018153,0.0000018906,0.0000019468,0.0000019278,0.0000019173, -0.0000019628,0.0000019931,0.0000020071,0.0000020256,0.0000020338, -0.0000020335,0.0000020268,0.0000020145,0.0000020030,0.0000019952, -0.0000019929,0.0000019934,0.0000019928,0.0000019951,0.0000019988, -0.0000020008,0.0000020048,0.0000020105,0.0000020157,0.0000020184, -0.0000020159,0.0000020118,0.0000020072,0.0000020048,0.0000020039, -0.0000020027,0.0000020015,0.0000020000,0.0000019985,0.0000019972, -0.0000019973,0.0000020042,0.0000020190,0.0000020287,0.0000020273, -0.0000020193,0.0000020105,0.0000019934,0.0000019668,0.0000019486, -0.0000019472,0.0000019619,0.0000019911,0.0000020181,0.0000020295, -0.0000020315,0.0000020347,0.0000020403,0.0000020347,0.0000020255, -0.0000020219,0.0000020220,0.0000020234,0.0000020149,0.0000020016, -0.0000019782,0.0000019153,0.0000018592,0.0000018527,0.0000018818, -0.0000019151,0.0000019303,0.0000019366,0.0000019408,0.0000019378, -0.0000019275,0.0000019103,0.0000018932,0.0000018780,0.0000018675, -0.0000018640,0.0000018750,0.0000018928,0.0000019094,0.0000019101, -0.0000018973,0.0000018771,0.0000018605,0.0000018423,0.0000018162, -0.0000017963,0.0000018008,0.0000018197,0.0000018276,0.0000018438, -0.0000018070,0.0000018458,0.0000018881,0.0000019352,0.0000019165, -0.0000018766,0.0000019234,0.0000018807,0.0000018188,0.0000017975, -0.0000017843,0.0000017753,0.0000017651,0.0000017509,0.0000017329, -0.0000017150,0.0000017018,0.0000016937,0.0000016872,0.0000016800, -0.0000016753,0.0000016768,0.0000016811,0.0000016831,0.0000016844, -0.0000016856,0.0000016858,0.0000016827,0.0000016731,0.0000016569, -0.0000016383,0.0000016218,0.0000016081,0.0000016016,0.0000016003, -0.0000016020,0.0000016101,0.0000016142,0.0000016093,0.0000015966, -0.0000015835,0.0000015813,0.0000015860,0.0000015978,0.0000016117, -0.0000016261,0.0000016397,0.0000016474,0.0000016474,0.0000016465, -0.0000016459,0.0000016448,0.0000016396,0.0000016263,0.0000016086, -0.0000015959,0.0000015912,0.0000015929,0.0000015960,0.0000016019, -0.0000016108,0.0000016196,0.0000016261,0.0000016302,0.0000016325, -0.0000016333,0.0000016331,0.0000016322,0.0000016313,0.0000016306, -0.0000016297,0.0000016289,0.0000016277,0.0000016254,0.0000016239, -0.0000016202,0.0000016101,0.0000015977,0.0000015889,0.0000015911, -0.0000016030,0.0000016071,0.0000015955,0.0000015640,0.0000015573, -0.0000015813,0.0000016119,0.0000016276,0.0000016313,0.0000016319, -0.0000016314,0.0000016322,0.0000016331,0.0000016322,0.0000016259, -0.0000016186,0.0000016196,0.0000016262,0.0000016273,0.0000016245, -0.0000016239,0.0000016259,0.0000016310,0.0000016371,0.0000016392, -0.0000016305,0.0000016278,0.0000016766,0.0000017604,0.0000017945, -0.0000017940,0.0000017785,0.0000017390,0.0000017066,0.0000017014, -0.0000017137,0.0000017344,0.0000017491,0.0000017557,0.0000017607, -0.0000017656,0.0000017700,0.0000017737,0.0000017760,0.0000017772, -0.0000017764,0.0000017739,0.0000017715,0.0000017701,0.0000017702, -0.0000017717,0.0000017745,0.0000017775,0.0000017802,0.0000017822, -0.0000017837,0.0000017851,0.0000017856,0.0000017848,0.0000017828, -0.0000017824,0.0000017800,0.0000017759,0.0000017717,0.0000017686, -0.0000017658,0.0000017632,0.0000017605,0.0000017577,0.0000017556, -0.0000017551,0.0000017560,0.0000017579,0.0000017604,0.0000017637, -0.0000017677,0.0000017716,0.0000017752,0.0000017788,0.0000017819, -0.0000017846,0.0000017867,0.0000017878,0.0000017883,0.0000017885, -0.0000017881,0.0000017871,0.0000017856,0.0000017841,0.0000017828, -0.0000017814,0.0000017795,0.0000017768,0.0000017722,0.0000017633, -0.0000017468,0.0000017196,0.0000016850,0.0000016532,0.0000016344, -0.0000016359,0.0000016512,0.0000016778,0.0000017072,0.0000017284, -0.0000017378,0.0000017438,0.0000017341,0.0000017212,0.0000017120, -0.0000016968,0.0000016929,0.0000016780,0.0000016663,0.0000016628, -0.0000016534,0.0000016599,0.0000016782,0.0000017080,0.0000017652, -0.0000018309,0.0000018951,0.0000019413,0.0000019699,0.0000019791, -0.0000019777,0.0000019720,0.0000019684,0.0000019663,0.0000019632, -0.0000019598,0.0000019572,0.0000019569,0.0000019598,0.0000019657, -0.0000019718,0.0000019735,0.0000019721,0.0000019693,0.0000019647, -0.0000019599,0.0000019608,0.0000019731,0.0000019903,0.0000020032, -0.0000020096,0.0000020119,0.0000020128,0.0000020124,0.0000020104, -0.0000020074,0.0000020036,0.0000019985,0.0000019945,0.0000019942, -0.0000019974,0.0000020046,0.0000020134,0.0000020201,0.0000020227, -0.0000020214,0.0000020198,0.0000020225,0.0000020301,0.0000020314, -0.0000020271,0.0000020240,0.0000020120,0.0000019907,0.0000019832, -0.0000019766,0.0000019564,0.0000019438,0.0000019292,0.0000018999, -0.0000018674,0.0000018402,0.0000018273,0.0000018045,0.0000017768, -0.0000017862,0.0000018271,0.0000018648,0.0000018967,0.0000019206, -0.0000019277,0.0000019204,0.0000019133,0.0000019091,0.0000019045, -0.0000019014,0.0000019025,0.0000019085,0.0000019164,0.0000019220, -0.0000019247,0.0000019270,0.0000019320,0.0000019333,0.0000019333, -0.0000019278,0.0000019215,0.0000019163,0.0000019102,0.0000019038, -0.0000018964,0.0000018874,0.0000018768,0.0000018643,0.0000018592, -0.0000018582,0.0000018585,0.0000018712,0.0000018872,0.0000019040, -0.0000019087,0.0000019054,0.0000018923,0.0000018815,0.0000018771, -0.0000018747,0.0000018696,0.0000018642,0.0000018577,0.0000018491, -0.0000018394,0.0000018311,0.0000018252,0.0000018201,0.0000018172, -0.0000018181,0.0000018243,0.0000018411,0.0000018623,0.0000018794, -0.0000018880,0.0000018892,0.0000018876,0.0000018867,0.0000018858, -0.0000018851,0.0000018811,0.0000018828,0.0000018922,0.0000018987, -0.0000018979,0.0000018918,0.0000018851,0.0000018816,0.0000018805, -0.0000018790,0.0000018756,0.0000018692,0.0000018627,0.0000018593, -0.0000018477,0.0000018424,0.0000018439,0.0000018560,0.0000018804, -0.0000019024,0.0000019174,0.0000019267,0.0000019179,0.0000018957, -0.0000018869,0.0000018880,0.0000018865,0.0000018809,0.0000018750, -0.0000018687,0.0000018600,0.0000018409,0.0000018161,0.0000017977, -0.0000017823,0.0000017689,0.0000017610,0.0000017614,0.0000017653, -0.0000017674,0.0000017655,0.0000017584,0.0000017475,0.0000017383, -0.0000017363,0.0000017385,0.0000017424,0.0000017474,0.0000017531, -0.0000017579,0.0000017609,0.0000017644,0.0000017697,0.0000017729, -0.0000017718,0.0000017655,0.0000017581,0.0000017503,0.0000017380, -0.0000017216,0.0000017050,0.0000016926,0.0000016811,0.0000016737, -0.0000016673,0.0000016581,0.0000016565,0.0000016554,0.0000016513, -0.0000016521,0.0000016539,0.0000016537,0.0000016557,0.0000016574, -0.0000016540,0.0000016490,0.0000016477,0.0000016440,0.0000016378, -0.0000016336,0.0000016258,0.0000016158,0.0000016121,0.0000016088, -0.0000016024,0.0000016027,0.0000016068,0.0000016039,0.0000015944, -0.0000015869,0.0000015866,0.0000015972,0.0000016121,0.0000016227, -0.0000016373,0.0000016535,0.0000016649,0.0000016741,0.0000016740, -0.0000016639,0.0000016575,0.0000016567,0.0000016580,0.0000016752, -0.0000016952,0.0000016975,0.0000016913,0.0000016775,0.0000016634, -0.0000016530,0.0000016430,0.0000016324,0.0000016226,0.0000016165, -0.0000016150,0.0000016170,0.0000016215,0.0000016271,0.0000016316, -0.0000016355,0.0000016415,0.0000016501,0.0000016586,0.0000016661, -0.0000016724,0.0000016754,0.0000016757,0.0000016750,0.0000016712, -0.0000016720,0.0000017062,0.0000017559,0.0000017795,0.0000017771, -0.0000017740,0.0000017677,0.0000017495,0.0000017237,0.0000016996, -0.0000016801,0.0000016669,0.0000016607,0.0000016577,0.0000016542, -0.0000016498,0.0000016483,0.0000016519,0.0000016633,0.0000016814, -0.0000016986,0.0000017080,0.0000017138,0.0000017187,0.0000017179, -0.0000017090,0.0000016980,0.0000016877,0.0000016790,0.0000016693, -0.0000016656,0.0000016895,0.0000017398,0.0000017550,0.0000017507, -0.0000017503,0.0000017529,0.0000017589,0.0000017762,0.0000017923, -0.0000018028,0.0000018112,0.0000018186,0.0000018225,0.0000018192, -0.0000018101,0.0000018068,0.0000018093,0.0000018166,0.0000018271, -0.0000018351,0.0000018302,0.0000018020,0.0000017802,0.0000017557, -0.0000017325,0.0000017444,0.0000017574,0.0000017317,0.0000017162, -0.0000017060,0.0000017060,0.0000017174,0.0000017190,0.0000017141, -0.0000017115,0.0000017194,0.0000017299,0.0000017389,0.0000017467, -0.0000017527,0.0000017591,0.0000017585,0.0000017526,0.0000017647, -0.0000017802,0.0000017826,0.0000017832,0.0000017932,0.0000018064, -0.0000018114,0.0000018185,0.0000018344,0.0000018340,0.0000018147, -0.0000018100,0.0000017893,0.0000017410,0.0000017358,0.0000017333, -0.0000017473,0.0000017720,0.0000017723,0.0000017481,0.0000017202, -0.0000017038,0.0000017021,0.0000017074,0.0000017140,0.0000017090, -0.0000016842,0.0000016684,0.0000016787,0.0000017004,0.0000017060, -0.0000016928,0.0000016789,0.0000016757,0.0000016781,0.0000017001, -0.0000017348,0.0000017542,0.0000017576,0.0000017606,0.0000017638, -0.0000017642,0.0000017649,0.0000017704,0.0000017796,0.0000017876, -0.0000017930,0.0000017979,0.0000018041,0.0000018073,0.0000017999, -0.0000017811,0.0000017694,0.0000017633,0.0000017501,0.0000017340, -0.0000017283,0.0000017400,0.0000017586,0.0000017647,0.0000017588, -0.0000017555,0.0000017663,0.0000017817,0.0000017787,0.0000017425, -0.0000017018,0.0000016905,0.0000017004,0.0000017155,0.0000017233, -0.0000017515,0.0000017875,0.0000017915,0.0000017842,0.0000017868, -0.0000017883,0.0000017976,0.0000018581,0.0000019342,0.0000019363, -0.0000019175,0.0000019534,0.0000019889,0.0000020052,0.0000020253, -0.0000020341,0.0000020341,0.0000020339,0.0000020323,0.0000020279, -0.0000020235,0.0000020199,0.0000020164,0.0000020140,0.0000020117, -0.0000020078,0.0000020016,0.0000019969,0.0000019951,0.0000019961, -0.0000020025,0.0000020083,0.0000020112,0.0000020115,0.0000020117, -0.0000020119,0.0000020110,0.0000020101,0.0000020086,0.0000020092, -0.0000020127,0.0000020217,0.0000020323,0.0000020351,0.0000020303, -0.0000020211,0.0000020108,0.0000019918,0.0000019647,0.0000019465, -0.0000019444,0.0000019579,0.0000019880,0.0000020168,0.0000020296, -0.0000020332,0.0000020377,0.0000020411,0.0000020340,0.0000020251, -0.0000020228,0.0000020257,0.0000020264,0.0000020156,0.0000020015, -0.0000019777,0.0000019169,0.0000018615,0.0000018488,0.0000018646, -0.0000018975,0.0000019206,0.0000019270,0.0000019217,0.0000019094, -0.0000018936,0.0000018771,0.0000018645,0.0000018617,0.0000018660, -0.0000018801,0.0000019001,0.0000019180,0.0000019165,0.0000018993, -0.0000018706,0.0000018444,0.0000018309,0.0000018246,0.0000018155, -0.0000017998,0.0000017947,0.0000018092,0.0000018232,0.0000018378, -0.0000018305,0.0000018129,0.0000018661,0.0000019202,0.0000019334, -0.0000018845,0.0000019018,0.0000018926,0.0000017976,0.0000017638, -0.0000017459,0.0000017330,0.0000017231,0.0000017138,0.0000017047, -0.0000016970,0.0000016905,0.0000016836,0.0000016758,0.0000016710, -0.0000016708,0.0000016738,0.0000016781,0.0000016805,0.0000016803, -0.0000016790,0.0000016756,0.0000016650,0.0000016452,0.0000016221, -0.0000016042,0.0000015974,0.0000015975,0.0000016021,0.0000016088, -0.0000016133,0.0000016134,0.0000016087,0.0000015974,0.0000015842, -0.0000015794,0.0000015833,0.0000015936,0.0000016094,0.0000016253, -0.0000016410,0.0000016521,0.0000016560,0.0000016561,0.0000016541, -0.0000016520,0.0000016477,0.0000016351,0.0000016126,0.0000015941, -0.0000015880,0.0000015904,0.0000015976,0.0000016098,0.0000016226, -0.0000016327,0.0000016380,0.0000016382,0.0000016353,0.0000016320, -0.0000016267,0.0000016218,0.0000016178,0.0000016151,0.0000016135, -0.0000016130,0.0000016138,0.0000016152,0.0000016173,0.0000016201, -0.0000016234,0.0000016261,0.0000016219,0.0000016119,0.0000015944, -0.0000015879,0.0000015978,0.0000016067,0.0000015951,0.0000015635, -0.0000015550,0.0000015777,0.0000016083,0.0000016246,0.0000016297, -0.0000016310,0.0000016311,0.0000016305,0.0000016273,0.0000016206, -0.0000016152,0.0000016167,0.0000016202,0.0000016193,0.0000016181, -0.0000016190,0.0000016199,0.0000016229,0.0000016301,0.0000016374, -0.0000016369,0.0000016245,0.0000016461,0.0000017241,0.0000017704, -0.0000017603,0.0000017392,0.0000017202,0.0000017045,0.0000017011, -0.0000017086,0.0000017289,0.0000017479,0.0000017589,0.0000017658, -0.0000017712,0.0000017730,0.0000017738,0.0000017743,0.0000017747, -0.0000017742,0.0000017731,0.0000017727,0.0000017736,0.0000017758, -0.0000017790,0.0000017800,0.0000017825,0.0000017836,0.0000017833, -0.0000017822,0.0000017813,0.0000017795,0.0000017770,0.0000017741, -0.0000017703,0.0000017652,0.0000017592,0.0000017530,0.0000017483, -0.0000017451,0.0000017425,0.0000017390,0.0000017343,0.0000017292, -0.0000017249,0.0000017219,0.0000017206,0.0000017210,0.0000017230, -0.0000017273,0.0000017326,0.0000017392,0.0000017461,0.0000017531, -0.0000017598,0.0000017654,0.0000017694,0.0000017720,0.0000017734, -0.0000017735,0.0000017723,0.0000017704,0.0000017678,0.0000017641, -0.0000017583,0.0000017497,0.0000017374,0.0000017211,0.0000017018, -0.0000016773,0.0000016604,0.0000016487,0.0000016447,0.0000016520, -0.0000016685,0.0000016872,0.0000017032,0.0000017099,0.0000017112, -0.0000017152,0.0000017235,0.0000017157,0.0000017185,0.0000017296, -0.0000017351,0.0000017409,0.0000017514,0.0000017576,0.0000017660, -0.0000017813,0.0000017999,0.0000018259,0.0000018599,0.0000018962, -0.0000019284,0.0000019525,0.0000019689,0.0000019739,0.0000019706, -0.0000019636,0.0000019568,0.0000019502,0.0000019425,0.0000019359, -0.0000019334,0.0000019352,0.0000019401,0.0000019469,0.0000019568, -0.0000019684,0.0000019748,0.0000019735,0.0000019700,0.0000019646, -0.0000019598,0.0000019625,0.0000019750,0.0000019897,0.0000020002, -0.0000020068,0.0000020117,0.0000020136,0.0000020126,0.0000020088, -0.0000020039,0.0000019991,0.0000019952,0.0000019937,0.0000019944, -0.0000019975,0.0000020025,0.0000020078,0.0000020120,0.0000020141, -0.0000020153,0.0000020181,0.0000020241,0.0000020266,0.0000020242, -0.0000020220,0.0000020167,0.0000019984,0.0000019857,0.0000019856, -0.0000019736,0.0000019545,0.0000019314,0.0000018858,0.0000018449, -0.0000018305,0.0000018290,0.0000018222,0.0000018094,0.0000018141, -0.0000018381,0.0000018665,0.0000019010,0.0000019276,0.0000019286, -0.0000019067,0.0000018796,0.0000018593,0.0000018448,0.0000018340, -0.0000018316,0.0000018380,0.0000018493,0.0000018619,0.0000018756, -0.0000018906,0.0000019078,0.0000019234,0.0000019348,0.0000019420, -0.0000019448,0.0000019415,0.0000019357,0.0000019311,0.0000019300, -0.0000019308,0.0000019280,0.0000019192,0.0000019043,0.0000018852, -0.0000018668,0.0000018521,0.0000018514,0.0000018656,0.0000018908, -0.0000019136,0.0000019150,0.0000019011,0.0000018901,0.0000018875, -0.0000018860,0.0000018840,0.0000018834,0.0000018828,0.0000018802, -0.0000018750,0.0000018663,0.0000018540,0.0000018402,0.0000018280, -0.0000018194,0.0000018156,0.0000018206,0.0000018293,0.0000018348, -0.0000018389,0.0000018476,0.0000018572,0.0000018677,0.0000018769, -0.0000018827,0.0000018892,0.0000019023,0.0000019074,0.0000019025, -0.0000018921,0.0000018845,0.0000018829,0.0000018824,0.0000018796, -0.0000018756,0.0000018682,0.0000018630,0.0000018614,0.0000018522, -0.0000018464,0.0000018473,0.0000018583,0.0000018812,0.0000019010, -0.0000019143,0.0000019232,0.0000019128,0.0000018891,0.0000018813, -0.0000018839,0.0000018830,0.0000018785,0.0000018728,0.0000018665, -0.0000018571,0.0000018371,0.0000018129,0.0000017949,0.0000017788, -0.0000017655,0.0000017600,0.0000017607,0.0000017638,0.0000017660, -0.0000017654,0.0000017611,0.0000017561,0.0000017554,0.0000017580, -0.0000017608,0.0000017631,0.0000017650,0.0000017658,0.0000017656, -0.0000017667,0.0000017714,0.0000017768,0.0000017785,0.0000017758, -0.0000017688,0.0000017617,0.0000017524,0.0000017384,0.0000017205, -0.0000017026,0.0000016891,0.0000016786,0.0000016731,0.0000016661, -0.0000016580,0.0000016572,0.0000016557,0.0000016527,0.0000016527, -0.0000016527,0.0000016533,0.0000016561,0.0000016556,0.0000016501, -0.0000016470,0.0000016453,0.0000016403,0.0000016357,0.0000016319, -0.0000016229,0.0000016136,0.0000016094,0.0000016032,0.0000015982, -0.0000016020,0.0000016060,0.0000016012,0.0000015917,0.0000015862, -0.0000015884,0.0000016014,0.0000016149,0.0000016250,0.0000016410, -0.0000016562,0.0000016679,0.0000016746,0.0000016694,0.0000016595, -0.0000016573,0.0000016579,0.0000016713,0.0000016951,0.0000017017, -0.0000016972,0.0000016834,0.0000016691,0.0000016608,0.0000016522, -0.0000016420,0.0000016317,0.0000016233,0.0000016182,0.0000016166, -0.0000016179,0.0000016225,0.0000016284,0.0000016329,0.0000016383, -0.0000016460,0.0000016542,0.0000016613,0.0000016665,0.0000016696, -0.0000016705,0.0000016690,0.0000016665,0.0000016793,0.0000017274, -0.0000017697,0.0000017796,0.0000017773,0.0000017693,0.0000017468, -0.0000017164,0.0000016917,0.0000016751,0.0000016637,0.0000016573, -0.0000016544,0.0000016522,0.0000016479,0.0000016429,0.0000016399, -0.0000016410,0.0000016488,0.0000016629,0.0000016774,0.0000016875, -0.0000016948,0.0000017002,0.0000016994,0.0000016913,0.0000016826, -0.0000016751,0.0000016697,0.0000016635,0.0000016607,0.0000016827, -0.0000017335,0.0000017528,0.0000017504,0.0000017493,0.0000017520, -0.0000017573,0.0000017736,0.0000017898,0.0000018005,0.0000018092, -0.0000018163,0.0000018191,0.0000018144,0.0000018050,0.0000018028, -0.0000018070,0.0000018170,0.0000018280,0.0000018322,0.0000018170, -0.0000017885,0.0000017713,0.0000017445,0.0000017322,0.0000017535, -0.0000017515,0.0000017226,0.0000017143,0.0000017037,0.0000017146, -0.0000017220,0.0000017187,0.0000017102,0.0000017103,0.0000017175, -0.0000017266,0.0000017362,0.0000017464,0.0000017529,0.0000017569, -0.0000017585,0.0000017525,0.0000017622,0.0000017798,0.0000017837, -0.0000017851,0.0000017969,0.0000018097,0.0000018154,0.0000018254, -0.0000018361,0.0000018303,0.0000018115,0.0000018082,0.0000017786, -0.0000017375,0.0000017359,0.0000017337,0.0000017525,0.0000017680, -0.0000017589,0.0000017324,0.0000017103,0.0000017025,0.0000017061, -0.0000017148,0.0000017172,0.0000016960,0.0000016690,0.0000016664, -0.0000016881,0.0000017042,0.0000016961,0.0000016800,0.0000016759, -0.0000016762,0.0000016877,0.0000017201,0.0000017490,0.0000017582, -0.0000017616,0.0000017644,0.0000017647,0.0000017677,0.0000017764, -0.0000017845,0.0000017884,0.0000017909,0.0000017960,0.0000018044, -0.0000018080,0.0000017960,0.0000017767,0.0000017677,0.0000017601, -0.0000017434,0.0000017290,0.0000017296,0.0000017450,0.0000017606, -0.0000017635,0.0000017585,0.0000017571,0.0000017675,0.0000017817, -0.0000017780,0.0000017417,0.0000017007,0.0000016874,0.0000016959, -0.0000017128,0.0000017196,0.0000017377,0.0000017768,0.0000017921, -0.0000017858,0.0000017866,0.0000017904,0.0000017916,0.0000018291, -0.0000019126,0.0000019400,0.0000019200,0.0000019454,0.0000019835, -0.0000020021,0.0000020245,0.0000020346,0.0000020335,0.0000020333, -0.0000020340,0.0000020328,0.0000020308,0.0000020289,0.0000020284, -0.0000020298,0.0000020303,0.0000020298,0.0000020246,0.0000020149, -0.0000020033,0.0000019913,0.0000019851,0.0000019852,0.0000019899, -0.0000019962,0.0000020014,0.0000020056,0.0000020088,0.0000020121, -0.0000020189,0.0000020291,0.0000020388,0.0000020437,0.0000020417, -0.0000020341,0.0000020239,0.0000020109,0.0000019904,0.0000019645, -0.0000019479,0.0000019456,0.0000019608,0.0000019910,0.0000020181, -0.0000020310,0.0000020358,0.0000020414,0.0000020420,0.0000020327, -0.0000020247,0.0000020250,0.0000020300,0.0000020310,0.0000020175, -0.0000020020,0.0000019779,0.0000019199,0.0000018673,0.0000018463, -0.0000018477,0.0000018640,0.0000018819,0.0000018882,0.0000018841, -0.0000018742,0.0000018670,0.0000018651,0.0000018643,0.0000018716, -0.0000018876,0.0000019078,0.0000019196,0.0000019203,0.0000019002, -0.0000018675,0.0000018353,0.0000018156,0.0000018102,0.0000018119, -0.0000018119,0.0000018052,0.0000017933,0.0000017975,0.0000018196, -0.0000018258,0.0000018452,0.0000018138,0.0000018334,0.0000018892, -0.0000019371,0.0000019103,0.0000018836,0.0000019064,0.0000018009, -0.0000017430,0.0000017239,0.0000017119,0.0000017011,0.0000016938, -0.0000016891,0.0000016850,0.0000016791,0.0000016711,0.0000016661, -0.0000016664,0.0000016698,0.0000016723,0.0000016747,0.0000016764, -0.0000016759,0.0000016713,0.0000016603,0.0000016395,0.0000016138, -0.0000015962,0.0000015945,0.0000016008,0.0000016095,0.0000016150, -0.0000016167,0.0000016156,0.0000016111,0.0000015996,0.0000015847, -0.0000015755,0.0000015771,0.0000015889,0.0000016074,0.0000016264, -0.0000016447,0.0000016586,0.0000016669,0.0000016699,0.0000016659, -0.0000016585,0.0000016530,0.0000016431,0.0000016209,0.0000015965, -0.0000015867,0.0000015886,0.0000015989,0.0000016145,0.0000016304, -0.0000016401,0.0000016426,0.0000016411,0.0000016342,0.0000016262, -0.0000016177,0.0000016102,0.0000016038,0.0000015982,0.0000015936, -0.0000015898,0.0000015870,0.0000015853,0.0000015855,0.0000015877, -0.0000015920,0.0000015981,0.0000016060,0.0000016150,0.0000016226, -0.0000016196,0.0000016044,0.0000015878,0.0000015934,0.0000016044, -0.0000015941,0.0000015647,0.0000015558,0.0000015751,0.0000016031, -0.0000016195,0.0000016245,0.0000016244,0.0000016232,0.0000016205, -0.0000016172,0.0000016161,0.0000016177,0.0000016170,0.0000016145, -0.0000016138,0.0000016139,0.0000016138,0.0000016152,0.0000016218, -0.0000016319,0.0000016378,0.0000016289,0.0000016285,0.0000016851, -0.0000017502,0.0000017477,0.0000017162,0.0000017031,0.0000017013, -0.0000017010,0.0000017038,0.0000017186,0.0000017392,0.0000017549, -0.0000017649,0.0000017709,0.0000017721,0.0000017711,0.0000017703, -0.0000017711,0.0000017721,0.0000017728,0.0000017737,0.0000017747, -0.0000017751,0.0000017743,0.0000017720,0.0000017689,0.0000017656, -0.0000017623,0.0000017594,0.0000017571,0.0000017555,0.0000017543, -0.0000017533,0.0000017520,0.0000017500,0.0000017467,0.0000017428, -0.0000017391,0.0000017364,0.0000017344,0.0000017317,0.0000017272, -0.0000017221,0.0000017165,0.0000017115,0.0000017046,0.0000016992, -0.0000016956,0.0000016919,0.0000016916,0.0000016932,0.0000016980, -0.0000017041,0.0000017116,0.0000017192,0.0000017256,0.0000017305, -0.0000017333,0.0000017335,0.0000017305,0.0000017253,0.0000017179, -0.0000017087,0.0000016977,0.0000016828,0.0000016671,0.0000016584, -0.0000016500,0.0000016479,0.0000016540,0.0000016665,0.0000016868, -0.0000017098,0.0000017292,0.0000017454,0.0000017599,0.0000017729, -0.0000017882,0.0000018022,0.0000018178,0.0000018331,0.0000018472, -0.0000018591,0.0000018716,0.0000018808,0.0000018872,0.0000018933, -0.0000018989,0.0000019046,0.0000019099,0.0000019174,0.0000019229, -0.0000019320,0.0000019430,0.0000019522,0.0000019530,0.0000019488, -0.0000019417,0.0000019343,0.0000019269,0.0000019216,0.0000019190, -0.0000019212,0.0000019263,0.0000019329,0.0000019390,0.0000019445, -0.0000019535,0.0000019662,0.0000019749,0.0000019752,0.0000019699, -0.0000019624,0.0000019581,0.0000019639,0.0000019769,0.0000019889, -0.0000019969,0.0000020014,0.0000020050,0.0000020069,0.0000020058, -0.0000020025,0.0000019986,0.0000019956,0.0000019939,0.0000019942, -0.0000019963,0.0000019996,0.0000020023,0.0000020052,0.0000020085, -0.0000020119,0.0000020163,0.0000020211,0.0000020223,0.0000020192, -0.0000020167,0.0000020153,0.0000020021,0.0000019865,0.0000019871, -0.0000019858,0.0000019680,0.0000019437,0.0000018985,0.0000018487, -0.0000018335,0.0000018370,0.0000018362,0.0000018311,0.0000018339, -0.0000018464,0.0000018665,0.0000018996,0.0000019257,0.0000019232, -0.0000018916,0.0000018443,0.0000017966,0.0000017603,0.0000017372, -0.0000017266,0.0000017277,0.0000017380,0.0000017529,0.0000017703, -0.0000017920,0.0000018189,0.0000018514,0.0000018850,0.0000019156, -0.0000019404,0.0000019536,0.0000019540,0.0000019464,0.0000019403, -0.0000019404,0.0000019446,0.0000019466,0.0000019441,0.0000019360, -0.0000019199,0.0000018954,0.0000018659,0.0000018475,0.0000018517, -0.0000018819,0.0000019130,0.0000019175,0.0000019084,0.0000019012, -0.0000018989,0.0000018951,0.0000018917,0.0000018919,0.0000018949, -0.0000018997,0.0000019030,0.0000019023,0.0000018973,0.0000018886, -0.0000018774,0.0000018656,0.0000018575,0.0000018475,0.0000018354, -0.0000018256,0.0000018204,0.0000018194,0.0000018250,0.0000018321, -0.0000018401,0.0000018552,0.0000018796,0.0000019003,0.0000019012, -0.0000018974,0.0000018880,0.0000018830,0.0000018800,0.0000018767, -0.0000018731,0.0000018661,0.0000018626,0.0000018635,0.0000018574, -0.0000018516,0.0000018523,0.0000018617,0.0000018813,0.0000018984, -0.0000019105,0.0000019178,0.0000019061,0.0000018810,0.0000018749, -0.0000018792,0.0000018787,0.0000018751,0.0000018698,0.0000018651, -0.0000018555,0.0000018348,0.0000018104,0.0000017916,0.0000017747, -0.0000017622,0.0000017580,0.0000017583,0.0000017607,0.0000017630, -0.0000017626,0.0000017618,0.0000017640,0.0000017681,0.0000017704, -0.0000017709,0.0000017704,0.0000017693,0.0000017682,0.0000017689, -0.0000017731,0.0000017792,0.0000017828,0.0000017825,0.0000017779, -0.0000017710,0.0000017639,0.0000017530,0.0000017372,0.0000017177, -0.0000016991,0.0000016860,0.0000016772,0.0000016727,0.0000016651, -0.0000016579,0.0000016577,0.0000016563,0.0000016532,0.0000016522, -0.0000016523,0.0000016539,0.0000016551,0.0000016517,0.0000016469, -0.0000016453,0.0000016424,0.0000016379,0.0000016350,0.0000016305, -0.0000016204,0.0000016114,0.0000016054,0.0000015979,0.0000015961, -0.0000016026,0.0000016052,0.0000015988,0.0000015896,0.0000015859, -0.0000015910,0.0000016057,0.0000016169,0.0000016278,0.0000016445, -0.0000016589,0.0000016705,0.0000016726,0.0000016636,0.0000016576, -0.0000016578,0.0000016666,0.0000016908,0.0000017032,0.0000017011, -0.0000016901,0.0000016776,0.0000016735,0.0000016683,0.0000016573, -0.0000016433,0.0000016304,0.0000016220,0.0000016183,0.0000016167, -0.0000016172,0.0000016221,0.0000016297,0.0000016362,0.0000016417, -0.0000016478,0.0000016541,0.0000016596,0.0000016632,0.0000016642, -0.0000016631,0.0000016659,0.0000016976,0.0000017486,0.0000017771, -0.0000017788,0.0000017711,0.0000017489,0.0000017142,0.0000016860, -0.0000016709,0.0000016619,0.0000016558,0.0000016525,0.0000016505, -0.0000016481,0.0000016440,0.0000016401,0.0000016375,0.0000016373, -0.0000016415,0.0000016495,0.0000016586,0.0000016664,0.0000016733, -0.0000016784,0.0000016779,0.0000016723,0.0000016674,0.0000016633, -0.0000016615,0.0000016587,0.0000016569,0.0000016755,0.0000017258, -0.0000017517,0.0000017500,0.0000017480,0.0000017507,0.0000017556, -0.0000017700,0.0000017857,0.0000017966,0.0000018065,0.0000018138, -0.0000018151,0.0000018090,0.0000018001,0.0000017994,0.0000018060, -0.0000018173,0.0000018267,0.0000018252,0.0000017996,0.0000017778, -0.0000017604,0.0000017351,0.0000017375,0.0000017584,0.0000017378, -0.0000017187,0.0000017090,0.0000017065,0.0000017233,0.0000017248, -0.0000017151,0.0000017077,0.0000017077,0.0000017132,0.0000017221, -0.0000017309,0.0000017426,0.0000017523,0.0000017552,0.0000017576, -0.0000017527,0.0000017595,0.0000017792,0.0000017848,0.0000017874, -0.0000018006,0.0000018123,0.0000018199,0.0000018313,0.0000018369, -0.0000018249,0.0000018094,0.0000018038,0.0000017637,0.0000017340, -0.0000017357,0.0000017347,0.0000017566,0.0000017620,0.0000017456, -0.0000017210,0.0000017050,0.0000017038,0.0000017124,0.0000017211, -0.0000017108,0.0000016800,0.0000016640,0.0000016733,0.0000016952, -0.0000016998,0.0000016853,0.0000016773,0.0000016768,0.0000016802, -0.0000017053,0.0000017406,0.0000017577,0.0000017614,0.0000017632, -0.0000017656,0.0000017729,0.0000017826,0.0000017868,0.0000017872, -0.0000017883,0.0000017952,0.0000018059,0.0000018074,0.0000017914, -0.0000017738,0.0000017669,0.0000017561,0.0000017366,0.0000017268, -0.0000017327,0.0000017503,0.0000017617,0.0000017624,0.0000017590, -0.0000017586,0.0000017680,0.0000017814,0.0000017772,0.0000017407, -0.0000017002,0.0000016869,0.0000016920,0.0000017070,0.0000017165, -0.0000017259,0.0000017603,0.0000017875,0.0000017869,0.0000017854, -0.0000017910,0.0000017921,0.0000018096,0.0000018849,0.0000019396, -0.0000019238,0.0000019377,0.0000019773,0.0000019986,0.0000020228, -0.0000020352,0.0000020331,0.0000020311,0.0000020310,0.0000020297, -0.0000020279,0.0000020263,0.0000020254,0.0000020264,0.0000020292, -0.0000020331,0.0000020351,0.0000020339,0.0000020290,0.0000020183, -0.0000020032,0.0000019905,0.0000019839,0.0000019849,0.0000019885, -0.0000019937,0.0000020048,0.0000020183,0.0000020349,0.0000020468, -0.0000020491,0.0000020466,0.0000020385,0.0000020273,0.0000020127, -0.0000019923,0.0000019699,0.0000019563,0.0000019560,0.0000019730, -0.0000019994,0.0000020212,0.0000020323,0.0000020392,0.0000020459, -0.0000020441,0.0000020314,0.0000020237,0.0000020255,0.0000020335, -0.0000020345,0.0000020184,0.0000020022,0.0000019783,0.0000019228, -0.0000018742,0.0000018516,0.0000018438,0.0000018462,0.0000018545, -0.0000018625,0.0000018667,0.0000018676,0.0000018675,0.0000018688, -0.0000018760,0.0000018920,0.0000019118,0.0000019224,0.0000019223, -0.0000018993,0.0000018601,0.0000018256,0.0000018046,0.0000017962, -0.0000017969,0.0000018025,0.0000018077,0.0000018078,0.0000017968, -0.0000017927,0.0000018062,0.0000018255,0.0000018308,0.0000018398, -0.0000018077,0.0000018587,0.0000019179,0.0000019320,0.0000018887, -0.0000019017,0.0000018381,0.0000017383,0.0000017108,0.0000016986, -0.0000016904,0.0000016825,0.0000016750,0.0000016688,0.0000016636, -0.0000016607,0.0000016611,0.0000016653,0.0000016693,0.0000016716, -0.0000016717,0.0000016708,0.0000016694,0.0000016618,0.0000016412, -0.0000016129,0.0000015947,0.0000015938,0.0000016041,0.0000016141, -0.0000016181,0.0000016193,0.0000016206,0.0000016176,0.0000016049, -0.0000015865,0.0000015729,0.0000015712,0.0000015820,0.0000016034, -0.0000016282,0.0000016511,0.0000016686,0.0000016814,0.0000016874, -0.0000016837,0.0000016718,0.0000016597,0.0000016477,0.0000016295, -0.0000016039,0.0000015876,0.0000015876,0.0000015986,0.0000016167, -0.0000016341,0.0000016440,0.0000016441,0.0000016398,0.0000016320, -0.0000016218,0.0000016126,0.0000016046,0.0000015965,0.0000015871, -0.0000015772,0.0000015684,0.0000015618,0.0000015572,0.0000015545, -0.0000015534,0.0000015544,0.0000015580,0.0000015642,0.0000015725, -0.0000015825,0.0000015947,0.0000016098,0.0000016210,0.0000016144, -0.0000015927,0.0000015910,0.0000016048,0.0000015944,0.0000015669, -0.0000015523,0.0000015682,0.0000015946,0.0000016114,0.0000016184, -0.0000016199,0.0000016185,0.0000016171,0.0000016173,0.0000016170, -0.0000016151,0.0000016141,0.0000016142,0.0000016141,0.0000016129, -0.0000016126,0.0000016150,0.0000016239,0.0000016342,0.0000016350, -0.0000016258,0.0000016491,0.0000017183,0.0000017438,0.0000017169, -0.0000016956,0.0000016964,0.0000017010,0.0000017027,0.0000017090, -0.0000017255,0.0000017445,0.0000017591,0.0000017680,0.0000017709, -0.0000017700,0.0000017681,0.0000017674,0.0000017673,0.0000017665, -0.0000017649,0.0000017622,0.0000017581,0.0000017528,0.0000017471, -0.0000017418,0.0000017372,0.0000017337,0.0000017317,0.0000017314, -0.0000017322,0.0000017335,0.0000017344,0.0000017346,0.0000017341, -0.0000017323,0.0000017295,0.0000017262,0.0000017227,0.0000017207, -0.0000017191,0.0000017170,0.0000017145,0.0000017115,0.0000017074, -0.0000017025,0.0000016978,0.0000016914,0.0000016849,0.0000016794, -0.0000016740,0.0000016696,0.0000016684,0.0000016680,0.0000016678, -0.0000016694,0.0000016717,0.0000016734,0.0000016725,0.0000016682, -0.0000016622,0.0000016579,0.0000016524,0.0000016463,0.0000016485, -0.0000016484,0.0000016618,0.0000016785,0.0000017028,0.0000017308, -0.0000017613,0.0000017892,0.0000018154,0.0000018335,0.0000018477, -0.0000018631,0.0000018759,0.0000018878,0.0000018933,0.0000018944, -0.0000019042,0.0000019042,0.0000019054,0.0000019109,0.0000019134, -0.0000019146,0.0000019164,0.0000019181,0.0000019188,0.0000019178, -0.0000019184,0.0000019205,0.0000019230,0.0000019256,0.0000019255, -0.0000019225,0.0000019186,0.0000019153,0.0000019133,0.0000019142, -0.0000019165,0.0000019197,0.0000019247,0.0000019306,0.0000019367, -0.0000019419,0.0000019466,0.0000019541,0.0000019667,0.0000019758, -0.0000019757,0.0000019681,0.0000019589,0.0000019568,0.0000019643, -0.0000019756,0.0000019858,0.0000019917,0.0000019927,0.0000019923, -0.0000019910,0.0000019896,0.0000019877,0.0000019862,0.0000019863, -0.0000019877,0.0000019907,0.0000019950,0.0000019988,0.0000020023, -0.0000020064,0.0000020107,0.0000020149,0.0000020180,0.0000020177, -0.0000020141,0.0000020118,0.0000020112,0.0000020007,0.0000019853, -0.0000019852,0.0000019910,0.0000019803,0.0000019567,0.0000019225, -0.0000018716,0.0000018458,0.0000018482,0.0000018494,0.0000018450, -0.0000018452,0.0000018526,0.0000018697,0.0000019001,0.0000019233, -0.0000019191,0.0000018868,0.0000018321,0.0000017630,0.0000017051, -0.0000016760,0.0000016659,0.0000016649,0.0000016692,0.0000016781, -0.0000016884,0.0000017006,0.0000017187,0.0000017462,0.0000017849, -0.0000018302,0.0000018781,0.0000019236,0.0000019528,0.0000019596, -0.0000019597,0.0000019515,0.0000019485,0.0000019502,0.0000019523, -0.0000019523,0.0000019487,0.0000019387,0.0000019188,0.0000018867, -0.0000018564,0.0000018517,0.0000018778,0.0000019119,0.0000019215, -0.0000019162,0.0000019106,0.0000019047,0.0000018990,0.0000018981, -0.0000019005,0.0000019027,0.0000019041,0.0000019055,0.0000019077, -0.0000019105,0.0000019138,0.0000019171,0.0000019163,0.0000019098, -0.0000018975,0.0000018850,0.0000018748,0.0000018608,0.0000018498, -0.0000018379,0.0000018311,0.0000018275,0.0000018399,0.0000018592, -0.0000018763,0.0000018920,0.0000018954,0.0000018890,0.0000018787, -0.0000018718,0.0000018675,0.0000018623,0.0000018624,0.0000018650, -0.0000018615,0.0000018573,0.0000018578,0.0000018647,0.0000018807, -0.0000018955,0.0000019071,0.0000019136,0.0000018970,0.0000018718, -0.0000018691,0.0000018739,0.0000018734,0.0000018700,0.0000018663, -0.0000018638,0.0000018546,0.0000018331,0.0000018078,0.0000017878, -0.0000017710,0.0000017598,0.0000017555,0.0000017549,0.0000017557, -0.0000017565,0.0000017574,0.0000017614,0.0000017669,0.0000017702, -0.0000017710,0.0000017707,0.0000017698,0.0000017695,0.0000017708, -0.0000017754,0.0000017814,0.0000017856,0.0000017865,0.0000017844, -0.0000017785,0.0000017722,0.0000017646,0.0000017516,0.0000017343, -0.0000017139,0.0000016956,0.0000016840,0.0000016766,0.0000016723, -0.0000016640,0.0000016582,0.0000016584,0.0000016564,0.0000016529, -0.0000016523,0.0000016532,0.0000016541,0.0000016525,0.0000016479, -0.0000016453,0.0000016434,0.0000016406,0.0000016376,0.0000016352, -0.0000016291,0.0000016181,0.0000016083,0.0000016005,0.0000015941, -0.0000015959,0.0000016036,0.0000016039,0.0000015963,0.0000015876, -0.0000015859,0.0000015947,0.0000016088,0.0000016179,0.0000016306, -0.0000016474,0.0000016615,0.0000016714,0.0000016687,0.0000016592, -0.0000016575,0.0000016631,0.0000016842,0.0000017035,0.0000017034, -0.0000016960,0.0000016864,0.0000016842,0.0000016831,0.0000016758, -0.0000016634,0.0000016470,0.0000016303,0.0000016206,0.0000016173, -0.0000016153,0.0000016150,0.0000016209,0.0000016309,0.0000016387, -0.0000016441,0.0000016493,0.0000016541,0.0000016574,0.0000016587, -0.0000016620,0.0000016780,0.0000017212,0.0000017631,0.0000017783, -0.0000017694,0.0000017500,0.0000017169,0.0000016849,0.0000016677, -0.0000016601,0.0000016544,0.0000016502,0.0000016474,0.0000016450, -0.0000016425,0.0000016402,0.0000016382,0.0000016365,0.0000016360, -0.0000016385,0.0000016426,0.0000016466,0.0000016501,0.0000016539, -0.0000016570,0.0000016571,0.0000016546,0.0000016538,0.0000016534, -0.0000016555,0.0000016555,0.0000016538,0.0000016685,0.0000017165, -0.0000017503,0.0000017499,0.0000017469,0.0000017492,0.0000017539, -0.0000017657,0.0000017805,0.0000017920,0.0000018027,0.0000018103, -0.0000018104,0.0000018036,0.0000017969,0.0000017983,0.0000018075, -0.0000018196,0.0000018257,0.0000018125,0.0000017848,0.0000017699, -0.0000017482,0.0000017313,0.0000017479,0.0000017544,0.0000017255, -0.0000017160,0.0000017041,0.0000017158,0.0000017287,0.0000017252, -0.0000017122,0.0000017044,0.0000017032,0.0000017094,0.0000017179, -0.0000017255,0.0000017365,0.0000017493,0.0000017533,0.0000017554, -0.0000017531,0.0000017573,0.0000017783,0.0000017854,0.0000017901, -0.0000018027,0.0000018144,0.0000018248,0.0000018353,0.0000018349, -0.0000018181,0.0000018079,0.0000017968,0.0000017490,0.0000017351, -0.0000017333,0.0000017373,0.0000017574,0.0000017557,0.0000017341, -0.0000017135,0.0000017039,0.0000017086,0.0000017200,0.0000017217, -0.0000016980,0.0000016707,0.0000016654,0.0000016796,0.0000016966, -0.0000016921,0.0000016800,0.0000016750,0.0000016745,0.0000016908, -0.0000017281,0.0000017551,0.0000017616,0.0000017627,0.0000017688, -0.0000017797,0.0000017875,0.0000017877,0.0000017859,0.0000017873, -0.0000017964,0.0000018081,0.0000018061,0.0000017872,0.0000017723, -0.0000017666,0.0000017521,0.0000017316,0.0000017250,0.0000017360, -0.0000017537,0.0000017619,0.0000017618,0.0000017597,0.0000017595, -0.0000017681,0.0000017813,0.0000017763,0.0000017395,0.0000017002, -0.0000016861,0.0000016892,0.0000017000,0.0000017111,0.0000017171, -0.0000017412,0.0000017767,0.0000017866,0.0000017849,0.0000017895, -0.0000017931,0.0000017974,0.0000018553,0.0000019318,0.0000019282, -0.0000019308,0.0000019704,0.0000019952,0.0000020202,0.0000020356, -0.0000020338,0.0000020300,0.0000020291,0.0000020284,0.0000020265, -0.0000020242,0.0000020217,0.0000020207,0.0000020220,0.0000020248, -0.0000020281,0.0000020315,0.0000020343,0.0000020336,0.0000020292, -0.0000020191,0.0000020066,0.0000019969,0.0000019931,0.0000019963, -0.0000020082,0.0000020267,0.0000020421,0.0000020491,0.0000020491, -0.0000020427,0.0000020316,0.0000020173,0.0000020004,0.0000019835, -0.0000019747,0.0000019771,0.0000019916,0.0000020115,0.0000020257, -0.0000020341,0.0000020432,0.0000020505,0.0000020460,0.0000020314, -0.0000020234,0.0000020274,0.0000020361,0.0000020349,0.0000020180, -0.0000020022,0.0000019797,0.0000019271,0.0000018805,0.0000018608, -0.0000018492,0.0000018471,0.0000018532,0.0000018650,0.0000018740, -0.0000018769,0.0000018759,0.0000018783,0.0000018907,0.0000019121, -0.0000019279,0.0000019255,0.0000019025,0.0000018599,0.0000018187, -0.0000017947,0.0000017871,0.0000017864,0.0000017880,0.0000017922, -0.0000017989,0.0000018044,0.0000018011,0.0000017903,0.0000017967, -0.0000018189,0.0000018278,0.0000018396,0.0000018247,0.0000018192, -0.0000018856,0.0000019381,0.0000019111,0.0000018880,0.0000018842, -0.0000017603,0.0000017041,0.0000016922,0.0000016825,0.0000016711, -0.0000016611,0.0000016545,0.0000016545,0.0000016576,0.0000016602, -0.0000016650,0.0000016709,0.0000016728,0.0000016699,0.0000016659, -0.0000016607,0.0000016458,0.0000016177,0.0000015927,0.0000015910, -0.0000016055,0.0000016190,0.0000016223,0.0000016236,0.0000016270, -0.0000016253,0.0000016131,0.0000015917,0.0000015730,0.0000015682, -0.0000015772,0.0000015996,0.0000016266,0.0000016540,0.0000016756, -0.0000016914,0.0000017003,0.0000017010,0.0000016905,0.0000016744, -0.0000016549,0.0000016363,0.0000016141,0.0000015928,0.0000015878, -0.0000015975,0.0000016167,0.0000016353,0.0000016454,0.0000016459, -0.0000016391,0.0000016286,0.0000016183,0.0000016092,0.0000016004, -0.0000015892,0.0000015751,0.0000015597,0.0000015461,0.0000015364, -0.0000015302,0.0000015266,0.0000015247,0.0000015236,0.0000015231, -0.0000015238,0.0000015270,0.0000015346,0.0000015462,0.0000015595, -0.0000015728,0.0000015914,0.0000016133,0.0000016181,0.0000015994, -0.0000015912,0.0000016029,0.0000015943,0.0000015669,0.0000015514, -0.0000015602,0.0000015820,0.0000016003,0.0000016094,0.0000016142, -0.0000016173,0.0000016176,0.0000016179,0.0000016179,0.0000016177, -0.0000016158,0.0000016113,0.0000016074,0.0000016086,0.0000016109, -0.0000016159,0.0000016265,0.0000016357,0.0000016307,0.0000016309, -0.0000016760,0.0000017335,0.0000017346,0.0000017022,0.0000016928, -0.0000016991,0.0000017038,0.0000017053,0.0000017124,0.0000017275, -0.0000017444,0.0000017571,0.0000017629,0.0000017631,0.0000017602, -0.0000017567,0.0000017531,0.0000017489,0.0000017437,0.0000017381, -0.0000017326,0.0000017276,0.0000017235,0.0000017204,0.0000017182, -0.0000017168,0.0000017158,0.0000017146,0.0000017128,0.0000017099, -0.0000017060,0.0000017033,0.0000017024,0.0000017029,0.0000017023, -0.0000017008,0.0000016995,0.0000016969,0.0000016953,0.0000016942, -0.0000016929,0.0000016921,0.0000016915,0.0000016893,0.0000016872, -0.0000016873,0.0000016816,0.0000016754,0.0000016711,0.0000016666, -0.0000016620,0.0000016564,0.0000016513,0.0000016469,0.0000016440, -0.0000016435,0.0000016447,0.0000016441,0.0000016432,0.0000016480, -0.0000016565,0.0000016715,0.0000016958,0.0000017257,0.0000017595, -0.0000017952,0.0000018257,0.0000018465,0.0000018658,0.0000018769, -0.0000018774,0.0000018842,0.0000018844,0.0000018840,0.0000018819, -0.0000018813,0.0000018799,0.0000018801,0.0000018808,0.0000018815, -0.0000018826,0.0000018847,0.0000018883,0.0000018927,0.0000018974, -0.0000019019,0.0000019059,0.0000019085,0.0000019101,0.0000019113, -0.0000019117,0.0000019111,0.0000019101,0.0000019093,0.0000019093, -0.0000019107,0.0000019132,0.0000019159,0.0000019191,0.0000019230, -0.0000019279,0.0000019332,0.0000019382,0.0000019424,0.0000019471, -0.0000019557,0.0000019689,0.0000019769,0.0000019751,0.0000019645, -0.0000019558,0.0000019559,0.0000019630,0.0000019719,0.0000019804, -0.0000019855,0.0000019863,0.0000019842,0.0000019818,0.0000019795, -0.0000019782,0.0000019787,0.0000019807,0.0000019836,0.0000019881, -0.0000019934,0.0000019984,0.0000020033,0.0000020079,0.0000020113, -0.0000020125,0.0000020117,0.0000020097,0.0000020087,0.0000020061, -0.0000019946,0.0000019817,0.0000019833,0.0000019931,0.0000019885, -0.0000019651,0.0000019408,0.0000019016,0.0000018622,0.0000018544, -0.0000018574,0.0000018538,0.0000018517,0.0000018585,0.0000018780, -0.0000019069,0.0000019250,0.0000019181,0.0000018873,0.0000018365, -0.0000017647,0.0000016987,0.0000016681,0.0000016630,0.0000016639, -0.0000016658,0.0000016683,0.0000016710,0.0000016713,0.0000016696, -0.0000016745,0.0000016933,0.0000017277,0.0000017750,0.0000018329, -0.0000018940,0.0000019438,0.0000019720,0.0000019764,0.0000019697, -0.0000019656,0.0000019661,0.0000019677,0.0000019657,0.0000019596, -0.0000019481,0.0000019295,0.0000019019,0.0000018684,0.0000018562, -0.0000018813,0.0000019149,0.0000019244,0.0000019210,0.0000019125, -0.0000019035,0.0000019012,0.0000019034,0.0000019050,0.0000019052, -0.0000019050,0.0000019065,0.0000019106,0.0000019157,0.0000019203, -0.0000019226,0.0000019188,0.0000019118,0.0000019094,0.0000019097, -0.0000019092,0.0000019068,0.0000018936,0.0000018678,0.0000018407, -0.0000018310,0.0000018296,0.0000018386,0.0000018592,0.0000018865, -0.0000018963,0.0000018865,0.0000018718,0.0000018642,0.0000018603, -0.0000018629,0.0000018660,0.0000018643,0.0000018618,0.0000018621, -0.0000018673,0.0000018801,0.0000018936,0.0000019046,0.0000019081, -0.0000018867,0.0000018635,0.0000018647,0.0000018678,0.0000018669, -0.0000018638,0.0000018626,0.0000018626,0.0000018536,0.0000018310, -0.0000018044,0.0000017844,0.0000017692,0.0000017592,0.0000017538, -0.0000017511,0.0000017496,0.0000017500,0.0000017543,0.0000017611, -0.0000017666,0.0000017691,0.0000017694,0.0000017694,0.0000017700, -0.0000017726,0.0000017780,0.0000017840,0.0000017880,0.0000017896, -0.0000017888,0.0000017848,0.0000017786,0.0000017726,0.0000017636, -0.0000017486,0.0000017307,0.0000017099,0.0000016933,0.0000016830, -0.0000016766,0.0000016719,0.0000016631,0.0000016583,0.0000016590, -0.0000016562,0.0000016535,0.0000016539,0.0000016539,0.0000016524, -0.0000016489,0.0000016461,0.0000016442,0.0000016425,0.0000016412, -0.0000016392,0.0000016355,0.0000016276,0.0000016157,0.0000016045, -0.0000015965,0.0000015922,0.0000015971,0.0000016039,0.0000016021, -0.0000015936,0.0000015863,0.0000015876,0.0000015986,0.0000016101, -0.0000016187,0.0000016335,0.0000016498,0.0000016643,0.0000016707, -0.0000016637,0.0000016575,0.0000016605,0.0000016779,0.0000017006, -0.0000017047,0.0000016999,0.0000016930,0.0000016894,0.0000016880, -0.0000016812,0.0000016743,0.0000016656,0.0000016510,0.0000016328, -0.0000016205,0.0000016162,0.0000016132,0.0000016128,0.0000016197, -0.0000016316,0.0000016414,0.0000016478,0.0000016533,0.0000016573, -0.0000016612,0.0000016714,0.0000016989,0.0000017391,0.0000017671, -0.0000017745,0.0000017454,0.0000017183,0.0000016878,0.0000016673, -0.0000016583,0.0000016528,0.0000016480,0.0000016447,0.0000016418, -0.0000016385,0.0000016361,0.0000016359,0.0000016359,0.0000016346, -0.0000016334,0.0000016353,0.0000016389,0.0000016411,0.0000016417, -0.0000016415,0.0000016412,0.0000016407,0.0000016408,0.0000016433, -0.0000016461,0.0000016516,0.0000016539,0.0000016521,0.0000016624, -0.0000017059,0.0000017460,0.0000017502,0.0000017465,0.0000017481, -0.0000017530,0.0000017622,0.0000017758,0.0000017874,0.0000017983, -0.0000018052,0.0000018047,0.0000017981,0.0000017952,0.0000017996, -0.0000018106,0.0000018210,0.0000018195,0.0000017943,0.0000017738, -0.0000017604,0.0000017367,0.0000017336,0.0000017553,0.0000017411, -0.0000017195,0.0000017091,0.0000017051,0.0000017262,0.0000017319, -0.0000017239,0.0000017095,0.0000016983,0.0000016979,0.0000017057, -0.0000017139,0.0000017205,0.0000017307,0.0000017445,0.0000017513, -0.0000017535,0.0000017528,0.0000017552,0.0000017763,0.0000017870, -0.0000017927,0.0000018034,0.0000018160,0.0000018295,0.0000018363, -0.0000018315,0.0000018108,0.0000018062,0.0000017881,0.0000017374, -0.0000017342,0.0000017312,0.0000017408,0.0000017572,0.0000017468, -0.0000017250,0.0000017094,0.0000017066,0.0000017158,0.0000017254, -0.0000017147,0.0000016862,0.0000016670,0.0000016663,0.0000016860, -0.0000016953,0.0000016859,0.0000016741,0.0000016694,0.0000016771, -0.0000017115,0.0000017482,0.0000017616,0.0000017637,0.0000017725, -0.0000017859,0.0000017910,0.0000017884,0.0000017856,0.0000017877, -0.0000017995,0.0000018116,0.0000018056,0.0000017849,0.0000017722, -0.0000017664,0.0000017490,0.0000017289,0.0000017254,0.0000017390, -0.0000017546,0.0000017606,0.0000017610,0.0000017599,0.0000017595, -0.0000017679,0.0000017815,0.0000017751,0.0000017379,0.0000017006, -0.0000016857,0.0000016869,0.0000016944,0.0000017030,0.0000017095, -0.0000017243,0.0000017598,0.0000017829,0.0000017844,0.0000017869, -0.0000017931,0.0000017945,0.0000018307,0.0000019157,0.0000019312, -0.0000019271,0.0000019619,0.0000019915,0.0000020156,0.0000020350, -0.0000020359,0.0000020316,0.0000020308,0.0000020307,0.0000020297, -0.0000020268,0.0000020232,0.0000020209,0.0000020202,0.0000020206, -0.0000020218,0.0000020243,0.0000020281,0.0000020322,0.0000020345, -0.0000020346,0.0000020320,0.0000020259,0.0000020203,0.0000020187, -0.0000020239,0.0000020342,0.0000020421,0.0000020447,0.0000020430, -0.0000020361,0.0000020262,0.0000020147,0.0000020046,0.0000020001, -0.0000020019,0.0000020108,0.0000020229,0.0000020312,0.0000020376, -0.0000020474,0.0000020536,0.0000020471,0.0000020330,0.0000020248, -0.0000020282,0.0000020382,0.0000020337,0.0000020161,0.0000020012, -0.0000019800,0.0000019306,0.0000018862,0.0000018725,0.0000018643, -0.0000018588,0.0000018654,0.0000018777,0.0000018849,0.0000018846, -0.0000018830,0.0000018897,0.0000019071,0.0000019267,0.0000019326, -0.0000019128,0.0000018685,0.0000018222,0.0000017928,0.0000017813, -0.0000017825,0.0000017840,0.0000017850,0.0000017872,0.0000017910, -0.0000017967,0.0000017994,0.0000017923,0.0000017910,0.0000018058, -0.0000018270,0.0000018302,0.0000018436,0.0000018125,0.0000018424, -0.0000019126,0.0000019356,0.0000018933,0.0000018933,0.0000018216, -0.0000017098,0.0000016878,0.0000016757,0.0000016592,0.0000016532, -0.0000016515,0.0000016519,0.0000016562,0.0000016619,0.0000016672, -0.0000016733,0.0000016747,0.0000016698,0.0000016619,0.0000016500, -0.0000016254,0.0000015959,0.0000015854,0.0000015967,0.0000016166, -0.0000016260,0.0000016284,0.0000016327,0.0000016332,0.0000016227, -0.0000015987,0.0000015769,0.0000015692,0.0000015747,0.0000015954, -0.0000016241,0.0000016542,0.0000016768,0.0000016923,0.0000016997, -0.0000017038,0.0000017043,0.0000016952,0.0000016732,0.0000016468, -0.0000016241,0.0000016028,0.0000015930,0.0000015963,0.0000016152, -0.0000016357,0.0000016466,0.0000016463,0.0000016382,0.0000016261, -0.0000016144,0.0000016049,0.0000015950,0.0000015807,0.0000015623, -0.0000015440,0.0000015297,0.0000015204,0.0000015155,0.0000015135, -0.0000015133,0.0000015141,0.0000015144,0.0000015142,0.0000015132, -0.0000015115,0.0000015097,0.0000015133,0.0000015226,0.0000015378, -0.0000015537,0.0000015727,0.0000016007,0.0000016177,0.0000016054, -0.0000015926,0.0000016005,0.0000015943,0.0000015677,0.0000015539, -0.0000015551,0.0000015686,0.0000015848,0.0000015976,0.0000016047, -0.0000016083,0.0000016112,0.0000016119,0.0000016089,0.0000016000, -0.0000015891,0.0000015841,0.0000015886,0.0000016005,0.0000016101, -0.0000016183,0.0000016293,0.0000016346,0.0000016292,0.0000016390, -0.0000017005,0.0000017419,0.0000017246,0.0000016955,0.0000016935, -0.0000017028,0.0000017064,0.0000017065,0.0000017114,0.0000017217, -0.0000017324,0.0000017388,0.0000017399,0.0000017373,0.0000017327, -0.0000017276,0.0000017228,0.0000017184,0.0000017149,0.0000017130, -0.0000017123,0.0000017123,0.0000017116,0.0000017091,0.0000017047, -0.0000017005,0.0000016988,0.0000017015,0.0000016997,0.0000017019, -0.0000017092,0.0000017180,0.0000017264,0.0000017322,0.0000017366, -0.0000017388,0.0000017388,0.0000017386,0.0000017375,0.0000017356, -0.0000017335,0.0000017302,0.0000017250,0.0000017204,0.0000017151, -0.0000017053,0.0000016947,0.0000016862,0.0000016794,0.0000016729, -0.0000016673,0.0000016616,0.0000016568,0.0000016555,0.0000016578, -0.0000016636,0.0000016739,0.0000016899,0.0000017141,0.0000017452, -0.0000017796,0.0000018156,0.0000018476,0.0000018656,0.0000018816, -0.0000018786,0.0000018772,0.0000018718,0.0000018622,0.0000018547, -0.0000018473,0.0000018424,0.0000018384,0.0000018367,0.0000018374, -0.0000018404,0.0000018454,0.0000018521,0.0000018588,0.0000018643, -0.0000018689,0.0000018736,0.0000018787,0.0000018842,0.0000018897, -0.0000018947,0.0000018991,0.0000019023,0.0000019042,0.0000019052, -0.0000019059,0.0000019066,0.0000019074,0.0000019084,0.0000019098, -0.0000019115,0.0000019136,0.0000019161,0.0000019199,0.0000019253, -0.0000019319,0.0000019379,0.0000019419,0.0000019471,0.0000019579, -0.0000019722,0.0000019785,0.0000019723,0.0000019607,0.0000019539, -0.0000019543,0.0000019605,0.0000019680,0.0000019755,0.0000019812, -0.0000019834,0.0000019832,0.0000019827,0.0000019823,0.0000019825, -0.0000019839,0.0000019853,0.0000019871,0.0000019904,0.0000019946, -0.0000019988,0.0000020021,0.0000020045,0.0000020057,0.0000020056, -0.0000020048,0.0000020029,0.0000019964,0.0000019848,0.0000019781, -0.0000019831,0.0000019936,0.0000019917,0.0000019694,0.0000019476, -0.0000019255,0.0000018849,0.0000018594,0.0000018594,0.0000018602, -0.0000018608,0.0000018709,0.0000018934,0.0000019187,0.0000019294, -0.0000019181,0.0000018869,0.0000018428,0.0000017795,0.0000017136, -0.0000016789,0.0000016745,0.0000016753,0.0000016743,0.0000016738, -0.0000016725,0.0000016710,0.0000016667,0.0000016592,0.0000016541, -0.0000016632,0.0000016882,0.0000017297,0.0000017880,0.0000018601, -0.0000019281,0.0000019734,0.0000019886,0.0000019922,0.0000019934, -0.0000019956,0.0000019948,0.0000019879,0.0000019745,0.0000019564, -0.0000019376,0.0000019123,0.0000018796,0.0000018663,0.0000018891, -0.0000019144,0.0000019233,0.0000019196,0.0000019111,0.0000019082, -0.0000019095,0.0000019121,0.0000019144,0.0000019153,0.0000019163, -0.0000019179,0.0000019204,0.0000019233,0.0000019233,0.0000019177, -0.0000019109,0.0000019098,0.0000019113,0.0000019166,0.0000019238, -0.0000019250,0.0000019130,0.0000018873,0.0000018523,0.0000018266, -0.0000018234,0.0000018315,0.0000018578,0.0000018888,0.0000018962, -0.0000018813,0.0000018663,0.0000018615,0.0000018641,0.0000018670, -0.0000018663,0.0000018648,0.0000018657,0.0000018699,0.0000018807, -0.0000018936,0.0000019040,0.0000019028,0.0000018764,0.0000018588, -0.0000018606,0.0000018622,0.0000018606,0.0000018578,0.0000018590, -0.0000018611,0.0000018528,0.0000018286,0.0000018010,0.0000017819, -0.0000017693,0.0000017600,0.0000017532,0.0000017491,0.0000017479, -0.0000017503,0.0000017567,0.0000017633,0.0000017672,0.0000017684, -0.0000017690,0.0000017709,0.0000017747,0.0000017807,0.0000017870, -0.0000017906,0.0000017922,0.0000017923,0.0000017900,0.0000017849, -0.0000017784,0.0000017721,0.0000017608,0.0000017450,0.0000017272, -0.0000017064,0.0000016916,0.0000016825,0.0000016766,0.0000016714, -0.0000016625,0.0000016592,0.0000016592,0.0000016566,0.0000016551, -0.0000016553,0.0000016529,0.0000016491,0.0000016467,0.0000016452, -0.0000016439,0.0000016438,0.0000016440,0.0000016412,0.0000016352, -0.0000016261,0.0000016124,0.0000016007,0.0000015933,0.0000015913, -0.0000015989,0.0000016035,0.0000015997,0.0000015911,0.0000015866, -0.0000015907,0.0000016017,0.0000016107,0.0000016205,0.0000016368, -0.0000016526,0.0000016668,0.0000016685,0.0000016592,0.0000016583, -0.0000016724,0.0000016960,0.0000017049,0.0000017026,0.0000016975, -0.0000016932,0.0000016888,0.0000016796,0.0000016729,0.0000016696, -0.0000016647,0.0000016547,0.0000016380,0.0000016232,0.0000016164, -0.0000016130,0.0000016126,0.0000016194,0.0000016330,0.0000016456, -0.0000016543,0.0000016618,0.0000016699,0.0000016847,0.0000017105, -0.0000017405,0.0000017583,0.0000017589,0.0000017141,0.0000016907, -0.0000016704,0.0000016584,0.0000016518,0.0000016464,0.0000016427, -0.0000016397,0.0000016357,0.0000016316,0.0000016299,0.0000016306, -0.0000016311,0.0000016300,0.0000016284,0.0000016303,0.0000016348, -0.0000016380,0.0000016381,0.0000016358,0.0000016326,0.0000016310, -0.0000016326,0.0000016372,0.0000016420,0.0000016495,0.0000016535, -0.0000016519,0.0000016573,0.0000016947,0.0000017396,0.0000017500, -0.0000017471,0.0000017477,0.0000017533,0.0000017613,0.0000017728, -0.0000017841,0.0000017945,0.0000017996,0.0000017979,0.0000017932, -0.0000017941,0.0000018020,0.0000018131,0.0000018181,0.0000018019, -0.0000017760,0.0000017643,0.0000017469,0.0000017290,0.0000017418, -0.0000017530,0.0000017264,0.0000017157,0.0000017015,0.0000017144, -0.0000017337,0.0000017341,0.0000017200,0.0000017013,0.0000016891, -0.0000016913,0.0000017021,0.0000017107,0.0000017158,0.0000017249, -0.0000017396,0.0000017498,0.0000017521,0.0000017525,0.0000017541, -0.0000017743,0.0000017887,0.0000017946,0.0000018036,0.0000018179, -0.0000018326,0.0000018356,0.0000018267,0.0000018064,0.0000018040, -0.0000017750,0.0000017301,0.0000017342,0.0000017300,0.0000017438, -0.0000017529,0.0000017368,0.0000017191,0.0000017088,0.0000017121, -0.0000017236,0.0000017259,0.0000017039,0.0000016787,0.0000016658, -0.0000016715,0.0000016909,0.0000016922,0.0000016784,0.0000016676, -0.0000016674,0.0000016926,0.0000017347,0.0000017591,0.0000017648, -0.0000017750,0.0000017898,0.0000017945,0.0000017899,0.0000017865, -0.0000017902,0.0000018040,0.0000018136,0.0000018057,0.0000017854, -0.0000017742,0.0000017668,0.0000017477,0.0000017289,0.0000017274, -0.0000017414,0.0000017541,0.0000017581,0.0000017597,0.0000017597, -0.0000017593,0.0000017679,0.0000017815,0.0000017733,0.0000017355, -0.0000017008,0.0000016859,0.0000016851,0.0000016906,0.0000016953, -0.0000017011,0.0000017111,0.0000017397,0.0000017726,0.0000017824, -0.0000017845,0.0000017918,0.0000017939,0.0000018130,0.0000018919, -0.0000019343,0.0000019239,0.0000019521,0.0000019860,0.0000020088, -0.0000020322,0.0000020391,0.0000020375,0.0000020370,0.0000020376, -0.0000020367,0.0000020336,0.0000020288,0.0000020250,0.0000020221, -0.0000020206,0.0000020207,0.0000020223,0.0000020255,0.0000020290, -0.0000020320,0.0000020341,0.0000020368,0.0000020384,0.0000020391, -0.0000020390,0.0000020385,0.0000020395,0.0000020402,0.0000020397, -0.0000020371,0.0000020325,0.0000020271,0.0000020228,0.0000020205, -0.0000020210,0.0000020262,0.0000020315,0.0000020364,0.0000020444, -0.0000020546,0.0000020567,0.0000020471,0.0000020356,0.0000020293, -0.0000020304,0.0000020366,0.0000020289,0.0000020122,0.0000019986, -0.0000019795,0.0000019353,0.0000018909,0.0000018839,0.0000018858, -0.0000018841,0.0000018861,0.0000018917,0.0000018918,0.0000018872, -0.0000018895,0.0000019033,0.0000019227,0.0000019318,0.0000019229, -0.0000018866,0.0000018366,0.0000017979,0.0000017808,0.0000017798, -0.0000017812,0.0000017852,0.0000017879,0.0000017884,0.0000017893, -0.0000017912,0.0000017949,0.0000017934,0.0000017880,0.0000017959, -0.0000018196,0.0000018305,0.0000018350,0.0000018355,0.0000018093, -0.0000018733,0.0000019347,0.0000019164,0.0000018893,0.0000018751, -0.0000017521,0.0000016858,0.0000016735,0.0000016535,0.0000016502, -0.0000016511,0.0000016514,0.0000016542,0.0000016632,0.0000016709, -0.0000016739,0.0000016743,0.0000016703,0.0000016584,0.0000016354, -0.0000016021,0.0000015788,0.0000015828,0.0000016050,0.0000016218, -0.0000016272,0.0000016332,0.0000016374,0.0000016310,0.0000016076, -0.0000015821,0.0000015714,0.0000015737,0.0000015892,0.0000016173, -0.0000016504,0.0000016752,0.0000016901,0.0000016952,0.0000016984, -0.0000017034,0.0000017063,0.0000016977,0.0000016704,0.0000016394, -0.0000016162,0.0000016017,0.0000015972,0.0000016125,0.0000016346, -0.0000016480,0.0000016484,0.0000016392,0.0000016253,0.0000016114, -0.0000016000,0.0000015889,0.0000015735,0.0000015532,0.0000015331, -0.0000015188,0.0000015112,0.0000015082,0.0000015080,0.0000015103, -0.0000015133,0.0000015166,0.0000015189,0.0000015198,0.0000015193, -0.0000015169,0.0000015126,0.0000015085,0.0000015077,0.0000015090, -0.0000015201,0.0000015370,0.0000015566,0.0000015866,0.0000016152, -0.0000016122,0.0000015945,0.0000015959,0.0000015927,0.0000015705, -0.0000015526,0.0000015504,0.0000015573,0.0000015695,0.0000015821, -0.0000015912,0.0000015947,0.0000015931,0.0000015878,0.0000015819, -0.0000015779,0.0000015756,0.0000015752,0.0000015820,0.0000015976, -0.0000016110,0.0000016214,0.0000016315,0.0000016322,0.0000016251, -0.0000016538,0.0000017186,0.0000017386,0.0000017142,0.0000016936, -0.0000016954,0.0000017029,0.0000017060,0.0000017053,0.0000017058, -0.0000017085,0.0000017108,0.0000017114,0.0000017101,0.0000017075, -0.0000017049,0.0000017039,0.0000017042,0.0000017051,0.0000017059, -0.0000017050,0.0000017023,0.0000016982,0.0000016940,0.0000016992, -0.0000017079,0.0000017247,0.0000017424,0.0000017624,0.0000017812, -0.0000017937,0.0000018026,0.0000018079,0.0000018108,0.0000018148, -0.0000018197,0.0000018226,0.0000018240,0.0000018237,0.0000018218, -0.0000018189,0.0000018169,0.0000018141,0.0000018099,0.0000018024, -0.0000017925,0.0000017826,0.0000017709,0.0000017592,0.0000017489, -0.0000017405,0.0000017343,0.0000017316,0.0000017342,0.0000017428, -0.0000017575,0.0000017762,0.0000018025,0.0000018294,0.0000018577, -0.0000018742,0.0000018774,0.0000018827,0.0000018701,0.0000018589, -0.0000018438,0.0000018316,0.0000018232,0.0000018174,0.0000018154, -0.0000018145,0.0000018145,0.0000018146,0.0000018150,0.0000018161, -0.0000018189,0.0000018248,0.0000018339,0.0000018448,0.0000018545, -0.0000018616,0.0000018670,0.0000018722,0.0000018774,0.0000018822, -0.0000018865,0.0000018902,0.0000018934,0.0000018960,0.0000018981, -0.0000018996,0.0000019007,0.0000019011,0.0000019009,0.0000019006, -0.0000019008,0.0000019021,0.0000019053,0.0000019103,0.0000019179, -0.0000019277,0.0000019364,0.0000019412,0.0000019473,0.0000019603, -0.0000019747,0.0000019773,0.0000019686,0.0000019575,0.0000019521, -0.0000019530,0.0000019598,0.0000019670,0.0000019729,0.0000019768, -0.0000019782,0.0000019785,0.0000019782,0.0000019787,0.0000019808, -0.0000019833,0.0000019852,0.0000019873,0.0000019898,0.0000019924, -0.0000019941,0.0000019952,0.0000019959,0.0000019955,0.0000019931, -0.0000019883,0.0000019814,0.0000019761,0.0000019784,0.0000019868, -0.0000019931,0.0000019881,0.0000019684,0.0000019489,0.0000019374, -0.0000019095,0.0000018723,0.0000018598,0.0000018641,0.0000018732, -0.0000018899,0.0000019116,0.0000019283,0.0000019295,0.0000019133, -0.0000018820,0.0000018457,0.0000017946,0.0000017330,0.0000016903, -0.0000016779,0.0000016757,0.0000016727,0.0000016690,0.0000016679, -0.0000016684,0.0000016671,0.0000016605,0.0000016525,0.0000016476, -0.0000016495,0.0000016651,0.0000016972,0.0000017509,0.0000018243, -0.0000019030,0.0000019640,0.0000019966,0.0000020123,0.0000020191, -0.0000020186,0.0000020104,0.0000020003,0.0000019863,0.0000019662, -0.0000019427,0.0000019157,0.0000018880,0.0000018797,0.0000018937, -0.0000019116,0.0000019198,0.0000019181,0.0000019181,0.0000019213, -0.0000019274,0.0000019332,0.0000019353,0.0000019349,0.0000019330, -0.0000019306,0.0000019290,0.0000019261,0.0000019200,0.0000019155, -0.0000019167,0.0000019183,0.0000019237,0.0000019296,0.0000019320, -0.0000019293,0.0000019175,0.0000018905,0.0000018525,0.0000018258, -0.0000018239,0.0000018354,0.0000018649,0.0000018957,0.0000018934, -0.0000018769,0.0000018679,0.0000018671,0.0000018689,0.0000018681, -0.0000018672,0.0000018689,0.0000018731,0.0000018834,0.0000018954, -0.0000019013,0.0000018944,0.0000018674,0.0000018544,0.0000018563, -0.0000018579,0.0000018568,0.0000018543,0.0000018567,0.0000018601, -0.0000018515,0.0000018264,0.0000017990,0.0000017815,0.0000017707, -0.0000017616,0.0000017545,0.0000017507,0.0000017518,0.0000017575, -0.0000017640,0.0000017680,0.0000017695,0.0000017705,0.0000017730, -0.0000017775,0.0000017840,0.0000017904,0.0000017936,0.0000017951, -0.0000017961,0.0000017956,0.0000017918,0.0000017842,0.0000017773, -0.0000017700,0.0000017564,0.0000017419,0.0000017235,0.0000017028, -0.0000016904,0.0000016820,0.0000016767,0.0000016711,0.0000016626, -0.0000016597,0.0000016601,0.0000016579,0.0000016569,0.0000016549, -0.0000016502,0.0000016468,0.0000016456,0.0000016450,0.0000016452, -0.0000016475,0.0000016474,0.0000016420,0.0000016348,0.0000016238, -0.0000016080,0.0000015970,0.0000015905,0.0000015915,0.0000016007, -0.0000016024,0.0000015970,0.0000015895,0.0000015876,0.0000015938, -0.0000016033,0.0000016112,0.0000016232,0.0000016399,0.0000016558, -0.0000016684,0.0000016648,0.0000016581,0.0000016672,0.0000016910, -0.0000017056,0.0000017052,0.0000017009,0.0000016975,0.0000016913, -0.0000016798,0.0000016706,0.0000016678,0.0000016654,0.0000016633, -0.0000016573,0.0000016436,0.0000016272,0.0000016182,0.0000016151, -0.0000016144,0.0000016208,0.0000016357,0.0000016512,0.0000016624, -0.0000016724,0.0000016861,0.0000017067,0.0000017259,0.0000017337, -0.0000017298,0.0000016892,0.0000016743,0.0000016615,0.0000016524, -0.0000016460,0.0000016413,0.0000016388,0.0000016349,0.0000016286, -0.0000016240,0.0000016232,0.0000016236,0.0000016233,0.0000016211, -0.0000016194,0.0000016221,0.0000016283,0.0000016333,0.0000016346, -0.0000016325,0.0000016284,0.0000016266,0.0000016300,0.0000016358, -0.0000016405,0.0000016485,0.0000016534,0.0000016514,0.0000016536, -0.0000016836,0.0000017314,0.0000017513,0.0000017495,0.0000017483, -0.0000017544,0.0000017623,0.0000017718,0.0000017822,0.0000017908, -0.0000017935,0.0000017908,0.0000017893,0.0000017946,0.0000018047, -0.0000018125,0.0000018055,0.0000017792,0.0000017633,0.0000017531, -0.0000017325,0.0000017279,0.0000017495,0.0000017398,0.0000017189, -0.0000017071,0.0000017016,0.0000017277,0.0000017393,0.0000017324, -0.0000017096,0.0000016877,0.0000016781,0.0000016829,0.0000016968, -0.0000017079,0.0000017122,0.0000017187,0.0000017333,0.0000017477, -0.0000017521,0.0000017536,0.0000017550,0.0000017727,0.0000017890, -0.0000017956,0.0000018046,0.0000018210,0.0000018328,0.0000018324, -0.0000018197,0.0000018025,0.0000017997,0.0000017584,0.0000017257, -0.0000017331,0.0000017290,0.0000017433,0.0000017446,0.0000017287, -0.0000017149,0.0000017105,0.0000017188,0.0000017289,0.0000017200, -0.0000016936,0.0000016743,0.0000016661,0.0000016775,0.0000016917, -0.0000016860,0.0000016717,0.0000016656,0.0000016760,0.0000017147, -0.0000017512,0.0000017645,0.0000017756,0.0000017911,0.0000017962, -0.0000017929,0.0000017904,0.0000017954,0.0000018089,0.0000018152, -0.0000018061,0.0000017874,0.0000017778,0.0000017686,0.0000017483, -0.0000017319,0.0000017312,0.0000017432,0.0000017523,0.0000017549, -0.0000017579,0.0000017591,0.0000017588,0.0000017677,0.0000017808, -0.0000017706,0.0000017328,0.0000017008,0.0000016872,0.0000016853, -0.0000016885,0.0000016907,0.0000016928,0.0000017002,0.0000017207, -0.0000017560,0.0000017777,0.0000017828,0.0000017892,0.0000017943, -0.0000018004,0.0000018643,0.0000019335,0.0000019248,0.0000019436, -0.0000019787,0.0000020012,0.0000020268,0.0000020404,0.0000020434, -0.0000020435,0.0000020433,0.0000020410,0.0000020384,0.0000020345, -0.0000020314,0.0000020278,0.0000020235,0.0000020212,0.0000020221, -0.0000020265,0.0000020315,0.0000020344,0.0000020353,0.0000020366, -0.0000020376,0.0000020382,0.0000020387,0.0000020388,0.0000020392, -0.0000020389,0.0000020377,0.0000020358,0.0000020337,0.0000020323, -0.0000020323,0.0000020335,0.0000020352,0.0000020372,0.0000020427, -0.0000020539,0.0000020630,0.0000020591,0.0000020470,0.0000020378, -0.0000020341,0.0000020350,0.0000020353,0.0000020230,0.0000020064, -0.0000019937,0.0000019768,0.0000019402,0.0000018947,0.0000018874, -0.0000018998,0.0000019063,0.0000019046,0.0000018983,0.0000018916, -0.0000018916,0.0000019024,0.0000019192,0.0000019288,0.0000019285, -0.0000019077,0.0000018596,0.0000018113,0.0000017849,0.0000017791, -0.0000017797,0.0000017844,0.0000017915,0.0000017964,0.0000017972, -0.0000017950,0.0000017920,0.0000017915,0.0000017919,0.0000017873, -0.0000017900,0.0000018050,0.0000018287,0.0000018307,0.0000018407, -0.0000018215,0.0000018229,0.0000019036,0.0000019404,0.0000018985, -0.0000018860,0.0000018359,0.0000017064,0.0000016728,0.0000016533, -0.0000016482,0.0000016483,0.0000016502,0.0000016548,0.0000016633, -0.0000016725,0.0000016748,0.0000016705,0.0000016641,0.0000016510, -0.0000016205,0.0000015835,0.0000015690,0.0000015813,0.0000016082, -0.0000016235,0.0000016282,0.0000016347,0.0000016329,0.0000016150, -0.0000015913,0.0000015776,0.0000015756,0.0000015841,0.0000016073, -0.0000016412,0.0000016704,0.0000016860,0.0000016894,0.0000016920, -0.0000016980,0.0000017063,0.0000017106,0.0000016984,0.0000016655, -0.0000016322,0.0000016113,0.0000016027,0.0000016105,0.0000016319, -0.0000016486,0.0000016502,0.0000016417,0.0000016261,0.0000016095, -0.0000015958,0.0000015835,0.0000015679,0.0000015480,0.0000015283, -0.0000015137,0.0000015060,0.0000015040,0.0000015048,0.0000015079, -0.0000015130,0.0000015190,0.0000015242,0.0000015279,0.0000015310, -0.0000015327,0.0000015330,0.0000015295,0.0000015235,0.0000015165, -0.0000015099,0.0000015074,0.0000015088,0.0000015228,0.0000015432, -0.0000015725,0.0000016070,0.0000016154,0.0000016006,0.0000015950, -0.0000015902,0.0000015714,0.0000015528,0.0000015465,0.0000015498, -0.0000015587,0.0000015691,0.0000015774,0.0000015822,0.0000015847, -0.0000015873,0.0000015902,0.0000015906,0.0000015867,0.0000015797, -0.0000015815,0.0000015969,0.0000016129,0.0000016248,0.0000016326, -0.0000016299,0.0000016281,0.0000016638,0.0000017204,0.0000017372, -0.0000017149,0.0000016934,0.0000016911,0.0000016966,0.0000017007, -0.0000017015,0.0000017005,0.0000016996,0.0000016992,0.0000016992, -0.0000016989,0.0000016986,0.0000016990,0.0000016992,0.0000016977, -0.0000016943,0.0000016914,0.0000016968,0.0000017015,0.0000017223, -0.0000017545,0.0000017889,0.0000018149,0.0000018317,0.0000018422, -0.0000018467,0.0000018411,0.0000018340,0.0000018335,0.0000018307, -0.0000018268,0.0000018252,0.0000018244,0.0000018250,0.0000018268, -0.0000018296,0.0000018348,0.0000018428,0.0000018435,0.0000018443, -0.0000018503,0.0000018554,0.0000018535,0.0000018456,0.0000018413, -0.0000018384,0.0000018356,0.0000018334,0.0000018343,0.0000018395, -0.0000018470,0.0000018538,0.0000018677,0.0000018770,0.0000018761, -0.0000018777,0.0000018663,0.0000018516,0.0000018353,0.0000018211, -0.0000018111,0.0000018074,0.0000018070,0.0000018069,0.0000018076, -0.0000018085,0.0000018096,0.0000018106,0.0000018121,0.0000018121, -0.0000018130,0.0000018101,0.0000018090,0.0000018126,0.0000018229, -0.0000018363,0.0000018478,0.0000018561,0.0000018629,0.0000018690, -0.0000018743,0.0000018787,0.0000018824,0.0000018853,0.0000018875, -0.0000018888,0.0000018890,0.0000018879,0.0000018858,0.0000018837, -0.0000018829,0.0000018837,0.0000018871,0.0000018927,0.0000019000, -0.0000019096,0.0000019224,0.0000019343,0.0000019404,0.0000019474, -0.0000019623,0.0000019753,0.0000019746,0.0000019654,0.0000019552, -0.0000019505,0.0000019533,0.0000019613,0.0000019683,0.0000019723, -0.0000019736,0.0000019737,0.0000019733,0.0000019739,0.0000019755, -0.0000019767,0.0000019766,0.0000019764,0.0000019770,0.0000019780, -0.0000019786,0.0000019787,0.0000019780,0.0000019766,0.0000019739, -0.0000019712,0.0000019715,0.0000019767,0.0000019850,0.0000019917, -0.0000019895,0.0000019779,0.0000019618,0.0000019477,0.0000019404, -0.0000019268,0.0000018913,0.0000018633,0.0000018643,0.0000018818, -0.0000019034,0.0000019194,0.0000019262,0.0000019188,0.0000018981, -0.0000018713,0.0000018424,0.0000018029,0.0000017538,0.0000017095, -0.0000016851,0.0000016771,0.0000016727,0.0000016688,0.0000016674, -0.0000016697,0.0000016736,0.0000016723,0.0000016631,0.0000016505, -0.0000016458,0.0000016455,0.0000016532,0.0000016771,0.0000017243, -0.0000017945,0.0000018750,0.0000019447,0.0000019924,0.0000020153, -0.0000020215,0.0000020145,0.0000020069,0.0000019981,0.0000019899, -0.0000019728,0.0000019437,0.0000019161,0.0000018966,0.0000018901, -0.0000018986,0.0000019111,0.0000019177,0.0000019216,0.0000019289, -0.0000019384,0.0000019447,0.0000019456,0.0000019441,0.0000019410, -0.0000019373,0.0000019340,0.0000019299,0.0000019248,0.0000019218, -0.0000019225,0.0000019221,0.0000019271,0.0000019326,0.0000019339, -0.0000019311,0.0000019243,0.0000019117,0.0000018814,0.0000018420, -0.0000018257,0.0000018286,0.0000018436,0.0000018791,0.0000018964, -0.0000018894,0.0000018772,0.0000018721,0.0000018716,0.0000018704, -0.0000018703,0.0000018728,0.0000018777,0.0000018881,0.0000018978, -0.0000018986,0.0000018831,0.0000018563,0.0000018501,0.0000018538, -0.0000018581,0.0000018576,0.0000018542,0.0000018560,0.0000018592, -0.0000018499,0.0000018246,0.0000017984,0.0000017825,0.0000017723, -0.0000017636,0.0000017579,0.0000017568,0.0000017607,0.0000017666, -0.0000017706,0.0000017721,0.0000017734,0.0000017762,0.0000017808, -0.0000017875,0.0000017938,0.0000017969,0.0000017989,0.0000018016, -0.0000018024,0.0000017998,0.0000017911,0.0000017814,0.0000017755, -0.0000017654,0.0000017523,0.0000017396,0.0000017193,0.0000016997, -0.0000016891,0.0000016813,0.0000016770,0.0000016714,0.0000016626, -0.0000016609,0.0000016615,0.0000016596,0.0000016574,0.0000016530, -0.0000016476,0.0000016454,0.0000016455,0.0000016458,0.0000016487, -0.0000016517,0.0000016492,0.0000016417,0.0000016338,0.0000016197, -0.0000016032,0.0000015933,0.0000015884,0.0000015933,0.0000016013, -0.0000016004,0.0000015947,0.0000015886,0.0000015894,0.0000015959, -0.0000016040,0.0000016123,0.0000016263,0.0000016428,0.0000016601, -0.0000016682,0.0000016612,0.0000016631,0.0000016843,0.0000017054, -0.0000017084,0.0000017047,0.0000017012,0.0000016962,0.0000016838, -0.0000016715,0.0000016677,0.0000016646,0.0000016619,0.0000016608, -0.0000016580,0.0000016481,0.0000016317,0.0000016211,0.0000016184, -0.0000016184,0.0000016240,0.0000016383,0.0000016546,0.0000016669, -0.0000016783,0.0000016910,0.0000017012,0.0000017040,0.0000017002, -0.0000016749,0.0000016651,0.0000016553,0.0000016470,0.0000016416, -0.0000016382,0.0000016352,0.0000016293,0.0000016219,0.0000016182, -0.0000016183,0.0000016181,0.0000016157,0.0000016114,0.0000016085, -0.0000016114,0.0000016191,0.0000016257,0.0000016284,0.0000016273, -0.0000016247,0.0000016252,0.0000016304,0.0000016361,0.0000016401, -0.0000016479,0.0000016534,0.0000016519,0.0000016519,0.0000016735, -0.0000017211,0.0000017512,0.0000017530,0.0000017504,0.0000017550, -0.0000017633,0.0000017720,0.0000017803,0.0000017857,0.0000017861, -0.0000017846,0.0000017871,0.0000017964,0.0000018055,0.0000018046, -0.0000017817,0.0000017614,0.0000017534,0.0000017394,0.0000017238, -0.0000017355,0.0000017485,0.0000017242,0.0000017137,0.0000016969, -0.0000017120,0.0000017383,0.0000017424,0.0000017222,0.0000016948, -0.0000016769,0.0000016691,0.0000016739,0.0000016888,0.0000017032, -0.0000017092,0.0000017128,0.0000017254,0.0000017438,0.0000017522, -0.0000017549,0.0000017577,0.0000017713,0.0000017881,0.0000017955, -0.0000018071,0.0000018237,0.0000018292,0.0000018270,0.0000018105, -0.0000017998,0.0000017927,0.0000017410,0.0000017268,0.0000017313, -0.0000017279,0.0000017388,0.0000017359,0.0000017236,0.0000017124, -0.0000017134,0.0000017255,0.0000017289,0.0000017106,0.0000016860, -0.0000016711,0.0000016683,0.0000016829,0.0000016906,0.0000016797, -0.0000016677,0.0000016673,0.0000016927,0.0000017352,0.0000017602, -0.0000017739,0.0000017907,0.0000017995,0.0000017979,0.0000017962, -0.0000018024,0.0000018138,0.0000018173,0.0000018067,0.0000017905, -0.0000017823,0.0000017718,0.0000017509,0.0000017358,0.0000017358, -0.0000017450,0.0000017507,0.0000017518,0.0000017559,0.0000017580, -0.0000017579,0.0000017673,0.0000017797,0.0000017677,0.0000017302, -0.0000017009,0.0000016888,0.0000016860,0.0000016876,0.0000016883, -0.0000016879,0.0000016914,0.0000017049,0.0000017362,0.0000017676, -0.0000017800,0.0000017862,0.0000017943,0.0000017962,0.0000018398, -0.0000019248,0.0000019303,0.0000019365,0.0000019714,0.0000019945, -0.0000020190,0.0000020373,0.0000020441,0.0000020442,0.0000020419, -0.0000020400,0.0000020390,0.0000020371,0.0000020360,0.0000020344, -0.0000020304,0.0000020250,0.0000020220,0.0000020252,0.0000020328, -0.0000020404,0.0000020440,0.0000020438,0.0000020417,0.0000020395, -0.0000020373,0.0000020363,0.0000020361,0.0000020360,0.0000020362, -0.0000020360,0.0000020364,0.0000020373,0.0000020380,0.0000020394, -0.0000020445,0.0000020543,0.0000020653,0.0000020680,0.0000020603, -0.0000020476,0.0000020398,0.0000020371,0.0000020387,0.0000020381, -0.0000020189,0.0000020007,0.0000019879,0.0000019715,0.0000019433, -0.0000018975,0.0000018812,0.0000018933,0.0000019041,0.0000019004, -0.0000018907,0.0000018891,0.0000018995,0.0000019172,0.0000019293, -0.0000019322,0.0000019209,0.0000018836,0.0000018327,0.0000017947, -0.0000017814,0.0000017808,0.0000017840,0.0000017922,0.0000018020, -0.0000018078,0.0000018088,0.0000018070,0.0000018011,0.0000017944, -0.0000017907,0.0000017876,0.0000017877,0.0000017951,0.0000018188, -0.0000018317,0.0000018323,0.0000018429,0.0000018135,0.0000018505, -0.0000019262,0.0000019295,0.0000018893,0.0000018798,0.0000017865, -0.0000016822,0.0000016606,0.0000016468,0.0000016467,0.0000016499, -0.0000016566,0.0000016647,0.0000016708,0.0000016736,0.0000016697, -0.0000016573,0.0000016374,0.0000016037,0.0000015715,0.0000015646, -0.0000015833,0.0000016093,0.0000016232,0.0000016301,0.0000016312, -0.0000016179,0.0000015964,0.0000015843,0.0000015833,0.0000015859, -0.0000015990,0.0000016291,0.0000016628,0.0000016817,0.0000016856, -0.0000016864,0.0000016918,0.0000017022,0.0000017119,0.0000017137, -0.0000016956,0.0000016565,0.0000016243,0.0000016110,0.0000016096, -0.0000016273,0.0000016477,0.0000016520,0.0000016453,0.0000016281, -0.0000016083,0.0000015917,0.0000015788,0.0000015640,0.0000015445, -0.0000015250,0.0000015105,0.0000015024,0.0000015002,0.0000015025, -0.0000015065,0.0000015119,0.0000015176,0.0000015218,0.0000015245, -0.0000015270,0.0000015297,0.0000015323,0.0000015345,0.0000015365, -0.0000015369,0.0000015352,0.0000015280,0.0000015188,0.0000015110, -0.0000015070,0.0000015116,0.0000015316,0.0000015598,0.0000015989, -0.0000016177,0.0000016068,0.0000015947,0.0000015873,0.0000015725, -0.0000015549,0.0000015479,0.0000015480,0.0000015522,0.0000015590, -0.0000015658,0.0000015709,0.0000015744,0.0000015777,0.0000015818, -0.0000015867,0.0000015867,0.0000015812,0.0000015824,0.0000015970, -0.0000016146,0.0000016275,0.0000016335,0.0000016283,0.0000016305, -0.0000016670,0.0000017222,0.0000017443,0.0000017264,0.0000017001, -0.0000016918,0.0000016880,0.0000016890,0.0000016910,0.0000016919, -0.0000016920,0.0000016917,0.0000016912,0.0000016912,0.0000016917, -0.0000016909,0.0000016933,0.0000016975,0.0000017142,0.0000017419, -0.0000017777,0.0000018136,0.0000018391,0.0000018539,0.0000018499, -0.0000018503,0.0000018373,0.0000018216,0.0000018049,0.0000017873, -0.0000017692,0.0000017517,0.0000017372,0.0000017268,0.0000017217, -0.0000017222,0.0000017268,0.0000017348,0.0000017460,0.0000017601, -0.0000017757,0.0000017911,0.0000018062,0.0000018208,0.0000018324, -0.0000018418,0.0000018514,0.0000018584,0.0000018617,0.0000018631, -0.0000018661,0.0000018678,0.0000018660,0.0000018635,0.0000018615, -0.0000018544,0.0000018418,0.0000018297,0.0000018170,0.0000018074, -0.0000018033,0.0000018021,0.0000018007,0.0000018007,0.0000017961, -0.0000017880,0.0000017808,0.0000017765,0.0000017773,0.0000017830, -0.0000017940,0.0000018073,0.0000018161,0.0000018139,0.0000018070, -0.0000018024,0.0000018035,0.0000018135,0.0000018268,0.0000018391, -0.0000018491,0.0000018570,0.0000018634,0.0000018682,0.0000018715, -0.0000018734,0.0000018739,0.0000018733,0.0000018714,0.0000018693, -0.0000018679,0.0000018677,0.0000018690,0.0000018718,0.0000018768, -0.0000018838,0.0000018925,0.0000019033,0.0000019180,0.0000019326, -0.0000019398,0.0000019476,0.0000019633,0.0000019737,0.0000019725, -0.0000019631,0.0000019539,0.0000019499,0.0000019537,0.0000019614, -0.0000019663,0.0000019672,0.0000019655,0.0000019624,0.0000019597, -0.0000019576,0.0000019568,0.0000019557,0.0000019544,0.0000019543, -0.0000019552,0.0000019564,0.0000019578,0.0000019597,0.0000019616, -0.0000019642,0.0000019683,0.0000019767,0.0000019856,0.0000019909, -0.0000019892,0.0000019789,0.0000019655,0.0000019558,0.0000019476, -0.0000019411,0.0000019349,0.0000019087,0.0000018738,0.0000018653, -0.0000018825,0.0000019048,0.0000019162,0.0000019118,0.0000018934, -0.0000018736,0.0000018565,0.0000018348,0.0000018047,0.0000017717, -0.0000017417,0.0000017193,0.0000017057,0.0000016986,0.0000016953, -0.0000016940,0.0000016956,0.0000017020,0.0000017064,0.0000016993, -0.0000016765,0.0000016548,0.0000016463,0.0000016447,0.0000016472, -0.0000016656,0.0000017062,0.0000017702,0.0000018454,0.0000019139, -0.0000019630,0.0000019870,0.0000019927,0.0000019922,0.0000019897, -0.0000019897,0.0000019891,0.0000019728,0.0000019411,0.0000019169, -0.0000019049,0.0000019000,0.0000019071,0.0000019165,0.0000019235, -0.0000019333,0.0000019442,0.0000019503,0.0000019508,0.0000019489, -0.0000019446,0.0000019391,0.0000019338,0.0000019282,0.0000019214, -0.0000019171,0.0000019158,0.0000019141,0.0000019209,0.0000019285, -0.0000019317,0.0000019290,0.0000019237,0.0000019179,0.0000018997, -0.0000018615,0.0000018316,0.0000018294,0.0000018337,0.0000018589, -0.0000018925,0.0000018982,0.0000018860,0.0000018772,0.0000018747, -0.0000018743,0.0000018750,0.0000018780,0.0000018838,0.0000018935, -0.0000018981,0.0000018936,0.0000018697,0.0000018482,0.0000018490, -0.0000018565,0.0000018665,0.0000018660,0.0000018580,0.0000018562, -0.0000018581,0.0000018484,0.0000018238,0.0000017992,0.0000017844, -0.0000017745,0.0000017665,0.0000017624,0.0000017634,0.0000017679, -0.0000017723,0.0000017746,0.0000017764,0.0000017793,0.0000017838, -0.0000017904,0.0000017966,0.0000018002,0.0000018042,0.0000018092, -0.0000018106,0.0000018077,0.0000017981,0.0000017859,0.0000017784, -0.0000017711,0.0000017596,0.0000017505,0.0000017375,0.0000017147, -0.0000016973,0.0000016881,0.0000016810,0.0000016781,0.0000016710, -0.0000016622,0.0000016619,0.0000016631,0.0000016611,0.0000016570, -0.0000016509,0.0000016463,0.0000016454,0.0000016459,0.0000016489, -0.0000016535,0.0000016546,0.0000016489,0.0000016410,0.0000016315, -0.0000016143,0.0000015986,0.0000015900,0.0000015877,0.0000015956, -0.0000016005,0.0000015985,0.0000015929,0.0000015889,0.0000015905, -0.0000015971,0.0000016050,0.0000016140,0.0000016294,0.0000016468, -0.0000016642,0.0000016667,0.0000016626,0.0000016767,0.0000017022, -0.0000017108,0.0000017093,0.0000017044,0.0000017011,0.0000016915, -0.0000016757,0.0000016688,0.0000016664,0.0000016636,0.0000016609, -0.0000016592,0.0000016576,0.0000016504,0.0000016360,0.0000016246, -0.0000016223,0.0000016226,0.0000016271,0.0000016390,0.0000016532, -0.0000016649,0.0000016741,0.0000016803,0.0000016825,0.0000016810, -0.0000016658,0.0000016583,0.0000016501,0.0000016433,0.0000016393, -0.0000016358,0.0000016310,0.0000016234,0.0000016174,0.0000016165, -0.0000016178,0.0000016167,0.0000016118,0.0000016061,0.0000016019, -0.0000016031,0.0000016096,0.0000016163,0.0000016200,0.0000016206, -0.0000016207,0.0000016235,0.0000016294,0.0000016354,0.0000016390, -0.0000016465,0.0000016531,0.0000016530,0.0000016522,0.0000016656, -0.0000017081,0.0000017475,0.0000017555,0.0000017539,0.0000017555, -0.0000017634,0.0000017719,0.0000017774,0.0000017792,0.0000017793, -0.0000017805,0.0000017875,0.0000017986,0.0000018025,0.0000017846, -0.0000017589,0.0000017489,0.0000017413,0.0000017255,0.0000017234, -0.0000017449,0.0000017376,0.0000017171,0.0000017031,0.0000016952, -0.0000017268,0.0000017450,0.0000017381,0.0000017057,0.0000016828, -0.0000016663,0.0000016608,0.0000016655,0.0000016789,0.0000016953, -0.0000017064,0.0000017090,0.0000017175,0.0000017380,0.0000017518, -0.0000017558,0.0000017611,0.0000017709,0.0000017876,0.0000017954, -0.0000018095,0.0000018238,0.0000018245,0.0000018213,0.0000018008, -0.0000017966,0.0000017830,0.0000017280,0.0000017280,0.0000017294, -0.0000017273,0.0000017344,0.0000017291,0.0000017194,0.0000017109, -0.0000017187,0.0000017294,0.0000017258,0.0000017004,0.0000016803, -0.0000016682,0.0000016703,0.0000016878,0.0000016878,0.0000016741, -0.0000016683,0.0000016768,0.0000017130,0.0000017493,0.0000017688, -0.0000017877,0.0000018018,0.0000018038,0.0000018036,0.0000018090, -0.0000018170,0.0000018179,0.0000018075,0.0000017945,0.0000017873, -0.0000017760,0.0000017553,0.0000017414,0.0000017413,0.0000017475, -0.0000017496,0.0000017490,0.0000017532,0.0000017563,0.0000017563, -0.0000017662,0.0000017786,0.0000017656,0.0000017279,0.0000017007, -0.0000016902,0.0000016868,0.0000016876,0.0000016873,0.0000016852, -0.0000016855,0.0000016932,0.0000017168,0.0000017523,0.0000017740, -0.0000017829,0.0000017925,0.0000017959,0.0000018209,0.0000019055, -0.0000019369,0.0000019300,0.0000019643,0.0000019887,0.0000020106, -0.0000020298,0.0000020381,0.0000020383,0.0000020374,0.0000020388, -0.0000020395,0.0000020375,0.0000020370,0.0000020368,0.0000020372, -0.0000020333,0.0000020262,0.0000020229,0.0000020266,0.0000020377, -0.0000020486,0.0000020534,0.0000020528,0.0000020498,0.0000020460, -0.0000020425,0.0000020408,0.0000020397,0.0000020396,0.0000020401, -0.0000020419,0.0000020454,0.0000020510,0.0000020594,0.0000020690, -0.0000020739,0.0000020693,0.0000020597,0.0000020500,0.0000020431, -0.0000020405,0.0000020427,0.0000020386,0.0000020163,0.0000019973, -0.0000019831,0.0000019649,0.0000019431,0.0000019009,0.0000018679, -0.0000018674,0.0000018759,0.0000018797,0.0000018821,0.0000018975, -0.0000019194,0.0000019306,0.0000019301,0.0000019269,0.0000019055, -0.0000018585,0.0000018110,0.0000017866,0.0000017816,0.0000017839, -0.0000017906,0.0000018003,0.0000018103,0.0000018172,0.0000018194, -0.0000018184,0.0000018129,0.0000018041,0.0000017951,0.0000017881, -0.0000017867,0.0000017928,0.0000018057,0.0000018289,0.0000018304, -0.0000018367,0.0000018353,0.0000018130,0.0000018842,0.0000019342, -0.0000019105,0.0000018855,0.0000018627,0.0000017403,0.0000016689, -0.0000016496,0.0000016469,0.0000016504,0.0000016587,0.0000016665, -0.0000016700,0.0000016695,0.0000016666,0.0000016537,0.0000016249, -0.0000015889,0.0000015647,0.0000015640,0.0000015867,0.0000016127, -0.0000016218,0.0000016265,0.0000016211,0.0000016025,0.0000015904, -0.0000015895,0.0000015910,0.0000015954,0.0000016169,0.0000016518, -0.0000016770,0.0000016837,0.0000016842,0.0000016885,0.0000016994, -0.0000017111,0.0000017188,0.0000017148,0.0000016869,0.0000016437, -0.0000016169,0.0000016115,0.0000016216,0.0000016433,0.0000016538, -0.0000016491,0.0000016317,0.0000016089,0.0000015885,0.0000015743, -0.0000015612,0.0000015432,0.0000015236,0.0000015088,0.0000015003, -0.0000014975,0.0000014998,0.0000015053,0.0000015109,0.0000015145, -0.0000015168,0.0000015183,0.0000015190,0.0000015204,0.0000015221, -0.0000015236,0.0000015255,0.0000015275,0.0000015306,0.0000015343, -0.0000015365,0.0000015342,0.0000015299,0.0000015195,0.0000015094, -0.0000015081,0.0000015207,0.0000015486,0.0000015873,0.0000016159, -0.0000016141,0.0000015990,0.0000015861,0.0000015731,0.0000015588, -0.0000015490,0.0000015483,0.0000015516,0.0000015546,0.0000015554, -0.0000015557,0.0000015557,0.0000015568,0.0000015616,0.0000015693, -0.0000015753,0.0000015777,0.0000015827,0.0000015968,0.0000016148, -0.0000016286,0.0000016338,0.0000016284,0.0000016310,0.0000016652, -0.0000017204,0.0000017409,0.0000017370,0.0000017207,0.0000017025, -0.0000016899,0.0000016864,0.0000016879,0.0000016879,0.0000016878, -0.0000016883,0.0000016964,0.0000017062,0.0000017181,0.0000017399, -0.0000017695,0.0000018008,0.0000018300,0.0000018502,0.0000018515, -0.0000018497,0.0000018332,0.0000018108,0.0000017840,0.0000017558, -0.0000017273,0.0000017007,0.0000016773,0.0000016578,0.0000016426, -0.0000016319,0.0000016255,0.0000016232,0.0000016247,0.0000016294, -0.0000016357,0.0000016429,0.0000016520,0.0000016642,0.0000016803, -0.0000016997,0.0000017212,0.0000017434,0.0000017643,0.0000017828, -0.0000017981,0.0000018101,0.0000018187,0.0000018241,0.0000018266, -0.0000018263,0.0000018228,0.0000018178,0.0000018121,0.0000018054, -0.0000017998,0.0000017963,0.0000017952,0.0000017930,0.0000017854, -0.0000017729,0.0000017577,0.0000017399,0.0000017244,0.0000017135, -0.0000017096,0.0000017116,0.0000017218,0.0000017430,0.0000017728, -0.0000018010,0.0000018153,0.0000018153,0.0000018051,0.0000017970, -0.0000017958,0.0000018036,0.0000018139,0.0000018260,0.0000018372, -0.0000018460,0.0000018519,0.0000018551,0.0000018567,0.0000018570, -0.0000018563,0.0000018554,0.0000018550,0.0000018554,0.0000018573, -0.0000018610,0.0000018660,0.0000018716,0.0000018785,0.0000018877, -0.0000018996,0.0000019154,0.0000019317,0.0000019401,0.0000019483, -0.0000019636,0.0000019726,0.0000019705,0.0000019614,0.0000019532, -0.0000019493,0.0000019520,0.0000019556,0.0000019549,0.0000019492, -0.0000019420,0.0000019377,0.0000019366,0.0000019371,0.0000019367, -0.0000019366,0.0000019376,0.0000019404,0.0000019451,0.0000019506, -0.0000019559,0.0000019637,0.0000019718,0.0000019803,0.0000019873, -0.0000019888,0.0000019848,0.0000019749,0.0000019644,0.0000019579, -0.0000019549,0.0000019497,0.0000019442,0.0000019390,0.0000019170, -0.0000018833,0.0000018702,0.0000018819,0.0000019028,0.0000019096, -0.0000018983,0.0000018709,0.0000018498,0.0000018401,0.0000018263, -0.0000018035,0.0000017815,0.0000017671,0.0000017579,0.0000017506, -0.0000017443,0.0000017401,0.0000017388,0.0000017387,0.0000017412, -0.0000017464,0.0000017465,0.0000017253,0.0000016854,0.0000016566, -0.0000016458,0.0000016421,0.0000016425,0.0000016587,0.0000016945, -0.0000017497,0.0000018132,0.0000018711,0.0000019108,0.0000019296, -0.0000019381,0.0000019456,0.0000019598,0.0000019795,0.0000019840, -0.0000019696,0.0000019369,0.0000019172,0.0000019113,0.0000019132, -0.0000019212,0.0000019291,0.0000019384,0.0000019487,0.0000019561, -0.0000019612,0.0000019644,0.0000019641,0.0000019599,0.0000019531, -0.0000019431,0.0000019314,0.0000019219,0.0000019145,0.0000019079, -0.0000019116,0.0000019178,0.0000019189,0.0000019178,0.0000019163, -0.0000019153,0.0000019069,0.0000018776,0.0000018403,0.0000018294, -0.0000018300,0.0000018450,0.0000018829,0.0000019011,0.0000018932, -0.0000018819,0.0000018790,0.0000018802,0.0000018822,0.0000018851, -0.0000018911,0.0000018987,0.0000018981,0.0000018839,0.0000018583, -0.0000018464,0.0000018524,0.0000018700,0.0000018833,0.0000018799, -0.0000018661,0.0000018584,0.0000018572,0.0000018468,0.0000018239, -0.0000018011,0.0000017865,0.0000017763,0.0000017691,0.0000017663, -0.0000017675,0.0000017714,0.0000017750,0.0000017782,0.0000017817, -0.0000017863,0.0000017928,0.0000017988,0.0000018037,0.0000018110, -0.0000018183,0.0000018192,0.0000018135,0.0000018036,0.0000017902, -0.0000017805,0.0000017739,0.0000017645,0.0000017568,0.0000017507, -0.0000017340,0.0000017106,0.0000016961,0.0000016877,0.0000016819, -0.0000016786,0.0000016696,0.0000016615,0.0000016631,0.0000016654, -0.0000016622,0.0000016567,0.0000016507,0.0000016465,0.0000016461, -0.0000016489,0.0000016539,0.0000016573,0.0000016553,0.0000016478, -0.0000016403,0.0000016278,0.0000016086,0.0000015947,0.0000015872, -0.0000015884,0.0000015975,0.0000015998,0.0000015970,0.0000015918, -0.0000015888,0.0000015916,0.0000015990,0.0000016056,0.0000016161, -0.0000016334,0.0000016522,0.0000016674,0.0000016663,0.0000016714, -0.0000016952,0.0000017129,0.0000017138,0.0000017090,0.0000017043, -0.0000016991,0.0000016838,0.0000016713,0.0000016684,0.0000016663, -0.0000016640,0.0000016610,0.0000016587,0.0000016566,0.0000016517, -0.0000016401,0.0000016288,0.0000016260,0.0000016269,0.0000016308, -0.0000016393,0.0000016498,0.0000016592,0.0000016655,0.0000016686, -0.0000016690,0.0000016571,0.0000016524,0.0000016470,0.0000016420, -0.0000016383,0.0000016333,0.0000016265,0.0000016190,0.0000016162, -0.0000016184,0.0000016208,0.0000016181,0.0000016119,0.0000016056, -0.0000016011,0.0000016005,0.0000016037,0.0000016083,0.0000016122, -0.0000016155,0.0000016177,0.0000016204,0.0000016261,0.0000016330, -0.0000016368,0.0000016440,0.0000016516,0.0000016532,0.0000016526, -0.0000016595,0.0000016939,0.0000017391,0.0000017597,0.0000017589, -0.0000017572,0.0000017628,0.0000017702,0.0000017734,0.0000017736, -0.0000017749,0.0000017808,0.0000017912,0.0000017998,0.0000017910, -0.0000017597,0.0000017429,0.0000017374,0.0000017269,0.0000017166, -0.0000017313,0.0000017450,0.0000017235,0.0000017119,0.0000016917, -0.0000017059,0.0000017382,0.0000017470,0.0000017243,0.0000016907, -0.0000016671,0.0000016521,0.0000016501,0.0000016564,0.0000016694, -0.0000016856,0.0000017011,0.0000017064,0.0000017106,0.0000017313, -0.0000017509,0.0000017565,0.0000017636,0.0000017712,0.0000017873, -0.0000017963,0.0000018103,0.0000018195,0.0000018194,0.0000018149, -0.0000017935,0.0000017941,0.0000017692,0.0000017179,0.0000017298, -0.0000017275,0.0000017260,0.0000017297,0.0000017257,0.0000017161, -0.0000017130,0.0000017233,0.0000017306,0.0000017174,0.0000016919, -0.0000016750,0.0000016658,0.0000016758,0.0000016885,0.0000016830, -0.0000016732,0.0000016719,0.0000016905,0.0000017303,0.0000017596, -0.0000017805,0.0000018004,0.0000018086,0.0000018099,0.0000018132, -0.0000018177,0.0000018171,0.0000018080,0.0000017977,0.0000017920, -0.0000017809,0.0000017619,0.0000017493,0.0000017484,0.0000017515, -0.0000017498,0.0000017465,0.0000017501,0.0000017540,0.0000017544, -0.0000017641,0.0000017779,0.0000017656,0.0000017272,0.0000017000, -0.0000016908,0.0000016879,0.0000016883,0.0000016876,0.0000016840, -0.0000016827,0.0000016860,0.0000017007,0.0000017339,0.0000017643, -0.0000017787,0.0000017892,0.0000017957,0.0000018059,0.0000018787, -0.0000019384,0.0000019275,0.0000019549,0.0000019834,0.0000020022, -0.0000020227,0.0000020303,0.0000020321,0.0000020368,0.0000020401, -0.0000020363,0.0000020291,0.0000020283,0.0000020321,0.0000020374, -0.0000020393,0.0000020367,0.0000020280,0.0000020218,0.0000020259, -0.0000020376,0.0000020501,0.0000020569,0.0000020587,0.0000020594, -0.0000020585,0.0000020580,0.0000020578,0.0000020588,0.0000020612, -0.0000020649,0.0000020696,0.0000020736,0.0000020748,0.0000020709, -0.0000020637,0.0000020572,0.0000020521,0.0000020473,0.0000020450, -0.0000020456,0.0000020368,0.0000020131,0.0000019960,0.0000019792, -0.0000019571,0.0000019386,0.0000019058,0.0000018632,0.0000018459, -0.0000018509,0.0000018677,0.0000018948,0.0000019231,0.0000019342, -0.0000019336,0.0000019300,0.0000019177,0.0000018826,0.0000018335, -0.0000017960,0.0000017835,0.0000017834,0.0000017889,0.0000017971, -0.0000018068,0.0000018160,0.0000018222,0.0000018257,0.0000018263, -0.0000018223,0.0000018137,0.0000018044,0.0000017940,0.0000017873, -0.0000017911,0.0000017967,0.0000018202,0.0000018309,0.0000018289, -0.0000018397,0.0000018224,0.0000018294,0.0000019114,0.0000019357, -0.0000018951,0.0000018848,0.0000018399,0.0000017058,0.0000016589, -0.0000016481,0.0000016516,0.0000016602,0.0000016662,0.0000016691, -0.0000016658,0.0000016610,0.0000016493,0.0000016163,0.0000015778, -0.0000015594,0.0000015613,0.0000015856,0.0000016132,0.0000016189, -0.0000016143,0.0000016029,0.0000015952,0.0000015980,0.0000016008, -0.0000015973,0.0000016059,0.0000016367,0.0000016685,0.0000016821, -0.0000016835,0.0000016868,0.0000016977,0.0000017111,0.0000017205, -0.0000017227,0.0000017119,0.0000016733,0.0000016302,0.0000016148, -0.0000016175,0.0000016358,0.0000016529,0.0000016523,0.0000016364, -0.0000016122,0.0000015882,0.0000015716,0.0000015596,0.0000015439, -0.0000015246,0.0000015085,0.0000014990,0.0000014957,0.0000014981, -0.0000015034,0.0000015080,0.0000015106,0.0000015116,0.0000015121, -0.0000015133,0.0000015152,0.0000015176,0.0000015199,0.0000015205, -0.0000015207,0.0000015204,0.0000015204,0.0000015223,0.0000015261, -0.0000015310,0.0000015349,0.0000015344,0.0000015295,0.0000015162, -0.0000015070,0.0000015121,0.0000015376,0.0000015750,0.0000016109, -0.0000016159,0.0000016050,0.0000015884,0.0000015738,0.0000015617, -0.0000015531,0.0000015511,0.0000015528,0.0000015555,0.0000015569, -0.0000015563,0.0000015547,0.0000015548,0.0000015557,0.0000015597, -0.0000015659,0.0000015722,0.0000015810,0.0000015957,0.0000016134, -0.0000016282,0.0000016328,0.0000016282,0.0000016285,0.0000016551, -0.0000016994,0.0000017374,0.0000017523,0.0000017522,0.0000017444, -0.0000017357,0.0000017331,0.0000017354,0.0000017426,0.0000017548, -0.0000017705,0.0000017890,0.0000018099,0.0000018290,0.0000018432, -0.0000018475,0.0000018503,0.0000018336,0.0000018081,0.0000017764, -0.0000017423,0.0000017087,0.0000016780,0.0000016512,0.0000016302, -0.0000016147,0.0000016041,0.0000015980,0.0000015942,0.0000015937, -0.0000015956,0.0000015967,0.0000015984,0.0000016013,0.0000016042, -0.0000016053,0.0000016071,0.0000016106,0.0000016164,0.0000016252, -0.0000016361,0.0000016489,0.0000016635,0.0000016796,0.0000016977, -0.0000017165,0.0000017333,0.0000017470,0.0000017577,0.0000017650, -0.0000017696,0.0000017719,0.0000017721,0.0000017700,0.0000017656, -0.0000017599,0.0000017512,0.0000017372,0.0000017192,0.0000017012, -0.0000016859,0.0000016752,0.0000016691,0.0000016670,0.0000016677, -0.0000016679,0.0000016737,0.0000016894,0.0000017210,0.0000017640, -0.0000018016,0.0000018184,0.0000018154,0.0000018044,0.0000017950, -0.0000017916,0.0000017911,0.0000018002,0.0000018097,0.0000018182, -0.0000018253,0.0000018296,0.0000018319,0.0000018325,0.0000018315, -0.0000018301,0.0000018296,0.0000018310,0.0000018362,0.0000018456, -0.0000018571,0.0000018679,0.0000018764,0.0000018855,0.0000018982, -0.0000019149,0.0000019321,0.0000019411,0.0000019492,0.0000019636, -0.0000019714,0.0000019689,0.0000019608,0.0000019532,0.0000019478, -0.0000019459,0.0000019437,0.0000019372,0.0000019302,0.0000019279, -0.0000019295,0.0000019333,0.0000019344,0.0000019347,0.0000019371, -0.0000019423,0.0000019502,0.0000019590,0.0000019686,0.0000019775, -0.0000019842,0.0000019867,0.0000019860,0.0000019787,0.0000019675, -0.0000019585,0.0000019558,0.0000019567,0.0000019562,0.0000019539, -0.0000019506,0.0000019420,0.0000019173,0.0000018857,0.0000018751, -0.0000018856,0.0000019033,0.0000019083,0.0000018960,0.0000018646, -0.0000018367,0.0000018246,0.0000018165,0.0000018025,0.0000017866, -0.0000017774,0.0000017752,0.0000017745,0.0000017721,0.0000017686, -0.0000017662,0.0000017658,0.0000017662,0.0000017685,0.0000017725, -0.0000017637,0.0000017235,0.0000016770,0.0000016580,0.0000016522, -0.0000016460,0.0000016465,0.0000016576,0.0000016872,0.0000017296, -0.0000017780,0.0000018222,0.0000018521,0.0000018673,0.0000018768, -0.0000018947,0.0000019323,0.0000019704,0.0000019805,0.0000019639, -0.0000019305,0.0000019179,0.0000019199,0.0000019269,0.0000019346, -0.0000019416,0.0000019546,0.0000019711,0.0000019854,0.0000019934, -0.0000019955,0.0000019928,0.0000019864,0.0000019755,0.0000019621, -0.0000019493,0.0000019355,0.0000019226,0.0000019167,0.0000019149, -0.0000019108,0.0000019062,0.0000019034,0.0000019032,0.0000019026, -0.0000018882,0.0000018521,0.0000018287,0.0000018270,0.0000018370, -0.0000018731,0.0000019012,0.0000019000,0.0000018889,0.0000018862, -0.0000018886,0.0000018908,0.0000018926,0.0000018973,0.0000019014, -0.0000018932,0.0000018691,0.0000018453,0.0000018473,0.0000018663, -0.0000018899,0.0000018978,0.0000018919,0.0000018762,0.0000018629, -0.0000018560,0.0000018452,0.0000018254,0.0000018042,0.0000017888, -0.0000017777,0.0000017705,0.0000017685,0.0000017696,0.0000017734, -0.0000017782,0.0000017828,0.0000017878,0.0000017942,0.0000018001, -0.0000018073,0.0000018185,0.0000018265,0.0000018248,0.0000018175, -0.0000018066,0.0000017931,0.0000017820,0.0000017746,0.0000017668, -0.0000017602,0.0000017573,0.0000017491,0.0000017286,0.0000017073, -0.0000016962,0.0000016884,0.0000016825,0.0000016781,0.0000016680, -0.0000016617,0.0000016649,0.0000016675,0.0000016634,0.0000016575, -0.0000016517,0.0000016481,0.0000016491,0.0000016536,0.0000016587, -0.0000016597,0.0000016544,0.0000016470,0.0000016392,0.0000016225, -0.0000016034,0.0000015909,0.0000015854,0.0000015902,0.0000015983, -0.0000015991,0.0000015968,0.0000015909,0.0000015892,0.0000015936, -0.0000015999,0.0000016060,0.0000016196,0.0000016387,0.0000016587, -0.0000016691,0.0000016701,0.0000016866,0.0000017102,0.0000017165, -0.0000017144,0.0000017076,0.0000017033,0.0000016941,0.0000016771, -0.0000016708,0.0000016673,0.0000016644,0.0000016601,0.0000016576, -0.0000016573,0.0000016561,0.0000016523,0.0000016430,0.0000016325, -0.0000016294,0.0000016314,0.0000016351,0.0000016402,0.0000016468, -0.0000016524,0.0000016563,0.0000016583,0.0000016497,0.0000016482, -0.0000016458,0.0000016424,0.0000016378,0.0000016308,0.0000016236, -0.0000016175,0.0000016174,0.0000016229,0.0000016247,0.0000016209, -0.0000016150,0.0000016092,0.0000016037,0.0000016009,0.0000016015, -0.0000016039,0.0000016074,0.0000016120,0.0000016157,0.0000016179, -0.0000016227,0.0000016295,0.0000016331,0.0000016406,0.0000016488, -0.0000016524,0.0000016532,0.0000016555,0.0000016804,0.0000017268, -0.0000017600,0.0000017649,0.0000017610,0.0000017626,0.0000017676, -0.0000017698,0.0000017702,0.0000017742,0.0000017843,0.0000017959, -0.0000017971,0.0000017697,0.0000017406,0.0000017310,0.0000017248, -0.0000017140,0.0000017145,0.0000017392,0.0000017345,0.0000017149, -0.0000017002,0.0000016894,0.0000017235,0.0000017458,0.0000017412, -0.0000017078,0.0000016737,0.0000016506,0.0000016412,0.0000016392, -0.0000016444,0.0000016585,0.0000016751,0.0000016923,0.0000017029, -0.0000017053,0.0000017245,0.0000017502,0.0000017576,0.0000017647, -0.0000017712,0.0000017862,0.0000017977,0.0000018084,0.0000018126, -0.0000018155,0.0000018067,0.0000017886,0.0000017902,0.0000017511, -0.0000017124,0.0000017305,0.0000017259,0.0000017250,0.0000017270, -0.0000017245,0.0000017142,0.0000017145,0.0000017270,0.0000017285, -0.0000017088,0.0000016846,0.0000016704,0.0000016672,0.0000016802, -0.0000016872,0.0000016810,0.0000016744,0.0000016764,0.0000017060, -0.0000017439,0.0000017698,0.0000017932,0.0000018090,0.0000018132, -0.0000018146,0.0000018165,0.0000018153,0.0000018082,0.0000018002, -0.0000017958,0.0000017858,0.0000017699,0.0000017599,0.0000017578, -0.0000017573,0.0000017522,0.0000017458,0.0000017473,0.0000017516, -0.0000017525,0.0000017614,0.0000017754,0.0000017660,0.0000017283, -0.0000016996,0.0000016907,0.0000016889,0.0000016894,0.0000016887, -0.0000016843,0.0000016814,0.0000016825,0.0000016897,0.0000017152, -0.0000017518,0.0000017732,0.0000017852,0.0000017957,0.0000017979, -0.0000018512,0.0000019311,0.0000019317,0.0000019423,0.0000019784, -0.0000019935,0.0000020153,0.0000020270,0.0000020314,0.0000020401, -0.0000020367,0.0000020181,0.0000020058,0.0000020063,0.0000020130, -0.0000020237,0.0000020343,0.0000020415,0.0000020388,0.0000020306, -0.0000020225,0.0000020220,0.0000020311,0.0000020422,0.0000020516, -0.0000020578,0.0000020619,0.0000020654,0.0000020683,0.0000020708, -0.0000020725,0.0000020732,0.0000020711,0.0000020656,0.0000020601, -0.0000020571,0.0000020548,0.0000020519,0.0000020499,0.0000020507, -0.0000020503,0.0000020327,0.0000020101,0.0000019950,0.0000019773, -0.0000019511,0.0000019322,0.0000019130,0.0000018781,0.0000018502, -0.0000018569,0.0000018889,0.0000019256,0.0000019421,0.0000019353, -0.0000019257,0.0000019204,0.0000019009,0.0000018576,0.0000018143, -0.0000017915,0.0000017846,0.0000017852,0.0000017920,0.0000018019, -0.0000018113,0.0000018186,0.0000018226,0.0000018254,0.0000018286, -0.0000018277,0.0000018215,0.0000018136,0.0000018044,0.0000017945, -0.0000017914,0.0000017927,0.0000018075,0.0000018303,0.0000018275, -0.0000018306,0.0000018408,0.0000018157,0.0000018558,0.0000019308, -0.0000019285,0.0000018883,0.0000018859,0.0000018156,0.0000016821, -0.0000016543,0.0000016507,0.0000016613,0.0000016690,0.0000016685, -0.0000016618,0.0000016557,0.0000016410,0.0000016067,0.0000015718, -0.0000015536,0.0000015522,0.0000015744,0.0000015996,0.0000016035, -0.0000015959,0.0000015920,0.0000016012,0.0000016117,0.0000016081, -0.0000016031,0.0000016208,0.0000016559,0.0000016779,0.0000016813, -0.0000016831,0.0000016939,0.0000017094,0.0000017216,0.0000017271, -0.0000017252,0.0000017041,0.0000016575,0.0000016202,0.0000016149, -0.0000016275,0.0000016478,0.0000016539,0.0000016419,0.0000016179, -0.0000015913,0.0000015715,0.0000015595,0.0000015460,0.0000015271, -0.0000015095,0.0000014980,0.0000014935,0.0000014954,0.0000015000, -0.0000015032,0.0000015055,0.0000015071,0.0000015087,0.0000015097, -0.0000015105,0.0000015111,0.0000015116,0.0000015124,0.0000015129, -0.0000015130,0.0000015125,0.0000015116,0.0000015119,0.0000015142, -0.0000015181,0.0000015235,0.0000015298,0.0000015348,0.0000015335, -0.0000015249,0.0000015113,0.0000015079,0.0000015259,0.0000015622, -0.0000015998,0.0000016199,0.0000016158,0.0000015984,0.0000015798, -0.0000015653,0.0000015567,0.0000015541,0.0000015549,0.0000015568, -0.0000015592,0.0000015604,0.0000015604,0.0000015594,0.0000015584, -0.0000015588,0.0000015608,0.0000015661,0.0000015768,0.0000015924, -0.0000016099,0.0000016245,0.0000016300,0.0000016276,0.0000016250, -0.0000016384,0.0000016705,0.0000017073,0.0000017383,0.0000017605, -0.0000017680,0.0000017862,0.0000017990,0.0000018107,0.0000018218, -0.0000018261,0.0000018269,0.0000018408,0.0000018330,0.0000018174, -0.0000017964,0.0000017679,0.0000017342,0.0000016993,0.0000016672, -0.0000016406,0.0000016209,0.0000016089,0.0000016024,0.0000015997, -0.0000015988,0.0000015961,0.0000015976,0.0000015988,0.0000016007, -0.0000016027,0.0000016039,0.0000016047,0.0000016056,0.0000016063, -0.0000016068,0.0000016069,0.0000016068,0.0000016083,0.0000016080, -0.0000016089,0.0000016113,0.0000016139,0.0000016171,0.0000016243, -0.0000016337,0.0000016452,0.0000016575,0.0000016690,0.0000016790, -0.0000016866,0.0000016917,0.0000016933,0.0000016912,0.0000016858, -0.0000016777,0.0000016676,0.0000016573,0.0000016496,0.0000016460, -0.0000016467,0.0000016503,0.0000016553,0.0000016608,0.0000016652, -0.0000016668,0.0000016653,0.0000016667,0.0000016818,0.0000017194, -0.0000017682,0.0000018054,0.0000018192,0.0000018178,0.0000018073, -0.0000017973,0.0000017925,0.0000017919,0.0000017928,0.0000017936, -0.0000017977,0.0000017993,0.0000018008,0.0000018013,0.0000018000, -0.0000018007,0.0000018046,0.0000018075,0.0000018134,0.0000018258, -0.0000018431,0.0000018625,0.0000018760,0.0000018851,0.0000018979, -0.0000019156,0.0000019332,0.0000019426,0.0000019503,0.0000019633, -0.0000019702,0.0000019677,0.0000019606,0.0000019523,0.0000019438, -0.0000019383,0.0000019330,0.0000019288,0.0000019281,0.0000019320, -0.0000019373,0.0000019394,0.0000019413,0.0000019466,0.0000019552, -0.0000019651,0.0000019747,0.0000019821,0.0000019856,0.0000019846, -0.0000019793,0.0000019718,0.0000019622,0.0000019539,0.0000019515, -0.0000019542,0.0000019567,0.0000019569,0.0000019564,0.0000019549, -0.0000019429,0.0000019104,0.0000018806,0.0000018769,0.0000018927, -0.0000019093,0.0000019120,0.0000018992,0.0000018689,0.0000018364, -0.0000018180,0.0000018091,0.0000018027,0.0000017938,0.0000017867, -0.0000017853,0.0000017859,0.0000017854,0.0000017830,0.0000017798, -0.0000017783,0.0000017782,0.0000017777,0.0000017756,0.0000017679, -0.0000017398,0.0000017016,0.0000016936,0.0000017047,0.0000016976, -0.0000016766,0.0000016626,0.0000016681,0.0000016850,0.0000017099, -0.0000017418,0.0000017768,0.0000018037,0.0000018194,0.0000018319, -0.0000018623,0.0000019200,0.0000019696,0.0000019764,0.0000019561, -0.0000019271,0.0000019223,0.0000019288,0.0000019370,0.0000019464, -0.0000019676,0.0000019932,0.0000020083,0.0000020107,0.0000020052, -0.0000019977,0.0000019918,0.0000019840,0.0000019757,0.0000019691, -0.0000019603,0.0000019506,0.0000019408,0.0000019269,0.0000019121, -0.0000019030,0.0000018973,0.0000018927,0.0000018939,0.0000018919, -0.0000018638,0.0000018278,0.0000018219,0.0000018312,0.0000018653, -0.0000019004,0.0000019060,0.0000018993,0.0000018968,0.0000018983, -0.0000018986,0.0000018991,0.0000019014,0.0000018996,0.0000018818, -0.0000018532,0.0000018431,0.0000018601,0.0000018868,0.0000019017, -0.0000019021,0.0000018973,0.0000018850,0.0000018689,0.0000018556, -0.0000018441,0.0000018278,0.0000018084,0.0000017919,0.0000017791, -0.0000017714,0.0000017701,0.0000017722,0.0000017773,0.0000017827, -0.0000017880,0.0000017942,0.0000018001,0.0000018097,0.0000018245, -0.0000018322,0.0000018281,0.0000018189,0.0000018074,0.0000017940, -0.0000017825,0.0000017740,0.0000017668,0.0000017615,0.0000017593, -0.0000017559,0.0000017436,0.0000017223,0.0000017054,0.0000016972, -0.0000016892,0.0000016825,0.0000016766,0.0000016660,0.0000016619, -0.0000016673,0.0000016694,0.0000016649,0.0000016588,0.0000016534, -0.0000016514,0.0000016533,0.0000016586,0.0000016625,0.0000016603, -0.0000016530,0.0000016470,0.0000016360,0.0000016161,0.0000015980, -0.0000015868,0.0000015844,0.0000015922,0.0000015990,0.0000016005, -0.0000015968,0.0000015901,0.0000015899,0.0000015948,0.0000015999, -0.0000016071,0.0000016249,0.0000016449,0.0000016641,0.0000016709, -0.0000016797,0.0000017034,0.0000017179,0.0000017187,0.0000017131, -0.0000017060,0.0000017018,0.0000016878,0.0000016745,0.0000016697, -0.0000016645,0.0000016584,0.0000016516,0.0000016504,0.0000016539, -0.0000016552,0.0000016523,0.0000016443,0.0000016353,0.0000016326, -0.0000016351,0.0000016385,0.0000016412,0.0000016436,0.0000016465, -0.0000016492,0.0000016459,0.0000016464,0.0000016457,0.0000016430, -0.0000016370,0.0000016287,0.0000016221,0.0000016183,0.0000016211, -0.0000016271,0.0000016271,0.0000016226,0.0000016181,0.0000016133, -0.0000016078,0.0000016029,0.0000016008,0.0000016020,0.0000016056, -0.0000016097,0.0000016137,0.0000016163,0.0000016207,0.0000016265, -0.0000016291,0.0000016365,0.0000016448,0.0000016502,0.0000016534, -0.0000016541,0.0000016693,0.0000017114,0.0000017555,0.0000017688, -0.0000017666,0.0000017638,0.0000017665,0.0000017685,0.0000017703, -0.0000017773,0.0000017908,0.0000017985,0.0000017843,0.0000017483, -0.0000017286,0.0000017198,0.0000017113,0.0000017055,0.0000017218, -0.0000017397,0.0000017202,0.0000017071,0.0000016862,0.0000016986, -0.0000017374,0.0000017478,0.0000017266,0.0000016881,0.0000016567, -0.0000016446,0.0000016383,0.0000016335,0.0000016344,0.0000016447, -0.0000016625,0.0000016815,0.0000016976,0.0000017020,0.0000017184, -0.0000017487,0.0000017596,0.0000017656,0.0000017711,0.0000017832, -0.0000017967,0.0000018031,0.0000018059,0.0000018132,0.0000017954, -0.0000017865,0.0000017841,0.0000017317,0.0000017131,0.0000017301, -0.0000017246,0.0000017240,0.0000017264,0.0000017221,0.0000017113, -0.0000017175,0.0000017289,0.0000017254,0.0000016989,0.0000016786, -0.0000016672,0.0000016688,0.0000016838,0.0000016857,0.0000016807, -0.0000016764,0.0000016867,0.0000017219,0.0000017547,0.0000017807, -0.0000018033,0.0000018128,0.0000018141,0.0000018142,0.0000018126, -0.0000018075,0.0000018018,0.0000017982,0.0000017909,0.0000017789, -0.0000017715,0.0000017680,0.0000017635,0.0000017557,0.0000017471, -0.0000017459,0.0000017496,0.0000017506,0.0000017581,0.0000017741, -0.0000017681,0.0000017309,0.0000016998,0.0000016902,0.0000016896, -0.0000016902,0.0000016898,0.0000016857,0.0000016810,0.0000016805, -0.0000016833,0.0000016991,0.0000017370,0.0000017667,0.0000017811, -0.0000017940,0.0000017975,0.0000018266,0.0000019107,0.0000019410, -0.0000019317,0.0000019697,0.0000019880,0.0000020024,0.0000020233, -0.0000020324,0.0000020383,0.0000020195,0.0000019967,0.0000019934, -0.0000019967,0.0000020017,0.0000020073,0.0000020174,0.0000020293, -0.0000020372,0.0000020396,0.0000020323,0.0000020238,0.0000020201, -0.0000020221,0.0000020306,0.0000020393,0.0000020467,0.0000020528, -0.0000020572,0.0000020592,0.0000020584,0.0000020557,0.0000020529, -0.0000020517,0.0000020505,0.0000020497,0.0000020502,0.0000020534, -0.0000020553,0.0000020480,0.0000020259,0.0000020092,0.0000019943, -0.0000019758,0.0000019481,0.0000019280,0.0000019230,0.0000019074, -0.0000018890,0.0000018984,0.0000019296,0.0000019468,0.0000019377, -0.0000019212,0.0000019162,0.0000019090,0.0000018786,0.0000018350, -0.0000018037,0.0000017936,0.0000017914,0.0000017919,0.0000017963, -0.0000018042,0.0000018123,0.0000018176,0.0000018186,0.0000018194, -0.0000018240,0.0000018275,0.0000018257,0.0000018209,0.0000018147, -0.0000018062,0.0000017971,0.0000017925,0.0000017954,0.0000018236, -0.0000018294,0.0000018231,0.0000018370,0.0000018345,0.0000018155, -0.0000018881,0.0000019356,0.0000019152,0.0000018863,0.0000018813, -0.0000017915,0.0000016657,0.0000016543,0.0000016588,0.0000016705, -0.0000016726,0.0000016647,0.0000016539,0.0000016346,0.0000015950, -0.0000015654,0.0000015523,0.0000015435,0.0000015529,0.0000015710, -0.0000015761,0.0000015801,0.0000015954,0.0000016156,0.0000016206, -0.0000016107,0.0000016114,0.0000016378,0.0000016688,0.0000016794, -0.0000016797,0.0000016853,0.0000017013,0.0000017174,0.0000017271, -0.0000017306,0.0000017236,0.0000016916,0.0000016419,0.0000016155, -0.0000016195,0.0000016382,0.0000016518,0.0000016473,0.0000016257, -0.0000015974,0.0000015736,0.0000015606,0.0000015493,0.0000015313, -0.0000015120,0.0000014986,0.0000014928,0.0000014930,0.0000014966, -0.0000014989,0.0000014994,0.0000015008,0.0000015026,0.0000015035, -0.0000015037,0.0000015043,0.0000015051,0.0000015052,0.0000015042, -0.0000015032,0.0000015021,0.0000015010,0.0000014999,0.0000014997, -0.0000015011,0.0000015042,0.0000015090,0.0000015153,0.0000015229, -0.0000015300,0.0000015332,0.0000015297,0.0000015166,0.0000015052, -0.0000015145,0.0000015466,0.0000015855,0.0000016150,0.0000016221, -0.0000016135,0.0000015963,0.0000015781,0.0000015649,0.0000015580, -0.0000015566,0.0000015566,0.0000015560,0.0000015552,0.0000015544, -0.0000015535,0.0000015532,0.0000015544,0.0000015579,0.0000015635, -0.0000015721,0.0000015862,0.0000016033,0.0000016181,0.0000016266, -0.0000016266,0.0000016245,0.0000016232,0.0000016360,0.0000016576, -0.0000016817,0.0000017045,0.0000017223,0.0000017346,0.0000017450, -0.0000017521,0.0000017533,0.0000017495,0.0000017401,0.0000017231, -0.0000017013,0.0000016770,0.0000016526,0.0000016310,0.0000016141, -0.0000016043,0.0000015997,0.0000016009,0.0000016021,0.0000016072, -0.0000016110,0.0000016151,0.0000016187,0.0000016213,0.0000016225, -0.0000016221,0.0000016210,0.0000016200,0.0000016190,0.0000016184, -0.0000016184,0.0000016189,0.0000016190,0.0000016176,0.0000016150, -0.0000016131,0.0000016124,0.0000016119,0.0000016101,0.0000016085, -0.0000016093,0.0000016059,0.0000016053,0.0000016093,0.0000016128, -0.0000016159,0.0000016183,0.0000016204,0.0000016214,0.0000016208, -0.0000016192,0.0000016175,0.0000016166,0.0000016176,0.0000016200, -0.0000016244,0.0000016303,0.0000016373,0.0000016454,0.0000016542, -0.0000016646,0.0000016733,0.0000016743,0.0000016698,0.0000016718, -0.0000016859,0.0000017262,0.0000017728,0.0000018050,0.0000018177, -0.0000018161,0.0000018141,0.0000018087,0.0000018038,0.0000017992, -0.0000017961,0.0000017948,0.0000017947,0.0000017970,0.0000017996, -0.0000018025,0.0000018069,0.0000018099,0.0000018114,0.0000018130, -0.0000018186,0.0000018313,0.0000018553,0.0000018753,0.0000018854, -0.0000018979,0.0000019164,0.0000019344,0.0000019438,0.0000019509, -0.0000019623,0.0000019684,0.0000019663,0.0000019602,0.0000019507, -0.0000019395,0.0000019336,0.0000019319,0.0000019333,0.0000019381, -0.0000019426,0.0000019457,0.0000019505,0.0000019594,0.0000019696, -0.0000019784,0.0000019846,0.0000019869,0.0000019842,0.0000019762, -0.0000019665,0.0000019589,0.0000019533,0.0000019509,0.0000019512, -0.0000019537,0.0000019552,0.0000019549,0.0000019548,0.0000019546, -0.0000019433,0.0000019079,0.0000018738,0.0000018688,0.0000018902, -0.0000019112,0.0000019139,0.0000019019,0.0000018766,0.0000018470, -0.0000018236,0.0000018108,0.0000018045,0.0000017992,0.0000017960, -0.0000017948,0.0000017945,0.0000017945,0.0000017934,0.0000017904, -0.0000017871,0.0000017849,0.0000017813,0.0000017729,0.0000017610, -0.0000017459,0.0000017434,0.0000017649,0.0000017963,0.0000017993, -0.0000017697,0.0000017262,0.0000016945,0.0000016869,0.0000016878, -0.0000016897,0.0000017090,0.0000017369,0.0000017631,0.0000017851, -0.0000018075,0.0000018519,0.0000019248,0.0000019724,0.0000019737, -0.0000019499,0.0000019302,0.0000019301,0.0000019414,0.0000019574, -0.0000019836,0.0000020101,0.0000020173,0.0000020070,0.0000019913, -0.0000019838,0.0000019793,0.0000019725,0.0000019671,0.0000019662, -0.0000019653,0.0000019664,0.0000019628,0.0000019477,0.0000019246, -0.0000019053,0.0000018944,0.0000018880,0.0000018870,0.0000018895, -0.0000018742,0.0000018345,0.0000018152,0.0000018247,0.0000018570, -0.0000018949,0.0000019079,0.0000019073,0.0000019056,0.0000019053, -0.0000019041,0.0000019040,0.0000019029,0.0000018907,0.0000018632, -0.0000018438,0.0000018539,0.0000018809,0.0000018982,0.0000019000, -0.0000018998,0.0000018976,0.0000018901,0.0000018746,0.0000018564, -0.0000018433,0.0000018303,0.0000018128,0.0000017956,0.0000017816, -0.0000017738,0.0000017734,0.0000017769,0.0000017822,0.0000017876, -0.0000017934,0.0000017988,0.0000018099,0.0000018273,0.0000018352, -0.0000018299,0.0000018195,0.0000018078,0.0000017942,0.0000017824, -0.0000017729,0.0000017650,0.0000017604,0.0000017590,0.0000017574, -0.0000017508,0.0000017355,0.0000017165,0.0000017046,0.0000016986, -0.0000016893,0.0000016816,0.0000016750,0.0000016652,0.0000016634, -0.0000016699,0.0000016715,0.0000016664,0.0000016606,0.0000016563, -0.0000016549,0.0000016580,0.0000016633,0.0000016647,0.0000016595, -0.0000016527,0.0000016455,0.0000016301,0.0000016088,0.0000015919, -0.0000015830,0.0000015845,0.0000015947,0.0000016009,0.0000016021, -0.0000015952,0.0000015893,0.0000015907,0.0000015956,0.0000015992, -0.0000016106,0.0000016314,0.0000016509,0.0000016681,0.0000016757, -0.0000016945,0.0000017146,0.0000017202,0.0000017188,0.0000017105, -0.0000017054,0.0000016993,0.0000016823,0.0000016738,0.0000016670, -0.0000016600,0.0000016494,0.0000016417,0.0000016424,0.0000016479, -0.0000016532,0.0000016522,0.0000016461,0.0000016384,0.0000016356, -0.0000016372,0.0000016397,0.0000016415,0.0000016429,0.0000016447, -0.0000016454,0.0000016466,0.0000016462,0.0000016434,0.0000016362, -0.0000016273,0.0000016218,0.0000016206,0.0000016248,0.0000016290, -0.0000016269,0.0000016223,0.0000016186,0.0000016148,0.0000016098, -0.0000016045,0.0000016011,0.0000016020,0.0000016058,0.0000016093, -0.0000016121,0.0000016149,0.0000016196,0.0000016248,0.0000016264, -0.0000016326,0.0000016401,0.0000016466,0.0000016528,0.0000016543, -0.0000016620,0.0000016952,0.0000017449,0.0000017724,0.0000017732, -0.0000017684,0.0000017677,0.0000017695,0.0000017740,0.0000017849, -0.0000017970,0.0000017964,0.0000017647,0.0000017340,0.0000017201, -0.0000017090,0.0000016994,0.0000017030,0.0000017298,0.0000017297, -0.0000017095,0.0000016938,0.0000016802,0.0000017160,0.0000017455, -0.0000017436,0.0000017072,0.0000016670,0.0000016507,0.0000016435, -0.0000016383,0.0000016335,0.0000016314,0.0000016344,0.0000016468, -0.0000016686,0.0000016909,0.0000017006,0.0000017126,0.0000017452, -0.0000017612,0.0000017666,0.0000017718,0.0000017788,0.0000017914, -0.0000017954,0.0000018030,0.0000018089,0.0000017849,0.0000017840, -0.0000017743,0.0000017150,0.0000017159,0.0000017294,0.0000017235, -0.0000017237,0.0000017257,0.0000017179,0.0000017105,0.0000017205, -0.0000017296,0.0000017168,0.0000016906,0.0000016737,0.0000016654, -0.0000016734,0.0000016844,0.0000016849,0.0000016827,0.0000016819, -0.0000016990,0.0000017343,0.0000017638,0.0000017905,0.0000018082, -0.0000018116,0.0000018114,0.0000018093,0.0000018052,0.0000018013, -0.0000017993,0.0000017952,0.0000017884,0.0000017830,0.0000017767, -0.0000017681,0.0000017586,0.0000017493,0.0000017466,0.0000017486, -0.0000017496,0.0000017550,0.0000017713,0.0000017697,0.0000017341, -0.0000017008,0.0000016897,0.0000016894,0.0000016901,0.0000016900, -0.0000016872,0.0000016816,0.0000016782,0.0000016790,0.0000016872, -0.0000017193,0.0000017585,0.0000017763,0.0000017899,0.0000017977, -0.0000018068,0.0000018800,0.0000019441,0.0000019313,0.0000019528, -0.0000019865,0.0000019905,0.0000020074,0.0000020247,0.0000020212, -0.0000019960,0.0000019911,0.0000020042,0.0000020128,0.0000020143, -0.0000020138,0.0000020136,0.0000020176,0.0000020228,0.0000020308, -0.0000020342,0.0000020331,0.0000020283,0.0000020223,0.0000020212, -0.0000020245,0.0000020286,0.0000020331,0.0000020377,0.0000020413, -0.0000020432,0.0000020439,0.0000020441,0.0000020440,0.0000020452, -0.0000020512,0.0000020583,0.0000020548,0.0000020365,0.0000020196, -0.0000020089,0.0000019921,0.0000019757,0.0000019474,0.0000019259, -0.0000019310,0.0000019360,0.0000019364,0.0000019420,0.0000019511, -0.0000019375,0.0000019120,0.0000019070,0.0000019105,0.0000018954, -0.0000018557,0.0000018177,0.0000018044,0.0000017996,0.0000017989, -0.0000018014,0.0000018048,0.0000018076,0.0000018114,0.0000018132, -0.0000018117,0.0000018118,0.0000018159,0.0000018212,0.0000018236, -0.0000018233,0.0000018213,0.0000018151,0.0000018051,0.0000017934, -0.0000017884,0.0000018118,0.0000018294,0.0000018211,0.0000018242, -0.0000018406,0.0000018226,0.0000018315,0.0000019150,0.0000019385, -0.0000019017,0.0000018863,0.0000018746,0.0000017691,0.0000016557, -0.0000016576,0.0000016687,0.0000016745,0.0000016696,0.0000016575, -0.0000016366,0.0000015919,0.0000015594,0.0000015532,0.0000015447, -0.0000015408,0.0000015493,0.0000015608,0.0000015799,0.0000016086, -0.0000016250,0.0000016205,0.0000016110,0.0000016224,0.0000016533, -0.0000016748,0.0000016782,0.0000016802,0.0000016909,0.0000017071, -0.0000017207,0.0000017292,0.0000017313,0.0000017181,0.0000016750, -0.0000016280,0.0000016160,0.0000016275,0.0000016459,0.0000016506, -0.0000016350,0.0000016073,0.0000015791,0.0000015622,0.0000015524, -0.0000015368,0.0000015161,0.0000015005,0.0000014930,0.0000014925, -0.0000014945,0.0000014957,0.0000014953,0.0000014949,0.0000014951, -0.0000014961,0.0000014982,0.0000014993,0.0000014964,0.0000014897, -0.0000014811,0.0000014732,0.0000014688,0.0000014677,0.0000014676, -0.0000014691,0.0000014738,0.0000014810,0.0000014887,0.0000014956, -0.0000015014,0.0000015064,0.0000015124,0.0000015205,0.0000015274, -0.0000015300,0.0000015225,0.0000015099,0.0000015089,0.0000015292, -0.0000015647,0.0000015972,0.0000016153,0.0000016229,0.0000016174, -0.0000016041,0.0000015908,0.0000015804,0.0000015732,0.0000015684, -0.0000015645,0.0000015600,0.0000015539,0.0000015526,0.0000015475, -0.0000015445,0.0000015478,0.0000015564,0.0000015673,0.0000015796, -0.0000015939,0.0000016082,0.0000016184,0.0000016228,0.0000016211, -0.0000016212,0.0000016195,0.0000016219,0.0000016259,0.0000016302, -0.0000016336,0.0000016387,0.0000016416,0.0000016410,0.0000016380, -0.0000016332,0.0000016260,0.0000016166,0.0000016102,0.0000016057, -0.0000016026,0.0000016006,0.0000016044,0.0000016096,0.0000016156, -0.0000016226,0.0000016289,0.0000016319,0.0000016319,0.0000016288, -0.0000016260,0.0000016212,0.0000016168,0.0000016135,0.0000016123, -0.0000016123,0.0000016133,0.0000016149,0.0000016173,0.0000016199, -0.0000016217,0.0000016227,0.0000016218,0.0000016219,0.0000016211, -0.0000016190,0.0000016162,0.0000016125,0.0000016089,0.0000016069, -0.0000016058,0.0000016054,0.0000016049,0.0000016045,0.0000016048, -0.0000016045,0.0000016050,0.0000016028,0.0000016037,0.0000016062, -0.0000016088,0.0000016110,0.0000016127,0.0000016152,0.0000016200, -0.0000016277,0.0000016370,0.0000016493,0.0000016660,0.0000016804, -0.0000016830,0.0000016749,0.0000016759,0.0000016911,0.0000017283, -0.0000017668,0.0000017935,0.0000018074,0.0000018131,0.0000018154, -0.0000018150,0.0000018135,0.0000018130,0.0000018133,0.0000018149, -0.0000018176,0.0000018181,0.0000018199,0.0000018197,0.0000018175, -0.0000018171,0.0000018188,0.0000018208,0.0000018266,0.0000018486, -0.0000018738,0.0000018860,0.0000018977,0.0000019159,0.0000019340, -0.0000019441,0.0000019507,0.0000019606,0.0000019662,0.0000019652, -0.0000019587,0.0000019465,0.0000019363,0.0000019353,0.0000019376, -0.0000019412,0.0000019457,0.0000019520,0.0000019614,0.0000019723, -0.0000019810,0.0000019864,0.0000019884,0.0000019874,0.0000019810, -0.0000019694,0.0000019583,0.0000019525,0.0000019508,0.0000019509, -0.0000019515,0.0000019526,0.0000019525,0.0000019509,0.0000019497, -0.0000019495,0.0000019448,0.0000019189,0.0000018800,0.0000018585, -0.0000018626,0.0000018806,0.0000018900,0.0000018850,0.0000018670, -0.0000018461,0.0000018257,0.0000018098,0.0000018022,0.0000017987, -0.0000017989,0.0000018024,0.0000018071,0.0000018129,0.0000018157, -0.0000018147,0.0000018109,0.0000018070,0.0000018013,0.0000017929, -0.0000017904,0.0000017995,0.0000018253,0.0000018587,0.0000018832, -0.0000018862,0.0000018707,0.0000018320,0.0000017801,0.0000017385, -0.0000017110,0.0000016923,0.0000016854,0.0000016927,0.0000017034, -0.0000017258,0.0000017627,0.0000018011,0.0000018602,0.0000019421, -0.0000019731,0.0000019730,0.0000019489,0.0000019397,0.0000019512, -0.0000019718,0.0000019969,0.0000020163,0.0000020120,0.0000019931, -0.0000019833,0.0000019802,0.0000019752,0.0000019680,0.0000019611, -0.0000019575,0.0000019571,0.0000019657,0.0000019704,0.0000019605, -0.0000019388,0.0000019156,0.0000018938,0.0000018834,0.0000018828, -0.0000018862,0.0000018801,0.0000018471,0.0000018149,0.0000018173, -0.0000018454,0.0000018834,0.0000019060,0.0000019086,0.0000019075, -0.0000019068,0.0000019065,0.0000019046,0.0000018960,0.0000018696, -0.0000018450,0.0000018497,0.0000018755,0.0000018919,0.0000018924, -0.0000018917,0.0000018928,0.0000018936,0.0000018915,0.0000018788, -0.0000018585,0.0000018435,0.0000018326,0.0000018167,0.0000017994, -0.0000017860,0.0000017791,0.0000017791,0.0000017825,0.0000017873, -0.0000017924,0.0000017970,0.0000018074,0.0000018266,0.0000018372, -0.0000018320,0.0000018211,0.0000018088,0.0000017943,0.0000017816, -0.0000017711,0.0000017623,0.0000017575,0.0000017559,0.0000017546, -0.0000017512,0.0000017425,0.0000017273,0.0000017123,0.0000017051, -0.0000016994,0.0000016887,0.0000016807,0.0000016731,0.0000016645, -0.0000016657,0.0000016727,0.0000016734,0.0000016686,0.0000016635, -0.0000016595,0.0000016591,0.0000016627,0.0000016664,0.0000016655, -0.0000016594,0.0000016518,0.0000016413,0.0000016221,0.0000016006, -0.0000015856,0.0000015810,0.0000015870,0.0000015977,0.0000016032, -0.0000016018,0.0000015924,0.0000015889,0.0000015921,0.0000015953, -0.0000015994,0.0000016168,0.0000016372,0.0000016567,0.0000016718, -0.0000016858,0.0000017078,0.0000017199,0.0000017217,0.0000017170, -0.0000017083,0.0000017058,0.0000016957,0.0000016798,0.0000016723, -0.0000016640,0.0000016539,0.0000016418,0.0000016347,0.0000016347, -0.0000016403,0.0000016478,0.0000016504,0.0000016480,0.0000016418, -0.0000016378,0.0000016387,0.0000016412,0.0000016428,0.0000016441, -0.0000016459,0.0000016471,0.0000016464,0.0000016434,0.0000016358, -0.0000016271,0.0000016224,0.0000016226,0.0000016266,0.0000016287, -0.0000016251,0.0000016213,0.0000016213,0.0000016209,0.0000016170, -0.0000016107,0.0000016058,0.0000016050,0.0000016076,0.0000016107, -0.0000016125,0.0000016145,0.0000016187,0.0000016239,0.0000016253, -0.0000016299,0.0000016353,0.0000016420,0.0000016507,0.0000016545, -0.0000016582,0.0000016807,0.0000017302,0.0000017713,0.0000017784, -0.0000017753,0.0000017723,0.0000017740,0.0000017816,0.0000017939, -0.0000018002,0.0000017848,0.0000017469,0.0000017255,0.0000017120, -0.0000016976,0.0000016922,0.0000017092,0.0000017310,0.0000017149, -0.0000017001,0.0000016782,0.0000016859,0.0000017306,0.0000017476, -0.0000017305,0.0000016835,0.0000016560,0.0000016482,0.0000016418, -0.0000016390,0.0000016367,0.0000016342,0.0000016332,0.0000016351, -0.0000016521,0.0000016819,0.0000016988,0.0000017085,0.0000017397, -0.0000017608,0.0000017672,0.0000017740,0.0000017752,0.0000017830, -0.0000017889,0.0000018050,0.0000018005,0.0000017778,0.0000017810, -0.0000017608,0.0000017073,0.0000017202,0.0000017285,0.0000017226, -0.0000017238,0.0000017239,0.0000017135,0.0000017106,0.0000017225, -0.0000017263,0.0000017085,0.0000016843,0.0000016702,0.0000016668, -0.0000016766,0.0000016847,0.0000016872,0.0000016852,0.0000016855, -0.0000017098,0.0000017440,0.0000017715,0.0000017963,0.0000018081, -0.0000018087,0.0000018062,0.0000018021,0.0000017991,0.0000017986, -0.0000017980,0.0000017961,0.0000017922,0.0000017830,0.0000017709, -0.0000017603,0.0000017510,0.0000017474,0.0000017487,0.0000017493, -0.0000017526,0.0000017681,0.0000017701,0.0000017373,0.0000017023, -0.0000016896,0.0000016885,0.0000016886,0.0000016885,0.0000016872, -0.0000016826,0.0000016764,0.0000016751,0.0000016788,0.0000017000, -0.0000017435,0.0000017700,0.0000017837,0.0000017966,0.0000017984, -0.0000018464,0.0000019317,0.0000019417,0.0000019347,0.0000019794, -0.0000019916,0.0000019892,0.0000019991,0.0000019950,0.0000019862, -0.0000020008,0.0000020232,0.0000020283,0.0000020300,0.0000020287, -0.0000020272,0.0000020234,0.0000020197,0.0000020187,0.0000020197, -0.0000020252,0.0000020303,0.0000020308,0.0000020301,0.0000020301, -0.0000020307,0.0000020313,0.0000020332,0.0000020359,0.0000020379, -0.0000020403,0.0000020451,0.0000020514,0.0000020549,0.0000020502, -0.0000020347,0.0000020221,0.0000020171,0.0000020050,0.0000019885, -0.0000019765,0.0000019457,0.0000019234,0.0000019349,0.0000019494, -0.0000019533,0.0000019487,0.0000019326,0.0000019062,0.0000018910, -0.0000018991,0.0000018994,0.0000018735,0.0000018328,0.0000018089, -0.0000018047,0.0000018061,0.0000018074,0.0000018093,0.0000018117, -0.0000018109,0.0000018091,0.0000018069,0.0000018041,0.0000018061, -0.0000018115,0.0000018152,0.0000018167,0.0000018186,0.0000018208, -0.0000018194,0.0000018095,0.0000017946,0.0000017835,0.0000017994, -0.0000018283,0.0000018211,0.0000018158,0.0000018313,0.0000018399, -0.0000018172,0.0000018555,0.0000019344,0.0000019350,0.0000018930, -0.0000018846,0.0000018658,0.0000017480,0.0000016559,0.0000016640, -0.0000016756,0.0000016741,0.0000016615,0.0000016428,0.0000015986, -0.0000015583,0.0000015547,0.0000015517,0.0000015478,0.0000015514, -0.0000015683,0.0000015952,0.0000016203,0.0000016264,0.0000016156, -0.0000016122,0.0000016347,0.0000016646,0.0000016758,0.0000016767, -0.0000016835,0.0000016973,0.0000017113,0.0000017222,0.0000017301, -0.0000017311,0.0000017078,0.0000016581,0.0000016217,0.0000016202, -0.0000016373,0.0000016492,0.0000016434,0.0000016197,0.0000015897, -0.0000015666,0.0000015553,0.0000015428,0.0000015220,0.0000015030, -0.0000014934,0.0000014922,0.0000014939,0.0000014948,0.0000014935, -0.0000014920,0.0000014911,0.0000014915,0.0000014918,0.0000014858, -0.0000014709,0.0000014539,0.0000014413,0.0000014345,0.0000014324, -0.0000014342,0.0000014360,0.0000014365,0.0000014338,0.0000014298, -0.0000014334,0.0000014456,0.0000014624,0.0000014785,0.0000014917, -0.0000014997,0.0000015034,0.0000015085,0.0000015177,0.0000015251, -0.0000015249,0.0000015137,0.0000015048,0.0000015128,0.0000015373, -0.0000015672,0.0000015935,0.0000016124,0.0000016176,0.0000016214, -0.0000016211,0.0000016182,0.0000016143,0.0000016103,0.0000016051, -0.0000015970,0.0000015865,0.0000015723,0.0000015567,0.0000015468, -0.0000015450,0.0000015472,0.0000015557,0.0000015688,0.0000015824, -0.0000015949,0.0000016064,0.0000016145,0.0000016182,0.0000016181, -0.0000016170,0.0000016162,0.0000016143,0.0000016151,0.0000016150, -0.0000016145,0.0000016139,0.0000016144,0.0000016157,0.0000016135, -0.0000016138,0.0000016164,0.0000016195,0.0000016218,0.0000016250, -0.0000016279,0.0000016302,0.0000016317,0.0000016310,0.0000016297, -0.0000016242,0.0000016173,0.0000016099,0.0000016025,0.0000015977, -0.0000015950,0.0000015939,0.0000015939,0.0000015951,0.0000015968, -0.0000015987,0.0000016013,0.0000016053,0.0000016106,0.0000016149, -0.0000016177,0.0000016204,0.0000016228,0.0000016230,0.0000016227, -0.0000016228,0.0000016195,0.0000016155,0.0000016120,0.0000016107, -0.0000016103,0.0000016096,0.0000016086,0.0000016078,0.0000016062, -0.0000016032,0.0000016018,0.0000016026,0.0000016037,0.0000016060, -0.0000016078,0.0000016087,0.0000016102,0.0000016160,0.0000016235, -0.0000016316,0.0000016489,0.0000016745,0.0000016891,0.0000016895, -0.0000016780,0.0000016780,0.0000016911,0.0000017175,0.0000017450, -0.0000017669,0.0000017833,0.0000017961,0.0000018052,0.0000018102, -0.0000018134,0.0000018154,0.0000018155,0.0000018121,0.0000018040, -0.0000017908,0.0000017789,0.0000017762,0.0000017859,0.0000018070, -0.0000018217,0.0000018268,0.0000018445,0.0000018709,0.0000018858, -0.0000018963,0.0000019129,0.0000019314,0.0000019434,0.0000019503, -0.0000019590,0.0000019647,0.0000019639,0.0000019551,0.0000019418, -0.0000019371,0.0000019386,0.0000019406,0.0000019445,0.0000019514, -0.0000019617,0.0000019726,0.0000019818,0.0000019876,0.0000019895, -0.0000019888,0.0000019826,0.0000019707,0.0000019581,0.0000019513, -0.0000019506,0.0000019515,0.0000019521,0.0000019522,0.0000019514, -0.0000019494,0.0000019471,0.0000019459,0.0000019450,0.0000019362, -0.0000019094,0.0000018737,0.0000018502,0.0000018405,0.0000018424, -0.0000018412,0.0000018357,0.0000018266,0.0000018224,0.0000018137, -0.0000018137,0.0000018170,0.0000018291,0.0000018443,0.0000018615, -0.0000018760,0.0000018836,0.0000018854,0.0000018839,0.0000018819, -0.0000018813,0.0000018815,0.0000018869,0.0000019015,0.0000019205, -0.0000019343,0.0000019370,0.0000019325,0.0000019245,0.0000019098, -0.0000018772,0.0000018305,0.0000017846,0.0000017476,0.0000017193, -0.0000017026,0.0000016919,0.0000016835,0.0000017083,0.0000017577, -0.0000018084,0.0000018871,0.0000019598,0.0000019750,0.0000019732, -0.0000019602,0.0000019638,0.0000019844,0.0000020054,0.0000020128, -0.0000020004,0.0000019893,0.0000019845,0.0000019775,0.0000019710, -0.0000019651,0.0000019598,0.0000019555,0.0000019514,0.0000019586, -0.0000019687,0.0000019661,0.0000019497,0.0000019272,0.0000019002, -0.0000018814,0.0000018788,0.0000018822,0.0000018812,0.0000018610, -0.0000018245,0.0000018140,0.0000018314,0.0000018664,0.0000018956, -0.0000019053,0.0000019060,0.0000019063,0.0000019058,0.0000018977, -0.0000018731,0.0000018436,0.0000018444,0.0000018706,0.0000018872, -0.0000018843,0.0000018799,0.0000018814,0.0000018853,0.0000018893, -0.0000018907,0.0000018822,0.0000018615,0.0000018443,0.0000018347, -0.0000018206,0.0000018042,0.0000017924,0.0000017861,0.0000017853, -0.0000017879,0.0000017921,0.0000017959,0.0000018033,0.0000018218, -0.0000018377,0.0000018356,0.0000018248,0.0000018118,0.0000017957, -0.0000017804,0.0000017680,0.0000017586,0.0000017536,0.0000017518, -0.0000017500,0.0000017473,0.0000017429,0.0000017341,0.0000017208, -0.0000017097,0.0000017055,0.0000016992,0.0000016878,0.0000016789, -0.0000016713,0.0000016655,0.0000016684,0.0000016750,0.0000016755, -0.0000016713,0.0000016665,0.0000016631,0.0000016630,0.0000016658, -0.0000016683,0.0000016668,0.0000016596,0.0000016494,0.0000016340, -0.0000016122,0.0000015922,0.0000015812,0.0000015809,0.0000015912, -0.0000016007,0.0000016046,0.0000015995,0.0000015900,0.0000015897, -0.0000015929,0.0000015941,0.0000016025,0.0000016238,0.0000016423, -0.0000016622,0.0000016778,0.0000016990,0.0000017161,0.0000017218, -0.0000017218,0.0000017139,0.0000017078,0.0000017063,0.0000016920, -0.0000016792,0.0000016707,0.0000016613,0.0000016482,0.0000016365, -0.0000016301,0.0000016289,0.0000016334,0.0000016413,0.0000016491, -0.0000016499,0.0000016456,0.0000016418,0.0000016417,0.0000016430, -0.0000016446,0.0000016459,0.0000016469,0.0000016461,0.0000016430, -0.0000016358,0.0000016278,0.0000016241,0.0000016243,0.0000016269, -0.0000016272,0.0000016225,0.0000016238,0.0000016339,0.0000016402, -0.0000016383,0.0000016305,0.0000016221,0.0000016175,0.0000016161, -0.0000016165,0.0000016161,0.0000016155,0.0000016181,0.0000016225, -0.0000016249,0.0000016281,0.0000016313,0.0000016373,0.0000016474, -0.0000016541,0.0000016567,0.0000016698,0.0000017129,0.0000017630, -0.0000017821,0.0000017820,0.0000017796,0.0000017813,0.0000017900, -0.0000017996,0.0000017981,0.0000017668,0.0000017346,0.0000017187, -0.0000017026,0.0000016868,0.0000016884,0.0000017166,0.0000017227, -0.0000017028,0.0000016868,0.0000016667,0.0000017009,0.0000017397, -0.0000017438,0.0000017093,0.0000016644,0.0000016509,0.0000016436, -0.0000016398,0.0000016408,0.0000016428,0.0000016425,0.0000016387, -0.0000016340,0.0000016378,0.0000016675,0.0000016946,0.0000017057, -0.0000017330,0.0000017584,0.0000017668,0.0000017767,0.0000017745, -0.0000017766,0.0000017891,0.0000018062,0.0000017889,0.0000017730, -0.0000017779,0.0000017449,0.0000017008,0.0000017247,0.0000017273, -0.0000017227,0.0000017239,0.0000017221,0.0000017106,0.0000017108, -0.0000017243,0.0000017242,0.0000017010,0.0000016797,0.0000016680, -0.0000016679,0.0000016792,0.0000016859,0.0000016897,0.0000016851, -0.0000016895,0.0000017210,0.0000017511,0.0000017755,0.0000017971, -0.0000018057,0.0000018049,0.0000018010,0.0000017977,0.0000017975, -0.0000017992,0.0000018002,0.0000017973,0.0000017857,0.0000017716, -0.0000017608,0.0000017514,0.0000017473,0.0000017491,0.0000017495, -0.0000017509,0.0000017651,0.0000017701,0.0000017401,0.0000017039, -0.0000016896,0.0000016875,0.0000016861,0.0000016855,0.0000016854, -0.0000016830,0.0000016758,0.0000016709,0.0000016721,0.0000016835, -0.0000017194,0.0000017578,0.0000017758,0.0000017908,0.0000017973, -0.0000018169,0.0000018998,0.0000019500,0.0000019305,0.0000019559, -0.0000019946,0.0000019923,0.0000019849,0.0000019835,0.0000019930, -0.0000020158,0.0000020305,0.0000020299,0.0000020274,0.0000020212, -0.0000020198,0.0000020213,0.0000020213,0.0000020187,0.0000020135, -0.0000020124,0.0000020138,0.0000020189,0.0000020250,0.0000020310, -0.0000020370,0.0000020406,0.0000020432,0.0000020467,0.0000020499, -0.0000020519,0.0000020494,0.0000020375,0.0000020222,0.0000020169, -0.0000020184,0.0000020120,0.0000019943,0.0000019862,0.0000019774, -0.0000019404,0.0000019154,0.0000019260,0.0000019436,0.0000019431, -0.0000019250,0.0000018979,0.0000018806,0.0000018828,0.0000018983, -0.0000018885,0.0000018488,0.0000018150,0.0000018073,0.0000018087, -0.0000018120,0.0000018145,0.0000018154,0.0000018145,0.0000018126, -0.0000018088,0.0000018035,0.0000018003,0.0000018036,0.0000018104, -0.0000018142,0.0000018123,0.0000018109,0.0000018129,0.0000018144, -0.0000018090,0.0000017933,0.0000017780,0.0000017885,0.0000018257, -0.0000018246,0.0000018102,0.0000018177,0.0000018404,0.0000018326, -0.0000018144,0.0000018822,0.0000019425,0.0000019281,0.0000018895, -0.0000018832,0.0000018543,0.0000017282,0.0000016572,0.0000016707, -0.0000016777,0.0000016680,0.0000016514,0.0000016149,0.0000015636, -0.0000015537,0.0000015573,0.0000015635,0.0000015735,0.0000015886, -0.0000016084,0.0000016228,0.0000016212,0.0000016108,0.0000016161, -0.0000016461,0.0000016717,0.0000016761,0.0000016775,0.0000016877, -0.0000017019,0.0000017142,0.0000017245,0.0000017323,0.0000017274, -0.0000016928,0.0000016427,0.0000016225,0.0000016299,0.0000016463, -0.0000016494,0.0000016330,0.0000016044,0.0000015762,0.0000015600, -0.0000015493,0.0000015307,0.0000015089,0.0000014954,0.0000014916, -0.0000014929,0.0000014944,0.0000014936,0.0000014913,0.0000014894, -0.0000014893,0.0000014856,0.0000014697,0.0000014466,0.0000014290, -0.0000014219,0.0000014216,0.0000014257,0.0000014297,0.0000014331, -0.0000014366,0.0000014384,0.0000014355,0.0000014288,0.0000014216, -0.0000014184,0.0000014229,0.0000014307,0.0000014467,0.0000014647, -0.0000014818,0.0000014937,0.0000015000,0.0000015061,0.0000015159, -0.0000015226,0.0000015184,0.0000015095,0.0000015057,0.0000015132, -0.0000015316,0.0000015554,0.0000015776,0.0000015949,0.0000016068, -0.0000016151,0.0000016192,0.0000016233,0.0000016273,0.0000016292, -0.0000016263,0.0000016197,0.0000016083,0.0000015922,0.0000015742, -0.0000015581,0.0000015522,0.0000015513,0.0000015555,0.0000015651, -0.0000015777,0.0000015894,0.0000015990,0.0000016062,0.0000016114, -0.0000016144,0.0000016157,0.0000016157,0.0000016175,0.0000016183, -0.0000016182,0.0000016192,0.0000016213,0.0000016230,0.0000016243, -0.0000016259,0.0000016278,0.0000016293,0.0000016315,0.0000016309, -0.0000016279,0.0000016232,0.0000016166,0.0000016087,0.0000016019, -0.0000015970,0.0000015934,0.0000015904,0.0000015887,0.0000015880, -0.0000015883,0.0000015886,0.0000015894,0.0000015909,0.0000015917, -0.0000015918,0.0000015936,0.0000015966,0.0000016008,0.0000016046, -0.0000016077,0.0000016111,0.0000016148,0.0000016185,0.0000016233, -0.0000016234,0.0000016224,0.0000016206,0.0000016173,0.0000016140, -0.0000016131,0.0000016126,0.0000016132,0.0000016125,0.0000016090, -0.0000016049,0.0000016009,0.0000015975,0.0000015994,0.0000016033, -0.0000016063,0.0000016070,0.0000016117,0.0000016196,0.0000016230, -0.0000016323,0.0000016594,0.0000016905,0.0000016998,0.0000016918, -0.0000016805,0.0000016798,0.0000016821,0.0000016962,0.0000017118, -0.0000017291,0.0000017455,0.0000017604,0.0000017707,0.0000017758, -0.0000017758,0.0000017689,0.0000017543,0.0000017355,0.0000017188, -0.0000017116,0.0000017149,0.0000017367,0.0000017786,0.0000018153, -0.0000018293,0.0000018420,0.0000018653,0.0000018831,0.0000018933, -0.0000019078,0.0000019262,0.0000019410,0.0000019496,0.0000019577, -0.0000019641,0.0000019621,0.0000019498,0.0000019391,0.0000019386, -0.0000019393,0.0000019395,0.0000019421,0.0000019475,0.0000019553, -0.0000019649,0.0000019752,0.0000019839,0.0000019884,0.0000019874, -0.0000019805,0.0000019687,0.0000019581,0.0000019539,0.0000019539, -0.0000019546,0.0000019544,0.0000019531,0.0000019512,0.0000019492, -0.0000019479,0.0000019471,0.0000019460,0.0000019385,0.0000019172, -0.0000018885,0.0000018640,0.0000018526,0.0000018500,0.0000018514, -0.0000018544,0.0000018610,0.0000018693,0.0000018809,0.0000018940, -0.0000019084,0.0000019253,0.0000019417,0.0000019531,0.0000019592, -0.0000019617,0.0000019627,0.0000019634,0.0000019654,0.0000019679, -0.0000019701,0.0000019721,0.0000019727,0.0000019700,0.0000019650, -0.0000019596,0.0000019534,0.0000019462,0.0000019329,0.0000019068, -0.0000018691,0.0000018291,0.0000017937,0.0000017685,0.0000017472, -0.0000017141,0.0000016895,0.0000017023,0.0000017664,0.0000018314, -0.0000019269,0.0000019665,0.0000019800,0.0000019782,0.0000019788, -0.0000019942,0.0000020039,0.0000019996,0.0000019935,0.0000019909, -0.0000019802,0.0000019676,0.0000019606,0.0000019558,0.0000019529, -0.0000019499,0.0000019477,0.0000019548,0.0000019647,0.0000019665, -0.0000019583,0.0000019367,0.0000019092,0.0000018852,0.0000018766, -0.0000018777,0.0000018788,0.0000018712,0.0000018418,0.0000018164, -0.0000018214,0.0000018473,0.0000018766,0.0000018935,0.0000018992, -0.0000018988,0.0000018910,0.0000018695,0.0000018439,0.0000018415, -0.0000018660,0.0000018856,0.0000018804,0.0000018676,0.0000018672, -0.0000018734,0.0000018791,0.0000018846,0.0000018890,0.0000018846, -0.0000018646,0.0000018454,0.0000018372,0.0000018253,0.0000018098, -0.0000017991,0.0000017928,0.0000017911,0.0000017926,0.0000017959, -0.0000018003,0.0000018138,0.0000018345,0.0000018408,0.0000018310, -0.0000018172,0.0000017998,0.0000017806,0.0000017647,0.0000017544, -0.0000017493,0.0000017476,0.0000017460,0.0000017435,0.0000017405, -0.0000017361,0.0000017273,0.0000017155,0.0000017082,0.0000017057, -0.0000016986,0.0000016861,0.0000016763,0.0000016705,0.0000016683, -0.0000016713,0.0000016766,0.0000016772,0.0000016737,0.0000016692, -0.0000016661,0.0000016656,0.0000016676,0.0000016704,0.0000016684, -0.0000016589,0.0000016441,0.0000016239,0.0000016026,0.0000015865, -0.0000015798,0.0000015843,0.0000015952,0.0000016032,0.0000016045, -0.0000015954,0.0000015892,0.0000015907,0.0000015923,0.0000015936, -0.0000016083,0.0000016300,0.0000016475,0.0000016678,0.0000016884, -0.0000017101,0.0000017196,0.0000017223,0.0000017202,0.0000017112, -0.0000017097,0.0000017061,0.0000016896,0.0000016799,0.0000016702, -0.0000016588,0.0000016445,0.0000016336,0.0000016282,0.0000016261, -0.0000016285,0.0000016355,0.0000016453,0.0000016493,0.0000016490, -0.0000016466,0.0000016450,0.0000016450,0.0000016465,0.0000016464, -0.0000016454,0.0000016425,0.0000016366,0.0000016299,0.0000016264, -0.0000016256,0.0000016266,0.0000016249,0.0000016217,0.0000016320, -0.0000016500,0.0000016578,0.0000016578,0.0000016543,0.0000016472, -0.0000016390,0.0000016329,0.0000016290,0.0000016248,0.0000016202, -0.0000016184,0.0000016202,0.0000016235,0.0000016269,0.0000016285, -0.0000016330,0.0000016436,0.0000016528,0.0000016571,0.0000016636, -0.0000016965,0.0000017500,0.0000017823,0.0000017865,0.0000017863, -0.0000017887,0.0000017961,0.0000018002,0.0000017860,0.0000017492, -0.0000017263,0.0000017117,0.0000016921,0.0000016789,0.0000016917, -0.0000017184,0.0000017104,0.0000016935,0.0000016691,0.0000016657, -0.0000017147,0.0000017424,0.0000017343,0.0000016853,0.0000016527, -0.0000016447,0.0000016390,0.0000016406,0.0000016449,0.0000016489, -0.0000016502,0.0000016477,0.0000016390,0.0000016312,0.0000016508, -0.0000016872,0.0000017033,0.0000017269,0.0000017553,0.0000017658, -0.0000017776,0.0000017773,0.0000017776,0.0000017952,0.0000018042, -0.0000017775,0.0000017720,0.0000017729,0.0000017267,0.0000017015, -0.0000017277,0.0000017264,0.0000017234,0.0000017240,0.0000017196, -0.0000017088,0.0000017129,0.0000017250,0.0000017200,0.0000016947, -0.0000016764,0.0000016672,0.0000016712,0.0000016812,0.0000016881, -0.0000016906,0.0000016845,0.0000016970,0.0000017300,0.0000017544, -0.0000017743,0.0000017922,0.0000018001,0.0000018004,0.0000017983, -0.0000017977,0.0000017998,0.0000018011,0.0000017979,0.0000017843, -0.0000017701,0.0000017608,0.0000017514,0.0000017457,0.0000017482, -0.0000017499,0.0000017502,0.0000017626,0.0000017680,0.0000017425, -0.0000017050,0.0000016894,0.0000016863,0.0000016833,0.0000016819, -0.0000016830,0.0000016827,0.0000016756,0.0000016674,0.0000016665, -0.0000016718,0.0000016935,0.0000017342,0.0000017643,0.0000017817, -0.0000017952,0.0000017990,0.0000018610,0.0000019416,0.0000019422, -0.0000019327,0.0000019767,0.0000020013,0.0000019988,0.0000019987, -0.0000020108,0.0000020250,0.0000020302,0.0000020276,0.0000020068, -0.0000019838,0.0000019773,0.0000019820,0.0000019905,0.0000019991, -0.0000020046,0.0000020057,0.0000020036,0.0000020028,0.0000020046, -0.0000020086,0.0000020143,0.0000020191,0.0000020216,0.0000020221, -0.0000020193,0.0000020145,0.0000020140,0.0000020169,0.0000020174, -0.0000020098,0.0000019915,0.0000019822,0.0000019863,0.0000019737, -0.0000019299,0.0000019008,0.0000019040,0.0000019104,0.0000019035, -0.0000018860,0.0000018747,0.0000018760,0.0000018881,0.0000018887, -0.0000018610,0.0000018234,0.0000018054,0.0000018056,0.0000018103, -0.0000018151,0.0000018172,0.0000018166,0.0000018147,0.0000018127, -0.0000018102,0.0000018068,0.0000018051,0.0000018089,0.0000018168, -0.0000018192,0.0000018145,0.0000018069,0.0000018040,0.0000018044, -0.0000018014,0.0000017898,0.0000017739,0.0000017795,0.0000018194, -0.0000018310,0.0000018074,0.0000018077,0.0000018264,0.0000018454, -0.0000018200,0.0000018252,0.0000019091,0.0000019427,0.0000019205, -0.0000018907,0.0000018861,0.0000018399,0.0000017121,0.0000016608, -0.0000016746,0.0000016757,0.0000016608,0.0000016343,0.0000015812, -0.0000015559,0.0000015600,0.0000015746,0.0000015882,0.0000015980, -0.0000016082,0.0000016181,0.0000016159,0.0000016086,0.0000016210, -0.0000016547,0.0000016766,0.0000016777,0.0000016803,0.0000016899, -0.0000017027,0.0000017149,0.0000017267,0.0000017329,0.0000017201, -0.0000016758,0.0000016330,0.0000016260,0.0000016411,0.0000016518, -0.0000016453,0.0000016207,0.0000015905,0.0000015678,0.0000015560, -0.0000015409,0.0000015186,0.0000015012,0.0000014933,0.0000014929, -0.0000014944,0.0000014940,0.0000014924,0.0000014906,0.0000014881, -0.0000014793,0.0000014577,0.0000014327,0.0000014208,0.0000014199, -0.0000014238,0.0000014271,0.0000014296,0.0000014320,0.0000014337, -0.0000014367,0.0000014416,0.0000014437,0.0000014401,0.0000014354, -0.0000014295,0.0000014238,0.0000014218,0.0000014239,0.0000014299, -0.0000014378,0.0000014519,0.0000014693,0.0000014854,0.0000014966, -0.0000015059,0.0000015155,0.0000015191,0.0000015144,0.0000015093, -0.0000015049,0.0000015087,0.0000015204,0.0000015349,0.0000015487, -0.0000015614,0.0000015728,0.0000015826,0.0000015918,0.0000016001, -0.0000016070,0.0000016128,0.0000016150,0.0000016107,0.0000016062, -0.0000015981,0.0000015860,0.0000015725,0.0000015597,0.0000015581, -0.0000015564,0.0000015592,0.0000015677,0.0000015774,0.0000015846, -0.0000015903,0.0000015963,0.0000016019,0.0000016059,0.0000016078, -0.0000016087,0.0000016103,0.0000016127,0.0000016146,0.0000016156, -0.0000016160,0.0000016160,0.0000016155,0.0000016142,0.0000016120, -0.0000016092,0.0000016056,0.0000016015,0.0000015977,0.0000015951, -0.0000015933,0.0000015919,0.0000015911,0.0000015927,0.0000015956, -0.0000015989,0.0000016007,0.0000016013,0.0000016016,0.0000016008, -0.0000015987,0.0000015959,0.0000015943,0.0000015955,0.0000015972, -0.0000015993,0.0000016001,0.0000016013,0.0000016034,0.0000016089, -0.0000016153,0.0000016200,0.0000016236,0.0000016233,0.0000016210, -0.0000016170,0.0000016131,0.0000016130,0.0000016151,0.0000016161, -0.0000016147,0.0000016085,0.0000015994,0.0000015950,0.0000015943, -0.0000016001,0.0000016032,0.0000016081,0.0000016182,0.0000016214, -0.0000016241,0.0000016429,0.0000016776,0.0000017021,0.0000017059, -0.0000016962,0.0000016873,0.0000016824,0.0000016817,0.0000016855, -0.0000016872,0.0000016932,0.0000017018,0.0000017064,0.0000017077, -0.0000017059,0.0000016990,0.0000016897,0.0000016843,0.0000016849, -0.0000016880,0.0000016926,0.0000017055,0.0000017489,0.0000018000, -0.0000018270,0.0000018386,0.0000018574,0.0000018769,0.0000018888, -0.0000019011,0.0000019186,0.0000019369,0.0000019492,0.0000019576, -0.0000019632,0.0000019597,0.0000019461,0.0000019383,0.0000019391, -0.0000019393,0.0000019391,0.0000019394,0.0000019413,0.0000019457, -0.0000019530,0.0000019633,0.0000019747,0.0000019835,0.0000019866, -0.0000019841,0.0000019765,0.0000019691,0.0000019656,0.0000019650, -0.0000019659,0.0000019673,0.0000019682,0.0000019681,0.0000019668, -0.0000019644,0.0000019613,0.0000019583,0.0000019529,0.0000019426, -0.0000019300,0.0000019228,0.0000019246,0.0000019323,0.0000019411, -0.0000019489,0.0000019580,0.0000019673,0.0000019746,0.0000019801, -0.0000019853,0.0000019893,0.0000019919,0.0000019938,0.0000019950, -0.0000019961,0.0000019970,0.0000019980,0.0000019985,0.0000019975, -0.0000019944,0.0000019907,0.0000019863,0.0000019817,0.0000019769, -0.0000019724,0.0000019686,0.0000019607,0.0000019467,0.0000019245, -0.0000018953,0.0000018634,0.0000018373,0.0000018227,0.0000018010, -0.0000017444,0.0000016879,0.0000017118,0.0000017915,0.0000018762, -0.0000019560,0.0000019695,0.0000019847,0.0000019886,0.0000019945, -0.0000019925,0.0000019869,0.0000019910,0.0000019887,0.0000019726, -0.0000019590,0.0000019542,0.0000019498,0.0000019455,0.0000019411, -0.0000019395,0.0000019489,0.0000019610,0.0000019654,0.0000019629, -0.0000019456,0.0000019188,0.0000018948,0.0000018782,0.0000018731, -0.0000018760,0.0000018758,0.0000018604,0.0000018345,0.0000018244, -0.0000018339,0.0000018523,0.0000018681,0.0000018725,0.0000018677, -0.0000018544,0.0000018416,0.0000018418,0.0000018650,0.0000018827, -0.0000018788,0.0000018611,0.0000018544,0.0000018578,0.0000018670, -0.0000018739,0.0000018798,0.0000018872,0.0000018867,0.0000018681, -0.0000018476,0.0000018402,0.0000018307,0.0000018159,0.0000018053, -0.0000017984,0.0000017955,0.0000017964,0.0000017992,0.0000018068, -0.0000018257,0.0000018416,0.0000018384,0.0000018248,0.0000018071, -0.0000017842,0.0000017632,0.0000017509,0.0000017457,0.0000017435, -0.0000017420,0.0000017398,0.0000017369,0.0000017344,0.0000017298, -0.0000017205,0.0000017116,0.0000017078,0.0000017059,0.0000016973, -0.0000016829,0.0000016741,0.0000016720,0.0000016719,0.0000016740, -0.0000016775,0.0000016780,0.0000016752,0.0000016713,0.0000016679, -0.0000016666,0.0000016692,0.0000016727,0.0000016694,0.0000016562, -0.0000016360,0.0000016140,0.0000015956,0.0000015828,0.0000015799, -0.0000015883,0.0000015982,0.0000016044,0.0000016018,0.0000015911, -0.0000015890,0.0000015907,0.0000015908,0.0000015951,0.0000016160, -0.0000016350,0.0000016534,0.0000016757,0.0000017009,0.0000017156, -0.0000017206,0.0000017220,0.0000017176,0.0000017110,0.0000017130, -0.0000017053,0.0000016897,0.0000016815,0.0000016698,0.0000016565, -0.0000016414,0.0000016322,0.0000016290,0.0000016269,0.0000016263, -0.0000016309,0.0000016406,0.0000016499,0.0000016531,0.0000016511, -0.0000016480,0.0000016495,0.0000016471,0.0000016451,0.0000016423, -0.0000016379,0.0000016326,0.0000016289,0.0000016263,0.0000016259, -0.0000016229,0.0000016222,0.0000016399,0.0000016568,0.0000016606, -0.0000016613,0.0000016632,0.0000016635,0.0000016589,0.0000016513, -0.0000016451,0.0000016389,0.0000016302,0.0000016210,0.0000016175, -0.0000016201,0.0000016253,0.0000016266,0.0000016288,0.0000016384, -0.0000016502,0.0000016576,0.0000016620,0.0000016840,0.0000017340, -0.0000017767,0.0000017886,0.0000017904,0.0000017936,0.0000017988, -0.0000017965,0.0000017672,0.0000017356,0.0000017191,0.0000017029, -0.0000016810,0.0000016753,0.0000016971,0.0000017130,0.0000016967, -0.0000016817,0.0000016538,0.0000016720,0.0000017249,0.0000017413, -0.0000017147,0.0000016634,0.0000016434,0.0000016368,0.0000016364, -0.0000016421,0.0000016468,0.0000016497,0.0000016511,0.0000016507, -0.0000016457,0.0000016338,0.0000016396,0.0000016767,0.0000017004, -0.0000017211,0.0000017519,0.0000017651,0.0000017778,0.0000017831, -0.0000017850,0.0000018026,0.0000017963,0.0000017708,0.0000017713, -0.0000017661,0.0000017106,0.0000017066,0.0000017277,0.0000017253, -0.0000017237,0.0000017227,0.0000017161,0.0000017076,0.0000017156, -0.0000017255,0.0000017141,0.0000016894,0.0000016734,0.0000016679, -0.0000016744,0.0000016829,0.0000016911,0.0000016901,0.0000016848, -0.0000017042,0.0000017355,0.0000017529,0.0000017665,0.0000017804, -0.0000017895,0.0000017939,0.0000017961,0.0000017987,0.0000017999, -0.0000017942,0.0000017799,0.0000017675,0.0000017605,0.0000017514, -0.0000017447,0.0000017466,0.0000017496,0.0000017501,0.0000017609, -0.0000017663,0.0000017438,0.0000017055,0.0000016887,0.0000016848, -0.0000016808,0.0000016792,0.0000016808,0.0000016813,0.0000016749, -0.0000016651,0.0000016619,0.0000016644,0.0000016748,0.0000017050, -0.0000017451,0.0000017710,0.0000017895,0.0000017954,0.0000018267, -0.0000019136,0.0000019527,0.0000019318,0.0000019414,0.0000019872, -0.0000020077,0.0000020127,0.0000020181,0.0000020224,0.0000020208, -0.0000020044,0.0000019678,0.0000019402,0.0000019386,0.0000019451, -0.0000019516,0.0000019587,0.0000019669,0.0000019759,0.0000019823, -0.0000019887,0.0000019953,0.0000019992,0.0000020028,0.0000020067, -0.0000020095,0.0000020130,0.0000020164,0.0000020172,0.0000020118, -0.0000019965,0.0000019791,0.0000019753,0.0000019829,0.0000019865, -0.0000019645,0.0000019153,0.0000018843,0.0000018790,0.0000018786, -0.0000018758,0.0000018730,0.0000018734,0.0000018848,0.0000018950, -0.0000018752,0.0000018334,0.0000018045,0.0000018021,0.0000018054, -0.0000018100,0.0000018137,0.0000018146,0.0000018146,0.0000018149, -0.0000018159,0.0000018165,0.0000018169,0.0000018172,0.0000018197, -0.0000018256,0.0000018294,0.0000018245,0.0000018112,0.0000018014, -0.0000017970,0.0000017934,0.0000017844,0.0000017739,0.0000017772, -0.0000018142,0.0000018334,0.0000018091,0.0000018007,0.0000018129, -0.0000018374,0.0000018418,0.0000018169,0.0000018463,0.0000019285, -0.0000019442,0.0000019155,0.0000018946,0.0000018872,0.0000018236, -0.0000016948,0.0000016605,0.0000016774,0.0000016709,0.0000016501, -0.0000016089,0.0000015583,0.0000015582,0.0000015745,0.0000015873, -0.0000015924,0.0000015994,0.0000016123,0.0000016148,0.0000016097, -0.0000016249,0.0000016601,0.0000016781,0.0000016789,0.0000016825, -0.0000016899,0.0000017012,0.0000017145,0.0000017280,0.0000017318, -0.0000017085,0.0000016600,0.0000016326,0.0000016347,0.0000016504, -0.0000016532,0.0000016372,0.0000016080,0.0000015798,0.0000015635, -0.0000015509,0.0000015307,0.0000015103,0.0000014992,0.0000014952, -0.0000014954,0.0000014954,0.0000014941,0.0000014932,0.0000014911, -0.0000014804,0.0000014545,0.0000014280,0.0000014179,0.0000014203, -0.0000014270,0.0000014303,0.0000014291,0.0000014246,0.0000014202, -0.0000014169,0.0000014174,0.0000014243,0.0000014332,0.0000014369, -0.0000014371,0.0000014365,0.0000014343,0.0000014314,0.0000014293, -0.0000014296,0.0000014326,0.0000014362,0.0000014394,0.0000014440, -0.0000014572,0.0000014766,0.0000014951,0.0000015077,0.0000015149, -0.0000015172,0.0000015149,0.0000015109,0.0000015094,0.0000015087, -0.0000015106,0.0000015154,0.0000015219,0.0000015293,0.0000015369, -0.0000015447,0.0000015528,0.0000015609,0.0000015690,0.0000015762, -0.0000015839,0.0000015912,0.0000015928,0.0000015952,0.0000015891, -0.0000015806,0.0000015704,0.0000015614,0.0000015610,0.0000015605, -0.0000015631,0.0000015650,0.0000015688,0.0000015732,0.0000015770, -0.0000015803,0.0000015838,0.0000015878,0.0000015921,0.0000015953, -0.0000015971,0.0000015980,0.0000015989,0.0000016003,0.0000016020, -0.0000016028,0.0000016030,0.0000016042,0.0000016055,0.0000016057, -0.0000016058,0.0000016062,0.0000016079,0.0000016111,0.0000016140, -0.0000016150,0.0000016130,0.0000016118,0.0000016120,0.0000016110, -0.0000016100,0.0000016100,0.0000016078,0.0000016061,0.0000016021, -0.0000015997,0.0000015988,0.0000015984,0.0000015971,0.0000015952, -0.0000015954,0.0000015985,0.0000016044,0.0000016127,0.0000016207, -0.0000016241,0.0000016231,0.0000016172,0.0000016117,0.0000016107, -0.0000016145,0.0000016196,0.0000016193,0.0000016115,0.0000015968, -0.0000015890,0.0000015913,0.0000015970,0.0000016030,0.0000016155, -0.0000016220,0.0000016219,0.0000016314,0.0000016617,0.0000016926, -0.0000017064,0.0000017064,0.0000017045,0.0000016992,0.0000016960, -0.0000016918,0.0000016871,0.0000016836,0.0000016816,0.0000016778, -0.0000016772,0.0000016783,0.0000016806,0.0000016842,0.0000016915, -0.0000016997,0.0000017034,0.0000017005,0.0000017004,0.0000017254, -0.0000017738,0.0000018126,0.0000018303,0.0000018459,0.0000018654, -0.0000018812,0.0000018939,0.0000019104,0.0000019314,0.0000019485, -0.0000019581,0.0000019629,0.0000019595,0.0000019475,0.0000019395, -0.0000019393,0.0000019405,0.0000019423,0.0000019442,0.0000019465, -0.0000019496,0.0000019543,0.0000019606,0.0000019697,0.0000019792, -0.0000019855,0.0000019870,0.0000019857,0.0000019833,0.0000019822, -0.0000019832,0.0000019861,0.0000019887,0.0000019902,0.0000019909, -0.0000019903,0.0000019875,0.0000019826,0.0000019781,0.0000019757, -0.0000019759,0.0000019796,0.0000019861,0.0000019927,0.0000019984, -0.0000020025,0.0000020065,0.0000020081,0.0000020093,0.0000020078, -0.0000020079,0.0000020092,0.0000020090,0.0000020085,0.0000020087, -0.0000020087,0.0000020105,0.0000020120,0.0000020125,0.0000020118, -0.0000020123,0.0000020103,0.0000020063,0.0000020009,0.0000019931, -0.0000019844,0.0000019787,0.0000019746,0.0000019682,0.0000019564, -0.0000019364,0.0000019115,0.0000018853,0.0000018678,0.0000018615, -0.0000018337,0.0000017521,0.0000016868,0.0000017422,0.0000018357, -0.0000019301,0.0000019581,0.0000019718,0.0000019819,0.0000019829, -0.0000019778,0.0000019793,0.0000019870,0.0000019830,0.0000019670, -0.0000019555,0.0000019527,0.0000019478,0.0000019423,0.0000019367, -0.0000019352,0.0000019431,0.0000019533,0.0000019597,0.0000019617, -0.0000019523,0.0000019291,0.0000019052,0.0000018858,0.0000018717, -0.0000018705,0.0000018758,0.0000018737,0.0000018586,0.0000018427, -0.0000018362,0.0000018387,0.0000018410,0.0000018401,0.0000018372, -0.0000018400,0.0000018494,0.0000018713,0.0000018841,0.0000018747, -0.0000018562,0.0000018445,0.0000018432,0.0000018491,0.0000018597, -0.0000018686,0.0000018754,0.0000018844,0.0000018874,0.0000018707, -0.0000018496,0.0000018435,0.0000018367,0.0000018226,0.0000018109, -0.0000018027,0.0000017989,0.0000017993,0.0000018029,0.0000018158, -0.0000018361,0.0000018435,0.0000018339,0.0000018169,0.0000017926, -0.0000017656,0.0000017490,0.0000017428,0.0000017391,0.0000017365, -0.0000017339,0.0000017307,0.0000017276,0.0000017252,0.0000017206, -0.0000017140,0.0000017084,0.0000017069,0.0000017046,0.0000016935, -0.0000016789,0.0000016737,0.0000016748,0.0000016751,0.0000016755, -0.0000016772,0.0000016775,0.0000016756,0.0000016721,0.0000016679, -0.0000016667,0.0000016709,0.0000016737,0.0000016686,0.0000016516, -0.0000016274,0.0000016061,0.0000015910,0.0000015805,0.0000015819, -0.0000015918,0.0000016003,0.0000016041,0.0000015962,0.0000015889, -0.0000015892,0.0000015897,0.0000015894,0.0000016004,0.0000016240, -0.0000016394,0.0000016606,0.0000016873,0.0000017096,0.0000017173, -0.0000017204,0.0000017210,0.0000017154,0.0000017141,0.0000017157, -0.0000017046,0.0000016925,0.0000016832,0.0000016695,0.0000016540, -0.0000016390,0.0000016342,0.0000016353,0.0000016334,0.0000016283, -0.0000016294,0.0000016376,0.0000016486,0.0000016529,0.0000016522, -0.0000016512,0.0000016490,0.0000016460,0.0000016427,0.0000016394, -0.0000016354,0.0000016308,0.0000016266,0.0000016253,0.0000016215, -0.0000016239,0.0000016427,0.0000016556,0.0000016569,0.0000016578, -0.0000016610,0.0000016653,0.0000016675,0.0000016643,0.0000016591, -0.0000016533,0.0000016436,0.0000016275,0.0000016160,0.0000016161, -0.0000016227,0.0000016245,0.0000016245,0.0000016323,0.0000016459, -0.0000016574,0.0000016627,0.0000016761,0.0000017180,0.0000017663, -0.0000017885,0.0000017921,0.0000017958,0.0000017983,0.0000017827, -0.0000017479,0.0000017259,0.0000017118,0.0000016920,0.0000016715, -0.0000016740,0.0000016996,0.0000017004,0.0000016854,0.0000016657, -0.0000016434,0.0000016837,0.0000017298,0.0000017332,0.0000016903, -0.0000016472,0.0000016340,0.0000016291,0.0000016325,0.0000016377, -0.0000016408,0.0000016417,0.0000016438,0.0000016459,0.0000016462, -0.0000016402,0.0000016345,0.0000016643,0.0000016965,0.0000017151, -0.0000017486,0.0000017652,0.0000017766,0.0000017894,0.0000017959, -0.0000018046,0.0000017854,0.0000017698,0.0000017710,0.0000017575, -0.0000017046,0.0000017114,0.0000017278,0.0000017242,0.0000017227, -0.0000017207,0.0000017138,0.0000017083,0.0000017173,0.0000017233, -0.0000017076,0.0000016847,0.0000016712,0.0000016691,0.0000016763, -0.0000016858,0.0000016928,0.0000016863,0.0000016850,0.0000017096, -0.0000017375,0.0000017475,0.0000017547,0.0000017652,0.0000017756, -0.0000017836,0.0000017895,0.0000017911,0.0000017857,0.0000017736, -0.0000017649,0.0000017599,0.0000017512,0.0000017438,0.0000017451, -0.0000017487,0.0000017499,0.0000017598,0.0000017652,0.0000017438, -0.0000017055,0.0000016877,0.0000016830,0.0000016787,0.0000016773, -0.0000016784,0.0000016785,0.0000016731,0.0000016637,0.0000016586, -0.0000016602,0.0000016650,0.0000016814,0.0000017200,0.0000017571, -0.0000017806,0.0000017939,0.0000018031,0.0000018750,0.0000019478, -0.0000019477,0.0000019257,0.0000019438,0.0000019782,0.0000019947, -0.0000019971,0.0000019938,0.0000019822,0.0000019574,0.0000019291, -0.0000019186,0.0000019296,0.0000019414,0.0000019513,0.0000019581, -0.0000019603,0.0000019606,0.0000019600,0.0000019619,0.0000019672, -0.0000019705,0.0000019725,0.0000019746,0.0000019768,0.0000019784, -0.0000019729,0.0000019685,0.0000019693,0.0000019767,0.0000019880, -0.0000019939,0.0000019864,0.0000019489,0.0000018998,0.0000018725, -0.0000018680,0.0000018702,0.0000018719,0.0000018705,0.0000018760, -0.0000018924,0.0000018868,0.0000018463,0.0000018065,0.0000017945, -0.0000017975,0.0000018030,0.0000018082,0.0000018096,0.0000018093, -0.0000018118,0.0000018175,0.0000018239,0.0000018276,0.0000018287, -0.0000018269,0.0000018260,0.0000018268,0.0000018310,0.0000018324, -0.0000018233,0.0000018080,0.0000017983,0.0000017903,0.0000017806, -0.0000017745,0.0000017839,0.0000018162,0.0000018339,0.0000018126, -0.0000017970,0.0000018047,0.0000018215,0.0000018461,0.0000018326, -0.0000018109,0.0000018675,0.0000019383,0.0000019429,0.0000019139, -0.0000018993,0.0000018869,0.0000018058,0.0000016738,0.0000016636, -0.0000016790,0.0000016637,0.0000016342,0.0000015799,0.0000015578, -0.0000015674,0.0000015789,0.0000015781,0.0000015832,0.0000016008, -0.0000016089,0.0000016095,0.0000016298,0.0000016640,0.0000016782, -0.0000016787,0.0000016827,0.0000016890,0.0000017000,0.0000017146, -0.0000017277,0.0000017278,0.0000016943,0.0000016472,0.0000016326, -0.0000016435,0.0000016555,0.0000016504,0.0000016265,0.0000015961, -0.0000015732,0.0000015606,0.0000015435,0.0000015215,0.0000015071, -0.0000015013,0.0000014982,0.0000014973,0.0000014958,0.0000014954, -0.0000014938,0.0000014854,0.0000014594,0.0000014306,0.0000014198, -0.0000014235,0.0000014289,0.0000014294,0.0000014254,0.0000014170, -0.0000014076,0.0000014000,0.0000013964,0.0000013968,0.0000014033, -0.0000014168,0.0000014262,0.0000014283,0.0000014295,0.0000014307, -0.0000014306,0.0000014302,0.0000014316,0.0000014350,0.0000014393, -0.0000014421,0.0000014424,0.0000014406,0.0000014413,0.0000014498, -0.0000014697,0.0000014914,0.0000015060,0.0000015129,0.0000015143, -0.0000015166,0.0000015174,0.0000015164,0.0000015142,0.0000015137, -0.0000015140,0.0000015160,0.0000015194,0.0000015235,0.0000015283, -0.0000015335,0.0000015393,0.0000015458,0.0000015529,0.0000015619, -0.0000015727,0.0000015826,0.0000015867,0.0000015862,0.0000015823, -0.0000015789,0.0000015758,0.0000015734,0.0000015712,0.0000015698, -0.0000015685,0.0000015688,0.0000015682,0.0000015684,0.0000015680, -0.0000015678,0.0000015688,0.0000015708,0.0000015741,0.0000015784, -0.0000015829,0.0000015862,0.0000015878,0.0000015893,0.0000015927, -0.0000015970,0.0000016014,0.0000016048,0.0000016064,0.0000016064, -0.0000016042,0.0000015992,0.0000015922,0.0000015857,0.0000015819, -0.0000015801,0.0000015803,0.0000015830,0.0000015878,0.0000015941, -0.0000016015,0.0000016041,0.0000016037,0.0000016040,0.0000016025, -0.0000016000,0.0000015969,0.0000015935,0.0000015923,0.0000015921, -0.0000015969,0.0000016056,0.0000016150,0.0000016227,0.0000016238, -0.0000016180,0.0000016096,0.0000016081,0.0000016137,0.0000016225, -0.0000016248,0.0000016086,0.0000015885,0.0000015844,0.0000015904, -0.0000015981,0.0000016130,0.0000016223,0.0000016217,0.0000016262, -0.0000016464,0.0000016734,0.0000016917,0.0000016988,0.0000017002, -0.0000017008,0.0000017024,0.0000017025,0.0000017014,0.0000017004, -0.0000016974,0.0000016947,0.0000016950,0.0000016979,0.0000017038, -0.0000017116,0.0000017193,0.0000017240,0.0000017241,0.0000017192, -0.0000017114,0.0000017154,0.0000017431,0.0000017818,0.0000018095, -0.0000018284,0.0000018479,0.0000018679,0.0000018851,0.0000019021, -0.0000019246,0.0000019468,0.0000019589,0.0000019629,0.0000019611, -0.0000019560,0.0000019538,0.0000019550,0.0000019573,0.0000019590, -0.0000019595,0.0000019591,0.0000019587,0.0000019593,0.0000019631, -0.0000019692,0.0000019769,0.0000019833,0.0000019874,0.0000019891, -0.0000019899,0.0000019906,0.0000019917,0.0000019945,0.0000020001, -0.0000020072,0.0000020119,0.0000020127,0.0000020097,0.0000020050, -0.0000020026,0.0000020032,0.0000020041,0.0000020030,0.0000020008, -0.0000019999,0.0000020011,0.0000020064,0.0000020114,0.0000020165, -0.0000020168,0.0000020137,0.0000020138,0.0000020065,0.0000019993, -0.0000019951,0.0000019937,0.0000019955,0.0000019997,0.0000020046, -0.0000020097,0.0000020173,0.0000020200,0.0000020215,0.0000020191, -0.0000020136,0.0000020039,0.0000019921,0.0000019816,0.0000019758, -0.0000019730,0.0000019644,0.0000019457,0.0000019218,0.0000018975, -0.0000018822,0.0000018770,0.0000018372,0.0000017318,0.0000016977, -0.0000018022,0.0000018918,0.0000019514,0.0000019525,0.0000019608, -0.0000019634,0.0000019660,0.0000019750,0.0000019815,0.0000019758, -0.0000019626,0.0000019543,0.0000019506,0.0000019398,0.0000019273, -0.0000019215,0.0000019260,0.0000019382,0.0000019461,0.0000019503, -0.0000019546,0.0000019518,0.0000019375,0.0000019160,0.0000018950, -0.0000018762,0.0000018670,0.0000018699,0.0000018754,0.0000018757, -0.0000018676,0.0000018573,0.0000018502,0.0000018460,0.0000018457, -0.0000018513,0.0000018636,0.0000018782,0.0000018817,0.0000018720, -0.0000018514,0.0000018376,0.0000018317,0.0000018328,0.0000018406, -0.0000018521,0.0000018628,0.0000018714,0.0000018830,0.0000018897, -0.0000018745,0.0000018519,0.0000018460,0.0000018425,0.0000018300, -0.0000018164,0.0000018063,0.0000018015,0.0000018020,0.0000018087, -0.0000018262,0.0000018426,0.0000018420,0.0000018285,0.0000018054, -0.0000017741,0.0000017500,0.0000017399,0.0000017342,0.0000017296, -0.0000017262,0.0000017228,0.0000017190,0.0000017153,0.0000017119, -0.0000017092,0.0000017064,0.0000017050,0.0000017049,0.0000017015, -0.0000016885,0.0000016760,0.0000016745,0.0000016777,0.0000016775, -0.0000016757,0.0000016755,0.0000016756,0.0000016745,0.0000016710, -0.0000016665,0.0000016671,0.0000016722,0.0000016737,0.0000016661, -0.0000016452,0.0000016193,0.0000016007,0.0000015870,0.0000015800, -0.0000015853,0.0000015945,0.0000016023,0.0000016007,0.0000015907, -0.0000015883,0.0000015888,0.0000015886,0.0000015900,0.0000016090, -0.0000016297,0.0000016451,0.0000016706,0.0000016989,0.0000017132, -0.0000017168,0.0000017197,0.0000017197,0.0000017154,0.0000017173, -0.0000017168,0.0000017054,0.0000016962,0.0000016844,0.0000016686, -0.0000016515,0.0000016396,0.0000016406,0.0000016432,0.0000016404, -0.0000016340,0.0000016315,0.0000016358,0.0000016452,0.0000016515, -0.0000016474,0.0000016490,0.0000016474,0.0000016443,0.0000016416, -0.0000016378,0.0000016323,0.0000016266,0.0000016244,0.0000016208, -0.0000016245,0.0000016420,0.0000016527,0.0000016535,0.0000016538, -0.0000016568,0.0000016613,0.0000016660,0.0000016680,0.0000016672, -0.0000016636,0.0000016556,0.0000016367,0.0000016168,0.0000016126, -0.0000016187,0.0000016211,0.0000016205,0.0000016273,0.0000016417, -0.0000016564,0.0000016636,0.0000016718,0.0000017041,0.0000017525, -0.0000017826,0.0000017913,0.0000017941,0.0000017895,0.0000017625, -0.0000017323,0.0000017180,0.0000017037,0.0000016800,0.0000016645, -0.0000016777,0.0000016969,0.0000016849,0.0000016742,0.0000016470, -0.0000016420,0.0000016938,0.0000017272,0.0000017204,0.0000016677, -0.0000016363,0.0000016248,0.0000016204,0.0000016227,0.0000016260, -0.0000016307,0.0000016315,0.0000016333,0.0000016351,0.0000016385, -0.0000016404,0.0000016344,0.0000016528,0.0000016915,0.0000017100, -0.0000017446,0.0000017650,0.0000017746,0.0000017933,0.0000018026, -0.0000017999,0.0000017770,0.0000017689,0.0000017733,0.0000017459, -0.0000016990,0.0000017170,0.0000017268,0.0000017225,0.0000017211, -0.0000017194,0.0000017124,0.0000017097,0.0000017191,0.0000017203, -0.0000017022,0.0000016810,0.0000016694,0.0000016694,0.0000016788, -0.0000016883,0.0000016904,0.0000016815,0.0000016830,0.0000017128, -0.0000017367,0.0000017424,0.0000017456,0.0000017530,0.0000017619, -0.0000017704,0.0000017754,0.0000017735,0.0000017665,0.0000017623, -0.0000017590,0.0000017510,0.0000017434,0.0000017440,0.0000017477, -0.0000017495,0.0000017590,0.0000017640,0.0000017429,0.0000017047, -0.0000016864,0.0000016812,0.0000016771,0.0000016755,0.0000016756, -0.0000016748,0.0000016708,0.0000016635,0.0000016581,0.0000016589, -0.0000016626,0.0000016683,0.0000016958,0.0000017390,0.0000017700, -0.0000017903,0.0000017948,0.0000018379,0.0000019233,0.0000019576, -0.0000019410,0.0000019227,0.0000019308,0.0000019448,0.0000019468, -0.0000019420,0.0000019299,0.0000019175,0.0000019159,0.0000019203, -0.0000019355,0.0000019519,0.0000019684,0.0000019837,0.0000019920, -0.0000019918,0.0000019884,0.0000019843,0.0000019805,0.0000019776, -0.0000019758,0.0000019754,0.0000019771,0.0000019814,0.0000019872, -0.0000019939,0.0000019993,0.0000019998,0.0000019949,0.0000019737, -0.0000019354,0.0000018963,0.0000018737,0.0000018693,0.0000018704, -0.0000018694,0.0000018691,0.0000018865,0.0000018917,0.0000018647, -0.0000018174,0.0000017933,0.0000017931,0.0000017951,0.0000018002, -0.0000018047,0.0000018046,0.0000018052,0.0000018101,0.0000018183, -0.0000018261,0.0000018314,0.0000018321,0.0000018286,0.0000018241, -0.0000018224,0.0000018244,0.0000018304,0.0000018313,0.0000018232, -0.0000018107,0.0000017977,0.0000017852,0.0000017783,0.0000017962, -0.0000018273,0.0000018357,0.0000018132,0.0000017924,0.0000018022, -0.0000018100,0.0000018338,0.0000018489,0.0000018182,0.0000018152, -0.0000018872,0.0000019404,0.0000019394,0.0000019155,0.0000019053, -0.0000018859,0.0000017856,0.0000016604,0.0000016689,0.0000016764, -0.0000016525,0.0000016126,0.0000015616,0.0000015620,0.0000015706, -0.0000015686,0.0000015706,0.0000015905,0.0000016021,0.0000016053, -0.0000016307,0.0000016647,0.0000016779,0.0000016786,0.0000016810, -0.0000016870,0.0000016999,0.0000017158,0.0000017274,0.0000017224, -0.0000016819,0.0000016415,0.0000016371,0.0000016516,0.0000016563, -0.0000016425,0.0000016141,0.0000015857,0.0000015692,0.0000015555, -0.0000015343,0.0000015162,0.0000015085,0.0000015039,0.0000015013, -0.0000014987,0.0000014972,0.0000014972,0.0000014906,0.0000014678, -0.0000014384,0.0000014252,0.0000014255,0.0000014294,0.0000014273, -0.0000014195,0.0000014107,0.0000014038,0.0000014005,0.0000013982, -0.0000013958,0.0000013945,0.0000013981,0.0000014116,0.0000014252, -0.0000014307,0.0000014300,0.0000014289,0.0000014271,0.0000014248, -0.0000014251,0.0000014275,0.0000014332,0.0000014391,0.0000014438, -0.0000014459,0.0000014452,0.0000014422,0.0000014420,0.0000014488, -0.0000014621,0.0000014773,0.0000014913,0.0000015032,0.0000015123, -0.0000015173,0.0000015204,0.0000015222,0.0000015224,0.0000015220, -0.0000015219,0.0000015226,0.0000015249,0.0000015278,0.0000015303, -0.0000015317,0.0000015329,0.0000015350,0.0000015409,0.0000015499, -0.0000015590,0.0000015663,0.0000015728,0.0000015783,0.0000015809, -0.0000015827,0.0000015843,0.0000015850,0.0000015845,0.0000015830, -0.0000015822,0.0000015812,0.0000015788,0.0000015741,0.0000015680, -0.0000015635,0.0000015599,0.0000015579,0.0000015580,0.0000015601, -0.0000015624,0.0000015648,0.0000015679,0.0000015706,0.0000015724, -0.0000015730,0.0000015713,0.0000015675,0.0000015620,0.0000015563, -0.0000015521,0.0000015502,0.0000015498,0.0000015491,0.0000015485, -0.0000015497,0.0000015529,0.0000015592,0.0000015698,0.0000015805, -0.0000015885,0.0000015966,0.0000016030,0.0000016015,0.0000016007, -0.0000015976,0.0000015941,0.0000015912,0.0000015899,0.0000015926, -0.0000016004,0.0000016117,0.0000016222,0.0000016249,0.0000016156, -0.0000016058,0.0000016060,0.0000016189,0.0000016292,0.0000016208, -0.0000015949,0.0000015829,0.0000015848,0.0000015941,0.0000016115, -0.0000016228,0.0000016230,0.0000016241,0.0000016348,0.0000016519, -0.0000016647,0.0000016698,0.0000016713,0.0000016734,0.0000016784, -0.0000016853,0.0000016929,0.0000016998,0.0000017046,0.0000017085, -0.0000017121,0.0000017162,0.0000017214,0.0000017254,0.0000017275, -0.0000017284,0.0000017289,0.0000017295,0.0000017260,0.0000017204, -0.0000017243,0.0000017464,0.0000017752,0.0000018003,0.0000018235, -0.0000018479,0.0000018723,0.0000018940,0.0000019168,0.0000019422, -0.0000019587,0.0000019629,0.0000019629,0.0000019628,0.0000019650, -0.0000019684,0.0000019703,0.0000019714,0.0000019723,0.0000019722, -0.0000019705,0.0000019682,0.0000019678,0.0000019712,0.0000019765, -0.0000019812,0.0000019849,0.0000019871,0.0000019884,0.0000019893, -0.0000019938,0.0000020049,0.0000020175,0.0000020257,0.0000020284, -0.0000020260,0.0000020215,0.0000020161,0.0000020095,0.0000020010, -0.0000019906,0.0000019798,0.0000019729,0.0000019746,0.0000019870, -0.0000020026,0.0000020121,0.0000020116,0.0000020007,0.0000019839, -0.0000019674,0.0000019554,0.0000019489,0.0000019475,0.0000019499, -0.0000019556,0.0000019641,0.0000019748,0.0000019882,0.0000020036, -0.0000020149,0.0000020201,0.0000020214,0.0000020195,0.0000020126, -0.0000019994,0.0000019853,0.0000019771,0.0000019752,0.0000019696, -0.0000019545,0.0000019300,0.0000019037,0.0000018872,0.0000018776, -0.0000018101,0.0000017030,0.0000017541,0.0000018637,0.0000019403, -0.0000019417,0.0000019423,0.0000019472,0.0000019569,0.0000019686, -0.0000019741,0.0000019691,0.0000019591,0.0000019528,0.0000019409, -0.0000019124,0.0000018880,0.0000018836,0.0000018950,0.0000019170, -0.0000019347,0.0000019438,0.0000019462,0.0000019459,0.0000019403, -0.0000019259,0.0000019049,0.0000018851,0.0000018705,0.0000018639, -0.0000018665,0.0000018734,0.0000018743,0.0000018731,0.0000018719, -0.0000018720,0.0000018737,0.0000018767,0.0000018787,0.0000018778, -0.0000018658,0.0000018489,0.0000018340,0.0000018232,0.0000018184, -0.0000018212,0.0000018316,0.0000018442,0.0000018568,0.0000018676, -0.0000018809,0.0000018891,0.0000018787,0.0000018551,0.0000018484, -0.0000018475,0.0000018374,0.0000018221,0.0000018099,0.0000018046, -0.0000018061,0.0000018172,0.0000018354,0.0000018437,0.0000018390, -0.0000018207,0.0000017895,0.0000017569,0.0000017387,0.0000017300, -0.0000017242,0.0000017212,0.0000017192,0.0000017162,0.0000017114, -0.0000017051,0.0000017003,0.0000016986,0.0000016998,0.0000017018, -0.0000017028,0.0000016971,0.0000016838,0.0000016750,0.0000016764, -0.0000016795,0.0000016784,0.0000016745,0.0000016725,0.0000016727, -0.0000016724,0.0000016685,0.0000016658,0.0000016685,0.0000016720, -0.0000016711,0.0000016610,0.0000016377,0.0000016127,0.0000015963, -0.0000015838,0.0000015816,0.0000015890,0.0000015974,0.0000016015, -0.0000015943,0.0000015882,0.0000015883,0.0000015887,0.0000015877, -0.0000015938,0.0000016182,0.0000016337,0.0000016530,0.0000016825, -0.0000017063,0.0000017131,0.0000017157,0.0000017196,0.0000017186, -0.0000017167,0.0000017190,0.0000017171,0.0000017082,0.0000017003, -0.0000016855,0.0000016685,0.0000016502,0.0000016429,0.0000016455, -0.0000016447,0.0000016415,0.0000016383,0.0000016337,0.0000016346, -0.0000016415,0.0000016389,0.0000016438,0.0000016463,0.0000016450, -0.0000016429,0.0000016392,0.0000016335,0.0000016272,0.0000016239, -0.0000016206,0.0000016239,0.0000016400,0.0000016507,0.0000016494, -0.0000016473,0.0000016507,0.0000016567,0.0000016613,0.0000016660, -0.0000016690,0.0000016684,0.0000016622,0.0000016449,0.0000016212, -0.0000016120,0.0000016145,0.0000016172,0.0000016173,0.0000016240, -0.0000016385,0.0000016548,0.0000016639,0.0000016696,0.0000016932, -0.0000017373,0.0000017708,0.0000017830,0.0000017841,0.0000017713, -0.0000017425,0.0000017211,0.0000017106,0.0000016935,0.0000016679, -0.0000016617,0.0000016821,0.0000016882,0.0000016714,0.0000016602, -0.0000016313,0.0000016460,0.0000016994,0.0000017236,0.0000017010, -0.0000016498,0.0000016284,0.0000016156,0.0000016095,0.0000016103, -0.0000016158,0.0000016234,0.0000016262,0.0000016274,0.0000016267, -0.0000016281,0.0000016343,0.0000016341,0.0000016444,0.0000016850, -0.0000017066,0.0000017400,0.0000017645,0.0000017725,0.0000017924, -0.0000018016,0.0000017896,0.0000017722,0.0000017698,0.0000017721, -0.0000017311,0.0000016982,0.0000017220,0.0000017247,0.0000017209, -0.0000017199,0.0000017185,0.0000017115,0.0000017121,0.0000017210, -0.0000017198,0.0000016978,0.0000016773,0.0000016679,0.0000016713, -0.0000016814,0.0000016884,0.0000016863,0.0000016752,0.0000016820, -0.0000017114,0.0000017330,0.0000017393,0.0000017420,0.0000017460, -0.0000017516,0.0000017579,0.0000017612,0.0000017603,0.0000017593, -0.0000017571,0.0000017509,0.0000017445,0.0000017435,0.0000017465, -0.0000017490,0.0000017585,0.0000017630,0.0000017419,0.0000017032, -0.0000016842,0.0000016794,0.0000016758,0.0000016736,0.0000016720, -0.0000016708,0.0000016687,0.0000016645,0.0000016601,0.0000016607, -0.0000016642,0.0000016653,0.0000016773,0.0000017175,0.0000017569, -0.0000017826,0.0000017935,0.0000018096,0.0000018869,0.0000019513, -0.0000019603,0.0000019388,0.0000019222,0.0000019196,0.0000019204, -0.0000019195,0.0000019176,0.0000019207,0.0000019274,0.0000019358, -0.0000019466,0.0000019613,0.0000019794,0.0000019964,0.0000020048, -0.0000020040,0.0000019999,0.0000019959,0.0000019930,0.0000019916, -0.0000019924,0.0000019950,0.0000019970,0.0000019997,0.0000020019, -0.0000020023,0.0000019996,0.0000019878,0.0000019638,0.0000019329, -0.0000019055,0.0000018875,0.0000018790,0.0000018751,0.0000018699, -0.0000018749,0.0000018983,0.0000018929,0.0000018441,0.0000018040, -0.0000017936,0.0000017923,0.0000017945,0.0000017996,0.0000018010, -0.0000017989,0.0000018007,0.0000018067,0.0000018125,0.0000018149, -0.0000018158,0.0000018169,0.0000018163,0.0000018141,0.0000018142, -0.0000018171,0.0000018218,0.0000018287,0.0000018310,0.0000018270, -0.0000018172,0.0000018022,0.0000017975,0.0000018142,0.0000018400, -0.0000018388,0.0000018132,0.0000017859,0.0000017997,0.0000018078, -0.0000018189,0.0000018469,0.0000018422,0.0000018069,0.0000018289, -0.0000019048,0.0000019404,0.0000019360,0.0000019191,0.0000019095, -0.0000018817,0.0000017661,0.0000016577,0.0000016740,0.0000016696, -0.0000016400,0.0000015879,0.0000015624,0.0000015670,0.0000015658, -0.0000015659,0.0000015864,0.0000016024,0.0000016039,0.0000016283, -0.0000016635,0.0000016753,0.0000016777,0.0000016794,0.0000016836, -0.0000016986,0.0000017171,0.0000017275,0.0000017169,0.0000016733, -0.0000016430,0.0000016447,0.0000016576,0.0000016551,0.0000016329, -0.0000016021,0.0000015783,0.0000015656,0.0000015474,0.0000015263, -0.0000015150,0.0000015103,0.0000015065,0.0000015036,0.0000015005, -0.0000015001,0.0000014966,0.0000014778,0.0000014480,0.0000014323, -0.0000014306,0.0000014305,0.0000014242,0.0000014135,0.0000014053, -0.0000014031,0.0000014044,0.0000014063,0.0000014076,0.0000014075, -0.0000014048,0.0000014059,0.0000014181,0.0000014342,0.0000014433, -0.0000014443,0.0000014417,0.0000014374,0.0000014315,0.0000014268, -0.0000014257,0.0000014275,0.0000014312,0.0000014355,0.0000014391, -0.0000014412,0.0000014440,0.0000014454,0.0000014453,0.0000014442, -0.0000014452,0.0000014480,0.0000014534,0.0000014638,0.0000014788, -0.0000014945,0.0000015073,0.0000015164,0.0000015223,0.0000015234, -0.0000015250,0.0000015271,0.0000015296,0.0000015325,0.0000015341, -0.0000015341,0.0000015331,0.0000015343,0.0000015366,0.0000015401, -0.0000015435,0.0000015473,0.0000015521,0.0000015576,0.0000015627, -0.0000015672,0.0000015717,0.0000015760,0.0000015800,0.0000015842, -0.0000015867,0.0000015889,0.0000015892,0.0000015880,0.0000015844, -0.0000015787,0.0000015718,0.0000015635,0.0000015571,0.0000015532, -0.0000015487,0.0000015458,0.0000015471,0.0000015483,0.0000015492, -0.0000015494,0.0000015486,0.0000015470,0.0000015454,0.0000015455, -0.0000015461,0.0000015473,0.0000015474,0.0000015456,0.0000015440, -0.0000015411,0.0000015422,0.0000015459,0.0000015519,0.0000015596, -0.0000015715,0.0000015834,0.0000015917,0.0000015991,0.0000015986, -0.0000015968,0.0000015933,0.0000015903,0.0000015892,0.0000015912, -0.0000015992,0.0000016123,0.0000016242,0.0000016216,0.0000016080, -0.0000016031,0.0000016125,0.0000016307,0.0000016301,0.0000016038, -0.0000015826,0.0000015821,0.0000015918,0.0000016114,0.0000016228, -0.0000016231,0.0000016231,0.0000016276,0.0000016347,0.0000016390, -0.0000016393,0.0000016377,0.0000016374,0.0000016409,0.0000016484, -0.0000016585,0.0000016697,0.0000016812,0.0000016918,0.0000017009, -0.0000017075,0.0000017123,0.0000017161,0.0000017180,0.0000017182, -0.0000017188,0.0000017216,0.0000017240,0.0000017240,0.0000017228, -0.0000017247,0.0000017378,0.0000017635,0.0000017943,0.0000018241, -0.0000018537,0.0000018833,0.0000019096,0.0000019341,0.0000019540, -0.0000019627,0.0000019629,0.0000019638,0.0000019637,0.0000019634, -0.0000019649,0.0000019671,0.0000019695,0.0000019719,0.0000019745, -0.0000019758,0.0000019764,0.0000019780,0.0000019801,0.0000019826, -0.0000019843,0.0000019857,0.0000019883,0.0000019956,0.0000020085, -0.0000020210,0.0000020287,0.0000020299,0.0000020218,0.0000020124, -0.0000020032,0.0000019919,0.0000019760,0.0000019599,0.0000019473, -0.0000019402,0.0000019447,0.0000019629,0.0000019841,0.0000019905, -0.0000019812,0.0000019598,0.0000019383,0.0000019242,0.0000019182, -0.0000019176,0.0000019179,0.0000019199,0.0000019243,0.0000019308, -0.0000019386,0.0000019487,0.0000019637,0.0000019815,0.0000020000, -0.0000020137,0.0000020187,0.0000020193,0.0000020159,0.0000020057, -0.0000019904,0.0000019793,0.0000019757,0.0000019750,0.0000019619, -0.0000019351,0.0000019056,0.0000018889,0.0000018594,0.0000017560, -0.0000017160,0.0000018399,0.0000019195,0.0000019386,0.0000019310, -0.0000019331,0.0000019443,0.0000019589,0.0000019656,0.0000019629, -0.0000019572,0.0000019474,0.0000019177,0.0000018739,0.0000018535, -0.0000018538,0.0000018622,0.0000018814,0.0000019069,0.0000019309, -0.0000019409,0.0000019405,0.0000019381,0.0000019324,0.0000019165, -0.0000018961,0.0000018808,0.0000018684,0.0000018619,0.0000018616, -0.0000018642,0.0000018680,0.0000018724,0.0000018746,0.0000018744, -0.0000018712,0.0000018650,0.0000018558,0.0000018446,0.0000018330, -0.0000018204,0.0000018085,0.0000018040,0.0000018093,0.0000018223, -0.0000018365,0.0000018509,0.0000018637,0.0000018780,0.0000018902, -0.0000018827,0.0000018594,0.0000018495,0.0000018505,0.0000018438, -0.0000018279,0.0000018140,0.0000018092,0.0000018119,0.0000018259, -0.0000018419,0.0000018455,0.0000018345,0.0000018090,0.0000017724, -0.0000017433,0.0000017286,0.0000017217,0.0000017195,0.0000017195, -0.0000017179,0.0000017143,0.0000017084,0.0000017012,0.0000016944, -0.0000016918,0.0000016938,0.0000016979,0.0000016992,0.0000016923, -0.0000016806,0.0000016755,0.0000016775,0.0000016795,0.0000016777, -0.0000016728,0.0000016702,0.0000016703,0.0000016695,0.0000016667, -0.0000016671,0.0000016694,0.0000016698,0.0000016668,0.0000016547, -0.0000016301,0.0000016073,0.0000015925,0.0000015830,0.0000015848, -0.0000015924,0.0000015994,0.0000015970,0.0000015895,0.0000015881, -0.0000015888,0.0000015883,0.0000015870,0.0000016020,0.0000016250, -0.0000016381,0.0000016627,0.0000016933,0.0000017087,0.0000017114, -0.0000017154,0.0000017188,0.0000017172,0.0000017170,0.0000017191, -0.0000017181,0.0000017129,0.0000017041,0.0000016874,0.0000016679, -0.0000016502,0.0000016458,0.0000016440,0.0000016358,0.0000016347, -0.0000016366,0.0000016364,0.0000016359,0.0000016376,0.0000016377, -0.0000016411,0.0000016431,0.0000016426,0.0000016393,0.0000016346, -0.0000016288,0.0000016245,0.0000016210,0.0000016224,0.0000016375, -0.0000016493,0.0000016431,0.0000016324,0.0000016357,0.0000016484, -0.0000016569,0.0000016619,0.0000016671,0.0000016685,0.0000016642, -0.0000016495,0.0000016268,0.0000016127,0.0000016114,0.0000016136, -0.0000016155,0.0000016219,0.0000016355,0.0000016526,0.0000016634, -0.0000016681,0.0000016853,0.0000017225,0.0000017547,0.0000017672, -0.0000017661,0.0000017500,0.0000017275,0.0000017132,0.0000017020, -0.0000016801,0.0000016577,0.0000016624,0.0000016838,0.0000016761, -0.0000016602,0.0000016421,0.0000016203,0.0000016557,0.0000017016, -0.0000017139,0.0000016791,0.0000016363,0.0000016211,0.0000016057, -0.0000015987,0.0000016018,0.0000016113,0.0000016197,0.0000016249, -0.0000016264,0.0000016247,0.0000016228,0.0000016248,0.0000016317, -0.0000016388,0.0000016768,0.0000017040,0.0000017351,0.0000017637, -0.0000017706,0.0000017869,0.0000017942,0.0000017806,0.0000017711, -0.0000017704,0.0000017674,0.0000017164,0.0000017015,0.0000017237, -0.0000017221,0.0000017192,0.0000017192,0.0000017174,0.0000017115, -0.0000017165,0.0000017258,0.0000017179,0.0000016921,0.0000016729, -0.0000016666,0.0000016742,0.0000016831,0.0000016857,0.0000016793, -0.0000016702,0.0000016784,0.0000017035,0.0000017237,0.0000017339, -0.0000017395,0.0000017424,0.0000017458,0.0000017512,0.0000017553, -0.0000017560,0.0000017539,0.0000017504,0.0000017463,0.0000017442, -0.0000017453,0.0000017483,0.0000017583,0.0000017629,0.0000017419, -0.0000017021,0.0000016817,0.0000016771,0.0000016745,0.0000016713, -0.0000016679,0.0000016666,0.0000016664,0.0000016651,0.0000016648, -0.0000016675,0.0000016711,0.0000016693,0.0000016687,0.0000016955, -0.0000017400,0.0000017719,0.0000017913,0.0000017951,0.0000018473, -0.0000019279,0.0000019620,0.0000019633,0.0000019526,0.0000019447, -0.0000019447,0.0000019480,0.0000019524,0.0000019565,0.0000019601, -0.0000019617,0.0000019638,0.0000019721,0.0000019865,0.0000019988, -0.0000020047,0.0000020024,0.0000019938,0.0000019870,0.0000019861, -0.0000019884,0.0000019933,0.0000019982,0.0000020020,0.0000020044, -0.0000020048,0.0000020018,0.0000019896,0.0000019694,0.0000019452, -0.0000019220,0.0000019036,0.0000018906,0.0000018806,0.0000018766, -0.0000018905,0.0000019057,0.0000018817,0.0000018306,0.0000018040, -0.0000017973,0.0000017945,0.0000017968,0.0000018012,0.0000018002, -0.0000017966,0.0000017981,0.0000018018,0.0000017996,0.0000017934, -0.0000017884,0.0000017874,0.0000017913,0.0000017977,0.0000018047, -0.0000018126,0.0000018170,0.0000018195,0.0000018268,0.0000018316, -0.0000018298,0.0000018237,0.0000018218,0.0000018335,0.0000018464, -0.0000018408,0.0000018136,0.0000017798,0.0000017924,0.0000018103, -0.0000018107,0.0000018356,0.0000018506,0.0000018291,0.0000018023, -0.0000018475,0.0000019172,0.0000019365,0.0000019316,0.0000019197, -0.0000019108,0.0000018735,0.0000017444,0.0000016551,0.0000016752, -0.0000016617,0.0000016255,0.0000015725,0.0000015660,0.0000015685, -0.0000015674,0.0000015839,0.0000016044,0.0000016074,0.0000016279, -0.0000016622,0.0000016736,0.0000016737,0.0000016761,0.0000016796, -0.0000016956,0.0000017174,0.0000017267,0.0000017119,0.0000016684, -0.0000016437,0.0000016515,0.0000016603,0.0000016514,0.0000016231, -0.0000015926,0.0000015743,0.0000015609,0.0000015390,0.0000015222, -0.0000015162,0.0000015114,0.0000015081,0.0000015050,0.0000015030, -0.0000015012,0.0000014897,0.0000014612,0.0000014394,0.0000014356, -0.0000014352,0.0000014261,0.0000014111,0.0000014004,0.0000013991, -0.0000014058,0.0000014145,0.0000014202,0.0000014257,0.0000014327, -0.0000014392,0.0000014456,0.0000014568,0.0000014726,0.0000014818, -0.0000014815,0.0000014750,0.0000014659,0.0000014554,0.0000014459, -0.0000014404,0.0000014394,0.0000014417,0.0000014433,0.0000014430, -0.0000014409,0.0000014383,0.0000014385,0.0000014417,0.0000014445, -0.0000014444,0.0000014417,0.0000014367,0.0000014337,0.0000014353, -0.0000014419,0.0000014512,0.0000014610,0.0000014719,0.0000014837, -0.0000014956,0.0000015075,0.0000015185,0.0000015277,0.0000015345, -0.0000015354,0.0000015365,0.0000015369,0.0000015381,0.0000015389, -0.0000015404,0.0000015411,0.0000015416,0.0000015419,0.0000015433, -0.0000015462,0.0000015495,0.0000015532,0.0000015565,0.0000015590, -0.0000015618,0.0000015664,0.0000015731,0.0000015809,0.0000015867, -0.0000015890,0.0000015885,0.0000015862,0.0000015826,0.0000015761, -0.0000015665,0.0000015546,0.0000015452,0.0000015415,0.0000015368, -0.0000015358,0.0000015381,0.0000015397,0.0000015403,0.0000015403, -0.0000015399,0.0000015403,0.0000015412,0.0000015408,0.0000015384, -0.0000015354,0.0000015341,0.0000015350,0.0000015374,0.0000015415, -0.0000015480,0.0000015565,0.0000015684,0.0000015804,0.0000015888, -0.0000015943,0.0000015931,0.0000015912,0.0000015886,0.0000015877, -0.0000015912,0.0000016014,0.0000016162,0.0000016220,0.0000016133, -0.0000016036,0.0000016105,0.0000016320,0.0000016362,0.0000016125, -0.0000015853,0.0000015814,0.0000015912,0.0000016120,0.0000016227, -0.0000016228,0.0000016224,0.0000016237,0.0000016251,0.0000016252, -0.0000016235,0.0000016201,0.0000016172,0.0000016168,0.0000016198, -0.0000016254,0.0000016330,0.0000016422,0.0000016526,0.0000016627, -0.0000016714,0.0000016788,0.0000016841,0.0000016860,0.0000016845, -0.0000016820,0.0000016815,0.0000016846,0.0000016926,0.0000017035, -0.0000017140,0.0000017219,0.0000017323,0.0000017568,0.0000017961, -0.0000018355,0.0000018681,0.0000018979,0.0000019234,0.0000019417, -0.0000019551,0.0000019615,0.0000019630,0.0000019638,0.0000019655, -0.0000019672,0.0000019694,0.0000019713,0.0000019719,0.0000019732, -0.0000019770,0.0000019821,0.0000019864,0.0000019884,0.0000019891, -0.0000019899,0.0000019929,0.0000020006,0.0000020109,0.0000020202, -0.0000020260,0.0000020191,0.0000020006,0.0000019865,0.0000019775, -0.0000019659,0.0000019489,0.0000019331,0.0000019253,0.0000019255, -0.0000019299,0.0000019444,0.0000019611,0.0000019601,0.0000019429, -0.0000019244,0.0000019135,0.0000019141,0.0000019180,0.0000019216, -0.0000019225,0.0000019218,0.0000019203,0.0000019221,0.0000019243, -0.0000019286,0.0000019353,0.0000019455,0.0000019641,0.0000019867, -0.0000020047,0.0000020142,0.0000020171,0.0000020168,0.0000020101, -0.0000019959,0.0000019822,0.0000019781,0.0000019780,0.0000019649, -0.0000019339,0.0000019034,0.0000018808,0.0000018117,0.0000017169, -0.0000018031,0.0000018993,0.0000019357,0.0000019206,0.0000019188, -0.0000019288,0.0000019473,0.0000019552,0.0000019551,0.0000019528, -0.0000019356,0.0000018900,0.0000018472,0.0000018399,0.0000018392, -0.0000018415,0.0000018526,0.0000018732,0.0000019016,0.0000019242, -0.0000019344,0.0000019363,0.0000019353,0.0000019272,0.0000019094, -0.0000018929,0.0000018817,0.0000018725,0.0000018643,0.0000018596, -0.0000018590,0.0000018596,0.0000018590,0.0000018570,0.0000018526, -0.0000018463,0.0000018405,0.0000018339,0.0000018240,0.0000018114, -0.0000017998,0.0000017947,0.0000018000,0.0000018144,0.0000018297, -0.0000018453,0.0000018602,0.0000018759,0.0000018910,0.0000018882, -0.0000018637,0.0000018500,0.0000018519,0.0000018486,0.0000018332, -0.0000018179,0.0000018127,0.0000018179,0.0000018339,0.0000018468, -0.0000018445,0.0000018274,0.0000017946,0.0000017568,0.0000017324, -0.0000017218,0.0000017185,0.0000017188,0.0000017185,0.0000017160, -0.0000017121,0.0000017072,0.0000017005,0.0000016921,0.0000016864, -0.0000016876,0.0000016928,0.0000016940,0.0000016868,0.0000016779, -0.0000016753,0.0000016762,0.0000016778,0.0000016766,0.0000016723, -0.0000016695,0.0000016688,0.0000016682,0.0000016682,0.0000016693, -0.0000016687,0.0000016660,0.0000016614,0.0000016477,0.0000016232, -0.0000016030,0.0000015895,0.0000015843,0.0000015882,0.0000015954, -0.0000015972,0.0000015912,0.0000015877,0.0000015890,0.0000015890, -0.0000015873,0.0000015895,0.0000016122,0.0000016287,0.0000016438, -0.0000016736,0.0000017003,0.0000017075,0.0000017100,0.0000017148, -0.0000017168,0.0000017154,0.0000017158,0.0000017192,0.0000017209, -0.0000017182,0.0000017082,0.0000016891,0.0000016668,0.0000016510, -0.0000016468,0.0000016344,0.0000016196,0.0000016206,0.0000016321, -0.0000016385,0.0000016356,0.0000016376,0.0000016380,0.0000016391, -0.0000016401,0.0000016390,0.0000016362,0.0000016316,0.0000016266, -0.0000016225,0.0000016222,0.0000016345,0.0000016486,0.0000016375, -0.0000016144,0.0000016125,0.0000016307,0.0000016495,0.0000016585, -0.0000016638,0.0000016667,0.0000016636,0.0000016527,0.0000016335, -0.0000016149,0.0000016087,0.0000016108,0.0000016157,0.0000016217, -0.0000016331,0.0000016506,0.0000016626,0.0000016674,0.0000016802, -0.0000017101,0.0000017378,0.0000017484,0.0000017452,0.0000017323, -0.0000017176,0.0000017061,0.0000016907,0.0000016648,0.0000016512, -0.0000016672,0.0000016814,0.0000016621,0.0000016491,0.0000016219, -0.0000016178,0.0000016648,0.0000017002,0.0000017016,0.0000016586, -0.0000016267,0.0000016130,0.0000015950,0.0000015901,0.0000015994, -0.0000016097,0.0000016177,0.0000016253,0.0000016294,0.0000016299, -0.0000016241,0.0000016194,0.0000016255,0.0000016350,0.0000016682, -0.0000017016,0.0000017303,0.0000017620,0.0000017694,0.0000017799, -0.0000017838,0.0000017761,0.0000017708,0.0000017700,0.0000017593, -0.0000017044,0.0000017044,0.0000017224,0.0000017190,0.0000017180, -0.0000017194,0.0000017163,0.0000017155,0.0000017253,0.0000017287, -0.0000017122,0.0000016850,0.0000016679,0.0000016670,0.0000016774, -0.0000016819,0.0000016790,0.0000016726,0.0000016666,0.0000016722, -0.0000016890,0.0000017060,0.0000017218,0.0000017345,0.0000017403, -0.0000017443,0.0000017493,0.0000017514,0.0000017501,0.0000017492, -0.0000017485,0.0000017460,0.0000017447,0.0000017470,0.0000017581, -0.0000017639,0.0000017433,0.0000017026,0.0000016799,0.0000016747, -0.0000016730,0.0000016688,0.0000016633,0.0000016617,0.0000016628, -0.0000016647,0.0000016696,0.0000016763,0.0000016799,0.0000016774, -0.0000016693,0.0000016782,0.0000017198,0.0000017587,0.0000017849, -0.0000017931,0.0000018128,0.0000018921,0.0000019500,0.0000019658, -0.0000019700,0.0000019737,0.0000019760,0.0000019772,0.0000019782, -0.0000019801,0.0000019830,0.0000019836,0.0000019844,0.0000019863, -0.0000019918,0.0000019978,0.0000020014,0.0000019982,0.0000019894, -0.0000019860,0.0000019887,0.0000019946,0.0000019995,0.0000020030, -0.0000020031,0.0000020005,0.0000019952,0.0000019841,0.0000019677, -0.0000019486,0.0000019290,0.0000019118,0.0000018989,0.0000018933, -0.0000018969,0.0000019145,0.0000019159,0.0000018716,0.0000018232, -0.0000018063,0.0000018019,0.0000017981,0.0000018005,0.0000018021, -0.0000017992,0.0000017970,0.0000017979,0.0000017961,0.0000017881, -0.0000017809,0.0000017754,0.0000017723,0.0000017722,0.0000017793, -0.0000017914,0.0000018048,0.0000018136,0.0000018145,0.0000018166, -0.0000018243,0.0000018293,0.0000018287,0.0000018335,0.0000018421, -0.0000018454,0.0000018341,0.0000018116,0.0000017784,0.0000017814, -0.0000018131,0.0000018080,0.0000018241,0.0000018495,0.0000018480, -0.0000018169,0.0000018064,0.0000018644,0.0000019202,0.0000019325, -0.0000019208,0.0000019141,0.0000019091,0.0000018562,0.0000017124, -0.0000016571,0.0000016739,0.0000016517,0.0000016088,0.0000015714, -0.0000015706,0.0000015711,0.0000015828,0.0000016043,0.0000016067, -0.0000016251,0.0000016607,0.0000016738,0.0000016722,0.0000016712, -0.0000016741,0.0000016916,0.0000017170,0.0000017268,0.0000017086, -0.0000016641,0.0000016464,0.0000016567,0.0000016620,0.0000016459, -0.0000016140,0.0000015861,0.0000015724,0.0000015547,0.0000015329, -0.0000015229,0.0000015175,0.0000015122,0.0000015091,0.0000015063, -0.0000015058,0.0000014998,0.0000014761,0.0000014491,0.0000014416, -0.0000014405,0.0000014314,0.0000014153,0.0000014020,0.0000014011, -0.0000014067,0.0000014186,0.0000014322,0.0000014492,0.0000014691, -0.0000014861,0.0000014972,0.0000015041,0.0000015104,0.0000015206, -0.0000015303,0.0000015343,0.0000015307,0.0000015206,0.0000015072, -0.0000014927,0.0000014820,0.0000014771,0.0000014784,0.0000014808, -0.0000014798,0.0000014744,0.0000014649,0.0000014530,0.0000014439, -0.0000014423,0.0000014423,0.0000014415,0.0000014375,0.0000014322, -0.0000014277,0.0000014262,0.0000014283,0.0000014317,0.0000014344, -0.0000014377,0.0000014430,0.0000014505,0.0000014609,0.0000014725, -0.0000014838,0.0000014937,0.0000015016,0.0000015080,0.0000015140, -0.0000015209,0.0000015286,0.0000015362,0.0000015413,0.0000015414, -0.0000015416,0.0000015436,0.0000015450,0.0000015471,0.0000015491, -0.0000015488,0.0000015466,0.0000015463,0.0000015485,0.0000015521, -0.0000015566,0.0000015626,0.0000015700,0.0000015782,0.0000015849, -0.0000015865,0.0000015879,0.0000015854,0.0000015783,0.0000015684, -0.0000015567,0.0000015439,0.0000015362,0.0000015330,0.0000015294, -0.0000015271,0.0000015255,0.0000015241,0.0000015244,0.0000015252, -0.0000015247,0.0000015232,0.0000015219,0.0000015222,0.0000015239, -0.0000015276,0.0000015321,0.0000015382,0.0000015464,0.0000015558, -0.0000015674,0.0000015788,0.0000015870,0.0000015902,0.0000015879, -0.0000015869,0.0000015877,0.0000015937,0.0000016067,0.0000016195, -0.0000016164,0.0000016080,0.0000016119,0.0000016314,0.0000016385, -0.0000016200,0.0000015908,0.0000015820,0.0000015926,0.0000016140, -0.0000016235,0.0000016233,0.0000016222,0.0000016218,0.0000016216, -0.0000016210,0.0000016193,0.0000016161,0.0000016118,0.0000016089, -0.0000016084,0.0000016094,0.0000016113,0.0000016147,0.0000016196, -0.0000016253,0.0000016317,0.0000016383,0.0000016430,0.0000016438, -0.0000016412,0.0000016374,0.0000016347,0.0000016348,0.0000016404, -0.0000016544,0.0000016760,0.0000017006,0.0000017195,0.0000017342, -0.0000017612,0.0000018075,0.0000018519,0.0000018819,0.0000019069, -0.0000019259,0.0000019347,0.0000019434,0.0000019500,0.0000019545, -0.0000019595,0.0000019650,0.0000019702,0.0000019745,0.0000019766, -0.0000019759,0.0000019772,0.0000019835,0.0000019907,0.0000019960, -0.0000019988,0.0000020017,0.0000020065,0.0000020123,0.0000020186, -0.0000020207,0.0000020047,0.0000019803,0.0000019691,0.0000019615, -0.0000019465,0.0000019277,0.0000019189,0.0000019232,0.0000019297, -0.0000019312,0.0000019339,0.0000019393,0.0000019344,0.0000019192, -0.0000019090,0.0000019108,0.0000019236,0.0000019333,0.0000019390, -0.0000019429,0.0000019443,0.0000019408,0.0000019324,0.0000019256, -0.0000019250,0.0000019270,0.0000019314,0.0000019372,0.0000019523, -0.0000019778,0.0000019975,0.0000020084,0.0000020151,0.0000020167, -0.0000020133,0.0000019999,0.0000019854,0.0000019799,0.0000019793, -0.0000019618,0.0000019255,0.0000018943,0.0000018420,0.0000017505, -0.0000017645,0.0000018850,0.0000019267,0.0000019152,0.0000019075, -0.0000019162,0.0000019357,0.0000019446,0.0000019446,0.0000019420, -0.0000019184,0.0000018670,0.0000018306,0.0000018264,0.0000018201, -0.0000018196,0.0000018280,0.0000018448,0.0000018668,0.0000018902, -0.0000019137,0.0000019303,0.0000019344,0.0000019309,0.0000019207, -0.0000019060,0.0000018939,0.0000018859,0.0000018774,0.0000018690, -0.0000018633,0.0000018593,0.0000018562,0.0000018520,0.0000018479, -0.0000018428,0.0000018378,0.0000018305,0.0000018210,0.0000018098, -0.0000017977,0.0000017896,0.0000017933,0.0000018075,0.0000018232, -0.0000018406,0.0000018585,0.0000018749,0.0000018910,0.0000018904, -0.0000018680,0.0000018507,0.0000018518,0.0000018511,0.0000018376, -0.0000018211,0.0000018152,0.0000018239,0.0000018407,0.0000018470, -0.0000018405,0.0000018179,0.0000017801,0.0000017440,0.0000017247, -0.0000017179,0.0000017168,0.0000017158,0.0000017124,0.0000017083, -0.0000017056,0.0000017037,0.0000016988,0.0000016900,0.0000016822, -0.0000016813,0.0000016855,0.0000016864,0.0000016810,0.0000016749, -0.0000016727,0.0000016731,0.0000016757,0.0000016767,0.0000016741, -0.0000016712,0.0000016706,0.0000016712,0.0000016722,0.0000016714, -0.0000016661,0.0000016610,0.0000016558,0.0000016408,0.0000016174, -0.0000015992,0.0000015874,0.0000015860,0.0000015918,0.0000015957, -0.0000015920,0.0000015874,0.0000015886,0.0000015893,0.0000015888, -0.0000015865,0.0000015964,0.0000016203,0.0000016307,0.0000016514, -0.0000016844,0.0000017025,0.0000017055,0.0000017087,0.0000017133, -0.0000017142,0.0000017134,0.0000017156,0.0000017209,0.0000017249, -0.0000017231,0.0000017113,0.0000016892,0.0000016652,0.0000016522, -0.0000016431,0.0000016204,0.0000016032,0.0000016083,0.0000016249, -0.0000016141,0.0000016311,0.0000016380,0.0000016387,0.0000016380, -0.0000016385,0.0000016384,0.0000016358,0.0000016299,0.0000016248, -0.0000016229,0.0000016317,0.0000016474,0.0000016358,0.0000016022, -0.0000015917,0.0000016062,0.0000016343,0.0000016534,0.0000016608, -0.0000016638,0.0000016625,0.0000016558,0.0000016408,0.0000016182, -0.0000016076,0.0000016092,0.0000016169,0.0000016231,0.0000016329, -0.0000016493,0.0000016616,0.0000016672,0.0000016781,0.0000017013, -0.0000017228,0.0000017305,0.0000017274,0.0000017198,0.0000017093, -0.0000016975,0.0000016768,0.0000016518,0.0000016484,0.0000016722, -0.0000016749,0.0000016515,0.0000016362,0.0000016055,0.0000016231, -0.0000016711,0.0000016947,0.0000016857,0.0000016413,0.0000016195, -0.0000016040,0.0000015846,0.0000015849,0.0000015996,0.0000016085, -0.0000016175,0.0000016282,0.0000016357,0.0000016389,0.0000016330, -0.0000016208,0.0000016186,0.0000016312,0.0000016605,0.0000016989, -0.0000017252,0.0000017592,0.0000017700,0.0000017744,0.0000017773, -0.0000017750,0.0000017693,0.0000017714,0.0000017470,0.0000017018, -0.0000017055,0.0000017210,0.0000017166,0.0000017185,0.0000017200, -0.0000017184,0.0000017233,0.0000017304,0.0000017283,0.0000017037, -0.0000016762,0.0000016636,0.0000016696,0.0000016793,0.0000016763, -0.0000016706,0.0000016680,0.0000016652,0.0000016642,0.0000016705, -0.0000016844,0.0000017071,0.0000017283,0.0000017388,0.0000017434, -0.0000017461,0.0000017465,0.0000017478,0.0000017497,0.0000017477, -0.0000017444,0.0000017458,0.0000017573,0.0000017655,0.0000017460, -0.0000017050,0.0000016798,0.0000016732,0.0000016714,0.0000016661, -0.0000016585,0.0000016556,0.0000016577,0.0000016638,0.0000016736, -0.0000016840,0.0000016872,0.0000016848,0.0000016753,0.0000016712, -0.0000016988,0.0000017420,0.0000017738,0.0000017919,0.0000017935, -0.0000018477,0.0000019252,0.0000019557,0.0000019645,0.0000019703, -0.0000019727,0.0000019732,0.0000019730,0.0000019744,0.0000019780, -0.0000019828,0.0000019896,0.0000019931,0.0000019950,0.0000019959, -0.0000019978,0.0000019954,0.0000019892,0.0000019899,0.0000019964, -0.0000019999,0.0000019957,0.0000019863,0.0000019757,0.0000019640, -0.0000019526,0.0000019421,0.0000019318,0.0000019237,0.0000019186, -0.0000019181,0.0000019226,0.0000019297,0.0000019282,0.0000018979, -0.0000018469,0.0000018160,0.0000018096,0.0000018053,0.0000018019, -0.0000018030,0.0000018018,0.0000017977,0.0000017971,0.0000017975, -0.0000017922,0.0000017858,0.0000017837,0.0000017812,0.0000017762, -0.0000017715,0.0000017707,0.0000017796,0.0000017953,0.0000018086, -0.0000018120,0.0000018097,0.0000018119,0.0000018173,0.0000018207, -0.0000018273,0.0000018358,0.0000018377,0.0000018251,0.0000018059, -0.0000017784,0.0000017734,0.0000018104,0.0000018118,0.0000018133, -0.0000018442,0.0000018519,0.0000018434,0.0000018113,0.0000018206, -0.0000018775,0.0000019181,0.0000019220,0.0000018985,0.0000018986, -0.0000019028,0.0000018248,0.0000016755,0.0000016636,0.0000016688, -0.0000016420,0.0000015976,0.0000015764,0.0000015729,0.0000015806, -0.0000016043,0.0000016101,0.0000016174,0.0000016534,0.0000016733, -0.0000016735,0.0000016703,0.0000016698,0.0000016874,0.0000017164, -0.0000017274,0.0000017072,0.0000016612,0.0000016470,0.0000016591, -0.0000016611,0.0000016389,0.0000016055,0.0000015821,0.0000015701, -0.0000015480,0.0000015299,0.0000015242,0.0000015180,0.0000015125, -0.0000015096,0.0000015073,0.0000015057,0.0000014903,0.0000014621, -0.0000014486,0.0000014466,0.0000014393,0.0000014225,0.0000014075, -0.0000014031,0.0000014111,0.0000014240,0.0000014414,0.0000014696, -0.0000015009,0.0000015212,0.0000015266,0.0000015243,0.0000015197, -0.0000015196,0.0000015253,0.0000015343,0.0000015428,0.0000015483, -0.0000015496,0.0000015518,0.0000015464,0.0000015393,0.0000015344, -0.0000015341,0.0000015364,0.0000015367,0.0000015333,0.0000015256, -0.0000015136,0.0000014988,0.0000014839,0.0000014711,0.0000014605, -0.0000014508,0.0000014408,0.0000014313,0.0000014270,0.0000014264, -0.0000014269,0.0000014281,0.0000014282,0.0000014275,0.0000014266, -0.0000014259,0.0000014276,0.0000014317,0.0000014365,0.0000014420, -0.0000014478,0.0000014544,0.0000014628,0.0000014736,0.0000014853, -0.0000014962,0.0000015048,0.0000015108,0.0000015162,0.0000015223, -0.0000015296,0.0000015370,0.0000015432,0.0000015461,0.0000015454, -0.0000015445,0.0000015441,0.0000015445,0.0000015447,0.0000015457, -0.0000015483,0.0000015529,0.0000015601,0.0000015701,0.0000015808, -0.0000015870,0.0000015891,0.0000015889,0.0000015832,0.0000015729, -0.0000015623,0.0000015506,0.0000015404,0.0000015326,0.0000015273, -0.0000015254,0.0000015263,0.0000015278,0.0000015281,0.0000015268, -0.0000015241,0.0000015216,0.0000015204,0.0000015218,0.0000015250, -0.0000015307,0.0000015378,0.0000015466,0.0000015573,0.0000015700, -0.0000015809,0.0000015871,0.0000015868,0.0000015869,0.0000015898, -0.0000015996,0.0000016130,0.0000016164,0.0000016116,0.0000016130, -0.0000016302,0.0000016387,0.0000016278,0.0000016005,0.0000015878, -0.0000015993,0.0000016177,0.0000016261,0.0000016247,0.0000016221, -0.0000016211,0.0000016205,0.0000016197,0.0000016175,0.0000016135, -0.0000016092,0.0000016061,0.0000016050,0.0000016047,0.0000016043, -0.0000016046,0.0000016059,0.0000016080,0.0000016117,0.0000016164, -0.0000016200,0.0000016210,0.0000016205,0.0000016197,0.0000016190, -0.0000016185,0.0000016187,0.0000016208,0.0000016308,0.0000016551, -0.0000016904,0.0000017209,0.0000017414,0.0000017727,0.0000018216, -0.0000018626,0.0000018842,0.0000019041,0.0000019173,0.0000019187, -0.0000019220,0.0000019287,0.0000019379,0.0000019493,0.0000019609, -0.0000019715,0.0000019775,0.0000019808,0.0000019800,0.0000019837, -0.0000019911,0.0000019983,0.0000020028,0.0000020070,0.0000020114, -0.0000020168,0.0000020160,0.0000019934,0.0000019693,0.0000019628, -0.0000019510,0.0000019297,0.0000019161,0.0000019173,0.0000019308, -0.0000019399,0.0000019384,0.0000019326,0.0000019287,0.0000019206, -0.0000019059,0.0000018986,0.0000019053,0.0000019147,0.0000019180, -0.0000019267,0.0000019434,0.0000019594,0.0000019669,0.0000019635, -0.0000019492,0.0000019338,0.0000019265,0.0000019282,0.0000019310, -0.0000019344,0.0000019480,0.0000019725,0.0000019925,0.0000020046, -0.0000020135,0.0000020170,0.0000020145,0.0000020019,0.0000019874, -0.0000019824,0.0000019782,0.0000019504,0.0000019097,0.0000018631, -0.0000017739,0.0000017446,0.0000018712,0.0000019212,0.0000019158, -0.0000019019,0.0000019071,0.0000019251,0.0000019344,0.0000019343, -0.0000019293,0.0000019016,0.0000018487,0.0000018149,0.0000018080, -0.0000017965,0.0000017934,0.0000018005,0.0000018151,0.0000018321, -0.0000018519,0.0000018786,0.0000019077,0.0000019275,0.0000019306, -0.0000019264,0.0000019181,0.0000019059,0.0000018939,0.0000018858, -0.0000018791,0.0000018720,0.0000018657,0.0000018600,0.0000018547, -0.0000018500,0.0000018446,0.0000018379,0.0000018309,0.0000018237, -0.0000018135,0.0000017993,0.0000017886,0.0000017892,0.0000018007, -0.0000018171,0.0000018376,0.0000018581,0.0000018750,0.0000018902, -0.0000018916,0.0000018710,0.0000018505,0.0000018501,0.0000018520, -0.0000018403,0.0000018228,0.0000018177,0.0000018307,0.0000018456, -0.0000018467,0.0000018352,0.0000018074,0.0000017663,0.0000017337, -0.0000017192,0.0000017147,0.0000017127,0.0000017078,0.0000017009, -0.0000016963,0.0000016956,0.0000016966,0.0000016952,0.0000016883, -0.0000016794,0.0000016757,0.0000016773,0.0000016785,0.0000016758, -0.0000016719,0.0000016699,0.0000016708,0.0000016748,0.0000016777, -0.0000016773,0.0000016764,0.0000016766,0.0000016772,0.0000016764, -0.0000016704,0.0000016611,0.0000016557,0.0000016505,0.0000016343, -0.0000016124,0.0000015958,0.0000015869,0.0000015891,0.0000015942, -0.0000015924,0.0000015869,0.0000015867,0.0000015900,0.0000015892, -0.0000015873,0.0000015864,0.0000016062,0.0000016238,0.0000016335, -0.0000016617,0.0000016923,0.0000017015,0.0000017038,0.0000017073, -0.0000017113,0.0000017125,0.0000017129,0.0000017170,0.0000017240, -0.0000017286,0.0000017268,0.0000017125,0.0000016875,0.0000016635, -0.0000016525,0.0000016362,0.0000016092,0.0000015938,0.0000015982, -0.0000015908,0.0000016049,0.0000016256,0.0000016379,0.0000016405, -0.0000016403,0.0000016408,0.0000016399,0.0000016339,0.0000016275, -0.0000016234,0.0000016288,0.0000016456,0.0000016375,0.0000016003, -0.0000015772,0.0000015828,0.0000016114,0.0000016415,0.0000016567, -0.0000016609,0.0000016606,0.0000016569,0.0000016459,0.0000016222, -0.0000016076,0.0000016084,0.0000016175,0.0000016248,0.0000016338, -0.0000016485,0.0000016605,0.0000016673,0.0000016780,0.0000016956, -0.0000017107,0.0000017155,0.0000017142,0.0000017097,0.0000017000, -0.0000016860,0.0000016621,0.0000016441,0.0000016523,0.0000016751, -0.0000016645,0.0000016445,0.0000016196,0.0000015970,0.0000016354, -0.0000016748,0.0000016891,0.0000016668,0.0000016279,0.0000016135, -0.0000015944,0.0000015776,0.0000015831,0.0000015987,0.0000016079, -0.0000016205,0.0000016323,0.0000016405,0.0000016455,0.0000016426, -0.0000016289,0.0000016173,0.0000016257,0.0000016534,0.0000016957, -0.0000017203,0.0000017564,0.0000017711,0.0000017732,0.0000017755, -0.0000017742,0.0000017680,0.0000017694,0.0000017332,0.0000016972, -0.0000017071,0.0000017184,0.0000017164,0.0000017208,0.0000017218, -0.0000017233,0.0000017280,0.0000017319,0.0000017229,0.0000016921, -0.0000016675,0.0000016630,0.0000016742,0.0000016778,0.0000016661, -0.0000016626,0.0000016656,0.0000016628,0.0000016579,0.0000016567, -0.0000016678,0.0000016949,0.0000017223,0.0000017366,0.0000017415, -0.0000017436,0.0000017463,0.0000017495,0.0000017486,0.0000017442, -0.0000017445,0.0000017564,0.0000017656,0.0000017488,0.0000017089, -0.0000016817,0.0000016731,0.0000016703,0.0000016636,0.0000016536, -0.0000016494,0.0000016533,0.0000016635,0.0000016780,0.0000016897, -0.0000016921,0.0000016888,0.0000016818,0.0000016720,0.0000016813, -0.0000017218,0.0000017596,0.0000017867,0.0000017924,0.0000018084, -0.0000018840,0.0000019392,0.0000019514,0.0000019544,0.0000019527, -0.0000019437,0.0000019335,0.0000019303,0.0000019370,0.0000019534, -0.0000019718,0.0000019864,0.0000019943,0.0000019958,0.0000019963, -0.0000019930,0.0000019891,0.0000019918,0.0000019968,0.0000019883, -0.0000019687,0.0000019505,0.0000019426,0.0000019392,0.0000019403, -0.0000019412,0.0000019420,0.0000019409,0.0000019392,0.0000019336, -0.0000019180,0.0000018879,0.0000018490,0.0000018211,0.0000018135, -0.0000018126,0.0000018075,0.0000018036,0.0000018055,0.0000018021, -0.0000017968,0.0000017970,0.0000017957,0.0000017911,0.0000017901, -0.0000017962,0.0000017973,0.0000017885,0.0000017772,0.0000017701, -0.0000017715,0.0000017865,0.0000018021,0.0000018087,0.0000018077, -0.0000018041,0.0000018037,0.0000018062,0.0000018132,0.0000018226, -0.0000018254,0.0000018143,0.0000017993,0.0000017758,0.0000017683, -0.0000018036,0.0000018186,0.0000018092,0.0000018377,0.0000018529, -0.0000018524,0.0000018406,0.0000018189,0.0000018394,0.0000018865, -0.0000019136,0.0000019047,0.0000018704,0.0000018808,0.0000018928, -0.0000017858,0.0000016642,0.0000016705,0.0000016626,0.0000016347, -0.0000015959,0.0000015791,0.0000015763,0.0000015982,0.0000016179, -0.0000016158,0.0000016438,0.0000016704,0.0000016720,0.0000016722, -0.0000016704,0.0000016862,0.0000017164,0.0000017287,0.0000017080, -0.0000016598,0.0000016480,0.0000016607,0.0000016587,0.0000016315, -0.0000015981,0.0000015797,0.0000015656,0.0000015415,0.0000015296, -0.0000015249,0.0000015165,0.0000015119,0.0000015095,0.0000015075, -0.0000015002,0.0000014759,0.0000014536,0.0000014503,0.0000014467, -0.0000014323,0.0000014169,0.0000014101,0.0000014152,0.0000014291, -0.0000014489,0.0000014811,0.0000015168,0.0000015363,0.0000015386, -0.0000015343,0.0000015290,0.0000015241,0.0000015222,0.0000015249, -0.0000015307,0.0000015369,0.0000015425,0.0000015475,0.0000015516, -0.0000015541,0.0000015536,0.0000015518,0.0000015508,0.0000015502, -0.0000015481,0.0000015431,0.0000015362,0.0000015275,0.0000015174, -0.0000015089,0.0000015026,0.0000014972,0.0000014910,0.0000014833, -0.0000014736,0.0000014633,0.0000014542,0.0000014469,0.0000014410, -0.0000014355,0.0000014303,0.0000014261,0.0000014236,0.0000014210, -0.0000014189,0.0000014173,0.0000014177,0.0000014192,0.0000014217, -0.0000014245,0.0000014277,0.0000014327,0.0000014393,0.0000014459, -0.0000014510,0.0000014561,0.0000014637,0.0000014732,0.0000014841, -0.0000014949,0.0000015043,0.0000015108,0.0000015153,0.0000015214, -0.0000015298,0.0000015379,0.0000015414,0.0000015403,0.0000015391, -0.0000015386,0.0000015399,0.0000015458,0.0000015544,0.0000015639, -0.0000015746,0.0000015855,0.0000015911,0.0000015929,0.0000015906, -0.0000015821,0.0000015738,0.0000015662,0.0000015607,0.0000015579, -0.0000015568,0.0000015550,0.0000015502,0.0000015428,0.0000015342, -0.0000015268,0.0000015219,0.0000015192,0.0000015202,0.0000015242, -0.0000015305,0.0000015384,0.0000015488,0.0000015627,0.0000015770, -0.0000015855,0.0000015870,0.0000015886,0.0000015952,0.0000016069, -0.0000016154,0.0000016126,0.0000016128,0.0000016282,0.0000016394, -0.0000016351,0.0000016151,0.0000016022,0.0000016083,0.0000016233, -0.0000016297,0.0000016275,0.0000016240,0.0000016218,0.0000016199, -0.0000016171,0.0000016133,0.0000016094,0.0000016063,0.0000016044, -0.0000016038,0.0000016031,0.0000016024,0.0000016025,0.0000016034, -0.0000016050,0.0000016079,0.0000016115,0.0000016141,0.0000016152, -0.0000016155,0.0000016152,0.0000016152,0.0000016158,0.0000016172, -0.0000016190,0.0000016211,0.0000016276,0.0000016487,0.0000016875, -0.0000017261,0.0000017522,0.0000017836,0.0000018280,0.0000018626, -0.0000018749,0.0000018934,0.0000019078,0.0000019097,0.0000019108, -0.0000019161,0.0000019261,0.0000019401,0.0000019560,0.0000019714, -0.0000019801,0.0000019813,0.0000019855,0.0000019907,0.0000019966, -0.0000020016,0.0000020065,0.0000020140,0.0000020136,0.0000019876, -0.0000019633,0.0000019574,0.0000019402,0.0000019176,0.0000019117, -0.0000019209,0.0000019357,0.0000019439,0.0000019425,0.0000019357, -0.0000019273,0.0000019126,0.0000018948,0.0000018894,0.0000018947, -0.0000018967,0.0000018962,0.0000018988,0.0000019124,0.0000019408, -0.0000019711,0.0000019849,0.0000019810,0.0000019630,0.0000019413, -0.0000019285,0.0000019291,0.0000019324,0.0000019324,0.0000019466, -0.0000019725,0.0000019899,0.0000020019,0.0000020123,0.0000020161, -0.0000020135,0.0000020013,0.0000019896,0.0000019853,0.0000019693, -0.0000019295,0.0000018813,0.0000017966,0.0000017428,0.0000018481, -0.0000019197,0.0000019193,0.0000019004,0.0000019016,0.0000019148, -0.0000019263,0.0000019260,0.0000019188,0.0000018906,0.0000018377, -0.0000018007,0.0000017894,0.0000017772,0.0000017744,0.0000017781, -0.0000017865,0.0000017974,0.0000018152,0.0000018417,0.0000018720, -0.0000018999,0.0000019191,0.0000019261,0.0000019247,0.0000019171, -0.0000019027,0.0000018900,0.0000018833,0.0000018779,0.0000018712, -0.0000018639,0.0000018572,0.0000018511,0.0000018449,0.0000018385, -0.0000018327,0.0000018265,0.0000018168,0.0000018025,0.0000017893, -0.0000017858,0.0000017949,0.0000018128,0.0000018360,0.0000018588, -0.0000018758,0.0000018906,0.0000018940,0.0000018736,0.0000018503, -0.0000018480,0.0000018518,0.0000018404,0.0000018229,0.0000018219, -0.0000018375,0.0000018477,0.0000018448,0.0000018291,0.0000017953, -0.0000017534,0.0000017260,0.0000017154,0.0000017109,0.0000017053, -0.0000016964,0.0000016887,0.0000016853,0.0000016860,0.0000016892, -0.0000016912,0.0000016881,0.0000016795,0.0000016735,0.0000016725, -0.0000016732,0.0000016724,0.0000016699,0.0000016686,0.0000016700, -0.0000016741,0.0000016782,0.0000016810,0.0000016828,0.0000016830, -0.0000016816,0.0000016764,0.0000016655,0.0000016553,0.0000016511, -0.0000016456,0.0000016288,0.0000016079,0.0000015923,0.0000015886, -0.0000015926,0.0000015929,0.0000015860,0.0000015837,0.0000015895, -0.0000015898,0.0000015878,0.0000015845,0.0000015909,0.0000016153, -0.0000016245,0.0000016392,0.0000016731,0.0000016952,0.0000016997, -0.0000017013,0.0000017053,0.0000017099,0.0000017118,0.0000017137, -0.0000017203,0.0000017283,0.0000017319,0.0000017282,0.0000017109, -0.0000016836,0.0000016617,0.0000016501,0.0000016290,0.0000016025, -0.0000015897,0.0000015861,0.0000015826,0.0000015949,0.0000016200, -0.0000016392,0.0000016446,0.0000016441,0.0000016427,0.0000016372, -0.0000016302,0.0000016248,0.0000016259,0.0000016423,0.0000016422, -0.0000016052,0.0000015757,0.0000015724,0.0000015879,0.0000016211, -0.0000016471,0.0000016565,0.0000016570,0.0000016555,0.0000016482, -0.0000016270,0.0000016089,0.0000016077,0.0000016167,0.0000016257, -0.0000016347,0.0000016468,0.0000016585,0.0000016671,0.0000016780, -0.0000016911,0.0000017005,0.0000017035,0.0000017034,0.0000016992, -0.0000016887,0.0000016714,0.0000016490,0.0000016423,0.0000016609, -0.0000016742,0.0000016538,0.0000016381,0.0000016025,0.0000015984, -0.0000016482,0.0000016774,0.0000016803,0.0000016483,0.0000016178, -0.0000016067,0.0000015855,0.0000015729,0.0000015826,0.0000015966, -0.0000016092,0.0000016244,0.0000016351,0.0000016420,0.0000016462, -0.0000016485,0.0000016383,0.0000016177,0.0000016195,0.0000016463, -0.0000016914,0.0000017165,0.0000017534,0.0000017724,0.0000017750, -0.0000017766,0.0000017725,0.0000017664,0.0000017631,0.0000017189, -0.0000016951,0.0000017081,0.0000017170,0.0000017202,0.0000017242, -0.0000017251,0.0000017251,0.0000017269,0.0000017288,0.0000017123, -0.0000016801,0.0000016610,0.0000016648,0.0000016773,0.0000016702, -0.0000016546,0.0000016568,0.0000016646,0.0000016622,0.0000016544, -0.0000016503,0.0000016593,0.0000016865,0.0000017168,0.0000017341, -0.0000017401,0.0000017432,0.0000017472,0.0000017482,0.0000017443, -0.0000017436,0.0000017553,0.0000017662,0.0000017521,0.0000017135, -0.0000016846,0.0000016743,0.0000016704,0.0000016616,0.0000016489, -0.0000016442,0.0000016512,0.0000016673,0.0000016853,0.0000016963, -0.0000016975,0.0000016921,0.0000016859,0.0000016768,0.0000016723, -0.0000017006,0.0000017424,0.0000017752,0.0000017924,0.0000017924, -0.0000018309,0.0000019033,0.0000019370,0.0000019378,0.0000019199, -0.0000018904,0.0000018667,0.0000018582,0.0000018659,0.0000018923, -0.0000019293,0.0000019630,0.0000019837,0.0000019937,0.0000019950, -0.0000019904,0.0000019886,0.0000019918,0.0000019861,0.0000019649, -0.0000019494,0.0000019464,0.0000019482,0.0000019506,0.0000019449, -0.0000019337,0.0000019172,0.0000018963,0.0000018729,0.0000018490, -0.0000018280,0.0000018162,0.0000018137,0.0000018153,0.0000018140, -0.0000018076,0.0000018057,0.0000018059,0.0000017999,0.0000017957, -0.0000017971,0.0000017952,0.0000017906,0.0000017961,0.0000018053, -0.0000018076,0.0000018012,0.0000017868,0.0000017736,0.0000017673, -0.0000017768,0.0000017958,0.0000018052,0.0000018064,0.0000018038, -0.0000017985,0.0000017977,0.0000018056,0.0000018144,0.0000018172, -0.0000018069,0.0000017929,0.0000017720,0.0000017642,0.0000017979, -0.0000018252,0.0000018135,0.0000018309,0.0000018566,0.0000018505, -0.0000018535,0.0000018427,0.0000018332,0.0000018580,0.0000018902, -0.0000019057,0.0000018867,0.0000018463,0.0000018715,0.0000018799, -0.0000017518,0.0000016633,0.0000016718,0.0000016561,0.0000016296, -0.0000015962,0.0000015805,0.0000015906,0.0000016203,0.0000016216, -0.0000016370,0.0000016663,0.0000016695,0.0000016712,0.0000016709, -0.0000016865,0.0000017168,0.0000017298,0.0000017103,0.0000016606, -0.0000016496,0.0000016626,0.0000016565,0.0000016247,0.0000015925, -0.0000015782,0.0000015601,0.0000015363,0.0000015301,0.0000015244, -0.0000015142,0.0000015105,0.0000015087,0.0000015059,0.0000014890, -0.0000014610,0.0000014505,0.0000014497,0.0000014400,0.0000014254, -0.0000014185,0.0000014211,0.0000014327,0.0000014512,0.0000014842, -0.0000015210,0.0000015398,0.0000015421,0.0000015416,0.0000015429, -0.0000015444,0.0000015444,0.0000015417,0.0000015402,0.0000015420, -0.0000015445,0.0000015450,0.0000015459,0.0000015479,0.0000015501, -0.0000015517,0.0000015514,0.0000015498,0.0000015468,0.0000015423, -0.0000015373,0.0000015320,0.0000015254,0.0000015159,0.0000015045, -0.0000014943,0.0000014878,0.0000014842,0.0000014818,0.0000014796, -0.0000014771,0.0000014741,0.0000014712,0.0000014683,0.0000014641, -0.0000014584,0.0000014513,0.0000014429,0.0000014341,0.0000014258, -0.0000014183,0.0000014159,0.0000014148,0.0000014138,0.0000014143, -0.0000014155,0.0000014158,0.0000014164,0.0000014179,0.0000014206, -0.0000014230,0.0000014253,0.0000014292,0.0000014351,0.0000014426, -0.0000014502,0.0000014573,0.0000014641,0.0000014719,0.0000014819, -0.0000014923,0.0000015007,0.0000015089,0.0000015194,0.0000015295, -0.0000015343,0.0000015346,0.0000015360,0.0000015379,0.0000015421, -0.0000015489,0.0000015580,0.0000015710,0.0000015864,0.0000015929, -0.0000015979,0.0000015971,0.0000015944,0.0000015892,0.0000015814, -0.0000015706,0.0000015592,0.0000015461,0.0000015370,0.0000015307, -0.0000015254,0.0000015203,0.0000015178,0.0000015166,0.0000015181, -0.0000015232,0.0000015308,0.0000015424,0.0000015588,0.0000015753, -0.0000015850,0.0000015883,0.0000015922,0.0000016015,0.0000016111, -0.0000016122,0.0000016124,0.0000016248,0.0000016395,0.0000016411, -0.0000016300,0.0000016207,0.0000016219,0.0000016305,0.0000016339, -0.0000016316,0.0000016276,0.0000016226,0.0000016167,0.0000016114, -0.0000016086,0.0000016070,0.0000016049,0.0000016032,0.0000016023, -0.0000016014,0.0000016007,0.0000016009,0.0000016016,0.0000016027, -0.0000016046,0.0000016068,0.0000016087,0.0000016099,0.0000016101, -0.0000016103,0.0000016107,0.0000016113,0.0000016123,0.0000016144, -0.0000016185,0.0000016239,0.0000016313,0.0000016517,0.0000016918, -0.0000017332,0.0000017599,0.0000017884,0.0000018285,0.0000018556, -0.0000018634,0.0000018828,0.0000019022,0.0000019084,0.0000019095, -0.0000019135,0.0000019219,0.0000019355,0.0000019528,0.0000019678, -0.0000019796,0.0000019875,0.0000019932,0.0000019975,0.0000020021, -0.0000020100,0.0000020120,0.0000019870,0.0000019603,0.0000019521, -0.0000019334,0.0000019128,0.0000019110,0.0000019212,0.0000019348, -0.0000019433,0.0000019421,0.0000019346,0.0000019236,0.0000019065, -0.0000018918,0.0000018906,0.0000018957,0.0000018986,0.0000019001, -0.0000018980,0.0000018972,0.0000019094,0.0000019454,0.0000019843, -0.0000019977,0.0000019919,0.0000019714,0.0000019444,0.0000019294, -0.0000019308,0.0000019319,0.0000019319,0.0000019497,0.0000019760, -0.0000019892,0.0000019997,0.0000020105,0.0000020143,0.0000020109, -0.0000020013,0.0000019933,0.0000019816,0.0000019491,0.0000018969, -0.0000018209,0.0000017606,0.0000018211,0.0000019142,0.0000019225, -0.0000019010,0.0000018975,0.0000019051,0.0000019171,0.0000019192, -0.0000019122,0.0000018856,0.0000018336,0.0000017927,0.0000017769, -0.0000017663,0.0000017638,0.0000017644,0.0000017658,0.0000017686, -0.0000017821,0.0000018062,0.0000018329,0.0000018594,0.0000018849, -0.0000019068,0.0000019208,0.0000019214,0.0000019110,0.0000018952, -0.0000018848,0.0000018797,0.0000018746,0.0000018682,0.0000018622, -0.0000018558,0.0000018491,0.0000018421,0.0000018351,0.0000018281, -0.0000018191,0.0000018061,0.0000017916,0.0000017856,0.0000017916, -0.0000018107,0.0000018361,0.0000018600,0.0000018767,0.0000018906, -0.0000018953,0.0000018771,0.0000018525,0.0000018471,0.0000018494, -0.0000018381,0.0000018218,0.0000018262,0.0000018445,0.0000018508, -0.0000018421,0.0000018211,0.0000017827,0.0000017427,0.0000017210, -0.0000017122,0.0000017053,0.0000016963,0.0000016871,0.0000016807, -0.0000016782,0.0000016796,0.0000016837,0.0000016878,0.0000016873, -0.0000016813,0.0000016738,0.0000016701,0.0000016698,0.0000016695, -0.0000016681,0.0000016677,0.0000016689,0.0000016724,0.0000016783, -0.0000016837,0.0000016857,0.0000016847,0.0000016809,0.0000016721, -0.0000016591,0.0000016503,0.0000016481,0.0000016420,0.0000016232, -0.0000016018,0.0000015905,0.0000015912,0.0000015932,0.0000015858, -0.0000015805,0.0000015863,0.0000015906,0.0000015872,0.0000015851, -0.0000015825,0.0000016005,0.0000016197,0.0000016254,0.0000016485, -0.0000016813,0.0000016942,0.0000016963,0.0000016985,0.0000017039, -0.0000017092,0.0000017121,0.0000017172,0.0000017258,0.0000017318, -0.0000017323,0.0000017264,0.0000017059,0.0000016779,0.0000016594, -0.0000016458,0.0000016222,0.0000015984,0.0000015943,0.0000015806, -0.0000015756,0.0000015881,0.0000016150,0.0000016391,0.0000016474, -0.0000016461,0.0000016402,0.0000016334,0.0000016273,0.0000016256, -0.0000016370,0.0000016435,0.0000016148,0.0000015789,0.0000015665, -0.0000015708,0.0000015978,0.0000016311,0.0000016483,0.0000016509, -0.0000016508,0.0000016474,0.0000016312,0.0000016110,0.0000016075, -0.0000016154,0.0000016254,0.0000016337,0.0000016435,0.0000016548, -0.0000016657,0.0000016765,0.0000016854,0.0000016905,0.0000016925, -0.0000016924,0.0000016874,0.0000016750,0.0000016557,0.0000016411, -0.0000016464,0.0000016698,0.0000016682,0.0000016461,0.0000016290, -0.0000015901,0.0000016100,0.0000016585,0.0000016769,0.0000016709, -0.0000016312,0.0000016086,0.0000015989,0.0000015786,0.0000015718, -0.0000015826,0.0000015957,0.0000016120,0.0000016263,0.0000016351, -0.0000016409,0.0000016448,0.0000016484,0.0000016443,0.0000016239, -0.0000016153,0.0000016400,0.0000016870,0.0000017140,0.0000017505, -0.0000017730,0.0000017783,0.0000017782,0.0000017683,0.0000017638, -0.0000017527,0.0000017073,0.0000016946,0.0000017100,0.0000017190, -0.0000017250,0.0000017277,0.0000017253,0.0000017172,0.0000017170, -0.0000017216,0.0000016996,0.0000016684,0.0000016588,0.0000016703, -0.0000016753,0.0000016582,0.0000016454,0.0000016537,0.0000016632, -0.0000016610,0.0000016539,0.0000016502,0.0000016548,0.0000016805, -0.0000017120,0.0000017304,0.0000017362,0.0000017404,0.0000017452, -0.0000017443,0.0000017435,0.0000017540,0.0000017667,0.0000017556, -0.0000017186,0.0000016881,0.0000016760,0.0000016711,0.0000016607, -0.0000016452,0.0000016410,0.0000016532,0.0000016771,0.0000016973, -0.0000017067,0.0000017073,0.0000017003,0.0000016903,0.0000016822, -0.0000016722,0.0000016827,0.0000017225,0.0000017603,0.0000017876, -0.0000017932,0.0000017958,0.0000018408,0.0000018902,0.0000018951, -0.0000018598,0.0000018259,0.0000018092,0.0000018045,0.0000018079, -0.0000018230,0.0000018585,0.0000019174,0.0000019614,0.0000019818, -0.0000019888,0.0000019880,0.0000019884,0.0000019848,0.0000019681, -0.0000019535,0.0000019511,0.0000019512,0.0000019387,0.0000019141, -0.0000018844,0.0000018576,0.0000018385,0.0000018273,0.0000018224, -0.0000018185,0.0000018179,0.0000018182,0.0000018170,0.0000018108, -0.0000018050,0.0000018057,0.0000018063,0.0000017984,0.0000017924, -0.0000017932,0.0000017935,0.0000017950,0.0000018091,0.0000018212, -0.0000018170,0.0000018108,0.0000017980,0.0000017792,0.0000017650, -0.0000017672,0.0000017871,0.0000018028,0.0000018069,0.0000018059, -0.0000018012,0.0000017980,0.0000018037,0.0000018126,0.0000018124, -0.0000018014,0.0000017876,0.0000017672,0.0000017597,0.0000017917, -0.0000018312,0.0000018235,0.0000018287,0.0000018580,0.0000018529, -0.0000018473,0.0000018580,0.0000018513,0.0000018544,0.0000018714, -0.0000018895,0.0000019054,0.0000018758,0.0000018349,0.0000018704, -0.0000018556,0.0000017089,0.0000016642,0.0000016674,0.0000016526, -0.0000016253,0.0000015919,0.0000015858,0.0000016159,0.0000016272, -0.0000016357,0.0000016634,0.0000016687,0.0000016698,0.0000016694, -0.0000016844,0.0000017169,0.0000017304,0.0000017133,0.0000016624, -0.0000016515,0.0000016633,0.0000016543,0.0000016196,0.0000015892, -0.0000015770,0.0000015551,0.0000015341,0.0000015309,0.0000015227, -0.0000015124,0.0000015096,0.0000015080,0.0000015009,0.0000014755, -0.0000014521,0.0000014492,0.0000014443,0.0000014309,0.0000014227, -0.0000014245,0.0000014355,0.0000014502,0.0000014794,0.0000015186, -0.0000015398,0.0000015421,0.0000015439,0.0000015501,0.0000015590, -0.0000015648,0.0000015660,0.0000015630,0.0000015586,0.0000015585, -0.0000015599,0.0000015584,0.0000015546,0.0000015517,0.0000015506, -0.0000015503,0.0000015495,0.0000015469,0.0000015434,0.0000015397, -0.0000015365,0.0000015347,0.0000015334,0.0000015310,0.0000015265, -0.0000015198,0.0000015116,0.0000015031,0.0000014952,0.0000014883, -0.0000014819,0.0000014771,0.0000014741,0.0000014715,0.0000014692, -0.0000014673,0.0000014653,0.0000014624,0.0000014576,0.0000014505, -0.0000014419,0.0000014337,0.0000014274,0.0000014233,0.0000014226, -0.0000014235,0.0000014237,0.0000014227,0.0000014225,0.0000014236, -0.0000014254,0.0000014254,0.0000014252,0.0000014276,0.0000014307, -0.0000014345,0.0000014381,0.0000014402,0.0000014423,0.0000014450, -0.0000014492,0.0000014543,0.0000014610,0.0000014691,0.0000014761, -0.0000014827,0.0000014951,0.0000015136,0.0000015302,0.0000015361, -0.0000015355,0.0000015351,0.0000015391,0.0000015478,0.0000015584, -0.0000015702,0.0000015800,0.0000015853,0.0000015826,0.0000015704, -0.0000015545,0.0000015417,0.0000015340,0.0000015316,0.0000015307, -0.0000015292,0.0000015263,0.0000015227,0.0000015190,0.0000015158, -0.0000015156,0.0000015177,0.0000015252,0.0000015388,0.0000015574, -0.0000015750,0.0000015852,0.0000015897,0.0000015960,0.0000016053, -0.0000016106,0.0000016110,0.0000016197,0.0000016355,0.0000016416, -0.0000016393,0.0000016342,0.0000016339,0.0000016370,0.0000016371, -0.0000016342,0.0000016275,0.0000016187,0.0000016108,0.0000016075, -0.0000016058,0.0000016009,0.0000015940,0.0000015894,0.0000015880, -0.0000015885,0.0000015901,0.0000015924,0.0000015943,0.0000015961, -0.0000015981,0.0000016002,0.0000016018,0.0000016024,0.0000016018, -0.0000016010,0.0000016007,0.0000016009,0.0000016024,0.0000016059, -0.0000016116,0.0000016183,0.0000016248,0.0000016344,0.0000016581, -0.0000016998,0.0000017407,0.0000017627,0.0000017879,0.0000018282, -0.0000018480,0.0000018548,0.0000018746,0.0000018978,0.0000019097, -0.0000019128,0.0000019156,0.0000019226,0.0000019347,0.0000019500, -0.0000019655,0.0000019790,0.0000019901,0.0000019991,0.0000020069, -0.0000020090,0.0000019885,0.0000019600,0.0000019500,0.0000019338, -0.0000019128,0.0000019089,0.0000019176,0.0000019296,0.0000019394, -0.0000019400,0.0000019302,0.0000019181,0.0000019060,0.0000018987, -0.0000018999,0.0000019046,0.0000019055,0.0000018951,0.0000018776, -0.0000018792,0.0000018951,0.0000019155,0.0000019597,0.0000019989, -0.0000020069,0.0000019989,0.0000019747,0.0000019443,0.0000019305, -0.0000019327,0.0000019311,0.0000019333,0.0000019568,0.0000019813, -0.0000019876,0.0000019970,0.0000020085,0.0000020126,0.0000020104, -0.0000020044,0.0000019923,0.0000019652,0.0000019142,0.0000018358, -0.0000017659,0.0000018037,0.0000019087,0.0000019239,0.0000019039, -0.0000018962,0.0000018975,0.0000019070,0.0000019120,0.0000019087, -0.0000018856,0.0000018360,0.0000017902,0.0000017715,0.0000017622, -0.0000017582,0.0000017557,0.0000017518,0.0000017478,0.0000017544, -0.0000017707,0.0000017906,0.0000018151,0.0000018442,0.0000018711, -0.0000018919,0.0000019043,0.0000019037,0.0000018924,0.0000018824, -0.0000018773,0.0000018736,0.0000018700,0.0000018661,0.0000018610, -0.0000018546,0.0000018470,0.0000018393,0.0000018314,0.0000018219, -0.0000018095,0.0000017952,0.0000017857,0.0000017908,0.0000018101, -0.0000018367,0.0000018615,0.0000018774,0.0000018897,0.0000018941, -0.0000018798,0.0000018554,0.0000018456,0.0000018447,0.0000018330, -0.0000018235,0.0000018335,0.0000018518,0.0000018516,0.0000018375, -0.0000018122,0.0000017711,0.0000017351,0.0000017175,0.0000017081, -0.0000016988,0.0000016894,0.0000016810,0.0000016749,0.0000016728, -0.0000016745,0.0000016792,0.0000016842,0.0000016860,0.0000016822, -0.0000016742,0.0000016683,0.0000016663,0.0000016658,0.0000016657, -0.0000016661,0.0000016674,0.0000016709,0.0000016772,0.0000016829, -0.0000016845,0.0000016826,0.0000016766,0.0000016652,0.0000016529, -0.0000016474,0.0000016469,0.0000016375,0.0000016152,0.0000015966, -0.0000015908,0.0000015930,0.0000015867,0.0000015781,0.0000015808, -0.0000015903,0.0000015874,0.0000015850,0.0000015811,0.0000015860, -0.0000016107,0.0000016205,0.0000016294,0.0000016587,0.0000016843, -0.0000016913,0.0000016929,0.0000016961,0.0000017025,0.0000017090, -0.0000017149,0.0000017229,0.0000017304,0.0000017323,0.0000017315, -0.0000017216,0.0000016982,0.0000016717,0.0000016559,0.0000016400, -0.0000016162,0.0000016106,0.0000015892,0.0000015748,0.0000015732, -0.0000015847,0.0000016119,0.0000016382,0.0000016473,0.0000016449, -0.0000016379,0.0000016315,0.0000016258,0.0000016313,0.0000016462, -0.0000016265,0.0000015871,0.0000015681,0.0000015644,0.0000015785, -0.0000016116,0.0000016365,0.0000016430,0.0000016438,0.0000016443, -0.0000016337,0.0000016141,0.0000016085,0.0000016142,0.0000016241, -0.0000016310,0.0000016388,0.0000016498,0.0000016628,0.0000016725, -0.0000016770,0.0000016794,0.0000016807,0.0000016802,0.0000016742, -0.0000016587,0.0000016431,0.0000016399,0.0000016567,0.0000016732, -0.0000016574,0.0000016418,0.0000016151,0.0000015867,0.0000016273, -0.0000016650,0.0000016758,0.0000016572,0.0000016160,0.0000015996, -0.0000015912,0.0000015739,0.0000015727,0.0000015836,0.0000015975, -0.0000016145,0.0000016261,0.0000016337,0.0000016385,0.0000016405, -0.0000016460,0.0000016478,0.0000016323,0.0000016151,0.0000016347, -0.0000016827,0.0000017126,0.0000017477,0.0000017722,0.0000017795, -0.0000017764,0.0000017635,0.0000017613,0.0000017389,0.0000016997, -0.0000016941,0.0000017131,0.0000017236,0.0000017290,0.0000017281, -0.0000017144,0.0000016975,0.0000017069,0.0000017122,0.0000016854, -0.0000016603,0.0000016606,0.0000016739,0.0000016693,0.0000016459, -0.0000016391,0.0000016498,0.0000016584,0.0000016578,0.0000016547, -0.0000016492,0.0000016528,0.0000016766,0.0000017062,0.0000017220, -0.0000017285,0.0000017379,0.0000017429,0.0000017438,0.0000017531, -0.0000017663,0.0000017585,0.0000017240,0.0000016923,0.0000016779, -0.0000016720,0.0000016603,0.0000016432,0.0000016411,0.0000016616, -0.0000016911,0.0000017097,0.0000017171,0.0000017187,0.0000017142, -0.0000017002,0.0000016878,0.0000016765,0.0000016731,0.0000017024, -0.0000017431,0.0000017755,0.0000017934,0.0000017911,0.0000017946, -0.0000018171,0.0000018213,0.0000018032,0.0000017968,0.0000017979, -0.0000017981,0.0000017981,0.0000017988,0.0000018021,0.0000018473, -0.0000019210,0.0000019626,0.0000019767,0.0000019810,0.0000019812, -0.0000019701,0.0000019585,0.0000019542,0.0000019428,0.0000019134, -0.0000018746,0.0000018436,0.0000018275,0.0000018241,0.0000018244, -0.0000018265,0.0000018279,0.0000018273,0.0000018227,0.0000018146, -0.0000018062,0.0000018030,0.0000018063,0.0000018055,0.0000017955, -0.0000017897,0.0000017890,0.0000017883,0.0000017982,0.0000018237, -0.0000018496,0.0000018488,0.0000018258,0.0000018085,0.0000017849, -0.0000017638,0.0000017617,0.0000017789,0.0000017977,0.0000018069, -0.0000018068,0.0000018058,0.0000018037,0.0000018056,0.0000018096, -0.0000018068,0.0000017957,0.0000017818,0.0000017620,0.0000017558, -0.0000017869,0.0000018308,0.0000018372,0.0000018352,0.0000018608, -0.0000018611,0.0000018416,0.0000018507,0.0000018641,0.0000018671, -0.0000018745,0.0000018760,0.0000018869,0.0000019049,0.0000018696, -0.0000018340,0.0000018659,0.0000018094,0.0000016745,0.0000016693, -0.0000016632,0.0000016522,0.0000016156,0.0000015882,0.0000016042, -0.0000016298,0.0000016340,0.0000016609,0.0000016705,0.0000016700, -0.0000016677,0.0000016803,0.0000017150,0.0000017317,0.0000017172, -0.0000016650,0.0000016526,0.0000016634,0.0000016517,0.0000016157, -0.0000015876,0.0000015757,0.0000015510,0.0000015349,0.0000015319, -0.0000015202,0.0000015112,0.0000015091,0.0000015071,0.0000014926, -0.0000014620,0.0000014484,0.0000014470,0.0000014367,0.0000014263, -0.0000014248,0.0000014351,0.0000014492,0.0000014711,0.0000015095, -0.0000015379,0.0000015425,0.0000015424,0.0000015471,0.0000015571, -0.0000015675,0.0000015728,0.0000015730,0.0000015695,0.0000015656, -0.0000015657,0.0000015696,0.0000015718,0.0000015695,0.0000015647, -0.0000015595,0.0000015553,0.0000015516,0.0000015474,0.0000015427, -0.0000015380,0.0000015347,0.0000015340,0.0000015349,0.0000015358, -0.0000015349,0.0000015311,0.0000015250,0.0000015190,0.0000015144, -0.0000015109,0.0000015078,0.0000015048,0.0000015015,0.0000014975, -0.0000014917,0.0000014828,0.0000014724,0.0000014653,0.0000014615, -0.0000014603,0.0000014597,0.0000014577,0.0000014537,0.0000014497, -0.0000014477,0.0000014479,0.0000014486,0.0000014481,0.0000014465, -0.0000014463,0.0000014475,0.0000014484,0.0000014472,0.0000014456, -0.0000014441,0.0000014436,0.0000014442,0.0000014444,0.0000014450, -0.0000014461,0.0000014474,0.0000014476,0.0000014449,0.0000014415, -0.0000014394,0.0000014403,0.0000014422,0.0000014483,0.0000014592, -0.0000014801,0.0000015086,0.0000015304,0.0000015344,0.0000015338, -0.0000015347,0.0000015381,0.0000015422,0.0000015450,0.0000015446, -0.0000015385,0.0000015316,0.0000015296,0.0000015305,0.0000015322, -0.0000015318,0.0000015299,0.0000015278,0.0000015262,0.0000015237, -0.0000015206,0.0000015172,0.0000015151,0.0000015154,0.0000015226, -0.0000015378,0.0000015580,0.0000015757,0.0000015855,0.0000015912, -0.0000015984,0.0000016053,0.0000016079,0.0000016130,0.0000016263, -0.0000016369,0.0000016403,0.0000016394,0.0000016392,0.0000016387, -0.0000016365,0.0000016310,0.0000016218,0.0000016130,0.0000016080, -0.0000016035,0.0000015927,0.0000015784,0.0000015685,0.0000015646, -0.0000015644,0.0000015660,0.0000015688,0.0000015719,0.0000015745, -0.0000015769,0.0000015794,0.0000015812,0.0000015820,0.0000015812, -0.0000015794,0.0000015775,0.0000015764,0.0000015768,0.0000015793, -0.0000015858,0.0000015963,0.0000016083,0.0000016180,0.0000016252, -0.0000016379,0.0000016665,0.0000017090,0.0000017458,0.0000017627, -0.0000017912,0.0000018312,0.0000018422,0.0000018481,0.0000018667, -0.0000018895,0.0000019052,0.0000019133,0.0000019187,0.0000019252, -0.0000019350,0.0000019478,0.0000019624,0.0000019778,0.0000019915, -0.0000019975,0.0000019855,0.0000019597,0.0000019493,0.0000019384, -0.0000019156,0.0000019048,0.0000019092,0.0000019214,0.0000019321, -0.0000019378,0.0000019319,0.0000019203,0.0000019125,0.0000019094, -0.0000019100,0.0000019105,0.0000019067,0.0000018791,0.0000018263, -0.0000018116,0.0000018527,0.0000018975,0.0000019305,0.0000019824, -0.0000020097,0.0000020133,0.0000020025,0.0000019732,0.0000019415, -0.0000019324,0.0000019334,0.0000019299,0.0000019358,0.0000019666, -0.0000019834,0.0000019843,0.0000019955,0.0000020092,0.0000020136, -0.0000020139,0.0000020039,0.0000019780,0.0000019319,0.0000018568, -0.0000017734,0.0000017913,0.0000018988,0.0000019195,0.0000019077, -0.0000018961,0.0000018933,0.0000018975,0.0000019033,0.0000019038, -0.0000018885,0.0000018439,0.0000017944,0.0000017700,0.0000017615, -0.0000017563,0.0000017508,0.0000017443,0.0000017384,0.0000017382, -0.0000017432,0.0000017512,0.0000017677,0.0000017947,0.0000018248, -0.0000018520,0.0000018712,0.0000018775,0.0000018754,0.0000018702, -0.0000018681,0.0000018673,0.0000018656,0.0000018631,0.0000018598, -0.0000018546,0.0000018486,0.0000018424,0.0000018349,0.0000018250, -0.0000018129,0.0000017994,0.0000017886,0.0000017911,0.0000018097, -0.0000018374,0.0000018627,0.0000018777,0.0000018879,0.0000018930, -0.0000018842,0.0000018585,0.0000018421,0.0000018372,0.0000018271, -0.0000018245,0.0000018422,0.0000018542,0.0000018489,0.0000018321, -0.0000018028,0.0000017612,0.0000017301,0.0000017146,0.0000017032, -0.0000016932,0.0000016841,0.0000016742,0.0000016654,0.0000016627, -0.0000016659,0.0000016733,0.0000016805,0.0000016842,0.0000016824, -0.0000016749,0.0000016672,0.0000016634,0.0000016626,0.0000016634, -0.0000016651,0.0000016665,0.0000016694,0.0000016748,0.0000016796, -0.0000016809,0.0000016779,0.0000016694,0.0000016573,0.0000016486, -0.0000016471,0.0000016457,0.0000016298,0.0000016067,0.0000015923, -0.0000015914,0.0000015885,0.0000015783,0.0000015757,0.0000015879, -0.0000015883,0.0000015837,0.0000015815,0.0000015788,0.0000015963, -0.0000016163,0.0000016211,0.0000016367,0.0000016666,0.0000016837, -0.0000016876,0.0000016894,0.0000016948,0.0000017036,0.0000017121, -0.0000017203,0.0000017282,0.0000017321,0.0000017314,0.0000017279, -0.0000017140,0.0000016883,0.0000016651,0.0000016515,0.0000016341, -0.0000016275,0.0000016040,0.0000015853,0.0000015760,0.0000015767, -0.0000015864,0.0000016088,0.0000016344,0.0000016447,0.0000016423, -0.0000016363,0.0000016284,0.0000016279,0.0000016433,0.0000016365, -0.0000015991,0.0000015736,0.0000015642,0.0000015660,0.0000015923, -0.0000016230,0.0000016349,0.0000016368,0.0000016397,0.0000016357, -0.0000016186,0.0000016099,0.0000016133,0.0000016209,0.0000016269, -0.0000016333,0.0000016447,0.0000016580,0.0000016649,0.0000016662, -0.0000016678,0.0000016693,0.0000016685,0.0000016590,0.0000016434, -0.0000016367,0.0000016447,0.0000016670,0.0000016710,0.0000016487, -0.0000016368,0.0000015986,0.0000015929,0.0000016428,0.0000016688, -0.0000016710,0.0000016413,0.0000016031,0.0000015908,0.0000015835, -0.0000015722,0.0000015738,0.0000015860,0.0000016003,0.0000016161, -0.0000016264,0.0000016326,0.0000016343,0.0000016340,0.0000016402, -0.0000016479,0.0000016391,0.0000016152,0.0000016304,0.0000016787, -0.0000017117,0.0000017449,0.0000017699,0.0000017793,0.0000017702, -0.0000017600,0.0000017556,0.0000017251,0.0000016940,0.0000016946, -0.0000017183,0.0000017277,0.0000017299,0.0000017186,0.0000016901, -0.0000016805,0.0000017014,0.0000017020,0.0000016725,0.0000016567, -0.0000016659,0.0000016745,0.0000016575,0.0000016360,0.0000016349, -0.0000016432,0.0000016490,0.0000016538,0.0000016552,0.0000016494, -0.0000016514,0.0000016717,0.0000016969,0.0000017114,0.0000017260, -0.0000017388,0.0000017436,0.0000017524,0.0000017662,0.0000017612, -0.0000017295,0.0000016971,0.0000016803,0.0000016729,0.0000016598, -0.0000016431,0.0000016451,0.0000016737,0.0000017033,0.0000017165, -0.0000017195,0.0000017245,0.0000017259,0.0000017152,0.0000016967, -0.0000016826,0.0000016727,0.0000016854,0.0000017239,0.0000017597, -0.0000017865,0.0000017939,0.0000017903,0.0000017881,0.0000017896, -0.0000017927,0.0000017959,0.0000017967,0.0000017962,0.0000017964, -0.0000017974,0.0000017966,0.0000017978,0.0000018535,0.0000019285, -0.0000019618,0.0000019687,0.0000019664,0.0000019610,0.0000019535, -0.0000019282,0.0000018834,0.0000018431,0.0000018267,0.0000018232, -0.0000018271,0.0000018313,0.0000018339,0.0000018323,0.0000018269, -0.0000018188,0.0000018105,0.0000018062,0.0000018064,0.0000018066, -0.0000018001,0.0000017911,0.0000017885,0.0000017865,0.0000017885, -0.0000018088,0.0000018399,0.0000018824,0.0000018922,0.0000018539, -0.0000018202,0.0000017922,0.0000017637,0.0000017591,0.0000017726, -0.0000017911,0.0000018029,0.0000018063,0.0000018079,0.0000018085, -0.0000018062,0.0000018047,0.0000017985,0.0000017889,0.0000017760, -0.0000017573,0.0000017530,0.0000017844,0.0000018295,0.0000018451, -0.0000018493,0.0000018688,0.0000018746,0.0000018458,0.0000018360, -0.0000018582,0.0000018722,0.0000018841,0.0000018843,0.0000018734, -0.0000018856,0.0000019070,0.0000018631,0.0000018385,0.0000018629, -0.0000017581,0.0000016723,0.0000016694,0.0000016642,0.0000016467, -0.0000015998,0.0000015941,0.0000016262,0.0000016293,0.0000016532, -0.0000016732,0.0000016716,0.0000016677,0.0000016764,0.0000017112, -0.0000017314,0.0000017221,0.0000016693,0.0000016532,0.0000016632, -0.0000016489,0.0000016127,0.0000015870,0.0000015740,0.0000015474, -0.0000015359,0.0000015328,0.0000015181,0.0000015110,0.0000015089, -0.0000015048,0.0000014826,0.0000014523,0.0000014463,0.0000014422, -0.0000014301,0.0000014262,0.0000014321,0.0000014455,0.0000014617, -0.0000014936,0.0000015313,0.0000015450,0.0000015450,0.0000015451, -0.0000015481,0.0000015547,0.0000015631,0.0000015699,0.0000015728, -0.0000015721,0.0000015698,0.0000015683,0.0000015714,0.0000015763, -0.0000015786,0.0000015781,0.0000015745,0.0000015691,0.0000015632, -0.0000015573,0.0000015509,0.0000015448,0.0000015411,0.0000015415, -0.0000015470,0.0000015547,0.0000015605,0.0000015618,0.0000015590, -0.0000015546,0.0000015518,0.0000015509,0.0000015506,0.0000015498, -0.0000015475,0.0000015432,0.0000015359,0.0000015246,0.0000015101, -0.0000014941,0.0000014789,0.0000014673,0.0000014624,0.0000014624, -0.0000014625,0.0000014613,0.0000014611,0.0000014624,0.0000014647, -0.0000014657,0.0000014648,0.0000014633,0.0000014645,0.0000014681, -0.0000014713,0.0000014721,0.0000014731,0.0000014739,0.0000014748, -0.0000014755,0.0000014734,0.0000014690,0.0000014638,0.0000014596, -0.0000014571,0.0000014546,0.0000014504,0.0000014430,0.0000014349, -0.0000014292,0.0000014255,0.0000014253,0.0000014340,0.0000014530, -0.0000014868,0.0000015214,0.0000015335,0.0000015333,0.0000015307, -0.0000015296,0.0000015300,0.0000015315,0.0000015330,0.0000015352, -0.0000015358,0.0000015337,0.0000015305,0.0000015271,0.0000015246, -0.0000015236,0.0000015222,0.0000015209,0.0000015190,0.0000015168, -0.0000015145,0.0000015145,0.0000015216,0.0000015377,0.0000015585, -0.0000015756,0.0000015854,0.0000015919,0.0000015984,0.0000016026, -0.0000016055,0.0000016138,0.0000016258,0.0000016341,0.0000016371, -0.0000016373,0.0000016356,0.0000016314,0.0000016243,0.0000016163, -0.0000016104,0.0000016021,0.0000015864,0.0000015692,0.0000015584, -0.0000015549,0.0000015530,0.0000015537,0.0000015555,0.0000015576, -0.0000015589,0.0000015592,0.0000015599,0.0000015618,0.0000015636, -0.0000015652,0.0000015664,0.0000015670,0.0000015674,0.0000015677, -0.0000015679,0.0000015682,0.0000015701,0.0000015765,0.0000015897, -0.0000016060,0.0000016186,0.0000016273,0.0000016436,0.0000016772, -0.0000017210,0.0000017496,0.0000017659,0.0000018003,0.0000018334, -0.0000018372,0.0000018415,0.0000018564,0.0000018757,0.0000018928, -0.0000019053,0.0000019144,0.0000019226,0.0000019323,0.0000019448, -0.0000019599,0.0000019718,0.0000019707,0.0000019545,0.0000019459, -0.0000019409,0.0000019204,0.0000019012,0.0000018996,0.0000019101, -0.0000019219,0.0000019308,0.0000019345,0.0000019291,0.0000019230, -0.0000019203,0.0000019174,0.0000019120,0.0000019071,0.0000018743, -0.0000017931,0.0000017476,0.0000017752,0.0000018532,0.0000019141, -0.0000019559,0.0000020039,0.0000020154,0.0000020146,0.0000020010, -0.0000019666,0.0000019378,0.0000019339,0.0000019316,0.0000019262, -0.0000019421,0.0000019752,0.0000019823,0.0000019825,0.0000019993, -0.0000020145,0.0000020187,0.0000020150,0.0000019899,0.0000019467, -0.0000018731,0.0000017821,0.0000017843,0.0000018914,0.0000019210, -0.0000019109,0.0000018979,0.0000018932,0.0000018914,0.0000018935, -0.0000018979,0.0000018916,0.0000018560,0.0000018045,0.0000017733, -0.0000017633,0.0000017563,0.0000017489,0.0000017424,0.0000017379, -0.0000017348,0.0000017328,0.0000017310,0.0000017351,0.0000017493, -0.0000017716,0.0000017985,0.0000018241,0.0000018435,0.0000018550, -0.0000018596,0.0000018616,0.0000018618,0.0000018594,0.0000018561, -0.0000018524,0.0000018482,0.0000018445,0.0000018405,0.0000018347, -0.0000018260,0.0000018158,0.0000018038,0.0000017930,0.0000017930, -0.0000018093,0.0000018378,0.0000018634,0.0000018774,0.0000018863, -0.0000018930,0.0000018866,0.0000018615,0.0000018397,0.0000018286, -0.0000018216,0.0000018287,0.0000018515,0.0000018589,0.0000018459, -0.0000018262,0.0000017938,0.0000017535,0.0000017266,0.0000017112, -0.0000016986,0.0000016889,0.0000016785,0.0000016640,0.0000016513, -0.0000016482,0.0000016537,0.0000016639,0.0000016742,0.0000016806, -0.0000016810,0.0000016760,0.0000016684,0.0000016626,0.0000016610, -0.0000016622,0.0000016645,0.0000016662,0.0000016688,0.0000016729, -0.0000016759,0.0000016755,0.0000016705,0.0000016607,0.0000016513, -0.0000016476,0.0000016477,0.0000016416,0.0000016195,0.0000015976, -0.0000015897,0.0000015894,0.0000015810,0.0000015734,0.0000015829, -0.0000015880,0.0000015819,0.0000015804,0.0000015770,0.0000015830, -0.0000016071,0.0000016172,0.0000016238,0.0000016454,0.0000016706, -0.0000016815,0.0000016843,0.0000016882,0.0000016972,0.0000017080, -0.0000017172,0.0000017252,0.0000017307,0.0000017311,0.0000017284, -0.0000017217,0.0000017032,0.0000016769,0.0000016591,0.0000016468, -0.0000016403,0.0000016184,0.0000015970,0.0000015843,0.0000015814, -0.0000015826,0.0000015867,0.0000016050,0.0000016286,0.0000016413, -0.0000016397,0.0000016317,0.0000016274,0.0000016379,0.0000016403, -0.0000016131,0.0000015815,0.0000015675,0.0000015609,0.0000015754, -0.0000016077,0.0000016268,0.0000016310,0.0000016359,0.0000016362, -0.0000016236,0.0000016118,0.0000016109,0.0000016153,0.0000016213, -0.0000016280,0.0000016393,0.0000016507,0.0000016546,0.0000016549, -0.0000016579,0.0000016599,0.0000016560,0.0000016431,0.0000016335, -0.0000016367,0.0000016546,0.0000016729,0.0000016622,0.0000016444, -0.0000016266,0.0000015871,0.0000016095,0.0000016538,0.0000016682, -0.0000016645,0.0000016253,0.0000015918,0.0000015817,0.0000015764, -0.0000015704,0.0000015770,0.0000015893,0.0000016031,0.0000016186, -0.0000016278,0.0000016296,0.0000016267,0.0000016250,0.0000016322, -0.0000016459,0.0000016436,0.0000016196,0.0000016274,0.0000016751, -0.0000017103,0.0000017417,0.0000017663,0.0000017733,0.0000017640, -0.0000017572,0.0000017472,0.0000017133,0.0000016915,0.0000016972, -0.0000017240,0.0000017294,0.0000017236,0.0000016957,0.0000016680, -0.0000016727,0.0000016997,0.0000016905,0.0000016615,0.0000016577, -0.0000016713,0.0000016696,0.0000016454,0.0000016308,0.0000016300, -0.0000016328,0.0000016375,0.0000016500,0.0000016532,0.0000016459, -0.0000016469,0.0000016659,0.0000016883,0.0000017101,0.0000017315, -0.0000017425,0.0000017517,0.0000017656,0.0000017638,0.0000017351, -0.0000017023,0.0000016831,0.0000016740,0.0000016593,0.0000016443, -0.0000016527,0.0000016841,0.0000017078,0.0000017141,0.0000017158, -0.0000017213,0.0000017283,0.0000017263,0.0000017093,0.0000016902, -0.0000016765,0.0000016753,0.0000017045,0.0000017420,0.0000017732, -0.0000017923,0.0000017927,0.0000017883,0.0000017890,0.0000017918, -0.0000017924,0.0000017930,0.0000017931,0.0000017927,0.0000017916, -0.0000017940,0.0000017966,0.0000018034,0.0000018639,0.0000019277, -0.0000019525,0.0000019542,0.0000019429,0.0000019066,0.0000018557, -0.0000018258,0.0000018231,0.0000018272,0.0000018307,0.0000018317, -0.0000018295,0.0000018247,0.0000018183,0.0000018133,0.0000018116, -0.0000018118,0.0000018112,0.0000018032,0.0000017915,0.0000017875, -0.0000017879,0.0000017852,0.0000017950,0.0000018225,0.0000018548, -0.0000019025,0.0000019263,0.0000018859,0.0000018309,0.0000018009, -0.0000017652,0.0000017548,0.0000017670,0.0000017842,0.0000017961, -0.0000018051,0.0000018096,0.0000018097,0.0000018055,0.0000017979, -0.0000017914,0.0000017820,0.0000017699,0.0000017537,0.0000017521, -0.0000017834,0.0000018270,0.0000018530,0.0000018652,0.0000018794, -0.0000018819,0.0000018581,0.0000018277,0.0000018391,0.0000018654, -0.0000018798,0.0000018926,0.0000018821,0.0000018654,0.0000018907, -0.0000019080,0.0000018529,0.0000018483,0.0000018358,0.0000017092, -0.0000016713,0.0000016689,0.0000016678,0.0000016264,0.0000015896, -0.0000016181,0.0000016282,0.0000016439,0.0000016747,0.0000016738, -0.0000016695,0.0000016741,0.0000017068,0.0000017309,0.0000017273, -0.0000016755,0.0000016541,0.0000016629,0.0000016466,0.0000016105, -0.0000015873,0.0000015733,0.0000015449,0.0000015367,0.0000015331, -0.0000015167,0.0000015116,0.0000015091,0.0000015011,0.0000014716, -0.0000014467,0.0000014447,0.0000014382,0.0000014302,0.0000014310, -0.0000014421,0.0000014555,0.0000014740,0.0000015104,0.0000015411, -0.0000015484,0.0000015485,0.0000015489,0.0000015498,0.0000015509, -0.0000015525,0.0000015570,0.0000015647,0.0000015713,0.0000015735, -0.0000015735,0.0000015745,0.0000015778,0.0000015810,0.0000015820, -0.0000015812,0.0000015780,0.0000015730,0.0000015667,0.0000015596, -0.0000015532,0.0000015514,0.0000015564,0.0000015697,0.0000015863, -0.0000016002,0.0000016084,0.0000016112,0.0000016108,0.0000016099, -0.0000016097,0.0000016101,0.0000016103,0.0000016101,0.0000016094, -0.0000016071,0.0000016008,0.0000015877,0.0000015662,0.0000015389, -0.0000015124,0.0000014929,0.0000014821,0.0000014762,0.0000014717, -0.0000014682,0.0000014673,0.0000014688,0.0000014711,0.0000014722, -0.0000014714,0.0000014706,0.0000014723,0.0000014754,0.0000014777, -0.0000014784,0.0000014801,0.0000014820,0.0000014862,0.0000014936, -0.0000015003,0.0000015048,0.0000015055,0.0000015016,0.0000014921, -0.0000014796,0.0000014687,0.0000014613,0.0000014539,0.0000014427, -0.0000014284,0.0000014179,0.0000014131,0.0000014204,0.0000014407, -0.0000014780,0.0000015162,0.0000015300,0.0000015303,0.0000015305, -0.0000015323,0.0000015352,0.0000015367,0.0000015362,0.0000015357, -0.0000015353,0.0000015348,0.0000015332,0.0000015311,0.0000015290, -0.0000015266,0.0000015232,0.0000015200,0.0000015163,0.0000015132, -0.0000015134,0.0000015211,0.0000015372,0.0000015572,0.0000015739, -0.0000015844,0.0000015914,0.0000015961,0.0000015985,0.0000016022, -0.0000016102,0.0000016191,0.0000016252,0.0000016275,0.0000016269, -0.0000016236,0.0000016180,0.0000016111,0.0000015999,0.0000015826, -0.0000015671,0.0000015600,0.0000015563,0.0000015537,0.0000015537, -0.0000015566,0.0000015591,0.0000015597,0.0000015594,0.0000015594, -0.0000015608,0.0000015629,0.0000015649,0.0000015667,0.0000015683, -0.0000015702,0.0000015720,0.0000015727,0.0000015722,0.0000015706, -0.0000015697,0.0000015700,0.0000015760,0.0000015890,0.0000016072, -0.0000016204,0.0000016301,0.0000016528,0.0000016927,0.0000017365, -0.0000017526,0.0000017724,0.0000018082,0.0000018325,0.0000018340, -0.0000018349,0.0000018459,0.0000018624,0.0000018799,0.0000018956, -0.0000019084,0.0000019191,0.0000019297,0.0000019413,0.0000019484, -0.0000019453,0.0000019410,0.0000019379,0.0000019204,0.0000018995, -0.0000018941,0.0000018993,0.0000019101,0.0000019196,0.0000019271, -0.0000019314,0.0000019289,0.0000019262,0.0000019201,0.0000019115, -0.0000019076,0.0000018794,0.0000017849,0.0000017228,0.0000017288, -0.0000017881,0.0000018819,0.0000019401,0.0000019892,0.0000020129, -0.0000020148,0.0000020140,0.0000019945,0.0000019546,0.0000019347, -0.0000019339,0.0000019265,0.0000019257,0.0000019538,0.0000019810, -0.0000019812,0.0000019877,0.0000020093,0.0000020232,0.0000020242, -0.0000020020,0.0000019597,0.0000018876,0.0000017913,0.0000017800, -0.0000018786,0.0000019206,0.0000019138,0.0000018997,0.0000018957, -0.0000018886,0.0000018862,0.0000018918,0.0000018939,0.0000018697, -0.0000018203,0.0000017814,0.0000017661,0.0000017578,0.0000017499, -0.0000017445,0.0000017405,0.0000017344,0.0000017287,0.0000017250, -0.0000017246,0.0000017286,0.0000017386,0.0000017532,0.0000017710, -0.0000017919,0.0000018126,0.0000018289,0.0000018403,0.0000018473, -0.0000018493,0.0000018478,0.0000018438,0.0000018398,0.0000018366, -0.0000018344,0.0000018307,0.0000018244,0.0000018174,0.0000018084, -0.0000017973,0.0000017939,0.0000018091,0.0000018379,0.0000018638, -0.0000018771,0.0000018846,0.0000018916,0.0000018883,0.0000018664, -0.0000018388,0.0000018236,0.0000018213,0.0000018391,0.0000018625, -0.0000018607,0.0000018419,0.0000018201,0.0000017851,0.0000017471, -0.0000017236,0.0000017077,0.0000016954,0.0000016856,0.0000016709, -0.0000016528,0.0000016406,0.0000016379,0.0000016415,0.0000016511, -0.0000016638,0.0000016745,0.0000016789,0.0000016772,0.0000016708, -0.0000016636,0.0000016603,0.0000016609,0.0000016637,0.0000016664, -0.0000016690,0.0000016712,0.0000016716,0.0000016690,0.0000016621, -0.0000016539,0.0000016494,0.0000016485,0.0000016479,0.0000016326, -0.0000016069,0.0000015900,0.0000015891,0.0000015854,0.0000015741, -0.0000015772,0.0000015860,0.0000015803,0.0000015772,0.0000015766, -0.0000015767,0.0000015947,0.0000016114,0.0000016175,0.0000016294, -0.0000016528,0.0000016721,0.0000016798,0.0000016830,0.0000016914, -0.0000017036,0.0000017139,0.0000017215,0.0000017278,0.0000017297, -0.0000017277,0.0000017228,0.0000017112,0.0000016886,0.0000016662, -0.0000016541,0.0000016473,0.0000016291,0.0000016063,0.0000015891, -0.0000015841,0.0000015867,0.0000015870,0.0000015879,0.0000016009, -0.0000016241,0.0000016376,0.0000016356,0.0000016280,0.0000016317, -0.0000016451,0.0000016275,0.0000015915,0.0000015722,0.0000015613, -0.0000015634,0.0000015913,0.0000016176,0.0000016261,0.0000016322, -0.0000016364,0.0000016284,0.0000016131,0.0000016077,0.0000016095, -0.0000016151,0.0000016229,0.0000016333,0.0000016421,0.0000016446, -0.0000016466,0.0000016507,0.0000016502,0.0000016414,0.0000016311, -0.0000016311,0.0000016443,0.0000016653,0.0000016721,0.0000016519, -0.0000016404,0.0000016078,0.0000015871,0.0000016302,0.0000016592, -0.0000016662,0.0000016525,0.0000016097,0.0000015809,0.0000015726, -0.0000015702,0.0000015699,0.0000015811,0.0000015927,0.0000016063, -0.0000016220,0.0000016283,0.0000016246,0.0000016184,0.0000016168, -0.0000016229,0.0000016399,0.0000016467,0.0000016241,0.0000016234, -0.0000016709,0.0000017088,0.0000017385,0.0000017616,0.0000017651, -0.0000017587,0.0000017530,0.0000017376,0.0000017047,0.0000016902, -0.0000017031,0.0000017279,0.0000017270,0.0000017056,0.0000016715, -0.0000016574,0.0000016783,0.0000016986,0.0000016761,0.0000016569, -0.0000016624,0.0000016734,0.0000016594,0.0000016351,0.0000016260, -0.0000016241,0.0000016214,0.0000016287,0.0000016473,0.0000016491, -0.0000016406,0.0000016429,0.0000016623,0.0000016893,0.0000017202, -0.0000017397,0.0000017509,0.0000017645,0.0000017659,0.0000017409, -0.0000017079,0.0000016864,0.0000016753,0.0000016590,0.0000016467, -0.0000016609,0.0000016910,0.0000017046,0.0000017050,0.0000017064, -0.0000017133,0.0000017236,0.0000017285,0.0000017205,0.0000016995, -0.0000016827,0.0000016747,0.0000016877,0.0000017229,0.0000017551, -0.0000017824,0.0000017941,0.0000017907,0.0000017880,0.0000017892, -0.0000017915,0.0000017964,0.0000017991,0.0000017960,0.0000017909, -0.0000017881,0.0000017931,0.0000018006,0.0000018092,0.0000018590, -0.0000019009,0.0000019048,0.0000018748,0.0000018333,0.0000018218, -0.0000018259,0.0000018302,0.0000018288,0.0000018237,0.0000018173, -0.0000018133,0.0000018134,0.0000018147,0.0000018162,0.0000018154, -0.0000018068,0.0000017938,0.0000017863,0.0000017858,0.0000017841, -0.0000017862,0.0000018069,0.0000018350,0.0000018582,0.0000018980, -0.0000019439,0.0000019172,0.0000018411,0.0000018080,0.0000017679, -0.0000017510,0.0000017608,0.0000017794,0.0000017964,0.0000018062, -0.0000018137,0.0000018135,0.0000018041,0.0000017934,0.0000017850, -0.0000017771,0.0000017669,0.0000017539,0.0000017519,0.0000017855, -0.0000018263,0.0000018575,0.0000018807,0.0000018860,0.0000018784, -0.0000018585,0.0000018287,0.0000018202,0.0000018476,0.0000018703, -0.0000018833,0.0000018933,0.0000018722,0.0000018620,0.0000019007, -0.0000018965,0.0000018438,0.0000018496,0.0000017816,0.0000016757, -0.0000016699,0.0000016741,0.0000016594,0.0000015985,0.0000016039, -0.0000016273,0.0000016355,0.0000016715,0.0000016749,0.0000016711, -0.0000016732,0.0000017031,0.0000017285,0.0000017314,0.0000016835, -0.0000016558,0.0000016625,0.0000016459,0.0000016098,0.0000015887, -0.0000015741,0.0000015446,0.0000015375,0.0000015334,0.0000015164, -0.0000015124,0.0000015101,0.0000014975,0.0000014628,0.0000014445, -0.0000014437,0.0000014350,0.0000014313,0.0000014380,0.0000014519, -0.0000014644,0.0000014836,0.0000015174,0.0000015415,0.0000015497, -0.0000015521,0.0000015532,0.0000015536,0.0000015528,0.0000015506, -0.0000015485,0.0000015496,0.0000015584,0.0000015690,0.0000015755, -0.0000015785,0.0000015808,0.0000015832,0.0000015844,0.0000015840, -0.0000015813,0.0000015766,0.0000015703,0.0000015631,0.0000015571, -0.0000015572,0.0000015678,0.0000015860,0.0000016054,0.0000016214, -0.0000016299,0.0000016310,0.0000016288,0.0000016264,0.0000016253, -0.0000016252,0.0000016261,0.0000016286,0.0000016324,0.0000016363, -0.0000016376,0.0000016358,0.0000016291,0.0000016164,0.0000015970, -0.0000015726,0.0000015483,0.0000015290,0.0000015162,0.0000015087, -0.0000015056,0.0000015071,0.0000015120,0.0000015186,0.0000015240, -0.0000015271,0.0000015301,0.0000015322,0.0000015321,0.0000015269, -0.0000015168,0.0000015059,0.0000014960,0.0000014921,0.0000014919, -0.0000014936,0.0000015043,0.0000015190,0.0000015322,0.0000015380, -0.0000015353,0.0000015247,0.0000015066,0.0000014858,0.0000014671, -0.0000014495,0.0000014294,0.0000014128,0.0000014063,0.0000014172, -0.0000014413,0.0000014752,0.0000015067,0.0000015258,0.0000015329, -0.0000015354,0.0000015363,0.0000015366,0.0000015383,0.0000015374, -0.0000015328,0.0000015251,0.0000015213,0.0000015220,0.0000015248, -0.0000015236,0.0000015255,0.0000015227,0.0000015174,0.0000015133, -0.0000015130,0.0000015202,0.0000015355,0.0000015541,0.0000015709, -0.0000015828,0.0000015898,0.0000015927,0.0000015938,0.0000015965, -0.0000016017,0.0000016071,0.0000016103,0.0000016112,0.0000016093, -0.0000016037,0.0000015930,0.0000015785,0.0000015674,0.0000015631, -0.0000015601,0.0000015560,0.0000015570,0.0000015616,0.0000015631, -0.0000015602,0.0000015575,0.0000015574,0.0000015602,0.0000015637, -0.0000015672,0.0000015712,0.0000015762,0.0000015823,0.0000015883, -0.0000015924,0.0000015935,0.0000015915,0.0000015861,0.0000015787, -0.0000015724,0.0000015712,0.0000015776,0.0000015923,0.0000016105, -0.0000016227,0.0000016359,0.0000016684,0.0000017138,0.0000017456, -0.0000017538,0.0000017755,0.0000018076,0.0000018298,0.0000018325, -0.0000018368,0.0000018454,0.0000018591,0.0000018750,0.0000018905, -0.0000019039,0.0000019156,0.0000019257,0.0000019312,0.0000019317, -0.0000019274,0.0000019121,0.0000018966,0.0000018941,0.0000018971, -0.0000019026,0.0000019101,0.0000019157,0.0000019211,0.0000019245, -0.0000019230,0.0000019170,0.0000019100,0.0000019081,0.0000018855, -0.0000017803,0.0000017213,0.0000017217,0.0000017459,0.0000018319, -0.0000019265,0.0000019726,0.0000020084,0.0000020115,0.0000020122, -0.0000020107,0.0000019797,0.0000019402,0.0000019336,0.0000019314, -0.0000019233,0.0000019359,0.0000019712,0.0000019869,0.0000019837, -0.0000020003,0.0000020224,0.0000020297,0.0000020134,0.0000019717, -0.0000019013,0.0000018060,0.0000017818,0.0000018603,0.0000019201, -0.0000019162,0.0000019000,0.0000018950,0.0000018864,0.0000018824, -0.0000018856,0.0000018915,0.0000018814,0.0000018411,0.0000017955, -0.0000017710,0.0000017608,0.0000017535,0.0000017477,0.0000017422, -0.0000017316,0.0000017187,0.0000017120,0.0000017115,0.0000017146, -0.0000017220,0.0000017306,0.0000017385,0.0000017486,0.0000017623, -0.0000017770,0.0000017910,0.0000018042,0.0000018159,0.0000018249, -0.0000018307,0.0000018322,0.0000018309,0.0000018280,0.0000018248, -0.0000018210,0.0000018174,0.0000018113,0.0000018000,0.0000017954, -0.0000018088,0.0000018375,0.0000018638,0.0000018767,0.0000018829, -0.0000018906,0.0000018914,0.0000018713,0.0000018407,0.0000018222, -0.0000018273,0.0000018527,0.0000018666,0.0000018579,0.0000018378, -0.0000018139,0.0000017768,0.0000017422,0.0000017210,0.0000017049, -0.0000016934,0.0000016812,0.0000016623,0.0000016440,0.0000016325, -0.0000016278,0.0000016294,0.0000016381,0.0000016517,0.0000016654, -0.0000016744,0.0000016770,0.0000016736,0.0000016665,0.0000016615, -0.0000016613,0.0000016639,0.0000016669,0.0000016689,0.0000016691, -0.0000016673,0.0000016624,0.0000016557,0.0000016516,0.0000016500, -0.0000016499,0.0000016427,0.0000016186,0.0000015938,0.0000015887, -0.0000015891,0.0000015778,0.0000015734,0.0000015817,0.0000015786, -0.0000015735,0.0000015748,0.0000015756,0.0000015842,0.0000016030, -0.0000016120,0.0000016206,0.0000016368,0.0000016595,0.0000016739, -0.0000016789,0.0000016859,0.0000016993,0.0000017114,0.0000017186, -0.0000017246,0.0000017284,0.0000017265,0.0000017213,0.0000017126, -0.0000016960,0.0000016731,0.0000016578,0.0000016496,0.0000016344, -0.0000016113,0.0000015903,0.0000015823,0.0000015870,0.0000015953, -0.0000015936,0.0000015883,0.0000015982,0.0000016216,0.0000016348, -0.0000016310,0.0000016288,0.0000016431,0.0000016387,0.0000016039, -0.0000015772,0.0000015639,0.0000015578,0.0000015757,0.0000016066, -0.0000016204,0.0000016273,0.0000016353,0.0000016311,0.0000016142, -0.0000016051,0.0000016048,0.0000016094,0.0000016184,0.0000016278, -0.0000016347,0.0000016374,0.0000016406,0.0000016421,0.0000016377, -0.0000016290,0.0000016261,0.0000016351,0.0000016549,0.0000016727, -0.0000016649,0.0000016457,0.0000016313,0.0000015897,0.0000015991, -0.0000016458,0.0000016604,0.0000016612,0.0000016361,0.0000015946, -0.0000015705,0.0000015653,0.0000015654,0.0000015702,0.0000015852, -0.0000015971,0.0000016110,0.0000016260,0.0000016274,0.0000016198, -0.0000016142,0.0000016133,0.0000016163,0.0000016315,0.0000016446, -0.0000016266,0.0000016193,0.0000016665,0.0000017073,0.0000017353, -0.0000017564,0.0000017578,0.0000017537,0.0000017477,0.0000017270, -0.0000016997,0.0000016897,0.0000017109,0.0000017269,0.0000017168, -0.0000016820,0.0000016567,0.0000016573,0.0000016843,0.0000016904, -0.0000016646,0.0000016578,0.0000016692,0.0000016707,0.0000016475, -0.0000016282,0.0000016232,0.0000016180,0.0000016130,0.0000016261, -0.0000016470,0.0000016453,0.0000016355,0.0000016416,0.0000016652, -0.0000017030,0.0000017340,0.0000017500,0.0000017632,0.0000017664, -0.0000017466,0.0000017136,0.0000016899,0.0000016767,0.0000016592, -0.0000016500,0.0000016678,0.0000016933,0.0000016977,0.0000016940, -0.0000016971,0.0000017064,0.0000017183,0.0000017276,0.0000017267, -0.0000017089,0.0000016895,0.0000016780,0.0000016780,0.0000017038, -0.0000017367,0.0000017640,0.0000017884,0.0000017948,0.0000017929, -0.0000017924,0.0000017991,0.0000018081,0.0000018121,0.0000018062, -0.0000017952,0.0000017879,0.0000017866,0.0000017978,0.0000018067, -0.0000018136,0.0000018235,0.0000018257,0.0000018256,0.0000018247, -0.0000018284,0.0000018266,0.0000018204,0.0000018132,0.0000018096, -0.0000018094,0.0000018119,0.0000018146,0.0000018138,0.0000018056, -0.0000017944,0.0000017881,0.0000017869,0.0000017846,0.0000017846, -0.0000017981,0.0000018263,0.0000018416,0.0000018435,0.0000018780, -0.0000019447,0.0000019422,0.0000018531,0.0000018139,0.0000017712, -0.0000017472,0.0000017565,0.0000017783,0.0000018028,0.0000018117, -0.0000018149,0.0000018143,0.0000018030,0.0000017866,0.0000017798, -0.0000017737,0.0000017673,0.0000017597,0.0000017603,0.0000017905, -0.0000018304,0.0000018634,0.0000018850,0.0000018845,0.0000018605, -0.0000018346,0.0000018175,0.0000018099,0.0000018236,0.0000018564, -0.0000018722,0.0000018853,0.0000018849,0.0000018545,0.0000018692, -0.0000019060,0.0000018732,0.0000018467,0.0000018380,0.0000017229, -0.0000016716,0.0000016740,0.0000016800,0.0000016271,0.0000015950, -0.0000016261,0.0000016314,0.0000016649,0.0000016758,0.0000016722, -0.0000016726,0.0000016996,0.0000017255,0.0000017359,0.0000016942, -0.0000016584,0.0000016620,0.0000016468,0.0000016111,0.0000015910, -0.0000015762,0.0000015459,0.0000015391,0.0000015337,0.0000015167, -0.0000015133,0.0000015115,0.0000014945,0.0000014568,0.0000014451, -0.0000014435,0.0000014336,0.0000014325,0.0000014424,0.0000014577, -0.0000014706,0.0000014888,0.0000015163,0.0000015366,0.0000015471, -0.0000015506,0.0000015513,0.0000015513,0.0000015509,0.0000015502, -0.0000015489,0.0000015468,0.0000015457,0.0000015515,0.0000015640, -0.0000015758,0.0000015830,0.0000015866,0.0000015874,0.0000015872, -0.0000015852,0.0000015811,0.0000015752,0.0000015680,0.0000015605, -0.0000015597,0.0000015679,0.0000015834,0.0000016011,0.0000016174, -0.0000016281,0.0000016317,0.0000016312,0.0000016296,0.0000016284, -0.0000016281,0.0000016286,0.0000016306,0.0000016346,0.0000016403, -0.0000016468,0.0000016522,0.0000016546,0.0000016535,0.0000016479, -0.0000016374,0.0000016241,0.0000016106,0.0000015997,0.0000015929, -0.0000015912,0.0000015932,0.0000016002,0.0000016091,0.0000016172, -0.0000016231,0.0000016270,0.0000016298,0.0000016311,0.0000016294, -0.0000016227,0.0000016112,0.0000015966,0.0000015775,0.0000015543, -0.0000015294,0.0000015098,0.0000015009,0.0000015005,0.0000015116, -0.0000015277,0.0000015444,0.0000015562,0.0000015571,0.0000015443, -0.0000015169,0.0000014794,0.0000014472,0.0000014235,0.0000014101, -0.0000014072,0.0000014197,0.0000014408,0.0000014639,0.0000014840, -0.0000014991,0.0000015079,0.0000015099,0.0000015064,0.0000014969, -0.0000014850,0.0000014759,0.0000014731,0.0000014778,0.0000014895, -0.0000015047,0.0000015167,0.0000015238,0.0000015203,0.0000015194, -0.0000015154,0.0000015143,0.0000015190,0.0000015316,0.0000015498, -0.0000015675,0.0000015802,0.0000015870,0.0000015890,0.0000015889, -0.0000015893,0.0000015906,0.0000015915,0.0000015913,0.0000015883, -0.0000015814,0.0000015732,0.0000015682,0.0000015661,0.0000015627, -0.0000015590,0.0000015615,0.0000015679,0.0000015663,0.0000015567, -0.0000015514,0.0000015545,0.0000015631,0.0000015714,0.0000015781, -0.0000015853,0.0000015940,0.0000016029,0.0000016104,0.0000016154, -0.0000016178,0.0000016177,0.0000016141,0.0000016063,0.0000015954, -0.0000015830,0.0000015726,0.0000015705,0.0000015802,0.0000015985, -0.0000016155,0.0000016261,0.0000016485,0.0000016888,0.0000017303, -0.0000017445,0.0000017505,0.0000017712,0.0000017954,0.0000018172, -0.0000018322,0.0000018433,0.0000018544,0.0000018672,0.0000018812, -0.0000018938,0.0000019036,0.0000019107,0.0000019137,0.0000019109, -0.0000019023,0.0000018973,0.0000019011,0.0000019061,0.0000019077, -0.0000019090,0.0000019117,0.0000019122,0.0000019146,0.0000019145, -0.0000019125,0.0000019101,0.0000019126,0.0000018840,0.0000017651, -0.0000017198,0.0000017314,0.0000017395,0.0000017879,0.0000018968, -0.0000019617,0.0000020029,0.0000020085,0.0000020036,0.0000020117, -0.0000020025,0.0000019571,0.0000019328,0.0000019337,0.0000019287, -0.0000019299,0.0000019560,0.0000019884,0.0000019891,0.0000019935, -0.0000020189,0.0000020332,0.0000020230,0.0000019837,0.0000019127, -0.0000018131,0.0000017761,0.0000018458,0.0000019167,0.0000019174, -0.0000018989,0.0000018910,0.0000018816,0.0000018775,0.0000018801, -0.0000018883,0.0000018895,0.0000018637,0.0000018168,0.0000017813, -0.0000017654,0.0000017574,0.0000017513,0.0000017442,0.0000017306, -0.0000017119,0.0000016986,0.0000016956,0.0000016973,0.0000017033, -0.0000017122,0.0000017211,0.0000017291,0.0000017363,0.0000017427, -0.0000017499,0.0000017598,0.0000017716,0.0000017856,0.0000018009, -0.0000018147,0.0000018232,0.0000018242,0.0000018211,0.0000018179, -0.0000018161,0.0000018118,0.0000018014,0.0000017962,0.0000018074, -0.0000018361,0.0000018632,0.0000018765,0.0000018820,0.0000018897, -0.0000018922,0.0000018755,0.0000018462,0.0000018313,0.0000018408, -0.0000018654,0.0000018717,0.0000018544,0.0000018335,0.0000018075, -0.0000017694,0.0000017384,0.0000017186,0.0000017028,0.0000016911, -0.0000016755,0.0000016541,0.0000016330,0.0000016182,0.0000016143, -0.0000016172,0.0000016261,0.0000016390,0.0000016535,0.0000016669, -0.0000016748,0.0000016753,0.0000016713,0.0000016662,0.0000016639, -0.0000016648,0.0000016671,0.0000016682,0.0000016672,0.0000016631, -0.0000016571,0.0000016531,0.0000016524,0.0000016515,0.0000016489, -0.0000016301,0.0000016012,0.0000015888,0.0000015905,0.0000015827, -0.0000015719,0.0000015764,0.0000015754,0.0000015700,0.0000015713, -0.0000015748,0.0000015782,0.0000015930,0.0000016056,0.0000016145, -0.0000016270,0.0000016475,0.0000016671,0.0000016749,0.0000016811, -0.0000016965,0.0000017103,0.0000017170,0.0000017226,0.0000017268, -0.0000017246,0.0000017177,0.0000017099,0.0000016973,0.0000016771, -0.0000016592,0.0000016492,0.0000016342,0.0000016109,0.0000015880, -0.0000015780,0.0000015840,0.0000016002,0.0000016075,0.0000015999, -0.0000015899,0.0000015972,0.0000016207,0.0000016312,0.0000016290, -0.0000016385,0.0000016424,0.0000016167,0.0000015829,0.0000015667, -0.0000015576,0.0000015640,0.0000015938,0.0000016135,0.0000016218, -0.0000016313,0.0000016303,0.0000016153,0.0000016037,0.0000016008, -0.0000016044,0.0000016132,0.0000016221,0.0000016279,0.0000016306, -0.0000016322,0.0000016316,0.0000016273,0.0000016231,0.0000016265, -0.0000016435,0.0000016657,0.0000016728,0.0000016535,0.0000016416, -0.0000016112,0.0000015821,0.0000016209,0.0000016537,0.0000016570, -0.0000016527,0.0000016173,0.0000015812,0.0000015627,0.0000015605, -0.0000015615,0.0000015723,0.0000015913,0.0000016028,0.0000016174, -0.0000016285,0.0000016260,0.0000016172,0.0000016146,0.0000016154, -0.0000016161,0.0000016245,0.0000016422,0.0000016295,0.0000016158, -0.0000016622,0.0000017049,0.0000017318,0.0000017514,0.0000017518, -0.0000017493,0.0000017397,0.0000017175,0.0000016954,0.0000016924, -0.0000017168,0.0000017238,0.0000016986,0.0000016632,0.0000016513, -0.0000016608,0.0000016888,0.0000016804,0.0000016598,0.0000016619, -0.0000016728,0.0000016623,0.0000016358,0.0000016241,0.0000016204, -0.0000016124,0.0000016114,0.0000016309,0.0000016478,0.0000016389, -0.0000016325,0.0000016439,0.0000016804,0.0000017229,0.0000017480, -0.0000017622,0.0000017669,0.0000017518,0.0000017193,0.0000016934, -0.0000016782,0.0000016596,0.0000016534,0.0000016724,0.0000016911, -0.0000016888,0.0000016841,0.0000016900,0.0000017025,0.0000017156, -0.0000017263,0.0000017288,0.0000017162,0.0000016960,0.0000016827, -0.0000016774,0.0000016874,0.0000017183,0.0000017454,0.0000017689, -0.0000017910,0.0000018005,0.0000018037,0.0000018089,0.0000018154, -0.0000018198,0.0000018166,0.0000018021,0.0000017910,0.0000017853, -0.0000017889,0.0000018048,0.0000018144,0.0000018169,0.0000018207, -0.0000018270,0.0000018275,0.0000018198,0.0000018105,0.0000018072, -0.0000018080,0.0000018093,0.0000018081,0.0000018047,0.0000017969, -0.0000017897,0.0000017873,0.0000017875,0.0000017853,0.0000017854, -0.0000017982,0.0000018234,0.0000018400,0.0000018380,0.0000018309, -0.0000018639,0.0000019453,0.0000019546,0.0000018642,0.0000018177, -0.0000017770,0.0000017433,0.0000017541,0.0000017819,0.0000018041, -0.0000018096,0.0000018064,0.0000018003,0.0000017917,0.0000017810, -0.0000017756,0.0000017755,0.0000017713,0.0000017669,0.0000017721, -0.0000018012,0.0000018393,0.0000018736,0.0000018825,0.0000018650, -0.0000018328,0.0000018084,0.0000017988,0.0000017979,0.0000018042, -0.0000018330,0.0000018616,0.0000018706,0.0000018771,0.0000018624, -0.0000018479,0.0000018905,0.0000018961,0.0000018486,0.0000018518, -0.0000017886,0.0000016810,0.0000016719,0.0000016834,0.0000016633, -0.0000016000,0.0000016189,0.0000016321,0.0000016536,0.0000016769, -0.0000016741,0.0000016723,0.0000016966,0.0000017223,0.0000017394, -0.0000017067,0.0000016628,0.0000016612,0.0000016489,0.0000016145, -0.0000015941,0.0000015786,0.0000015477,0.0000015407,0.0000015343, -0.0000015173,0.0000015142,0.0000015127,0.0000014929,0.0000014539, -0.0000014459,0.0000014427,0.0000014329,0.0000014344,0.0000014455, -0.0000014617,0.0000014755,0.0000014909,0.0000015105,0.0000015262, -0.0000015332,0.0000015340,0.0000015320,0.0000015291,0.0000015276, -0.0000015291,0.0000015348,0.0000015416,0.0000015450,0.0000015440, -0.0000015480,0.0000015596,0.0000015753,0.0000015864,0.0000015903, -0.0000015908,0.0000015892,0.0000015862,0.0000015816,0.0000015754, -0.0000015675,0.0000015635,0.0000015662,0.0000015742,0.0000015846, -0.0000015966,0.0000016085,0.0000016196,0.0000016278,0.0000016310, -0.0000016310,0.0000016301,0.0000016291,0.0000016283,0.0000016282, -0.0000016294,0.0000016329,0.0000016399,0.0000016492,0.0000016570, -0.0000016614,0.0000016615,0.0000016585,0.0000016547,0.0000016514, -0.0000016498,0.0000016499,0.0000016514,0.0000016539,0.0000016571, -0.0000016601,0.0000016621,0.0000016632,0.0000016640,0.0000016647, -0.0000016654,0.0000016656,0.0000016649,0.0000016642,0.0000016624, -0.0000016564,0.0000016444,0.0000016247,0.0000015994,0.0000015725, -0.0000015477,0.0000015298,0.0000015213,0.0000015197,0.0000015282, -0.0000015456,0.0000015580,0.0000015578,0.0000015291,0.0000014773, -0.0000014394,0.0000014189,0.0000014103,0.0000014090,0.0000014142, -0.0000014223,0.0000014289,0.0000014341,0.0000014356,0.0000014332, -0.0000014285,0.0000014243,0.0000014215,0.0000014211,0.0000014242, -0.0000014331,0.0000014495,0.0000014724,0.0000014959,0.0000015109, -0.0000015213,0.0000015192,0.0000015174,0.0000015152,0.0000015158, -0.0000015272,0.0000015453,0.0000015635,0.0000015768,0.0000015838, -0.0000015858,0.0000015850,0.0000015835,0.0000015818,0.0000015796, -0.0000015765,0.0000015716,0.0000015688,0.0000015673,0.0000015641, -0.0000015613,0.0000015648,0.0000015721,0.0000015688,0.0000015553, -0.0000015486,0.0000015571,0.0000015734,0.0000015851,0.0000015919, -0.0000016007,0.0000016123,0.0000016213,0.0000016250,0.0000016252, -0.0000016245,0.0000016239,0.0000016217,0.0000016179,0.0000016133, -0.0000016064,0.0000015942,0.0000015788,0.0000015697,0.0000015719, -0.0000015874,0.0000016068,0.0000016213,0.0000016344,0.0000016650, -0.0000017051,0.0000017368,0.0000017408,0.0000017427,0.0000017563, -0.0000017765,0.0000017960,0.0000018136,0.0000018312,0.0000018498, -0.0000018683,0.0000018840,0.0000018955,0.0000019022,0.0000019035, -0.0000019004,0.0000018991,0.0000019045,0.0000019110,0.0000019153, -0.0000019191,0.0000019176,0.0000019152,0.0000019141,0.0000019132, -0.0000019136,0.0000019151,0.0000019137,0.0000018628,0.0000017433, -0.0000017239,0.0000017455,0.0000017467,0.0000017647,0.0000018594, -0.0000019552,0.0000019958,0.0000020053,0.0000019951,0.0000020028, -0.0000020141,0.0000019819,0.0000019361,0.0000019314,0.0000019332, -0.0000019301,0.0000019466,0.0000019805,0.0000019948,0.0000019916, -0.0000020141,0.0000020357,0.0000020309,0.0000019953,0.0000019268, -0.0000018285,0.0000017801,0.0000018306,0.0000019101,0.0000019161, -0.0000018996,0.0000018881,0.0000018772,0.0000018700,0.0000018730, -0.0000018838,0.0000018918,0.0000018822,0.0000018436,0.0000017998, -0.0000017737,0.0000017616,0.0000017550,0.0000017488,0.0000017365, -0.0000017155,0.0000016971,0.0000016903,0.0000016901,0.0000016926, -0.0000016993,0.0000017087,0.0000017178,0.0000017251,0.0000017302, -0.0000017338,0.0000017369,0.0000017420,0.0000017507,0.0000017639, -0.0000017830,0.0000018038,0.0000018164,0.0000018186,0.0000018162, -0.0000018143,0.0000018105,0.0000018016,0.0000017965,0.0000018066, -0.0000018342,0.0000018623,0.0000018766,0.0000018817,0.0000018883, -0.0000018913,0.0000018804,0.0000018544,0.0000018433,0.0000018579, -0.0000018775,0.0000018717,0.0000018492,0.0000018289,0.0000018004, -0.0000017628,0.0000017352,0.0000017164,0.0000017013,0.0000016881, -0.0000016689,0.0000016432,0.0000016197,0.0000016064,0.0000016038, -0.0000016069,0.0000016150,0.0000016272,0.0000016419,0.0000016569, -0.0000016696,0.0000016756,0.0000016754,0.0000016709,0.0000016664, -0.0000016655,0.0000016667,0.0000016670,0.0000016644,0.0000016589, -0.0000016546,0.0000016544,0.0000016535,0.0000016521,0.0000016394, -0.0000016115,0.0000015911,0.0000015901,0.0000015870,0.0000015734, -0.0000015719,0.0000015704,0.0000015663,0.0000015674,0.0000015730, -0.0000015756,0.0000015842,0.0000015981,0.0000016085,0.0000016212, -0.0000016388,0.0000016606,0.0000016709,0.0000016777,0.0000016974, -0.0000017110,0.0000017169,0.0000017223,0.0000017250,0.0000017211, -0.0000017121,0.0000017044,0.0000016956,0.0000016771,0.0000016584, -0.0000016469,0.0000016301,0.0000016026,0.0000015805,0.0000015761, -0.0000015851,0.0000016015,0.0000016112,0.0000016111,0.0000015986, -0.0000015858,0.0000015965,0.0000016208,0.0000016305,0.0000016365, -0.0000016466,0.0000016282,0.0000015903,0.0000015698,0.0000015602, -0.0000015591,0.0000015810,0.0000016060,0.0000016159,0.0000016244, -0.0000016272,0.0000016167,0.0000016029,0.0000015988,0.0000016004, -0.0000016069,0.0000016138,0.0000016183,0.0000016209,0.0000016229, -0.0000016240,0.0000016241,0.0000016239,0.0000016332,0.0000016542, -0.0000016719,0.0000016641,0.0000016454,0.0000016325,0.0000015883, -0.0000015922,0.0000016400,0.0000016533,0.0000016532,0.0000016377, -0.0000015987,0.0000015708,0.0000015586,0.0000015574,0.0000015596, -0.0000015776,0.0000015987,0.0000016092,0.0000016236,0.0000016299, -0.0000016234,0.0000016173,0.0000016208,0.0000016252,0.0000016214, -0.0000016222,0.0000016390,0.0000016307,0.0000016126,0.0000016580, -0.0000017023,0.0000017273,0.0000017466,0.0000017470,0.0000017438, -0.0000017304,0.0000017098,0.0000016929,0.0000016949,0.0000017192, -0.0000017147,0.0000016791,0.0000016521,0.0000016489,0.0000016723, -0.0000016907,0.0000016692,0.0000016592,0.0000016684,0.0000016712, -0.0000016494,0.0000016273,0.0000016220,0.0000016167,0.0000016098, -0.0000016138,0.0000016368,0.0000016430,0.0000016327,0.0000016321, -0.0000016577,0.0000017058,0.0000017427,0.0000017609,0.0000017674, -0.0000017558,0.0000017247,0.0000016972,0.0000016797,0.0000016603, -0.0000016563,0.0000016752,0.0000016866,0.0000016808,0.0000016772, -0.0000016857,0.0000017005,0.0000017151,0.0000017266,0.0000017300, -0.0000017210,0.0000017013,0.0000016875,0.0000016804,0.0000016799, -0.0000016993,0.0000017293,0.0000017510,0.0000017696,0.0000017887, -0.0000018007,0.0000018054,0.0000018080,0.0000018155,0.0000018194, -0.0000018085,0.0000017942,0.0000017864,0.0000017833,0.0000017930, -0.0000018094,0.0000018182,0.0000018205,0.0000018181,0.0000018099, -0.0000018048,0.0000018055,0.0000018065,0.0000018041,0.0000017973, -0.0000017871,0.0000017832,0.0000017840,0.0000017859,0.0000017846, -0.0000017858,0.0000017989,0.0000018249,0.0000018428,0.0000018480, -0.0000018418,0.0000018318,0.0000018686,0.0000019548,0.0000019661, -0.0000018716,0.0000018168,0.0000017813,0.0000017421,0.0000017528, -0.0000017854,0.0000018024,0.0000017965,0.0000017820,0.0000017820, -0.0000017804,0.0000017774,0.0000017743,0.0000017769,0.0000017810, -0.0000017812,0.0000017875,0.0000018158,0.0000018563,0.0000018862, -0.0000018806,0.0000018422,0.0000018020,0.0000017853,0.0000017860, -0.0000017931,0.0000017942,0.0000018064,0.0000018432,0.0000018617, -0.0000018582,0.0000018543,0.0000018397,0.0000018672,0.0000019046, -0.0000018624,0.0000018473,0.0000018365,0.0000017213,0.0000016712, -0.0000016774,0.0000016847,0.0000016275,0.0000016099,0.0000016316, -0.0000016422,0.0000016753,0.0000016764,0.0000016725,0.0000016931, -0.0000017199,0.0000017402,0.0000017196,0.0000016673,0.0000016617, -0.0000016520,0.0000016192,0.0000015978,0.0000015814,0.0000015496, -0.0000015420,0.0000015353,0.0000015184,0.0000015153,0.0000015135, -0.0000014924,0.0000014550,0.0000014482,0.0000014420,0.0000014321, -0.0000014361,0.0000014482,0.0000014649,0.0000014796,0.0000014918, -0.0000015044,0.0000015128,0.0000015151,0.0000015133,0.0000015082, -0.0000015014,0.0000014959,0.0000014938,0.0000014978,0.0000015097, -0.0000015267,0.0000015399,0.0000015468,0.0000015527,0.0000015608, -0.0000015734,0.0000015853,0.0000015904,0.0000015914,0.0000015899, -0.0000015868,0.0000015833,0.0000015778,0.0000015741,0.0000015737, -0.0000015755,0.0000015792,0.0000015838,0.0000015878,0.0000015936, -0.0000016024,0.0000016119,0.0000016187,0.0000016224,0.0000016236, -0.0000016236,0.0000016234,0.0000016236,0.0000016241,0.0000016250, -0.0000016276,0.0000016344,0.0000016462,0.0000016579,0.0000016640, -0.0000016656,0.0000016654,0.0000016651,0.0000016652,0.0000016658, -0.0000016670,0.0000016689,0.0000016716,0.0000016745,0.0000016766, -0.0000016782,0.0000016796,0.0000016811,0.0000016824,0.0000016831, -0.0000016834,0.0000016846,0.0000016857,0.0000016858,0.0000016846, -0.0000016807,0.0000016753,0.0000016691,0.0000016610,0.0000016478, -0.0000016250,0.0000015917,0.0000015570,0.0000015364,0.0000015330, -0.0000015511,0.0000015558,0.0000015229,0.0000014692,0.0000014344, -0.0000014173,0.0000014086,0.0000014025,0.0000013969,0.0000013920, -0.0000013910,0.0000013914,0.0000013933,0.0000013959,0.0000013977, -0.0000013987,0.0000013990,0.0000014001,0.0000014071,0.0000014210, -0.0000014419,0.0000014672,0.0000014942,0.0000015110,0.0000015188, -0.0000015186,0.0000015135,0.0000015146,0.0000015243,0.0000015408, -0.0000015588,0.0000015727,0.0000015805,0.0000015832,0.0000015827, -0.0000015810,0.0000015786,0.0000015752,0.0000015714,0.0000015677, -0.0000015641,0.0000015627,0.0000015663,0.0000015733,0.0000015710, -0.0000015565,0.0000015488,0.0000015591,0.0000015803,0.0000015932, -0.0000015983,0.0000016077,0.0000016217,0.0000016306,0.0000016312, -0.0000016278,0.0000016239,0.0000016200,0.0000016158,0.0000016126, -0.0000016115,0.0000016109,0.0000016099,0.0000016015,0.0000015853, -0.0000015699,0.0000015663,0.0000015782,0.0000015980,0.0000016166, -0.0000016255,0.0000016437,0.0000016776,0.0000017131,0.0000017350, -0.0000017370,0.0000017372,0.0000017418,0.0000017512,0.0000017648, -0.0000017839,0.0000018074,0.0000018324,0.0000018546,0.0000018697, -0.0000018770,0.0000018762,0.0000018722,0.0000018670,0.0000018661, -0.0000018769,0.0000018979,0.0000019149,0.0000019187,0.0000019198, -0.0000019207,0.0000019211,0.0000019194,0.0000019027,0.0000018150, -0.0000017295,0.0000017341,0.0000017542,0.0000017521,0.0000017566, -0.0000018310,0.0000019463,0.0000019897,0.0000020014,0.0000019875, -0.0000019883,0.0000020137,0.0000020067,0.0000019526,0.0000019288, -0.0000019329,0.0000019345,0.0000019419,0.0000019716,0.0000019966, -0.0000019971,0.0000020103,0.0000020350,0.0000020363,0.0000020066, -0.0000019428,0.0000018433,0.0000017784,0.0000018166,0.0000019007, -0.0000019145,0.0000019030,0.0000018890,0.0000018778,0.0000018642, -0.0000018632,0.0000018763,0.0000018912,0.0000018945,0.0000018720, -0.0000018281,0.0000017906,0.0000017703,0.0000017603,0.0000017548, -0.0000017459,0.0000017291,0.0000017078,0.0000016934,0.0000016850, -0.0000016795,0.0000016835,0.0000016956,0.0000017076,0.0000017156, -0.0000017203,0.0000017236,0.0000017264,0.0000017280,0.0000017299, -0.0000017355,0.0000017509,0.0000017756,0.0000017999,0.0000018125, -0.0000018141,0.0000018120,0.0000018086,0.0000018018,0.0000017979, -0.0000018061,0.0000018325,0.0000018610,0.0000018764,0.0000018814, -0.0000018873,0.0000018914,0.0000018839,0.0000018647,0.0000018602, -0.0000018750,0.0000018824,0.0000018661,0.0000018433,0.0000018240, -0.0000017928,0.0000017568,0.0000017325,0.0000017148,0.0000016999, -0.0000016840,0.0000016601,0.0000016317,0.0000016110,0.0000016018, -0.0000015988,0.0000015994,0.0000016054,0.0000016166,0.0000016307, -0.0000016468,0.0000016626,0.0000016733,0.0000016768,0.0000016745, -0.0000016693,0.0000016661,0.0000016654,0.0000016645,0.0000016609, -0.0000016568,0.0000016561,0.0000016559,0.0000016537,0.0000016455, -0.0000016219,0.0000015960,0.0000015898,0.0000015895,0.0000015766, -0.0000015694,0.0000015649,0.0000015615,0.0000015635,0.0000015695, -0.0000015736,0.0000015787,0.0000015901,0.0000016028,0.0000016164, -0.0000016334,0.0000016559,0.0000016683,0.0000016772,0.0000017032, -0.0000017132,0.0000017181,0.0000017222,0.0000017215,0.0000017138, -0.0000017037,0.0000016980,0.0000016908,0.0000016712,0.0000016547, -0.0000016377,0.0000016134,0.0000015892,0.0000015794,0.0000015830, -0.0000015904,0.0000015986,0.0000016023,0.0000016038,0.0000015996, -0.0000015894,0.0000015813,0.0000015981,0.0000016236,0.0000016361, -0.0000016475,0.0000016371,0.0000016003,0.0000015741,0.0000015635, -0.0000015582,0.0000015702,0.0000015981,0.0000016108,0.0000016168, -0.0000016217,0.0000016164,0.0000016045,0.0000015986,0.0000015984, -0.0000016010,0.0000016050,0.0000016093,0.0000016140,0.0000016201, -0.0000016249,0.0000016272,0.0000016296,0.0000016426,0.0000016638, -0.0000016686,0.0000016501,0.0000016408,0.0000016108,0.0000015787, -0.0000016159,0.0000016481,0.0000016496,0.0000016468,0.0000016179, -0.0000015826,0.0000015635,0.0000015569,0.0000015563,0.0000015604, -0.0000015849,0.0000016044,0.0000016150,0.0000016278,0.0000016284, -0.0000016207,0.0000016209,0.0000016331,0.0000016404,0.0000016332, -0.0000016242,0.0000016334,0.0000016314,0.0000016091,0.0000016542, -0.0000016985,0.0000017217,0.0000017419,0.0000017420,0.0000017368, -0.0000017216,0.0000017040,0.0000016916,0.0000016979,0.0000017174, -0.0000017027,0.0000016627,0.0000016454,0.0000016521,0.0000016839, -0.0000016836,0.0000016622,0.0000016624,0.0000016717,0.0000016645, -0.0000016366,0.0000016232,0.0000016202,0.0000016132,0.0000016071, -0.0000016192,0.0000016390,0.0000016372,0.0000016298,0.0000016409, -0.0000016850,0.0000017327,0.0000017581,0.0000017674,0.0000017586, -0.0000017298,0.0000017011,0.0000016813,0.0000016612,0.0000016583, -0.0000016766,0.0000016830,0.0000016758,0.0000016741,0.0000016839, -0.0000017004,0.0000017170,0.0000017290,0.0000017320,0.0000017239, -0.0000017049,0.0000016910,0.0000016843,0.0000016798,0.0000016864, -0.0000017107,0.0000017372,0.0000017544,0.0000017668,0.0000017778, -0.0000017839,0.0000017866,0.0000018000,0.0000018167,0.0000018128, -0.0000017970,0.0000017879,0.0000017810,0.0000017830,0.0000017936, -0.0000018031,0.0000018043,0.0000017996,0.0000017995,0.0000018045, -0.0000018040,0.0000017944,0.0000017825,0.0000017811,0.0000017821, -0.0000017831,0.0000017838,0.0000017886,0.0000018046,0.0000018290, -0.0000018470,0.0000018578,0.0000018639,0.0000018530,0.0000018413, -0.0000018874,0.0000019657,0.0000019731,0.0000018752,0.0000018157, -0.0000017829,0.0000017422,0.0000017514,0.0000017829,0.0000017912, -0.0000017773,0.0000017631,0.0000017632,0.0000017651,0.0000017614, -0.0000017645,0.0000017721,0.0000017854,0.0000017966,0.0000018061, -0.0000018322,0.0000018718,0.0000018877,0.0000018679,0.0000018193, -0.0000017933,0.0000017849,0.0000017821,0.0000017862,0.0000017940, -0.0000017960,0.0000018144,0.0000018553,0.0000018561,0.0000018339, -0.0000018293,0.0000018501,0.0000019033,0.0000018830,0.0000018409, -0.0000018556,0.0000017743,0.0000016782,0.0000016707,0.0000016858, -0.0000016588,0.0000016141,0.0000016283,0.0000016360,0.0000016665, -0.0000016789,0.0000016723,0.0000016876,0.0000017158,0.0000017394, -0.0000017328,0.0000016758,0.0000016625,0.0000016559,0.0000016252, -0.0000016021,0.0000015849,0.0000015521,0.0000015429,0.0000015366, -0.0000015197,0.0000015166,0.0000015147,0.0000014924,0.0000014578, -0.0000014518,0.0000014424,0.0000014338,0.0000014387,0.0000014508, -0.0000014668,0.0000014806,0.0000014899,0.0000014977,0.0000015021, -0.0000015022,0.0000014986,0.0000014916,0.0000014833,0.0000014773, -0.0000014747,0.0000014748,0.0000014798,0.0000014913,0.0000015096, -0.0000015309,0.0000015488,0.0000015594,0.0000015644,0.0000015693, -0.0000015759,0.0000015814,0.0000015852,0.0000015865,0.0000015860, -0.0000015843,0.0000015829,0.0000015823,0.0000015828,0.0000015844, -0.0000015867,0.0000015878,0.0000015871,0.0000015856,0.0000015848, -0.0000015856,0.0000015876,0.0000015895,0.0000015908,0.0000015915, -0.0000015927,0.0000015959,0.0000016024,0.0000016112,0.0000016197, -0.0000016260,0.0000016320,0.0000016409,0.0000016525,0.0000016623, -0.0000016680,0.0000016718,0.0000016749,0.0000016777,0.0000016804, -0.0000016828,0.0000016848,0.0000016864,0.0000016876,0.0000016886, -0.0000016898,0.0000016911,0.0000016917,0.0000016920,0.0000016929, -0.0000016954,0.0000016974,0.0000016986,0.0000016990,0.0000016983, -0.0000016973,0.0000016966,0.0000016966,0.0000016979,0.0000016974, -0.0000016841,0.0000016494,0.0000015925,0.0000015397,0.0000015298, -0.0000015500,0.0000015500,0.0000015088,0.0000014585,0.0000014294, -0.0000014157,0.0000014031,0.0000013904,0.0000013863,0.0000013865, -0.0000013894,0.0000013921,0.0000013954,0.0000013973,0.0000013971, -0.0000013970,0.0000013971,0.0000013956,0.0000013999,0.0000014154, -0.0000014405,0.0000014707,0.0000015010,0.0000015168,0.0000015157, -0.0000015139,0.0000015133,0.0000015214,0.0000015365,0.0000015535, -0.0000015677,0.0000015762,0.0000015799,0.0000015801,0.0000015780, -0.0000015743,0.0000015700,0.0000015661,0.0000015654,0.0000015688, -0.0000015733,0.0000015713,0.0000015586,0.0000015490,0.0000015547, -0.0000015780,0.0000015959,0.0000016021,0.0000016108,0.0000016244, -0.0000016323,0.0000016322,0.0000016284,0.0000016220,0.0000016151, -0.0000016096,0.0000016057,0.0000016022,0.0000015998,0.0000016010, -0.0000016059,0.0000016054,0.0000015919,0.0000015731,0.0000015648, -0.0000015709,0.0000015898,0.0000016092,0.0000016200,0.0000016280, -0.0000016503,0.0000016816,0.0000017087,0.0000017255,0.0000017323, -0.0000017310,0.0000017325,0.0000017393,0.0000017498,0.0000017647, -0.0000017825,0.0000017984,0.0000018085,0.0000018098,0.0000018035, -0.0000017934,0.0000017873,0.0000017929,0.0000018148,0.0000018481, -0.0000018817,0.0000019015,0.0000019098,0.0000019092,0.0000018947, -0.0000018452,0.0000017613,0.0000017279,0.0000017477,0.0000017592, -0.0000017557,0.0000017559,0.0000018147,0.0000019335,0.0000019864, -0.0000019975,0.0000019795,0.0000019671,0.0000019978,0.0000020189, -0.0000019791,0.0000019303,0.0000019280,0.0000019356,0.0000019420, -0.0000019656,0.0000019966,0.0000020043,0.0000020092,0.0000020316, -0.0000020384,0.0000020172,0.0000019599,0.0000018610,0.0000017832, -0.0000018035,0.0000018849,0.0000019117,0.0000019074,0.0000018920, -0.0000018834,0.0000018654,0.0000018557,0.0000018645,0.0000018848, -0.0000018963,0.0000018916,0.0000018590,0.0000018157,0.0000017861, -0.0000017704,0.0000017609,0.0000017543,0.0000017435,0.0000017262, -0.0000017041,0.0000016815,0.0000016635,0.0000016623,0.0000016750, -0.0000016894,0.0000017005,0.0000017084,0.0000017135,0.0000017169, -0.0000017192,0.0000017196,0.0000017206,0.0000017282,0.0000017485, -0.0000017769,0.0000018005,0.0000018099,0.0000018098,0.0000018074, -0.0000018021,0.0000017987,0.0000018057,0.0000018308,0.0000018594, -0.0000018757,0.0000018812,0.0000018864,0.0000018911,0.0000018857, -0.0000018749,0.0000018758,0.0000018844,0.0000018802,0.0000018584, -0.0000018381,0.0000018184,0.0000017846,0.0000017517,0.0000017309, -0.0000017140,0.0000016979,0.0000016782,0.0000016505,0.0000016223, -0.0000016046,0.0000015975,0.0000015949,0.0000015945,0.0000015977, -0.0000016064,0.0000016202,0.0000016371,0.0000016539,0.0000016681, -0.0000016760,0.0000016755,0.0000016712,0.0000016665,0.0000016640, -0.0000016616,0.0000016586,0.0000016575,0.0000016577,0.0000016551, -0.0000016493,0.0000016302,0.0000016020,0.0000015893,0.0000015897, -0.0000015804,0.0000015691,0.0000015602,0.0000015561,0.0000015597, -0.0000015654,0.0000015703,0.0000015759,0.0000015839,0.0000015976, -0.0000016118,0.0000016297,0.0000016528,0.0000016677,0.0000016817, -0.0000017112,0.0000017150,0.0000017190,0.0000017188,0.0000017122, -0.0000017027,0.0000016959,0.0000016919,0.0000016796,0.0000016604, -0.0000016497,0.0000016139,0.0000015960,0.0000015851,0.0000015811, -0.0000015784,0.0000015717,0.0000015671,0.0000015668,0.0000015716, -0.0000015815,0.0000015887,0.0000015818,0.0000015823,0.0000016059, -0.0000016316,0.0000016466,0.0000016446,0.0000016123,0.0000015794, -0.0000015661,0.0000015590,0.0000015630,0.0000015898,0.0000016061, -0.0000016103,0.0000016143,0.0000016137,0.0000016073,0.0000016011, -0.0000015989,0.0000015994,0.0000016025,0.0000016085,0.0000016171, -0.0000016264,0.0000016316,0.0000016317,0.0000016355,0.0000016523, -0.0000016665,0.0000016559,0.0000016417,0.0000016305,0.0000015859, -0.0000015890,0.0000016357,0.0000016458,0.0000016452,0.0000016336, -0.0000015966,0.0000015701,0.0000015593,0.0000015569,0.0000015563, -0.0000015640,0.0000015913,0.0000016088,0.0000016202,0.0000016291, -0.0000016245,0.0000016196,0.0000016298,0.0000016473,0.0000016525, -0.0000016429,0.0000016261,0.0000016312,0.0000016308,0.0000016061, -0.0000016502,0.0000016937,0.0000017161,0.0000017365,0.0000017369, -0.0000017291,0.0000017144,0.0000017000,0.0000016885,0.0000017010, -0.0000017150,0.0000016875,0.0000016501,0.0000016416,0.0000016638, -0.0000016896,0.0000016732,0.0000016607,0.0000016672,0.0000016723, -0.0000016515,0.0000016273,0.0000016211,0.0000016163,0.0000016081, -0.0000016082,0.0000016264,0.0000016388,0.0000016321,0.0000016323, -0.0000016643,0.0000017175,0.0000017532,0.0000017660,0.0000017603, -0.0000017344,0.0000017050,0.0000016831,0.0000016621,0.0000016601, -0.0000016768,0.0000016807,0.0000016743,0.0000016742,0.0000016844, -0.0000017018,0.0000017206,0.0000017329,0.0000017347,0.0000017257, -0.0000017069,0.0000016933,0.0000016884,0.0000016836,0.0000016825, -0.0000016954,0.0000017196,0.0000017424,0.0000017575,0.0000017651, -0.0000017688,0.0000017702,0.0000017823,0.0000018089,0.0000018141, -0.0000018002,0.0000017889,0.0000017794,0.0000017775,0.0000017817, -0.0000017890,0.0000017924,0.0000017953,0.0000018039,0.0000018002, -0.0000017839,0.0000017791,0.0000017812,0.0000017836,0.0000017881, -0.0000017948,0.0000018098,0.0000018311,0.0000018454,0.0000018519, -0.0000018617,0.0000018671,0.0000018574,0.0000018557,0.0000019170, -0.0000019745,0.0000019710,0.0000018695,0.0000018143,0.0000017858, -0.0000017440,0.0000017499,0.0000017786,0.0000017779,0.0000017581, -0.0000017528,0.0000017512,0.0000017499,0.0000017423,0.0000017420, -0.0000017540,0.0000017767,0.0000018016,0.0000018218,0.0000018498, -0.0000018819,0.0000018889,0.0000018470,0.0000018097,0.0000018067, -0.0000018255,0.0000018271,0.0000018056,0.0000017900,0.0000017946, -0.0000018004,0.0000018282,0.0000018648,0.0000018490,0.0000018243, -0.0000018422,0.0000018960,0.0000018956,0.0000018395,0.0000018544, -0.0000018208,0.0000017056,0.0000016699,0.0000016784,0.0000016768, -0.0000016282,0.0000016248,0.0000016342,0.0000016518,0.0000016773, -0.0000016756,0.0000016815,0.0000017089,0.0000017351,0.0000017389, -0.0000016913,0.0000016653,0.0000016599,0.0000016324,0.0000016073, -0.0000015898,0.0000015562,0.0000015440,0.0000015385,0.0000015216, -0.0000015182,0.0000015164,0.0000014928,0.0000014604,0.0000014550, -0.0000014431,0.0000014354,0.0000014422,0.0000014529,0.0000014667, -0.0000014796,0.0000014872,0.0000014910,0.0000014925,0.0000014906, -0.0000014860,0.0000014787,0.0000014713,0.0000014683,0.0000014682, -0.0000014688,0.0000014718,0.0000014751,0.0000014812,0.0000014936, -0.0000015148,0.0000015383,0.0000015561,0.0000015644,0.0000015667, -0.0000015656,0.0000015658,0.0000015685,0.0000015720,0.0000015750, -0.0000015771,0.0000015781,0.0000015781,0.0000015783,0.0000015796, -0.0000015815,0.0000015820,0.0000015806,0.0000015778,0.0000015744, -0.0000015705,0.0000015668,0.0000015636,0.0000015612,0.0000015588, -0.0000015578,0.0000015591,0.0000015652,0.0000015773,0.0000015943, -0.0000016113,0.0000016233,0.0000016300,0.0000016350,0.0000016416, -0.0000016491,0.0000016552,0.0000016587,0.0000016603,0.0000016612, -0.0000016623,0.0000016641,0.0000016667,0.0000016703,0.0000016750, -0.0000016804,0.0000016849,0.0000016879,0.0000016901,0.0000016923, -0.0000016951,0.0000016968,0.0000016976,0.0000016973,0.0000016962, -0.0000016956,0.0000016961,0.0000016982,0.0000017008,0.0000017018, -0.0000017005,0.0000016986,0.0000016624,0.0000015869,0.0000015271, -0.0000015333,0.0000015548,0.0000015387,0.0000014947,0.0000014536, -0.0000014278,0.0000014123,0.0000014039,0.0000014009,0.0000014008, -0.0000014009,0.0000014017,0.0000014018,0.0000014010,0.0000013999, -0.0000013985,0.0000013950,0.0000013927,0.0000013928,0.0000013990, -0.0000014191,0.0000014526,0.0000014871,0.0000015089,0.0000015149, -0.0000015142,0.0000015122,0.0000015186,0.0000015320,0.0000015475, -0.0000015611,0.0000015708,0.0000015750,0.0000015753,0.0000015740, -0.0000015722,0.0000015715,0.0000015727,0.0000015733,0.0000015704, -0.0000015602,0.0000015485,0.0000015484,0.0000015670,0.0000015924, -0.0000016049,0.0000016116,0.0000016228,0.0000016310,0.0000016311, -0.0000016260,0.0000016182,0.0000016102,0.0000016026,0.0000015939, -0.0000015840,0.0000015753,0.0000015718,0.0000015758,0.0000015901, -0.0000016009,0.0000015964,0.0000015768,0.0000015636,0.0000015658, -0.0000015823,0.0000016002,0.0000016150,0.0000016201,0.0000016288, -0.0000016467,0.0000016693,0.0000016906,0.0000017029,0.0000017095, -0.0000017154,0.0000017199,0.0000017245,0.0000017303,0.0000017376, -0.0000017443,0.0000017460,0.0000017432,0.0000017388,0.0000017367, -0.0000017407,0.0000017514,0.0000017709,0.0000017972,0.0000018236, -0.0000018392,0.0000018390,0.0000018181,0.0000017738,0.0000017395, -0.0000017413,0.0000017584,0.0000017610,0.0000017582,0.0000017567, -0.0000018050,0.0000019205,0.0000019857,0.0000019945,0.0000019718, -0.0000019332,0.0000019537,0.0000020163,0.0000020101,0.0000019465, -0.0000019255,0.0000019345,0.0000019431,0.0000019619,0.0000019935, -0.0000020091,0.0000020116,0.0000020287,0.0000020389,0.0000020269, -0.0000019773,0.0000018791,0.0000017847,0.0000017896,0.0000018646, -0.0000019032,0.0000019078,0.0000018949,0.0000018888,0.0000018730, -0.0000018527,0.0000018528,0.0000018740,0.0000018929,0.0000018974, -0.0000018836,0.0000018468,0.0000018093,0.0000017879,0.0000017729, -0.0000017615,0.0000017531,0.0000017435,0.0000017249,0.0000016936, -0.0000016623,0.0000016522,0.0000016585,0.0000016706,0.0000016805, -0.0000016902,0.0000017000,0.0000017072,0.0000017117,0.0000017141, -0.0000017136,0.0000017153,0.0000017275,0.0000017537,0.0000017841, -0.0000018034,0.0000018081,0.0000018068,0.0000018021,0.0000017982, -0.0000018047,0.0000018291,0.0000018576,0.0000018747,0.0000018805, -0.0000018850,0.0000018889,0.0000018864,0.0000018824,0.0000018843, -0.0000018856,0.0000018736,0.0000018508,0.0000018337,0.0000018118, -0.0000017765,0.0000017480,0.0000017303,0.0000017132,0.0000016949, -0.0000016713,0.0000016415,0.0000016149,0.0000016002,0.0000015952, -0.0000015936,0.0000015924,0.0000015926,0.0000015984,0.0000016118, -0.0000016290,0.0000016462,0.0000016616,0.0000016723,0.0000016756, -0.0000016721,0.0000016671,0.0000016628,0.0000016596,0.0000016582, -0.0000016588,0.0000016562,0.0000016516,0.0000016360,0.0000016080, -0.0000015896,0.0000015894,0.0000015832,0.0000015702,0.0000015573, -0.0000015513,0.0000015560,0.0000015613,0.0000015659,0.0000015736, -0.0000015809,0.0000015931,0.0000016081,0.0000016261,0.0000016505, -0.0000016683,0.0000016883,0.0000017138,0.0000017148,0.0000017158, -0.0000017095,0.0000016997,0.0000016942,0.0000016884,0.0000016775, -0.0000016625,0.0000016495,0.0000016349,0.0000015960,0.0000015845, -0.0000015684,0.0000015482,0.0000015277,0.0000015138,0.0000015093, -0.0000015109,0.0000015197,0.0000015382,0.0000015647,0.0000015804, -0.0000015786,0.0000015873,0.0000016172,0.0000016418,0.0000016457, -0.0000016226,0.0000015858,0.0000015681,0.0000015609,0.0000015608, -0.0000015810,0.0000016012,0.0000016060,0.0000016081,0.0000016104, -0.0000016093,0.0000016058,0.0000016039,0.0000016046,0.0000016092, -0.0000016176,0.0000016279,0.0000016344,0.0000016341,0.0000016331, -0.0000016424,0.0000016596,0.0000016590,0.0000016413,0.0000016378, -0.0000016068,0.0000015762,0.0000016135,0.0000016425,0.0000016414, -0.0000016392,0.0000016133,0.0000015784,0.0000015617,0.0000015575, -0.0000015574,0.0000015572,0.0000015696,0.0000015959,0.0000016117, -0.0000016239,0.0000016265,0.0000016193,0.0000016218,0.0000016420, -0.0000016564,0.0000016567,0.0000016485,0.0000016313,0.0000016286, -0.0000016287,0.0000016032,0.0000016465,0.0000016890,0.0000017114, -0.0000017316,0.0000017306,0.0000017213,0.0000017096,0.0000016951, -0.0000016865,0.0000017053,0.0000017075,0.0000016725,0.0000016425, -0.0000016460,0.0000016779,0.0000016852,0.0000016642,0.0000016620, -0.0000016718,0.0000016658,0.0000016376,0.0000016221,0.0000016167, -0.0000016096,0.0000016060,0.0000016136,0.0000016329,0.0000016361, -0.0000016312,0.0000016472,0.0000016986,0.0000017450,0.0000017635, -0.0000017610,0.0000017385,0.0000017089,0.0000016850,0.0000016629, -0.0000016608,0.0000016761,0.0000016794,0.0000016750,0.0000016767, -0.0000016869,0.0000017047,0.0000017252,0.0000017378,0.0000017385, -0.0000017269,0.0000017078,0.0000016949,0.0000016917,0.0000016879, -0.0000016828,0.0000016873,0.0000017038,0.0000017258,0.0000017463, -0.0000017593,0.0000017647,0.0000017651,0.0000017697,0.0000017996, -0.0000018142,0.0000018032,0.0000017892,0.0000017779,0.0000017740, -0.0000017771,0.0000017840,0.0000017920,0.0000018029,0.0000017992, -0.0000017792,0.0000017771,0.0000017803,0.0000017900,0.0000018041, -0.0000018183,0.0000018307,0.0000018322,0.0000018281,0.0000018317, -0.0000018500,0.0000018625,0.0000018535,0.0000018717,0.0000019476, -0.0000019819,0.0000019537,0.0000018531,0.0000018085,0.0000017918, -0.0000017497,0.0000017473,0.0000017649,0.0000017623,0.0000017483, -0.0000017510,0.0000017536,0.0000017542,0.0000017495,0.0000017406, -0.0000017416,0.0000017580,0.0000017917,0.0000018270,0.0000018581, -0.0000018791,0.0000018735,0.0000018304,0.0000018143,0.0000018320, -0.0000018629,0.0000018821,0.0000018736,0.0000018319,0.0000017971, -0.0000017959,0.0000018080,0.0000018447,0.0000018814,0.0000018638, -0.0000018560,0.0000018990,0.0000019037,0.0000018420,0.0000018460, -0.0000018501,0.0000017421,0.0000016723,0.0000016713,0.0000016790, -0.0000016473,0.0000016219,0.0000016341,0.0000016384,0.0000016692, -0.0000016782,0.0000016793,0.0000017028,0.0000017254,0.0000017454, -0.0000017110,0.0000016712,0.0000016635,0.0000016406,0.0000016134, -0.0000015956,0.0000015626,0.0000015458,0.0000015408,0.0000015241, -0.0000015202,0.0000015183,0.0000014937,0.0000014629,0.0000014573, -0.0000014448,0.0000014379,0.0000014449,0.0000014530,0.0000014643, -0.0000014757,0.0000014812,0.0000014822,0.0000014820,0.0000014799, -0.0000014768,0.0000014728,0.0000014691,0.0000014688,0.0000014701, -0.0000014719,0.0000014741,0.0000014748,0.0000014752,0.0000014768, -0.0000014835,0.0000014964,0.0000015144,0.0000015341,0.0000015504, -0.0000015596,0.0000015617,0.0000015601,0.0000015580,0.0000015576, -0.0000015582,0.0000015586,0.0000015581,0.0000015573,0.0000015567, -0.0000015566,0.0000015566,0.0000015557,0.0000015533,0.0000015496, -0.0000015452,0.0000015405,0.0000015361,0.0000015327,0.0000015290, -0.0000015255,0.0000015238,0.0000015253,0.0000015319,0.0000015435, -0.0000015598,0.0000015794,0.0000015992,0.0000016155,0.0000016263, -0.0000016329,0.0000016369,0.0000016397,0.0000016419,0.0000016439, -0.0000016456,0.0000016469,0.0000016478,0.0000016485,0.0000016500, -0.0000016528,0.0000016561,0.0000016585,0.0000016603,0.0000016628, -0.0000016661,0.0000016698,0.0000016722,0.0000016742,0.0000016759, -0.0000016779,0.0000016807,0.0000016843,0.0000016885,0.0000016927, -0.0000016971,0.0000017017,0.0000017012,0.0000016934,0.0000016370, -0.0000015527,0.0000015265,0.0000015464,0.0000015503,0.0000015277, -0.0000014962,0.0000014693,0.0000014514,0.0000014429,0.0000014411, -0.0000014415,0.0000014417,0.0000014396,0.0000014349,0.0000014282, -0.0000014193,0.0000014086,0.0000013987,0.0000013923,0.0000013909, -0.0000013930,0.0000014075,0.0000014385,0.0000014779,0.0000015071, -0.0000015142,0.0000015128,0.0000015124,0.0000015167,0.0000015270, -0.0000015402,0.0000015529,0.0000015632,0.0000015704,0.0000015745, -0.0000015760,0.0000015760,0.0000015751,0.0000015711,0.0000015636, -0.0000015532,0.0000015478,0.0000015572,0.0000015830,0.0000016057, -0.0000016149,0.0000016219,0.0000016288,0.0000016289,0.0000016231, -0.0000016148,0.0000016042,0.0000015893,0.0000015717,0.0000015581, -0.0000015506,0.0000015469,0.0000015457,0.0000015504,0.0000015679, -0.0000015920,0.0000015981,0.0000015794,0.0000015628,0.0000015617, -0.0000015756,0.0000015915,0.0000016069,0.0000016153,0.0000016175, -0.0000016222,0.0000016325,0.0000016448,0.0000016550,0.0000016630, -0.0000016698,0.0000016758,0.0000016808,0.0000016851,0.0000016887, -0.0000016894,0.0000016876,0.0000016853,0.0000016854,0.0000016920, -0.0000017061,0.0000017247,0.0000017426,0.0000017585,0.0000017686, -0.0000017689,0.0000017608,0.0000017482,0.0000017471,0.0000017565, -0.0000017602,0.0000017569,0.0000017537,0.0000017560,0.0000017981, -0.0000019103,0.0000019864,0.0000019933,0.0000019644,0.0000018892, -0.0000018845,0.0000019935,0.0000020375,0.0000019726,0.0000019327, -0.0000019329,0.0000019425,0.0000019597,0.0000019924,0.0000020140, -0.0000020154,0.0000020261,0.0000020388,0.0000020344,0.0000019922, -0.0000018973,0.0000017986,0.0000017876,0.0000018429,0.0000018918, -0.0000019064,0.0000018987,0.0000018915,0.0000018811,0.0000018585, -0.0000018498,0.0000018655,0.0000018850,0.0000018952,0.0000018953, -0.0000018756,0.0000018378,0.0000018089,0.0000017927,0.0000017748, -0.0000017605,0.0000017534,0.0000017453,0.0000017205,0.0000016805, -0.0000016526,0.0000016513,0.0000016591,0.0000016659,0.0000016732, -0.0000016823,0.0000016931,0.0000017034,0.0000017084,0.0000017094, -0.0000017094,0.0000017143,0.0000017344,0.0000017669,0.0000017947, -0.0000018061,0.0000018064,0.0000018015,0.0000017967,0.0000018031, -0.0000018273,0.0000018557,0.0000018728,0.0000018790,0.0000018833, -0.0000018867,0.0000018863,0.0000018858,0.0000018863,0.0000018824, -0.0000018652,0.0000018440,0.0000018287,0.0000018035,0.0000017695, -0.0000017461,0.0000017299,0.0000017121,0.0000016912,0.0000016643, -0.0000016335,0.0000016092,0.0000015985,0.0000015958,0.0000015940, -0.0000015918,0.0000015908,0.0000015940,0.0000016058,0.0000016232, -0.0000016408,0.0000016566,0.0000016687,0.0000016732,0.0000016722, -0.0000016673,0.0000016623,0.0000016596,0.0000016599,0.0000016571, -0.0000016531,0.0000016404,0.0000016135,0.0000015912,0.0000015887, -0.0000015848,0.0000015715,0.0000015566,0.0000015482,0.0000015525, -0.0000015579,0.0000015617,0.0000015706,0.0000015800,0.0000015898, -0.0000016048,0.0000016221,0.0000016475,0.0000016683,0.0000016911, -0.0000017121,0.0000017119,0.0000017097,0.0000016998,0.0000016899, -0.0000016818,0.0000016692,0.0000016566,0.0000016439,0.0000016271, -0.0000016091,0.0000015667,0.0000015390,0.0000015143,0.0000015036, -0.0000014984,0.0000014966,0.0000014927,0.0000014881,0.0000014869, -0.0000014951,0.0000015204,0.0000015579,0.0000015768,0.0000015771, -0.0000015975,0.0000016306,0.0000016461,0.0000016311,0.0000015931, -0.0000015700,0.0000015626,0.0000015603,0.0000015727,0.0000015954, -0.0000016036,0.0000016054,0.0000016083,0.0000016106,0.0000016112, -0.0000016123,0.0000016152,0.0000016206,0.0000016279,0.0000016339, -0.0000016344,0.0000016311,0.0000016350,0.0000016506,0.0000016568, -0.0000016422,0.0000016358,0.0000016269,0.0000015807,0.0000015870, -0.0000016320,0.0000016385,0.0000016362,0.0000016258,0.0000015913, -0.0000015666,0.0000015566,0.0000015568,0.0000015575,0.0000015585, -0.0000015759,0.0000015986,0.0000016144,0.0000016247,0.0000016216, -0.0000016163,0.0000016301,0.0000016513,0.0000016575,0.0000016564, -0.0000016515,0.0000016343,0.0000016262,0.0000016255,0.0000016016, -0.0000016440,0.0000016863,0.0000017076,0.0000017248,0.0000017233, -0.0000017148,0.0000017056,0.0000016886,0.0000016863,0.0000017050, -0.0000016965,0.0000016591,0.0000016387,0.0000016582,0.0000016854, -0.0000016742,0.0000016606,0.0000016653,0.0000016715,0.0000016526, -0.0000016273,0.0000016166,0.0000016080,0.0000016046,0.0000016067, -0.0000016223,0.0000016363,0.0000016330,0.0000016365,0.0000016785, -0.0000017326,0.0000017598,0.0000017613,0.0000017421,0.0000017126, -0.0000016872,0.0000016636,0.0000016606,0.0000016751,0.0000016787, -0.0000016762,0.0000016799,0.0000016908,0.0000017091,0.0000017309, -0.0000017436,0.0000017429,0.0000017287,0.0000017087,0.0000016965, -0.0000016946,0.0000016926,0.0000016866,0.0000016851,0.0000016940, -0.0000017102,0.0000017304,0.0000017487,0.0000017590,0.0000017610, -0.0000017617,0.0000017915,0.0000018141,0.0000018056,0.0000017887, -0.0000017773,0.0000017739,0.0000017798,0.0000017896,0.0000018007, -0.0000017973,0.0000017781,0.0000017777,0.0000017782,0.0000017952, -0.0000018165,0.0000018188,0.0000018091,0.0000017977,0.0000017927, -0.0000018072,0.0000018409,0.0000018571,0.0000018553,0.0000018988, -0.0000019675,0.0000019753,0.0000019359,0.0000018374,0.0000018005, -0.0000017960,0.0000017599,0.0000017445,0.0000017499,0.0000017485, -0.0000017456,0.0000017507,0.0000017555,0.0000017561,0.0000017615, -0.0000017610,0.0000017541,0.0000017499,0.0000017695,0.0000018115, -0.0000018483,0.0000018664,0.0000018468,0.0000018152,0.0000018183, -0.0000018468,0.0000018686,0.0000018830,0.0000018943,0.0000018927, -0.0000018466,0.0000018011,0.0000018004,0.0000018191,0.0000018594, -0.0000019028,0.0000019103,0.0000019174,0.0000019050,0.0000018432, -0.0000018360,0.0000018603,0.0000017755,0.0000016829,0.0000016697, -0.0000016782,0.0000016640,0.0000016255,0.0000016301,0.0000016355, -0.0000016560,0.0000016757,0.0000016791,0.0000016998,0.0000017176, -0.0000017413,0.0000017281,0.0000016796,0.0000016662,0.0000016490, -0.0000016203,0.0000016013,0.0000015705,0.0000015486,0.0000015429, -0.0000015268,0.0000015222,0.0000015204,0.0000014945,0.0000014650, -0.0000014590,0.0000014466,0.0000014414,0.0000014472,0.0000014531, -0.0000014612,0.0000014705,0.0000014742,0.0000014740,0.0000014734, -0.0000014741,0.0000014746,0.0000014735,0.0000014716,0.0000014714, -0.0000014736,0.0000014783,0.0000014833,0.0000014848,0.0000014830, -0.0000014810,0.0000014807,0.0000014824,0.0000014851,0.0000014922, -0.0000015030,0.0000015161,0.0000015292,0.0000015400,0.0000015476, -0.0000015526,0.0000015549,0.0000015550,0.0000015537,0.0000015512, -0.0000015479,0.0000015454,0.0000015443,0.0000015430,0.0000015398, -0.0000015348,0.0000015289,0.0000015221,0.0000015136,0.0000015031, -0.0000014914,0.0000014812,0.0000014754,0.0000014756,0.0000014826, -0.0000014956,0.0000015120,0.0000015291,0.0000015460,0.0000015630, -0.0000015797,0.0000015942,0.0000016042,0.0000016090,0.0000016096, -0.0000016080,0.0000016057,0.0000016029,0.0000016002,0.0000015985, -0.0000015981,0.0000015997,0.0000016025,0.0000016043,0.0000016041, -0.0000016039,0.0000016051,0.0000016080,0.0000016110,0.0000016140, -0.0000016180,0.0000016231,0.0000016299,0.0000016398,0.0000016530, -0.0000016681,0.0000016811,0.0000016895,0.0000016956,0.0000017014, -0.0000016979,0.0000016637,0.0000015793,0.0000015262,0.0000015364, -0.0000015545,0.0000015529,0.0000015380,0.0000015224,0.0000015140, -0.0000015111,0.0000015098,0.0000015069,0.0000015012,0.0000014924, -0.0000014800,0.0000014642,0.0000014462,0.0000014282,0.0000014108, -0.0000013969,0.0000013911,0.0000013867,0.0000013991,0.0000014313, -0.0000014736,0.0000015038,0.0000015138,0.0000015128,0.0000015124, -0.0000015144,0.0000015207,0.0000015312,0.0000015435,0.0000015550, -0.0000015648,0.0000015716,0.0000015748,0.0000015743,0.0000015715, -0.0000015666,0.0000015623,0.0000015652,0.0000015829,0.0000016065, -0.0000016200,0.0000016234,0.0000016263,0.0000016257,0.0000016196, -0.0000016096,0.0000015939,0.0000015721,0.0000015522,0.0000015432, -0.0000015415,0.0000015411,0.0000015404,0.0000015383,0.0000015390, -0.0000015504,0.0000015787,0.0000015938,0.0000015815,0.0000015604, -0.0000015582,0.0000015704,0.0000015843,0.0000015965,0.0000016063, -0.0000016102,0.0000016117,0.0000016145,0.0000016179,0.0000016208, -0.0000016234,0.0000016260,0.0000016284,0.0000016303,0.0000016315, -0.0000016313,0.0000016294,0.0000016274,0.0000016275,0.0000016325, -0.0000016451,0.0000016663,0.0000016919,0.0000017163,0.0000017336, -0.0000017421,0.0000017486,0.0000017509,0.0000017518,0.0000017548, -0.0000017458,0.0000017319,0.0000017314,0.0000017485,0.0000017939, -0.0000019035,0.0000019889,0.0000019942,0.0000019560,0.0000018482, -0.0000018176,0.0000019530,0.0000020498,0.0000020036,0.0000019471, -0.0000019334,0.0000019412,0.0000019564,0.0000019884,0.0000020168, -0.0000020204,0.0000020246,0.0000020369,0.0000020380,0.0000020062, -0.0000019151,0.0000018101,0.0000017805,0.0000018223,0.0000018724, -0.0000019005,0.0000019055,0.0000018970,0.0000018877,0.0000018682, -0.0000018564,0.0000018645,0.0000018791,0.0000018864,0.0000018933, -0.0000018932,0.0000018711,0.0000018350,0.0000018104,0.0000017932, -0.0000017741,0.0000017617,0.0000017571,0.0000017450,0.0000017092, -0.0000016657,0.0000016501,0.0000016539,0.0000016611,0.0000016639, -0.0000016667,0.0000016771,0.0000016909,0.0000017014,0.0000017067, -0.0000017069,0.0000017078,0.0000017210,0.0000017513,0.0000017843, -0.0000018030,0.0000018054,0.0000018002,0.0000017949,0.0000018012, -0.0000018253,0.0000018531,0.0000018698,0.0000018766,0.0000018813, -0.0000018847,0.0000018857,0.0000018858,0.0000018847,0.0000018763, -0.0000018567,0.0000018382,0.0000018226,0.0000017944,0.0000017638, -0.0000017448,0.0000017290,0.0000017103,0.0000016871,0.0000016573, -0.0000016261,0.0000016058,0.0000015984,0.0000015950,0.0000015923, -0.0000015909,0.0000015901,0.0000015917,0.0000016021,0.0000016198, -0.0000016380,0.0000016530,0.0000016645,0.0000016706,0.0000016704, -0.0000016665,0.0000016625,0.0000016614,0.0000016572,0.0000016532, -0.0000016426,0.0000016179,0.0000015935,0.0000015887,0.0000015853, -0.0000015725,0.0000015576,0.0000015474,0.0000015493,0.0000015550, -0.0000015588,0.0000015674,0.0000015795,0.0000015883,0.0000016014, -0.0000016173,0.0000016422,0.0000016654,0.0000016885,0.0000017100, -0.0000017100,0.0000017055,0.0000016915,0.0000016745,0.0000016577, -0.0000016445,0.0000016304,0.0000016152,0.0000016023,0.0000015860, -0.0000015105,0.0000015029,0.0000015084,0.0000015208,0.0000015303, -0.0000015323,0.0000015283,0.0000015173,0.0000015005,0.0000014902, -0.0000014906,0.0000015189,0.0000015612,0.0000015731,0.0000015817, -0.0000016151,0.0000016433,0.0000016382,0.0000016008,0.0000015721, -0.0000015631,0.0000015599,0.0000015658,0.0000015884,0.0000016018, -0.0000016053,0.0000016080,0.0000016113,0.0000016147,0.0000016181, -0.0000016214,0.0000016253,0.0000016288,0.0000016296,0.0000016278, -0.0000016293,0.0000016416,0.0000016523,0.0000016424,0.0000016307, -0.0000016334,0.0000016010,0.0000015722,0.0000016102,0.0000016357, -0.0000016319,0.0000016293,0.0000016051,0.0000015751,0.0000015592, -0.0000015536,0.0000015561,0.0000015568,0.0000015626,0.0000015822, -0.0000016009,0.0000016174,0.0000016228,0.0000016152,0.0000016180, -0.0000016399,0.0000016554,0.0000016564,0.0000016561,0.0000016527, -0.0000016359,0.0000016245,0.0000016243,0.0000016021,0.0000016451, -0.0000016848,0.0000017033,0.0000017180,0.0000017163,0.0000017104, -0.0000016996,0.0000016820,0.0000016860,0.0000017012,0.0000016844, -0.0000016488,0.0000016453,0.0000016741,0.0000016830,0.0000016636, -0.0000016601,0.0000016684,0.0000016652,0.0000016390,0.0000016192, -0.0000016064,0.0000016004,0.0000016026,0.0000016128,0.0000016317, -0.0000016359,0.0000016327,0.0000016600,0.0000017167,0.0000017539, -0.0000017598,0.0000017452,0.0000017160,0.0000016896,0.0000016646, -0.0000016601,0.0000016740,0.0000016781,0.0000016776,0.0000016831, -0.0000016951,0.0000017142,0.0000017370,0.0000017501,0.0000017482, -0.0000017317,0.0000017107,0.0000016988,0.0000016973,0.0000016968, -0.0000016908,0.0000016854,0.0000016893,0.0000017006,0.0000017154, -0.0000017337,0.0000017498,0.0000017568,0.0000017571,0.0000017860, -0.0000018140,0.0000018063,0.0000017876,0.0000017800,0.0000017807, -0.0000017917,0.0000018008,0.0000017943,0.0000017764,0.0000017772, -0.0000017786,0.0000017972,0.0000018148,0.0000017979,0.0000017727, -0.0000017675,0.0000017754,0.0000017979,0.0000018343,0.0000018499, -0.0000018641,0.0000019284,0.0000019700,0.0000019637,0.0000019213, -0.0000018330,0.0000017925,0.0000017969,0.0000017748,0.0000017442, -0.0000017404,0.0000017431,0.0000017478,0.0000017513,0.0000017611, -0.0000017742,0.0000017734,0.0000017678,0.0000017670,0.0000017646, -0.0000017614,0.0000017809,0.0000018167,0.0000018325,0.0000018179, -0.0000018073,0.0000018262,0.0000018528,0.0000018604,0.0000018578, -0.0000018656,0.0000018897,0.0000018961,0.0000018515,0.0000018057, -0.0000018085,0.0000018302,0.0000018673,0.0000019121,0.0000019225, -0.0000018950,0.0000018351,0.0000018300,0.0000018663,0.0000018028, -0.0000016969,0.0000016690,0.0000016739,0.0000016749,0.0000016390, -0.0000016256,0.0000016360,0.0000016455,0.0000016704,0.0000016781, -0.0000016954,0.0000017131,0.0000017363,0.0000017384,0.0000016905, -0.0000016686,0.0000016569,0.0000016285,0.0000016069,0.0000015791, -0.0000015529,0.0000015450,0.0000015291,0.0000015237,0.0000015219, -0.0000014952,0.0000014664,0.0000014600,0.0000014487,0.0000014449, -0.0000014502,0.0000014541,0.0000014592,0.0000014664,0.0000014693, -0.0000014683,0.0000014688,0.0000014722,0.0000014747,0.0000014734, -0.0000014699,0.0000014696,0.0000014721,0.0000014780,0.0000014857, -0.0000014904,0.0000014922,0.0000014918,0.0000014898,0.0000014869, -0.0000014840,0.0000014827,0.0000014836,0.0000014855,0.0000014885, -0.0000014929,0.0000014995,0.0000015075,0.0000015140,0.0000015167, -0.0000015155,0.0000015115,0.0000015062,0.0000015015,0.0000014988, -0.0000014981,0.0000014961,0.0000014906,0.0000014820,0.0000014712, -0.0000014584,0.0000014450,0.0000014339,0.0000014265,0.0000014230, -0.0000014225,0.0000014246,0.0000014308,0.0000014438,0.0000014647, -0.0000014901,0.0000015138,0.0000015311,0.0000015430,0.0000015511, -0.0000015550,0.0000015549,0.0000015522,0.0000015477,0.0000015420, -0.0000015352,0.0000015280,0.0000015218,0.0000015178,0.0000015169, -0.0000015172,0.0000015160,0.0000015135,0.0000015127,0.0000015134, -0.0000015147,0.0000015166,0.0000015198,0.0000015261,0.0000015375, -0.0000015551,0.0000015798,0.0000016099,0.0000016407,0.0000016659, -0.0000016822,0.0000016908,0.0000016981,0.0000016987,0.0000016749, -0.0000016057,0.0000015474,0.0000015272,0.0000015399,0.0000015520, -0.0000015574,0.0000015573,0.0000015549,0.0000015516,0.0000015489, -0.0000015457,0.0000015407,0.0000015327,0.0000015202,0.0000015011, -0.0000014746,0.0000014455,0.0000014197,0.0000014005,0.0000013874, -0.0000013846,0.0000013953,0.0000014285,0.0000014715,0.0000015016, -0.0000015121,0.0000015121,0.0000015114,0.0000015110,0.0000015151, -0.0000015224,0.0000015327,0.0000015442,0.0000015548,0.0000015632, -0.0000015690,0.0000015728,0.0000015765,0.0000015828,0.0000015938, -0.0000016078,0.0000016181,0.0000016202,0.0000016187,0.0000016145, -0.0000016054,0.0000015914,0.0000015729,0.0000015550,0.0000015452, -0.0000015445,0.0000015475,0.0000015477,0.0000015456,0.0000015417, -0.0000015375,0.0000015340,0.0000015401,0.0000015677,0.0000015933, -0.0000015823,0.0000015592,0.0000015557,0.0000015674,0.0000015778, -0.0000015856,0.0000015922,0.0000015976,0.0000016007,0.0000016022, -0.0000016018,0.0000016006,0.0000015991,0.0000015972,0.0000015951, -0.0000015931,0.0000015916,0.0000015902,0.0000015892,0.0000015898, -0.0000015929,0.0000015995,0.0000016115,0.0000016308,0.0000016566, -0.0000016829,0.0000017030,0.0000017181,0.0000017268,0.0000017277, -0.0000017209,0.0000017058,0.0000016920,0.0000016962,0.0000017325, -0.0000017920,0.0000019001,0.0000019894,0.0000019936,0.0000019437, -0.0000018209,0.0000017789,0.0000019138,0.0000020444,0.0000020333, -0.0000019684,0.0000019404,0.0000019410,0.0000019544,0.0000019850, -0.0000020174,0.0000020243,0.0000020246,0.0000020361,0.0000020409, -0.0000020180,0.0000019324,0.0000018225,0.0000017796,0.0000018053, -0.0000018509,0.0000018853,0.0000019090,0.0000019062,0.0000018940, -0.0000018769,0.0000018647,0.0000018684,0.0000018768,0.0000018794, -0.0000018848,0.0000018938,0.0000018945,0.0000018713,0.0000018337, -0.0000018061,0.0000017896,0.0000017755,0.0000017656,0.0000017587, -0.0000017353,0.0000016876,0.0000016512,0.0000016497,0.0000016594, -0.0000016604,0.0000016585,0.0000016626,0.0000016762,0.0000016929, -0.0000017036,0.0000017057,0.0000017056,0.0000017130,0.0000017381, -0.0000017732,0.0000017982,0.0000018035,0.0000017986,0.0000017932, -0.0000017996,0.0000018230,0.0000018496,0.0000018659,0.0000018732, -0.0000018786,0.0000018827,0.0000018837,0.0000018834,0.0000018802, -0.0000018686,0.0000018489,0.0000018336,0.0000018159,0.0000017855, -0.0000017592,0.0000017435,0.0000017280,0.0000017084,0.0000016823, -0.0000016494,0.0000016197,0.0000016035,0.0000015957,0.0000015899, -0.0000015883,0.0000015888,0.0000015892,0.0000015913,0.0000016011, -0.0000016184,0.0000016365,0.0000016500,0.0000016593,0.0000016649, -0.0000016664,0.0000016643,0.0000016620,0.0000016562,0.0000016521, -0.0000016432,0.0000016205,0.0000015961,0.0000015899,0.0000015867, -0.0000015731,0.0000015591,0.0000015479,0.0000015470,0.0000015526, -0.0000015578,0.0000015652,0.0000015782,0.0000015876,0.0000015979, -0.0000016120,0.0000016346,0.0000016599,0.0000016814,0.0000017063, -0.0000017087,0.0000017006,0.0000016791,0.0000016529,0.0000016303, -0.0000016148,0.0000016010,0.0000015894,0.0000015676,0.0000015374, -0.0000015025,0.0000015233,0.0000015441,0.0000015577,0.0000015649, -0.0000015667,0.0000015651,0.0000015598,0.0000015443,0.0000015158, -0.0000014885,0.0000014903,0.0000015311,0.0000015658,0.0000015748, -0.0000015993,0.0000016349,0.0000016378,0.0000016068,0.0000015741, -0.0000015624,0.0000015591,0.0000015613,0.0000015812,0.0000015988, -0.0000016050,0.0000016079,0.0000016109,0.0000016143,0.0000016173, -0.0000016189,0.0000016205,0.0000016211,0.0000016217,0.0000016240, -0.0000016331,0.0000016448,0.0000016404,0.0000016260,0.0000016296, -0.0000016220,0.0000015748,0.0000015818,0.0000016261,0.0000016312, -0.0000016269,0.0000016161,0.0000015850,0.0000015647,0.0000015539, -0.0000015525,0.0000015542,0.0000015565,0.0000015692,0.0000015877, -0.0000016035,0.0000016189,0.0000016179,0.0000016113,0.0000016255, -0.0000016476,0.0000016539,0.0000016548,0.0000016571,0.0000016546, -0.0000016372,0.0000016263,0.0000016251,0.0000016044,0.0000016493, -0.0000016838,0.0000017001,0.0000017121,0.0000017109,0.0000017059, -0.0000016901,0.0000016766,0.0000016849,0.0000016946,0.0000016729, -0.0000016489,0.0000016587,0.0000016813,0.0000016729,0.0000016586, -0.0000016615,0.0000016691,0.0000016539,0.0000016268,0.0000016087, -0.0000015956,0.0000015967,0.0000016055,0.0000016222,0.0000016359, -0.0000016326,0.0000016450,0.0000016978,0.0000017453,0.0000017578, -0.0000017475,0.0000017194,0.0000016922,0.0000016658,0.0000016597, -0.0000016731,0.0000016782,0.0000016789,0.0000016861,0.0000016993, -0.0000017193,0.0000017428,0.0000017562,0.0000017537,0.0000017357, -0.0000017140,0.0000017023,0.0000017007,0.0000017005,0.0000016952, -0.0000016876,0.0000016875,0.0000016959,0.0000017065,0.0000017201, -0.0000017381,0.0000017514,0.0000017532,0.0000017837,0.0000018139, -0.0000018048,0.0000017874,0.0000017883,0.0000017940,0.0000017981, -0.0000017899,0.0000017736,0.0000017750,0.0000017762,0.0000017938, -0.0000018128,0.0000017807,0.0000017590,0.0000017631,0.0000017696, -0.0000017920,0.0000018286,0.0000018466,0.0000018730,0.0000019454, -0.0000019717,0.0000019500,0.0000019190,0.0000018480,0.0000017899, -0.0000017888,0.0000017858,0.0000017587,0.0000017452,0.0000017459, -0.0000017493,0.0000017555,0.0000017849,0.0000018223,0.0000018297, -0.0000018095,0.0000017791,0.0000017714,0.0000017716,0.0000017694, -0.0000017787,0.0000017908,0.0000017901,0.0000018022,0.0000018337, -0.0000018567,0.0000018632,0.0000018599,0.0000018513,0.0000018541, -0.0000018799,0.0000018933,0.0000018553,0.0000018124,0.0000018174, -0.0000018408,0.0000018623,0.0000018792,0.0000018663,0.0000018266, -0.0000018289,0.0000018711,0.0000018227,0.0000017134,0.0000016706, -0.0000016702,0.0000016769,0.0000016569,0.0000016266,0.0000016338, -0.0000016414,0.0000016646,0.0000016770,0.0000016879,0.0000017090, -0.0000017293,0.0000017413,0.0000017041,0.0000016734,0.0000016633, -0.0000016379,0.0000016131,0.0000015878,0.0000015586,0.0000015478, -0.0000015313,0.0000015246,0.0000015230,0.0000014957,0.0000014675, -0.0000014610,0.0000014506,0.0000014479,0.0000014527,0.0000014555, -0.0000014585,0.0000014638,0.0000014660,0.0000014651,0.0000014669, -0.0000014718,0.0000014742,0.0000014722,0.0000014690,0.0000014687, -0.0000014737,0.0000014798,0.0000014860,0.0000014906,0.0000014923, -0.0000014918,0.0000014903,0.0000014880,0.0000014851,0.0000014828, -0.0000014823,0.0000014833,0.0000014840,0.0000014839,0.0000014828, -0.0000014814,0.0000014798,0.0000014772,0.0000014726,0.0000014676, -0.0000014624,0.0000014569,0.0000014546,0.0000014551,0.0000014546, -0.0000014505,0.0000014417,0.0000014326,0.0000014256,0.0000014224, -0.0000014204,0.0000014193,0.0000014194,0.0000014210,0.0000014226, -0.0000014224,0.0000014206,0.0000014198,0.0000014211,0.0000014374, -0.0000014595,0.0000014807,0.0000014952,0.0000015013,0.0000015002, -0.0000014937,0.0000014845,0.0000014759,0.0000014691,0.0000014632, -0.0000014574,0.0000014532,0.0000014525,0.0000014552,0.0000014576, -0.0000014579,0.0000014583,0.0000014595,0.0000014591,0.0000014573, -0.0000014554,0.0000014540,0.0000014572,0.0000014663,0.0000014845, -0.0000015170,0.0000015640,0.0000016163,0.0000016555,0.0000016764, -0.0000016872,0.0000016960,0.0000016985,0.0000016803,0.0000016293, -0.0000015713,0.0000015427,0.0000015289,0.0000015278,0.0000015285, -0.0000015276,0.0000015269,0.0000015266,0.0000015279,0.0000015313, -0.0000015369,0.0000015387,0.0000015384,0.0000015214,0.0000014915, -0.0000014566,0.0000014245,0.0000014005,0.0000013855,0.0000013828, -0.0000013938,0.0000014275,0.0000014687,0.0000014983,0.0000015109, -0.0000015110,0.0000015097,0.0000015091,0.0000015119,0.0000015169, -0.0000015239,0.0000015323,0.0000015414,0.0000015506,0.0000015599, -0.0000015694,0.0000015794,0.0000015886,0.0000015944,0.0000015958, -0.0000015929,0.0000015850,0.0000015733,0.0000015595,0.0000015475, -0.0000015431,0.0000015458,0.0000015518,0.0000015565,0.0000015571, -0.0000015539,0.0000015480,0.0000015428,0.0000015380,0.0000015326, -0.0000015355,0.0000015624,0.0000015919,0.0000015810,0.0000015573, -0.0000015542,0.0000015650,0.0000015710,0.0000015757,0.0000015790, -0.0000015819,0.0000015835,0.0000015833,0.0000015819,0.0000015802, -0.0000015778,0.0000015750,0.0000015722,0.0000015704,0.0000015694, -0.0000015688,0.0000015688,0.0000015705,0.0000015748,0.0000015820, -0.0000015920,0.0000016057,0.0000016248,0.0000016454,0.0000016620, -0.0000016713,0.0000016734,0.0000016697,0.0000016610,0.0000016548, -0.0000016636,0.0000017119,0.0000017896,0.0000019000,0.0000019879, -0.0000019861,0.0000019260,0.0000018084,0.0000017735,0.0000018895, -0.0000020425,0.0000020548,0.0000019959,0.0000019535,0.0000019436, -0.0000019557,0.0000019854,0.0000020178,0.0000020262,0.0000020255, -0.0000020358,0.0000020433,0.0000020268,0.0000019511,0.0000018375, -0.0000017773,0.0000017954,0.0000018336,0.0000018592,0.0000018997, -0.0000019113,0.0000019014,0.0000018842,0.0000018717,0.0000018714, -0.0000018746,0.0000018750,0.0000018777,0.0000018843,0.0000018943, -0.0000018951,0.0000018739,0.0000018372,0.0000018069,0.0000017887, -0.0000017758,0.0000017661,0.0000017514,0.0000017105,0.0000016610, -0.0000016487,0.0000016582,0.0000016599,0.0000016541,0.0000016521, -0.0000016630,0.0000016837,0.0000016998,0.0000017054,0.0000017054, -0.0000017085,0.0000017280,0.0000017625,0.0000017918,0.0000018004, -0.0000017964,0.0000017917,0.0000017979,0.0000018200,0.0000018455, -0.0000018616,0.0000018691,0.0000018750,0.0000018794,0.0000018802, -0.0000018788,0.0000018738,0.0000018602,0.0000018424,0.0000018293, -0.0000018086,0.0000017780,0.0000017563,0.0000017426,0.0000017268, -0.0000017055,0.0000016757,0.0000016408,0.0000016144,0.0000016004, -0.0000015911,0.0000015853,0.0000015846,0.0000015865,0.0000015895, -0.0000015935,0.0000016015,0.0000016175,0.0000016349,0.0000016466, -0.0000016535,0.0000016582,0.0000016598,0.0000016586,0.0000016533, -0.0000016503,0.0000016426,0.0000016213,0.0000015984,0.0000015924, -0.0000015890,0.0000015743,0.0000015604,0.0000015490,0.0000015457, -0.0000015508,0.0000015574,0.0000015645,0.0000015764,0.0000015866, -0.0000015945,0.0000016067,0.0000016258,0.0000016529,0.0000016730, -0.0000017001,0.0000017080,0.0000016939,0.0000016619,0.0000016278, -0.0000016030,0.0000015861,0.0000015692,0.0000015399,0.0000015097, -0.0000014971,0.0000015250,0.0000015464,0.0000015604,0.0000015671, -0.0000015705,0.0000015718,0.0000015721,0.0000015729,0.0000015707, -0.0000015523,0.0000015137,0.0000014873,0.0000015010,0.0000015502, -0.0000015705,0.0000015855,0.0000016215,0.0000016364,0.0000016109, -0.0000015755,0.0000015610,0.0000015586,0.0000015596,0.0000015751, -0.0000015935,0.0000016018,0.0000016046,0.0000016064,0.0000016085, -0.0000016098,0.0000016101,0.0000016113,0.0000016143,0.0000016188, -0.0000016256,0.0000016345,0.0000016342,0.0000016213,0.0000016204, -0.0000016283,0.0000015954,0.0000015654,0.0000016025,0.0000016294, -0.0000016251,0.0000016215,0.0000015977,0.0000015709,0.0000015571, -0.0000015515,0.0000015514,0.0000015518,0.0000015583,0.0000015764, -0.0000015916,0.0000016060,0.0000016172,0.0000016110,0.0000016118, -0.0000016345,0.0000016485,0.0000016509,0.0000016557,0.0000016612, -0.0000016586,0.0000016395,0.0000016298,0.0000016268,0.0000016086, -0.0000016558,0.0000016842,0.0000016981,0.0000017068,0.0000017067, -0.0000016991,0.0000016799,0.0000016713,0.0000016837,0.0000016870, -0.0000016653,0.0000016539,0.0000016732,0.0000016808,0.0000016612, -0.0000016563,0.0000016645,0.0000016646,0.0000016395,0.0000016152, -0.0000015961,0.0000015898,0.0000015984,0.0000016119,0.0000016310, -0.0000016338,0.0000016351,0.0000016772,0.0000017329,0.0000017553, -0.0000017485,0.0000017228,0.0000016950,0.0000016671,0.0000016606, -0.0000016720,0.0000016785,0.0000016803,0.0000016888,0.0000017030, -0.0000017235,0.0000017476,0.0000017618,0.0000017595,0.0000017406, -0.0000017183,0.0000017069,0.0000017049,0.0000017041,0.0000016989, -0.0000016907,0.0000016882,0.0000016940,0.0000017026,0.0000017120, -0.0000017284,0.0000017456,0.0000017507,0.0000017850,0.0000018144, -0.0000018014,0.0000017893,0.0000017978,0.0000017980,0.0000017837, -0.0000017687,0.0000017734,0.0000017746,0.0000017865,0.0000018092, -0.0000017726,0.0000017499,0.0000017552,0.0000017625,0.0000017842, -0.0000018246,0.0000018450,0.0000018741,0.0000019459,0.0000019686, -0.0000019390,0.0000019155,0.0000018782,0.0000018085,0.0000017770, -0.0000017773,0.0000017686,0.0000017546,0.0000017490,0.0000017500, -0.0000017739,0.0000018232,0.0000018626,0.0000018755,0.0000018723, -0.0000018402,0.0000017946,0.0000017745,0.0000017718,0.0000017672, -0.0000017661,0.0000017793,0.0000018061,0.0000018408,0.0000018652, -0.0000018847,0.0000018957,0.0000018909,0.0000018674,0.0000018553, -0.0000018693,0.0000018878,0.0000018601,0.0000018205,0.0000018250, -0.0000018470,0.0000018501,0.0000018399,0.0000018266,0.0000018371, -0.0000018763,0.0000018390,0.0000017284,0.0000016749,0.0000016711, -0.0000016770,0.0000016710,0.0000016364,0.0000016308,0.0000016402, -0.0000016562,0.0000016754,0.0000016811,0.0000017021,0.0000017214, -0.0000017433,0.0000017207,0.0000016813,0.0000016680,0.0000016472, -0.0000016205,0.0000015959,0.0000015645,0.0000015509,0.0000015339, -0.0000015256,0.0000015242,0.0000014966,0.0000014684,0.0000014618, -0.0000014522,0.0000014495,0.0000014536,0.0000014562,0.0000014582, -0.0000014624,0.0000014642,0.0000014642,0.0000014663,0.0000014699, -0.0000014723,0.0000014729,0.0000014722,0.0000014724,0.0000014765, -0.0000014824,0.0000014872,0.0000014913,0.0000014937,0.0000014928, -0.0000014901,0.0000014865,0.0000014821,0.0000014785,0.0000014784, -0.0000014822,0.0000014862,0.0000014876,0.0000014866,0.0000014842, -0.0000014802,0.0000014747,0.0000014684,0.0000014622,0.0000014556, -0.0000014495,0.0000014449,0.0000014454,0.0000014483,0.0000014480, -0.0000014418,0.0000014327,0.0000014259,0.0000014230,0.0000014230, -0.0000014247,0.0000014281,0.0000014328,0.0000014369,0.0000014379, -0.0000014340,0.0000014261,0.0000014179,0.0000014147,0.0000014170, -0.0000014197,0.0000014272,0.0000014325,0.0000014335,0.0000014313, -0.0000014284,0.0000014287,0.0000014350,0.0000014391,0.0000014397, -0.0000014385,0.0000014382,0.0000014424,0.0000014485,0.0000014525, -0.0000014553,0.0000014578,0.0000014576,0.0000014536,0.0000014468, -0.0000014399,0.0000014347,0.0000014305,0.0000014335,0.0000014475, -0.0000014789,0.0000015349,0.0000016037,0.0000016527,0.0000016742, -0.0000016851,0.0000016944,0.0000016991,0.0000016879,0.0000016543, -0.0000016163,0.0000015880,0.0000015720,0.0000015639,0.0000015605, -0.0000015582,0.0000015544,0.0000015479,0.0000015379,0.0000015345, -0.0000015251,0.0000015360,0.0000015427,0.0000015298,0.0000014976, -0.0000014583,0.0000014231,0.0000013975,0.0000013825,0.0000013798, -0.0000013922,0.0000014244,0.0000014644,0.0000014942,0.0000015069, -0.0000015093,0.0000015090,0.0000015092,0.0000015107,0.0000015143, -0.0000015191,0.0000015244,0.0000015297,0.0000015351,0.0000015401, -0.0000015447,0.0000015484,0.0000015507,0.0000015511,0.0000015478, -0.0000015420,0.0000015374,0.0000015375,0.0000015406,0.0000015471, -0.0000015528,0.0000015553,0.0000015557,0.0000015545,0.0000015499, -0.0000015438,0.0000015411,0.0000015370,0.0000015310,0.0000015329, -0.0000015599,0.0000015894,0.0000015791,0.0000015557,0.0000015534, -0.0000015618,0.0000015638,0.0000015663,0.0000015675,0.0000015674, -0.0000015665,0.0000015661,0.0000015663,0.0000015658,0.0000015640, -0.0000015615,0.0000015589,0.0000015575,0.0000015570,0.0000015572, -0.0000015580,0.0000015603,0.0000015646,0.0000015715,0.0000015801, -0.0000015900,0.0000016028,0.0000016177,0.0000016295,0.0000016348, -0.0000016345,0.0000016321,0.0000016314,0.0000016414,0.0000016917, -0.0000017841,0.0000019018,0.0000019777,0.0000019713,0.0000019069, -0.0000018051,0.0000017778,0.0000018780,0.0000020228,0.0000020622, -0.0000020253,0.0000019785,0.0000019562,0.0000019615,0.0000019918, -0.0000020214,0.0000020279,0.0000020259,0.0000020356,0.0000020443, -0.0000020338,0.0000019686,0.0000018534,0.0000017800,0.0000017907, -0.0000018268,0.0000018376,0.0000018762,0.0000019085,0.0000019073, -0.0000018900,0.0000018750,0.0000018685,0.0000018667,0.0000018677, -0.0000018721,0.0000018766,0.0000018840,0.0000018922,0.0000018918, -0.0000018760,0.0000018454,0.0000018106,0.0000017852,0.0000017707, -0.0000017584,0.0000017265,0.0000016746,0.0000016508,0.0000016567, -0.0000016598,0.0000016522,0.0000016467,0.0000016531,0.0000016751, -0.0000016958,0.0000017048,0.0000017055,0.0000017069,0.0000017211, -0.0000017524,0.0000017839,0.0000017971,0.0000017947,0.0000017903, -0.0000017959,0.0000018166,0.0000018414,0.0000018571,0.0000018646, -0.0000018701,0.0000018736,0.0000018737,0.0000018719,0.0000018659, -0.0000018519,0.0000018373,0.0000018246,0.0000018004,0.0000017720, -0.0000017544,0.0000017414,0.0000017248,0.0000017010,0.0000016671, -0.0000016322,0.0000016096,0.0000015972,0.0000015876,0.0000015819, -0.0000015818,0.0000015869,0.0000015926,0.0000015959,0.0000016021, -0.0000016164,0.0000016325,0.0000016427,0.0000016478,0.0000016509, -0.0000016514,0.0000016494,0.0000016482,0.0000016404,0.0000016195, -0.0000015994,0.0000015953,0.0000015913,0.0000015759,0.0000015617, -0.0000015502,0.0000015455,0.0000015497,0.0000015580,0.0000015652, -0.0000015747,0.0000015848,0.0000015913,0.0000016015,0.0000016174, -0.0000016448,0.0000016651,0.0000016922,0.0000017072,0.0000016874, -0.0000016441,0.0000016032,0.0000015758,0.0000015452,0.0000015112, -0.0000014882,0.0000014855,0.0000015016,0.0000015362,0.0000015539, -0.0000015624,0.0000015652,0.0000015658,0.0000015673,0.0000015705, -0.0000015728,0.0000015742,0.0000015720,0.0000015424,0.0000014988, -0.0000014862,0.0000015289,0.0000015645,0.0000015746,0.0000016066, -0.0000016342,0.0000016126,0.0000015761,0.0000015599,0.0000015583, -0.0000015597,0.0000015706,0.0000015864,0.0000015947,0.0000015969, -0.0000015981,0.0000015995,0.0000016002,0.0000016016,0.0000016056, -0.0000016122,0.0000016186,0.0000016232,0.0000016231,0.0000016147, -0.0000016109,0.0000016229,0.0000016162,0.0000015700,0.0000015708, -0.0000016167,0.0000016256,0.0000016214,0.0000016110,0.0000015804, -0.0000015611,0.0000015520,0.0000015508,0.0000015494,0.0000015493, -0.0000015616,0.0000015820,0.0000015946,0.0000016074,0.0000016112, -0.0000016045,0.0000016169,0.0000016385,0.0000016445,0.0000016503, -0.0000016603,0.0000016671,0.0000016635,0.0000016431,0.0000016355, -0.0000016286,0.0000016148,0.0000016642,0.0000016851,0.0000016959, -0.0000017025,0.0000017018,0.0000016888,0.0000016706,0.0000016681, -0.0000016828,0.0000016802,0.0000016624,0.0000016642,0.0000016798, -0.0000016692,0.0000016538,0.0000016563,0.0000016652,0.0000016540, -0.0000016254,0.0000016024,0.0000015863,0.0000015898,0.0000016024, -0.0000016219,0.0000016337,0.0000016319,0.0000016575,0.0000017160, -0.0000017503,0.0000017490,0.0000017261,0.0000016979,0.0000016686, -0.0000016608,0.0000016708,0.0000016784,0.0000016819,0.0000016916, -0.0000017063,0.0000017266,0.0000017507,0.0000017667,0.0000017665, -0.0000017484,0.0000017248,0.0000017122,0.0000017094,0.0000017078, -0.0000017020,0.0000016937,0.0000016903,0.0000016940,0.0000017013, -0.0000017083,0.0000017236,0.0000017412,0.0000017500,0.0000017899, -0.0000018144,0.0000017976,0.0000017941,0.0000018007,0.0000017838, -0.0000017637,0.0000017700,0.0000017741,0.0000017808,0.0000018076, -0.0000017738,0.0000017407,0.0000017438,0.0000017517,0.0000017730, -0.0000018152,0.0000018427,0.0000018597,0.0000019247,0.0000019725, -0.0000019483,0.0000019102,0.0000018951,0.0000018608,0.0000018018, -0.0000017709,0.0000017619,0.0000017538,0.0000017532,0.0000017666, -0.0000018073,0.0000018521,0.0000018790,0.0000018897,0.0000018917, -0.0000018883,0.0000018601,0.0000018110,0.0000017768,0.0000017683, -0.0000017666,0.0000017837,0.0000018183,0.0000018526,0.0000018796, -0.0000019084,0.0000019299,0.0000019354,0.0000019257,0.0000018990, -0.0000018730,0.0000018727,0.0000018820,0.0000018641,0.0000018324, -0.0000018292,0.0000018413,0.0000018429,0.0000018333,0.0000018496, -0.0000018828,0.0000018459,0.0000017386,0.0000016802,0.0000016735, -0.0000016757,0.0000016788,0.0000016518,0.0000016316,0.0000016392, -0.0000016479,0.0000016701,0.0000016778,0.0000016946,0.0000017132, -0.0000017379,0.0000017340,0.0000016920,0.0000016717,0.0000016552, -0.0000016291,0.0000016038,0.0000015704,0.0000015536,0.0000015368, -0.0000015270,0.0000015254,0.0000014981,0.0000014690,0.0000014621, -0.0000014534,0.0000014501,0.0000014535,0.0000014560,0.0000014579, -0.0000014618,0.0000014637,0.0000014640,0.0000014652,0.0000014676, -0.0000014710,0.0000014748,0.0000014760,0.0000014766,0.0000014791, -0.0000014820,0.0000014857,0.0000014893,0.0000014925,0.0000014932, -0.0000014922,0.0000014899,0.0000014868,0.0000014835,0.0000014833, -0.0000014854,0.0000014874,0.0000014878,0.0000014865,0.0000014842, -0.0000014814,0.0000014768,0.0000014707,0.0000014635,0.0000014567, -0.0000014491,0.0000014445,0.0000014442,0.0000014479,0.0000014505, -0.0000014482,0.0000014404,0.0000014329,0.0000014307,0.0000014330, -0.0000014388,0.0000014456,0.0000014518,0.0000014579,0.0000014617, -0.0000014610,0.0000014537,0.0000014409,0.0000014284,0.0000014209, -0.0000014182,0.0000014185,0.0000014212,0.0000014232,0.0000014237, -0.0000014244,0.0000014292,0.0000014379,0.0000014461,0.0000014507, -0.0000014515,0.0000014518,0.0000014552,0.0000014619,0.0000014680, -0.0000014724,0.0000014754,0.0000014751,0.0000014704,0.0000014609, -0.0000014489,0.0000014378,0.0000014299,0.0000014264,0.0000014252, -0.0000014336,0.0000014642,0.0000015291,0.0000016077,0.0000016559, -0.0000016738,0.0000016839,0.0000016929,0.0000016966,0.0000016943, -0.0000016835,0.0000016692,0.0000016575,0.0000016503,0.0000016464, -0.0000016427,0.0000016364,0.0000016245,0.0000016043,0.0000015771, -0.0000015440,0.0000015363,0.0000015388,0.0000015450,0.0000015314, -0.0000014947,0.0000014521,0.0000014170,0.0000013927,0.0000013793, -0.0000013782,0.0000013890,0.0000014191,0.0000014566,0.0000014862, -0.0000015017,0.0000015075,0.0000015086,0.0000015097,0.0000015118, -0.0000015150,0.0000015187,0.0000015222,0.0000015250,0.0000015272, -0.0000015295,0.0000015311,0.0000015319,0.0000015322,0.0000015326, -0.0000015340,0.0000015362,0.0000015391,0.0000015417,0.0000015436, -0.0000015448,0.0000015464,0.0000015492,0.0000015500,0.0000015449, -0.0000015395,0.0000015379,0.0000015350,0.0000015292,0.0000015313, -0.0000015598,0.0000015875,0.0000015771,0.0000015544,0.0000015524, -0.0000015597,0.0000015598,0.0000015603,0.0000015599,0.0000015586, -0.0000015581,0.0000015586,0.0000015586,0.0000015571,0.0000015547, -0.0000015519,0.0000015498,0.0000015486,0.0000015482,0.0000015483, -0.0000015504,0.0000015542,0.0000015581,0.0000015640,0.0000015722, -0.0000015799,0.0000015885,0.0000016018,0.0000016149,0.0000016218, -0.0000016219,0.0000016203,0.0000016270,0.0000016731,0.0000017752, -0.0000019029,0.0000019649,0.0000019503,0.0000018931,0.0000018100, -0.0000017879,0.0000018619,0.0000019925,0.0000020575,0.0000020485, -0.0000020102,0.0000019837,0.0000019814,0.0000020031,0.0000020266, -0.0000020289,0.0000020263,0.0000020363,0.0000020459,0.0000020393, -0.0000019821,0.0000018683,0.0000017769,0.0000017863,0.0000018282, -0.0000018316,0.0000018532,0.0000018941,0.0000019089,0.0000018946, -0.0000018753,0.0000018600,0.0000018514,0.0000018532,0.0000018599, -0.0000018629,0.0000018658,0.0000018685,0.0000018696,0.0000018701, -0.0000018659,0.0000018444,0.0000018071,0.0000017758,0.0000017607, -0.0000017376,0.0000016894,0.0000016545,0.0000016558,0.0000016601, -0.0000016514,0.0000016419,0.0000016462,0.0000016671,0.0000016905, -0.0000017034,0.0000017062,0.0000017066,0.0000017169,0.0000017436, -0.0000017756,0.0000017932,0.0000017936,0.0000017897,0.0000017941, -0.0000018135,0.0000018373,0.0000018525,0.0000018597,0.0000018641, -0.0000018660,0.0000018656,0.0000018640,0.0000018576,0.0000018446, -0.0000018332,0.0000018188,0.0000017919,0.0000017673,0.0000017528, -0.0000017398,0.0000017225,0.0000016947,0.0000016569,0.0000016243, -0.0000016061,0.0000015946,0.0000015834,0.0000015775,0.0000015810, -0.0000015899,0.0000015958,0.0000015976,0.0000016017,0.0000016141, -0.0000016289,0.0000016388,0.0000016436,0.0000016456,0.0000016463, -0.0000016452,0.0000016356,0.0000016151,0.0000015991,0.0000015977, -0.0000015931,0.0000015773,0.0000015633,0.0000015515,0.0000015457, -0.0000015498,0.0000015595,0.0000015669,0.0000015737,0.0000015820, -0.0000015883,0.0000015965,0.0000016104,0.0000016358,0.0000016580, -0.0000016825,0.0000017066,0.0000016861,0.0000016349,0.0000015788, -0.0000015340,0.0000014968,0.0000014772,0.0000014774,0.0000014925, -0.0000015144,0.0000015408,0.0000015553,0.0000015563,0.0000015548, -0.0000015549,0.0000015565,0.0000015618,0.0000015697,0.0000015742, -0.0000015752,0.0000015595,0.0000015162,0.0000014830,0.0000015093, -0.0000015569,0.0000015666,0.0000015933,0.0000016293,0.0000016126, -0.0000015770,0.0000015594,0.0000015588,0.0000015607,0.0000015674, -0.0000015785,0.0000015851,0.0000015874,0.0000015890,0.0000015901, -0.0000015917,0.0000015943,0.0000016002,0.0000016070,0.0000016100, -0.0000016091,0.0000016044,0.0000016020,0.0000016115,0.0000016210, -0.0000015914,0.0000015567,0.0000015850,0.0000016223,0.0000016211, -0.0000016177,0.0000015963,0.0000015680,0.0000015544,0.0000015504, -0.0000015504,0.0000015470,0.0000015477,0.0000015654,0.0000015851, -0.0000015966,0.0000016053,0.0000016021,0.0000016010,0.0000016220, -0.0000016360,0.0000016424,0.0000016541,0.0000016651,0.0000016723, -0.0000016680,0.0000016472,0.0000016409,0.0000016289,0.0000016245, -0.0000016724,0.0000016850,0.0000016933,0.0000016986,0.0000016941, -0.0000016780,0.0000016632,0.0000016666,0.0000016808,0.0000016745, -0.0000016646,0.0000016737,0.0000016766,0.0000016555,0.0000016505, -0.0000016596,0.0000016624,0.0000016391,0.0000016120,0.0000015904, -0.0000015829,0.0000015925,0.0000016109,0.0000016305,0.0000016304, -0.0000016413,0.0000016951,0.0000017420,0.0000017484,0.0000017297, -0.0000017010,0.0000016703,0.0000016603,0.0000016696,0.0000016782, -0.0000016834,0.0000016944,0.0000017094,0.0000017284,0.0000017514, -0.0000017695,0.0000017732,0.0000017604,0.0000017360,0.0000017191, -0.0000017145,0.0000017122,0.0000017055,0.0000016969,0.0000016930, -0.0000016959,0.0000017014,0.0000017072,0.0000017230,0.0000017381, -0.0000017542,0.0000017984,0.0000018120,0.0000017954,0.0000017987, -0.0000017924,0.0000017630,0.0000017642,0.0000017725,0.0000017740, -0.0000018007,0.0000017810,0.0000017356,0.0000017349,0.0000017384, -0.0000017579,0.0000017936,0.0000018330,0.0000018462,0.0000018812, -0.0000019518,0.0000019753,0.0000019394,0.0000018998,0.0000018866, -0.0000018660,0.0000018263,0.0000017920,0.0000017780,0.0000017806, -0.0000018077,0.0000018441,0.0000018735,0.0000018955,0.0000019068, -0.0000019048,0.0000018977,0.0000018931,0.0000018735,0.0000018316, -0.0000017959,0.0000017887,0.0000018052,0.0000018354,0.0000018648, -0.0000018959,0.0000019227,0.0000019291,0.0000019352,0.0000019390, -0.0000019364,0.0000019285,0.0000019101,0.0000018946,0.0000018883, -0.0000018760,0.0000018521,0.0000018363,0.0000018378,0.0000018455, -0.0000018694,0.0000018895,0.0000018465,0.0000017424,0.0000016838, -0.0000016767,0.0000016756,0.0000016806,0.0000016671,0.0000016366, -0.0000016368,0.0000016449,0.0000016614,0.0000016756,0.0000016879, -0.0000017051,0.0000017309,0.0000017378,0.0000017033,0.0000016760, -0.0000016611,0.0000016376,0.0000016119,0.0000015773,0.0000015567, -0.0000015400,0.0000015288,0.0000015267,0.0000014996,0.0000014689, -0.0000014612,0.0000014536,0.0000014500,0.0000014526,0.0000014554, -0.0000014578,0.0000014612,0.0000014628,0.0000014628,0.0000014633, -0.0000014651,0.0000014697,0.0000014753,0.0000014774,0.0000014782, -0.0000014798,0.0000014815,0.0000014831,0.0000014851,0.0000014885, -0.0000014903,0.0000014910,0.0000014907,0.0000014890,0.0000014877, -0.0000014880,0.0000014902,0.0000014928,0.0000014940,0.0000014921, -0.0000014875,0.0000014819,0.0000014759,0.0000014690,0.0000014619, -0.0000014547,0.0000014480,0.0000014427,0.0000014419,0.0000014464, -0.0000014512,0.0000014517,0.0000014475,0.0000014432,0.0000014440, -0.0000014503,0.0000014584,0.0000014641,0.0000014666,0.0000014692, -0.0000014724,0.0000014746,0.0000014741,0.0000014693,0.0000014604, -0.0000014498,0.0000014405,0.0000014350,0.0000014339,0.0000014355, -0.0000014383,0.0000014424,0.0000014493,0.0000014588,0.0000014681, -0.0000014740,0.0000014756,0.0000014754,0.0000014758,0.0000014790, -0.0000014835,0.0000014878,0.0000014906,0.0000014903,0.0000014872, -0.0000014804,0.0000014687,0.0000014535,0.0000014376,0.0000014264, -0.0000014216,0.0000014217,0.0000014295,0.0000014676,0.0000015459, -0.0000016244,0.0000016613,0.0000016735,0.0000016825,0.0000016901, -0.0000016951,0.0000016945,0.0000016933,0.0000016909,0.0000016879, -0.0000016845,0.0000016805,0.0000016752,0.0000016684,0.0000016585, -0.0000016394,0.0000016030,0.0000015581,0.0000015367,0.0000015413, -0.0000015509,0.0000015289,0.0000014850,0.0000014425,0.0000014102, -0.0000013885,0.0000013766,0.0000013750,0.0000013838,0.0000014099, -0.0000014437,0.0000014731,0.0000014927,0.0000015020,0.0000015070, -0.0000015096,0.0000015113,0.0000015141,0.0000015179,0.0000015221, -0.0000015264,0.0000015298,0.0000015316,0.0000015323,0.0000015326, -0.0000015326,0.0000015321,0.0000015309,0.0000015302,0.0000015304, -0.0000015317,0.0000015356,0.0000015428,0.0000015493,0.0000015493, -0.0000015432,0.0000015374,0.0000015355,0.0000015328,0.0000015275, -0.0000015306,0.0000015615,0.0000015875,0.0000015747,0.0000015522, -0.0000015499,0.0000015578,0.0000015588,0.0000015570,0.0000015540, -0.0000015512,0.0000015504,0.0000015508,0.0000015507,0.0000015499, -0.0000015487,0.0000015475,0.0000015470,0.0000015462,0.0000015445, -0.0000015427,0.0000015445,0.0000015492,0.0000015537,0.0000015585, -0.0000015665,0.0000015714,0.0000015767,0.0000015893,0.0000016069, -0.0000016177,0.0000016167,0.0000016171,0.0000016548,0.0000017642, -0.0000019023,0.0000019507,0.0000019252,0.0000018882,0.0000018197, -0.0000017940,0.0000018398,0.0000019500,0.0000020488,0.0000020584, -0.0000020346,0.0000020140,0.0000020093,0.0000020195,0.0000020304, -0.0000020285,0.0000020266,0.0000020379,0.0000020482,0.0000020432, -0.0000019920,0.0000018828,0.0000017850,0.0000017853,0.0000018285, -0.0000018349,0.0000018422,0.0000018788,0.0000019046,0.0000018974, -0.0000018729,0.0000018505,0.0000018382,0.0000018387,0.0000018399, -0.0000018370,0.0000018337,0.0000018294,0.0000018244,0.0000018261, -0.0000018388,0.0000018474,0.0000018314,0.0000017912,0.0000017638, -0.0000017447,0.0000017014,0.0000016617,0.0000016577,0.0000016603, -0.0000016494,0.0000016364,0.0000016386,0.0000016586,0.0000016841, -0.0000017009,0.0000017061,0.0000017076,0.0000017154,0.0000017370, -0.0000017676,0.0000017891,0.0000017924,0.0000017891,0.0000017929, -0.0000018105,0.0000018324,0.0000018475,0.0000018549,0.0000018578, -0.0000018582,0.0000018578,0.0000018566,0.0000018496,0.0000018384, -0.0000018288,0.0000018113,0.0000017843,0.0000017641,0.0000017512, -0.0000017380,0.0000017190,0.0000016859,0.0000016464,0.0000016185, -0.0000016040,0.0000015904,0.0000015771,0.0000015740,0.0000015817, -0.0000015918,0.0000015972,0.0000015978,0.0000016010,0.0000016116, -0.0000016251,0.0000016349,0.0000016401,0.0000016416,0.0000016393, -0.0000016280,0.0000016094,0.0000015984,0.0000015989,0.0000015930, -0.0000015777,0.0000015643,0.0000015521,0.0000015466,0.0000015517, -0.0000015620,0.0000015693,0.0000015736,0.0000015790,0.0000015850, -0.0000015921,0.0000016049,0.0000016268,0.0000016514,0.0000016707, -0.0000017055,0.0000016912,0.0000016369,0.0000015640,0.0000015015, -0.0000014715,0.0000014716,0.0000014793,0.0000014959,0.0000015175, -0.0000015344,0.0000015457,0.0000015466,0.0000015444,0.0000015441, -0.0000015467,0.0000015513,0.0000015638,0.0000015739,0.0000015763, -0.0000015629,0.0000015241,0.0000014831,0.0000014948,0.0000015477, -0.0000015612,0.0000015824,0.0000016234,0.0000016118,0.0000015778, -0.0000015601,0.0000015597,0.0000015611,0.0000015640,0.0000015704, -0.0000015750,0.0000015777,0.0000015789,0.0000015795,0.0000015813, -0.0000015846,0.0000015904,0.0000015940,0.0000015943,0.0000015927, -0.0000015920,0.0000015998,0.0000016153,0.0000016115,0.0000015667, -0.0000015560,0.0000015987,0.0000016214,0.0000016164,0.0000016115, -0.0000015821,0.0000015600,0.0000015506,0.0000015502,0.0000015490, -0.0000015446,0.0000015486,0.0000015677,0.0000015853,0.0000015967, -0.0000015990,0.0000015928,0.0000016017,0.0000016235,0.0000016337, -0.0000016458,0.0000016575,0.0000016672,0.0000016761,0.0000016715, -0.0000016499,0.0000016451,0.0000016282,0.0000016373,0.0000016772, -0.0000016838,0.0000016916,0.0000016932,0.0000016846,0.0000016667, -0.0000016570,0.0000016676,0.0000016784,0.0000016712,0.0000016687, -0.0000016768,0.0000016622,0.0000016478,0.0000016511,0.0000016610, -0.0000016525,0.0000016241,0.0000015992,0.0000015820,0.0000015833, -0.0000015989,0.0000016222,0.0000016310,0.0000016323,0.0000016728, -0.0000017288,0.0000017460,0.0000017338,0.0000017047,0.0000016726, -0.0000016600,0.0000016684,0.0000016780,0.0000016845,0.0000016967, -0.0000017123,0.0000017295,0.0000017500,0.0000017686,0.0000017780, -0.0000017735,0.0000017532,0.0000017299,0.0000017197,0.0000017168, -0.0000017102,0.0000017012,0.0000016971,0.0000016986,0.0000017018, -0.0000017080,0.0000017256,0.0000017371,0.0000017649,0.0000018078, -0.0000018084,0.0000017950,0.0000017994,0.0000017722,0.0000017598, -0.0000017701,0.0000017679,0.0000017904,0.0000017890,0.0000017369, -0.0000017319,0.0000017291,0.0000017403,0.0000017666,0.0000018020, -0.0000018386,0.0000018543,0.0000018830,0.0000019374,0.0000019665, -0.0000019500,0.0000019071,0.0000018834,0.0000018720,0.0000018570, -0.0000018408,0.0000018339,0.0000018436,0.0000018683,0.0000018996, -0.0000019303,0.0000019466,0.0000019452,0.0000019278,0.0000019060, -0.0000018950,0.0000018835,0.0000018588,0.0000018374,0.0000018368, -0.0000018536,0.0000018784,0.0000019072,0.0000019246,0.0000019178, -0.0000018969,0.0000018918,0.0000019028,0.0000019165,0.0000019257, -0.0000019219,0.0000019184,0.0000019076,0.0000019005,0.0000018853, -0.0000018721,0.0000018729,0.0000018918,0.0000018918,0.0000018372, -0.0000017379,0.0000016849,0.0000016792,0.0000016759,0.0000016791, -0.0000016773,0.0000016476,0.0000016346,0.0000016430,0.0000016528, -0.0000016703,0.0000016821,0.0000016989,0.0000017230,0.0000017407, -0.0000017131,0.0000016821,0.0000016664,0.0000016451,0.0000016192, -0.0000015852,0.0000015613,0.0000015438,0.0000015311,0.0000015280, -0.0000015014,0.0000014683,0.0000014587,0.0000014523,0.0000014495, -0.0000014519,0.0000014551,0.0000014585,0.0000014614,0.0000014619, -0.0000014618,0.0000014621,0.0000014639,0.0000014682,0.0000014733, -0.0000014747,0.0000014752,0.0000014760,0.0000014772,0.0000014789, -0.0000014802,0.0000014830,0.0000014864,0.0000014886,0.0000014893, -0.0000014881,0.0000014865,0.0000014859,0.0000014870,0.0000014897, -0.0000014928,0.0000014946,0.0000014941,0.0000014909,0.0000014846, -0.0000014763,0.0000014677,0.0000014594,0.0000014518,0.0000014461, -0.0000014451,0.0000014491,0.0000014557,0.0000014588,0.0000014587, -0.0000014598,0.0000014653,0.0000014731,0.0000014777,0.0000014764, -0.0000014731,0.0000014722,0.0000014745,0.0000014775,0.0000014786, -0.0000014763,0.0000014719,0.0000014685,0.0000014669,0.0000014652, -0.0000014638,0.0000014642,0.0000014668,0.0000014701,0.0000014738, -0.0000014783,0.0000014834,0.0000014866,0.0000014871,0.0000014858, -0.0000014839,0.0000014830,0.0000014856,0.0000014904,0.0000014940, -0.0000014940,0.0000014917,0.0000014883,0.0000014812,0.0000014683, -0.0000014497,0.0000014293,0.0000014181,0.0000014160,0.0000014173, -0.0000014334,0.0000014916,0.0000015794,0.0000016427,0.0000016645, -0.0000016715,0.0000016786,0.0000016849,0.0000016886,0.0000016906, -0.0000016908,0.0000016886,0.0000016861,0.0000016838,0.0000016806, -0.0000016758,0.0000016700,0.0000016645,0.0000016467,0.0000016030, -0.0000015493,0.0000015305,0.0000015523,0.0000015562,0.0000015200, -0.0000014729,0.0000014345,0.0000014057,0.0000013857,0.0000013734, -0.0000013709,0.0000013773,0.0000013977,0.0000014256,0.0000014537, -0.0000014766,0.0000014940,0.0000015034,0.0000015075,0.0000015089, -0.0000015103,0.0000015136,0.0000015186,0.0000015240,0.0000015288, -0.0000015316,0.0000015324,0.0000015323,0.0000015310,0.0000015295, -0.0000015291,0.0000015301,0.0000015329,0.0000015392,0.0000015475, -0.0000015512,0.0000015486,0.0000015418,0.0000015365,0.0000015338, -0.0000015307,0.0000015251,0.0000015314,0.0000015642,0.0000015862, -0.0000015729,0.0000015508,0.0000015451,0.0000015503,0.0000015495, -0.0000015464,0.0000015438,0.0000015431,0.0000015445,0.0000015466, -0.0000015486,0.0000015500,0.0000015523,0.0000015550,0.0000015563, -0.0000015545,0.0000015486,0.0000015417,0.0000015408,0.0000015457, -0.0000015504,0.0000015547,0.0000015618,0.0000015641,0.0000015647, -0.0000015782,0.0000016016,0.0000016143,0.0000016127,0.0000016377, -0.0000017522,0.0000019000,0.0000019303,0.0000018956,0.0000018867, -0.0000018336,0.0000017983,0.0000018207,0.0000019020,0.0000020138, -0.0000020582,0.0000020500,0.0000020330,0.0000020290,0.0000020320, -0.0000020330,0.0000020280,0.0000020278,0.0000020411,0.0000020508, -0.0000020461,0.0000019983,0.0000018918,0.0000017875,0.0000017816, -0.0000018312,0.0000018423,0.0000018418,0.0000018699,0.0000018996, -0.0000018952,0.0000018670,0.0000018425,0.0000018341,0.0000018337, -0.0000018299,0.0000018250,0.0000018227,0.0000018195,0.0000018143, -0.0000018103,0.0000018119,0.0000018259,0.0000018350,0.0000018106, -0.0000017732,0.0000017503,0.0000017107,0.0000016674,0.0000016596, -0.0000016606,0.0000016463,0.0000016304,0.0000016304,0.0000016488, -0.0000016767,0.0000016972,0.0000017055,0.0000017094,0.0000017156, -0.0000017317,0.0000017596,0.0000017843,0.0000017903,0.0000017883, -0.0000017914,0.0000018063,0.0000018264,0.0000018422,0.0000018505, -0.0000018525,0.0000018523,0.0000018521,0.0000018500,0.0000018422, -0.0000018331,0.0000018232,0.0000018026,0.0000017782,0.0000017621, -0.0000017498,0.0000017365,0.0000017132,0.0000016752,0.0000016374, -0.0000016151,0.0000016011,0.0000015833,0.0000015723,0.0000015737, -0.0000015821,0.0000015918,0.0000015975,0.0000015989,0.0000016013, -0.0000016096,0.0000016206,0.0000016289,0.0000016313,0.0000016289, -0.0000016181,0.0000016041,0.0000015989,0.0000015992,0.0000015908, -0.0000015765,0.0000015643,0.0000015518,0.0000015480,0.0000015554, -0.0000015663,0.0000015734,0.0000015750,0.0000015771,0.0000015815, -0.0000015883,0.0000016003,0.0000016192,0.0000016447,0.0000016585, -0.0000017036,0.0000016995,0.0000016494,0.0000015662,0.0000014973, -0.0000014719,0.0000014732,0.0000014796,0.0000014926,0.0000015131, -0.0000015060,0.0000015219,0.0000015350,0.0000015393,0.0000015388, -0.0000015409,0.0000015463,0.0000015573,0.0000015725,0.0000015765, -0.0000015593,0.0000015204,0.0000014826,0.0000014848,0.0000015390, -0.0000015575,0.0000015741,0.0000016174,0.0000016086,0.0000015778, -0.0000015614,0.0000015599,0.0000015594,0.0000015596,0.0000015624, -0.0000015657,0.0000015677,0.0000015676,0.0000015681,0.0000015704, -0.0000015749,0.0000015791,0.0000015812,0.0000015825,0.0000015839, -0.0000015894,0.0000016037,0.0000016129,0.0000015908,0.0000015511, -0.0000015602,0.0000016073,0.0000016164,0.0000016128,0.0000016033, -0.0000015720,0.0000015547,0.0000015486,0.0000015499,0.0000015464, -0.0000015430,0.0000015499,0.0000015673,0.0000015845,0.0000015949, -0.0000015898,0.0000015865,0.0000016056,0.0000016236,0.0000016360, -0.0000016495,0.0000016576,0.0000016682,0.0000016793,0.0000016719, -0.0000016515,0.0000016475,0.0000016295,0.0000016503,0.0000016785, -0.0000016837,0.0000016883,0.0000016870,0.0000016731,0.0000016562, -0.0000016538,0.0000016696,0.0000016760,0.0000016702,0.0000016718, -0.0000016688,0.0000016484,0.0000016450,0.0000016547,0.0000016593, -0.0000016382,0.0000016110,0.0000015881,0.0000015784,0.0000015872, -0.0000016104,0.0000016294,0.0000016311,0.0000016532,0.0000017108, -0.0000017442,0.0000017369,0.0000017086,0.0000016755,0.0000016603, -0.0000016674,0.0000016776,0.0000016852,0.0000016982,0.0000017151, -0.0000017307,0.0000017472,0.0000017651,0.0000017780,0.0000017811, -0.0000017719,0.0000017472,0.0000017271,0.0000017208,0.0000017162, -0.0000017077,0.0000017021,0.0000017012,0.0000017029,0.0000017131, -0.0000017292,0.0000017421,0.0000017829,0.0000018142,0.0000018009, -0.0000017978,0.0000017894,0.0000017587,0.0000017671,0.0000017668, -0.0000017756,0.0000017919,0.0000017431,0.0000017305,0.0000017256, -0.0000017268,0.0000017450,0.0000017662,0.0000017957,0.0000018336, -0.0000018558,0.0000018663,0.0000018958,0.0000019421,0.0000019618, -0.0000019432,0.0000019036,0.0000018788,0.0000018682,0.0000018657, -0.0000018716,0.0000018948,0.0000019287,0.0000019549,0.0000019620, -0.0000019621,0.0000019636,0.0000019489,0.0000019195,0.0000018982, -0.0000018880,0.0000018766,0.0000018684,0.0000018713,0.0000018926, -0.0000019193,0.0000019225,0.0000018980,0.0000018562,0.0000018282, -0.0000018251,0.0000018350,0.0000018497,0.0000018654,0.0000018827, -0.0000018965,0.0000019064,0.0000019099,0.0000019039,0.0000019039, -0.0000019045,0.0000018842,0.0000018117,0.0000017223,0.0000016829, -0.0000016812,0.0000016772,0.0000016758,0.0000016801,0.0000016609, -0.0000016353,0.0000016388,0.0000016468,0.0000016619,0.0000016749, -0.0000016922,0.0000017135,0.0000017394,0.0000017240,0.0000016911, -0.0000016725,0.0000016521,0.0000016257,0.0000015929,0.0000015668, -0.0000015482,0.0000015338,0.0000015291,0.0000015033,0.0000014675, -0.0000014553,0.0000014498,0.0000014486,0.0000014518,0.0000014559, -0.0000014597,0.0000014618,0.0000014612,0.0000014612,0.0000014626, -0.0000014643,0.0000014663,0.0000014689,0.0000014707,0.0000014718, -0.0000014722,0.0000014732,0.0000014753,0.0000014771,0.0000014789, -0.0000014819,0.0000014850,0.0000014872,0.0000014879,0.0000014884, -0.0000014902,0.0000014927,0.0000014945,0.0000014958,0.0000014959, -0.0000014957,0.0000014949,0.0000014928,0.0000014884,0.0000014814, -0.0000014731,0.0000014653,0.0000014592,0.0000014579,0.0000014624, -0.0000014710,0.0000014774,0.0000014816,0.0000014864,0.0000014887, -0.0000014859,0.0000014817,0.0000014776,0.0000014757,0.0000014759, -0.0000014788,0.0000014826,0.0000014851,0.0000014843,0.0000014803, -0.0000014753,0.0000014723,0.0000014719,0.0000014723,0.0000014736, -0.0000014765,0.0000014798,0.0000014825,0.0000014856,0.0000014896, -0.0000014922,0.0000014927,0.0000014917,0.0000014892,0.0000014874, -0.0000014878,0.0000014923,0.0000014968,0.0000014971,0.0000014946, -0.0000014900,0.0000014841,0.0000014738,0.0000014560,0.0000014326, -0.0000014154,0.0000014096,0.0000014102,0.0000014171,0.0000014550, -0.0000015347,0.0000016146,0.0000016550,0.0000016648,0.0000016680, -0.0000016724,0.0000016768,0.0000016798,0.0000016813,0.0000016813, -0.0000016804,0.0000016794,0.0000016781,0.0000016755,0.0000016710, -0.0000016661,0.0000016619,0.0000016397,0.0000015812,0.0000015285, -0.0000015440,0.0000015671,0.0000015531,0.0000015079,0.0000014638, -0.0000014301,0.0000014036,0.0000013832,0.0000013711,0.0000013694, -0.0000013692,0.0000013822,0.0000014035,0.0000014300,0.0000014574, -0.0000014805,0.0000014965,0.0000015042,0.0000015064,0.0000015066, -0.0000015083,0.0000015128,0.0000015188,0.0000015252,0.0000015304, -0.0000015340,0.0000015366,0.0000015376,0.0000015383,0.0000015400, -0.0000015434,0.0000015484,0.0000015514,0.0000015500,0.0000015440, -0.0000015382,0.0000015351,0.0000015328,0.0000015284,0.0000015227, -0.0000015327,0.0000015656,0.0000015847,0.0000015741,0.0000015526, -0.0000015414,0.0000015411,0.0000015402,0.0000015399,0.0000015412, -0.0000015440,0.0000015472,0.0000015501,0.0000015553,0.0000015613, -0.0000015641,0.0000015657,0.0000015670,0.0000015658,0.0000015585, -0.0000015449,0.0000015387,0.0000015435,0.0000015484,0.0000015519, -0.0000015585,0.0000015578,0.0000015555,0.0000015722,0.0000016018, -0.0000016111,0.0000016254,0.0000017377,0.0000018926,0.0000019063, -0.0000018580,0.0000018828,0.0000018526,0.0000018007,0.0000018079, -0.0000018555,0.0000019579,0.0000020477,0.0000020572,0.0000020416, -0.0000020324,0.0000020321,0.0000020322,0.0000020301,0.0000020328, -0.0000020463,0.0000020550,0.0000020476,0.0000020012,0.0000018979, -0.0000017922,0.0000017829,0.0000018345,0.0000018497,0.0000018463, -0.0000018676,0.0000018945,0.0000018895,0.0000018597,0.0000018373, -0.0000018337,0.0000018372,0.0000018344,0.0000018303,0.0000018271, -0.0000018228,0.0000018191,0.0000018153,0.0000018119,0.0000018148, -0.0000018266,0.0000018212,0.0000017874,0.0000017560,0.0000017159, -0.0000016720,0.0000016617,0.0000016598,0.0000016435,0.0000016255, -0.0000016223,0.0000016392,0.0000016688,0.0000016933,0.0000017055, -0.0000017113,0.0000017159,0.0000017265,0.0000017510,0.0000017778, -0.0000017881,0.0000017868,0.0000017886,0.0000018010,0.0000018199, -0.0000018370,0.0000018467,0.0000018489,0.0000018489,0.0000018482, -0.0000018436,0.0000018356,0.0000018283,0.0000018164,0.0000017940, -0.0000017735,0.0000017602,0.0000017488,0.0000017340,0.0000017051, -0.0000016642,0.0000016301,0.0000016124,0.0000015955,0.0000015782, -0.0000015736,0.0000015760,0.0000015824,0.0000015915,0.0000015986, -0.0000016012,0.0000016032,0.0000016087,0.0000016154,0.0000016184, -0.0000016164,0.0000016086,0.0000016009,0.0000016000,0.0000015989, -0.0000015874,0.0000015743,0.0000015629,0.0000015523,0.0000015508, -0.0000015612,0.0000015734,0.0000015811,0.0000015809,0.0000015776, -0.0000015787,0.0000015848,0.0000015966,0.0000016138,0.0000016377, -0.0000016494,0.0000016919,0.0000017055,0.0000016682,0.0000015812, -0.0000015032,0.0000014726,0.0000014781,0.0000014803,0.0000014837, -0.0000014922,0.0000014792,0.0000014870,0.0000015062,0.0000015288, -0.0000015385,0.0000015391,0.0000015451,0.0000015532,0.0000015694, -0.0000015763,0.0000015532,0.0000015107,0.0000014792,0.0000014807, -0.0000015354,0.0000015568,0.0000015688,0.0000016105,0.0000016043, -0.0000015771,0.0000015624,0.0000015587,0.0000015554,0.0000015541, -0.0000015553,0.0000015577,0.0000015583,0.0000015581,0.0000015601, -0.0000015648,0.0000015697,0.0000015727,0.0000015753,0.0000015778, -0.0000015822,0.0000015922,0.0000016048,0.0000016033,0.0000015665, -0.0000015439,0.0000015694,0.0000016088,0.0000016116,0.0000016094, -0.0000015931,0.0000015640,0.0000015502,0.0000015477,0.0000015483, -0.0000015431,0.0000015416,0.0000015499,0.0000015657,0.0000015849, -0.0000015903,0.0000015798,0.0000015854,0.0000016111,0.0000016254, -0.0000016401,0.0000016504,0.0000016571,0.0000016703,0.0000016813, -0.0000016694,0.0000016548,0.0000016463,0.0000016297,0.0000016624, -0.0000016791,0.0000016823,0.0000016850,0.0000016780,0.0000016605, -0.0000016491,0.0000016541,0.0000016716,0.0000016738,0.0000016694, -0.0000016704,0.0000016528,0.0000016410,0.0000016452,0.0000016571, -0.0000016506,0.0000016245,0.0000015984,0.0000015788,0.0000015782, -0.0000015970,0.0000016227,0.0000016288,0.0000016387,0.0000016903, -0.0000017366,0.0000017382,0.0000017123,0.0000016786,0.0000016615, -0.0000016667,0.0000016771,0.0000016852,0.0000016984,0.0000017169, -0.0000017326,0.0000017448,0.0000017585,0.0000017723,0.0000017814, -0.0000017833,0.0000017685,0.0000017423,0.0000017263,0.0000017215, -0.0000017164,0.0000017103,0.0000017079,0.0000017107,0.0000017221, -0.0000017325,0.0000017590,0.0000018025,0.0000018106,0.0000017961, -0.0000017993,0.0000017697,0.0000017599,0.0000017693,0.0000017647, -0.0000017868,0.0000017581,0.0000017270,0.0000017239,0.0000017177, -0.0000017271,0.0000017453,0.0000017578,0.0000017759,0.0000018076, -0.0000018380,0.0000018528,0.0000018630,0.0000018951,0.0000019429, -0.0000019622,0.0000019487,0.0000019193,0.0000019050,0.0000019110, -0.0000019319,0.0000019473,0.0000019411,0.0000019242,0.0000019109, -0.0000019258,0.0000019534,0.0000019590,0.0000019386,0.0000019108, -0.0000018959,0.0000018906,0.0000018933,0.0000019103,0.0000019289, -0.0000019219,0.0000018829,0.0000018266,0.0000017812,0.0000017607, -0.0000017580,0.0000017617,0.0000017688,0.0000017788,0.0000017951, -0.0000018193,0.0000018447,0.0000018638,0.0000018714,0.0000018661, -0.0000018308,0.0000017635,0.0000017009,0.0000016783,0.0000016803, -0.0000016783,0.0000016728,0.0000016783,0.0000016723,0.0000016422, -0.0000016344,0.0000016417,0.0000016533,0.0000016670,0.0000016854, -0.0000017051,0.0000017320,0.0000017299,0.0000017006,0.0000016789, -0.0000016586,0.0000016316,0.0000015999,0.0000015720,0.0000015524, -0.0000015366,0.0000015300,0.0000015053,0.0000014669,0.0000014515, -0.0000014467,0.0000014473,0.0000014520,0.0000014567,0.0000014608, -0.0000014623,0.0000014610,0.0000014613,0.0000014641,0.0000014671, -0.0000014677,0.0000014670,0.0000014691,0.0000014717,0.0000014722, -0.0000014728,0.0000014743,0.0000014766,0.0000014784,0.0000014801, -0.0000014826,0.0000014860,0.0000014912,0.0000015005,0.0000015111, -0.0000015182,0.0000015207,0.0000015200,0.0000015171,0.0000015128, -0.0000015083,0.0000015042,0.0000015005,0.0000014963,0.0000014898, -0.0000014821,0.0000014758,0.0000014748,0.0000014800,0.0000014899, -0.0000014978,0.0000014998,0.0000014980,0.0000014918,0.0000014855, -0.0000014836,0.0000014854,0.0000014875,0.0000014885,0.0000014901, -0.0000014927,0.0000014952,0.0000014961,0.0000014939,0.0000014895, -0.0000014853,0.0000014832,0.0000014830,0.0000014841,0.0000014872, -0.0000014921,0.0000014962,0.0000014995,0.0000015018,0.0000015025, -0.0000015021,0.0000015005,0.0000014968,0.0000014927,0.0000014914, -0.0000014938,0.0000014971,0.0000014983,0.0000014969,0.0000014923, -0.0000014856,0.0000014756,0.0000014579,0.0000014340,0.0000014128, -0.0000014041,0.0000014040,0.0000014078,0.0000014327,0.0000014988, -0.0000015827,0.0000016399,0.0000016613,0.0000016652,0.0000016662, -0.0000016682,0.0000016707,0.0000016726,0.0000016732,0.0000016727, -0.0000016715,0.0000016713,0.0000016720,0.0000016702,0.0000016658, -0.0000016619,0.0000016559,0.0000016169,0.0000015504,0.0000015359, -0.0000015645,0.0000015745,0.0000015436,0.0000014976,0.0000014587, -0.0000014289,0.0000014035,0.0000013832,0.0000013699,0.0000013642, -0.0000013636,0.0000013694,0.0000013832,0.0000014063,0.0000014355, -0.0000014650,0.0000014876,0.0000014995,0.0000015039,0.0000015041, -0.0000015037,0.0000015042,0.0000015090,0.0000015170,0.0000015266, -0.0000015359,0.0000015428,0.0000015476,0.0000015516,0.0000015527, -0.0000015521,0.0000015485,0.0000015408,0.0000015343,0.0000015335, -0.0000015335,0.0000015318,0.0000015254,0.0000015207,0.0000015332, -0.0000015646,0.0000015821,0.0000015779,0.0000015607,0.0000015454, -0.0000015406,0.0000015416,0.0000015466,0.0000015515,0.0000015518, -0.0000015523,0.0000015575,0.0000015616,0.0000015549,0.0000015504, -0.0000015521,0.0000015606,0.0000015677,0.0000015645,0.0000015469, -0.0000015372,0.0000015429,0.0000015467,0.0000015495,0.0000015562, -0.0000015514,0.0000015499,0.0000015765,0.0000016044,0.0000016192, -0.0000017188,0.0000018782,0.0000018887,0.0000018151,0.0000018577, -0.0000018743,0.0000018068,0.0000018007,0.0000018261,0.0000018923, -0.0000020003,0.0000020514,0.0000020497,0.0000020385,0.0000020323, -0.0000020317,0.0000020323,0.0000020392,0.0000020521,0.0000020576, -0.0000020464,0.0000019992,0.0000018996,0.0000017968,0.0000017861, -0.0000018367,0.0000018540,0.0000018507,0.0000018684,0.0000018879, -0.0000018816,0.0000018502,0.0000018321,0.0000018343,0.0000018407, -0.0000018369,0.0000018313,0.0000018266,0.0000018219,0.0000018171, -0.0000018142,0.0000018135,0.0000018139,0.0000018213,0.0000018243, -0.0000017985,0.0000017609,0.0000017181,0.0000016745,0.0000016617, -0.0000016586,0.0000016421,0.0000016229,0.0000016176,0.0000016295, -0.0000016599,0.0000016884,0.0000017035,0.0000017110,0.0000017151, -0.0000017216,0.0000017419,0.0000017697,0.0000017847,0.0000017854, -0.0000017859,0.0000017960,0.0000018141,0.0000018322,0.0000018431, -0.0000018466,0.0000018469,0.0000018442,0.0000018372,0.0000018301, -0.0000018234,0.0000018086,0.0000017865,0.0000017699,0.0000017588, -0.0000017480,0.0000017297,0.0000016948,0.0000016528,0.0000016248, -0.0000016083,0.0000015898,0.0000015781,0.0000015768,0.0000015782, -0.0000015830,0.0000015927,0.0000016021,0.0000016056,0.0000016067, -0.0000016081,0.0000016089,0.0000016074,0.0000016031,0.0000016004, -0.0000016000,0.0000015953,0.0000015836,0.0000015716,0.0000015606, -0.0000015532,0.0000015568,0.0000015698,0.0000015830,0.0000015917, -0.0000015920,0.0000015840,0.0000015788,0.0000015826,0.0000015938, -0.0000016105,0.0000016313,0.0000016445,0.0000016778,0.0000017071, -0.0000016860,0.0000016020,0.0000015158,0.0000014741,0.0000014828, -0.0000014832,0.0000014804,0.0000014782,0.0000014759,0.0000014735, -0.0000014786,0.0000015021,0.0000015320,0.0000015399,0.0000015425, -0.0000015527,0.0000015638,0.0000015755,0.0000015522,0.0000015029, -0.0000014760,0.0000014839,0.0000015394,0.0000015580,0.0000015655, -0.0000016031,0.0000015984,0.0000015746,0.0000015613,0.0000015552, -0.0000015497,0.0000015484,0.0000015497,0.0000015511,0.0000015514, -0.0000015534,0.0000015585,0.0000015651,0.0000015690,0.0000015712, -0.0000015736,0.0000015773,0.0000015835,0.0000015920,0.0000015973, -0.0000015816,0.0000015460,0.0000015412,0.0000015777,0.0000016075, -0.0000016076,0.0000016056,0.0000015812,0.0000015568,0.0000015461, -0.0000015463,0.0000015455,0.0000015390,0.0000015389,0.0000015485, -0.0000015662,0.0000015856,0.0000015829,0.0000015729,0.0000015921, -0.0000016161,0.0000016297,0.0000016434,0.0000016503,0.0000016583, -0.0000016728,0.0000016807,0.0000016665,0.0000016577,0.0000016398, -0.0000016378,0.0000016721,0.0000016778,0.0000016808,0.0000016795, -0.0000016656,0.0000016508,0.0000016441,0.0000016562,0.0000016726, -0.0000016704,0.0000016685,0.0000016593,0.0000016396,0.0000016378, -0.0000016488,0.0000016559,0.0000016389,0.0000016113,0.0000015861, -0.0000015756,0.0000015847,0.0000016111,0.0000016257,0.0000016288, -0.0000016702,0.0000017256,0.0000017371,0.0000017156,0.0000016817, -0.0000016621,0.0000016657,0.0000016765,0.0000016845,0.0000016973, -0.0000017168,0.0000017339,0.0000017440,0.0000017521,0.0000017621, -0.0000017732,0.0000017827,0.0000017835,0.0000017658,0.0000017412, -0.0000017274,0.0000017231,0.0000017203,0.0000017191,0.0000017221, -0.0000017282,0.0000017455,0.0000017865,0.0000018131,0.0000018010, -0.0000017961,0.0000017932,0.0000017577,0.0000017684,0.0000017646, -0.0000017709,0.0000017757,0.0000017269,0.0000017213,0.0000017096, -0.0000017104,0.0000017237,0.0000017372,0.0000017455,0.0000017558, -0.0000017714,0.0000017954,0.0000018246,0.0000018480,0.0000018647, -0.0000018925,0.0000019339,0.0000019592,0.0000019608,0.0000019571, -0.0000019552,0.0000019412,0.0000019086,0.0000018708,0.0000018493, -0.0000018460,0.0000018666,0.0000019117,0.0000019489,0.0000019504, -0.0000019352,0.0000019236,0.0000019231,0.0000019289,0.0000019309, -0.0000019181,0.0000018708,0.0000018092,0.0000017557,0.0000017251, -0.0000017112,0.0000017071,0.0000017076,0.0000017103,0.0000017137, -0.0000017199,0.0000017328,0.0000017501,0.0000017627,0.0000017646, -0.0000017464,0.0000017111,0.0000016828,0.0000016757,0.0000016785, -0.0000016776,0.0000016703,0.0000016727,0.0000016768,0.0000016541, -0.0000016337,0.0000016370,0.0000016459,0.0000016588,0.0000016785, -0.0000016977,0.0000017257,0.0000017319,0.0000017106,0.0000016853, -0.0000016642,0.0000016372,0.0000016060,0.0000015764,0.0000015555, -0.0000015388,0.0000015305,0.0000015073,0.0000014670,0.0000014481, -0.0000014438,0.0000014459,0.0000014516,0.0000014566,0.0000014605, -0.0000014624,0.0000014617,0.0000014637,0.0000014674,0.0000014708, -0.0000014709,0.0000014685,0.0000014702,0.0000014745,0.0000014763, -0.0000014764,0.0000014775,0.0000014801,0.0000014827,0.0000014848, -0.0000014870,0.0000014895,0.0000014981,0.0000015144,0.0000015297, -0.0000015338,0.0000015338,0.0000015309,0.0000015296,0.0000015290, -0.0000015291,0.0000015276,0.0000015246,0.0000015201,0.0000015141, -0.0000015061,0.0000014980,0.0000014943,0.0000014960,0.0000015009, -0.0000015026,0.0000014996,0.0000014941,0.0000014907,0.0000014919, -0.0000014958,0.0000014987,0.0000014997,0.0000014989,0.0000014981, -0.0000014992,0.0000015014,0.0000015035,0.0000015043,0.0000015033, -0.0000015006,0.0000014978,0.0000014963,0.0000014964,0.0000014984, -0.0000015026,0.0000015070,0.0000015098,0.0000015108,0.0000015097, -0.0000015071,0.0000015035,0.0000014983,0.0000014924,0.0000014883, -0.0000014892,0.0000014924,0.0000014949,0.0000014959,0.0000014939, -0.0000014884,0.0000014789,0.0000014607,0.0000014342,0.0000014108, -0.0000014004,0.0000013989,0.0000014010,0.0000014188,0.0000014722, -0.0000015515,0.0000016184,0.0000016534,0.0000016646,0.0000016666, -0.0000016672,0.0000016682,0.0000016691,0.0000016694,0.0000016679, -0.0000016640,0.0000016628,0.0000016652,0.0000016679,0.0000016651, -0.0000016609,0.0000016568,0.0000016417,0.0000015829,0.0000015331, -0.0000015457,0.0000015772,0.0000015732,0.0000015340,0.0000014906, -0.0000014570,0.0000014305,0.0000014058,0.0000013842,0.0000013695, -0.0000013621,0.0000013601,0.0000013594,0.0000013695,0.0000013885, -0.0000014158,0.0000014468,0.0000014757,0.0000014957,0.0000015032, -0.0000015018,0.0000014975,0.0000014950,0.0000014982,0.0000015094, -0.0000015248,0.0000015404,0.0000015507,0.0000015534,0.0000015516, -0.0000015445,0.0000015336,0.0000015236,0.0000015223,0.0000015280, -0.0000015321,0.0000015304,0.0000015228,0.0000015201,0.0000015318, -0.0000015598,0.0000015809,0.0000015813,0.0000015740,0.0000015642, -0.0000015615,0.0000015642,0.0000015641,0.0000015559,0.0000015519, -0.0000015547,0.0000015479,0.0000015281,0.0000015179,0.0000015186, -0.0000015276,0.0000015466,0.0000015660,0.0000015671,0.0000015464, -0.0000015359,0.0000015430,0.0000015439,0.0000015481,0.0000015530, -0.0000015460,0.0000015525,0.0000015871,0.0000016144,0.0000016944, -0.0000018534,0.0000018843,0.0000017860,0.0000018079,0.0000018782, -0.0000018322,0.0000017999,0.0000018134,0.0000018424,0.0000019275, -0.0000020226,0.0000020497,0.0000020464,0.0000020394,0.0000020366, -0.0000020379,0.0000020464,0.0000020578,0.0000020588,0.0000020409, -0.0000019922,0.0000018937,0.0000017931,0.0000017863,0.0000018399, -0.0000018566,0.0000018531,0.0000018690,0.0000018850,0.0000018726, -0.0000018412,0.0000018278,0.0000018325,0.0000018374,0.0000018325, -0.0000018267,0.0000018194,0.0000018083,0.0000017976,0.0000017967, -0.0000018051,0.0000018131,0.0000018193,0.0000018226,0.0000018032, -0.0000017635,0.0000017169,0.0000016744,0.0000016615,0.0000016581, -0.0000016421,0.0000016223,0.0000016126,0.0000016211,0.0000016496, -0.0000016801,0.0000016985,0.0000017081,0.0000017128,0.0000017167, -0.0000017321,0.0000017595,0.0000017797,0.0000017833,0.0000017840, -0.0000017924,0.0000018092,0.0000018271,0.0000018393,0.0000018441, -0.0000018440,0.0000018389,0.0000018315,0.0000018259,0.0000018180, -0.0000018006,0.0000017809,0.0000017678,0.0000017580,0.0000017464, -0.0000017226,0.0000016821,0.0000016431,0.0000016205,0.0000016026, -0.0000015849,0.0000015775,0.0000015775,0.0000015795,0.0000015852, -0.0000015961,0.0000016056,0.0000016085,0.0000016083,0.0000016066, -0.0000016050,0.0000016026,0.0000016008,0.0000015974,0.0000015894, -0.0000015792,0.0000015684,0.0000015598,0.0000015577,0.0000015659, -0.0000015805,0.0000015934,0.0000016013,0.0000016025,0.0000015952, -0.0000015846,0.0000015835,0.0000015924,0.0000016085,0.0000016266, -0.0000016417,0.0000016660,0.0000017046,0.0000016988,0.0000016225, -0.0000015330,0.0000014758,0.0000014863,0.0000014885,0.0000014859, -0.0000014808,0.0000014874,0.0000014790,0.0000014748,0.0000014816, -0.0000015086,0.0000015386,0.0000015409,0.0000015499,0.0000015591, -0.0000015720,0.0000015593,0.0000015074,0.0000014794,0.0000014963, -0.0000015484,0.0000015590,0.0000015639,0.0000015951,0.0000015908, -0.0000015697,0.0000015571,0.0000015500,0.0000015444,0.0000015439, -0.0000015452,0.0000015460,0.0000015487,0.0000015541,0.0000015615, -0.0000015672,0.0000015696,0.0000015710,0.0000015739,0.0000015773, -0.0000015798,0.0000015836,0.0000015804,0.0000015533,0.0000015331, -0.0000015430,0.0000015850,0.0000016054,0.0000016055,0.0000015996, -0.0000015686,0.0000015492,0.0000015422,0.0000015442,0.0000015405, -0.0000015340,0.0000015363,0.0000015480,0.0000015706,0.0000015838, -0.0000015722,0.0000015735,0.0000016016,0.0000016214,0.0000016353, -0.0000016450,0.0000016518,0.0000016608,0.0000016755,0.0000016778, -0.0000016647,0.0000016557,0.0000016340,0.0000016521,0.0000016760, -0.0000016770,0.0000016774,0.0000016689,0.0000016560,0.0000016432, -0.0000016420,0.0000016615,0.0000016711,0.0000016672,0.0000016631, -0.0000016421,0.0000016333,0.0000016384,0.0000016535,0.0000016503, -0.0000016260,0.0000015977,0.0000015774,0.0000015768,0.0000015971, -0.0000016206,0.0000016263,0.0000016529,0.0000017110,0.0000017332, -0.0000017191,0.0000016845,0.0000016627,0.0000016651,0.0000016758, -0.0000016832,0.0000016953,0.0000017147,0.0000017328,0.0000017434, -0.0000017489,0.0000017535,0.0000017610,0.0000017725,0.0000017841, -0.0000017844,0.0000017679,0.0000017466,0.0000017335,0.0000017293, -0.0000017289,0.0000017316,0.0000017445,0.0000017768,0.0000018071, -0.0000018075,0.0000017929,0.0000017979,0.0000017754,0.0000017577, -0.0000017699,0.0000017632,0.0000017759,0.0000017391,0.0000017175, -0.0000017081,0.0000016988,0.0000017017,0.0000017123,0.0000017226, -0.0000017302,0.0000017369,0.0000017457,0.0000017588,0.0000017805, -0.0000018141,0.0000018486,0.0000018688,0.0000018848,0.0000019146, -0.0000019392,0.0000019380,0.0000019122,0.0000018760,0.0000018501, -0.0000018384,0.0000018337,0.0000018287,0.0000018332,0.0000018622, -0.0000019066,0.0000019365,0.0000019405,0.0000019410,0.0000019383, -0.0000019302,0.0000019072,0.0000018621,0.0000017998,0.0000017442, -0.0000017091,0.0000016885,0.0000016778,0.0000016744,0.0000016751, -0.0000016772,0.0000016789,0.0000016807,0.0000016836,0.0000016870, -0.0000016885,0.0000016860,0.0000016792,0.0000016747,0.0000016753, -0.0000016767,0.0000016757,0.0000016683,0.0000016675,0.0000016752, -0.0000016627,0.0000016369,0.0000016333,0.0000016401,0.0000016508, -0.0000016707,0.0000016920,0.0000017207,0.0000017354,0.0000017181, -0.0000016912,0.0000016686,0.0000016420,0.0000016114,0.0000015805, -0.0000015580,0.0000015404,0.0000015306,0.0000015092,0.0000014683, -0.0000014462,0.0000014417,0.0000014443,0.0000014501,0.0000014552, -0.0000014595,0.0000014627,0.0000014650,0.0000014671,0.0000014701, -0.0000014727,0.0000014725,0.0000014706,0.0000014718,0.0000014755, -0.0000014783,0.0000014792,0.0000014803,0.0000014832,0.0000014871, -0.0000014908,0.0000014937,0.0000014958,0.0000015044,0.0000015197, -0.0000015309,0.0000015310,0.0000015236,0.0000015158,0.0000015155, -0.0000015212,0.0000015284,0.0000015329,0.0000015338,0.0000015328, -0.0000015281,0.0000015197,0.0000015090,0.0000014998,0.0000014961, -0.0000014957,0.0000014961,0.0000014965,0.0000014986,0.0000015024, -0.0000015063,0.0000015084,0.0000015055,0.0000015027,0.0000014990, -0.0000014975,0.0000014988,0.0000015035,0.0000015069,0.0000015096, -0.0000015097,0.0000015089,0.0000015078,0.0000015066,0.0000015060, -0.0000015068,0.0000015099,0.0000015135,0.0000015162,0.0000015171, -0.0000015155,0.0000015117,0.0000015063,0.0000014995,0.0000014924, -0.0000014869,0.0000014846,0.0000014876,0.0000014924,0.0000014963, -0.0000014972,0.0000014942,0.0000014851,0.0000014644,0.0000014338, -0.0000014100,0.0000013986,0.0000013968,0.0000013976,0.0000014100, -0.0000014531,0.0000015248,0.0000015950,0.0000016406,0.0000016609, -0.0000016665,0.0000016671,0.0000016674,0.0000016679,0.0000016676, -0.0000016631,0.0000016550,0.0000016525,0.0000016569,0.0000016635, -0.0000016630,0.0000016567,0.0000016557,0.0000016506,0.0000016136, -0.0000015434,0.0000015252,0.0000015643,0.0000015821,0.0000015674, -0.0000015250,0.0000014853,0.0000014577,0.0000014343,0.0000014094, -0.0000013854,0.0000013678,0.0000013593,0.0000013583,0.0000013580, -0.0000013633,0.0000013771,0.0000014005,0.0000014321,0.0000014645, -0.0000014898,0.0000015016,0.0000015012,0.0000014940,0.0000014889, -0.0000014922,0.0000015089,0.0000015304,0.0000015443,0.0000015453, -0.0000015377,0.0000015262,0.0000015147,0.0000015091,0.0000015126, -0.0000015225,0.0000015306,0.0000015291,0.0000015218,0.0000015191, -0.0000015264,0.0000015482,0.0000015710,0.0000015807,0.0000015803, -0.0000015794,0.0000015775,0.0000015699,0.0000015574,0.0000015512, -0.0000015486,0.0000015287,0.0000015028,0.0000014955,0.0000014972, -0.0000015016,0.0000015119,0.0000015349,0.0000015634,0.0000015654, -0.0000015437,0.0000015371,0.0000015422,0.0000015413,0.0000015476, -0.0000015503,0.0000015450,0.0000015648,0.0000016029,0.0000016667, -0.0000018158,0.0000018872,0.0000017899,0.0000017512,0.0000018433, -0.0000018585,0.0000018110,0.0000018052,0.0000018186,0.0000018589, -0.0000019573,0.0000020334,0.0000020470,0.0000020460,0.0000020441, -0.0000020455,0.0000020533,0.0000020591,0.0000020548,0.0000020316, -0.0000019799,0.0000018805,0.0000017837,0.0000017873,0.0000018463, -0.0000018583,0.0000018530,0.0000018688,0.0000018796,0.0000018633, -0.0000018326,0.0000018209,0.0000018237,0.0000018257,0.0000018184, -0.0000018069,0.0000017940,0.0000017816,0.0000017726,0.0000017749, -0.0000017911,0.0000018092,0.0000018191,0.0000018230,0.0000018052, -0.0000017621,0.0000017130,0.0000016738,0.0000016624,0.0000016590, -0.0000016442,0.0000016251,0.0000016126,0.0000016146,0.0000016356, -0.0000016656,0.0000016892,0.0000017028,0.0000017092,0.0000017115, -0.0000017216,0.0000017477,0.0000017732,0.0000017815,0.0000017822, -0.0000017893,0.0000018043,0.0000018218,0.0000018349,0.0000018402, -0.0000018389,0.0000018328,0.0000018270,0.0000018221,0.0000018116, -0.0000017934,0.0000017775,0.0000017664,0.0000017568,0.0000017428, -0.0000017119,0.0000016691,0.0000016357,0.0000016152,0.0000015952, -0.0000015789,0.0000015747,0.0000015776,0.0000015827,0.0000015895, -0.0000015984,0.0000016052,0.0000016073,0.0000016064,0.0000016046, -0.0000016021,0.0000015982,0.0000015912,0.0000015828,0.0000015744, -0.0000015661,0.0000015616,0.0000015669,0.0000015791,0.0000015940, -0.0000016060,0.0000016117,0.0000016112,0.0000016048,0.0000015943, -0.0000015898,0.0000015941,0.0000016079,0.0000016240,0.0000016400, -0.0000016573,0.0000016999,0.0000017040,0.0000016389,0.0000015508, -0.0000014776,0.0000014887,0.0000014954,0.0000014962,0.0000014939, -0.0000015275,0.0000015054,0.0000014834,0.0000014770,0.0000014885, -0.0000015229,0.0000015406,0.0000015442,0.0000015583,0.0000015661, -0.0000015677,0.0000015317,0.0000015052,0.0000015250,0.0000015592, -0.0000015583,0.0000015632,0.0000015857,0.0000015814,0.0000015617, -0.0000015515,0.0000015459,0.0000015409,0.0000015403,0.0000015413, -0.0000015437,0.0000015504,0.0000015586,0.0000015651,0.0000015684, -0.0000015699,0.0000015710,0.0000015711,0.0000015690,0.0000015686, -0.0000015683,0.0000015516,0.0000015290,0.0000015260,0.0000015510, -0.0000015905,0.0000016024,0.0000016023,0.0000015854,0.0000015555, -0.0000015410,0.0000015389,0.0000015403,0.0000015342,0.0000015299, -0.0000015341,0.0000015528,0.0000015764,0.0000015760,0.0000015652, -0.0000015836,0.0000016109,0.0000016282,0.0000016392,0.0000016475, -0.0000016550,0.0000016647,0.0000016773,0.0000016720,0.0000016635, -0.0000016472,0.0000016357,0.0000016653,0.0000016753,0.0000016751, -0.0000016697,0.0000016607,0.0000016477,0.0000016367,0.0000016445, -0.0000016659,0.0000016671,0.0000016636,0.0000016478,0.0000016308, -0.0000016301,0.0000016442,0.0000016547,0.0000016404,0.0000016114, -0.0000015858,0.0000015767,0.0000015850,0.0000016119,0.0000016243, -0.0000016408,0.0000016947,0.0000017319,0.0000017221,0.0000016869, -0.0000016632,0.0000016648,0.0000016752,0.0000016816,0.0000016924, -0.0000017110,0.0000017293,0.0000017411,0.0000017470,0.0000017501, -0.0000017531,0.0000017599,0.0000017726,0.0000017848,0.0000017863, -0.0000017776,0.0000017638,0.0000017545,0.0000017530,0.0000017616, -0.0000017820,0.0000018024,0.0000018059,0.0000017932,0.0000017909, -0.0000017927,0.0000017598,0.0000017661,0.0000017648,0.0000017666, -0.0000017658,0.0000017177,0.0000017121,0.0000016967,0.0000016907, -0.0000016901,0.0000016932,0.0000017008,0.0000017080,0.0000017141, -0.0000017227,0.0000017349,0.0000017515,0.0000017752,0.0000018138, -0.0000018548,0.0000018709,0.0000018745,0.0000018818,0.0000018802, -0.0000018663,0.0000018525,0.0000018441,0.0000018370,0.0000018326, -0.0000018285,0.0000018273,0.0000018349,0.0000018588,0.0000018883, -0.0000019082,0.0000019149,0.0000019106,0.0000018901,0.0000018499, -0.0000017935,0.0000017395,0.0000017015,0.0000016767,0.0000016631, -0.0000016577,0.0000016569,0.0000016582,0.0000016605,0.0000016629, -0.0000016652,0.0000016672,0.0000016690,0.0000016704,0.0000016719, -0.0000016730,0.0000016743,0.0000016752,0.0000016732,0.0000016663, -0.0000016652,0.0000016736,0.0000016656,0.0000016399,0.0000016325, -0.0000016367,0.0000016453,0.0000016634,0.0000016861,0.0000017160, -0.0000017377,0.0000017243,0.0000016960,0.0000016724,0.0000016462, -0.0000016158,0.0000015841,0.0000015603,0.0000015417,0.0000015307, -0.0000015114,0.0000014709,0.0000014462,0.0000014410,0.0000014429, -0.0000014479,0.0000014532,0.0000014584,0.0000014642,0.0000014686, -0.0000014705,0.0000014713,0.0000014729,0.0000014734,0.0000014728, -0.0000014735,0.0000014755,0.0000014772,0.0000014789,0.0000014811, -0.0000014847,0.0000014895,0.0000014949,0.0000014995,0.0000015033, -0.0000015110,0.0000015218,0.0000015251,0.0000015182,0.0000015056, -0.0000014959,0.0000014928,0.0000014968,0.0000015084,0.0000015230, -0.0000015330,0.0000015353,0.0000015321,0.0000015239,0.0000015120, -0.0000015010,0.0000014954,0.0000014954,0.0000014988,0.0000015048, -0.0000015109,0.0000015142,0.0000015145,0.0000015083,0.0000014975, -0.0000014867,0.0000014785,0.0000014752,0.0000014778,0.0000014872, -0.0000014986,0.0000015083,0.0000015143,0.0000015168,0.0000015188, -0.0000015192,0.0000015198,0.0000015206,0.0000015214,0.0000015225, -0.0000015235,0.0000015238,0.0000015223,0.0000015182,0.0000015117, -0.0000015033,0.0000014950,0.0000014888,0.0000014866,0.0000014884, -0.0000014939,0.0000014999,0.0000015025,0.0000015005,0.0000014898, -0.0000014644,0.0000014314,0.0000014088,0.0000013999,0.0000013977, -0.0000013984,0.0000014071,0.0000014430,0.0000015075,0.0000015776, -0.0000016290,0.0000016546,0.0000016626,0.0000016642,0.0000016656, -0.0000016667,0.0000016652,0.0000016554,0.0000016435,0.0000016415, -0.0000016482,0.0000016574,0.0000016578,0.0000016501,0.0000016495, -0.0000016492,0.0000016340,0.0000015700,0.0000015222,0.0000015405, -0.0000015822,0.0000015886,0.0000015569,0.0000015144,0.0000014820, -0.0000014605,0.0000014384,0.0000014113,0.0000013846,0.0000013662, -0.0000013582,0.0000013581,0.0000013608,0.0000013654,0.0000013737, -0.0000013924,0.0000014226,0.0000014578,0.0000014880,0.0000015016, -0.0000014992,0.0000014879,0.0000014861,0.0000014975,0.0000015183, -0.0000015293,0.0000015285,0.0000015210,0.0000015120,0.0000015034, -0.0000015011,0.0000015052,0.0000015159,0.0000015259,0.0000015276, -0.0000015228,0.0000015188,0.0000015208,0.0000015320,0.0000015489, -0.0000015629,0.0000015690,0.0000015695,0.0000015646,0.0000015552, -0.0000015471,0.0000015349,0.0000015098,0.0000014911,0.0000014911, -0.0000014943,0.0000014974,0.0000014993,0.0000015061,0.0000015306, -0.0000015619,0.0000015628,0.0000015403,0.0000015369,0.0000015403, -0.0000015388,0.0000015477,0.0000015464,0.0000015495,0.0000015828, -0.0000016394,0.0000017729,0.0000018929,0.0000018225,0.0000017122, -0.0000017778,0.0000018592,0.0000018335,0.0000018018,0.0000018090, -0.0000018197,0.0000018764,0.0000019760,0.0000020360,0.0000020464, -0.0000020479,0.0000020523,0.0000020577,0.0000020583,0.0000020455, -0.0000020166,0.0000019613,0.0000018637,0.0000017833,0.0000017988, -0.0000018517,0.0000018575,0.0000018541,0.0000018705,0.0000018760, -0.0000018548,0.0000018251,0.0000018101,0.0000018074,0.0000018020, -0.0000017904,0.0000017783,0.0000017704,0.0000017649,0.0000017609, -0.0000017633,0.0000017820,0.0000018061,0.0000018198,0.0000018223, -0.0000018021,0.0000017575,0.0000017110,0.0000016751,0.0000016635, -0.0000016608,0.0000016493,0.0000016326,0.0000016176,0.0000016126, -0.0000016209,0.0000016462,0.0000016760,0.0000016959,0.0000017045, -0.0000017065,0.0000017129,0.0000017361,0.0000017649,0.0000017781, -0.0000017803,0.0000017858,0.0000017991,0.0000018164,0.0000018301, -0.0000018351,0.0000018330,0.0000018276,0.0000018232,0.0000018174, -0.0000018049,0.0000017880,0.0000017750,0.0000017647,0.0000017550, -0.0000017362,0.0000016988,0.0000016569,0.0000016286,0.0000016080, -0.0000015866,0.0000015734,0.0000015739,0.0000015810,0.0000015872, -0.0000015915,0.0000015949,0.0000015982,0.0000015993,0.0000015986, -0.0000015953,0.0000015901,0.0000015836,0.0000015768,0.0000015701, -0.0000015664,0.0000015701,0.0000015817,0.0000015974,0.0000016119, -0.0000016224,0.0000016261,0.0000016231,0.0000016134,0.0000016024, -0.0000015977,0.0000015992,0.0000016093,0.0000016232,0.0000016392, -0.0000016515,0.0000016953,0.0000017054,0.0000016507,0.0000015664, -0.0000014802,0.0000014902,0.0000015054,0.0000015209,0.0000015310, -0.0000015926,0.0000015651,0.0000015172,0.0000014812,0.0000014795, -0.0000015019,0.0000015386,0.0000015409,0.0000015558,0.0000015611, -0.0000015689,0.0000015597,0.0000015446,0.0000015551,0.0000015642, -0.0000015553,0.0000015614,0.0000015758,0.0000015714,0.0000015530, -0.0000015480,0.0000015434,0.0000015380,0.0000015373,0.0000015395, -0.0000015463,0.0000015559,0.0000015627,0.0000015663,0.0000015672, -0.0000015660,0.0000015619,0.0000015573,0.0000015553,0.0000015547, -0.0000015429,0.0000015223,0.0000015170,0.0000015292,0.0000015630, -0.0000015934,0.0000016000,0.0000015954,0.0000015655,0.0000015424, -0.0000015337,0.0000015359,0.0000015352,0.0000015286,0.0000015269, -0.0000015363,0.0000015634,0.0000015754,0.0000015647,0.0000015695, -0.0000015971,0.0000016201,0.0000016337,0.0000016420,0.0000016525, -0.0000016600,0.0000016692,0.0000016746,0.0000016668,0.0000016607, -0.0000016382,0.0000016461,0.0000016727,0.0000016732,0.0000016688, -0.0000016632,0.0000016534,0.0000016372,0.0000016320,0.0000016509, -0.0000016664,0.0000016633,0.0000016528,0.0000016314,0.0000016256, -0.0000016328,0.0000016510,0.0000016510,0.0000016261,0.0000015976, -0.0000015798,0.0000015787,0.0000016004,0.0000016202,0.0000016314, -0.0000016789,0.0000017259,0.0000017241,0.0000016893,0.0000016634, -0.0000016643,0.0000016743,0.0000016796,0.0000016890,0.0000017062, -0.0000017228,0.0000017346,0.0000017426,0.0000017477,0.0000017508, -0.0000017537,0.0000017598,0.0000017714,0.0000017836,0.0000017896, -0.0000017903,0.0000017894,0.0000017901,0.0000017936,0.0000018002, -0.0000018019,0.0000017920,0.0000017859,0.0000017920,0.0000017774, -0.0000017577,0.0000017704,0.0000017621,0.0000017707,0.0000017350, -0.0000017124,0.0000017056,0.0000016911,0.0000016849,0.0000016820, -0.0000016803,0.0000016807,0.0000016840,0.0000016909,0.0000016987, -0.0000017103,0.0000017289,0.0000017514,0.0000017809,0.0000018263, -0.0000018647,0.0000018717,0.0000018706,0.0000018681,0.0000018595, -0.0000018420,0.0000018190,0.0000018055,0.0000018047,0.0000018109, -0.0000018184,0.0000018245,0.0000018345,0.0000018498,0.0000018642, -0.0000018693,0.0000018619,0.0000018315,0.0000017844,0.0000017363, -0.0000016981,0.0000016705,0.0000016553,0.0000016495,0.0000016487, -0.0000016504,0.0000016533,0.0000016562,0.0000016586,0.0000016609, -0.0000016633,0.0000016660,0.0000016689,0.0000016713,0.0000016729, -0.0000016733,0.0000016709,0.0000016646,0.0000016652,0.0000016735, -0.0000016665,0.0000016419,0.0000016329,0.0000016361,0.0000016434, -0.0000016589,0.0000016806,0.0000017113,0.0000017389,0.0000017294, -0.0000016996,0.0000016757,0.0000016502,0.0000016194,0.0000015872, -0.0000015627,0.0000015433,0.0000015312,0.0000015139,0.0000014746, -0.0000014476,0.0000014412,0.0000014419,0.0000014457,0.0000014512, -0.0000014576,0.0000014649,0.0000014706,0.0000014729,0.0000014729, -0.0000014738,0.0000014759,0.0000014774,0.0000014782,0.0000014782, -0.0000014772,0.0000014776,0.0000014798,0.0000014836,0.0000014892, -0.0000014959,0.0000015023,0.0000015084,0.0000015158,0.0000015218, -0.0000015204,0.0000015103,0.0000015007,0.0000014963,0.0000014943, -0.0000014913,0.0000014916,0.0000014980,0.0000015125,0.0000015271, -0.0000015330,0.0000015299,0.0000015203,0.0000015095,0.0000015032, -0.0000015030,0.0000015071,0.0000015141,0.0000015181,0.0000015144, -0.0000015003,0.0000014824,0.0000014687,0.0000014594,0.0000014524, -0.0000014476,0.0000014475,0.0000014552,0.0000014683,0.0000014842, -0.0000014994,0.0000015112,0.0000015197,0.0000015249,0.0000015281, -0.0000015307,0.0000015307,0.0000015300,0.0000015286,0.0000015263, -0.0000015240,0.0000015187,0.0000015115,0.0000015031,0.0000014960, -0.0000014911,0.0000014900,0.0000014927,0.0000014977,0.0000015029, -0.0000015059,0.0000015021,0.0000014872,0.0000014581,0.0000014254, -0.0000014070,0.0000014035,0.0000014027,0.0000014025,0.0000014119, -0.0000014434,0.0000015042,0.0000015730,0.0000016250,0.0000016508, -0.0000016581,0.0000016605,0.0000016642,0.0000016661,0.0000016611, -0.0000016435,0.0000016306,0.0000016311,0.0000016411,0.0000016506, -0.0000016493,0.0000016396,0.0000016400,0.0000016475,0.0000016445, -0.0000016013,0.0000015284,0.0000015193,0.0000015660,0.0000015917, -0.0000015808,0.0000015431,0.0000015048,0.0000014806,0.0000014628, -0.0000014397,0.0000014105,0.0000013828,0.0000013647,0.0000013583, -0.0000013593,0.0000013644,0.0000013690,0.0000013759,0.0000013932, -0.0000014237,0.0000014624,0.0000014951,0.0000015022,0.0000014897, -0.0000014841,0.0000014932,0.0000015093,0.0000015172,0.0000015169, -0.0000015126,0.0000015052,0.0000014990,0.0000014980,0.0000014999, -0.0000015064,0.0000015161,0.0000015237,0.0000015240,0.0000015205, -0.0000015179,0.0000015197,0.0000015257,0.0000015310,0.0000015340, -0.0000015345,0.0000015318,0.0000015257,0.0000015140,0.0000014992, -0.0000014933,0.0000014973,0.0000015029,0.0000015054,0.0000015046, -0.0000015018,0.0000015055,0.0000015316,0.0000015633,0.0000015577, -0.0000015363,0.0000015379,0.0000015372,0.0000015383,0.0000015466, -0.0000015465,0.0000015621,0.0000016136,0.0000017306,0.0000018857, -0.0000018593,0.0000017132,0.0000017127,0.0000018147,0.0000018437, -0.0000018088,0.0000018006,0.0000018087,0.0000018238,0.0000018901, -0.0000019818,0.0000020294,0.0000020408,0.0000020472,0.0000020497, -0.0000020445,0.0000020255,0.0000019942,0.0000019331,0.0000018309, -0.0000017715,0.0000018101,0.0000018564,0.0000018545,0.0000018553, -0.0000018701,0.0000018703,0.0000018480,0.0000018192,0.0000018000, -0.0000017907,0.0000017800,0.0000017690,0.0000017633,0.0000017606, -0.0000017558,0.0000017522,0.0000017568,0.0000017788,0.0000018060, -0.0000018204,0.0000018196,0.0000017967,0.0000017548,0.0000017118, -0.0000016776,0.0000016661,0.0000016640,0.0000016561,0.0000016441, -0.0000016295,0.0000016155,0.0000016127,0.0000016262,0.0000016572, -0.0000016849,0.0000016989,0.0000017028,0.0000017065,0.0000017246, -0.0000017538,0.0000017726,0.0000017775,0.0000017819,0.0000017939, -0.0000018113,0.0000018252,0.0000018298,0.0000018274,0.0000018228, -0.0000018188,0.0000018120,0.0000017988,0.0000017842,0.0000017726, -0.0000017631,0.0000017518,0.0000017255,0.0000016840,0.0000016462, -0.0000016212,0.0000015991,0.0000015787,0.0000015732,0.0000015781, -0.0000015846,0.0000015876,0.0000015874,0.0000015869,0.0000015875, -0.0000015874,0.0000015849,0.0000015812,0.0000015771,0.0000015722, -0.0000015691,0.0000015724,0.0000015851,0.0000016029,0.0000016190, -0.0000016307,0.0000016380,0.0000016400,0.0000016370,0.0000016258, -0.0000016106,0.0000016030,0.0000016038,0.0000016116,0.0000016237, -0.0000016390,0.0000016476,0.0000016911,0.0000017062,0.0000016590, -0.0000015785,0.0000014853,0.0000014927,0.0000015210,0.0000015626, -0.0000015916,0.0000016101,0.0000016070,0.0000015737,0.0000015066, -0.0000014776,0.0000014897,0.0000015258,0.0000015409,0.0000015488, -0.0000015588,0.0000015638,0.0000015689,0.0000015677,0.0000015662, -0.0000015603,0.0000015511,0.0000015585,0.0000015679,0.0000015611, -0.0000015477,0.0000015469,0.0000015406,0.0000015359,0.0000015370, -0.0000015427,0.0000015528,0.0000015599,0.0000015622,0.0000015611, -0.0000015560,0.0000015485,0.0000015436,0.0000015435,0.0000015430, -0.0000015321,0.0000015138,0.0000015083,0.0000015161,0.0000015388, -0.0000015746,0.0000015949,0.0000015968,0.0000015747,0.0000015454, -0.0000015312,0.0000015296,0.0000015335,0.0000015289,0.0000015235, -0.0000015243,0.0000015484,0.0000015705,0.0000015654,0.0000015631, -0.0000015843,0.0000016104,0.0000016272,0.0000016360,0.0000016483, -0.0000016605,0.0000016649,0.0000016701,0.0000016672,0.0000016651, -0.0000016523,0.0000016354,0.0000016602,0.0000016720,0.0000016669, -0.0000016636,0.0000016577,0.0000016420,0.0000016280,0.0000016353, -0.0000016608,0.0000016637,0.0000016547,0.0000016354,0.0000016236, -0.0000016239,0.0000016410,0.0000016532,0.0000016406,0.0000016106, -0.0000015881,0.0000015783,0.0000015888,0.0000016131,0.0000016254, -0.0000016645,0.0000017188,0.0000017261,0.0000016913,0.0000016638, -0.0000016640,0.0000016732,0.0000016773,0.0000016853,0.0000016994, -0.0000017126,0.0000017233,0.0000017324,0.0000017404,0.0000017468, -0.0000017514,0.0000017546,0.0000017594,0.0000017681,0.0000017786, -0.0000017874,0.0000017924,0.0000017945,0.0000017941,0.0000017912, -0.0000017847,0.0000017819,0.0000017864,0.0000017870,0.0000017617, -0.0000017635,0.0000017667,0.0000017633,0.0000017663,0.0000017153, -0.0000017121,0.0000017020,0.0000016883,0.0000016814,0.0000016800, -0.0000016796,0.0000016798,0.0000016807,0.0000016809,0.0000016813, -0.0000016881,0.0000017068,0.0000017338,0.0000017617,0.0000017963, -0.0000018392,0.0000018665,0.0000018680,0.0000018563,0.0000018301, -0.0000017984,0.0000017746,0.0000017645,0.0000017644,0.0000017708, -0.0000017814,0.0000017932,0.0000018055,0.0000018165,0.0000018224, -0.0000018217,0.0000018041,0.0000017704,0.0000017314,0.0000016954, -0.0000016681,0.0000016533,0.0000016474,0.0000016471,0.0000016490, -0.0000016525,0.0000016555,0.0000016580,0.0000016604,0.0000016626, -0.0000016644,0.0000016663,0.0000016686,0.0000016702,0.0000016700, -0.0000016673,0.0000016642,0.0000016675,0.0000016736,0.0000016639, -0.0000016429,0.0000016354,0.0000016382,0.0000016445,0.0000016586, -0.0000016785,0.0000017087,0.0000017396,0.0000017336,0.0000017029, -0.0000016781,0.0000016535,0.0000016225,0.0000015898,0.0000015647, -0.0000015447,0.0000015322,0.0000015170,0.0000014792,0.0000014497, -0.0000014416,0.0000014412,0.0000014438,0.0000014497,0.0000014571, -0.0000014644,0.0000014706,0.0000014746,0.0000014769,0.0000014789, -0.0000014826,0.0000014858,0.0000014865,0.0000014858,0.0000014836, -0.0000014806,0.0000014801,0.0000014824,0.0000014876,0.0000014948, -0.0000015028,0.0000015109,0.0000015181,0.0000015211,0.0000015177, -0.0000015102,0.0000015069,0.0000015088,0.0000015107,0.0000015074, -0.0000015009,0.0000014966,0.0000014979,0.0000015061,0.0000015182, -0.0000015257,0.0000015246,0.0000015184,0.0000015133,0.0000015129, -0.0000015157,0.0000015174,0.0000015084,0.0000014861,0.0000014636, -0.0000014539,0.0000014548,0.0000014536,0.0000014511,0.0000014476, -0.0000014443,0.0000014455,0.0000014528,0.0000014624,0.0000014767, -0.0000014931,0.0000015081,0.0000015206,0.0000015294,0.0000015342, -0.0000015354,0.0000015340,0.0000015288,0.0000015223,0.0000015161, -0.0000015102,0.0000015039,0.0000014984,0.0000014940,0.0000014922, -0.0000014928,0.0000014963,0.0000015011,0.0000015051,0.0000015048, -0.0000014962,0.0000014741,0.0000014446,0.0000014176,0.0000014060, -0.0000014066,0.0000014082,0.0000014089,0.0000014181,0.0000014538, -0.0000015149,0.0000015817,0.0000016298,0.0000016508,0.0000016553, -0.0000016584,0.0000016642,0.0000016656,0.0000016514,0.0000016258, -0.0000016173,0.0000016246,0.0000016367,0.0000016430,0.0000016373, -0.0000016263,0.0000016273,0.0000016416,0.0000016469,0.0000016234, -0.0000015392,0.0000015113,0.0000015468,0.0000015856,0.0000015901, -0.0000015671,0.0000015274,0.0000014962,0.0000014787,0.0000014616, -0.0000014368,0.0000014070,0.0000013799,0.0000013626,0.0000013574, -0.0000013626,0.0000013702,0.0000013737,0.0000013812,0.0000014041, -0.0000014413,0.0000014835,0.0000015008,0.0000014897,0.0000014843, -0.0000014941,0.0000015060,0.0000015115,0.0000015118,0.0000015081, -0.0000015017,0.0000014979,0.0000014971,0.0000014975,0.0000014997, -0.0000015047,0.0000015117,0.0000015182,0.0000015199,0.0000015195, -0.0000015188,0.0000015174,0.0000015155,0.0000015139,0.0000015124, -0.0000015096,0.0000015061,0.0000015029,0.0000015040,0.0000015073, -0.0000015094,0.0000015106,0.0000015114,0.0000015097,0.0000015048, -0.0000015082,0.0000015359,0.0000015644,0.0000015511,0.0000015359, -0.0000015374,0.0000015347,0.0000015395,0.0000015472,0.0000015499, -0.0000015883,0.0000016849,0.0000018410,0.0000018848,0.0000017554, -0.0000016882,0.0000017513,0.0000018227,0.0000018217,0.0000017972, -0.0000018010,0.0000018094,0.0000018227,0.0000018920,0.0000019740, -0.0000020124,0.0000020202,0.0000020210,0.0000020123,0.0000019938, -0.0000019636,0.0000018927,0.0000017977,0.0000017772,0.0000018337, -0.0000018603,0.0000018519,0.0000018570,0.0000018692,0.0000018640, -0.0000018409,0.0000018139,0.0000017934,0.0000017810,0.0000017686, -0.0000017605,0.0000017579,0.0000017537,0.0000017471,0.0000017452, -0.0000017554,0.0000017818,0.0000018076,0.0000018187,0.0000018163, -0.0000017929,0.0000017539,0.0000017138,0.0000016812,0.0000016696, -0.0000016674,0.0000016620,0.0000016553,0.0000016456,0.0000016291, -0.0000016122,0.0000016107,0.0000016333,0.0000016677,0.0000016913, -0.0000016992,0.0000017014,0.0000017138,0.0000017416,0.0000017657, -0.0000017744,0.0000017783,0.0000017891,0.0000018063,0.0000018202, -0.0000018239,0.0000018213,0.0000018176,0.0000018141,0.0000018065, -0.0000017935,0.0000017810,0.0000017700,0.0000017612,0.0000017454, -0.0000017117,0.0000016699,0.0000016367,0.0000016127,0.0000015892, -0.0000015748,0.0000015760,0.0000015814,0.0000015827,0.0000015817, -0.0000015804,0.0000015794,0.0000015788,0.0000015775,0.0000015753, -0.0000015729,0.0000015709,0.0000015734,0.0000015864,0.0000016062, -0.0000016253,0.0000016373,0.0000016430,0.0000016459,0.0000016464, -0.0000016449,0.0000016382,0.0000016229,0.0000016084,0.0000016059, -0.0000016126,0.0000016242,0.0000016388,0.0000016455,0.0000016872, -0.0000017067,0.0000016650,0.0000015876,0.0000014924,0.0000014966, -0.0000015402,0.0000015986,0.0000016151,0.0000015857,0.0000015945, -0.0000016009,0.0000015516,0.0000014832,0.0000014812,0.0000015071, -0.0000015401,0.0000015420,0.0000015554,0.0000015555,0.0000015623, -0.0000015653,0.0000015600,0.0000015511,0.0000015489,0.0000015573, -0.0000015617,0.0000015513,0.0000015459,0.0000015456,0.0000015378, -0.0000015361,0.0000015412,0.0000015505,0.0000015571,0.0000015569, -0.0000015519,0.0000015427,0.0000015337,0.0000015310,0.0000015333, -0.0000015334,0.0000015215,0.0000015039,0.0000015000,0.0000015080, -0.0000015225,0.0000015541,0.0000015830,0.0000015913,0.0000015785, -0.0000015487,0.0000015300,0.0000015241,0.0000015286,0.0000015294, -0.0000015227,0.0000015192,0.0000015340,0.0000015626,0.0000015643, -0.0000015588,0.0000015767,0.0000016016,0.0000016200,0.0000016297, -0.0000016422,0.0000016599,0.0000016663,0.0000016663,0.0000016654, -0.0000016624,0.0000016627,0.0000016399,0.0000016420,0.0000016674, -0.0000016668,0.0000016621,0.0000016595,0.0000016470,0.0000016280, -0.0000016234,0.0000016459,0.0000016603,0.0000016556,0.0000016407, -0.0000016242,0.0000016200,0.0000016297,0.0000016510,0.0000016520, -0.0000016243,0.0000015988,0.0000015821,0.0000015816,0.0000016043, -0.0000016212,0.0000016526,0.0000017085,0.0000017236,0.0000016935, -0.0000016643,0.0000016638,0.0000016722,0.0000016752,0.0000016817, -0.0000016919,0.0000017009,0.0000017086,0.0000017165,0.0000017255, -0.0000017353,0.0000017450,0.0000017523,0.0000017568,0.0000017595, -0.0000017634,0.0000017695,0.0000017750,0.0000017775,0.0000017768, -0.0000017739,0.0000017736,0.0000017799,0.0000017859,0.0000017730, -0.0000017567,0.0000017704,0.0000017618,0.0000017672,0.0000017449, -0.0000017109,0.0000017110,0.0000017025,0.0000016895,0.0000016826, -0.0000016826,0.0000016848,0.0000016876,0.0000016889,0.0000016876, -0.0000016827,0.0000016786,0.0000016865,0.0000017176,0.0000017507, -0.0000017765,0.0000018065,0.0000018309,0.0000018328,0.0000018128, -0.0000017846,0.0000017603,0.0000017440,0.0000017369,0.0000017364, -0.0000017385,0.0000017438,0.0000017525,0.0000017638,0.0000017731, -0.0000017759,0.0000017699,0.0000017507,0.0000017226,0.0000016915, -0.0000016664,0.0000016536,0.0000016497,0.0000016497,0.0000016528, -0.0000016560,0.0000016581,0.0000016597,0.0000016614,0.0000016631, -0.0000016644,0.0000016652,0.0000016655,0.0000016654,0.0000016645, -0.0000016631,0.0000016642,0.0000016695,0.0000016709,0.0000016576, -0.0000016436,0.0000016381,0.0000016415,0.0000016474,0.0000016609, -0.0000016803,0.0000017090,0.0000017403,0.0000017365,0.0000017052, -0.0000016794,0.0000016555,0.0000016248,0.0000015922,0.0000015664, -0.0000015459,0.0000015335,0.0000015206,0.0000014844,0.0000014522, -0.0000014420,0.0000014410,0.0000014423,0.0000014486,0.0000014567, -0.0000014629,0.0000014696,0.0000014771,0.0000014840,0.0000014884, -0.0000014915,0.0000014940,0.0000014950,0.0000014951,0.0000014929, -0.0000014871,0.0000014819,0.0000014812,0.0000014847,0.0000014911, -0.0000014999,0.0000015097,0.0000015175,0.0000015195,0.0000015166, -0.0000015141,0.0000015174,0.0000015227,0.0000015245,0.0000015216, -0.0000015158,0.0000015079,0.0000015013,0.0000014994,0.0000015024, -0.0000015100,0.0000015171,0.0000015200,0.0000015196,0.0000015188, -0.0000015163,0.0000015028,0.0000014761,0.0000014524,0.0000014461, -0.0000014500,0.0000014567,0.0000014637,0.0000014681,0.0000014684, -0.0000014652,0.0000014619,0.0000014627,0.0000014662,0.0000014743, -0.0000014875,0.0000015029,0.0000015166,0.0000015281,0.0000015341, -0.0000015345,0.0000015287,0.0000015186,0.0000015089,0.0000015031, -0.0000015003,0.0000014991,0.0000014975,0.0000014959,0.0000014959, -0.0000014971,0.0000014999,0.0000015033,0.0000015027,0.0000014943, -0.0000014754,0.0000014510,0.0000014293,0.0000014140,0.0000014087, -0.0000014101,0.0000014114,0.0000014128,0.0000014271,0.0000014694, -0.0000015347,0.0000015987,0.0000016383,0.0000016518,0.0000016543, -0.0000016587,0.0000016652,0.0000016622,0.0000016316,0.0000016034, -0.0000016048,0.0000016220,0.0000016336,0.0000016346,0.0000016239, -0.0000016128,0.0000016158,0.0000016354,0.0000016475,0.0000016331, -0.0000015535,0.0000015080,0.0000015285,0.0000015728,0.0000015889, -0.0000015791,0.0000015484,0.0000015117,0.0000014886,0.0000014737, -0.0000014556,0.0000014295,0.0000014000,0.0000013742,0.0000013583, -0.0000013590,0.0000013715,0.0000013747,0.0000013758,0.0000013954, -0.0000014322,0.0000014755,0.0000014966,0.0000014896,0.0000014866, -0.0000014973,0.0000015056,0.0000015090,0.0000015092,0.0000015055, -0.0000015003,0.0000014973,0.0000014967,0.0000014970,0.0000014983, -0.0000014995,0.0000015010,0.0000015036,0.0000015077,0.0000015126, -0.0000015160,0.0000015154,0.0000015147,0.0000015137,0.0000015124, -0.0000015115,0.0000015115,0.0000015117,0.0000015110,0.0000015096, -0.0000015076,0.0000015071,0.0000015094,0.0000015105,0.0000015076, -0.0000015113,0.0000015422,0.0000015603,0.0000015438,0.0000015343, -0.0000015354,0.0000015324,0.0000015414,0.0000015465,0.0000015657, -0.0000016382,0.0000017792,0.0000018897,0.0000018131,0.0000017058, -0.0000017138,0.0000017826,0.0000018239,0.0000018032,0.0000017881, -0.0000018020,0.0000018035,0.0000018144,0.0000018780,0.0000019513, -0.0000019839,0.0000019840,0.0000019742,0.0000019624,0.0000019238, -0.0000018353,0.0000017779,0.0000018016,0.0000018570,0.0000018587, -0.0000018502,0.0000018604,0.0000018662,0.0000018543,0.0000018325, -0.0000018068,0.0000017852,0.0000017710,0.0000017607,0.0000017551, -0.0000017501,0.0000017439,0.0000017415,0.0000017443,0.0000017593, -0.0000017863,0.0000018086,0.0000018176,0.0000018146,0.0000017901, -0.0000017534,0.0000017164,0.0000016856,0.0000016732,0.0000016699, -0.0000016655,0.0000016620,0.0000016598,0.0000016501,0.0000016261, -0.0000016043,0.0000016088,0.0000016421,0.0000016773,0.0000016947, -0.0000016985,0.0000017064,0.0000017310,0.0000017585,0.0000017712, -0.0000017754,0.0000017849,0.0000018013,0.0000018141,0.0000018170, -0.0000018151,0.0000018130,0.0000018098,0.0000018011,0.0000017890, -0.0000017778,0.0000017675,0.0000017572,0.0000017347,0.0000016969, -0.0000016576,0.0000016275,0.0000016022,0.0000015810,0.0000015755, -0.0000015790,0.0000015789,0.0000015753,0.0000015742,0.0000015744, -0.0000015748,0.0000015745,0.0000015739,0.0000015725,0.0000015756, -0.0000015872,0.0000016068,0.0000016271,0.0000016414,0.0000016467, -0.0000016469,0.0000016467,0.0000016463,0.0000016453,0.0000016424, -0.0000016348,0.0000016186,0.0000016078,0.0000016115,0.0000016232, -0.0000016378,0.0000016441,0.0000016829,0.0000017081,0.0000016706, -0.0000015954,0.0000015023,0.0000015001,0.0000015580,0.0000016146, -0.0000016004,0.0000015799,0.0000015846,0.0000015924,0.0000015858, -0.0000015084,0.0000014775,0.0000014954,0.0000015346,0.0000015381, -0.0000015494,0.0000015499,0.0000015484,0.0000015508,0.0000015480, -0.0000015459,0.0000015506,0.0000015567,0.0000015530,0.0000015440, -0.0000015455,0.0000015426,0.0000015372,0.0000015412,0.0000015498, -0.0000015554,0.0000015524,0.0000015425,0.0000015307,0.0000015226, -0.0000015223,0.0000015263,0.0000015253,0.0000015117,0.0000014944, -0.0000014935,0.0000015027,0.0000015130,0.0000015376,0.0000015676, -0.0000015815,0.0000015743,0.0000015491,0.0000015289,0.0000015188, -0.0000015219,0.0000015278,0.0000015234,0.0000015162,0.0000015220, -0.0000015527,0.0000015617,0.0000015544,0.0000015705,0.0000015972, -0.0000016135,0.0000016233,0.0000016350,0.0000016557,0.0000016678, -0.0000016662,0.0000016631,0.0000016585,0.0000016616,0.0000016541, -0.0000016345,0.0000016525,0.0000016665,0.0000016618,0.0000016586, -0.0000016505,0.0000016320,0.0000016174,0.0000016318,0.0000016567, -0.0000016564,0.0000016447,0.0000016263,0.0000016187,0.0000016214, -0.0000016417,0.0000016550,0.0000016381,0.0000016092,0.0000015908, -0.0000015828,0.0000015960,0.0000016161,0.0000016427,0.0000016979, -0.0000017198,0.0000016962,0.0000016648,0.0000016629,0.0000016710, -0.0000016738,0.0000016785,0.0000016860,0.0000016918,0.0000016968, -0.0000017015,0.0000017073,0.0000017166,0.0000017301,0.0000017441, -0.0000017544,0.0000017591,0.0000017604,0.0000017612,0.0000017623, -0.0000017641,0.0000017665,0.0000017686,0.0000017734,0.0000017803, -0.0000017774,0.0000017597,0.0000017611,0.0000017705,0.0000017620, -0.0000017693,0.0000017213,0.0000017100,0.0000017111,0.0000017073, -0.0000016985,0.0000016934,0.0000016945,0.0000016980,0.0000016998, -0.0000016987,0.0000016959,0.0000016898,0.0000016797,0.0000016773, -0.0000017005,0.0000017388,0.0000017656,0.0000017844,0.0000017944, -0.0000017913,0.0000017748,0.0000017548,0.0000017372,0.0000017259, -0.0000017223,0.0000017209,0.0000017188,0.0000017183,0.0000017214, -0.0000017280,0.0000017335,0.0000017335,0.0000017250,0.0000017074, -0.0000016846,0.0000016647,0.0000016543,0.0000016523,0.0000016547, -0.0000016585,0.0000016606,0.0000016617,0.0000016624,0.0000016629, -0.0000016628,0.0000016626,0.0000016617,0.0000016608,0.0000016604, -0.0000016615,0.0000016630,0.0000016659,0.0000016681,0.0000016633, -0.0000016511,0.0000016423,0.0000016402,0.0000016437,0.0000016504, -0.0000016647,0.0000016849,0.0000017126,0.0000017433,0.0000017397, -0.0000017067,0.0000016797,0.0000016563,0.0000016258,0.0000015938, -0.0000015681,0.0000015475,0.0000015358,0.0000015248,0.0000014897, -0.0000014547,0.0000014421,0.0000014406,0.0000014415,0.0000014476, -0.0000014557,0.0000014615,0.0000014692,0.0000014805,0.0000014918, -0.0000014982,0.0000014993,0.0000014990,0.0000014982,0.0000014982, -0.0000014976,0.0000014940,0.0000014869,0.0000014823,0.0000014826, -0.0000014869,0.0000014948,0.0000015046,0.0000015121,0.0000015143, -0.0000015149,0.0000015188,0.0000015265,0.0000015312,0.0000015295, -0.0000015244,0.0000015198,0.0000015150,0.0000015084,0.0000015021, -0.0000014990,0.0000014996,0.0000015039,0.0000015096,0.0000015132, -0.0000015117,0.0000014997,0.0000014749,0.0000014499,0.0000014396, -0.0000014419,0.0000014534,0.0000014689,0.0000014819,0.0000014889, -0.0000014902,0.0000014881,0.0000014853,0.0000014844,0.0000014846, -0.0000014878,0.0000014949,0.0000015058,0.0000015169,0.0000015253, -0.0000015281,0.0000015249,0.0000015156,0.0000015062,0.0000015016, -0.0000014999,0.0000015014,0.0000015043,0.0000015058,0.0000015053, -0.0000015037,0.0000015007,0.0000014994,0.0000014972,0.0000014886, -0.0000014717,0.0000014503,0.0000014339,0.0000014246,0.0000014192, -0.0000014169,0.0000014151,0.0000014129,0.0000014149,0.0000014380, -0.0000014906,0.0000015600,0.0000016173,0.0000016450,0.0000016512, -0.0000016538,0.0000016606,0.0000016636,0.0000016466,0.0000016031, -0.0000015856,0.0000016012,0.0000016226,0.0000016287,0.0000016243, -0.0000016118,0.0000016030,0.0000016086,0.0000016319,0.0000016471, -0.0000016354,0.0000015569,0.0000014994,0.0000015186,0.0000015594, -0.0000015767,0.0000015801,0.0000015650,0.0000015268,0.0000014970, -0.0000014788,0.0000014648,0.0000014445,0.0000014158,0.0000013874, -0.0000013634,0.0000013583,0.0000013706,0.0000013735,0.0000013718, -0.0000013938,0.0000014319,0.0000014750,0.0000014960,0.0000014901, -0.0000014895,0.0000014990,0.0000015047,0.0000015072,0.0000015068, -0.0000015028,0.0000014983,0.0000014959,0.0000014952,0.0000014954, -0.0000014962,0.0000014967,0.0000014969,0.0000014973,0.0000014984, -0.0000015002,0.0000015017,0.0000015027,0.0000015040,0.0000015055, -0.0000015072,0.0000015085,0.0000015093,0.0000015091,0.0000015078, -0.0000015051,0.0000015021,0.0000015011,0.0000015058,0.0000015103, -0.0000015081,0.0000015149,0.0000015484,0.0000015585,0.0000015381, -0.0000015353,0.0000015323,0.0000015324,0.0000015436,0.0000015514, -0.0000015976,0.0000017177,0.0000018704,0.0000018630,0.0000017403, -0.0000017113,0.0000017475,0.0000018014,0.0000018110,0.0000017852, -0.0000017892,0.0000018020,0.0000017970,0.0000017990,0.0000018446, -0.0000019037,0.0000019328,0.0000019357,0.0000019141,0.0000018451, -0.0000017756,0.0000017824,0.0000018399,0.0000018617,0.0000018527, -0.0000018532,0.0000018620,0.0000018574,0.0000018395,0.0000018183, -0.0000017934,0.0000017729,0.0000017601,0.0000017521,0.0000017464, -0.0000017430,0.0000017425,0.0000017445,0.0000017497,0.0000017664, -0.0000017926,0.0000018106,0.0000018178,0.0000018129,0.0000017868, -0.0000017535,0.0000017200,0.0000016901,0.0000016765,0.0000016719, -0.0000016679,0.0000016657,0.0000016667,0.0000016639,0.0000016439, -0.0000016120,0.0000015982,0.0000016158,0.0000016566,0.0000016882, -0.0000016982,0.0000017028,0.0000017223,0.0000017507,0.0000017678, -0.0000017735,0.0000017817,0.0000017959,0.0000018071,0.0000018106, -0.0000018102,0.0000018097,0.0000018055,0.0000017960,0.0000017854, -0.0000017743,0.0000017643,0.0000017500,0.0000017217,0.0000016828, -0.0000016459,0.0000016167,0.0000015916,0.0000015765,0.0000015763, -0.0000015769,0.0000015724,0.0000015702,0.0000015718,0.0000015732, -0.0000015740,0.0000015761,0.0000015798,0.0000015900,0.0000016082, -0.0000016270,0.0000016411,0.0000016481,0.0000016484,0.0000016466, -0.0000016447,0.0000016434,0.0000016418,0.0000016409,0.0000016388, -0.0000016298,0.0000016141,0.0000016106,0.0000016208,0.0000016360, -0.0000016427,0.0000016762,0.0000017087,0.0000016771,0.0000016031, -0.0000015181,0.0000015035,0.0000015710,0.0000016155,0.0000015820, -0.0000015899,0.0000015913,0.0000015928,0.0000015934,0.0000015435, -0.0000014797,0.0000014862,0.0000015192,0.0000015378,0.0000015413, -0.0000015488,0.0000015405,0.0000015391,0.0000015410,0.0000015454, -0.0000015506,0.0000015498,0.0000015427,0.0000015418,0.0000015442, -0.0000015409,0.0000015426,0.0000015506,0.0000015544,0.0000015494, -0.0000015356,0.0000015224,0.0000015172,0.0000015195,0.0000015220, -0.0000015190,0.0000015032,0.0000014863,0.0000014895,0.0000015014, -0.0000015089,0.0000015269,0.0000015527,0.0000015667,0.0000015622, -0.0000015437,0.0000015266,0.0000015146,0.0000015147,0.0000015240, -0.0000015246,0.0000015164,0.0000015150,0.0000015414,0.0000015588, -0.0000015511,0.0000015647,0.0000015933,0.0000016102,0.0000016173, -0.0000016278,0.0000016491,0.0000016656,0.0000016675,0.0000016624, -0.0000016562,0.0000016547,0.0000016602,0.0000016423,0.0000016357, -0.0000016588,0.0000016641,0.0000016574,0.0000016512,0.0000016360, -0.0000016149,0.0000016190,0.0000016467,0.0000016562,0.0000016470, -0.0000016299,0.0000016209,0.0000016186,0.0000016310,0.0000016535, -0.0000016499,0.0000016204,0.0000016001,0.0000015861,0.0000015898, -0.0000016095,0.0000016347,0.0000016877,0.0000017198,0.0000016991, -0.0000016660,0.0000016620,0.0000016700,0.0000016728,0.0000016761, -0.0000016823,0.0000016878,0.0000016924,0.0000016956,0.0000016972, -0.0000017008,0.0000017104,0.0000017271,0.0000017441,0.0000017549, -0.0000017596,0.0000017612,0.0000017617,0.0000017634,0.0000017667, -0.0000017701,0.0000017745,0.0000017746,0.0000017646,0.0000017548, -0.0000017700,0.0000017654,0.0000017654,0.0000017633,0.0000017109, -0.0000017104,0.0000017142,0.0000017159,0.0000017128,0.0000017089, -0.0000017078,0.0000017072,0.0000017060,0.0000017044,0.0000017008, -0.0000016936,0.0000016826,0.0000016757,0.0000016873,0.0000017252, -0.0000017566,0.0000017689,0.0000017746,0.0000017669,0.0000017518, -0.0000017353,0.0000017226,0.0000017141,0.0000017068,0.0000017004, -0.0000016956,0.0000016931,0.0000016943,0.0000016979,0.0000016999, -0.0000016970,0.0000016883,0.0000016755,0.0000016634,0.0000016563, -0.0000016547,0.0000016580,0.0000016621,0.0000016634,0.0000016629, -0.0000016628,0.0000016631,0.0000016622,0.0000016610,0.0000016608, -0.0000016604,0.0000016625,0.0000016652,0.0000016673,0.0000016669, -0.0000016636,0.0000016550,0.0000016465,0.0000016408,0.0000016411, -0.0000016445,0.0000016528,0.0000016695,0.0000016911,0.0000017182, -0.0000017451,0.0000017403,0.0000017076,0.0000016798,0.0000016561, -0.0000016257,0.0000015945,0.0000015699,0.0000015496,0.0000015386, -0.0000015286,0.0000014940,0.0000014567,0.0000014420,0.0000014401, -0.0000014414,0.0000014469,0.0000014537,0.0000014602,0.0000014699, -0.0000014845,0.0000014979,0.0000015040,0.0000015032,0.0000015003, -0.0000014984,0.0000014985,0.0000014990,0.0000014980,0.0000014933, -0.0000014869,0.0000014836,0.0000014841,0.0000014893,0.0000014972, -0.0000015027,0.0000015059,0.0000015120,0.0000015240,0.0000015336, -0.0000015353,0.0000015311,0.0000015245,0.0000015193,0.0000015162, -0.0000015131,0.0000015074,0.0000015011,0.0000014972,0.0000014970, -0.0000014985,0.0000014982,0.0000014913,0.0000014752,0.0000014542, -0.0000014402,0.0000014381,0.0000014486,0.0000014690,0.0000014879, -0.0000014972,0.0000014988,0.0000014981,0.0000014975,0.0000014974, -0.0000014979,0.0000014992,0.0000015023,0.0000015074,0.0000015133, -0.0000015195,0.0000015225,0.0000015203,0.0000015129,0.0000015055, -0.0000015028,0.0000015039,0.0000015069,0.0000015108,0.0000015143, -0.0000015153,0.0000015121,0.0000015057,0.0000014955,0.0000014856, -0.0000014765,0.0000014650,0.0000014509,0.0000014385,0.0000014320, -0.0000014310,0.0000014303,0.0000014268,0.0000014199,0.0000014155, -0.0000014228,0.0000014586,0.0000015217,0.0000015897,0.0000016336, -0.0000016483,0.0000016505,0.0000016550,0.0000016628,0.0000016595, -0.0000016171,0.0000015743,0.0000015761,0.0000016053,0.0000016217, -0.0000016197,0.0000016119,0.0000016036,0.0000015994,0.0000016079, -0.0000016326,0.0000016466,0.0000016299,0.0000015490,0.0000014972, -0.0000015160,0.0000015502,0.0000015644,0.0000015761,0.0000015713, -0.0000015388,0.0000015050,0.0000014805,0.0000014668,0.0000014525, -0.0000014258,0.0000013968,0.0000013688,0.0000013592,0.0000013703, -0.0000013706,0.0000013702,0.0000013973,0.0000014358,0.0000014787, -0.0000014979,0.0000014919,0.0000014917,0.0000014968,0.0000015002, -0.0000015022,0.0000015019,0.0000014993,0.0000014963,0.0000014947, -0.0000014930,0.0000014914,0.0000014900,0.0000014897,0.0000014907, -0.0000014926,0.0000014944,0.0000014954,0.0000014954,0.0000014948, -0.0000014943,0.0000014947,0.0000014954,0.0000014962,0.0000014966, -0.0000014970,0.0000014971,0.0000014966,0.0000014957,0.0000014963, -0.0000015038,0.0000015104,0.0000015076,0.0000015203,0.0000015550, -0.0000015516,0.0000015351,0.0000015339,0.0000015294,0.0000015359, -0.0000015453,0.0000015695,0.0000016593,0.0000018119,0.0000018809, -0.0000017882,0.0000017284,0.0000017359,0.0000017674,0.0000018046, -0.0000017977,0.0000017780,0.0000017890,0.0000018048,0.0000017962, -0.0000017818,0.0000017901,0.0000018162,0.0000018222,0.0000017929, -0.0000017607,0.0000017774,0.0000018338,0.0000018621,0.0000018565, -0.0000018482,0.0000018576,0.0000018583,0.0000018397,0.0000018184, -0.0000017966,0.0000017737,0.0000017580,0.0000017501,0.0000017463, -0.0000017448,0.0000017456,0.0000017484,0.0000017514,0.0000017588, -0.0000017787,0.0000018016,0.0000018130,0.0000018185,0.0000018112, -0.0000017828,0.0000017541,0.0000017250,0.0000016956,0.0000016800, -0.0000016738,0.0000016707,0.0000016693,0.0000016684,0.0000016673, -0.0000016579,0.0000016325,0.0000016029,0.0000015983,0.0000016320, -0.0000016761,0.0000016974,0.0000017016,0.0000017154,0.0000017433, -0.0000017645,0.0000017725,0.0000017795,0.0000017911,0.0000018009, -0.0000018057,0.0000018074,0.0000018067,0.0000018006,0.0000017919, -0.0000017818,0.0000017699,0.0000017590,0.0000017403,0.0000017077, -0.0000016690,0.0000016336,0.0000016051,0.0000015833,0.0000015750, -0.0000015747,0.0000015730,0.0000015718,0.0000015739,0.0000015761, -0.0000015799,0.0000015868,0.0000015968,0.0000016111,0.0000016285, -0.0000016404,0.0000016471,0.0000016491,0.0000016487,0.0000016473, -0.0000016458,0.0000016425,0.0000016380,0.0000016358,0.0000016365, -0.0000016345,0.0000016233,0.0000016125,0.0000016175,0.0000016327, -0.0000016416,0.0000016667,0.0000017069,0.0000016851,0.0000016116, -0.0000015411,0.0000015091,0.0000015787,0.0000016094,0.0000015763, -0.0000015957,0.0000015953,0.0000015963,0.0000015924,0.0000015700, -0.0000014825,0.0000014802,0.0000015038,0.0000015360,0.0000015353, -0.0000015461,0.0000015421,0.0000015361,0.0000015372,0.0000015412, -0.0000015429,0.0000015400,0.0000015388,0.0000015425,0.0000015433, -0.0000015450,0.0000015515,0.0000015536,0.0000015475,0.0000015314, -0.0000015177,0.0000015154,0.0000015188,0.0000015196,0.0000015136, -0.0000014971,0.0000014824,0.0000014877,0.0000015019,0.0000015078, -0.0000015207,0.0000015400,0.0000015495,0.0000015449,0.0000015324, -0.0000015215,0.0000015105,0.0000015082,0.0000015192,0.0000015241, -0.0000015182,0.0000015123,0.0000015319,0.0000015533,0.0000015483, -0.0000015605,0.0000015895,0.0000016078,0.0000016139,0.0000016213, -0.0000016420,0.0000016607,0.0000016656,0.0000016628,0.0000016559, -0.0000016477,0.0000016546,0.0000016539,0.0000016333,0.0000016406, -0.0000016612,0.0000016590,0.0000016502,0.0000016386,0.0000016165, -0.0000016091,0.0000016329,0.0000016532,0.0000016483,0.0000016340, -0.0000016234,0.0000016212,0.0000016244,0.0000016453,0.0000016570, -0.0000016326,0.0000016086,0.0000015927,0.0000015863,0.0000016023, -0.0000016268,0.0000016773,0.0000017159,0.0000017018,0.0000016681, -0.0000016617,0.0000016696,0.0000016719,0.0000016741,0.0000016799, -0.0000016859,0.0000016910,0.0000016950,0.0000016970,0.0000016977, -0.0000016995,0.0000017077,0.0000017255,0.0000017423,0.0000017529, -0.0000017586,0.0000017607,0.0000017631,0.0000017668,0.0000017687, -0.0000017682,0.0000017625,0.0000017549,0.0000017573,0.0000017736, -0.0000017617,0.0000017711,0.0000017456,0.0000017108,0.0000017129, -0.0000017204,0.0000017268,0.0000017264,0.0000017196,0.0000017110, -0.0000017047,0.0000017030,0.0000017030,0.0000017009,0.0000016949, -0.0000016857,0.0000016759,0.0000016805,0.0000017117,0.0000017452, -0.0000017559,0.0000017583,0.0000017481,0.0000017335,0.0000017230, -0.0000017132,0.0000016998,0.0000016884,0.0000016832,0.0000016800, -0.0000016778,0.0000016778,0.0000016787,0.0000016781,0.0000016747, -0.0000016690,0.0000016628,0.0000016587,0.0000016572,0.0000016595, -0.0000016630,0.0000016635,0.0000016619,0.0000016612,0.0000016606, -0.0000016600,0.0000016610,0.0000016631,0.0000016670,0.0000016705, -0.0000016714,0.0000016697,0.0000016643,0.0000016569,0.0000016484, -0.0000016414,0.0000016396,0.0000016410,0.0000016461,0.0000016568, -0.0000016767,0.0000016990,0.0000017245,0.0000017470,0.0000017390, -0.0000017062,0.0000016789,0.0000016560,0.0000016258,0.0000015951, -0.0000015714,0.0000015516,0.0000015409,0.0000015307,0.0000014965, -0.0000014582,0.0000014418,0.0000014397,0.0000014414,0.0000014463, -0.0000014511,0.0000014585,0.0000014720,0.0000014872,0.0000014996, -0.0000015049,0.0000015039,0.0000015007,0.0000014991,0.0000014995, -0.0000015006,0.0000015013,0.0000015000,0.0000014939,0.0000014865, -0.0000014834,0.0000014851,0.0000014899,0.0000014937,0.0000014989, -0.0000015122,0.0000015294,0.0000015377,0.0000015367,0.0000015306, -0.0000015238,0.0000015179,0.0000015134,0.0000015117,0.0000015096, -0.0000015036,0.0000014963,0.0000014915,0.0000014883,0.0000014833, -0.0000014737,0.0000014594,0.0000014458,0.0000014402,0.0000014467, -0.0000014670,0.0000014876,0.0000014966,0.0000014969,0.0000014970, -0.0000014982,0.0000014994,0.0000015005,0.0000015019,0.0000015043, -0.0000015085,0.0000015143,0.0000015192,0.0000015208,0.0000015198, -0.0000015128,0.0000015044,0.0000015016,0.0000015036,0.0000015088, -0.0000015137,0.0000015156,0.0000015165,0.0000015131,0.0000015058, -0.0000014923,0.0000014753,0.0000014615,0.0000014527,0.0000014485, -0.0000014450,0.0000014407,0.0000014386,0.0000014394,0.0000014376, -0.0000014310,0.0000014224,0.0000014199,0.0000014398,0.0000014914, -0.0000015602,0.0000016172,0.0000016436,0.0000016489,0.0000016512, -0.0000016583,0.0000016606,0.0000016353,0.0000015802,0.0000015608, -0.0000015849,0.0000016114,0.0000016134,0.0000016023,0.0000015981, -0.0000015991,0.0000016000,0.0000016124,0.0000016371,0.0000016455, -0.0000016109,0.0000015305,0.0000014951,0.0000015192,0.0000015459, -0.0000015524,0.0000015666,0.0000015714,0.0000015468,0.0000015120, -0.0000014815,0.0000014638,0.0000014550,0.0000014311,0.0000013995, -0.0000013693,0.0000013605,0.0000013696,0.0000013674,0.0000013726, -0.0000014032,0.0000014378,0.0000014807,0.0000014993,0.0000014984, -0.0000014960,0.0000014974,0.0000015014,0.0000015066,0.0000015108, -0.0000015135,0.0000015146,0.0000015141,0.0000015117,0.0000015069, -0.0000014999,0.0000014924,0.0000014868,0.0000014836,0.0000014843, -0.0000014868,0.0000014894,0.0000014909,0.0000014915,0.0000014916, -0.0000014907,0.0000014891,0.0000014884,0.0000014872,0.0000014869, -0.0000014881,0.0000014897,0.0000014924,0.0000015044,0.0000015114, -0.0000015077,0.0000015303,0.0000015569,0.0000015422,0.0000015341, -0.0000015315,0.0000015287,0.0000015401,0.0000015526,0.0000016087, -0.0000017423,0.0000018646,0.0000018329,0.0000017393,0.0000017363, -0.0000017494,0.0000017861,0.0000018050,0.0000017772,0.0000017638, -0.0000017831,0.0000018111,0.0000018134,0.0000017899,0.0000017624, -0.0000017546,0.0000017627,0.0000017974,0.0000018413,0.0000018631, -0.0000018586,0.0000018500,0.0000018535,0.0000018564,0.0000018401, -0.0000018147,0.0000017927,0.0000017712,0.0000017561,0.0000017513, -0.0000017502,0.0000017484,0.0000017477,0.0000017503,0.0000017552, -0.0000017617,0.0000017752,0.0000017955,0.0000018083,0.0000018140, -0.0000018196,0.0000018095,0.0000017791,0.0000017564,0.0000017323, -0.0000017022,0.0000016837,0.0000016768,0.0000016750,0.0000016730, -0.0000016680,0.0000016643,0.0000016624,0.0000016506,0.0000016200, -0.0000015963,0.0000016111,0.0000016582,0.0000016929,0.0000017009, -0.0000017106,0.0000017374,0.0000017616,0.0000017720,0.0000017786, -0.0000017882,0.0000017971,0.0000018028,0.0000018047,0.0000018024, -0.0000017961,0.0000017886,0.0000017770,0.0000017642,0.0000017519, -0.0000017287,0.0000016940,0.0000016552,0.0000016211,0.0000015947, -0.0000015774,0.0000015727,0.0000015737,0.0000015773,0.0000015820, -0.0000015871,0.0000015939,0.0000016042,0.0000016174,0.0000016309, -0.0000016418,0.0000016471,0.0000016501,0.0000016512,0.0000016546, -0.0000016589,0.0000016594,0.0000016539,0.0000016425,0.0000016342, -0.0000016327,0.0000016330,0.0000016291,0.0000016175,0.0000016159, -0.0000016281,0.0000016397,0.0000016557,0.0000017023,0.0000016947, -0.0000016232,0.0000015662,0.0000015268,0.0000015852,0.0000016011, -0.0000015796,0.0000015992,0.0000016114,0.0000016023,0.0000015940, -0.0000015850,0.0000015006,0.0000014765,0.0000014940,0.0000015330, -0.0000015339,0.0000015380,0.0000015437,0.0000015393,0.0000015370, -0.0000015373,0.0000015373,0.0000015378,0.0000015404,0.0000015438, -0.0000015472,0.0000015520,0.0000015530,0.0000015453,0.0000015289, -0.0000015154,0.0000015142,0.0000015175,0.0000015164,0.0000015076, -0.0000014912,0.0000014810,0.0000014911,0.0000015048,0.0000015080, -0.0000015165,0.0000015301,0.0000015335,0.0000015273,0.0000015192, -0.0000015138,0.0000015054,0.0000015031,0.0000015149,0.0000015244, -0.0000015200,0.0000015098,0.0000015248,0.0000015478,0.0000015453, -0.0000015581,0.0000015873,0.0000016050,0.0000016115,0.0000016180, -0.0000016364,0.0000016553,0.0000016621,0.0000016618,0.0000016566, -0.0000016455,0.0000016431,0.0000016553,0.0000016425,0.0000016280, -0.0000016472,0.0000016583,0.0000016502,0.0000016389,0.0000016197, -0.0000016057,0.0000016206,0.0000016499,0.0000016496,0.0000016376, -0.0000016256,0.0000016251,0.0000016240,0.0000016355,0.0000016553, -0.0000016438,0.0000016168,0.0000016003,0.0000015888,0.0000015972, -0.0000016193,0.0000016655,0.0000017109,0.0000017055,0.0000016709, -0.0000016623,0.0000016697,0.0000016707,0.0000016718,0.0000016769, -0.0000016819,0.0000016860,0.0000016905,0.0000016959,0.0000017001, -0.0000017002,0.0000016989,0.0000017060,0.0000017232,0.0000017388, -0.0000017489,0.0000017545,0.0000017585,0.0000017619,0.0000017604, -0.0000017561,0.0000017533,0.0000017495,0.0000017661,0.0000017709, -0.0000017635,0.0000017774,0.0000017288,0.0000017150,0.0000017182, -0.0000017281,0.0000017360,0.0000017355,0.0000017248,0.0000017104, -0.0000017014,0.0000017012,0.0000017030,0.0000017009,0.0000016947, -0.0000016884,0.0000016794,0.0000016758,0.0000016962,0.0000017310, -0.0000017432,0.0000017405,0.0000017307,0.0000017212,0.0000017153, -0.0000017016,0.0000016855,0.0000016783,0.0000016766,0.0000016743, -0.0000016730,0.0000016725,0.0000016713,0.0000016690,0.0000016661, -0.0000016628,0.0000016599,0.0000016588,0.0000016600,0.0000016616, -0.0000016614,0.0000016589,0.0000016572,0.0000016569,0.0000016574, -0.0000016611,0.0000016675,0.0000016728,0.0000016732,0.0000016707, -0.0000016639,0.0000016557,0.0000016472,0.0000016404,0.0000016373, -0.0000016386,0.0000016425,0.0000016494,0.0000016639,0.0000016865, -0.0000017073,0.0000017311,0.0000017470,0.0000017353,0.0000017025, -0.0000016762,0.0000016548,0.0000016254,0.0000015953,0.0000015724, -0.0000015526,0.0000015418,0.0000015309,0.0000014967,0.0000014585, -0.0000014415,0.0000014394,0.0000014416,0.0000014459,0.0000014486, -0.0000014566,0.0000014734,0.0000014892,0.0000014987,0.0000015031, -0.0000015031,0.0000015012,0.0000015001,0.0000015004,0.0000015019, -0.0000015037,0.0000015039,0.0000015005,0.0000014931,0.0000014851, -0.0000014816,0.0000014818,0.0000014855,0.0000014969,0.0000015162, -0.0000015333,0.0000015388,0.0000015356,0.0000015279,0.0000015205, -0.0000015148,0.0000015109,0.0000015097,0.0000015104,0.0000015083, -0.0000015012,0.0000014924,0.0000014844,0.0000014753,0.0000014636, -0.0000014516,0.0000014448,0.0000014488,0.0000014674,0.0000014886, -0.0000014991,0.0000014999,0.0000014998,0.0000015013,0.0000015023, -0.0000015023,0.0000015024,0.0000015030,0.0000015045,0.0000015080, -0.0000015139,0.0000015189,0.0000015197,0.0000015149,0.0000015060, -0.0000014993,0.0000014992,0.0000015032,0.0000015083,0.0000015117, -0.0000015110,0.0000015050,0.0000014955,0.0000014840,0.0000014701, -0.0000014557,0.0000014456,0.0000014420,0.0000014444,0.0000014459, -0.0000014454,0.0000014434,0.0000014411,0.0000014366,0.0000014286, -0.0000014221,0.0000014259,0.0000014611,0.0000015254,0.0000015921, -0.0000016340,0.0000016468,0.0000016487,0.0000016540,0.0000016610, -0.0000016501,0.0000015971,0.0000015558,0.0000015667,0.0000015987, -0.0000016067,0.0000015919,0.0000015786,0.0000015835,0.0000015943, -0.0000016015,0.0000016184,0.0000016390,0.0000016340,0.0000015772, -0.0000015086,0.0000014977,0.0000015271,0.0000015447,0.0000015446, -0.0000015610,0.0000015727,0.0000015493,0.0000015156,0.0000014815, -0.0000014588,0.0000014539,0.0000014318,0.0000013951,0.0000013652, -0.0000013615,0.0000013673,0.0000013631,0.0000013780,0.0000014047, -0.0000014313,0.0000014748,0.0000015001,0.0000015026,0.0000015037, -0.0000015056,0.0000015071,0.0000015062,0.0000014997,0.0000014913, -0.0000014866,0.0000014875,0.0000014936,0.0000015023,0.0000015090, -0.0000015120,0.0000015089,0.0000015004,0.0000014908,0.0000014865, -0.0000014836,0.0000014843,0.0000014877,0.0000014904,0.0000014910, -0.0000014904,0.0000014878,0.0000014842,0.0000014813,0.0000014823, -0.0000014843,0.0000014909,0.0000015075,0.0000015094,0.0000015092, -0.0000015419,0.0000015523,0.0000015366,0.0000015333,0.0000015277, -0.0000015319,0.0000015436,0.0000015735,0.0000016788,0.0000018295, -0.0000018572,0.0000017589,0.0000017415,0.0000017508,0.0000017619, -0.0000017952,0.0000017844,0.0000017539,0.0000017528,0.0000017762, -0.0000018096,0.0000018336,0.0000018408,0.0000018464,0.0000018515, -0.0000018573,0.0000018613,0.0000018578,0.0000018507,0.0000018522, -0.0000018548,0.0000018399,0.0000018122,0.0000017871,0.0000017669, -0.0000017563,0.0000017551,0.0000017558,0.0000017529,0.0000017506, -0.0000017525,0.0000017584,0.0000017666,0.0000017787,0.0000017956, -0.0000018077,0.0000018093,0.0000018143,0.0000018202,0.0000018057, -0.0000017764,0.0000017610,0.0000017420,0.0000017102,0.0000016889, -0.0000016820,0.0000016794,0.0000016749,0.0000016673,0.0000016610, -0.0000016591,0.0000016567,0.0000016372,0.0000016040,0.0000015989, -0.0000016415,0.0000016862,0.0000017001,0.0000017077,0.0000017327, -0.0000017587,0.0000017718,0.0000017796,0.0000017879,0.0000017954, -0.0000017999,0.0000018005,0.0000017975,0.0000017930,0.0000017845, -0.0000017699,0.0000017576,0.0000017425,0.0000017163,0.0000016800, -0.0000016411,0.0000016096,0.0000015858,0.0000015729,0.0000015727, -0.0000015800,0.0000015889,0.0000015997,0.0000016090,0.0000016215, -0.0000016350,0.0000016438,0.0000016486,0.0000016522,0.0000016552, -0.0000016603,0.0000016719,0.0000016821,0.0000016844,0.0000016783, -0.0000016617,0.0000016429,0.0000016330,0.0000016298,0.0000016287, -0.0000016227,0.0000016173,0.0000016233,0.0000016363,0.0000016454, -0.0000016951,0.0000017028,0.0000016406,0.0000015849,0.0000015569, -0.0000015949,0.0000015926,0.0000015885,0.0000016106,0.0000016411, -0.0000016201,0.0000015967,0.0000015929,0.0000015229,0.0000014771, -0.0000014859,0.0000015193,0.0000015350,0.0000015300,0.0000015382, -0.0000015406,0.0000015396,0.0000015385,0.0000015384,0.0000015399, -0.0000015433,0.0000015479,0.0000015512,0.0000015504,0.0000015421, -0.0000015263,0.0000015142,0.0000015128,0.0000015146,0.0000015123, -0.0000015008,0.0000014852,0.0000014801,0.0000014961,0.0000015111, -0.0000015088,0.0000015126,0.0000015214,0.0000015202,0.0000015132, -0.0000015084,0.0000015059,0.0000014992,0.0000014984,0.0000015122, -0.0000015251,0.0000015230,0.0000015099,0.0000015192,0.0000015413, -0.0000015428,0.0000015571,0.0000015862,0.0000016025,0.0000016090, -0.0000016173,0.0000016335,0.0000016501,0.0000016582,0.0000016588, -0.0000016564,0.0000016468,0.0000016353,0.0000016447,0.0000016525, -0.0000016306,0.0000016288,0.0000016490,0.0000016505,0.0000016386, -0.0000016216,0.0000016028,0.0000016094,0.0000016407,0.0000016505, -0.0000016402,0.0000016284,0.0000016298,0.0000016289,0.0000016295, -0.0000016485,0.0000016528,0.0000016268,0.0000016076,0.0000015942, -0.0000015940,0.0000016117,0.0000016533,0.0000017042,0.0000017081, -0.0000016739,0.0000016644,0.0000016701,0.0000016697,0.0000016691, -0.0000016722,0.0000016760,0.0000016780,0.0000016799,0.0000016861, -0.0000016972,0.0000017032,0.0000016998,0.0000016960,0.0000017043, -0.0000017206,0.0000017338,0.0000017427,0.0000017494,0.0000017523, -0.0000017496,0.0000017480,0.0000017468,0.0000017500,0.0000017749, -0.0000017649,0.0000017681,0.0000017776,0.0000017232,0.0000017202, -0.0000017251,0.0000017339,0.0000017409,0.0000017407,0.0000017320, -0.0000017172,0.0000017072,0.0000017051,0.0000017061,0.0000017049, -0.0000016980,0.0000016910,0.0000016840,0.0000016759,0.0000016845, -0.0000017203,0.0000017390,0.0000017321,0.0000017223,0.0000017151, -0.0000017057,0.0000016892,0.0000016776,0.0000016743,0.0000016715, -0.0000016691,0.0000016684,0.0000016683,0.0000016670,0.0000016644, -0.0000016618,0.0000016601,0.0000016595,0.0000016600,0.0000016602, -0.0000016580,0.0000016545,0.0000016526,0.0000016530,0.0000016564, -0.0000016624,0.0000016699,0.0000016736,0.0000016709,0.0000016631, -0.0000016544,0.0000016454,0.0000016379,0.0000016350,0.0000016358, -0.0000016404,0.0000016468,0.0000016571,0.0000016752,0.0000016968, -0.0000017149,0.0000017377,0.0000017471,0.0000017298,0.0000016966, -0.0000016727,0.0000016524,0.0000016233,0.0000015940,0.0000015720, -0.0000015522,0.0000015413,0.0000015296,0.0000014950,0.0000014576, -0.0000014410,0.0000014391,0.0000014417,0.0000014456,0.0000014467, -0.0000014552,0.0000014738,0.0000014895,0.0000014972,0.0000015008, -0.0000015016,0.0000015011,0.0000015008,0.0000015012,0.0000015024, -0.0000015041,0.0000015051,0.0000015041,0.0000014989,0.0000014897, -0.0000014811,0.0000014782,0.0000014828,0.0000014997,0.0000015206, -0.0000015340,0.0000015362,0.0000015323,0.0000015232,0.0000015147, -0.0000015092,0.0000015056,0.0000015042,0.0000015052,0.0000015060, -0.0000015024,0.0000014942,0.0000014829,0.0000014700,0.0000014584, -0.0000014518,0.0000014514,0.0000014678,0.0000014877,0.0000014985, -0.0000015003,0.0000015014,0.0000015048,0.0000015083,0.0000015089, -0.0000015072,0.0000015052,0.0000015040,0.0000015037,0.0000015053, -0.0000015096,0.0000015142,0.0000015149,0.0000015094,0.0000015000, -0.0000014947,0.0000014962,0.0000015009,0.0000015039,0.0000015025, -0.0000014950,0.0000014839,0.0000014728,0.0000014644,0.0000014573, -0.0000014499,0.0000014437,0.0000014415,0.0000014433,0.0000014453, -0.0000014456,0.0000014431,0.0000014380,0.0000014316,0.0000014235, -0.0000014201,0.0000014319,0.0000014808,0.0000015504,0.0000016103, -0.0000016407,0.0000016467,0.0000016499,0.0000016578,0.0000016579, -0.0000016158,0.0000015635,0.0000015573,0.0000015868,0.0000016014, -0.0000015865,0.0000015627,0.0000015577,0.0000015698,0.0000015865, -0.0000016009,0.0000016206,0.0000016313,0.0000016050,0.0000015382, -0.0000014968,0.0000015060,0.0000015378,0.0000015450,0.0000015420, -0.0000015619,0.0000015713,0.0000015461,0.0000015147,0.0000014782, -0.0000014541,0.0000014507,0.0000014271,0.0000013856,0.0000013616, -0.0000013625,0.0000013616,0.0000013591,0.0000013807,0.0000013963, -0.0000014076,0.0000014368,0.0000014589,0.0000014633,0.0000014591, -0.0000014450,0.0000014269,0.0000014101,0.0000013989,0.0000013938, -0.0000013934,0.0000013963,0.0000014041,0.0000014183,0.0000014407, -0.0000014690,0.0000014949,0.0000015082,0.0000015137,0.0000015092, -0.0000014999,0.0000014916,0.0000014897,0.0000014903,0.0000014910, -0.0000014921,0.0000014898,0.0000014840,0.0000014796,0.0000014787, -0.0000014807,0.0000014936,0.0000015102,0.0000015060,0.0000015184, -0.0000015498,0.0000015440,0.0000015345,0.0000015301,0.0000015259, -0.0000015371,0.0000015537,0.0000016232,0.0000017635,0.0000018575, -0.0000017921,0.0000017490,0.0000017593,0.0000017515,0.0000017776, -0.0000017887,0.0000017598,0.0000017443,0.0000017469,0.0000017682, -0.0000017996,0.0000018278,0.0000018452,0.0000018534,0.0000018558, -0.0000018547,0.0000018518,0.0000018522,0.0000018514,0.0000018362, -0.0000018083,0.0000017811,0.0000017623,0.0000017570,0.0000017594, -0.0000017596,0.0000017557,0.0000017521,0.0000017527,0.0000017580, -0.0000017667,0.0000017790,0.0000017940,0.0000018058,0.0000018078, -0.0000018069,0.0000018177,0.0000018243,0.0000018019,0.0000017744, -0.0000017656,0.0000017524,0.0000017218,0.0000016971,0.0000016880, -0.0000016829,0.0000016754,0.0000016667,0.0000016593,0.0000016555, -0.0000016547,0.0000016463,0.0000016138,0.0000015970,0.0000016295, -0.0000016803,0.0000016998,0.0000017063,0.0000017291,0.0000017562, -0.0000017724,0.0000017818,0.0000017891,0.0000017939,0.0000017959, -0.0000017955,0.0000017938,0.0000017899,0.0000017772,0.0000017613, -0.0000017502,0.0000017323,0.0000017031,0.0000016652,0.0000016280, -0.0000015988,0.0000015780,0.0000015722,0.0000015783,0.0000015901, -0.0000016066,0.0000016187,0.0000016344,0.0000016466,0.0000016500, -0.0000016536,0.0000016589,0.0000016645,0.0000016766,0.0000016935, -0.0000017026,0.0000017033,0.0000016986,0.0000016860,0.0000016649, -0.0000016432,0.0000016303,0.0000016261,0.0000016248,0.0000016208, -0.0000016210,0.0000016319,0.0000016385,0.0000016843,0.0000017064, -0.0000016632,0.0000015994,0.0000015798,0.0000015981,0.0000015879, -0.0000015947,0.0000016316,0.0000016604,0.0000016445,0.0000015994, -0.0000015954,0.0000015440,0.0000014788,0.0000014811,0.0000015037, -0.0000015332,0.0000015300,0.0000015307,0.0000015365,0.0000015386, -0.0000015391,0.0000015405,0.0000015432,0.0000015464,0.0000015488, -0.0000015459,0.0000015376,0.0000015231,0.0000015124,0.0000015106, -0.0000015110,0.0000015082,0.0000014943,0.0000014798,0.0000014805, -0.0000015030,0.0000015182,0.0000015120,0.0000015091,0.0000015133, -0.0000015104,0.0000015038,0.0000015012,0.0000014993,0.0000014927, -0.0000014949,0.0000015112,0.0000015273,0.0000015268,0.0000015121, -0.0000015158,0.0000015362,0.0000015415,0.0000015580,0.0000015856, -0.0000016009,0.0000016096,0.0000016200,0.0000016336,0.0000016461, -0.0000016533,0.0000016549,0.0000016543,0.0000016486,0.0000016346, -0.0000016308,0.0000016487,0.0000016437,0.0000016234,0.0000016304, -0.0000016436,0.0000016388,0.0000016232,0.0000016031,0.0000015995, -0.0000016289,0.0000016492,0.0000016424,0.0000016304,0.0000016318, -0.0000016369,0.0000016319,0.0000016417,0.0000016548,0.0000016372, -0.0000016143,0.0000016002,0.0000015949,0.0000016051,0.0000016421, -0.0000016978,0.0000017119,0.0000016778,0.0000016650,0.0000016702, -0.0000016686,0.0000016657,0.0000016674,0.0000016711,0.0000016703, -0.0000016675,0.0000016692,0.0000016810,0.0000016979,0.0000017015, -0.0000016952,0.0000016934,0.0000017039,0.0000017193,0.0000017301, -0.0000017380,0.0000017424,0.0000017432,0.0000017437,0.0000017410, -0.0000017585,0.0000017770,0.0000017596,0.0000017730,0.0000017683, -0.0000017260,0.0000017264,0.0000017318,0.0000017377,0.0000017432, -0.0000017446,0.0000017409,0.0000017316,0.0000017229,0.0000017145, -0.0000017087,0.0000017067,0.0000017037,0.0000016971,0.0000016894, -0.0000016787,0.0000016761,0.0000017042,0.0000017338,0.0000017336, -0.0000017214,0.0000017102,0.0000016947,0.0000016804,0.0000016742, -0.0000016698,0.0000016645,0.0000016613,0.0000016611,0.0000016624, -0.0000016624,0.0000016612,0.0000016601,0.0000016597,0.0000016594, -0.0000016579,0.0000016545,0.0000016504,0.0000016489,0.0000016513, -0.0000016559,0.0000016645,0.0000016719,0.0000016738,0.0000016684, -0.0000016579,0.0000016477,0.0000016391,0.0000016362,0.0000016377, -0.0000016433,0.0000016484,0.0000016556,0.0000016690,0.0000016890, -0.0000017061,0.0000017217,0.0000017434,0.0000017469,0.0000017205, -0.0000016889,0.0000016686,0.0000016491,0.0000016204,0.0000015922, -0.0000015709,0.0000015509,0.0000015402,0.0000015274,0.0000014921, -0.0000014560,0.0000014405,0.0000014389,0.0000014418,0.0000014452, -0.0000014459,0.0000014546,0.0000014740,0.0000014885,0.0000014952, -0.0000014976,0.0000014984,0.0000014993,0.0000015002,0.0000015010, -0.0000015023,0.0000015041,0.0000015055,0.0000015059,0.0000015030, -0.0000014942,0.0000014830,0.0000014787,0.0000014849,0.0000015035, -0.0000015220,0.0000015316,0.0000015321,0.0000015280,0.0000015182, -0.0000015093,0.0000015043,0.0000015010,0.0000014991,0.0000014993, -0.0000014994,0.0000014961,0.0000014877,0.0000014761,0.0000014647, -0.0000014568,0.0000014558,0.0000014693,0.0000014873,0.0000014967, -0.0000014985,0.0000014997,0.0000015035,0.0000015083,0.0000015103, -0.0000015102,0.0000015084,0.0000015066,0.0000015052,0.0000015040, -0.0000015041,0.0000015058,0.0000015089,0.0000015094,0.0000015046, -0.0000014969,0.0000014933,0.0000014948,0.0000014982,0.0000014973, -0.0000014901,0.0000014780,0.0000014666,0.0000014595,0.0000014568, -0.0000014553,0.0000014517,0.0000014464,0.0000014413,0.0000014392, -0.0000014397,0.0000014407,0.0000014394,0.0000014344,0.0000014267, -0.0000014185,0.0000014167,0.0000014388,0.0000014978,0.0000015708, -0.0000016239,0.0000016435,0.0000016469,0.0000016538,0.0000016574, -0.0000016310,0.0000015723,0.0000015547,0.0000015781,0.0000015970, -0.0000015847,0.0000015580,0.0000015443,0.0000015459,0.0000015583, -0.0000015760,0.0000015962,0.0000016139,0.0000016064,0.0000015565, -0.0000015036,0.0000014948,0.0000015224,0.0000015463,0.0000015442, -0.0000015454,0.0000015654,0.0000015665,0.0000015396,0.0000015088, -0.0000014696,0.0000014493,0.0000014464,0.0000014166,0.0000013742, -0.0000013591,0.0000013616,0.0000013541,0.0000013548,0.0000013766, -0.0000013826,0.0000013780,0.0000013791,0.0000013807,0.0000013781, -0.0000013742,0.0000013737,0.0000013764,0.0000013797,0.0000013817, -0.0000013833,0.0000013849,0.0000013857,0.0000013858,0.0000013864, -0.0000013899,0.0000013998,0.0000014204,0.0000014519,0.0000014859, -0.0000015060,0.0000015165,0.0000015139,0.0000015032,0.0000014933, -0.0000014914,0.0000014915,0.0000014899,0.0000014836,0.0000014776, -0.0000014761,0.0000014807,0.0000015005,0.0000015109,0.0000015056, -0.0000015319,0.0000015486,0.0000015377,0.0000015323,0.0000015258, -0.0000015291,0.0000015419,0.0000015812,0.0000017022,0.0000018346, -0.0000018249,0.0000017590,0.0000017615,0.0000017604,0.0000017584, -0.0000017777,0.0000017700,0.0000017477,0.0000017418,0.0000017460, -0.0000017595,0.0000017853,0.0000018113,0.0000018295,0.0000018392, -0.0000018438,0.0000018454,0.0000018419,0.0000018252,0.0000017987, -0.0000017729,0.0000017580,0.0000017577,0.0000017625,0.0000017619, -0.0000017560,0.0000017508,0.0000017499,0.0000017538,0.0000017620, -0.0000017737,0.0000017867,0.0000017976,0.0000018017,0.0000018009, -0.0000018056,0.0000018224,0.0000018257,0.0000017998,0.0000017751, -0.0000017707,0.0000017644,0.0000017377,0.0000017073,0.0000016923, -0.0000016847,0.0000016751,0.0000016657,0.0000016588,0.0000016545, -0.0000016536,0.0000016505,0.0000016226,0.0000016004,0.0000016261, -0.0000016772,0.0000017002,0.0000017060,0.0000017266,0.0000017543, -0.0000017734,0.0000017840,0.0000017898,0.0000017916,0.0000017917, -0.0000017916,0.0000017911,0.0000017837,0.0000017667,0.0000017529, -0.0000017418,0.0000017216,0.0000016895,0.0000016503,0.0000016153, -0.0000015889,0.0000015741,0.0000015755,0.0000015864,0.0000016058, -0.0000016215,0.0000016414,0.0000016522,0.0000016531,0.0000016597, -0.0000016676,0.0000016773,0.0000016944,0.0000017080,0.0000017107, -0.0000017078,0.0000017035,0.0000016982,0.0000016871,0.0000016652, -0.0000016395,0.0000016258,0.0000016243,0.0000016246,0.0000016217, -0.0000016278,0.0000016358,0.0000016689,0.0000017067,0.0000016863, -0.0000016223,0.0000015897,0.0000015922,0.0000015878,0.0000015984, -0.0000016483,0.0000016650,0.0000016613,0.0000016046,0.0000015948, -0.0000015618,0.0000014794,0.0000014794,0.0000014903,0.0000015245, -0.0000015326,0.0000015294,0.0000015313,0.0000015351,0.0000015381, -0.0000015409,0.0000015429,0.0000015428,0.0000015400,0.0000015323, -0.0000015194,0.0000015095,0.0000015068,0.0000015075,0.0000015051, -0.0000014917,0.0000014824,0.0000014866,0.0000015121,0.0000015244, -0.0000015139,0.0000015071,0.0000015076,0.0000015045,0.0000014991, -0.0000014966,0.0000014940,0.0000014876,0.0000014923,0.0000015131, -0.0000015307,0.0000015313,0.0000015154,0.0000015156,0.0000015331, -0.0000015397,0.0000015608,0.0000015865,0.0000016025,0.0000016142, -0.0000016258,0.0000016356,0.0000016432,0.0000016484,0.0000016505, -0.0000016508,0.0000016486,0.0000016385,0.0000016250,0.0000016333, -0.0000016481,0.0000016312,0.0000016179,0.0000016293,0.0000016355, -0.0000016249,0.0000016055,0.0000015947,0.0000016170,0.0000016468, -0.0000016446,0.0000016338,0.0000016312,0.0000016418,0.0000016388, -0.0000016357,0.0000016530,0.0000016466,0.0000016210,0.0000016047, -0.0000015953,0.0000016007,0.0000016323,0.0000016893,0.0000017083, -0.0000016816,0.0000016649,0.0000016699,0.0000016677,0.0000016614, -0.0000016634,0.0000016669,0.0000016631,0.0000016581,0.0000016564, -0.0000016610,0.0000016805,0.0000016986,0.0000016979,0.0000016905, -0.0000016922,0.0000017064,0.0000017207,0.0000017297,0.0000017363, -0.0000017396,0.0000017385,0.0000017402,0.0000017695,0.0000017736, -0.0000017601,0.0000017824,0.0000017545,0.0000017310,0.0000017327, -0.0000017388,0.0000017423,0.0000017450,0.0000017460,0.0000017442, -0.0000017402,0.0000017357,0.0000017258,0.0000017126,0.0000017060, -0.0000017063,0.0000017040,0.0000016962,0.0000016844,0.0000016758, -0.0000016865,0.0000017208,0.0000017329,0.0000017216,0.0000017047, -0.0000016867,0.0000016766,0.0000016719,0.0000016646,0.0000016572, -0.0000016546,0.0000016560,0.0000016598,0.0000016612,0.0000016607, -0.0000016596,0.0000016580,0.0000016553,0.0000016516,0.0000016483, -0.0000016478,0.0000016501,0.0000016568,0.0000016665,0.0000016757, -0.0000016782,0.0000016715,0.0000016587,0.0000016469,0.0000016417, -0.0000016435,0.0000016505,0.0000016563,0.0000016598,0.0000016674, -0.0000016826,0.0000017007,0.0000017131,0.0000017281,0.0000017443, -0.0000017381,0.0000017074,0.0000016808,0.0000016647,0.0000016452, -0.0000016164,0.0000015898,0.0000015691,0.0000015490,0.0000015384, -0.0000015244,0.0000014883,0.0000014535,0.0000014396,0.0000014388, -0.0000014420,0.0000014448,0.0000014449,0.0000014545,0.0000014742, -0.0000014871,0.0000014923,0.0000014941,0.0000014953,0.0000014974, -0.0000014994,0.0000015006,0.0000015019,0.0000015044,0.0000015067, -0.0000015073,0.0000015053,0.0000014980,0.0000014870,0.0000014827, -0.0000014892,0.0000015060,0.0000015209,0.0000015284,0.0000015296, -0.0000015254,0.0000015158,0.0000015076,0.0000015022,0.0000014972, -0.0000014926,0.0000014908,0.0000014896,0.0000014841,0.0000014747, -0.0000014649,0.0000014593,0.0000014605,0.0000014735,0.0000014881, -0.0000014951,0.0000014964,0.0000014971,0.0000015008,0.0000015062, -0.0000015094,0.0000015098,0.0000015087,0.0000015080,0.0000015085, -0.0000015086,0.0000015069,0.0000015048,0.0000015047,0.0000015058, -0.0000015060,0.0000015027,0.0000014967,0.0000014939,0.0000014952, -0.0000014960,0.0000014907,0.0000014796,0.0000014673,0.0000014577, -0.0000014533,0.0000014527,0.0000014536,0.0000014523,0.0000014466, -0.0000014379,0.0000014309,0.0000014283,0.0000014289,0.0000014301, -0.0000014282,0.0000014221,0.0000014149,0.0000014151,0.0000014474, -0.0000015145,0.0000015878,0.0000016331,0.0000016456,0.0000016504, -0.0000016571,0.0000016440,0.0000015859,0.0000015510,0.0000015685, -0.0000015935,0.0000015856,0.0000015596,0.0000015447,0.0000015420, -0.0000015429,0.0000015502,0.0000015662,0.0000015853,0.0000015883, -0.0000015554,0.0000015072,0.0000014912,0.0000015095,0.0000015404, -0.0000015500,0.0000015460,0.0000015535,0.0000015670,0.0000015582, -0.0000015310,0.0000014977,0.0000014569,0.0000014440,0.0000014399, -0.0000014021,0.0000013635,0.0000013569,0.0000013603,0.0000013484, -0.0000013462,0.0000013601,0.0000013656,0.0000013650,0.0000013633, -0.0000013631,0.0000013633,0.0000013635,0.0000013637,0.0000013638, -0.0000013638,0.0000013656,0.0000013704,0.0000013771,0.0000013830, -0.0000013869,0.0000013890,0.0000013900,0.0000013889,0.0000013906, -0.0000014014,0.0000014259,0.0000014631,0.0000015035,0.0000015201, -0.0000015187,0.0000015026,0.0000014912,0.0000014893,0.0000014874, -0.0000014816,0.0000014759,0.0000014749,0.0000014861,0.0000015087, -0.0000015062,0.0000015122,0.0000015433,0.0000015427,0.0000015343, -0.0000015281,0.0000015233,0.0000015347,0.0000015568,0.0000016448, -0.0000017875,0.0000018406,0.0000017642,0.0000017601,0.0000017794, -0.0000017538,0.0000017618,0.0000017741,0.0000017605,0.0000017489, -0.0000017472,0.0000017468,0.0000017537,0.0000017703,0.0000017907, -0.0000018082,0.0000018179,0.0000018173,0.0000018055,0.0000017853, -0.0000017656,0.0000017567,0.0000017602,0.0000017646,0.0000017620, -0.0000017546,0.0000017488,0.0000017475,0.0000017505,0.0000017577, -0.0000017678,0.0000017789,0.0000017888,0.0000017947,0.0000017961, -0.0000017959,0.0000018058,0.0000018254,0.0000018263,0.0000018005, -0.0000017781,0.0000017742,0.0000017724,0.0000017530,0.0000017197, -0.0000016965,0.0000016859,0.0000016756,0.0000016650,0.0000016583, -0.0000016554,0.0000016566,0.0000016552,0.0000016284,0.0000016024, -0.0000016261,0.0000016783,0.0000017019,0.0000017065,0.0000017248, -0.0000017532,0.0000017741,0.0000017849,0.0000017889,0.0000017889, -0.0000017888,0.0000017892,0.0000017868,0.0000017729,0.0000017556, -0.0000017452,0.0000017324,0.0000017096,0.0000016750,0.0000016355, -0.0000016039,0.0000015820,0.0000015750,0.0000015804,0.0000015993, -0.0000016180,0.0000016414,0.0000016534,0.0000016551,0.0000016656, -0.0000016766,0.0000016897,0.0000017069,0.0000017130,0.0000017112, -0.0000017070,0.0000017000,0.0000016967,0.0000016948,0.0000016865, -0.0000016596,0.0000016323,0.0000016246,0.0000016271,0.0000016255, -0.0000016261,0.0000016345,0.0000016523,0.0000017002,0.0000017028, -0.0000016552,0.0000016083,0.0000015931,0.0000015948,0.0000016131, -0.0000016562,0.0000016649,0.0000016674,0.0000016110,0.0000015951, -0.0000015761,0.0000014873,0.0000014802,0.0000014829,0.0000015071, -0.0000015308,0.0000015316,0.0000015307,0.0000015322,0.0000015347, -0.0000015363,0.0000015364,0.0000015337,0.0000015265,0.0000015154, -0.0000015064,0.0000015028,0.0000015045,0.0000015039,0.0000014935, -0.0000014877,0.0000014993,0.0000015208,0.0000015274,0.0000015148, -0.0000015046,0.0000015038,0.0000015013,0.0000014971,0.0000014943, -0.0000014902,0.0000014869,0.0000014947,0.0000015190,0.0000015362, -0.0000015365,0.0000015203,0.0000015180,0.0000015322,0.0000015396, -0.0000015646,0.0000015899,0.0000016086,0.0000016220,0.0000016316, -0.0000016370,0.0000016405,0.0000016441,0.0000016462,0.0000016469, -0.0000016469,0.0000016420,0.0000016267,0.0000016200,0.0000016386, -0.0000016411,0.0000016194,0.0000016155,0.0000016267,0.0000016252, -0.0000016084,0.0000015937,0.0000016070,0.0000016412,0.0000016461, -0.0000016367,0.0000016295,0.0000016419,0.0000016480,0.0000016385, -0.0000016472,0.0000016530,0.0000016298,0.0000016099,0.0000015985, -0.0000015963,0.0000016216,0.0000016793,0.0000017109,0.0000016863, -0.0000016657,0.0000016698,0.0000016671,0.0000016579,0.0000016605, -0.0000016611,0.0000016576,0.0000016560,0.0000016551,0.0000016539, -0.0000016625,0.0000016885,0.0000017004,0.0000016940,0.0000016891, -0.0000016961,0.0000017112,0.0000017233,0.0000017316,0.0000017353, -0.0000017339,0.0000017461,0.0000017776,0.0000017647,0.0000017639, -0.0000017930,0.0000017435,0.0000017341,0.0000017391,0.0000017479, -0.0000017507,0.0000017492,0.0000017469,0.0000017438,0.0000017400, -0.0000017363,0.0000017285,0.0000017149,0.0000017048,0.0000017060, -0.0000017083,0.0000017036,0.0000016927,0.0000016768,0.0000016746, -0.0000017007,0.0000017232,0.0000017182,0.0000016996,0.0000016838, -0.0000016766,0.0000016711,0.0000016608,0.0000016525,0.0000016508, -0.0000016544,0.0000016601,0.0000016620,0.0000016610,0.0000016580, -0.0000016543,0.0000016513,0.0000016494,0.0000016494,0.0000016518, -0.0000016580,0.0000016683,0.0000016802,0.0000016857,0.0000016782, -0.0000016639,0.0000016530,0.0000016497,0.0000016576,0.0000016656, -0.0000016668,0.0000016675,0.0000016775,0.0000016938,0.0000017081, -0.0000017173,0.0000017341,0.0000017420,0.0000017244,0.0000016931, -0.0000016728,0.0000016603,0.0000016406,0.0000016119,0.0000015867, -0.0000015657,0.0000015459,0.0000015361,0.0000015198,0.0000014821, -0.0000014494,0.0000014381,0.0000014384,0.0000014421,0.0000014443, -0.0000014435,0.0000014539,0.0000014740,0.0000014854,0.0000014892, -0.0000014910,0.0000014931,0.0000014967,0.0000014998,0.0000015011, -0.0000015026,0.0000015058,0.0000015091,0.0000015095,0.0000015066, -0.0000014999,0.0000014903,0.0000014860,0.0000014917,0.0000015054, -0.0000015182,0.0000015257,0.0000015282,0.0000015244,0.0000015169, -0.0000015101,0.0000015055,0.0000015002,0.0000014937,0.0000014888, -0.0000014852,0.0000014798,0.0000014730,0.0000014704,0.0000014733, -0.0000014821,0.0000014907,0.0000014938,0.0000014941,0.0000014946, -0.0000014974,0.0000015024,0.0000015062,0.0000015075,0.0000015083, -0.0000015104,0.0000015138,0.0000015168,0.0000015172,0.0000015135, -0.0000015079,0.0000015049,0.0000015049,0.0000015050,0.0000015026, -0.0000014982,0.0000014956,0.0000014950,0.0000014924,0.0000014840, -0.0000014730,0.0000014618,0.0000014530,0.0000014480,0.0000014470, -0.0000014487,0.0000014496,0.0000014442,0.0000014339,0.0000014219, -0.0000014143,0.0000014122,0.0000014138,0.0000014156,0.0000014138, -0.0000014100,0.0000014160,0.0000014585,0.0000015338,0.0000016054, -0.0000016411,0.0000016490,0.0000016558,0.0000016528,0.0000016038, -0.0000015549,0.0000015599,0.0000015880,0.0000015880,0.0000015635, -0.0000015494,0.0000015456,0.0000015440,0.0000015432,0.0000015469, -0.0000015569,0.0000015602,0.0000015389,0.0000015010,0.0000014849, -0.0000014998,0.0000015331,0.0000015519,0.0000015507,0.0000015505, -0.0000015628,0.0000015662,0.0000015466,0.0000015197,0.0000014820, -0.0000014460,0.0000014407,0.0000014308,0.0000013875,0.0000013556, -0.0000013557,0.0000013605,0.0000013491,0.0000013411,0.0000013413, -0.0000013424,0.0000013421,0.0000013398,0.0000013364,0.0000013328, -0.0000013300,0.0000013279,0.0000013247,0.0000013224,0.0000013231, -0.0000013292,0.0000013408,0.0000013562,0.0000013720,0.0000013842, -0.0000013902,0.0000013915,0.0000013907,0.0000013874,0.0000013933, -0.0000014198,0.0000014662,0.0000015125,0.0000015251,0.0000015105, -0.0000014914,0.0000014851,0.0000014838,0.0000014800,0.0000014757, -0.0000014777,0.0000014974,0.0000015103,0.0000015033,0.0000015273, -0.0000015451,0.0000015374,0.0000015300,0.0000015228,0.0000015279, -0.0000015420,0.0000015969,0.0000017352,0.0000018346,0.0000017920, -0.0000017621,0.0000017893,0.0000017656,0.0000017487,0.0000017647, -0.0000017670,0.0000017584,0.0000017564,0.0000017529,0.0000017492, -0.0000017506,0.0000017588,0.0000017697,0.0000017766,0.0000017768, -0.0000017693,0.0000017614,0.0000017591,0.0000017633,0.0000017644, -0.0000017605,0.0000017544,0.0000017506,0.0000017502,0.0000017523, -0.0000017569,0.0000017627,0.0000017701,0.0000017781,0.0000017861, -0.0000017918,0.0000017931,0.0000017927,0.0000018035,0.0000018250, -0.0000018279,0.0000018040,0.0000017821,0.0000017777,0.0000017776, -0.0000017673,0.0000017356,0.0000017038,0.0000016870,0.0000016758, -0.0000016642,0.0000016586,0.0000016587,0.0000016596,0.0000016571, -0.0000016291,0.0000016049,0.0000016312,0.0000016825,0.0000017041, -0.0000017069,0.0000017233,0.0000017522,0.0000017739,0.0000017839, -0.0000017859,0.0000017857,0.0000017862,0.0000017855,0.0000017769, -0.0000017594,0.0000017457,0.0000017379,0.0000017227,0.0000016963, -0.0000016589,0.0000016219,0.0000015952,0.0000015784,0.0000015758, -0.0000015891,0.0000016097,0.0000016350,0.0000016517,0.0000016563, -0.0000016685,0.0000016831,0.0000016981,0.0000017121,0.0000017130, -0.0000017117,0.0000017041,0.0000016911,0.0000016875,0.0000016918, -0.0000016947,0.0000016830,0.0000016504,0.0000016292,0.0000016296, -0.0000016308,0.0000016284,0.0000016338,0.0000016406,0.0000016861, -0.0000017079,0.0000016856,0.0000016431,0.0000016181,0.0000016199, -0.0000016366,0.0000016604,0.0000016659,0.0000016690,0.0000016165, -0.0000015959,0.0000015875,0.0000014977,0.0000014819,0.0000014812, -0.0000014897,0.0000015174,0.0000015294,0.0000015311,0.0000015318, -0.0000015326,0.0000015316,0.0000015279,0.0000015207,0.0000015110, -0.0000015025,0.0000014989,0.0000015026,0.0000015049,0.0000015001, -0.0000014981,0.0000015096,0.0000015267,0.0000015285,0.0000015150, -0.0000015025,0.0000015009,0.0000014990,0.0000014960,0.0000014931, -0.0000014881,0.0000014875,0.0000015030,0.0000015276,0.0000015416, -0.0000015402,0.0000015242,0.0000015224,0.0000015321,0.0000015423, -0.0000015699,0.0000015964,0.0000016158,0.0000016280,0.0000016336, -0.0000016358,0.0000016380,0.0000016410,0.0000016431,0.0000016436, -0.0000016440,0.0000016429,0.0000016327,0.0000016160,0.0000016227, -0.0000016403,0.0000016292,0.0000016127,0.0000016162,0.0000016218, -0.0000016118,0.0000015926,0.0000015985,0.0000016327,0.0000016453, -0.0000016395,0.0000016297,0.0000016388,0.0000016518,0.0000016435, -0.0000016418,0.0000016531,0.0000016382,0.0000016158,0.0000016017, -0.0000015950,0.0000016109,0.0000016665,0.0000017065,0.0000016899, -0.0000016688,0.0000016700,0.0000016668,0.0000016554,0.0000016573, -0.0000016551,0.0000016555,0.0000016615,0.0000016640,0.0000016604, -0.0000016581,0.0000016743,0.0000016984,0.0000017006,0.0000016924, -0.0000016930,0.0000017037,0.0000017163,0.0000017259,0.0000017307, -0.0000017335,0.0000017567,0.0000017783,0.0000017579,0.0000017679, -0.0000018001,0.0000017393,0.0000017368,0.0000017475,0.0000017615, -0.0000017658,0.0000017615,0.0000017557,0.0000017482,0.0000017397, -0.0000017312,0.0000017235,0.0000017137,0.0000017031,0.0000017046, -0.0000017096,0.0000017092,0.0000017005,0.0000016822,0.0000016721, -0.0000016809,0.0000017026,0.0000017088,0.0000016968,0.0000016845, -0.0000016797,0.0000016725,0.0000016603,0.0000016518,0.0000016508, -0.0000016547,0.0000016600,0.0000016615,0.0000016603,0.0000016569, -0.0000016544,0.0000016541,0.0000016557,0.0000016569,0.0000016600, -0.0000016689,0.0000016824,0.0000016913,0.0000016866,0.0000016706, -0.0000016600,0.0000016632,0.0000016702,0.0000016730,0.0000016704, -0.0000016706,0.0000016827,0.0000017002,0.0000017116,0.0000017200, -0.0000017369,0.0000017357,0.0000017084,0.0000016808,0.0000016658, -0.0000016548,0.0000016341,0.0000016066,0.0000015836,0.0000015624, -0.0000015436,0.0000015343,0.0000015136,0.0000014735,0.0000014434, -0.0000014353,0.0000014370,0.0000014415,0.0000014427,0.0000014413, -0.0000014527,0.0000014730,0.0000014833,0.0000014862,0.0000014887, -0.0000014923,0.0000014966,0.0000015002,0.0000015024,0.0000015040, -0.0000015075,0.0000015111,0.0000015114,0.0000015080,0.0000015014, -0.0000014930,0.0000014888,0.0000014930,0.0000015039,0.0000015149, -0.0000015222,0.0000015257,0.0000015242,0.0000015196,0.0000015144, -0.0000015102,0.0000015049,0.0000014977,0.0000014915,0.0000014888, -0.0000014881,0.0000014878,0.0000014893,0.0000014926,0.0000014945, -0.0000014943,0.0000014938,0.0000014940,0.0000014955,0.0000014990, -0.0000015025,0.0000015041,0.0000015054,0.0000015096,0.0000015173, -0.0000015252,0.0000015294,0.0000015289,0.0000015229,0.0000015129, -0.0000015060,0.0000015047,0.0000015048,0.0000015032,0.0000014995, -0.0000014962,0.0000014936,0.0000014878,0.0000014785,0.0000014688, -0.0000014595,0.0000014505,0.0000014452,0.0000014444,0.0000014467, -0.0000014496,0.0000014451,0.0000014344,0.0000014207,0.0000014079, -0.0000013999,0.0000013956,0.0000013969,0.0000013988,0.0000013999, -0.0000014177,0.0000014752,0.0000015580,0.0000016235,0.0000016478, -0.0000016542,0.0000016570,0.0000016243,0.0000015619,0.0000015546, -0.0000015835,0.0000015899,0.0000015698,0.0000015538,0.0000015486, -0.0000015461,0.0000015440,0.0000015422,0.0000015403,0.0000015344, -0.0000015155,0.0000014877,0.0000014752,0.0000014901,0.0000015252, -0.0000015503,0.0000015541,0.0000015525,0.0000015595,0.0000015659, -0.0000015563,0.0000015333,0.0000015050,0.0000014647,0.0000014403, -0.0000014401,0.0000014219,0.0000013774,0.0000013501,0.0000013511, -0.0000013581,0.0000013547,0.0000013463,0.0000013413,0.0000013374, -0.0000013345,0.0000013327,0.0000013314,0.0000013300,0.0000013280, -0.0000013252,0.0000013210,0.0000013159,0.0000013112,0.0000013080, -0.0000013089,0.0000013210,0.0000013431,0.0000013664,0.0000013808, -0.0000013861,0.0000013878,0.0000013859,0.0000013821,0.0000013914, -0.0000014338,0.0000014956,0.0000015219,0.0000015108,0.0000014875, -0.0000014815,0.0000014832,0.0000014811,0.0000014774,0.0000014861, -0.0000015083,0.0000015044,0.0000015101,0.0000015408,0.0000015411, -0.0000015323,0.0000015251,0.0000015221,0.0000015338,0.0000015655, -0.0000016806,0.0000018150,0.0000018242,0.0000017705,0.0000017881, -0.0000017879,0.0000017478,0.0000017486,0.0000017629,0.0000017626, -0.0000017598,0.0000017595,0.0000017551,0.0000017516,0.0000017523, -0.0000017559,0.0000017594,0.0000017608,0.0000017610,0.0000017632, -0.0000017650,0.0000017625,0.0000017578,0.0000017549,0.0000017539, -0.0000017546,0.0000017561,0.0000017573,0.0000017595,0.0000017608, -0.0000017629,0.0000017677,0.0000017755,0.0000017840,0.0000017892, -0.0000017904,0.0000017964,0.0000018171,0.0000018280,0.0000018117, -0.0000017887,0.0000017798,0.0000017794,0.0000017754,0.0000017496, -0.0000017126,0.0000016890,0.0000016753,0.0000016637,0.0000016599, -0.0000016618,0.0000016637,0.0000016590,0.0000016288,0.0000016095, -0.0000016387,0.0000016874,0.0000017058,0.0000017073,0.0000017226, -0.0000017506,0.0000017721,0.0000017804,0.0000017810,0.0000017811, -0.0000017810,0.0000017759,0.0000017621,0.0000017465,0.0000017382, -0.0000017295,0.0000017114,0.0000016818,0.0000016435,0.0000016112, -0.0000015884,0.0000015759,0.0000015790,0.0000015972,0.0000016238, -0.0000016477,0.0000016561,0.0000016673,0.0000016851,0.0000017010, -0.0000017120,0.0000017130,0.0000017118,0.0000017023,0.0000016819, -0.0000016748,0.0000016799,0.0000016918,0.0000016966,0.0000016762, -0.0000016433,0.0000016336,0.0000016356,0.0000016336,0.0000016340, -0.0000016372,0.0000016666,0.0000017050,0.0000017044,0.0000016779, -0.0000016540,0.0000016492,0.0000016547,0.0000016672,0.0000016693, -0.0000016706,0.0000016191,0.0000015977,0.0000015960,0.0000015083, -0.0000014845,0.0000014828,0.0000014801,0.0000014970,0.0000015151, -0.0000015234,0.0000015252,0.0000015242,0.0000015206,0.0000015146, -0.0000015062,0.0000014976,0.0000014947,0.0000015010,0.0000015069, -0.0000015063,0.0000015063,0.0000015145,0.0000015275,0.0000015297, -0.0000015155,0.0000015008,0.0000014988,0.0000014974,0.0000014953, -0.0000014931,0.0000014909,0.0000014926,0.0000015141,0.0000015367, -0.0000015454,0.0000015422,0.0000015270,0.0000015250,0.0000015329, -0.0000015474,0.0000015775,0.0000016044,0.0000016207,0.0000016284, -0.0000016310,0.0000016322,0.0000016349,0.0000016389,0.0000016413, -0.0000016415,0.0000016413,0.0000016415,0.0000016367,0.0000016199, -0.0000016110,0.0000016293,0.0000016352,0.0000016174,0.0000016114, -0.0000016167,0.0000016137,0.0000015953,0.0000015915,0.0000016231, -0.0000016459,0.0000016424,0.0000016306,0.0000016339,0.0000016509, -0.0000016492,0.0000016406,0.0000016522,0.0000016468,0.0000016220, -0.0000016031,0.0000015937,0.0000016035,0.0000016518,0.0000017017, -0.0000016946,0.0000016697,0.0000016689,0.0000016669,0.0000016540, -0.0000016540,0.0000016498,0.0000016544,0.0000016683,0.0000016778, -0.0000016766,0.0000016684,0.0000016670,0.0000016882,0.0000017033, -0.0000016999,0.0000016962,0.0000017021,0.0000017124,0.0000017213, -0.0000017272,0.0000017364,0.0000017657,0.0000017724,0.0000017552, -0.0000017735,0.0000018041,0.0000017418,0.0000017423,0.0000017592, -0.0000017786,0.0000017863,0.0000017837,0.0000017768,0.0000017651, -0.0000017475,0.0000017283,0.0000017160,0.0000017094,0.0000017020, -0.0000017039,0.0000017106,0.0000017110,0.0000017064,0.0000016918, -0.0000016743,0.0000016698,0.0000016827,0.0000016947,0.0000016940, -0.0000016865,0.0000016817,0.0000016741,0.0000016636,0.0000016563, -0.0000016546,0.0000016567,0.0000016594,0.0000016602,0.0000016599, -0.0000016593,0.0000016609,0.0000016634,0.0000016641,0.0000016639, -0.0000016689,0.0000016820,0.0000016933,0.0000016933,0.0000016804, -0.0000016697,0.0000016728,0.0000016787,0.0000016761,0.0000016705, -0.0000016709,0.0000016848,0.0000017026,0.0000017125,0.0000017218, -0.0000017371,0.0000017261,0.0000016946,0.0000016708,0.0000016589, -0.0000016479,0.0000016259,0.0000016002,0.0000015794,0.0000015582, -0.0000015419,0.0000015328,0.0000015060,0.0000014635,0.0000014370, -0.0000014327,0.0000014351,0.0000014396,0.0000014397,0.0000014378, -0.0000014500,0.0000014710,0.0000014815,0.0000014841,0.0000014874, -0.0000014925,0.0000014974,0.0000015008,0.0000015036,0.0000015060, -0.0000015087,0.0000015118,0.0000015128,0.0000015092,0.0000015027, -0.0000014959,0.0000014929,0.0000014957,0.0000015038,0.0000015127, -0.0000015195,0.0000015242,0.0000015251,0.0000015229,0.0000015187, -0.0000015143,0.0000015092,0.0000015030,0.0000014978,0.0000014965, -0.0000014980,0.0000014995,0.0000014990,0.0000014970,0.0000014953, -0.0000014949,0.0000014953,0.0000014961,0.0000014978,0.0000015000, -0.0000015015,0.0000015024,0.0000015059,0.0000015152,0.0000015264, -0.0000015331,0.0000015357,0.0000015357,0.0000015303,0.0000015190, -0.0000015086,0.0000015049,0.0000015048,0.0000015037,0.0000015002, -0.0000014961,0.0000014919,0.0000014847,0.0000014753,0.0000014672, -0.0000014600,0.0000014546,0.0000014536,0.0000014553,0.0000014593, -0.0000014639,0.0000014614,0.0000014522,0.0000014378,0.0000014204, -0.0000014006,0.0000013847,0.0000013790,0.0000013811,0.0000013897, -0.0000014263,0.0000015012,0.0000015873,0.0000016398,0.0000016539, -0.0000016588,0.0000016435,0.0000015805,0.0000015504,0.0000015746, -0.0000015927,0.0000015768,0.0000015544,0.0000015428,0.0000015357, -0.0000015319,0.0000015295,0.0000015241,0.0000015119,0.0000014925, -0.0000014725,0.0000014670,0.0000014820,0.0000015173,0.0000015470, -0.0000015553,0.0000015554,0.0000015589,0.0000015651,0.0000015597, -0.0000015411,0.0000015188,0.0000014879,0.0000014513,0.0000014367, -0.0000014378,0.0000014174,0.0000013749,0.0000013478,0.0000013436, -0.0000013473,0.0000013464,0.0000013420,0.0000013366,0.0000013314, -0.0000013270,0.0000013231,0.0000013197,0.0000013170,0.0000013154, -0.0000013141,0.0000013131,0.0000013113,0.0000013085,0.0000013051, -0.0000013024,0.0000013037,0.0000013170,0.0000013436,0.0000013672, -0.0000013768,0.0000013808,0.0000013829,0.0000013780,0.0000013752, -0.0000014126,0.0000014859,0.0000015202,0.0000015057,0.0000014820, -0.0000014811,0.0000014860,0.0000014823,0.0000014817,0.0000014995, -0.0000015082,0.0000015011,0.0000015280,0.0000015434,0.0000015354, -0.0000015272,0.0000015208,0.0000015289,0.0000015472,0.0000016234, -0.0000017667,0.0000018333,0.0000017686,0.0000017739,0.0000018061, -0.0000017627,0.0000017406,0.0000017525,0.0000017612,0.0000017584, -0.0000017604,0.0000017619,0.0000017594,0.0000017580,0.0000017589, -0.0000017623,0.0000017664,0.0000017678,0.0000017658,0.0000017603, -0.0000017556,0.0000017535,0.0000017524,0.0000017521,0.0000017531, -0.0000017540,0.0000017533,0.0000017514,0.0000017499,0.0000017500, -0.0000017525,0.0000017588,0.0000017685,0.0000017787,0.0000017842, -0.0000017867,0.0000018020,0.0000018228,0.0000018199,0.0000017979, -0.0000017836,0.0000017813,0.0000017798,0.0000017591,0.0000017209, -0.0000016912,0.0000016741,0.0000016631,0.0000016620,0.0000016684, -0.0000016722,0.0000016627,0.0000016286,0.0000016151,0.0000016467, -0.0000016920,0.0000017073,0.0000017083,0.0000017219,0.0000017475, -0.0000017674,0.0000017742,0.0000017743,0.0000017738,0.0000017710, -0.0000017613,0.0000017471,0.0000017368,0.0000017314,0.0000017197, -0.0000016987,0.0000016665,0.0000016302,0.0000016026,0.0000015819, -0.0000015744,0.0000015842,0.0000016086,0.0000016383,0.0000016539, -0.0000016634,0.0000016815,0.0000016987,0.0000017099,0.0000017111, -0.0000017106,0.0000017036,0.0000016813,0.0000016670,0.0000016680, -0.0000016792,0.0000016959,0.0000016964,0.0000016676,0.0000016412, -0.0000016390,0.0000016397,0.0000016367,0.0000016377,0.0000016483, -0.0000016921,0.0000017102,0.0000017013,0.0000016832,0.0000016713, -0.0000016671,0.0000016777,0.0000016739,0.0000016727,0.0000016186, -0.0000016000,0.0000016031,0.0000015174,0.0000014873,0.0000014871, -0.0000014789,0.0000014814,0.0000014979,0.0000015057,0.0000015097, -0.0000015097,0.0000015067,0.0000015003,0.0000014920,0.0000014898, -0.0000014993,0.0000015093,0.0000015102,0.0000015099,0.0000015137, -0.0000015237,0.0000015294,0.0000015171,0.0000015000,0.0000014970, -0.0000014968,0.0000014964,0.0000014944,0.0000014934,0.0000015036, -0.0000015266,0.0000015426,0.0000015447,0.0000015404,0.0000015282, -0.0000015267,0.0000015344,0.0000015554,0.0000015869,0.0000016116, -0.0000016230,0.0000016259,0.0000016264,0.0000016273,0.0000016313, -0.0000016369,0.0000016406,0.0000016406,0.0000016391,0.0000016389, -0.0000016375,0.0000016262,0.0000016080,0.0000016143,0.0000016311, -0.0000016239,0.0000016119,0.0000016134,0.0000016134,0.0000015991, -0.0000015885,0.0000016137,0.0000016430,0.0000016442,0.0000016349, -0.0000016312,0.0000016455,0.0000016513,0.0000016403,0.0000016484, -0.0000016535,0.0000016290,0.0000016056,0.0000015957,0.0000015971, -0.0000016366,0.0000016953,0.0000016998,0.0000016731,0.0000016681, -0.0000016671,0.0000016534,0.0000016509,0.0000016464,0.0000016513, -0.0000016688,0.0000016852,0.0000016888,0.0000016840,0.0000016741, -0.0000016782,0.0000016987,0.0000017062,0.0000017027,0.0000017045, -0.0000017118,0.0000017187,0.0000017248,0.0000017413,0.0000017679, -0.0000017604,0.0000017555,0.0000017813,0.0000018080,0.0000017501, -0.0000017520,0.0000017717,0.0000017949,0.0000018064,0.0000018062, -0.0000018017,0.0000017908,0.0000017665,0.0000017335,0.0000017110, -0.0000017045,0.0000017015,0.0000017042,0.0000017112,0.0000017106, -0.0000017092,0.0000017003,0.0000016822,0.0000016692,0.0000016704, -0.0000016807,0.0000016858,0.0000016844,0.0000016798,0.0000016745, -0.0000016683,0.0000016634,0.0000016609,0.0000016603,0.0000016607, -0.0000016614,0.0000016628,0.0000016657,0.0000016690,0.0000016697, -0.0000016679,0.0000016693,0.0000016793,0.0000016917,0.0000016951, -0.0000016892,0.0000016812,0.0000016814,0.0000016831,0.0000016789, -0.0000016724,0.0000016714,0.0000016848,0.0000017030,0.0000017129, -0.0000017232,0.0000017352,0.0000017186,0.0000016877,0.0000016662, -0.0000016544,0.0000016410,0.0000016179,0.0000015944,0.0000015743, -0.0000015530,0.0000015403,0.0000015306,0.0000014979,0.0000014546, -0.0000014321,0.0000014302,0.0000014336,0.0000014371,0.0000014354, -0.0000014336,0.0000014468,0.0000014692,0.0000014805,0.0000014832, -0.0000014871,0.0000014935,0.0000014983,0.0000015014,0.0000015054, -0.0000015091,0.0000015121,0.0000015147,0.0000015149,0.0000015108, -0.0000015049,0.0000014995,0.0000014974,0.0000015000,0.0000015077, -0.0000015154,0.0000015201,0.0000015235,0.0000015258,0.0000015259, -0.0000015224,0.0000015178,0.0000015136,0.0000015092,0.0000015048, -0.0000015023,0.0000015018,0.0000015012,0.0000014993,0.0000014970, -0.0000014959,0.0000014961,0.0000014971,0.0000014984,0.0000014995, -0.0000014999,0.0000014999,0.0000015010,0.0000015081,0.0000015214, -0.0000015318,0.0000015342,0.0000015347,0.0000015348,0.0000015323, -0.0000015237,0.0000015117,0.0000015051,0.0000015044,0.0000015034, -0.0000014998,0.0000014956,0.0000014919,0.0000014852,0.0000014763, -0.0000014718,0.0000014696,0.0000014719,0.0000014759,0.0000014791, -0.0000014854,0.0000014917,0.0000014913,0.0000014839,0.0000014696, -0.0000014473,0.0000014136,0.0000013826,0.0000013693,0.0000013695, -0.0000013890,0.0000014482,0.0000015387,0.0000016177,0.0000016512, -0.0000016595,0.0000016560,0.0000016061,0.0000015541,0.0000015634, -0.0000015899,0.0000015824,0.0000015506,0.0000015234,0.0000015036, -0.0000014953,0.0000014951,0.0000014940,0.0000014863,0.0000014729, -0.0000014616,0.0000014622,0.0000014779,0.0000015115,0.0000015423, -0.0000015553,0.0000015567,0.0000015591,0.0000015629,0.0000015589, -0.0000015436,0.0000015247,0.0000015037,0.0000014729,0.0000014411, -0.0000014320,0.0000014367,0.0000014209,0.0000013866,0.0000013605, -0.0000013486,0.0000013460,0.0000013445,0.0000013419,0.0000013381, -0.0000013339,0.0000013298,0.0000013248,0.0000013189,0.0000013128, -0.0000013078,0.0000013050,0.0000013045,0.0000013044,0.0000013037, -0.0000013027,0.0000013009,0.0000012996,0.0000013043,0.0000013265, -0.0000013547,0.0000013679,0.0000013725,0.0000013767,0.0000013701, -0.0000013634,0.0000014068,0.0000014919,0.0000015234,0.0000014966, -0.0000014796,0.0000014860,0.0000014887,0.0000014830,0.0000014915, -0.0000015082,0.0000015002,0.0000015122,0.0000015430,0.0000015392, -0.0000015291,0.0000015224,0.0000015231,0.0000015351,0.0000015796, -0.0000017170,0.0000018213,0.0000017904,0.0000017665,0.0000018076, -0.0000017870,0.0000017417,0.0000017392,0.0000017538,0.0000017556, -0.0000017555,0.0000017617,0.0000017654,0.0000017671,0.0000017684, -0.0000017703,0.0000017699,0.0000017654,0.0000017585,0.0000017534, -0.0000017496,0.0000017462,0.0000017438,0.0000017434,0.0000017443, -0.0000017442,0.0000017426,0.0000017401,0.0000017377,0.0000017356, -0.0000017361,0.0000017413,0.0000017507,0.0000017617,0.0000017720, -0.0000017772,0.0000017851,0.0000018078,0.0000018205,0.0000018097, -0.0000017904,0.0000017834,0.0000017830,0.0000017647,0.0000017247, -0.0000016909,0.0000016720,0.0000016632,0.0000016676,0.0000016802, -0.0000016834,0.0000016655,0.0000016276,0.0000016170,0.0000016529, -0.0000016961,0.0000017092,0.0000017102,0.0000017208,0.0000017419, -0.0000017592,0.0000017657,0.0000017657,0.0000017642,0.0000017575, -0.0000017460,0.0000017351,0.0000017305,0.0000017240,0.0000017086, -0.0000016859,0.0000016521,0.0000016193,0.0000015945,0.0000015765, -0.0000015757,0.0000015932,0.0000016231,0.0000016477,0.0000016581, -0.0000016730,0.0000016917,0.0000017041,0.0000017065,0.0000017064, -0.0000017053,0.0000016875,0.0000016681,0.0000016651,0.0000016680, -0.0000016841,0.0000017012,0.0000016918,0.0000016573,0.0000016424, -0.0000016445,0.0000016421,0.0000016403,0.0000016408,0.0000016736, -0.0000017073,0.0000017121,0.0000017026,0.0000016900,0.0000016813, -0.0000016871,0.0000016774,0.0000016732,0.0000016156,0.0000016021, -0.0000016089,0.0000015249,0.0000014896,0.0000014906,0.0000014830, -0.0000014762,0.0000014848,0.0000014938,0.0000014955,0.0000014966, -0.0000014927,0.0000014852,0.0000014843,0.0000014967,0.0000015105, -0.0000015124,0.0000015099,0.0000015095,0.0000015162,0.0000015258, -0.0000015205,0.0000015026,0.0000014963,0.0000014975,0.0000014997, -0.0000015001,0.0000015016,0.0000015157,0.0000015369,0.0000015458, -0.0000015429,0.0000015369,0.0000015286,0.0000015277,0.0000015375, -0.0000015654,0.0000015973,0.0000016181,0.0000016253,0.0000016263, -0.0000016243,0.0000016245,0.0000016284,0.0000016346,0.0000016392, -0.0000016398,0.0000016376,0.0000016363,0.0000016360,0.0000016307, -0.0000016106,0.0000016047,0.0000016226,0.0000016259,0.0000016141, -0.0000016119,0.0000016129,0.0000016016,0.0000015887,0.0000016064, -0.0000016385,0.0000016439,0.0000016381,0.0000016298,0.0000016398, -0.0000016473,0.0000016399,0.0000016434,0.0000016527,0.0000016368, -0.0000016105,0.0000015972,0.0000015952,0.0000016232,0.0000016869, -0.0000017037,0.0000016767,0.0000016683,0.0000016679,0.0000016538, -0.0000016488,0.0000016455,0.0000016472,0.0000016619,0.0000016835, -0.0000016941,0.0000016923,0.0000016856,0.0000016784,0.0000016889, -0.0000017061,0.0000017088,0.0000017085,0.0000017116,0.0000017164, -0.0000017244,0.0000017463,0.0000017643,0.0000017494,0.0000017556, -0.0000017898,0.0000018127,0.0000017627,0.0000017638,0.0000017806, -0.0000018061,0.0000018182,0.0000018183,0.0000018176,0.0000018117, -0.0000017877,0.0000017446,0.0000017098,0.0000017007,0.0000017008, -0.0000017047,0.0000017115,0.0000017096,0.0000017085,0.0000017046, -0.0000016928,0.0000016770,0.0000016674,0.0000016700,0.0000016770, -0.0000016797,0.0000016783,0.0000016764,0.0000016736,0.0000016704, -0.0000016675,0.0000016656,0.0000016656,0.0000016671,0.0000016691, -0.0000016716,0.0000016725,0.0000016705,0.0000016699,0.0000016754, -0.0000016850,0.0000016916,0.0000016916,0.0000016886,0.0000016880, -0.0000016865,0.0000016814,0.0000016750,0.0000016733,0.0000016837, -0.0000017021,0.0000017131,0.0000017246,0.0000017338,0.0000017156, -0.0000016847,0.0000016638,0.0000016525,0.0000016365,0.0000016126, -0.0000015906,0.0000015698,0.0000015489,0.0000015393,0.0000015269, -0.0000014887,0.0000014469,0.0000014295,0.0000014288,0.0000014325, -0.0000014346,0.0000014309,0.0000014295,0.0000014448,0.0000014688, -0.0000014810,0.0000014836,0.0000014881,0.0000014952,0.0000014998, -0.0000015029,0.0000015076,0.0000015120,0.0000015150,0.0000015173, -0.0000015176,0.0000015144,0.0000015090,0.0000015039,0.0000015016, -0.0000015039,0.0000015110,0.0000015177,0.0000015209,0.0000015231, -0.0000015257,0.0000015271,0.0000015252,0.0000015209,0.0000015177, -0.0000015148,0.0000015105,0.0000015060,0.0000015033,0.0000015015, -0.0000014994,0.0000014975,0.0000014970,0.0000014973,0.0000014984, -0.0000014999,0.0000015001,0.0000014987,0.0000014976,0.0000014995, -0.0000015105,0.0000015251,0.0000015312,0.0000015307,0.0000015287, -0.0000015294,0.0000015302,0.0000015243,0.0000015131,0.0000015048, -0.0000015032,0.0000015023,0.0000014987,0.0000014956,0.0000014944, -0.0000014909,0.0000014849,0.0000014847,0.0000014883,0.0000014943, -0.0000014990,0.0000015027,0.0000015111,0.0000015196,0.0000015223, -0.0000015167,0.0000015027,0.0000014756,0.0000014313,0.0000013869, -0.0000013667,0.0000013663,0.0000014046,0.0000014887,0.0000015844, -0.0000016412,0.0000016583,0.0000016609,0.0000016312,0.0000015663, -0.0000015545,0.0000015851,0.0000015862,0.0000015482,0.0000015027, -0.0000014702,0.0000014560,0.0000014565,0.0000014607,0.0000014625, -0.0000014599,0.0000014600,0.0000014624,0.0000014796,0.0000015101, -0.0000015381,0.0000015528,0.0000015573,0.0000015595,0.0000015612, -0.0000015567,0.0000015423,0.0000015249,0.0000015089,0.0000014898, -0.0000014632,0.0000014362,0.0000014278,0.0000014343,0.0000014309, -0.0000014116,0.0000013940,0.0000013844,0.0000013817,0.0000013815, -0.0000013815,0.0000013807,0.0000013791,0.0000013754,0.0000013685, -0.0000013574,0.0000013433,0.0000013289,0.0000013163,0.0000013078, -0.0000013039,0.0000013029,0.0000013023,0.0000013003,0.0000012979, -0.0000013003,0.0000013198,0.0000013477,0.0000013604,0.0000013652, -0.0000013711,0.0000013598,0.0000013580,0.0000014263,0.0000015147, -0.0000015177,0.0000014859,0.0000014827,0.0000014920,0.0000014886, -0.0000014890,0.0000015044,0.0000015035,0.0000015022,0.0000015359, -0.0000015431,0.0000015322,0.0000015240,0.0000015199,0.0000015309, -0.0000015547,0.0000016559,0.0000017924,0.0000018196,0.0000017631, -0.0000017925,0.0000018159,0.0000017604,0.0000017329,0.0000017425, -0.0000017521,0.0000017517,0.0000017570,0.0000017651,0.0000017699, -0.0000017707,0.0000017687,0.0000017637,0.0000017578,0.0000017517, -0.0000017457,0.0000017418,0.0000017402,0.0000017402,0.0000017412, -0.0000017425,0.0000017431,0.0000017428,0.0000017411,0.0000017362, -0.0000017275,0.0000017206,0.0000017224,0.0000017324,0.0000017441, -0.0000017550,0.0000017658,0.0000017734,0.0000017891,0.0000018133, -0.0000018168,0.0000017991,0.0000017865,0.0000017845,0.0000017655, -0.0000017236,0.0000016883,0.0000016691,0.0000016644,0.0000016772, -0.0000016947,0.0000016937,0.0000016642,0.0000016249,0.0000016199, -0.0000016585,0.0000016997,0.0000017111,0.0000017120,0.0000017191, -0.0000017344,0.0000017484,0.0000017550,0.0000017556,0.0000017523, -0.0000017431,0.0000017330,0.0000017279,0.0000017246,0.0000017137, -0.0000016972,0.0000016734,0.0000016394,0.0000016098,0.0000015866, -0.0000015754,0.0000015821,0.0000016052,0.0000016347,0.0000016517, -0.0000016624,0.0000016798,0.0000016953,0.0000016993,0.0000016987, -0.0000017026,0.0000016961,0.0000016756,0.0000016668,0.0000016658, -0.0000016708,0.0000016924,0.0000017027,0.0000016801,0.0000016498, -0.0000016474,0.0000016484,0.0000016439,0.0000016414,0.0000016562, -0.0000016973,0.0000017134,0.0000017116,0.0000017038,0.0000016949, -0.0000016917,0.0000016794,0.0000016722,0.0000016119,0.0000016039, -0.0000016133,0.0000015305,0.0000014910,0.0000014920,0.0000014887, -0.0000014782,0.0000014768,0.0000014861,0.0000014875,0.0000014832, -0.0000014782,0.0000014777,0.0000014903,0.0000015076,0.0000015126, -0.0000015094,0.0000015032,0.0000015052,0.0000015184,0.0000015226, -0.0000015075,0.0000014967,0.0000014995,0.0000015058,0.0000015085, -0.0000015128,0.0000015273,0.0000015426,0.0000015438,0.0000015385, -0.0000015330,0.0000015287,0.0000015293,0.0000015434,0.0000015763, -0.0000016073,0.0000016238,0.0000016289,0.0000016293,0.0000016259, -0.0000016243,0.0000016274,0.0000016331,0.0000016374,0.0000016384, -0.0000016363,0.0000016345,0.0000016343,0.0000016326,0.0000016160, -0.0000015995,0.0000016118,0.0000016235,0.0000016157,0.0000016109, -0.0000016121,0.0000016027,0.0000015889,0.0000016015,0.0000016334, -0.0000016437,0.0000016415,0.0000016307,0.0000016351,0.0000016405, -0.0000016345,0.0000016373,0.0000016528,0.0000016445,0.0000016168, -0.0000015965,0.0000015898,0.0000016117,0.0000016748,0.0000017027, -0.0000016812,0.0000016663,0.0000016677,0.0000016553,0.0000016472, -0.0000016469,0.0000016472,0.0000016539,0.0000016725,0.0000016923, -0.0000016941,0.0000016892,0.0000016858,0.0000016848,0.0000016989, -0.0000017105,0.0000017129,0.0000017135,0.0000017169,0.0000017275, -0.0000017475,0.0000017531,0.0000017425,0.0000017545,0.0000017968, -0.0000018174,0.0000017739,0.0000017728,0.0000017845,0.0000018118, -0.0000018227,0.0000018249,0.0000018277,0.0000018235,0.0000018021, -0.0000017553,0.0000017109,0.0000016993,0.0000016999,0.0000017047, -0.0000017109,0.0000017090,0.0000017078,0.0000017057,0.0000017002, -0.0000016882,0.0000016739,0.0000016674,0.0000016706,0.0000016762, -0.0000016791,0.0000016803,0.0000016796,0.0000016774,0.0000016744, -0.0000016718,0.0000016712,0.0000016720,0.0000016728,0.0000016730, -0.0000016724,0.0000016711,0.0000016729,0.0000016787,0.0000016837, -0.0000016869,0.0000016899,0.0000016911,0.0000016890,0.0000016847, -0.0000016788,0.0000016757,0.0000016823,0.0000017004,0.0000017135, -0.0000017264,0.0000017344,0.0000017166,0.0000016850,0.0000016630, -0.0000016515,0.0000016333,0.0000016092,0.0000015876,0.0000015652, -0.0000015453,0.0000015386,0.0000015226,0.0000014796,0.0000014406, -0.0000014282,0.0000014286,0.0000014314,0.0000014315,0.0000014268, -0.0000014267,0.0000014444,0.0000014699,0.0000014824,0.0000014849, -0.0000014900,0.0000014978,0.0000015027,0.0000015062,0.0000015107, -0.0000015149,0.0000015172,0.0000015188,0.0000015191,0.0000015171, -0.0000015130,0.0000015088,0.0000015072,0.0000015095,0.0000015166, -0.0000015227,0.0000015247,0.0000015252,0.0000015267,0.0000015287, -0.0000015284,0.0000015251,0.0000015215,0.0000015194,0.0000015163, -0.0000015116,0.0000015077,0.0000015053,0.0000015034,0.0000015013, -0.0000014996,0.0000014990,0.0000014995,0.0000015004,0.0000014998, -0.0000014968,0.0000014950,0.0000014997,0.0000015142,0.0000015272, -0.0000015290,0.0000015235,0.0000015206,0.0000015226,0.0000015255, -0.0000015232,0.0000015132,0.0000015043,0.0000015022,0.0000015013, -0.0000014979,0.0000014961,0.0000014979,0.0000014991,0.0000014977, -0.0000014992,0.0000015040,0.0000015102,0.0000015165,0.0000015243, -0.0000015353,0.0000015468,0.0000015529,0.0000015491,0.0000015330, -0.0000014977,0.0000014430,0.0000013886,0.0000013654,0.0000013748, -0.0000014425,0.0000015457,0.0000016243,0.0000016547,0.0000016608, -0.0000016473,0.0000015880,0.0000015523,0.0000015734,0.0000015894, -0.0000015536,0.0000014920,0.0000014499,0.0000014341,0.0000014362, -0.0000014451,0.0000014547,0.0000014595,0.0000014663,0.0000014757, -0.0000014912,0.0000015139,0.0000015355,0.0000015488,0.0000015560, -0.0000015596,0.0000015599,0.0000015530,0.0000015376,0.0000015209, -0.0000015069,0.0000014940,0.0000014799,0.0000014598,0.0000014343, -0.0000014228,0.0000014285,0.0000014362,0.0000014324,0.0000014272, -0.0000014219,0.0000014184,0.0000014158,0.0000014133,0.0000014103, -0.0000014070,0.0000014030,0.0000013975,0.0000013893,0.0000013773, -0.0000013615,0.0000013416,0.0000013212,0.0000013083,0.0000013052, -0.0000013044,0.0000013014,0.0000012985,0.0000013021,0.0000013229, -0.0000013463,0.0000013544,0.0000013612,0.0000013610,0.0000013480, -0.0000013751,0.0000014785,0.0000015254,0.0000014997,0.0000014813, -0.0000014911,0.0000014941,0.0000014905,0.0000015011,0.0000015067, -0.0000014988,0.0000015216,0.0000015455,0.0000015363,0.0000015262, -0.0000015193,0.0000015267,0.0000015382,0.0000015992,0.0000017428, -0.0000018285,0.0000017736,0.0000017674,0.0000018209,0.0000017940, -0.0000017402,0.0000017330,0.0000017464,0.0000017514,0.0000017528, -0.0000017598,0.0000017652,0.0000017650,0.0000017619,0.0000017577, -0.0000017514,0.0000017446,0.0000017411,0.0000017399,0.0000017383, -0.0000017376,0.0000017386,0.0000017417,0.0000017457,0.0000017485, -0.0000017493,0.0000017449,0.0000017337,0.0000017158,0.0000017043, -0.0000017103,0.0000017284,0.0000017411,0.0000017521,0.0000017634, -0.0000017759,0.0000018010,0.0000018174,0.0000018060,0.0000017902, -0.0000017856,0.0000017634,0.0000017187,0.0000016837,0.0000016663, -0.0000016663,0.0000016881,0.0000017039,0.0000016965,0.0000016606, -0.0000016234,0.0000016205,0.0000016625,0.0000017016,0.0000017119, -0.0000017130,0.0000017170,0.0000017259,0.0000017360,0.0000017430, -0.0000017440,0.0000017391,0.0000017304,0.0000017250,0.0000017239, -0.0000017171,0.0000017032,0.0000016879,0.0000016612,0.0000016277, -0.0000016007,0.0000015817,0.0000015786,0.0000015899,0.0000016160, -0.0000016415,0.0000016538,0.0000016661,0.0000016835,0.0000016913, -0.0000016904,0.0000016953,0.0000017000,0.0000016872,0.0000016728, -0.0000016697,0.0000016665,0.0000016768,0.0000016996,0.0000016987, -0.0000016674,0.0000016511,0.0000016527,0.0000016489,0.0000016444, -0.0000016474,0.0000016853,0.0000017112,0.0000017131,0.0000017093, -0.0000017018,0.0000016920,0.0000016804,0.0000016660,0.0000016093, -0.0000016062,0.0000016163,0.0000015340,0.0000014917,0.0000014921, -0.0000014918,0.0000014841,0.0000014757,0.0000014782,0.0000014824, -0.0000014759,0.0000014711,0.0000014793,0.0000014985,0.0000015109, -0.0000015096,0.0000014994,0.0000014930,0.0000015032,0.0000015199, -0.0000015154,0.0000014994,0.0000015005,0.0000015124,0.0000015184, -0.0000015234,0.0000015352,0.0000015439,0.0000015409,0.0000015329, -0.0000015295,0.0000015275,0.0000015308,0.0000015514,0.0000015878, -0.0000016157,0.0000016275,0.0000016307,0.0000016309,0.0000016272, -0.0000016250,0.0000016284,0.0000016331,0.0000016360,0.0000016372, -0.0000016356,0.0000016338,0.0000016337,0.0000016330,0.0000016195, -0.0000015994,0.0000016033,0.0000016184,0.0000016164,0.0000016103, -0.0000016106,0.0000016039,0.0000015886,0.0000015969,0.0000016281, -0.0000016411,0.0000016443,0.0000016330,0.0000016324,0.0000016345, -0.0000016269,0.0000016278,0.0000016485,0.0000016516,0.0000016240, -0.0000015978,0.0000015891,0.0000016022,0.0000016587,0.0000017006, -0.0000016864,0.0000016676,0.0000016684,0.0000016578,0.0000016465, -0.0000016484,0.0000016529,0.0000016553,0.0000016610,0.0000016800, -0.0000016935,0.0000016884,0.0000016874,0.0000016890,0.0000016928, -0.0000017062,0.0000017140,0.0000017166,0.0000017200,0.0000017299, -0.0000017431,0.0000017393,0.0000017388,0.0000017544,0.0000018010, -0.0000018222,0.0000017826,0.0000017763,0.0000017879,0.0000018150, -0.0000018240,0.0000018315,0.0000018365,0.0000018303,0.0000018080, -0.0000017598,0.0000017100,0.0000016967,0.0000016984,0.0000017040, -0.0000017087,0.0000017089,0.0000017085,0.0000017054,0.0000017020, -0.0000016957,0.0000016860,0.0000016745,0.0000016712,0.0000016749, -0.0000016794,0.0000016825,0.0000016837,0.0000016824,0.0000016795, -0.0000016757,0.0000016733,0.0000016725,0.0000016723,0.0000016725, -0.0000016723,0.0000016725,0.0000016745,0.0000016773,0.0000016807, -0.0000016870,0.0000016913,0.0000016910,0.0000016872,0.0000016823, -0.0000016778,0.0000016816,0.0000016982,0.0000017132,0.0000017281, -0.0000017350,0.0000017201,0.0000016880,0.0000016647,0.0000016511, -0.0000016299,0.0000016055,0.0000015844,0.0000015623,0.0000015445, -0.0000015387,0.0000015181,0.0000014726,0.0000014375,0.0000014280, -0.0000014284,0.0000014300,0.0000014287,0.0000014234,0.0000014245, -0.0000014457,0.0000014715,0.0000014837,0.0000014865,0.0000014926, -0.0000015011,0.0000015065,0.0000015106,0.0000015151,0.0000015179, -0.0000015193,0.0000015206,0.0000015215,0.0000015206,0.0000015181, -0.0000015152,0.0000015137,0.0000015155,0.0000015215,0.0000015269, -0.0000015287,0.0000015288,0.0000015292,0.0000015307,0.0000015315, -0.0000015294,0.0000015250,0.0000015216,0.0000015188,0.0000015152, -0.0000015114,0.0000015089,0.0000015071,0.0000015047,0.0000015018, -0.0000014999,0.0000014996,0.0000014998,0.0000014982,0.0000014944, -0.0000014930,0.0000015012,0.0000015167,0.0000015261,0.0000015241, -0.0000015173,0.0000015150,0.0000015182,0.0000015219,0.0000015206, -0.0000015117,0.0000015029,0.0000015003,0.0000014997,0.0000014973, -0.0000014972,0.0000015014,0.0000015063,0.0000015079,0.0000015078, -0.0000015119,0.0000015208,0.0000015317,0.0000015460,0.0000015639, -0.0000015822,0.0000015897,0.0000015850,0.0000015617,0.0000015117, -0.0000014430,0.0000013849,0.0000013705,0.0000014072,0.0000015062, -0.0000016019,0.0000016493,0.0000016610,0.0000016556,0.0000016087, -0.0000015564,0.0000015629,0.0000015864,0.0000015642,0.0000014953, -0.0000014433,0.0000014290,0.0000014313,0.0000014460,0.0000014610, -0.0000014750,0.0000014879,0.0000014989,0.0000015095,0.0000015220, -0.0000015346,0.0000015447,0.0000015532,0.0000015590,0.0000015588, -0.0000015477,0.0000015288,0.0000015117,0.0000015000,0.0000014909, -0.0000014824,0.0000014748,0.0000014621,0.0000014369,0.0000014140, -0.0000014126,0.0000014251,0.0000014342,0.0000014369,0.0000014367, -0.0000014351,0.0000014337,0.0000014312,0.0000014278,0.0000014244, -0.0000014168,0.0000014082,0.0000013990,0.0000013892,0.0000013782, -0.0000013614,0.0000013364,0.0000013146,0.0000013077,0.0000013069, -0.0000013036,0.0000013012,0.0000013099,0.0000013333,0.0000013484, -0.0000013513,0.0000013547,0.0000013451,0.0000013586,0.0000014510, -0.0000015247,0.0000015112,0.0000014831,0.0000014881,0.0000014966, -0.0000014936,0.0000014995,0.0000015079,0.0000014988,0.0000015100, -0.0000015455,0.0000015404,0.0000015287,0.0000015212,0.0000015227, -0.0000015325,0.0000015621,0.0000016824,0.0000018110,0.0000018105, -0.0000017475,0.0000017911,0.0000018213,0.0000017662,0.0000017311, -0.0000017387,0.0000017499,0.0000017503,0.0000017556,0.0000017604, -0.0000017600,0.0000017558,0.0000017507,0.0000017468,0.0000017423, -0.0000017337,0.0000017224,0.0000017139,0.0000017112,0.0000017128, -0.0000017204,0.0000017334,0.0000017456,0.0000017503,0.0000017488, -0.0000017432,0.0000017238,0.0000016978,0.0000016883,0.0000017069, -0.0000017307,0.0000017430,0.0000017539,0.0000017665,0.0000017899, -0.0000018143,0.0000018108,0.0000017942,0.0000017862,0.0000017581, -0.0000017107,0.0000016783,0.0000016656,0.0000016723,0.0000016956, -0.0000017068,0.0000016942,0.0000016555,0.0000016226,0.0000016229, -0.0000016644,0.0000017014,0.0000017120,0.0000017128,0.0000017140, -0.0000017178,0.0000017249,0.0000017318,0.0000017325,0.0000017278, -0.0000017226,0.0000017213,0.0000017184,0.0000017076,0.0000016948, -0.0000016794,0.0000016486,0.0000016171,0.0000015938,0.0000015808, -0.0000015813,0.0000015970,0.0000016244,0.0000016452,0.0000016548, -0.0000016691,0.0000016828,0.0000016852,0.0000016878,0.0000016970, -0.0000016963,0.0000016811,0.0000016741,0.0000016700,0.0000016679, -0.0000016865,0.0000017037,0.0000016907,0.0000016620,0.0000016547, -0.0000016537,0.0000016498,0.0000016486,0.0000016754,0.0000017088, -0.0000017136,0.0000017102,0.0000017025,0.0000016907,0.0000016812, -0.0000016522,0.0000016078,0.0000016092,0.0000016172,0.0000015357, -0.0000014919,0.0000014915,0.0000014917,0.0000014891,0.0000014800, -0.0000014747,0.0000014776,0.0000014755,0.0000014704,0.0000014800, -0.0000015000,0.0000015085,0.0000015012,0.0000014863,0.0000014843, -0.0000015044,0.0000015191,0.0000015083,0.0000015014,0.0000015142, -0.0000015260,0.0000015316,0.0000015396,0.0000015424,0.0000015359, -0.0000015283,0.0000015271,0.0000015272,0.0000015331,0.0000015600, -0.0000015980,0.0000016194,0.0000016248,0.0000016296,0.0000016310, -0.0000016271,0.0000016259,0.0000016293,0.0000016327,0.0000016346, -0.0000016347,0.0000016344,0.0000016338,0.0000016335,0.0000016317, -0.0000016190,0.0000015972,0.0000015980,0.0000016141,0.0000016159, -0.0000016100,0.0000016091,0.0000016043,0.0000015888,0.0000015931, -0.0000016226,0.0000016378,0.0000016455,0.0000016366,0.0000016318, -0.0000016321,0.0000016204,0.0000016162,0.0000016400,0.0000016523, -0.0000016334,0.0000016015,0.0000015882,0.0000015938,0.0000016404, -0.0000016939,0.0000016918,0.0000016698,0.0000016679,0.0000016609, -0.0000016455,0.0000016458,0.0000016562,0.0000016630,0.0000016638, -0.0000016669,0.0000016835,0.0000016894,0.0000016848,0.0000016900, -0.0000016934,0.0000017005,0.0000017109,0.0000017163,0.0000017203, -0.0000017273,0.0000017329,0.0000017272,0.0000017374,0.0000017557, -0.0000018023,0.0000018280,0.0000017970,0.0000017853,0.0000017982, -0.0000018177,0.0000018253,0.0000018370,0.0000018427,0.0000018330, -0.0000018073,0.0000017572,0.0000017053,0.0000016936,0.0000016963, -0.0000017024,0.0000017054,0.0000017082,0.0000017097,0.0000017055, -0.0000017016,0.0000016971,0.0000016926,0.0000016864,0.0000016810, -0.0000016801,0.0000016817,0.0000016840,0.0000016857,0.0000016850, -0.0000016821,0.0000016775,0.0000016739,0.0000016727,0.0000016723, -0.0000016727,0.0000016727,0.0000016726,0.0000016731,0.0000016757, -0.0000016827,0.0000016891,0.0000016908,0.0000016880,0.0000016837, -0.0000016787,0.0000016809,0.0000016963,0.0000017124,0.0000017293, -0.0000017357,0.0000017218,0.0000016904,0.0000016668,0.0000016509, -0.0000016273,0.0000016030,0.0000015825,0.0000015610,0.0000015452, -0.0000015394,0.0000015153,0.0000014695,0.0000014380,0.0000014291, -0.0000014287,0.0000014288,0.0000014261,0.0000014212,0.0000014245, -0.0000014473,0.0000014727,0.0000014843,0.0000014878,0.0000014949, -0.0000015038,0.0000015094,0.0000015141,0.0000015188,0.0000015209, -0.0000015212,0.0000015228,0.0000015251,0.0000015255,0.0000015242, -0.0000015227,0.0000015221,0.0000015233,0.0000015273,0.0000015310, -0.0000015326,0.0000015332,0.0000015332,0.0000015333,0.0000015342, -0.0000015330,0.0000015287,0.0000015234,0.0000015191,0.0000015157, -0.0000015125,0.0000015099,0.0000015080,0.0000015056,0.0000015025, -0.0000015002,0.0000014991,0.0000014983,0.0000014959,0.0000014924, -0.0000014932,0.0000015038,0.0000015175,0.0000015226,0.0000015185, -0.0000015139,0.0000015136,0.0000015174,0.0000015197,0.0000015176, -0.0000015087,0.0000015000,0.0000014976,0.0000014975,0.0000014966, -0.0000014978,0.0000015041,0.0000015112,0.0000015121,0.0000015090, -0.0000015142,0.0000015282,0.0000015453,0.0000015696,0.0000015990, -0.0000016222,0.0000016272,0.0000016200,0.0000015840,0.0000015127, -0.0000014318,0.0000013829,0.0000013910,0.0000014717,0.0000015773, -0.0000016413,0.0000016615,0.0000016599,0.0000016249,0.0000015653, -0.0000015544,0.0000015829,0.0000015760,0.0000015099,0.0000014465, -0.0000014311,0.0000014368,0.0000014581,0.0000014814,0.0000014997, -0.0000015134,0.0000015223,0.0000015271,0.0000015310,0.0000015351, -0.0000015409,0.0000015499,0.0000015576,0.0000015576,0.0000015426, -0.0000015168,0.0000014952,0.0000014846,0.0000014812,0.0000014789, -0.0000014757,0.0000014728,0.0000014668,0.0000014461,0.0000014151, -0.0000013958,0.0000013949,0.0000014032,0.0000014103,0.0000014136, -0.0000014153,0.0000014174,0.0000014210,0.0000014246,0.0000014257, -0.0000014219,0.0000014147,0.0000014054,0.0000013940,0.0000013821, -0.0000013667,0.0000013417,0.0000013175,0.0000013099,0.0000013089, -0.0000013050,0.0000013074,0.0000013248,0.0000013429,0.0000013465, -0.0000013457,0.0000013405,0.0000013582,0.0000014503,0.0000015243, -0.0000015151,0.0000014861,0.0000014865,0.0000014966,0.0000014958, -0.0000014993,0.0000015074,0.0000014998,0.0000015028,0.0000015414, -0.0000015447,0.0000015318,0.0000015231,0.0000015194,0.0000015306, -0.0000015417,0.0000016157,0.0000017568,0.0000018351,0.0000017680, -0.0000017460,0.0000018108,0.0000017966,0.0000017413,0.0000017305, -0.0000017436,0.0000017499,0.0000017518,0.0000017535,0.0000017525, -0.0000017501,0.0000017493,0.0000017438,0.0000017260,0.0000017031, -0.0000016861,0.0000016779,0.0000016768,0.0000016798,0.0000016901, -0.0000017094,0.0000017333,0.0000017471,0.0000017474,0.0000017436, -0.0000017300,0.0000017015,0.0000016780,0.0000016859,0.0000017177, -0.0000017381,0.0000017472,0.0000017581,0.0000017817,0.0000018102, -0.0000018119,0.0000017973,0.0000017860,0.0000017501,0.0000017012, -0.0000016740,0.0000016688,0.0000016794,0.0000016993,0.0000017044, -0.0000016876,0.0000016489,0.0000016217,0.0000016247,0.0000016635, -0.0000016993,0.0000017106,0.0000017112,0.0000017110,0.0000017123, -0.0000017179,0.0000017237,0.0000017243,0.0000017215,0.0000017196, -0.0000017188,0.0000017114,0.0000016991,0.0000016887,0.0000016694, -0.0000016360,0.0000016078,0.0000015897,0.0000015808,0.0000015846, -0.0000016038,0.0000016304,0.0000016461,0.0000016562,0.0000016713, -0.0000016818,0.0000016846,0.0000016901,0.0000016974,0.0000016900, -0.0000016769,0.0000016741,0.0000016686,0.0000016744,0.0000016993, -0.0000017069,0.0000016829,0.0000016595,0.0000016560,0.0000016548, -0.0000016531,0.0000016716,0.0000017087,0.0000017148,0.0000017102, -0.0000017016,0.0000016887,0.0000016808,0.0000016329,0.0000016074, -0.0000016139,0.0000016156,0.0000015357,0.0000014934,0.0000014908, -0.0000014908,0.0000014902,0.0000014860,0.0000014779,0.0000014757, -0.0000014748,0.0000014714,0.0000014770,0.0000014952,0.0000015036, -0.0000014923,0.0000014762,0.0000014804,0.0000015044,0.0000015141, -0.0000015057,0.0000015108,0.0000015278,0.0000015362,0.0000015410, -0.0000015409,0.0000015318,0.0000015251,0.0000015253,0.0000015267, -0.0000015360,0.0000015683,0.0000016042,0.0000016169,0.0000016187, -0.0000016239,0.0000016290,0.0000016273,0.0000016265,0.0000016288, -0.0000016297,0.0000016288,0.0000016270,0.0000016255,0.0000016255, -0.0000016263,0.0000016244,0.0000016123,0.0000015938,0.0000015940, -0.0000016102,0.0000016157,0.0000016102,0.0000016077,0.0000016039, -0.0000015901,0.0000015907,0.0000016178,0.0000016337,0.0000016447, -0.0000016406,0.0000016321,0.0000016314,0.0000016192,0.0000016107, -0.0000016291,0.0000016531,0.0000016412,0.0000016072,0.0000015876, -0.0000015869,0.0000016230,0.0000016856,0.0000016982,0.0000016742, -0.0000016677,0.0000016640,0.0000016473,0.0000016422,0.0000016513, -0.0000016620,0.0000016678,0.0000016680,0.0000016707,0.0000016838, -0.0000016854,0.0000016856,0.0000016947,0.0000016986,0.0000017063, -0.0000017139,0.0000017177,0.0000017214,0.0000017220,0.0000017182, -0.0000017366,0.0000017584,0.0000018002,0.0000018312,0.0000018189, -0.0000018083,0.0000018140,0.0000018209,0.0000018288,0.0000018418, -0.0000018459,0.0000018292,0.0000018004,0.0000017462,0.0000016974, -0.0000016897,0.0000016938,0.0000016990,0.0000017012,0.0000017069, -0.0000017094,0.0000017057,0.0000017014,0.0000016961,0.0000016922, -0.0000016920,0.0000016924,0.0000016905,0.0000016888,0.0000016881, -0.0000016877,0.0000016867,0.0000016840,0.0000016797,0.0000016757, -0.0000016740,0.0000016737,0.0000016737,0.0000016730,0.0000016722, -0.0000016732,0.0000016786,0.0000016857,0.0000016880,0.0000016857, -0.0000016815,0.0000016764,0.0000016794,0.0000016951,0.0000017125, -0.0000017306,0.0000017362,0.0000017201,0.0000016899,0.0000016678, -0.0000016499,0.0000016248,0.0000016009,0.0000015810,0.0000015598, -0.0000015456,0.0000015395,0.0000015135,0.0000014689,0.0000014409, -0.0000014330,0.0000014311,0.0000014292,0.0000014250,0.0000014203, -0.0000014247,0.0000014480,0.0000014730,0.0000014844,0.0000014889, -0.0000014965,0.0000015050,0.0000015105,0.0000015156,0.0000015204, -0.0000015220,0.0000015218,0.0000015236,0.0000015280,0.0000015304, -0.0000015306,0.0000015308,0.0000015308,0.0000015308,0.0000015320, -0.0000015342,0.0000015362,0.0000015382,0.0000015385,0.0000015377, -0.0000015375,0.0000015367,0.0000015321,0.0000015254,0.0000015193, -0.0000015151,0.0000015117,0.0000015088,0.0000015066,0.0000015048, -0.0000015029,0.0000015009,0.0000014993,0.0000014972,0.0000014940, -0.0000014916,0.0000014948,0.0000015063,0.0000015169,0.0000015177, -0.0000015133,0.0000015115,0.0000015139,0.0000015173,0.0000015183, -0.0000015152,0.0000015063,0.0000014976,0.0000014953,0.0000014959, -0.0000014963,0.0000014984,0.0000015063,0.0000015135,0.0000015119, -0.0000015072,0.0000015138,0.0000015320,0.0000015577,0.0000015952, -0.0000016329,0.0000016495,0.0000016505,0.0000016414,0.0000015897, -0.0000014959,0.0000014168,0.0000013970,0.0000014481,0.0000015528, -0.0000016323,0.0000016607,0.0000016629,0.0000016373,0.0000015765, -0.0000015493,0.0000015731,0.0000015856,0.0000015328,0.0000014585, -0.0000014352,0.0000014435,0.0000014708,0.0000014987,0.0000015189, -0.0000015306,0.0000015362,0.0000015380,0.0000015375,0.0000015359, -0.0000015376,0.0000015463,0.0000015557,0.0000015563,0.0000015396, -0.0000015083,0.0000014783,0.0000014613,0.0000014580,0.0000014611, -0.0000014662,0.0000014690,0.0000014702,0.0000014690,0.0000014571, -0.0000014268,0.0000013943,0.0000013764,0.0000013730,0.0000013753, -0.0000013765,0.0000013778,0.0000013827,0.0000013923,0.0000014044, -0.0000014137,0.0000014165,0.0000014133,0.0000014071,0.0000013962, -0.0000013808,0.0000013623,0.0000013364,0.0000013156,0.0000013113, -0.0000013089,0.0000013087,0.0000013220,0.0000013399,0.0000013436, -0.0000013396,0.0000013408,0.0000013828,0.0000014746,0.0000015253, -0.0000015103,0.0000014868,0.0000014869,0.0000014959,0.0000014962, -0.0000014995,0.0000015063,0.0000015015,0.0000014977,0.0000015307, -0.0000015485,0.0000015352,0.0000015249,0.0000015180,0.0000015289, -0.0000015338,0.0000015681,0.0000016943,0.0000018246,0.0000018211, -0.0000017400,0.0000017629,0.0000018110,0.0000017677,0.0000017280, -0.0000017361,0.0000017500,0.0000017488,0.0000017487,0.0000017511, -0.0000017519,0.0000017463,0.0000017266,0.0000017002,0.0000016793, -0.0000016701,0.0000016670,0.0000016672,0.0000016697,0.0000016739, -0.0000016885,0.0000017152,0.0000017388,0.0000017458,0.0000017418, -0.0000017271,0.0000017013,0.0000016767,0.0000016749,0.0000017039, -0.0000017331,0.0000017441,0.0000017520,0.0000017750,0.0000018080, -0.0000018137,0.0000017998,0.0000017836,0.0000017400,0.0000016932, -0.0000016718,0.0000016693,0.0000016823,0.0000016957,0.0000016971, -0.0000016788,0.0000016416,0.0000016201,0.0000016238,0.0000016591, -0.0000016946,0.0000017079,0.0000017090,0.0000017086,0.0000017101, -0.0000017156,0.0000017204,0.0000017212,0.0000017198,0.0000017184, -0.0000017142,0.0000017033,0.0000016928,0.0000016831,0.0000016574, -0.0000016239,0.0000016012,0.0000015866,0.0000015816,0.0000015877, -0.0000016097,0.0000016333,0.0000016466,0.0000016593,0.0000016744, -0.0000016832,0.0000016855,0.0000016927,0.0000016947,0.0000016816, -0.0000016747,0.0000016730,0.0000016717,0.0000016887,0.0000017103, -0.0000017041,0.0000016735,0.0000016585,0.0000016583,0.0000016580, -0.0000016756,0.0000017129,0.0000017160,0.0000017096,0.0000016996, -0.0000016864,0.0000016736,0.0000016146,0.0000016078,0.0000016189, -0.0000016117,0.0000015344,0.0000014947,0.0000014907,0.0000014906, -0.0000014883,0.0000014886,0.0000014835,0.0000014788,0.0000014742, -0.0000014697,0.0000014723,0.0000014876,0.0000014971,0.0000014867, -0.0000014710,0.0000014783,0.0000015026,0.0000015116,0.0000015095, -0.0000015209,0.0000015361,0.0000015420,0.0000015401,0.0000015296, -0.0000015225,0.0000015240,0.0000015260,0.0000015384,0.0000015736, -0.0000016057,0.0000016115,0.0000016101,0.0000016190,0.0000016269, -0.0000016271,0.0000016267,0.0000016267,0.0000016257,0.0000016243, -0.0000016220,0.0000016172,0.0000016111,0.0000016080,0.0000016062, -0.0000015983,0.0000015878,0.0000015908,0.0000016076,0.0000016151, -0.0000016105,0.0000016065,0.0000016030,0.0000015911,0.0000015895, -0.0000016142,0.0000016296,0.0000016419,0.0000016438,0.0000016337, -0.0000016316,0.0000016208,0.0000016055,0.0000016178,0.0000016479, -0.0000016488,0.0000016152,0.0000015880,0.0000015844,0.0000016100, -0.0000016726,0.0000016972,0.0000016795,0.0000016676,0.0000016660, -0.0000016520,0.0000016397,0.0000016421,0.0000016504,0.0000016579, -0.0000016650,0.0000016688,0.0000016729,0.0000016820,0.0000016834, -0.0000016895,0.0000016999,0.0000017035,0.0000017096,0.0000017141, -0.0000017150,0.0000017138,0.0000017126,0.0000017353,0.0000017605, -0.0000017940,0.0000018298,0.0000018312,0.0000018259,0.0000018245, -0.0000018268,0.0000018354,0.0000018468,0.0000018447,0.0000018174, -0.0000017869,0.0000017277,0.0000016882,0.0000016856,0.0000016906, -0.0000016930,0.0000016958,0.0000017041,0.0000017069,0.0000017045, -0.0000017005,0.0000016957,0.0000016907,0.0000016921,0.0000016981, -0.0000017005,0.0000016988,0.0000016963,0.0000016934,0.0000016911, -0.0000016882,0.0000016837,0.0000016794,0.0000016770,0.0000016766, -0.0000016762,0.0000016750,0.0000016748,0.0000016775,0.0000016819, -0.0000016831,0.0000016793,0.0000016746,0.0000016704,0.0000016765, -0.0000016932,0.0000017125,0.0000017299,0.0000017323,0.0000017139, -0.0000016858,0.0000016660,0.0000016475,0.0000016214,0.0000015980, -0.0000015777,0.0000015568,0.0000015445,0.0000015398,0.0000015134, -0.0000014699,0.0000014436,0.0000014358,0.0000014329,0.0000014301, -0.0000014248,0.0000014199,0.0000014236,0.0000014461,0.0000014718, -0.0000014845,0.0000014904,0.0000014983,0.0000015058,0.0000015105, -0.0000015154,0.0000015203,0.0000015212,0.0000015197,0.0000015216, -0.0000015280,0.0000015328,0.0000015346,0.0000015365,0.0000015383, -0.0000015387,0.0000015381,0.0000015374,0.0000015381,0.0000015409, -0.0000015428,0.0000015423,0.0000015410,0.0000015402,0.0000015366, -0.0000015287,0.0000015196,0.0000015132,0.0000015088,0.0000015056, -0.0000015039,0.0000015035,0.0000015031,0.0000015018,0.0000014997, -0.0000014965,0.0000014927,0.0000014915,0.0000014970,0.0000015080, -0.0000015142,0.0000015122,0.0000015088,0.0000015095,0.0000015134, -0.0000015158,0.0000015159,0.0000015123,0.0000015041,0.0000014964, -0.0000014952,0.0000014972,0.0000014976,0.0000015005,0.0000015085, -0.0000015134,0.0000015093,0.0000015039,0.0000015112,0.0000015341, -0.0000015696,0.0000016182,0.0000016527,0.0000016560,0.0000016535, -0.0000016409,0.0000015720,0.0000014667,0.0000014143,0.0000014376, -0.0000015313,0.0000016219,0.0000016608,0.0000016640,0.0000016456, -0.0000015879,0.0000015453,0.0000015596,0.0000015865,0.0000015577, -0.0000014807,0.0000014438,0.0000014496,0.0000014779,0.0000015071, -0.0000015269,0.0000015371,0.0000015411,0.0000015425,0.0000015415, -0.0000015366,0.0000015346,0.0000015417,0.0000015537,0.0000015557, -0.0000015397,0.0000015080,0.0000014744,0.0000014500,0.0000014357, -0.0000014289,0.0000014293,0.0000014366,0.0000014463,0.0000014543, -0.0000014572,0.0000014488,0.0000014234,0.0000013914,0.0000013680, -0.0000013622,0.0000013620,0.0000013614,0.0000013617,0.0000013672, -0.0000013784,0.0000013920,0.0000014046,0.0000014104,0.0000014103, -0.0000014053,0.0000013925,0.0000013737,0.0000013505,0.0000013248, -0.0000013123,0.0000013114,0.0000013120,0.0000013233,0.0000013385, -0.0000013392,0.0000013375,0.0000013647,0.0000014389,0.0000015083, -0.0000015186,0.0000014980,0.0000014855,0.0000014892,0.0000014947, -0.0000014955,0.0000014992,0.0000015052,0.0000015018,0.0000014943, -0.0000015217,0.0000015498,0.0000015388,0.0000015273,0.0000015198, -0.0000015256,0.0000015349,0.0000015450,0.0000016258,0.0000017595, -0.0000018428,0.0000017765,0.0000017354,0.0000017963,0.0000017904, -0.0000017325,0.0000017318,0.0000017478,0.0000017487,0.0000017510, -0.0000017539,0.0000017493,0.0000017344,0.0000017141,0.0000016922, -0.0000016762,0.0000016706,0.0000016728,0.0000016763,0.0000016766, -0.0000016741,0.0000016756,0.0000016959,0.0000017275,0.0000017429, -0.0000017397,0.0000017209,0.0000016950,0.0000016759,0.0000016708, -0.0000016934,0.0000017289,0.0000017436,0.0000017480,0.0000017697, -0.0000018057,0.0000018129,0.0000018009,0.0000017794,0.0000017318, -0.0000016885,0.0000016694,0.0000016690,0.0000016814,0.0000016858, -0.0000016862,0.0000016700,0.0000016346,0.0000016175,0.0000016211, -0.0000016528,0.0000016891,0.0000017055,0.0000017078,0.0000017081, -0.0000017112,0.0000017171,0.0000017212,0.0000017214,0.0000017190, -0.0000017161,0.0000017080,0.0000016963,0.0000016878,0.0000016749, -0.0000016440,0.0000016143,0.0000015964,0.0000015839,0.0000015808, -0.0000015917,0.0000016142,0.0000016350,0.0000016493,0.0000016640, -0.0000016774,0.0000016828,0.0000016863,0.0000016938,0.0000016887, -0.0000016750,0.0000016733,0.0000016748,0.0000016812,0.0000017060, -0.0000017151,0.0000016946,0.0000016686,0.0000016634,0.0000016656, -0.0000016888,0.0000017190,0.0000017162,0.0000017079,0.0000016970, -0.0000016836,0.0000016539,0.0000016048,0.0000016092,0.0000016249, -0.0000016045,0.0000015328,0.0000014952,0.0000014912,0.0000014915, -0.0000014865,0.0000014878,0.0000014865,0.0000014842,0.0000014768, -0.0000014687,0.0000014677,0.0000014799,0.0000014910,0.0000014837, -0.0000014680,0.0000014754,0.0000015000,0.0000015108,0.0000015138, -0.0000015280,0.0000015408,0.0000015411,0.0000015313,0.0000015213, -0.0000015213,0.0000015250,0.0000015395,0.0000015760,0.0000016030, -0.0000016027,0.0000015999,0.0000016142,0.0000016258,0.0000016261, -0.0000016257,0.0000016253,0.0000016250,0.0000016259,0.0000016261, -0.0000016239,0.0000016161,0.0000016047,0.0000015949,0.0000015868, -0.0000015849,0.0000015901,0.0000016069,0.0000016140,0.0000016108, -0.0000016054,0.0000016015,0.0000015916,0.0000015893,0.0000016119, -0.0000016265,0.0000016376,0.0000016454,0.0000016359,0.0000016322, -0.0000016234,0.0000016057,0.0000016079,0.0000016381,0.0000016506, -0.0000016245,0.0000015901,0.0000015823,0.0000016001,0.0000016582, -0.0000016962,0.0000016844,0.0000016680,0.0000016663,0.0000016574, -0.0000016415,0.0000016362,0.0000016396,0.0000016445,0.0000016501, -0.0000016606,0.0000016693,0.0000016743,0.0000016798,0.0000016841, -0.0000016935,0.0000017039,0.0000017079,0.0000017098,0.0000017101, -0.0000017087,0.0000017079,0.0000017314,0.0000017616,0.0000017809, -0.0000018212,0.0000018326,0.0000018307,0.0000018307,0.0000018319, -0.0000018394,0.0000018496,0.0000018310,0.0000018010,0.0000017663, -0.0000017076,0.0000016813,0.0000016818,0.0000016858,0.0000016853, -0.0000016901,0.0000016990,0.0000017025,0.0000017011,0.0000016979, -0.0000016949,0.0000016914,0.0000016927,0.0000016997,0.0000017058, -0.0000017077,0.0000017065,0.0000017032,0.0000016996,0.0000016954, -0.0000016902,0.0000016856,0.0000016827,0.0000016815,0.0000016807, -0.0000016806,0.0000016814,0.0000016812,0.0000016781,0.0000016716, -0.0000016658,0.0000016642,0.0000016734,0.0000016923,0.0000017133, -0.0000017273,0.0000017250,0.0000017033,0.0000016780,0.0000016620, -0.0000016436,0.0000016177,0.0000015950,0.0000015740,0.0000015539, -0.0000015439,0.0000015400,0.0000015146,0.0000014723,0.0000014463, -0.0000014374,0.0000014333,0.0000014299,0.0000014240,0.0000014183, -0.0000014195,0.0000014398,0.0000014679,0.0000014844,0.0000014922, -0.0000015002,0.0000015064,0.0000015099,0.0000015147,0.0000015193, -0.0000015192,0.0000015161,0.0000015174,0.0000015251,0.0000015328, -0.0000015368,0.0000015399,0.0000015427,0.0000015433,0.0000015422, -0.0000015406,0.0000015405,0.0000015428,0.0000015450,0.0000015448, -0.0000015434,0.0000015423,0.0000015396,0.0000015326,0.0000015229, -0.0000015137,0.0000015066,0.0000015018,0.0000015005,0.0000015011, -0.0000015019,0.0000015015,0.0000014993,0.0000014956,0.0000014919, -0.0000014920,0.0000014990,0.0000015084,0.0000015106,0.0000015065, -0.0000015043,0.0000015069,0.0000015105,0.0000015120,0.0000015117, -0.0000015090,0.0000015024,0.0000014963,0.0000014964,0.0000015008, -0.0000015026,0.0000015036,0.0000015092,0.0000015110,0.0000015058, -0.0000015002,0.0000015084,0.0000015348,0.0000015791,0.0000016332, -0.0000016590,0.0000016543,0.0000016489,0.0000016286,0.0000015357, -0.0000014390,0.0000014328,0.0000015119,0.0000016103,0.0000016612, -0.0000016675,0.0000016502,0.0000015963,0.0000015440,0.0000015469, -0.0000015814,0.0000015760,0.0000015080,0.0000014536,0.0000014548, -0.0000014811,0.0000015086,0.0000015281,0.0000015384,0.0000015433, -0.0000015459,0.0000015452,0.0000015374,0.0000015300,0.0000015343, -0.0000015488,0.0000015545,0.0000015434,0.0000015148,0.0000014837, -0.0000014593,0.0000014431,0.0000014258,0.0000014054,0.0000013897, -0.0000013861,0.0000013952,0.0000014088,0.0000014159,0.0000014136, -0.0000013971,0.0000013760,0.0000013632,0.0000013604,0.0000013586, -0.0000013556,0.0000013568,0.0000013647,0.0000013749,0.0000013858, -0.0000013984,0.0000014068,0.0000014070,0.0000013991,0.0000013823, -0.0000013596,0.0000013335,0.0000013157,0.0000013121,0.0000013144, -0.0000013266,0.0000013360,0.0000013360,0.0000013577,0.0000014241, -0.0000014934,0.0000015142,0.0000015006,0.0000014879,0.0000014867, -0.0000014916,0.0000014936,0.0000014938,0.0000014978,0.0000015031, -0.0000014992,0.0000014910,0.0000015165,0.0000015496,0.0000015420, -0.0000015296,0.0000015207,0.0000015222,0.0000015374,0.0000015349, -0.0000015756,0.0000016927,0.0000018085,0.0000018181,0.0000017477, -0.0000017565,0.0000017933,0.0000017546,0.0000017273,0.0000017402, -0.0000017495,0.0000017518,0.0000017485,0.0000017411,0.0000017320, -0.0000017145,0.0000016907,0.0000016766,0.0000016766,0.0000016837, -0.0000016907,0.0000016920,0.0000016843,0.0000016740,0.0000016820, -0.0000017148,0.0000017389,0.0000017371,0.0000017139,0.0000016879, -0.0000016737,0.0000016691,0.0000016867,0.0000017248,0.0000017434, -0.0000017460,0.0000017657,0.0000018032,0.0000018117,0.0000018009, -0.0000017756,0.0000017264,0.0000016849,0.0000016670,0.0000016690, -0.0000016772,0.0000016729,0.0000016770,0.0000016637,0.0000016296, -0.0000016149,0.0000016178,0.0000016468,0.0000016845,0.0000017044, -0.0000017078,0.0000017097,0.0000017147,0.0000017206,0.0000017228, -0.0000017210,0.0000017178,0.0000017127,0.0000017009,0.0000016896, -0.0000016825,0.0000016642,0.0000016308,0.0000016075,0.0000015922, -0.0000015811,0.0000015824,0.0000015966,0.0000016176,0.0000016378, -0.0000016543,0.0000016677,0.0000016773,0.0000016820,0.0000016885, -0.0000016936,0.0000016805,0.0000016708,0.0000016752,0.0000016807, -0.0000016962,0.0000017163,0.0000017121,0.0000016886,0.0000016764, -0.0000016801,0.0000017067,0.0000017225,0.0000017138,0.0000017051, -0.0000016940,0.0000016764,0.0000016262,0.0000016037,0.0000016115, -0.0000016313,0.0000015944,0.0000015314,0.0000014955,0.0000014924, -0.0000014932,0.0000014862,0.0000014856,0.0000014868,0.0000014868, -0.0000014823,0.0000014710,0.0000014660,0.0000014741,0.0000014870, -0.0000014818,0.0000014670,0.0000014725,0.0000014964,0.0000015105, -0.0000015179,0.0000015326,0.0000015406,0.0000015359,0.0000015236, -0.0000015198,0.0000015221,0.0000015368,0.0000015732,0.0000015976, -0.0000015939,0.0000015898,0.0000016096,0.0000016247,0.0000016250, -0.0000016239,0.0000016242,0.0000016256,0.0000016274,0.0000016286, -0.0000016296,0.0000016294,0.0000016241,0.0000016119,0.0000015976, -0.0000015919,0.0000015965,0.0000016086,0.0000016131,0.0000016105, -0.0000016042,0.0000015993,0.0000015913,0.0000015899,0.0000016113, -0.0000016243,0.0000016341,0.0000016458,0.0000016384,0.0000016326, -0.0000016265,0.0000016073,0.0000016009,0.0000016268,0.0000016517, -0.0000016325,0.0000015936,0.0000015810,0.0000015922,0.0000016417, -0.0000016905,0.0000016886,0.0000016687,0.0000016665,0.0000016623, -0.0000016468,0.0000016363,0.0000016369,0.0000016413,0.0000016453, -0.0000016495,0.0000016598,0.0000016696,0.0000016740,0.0000016786, -0.0000016848,0.0000016956,0.0000017078,0.0000017105,0.0000017093, -0.0000017082,0.0000017050,0.0000017208,0.0000017619,0.0000017730, -0.0000017920,0.0000018158,0.0000018227,0.0000018216,0.0000018260, -0.0000018431,0.0000018395,0.0000018040,0.0000017845,0.0000017373, -0.0000016917,0.0000016773,0.0000016780,0.0000016795,0.0000016789, -0.0000016834,0.0000016899,0.0000016936,0.0000016943,0.0000016928, -0.0000016914,0.0000016912,0.0000016944,0.0000017006,0.0000017070, -0.0000017106,0.0000017115,0.0000017098,0.0000017064,0.0000017013, -0.0000016956,0.0000016905,0.0000016870,0.0000016849,0.0000016839, -0.0000016834,0.0000016821,0.0000016757,0.0000016670,0.0000016606, -0.0000016616,0.0000016743,0.0000016936,0.0000017156,0.0000017239, -0.0000017161,0.0000016915,0.0000016699,0.0000016576,0.0000016393, -0.0000016138,0.0000015920,0.0000015711,0.0000015523,0.0000015443, -0.0000015406,0.0000015145,0.0000014724,0.0000014472,0.0000014380, -0.0000014326,0.0000014282,0.0000014220,0.0000014154,0.0000014145, -0.0000014285,0.0000014585,0.0000014819,0.0000014928,0.0000015008, -0.0000015065,0.0000015095,0.0000015142,0.0000015182,0.0000015171, -0.0000015130,0.0000015126,0.0000015196,0.0000015298,0.0000015372, -0.0000015414,0.0000015440,0.0000015449,0.0000015440,0.0000015424, -0.0000015420,0.0000015433,0.0000015450,0.0000015452,0.0000015441, -0.0000015427,0.0000015402,0.0000015348,0.0000015261,0.0000015161, -0.0000015072,0.0000015014,0.0000014996,0.0000014998,0.0000015007, -0.0000015008,0.0000014991,0.0000014954,0.0000014920,0.0000014927, -0.0000015002,0.0000015073,0.0000015065,0.0000015014,0.0000015003, -0.0000015029,0.0000015053,0.0000015066,0.0000015074,0.0000015067, -0.0000015020,0.0000014975,0.0000014989,0.0000015058,0.0000015088, -0.0000015074,0.0000015076,0.0000015075,0.0000015027,0.0000014971, -0.0000015036,0.0000015315,0.0000015839,0.0000016417,0.0000016632, -0.0000016541,0.0000016462,0.0000015995,0.0000014894,0.0000014373, -0.0000014904,0.0000015959,0.0000016601,0.0000016715,0.0000016542, -0.0000016021,0.0000015460,0.0000015380,0.0000015700,0.0000015828, -0.0000015351,0.0000014697,0.0000014596,0.0000014825,0.0000015075, -0.0000015266,0.0000015387,0.0000015461,0.0000015515,0.0000015514, -0.0000015426,0.0000015286,0.0000015251,0.0000015389,0.0000015526, -0.0000015487,0.0000015266,0.0000014967,0.0000014743,0.0000014635, -0.0000014553,0.0000014377,0.0000014072,0.0000013729,0.0000013519, -0.0000013503,0.0000013597,0.0000013682,0.0000013725,0.0000013727, -0.0000013703,0.0000013695,0.0000013669,0.0000013608,0.0000013572, -0.0000013606,0.0000013679,0.0000013737,0.0000013828,0.0000013965, -0.0000014044,0.0000014018,0.0000013874,0.0000013647,0.0000013377, -0.0000013176,0.0000013135,0.0000013187,0.0000013295,0.0000013360, -0.0000013523,0.0000014103,0.0000014791,0.0000015045,0.0000014996, -0.0000014874,0.0000014861,0.0000014877,0.0000014902,0.0000014886, -0.0000014884,0.0000014929,0.0000014971,0.0000014913,0.0000014859, -0.0000015147,0.0000015491,0.0000015443,0.0000015318,0.0000015226, -0.0000015193,0.0000015382,0.0000015360,0.0000015475,0.0000016305, -0.0000017466,0.0000018190,0.0000017682,0.0000017402,0.0000017865, -0.0000017696,0.0000017243,0.0000017324,0.0000017471,0.0000017452, -0.0000017402,0.0000017427,0.0000017429,0.0000017218,0.0000016914, -0.0000016794,0.0000016849,0.0000017053,0.0000017305,0.0000017395, -0.0000017262,0.0000016908,0.0000016794,0.0000017023,0.0000017334, -0.0000017342,0.0000017077,0.0000016818,0.0000016706,0.0000016677, -0.0000016819,0.0000017211,0.0000017435,0.0000017455,0.0000017627, -0.0000018010,0.0000018117,0.0000018005,0.0000017728,0.0000017233, -0.0000016827,0.0000016658,0.0000016685,0.0000016719,0.0000016602, -0.0000016671,0.0000016596,0.0000016257,0.0000016113,0.0000016134, -0.0000016413,0.0000016805,0.0000017030,0.0000017087,0.0000017124, -0.0000017187,0.0000017232,0.0000017233,0.0000017200,0.0000017166, -0.0000017066,0.0000016917,0.0000016827,0.0000016758,0.0000016518, -0.0000016203,0.0000016015,0.0000015874,0.0000015817,0.0000015865, -0.0000016007,0.0000016217,0.0000016435,0.0000016584,0.0000016687, -0.0000016774,0.0000016827,0.0000016929,0.0000016895,0.0000016704, -0.0000016691,0.0000016818,0.0000016890,0.0000017106,0.0000017194, -0.0000017097,0.0000016976,0.0000017012,0.0000017204,0.0000017208, -0.0000017096,0.0000017012,0.0000016909,0.0000016585,0.0000016056, -0.0000016067,0.0000016154,0.0000016333,0.0000015820,0.0000015301, -0.0000014960,0.0000014943,0.0000014949,0.0000014879,0.0000014841, -0.0000014865,0.0000014869,0.0000014870,0.0000014768,0.0000014660, -0.0000014703,0.0000014831,0.0000014805,0.0000014662,0.0000014693, -0.0000014922,0.0000015101,0.0000015212,0.0000015358,0.0000015405, -0.0000015297,0.0000015197,0.0000015192,0.0000015308,0.0000015658, -0.0000015926,0.0000015876,0.0000015822,0.0000016050,0.0000016236, -0.0000016238,0.0000016226,0.0000016237,0.0000016249,0.0000016242, -0.0000016232,0.0000016241,0.0000016260,0.0000016291,0.0000016284, -0.0000016208,0.0000016119,0.0000016093,0.0000016127,0.0000016130, -0.0000016099,0.0000016026,0.0000015965,0.0000015902,0.0000015910, -0.0000016122,0.0000016233,0.0000016304,0.0000016457,0.0000016412, -0.0000016338,0.0000016285,0.0000016107,0.0000015994,0.0000016152, -0.0000016468,0.0000016400,0.0000015992,0.0000015802,0.0000015845, -0.0000016252,0.0000016832,0.0000016934,0.0000016716,0.0000016666, -0.0000016658,0.0000016531,0.0000016417,0.0000016403,0.0000016454, -0.0000016507,0.0000016525,0.0000016531,0.0000016602,0.0000016692, -0.0000016735,0.0000016780,0.0000016842,0.0000016964,0.0000017092, -0.0000017119,0.0000017107,0.0000017064,0.0000017071,0.0000017482, -0.0000017813,0.0000017827,0.0000017864,0.0000017962,0.0000018105, -0.0000018310,0.0000018352,0.0000018028,0.0000017843,0.0000017601, -0.0000017089,0.0000016834,0.0000016745,0.0000016742,0.0000016732, -0.0000016735,0.0000016753,0.0000016781,0.0000016810,0.0000016829, -0.0000016835,0.0000016845,0.0000016870,0.0000016932,0.0000017005, -0.0000017055,0.0000017085,0.0000017097,0.0000017091,0.0000017061, -0.0000017005,0.0000016941,0.0000016883,0.0000016843,0.0000016821, -0.0000016810,0.0000016789,0.0000016738,0.0000016667,0.0000016615, -0.0000016629,0.0000016770,0.0000016984,0.0000017184,0.0000017220, -0.0000017064,0.0000016818,0.0000016650,0.0000016541,0.0000016344, -0.0000016095,0.0000015894,0.0000015695,0.0000015522,0.0000015454, -0.0000015407,0.0000015119,0.0000014694,0.0000014451,0.0000014368, -0.0000014309,0.0000014254,0.0000014192,0.0000014127,0.0000014098, -0.0000014166,0.0000014441,0.0000014743,0.0000014905,0.0000014995, -0.0000015055,0.0000015093,0.0000015143,0.0000015174,0.0000015155, -0.0000015117,0.0000015107,0.0000015145,0.0000015250,0.0000015352, -0.0000015405,0.0000015422,0.0000015426,0.0000015425,0.0000015425, -0.0000015425,0.0000015430,0.0000015440,0.0000015441,0.0000015433, -0.0000015418,0.0000015391,0.0000015343,0.0000015271,0.0000015176, -0.0000015081,0.0000015018,0.0000014997,0.0000014997,0.0000015007, -0.0000015012,0.0000014996,0.0000014954,0.0000014916,0.0000014929, -0.0000015000,0.0000015046,0.0000015019,0.0000014973,0.0000014968, -0.0000014985,0.0000015001,0.0000015024,0.0000015054,0.0000015064, -0.0000015037,0.0000015000,0.0000015021,0.0000015104,0.0000015145, -0.0000015116,0.0000015069,0.0000015050,0.0000014999,0.0000014932, -0.0000014959,0.0000015246,0.0000015861,0.0000016492,0.0000016662, -0.0000016583,0.0000016388,0.0000015545,0.0000014628,0.0000014709, -0.0000015741,0.0000016569,0.0000016729,0.0000016584,0.0000016072, -0.0000015495,0.0000015330,0.0000015596,0.0000015853,0.0000015573, -0.0000014921,0.0000014679,0.0000014827,0.0000015062,0.0000015238, -0.0000015384,0.0000015477,0.0000015549,0.0000015571,0.0000015528, -0.0000015376,0.0000015236,0.0000015257,0.0000015421,0.0000015502, -0.0000015399,0.0000015148,0.0000014906,0.0000014774,0.0000014746, -0.0000014725,0.0000014597,0.0000014307,0.0000013933,0.0000013622, -0.0000013480,0.0000013487,0.0000013578,0.0000013664,0.0000013723, -0.0000013759,0.0000013753,0.0000013691,0.0000013624,0.0000013621, -0.0000013660,0.0000013686,0.0000013729,0.0000013848,0.0000013982, -0.0000014004,0.0000013889,0.0000013665,0.0000013377,0.0000013168, -0.0000013144,0.0000013231,0.0000013317,0.0000013466,0.0000013987, -0.0000014704,0.0000015005,0.0000014960,0.0000014860,0.0000014842, -0.0000014843,0.0000014807,0.0000014767,0.0000014738,0.0000014752, -0.0000014810,0.0000014841,0.0000014794,0.0000014812,0.0000015152, -0.0000015492,0.0000015462,0.0000015339,0.0000015248,0.0000015181, -0.0000015372,0.0000015468,0.0000015359,0.0000015837,0.0000016869, -0.0000017807,0.0000017766,0.0000017387,0.0000017784,0.0000017819, -0.0000017275,0.0000017271,0.0000017394,0.0000017349,0.0000017380, -0.0000017566,0.0000017621,0.0000017307,0.0000016920,0.0000016846, -0.0000017128,0.0000017753,0.0000018313,0.0000018452,0.0000018154, -0.0000017407,0.0000016853,0.0000016910,0.0000017263,0.0000017319, -0.0000017035,0.0000016756,0.0000016651,0.0000016641,0.0000016768, -0.0000017180,0.0000017434,0.0000017455,0.0000017603,0.0000017985, -0.0000018118,0.0000018004,0.0000017722,0.0000017232,0.0000016821, -0.0000016656,0.0000016672,0.0000016687,0.0000016490,0.0000016561, -0.0000016561,0.0000016229,0.0000016087,0.0000016103,0.0000016365, -0.0000016752,0.0000016998,0.0000017085,0.0000017147,0.0000017215, -0.0000017243,0.0000017228,0.0000017200,0.0000017123,0.0000016952, -0.0000016815,0.0000016773,0.0000016676,0.0000016383,0.0000016112, -0.0000015963,0.0000015868,0.0000015843,0.0000015905,0.0000016059, -0.0000016286,0.0000016486,0.0000016602,0.0000016705,0.0000016777, -0.0000016882,0.0000016963,0.0000016766,0.0000016600,0.0000016769, -0.0000016863,0.0000017002,0.0000017198,0.0000017224,0.0000017177, -0.0000017191,0.0000017238,0.0000017147,0.0000017053,0.0000016970, -0.0000016865,0.0000016327,0.0000016002,0.0000016104,0.0000016218, -0.0000016298,0.0000015681,0.0000015282,0.0000014970,0.0000014964, -0.0000014958,0.0000014903,0.0000014842,0.0000014860,0.0000014874, -0.0000014905,0.0000014827,0.0000014685,0.0000014684,0.0000014800, -0.0000014789,0.0000014653,0.0000014665,0.0000014886,0.0000015100, -0.0000015241,0.0000015368,0.0000015366,0.0000015245,0.0000015182, -0.0000015234,0.0000015530,0.0000015851,0.0000015835,0.0000015762, -0.0000015985,0.0000016216,0.0000016227,0.0000016212,0.0000016228, -0.0000016239,0.0000016202,0.0000016154,0.0000016160,0.0000016184, -0.0000016196,0.0000016227,0.0000016257,0.0000016239,0.0000016197, -0.0000016156,0.0000016132,0.0000016083,0.0000016002,0.0000015936, -0.0000015893,0.0000015923,0.0000016143,0.0000016239,0.0000016276, -0.0000016447,0.0000016438,0.0000016356,0.0000016302,0.0000016140, -0.0000015964,0.0000016046,0.0000016370,0.0000016457,0.0000016088, -0.0000015809,0.0000015790,0.0000016113,0.0000016722,0.0000016918, -0.0000016756,0.0000016664,0.0000016670,0.0000016591,0.0000016486, -0.0000016471,0.0000016525,0.0000016581,0.0000016605,0.0000016590, -0.0000016560,0.0000016599,0.0000016688,0.0000016727,0.0000016772, -0.0000016831,0.0000016940,0.0000017075,0.0000017111,0.0000017091, -0.0000017030,0.0000017137,0.0000017576,0.0000017832,0.0000017965, -0.0000018046,0.0000018113,0.0000018127,0.0000017909,0.0000017766, -0.0000017688,0.0000017238,0.0000016941,0.0000016798,0.0000016741, -0.0000016712,0.0000016690,0.0000016677,0.0000016667,0.0000016689, -0.0000016716,0.0000016727,0.0000016728,0.0000016739,0.0000016771, -0.0000016852,0.0000016953,0.0000017017,0.0000017041,0.0000017042, -0.0000017030,0.0000016995,0.0000016935,0.0000016864,0.0000016804, -0.0000016771,0.0000016756,0.0000016742,0.0000016719,0.0000016682, -0.0000016647,0.0000016690,0.0000016821,0.0000017029,0.0000017192, -0.0000017181,0.0000016976,0.0000016755,0.0000016633,0.0000016514, -0.0000016291,0.0000016057,0.0000015873,0.0000015686,0.0000015525, -0.0000015463,0.0000015394,0.0000015065,0.0000014621,0.0000014398, -0.0000014336,0.0000014282,0.0000014218,0.0000014156,0.0000014108, -0.0000014070,0.0000014077,0.0000014284,0.0000014623,0.0000014857, -0.0000014969,0.0000015037,0.0000015089,0.0000015145,0.0000015169, -0.0000015148,0.0000015120,0.0000015103,0.0000015114,0.0000015200, -0.0000015319,0.0000015389,0.0000015401,0.0000015391,0.0000015392, -0.0000015404,0.0000015413,0.0000015418,0.0000015422,0.0000015421, -0.0000015415,0.0000015397,0.0000015363,0.0000015318,0.0000015258, -0.0000015176,0.0000015085,0.0000015021,0.0000015000,0.0000015002, -0.0000015016,0.0000015021,0.0000014997,0.0000014945,0.0000014909, -0.0000014928,0.0000014992,0.0000015016,0.0000014978,0.0000014942, -0.0000014943,0.0000014953,0.0000014971,0.0000015009,0.0000015053, -0.0000015072,0.0000015063,0.0000015038,0.0000015052,0.0000015131, -0.0000015193,0.0000015175,0.0000015097,0.0000015042,0.0000014970, -0.0000014878,0.0000014863,0.0000015165,0.0000015894,0.0000016563, -0.0000016665,0.0000016603,0.0000016175,0.0000015087,0.0000014668, -0.0000015429,0.0000016466,0.0000016775,0.0000016631,0.0000016115, -0.0000015526,0.0000015323,0.0000015507,0.0000015832,0.0000015732, -0.0000015127,0.0000014738,0.0000014820,0.0000015048,0.0000015207, -0.0000015366,0.0000015475,0.0000015534,0.0000015572,0.0000015575, -0.0000015517,0.0000015374,0.0000015247,0.0000015270,0.0000015403, -0.0000015462,0.0000015354,0.0000015132,0.0000014922,0.0000014818, -0.0000014809,0.0000014803,0.0000014696,0.0000014466,0.0000014177, -0.0000013878,0.0000013641,0.0000013567,0.0000013635,0.0000013729, -0.0000013773,0.0000013768,0.0000013715,0.0000013654,0.0000013642, -0.0000013652,0.0000013660,0.0000013682,0.0000013769,0.0000013908, -0.0000013967,0.0000013880,0.0000013647,0.0000013350,0.0000013158, -0.0000013166,0.0000013254,0.0000013360,0.0000013769,0.0000014532, -0.0000015017,0.0000014975,0.0000014846,0.0000014809,0.0000014760, -0.0000014674,0.0000014595,0.0000014558,0.0000014567,0.0000014618, -0.0000014679,0.0000014701,0.0000014706,0.0000014825,0.0000015200, -0.0000015506,0.0000015480,0.0000015358,0.0000015262,0.0000015179, -0.0000015329,0.0000015523,0.0000015385,0.0000015539,0.0000016336, -0.0000017291,0.0000017794,0.0000017635,0.0000017825,0.0000017906, -0.0000017371,0.0000017237,0.0000017320,0.0000017280,0.0000017427, -0.0000017759,0.0000017811,0.0000017364,0.0000016905,0.0000016995, -0.0000017821,0.0000018872,0.0000019438,0.0000019496,0.0000019140, -0.0000018197,0.0000017149,0.0000016903,0.0000017212,0.0000017293, -0.0000017006,0.0000016693,0.0000016587,0.0000016586,0.0000016725, -0.0000017163,0.0000017442,0.0000017465,0.0000017585,0.0000017961, -0.0000018105,0.0000018006,0.0000017734,0.0000017267,0.0000016851, -0.0000016674,0.0000016665,0.0000016668,0.0000016415,0.0000016452, -0.0000016493,0.0000016202,0.0000016066,0.0000016075,0.0000016297, -0.0000016667,0.0000016946,0.0000017079,0.0000017166,0.0000017229, -0.0000017239,0.0000017226,0.0000017165,0.0000016995,0.0000016806, -0.0000016737,0.0000016731,0.0000016564,0.0000016248,0.0000016053, -0.0000015963,0.0000015883,0.0000015874,0.0000015956,0.0000016135, -0.0000016349,0.0000016514,0.0000016629,0.0000016720,0.0000016830, -0.0000016975,0.0000016874,0.0000016559,0.0000016642,0.0000016858, -0.0000016923,0.0000017155,0.0000017269,0.0000017269,0.0000017251, -0.0000017199,0.0000017078,0.0000017014,0.0000016932,0.0000016771, -0.0000016114,0.0000016037,0.0000016139,0.0000016285,0.0000016188, -0.0000015539,0.0000015251,0.0000014993,0.0000014984,0.0000014956, -0.0000014924,0.0000014855,0.0000014861,0.0000014893,0.0000014929, -0.0000014868,0.0000014725,0.0000014694,0.0000014777,0.0000014767, -0.0000014642,0.0000014647,0.0000014864,0.0000015104,0.0000015265, -0.0000015366,0.0000015322,0.0000015199,0.0000015171,0.0000015389, -0.0000015751,0.0000015803,0.0000015701,0.0000015903,0.0000016174, -0.0000016216,0.0000016200,0.0000016222,0.0000016238,0.0000016192, -0.0000016129,0.0000016115,0.0000016140,0.0000016160,0.0000016147, -0.0000016154,0.0000016190,0.0000016197,0.0000016159,0.0000016113, -0.0000016049,0.0000015967,0.0000015911,0.0000015881,0.0000015944, -0.0000016177,0.0000016255,0.0000016266,0.0000016428,0.0000016456, -0.0000016376,0.0000016313,0.0000016162,0.0000015971,0.0000015974, -0.0000016261,0.0000016461,0.0000016214,0.0000015837,0.0000015758, -0.0000015989,0.0000016597,0.0000016920,0.0000016789,0.0000016652, -0.0000016669,0.0000016641,0.0000016558,0.0000016537,0.0000016583, -0.0000016649,0.0000016698,0.0000016708,0.0000016654,0.0000016569, -0.0000016594,0.0000016686,0.0000016723,0.0000016763,0.0000016816, -0.0000016899,0.0000017008,0.0000017042,0.0000017009,0.0000016976, -0.0000017123,0.0000017430,0.0000017670,0.0000017772,0.0000017760, -0.0000017688,0.0000017651,0.0000017650,0.0000017319,0.0000017009, -0.0000016872,0.0000016780,0.0000016734,0.0000016695,0.0000016667, -0.0000016639,0.0000016630,0.0000016658,0.0000016692,0.0000016700, -0.0000016691,0.0000016682,0.0000016687,0.0000016739,0.0000016835, -0.0000016917,0.0000016962,0.0000016966,0.0000016952,0.0000016915, -0.0000016856,0.0000016789,0.0000016741,0.0000016718,0.0000016709, -0.0000016706,0.0000016702,0.0000016717,0.0000016781,0.0000016903, -0.0000017087,0.0000017186,0.0000017129,0.0000016907,0.0000016713, -0.0000016628,0.0000016482,0.0000016237,0.0000016025,0.0000015854, -0.0000015667,0.0000015505,0.0000015436,0.0000015342,0.0000014995, -0.0000014559,0.0000014351,0.0000014297,0.0000014243,0.0000014174, -0.0000014118,0.0000014089,0.0000014063,0.0000014043,0.0000014160, -0.0000014493,0.0000014792,0.0000014939,0.0000015015,0.0000015080, -0.0000015144,0.0000015165,0.0000015152,0.0000015143,0.0000015126, -0.0000015108,0.0000015159,0.0000015281,0.0000015360,0.0000015369, -0.0000015354,0.0000015360,0.0000015386,0.0000015407,0.0000015412, -0.0000015410,0.0000015408,0.0000015399,0.0000015374,0.0000015330, -0.0000015280,0.0000015226,0.0000015159,0.0000015080,0.0000015021, -0.0000015003,0.0000015009,0.0000015024,0.0000015022,0.0000014982, -0.0000014921,0.0000014896,0.0000014932,0.0000014996,0.0000014995, -0.0000014948,0.0000014925,0.0000014929,0.0000014939,0.0000014960, -0.0000015002,0.0000015047,0.0000015070,0.0000015074,0.0000015068, -0.0000015080,0.0000015149,0.0000015238,0.0000015251,0.0000015161, -0.0000015040,0.0000014935,0.0000014812,0.0000014768,0.0000015097, -0.0000015950,0.0000016626,0.0000016661,0.0000016538,0.0000015786, -0.0000014853,0.0000015088,0.0000016232,0.0000016788,0.0000016680, -0.0000016163,0.0000015555,0.0000015330,0.0000015470,0.0000015788, -0.0000015816,0.0000015328,0.0000014794,0.0000014777,0.0000015015, -0.0000015176,0.0000015330,0.0000015465,0.0000015502,0.0000015510, -0.0000015500,0.0000015511,0.0000015497,0.0000015403,0.0000015273, -0.0000015251,0.0000015351,0.0000015426,0.0000015353,0.0000015156, -0.0000014961,0.0000014872,0.0000014865,0.0000014818,0.0000014620, -0.0000014395,0.0000014253,0.0000014054,0.0000013769,0.0000013637, -0.0000013679,0.0000013759,0.0000013765,0.0000013712,0.0000013660, -0.0000013647,0.0000013644,0.0000013645,0.0000013669,0.0000013735, -0.0000013844,0.0000013897,0.0000013837,0.0000013592,0.0000013301, -0.0000013169,0.0000013197,0.0000013288,0.0000013597,0.0000014287, -0.0000014891,0.0000014981,0.0000014852,0.0000014785,0.0000014706, -0.0000014575,0.0000014502,0.0000014486,0.0000014502,0.0000014555, -0.0000014617,0.0000014665,0.0000014691,0.0000014748,0.0000014958, -0.0000015305,0.0000015523,0.0000015495,0.0000015372,0.0000015277, -0.0000015191,0.0000015267,0.0000015525,0.0000015450,0.0000015385, -0.0000015933,0.0000016775,0.0000017604,0.0000017902,0.0000018053, -0.0000018009,0.0000017454,0.0000017187,0.0000017225,0.0000017245, -0.0000017517,0.0000017940,0.0000017965,0.0000017394,0.0000016931, -0.0000017350,0.0000018587,0.0000019557,0.0000019769,0.0000019770, -0.0000019695,0.0000018991,0.0000017651,0.0000016998,0.0000017158, -0.0000017287,0.0000016999,0.0000016649,0.0000016547,0.0000016564, -0.0000016716,0.0000017157,0.0000017447,0.0000017475,0.0000017570, -0.0000017935,0.0000018126,0.0000018029,0.0000017771,0.0000017362, -0.0000016932,0.0000016717,0.0000016671,0.0000016670,0.0000016396, -0.0000016361,0.0000016434,0.0000016173,0.0000016042,0.0000016046, -0.0000016216,0.0000016569,0.0000016887,0.0000017070,0.0000017177, -0.0000017230,0.0000017234,0.0000017191,0.0000017032,0.0000016806, -0.0000016690,0.0000016695,0.0000016662,0.0000016424,0.0000016158, -0.0000016046,0.0000015979,0.0000015906,0.0000015913,0.0000016026, -0.0000016202,0.0000016393,0.0000016552,0.0000016656,0.0000016776, -0.0000016952,0.0000016963,0.0000016608,0.0000016487,0.0000016828, -0.0000016906,0.0000017085,0.0000017275,0.0000017276,0.0000017233, -0.0000017124,0.0000017033,0.0000016983,0.0000016883,0.0000016596, -0.0000016021,0.0000016104,0.0000016178,0.0000016315,0.0000016001, -0.0000015405,0.0000015208,0.0000015034,0.0000014998,0.0000014949, -0.0000014941,0.0000014864,0.0000014873,0.0000014926,0.0000014955, -0.0000014893,0.0000014758,0.0000014708,0.0000014762,0.0000014742, -0.0000014630,0.0000014638,0.0000014855,0.0000015119,0.0000015288, -0.0000015340,0.0000015271,0.0000015167,0.0000015248,0.0000015600, -0.0000015796,0.0000015685,0.0000015815,0.0000016128,0.0000016209, -0.0000016186,0.0000016209,0.0000016238,0.0000016205,0.0000016140, -0.0000016110,0.0000016109,0.0000016133,0.0000016141,0.0000016103, -0.0000016080,0.0000016095,0.0000016092,0.0000016053,0.0000015990, -0.0000015927,0.0000015889,0.0000015883,0.0000015980,0.0000016223, -0.0000016274,0.0000016264,0.0000016417,0.0000016471,0.0000016398, -0.0000016324,0.0000016183,0.0000015971,0.0000015919,0.0000016154, -0.0000016436,0.0000016316,0.0000015902,0.0000015722,0.0000015876, -0.0000016439,0.0000016891,0.0000016820,0.0000016643,0.0000016656, -0.0000016670,0.0000016619,0.0000016593,0.0000016635,0.0000016718, -0.0000016770,0.0000016793,0.0000016797,0.0000016718,0.0000016590, -0.0000016591,0.0000016680,0.0000016719,0.0000016745,0.0000016794, -0.0000016851,0.0000016932,0.0000016957,0.0000016926,0.0000016921, -0.0000017021,0.0000017207,0.0000017359,0.0000017437,0.0000017513, -0.0000017526,0.0000017289,0.0000017014,0.0000016909,0.0000016826, -0.0000016774,0.0000016710,0.0000016680,0.0000016671,0.0000016655, -0.0000016646,0.0000016661,0.0000016690,0.0000016704,0.0000016707, -0.0000016698,0.0000016695,0.0000016718,0.0000016770,0.0000016822, -0.0000016858,0.0000016866,0.0000016857,0.0000016826,0.0000016780, -0.0000016733,0.0000016703,0.0000016700,0.0000016703,0.0000016736, -0.0000016781,0.0000016866,0.0000017002,0.0000017139,0.0000017177, -0.0000017072,0.0000016849,0.0000016684,0.0000016612,0.0000016445, -0.0000016190,0.0000015994,0.0000015823,0.0000015628,0.0000015467, -0.0000015393,0.0000015292,0.0000014954,0.0000014536,0.0000014335, -0.0000014278,0.0000014213,0.0000014143,0.0000014095,0.0000014078, -0.0000014059,0.0000014023,0.0000014083,0.0000014384,0.0000014724, -0.0000014906,0.0000014991,0.0000015062,0.0000015132,0.0000015158, -0.0000015163,0.0000015199,0.0000015187,0.0000015123,0.0000015134, -0.0000015248,0.0000015339,0.0000015348,0.0000015322,0.0000015331, -0.0000015375,0.0000015413,0.0000015426,0.0000015422,0.0000015411, -0.0000015391,0.0000015355,0.0000015300,0.0000015238,0.0000015179, -0.0000015122,0.0000015062,0.0000015014,0.0000014996,0.0000015003, -0.0000015015,0.0000014998,0.0000014940,0.0000014881,0.0000014880, -0.0000014952,0.0000015006,0.0000014979,0.0000014927,0.0000014916, -0.0000014922,0.0000014930,0.0000014959,0.0000015005,0.0000015045, -0.0000015057,0.0000015071,0.0000015086,0.0000015112,0.0000015174, -0.0000015273,0.0000015313,0.0000015225,0.0000015048,0.0000014907, -0.0000014762,0.0000014691,0.0000015060,0.0000016036,0.0000016647, -0.0000016653,0.0000016353,0.0000015339,0.0000014935,0.0000015842, -0.0000016728,0.0000016734,0.0000016227,0.0000015602,0.0000015334, -0.0000015440,0.0000015764,0.0000015864,0.0000015495,0.0000014922, -0.0000014757,0.0000014965,0.0000015144,0.0000015283,0.0000015444, -0.0000015491,0.0000015466,0.0000015411,0.0000015385,0.0000015418, -0.0000015459,0.0000015406,0.0000015274,0.0000015213,0.0000015299, -0.0000015391,0.0000015352,0.0000015175,0.0000015005,0.0000014949, -0.0000014944,0.0000014783,0.0000014471,0.0000014288,0.0000014248, -0.0000014099,0.0000013805,0.0000013679,0.0000013716,0.0000013757, -0.0000013720,0.0000013666,0.0000013642,0.0000013631,0.0000013639, -0.0000013671,0.0000013721,0.0000013793,0.0000013830,0.0000013760, -0.0000013499,0.0000013233,0.0000013167,0.0000013221,0.0000013388, -0.0000013969,0.0000014739,0.0000014989,0.0000014872,0.0000014785, -0.0000014732,0.0000014593,0.0000014473,0.0000014475,0.0000014547, -0.0000014636,0.0000014716,0.0000014771,0.0000014816,0.0000014877, -0.0000014988,0.0000015193,0.0000015434,0.0000015542,0.0000015506, -0.0000015385,0.0000015291,0.0000015213,0.0000015225,0.0000015524, -0.0000015562,0.0000015368,0.0000015667,0.0000016332,0.0000017201, -0.0000017943,0.0000018293,0.0000018205,0.0000017501,0.0000017123, -0.0000017160,0.0000017257,0.0000017595,0.0000018057,0.0000018078, -0.0000017443,0.0000016979,0.0000017612,0.0000018910,0.0000019649, -0.0000019732,0.0000019742,0.0000019785,0.0000019511,0.0000018245, -0.0000017141,0.0000017083,0.0000017273,0.0000017000,0.0000016645, -0.0000016555,0.0000016596,0.0000016727,0.0000017152,0.0000017453, -0.0000017483,0.0000017556,0.0000017917,0.0000018143,0.0000018070, -0.0000017838,0.0000017500,0.0000017068,0.0000016790,0.0000016697, -0.0000016692,0.0000016391,0.0000016287,0.0000016362,0.0000016137, -0.0000016012,0.0000016013,0.0000016130,0.0000016463,0.0000016813, -0.0000017045,0.0000017166,0.0000017200,0.0000017183,0.0000017041, -0.0000016808,0.0000016642,0.0000016627,0.0000016645,0.0000016557, -0.0000016317,0.0000016122,0.0000016065,0.0000015984,0.0000015923, -0.0000015959,0.0000016088,0.0000016251,0.0000016450,0.0000016590, -0.0000016714,0.0000016904,0.0000017012,0.0000016716,0.0000016375, -0.0000016716,0.0000016936,0.0000017027,0.0000017237,0.0000017254, -0.0000017162,0.0000017055,0.0000017009,0.0000016951,0.0000016784, -0.0000016367,0.0000016022,0.0000016147,0.0000016224,0.0000016272, -0.0000015757,0.0000015300,0.0000015165,0.0000015082,0.0000015002, -0.0000014952,0.0000014959,0.0000014881,0.0000014896,0.0000014961, -0.0000014978,0.0000014902,0.0000014781,0.0000014736,0.0000014756, -0.0000014721,0.0000014619,0.0000014638,0.0000014863,0.0000015147, -0.0000015311,0.0000015323,0.0000015221,0.0000015170,0.0000015419, -0.0000015731,0.0000015699,0.0000015734,0.0000016062,0.0000016200, -0.0000016166,0.0000016180,0.0000016239,0.0000016223,0.0000016156, -0.0000016111,0.0000016094,0.0000016098,0.0000016116,0.0000016108, -0.0000016056,0.0000016015,0.0000015999,0.0000015973,0.0000015935, -0.0000015897,0.0000015878,0.0000015886,0.0000016036,0.0000016264, -0.0000016287,0.0000016273,0.0000016400,0.0000016471,0.0000016423, -0.0000016338,0.0000016201,0.0000015988,0.0000015915,0.0000016052, -0.0000016382,0.0000016387,0.0000015976,0.0000015700,0.0000015784, -0.0000016264,0.0000016809,0.0000016841,0.0000016638,0.0000016634, -0.0000016682,0.0000016657,0.0000016633,0.0000016681,0.0000016762, -0.0000016784,0.0000016787,0.0000016802,0.0000016805,0.0000016751, -0.0000016620,0.0000016597,0.0000016672,0.0000016711,0.0000016713, -0.0000016759,0.0000016822,0.0000016897,0.0000016952,0.0000016979, -0.0000017025,0.0000017140,0.0000017268,0.0000017355,0.0000017337, -0.0000017159,0.0000016972,0.0000016883,0.0000016814,0.0000016808, -0.0000016742,0.0000016684,0.0000016686,0.0000016712,0.0000016702, -0.0000016667,0.0000016650,0.0000016652,0.0000016670,0.0000016682, -0.0000016683,0.0000016696,0.0000016730,0.0000016773,0.0000016802, -0.0000016801,0.0000016796,0.0000016777,0.0000016746,0.0000016716, -0.0000016696,0.0000016698,0.0000016734,0.0000016776,0.0000016848, -0.0000016962,0.0000017096,0.0000017163,0.0000017140,0.0000016986, -0.0000016784,0.0000016660,0.0000016590,0.0000016403,0.0000016146, -0.0000015958,0.0000015774,0.0000015569,0.0000015416,0.0000015351, -0.0000015269,0.0000014958,0.0000014548,0.0000014338,0.0000014272, -0.0000014204,0.0000014136,0.0000014098,0.0000014081,0.0000014056, -0.0000014009,0.0000014041,0.0000014313,0.0000014667,0.0000014870, -0.0000014963,0.0000015037,0.0000015106,0.0000015142,0.0000015193, -0.0000015284,0.0000015275,0.0000015158,0.0000015128,0.0000015238, -0.0000015329,0.0000015331,0.0000015299,0.0000015311,0.0000015372, -0.0000015427,0.0000015450,0.0000015446,0.0000015425,0.0000015391, -0.0000015339,0.0000015266,0.0000015188,0.0000015128,0.0000015083, -0.0000015040,0.0000014998,0.0000014976,0.0000014979,0.0000014981, -0.0000014943,0.0000014872,0.0000014835,0.0000014880,0.0000014976, -0.0000015005,0.0000014959,0.0000014909,0.0000014898,0.0000014903, -0.0000014929,0.0000014991,0.0000015066,0.0000015101,0.0000015090, -0.0000015076,0.0000015100,0.0000015147,0.0000015206,0.0000015287, -0.0000015327,0.0000015255,0.0000015061,0.0000014907,0.0000014746, -0.0000014656,0.0000015088,0.0000016155,0.0000016635,0.0000016603, -0.0000016030,0.0000015112,0.0000015384,0.0000016518,0.0000016792, -0.0000016334,0.0000015665,0.0000015333,0.0000015420,0.0000015749, -0.0000015895,0.0000015639,0.0000015067,0.0000014793,0.0000014902, -0.0000015100,0.0000015231,0.0000015401,0.0000015488,0.0000015474, -0.0000015408,0.0000015348,0.0000015321,0.0000015337,0.0000015391, -0.0000015385,0.0000015255,0.0000015175,0.0000015263,0.0000015373, -0.0000015330,0.0000015161,0.0000015041,0.0000015020,0.0000014928, -0.0000014649,0.0000014380,0.0000014312,0.0000014255,0.0000013992, -0.0000013743,0.0000013706,0.0000013745,0.0000013725,0.0000013669, -0.0000013629,0.0000013615,0.0000013638,0.0000013679,0.0000013709, -0.0000013754,0.0000013771,0.0000013654,0.0000013370,0.0000013182, -0.0000013188,0.0000013288,0.0000013680,0.0000014447,0.0000014978, -0.0000014946,0.0000014792,0.0000014755,0.0000014673,0.0000014537, -0.0000014482,0.0000014517,0.0000014616,0.0000014729,0.0000014825, -0.0000014899,0.0000014980,0.0000015099,0.0000015254,0.0000015412, -0.0000015526,0.0000015557,0.0000015517,0.0000015403,0.0000015301, -0.0000015221,0.0000015202,0.0000015479,0.0000015624,0.0000015416, -0.0000015528,0.0000016024,0.0000016717,0.0000017633,0.0000018268, -0.0000018276,0.0000017607,0.0000017082,0.0000017145,0.0000017288, -0.0000017623,0.0000018094,0.0000018148,0.0000017516,0.0000017039, -0.0000017653,0.0000018921,0.0000019594,0.0000019652,0.0000019653, -0.0000019757,0.0000019749,0.0000018790,0.0000017372,0.0000017092, -0.0000017246,0.0000017013,0.0000016678,0.0000016600,0.0000016645, -0.0000016741,0.0000017139,0.0000017450,0.0000017484,0.0000017538, -0.0000017881,0.0000018158,0.0000018127,0.0000017922,0.0000017660, -0.0000017243,0.0000016890,0.0000016739,0.0000016722,0.0000016396, -0.0000016233,0.0000016286,0.0000016093,0.0000015975,0.0000015972, -0.0000016051,0.0000016352,0.0000016721,0.0000016980,0.0000017092, -0.0000017098,0.0000017004,0.0000016788,0.0000016599,0.0000016540, -0.0000016586,0.0000016611,0.0000016475,0.0000016244,0.0000016117, -0.0000016066,0.0000015985,0.0000015947,0.0000016010,0.0000016128, -0.0000016319,0.0000016514,0.0000016652,0.0000016848,0.0000017004, -0.0000016821,0.0000016345,0.0000016546,0.0000016963,0.0000016999, -0.0000017135,0.0000017171,0.0000017080,0.0000017015,0.0000016990, -0.0000016902,0.0000016621,0.0000016158,0.0000016069,0.0000016168, -0.0000016244,0.0000016108,0.0000015510,0.0000015237,0.0000015144, -0.0000015117,0.0000015001,0.0000014970,0.0000014979,0.0000014902, -0.0000014923,0.0000014988,0.0000014986,0.0000014897,0.0000014803, -0.0000014766,0.0000014760,0.0000014704,0.0000014610,0.0000014646, -0.0000014891,0.0000015188,0.0000015329,0.0000015287,0.0000015175, -0.0000015268,0.0000015612,0.0000015702,0.0000015645,0.0000015924, -0.0000016161,0.0000016131,0.0000016128,0.0000016217,0.0000016241, -0.0000016180,0.0000016118,0.0000016079,0.0000016071,0.0000016081, -0.0000016088,0.0000016071,0.0000016022,0.0000015975,0.0000015939, -0.0000015911,0.0000015898,0.0000015880,0.0000015922,0.0000016116, -0.0000016294,0.0000016288,0.0000016289,0.0000016388,0.0000016482, -0.0000016449,0.0000016354,0.0000016216,0.0000016013,0.0000015918, -0.0000015986,0.0000016290,0.0000016414,0.0000016060,0.0000015733, -0.0000015716,0.0000016103,0.0000016718,0.0000016857,0.0000016648, -0.0000016615,0.0000016679,0.0000016673,0.0000016661,0.0000016718, -0.0000016775,0.0000016785,0.0000016803,0.0000016828,0.0000016819, -0.0000016807,0.0000016782,0.0000016658,0.0000016596,0.0000016649, -0.0000016688,0.0000016687,0.0000016715,0.0000016787,0.0000016860, -0.0000016924,0.0000016988,0.0000017057,0.0000017096,0.0000017075, -0.0000016992,0.0000016908,0.0000016821,0.0000016749,0.0000016761, -0.0000016755,0.0000016685,0.0000016679,0.0000016720,0.0000016744, -0.0000016717,0.0000016671,0.0000016645,0.0000016623,0.0000016622, -0.0000016645,0.0000016664,0.0000016686,0.0000016738,0.0000016810, -0.0000016851,0.0000016853,0.0000016842,0.0000016816,0.0000016783, -0.0000016759,0.0000016749,0.0000016771,0.0000016839,0.0000016944, -0.0000017052,0.0000017119,0.0000017140,0.0000017041,0.0000016877, -0.0000016720,0.0000016646,0.0000016560,0.0000016347,0.0000016093, -0.0000015904,0.0000015703,0.0000015498,0.0000015369,0.0000015319, -0.0000015260,0.0000014988,0.0000014579,0.0000014339,0.0000014263, -0.0000014202,0.0000014148,0.0000014116,0.0000014093,0.0000014050, -0.0000013995,0.0000014010,0.0000014266,0.0000014626,0.0000014840, -0.0000014927,0.0000015002,0.0000015072,0.0000015128,0.0000015245, -0.0000015394,0.0000015362,0.0000015186,0.0000015132,0.0000015237, -0.0000015323,0.0000015308,0.0000015264,0.0000015272,0.0000015344, -0.0000015429,0.0000015471,0.0000015462,0.0000015426,0.0000015380, -0.0000015321,0.0000015241,0.0000015153,0.0000015087,0.0000015049, -0.0000015016,0.0000014975,0.0000014944,0.0000014936,0.0000014920, -0.0000014862,0.0000014797,0.0000014797,0.0000014897,0.0000014995, -0.0000014995,0.0000014934,0.0000014881,0.0000014865,0.0000014897, -0.0000014988,0.0000015137,0.0000015252,0.0000015271,0.0000015211, -0.0000015127,0.0000015118,0.0000015170,0.0000015223,0.0000015274, -0.0000015301,0.0000015242,0.0000015078,0.0000014927,0.0000014747, -0.0000014664,0.0000015195,0.0000016294,0.0000016622,0.0000016458, -0.0000015648,0.0000015148,0.0000016061,0.0000016781,0.0000016504, -0.0000015774,0.0000015369,0.0000015412,0.0000015721,0.0000015922, -0.0000015756,0.0000015223,0.0000014834,0.0000014858,0.0000015050, -0.0000015175,0.0000015333,0.0000015482,0.0000015484,0.0000015415, -0.0000015353,0.0000015331,0.0000015301,0.0000015281,0.0000015336, -0.0000015343,0.0000015222,0.0000015157,0.0000015270,0.0000015351, -0.0000015268,0.0000015117,0.0000015042,0.0000014977,0.0000014835, -0.0000014655,0.0000014514,0.0000014352,0.0000014055,0.0000013780, -0.0000013711,0.0000013720,0.0000013698,0.0000013645,0.0000013606, -0.0000013610,0.0000013656,0.0000013688,0.0000013697,0.0000013718, -0.0000013697,0.0000013502,0.0000013247,0.0000013181,0.0000013215, -0.0000013399,0.0000014056,0.0000014826,0.0000015017,0.0000014824, -0.0000014709,0.0000014669,0.0000014579,0.0000014492,0.0000014472, -0.0000014508,0.0000014582,0.0000014674,0.0000014761,0.0000014839, -0.0000014947,0.0000015123,0.0000015336,0.0000015488,0.0000015552, -0.0000015559,0.0000015529,0.0000015432,0.0000015316,0.0000015227, -0.0000015195,0.0000015412,0.0000015653,0.0000015507,0.0000015486, -0.0000015816,0.0000016334,0.0000017180,0.0000017989,0.0000018258, -0.0000017669,0.0000017047,0.0000017119,0.0000017291,0.0000017608, -0.0000018060,0.0000018174,0.0000017630,0.0000017049,0.0000017525, -0.0000018707,0.0000019455,0.0000019562,0.0000019561,0.0000019666, -0.0000019764,0.0000019175,0.0000017690,0.0000017098,0.0000017238, -0.0000017054,0.0000016725,0.0000016656,0.0000016690,0.0000016757, -0.0000017112,0.0000017443,0.0000017489,0.0000017507,0.0000017806, -0.0000018125,0.0000018159,0.0000018011,0.0000017815,0.0000017429, -0.0000017001,0.0000016786,0.0000016739,0.0000016389,0.0000016200, -0.0000016216,0.0000016045,0.0000015943,0.0000015938,0.0000015989, -0.0000016250,0.0000016604,0.0000016854,0.0000016939,0.0000016899, -0.0000016732,0.0000016552,0.0000016463,0.0000016493,0.0000016592, -0.0000016577,0.0000016389,0.0000016188,0.0000016108,0.0000016073, -0.0000015990,0.0000015979,0.0000016037,0.0000016190,0.0000016408, -0.0000016594,0.0000016779,0.0000016986,0.0000016913,0.0000016384, -0.0000016374,0.0000016931,0.0000016997,0.0000017034,0.0000017059, -0.0000017022,0.0000016996,0.0000016958,0.0000016808,0.0000016411, -0.0000016037,0.0000016116,0.0000016187,0.0000016224,0.0000015853, -0.0000015316,0.0000015204,0.0000015159,0.0000015133,0.0000015007, -0.0000015001,0.0000014995,0.0000014922,0.0000014945,0.0000014996, -0.0000014970,0.0000014886,0.0000014829,0.0000014794,0.0000014760, -0.0000014686,0.0000014602,0.0000014664,0.0000014945,0.0000015236, -0.0000015318,0.0000015225,0.0000015170,0.0000015443,0.0000015667, -0.0000015599,0.0000015750,0.0000016051,0.0000016063,0.0000016043, -0.0000016162,0.0000016241,0.0000016213,0.0000016162,0.0000016107, -0.0000016066,0.0000016045,0.0000016049,0.0000016052,0.0000016034, -0.0000015995,0.0000015956,0.0000015922,0.0000015905,0.0000015914, -0.0000016005,0.0000016202,0.0000016303,0.0000016282,0.0000016305, -0.0000016380,0.0000016486,0.0000016476,0.0000016371,0.0000016228, -0.0000016052,0.0000015940,0.0000015950,0.0000016201,0.0000016382, -0.0000016136,0.0000015761,0.0000015689,0.0000015975,0.0000016611, -0.0000016840,0.0000016671,0.0000016598,0.0000016665,0.0000016679, -0.0000016689,0.0000016743,0.0000016774,0.0000016801,0.0000016859, -0.0000016896,0.0000016894,0.0000016859,0.0000016824,0.0000016806, -0.0000016695,0.0000016596,0.0000016613,0.0000016659,0.0000016672, -0.0000016680,0.0000016717,0.0000016768,0.0000016805,0.0000016842, -0.0000016863,0.0000016849,0.0000016807,0.0000016746,0.0000016678, -0.0000016667,0.0000016683,0.0000016664,0.0000016661,0.0000016699, -0.0000016725,0.0000016734,0.0000016715,0.0000016690,0.0000016684, -0.0000016674,0.0000016674,0.0000016704,0.0000016734,0.0000016762, -0.0000016810,0.0000016892,0.0000016962,0.0000016989,0.0000016987, -0.0000016962,0.0000016927,0.0000016911,0.0000016932,0.0000016984, -0.0000017047,0.0000017076,0.0000017075,0.0000016998,0.0000016881, -0.0000016761,0.0000016681,0.0000016642,0.0000016522,0.0000016275, -0.0000016030,0.0000015840,0.0000015623,0.0000015425,0.0000015324, -0.0000015286,0.0000015243,0.0000015007,0.0000014594,0.0000014319, -0.0000014239,0.0000014199,0.0000014162,0.0000014140,0.0000014108, -0.0000014043,0.0000013982,0.0000014000,0.0000014246,0.0000014606, -0.0000014820,0.0000014888,0.0000014951,0.0000015032,0.0000015130, -0.0000015334,0.0000015511,0.0000015422,0.0000015200,0.0000015133, -0.0000015231,0.0000015296,0.0000015269,0.0000015206,0.0000015213, -0.0000015278,0.0000015384,0.0000015458,0.0000015464,0.0000015417, -0.0000015349,0.0000015282,0.0000015211,0.0000015131,0.0000015062, -0.0000015022,0.0000014989,0.0000014943,0.0000014904,0.0000014886, -0.0000014850,0.0000014775,0.0000014734,0.0000014786,0.0000014923, -0.0000014999,0.0000014977,0.0000014899,0.0000014844,0.0000014853, -0.0000014954,0.0000015160,0.0000015361,0.0000015466,0.0000015470, -0.0000015382,0.0000015231,0.0000015149,0.0000015172,0.0000015217, -0.0000015234,0.0000015234,0.0000015195,0.0000015091,0.0000014955, -0.0000014754,0.0000014715,0.0000015360,0.0000016416,0.0000016617, -0.0000016217,0.0000015309,0.0000015477,0.0000016613,0.0000016699, -0.0000015965,0.0000015400,0.0000015394,0.0000015690,0.0000015950, -0.0000015837,0.0000015365,0.0000014922,0.0000014853,0.0000015008, -0.0000015126,0.0000015250,0.0000015434,0.0000015487,0.0000015388, -0.0000015266,0.0000015252,0.0000015301,0.0000015292,0.0000015256, -0.0000015294,0.0000015293,0.0000015181,0.0000015178,0.0000015310, -0.0000015318,0.0000015170,0.0000015018,0.0000014941,0.0000014939, -0.0000014923,0.0000014718,0.0000014382,0.0000013975,0.0000013724, -0.0000013675,0.0000013672,0.0000013644,0.0000013602,0.0000013597, -0.0000013634,0.0000013687,0.0000013688,0.0000013675,0.0000013670, -0.0000013574,0.0000013332,0.0000013190,0.0000013209,0.0000013283, -0.0000013662,0.0000014502,0.0000015066,0.0000014989,0.0000014735, -0.0000014615,0.0000014562,0.0000014505,0.0000014471,0.0000014465, -0.0000014482,0.0000014527,0.0000014594,0.0000014667,0.0000014727, -0.0000014798,0.0000014954,0.0000015211,0.0000015435,0.0000015527, -0.0000015537,0.0000015531,0.0000015464,0.0000015340,0.0000015233, -0.0000015186,0.0000015331,0.0000015651,0.0000015613,0.0000015511, -0.0000015720,0.0000016083,0.0000016748,0.0000017536,0.0000017875, -0.0000017614,0.0000017119,0.0000017093,0.0000017273,0.0000017569, -0.0000017984,0.0000018128,0.0000017787,0.0000017221,0.0000017358, -0.0000018341,0.0000019227,0.0000019474,0.0000019490,0.0000019553, -0.0000019734,0.0000019458,0.0000018070,0.0000017162,0.0000017242, -0.0000017092,0.0000016774,0.0000016718,0.0000016733,0.0000016780, -0.0000017074,0.0000017423,0.0000017509,0.0000017502,0.0000017684, -0.0000018013,0.0000018122,0.0000018064,0.0000017947,0.0000017606, -0.0000017118,0.0000016836,0.0000016741,0.0000016362,0.0000016179, -0.0000016168,0.0000016000,0.0000015910,0.0000015912,0.0000015955, -0.0000016165,0.0000016462,0.0000016671,0.0000016702,0.0000016622, -0.0000016490,0.0000016401,0.0000016394,0.0000016512,0.0000016590, -0.0000016515,0.0000016288,0.0000016148,0.0000016125,0.0000016070, -0.0000015996,0.0000015986,0.0000016086,0.0000016284,0.0000016523, -0.0000016711,0.0000016948,0.0000016974,0.0000016479,0.0000016243, -0.0000016817,0.0000017006,0.0000017003,0.0000017000,0.0000016998, -0.0000016973,0.0000016897,0.0000016648,0.0000016201,0.0000016005, -0.0000016147,0.0000016185,0.0000016108,0.0000015575,0.0000015216, -0.0000015204,0.0000015198,0.0000015125,0.0000015027,0.0000015031, -0.0000014998,0.0000014931,0.0000014958,0.0000014983,0.0000014936, -0.0000014886,0.0000014861,0.0000014812,0.0000014748,0.0000014668, -0.0000014614,0.0000014709,0.0000015028,0.0000015277,0.0000015283, -0.0000015171,0.0000015276,0.0000015613,0.0000015612,0.0000015610, -0.0000015897,0.0000015961,0.0000015923,0.0000016067,0.0000016220, -0.0000016227,0.0000016204,0.0000016239,0.0000016192,0.0000016085, -0.0000016036,0.0000016011,0.0000016005,0.0000015988,0.0000015966, -0.0000015945,0.0000015943,0.0000016003,0.0000016142,0.0000016276, -0.0000016302,0.0000016276,0.0000016316,0.0000016375,0.0000016489, -0.0000016499,0.0000016387,0.0000016232,0.0000016095,0.0000016023, -0.0000015983,0.0000016128,0.0000016373,0.0000016200,0.0000015792, -0.0000015663,0.0000015874,0.0000016491,0.0000016829,0.0000016690, -0.0000016586,0.0000016651,0.0000016691,0.0000016719,0.0000016755, -0.0000016773,0.0000016834,0.0000016905,0.0000016921,0.0000016911, -0.0000016903,0.0000016890,0.0000016855,0.0000016831,0.0000016742, -0.0000016606,0.0000016576,0.0000016626,0.0000016662,0.0000016667, -0.0000016662,0.0000016659,0.0000016672,0.0000016692,0.0000016692, -0.0000016681,0.0000016657,0.0000016615,0.0000016575,0.0000016579, -0.0000016615,0.0000016662,0.0000016686,0.0000016699,0.0000016730, -0.0000016760,0.0000016790,0.0000016814,0.0000016813,0.0000016797, -0.0000016796,0.0000016815,0.0000016833,0.0000016859,0.0000016927, -0.0000017016,0.0000017080,0.0000017122,0.0000017144,0.0000017147, -0.0000017143,0.0000017101,0.0000017073,0.0000017014,0.0000016904, -0.0000016787,0.0000016697,0.0000016637,0.0000016632,0.0000016598, -0.0000016438,0.0000016187,0.0000015975,0.0000015793,0.0000015562, -0.0000015369,0.0000015280,0.0000015242,0.0000015214,0.0000015017, -0.0000014604,0.0000014290,0.0000014203,0.0000014188,0.0000014168, -0.0000014151,0.0000014121,0.0000014055,0.0000013992,0.0000014017, -0.0000014264,0.0000014612,0.0000014805,0.0000014850,0.0000014891, -0.0000014994,0.0000015170,0.0000015454,0.0000015589,0.0000015445, -0.0000015181,0.0000015126,0.0000015213,0.0000015250,0.0000015217, -0.0000015145,0.0000015130,0.0000015192,0.0000015306,0.0000015401, -0.0000015431,0.0000015397,0.0000015316,0.0000015232,0.0000015160, -0.0000015090,0.0000015030,0.0000014994,0.0000014956,0.0000014900, -0.0000014856,0.0000014829,0.0000014773,0.0000014695,0.0000014682, -0.0000014791,0.0000014942,0.0000014992,0.0000014944,0.0000014849, -0.0000014821,0.0000014903,0.0000015137,0.0000015401,0.0000015561, -0.0000015623,0.0000015629,0.0000015553,0.0000015373,0.0000015205, -0.0000015159,0.0000015176,0.0000015178,0.0000015153,0.0000015132, -0.0000015089,0.0000014966,0.0000014755,0.0000014787,0.0000015550, -0.0000016533,0.0000016557,0.0000015899,0.0000015265,0.0000016032, -0.0000016757,0.0000016272,0.0000015494,0.0000015348,0.0000015624, -0.0000015906,0.0000015875,0.0000015462,0.0000015023,0.0000014893, -0.0000014979,0.0000015083,0.0000015170,0.0000015355,0.0000015465, -0.0000015382,0.0000015170,0.0000015062,0.0000015128,0.0000015257, -0.0000015280,0.0000015243,0.0000015260,0.0000015220,0.0000015159, -0.0000015253,0.0000015312,0.0000015171,0.0000014961,0.0000014892, -0.0000014967,0.0000014972,0.0000014694,0.0000014191,0.0000013773, -0.0000013614,0.0000013608,0.0000013602,0.0000013582,0.0000013584, -0.0000013619,0.0000013683,0.0000013703,0.0000013672,0.0000013649, -0.0000013591,0.0000013394,0.0000013198,0.0000013187,0.0000013260, -0.0000013435,0.0000014073,0.0000014901,0.0000015173,0.0000015009, -0.0000014783,0.0000014702,0.0000014669,0.0000014621,0.0000014558, -0.0000014513,0.0000014518,0.0000014585,0.0000014682,0.0000014761, -0.0000014794,0.0000014795,0.0000014856,0.0000015014,0.0000015266, -0.0000015441,0.0000015491,0.0000015505,0.0000015480,0.0000015375, -0.0000015254,0.0000015191,0.0000015277,0.0000015596,0.0000015673, -0.0000015578,0.0000015687,0.0000015912,0.0000016422,0.0000017160, -0.0000017564,0.0000017446,0.0000017090,0.0000017041,0.0000017255, -0.0000017536,0.0000017865,0.0000018044,0.0000017894,0.0000017385, -0.0000017218,0.0000017924,0.0000018932,0.0000019399,0.0000019437, -0.0000019437,0.0000019618,0.0000019538,0.0000018406,0.0000017256, -0.0000017194,0.0000017139,0.0000016824,0.0000016765,0.0000016764, -0.0000016797,0.0000017004,0.0000017371,0.0000017513,0.0000017484, -0.0000017557,0.0000017841,0.0000018064,0.0000018094,0.0000018046, -0.0000017755,0.0000017223,0.0000016877,0.0000016719,0.0000016316, -0.0000016155,0.0000016119,0.0000015946,0.0000015877,0.0000015908, -0.0000015943,0.0000016079,0.0000016290,0.0000016422,0.0000016442, -0.0000016396,0.0000016349,0.0000016333,0.0000016401,0.0000016552, -0.0000016578,0.0000016400,0.0000016213,0.0000016146,0.0000016136, -0.0000016059,0.0000015984,0.0000016015,0.0000016172,0.0000016427, -0.0000016648,0.0000016884,0.0000016993,0.0000016578,0.0000016175, -0.0000016658,0.0000017008,0.0000017009,0.0000016999,0.0000016984, -0.0000016932,0.0000016791,0.0000016431,0.0000016054,0.0000016029, -0.0000016174,0.0000016168,0.0000015885,0.0000015342,0.0000015207, -0.0000015229,0.0000015224,0.0000015109,0.0000015044,0.0000015050, -0.0000014988,0.0000014935,0.0000014956,0.0000014937,0.0000014897, -0.0000014907,0.0000014895,0.0000014812,0.0000014726,0.0000014651, -0.0000014622,0.0000014783,0.0000015125,0.0000015289,0.0000015222, -0.0000015162,0.0000015462,0.0000015652,0.0000015541,0.0000015753, -0.0000015923,0.0000015827,0.0000015943,0.0000016152,0.0000016234, -0.0000016202,0.0000016264,0.0000016425,0.0000016389,0.0000016218, -0.0000016095,0.0000016042,0.0000016017,0.0000016010,0.0000016021, -0.0000016075,0.0000016171,0.0000016275,0.0000016306,0.0000016275, -0.0000016280,0.0000016324,0.0000016372,0.0000016490,0.0000016518, -0.0000016404,0.0000016234,0.0000016125,0.0000016115,0.0000016050, -0.0000016085,0.0000016327,0.0000016250,0.0000015830,0.0000015633, -0.0000015784,0.0000016349,0.0000016795,0.0000016710,0.0000016555, -0.0000016638,0.0000016727,0.0000016755,0.0000016759,0.0000016778, -0.0000016861,0.0000016917,0.0000016905,0.0000016875,0.0000016870, -0.0000016887,0.0000016907,0.0000016888,0.0000016849,0.0000016778, -0.0000016640,0.0000016557,0.0000016580,0.0000016632,0.0000016642, -0.0000016624,0.0000016626,0.0000016647,0.0000016653,0.0000016642, -0.0000016605,0.0000016542,0.0000016509,0.0000016548,0.0000016610, -0.0000016628,0.0000016640,0.0000016695,0.0000016782,0.0000016860, -0.0000016906,0.0000016915,0.0000016898,0.0000016859,0.0000016826, -0.0000016830,0.0000016858,0.0000016899,0.0000016978,0.0000017087, -0.0000017168,0.0000017192,0.0000017205,0.0000017184,0.0000017095, -0.0000016958,0.0000016810,0.0000016674,0.0000016581,0.0000016538, -0.0000016545,0.0000016553,0.0000016482,0.0000016294,0.0000016081, -0.0000015920,0.0000015739,0.0000015504,0.0000015323,0.0000015231, -0.0000015181,0.0000015162,0.0000015026,0.0000014624,0.0000014262, -0.0000014145,0.0000014140,0.0000014138,0.0000014141,0.0000014131, -0.0000014084,0.0000014032,0.0000014069,0.0000014317,0.0000014649, -0.0000014797,0.0000014807,0.0000014832,0.0000014962,0.0000015245, -0.0000015572,0.0000015639,0.0000015401,0.0000015147,0.0000015116, -0.0000015191,0.0000015208,0.0000015167,0.0000015107,0.0000015080, -0.0000015125,0.0000015226,0.0000015323,0.0000015366,0.0000015347, -0.0000015272,0.0000015178,0.0000015101,0.0000015039,0.0000014984, -0.0000014943,0.0000014902,0.0000014846,0.0000014798,0.0000014760, -0.0000014693,0.0000014626,0.0000014648,0.0000014796,0.0000014947, -0.0000014975,0.0000014900,0.0000014828,0.0000014863,0.0000015091, -0.0000015399,0.0000015606,0.0000015682,0.0000015717,0.0000015735, -0.0000015701,0.0000015550,0.0000015320,0.0000015154,0.0000015114, -0.0000015108,0.0000015075,0.0000015073,0.0000015071,0.0000014936, -0.0000014762,0.0000014885,0.0000015747,0.0000016560,0.0000016395, -0.0000015593,0.0000015471,0.0000016548,0.0000016613,0.0000015736, -0.0000015346,0.0000015530,0.0000015851,0.0000015845,0.0000015505, -0.0000015094,0.0000014948,0.0000014993,0.0000015064,0.0000015106, -0.0000015245,0.0000015426,0.0000015393,0.0000015160,0.0000014962, -0.0000014945,0.0000015063,0.0000015227,0.0000015258,0.0000015223, -0.0000015204,0.0000015160,0.0000015214,0.0000015294,0.0000015130, -0.0000014899,0.0000014881,0.0000014947,0.0000014780,0.0000014298, -0.0000013796,0.0000013546,0.0000013514,0.0000013525,0.0000013532, -0.0000013557,0.0000013610,0.0000013678,0.0000013712,0.0000013682, -0.0000013642,0.0000013609,0.0000013459,0.0000013234,0.0000013176, -0.0000013268,0.0000013330,0.0000013659,0.0000014502,0.0000015194, -0.0000015302,0.0000015167,0.0000015088,0.0000015076,0.0000015057, -0.0000014973,0.0000014824,0.0000014715,0.0000014733,0.0000014855, -0.0000014987,0.0000015062,0.0000015069,0.0000015039,0.0000014998, -0.0000015017,0.0000015170,0.0000015339,0.0000015426,0.0000015456, -0.0000015472,0.0000015412,0.0000015274,0.0000015178,0.0000015249, -0.0000015549,0.0000015693,0.0000015628,0.0000015690,0.0000015827, -0.0000016206,0.0000016874,0.0000017273,0.0000017243,0.0000017058, -0.0000017047,0.0000017251,0.0000017500,0.0000017753,0.0000017925, -0.0000017913,0.0000017557,0.0000017220,0.0000017587,0.0000018623, -0.0000019311,0.0000019400,0.0000019330,0.0000019392,0.0000019530, -0.0000018642,0.0000017326,0.0000017187,0.0000017193,0.0000016876, -0.0000016797,0.0000016795,0.0000016810,0.0000016907,0.0000017259, -0.0000017492,0.0000017501,0.0000017495,0.0000017680,0.0000017974, -0.0000018105,0.0000018110,0.0000017877,0.0000017310,0.0000016899, -0.0000016670,0.0000016253,0.0000016128,0.0000016069,0.0000015897, -0.0000015871,0.0000015918,0.0000015931,0.0000015986,0.0000016094, -0.0000016186,0.0000016239,0.0000016266,0.0000016297,0.0000016327, -0.0000016457,0.0000016575,0.0000016498,0.0000016283,0.0000016184, -0.0000016155,0.0000016131,0.0000016022,0.0000015985,0.0000016084, -0.0000016318,0.0000016580,0.0000016821,0.0000016982,0.0000016667, -0.0000016179,0.0000016479,0.0000016982,0.0000017001,0.0000016995, -0.0000016957,0.0000016865,0.0000016626,0.0000016208,0.0000015983, -0.0000016087,0.0000016185,0.0000016096,0.0000015618,0.0000015238, -0.0000015232,0.0000015257,0.0000015213,0.0000015085,0.0000015059, -0.0000015052,0.0000014970,0.0000014938,0.0000014927,0.0000014866, -0.0000014878,0.0000014948,0.0000014922,0.0000014803,0.0000014704, -0.0000014641,0.0000014647,0.0000014888,0.0000015211,0.0000015279, -0.0000015163,0.0000015279,0.0000015628,0.0000015556,0.0000015570, -0.0000015876,0.0000015864,0.0000015872,0.0000016080,0.0000016192, -0.0000016221,0.0000016211,0.0000016358,0.0000016610,0.0000016606, -0.0000016462,0.0000016337,0.0000016265,0.0000016233,0.0000016241, -0.0000016288,0.0000016341,0.0000016332,0.0000016278,0.0000016249, -0.0000016292,0.0000016330,0.0000016375,0.0000016495,0.0000016536, -0.0000016422,0.0000016242,0.0000016142,0.0000016167,0.0000016106, -0.0000016053,0.0000016272,0.0000016283,0.0000015871,0.0000015604, -0.0000015702,0.0000016186,0.0000016726,0.0000016746,0.0000016543, -0.0000016606,0.0000016760,0.0000016790,0.0000016754,0.0000016779, -0.0000016881,0.0000016912,0.0000016853,0.0000016794,0.0000016778, -0.0000016802,0.0000016866,0.0000016924,0.0000016918,0.0000016860, -0.0000016813,0.0000016706,0.0000016573,0.0000016527,0.0000016551, -0.0000016576,0.0000016596,0.0000016622,0.0000016628,0.0000016613, -0.0000016581,0.0000016535,0.0000016516,0.0000016544,0.0000016576, -0.0000016581,0.0000016629,0.0000016727,0.0000016818,0.0000016881, -0.0000016926,0.0000016945,0.0000016943,0.0000016934,0.0000016924, -0.0000016936,0.0000016969,0.0000016986,0.0000017009,0.0000017034, -0.0000017039,0.0000017025,0.0000016984,0.0000016888,0.0000016764, -0.0000016633,0.0000016524,0.0000016466,0.0000016464,0.0000016482, -0.0000016453,0.0000016323,0.0000016133,0.0000015972,0.0000015835, -0.0000015642,0.0000015417,0.0000015273,0.0000015192,0.0000015123, -0.0000015104,0.0000015031,0.0000014687,0.0000014277,0.0000014093, -0.0000014071,0.0000014075,0.0000014108,0.0000014129,0.0000014113, -0.0000014081,0.0000014126,0.0000014384,0.0000014695,0.0000014788, -0.0000014763,0.0000014792,0.0000014981,0.0000015347,0.0000015639, -0.0000015618,0.0000015321,0.0000015103,0.0000015104,0.0000015160, -0.0000015164,0.0000015134,0.0000015098,0.0000015063,0.0000015080, -0.0000015165,0.0000015264,0.0000015311,0.0000015287,0.0000015209, -0.0000015112,0.0000015037,0.0000014984,0.0000014936,0.0000014889, -0.0000014841,0.0000014787,0.0000014744,0.0000014701,0.0000014628, -0.0000014577,0.0000014628,0.0000014805,0.0000014947,0.0000014950, -0.0000014884,0.0000014873,0.0000015047,0.0000015358,0.0000015605, -0.0000015694,0.0000015718,0.0000015749,0.0000015780,0.0000015794, -0.0000015723,0.0000015504,0.0000015221,0.0000015071,0.0000015031, -0.0000015006,0.0000015018,0.0000015025,0.0000014880,0.0000014744, -0.0000015002,0.0000015942,0.0000016560,0.0000016155,0.0000015468, -0.0000015892,0.0000016709,0.0000016166,0.0000015391,0.0000015422, -0.0000015766,0.0000015843,0.0000015511,0.0000015137,0.0000014999, -0.0000015038,0.0000015085,0.0000015067,0.0000015140,0.0000015336, -0.0000015392,0.0000015199,0.0000014961,0.0000014897,0.0000014933, -0.0000015076,0.0000015219,0.0000015229,0.0000015185,0.0000015157, -0.0000015191,0.0000015261,0.0000015096,0.0000014881,0.0000014854, -0.0000014821,0.0000014360,0.0000013790,0.0000013480,0.0000013420, -0.0000013443,0.0000013480,0.0000013520,0.0000013582,0.0000013655, -0.0000013700,0.0000013685,0.0000013636,0.0000013603,0.0000013495, -0.0000013276,0.0000013155,0.0000013245,0.0000013356,0.0000013463, -0.0000014032,0.0000014885,0.0000015342,0.0000015384,0.0000015374, -0.0000015379,0.0000015379,0.0000015355,0.0000015250,0.0000015089, -0.0000014989,0.0000015019,0.0000015128,0.0000015218,0.0000015253, -0.0000015252,0.0000015244,0.0000015224,0.0000015200,0.0000015218, -0.0000015298,0.0000015365,0.0000015392,0.0000015426,0.0000015418, -0.0000015301,0.0000015174,0.0000015219,0.0000015494,0.0000015680, -0.0000015666,0.0000015705,0.0000015796,0.0000016037,0.0000016641, -0.0000017098,0.0000017110,0.0000016998,0.0000017031,0.0000017235, -0.0000017455,0.0000017669,0.0000017810,0.0000017831,0.0000017681, -0.0000017318,0.0000017427,0.0000018380,0.0000019222,0.0000019379, -0.0000019240,0.0000019074,0.0000019342,0.0000018834,0.0000017475, -0.0000017155,0.0000017220,0.0000016922,0.0000016800,0.0000016816, -0.0000016799,0.0000016819,0.0000017084,0.0000017405,0.0000017496, -0.0000017486,0.0000017557,0.0000017839,0.0000018082,0.0000018129, -0.0000017958,0.0000017352,0.0000016895,0.0000016587,0.0000016187, -0.0000016102,0.0000016033,0.0000015878,0.0000015874,0.0000015923, -0.0000015908,0.0000015895,0.0000015940,0.0000016031,0.0000016121, -0.0000016217,0.0000016296,0.0000016366,0.0000016504,0.0000016523, -0.0000016368,0.0000016221,0.0000016173,0.0000016159,0.0000016085, -0.0000015989,0.0000016026,0.0000016213,0.0000016493,0.0000016762, -0.0000016951,0.0000016754,0.0000016193,0.0000016301,0.0000016869, -0.0000016960,0.0000016961,0.0000016912,0.0000016756,0.0000016419, -0.0000016045,0.0000015981,0.0000016137,0.0000016176,0.0000015921, -0.0000015402,0.0000015229,0.0000015260,0.0000015270,0.0000015165, -0.0000015062,0.0000015068,0.0000015033,0.0000014950,0.0000014927, -0.0000014860,0.0000014811,0.0000014903,0.0000014986,0.0000014934, -0.0000014791,0.0000014689,0.0000014638,0.0000014702,0.0000015014, -0.0000015273,0.0000015222,0.0000015146,0.0000015478,0.0000015640, -0.0000015461,0.0000015709,0.0000015938,0.0000015913,0.0000016089, -0.0000016168,0.0000016184,0.0000016223,0.0000016226,0.0000016410, -0.0000016668,0.0000016715,0.0000016645,0.0000016558,0.0000016501, -0.0000016452,0.0000016399,0.0000016378,0.0000016292,0.0000016224, -0.0000016236,0.0000016309,0.0000016338,0.0000016382,0.0000016508, -0.0000016557,0.0000016439,0.0000016256,0.0000016151,0.0000016174, -0.0000016126,0.0000016043,0.0000016212,0.0000016302,0.0000015931, -0.0000015623,0.0000015636,0.0000016029,0.0000016630,0.0000016782, -0.0000016558,0.0000016543,0.0000016740,0.0000016798,0.0000016743, -0.0000016775,0.0000016884,0.0000016889,0.0000016791,0.0000016713, -0.0000016688,0.0000016688,0.0000016732,0.0000016834,0.0000016918, -0.0000016929,0.0000016877,0.0000016827,0.0000016775,0.0000016652, -0.0000016537,0.0000016484,0.0000016495,0.0000016544,0.0000016584, -0.0000016590,0.0000016570,0.0000016532,0.0000016492,0.0000016495, -0.0000016538,0.0000016598,0.0000016653,0.0000016716,0.0000016779, -0.0000016853,0.0000016929,0.0000017001,0.0000017045,0.0000017062, -0.0000017038,0.0000016980,0.0000016920,0.0000016834,0.0000016766, -0.0000016730,0.0000016707,0.0000016682,0.0000016643,0.0000016589, -0.0000016541,0.0000016509,0.0000016484,0.0000016479,0.0000016455, -0.0000016346,0.0000016161,0.0000015987,0.0000015857,0.0000015709, -0.0000015501,0.0000015315,0.0000015223,0.0000015149,0.0000015061, -0.0000015063,0.0000015053,0.0000014788,0.0000014368,0.0000014104, -0.0000014027,0.0000014021,0.0000014071,0.0000014131,0.0000014138, -0.0000014120,0.0000014179,0.0000014449,0.0000014729,0.0000014779, -0.0000014733,0.0000014771,0.0000015052,0.0000015454,0.0000015644, -0.0000015532,0.0000015243,0.0000015092,0.0000015091,0.0000015113, -0.0000015122,0.0000015122,0.0000015103,0.0000015065,0.0000015060, -0.0000015122,0.0000015216,0.0000015267,0.0000015235,0.0000015135, -0.0000015036,0.0000014976,0.0000014933,0.0000014889,0.0000014846, -0.0000014799,0.0000014745,0.0000014698,0.0000014648,0.0000014574, -0.0000014540,0.0000014624,0.0000014817,0.0000014945,0.0000014943, -0.0000014922,0.0000015021,0.0000015291,0.0000015559,0.0000015667, -0.0000015689,0.0000015711,0.0000015745,0.0000015780,0.0000015816, -0.0000015823,0.0000015690,0.0000015382,0.0000015087,0.0000014967, -0.0000014951,0.0000014970,0.0000014957,0.0000014805,0.0000014735, -0.0000015154,0.0000016139,0.0000016524,0.0000015911,0.0000015518, -0.0000016322,0.0000016595,0.0000015687,0.0000015356,0.0000015635, -0.0000015802,0.0000015539,0.0000015153,0.0000015050,0.0000015101, -0.0000015152,0.0000015085,0.0000015055,0.0000015217,0.0000015369, -0.0000015257,0.0000014989,0.0000014879,0.0000014888,0.0000014973, -0.0000015124,0.0000015208,0.0000015191,0.0000015156,0.0000015177, -0.0000015233,0.0000015096,0.0000014924,0.0000014866,0.0000014579, -0.0000013905,0.0000013452,0.0000013342,0.0000013374,0.0000013424, -0.0000013480,0.0000013548,0.0000013604,0.0000013646,0.0000013649, -0.0000013618,0.0000013585,0.0000013502,0.0000013316,0.0000013165, -0.0000013205,0.0000013371,0.0000013427,0.0000013635,0.0000014339, -0.0000015062,0.0000015378,0.0000015403,0.0000015401,0.0000015413, -0.0000015440,0.0000015440,0.0000015361,0.0000015241,0.0000015174, -0.0000015183,0.0000015239,0.0000015309,0.0000015362,0.0000015372, -0.0000015353,0.0000015324,0.0000015304,0.0000015300,0.0000015315, -0.0000015338,0.0000015342,0.0000015359,0.0000015388,0.0000015333, -0.0000015206,0.0000015196,0.0000015425,0.0000015670,0.0000015681, -0.0000015713,0.0000015791,0.0000015928,0.0000016463,0.0000017010, -0.0000017089,0.0000016991,0.0000017010,0.0000017189,0.0000017408, -0.0000017608,0.0000017726,0.0000017752,0.0000017716,0.0000017448, -0.0000017411,0.0000018243,0.0000019145,0.0000019355,0.0000019147, -0.0000018695,0.0000019051,0.0000018956,0.0000017607,0.0000017081, -0.0000017239,0.0000016977,0.0000016758,0.0000016805,0.0000016785, -0.0000016776,0.0000016892,0.0000017239,0.0000017468,0.0000017498, -0.0000017501,0.0000017675,0.0000018000,0.0000018154,0.0000018002, -0.0000017344,0.0000016868,0.0000016482,0.0000016113,0.0000016079, -0.0000016013,0.0000015872,0.0000015869,0.0000015916,0.0000015885, -0.0000015850,0.0000015881,0.0000015974,0.0000016084,0.0000016216, -0.0000016308,0.0000016399,0.0000016498,0.0000016434,0.0000016261, -0.0000016194,0.0000016163,0.0000016132,0.0000016027,0.0000016004, -0.0000016124,0.0000016390,0.0000016697,0.0000016923,0.0000016828, -0.0000016238,0.0000016160,0.0000016725,0.0000016902,0.0000016904, -0.0000016835,0.0000016595,0.0000016213,0.0000015975,0.0000016043, -0.0000016174,0.0000016110,0.0000015684,0.0000015273,0.0000015240, -0.0000015273,0.0000015246,0.0000015106,0.0000015049,0.0000015063, -0.0000014998,0.0000014936,0.0000014891,0.0000014790,0.0000014805, -0.0000014952,0.0000015013,0.0000014932,0.0000014786,0.0000014681, -0.0000014650,0.0000014797,0.0000015146,0.0000015279,0.0000015147, -0.0000015248,0.0000015635,0.0000015508,0.0000015490,0.0000015869, -0.0000016009,0.0000016088,0.0000016254,0.0000016151,0.0000016174, -0.0000016240,0.0000016238,0.0000016366,0.0000016566,0.0000016624, -0.0000016574,0.0000016497,0.0000016424,0.0000016342,0.0000016264, -0.0000016203,0.0000016196,0.0000016263,0.0000016332,0.0000016352, -0.0000016394,0.0000016520,0.0000016574,0.0000016451,0.0000016272, -0.0000016168,0.0000016134,0.0000016068,0.0000016005,0.0000016161, -0.0000016278,0.0000016011,0.0000015653,0.0000015596,0.0000015898, -0.0000016508,0.0000016790,0.0000016606,0.0000016481,0.0000016659, -0.0000016760,0.0000016716,0.0000016765,0.0000016876,0.0000016859, -0.0000016733,0.0000016641,0.0000016608,0.0000016584,0.0000016577, -0.0000016624,0.0000016754,0.0000016877,0.0000016924,0.0000016909, -0.0000016848,0.0000016799,0.0000016753,0.0000016661,0.0000016562, -0.0000016529,0.0000016525,0.0000016521,0.0000016505,0.0000016485, -0.0000016463,0.0000016485,0.0000016558,0.0000016625,0.0000016657, -0.0000016704,0.0000016774,0.0000016853,0.0000016916,0.0000016955, -0.0000016964,0.0000016932,0.0000016859,0.0000016768,0.0000016679, -0.0000016600,0.0000016545,0.0000016523,0.0000016507,0.0000016514, -0.0000016519,0.0000016532,0.0000016557,0.0000016551,0.0000016517, -0.0000016424,0.0000016240,0.0000016035,0.0000015878,0.0000015734, -0.0000015539,0.0000015332,0.0000015211,0.0000015175,0.0000015105, -0.0000015005,0.0000015021,0.0000015062,0.0000014927,0.0000014567, -0.0000014240,0.0000014071,0.0000014025,0.0000014055,0.0000014134, -0.0000014161,0.0000014150,0.0000014224,0.0000014509,0.0000014748, -0.0000014754,0.0000014718,0.0000014827,0.0000015181,0.0000015547, -0.0000015620,0.0000015411,0.0000015179,0.0000015105,0.0000015088, -0.0000015076,0.0000015093,0.0000015129,0.0000015137,0.0000015084, -0.0000015041,0.0000015065,0.0000015155,0.0000015218,0.0000015177, -0.0000015064,0.0000014975,0.0000014933,0.0000014893,0.0000014848, -0.0000014816,0.0000014776,0.0000014713,0.0000014656,0.0000014600, -0.0000014530,0.0000014512,0.0000014631,0.0000014832,0.0000014944, -0.0000014950,0.0000015007,0.0000015213,0.0000015475,0.0000015612, -0.0000015649,0.0000015677,0.0000015718,0.0000015759,0.0000015788, -0.0000015818,0.0000015844,0.0000015803,0.0000015573,0.0000015204, -0.0000014949,0.0000014911,0.0000014927,0.0000014876,0.0000014741, -0.0000014762,0.0000015348,0.0000016335,0.0000016414,0.0000015718, -0.0000015755,0.0000016604,0.0000016225,0.0000015406,0.0000015470, -0.0000015742,0.0000015595,0.0000015193,0.0000015070,0.0000015174, -0.0000015229,0.0000015147,0.0000015031,0.0000015090,0.0000015300, -0.0000015303,0.0000015060,0.0000014868,0.0000014852,0.0000014894, -0.0000015027,0.0000015172,0.0000015204,0.0000015162,0.0000015161, -0.0000015211,0.0000015141,0.0000014997,0.0000014870,0.0000014330, -0.0000013593,0.0000013318,0.0000013311,0.0000013359,0.0000013435, -0.0000013494,0.0000013541,0.0000013564,0.0000013573,0.0000013565, -0.0000013541,0.0000013478,0.0000013320,0.0000013161,0.0000013162, -0.0000013335,0.0000013459,0.0000013485,0.0000013767,0.0000014350, -0.0000014834,0.0000015005,0.0000014997,0.0000014951,0.0000014971, -0.0000015139,0.0000015329,0.0000015376,0.0000015309,0.0000015248, -0.0000015247,0.0000015326,0.0000015459,0.0000015585,0.0000015658, -0.0000015652,0.0000015574,0.0000015431,0.0000015327,0.0000015309, -0.0000015322,0.0000015318,0.0000015315,0.0000015346,0.0000015338, -0.0000015232,0.0000015188,0.0000015378,0.0000015636,0.0000015680, -0.0000015713,0.0000015802,0.0000015868,0.0000016291,0.0000016917, -0.0000017110,0.0000017024,0.0000016973,0.0000017121,0.0000017367, -0.0000017559,0.0000017662,0.0000017706,0.0000017711,0.0000017506, -0.0000017423,0.0000018187,0.0000019097,0.0000019321,0.0000019053, -0.0000018295,0.0000018614,0.0000018958,0.0000017752,0.0000017039, -0.0000017232,0.0000017069,0.0000016732,0.0000016733,0.0000016777, -0.0000016766,0.0000016790,0.0000017028,0.0000017366,0.0000017492, -0.0000017489,0.0000017565,0.0000017900,0.0000018149,0.0000018004, -0.0000017288,0.0000016823,0.0000016358,0.0000016046,0.0000016067, -0.0000016003,0.0000015865,0.0000015864,0.0000015897,0.0000015872, -0.0000015856,0.0000015909,0.0000015989,0.0000016100,0.0000016212, -0.0000016313,0.0000016418,0.0000016434,0.0000016309,0.0000016205, -0.0000016171,0.0000016147,0.0000016089,0.0000016009,0.0000016056, -0.0000016283,0.0000016619,0.0000016881,0.0000016867,0.0000016330, -0.0000016078,0.0000016570,0.0000016841,0.0000016839,0.0000016713, -0.0000016397,0.0000016048,0.0000015975,0.0000016124,0.0000016204, -0.0000015977,0.0000015483,0.0000015246,0.0000015265,0.0000015273, -0.0000015186,0.0000015059,0.0000015051,0.0000015039,0.0000014966, -0.0000014924,0.0000014833,0.0000014757,0.0000014840,0.0000014982, -0.0000015013,0.0000014924,0.0000014791,0.0000014674,0.0000014672, -0.0000014937,0.0000015237,0.0000015224,0.0000015130,0.0000015450, -0.0000015663,0.0000015376,0.0000015632,0.0000015981,0.0000016075, -0.0000016177,0.0000016271,0.0000016091,0.0000016162,0.0000016256, -0.0000016242,0.0000016270,0.0000016375,0.0000016396,0.0000016337, -0.0000016255,0.0000016194,0.0000016154,0.0000016159,0.0000016212, -0.0000016301,0.0000016359,0.0000016372,0.0000016405,0.0000016529, -0.0000016589,0.0000016463,0.0000016287,0.0000016189,0.0000016074, -0.0000015939,0.0000015924,0.0000016114,0.0000016296,0.0000016084, -0.0000015693,0.0000015598,0.0000015792,0.0000016365,0.0000016773, -0.0000016673,0.0000016452,0.0000016517,0.0000016649,0.0000016666, -0.0000016750,0.0000016860,0.0000016828,0.0000016686,0.0000016577, -0.0000016536,0.0000016492,0.0000016428,0.0000016414,0.0000016480, -0.0000016632,0.0000016807,0.0000016915,0.0000016930,0.0000016880, -0.0000016809,0.0000016770,0.0000016752,0.0000016741,0.0000016711, -0.0000016660,0.0000016609,0.0000016576,0.0000016549,0.0000016561, -0.0000016620,0.0000016687,0.0000016730,0.0000016755,0.0000016751, -0.0000016710,0.0000016656,0.0000016632,0.0000016640,0.0000016647, -0.0000016639,0.0000016615,0.0000016587,0.0000016546,0.0000016508, -0.0000016489,0.0000016500,0.0000016540,0.0000016579,0.0000016604, -0.0000016595,0.0000016529,0.0000016358,0.0000016135,0.0000015952, -0.0000015809,0.0000015630,0.0000015404,0.0000015216,0.0000015149, -0.0000015139,0.0000015061,0.0000014947,0.0000014963,0.0000015056, -0.0000015034,0.0000014836,0.0000014556,0.0000014288,0.0000014105, -0.0000014071,0.0000014126,0.0000014165,0.0000014166,0.0000014263, -0.0000014553,0.0000014738,0.0000014718,0.0000014713,0.0000014934, -0.0000015341,0.0000015599,0.0000015533,0.0000015273,0.0000015132, -0.0000015112,0.0000015093,0.0000015073,0.0000015109,0.0000015164, -0.0000015178,0.0000015117,0.0000015026,0.0000015024,0.0000015087, -0.0000015149,0.0000015116,0.0000015019,0.0000014952,0.0000014918, -0.0000014868,0.0000014817,0.0000014789,0.0000014749,0.0000014678, -0.0000014608,0.0000014546,0.0000014492,0.0000014500,0.0000014642, -0.0000014845,0.0000014944,0.0000014980,0.0000015124,0.0000015371, -0.0000015548,0.0000015600,0.0000015640,0.0000015713,0.0000015782, -0.0000015823,0.0000015840,0.0000015848,0.0000015852,0.0000015851, -0.0000015734,0.0000015384,0.0000015002,0.0000014891,0.0000014886, -0.0000014807,0.0000014718,0.0000014826,0.0000015576,0.0000016420, -0.0000016236,0.0000015690,0.0000016078,0.0000016590,0.0000015809, -0.0000015382,0.0000015620,0.0000015661,0.0000015293,0.0000015119, -0.0000015229,0.0000015342,0.0000015253,0.0000015045,0.0000014993, -0.0000015176,0.0000015317,0.0000015157,0.0000014903,0.0000014829, -0.0000014833,0.0000014909,0.0000015088,0.0000015208,0.0000015190, -0.0000015151,0.0000015185,0.0000015183,0.0000015101,0.0000014924, -0.0000014213,0.0000013440,0.0000013271,0.0000013276,0.0000013351, -0.0000013431,0.0000013471,0.0000013461,0.0000013456,0.0000013461, -0.0000013453,0.0000013404,0.0000013281,0.0000013149,0.0000013135, -0.0000013270,0.0000013454,0.0000013504,0.0000013555,0.0000013778, -0.0000014045,0.0000014179,0.0000014189,0.0000014155,0.0000014110, -0.0000014133,0.0000014453,0.0000014977,0.0000015295,0.0000015324, -0.0000015278,0.0000015318,0.0000015462,0.0000015601,0.0000015665, -0.0000015729,0.0000015773,0.0000015870,0.0000015765,0.0000015518, -0.0000015333,0.0000015308,0.0000015304,0.0000015301,0.0000015321, -0.0000015322,0.0000015229,0.0000015164,0.0000015343,0.0000015601, -0.0000015667,0.0000015719,0.0000015818,0.0000015836,0.0000016124, -0.0000016796,0.0000017162,0.0000017086,0.0000016964,0.0000017064, -0.0000017333,0.0000017519,0.0000017623,0.0000017674,0.0000017678, -0.0000017512,0.0000017445,0.0000018210,0.0000019085,0.0000019289, -0.0000018963,0.0000017951,0.0000018082,0.0000018919,0.0000017942, -0.0000016986,0.0000017177,0.0000017187,0.0000016791,0.0000016637, -0.0000016714,0.0000016733,0.0000016751,0.0000016851,0.0000017180, -0.0000017445,0.0000017498,0.0000017514,0.0000017819,0.0000018114, -0.0000017952,0.0000017190,0.0000016757,0.0000016235,0.0000015999, -0.0000016071,0.0000016011,0.0000015875,0.0000015844,0.0000015863, -0.0000015876,0.0000015907,0.0000015966,0.0000016044,0.0000016103, -0.0000016199,0.0000016323,0.0000016384,0.0000016335,0.0000016215, -0.0000016176,0.0000016152,0.0000016138,0.0000016039,0.0000016015, -0.0000016183,0.0000016530,0.0000016828,0.0000016878,0.0000016418, -0.0000016041,0.0000016406,0.0000016734,0.0000016744,0.0000016547, -0.0000016196,0.0000015948,0.0000016015,0.0000016197,0.0000016216, -0.0000015808,0.0000015363,0.0000015254,0.0000015273,0.0000015249, -0.0000015116,0.0000015033,0.0000015044,0.0000015003,0.0000014952, -0.0000014900,0.0000014782,0.0000014756,0.0000014878,0.0000014980, -0.0000014986,0.0000014922,0.0000014793,0.0000014669,0.0000014743, -0.0000015071,0.0000015237,0.0000015135,0.0000015177,0.0000015660, -0.0000015542,0.0000015338,0.0000015795,0.0000016033,0.0000016053, -0.0000016125,0.0000016194,0.0000015998,0.0000016120,0.0000016266, -0.0000016243,0.0000016219,0.0000016237,0.0000016229,0.0000016177, -0.0000016140,0.0000016135,0.0000016159,0.0000016244,0.0000016336, -0.0000016383,0.0000016381,0.0000016409,0.0000016535,0.0000016600, -0.0000016475,0.0000016297,0.0000016209,0.0000016026,0.0000015783, -0.0000015798,0.0000016049,0.0000016287,0.0000016151,0.0000015751, -0.0000015596,0.0000015706,0.0000016195,0.0000016702,0.0000016741, -0.0000016487,0.0000016408,0.0000016496,0.0000016591,0.0000016728, -0.0000016843,0.0000016805,0.0000016653,0.0000016523,0.0000016472, -0.0000016428,0.0000016331,0.0000016266,0.0000016279,0.0000016358, -0.0000016494,0.0000016675,0.0000016836,0.0000016906,0.0000016904, -0.0000016869,0.0000016804,0.0000016783,0.0000016797,0.0000016800, -0.0000016790,0.0000016768,0.0000016733,0.0000016716,0.0000016731, -0.0000016743,0.0000016710,0.0000016625,0.0000016528,0.0000016473, -0.0000016464,0.0000016479,0.0000016513,0.0000016550,0.0000016577, -0.0000016595,0.0000016591,0.0000016580,0.0000016570,0.0000016565, -0.0000016593,0.0000016607,0.0000016599,0.0000016543,0.0000016418, -0.0000016225,0.0000016040,0.0000015899,0.0000015745,0.0000015535, -0.0000015320,0.0000015184,0.0000015144,0.0000015138,0.0000015039, -0.0000014902,0.0000014886,0.0000014982,0.0000015044,0.0000015016, -0.0000014885,0.0000014610,0.0000014276,0.0000014115,0.0000014114, -0.0000014131,0.0000014147,0.0000014285,0.0000014560,0.0000014696, -0.0000014667,0.0000014742,0.0000015094,0.0000015488,0.0000015600, -0.0000015414,0.0000015168,0.0000015103,0.0000015117,0.0000015113, -0.0000015123,0.0000015180,0.0000015225,0.0000015229,0.0000015154, -0.0000015041,0.0000014991,0.0000015034,0.0000015071,0.0000015047, -0.0000014977,0.0000014936,0.0000014908,0.0000014853,0.0000014799, -0.0000014762,0.0000014710,0.0000014628,0.0000014554,0.0000014504, -0.0000014466,0.0000014493,0.0000014651,0.0000014849,0.0000014949, -0.0000015037,0.0000015241,0.0000015455,0.0000015550,0.0000015601, -0.0000015702,0.0000015812,0.0000015881,0.0000015910,0.0000015914, -0.0000015901,0.0000015880,0.0000015875,0.0000015837,0.0000015546, -0.0000015087,0.0000014873,0.0000014847,0.0000014762,0.0000014706, -0.0000014944,0.0000015816,0.0000016447,0.0000016071,0.0000015765, -0.0000016360,0.0000016356,0.0000015509,0.0000015460,0.0000015642, -0.0000015437,0.0000015166,0.0000015261,0.0000015455,0.0000015411, -0.0000015135,0.0000014959,0.0000015034,0.0000015257,0.0000015236, -0.0000014992,0.0000014834,0.0000014820,0.0000014832,0.0000014951, -0.0000015149,0.0000015224,0.0000015174,0.0000015159,0.0000015197, -0.0000015185,0.0000015056,0.0000014316,0.0000013428,0.0000013227, -0.0000013217,0.0000013296,0.0000013382,0.0000013378,0.0000013342, -0.0000013323,0.0000013308,0.0000013275,0.0000013200,0.0000013122, -0.0000013109,0.0000013199,0.0000013402,0.0000013519,0.0000013521, -0.0000013568,0.0000013679,0.0000013744,0.0000013746,0.0000013733, -0.0000013733,0.0000013724,0.0000013717,0.0000013945,0.0000014592, -0.0000015146,0.0000015296,0.0000015307,0.0000015406,0.0000015524, -0.0000015550,0.0000015480,0.0000015422,0.0000015482,0.0000015698, -0.0000015914,0.0000015882,0.0000015574,0.0000015335,0.0000015302, -0.0000015303,0.0000015312,0.0000015310,0.0000015239,0.0000015180, -0.0000015322,0.0000015572,0.0000015661,0.0000015733,0.0000015835, -0.0000015819,0.0000016007,0.0000016653,0.0000017137,0.0000017156, -0.0000017010,0.0000017042,0.0000017289,0.0000017486,0.0000017584, -0.0000017648,0.0000017662,0.0000017508,0.0000017518,0.0000018308, -0.0000019114,0.0000019276,0.0000018857,0.0000017546,0.0000017571, -0.0000018850,0.0000018111,0.0000016936,0.0000017073,0.0000017250, -0.0000016912,0.0000016580,0.0000016559,0.0000016661,0.0000016709, -0.0000016768,0.0000017007,0.0000017358,0.0000017500,0.0000017507, -0.0000017769,0.0000018071,0.0000017859,0.0000017076,0.0000016676, -0.0000016140,0.0000016000,0.0000016093,0.0000016038,0.0000015891, -0.0000015837,0.0000015847,0.0000015907,0.0000015969,0.0000016040, -0.0000016067,0.0000016082,0.0000016195,0.0000016312,0.0000016314, -0.0000016227,0.0000016171,0.0000016161,0.0000016166,0.0000016093, -0.0000016005,0.0000016101,0.0000016432,0.0000016770,0.0000016872, -0.0000016494,0.0000016046,0.0000016239,0.0000016562,0.0000016597, -0.0000016355,0.0000016028,0.0000015929,0.0000016095,0.0000016242, -0.0000016194,0.0000015636,0.0000015298,0.0000015247,0.0000015252, -0.0000015199,0.0000015057,0.0000015012,0.0000015019,0.0000014979, -0.0000014949,0.0000014859,0.0000014749,0.0000014777,0.0000014886, -0.0000014947,0.0000014959,0.0000014924,0.0000014779,0.0000014680, -0.0000014846,0.0000015165,0.0000015197,0.0000015072,0.0000015346, -0.0000015771,0.0000015367,0.0000015405,0.0000015922,0.0000016023, -0.0000015957,0.0000015962,0.0000016003,0.0000015854,0.0000016017, -0.0000016235,0.0000016258,0.0000016217,0.0000016199,0.0000016176, -0.0000016150,0.0000016151,0.0000016194,0.0000016281,0.0000016365, -0.0000016394,0.0000016380,0.0000016401,0.0000016532,0.0000016611, -0.0000016490,0.0000016299,0.0000016213,0.0000016011,0.0000015684, -0.0000015667,0.0000015961,0.0000016253,0.0000016211,0.0000015826, -0.0000015599,0.0000015644,0.0000016019,0.0000016585,0.0000016776, -0.0000016570,0.0000016376,0.0000016382,0.0000016512,0.0000016697, -0.0000016826,0.0000016801,0.0000016654,0.0000016501,0.0000016423, -0.0000016394,0.0000016305,0.0000016201,0.0000016185,0.0000016206, -0.0000016248,0.0000016343,0.0000016486,0.0000016660,0.0000016802, -0.0000016883,0.0000016901,0.0000016889,0.0000016864,0.0000016820, -0.0000016787,0.0000016755,0.0000016713,0.0000016665,0.0000016631, -0.0000016602,0.0000016548,0.0000016494,0.0000016464,0.0000016463, -0.0000016471,0.0000016487,0.0000016514,0.0000016545,0.0000016578, -0.0000016618,0.0000016652,0.0000016668,0.0000016657,0.0000016619, -0.0000016590,0.0000016518,0.0000016376,0.0000016191,0.0000016029, -0.0000015927,0.0000015840,0.0000015678,0.0000015455,0.0000015265, -0.0000015166,0.0000015156,0.0000015154,0.0000015050,0.0000014881, -0.0000014825,0.0000014865,0.0000014944,0.0000015001,0.0000015011, -0.0000014824,0.0000014429,0.0000014154,0.0000014095,0.0000014091, -0.0000014121,0.0000014292,0.0000014522,0.0000014600,0.0000014613, -0.0000014826,0.0000015272,0.0000015589,0.0000015565,0.0000015298, -0.0000015108,0.0000015109,0.0000015148,0.0000015171,0.0000015204, -0.0000015257,0.0000015283,0.0000015280,0.0000015205,0.0000015073, -0.0000014999,0.0000014993,0.0000015014,0.0000014984,0.0000014942, -0.0000014917,0.0000014884,0.0000014828,0.0000014774,0.0000014730, -0.0000014663,0.0000014573,0.0000014513,0.0000014483,0.0000014457, -0.0000014490,0.0000014655,0.0000014851,0.0000014968,0.0000015110, -0.0000015324,0.0000015480,0.0000015552,0.0000015662,0.0000015813, -0.0000015921,0.0000015972,0.0000015988,0.0000015979,0.0000015949, -0.0000015905,0.0000015891,0.0000015880,0.0000015642,0.0000015150, -0.0000014848,0.0000014800,0.0000014720,0.0000014712,0.0000015121, -0.0000016042,0.0000016463,0.0000015968,0.0000015974,0.0000016479, -0.0000016036,0.0000015455,0.0000015559,0.0000015562,0.0000015264, -0.0000015253,0.0000015511,0.0000015561,0.0000015299,0.0000014975, -0.0000014925,0.0000015129,0.0000015273,0.0000015112,0.0000014888, -0.0000014830,0.0000014823,0.0000014849,0.0000015011,0.0000015197, -0.0000015221,0.0000015162,0.0000015172,0.0000015239,0.0000015222, -0.0000014647,0.0000013601,0.0000013191,0.0000013143,0.0000013180, -0.0000013237,0.0000013228,0.0000013192,0.0000013166,0.0000013145, -0.0000013105,0.0000013094,0.0000013104,0.0000013128,0.0000013323, -0.0000013499,0.0000013531,0.0000013528,0.0000013552,0.0000013593, -0.0000013615,0.0000013618,0.0000013618,0.0000013627,0.0000013630, -0.0000013624,0.0000013748,0.0000014362,0.0000015021,0.0000015271, -0.0000015348,0.0000015465,0.0000015490,0.0000015363,0.0000015230, -0.0000015177,0.0000015181,0.0000015297,0.0000015676,0.0000016025, -0.0000015973,0.0000015562,0.0000015319,0.0000015311,0.0000015313, -0.0000015306,0.0000015252,0.0000015206,0.0000015302,0.0000015540, -0.0000015663,0.0000015750,0.0000015849,0.0000015829,0.0000015937, -0.0000016482,0.0000017060,0.0000017186,0.0000017059,0.0000017002, -0.0000017207,0.0000017459,0.0000017555,0.0000017608,0.0000017634, -0.0000017507,0.0000017620,0.0000018458,0.0000019179,0.0000019276, -0.0000018654,0.0000017188,0.0000017135,0.0000018706,0.0000018237, -0.0000016913,0.0000016958,0.0000017315,0.0000017058,0.0000016633, -0.0000016417,0.0000016528,0.0000016658,0.0000016760,0.0000016918, -0.0000017268,0.0000017485,0.0000017510,0.0000017752,0.0000018039, -0.0000017728,0.0000016961,0.0000016582,0.0000016097,0.0000016033, -0.0000016122,0.0000016066,0.0000015927,0.0000015845,0.0000015872, -0.0000015945,0.0000016032,0.0000016076,0.0000016046,0.0000016053, -0.0000016200,0.0000016270,0.0000016229,0.0000016166,0.0000016167, -0.0000016187,0.0000016139,0.0000016010,0.0000016043,0.0000016336, -0.0000016700,0.0000016852,0.0000016580,0.0000016064,0.0000016095, -0.0000016360,0.0000016406,0.0000016175,0.0000015941,0.0000015973, -0.0000016193,0.0000016271,0.0000016097,0.0000015504,0.0000015268, -0.0000015232,0.0000015221,0.0000015140,0.0000015014,0.0000014994, -0.0000014997,0.0000014981,0.0000014938,0.0000014816,0.0000014754, -0.0000014804,0.0000014862,0.0000014908,0.0000014949,0.0000014920, -0.0000014749,0.0000014699,0.0000014981,0.0000015203,0.0000015125, -0.0000015068,0.0000015564,0.0000015750,0.0000015209,0.0000015506, -0.0000015978,0.0000016012,0.0000015892,0.0000015843,0.0000015838, -0.0000015734,0.0000015872,0.0000016154,0.0000016260,0.0000016240, -0.0000016209,0.0000016192,0.0000016201,0.0000016252,0.0000016326, -0.0000016383,0.0000016395,0.0000016371,0.0000016387,0.0000016521, -0.0000016611,0.0000016506,0.0000016303,0.0000016213,0.0000016029, -0.0000015632,0.0000015543,0.0000015851,0.0000016197,0.0000016263, -0.0000015930,0.0000015637,0.0000015609,0.0000015869,0.0000016433, -0.0000016772,0.0000016666,0.0000016419,0.0000016351,0.0000016454, -0.0000016656,0.0000016808,0.0000016818,0.0000016693,0.0000016529, -0.0000016420,0.0000016376,0.0000016323,0.0000016218,0.0000016155, -0.0000016148,0.0000016087,0.0000016007,0.0000016020,0.0000016161, -0.0000016356,0.0000016572,0.0000016762,0.0000016870,0.0000016920, -0.0000016932,0.0000016928,0.0000016878,0.0000016792,0.0000016702, -0.0000016644,0.0000016617,0.0000016597,0.0000016571,0.0000016546, -0.0000016538,0.0000016546,0.0000016560,0.0000016572,0.0000016586, -0.0000016599,0.0000016615,0.0000016628,0.0000016620,0.0000016588, -0.0000016517,0.0000016370,0.0000016171,0.0000015983,0.0000015870, -0.0000015816,0.0000015726,0.0000015560,0.0000015378,0.0000015239, -0.0000015155,0.0000015151,0.0000015163,0.0000015063,0.0000014876, -0.0000014757,0.0000014743,0.0000014791,0.0000014908,0.0000015010, -0.0000014886,0.0000014475,0.0000014148,0.0000014061,0.0000014062, -0.0000014115,0.0000014283,0.0000014454,0.0000014505,0.0000014578, -0.0000014936,0.0000015428,0.0000015605,0.0000015484,0.0000015217, -0.0000015110,0.0000015142,0.0000015195,0.0000015230,0.0000015261, -0.0000015299,0.0000015321,0.0000015326,0.0000015279,0.0000015149, -0.0000015036,0.0000014996,0.0000014975,0.0000014939,0.0000014894, -0.0000014869,0.0000014840,0.0000014790,0.0000014740,0.0000014689, -0.0000014613,0.0000014534,0.0000014493,0.0000014468,0.0000014439, -0.0000014479,0.0000014657,0.0000014858,0.0000015003,0.0000015178, -0.0000015368,0.0000015486,0.0000015598,0.0000015778,0.0000015935, -0.0000016009,0.0000016036,0.0000016039,0.0000016015,0.0000015954, -0.0000015906,0.0000015896,0.0000015893,0.0000015686,0.0000015180, -0.0000014817,0.0000014743,0.0000014696,0.0000014763,0.0000015349, -0.0000016247,0.0000016410,0.0000015973,0.0000016202,0.0000016449, -0.0000015752,0.0000015458,0.0000015588,0.0000015422,0.0000015256, -0.0000015463,0.0000015640,0.0000015506,0.0000015113,0.0000014900, -0.0000014982,0.0000015232,0.0000015238,0.0000014990,0.0000014838, -0.0000014832,0.0000014829,0.0000014887,0.0000015078,0.0000015232, -0.0000015220,0.0000015161,0.0000015203,0.0000015299,0.0000015084, -0.0000014050,0.0000013281,0.0000013098,0.0000013078,0.0000013080, -0.0000013068,0.0000013048,0.0000013040,0.0000013070,0.0000013076, -0.0000013089,0.0000013095,0.0000013191,0.0000013445,0.0000013540, -0.0000013511,0.0000013513,0.0000013538,0.0000013554,0.0000013559, -0.0000013555,0.0000013543,0.0000013541,0.0000013555,0.0000013552, -0.0000013647,0.0000014248,0.0000014948,0.0000015262,0.0000015399, -0.0000015486,0.0000015387,0.0000015193,0.0000015127,0.0000015174, -0.0000015212,0.0000015220,0.0000015425,0.0000015916,0.0000016252, -0.0000015985,0.0000015464,0.0000015322,0.0000015324,0.0000015315, -0.0000015255,0.0000015184,0.0000015267,0.0000015513,0.0000015668, -0.0000015761,0.0000015853,0.0000015831,0.0000015865,0.0000016324, -0.0000016962,0.0000017215,0.0000017117,0.0000016959,0.0000017106, -0.0000017423,0.0000017547,0.0000017593,0.0000017606,0.0000017466, -0.0000017742,0.0000018670,0.0000019224,0.0000019224,0.0000018327, -0.0000016862,0.0000016796,0.0000018517,0.0000018370,0.0000016940, -0.0000016874,0.0000017312,0.0000017191,0.0000016748,0.0000016369, -0.0000016371,0.0000016594,0.0000016757,0.0000016894,0.0000017217, -0.0000017471,0.0000017514,0.0000017756,0.0000018008,0.0000017559, -0.0000016857,0.0000016480,0.0000016113,0.0000016067,0.0000016136, -0.0000016086,0.0000015965,0.0000015901,0.0000015915,0.0000015995, -0.0000016071,0.0000016063,0.0000015987,0.0000016036,0.0000016198, -0.0000016214,0.0000016163,0.0000016169,0.0000016201,0.0000016172, -0.0000016026,0.0000016006,0.0000016250,0.0000016617,0.0000016831, -0.0000016665,0.0000016124,0.0000016002,0.0000016174,0.0000016206, -0.0000016040,0.0000015936,0.0000016056,0.0000016275,0.0000016275, -0.0000015965,0.0000015429,0.0000015254,0.0000015211,0.0000015190, -0.0000015086,0.0000014981,0.0000014974,0.0000014989,0.0000014987, -0.0000014904,0.0000014792,0.0000014785,0.0000014824,0.0000014836, -0.0000014883,0.0000014951,0.0000014902,0.0000014724,0.0000014767, -0.0000015088,0.0000015193,0.0000015064,0.0000015148,0.0000015748, -0.0000015660,0.0000015123,0.0000015540,0.0000015976,0.0000015993, -0.0000015891,0.0000015867,0.0000015824,0.0000015717,0.0000015799, -0.0000016072,0.0000016241,0.0000016274,0.0000016264,0.0000016268, -0.0000016308,0.0000016361,0.0000016387,0.0000016387,0.0000016359, -0.0000016370,0.0000016504,0.0000016605,0.0000016521,0.0000016307, -0.0000016216,0.0000016068,0.0000015638,0.0000015445,0.0000015718, -0.0000016102,0.0000016279,0.0000016048,0.0000015697,0.0000015617, -0.0000015754,0.0000016250,0.0000016719,0.0000016745,0.0000016511, -0.0000016370,0.0000016421,0.0000016609,0.0000016779,0.0000016823, -0.0000016754,0.0000016602,0.0000016464,0.0000016383,0.0000016344, -0.0000016272,0.0000016177,0.0000016140,0.0000016100,0.0000015923, -0.0000015745,0.0000015693,0.0000015780,0.0000015998,0.0000016266, -0.0000016520,0.0000016725,0.0000016861,0.0000016919,0.0000016926, -0.0000016892,0.0000016828,0.0000016771,0.0000016738,0.0000016713, -0.0000016665,0.0000016610,0.0000016581,0.0000016577,0.0000016578, -0.0000016575,0.0000016569,0.0000016556,0.0000016538,0.0000016514, -0.0000016470,0.0000016365,0.0000016175,0.0000015975,0.0000015853, -0.0000015809,0.0000015748,0.0000015599,0.0000015404,0.0000015264, -0.0000015183,0.0000015130,0.0000015134,0.0000015153,0.0000015076, -0.0000014883,0.0000014728,0.0000014670,0.0000014681,0.0000014815, -0.0000014979,0.0000014868,0.0000014458,0.0000014129,0.0000014057, -0.0000014076,0.0000014159,0.0000014289,0.0000014375,0.0000014417, -0.0000014615,0.0000015090,0.0000015523,0.0000015584,0.0000015386, -0.0000015182,0.0000015151,0.0000015189,0.0000015225,0.0000015254, -0.0000015272,0.0000015298,0.0000015340,0.0000015378,0.0000015369, -0.0000015272,0.0000015133,0.0000015024,0.0000014944,0.0000014888, -0.0000014846,0.0000014823,0.0000014801,0.0000014755,0.0000014702, -0.0000014651,0.0000014582,0.0000014514,0.0000014475,0.0000014445, -0.0000014421,0.0000014467,0.0000014660,0.0000014875,0.0000015049, -0.0000015231,0.0000015387,0.0000015511,0.0000015702,0.0000015928, -0.0000016050,0.0000016076,0.0000016078,0.0000016064,0.0000016005, -0.0000015923,0.0000015876,0.0000015880,0.0000015887,0.0000015697, -0.0000015189,0.0000014794,0.0000014712,0.0000014701,0.0000014872, -0.0000015619,0.0000016375,0.0000016298,0.0000016013,0.0000016337, -0.0000016242,0.0000015558,0.0000015529,0.0000015568,0.0000015346, -0.0000015383,0.0000015640,0.0000015659,0.0000015346,0.0000014973, -0.0000014900,0.0000015101,0.0000015264,0.0000015132,0.0000014896, -0.0000014840,0.0000014835,0.0000014837,0.0000014937,0.0000015143, -0.0000015259,0.0000015223,0.0000015177,0.0000015258,0.0000015344, -0.0000014757,0.0000013656,0.0000013138,0.0000013053,0.0000013011, -0.0000012988,0.0000012995,0.0000013019,0.0000013070,0.0000013096, -0.0000013068,0.0000013066,0.0000013249,0.0000013527,0.0000013562, -0.0000013481,0.0000013453,0.0000013464,0.0000013464,0.0000013462, -0.0000013456,0.0000013447,0.0000013449,0.0000013480,0.0000013487, -0.0000013598,0.0000014221,0.0000014928,0.0000015276,0.0000015436, -0.0000015447,0.0000015272,0.0000015128,0.0000015162,0.0000015299, -0.0000015418,0.0000015464,0.0000015520,0.0000015840,0.0000016342, -0.0000016391,0.0000015798,0.0000015335,0.0000015313,0.0000015333, -0.0000015263,0.0000015175,0.0000015249,0.0000015496,0.0000015669, -0.0000015761,0.0000015842,0.0000015816,0.0000015816,0.0000016204, -0.0000016856,0.0000017208,0.0000017157,0.0000016957,0.0000017008, -0.0000017335,0.0000017516,0.0000017561,0.0000017477,0.0000017433, -0.0000018005,0.0000018916,0.0000019202,0.0000019002,0.0000017891, -0.0000016610,0.0000016562,0.0000018348,0.0000018445,0.0000016982, -0.0000016791,0.0000017250,0.0000017282,0.0000016872,0.0000016423, -0.0000016291,0.0000016532,0.0000016741,0.0000016905,0.0000017218, -0.0000017467,0.0000017515,0.0000017780,0.0000017935,0.0000017355, -0.0000016768,0.0000016394,0.0000016148,0.0000016081,0.0000016130, -0.0000016091,0.0000016012,0.0000015974,0.0000015979,0.0000016034, -0.0000016065,0.0000015990,0.0000015924,0.0000016055,0.0000016179, -0.0000016161,0.0000016168,0.0000016214,0.0000016196,0.0000016061, -0.0000015989,0.0000016175,0.0000016528,0.0000016820,0.0000016727, -0.0000016210,0.0000015971,0.0000016041,0.0000016049,0.0000015956, -0.0000015946,0.0000016147,0.0000016326,0.0000016234,0.0000015835, -0.0000015389,0.0000015248,0.0000015194,0.0000015167,0.0000015047, -0.0000014953,0.0000014959,0.0000014993,0.0000014974,0.0000014863, -0.0000014801,0.0000014829,0.0000014839,0.0000014821,0.0000014876, -0.0000014956,0.0000014874,0.0000014708,0.0000014848,0.0000015133, -0.0000015142,0.0000015035,0.0000015277,0.0000015884,0.0000015562, -0.0000015089,0.0000015466,0.0000015928,0.0000015978,0.0000015939, -0.0000015973,0.0000015945,0.0000015851,0.0000015862,0.0000016035, -0.0000016221,0.0000016293,0.0000016315,0.0000016333,0.0000016363, -0.0000016381,0.0000016372,0.0000016341,0.0000016349,0.0000016481, -0.0000016607,0.0000016535,0.0000016311,0.0000016197,0.0000016097, -0.0000015689,0.0000015406,0.0000015581,0.0000015965,0.0000016262, -0.0000016159,0.0000015775,0.0000015617,0.0000015672,0.0000016053, -0.0000016597,0.0000016784,0.0000016623,0.0000016426,0.0000016408, -0.0000016562,0.0000016736,0.0000016814,0.0000016801,0.0000016689, -0.0000016546,0.0000016437,0.0000016369,0.0000016327,0.0000016254, -0.0000016169,0.0000016140,0.0000016057,0.0000015833,0.0000015618, -0.0000015571,0.0000015631,0.0000015750,0.0000015938,0.0000016198, -0.0000016459,0.0000016665,0.0000016791,0.0000016828,0.0000016806, -0.0000016762,0.0000016735,0.0000016711,0.0000016662,0.0000016596, -0.0000016547,0.0000016530,0.0000016535,0.0000016532,0.0000016507, -0.0000016464,0.0000016404,0.0000016303,0.0000016135,0.0000015952, -0.0000015841,0.0000015797,0.0000015785,0.0000015700,0.0000015504, -0.0000015296,0.0000015172,0.0000015108,0.0000015069,0.0000015093, -0.0000015148,0.0000015100,0.0000014913,0.0000014732,0.0000014654, -0.0000014660,0.0000014796,0.0000014969,0.0000014821,0.0000014399, -0.0000014117,0.0000014080,0.0000014126,0.0000014222,0.0000014305, -0.0000014335,0.0000014386,0.0000014705,0.0000015245,0.0000015574, -0.0000015506,0.0000015271,0.0000015168,0.0000015197,0.0000015220, -0.0000015236,0.0000015255,0.0000015266,0.0000015285,0.0000015339, -0.0000015415,0.0000015435,0.0000015390,0.0000015268,0.0000015112, -0.0000014966,0.0000014852,0.0000014803,0.0000014792,0.0000014783, -0.0000014735,0.0000014675,0.0000014626,0.0000014566,0.0000014501, -0.0000014458,0.0000014425,0.0000014410,0.0000014464,0.0000014670, -0.0000014906,0.0000015103,0.0000015274,0.0000015412,0.0000015590, -0.0000015863,0.0000016089,0.0000016150,0.0000016133,0.0000016115, -0.0000016071,0.0000015964,0.0000015856,0.0000015829,0.0000015851, -0.0000015871,0.0000015684,0.0000015172,0.0000014770,0.0000014708, -0.0000014717,0.0000015040,0.0000015896,0.0000016435,0.0000016185, -0.0000016094,0.0000016361,0.0000015980,0.0000015518,0.0000015592, -0.0000015505,0.0000015378,0.0000015553,0.0000015691,0.0000015572, -0.0000015180,0.0000014894,0.0000014958,0.0000015198,0.0000015243, -0.0000015016,0.0000014845,0.0000014840,0.0000014833,0.0000014853, -0.0000014999,0.0000015205,0.0000015280,0.0000015222,0.0000015179, -0.0000015307,0.0000015305,0.0000014479,0.0000013447,0.0000013082, -0.0000013024,0.0000012998,0.0000013000,0.0000013046,0.0000013086, -0.0000013085,0.0000012997,0.0000013004,0.0000013253,0.0000013518, -0.0000013616,0.0000013550,0.0000013472,0.0000013453,0.0000013471, -0.0000013518,0.0000013578,0.0000013599,0.0000013562,0.0000013505, -0.0000013460,0.0000013592,0.0000014271,0.0000014959,0.0000015307, -0.0000015453,0.0000015388,0.0000015199,0.0000015142,0.0000015269, -0.0000015459,0.0000015634,0.0000015772,0.0000015846,0.0000015985, -0.0000016397,0.0000016644,0.0000016207,0.0000015498,0.0000015308, -0.0000015327,0.0000015275,0.0000015176,0.0000015251,0.0000015494, -0.0000015668,0.0000015752,0.0000015813,0.0000015798,0.0000015794, -0.0000016111,0.0000016731,0.0000017165,0.0000017197,0.0000016981, -0.0000016911,0.0000017225,0.0000017523,0.0000017475,0.0000017335, -0.0000017533,0.0000018427,0.0000019103,0.0000019158,0.0000018577, -0.0000017398,0.0000016449,0.0000016414,0.0000018147,0.0000018436, -0.0000017022,0.0000016710,0.0000017176,0.0000017303,0.0000016968, -0.0000016482,0.0000016226,0.0000016491,0.0000016727,0.0000016934, -0.0000017246,0.0000017463,0.0000017514,0.0000017819,0.0000017837, -0.0000017143,0.0000016696,0.0000016330,0.0000016180,0.0000016066, -0.0000016104,0.0000016100,0.0000016060,0.0000016046,0.0000016033, -0.0000016037,0.0000016002,0.0000015901,0.0000015911,0.0000016092, -0.0000016157,0.0000016167,0.0000016221,0.0000016212,0.0000016094, -0.0000015992,0.0000016115,0.0000016443,0.0000016778,0.0000016761, -0.0000016271,0.0000015959,0.0000015975,0.0000015966,0.0000015929, -0.0000015993,0.0000016242,0.0000016367,0.0000016170,0.0000015716, -0.0000015381,0.0000015246,0.0000015189,0.0000015153,0.0000015016, -0.0000014934,0.0000014955,0.0000014995,0.0000014947,0.0000014839, -0.0000014826,0.0000014859,0.0000014839,0.0000014816,0.0000014877, -0.0000014956,0.0000014842,0.0000014712,0.0000014920,0.0000015140, -0.0000015081,0.0000015029,0.0000015401,0.0000015955,0.0000015525, -0.0000015074,0.0000015312,0.0000015816,0.0000015977,0.0000015967, -0.0000016035,0.0000016075,0.0000016020,0.0000015984,0.0000016078, -0.0000016202,0.0000016284,0.0000016317,0.0000016341,0.0000016360, -0.0000016352,0.0000016319,0.0000016326,0.0000016452,0.0000016602, -0.0000016544,0.0000016322,0.0000016183,0.0000016108,0.0000015761, -0.0000015384,0.0000015450,0.0000015803,0.0000016172,0.0000016243, -0.0000015892,0.0000015628,0.0000015619,0.0000015869,0.0000016414, -0.0000016772,0.0000016717,0.0000016520,0.0000016436,0.0000016521, -0.0000016688,0.0000016789,0.0000016803,0.0000016752,0.0000016628, -0.0000016514,0.0000016429,0.0000016367,0.0000016327,0.0000016262, -0.0000016183,0.0000016140,0.0000016038,0.0000015798,0.0000015577, -0.0000015561,0.0000015688,0.0000015807,0.0000015871,0.0000015960, -0.0000016163,0.0000016378,0.0000016514,0.0000016579,0.0000016611, -0.0000016635,0.0000016645,0.0000016619,0.0000016552,0.0000016481, -0.0000016436,0.0000016416,0.0000016398,0.0000016356,0.0000016264, -0.0000016103,0.0000015916,0.0000015800,0.0000015773,0.0000015782, -0.0000015755,0.0000015625,0.0000015414,0.0000015229,0.0000015136, -0.0000015078,0.0000015024,0.0000015034,0.0000015115,0.0000015126, -0.0000014976,0.0000014780,0.0000014684,0.0000014692,0.0000014836, -0.0000014927,0.0000014747,0.0000014337,0.0000014129,0.0000014133, -0.0000014213,0.0000014284,0.0000014311,0.0000014319,0.0000014441, -0.0000014878,0.0000015395,0.0000015581,0.0000015395,0.0000015178, -0.0000015163,0.0000015223,0.0000015244,0.0000015254,0.0000015277, -0.0000015284,0.0000015284,0.0000015327,0.0000015409,0.0000015463, -0.0000015446,0.0000015364,0.0000015224,0.0000015050,0.0000014889, -0.0000014803,0.0000014787,0.0000014781,0.0000014733,0.0000014667, -0.0000014618,0.0000014563,0.0000014505,0.0000014464,0.0000014422, -0.0000014403,0.0000014465,0.0000014690,0.0000014951,0.0000015160, -0.0000015314,0.0000015471,0.0000015732,0.0000016050,0.0000016227, -0.0000016233,0.0000016188,0.0000016149,0.0000016061,0.0000015903, -0.0000015787,0.0000015783,0.0000015831,0.0000015860,0.0000015658, -0.0000015125,0.0000014744,0.0000014713,0.0000014772,0.0000015256, -0.0000016122,0.0000016442,0.0000016119,0.0000016201,0.0000016312, -0.0000015756,0.0000015515,0.0000015597,0.0000015466,0.0000015475, -0.0000015675,0.0000015706,0.0000015450,0.0000015052,0.0000014901, -0.0000015062,0.0000015238,0.0000015151,0.0000014913,0.0000014846, -0.0000014871,0.0000014862,0.0000014902,0.0000015078,0.0000015268, -0.0000015309,0.0000015215,0.0000015173,0.0000015329,0.0000015243, -0.0000014329,0.0000013360,0.0000013053,0.0000013032,0.0000013034, -0.0000013064,0.0000013085,0.0000013065,0.0000012929,0.0000012924, -0.0000013188,0.0000013397,0.0000013565,0.0000013658,0.0000013662, -0.0000013682,0.0000013738,0.0000013875,0.0000014062,0.0000014173, -0.0000014082,0.0000013769,0.0000013474,0.0000013622,0.0000014366, -0.0000015025,0.0000015355,0.0000015443,0.0000015330,0.0000015177, -0.0000015208,0.0000015388,0.0000015588,0.0000015796,0.0000016023, -0.0000016200,0.0000016317,0.0000016565,0.0000016817,0.0000016534, -0.0000015752,0.0000015311,0.0000015296,0.0000015259,0.0000015170, -0.0000015258,0.0000015508,0.0000015677,0.0000015741,0.0000015781, -0.0000015782,0.0000015784,0.0000016031,0.0000016609,0.0000017109, -0.0000017203,0.0000017026,0.0000016818,0.0000017075,0.0000017523, -0.0000017539,0.0000017487,0.0000018017,0.0000018872,0.0000019132, -0.0000018808,0.0000017896,0.0000016970,0.0000016371,0.0000016309, -0.0000017995,0.0000018436,0.0000017074,0.0000016668,0.0000017112, -0.0000017303,0.0000017034,0.0000016518,0.0000016205,0.0000016486, -0.0000016728,0.0000016976,0.0000017296,0.0000017457,0.0000017530, -0.0000017828,0.0000017737,0.0000016956,0.0000016631,0.0000016292, -0.0000016189,0.0000016022,0.0000016074,0.0000016117,0.0000016104, -0.0000016094,0.0000016042,0.0000015990,0.0000015913,0.0000015842, -0.0000015945,0.0000016136,0.0000016170,0.0000016222,0.0000016224, -0.0000016120,0.0000016005,0.0000016069,0.0000016363,0.0000016724, -0.0000016785,0.0000016318,0.0000015945,0.0000015956,0.0000015950, -0.0000015933,0.0000016057,0.0000016323,0.0000016392,0.0000016089, -0.0000015631,0.0000015383,0.0000015243,0.0000015186,0.0000015138, -0.0000014991,0.0000014928,0.0000014958,0.0000014987,0.0000014921, -0.0000014841,0.0000014857,0.0000014866,0.0000014821,0.0000014804, -0.0000014877,0.0000014949,0.0000014812,0.0000014726,0.0000014983, -0.0000015115,0.0000015035,0.0000015050,0.0000015500,0.0000016009, -0.0000015563,0.0000015099,0.0000015155,0.0000015625,0.0000015924, -0.0000015972,0.0000016044,0.0000016109,0.0000016123,0.0000016101, -0.0000016119,0.0000016180,0.0000016243,0.0000016287,0.0000016317, -0.0000016319,0.0000016288,0.0000016299,0.0000016438,0.0000016590, -0.0000016546,0.0000016337,0.0000016177,0.0000016118,0.0000015841, -0.0000015401,0.0000015322,0.0000015614,0.0000016028,0.0000016242, -0.0000016031,0.0000015687,0.0000015612,0.0000015732,0.0000016190, -0.0000016675,0.0000016755,0.0000016618,0.0000016498,0.0000016514, -0.0000016646,0.0000016757,0.0000016778,0.0000016766,0.0000016687, -0.0000016578,0.0000016498,0.0000016429,0.0000016369,0.0000016334, -0.0000016282,0.0000016205,0.0000016143,0.0000016035,0.0000015801, -0.0000015586,0.0000015586,0.0000015748,0.0000015896,0.0000015939, -0.0000015953,0.0000015998,0.0000016055,0.0000016158,0.0000016249, -0.0000016317,0.0000016364,0.0000016376,0.0000016330,0.0000016255, -0.0000016196,0.0000016158,0.0000016113,0.0000016018,0.0000015884, -0.0000015784,0.0000015763,0.0000015773,0.0000015771,0.0000015695, -0.0000015530,0.0000015320,0.0000015167,0.0000015115,0.0000015087, -0.0000015024,0.0000015002,0.0000015064,0.0000015117,0.0000015042, -0.0000014870,0.0000014764,0.0000014779,0.0000014902,0.0000014923, -0.0000014623,0.0000014263,0.0000014161,0.0000014212,0.0000014298, -0.0000014325,0.0000014313,0.0000014318,0.0000014543,0.0000015071, -0.0000015505,0.0000015531,0.0000015287,0.0000015133,0.0000015161, -0.0000015236,0.0000015273,0.0000015295,0.0000015326,0.0000015338, -0.0000015317,0.0000015311,0.0000015367,0.0000015435,0.0000015447, -0.0000015393,0.0000015287,0.0000015128,0.0000014956,0.0000014839, -0.0000014804,0.0000014786,0.0000014733,0.0000014667,0.0000014622, -0.0000014584,0.0000014546,0.0000014510,0.0000014454,0.0000014418, -0.0000014479,0.0000014723,0.0000015005,0.0000015212,0.0000015362, -0.0000015575,0.0000015912,0.0000016220,0.0000016326,0.0000016301, -0.0000016234,0.0000016161,0.0000016022,0.0000015832,0.0000015743, -0.0000015761,0.0000015841,0.0000015876,0.0000015621,0.0000015060, -0.0000014729,0.0000014727,0.0000014875,0.0000015508,0.0000016305, -0.0000016382,0.0000016108,0.0000016276,0.0000016142,0.0000015577, -0.0000015550,0.0000015566,0.0000015482,0.0000015591,0.0000015733, -0.0000015658,0.0000015318,0.0000014979,0.0000014955,0.0000015167, -0.0000015263,0.0000015043,0.0000014872,0.0000014911,0.0000014973, -0.0000014944,0.0000014990,0.0000015172,0.0000015321,0.0000015308, -0.0000015185,0.0000015152,0.0000015333,0.0000015252,0.0000014326, -0.0000013356,0.0000013052,0.0000013048,0.0000013069,0.0000013076, -0.0000013060,0.0000012948,0.0000012836,0.0000013014,0.0000013257, -0.0000013362,0.0000013486,0.0000013600,0.0000013668,0.0000013715, -0.0000013820,0.0000014087,0.0000014449,0.0000014567,0.0000014176, -0.0000013588,0.0000013709,0.0000014493,0.0000015113,0.0000015409, -0.0000015440,0.0000015293,0.0000015201,0.0000015300,0.0000015482, -0.0000015659,0.0000015908,0.0000016227,0.0000016493,0.0000016633, -0.0000016780,0.0000016936,0.0000016743,0.0000015989,0.0000015352, -0.0000015245,0.0000015214,0.0000015170,0.0000015275,0.0000015529, -0.0000015687,0.0000015737,0.0000015763,0.0000015778,0.0000015787, -0.0000015966,0.0000016515,0.0000017069,0.0000017229,0.0000017088, -0.0000016791,0.0000016870,0.0000017456,0.0000017933,0.0000018266, -0.0000018777,0.0000019073,0.0000018825,0.0000018027,0.0000017202, -0.0000016716,0.0000016342,0.0000016253,0.0000017892,0.0000018406, -0.0000017076,0.0000016598,0.0000017070,0.0000017308,0.0000017085, -0.0000016530,0.0000016216,0.0000016523,0.0000016750,0.0000017034, -0.0000017350,0.0000017450,0.0000017569,0.0000017868,0.0000017513, -0.0000016810,0.0000016553,0.0000016276,0.0000016168,0.0000015973, -0.0000016053,0.0000016126,0.0000016136,0.0000016097,0.0000016001, -0.0000015911,0.0000015826,0.0000015830,0.0000016055,0.0000016179, -0.0000016213,0.0000016229,0.0000016141,0.0000016011,0.0000016037, -0.0000016285,0.0000016649,0.0000016794,0.0000016391,0.0000015945, -0.0000015947,0.0000015958,0.0000015963,0.0000016114,0.0000016374, -0.0000016383,0.0000016020,0.0000015590,0.0000015386,0.0000015235, -0.0000015179,0.0000015124,0.0000014978,0.0000014926,0.0000014963, -0.0000014978,0.0000014907,0.0000014864,0.0000014875,0.0000014852, -0.0000014794,0.0000014788,0.0000014867,0.0000014930,0.0000014788, -0.0000014745,0.0000015021,0.0000015104,0.0000015013,0.0000015108, -0.0000015549,0.0000016016,0.0000015696,0.0000015193,0.0000015098, -0.0000015372,0.0000015746,0.0000015932,0.0000016011,0.0000016098, -0.0000016147,0.0000016154,0.0000016153,0.0000016178,0.0000016221, -0.0000016261,0.0000016272,0.0000016258,0.0000016282,0.0000016445, -0.0000016587,0.0000016544,0.0000016356,0.0000016177,0.0000016112, -0.0000015915,0.0000015436,0.0000015208,0.0000015396,0.0000015823, -0.0000016196,0.0000016162,0.0000015791,0.0000015606,0.0000015643, -0.0000015961,0.0000016491,0.0000016757,0.0000016700,0.0000016568, -0.0000016545,0.0000016626,0.0000016734,0.0000016758,0.0000016740, -0.0000016700,0.0000016620,0.0000016541,0.0000016492,0.0000016431, -0.0000016371,0.0000016336,0.0000016289,0.0000016219,0.0000016151, -0.0000016039,0.0000015820,0.0000015627,0.0000015627,0.0000015766, -0.0000015891,0.0000015957,0.0000015995,0.0000016000,0.0000015979, -0.0000015960,0.0000015975,0.0000015993,0.0000016017,0.0000015999, -0.0000015934,0.0000015852,0.0000015784,0.0000015760,0.0000015757, -0.0000015777,0.0000015808,0.0000015814,0.0000015766,0.0000015648, -0.0000015479,0.0000015283,0.0000015142,0.0000015110,0.0000015106, -0.0000015055,0.0000014991,0.0000015014,0.0000015096,0.0000015094, -0.0000014972,0.0000014859,0.0000014872,0.0000014959,0.0000014886, -0.0000014530,0.0000014223,0.0000014186,0.0000014288,0.0000014351, -0.0000014336,0.0000014308,0.0000014342,0.0000014687,0.0000015251, -0.0000015568,0.0000015485,0.0000015215,0.0000015111,0.0000015164, -0.0000015235,0.0000015287,0.0000015322,0.0000015349,0.0000015374, -0.0000015363,0.0000015319,0.0000015318,0.0000015381,0.0000015417, -0.0000015392,0.0000015306,0.0000015166,0.0000015010,0.0000014885, -0.0000014825,0.0000014785,0.0000014726,0.0000014668,0.0000014640, -0.0000014629,0.0000014617,0.0000014587,0.0000014510,0.0000014450, -0.0000014513,0.0000014772,0.0000015063,0.0000015260,0.0000015430, -0.0000015720,0.0000016097,0.0000016354,0.0000016401,0.0000016346, -0.0000016256,0.0000016143,0.0000015952,0.0000015769,0.0000015730, -0.0000015777,0.0000015879,0.0000015888,0.0000015555,0.0000014991, -0.0000014742,0.0000014751,0.0000015030,0.0000015791,0.0000016386, -0.0000016272,0.0000016115,0.0000016265,0.0000015927,0.0000015537, -0.0000015575,0.0000015530,0.0000015526,0.0000015681,0.0000015736, -0.0000015574,0.0000015193,0.0000014936,0.0000015016,0.0000015232, -0.0000015199,0.0000014942,0.0000014884,0.0000015046,0.0000015110, -0.0000015046,0.0000015088,0.0000015246,0.0000015324,0.0000015254, -0.0000015123,0.0000015103,0.0000015326,0.0000015304,0.0000014433, -0.0000013434,0.0000013049,0.0000013037,0.0000013059,0.0000013052, -0.0000012998,0.0000012860,0.0000012825,0.0000013045,0.0000013244, -0.0000013303,0.0000013330,0.0000013350,0.0000013337,0.0000013312, -0.0000013464,0.0000014061,0.0000014620,0.0000014418,0.0000013726, -0.0000013871,0.0000014647,0.0000015205,0.0000015458,0.0000015448, -0.0000015286,0.0000015260,0.0000015394,0.0000015531,0.0000015694, -0.0000016015,0.0000016419,0.0000016720,0.0000016851,0.0000016932, -0.0000017013,0.0000016871,0.0000016175,0.0000015443,0.0000015200, -0.0000015171,0.0000015160,0.0000015303,0.0000015553,0.0000015700, -0.0000015742,0.0000015764,0.0000015786,0.0000015795,0.0000015929, -0.0000016465,0.0000017057,0.0000017254,0.0000017161,0.0000016815, -0.0000016680,0.0000017151,0.0000018135,0.0000018830,0.0000018992, -0.0000018760,0.0000017952,0.0000017112,0.0000016750,0.0000016601, -0.0000016307,0.0000016224,0.0000017852,0.0000018401,0.0000017038, -0.0000016549,0.0000017041,0.0000017310,0.0000017131,0.0000016513, -0.0000016250,0.0000016581,0.0000016797,0.0000017122,0.0000017397, -0.0000017445,0.0000017651,0.0000017842,0.0000017225,0.0000016716, -0.0000016453,0.0000016256,0.0000016116,0.0000015922,0.0000016028, -0.0000016142,0.0000016141,0.0000016059,0.0000015923,0.0000015830, -0.0000015797,0.0000015938,0.0000016162,0.0000016210,0.0000016227, -0.0000016159,0.0000016023,0.0000016014,0.0000016212,0.0000016572, -0.0000016807,0.0000016507,0.0000015991,0.0000015929,0.0000015967, -0.0000015994,0.0000016164,0.0000016408,0.0000016367,0.0000015970, -0.0000015575,0.0000015388,0.0000015228,0.0000015174,0.0000015118, -0.0000014973,0.0000014927,0.0000014970,0.0000014972,0.0000014905, -0.0000014880,0.0000014876,0.0000014828,0.0000014776,0.0000014778, -0.0000014849,0.0000014907,0.0000014774,0.0000014781,0.0000015036, -0.0000015092,0.0000014998,0.0000015139,0.0000015551,0.0000015978, -0.0000015874,0.0000015395,0.0000015117,0.0000015154,0.0000015459, -0.0000015777,0.0000015955,0.0000016058,0.0000016127,0.0000016161, -0.0000016169,0.0000016188,0.0000016222,0.0000016241,0.0000016247, -0.0000016305,0.0000016462,0.0000016579,0.0000016531,0.0000016371, -0.0000016189,0.0000016099,0.0000015962,0.0000015513,0.0000015116, -0.0000015167,0.0000015566,0.0000016047,0.0000016226,0.0000015940, -0.0000015625,0.0000015591,0.0000015771,0.0000016241,0.0000016689, -0.0000016752,0.0000016636,0.0000016569,0.0000016606,0.0000016700, -0.0000016733,0.0000016698,0.0000016659,0.0000016625,0.0000016560, -0.0000016516,0.0000016495,0.0000016437,0.0000016367,0.0000016317, -0.0000016268,0.0000016204,0.0000016137,0.0000016035,0.0000015850, -0.0000015684,0.0000015684,0.0000015800,0.0000015892,0.0000015928, -0.0000015959,0.0000015992,0.0000016000,0.0000015983,0.0000015956, -0.0000015934,0.0000015896,0.0000015840,0.0000015786,0.0000015766, -0.0000015795,0.0000015855,0.0000015881,0.0000015863,0.0000015770, -0.0000015633,0.0000015486,0.0000015327,0.0000015192,0.0000015137, -0.0000015135,0.0000015094,0.0000015007,0.0000014981,0.0000015061, -0.0000015135,0.0000015072,0.0000014954,0.0000014950,0.0000014989, -0.0000014838,0.0000014454,0.0000014243,0.0000014266,0.0000014346, -0.0000014370,0.0000014331,0.0000014291,0.0000014389,0.0000014842, -0.0000015390,0.0000015579,0.0000015443,0.0000015189,0.0000015114, -0.0000015145,0.0000015216,0.0000015279,0.0000015330,0.0000015351, -0.0000015376,0.0000015371,0.0000015326,0.0000015300,0.0000015333, -0.0000015388,0.0000015376,0.0000015285,0.0000015147,0.0000015009, -0.0000014899,0.0000014825,0.0000014769,0.0000014711,0.0000014671, -0.0000014666,0.0000014681,0.0000014693,0.0000014671,0.0000014569, -0.0000014484,0.0000014553,0.0000014829,0.0000015119,0.0000015309, -0.0000015525,0.0000015885,0.0000016257,0.0000016448,0.0000016452, -0.0000016367,0.0000016246,0.0000016080,0.0000015870,0.0000015754, -0.0000015756,0.0000015843,0.0000015936,0.0000015886,0.0000015459, -0.0000014924,0.0000014765,0.0000014811,0.0000015235,0.0000016048, -0.0000016406,0.0000016167,0.0000016163,0.0000016210,0.0000015741, -0.0000015506,0.0000015575,0.0000015524,0.0000015601,0.0000015736, -0.0000015722,0.0000015471,0.0000015067,0.0000014918,0.0000015093, -0.0000015224,0.0000015087,0.0000014894,0.0000014975,0.0000015183, -0.0000015196,0.0000015115,0.0000015151,0.0000015243,0.0000015235, -0.0000015122,0.0000015025,0.0000015032,0.0000015273,0.0000015319, -0.0000014618,0.0000013577,0.0000013068,0.0000013003,0.0000013019, -0.0000013007,0.0000012948,0.0000012838,0.0000012848,0.0000013049, -0.0000013232,0.0000013305,0.0000013339,0.0000013347,0.0000013257, -0.0000013152,0.0000013541,0.0000014446,0.0000014510,0.0000013811, -0.0000014070,0.0000014810,0.0000015289,0.0000015494,0.0000015436, -0.0000015304,0.0000015337,0.0000015461,0.0000015549,0.0000015741, -0.0000016160,0.0000016610,0.0000016877,0.0000016959,0.0000016994, -0.0000017029,0.0000016906,0.0000016284,0.0000015536,0.0000015199, -0.0000015155,0.0000015170,0.0000015343,0.0000015585,0.0000015716, -0.0000015751,0.0000015768,0.0000015791,0.0000015798,0.0000015921, -0.0000016479,0.0000017079,0.0000017262,0.0000017213,0.0000016890, -0.0000016494,0.0000016672,0.0000017604,0.0000018396,0.0000018417, -0.0000017717,0.0000016861,0.0000016512,0.0000016555,0.0000016519, -0.0000016259,0.0000016188,0.0000017858,0.0000018343,0.0000016948, -0.0000016509,0.0000017022,0.0000017313,0.0000017148,0.0000016451, -0.0000016315,0.0000016647,0.0000016876,0.0000017235,0.0000017425, -0.0000017455,0.0000017754,0.0000017719,0.0000016956,0.0000016645, -0.0000016337,0.0000016219,0.0000016031,0.0000015870,0.0000015994, -0.0000016132,0.0000016114,0.0000015979,0.0000015848,0.0000015799, -0.0000015854,0.0000016091,0.0000016213,0.0000016213,0.0000016172, -0.0000016046,0.0000016000,0.0000016152,0.0000016498,0.0000016796, -0.0000016622,0.0000016082,0.0000015916,0.0000015963,0.0000016014, -0.0000016213,0.0000016438,0.0000016357,0.0000015933,0.0000015562, -0.0000015390,0.0000015223,0.0000015171,0.0000015123,0.0000014987, -0.0000014940,0.0000014977,0.0000014973,0.0000014911,0.0000014885, -0.0000014868,0.0000014814,0.0000014770,0.0000014770,0.0000014826, -0.0000014889,0.0000014770,0.0000014812,0.0000015031,0.0000015068, -0.0000014985,0.0000015131,0.0000015521,0.0000015886,0.0000015971, -0.0000015672,0.0000015292,0.0000015108,0.0000015200,0.0000015499, -0.0000015809,0.0000015987,0.0000016081,0.0000016135,0.0000016169, -0.0000016201,0.0000016239,0.0000016283,0.0000016366,0.0000016484, -0.0000016538,0.0000016490,0.0000016375,0.0000016205,0.0000016086, -0.0000015993,0.0000015612,0.0000015141,0.0000015009,0.0000015267, -0.0000015796,0.0000016193,0.0000016095,0.0000015709,0.0000015572, -0.0000015645,0.0000015976,0.0000016492,0.0000016760,0.0000016721, -0.0000016595,0.0000016574,0.0000016623,0.0000016657,0.0000016624, -0.0000016586,0.0000016587,0.0000016562,0.0000016513,0.0000016514, -0.0000016514,0.0000016438,0.0000016340,0.0000016277,0.0000016227, -0.0000016165,0.0000016104,0.0000016016,0.0000015858,0.0000015728, -0.0000015736,0.0000015831,0.0000015892,0.0000015894,0.0000015883, -0.0000015887,0.0000015904,0.0000015930,0.0000015958,0.0000015966, -0.0000015939,0.0000015894,0.0000015857,0.0000015856,0.0000015876, -0.0000015867,0.0000015788,0.0000015663,0.0000015541,0.0000015412, -0.0000015288,0.0000015216,0.0000015196,0.0000015150,0.0000015039, -0.0000014967,0.0000015026,0.0000015152,0.0000015153,0.0000015036, -0.0000015003,0.0000015000,0.0000014751,0.0000014389,0.0000014284, -0.0000014341,0.0000014405,0.0000014384,0.0000014320,0.0000014289, -0.0000014450,0.0000014990,0.0000015478,0.0000015573,0.0000015427, -0.0000015195,0.0000015115,0.0000015151,0.0000015229,0.0000015339, -0.0000015438,0.0000015471,0.0000015454,0.0000015404,0.0000015342, -0.0000015288,0.0000015304,0.0000015357,0.0000015348,0.0000015249, -0.0000015104,0.0000014969,0.0000014872,0.0000014801,0.0000014746, -0.0000014704,0.0000014689,0.0000014701,0.0000014733,0.0000014764, -0.0000014739,0.0000014612,0.0000014509,0.0000014587,0.0000014883, -0.0000015168,0.0000015367,0.0000015645,0.0000016050,0.0000016384, -0.0000016499,0.0000016474,0.0000016357,0.0000016188,0.0000015977, -0.0000015810,0.0000015783,0.0000015834,0.0000015924,0.0000015973, -0.0000015841,0.0000015328,0.0000014865,0.0000014789,0.0000014913, -0.0000015473,0.0000016234,0.0000016377,0.0000016127,0.0000016220, -0.0000016070,0.0000015575,0.0000015525,0.0000015567,0.0000015550, -0.0000015672,0.0000015755,0.0000015685,0.0000015343,0.0000014979, -0.0000014960,0.0000015158,0.0000015198,0.0000014991,0.0000014893, -0.0000015087,0.0000015256,0.0000015216,0.0000015135,0.0000015131, -0.0000015114,0.0000015030,0.0000014947,0.0000014931,0.0000014951, -0.0000015187,0.0000015318,0.0000014794,0.0000013787,0.0000013142, -0.0000012982,0.0000012962,0.0000012951,0.0000012909,0.0000012855, -0.0000012899,0.0000013059,0.0000013183,0.0000013264,0.0000013359, -0.0000013376,0.0000013179,0.0000013309,0.0000014269,0.0000014455, -0.0000013853,0.0000014273,0.0000014962,0.0000015358,0.0000015520, -0.0000015424,0.0000015342,0.0000015410,0.0000015502,0.0000015564, -0.0000015838,0.0000016353,0.0000016781,0.0000016962,0.0000016994, -0.0000017015,0.0000017031,0.0000016888,0.0000016311,0.0000015599, -0.0000015204,0.0000015139,0.0000015183,0.0000015394,0.0000015625, -0.0000015727,0.0000015750,0.0000015764,0.0000015783,0.0000015789, -0.0000015977,0.0000016591,0.0000017136,0.0000017255,0.0000017231, -0.0000016993,0.0000016463,0.0000016175,0.0000016595,0.0000017147, -0.0000017054,0.0000016500,0.0000016188,0.0000016276,0.0000016445, -0.0000016422,0.0000016200,0.0000016144,0.0000017920,0.0000018250, -0.0000016807,0.0000016498,0.0000017016,0.0000017317,0.0000017143, -0.0000016382,0.0000016398,0.0000016716,0.0000016993,0.0000017348, -0.0000017434,0.0000017501,0.0000017789,0.0000017453,0.0000016776, -0.0000016545,0.0000016242,0.0000016146,0.0000015942,0.0000015807, -0.0000015941,0.0000016100,0.0000016059,0.0000015908,0.0000015816, -0.0000015825,0.0000015991,0.0000016195,0.0000016201,0.0000016177, -0.0000016070,0.0000015997,0.0000016104,0.0000016427,0.0000016802, -0.0000016706,0.0000016162,0.0000015910,0.0000015952,0.0000016037, -0.0000016263,0.0000016459,0.0000016349,0.0000015908,0.0000015560, -0.0000015394,0.0000015218,0.0000015167,0.0000015138,0.0000015021, -0.0000014958,0.0000014982,0.0000014978,0.0000014923,0.0000014891, -0.0000014862,0.0000014807,0.0000014766,0.0000014761,0.0000014806, -0.0000014882,0.0000014773,0.0000014828,0.0000015015,0.0000015046, -0.0000014976,0.0000015087,0.0000015458,0.0000015760,0.0000015946, -0.0000015893,0.0000015600,0.0000015257,0.0000015115,0.0000015198, -0.0000015536,0.0000015847,0.0000016020,0.0000016103,0.0000016158, -0.0000016211,0.0000016274,0.0000016359,0.0000016445,0.0000016456, -0.0000016421,0.0000016354,0.0000016211,0.0000016077,0.0000016014, -0.0000015718,0.0000015232,0.0000014934,0.0000014986,0.0000015456, -0.0000016012,0.0000016166,0.0000015871,0.0000015579,0.0000015563, -0.0000015756,0.0000016201,0.0000016660,0.0000016770,0.0000016666, -0.0000016567,0.0000016550,0.0000016559,0.0000016540,0.0000016524, -0.0000016543,0.0000016542,0.0000016496,0.0000016500,0.0000016559, -0.0000016532,0.0000016401,0.0000016285,0.0000016223,0.0000016168, -0.0000016107,0.0000016058,0.0000015982,0.0000015840,0.0000015743, -0.0000015763,0.0000015830,0.0000015860,0.0000015847,0.0000015819, -0.0000015797,0.0000015793,0.0000015817,0.0000015844,0.0000015844, -0.0000015812,0.0000015766,0.0000015737,0.0000015729,0.0000015703, -0.0000015649,0.0000015584,0.0000015499,0.0000015389,0.0000015306, -0.0000015274,0.0000015232,0.0000015109,0.0000014966,0.0000014972, -0.0000015135,0.0000015200,0.0000015120,0.0000015062,0.0000014986, -0.0000014657,0.0000014330,0.0000014291,0.0000014401,0.0000014442, -0.0000014404,0.0000014323,0.0000014303,0.0000014541,0.0000015125, -0.0000015540,0.0000015587,0.0000015439,0.0000015247,0.0000015174, -0.0000015246,0.0000015379,0.0000015526,0.0000015656,0.0000015713, -0.0000015699,0.0000015601,0.0000015448,0.0000015315,0.0000015280, -0.0000015313,0.0000015318,0.0000015222,0.0000015064,0.0000014932, -0.0000014848,0.0000014790,0.0000014743,0.0000014712,0.0000014712, -0.0000014736,0.0000014772,0.0000014802,0.0000014770,0.0000014632, -0.0000014530,0.0000014620,0.0000014933,0.0000015216,0.0000015441, -0.0000015785,0.0000016200,0.0000016472,0.0000016534,0.0000016472, -0.0000016309,0.0000016091,0.0000015896,0.0000015822,0.0000015850, -0.0000015910,0.0000015970,0.0000015979,0.0000015733,0.0000015180, -0.0000014825,0.0000014822,0.0000015065,0.0000015736,0.0000016377, -0.0000016322,0.0000016138,0.0000016222,0.0000015902,0.0000015533, -0.0000015547,0.0000015557,0.0000015594,0.0000015725,0.0000015758, -0.0000015610,0.0000015207,0.0000014920,0.0000015013,0.0000015213, -0.0000015132,0.0000014899,0.0000014937,0.0000015183,0.0000015271, -0.0000015181,0.0000015084,0.0000015005,0.0000014901,0.0000014823, -0.0000014822,0.0000014849,0.0000014872,0.0000015087,0.0000015281, -0.0000014957,0.0000014028,0.0000013246,0.0000012957,0.0000012902, -0.0000012878,0.0000012854,0.0000012854,0.0000012916,0.0000013010, -0.0000013079,0.0000013200,0.0000013348,0.0000013228,0.0000013229, -0.0000014206,0.0000014386,0.0000013879,0.0000014453,0.0000015090, -0.0000015415,0.0000015543,0.0000015413,0.0000015378,0.0000015468, -0.0000015523,0.0000015600,0.0000016005,0.0000016572,0.0000016909, -0.0000016999,0.0000017013,0.0000017038,0.0000017041,0.0000016829, -0.0000016279,0.0000015636,0.0000015215,0.0000015117,0.0000015215, -0.0000015466,0.0000015658,0.0000015722,0.0000015742,0.0000015765, -0.0000015789,0.0000015829,0.0000016163,0.0000016790,0.0000017201, -0.0000017253,0.0000017216,0.0000017055,0.0000016537,0.0000015963, -0.0000015865,0.0000016030,0.0000015993,0.0000015896,0.0000015964, -0.0000016179,0.0000016337,0.0000016316,0.0000016153,0.0000016199, -0.0000018032,0.0000018150,0.0000016649,0.0000016475,0.0000017026, -0.0000017338,0.0000017089,0.0000016305,0.0000016546,0.0000016791, -0.0000017139,0.0000017421,0.0000017429,0.0000017608,0.0000017765, -0.0000017111,0.0000016672,0.0000016399,0.0000016165,0.0000016053, -0.0000015846,0.0000015727,0.0000015888,0.0000016073,0.0000016014, -0.0000015868,0.0000015829,0.0000015911,0.0000016131,0.0000016192, -0.0000016174,0.0000016090,0.0000016008,0.0000016070,0.0000016362, -0.0000016771,0.0000016774,0.0000016218,0.0000015898,0.0000015935, -0.0000016061,0.0000016314,0.0000016468,0.0000016342,0.0000015896, -0.0000015564,0.0000015405,0.0000015213,0.0000015155,0.0000015157, -0.0000015070,0.0000014985,0.0000014984,0.0000014981,0.0000014940, -0.0000014900,0.0000014857,0.0000014800,0.0000014758,0.0000014751, -0.0000014790,0.0000014879,0.0000014784,0.0000014832,0.0000015001, -0.0000015029,0.0000014976,0.0000015019,0.0000015354,0.0000015635, -0.0000015830,0.0000015945,0.0000015853,0.0000015562,0.0000015210, -0.0000015076,0.0000015229,0.0000015597,0.0000015904,0.0000016060, -0.0000016126,0.0000016181,0.0000016249,0.0000016306,0.0000016326, -0.0000016322,0.0000016298,0.0000016194,0.0000016072,0.0000016025, -0.0000015810,0.0000015346,0.0000014957,0.0000014851,0.0000015103, -0.0000015682,0.0000016131,0.0000016074,0.0000015689,0.0000015534, -0.0000015605,0.0000015897,0.0000016389,0.0000016728,0.0000016742, -0.0000016638,0.0000016540,0.0000016502,0.0000016487,0.0000016488, -0.0000016505,0.0000016503,0.0000016478,0.0000016499,0.0000016597, -0.0000016615,0.0000016479,0.0000016319,0.0000016222,0.0000016157, -0.0000016094,0.0000016053,0.0000016010,0.0000015907,0.0000015787, -0.0000015755,0.0000015770,0.0000015787,0.0000015787,0.0000015780, -0.0000015764,0.0000015748,0.0000015753,0.0000015762,0.0000015744, -0.0000015689,0.0000015619,0.0000015557,0.0000015530,0.0000015527, -0.0000015526,0.0000015498,0.0000015427,0.0000015352,0.0000015319, -0.0000015299,0.0000015212,0.0000015045,0.0000014971,0.0000015082, -0.0000015198,0.0000015165,0.0000015106,0.0000014966,0.0000014593, -0.0000014291,0.0000014286,0.0000014397,0.0000014441,0.0000014410, -0.0000014340,0.0000014330,0.0000014647,0.0000015239,0.0000015591, -0.0000015617,0.0000015500,0.0000015343,0.0000015331,0.0000015443, -0.0000015601,0.0000015728,0.0000015819,0.0000015866,0.0000015888, -0.0000015856,0.0000015690,0.0000015443,0.0000015279,0.0000015257, -0.0000015264,0.0000015199,0.0000015055,0.0000014925,0.0000014851, -0.0000014804,0.0000014764,0.0000014736,0.0000014738,0.0000014759, -0.0000014788,0.0000014810,0.0000014779,0.0000014637,0.0000014547, -0.0000014659,0.0000014984,0.0000015267,0.0000015535,0.0000015930, -0.0000016319,0.0000016520,0.0000016544,0.0000016447,0.0000016232, -0.0000016000,0.0000015878,0.0000015870,0.0000015875,0.0000015897, -0.0000015933,0.0000015911,0.0000015572,0.0000015054,0.0000014848, -0.0000014888,0.0000015266,0.0000016010,0.0000016428,0.0000016238, -0.0000016166,0.0000016166,0.0000015751,0.0000015524,0.0000015556, -0.0000015559,0.0000015648,0.0000015752,0.0000015740,0.0000015499, -0.0000015075,0.0000014913,0.0000015092,0.0000015209,0.0000015026, -0.0000014885,0.0000015023,0.0000015232,0.0000015224,0.0000015091, -0.0000014969,0.0000014860,0.0000014772,0.0000014718,0.0000014725, -0.0000014755,0.0000014789,0.0000015012,0.0000015236,0.0000014995, -0.0000014175,0.0000013345,0.0000012958,0.0000012859,0.0000012821, -0.0000012791,0.0000012798,0.0000012838,0.0000012900,0.0000013041, -0.0000013268,0.0000013220,0.0000013228,0.0000014217,0.0000014334, -0.0000013919,0.0000014618,0.0000015198,0.0000015459,0.0000015571, -0.0000015416,0.0000015409,0.0000015509,0.0000015526,0.0000015683, -0.0000016239,0.0000016782,0.0000016988,0.0000017017,0.0000017041, -0.0000017068,0.0000017038,0.0000016724,0.0000016206,0.0000015663, -0.0000015255,0.0000015167,0.0000015312,0.0000015545,0.0000015662, -0.0000015711,0.0000015781,0.0000015878,0.0000015964,0.0000016122, -0.0000016544,0.0000017026,0.0000017236,0.0000017241,0.0000017187, -0.0000017088,0.0000016649,0.0000015945,0.0000015578,0.0000015565, -0.0000015646,0.0000015768,0.0000015929,0.0000016117,0.0000016241, -0.0000016221,0.0000016127,0.0000016301,0.0000018152,0.0000017891, -0.0000016487,0.0000016458,0.0000017061,0.0000017365,0.0000016948, -0.0000016305,0.0000016697,0.0000016888,0.0000017292,0.0000017447, -0.0000017458,0.0000017746,0.0000017560,0.0000016829,0.0000016576, -0.0000016238,0.0000016094,0.0000015948,0.0000015731,0.0000015656, -0.0000015886,0.0000016072,0.0000015969,0.0000015849,0.0000015872, -0.0000016037,0.0000016175,0.0000016169,0.0000016099,0.0000016010, -0.0000016050,0.0000016301,0.0000016720,0.0000016833,0.0000016285, -0.0000015890,0.0000015913,0.0000016080,0.0000016359,0.0000016500, -0.0000016350,0.0000015902,0.0000015576,0.0000015424,0.0000015209, -0.0000015136,0.0000015174,0.0000015127,0.0000015028,0.0000014985, -0.0000014982,0.0000014958,0.0000014909,0.0000014849,0.0000014791, -0.0000014750,0.0000014741,0.0000014774,0.0000014874,0.0000014797, -0.0000014825,0.0000014986,0.0000015000,0.0000014975,0.0000014948, -0.0000015205,0.0000015502,0.0000015690,0.0000015839,0.0000015918, -0.0000015816,0.0000015511,0.0000015152,0.0000015056,0.0000015294, -0.0000015684,0.0000015963,0.0000016071,0.0000016101,0.0000016132, -0.0000016168,0.0000016195,0.0000016195,0.0000016141,0.0000016064, -0.0000016033,0.0000015880,0.0000015459,0.0000015025,0.0000014806, -0.0000014841,0.0000015281,0.0000015879,0.0000016155,0.0000015889, -0.0000015562,0.0000015531,0.0000015673,0.0000016029,0.0000016498, -0.0000016745,0.0000016748,0.0000016637,0.0000016529,0.0000016480, -0.0000016457,0.0000016465,0.0000016474,0.0000016485,0.0000016564, -0.0000016668,0.0000016669,0.0000016525,0.0000016354,0.0000016242, -0.0000016165,0.0000016090,0.0000016036,0.0000015999,0.0000015921, -0.0000015806,0.0000015754,0.0000015763,0.0000015758,0.0000015724, -0.0000015700,0.0000015704,0.0000015704,0.0000015705,0.0000015709, -0.0000015690,0.0000015620,0.0000015522,0.0000015433,0.0000015394, -0.0000015403,0.0000015417,0.0000015393,0.0000015342,0.0000015314, -0.0000015312,0.0000015276,0.0000015154,0.0000015043,0.0000015083, -0.0000015182,0.0000015161,0.0000015104,0.0000014962,0.0000014587, -0.0000014282,0.0000014272,0.0000014376,0.0000014418,0.0000014401, -0.0000014361,0.0000014382,0.0000014752,0.0000015333,0.0000015635, -0.0000015651,0.0000015573,0.0000015507,0.0000015539,0.0000015651, -0.0000015760,0.0000015825,0.0000015861,0.0000015883,0.0000015911, -0.0000015957,0.0000015912,0.0000015659,0.0000015355,0.0000015215, -0.0000015206,0.0000015181,0.0000015080,0.0000014961,0.0000014881, -0.0000014841,0.0000014808,0.0000014781,0.0000014776,0.0000014779, -0.0000014789,0.0000014806,0.0000014773,0.0000014633,0.0000014556, -0.0000014707,0.0000015036,0.0000015325,0.0000015642,0.0000016064, -0.0000016404,0.0000016550,0.0000016545,0.0000016400,0.0000016151, -0.0000015955,0.0000015889,0.0000015861,0.0000015776,0.0000015715, -0.0000015749,0.0000015718,0.0000015374,0.0000014978,0.0000014889, -0.0000014995,0.0000015504,0.0000016220,0.0000016395,0.0000016176, -0.0000016192,0.0000016043,0.0000015612,0.0000015514,0.0000015562, -0.0000015585,0.0000015696,0.0000015750,0.0000015687,0.0000015363, -0.0000014998,0.0000014971,0.0000015153,0.0000015156,0.0000014963, -0.0000014918,0.0000015107,0.0000015214,0.0000015121,0.0000014980, -0.0000014913,0.0000014873,0.0000014801,0.0000014693,0.0000014664, -0.0000014677,0.0000014772,0.0000015035,0.0000015115,0.0000014780, -0.0000014205,0.0000013451,0.0000012953,0.0000012840,0.0000012789, -0.0000012754,0.0000012754,0.0000012796,0.0000012959,0.0000013225, -0.0000013193,0.0000013215,0.0000014287,0.0000014311,0.0000014013, -0.0000014766,0.0000015284,0.0000015501,0.0000015584,0.0000015428, -0.0000015438,0.0000015517,0.0000015524,0.0000015825,0.0000016509, -0.0000016947,0.0000017028,0.0000017034,0.0000017077,0.0000017094, -0.0000016982,0.0000016589,0.0000016106,0.0000015694,0.0000015384, -0.0000015330,0.0000015451,0.0000015587,0.0000015649,0.0000015768, -0.0000015998,0.0000016225,0.0000016395,0.0000016616,0.0000016943, -0.0000017175,0.0000017233,0.0000017223,0.0000017152,0.0000017111, -0.0000016745,0.0000015990,0.0000015546,0.0000015504,0.0000015596, -0.0000015765,0.0000015934,0.0000016090,0.0000016178,0.0000016153, -0.0000016105,0.0000016453,0.0000018252,0.0000017557,0.0000016346, -0.0000016507,0.0000017135,0.0000017368,0.0000016743,0.0000016384, -0.0000016802,0.0000017033,0.0000017404,0.0000017440,0.0000017564, -0.0000017769,0.0000017186,0.0000016670,0.0000016423,0.0000016111, -0.0000016012,0.0000015820,0.0000015622,0.0000015652,0.0000015978, -0.0000016078,0.0000015903,0.0000015865,0.0000015951,0.0000016113, -0.0000016157,0.0000016107,0.0000016016,0.0000016036,0.0000016244, -0.0000016644,0.0000016867,0.0000016437,0.0000015910,0.0000015884, -0.0000016086,0.0000016390,0.0000016531,0.0000016372,0.0000015921, -0.0000015600,0.0000015447,0.0000015208,0.0000015118,0.0000015186, -0.0000015181,0.0000015075,0.0000014990,0.0000014982,0.0000014974, -0.0000014918,0.0000014841,0.0000014783,0.0000014744,0.0000014730, -0.0000014752,0.0000014859,0.0000014811,0.0000014810,0.0000014966, -0.0000014962,0.0000014970,0.0000014922,0.0000015042,0.0000015329, -0.0000015556,0.0000015693,0.0000015814,0.0000015876,0.0000015772, -0.0000015427,0.0000015099,0.0000015100,0.0000015404,0.0000015757, -0.0000015973,0.0000016045,0.0000016066,0.0000016079,0.0000016083, -0.0000016070,0.0000016050,0.0000016043,0.0000015936,0.0000015549, -0.0000015114,0.0000014828,0.0000014760,0.0000014917,0.0000015459, -0.0000016002,0.0000016053,0.0000015731,0.0000015516,0.0000015532, -0.0000015738,0.0000016112,0.0000016542,0.0000016753,0.0000016748, -0.0000016665,0.0000016570,0.0000016510,0.0000016502,0.0000016525, -0.0000016588,0.0000016686,0.0000016735,0.0000016681,0.0000016529, -0.0000016380,0.0000016284,0.0000016209,0.0000016122,0.0000016047, -0.0000015993,0.0000015910,0.0000015811,0.0000015766,0.0000015775, -0.0000015773,0.0000015725,0.0000015666,0.0000015628,0.0000015609, -0.0000015599,0.0000015596,0.0000015580,0.0000015527,0.0000015451, -0.0000015383,0.0000015344,0.0000015329,0.0000015313,0.0000015277, -0.0000015257,0.0000015266,0.0000015268,0.0000015203,0.0000015097, -0.0000015109,0.0000015208,0.0000015186,0.0000015094,0.0000014932, -0.0000014571,0.0000014282,0.0000014277,0.0000014369,0.0000014396, -0.0000014386,0.0000014376,0.0000014420,0.0000014820,0.0000015401, -0.0000015678,0.0000015694,0.0000015666,0.0000015668,0.0000015716, -0.0000015777,0.0000015817,0.0000015840,0.0000015854,0.0000015869, -0.0000015888,0.0000015939,0.0000015974,0.0000015853,0.0000015504, -0.0000015212,0.0000015143,0.0000015140,0.0000015099,0.0000015010, -0.0000014927,0.0000014879,0.0000014851,0.0000014828,0.0000014809, -0.0000014790,0.0000014786,0.0000014801,0.0000014766,0.0000014627, -0.0000014564,0.0000014756,0.0000015086,0.0000015390,0.0000015758, -0.0000016178,0.0000016459,0.0000016560,0.0000016529,0.0000016335, -0.0000016094,0.0000015947,0.0000015855,0.0000015701,0.0000015526, -0.0000015463,0.0000015507,0.0000015462,0.0000015188,0.0000014945, -0.0000014921,0.0000015122,0.0000015744,0.0000016362,0.0000016340, -0.0000016172,0.0000016193,0.0000015881,0.0000015535,0.0000015539, -0.0000015573,0.0000015631,0.0000015725,0.0000015736,0.0000015602, -0.0000015235,0.0000014949,0.0000015034,0.0000015200,0.0000015092, -0.0000014889,0.0000014962,0.0000015165,0.0000015163,0.0000015023, -0.0000014963,0.0000015024,0.0000015097,0.0000015028,0.0000014836, -0.0000014721,0.0000014731,0.0000014924,0.0000015108,0.0000014826, -0.0000014480,0.0000014208,0.0000013490,0.0000012947,0.0000012835, -0.0000012803,0.0000012776,0.0000012812,0.0000012992,0.0000013213, -0.0000013133,0.0000013201,0.0000014363,0.0000014228,0.0000014140, -0.0000014886,0.0000015349,0.0000015557,0.0000015566,0.0000015437, -0.0000015433,0.0000015480,0.0000015492,0.0000016036,0.0000016766, -0.0000017044,0.0000017052,0.0000017049,0.0000017109,0.0000017116, -0.0000016890,0.0000016453,0.0000016007,0.0000015714,0.0000015543, -0.0000015502,0.0000015530,0.0000015589,0.0000015712,0.0000016022, -0.0000016408,0.0000016687,0.0000016853,0.0000017007,0.0000017149, -0.0000017203,0.0000017218,0.0000017209,0.0000017126,0.0000017097, -0.0000016773,0.0000016022,0.0000015541,0.0000015478,0.0000015576, -0.0000015788,0.0000015964,0.0000016100,0.0000016146,0.0000016103, -0.0000016068,0.0000016662,0.0000018304,0.0000017188,0.0000016283, -0.0000016583,0.0000017235,0.0000017347,0.0000016546,0.0000016565, -0.0000016881,0.0000017209,0.0000017434,0.0000017462,0.0000017709, -0.0000017574,0.0000016833,0.0000016570,0.0000016229,0.0000016047, -0.0000015910,0.0000015689,0.0000015577,0.0000015757,0.0000016080, -0.0000016008,0.0000015874,0.0000015891,0.0000016023,0.0000016133, -0.0000016114,0.0000016022,0.0000016023,0.0000016194,0.0000016584, -0.0000016908,0.0000016602,0.0000015996,0.0000015847,0.0000016082, -0.0000016408,0.0000016549,0.0000016404,0.0000015961,0.0000015631, -0.0000015466,0.0000015212,0.0000015106,0.0000015186,0.0000015219, -0.0000015120,0.0000015007,0.0000014985,0.0000014983,0.0000014925, -0.0000014835,0.0000014777,0.0000014739,0.0000014714,0.0000014728, -0.0000014832,0.0000014828,0.0000014791,0.0000014940,0.0000014927, -0.0000014947,0.0000014915,0.0000014921,0.0000015115,0.0000015372, -0.0000015546,0.0000015665,0.0000015788,0.0000015824,0.0000015696, -0.0000015334,0.0000015093,0.0000015167,0.0000015465,0.0000015783, -0.0000015968,0.0000016046,0.0000016050,0.0000016049,0.0000016053, -0.0000016062,0.0000015977,0.0000015599,0.0000015183,0.0000014894, -0.0000014729,0.0000014755,0.0000015016,0.0000015591,0.0000016036, -0.0000016013,0.0000015639,0.0000015482,0.0000015544,0.0000015771, -0.0000016134,0.0000016514,0.0000016713,0.0000016739,0.0000016712, -0.0000016656,0.0000016640,0.0000016661,0.0000016711,0.0000016749, -0.0000016739,0.0000016658,0.0000016541,0.0000016440,0.0000016362, -0.0000016275,0.0000016163,0.0000016060,0.0000015974,0.0000015885, -0.0000015814,0.0000015796,0.0000015797,0.0000015784,0.0000015742, -0.0000015684,0.0000015614,0.0000015530,0.0000015462,0.0000015431, -0.0000015422,0.0000015405,0.0000015378,0.0000015353,0.0000015321, -0.0000015267,0.0000015204,0.0000015175,0.0000015194,0.0000015226, -0.0000015201,0.0000015107,0.0000015092,0.0000015208,0.0000015241, -0.0000015146,0.0000014952,0.0000014569,0.0000014257,0.0000014247, -0.0000014351,0.0000014385,0.0000014381,0.0000014378,0.0000014424, -0.0000014832,0.0000015423,0.0000015711,0.0000015737,0.0000015749, -0.0000015775,0.0000015805,0.0000015817,0.0000015824,0.0000015839, -0.0000015849,0.0000015854,0.0000015862,0.0000015895,0.0000015964, -0.0000015969,0.0000015676,0.0000015277,0.0000015100,0.0000015093, -0.0000015094,0.0000015038,0.0000014960,0.0000014902,0.0000014874, -0.0000014856,0.0000014831,0.0000014797,0.0000014786,0.0000014799, -0.0000014760,0.0000014618,0.0000014576,0.0000014802,0.0000015138, -0.0000015469,0.0000015877,0.0000016270,0.0000016498,0.0000016561, -0.0000016488,0.0000016271,0.0000016061,0.0000015894,0.0000015676, -0.0000015447,0.0000015326,0.0000015312,0.0000015329,0.0000015259, -0.0000015062,0.0000014940,0.0000014962,0.0000015287,0.0000015990, -0.0000016408,0.0000016289,0.0000016201,0.0000016150,0.0000015758, -0.0000015553,0.0000015564,0.0000015599,0.0000015675,0.0000015721, -0.0000015690,0.0000015494,0.0000015137,0.0000014982,0.0000015123, -0.0000015214,0.0000015023,0.0000014899,0.0000015051,0.0000015172, -0.0000015096,0.0000015015,0.0000015047,0.0000015152,0.0000015250, -0.0000015259,0.0000015112,0.0000014980,0.0000015011,0.0000015143, -0.0000014909,0.0000014189,0.0000014173,0.0000014202,0.0000013447, -0.0000012906,0.0000012876,0.0000012891,0.0000012953,0.0000013112, -0.0000013206,0.0000013018,0.0000013238,0.0000014421,0.0000014101, -0.0000014223,0.0000014983,0.0000015399,0.0000015621,0.0000015562, -0.0000015451,0.0000015393,0.0000015406,0.0000015481,0.0000016296, -0.0000016956,0.0000017085,0.0000017071,0.0000017060,0.0000017122, -0.0000017130,0.0000016794,0.0000016335,0.0000015937,0.0000015702, -0.0000015602,0.0000015553,0.0000015542,0.0000015655,0.0000015995, -0.0000016448,0.0000016798,0.0000016974,0.0000017062,0.0000017131, -0.0000017178,0.0000017181,0.0000017213,0.0000017192,0.0000017096, -0.0000017091,0.0000016769,0.0000015982,0.0000015506,0.0000015452, -0.0000015596,0.0000015834,0.0000016011,0.0000016132,0.0000016127, -0.0000016058,0.0000016041,0.0000016925,0.0000018261,0.0000016834, -0.0000016298,0.0000016682,0.0000017325,0.0000017236,0.0000016408, -0.0000016769,0.0000016983,0.0000017349,0.0000017435,0.0000017572, -0.0000017721,0.0000017170,0.0000016645,0.0000016423,0.0000016100, -0.0000016000,0.0000015781,0.0000015603,0.0000015618,0.0000015950, -0.0000016099,0.0000015913,0.0000015859,0.0000015932,0.0000016077, -0.0000016113,0.0000016039,0.0000016022,0.0000016166,0.0000016518, -0.0000016870,0.0000016708,0.0000016058,0.0000015812,0.0000016071, -0.0000016416,0.0000016565,0.0000016446,0.0000016012,0.0000015662, -0.0000015481,0.0000015221,0.0000015102,0.0000015171,0.0000015232, -0.0000015161,0.0000015034,0.0000014989,0.0000014986,0.0000014929, -0.0000014832,0.0000014771,0.0000014736,0.0000014702,0.0000014706, -0.0000014797,0.0000014846,0.0000014785,0.0000014907,0.0000014901, -0.0000014893,0.0000014927,0.0000014885,0.0000014929,0.0000015129, -0.0000015351,0.0000015507,0.0000015641,0.0000015776,0.0000015813, -0.0000015610,0.0000015245,0.0000015106,0.0000015206,0.0000015498, -0.0000015765,0.0000015933,0.0000016012,0.0000016043,0.0000016046, -0.0000015944,0.0000015592,0.0000015212,0.0000014972,0.0000014747, -0.0000014687,0.0000014796,0.0000015112,0.0000015690,0.0000016082, -0.0000015945,0.0000015579,0.0000015464,0.0000015543,0.0000015768, -0.0000016085,0.0000016411,0.0000016619,0.0000016705,0.0000016708, -0.0000016725,0.0000016735,0.0000016752,0.0000016754,0.0000016728, -0.0000016660,0.0000016578,0.0000016491,0.0000016381,0.0000016247, -0.0000016106,0.0000015999,0.0000015920,0.0000015865,0.0000015843, -0.0000015842,0.0000015833,0.0000015794,0.0000015733,0.0000015673, -0.0000015602,0.0000015498,0.0000015390,0.0000015320,0.0000015307, -0.0000015319,0.0000015332,0.0000015323,0.0000015277,0.0000015198, -0.0000015134,0.0000015136,0.0000015180,0.0000015183,0.0000015094, -0.0000015050,0.0000015147,0.0000015232,0.0000015178,0.0000015019, -0.0000014640,0.0000014260,0.0000014199,0.0000014306,0.0000014357, -0.0000014360,0.0000014360,0.0000014405,0.0000014802,0.0000015404, -0.0000015719,0.0000015773,0.0000015797,0.0000015830,0.0000015836, -0.0000015823,0.0000015826,0.0000015843,0.0000015845,0.0000015838, -0.0000015843,0.0000015858,0.0000015918,0.0000015971,0.0000015818, -0.0000015411,0.0000015115,0.0000015056,0.0000015057,0.0000015033, -0.0000014969,0.0000014907,0.0000014880,0.0000014870,0.0000014847, -0.0000014810,0.0000014796,0.0000014803,0.0000014752,0.0000014609, -0.0000014596,0.0000014847,0.0000015196,0.0000015563,0.0000015992, -0.0000016346,0.0000016529,0.0000016558,0.0000016428,0.0000016207, -0.0000015999,0.0000015728,0.0000015420,0.0000015261,0.0000015246, -0.0000015257,0.0000015225,0.0000015120,0.0000014992,0.0000014955, -0.0000015046,0.0000015512,0.0000016210,0.0000016418,0.0000016246, -0.0000016208,0.0000016056,0.0000015668,0.0000015544,0.0000015589, -0.0000015637,0.0000015692,0.0000015688,0.0000015606,0.0000015388, -0.0000015092,0.0000015036,0.0000015189,0.0000015171,0.0000014976, -0.0000014951,0.0000015114,0.0000015158,0.0000015081,0.0000015052, -0.0000014994,0.0000014907,0.0000014982,0.0000015167,0.0000015179, -0.0000015145,0.0000015131,0.0000014843,0.0000014038,0.0000013627, -0.0000014259,0.0000014231,0.0000013244,0.0000012896,0.0000012950, -0.0000013071,0.0000013172,0.0000013118,0.0000012929,0.0000013403, -0.0000014459,0.0000014004,0.0000014406,0.0000015069,0.0000015438, -0.0000015683,0.0000015530,0.0000015448,0.0000015347,0.0000015338, -0.0000015507,0.0000016539,0.0000017064,0.0000017103,0.0000017087, -0.0000017065,0.0000017117,0.0000017139,0.0000016752,0.0000016254, -0.0000015899,0.0000015686,0.0000015584,0.0000015547,0.0000015607, -0.0000015977,0.0000016465,0.0000016806,0.0000016954,0.0000017018, -0.0000017076,0.0000017128,0.0000017157,0.0000017161,0.0000017219, -0.0000017151,0.0000017068,0.0000017115,0.0000016697,0.0000015883, -0.0000015485,0.0000015469,0.0000015657,0.0000015889,0.0000016064, -0.0000016163,0.0000016090,0.0000016029,0.0000016045,0.0000017253, -0.0000018019,0.0000016548,0.0000016321,0.0000016837,0.0000017389, -0.0000016975,0.0000016475,0.0000016907,0.0000017134,0.0000017406, -0.0000017470,0.0000017704,0.0000017524,0.0000016809,0.0000016558, -0.0000016227,0.0000016056,0.0000015916,0.0000015657,0.0000015583, -0.0000015767,0.0000016092,0.0000016001,0.0000015845,0.0000015861, -0.0000015994,0.0000016097,0.0000016050,0.0000016023,0.0000016143, -0.0000016445,0.0000016844,0.0000016754,0.0000016120,0.0000015802, -0.0000016046,0.0000016415,0.0000016601,0.0000016500,0.0000016070, -0.0000015688,0.0000015492,0.0000015235,0.0000015087,0.0000015143, -0.0000015232,0.0000015197,0.0000015067,0.0000014994,0.0000014987, -0.0000014935,0.0000014832,0.0000014764,0.0000014737,0.0000014699, -0.0000014692,0.0000014758,0.0000014852,0.0000014796,0.0000014860, -0.0000014871,0.0000014824,0.0000014903,0.0000014902,0.0000014862, -0.0000014922,0.0000015099,0.0000015296,0.0000015478,0.0000015648, -0.0000015789,0.0000015764,0.0000015480,0.0000015162,0.0000015109, -0.0000015240,0.0000015450,0.0000015642,0.0000015778,0.0000015809, -0.0000015742,0.0000015501,0.0000015223,0.0000015023,0.0000014808, -0.0000014650,0.0000014702,0.0000014850,0.0000015199,0.0000015760, -0.0000016070,0.0000015883,0.0000015547,0.0000015446,0.0000015527, -0.0000015722,0.0000015974,0.0000016232,0.0000016429,0.0000016552, -0.0000016619,0.0000016652,0.0000016673,0.0000016676,0.0000016647, -0.0000016581,0.0000016479,0.0000016349,0.0000016202,0.0000016069, -0.0000015981,0.0000015936,0.0000015909,0.0000015893,0.0000015886, -0.0000015883,0.0000015857,0.0000015795,0.0000015709,0.0000015622, -0.0000015542,0.0000015455,0.0000015360,0.0000015296,0.0000015283, -0.0000015292,0.0000015300,0.0000015280,0.0000015219,0.0000015154, -0.0000015124,0.0000015143,0.0000015146,0.0000015076,0.0000015005, -0.0000015071,0.0000015176,0.0000015166,0.0000015063,0.0000014745, -0.0000014323,0.0000014188,0.0000014254,0.0000014318,0.0000014328, -0.0000014328,0.0000014356,0.0000014720,0.0000015344,0.0000015706, -0.0000015776,0.0000015807,0.0000015841,0.0000015843,0.0000015834, -0.0000015841,0.0000015853,0.0000015854,0.0000015829,0.0000015822, -0.0000015836,0.0000015877,0.0000015952,0.0000015909,0.0000015567, -0.0000015187,0.0000015035,0.0000015014,0.0000014989,0.0000014931, -0.0000014879,0.0000014871,0.0000014881,0.0000014871,0.0000014836, -0.0000014814,0.0000014811,0.0000014742,0.0000014600,0.0000014623, -0.0000014899,0.0000015265,0.0000015672,0.0000016102,0.0000016410, -0.0000016556,0.0000016538,0.0000016359,0.0000016131,0.0000015863, -0.0000015494,0.0000015211,0.0000015167,0.0000015223,0.0000015227, -0.0000015148,0.0000015035,0.0000014977,0.0000014980,0.0000015165, -0.0000015773,0.0000016394,0.0000016397,0.0000016234,0.0000016222, -0.0000015936,0.0000015585,0.0000015558,0.0000015622,0.0000015672, -0.0000015680,0.0000015617,0.0000015513,0.0000015308,0.0000015090, -0.0000015118,0.0000015246,0.0000015131,0.0000014927,0.0000015008, -0.0000015183,0.0000015173,0.0000015099,0.0000014892,0.0000014407, -0.0000014061,0.0000014229,0.0000014610,0.0000014838,0.0000014798, -0.0000014463,0.0000013807,0.0000013362,0.0000013922,0.0000014611, -0.0000013949,0.0000012977,0.0000012901,0.0000013011,0.0000013059, -0.0000012916,0.0000012865,0.0000013692,0.0000014516,0.0000013934, -0.0000014615,0.0000015134,0.0000015472,0.0000015734,0.0000015495, -0.0000015424,0.0000015336,0.0000015325,0.0000015567,0.0000016717, -0.0000017103,0.0000017096,0.0000017077,0.0000017060,0.0000017087, -0.0000017159,0.0000016831,0.0000016244,0.0000015883,0.0000015678, -0.0000015571,0.0000015595,0.0000015982,0.0000016511,0.0000016828, -0.0000016916,0.0000016947,0.0000017003,0.0000017071,0.0000017122, -0.0000017139,0.0000017161,0.0000017223,0.0000017081,0.0000017067, -0.0000017125,0.0000016538,0.0000015762,0.0000015505,0.0000015530, -0.0000015728,0.0000015949,0.0000016113,0.0000016159,0.0000016029, -0.0000016016,0.0000016141,0.0000017575,0.0000017704,0.0000016361, -0.0000016359,0.0000017032,0.0000017338,0.0000016684,0.0000016644, -0.0000016997,0.0000017276,0.0000017413,0.0000017608,0.0000017693, -0.0000017117,0.0000016633,0.0000016407,0.0000016100,0.0000016047, -0.0000015784,0.0000015594,0.0000015656,0.0000016000,0.0000016087, -0.0000015862,0.0000015816,0.0000015912,0.0000016071,0.0000016058, -0.0000016025,0.0000016115,0.0000016372,0.0000016805,0.0000016871, -0.0000016267,0.0000015837,0.0000016000,0.0000016403,0.0000016642, -0.0000016555,0.0000016129,0.0000015712,0.0000015501,0.0000015256, -0.0000015074,0.0000015111,0.0000015223,0.0000015221,0.0000015096, -0.0000015002,0.0000014991,0.0000014945,0.0000014836,0.0000014760, -0.0000014743,0.0000014709,0.0000014688,0.0000014726,0.0000014834, -0.0000014821,0.0000014814,0.0000014837,0.0000014766,0.0000014826, -0.0000014908,0.0000014869,0.0000014845,0.0000014895,0.0000015056, -0.0000015273,0.0000015494,0.0000015676,0.0000015782,0.0000015686, -0.0000015370,0.0000015129,0.0000015105,0.0000015202,0.0000015314, -0.0000015396,0.0000015402,0.0000015334,0.0000015215,0.0000015064, -0.0000014855,0.0000014663,0.0000014626,0.0000014755,0.0000014890, -0.0000015251,0.0000015784,0.0000016028,0.0000015851,0.0000015542, -0.0000015445,0.0000015494,0.0000015635,0.0000015810,0.0000015991, -0.0000016145,0.0000016265,0.0000016348,0.0000016394,0.0000016402, -0.0000016378,0.0000016318,0.0000016232,0.0000016137,0.0000016051, -0.0000015991,0.0000015957,0.0000015937,0.0000015920,0.0000015900, -0.0000015879,0.0000015853,0.0000015811,0.0000015744,0.0000015657, -0.0000015559,0.0000015470,0.0000015398,0.0000015340,0.0000015299, -0.0000015281,0.0000015281,0.0000015280,0.0000015250,0.0000015196, -0.0000015151,0.0000015139,0.0000015129,0.0000015057,0.0000014974, -0.0000015016,0.0000015122,0.0000015128,0.0000015060,0.0000014818, -0.0000014390,0.0000014173,0.0000014232,0.0000014293,0.0000014292, -0.0000014291,0.0000014314,0.0000014621,0.0000015238,0.0000015662, -0.0000015760,0.0000015793,0.0000015831,0.0000015847,0.0000015852, -0.0000015847,0.0000015850,0.0000015857,0.0000015838,0.0000015808, -0.0000015817,0.0000015849,0.0000015917,0.0000015937,0.0000015715, -0.0000015315,0.0000015055,0.0000014959,0.0000014906,0.0000014852, -0.0000014822,0.0000014843,0.0000014882,0.0000014892,0.0000014865, -0.0000014836,0.0000014822,0.0000014728,0.0000014588,0.0000014651, -0.0000014959,0.0000015351,0.0000015788,0.0000016200,0.0000016466, -0.0000016562,0.0000016506,0.0000016290,0.0000016030,0.0000015676, -0.0000015295,0.0000015131,0.0000015155,0.0000015213,0.0000015195, -0.0000015095,0.0000015002,0.0000014985,0.0000015023,0.0000015321, -0.0000016033,0.0000016451,0.0000016352,0.0000016261,0.0000016186, -0.0000015800,0.0000015576,0.0000015593,0.0000015658,0.0000015691, -0.0000015643,0.0000015534,0.0000015434,0.0000015271,0.0000015139, -0.0000015201,0.0000015255,0.0000015081,0.0000014968,0.0000015105, -0.0000015220,0.0000015187,0.0000014946,0.0000014300,0.0000013575, -0.0000013384,0.0000013578,0.0000013874,0.0000013998,0.0000013854, -0.0000013496,0.0000013314,0.0000013805,0.0000014705,0.0000014596, -0.0000013406,0.0000012874,0.0000012834,0.0000012800,0.0000012712, -0.0000012950,0.0000014033,0.0000014515,0.0000013899,0.0000014818, -0.0000015179,0.0000015505,0.0000015757,0.0000015465,0.0000015402, -0.0000015373,0.0000015360,0.0000015600,0.0000016812,0.0000017091, -0.0000017031,0.0000017005,0.0000016999,0.0000017017,0.0000017144, -0.0000017016,0.0000016447,0.0000015998,0.0000015775,0.0000015750, -0.0000016085,0.0000016596,0.0000016877,0.0000016905,0.0000016904, -0.0000016965,0.0000017044,0.0000017097,0.0000017123,0.0000017128, -0.0000017186,0.0000017197,0.0000016998,0.0000017128,0.0000017094, -0.0000016278,0.0000015656,0.0000015547,0.0000015602,0.0000015799, -0.0000016007,0.0000016150,0.0000016125,0.0000015961,0.0000016048, -0.0000016318,0.0000017796,0.0000017276,0.0000016261,0.0000016487, -0.0000017227,0.0000017213,0.0000016524,0.0000016852,0.0000017092, -0.0000017353,0.0000017496,0.0000017718,0.0000017445,0.0000016775, -0.0000016541,0.0000016195,0.0000016106,0.0000015995,0.0000015647, -0.0000015603,0.0000015850,0.0000016112,0.0000015930,0.0000015794, -0.0000015844,0.0000016011,0.0000016055,0.0000016029,0.0000016093, -0.0000016314,0.0000016727,0.0000016919,0.0000016490,0.0000015901, -0.0000015946,0.0000016374,0.0000016636,0.0000016599,0.0000016203, -0.0000015748,0.0000015513,0.0000015284,0.0000015082,0.0000015085, -0.0000015206,0.0000015239,0.0000015119,0.0000015008,0.0000014992, -0.0000014955,0.0000014845,0.0000014763,0.0000014747,0.0000014725, -0.0000014695,0.0000014707,0.0000014793,0.0000014838,0.0000014797, -0.0000014800,0.0000014730,0.0000014718,0.0000014845,0.0000014894, -0.0000014855,0.0000014844,0.0000014884,0.0000015045,0.0000015305, -0.0000015543,0.0000015725,0.0000015798,0.0000015584,0.0000015249, -0.0000015102,0.0000015106,0.0000015140,0.0000015158,0.0000015160, -0.0000015144,0.0000015056,0.0000014877,0.0000014693,0.0000014598, -0.0000014656,0.0000014808,0.0000014913,0.0000015272,0.0000015774, -0.0000015987,0.0000015869,0.0000015583,0.0000015440,0.0000015449, -0.0000015526,0.0000015625,0.0000015736,0.0000015846,0.0000015937, -0.0000015998,0.0000016031,0.0000016044,0.0000016032,0.0000016004, -0.0000015968,0.0000015928,0.0000015886,0.0000015843,0.0000015803, -0.0000015768,0.0000015740,0.0000015720,0.0000015702,0.0000015680, -0.0000015643,0.0000015586,0.0000015510,0.0000015428,0.0000015360, -0.0000015313,0.0000015280,0.0000015262,0.0000015257,0.0000015254, -0.0000015237,0.0000015209,0.0000015179,0.0000015139,0.0000015062, -0.0000014980,0.0000014993,0.0000015091,0.0000015103,0.0000015041, -0.0000014862,0.0000014459,0.0000014174,0.0000014204,0.0000014287, -0.0000014285,0.0000014269,0.0000014281,0.0000014531,0.0000015116, -0.0000015600,0.0000015736,0.0000015771,0.0000015822,0.0000015859, -0.0000015855,0.0000015794,0.0000015722,0.0000015768,0.0000015826, -0.0000015805,0.0000015806,0.0000015831,0.0000015885,0.0000015933, -0.0000015817,0.0000015471,0.0000015138,0.0000014941,0.0000014831, -0.0000014766,0.0000014754,0.0000014806,0.0000014880,0.0000014910, -0.0000014887,0.0000014850,0.0000014824,0.0000014712,0.0000014585, -0.0000014683,0.0000015027,0.0000015451,0.0000015906,0.0000016286, -0.0000016518,0.0000016583,0.0000016454,0.0000016201,0.0000015883, -0.0000015490,0.0000015200,0.0000015138,0.0000015182,0.0000015220, -0.0000015169,0.0000015054,0.0000014999,0.0000015013,0.0000015095, -0.0000015540,0.0000016256,0.0000016484,0.0000016323,0.0000016272, -0.0000016096,0.0000015713,0.0000015591,0.0000015628,0.0000015693, -0.0000015699,0.0000015591,0.0000015462,0.0000015381,0.0000015258, -0.0000015196,0.0000015263,0.0000015237,0.0000015023,0.0000014988, -0.0000015178,0.0000015249,0.0000015117,0.0000014484,0.0000013571, -0.0000013142,0.0000013161,0.0000013256,0.0000013331,0.0000013328, -0.0000013268,0.0000013377,0.0000013964,0.0000014814,0.0000014926, -0.0000013960,0.0000013046,0.0000012781,0.0000012653,0.0000012688, -0.0000013275,0.0000014326,0.0000014412,0.0000013942,0.0000014980, -0.0000015215,0.0000015546,0.0000015766,0.0000015443,0.0000015390, -0.0000015429,0.0000015411,0.0000015597,0.0000016819,0.0000017050, -0.0000016945,0.0000016908,0.0000016884,0.0000016894,0.0000017034, -0.0000017114,0.0000016824,0.0000016438,0.0000016270,0.0000016429, -0.0000016747,0.0000016917,0.0000016909,0.0000016885,0.0000016951, -0.0000017044,0.0000017093,0.0000017109,0.0000017111,0.0000017134, -0.0000017211,0.0000017089,0.0000016962,0.0000017211,0.0000016844, -0.0000015977,0.0000015596,0.0000015575,0.0000015667,0.0000015868, -0.0000016062,0.0000016135,0.0000016022,0.0000015927,0.0000016096, -0.0000016589,0.0000017828,0.0000016785,0.0000016238,0.0000016674, -0.0000017294,0.0000016958,0.0000016560,0.0000017003,0.0000017208, -0.0000017418,0.0000017657,0.0000017647,0.0000017034,0.0000016617, -0.0000016349,0.0000016120,0.0000016186,0.0000015854,0.0000015604, -0.0000015736,0.0000016077,0.0000016016,0.0000015790,0.0000015798, -0.0000015945,0.0000016035,0.0000016030,0.0000016078,0.0000016268, -0.0000016667,0.0000016944,0.0000016645,0.0000016002,0.0000015909, -0.0000016327,0.0000016619,0.0000016639,0.0000016307,0.0000015814, -0.0000015525,0.0000015312,0.0000015118,0.0000015080,0.0000015188, -0.0000015237,0.0000015133,0.0000015007,0.0000014985,0.0000014962, -0.0000014864,0.0000014770,0.0000014745,0.0000014737,0.0000014709, -0.0000014704,0.0000014745,0.0000014829,0.0000014809,0.0000014777, -0.0000014709,0.0000014631,0.0000014728,0.0000014883,0.0000014901, -0.0000014855,0.0000014831,0.0000014875,0.0000015105,0.0000015396, -0.0000015627,0.0000015805,0.0000015739,0.0000015408,0.0000015131, -0.0000015092,0.0000015112,0.0000015103,0.0000015050,0.0000014962, -0.0000014832,0.0000014699,0.0000014603,0.0000014590,0.0000014722, -0.0000014844,0.0000014909,0.0000015258,0.0000015739,0.0000015991, -0.0000015932,0.0000015664,0.0000015471,0.0000015420,0.0000015422, -0.0000015463,0.0000015530,0.0000015597,0.0000015657,0.0000015708, -0.0000015741,0.0000015754,0.0000015748,0.0000015729,0.0000015699, -0.0000015665,0.0000015637,0.0000015617,0.0000015601,0.0000015589, -0.0000015584,0.0000015583,0.0000015585,0.0000015578,0.0000015549, -0.0000015493,0.0000015422,0.0000015353,0.0000015293,0.0000015250, -0.0000015227,0.0000015226,0.0000015235,0.0000015238,0.0000015221, -0.0000015171,0.0000015080,0.0000015001,0.0000015021,0.0000015107, -0.0000015093,0.0000015009,0.0000014896,0.0000014552,0.0000014186, -0.0000014155,0.0000014283,0.0000014301,0.0000014271,0.0000014268, -0.0000014441,0.0000014965,0.0000015517,0.0000015727,0.0000015766, -0.0000015831,0.0000015862,0.0000015802,0.0000015612,0.0000015429, -0.0000015529,0.0000015739,0.0000015786,0.0000015788,0.0000015815, -0.0000015862,0.0000015925,0.0000015877,0.0000015609,0.0000015258, -0.0000014986,0.0000014809,0.0000014711,0.0000014698,0.0000014774, -0.0000014881,0.0000014929,0.0000014901,0.0000014856,0.0000014819, -0.0000014691,0.0000014594,0.0000014731,0.0000015108,0.0000015564, -0.0000016020,0.0000016363,0.0000016555,0.0000016566,0.0000016383, -0.0000016088,0.0000015717,0.0000015371,0.0000015219,0.0000015220, -0.0000015252,0.0000015242,0.0000015139,0.0000015027,0.0000015020, -0.0000015057,0.0000015218,0.0000015807,0.0000016420,0.0000016453, -0.0000016300,0.0000016264,0.0000015985,0.0000015642,0.0000015586, -0.0000015665,0.0000015721,0.0000015685,0.0000015538,0.0000015411, -0.0000015348,0.0000015266,0.0000015240,0.0000015295,0.0000015180, -0.0000014960,0.0000015030,0.0000015238,0.0000015271,0.0000014858, -0.0000013860,0.0000013105,0.0000013040,0.0000013131,0.0000013161, -0.0000013162,0.0000013167,0.0000013379,0.0000014066,0.0000014906, -0.0000015091,0.0000014390,0.0000013450,0.0000012966,0.0000012816, -0.0000012995,0.0000013770,0.0000014470,0.0000014273,0.0000014047, -0.0000015088,0.0000015255,0.0000015584,0.0000015760,0.0000015431, -0.0000015385,0.0000015462,0.0000015449,0.0000015601,0.0000016717, -0.0000017026,0.0000016906,0.0000016876,0.0000016804,0.0000016765, -0.0000016849,0.0000017023,0.0000017024,0.0000016926,0.0000016877, -0.0000016913,0.0000016925,0.0000016878,0.0000016859,0.0000016937, -0.0000017032,0.0000017073,0.0000017087,0.0000017089,0.0000017101, -0.0000017169,0.0000017181,0.0000016937,0.0000017015,0.0000017189, -0.0000016454,0.0000015763,0.0000015592,0.0000015598,0.0000015736, -0.0000015931,0.0000016078,0.0000016064,0.0000015924,0.0000015928, -0.0000016162,0.0000016962,0.0000017698,0.0000016401,0.0000016310, -0.0000016895,0.0000017245,0.0000016697,0.0000016736,0.0000017084, -0.0000017320,0.0000017546,0.0000017718,0.0000017340,0.0000016726, -0.0000016484,0.0000016176,0.0000016255,0.0000016158,0.0000015703, -0.0000015671,0.0000015982,0.0000016081,0.0000015839,0.0000015778, -0.0000015888,0.0000016009,0.0000016028,0.0000016070,0.0000016238, -0.0000016583,0.0000016870,0.0000016724,0.0000016121,0.0000015902, -0.0000016261,0.0000016601,0.0000016680,0.0000016424,0.0000015902, -0.0000015535,0.0000015339,0.0000015174,0.0000015103,0.0000015170, -0.0000015214,0.0000015135,0.0000015000,0.0000014970,0.0000014973, -0.0000014885,0.0000014778,0.0000014737,0.0000014738,0.0000014725, -0.0000014709,0.0000014714,0.0000014786,0.0000014831,0.0000014791, -0.0000014705,0.0000014602,0.0000014612,0.0000014782,0.0000014900, -0.0000014911,0.0000014837,0.0000014806,0.0000014938,0.0000015239, -0.0000015533,0.0000015758,0.0000015833,0.0000015546,0.0000015179, -0.0000015094,0.0000015115,0.0000015085,0.0000014963,0.0000014800, -0.0000014662,0.0000014598,0.0000014579,0.0000014628,0.0000014782, -0.0000014844,0.0000014886,0.0000015207,0.0000015675,0.0000015969, -0.0000015956,0.0000015770,0.0000015555,0.0000015417,0.0000015383, -0.0000015371,0.0000015396,0.0000015435,0.0000015477,0.0000015516, -0.0000015552,0.0000015581,0.0000015594,0.0000015586,0.0000015563, -0.0000015533,0.0000015515,0.0000015520,0.0000015546,0.0000015564, -0.0000015564,0.0000015560,0.0000015554,0.0000015536,0.0000015488, -0.0000015422,0.0000015364,0.0000015315,0.0000015274,0.0000015244, -0.0000015238,0.0000015242,0.0000015236,0.0000015188,0.0000015095, -0.0000015022,0.0000015052,0.0000015149,0.0000015134,0.0000015006, -0.0000014906,0.0000014656,0.0000014248,0.0000014129,0.0000014231, -0.0000014303,0.0000014288,0.0000014278,0.0000014369,0.0000014787, -0.0000015376,0.0000015712,0.0000015794,0.0000015851,0.0000015844, -0.0000015652,0.0000015355,0.0000015137,0.0000015266,0.0000015598, -0.0000015734,0.0000015757,0.0000015794,0.0000015839,0.0000015903, -0.0000015897,0.0000015697,0.0000015375,0.0000015076,0.0000014852, -0.0000014708,0.0000014682,0.0000014752,0.0000014885,0.0000014941, -0.0000014905,0.0000014854,0.0000014805,0.0000014664,0.0000014598, -0.0000014791,0.0000015198,0.0000015682,0.0000016125,0.0000016426, -0.0000016568,0.0000016524,0.0000016298,0.0000015949,0.0000015564, -0.0000015342,0.0000015305,0.0000015316,0.0000015318,0.0000015255, -0.0000015120,0.0000015045,0.0000015074,0.0000015117,0.0000015388, -0.0000016091,0.0000016498,0.0000016410,0.0000016306,0.0000016218, -0.0000015846,0.0000015576,0.0000015603,0.0000015702,0.0000015731, -0.0000015666,0.0000015504,0.0000015382,0.0000015332,0.0000015291, -0.0000015291,0.0000015289,0.0000015108,0.0000014987,0.0000015116, -0.0000015302,0.0000015189,0.0000014403,0.0000013316,0.0000012914, -0.0000012994,0.0000013121,0.0000013162,0.0000013167,0.0000013259, -0.0000013846,0.0000014729,0.0000015064,0.0000014668,0.0000013888, -0.0000013410,0.0000013308,0.0000013586,0.0000014245,0.0000014510, -0.0000014140,0.0000014208,0.0000015150,0.0000015297,0.0000015611, -0.0000015742,0.0000015429,0.0000015383,0.0000015472,0.0000015457, -0.0000015578,0.0000016505,0.0000017033,0.0000016909,0.0000016912, -0.0000016824,0.0000016730,0.0000016712,0.0000016804,0.0000016909, -0.0000016938,0.0000016915,0.0000016870,0.0000016817,0.0000016830, -0.0000016922,0.0000017008,0.0000017038,0.0000017047,0.0000017059, -0.0000017077,0.0000017127,0.0000017193,0.0000017020,0.0000016885, -0.0000017180,0.0000016952,0.0000016049,0.0000015654,0.0000015588, -0.0000015651,0.0000015795,0.0000015973,0.0000016032,0.0000015961, -0.0000015878,0.0000015984,0.0000016258,0.0000017344,0.0000017356, -0.0000016259,0.0000016468,0.0000017101,0.0000017069,0.0000016551, -0.0000016940,0.0000017164,0.0000017444,0.0000017677,0.0000017573, -0.0000016937,0.0000016569,0.0000016275,0.0000016231,0.0000016393, -0.0000015985,0.0000015710,0.0000015883,0.0000016104,0.0000015924, -0.0000015782,0.0000015847,0.0000015970,0.0000016022,0.0000016066, -0.0000016212,0.0000016508,0.0000016879,0.0000016877,0.0000016323, -0.0000015947,0.0000016184,0.0000016573,0.0000016687,0.0000016522, -0.0000015995,0.0000015555,0.0000015363,0.0000015248,0.0000015156, -0.0000015163,0.0000015188,0.0000015129,0.0000014989,0.0000014954, -0.0000014975,0.0000014906,0.0000014790,0.0000014732,0.0000014729, -0.0000014733,0.0000014718,0.0000014708,0.0000014739,0.0000014835, -0.0000014831,0.0000014730,0.0000014592,0.0000014533,0.0000014656, -0.0000014848,0.0000014936,0.0000014888,0.0000014806,0.0000014835, -0.0000015107,0.0000015448,0.0000015695,0.0000015819,0.0000015677, -0.0000015266,0.0000015091,0.0000015114,0.0000015102,0.0000014964, -0.0000014733,0.0000014596,0.0000014568,0.0000014585,0.0000014690, -0.0000014816,0.0000014822,0.0000014844,0.0000015114,0.0000015559, -0.0000015883,0.0000015939,0.0000015867,0.0000015689,0.0000015521, -0.0000015421,0.0000015377,0.0000015392,0.0000015406,0.0000015418, -0.0000015428,0.0000015440,0.0000015464,0.0000015498,0.0000015532, -0.0000015545,0.0000015527,0.0000015487,0.0000015471,0.0000015494, -0.0000015543,0.0000015571,0.0000015566,0.0000015540,0.0000015492, -0.0000015437,0.0000015398,0.0000015378,0.0000015359,0.0000015328, -0.0000015288,0.0000015243,0.0000015177,0.0000015091,0.0000015038, -0.0000015081,0.0000015184,0.0000015177,0.0000015027,0.0000014916, -0.0000014753,0.0000014358,0.0000014091,0.0000014156,0.0000014271, -0.0000014289,0.0000014286,0.0000014332,0.0000014616,0.0000015166, -0.0000015635,0.0000015817,0.0000015851,0.0000015748,0.0000015446, -0.0000015145,0.0000014959,0.0000015113,0.0000015478,0.0000015667, -0.0000015715,0.0000015759,0.0000015804,0.0000015861,0.0000015869, -0.0000015736,0.0000015476,0.0000015204,0.0000014956,0.0000014752, -0.0000014669,0.0000014743,0.0000014892,0.0000014941,0.0000014897, -0.0000014848,0.0000014788,0.0000014634,0.0000014595,0.0000014853, -0.0000015297,0.0000015799,0.0000016216,0.0000016474,0.0000016559, -0.0000016474,0.0000016189,0.0000015784,0.0000015457,0.0000015373, -0.0000015388,0.0000015389,0.0000015356,0.0000015251,0.0000015119, -0.0000015094,0.0000015134,0.0000015187,0.0000015594,0.0000016319, -0.0000016544,0.0000016367,0.0000016311,0.0000016133,0.0000015712, -0.0000015557,0.0000015635,0.0000015727,0.0000015741,0.0000015656, -0.0000015493,0.0000015369,0.0000015328,0.0000015316,0.0000015319, -0.0000015267,0.0000015053,0.0000014981,0.0000015196,0.0000015304, -0.0000014971,0.0000013897,0.0000012996,0.0000012857,0.0000013016, -0.0000013145,0.0000013192,0.0000013199,0.0000013447,0.0000014191, -0.0000014814,0.0000014784,0.0000014261,0.0000013876,0.0000013866, -0.0000014172,0.0000014546,0.0000014438,0.0000014073,0.0000014400, -0.0000015181,0.0000015339,0.0000015628,0.0000015718,0.0000015433, -0.0000015375,0.0000015477,0.0000015474,0.0000015546,0.0000016262, -0.0000017012,0.0000016931,0.0000016989,0.0000016922,0.0000016820, -0.0000016727,0.0000016704,0.0000016714,0.0000016741,0.0000016749, -0.0000016752,0.0000016811,0.0000016920,0.0000016986,0.0000017002, -0.0000017009,0.0000017032,0.0000017059,0.0000017102,0.0000017177, -0.0000017092,0.0000016842,0.0000016996,0.0000017196,0.0000016422, -0.0000015770,0.0000015601,0.0000015589,0.0000015696,0.0000015835, -0.0000015967,0.0000015973,0.0000015916,0.0000015883,0.0000016062, -0.0000016462,0.0000017539,0.0000016854,0.0000016194,0.0000016681, -0.0000017178,0.0000016811,0.0000016638,0.0000017063,0.0000017292, -0.0000017598,0.0000017684,0.0000017213,0.0000016664,0.0000016402, -0.0000016199,0.0000016450,0.0000016322,0.0000015866,0.0000015838, -0.0000016073,0.0000016008,0.0000015802,0.0000015826,0.0000015934, -0.0000016007,0.0000016063,0.0000016189,0.0000016437,0.0000016786, -0.0000016927,0.0000016563,0.0000016037,0.0000016123,0.0000016513, -0.0000016674,0.0000016585,0.0000016082,0.0000015600,0.0000015388, -0.0000015330,0.0000015217,0.0000015163,0.0000015165,0.0000015118, -0.0000014985,0.0000014936,0.0000014966,0.0000014927,0.0000014811, -0.0000014730,0.0000014713,0.0000014729,0.0000014726,0.0000014709, -0.0000014710,0.0000014796,0.0000014860,0.0000014788,0.0000014621, -0.0000014516,0.0000014555,0.0000014748,0.0000014926,0.0000014926, -0.0000014834,0.0000014794,0.0000015002,0.0000015367,0.0000015640, -0.0000015832,0.0000015770,0.0000015333,0.0000015085,0.0000015112, -0.0000015161,0.0000015041,0.0000014752,0.0000014568,0.0000014561, -0.0000014625,0.0000014757,0.0000014822,0.0000014785,0.0000014787, -0.0000015007,0.0000015416,0.0000015758,0.0000015920,0.0000015893, -0.0000015793,0.0000015672,0.0000015571,0.0000015511,0.0000015482, -0.0000015472,0.0000015472,0.0000015469,0.0000015452,0.0000015427, -0.0000015424,0.0000015445,0.0000015491,0.0000015525,0.0000015512, -0.0000015463,0.0000015450,0.0000015502,0.0000015558,0.0000015564, -0.0000015530,0.0000015492,0.0000015468,0.0000015460,0.0000015444, -0.0000015389,0.0000015301,0.0000015182,0.0000015071,0.0000015037, -0.0000015096,0.0000015208,0.0000015214,0.0000015057,0.0000014927, -0.0000014839,0.0000014530,0.0000014148,0.0000014076,0.0000014197, -0.0000014266,0.0000014280,0.0000014310,0.0000014491,0.0000014938, -0.0000015472,0.0000015768,0.0000015799,0.0000015584,0.0000015240, -0.0000015007,0.0000014880,0.0000015035,0.0000015402,0.0000015601, -0.0000015669,0.0000015722,0.0000015759,0.0000015806,0.0000015823, -0.0000015743,0.0000015563,0.0000015359,0.0000015113,0.0000014836, -0.0000014695,0.0000014757,0.0000014900,0.0000014936,0.0000014880, -0.0000014843,0.0000014767,0.0000014604,0.0000014611,0.0000014924, -0.0000015410,0.0000015916,0.0000016297,0.0000016518,0.0000016567, -0.0000016411,0.0000016046,0.0000015628,0.0000015426,0.0000015436, -0.0000015460,0.0000015430,0.0000015358,0.0000015231,0.0000015142, -0.0000015156,0.0000015183,0.0000015277,0.0000015849,0.0000016502, -0.0000016518,0.0000016333,0.0000016302,0.0000016007,0.0000015618, -0.0000015555,0.0000015665,0.0000015740,0.0000015740,0.0000015661, -0.0000015501,0.0000015367,0.0000015335,0.0000015336,0.0000015333, -0.0000015245,0.0000015002,0.0000015000,0.0000015261,0.0000015290, -0.0000014644,0.0000013558,0.0000012930,0.0000012906,0.0000013076, -0.0000013220,0.0000013263,0.0000013316,0.0000013739,0.0000014389, -0.0000014740,0.0000014564,0.0000014299,0.0000014316,0.0000014565, -0.0000014659,0.0000014303,0.0000014039,0.0000014596,0.0000015197, -0.0000015377,0.0000015633,0.0000015693,0.0000015443,0.0000015360, -0.0000015473,0.0000015478,0.0000015523,0.0000016066,0.0000016967, -0.0000016977,0.0000017040,0.0000017016,0.0000016954,0.0000016864, -0.0000016784,0.0000016743,0.0000016744,0.0000016781,0.0000016857, -0.0000016943,0.0000016975,0.0000016977,0.0000016986,0.0000017020, -0.0000017056,0.0000017097,0.0000017161,0.0000017121,0.0000016842, -0.0000016847,0.0000017174,0.0000016830,0.0000015941,0.0000015644, -0.0000015555,0.0000015613,0.0000015722,0.0000015859,0.0000015959, -0.0000015957,0.0000015936,0.0000015917,0.0000016159,0.0000016782, -0.0000017438,0.0000016397,0.0000016312,0.0000016894,0.0000017089, -0.0000016622,0.0000016852,0.0000017150,0.0000017459,0.0000017676, -0.0000017461,0.0000016833,0.0000016502,0.0000016247,0.0000016379, -0.0000016555,0.0000016148,0.0000015898,0.0000016019,0.0000016066, -0.0000015871,0.0000015829,0.0000015908,0.0000015986,0.0000016057, -0.0000016168,0.0000016377,0.0000016726,0.0000016954,0.0000016729, -0.0000016161,0.0000016098,0.0000016438,0.0000016631,0.0000016610, -0.0000016176,0.0000015674,0.0000015423,0.0000015405,0.0000015289, -0.0000015171,0.0000015145,0.0000015108,0.0000014990,0.0000014932, -0.0000014963,0.0000014949,0.0000014843,0.0000014738,0.0000014697, -0.0000014709,0.0000014725,0.0000014711,0.0000014700,0.0000014754, -0.0000014867,0.0000014858,0.0000014699,0.0000014539,0.0000014509, -0.0000014647,0.0000014879,0.0000014956,0.0000014879,0.0000014798, -0.0000014926,0.0000015303,0.0000015603,0.0000015805,0.0000015776, -0.0000015370,0.0000015070,0.0000015081,0.0000015182,0.0000015131, -0.0000014812,0.0000014585,0.0000014582,0.0000014691,0.0000014812, -0.0000014814,0.0000014758,0.0000014745,0.0000014916,0.0000015244, -0.0000015585,0.0000015794,0.0000015863,0.0000015842,0.0000015780, -0.0000015727,0.0000015675,0.0000015624,0.0000015590,0.0000015576, -0.0000015554,0.0000015490,0.0000015408,0.0000015367,0.0000015383, -0.0000015441,0.0000015516,0.0000015539,0.0000015491,0.0000015424, -0.0000015423,0.0000015479,0.0000015514,0.0000015510,0.0000015497, -0.0000015486,0.0000015454,0.0000015371,0.0000015236,0.0000015108, -0.0000015053,0.0000015117,0.0000015233,0.0000015240,0.0000015092, -0.0000014945,0.0000014899,0.0000014709,0.0000014307,0.0000014078, -0.0000014116,0.0000014216,0.0000014273,0.0000014303,0.0000014415, -0.0000014748,0.0000015244,0.0000015638,0.0000015667,0.0000015383, -0.0000015080,0.0000014922,0.0000014851,0.0000015015,0.0000015361, -0.0000015542,0.0000015622,0.0000015687,0.0000015726,0.0000015762, -0.0000015778,0.0000015735,0.0000015625,0.0000015485,0.0000015245, -0.0000014904,0.0000014715,0.0000014777,0.0000014907,0.0000014917, -0.0000014859,0.0000014839,0.0000014738,0.0000014578,0.0000014641, -0.0000015012,0.0000015538,0.0000016031,0.0000016373,0.0000016554, -0.0000016558,0.0000016330,0.0000015889,0.0000015516,0.0000015447, -0.0000015521,0.0000015523,0.0000015444,0.0000015325,0.0000015204, -0.0000015187,0.0000015225,0.0000015229,0.0000015433,0.0000016133, -0.0000016569,0.0000016445,0.0000016322,0.0000016267,0.0000015875, -0.0000015546,0.0000015563,0.0000015688,0.0000015743,0.0000015733, -0.0000015672,0.0000015519,0.0000015372,0.0000015339,0.0000015351, -0.0000015349,0.0000015211,0.0000014989,0.0000015076,0.0000015308, -0.0000015144,0.0000014355,0.0000013490,0.0000013051,0.0000013018, -0.0000013158,0.0000013305,0.0000013456,0.0000013756,0.0000014297, -0.0000014788,0.0000014869,0.0000014742,0.0000014721,0.0000014800, -0.0000014604,0.0000014137,0.0000014098,0.0000014783,0.0000015202, -0.0000015412,0.0000015618,0.0000015659,0.0000015449,0.0000015344, -0.0000015454,0.0000015469,0.0000015533,0.0000015850,0.0000016739, -0.0000017021,0.0000017039,0.0000017054,0.0000017033,0.0000016989, -0.0000016941,0.0000016912,0.0000016916,0.0000016953,0.0000016983, -0.0000016977,0.0000016956,0.0000016951,0.0000016991,0.0000017053, -0.0000017101,0.0000017148,0.0000017120,0.0000016846,0.0000016765, -0.0000017047,0.0000017091,0.0000016183,0.0000015700,0.0000015552, -0.0000015527,0.0000015647,0.0000015765,0.0000015910,0.0000015973, -0.0000015977,0.0000015982,0.0000015967,0.0000016310,0.0000017126, -0.0000017142,0.0000016248,0.0000016529,0.0000017007,0.0000016879, -0.0000016608,0.0000017038,0.0000017290,0.0000017619,0.0000017608, -0.0000017076,0.0000016594,0.0000016334,0.0000016287,0.0000016594, -0.0000016440,0.0000016046,0.0000015987,0.0000016079,0.0000015960, -0.0000015858,0.0000015896,0.0000015965,0.0000016046,0.0000016154, -0.0000016337,0.0000016646,0.0000016955,0.0000016840,0.0000016314, -0.0000016112,0.0000016351,0.0000016584,0.0000016634,0.0000016279, -0.0000015766,0.0000015466,0.0000015466,0.0000015361,0.0000015195, -0.0000015128,0.0000015092,0.0000015002,0.0000014942,0.0000014969, -0.0000014973,0.0000014872,0.0000014746,0.0000014676,0.0000014682, -0.0000014717,0.0000014711,0.0000014695,0.0000014724,0.0000014837, -0.0000014893,0.0000014800,0.0000014612,0.0000014511,0.0000014584, -0.0000014835,0.0000014968,0.0000014924,0.0000014805,0.0000014877, -0.0000015258,0.0000015585,0.0000015787,0.0000015786,0.0000015384, -0.0000015040,0.0000015047,0.0000015213,0.0000015195,0.0000014885, -0.0000014629,0.0000014636,0.0000014775,0.0000014864,0.0000014814, -0.0000014745,0.0000014758,0.0000014844,0.0000015057,0.0000015368, -0.0000015656,0.0000015808,0.0000015823,0.0000015825,0.0000015807, -0.0000015775,0.0000015724,0.0000015677,0.0000015641,0.0000015559, -0.0000015409,0.0000015296,0.0000015291,0.0000015354,0.0000015434, -0.0000015515,0.0000015570,0.0000015522,0.0000015399,0.0000015326, -0.0000015339,0.0000015383,0.0000015405,0.0000015401,0.0000015359, -0.0000015266,0.0000015163,0.0000015122,0.0000015177,0.0000015275, -0.0000015273,0.0000015130,0.0000014979,0.0000014943,0.0000014858, -0.0000014507,0.0000014156,0.0000014085,0.0000014161,0.0000014254, -0.0000014310,0.0000014395,0.0000014638,0.0000015034,0.0000015393, -0.0000015439,0.0000015206,0.0000014991,0.0000014878,0.0000014852, -0.0000015041,0.0000015356,0.0000015507,0.0000015582,0.0000015652, -0.0000015695,0.0000015730,0.0000015746,0.0000015718,0.0000015644, -0.0000015542,0.0000015305,0.0000014925,0.0000014742,0.0000014818, -0.0000014913,0.0000014885,0.0000014844,0.0000014836,0.0000014696, -0.0000014566,0.0000014692,0.0000015124,0.0000015676,0.0000016142, -0.0000016440,0.0000016576,0.0000016528,0.0000016221,0.0000015738, -0.0000015448,0.0000015498,0.0000015591,0.0000015559,0.0000015434, -0.0000015271,0.0000015196,0.0000015243,0.0000015277,0.0000015261, -0.0000015657,0.0000016408,0.0000016623,0.0000016374,0.0000016323, -0.0000016191,0.0000015742,0.0000015507,0.0000015576,0.0000015704, -0.0000015736,0.0000015725,0.0000015686,0.0000015539,0.0000015376, -0.0000015337,0.0000015355,0.0000015354,0.0000015170,0.0000014949, -0.0000015113,0.0000015315,0.0000014984,0.0000014202,0.0000013665, -0.0000013301,0.0000013096,0.0000013176,0.0000013429,0.0000013927, -0.0000014599,0.0000015138,0.0000015300,0.0000015233,0.0000015078, -0.0000014834,0.0000014374,0.0000014007,0.0000014272,0.0000014930, -0.0000015206,0.0000015441,0.0000015594,0.0000015610,0.0000015438, -0.0000015332,0.0000015432,0.0000015435,0.0000015518,0.0000015667, -0.0000016417,0.0000017023,0.0000017027,0.0000017063,0.0000017058, -0.0000017032,0.0000017006,0.0000016988,0.0000016986,0.0000016992, -0.0000016978,0.0000016928,0.0000016876,0.0000016886,0.0000016977, -0.0000017074,0.0000017123,0.0000017073,0.0000016822,0.0000016720, -0.0000016935,0.0000017124,0.0000016473,0.0000015755,0.0000015569, -0.0000015480,0.0000015563,0.0000015696,0.0000015849,0.0000015948, -0.0000015977,0.0000016027,0.0000016023,0.0000016032,0.0000016543, -0.0000017302,0.0000016682,0.0000016226,0.0000016776,0.0000017040, -0.0000016698,0.0000016791,0.0000017162,0.0000017474,0.0000017650, -0.0000017328,0.0000016737,0.0000016441,0.0000016259,0.0000016529, -0.0000016630,0.0000016269,0.0000016030,0.0000016055,0.0000016032, -0.0000015901,0.0000015897,0.0000015950,0.0000016033,0.0000016145, -0.0000016306,0.0000016568,0.0000016902,0.0000016963,0.0000016514, -0.0000016146,0.0000016263,0.0000016533,0.0000016619,0.0000016365, -0.0000015870,0.0000015509,0.0000015506,0.0000015417,0.0000015224, -0.0000015115,0.0000015076,0.0000015019,0.0000014961,0.0000014980, -0.0000014986,0.0000014888,0.0000014750,0.0000014658,0.0000014656, -0.0000014705,0.0000014709,0.0000014687,0.0000014711,0.0000014802, -0.0000014905,0.0000014888,0.0000014718,0.0000014557,0.0000014603, -0.0000014830,0.0000014989,0.0000014961,0.0000014810,0.0000014847, -0.0000015245,0.0000015603,0.0000015805,0.0000015801,0.0000015368, -0.0000015008,0.0000015026,0.0000015243,0.0000015268,0.0000014971, -0.0000014709,0.0000014719,0.0000014859,0.0000014913,0.0000014837, -0.0000014774,0.0000014776,0.0000014781,0.0000014899,0.0000015175, -0.0000015510,0.0000015746,0.0000015827,0.0000015826,0.0000015816, -0.0000015786,0.0000015739,0.0000015708,0.0000015647,0.0000015448, -0.0000015195,0.0000015122,0.0000015232,0.0000015373,0.0000015443, -0.0000015517,0.0000015582,0.0000015531,0.0000015367,0.0000015228, -0.0000015199,0.0000015228,0.0000015251,0.0000015244,0.0000015209, -0.0000015200,0.0000015257,0.0000015334,0.0000015320,0.0000015185, -0.0000015029,0.0000014986,0.0000014985,0.0000014729,0.0000014299, -0.0000014101,0.0000014131,0.0000014230,0.0000014322,0.0000014413, -0.0000014608,0.0000014911,0.0000015178,0.0000015212,0.0000015066, -0.0000014939,0.0000014837,0.0000014850,0.0000015094,0.0000015394, -0.0000015510,0.0000015569,0.0000015625,0.0000015665,0.0000015703, -0.0000015720,0.0000015686,0.0000015612,0.0000015540,0.0000015293, -0.0000014901,0.0000014756,0.0000014850,0.0000014916,0.0000014864, -0.0000014841,0.0000014827,0.0000014645,0.0000014561,0.0000014764, -0.0000015254,0.0000015819,0.0000016247,0.0000016501,0.0000016582, -0.0000016480,0.0000016082,0.0000015611,0.0000015458,0.0000015580, -0.0000015643,0.0000015561,0.0000015383,0.0000015209,0.0000015200, -0.0000015307,0.0000015301,0.0000015341,0.0000015917,0.0000016587, -0.0000016570,0.0000016322,0.0000016305,0.0000016078,0.0000015605, -0.0000015465,0.0000015587,0.0000015715,0.0000015727,0.0000015712, -0.0000015699,0.0000015560,0.0000015377,0.0000015332,0.0000015358, -0.0000015354,0.0000015132,0.0000014957,0.0000015162,0.0000015281, -0.0000014835,0.0000014223,0.0000013992,0.0000013560,0.0000013130, -0.0000013154,0.0000013588,0.0000014400,0.0000015195,0.0000015493, -0.0000015469,0.0000015133,0.0000014561,0.0000014055,0.0000013983, -0.0000014508,0.0000015017,0.0000015218,0.0000015459,0.0000015560, -0.0000015557,0.0000015414,0.0000015335,0.0000015436,0.0000015400, -0.0000015431,0.0000015571,0.0000016078,0.0000016891,0.0000017046, -0.0000017060,0.0000017062,0.0000017043,0.0000017023,0.0000016997, -0.0000016979,0.0000016956,0.0000016897,0.0000016790,0.0000016725, -0.0000016781,0.0000016930,0.0000017025,0.0000016964,0.0000016757, -0.0000016686,0.0000016874,0.0000017076,0.0000016710,0.0000015844, -0.0000015576,0.0000015463,0.0000015500,0.0000015669,0.0000015815, -0.0000015895,0.0000015943,0.0000016030,0.0000016094,0.0000016052, -0.0000016159,0.0000016830,0.0000017166,0.0000016345,0.0000016413, -0.0000016935,0.0000016876,0.0000016606,0.0000017017,0.0000017314, -0.0000017604,0.0000017511,0.0000016954,0.0000016538,0.0000016310, -0.0000016397,0.0000016666,0.0000016478,0.0000016151,0.0000016044, -0.0000016066,0.0000015972,0.0000015914,0.0000015944,0.0000016021, -0.0000016138,0.0000016279,0.0000016494,0.0000016850,0.0000017064, -0.0000016701,0.0000016170,0.0000016204,0.0000016473,0.0000016583, -0.0000016433,0.0000015970,0.0000015564,0.0000015528,0.0000015458, -0.0000015256,0.0000015110,0.0000015066,0.0000015034,0.0000014985, -0.0000014985,0.0000014985,0.0000014894,0.0000014749,0.0000014644, -0.0000014638,0.0000014693,0.0000014702,0.0000014675,0.0000014701, -0.0000014780,0.0000014886,0.0000014934,0.0000014821,0.0000014647, -0.0000014667,0.0000014872,0.0000015020,0.0000014985,0.0000014800, -0.0000014842,0.0000015277,0.0000015645,0.0000015823,0.0000015803, -0.0000015330,0.0000014978,0.0000015044,0.0000015300,0.0000015356, -0.0000015092,0.0000014832,0.0000014828,0.0000014930,0.0000014963, -0.0000014887,0.0000014811,0.0000014773,0.0000014767,0.0000014809, -0.0000015037,0.0000015397,0.0000015684,0.0000015802,0.0000015806, -0.0000015772,0.0000015723,0.0000015709,0.0000015702,0.0000015550, -0.0000015190,0.0000014945,0.0000015019,0.0000015265,0.0000015410, -0.0000015439,0.0000015514,0.0000015592,0.0000015541,0.0000015353, -0.0000015192,0.0000015161,0.0000015188,0.0000015234,0.0000015295, -0.0000015373,0.0000015411,0.0000015364,0.0000015229,0.0000015082, -0.0000015032,0.0000015050,0.0000014921,0.0000014503,0.0000014179, -0.0000014133,0.0000014230,0.0000014341,0.0000014449,0.0000014622, -0.0000014864,0.0000015049,0.0000015065,0.0000014981,0.0000014892, -0.0000014788,0.0000014836,0.0000015161,0.0000015444,0.0000015541, -0.0000015591,0.0000015627,0.0000015652,0.0000015684,0.0000015692, -0.0000015640,0.0000015566,0.0000015502,0.0000015228,0.0000014858, -0.0000014781,0.0000014888,0.0000014916,0.0000014850,0.0000014847, -0.0000014801,0.0000014601,0.0000014560,0.0000014865,0.0000015397, -0.0000015954,0.0000016337,0.0000016548,0.0000016599,0.0000016409, -0.0000015930,0.0000015527,0.0000015503,0.0000015638,0.0000015659, -0.0000015523,0.0000015304,0.0000015181,0.0000015262,0.0000015365, -0.0000015319,0.0000015482,0.0000016189,0.0000016682,0.0000016486, -0.0000016302,0.0000016296,0.0000015927,0.0000015484,0.0000015425, -0.0000015596,0.0000015724,0.0000015713,0.0000015683,0.0000015690, -0.0000015572,0.0000015382,0.0000015331,0.0000015358,0.0000015349, -0.0000015109,0.0000014981,0.0000015190,0.0000015277,0.0000014761, -0.0000014323,0.0000014322,0.0000013906,0.0000013222,0.0000013071, -0.0000013480,0.0000014210,0.0000014783,0.0000014864,0.0000014516, -0.0000014023,0.0000013891,0.0000014154,0.0000014727,0.0000015047, -0.0000015249,0.0000015469,0.0000015522,0.0000015499,0.0000015390, -0.0000015345,0.0000015459,0.0000015441,0.0000015357,0.0000015454, -0.0000015762,0.0000016550,0.0000017049,0.0000017038,0.0000017022, -0.0000017002,0.0000017026,0.0000017041,0.0000017015,0.0000016945, -0.0000016805,0.0000016644,0.0000016595,0.0000016666,0.0000016760, -0.0000016761,0.0000016661,0.0000016682,0.0000016853,0.0000017046, -0.0000016835,0.0000015972,0.0000015567,0.0000015466,0.0000015494, -0.0000015687,0.0000015831,0.0000015854,0.0000015908,0.0000016055, -0.0000016151,0.0000016141,0.0000016066,0.0000016375,0.0000017030, -0.0000016824,0.0000016232,0.0000016658,0.0000016949,0.0000016692, -0.0000016763,0.0000017189,0.0000017498,0.0000017601,0.0000017203, -0.0000016667,0.0000016402,0.0000016318,0.0000016606,0.0000016610, -0.0000016310,0.0000016074,0.0000016066,0.0000016044,0.0000015944, -0.0000015948,0.0000016013,0.0000016127,0.0000016259,0.0000016441, -0.0000016765,0.0000016996,0.0000016827,0.0000016317,0.0000016199, -0.0000016412,0.0000016591,0.0000016486,0.0000016070,0.0000015616, -0.0000015542,0.0000015487,0.0000015290,0.0000015118,0.0000015063, -0.0000015040,0.0000014998,0.0000014987,0.0000014984,0.0000014894, -0.0000014742,0.0000014628,0.0000014624,0.0000014683,0.0000014688, -0.0000014659,0.0000014692,0.0000014777,0.0000014865,0.0000014945, -0.0000014899,0.0000014758,0.0000014782,0.0000014942,0.0000015051, -0.0000014989,0.0000014778,0.0000014875,0.0000015346,0.0000015688, -0.0000015835,0.0000015795,0.0000015283,0.0000014969,0.0000015082, -0.0000015359,0.0000015457,0.0000015249,0.0000015006,0.0000014933, -0.0000014984,0.0000014993,0.0000014923,0.0000014832,0.0000014783, -0.0000014763,0.0000014799,0.0000014996,0.0000015319,0.0000015618, -0.0000015764,0.0000015766,0.0000015714,0.0000015695,0.0000015710, -0.0000015641,0.0000015255,0.0000014805,0.0000014729,0.0000015040, -0.0000015346,0.0000015406,0.0000015406,0.0000015499,0.0000015595, -0.0000015556,0.0000015408,0.0000015310,0.0000015317,0.0000015395, -0.0000015484,0.0000015497,0.0000015411,0.0000015255,0.0000015120, -0.0000015070,0.0000015114,0.0000015069,0.0000014706,0.0000014306, -0.0000014199,0.0000014264,0.0000014383,0.0000014495,0.0000014653, -0.0000014858,0.0000014988,0.0000014991,0.0000014933,0.0000014838, -0.0000014754,0.0000014882,0.0000015242,0.0000015490,0.0000015574, -0.0000015623,0.0000015648,0.0000015659,0.0000015670,0.0000015657, -0.0000015599,0.0000015550,0.0000015462,0.0000015135,0.0000014821, -0.0000014811,0.0000014915,0.0000014906,0.0000014847,0.0000014852, -0.0000014759,0.0000014566,0.0000014605,0.0000014981,0.0000015549, -0.0000016078,0.0000016411,0.0000016576,0.0000016584,0.0000016308, -0.0000015787,0.0000015475,0.0000015564,0.0000015706,0.0000015649, -0.0000015438,0.0000015223,0.0000015193,0.0000015345,0.0000015393, -0.0000015360,0.0000015687,0.0000016434,0.0000016700,0.0000016385, -0.0000016297,0.0000016243,0.0000015761,0.0000015403,0.0000015424, -0.0000015614,0.0000015738,0.0000015689,0.0000015612,0.0000015636, -0.0000015573,0.0000015390,0.0000015330,0.0000015355,0.0000015355, -0.0000015110,0.0000014977,0.0000015198,0.0000015262,0.0000014746, -0.0000014438,0.0000014629,0.0000014337,0.0000013510,0.0000013088, -0.0000013138,0.0000013433,0.0000013648,0.0000013629,0.0000013718, -0.0000013953,0.0000014475,0.0000014868,0.0000015059,0.0000015289, -0.0000015469,0.0000015500,0.0000015460,0.0000015377,0.0000015337, -0.0000015431,0.0000015545,0.0000015419,0.0000015374,0.0000015509, -0.0000016109,0.0000016878,0.0000017019,0.0000016914,0.0000016812, -0.0000016872,0.0000016998,0.0000017071,0.0000017044,0.0000016845, -0.0000016612,0.0000016524,0.0000016530,0.0000016563,0.0000016617, -0.0000016692,0.0000016869,0.0000017018,0.0000016890,0.0000016085, -0.0000015572,0.0000015506,0.0000015549,0.0000015762,0.0000015885, -0.0000015842,0.0000015865,0.0000016103,0.0000016255,0.0000016254, -0.0000016148,0.0000016107,0.0000016660,0.0000017085,0.0000016436, -0.0000016335,0.0000016847,0.0000016837,0.0000016631,0.0000017012, -0.0000017354,0.0000017592,0.0000017413,0.0000016859,0.0000016494, -0.0000016320,0.0000016469,0.0000016649,0.0000016458,0.0000016171, -0.0000016062,0.0000016089,0.0000016005,0.0000015966,0.0000016012, -0.0000016115,0.0000016245,0.0000016405,0.0000016681,0.0000017009, -0.0000016948,0.0000016445,0.0000016211,0.0000016357,0.0000016555, -0.0000016512,0.0000016176,0.0000015665,0.0000015542,0.0000015511, -0.0000015332,0.0000015139,0.0000015062,0.0000015032,0.0000014994, -0.0000014988,0.0000014989,0.0000014894,0.0000014729,0.0000014610, -0.0000014614,0.0000014671,0.0000014667,0.0000014644,0.0000014688, -0.0000014787,0.0000014860,0.0000014932,0.0000014927,0.0000014858, -0.0000014902,0.0000015005,0.0000015065,0.0000014967,0.0000014759, -0.0000014947,0.0000015430,0.0000015719,0.0000015842,0.0000015760, -0.0000015246,0.0000014980,0.0000015115,0.0000015410,0.0000015553, -0.0000015428,0.0000015205,0.0000015091,0.0000015086,0.0000015078, -0.0000014995,0.0000014881,0.0000014813,0.0000014810,0.0000014878, -0.0000015007,0.0000015276,0.0000015573,0.0000015737,0.0000015765, -0.0000015761,0.0000015775,0.0000015714,0.0000015319,0.0000014729, -0.0000014480,0.0000014737,0.0000015210,0.0000015393,0.0000015347, -0.0000015346,0.0000015470,0.0000015574,0.0000015579,0.0000015537, -0.0000015526,0.0000015544,0.0000015523,0.0000015417,0.0000015267, -0.0000015146,0.0000015096,0.0000015141,0.0000015155,0.0000014885, -0.0000014456,0.0000014277,0.0000014337,0.0000014453,0.0000014557, -0.0000014688,0.0000014861,0.0000014974,0.0000014973,0.0000014908, -0.0000014783,0.0000014749,0.0000014960,0.0000015331,0.0000015530, -0.0000015608,0.0000015656,0.0000015672,0.0000015667,0.0000015654, -0.0000015632,0.0000015594,0.0000015562,0.0000015402,0.0000015014, -0.0000014780,0.0000014829,0.0000014917,0.0000014884,0.0000014842, -0.0000014838,0.0000014694,0.0000014530,0.0000014658,0.0000015114, -0.0000015707,0.0000016185,0.0000016470,0.0000016593,0.0000016542, -0.0000016182,0.0000015660,0.0000015479,0.0000015597,0.0000015671, -0.0000015551,0.0000015313,0.0000015156,0.0000015247,0.0000015411, -0.0000015391,0.0000015405,0.0000015927,0.0000016619,0.0000016648, -0.0000016300,0.0000016300,0.0000016143,0.0000015603,0.0000015348, -0.0000015425,0.0000015640,0.0000015761,0.0000015658,0.0000015501, -0.0000015541,0.0000015551,0.0000015394,0.0000015325,0.0000015353, -0.0000015367,0.0000015131,0.0000014963,0.0000015176,0.0000015237, -0.0000014807,0.0000014540,0.0000014727,0.0000014692,0.0000014110, -0.0000013548,0.0000013309,0.0000013335,0.0000013568,0.0000013915, -0.0000014354,0.0000014727,0.0000014918,0.0000015099,0.0000015322, -0.0000015459,0.0000015495,0.0000015438,0.0000015372,0.0000015315, -0.0000015346,0.0000015556,0.0000015537,0.0000015394,0.0000015376, -0.0000015690,0.0000016477,0.0000016961,0.0000016860,0.0000016617, -0.0000016586,0.0000016732,0.0000016942,0.0000017088,0.0000017064, -0.0000016856,0.0000016672,0.0000016643,0.0000016708,0.0000016808, -0.0000016914,0.0000017001,0.0000016885,0.0000016153,0.0000015575, -0.0000015511,0.0000015638,0.0000015847,0.0000015929,0.0000015842, -0.0000015845,0.0000016125,0.0000016313,0.0000016349,0.0000016292, -0.0000016135,0.0000016270,0.0000016915,0.0000016851,0.0000016293, -0.0000016568,0.0000016886,0.0000016709,0.0000016782,0.0000017219, -0.0000017528,0.0000017553,0.0000017095,0.0000016611,0.0000016362, -0.0000016352,0.0000016605,0.0000016556,0.0000016300,0.0000016088, -0.0000016101,0.0000016072,0.0000015997,0.0000016021,0.0000016110, -0.0000016230,0.0000016373,0.0000016604,0.0000016937,0.0000017033, -0.0000016617,0.0000016215,0.0000016301,0.0000016551,0.0000016571, -0.0000016272,0.0000015719,0.0000015541,0.0000015535,0.0000015378, -0.0000015170,0.0000015062,0.0000015011,0.0000014979,0.0000014992, -0.0000014998,0.0000014891,0.0000014711,0.0000014591,0.0000014605, -0.0000014659,0.0000014647,0.0000014635,0.0000014693,0.0000014800, -0.0000014863,0.0000014901,0.0000014924,0.0000014930,0.0000014984, -0.0000015040,0.0000015062,0.0000014931,0.0000014769,0.0000015049, -0.0000015510,0.0000015743,0.0000015848,0.0000015728,0.0000015222, -0.0000014991,0.0000015142,0.0000015456,0.0000015605,0.0000015585, -0.0000015454,0.0000015365,0.0000015347,0.0000015312,0.0000015197, -0.0000015045,0.0000014946,0.0000014907,0.0000014934,0.0000015011, -0.0000015268,0.0000015575,0.0000015765,0.0000015851,0.0000015869, -0.0000015768,0.0000015353,0.0000014734,0.0000014369,0.0000014514, -0.0000014990,0.0000015323,0.0000015342,0.0000015281,0.0000015315, -0.0000015408,0.0000015467,0.0000015472,0.0000015456,0.0000015414, -0.0000015331,0.0000015234,0.0000015156,0.0000015122,0.0000015166, -0.0000015193,0.0000015008,0.0000014601,0.0000014383,0.0000014424, -0.0000014540,0.0000014632,0.0000014730,0.0000014864,0.0000014963, -0.0000014969,0.0000014896,0.0000014771,0.0000014786,0.0000015064, -0.0000015400,0.0000015569,0.0000015641,0.0000015687,0.0000015690, -0.0000015667,0.0000015642,0.0000015632,0.0000015618,0.0000015575, -0.0000015311,0.0000014880,0.0000014720,0.0000014823,0.0000014908, -0.0000014860,0.0000014835,0.0000014822,0.0000014614,0.0000014518, -0.0000014735,0.0000015268,0.0000015865,0.0000016274,0.0000016515, -0.0000016592,0.0000016469,0.0000016032,0.0000015543,0.0000015455, -0.0000015593,0.0000015591,0.0000015424,0.0000015205,0.0000015144, -0.0000015323,0.0000015424,0.0000015367,0.0000015500,0.0000016169, -0.0000016748,0.0000016551,0.0000016238,0.0000016314,0.0000016025, -0.0000015455,0.0000015305,0.0000015435,0.0000015667,0.0000015775, -0.0000015618,0.0000015365,0.0000015406,0.0000015504,0.0000015406, -0.0000015316,0.0000015344,0.0000015367,0.0000015172,0.0000014963, -0.0000015126,0.0000015234,0.0000014931,0.0000014624,0.0000014731, -0.0000014889,0.0000014729,0.0000014442,0.0000014280,0.0000014332, -0.0000014538,0.0000014702,0.0000014806,0.0000014948,0.0000015165, -0.0000015333,0.0000015440,0.0000015500,0.0000015451,0.0000015379, -0.0000015321,0.0000015284,0.0000015428,0.0000015528,0.0000015462, -0.0000015365,0.0000015424,0.0000015962,0.0000016728,0.0000016900, -0.0000016604,0.0000016477,0.0000016547,0.0000016645,0.0000016844, -0.0000017029,0.0000017072,0.0000017000,0.0000016932,0.0000016917, -0.0000016951,0.0000016978,0.0000016828,0.0000016161,0.0000015602, -0.0000015531,0.0000015700,0.0000015911,0.0000015933,0.0000015809, -0.0000015798,0.0000016103,0.0000016314,0.0000016349,0.0000016373, -0.0000016273,0.0000016132,0.0000016529,0.0000016969,0.0000016500, -0.0000016318,0.0000016783,0.0000016809,0.0000016673,0.0000017037, -0.0000017395,0.0000017574,0.0000017319,0.0000016784,0.0000016444, -0.0000016294,0.0000016480,0.0000016580,0.0000016424,0.0000016167, -0.0000016094,0.0000016124,0.0000016048,0.0000016044,0.0000016115, -0.0000016215,0.0000016339,0.0000016534,0.0000016893,0.0000017112, -0.0000016755,0.0000016242,0.0000016267,0.0000016546,0.0000016622, -0.0000016349,0.0000015794,0.0000015564,0.0000015561,0.0000015422, -0.0000015201,0.0000015066,0.0000014992,0.0000014967,0.0000014994, -0.0000015003,0.0000014885,0.0000014692,0.0000014574,0.0000014596, -0.0000014651,0.0000014637,0.0000014633,0.0000014698,0.0000014805, -0.0000014864,0.0000014867,0.0000014900,0.0000014968,0.0000015016, -0.0000015053,0.0000015055,0.0000014889,0.0000014816,0.0000015153, -0.0000015580,0.0000015762,0.0000015852,0.0000015707,0.0000015207, -0.0000015004,0.0000015170,0.0000015485,0.0000015663,0.0000015727, -0.0000015695,0.0000015666,0.0000015643,0.0000015582,0.0000015454, -0.0000015296,0.0000015145,0.0000015007,0.0000014941,0.0000015015, -0.0000015301,0.0000015618,0.0000015818,0.0000015865,0.0000015777, -0.0000015384,0.0000014768,0.0000014344,0.0000014352,0.0000014746, -0.0000015175,0.0000015333,0.0000015296,0.0000015273,0.0000015282, -0.0000015271,0.0000015229,0.0000015185,0.0000015155,0.0000015133, -0.0000015115,0.0000015122,0.0000015190,0.0000015234,0.0000015081, -0.0000014706,0.0000014479,0.0000014514,0.0000014625,0.0000014701, -0.0000014770,0.0000014868,0.0000014943,0.0000014946,0.0000014874, -0.0000014810,0.0000014909,0.0000015227,0.0000015470,0.0000015578, -0.0000015663,0.0000015698,0.0000015686,0.0000015651,0.0000015640, -0.0000015652,0.0000015657,0.0000015559,0.0000015177,0.0000014764, -0.0000014697,0.0000014831,0.0000014872,0.0000014826,0.0000014823, -0.0000014762,0.0000014523,0.0000014506,0.0000014860,0.0000015444, -0.0000016014,0.0000016347,0.0000016546,0.0000016582,0.0000016369, -0.0000015872,0.0000015462,0.0000015463,0.0000015578,0.0000015509, -0.0000015320,0.0000015157,0.0000015189,0.0000015383,0.0000015399, -0.0000015352,0.0000015646,0.0000016413,0.0000016733,0.0000016431, -0.0000016226,0.0000016287,0.0000015870,0.0000015367,0.0000015303, -0.0000015447,0.0000015692,0.0000015773,0.0000015570,0.0000015238, -0.0000015263,0.0000015467,0.0000015430,0.0000015325,0.0000015334, -0.0000015364,0.0000015239,0.0000014964,0.0000015013,0.0000015233, -0.0000015110,0.0000014758,0.0000014661,0.0000014804,0.0000014858, -0.0000014888,0.0000014835,0.0000014766,0.0000014778,0.0000014840, -0.0000015037,0.0000015228,0.0000015321,0.0000015426,0.0000015519, -0.0000015501,0.0000015437,0.0000015366,0.0000015269,0.0000015308, -0.0000015454,0.0000015481,0.0000015417,0.0000015365,0.0000015541, -0.0000016236,0.0000016840,0.0000016740,0.0000016551,0.0000016682, -0.0000016731,0.0000016697,0.0000016746,0.0000016832,0.0000016881, -0.0000016912,0.0000016961,0.0000016964,0.0000016722,0.0000016100, -0.0000015624,0.0000015579,0.0000015760,0.0000015944,0.0000015945, -0.0000015786,0.0000015725,0.0000016012,0.0000016297,0.0000016311, -0.0000016333,0.0000016374,0.0000016227,0.0000016242,0.0000016795, -0.0000016811,0.0000016330,0.0000016524,0.0000016843,0.0000016722, -0.0000016825,0.0000017271,0.0000017546,0.0000017481,0.0000017005, -0.0000016558,0.0000016318,0.0000016352,0.0000016542,0.0000016502, -0.0000016287,0.0000016117,0.0000016144,0.0000016115,0.0000016080, -0.0000016130,0.0000016204,0.0000016309,0.0000016483,0.0000016802, -0.0000017026,0.0000016854,0.0000016373,0.0000016269,0.0000016511, -0.0000016623,0.0000016415,0.0000015879,0.0000015588,0.0000015582, -0.0000015454,0.0000015229,0.0000015075,0.0000014982,0.0000014960, -0.0000014998,0.0000015007,0.0000014879,0.0000014678,0.0000014563, -0.0000014594,0.0000014648,0.0000014634,0.0000014636,0.0000014695, -0.0000014798,0.0000014858,0.0000014840,0.0000014881,0.0000014979, -0.0000015005,0.0000015046,0.0000015041,0.0000014850,0.0000014837, -0.0000015252,0.0000015639,0.0000015772,0.0000015850,0.0000015699, -0.0000015213,0.0000015020,0.0000015193,0.0000015507,0.0000015707, -0.0000015777,0.0000015813,0.0000015793,0.0000015731,0.0000015669, -0.0000015597,0.0000015500,0.0000015318,0.0000015065,0.0000014947, -0.0000015038,0.0000015360,0.0000015654,0.0000015743,0.0000015704, -0.0000015411,0.0000014852,0.0000014409,0.0000014341,0.0000014530, -0.0000014915,0.0000015225,0.0000015300,0.0000015285,0.0000015261, -0.0000015226,0.0000015170,0.0000015111,0.0000015071,0.0000015059, -0.0000015087,0.0000015184,0.0000015234,0.0000015087,0.0000014741, -0.0000014542,0.0000014575,0.0000014684,0.0000014748,0.0000014798, -0.0000014867,0.0000014922,0.0000014913,0.0000014859,0.0000014879, -0.0000015078,0.0000015365,0.0000015529,0.0000015601,0.0000015663, -0.0000015688,0.0000015661,0.0000015631,0.0000015639,0.0000015658, -0.0000015659,0.0000015485,0.0000015030,0.0000014702,0.0000014721, -0.0000014849,0.0000014851,0.0000014792,0.0000014793,0.0000014671, -0.0000014463,0.0000014573,0.0000015016,0.0000015630,0.0000016140, -0.0000016404,0.0000016565,0.0000016555,0.0000016259,0.0000015722, -0.0000015381,0.0000015460,0.0000015537,0.0000015447,0.0000015255, -0.0000015144,0.0000015247,0.0000015405,0.0000015340,0.0000015337, -0.0000015857,0.0000016613,0.0000016730,0.0000016319,0.0000016251, -0.0000016261,0.0000015711,0.0000015313,0.0000015296,0.0000015456, -0.0000015711,0.0000015775,0.0000015537,0.0000015141,0.0000015135, -0.0000015422,0.0000015460,0.0000015333,0.0000015312,0.0000015358, -0.0000015312,0.0000015057,0.0000014970,0.0000015141,0.0000015176, -0.0000014977,0.0000014763,0.0000014725,0.0000014745,0.0000014773, -0.0000014761,0.0000014801,0.0000014970,0.0000015161,0.0000015245, -0.0000015293,0.0000015420,0.0000015546,0.0000015565,0.0000015534, -0.0000015446,0.0000015294,0.0000015257,0.0000015371,0.0000015459, -0.0000015454,0.0000015387,0.0000015360,0.0000015701,0.0000016449, -0.0000016790,0.0000016684,0.0000016833,0.0000017095,0.0000017055, -0.0000016983,0.0000016951,0.0000016955,0.0000016971,0.0000016883, -0.0000016524,0.0000015977,0.0000015638,0.0000015626,0.0000015807, -0.0000015964,0.0000015961,0.0000015799,0.0000015660,0.0000015842, -0.0000016154,0.0000016262,0.0000016256,0.0000016316,0.0000016342, -0.0000016209,0.0000016470,0.0000016876,0.0000016509,0.0000016323, -0.0000016734,0.0000016771,0.0000016703,0.0000017093,0.0000017447, -0.0000017556,0.0000017224,0.0000016718,0.0000016398,0.0000016283, -0.0000016443,0.0000016517,0.0000016401,0.0000016172,0.0000016142, -0.0000016169,0.0000016129,0.0000016154,0.0000016201,0.0000016283, -0.0000016437,0.0000016713,0.0000017047,0.0000017014,0.0000016514, -0.0000016267,0.0000016477,0.0000016620,0.0000016478,0.0000015966, -0.0000015631,0.0000015597,0.0000015475,0.0000015254,0.0000015089, -0.0000014979,0.0000014952,0.0000015000,0.0000015009,0.0000014876, -0.0000014671,0.0000014561,0.0000014597,0.0000014647,0.0000014639, -0.0000014642,0.0000014685,0.0000014785,0.0000014854,0.0000014832, -0.0000014874,0.0000014957,0.0000014958,0.0000015031,0.0000015032, -0.0000014819,0.0000014875,0.0000015357,0.0000015674,0.0000015771, -0.0000015849,0.0000015708,0.0000015251,0.0000015040,0.0000015199, -0.0000015492,0.0000015696,0.0000015784,0.0000015786,0.0000015725, -0.0000015640,0.0000015608,0.0000015609,0.0000015591,0.0000015401, -0.0000015098,0.0000014968,0.0000015097,0.0000015409,0.0000015591, -0.0000015605,0.0000015452,0.0000014983,0.0000014525,0.0000014385, -0.0000014420,0.0000014615,0.0000014940,0.0000015214,0.0000015305, -0.0000015297,0.0000015248,0.0000015186,0.0000015133,0.0000015108, -0.0000015121,0.0000015175,0.0000015180,0.0000014988,0.0000014679, -0.0000014541,0.0000014590,0.0000014696,0.0000014763,0.0000014807, -0.0000014855,0.0000014889,0.0000014884,0.0000014884,0.0000015011, -0.0000015266,0.0000015466,0.0000015552,0.0000015611,0.0000015668, -0.0000015659,0.0000015620,0.0000015608,0.0000015633,0.0000015652, -0.0000015625,0.0000015341,0.0000014876,0.0000014677,0.0000014776, -0.0000014872,0.0000014829,0.0000014775,0.0000014761,0.0000014568, -0.0000014440,0.0000014670,0.0000015195,0.0000015816,0.0000016236, -0.0000016447,0.0000016576,0.0000016510,0.0000016150,0.0000015593, -0.0000015340,0.0000015445,0.0000015512,0.0000015402,0.0000015221, -0.0000015168,0.0000015287,0.0000015365,0.0000015263,0.0000015402, -0.0000016085,0.0000016748,0.0000016662,0.0000016260,0.0000016312, -0.0000016190,0.0000015568,0.0000015281,0.0000015295,0.0000015455, -0.0000015732,0.0000015796,0.0000015522,0.0000015101,0.0000015048, -0.0000015352,0.0000015462,0.0000015349,0.0000015292,0.0000015332, -0.0000015348,0.0000015188,0.0000014958,0.0000014970,0.0000015136, -0.0000015129,0.0000015008,0.0000014899,0.0000014869,0.0000014912, -0.0000015009,0.0000015141,0.0000015203,0.0000015217,0.0000015264, -0.0000015429,0.0000015554,0.0000015603,0.0000015637,0.0000015570, -0.0000015380,0.0000015246,0.0000015279,0.0000015398,0.0000015439, -0.0000015414,0.0000015346,0.0000015385,0.0000015861,0.0000016542, -0.0000016736,0.0000016824,0.0000017129,0.0000017190,0.0000017075, -0.0000016980,0.0000016844,0.0000016574,0.0000016167,0.0000015792, -0.0000015627,0.0000015672,0.0000015844,0.0000015983,0.0000015982, -0.0000015853,0.0000015669,0.0000015687,0.0000015891,0.0000016064, -0.0000016135,0.0000016197,0.0000016298,0.0000016284,0.0000016274, -0.0000016730,0.0000016750,0.0000016323,0.0000016504,0.0000016791, -0.0000016694,0.0000016886,0.0000017338,0.0000017529,0.0000017405, -0.0000016920,0.0000016502,0.0000016267,0.0000016323,0.0000016489, -0.0000016471,0.0000016278,0.0000016147,0.0000016197,0.0000016181, -0.0000016183,0.0000016209,0.0000016263,0.0000016391,0.0000016628, -0.0000016984,0.0000017096,0.0000016653,0.0000016311,0.0000016443, -0.0000016626,0.0000016542,0.0000016066,0.0000015687,0.0000015613, -0.0000015497,0.0000015277,0.0000015099,0.0000014974,0.0000014943, -0.0000014999,0.0000015009,0.0000014878,0.0000014674,0.0000014566, -0.0000014599,0.0000014650,0.0000014654,0.0000014652,0.0000014673, -0.0000014779,0.0000014867,0.0000014840,0.0000014867,0.0000014905, -0.0000014904,0.0000015034,0.0000014995,0.0000014775,0.0000014970, -0.0000015440,0.0000015690,0.0000015763,0.0000015842,0.0000015726, -0.0000015316,0.0000015073,0.0000015180,0.0000015442,0.0000015648, -0.0000015734,0.0000015717,0.0000015628,0.0000015551,0.0000015555, -0.0000015614,0.0000015624,0.0000015448,0.0000015133,0.0000015006, -0.0000015137,0.0000015405,0.0000015560,0.0000015533,0.0000015166, -0.0000014674,0.0000014443,0.0000014426,0.0000014448,0.0000014574, -0.0000014834,0.0000015105,0.0000015252,0.0000015266,0.0000015253, -0.0000015224,0.0000015186,0.0000015115,0.0000014978,0.0000014762, -0.0000014560,0.0000014514,0.0000014573,0.0000014670,0.0000014739, -0.0000014789,0.0000014830,0.0000014858,0.0000014884,0.0000014979, -0.0000015183,0.0000015404,0.0000015512,0.0000015553,0.0000015618, -0.0000015650,0.0000015632,0.0000015590,0.0000015584,0.0000015599, -0.0000015607,0.0000015541,0.0000015177,0.0000014758,0.0000014690, -0.0000014829,0.0000014882,0.0000014824,0.0000014785,0.0000014727, -0.0000014479,0.0000014452,0.0000014790,0.0000015390,0.0000015986, -0.0000016300,0.0000016483,0.0000016568,0.0000016459,0.0000016045, -0.0000015481,0.0000015315,0.0000015443,0.0000015499,0.0000015351, -0.0000015167,0.0000015155,0.0000015303,0.0000015301,0.0000015229, -0.0000015541,0.0000016326,0.0000016818,0.0000016564,0.0000016235, -0.0000016347,0.0000016066,0.0000015440,0.0000015281,0.0000015294, -0.0000015456,0.0000015758,0.0000015818,0.0000015527,0.0000015106, -0.0000014989,0.0000015245,0.0000015459,0.0000015389,0.0000015276, -0.0000015293,0.0000015340,0.0000015291,0.0000015076,0.0000014938, -0.0000014992,0.0000015087,0.0000015103,0.0000015105,0.0000015111, -0.0000015167,0.0000015189,0.0000015153,0.0000015156,0.0000015268, -0.0000015459,0.0000015555,0.0000015602,0.0000015688,0.0000015686, -0.0000015513,0.0000015312,0.0000015222,0.0000015263,0.0000015349, -0.0000015370,0.0000015348,0.0000015309,0.0000015433,0.0000015993, -0.0000016596,0.0000016779,0.0000016931,0.0000016964,0.0000016564, -0.0000016174,0.0000015953,0.0000015750,0.0000015616,0.0000015599, -0.0000015702,0.0000015871,0.0000015989,0.0000016003,0.0000015931, -0.0000015772,0.0000015677,0.0000015696,0.0000015761,0.0000015858, -0.0000016006,0.0000016175,0.0000016276,0.0000016247,0.0000016459, -0.0000016797,0.0000016486,0.0000016339,0.0000016694,0.0000016724, -0.0000016740,0.0000017169,0.0000017503,0.0000017524,0.0000017132, -0.0000016652,0.0000016323,0.0000016237,0.0000016416,0.0000016488, -0.0000016388,0.0000016187,0.0000016202,0.0000016232,0.0000016217, -0.0000016225,0.0000016249,0.0000016346,0.0000016551,0.0000016902, -0.0000017097,0.0000016785,0.0000016350,0.0000016416,0.0000016649, -0.0000016610,0.0000016181,0.0000015748,0.0000015629,0.0000015523, -0.0000015296,0.0000015100,0.0000014966,0.0000014935,0.0000014989, -0.0000015002,0.0000014887,0.0000014684,0.0000014573,0.0000014600, -0.0000014664,0.0000014682,0.0000014660,0.0000014664,0.0000014798, -0.0000014896,0.0000014850,0.0000014853,0.0000014837,0.0000014882, -0.0000015054,0.0000014940,0.0000014772,0.0000015069,0.0000015500, -0.0000015693,0.0000015746,0.0000015815,0.0000015752,0.0000015428, -0.0000015144,0.0000015146,0.0000015352,0.0000015583,0.0000015696, -0.0000015680,0.0000015606,0.0000015547,0.0000015557,0.0000015628, -0.0000015658,0.0000015496,0.0000015190,0.0000015042,0.0000015140, -0.0000015418,0.0000015570,0.0000015411,0.0000014931,0.0000014530, -0.0000014424,0.0000014419,0.0000014425,0.0000014468,0.0000014580, -0.0000014739,0.0000014877,0.0000014941,0.0000014926,0.0000014826, -0.0000014645,0.0000014481,0.0000014453,0.0000014491,0.0000014561, -0.0000014625,0.0000014684,0.0000014742,0.0000014799,0.0000014847, -0.0000014947,0.0000015124,0.0000015335,0.0000015450,0.0000015482, -0.0000015525,0.0000015607,0.0000015642,0.0000015607,0.0000015569, -0.0000015553,0.0000015547,0.0000015548,0.0000015412,0.0000014991, -0.0000014680,0.0000014717,0.0000014863,0.0000014876,0.0000014812, -0.0000014794,0.0000014669,0.0000014412,0.0000014530,0.0000014963, -0.0000015590,0.0000016123,0.0000016342,0.0000016519,0.0000016565, -0.0000016401,0.0000015942,0.0000015379,0.0000015250,0.0000015426, -0.0000015446,0.0000015251,0.0000015102,0.0000015155,0.0000015290, -0.0000015225,0.0000015218,0.0000015745,0.0000016532,0.0000016805, -0.0000016457,0.0000016243,0.0000016371,0.0000015910,0.0000015335, -0.0000015275,0.0000015271,0.0000015455,0.0000015779,0.0000015830, -0.0000015546,0.0000015146,0.0000014950,0.0000015123,0.0000015419, -0.0000015442,0.0000015293,0.0000015251,0.0000015303,0.0000015325, -0.0000015219,0.0000015048,0.0000014976,0.0000014982,0.0000015016, -0.0000015058,0.0000015075,0.0000015084,0.0000015081,0.0000015151, -0.0000015331,0.0000015495,0.0000015544,0.0000015566,0.0000015665, -0.0000015725,0.0000015635,0.0000015450,0.0000015264,0.0000015163, -0.0000015184,0.0000015234,0.0000015274,0.0000015290,0.0000015289, -0.0000015484,0.0000016089,0.0000016629,0.0000016821,0.0000016830, -0.0000016401,0.0000015738,0.0000015564,0.0000015566,0.0000015608, -0.0000015718,0.0000015876,0.0000015980,0.0000016001,0.0000015968, -0.0000015874,0.0000015755,0.0000015684,0.0000015677,0.0000015681, -0.0000015751,0.0000015965,0.0000016209,0.0000016268,0.0000016325, -0.0000016695,0.0000016679,0.0000016323,0.0000016503,0.0000016739, -0.0000016693,0.0000016967,0.0000017418,0.0000017571,0.0000017328, -0.0000016839,0.0000016428,0.0000016234,0.0000016324,0.0000016480, -0.0000016465,0.0000016268,0.0000016205,0.0000016262,0.0000016254, -0.0000016243,0.0000016244,0.0000016306,0.0000016488,0.0000016803, -0.0000017078,0.0000016907,0.0000016443,0.0000016385,0.0000016632, -0.0000016662,0.0000016304,0.0000015829,0.0000015647,0.0000015547, -0.0000015318,0.0000015097,0.0000014956,0.0000014924,0.0000014970, -0.0000014993,0.0000014899,0.0000014697,0.0000014580,0.0000014603, -0.0000014688,0.0000014712,0.0000014658,0.0000014676,0.0000014845, -0.0000014917,0.0000014852,0.0000014833,0.0000014784,0.0000014907, -0.0000015057,0.0000014868,0.0000014783,0.0000015151,0.0000015532, -0.0000015686,0.0000015720,0.0000015804,0.0000015820,0.0000015563, -0.0000015217,0.0000015146,0.0000015267,0.0000015490,0.0000015635, -0.0000015657,0.0000015624,0.0000015573,0.0000015570,0.0000015632, -0.0000015688,0.0000015573,0.0000015265,0.0000015067,0.0000015120, -0.0000015409,0.0000015521,0.0000015295,0.0000014812,0.0000014472, -0.0000014406,0.0000014407,0.0000014414,0.0000014412,0.0000014400, -0.0000014382,0.0000014381,0.0000014404,0.0000014413,0.0000014395, -0.0000014409,0.0000014474,0.0000014531,0.0000014564,0.0000014620, -0.0000014692,0.0000014781,0.0000014901,0.0000015072,0.0000015264, -0.0000015395,0.0000015416,0.0000015397,0.0000015467,0.0000015573, -0.0000015619,0.0000015595,0.0000015549,0.0000015509,0.0000015510, -0.0000015515,0.0000015270,0.0000014813,0.0000014630,0.0000014735, -0.0000014850,0.0000014833,0.0000014794,0.0000014783,0.0000014599, -0.0000014416,0.0000014666,0.0000015153,0.0000015780,0.0000016214, -0.0000016368,0.0000016552,0.0000016554,0.0000016332,0.0000015843, -0.0000015292,0.0000015203,0.0000015400,0.0000015380,0.0000015134, -0.0000015030,0.0000015146,0.0000015255,0.0000015159,0.0000015289, -0.0000015968,0.0000016702,0.0000016805,0.0000016331,0.0000016259, -0.0000016362,0.0000015727,0.0000015261,0.0000015278,0.0000015238, -0.0000015457,0.0000015787,0.0000015829,0.0000015579,0.0000015206, -0.0000014964,0.0000015016,0.0000015317,0.0000015461,0.0000015353, -0.0000015232,0.0000015238,0.0000015294,0.0000015296,0.0000015213, -0.0000015109,0.0000015043,0.0000015031,0.0000015048,0.0000015076, -0.0000015145,0.0000015269,0.0000015423,0.0000015516,0.0000015526, -0.0000015523,0.0000015591,0.0000015697,0.0000015691,0.0000015571, -0.0000015413,0.0000015233,0.0000015109,0.0000015090,0.0000015135, -0.0000015215,0.0000015257,0.0000015268,0.0000015539,0.0000016161, -0.0000016671,0.0000016828,0.0000016675,0.0000016057,0.0000015600, -0.0000015586,0.0000015688,0.0000015830,0.0000015938,0.0000015966, -0.0000015940,0.0000015900,0.0000015840,0.0000015779,0.0000015781, -0.0000015808,0.0000015778,0.0000015787,0.0000016010,0.0000016257, -0.0000016293,0.0000016508,0.0000016750,0.0000016433,0.0000016350, -0.0000016671,0.0000016683,0.0000016803,0.0000017260,0.0000017552, -0.0000017477,0.0000017042,0.0000016573,0.0000016261,0.0000016255, -0.0000016433,0.0000016497,0.0000016366,0.0000016237,0.0000016278, -0.0000016288,0.0000016259,0.0000016248,0.0000016280,0.0000016437, -0.0000016709,0.0000017002,0.0000016973,0.0000016562,0.0000016384, -0.0000016593,0.0000016697,0.0000016417,0.0000015925,0.0000015674, -0.0000015575,0.0000015353,0.0000015104,0.0000014946,0.0000014905, -0.0000014945,0.0000014980,0.0000014914,0.0000014708,0.0000014586, -0.0000014610,0.0000014718,0.0000014732,0.0000014654,0.0000014712, -0.0000014898,0.0000014926,0.0000014849,0.0000014812,0.0000014768, -0.0000014955,0.0000015027,0.0000014800,0.0000014790,0.0000015197, -0.0000015547,0.0000015670,0.0000015697,0.0000015787,0.0000015831, -0.0000015685,0.0000015338,0.0000015131,0.0000015172,0.0000015361, -0.0000015528,0.0000015592,0.0000015584,0.0000015557,0.0000015544, -0.0000015604,0.0000015676,0.0000015633,0.0000015378,0.0000015121, -0.0000015145,0.0000015337,0.0000015450,0.0000015261,0.0000014839, -0.0000014508,0.0000014405,0.0000014412,0.0000014411,0.0000014388, -0.0000014368,0.0000014376,0.0000014406,0.0000014427,0.0000014424, -0.0000014432,0.0000014466,0.0000014516,0.0000014585,0.0000014700, -0.0000014862,0.0000015053,0.0000015222,0.0000015298,0.0000015342, -0.0000015307,0.0000015307,0.0000015406,0.0000015528,0.0000015583, -0.0000015565,0.0000015520,0.0000015482,0.0000015486,0.0000015449, -0.0000015103,0.0000014669,0.0000014598,0.0000014745,0.0000014826, -0.0000014797,0.0000014778,0.0000014738,0.0000014515,0.0000014497, -0.0000014830,0.0000015356,0.0000015955,0.0000016260,0.0000016387, -0.0000016580,0.0000016518,0.0000016261,0.0000015753,0.0000015209, -0.0000015147,0.0000015364,0.0000015310,0.0000015032,0.0000014960, -0.0000015135,0.0000015191,0.0000015114,0.0000015421,0.0000016207, -0.0000016820,0.0000016714,0.0000016236,0.0000016326,0.0000016339, -0.0000015539,0.0000015248,0.0000015275,0.0000015189,0.0000015460, -0.0000015779,0.0000015814,0.0000015614,0.0000015279,0.0000015015, -0.0000014966,0.0000015172,0.0000015439,0.0000015427,0.0000015267, -0.0000015201,0.0000015231,0.0000015277,0.0000015294,0.0000015272, -0.0000015243,0.0000015237,0.0000015259,0.0000015320,0.0000015404, -0.0000015478,0.0000015508,0.0000015506,0.0000015489,0.0000015506, -0.0000015611,0.0000015692,0.0000015644,0.0000015516,0.0000015392, -0.0000015219,0.0000015083,0.0000015059,0.0000015105,0.0000015201, -0.0000015233,0.0000015270,0.0000015601,0.0000016228,0.0000016706, -0.0000016815,0.0000016591,0.0000015994,0.0000015658,0.0000015668, -0.0000015792,0.0000015883,0.0000015895,0.0000015890,0.0000015916, -0.0000015979,0.0000016089,0.0000016216,0.0000016205,0.0000015984, -0.0000015867,0.0000016098,0.0000016272,0.0000016373,0.0000016693, -0.0000016609,0.0000016306,0.0000016519,0.0000016693,0.0000016702, -0.0000017071,0.0000017475,0.0000017548,0.0000017239,0.0000016745, -0.0000016358,0.0000016232,0.0000016374,0.0000016495,0.0000016451, -0.0000016291,0.0000016284,0.0000016312,0.0000016274,0.0000016243, -0.0000016259,0.0000016386,0.0000016613,0.0000016928,0.0000017048, -0.0000016676,0.0000016405,0.0000016563,0.0000016673,0.0000016518, -0.0000016032,0.0000015710,0.0000015604,0.0000015409,0.0000015134, -0.0000014943,0.0000014884,0.0000014921,0.0000014980,0.0000014928, -0.0000014717,0.0000014593,0.0000014625,0.0000014748,0.0000014734, -0.0000014663,0.0000014759,0.0000014924,0.0000014910,0.0000014845, -0.0000014791,0.0000014775,0.0000014990,0.0000015000,0.0000014760, -0.0000014770,0.0000015225,0.0000015538,0.0000015644,0.0000015666, -0.0000015750,0.0000015853,0.0000015788,0.0000015460,0.0000015183, -0.0000015152,0.0000015233,0.0000015337,0.0000015407,0.0000015455, -0.0000015472,0.0000015474,0.0000015535,0.0000015661,0.0000015716, -0.0000015566,0.0000015313,0.0000015178,0.0000015221,0.0000015330, -0.0000015289,0.0000015021,0.0000014693,0.0000014503,0.0000014452, -0.0000014428,0.0000014396,0.0000014394,0.0000014421,0.0000014440, -0.0000014445,0.0000014474,0.0000014562,0.0000014695,0.0000014856, -0.0000015040,0.0000015234,0.0000015304,0.0000015276,0.0000015193, -0.0000015155,0.0000015217,0.0000015349,0.0000015475,0.0000015533, -0.0000015523,0.0000015483,0.0000015466,0.0000015476,0.0000015366, -0.0000014929,0.0000014570,0.0000014598,0.0000014765,0.0000014811, -0.0000014781,0.0000014767,0.0000014676,0.0000014457,0.0000014554, -0.0000014979,0.0000015559,0.0000016106,0.0000016273,0.0000016403, -0.0000016592,0.0000016474,0.0000016192,0.0000015661,0.0000015121, -0.0000015084,0.0000015320,0.0000015260,0.0000014976,0.0000014923, -0.0000015094,0.0000015086,0.0000015077,0.0000015634,0.0000016446, -0.0000016878,0.0000016597,0.0000016213,0.0000016396,0.0000016205, -0.0000015378,0.0000015282,0.0000015245,0.0000015159,0.0000015481, -0.0000015754,0.0000015775,0.0000015646,0.0000015355,0.0000015096, -0.0000014965,0.0000015044,0.0000015319,0.0000015471,0.0000015374, -0.0000015228,0.0000015192,0.0000015226,0.0000015277,0.0000015309, -0.0000015343,0.0000015371,0.0000015404,0.0000015435,0.0000015464, -0.0000015471,0.0000015471,0.0000015454,0.0000015445,0.0000015520, -0.0000015669,0.0000015696,0.0000015575,0.0000015471,0.0000015378, -0.0000015217,0.0000015085,0.0000015053,0.0000015132,0.0000015214, -0.0000015232,0.0000015304,0.0000015674,0.0000016291,0.0000016721, -0.0000016785,0.0000016634,0.0000016146,0.0000015761,0.0000015706, -0.0000015747,0.0000015827,0.0000015961,0.0000016180,0.0000016425, -0.0000016609,0.0000016673,0.0000016502,0.0000016073,0.0000015944, -0.0000016184,0.0000016312,0.0000016542,0.0000016694,0.0000016398, -0.0000016383,0.0000016640,0.0000016655,0.0000016889,0.0000017355, -0.0000017537,0.0000017402,0.0000016938,0.0000016483,0.0000016258, -0.0000016324,0.0000016470,0.0000016502,0.0000016376,0.0000016306, -0.0000016324,0.0000016288,0.0000016244,0.0000016241,0.0000016335, -0.0000016534,0.0000016830,0.0000016993,0.0000016810,0.0000016472, -0.0000016522,0.0000016681,0.0000016609,0.0000016158,0.0000015759, -0.0000015633,0.0000015485,0.0000015205,0.0000014963,0.0000014873, -0.0000014901,0.0000014975,0.0000014939,0.0000014726,0.0000014603, -0.0000014645,0.0000014776,0.0000014737,0.0000014684,0.0000014797, -0.0000014920,0.0000014888,0.0000014836,0.0000014768,0.0000014775, -0.0000014996,0.0000014984,0.0000014718,0.0000014768,0.0000015208, -0.0000015502,0.0000015613,0.0000015642,0.0000015721,0.0000015842, -0.0000015838,0.0000015606,0.0000015319,0.0000015158,0.0000015122, -0.0000015145,0.0000015197,0.0000015276,0.0000015334,0.0000015359, -0.0000015417,0.0000015554,0.0000015688,0.0000015690,0.0000015559, -0.0000015365,0.0000015246,0.0000015227,0.0000015238,0.0000015173, -0.0000015017,0.0000014822,0.0000014668,0.0000014593,0.0000014593, -0.0000014635,0.0000014685,0.0000014737,0.0000014818,0.0000014951, -0.0000015107,0.0000015178,0.0000015249,0.0000015221,0.0000015108, -0.0000015006,0.0000015005,0.0000015115,0.0000015266,0.0000015403, -0.0000015476,0.0000015475,0.0000015452,0.0000015460,0.0000015470, -0.0000015253,0.0000014786,0.0000014542,0.0000014632,0.0000014783, -0.0000014805,0.0000014775,0.0000014750,0.0000014612,0.0000014463, -0.0000014702,0.0000015149,0.0000015751,0.0000016209,0.0000016272, -0.0000016424,0.0000016594,0.0000016427,0.0000016124,0.0000015573, -0.0000015044,0.0000015024,0.0000015293,0.0000015272,0.0000015009, -0.0000014954,0.0000015057,0.0000015007,0.0000015167,0.0000015900, -0.0000016642,0.0000016886,0.0000016505,0.0000016251,0.0000016429, -0.0000016031,0.0000015274,0.0000015320,0.0000015173,0.0000015110, -0.0000015513,0.0000015718,0.0000015738,0.0000015673,0.0000015427, -0.0000015184,0.0000015043,0.0000015008,0.0000015163,0.0000015418, -0.0000015479,0.0000015371,0.0000015251,0.0000015222,0.0000015244, -0.0000015286,0.0000015332,0.0000015371,0.0000015400,0.0000015417, -0.0000015427,0.0000015431,0.0000015418,0.0000015417,0.0000015493, -0.0000015669,0.0000015740,0.0000015608,0.0000015470,0.0000015427, -0.0000015342,0.0000015190,0.0000015084,0.0000015104,0.0000015186, -0.0000015225,0.0000015260,0.0000015377,0.0000015759,0.0000016359, -0.0000016736,0.0000016771,0.0000016725,0.0000016485,0.0000016175, -0.0000016038,0.0000016072,0.0000016304,0.0000016614,0.0000016846, -0.0000016949,0.0000016913,0.0000016552,0.0000016049,0.0000016029, -0.0000016251,0.0000016430,0.0000016668,0.0000016547,0.0000016333, -0.0000016527,0.0000016631,0.0000016738,0.0000017182,0.0000017532, -0.0000017514,0.0000017131,0.0000016648,0.0000016317,0.0000016293, -0.0000016437,0.0000016517,0.0000016462,0.0000016348,0.0000016330, -0.0000016300,0.0000016248,0.0000016228,0.0000016296,0.0000016479, -0.0000016743,0.0000017008,0.0000016951,0.0000016576,0.0000016487, -0.0000016641,0.0000016681,0.0000016291,0.0000015824,0.0000015661, -0.0000015569,0.0000015315,0.0000015023,0.0000014869,0.0000014883, -0.0000014971,0.0000014945,0.0000014733,0.0000014614,0.0000014668, -0.0000014804,0.0000014747,0.0000014710,0.0000014812,0.0000014894, -0.0000014865,0.0000014823,0.0000014743,0.0000014798,0.0000015026, -0.0000014951,0.0000014686,0.0000014749,0.0000015142,0.0000015442, -0.0000015581,0.0000015624,0.0000015683,0.0000015797,0.0000015825, -0.0000015742,0.0000015494,0.0000015252,0.0000015087,0.0000015016, -0.0000015041,0.0000015111,0.0000015172,0.0000015204,0.0000015260, -0.0000015374,0.0000015521,0.0000015642,0.0000015669,0.0000015611, -0.0000015506,0.0000015380,0.0000015271,0.0000015204,0.0000015168, -0.0000015136,0.0000015101,0.0000015099,0.0000015126,0.0000015176, -0.0000015220,0.0000015206,0.0000015228,0.0000015183,0.0000015076, -0.0000014956,0.0000014866,0.0000014842,0.0000014890,0.0000015005, -0.0000015160,0.0000015317,0.0000015417,0.0000015440,0.0000015436, -0.0000015454,0.0000015443,0.0000015134,0.0000014673,0.0000014529, -0.0000014654,0.0000014785,0.0000014794,0.0000014761,0.0000014709, -0.0000014531,0.0000014518,0.0000014855,0.0000015321,0.0000015921, -0.0000016249,0.0000016258,0.0000016451,0.0000016602,0.0000016390, -0.0000016065,0.0000015499,0.0000014991,0.0000014983,0.0000015263, -0.0000015317,0.0000015141,0.0000015072,0.0000015050,0.0000014999, -0.0000015340,0.0000016174,0.0000016796,0.0000016896,0.0000016406, -0.0000016268,0.0000016435,0.0000015847,0.0000015237,0.0000015337, -0.0000015057,0.0000015107,0.0000015554,0.0000015677,0.0000015690, -0.0000015658,0.0000015484,0.0000015261,0.0000015141,0.0000015066, -0.0000015090,0.0000015259,0.0000015436,0.0000015481,0.0000015407, -0.0000015337,0.0000015314,0.0000015326,0.0000015354,0.0000015381, -0.0000015400,0.0000015413,0.0000015423,0.0000015432,0.0000015461, -0.0000015566,0.0000015709,0.0000015735,0.0000015579,0.0000015424, -0.0000015399,0.0000015376,0.0000015263,0.0000015141,0.0000015118, -0.0000015172,0.0000015215,0.0000015262,0.0000015361,0.0000015482, -0.0000015833,0.0000016417,0.0000016738,0.0000016769,0.0000016769, -0.0000016790,0.0000016760,0.0000016758,0.0000016858,0.0000016993, -0.0000017073,0.0000017086,0.0000016938,0.0000016418,0.0000016059, -0.0000016135,0.0000016349,0.0000016609,0.0000016645,0.0000016341, -0.0000016412,0.0000016604,0.0000016654,0.0000017002,0.0000017451, -0.0000017571,0.0000017305,0.0000016826,0.0000016424,0.0000016297, -0.0000016405,0.0000016509,0.0000016522,0.0000016411,0.0000016342, -0.0000016310,0.0000016255,0.0000016230,0.0000016274,0.0000016434, -0.0000016654,0.0000016956,0.0000017050,0.0000016674,0.0000016455, -0.0000016593,0.0000016720,0.0000016417,0.0000015916,0.0000015692, -0.0000015639,0.0000015446,0.0000015127,0.0000014893,0.0000014873, -0.0000014964,0.0000014945,0.0000014735,0.0000014622,0.0000014690, -0.0000014829,0.0000014759,0.0000014727,0.0000014799,0.0000014857, -0.0000014843,0.0000014804,0.0000014722,0.0000014837,0.0000015044, -0.0000014934,0.0000014680,0.0000014721,0.0000015034,0.0000015350, -0.0000015537,0.0000015609,0.0000015648,0.0000015734,0.0000015827, -0.0000015818,0.0000015663,0.0000015408,0.0000015149,0.0000014992, -0.0000014949,0.0000014988,0.0000015036,0.0000015072,0.0000015116, -0.0000015188,0.0000015282,0.0000015367,0.0000015438,0.0000015505, -0.0000015551,0.0000015556,0.0000015529,0.0000015478,0.0000015427, -0.0000015388,0.0000015371,0.0000015357,0.0000015314,0.0000015228, -0.0000015107,0.0000014968,0.0000014831,0.0000014736,0.0000014704, -0.0000014726,0.0000014800,0.0000014918,0.0000015076,0.0000015260, -0.0000015388,0.0000015428,0.0000015434,0.0000015452,0.0000015399, -0.0000015033,0.0000014605,0.0000014527,0.0000014662,0.0000014768, -0.0000014765,0.0000014734,0.0000014649,0.0000014475,0.0000014550, -0.0000014986,0.0000015496,0.0000016064,0.0000016232,0.0000016231, -0.0000016481,0.0000016610,0.0000016360,0.0000016027,0.0000015450, -0.0000014960,0.0000014939,0.0000015213,0.0000015355,0.0000015302, -0.0000015200,0.0000015031,0.0000014986,0.0000015580,0.0000016424, -0.0000016902,0.0000016865,0.0000016295,0.0000016324,0.0000016437, -0.0000015645,0.0000015252,0.0000015290,0.0000014936,0.0000015150, -0.0000015586,0.0000015641,0.0000015617,0.0000015628,0.0000015540, -0.0000015326,0.0000015204,0.0000015175,0.0000015140,0.0000015183, -0.0000015325,0.0000015457,0.0000015500,0.0000015490,0.0000015468, -0.0000015460,0.0000015464,0.0000015474,0.0000015484,0.0000015496, -0.0000015521,0.0000015584,0.0000015661,0.0000015700,0.0000015622, -0.0000015444,0.0000015354,0.0000015367,0.0000015362,0.0000015268, -0.0000015169,0.0000015143,0.0000015172,0.0000015215,0.0000015274, -0.0000015391,0.0000015496,0.0000015589,0.0000015912,0.0000016508, -0.0000016791,0.0000016736,0.0000016747,0.0000016918,0.0000017076, -0.0000017154,0.0000017167,0.0000017166,0.0000017122,0.0000016784, -0.0000016247,0.0000016078,0.0000016246,0.0000016513,0.0000016690, -0.0000016444,0.0000016325,0.0000016535,0.0000016596,0.0000016827, -0.0000017312,0.0000017560,0.0000017441,0.0000017006,0.0000016557, -0.0000016334,0.0000016384,0.0000016492,0.0000016542,0.0000016481, -0.0000016372,0.0000016322,0.0000016266,0.0000016233,0.0000016259, -0.0000016391,0.0000016573,0.0000016858,0.0000017029,0.0000016791, -0.0000016485,0.0000016532,0.0000016700,0.0000016534,0.0000016044, -0.0000015744,0.0000015688,0.0000015569,0.0000015264,0.0000014947, -0.0000014871,0.0000014957,0.0000014941,0.0000014730,0.0000014632, -0.0000014714,0.0000014850,0.0000014771,0.0000014727,0.0000014764, -0.0000014816,0.0000014822,0.0000014784,0.0000014717,0.0000014866, -0.0000015041,0.0000014933,0.0000014692,0.0000014653,0.0000014900, -0.0000015228,0.0000015459,0.0000015574,0.0000015620,0.0000015681, -0.0000015769,0.0000015814,0.0000015778,0.0000015595,0.0000015305, -0.0000015047,0.0000014946,0.0000014931,0.0000014953,0.0000014972, -0.0000014994,0.0000015035,0.0000015088,0.0000015135,0.0000015163, -0.0000015170,0.0000015166,0.0000015161,0.0000015155,0.0000015143, -0.0000015119,0.0000015077,0.0000015014,0.0000014933,0.0000014846, -0.0000014766,0.0000014708,0.0000014668,0.0000014655,0.0000014672, -0.0000014750,0.0000014889,0.0000015085,0.0000015288,0.0000015413, -0.0000015440,0.0000015443,0.0000015454,0.0000015365,0.0000014954, -0.0000014565,0.0000014517,0.0000014664,0.0000014752,0.0000014743, -0.0000014699,0.0000014577,0.0000014450,0.0000014670,0.0000015132, -0.0000015672,0.0000016172,0.0000016188,0.0000016218,0.0000016510, -0.0000016620,0.0000016330,0.0000015992,0.0000015413,0.0000014945, -0.0000014899,0.0000015156,0.0000015387,0.0000015409,0.0000015239, -0.0000015021,0.0000015141,0.0000015890,0.0000016635,0.0000016959, -0.0000016752,0.0000016225,0.0000016407,0.0000016365,0.0000015459, -0.0000015249,0.0000015203,0.0000014859,0.0000015206,0.0000015565, -0.0000015571,0.0000015560,0.0000015597,0.0000015566,0.0000015402, -0.0000015249,0.0000015211,0.0000015221,0.0000015227,0.0000015284, -0.0000015393,0.0000015484,0.0000015526,0.0000015548,0.0000015551, -0.0000015562,0.0000015573,0.0000015578,0.0000015588,0.0000015612, -0.0000015607,0.0000015523,0.0000015398,0.0000015328,0.0000015340, -0.0000015356,0.0000015312,0.0000015225,0.0000015165,0.0000015153, -0.0000015179,0.0000015243,0.0000015334,0.0000015453,0.0000015567, -0.0000015601,0.0000015644,0.0000016030,0.0000016634,0.0000016827, -0.0000016662,0.0000016635,0.0000016852,0.0000017087,0.0000017181, -0.0000017180,0.0000017028,0.0000016523,0.0000016103,0.0000016149, -0.0000016405,0.0000016660,0.0000016552,0.0000016319,0.0000016437, -0.0000016570,0.0000016694,0.0000017146,0.0000017530,0.0000017524, -0.0000017173,0.0000016711,0.0000016398,0.0000016381,0.0000016479, -0.0000016536,0.0000016534,0.0000016425,0.0000016341,0.0000016280, -0.0000016233,0.0000016248,0.0000016353,0.0000016512,0.0000016771, -0.0000017069,0.0000016952,0.0000016548,0.0000016509,0.0000016696, -0.0000016631,0.0000016202,0.0000015846,0.0000015747,0.0000015678, -0.0000015410,0.0000015023,0.0000014877,0.0000014946,0.0000014933, -0.0000014723,0.0000014641,0.0000014737,0.0000014867,0.0000014778, -0.0000014710,0.0000014717,0.0000014778,0.0000014801,0.0000014770, -0.0000014721,0.0000014866,0.0000015016,0.0000014942,0.0000014689, -0.0000014636,0.0000014787,0.0000015063,0.0000015319,0.0000015499, -0.0000015591,0.0000015640,0.0000015703,0.0000015782,0.0000015802, -0.0000015732,0.0000015496,0.0000015212,0.0000015009,0.0000014933, -0.0000014928,0.0000014925,0.0000014931,0.0000014942,0.0000014947, -0.0000014946,0.0000014950,0.0000014954,0.0000014943,0.0000014909, -0.0000014874,0.0000014852,0.0000014843,0.0000014838,0.0000014826, -0.0000014790,0.0000014741,0.0000014689,0.0000014682,0.0000014722, -0.0000014849,0.0000015025,0.0000015221,0.0000015391,0.0000015469, -0.0000015467,0.0000015459,0.0000015467,0.0000015337,0.0000014892, -0.0000014534,0.0000014523,0.0000014678,0.0000014751,0.0000014734, -0.0000014667,0.0000014509,0.0000014494,0.0000014820,0.0000015282, -0.0000015839,0.0000016241,0.0000016161,0.0000016236,0.0000016537, -0.0000016619,0.0000016294,0.0000015954,0.0000015387,0.0000014931, -0.0000014875,0.0000015076,0.0000015353,0.0000015392,0.0000015174, -0.0000015012,0.0000015335,0.0000016169,0.0000016782,0.0000016963, -0.0000016634,0.0000016206,0.0000016476,0.0000016213,0.0000015305, -0.0000015265,0.0000015079,0.0000014826,0.0000015230,0.0000015513, -0.0000015536,0.0000015568,0.0000015585,0.0000015569,0.0000015484, -0.0000015320,0.0000015222,0.0000015224,0.0000015251,0.0000015286, -0.0000015345,0.0000015416,0.0000015477,0.0000015515,0.0000015539, -0.0000015552,0.0000015547,0.0000015526,0.0000015489,0.0000015428, -0.0000015369,0.0000015354,0.0000015363,0.0000015353,0.0000015304, -0.0000015230,0.0000015174,0.0000015159,0.0000015174,0.0000015248, -0.0000015356,0.0000015465,0.0000015556,0.0000015628,0.0000015656, -0.0000015640,0.0000015727,0.0000016255,0.0000016803,0.0000016800, -0.0000016525,0.0000016540,0.0000016860,0.0000017122,0.0000017133, -0.0000016790,0.0000016292,0.0000016141,0.0000016303,0.0000016598, -0.0000016623,0.0000016335,0.0000016355,0.0000016525,0.0000016605, -0.0000016973,0.0000017433,0.0000017557,0.0000017318,0.0000016864, -0.0000016494,0.0000016400,0.0000016476,0.0000016528,0.0000016557, -0.0000016490,0.0000016374,0.0000016297,0.0000016242,0.0000016242, -0.0000016328,0.0000016480,0.0000016705,0.0000017017,0.0000017026, -0.0000016646,0.0000016517,0.0000016647,0.0000016688,0.0000016366, -0.0000016011,0.0000015863,0.0000015799,0.0000015555,0.0000015109, -0.0000014869,0.0000014932,0.0000014924,0.0000014716,0.0000014647, -0.0000014758,0.0000014883,0.0000014777,0.0000014686,0.0000014663, -0.0000014737,0.0000014783,0.0000014773,0.0000014732,0.0000014835, -0.0000014978,0.0000014941,0.0000014734,0.0000014640,0.0000014699, -0.0000014888,0.0000015128,0.0000015363,0.0000015529,0.0000015609, -0.0000015651,0.0000015704,0.0000015770,0.0000015755,0.0000015646, -0.0000015441,0.0000015217,0.0000015041,0.0000014948,0.0000014939, -0.0000014958,0.0000014950,0.0000014928,0.0000014895,0.0000014878, -0.0000014870,0.0000014861,0.0000014851,0.0000014842,0.0000014829, -0.0000014821,0.0000014800,0.0000014776,0.0000014788,0.0000014863, -0.0000014989,0.0000015133,0.0000015279,0.0000015413,0.0000015507, -0.0000015523,0.0000015491,0.0000015476,0.0000015476,0.0000015316, -0.0000014853,0.0000014515,0.0000014526,0.0000014686,0.0000014745, -0.0000014726,0.0000014630,0.0000014466,0.0000014523,0.0000014968, -0.0000015439,0.0000015985,0.0000016272,0.0000016135,0.0000016259, -0.0000016557,0.0000016610,0.0000016256,0.0000015928,0.0000015377, -0.0000014908,0.0000014831,0.0000014984,0.0000015222,0.0000015232, -0.0000015034,0.0000014971,0.0000015545,0.0000016392,0.0000016875, -0.0000016969,0.0000016521,0.0000016205,0.0000016485,0.0000016009, -0.0000015213,0.0000015264,0.0000014952,0.0000014829,0.0000015236, -0.0000015488,0.0000015593,0.0000015645,0.0000015624,0.0000015584, -0.0000015536,0.0000015421,0.0000015280,0.0000015212,0.0000015212, -0.0000015241,0.0000015280,0.0000015328,0.0000015379,0.0000015420, -0.0000015443,0.0000015448,0.0000015432,0.0000015409,0.0000015398, -0.0000015395,0.0000015380,0.0000015333,0.0000015268,0.0000015215, -0.0000015181,0.0000015169,0.0000015208,0.0000015305,0.0000015426, -0.0000015529,0.0000015598,0.0000015641,0.0000015660,0.0000015665, -0.0000015641,0.0000015640,0.0000015987,0.0000016668,0.0000016935, -0.0000016591,0.0000016390,0.0000016697,0.0000017074,0.0000016972, -0.0000016455,0.0000016152,0.0000016224,0.0000016517,0.0000016667, -0.0000016441,0.0000016317,0.0000016465,0.0000016536,0.0000016803, -0.0000017303,0.0000017539,0.0000017424,0.0000017021,0.0000016601, -0.0000016443,0.0000016481,0.0000016529,0.0000016567,0.0000016550, -0.0000016426,0.0000016323,0.0000016256,0.0000016243,0.0000016314, -0.0000016463,0.0000016643,0.0000016952,0.0000017092,0.0000016740, -0.0000016530,0.0000016600,0.0000016702,0.0000016498,0.0000016211, -0.0000016050,0.0000015966,0.0000015710,0.0000015197,0.0000014871, -0.0000014913,0.0000014913,0.0000014710,0.0000014652,0.0000014772, -0.0000014891,0.0000014771,0.0000014656,0.0000014611,0.0000014698, -0.0000014774,0.0000014777,0.0000014730,0.0000014795,0.0000014922, -0.0000014908,0.0000014807,0.0000014711,0.0000014700,0.0000014744, -0.0000014906,0.0000015160,0.0000015405,0.0000015554,0.0000015606, -0.0000015629,0.0000015667,0.0000015712,0.0000015710,0.0000015624, -0.0000015470,0.0000015289,0.0000015140,0.0000015057,0.0000015032, -0.0000015023,0.0000015001,0.0000014972,0.0000014946,0.0000014917, -0.0000014881,0.0000014848,0.0000014843,0.0000014868,0.0000014929, -0.0000015026,0.0000015159,0.0000015306,0.0000015422,0.0000015488, -0.0000015519,0.0000015537,0.0000015538,0.0000015505,0.0000015487, -0.0000015483,0.0000015282,0.0000014819,0.0000014533,0.0000014553, -0.0000014686,0.0000014736,0.0000014710,0.0000014589,0.0000014459, -0.0000014653,0.0000015133,0.0000015600,0.0000016101,0.0000016264, -0.0000016128,0.0000016285,0.0000016565,0.0000016603,0.0000016232, -0.0000015911,0.0000015391,0.0000014901,0.0000014807,0.0000014907, -0.0000015046,0.0000015026,0.0000014924,0.0000015027,0.0000015782, -0.0000016559,0.0000016946,0.0000016989,0.0000016411,0.0000016215, -0.0000016468,0.0000015817,0.0000015182,0.0000015227,0.0000014848, -0.0000014823,0.0000015240,0.0000015544,0.0000015702,0.0000015728, -0.0000015700,0.0000015642,0.0000015572,0.0000015495,0.0000015389, -0.0000015283,0.0000015227,0.0000015225,0.0000015227,0.0000015252, -0.0000015287,0.0000015316,0.0000015335,0.0000015343,0.0000015341, -0.0000015331,0.0000015302,0.0000015257,0.0000015224,0.0000015207, -0.0000015204,0.0000015216,0.0000015289,0.0000015401,0.0000015514, -0.0000015591,0.0000015626,0.0000015646,0.0000015665,0.0000015660, -0.0000015632,0.0000015633,0.0000015644,0.0000015928,0.0000016598, -0.0000016890,0.0000016597,0.0000016365,0.0000016718,0.0000016973, -0.0000016655,0.0000016181,0.0000016163,0.0000016441,0.0000016669, -0.0000016515,0.0000016309,0.0000016413,0.0000016507,0.0000016667, -0.0000017162,0.0000017523,0.0000017495,0.0000017165,0.0000016731, -0.0000016473,0.0000016486,0.0000016537,0.0000016559,0.0000016587, -0.0000016492,0.0000016364,0.0000016276,0.0000016253,0.0000016311, -0.0000016447,0.0000016596,0.0000016873,0.0000017072,0.0000016865, -0.0000016546,0.0000016541,0.0000016674,0.0000016579,0.0000016389, -0.0000016268,0.0000016174,0.0000015887,0.0000015290,0.0000014871, -0.0000014892,0.0000014897,0.0000014700,0.0000014656,0.0000014776, -0.0000014899,0.0000014766,0.0000014632,0.0000014574,0.0000014669, -0.0000014759,0.0000014771,0.0000014729,0.0000014764,0.0000014864, -0.0000014905,0.0000014882,0.0000014806,0.0000014711,0.0000014669, -0.0000014729,0.0000014935,0.0000015200,0.0000015421,0.0000015537, -0.0000015576,0.0000015599,0.0000015629,0.0000015660,0.0000015647, -0.0000015608,0.0000015527,0.0000015431,0.0000015328,0.0000015220, -0.0000015123,0.0000015061,0.0000015037,0.0000015039,0.0000015052, -0.0000015083,0.0000015142,0.0000015233,0.0000015332,0.0000015422, -0.0000015493,0.0000015522,0.0000015530,0.0000015529,0.0000015528, -0.0000015522,0.0000015504,0.0000015489,0.0000015482,0.0000015238, -0.0000014778,0.0000014541,0.0000014583,0.0000014690,0.0000014723, -0.0000014681,0.0000014526,0.0000014510,0.0000014812,0.0000015284, -0.0000015752,0.0000016193,0.0000016234,0.0000016126,0.0000016298, -0.0000016560,0.0000016592,0.0000016226,0.0000015904,0.0000015429, -0.0000014906,0.0000014772,0.0000014832,0.0000014877,0.0000014858, -0.0000014851,0.0000015152,0.0000015989,0.0000016673,0.0000017004, -0.0000017007,0.0000016306,0.0000016260,0.0000016435,0.0000015660, -0.0000015174,0.0000015155,0.0000014772,0.0000014839,0.0000015294, -0.0000015645,0.0000015755,0.0000015767,0.0000015768,0.0000015719, -0.0000015630,0.0000015542,0.0000015462,0.0000015380,0.0000015310, -0.0000015265,0.0000015247,0.0000015252,0.0000015268,0.0000015270, -0.0000015278,0.0000015266,0.0000015249,0.0000015239,0.0000015238, -0.0000015244,0.0000015248,0.0000015277,0.0000015376,0.0000015492, -0.0000015566,0.0000015610,0.0000015638,0.0000015673,0.0000015727, -0.0000015748,0.0000015682,0.0000015621,0.0000015617,0.0000015663, -0.0000016015,0.0000016667,0.0000016891,0.0000016520,0.0000016447, -0.0000016809,0.0000016763,0.0000016329,0.0000016172,0.0000016355, -0.0000016631,0.0000016575,0.0000016320,0.0000016362,0.0000016466, -0.0000016569,0.0000016997,0.0000017444,0.0000017540,0.0000017293, -0.0000016861,0.0000016534,0.0000016487,0.0000016544,0.0000016552, -0.0000016597,0.0000016560,0.0000016420,0.0000016304,0.0000016269, -0.0000016311,0.0000016431,0.0000016564,0.0000016793,0.0000017075, -0.0000016943,0.0000016619,0.0000016514,0.0000016652,0.0000016612, -0.0000016505,0.0000016447,0.0000016373,0.0000016071,0.0000015389, -0.0000014867,0.0000014865,0.0000014877,0.0000014684,0.0000014649, -0.0000014768,0.0000014907,0.0000014764,0.0000014621,0.0000014567, -0.0000014640,0.0000014716,0.0000014739,0.0000014736,0.0000014759, -0.0000014826,0.0000014883,0.0000014903,0.0000014866,0.0000014767, -0.0000014673,0.0000014666,0.0000014753,0.0000014951,0.0000015194, -0.0000015392,0.0000015510,0.0000015557,0.0000015571,0.0000015578, -0.0000015586,0.0000015593,0.0000015598,0.0000015593,0.0000015575, -0.0000015541,0.0000015507,0.0000015482,0.0000015473,0.0000015484, -0.0000015502,0.0000015524,0.0000015516,0.0000015511,0.0000015513, -0.0000015518,0.0000015509,0.0000015499,0.0000015504,0.0000015510, -0.0000015497,0.0000015488,0.0000015463,0.0000015182,0.0000014740, -0.0000014560,0.0000014612,0.0000014708,0.0000014722,0.0000014640, -0.0000014471,0.0000014511,0.0000014954,0.0000015422,0.0000015888, -0.0000016256,0.0000016225,0.0000016135,0.0000016299,0.0000016551, -0.0000016581,0.0000016247,0.0000015908,0.0000015487,0.0000014930, -0.0000014736,0.0000014764,0.0000014755,0.0000014756,0.0000014837, -0.0000015287,0.0000016149,0.0000016757,0.0000017047,0.0000016954, -0.0000016216,0.0000016316,0.0000016422,0.0000015513,0.0000015165, -0.0000015063,0.0000014724,0.0000014879,0.0000015403,0.0000015723, -0.0000015756,0.0000015774,0.0000015781,0.0000015736,0.0000015649, -0.0000015553,0.0000015476,0.0000015417,0.0000015371,0.0000015338, -0.0000015321,0.0000015315,0.0000015311,0.0000015308,0.0000015306, -0.0000015301,0.0000015291,0.0000015289,0.0000015282,0.0000015306, -0.0000015418,0.0000015529,0.0000015576,0.0000015608,0.0000015694, -0.0000015817,0.0000015961,0.0000016077,0.0000016035,0.0000015831, -0.0000015679,0.0000015655,0.0000015756,0.0000016226,0.0000016706, -0.0000016665,0.0000016432,0.0000016626,0.0000016770,0.0000016421, -0.0000016185,0.0000016293,0.0000016582,0.0000016630,0.0000016377, -0.0000016327,0.0000016439,0.0000016488,0.0000016833,0.0000017347, -0.0000017518,0.0000017388,0.0000017002,0.0000016612,0.0000016488, -0.0000016541,0.0000016553,0.0000016590,0.0000016610,0.0000016488, -0.0000016346,0.0000016292,0.0000016314,0.0000016417,0.0000016546, -0.0000016732,0.0000017020,0.0000016995,0.0000016693,0.0000016502, -0.0000016601,0.0000016610,0.0000016557,0.0000016544,0.0000016507, -0.0000016229,0.0000015493,0.0000014867,0.0000014844,0.0000014858, -0.0000014664,0.0000014634,0.0000014750,0.0000014916,0.0000014771, -0.0000014625,0.0000014566,0.0000014603,0.0000014651,0.0000014697, -0.0000014746,0.0000014770,0.0000014803,0.0000014848,0.0000014881, -0.0000014868,0.0000014814,0.0000014737,0.0000014674,0.0000014676, -0.0000014771,0.0000014942,0.0000015155,0.0000015343,0.0000015463, -0.0000015519,0.0000015538,0.0000015544,0.0000015559,0.0000015580, -0.0000015590,0.0000015581,0.0000015576,0.0000015578,0.0000015578, -0.0000015573,0.0000015555,0.0000015531,0.0000015513,0.0000015506, -0.0000015500,0.0000015487,0.0000015471,0.0000015471,0.0000015481, -0.0000015479,0.0000015479,0.0000015437,0.0000015131,0.0000014715, -0.0000014574,0.0000014626,0.0000014720,0.0000014733,0.0000014599, -0.0000014441,0.0000014600,0.0000015108,0.0000015554,0.0000016003, -0.0000016280,0.0000016197,0.0000016145,0.0000016286,0.0000016536, -0.0000016570,0.0000016294,0.0000015927,0.0000015571,0.0000014977, -0.0000014729,0.0000014722,0.0000014687,0.0000014726,0.0000014862, -0.0000015417,0.0000016279,0.0000016823,0.0000017072,0.0000016888, -0.0000016150,0.0000016375,0.0000016348,0.0000015392,0.0000015138, -0.0000014967,0.0000014709,0.0000014952,0.0000015522,0.0000015748, -0.0000015757,0.0000015781,0.0000015775,0.0000015730,0.0000015669, -0.0000015602,0.0000015545,0.0000015498,0.0000015457,0.0000015426, -0.0000015407,0.0000015392,0.0000015371,0.0000015344,0.0000015315, -0.0000015286,0.0000015279,0.0000015324,0.0000015446,0.0000015543, -0.0000015561,0.0000015643,0.0000015824,0.0000016012,0.0000016195, -0.0000016388,0.0000016474,0.0000016319,0.0000016003,0.0000015783, -0.0000015756,0.0000015999,0.0000016481,0.0000016622,0.0000016488, -0.0000016520,0.0000016649,0.0000016467,0.0000016195,0.0000016261, -0.0000016556,0.0000016668,0.0000016426,0.0000016312,0.0000016429, -0.0000016463,0.0000016702,0.0000017228,0.0000017532,0.0000017453, -0.0000017125,0.0000016722,0.0000016501,0.0000016532,0.0000016561, -0.0000016575,0.0000016628,0.0000016557,0.0000016403,0.0000016317, -0.0000016320,0.0000016406,0.0000016538,0.0000016684,0.0000016965, -0.0000017056,0.0000016811,0.0000016515,0.0000016556,0.0000016601, -0.0000016571,0.0000016570,0.0000016557,0.0000016335,0.0000015597, -0.0000014895,0.0000014835,0.0000014844,0.0000014647,0.0000014623, -0.0000014723,0.0000014927,0.0000014793,0.0000014638,0.0000014581, -0.0000014585,0.0000014600,0.0000014669,0.0000014750,0.0000014783, -0.0000014796,0.0000014815,0.0000014826,0.0000014821,0.0000014801, -0.0000014764,0.0000014722,0.0000014698,0.0000014695,0.0000014758, -0.0000014893,0.0000015076,0.0000015241,0.0000015351,0.0000015427, -0.0000015497,0.0000015553,0.0000015578,0.0000015573,0.0000015558, -0.0000015551,0.0000015550,0.0000015547,0.0000015534,0.0000015511, -0.0000015495,0.0000015485,0.0000015470,0.0000015451,0.0000015437, -0.0000015436,0.0000015440,0.0000015448,0.0000015384,0.0000015071, -0.0000014695,0.0000014577,0.0000014626,0.0000014722,0.0000014724, -0.0000014554,0.0000014454,0.0000014718,0.0000015243,0.0000015673, -0.0000016097,0.0000016282,0.0000016172,0.0000016157,0.0000016263, -0.0000016515,0.0000016559,0.0000016366,0.0000015965,0.0000015672, -0.0000015057,0.0000014736,0.0000014696,0.0000014652,0.0000014735, -0.0000014906,0.0000015530,0.0000016376,0.0000016869,0.0000017077, -0.0000016817,0.0000016124,0.0000016430,0.0000016249,0.0000015294, -0.0000015101,0.0000014883,0.0000014725,0.0000015045,0.0000015615, -0.0000015749,0.0000015759,0.0000015789,0.0000015783,0.0000015772, -0.0000015761,0.0000015741,0.0000015707,0.0000015662,0.0000015607, -0.0000015547,0.0000015486,0.0000015420,0.0000015352,0.0000015298, -0.0000015303,0.0000015385,0.0000015530,0.0000015596,0.0000015580, -0.0000015699,0.0000015976,0.0000016177,0.0000016210,0.0000016277, -0.0000016378,0.0000016401,0.0000016248,0.0000015995,0.0000015862, -0.0000015964,0.0000016300,0.0000016485,0.0000016402,0.0000016481, -0.0000016629,0.0000016486,0.0000016255,0.0000016257,0.0000016501, -0.0000016630,0.0000016477,0.0000016342,0.0000016399,0.0000016430, -0.0000016590,0.0000017087,0.0000017468,0.0000017485,0.0000017227, -0.0000016829,0.0000016538,0.0000016517,0.0000016564,0.0000016570, -0.0000016626,0.0000016609,0.0000016467,0.0000016348,0.0000016328, -0.0000016398,0.0000016532,0.0000016654,0.0000016897,0.0000017037, -0.0000016886,0.0000016528,0.0000016521,0.0000016588,0.0000016579, -0.0000016573,0.0000016552,0.0000016394,0.0000015704,0.0000014939, -0.0000014828,0.0000014828,0.0000014638,0.0000014614,0.0000014691, -0.0000014935,0.0000014830,0.0000014659,0.0000014613,0.0000014593, -0.0000014603,0.0000014671,0.0000014742,0.0000014784,0.0000014792, -0.0000014793,0.0000014779,0.0000014758,0.0000014741,0.0000014734, -0.0000014738,0.0000014744,0.0000014721,0.0000014704,0.0000014722, -0.0000014798,0.0000014923,0.0000015051,0.0000015154,0.0000015245, -0.0000015335,0.0000015400,0.0000015421,0.0000015410,0.0000015400, -0.0000015397,0.0000015399,0.0000015412,0.0000015435,0.0000015444, -0.0000015427,0.0000015396,0.0000015380,0.0000015390,0.0000015408, -0.0000015322,0.0000015000,0.0000014668,0.0000014581,0.0000014641, -0.0000014731,0.0000014698,0.0000014501,0.0000014472,0.0000014839, -0.0000015362,0.0000015778,0.0000016162,0.0000016282,0.0000016157, -0.0000016157,0.0000016236,0.0000016493,0.0000016553,0.0000016449, -0.0000016026,0.0000015774,0.0000015170,0.0000014767,0.0000014687, -0.0000014636,0.0000014752,0.0000014943,0.0000015620,0.0000016452, -0.0000016903,0.0000017070,0.0000016756,0.0000016120,0.0000016458, -0.0000016143,0.0000015225,0.0000015052,0.0000014814,0.0000014760, -0.0000015134,0.0000015665,0.0000015744,0.0000015768,0.0000015792, -0.0000015790,0.0000015814,0.0000015848,0.0000015860,0.0000015846, -0.0000015799,0.0000015713,0.0000015604,0.0000015496,0.0000015407, -0.0000015375,0.0000015458,0.0000015628,0.0000015692,0.0000015607, -0.0000015698,0.0000016069,0.0000016284,0.0000016198,0.0000016000, -0.0000015925,0.0000015943,0.0000015970,0.0000015944,0.0000015897, -0.0000015947,0.0000016193,0.0000016323,0.0000016322,0.0000016456, -0.0000016614,0.0000016473,0.0000016261,0.0000016254,0.0000016478, -0.0000016652,0.0000016519,0.0000016347,0.0000016387,0.0000016413, -0.0000016495,0.0000016938,0.0000017415,0.0000017509,0.0000017303, -0.0000016940,0.0000016590,0.0000016493,0.0000016553,0.0000016573, -0.0000016618,0.0000016645,0.0000016534,0.0000016386,0.0000016338, -0.0000016384,0.0000016518,0.0000016633,0.0000016824,0.0000017056, -0.0000016930,0.0000016606,0.0000016504,0.0000016573,0.0000016589, -0.0000016581,0.0000016537,0.0000016425,0.0000015808,0.0000014993, -0.0000014819,0.0000014821,0.0000014635,0.0000014608,0.0000014658, -0.0000014919,0.0000014876,0.0000014696,0.0000014644,0.0000014645, -0.0000014671,0.0000014705,0.0000014749,0.0000014778,0.0000014789, -0.0000014782,0.0000014755,0.0000014717,0.0000014681,0.0000014684, -0.0000014726,0.0000014762,0.0000014768,0.0000014734,0.0000014689, -0.0000014639,0.0000014664,0.0000014750,0.0000014849,0.0000014898, -0.0000014903,0.0000014919,0.0000014962,0.0000015011,0.0000015070, -0.0000015161,0.0000015284,0.0000015384,0.0000015410,0.0000015377, -0.0000015336,0.0000015341,0.0000015362,0.0000015256,0.0000014937, -0.0000014641,0.0000014581,0.0000014656,0.0000014735,0.0000014662, -0.0000014469,0.0000014509,0.0000014989,0.0000015472,0.0000015870, -0.0000016209,0.0000016254,0.0000016156,0.0000016179,0.0000016217, -0.0000016473,0.0000016557,0.0000016526,0.0000016107,0.0000015862, -0.0000015317,0.0000014823,0.0000014682,0.0000014640,0.0000014784, -0.0000014981,0.0000015693,0.0000016515,0.0000016931,0.0000017054, -0.0000016706,0.0000016109,0.0000016451,0.0000016055,0.0000015167, -0.0000014989,0.0000014778,0.0000014775,0.0000015199,0.0000015685, -0.0000015753,0.0000015787,0.0000015792,0.0000015801,0.0000015858, -0.0000015911,0.0000015917,0.0000015885,0.0000015799,0.0000015675, -0.0000015550,0.0000015464,0.0000015482,0.0000015656,0.0000015789, -0.0000015711,0.0000015639,0.0000015940,0.0000016350,0.0000016323, -0.0000015960,0.0000015706,0.0000015663,0.0000015723,0.0000015773, -0.0000015846,0.0000015975,0.0000016138,0.0000016202,0.0000016225, -0.0000016460,0.0000016591,0.0000016444,0.0000016244,0.0000016234, -0.0000016455,0.0000016675,0.0000016556,0.0000016356,0.0000016396, -0.0000016400,0.0000016421,0.0000016820,0.0000017327,0.0000017473, -0.0000017357,0.0000017040,0.0000016665,0.0000016493,0.0000016532, -0.0000016573,0.0000016614,0.0000016666,0.0000016601,0.0000016440, -0.0000016344,0.0000016368,0.0000016499,0.0000016619,0.0000016764, -0.0000016990,0.0000016982,0.0000016669,0.0000016496,0.0000016546, -0.0000016595,0.0000016597,0.0000016532,0.0000016443,0.0000015906, -0.0000015057,0.0000014816,0.0000014818,0.0000014642,0.0000014604, -0.0000014630,0.0000014875,0.0000014932,0.0000014751,0.0000014681, -0.0000014722,0.0000014759,0.0000014774,0.0000014778,0.0000014785, -0.0000014788,0.0000014771,0.0000014736,0.0000014692,0.0000014668, -0.0000014683,0.0000014709,0.0000014755,0.0000014804,0.0000014800, -0.0000014720,0.0000014615,0.0000014541,0.0000014561,0.0000014645, -0.0000014725,0.0000014759,0.0000014774,0.0000014815,0.0000014907, -0.0000015073,0.0000015276,0.0000015383,0.0000015372,0.0000015325, -0.0000015315,0.0000015317,0.0000015175,0.0000014856,0.0000014618, -0.0000014589,0.0000014669,0.0000014717,0.0000014610,0.0000014447, -0.0000014615,0.0000015137,0.0000015567,0.0000015949,0.0000016248, -0.0000016246,0.0000016170,0.0000016221,0.0000016214,0.0000016449, -0.0000016567,0.0000016576,0.0000016213,0.0000015924,0.0000015478, -0.0000014895,0.0000014684,0.0000014643,0.0000014798,0.0000015003, -0.0000015736,0.0000016561,0.0000016946,0.0000017032,0.0000016670, -0.0000016106,0.0000016431,0.0000015988,0.0000015109,0.0000014929, -0.0000014765,0.0000014779,0.0000015236,0.0000015696,0.0000015774, -0.0000015808,0.0000015800,0.0000015826,0.0000015900,0.0000015932, -0.0000015918,0.0000015850,0.0000015736,0.0000015603,0.0000015516, -0.0000015554,0.0000015770,0.0000015886,0.0000015738,0.0000015662, -0.0000015978,0.0000016397,0.0000016370,0.0000015983,0.0000015755, -0.0000015740,0.0000015797,0.0000015889,0.0000016021,0.0000016128, -0.0000016158,0.0000016255,0.0000016533,0.0000016550,0.0000016371, -0.0000016248,0.0000016248,0.0000016444,0.0000016647,0.0000016558, -0.0000016379,0.0000016404,0.0000016410,0.0000016397,0.0000016720, -0.0000017237,0.0000017473,0.0000017399,0.0000017122,0.0000016740, -0.0000016494,0.0000016508,0.0000016568,0.0000016609,0.0000016679, -0.0000016657,0.0000016505,0.0000016365,0.0000016356,0.0000016478, -0.0000016614,0.0000016726,0.0000016940,0.0000016978,0.0000016737, -0.0000016473,0.0000016509,0.0000016599,0.0000016614,0.0000016541, -0.0000016453,0.0000015998,0.0000015148,0.0000014809,0.0000014815, -0.0000014657,0.0000014599,0.0000014610,0.0000014802,0.0000014950, -0.0000014842,0.0000014748,0.0000014774,0.0000014823,0.0000014839, -0.0000014826,0.0000014809,0.0000014792,0.0000014758,0.0000014715, -0.0000014703,0.0000014716,0.0000014718,0.0000014722,0.0000014748, -0.0000014810,0.0000014833,0.0000014781,0.0000014640,0.0000014521, -0.0000014497,0.0000014562,0.0000014681,0.0000014771,0.0000014831, -0.0000014963,0.0000015182,0.0000015343,0.0000015358,0.0000015318, -0.0000015309,0.0000015295,0.0000015108,0.0000014780,0.0000014582, -0.0000014591,0.0000014677,0.0000014699,0.0000014544,0.0000014457, -0.0000014729,0.0000015268,0.0000015653,0.0000016015,0.0000016258, -0.0000016217,0.0000016187,0.0000016280,0.0000016220,0.0000016417, -0.0000016575,0.0000016603,0.0000016333,0.0000015976,0.0000015640, -0.0000014989,0.0000014687,0.0000014641,0.0000014791,0.0000015002, -0.0000015749,0.0000016598,0.0000016959,0.0000017012,0.0000016658, -0.0000016112,0.0000016413,0.0000015953,0.0000015057,0.0000014871, -0.0000014745,0.0000014784,0.0000015249,0.0000015700,0.0000015805, -0.0000015837,0.0000015819,0.0000015851,0.0000015920,0.0000015938, -0.0000015915,0.0000015842,0.0000015713,0.0000015586,0.0000015594, -0.0000015807,0.0000015998,0.0000015892,0.0000015680,0.0000015798, -0.0000016196,0.0000016383,0.0000016244,0.0000016083,0.0000016025, -0.0000016049,0.0000016119,0.0000016179,0.0000016248,0.0000016410, -0.0000016555,0.0000016408,0.0000016276,0.0000016236,0.0000016252, -0.0000016458,0.0000016647,0.0000016558,0.0000016392,0.0000016407, -0.0000016416,0.0000016384,0.0000016633,0.0000017145,0.0000017459, -0.0000017431,0.0000017192,0.0000016815,0.0000016519,0.0000016482, -0.0000016553,0.0000016604,0.0000016679,0.0000016698,0.0000016573, -0.0000016402,0.0000016355,0.0000016460,0.0000016610,0.0000016702, -0.0000016885,0.0000017018,0.0000016823,0.0000016501,0.0000016482, -0.0000016586,0.0000016623,0.0000016559,0.0000016459,0.0000016088, -0.0000015271,0.0000014828,0.0000014812,0.0000014678,0.0000014590, -0.0000014591,0.0000014706,0.0000014946,0.0000014971,0.0000014856, -0.0000014814,0.0000014835,0.0000014855,0.0000014850,0.0000014835, -0.0000014808,0.0000014766,0.0000014748,0.0000014783,0.0000014818, -0.0000014807,0.0000014776,0.0000014787,0.0000014835,0.0000014823, -0.0000014710,0.0000014546,0.0000014466,0.0000014490,0.0000014607, -0.0000014750,0.0000014924,0.0000015144,0.0000015307,0.0000015334, -0.0000015306,0.0000015302,0.0000015273,0.0000015059,0.0000014729, -0.0000014564,0.0000014585,0.0000014677,0.0000014673,0.0000014501, -0.0000014467,0.0000014858,0.0000015387,0.0000015732,0.0000016076, -0.0000016260,0.0000016186,0.0000016220,0.0000016360,0.0000016246, -0.0000016375,0.0000016579,0.0000016625,0.0000016460,0.0000016032, -0.0000015784,0.0000015122,0.0000014711,0.0000014638,0.0000014767, -0.0000014981,0.0000015734,0.0000016624,0.0000016970,0.0000016996, -0.0000016667,0.0000016137,0.0000016404,0.0000015947,0.0000015011, -0.0000014821,0.0000014730,0.0000014791,0.0000015236,0.0000015696, -0.0000015841,0.0000015865,0.0000015841,0.0000015869,0.0000015927, -0.0000015948,0.0000015935,0.0000015859,0.0000015718,0.0000015649, -0.0000015782,0.0000016049,0.0000016145,0.0000015943,0.0000015775, -0.0000015893,0.0000016135,0.0000016263,0.0000016271,0.0000016258, -0.0000016267,0.0000016319,0.0000016372,0.0000016496,0.0000016472, -0.0000016244,0.0000016229,0.0000016239,0.0000016252,0.0000016475, -0.0000016651,0.0000016551,0.0000016405,0.0000016420,0.0000016425, -0.0000016376,0.0000016560,0.0000017067,0.0000017428,0.0000017448, -0.0000017249,0.0000016893,0.0000016548,0.0000016459,0.0000016529, -0.0000016595,0.0000016675,0.0000016720,0.0000016635,0.0000016451, -0.0000016368,0.0000016444,0.0000016606,0.0000016686,0.0000016830, -0.0000016989,0.0000016883,0.0000016523,0.0000016426,0.0000016549, -0.0000016626,0.0000016579,0.0000016463,0.0000016176,0.0000015419, -0.0000014858,0.0000014811,0.0000014698,0.0000014575,0.0000014576, -0.0000014631,0.0000014901,0.0000015053,0.0000014990,0.0000014888, -0.0000014830,0.0000014817,0.0000014822,0.0000014823,0.0000014806, -0.0000014803,0.0000014831,0.0000014885,0.0000014904,0.0000014873, -0.0000014820,0.0000014783,0.0000014716,0.0000014596,0.0000014475, -0.0000014434,0.0000014494,0.0000014656,0.0000014888,0.0000015123, -0.0000015271,0.0000015296,0.0000015283,0.0000015289,0.0000015224, -0.0000014995,0.0000014707,0.0000014569,0.0000014596,0.0000014666, -0.0000014632,0.0000014480,0.0000014531,0.0000015014,0.0000015497, -0.0000015812,0.0000016127,0.0000016268,0.0000016173,0.0000016262, -0.0000016452,0.0000016297,0.0000016334,0.0000016575,0.0000016642, -0.0000016571,0.0000016100,0.0000015886,0.0000015286,0.0000014758, -0.0000014645,0.0000014742,0.0000014944,0.0000015687,0.0000016640, -0.0000016983,0.0000016994,0.0000016697,0.0000016171,0.0000016399, -0.0000015968,0.0000014989,0.0000014791,0.0000014724,0.0000014786, -0.0000015197,0.0000015671,0.0000015868,0.0000015885,0.0000015860, -0.0000015880,0.0000015932,0.0000015957,0.0000015954,0.0000015881, -0.0000015771,0.0000015768,0.0000015972,0.0000016215,0.0000016284, -0.0000016146,0.0000016000,0.0000016005,0.0000016088,0.0000016174, -0.0000016226,0.0000016274,0.0000016321,0.0000016322,0.0000016203, -0.0000016142,0.0000016261,0.0000016247,0.0000016264,0.0000016505, -0.0000016631,0.0000016527,0.0000016399,0.0000016436,0.0000016436, -0.0000016356,0.0000016515,0.0000017002,0.0000017401,0.0000017460, -0.0000017296,0.0000016953,0.0000016585,0.0000016454,0.0000016501, -0.0000016583,0.0000016666,0.0000016729,0.0000016684,0.0000016509, -0.0000016382,0.0000016434,0.0000016603,0.0000016691,0.0000016796, -0.0000016953,0.0000016942,0.0000016603,0.0000016420,0.0000016495, -0.0000016611,0.0000016599,0.0000016470,0.0000016255,0.0000015580, -0.0000014924,0.0000014801,0.0000014708,0.0000014571,0.0000014573, -0.0000014610,0.0000014814,0.0000015051,0.0000015110,0.0000015012, -0.0000014889,0.0000014801,0.0000014782,0.0000014766,0.0000014752, -0.0000014775,0.0000014813,0.0000014833,0.0000014824,0.0000014767, -0.0000014689,0.0000014600,0.0000014526,0.0000014484,0.0000014528, -0.0000014715,0.0000014956,0.0000015167,0.0000015271,0.0000015275, -0.0000015264,0.0000015252,0.0000015148,0.0000014897,0.0000014667, -0.0000014594,0.0000014619,0.0000014661,0.0000014598,0.0000014481, -0.0000014637,0.0000015166,0.0000015592,0.0000015885,0.0000016170, -0.0000016255,0.0000016171,0.0000016313,0.0000016553,0.0000016363, -0.0000016318,0.0000016562,0.0000016654,0.0000016653,0.0000016188, -0.0000015939,0.0000015464,0.0000014826,0.0000014658,0.0000014730, -0.0000014903,0.0000015612,0.0000016644,0.0000016994,0.0000017016, -0.0000016737,0.0000016192,0.0000016371,0.0000016009,0.0000015009, -0.0000014769,0.0000014723,0.0000014771,0.0000015132,0.0000015617, -0.0000015878,0.0000015905,0.0000015876,0.0000015887,0.0000015929, -0.0000015963,0.0000015967,0.0000015920,0.0000015852,0.0000015870, -0.0000016017,0.0000016219,0.0000016301,0.0000016255,0.0000016173, -0.0000016120,0.0000016111,0.0000016139,0.0000016149,0.0000016143, -0.0000016108,0.0000016207,0.0000016284,0.0000016209,0.0000016289, -0.0000016555,0.0000016606,0.0000016488,0.0000016390,0.0000016443, -0.0000016440,0.0000016360,0.0000016495,0.0000016949,0.0000017351, -0.0000017442,0.0000017335,0.0000017009,0.0000016617,0.0000016440, -0.0000016473,0.0000016562,0.0000016651,0.0000016731,0.0000016719, -0.0000016570,0.0000016423,0.0000016443,0.0000016601,0.0000016701, -0.0000016768,0.0000016907,0.0000016983,0.0000016670,0.0000016370, -0.0000016432,0.0000016584,0.0000016612,0.0000016482,0.0000016316, -0.0000015749,0.0000015020,0.0000014777,0.0000014716,0.0000014594, -0.0000014587,0.0000014628,0.0000014729,0.0000014955,0.0000015117, -0.0000015138,0.0000015030,0.0000014915,0.0000014827,0.0000014742, -0.0000014729,0.0000014726,0.0000014731,0.0000014748,0.0000014738, -0.0000014707,0.0000014705,0.0000014738,0.0000014835,0.0000014999, -0.0000015177,0.0000015284,0.0000015304,0.0000015286,0.0000015273, -0.0000015211,0.0000015036,0.0000014781,0.0000014602,0.0000014587, -0.0000014632,0.0000014657,0.0000014580,0.0000014527,0.0000014776, -0.0000015313,0.0000015680,0.0000015959,0.0000016217,0.0000016236, -0.0000016159,0.0000016363,0.0000016661,0.0000016450,0.0000016301, -0.0000016538,0.0000016659,0.0000016675,0.0000016297,0.0000015966, -0.0000015632,0.0000014913,0.0000014675,0.0000014740,0.0000014872, -0.0000015521,0.0000016636,0.0000016998,0.0000017059,0.0000016783, -0.0000016210,0.0000016319,0.0000016065,0.0000015073,0.0000014747, -0.0000014725,0.0000014755,0.0000015050,0.0000015529,0.0000015857, -0.0000015919,0.0000015895,0.0000015890,0.0000015925,0.0000015964, -0.0000015982,0.0000015965,0.0000015922,0.0000015908,0.0000015972, -0.0000016082,0.0000016179,0.0000016215,0.0000016189,0.0000016173, -0.0000016164,0.0000016159,0.0000016184,0.0000016241,0.0000016210, -0.0000016184,0.0000016365,0.0000016603,0.0000016560,0.0000016421, -0.0000016362,0.0000016422,0.0000016437,0.0000016381,0.0000016479, -0.0000016902,0.0000017321,0.0000017440,0.0000017365,0.0000017066, -0.0000016660,0.0000016440,0.0000016449,0.0000016537,0.0000016630, -0.0000016722,0.0000016745,0.0000016631,0.0000016480,0.0000016466, -0.0000016604,0.0000016712,0.0000016739,0.0000016857,0.0000017011, -0.0000016759,0.0000016400,0.0000016381,0.0000016543,0.0000016604, -0.0000016492,0.0000016355,0.0000015914,0.0000015158,0.0000014785, -0.0000014730,0.0000014640,0.0000014612,0.0000014646,0.0000014679, -0.0000014815,0.0000015018,0.0000015143,0.0000015164,0.0000015092, -0.0000015019,0.0000014934,0.0000014894,0.0000014885,0.0000014903, -0.0000014934,0.0000015000,0.0000015079,0.0000015170,0.0000015268, -0.0000015340,0.0000015362,0.0000015334,0.0000015307,0.0000015261, -0.0000015134,0.0000014905,0.0000014661,0.0000014550,0.0000014562, -0.0000014619,0.0000014631,0.0000014552,0.0000014557,0.0000014924, -0.0000015439,0.0000015756,0.0000016028,0.0000016250,0.0000016244, -0.0000016133,0.0000016409,0.0000016771,0.0000016554,0.0000016288, -0.0000016495,0.0000016656,0.0000016679,0.0000016421,0.0000015989, -0.0000015766,0.0000015025,0.0000014697,0.0000014769,0.0000014874, -0.0000015441,0.0000016612,0.0000017000,0.0000017114,0.0000016847, -0.0000016268,0.0000016269,0.0000016125,0.0000015184,0.0000014750, -0.0000014734,0.0000014743,0.0000014953,0.0000015387,0.0000015783, -0.0000015922,0.0000015917,0.0000015907,0.0000015935,0.0000015969, -0.0000015993,0.0000016001,0.0000015987,0.0000015975,0.0000015980, -0.0000016016,0.0000016067,0.0000016107,0.0000016130,0.0000016141, -0.0000016154,0.0000016167,0.0000016179,0.0000016271,0.0000016473, -0.0000016601,0.0000016462,0.0000016338,0.0000016313,0.0000016378, -0.0000016427,0.0000016385,0.0000016468,0.0000016872,0.0000017301, -0.0000017445,0.0000017388,0.0000017112,0.0000016705,0.0000016450, -0.0000016428,0.0000016510,0.0000016607,0.0000016704,0.0000016753, -0.0000016686,0.0000016540,0.0000016498,0.0000016611,0.0000016723, -0.0000016735,0.0000016807,0.0000016998,0.0000016845,0.0000016425, -0.0000016315,0.0000016489,0.0000016592,0.0000016503,0.0000016376, -0.0000016062,0.0000015351,0.0000014834,0.0000014736,0.0000014691, -0.0000014648,0.0000014660,0.0000014669,0.0000014723,0.0000014851, -0.0000015016,0.0000015121,0.0000015176,0.0000015196,0.0000015179, -0.0000015202,0.0000015212,0.0000015253,0.0000015297,0.0000015344, -0.0000015374,0.0000015387,0.0000015380,0.0000015358,0.0000015299, -0.0000015184,0.0000014987,0.0000014749,0.0000014589,0.0000014539, -0.0000014559,0.0000014604,0.0000014594,0.0000014538,0.0000014628, -0.0000015069,0.0000015546,0.0000015828,0.0000016094,0.0000016277, -0.0000016238,0.0000016144,0.0000016464,0.0000016869,0.0000016667, -0.0000016299,0.0000016442,0.0000016643,0.0000016678,0.0000016544, -0.0000016032,0.0000015851,0.0000015159,0.0000014728,0.0000014808, -0.0000014912,0.0000015378,0.0000016564,0.0000017002,0.0000017147, -0.0000016932,0.0000016355,0.0000016215,0.0000016177,0.0000015340, -0.0000014780,0.0000014744,0.0000014740,0.0000014856,0.0000015206, -0.0000015629,0.0000015878,0.0000015934,0.0000015943,0.0000015957, -0.0000015984,0.0000016014,0.0000016036,0.0000016044,0.0000016052, -0.0000016062,0.0000016076,0.0000016104,0.0000016131,0.0000016162, -0.0000016204,0.0000016283,0.0000016408,0.0000016504,0.0000016501, -0.0000016335,0.0000016247,0.0000016227,0.0000016313,0.0000016424, -0.0000016362,0.0000016456,0.0000016865,0.0000017290,0.0000017434, -0.0000017406,0.0000017153,0.0000016745,0.0000016458,0.0000016408, -0.0000016483,0.0000016586,0.0000016684,0.0000016756,0.0000016729, -0.0000016602,0.0000016536,0.0000016618,0.0000016737,0.0000016735, -0.0000016767,0.0000016971,0.0000016938,0.0000016497,0.0000016286, -0.0000016425,0.0000016576,0.0000016521,0.0000016389,0.0000016183, -0.0000015576,0.0000014943,0.0000014741,0.0000014729,0.0000014686, -0.0000014665,0.0000014672,0.0000014680,0.0000014727,0.0000014831, -0.0000014959,0.0000015063,0.0000015128,0.0000015207,0.0000015246, -0.0000015293,0.0000015318,0.0000015337,0.0000015339,0.0000015322, -0.0000015267,0.0000015153,0.0000014980,0.0000014781,0.0000014614, -0.0000014548,0.0000014545,0.0000014570,0.0000014587,0.0000014553, -0.0000014542,0.0000014725,0.0000015204,0.0000015633,0.0000015895, -0.0000016150,0.0000016293,0.0000016240,0.0000016183,0.0000016517, -0.0000016947,0.0000016773,0.0000016334,0.0000016385,0.0000016622, -0.0000016675,0.0000016645,0.0000016111,0.0000015890,0.0000015310, -0.0000014766,0.0000014833,0.0000014949,0.0000015322,0.0000016479, -0.0000016995,0.0000017149,0.0000017030,0.0000016461,0.0000016198, -0.0000016225,0.0000015530,0.0000014837,0.0000014756,0.0000014741, -0.0000014769,0.0000015010,0.0000015407,0.0000015741,0.0000015911, -0.0000015956,0.0000015988,0.0000016008,0.0000016045,0.0000016088, -0.0000016127,0.0000016157,0.0000016189,0.0000016222,0.0000016269, -0.0000016325,0.0000016386,0.0000016436,0.0000016456,0.0000016356, -0.0000016208,0.0000016125,0.0000016101,0.0000016229,0.0000016412, -0.0000016342,0.0000016449,0.0000016872,0.0000017289,0.0000017436, -0.0000017421,0.0000017190,0.0000016779,0.0000016467,0.0000016398, -0.0000016458,0.0000016569,0.0000016666,0.0000016745,0.0000016758, -0.0000016662,0.0000016574,0.0000016628,0.0000016750,0.0000016747, -0.0000016750,0.0000016932,0.0000017006,0.0000016615,0.0000016291, -0.0000016366,0.0000016538,0.0000016534,0.0000016406,0.0000016271, -0.0000015809,0.0000015137,0.0000014785,0.0000014743,0.0000014726, -0.0000014690,0.0000014673,0.0000014670,0.0000014680,0.0000014715, -0.0000014769,0.0000014831,0.0000014891,0.0000014936,0.0000014970, -0.0000014991,0.0000014977,0.0000014935,0.0000014863,0.0000014759, -0.0000014651,0.0000014567,0.0000014553,0.0000014552,0.0000014561, -0.0000014583,0.0000014578,0.0000014529,0.0000014546,0.0000014839, -0.0000015330,0.0000015709,0.0000015957,0.0000016195,0.0000016298, -0.0000016221,0.0000016207,0.0000016558,0.0000016995,0.0000016864, -0.0000016375,0.0000016336,0.0000016595,0.0000016673,0.0000016702, -0.0000016228,0.0000015901,0.0000015465,0.0000014826,0.0000014841, -0.0000014988,0.0000015274,0.0000016354,0.0000016975,0.0000017156, -0.0000017113,0.0000016593,0.0000016199,0.0000016244,0.0000015748, -0.0000014957,0.0000014746,0.0000014736,0.0000014729,0.0000014849, -0.0000015152,0.0000015504,0.0000015771,0.0000015925,0.0000015993, -0.0000016021,0.0000016050,0.0000016098,0.0000016163,0.0000016220, -0.0000016252,0.0000016314,0.0000016339,0.0000016334,0.0000016275, -0.0000016157,0.0000016037,0.0000015954,0.0000015970,0.0000016153, -0.0000016397,0.0000016311,0.0000016445,0.0000016882,0.0000017291, -0.0000017434,0.0000017432,0.0000017217,0.0000016805,0.0000016479, -0.0000016383,0.0000016436,0.0000016553,0.0000016649,0.0000016732, -0.0000016771,0.0000016716,0.0000016623,0.0000016644,0.0000016756, -0.0000016765,0.0000016732,0.0000016874,0.0000017048,0.0000016736, -0.0000016278,0.0000016269,0.0000016486,0.0000016537,0.0000016433, -0.0000016323,0.0000016014,0.0000015393,0.0000014898,0.0000014755, -0.0000014743,0.0000014712,0.0000014683,0.0000014672,0.0000014680, -0.0000014683,0.0000014686,0.0000014687,0.0000014692,0.0000014690, -0.0000014685,0.0000014668,0.0000014642,0.0000014597,0.0000014566, -0.0000014552,0.0000014550,0.0000014556,0.0000014576,0.0000014589, -0.0000014564,0.0000014539,0.0000014613,0.0000014978,0.0000015454, -0.0000015783,0.0000016021,0.0000016229,0.0000016287,0.0000016211, -0.0000016210,0.0000016591,0.0000017022,0.0000016936,0.0000016431, -0.0000016325,0.0000016566,0.0000016674,0.0000016732,0.0000016364, -0.0000015910,0.0000015600,0.0000014900,0.0000014850,0.0000015023, -0.0000015242,0.0000016201,0.0000016936,0.0000017151,0.0000017200, -0.0000016751,0.0000016234,0.0000016230,0.0000015950,0.0000015168, -0.0000014755,0.0000014732,0.0000014722,0.0000014754,0.0000014927, -0.0000015209,0.0000015498,0.0000015731,0.0000015878,0.0000015969, -0.0000016046,0.0000016074,0.0000016097,0.0000016116,0.0000016113, -0.0000016077,0.0000016000,0.0000015887,0.0000015785,0.0000015732, -0.0000015855,0.0000016123,0.0000016399,0.0000016299,0.0000016453, -0.0000016895,0.0000017297,0.0000017429,0.0000017432,0.0000017232, -0.0000016819,0.0000016493,0.0000016374,0.0000016414,0.0000016533, -0.0000016633,0.0000016714,0.0000016778,0.0000016760,0.0000016674, -0.0000016667,0.0000016762,0.0000016786,0.0000016738,0.0000016819, -0.0000017050,0.0000016872,0.0000016365,0.0000016239,0.0000016423, -0.0000016543,0.0000016466,0.0000016354,0.0000016169,0.0000015682, -0.0000015110,0.0000014803,0.0000014743,0.0000014726,0.0000014701, -0.0000014690,0.0000014688,0.0000014683,0.0000014670,0.0000014655, -0.0000014635,0.0000014617,0.0000014598,0.0000014589,0.0000014578, -0.0000014565,0.0000014559,0.0000014571,0.0000014593,0.0000014594, -0.0000014557,0.0000014546,0.0000014727,0.0000015143,0.0000015577, -0.0000015858,0.0000016078,0.0000016254,0.0000016283,0.0000016214, -0.0000016235,0.0000016636,0.0000017034,0.0000016989,0.0000016496, -0.0000016309,0.0000016542,0.0000016681,0.0000016759,0.0000016508, -0.0000015942,0.0000015706,0.0000015015,0.0000014843,0.0000015058, -0.0000015248,0.0000016044,0.0000016862,0.0000017112,0.0000017228, -0.0000016922,0.0000016323,0.0000016165,0.0000016127,0.0000015503, -0.0000014860,0.0000014716,0.0000014711,0.0000014709,0.0000014777, -0.0000014935,0.0000015149,0.0000015353,0.0000015498,0.0000015581, -0.0000015641,0.0000015681,0.0000015691,0.0000015661,0.0000015596, -0.0000015532,0.0000015513,0.0000015583,0.0000015791,0.0000016133, -0.0000016393,0.0000016293,0.0000016475,0.0000016930,0.0000017314, -0.0000017426,0.0000017427,0.0000017233,0.0000016822,0.0000016503, -0.0000016363,0.0000016387,0.0000016509,0.0000016617,0.0000016692, -0.0000016768,0.0000016787,0.0000016725,0.0000016702,0.0000016774, -0.0000016806,0.0000016758,0.0000016778,0.0000017019,0.0000016973, -0.0000016473,0.0000016200,0.0000016353,0.0000016521,0.0000016492, -0.0000016378,0.0000016265,0.0000015948,0.0000015409,0.0000014959, -0.0000014764,0.0000014729,0.0000014715,0.0000014712,0.0000014703, -0.0000014690,0.0000014673,0.0000014651,0.0000014634,0.0000014622, -0.0000014613,0.0000014612,0.0000014613,0.0000014618,0.0000014616, -0.0000014588,0.0000014566,0.0000014617,0.0000014890,0.0000015326, -0.0000015699,0.0000015937,0.0000016131,0.0000016263,0.0000016265, -0.0000016208,0.0000016275,0.0000016682,0.0000017048,0.0000017028, -0.0000016567,0.0000016309,0.0000016519,0.0000016694,0.0000016784, -0.0000016642,0.0000016009,0.0000015783,0.0000015182,0.0000014856, -0.0000015091,0.0000015298,0.0000015905,0.0000016750,0.0000017048, -0.0000017226,0.0000017081,0.0000016472,0.0000016140,0.0000016191, -0.0000015905,0.0000015250,0.0000014838,0.0000014705,0.0000014708, -0.0000014719,0.0000014758,0.0000014836,0.0000014936,0.0000015027, -0.0000015099,0.0000015136,0.0000015157,0.0000015176,0.0000015214, -0.0000015328,0.0000015524,0.0000015835,0.0000016182,0.0000016358, -0.0000016268,0.0000016496,0.0000016974,0.0000017342,0.0000017435, -0.0000017432,0.0000017227,0.0000016818,0.0000016514,0.0000016351, -0.0000016352,0.0000016483,0.0000016601,0.0000016671,0.0000016748, -0.0000016794,0.0000016766,0.0000016741,0.0000016790,0.0000016824, -0.0000016786,0.0000016773,0.0000016972,0.0000017035,0.0000016634, -0.0000016228,0.0000016280,0.0000016468,0.0000016498,0.0000016407, -0.0000016317,0.0000016140,0.0000015741,0.0000015250,0.0000014902, -0.0000014755,0.0000014725,0.0000014716,0.0000014702,0.0000014681, -0.0000014663,0.0000014650,0.0000014647,0.0000014641,0.0000014638, -0.0000014615,0.0000014578,0.0000014555,0.0000014569,0.0000014740, -0.0000015100,0.0000015511,0.0000015814,0.0000016014,0.0000016178, -0.0000016257,0.0000016234,0.0000016192,0.0000016294,0.0000016716, -0.0000017067,0.0000017061,0.0000016635,0.0000016325,0.0000016505, -0.0000016713,0.0000016808,0.0000016750,0.0000016109,0.0000015836, -0.0000015367,0.0000014899,0.0000015117,0.0000015345,0.0000015799, -0.0000016612,0.0000016976,0.0000017207,0.0000017199,0.0000016691, -0.0000016166,0.0000016117,0.0000016099,0.0000015702,0.0000015224, -0.0000014932,0.0000014800,0.0000014731,0.0000014705,0.0000014726, -0.0000014728,0.0000014734,0.0000014776,0.0000014929,0.0000015065, -0.0000015302,0.0000015602,0.0000015957,0.0000016233,0.0000016308, -0.0000016258,0.0000016537,0.0000017025,0.0000017362,0.0000017434, -0.0000017436,0.0000017211,0.0000016804,0.0000016523,0.0000016349, -0.0000016325,0.0000016455,0.0000016585,0.0000016655,0.0000016726, -0.0000016788,0.0000016789,0.0000016769,0.0000016806,0.0000016842, -0.0000016827,0.0000016777,0.0000016930,0.0000017087,0.0000016804, -0.0000016328,0.0000016234,0.0000016400,0.0000016482,0.0000016438, -0.0000016352,0.0000016250,0.0000016013,0.0000015617,0.0000015215, -0.0000014940,0.0000014796,0.0000014722,0.0000014685,0.0000014660, -0.0000014633,0.0000014594,0.0000014568,0.0000014533,0.0000014527, -0.0000014566,0.0000014708,0.0000014986,0.0000015356,0.0000015692, -0.0000015918,0.0000016083,0.0000016217,0.0000016246,0.0000016201, -0.0000016167,0.0000016308,0.0000016745,0.0000017080,0.0000017082, -0.0000016694,0.0000016345,0.0000016496,0.0000016738,0.0000016830, -0.0000016829,0.0000016229,0.0000015878,0.0000015535,0.0000014971, -0.0000015130,0.0000015406,0.0000015736,0.0000016461,0.0000016885, -0.0000017138,0.0000017251,0.0000016963,0.0000016361,0.0000016085, -0.0000016096,0.0000015990,0.0000015684,0.0000015392,0.0000015168, -0.0000014998,0.0000014897,0.0000014842,0.0000014845,0.0000015013, -0.0000015245,0.0000015525,0.0000015815,0.0000016080,0.0000016231, -0.0000016272,0.0000016296,0.0000016623,0.0000017093,0.0000017374, -0.0000017433,0.0000017432,0.0000017171,0.0000016768,0.0000016519, -0.0000016351,0.0000016309,0.0000016426,0.0000016571,0.0000016645, -0.0000016710,0.0000016775,0.0000016797,0.0000016793,0.0000016823, -0.0000016863,0.0000016880,0.0000016810,0.0000016893,0.0000017098, -0.0000016968,0.0000016472,0.0000016223,0.0000016324,0.0000016446, -0.0000016452,0.0000016391,0.0000016309,0.0000016182,0.0000015945, -0.0000015624,0.0000015319,0.0000015092,0.0000014937,0.0000014838, -0.0000014775,0.0000014734,0.0000014731,0.0000014764,0.0000014881, -0.0000015084,0.0000015358,0.0000015640,0.0000015854,0.0000016009, -0.0000016138,0.0000016227,0.0000016232,0.0000016170,0.0000016149, -0.0000016329,0.0000016774,0.0000017085,0.0000017086,0.0000016739, -0.0000016370,0.0000016491,0.0000016761,0.0000016853,0.0000016867, -0.0000016355,0.0000015916,0.0000015667,0.0000015068,0.0000015136, -0.0000015464,0.0000015714,0.0000016314,0.0000016774,0.0000017023, -0.0000017259,0.0000017188,0.0000016698,0.0000016234,0.0000016123, -0.0000016102,0.0000016026,0.0000015901,0.0000015766,0.0000015649, -0.0000015618,0.0000015689,0.0000015763,0.0000015875,0.0000016032, -0.0000016154,0.0000016201,0.0000016243,0.0000016383,0.0000016755, -0.0000017174,0.0000017389,0.0000017430,0.0000017402,0.0000017106, -0.0000016718,0.0000016508,0.0000016357,0.0000016290,0.0000016403, -0.0000016562,0.0000016644,0.0000016704,0.0000016762,0.0000016795, -0.0000016810,0.0000016846,0.0000016893,0.0000016943,0.0000016864, -0.0000016869,0.0000017084,0.0000017095,0.0000016642,0.0000016249, -0.0000016242,0.0000016383,0.0000016446,0.0000016422,0.0000016355, -0.0000016273,0.0000016148,0.0000015963,0.0000015750,0.0000015564, -0.0000015425,0.0000015339,0.0000015307,0.0000015336,0.0000015429, -0.0000015569,0.0000015727,0.0000015867,0.0000015979,0.0000016083, -0.0000016187,0.0000016218,0.0000016191,0.0000016125,0.0000016124, -0.0000016348,0.0000016808,0.0000017101,0.0000017090,0.0000016771, -0.0000016405,0.0000016492,0.0000016780,0.0000016874,0.0000016887, -0.0000016476,0.0000015961,0.0000015761,0.0000015195,0.0000015160, -0.0000015502,0.0000015718,0.0000016182,0.0000016652,0.0000016895, -0.0000017190,0.0000017259,0.0000017028,0.0000016584,0.0000016291, -0.0000016198,0.0000016191,0.0000016190,0.0000016184,0.0000016144, -0.0000016144,0.0000016111,0.0000016095,0.0000016143,0.0000016193, -0.0000016293,0.0000016528,0.0000016904,0.0000017249,0.0000017409, -0.0000017434,0.0000017347,0.0000017017,0.0000016663,0.0000016499, -0.0000016367,0.0000016276,0.0000016384,0.0000016562,0.0000016651, -0.0000016708,0.0000016756,0.0000016788,0.0000016820,0.0000016873, -0.0000016934,0.0000017001,0.0000016930,0.0000016883,0.0000017042, -0.0000017144,0.0000016831,0.0000016348,0.0000016216,0.0000016296, -0.0000016398,0.0000016424,0.0000016400,0.0000016333,0.0000016251, -0.0000016156,0.0000016051,0.0000015956,0.0000015886,0.0000015853, -0.0000015855,0.0000015889,0.0000015940,0.0000016000,0.0000016079, -0.0000016161,0.0000016219,0.0000016214,0.0000016140,0.0000016076, -0.0000016105,0.0000016379,0.0000016848,0.0000017119,0.0000017097, -0.0000016800,0.0000016445,0.0000016503,0.0000016795,0.0000016892, -0.0000016903,0.0000016582,0.0000016020,0.0000015821,0.0000015333, -0.0000015183,0.0000015514,0.0000015726,0.0000016066,0.0000016525, -0.0000016759,0.0000017040,0.0000017292,0.0000017262,0.0000016977, -0.0000016656,0.0000016436,0.0000016316,0.0000016238,0.0000016185, -0.0000016152,0.0000016145,0.0000016192,0.0000016299,0.0000016483, -0.0000016746,0.0000017065,0.0000017315,0.0000017416,0.0000017417, -0.0000017264,0.0000016907,0.0000016608,0.0000016493,0.0000016374, -0.0000016271,0.0000016364,0.0000016567,0.0000016669,0.0000016718, -0.0000016757,0.0000016779,0.0000016821,0.0000016899,0.0000016981, -0.0000017049,0.0000016995,0.0000016913,0.0000017002,0.0000017147, -0.0000016984,0.0000016513,0.0000016224,0.0000016217,0.0000016313, -0.0000016391,0.0000016409,0.0000016374,0.0000016321,0.0000016261, -0.0000016209,0.0000016164,0.0000016132,0.0000016116,0.0000016121, -0.0000016148,0.0000016192,0.0000016216,0.0000016225,0.0000016167, -0.0000016087,0.0000016036,0.0000016104,0.0000016423,0.0000016891, -0.0000017122,0.0000017091,0.0000016822,0.0000016485,0.0000016519, -0.0000016809,0.0000016908,0.0000016916,0.0000016667,0.0000016090, -0.0000015850,0.0000015462,0.0000015229,0.0000015507,0.0000015724, -0.0000015964,0.0000016398,0.0000016644,0.0000016858,0.0000017167, -0.0000017312,0.0000017254,0.0000017071,0.0000016859,0.0000016684, -0.0000016581,0.0000016550,0.0000016573,0.0000016657,0.0000016803, -0.0000017016,0.0000017224,0.0000017368,0.0000017399,0.0000017353, -0.0000017133,0.0000016786,0.0000016553,0.0000016479,0.0000016373, -0.0000016271,0.0000016342,0.0000016564,0.0000016688,0.0000016733, -0.0000016767,0.0000016776,0.0000016811,0.0000016907,0.0000017015, -0.0000017073,0.0000017041,0.0000016953,0.0000016975,0.0000017133, -0.0000017111,0.0000016701,0.0000016274,0.0000016167,0.0000016204, -0.0000016296,0.0000016354,0.0000016371,0.0000016340,0.0000016316, -0.0000016305,0.0000016273,0.0000016268,0.0000016250,0.0000016248, -0.0000016229,0.0000016172,0.0000016090,0.0000016013,0.0000016012, -0.0000016121,0.0000016474,0.0000016925,0.0000017126,0.0000017084, -0.0000016840,0.0000016520,0.0000016533,0.0000016818,0.0000016923, -0.0000016929,0.0000016732,0.0000016167,0.0000015863,0.0000015565, -0.0000015301,0.0000015499,0.0000015707,0.0000015872,0.0000016268, -0.0000016569,0.0000016717,0.0000016971,0.0000017236,0.0000017333, -0.0000017319,0.0000017242,0.0000017183,0.0000017143,0.0000017135, -0.0000017170,0.0000017237,0.0000017312,0.0000017354,0.0000017347, -0.0000017224,0.0000016968,0.0000016669,0.0000016511,0.0000016456, -0.0000016357,0.0000016271,0.0000016312,0.0000016545,0.0000016699, -0.0000016745,0.0000016782,0.0000016785,0.0000016798,0.0000016892, -0.0000017019,0.0000017066,0.0000017056,0.0000016989,0.0000016975, -0.0000017095,0.0000017150,0.0000016900,0.0000016420,0.0000016141, -0.0000016097,0.0000016154,0.0000016224,0.0000016266,0.0000016278, -0.0000016285,0.0000016269,0.0000016249,0.0000016208,0.0000016147, -0.0000016064,0.0000015982,0.0000015945,0.0000015973,0.0000016149, -0.0000016537,0.0000016965,0.0000017131,0.0000017083,0.0000016853, -0.0000016544,0.0000016539,0.0000016819,0.0000016935,0.0000016934, -0.0000016781,0.0000016248,0.0000015872,0.0000015640,0.0000015394, -0.0000015498,0.0000015677,0.0000015789,0.0000016121,0.0000016484, -0.0000016637,0.0000016787,0.0000017020,0.0000017203,0.0000017296, -0.0000017333,0.0000017345,0.0000017339,0.0000017310,0.0000017295, -0.0000017267,0.0000017188,0.0000017014,0.0000016775,0.0000016571, -0.0000016488,0.0000016439,0.0000016335,0.0000016260,0.0000016276, -0.0000016504,0.0000016699,0.0000016751,0.0000016791,0.0000016799, -0.0000016789,0.0000016856,0.0000016989,0.0000017015,0.0000017042, -0.0000017011,0.0000016980,0.0000017057,0.0000017173,0.0000017076, -0.0000016663,0.0000016236,0.0000016035,0.0000016002,0.0000016033, -0.0000016064,0.0000016081,0.0000016075,0.0000016050,0.0000016005, -0.0000015941,0.0000015886,0.0000015895,0.0000015973,0.0000016209, -0.0000016617,0.0000017000,0.0000017123,0.0000017082,0.0000016863, -0.0000016552,0.0000016529,0.0000016811,0.0000016941,0.0000016938, -0.0000016819,0.0000016329,0.0000015889,0.0000015694,0.0000015487, -0.0000015506,0.0000015642,0.0000015725,0.0000015970,0.0000016343, -0.0000016554,0.0000016644,0.0000016771,0.0000016920,0.0000017044, -0.0000017117,0.0000017124,0.0000017085,0.0000017016,0.0000016907, -0.0000016760,0.0000016600,0.0000016494,0.0000016464,0.0000016416, -0.0000016313,0.0000016250,0.0000016260,0.0000016445,0.0000016684, -0.0000016755,0.0000016790,0.0000016813,0.0000016791,0.0000016813, -0.0000016920,0.0000016920,0.0000016982,0.0000017006,0.0000016993, -0.0000017028,0.0000017149,0.0000017171,0.0000016912,0.0000016483, -0.0000016136,0.0000015958,0.0000015913,0.0000015894,0.0000015874, -0.0000015856,0.0000015840,0.0000015846,0.0000015890,0.0000016035, -0.0000016336,0.0000016736,0.0000017052,0.0000017140,0.0000017084, -0.0000016869,0.0000016554,0.0000016513,0.0000016797,0.0000016942, -0.0000016935,0.0000016847,0.0000016408,0.0000015920,0.0000015729, -0.0000015557,0.0000015518,0.0000015605,0.0000015679,0.0000015849, -0.0000016179,0.0000016439,0.0000016541,0.0000016589,0.0000016637, -0.0000016671,0.0000016677,0.0000016650,0.0000016606,0.0000016541, -0.0000016474,0.0000016441,0.0000016425,0.0000016367,0.0000016279, -0.0000016234,0.0000016244,0.0000016382,0.0000016648,0.0000016756, -0.0000016783,0.0000016819,0.0000016806,0.0000016793,0.0000016840, -0.0000016819,0.0000016885,0.0000016960,0.0000016990,0.0000017008, -0.0000017097,0.0000017185,0.0000017124,0.0000016840,0.0000016470, -0.0000016181,0.0000016033,0.0000015958,0.0000015927,0.0000015952, -0.0000016054,0.0000016259,0.0000016569,0.0000016915,0.0000017111, -0.0000017136,0.0000017075,0.0000016860,0.0000016551,0.0000016501, -0.0000016783,0.0000016944,0.0000016926,0.0000016857,0.0000016486, -0.0000015967,0.0000015752,0.0000015621,0.0000015537,0.0000015568, -0.0000015637,0.0000015761,0.0000015993,0.0000016244,0.0000016392, -0.0000016449,0.0000016460,0.0000016454,0.0000016441,0.0000016422, -0.0000016399,0.0000016378,0.0000016351,0.0000016296,0.0000016237, -0.0000016213,0.0000016217,0.0000016322,0.0000016592,0.0000016749, -0.0000016772,0.0000016811,0.0000016823,0.0000016798,0.0000016788, -0.0000016760,0.0000016789,0.0000016878,0.0000016956,0.0000016991, -0.0000017048,0.0000017145,0.0000017191,0.0000017125,0.0000016915, -0.0000016692,0.0000016552,0.0000016506,0.0000016561,0.0000016704, -0.0000016895,0.0000017081,0.0000017155,0.0000017146,0.0000017057, -0.0000016844,0.0000016550,0.0000016500,0.0000016774,0.0000016945, -0.0000016917,0.0000016855,0.0000016560,0.0000016033,0.0000015776, -0.0000015680,0.0000015572,0.0000015550,0.0000015607,0.0000015702, -0.0000015837,0.0000016014,0.0000016160,0.0000016247,0.0000016282, -0.0000016284,0.0000016270,0.0000016256,0.0000016235,0.0000016210, -0.0000016194,0.0000016191,0.0000016193,0.0000016268,0.0000016521, -0.0000016734,0.0000016764,0.0000016790,0.0000016831,0.0000016819, -0.0000016781,0.0000016752,0.0000016726,0.0000016780,0.0000016879, -0.0000016954,0.0000017010,0.0000017082,0.0000017161,0.0000017200, -0.0000017188,0.0000017100,0.0000017066,0.0000017095,0.0000017142, -0.0000017140,0.0000017160,0.0000017119,0.0000017020,0.0000016807, -0.0000016542,0.0000016509,0.0000016772,0.0000016940,0.0000016908, -0.0000016849,0.0000016632,0.0000016128,0.0000015812,0.0000015721, -0.0000015619,0.0000015569,0.0000015615,0.0000015691,0.0000015766, -0.0000015856,0.0000015939,0.0000015997,0.0000016031,0.0000016060, -0.0000016094,0.0000016124,0.0000016152,0.0000016163,0.0000016163, -0.0000016217,0.0000016438,0.0000016701,0.0000016766,0.0000016771, -0.0000016822,0.0000016844,0.0000016810,0.0000016788,0.0000016712, -0.0000016709,0.0000016774,0.0000016874,0.0000016964,0.0000017028, -0.0000017087,0.0000017141,0.0000017165,0.0000017156,0.0000017148, -0.0000017145,0.0000017117,0.0000017063,0.0000016951,0.0000016741, -0.0000016507,0.0000016500,0.0000016765,0.0000016935,0.0000016901, -0.0000016839,0.0000016684,0.0000016245,0.0000015871,0.0000015750, -0.0000015682,0.0000015643,0.0000015667,0.0000015731,0.0000015792, -0.0000015846,0.0000015890,0.0000015943,0.0000016001,0.0000016054, -0.0000016103,0.0000016123,0.0000016122,0.0000016161,0.0000016358, -0.0000016647,0.0000016770,0.0000016770,0.0000016801,0.0000016854, -0.0000016851,0.0000016846,0.0000016750,0.0000016686,0.0000016679, -0.0000016742,0.0000016856,0.0000016951,0.0000017007,0.0000017044, -0.0000017065,0.0000017062,0.0000017041,0.0000016976,0.0000016843, -0.0000016645,0.0000016493,0.0000016527,0.0000016772,0.0000016938, -0.0000016900,0.0000016827,0.0000016713,0.0000016376,0.0000015966, -0.0000015783,0.0000015736,0.0000015726,0.0000015745,0.0000015793, -0.0000015854,0.0000015916,0.0000015972,0.0000016020,0.0000016050, -0.0000016069,0.0000016076,0.0000016115,0.0000016295,0.0000016584, -0.0000016768,0.0000016774,0.0000016782,0.0000016841,0.0000016877, -0.0000016892,0.0000016825,0.0000016712,0.0000016629,0.0000016612, -0.0000016672,0.0000016755,0.0000016821,0.0000016843,0.0000016827, -0.0000016779,0.0000016669,0.0000016527,0.0000016460,0.0000016551, -0.0000016785,0.0000016933,0.0000016899,0.0000016816,0.0000016737, -0.0000016501,0.0000016107,0.0000015853,0.0000015772,0.0000015769, -0.0000015790,0.0000015842,0.0000015903,0.0000015956,0.0000015990, -0.0000016002,0.0000016015,0.0000016071,0.0000016244,0.0000016522, -0.0000016741,0.0000016781,0.0000016773,0.0000016812,0.0000016876, -0.0000016901,0.0000016887,0.0000016799,0.0000016678,0.0000016587, -0.0000016533,0.0000016510,0.0000016528,0.0000016502,0.0000016452, -0.0000016440,0.0000016474,0.0000016619,0.0000016825,0.0000016929, -0.0000016883,0.0000016803,0.0000016751,0.0000016604,0.0000016282, -0.0000015990,0.0000015831,0.0000015796,0.0000015826,0.0000015860, -0.0000015902,0.0000015935,0.0000015978,0.0000016043,0.0000016219, -0.0000016485,0.0000016709,0.0000016781,0.0000016773,0.0000016782, -0.0000016844,0.0000016872,0.0000016910,0.0000016893,0.0000016814, -0.0000016703,0.0000016597,0.0000016538,0.0000016521,0.0000016530, -0.0000016614,0.0000016740,0.0000016881,0.0000016936,0.0000016874, -0.0000016788,0.0000016749,0.0000016681,0.0000016472,0.0000016224, -0.0000016033,0.0000015941,0.0000015931,0.0000015947,0.0000016002, -0.0000016103,0.0000016270,0.0000016494,0.0000016692,0.0000016777, -0.0000016773,0.0000016763,0.0000016800,0.0000016825,0.0000016892, -0.0000016920,0.0000016917,0.0000016889,0.0000016850,0.0000016830, -0.0000016853,0.0000016900,0.0000016899,0.0000016912,0.0000016854, -0.0000016783,0.0000016739,0.0000016723,0.0000016627,0.0000016489, -0.0000016361,0.0000016282,0.0000016271,0.0000016329,0.0000016439, -0.0000016580,0.0000016708,0.0000016763,0.0000016765,0.0000016753, -0.0000016766,0.0000016780,0.0000016830,0.0000016876,0.0000016903, -0.0000016920,0.0000016924,0.0000016919,0.0000016901,0.0000016867, -0.0000016816,0.0000016757,0.0000016733,0.0000016734,0.0000016720, -0.0000016677,0.0000016647,0.0000016645,0.0000016663,0.0000016700, -0.0000016734,0.0000016752,0.0000016753,0.0000016747,0.0000016749, -0.0000016751,0.0000016766,0.0000016782,0.0000016794,0.0000016797, -0.0000016793,0.0000016781,0.0000016763,0.0000016744,0.0000016733, -0.0000016729,0.0000016728,0.0000016729,0.0000016732,0.0000016734, -0.0000016736,0.0000016739,0.0000016739,0.0000016739,0.0000016742 +0.0000028036,0.0000028071,0.0000028152,0.0000028178,0.0000028148 }; static void usage(const char* prog) @@ -130900,17 +24783,17 @@ typedef enum { int main(int argc, char** argv) { - size_t values_len = sizeof(values)/sizeof(values[0]); /* 654400 */ + size_t values_len = sizeof(values)/sizeof(values[0]); const char* sample_filename = "gg_sfc_grib2"; - codes_handle* h = NULL; - size_t str_len = 0; + codes_handle* h = NULL; + size_t str_len = 0; PackingStage packing_stage; char* packing_type; char* outfile_name; if (argc != 4) usage(argv[0]); - packing_type = argv[1]; + packing_type = argv[1]; if (strcmp(argv[2], "packing_type_before_values")==0) packing_stage = PACKING_TYPE_BEFORE_VALUES; else if (strcmp(argv[2], "values_before_packing_type")==0) @@ -130930,7 +24813,7 @@ int main(int argc, char** argv) CODES_CHECK(codes_set_string(h, "packingType", packing_type, &str_len), 0); } - printf("Set values\n"); + printf("Set values. values_len=%lu\n", values_len); CODES_CHECK(codes_set_double_array(h, "values", values, values_len), 0); if (packing_stage == VALUES_BEFORE_PACKING_TYPE) { From 41690855cf20a43a885f872b40911612dcf51554 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 22 Jan 2021 15:39:25 +0000 Subject: [PATCH 251/683] PNG packing: add test --- src/grib_accessor_class_data_png_packing.c | 6 +--- tests/grib_packing_order.sh | 37 ++++++++++++++++++++-- 2 files changed, 35 insertions(+), 8 deletions(-) diff --git a/src/grib_accessor_class_data_png_packing.c b/src/grib_accessor_class_data_png_packing.c index cb7e2d04b..9cea480a6 100644 --- a/src/grib_accessor_class_data_png_packing.c +++ b/src/grib_accessor_class_data_png_packing.c @@ -400,14 +400,10 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) long scanning_mode; long list_defining_points; long number_of_data_points; - long nn = 0; self->dirty = 1; - err = grib_value_count(a, &nn); - n_vals = nn; - if (err) - return err; + n_vals = *len; if ((err = grib_get_long_internal(grib_handle_of_accessor(a), self->bits_per_value, &bits_per_value)) != GRIB_SUCCESS) return err; diff --git a/tests/grib_packing_order.sh b/tests/grib_packing_order.sh index 0cde5130d..7476bc5ff 100755 --- a/tests/grib_packing_order.sh +++ b/tests/grib_packing_order.sh @@ -15,19 +15,45 @@ label="grib_packing_order" temp=${label}".grib.tmp" temp_simple1=${label}".simple1.tmp" temp_simple2=${label}".simple2.tmp" +temp_second1=${label}".second1.tmp" +temp_second2=${label}".second2.tmp" temp_ccsds1=${label}".ccsds1.tmp" temp_ccsds2=${label}".ccsds2.tmp" temp_jpeg1=${label}".jpeg1.tmp" temp_jpeg2=${label}".jpeg2.tmp" +temp_png1=${label}".png1.tmp" +temp_png2=${label}".png2.tmp" # Simple Packing +# ---------------- $EXEC ${test_dir}/grib_packing_order grid_simple packing_type_before_values $temp_simple1 $EXEC ${test_dir}/grib_packing_order grid_simple values_before_packing_type $temp_simple2 grib_check_key_equals $temp_simple1 packingType grid_simple ${tools_dir}/grib_compare $temp_simple1 $temp_simple2 +# Second order Packing: TODO +# --------------------------- +$EXEC ${test_dir}/grib_packing_order grid_second_order packing_type_before_values $temp_second1 +$EXEC ${test_dir}/grib_packing_order grid_second_order values_before_packing_type $temp_second2 +grib_check_key_equals $temp_second1 packingType grid_second_order +#${tools_dir}/grib_compare $temp_second1 $temp_second2 +${tools_dir}/grib_compare -c data:n $temp_simple1 $temp_second1 +# $temp_second2 is still not correct + +# PNG Packing +# ------------- +if [ $HAVE_PNG -eq 1 ]; then + $EXEC ${test_dir}/grib_packing_order grid_png packing_type_before_values $temp_png1 + $EXEC ${test_dir}/grib_packing_order grid_png values_before_packing_type $temp_png2 + grib_check_key_equals $temp_png1 packingType grid_png + ${tools_dir}/grib_compare $temp_png1 $temp_png2 + + ${tools_dir}/grib_compare -c data:n $temp_simple1 $temp_png1 +fi + +# CCSDS (AEC) Packing +# -------------------- if [ $HAVE_AEC -eq 1 ]; then - # CCSDS (AEC) Packing $EXEC ${test_dir}/grib_packing_order grid_ccsds packing_type_before_values $temp_ccsds1 $EXEC ${test_dir}/grib_packing_order grid_ccsds values_before_packing_type $temp_ccsds2 grib_check_key_equals $temp_ccsds1 packingType grid_ccsds @@ -36,8 +62,9 @@ if [ $HAVE_AEC -eq 1 ]; then ${tools_dir}/grib_compare -c data:n $temp_simple1 $temp_ccsds1 fi +# JPEG Packing +# -------------- if [ $HAVE_JPEG -eq 1 ]; then - # JPEG Packing $EXEC ${test_dir}/grib_packing_order grid_jpeg packing_type_before_values $temp_jpeg1 $EXEC ${test_dir}/grib_packing_order grid_jpeg values_before_packing_type $temp_jpeg2 grib_check_key_equals $temp_jpeg1 packingType grid_jpeg @@ -48,4 +75,8 @@ fi # Clean up -rm -f $temp_simple1 $temp_simple2 $temp_ccsds1 $temp_ccsds2 $temp_jpeg1 $temp_jpeg2 +rm -f $temp_simple1 $temp_simple2 +rm -f $temp_second1 $temp_second2 +rm -f $temp_png1 $temp_png2 +rm -f $temp_ccsds1 $temp_ccsds2 +rm -f $temp_jpeg1 $temp_jpeg2 From 1263cb502947885199201ecdba90ae9e3aada1f2 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 22 Jan 2021 16:15:18 +0000 Subject: [PATCH 252/683] ECC-1193: GRIB CCSDS and PNG packing: setting packingType before values --- tests/grib_packing_order.c | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/tests/grib_packing_order.c b/tests/grib_packing_order.c index ea2acf637..0d420b5c3 100644 --- a/tests/grib_packing_order.c +++ b/tests/grib_packing_order.c @@ -1,5 +1,14 @@ -#include +/* + * (C) Copyright 2005- ECMWF. + * + * This software is licensed under the terms of the Apache Licence Version 2.0 + * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. + * + * In applying this licence, ECMWF does not waive the privileges and immunities granted to it by + * virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. + */ +#include #include "eccodes.h" /* Values taken from an actual IFS forecast run for paramId=133 (Specific humidity) */ @@ -24813,7 +24822,7 @@ int main(int argc, char** argv) CODES_CHECK(codes_set_string(h, "packingType", packing_type, &str_len), 0); } - printf("Set values. values_len=%lu\n", values_len); + printf("Set values. values_len=%lu\n", (unsigned long)values_len); CODES_CHECK(codes_set_double_array(h, "values", values, values_len), 0); if (packing_stage == VALUES_BEFORE_PACKING_TYPE) { From ca98daa34f6eecef5d785fc0131db64a757c5384 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 23 Jan 2021 16:11:44 +0000 Subject: [PATCH 253/683] Testing: script to generate a test wrapper --- tests/create_test.sh | 56 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100755 tests/create_test.sh diff --git a/tests/create_test.sh b/tests/create_test.sh new file mode 100755 index 000000000..67d509eb0 --- /dev/null +++ b/tests/create_test.sh @@ -0,0 +1,56 @@ +#!/bin/sh +# set -e +TEST_DIR=`dirname $0` + +if [ $# -ne 1 ]; then + echo "Usage: $0 title > $TEST_DIR/title.sh" + exit 1 +fi + +TEST_TITLE="" +if [ $# -eq 1 ]; then + TEST_TITLE="$1" +fi + +# Check label is unique +grep -q "label=\"$TEST_TITLE\"" $TEST_DIR/*.sh +if [ $? -eq 0 ]; then + echo "ERROR: Test label \"$TEST_TITLE\" seems to already exist!" + grep -l "label=\"$TEST_TITLE\"" $TEST_DIR/*.sh # Show results + exit 1 +fi + +cat <&2 +echo "Remember to chmod 755 the new test" >&2 +echo >&2 From ccfde4f01dad99dbc58c850e71ad8f765e7624f0 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 23 Jan 2021 16:17:24 +0000 Subject: [PATCH 254/683] Testing: Add BUFR too --- tests/create_test.sh | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/tests/create_test.sh b/tests/create_test.sh index 67d509eb0..fc5a3c10c 100755 --- a/tests/create_test.sh +++ b/tests/create_test.sh @@ -1,5 +1,5 @@ #!/bin/sh -# set -e + TEST_DIR=`dirname $0` if [ $# -ne 1 ]; then @@ -7,10 +7,7 @@ if [ $# -ne 1 ]; then exit 1 fi -TEST_TITLE="" -if [ $# -eq 1 ]; then - TEST_TITLE="$1" -fi +TEST_TITLE="$1" # Check label is unique grep -q "label=\"$TEST_TITLE\"" $TEST_DIR/*.sh @@ -35,9 +32,11 @@ cat < Date: Mon, 25 Jan 2021 13:59:03 +0000 Subject: [PATCH 255/683] ECC-539: refactoring --- tools/grib_tools.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/grib_tools.c b/tools/grib_tools.c index 371b1ddca..dadee4e02 100644 --- a/tools/grib_tools.c +++ b/tools/grib_tools.c @@ -1293,9 +1293,10 @@ static int filenames_equal(const char * f1, const char * f2) { char resolved1[8192] = {0,}; char resolved2[8192] = {0,}; + int eq = 0; realpath(f1, resolved1); realpath(f2, resolved2); - int eq = (strcmp(resolved1, resolved2)==0); + eq = (strcmp(resolved1, resolved2)==0); return eq; } From f6562a413d1d696d08e1ec5b5c4dce7d01d1bf81 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 25 Jan 2021 14:26:49 +0000 Subject: [PATCH 256/683] C API: make resolve_path available --- src/grib_api_prototypes.h | 1 + src/grib_context.c | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/grib_api_prototypes.h b/src/grib_api_prototypes.h index 7a35752ce..f821132be 100644 --- a/src/grib_api_prototypes.h +++ b/src/grib_api_prototypes.h @@ -961,6 +961,7 @@ long grib_get_api_version(void); void grib_print_api_version(FILE* out); const char* grib_get_package_name(void); grib_context* grib_context_get_default(void); +char* codes_resolve_path(grib_context* c, char* path); char* grib_context_full_defs_path(grib_context* c, const char* basename); char* grib_samples_path(const grib_context* c); char* grib_definition_path(const grib_context* c); diff --git a/src/grib_context.c b/src/grib_context.c index 79f249022..1b7ae1642 100644 --- a/src/grib_context.c +++ b/src/grib_context.c @@ -604,7 +604,8 @@ grib_context* grib_context_new(grib_context* parent) #endif /* function removed */ /* GRIB-235: Resolve path to expand symbolic links etc */ -static char* resolve_path(grib_context* c, char* path) +/* Note: return value is allocated. Client has to free */ +char* codes_resolve_path(grib_context* c, char* path) { char* result = NULL; #if defined(ECCODES_HAVE_REALPATH) @@ -651,7 +652,7 @@ static int init_definition_files_dir(grib_context* c) if (*p != ECC_PATH_DELIMITER_CHAR) { /* No delimiter found so this is a single directory */ c->grib_definition_files_dir = (grib_string_list*)grib_context_malloc_clear_persistent(c, sizeof(grib_string_list)); - c->grib_definition_files_dir->value = resolve_path(c, path); + c->grib_definition_files_dir->value = codes_resolve_path(c, path); } else { /* Definitions path contains multiple directories */ @@ -667,7 +668,7 @@ static int init_definition_files_dir(grib_context* c) c->grib_definition_files_dir = (grib_string_list*)grib_context_malloc_clear_persistent(c, sizeof(grib_string_list)); next = c->grib_definition_files_dir; } - next->value = resolve_path(c, dir); + next->value = codes_resolve_path(c, dir); dir = strtok(NULL, ECC_PATH_DELIMITER_STR); } } From e1a2cbb13cb0bd9807fa57770bba7969d877321c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 25 Jan 2021 14:47:40 +0000 Subject: [PATCH 257/683] ECC-539: Reuse the codes_resolve_path function --- src/grib_api_prototypes.h | 2 +- src/grib_context.c | 2 +- tools/grib_tools.c | 11 ++++++----- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/grib_api_prototypes.h b/src/grib_api_prototypes.h index f821132be..b8030fd16 100644 --- a/src/grib_api_prototypes.h +++ b/src/grib_api_prototypes.h @@ -961,7 +961,7 @@ long grib_get_api_version(void); void grib_print_api_version(FILE* out); const char* grib_get_package_name(void); grib_context* grib_context_get_default(void); -char* codes_resolve_path(grib_context* c, char* path); +char* codes_resolve_path(grib_context* c, const char* path); char* grib_context_full_defs_path(grib_context* c, const char* basename); char* grib_samples_path(const grib_context* c); char* grib_definition_path(const grib_context* c); diff --git a/src/grib_context.c b/src/grib_context.c index 1b7ae1642..0a8d3276d 100644 --- a/src/grib_context.c +++ b/src/grib_context.c @@ -605,7 +605,7 @@ grib_context* grib_context_new(grib_context* parent) /* GRIB-235: Resolve path to expand symbolic links etc */ /* Note: return value is allocated. Client has to free */ -char* codes_resolve_path(grib_context* c, char* path) +char* codes_resolve_path(grib_context* c, const char* path) { char* result = NULL; #if defined(ECCODES_HAVE_REALPATH) diff --git a/tools/grib_tools.c b/tools/grib_tools.c index dadee4e02..190121b5c 100644 --- a/tools/grib_tools.c +++ b/tools/grib_tools.c @@ -1289,14 +1289,15 @@ void grib_print_full_statistics(grib_runtime_options* options) options->filter_handle_count, options->handle_count, options->file_count); } -static int filenames_equal(const char * f1, const char * f2) +static int filenames_equal(const char* f1, const char* f2) { - char resolved1[8192] = {0,}; - char resolved2[8192] = {0,}; int eq = 0; - realpath(f1, resolved1); - realpath(f2, resolved2); + grib_context* c = grib_context_get_default(); + char* resolved1 = codes_resolve_path(c, f1); + char* resolved2 = codes_resolve_path(c, f2); eq = (strcmp(resolved1, resolved2)==0); + grib_context_free(c, resolved1); + grib_context_free(c, resolved2); return eq; } From f8eb65e3be06b2f50b658423dc30ce8e7eb61098 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 25 Jan 2021 15:44:30 +0000 Subject: [PATCH 258/683] ECC-539: Add tests --- tests/grib_copy.sh | 12 +++++++++++- tests/grib_set.sh | 6 ++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/tests/grib_copy.sh b/tests/grib_copy.sh index cc93fc088..4b7f21f23 100755 --- a/tests/grib_copy.sh +++ b/tests/grib_copy.sh @@ -44,7 +44,7 @@ r2=`${tools_dir}/grib_get -n ls $temp` [ "$r1" = "$r2" ] -echo "Test: ECC-1086..." +echo "Test: ECC-1086 invalid message ..." # ------------------------- # This file is 179 bytes long. We chop the last byte to create # an invalid GRIB message (Final 7777 is 777) @@ -80,6 +80,16 @@ set -e count=`${tools_dir}/grib_count $temp` [ $count -eq 43 ] + +echo "Test: ECC-539 input=output ..." +# ----------------------- +set +e +${tools_dir}/grib_copy $temp $temp +status=$? +set -e +[ $status -ne 0 ] + + #${tools_dir}/grib_copy -w count=1 -X 57143 $input $temp #Last msg #r1=`${tools_dir}/grib_get -w count=37 -n ls $input` #r2=`${tools_dir}/grib_get -n ls $temp` diff --git a/tests/grib_set.sh b/tests/grib_set.sh index 31e945110..325d4168e 100755 --- a/tests/grib_set.sh +++ b/tests/grib_set.sh @@ -72,5 +72,11 @@ done ${tools_dir}/grib_set -s centre=289 $ECCODES_SAMPLES_PATH/GRIB2.tmpl $outfile ${tools_dir}/grib_dump -O $outfile | grep -q 'centre = 289.*Zambia' +# ECC-539: avoid output being the same as input +set +e +${tools_dir}/grib_set -s centre=0 $outfile $outfile +status=$? +set -e +[ $status -ne 0 ] rm -f $outfile From cba8a77a542c4855b29cd630343f7ebfdb3804ac Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 26 Jan 2021 16:02:23 +0000 Subject: [PATCH 259/683] Testing: GRIB dump debug --- tests/grib_dump_debug.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/grib_dump_debug.sh b/tests/grib_dump_debug.sh index 13d6bb015..8ba66bfbf 100755 --- a/tests/grib_dump_debug.sh +++ b/tests/grib_dump_debug.sh @@ -82,7 +82,7 @@ fi for file in $files; do if [ -f ${data_dir}/$file ]; then - ${tools_dir}/grib_dump -Da ${data_dir}/$file > $temp 2>&1 + ${tools_dir}/grib_dump -w count=1 -Da ${data_dir}/$file > $temp 2>&1 set +e # Look for the word ERROR in output. We should not find any grep -q 'ERROR ' $temp From 73b509457612fc67d36a9c9c93b8513200045e2c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 26 Jan 2021 16:21:00 +0000 Subject: [PATCH 260/683] Testing: reduce iterations --- tests/bufr_threads_ecc-604.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bufr_threads_ecc-604.sh b/tests/bufr_threads_ecc-604.sh index 035db6e5c..e03338b31 100755 --- a/tests/bufr_threads_ecc-604.sh +++ b/tests/bufr_threads_ecc-604.sh @@ -14,7 +14,7 @@ label="bufr_threads_ecc-604" temp_dir=tempdir.${label} NUM_THREADS=3 -NUM_ITER=10 +NUM_ITER=5 OUTPUT=output PROG="${test_dir}/bufr_threads_ecc-604" From 5fa4836d95f2590b181774442623f53f3ce218bd Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 27 Jan 2021 18:01:03 +0000 Subject: [PATCH 261/683] Fix check on multi-field GRIBs --- src/grib_handle.c | 5 +++-- src/grib_io.c | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/grib_handle.c b/src/grib_handle.c index 38fb1375a..30bef858e 100644 --- a/src/grib_handle.c +++ b/src/grib_handle.c @@ -1153,9 +1153,10 @@ grib_multi_handle* grib_multi_handle_new(grib_context* c) grib_multi_handle* h; if (c == NULL) c = grib_context_get_default(); - if (!c->multi_support_on) + if (!c->multi_support_on) { + grib_context_log(c, GRIB_LOG_DEBUG, "grib_multi_handle_new: Setting multi_support_on = 1"); c->multi_support_on = 1; - + } h = (grib_multi_handle*)grib_context_malloc_clear(c, sizeof(grib_multi_handle)); if (h == NULL) { grib_context_log(c, GRIB_LOG_ERROR, diff --git a/src/grib_io.c b/src/grib_io.c index 31a3bca38..0aa7ec5bf 100644 --- a/src/grib_io.c +++ b/src/grib_io.c @@ -1753,7 +1753,7 @@ static int count_product_in_file(grib_context* c, FILE* f, ProductKind product, return GRIB_INVALID_ARGUMENT; } - if (c->multi_support_on) { + if (c->multi_support_on && product == PRODUCT_GRIB) { grib_context_log(c, GRIB_LOG_ERROR, "count_product_in_file: Multi-field GRIBs not supported"); err = GRIB_NOT_IMPLEMENTED; } From a05cb7807d03f13ad3ea8bb6cdea8b9fa85abf5d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 27 Jan 2021 18:14:46 +0000 Subject: [PATCH 262/683] ECC-1194: MARS: Remove unused types --- definitions/mars/type.table | 2 -- src/grib_accessor_class_g2_mars_labeling.c | 5 ----- 2 files changed, 7 deletions(-) diff --git a/definitions/mars/type.table b/definitions/mars/type.table index 2f28ede79..ab4c0b887 100644 --- a/definitions/mars/type.table +++ b/definitions/mars/type.table @@ -62,8 +62,6 @@ 81 fcmax Forecast maximum 82 fcmin Forecast minimum 83 fcstdev Forecast standard deviation -84 emtm Ensemble mean of temporal mean -85 estdtm Ensemble standard deviation of temporal mean 86 hcmean Hindcast climate mean 87 ssd Simulated satellite data 88 gsd Gridded satellite data diff --git a/src/grib_accessor_class_g2_mars_labeling.c b/src/grib_accessor_class_g2_mars_labeling.c index b5ec66b59..57d734efc 100644 --- a/src/grib_accessor_class_g2_mars_labeling.c +++ b/src/grib_accessor_class_g2_mars_labeling.c @@ -397,11 +397,6 @@ static int extra_set(grib_accessor* a, long val) typeOfProcessedData = 255; typeOfGeneratingProcess = 255; break; - case 84: /* Ensemble mean of temporal mean (emtm) */ - case 85: /* Ensemble standard deviation of temporal mean (estdtm) */ - typeOfProcessedData = 255; - typeOfGeneratingProcess = 4; - break; default: grib_context_log(a->context, GRIB_LOG_WARNING, "g2_mars_labeling: unknown mars.type %d", (int)val); /*return GRIB_ENCODING_ERROR;*/ From 8df007a7692215a390c3c4b894147b6cabe6e7ff Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 28 Jan 2021 16:47:59 +0000 Subject: [PATCH 263/683] Definitions: GRIB2 Template 4.88 - local time --- definitions/grib2/template.4.88.def | 22 +++++++++++ definitions/grib2/template.4.localtime.def | 43 ++++++++++++++++++++++ definitions/grib2/template.7.2.def | 2 - definitions/grib2/template.7.3.def | 3 -- tests/grib2_templates.sh | 4 +- 5 files changed, 67 insertions(+), 7 deletions(-) create mode 100644 definitions/grib2/template.4.88.def create mode 100644 definitions/grib2/template.4.localtime.def diff --git a/definitions/grib2/template.4.88.def b/definitions/grib2/template.4.88.def new file mode 100644 index 000000000..4ef0e1784 --- /dev/null +++ b/definitions/grib2/template.4.88.def @@ -0,0 +1,22 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.88, Analysis or Forecast at a horizontal level or in a horizontal layer at a local time + +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +meta parameterUnits codetable_units(parameterNumber) : dump; +meta parameterName codetable_title(parameterNumber) : dump; + +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +unsigned[1] backgroundProcess = 255 : edition_specific; +alias backgroundGeneratingProcessIdentifier=backgroundProcess; + +unsigned[1] generatingProcessIdentifier : dump; + +#Cannot include this as it has keys we do not need e.g. minutesAfterDataCutoff +#Also forecastTime will be used in the localtime template +#include "grib2/template.4.parameter.def" + +include "grib2/template.4.horizontal.def" +include "grib2/template.4.localtime.def" diff --git a/definitions/grib2/template.4.localtime.def b/definitions/grib2/template.4.localtime.def new file mode 100644 index 000000000..fd0a57aa2 --- /dev/null +++ b/definitions/grib2/template.4.localtime.def @@ -0,0 +1,43 @@ +# (C) Copyright 2005- ECMWF. + +# Method used to calculate the field value at the local time specified in section 1 +codetable[1] localTimeMethod ('4.248.table',masterDir,localDir)=255 : dump; + +# n - number of Forecasts used in Local Time +unsigned[1] numberOfForecastsUsedInLocalTime : dump; + +localTimeForecastList list(numberOfForecastsUsedInLocalTime) +{ + # Year of Forecast used in Local Time + unsigned[2] yearOfForecastUsedInLocalTime=0 : dump, edition_specific; + + # Month of Forecast used in Local Time + unsigned[1] monthOfForecastUsedInLocalTime=0 : dump, edition_specific; + + # Day of Forecast used in Local Time + unsigned[1] dayOfForecastUsedInLocalTime=0 : dump, edition_specific; + + # Hour of Forecast used in Local Time + unsigned[1] hourOfForecastUsedInLocalTime=0 : dump, edition_specific; + + # Minute of Forecast used in Local Time + unsigned[1] minuteOfForecastUsedInLocalTime=0 : dump, edition_specific; + + # Second of Forecast used in Local Time + unsigned[1] secondOfForecastUsedInLocalTime=0 : dump, edition_specific; + + # Indicator of unit of time for ForecastTime + codetable[1] indicatorOfUnitForForecastTime ('4.4.table',masterDir,localDir)=1 : dump; + + # Length of the time range over which statistical processing is done, in units defined by the previous octet + unsigned[4] forecastTime=0 : dump; + + # Number of time increments of Forecast used in Local Time + unsigned[1] numberOfTimeIncrementsOfForecastsUsedInLocalTime=1 : dump; + + # Indicator of unit of time for the increment between the successive steps used + codetable[1] indicatorOfUnitForTimeIncrement ('4.4.table',masterDir,localDir)=255 : dump; + + # Time increment between successive fields, in units defined by the previous octet + unsigned[4] timeIncrement=0 : dump; +} diff --git a/definitions/grib2/template.7.2.def b/definitions/grib2/template.7.2.def index df506d9e8..8c13829aa 100644 --- a/definitions/grib2/template.7.2.def +++ b/definitions/grib2/template.7.2.def @@ -1,8 +1,6 @@ # (C) Copyright 2005- ECMWF. # TEMPLATE 7.2, Grid point data - complex packing -# Octets 6-xx : NG group reference values -# (XI in the decoding formula) position offsetBeforeData; diff --git a/definitions/grib2/template.7.3.def b/definitions/grib2/template.7.3.def index 470e0ca61..dd2a40be0 100644 --- a/definitions/grib2/template.7.3.def +++ b/definitions/grib2/template.7.3.def @@ -1,9 +1,6 @@ # (C) Copyright 2005- ECMWF. # TEMPLATE 7.3, Grid point data - complex packing and spatial differencing -# Octets 6-ww : First value(s) of original -# (undifferenced) -# ???? first_value_s_of_original position offsetBeforeData; diff --git a/tests/grib2_templates.sh b/tests/grib2_templates.sh index 65474041a..c1430712e 100755 --- a/tests/grib2_templates.sh +++ b/tests/grib2_templates.sh @@ -21,8 +21,8 @@ sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl # Template 4.88 # ------------- # TODO: Add tablesVersion later... -#grib_set -s productDefinitionTemplateNumber=88,numberOfForecastsUsedInLocalTime=1 $sample2 $temp -#grib_check_key_equals $temp localTimeMethod 255 +grib_set -s productDefinitionTemplateNumber=88,numberOfForecastsUsedInLocalTime=1 $sample2 $temp +grib_check_key_equals $temp localTimeMethod 255 # Templates 4.76 -> 4.79, 4.80 -> 4.83 # ------------------------------------- From 0a623ce6e14c83473e821f3032567b5b4b7a7e89 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 28 Jan 2021 16:56:48 +0000 Subject: [PATCH 264/683] Definitions: GRIB2 Template 4.86 and 4.87 - Quantiles --- definitions/grib2/template.4.86.def | 8 ++++++++ definitions/grib2/template.4.87.def | 8 ++++++++ definitions/grib2/template.4.quantile.def | 5 +++++ 3 files changed, 21 insertions(+) create mode 100644 definitions/grib2/template.4.86.def create mode 100644 definitions/grib2/template.4.87.def create mode 100755 definitions/grib2/template.4.quantile.def diff --git a/definitions/grib2/template.4.86.def b/definitions/grib2/template.4.86.def new file mode 100644 index 000000000..a1cbc98de --- /dev/null +++ b/definitions/grib2/template.4.86.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.86, Quantile forecasts at a horizontal level or in a horizontal layer at a point in time + +include "grib2/template.4.parameter.def" +include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.horizontal.def" +include "grib2/template.4.quantile.def" diff --git a/definitions/grib2/template.4.87.def b/definitions/grib2/template.4.87.def new file mode 100644 index 000000000..32e37466e --- /dev/null +++ b/definitions/grib2/template.4.87.def @@ -0,0 +1,8 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.87, Quantile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval + +include "grib2/template.4.parameter.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.quantile.def" +include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.quantile.def b/definitions/grib2/template.4.quantile.def new file mode 100755 index 000000000..fb1e1e99b --- /dev/null +++ b/definitions/grib2/template.4.quantile.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +unsigned[2] totalNumberOfQuantiles : dump; +# quantile value, from 1 to totalNumberOfQuantiles +unsigned[2] quantileValue : dump; From 24551b2a35b760eb19effcc9adc74efff508b51f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 28 Jan 2021 17:08:12 +0000 Subject: [PATCH 265/683] Testing: test for new GRIB2 templates --- tests/grib2_templates.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tests/grib2_templates.sh b/tests/grib2_templates.sh index c1430712e..f1abb2c8f 100755 --- a/tests/grib2_templates.sh +++ b/tests/grib2_templates.sh @@ -18,10 +18,18 @@ temp2=temp2.$label.grib2 temp=temp.$label.grib2 sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl + +# Template 4.86 +# ------------- +# TODO: Add tablesVersion later... +$tools_dir/grib_set -s productDefinitionTemplateNumber=86,numberOfForecastsUsedInLocalTime=1 $sample2 $temp +grib_check_key_equals $temp totalNumberOfQuantiles,quantileValue '0 0' + + # Template 4.88 # ------------- # TODO: Add tablesVersion later... -grib_set -s productDefinitionTemplateNumber=88,numberOfForecastsUsedInLocalTime=1 $sample2 $temp +$tools_dir/grib_set -s productDefinitionTemplateNumber=88,numberOfForecastsUsedInLocalTime=1 $sample2 $temp grib_check_key_equals $temp localTimeMethod 255 # Templates 4.76 -> 4.79, 4.80 -> 4.83 From 7e41414f90fec539cdd9667cd5f9ec5b3f8cfee1 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 28 Jan 2021 18:59:05 +0000 Subject: [PATCH 266/683] Fix broken test --- tests/grib2_templates.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/grib2_templates.sh b/tests/grib2_templates.sh index f1abb2c8f..5fd0e0f46 100755 --- a/tests/grib2_templates.sh +++ b/tests/grib2_templates.sh @@ -22,8 +22,8 @@ sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl # Template 4.86 # ------------- # TODO: Add tablesVersion later... -$tools_dir/grib_set -s productDefinitionTemplateNumber=86,numberOfForecastsUsedInLocalTime=1 $sample2 $temp -grib_check_key_equals $temp totalNumberOfQuantiles,quantileValue '0 0' +$tools_dir/grib_set -s productDefinitionTemplateNumber=86,totalNumberOfQuantiles=2 $sample2 $temp +grib_check_key_equals $temp totalNumberOfQuantiles,quantileValue '2 0' # Template 4.88 From bf767d87ef6c70e9917c356d5f7bdccf6f5cc612 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 30 Jan 2021 00:15:24 +0000 Subject: [PATCH 267/683] ECC-1195: Accessor 'sprintf' should by default be read-only --- src/grib_accessor_class_sprintf.c | 1 + tests/CMakeLists.txt | 2 ++ tests/bufr_ecc-1195.sh | 28 +++++++++++++++++++ tests/grib_ecc-1195.sh | 45 +++++++++++++++++++++++++++++++ 4 files changed, 76 insertions(+) create mode 100755 tests/bufr_ecc-1195.sh create mode 100755 tests/grib_ecc-1195.sh diff --git a/src/grib_accessor_class_sprintf.c b/src/grib_accessor_class_sprintf.c index 45b90b5b7..d52e3ecbf 100644 --- a/src/grib_accessor_class_sprintf.c +++ b/src/grib_accessor_class_sprintf.c @@ -135,6 +135,7 @@ static void init(grib_accessor* a, const long l, grib_arguments* c) { grib_accessor_sprintf* self = (grib_accessor_sprintf*)a; self->args = c; + a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; } static int pack_string(grib_accessor* a, const char* val, size_t* len) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 66f455556..eb2e37ea0 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -77,6 +77,8 @@ if( HAVE_BUILD_TOOLS ) grib_ecc-1065 grib_ecc-1167 grib_ecc-1170 + grib_ecc-1195 + bufr_ecc-1195 bufr_json_samples bufr_ecc-359 bufr_ecc-517 diff --git a/tests/bufr_ecc-1195.sh b/tests/bufr_ecc-1195.sh new file mode 100755 index 000000000..fe79cecc2 --- /dev/null +++ b/tests/bufr_ecc-1195.sh @@ -0,0 +1,28 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +REDIRECT=/dev/null +label="bufr_ecc-1195-test" +temp1=temp.$label.bufr +temp2=temp.$label.txt +sample_bufr4=$ECCODES_SAMPLES_PATH/BUFR4_local.tmpl + + +set +e +${tools_dir}/bufr_set -s localDate=20140102 $sample_bufr4 $temp1 2>$temp2 +status=$? +set -e +[ $status -ne 0 ] +grep -q "Value is read only" $temp2 + + +rm -f $temp1 $temp2 diff --git a/tests/grib_ecc-1195.sh b/tests/grib_ecc-1195.sh new file mode 100755 index 000000000..81532e18d --- /dev/null +++ b/tests/grib_ecc-1195.sh @@ -0,0 +1,45 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +REDIRECT=/dev/null +label="grib_ecc-1195-test" +temp1=temp.$label.grib +temp2=temp.$label.txt +sample_grib1=$ECCODES_SAMPLES_PATH/GRIB1.tmpl +sample_grib2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl +sample_bufr4=$ECCODES_SAMPLES_PATH/BUFR4_local.tmpl + + +${tools_dir}/grib_set -s localDefinitionNumber=3 $sample_grib1 $temp1 +set +e +${tools_dir}/grib_set -s marsIdent=0 $temp1 /dev/null 2>$temp2 +status=$? +set -e +[ $status -ne 0 ] +grep -q "Value is read only" $temp2 + +set +e +${tools_dir}/grib_set -s indicatorOfTypeOfLevel=101,levels=1-1 $sample_grib1 $temp1 2>$temp2 +status=$? +set -e +[ $status -ne 0 ] +grep -q "Value is read only" $temp2 + +#set +e +#${tools_dir}/bufr_set -s localDate=20140102 $sample_bufr4 $temp1 2>$temp2 +#status=$? +#set -e +#[ $status -ne 0 ] +#grep -q "Value is read only" $temp2 + + +rm -f $temp1 $temp2 From dccc47c62087c355198db3d60bfaa47ba50243cd Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 30 Jan 2021 12:52:06 +0000 Subject: [PATCH 268/683] ECC-1195: Remove superfluous read_only attributes --- definitions/bufr/rdb_key.def | 8 ++++---- definitions/bufr/section.1.3.def | 4 ++-- definitions/bufr/section.1.4.def | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/definitions/bufr/rdb_key.def b/definitions/bufr/rdb_key.def index f8c5a5af4..e1468b077 100644 --- a/definitions/bufr/rdb_key.def +++ b/definitions/bufr/rdb_key.def @@ -18,8 +18,8 @@ alias rdb.localHour=localHour; alias rdb.localMinute=localMinute; alias rdb.localSecond=localSecond; -meta localDate sprintf("%.4d%.2d%.2d",localYear,localMonth,localDay) : no_copy,read_only; -meta localTime sprintf("%.2d%.2d",localHour,localMinute) : no_copy,read_only; +meta localDate sprintf("%.4d%.2d%.2d",localYear,localMonth,localDay) : no_copy; +meta localTime sprintf("%.2d%.2d",localHour,localMinute) : no_copy; meta localDateTime julian_date(localYear,localMonth,localDay,localHour,localMinute,localSecond) : no_copy; alias mars.date = localDate; alias mars.time = localTime; @@ -41,8 +41,8 @@ meta rdbtimeSecond bits(rdbtime,17,6) : dump,long_type,no_copy; meta rdbtimeYear rdbtime_guess_date(typicalYear,typicalMonth,typicalDay,rdbtimeDay,1); meta rdbtimeMonth rdbtime_guess_date(typicalYear,typicalMonth,typicalDay,rdbtimeDay,2); -meta ls.rdbtimeDate sprintf("%.4d%.2d%.2d",rdbtimeYear,rdbtimeMonth,rdbtimeDay) : no_copy,read_only; -meta ls.rdbtimeTime sprintf("%.2d%.2d%.2d",rdbtimeHour,rdbtimeMinute,rdbtimeSecond) :dump,no_copy,read_only; +meta ls.rdbtimeDate sprintf("%.4d%.2d%.2d",rdbtimeYear,rdbtimeMonth,rdbtimeDay) : no_copy; +meta ls.rdbtimeTime sprintf("%.2d%.2d%.2d",rdbtimeHour,rdbtimeMinute,rdbtimeSecond) :dump,no_copy; meta rdbDateTime julian_date(rdbtimeYear,rdbtimeMonth,rdbtimeDay,rdbtimeHour,rdbtimeMinute,rdbtimeSecond) : no_copy; diff --git a/definitions/bufr/section.1.3.def b/definitions/bufr/section.1.3.def index ab28a1b45..84ac947b0 100644 --- a/definitions/bufr/section.1.3.def +++ b/definitions/bufr/section.1.3.def @@ -29,8 +29,8 @@ unsigned[1] typicalMinute : dump; # unsigned[1] spare; # See ECC-978 transient typicalSecond=0; -meta ls.typicalDate sprintf("%.4d%.2d%.2d",typicalYear,typicalMonth,typicalDay) : dump,no_copy,read_only; -meta ls.typicalTime sprintf("%.2d%.2d%.2d",typicalHour,typicalMinute,typicalSecond) :dump,no_copy,read_only; +meta ls.typicalDate sprintf("%.4d%.2d%.2d",typicalYear,typicalMonth,typicalDay) : dump,no_copy; +meta ls.typicalTime sprintf("%.2d%.2d%.2d",typicalHour,typicalMinute,typicalSecond) :dump,no_copy; meta typicalDateTime julian_date(typicalYear,typicalMonth,typicalDay,typicalHour,typicalMinute,typicalSecond) ; diff --git a/definitions/bufr/section.1.4.def b/definitions/bufr/section.1.4.def index 2d3e67c3d..1091953c8 100644 --- a/definitions/bufr/section.1.4.def +++ b/definitions/bufr/section.1.4.def @@ -35,8 +35,8 @@ unsigned[1] typicalHour : dump; unsigned[1] typicalMinute : dump; unsigned[1] typicalSecond : dump; -meta ls.typicalDate sprintf("%.4d%.2d%.2d",typicalYear2,typicalMonth,typicalDay) : dump,no_copy,read_only; -meta ls.typicalTime sprintf("%.2d%.2d%.2d",typicalHour,typicalMinute,typicalSecond) :dump,no_copy,read_only; +meta ls.typicalDate sprintf("%.4d%.2d%.2d",typicalYear2,typicalMonth,typicalDay) : dump,no_copy; +meta ls.typicalTime sprintf("%.2d%.2d%.2d",typicalHour,typicalMinute,typicalSecond) :dump,no_copy; meta typicalDateTime julian_date(typicalYear2,typicalMonth,typicalDay,typicalHour,typicalMinute,typicalSecond) ; From 4d284bc429337cd8b16c1156326df68db3b7ef75 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 30 Jan 2021 12:52:34 +0000 Subject: [PATCH 269/683] ECC-1195: Test all sprintf BUFR keys --- tests/bufr_ecc-1195.sh | 31 +++++++++++++++++++++++++------ 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/tests/bufr_ecc-1195.sh b/tests/bufr_ecc-1195.sh index fe79cecc2..241d8290f 100755 --- a/tests/bufr_ecc-1195.sh +++ b/tests/bufr_ecc-1195.sh @@ -14,15 +14,34 @@ REDIRECT=/dev/null label="bufr_ecc-1195-test" temp1=temp.$label.bufr temp2=temp.$label.txt +sample_bufr3=$ECCODES_SAMPLES_PATH/BUFR3_local.tmpl sample_bufr4=$ECCODES_SAMPLES_PATH/BUFR4_local.tmpl +should_fail_setting() +{ + _keyvals=$1 + _sample=$2 + set +e + ${tools_dir}/bufr_set -s $_keyvals $_sample $temp1 2>$temp2 + status=$? + set -e + [ $status -ne 0 ] + grep -q "Value is read only" $temp2 +} -set +e -${tools_dir}/bufr_set -s localDate=20140102 $sample_bufr4 $temp1 2>$temp2 -status=$? -set -e -[ $status -ne 0 ] -grep -q "Value is read only" $temp2 +should_fail_setting localDate=20140102 $sample_bufr3 +should_fail_setting localTime=1010 $sample_bufr3 +should_fail_setting rdbtimeDate=20121030 $sample_bufr3 +should_fail_setting rdbtimeTime=001018 $sample_bufr3 +should_fail_setting typicalDate=20121030 $sample_bufr3 +should_fail_setting typicalTime=000001 $sample_bufr3 + +should_fail_setting localDate=20140102 $sample_bufr4 +should_fail_setting localTime=1010 $sample_bufr4 +should_fail_setting rdbtimeDate=20121030 $sample_bufr4 +should_fail_setting rdbtimeTime=001018 $sample_bufr4 +should_fail_setting typicalDate=20121030 $sample_bufr4 +should_fail_setting typicalTime=000001 $sample_bufr4 rm -f $temp1 $temp2 From ae563c5cc9659c7691eaa4e1ad39464a965d206b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 30 Jan 2021 13:13:54 +0000 Subject: [PATCH 270/683] Testing: remove duplicated TIGGE GRIB files --- data/tigge/tigge_data_files.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/data/tigge/tigge_data_files.txt b/data/tigge/tigge_data_files.txt index 988e2f065..3ca348bce 100644 --- a/data/tigge/tigge_data_files.txt +++ b/data/tigge/tigge_data_files.txt @@ -75,7 +75,6 @@ tigge_ecmf_sfc_10v.grib tigge_ecmf_sfc_2d.grib tigge_ecmf_sfc_2t.grib tigge_ecmf_sfc_cap.grib -tigge_ecmf_sfc_cape.grib tigge_ecmf_sfc_mn2t6.grib tigge_ecmf_sfc_msl.grib tigge_ecmf_sfc_mx2t6.grib @@ -134,11 +133,8 @@ tigge_kwbc_pv_pt.grib tigge_kwbc_pv_u.grib tigge_kwbc_pv_v.grib tigge_kwbc_sfc_10u.grib -tigge_kwbc_sfc_10v.grib tigge_kwbc_sfc_2d.grib -tigge_kwbc_sfc_2t.grib tigge_kwbc_sfc_cap.grib -tigge_kwbc_sfc_cape.grib tigge_kwbc_sfc_ci.grib tigge_kwbc_sfc_lsm.grib tigge_kwbc_sfc_mn2t6.grib @@ -169,7 +165,6 @@ tigge_lfpw_sfc_10u.grib tigge_lfpw_sfc_10v.grib tigge_lfpw_sfc_2d.grib tigge_lfpw_sfc_2t.grib -tigge_lfpw_sfc_cap.grib tigge_lfpw_sfc_cape.grib tigge_lfpw_sfc_mn2t6.grib tigge_lfpw_sfc_msl.grib From 47f57b1c3eb3faf3e54fe1053473280a63508e1f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 1 Feb 2021 14:26:08 +0000 Subject: [PATCH 271/683] Definitions: Added GRIB2 table v27 for GRIB Fire template 88 --- definitions/grib2/boot.def | 2 +- definitions/grib2/tables/27/0.0.table | 13 + definitions/grib2/tables/27/1.0.table | 30 ++ definitions/grib2/tables/27/1.1.table | 4 + definitions/grib2/tables/27/1.2.table | 9 + definitions/grib2/tables/27/1.3.table | 16 + definitions/grib2/tables/27/1.4.table | 13 + definitions/grib2/tables/27/1.5.table | 7 + definitions/grib2/tables/27/1.6.table | 8 + definitions/grib2/tables/27/3.0.table | 6 + definitions/grib2/tables/27/3.1.table | 54 ++ definitions/grib2/tables/27/3.10.table | 8 + definitions/grib2/tables/27/3.11.table | 7 + definitions/grib2/tables/27/3.15.table | 23 + definitions/grib2/tables/27/3.2.table | 16 + definitions/grib2/tables/27/3.20.table | 6 + definitions/grib2/tables/27/3.21.table | 8 + definitions/grib2/tables/27/3.25.table | 10 + definitions/grib2/tables/27/3.3.table | 9 + definitions/grib2/tables/27/3.4.table | 17 + definitions/grib2/tables/27/3.5.table | 5 + definitions/grib2/tables/27/3.6.table | 3 + definitions/grib2/tables/27/3.7.table | 5 + definitions/grib2/tables/27/3.8.table | 7 + definitions/grib2/tables/27/3.9.table | 4 + definitions/grib2/tables/27/4.0.table | 87 +++ definitions/grib2/tables/27/4.1.0.table | 27 + definitions/grib2/tables/27/4.1.1.table | 7 + definitions/grib2/tables/27/4.1.10.table | 10 + definitions/grib2/tables/27/4.1.192.table | 4 + definitions/grib2/tables/27/4.1.2.table | 10 + definitions/grib2/tables/27/4.1.20.table | 7 + definitions/grib2/tables/27/4.1.3.table | 11 + definitions/grib2/tables/27/4.1.4.table | 15 + definitions/grib2/tables/27/4.10.table | 16 + definitions/grib2/tables/27/4.11.table | 10 + definitions/grib2/tables/27/4.12.table | 7 + definitions/grib2/tables/27/4.13.table | 6 + definitions/grib2/tables/27/4.14.table | 6 + definitions/grib2/tables/27/4.15.table | 11 + definitions/grib2/tables/27/4.16.table | 10 + definitions/grib2/tables/27/4.192.table | 4 + definitions/grib2/tables/27/4.2.0.0.table | 36 ++ definitions/grib2/tables/27/4.2.0.1.table | 150 ++++++ definitions/grib2/tables/27/4.2.0.13.table | 5 + definitions/grib2/tables/27/4.2.0.14.table | 7 + definitions/grib2/tables/27/4.2.0.15.table | 21 + definitions/grib2/tables/27/4.2.0.16.table | 10 + definitions/grib2/tables/27/4.2.0.17.table | 6 + definitions/grib2/tables/27/4.2.0.18.table | 23 + definitions/grib2/tables/27/4.2.0.19.table | 45 ++ definitions/grib2/tables/27/4.2.0.190.table | 5 + definitions/grib2/tables/27/4.2.0.191.table | 8 + definitions/grib2/tables/27/4.2.0.2.table | 51 ++ definitions/grib2/tables/27/4.2.0.20.table | 64 +++ definitions/grib2/tables/27/4.2.0.3.table | 36 ++ definitions/grib2/tables/27/4.2.0.4.table | 25 + definitions/grib2/tables/27/4.2.0.5.table | 13 + definitions/grib2/tables/27/4.2.0.6.table | 50 ++ definitions/grib2/tables/27/4.2.0.7.table | 25 + definitions/grib2/tables/27/4.2.1.0.table | 21 + definitions/grib2/tables/27/4.2.1.1.table | 7 + definitions/grib2/tables/27/4.2.1.2.table | 15 + definitions/grib2/tables/27/4.2.10.0.table | 69 +++ definitions/grib2/tables/27/4.2.10.1.table | 9 + definitions/grib2/tables/27/4.2.10.191.table | 8 + definitions/grib2/tables/27/4.2.10.2.table | 17 + definitions/grib2/tables/27/4.2.10.3.table | 8 + definitions/grib2/tables/27/4.2.10.4.table | 24 + definitions/grib2/tables/27/4.2.2.0.table | 44 ++ definitions/grib2/tables/27/4.2.2.3.table | 33 ++ definitions/grib2/tables/27/4.2.2.4.table | 24 + definitions/grib2/tables/27/4.2.2.5.table | 6 + definitions/grib2/tables/27/4.2.20.0.table | 6 + definitions/grib2/tables/27/4.2.20.1.table | 14 + definitions/grib2/tables/27/4.2.20.2.table | 5 + definitions/grib2/tables/27/4.2.3.0.table | 14 + definitions/grib2/tables/27/4.2.3.1.table | 35 ++ definitions/grib2/tables/27/4.2.3.2.table | 24 + definitions/grib2/tables/27/4.2.3.3.table | 4 + definitions/grib2/tables/27/4.2.3.4.table | 10 + definitions/grib2/tables/27/4.2.3.5.table | 7 + definitions/grib2/tables/27/4.2.3.6.table | 7 + definitions/grib2/tables/27/4.2.4.0.table | 10 + definitions/grib2/tables/27/4.2.4.1.table | 8 + definitions/grib2/tables/27/4.2.4.10.table | 12 + definitions/grib2/tables/27/4.2.4.2.table | 18 + definitions/grib2/tables/27/4.2.4.3.table | 12 + definitions/grib2/tables/27/4.2.4.4.table | 11 + definitions/grib2/tables/27/4.2.4.5.table | 8 + definitions/grib2/tables/27/4.2.4.6.table | 11 + definitions/grib2/tables/27/4.2.4.7.table | 8 + definitions/grib2/tables/27/4.2.4.8.table | 12 + definitions/grib2/tables/27/4.2.4.9.table | 7 + definitions/grib2/tables/27/4.201.table | 17 + definitions/grib2/tables/27/4.202.table | 4 + definitions/grib2/tables/27/4.203.table | 26 + definitions/grib2/tables/27/4.204.table | 9 + definitions/grib2/tables/27/4.205.table | 6 + definitions/grib2/tables/27/4.206.table | 6 + definitions/grib2/tables/27/4.207.table | 10 + definitions/grib2/tables/27/4.208.table | 9 + definitions/grib2/tables/27/4.209.table | 9 + definitions/grib2/tables/27/4.210.table | 6 + definitions/grib2/tables/27/4.211.table | 7 + definitions/grib2/tables/27/4.212.table | 18 + definitions/grib2/tables/27/4.213.table | 16 + definitions/grib2/tables/27/4.214.table | 11 + definitions/grib2/tables/27/4.215.table | 9 + definitions/grib2/tables/27/4.216.table | 5 + definitions/grib2/tables/27/4.217.table | 8 + definitions/grib2/tables/27/4.218.table | 46 ++ definitions/grib2/tables/27/4.219.table | 8 + definitions/grib2/tables/27/4.220.table | 6 + definitions/grib2/tables/27/4.221.table | 6 + definitions/grib2/tables/27/4.222.table | 6 + definitions/grib2/tables/27/4.223.table | 5 + definitions/grib2/tables/27/4.224.table | 18 + definitions/grib2/tables/27/4.225.table | 2 + definitions/grib2/tables/27/4.227.table | 9 + definitions/grib2/tables/27/4.228.table | 8 + definitions/grib2/tables/27/4.230.table | 527 +++++++++++++++++++ definitions/grib2/tables/27/4.233.table | 527 +++++++++++++++++++ definitions/grib2/tables/27/4.234.table | 21 + definitions/grib2/tables/27/4.236.table | 8 + definitions/grib2/tables/27/4.238.table | 32 ++ definitions/grib2/tables/27/4.240.table | 13 + definitions/grib2/tables/27/4.241.table | 9 + definitions/grib2/tables/27/4.242.table | 7 + definitions/grib2/tables/27/4.243.table | 43 ++ definitions/grib2/tables/27/4.244.table | 7 + definitions/grib2/tables/27/4.246.table | 7 + definitions/grib2/tables/27/4.247.table | 7 + definitions/grib2/tables/27/4.248.table | 5 + definitions/grib2/tables/27/4.3.table | 23 + definitions/grib2/tables/27/4.4.table | 17 + definitions/grib2/tables/27/4.5.table | 86 +++ definitions/grib2/tables/27/4.6.table | 9 + definitions/grib2/tables/27/4.7.table | 14 + definitions/grib2/tables/27/4.8.table | 6 + definitions/grib2/tables/27/4.9.table | 13 + definitions/grib2/tables/27/4.91.table | 16 + definitions/grib2/tables/27/5.0.table | 22 + definitions/grib2/tables/27/5.1.table | 6 + definitions/grib2/tables/27/5.2.table | 8 + definitions/grib2/tables/27/5.25.table | 9 + definitions/grib2/tables/27/5.26.table | 5 + definitions/grib2/tables/27/5.3.table | 7 + definitions/grib2/tables/27/5.4.table | 6 + definitions/grib2/tables/27/5.40.table | 5 + definitions/grib2/tables/27/5.5.table | 7 + definitions/grib2/tables/27/5.6.table | 7 + definitions/grib2/tables/27/5.7.table | 7 + definitions/grib2/tables/27/6.0.table | 6 + definitions/grib2/tables/27/stepType.table | 2 + 155 files changed, 3429 insertions(+), 1 deletion(-) create mode 100644 definitions/grib2/tables/27/0.0.table create mode 100644 definitions/grib2/tables/27/1.0.table create mode 100644 definitions/grib2/tables/27/1.1.table create mode 100644 definitions/grib2/tables/27/1.2.table create mode 100644 definitions/grib2/tables/27/1.3.table create mode 100644 definitions/grib2/tables/27/1.4.table create mode 100644 definitions/grib2/tables/27/1.5.table create mode 100644 definitions/grib2/tables/27/1.6.table create mode 100644 definitions/grib2/tables/27/3.0.table create mode 100644 definitions/grib2/tables/27/3.1.table create mode 100644 definitions/grib2/tables/27/3.10.table create mode 100644 definitions/grib2/tables/27/3.11.table create mode 100644 definitions/grib2/tables/27/3.15.table create mode 100644 definitions/grib2/tables/27/3.2.table create mode 100644 definitions/grib2/tables/27/3.20.table create mode 100644 definitions/grib2/tables/27/3.21.table create mode 100644 definitions/grib2/tables/27/3.25.table create mode 100644 definitions/grib2/tables/27/3.3.table create mode 100644 definitions/grib2/tables/27/3.4.table create mode 100644 definitions/grib2/tables/27/3.5.table create mode 100644 definitions/grib2/tables/27/3.6.table create mode 100644 definitions/grib2/tables/27/3.7.table create mode 100644 definitions/grib2/tables/27/3.8.table create mode 100644 definitions/grib2/tables/27/3.9.table create mode 100644 definitions/grib2/tables/27/4.0.table create mode 100644 definitions/grib2/tables/27/4.1.0.table create mode 100644 definitions/grib2/tables/27/4.1.1.table create mode 100644 definitions/grib2/tables/27/4.1.10.table create mode 100644 definitions/grib2/tables/27/4.1.192.table create mode 100644 definitions/grib2/tables/27/4.1.2.table create mode 100644 definitions/grib2/tables/27/4.1.20.table create mode 100644 definitions/grib2/tables/27/4.1.3.table create mode 100644 definitions/grib2/tables/27/4.1.4.table create mode 100644 definitions/grib2/tables/27/4.10.table create mode 100644 definitions/grib2/tables/27/4.11.table create mode 100644 definitions/grib2/tables/27/4.12.table create mode 100644 definitions/grib2/tables/27/4.13.table create mode 100644 definitions/grib2/tables/27/4.14.table create mode 100644 definitions/grib2/tables/27/4.15.table create mode 100644 definitions/grib2/tables/27/4.16.table create mode 100644 definitions/grib2/tables/27/4.192.table create mode 100644 definitions/grib2/tables/27/4.2.0.0.table create mode 100644 definitions/grib2/tables/27/4.2.0.1.table create mode 100644 definitions/grib2/tables/27/4.2.0.13.table create mode 100644 definitions/grib2/tables/27/4.2.0.14.table create mode 100644 definitions/grib2/tables/27/4.2.0.15.table create mode 100644 definitions/grib2/tables/27/4.2.0.16.table create mode 100644 definitions/grib2/tables/27/4.2.0.17.table create mode 100644 definitions/grib2/tables/27/4.2.0.18.table create mode 100644 definitions/grib2/tables/27/4.2.0.19.table create mode 100644 definitions/grib2/tables/27/4.2.0.190.table create mode 100644 definitions/grib2/tables/27/4.2.0.191.table create mode 100644 definitions/grib2/tables/27/4.2.0.2.table create mode 100644 definitions/grib2/tables/27/4.2.0.20.table create mode 100644 definitions/grib2/tables/27/4.2.0.3.table create mode 100644 definitions/grib2/tables/27/4.2.0.4.table create mode 100644 definitions/grib2/tables/27/4.2.0.5.table create mode 100644 definitions/grib2/tables/27/4.2.0.6.table create mode 100644 definitions/grib2/tables/27/4.2.0.7.table create mode 100644 definitions/grib2/tables/27/4.2.1.0.table create mode 100644 definitions/grib2/tables/27/4.2.1.1.table create mode 100644 definitions/grib2/tables/27/4.2.1.2.table create mode 100644 definitions/grib2/tables/27/4.2.10.0.table create mode 100644 definitions/grib2/tables/27/4.2.10.1.table create mode 100644 definitions/grib2/tables/27/4.2.10.191.table create mode 100644 definitions/grib2/tables/27/4.2.10.2.table create mode 100644 definitions/grib2/tables/27/4.2.10.3.table create mode 100644 definitions/grib2/tables/27/4.2.10.4.table create mode 100644 definitions/grib2/tables/27/4.2.2.0.table create mode 100644 definitions/grib2/tables/27/4.2.2.3.table create mode 100644 definitions/grib2/tables/27/4.2.2.4.table create mode 100644 definitions/grib2/tables/27/4.2.2.5.table create mode 100644 definitions/grib2/tables/27/4.2.20.0.table create mode 100644 definitions/grib2/tables/27/4.2.20.1.table create mode 100644 definitions/grib2/tables/27/4.2.20.2.table create mode 100644 definitions/grib2/tables/27/4.2.3.0.table create mode 100644 definitions/grib2/tables/27/4.2.3.1.table create mode 100644 definitions/grib2/tables/27/4.2.3.2.table create mode 100644 definitions/grib2/tables/27/4.2.3.3.table create mode 100644 definitions/grib2/tables/27/4.2.3.4.table create mode 100644 definitions/grib2/tables/27/4.2.3.5.table create mode 100644 definitions/grib2/tables/27/4.2.3.6.table create mode 100644 definitions/grib2/tables/27/4.2.4.0.table create mode 100644 definitions/grib2/tables/27/4.2.4.1.table create mode 100644 definitions/grib2/tables/27/4.2.4.10.table create mode 100644 definitions/grib2/tables/27/4.2.4.2.table create mode 100644 definitions/grib2/tables/27/4.2.4.3.table create mode 100644 definitions/grib2/tables/27/4.2.4.4.table create mode 100644 definitions/grib2/tables/27/4.2.4.5.table create mode 100644 definitions/grib2/tables/27/4.2.4.6.table create mode 100644 definitions/grib2/tables/27/4.2.4.7.table create mode 100644 definitions/grib2/tables/27/4.2.4.8.table create mode 100644 definitions/grib2/tables/27/4.2.4.9.table create mode 100644 definitions/grib2/tables/27/4.201.table create mode 100644 definitions/grib2/tables/27/4.202.table create mode 100644 definitions/grib2/tables/27/4.203.table create mode 100644 definitions/grib2/tables/27/4.204.table create mode 100644 definitions/grib2/tables/27/4.205.table create mode 100644 definitions/grib2/tables/27/4.206.table create mode 100644 definitions/grib2/tables/27/4.207.table create mode 100644 definitions/grib2/tables/27/4.208.table create mode 100644 definitions/grib2/tables/27/4.209.table create mode 100644 definitions/grib2/tables/27/4.210.table create mode 100644 definitions/grib2/tables/27/4.211.table create mode 100644 definitions/grib2/tables/27/4.212.table create mode 100644 definitions/grib2/tables/27/4.213.table create mode 100644 definitions/grib2/tables/27/4.214.table create mode 100644 definitions/grib2/tables/27/4.215.table create mode 100644 definitions/grib2/tables/27/4.216.table create mode 100644 definitions/grib2/tables/27/4.217.table create mode 100644 definitions/grib2/tables/27/4.218.table create mode 100644 definitions/grib2/tables/27/4.219.table create mode 100644 definitions/grib2/tables/27/4.220.table create mode 100644 definitions/grib2/tables/27/4.221.table create mode 100644 definitions/grib2/tables/27/4.222.table create mode 100644 definitions/grib2/tables/27/4.223.table create mode 100644 definitions/grib2/tables/27/4.224.table create mode 100644 definitions/grib2/tables/27/4.225.table create mode 100644 definitions/grib2/tables/27/4.227.table create mode 100644 definitions/grib2/tables/27/4.228.table create mode 100644 definitions/grib2/tables/27/4.230.table create mode 100644 definitions/grib2/tables/27/4.233.table create mode 100644 definitions/grib2/tables/27/4.234.table create mode 100644 definitions/grib2/tables/27/4.236.table create mode 100644 definitions/grib2/tables/27/4.238.table create mode 100644 definitions/grib2/tables/27/4.240.table create mode 100644 definitions/grib2/tables/27/4.241.table create mode 100644 definitions/grib2/tables/27/4.242.table create mode 100644 definitions/grib2/tables/27/4.243.table create mode 100644 definitions/grib2/tables/27/4.244.table create mode 100644 definitions/grib2/tables/27/4.246.table create mode 100644 definitions/grib2/tables/27/4.247.table create mode 100644 definitions/grib2/tables/27/4.248.table create mode 100644 definitions/grib2/tables/27/4.3.table create mode 100644 definitions/grib2/tables/27/4.4.table create mode 100644 definitions/grib2/tables/27/4.5.table create mode 100644 definitions/grib2/tables/27/4.6.table create mode 100644 definitions/grib2/tables/27/4.7.table create mode 100644 definitions/grib2/tables/27/4.8.table create mode 100644 definitions/grib2/tables/27/4.9.table create mode 100644 definitions/grib2/tables/27/4.91.table create mode 100644 definitions/grib2/tables/27/5.0.table create mode 100644 definitions/grib2/tables/27/5.1.table create mode 100644 definitions/grib2/tables/27/5.2.table create mode 100644 definitions/grib2/tables/27/5.25.table create mode 100644 definitions/grib2/tables/27/5.26.table create mode 100644 definitions/grib2/tables/27/5.3.table create mode 100644 definitions/grib2/tables/27/5.4.table create mode 100644 definitions/grib2/tables/27/5.40.table create mode 100644 definitions/grib2/tables/27/5.5.table create mode 100644 definitions/grib2/tables/27/5.6.table create mode 100644 definitions/grib2/tables/27/5.7.table create mode 100644 definitions/grib2/tables/27/6.0.table create mode 100644 definitions/grib2/tables/27/stepType.table diff --git a/definitions/grib2/boot.def b/definitions/grib2/boot.def index 1fc76c980..b6c009526 100644 --- a/definitions/grib2/boot.def +++ b/definitions/grib2/boot.def @@ -9,7 +9,7 @@ # This gets updated twice a year by WMO. # See http://www.wmo.int/pages/prog/www/WMOCodes/WMO306_vI2/LatestVERSION/LatestVERSION.html -constant tablesVersionLatest = 26 : edition_specific; +constant tablesVersionLatest = 27 : edition_specific; constant million = 1000000 : hidden; constant grib2divider = 1000000; diff --git a/definitions/grib2/tables/27/0.0.table b/definitions/grib2/tables/27/0.0.table new file mode 100644 index 000000000..71ac57ab3 --- /dev/null +++ b/definitions/grib2/tables/27/0.0.table @@ -0,0 +1,13 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Satellite remote sensing products (formerly Space products) +4 4 Space weather products +# 5-9 Reserved +10 10 Oceanographic products +# 11-19 Reserved +20 20 Health and socioeconomic impacts +# 21-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/1.0.table b/definitions/grib2/tables/27/1.0.table new file mode 100644 index 000000000..f4299ae1a --- /dev/null +++ b/definitions/grib2/tables/27/1.0.table @@ -0,0 +1,30 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Version implemented on 6 May 2015 +16 16 Version implemented on 11 November 2015 +17 17 Version implemented on 4 May 2016 +18 18 Version implemented on 2 November 2016 +19 19 Version implemented on 3 May 2017 +20 20 Version implemented on 8 November 2017 +21 21 Version implemented on 2 May 2018 +22 22 Version implemented on 7 November 2018 +23 23 Version implemented on 15 May 2019 +24 24 Version implemented on 6 November 2019 +25 25 Version implemented on 6 May 2020 +26 26 Version implemented on 16 November 2020 +# 27-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/definitions/grib2/tables/27/1.1.table b/definitions/grib2/tables/27/1.1.table new file mode 100644 index 000000000..d50f8fd72 --- /dev/null +++ b/definitions/grib2/tables/27/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/definitions/grib2/tables/27/1.2.table b/definitions/grib2/tables/27/1.2.table new file mode 100644 index 000000000..9833a2721 --- /dev/null +++ b/definitions/grib2/tables/27/1.2.table @@ -0,0 +1,9 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +4 4 Local time +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/1.3.table b/definitions/grib2/tables/27/1.3.table new file mode 100644 index 000000000..dc138ef12 --- /dev/null +++ b/definitions/grib2/tables/27/1.3.table @@ -0,0 +1,16 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 S2S operational products +7 7 S2S test products +8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) +9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) +10 10 Copernicus regional reanalysis (CARRA/CERRA) +11 11 Copernicus regional reanalysis test (CARRA/CERRA) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/1.4.table b/definitions/grib2/tables/27/1.4.table new file mode 100644 index 000000000..03203d874 --- /dev/null +++ b/definitions/grib2/tables/27/1.4.table @@ -0,0 +1,13 @@ +# Code table 1.4 - Type of data +0 an Analysis products +1 fc Forecast products +2 af Analysis and forecast products +3 cf Control forecast products +4 pf Perturbed forecast products +5 cp Control and perturbed forecast products +6 sa Processed satellite observations +7 ra Processed radar observations +8 ep Event probability +# 9-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/definitions/grib2/tables/27/1.5.table b/definitions/grib2/tables/27/1.5.table new file mode 100644 index 000000000..b2cf9f087 --- /dev/null +++ b/definitions/grib2/tables/27/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/definitions/grib2/tables/27/1.6.table b/definitions/grib2/tables/27/1.6.table new file mode 100644 index 000000000..5db921990 --- /dev/null +++ b/definitions/grib2/tables/27/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/3.0.table b/definitions/grib2/tables/27/3.0.table new file mode 100644 index 000000000..45187b80d --- /dev/null +++ b/definitions/grib2/tables/27/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/definitions/grib2/tables/27/3.1.table b/definitions/grib2/tables/27/3.1.table new file mode 100644 index 000000000..ed68c5144 --- /dev/null +++ b/definitions/grib2/tables/27/3.1.table @@ -0,0 +1,54 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +# 11-12 Reserved +13 13 Mercator with modelling subdomains definition +# 14-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-22 Reserved +23 23 Polar stereographic with modelling subdomains definition +# 24-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +32 32 Reserved +33 33 Lambert conformal with modelling subdomains definition +# 34-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-60 Reserved +61 61 Spectral Mercator with modelling subdomains definition +62 62 Spectral polar stereographic with modelling subdomains definition +63 63 Spectral Lambert conformal with modelling subdomains definition +# 64-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/definitions/grib2/tables/27/3.10.table b/definitions/grib2/tables/27/3.10.table new file mode 100644 index 000000000..afa8843a7 --- /dev/null +++ b/definitions/grib2/tables/27/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/definitions/grib2/tables/27/3.11.table b/definitions/grib2/tables/27/3.11.table new file mode 100644 index 000000000..e516a2ab9 --- /dev/null +++ b/definitions/grib2/tables/27/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/3.15.table b/definitions/grib2/tables/27/3.15.table new file mode 100644 index 000000000..331217ebe --- /dev/null +++ b/definitions/grib2/tables/27/3.15.table @@ -0,0 +1,23 @@ +# Code table 3.15 - Physical meaning of vertical coordinate +# 0-19 Reserved +20 20 Temperature (K) +# 21-99 Reserved +100 100 Pressure (Pa) +101 101 Pressure deviation from mean sea level (Pa) +102 102 Altitude above mean sea level (m) +103 103 Height above ground (m) +104 104 Sigma coordinate +105 105 Hybrid coordinate +106 106 Depth below land surface (m) +107 pt Potential temperature (theta) (K) +108 108 Pressure deviation from ground to level (Pa) +109 pv Potential vorticity (K m-2 kg-1 s-1) +110 110 Geometrical height (m) +111 111 Eta coordinate +112 112 Geopotential height (gpm) +113 113 Logarithmic hybrid coordinate +# 114-159 Reserved +160 160 Depth below sea level (m) +# 161-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/3.2.table b/definitions/grib2/tables/27/3.2.table new file mode 100644 index 000000000..03cfbafa8 --- /dev/null +++ b/definitions/grib2/tables/27/3.2.table @@ -0,0 +1,16 @@ +# Code table 3.2 - Shape of the reference system +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +10 10 Earth model assumed WGS84 with corrected geomagnetic coordinates (latitude and longitude) defined by Gustafsson et al., 1992 +11 11 Sun assumed spherical with radius = 695,990,000 m (Allen, C.W., 1976 Astrophysical Quantities (3rd Ed.; London: Athlone) and Stonyhurst latitude and longitude system with origin at the intersection of the solar central meridian (as seen from Earth) and the solar equator (Thompson, W, Coordinate systems for solar image data, A&A 449, 791–803 (2006)) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/3.20.table b/definitions/grib2/tables/27/3.20.table new file mode 100644 index 000000000..efbf08d19 --- /dev/null +++ b/definitions/grib2/tables/27/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/3.21.table b/definitions/grib2/tables/27/3.21.table new file mode 100644 index 000000000..88dbb9019 --- /dev/null +++ b/definitions/grib2/tables/27/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/3.25.table b/definitions/grib2/tables/27/3.25.table new file mode 100644 index 000000000..de1bc74ed --- /dev/null +++ b/definitions/grib2/tables/27/3.25.table @@ -0,0 +1,10 @@ +# Code table 3.25 - Type of bi-Fourier truncation +# 0-76 Reserved +77 77 Rectangular +# 78-87 Reserved +88 88 Elliptic +# 89-98 Reserved +99 99 Diamond +# 100-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/3.3.table b/definitions/grib2/tables/27/3.3.table new file mode 100644 index 000000000..5dd7c7001 --- /dev/null +++ b/definitions/grib2/tables/27/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/definitions/grib2/tables/27/3.4.table b/definitions/grib2/tables/27/3.4.table new file mode 100644 index 000000000..897b813d7 --- /dev/null +++ b/definitions/grib2/tables/27/3.4.table @@ -0,0 +1,17 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +5 0 Points within odd rows are not offset in i (x) direction +5 1 Points within odd rows are offset by Di/2 in i (x) direction +6 0 Points within even rows are not offset in i (x) direction +6 1 Points within even rows are offset by Di/2 in i (x) direction +7 0 Points are not offset in j (y) direction +7 1 Points are offset by Dj/2 in j (y) direction +8 0 Rows have Ni grid points and columns have Nj grid points +8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/definitions/grib2/tables/27/3.5.table b/definitions/grib2/tables/27/3.5.table new file mode 100644 index 000000000..eabdde896 --- /dev/null +++ b/definitions/grib2/tables/27/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/definitions/grib2/tables/27/3.6.table b/definitions/grib2/tables/27/3.6.table new file mode 100644 index 000000000..dc7d107aa --- /dev/null +++ b/definitions/grib2/tables/27/3.6.table @@ -0,0 +1,3 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file +2 2 Bi-Fourier representation diff --git a/definitions/grib2/tables/27/3.7.table b/definitions/grib2/tables/27/3.7.table new file mode 100644 index 000000000..0a7d6efde --- /dev/null +++ b/definitions/grib2/tables/27/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/3.8.table b/definitions/grib2/tables/27/3.8.table new file mode 100644 index 000000000..844e74235 --- /dev/null +++ b/definitions/grib2/tables/27/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/3.9.table b/definitions/grib2/tables/27/3.9.table new file mode 100644 index 000000000..fd730bc64 --- /dev/null +++ b/definitions/grib2/tables/27/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/definitions/grib2/tables/27/4.0.table b/definitions/grib2/tables/27/4.0.table new file mode 100644 index 000000000..aa071fcb4 --- /dev/null +++ b/definitions/grib2/tables/27/4.0.table @@ -0,0 +1,87 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +35 35 Satellite product with or without associated quality values +# 36-39 Reserved +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +# 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) +57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) +60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +62 62 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +63 63 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for spatio-temporal changing tiles +# 64-66 Reserved +67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +# 69 Reserved +70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time +71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 74-75 Reserved +76 76 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source or sink +77 77 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source or sink +78 78 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source or sink +79 79 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source or sink +80 80 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source or sink +81 81 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source or sink +82 82 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink +83 83 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink +84 84 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink +85 85 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +86 86 Quantile forecasts at a horizontal level or in a horizontal layer at a point in time +87 87 Quantile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +88 88 Analysis or Forecast at a horizontal level or in a horizontal layer at a local time +# 89-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/definitions/grib2/tables/27/4.1.0.table b/definitions/grib2/tables/27/4.1.0.table new file mode 100644 index 000000000..04cfd7802 --- /dev/null +++ b/definitions/grib2/tables/27/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.1.1.table b/definitions/grib2/tables/27/4.1.1.table new file mode 100644 index 000000000..7b22b6fed --- /dev/null +++ b/definitions/grib2/tables/27/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.1.10.table b/definitions/grib2/tables/27/4.1.10.table new file mode 100644 index 000000000..a9b20eb9c --- /dev/null +++ b/definitions/grib2/tables/27/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Subsurface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.1.192.table b/definitions/grib2/tables/27/4.1.192.table new file mode 100644 index 000000000..c428acab0 --- /dev/null +++ b/definitions/grib2/tables/27/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/definitions/grib2/tables/27/4.1.2.table b/definitions/grib2/tables/27/4.1.2.table new file mode 100644 index 000000000..60e2452d4 --- /dev/null +++ b/definitions/grib2/tables/27/4.1.2.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +5 5 Glaciers and inland ice +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.1.20.table b/definitions/grib2/tables/27/4.1.20.table new file mode 100644 index 000000000..afad6c811 --- /dev/null +++ b/definitions/grib2/tables/27/4.1.20.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Health indicators +1 1 Epidemiology +2 2 Socioeconomic indicators +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.1.3.table b/definitions/grib2/tables/27/4.1.3.table new file mode 100644 index 000000000..7bf60d4a7 --- /dev/null +++ b/definitions/grib2/tables/27/4.1.3.table @@ -0,0 +1,11 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +2 2 Cloud properties +3 3 Flight rule conditions +4 4 Volcanic ash +5 5 Sea-surface temperature +6 6 Solar radiation +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.1.4.table b/definitions/grib2/tables/27/4.1.4.table new file mode 100644 index 000000000..4d3e1cf2b --- /dev/null +++ b/definitions/grib2/tables/27/4.1.4.table @@ -0,0 +1,15 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Momentum +2 2 Charged particle mass and number +3 3 Electric and magnetic fields +4 4 Energetic particles +5 5 Waves +6 6 Solar electromagnetic emissions +7 7 Terrestrial electromagnetic emissions +8 8 Imagery +9 9 Ion-neutral coupling +10 10 Space weather indices +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.10.table b/definitions/grib2/tables/27/4.10.table new file mode 100644 index 000000000..1a92baaf6 --- /dev/null +++ b/definitions/grib2/tables/27/4.10.table @@ -0,0 +1,16 @@ +# Code table 4.10 - Type of statistical processing +0 avg Average +1 accum Accumulation +2 max Maximum +3 min Minimum +4 diff Difference (value at the end of time range minus value at the beginning) +5 rms Root mean square +6 sd Standard deviation +7 cov Covariance (temporal variance) +8 8 Difference (value at the start of time range minus value at the end) +9 ratio Ratio +10 10 Standardized anomaly +11 11 Summation +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/definitions/grib2/tables/27/4.11.table b/definitions/grib2/tables/27/4.11.table new file mode 100644 index 000000000..7f404c849 --- /dev/null +++ b/definitions/grib2/tables/27/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.12.table b/definitions/grib2/tables/27/4.12.table new file mode 100644 index 000000000..03fd89b36 --- /dev/null +++ b/definitions/grib2/tables/27/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.13.table b/definitions/grib2/tables/27/4.13.table new file mode 100644 index 000000000..c92854eec --- /dev/null +++ b/definitions/grib2/tables/27/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.14.table b/definitions/grib2/tables/27/4.14.table new file mode 100644 index 000000000..a88cb93fa --- /dev/null +++ b/definitions/grib2/tables/27/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.15.table b/definitions/grib2/tables/27/4.15.table new file mode 100644 index 000000000..2e5f3dea3 --- /dev/null +++ b/definitions/grib2/tables/27/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.16.table b/definitions/grib2/tables/27/4.16.table new file mode 100644 index 000000000..fedb05324 --- /dev/null +++ b/definitions/grib2/tables/27/4.16.table @@ -0,0 +1,10 @@ +# Code table 4.16 - Quality value associated with parameter +0 0 Confidence index +1 1 Quality indicator +2 2 Correlation of product with used calibration product +3 3 Standard deviation +4 4 Random error +5 5 Probability +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.192.table b/definitions/grib2/tables/27/4.192.table new file mode 100644 index 000000000..e1fd91594 --- /dev/null +++ b/definitions/grib2/tables/27/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/definitions/grib2/tables/27/4.2.0.0.table b/definitions/grib2/tables/27/4.2.0.0.table new file mode 100644 index 000000000..4844c33f3 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.0.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +21 21 Apparent temperature (K) +22 22 Temperature tendency due to short-wave radiation (K s-1) +23 23 Temperature tendency due to long-wave radiation (K s-1) +24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) +25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) +26 26 Temperature tendency due to parameterization (K s-1) +27 27 Wet-bulb temperature (K) +28 28 Unbalanced component of temperature (K) +29 29 Temperature advection (K s-1) +30 30 Latent heat net flux due to evaporation (W m-2) +31 31 Latent heat net flux due to sublimation (W m-2) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.1.table b/definitions/grib2/tables/27/4.2.0.1.table new file mode 100644 index 000000000..58d32d867 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.1.table @@ -0,0 +1,150 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water=vapour + cloud water/ice) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +87 87 Stratiform precipitation rate (kg m-2 s-1) +88 88 Categorical convective precipitation (Code table 4.222) +# 89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +93 93 Relative humidity with respect to water (%) +94 94 Relative humidity with respect to ice (%) +95 95 Freezing or frozen precipitation rate (kg m-2 s-1) +96 96 Mass density of rain (kg m-3) +97 97 Mass density of snow (kg m-3) +98 98 Mass density of graupel (kg m-3) +99 99 Mass density of hail (kg m-3) +100 100 Specific number concentration of rain (kg-1) +101 101 Specific number concentration of snow (kg-1) +102 102 Specific number concentration of graupel (kg-1) +103 103 Specific number concentration of hail (kg-1) +104 104 Number density of rain (m-3) +105 105 Number density of snow (m-3) +106 106 Number density of graupel (m-3) +107 107 Number density of hail (m-3) +108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) +109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) +110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) +111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) +112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) +113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) +114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) +115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) +116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) +117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) +118 118 Unbalanced component of specific humidity (kg kg-1) +119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) +120 120 Unbalanced component of specific cloud ice water content (kg kg-1) +121 121 Fraction of snow cover (Proportion) +122 122 Precipitation intensity index (Code table 4.247) +123 123 Dominant precipitation type (Code table 4.201) +124 124 Presence of showers (Code table 4.222) +125 125 Presence of blowing snow (Code table 4.222) +126 126 Presence of blizzard (Code table 4.222) +127 127 Ice pellets (non water equivalent) precipitation rate (m/s) +128 128 Total solid precipitation rate (kg m-2 s-1) +129 129 Effective radius of cloud water (m) +130 130 Effective radius of rain (m) +131 131 Effective radius of cloud ice (m) +132 132 Effective radius of snow (m) +133 133 Effective radius of graupel (m) +134 134 Effective radius of hail (m) +135 135 Effective radius of subgrid liquid clouds (m) +136 136 Effective radius of subgrid ice clouds (m) +137 137 Effective aspect ratio of rain (-) +138 138 Effective aspect ratio of cloud ice (-) +139 139 Effective aspect ratio of snow (-) +140 140 Effective aspect ratio of graupel (-) +141 141 Effective aspect ratio of hail (-) +142 142 Effective aspect ratio of subgrid ice clouds (-) +143 143 Potential evaporation rate (kg m–2 s–1) +144 144 specific rain water content (convective) (kg kg-1) +145 145 specific snow water content (convective) (kg kg-1) +# 146-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.13.table b/definitions/grib2/tables/27/4.2.0.13.table new file mode 100644 index 000000000..5086101ad --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.14.table b/definitions/grib2/tables/27/4.2.0.14.table new file mode 100644 index 000000000..215884737 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.15.table b/definitions/grib2/tables/27/4.2.0.15.table new file mode 100644 index 000000000..dfbc4d12f --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.15.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +15 15 Hybrid scan reflectivity (dB) +16 16 Hybrid scan reflectivity height (m) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.16.table b/definitions/grib2/tables/27/4.2.0.16.table new file mode 100644 index 000000000..0c240a853 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.17.table b/definitions/grib2/tables/27/4.2.0.17.table new file mode 100644 index 000000000..ce1867aca --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.17.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Lightning strike density (m-2 s-1) +1 1 Lightning potential index (LPI) (J kg-1) +2 2 Cloud-to-ground Lightning flash density (km-2 day-1) +3 3 Cloud-to-cloud Lightning flash density (km-2 day-1) +4 4 Total Lightning flash density (km-2 day-1) diff --git a/definitions/grib2/tables/27/4.2.0.18.table b/definitions/grib2/tables/27/4.2.0.18.table new file mode 100644 index 000000000..9d106f419 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.18.table @@ -0,0 +1,23 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +14 14 Specific activity concentration (Bq kg-1) +15 15 Maximum of air concentration in layer (Bq m-3) +16 16 Height of maximum air concentration (m) +17 17 Column-integrated air concentration (Bq m-2) +18 18 Column-averaged air concentration in layer (Bq m-3) +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.19.table b/definitions/grib2/tables/27/4.2.0.19.table new file mode 100644 index 000000000..3ffe0c124 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.19.table @@ -0,0 +1,45 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) +29 29 Clear air turbulence (CAT) (m2/3 s-1) +30 30 Eddy dissipation parameter (m2/3 s-1) +31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) +32 32 Highest freezing level (m) +33 33 Visibility through liquid fog (m) +34 34 Visibility through ice fog (m) +35 35 Visibility through blowing snow (m) +36 36 Presence of snow squalls (Code table 4.222) +37 37 Icing severity (Code table 4.228) +38 38 Sky transparency index (Code Table 4.214) +39 39 Seeing index (Code Table 4.214) +40 40 Snow level (m) +# 41-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.190.table b/definitions/grib2/tables/27/4.2.0.190.table new file mode 100644 index 000000000..de621a924 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.191.table b/definitions/grib2/tables/27/4.2.0.191.table new file mode 100644 index 000000000..e3bba0ebe --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.2.table b/definitions/grib2/tables/27/4.2.0.2.table new file mode 100644 index 000000000..5446262e6 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.2.table @@ -0,0 +1,51 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) +37 37 Northward turbulent surface stress (N m-2 s) +38 38 Eastward turbulent surface stress (N m-2 s) +39 39 Eastward wind tendency due to parameterization (m s-2) +40 40 Northward wind tendency due to parameterization (m s-2) +41 41 u-component of geostrophic wind (m s-1) +42 42 v-component of geostrophic wind (m s-1) +43 43 Geostrophic wind direction (degree true) +44 44 Geostrophic wind speed (m s-1) +45 45 Unbalanced component of divergence (s-1) +46 46 Vorticity advection (s-2) +# 47-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.20.table b/definitions/grib2/tables/27/4.2.0.20.table new file mode 100644 index 000000000..042732760 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.20.table @@ -0,0 +1,64 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +15 15 Dry deposition velocity (m/s) +16 16 Mass mixing ratio with respect to dry air (kg/kg) +17 17 Mass mixing ratio with respect to wet air (kg/kg) +# 18-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +60 60 Aerosol specific number concentration (kg-1) +61 61 Maximum of mass density in layer (kg m-3) +62 62 Height of maximum mass density (m) +63 63 Column-averaged mass density in layer (kg m-3) +64 64 Mole fraction with respect to dry air (mol/mol) +65 65 Mole fraction with respect to wet air (mol/mol) +66 66 Column-integrated in-cloud scavenging rate by precipitation (kg m-2 s-1) +67 67 Column-integrated below-cloud scavenging rate by precipitation (kg m-2 s-1) +68 68 Column-integrated release rate from evaporating precipitation (kg m-2 s-1) +69 69 Column-integrated in-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) +70 70 Column-integrated below-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) +71 71 Column-integrated release rate from evaporating large-scale precipitation (kg m-2 s-1) +72 72 Column-integrated in-cloud scavenging rate by convective precipitation (kg m-2 s-1) +73 73 Column-integrated below-cloud scavenging rate by convective precipitation (kg m-2 s-1) +74 74 Column-integrated release rate from evaporating convective precipitation (kg m-2 s-1) +75 75 Wildfire flux (kg m-2 s-1) +76 76 Emission rate (kg kg-1 s-1) +77 77 Surface emission flux (kg m-2 s-1) +# 78-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (/m) +106 106 Aerosol absorption coefficient (/m) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (/m) +110 110 Aerosol lidar extinction from the ground (/m) +111 111 Angstrom exponent (Numeric) +# 112-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.3.table b/definitions/grib2/tables/27/4.2.0.3.table new file mode 100644 index 000000000..34941dcab --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.3.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +27 27 Updraught mass flux (kg m-2 s-1) +28 28 Downdraught mass flux (kg m-2 s-1) +29 29 Updraught detrainment rate (kg m-3 s-1) +30 30 Downdraught detrainment rate (kg m-3 s-1) +31 31 Unbalanced component of logarithm of surface pressure (-) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.4.table b/definitions/grib2/tables/27/4.2.0.4.table new file mode 100644 index 000000000..31dcfa522 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.4.table @@ -0,0 +1,25 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wavelength) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +13 13 Direct short-wave radiation flux (W m-2) +14 14 Diffuse short-wave radiation flux (W m-2) +# 15-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +52 52 Downward short-wave radiation flux, clear sky (W m-2) +53 53 Upward short-wave radiation flux, clear sky (W m-2) +54 54 Direct normal short-wave radiation flux (W m-2) +# 55-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.5.table b/definitions/grib2/tables/27/4.2.0.5.table new file mode 100644 index 000000000..4550220b6 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.5.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +7 7 Brightness temperature (K) +8 8 Downward long-wave radiation flux, clear sky (W m-2) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.6.table b/definitions/grib2/tables/27/4.2.0.6.table new file mode 100644 index 000000000..2ffd9d513 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.6.table @@ -0,0 +1,50 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +36 36 Fraction of stratiform precipitation cover (Proportion) +37 37 Fraction of convective precipitation cover (Proportion) +38 38 Mass density of cloud droplets (kg m-3) +39 39 Mass density of cloud ice (kg m-3) +40 40 Mass density of convective cloud water droplets (kg m-3) +# 41-46 Reserved +47 47 Volume fraction of cloud water droplets (Numeric) +48 48 Volume fraction of cloud ice particles (Numeric) +49 49 Volume fraction of cloud (ice and/or water) (Numeric) +50 50 Fog (%) +# 51-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.7.table b/definitions/grib2/tables/27/4.2.0.7.table new file mode 100644 index 000000000..04d7f393f --- /dev/null +++ b/definitions/grib2/tables/27/4.2.0.7.table @@ -0,0 +1,25 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraught helicity (m2 s-2) +16 16 Bulk Richardson number (Numeric) +17 17 Gradient Richardson number (Numeric) +18 18 Flux Richardson number (Numeric) +19 19 Convective available potential energy - shear (m2 s-2) +20 20 Thunderstorm intensity index (Code table 4.246) +# 21-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.1.0.table b/definitions/grib2/tables/27/4.2.1.0.table new file mode 100644 index 000000000..bcd849c2e --- /dev/null +++ b/definitions/grib2/tables/27/4.2.1.0.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +8 8 Groundwater upper storage (kg m-2) +9 9 Groundwater lower storage (kg m-2) +10 10 Side flow into river channel (m3 s-1 m-1) +11 11 River storage of water (m3) +12 12 Floodplain storage of water (m3) +13 13 Depth of water on soil surface (kg m-2) +14 14 Upstream accumulated precipitation (kg m-2) +15 15 Upstream accumulated snow melt (kg m-2) +16 16 Percolation rate (kg m-2 s-1) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.1.1.table b/definitions/grib2/tables/27/4.2.1.1.table new file mode 100644 index 000000000..b488eb0bd --- /dev/null +++ b/definitions/grib2/tables/27/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.1.2.table b/definitions/grib2/tables/27/4.2.1.2.table new file mode 100644 index 000000000..ec9b11d41 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.1.2.table @@ -0,0 +1,15 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) +13 13 Cross-sectional area of flow in channel (m2) diff --git a/definitions/grib2/tables/27/4.2.10.0.table b/definitions/grib2/tables/27/4.2.10.0.table new file mode 100644 index 000000000..de15555c0 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.10.0.table @@ -0,0 +1,69 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Mean direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m/s) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m/s) +22 22 v-component surface Stokes drift (m/s) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m/s) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (/s) +46 46 Peak wave direction (deg) +47 47 Significant wave height of first swell partition (m) +48 48 Significant wave height of second swell partition (m) +49 49 Significant wave height of third swell partition (m) +50 50 Mean wave period of first swell partition (s) +51 51 Mean wave period of second swell partition (s) +52 52 Mean wave period of third swell partition (s) +53 53 Mean wave direction of first swell partition (deg) +54 54 Mean wave direction of second swell partition (deg) +55 55 Mean wave direction of third swell partition (deg) +56 56 Wave directional width of first swell partition (-) +57 57 Wave directional width of second swell partition (-) +58 58 Wave directional width of third swell partition (-) +59 59 Wave frequency width of first swell partition (-) +60 60 Wave frequency width of second swell partition (-) +61 61 Wave frequency width of third swell partition (-) +62 62 Wave frequency width (-) +63 63 Frequency width of wind waves (-) +64 64 Frequency width of total swell (-) +# 65-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.1.table b/definitions/grib2/tables/27/4.2.10.1.table new file mode 100644 index 000000000..00a084e34 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.10.1.table @@ -0,0 +1,9 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +4 4 Rip current occurrence probability (%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.191.table b/definitions/grib2/tables/27/4.2.10.191.table new file mode 100644 index 000000000..524929e78 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.10.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +2 2 Reserved +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.2.table b/definitions/grib2/tables/27/4.2.10.2.table new file mode 100644 index 000000000..6797062ac --- /dev/null +++ b/definitions/grib2/tables/27/4.2.10.2.table @@ -0,0 +1,17 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Module of ice internal pressure (Pa m) +10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) +11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) +12 12 Compressive ice strength (N/m) +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.3.table b/definitions/grib2/tables/27/4.2.10.3.table new file mode 100644 index 000000000..9f9492f04 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.10.3.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +2 2 Heat exchange coefficient (-) +3 3 Practical salinity (Numeric) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.4.table b/definitions/grib2/tables/27/4.2.10.4.table new file mode 100644 index 000000000..69ba0cc66 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.10.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2/s) +5 5 Ocean vertical salt diffusivity (m2/s) +6 6 Ocean vertical momentum diffusivity (m2/s) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (/m) +14 14 Water depth (m) +15 15 Water temperature (K) +16 16 Water density (rho) (kg m-3) +17 17 Water density anomaly (sigma) (kg m-3) +18 18 Water potential temperature (theta) (K) +19 19 Water potential density (rho theta) (kg m-3) +20 20 Water potential density anomaly (sigma theta) (kg m-3) +21 21 Practical salinity (Numeric) +# 22-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.2.0.table b/definitions/grib2/tables/27/4.2.2.0.table new file mode 100644 index 000000000..849c2f1e4 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.2.0.table @@ -0,0 +1,44 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +33 33 Water runoff and drainage (kg m-2) +34 34 Surface water runoff (kg m-2) +35 35 Tile class (Code table 4.243) +36 36 Tile fraction (Proportion) +37 37 Tile percentage (%) +38 38 Soil volumetric ice content (water equivalent) (m3 m-3) +39 39 Evapotranspiration rate (kg m-2 s-1) +# 40-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.2.3.table b/definitions/grib2/tables/27/4.2.2.3.table new file mode 100644 index 000000000..b77400890 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.2.3.table @@ -0,0 +1,33 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +23 23 Liquid water in snow pack (kg m-2) +24 24 Frost index (K day-1) +25 25 Snow depth at elevation bands (kg m-2) +26 26 Soil heat flux (W m-2) +27 27 Soil depth (m) +28 28 Snow temperature (K) +# 29-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.2.4.table b/definitions/grib2/tables/27/4.2.2.4.table new file mode 100644 index 000000000..a54e0f50d --- /dev/null +++ b/definitions/grib2/tables/27/4.2.2.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines index (Numeric) +3 3 Fire burned area (%) +4 4 Fosberg index (Numeric) +5 5 Forest Fire Weather Index (as defined by the Canadian Forest Service) (Numeric) +6 6 Fine Fuel Moisture Code (as defined by the Canadian Forest Service) (Numeric) +7 7 Duff Moisture Code (as defined by the Canadian Forest Service) (Numeric) +8 8 Drought Code (as defined by the Canadian Forest Service) (Numeric) +9 9 Initial Fire Spread Index (as defined by the Canadian Forest Service) (Numeric) +10 10 Fire Buildup Index (as defined by the Canadian Forest Service) (Numeric) +11 11 Fire Daily Severity Rating (as defined by the Canadian Forest Service) (Numeric) +12 12 Keetch-Byram drought index (Numeric) +13 13 Drought factor (as defined by the Australian forest service ) (Numeric) +14 14 Rate of spread (as defined by the Australian forest service ) (m/s) +15 15 Fire danger index (as defined by the Australian forest service ) (Numeric) +16 16 Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) (Numeric) +17 17 Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) (Numeric) +18 18 Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) (%) +19 19 Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) (Joule/m2) +# 20-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.2.5.table b/definitions/grib2/tables/27/4.2.2.5.table new file mode 100644 index 000000000..122f0aa23 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.2.5.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Glacier cover (Proportion) +1 1 Glacier temperature (K) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.20.0.table b/definitions/grib2/tables/27/4.2.20.0.table new file mode 100644 index 000000000..9cd936387 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.20.0.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Universal thermal climate index (K) +1 1 Mean radiant temperature (K) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.20.1.table b/definitions/grib2/tables/27/4.2.20.1.table new file mode 100644 index 000000000..bdddca5f9 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.20.1.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Malaria cases (Fraction) +1 1 Malaria circumsporozoite protein rate (Fraction) +2 2 Plasmodium falciparum entomological inoculation rate (Bites per day per person) +3 3 Human bite rate by anopheles vectors (Bites per day per person) +4 4 Malaria immunity (Fraction) +5 5 Falciparum parasite rates (Fraction) +6 6 Detectable falciparum parasite ratio (after day 10) (Fraction) +7 7 Anopheles vector to host ratio (Fraction) +8 8 Anopheles vector number (Number m-2) +9 9 Fraction of malarial vector reproductive habitat (Fraction) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.20.2.table b/definitions/grib2/tables/27/4.2.20.2.table new file mode 100644 index 000000000..0804bcafd --- /dev/null +++ b/definitions/grib2/tables/27/4.2.20.2.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Population density (Person m-2) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.3.0.table b/definitions/grib2/tables/27/4.2.3.0.table new file mode 100644 index 000000000..c0ffa29f5 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.3.1.table b/definitions/grib2/tables/27/4.2.3.1.table new file mode 100644 index 000000000..7d4364f4d --- /dev/null +++ b/definitions/grib2/tables/27/4.2.3.1.table @@ -0,0 +1,35 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u-component of wind (m/s) +5 5 Estimated v-component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-26 Reserved +27 27 Bidirectional reflectance factor (numeric) +28 28 Brightness temperature (K) +29 29 Scaled radiance (numeric) +# 30-97 Reserved +98 98 Correlation coefficient between MPE rain-rates for the co-located IR data and the microwave data rain-rates (Numeric) +99 99 Standard deviation between MPE rain-rates for the co-located IR data and the microwave data rain-rates (kg m-2 s-1) +# 100-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.3.2.table b/definitions/grib2/tables/27/4.2.3.2.table new file mode 100644 index 000000000..6316ab39c --- /dev/null +++ b/definitions/grib2/tables/27/4.2.3.2.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Clear sky probability (%) +1 1 Cloud top temperature (K) +2 2 Cloud top pressure (Pa) +3 3 Cloud type (Code table 4.218) +4 4 Cloud phase (Code table 4.218) +5 5 Cloud optical depth (Numeric) +6 6 Cloud particle effective radius (m) +7 7 Cloud liquid water path (kg m-2) +8 8 Cloud ice water path (kg m-2) +9 9 Cloud albedo (Numeric) +10 10 Cloud emissivity (Numeric) +11 11 Effective absorption optical depth ratio (Numeric) +30 30 Measurement cost (Numeric) +31 31 Upper layer cloud optical depth (Numeric) +32 32 Upper layer cloud top pressure (Pa) +33 33 Upper layer cloud effective radius (m) +34 34 Error in upper layer cloud optical depth (Numeric) +35 35 Error in upper layer cloud top pressure (Pa) +36 36 Error in upper layer cloud effective radius (m) +37 37 Lower layer cloud optical depth (Numeric) +38 38 Lower layer cloud top pressure (Pa) +39 39 Error in lower layer cloud optical depth (Numeric) +40 40 Error in lower layer cloud top pressure (Pa) diff --git a/definitions/grib2/tables/27/4.2.3.3.table b/definitions/grib2/tables/27/4.2.3.3.table new file mode 100644 index 000000000..cb5c4b6ed --- /dev/null +++ b/definitions/grib2/tables/27/4.2.3.3.table @@ -0,0 +1,4 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Probability of encountering marginal visual flight rule conditions (%) +1 1 Probability of encountering low instrument flight rule conditions (%) +2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/definitions/grib2/tables/27/4.2.3.4.table b/definitions/grib2/tables/27/4.2.3.4.table new file mode 100644 index 000000000..f86d2d653 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.3.4.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Volcanic ash probability (%) +1 1 Volcanic ash cloud top temperature (K) +2 2 Volcanic ash cloud top pressure (Pa) +3 3 Volcanic ash cloud top height (m) +4 4 Volcanic ash cloud emissivity (Numeric) +5 5 Volcanic ash effective absorption optical depth ratio (Numeric) +6 6 Volcanic ash cloud optical depth (Numeric) +7 7 Volcanic ash column density (kg m-2) +8 8 Volcanic ash particle effective radius (m) diff --git a/definitions/grib2/tables/27/4.2.3.5.table b/definitions/grib2/tables/27/4.2.3.5.table new file mode 100644 index 000000000..92a050db0 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.3.5.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Interface sea-surface temperature (K) +1 1 Skin sea-surface temperature (K) +2 2 Sub-skin sea-surface temperature (K) +3 3 Foundation sea-surface temperature (K) +4 4 Estimated bias between sea-surface temperature and standard (K) +5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/definitions/grib2/tables/27/4.2.3.6.table b/definitions/grib2/tables/27/4.2.3.6.table new file mode 100644 index 000000000..471beed55 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.3.6.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Global solar irradiance (W m-2) +1 1 Global solar exposure (J m-2) +2 2 Direct solar irradiance (W m-2) +3 3 Direct solar exposure (J m-2) +4 4 Diffuse solar irradiance (W m-2) +5 5 Diffuse solar exposure (J m-2) diff --git a/definitions/grib2/tables/27/4.2.4.0.table b/definitions/grib2/tables/27/4.2.4.0.table new file mode 100644 index 000000000..0b35aba26 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.0.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Electron temperature (K) +2 2 Proton temperature (K) +3 3 Ion temperature (K) +4 4 Parallel temperature (K) +5 5 Perpendicular temperature (K) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.1.table b/definitions/grib2/tables/27/4.2.4.1.table new file mode 100644 index 000000000..abd58440a --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.1.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Velocity magnitude (speed) (m s-1) +1 1 1st vector component of velocity (coordinate system dependent) (m s-1) +2 2 2nd vector component of velocity (coordinate system dependent) (m s-1) +3 3 3rd vector component of velocity (coordinate system dependent) (m s-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.10.table b/definitions/grib2/tables/27/4.2.4.10.table new file mode 100644 index 000000000..420d2b43d --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.10.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scintillation index (sigma phi) (rad) +1 1 Scintillation index S4 (Numeric) +2 2 Rate of Change of TEC Index (ROTI) (TECU/min) +3 3 Disturbance Ionosphere Index Spatial Gradient (DIXSG) (Numeric) +4 4 Along Arc TEC Rate (AATR) (TECU/min) +5 5 Kp (Numeric) +6 6 Equatorial disturbance storm time index (Dst) (nT) +7 7 Auroral Electrojet (AE) (nT) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.2.table b/definitions/grib2/tables/27/4.2.4.2.table new file mode 100644 index 000000000..8dd05fcda --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.2.table @@ -0,0 +1,18 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Particle number density (m-3) +1 1 Electron density (m-3) +2 2 Proton density (m-3) +3 3 Ion density (m-3) +4 4 Vertical total electron content (TECU) +5 5 HF absorption frequency (Hz) +6 6 HF absorption (dB) +7 7 Spread F (m) +8 8 h’ (m) +9 9 Critical frequency (Hz) +10 10 Maximal usable frequency (MUF) (Hz) +11 11 Peak height (hm) (m) +12 12 Peak density (Nm) (m-3) +13 13 Equivalent slab thickness (tau) (km) +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.3.table b/definitions/grib2/tables/27/4.2.4.3.table new file mode 100644 index 000000000..a46f4a403 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.3.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Magnetic field magnitude (T) +1 1 1st vector component of magnetic field (T) +2 2 2nd vector component of magnetic field (T) +3 3 3rd vector component of magnetic field (T) +4 4 Electric field magnitude (V m-1) +5 5 1st vector component of electric field (V m-1) +6 6 2nd vector component of electric field (V m-1) +7 7 3rd vector component of electric field (V m-1) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.4.table b/definitions/grib2/tables/27/4.2.4.4.table new file mode 100644 index 000000000..b71abeb93 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.4.table @@ -0,0 +1,11 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Proton flux (differential) ((m2 s sr eV)-1) +1 1 Proton flux (integral) ((m2 s sr )-1) +2 2 Electron flux (differential) ((m2 s sr eV)-1) +3 3 Electron flux (integral) ((m2 s sr)-1) +4 4 Heavy ion flux (differential) ((m2 s sr eV/nuc)-1) +5 5 Heavy ion flux (integral) ((m2 s sr)-1) +6 6 Cosmic ray neutron flux (/h) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.5.table b/definitions/grib2/tables/27/4.2.4.5.table new file mode 100644 index 000000000..014ea22fa --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.5.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Amplitude (dB) +1 1 Phase (rad) +2 2 Frequency (Hz) +3 3 Wave length (m) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.6.table b/definitions/grib2/tables/27/4.2.4.6.table new file mode 100644 index 000000000..67f551f7a --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.6.table @@ -0,0 +1,11 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Integrated solar irradiance (W m-2) +1 1 Solar X-ray flux (XRS long) (W m-2) +2 2 Solar X-ray flux (XRS short) (W m-2) +3 3 Solar EUV irradiance (W m-2) +4 4 Solar spectral irradiance (W m-2 nm-1) +5 5 F10.7 (W m-2 Hz-1) +6 6 Solar radio emissions (W m-2 Hz-1) +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.7.table b/definitions/grib2/tables/27/4.2.4.7.table new file mode 100644 index 000000000..9b93bcff1 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.7.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Limb intensity (J m-2 s-1) +1 1 Disk intensity (J m-2 s-1) +2 2 Disk intensity day (J m-2 s-1) +3 3 Disk intensity night (J m-2 s-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.8.table b/definitions/grib2/tables/27/4.2.4.8.table new file mode 100644 index 000000000..358b91ca7 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.8.table @@ -0,0 +1,12 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 X-ray radiance (W sr-1 m-2) +1 1 EUV radiance (W sr-1 m-2) +2 2 H-alpha radiance (W sr-1 m-2) +3 3 White light radiance (W sr-1 m-2) +4 4 CaII-K radiance (W sr-1 m-2) +5 5 White light coronagraph radiance (W sr-1 m-2) +6 6 Heliospheric radiance (W sr-1 m-2) +7 7 Thematic mask (Numeric) +# 8-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.9.table b/definitions/grib2/tables/27/4.2.4.9.table new file mode 100644 index 000000000..e96c81ba3 --- /dev/null +++ b/definitions/grib2/tables/27/4.2.4.9.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pedersen conductivity (S m-1) +1 1 Hall conductivity (S m-1) +2 2 Parallel conductivity (S m-1) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.201.table b/definitions/grib2/tables/27/4.201.table new file mode 100644 index 000000000..44943d5e0 --- /dev/null +++ b/definitions/grib2/tables/27/4.201.table @@ -0,0 +1,17 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +11 11 Drizzle +12 12 Freezing drizzle +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.202.table b/definitions/grib2/tables/27/4.202.table new file mode 100644 index 000000000..438502ff9 --- /dev/null +++ b/definitions/grib2/tables/27/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.203.table b/definitions/grib2/tables/27/4.203.table new file mode 100644 index 000000000..8a9aedf7a --- /dev/null +++ b/definitions/grib2/tables/27/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.204.table b/definitions/grib2/tables/27/4.204.table new file mode 100644 index 000000000..481372936 --- /dev/null +++ b/definitions/grib2/tables/27/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (6-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.205.table b/definitions/grib2/tables/27/4.205.table new file mode 100644 index 000000000..5b4484dfd --- /dev/null +++ b/definitions/grib2/tables/27/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.206.table b/definitions/grib2/tables/27/4.206.table new file mode 100644 index 000000000..02c3dfdf9 --- /dev/null +++ b/definitions/grib2/tables/27/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.207.table b/definitions/grib2/tables/27/4.207.table new file mode 100644 index 000000000..8ddb2e048 --- /dev/null +++ b/definitions/grib2/tables/27/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.208.table b/definitions/grib2/tables/27/4.208.table new file mode 100644 index 000000000..b83685a1a --- /dev/null +++ b/definitions/grib2/tables/27/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.209.table b/definitions/grib2/tables/27/4.209.table new file mode 100644 index 000000000..cb7617071 --- /dev/null +++ b/definitions/grib2/tables/27/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.210.table b/definitions/grib2/tables/27/4.210.table new file mode 100644 index 000000000..524a6ca73 --- /dev/null +++ b/definitions/grib2/tables/27/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.211.table b/definitions/grib2/tables/27/4.211.table new file mode 100644 index 000000000..098eb2d43 --- /dev/null +++ b/definitions/grib2/tables/27/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.212.table b/definitions/grib2/tables/27/4.212.table new file mode 100644 index 000000000..1a085b88d --- /dev/null +++ b/definitions/grib2/tables/27/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.213.table b/definitions/grib2/tables/27/4.213.table new file mode 100644 index 000000000..c65784a00 --- /dev/null +++ b/definitions/grib2/tables/27/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.214.table b/definitions/grib2/tables/27/4.214.table new file mode 100644 index 000000000..9df466fe5 --- /dev/null +++ b/definitions/grib2/tables/27/4.214.table @@ -0,0 +1,11 @@ +# Code table 4.214 - Environmental Factor Qualifier +0 0 Worst +1 1 Very poor +2 2 Poor +3 3 Average +4 4 Good +5 5 Excellent +# 6-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.215.table b/definitions/grib2/tables/27/4.215.table new file mode 100644 index 000000000..034db72be --- /dev/null +++ b/definitions/grib2/tables/27/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.216.table b/definitions/grib2/tables/27/4.216.table new file mode 100644 index 000000000..5d1460cef --- /dev/null +++ b/definitions/grib2/tables/27/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/definitions/grib2/tables/27/4.217.table b/definitions/grib2/tables/27/4.217.table new file mode 100644 index 000000000..a4452182c --- /dev/null +++ b/definitions/grib2/tables/27/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.218.table b/definitions/grib2/tables/27/4.218.table new file mode 100644 index 000000000..fcd06c348 --- /dev/null +++ b/definitions/grib2/tables/27/4.218.table @@ -0,0 +1,46 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation/crops +15 15 Permanent snow/ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +19 19 Warm liquid water cloud +20 20 Supercooled liquid water cloud +21 21 Mixed-phase cloud +22 22 Optically thin ice cloud +23 23 Optically thick ice cloud +24 24 Multilayered cloud +# 25-96 Reserved +97 97 Snow/ice on land +98 98 Snow/ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud/fog/stratus +102 102 Low cloud/stratocumulus +103 103 Low cloud/unknown type +104 104 Medium cloud/nimbostratus +105 105 Medium cloud/altostratus +106 106 Medium cloud/unknown type +107 107 High cloud/cumulus +108 108 High cloud/cirrus +109 109 High cloud/unknown +110 110 Unknown cloud type +111 111 Single layer water cloud +112 112 Single layer ice cloud +# 113-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.219.table b/definitions/grib2/tables/27/4.219.table new file mode 100644 index 000000000..86df0522e --- /dev/null +++ b/definitions/grib2/tables/27/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.220.table b/definitions/grib2/tables/27/4.220.table new file mode 100644 index 000000000..93e841f8b --- /dev/null +++ b/definitions/grib2/tables/27/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.221.table b/definitions/grib2/tables/27/4.221.table new file mode 100644 index 000000000..8448533d7 --- /dev/null +++ b/definitions/grib2/tables/27/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.222.table b/definitions/grib2/tables/27/4.222.table new file mode 100644 index 000000000..57f113014 --- /dev/null +++ b/definitions/grib2/tables/27/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.223.table b/definitions/grib2/tables/27/4.223.table new file mode 100644 index 000000000..f0deb076a --- /dev/null +++ b/definitions/grib2/tables/27/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/definitions/grib2/tables/27/4.224.table b/definitions/grib2/tables/27/4.224.table new file mode 100644 index 000000000..e87cde4bb --- /dev/null +++ b/definitions/grib2/tables/27/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/4.225.table b/definitions/grib2/tables/27/4.225.table new file mode 100644 index 000000000..9dc374087 --- /dev/null +++ b/definitions/grib2/tables/27/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/definitions/grib2/tables/27/4.227.table b/definitions/grib2/tables/27/4.227.table new file mode 100644 index 000000000..27c76553d --- /dev/null +++ b/definitions/grib2/tables/27/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/definitions/grib2/tables/27/4.228.table b/definitions/grib2/tables/27/4.228.table new file mode 100644 index 000000000..559ae916a --- /dev/null +++ b/definitions/grib2/tables/27/4.228.table @@ -0,0 +1,8 @@ +# Code table 4.228 - Icing severity +0 0 None +1 1 Trace +2 2 Light +3 3 Moderate +4 4 Severe +# 5-254 Reserved +255 255 Missing value diff --git a/definitions/grib2/tables/27/4.230.table b/definitions/grib2/tables/27/4.230.table new file mode 100644 index 000000000..ebeec9e62 --- /dev/null +++ b/definitions/grib2/tables/27/4.230.table @@ -0,0 +1,527 @@ +# Code table 4.230 - Atmospheric chemical constituent type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium cation NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HOO +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Dihydrogen H2 +21 21 Atomic nitrogen N +22 22 Sulphate anion SO42- +23 23 Atomic Radon Rn +24 24 Mercury vapour Hg(0) +25 25 Mercury(II) cation Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Dioxygen O2 +39 39 Nitryl chloride NO2Cl +40 40 Sulphuric acid H2SO4 +41 41 Hydrogen sulphide H2S +42 42 Sulphur trioxide SO3 +43 43 Bromine Br2 +44 44 Hydrofluoric acid HF +45 45 Sulphur hexafluoride SF6 +46 46 Chlorine Cl2 +# 47-9999 Reserved +10000 10000 Hydroxyl radical HO +10001 10001 Methyl peroxy radical CH3OO +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butane (all isomers) C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 XyleneC8H10 +10024 10024 Methanesulphonic acid CH3SO3H +10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO +10026 10026 Peroxyacetyl radical CH3C(O)OO +10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH +10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO +10029 10029 Acetone (propan-2-one) CH3C(O)CH3 +10030 10030 Ethyl dioxidanyl radical CH3CH2OO +10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 +10032 10032 Acetaldehyde (ethanal) CH3CHO +10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO +10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH +10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH +10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O +10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO +10038 10038 Glyoxal (oxaldehyde) OCHCHO +10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO +10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH +10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH +10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH +10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 +10044 10044 Phenoxy radical C6H5O +10045 10045 Methyl radical CH3 +10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS +10047 10047 Dibromomethane CH2Br2 +10048 10048 Methoxy radical CH3O +10049 10049 Tribromomethane CHBr3 +10050 10050 Formyl radical (oxomethyl radical) HOC +10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO +10052 10052 Ethyl hydroperoxide CH3CH2OOH +10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO +10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH +10055 10055 methyl-peroxy-nitrate (nitroperoxy-methane) CH_3OONO_2 +10056 10056 2-lambda^1-Oxidanyloxy-2-methylbut-3-en-1-ol (4-Hydroxy-3-methyl-1-butene-3-ylperoxy radical) HOCH_2C(CH_3)(OO)CHCH_2 +10057 10057 2-lambda^1-Oxidanyloxy-3-methylbut-3-en-1-ol (2-Hydroxy-1-isopropenylethylperoxy radical) HOCH_2CH(OO)C(CH_3)CH_2 +10058 10058 (Z)-4-Hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH_3)CHO +10059 10059 (Z)-4-Hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH_3)CHCHO +# 10060-10499 Reserved for other simple organic molecules e.g. higher aldehydes alcohols +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO +# 10502-20000 Reserved +20001 20001 Hydrogen chloride HCl +20002 20002 CFC-11 (trichlorofluoromethane) CCl3F +20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 +20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 +20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 +20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 +20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 +20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 +20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 +20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 +20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 +20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 +20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 +20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 +20015 20015 HCC-40 (methyl chloride) CH3Cl +20016 20016 HCC-10 (carbon tetrachloride) CCl4 +20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 +20018 20018 HBC-40B1 (methyl bromide) CH3Br +20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 +20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 +20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 +20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F +# 20023-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +# 30001-30009 Reserved +30010 30010 Tritium (Hydrogen 3) H-3 +30011 30011 Tritium organic bounded H-3o +30012 30012 Tritium inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +30295 30295 Carbon-13 C-13 +30296 30296 Lead Pb +# 30297-39999 Reserved +40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 +40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 +40002 40002 Singlet excited oxygen atom O(1D) +40003 40003 Triplet ground state oxygen atom O(3P) +# 40004-59999 Reserved +60000 60000 HOx radical (OH+HO2) HOx +60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC +60016 60016 Lumped oxygenated hydrocarbons OVOC +60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx +60018 60018 Organic aldehydes RCHO +60019 60019 Organic peroxides ROOH +60020 60020 Organic nitrates RNO3 +60021 60021 Ethers ROR +60022 60022 Amines NRRR +60023 60023 Ketones RC(O)R +60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R +60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R +60026 60026 Hydroxy ketones RC(OH)C(O)R +60027 60027 Oxides Ox +60028 60028 Peroxyacyl nitrates RC(O)OONO_2 +60029 60029 Aromatic peroxide radical (Aryl dioxydanyl radicals) ArOO +60030 60030 Biogenic Secondary Organic Compound +60031 60031 Anthropogenic Secondary Organic Compound +60032 60032 all hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O_2 ISOPOOH +# 60033-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +# 62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +# 62024 Reserved +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +# 62027 Reserved +62028 62028 Total aerosol hydrophilic +62029 62029 Total aerosol hydrophobic +62030 62030 Primary particulate inorganic matter dry +62031 62031 Secondary particulate Inorganic matter dry +62032 62032 Biogenic Secondary Organic aerosol +62033 62033 Anthropogenic Secondary Organic aerosol +# 62034-62099 Reserved +62100 62100 Alnus (alder) pollen +62101 62101 Betula (birch) pollen +62102 62102 Castanea (chestnut) pollen +62103 62103 Carpinus (hornbeam) pollen +62104 62104 Corylus (hazel) pollen +62105 62105 Fagus (beech) pollen +62106 62106 Fraxinus (ash) pollen +62107 62107 Pinus (pine) pollen +62108 62108 Platanus (plane) pollen +62109 62109 Populus (cottonwood, poplar) pollen +62110 62110 Quercus (oak) pollen +62111 62111 Salix (willow) pollen +62112 62112 Taxus (yew) pollen +62113 62113 Tilia (lime, linden) pollen +62114 62114 Ulmus (elm) pollen +62115 62115 Olea (olive) pollen +# 62116-62199 Reserved +62200 62200 Ambrosia (ragweed, burr-ragweed) pollen +62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale, kohlrabi, mustard, rutabaga) pollen +62203 62203 Plantago (plantain) pollen +62204 62204 Rumex (dock, sorrel) pollen +62205 62205 Urtica (nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (grass family) pollen +# 62301-62999 Reserved +# 63000-65534 For experimental use at local level +65535 65535 Missing diff --git a/definitions/grib2/tables/27/4.233.table b/definitions/grib2/tables/27/4.233.table new file mode 100644 index 000000000..7d8c2ec2f --- /dev/null +++ b/definitions/grib2/tables/27/4.233.table @@ -0,0 +1,527 @@ +# Code table 4.233 - Aerosol type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium cation NH4+ +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HOO +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Dihydrogen H2 +21 21 Atomic nitrogen N +22 22 Sulphate anion SO42- +23 23 Atomic Radon Rn +24 24 Mercury vapour Hg(0) +25 25 Mercury(II) cation Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Dioxygen O2 +39 39 Nitryl chloride NO2Cl +40 40 Sulphuric acid H2SO4 +41 41 Hydrogen sulphide H2S +42 42 Sulphur trioxide SO3 +43 43 Bromine Br2 +44 44 Hydrofluoric acid HF +45 45 Sulphur hexafluoride SF6 +46 46 Chlorine Cl2 +# 47-9999 Reserved +10000 10000 Hydroxyl radical HO +10001 10001 Methyl peroxy radical CH3OO +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butane (all isomers) C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 XyleneC8H10 +10024 10024 Methanesulphonic acid CH3SO3H +10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO +10026 10026 Peroxyacetyl radical CH3C(O)OO +10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH +10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO +10029 10029 Acetone (propan-2-one) CH3C(O)CH3 +10030 10030 Ethyl dioxidanyl radical CH3CH2OO +10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 +10032 10032 Acetaldehyde (ethanal) CH3CHO +10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO +10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH +10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH +10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O +10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO +10038 10038 Glyoxal (oxaldehyde) OCHCHO +10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO +10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH +10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH +10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH +10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 +10044 10044 Phenoxy radical C6H5O +10045 10045 Methyl radical CH3 +10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS +10047 10047 Dibromomethane CH2Br2 +10048 10048 Methoxy radical CH3O +10049 10049 Tribromomethane CHBr3 +10050 10050 Formyl radical (oxomethyl radical) HOC +10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO +10052 10052 Ethyl hydroperoxide CH3CH2OOH +10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO +10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH +10055 10055 methyl-peroxy-nitrate (nitroperoxy-methane) CH_3OONO_2 +10056 10056 2-lambda^1-Oxidanyloxy-2-methylbut-3-en-1-ol (4-Hydroxy-3-methyl-1-butene-3-ylperoxy radical) HOCH_2C(CH_3)(OO)CHCH_2 +10057 10057 2-lambda^1-Oxidanyloxy-3-methylbut-3-en-1-ol (2-Hydroxy-1-isopropenylethylperoxy radical) HOCH_2CH(OO)C(CH_3)CH_2 +10058 10058 (Z)-4-Hydroperoxy-2-methyl-2-butenal CH2(OOH)CHC(CH_3)CHO +10059 10059 (Z)-4-Hydroperoxy-3-methyl-2-butenal CH2(OOH)C(CH_3)CHCHO +# 10060-10499 Reserved for other simple organic molecules e.g. higher aldehydes alcohols +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO +# 10502-20000 Reserved +20001 20001 Hydrogen chloride HCl +20002 20002 CFC-11 (trichlorofluoromethane) CCl3F +20003 20003 CFC-12 (dichlorodifluoromethane) CCl2F2 +20004 20004 CFC-113 (1,1,2-trichloro-1,2,2-trifluoroethane) Cl2FC-CClF2 +20005 20005 CFC-113a (1,1,1-trichloro-2,2,2-trifluoroethane) Cl3C-CF3 +20006 20006 CFC-114 (1,2-dichloro-1,1,2,2-tetrafluoroethane) ClF2C-CClF2 +20007 20007 CFC-115 (1-chloro-1,1,2,2,2-pentafluoroethane) ClF2C-CF3 +20008 20008 HCFC-22 (chlorodifluoromethane) CHClF2 +20009 20009 HCFC-141b (1,1-dichloro-1-fluoroethane) Cl2FC-CH3 +20010 20010 HCFC-142b (1-chloro-1,1-difluoroethane) ClF2C-CH3 +20011 20011 Halon-1202 (dibromodifluoromethane) CBr2F2 +20012 20012 Halon-1211 (bromochlorodifluoromethane) CBrClF2 +20013 20013 Halon-1301 (bromotrifluoromethane) CBrF3 +20014 20014 Halon-2402 (1,2-dibromo-1,1,2,2-tetrafluoroethane) BrF2C-CBrF2 +20015 20015 HCC-40 (methyl chloride) CH3Cl +20016 20016 HCC-10 (carbon tetrachloride) CCl4 +20017 20017 HCC-140a (1,1,1-trichloroethane) Cl3C-CH3 +20018 20018 HBC-40B1 (methyl bromide) CH3Br +20019 20019 HCH (hexachlorocyclohexane) all isomers C6H6Cl6 +20020 20020 alpha-HCH (alpha-hexachlorocyclohexane) both enantiomers alpha-C6H6Cl6 +20021 20021 PCB-153 (2,2',4,4',5,5'-hexachlorobiphenyl) (C6H2Cl3)2 +20022 20022 HCFC-141a (1,1-dichloro-2-fluoroethane) Cl2HC-CH2F +# 20023-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +# 30001-30009 Reserved +30010 30010 Tritium (Hydrogen 3) H-3 +30011 30011 Tritium organic bounded H-3o +30012 30012 Tritium inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +30295 30295 Carbon-13 C-13 +30296 30296 Lead Pb +# 30297-39999 Reserved +40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 +40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 +40002 40002 Singlet excited oxygen atom O(1D) +40003 40003 Triplet ground state oxygen atom O(3P) +# 40004-59999 Reserved +60000 60000 HOx radical (OH+HO2) HOx +60001 60001 Total inorganic and organic peroxy radicals (HOO + ROO) ROO +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC +60016 60016 Lumped oxygenated hydrocarbons OVOC +60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx +60018 60018 Organic aldehydes RCHO +60019 60019 Organic peroxides ROOH +60020 60020 Organic nitrates RNO3 +60021 60021 Ethers ROR +60022 60022 Amines NRRR +60023 60023 Ketones RC(O)R +60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R +60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R +60026 60026 Hydroxy ketones RC(OH)C(O)R +60027 60027 Oxides Ox +60028 60028 Peroxyacyl nitrates RC(O)OONO_2 +60029 60029 Aromatic peroxide radical (Aryl dioxydanyl radicals) ArOO +60030 60030 Biogenic Secondary Organic Compound +60031 60031 Anthropogenic Secondary Organic Compound +60032 60032 all hydroxy-peroxides products of the reaction of hydroxy-isoprene adducts with O_2 ISOPOOH +# 60033-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +# 62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +# 62024 Reserved +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +# 62027 Reserved +62028 62028 Total aerosol hydrophilic +62029 62029 Total aerosol hydrophobic +62030 62030 Primary particulate inorganic matter dry +62031 62031 Secondary particulate Inorganic matter dry +62032 62032 Biogenic Secondary Organic aerosol +62033 62033 Anthropogenic Secondary Organic aerosol +# 62034-62099 Reserved +62100 62100 Alnus (alder) pollen +62101 62101 Betula (birch) pollen +62102 62102 Castanea (chestnut) pollen +62103 62103 Carpinus (hornbeam) pollen +62104 62104 Corylus (hazel) pollen +62105 62105 Fagus (beech) pollen +62106 62106 Fraxinus (ash) pollen +62107 62107 Pinus (pine) pollen +62108 62108 Platanus (plane) pollen +62109 62109 Populus (cottonwood, poplar) pollen +62110 62110 Quercus (oak) pollen +62111 62111 Salix (willow) pollen +62112 62112 Taxus (yew) pollen +62113 62113 Tilia (lime, linden) pollen +62114 62114 Ulmus (elm) pollen +62115 62115 Olea (olive) pollen +# 62116-62199 Reserved +62200 62200 Ambrosia (ragweed, burr-ragweed) pollen +62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale, kohlrabi, mustard, rutabaga) pollen +62203 62203 Plantago (plantain) pollen +62204 62204 Rumex (dock, sorrel) pollen +62205 62205 Urtica (nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (grass family) pollen +# 62301-62999 Reserved +# 63000-65534 For experimental use at local level +65535 65535 Missing diff --git a/definitions/grib2/tables/27/4.234.table b/definitions/grib2/tables/27/4.234.table new file mode 100644 index 000000000..816541ce9 --- /dev/null +++ b/definitions/grib2/tables/27/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/definitions/grib2/tables/27/4.236.table b/definitions/grib2/tables/27/4.236.table new file mode 100644 index 000000000..fbe093ce9 --- /dev/null +++ b/definitions/grib2/tables/27/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/definitions/grib2/tables/27/4.238.table b/definitions/grib2/tables/27/4.238.table new file mode 100644 index 000000000..7e1c8e4d0 --- /dev/null +++ b/definitions/grib2/tables/27/4.238.table @@ -0,0 +1,32 @@ +# Code table 4.238 - Source or sink +0 0 Other +1 1 Aviation +2 2 Lightning +3 3 Biogenic sources +4 4 Anthropogenic sources +5 5 Wild fires +6 6 Natural sources +7 7 Volcanoes +8 8 Bio-fuel +9 9 Fossil-fuel +10 10 Wetlands +11 11 Oceans +12 12 Elevated anthropogenic sources +13 13 Surface anthropogenic sources +14 14 Agriculture livestock +15 15 Agriculture soils +16 16 Agriculture waste burning +17 17 Agriculture (all) +18 18 Residential, commercial and other combustion +19 19 Power generation +20 20 Super power stations +21 21 Fugitives +22 22 Industrial process +23 23 Solvents +24 24 Ships +25 25 Wastes (solid and water) +26 26 Road transportation +27 27 Off-road transportation +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.240.table b/definitions/grib2/tables/27/4.240.table new file mode 100644 index 000000000..4daef3d13 --- /dev/null +++ b/definitions/grib2/tables/27/4.240.table @@ -0,0 +1,13 @@ +# Code table 4.240 - Type of distribution function +0 0 No specific distribution function given +1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre +2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg +3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) +4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance +5 5 Log-normal distribution with spatially variable number density, mean diameter and variance +6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) +7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) +8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type No. 7 (see above) with fixed variance(p1) and fixed particle density(p2) +# 9-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing value diff --git a/definitions/grib2/tables/27/4.241.table b/definitions/grib2/tables/27/4.241.table new file mode 100644 index 000000000..a037b4ba5 --- /dev/null +++ b/definitions/grib2/tables/27/4.241.table @@ -0,0 +1,9 @@ +# Code table 4.241 - Coverage attributes +0 0 Undefined +1 1 Unmodified +2 2 Snow covered +3 3 Flooded +4 4 Ice covered +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/definitions/grib2/tables/27/4.242.table b/definitions/grib2/tables/27/4.242.table new file mode 100644 index 000000000..083f88c29 --- /dev/null +++ b/definitions/grib2/tables/27/4.242.table @@ -0,0 +1,7 @@ +# Code table 4.242 - Tile classification +0 0 Reserved +1 1 Land use classes according to ESA-GlobCover GCV2009 +2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/definitions/grib2/tables/27/4.243.table b/definitions/grib2/tables/27/4.243.table new file mode 100644 index 000000000..b39053311 --- /dev/null +++ b/definitions/grib2/tables/27/4.243.table @@ -0,0 +1,43 @@ +# Code table 4.243 - Tile class +0 0 Reserved +1 1 Evergreen broadleaved forest +2 2 Deciduous broadleaved closed forest +3 3 Deciduous broadleaved open forest +4 4 Evergreen needle-leaf forest +5 5 Deciduous needle-leaf forest +6 6 Mixed leaf trees +7 7 Freshwater flooded trees +8 8 Saline water flooded trees +9 9 Mosaic tree/natural vegetation +10 10 Burnt tree cover +11 11 Evergreen shrubs closed-open +12 12 Deciduous shrubs closed-open +13 13 Herbaceous vegetation closed-open +14 14 Sparse herbaceous or grass +15 15 Flooded shrubs or herbaceous +16 16 Cultivated and managed areas +17 17 Mosaic crop/tree/natural vegetation +18 18 Mosaic crop/shrub/grass +19 19 Bare areas +20 20 Water +21 21 Snow and ice +22 22 Artificial surface +23 23 Ocean +24 24 Irrigated croplands +25 25 Rainfed croplands +26 26 Mosaic cropland (50-70%) - vegetation (20-50%) +27 27 Mosaic vegetation (50-70%) - cropland (20-50%) +28 28 Closed broadleaved evergreen forest +29 29 Closed needle-leaved evergreen forest +30 30 Open needle-leaved deciduous forest +31 31 Mixed broadleaved and needle-leaved forest +32 32 Mosaic shrubland (50-70%) - grassland (20-50%) +33 33 Mosaic grassland (50-70%) - shrubland (20-50%) +34 34 Closed to open shrubland +35 35 Sparse vegetation +36 36 Closed to open forest regularly flooded +37 37 Closed forest or shrubland permanently flooded +38 38 Closed to open grassland regularly flooded +39 39 Undefined +# 40-32767 Reserved +# 32768- Reserved for local use diff --git a/definitions/grib2/tables/27/4.244.table b/definitions/grib2/tables/27/4.244.table new file mode 100644 index 000000000..40534ee09 --- /dev/null +++ b/definitions/grib2/tables/27/4.244.table @@ -0,0 +1,7 @@ +# Code table 4.244 - Quality indicator +0 0 No quality information available +1 1 Failed +2 2 Passed +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.246.table b/definitions/grib2/tables/27/4.246.table new file mode 100644 index 000000000..ab22dbe1e --- /dev/null +++ b/definitions/grib2/tables/27/4.246.table @@ -0,0 +1,7 @@ +# Code table 4.246 - Thunderstorm intensity +0 0 No thunderstorm occurence +1 1 Weak thunderstorm +2 2 Moderate thunderstorm +3 3 Severe thunderstorm +# 4-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/4.247.table b/definitions/grib2/tables/27/4.247.table new file mode 100644 index 000000000..cd7fc90bd --- /dev/null +++ b/definitions/grib2/tables/27/4.247.table @@ -0,0 +1,7 @@ +# Code table 4.247 - Precipitation intensity +0 0 No precipitation occurrence +1 1 Light precipitation +2 2 Moderate precipitation +3 3 Heavy precipitation +# 4-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/4.248.table b/definitions/grib2/tables/27/4.248.table new file mode 100644 index 000000000..5bb5e831c --- /dev/null +++ b/definitions/grib2/tables/27/4.248.table @@ -0,0 +1,5 @@ +0 0 Nearest analysis time or forecast time to specified local time +1 1 Interpolated to be valid at the specified local time +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.3.table b/definitions/grib2/tables/27/4.3.table new file mode 100644 index 000000000..8ba9e08ab --- /dev/null +++ b/definitions/grib2/tables/27/4.3.table @@ -0,0 +1,23 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +14 14 Nowcast +15 15 Hindcast +16 16 Physical retrieval +17 17 Regression analysis +18 18 Difference between two forecasts +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.4.table b/definitions/grib2/tables/27/4.4.table new file mode 100644 index 000000000..7087ebddb --- /dev/null +++ b/definitions/grib2/tables/27/4.4.table @@ -0,0 +1,17 @@ +# Code table 4.4 - Indicator of unit of time range +0 m Minute +1 h Hour +2 D Day +3 M Month +4 Y Year +5 10Y Decade (10 years) +6 30Y Normal (30 years) +7 C Century (100 years) +# 8-9 Reserved +10 3h 3 hours +11 6h 6 hours +12 12h 12 hours +13 s Second +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.5.table b/definitions/grib2/tables/27/4.5.table new file mode 100644 index 000000000..3a9861bcb --- /dev/null +++ b/definitions/grib2/tables/27/4.5.table @@ -0,0 +1,86 @@ +# Code table 4.5 - Fixed surface types and units +0 0 Reserved +1 sfc Ground or water surface (-) +2 2 Cloud base level (-) +3 3 Level of cloud tops (-) +4 4 Level of 0 degree C isotherm (-) +5 5 Level of adiabatic condensation lifted from the surface (-) +6 6 Maximum wind level (-) +7 7 Tropopause (-) +8 sfc Nominal top of the atmosphere (-) +9 9 Sea bottom (-) +10 10 Entire atmosphere (-) +11 11 Cumulonimbus (CB) base (m) +12 12 Cumulonimbus (CB) top (m) +13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) +14 14 Level of free convection (LFC) (-) +15 15 Convective condensation level (CCL) (-) +16 16 Level of neutral buoyancy or equilibrium level (LNB) (-) +17 sfc Departure level of the most unstable parcel of air (MUDL) +18 sfc Departure level of a mixed layer parcel of air with specified layer depth (Pa) +# 19 Reserved +20 20 Isothermal level (K) +21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) +22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) +23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) +24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) +25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) +# 26-29 Reserved +30 30 Specified radius from the center of the Sun (m) +31 31 Solar photosphere +32 32 Ionospheric D-region level +33 33 Ionospheric E-region level +34 34 Ionospheric F1-region level +35 35 Ionospheric F2-region level +# 36-99 Reserved +100 pl Isobaric surface (Pa) +101 sfc Mean sea level +102 102 Specific altitude above mean sea level (m) +103 sfc Specified height level above ground (m) +104 104 Sigma level (sigma value) +105 ml Hybrid level (-) +106 sfc Depth below land surface (m) +107 pt Isentropic (theta) level (K) +108 108 Level at specified pressure difference from ground to level (Pa) +109 pv Potential vorticity surface (K m2 kg-1 s-1) +110 110 Reserved +111 111 Eta level (-) +112 112 Reserved +113 113 Logarithmic hybrid level +114 sol Snow level (Numeric) +115 115 Sigma height level +# 116 Reserved +117 117 Mixed layer depth (m) +118 hhl Hybrid height level (-) +119 hpl Hybrid pressure level (-) +# 120-149 Reserved +150 150 Generalized vertical height coordinate +151 sol Soil level (Numeric) +152 sol Sea ice level (Numeric) +# 153-159 Reserved +160 160 Depth below sea level (m) +161 161 Depth below water surface (m) +162 162 Lake or river bottom (-) +163 163 Bottom of sediment layer (-) +164 164 Bottom of thermally active sediment layer (-) +165 165 Bottom of sediment layer penetrated by thermal wave (-) +166 166 Mixing layer (-) +167 167 Bottom of root zone (-) +168 168 Ocean model level (Numeric) +169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) +170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) +# 171-173 Reserved +174 174 Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river +176 176 Bottom surface (underside) ice on sea, lake or river +177 sfc Deep soil (of indefinite depth) +# 178 Reserved +179 179 Top surface of glacier ice and inland ice +180 180 Deep inland or glacier ice (of indefinite depth) +181 181 Grid tile land fraction as a model surface +182 182 Grid tile water fraction as a model surface +183 183 Grid tile ice fraction on sea, lake or river as a model surface +184 184 Grid tile glacier ice and inland ice fraction as a model surface +# 185-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.6.table b/definitions/grib2/tables/27/4.6.table new file mode 100644 index 000000000..b2dfeb498 --- /dev/null +++ b/definitions/grib2/tables/27/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.7.table b/definitions/grib2/tables/27/4.7.table new file mode 100644 index 000000000..e0de0e1b2 --- /dev/null +++ b/definitions/grib2/tables/27/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.8.table b/definitions/grib2/tables/27/4.8.table new file mode 100644 index 000000000..ad883039c --- /dev/null +++ b/definitions/grib2/tables/27/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.9.table b/definitions/grib2/tables/27/4.9.table new file mode 100644 index 000000000..9f74599c3 --- /dev/null +++ b/definitions/grib2/tables/27/4.9.table @@ -0,0 +1,13 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +5 5 Probability of event equal to lower limit +6 6 Probability of event in above normal category +7 7 Probability of event in near normal category +8 8 Probability of event in below normal category +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.91.table b/definitions/grib2/tables/27/4.91.table new file mode 100644 index 000000000..44cf25f44 --- /dev/null +++ b/definitions/grib2/tables/27/4.91.table @@ -0,0 +1,16 @@ +# Code table 4.91 - Type of Interval +0 0 Smaller than first limit +1 1 Greater than second limit +2 2 Between first and second limit. The range includes the first limit but not the second limit +3 3 Greater than first limit +4 4 Smaller than second limit +5 5 Smaller or equal first limit +6 6 Greater or equal second limit +7 7 Between first and second. The range includes the first limit and the second limit +8 8 Greater or equal first limit +9 9 Smaller or equal second limit +10 10 Between first and second limit. The range includes the second limit but not the first limit +11 11 Equal to first limit +# 12-191 Reserved +# 192-254 Reserved for local use +255 missing Missing diff --git a/definitions/grib2/tables/27/5.0.table b/definitions/grib2/tables/27/5.0.table new file mode 100644 index 000000000..ac0a10f02 --- /dev/null +++ b/definitions/grib2/tables/27/5.0.table @@ -0,0 +1,22 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +# 5-39 Reserved +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +42 42 Grid point data - CCSDS recommended lossless compression +# 43-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52 Reserved +53 53 Spectral data for limited area models - complex packing +# 54-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing diff --git a/definitions/grib2/tables/27/5.1.table b/definitions/grib2/tables/27/5.1.table new file mode 100644 index 000000000..854330c74 --- /dev/null +++ b/definitions/grib2/tables/27/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/5.2.table b/definitions/grib2/tables/27/5.2.table new file mode 100644 index 000000000..40586a131 --- /dev/null +++ b/definitions/grib2/tables/27/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/5.25.table b/definitions/grib2/tables/27/5.25.table new file mode 100644 index 000000000..1b45f28a3 --- /dev/null +++ b/definitions/grib2/tables/27/5.25.table @@ -0,0 +1,9 @@ +# Code table 5.25 - type of bi-Fourier subtruncation +# 0-76 Reserved +77 77 Rectangular +# 78-87 Reserved +88 88 Elliptic +# 89-98 Reserved +99 99 Diamond +# 100-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/5.26.table b/definitions/grib2/tables/27/5.26.table new file mode 100644 index 000000000..9e91ebf2e --- /dev/null +++ b/definitions/grib2/tables/27/5.26.table @@ -0,0 +1,5 @@ +# Code table 5.26 - packing mode for axes +0 0 Spectral coefficients for axes are packed +1 1 Spectral coefficients for axes included in the unpacked subset +# 2-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/5.3.table b/definitions/grib2/tables/27/5.3.table new file mode 100644 index 000000000..c3b7b30fe --- /dev/null +++ b/definitions/grib2/tables/27/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/5.4.table b/definitions/grib2/tables/27/5.4.table new file mode 100644 index 000000000..8121c1819 --- /dev/null +++ b/definitions/grib2/tables/27/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/5.40.table b/definitions/grib2/tables/27/5.40.table new file mode 100644 index 000000000..b9bad2c39 --- /dev/null +++ b/definitions/grib2/tables/27/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/5.5.table b/definitions/grib2/tables/27/5.5.table new file mode 100644 index 000000000..3ef3eb070 --- /dev/null +++ b/definitions/grib2/tables/27/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/5.6.table b/definitions/grib2/tables/27/5.6.table new file mode 100644 index 000000000..6d5177877 --- /dev/null +++ b/definitions/grib2/tables/27/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/5.7.table b/definitions/grib2/tables/27/5.7.table new file mode 100644 index 000000000..5ab780056 --- /dev/null +++ b/definitions/grib2/tables/27/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/6.0.table b/definitions/grib2/tables/27/6.0.table new file mode 100644 index 000000000..2a29aa285 --- /dev/null +++ b/definitions/grib2/tables/27/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/definitions/grib2/tables/27/stepType.table b/definitions/grib2/tables/27/stepType.table new file mode 100644 index 000000000..4ec73e7a1 --- /dev/null +++ b/definitions/grib2/tables/27/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval From e1bf054c9bcfa8aecb838e4385268a5c4d5e2fc1 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 1 Feb 2021 16:06:17 +0000 Subject: [PATCH 272/683] Testing: Fix broken test eccodes_t_grib_local --- definitions/grib2/tables/1.0.table | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/definitions/grib2/tables/1.0.table b/definitions/grib2/tables/1.0.table index 789ef85f7..342f6c50e 100644 --- a/definitions/grib2/tables/1.0.table +++ b/definitions/grib2/tables/1.0.table @@ -26,5 +26,6 @@ 24 24 Version implemented on 6 November 2019 25 25 Version implemented on 6 May 2020 26 26 Version implemented on 16 November 2020 -# 27-254 Future versions +27 27 Pre-operational to be implemented by next amendment +# 28-254 Future versions 255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. From 8dd89b059d131e9d4e4b74dae08c3eba73bfc8f7 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 1 Feb 2021 16:36:34 +0000 Subject: [PATCH 273/683] Testing: Add test to detect missing version entry in 1.0.table --- tests/grib2_version.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/grib2_version.sh b/tests/grib2_version.sh index 4fa6df36a..780bd5356 100755 --- a/tests/grib2_version.sh +++ b/tests/grib2_version.sh @@ -18,6 +18,7 @@ if [ ! -d "$ECCODES_DEFINITION_PATH" ]; then fi temp=temp.$label.grib2 +sample1=$ECCODES_SAMPLES_PATH/GRIB1.tmpl sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl tables_dir="$ECCODES_DEFINITION_PATH/grib2/tables" @@ -31,4 +32,13 @@ if [ "$latest" != "$highest_num" ]; then exit 1 fi +# Also grib1 to grib2 conversion should set the correct version +${tools_dir}/grib_set -s edition=2 $sample1 $temp +tv=`${tools_dir}/grib_get -p tablesVersion $temp` +if [ "$tv" != "$latest" ]; then + echo "After conversion to GRIB2, tablesVersion=$tv. Should be $latest. Check definitions/grib2/tables/1.0.table" + exit 1 +fi +# grib_check_key_equals $temp tablesVersion $latest + rm -f $temp From 55b033147acd57a34372b6fc5679518c2e2cb23d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 1 Feb 2021 20:44:53 +0000 Subject: [PATCH 274/683] Definitions: script to generate parameter def files from TSV --- definitions/add_param_from_tsv.pl | 88 +++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100755 definitions/add_param_from_tsv.pl diff --git a/definitions/add_param_from_tsv.pl b/definitions/add_param_from_tsv.pl new file mode 100755 index 000000000..9b5f1664f --- /dev/null +++ b/definitions/add_param_from_tsv.pl @@ -0,0 +1,88 @@ +#!/usr/bin/env perl +# +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities +# granted to it by virtue of its status as an intergovernmental organisation +# nor does it submit to any jurisdiction. +# +####################################################################### +# Script to generate parameter definition files for GRIB2 +# Read an input TSV file which should contain parameter keys +# and generate the .def files for them +####################################################################### +$|=1; +use strict; +use warnings; +$ARGV[0] or die "USAGE: $0 input.tsv\n"; + +my ($paramId, $shortName, $name, $units); +my ($discipline, $pcategory, $pnumber, $type1, $type2, $scaledValue1, $scaleFactor1, $scaledValue2, $scaleFactor2, $stat); + +my $PARAMID_FILENAME = "paramId.def"; +my $SHORTNAME_FILENAME = "shortName.def"; +my $NAME_FILENAME = "name.def"; +my $UNITS_FILENAME = "units.def"; + +open(OUT_PARAMID, ">$PARAMID_FILENAME") or die "$PARAMID_FILENAME: $!"; +open(OUT_SHORTNAME,">$SHORTNAME_FILENAME") or die "$SHORTNAME_FILENAME: $!"; +open(OUT_NAME, ">$NAME_FILENAME") or die "$NAME_FILENAME: $!"; +open(OUT_UNITS, ">$UNITS_FILENAME") or die "$UNITS_FILENAME: $!"; + +my $first = 1; +while (<>) { + chomp; + if ($first == 1) { + die "Error: first line of input must contain the key names" if ( $_ !~ /^paramId/ ); + $first = 0; + next; + } + + ($paramId, $shortName, $name, $units, + $discipline, $pcategory, $pnumber, $type1, $type2, + $scaledValue1, $scaleFactor1, $scaledValue2, $scaleFactor2, $stat) = split(/\t/); + + die "Error: paramID \"$paramId\" is not an integer!" if (!is_integer($paramId)); + + write_out_file(\*OUT_PARAMID, $name, $paramId); + write_out_file(\*OUT_SHORTNAME, $name, $shortName); + write_out_file(\*OUT_NAME, $name, $name); + write_out_file(\*OUT_UNITS, $name, $units); +} + +print "Wrote output files: $PARAMID_FILENAME, $SHORTNAME_FILENAME, $NAME_FILENAME, $UNITS_FILENAME\n"; +close(OUT_PARAMID) or die "$PARAMID_FILENAME: $!"; +close(OUT_SHORTNAME) or die "$SHORTNAME_FILENAME: $!"; +close(OUT_NAME) or die "$NAME_FILENAME: $!"; +close(OUT_UNITS) or die "$UNITS_FILENAME: $!"; + +sub write_out_file { + my $outfile = $_[0]; + my $name = $_[1]; + my $key = $_[2]; + + # Assuming every parameter definition has at least discipline, category and number + print $outfile "#$name\n"; + print $outfile "'$key' = {\n"; + print $outfile " discipline = $discipline ;\n"; + print $outfile " parameterCategory = $pcategory ;\n"; + print $outfile " parameterNumber = $pnumber ;\n"; + + # Optional keys + print $outfile " typeOfFirstFixedSurface = $type1 ;\n" if ($type1 ne ""); + print $outfile " typeOfSecondFixedSurface = $type2 ;\n" if ($type2 ne ""); + print $outfile " scaledValueOfFirstFixedSurface = $scaledValue1 ;\n" if ($scaledValue1 ne ""); + print $outfile " scaleFactorOfFirstFixedSurface = $scaleFactor1 ;\n" if ($scaleFactor1 ne ""); + print $outfile " scaledValueOfSecondFixedSurface = $scaledValue2 ;\n" if ($scaledValue2 ne ""); + print $outfile " scaleFactorOfSecondFixedSurface = $scaleFactor2 ;\n" if ($scaleFactor2 ne ""); + print $outfile " typeOfStatisticalProcessing = $stat ;\n" if ($stat ne ""); + print $outfile "}\n"; +} + +sub is_integer { + my $val = shift; + return ($val =~ /^\d+$/); +} From 95378375edacf10ef4aba795110006ee9bed0588 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 1 Feb 2021 20:45:40 +0000 Subject: [PATCH 275/683] Definitions: rename script --- definitions/{add_param_from_tsv.pl => add_params_from_tsv.pl} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename definitions/{add_param_from_tsv.pl => add_params_from_tsv.pl} (100%) diff --git a/definitions/add_param_from_tsv.pl b/definitions/add_params_from_tsv.pl similarity index 100% rename from definitions/add_param_from_tsv.pl rename to definitions/add_params_from_tsv.pl From dab36793292954c8cc01a3176c98026cdc83b39e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 2 Feb 2021 15:13:01 +0000 Subject: [PATCH 276/683] ECC-1196: GRIB2: Add support for pre-operational table versions --- definitions/grib2/boot.def | 2 ++ definitions/grib2/section.1.def | 2 +- tests/grib2_version.sh | 10 +++++----- tests/grib_levtype.sh | 11 +++++++++-- 4 files changed, 17 insertions(+), 8 deletions(-) diff --git a/definitions/grib2/boot.def b/definitions/grib2/boot.def index b6c009526..efa946828 100644 --- a/definitions/grib2/boot.def +++ b/definitions/grib2/boot.def @@ -9,6 +9,8 @@ # This gets updated twice a year by WMO. # See http://www.wmo.int/pages/prog/www/WMOCodes/WMO306_vI2/LatestVERSION/LatestVERSION.html +constant tablesVersionLatestOfficial = 26 : edition_specific; +# If this is different from the official version, then it is the pre-operational version constant tablesVersionLatest = 27 : edition_specific; constant million = 1000000 : hidden; diff --git a/definitions/grib2/section.1.def b/definitions/grib2/section.1.def index fd58c35f7..81fe7d14b 100644 --- a/definitions/grib2/section.1.def +++ b/definitions/grib2/section.1.def @@ -22,7 +22,7 @@ alias centreForLocal=subCentre; alias centreForLocal=centre; } -codetable[1] tablesVersion 'grib2/tables/1.0.table' = tablesVersionLatest : edition_specific; +codetable[1] tablesVersion 'grib2/tables/1.0.table' = tablesVersionLatestOfficial : edition_specific; alias gribMasterTablesVersionNumber=tablesVersion; transient masterDir="grib2/tables/[tablesVersion]"; diff --git a/tests/grib2_version.sh b/tests/grib2_version.sh index 780bd5356..349a5ab82 100755 --- a/tests/grib2_version.sh +++ b/tests/grib2_version.sh @@ -32,13 +32,13 @@ if [ "$latest" != "$highest_num" ]; then exit 1 fi -# Also grib1 to grib2 conversion should set the correct version +# Also grib1 to grib2 conversion should set the official version, not the highest ${tools_dir}/grib_set -s edition=2 $sample1 $temp -tv=`${tools_dir}/grib_get -p tablesVersion $temp` -if [ "$tv" != "$latest" ]; then - echo "After conversion to GRIB2, tablesVersion=$tv. Should be $latest. Check definitions/grib2/tables/1.0.table" +tablesVersion=`${tools_dir}/grib_get -p tablesVersion $temp` +latestOfficial=`${tools_dir}/grib_get -p tablesVersionLatestOfficial $temp` +if [ "$tablesVersion" != "$latestOfficial" ]; then + echo "After conversion to GRIB2, tablesVersion=$tablesVersion. Should be $latestOfficial" exit 1 fi -# grib_check_key_equals $temp tablesVersion $latest rm -f $temp diff --git a/tests/grib_levtype.sh b/tests/grib_levtype.sh index 1b6a709c0..35ea7952f 100755 --- a/tests/grib_levtype.sh +++ b/tests/grib_levtype.sh @@ -19,7 +19,8 @@ fi sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl tempGrib=temp.${label}.grib -latest=`${tools_dir}/grib_get -p tablesVersionLatest $sample2` +latestAvailable=`${tools_dir}/grib_get -p tablesVersionLatest $sample2` +latestOfficial=`${tools_dir}/grib_get -p tablesVersionLatestOfficial $sample2` # These level types are S2S ocean parameters and are dealt with differently (See products_s2s.def) exclude="20 160 169" @@ -35,7 +36,13 @@ for lt in $levtypes; do if [ "$lt" = "$ex" ]; then process_type=0; break; fi done if [ $process_type = 1 ]; then - ${tools_dir}/grib_set -s tablesVersion=$latest,typeOfFirstFixedSurface=$lt $sample2 $tempGrib + ${tools_dir}/grib_set -s tablesVersion=$latestAvailable,typeOfFirstFixedSurface=$lt $sample2 $tempGrib + result=`${tools_dir}/grib_get -p mars.levtype $tempGrib` + if [ "$result" = "$lt" ]; then + echo "ERROR: typeOfFirstFixedSurface of |$lt| not mapped to a string!" + exit 1 + fi + ${tools_dir}/grib_set -s tablesVersion=$latestOfficial,typeOfFirstFixedSurface=$lt $sample2 $tempGrib result=`${tools_dir}/grib_get -p mars.levtype $tempGrib` if [ "$result" = "$lt" ]; then echo "ERROR: typeOfFirstFixedSurface of |$lt| not mapped to a string!" From ad0e7e5bb64264521355501844a43ae45466bac7 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 2 Feb 2021 16:22:00 +0000 Subject: [PATCH 277/683] Scripts: fix the Code Table unit parentheses --- definitions/create_grib2_codetables.pl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/definitions/create_grib2_codetables.pl b/definitions/create_grib2_codetables.pl index 61b590a0b..04845c1ed 100644 --- a/definitions/create_grib2_codetables.pl +++ b/definitions/create_grib2_codetables.pl @@ -69,11 +69,13 @@ sub WriteFile { print MYFILE "# $title\n"; } my $unit_text = ($unit eq "" ? "" : "($unit)"); + $unit_text =~ s/\(\(Code /(Code /; + $unit_text =~ s/\)\)/)/; if ($codeFlag =~ /\-/) { print MYFILE "# $codeFlag $meaning $unit_text\n"; } else { - my $codeFlag1 = $codeFlag; - my $codeFlag2 = $codeFlag; + my $codeFlag1 = $codeFlag; # A number + my $codeFlag2 = $codeFlag; # A number or string abbreviation if ($filename eq "1.4.table") { # Special case. Do not just put 2nd code, translate it to shortName for 'mars type' $codeFlag2 = TranslateCodes_Table_1_4($codeFlag); From 7bb0b83ca2a4ec7a1c77445ae1005139fd32462c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 2 Feb 2021 16:36:41 +0000 Subject: [PATCH 278/683] Scripts: Documentation --- definitions/add_params_from_tsv.pl | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index 9b5f1664f..3e4408604 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -10,9 +10,27 @@ # nor does it submit to any jurisdiction. # ####################################################################### -# Script to generate parameter definition files for GRIB2 -# Read an input TSV file which should contain parameter keys -# and generate the .def files for them +# Script to generate parameter definition files for GRIB2. +# Reads an input TSV (tab-separated-value) file which should contain +# the following parameter keys as columns: +# paramId +# shortName +# name +# units +# discipline +# parameterCategory +# parameterNumber +# # The following are optional keys +# typeOfFirstFixedSurface +# typeOfSecondFixedSurface +# scaledValueOfFirstFixedSurface +# scaleFactorOfFirstFixedSurface +# scaledValueOfSecondFixedSurface +# scaleFactorOfSecondFixedSurface +# typeOfStatisticalProcessing +# +# It outputs the def files: name.def paramId.def shortName.def units.def +# ####################################################################### $|=1; use strict; From 2b98e8a40d8b87f8aece711c4fefac7a5297a821 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 2 Feb 2021 18:25:49 +0000 Subject: [PATCH 279/683] ECC-1197: grib_get_data: Words on the first line should be separated by spaces not commas --- data/scan_x_regular_ll_5_4_good.dump | 2 +- data/scan_x_regular_ll_5_7_good.dump | 2 +- data/scan_x_regular_ll_8_4_good.dump | 2 +- data/scan_x_regular_ll_8_7_good.dump | 2 +- data/scan_x_rotated_ll_5_4_good.dump | 2 +- data/scan_x_rotated_ll_5_7_good.dump | 2 +- data/scan_x_rotated_ll_8_4_good.dump | 2 +- data/scan_x_rotated_ll_8_7_good.dump | 2 +- data/scan_y_regular_ll_5_4_good.dump | 2 +- data/scan_y_regular_ll_5_7_good.dump | 2 +- data/scan_y_regular_ll_8_4_good.dump | 2 +- data/scan_y_regular_ll_8_7_good.dump | 2 +- data/scan_y_rotated_ll_5_4_good.dump | 2 +- data/scan_y_rotated_ll_5_7_good.dump | 2 +- data/scan_y_rotated_ll_8_4_good.dump | 2 +- data/scan_y_rotated_ll_8_7_good.dump | 2 +- tests/grib_iterator.sh | 2 +- tests/grib_lamb_az_eq_area.ref | 2 +- tools/grib_get_data.c | 2 +- 19 files changed, 19 insertions(+), 19 deletions(-) diff --git a/data/scan_x_regular_ll_5_4_good.dump b/data/scan_x_regular_ll_5_4_good.dump index 66efea3b9..599046679 100644 --- a/data/scan_x_regular_ll_5_4_good.dump +++ b/data/scan_x_regular_ll_5_4_good.dump @@ -1,4 +1,4 @@ -Latitude, Longitude, Value +Latitude Longitude Value 20.000 24.000 5 20.000 23.000 4 20.000 22.000 3 diff --git a/data/scan_x_regular_ll_5_7_good.dump b/data/scan_x_regular_ll_5_7_good.dump index d34e8db24..46f0d79c3 100644 --- a/data/scan_x_regular_ll_5_7_good.dump +++ b/data/scan_x_regular_ll_5_7_good.dump @@ -1,4 +1,4 @@ -Latitude, Longitude, Value +Latitude Longitude Value 20.000 24.000 5 20.000 23.000 4 20.000 22.000 3 diff --git a/data/scan_x_regular_ll_8_4_good.dump b/data/scan_x_regular_ll_8_4_good.dump index bff032c3e..39037b47c 100644 --- a/data/scan_x_regular_ll_8_4_good.dump +++ b/data/scan_x_regular_ll_8_4_good.dump @@ -1,4 +1,4 @@ -Latitude, Longitude, Value +Latitude Longitude Value 20.000 27.000 8 20.000 26.000 7 20.000 25.000 6 diff --git a/data/scan_x_regular_ll_8_7_good.dump b/data/scan_x_regular_ll_8_7_good.dump index c7ebdeec6..ca83e716e 100644 --- a/data/scan_x_regular_ll_8_7_good.dump +++ b/data/scan_x_regular_ll_8_7_good.dump @@ -1,4 +1,4 @@ -Latitude, Longitude, Value +Latitude Longitude Value 20.000 27.000 8 20.000 26.000 7 20.000 25.000 6 diff --git a/data/scan_x_rotated_ll_5_4_good.dump b/data/scan_x_rotated_ll_5_4_good.dump index 77a4e5d61..defcc9e07 100644 --- a/data/scan_x_rotated_ll_5_4_good.dump +++ b/data/scan_x_rotated_ll_5_4_good.dump @@ -1,4 +1,4 @@ -Latitude, Longitude, Value +Latitude Longitude Value 59.143 131.824 5 59.882 132.969 4 60.606 134.175 3 diff --git a/data/scan_x_rotated_ll_5_7_good.dump b/data/scan_x_rotated_ll_5_7_good.dump index 54985ef5d..8af270566 100644 --- a/data/scan_x_rotated_ll_5_7_good.dump +++ b/data/scan_x_rotated_ll_5_7_good.dump @@ -1,4 +1,4 @@ -Latitude, Longitude, Value +Latitude Longitude Value 59.143 131.824 5 59.882 132.969 4 60.606 134.175 3 diff --git a/data/scan_x_rotated_ll_8_4_good.dump b/data/scan_x_rotated_ll_8_4_good.dump index f7ab7ec97..5a2a5682e 100644 --- a/data/scan_x_rotated_ll_8_4_good.dump +++ b/data/scan_x_rotated_ll_8_4_good.dump @@ -1,4 +1,4 @@ -Latitude, Longitude, Value +Latitude Longitude Value 56.853 128.720 8 57.628 129.702 7 58.392 130.736 6 diff --git a/data/scan_x_rotated_ll_8_7_good.dump b/data/scan_x_rotated_ll_8_7_good.dump index 661b6c972..74cc5de43 100644 --- a/data/scan_x_rotated_ll_8_7_good.dump +++ b/data/scan_x_rotated_ll_8_7_good.dump @@ -1,4 +1,4 @@ -Latitude, Longitude, Value +Latitude Longitude Value 56.853 128.720 8 57.628 129.702 7 58.392 130.736 6 diff --git a/data/scan_y_regular_ll_5_4_good.dump b/data/scan_y_regular_ll_5_4_good.dump index dcccfb8a3..3e43e4b33 100644 --- a/data/scan_y_regular_ll_5_4_good.dump +++ b/data/scan_y_regular_ll_5_4_good.dump @@ -1,4 +1,4 @@ -Latitude, Longitude, Value +Latitude Longitude Value 17.000 20.000 16 17.000 21.000 17 17.000 22.000 18 diff --git a/data/scan_y_regular_ll_5_7_good.dump b/data/scan_y_regular_ll_5_7_good.dump index 8d5be97b9..0637dcc57 100644 --- a/data/scan_y_regular_ll_5_7_good.dump +++ b/data/scan_y_regular_ll_5_7_good.dump @@ -1,4 +1,4 @@ -Latitude, Longitude, Value +Latitude Longitude Value 14.000 20.000 31 14.000 21.000 32 14.000 22.000 33 diff --git a/data/scan_y_regular_ll_8_4_good.dump b/data/scan_y_regular_ll_8_4_good.dump index 7b2ca02fc..6e9b3e792 100644 --- a/data/scan_y_regular_ll_8_4_good.dump +++ b/data/scan_y_regular_ll_8_4_good.dump @@ -1,4 +1,4 @@ -Latitude, Longitude, Value +Latitude Longitude Value 17.000 20.000 25 17.000 21.000 26 17.000 22.000 27 diff --git a/data/scan_y_regular_ll_8_7_good.dump b/data/scan_y_regular_ll_8_7_good.dump index e225cd92a..a7bffbfac 100644 --- a/data/scan_y_regular_ll_8_7_good.dump +++ b/data/scan_y_regular_ll_8_7_good.dump @@ -1,4 +1,4 @@ -Latitude, Longitude, Value +Latitude Longitude Value 14.000 20.000 49 14.000 21.000 50 14.000 22.000 51 diff --git a/data/scan_y_rotated_ll_5_4_good.dump b/data/scan_y_rotated_ll_5_4_good.dump index a1dd2205b..7127c3ffe 100644 --- a/data/scan_y_rotated_ll_5_4_good.dump +++ b/data/scan_y_rotated_ll_5_4_good.dump @@ -1,4 +1,4 @@ -Latitude, Longitude, Value +Latitude Longitude Value 63.979 131.793 16 63.226 130.468 17 62.458 129.219 18 diff --git a/data/scan_y_rotated_ll_5_7_good.dump b/data/scan_y_rotated_ll_5_7_good.dump index 7c547d75e..80d0f3187 100644 --- a/data/scan_y_rotated_ll_5_7_good.dump +++ b/data/scan_y_rotated_ll_5_7_good.dump @@ -1,4 +1,4 @@ -Latitude, Longitude, Value +Latitude Longitude Value 65.752 126.092 31 64.938 124.828 32 64.111 123.647 33 diff --git a/data/scan_y_rotated_ll_8_4_good.dump b/data/scan_y_rotated_ll_8_4_good.dump index 8627db057..aa3e69861 100644 --- a/data/scan_y_rotated_ll_8_4_good.dump +++ b/data/scan_y_rotated_ll_8_4_good.dump @@ -1,4 +1,4 @@ -Latitude, Longitude, Value +Latitude Longitude Value 63.979 131.793 25 63.226 130.468 26 62.458 129.219 27 diff --git a/data/scan_y_rotated_ll_8_7_good.dump b/data/scan_y_rotated_ll_8_7_good.dump index cf6cc9412..93b275e55 100644 --- a/data/scan_y_rotated_ll_8_7_good.dump +++ b/data/scan_y_rotated_ll_8_7_good.dump @@ -1,4 +1,4 @@ -Latitude, Longitude, Value +Latitude Longitude Value 65.752 126.092 49 64.938 124.828 50 64.111 123.647 51 diff --git a/tests/grib_iterator.sh b/tests/grib_iterator.sh index 16db96621..a359ad4a4 100755 --- a/tests/grib_iterator.sh +++ b/tests/grib_iterator.sh @@ -23,7 +23,7 @@ files="reduced_latlon_surface.grib1 \ for f in $files; do file=${data_dir}/$f - # Must exclude the first line of grib_get_data which is "Latitude, Longitude, Value" + # Must exclude the first line of grib_get_data which is "Latitude Longitude Value" iterator_count=`${tools_dir}/grib_get_data -m 9999:missing -f -p centre -F "%g" -w count=1 $file | grep -v Lat |wc -l ` numberOfPoints=`${tools_dir}/grib_get -w count=1 -p numberOfPoints $file` [ $numberOfPoints = ${iterator_count} ] diff --git a/tests/grib_lamb_az_eq_area.ref b/tests/grib_lamb_az_eq_area.ref index d1082d08c..166dc4d85 100644 --- a/tests/grib_lamb_az_eq_area.ref +++ b/tests/grib_lamb_az_eq_area.ref @@ -1,4 +1,4 @@ -Latitude, Longitude, Value +Latitude Longitude Value 67.575 326.506 2.0000000000e+00 67.601 326.601 2.0000000000e+00 67.626 326.696 2.0000000000e+00 diff --git a/tools/grib_get_data.c b/tools/grib_get_data.c index 61db62751..0960cb0cb 100644 --- a/tools/grib_get_data.c +++ b/tools/grib_get_data.c @@ -188,7 +188,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) } if (iter) - fprintf(dump_file, "Latitude, Longitude, "); + fprintf(dump_file, "Latitude Longitude "); fprintf(dump_file, "Value"); From 053b68faf1f1dd87b73a867c08f53d28d1d2c1c0 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 3 Feb 2021 13:59:27 +0000 Subject: [PATCH 280/683] Refactoring: in preparation for ECC-822 --- tools/grib_get_data.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/grib_get_data.c b/tools/grib_get_data.c index 0960cb0cb..86dd7f35a 100644 --- a/tools/grib_get_data.c +++ b/tools/grib_get_data.c @@ -85,7 +85,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) int i = 0; grib_values* values = NULL; grib_iterator* iter = NULL; - char* format = NULL; + char* format_values = NULL; char* default_format = "%.10e"; int print_keys = grib_options_on("p:"); long numberOfPoints = 0; @@ -128,9 +128,9 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) } if (grib_options_on("F:")) - format = grib_options_get_option("F:"); + format_values = grib_options_get_option("F:"); else - format = default_format; + format_values = default_format; if ((err = grib_get_long(h, "numberOfPoints", &numberOfPoints)) != GRIB_SUCCESS) { fprintf(dump_file, "ERROR: unable to get number of points\n"); @@ -217,7 +217,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) if (is_missing_val) fprintf(dump_file, "%s", missing_string); else - fprintf(dump_file, format, data_values[i]); + fprintf(dump_file, format_values, data_values[i]); if (print_keys) print_key_values(values, options->print_keys_count); @@ -238,7 +238,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) if (!is_missing_val) { if (iter) fprintf(dump_file, "%9.3f%9.3f ", lats[i], lons[i]); - fprintf(dump_file, format, data_values[i]); + fprintf(dump_file, format_values, data_values[i]); if (print_keys) print_key_values(values, options->print_keys_count); fprintf(dump_file, "\n"); From 50bc75f287bc93145aa100be2612bbcbf739854f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 3 Feb 2021 17:25:51 +0000 Subject: [PATCH 281/683] ECC-822: grib_get_data: Allow user to specify number of decimal places for lats/lons --- tests/grib_iterator.sh | 3 +++ tools/grib_get_data.c | 43 +++++++++++++++++++++++++++--------------- 2 files changed, 31 insertions(+), 15 deletions(-) diff --git a/tests/grib_iterator.sh b/tests/grib_iterator.sh index a359ad4a4..3506ef29b 100755 --- a/tests/grib_iterator.sh +++ b/tests/grib_iterator.sh @@ -29,3 +29,6 @@ for f in $files; do [ $numberOfPoints = ${iterator_count} ] done +# ECC-822: Increase lat/lon decimals using default grib_get_data +${tools_dir}/grib_get_data -L%12.6f%11.5f ${data_dir}/regular_latlon_surface.grib2 + diff --git a/tools/grib_get_data.c b/tools/grib_get_data.c index 86dd7f35a..f9c5baa21 100644 --- a/tools/grib_get_data.c +++ b/tools/grib_get_data.c @@ -8,11 +8,6 @@ * virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. */ -/* - * C Implementation: grib_get_data - * - */ - #include "grib_tools.h" static void print_key_values(grib_values* values, int values_count); @@ -29,7 +24,8 @@ grib_option grib_options[] = { "\n\t\tvalues. Default is to skip the missing values.\n", 0, 1, 0 }, { "p:", 0, 0, 0, 1, 0 }, - { "F:", "format", "\n\t\tC style format for values. Default is \"%.10e\"\n", 0, 1, 0 }, + { "F:", "format", "\n\t\tC style format for data values. Default is \"%.10e\"\n", 0, 1, 0 }, + { "L:", "format", "\n\t\tC style format for latitudes/longitudes. Default is \"%9.3f%9.3f\"\n", 0, 1, 0 }, { "w:", 0, 0, 0, 1, 0 }, { "s:", 0, 0, 0, 1, 0 }, { "f", 0, 0, 0, 1, 0 }, @@ -86,7 +82,9 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) grib_values* values = NULL; grib_iterator* iter = NULL; char* format_values = NULL; - char* default_format = "%.10e"; + char format_latlons[64] = {0,}; + char* default_format_values = "%.10e"; + char* default_format_latlons = "%9.3f%9.3f "; int print_keys = grib_options_on("p:"); long numberOfPoints = 0; long bitmapPresent = 0; @@ -127,13 +125,28 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) /*missing_string=grib_options_get_option("m:");*/ } - if (grib_options_on("F:")) + if (grib_options_on("F:")) { format_values = grib_options_get_option("F:"); - else - format_values = default_format; + } else { + format_values = default_format_values; + } + + if (grib_options_on("L:")) { + /* Do a very basic sanity check */ + size_t i=0, count=0; + const char* str = grib_options_get_option("L:"); + for(i=0; str[i]; i++) if (str[i] == '%') count++; + if (count != 2) { + fprintf(stderr, "ERROR: Invalid lats/lons format option \"%s\"\n", str); + return err; + } + sprintf(format_latlons, "%s ", grib_options_get_option("L:"));/*Add a final space to separate from data values*/ + } else { + sprintf(format_latlons, "%s", default_format_latlons); + } if ((err = grib_get_long(h, "numberOfPoints", &numberOfPoints)) != GRIB_SUCCESS) { - fprintf(dump_file, "ERROR: unable to get number of points\n"); + fprintf(stderr, "ERROR: unable to get number of points\n"); return err; } @@ -142,7 +155,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) num_bytes = (numberOfPoints + 1) * sizeof(double); data_values = (double*)calloc(numberOfPoints + 1, sizeof(double)); if (!data_values) { - fprintf(dump_file, "ERROR: failed to allocate %ld bytes for data values (number of points=%ld)\n", + fprintf(stderr, "ERROR: failed to allocate %ld bytes for data values (number of points=%ld)\n", (long)num_bytes, numberOfPoints); exit(GRIB_OUT_OF_MEMORY); } @@ -166,7 +179,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) } if (size != numberOfPoints) { if (!grib_options_on("q")) - fprintf(dump_file, "ERROR: wrong number of points %d\n", (int)numberOfPoints); + fprintf(stderr, "ERROR: wrong number of points %d\n", (int)numberOfPoints); if (grib_options_on("f")) exit(1); } @@ -212,7 +225,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) is_missing_val = (data_values[i] == missingValue); } if (iter) - fprintf(dump_file, "%9.3f%9.3f ", lats[i], lons[i]); + fprintf(dump_file, format_latlons, lats[i], lons[i]); if (is_missing_val) fprintf(dump_file, "%s", missing_string); @@ -237,7 +250,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) } if (!is_missing_val) { if (iter) - fprintf(dump_file, "%9.3f%9.3f ", lats[i], lons[i]); + fprintf(dump_file, format_latlons, lats[i], lons[i]); fprintf(dump_file, format_values, data_values[i]); if (print_keys) print_key_values(values, options->print_keys_count); From 305d8b87808bc5b6cc7364cf7e8838a958a90f92 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 3 Feb 2021 19:35:06 +0000 Subject: [PATCH 282/683] Clang warning: declaration shadows a local variable --- tools/grib_get_data.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/grib_get_data.c b/tools/grib_get_data.c index f9c5baa21..310e593ec 100644 --- a/tools/grib_get_data.c +++ b/tools/grib_get_data.c @@ -133,9 +133,9 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) if (grib_options_on("L:")) { /* Do a very basic sanity check */ - size_t i=0, count=0; + size_t ii=0, count=0; const char* str = grib_options_get_option("L:"); - for(i=0; str[i]; i++) if (str[i] == '%') count++; + for(ii=0; str[ii]; ii++) if (str[ii] == '%') count++; if (count != 2) { fprintf(stderr, "ERROR: Invalid lats/lons format option \"%s\"\n", str); return err; From 4b7a4fd4d456639a0fbf7c247dce21dffabd02cd Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 3 Feb 2021 21:50:43 +0000 Subject: [PATCH 283/683] Refactoring --- tools/grib_compare.c | 178 +++++++++++++++++++++---------------------- 1 file changed, 88 insertions(+), 90 deletions(-) diff --git a/tools/grib_compare.c b/tools/grib_compare.c index dc92629e0..de557c093 100644 --- a/tools/grib_compare.c +++ b/tools/grib_compare.c @@ -10,6 +10,87 @@ #include "grib_tools.h" +grib_option grib_options[] = { + /* {id, args, help}, on, command_line, value*/ + { "r", 0, "Compare files in which the messages are not in the same order. This option is time expensive.\n", 0, 1, 0 }, + { "b:", 0, 0, 0, 1, 0 }, + { "e", 0, "Edition independent compare. It is used to compare GRIB edition 1 and 2.\n", 0, 1, 0 }, + { "2", 0, "Enable two-way comparison.\n", 0, 1, 0 }, + { "c:", 0, 0, 0, 1, 0 }, + { "S:", "start", "First field to be processed.\n", 0, 1, 0 }, + { "E:", "end", "Last field to be processed.\n", 0, 1, 0 }, + { "a", 0, "-c option modifier. The keys listed with the option -c will be added to the list of keys compared without -c.\n", 0, 1, 0 }, + { "H", 0, "Compare only message headers (everything except data and bitmap). Bit-by-bit compare on. Incompatible with -c option.\n", 0, 1, 0 }, + { "R:", 0, 0, 0, 1, 0 }, + { "A:", 0, 0, 0, 1, 0 }, + { "P", 0, "Compare data values using the packing error as tolerance.\n", 0, 1, 0 }, + { "T:", "factor", "Compare data values using factor multiplied by the tolerance specified in options -P -R -A.\n", 0, 1, 0 }, + { "w:", 0, 0, 0, 1, 0 }, + { "f", 0, 0, 0, 1, 0 }, + { "F", 0, 0, 1, 0, 0 }, + { "q", 0, 0, 1, 0, 0 }, + { "M", 0, 0, 1, 0, 0 }, + { "I", 0, 0, 1, 0, 0 }, + { "V", 0, 0, 0, 1, 0 }, + { "7", 0, 0, 0, 1, 0 }, + { "v", 0, 0, 0, 1, 0 } +}; +int grib_options_count = sizeof(grib_options) / sizeof(grib_option); + +const char* tool_description = + "Compare GRIB messages contained in two files." + "\n\tIf some differences are found it fails returning an error code." + "\n\tFloating-point values are compared exactly by default, different tolerances can be defined (see -P -A -R)." + "\n\tDefault behaviour: absolute error=0, bit-by-bit compare, same order in files."; + +const char* tool_name = "grib_compare"; +const char* tool_usage = "[options] grib_file1 grib_file2"; + +typedef double (*compare_double_proc)(double*, double*, double); +static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_options* options); + +typedef struct grib_error grib_error; +struct grib_error +{ + char* key; + int count; + grib_error* next; +}; + +static grib_error* error_summary; +static compare_double_proc compare_double; +static double global_tolerance = 0; +static int packingCompare = 0; +static grib_string_list* blocklist = 0; +static int compareAbsolute = 1; + +static int error = 0; +static int count = 0; +static int lastPrint = 0; +static int force = 0; + +/* ECC-651: Boolean 'two_way' set to 1 when '-2' option used */ +static int two_way = 0; +/* Boolean 'handles_swapped' relevant in 'two_way' mode: + * 0 means: h1 is first file, h2 is second file + * 1 means: h1 is second file, h2 is first file + */ +static int handles_swapped = 0; + +static double maxAbsoluteError = 1e-19; +static int onlyListed = 1; +static int headerMode = 0; +static int morein1 = 0; +static int morein2 = 0; +static int listFromCommandLine; +static int verbose = 0; +static double tolerance_factor = 1; + +static grib_handle* handle1 = NULL; +static int global_counter = 0; +static int theStart = -1; +static int theEnd = -1; + GRIB_INLINE static int grib_inline_strcmp(const char* a, const char* b) { if (*a != *b) @@ -40,47 +121,6 @@ GRIB_INLINE static int grib_inline_rstrcmp(const char* a, const char* b) return (q == b) ? 0 : 1; } -typedef double (*compare_double_proc)(double*, double*, double); - -typedef struct grib_error grib_error; -struct grib_error -{ - char* key; - int count; - grib_error* next; -}; - -static grib_error* error_summary; -static compare_double_proc compare_double; -static double global_tolerance = 0; -static int packingCompare = 0; -static grib_string_list* blocklist = 0; -static int compareAbsolute = 1; - -static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_options* options); -static int compare_values(grib_runtime_options* options, grib_handle* h1, grib_handle* h2, const char* name, int type); -static int error = 0; -static int count = 0; -static int lastPrint = 0; -static int force = 0; - -/* ECC-651: Boolean 'two_way' set to 1 when '-2' option used */ -static int two_way = 0; -/* Boolean 'handles_swapped' relevant in 'two_way' mode: - * 0 means: h1 is first file, h2 is second file - * 1 means: h1 is second file, h2 is first file - */ -static int handles_swapped = 0; - -static double maxAbsoluteError = 1e-19; -static int onlyListed = 1; -static int headerMode = 0; -static int morein1 = 0; -static int morein2 = 0; -static int listFromCommandLine; -static int verbose = 0; -static double tolerance_factor = 1; - /* Returns 0 when the values are considered the same */ static double compare_double_absolute(double* a, double* b, double tolerance) { @@ -134,48 +174,6 @@ static double relative_error(double a, double b, double err) return relativeError; } -grib_option grib_options[] = { - /* {id, args, help}, on, command_line, value*/ - { "r", 0, "Compare files in which the messages are not in the same order. This option is time expensive.\n", 0, 1, 0 }, - { "b:", 0, 0, 0, 1, 0 }, - { "e", 0, "Edition independent compare. It is used to compare GRIB edition 1 and 2.\n", 0, 1, 0 }, - { "2", 0, "Enable two-way comparison.\n", 0, 1, 0 }, - { "c:", 0, 0, 0, 1, 0 }, - { "S:", "start", "First field to be processed.\n", 0, 1, 0 }, - { "E:", "end", "Last field to be processed.\n", 0, 1, 0 }, - { "a", 0, "-c option modifier. The keys listed with the option -c will be added to the list of keys compared without -c.\n", 0, 1, 0 }, - { "H", 0, "Compare only message headers (everything except data and bitmap). Bit-by-bit compare on. Incompatible with -c option.\n", 0, 1, 0 }, - { "R:", 0, 0, 0, 1, 0 }, - { "A:", 0, 0, 0, 1, 0 }, - { "P", 0, "Compare data values using the packing error as tolerance.\n", 0, 1, 0 }, - { "T:", "factor", "Compare data values using factor multiplied by the tolerance specified in options -P -R -A.\n", 0, 1, 0 }, - { "w:", 0, 0, 0, 1, 0 }, - { "f", 0, 0, 0, 1, 0 }, - { "F", 0, 0, 1, 0, 0 }, - { "q", 0, 0, 1, 0, 0 }, - { "M", 0, 0, 1, 0, 0 }, - { "I", 0, 0, 1, 0, 0 }, - { "V", 0, 0, 0, 1, 0 }, - { "7", 0, 0, 0, 1, 0 }, - { "v", 0, 0, 0, 1, 0 } -}; - -static grib_handle* handle1 = NULL; -static int global_counter = 0; -static int theStart = -1; -static int theEnd = -1; - -const char* tool_description = - "Compare GRIB messages contained in two files." - "\n\tIf some differences are found it fails returning an error code." - "\n\tFloating-point values are compared exactly by default, different tolerances can be defined (see -P -A -R)." - "\n\tDefault behaviour: absolute error=0, bit-by-bit compare, same order in files."; - -const char* tool_name = "grib_compare"; -const char* tool_usage = "[options] grib_file1 grib_file2"; - -int grib_options_count = sizeof(grib_options) / sizeof(grib_option); - int main(int argc, char* argv[]) { return grib_tool(argc, argv); @@ -403,8 +401,8 @@ static void print_index_key_values(grib_index* index, int counter) printf("\n"); } -/* Note: the grib_handle 'h' here is from the 2nd file */ -int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) +/* Note: the grib_handle 'handle2' here is from the 2nd file */ +int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* handle2) { int err = 0; count++; @@ -421,7 +419,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) return 0; } - grib_index_search_same(idx1, h); + grib_index_search_same(idx1, handle2); handle1 = grib_handle_new_from_index(idx1, &err); if (options->verbose) { off_t offset = 0; @@ -445,7 +443,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) return 0; } - if (compare_handles(h, handle1, options)) { + if (compare_handles(handle2, handle1, options)) { error++; if (!force) exit(1); } @@ -457,7 +455,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) else if (options->random) handle1 = grib_fieldset_next_handle(options->idx, &err); else - handle1 = grib_handle_new_from_file(h->context, options->infile_extra->file, &err); + handle1 = grib_handle_new_from_file(handle2->context, options->infile_extra->file, &err); if (!handle1 || err != GRIB_SUCCESS) { morein2++; @@ -466,7 +464,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) return 0; } - if (compare_handles(handle1, h, options)) { + if (compare_handles(handle1, handle2, options)) { error++; if (!two_way) { /* If two_way mode: Don't exit yet. Show further differences */ @@ -476,7 +474,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) if (two_way) { /* ECC-651 and ECC-431 */ handles_swapped = 1; - if (compare_handles(h, handle1, options)) { + if (compare_handles(handle2, handle1, options)) { error++; if (!force) exit(1); } From 9b2884d6ba352f3d3dbf77ea78714b7ba2e9916e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 4 Feb 2021 11:52:57 +0000 Subject: [PATCH 284/683] New string utility function --- src/grib_api_prototypes.h | 1 + src/string_util.c | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/src/grib_api_prototypes.h b/src/grib_api_prototypes.h index b8030fd16..2fd9f17d7 100644 --- a/src/grib_api_prototypes.h +++ b/src/grib_api_prototypes.h @@ -1500,6 +1500,7 @@ const char* extract_filename(const char* filepath); char** string_split(char* inputString, const char* delimiter); int string_to_long(const char* input, long* output); int string_ends_with(const char* str1, const char* str2); +int count_char_in_string(const char* str, char c); /* functions.c */ long grib_op_eq(long a, long b); diff --git a/src/string_util.c b/src/string_util.c index fb1ffb00b..e939104f0 100644 --- a/src/string_util.c +++ b/src/string_util.c @@ -160,3 +160,13 @@ int string_ends_with(const char* str1, const char* str2) return 1; return 0; } + +int count_char_in_string(const char* str, char c) +{ + int i = 0, count = 0; + DebugAssert(str); + for(i=0; str[i]; i++) { + if (str[i] == c) count++; + } + return count; +} From bd3a25aaae2aadc8c2553256b4ca1839eb505bec Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 4 Feb 2021 11:53:15 +0000 Subject: [PATCH 285/683] Refactoring --- tools/bufr_compare.c | 156 +++++++++++++----------------------------- tools/grib_get_data.c | 25 ++++--- tools/gts_compare.c | 84 ++++++++++++----------- tools/metar_compare.c | 152 +++++++++++++++++----------------------- 4 files changed, 164 insertions(+), 253 deletions(-) diff --git a/tools/bufr_compare.c b/tools/bufr_compare.c index 539634b5c..193289793 100644 --- a/tools/bufr_compare.c +++ b/tools/bufr_compare.c @@ -10,6 +10,44 @@ #include "grib_tools.h" +grib_option grib_options[] = { + /* {id, args, help}, on, command_line, value*/ + /*{"r",0,"Compare files in which the messages are not in the same order. This option is time expensive.\n",0,1,0},*/ + { "b:", 0, 0, 0, 1, 0 }, + { "d", 0, "Write different messages on files.\n", 0, 1, 0 }, + { "2", 0, "Enable two-way comparison.\n", 0, 1, 0 }, + { "T:", 0, 0, 1, 0, "B" }, + { "c:", 0, 0, 0, 1, 0 }, + { "S:", "start", "First field to be processed.\n", 0, 1, 0 }, + { "E:", "end", "Last field to be processed.\n", 0, 1, 0 }, + { "a", 0, "-c option modifier. The keys listed with the option -c will be added to the list of keys compared without -c.\n", 0, 1, 0 }, + { "H", 0, "Compare only message headers. Bit-by-bit compare on. Incompatible with -c option.\n", 0, 1, 0 }, + { "R:", 0, 0, 0, 1, 0 }, + { "A:", 0, 0, 0, 1, 0 }, + /* {"P",0,"Compare data values using the packing error as tolerance.\n",0,1,0},*/ + { "t:", "factor", "Compare data values using factor multiplied by the tolerance specified in options -R -A.\n", 0, 1, 0 }, + { "w:", 0, 0, 0, 1, 0 }, + { "f", 0, 0, 0, 1, 0 }, + { "F", 0, 0, 1, 0, 0 }, + { "q", 0, 0, 1, 0, 0 }, + { "M", 0, 0, 1, 0, 0 }, + { "I", 0, 0, 1, 0, 0 }, + { "V", 0, 0, 0, 1, 0 }, + { "7", 0, 0, 0, 1, 0 }, + { "v", 0, 0, 0, 1, 0 } +}; + +int grib_options_count = sizeof(grib_options) / sizeof(grib_option); + +const char* tool_description = + "Compare BUFR messages contained in two files." + "\n\tIf some differences are found it fails returning an error code." + "\n\tFloating-point values are compared exactly by default, different tolerances can be defined (see -A -R)." + "\n\tDefault behaviour: absolute error=0, bit-by-bit compare, same order in files."; + +const char* tool_name = "bufr_compare"; +const char* tool_usage = "[options] bufr_file1 bufr_file2"; + GRIB_INLINE static int grib_inline_strcmp(const char* a, const char* b) { if (*a != *b) @@ -21,25 +59,6 @@ GRIB_INLINE static int grib_inline_strcmp(const char* a, const char* b) return (*a == 0 && *b == 0) ? 0 : 1; } -GRIB_INLINE static int grib_inline_rstrcmp(const char* a, const char* b) -{ - const char* p = a; - const char* q = b; - while (*p != 0) - p++; - while (*q != 0) - q++; - q--; - p--; - if (*q != *p) - return 1; - while ((p != a && q != b) && *(p) == *(q)) { - p--; - q--; - } - return (q == b) ? 0 : 1; -} - typedef double (*compare_double_proc)(double*, double*, double*); typedef struct grib_error grib_error; @@ -60,9 +79,6 @@ static int isLeafKey = 0; /* 0 if key is top-level, 1 if key ha static int compareAbsolute = 1; static int compare_handles(grib_handle* handle1, grib_handle* handle2, grib_runtime_options* options); -static int compare_values(grib_runtime_options* options, grib_handle* handle1, grib_handle* handle2, const char* name, int type); -static int compare_attributes(grib_handle* handle1, grib_handle* handle2, grib_runtime_options* options, - grib_accessor* a, const char* prefix, int* err); static int compare_attribute(grib_handle* handle1, grib_handle* handle2, grib_runtime_options* options, grib_accessor* a, const char* prefix, int* err); @@ -88,6 +104,12 @@ static int listFromCommandLine; static int verbose = 0; static int tolerance_factor = 1; static int write_error = 0; +static int write_count = 0; + +static grib_handle* global_handle = NULL; +static int counter = 0; +static int start = -1; +static int end = -1; /* Create the list of keys (global variable keys_list) */ static void new_keys_list() @@ -125,8 +147,6 @@ GRIB_INLINE static double compare_double_absolute(double* a, double* b, double* /* return fabs(*a-*b) > *err ? fabs(*a-*b) : 0; */ } -static int write_count = 0; - static void write_message(grib_handle* h, const char* str) { const void* m; @@ -204,49 +224,6 @@ static double relative_error(double a, double b, double err) return relativeError; } -grib_option grib_options[] = { - /* {id, args, help}, on, command_line, value*/ - /*{"r",0,"Compare files in which the messages are not in the same order. This option is time expensive.\n",0,1,0},*/ - { "b:", 0, 0, 0, 1, 0 }, - { "d", 0, "Write different messages on files.\n", 0, 1, 0 }, - { "2", 0, "Enable two-way comparison.\n", 0, 1, 0 }, - { "T:", 0, 0, 1, 0, "B" }, - { "c:", 0, 0, 0, 1, 0 }, - { "S:", "start", "First field to be processed.\n", 0, 1, 0 }, - { "E:", "end", "Last field to be processed.\n", 0, 1, 0 }, - { "a", 0, "-c option modifier. The keys listed with the option -c will be added to the list of keys compared without -c.\n", 0, 1, 0 }, - { "H", 0, "Compare only message headers. Bit-by-bit compare on. Incompatible with -c option.\n", 0, 1, 0 }, - { "R:", 0, 0, 0, 1, 0 }, - { "A:", 0, 0, 0, 1, 0 }, - /* {"P",0,"Compare data values using the packing error as tolerance.\n",0,1,0},*/ - { "t:", "factor", "Compare data values using factor multiplied by the tolerance specified in options -R -A.\n", 0, 1, 0 }, - { "w:", 0, 0, 0, 1, 0 }, - { "f", 0, 0, 0, 1, 0 }, - { "F", 0, 0, 1, 0, 0 }, - { "q", 0, 0, 1, 0, 0 }, - { "M", 0, 0, 1, 0, 0 }, - { "I", 0, 0, 1, 0, 0 }, - { "V", 0, 0, 0, 1, 0 }, - { "7", 0, 0, 0, 1, 0 }, - { "v", 0, 0, 0, 1, 0 } -}; - -static grib_handle* global_handle = NULL; -static int counter = 0; -static int start = -1; -static int end = -1; - -const char* tool_description = - "Compare BUFR messages contained in two files." - "\n\tIf some differences are found it fails returning an error code." - "\n\tFloating-point values are compared exactly by default, different tolerances can be defined (see -A -R)." - "\n\tDefault behaviour: absolute error=0, bit-by-bit compare, same order in files."; - -const char* tool_name = "bufr_compare"; -const char* tool_usage = "[options] bufr_file1 bufr_file2"; - -int grib_options_count = sizeof(grib_options) / sizeof(grib_option); - int main(int argc, char* argv[]) { return grib_tool(argc, argv); @@ -696,7 +673,6 @@ static int compare_values(grib_runtime_options* options, grib_handle* handle1, g int err2; int type1, type2; int countdiff; - int isangle = 0; int isMissing1 = 0, isMissing2 = 0; char *sval1 = NULL, *sval2 = NULL; @@ -928,37 +904,7 @@ static int compare_values(grib_runtime_options* options, grib_handle* handle1, g dval1 = (double*)grib_context_malloc(handle1->context, len1 * sizeof(double)); dval2 = (double*)grib_context_malloc(handle2->context, len2 * sizeof(double)); - isangle = 0; value_tolerance = global_tolerance; - if (!grib_inline_strcmp(name, "packedValues") || !grib_inline_strcmp(name, "values") || !grib_inline_strcmp(name, "codedValues")) { - packingError1 = 0; - packingError2 = 0; - err1 = grib_get_double(handle1, "packingError", &packingError1); - err2 = grib_get_double(handle2, "packingError", &packingError2); - if (packingCompare) - value_tolerance = packingError1 > packingError2 ? packingError1 : packingError2; - } - else if (!grib_inline_strcmp(name, "unpackedValues")) { - packingError1 = 0; - packingError2 = 0; - err1 = grib_get_double(handle1, "unpackedError", &packingError1); - err2 = grib_get_double(handle2, "unpackedError", &packingError2); - if (packingCompare) - value_tolerance = packingError1 > packingError2 ? packingError1 : packingError2; - } - else if (!grib_inline_rstrcmp(name, "InDegrees")) { - packingError1 = 0.0005; - packingError2 = 0.0005; - isangle = 1; - value_tolerance = packingError1 > packingError2 ? packingError1 : packingError2; - } - else if (!grib_inline_strcmp(name, "referenceValue")) { - packingError1 = 0; - packingError2 = 0; - err1 = grib_get_double(handle1, "referenceValueError", &packingError1); - err2 = grib_get_double(handle2, "referenceValueError", &packingError2); - value_tolerance = packingError1 > packingError2 ? packingError1 : packingError2; - } if (!compareAbsolute) { int all_specified = 0; /* =1 if relative comparison with "all" specified */ @@ -1012,13 +958,13 @@ static int compare_values(grib_runtime_options* options, grib_handle* handle1, g if (err1 == GRIB_SUCCESS && err2 == GRIB_SUCCESS && len1 == len2) { int imaxdiff; double diff; - double *pv1, *pv2, dnew1, dnew2; + double *pv1, *pv2; maxdiff = 0; imaxdiff = 0; countdiff = 0; pv1 = dval1; pv2 = dval2; - if (isangle) { + /* if (isangle) { dnew1 = *dval1; dnew2 = *dval2; pv1 = &dnew1; @@ -1031,7 +977,7 @@ static int compare_values(grib_runtime_options* options, grib_handle* handle1, g dnew1 -= 360.0; if (*dval2 > 360) dnew2 -= 360.0; - } + } */ value_tolerance *= tolerance_factor; if (verbose) printf(" (%d values) tolerance=%g\n", (int)len1, value_tolerance); @@ -1073,14 +1019,6 @@ static int compare_values(grib_runtime_options* options, grib_handle* handle1, g if (packingError2 != 0 || packingError1 != 0) printf(" packingError: [%g] [%g]", packingError1, packingError2); - if (!grib_inline_strcmp(name, "packedValues") || !grib_inline_strcmp(name, "values") || !grib_inline_strcmp(name, "codedValues")) { - double max1, min1, max2, min2; - grib_get_double(handle1, "max", &max1); - grib_get_double(handle1, "min", &min1); - grib_get_double(handle2, "max", &max2); - grib_get_double(handle2, "min", &min2); - printf("\n\tvalues max= [%g] [%g] min= [%g] [%g]", max1, max2, min1, min2); - } printf("\n"); } else { diff --git a/tools/grib_get_data.c b/tools/grib_get_data.c index 310e593ec..f39e3dabe 100644 --- a/tools/grib_get_data.c +++ b/tools/grib_get_data.c @@ -82,9 +82,9 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) grib_values* values = NULL; grib_iterator* iter = NULL; char* format_values = NULL; - char format_latlons[64] = {0,}; + char format_latlons[32] = {0,}; char* default_format_values = "%.10e"; - char* default_format_latlons = "%9.3f%9.3f "; + char* default_format_latlons = "%9.3f%9.3f"; int print_keys = grib_options_on("p:"); long numberOfPoints = 0; long bitmapPresent = 0; @@ -133,21 +133,20 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) if (grib_options_on("L:")) { /* Do a very basic sanity check */ - size_t ii=0, count=0; const char* str = grib_options_get_option("L:"); - for(ii=0; str[ii]; ii++) if (str[ii] == '%') count++; - if (count != 2) { - fprintf(stderr, "ERROR: Invalid lats/lons format option \"%s\"\n", str); - return err; + if (count_char_in_string(str, '%') != 2) { + fprintf(stderr, "ERROR: Invalid lats/lons format option \"%s\".\nThe default is: \"%s\"\n", + str, default_format_latlons); + exit(1); } - sprintf(format_latlons, "%s ", grib_options_get_option("L:"));/*Add a final space to separate from data values*/ + sprintf(format_latlons, "%s ", str);/* Add a final space to separate from data values */ } else { - sprintf(format_latlons, "%s", default_format_latlons); + sprintf(format_latlons, "%s ", default_format_latlons); } if ((err = grib_get_long(h, "numberOfPoints", &numberOfPoints)) != GRIB_SUCCESS) { - fprintf(stderr, "ERROR: unable to get number of points\n"); - return err; + fprintf(stderr, "ERROR: Unable to get number of points\n"); + exit(err); } iter = grib_iterator_new(h, 0, &err); @@ -155,7 +154,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) num_bytes = (numberOfPoints + 1) * sizeof(double); data_values = (double*)calloc(numberOfPoints + 1, sizeof(double)); if (!data_values) { - fprintf(stderr, "ERROR: failed to allocate %ld bytes for data values (number of points=%ld)\n", + fprintf(stderr, "ERROR: Failed to allocate %ld bytes for data values (number of points=%ld)\n", (long)num_bytes, numberOfPoints); exit(GRIB_OUT_OF_MEMORY); } @@ -179,7 +178,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) } if (size != numberOfPoints) { if (!grib_options_on("q")) - fprintf(stderr, "ERROR: wrong number of points %d\n", (int)numberOfPoints); + fprintf(stderr, "ERROR: Wrong number of points %d\n", (int)numberOfPoints); if (grib_options_on("f")) exit(1); } diff --git a/tools/gts_compare.c b/tools/gts_compare.c index dff76f038..1f5099d27 100644 --- a/tools/gts_compare.c +++ b/tools/gts_compare.c @@ -10,6 +10,42 @@ #include "grib_tools.h" +grib_option grib_options[] = { + /* {id, args, help}, on, command_line, value*/ + /*{"r",0,"Compare files in which the messages are not in the same order. This option is time expensive.\n",0,1,0},*/ + { "b:", 0, 0, 0, 1, 0 }, + { "d", 0, "Write different messages on files\n", 0, 1, 0 }, + { "T:", 0, 0, 1, 0, "T" }, /* GTS */ + { "c:", 0, 0, 0, 1, 0 }, + { "S:", "start", "First field to be processed.\n", 0, 1, 0 }, + { "E:", "end", "Last field to be processed.\n", 0, 1, 0 }, + { "a", 0, "-c option modifier. The keys listed with the option -c will be added to the list of keys compared without -c.\n", 0, 1, 0 }, + /*{"H",0,"Compare only message headers. Bit-by-bit compare on. Incompatible with -c option.\n",0,1,0},*/ + /*{"R:",0,0,0,1,0},*/ + /*{"A:",0,0,0,1,0},*/ + { "w:", 0, 0, 0, 1, 0 }, + { "f", 0, 0, 0, 1, 0 }, + { "F", 0, 0, 1, 0, 0 }, + { "q", 0, 0, 1, 0, 0 }, + { "I", 0, 0, 1, 0, 0 }, + { "V", 0, 0, 0, 1, 0 }, + { "7", 0, 0, 0, 1, 0 }, + { "v", 0, 0, 0, 1, 0 } +}; + +int grib_options_count = sizeof(grib_options) / sizeof(grib_option); + +const char* tool_description = + "Compare GTS messages contained in two files." + "\n\tIf some differences are found it fails returning an error code." + "\n\tDefault behaviour: bit-by-bit compare, same order in files."; + +const char* tool_name = "gts_compare"; +const char* tool_usage = + "[options] " + "file file"; + + GRIB_INLINE static int grib_inline_strcmp(const char* a, const char* b) { if (*a != *b) @@ -37,7 +73,7 @@ compare_double_proc compare_double; grib_string_list* blocklist = 0; static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_options* options); -static int compare_values(grib_runtime_options* options, grib_handle* h1, grib_handle* h2, const char* name, int type); + int error = 0; int count = 0; int lastPrint = 0; @@ -54,6 +90,12 @@ static int write_error = 0; static int write_count = 0; +grib_handle* global_handle = NULL; +int counter = 0; +int start = -1; +int end = -1; + + static void write_message(grib_handle* h, const char* str) { const void* m; @@ -103,46 +145,6 @@ static int blocklisted(const char* name) return 0; } -grib_option grib_options[] = { - /* {id, args, help}, on, command_line, value*/ - /*{"r",0,"Compare files in which the messages are not in the same order. This option is time expensive.\n",0,1,0},*/ - { "b:", 0, 0, 0, 1, 0 }, - { "d", 0, "Write different messages on files\n", 0, 1, 0 }, - { "T:", 0, 0, 1, 0, "T" }, /* GTS */ - { "c:", 0, 0, 0, 1, 0 }, - { "S:", "start", "First field to be processed.\n", 0, 1, 0 }, - { "E:", "end", "Last field to be processed.\n", 0, 1, 0 }, - { "a", 0, "-c option modifier. The keys listed with the option -c will be added to the list of keys compared without -c.\n", 0, 1, 0 }, - /*{"H",0,"Compare only message headers. Bit-by-bit compare on. Incompatible with -c option.\n",0,1,0},*/ - /*{"R:",0,0,0,1,0},*/ - /*{"A:",0,0,0,1,0},*/ - { "w:", 0, 0, 0, 1, 0 }, - { "f", 0, 0, 0, 1, 0 }, - { "F", 0, 0, 1, 0, 0 }, - { "q", 0, 0, 1, 0, 0 }, - { "I", 0, 0, 1, 0, 0 }, - { "V", 0, 0, 0, 1, 0 }, - { "7", 0, 0, 0, 1, 0 }, - { "v", 0, 0, 0, 1, 0 } -}; - -grib_handle* global_handle = NULL; -int counter = 0; -int start = -1; -int end = -1; - -const char* tool_description = - "Compare GTS messages contained in two files." - "\n\tIf some differences are found it fails returning an error code." - "\n\tDefault behaviour: bit-by-bit compare, same order in files."; - -const char* tool_name = "gts_compare"; -const char* tool_usage = - "[options] " - "file file"; - -int grib_options_count = sizeof(grib_options) / sizeof(grib_option); - int main(int argc, char* argv[]) { return grib_tool(argc, argv); diff --git a/tools/metar_compare.c b/tools/metar_compare.c index cd2b4df25..29fbf8c88 100644 --- a/tools/metar_compare.c +++ b/tools/metar_compare.c @@ -10,6 +10,45 @@ #include "grib_tools.h" +grib_option grib_options[] = { + /* {id, args, help}, on, command_line, value*/ + { "r", 0, "Compare files in which the messages are not in the same order. This option is time expensive.\n", 0, 1, 0 }, + { "b:", 0, 0, 0, 1, 0 }, + { "d", 0, "Write different messages on files\n", 0, 1, 0 }, + { "T:", 0, 0, 1, 0, "M" }, /* METAR */ + { "c:", 0, 0, 0, 1, 0 }, + { "S:", "start", "First field to be processed.\n", 0, 1, 0 }, + { "E:", "end", "Last field to be processed.\n", 0, 1, 0 }, + { "a", 0, "-c option modifier. The keys listed with the option -c will be added to the list of keys compared without -c.\n", 0, 1, 0 }, + { "H", 0, "Compare only message headers. Bit-by-bit compare on. Incompatible with -c option.\n", 0, 1, 0 }, + { "R:", 0, 0, 0, 1, 0 }, + { "A:", 0, 0, 0, 1, 0 }, + { "P", 0, "Compare data values using the packing error as tolerance.\n", 0, 1, 0 }, + { "t:", "factor", "Compare data values using factor multiplied by the tolerance specified in options -P -R -A.\n", 0, 1, 0 }, + { "w:", 0, 0, 0, 1, 0 }, + { "f", 0, 0, 0, 1, 0 }, + { "F", 0, 0, 1, 0, 0 }, + { "q", 0, 0, 1, 0, 0 }, + { "I", 0, 0, 1, 0, 0 }, + { "V", 0, 0, 0, 1, 0 }, + { "7", 0, 0, 0, 1, 0 }, + { "v", 0, 0, 0, 1, 0 } +}; + +int grib_options_count = sizeof(grib_options) / sizeof(grib_option); + +const char* tool_description = + "Compare METAR messages contained in two files." + "\n\tIf some differences are found it fails returning an error code." + "\n\tFloating-point values are compared exactly by default, different tolerance can be defined see -P -A -R." + "\n\tDefault behaviour: absolute error=0, bit-by-bit compare, same order in files."; + +const char* tool_name = "metar_compare"; +const char* tool_usage = + "[options] " + "file file"; + + GRIB_INLINE static int grib_inline_strcmp(const char* a, const char* b) { if (*a != *b) @@ -21,25 +60,6 @@ GRIB_INLINE static int grib_inline_strcmp(const char* a, const char* b) return (*a == 0 && *b == 0) ? 0 : 1; } -GRIB_INLINE static int grib_inline_rstrcmp(const char* a, const char* b) -{ - char* p = (char*)a; - char* q = (char*)b; - while (*p != 0) - p++; - while (*q != 0) - q++; - q--; - p--; - if (*q != *p) - return 1; - while ((p != a && q != b) && *(p) == *(q)) { - p--; - q--; - } - return (q == b) ? 0 : 1; -} - typedef double (*compare_double_proc)(double*, double*, double*); typedef struct grib_error grib_error; @@ -50,29 +70,32 @@ struct grib_error grib_error* next; }; -grib_error* error_summary; - -compare_double_proc compare_double; -double global_tolerance = 0; -int packingCompare = 0; -grib_string_list* blocklist = 0; -int compareAbsolute = 1; +static grib_error* error_summary; +static compare_double_proc compare_double; +static double global_tolerance = 0; +static int packingCompare = 0; +static grib_string_list* blocklist = 0; +static int compareAbsolute = 1; static int compare_handles(grib_handle* h1, grib_handle* h2, grib_runtime_options* options); -static int compare_values(grib_runtime_options* options, grib_handle* h1, grib_handle* h2, const char* name, int type); -int error = 0; -int count = 0; -int lastPrint = 0; -int force = 0; -double maxAbsoluteError = 1e-19; -int onlyListed = 1; -int headerMode = 0; -int morein1 = 0; -int morein2 = 0; -int listFromCommandLine; -int verbose = 0; -int tolerance_factor = 1; +static int error = 0; +static int count = 0; +static int lastPrint = 0; +static int force = 0; +static double maxAbsoluteError = 1e-19; +static int onlyListed = 1; +static int headerMode = 0; +static int morein1 = 0; +static int morein2 = 0; +static int listFromCommandLine; +static int verbose = 0; +static int tolerance_factor = 1; static int write_error = 0; +static grib_handle* global_handle = NULL; +static int global_counter = 0; +static int start = -1; +static int end = -1; +static int write_count = 0; GRIB_INLINE static double compare_double_absolute(double* a, double* b, double* err) { @@ -85,8 +108,6 @@ GRIB_INLINE static double compare_double_absolute(double* a, double* b, double* /* return fabs(*a-*b) > *err ? fabs(*a-*b) : 0; */ } -static int write_count = 0; - static void write_message(grib_handle* h, const char* str) { const void* m; @@ -164,49 +185,6 @@ static double relative_error(double a, double b, double err) return relativeError; } -grib_option grib_options[] = { - /* {id, args, help}, on, command_line, value*/ - { "r", 0, "Compare files in which the messages are not in the same order. This option is time expensive.\n", 0, 1, 0 }, - { "b:", 0, 0, 0, 1, 0 }, - { "d", 0, "Write different messages on files\n", 0, 1, 0 }, - { "T:", 0, 0, 1, 0, "M" }, /* METAR */ - { "c:", 0, 0, 0, 1, 0 }, - { "S:", "start", "First field to be processed.\n", 0, 1, 0 }, - { "E:", "end", "Last field to be processed.\n", 0, 1, 0 }, - { "a", 0, "-c option modifier. The keys listed with the option -c will be added to the list of keys compared without -c.\n", 0, 1, 0 }, - { "H", 0, "Compare only message headers. Bit-by-bit compare on. Incompatible with -c option.\n", 0, 1, 0 }, - { "R:", 0, 0, 0, 1, 0 }, - { "A:", 0, 0, 0, 1, 0 }, - { "P", 0, "Compare data values using the packing error as tolerance.\n", 0, 1, 0 }, - { "t:", "factor", "Compare data values using factor multiplied by the tolerance specified in options -P -R -A.\n", 0, 1, 0 }, - { "w:", 0, 0, 0, 1, 0 }, - { "f", 0, 0, 0, 1, 0 }, - { "F", 0, 0, 1, 0, 0 }, - { "q", 0, 0, 1, 0, 0 }, - { "I", 0, 0, 1, 0, 0 }, - { "V", 0, 0, 0, 1, 0 }, - { "7", 0, 0, 0, 1, 0 }, - { "v", 0, 0, 0, 1, 0 } -}; - -grib_handle* global_handle = NULL; -int global_counter = 0; -int start = -1; -int end = -1; - -const char* tool_description = - "Compare METAR messages contained in two files." - "\n\tIf some differences are found it fails returning an error code." - "\n\tFloating-point values are compared exactly by default, different tolerance can be defined see -P -A -R." - "\n\tDefault behaviour: absolute error=0, bit-by-bit compare, same order in files."; - -const char* tool_name = "metar_compare"; -const char* tool_usage = - "[options] " - "file file"; - -int grib_options_count = sizeof(grib_options) / sizeof(grib_option); - int main(int argc, char* argv[]) { return grib_tool(argc, argv); @@ -817,12 +795,6 @@ static int compare_values(grib_runtime_options* options, grib_handle* h1, grib_h if (packingCompare) value_tolerance = packingError1 > packingError2 ? packingError1 : packingError2; } - else if (!grib_inline_rstrcmp(name, "InDegrees")) { - packingError1 = 0.0005; - packingError2 = 0.0005; - isangle = 1; - value_tolerance = packingError1 > packingError2 ? packingError1 : packingError2; - } else if (!grib_inline_strcmp(name, "referenceValue")) { packingError1 = 0; packingError2 = 0; From 0b803b314ef554226c88070461c2295683015362 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 4 Feb 2021 18:12:17 +0000 Subject: [PATCH 286/683] Testing: listing all codetable and flagtable keys --- tests/CMakeLists.txt | 2 + tests/list_codetable_flagtable_keys.c | 101 +++++++++++++++++++++++++ tests/list_codetable_flagtable_keys.sh | 26 +++++++ tools/grib_get_data.sh | 7 +- 4 files changed, 135 insertions(+), 1 deletion(-) create mode 100644 tests/list_codetable_flagtable_keys.c create mode 100755 tests/list_codetable_flagtable_keys.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index eb2e37ea0..3281011f5 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -10,6 +10,7 @@ execute_process( COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_S # Build the executables used by test scripts ################################################ list(APPEND test_bins + list_codetable_flagtable_keys grib_bpv_limit grib_double_cmp read_any @@ -226,6 +227,7 @@ if( HAVE_BUILD_TOOLS ) list(APPEND tests_data_reqd grib_tigge_conversions2) list(APPEND tests_data_reqd bufr_dump_encode_C) list(APPEND tests_data_reqd bufr_dump_decode_C) + list(APPEND tests_no_data_reqd list_codetable_flagtable_keys) endif() # These tests do not require any data downloads diff --git a/tests/list_codetable_flagtable_keys.c b/tests/list_codetable_flagtable_keys.c new file mode 100644 index 000000000..b13c66a1c --- /dev/null +++ b/tests/list_codetable_flagtable_keys.c @@ -0,0 +1,101 @@ +/* + * (C) Copyright 2005- ECMWF. + * + * This software is licensed under the terms of the Apache Licence Version 2.0 + * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. + * + * In applying this licence, ECMWF does not waive the privileges and immunities granted to it by + * virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. + */ + +#include "grib_api_internal.h" + +typedef struct grib_action_if +{ + grib_action act; + /* Members defined in section */ + /* Members defined in if */ + grib_expression* expression; + grib_action* block_true; + grib_action* block_false; +} grib_action_if; + +typedef struct grib_action_list +{ + grib_action act; + /* Members defined in section */ + /* Members defined in list */ + grib_expression* expression; + grib_action* block_list; +} grib_action_list; + +typedef struct grib_action_gen +{ + grib_action act; + /* Members defined in gen */ + long len; + grib_arguments* params; +} grib_action_gen; + +void print_names(grib_action* a) +{ + while (a) { + if (a->op && !strcmp(a->op, "label")) { + a = a->next; + continue; + } + if (!strcmp(a->cclass->name, "action_class_noop") || + !strcmp(a->cclass->name, "action_class_when")) { + a = a->next; + continue; + } + + if (!strcmp(a->cclass->name, "action_class_list")) { + grib_action_list* al = (grib_action_list*)a; + /*printf("%s\n", a->name);*/ + print_names(al->block_list); + } + else if (!strcmp(a->cclass->name, "action_class_if")) { + grib_action_if* ai = (grib_action_if*)a; + print_names(ai->block_false); + print_names(ai->block_true); + } + else if (!strcmp(a->cclass->name, "action_class_gen")) { + const char* table = NULL; + grib_action_gen* ag = (grib_action_gen*)a; + if (strcmp(a->op,"codetable")==0 || strcmp(a->op,"codeflag")==0) { + printf("%s", a->name); + table = grib_arguments_get_string(NULL, ag->params, 0); + if (table) printf("\t%s=%s", a->op, table); + printf("\n"); + } + } + else { + /*printf("%s\n", a->name);*/ + } + + a = a->next; + } +} + +int main(int argc, char* argv[]) +{ + int i = 0; + int fail = 0; + + grib_context* c = grib_context_get_default(); + grib_action* a = NULL; + + for (i = 1; i < argc; i++) { + if (!(a = grib_parse_file(c, argv[i]))) { + fail++; + printf("FAILED\n"); + exit(1); + } + else { + print_names(a); + } + } + + return fail; +} diff --git a/tests/list_codetable_flagtable_keys.sh b/tests/list_codetable_flagtable_keys.sh new file mode 100755 index 000000000..5e042c311 --- /dev/null +++ b/tests/list_codetable_flagtable_keys.sh @@ -0,0 +1,26 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh + +OUTPUT=all_codetable_flagtable_keys.txt +TEMP=temp.list_codetable_flagtable_keys.txt + +[ -z "$ECCODES_DEFINITION_PATH" ] | ECCODES_DEFINITION_PATH=`${tools_dir}/codes_info -d` + +touch $TEMP +echo "Go through all files in $ECCODES_DEFINITION_PATH ..." +for file in `find $ECCODES_DEFINITION_PATH/ -name '*.def' -print`; do + ${test_dir}/list_codetable_flagtable_keys $file >> $TEMP +done + +sort -u < $TEMP > $OUTPUT +echo "Created $OUTPUT" +rm -f $TEMP diff --git a/tools/grib_get_data.sh b/tools/grib_get_data.sh index 223930257..dd1786cd1 100755 --- a/tools/grib_get_data.sh +++ b/tools/grib_get_data.sh @@ -9,10 +9,15 @@ echo "\\endverbatim" echo "-# If you want to define your missing value=1111 and to print the string 'missing' in place of it" echo "\\verbatim" -echo ">grib_get_data -m 1111:missing ../data/reduced_gaussian_model_level.grib2" +echo ">grib_get_data -m 1111:missing ../data/reduced_latlon_surface.grib2" echo "\\endverbatim" echo "-# If you want to print the value of other keys with the data value list" echo "\\verbatim" echo ">grib_get_data -p centre,level,step ../data/reduced_gaussian_model_level.grib2" echo "\\endverbatim" + +echo "-# If you want to control the formatting of the latitudes and longitudes" +echo "\\verbatim" +echo ">grib_get_data -L %12.6f%12.6f ../data/reduced_latlon_surface.grib2" +echo "\\endverbatim" From a456c11c7433561e7ac801ba02e6557edeadb313 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 5 Feb 2021 12:24:28 +0000 Subject: [PATCH 287/683] Testing: exclude grib3 from keys list --- tests/list_codetable_flagtable_keys.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/list_codetable_flagtable_keys.sh b/tests/list_codetable_flagtable_keys.sh index 5e042c311..a69e4a0d1 100755 --- a/tests/list_codetable_flagtable_keys.sh +++ b/tests/list_codetable_flagtable_keys.sh @@ -17,7 +17,7 @@ TEMP=temp.list_codetable_flagtable_keys.txt touch $TEMP echo "Go through all files in $ECCODES_DEFINITION_PATH ..." -for file in `find $ECCODES_DEFINITION_PATH/ -name '*.def' -print`; do +for file in `find $ECCODES_DEFINITION_PATH/ -name '*.def' -print | grep -v grib3/`; do ${test_dir}/list_codetable_flagtable_keys $file >> $TEMP done From b8fea9ad219f4b39251c3f2241d8a3b0eca91549 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 5 Feb 2021 15:37:28 +0000 Subject: [PATCH 288/683] Testing: listing all codetable and flagtable keys --- examples/C/Makefile.am | 3 +++ tests/Makefile.am | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/examples/C/Makefile.am b/examples/C/Makefile.am index ed686f1d8..fb5fff40a 100644 --- a/examples/C/Makefile.am +++ b/examples/C/Makefile.am @@ -29,6 +29,7 @@ TESTS = grib_iterator.sh \ bufr_keys_iterator.sh \ bufr_missing.sh \ bufr_read_temp.sh \ + bufr_copy_data.sh \ get_product_kind.sh noinst_PROGRAMS = c_grib_nearest \ @@ -71,6 +72,7 @@ noinst_PROGRAMS = c_grib_nearest \ c_bufr_set_keys \ c_bufr_missing \ c_bufr_read_temp \ + c_bufr_copy_data \ c_get_product_kind #bin_PROGRAMS = grib_nearest_multiple @@ -112,6 +114,7 @@ c_bufr_read_header_SOURCES = bufr_read_header.c c_bufr_read_scatterometer_SOURCES = bufr_read_scatterometer.c c_bufr_read_synop_SOURCES = bufr_read_synop.c c_bufr_read_temp_SOURCES = bufr_read_temp.c +c_bufr_copy_data_SOURCES = bufr_copy_data.c c_bufr_set_keys_SOURCES = bufr_set_keys.c c_bufr_subset_SOURCES = bufr_subset.c c_get_product_kind_SOURCES = get_product_kind.c diff --git a/tests/Makefile.am b/tests/Makefile.am index f3865fb15..414e14448 100755 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -110,6 +110,7 @@ TESTS = definitions.sh \ grib_ecc-1030.sh \ grib_lam_gp.sh \ grib_lam_bf.sh \ + list_codetable_flagtable_keys.sh \ bufr_get_element.sh \ bufr_extract_headers.sh @@ -123,7 +124,7 @@ noinst_PROGRAMS = packing_check gauss_sub read_any grib_double_cmp packing pack_ julian grib_read_index grib_indexing gribex_perf\ jpeg_perf grib_ccsds_perf so_perf png_perf grib_bpv_limit laplacian \ unit_tests bufr_ecc-517 grib_lam_gp grib_lam_bf grib_sh_imag \ - bufr_extract_headers bufr_get_element + bufr_extract_headers bufr_get_element list_codetable_flagtable_keys laplacian_SOURCES = laplacian.c packing_SOURCES = packing.c @@ -144,6 +145,7 @@ gauss_sub_SOURCES = gauss_sub.c bufr_ecc_517_SOURCES = bufr_ecc-517.c grib_lam_gp_SOURCES = grib_lam_gp.c grib_lam_bf_SOURCES = grib_lam_bf.c +list_codetable_flagtable_keys_SOURCES = list_codetable_flagtable_keys.c grib_sh_imag_SOURCES = grib_sh_imag.c bufr_extract_headers_SOURCES = bufr_extract_headers.c bufr_get_element_SOURCES = bufr_get_element.c From 4ef0e9fe997c5d57314ee42b79df8c7265593a85 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 6 Feb 2021 13:07:35 +0000 Subject: [PATCH 289/683] Definitions: comments/spacing etc --- definitions/grib1/section.2.def | 22 +++----- definitions/grib2/section.1.def | 33 ++++-------- definitions/grib2/section.2.def | 4 +- definitions/grib2/section.3.def | 15 +++--- definitions/grib2/section.4.def | 5 +- definitions/grib2/section.5.def | 11 ++-- definitions/grib2/section.6.def | 20 +++---- definitions/grib2/section.7.def | 17 +++--- definitions/grib2/sections.def | 16 +++--- definitions/grib2/template.4.30.def | 3 +- definitions/grib2/template.4.parameter.def | 28 +++++----- .../grib2/template.4.parameter_aerosol_44.def | 30 ++++------- definitions/grib2/template.4.probability.def | 14 +---- definitions/grib2/template.5.1.def | 52 ++++++++----------- definitions/grib2/template.5.42.def | 2 +- 15 files changed, 100 insertions(+), 172 deletions(-) diff --git a/definitions/grib1/section.2.def b/definitions/grib1/section.2.def index b1f2b98e2..485898024 100644 --- a/definitions/grib1/section.2.def +++ b/definitions/grib1/section.2.def @@ -11,7 +11,6 @@ alias radiusInMetres=radius; transient shapeOfTheEarth=0: hidden; #ECC-811 # NV -- number of vertical coordinate parameters - unsigned[1] numberOfVerticalCoordinateValues : dump ; constant neitherPresent = 255; @@ -33,12 +32,9 @@ meta gridDefinitionDescription codetable_title(dataRepresentationType); # (according to data representation type - octet 6 above) alias isRotatedGrid=zero; -if (dataRepresentationType < 192) -{ +if (dataRepresentationType < 192) { template dataRepresentation "grib1/grid_definition_[dataRepresentationType:l].def"; -} -else -{ +} else { template dataRepresentation "grib1/grid_definition_[dataRepresentationType:l].[centre:l].def"; } position endGridDefinition; @@ -46,15 +42,13 @@ position endGridDefinition; position offsetBeforePV; transient PVPresent = ( NV > 0); -if (pvlLocation != neitherPresent) -{ +if (pvlLocation != neitherPresent) { padto padding_sec2_2(offsetSection2 + pvlLocation - 1); } else { padto padding_sec2_2(offsetSection2 + 32 ); } -if(PVPresent ) -{ +if (PVPresent ) { ibmfloat pv[NV] : dump; alias vertical.pv=pv; } @@ -62,10 +56,9 @@ if(PVPresent ) position offsetBeforePL; transient PLPresent = (section2Length > (offsetBeforePL - offsetSection2)) - && (section2Length >= (Nj * 2 + offsetBeforePL - offsetSection2)) ; + && (section2Length >= (Nj * 2 + offsetBeforePL - offsetSection2)); -if(PLPresent) -{ +if (PLPresent) { # For grib 1 -> 2 constant numberOfOctectsForNumberOfPoints = 2; constant interpretationOfNumberOfPoints = 1; @@ -74,8 +67,7 @@ if(PLPresent) alias geography.pl=pl; } -if(PVPresent == 0 && PLPresent == 0) -{ +if (PVPresent == 0 && PLPresent == 0) { # pad to the end of the grid definiton as in documentation # ( gribex compatibility ) padto padding_sec2_1(offsetSection2 + 32); diff --git a/definitions/grib2/section.1.def b/definitions/grib2/section.1.def index 81fe7d14b..3cbdbb5a6 100644 --- a/definitions/grib2/section.1.def +++ b/definitions/grib2/section.1.def @@ -17,9 +17,9 @@ alias originatingCentre=centre; unsigned[2] subCentre : dump; _if (subCentre==98 ) { -alias centreForLocal=subCentre; + alias centreForLocal=subCentre; } else { -alias centreForLocal=centre; + alias centreForLocal=centre; } codetable[1] tablesVersion 'grib2/tables/1.0.table' = tablesVersionLatestOfficial : edition_specific; @@ -46,32 +46,21 @@ if (localTablesVersion != 0 and localTablesVersion != 255) { # Significance of Reference Time codetable[1] significanceOfReferenceTime ('1.2.table',masterDir,localDir) = 1 : dump; -# Year -# (4 digits) -unsigned[2] year ; +# Year (4 digits) +unsigned[2] year; +unsigned[1] month; +unsigned[1] day; +unsigned[1] hour; +unsigned[1] minute; +unsigned[1] second; -# Month -unsigned[1] month ; - -# Day -unsigned[1] day ; - -# Hour -unsigned[1] hour ; - -# Minute -unsigned[1] minute ; - -# Second -unsigned[1] second ; - -meta dataDate g2date(year,month,day) : dump; +meta dataDate g2date(year,month,day) : dump; alias mars.date = dataDate; alias ls.date = dataDate; meta julianDay julian_day(dataDate,hour,minute,second) : edition_specific; -meta dataTime time(hour,minute,second) : dump; +meta dataTime time(hour,minute,second) : dump; alias mars.time = dataTime; # Production status of processed data in this GRIB message diff --git a/definitions/grib2/section.2.def b/definitions/grib2/section.2.def index f4d4f8dd2..07852aaca 100644 --- a/definitions/grib2/section.2.def +++ b/definitions/grib2/section.2.def @@ -29,7 +29,7 @@ if ( addEmptySection2 == 0 ) { } codetable[2] grib2LocalSectionNumber 'grib2/grib2LocalSectionNumber.[centreForLocal:l].table' = 1 : dump; - + if (grib2LocalSectionNumber!=0) { template_nofail local "grib2/local.[centreForLocal:l].def"; } else { @@ -41,5 +41,3 @@ if ( addEmptySection2 == 0 ) { section_padding section2Padding : read_only; - - diff --git a/definitions/grib2/section.3.def b/definitions/grib2/section.3.def index 34b31e797..b846652af 100644 --- a/definitions/grib2/section.3.def +++ b/definitions/grib2/section.3.def @@ -1,8 +1,6 @@ # (C) Copyright 2005- ECMWF. -# START grib2::section # SECTION 3, GRID DEFINITION SECTION -# Length of section in octets # For grib2 -> 1 constant gridDescriptionSectionPresent = 1; @@ -11,21 +9,20 @@ position offsetSection3; section_length[4] section3Length ; meta section3Pointer section_pointer(offsetSection3,section3Length,3); -# Number of section unsigned[1] numberOfSection = 3 :read_only; -# Source of grid definition +# Source of grid definition codetable[1] sourceOfGridDefinition ('3.0.table',masterDir,localDir) ; -# Number of data points -unsigned[4] numberOfDataPoints : dump; +# Number of data points +unsigned[4] numberOfDataPoints : dump; alias numberOfPoints=numberOfDataPoints; -# Number of octets for optional list of numbers defining number of points +# Number of octets for optional list of numbers defining number of points unsigned[1] numberOfOctectsForNumberOfPoints; -# Interpretation of list of numbers defining number of points -codetable[1] interpretationOfNumberOfPoints ('3.11.table',masterDir,localDir) : dump; +# Interpretation of list of numbers defining number of points +codetable[1] interpretationOfNumberOfPoints ('3.11.table',masterDir,localDir) : dump; if(numberOfOctectsForNumberOfPoints == 0){ transient PLPresent = 0 ; diff --git a/definitions/grib2/section.4.def b/definitions/grib2/section.4.def index b98ac1949..ddb13ff57 100644 --- a/definitions/grib2/section.4.def +++ b/definitions/grib2/section.4.def @@ -8,7 +8,7 @@ meta section4Pointer section_pointer(offsetSection4,section4Length,4); unsigned[1] numberOfSection = 4:read_only; -unsigned[2] NV : dump ; +unsigned[2] NV : dump ; alias numberOfVerticalCoordinateValues=NV ; alias numberOfCoordinatesValues=NV; # For table 4.5, code 150 Generalized vertical height coordinate @@ -48,7 +48,7 @@ if (defined(typeOfFirstFixedSurface)) { if (genVertHeightCoords) { # Generalized vertical height coordinate case - ieeefloat nlev : dump ; + ieeefloat nlev : dump ; ieeefloat numberOfVGridUsed : dump; byte[16] uuidOfVGrid : dump; @@ -72,7 +72,6 @@ else { concept_nofail deletePV(unknown) { "1" = { PVPresent=0; NV=0; } } - } meta md5Section4 md5(offsetSection4,section4Length); diff --git a/definitions/grib2/section.5.def b/definitions/grib2/section.5.def index ec77e10c8..c8986abc9 100644 --- a/definitions/grib2/section.5.def +++ b/definitions/grib2/section.5.def @@ -2,26 +2,21 @@ position offsetBSection5; -# START grib2::section # SECTION 5, DATA REPRESENTATION SECTION -# Length of section in octets -# (nn) position offsetSection5; section_length[4] section5Length ; meta section5 section_pointer(offsetSection5,section5Length,5); -# Number of section unsigned[1] numberOfSection =5 : read_only; -# Number of data points where one or more values are specified in Section 7 when a bit map is present, -# total number of data pints when a bit map is absent. -unsigned[4] numberOfValues : dump; +# Number of data points where one or more values are specified in Section 7 when a bit map is present, +# total number of data pints when a bit map is absent. +unsigned[4] numberOfValues : dump; alias numberOfCodedValues=numberOfValues; alias numberOfEffectiveValues=numberOfValues; -# Data Representation Template Number codetable[2] dataRepresentationTemplateNumber ('5.0.table',masterDir,localDir) : edition_specific; concept packingType (unknown) { diff --git a/definitions/grib2/section.6.def b/definitions/grib2/section.6.def index 3cf18d720..b01be8b5b 100644 --- a/definitions/grib2/section.6.def +++ b/definitions/grib2/section.6.def @@ -1,9 +1,6 @@ # (C) Copyright 2005- ECMWF. -# START grib2::section # SECTION 6, BIT-MAP SECTION -# Length of section in octets -# (nn) position offsetSection6; position offsetBSection6; @@ -21,20 +18,16 @@ meta geography.bitmapPresent g2bitmap_present(bitMapIndicator): dump; transient missingValuesPresent = bitmapPresent : hidden, read_only; # Bitmap... -if(bitMapIndicator == 0) -{ - if(dataRepresentationTemplateNumber == 1) - { - if(matrixBitmapsPresent == 1) - { +if (bitMapIndicator == 0) { + if (dataRepresentationTemplateNumber == 1) { + if (matrixBitmapsPresent == 1) { meta primaryBitmap g2bitmap( tableReference, missingValue, offsetBSection6, section6Length, numberOfDataMatrices) : read_only; } - else - { + else { meta geography.bitmap g2bitmap( tableReference, missingValue, offsetBSection6, @@ -42,8 +35,7 @@ if(bitMapIndicator == 0) numberOfDataPoints) : read_only; } } - else - { + else { meta geography.bitmap g2bitmap( tableReference, missingValue, offsetBSection6, @@ -52,7 +44,7 @@ if(bitMapIndicator == 0) } } -if(bitMapIndicator == 255) +if (bitMapIndicator == 255) { # No bitmap is used but some complex packing schemes embed the missing values in the data section if (dataRepresentationTemplateNumber == 2 || dataRepresentationTemplateNumber == 3) { diff --git a/definitions/grib2/section.7.def b/definitions/grib2/section.7.def index f83c9480a..5e4280475 100644 --- a/definitions/grib2/section.7.def +++ b/definitions/grib2/section.7.def @@ -1,16 +1,12 @@ # (C) Copyright 2005- ECMWF. -# START grib2::section # SECTION 7, DATA SECTION -# Length of section in octets -# (nn) position offsetSection7; section_length[4] section7Length ; meta section7 section_pointer(offsetSection7,section7Length,7); -# Number of section unsigned[1] numberOfSection = 7:read_only; # Octets 6-nn : Data in a format described by Data Template 7.x, where x is the Data Representation @@ -20,22 +16,21 @@ position offsetBeforeData; template dataValues "grib2/template.7.[dataRepresentationTemplateNumber:l].def"; #} -meta changeDecimalPrecision decimal_precision(bitsPerValue,decimalScaleFactor,changingPrecision,values) : edition_specific; -meta decimalPrecision decimal_precision(bitsPerValue,decimalScaleFactor,changingPrecision) : edition_specific; +meta changeDecimalPrecision decimal_precision(bitsPerValue,decimalScaleFactor,changingPrecision,values) : edition_specific; +meta decimalPrecision decimal_precision(bitsPerValue,decimalScaleFactor,changingPrecision) : edition_specific; alias setDecimalPrecision=changeDecimalPrecision; -meta setBitsPerValue bits_per_value(values,bitsPerValue) : edition_specific; +meta setBitsPerValue bits_per_value(values,bitsPerValue) : edition_specific; meta getNumberOfValues size(values) : edition_specific,dump ; -meta scaleValuesBy scale_values(values,missingValue) : edition_specific; -meta offsetValuesBy offset_values(values,missingValue) : edition_specific; +meta scaleValuesBy scale_values(values,missingValue) : edition_specific; +meta offsetValuesBy offset_values(values,missingValue) : edition_specific; concept productType(unknown) { - "obstat" = {grib2LocalSectionPresent=1; centre=98; grib2LocalSectionNumber=500;productDefinitionTemplateNumber=2000;} + "obstat" = {grib2LocalSectionPresent=1; centre=98; grib2LocalSectionNumber=500;productDefinitionTemplateNumber=2000;} } position offsetAfterData; meta md5Section7 md5(offsetSection7,section7Length); alias md5DataSection = md5Section7; - diff --git a/definitions/grib2/sections.def b/definitions/grib2/sections.def index e3e3f47b2..0da884a39 100644 --- a/definitions/grib2/sections.def +++ b/definitions/grib2/sections.def @@ -14,7 +14,7 @@ alias section2Used=zero; alias setLocalDefinition=grib2LocalSectionPresent; transient deleteLocalDefinition=0; -if( (sectionNumber == 2 or grib2LocalSectionPresent>0) and deleteLocalDefinition == 0 ){ +if ( (sectionNumber == 2 or grib2LocalSectionPresent>0) and deleteLocalDefinition == 0 ) { position sectionPosition; template section_2 "grib2/section.2.def"; } @@ -22,15 +22,14 @@ alias localUsePresent=section2Used; lookup[1] sectionNumber(4) ; -if(sectionNumber == 3 or new() ){ +if (sectionNumber == 3 or new() ){ position sectionPosition; template section_3 "grib2/section.3.def"; } - lookup[1] sectionNumber(4) ; -if(sectionNumber == 4 or new() ){ +if (sectionNumber == 4 or new() ) { position sectionPosition; template section_4 "grib2/section.4.def"; } @@ -43,24 +42,23 @@ meta md5Headers md5(startOfHeaders,lengthOfHeaders); lookup[1] sectionNumber(4) ; -if(sectionNumber == 5 or new() ){ +if (sectionNumber == 5 or new() ) { position sectionPosition; template section_5 "grib2/section.5.def"; } lookup[1] sectionNumber(4) ; -if(sectionNumber == 6 or new() ){ +if (sectionNumber == 6 or new() ) { position sectionPosition; template section_6 "grib2/section.6.def"; } lookup[1] sectionNumber(4) ; -if(sectionNumber == 7 or new() ){ +if (sectionNumber == 7 or new() ) { position sectionPosition; template section_7 "grib2/section.7.def"; } - -#template metas "grib2/meta.def"; +#template metas "grib2/meta.def"; diff --git a/definitions/grib2/template.4.30.def b/definitions/grib2/template.4.30.def index 948437ec9..83bea6ae3 100644 --- a/definitions/grib2/template.4.30.def +++ b/definitions/grib2/template.4.30.def @@ -11,7 +11,8 @@ codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; meta parameterUnits codetable_units(parameterNumber) : dump; meta parameterName codetable_title(parameterNumber) : dump; -codetable[1] typeOfGeneratingProcess 'grib2/tables/[tablesVersion]/4.3.table' : dump; +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + unsigned[1] observationGeneratingProcessIdentifier : dump; unsigned[1] NB : dump; alias numberOfContributingSpectralBands=NB; diff --git a/definitions/grib2/template.4.parameter.def b/definitions/grib2/template.4.parameter.def index b74a8bd45..ed8cdbb50 100644 --- a/definitions/grib2/template.4.parameter.def +++ b/definitions/grib2/template.4.parameter.def @@ -1,38 +1,36 @@ # (C) Copyright 2005- ECMWF. -# Parameter category +# Parameter category codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; meta parameterUnits codetable_units(parameterNumber) : dump; meta parameterName codetable_title(parameterNumber) : dump; -# Type of generating process +# Type of generating process codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; -# Background generating process identifier -# (defined by originating centre) +# Background generating process identifier (defined by originating centre) unsigned[1] backgroundProcess = 255 : edition_specific; alias backgroundGeneratingProcessIdentifier=backgroundProcess; -# Analysis or forecast generating processes identifier -# (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; +# Analysis or forecast generating processes identifier (defined by originating centre) +unsigned[1] generatingProcessIdentifier : dump; -# Hours of observational data cut-off after reference time +# Hours of observational data cut-off after reference time unsigned[2] hoursAfterDataCutoff =missing() : edition_specific,can_be_missing; alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; -# Minutes of observational data cut-off after reference time +# Minutes of observational data cut-off after reference time unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; -# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; +# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) +signed[4] forecastTime : dump; diff --git a/definitions/grib2/template.4.parameter_aerosol_44.def b/definitions/grib2/template.4.parameter_aerosol_44.def index 7218bd19e..5c0a1e5e3 100644 --- a/definitions/grib2/template.4.parameter_aerosol_44.def +++ b/definitions/grib2/template.4.parameter_aerosol_44.def @@ -2,10 +2,8 @@ # GRIB-530: This template is to be used by template.4.44.def ONLY -# Parameter category codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -# Parameter number codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; meta parameterUnits codetable_units(parameterNumber) : dump; meta parameterName codetable_title(parameterNumber) : dump; @@ -21,46 +19,40 @@ signed[4] scaledValueOfFirstSize :dump; signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; -# Type of generating process +# Type of generating process codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; -# Background generating process identifier -# (defined by originating centre) +# Background generating process identifier (defined by originating centre) unsigned[1] backgroundProcess = 255 : edition_specific; alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier -# (defined by originating centre) +# Analysis or forecast generating processes identifier (defined by originating centre) unsigned[1] generatingProcessIdentifier : dump; -# Hours of observational data cut-off after reference time +# Hours of observational data cut-off after reference time unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; -# Minutes of observational data cut-off after reference time +# Minutes of observational data cut-off after reference time unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; -# Indicator of unit of time range +# Indicator of unit of time range codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; -# Forecast time in units defined by octet 18 -# See GRIB-530: We have to make a special case for the error in WMO spec -if ( new() || (section4Length - 4*NV == 45) ) -{ +# Forecast time in units defined by octet 18 +# See GRIB-530: We have to make a special case for the error in WMO spec +if ( new() || (section4Length - 4*NV == 45) ) { # Use the WMO standard 2 octets for the following cases: # Newly created messages - # Existing gribs which have 45 bytes before the pv array + # Existing GRIBs which have 45 bytes before the pv array # The 45 bytes = length of product def template 4.44 unsigned[2] forecastTime : dump; } -else -{ +else { # This is for existing gribs which were written with 4 octets (GRIB-29: supports negative forecast time) signed[4] forecastTime : dump; } - diff --git a/definitions/grib2/template.4.probability.def b/definitions/grib2/template.4.probability.def index deb033b14..55b85f509 100755 --- a/definitions/grib2/template.4.probability.def +++ b/definitions/grib2/template.4.probability.def @@ -1,29 +1,19 @@ # (C) Copyright 2005- ECMWF. -# Forecast probability number -unsigned[1] forecastProbabilityNumber : dump; +unsigned[1] forecastProbabilityNumber : dump; -# Total number of forecast probabilities -unsigned[1] totalNumberOfForecastProbabilities : dump; +unsigned[1] totalNumberOfForecastProbabilities : dump; -# Probability type codetable[1] probabilityType ('4.9.table',masterDir,localDir) : dump; meta probabilityTypeName codetable_title(probabilityType): read_only; -# Scale factor of lower limit signed[1] scaleFactorOfLowerLimit : can_be_missing,dump ; - -# Scaled value of lower limit signed[4] scaledValueOfLowerLimit : can_be_missing,dump ; meta lowerLimit from_scale_factor_scaled_value( scaleFactorOfLowerLimit, scaledValueOfLowerLimit): can_be_missing; - -# Scale factor of upper limit signed[1] scaleFactorOfUpperLimit : can_be_missing,dump; - -# Scaled value of upper limit signed[4] scaledValueOfUpperLimit : can_be_missing,dump; meta upperLimit from_scale_factor_scaled_value( diff --git a/definitions/grib2/template.5.1.def b/definitions/grib2/template.5.1.def index 0db50611f..d41ce6403 100644 --- a/definitions/grib2/template.5.1.def +++ b/definitions/grib2/template.5.1.def @@ -1,61 +1,55 @@ # (C) Copyright 2005- ECMWF. -# TEMPLATE 5.1, Matrix values at grid point -simple packing +# TEMPLATE 5.1, Matrix values at grid point - simple packing +# Preliminary note: +# This template was not validated at the time of publication and should be used with caution include "grib2/template.5.packing.def"; -unsigned[1] matrixBitmapsPresent ; +unsigned[1] matrixBitmapsPresent; # same as in edition 1 alias secondaryBitmapPresent=matrixBitmapsPresent; -# Number of data values encoded in Section 7 -unsigned[4] numberOfCodedValues ; +# Number of data values encoded in Section 7 +unsigned[4] numberOfCodedValues; -# NR - first dimension -# (rows) -unsigned[2] firstDimension ; +# NR - first dimension (rows) +unsigned[2] firstDimension; alias NR = firstDimension; -# NC - second dimension -# (columns) -unsigned[2] secondDimension ; +# NC - second dimension (columns) +unsigned[2] secondDimension; alias NC = secondDimension; -# First dimension coordinate value definition -# (Code Table 5.2) -unsigned[1] firstDimensionCoordinateValueDefinition ; +# First dimension coordinate value definition (Code Table 5.2) +unsigned[1] firstDimensionCoordinateValueDefinition; -# NC1 - number of coefficients or values used to specify first dimension coordinate function +# NC1 - number of coefficients or values used to specify first dimension coordinate function unsigned[1] NC1 : dump ; alias numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction=NC1; -# Second dimension coordinate value definition -# (Code Table 5.2) +# Second dimension coordinate value definition (Code Table 5.2) unsigned[1] secondDimensionCoordinateValueDefinition ; -# NC2 - number of coefficients or values used to specify second dimension coordinate function +# NC2 - number of coefficients or values used to specify second dimension coordinate function unsigned[1] NC2 : dump ; alias numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction = NC2; -# First dimension physical significance -# (Code Table 5.3) +# First dimension physical significance (Code Table 5.3) unsigned[1] firstDimensionPhysicalSignificance ; -# Second dimension physical significance -# (Code Table 5.3) +# Second dimension physical significance (Code Table 5.3) unsigned[1] secondDimensionPhysicalSignificance ; ieeefloat coefsFirst[NC1]; # TODO: find proper names -ieeefloat coefsSecond[NC2];# TODO: find proper names +ieeefloat coefsSecond[NC2]; # TODO: find proper names alias data.coefsFirst = coefsFirst; alias data.coefsSecond=coefsSecond; -if(matrixBitmapsPresent == 1) -{ - +if(matrixBitmapsPresent == 1) { constant datumSize = NC*NR; - constant secondaryBitmapsCount = numberOfValues + 0; # + constant secondaryBitmapsCount = numberOfValues + 0; constant secondaryBitmapsSize = secondaryBitmapsCount/8; transient numberOfDataMatrices = numberOfDataPoints/datumSize; @@ -67,11 +61,9 @@ if(matrixBitmapsPresent == 1) offsetBSection5, section5Length, numberOfCodedValues , - dummy) : read_only - ; + dummy) : read_only; - meta bitmap data_g2secondary_bitmap(primaryBitmap, + meta bitmap data_g2secondary_bitmap(primaryBitmap, secondaryBitmaps, missingValue,datumSize,numberOfDataPoints) : read_only; - } diff --git a/definitions/grib2/template.5.42.def b/definitions/grib2/template.5.42.def index c7128e5d2..2caa260fb 100644 --- a/definitions/grib2/template.5.42.def +++ b/definitions/grib2/template.5.42.def @@ -21,5 +21,5 @@ flagbit AEC_RESTRICTED_OPTION_MASK(ccsdsFlags,4) = 0; flagbit AEC_PAD_RSI_OPTION_MASK(ccsdsFlags,5) = 0; unsigned[1] ccsdsBlockSize = 32 : dump; -unsigned[2] ccsdsRsi = 128 : dump; +unsigned[2] ccsdsRsi = 128 : dump; alias referenceSampleInterval=ccsdsRsi; From 47fe078315016b0c1c31de55759ce337fb48697f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 6 Feb 2021 13:12:28 +0000 Subject: [PATCH 290/683] Compiler warnings --- tests/list_codetable_flagtable_keys.c | 2 +- tools/grib_tools.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/list_codetable_flagtable_keys.c b/tests/list_codetable_flagtable_keys.c index b13c66a1c..3d2d5da71 100644 --- a/tests/list_codetable_flagtable_keys.c +++ b/tests/list_codetable_flagtable_keys.c @@ -37,7 +37,7 @@ typedef struct grib_action_gen grib_arguments* params; } grib_action_gen; -void print_names(grib_action* a) +static void print_names(grib_action* a) { while (a) { if (a->op && !strcmp(a->op, "label")) { diff --git a/tools/grib_tools.c b/tools/grib_tools.c index 190121b5c..9e8bac985 100644 --- a/tools/grib_tools.c +++ b/tools/grib_tools.c @@ -1321,7 +1321,7 @@ void grib_tools_write_message(grib_runtime_options* options, grib_handle* h) err = grib_recompose_name(h, NULL, options->outfile->name, filename, 0); - // Check outfile is not same as infile + /* Check outfile is not same as infile */ if (filenames_equal(options->infile->name, filename)) { grib_context_log(h->context, GRIB_LOG_ERROR, "output file '%s' is the same as input file. Aborting\n", filename); From cbb523ecae690bb3dea658f7718ea169deed4554 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 6 Feb 2021 19:37:12 +0000 Subject: [PATCH 291/683] Testing: test more complex condition --- tests/Makefile.am | 2 ++ tests/grib_data_quality_checks.sh | 44 +++++++++++++++++++++++++------ 2 files changed, 38 insertions(+), 8 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 414e14448..30ac16b0f 100755 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -94,6 +94,7 @@ TESTS = definitions.sh \ bufr_ecc-765.sh \ bufr_ecc-875.sh \ bufr_ecc-887.sh \ + bufr_ecc-1187.sh \ grib_ecc-136.sh \ grib_ecc-967.sh \ grib_ecc-1065.sh \ @@ -110,6 +111,7 @@ TESTS = definitions.sh \ grib_ecc-1030.sh \ grib_lam_gp.sh \ grib_lam_bf.sh \ + filter_substr.sh \ list_codetable_flagtable_keys.sh \ bufr_get_element.sh \ bufr_extract_headers.sh diff --git a/tests/grib_data_quality_checks.sh b/tests/grib_data_quality_checks.sh index 65fad1ede..73fdd3ee1 100755 --- a/tests/grib_data_quality_checks.sh +++ b/tests/grib_data_quality_checks.sh @@ -142,20 +142,19 @@ rm -rf $tempDir mkdir -p $tempDir # Change limits for 2m temperature (grid-point) and Temperature (spectral) cat > $tempDir/param_limits.def < $tempDir/param_limits.def < 4); } + } : double_type, hidden; +EOF +# Step of 12 satisfies the condition: it is even and > 4 +${tools_dir}/grib_set -s paramId=260509,step=12,scaleValuesBy=1000 $sample_g2 $tempGrib2 + +# Step of 0 doesn't satisfy the condition so will use 400 +set +e +${tools_dir}/grib_set -s paramId=260509,scaleValuesBy=1000 $sample_g2 $tempGrib2 +status=$? +set -e +[ $status -ne 0 ] + + + # Clean up rm -rf $tempDir rm -f $tempOut $tempErr $tempGrib1 $tempGrib2 From 2e0987aa6c8dd22bda80c91ceb94f9bfa26d60a5 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 7 Feb 2021 22:06:42 +0000 Subject: [PATCH 292/683] Tools: clang-format --- tools/bufr_compare.c | 2 +- tools/bufr_dump.c | 12 ++++++------ tools/bufr_filter.c | 2 +- tools/bufr_index_build.c | 2 +- tools/bufr_ls.c | 6 +++--- tools/codes_count.c | 2 +- tools/codes_info.c | 2 +- tools/grib_dump.c | 6 +++--- tools/grib_filter.c | 2 +- tools/grib_get.c | 2 +- tools/grib_get_data.c | 32 +++++++++++++++++--------------- tools/grib_histogram.c | 2 +- tools/grib_index_build.c | 2 +- tools/grib_ls.c | 16 ++++++++-------- tools/grib_options.c | 8 +++++--- tools/grib_to_netcdf.c | 14 +++++++------- tools/metar_compare.c | 8 ++++---- 17 files changed, 62 insertions(+), 58 deletions(-) diff --git a/tools/bufr_compare.c b/tools/bufr_compare.c index 193289793..947f2ae28 100644 --- a/tools/bufr_compare.c +++ b/tools/bufr_compare.c @@ -104,7 +104,7 @@ static int listFromCommandLine; static int verbose = 0; static int tolerance_factor = 1; static int write_error = 0; -static int write_count = 0; +static int write_count = 0; static grib_handle* global_handle = NULL; static int counter = 0; diff --git a/tools/bufr_dump.c b/tools/bufr_dump.c index b438b6b52..53b5d4800 100644 --- a/tools/bufr_dump.c +++ b/tools/bufr_dump.c @@ -65,11 +65,11 @@ grib_option grib_options[] = { const char* tool_description = "Dump the content of a BUFR file in different formats."; const char* tool_name = "bufr_dump"; const char* tool_usage = "[options] bufr_file bufr_file ..."; -static int json = 0; -static int dump_descriptors = 0; -static char* json_option = 0; -static int first_handle = 1; -static grib_dumper* dumper = 0; +static int json = 0; +static int dump_descriptors = 0; +static char* json_option = 0; +static int first_handle = 1; +static grib_dumper* dumper = 0; int grib_options_count = sizeof(grib_options) / sizeof(grib_option); @@ -449,7 +449,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) new_handle = grib_handle_new_from_message(0, buffer, size); Assert(new_handle); /* Replace handle with the new one which has only one subset */ - h = new_handle; + h = new_handle; hclone = h2; /* to be deleted later */ } } diff --git a/tools/bufr_filter.c b/tools/bufr_filter.c index 7d63a4e2f..cd0f9b428 100644 --- a/tools/bufr_filter.c +++ b/tools/bufr_filter.c @@ -56,7 +56,7 @@ int grib_tool_init(grib_runtime_options* options) options->action = grib_action_from_filter(options->infile_extra->name); if (!options->action) { const char* filt = options->infile_extra->name; - if (strcmp(filt, "-")==0) filt = "stdin"; + if (strcmp(filt, "-") == 0) filt = "stdin"; fprintf(stderr, "Error: %s: unable to create action\n", filt); exit(1); } diff --git a/tools/bufr_index_build.c b/tools/bufr_index_build.c index 59d075568..1ae37d056 100644 --- a/tools/bufr_index_build.c +++ b/tools/bufr_index_build.c @@ -20,7 +20,7 @@ const char* tool_description = "\tWarning: THIS TOOL IS NOT YET IMPLEMENTED"; const char* tool_name = "bufr_index_build"; const char* tool_usage = "[options] file file ... "; -grib_index* idx = NULL; +grib_index* idx = NULL; char* keys; char* default_keys = "mars"; diff --git a/tools/bufr_ls.c b/tools/bufr_ls.c index 52b98e3ec..461f69f25 100644 --- a/tools/bufr_ls.c +++ b/tools/bufr_ls.c @@ -41,9 +41,9 @@ const char* tool_description = "List content of BUFR files printing values of " "some header keys.\n\tOnly scalar keys can be printed." "\n\tIt does not fail when a key is not found."; -const char* tool_name = "bufr_ls"; -const char* tool_usage = "[options] bufr_file bufr_file ..."; -static int first_handle = 1; +const char* tool_name = "bufr_ls"; +const char* tool_usage = "[options] bufr_file bufr_file ..."; +static int first_handle = 1; int grib_options_count = sizeof(grib_options) / sizeof(grib_option); diff --git a/tools/codes_count.c b/tools/codes_count.c index ff92c59f4..bb2926b9a 100644 --- a/tools/codes_count.c +++ b/tools/codes_count.c @@ -10,7 +10,7 @@ #include "grib_api_internal.h" -static int fail_on_error = 1; +static int fail_on_error = 1; static const char* toolname = NULL; static void usage(const char* prog) diff --git a/tools/codes_info.c b/tools/codes_info.c index ee12bbe69..675ede538 100644 --- a/tools/codes_info.c +++ b/tools/codes_info.c @@ -113,7 +113,7 @@ int main(int argc, char* argv[]) printf("Definition files path can be changed by setting the ECCODES_DEFINITION_PATH environment variable.\n"); } - if((path = getenv("ECCODES_EXTRA_DEFINITION_PATH")) != NULL) { + if ((path = getenv("ECCODES_EXTRA_DEFINITION_PATH")) != NULL) { printf("Environment variable ECCODES_EXTRA_DEFINITION_PATH=%s\n", path); } printf("\n"); diff --git a/tools/grib_dump.c b/tools/grib_dump.c index dce8fba64..2a53ef351 100644 --- a/tools/grib_dump.c +++ b/tools/grib_dump.c @@ -42,9 +42,9 @@ grib_option grib_options[] = { const char* tool_description = "Dump the content of a GRIB file in different formats."; const char* tool_name = "grib_dump"; const char* tool_usage = "[options] grib_file grib_file ..."; -static int json = 0; -static int first_handle = 1; -static int dump_keys = 0; +static int json = 0; +static int first_handle = 1; +static int dump_keys = 0; int grib_options_count = sizeof(grib_options) / sizeof(grib_option); diff --git a/tools/grib_filter.c b/tools/grib_filter.c index 6fd0d6233..a8683702e 100644 --- a/tools/grib_filter.c +++ b/tools/grib_filter.c @@ -52,7 +52,7 @@ int grib_tool_init(grib_runtime_options* options) options->action = grib_action_from_filter(options->infile_extra->name); if (!options->action) { const char* filt = options->infile_extra->name; - if (strcmp(filt, "-")==0) filt = "stdin"; + if (strcmp(filt, "-") == 0) filt = "stdin"; fprintf(stderr, "Error: %s: unable to create action\n", filt); exit(1); } diff --git a/tools/grib_get.c b/tools/grib_get.c index 5c9340a6b..52c38b05d 100644 --- a/tools/grib_get.c +++ b/tools/grib_get.c @@ -75,7 +75,7 @@ int grib_tool_init(grib_runtime_options* options) if (options->latlon) { lat = strtod(options->latlon, &theEnd); if (*theEnd != ',') { - fprintf(stderr, "Error %s: wrong latitude value. Please use 'latitude,longitude'\n",tool_name); + fprintf(stderr, "Error %s: wrong latitude value. Please use 'latitude,longitude'\n", tool_name); exit(1); } lon = strtod(++theEnd, &end1); diff --git a/tools/grib_get_data.c b/tools/grib_get_data.c index f39e3dabe..1317a4d46 100644 --- a/tools/grib_get_data.c +++ b/tools/grib_get_data.c @@ -75,21 +75,21 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) { int err = 0; - double missingValue = 9999; - int skip_missing = 1; - char* missing_string = NULL; - int i = 0; - grib_values* values = NULL; - grib_iterator* iter = NULL; - char* format_values = NULL; + double missingValue = 9999; + int skip_missing = 1; + char* missing_string = NULL; + int i = 0; + grib_values* values = NULL; + grib_iterator* iter = NULL; + char* format_values = NULL; char format_latlons[32] = {0,}; char* default_format_values = "%.10e"; char* default_format_latlons = "%9.3f%9.3f"; - int print_keys = grib_options_on("p:"); - long numberOfPoints = 0; - long bitmapPresent = 0; - long* bitmap = NULL; /* bitmap array */ - size_t bmp_len = 0; + int print_keys = grib_options_on("p:"); + long numberOfPoints = 0; + long bitmapPresent = 0; + long* bitmap = NULL; /* bitmap array */ + size_t bmp_len = 0; double *data_values = 0, *lats = 0, *lons = 0; int n = 0; size_t size = 0, num_bytes = 0; @@ -127,7 +127,8 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) if (grib_options_on("F:")) { format_values = grib_options_get_option("F:"); - } else { + } + else { format_values = default_format_values; } @@ -139,8 +140,9 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) str, default_format_latlons); exit(1); } - sprintf(format_latlons, "%s ", str);/* Add a final space to separate from data values */ - } else { + sprintf(format_latlons, "%s ", str); /* Add a final space to separate from data values */ + } + else { sprintf(format_latlons, "%s ", default_format_latlons); } diff --git a/tools/grib_histogram.c b/tools/grib_histogram.c index a3bd610d1..a88d5738a 100644 --- a/tools/grib_histogram.c +++ b/tools/grib_histogram.c @@ -88,7 +88,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) if (size > last_size) { if (values) free(values); - values = (double*)malloc(size * sizeof(double)); + values = (double*)malloc(size * sizeof(double)); /*last_size = size;*/ if (!values) { fprintf(stderr, "Failed to allocate memory for values (%lu bytes)\n", size * sizeof(double)); diff --git a/tools/grib_index_build.c b/tools/grib_index_build.c index 37df60244..0655905ca 100644 --- a/tools/grib_index_build.c +++ b/tools/grib_index_build.c @@ -18,7 +18,7 @@ const char* tool_description = "Build an index file for a set of input GRIB files."; const char* tool_name = "grib_index_build"; const char* tool_usage = "[options] grib_file grib_file ... "; -static grib_index* idx = NULL; +static grib_index* idx = NULL; static char* keys; static char* default_keys = "mars"; diff --git a/tools/grib_ls.c b/tools/grib_ls.c index a78ef103e..ed12a816f 100644 --- a/tools/grib_ls.c +++ b/tools/grib_ls.c @@ -45,9 +45,9 @@ grib_option grib_options[] = { const char* tool_description = "List content of GRIB files printing values of " "some keys.\n\tIt does not fail when a key is not found."; -const char* tool_name = "grib_ls"; -const char* tool_usage = "[options] grib_file grib_file ..."; -static char* new_handle = ""; +const char* tool_name = "grib_ls"; +const char* tool_usage = "[options] grib_file grib_file ..."; +static char* new_handle = ""; int grib_options_count = sizeof(grib_options) / sizeof(grib_option); static double lat = 0; @@ -100,7 +100,7 @@ int grib_tool_init(grib_runtime_options* options) if (options->latlon) { lat = strtod(options->latlon, &theEnd); if (*theEnd != ',') { - fprintf(stderr, "Error %s: wrong latitude value. Please use 'latitude,longitude'\n",tool_name); + fprintf(stderr, "Error %s: wrong latitude value. Please use 'latitude,longitude'\n", tool_name); exit(1); } lon = strtod(++theEnd, &end1); @@ -400,10 +400,10 @@ int grib_tool_finalise_action(grib_runtime_options* options) printf("Input Point: latitude=%.2f longitude=%.2f\n", lat, lon); if (options->latlon_idx >= 0 && options->latlon_idx < LATLON_SIZE) { printf("Grid Point chosen #%d index=%d latitude=%.2f longitude=%.2f distance=%.2f (Km)\n", - options->latlon_idx + 1, (int)options->indexes[options->latlon_idx], - options->lats[options->latlon_idx], - options->lons[options->latlon_idx], - options->distances[options->latlon_idx]); + options->latlon_idx + 1, (int)options->indexes[options->latlon_idx], + options->lats[options->latlon_idx], + options->lons[options->latlon_idx], + options->distances[options->latlon_idx]); } if (options->latlon_mask) { printf("Mask values:\n"); diff --git a/tools/grib_options.c b/tools/grib_options.c index b47503175..61a8c3643 100644 --- a/tools/grib_options.c +++ b/tools/grib_options.c @@ -333,7 +333,7 @@ int grib_process_runtime_options(grib_context* context, int argc, char** argv, g } options->requested_print_keys_count = MAX_KEYS; - ret = parse_keyval_string(tool_name, karg, 0, GRIB_TYPE_UNDEFINED, + ret = parse_keyval_string(tool_name, karg, 0, GRIB_TYPE_UNDEFINED, options->requested_print_keys, &(options->requested_print_keys_count)); if (ret == GRIB_INVALID_ARGUMENT) usage(); @@ -437,7 +437,8 @@ char* grib_options_get_args(char* id) if (grib_options[i].args != NULL) { free(err); return grib_options[i].args; - } else { + } + else { break; } } @@ -447,7 +448,8 @@ char* grib_options_get_args(char* id) if (grib_options_help_list[i].args != NULL) { free(err); return (char*)grib_options_help_list[i].args; - } else { + } + else { return err; } } diff --git a/tools/grib_to_netcdf.c b/tools/grib_to_netcdf.c index 6585fbd3d..64946d1bf 100644 --- a/tools/grib_to_netcdf.c +++ b/tools/grib_to_netcdf.c @@ -32,8 +32,8 @@ const char* tool_description = "Convert a GRIB file to netCDF format." "\n\tNote: The GRIB geometry should be a regular lat/lon grid or a regular Gaussian grid" "\n\t(the key \"typeOfGrid\" should be \"regular_ll\" or \"regular_gg\")"; -const char* tool_name = "grib_to_netcdf"; -const char* tool_usage = "[options] grib_file grib_file ... "; +const char* tool_name = "grib_to_netcdf"; +const char* tool_usage = "[options] grib_file grib_file ... "; static char argvString[2048] = {0,}; /*=====================================================================*/ @@ -2245,7 +2245,7 @@ static int def_latlon(int ncid, fieldset* fs) { int n = 0; size_t nlats = 0, nlons = 0; - err e = 0; + err e = 0; field* g = get_field(fs, 0, expand_mem); @@ -2257,11 +2257,11 @@ static int def_latlon(int ncid, fieldset* fs) } /* Define longitude */ - n = (int)nlons; + n = (int)nlons; set_dimension(ncid, "longitude", n, NC_FLOAT, "degrees_east", "longitude"); /* Define latitude */ - n = nlats; + n = nlats; set_dimension(ncid, "latitude", n, NC_FLOAT, "degrees_north", "latitude"); /* g->purge_header = TRUE; */ @@ -2634,8 +2634,8 @@ static void scale(double* vals, long n, void* data, dataset_t* g) } */ DebugAssert(vals); - DebugAssert(n>0); - if(!vals) return; + DebugAssert(n > 0); + if (!vals) return; switch (nctype) { case NC_BYTE: { diff --git a/tools/metar_compare.c b/tools/metar_compare.c index 29fbf8c88..aac50cb4e 100644 --- a/tools/metar_compare.c +++ b/tools/metar_compare.c @@ -88,14 +88,14 @@ static int headerMode = 0; static int morein1 = 0; static int morein2 = 0; static int listFromCommandLine; -static int verbose = 0; -static int tolerance_factor = 1; -static int write_error = 0; +static int verbose = 0; +static int tolerance_factor = 1; +static int write_error = 0; static grib_handle* global_handle = NULL; static int global_counter = 0; static int start = -1; static int end = -1; -static int write_count = 0; +static int write_count = 0; GRIB_INLINE static double compare_double_absolute(double* a, double* b, double* err) { From 51f618eb3a7099653b4eef76f1173af47ae26072 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 8 Feb 2021 09:45:04 +0000 Subject: [PATCH 293/683] adding o2d/o3d to more type of level in tables 27 --- definitions/grib2/tables/27/4.5.table | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/definitions/grib2/tables/27/4.5.table b/definitions/grib2/tables/27/4.5.table index 3a9861bcb..c06624bff 100644 --- a/definitions/grib2/tables/27/4.5.table +++ b/definitions/grib2/tables/27/4.5.table @@ -19,7 +19,7 @@ 17 sfc Departure level of the most unstable parcel of air (MUDL) 18 sfc Departure level of a mixed layer parcel of air with specified layer depth (Pa) # 19 Reserved -20 20 Isothermal level (K) +20 o2d Isothermal level (K) 21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) 22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) 23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) @@ -58,7 +58,7 @@ 151 sol Soil level (Numeric) 152 sol Sea ice level (Numeric) # 153-159 Reserved -160 160 Depth below sea level (m) +160 o2d Depth below sea level (m) 161 161 Depth below water surface (m) 162 162 Lake or river bottom (-) 163 163 Bottom of sediment layer (-) @@ -66,12 +66,12 @@ 165 165 Bottom of sediment layer penetrated by thermal wave (-) 166 166 Mixing layer (-) 167 167 Bottom of root zone (-) -168 168 Ocean model level (Numeric) -169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) -170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) +168 o3d Ocean model level (Numeric) +169 o2d Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) +170 o2d Ocean level defined by water potential temperature difference from near-surface to level (K) # 171-173 Reserved -174 174 Top surface of ice on sea, lake or river -175 175 Top surface of ice, under snow cover, on sea, lake or river +174 o2d Top surface of ice on sea, lake or river +175 o2d Top surface of ice, under snow cover, on sea, lake or river 176 176 Bottom surface (underside) ice on sea, lake or river 177 sfc Deep soil (of indefinite depth) # 178 Reserved From f7e05f7fd3fa0fe3b7af2c9dd7448da3ee32a9ab Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 8 Feb 2021 13:50:23 +0000 Subject: [PATCH 294/683] Scripts: Check column names. Add cfVarName.def file. Fix empty units --- definitions/add_params_from_tsv.pl | 34 +++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index 3e4408604..6a4608f7a 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -29,7 +29,8 @@ # scaleFactorOfSecondFixedSurface # typeOfStatisticalProcessing # -# It outputs the def files: name.def paramId.def shortName.def units.def +# It outputs the def files: +# name.def paramId.def shortName.def units.def cfVarName.def # ####################################################################### $|=1; @@ -44,17 +45,39 @@ my $PARAMID_FILENAME = "paramId.def"; my $SHORTNAME_FILENAME = "shortName.def"; my $NAME_FILENAME = "name.def"; my $UNITS_FILENAME = "units.def"; +my $CFVARNAME_FILENAME = "cfVarName.def"; open(OUT_PARAMID, ">$PARAMID_FILENAME") or die "$PARAMID_FILENAME: $!"; open(OUT_SHORTNAME,">$SHORTNAME_FILENAME") or die "$SHORTNAME_FILENAME: $!"; open(OUT_NAME, ">$NAME_FILENAME") or die "$NAME_FILENAME: $!"; open(OUT_UNITS, ">$UNITS_FILENAME") or die "$UNITS_FILENAME: $!"; +open(OUT_CFVARNAME,">$CFVARNAME_FILENAME") or die "$CFVARNAME_FILENAME: $!"; my $first = 1; while (<>) { chomp; if ($first == 1) { - die "Error: first line of input must contain the key names" if ( $_ !~ /^paramId/ ); + #die "Error: first line of input must contain the correct key names" if ( $_ !~ /^paramId/ ); + my @keys = split(/\t/); + die "Error: column titles wrong: Column 1 should be paramId" if ($keys[0] ne "paramId"); + die "Error: column titles wrong: Column 2 should be shortName" if ($keys[1] ne "shortName"); + die "Error: column titles wrong: Column 3 should be name" if ($keys[2] ne "name"); + die "Error: column titles wrong: Column 4 should be units" if ($keys[3] ne "units"); + + die "Error: column titles wrong: Column 5 should be discipline" if ($keys[4] ne "discipline"); + die "Error: column titles wrong: Column 6 should be parameterCategory" if ($keys[5] ne "parameterCategory"); + die "Error: column titles wrong: Column 7 should be parameterNumber" if ($keys[6] ne "parameterNumber"); + + die "Error: column titles wrong: Column 8 should be #typeOfFirstFixedSurface" if ($keys[7] ne "typeOfFirstFixedSurface"); + die "Error: column titles wrong: Column 9 should be typeOfSecondFixedSurface" if ($keys[8] ne "typeOfSecondFixedSurface"); + + die "Error: column titles wrong: Column 10 should be scaledValueOfFirstFixedSurface" if ($keys[9] ne "scaledValueOfFirstFixedSurface"); + die "Error: column titles wrong: Column 11 should be scaleFactorOfFirstFixedSurface" if ($keys[10] ne "scaleFactorOfFirstFixedSurface"); + + die "Error: column titles wrong: Column 12 should be scaledValueOfSecondFixedSurface" if ($keys[11] ne "scaledValueOfSecondFixedSurface"); + die "Error: column titles wrong: Column 13 should be scaleFactorOfSecondFixedSurface" if ($keys[12] ne "scaleFactorOfSecondFixedSurface"); + die "Error: column titles wrong: Column 14 should be typeOfStatisticalProcessing" if ($keys[13] ne "typeOfStatisticalProcessing"); + $first = 0; next; } @@ -65,17 +88,22 @@ while (<>) { die "Error: paramID \"$paramId\" is not an integer!" if (!is_integer($paramId)); + $units = "~" if ($units eq ""); + write_out_file(\*OUT_PARAMID, $name, $paramId); write_out_file(\*OUT_SHORTNAME, $name, $shortName); write_out_file(\*OUT_NAME, $name, $name); write_out_file(\*OUT_UNITS, $name, $units); + write_out_file(\*OUT_CFVARNAME, $name, $shortName); } -print "Wrote output files: $PARAMID_FILENAME, $SHORTNAME_FILENAME, $NAME_FILENAME, $UNITS_FILENAME\n"; +print "Wrote output files: $PARAMID_FILENAME, $SHORTNAME_FILENAME, $NAME_FILENAME, $UNITS_FILENAME, $CFVARNAME_FILENAME\n"; close(OUT_PARAMID) or die "$PARAMID_FILENAME: $!"; close(OUT_SHORTNAME) or die "$SHORTNAME_FILENAME: $!"; close(OUT_NAME) or die "$NAME_FILENAME: $!"; close(OUT_UNITS) or die "$UNITS_FILENAME: $!"; +close(OUT_CFVARNAME) or die "$CFVARNAME_FILENAME: $!"; + sub write_out_file { my $outfile = $_[0]; From aa687537a6a094cb0fe754d7e39b36a1c5cb637b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 8 Feb 2021 15:06:30 +0000 Subject: [PATCH 295/683] Debugging: cosmetics --- src/grib_dependency.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/grib_dependency.c b/src/grib_dependency.c index 08647b3ad..932c65055 100644 --- a/src/grib_dependency.c +++ b/src/grib_dependency.c @@ -48,8 +48,10 @@ void grib_dependency_add(grib_accessor* observer, grib_accessor* observed) grib_dependency* d = h->dependencies; grib_dependency* last = 0; - /*printf("observe %p %p %s %s\n",(void*)observed,(void*)observer, observed?observed->name:"NULL", - observer?observer->name:"NULL");*/ + /*printf("grib_dependency_add: observe %p %p observed=%s observer=%s\n", + (void*)observed, (void*)observer, + observed ? observed->name : "NULL", + observer ? observer->name : "NULL");*/ if (!observer || !observed) { return; @@ -126,7 +128,7 @@ int grib_dependency_notify_change(grib_accessor* observed) d = h->dependencies; while (d) { if (d->run) { - /*printf("grib_dependency_notify_change %s %s %p\n",observed->name,d->observer ? d->observer->name : "?", (void*)d->observer);*/ + /*printf("grib_dependency_notify_change %s %s %p\n", observed->name, d->observer ? d->observer->name : "?", (void*)d->observer);*/ if (d->observer && (ret = grib_accessor_notify_change(d->observer, observed)) != GRIB_SUCCESS) return ret; } From 13127f1739afd396316245e7f0d01a03d3dde059 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 8 Feb 2021 16:03:53 +0000 Subject: [PATCH 296/683] Scripts: Append if def files exist. Better error messages --- definitions/add_params_from_tsv.pl | 77 ++++++++++++++++++------------ 1 file changed, 47 insertions(+), 30 deletions(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index 6a4608f7a..90302d85f 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -38,7 +38,7 @@ use strict; use warnings; $ARGV[0] or die "USAGE: $0 input.tsv\n"; -my ($paramId, $shortName, $name, $units); +my ($paramId, $shortName, $name, $units, $cfVarName); my ($discipline, $pcategory, $pnumber, $type1, $type2, $scaledValue1, $scaleFactor1, $scaledValue2, $scaleFactor2, $stat); my $PARAMID_FILENAME = "paramId.def"; @@ -47,37 +47,18 @@ my $NAME_FILENAME = "name.def"; my $UNITS_FILENAME = "units.def"; my $CFVARNAME_FILENAME = "cfVarName.def"; -open(OUT_PARAMID, ">$PARAMID_FILENAME") or die "$PARAMID_FILENAME: $!"; -open(OUT_SHORTNAME,">$SHORTNAME_FILENAME") or die "$SHORTNAME_FILENAME: $!"; -open(OUT_NAME, ">$NAME_FILENAME") or die "$NAME_FILENAME: $!"; -open(OUT_UNITS, ">$UNITS_FILENAME") or die "$UNITS_FILENAME: $!"; -open(OUT_CFVARNAME,">$CFVARNAME_FILENAME") or die "$CFVARNAME_FILENAME: $!"; +write_or_append(\*OUT_PARAMID, "$PARAMID_FILENAME"); +write_or_append(\*OUT_SHORTNAME, "$SHORTNAME_FILENAME"); +write_or_append(\*OUT_NAME, "$NAME_FILENAME"); +write_or_append(\*OUT_UNITS, "$UNITS_FILENAME"); +write_or_append(\*OUT_CFVARNAME, "$CFVARNAME_FILENAME"); + my $first = 1; while (<>) { chomp; if ($first == 1) { - #die "Error: first line of input must contain the correct key names" if ( $_ !~ /^paramId/ ); - my @keys = split(/\t/); - die "Error: column titles wrong: Column 1 should be paramId" if ($keys[0] ne "paramId"); - die "Error: column titles wrong: Column 2 should be shortName" if ($keys[1] ne "shortName"); - die "Error: column titles wrong: Column 3 should be name" if ($keys[2] ne "name"); - die "Error: column titles wrong: Column 4 should be units" if ($keys[3] ne "units"); - - die "Error: column titles wrong: Column 5 should be discipline" if ($keys[4] ne "discipline"); - die "Error: column titles wrong: Column 6 should be parameterCategory" if ($keys[5] ne "parameterCategory"); - die "Error: column titles wrong: Column 7 should be parameterNumber" if ($keys[6] ne "parameterNumber"); - - die "Error: column titles wrong: Column 8 should be #typeOfFirstFixedSurface" if ($keys[7] ne "typeOfFirstFixedSurface"); - die "Error: column titles wrong: Column 9 should be typeOfSecondFixedSurface" if ($keys[8] ne "typeOfSecondFixedSurface"); - - die "Error: column titles wrong: Column 10 should be scaledValueOfFirstFixedSurface" if ($keys[9] ne "scaledValueOfFirstFixedSurface"); - die "Error: column titles wrong: Column 11 should be scaleFactorOfFirstFixedSurface" if ($keys[10] ne "scaleFactorOfFirstFixedSurface"); - - die "Error: column titles wrong: Column 12 should be scaledValueOfSecondFixedSurface" if ($keys[11] ne "scaledValueOfSecondFixedSurface"); - die "Error: column titles wrong: Column 13 should be scaleFactorOfSecondFixedSurface" if ($keys[12] ne "scaleFactorOfSecondFixedSurface"); - die "Error: column titles wrong: Column 14 should be typeOfStatisticalProcessing" if ($keys[13] ne "typeOfStatisticalProcessing"); - + check_first_row_column_names($_); $first = 0; next; } @@ -87,17 +68,19 @@ while (<>) { $scaledValue1, $scaleFactor1, $scaledValue2, $scaleFactor2, $stat) = split(/\t/); die "Error: paramID \"$paramId\" is not an integer!" if (!is_integer($paramId)); - + $units = "~" if ($units eq ""); + $cfVarName = $shortName; + $cfVarName = '\\'.$shortName if ($shortName =~ /^[0-9]/); write_out_file(\*OUT_PARAMID, $name, $paramId); write_out_file(\*OUT_SHORTNAME, $name, $shortName); write_out_file(\*OUT_NAME, $name, $name); write_out_file(\*OUT_UNITS, $name, $units); - write_out_file(\*OUT_CFVARNAME, $name, $shortName); + write_out_file(\*OUT_CFVARNAME, $name, $cfVarName); } -print "Wrote output files: $PARAMID_FILENAME, $SHORTNAME_FILENAME, $NAME_FILENAME, $UNITS_FILENAME, $CFVARNAME_FILENAME\n"; +print "Wrote output files: $PARAMID_FILENAME $SHORTNAME_FILENAME $NAME_FILENAME $UNITS_FILENAME $CFVARNAME_FILENAME\n"; close(OUT_PARAMID) or die "$PARAMID_FILENAME: $!"; close(OUT_SHORTNAME) or die "$SHORTNAME_FILENAME: $!"; close(OUT_NAME) or die "$NAME_FILENAME: $!"; @@ -128,6 +111,40 @@ sub write_out_file { print $outfile "}\n"; } +sub check_first_row_column_names { + my $line = shift; # This is the first row + my @keys = split(/\t/, $line); + die "Error: 1st row column titles wrong: Column 1 should be 'paramId'\n" if ($keys[0] ne "paramId"); + die "Error: 1st row column titles wrong: Column 2 should be 'shortName'\n" if ($keys[1] ne "shortName"); + die "Error: 1st row column titles wrong: Column 3 should be 'name'\n" if ($keys[2] ne "name"); + die "Error: 1st row column titles wrong: Column 4 should be 'units'\n" if ($keys[3] ne "units"); + + die "Error: 1st row column titles wrong: Column 5 should be 'discipline'\n" if ($keys[4] ne "discipline"); + die "Error: 1st row column titles wrong: Column 6 should be 'parameterCategory'\n" if ($keys[5] ne "parameterCategory"); + die "Error: 1st row column titles wrong: Column 7 should be 'parameterNumber'\n" if ($keys[6] ne "parameterNumber"); + + die "Error: 1st row column titles wrong: Column 8 should be 'typeOfFirstFixedSurface'\n" if ($keys[7] ne "typeOfFirstFixedSurface"); + die "Error: 1st row column titles wrong: Column 9 should be 'typeOfSecondFixedSurface'\n" if ($keys[8] ne "typeOfSecondFixedSurface"); + + die "Error: 1st row column titles wrong: Column 10 should be 'scaledValueOfFirstFixedSurface'\n" if ($keys[9] ne "scaledValueOfFirstFixedSurface"); + die "Error: 1st row column titles wrong: Column 11 should be 'scaleFactorOfFirstFixedSurface'\n" if ($keys[10] ne "scaleFactorOfFirstFixedSurface"); + + die "Error: 1st row column titles wrong: Column 12 should be 'scaledValueOfSecondFixedSurface'\n" if ($keys[11] ne "scaledValueOfSecondFixedSurface"); + die "Error: 1st row column titles wrong: Column 13 should be 'scaleFactorOfSecondFixedSurface'\n" if ($keys[12] ne "scaleFactorOfSecondFixedSurface"); + die "Error: 1st row column titles wrong: Column 14 should be 'typeOfStatisticalProcessing'\n" if ($keys[13] ne "typeOfStatisticalProcessing"); +} + +sub write_or_append { + my $outfile = $_[0]; + my $fname = $_[1]; + + if (-f "$fname") { + open($outfile, ">>$fname") or die "$fname: $!"; + } else { + open($outfile, ">$fname") or die "$fname: $!"; + } +} + sub is_integer { my $val = shift; return ($val =~ /^\d+$/); From a14dad0046657547370ca358d8eab7bfbb2d90ef Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 8 Feb 2021 20:34:00 +0000 Subject: [PATCH 297/683] Scripts: Remove DOS carriage returns --- definitions/add_params_from_tsv.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index 90302d85f..2e4b8efdf 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -57,6 +57,7 @@ write_or_append(\*OUT_CFVARNAME, "$CFVARNAME_FILENAME"); my $first = 1; while (<>) { chomp; + s/\r//g; # Remove DOS carriage returns if ($first == 1) { check_first_row_column_names($_); $first = 0; From 3629ef819d843a4b10c7194cb615a7a1e97f330f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 9 Feb 2021 19:07:13 +0000 Subject: [PATCH 298/683] Scripts: Change order of columns --- definitions/add_params_from_tsv.pl | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index 2e4b8efdf..ba40c3661 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -22,11 +22,11 @@ # parameterNumber # # The following are optional keys # typeOfFirstFixedSurface -# typeOfSecondFixedSurface -# scaledValueOfFirstFixedSurface # scaleFactorOfFirstFixedSurface -# scaledValueOfSecondFixedSurface +# scaledValueOfFirstFixedSurface +# typeOfSecondFixedSurface # scaleFactorOfSecondFixedSurface +# scaledValueOfSecondFixedSurface # typeOfStatisticalProcessing # # It outputs the def files: @@ -125,13 +125,12 @@ sub check_first_row_column_names { die "Error: 1st row column titles wrong: Column 7 should be 'parameterNumber'\n" if ($keys[6] ne "parameterNumber"); die "Error: 1st row column titles wrong: Column 8 should be 'typeOfFirstFixedSurface'\n" if ($keys[7] ne "typeOfFirstFixedSurface"); - die "Error: 1st row column titles wrong: Column 9 should be 'typeOfSecondFixedSurface'\n" if ($keys[8] ne "typeOfSecondFixedSurface"); - + die "Error: 1st row column titles wrong: Column 9 should be 'scaleFactorOfFirstFixedSurface'\n" if ($keys[8] ne "scaleFactorOfFirstFixedSurface"); die "Error: 1st row column titles wrong: Column 10 should be 'scaledValueOfFirstFixedSurface'\n" if ($keys[9] ne "scaledValueOfFirstFixedSurface"); - die "Error: 1st row column titles wrong: Column 11 should be 'scaleFactorOfFirstFixedSurface'\n" if ($keys[10] ne "scaleFactorOfFirstFixedSurface"); - - die "Error: 1st row column titles wrong: Column 12 should be 'scaledValueOfSecondFixedSurface'\n" if ($keys[11] ne "scaledValueOfSecondFixedSurface"); - die "Error: 1st row column titles wrong: Column 13 should be 'scaleFactorOfSecondFixedSurface'\n" if ($keys[12] ne "scaleFactorOfSecondFixedSurface"); + + die "Error: 1st row column titles wrong: Column 11 should be 'typeOfSecondFixedSurface'\n" if ($keys[10] ne "typeOfSecondFixedSurface"); + die "Error: 1st row column titles wrong: Column 12 should be 'scaleFactorOfSecondFixedSurface'\n" if ($keys[11] ne "scaleFactorOfSecondFixedSurface"); + die "Error: 1st row column titles wrong: Column 13 should be 'scaledValueOfSecondFixedSurface'\n" if ($keys[12] ne "scaledValueOfSecondFixedSurface"); die "Error: 1st row column titles wrong: Column 14 should be 'typeOfStatisticalProcessing'\n" if ($keys[13] ne "typeOfStatisticalProcessing"); } From 598f552ef1f133a516b9a707bdc92b36457d88e6 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 10 Feb 2021 16:03:11 +0000 Subject: [PATCH 299/683] Testing: check grib2 parameter concepts (scale factor/scaled value pair) --- tests/CMakeLists.txt | 1 + tests/grib_check_param_concepts.c | 90 ++++++++++++++++++++++++++++++ tests/grib_check_param_concepts.sh | 17 ++++-- 3 files changed, 104 insertions(+), 4 deletions(-) create mode 100644 tests/grib_check_param_concepts.c diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 3281011f5..9d7bfc8f5 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -23,6 +23,7 @@ list(APPEND test_bins gauss_sub grib_nearest_test grib_util_set_spec + grib_check_param_concepts grib_local_MeteoFrance grib_2nd_order_numValues grib_optimize_scaling diff --git a/tests/grib_check_param_concepts.c b/tests/grib_check_param_concepts.c new file mode 100644 index 000000000..75c8d81ee --- /dev/null +++ b/tests/grib_check_param_concepts.c @@ -0,0 +1,90 @@ +/* + * (C) Copyright 2005- ECMWF. + * + * This software is licensed under the terms of the Apache Licence Version 2.0 + * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. + * + * In applying this licence, ECMWF does not waive the privileges and immunities granted to it by + * virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. + */ + +#include +#include "grib_api_internal.h" + +typedef struct grib_expression_long +{ + grib_expression base; + /* Members defined in long */ + long value; +} grib_expression_long; + +typedef struct grib_expression_functor +{ + grib_expression base; + /* Members defined in functor */ + char* name; + grib_arguments* args; +} grib_expression_functor; + +static int grib_check_param_concepts(const char* key, const char* filename) +{ + grib_concept_value* concept_value = grib_parse_concept_file(NULL, filename); + while (concept_value) { + grib_concept_condition* concept_condition = concept_value->conditions; + int scaleFactor1Missing = 0, scaleFactor2Missing = 0; + int scaledValue1Missing = 0, scaledValue2Missing = 0; + int err = 0; + /* printf("\nconcept_value->name=%s\n", concept_value->name); // A given paramId e.g. 151163 */ + while (concept_condition) { + char condition_value[512] = {0,}; + grib_expression* expression = concept_condition->expression; + const char* condition_name = concept_condition->name; + /* printf(" condition_name->name=%s", condition_name); // e.g. discipline, parameterCategory */ + if(strcmp(expression->cclass->name,"long")==0) { + grib_expression_long* e = (grib_expression_long*)expression; + sprintf(condition_value, "%ld", e->value); + } else if(strcmp(expression->cclass->name,"functor")==0) { + grib_expression_functor* e = (grib_expression_functor*)expression; + sprintf(condition_value, "%s", e->name); + } else { + Assert(0); + } + if (strcmp(condition_name, "scaleFactorOfFirstFixedSurface")==0 && strcmp(condition_value,"missing")==0) + scaleFactor1Missing = 1; + if (strcmp(condition_name, "scaleFactorOfSecondFixedSurface")==0 && strcmp(condition_value,"missing")==0) + scaleFactor2Missing = 1; + if (strcmp(condition_name, "scaledValueOfFirstFixedSurface")==0 && strcmp(condition_value,"missing")==0) + scaledValue1Missing = 1; + if (strcmp(condition_name, "scaledValueOfSecondFixedSurface")==0 && strcmp(condition_value,"missing")==0) + scaledValue2Missing = 1; + + concept_condition = concept_condition->next; + } + /* Now check the scale factor/value pairs */ + if (scaleFactor1Missing && !scaledValue1Missing) err = 1; + if (!scaleFactor1Missing && scaledValue1Missing) err = 1; + if (scaleFactor2Missing && !scaledValue2Missing) err = 1; + if (!scaleFactor2Missing && scaledValue2Missing) err = 1; + if (err) { + fprintf(stderr, "Error: mismatched scale factor, scaled value keys for %s=%s\n", key, concept_value->name); + return 1; + } + concept_value = concept_value->next; + } + return 0; /* ALL OK */ +} + +int main(int argc, char** argv) +{ + int err = 0; + const char* concepts_key = argv[1]; + const char* concepts_filename = argv[2]; + + assert(argc == 3); + err = grib_check_param_concepts(concepts_key, concepts_filename); + if (err) return err; + + printf("ALL OK\n"); + + return 0; +} diff --git a/tests/grib_check_param_concepts.sh b/tests/grib_check_param_concepts.sh index e781c2827..e4d4090a3 100755 --- a/tests/grib_check_param_concepts.sh +++ b/tests/grib_check_param_concepts.sh @@ -10,12 +10,21 @@ . ./include.sh -REDIRECT=/dev/null - -# This script will check the following concept files: -# name.def paramId.def shortName.def units.def cfVarName.def +# +# This script will do various checks on the concepts files # +# First check the GRIB2 paramId.def on its own +# -------------------------------------------- +$EXEC ${test_dir}/grib_check_param_concepts paramId $ECCODES_DEFINITION_PATH/grib2/paramId.def +$EXEC ${test_dir}/grib_check_param_concepts paramId $ECCODES_DEFINITION_PATH/grib2/localConcepts/ecmf/paramId.def + +$EXEC ${test_dir}/grib_check_param_concepts shortName $ECCODES_DEFINITION_PATH/grib2/shortName.def +$EXEC ${test_dir}/grib_check_param_concepts shortName $ECCODES_DEFINITION_PATH/grib2/localConcepts/ecmf/shortName.def + + +# Check the group: name.def paramId.def shortName.def units.def cfVarName.def +# ---------------------------------------------------------------------------- # Check whether the Test::More Perl module is available set +e perl -e 'use Test::More;' From a1e275126768a1ab191dff60f06400d5ac04cc8f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 10 Feb 2021 18:03:20 +0000 Subject: [PATCH 300/683] Testing: check grib2 parameter concepts (scale factor/scaled value pair) --- tests/grib_check_param_concepts.c | 45 ++++++++++++++++++++---------- tests/grib_check_param_concepts.sh | 6 ++-- 2 files changed, 34 insertions(+), 17 deletions(-) diff --git a/tests/grib_check_param_concepts.c b/tests/grib_check_param_concepts.c index 75c8d81ee..3debcee63 100644 --- a/tests/grib_check_param_concepts.c +++ b/tests/grib_check_param_concepts.c @@ -26,6 +26,13 @@ typedef struct grib_expression_functor grib_arguments* args; } grib_expression_functor; +typedef struct grib_expression_string +{ + grib_expression base; + /* Members defined in string */ + char* value; +} grib_expression_string; + static int grib_check_param_concepts(const char* key, const char* filename) { grib_concept_value* concept_value = grib_parse_concept_file(NULL, filename); @@ -34,25 +41,33 @@ static int grib_check_param_concepts(const char* key, const char* filename) int scaleFactor1Missing = 0, scaleFactor2Missing = 0; int scaledValue1Missing = 0, scaledValue2Missing = 0; int err = 0; - /* printf("\nconcept_value->name=%s\n", concept_value->name); // A given paramId e.g. 151163 */ + /* concept_value->name is the value of the key e.g. 151163 */ while (concept_condition) { char condition_value[512] = {0,}; grib_expression* expression = concept_condition->expression; const char* condition_name = concept_condition->name; - /* printf(" condition_name->name=%s", condition_name); // e.g. discipline, parameterCategory */ - if(strcmp(expression->cclass->name,"long")==0) { - grib_expression_long* e = (grib_expression_long*)expression; - sprintf(condition_value, "%ld", e->value); + /* condition_name is discipline, parameterCategory etc. */ + if (strcmp(expression->cclass->name,"long")==0) { + grib_expression_long* el = (grib_expression_long*)expression; + sprintf(condition_value, "%ld", el->value); } else if(strcmp(expression->cclass->name,"functor")==0) { - grib_expression_functor* e = (grib_expression_functor*)expression; - sprintf(condition_value, "%s", e->name); + grib_expression_functor* ef = (grib_expression_functor*)expression; + sprintf(condition_value, "%s", ef->name); + } else if(strcmp(expression->cclass->name,"string")==0) { + grib_expression_string* es = (grib_expression_string*)expression; + sprintf(condition_value, "%s", es->value); } else { Assert(0); } - if (strcmp(condition_name, "scaleFactorOfFirstFixedSurface")==0 && strcmp(condition_value,"missing")==0) - scaleFactor1Missing = 1; - if (strcmp(condition_name, "scaleFactorOfSecondFixedSurface")==0 && strcmp(condition_value,"missing")==0) - scaleFactor2Missing = 1; + if (strcmp(condition_name, "scaleFactorOfFirstFixedSurface")==0) { + /* scale factor is one octet so 255 is the same as missing */ + if (strcmp(condition_value,"missing")==0 || strcmp(condition_value,"255")==0) + scaleFactor1Missing = 1; + } + if (strcmp(condition_name, "scaleFactorOfSecondFixedSurface")==0) { + if (strcmp(condition_value,"missing")==0 || strcmp(condition_value,"255")==0) + scaleFactor2Missing = 1; + } if (strcmp(condition_name, "scaledValueOfFirstFixedSurface")==0 && strcmp(condition_value,"missing")==0) scaledValue1Missing = 1; if (strcmp(condition_name, "scaledValueOfSecondFixedSurface")==0 && strcmp(condition_value,"missing")==0) @@ -66,12 +81,14 @@ static int grib_check_param_concepts(const char* key, const char* filename) if (scaleFactor2Missing && !scaledValue2Missing) err = 1; if (!scaleFactor2Missing && scaledValue2Missing) err = 1; if (err) { - fprintf(stderr, "Error: mismatched scale factor, scaled value keys for %s=%s\n", key, concept_value->name); - return 1; + fprintf(stderr, "Error: Mismatched scale factor, scaled value keys for %s='%s'.\n" + " If the scale factor is missing so should the scaled value and vice versa\n", + key, concept_value->name); + return GRIB_INVALID_KEY_VALUE; } concept_value = concept_value->next; } - return 0; /* ALL OK */ + return GRIB_SUCCESS; } int main(int argc, char** argv) diff --git a/tests/grib_check_param_concepts.sh b/tests/grib_check_param_concepts.sh index e4d4090a3..161733c18 100755 --- a/tests/grib_check_param_concepts.sh +++ b/tests/grib_check_param_concepts.sh @@ -11,11 +11,11 @@ . ./include.sh # -# This script will do various checks on the concepts files +# Do various checks on the concepts files # -# First check the GRIB2 paramId.def on its own -# -------------------------------------------- +# First check the GRIB2 paramId.def and shortName.def +# ---------------------------------------------------- $EXEC ${test_dir}/grib_check_param_concepts paramId $ECCODES_DEFINITION_PATH/grib2/paramId.def $EXEC ${test_dir}/grib_check_param_concepts paramId $ECCODES_DEFINITION_PATH/grib2/localConcepts/ecmf/paramId.def From b26ad131049a4aaea2309bd657469357cb28dacb Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 10 Feb 2021 18:03:32 +0000 Subject: [PATCH 301/683] Testing: cosmetics --- tests/unit_tests.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/unit_tests.c b/tests/unit_tests.c index 455c8f439..abbf40aa6 100644 --- a/tests/unit_tests.c +++ b/tests/unit_tests.c @@ -1475,7 +1475,6 @@ static void test_concept_condition_strings() err = get_concept_condition_string(h, "gridType", NULL, result); Assert(!err); - /*printf("%s\n", result);*/ Assert(strcmp(result, "gridDefinitionTemplateNumber=0,PLPresent=0") == 0); err = get_concept_condition_string(h, "stepType", NULL, result); From dd5d513a86b3f2126725ad61e8c57a6a160e2343 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 11 Feb 2021 15:02:11 +0000 Subject: [PATCH 302/683] Testing: check surface types too. Cater for keys not present --- tests/grib_check_param_concepts.c | 106 ++++++++++++++++++++---------- 1 file changed, 71 insertions(+), 35 deletions(-) diff --git a/tests/grib_check_param_concepts.c b/tests/grib_check_param_concepts.c index 3debcee63..477bf5e04 100644 --- a/tests/grib_check_param_concepts.c +++ b/tests/grib_check_param_concepts.c @@ -8,38 +8,62 @@ * virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. */ +/* + * Check GRIB2 parameter concept file e.g. shortName.def, paramId.def + */ + #include #include "grib_api_internal.h" -typedef struct grib_expression_long -{ +typedef struct grib_expression_long { grib_expression base; - /* Members defined in long */ long value; } grib_expression_long; -typedef struct grib_expression_functor -{ +typedef struct grib_expression_functor { grib_expression base; - /* Members defined in functor */ char* name; grib_arguments* args; } grib_expression_functor; -typedef struct grib_expression_string -{ +typedef struct grib_expression_string { grib_expression base; - /* Members defined in string */ char* value; } grib_expression_string; +static int type_of_surface_missing(const char* value) +{ + /* Surface Type is Code Table 4.5 in which 255 is the same as missing */ + if (strcmp(value, "missing") == 0 || strcmp(value, "255") == 0) { + return 1; + } + return 0; +} +static int scale_factor_missing(const char* value) +{ + /* Scale factor is one octet so 255 is the same as missing */ + if (strcmp(value, "missing") == 0 || strcmp(value, "255") == 0) { + return 1; + } + return 0; +} + static int grib_check_param_concepts(const char* key, const char* filename) { grib_concept_value* concept_value = grib_parse_concept_file(NULL, filename); + if (!concept_value) + return GRIB_IO_PROBLEM; + while (concept_value) { grib_concept_condition* concept_condition = concept_value->conditions; - int scaleFactor1Missing = 0, scaleFactor2Missing = 0; - int scaledValue1Missing = 0, scaledValue2Missing = 0; + /* Convention: + * -1 key not present + * 0 key present and not missing + * 1 key present and missing + */ + int scaleFactor1Missing = -1, scaleFactor2Missing = -1; + int scaledValue1Missing = -1, scaledValue2Missing = -1; + int type1Missing = -1, type2Missing = -1; int err = 0; /* concept_value->name is the value of the key e.g. 151163 */ while (concept_condition) { @@ -47,42 +71,54 @@ static int grib_check_param_concepts(const char* key, const char* filename) grib_expression* expression = concept_condition->expression; const char* condition_name = concept_condition->name; /* condition_name is discipline, parameterCategory etc. */ - if (strcmp(expression->cclass->name,"long")==0) { + if (strcmp(expression->cclass->name, "long") == 0) { grib_expression_long* el = (grib_expression_long*)expression; sprintf(condition_value, "%ld", el->value); - } else if(strcmp(expression->cclass->name,"functor")==0) { + } + else if (strcmp(expression->cclass->name, "functor") == 0) { grib_expression_functor* ef = (grib_expression_functor*)expression; sprintf(condition_value, "%s", ef->name); - } else if(strcmp(expression->cclass->name,"string")==0) { + } + else if (strcmp(expression->cclass->name, "string") == 0) { grib_expression_string* es = (grib_expression_string*)expression; sprintf(condition_value, "%s", es->value); - } else { + } + else { Assert(0); } - if (strcmp(condition_name, "scaleFactorOfFirstFixedSurface")==0) { - /* scale factor is one octet so 255 is the same as missing */ - if (strcmp(condition_value,"missing")==0 || strcmp(condition_value,"255")==0) - scaleFactor1Missing = 1; + if (strcmp(condition_name, "typeOfFirstFixedSurface") == 0) { + type1Missing = type_of_surface_missing(condition_value); } - if (strcmp(condition_name, "scaleFactorOfSecondFixedSurface")==0) { - if (strcmp(condition_value,"missing")==0 || strcmp(condition_value,"255")==0) - scaleFactor2Missing = 1; + if (strcmp(condition_name, "typeOfSecondFixedSurface") == 0) { + type2Missing = type_of_surface_missing(condition_value); + } + if (strcmp(condition_name, "scaleFactorOfFirstFixedSurface") == 0) { + scaleFactor1Missing = scale_factor_missing(condition_value); + } + if (strcmp(condition_name, "scaleFactorOfSecondFixedSurface") == 0) { + scaleFactor2Missing = scale_factor_missing(condition_value); + } + if (strcmp(condition_name, "scaledValueOfFirstFixedSurface") == 0) { + scaledValue1Missing = (strcmp(condition_value, "missing") == 0); + } + if (strcmp(condition_name, "scaledValueOfSecondFixedSurface") == 0) { + scaledValue2Missing = (strcmp(condition_value, "missing") == 0); } - if (strcmp(condition_name, "scaledValueOfFirstFixedSurface")==0 && strcmp(condition_value,"missing")==0) - scaledValue1Missing = 1; - if (strcmp(condition_name, "scaledValueOfSecondFixedSurface")==0 && strcmp(condition_value,"missing")==0) - scaledValue2Missing = 1; concept_condition = concept_condition->next; } /* Now check the scale factor/value pairs */ - if (scaleFactor1Missing && !scaledValue1Missing) err = 1; - if (!scaleFactor1Missing && scaledValue1Missing) err = 1; - if (scaleFactor2Missing && !scaledValue2Missing) err = 1; - if (!scaleFactor2Missing && scaledValue2Missing) err = 1; + if (type1Missing == 1 && scaleFactor1Missing == 0 && scaledValue1Missing == 0) err = 1; + if (type2Missing == 1 && scaleFactor2Missing == 0 && scaledValue2Missing == 0) err = 1; + if (scaleFactor1Missing == 1 && scaledValue1Missing == 0) err = 1; + if (scaleFactor1Missing == 0 && scaledValue1Missing == 1) err = 1; + if (scaleFactor2Missing == 1 && scaledValue2Missing == 0) err = 1; + if (scaleFactor2Missing == 0 && scaledValue2Missing == 1) err = 1; if (err) { - fprintf(stderr, "Error: Mismatched scale factor, scaled value keys for %s='%s'.\n" - " If the scale factor is missing so should the scaled value and vice versa\n", + fprintf(stderr, + "Error: Mismatched type of surface, scale factor, scaled value keys for %s='%s'.\n" + " If the type of surface is missing so should its scaled keys\n" + " If the scale factor is missing so should the scaled value and vice versa\n", key, concept_value->name); return GRIB_INVALID_KEY_VALUE; } @@ -93,10 +129,10 @@ static int grib_check_param_concepts(const char* key, const char* filename) int main(int argc, char** argv) { - int err = 0; - const char* concepts_key = argv[1]; + int err = 0; + const char* concepts_key = argv[1]; const char* concepts_filename = argv[2]; - + assert(argc == 3); err = grib_check_param_concepts(concepts_key, concepts_filename); if (err) return err; From 9a5525289cf1c44c627ef8ada4d0310c12f7763e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 11 Feb 2021 15:27:57 +0000 Subject: [PATCH 303/683] Definitions: remove unused template --- definitions/Makefile.am | 1 - definitions/grib2/template.second_order.def | 1 - 2 files changed, 2 deletions(-) delete mode 100644 definitions/grib2/template.second_order.def diff --git a/definitions/Makefile.am b/definitions/Makefile.am index 8fc0853bd..c4c45c54b 100644 --- a/definitions/Makefile.am +++ b/definitions/Makefile.am @@ -14041,7 +14041,6 @@ dist_definitionsgrib2_DATA = \ grib2/template.7.6.def\ grib2/template.7.61.def\ grib2/template.7.second_order.def\ - grib2/template.second_order.def\ grib2/tiggeLocalVersion.table\ grib2/tigge_name.def\ grib2/tigge_parameter.def\ diff --git a/definitions/grib2/template.second_order.def b/definitions/grib2/template.second_order.def deleted file mode 100644 index f9bf1abc1..000000000 --- a/definitions/grib2/template.second_order.def +++ /dev/null @@ -1 +0,0 @@ -#TODO From e4ba1cb3281cd8d84301a3a117f218378ffb25c3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 11 Feb 2021 22:04:00 +0000 Subject: [PATCH 304/683] ECC-1198: Examples: grib_iterator should mention the 'bitmapPresent' key --- examples/C/grib_iterator.c | 15 +++-- examples/C/grib_iterator.sh | 9 ++- examples/python/grib_iterator.c | 109 ++++++++++++++++--------------- examples/python/grib_iterator.py | 13 ++-- 4 files changed, 84 insertions(+), 62 deletions(-) diff --git a/examples/C/grib_iterator.c b/examples/C/grib_iterator.c index 92d8650f6..2a8b274a2 100644 --- a/examples/C/grib_iterator.c +++ b/examples/C/grib_iterator.c @@ -12,7 +12,6 @@ * C Implementation: grib_iterator * * Description: how to use an iterator on lat/lon/values for GRIB messages - * */ #include @@ -33,6 +32,7 @@ int main(int argc, char** argv) double lat, lon, value; double missingValue = 1e+20; /* A value out of range */ int n = 0; + long bitmapPresent = 0; char* filename = NULL; /* Message handle. Required in all the ecCodes calls acting on a message.*/ @@ -55,9 +55,14 @@ int main(int argc, char** argv) /* Check of errors after reading a message. */ if (err != CODES_SUCCESS) CODES_CHECK(err, 0); - /* Set the double representing the missing value in the field. */ - /* Choose a missingValue that does not correspond to any real value in the data array */ - CODES_CHECK(codes_set_double(h, "missingValue", missingValue), 0); + /* Check if a bitmap applies */ + CODES_CHECK(codes_get_long(h, "bitmapPresent", &bitmapPresent), 0); + + if (bitmapPresent) { + /* Set the double representing the missing value in the field. */ + /* Choose a missingValue that does not correspond to any real value in the data array */ + CODES_CHECK(codes_set_double(h, "missingValue", missingValue), 0); + } /* A new iterator on lat/lon/values is created from the message handle h. */ iter = codes_grib_iterator_new(h, 0, &err); @@ -69,7 +74,7 @@ int main(int argc, char** argv) /* You can now print lat and lon, */ printf("- %d - lat=%f lon=%f value=", n, lat, lon); /* decide what to print if a missing value is found. */ - if (value == missingValue) printf("missing\n"); + if (bitmapPresent && value == missingValue) printf("missing\n"); /* and print the value if is not missing. */ else printf("%f\n", value); diff --git a/examples/C/grib_iterator.sh b/examples/C/grib_iterator.sh index 29c4cd042..76bce1e1a 100755 --- a/examples/C/grib_iterator.sh +++ b/examples/C/grib_iterator.sh @@ -8,8 +8,15 @@ # virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. . ./include.sh +temp=temp.c_grib_iterator.txt +# These two do not have any missing data ${examples_dir}/c_grib_iterator ${data_dir}/reduced_gaussian_model_level.grib1 > /dev/null - ${examples_dir}/c_grib_iterator ${data_dir}/regular_gaussian_model_level.grib1 > /dev/null +# Has missing data +${examples_dir}/c_grib_iterator ${data_dir}/reduced_latlon_surface.grib2 > $temp +count_miss=`grep -c missing $temp` +[ $count_miss = 98701 ] + +rm -f $temp diff --git a/examples/python/grib_iterator.c b/examples/python/grib_iterator.c index 94d6987bf..07e18649a 100644 --- a/examples/python/grib_iterator.c +++ b/examples/python/grib_iterator.c @@ -11,78 +11,85 @@ /* * C Implementation: grib_iterator * - * Description: how to use an iterator on lat/lon/values. + * Description: how to use an iterator on lat/lon/values for GRIB messages * */ #include #include -#include -#include "grib_api.h" +#include "grib_api.h" -static void usage(const char* prog) { - printf("Usage: %s grib_file\n",prog); - exit(1); +static void usage(const char* prog) +{ + printf("Usage: %s grib_file\n", prog); + exit(1); } -int main(int argc, char** argv) { - FILE* in = NULL; - int err = 0; - double lat,lon,value; +int main(int argc, char** argv) +{ + FILE* in = NULL; + int err = 0; + double lat, lon, value; double missingValue = 1e+20; /* A value out of range */ - int n=0; - char* filename = NULL; + int n = 0; + long bitmapPresent = 0; + char* filename = NULL; - /* Message handle. Required in all the grib_api calls acting on a message.*/ - grib_handle *h = NULL; - /* Iterator on lat/lon/values.*/ - grib_iterator* iter=NULL; + /* Message handle. Required in all the ecCodes calls acting on a message.*/ + grib_handle* h = NULL; + /* Iterator on lat/lon/values.*/ + grib_iterator* iter = NULL; - if (argc != 2) usage(argv[0]); + if (argc != 2) usage(argv[0]); - filename=strdup(argv[1]); + filename = argv[1]; - in = fopen(filename,"rb"); - if(!in) { - printf("ERROR: unable to open file %s\n",filename); - return 1; - } + in = fopen(filename, "rb"); + if (!in) { + fprintf(stderr, "Error: unable to open file %s\n", filename); + return 1; + } - /* Loop on all the messages in a file.*/ - while ((h = grib_handle_new_from_file(0,in,&err)) != NULL ) { - /* Check of errors after reading a message. */ - if (err != GRIB_SUCCESS) GRIB_CHECK(err,0); + /* Loop on all the messages in a file.*/ + while ((h = grib_handle_new_from_file(0, in, &err)) != NULL) { + /* Check of errors after reading a message. */ + if (err != GRIB_SUCCESS) GRIB_CHECK(err, 0); - /* Set the double representing the missing value in the field. */ - /* Choose a missingValue that does not correspond to any real value in the data array */ - GRIB_CHECK(grib_set_double(h, "missingValue", missingValue),0); + /* Check if a bitmap applies */ + GRIB_CHECK(grib_get_long(h, "bitmapPresent", &bitmapPresent), 0); - /* A new iterator on lat/lon/values is created from the message handle h. */ - iter=grib_iterator_new(h,0,&err); - if (err != GRIB_SUCCESS) GRIB_CHECK(err,0); + if (bitmapPresent) { + /* Set the double representing the missing value in the field. */ + /* Choose a missingValue that does not correspond to any real value in the data array */ + GRIB_CHECK(grib_set_double(h, "missingValue", missingValue), 0); + } - n = 0; - /* Loop on all the lat/lon/values. */ - while(grib_iterator_next(iter,&lat,&lon,&value)) { - /* You can now print lat and lon, */ - printf("- %d - lat=%.6e lon=%.6e value=",n,lat,lon); - /* decide what to print if a missing value is found. */ - if (value == missingValue ) printf("missing\n"); - /* and print the value if is not missing. */ - else printf("%f\n",value); - n++; - } + /* A new iterator on lat/lon/values is created from the message handle h. */ + iter = grib_iterator_new(h, 0, &err); + if (err != GRIB_SUCCESS) GRIB_CHECK(err, 0); - /* At the end the iterator is deleted to free memory. */ - grib_iterator_delete(iter); + n = 0; + /* Loop on all the lat/lon/values. */ + while (grib_iterator_next(iter, &lat, &lon, &value)) { + /* You can now print lat and lon, */ + printf("- %d - lat=%.6e lon=%.6e value=", n, lat, lon); + /* decide what to print if a missing value is found. */ + if (bitmapPresent && value == missingValue) printf("missing\n"); + /* and print the value if is not missing. */ + else + printf("%f\n", value); + n++; + } - /* At the end the grib_handle is deleted to free memory. */ - grib_handle_delete(h); - } + /* At the end the iterator is deleted to free memory. */ + grib_iterator_delete(iter); + /* At the end the grib_handle is deleted to free memory. */ + grib_handle_delete(h); + } - fclose(in); + fclose(in); - return 0; + return 0; } diff --git a/examples/python/grib_iterator.py b/examples/python/grib_iterator.py index cdb984eea..2c7d5ede8 100644 --- a/examples/python/grib_iterator.py +++ b/examples/python/grib_iterator.py @@ -19,16 +19,19 @@ missingValue = 1e+20 # A value out of range def example(INPUT): - f = open(INPUT, 'rb') + f = open(INPUT, "rb") while 1: gid = codes_grib_new_from_file(f) if gid is None: break - # Set the value representing the missing value in the field. - # Choose a missingValue that does not correspond to any real value in the data array - codes_set(gid, "missingValue", missingValue) + bitmapPresent = codes_get(gid, "bitmapPresent") + + if bitmapPresent: + # Set the value representing the missing value in the field. + # Choose a missingValue that does not correspond to any real value in the data array + codes_set(gid, "missingValue", missingValue) iterid = codes_grib_iterator_new(gid, 0) @@ -42,7 +45,7 @@ def example(INPUT): sys.stdout.write("- %d - lat=%.6e lon=%.6e value=" % (i, lat, lon)) - if value == missingValue: + if bitmapPresent and value == missingValue: print("missing") else: print("%.6f" % value) From b1950a49b87b55304e73d04ce83124f38f7a303c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 13 Feb 2021 15:37:26 +0000 Subject: [PATCH 305/683] Definitions: typeOfLevel concept --- .../grib1/localConcepts/ecmf/typeOfLevel.def | 33 ------------------- .../localConcepts/kwbc/typeOfLevelConcept.def | 17 ++++++++++ 2 files changed, 17 insertions(+), 33 deletions(-) create mode 100644 definitions/grib2/localConcepts/kwbc/typeOfLevelConcept.def diff --git a/definitions/grib1/localConcepts/ecmf/typeOfLevel.def b/definitions/grib1/localConcepts/ecmf/typeOfLevel.def index c43d20a7f..70a13942c 100644 --- a/definitions/grib1/localConcepts/ecmf/typeOfLevel.def +++ b/definitions/grib1/localConcepts/ecmf/typeOfLevel.def @@ -1,37 +1,4 @@ # ECMWF concept type of level -'surface' = {indicatorOfTypeOfLevel=1;} -'cloudBase' = {indicatorOfTypeOfLevel=2;} -'cloudTop' = {indicatorOfTypeOfLevel=3;} -'isothermZero' = {indicatorOfTypeOfLevel=4;} -'adiabaticCondensation' = {indicatorOfTypeOfLevel=5;} -'maxWind' = {indicatorOfTypeOfLevel=6;} -'tropopause' = {indicatorOfTypeOfLevel=7;} -'nominalTop' = {indicatorOfTypeOfLevel=8;} -'seaBottom' = {indicatorOfTypeOfLevel=9;} -'isobaricInhPa' = {indicatorOfTypeOfLevel=100;} -'isobaricInPa' = {indicatorOfTypeOfLevel=210;} -'isobaricLayer' = {indicatorOfTypeOfLevel=101;} -'meanSea' = {indicatorOfTypeOfLevel=102;} -'isobaricLayerHighPrecision' = {indicatorOfTypeOfLevel=121;} -'isobaricLayerMixedPrecision' = {indicatorOfTypeOfLevel=141;} -'heightAboveSea' = {indicatorOfTypeOfLevel=103;} -'heightAboveSeaLayer' = {indicatorOfTypeOfLevel=104;} -'heightAboveGroundHighPrecision' = {indicatorOfTypeOfLevel=125;} -'heightAboveGround' = {indicatorOfTypeOfLevel=105;} -'heightAboveGroundLayer' = {indicatorOfTypeOfLevel=106;} -'sigma' = {indicatorOfTypeOfLevel=107;} -'sigmaLayer' = {indicatorOfTypeOfLevel=108;} -'sigmaLayerHighPrecision' = {indicatorOfTypeOfLevel=128;} -'hybrid' = {indicatorOfTypeOfLevel=109;} -'hybridLayer' = {indicatorOfTypeOfLevel=110;} -'depthBelowLand' = {indicatorOfTypeOfLevel=111;} -'depthBelowLandLayer' = {indicatorOfTypeOfLevel=112;} -'theta' = {indicatorOfTypeOfLevel=113;} -'thetaLayer' = {indicatorOfTypeOfLevel=114;} -'pressureFromGround' = {indicatorOfTypeOfLevel=115;} -'pressureFromGroundLayer' = {indicatorOfTypeOfLevel=116;} -'potentialVorticity' = {indicatorOfTypeOfLevel=117;} -'depthBelowSea' = {indicatorOfTypeOfLevel=160;} 'entireAtmosphere' = {indicatorOfTypeOfLevel=200;level=0;} 'entireOcean' = {indicatorOfTypeOfLevel=201;level=0;} 'oceanWave' = {indicatorOfTypeOfLevel=211;} diff --git a/definitions/grib2/localConcepts/kwbc/typeOfLevelConcept.def b/definitions/grib2/localConcepts/kwbc/typeOfLevelConcept.def new file mode 100644 index 000000000..432a54936 --- /dev/null +++ b/definitions/grib2/localConcepts/kwbc/typeOfLevelConcept.def @@ -0,0 +1,17 @@ +# Concept typeOfLevel for kwbc +'atmosphereSingleLayer' = {typeOfFirstFixedSurface=200;} +'highestTroposphericFreezing' = {typeOfFirstFixedSurface=204;} +'boundaryLayerCloudLayer' = {typeOfFirstFixedSurface=211;} +'lowCloudBottom' = {typeOfFirstFixedSurface=212;} +'lowCloudTop' = {typeOfFirstFixedSurface=213;} +'lowCloudLayer' = {typeOfFirstFixedSurface=214;} +'planetaryBoundaryLayer' = {typeOfFirstFixedSurface=220;} +'middleCloudBottom' = {typeOfFirstFixedSurface=222;} +'middleCloudTop' = {typeOfFirstFixedSurface=223;} +'middleCloudLayer' = {typeOfFirstFixedSurface=224;} +'highCloudBottom' = {typeOfFirstFixedSurface=232;} +'highCloudTop' = {typeOfFirstFixedSurface=233;} +'highCloudLayer' = {typeOfFirstFixedSurface=234;} +'convectiveCloudBottom' = {typeOfFirstFixedSurface=242;} +'convectiveCloudTop' = {typeOfFirstFixedSurface=243;} +'convectiveCloudLayer' = {typeOfFirstFixedSurface=244;} From af65489218f7efcedf5b86c7d5d09a7747c6ccab Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 14 Feb 2021 13:25:23 +0000 Subject: [PATCH 306/683] Definitions: typeOfLevel concept --- .../localConcepts/kwbc/typeOfLevelConcept.def | 16 ++++++++++++ .../grib2/tables/local/kwbc/1/4.5.table | 25 ++++++++++++++++++- 2 files changed, 40 insertions(+), 1 deletion(-) diff --git a/definitions/grib2/localConcepts/kwbc/typeOfLevelConcept.def b/definitions/grib2/localConcepts/kwbc/typeOfLevelConcept.def index 432a54936..b07d32983 100644 --- a/definitions/grib2/localConcepts/kwbc/typeOfLevelConcept.def +++ b/definitions/grib2/localConcepts/kwbc/typeOfLevelConcept.def @@ -1,17 +1,33 @@ # Concept typeOfLevel for kwbc 'atmosphereSingleLayer' = {typeOfFirstFixedSurface=200;} +'cceanSingleLayer' = {typeOfFirstFixedSurface=201;} 'highestTroposphericFreezing' = {typeOfFirstFixedSurface=204;} +'gridScaleCloudBottom' = {typeOfFirstFixedSurface=206;} +'gridScaleCloudTop' = {typeOfFirstFixedSurface=207;} +'boundaryLayerCloudBottom' = {typeOfFirstFixedSurface=209;} +'boundaryLayerCloudTop' = {typeOfFirstFixedSurface=210;} 'boundaryLayerCloudLayer' = {typeOfFirstFixedSurface=211;} 'lowCloudBottom' = {typeOfFirstFixedSurface=212;} 'lowCloudTop' = {typeOfFirstFixedSurface=213;} 'lowCloudLayer' = {typeOfFirstFixedSurface=214;} +'cloudCeiling' = {typeOfFirstFixedSurface=215;} 'planetaryBoundaryLayer' = {typeOfFirstFixedSurface=220;} +'layerBetween2Hybrids' = {typeOfFirstFixedSurface=221;} 'middleCloudBottom' = {typeOfFirstFixedSurface=222;} 'middleCloudTop' = {typeOfFirstFixedSurface=223;} 'middleCloudLayer' = {typeOfFirstFixedSurface=224;} 'highCloudBottom' = {typeOfFirstFixedSurface=232;} 'highCloudTop' = {typeOfFirstFixedSurface=233;} 'highCloudLayer' = {typeOfFirstFixedSurface=234;} +'oceanIsotherm' = {typeOfFirstFixedSurface=235;} +'oceanMixedLayer' = {typeOfFirstFixedSurface=240;} +'orderedSequenceData' = {typeOfFirstFixedSurface=241;} 'convectiveCloudBottom' = {typeOfFirstFixedSurface=242;} 'convectiveCloudTop' = {typeOfFirstFixedSurface=243;} 'convectiveCloudLayer' = {typeOfFirstFixedSurface=244;} +'lowestLevelWetBulb0' = {typeOfFirstFixedSurface=245;} +'equilibrium' = {typeOfFirstFixedSurface=247;} +'shallowConvectiveCloudBottom' = {typeOfFirstFixedSurface=248;} +'shallowConvectiveCloudTop' = {typeOfFirstFixedSurface=249;} +'deepConvectiveCloudBottom' = {typeOfFirstFixedSurface=251;} +'deepConvectiveCloudTop' = {typeOfFirstFixedSurface=252;} diff --git a/definitions/grib2/tables/local/kwbc/1/4.5.table b/definitions/grib2/tables/local/kwbc/1/4.5.table index 3a7c14355..f1cfbfbe6 100644 --- a/definitions/grib2/tables/local/kwbc/1/4.5.table +++ b/definitions/grib2/tables/local/kwbc/1/4.5.table @@ -71,19 +71,42 @@ # 192-254 Reserved for local use # See ECC-469 200 200 Entire atmosphere (considered as a single layer) +201 201 Entire ocean (considered as a single layer) 204 204 Highest tropospheric freezing level +206 206 Grid scale cloud bottom level +207 207 Grid scale cloud top level +209 209 Boundary layer cloud bottom level +210 210 Boundary layer cloud top level 211 211 Boundary layer cloud layer 212 212 Low cloud bottom level 213 213 Low cloud top level 214 214 Low cloud layer +215 215 Cloud ceiling 220 220 Planetary boundary layer +221 221 Layer between two hybrid levels 222 222 Middle cloud bottom level 223 223 Middle cloud top level 224 224 Middle cloud layer 232 232 High cloud bottom level 233 233 High cloud top level 234 234 High cloud layer +235 235 Ocean isotherm level (1/10 deg C) +236 236 Layer between two depths below ocean surface +237 237 Bottom of ocean mixed layer +238 238 Bottom of ocean isothermal layer +239 239 Layer ocean surface and 26C ocean isothermal level +240 240 Ocean mixed layer +241 241 Ordered sequence of data 242 242 Convective cloud bottom level 243 243 Convective cloud top level 244 244 Convective cloud layer -255 255 Missing +245 245 Lowest level of the wet bulb zero +246 246 Maximum equivalent potential temperature level +247 247 Equilibrium level +248 248 Shallow convective cloud bottom level +249 249 Shallow convective cloud top level +251 251 Deep convective cloud bottom level +252 252 Deep convective cloud top level +253 253 Lowest bottom level of supercooled liquid water layer +254 254 Highest top level of supercooled liquid water layer +255 255 Missing From 9fdc2b50c50a3df9911096948caca902860f9843 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 14 Feb 2021 18:14:39 +0000 Subject: [PATCH 307/683] Examples: Fortran formatting (https://github.com/pseewald/fprettify) --- examples/F90/bufr_attributes.f90 | 141 ++++---- examples/F90/bufr_clone.f90 | 60 ++-- examples/F90/bufr_copy_data.f90 | 126 +++---- examples/F90/bufr_copy_keys.f90 | 30 +- examples/F90/bufr_copy_message.f90 | 58 ++-- examples/F90/bufr_expanded.f90 | 69 ++-- examples/F90/bufr_get_keys.f90 | 119 ++++--- examples/F90/bufr_get_string_array.f90 | 74 ++-- examples/F90/bufr_keys_iterator.f90 | 89 +++-- examples/F90/bufr_read_header.f90 | 82 ++--- examples/F90/bufr_read_scatterometer.f90 | 129 ++++--- examples/F90/bufr_read_synop.f90 | 144 ++++---- examples/F90/bufr_read_temp.f90 | 114 +++--- examples/F90/bufr_read_tempf.f90 | 281 ++++++++------- examples/F90/bufr_read_tropical_cyclone.f90 | 362 ++++++++++---------- examples/F90/bufr_set_keys.f90 | 72 ++-- examples/F90/bufr_subset.f90 | 87 +++-- examples/F90/get_fortran.f90 | 166 ++++----- examples/F90/get_product_kind.f90 | 70 ++-- examples/F90/grib_clone.f90 | 86 ++--- examples/F90/grib_copy_message.f90 | 59 ++-- examples/F90/grib_copy_namespace.f90 | 28 +- examples/F90/grib_count_messages.f90 | 153 ++++----- examples/F90/grib_count_messages_multi.f90 | 28 +- examples/F90/grib_ecc-671.f90 | 26 +- examples/F90/grib_get_data.f90 | 108 +++--- examples/F90/grib_get_keys.f90 | 150 ++++---- examples/F90/grib_get_pl.f90 | 52 +-- examples/F90/grib_get_pv.f90 | 52 +-- examples/F90/grib_get_set_uuid.f90 | 146 ++++---- examples/F90/grib_index.f90 | 168 ++++----- examples/F90/grib_keys_iterator.f90 | 65 ++-- examples/F90/grib_multi.f90 | 38 +- examples/F90/grib_multi_write.f90 | 44 +-- examples/F90/grib_nearest.f90 | 108 +++--- examples/F90/grib_precision.f90 | 124 +++---- examples/F90/grib_print_data.f90 | 70 ++-- examples/F90/grib_print_data_static.f90 | 64 ++-- examples/F90/grib_read_message.f90 | 48 +-- examples/F90/grib_samples.f90 | 114 +++--- examples/F90/grib_set_bitmap.f90 | 94 ++--- examples/F90/grib_set_data.f90 | 80 ++--- examples/F90/grib_set_gvc.f90 | 68 ++-- examples/F90/grib_set_keys.f90 | 90 ++--- examples/F90/grib_set_missing.f90 | 56 +-- examples/F90/grib_set_packing.f90 | 66 ++-- examples/F90/grib_set_pv.f90 | 84 ++--- examples/F90/iterator_fortran.f90 | 66 ++-- examples/F90/keys_iterator_fortran.f90 | 72 ++-- examples/F90/multi_fortran.f90 | 72 ++-- examples/F90/new_from_file.f90 | 41 ++- examples/F90/precision_fortran.f90 | 124 +++---- examples/F90/print_data_fortran.f90 | 56 +-- examples/F90/read_from_file.f90 | 132 +++---- examples/F90/set_fortran.f90 | 64 ++-- examples/F90/set_missing_fortran.f90 | 40 +-- 56 files changed, 2597 insertions(+), 2612 deletions(-) diff --git a/examples/F90/bufr_attributes.f90 b/examples/F90/bufr_attributes.f90 index f1c3144dc..eb5a330ae 100644 --- a/examples/F90/bufr_attributes.f90 +++ b/examples/F90/bufr_attributes.f90 @@ -13,101 +13,100 @@ ! ! program bufr_attributes -use eccodes -implicit none -integer :: ifile -integer :: iret -integer :: ibufr -integer :: count=0 -integer(kind=4) :: iVal,conf -real(kind=8) :: t2m -character(len=32) :: units, confUnits + use eccodes + implicit none + integer :: ifile + integer :: iret + integer :: ibufr + integer :: count = 0 + integer(kind=4) :: iVal, conf + real(kind=8) :: t2m + character(len=32) :: units, confUnits - call codes_open_file(ifile,'../../data/bufr/syno_multi.bufr','r') + call codes_open_file(ifile, '../../data/bufr/syno_multi.bufr', 'r') ! the first bufr message is loaded from file ! ibufr is the bufr id to be used in subsequent calls - call codes_bufr_new_from_file(ifile,ibufr,iret) + call codes_bufr_new_from_file(ifile, ibufr, iret) - do while (iret/=CODES_END_OF_FILE) + do while (iret /= CODES_END_OF_FILE) - ! Get and print some keys form the BUFR header - write(*,*) 'message: ',count + ! Get and print some keys form the BUFR header + write (*, *) 'message: ', count - ! We need to instruct ecCodes to expand all the descriptors - ! i.e. unpack the data values - call codes_set(ibufr,"unpack",1); + ! We need to instruct ecCodes to expand all the descriptors + ! i.e. unpack the data values + call codes_set(ibufr, "unpack", 1); + ! ---------------------------------------------------------------- + ! We will read the value and all the attributes available for + ! the 2m temperature. + ! ---------------------------------------------------------------- - ! ---------------------------------------------------------------- - ! We will read the value and all the attributes available for - ! the 2m temperature. - ! ---------------------------------------------------------------- + ! Get the element's value as as real + call codes_get(ibufr, 'airTemperatureAt2M', t2m); + write (*, *) ' airTemperatureAt2M:', t2m - ! Get the element's value as as real - call codes_get(ibufr,'airTemperatureAt2M',t2m); - write(*,*) ' airTemperatureAt2M:',t2m + ! Get the element's code (see BUFR code table B) + call codes_get(ibufr, 'airTemperatureAt2M->code', iVal); + write (*, *) ' airTemperatureAt2M->code:', iVal - ! Get the element's code (see BUFR code table B) - call codes_get(ibufr,'airTemperatureAt2M->code',iVal); - write(*,*) ' airTemperatureAt2M->code:',iVal + ! Get the element's units (see BUFR code table B) + call codes_get(ibufr, 'airTemperatureAt2M->units', units) + write (*, *) ' airTemperatureAt2M->units:', units - ! Get the element's units (see BUFR code table B) - call codes_get(ibufr,'airTemperatureAt2M->units',units) - write(*,*) ' airTemperatureAt2M->units:',units + ! Get the element's scale (see BUFR code table B) + call codes_get(ibufr, 'airTemperatureAt2M->scale', iVal); + write (*, *) ' airTemperatureAt2M->code:', iVal - ! Get the element's scale (see BUFR code table B) - call codes_get(ibufr,'airTemperatureAt2M->scale',iVal); - write(*,*) ' airTemperatureAt2M->code:',iVal + ! Get the element's reference (see BUFR code table B) + call codes_get(ibufr, 'airTemperatureAt2M->reference', iVal); + write (*, *) ' airTemperatureAt2M->reference:', iVal - ! Get the element's reference (see BUFR code table B) - call codes_get(ibufr,'airTemperatureAt2M->reference',iVal); - write(*,*) ' airTemperatureAt2M->reference:',iVal + ! Get the element's width (see BUFR code table B) + call codes_get(ibufr, 'airTemperatureAt2M->width', iVal); + write (*, *) ' airTemperatureAt2M->width:', iVal - ! Get the element's width (see BUFR code table B) - call codes_get(ibufr,'airTemperatureAt2M->width',iVal); - write(*,*) ' airTemperatureAt2M->width:',iVal + ! ------------------------------------------------------------------- + ! The 2m temperature data element in this message has an associated + ! field: percentConfidence. Its value and attributes can be accessed + ! in a similar manner as was shown above for 2m temperature. + ! ------------------------------------------------------------------- - ! ------------------------------------------------------------------- - ! The 2m temperature data element in this message has an associated - ! field: percentConfidence. Its value and attributes can be accessed - ! in a similar manner as was shown above for 2m temperature. - ! ------------------------------------------------------------------- + ! Get the element's value as as real + call codes_get(ibufr, 'airTemperatureAt2M->percentConfidence', conf); + write (*, *) ' airTemperatureAt2M->percentConfidence:', conf - ! Get the element's value as as real - call codes_get(ibufr,'airTemperatureAt2M->percentConfidence',conf); - write(*,*) ' airTemperatureAt2M->percentConfidence:', conf + ! Get the element's code (see BUFR code table B) + call codes_get(ibufr, 'airTemperatureAt2M->percentConfidence->code', iVal); + write (*, *) ' airTemperatureAt2M->percentConfidence->code:', iVal - ! Get the element's code (see BUFR code table B) - call codes_get(ibufr,'airTemperatureAt2M->percentConfidence->code',iVal); - write(*,*) ' airTemperatureAt2M->percentConfidence->code:',iVal + ! Get the element's units (see BUFR code table B) + call codes_get(ibufr, 'airTemperatureAt2M->percentConfidence->units', confUnits) + write (*, *) ' airTemperatureAt2M->percentConfidence->units:', confUnits - ! Get the element's units (see BUFR code table B) - call codes_get(ibufr,'airTemperatureAt2M->percentConfidence->units',confUnits) - write(*,*) ' airTemperatureAt2M->percentConfidence->units:',confUnits + ! Get the element's scale (see BUFR code table B) + call codes_get(ibufr, 'airTemperatureAt2M->percentConfidence->scale', iVal); + write (*, *) ' airTemperatureAt2M->percentConfidence->code:', iVal - ! Get the element's scale (see BUFR code table B) - call codes_get(ibufr,'airTemperatureAt2M->percentConfidence->scale',iVal); - write(*,*) ' airTemperatureAt2M->percentConfidence->code:',iVal + ! Get the element's reference (see BUFR code table B) + call codes_get(ibufr, 'airTemperatureAt2M->percentConfidence->reference', iVal); + write (*, *) ' airTemperatureAt2M->percentConfidence->reference:', iVal - ! Get the element's reference (see BUFR code table B) - call codes_get(ibufr,'airTemperatureAt2M->percentConfidence->reference',iVal); - write(*,*) ' airTemperatureAt2M->percentConfidence->reference:',iVal + ! Get the element's width (see BUFR code table B) + call codes_get(ibufr, 'airTemperatureAt2M->percentConfidence->width', iVal); + write (*, *) ' airTemperatureAt2M->percentConfidence->width:', iVal - ! Get the element's width (see BUFR code table B) - call codes_get(ibufr,'airTemperatureAt2M->percentConfidence->width',iVal); - write(*,*) ' airTemperatureAt2M->percentConfidence->width:',iVal + ! Release the bufr message + call codes_release(ibufr) - ! Release the bufr message - call codes_release(ibufr) + ! Load the next bufr message + call codes_bufr_new_from_file(ifile, ibufr, iret) - ! Load the next bufr message - call codes_bufr_new_from_file(ifile,ibufr,iret) + count = count + 1 - count=count+1 + end do - end do - - ! Close file - call codes_close_file(ifile) + ! Close file + call codes_close_file(ifile) end program bufr_attributes diff --git a/examples/F90/bufr_clone.f90 b/examples/F90/bufr_clone.f90 index a8567453d..1dc231d7b 100644 --- a/examples/F90/bufr_clone.f90 +++ b/examples/F90/bufr_clone.f90 @@ -13,45 +13,45 @@ ! ! program bufr_clone - use eccodes - implicit none - integer :: i,iret - integer :: infile,outfile - integer :: ibufr_in - integer :: ibufr_out + use eccodes + implicit none + integer :: i, iret + integer :: infile, outfile + integer :: ibufr_in + integer :: ibufr_out - ! Open source file - call codes_open_file(infile,'../../data/bufr/syno_multi.bufr','r') + ! Open source file + call codes_open_file(infile, '../../data/bufr/syno_multi.bufr', 'r') - ! Open target file - call codes_open_file(outfile,'bufr_clone_test_f.clone.bufr','w') + ! Open target file + call codes_open_file(outfile, 'bufr_clone_test_f.clone.bufr', 'w') - ! The first bufr message is loaded from file, - ! ibufr is the bufr id to be used in subsequent calls - call codes_bufr_new_from_file(infile,ibufr_in,iret) + ! The first bufr message is loaded from file, + ! ibufr is the bufr id to be used in subsequent calls + call codes_bufr_new_from_file(infile, ibufr_in, iret) - ! Create several clones of this message and alter them - ! in different ways - do i=1,3 + ! Create several clones of this message and alter them + ! in different ways + do i = 1, 3 - ! Clone the current handle - call codes_clone(ibufr_in, ibufr_out) + ! Clone the current handle + call codes_clone(ibufr_in, ibufr_out) - ! This is the place where you may wish to modify the clone - ! E.g. we change the bufrHeaderCentre - call codes_set(ibufr_out,'bufrHeaderCentre',222) + ! This is the place where you may wish to modify the clone + ! E.g. we change the bufrHeaderCentre + call codes_set(ibufr_out, 'bufrHeaderCentre', 222) - ! Write cloned messages to a file - call codes_write(ibufr_out,outfile) + ! Write cloned messages to a file + call codes_write(ibufr_out, outfile) - ! Release the clone's handle - call codes_release(ibufr_out) - end do + ! Release the clone's handle + call codes_release(ibufr_out) + end do - ! Release the original handle - call codes_release(ibufr_in) + ! Release the original handle + call codes_release(ibufr_in) - call codes_close_file(infile) - call codes_close_file(outfile) + call codes_close_file(infile) + call codes_close_file(outfile) end program bufr_clone diff --git a/examples/F90/bufr_copy_data.f90 b/examples/F90/bufr_copy_data.f90 index e45e8fae8..66565fed4 100644 --- a/examples/F90/bufr_copy_data.f90 +++ b/examples/F90/bufr_copy_data.f90 @@ -15,72 +15,72 @@ ! program bufr_encode - use eccodes - implicit none - integer :: iret - integer :: outfile - integer :: ifile - integer :: ibufr - integer :: ibufrin - integer(kind=4), dimension(:), allocatable :: ivalues - integer, parameter :: max_strsize = 200 - character(len=max_strsize) :: infile_name - character(len=max_strsize) :: outfile_name + use eccodes + implicit none + integer :: iret + integer :: outfile + integer :: ifile + integer :: ibufr + integer :: ibufrin + integer(kind=4), dimension(:), allocatable :: ivalues + integer, parameter :: max_strsize = 200 + character(len=max_strsize) :: infile_name + character(len=max_strsize) :: outfile_name - call codes_bufr_new_from_samples(ibufr,'BUFR3',iret) - call getarg(1, infile_name) - call getarg(2, outfile_name) - call codes_open_file(ifile, infile_name, 'r') - call codes_bufr_new_from_file(ifile, ibufrin) + call codes_bufr_new_from_samples(ibufr, 'BUFR3', iret) + call getarg(1, infile_name) + call getarg(2, outfile_name) + call codes_open_file(ifile, infile_name, 'r') + call codes_bufr_new_from_file(ifile, ibufrin) - if (iret/=CODES_SUCCESS) then - print *,'ERROR creating BUFR from BUFR3' - stop 1 - endif - if(allocated(ivalues)) deallocate(ivalues) - allocate(ivalues(69)) - ivalues=(/ & - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, & - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, & - 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, & - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, & - 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, & - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, & - 1, 1, 1, 1, 1, 1, 1, 1, 0 /) - call codes_set(ibufr,'inputDataPresentIndicator',ivalues) - call codes_set(ibufr,'edition',3) - call codes_set(ibufr,'masterTableNumber',0) - call codes_set(ibufr,'bufrHeaderSubCentre',0) - call codes_set(ibufr,'bufrHeaderCentre',98) - call codes_set(ibufr,'updateSequenceNumber',1) - call codes_set(ibufr,'dataCategory',0) - call codes_set(ibufr,'dataSubCategory',140) - call codes_set(ibufr,'masterTablesVersionNumber',13) - call codes_set(ibufr,'localTablesVersionNumber',1) - call codes_set(ibufr,'typicalYearOfCentury',15) - call codes_set(ibufr,'typicalMonth',5) - call codes_set(ibufr,'typicalDay',4) - call codes_set(ibufr,'typicalHour',9) - call codes_set(ibufr,'typicalMinute',30) - call codes_set(ibufr,'numberOfSubsets',1) - call codes_set(ibufr,'observedData',1) - call codes_set(ibufr,'compressedData',0) - if(allocated(ivalues)) deallocate(ivalues) - allocate(ivalues(43)) - ivalues=(/ & - 307011,7006,10004,222000,101023,31031,1031,1032,101023,33007, & - 225000,236000,101023,31031,1031,1032,8024,101001,225255,225000, & - 236000,101023,31031,1031,1032,8024,101001,225255, & - 1063,2001,4001,4002,4003,4004,4005,5002, & - 6002,7001,7006,11001,11016,11017,11002 /) - call codes_set(ibufr,'unexpandedDescriptors',ivalues) + if (iret /= CODES_SUCCESS) then + print *, 'ERROR creating BUFR from BUFR3' + stop 1 + end if + if (allocated(ivalues)) deallocate (ivalues) + allocate (ivalues(69)) + ivalues = (/ & + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, & + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, & + 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, & + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, & + 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, & + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, & + 1, 1, 1, 1, 1, 1, 1, 1, 0/) + call codes_set(ibufr, 'inputDataPresentIndicator', ivalues) + call codes_set(ibufr, 'edition', 3) + call codes_set(ibufr, 'masterTableNumber', 0) + call codes_set(ibufr, 'bufrHeaderSubCentre', 0) + call codes_set(ibufr, 'bufrHeaderCentre', 98) + call codes_set(ibufr, 'updateSequenceNumber', 1) + call codes_set(ibufr, 'dataCategory', 0) + call codes_set(ibufr, 'dataSubCategory', 140) + call codes_set(ibufr, 'masterTablesVersionNumber', 13) + call codes_set(ibufr, 'localTablesVersionNumber', 1) + call codes_set(ibufr, 'typicalYearOfCentury', 15) + call codes_set(ibufr, 'typicalMonth', 5) + call codes_set(ibufr, 'typicalDay', 4) + call codes_set(ibufr, 'typicalHour', 9) + call codes_set(ibufr, 'typicalMinute', 30) + call codes_set(ibufr, 'numberOfSubsets', 1) + call codes_set(ibufr, 'observedData', 1) + call codes_set(ibufr, 'compressedData', 0) + if (allocated(ivalues)) deallocate (ivalues) + allocate (ivalues(43)) + ivalues = (/ & + 307011, 7006, 10004, 222000, 101023, 31031, 1031, 1032, 101023, 33007, & + 225000, 236000, 101023, 31031, 1031, 1032, 8024, 101001, 225255, 225000, & + 236000, 101023, 31031, 1031, 1032, 8024, 101001, 225255, & + 1063, 2001, 4001, 4002, 4003, 4004, 4005, 5002, & + 6002, 7001, 7006, 11001, 11016, 11017, 11002/) + call codes_set(ibufr, 'unexpandedDescriptors', ivalues) - call codes_set(ibufrin,'unpack',1) + call codes_set(ibufrin, 'unpack', 1) - call codes_bufr_copy_data(ibufrin, ibufr) + call codes_bufr_copy_data(ibufrin, ibufr) - call codes_open_file(outfile,outfile_name,'w') - call codes_write(ibufr,outfile) - call codes_close_file(outfile) - call codes_release(ibufr) + call codes_open_file(outfile, outfile_name, 'w') + call codes_write(ibufr, outfile) + call codes_close_file(outfile) + call codes_release(ibufr) end program bufr_encode diff --git a/examples/F90/bufr_copy_keys.f90 b/examples/F90/bufr_copy_keys.f90 index 119b08505..bbb679045 100644 --- a/examples/F90/bufr_copy_keys.f90 +++ b/examples/F90/bufr_copy_keys.f90 @@ -9,26 +9,26 @@ ! Description: how to copy a BUFR key from a message to another. ! program bufr_copy_keys - use eccodes - implicit none - integer :: file1, file2, file3 - integer :: ibufr1,ibufr2,ibufr3 + use eccodes + implicit none + integer :: file1, file2, file3 + integer :: ibufr1, ibufr2, ibufr3 - call codes_open_file(file1, '../../data/bufr/PraticaTemp.bufr', 'r') - call codes_open_file(file2, '../../data/bufr/aaen_55.bufr', 'r') - call codes_open_file(file3, 'out.bufr_copy_keys_test_f.bufr', 'w') + call codes_open_file(file1, '../../data/bufr/PraticaTemp.bufr', 'r') + call codes_open_file(file2, '../../data/bufr/aaen_55.bufr', 'r') + call codes_open_file(file3, 'out.bufr_copy_keys_test_f.bufr', 'w') - call codes_bufr_new_from_file(file1, ibufr1) - call codes_bufr_new_from_file(file2, ibufr2) + call codes_bufr_new_from_file(file1, ibufr1) + call codes_bufr_new_from_file(file2, ibufr2) - call codes_clone(ibufr2, ibufr3) + call codes_clone(ibufr2, ibufr3) - call codes_copy_key(ibufr1, 'bufrHeaderCentre', ibufr3) + call codes_copy_key(ibufr1, 'bufrHeaderCentre', ibufr3) - call codes_write(ibufr3, file3) + call codes_write(ibufr3, file3) - call codes_close_file(file1) - call codes_close_file(file2) - call codes_close_file(file3) + call codes_close_file(file1) + call codes_close_file(file2) + call codes_close_file(file3) end program bufr_copy_keys diff --git a/examples/F90/bufr_copy_message.f90 b/examples/F90/bufr_copy_message.f90 index 4c49fc50f..9c058aa60 100644 --- a/examples/F90/bufr_copy_message.f90 +++ b/examples/F90/bufr_copy_message.f90 @@ -11,43 +11,43 @@ ! ! program copy - use eccodes - implicit none - integer :: err, sub_centre - integer(kind=kindOfSize) :: byte_size - integer :: infile,outfile - integer :: ibufr_in - integer :: ibufr_out - character(len=1), dimension(:), allocatable :: message - character(len=32) :: product_kind + use eccodes + implicit none + integer :: err, sub_centre + integer(kind=kindOfSize) :: byte_size + integer :: infile, outfile + integer :: ibufr_in + integer :: ibufr_out + character(len=1), dimension(:), allocatable :: message + character(len=32) :: product_kind - call codes_open_file(infile,'../../data/bufr/syno_1.bufr', 'r') - call codes_open_file(outfile,'out.copy.bufr', 'w') + call codes_open_file(infile, '../../data/bufr/syno_1.bufr', 'r') + call codes_open_file(outfile, 'out.copy.bufr', 'w') - ! A new BUFR message is loaded from file, - ! ibufr_in is the BUFR id to be used in subsequent calls - call codes_bufr_new_from_file(infile, ibufr_in) + ! A new BUFR message is loaded from file, + ! ibufr_in is the BUFR id to be used in subsequent calls + call codes_bufr_new_from_file(infile, ibufr_in) - call codes_get_message_size(ibufr_in, byte_size) - allocate(message(byte_size), stat=err) + call codes_get_message_size(ibufr_in, byte_size) + allocate (message(byte_size), stat=err) - call codes_copy_message(ibufr_in, message) + call codes_copy_message(ibufr_in, message) - call codes_new_from_message(ibufr_out, message) + call codes_new_from_message(ibufr_out, message) - call codes_get(ibufr_out, 'kindOfProduct', product_kind) - write(*,*) 'kindOfProduct=',product_kind + call codes_get(ibufr_out, 'kindOfProduct', product_kind) + write (*, *) 'kindOfProduct=', product_kind - sub_centre=80 - call codes_set(ibufr_out,'bufrHeaderSubCentre', sub_centre) + sub_centre = 80 + call codes_set(ibufr_out, 'bufrHeaderSubCentre', sub_centre) - ! Write message to a file - call codes_write(ibufr_out, outfile) + ! Write message to a file + call codes_write(ibufr_out, outfile) - call codes_release(ibufr_out) - call codes_release(ibufr_in) - call codes_close_file(infile) - call codes_close_file(outfile) - deallocate(message) + call codes_release(ibufr_out) + call codes_release(ibufr_in) + call codes_close_file(infile) + call codes_close_file(outfile) + deallocate (message) end program copy diff --git a/examples/F90/bufr_expanded.f90 b/examples/F90/bufr_expanded.f90 index 8176b20b4..5bc4c0177 100644 --- a/examples/F90/bufr_expanded.f90 +++ b/examples/F90/bufr_expanded.f90 @@ -13,53 +13,52 @@ ! ! program bufr_expanded -use eccodes -implicit none -integer :: ifile -integer :: iret -integer :: ibufr -integer :: i -integer :: count=0 -integer(kind=4) :: numberOfValues -real(kind=8), dimension(:), allocatable :: values + use eccodes + implicit none + integer :: ifile + integer :: iret + integer :: ibufr + integer :: i + integer :: count = 0 + integer(kind=4) :: numberOfValues + real(kind=8), dimension(:), allocatable :: values - call codes_open_file(ifile,'../../data/bufr/syno_1.bufr','r') + call codes_open_file(ifile, '../../data/bufr/syno_1.bufr', 'r') - ! The first bufr message is loaded from file, - ! ibufr is the bufr id to be used in subsequent calls - call codes_bufr_new_from_file(ifile,ibufr,iret) + ! The first bufr message is loaded from file, + ! ibufr is the bufr id to be used in subsequent calls + call codes_bufr_new_from_file(ifile, ibufr, iret) - do while (iret/=CODES_END_OF_FILE) + do while (iret /= CODES_END_OF_FILE) - write(*,*) 'message: ',count + write (*, *) 'message: ', count - ! We need to instruct ecCodes to expand all the descriptors - ! i.e. unpack the data values - call codes_set(ibufr,"unpack",1); + ! We need to instruct ecCodes to expand all the descriptors + ! i.e. unpack the data values + call codes_set(ibufr, "unpack", 1); + ! Get the expanded data values + call codes_get(ibufr, 'numericValues', values) - ! Get the expanded data values - call codes_get(ibufr,'numericValues',values) + numberOfValues = size(values) - numberOfValues=size(values) + do i = 1, numberOfValues + write (*, *) ' ', i, values(i) + end do - do i=1,numberOfValues - write(*,*) ' ',i,values(i) - enddo + ! Release the bufr message + call codes_release(ibufr) - ! Release the bufr message - call codes_release(ibufr) + ! Load the next bufr message + call codes_bufr_new_from_file(ifile, ibufr, iret) - ! Load the next bufr message - call codes_bufr_new_from_file(ifile,ibufr,iret) + ! Free array + deallocate (values) - ! Free array - deallocate(values) + count = count + 1 - count=count+1 + end do - end do - - ! Close file - call codes_close_file(ifile) + ! Close file + call codes_close_file(ifile) end program bufr_expanded diff --git a/examples/F90/bufr_get_keys.f90 b/examples/F90/bufr_get_keys.f90 index a391c3fd0..14b5d8406 100644 --- a/examples/F90/bufr_get_keys.f90 +++ b/examples/F90/bufr_get_keys.f90 @@ -13,86 +13,85 @@ ! ! program bufr_get_keys -use eccodes -implicit none -integer :: ifile -integer :: iret -integer :: ibufr -integer :: i, count=0 -integer(kind=4) :: blockNumber,stationNumber -real(kind=8) :: t2m -integer(kind=4), dimension(:), allocatable :: descriptors -real(kind=8), dimension(:), allocatable :: values -character(len=9) :: typicalDate + use eccodes + implicit none + integer :: ifile + integer :: iret + integer :: ibufr + integer :: i, count = 0 + integer(kind=4) :: blockNumber, stationNumber + real(kind=8) :: t2m + integer(kind=4), dimension(:), allocatable :: descriptors + real(kind=8), dimension(:), allocatable :: values + character(len=9) :: typicalDate - call codes_open_file(ifile,'../../data/bufr/syno_multi.bufr','r') + call codes_open_file(ifile, '../../data/bufr/syno_multi.bufr', 'r') - ! The first bufr message is loaded from file, - ! ibufr is the bufr id to be used in subsequent calls - call codes_bufr_new_from_file(ifile,ibufr,iret) + ! The first bufr message is loaded from file, + ! ibufr is the bufr id to be used in subsequent calls + call codes_bufr_new_from_file(ifile, ibufr, iret) - do while (iret/=CODES_END_OF_FILE) + do while (iret /= CODES_END_OF_FILE) - ! Get and print some keys form the BUFR header - write(*,*) 'message: ',count + ! Get and print some keys form the BUFR header + write (*, *) 'message: ', count - ! We need to instruct ecCodes to expand all the descriptors - ! i.e. unpack the data values - call codes_set(ibufr,"unpack",1); + ! We need to instruct ecCodes to expand all the descriptors + ! i.e. unpack the data values + call codes_set(ibufr, "unpack", 1); + ! Get as character + call codes_get(ibufr, 'typicalDate', typicalDate) + write (*, *) ' typicalDate:', typicalDate - ! Get as character - call codes_get(ibufr,'typicalDate',typicalDate) - write(*,*) ' typicalDate:',typicalDate + ! Get as integer + call codes_get(ibufr, 'blockNumber', blockNumber); + write (*, *) ' blockNumber:', blockNumber - ! Get as integer - call codes_get(ibufr,'blockNumber',blockNumber); - write(*,*) ' blockNumber:',blockNumber + ! Get as integer + call codes_get(ibufr, 'stationNumber', stationNumber); + write (*, *) ' stationNumber:', stationNumber - ! Get as integer - call codes_get(ibufr,'stationNumber',stationNumber); - write(*,*) ' stationNumber:',stationNumber + ! get as real + call codes_get(ibufr, 'airTemperatureAt2M', t2m); + write (*, *) ' airTemperatureAt2M:', t2m - ! get as real - call codes_get(ibufr,'airTemperatureAt2M',t2m); - write(*,*) ' airTemperatureAt2M:',t2m + ! ---- array of integer ---------------- - ! ---- array of integer ---------------- + ! get the expanded descriptors + call codes_get(ibufr, 'bufrdcExpandedDescriptors', descriptors) - ! get the expanded descriptors - call codes_get(ibufr,'bufrdcExpandedDescriptors',descriptors) + do i = 1, size(descriptors) + write (*, *) ' ', i, descriptors(i) + end do - do i=1,size(descriptors) - write(*,*) ' ',i,descriptors(i) - enddo + ! ---- array of real ---------------- - ! ---- array of real ---------------- + ! Get the expanded data values + call codes_get(ibufr, 'numericValues', values) - ! Get the expanded data values - call codes_get(ibufr,'numericValues',values) + do i = 1, size(values) + write (*, *) ' ', i, values(i) + end do - do i=1,size(values) - write(*,*) ' ',i,values(i) - enddo + ! Get as character + call codes_get(ibufr, 'typicalDate', typicalDate) + write (*, *) ' typicalDate:', typicalDate - ! Get as character - call codes_get(ibufr,'typicalDate',typicalDate) - write(*,*) ' typicalDate:',typicalDate + ! Free arrays + deallocate (values) + deallocate (descriptors) - ! Free arrays - deallocate(values) - deallocate(descriptors) + ! Release the bufr message + call codes_release(ibufr) - ! Release the bufr message - call codes_release(ibufr) + ! Load the next bufr message + call codes_bufr_new_from_file(ifile, ibufr, iret) - ! Load the next bufr message - call codes_bufr_new_from_file(ifile,ibufr,iret) + count = count + 1 - count=count+1 + end do - end do - - ! Close file - call codes_close_file(ifile) + ! Close file + call codes_close_file(ifile) end program bufr_get_keys diff --git a/examples/F90/bufr_get_string_array.f90 b/examples/F90/bufr_get_string_array.f90 index b5ce5549a..ff5995ade 100644 --- a/examples/F90/bufr_get_string_array.f90 +++ b/examples/F90/bufr_get_string_array.f90 @@ -12,53 +12,53 @@ ! Description: how to get an array of strings from a BUFR message. program bufr_get_string_array - use eccodes - implicit none - integer :: ifile - integer :: iret,i,n - integer :: ibufr - integer :: strsize - integer, parameter :: max_strsize = 20 - character(len=max_strsize) , dimension(:),allocatable :: stationOrSiteName + use eccodes + implicit none + integer :: ifile + integer :: iret, i, n + integer :: ibufr + integer :: strsize + integer, parameter :: max_strsize = 20 + character(len=max_strsize), dimension(:), allocatable :: stationOrSiteName - call codes_open_file(ifile,'../../data/bufr/pgps_110.bufr','r') + call codes_open_file(ifile, '../../data/bufr/pgps_110.bufr', 'r') - call codes_bufr_new_from_file(ifile,ibufr,iret) + call codes_bufr_new_from_file(ifile, ibufr, iret) - ! Unpack the data values - call codes_set(ibufr,'unpack',1) + ! Unpack the data values + call codes_set(ibufr, 'unpack', 1) - ! Get the width of the strings which is the same for all of them - call codes_get(ibufr,'stationOrSiteName->width',strsize) + ! Get the width of the strings which is the same for all of them + call codes_get(ibufr, 'stationOrSiteName->width', strsize) - ! The width is given in bits - strsize=strsize/8 + ! The width is given in bits + strsize = strsize/8 - ! max_strsize has to be set to a value >= to the size of the strings that we are getting - ! back from the call to codes_get_string_array - if (strsize > max_strsize) then - print *,'stationOrSiteName array dimension is ',max_strsize,' and should be ',strsize - call exit(1) - end if + ! max_strsize has to be set to a value >= to the size of the strings that we are getting + ! back from the call to codes_get_string_array + if (strsize > max_strsize) then + print *, 'stationOrSiteName array dimension is ', max_strsize, ' and should be ', strsize + call exit(1) + end if - ! Allocating the array of strings to be passed to codes_get_string_array is mandatory - call codes_get_size(ibufr,'stationOrSiteName',n) - allocate(stationOrSiteName(n)) + ! Allocating the array of strings to be passed to codes_get_string_array is mandatory + call codes_get_size(ibufr, 'stationOrSiteName', n) + allocate (stationOrSiteName(n)) - ! Passing an array of strings stationOrSiteName which must be allocated beforehand - call codes_get_string_array(ibufr,'stationOrSiteName',stationOrSiteName) - do i=1,n - write(*,'(A)')trim(stationOrSiteName(i)) - end do + ! Passing an array of strings stationOrSiteName which must be allocated beforehand + call codes_get_string_array(ibufr, 'stationOrSiteName', stationOrSiteName) + do i = 1, n + write (*, '(A)') trim(stationOrSiteName(i)) + end do - ! Remember to deallocate - deallocate(stationOrSiteName) + ! Remember to deallocate + deallocate (stationOrSiteName) - ! Release memory associated with bufr handle - ! ibufr won't be accessible after this - call codes_release(ibufr) + ! Release memory associated with bufr handle + ! ibufr won't be accessible after this + call codes_release(ibufr) - ! Close file - call codes_close_file(ifile) + ! Close file + call codes_close_file(ifile) end program bufr_get_string_array diff --git a/examples/F90/bufr_keys_iterator.f90 b/examples/F90/bufr_keys_iterator.f90 index 94d98ee3b..888c986fd 100644 --- a/examples/F90/bufr_keys_iterator.f90 +++ b/examples/F90/bufr_keys_iterator.f90 @@ -15,65 +15,64 @@ ! keys in a BUFR message. ! program bufr_keys_iterator -use eccodes -implicit none -integer :: ifile -integer :: iret -integer :: ibufr -integer :: count=0 -character(len=256) :: key -integer :: kiter + use eccodes + implicit none + integer :: ifile + integer :: iret + integer :: ibufr + integer :: count = 0 + character(len=256) :: key + integer :: kiter - call codes_open_file(ifile,'../../data/bufr/syno_1.bufr','r') + call codes_open_file(ifile, '../../data/bufr/syno_1.bufr', 'r') - ! The first bufr message is loaded from file, - ! ibufr is the bufr id to be used in subsequent calls - call codes_bufr_new_from_file(ifile,ibufr,iret) + ! The first bufr message is loaded from file, + ! ibufr is the bufr id to be used in subsequent calls + call codes_bufr_new_from_file(ifile, ibufr, iret) - do while (iret /= CODES_END_OF_FILE) + do while (iret /= CODES_END_OF_FILE) - ! Get and print some keys form the BUFR header - write(*,*) 'message: ',count + ! Get and print some keys form the BUFR header + write (*, *) 'message: ', count - ! We need to instruct ecCodes to expand all the descriptors - ! i.e. unpack the data values - call codes_set(ibufr,"unpack",1); + ! We need to instruct ecCodes to expand all the descriptors + ! i.e. unpack the data values + call codes_set(ibufr, "unpack", 1); + ! Create BUFR keys iterator + call codes_bufr_keys_iterator_new(ibufr, kiter, iret) - ! Create BUFR keys iterator - call codes_bufr_keys_iterator_new(ibufr,kiter,iret) + if (iret .ne. 0) then + write (*, *) 'ERROR: Unable to create BUFR keys iterator' + call exit(1) + end if - if (iret .ne. 0) then - write(*,*) 'ERROR: Unable to create BUFR keys iterator' - call exit(1) - end if + ! Get first key + call codes_bufr_keys_iterator_next(kiter, iret) - ! Get first key - call codes_bufr_keys_iterator_next(kiter, iret) + ! Loop over keys + do while (iret == CODES_SUCCESS) + ! Print key name + call codes_bufr_keys_iterator_get_name(kiter, key) + write (*, *) ' ', trim(key) - ! Loop over keys - do while (iret == CODES_SUCCESS) - ! Print key name - call codes_bufr_keys_iterator_get_name(kiter,key) - write(*,*) ' ',trim(key) + ! Get next key + call codes_bufr_keys_iterator_next(kiter, iret) + end do - ! Get next key - call codes_bufr_keys_iterator_next(kiter, iret) - end do + ! Delete key iterator + call codes_bufr_keys_iterator_delete(kiter) - ! Delete key iterator - call codes_bufr_keys_iterator_delete(kiter) + ! Release the bufr message + call codes_release(ibufr) - ! Release the bufr message - call codes_release(ibufr) + ! Load the next bufr message + call codes_bufr_new_from_file(ifile, ibufr, iret) - ! Load the next bufr message - call codes_bufr_new_from_file(ifile,ibufr,iret) + count = count + 1 - count=count+1 + end do - end do - - ! Close file - call codes_close_file(ifile) + ! Close file + call codes_close_file(ifile) end program bufr_keys_iterator diff --git a/examples/F90/bufr_read_header.f90 b/examples/F90/bufr_read_header.f90 index f9bcbf0b6..de5d7df08 100644 --- a/examples/F90/bufr_read_header.f90 +++ b/examples/F90/bufr_read_header.f90 @@ -13,63 +13,63 @@ ! ! program bufr_read_header -use eccodes -implicit none -integer :: ifile -integer :: iret -integer :: ibufr -integer :: count=0 -integer(kind=4) :: dataCategory,dataSubCategory,typicalDate -integer(kind=4) :: centre,subcentre -integer(kind=4) :: masterversion,localversion -integer(kind=4) :: numberOfSubsets + use eccodes + implicit none + integer :: ifile + integer :: iret + integer :: ibufr + integer :: count = 0 + integer(kind=4) :: dataCategory, dataSubCategory, typicalDate + integer(kind=4) :: centre, subcentre + integer(kind=4) :: masterversion, localversion + integer(kind=4) :: numberOfSubsets - call codes_open_file(ifile,'../../data/bufr/syno_multi.bufr','r') + call codes_open_file(ifile, '../../data/bufr/syno_multi.bufr', 'r') - ! The first bufr message is loaded from file, - ! ibufr is the bufr id to be used in subsequent calls - call codes_bufr_new_from_file(ifile,ibufr,iret) + ! The first bufr message is loaded from file, + ! ibufr is the bufr id to be used in subsequent calls + call codes_bufr_new_from_file(ifile, ibufr, iret) - do while (iret/=CODES_END_OF_FILE) + do while (iret /= CODES_END_OF_FILE) - ! Get and print some keys form the BUFR header - write(*,*) 'message: ',count + ! Get and print some keys form the BUFR header + write (*, *) 'message: ', count - call codes_get(ibufr,'dataCategory',dataCategory); - write(*,*) ' dataCategory:',dataCategory + call codes_get(ibufr, 'dataCategory', dataCategory); + write (*, *) ' dataCategory:', dataCategory - call codes_get(ibufr,'dataSubCategory',dataSubCategory); - write(*,*) ' dataSubCategory:',dataSubCategory + call codes_get(ibufr, 'dataSubCategory', dataSubCategory); + write (*, *) ' dataSubCategory:', dataSubCategory - call codes_get(ibufr,'typicalDate',typicalDate); - write(*,*) ' typicalDate:',typicalDate + call codes_get(ibufr, 'typicalDate', typicalDate); + write (*, *) ' typicalDate:', typicalDate - call codes_get(ibufr,'bufrHeaderCentre',centre); - write(*,*) ' bufrHeaderCentre:',centre + call codes_get(ibufr, 'bufrHeaderCentre', centre); + write (*, *) ' bufrHeaderCentre:', centre - call codes_get(ibufr,'bufrHeaderSubCentre',subcentre) - write(*,*) ' bufrHeaderSubCentre:',subcentre + call codes_get(ibufr, 'bufrHeaderSubCentre', subcentre) + write (*, *) ' bufrHeaderSubCentre:', subcentre - call codes_get(ibufr,'masterTablesVersionNumber',masterversion) - write(*,*) ' masterTablesVersionNumber:',masterversion + call codes_get(ibufr, 'masterTablesVersionNumber', masterversion) + write (*, *) ' masterTablesVersionNumber:', masterversion - call codes_get(ibufr,'localTablesVersionNumber',localversion) - write(*,*) ' localTablesVersionNumber:',localversion + call codes_get(ibufr, 'localTablesVersionNumber', localversion) + write (*, *) ' localTablesVersionNumber:', localversion - call codes_get(ibufr,'numberOfSubsets',numberOfSubsets) - write(*,*) ' numberOfSubsets:',numberOfSubsets + call codes_get(ibufr, 'numberOfSubsets', numberOfSubsets) + write (*, *) ' numberOfSubsets:', numberOfSubsets - ! Release the bufr message - call codes_release(ibufr) + ! Release the bufr message + call codes_release(ibufr) - ! Load the next bufr message - call codes_bufr_new_from_file(ifile,ibufr,iret) + ! Load the next bufr message + call codes_bufr_new_from_file(ifile, ibufr, iret) - count=count+1 + count = count + 1 - end do + end do - ! Close file - call codes_close_file(ifile) + ! Close file + call codes_close_file(ifile) end program bufr_read_header diff --git a/examples/F90/bufr_read_scatterometer.f90 b/examples/F90/bufr_read_scatterometer.f90 index 7b27b5be2..c3c314658 100644 --- a/examples/F90/bufr_read_scatterometer.f90 +++ b/examples/F90/bufr_read_scatterometer.f90 @@ -15,90 +15,85 @@ ! below might not work directly for other types of messages than the one used in the ! example. It is advised to use bufr_dump first to understand the structure of these messages. - program bufr_read_scatterometer -use eccodes -implicit none -integer :: ifile -integer :: iret -integer :: ibufr -integer :: i, count=0 -integer(kind=4) :: numObs,ii -real(kind=8), dimension(:), allocatable :: latVal,lonVal,bscatterVal -real(kind=8), dimension(:), allocatable :: year + use eccodes + implicit none + integer :: ifile + integer :: iret + integer :: ibufr + integer :: i, count = 0 + integer(kind=4) :: numObs, ii + real(kind=8), dimension(:), allocatable :: latVal, lonVal, bscatterVal + real(kind=8), dimension(:), allocatable :: year - call codes_open_file(ifile,'../../data/bufr/asca_139.bufr','r') + call codes_open_file(ifile, '../../data/bufr/asca_139.bufr', 'r') - ! The first BUFR message is loaded from file, - ! ibufr is the bufr id to be used in subsequent calls - call codes_bufr_new_from_file(ifile,ibufr,iret) + ! The first BUFR message is loaded from file, + ! ibufr is the bufr id to be used in subsequent calls + call codes_bufr_new_from_file(ifile, ibufr, iret) - do while (iret/=CODES_END_OF_FILE) + do while (iret /= CODES_END_OF_FILE) - write(*,'(A,I3)') 'message: ',count + write (*, '(A,I3)') 'message: ', count - ! We need to instruct ecCodes to expand all the descriptors - ! i.e. unpack the data values - call codes_set(ibufr,"unpack",1); + ! We need to instruct ecCodes to expand all the descriptors + ! i.e. unpack the data values + call codes_set(ibufr, "unpack", 1); + ! The BUFR file contains a single message with 2016 subsets in a compressed form. + ! It means each subset has exactly the same structure: they store one location with + ! several beams and one backscatter value in each beam. + ! + ! To print the backScatter values for beamIdentifier=2 from all the subsets + ! we will simply access the key by condition (see below). - ! The BUFR file contains a single message with 2016 subsets in a compressed form. - ! It means each subset has exactly the same structure: they store one location with - ! several beams and one backscatter value in each beam. - ! - ! To print the backScatter values for beamIdentifier=2 from all the subsets - ! we will simply access the key by condition (see below). + ! Read the total number of subsets. + call codes_get(ibufr, 'numberOfSubsets', numObs) - ! Read the total number of subsets. - call codes_get(ibufr,'numberOfSubsets',numObs) + write (*, '(A,I5)') "Number of values:", numObs - write(*,'(A,I5)') "Number of values:",numObs + ! Get latitude (for all the subsets) + call codes_get(ibufr, 'latitude', latVal); + ! Get longitude (for all the subsets) + call codes_get(ibufr, 'longitude', lonVal); + allocate (year(numObs)) + call codes_get(ibufr, 'year', year); + do ii = 1, size(year) + write (*, '(A,I4,A,F8.1)') 'year(', ii, ')=', year(ii) + end do - ! Get latitude (for all the subsets) - call codes_get(ibufr,'latitude',latVal); + ! Get backScatter for beam two. We use an access by condition for this key. + ! (for all the subsets) + call codes_get(ibufr, '/beamIdentifier=2/backscatter', bscatterVal); + ! Check that all arrays are same size + if (size(latVal) /= numObs .or. size(lonVal) /= numObs .or. size(bscatterVal) /= numObs) then + print *, 'inconsistent array dimension' + exit + end if - ! Get longitude (for all the subsets) - call codes_get(ibufr,'longitude',lonVal); + ! Print the values + write (*, *) 'pixel lat lon backscatter' + write (*, *) "--------------------------------------" - allocate(year(numObs)) - call codes_get(ibufr,'year',year); - do ii= 1, size(year) - write(*,'(A,I4,A,F8.1)') 'year(',ii,')=',year(ii) - enddo + do i = 1, numObs + write (*, '(I4,3F10.5)') i, latVal(i), lonVal(i), bscatterVal(i) + end do - ! Get backScatter for beam two. We use an access by condition for this key. - ! (for all the subsets) - call codes_get(ibufr,'/beamIdentifier=2/backscatter',bscatterVal); + ! Free arrays + deallocate (latVal) + deallocate (lonVal) + deallocate (bscatterVal) - ! Check that all arrays are same size - if (size(latVal)/= numObs .or. size(lonVal)/= numObs .or. size(bscatterVal)/= numObs) then - print *,'inconsistent array dimension' - exit - endif + ! Release the bufr message + call codes_release(ibufr) - ! Print the values - write(*,*) 'pixel lat lon backscatter' - write(*,*) "--------------------------------------" + ! Load the next bufr message + call codes_bufr_new_from_file(ifile, ibufr, iret) - do i=1,numObs - write(*,'(I4,3F10.5)') i,latVal(i),lonVal(i),bscatterVal(i) - end do + count = count + 1 - ! Free arrays - deallocate(latVal) - deallocate(lonVal) - deallocate(bscatterVal) + end do - ! Release the bufr message - call codes_release(ibufr) - - ! Load the next bufr message - call codes_bufr_new_from_file(ifile,ibufr,iret) - - count=count+1 - - end do - - ! Close file - call codes_close_file(ifile) + ! Close file + call codes_close_file(ifile) end program bufr_read_scatterometer diff --git a/examples/F90/bufr_read_synop.f90 b/examples/F90/bufr_read_synop.f90 index 5932c7faa..b88a8eabe 100644 --- a/examples/F90/bufr_read_synop.f90 +++ b/examples/F90/bufr_read_synop.f90 @@ -18,102 +18,102 @@ ! ! program bufr_read_synop -use eccodes -implicit none -integer :: ifile -integer :: iret -integer :: ibufr -integer :: count=0 -integer(kind=4) :: blockNumber,stationNumber -real(kind=8) :: lat,t2m,td2m,ws,wdir -integer(kind=4) :: cloudAmount,cloudBaseHeight,lowCloud,midCloud,highCloud + use eccodes + implicit none + integer :: ifile + integer :: iret + integer :: ibufr + integer :: count = 0 + integer(kind=4) :: blockNumber, stationNumber + real(kind=8) :: lat, t2m, td2m, ws, wdir + integer(kind=4) :: cloudAmount, cloudBaseHeight, lowCloud, midCloud, highCloud - call codes_open_file(ifile,'../../data/bufr/syno_multi.bufr','r') + call codes_open_file(ifile, '../../data/bufr/syno_multi.bufr', 'r') - ! The first bufr message is loaded from file, - ! ibufr is the bufr id to be used in subsequent calls - call codes_bufr_new_from_file(ifile,ibufr,iret) + ! The first bufr message is loaded from file, + ! ibufr is the bufr id to be used in subsequent calls + call codes_bufr_new_from_file(ifile, ibufr, iret) - do while (iret/=CODES_END_OF_FILE) + do while (iret /= CODES_END_OF_FILE) - write(*,*) 'message: ',count + write (*, *) 'message: ', count - ! We need to instruct ecCodes to expand all the descriptors - ! i.e. unpack the data values - call codes_set(ibufr,"unpack",1) + ! We need to instruct ecCodes to expand all the descriptors + ! i.e. unpack the data values + call codes_set(ibufr, "unpack", 1) - !read and print some data values. This example was written - ! for a SYNOP BUFR file! + !read and print some data values. This example was written + ! for a SYNOP BUFR file! - ! wmo block number - call codes_get(ibufr,'blockNumber',blockNumber) - write(*,*) ' blockNumber:',blockNumber + ! wmo block number + call codes_get(ibufr, 'blockNumber', blockNumber) + write (*, *) ' blockNumber:', blockNumber - ! station number - call codes_get(ibufr,'stationNumber',stationNumber) - write(*,*) ' stationNumber:',stationNumber + ! station number + call codes_get(ibufr, 'stationNumber', stationNumber) + write (*, *) ' stationNumber:', stationNumber - ! location - call codes_get(ibufr,'latitude',lat) - write(*,*) ' latitude:',lat + ! location + call codes_get(ibufr, 'latitude', lat) + write (*, *) ' latitude:', lat - call codes_get(ibufr,'longitude',lat) - write(*,*) ' longitude:',lat + call codes_get(ibufr, 'longitude', lat) + write (*, *) ' longitude:', lat - ! 2m temperature - call codes_get(ibufr,'airTemperatureAt2M',t2m); - write(*,*) ' airTemperatureAt2M:',t2m + ! 2m temperature + call codes_get(ibufr, 'airTemperatureAt2M', t2m); + write (*, *) ' airTemperatureAt2M:', t2m - ! 2m dewpoint temperature - call codes_get(ibufr,'dewpointTemperatureAt2M',td2m); - write(*,*) ' dewpointTemperatureAt2M:',td2m + ! 2m dewpoint temperature + call codes_get(ibufr, 'dewpointTemperatureAt2M', td2m); + write (*, *) ' dewpointTemperatureAt2M:', td2m - ! 10m wind - call codes_get(ibufr,'windSpeedAt10M',ws); - write(*,*) ' windSpeedAt10M:',ws + ! 10m wind + call codes_get(ibufr, 'windSpeedAt10M', ws); + write (*, *) ' windSpeedAt10M:', ws - call codes_get(ibufr,'windDirectionAt10M',wdir); - write(*,*) ' windDirectionAt10M:',wdir + call codes_get(ibufr, 'windDirectionAt10M', wdir); + write (*, *) ' windDirectionAt10M:', wdir - ! The cloud information is stored in several blocks in the - ! SYNOP message and the same key means a different thing in different - ! parts of the message. In this example we will read the first - ! cloud block introduced by the key - ! verticalSignificanceSurfaceObservations=1. - ! We know that this is the first occurrence of the keys we want to - ! read so we will use the # (occurrence) operator accordingly. + ! The cloud information is stored in several blocks in the + ! SYNOP message and the same key means a different thing in different + ! parts of the message. In this example we will read the first + ! cloud block introduced by the key + ! verticalSignificanceSurfaceObservations=1. + ! We know that this is the first occurrence of the keys we want to + ! read so we will use the # (occurrence) operator accordingly. - ! Cloud amount (low and middleclouds) - call codes_get(ibufr,'#1#cloudAmount',cloudAmount) - write(*,*) ' cloudAmount (low and middle):',cloudAmount + ! Cloud amount (low and middleclouds) + call codes_get(ibufr, '#1#cloudAmount', cloudAmount) + write (*, *) ' cloudAmount (low and middle):', cloudAmount - ! Height of cloud base - call codes_get(ibufr,'#1#heightOfBaseOfCloud',cloudBaseHeight) - write(*,*) ' heightOfBaseOfCloud:',cloudBaseHeight + ! Height of cloud base + call codes_get(ibufr, '#1#heightOfBaseOfCloud', cloudBaseHeight) + write (*, *) ' heightOfBaseOfCloud:', cloudBaseHeight - ! Cloud type (low clouds) - call codes_get(ibufr,'#1#cloudType',lowCloud) - write(*,*) ' cloudType (low):',lowCloud + ! Cloud type (low clouds) + call codes_get(ibufr, '#1#cloudType', lowCloud) + write (*, *) ' cloudType (low):', lowCloud - ! Cloud type (middle clouds) - call codes_get(ibufr,'#2#cloudType',midCloud) - write(*,*) ' cloudType (middle):',midCloud + ! Cloud type (middle clouds) + call codes_get(ibufr, '#2#cloudType', midCloud) + write (*, *) ' cloudType (middle):', midCloud - ! Cloud type (high clouds) - call codes_get(ibufr,'#3#cloudType',highCloud) - write(*,*) ' cloudType (high):',highCloud + ! Cloud type (high clouds) + call codes_get(ibufr, '#3#cloudType', highCloud) + write (*, *) ' cloudType (high):', highCloud - ! Release the bufr message - call codes_release(ibufr) + ! Release the bufr message + call codes_release(ibufr) - ! Load the next bufr message - call codes_bufr_new_from_file(ifile,ibufr,iret) + ! Load the next bufr message + call codes_bufr_new_from_file(ifile, ibufr, iret) - count=count+1 + count = count + 1 - end do + end do - ! Close file - call codes_close_file(ifile) + ! Close file + call codes_close_file(ifile) end program bufr_read_synop diff --git a/examples/F90/bufr_read_temp.f90 b/examples/F90/bufr_read_temp.f90 index 1bd142741..cbbb77164 100644 --- a/examples/F90/bufr_read_temp.f90 +++ b/examples/F90/bufr_read_temp.f90 @@ -16,64 +16,64 @@ ! example. It is advised to use bufr_dump first to understand the structure of these messages. ! program bufr_read_temp - use eccodes - implicit none - integer :: ifile - integer :: iret - integer :: ibufr - integer :: i, count=0 - integer(kind=4),dimension(:), allocatable :: timePeriod,extendedVerticalSoundingSignificance - integer(kind=4) :: blockNumber,stationNumber - real(kind=8),dimension(:), allocatable :: pressure,airTemperature,dewpointTemperature - real(kind=8),dimension(:), allocatable :: geopotentialHeight,latitudeDisplacement,longitudeDisplacement - real(kind=8),dimension(:), allocatable :: windDirection,windSpeed + use eccodes + implicit none + integer :: ifile + integer :: iret + integer :: ibufr + integer :: i, count = 0 + integer(kind=4), dimension(:), allocatable :: timePeriod, extendedVerticalSoundingSignificance + integer(kind=4) :: blockNumber, stationNumber + real(kind=8), dimension(:), allocatable :: pressure, airTemperature, dewpointTemperature + real(kind=8), dimension(:), allocatable :: geopotentialHeight, latitudeDisplacement, longitudeDisplacement + real(kind=8), dimension(:), allocatable :: windDirection, windSpeed - call codes_open_file(ifile,'../../data/bufr/PraticaTemp.bufr','r') + call codes_open_file(ifile, '../../data/bufr/PraticaTemp.bufr', 'r') - ! The first bufr message is loaded from file, - ! ibufr is the bufr id to be used in subsequent calls - call codes_bufr_new_from_file(ifile,ibufr,iret) - do while (iret/=CODES_END_OF_FILE) - write(*,*) 'message: ',count - call codes_set(ibufr,'unpack',1) - call codes_get(ibufr,'timePeriod',timePeriod) - call codes_get(ibufr,'pressure',pressure) - call codes_get(ibufr,'extendedVerticalSoundingSignificance',extendedVerticalSoundingSignificance) - call codes_get(ibufr,'nonCoordinateGeopotentialHeight',geopotentialHeight) - call codes_get(ibufr,'latitudeDisplacement',latitudeDisplacement) - call codes_get(ibufr,'longitudeDisplacement',longitudeDisplacement) - call codes_get(ibufr,'airTemperature',airTemperature) - call codes_get(ibufr,'dewpointTemperature',dewpointTemperature) - call codes_get(ibufr,'windDirection',windDirection) - call codes_get(ibufr,'windSpeed',windSpeed) - call codes_get(ibufr,'blockNumber',blockNumber) - call codes_get(ibufr,'stationNumber',stationNumber) - print *,'station',blockNumber,stationNumber - print *,'timePeriod pressure geopotentialHeight latitudeDisplacement & - &longitudeDisplacement airTemperature windDirection windSpeed significance' - do i=1,size(windSpeed) - write(*,'(I5,6X,F9.1,2X,F9.2,10X,F8.2,14X,F8.2,16X,F8.2,6X,F8.2,4X,F8.2,4X,I0)') timePeriod(i),pressure(i),& - &geopotentialHeight(i),latitudeDisplacement(i),& - &longitudeDisplacement(i),airTemperature(i),windDirection(i),windSpeed(i),extendedVerticalSoundingSignificance(i) - enddo - ! Free arrays - deallocate(timePeriod) - deallocate(pressure) - deallocate(geopotentialHeight) - deallocate(latitudeDisplacement) - deallocate(longitudeDisplacement) - deallocate(airTemperature) - deallocate(dewpointTemperature) - deallocate(windDirection) - deallocate(windSpeed) - deallocate(extendedVerticalSoundingSignificance) - ! Release the bufr message - call codes_release(ibufr) - ! Load the next bufr message - call codes_bufr_new_from_file(ifile,ibufr,iret) - count=count+1 - end do - ! Close file - call codes_close_file(ifile) + ! The first bufr message is loaded from file, + ! ibufr is the bufr id to be used in subsequent calls + call codes_bufr_new_from_file(ifile, ibufr, iret) + do while (iret /= CODES_END_OF_FILE) + write (*, *) 'message: ', count + call codes_set(ibufr, 'unpack', 1) + call codes_get(ibufr, 'timePeriod', timePeriod) + call codes_get(ibufr, 'pressure', pressure) + call codes_get(ibufr, 'extendedVerticalSoundingSignificance', extendedVerticalSoundingSignificance) + call codes_get(ibufr, 'nonCoordinateGeopotentialHeight', geopotentialHeight) + call codes_get(ibufr, 'latitudeDisplacement', latitudeDisplacement) + call codes_get(ibufr, 'longitudeDisplacement', longitudeDisplacement) + call codes_get(ibufr, 'airTemperature', airTemperature) + call codes_get(ibufr, 'dewpointTemperature', dewpointTemperature) + call codes_get(ibufr, 'windDirection', windDirection) + call codes_get(ibufr, 'windSpeed', windSpeed) + call codes_get(ibufr, 'blockNumber', blockNumber) + call codes_get(ibufr, 'stationNumber', stationNumber) + print *, 'station', blockNumber, stationNumber + print *, 'timePeriod pressure geopotentialHeight latitudeDisplacement & + &longitudeDisplacement airTemperature windDirection windSpeed significance' + do i = 1, size(windSpeed) + write (*, '(I5,6X,F9.1,2X,F9.2,10X,F8.2,14X,F8.2,16X,F8.2,6X,F8.2,4X,F8.2,4X,I0)') timePeriod(i), pressure(i),& + &geopotentialHeight(i), latitudeDisplacement(i),& + &longitudeDisplacement(i), airTemperature(i), windDirection(i), windSpeed(i), extendedVerticalSoundingSignificance(i) + end do + ! Free arrays + deallocate (timePeriod) + deallocate (pressure) + deallocate (geopotentialHeight) + deallocate (latitudeDisplacement) + deallocate (longitudeDisplacement) + deallocate (airTemperature) + deallocate (dewpointTemperature) + deallocate (windDirection) + deallocate (windSpeed) + deallocate (extendedVerticalSoundingSignificance) + ! Release the bufr message + call codes_release(ibufr) + ! Load the next bufr message + call codes_bufr_new_from_file(ifile, ibufr, iret) + count = count + 1 + end do + ! Close file + call codes_close_file(ifile) end program bufr_read_temp diff --git a/examples/F90/bufr_read_tempf.f90 b/examples/F90/bufr_read_tempf.f90 index 8e464e768..5214cf7c2 100644 --- a/examples/F90/bufr_read_tempf.f90 +++ b/examples/F90/bufr_read_tempf.f90 @@ -18,161 +18,160 @@ ! example. It is advised to use bufr_dump first to understand the structure of these messages. ! program bufr_read_temp - use eccodes - implicit none - integer :: ifile - integer :: iret - integer :: ibufr - integer :: i, count=0 - integer :: iflag - integer :: status_id, status_ht, status_time=0, status_p - integer :: status_rsno, status_rssoft, statid_missing - integer(kind=4) :: sizews - integer(kind=4) :: blockNumber,stationNumber - integer(kind=4) :: ymd,hms - logical :: llstdonly = .True. ! Set True to list standard levels only - logical :: llskip - real(kind=8) :: year,month,day,hour,minute,second - real(kind=8) :: htg,htp,htec=0,sondeType - real(kind=8), dimension(:), allocatable :: lat,lon - real(kind=8), dimension(:), allocatable :: timeVal,dlatVal,dlonVal,vssVal - real(kind=8), dimension(:), allocatable :: presVal,zVal,tVal,tdVal,wdirVal,wspVal - character(len=128) :: statid - character(len=16) :: rsnumber - character(len=16) :: rssoftware - character(len=8) :: Note + use eccodes + implicit none + integer :: ifile + integer :: iret + integer :: ibufr + integer :: i, count = 0 + integer :: iflag + integer :: status_id, status_ht, status_time = 0, status_p + integer :: status_rsno, status_rssoft, statid_missing + integer(kind=4) :: sizews + integer(kind=4) :: blockNumber, stationNumber + integer(kind=4) :: ymd, hms + logical :: llstdonly = .True. ! Set True to list standard levels only + logical :: llskip + real(kind=8) :: year, month, day, hour, minute, second + real(kind=8) :: htg, htp, htec = 0, sondeType + real(kind=8), dimension(:), allocatable :: lat, lon + real(kind=8), dimension(:), allocatable :: timeVal, dlatVal, dlonVal, vssVal + real(kind=8), dimension(:), allocatable :: presVal, zVal, tVal, tdVal, wdirVal, wspVal + character(len=128) :: statid + character(len=16) :: rsnumber + character(len=16) :: rssoftware + character(len=8) :: Note - call codes_open_file(ifile,'../../data/bufr/PraticaTemp.bufr','r') + call codes_open_file(ifile, '../../data/bufr/PraticaTemp.bufr', 'r') - ! the first bufr message is loaded from file - ! ibufr is the bufr id to be used in subsequent calls - call codes_bufr_new_from_file(ifile,ibufr,iret) + ! the first bufr message is loaded from file + ! ibufr is the bufr id to be used in subsequent calls + call codes_bufr_new_from_file(ifile, ibufr, iret) - ! do while (iret/=CODES_END_OF_FILE) - do while (iret/=CODES_END_OF_FILE .AND. status_time==CODES_SUCCESS) + ! do while (iret/=CODES_END_OF_FILE) + do while (iret /= CODES_END_OF_FILE .AND. status_time == CODES_SUCCESS) - ! we need to instruct ecCodes to expand all the descriptors - ! i.e. unpack the data values - call codes_set(ibufr,"unpack",1); + ! we need to instruct ecCodes to expand all the descriptors + ! i.e. unpack the data values + call codes_set(ibufr, "unpack", 1); + ! In our BUFR message verticalSoundingSignificance is always followed by + ! geopotential, airTemperature, dewpointTemperature, + ! windDirection, windSpeed and pressure. + ! - ! In our BUFR message verticalSoundingSignificance is always followed by - ! geopotential, airTemperature, dewpointTemperature, - ! windDirection, windSpeed and pressure. - ! + count = count + 1 + llskip = .False. - count=count+1 - llskip=.False. + ! Metadata: + call codes_get(ibufr, 'shipOrMobileLandStationIdentifier', statid, status_id) + IF (status_id /= CODES_SUCCESS) statid = "UNKNOWN" + call codes_is_missing(ibufr, 'shipOrMobileLandStationIdentifier', statid_missing) + IF (statid_missing == 1) statid = "MISSING" + call codes_get(ibufr, 'blockNumber', blockNumber) + call codes_get(ibufr, 'stationNumber', stationNumber) + call codes_get(ibufr, 'year', year) + call codes_get(ibufr, 'month', month) + call codes_get(ibufr, 'day', day) + call codes_get(ibufr, 'hour', hour) + call codes_get(ibufr, 'minute', minute) + call codes_get(ibufr, 'second', second, status_time) + IF (status_time /= CODES_SUCCESS) second = 0.0 + call codes_get(ibufr, 'latitude', lat) + call codes_get(ibufr, 'longitude', lon) + call codes_get(ibufr, 'heightOfStationGroundAboveMeanSeaLevel', htg, status_ht) + IF (status_ht /= CODES_SUCCESS) htg = -999.0 + call codes_get(ibufr, 'heightOfBarometerAboveMeanSeaLevel', htp, status_ht) + IF (status_ht /= CODES_SUCCESS) htp = -999.0 + call codes_get(ibufr, 'radiosondeType', sondeType) + call codes_get(ibufr, 'heightOfStation', htec, status_ht) ! Height from WMO list (BUFR) + IF (status_ht == CODES_SUCCESS .AND. htg == -999.0) htg = htec + ymd = INT(year)*10000 + INT(month)*100 + INT(day) + hms = INT(hour)*10000 + INT(minute)*100 + INT(second) + call codes_get(ibufr, 'radiosondeSerialNumber', rsnumber, status_rsno) + call codes_get(ibufr, 'softwareVersionNumber', rssoftware, status_rssoft) - ! Metadata: - call codes_get(ibufr,'shipOrMobileLandStationIdentifier',statid,status_id) - IF (status_id /= CODES_SUCCESS) statid = "UNKNOWN" - call codes_is_missing(ibufr,'shipOrMobileLandStationIdentifier',statid_missing) - IF (statid_missing == 1) statid = "MISSING" - call codes_get(ibufr,'blockNumber',blockNumber) - call codes_get(ibufr,'stationNumber',stationNumber) - call codes_get(ibufr,'year',year) - call codes_get(ibufr,'month',month) - call codes_get(ibufr,'day',day) - call codes_get(ibufr,'hour',hour) - call codes_get(ibufr,'minute',minute) - call codes_get(ibufr,'second',second,status_time) - IF (status_time /= CODES_SUCCESS) second = 0.0 - call codes_get(ibufr,'latitude',lat) - call codes_get(ibufr,'longitude',lon) - call codes_get(ibufr,'heightOfStationGroundAboveMeanSeaLevel',htg,status_ht) - IF (status_ht /= CODES_SUCCESS) htg = -999.0 - call codes_get(ibufr,'heightOfBarometerAboveMeanSeaLevel',htp,status_ht) - IF (status_ht /= CODES_SUCCESS) htp = -999.0 - call codes_get(ibufr,'radiosondeType',sondeType) - call codes_get(ibufr,'heightOfStation',htec,status_ht) ! Height from WMO list (BUFR) - IF (status_ht == CODES_SUCCESS .AND. htg == -999.0) htg = htec - ymd = INT(year)*10000+INT(month)*100+INT(day) - hms = INT(hour)*10000+INT(minute)*100+INT(second) - call codes_get(ibufr,'radiosondeSerialNumber',rsnumber,status_rsno) - call codes_get(ibufr,'softwareVersionNumber',rssoftware,status_rssoft) + ! Ascent (skip incomplete reports for now) + call codes_get(ibufr, 'timePeriod', timeVal, status_time) + IF (status_time /= CODES_SUCCESS) THEN + write (*, '(A,I7,A,I2.2,A,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ', count, & + ' ', blockNumber, ' ', stationNumber, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType) + write (*, '(A)') 'Missing times - skip' + llskip = .True. + END IF + call codes_get(ibufr, 'pressure', presVal, status_p) + IF (status_p /= CODES_SUCCESS) THEN + write (*, '(A,I7,A,I2.2,A,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ', count, & + ' ', blockNumber, ' ', stationNumber, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType) + write (*, '(A)') 'Missing pressures - skip' + llskip = .True. + END IF + call codes_get(ibufr, 'nonCoordinateGeopotentialHeight', zVal, status_ht) + IF (status_ht /= CODES_SUCCESS) THEN + write (*, '(A,I7,A,I2.2,A,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ', count, & + ' ', blockNumber, ' ', stationNumber, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType) + write (*, '(A)') 'Missing heights - skip' + llskip = .True. + END IF + ! IF (blockNumber /= 17 .OR. stationNumber /= 196) llskip=.True. ! FIX + ! IF (blockNumber /= 17.0) llskip=.True. ! FIX - ! Ascent (skip incomplete reports for now) - call codes_get(ibufr,'timePeriod',timeVal,status_time) - IF (status_time /= CODES_SUCCESS) THEN - write(*,'(A,I7,A,I2.2,A,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ',count, & - ' ',blockNumber,' ',stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType) - write(*,'(A)') 'Missing times - skip' - llskip=.True. - ENDIF - call codes_get(ibufr,'pressure',presVal,status_p) - IF (status_p /= CODES_SUCCESS) THEN - write(*,'(A,I7,A,I2.2,A,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ',count, & - ' ',blockNumber,' ',stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType) - write(*,'(A)') 'Missing pressures - skip' - llskip=.True. - ENDIF - call codes_get(ibufr,'nonCoordinateGeopotentialHeight',zVal,status_ht) - IF (status_ht /= CODES_SUCCESS) THEN - write(*,'(A,I7,A,I2.2,A,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ',count, & - ' ',blockNumber,' ',stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType) - write(*,'(A)') 'Missing heights - skip' - llskip=.True. - ENDIF - ! IF (blockNumber /= 17 .OR. stationNumber /= 196) llskip=.True. ! FIX - ! IF (blockNumber /= 17.0) llskip=.True. ! FIX + IF (.NOT. llskip) THEN + call codes_get(ibufr, 'latitudeDisplacement', dlatVal) + call codes_get(ibufr, 'longitudeDisplacement', dlonVal) + call codes_get(ibufr, 'extendedVerticalSoundingSignificance', vssVal) + !call codes_get(ibufr,'geopotentialHeight',zVal) + call codes_get(ibufr, 'airTemperature', tVal) + call codes_get(ibufr, 'dewpointTemperature', tdVal) + call codes_get(ibufr, 'windDirection', wdirVal) + call codes_get(ibufr, 'windSpeed', wspVal) - IF (.NOT.llskip) THEN - call codes_get(ibufr,'latitudeDisplacement',dlatVal) - call codes_get(ibufr,'longitudeDisplacement',dlonVal) - call codes_get(ibufr,'extendedVerticalSoundingSignificance',vssVal) - !call codes_get(ibufr,'geopotentialHeight',zVal) - call codes_get(ibufr,'airTemperature',tVal) - call codes_get(ibufr,'dewpointTemperature',tdVal) - call codes_get(ibufr,'windDirection',wdirVal) - call codes_get(ibufr,'windSpeed',wspVal) + ! ---- Array sizes (pressure size can be larger - wind shear levels) + sizews = size(wspVal) - ! ---- Array sizes (pressure size can be larger - wind shear levels) - sizews = size(wspVal) + ! ---- Print the values -------------------------------- + write (*, '(A,A72)') 'Statid: ', statid + write (*, '(A,I7,A,I2.2,A,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4,I5)') 'Ob: ', count, & + ' ', blockNumber, ' ', stationNumber, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType), sizews + IF (status_ht == CODES_SUCCESS) write (*, '(A,F9.3,F10.3,F7.1)') & + 'WMO list lat, lon, ht: ', lat(1), lon(1), htec + IF (status_rsno == CODES_SUCCESS) write (*, '(A,A,A)') & + 'Radiosonde number/software: ', rsnumber, rssoftware + write (*, '(A)') 'level dtime dlat dlon pressure geopotH airTemp dewPtT windDir windSp signif' + do i = 1, sizews + Note = ' ' + iflag = vssVal(i) + IF (i > 1) THEN + IF (presVal(i) > presVal(i - 1) .OR. zVal(i) < zVal(i - 1) & + .OR. timeVal(i) < timeVal(i - 1)) Note = ' OOO ' + IF ((timeVal(i) - timeVal(i - 1)) > 120) Note = ' tjump ' + IF (ABS(dlatVal(i) - dlatVal(i - 1)) > 0.1 .OR. & + ABS(dlonVal(i) - dlonVal(i - 1)) > 0.1) THEN + Note = ' pjump ' + IF (dlatVal(i) == CODES_MISSING_DOUBLE .OR. & + dlatVal(i - 1) == CODES_MISSING_DOUBLE) Note = ' pmiss ' + END IF + END IF + IF (.NOT. llstdonly .OR. BTEST(iflag, 16)) & + write (*, '(I5,F7.1,2F7.3,F9.1,F8.1,4F8.2,I8,A)') i, timeVal(i), & + dlatVal(i), dlonVal(i), presVal(i), zVal(i), tVal(i), tVal(i) - tdVal(i), & + wdirVal(i), wspVal(i), INT(vssVal(i)), Note + end do - ! ---- Print the values -------------------------------- - write(*,'(A,A72)') 'Statid: ',statid - write(*,'(A,I7,A,I2.2,A,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4,I5)') 'Ob: ',count, & - ' ',blockNumber,' ',stationNumber,ymd,hms,lat(1),lon(1),htg,htp,INT(sondeType),sizews - IF (status_ht == CODES_SUCCESS) write(*,'(A,F9.3,F10.3,F7.1)') & - 'WMO list lat, lon, ht: ', lat(1),lon(1),htec - IF (status_rsno == CODES_SUCCESS) write(*,'(A,A,A)') & - 'Radiosonde number/software: ', rsnumber, rssoftware - write(*,'(A)') 'level dtime dlat dlon pressure geopotH airTemp dewPtT windDir windSp signif' - do i=1,sizews - Note = ' ' - iflag = vssVal(i) - IF (i > 1) THEN - IF (presVal(i) > presVal(i-1) .OR. zVal(i) < zVal(i-1) & - .OR. timeVal(i) < timeVal(i-1)) Note=' OOO ' - IF ((timeVal(i)-timeVal(i-1))>120) Note=' tjump ' - IF (ABS(dlatVal(i)-dlatVal(i-1))>0.1 .OR. & - ABS(dlonVal(i)-dlonVal(i-1))>0.1) THEN - Note=' pjump ' - IF (dlatVal(i) == CODES_MISSING_DOUBLE .OR. & - dlatVal(i-1) == CODES_MISSING_DOUBLE) Note=' pmiss ' - ENDIF - ENDIF - IF (.NOT.llstdonly .OR. BTEST(iflag,16)) & - write(*,'(I5,F7.1,2F7.3,F9.1,F8.1,4F8.2,I8,A)') i,timeVal(i), & - dlatVal(i),dlonVal(i),presVal(i),zVal(i),tVal(i),tVal(i)-tdVal(i), & - wdirVal(i),wspVal(i),INT(vssVal(i)), Note - end do + ! free arrays + deallocate (dlatVal, dlonVal, vssVal) + deallocate (presVal, zVal, tVal, tdVal, wdirVal, wspVal) + END IF + IF (ALLOCATED(timeVal)) deallocate (timeVal) - ! free arrays - deallocate(dlatVal,dlonVal,vssVal) - deallocate(presVal,zVal,tVal,tdVal,wdirVal,wspVal) - END IF - IF (ALLOCATED(timeVal)) deallocate(timeVal) + ! release the bufr message + call codes_release(ibufr) - ! release the bufr message - call codes_release(ibufr) + ! load the next bufr message + call codes_bufr_new_from_file(ifile, ibufr, iret) - ! load the next bufr message - call codes_bufr_new_from_file(ifile,ibufr,iret) + end do - end do - - ! close file - call codes_close_file(ifile) + ! close file + call codes_close_file(ifile) end program bufr_read_temp diff --git a/examples/F90/bufr_read_tropical_cyclone.f90 b/examples/F90/bufr_read_tropical_cyclone.f90 index b2b1ee512..19e75bb0a 100644 --- a/examples/F90/bufr_read_tropical_cyclone.f90 +++ b/examples/F90/bufr_read_tropical_cyclone.f90 @@ -21,254 +21,254 @@ program bufr_read_tropical_cyclone implicit none integer :: ifile integer :: iret - integer :: ibufr,skipMember + integer :: ibufr, skipMember integer :: significance - integer :: year,month,day,hour,minute - integer :: i,j,k,ierr,count=1 - integer :: rankPosition,rankSignificance,rankPressure,rankWind - integer :: rankPeriod,numberOfPeriods + integer :: year, month, day, hour, minute + integer :: i, j, k, ierr, count = 1 + integer :: rankPosition, rankSignificance, rankPressure, rankWind + integer :: rankPeriod, numberOfPeriods - real(kind=8) :: latitudeCentre,longitudeCentre - real(kind=8), dimension(:), allocatable :: latitudeMaxWind0,longitudeMaxWind0,windMaxWind0 - real(kind=8), dimension(:), allocatable :: latitudeAnalysis,longitudeAnalysis,pressureAnalysis - real(kind=8), dimension(:,:), allocatable :: latitude,longitude,pressure - real(kind=8), dimension(:,:), allocatable :: latitudeWind,longitudeWind,wind - integer(kind=4), dimension(:), allocatable :: memberNumber,period + real(kind=8) :: latitudeCentre, longitudeCentre + real(kind=8), dimension(:), allocatable :: latitudeMaxWind0, longitudeMaxWind0, windMaxWind0 + real(kind=8), dimension(:), allocatable :: latitudeAnalysis, longitudeAnalysis, pressureAnalysis + real(kind=8), dimension(:, :), allocatable :: latitude, longitude, pressure + real(kind=8), dimension(:, :), allocatable :: latitudeWind, longitudeWind, wind + integer(kind=4), dimension(:), allocatable :: memberNumber, period real(kind=8), dimension(:), allocatable :: values integer(kind=4), dimension(:), allocatable :: ivalues - character(len=8) :: rankSignificanceStr,rankPositionStr,rankPressureStr,rankWindStr - character(len=8) :: stormIdentifier,rankPeriodStr + character(len=8) :: rankSignificanceStr, rankPositionStr, rankPressureStr, rankWindStr + character(len=8) :: stormIdentifier, rankPeriodStr - call codes_open_file(ifile,'../../data/bufr/tropical_cyclone.bufr','r') + call codes_open_file(ifile, '../../data/bufr/tropical_cyclone.bufr', 'r') ! The first BUFR message is loaded from file. ! ibufr is the BUFR id to be used in subsequent calls - call codes_bufr_new_from_file(ifile,ibufr,iret) + call codes_bufr_new_from_file(ifile, ibufr, iret) - do while (iret/=CODES_END_OF_FILE) + do while (iret /= CODES_END_OF_FILE) - write(*,'(A,I3,A)') '**************** MESSAGE: ',count,' *****************' + write (*, '(A,I3,A)') '**************** MESSAGE: ', count, ' *****************' ! We need to instruct ecCodes to unpack the data values - call codes_set(ibufr,"unpack",1); + call codes_set(ibufr, "unpack", 1); + call codes_get(ibufr, 'year', year); + call codes_get(ibufr, 'month', month); + call codes_get(ibufr, 'day', day); + call codes_get(ibufr, 'hour', hour); + call codes_get(ibufr, 'minute', minute); + write (*, '(A,I0,A,I0,A,I0,A,I0,A,I0,A,I0)') 'Date and time: ', day, '.', month, '.', year, ' ', hour, ':', minute - call codes_get(ibufr,'year',year); - call codes_get(ibufr,'month',month); - call codes_get(ibufr,'day',day); - call codes_get(ibufr,'hour',hour); - call codes_get(ibufr,'minute',minute); - write(*,'(A,I0,A,I0,A,I0,A,I0,A,I0,A,I0)')'Date and time: ',day,'.',month,'.',year,' ',hour,':',minute - - call codes_get(ibufr,'stormIdentifier',stormIdentifier) - write(*,'(A,A)')'Storm identifier: ',stormIdentifier + call codes_get(ibufr, 'stormIdentifier', stormIdentifier) + write (*, '(A,A)') 'Storm identifier: ', stormIdentifier ! How many different timePeriod in the data structure? - rankPeriod=0 - ierr=0 - do while(ierr==0) - rankPeriod=rankPeriod+1 - write (rankPeriodStr,'(I0)')rankPeriod - call codes_get(ibufr,'#'//trim(rankPeriodStr)//'#timePeriod',period,ierr) - if(allocated(period)) deallocate(period) - enddo + rankPeriod = 0 + ierr = 0 + do while (ierr == 0) + rankPeriod = rankPeriod + 1 + write (rankPeriodStr, '(I0)') rankPeriod + call codes_get(ibufr, '#'//trim(rankPeriodStr)//'#timePeriod', period, ierr) + if (allocated(period)) deallocate (period) + end do ! The numberOfPeriods includes the analysis (period=0) - numberOfPeriods=rankPeriod + numberOfPeriods = rankPeriod - call codes_get(ibufr,'ensembleMemberNumber',memberNumber) + call codes_get(ibufr, 'ensembleMemberNumber', memberNumber) - allocate(latitude(size(memberNumber),numberOfPeriods)) - allocate(longitude(size(memberNumber),numberOfPeriods)) - allocate(pressure(size(memberNumber),numberOfPeriods)) - allocate(latitudeWind(size(memberNumber),numberOfPeriods)) - allocate(longitudeWind(size(memberNumber),numberOfPeriods)) - allocate(wind(size(memberNumber),numberOfPeriods)) - allocate(values(size(memberNumber))) - allocate(period(numberOfPeriods)) - period(1)=0 + allocate (latitude(size(memberNumber), numberOfPeriods)) + allocate (longitude(size(memberNumber), numberOfPeriods)) + allocate (pressure(size(memberNumber), numberOfPeriods)) + allocate (latitudeWind(size(memberNumber), numberOfPeriods)) + allocate (longitudeWind(size(memberNumber), numberOfPeriods)) + allocate (wind(size(memberNumber), numberOfPeriods)) + allocate (values(size(memberNumber))) + allocate (period(numberOfPeriods)) + period(1) = 0 ! Observed Storm Centre - call codes_get(ibufr,'#1#meteorologicalAttributeSignificance',significance); - call codes_get(ibufr,'#1#latitude',latitudeCentre); - call codes_get(ibufr,'#1#longitude',longitudeCentre); - if (significance/=1) then - print *,'ERROR: unexpected #1#meteorologicalAttributeSignificance' + call codes_get(ibufr, '#1#meteorologicalAttributeSignificance', significance); + call codes_get(ibufr, '#1#latitude', latitudeCentre); + call codes_get(ibufr, '#1#longitude', longitudeCentre); + if (significance /= 1) then + print *, 'ERROR: unexpected #1#meteorologicalAttributeSignificance' stop 1 - endif - if (latitudeCentre==CODES_MISSING_DOUBLE .and. longitudeCentre==CODES_MISSING_DOUBLE) then - write(*,'(a)')'Observed storm centre position missing' + end if + if (latitudeCentre == CODES_MISSING_DOUBLE .and. longitudeCentre == CODES_MISSING_DOUBLE) then + write (*, '(a)') 'Observed storm centre position missing' else - write(*,'(A,F8.2,A,F8.2)')'Observed storm centre: latitude=',latitudeCentre,' longitude=',longitudeCentre - endif + write (*, '(A,F8.2,A,F8.2)') 'Observed storm centre: latitude=', latitudeCentre, ' longitude=', longitudeCentre + end if ! Location of storm in perturbed analysis - call codes_get(ibufr,'#2#meteorologicalAttributeSignificance',significance); - call codes_get(ibufr,'#2#latitude',latitudeAnalysis); - call codes_get(ibufr,'#2#longitude',longitudeAnalysis); - call codes_get(ibufr,'#1#pressureReducedToMeanSeaLevel',pressureAnalysis); - if (significance/=4) then - print *,'ERROR: unexpected #2#meteorologicalAttributeSignificance' + call codes_get(ibufr, '#2#meteorologicalAttributeSignificance', significance); + call codes_get(ibufr, '#2#latitude', latitudeAnalysis); + call codes_get(ibufr, '#2#longitude', longitudeAnalysis); + call codes_get(ibufr, '#1#pressureReducedToMeanSeaLevel', pressureAnalysis); + if (significance /= 4) then + print *, 'ERROR: unexpected #2#meteorologicalAttributeSignificance' stop 1 - endif - if (size(latitudeAnalysis)==size(memberNumber)) then - latitude(:,1)=latitudeAnalysis - longitude(:,1)=longitudeAnalysis - pressure(:,1)=pressureAnalysis + end if + if (size(latitudeAnalysis) == size(memberNumber)) then + latitude(:, 1) = latitudeAnalysis + longitude(:, 1) = longitudeAnalysis + pressure(:, 1) = pressureAnalysis else - latitude(:,1)=latitudeAnalysis(1) - longitude(:,1)=longitudeAnalysis(1) - pressure(:,1)=pressureAnalysis(1) - endif + latitude(:, 1) = latitudeAnalysis(1) + longitude(:, 1) = longitudeAnalysis(1) + pressure(:, 1) = pressureAnalysis(1) + end if ! Location of Maximum Wind - call codes_get(ibufr,'#3#meteorologicalAttributeSignificance',significance); - call codes_get(ibufr,'#3#latitude',latitudeMaxWind0); - call codes_get(ibufr,'#3#longitude',longitudeMaxWind0); - if (significance/=3) then - print *,'ERROR: unexpected #3#meteorologicalAttributeSignificance=',significance + call codes_get(ibufr, '#3#meteorologicalAttributeSignificance', significance); + call codes_get(ibufr, '#3#latitude', latitudeMaxWind0); + call codes_get(ibufr, '#3#longitude', longitudeMaxWind0); + if (significance /= 3) then + print *, 'ERROR: unexpected #3#meteorologicalAttributeSignificance=', significance stop 1 - endif - call codes_get(ibufr,'#1#windSpeedAt10M',windMaxWind0); - if (size(latitudeMaxWind0)==size(memberNumber)) then - latitudeWind(:,1)=latitudeMaxWind0 - longitudeWind(:,1)=longitudeMaxWind0 - wind(:,1)=windMaxWind0 + end if + call codes_get(ibufr, '#1#windSpeedAt10M', windMaxWind0); + if (size(latitudeMaxWind0) == size(memberNumber)) then + latitudeWind(:, 1) = latitudeMaxWind0 + longitudeWind(:, 1) = longitudeMaxWind0 + wind(:, 1) = windMaxWind0 else - latitudeWind(:,1)=latitudeMaxWind0(1) - longitudeWind(:,1)=longitudeMaxWind0(1) - wind(:,1)=windMaxWind0(1) - endif + latitudeWind(:, 1) = latitudeMaxWind0(1) + longitudeWind(:, 1) = longitudeMaxWind0(1) + wind(:, 1) = windMaxWind0(1) + end if - rankSignificance=3 - rankPosition=3 - rankPressure=1 - rankWind=1 - rankPeriod=0 + rankSignificance = 3 + rankPosition = 3 + rankPressure = 1 + rankWind = 1 + rankPeriod = 0 ! Loop on all periods excluding analysis period(1)=0 - do i=2,numberOfPeriods + do i = 2, numberOfPeriods - rankPeriod=rankPeriod+1 - write (rankPeriodStr,'(I0)')rankPeriod - call codes_get(ibufr,'#'//trim(rankPeriodStr)//'#timePeriod',ivalues); - do k=1,size(ivalues) - if (ivalues(k)/=CODES_MISSING_LONG) then - period(i)=ivalues(k) + rankPeriod = rankPeriod + 1 + write (rankPeriodStr, '(I0)') rankPeriod + call codes_get(ibufr, '#'//trim(rankPeriodStr)//'#timePeriod', ivalues); + do k = 1, size(ivalues) + if (ivalues(k) /= CODES_MISSING_LONG) then + period(i) = ivalues(k) exit - endif - enddo - deallocate(ivalues) + end if + end do + deallocate (ivalues) ! Location of the storm - rankSignificance=rankSignificance+1 - write (rankSignificanceStr,'(I0)')rankSignificance - call codes_get(ibufr,'#'//trim(rankSignificanceStr)//'#meteorologicalAttributeSignificance',ivalues); - do k=1,size(ivalues) - if (ivalues(k)/=CODES_MISSING_LONG) then - significance=ivalues(k) + rankSignificance = rankSignificance + 1 + write (rankSignificanceStr, '(I0)') rankSignificance + call codes_get(ibufr, '#'//trim(rankSignificanceStr)//'#meteorologicalAttributeSignificance', ivalues); + do k = 1, size(ivalues) + if (ivalues(k) /= CODES_MISSING_LONG) then + significance = ivalues(k) exit - endif - enddo - deallocate(ivalues) + end if + end do + deallocate (ivalues) - rankPosition=rankPosition+1 - write (rankPositionStr,'(I0)')rankPosition - call codes_get(ibufr,'#'//trim(rankPositionStr)//'#latitude',values); - latitude(:,i)=values - call codes_get(ibufr,'#'//trim(rankPositionStr)//'#longitude',values); - longitude(:,i)=values + rankPosition = rankPosition + 1 + write (rankPositionStr, '(I0)') rankPosition + call codes_get(ibufr, '#'//trim(rankPositionStr)//'#latitude', values); + latitude(:, i) = values + call codes_get(ibufr, '#'//trim(rankPositionStr)//'#longitude', values); + longitude(:, i) = values - if (significance==1) then - rankPressure=rankPressure+1 - write (rankPressureStr,'(I0)')rankPressure - call codes_get(ibufr,'#'//trim(rankPressureStr)//'#pressureReducedToMeanSeaLevel',values); - pressure(:,i)=values + if (significance == 1) then + rankPressure = rankPressure + 1 + write (rankPressureStr, '(I0)') rankPressure + call codes_get(ibufr, '#'//trim(rankPressureStr)//'#pressureReducedToMeanSeaLevel', values); + pressure(:, i) = values else - print *,'ERROR: unexpected meteorologicalAttributeSignificance=',significance + print *, 'ERROR: unexpected meteorologicalAttributeSignificance=', significance stop 1 - endif + end if ! Location of maximum wind - rankSignificance=rankSignificance+1 - write (rankSignificanceStr,'(I0)')rankSignificance - call codes_get(ibufr,'#'//trim(rankSignificanceStr)//'#meteorologicalAttributeSignificance',ivalues); - do k=1,size(ivalues) - if (ivalues(k)/=CODES_MISSING_LONG) then - significance=ivalues(k) + rankSignificance = rankSignificance + 1 + write (rankSignificanceStr, '(I0)') rankSignificance + call codes_get(ibufr, '#'//trim(rankSignificanceStr)//'#meteorologicalAttributeSignificance', ivalues); + do k = 1, size(ivalues) + if (ivalues(k) /= CODES_MISSING_LONG) then + significance = ivalues(k) exit - endif - enddo - deallocate(ivalues) + end if + end do + deallocate (ivalues) - rankPosition=rankPosition+1 - write (rankPositionStr,'(I0)')rankPosition - call codes_get(ibufr,'#'//trim(rankPositionStr)//'#latitude',values); - latitudeWind(:,i)=values - call codes_get(ibufr,'#'//trim(rankPositionStr)//'#longitude',values); - longitudeWind(:,i)=values + rankPosition = rankPosition + 1 + write (rankPositionStr, '(I0)') rankPosition + call codes_get(ibufr, '#'//trim(rankPositionStr)//'#latitude', values); + latitudeWind(:, i) = values + call codes_get(ibufr, '#'//trim(rankPositionStr)//'#longitude', values); + longitudeWind(:, i) = values - if (significance==3) then - rankWind=rankWind+1 - write (rankWindStr,'(I0)')rankWind - call codes_get(ibufr,'#'//trim(rankWindStr)//'#windSpeedAt10M',values); - wind(:,i)=values + if (significance == 3) then + rankWind = rankWind + 1 + write (rankWindStr, '(I0)') rankWind + call codes_get(ibufr, '#'//trim(rankWindStr)//'#windSpeedAt10M', values); + wind(:, i) = values else - print *,'ERROR: unexpected meteorologicalAttributeSignificance=,',significance + print *, 'ERROR: unexpected meteorologicalAttributeSignificance=,', significance stop 1 - endif + end if - enddo + end do ! Print the values - do i=1,size(memberNumber) - skipMember=1 - do j=1,size(period) - if (latitude(i,j)/=CODES_MISSING_DOUBLE .OR. latitudeWind(i,j)/=CODES_MISSING_DOUBLE) then - skipMember=0 + do i = 1, size(memberNumber) + skipMember = 1 + do j = 1, size(period) + if (latitude(i, j) /= CODES_MISSING_DOUBLE .OR. latitudeWind(i, j) /= CODES_MISSING_DOUBLE) then + skipMember = 0 exit - endif - enddo - if (skipMember/=1) then + end if + end do + if (skipMember /= 1) then - write(*,'(A,I3)') '== Member ',memberNumber(i) - write(*,*) 'step latitude longitude pressure latitude longitude wind' - do j=1,size(period) - if (latitude(i,j)/=CODES_MISSING_DOUBLE .OR. latitudeWind(i,j)/=CODES_MISSING_DOUBLE) then - write(*,'( I4,2X,F8.2,4X,F8.2,3X,F9.1,2X,F8.2,4X,F8.2,2X,F8.2)') period(j),latitude(i,j),longitude(i,j),pressure(i,j),& - &latitudeWind(i,j),longitudeWind(i,j),wind(i,j) - endif - enddo + write (*, '(A,I3)') '== Member ', memberNumber(i) + write (*, *) 'step latitude longitude pressure latitude longitude wind' + do j = 1, size(period) + if (latitude(i, j) /= CODES_MISSING_DOUBLE .OR. latitudeWind(i, j) /= CODES_MISSING_DOUBLE) then + write (*, '( I4,2X,F8.2,4X,F8.2,3X,F9.1,2X,F8.2,4X,F8.2,2X,F8.2)') & + period(j), latitude(i, j), longitude(i, j), pressure(i, j), & + latitudeWind(i, j), longitudeWind(i, j), wind(i, j) + end if + end do - endif - enddo + end if + end do ! deallocating the arrays is very important ! because the behaviour of the codes_get functions is as follows: ! if the array is not allocated then allocate ! if the array is already allocated only copy the values - deallocate(values) - deallocate(latitude) - deallocate(longitude) - deallocate(pressure) - deallocate(latitudeWind) - deallocate(longitudeWind) - deallocate(wind) - deallocate(period) - deallocate(latitudeAnalysis) - deallocate(longitudeAnalysis) - deallocate(pressureAnalysis) - deallocate(memberNumber) - deallocate(latitudeMaxWind0) - deallocate(longitudeMaxWind0) - deallocate(windMaxWind0) + deallocate (values) + deallocate (latitude) + deallocate (longitude) + deallocate (pressure) + deallocate (latitudeWind) + deallocate (longitudeWind) + deallocate (wind) + deallocate (period) + deallocate (latitudeAnalysis) + deallocate (longitudeAnalysis) + deallocate (pressureAnalysis) + deallocate (memberNumber) + deallocate (latitudeMaxWind0) + deallocate (longitudeMaxWind0) + deallocate (windMaxWind0) ! Release the BUFR message call codes_release(ibufr) ! Load the next BUFR message - call codes_bufr_new_from_file(ifile,ibufr,iret) + call codes_bufr_new_from_file(ifile, ibufr, iret) - count=count+1 + count = count + 1 end do diff --git a/examples/F90/bufr_set_keys.f90 b/examples/F90/bufr_set_keys.f90 index a3cc6ac2d..a51e76734 100644 --- a/examples/F90/bufr_set_keys.f90 +++ b/examples/F90/bufr_set_keys.f90 @@ -12,55 +12,55 @@ ! ! program bufr_set_keys - use eccodes - implicit none - integer :: iret - integer :: infile,outfile - integer :: ibufr - integer :: count=0 - integer(kind=4) :: centre, centreNew + use eccodes + implicit none + integer :: iret + integer :: infile, outfile + integer :: ibufr + integer :: count = 0 + integer(kind=4) :: centre, centreNew - ! Open input file - call codes_open_file(infile,'../../data/bufr/syno_multi.bufr','r') + ! Open input file + call codes_open_file(infile, '../../data/bufr/syno_multi.bufr', 'r') - ! Open output file - call codes_open_file(outfile,'bufr_set_keys_test_f.tmp.bufr','w') + ! Open output file + call codes_open_file(outfile, 'bufr_set_keys_test_f.tmp.bufr', 'w') - ! The first bufr message is loaded from file, - ! ibufr is the bufr id to be used in subsequent calls - call codes_bufr_new_from_file(infile,ibufr,iret) + ! The first bufr message is loaded from file, + ! ibufr is the bufr id to be used in subsequent calls + call codes_bufr_new_from_file(infile, ibufr, iret) - do while (iret/=CODES_END_OF_FILE) + do while (iret /= CODES_END_OF_FILE) - write(*,*) 'message: ',count + write (*, *) 'message: ', count - ! This is the place where you may wish to modify the message - ! E.g. we change the centre + ! This is the place where you may wish to modify the message + ! E.g. we change the centre - ! Set centre - centre=222 - call codes_set(ibufr,'bufrHeaderCentre',222) - write(*,*) ' set bufrHeaderCentre to:',centre + ! Set centre + centre = 222 + call codes_set(ibufr, 'bufrHeaderCentre', 222) + write (*, *) ' set bufrHeaderCentre to:', centre - ! Check centre's new value - centreNew=0 - call codes_get(ibufr,'bufrHeaderCentre',centreNew) - write(*,*) ' bufrHeaderCentre''s new value:',centreNew + ! Check centre's new value + centreNew = 0 + call codes_get(ibufr, 'bufrHeaderCentre', centreNew) + write (*, *) ' bufrHeaderCentre''s new value:', centreNew - ! Write modified message to a file - call codes_write(ibufr,outfile) + ! Write modified message to a file + call codes_write(ibufr, outfile) - ! Release the handle - call codes_release(ibufr) + ! Release the handle + call codes_release(ibufr) - ! Next message from source - call codes_bufr_new_from_file(infile,ibufr,iret) + ! Next message from source + call codes_bufr_new_from_file(infile, ibufr, iret) - count=count+1 + count = count + 1 - end do + end do - call codes_close_file(infile) - call codes_close_file(outfile) + call codes_close_file(infile) + call codes_close_file(outfile) end program bufr_set_keys diff --git a/examples/F90/bufr_subset.f90 b/examples/F90/bufr_subset.f90 index d23008fc7..591ffb493 100644 --- a/examples/F90/bufr_subset.f90 +++ b/examples/F90/bufr_subset.f90 @@ -13,66 +13,65 @@ ! ! program bufr_subset -use eccodes -implicit none -integer :: ifile -integer :: iret -integer :: ibufr -integer :: i, count=0 -integer(kind=4) :: numberOfSubsets -integer(kind=4) :: blockNumber,stationNumber -character(100) :: key + use eccodes + implicit none + integer :: ifile + integer :: iret + integer :: ibufr + integer :: i, count = 0 + integer(kind=4) :: numberOfSubsets + integer(kind=4) :: blockNumber, stationNumber + character(100) :: key !real(kind=8) :: t2m - call codes_open_file(ifile,'../../data/bufr/synop_multi_subset.bufr','r') + call codes_open_file(ifile, '../../data/bufr/synop_multi_subset.bufr', 'r') - ! The first bufr message is loaded from file, - ! ibufr is the bufr id to be used in subsequent calls - call codes_bufr_new_from_file(ifile,ibufr,iret) + ! The first bufr message is loaded from file, + ! ibufr is the bufr id to be used in subsequent calls + call codes_bufr_new_from_file(ifile, ibufr, iret) - do while (iret/=CODES_END_OF_FILE) + do while (iret /= CODES_END_OF_FILE) - ! Get and print some keys form the BUFR header - write(*,*) 'message: ',count + ! Get and print some keys form the BUFR header + write (*, *) 'message: ', count - ! We need to instruct ecCodes to expand all the descriptors - ! i.e. unpack the data values - call codes_set(ibufr,'unpack',1); + ! We need to instruct ecCodes to expand all the descriptors + ! i.e. unpack the data values + call codes_set(ibufr, 'unpack', 1); + ! Find out the number of subsets + call codes_get(ibufr, 'numberOfSubsets', numberOfSubsets) + write (*, *) ' numberOfSubsets:', numberOfSubsets - ! Find out the number of subsets - call codes_get(ibufr,'numberOfSubsets',numberOfSubsets) - write(*,*) ' numberOfSubsets:',numberOfSubsets + ! Loop over the subsets + do i = 1, numberOfSubsets - ! Loop over the subsets - do i=1,numberOfSubsets +100 format('/subsetNumber=', I5.5, '/blockNumber') + write (key, 100) I + write (*, *) key - 100 format('/subsetNumber=',I5.5,'/blockNumber') - write(key,100) I - write(*,*) key + write (*, *) ' subsetNumber:', i + ! read and print some data values - write(*,*) ' subsetNumber:',i - ! read and print some data values + call codes_get(ibufr, key, blockNumber); + write (*, *) ' blockNumber:', blockNumber - call codes_get(ibufr,key,blockNumber); - write(*,*) ' blockNumber:',blockNumber + write (key, *) '/subsetNumber=', I, '/stationNumber' + call codes_get(ibufr, 'stationNumber', stationNumber); + write (*, *) ' stationNumber:', stationNumber - write(key,*) '/subsetNumber=',I,'/stationNumber' - call codes_get(ibufr,'stationNumber',stationNumber); - write(*,*) ' stationNumber:',stationNumber + end do - end do + ! Release the bufr message + call codes_release(ibufr) - ! Release the bufr message - call codes_release(ibufr) + ! Load the next bufr message + call codes_bufr_new_from_file(ifile, ibufr, iret) - ! Load the next bufr message - call codes_bufr_new_from_file(ifile,ibufr,iret) + count = count + 1 - count=count+1 + end do - end do - - ! Close file - call codes_close_file(ifile) + ! Close file + call codes_close_file(ifile) end program bufr_subset diff --git a/examples/F90/get_fortran.f90 b/examples/F90/get_fortran.f90 index 6a9e53a51..4a1dd27e2 100644 --- a/examples/F90/get_fortran.f90 +++ b/examples/F90/get_fortran.f90 @@ -10,108 +10,108 @@ ! ! program get -use eccodes -implicit none + use eccodes + implicit none - integer :: ifile - integer :: iret - integer :: igrib - integer :: i - real(kind=8) :: latitudeOfFirstPointInDegrees - real(kind=8) :: longitudeOfFirstPointInDegrees - real(kind=8) :: latitudeOfLastPointInDegrees - real(kind=8) :: longitudeOfLastPointInDegrees - real(kind=8) :: jDirectionIncrementInDegrees - real(kind=8) :: iDirectionIncrementInDegrees - integer(kind = 4) :: numberOfPointsAlongAParallel - integer(kind = 4) :: numberOfPointsAlongAMeridian - real(kind=8), dimension(:), allocatable :: values - integer(kind = 4) :: numberOfValues - real(kind=8) :: average + integer :: ifile + integer :: iret + integer :: igrib + integer :: i + real(kind=8) :: latitudeOfFirstPointInDegrees + real(kind=8) :: longitudeOfFirstPointInDegrees + real(kind=8) :: latitudeOfLastPointInDegrees + real(kind=8) :: longitudeOfLastPointInDegrees + real(kind=8) :: jDirectionIncrementInDegrees + real(kind=8) :: iDirectionIncrementInDegrees + integer(kind=4) :: numberOfPointsAlongAParallel + integer(kind=4) :: numberOfPointsAlongAMeridian + real(kind=8), dimension(:), allocatable :: values + integer(kind=4) :: numberOfValues + real(kind=8) :: average - call codes_open_file(ifile, & - '../../data/reduced_latlon_surface.grib1','r') + call codes_open_file(ifile, & + '../../data/reduced_latlon_surface.grib1', 'r') - ! A new grib message is loaded from file - ! igrib is the grib id to be used in subsequent calls - call codes_grib_new_from_file(ifile,igrib) + ! A new grib message is loaded from file + ! igrib is the grib id to be used in subsequent calls + call codes_grib_new_from_file(ifile, igrib) - ! get as a integer - call codes_get(igrib,'numberOfPointsAlongAParallel', & - numberOfPointsAlongAParallel) - write(*,*) 'numberOfPointsAlongAParallel=', & - numberOfPointsAlongAParallel + ! get as a integer + call codes_get(igrib, 'numberOfPointsAlongAParallel', & + numberOfPointsAlongAParallel) + write (*, *) 'numberOfPointsAlongAParallel=', & + numberOfPointsAlongAParallel - ! get as a integer - call codes_get(igrib,'numberOfPointsAlongAMeridian', & - numberOfPointsAlongAMeridian) - write(*,*) 'numberOfPointsAlongAMeridian=', & - numberOfPointsAlongAMeridian + ! get as a integer + call codes_get(igrib, 'numberOfPointsAlongAMeridian', & + numberOfPointsAlongAMeridian) + write (*, *) 'numberOfPointsAlongAMeridian=', & + numberOfPointsAlongAMeridian - ! get as a real8 - call codes_get(igrib, & - 'latitudeOfFirstGridPointInDegrees', & - latitudeOfFirstPointInDegrees) - write(*,*) 'latitudeOfFirstGridPointInDegrees=', & - latitudeOfFirstPointInDegrees + ! get as a real8 + call codes_get(igrib, & + 'latitudeOfFirstGridPointInDegrees', & + latitudeOfFirstPointInDegrees) + write (*, *) 'latitudeOfFirstGridPointInDegrees=', & + latitudeOfFirstPointInDegrees - ! get as a real8 - call codes_get(igrib, & - 'longitudeOfFirstGridPointInDegrees', & - longitudeOfFirstPointInDegrees) - write(*,*) 'longitudeOfFirstGridPointInDegrees=', & + ! get as a real8 + call codes_get(igrib, & + 'longitudeOfFirstGridPointInDegrees', & + longitudeOfFirstPointInDegrees) + write (*, *) 'longitudeOfFirstGridPointInDegrees=', & longitudeOfFirstPointInDegrees - ! get as a real8 - call codes_get(igrib, & - 'latitudeOfLastGridPointInDegrees', & - latitudeOfLastPointInDegrees) - write(*,*) 'latitudeOfLastGridPointInDegrees=', & + ! get as a real8 + call codes_get(igrib, & + 'latitudeOfLastGridPointInDegrees', & + latitudeOfLastPointInDegrees) + write (*, *) 'latitudeOfLastGridPointInDegrees=', & latitudeOfLastPointInDegrees - ! get as a real8 - call codes_get(igrib, & - 'longitudeOfLastGridPointInDegrees', & - longitudeOfLastPointInDegrees) - write(*,*) 'longitudeOfLastGridPointInDegrees=', & - longitudeOfLastPointInDegrees + ! get as a real8 + call codes_get(igrib, & + 'longitudeOfLastGridPointInDegrees', & + longitudeOfLastPointInDegrees) + write (*, *) 'longitudeOfLastGridPointInDegrees=', & + longitudeOfLastPointInDegrees - ! get as a real8 - call codes_get(igrib, & - 'jDirectionIncrementInDegrees', & - jDirectionIncrementInDegrees) - write(*,*) 'jDirectionIncrementInDegrees=', & - jDirectionIncrementInDegrees + ! get as a real8 + call codes_get(igrib, & + 'jDirectionIncrementInDegrees', & + jDirectionIncrementInDegrees) + write (*, *) 'jDirectionIncrementInDegrees=', & + jDirectionIncrementInDegrees - ! get as a real8 - call codes_get(igrib, & - 'iDirectionIncrementInDegrees', & - iDirectionIncrementInDegrees) - write(*,*) 'iDirectionIncrementInDegrees=', & - iDirectionIncrementInDegrees + ! get as a real8 + call codes_get(igrib, & + 'iDirectionIncrementInDegrees', & + iDirectionIncrementInDegrees) + write (*, *) 'iDirectionIncrementInDegrees=', & + iDirectionIncrementInDegrees - ! get the size of the values array - call codes_get_size(igrib,'values',numberOfValues) - write(*,*) 'numberOfValues=',numberOfValues + ! get the size of the values array + call codes_get_size(igrib, 'values', numberOfValues) + write (*, *) 'numberOfValues=', numberOfValues - allocate(values(2*numberOfValues), stat=iret) - ! get data values - print*, size(values) - call codes_get(igrib,'values',values) + allocate (values(2*numberOfValues), stat=iret) + ! get data values + print *, size(values) + call codes_get(igrib, 'values', values) - average = 0 - do i=1,numberOfValues - average = average + values(i); - enddo + average = 0 + do i = 1, numberOfValues + average = average + values(i); + end do - average =average / numberOfValues + average = average/numberOfValues - write(*,*)'There are ',numberOfValues, & - ' average is ',average + write (*, *) 'There are ', numberOfValues, & + ' average is ', average - call codes_release(igrib) + call codes_release(igrib) - call codes_close_file(ifile) + call codes_close_file(ifile) - deallocate(values) + deallocate (values) end program get diff --git a/examples/F90/get_product_kind.f90 b/examples/F90/get_product_kind.f90 index f04dd0edb..7907b8a6b 100644 --- a/examples/F90/get_product_kind.f90 +++ b/examples/F90/get_product_kind.f90 @@ -13,54 +13,54 @@ ! and print the kind of product (e.g. GRIB, BUFR etc) ! program get_product_kind - use eccodes - implicit none - integer :: ifile - integer :: iret - integer :: ihandle - integer :: count=0 - integer :: version=0 - character(len=32) :: product_kind - character(len=120) :: infile_name + use eccodes + implicit none + integer :: ifile + integer :: iret + integer :: ihandle + integer :: count = 0 + integer :: version = 0 + character(len=32) :: product_kind + character(len=120) :: infile_name - call getarg(1, infile_name) - write(*,*) 'infile_name|',infile_name,'|' - call codes_open_file(ifile,infile_name,'r') + call getarg(1, infile_name) + write (*, *) 'infile_name|', infile_name, '|' + call codes_open_file(ifile, infile_name, 'r') - call codes_get_api_version(version) - write(*,*) 'API version: ',version + call codes_get_api_version(version) + write (*, *) 'API version: ', version - write(*,*) 'ecCodes settings: ' - write(*,*) ' ECCODES_POSIX_THREADS: ',ECCODES_SETTINGS_POSIX_THREADS - write(*,*) ' ECCODES_OMP_THREADS: ',ECCODES_SETTINGS_OMP_THREADS - write(*,*) ' ECCODES_SETTINGS_MEMFS: ',ECCODES_SETTINGS_MEMFS - write(*,*) ' ECCODES_SETTINGS_JPEG: ',ECCODES_SETTINGS_JPEG - write(*,*) ' ECCODES_SETTINGS_PNG: ',ECCODES_SETTINGS_PNG - write(*,*) ' ECCODES_SETTINGS_AEC: ',ECCODES_SETTINGS_AEC + write (*, *) 'ecCodes settings: ' + write (*, *) ' ECCODES_POSIX_THREADS: ', ECCODES_SETTINGS_POSIX_THREADS + write (*, *) ' ECCODES_OMP_THREADS: ', ECCODES_SETTINGS_OMP_THREADS + write (*, *) ' ECCODES_SETTINGS_MEMFS: ', ECCODES_SETTINGS_MEMFS + write (*, *) ' ECCODES_SETTINGS_JPEG: ', ECCODES_SETTINGS_JPEG + write (*, *) ' ECCODES_SETTINGS_PNG: ', ECCODES_SETTINGS_PNG + write (*, *) ' ECCODES_SETTINGS_AEC: ', ECCODES_SETTINGS_AEC ! the first message is loaded from file ! ihandle is the message id to be used in subsequent calls - call codes_new_from_file(ifile,ihandle,CODES_PRODUCT_ANY,iret) + call codes_new_from_file(ifile, ihandle, CODES_PRODUCT_ANY, iret) - do while (iret/=CODES_END_OF_FILE) + do while (iret /= CODES_END_OF_FILE) - write(*,*) 'message: ',count + write (*, *) 'message: ', count - ! get the product kind - call codes_get(ihandle,'kindOfProduct',product_kind) - write(*,*) ' product: ',product_kind + ! get the product kind + call codes_get(ihandle, 'kindOfProduct', product_kind) + write (*, *) ' product: ', product_kind - ! release the message - call codes_release(ihandle) + ! release the message + call codes_release(ihandle) - ! load the next message - call codes_new_from_file(ifile,ihandle,CODES_PRODUCT_ANY,iret) + ! load the next message + call codes_new_from_file(ifile, ihandle, CODES_PRODUCT_ANY, iret) - count=count+1 + count = count + 1 - end do + end do - ! close file - call codes_close_file(ifile) + ! close file + call codes_close_file(ifile) end program get_product_kind diff --git a/examples/F90/grib_clone.f90 b/examples/F90/grib_clone.f90 index cb69e5935..7019a5156 100644 --- a/examples/F90/grib_clone.f90 +++ b/examples/F90/grib_clone.f90 @@ -14,62 +14,62 @@ ! ! program clone - use eccodes - implicit none - integer :: err,i - integer :: nx, ny - integer :: infile,outfile - integer :: igrib_in - integer :: igrib_out - character(len=2) :: step - real(kind=8), dimension(:,:), allocatable :: field2D + use eccodes + implicit none + integer :: err, i + integer :: nx, ny + integer :: infile, outfile + integer :: igrib_in + integer :: igrib_out + character(len=2) :: step + real(kind=8), dimension(:, :), allocatable :: field2D - call codes_open_file(infile,'../../data/constant_field.grib1','r') - call codes_open_file(outfile,'out.clone.grib1','w') + call codes_open_file(infile, '../../data/constant_field.grib1', 'r') + call codes_open_file(outfile, 'out.clone.grib1', 'w') - ! A new GRIB message is loaded from file. - ! igrib is the GRIB id to be used in subsequent calls - call codes_grib_new_from_file(infile,igrib_in) + ! A new GRIB message is loaded from file. + ! igrib is the GRIB id to be used in subsequent calls + call codes_grib_new_from_file(infile, igrib_in) - call codes_get(igrib_in,'Ni', nx) - call codes_get(igrib_in,'Nj', ny) + call codes_get(igrib_in, 'Ni', nx) + call codes_get(igrib_in, 'Nj', ny) - allocate(field2D(nx,ny),stat=err) + allocate (field2D(nx, ny), stat=err) - if (err .ne. 0) then - print*, 'Failed to allocate ', nx*ny, ' values' - STOP - end if - ! clone the constant field to create 4 new GRIB messages - do i=0,18,6 - call codes_clone(igrib_in, igrib_out) - write(step,'(i2)') i - ! Careful: stepRange is a string (could be 0-6, 12-24, etc.) - ! use adjustl to remove blank from the left. - call codes_set(igrib_out,'stepRange',adjustl(step)) + if (err .ne. 0) then + print *, 'Failed to allocate ', nx*ny, ' values' + STOP + end if + ! clone the constant field to create 4 new GRIB messages + do i = 0, 18, 6 + call codes_clone(igrib_in, igrib_out) + write (step, '(i2)') i + ! Careful: stepRange is a string (could be 0-6, 12-24, etc.) + ! use adjustl to remove blank from the left. + call codes_set(igrib_out, 'stepRange', adjustl(step)) - call generate_field(field2D) + call generate_field(field2D) - ! use pack to create 1D values - call codes_set(igrib_out,'values',pack(field2D, mask=.true.)) + ! use pack to create 1D values + call codes_set(igrib_out, 'values', pack(field2D, mask=.true.)) - ! write cloned messages to a file - call codes_write(igrib_out,outfile) - call codes_release(igrib_out) - end do + ! write cloned messages to a file + call codes_write(igrib_out, outfile) + call codes_release(igrib_out) + end do - call codes_release(igrib_in) - call codes_close_file(infile) - call codes_close_file(outfile) - deallocate(field2D) + call codes_release(igrib_in) + call codes_close_file(infile) + call codes_close_file(outfile) + deallocate (field2D) contains !====================================== -subroutine generate_field(gfield2D) - real(kind=8), dimension(:,:) :: gfield2D + subroutine generate_field(gfield2D) + real(kind=8), dimension(:, :) :: gfield2D - call random_number(gfield2D) -end subroutine generate_field + call random_number(gfield2D) + end subroutine generate_field !====================================== end program clone diff --git a/examples/F90/grib_copy_message.f90 b/examples/F90/grib_copy_message.f90 index 2b7d23035..2abd4a470 100644 --- a/examples/F90/grib_copy_message.f90 +++ b/examples/F90/grib_copy_message.f90 @@ -13,44 +13,43 @@ ! ! program copy - use eccodes - implicit none - integer :: err, centre - integer(kind=kindOfSize) :: byte_size - integer :: infile,outfile - integer :: igrib_in - integer :: igrib_out - character(len=1), dimension(:), allocatable :: message - character(len=32) :: product_kind + use eccodes + implicit none + integer :: err, centre + integer(kind=kindOfSize) :: byte_size + integer :: infile, outfile + integer :: igrib_in + integer :: igrib_out + character(len=1), dimension(:), allocatable :: message + character(len=32) :: product_kind + call codes_open_file(infile, '../../data/constant_field.grib1', 'r') + call codes_open_file(outfile, 'out.copy.grib1', 'w') - call codes_open_file(infile,'../../data/constant_field.grib1','r') - call codes_open_file(outfile,'out.copy.grib1','w') + ! A new GRIB message is loaded from file + ! igrib_in is the GRIB id to be used in subsequent calls + call codes_grib_new_from_file(infile, igrib_in) - ! A new GRIB message is loaded from file - ! igrib_in is the GRIB id to be used in subsequent calls - call codes_grib_new_from_file(infile, igrib_in) + call codes_get_message_size(igrib_in, byte_size) + allocate (message(byte_size), stat=err) - call codes_get_message_size(igrib_in, byte_size) - allocate(message(byte_size), stat=err) + call codes_copy_message(igrib_in, message) - call codes_copy_message(igrib_in, message) + call codes_new_from_message(igrib_out, message) - call codes_new_from_message(igrib_out, message) + call codes_get(igrib_out, 'kindOfProduct', product_kind) + write (*, *) 'kindOfProduct=', product_kind - call codes_get(igrib_out, 'kindOfProduct', product_kind) - write(*,*) 'kindOfProduct=',product_kind + centre = 80 + call codes_set(igrib_out, 'centre', centre) - centre=80 - call codes_set(igrib_out, 'centre', centre) + ! Write message to a file + call codes_write(igrib_out, outfile) - ! Write message to a file - call codes_write(igrib_out, outfile) - - call codes_release(igrib_out) - call codes_release(igrib_in) - call codes_close_file(infile) - call codes_close_file(outfile) - deallocate(message) + call codes_release(igrib_out) + call codes_release(igrib_in) + call codes_close_file(infile) + call codes_close_file(outfile) + deallocate (message) end program copy diff --git a/examples/F90/grib_copy_namespace.f90 b/examples/F90/grib_copy_namespace.f90 index 440f22dcd..854281f8a 100644 --- a/examples/F90/grib_copy_namespace.f90 +++ b/examples/F90/grib_copy_namespace.f90 @@ -11,26 +11,26 @@ ! ! program copy_namespace - use eccodes - implicit none - integer :: file1, file2, file3 - integer :: igrib1,igrib2,igrib3 + use eccodes + implicit none + integer :: file1, file2, file3 + integer :: igrib1, igrib2, igrib3 - call codes_open_file(file1, '../../data/reduced_latlon_surface.grib2', 'r') - call codes_open_file(file2, '../../data/regular_latlon_surface.grib1', 'r') - call codes_open_file(file3, 'out.grib_copy_namespace.grib','w') + call codes_open_file(file1, '../../data/reduced_latlon_surface.grib2', 'r') + call codes_open_file(file2, '../../data/regular_latlon_surface.grib1', 'r') + call codes_open_file(file3, 'out.grib_copy_namespace.grib', 'w') - call codes_grib_new_from_file(file1, igrib1) - call codes_grib_new_from_file(file2, igrib2) + call codes_grib_new_from_file(file1, igrib1) + call codes_grib_new_from_file(file2, igrib2) - call codes_clone(igrib2, igrib3) + call codes_clone(igrib2, igrib3) - call codes_copy_namespace(igrib1, 'geography', igrib3) + call codes_copy_namespace(igrib1, 'geography', igrib3) call codes_write(igrib3, file3) - call codes_close_file(file1) - call codes_close_file(file2) - call codes_close_file(file3) + call codes_close_file(file1) + call codes_close_file(file2) + call codes_close_file(file3) end program copy_namespace diff --git a/examples/F90/grib_count_messages.f90 b/examples/F90/grib_count_messages.f90 index de63eba57..fddaac45a 100644 --- a/examples/F90/grib_count_messages.f90 +++ b/examples/F90/grib_count_messages.f90 @@ -10,101 +10,100 @@ ! ! program get - use eccodes - implicit none + use eccodes + implicit none - integer :: ifile - integer :: iret - integer :: n - integer :: i - integer,dimension(:),allocatable :: igrib - real :: latitudeOfFirstPointInDegrees - real :: longitudeOfFirstPointInDegrees - real :: latitudeOfLastPointInDegrees - real :: longitudeOfLastPointInDegrees - integer :: numberOfPointsAlongAParallel - integer :: numberOfPointsAlongAMeridian - real, dimension(:), allocatable :: values - integer :: numberOfValues - real :: average,min_val, max_val + integer :: ifile + integer :: iret + integer :: n + integer :: i + integer, dimension(:), allocatable :: igrib + real :: latitudeOfFirstPointInDegrees + real :: longitudeOfFirstPointInDegrees + real :: latitudeOfLastPointInDegrees + real :: longitudeOfLastPointInDegrees + integer :: numberOfPointsAlongAParallel + integer :: numberOfPointsAlongAMeridian + real, dimension(:), allocatable :: values + integer :: numberOfValues + real :: average, min_val, max_val - call codes_open_file(ifile, & - '../../data/tigge_pf_ecmwf.grib2','r') + call codes_open_file(ifile, & + '../../data/tigge_pf_ecmwf.grib2', 'r') - ! count the messages in the file - call codes_count_in_file(ifile,n) - allocate(igrib(n)) - igrib=-1 + ! count the messages in the file + call codes_count_in_file(ifile, n) + allocate (igrib(n)) + igrib = -1 - ! Load the messages from the file. - DO i=1,n - call codes_grib_new_from_file(ifile,igrib(i), iret) - END DO + ! Load the messages from the file. + DO i = 1, n + call codes_grib_new_from_file(ifile, igrib(i), iret) + END DO - ! we can close the file - call codes_close_file(ifile) + ! we can close the file + call codes_close_file(ifile) - ! Loop on all the messages in memory - DO i=1,n - write(*,*) 'processing message number ',i - ! get as a integer - call codes_get(igrib(i),'Ni',numberOfPointsAlongAParallel) - write(*,*) 'numberOfPointsAlongAParallel=', & - numberOfPointsAlongAParallel + ! Loop on all the messages in memory + DO i = 1, n + write (*, *) 'processing message number ', i + ! get as a integer + call codes_get(igrib(i), 'Ni', numberOfPointsAlongAParallel) + write (*, *) 'numberOfPointsAlongAParallel=', & + numberOfPointsAlongAParallel - ! get as a integer - call codes_get(igrib(i),'Nj',numberOfPointsAlongAMeridian) - write(*,*) 'numberOfPointsAlongAMeridian=', & - numberOfPointsAlongAMeridian + ! get as a integer + call codes_get(igrib(i), 'Nj', numberOfPointsAlongAMeridian) + write (*, *) 'numberOfPointsAlongAMeridian=', & + numberOfPointsAlongAMeridian - ! get as a real - call codes_get(igrib(i), 'latitudeOfFirstGridPointInDegrees', & - latitudeOfFirstPointInDegrees) - write(*,*) 'latitudeOfFirstGridPointInDegrees=', & - latitudeOfFirstPointInDegrees + ! get as a real + call codes_get(igrib(i), 'latitudeOfFirstGridPointInDegrees', & + latitudeOfFirstPointInDegrees) + write (*, *) 'latitudeOfFirstGridPointInDegrees=', & + latitudeOfFirstPointInDegrees - ! get as a real - call codes_get(igrib(i), 'longitudeOfFirstGridPointInDegrees', & - longitudeOfFirstPointInDegrees) - write(*,*) 'longitudeOfFirstGridPointInDegrees=', & + ! get as a real + call codes_get(igrib(i), 'longitudeOfFirstGridPointInDegrees', & + longitudeOfFirstPointInDegrees) + write (*, *) 'longitudeOfFirstGridPointInDegrees=', & longitudeOfFirstPointInDegrees - ! get as a real - call codes_get(igrib(i), 'latitudeOfLastGridPointInDegrees', & - latitudeOfLastPointInDegrees) - write(*,*) 'latitudeOfLastGridPointInDegrees=', & + ! get as a real + call codes_get(igrib(i), 'latitudeOfLastGridPointInDegrees', & + latitudeOfLastPointInDegrees) + write (*, *) 'latitudeOfLastGridPointInDegrees=', & latitudeOfLastPointInDegrees - ! get as a real - call codes_get(igrib(i), 'longitudeOfLastGridPointInDegrees', & - longitudeOfLastPointInDegrees) - write(*,*) 'longitudeOfLastGridPointInDegrees=', & + ! get as a real + call codes_get(igrib(i), 'longitudeOfLastGridPointInDegrees', & + longitudeOfLastPointInDegrees) + write (*, *) 'longitudeOfLastGridPointInDegrees=', & longitudeOfLastPointInDegrees + ! get the size of the values array + call codes_get_size(igrib(i), 'values', numberOfValues) + write (*, *) 'numberOfValues=', numberOfValues - ! get the size of the values array - call codes_get_size(igrib(i),'values',numberOfValues) - write(*,*) 'numberOfValues=',numberOfValues + allocate (values(numberOfValues), stat=iret) + ! get data values + call codes_get(igrib(i), 'values', values) + call codes_get(igrib(i), 'min', min_val) ! can also be obtained through minval(values) + call codes_get(igrib(i), 'max', max_val) ! can also be obtained through maxval(values) + call codes_get(igrib(i), 'average', average) ! can also be obtained through maxval(values) - allocate(values(numberOfValues), stat=iret) - ! get data values - call codes_get(igrib(i),'values',values) - call codes_get(igrib(i),'min',min_val) ! can also be obtained through minval(values) - call codes_get(igrib(i),'max',max_val) ! can also be obtained through maxval(values) - call codes_get(igrib(i),'average',average) ! can also be obtained through maxval(values) + write (*, *) 'There are ', numberOfValues, & + ' average is ', average, & + ' min is ', min_val, & + ' max is ', max_val + write (*, *) '---------------------' + deallocate (values) + END DO - write(*,*)'There are ',numberOfValues, & - ' average is ',average, & - ' min is ', min_val, & - ' max is ', max_val - write(*,*) '---------------------' - deallocate(values) - END DO + DO i = 1, n + call codes_release(igrib(i)) + END DO - DO i=1,n - call codes_release(igrib(i)) - END DO - - deallocate(igrib) + deallocate (igrib) end program get diff --git a/examples/F90/grib_count_messages_multi.f90 b/examples/F90/grib_count_messages_multi.f90 index 75b6668fb..7f1244780 100644 --- a/examples/F90/grib_count_messages_multi.f90 +++ b/examples/F90/grib_count_messages_multi.f90 @@ -10,25 +10,25 @@ ! ! program grib_count_messages_multi - use eccodes - implicit none + use eccodes + implicit none - integer :: ifile - character(len=100) :: grib_file - integer :: n,stat - character(len=1) :: multi_flag + integer :: ifile + character(len=100) :: grib_file + integer :: n, stat + character(len=1) :: multi_flag - call getarg(1,multi_flag) - call getarg(2,grib_file) + call getarg(1, multi_flag) + call getarg(2, grib_file) - if (multi_flag/="0") call codes_grib_multi_support_on() + if (multi_flag /= "0") call codes_grib_multi_support_on() - call codes_open_file(ifile,grib_file,'r') + call codes_open_file(ifile, grib_file, 'r') - ! count the messages in the file - call codes_count_in_file(ifile,n,stat) + ! count the messages in the file + call codes_count_in_file(ifile, n, stat) - print *,n + print *, n - call codes_close_file(ifile) + call codes_close_file(ifile) end program grib_count_messages_multi diff --git a/examples/F90/grib_ecc-671.f90 b/examples/F90/grib_ecc-671.f90 index 31d5aad80..4dc714a27 100644 --- a/examples/F90/grib_ecc-671.f90 +++ b/examples/F90/grib_ecc-671.f90 @@ -11,23 +11,23 @@ ! USE eccodes - INTEGER :: IGRIBH - CHARACTER (LEN=17) :: CLNOMA1, CLNOMA2 +INTEGER :: IGRIBH +CHARACTER(LEN=17) :: CLNOMA1, CLNOMA2 - CALL codes_grib_new_from_samples(IGRIBH, "regular_ll_sfc_grib2") +CALL codes_grib_new_from_samples(IGRIBH, "regular_ll_sfc_grib2") - ! set centre to MeteoFrance and use their local definition - CALL codes_set (IGRIBH, 'centre', 85) - CALL codes_set (IGRIBH, 'grib2LocalSectionPresent', 1) - CALL codes_set (IGRIBH, 'grib2LocalSectionNumber', 1) +! set centre to MeteoFrance and use their local definition +CALL codes_set(IGRIBH, 'centre', 85) +CALL codes_set(IGRIBH, 'grib2LocalSectionPresent', 1) +CALL codes_set(IGRIBH, 'grib2LocalSectionNumber', 1) - CLNOMA1 = 'SUNSHI. DURATION' - CALL codes_set_string(IGRIBH, 'CLNOMA', CLNOMA1) - CALL codes_get_string(IGRIBH, 'CLNOMA', CLNOMA2) +CLNOMA1 = 'SUNSHI. DURATION' +CALL codes_set_string(IGRIBH, 'CLNOMA', CLNOMA1) +CALL codes_get_string(IGRIBH, 'CLNOMA', CLNOMA2) - PRINT *, " CLNOMA1 = ", CLNOMA1 - PRINT *, " CLNOMA2 = ", CLNOMA2 +PRINT *, " CLNOMA1 = ", CLNOMA1 +PRINT *, " CLNOMA2 = ", CLNOMA2 - IF (CLNOMA1 /= CLNOMA2) STOP 1 +IF (CLNOMA1 /= CLNOMA2) STOP 1 END diff --git a/examples/F90/grib_get_data.f90 b/examples/F90/grib_get_data.f90 index 315c0fd05..44047bd67 100644 --- a/examples/F90/grib_get_data.f90 +++ b/examples/F90/grib_get_data.f90 @@ -11,71 +11,71 @@ ! ! program get_data -use eccodes -implicit none - integer :: ifile - integer :: iret,i - real(kind=8),dimension(:),allocatable :: lats,lons,values - integer,dimension(:),allocatable :: bitmap - integer(4) :: numberOfPoints - logical :: is_missing_value - integer :: count1=0, count2=0, bitmapPresent=0, bmp_len=0 + use eccodes + implicit none + integer :: ifile + integer :: iret, i + real(kind=8), dimension(:), allocatable :: lats, lons, values + integer, dimension(:), allocatable :: bitmap + integer(4) :: numberOfPoints + logical :: is_missing_value + integer :: count1 = 0, count2 = 0, bitmapPresent = 0, bmp_len = 0 - ! Message identifier. - integer :: igrib + ! Message identifier. + integer :: igrib - ifile=5 + ifile = 5 - call codes_open_file(ifile, & - '../../data/reduced_latlon_surface.grib1','R') + call codes_open_file(ifile, & + '../../data/reduced_latlon_surface.grib1', 'R') - ! Loop on all the messages in a file. - call codes_grib_new_from_file(ifile,igrib,iret) + ! Loop on all the messages in a file. + call codes_grib_new_from_file(ifile, igrib, iret) - do while (iret/=CODES_END_OF_FILE) - count1=count1+1 - print *, "===== Message #",count1 - call codes_get(igrib,'numberOfPoints',numberOfPoints) - call codes_get(igrib,'bitmapPresent',bitmapPresent) + do while (iret /= CODES_END_OF_FILE) + count1 = count1 + 1 + print *, "===== Message #", count1 + call codes_get(igrib, 'numberOfPoints', numberOfPoints) + call codes_get(igrib, 'bitmapPresent', bitmapPresent) - allocate(lats(numberOfPoints)) - allocate(lons(numberOfPoints)) - allocate(values(numberOfPoints)) - if (bitmapPresent == 1) then - ! get the bitmap - call codes_get_size(igrib, 'bitmap', bmp_len) - allocate(bitmap(bmp_len)) - call codes_get(igrib,'bitmap', bitmap) - end if - - call codes_grib_get_data(igrib,lats,lons,values) - - do i=1,numberOfPoints - ! Consult bitmap to see if the i'th value is missing - is_missing_value=.false. - if (bitmapPresent == 1 .and. bitmap(i) == 0) then - is_missing_value=.true. + allocate (lats(numberOfPoints)) + allocate (lons(numberOfPoints)) + allocate (values(numberOfPoints)) + if (bitmapPresent == 1) then + ! get the bitmap + call codes_get_size(igrib, 'bitmap', bmp_len) + allocate (bitmap(bmp_len)) + call codes_get(igrib, 'bitmap', bitmap) end if - ! Only print non-missing values - if (.not. is_missing_value) then - print *, lats(i),lons(i),values(i) - count2=count2+1 + + call codes_grib_get_data(igrib, lats, lons, values) + + do i = 1, numberOfPoints + ! Consult bitmap to see if the i'th value is missing + is_missing_value = .false. + if (bitmapPresent == 1 .and. bitmap(i) == 0) then + is_missing_value = .true. + end if + ! Only print non-missing values + if (.not. is_missing_value) then + print *, lats(i), lons(i), values(i) + count2 = count2 + 1 + end if + end do + print *, 'count of non-missing values=', count2 + if (count2 /= 214661) then + call codes_check(-2, 'incorrect number of missing', '') end if - enddo - print *, 'count of non-missing values=',count2 - if (count2 /= 214661) then - call codes_check(-2, 'incorrect number of missing', '') - end if - deallocate(lats) - deallocate(lons) - deallocate(values) + deallocate (lats) + deallocate (lons) + deallocate (values) - call codes_release(igrib) - call codes_grib_new_from_file(ifile,igrib, iret) + call codes_release(igrib) + call codes_grib_new_from_file(ifile, igrib, iret) - end do + end do - call codes_close_file(ifile) + call codes_close_file(ifile) end program diff --git a/examples/F90/grib_get_keys.f90 b/examples/F90/grib_get_keys.f90 index ca1bdb53f..36f87c6af 100644 --- a/examples/F90/grib_get_keys.f90 +++ b/examples/F90/grib_get_keys.f90 @@ -11,100 +11,100 @@ ! ! program grib_get_keys - use eccodes - implicit none + use eccodes + implicit none - integer :: ifile - integer :: iret - integer :: igrib - real :: latitudeOfFirstPointInDegrees - real :: longitudeOfFirstPointInDegrees - real :: latitudeOfLastPointInDegrees - real :: longitudeOfLastPointInDegrees - integer :: numberOfPointsAlongAParallel - integer :: numberOfPointsAlongAMeridian - real, dimension(:), allocatable :: values - integer :: numberOfValues - real :: average,min_val, max_val - integer :: is_missing - character(len=10) :: open_mode='r' + integer :: ifile + integer :: iret + integer :: igrib + real :: latitudeOfFirstPointInDegrees + real :: longitudeOfFirstPointInDegrees + real :: latitudeOfLastPointInDegrees + real :: longitudeOfLastPointInDegrees + integer :: numberOfPointsAlongAParallel + integer :: numberOfPointsAlongAMeridian + real, dimension(:), allocatable :: values + integer :: numberOfValues + real :: average, min_val, max_val + integer :: is_missing + character(len=10) :: open_mode = 'r' - call codes_open_file(ifile, & - '../../data/reduced_latlon_surface.grib1', open_mode) + call codes_open_file(ifile, & + '../../data/reduced_latlon_surface.grib1', open_mode) - ! Loop on all the messages in a file. + ! Loop on all the messages in a file. - ! A new GRIB message is loaded from file - ! igrib is the grib id to be used in subsequent calls - call codes_grib_new_from_file(ifile,igrib, iret) + ! A new GRIB message is loaded from file + ! igrib is the grib id to be used in subsequent calls + call codes_grib_new_from_file(ifile, igrib, iret) - LOOP: DO WHILE (iret /= CODES_END_OF_FILE) + LOOP: DO WHILE (iret /= CODES_END_OF_FILE) - ! Check if the value of the key is MISSING - is_missing=0; - call codes_is_missing(igrib,'Ni',is_missing); - if ( is_missing /= 1 ) then - ! Key value is not missing so get as an integer - call codes_get(igrib,'Ni',numberOfPointsAlongAParallel) - write(*,*) 'numberOfPointsAlongAParallel=', & - numberOfPointsAlongAParallel - else - write(*,*) 'numberOfPointsAlongAParallel is missing' - endif + ! Check if the value of the key is MISSING + is_missing = 0; + call codes_is_missing(igrib, 'Ni', is_missing); + if (is_missing /= 1) then + ! Key value is not missing so get as an integer + call codes_get(igrib, 'Ni', numberOfPointsAlongAParallel) + write (*, *) 'numberOfPointsAlongAParallel=', & + numberOfPointsAlongAParallel + else + write (*, *) 'numberOfPointsAlongAParallel is missing' + end if - ! Get as an integer - call codes_get(igrib,'Nj',numberOfPointsAlongAMeridian) - write(*,*) 'numberOfPointsAlongAMeridian=', & + ! Get as an integer + call codes_get(igrib, 'Nj', numberOfPointsAlongAMeridian) + write (*, *) 'numberOfPointsAlongAMeridian=', & numberOfPointsAlongAMeridian - ! Get as a real - call codes_get(igrib, 'latitudeOfFirstGridPointInDegrees', & - latitudeOfFirstPointInDegrees) - write(*,*) 'latitudeOfFirstGridPointInDegrees=', & - latitudeOfFirstPointInDegrees + ! Get as a real + call codes_get(igrib, 'latitudeOfFirstGridPointInDegrees', & + latitudeOfFirstPointInDegrees) + write (*, *) 'latitudeOfFirstGridPointInDegrees=', & + latitudeOfFirstPointInDegrees - ! Get as a real - call codes_get(igrib, 'longitudeOfFirstGridPointInDegrees', & - longitudeOfFirstPointInDegrees) - write(*,*) 'longitudeOfFirstGridPointInDegrees=', & - longitudeOfFirstPointInDegrees + ! Get as a real + call codes_get(igrib, 'longitudeOfFirstGridPointInDegrees', & + longitudeOfFirstPointInDegrees) + write (*, *) 'longitudeOfFirstGridPointInDegrees=', & + longitudeOfFirstPointInDegrees - ! Get as a real - call codes_get(igrib, 'latitudeOfLastGridPointInDegrees', & - latitudeOfLastPointInDegrees) - write(*,*) 'latitudeOfLastGridPointInDegrees=', & - latitudeOfLastPointInDegrees + ! Get as a real + call codes_get(igrib, 'latitudeOfLastGridPointInDegrees', & + latitudeOfLastPointInDegrees) + write (*, *) 'latitudeOfLastGridPointInDegrees=', & + latitudeOfLastPointInDegrees - ! Get as a real - call codes_get(igrib, 'longitudeOfLastGridPointInDegrees', & - longitudeOfLastPointInDegrees) - write(*,*) 'longitudeOfLastGridPointInDegrees=', & - longitudeOfLastPointInDegrees + ! Get as a real + call codes_get(igrib, 'longitudeOfLastGridPointInDegrees', & + longitudeOfLastPointInDegrees) + write (*, *) 'longitudeOfLastGridPointInDegrees=', & + longitudeOfLastPointInDegrees - ! Get the size of the values array - call codes_get_size(igrib,'values',numberOfValues) - write(*,*) 'numberOfValues=',numberOfValues + ! Get the size of the values array + call codes_get_size(igrib, 'values', numberOfValues) + write (*, *) 'numberOfValues=', numberOfValues - allocate(values(numberOfValues), stat=iret) - ! Get data values - call codes_get(igrib,'values',values) - call codes_get(igrib,'min',min_val) ! can also be obtained through minval(values) - call codes_get(igrib,'max',max_val) ! can also be obtained through maxval(values) - call codes_get(igrib,'average',average) ! can also be obtained through maxval(values) + allocate (values(numberOfValues), stat=iret) + ! Get data values + call codes_get(igrib, 'values', values) + call codes_get(igrib, 'min', min_val) ! can also be obtained through minval(values) + call codes_get(igrib, 'max', max_val) ! can also be obtained through maxval(values) + call codes_get(igrib, 'average', average) ! can also be obtained through maxval(values) - deallocate(values) + deallocate (values) - write(*,*)'There are ',numberOfValues, & - ' average is ',average, & - ' min is ', min_val, & - ' max is ', max_val + write (*, *) 'There are ', numberOfValues, & + ' average is ', average, & + ' min is ', min_val, & + ' max is ', max_val - call codes_release(igrib) + call codes_release(igrib) - call codes_grib_new_from_file(ifile,igrib, iret) + call codes_grib_new_from_file(ifile, igrib, iret) - end do LOOP + end do LOOP - call codes_close_file(ifile) + call codes_close_file(ifile) end program grib_get_keys diff --git a/examples/F90/grib_get_pl.f90 b/examples/F90/grib_get_pl.f90 index a13e1752a..f52c2ea9d 100644 --- a/examples/F90/grib_get_pl.f90 +++ b/examples/F90/grib_get_pl.f90 @@ -11,35 +11,35 @@ ! ! program grib_get_pl - use eccodes - implicit none - integer :: infile - integer :: igrib - integer :: PLPresent, nb_pl - real, dimension(:), allocatable :: pl + use eccodes + implicit none + integer :: infile + integer :: igrib + integer :: PLPresent, nb_pl + real, dimension(:), allocatable :: pl - call codes_open_file(infile, & - '../../data/reduced_gaussian_surface.grib1','r') + call codes_open_file(infile, & + '../../data/reduced_gaussian_surface.grib1', 'r') - ! A new grib message is loaded from file - ! igrib is the grib id to be used in subsequent calls - call codes_grib_new_from_file(infile,igrib) + ! A new grib message is loaded from file + ! igrib is the grib id to be used in subsequent calls + call codes_grib_new_from_file(infile, igrib) - ! get PLPresent to see if the 'pl' array is there - call codes_get(igrib,'PLPresent',PLPresent) - print*, "PLPresent= ", PLPresent - if (PLPresent == 1) then - call codes_get_size(igrib,'pl',nb_pl) - print*, "there are ", nb_pl, " PL values" - allocate(pl(nb_pl)) - call codes_get(igrib,'pl',pl) - print*, "pl = ", pl - deallocate(pl) - else - print*, "There is no PL values in your GRIB message!" - end if - call codes_release(igrib) + ! get PLPresent to see if the 'pl' array is there + call codes_get(igrib, 'PLPresent', PLPresent) + print *, "PLPresent= ", PLPresent + if (PLPresent == 1) then + call codes_get_size(igrib, 'pl', nb_pl) + print *, "there are ", nb_pl, " PL values" + allocate (pl(nb_pl)) + call codes_get(igrib, 'pl', pl) + print *, "pl = ", pl + deallocate (pl) + else + print *, "There is no PL values in your GRIB message!" + end if + call codes_release(igrib) - call codes_close_file(infile) + call codes_close_file(infile) end program grib_get_pl diff --git a/examples/F90/grib_get_pv.f90 b/examples/F90/grib_get_pv.f90 index 2fcf8a26e..49e5aaa06 100644 --- a/examples/F90/grib_get_pv.f90 +++ b/examples/F90/grib_get_pv.f90 @@ -11,35 +11,35 @@ ! ! program grib_get_pv - use eccodes - implicit none - integer :: infile - integer :: igrib - integer :: PVPresent, nb_pv - real, dimension(:), allocatable :: pv + use eccodes + implicit none + integer :: infile + integer :: igrib + integer :: PVPresent, nb_pv + real, dimension(:), allocatable :: pv - call codes_open_file(infile, & - '../../data/reduced_gaussian_model_level.grib1','r') + call codes_open_file(infile, & + '../../data/reduced_gaussian_model_level.grib1', 'r') - ! A new grib message is loaded from file - ! igrib is the grib id to be used in subsequent calls - call codes_grib_new_from_file(infile,igrib) + ! A new grib message is loaded from file + ! igrib is the grib id to be used in subsequent calls + call codes_grib_new_from_file(infile, igrib) - ! Get PVPresent to see if the 'pv' array is there - call codes_get(igrib,'PVPresent',PVPresent) - print*, "PVPresent = ", PVPresent - if (PVPresent == 1) then - call codes_get_size(igrib,'pv',nb_pv) - print*, "There are ", nb_pv, " PV values" - allocate(pv(nb_pv)) - call codes_get(igrib,'pv',pv) - print*, "pv = ", pv - deallocate(pv) - else - print*, "There is no PV values in your GRIB message!" - end if - call codes_release(igrib) + ! Get PVPresent to see if the 'pv' array is there + call codes_get(igrib, 'PVPresent', PVPresent) + print *, "PVPresent = ", PVPresent + if (PVPresent == 1) then + call codes_get_size(igrib, 'pv', nb_pv) + print *, "There are ", nb_pv, " PV values" + allocate (pv(nb_pv)) + call codes_get(igrib, 'pv', pv) + print *, "pv = ", pv + deallocate (pv) + else + print *, "There is no PV values in your GRIB message!" + end if + call codes_release(igrib) - call codes_close_file(infile) + call codes_close_file(infile) end program grib_get_pv diff --git a/examples/F90/grib_get_set_uuid.f90 b/examples/F90/grib_get_set_uuid.f90 index 17a812a3b..d51bcd9cd 100644 --- a/examples/F90/grib_get_set_uuid.f90 +++ b/examples/F90/grib_get_set_uuid.f90 @@ -12,89 +12,89 @@ ! Original authors: Harald Anlauf, Doerte Liermann (DWD), Luis Kornblueh (MPIfM). ! program grib_get_set_uuid - use eccodes - implicit none - integer :: infile, outfile - integer :: igrib, ogrib - integer :: count1, i, iret, nvg, ffs, length - character(len=1) :: uuid_in (16) ! Array of 16 bytes for uuid on input. - character(len=1) :: uuid_out(16) ! Array of 16 bytes for uuid on output. - character(len=32) :: uuid_string ! Human-readable uuid. - character(len=32) :: uuid_string_expected ! Expected UUID of input + use eccodes + implicit none + integer :: infile, outfile + integer :: igrib, ogrib + integer :: count1, i, iret, nvg, ffs, length + character(len=1) :: uuid_in(16) ! Array of 16 bytes for uuid on input. + character(len=1) :: uuid_out(16) ! Array of 16 bytes for uuid on output. + character(len=32) :: uuid_string ! Human-readable uuid. + character(len=32) :: uuid_string_expected ! Expected UUID of input - call codes_open_file (infile, '../../data/test_uuid.grib2','r') + call codes_open_file(infile, '../../data/test_uuid.grib2', 'r') - call codes_open_file (outfile, 'out_uuid.grib2','w') + call codes_open_file(outfile, 'out_uuid.grib2', 'w') - ! Load first grib message from file - ! igrib is the grib id to be used in subsequent calls - call codes_grib_new_from_file (infile, igrib, iret) + ! Load first grib message from file + ! igrib is the grib id to be used in subsequent calls + call codes_grib_new_from_file(infile, igrib, iret) - uuid_string_expected = '08b1e836bc6911e1951fb51b5624ad8d' - count1 = 0 - do while (iret/=CODES_END_OF_FILE) - count1 = count1 + 1 - print *, "### Record:", count1 - call codes_get(igrib,'typeOfFirstFixedSurface',ffs) - print *, 'typeOfFirstFixedSurface =', ffs - if (ffs /= 150) then - print *, "Unexpected typeOfFirstFixedSurface (must be 150)." - stop - end if + uuid_string_expected = '08b1e836bc6911e1951fb51b5624ad8d' + count1 = 0 + do while (iret /= CODES_END_OF_FILE) + count1 = count1 + 1 + print *, "### Record:", count1 + call codes_get(igrib, 'typeOfFirstFixedSurface', ffs) + print *, 'typeOfFirstFixedSurface =', ffs + if (ffs /= 150) then + print *, "Unexpected typeOfFirstFixedSurface (must be 150)." + stop + end if - call codes_get (igrib,'numberOfVGridUsed',nvg) - print *, 'numberOfVGridUsed =',nvg + call codes_get(igrib, 'numberOfVGridUsed', nvg) + print *, 'numberOfVGridUsed =', nvg - ! call codes_get (igrib,'uuidOfVGrid',uuid_in) ! Assuming length is ok. - call codes_get (igrib,'uuidOfVGrid',uuid_in,length=length) - if (length /= 16) then - print *, "Sorry, bad length of byte_array:", length, ". Expected: 16" - stop - end if + ! call codes_get (igrib,'uuidOfVGrid',uuid_in) ! Assuming length is ok. + call codes_get(igrib, 'uuidOfVGrid', uuid_in, length=length) + if (length /= 16) then + print *, "Sorry, bad length of byte_array:", length, ". Expected: 16" + stop + end if - ! Convert byte array to hexadecimal string for printing - do i = 1, size (uuid_in) - uuid_string(2*i-1:2*i) = byte2hex(uuid_in(i)) - end do - print *, "uuidOfVGrid (on input) = ", uuid_string - if (uuid_string .ne. uuid_string_expected) then - print *, "Sorry, bad value of byte_array. Expected: ", uuid_string_expected - stop - end if + ! Convert byte array to hexadecimal string for printing + do i = 1, size(uuid_in) + uuid_string(2*i - 1:2*i) = byte2hex(uuid_in(i)) + end do + print *, "uuidOfVGrid (on input) = ", uuid_string + if (uuid_string .ne. uuid_string_expected) then + print *, "Sorry, bad value of byte_array. Expected: ", uuid_string_expected + stop + end if - call codes_clone (igrib,ogrib) - ! On output we write a modified uuid (here the input is simply reversed) - uuid_out(1:16) = uuid_in(16:1:-1) - call codes_set (ogrib,'uuidOfVGrid',uuid_out) - call codes_write (ogrib,outfile) + call codes_clone(igrib, ogrib) + ! On output we write a modified uuid (here the input is simply reversed) + uuid_out(1:16) = uuid_in(16:1:-1) + call codes_set(ogrib, 'uuidOfVGrid', uuid_out) + call codes_write(ogrib, outfile) - call codes_release (igrib) - call codes_release (ogrib) - call codes_grib_new_from_file (infile, igrib, iret) - end do + call codes_release(igrib) + call codes_release(ogrib) + call codes_grib_new_from_file(infile, igrib, iret) + end do - call codes_close_file (infile) - call codes_close_file (outfile) + call codes_close_file(infile) + call codes_close_file(outfile) contains - ! Convert single byte to 'hexadecimal' string - pure function byte2hex (c) result (hex) - character(len=1), intent(in) :: c - character(len=2) :: hex - integer :: x - x = iachar (c) - hex(1:1) = nibble ( x / 16) - hex(2:2) = nibble (iand (x, 15)) - end function byte2hex - ! Convert 'nibble' to 'hexadecimal' - pure function nibble (x) - integer, intent(in) :: x - character :: nibble - select case (x) - case (0:9) - nibble = achar (iachar ('0') + x) - case default - nibble = achar (iachar ('a') - 10 + x) - end select - end function nibble + ! Convert single byte to 'hexadecimal' string + pure function byte2hex(c) result(hex) + character(len=1), intent(in) :: c + character(len=2) :: hex + integer :: x + x = iachar(c) + hex(1:1) = nibble(x/16) + hex(2:2) = nibble(iand(x, 15)) + end function byte2hex + ! Convert 'nibble' to 'hexadecimal' + pure function nibble(x) + integer, intent(in) :: x + character :: nibble + select case (x) + case (0:9) + nibble = achar(iachar('0') + x) + case default + nibble = achar(iachar('a') - 10 + x) + end select + end function nibble end program grib_get_set_uuid diff --git a/examples/F90/grib_index.f90 b/examples/F90/grib_index.f90 index 6195e2c05..d0d248978 100644 --- a/examples/F90/grib_index.f90 +++ b/examples/F90/grib_index.f90 @@ -13,105 +13,105 @@ ! ! program index - use eccodes - implicit none + use eccodes + implicit none - integer :: iret - integer,dimension(:),allocatable :: step,level,number - character(len=20),dimension(:),allocatable :: shortName - integer :: ostep,olevel,onumber - character(len=20) :: oshortName - integer :: shortNameSize,numberSize,levelSize,stepSize - integer :: i,j,k,l - integer :: idx,igrib,count1 - character(len=10) :: index_file='index.idx' + integer :: iret + integer, dimension(:), allocatable :: step, level, number + character(len=20), dimension(:), allocatable :: shortName + integer :: ostep, olevel, onumber + character(len=20) :: oshortName + integer :: shortNameSize, numberSize, levelSize, stepSize + integer :: i, j, k, l + integer :: idx, igrib, count1 + character(len=10) :: index_file = 'index.idx' - ! uncomment following line to load index from file - !call codes_index_read(idx,index_file) + ! uncomment following line to load index from file + !call codes_index_read(idx,index_file) - ! create an index from a grib file using some keys - call codes_index_create(idx,'../../data/index.grib','shortName,number,level,step') + ! create an index from a grib file using some keys + call codes_index_create(idx, '../../data/index.grib', 'shortName,number,level,step') - ! get the number of distinct values of shortName in the index - call codes_index_get_size(idx,'shortName',shortNameSize) - ! allocate the array to contain the list of distinct shortName - allocate(shortName(shortNameSize)) - ! get the list of distinct shortName from the index - call codes_index_get(idx,'shortName',shortName) - write(*,'(a,i3)') 'shortNameSize=',shortNameSize + ! get the number of distinct values of shortName in the index + call codes_index_get_size(idx, 'shortName', shortNameSize) + ! allocate the array to contain the list of distinct shortName + allocate (shortName(shortNameSize)) + ! get the list of distinct shortName from the index + call codes_index_get(idx, 'shortName', shortName) + write (*, '(a,i3)') 'shortNameSize=', shortNameSize - ! get the number of distinct values of number in the index - call codes_index_get_size(idx,'number',numberSize) - ! allocate the array to contain the list of distinct numbers - allocate(number(numberSize)) - ! get the list of distinct numbers from the index - call codes_index_get(idx,'number',number) - write(*,'(a,i3)') 'numberSize=',numberSize + ! get the number of distinct values of number in the index + call codes_index_get_size(idx, 'number', numberSize) + ! allocate the array to contain the list of distinct numbers + allocate (number(numberSize)) + ! get the list of distinct numbers from the index + call codes_index_get(idx, 'number', number) + write (*, '(a,i3)') 'numberSize=', numberSize - ! get the number of distinct values of level in the index - call codes_index_get_size(idx,'level',levelSize) - ! allocate the array to contain the list of distinct levels - allocate(level(levelSize)) - ! get the list of distinct levels from the index - call codes_index_get(idx,'level',level) - write(*,'(a,i3)') 'levelSize=',levelSize + ! get the number of distinct values of level in the index + call codes_index_get_size(idx, 'level', levelSize) + ! allocate the array to contain the list of distinct levels + allocate (level(levelSize)) + ! get the list of distinct levels from the index + call codes_index_get(idx, 'level', level) + write (*, '(a,i3)') 'levelSize=', levelSize - ! get the number of distinct values of step in the index - call codes_index_get_size(idx,'step',stepSize) - ! allocate the array to contain the list of distinct steps - allocate(step(stepSize)) - ! get the list of distinct steps from the index - call codes_index_get(idx,'step',step) - write(*,'(a,i3)') 'stepSize=',stepSize + ! get the number of distinct values of step in the index + call codes_index_get_size(idx, 'step', stepSize) + ! allocate the array to contain the list of distinct steps + allocate (step(stepSize)) + ! get the list of distinct steps from the index + call codes_index_get(idx, 'step', step) + write (*, '(a,i3)') 'stepSize=', stepSize - count1=0 - do l=1,stepSize ! loop on step - ! select step=step(l) - call codes_index_select(idx,'step',step(l)) + count1 = 0 + do l = 1, stepSize ! loop on step + ! select step=step(l) + call codes_index_select(idx, 'step', step(l)) - do j=1,numberSize ! loop on number - ! select number=number(j) - call codes_index_select(idx,'number',number(j)) + do j = 1, numberSize ! loop on number + ! select number=number(j) + call codes_index_select(idx, 'number', number(j)) - do k=1,levelSize ! loop on level - ! select level=level(k) - call codes_index_select(idx,'level',level(k)) + do k = 1, levelSize ! loop on level + ! select level=level(k) + call codes_index_select(idx, 'level', level(k)) - do i=1,shortNameSize ! loop on shortName - ! select shortName=shortName(i) - call codes_index_select(idx,'shortName',shortName(i)) + do i = 1, shortNameSize ! loop on shortName + ! select shortName=shortName(i) + call codes_index_select(idx, 'shortName', shortName(i)) - call codes_new_from_index(idx,igrib, iret) - do while (iret /= CODES_END_OF_INDEX) - count1=count1+1 - call codes_get(igrib,'shortName',oshortName) - call codes_get(igrib,'number',onumber) - call codes_get(igrib,'level',olevel) - call codes_get(igrib,'step',ostep) - write(*,'(A,A,A,i3,A,i4,A,i3)') 'shortName=',trim(oshortName),& - ' number=',onumber,& - ' level=' ,olevel, & - ' step=' ,ostep + call codes_new_from_index(idx, igrib, iret) + do while (iret /= CODES_END_OF_INDEX) + count1 = count1 + 1 + call codes_get(igrib, 'shortName', oshortName) + call codes_get(igrib, 'number', onumber) + call codes_get(igrib, 'level', olevel) + call codes_get(igrib, 'step', ostep) + write (*, '(A,A,A,i3,A,i4,A,i3)') 'shortName=', trim(oshortName), & + ' number=', onumber, & + ' level=', olevel, & + ' step=', ostep - call codes_release(igrib) - call codes_new_from_index(idx,igrib, iret) - end do - call codes_release(igrib) + call codes_release(igrib) + call codes_new_from_index(idx, igrib, iret) + end do + call codes_release(igrib) - end do ! loop on step - end do ! loop on level - end do ! loop on number - end do ! loop on shortName - write(*,'(i4,a)') count1,' messages selected' + end do ! loop on step + end do ! loop on level + end do ! loop on number + end do ! loop on shortName + write (*, '(i4,a)') count1, ' messages selected' - ! save the index to a file for later reuse - call codes_index_write(idx,index_file) + ! save the index to a file for later reuse + call codes_index_write(idx, index_file) - call codes_index_release(idx) - - deallocate(level) - deallocate(shortName) - deallocate(step) - deallocate(number) + call codes_index_release(idx) + + deallocate (level) + deallocate (shortName) + deallocate (step) + deallocate (number) end program index diff --git a/examples/F90/grib_keys_iterator.f90 b/examples/F90/grib_keys_iterator.f90 index 93b0d9d6f..ca00157b4 100644 --- a/examples/F90/grib_keys_iterator.f90 +++ b/examples/F90/grib_keys_iterator.f90 @@ -14,50 +14,49 @@ ! ! program keys_iterator - use eccodes - implicit none - character(len=20) :: name_space - integer :: kiter,ifile,igrib,iret - character(len=256) :: key - character(len=256) :: value - character(len=512) :: all1 - integer :: grib_count + use eccodes + implicit none + character(len=20) :: name_space + integer :: kiter, ifile, igrib, iret + character(len=256) :: key + character(len=256) :: value + character(len=512) :: all1 + integer :: grib_count - call codes_open_file(ifile, & - '../../data/regular_latlon_surface.grib1','r') + call codes_open_file(ifile, & + '../../data/regular_latlon_surface.grib1', 'r') - ! Loop on all the messages in a file. + ! Loop on all the messages in a file. - call codes_grib_new_from_file(ifile,igrib, iret) - grib_count=0 - do while (iret /= CODES_END_OF_FILE) + call codes_grib_new_from_file(ifile, igrib, iret) + grib_count = 0 + do while (iret /= CODES_END_OF_FILE) - grib_count=grib_count+1 - write(*,*) '-- GRIB N. ',grib_count,' --' + grib_count = grib_count + 1 + write (*, *) '-- GRIB N. ', grib_count, ' --' - ! valid name_spaces are ls and mars - name_space='ls' + ! valid name_spaces are ls and mars + name_space = 'ls' - call codes_keys_iterator_new(igrib,kiter,name_space) + call codes_keys_iterator_new(igrib, kiter, name_space) - do - call codes_keys_iterator_next(kiter, iret) + do + call codes_keys_iterator_next(kiter, iret) - if (iret .ne. CODES_SUCCESS) exit !terminate the loop + if (iret .ne. CODES_SUCCESS) exit !terminate the loop - call codes_keys_iterator_get_name(kiter,key) - call codes_get(igrib,trim(key),value) - all1=trim(key)// ' = ' // trim(value) - write(*,*) trim(all1) + call codes_keys_iterator_get_name(kiter, key) + call codes_get(igrib, trim(key), value) + all1 = trim(key)//' = '//trim(value) + write (*, *) trim(all1) - end do + end do - call codes_keys_iterator_delete(kiter) - call codes_release(igrib) - call codes_grib_new_from_file(ifile,igrib, iret) - end do + call codes_keys_iterator_delete(kiter) + call codes_release(igrib) + call codes_grib_new_from_file(ifile, igrib, iret) + end do - - call codes_close_file(ifile) + call codes_close_file(ifile) end program keys_iterator diff --git a/examples/F90/grib_multi.f90 b/examples/F90/grib_multi.f90 index 69afa90bd..d486a8eb7 100644 --- a/examples/F90/grib_multi.f90 +++ b/examples/F90/grib_multi.f90 @@ -13,33 +13,33 @@ ! For all the tools default is multi support ON. ! program multi - use eccodes - implicit none + use eccodes + implicit none - integer :: iret - integer(kind = 4) :: step - integer :: ifile,igrib + integer :: iret + integer(kind=4) :: step + integer :: ifile, igrib - call codes_open_file(ifile, '../../data/multi_created.grib2','r') + call codes_open_file(ifile, '../../data/multi_created.grib2', 'r') - ! turn on support for multi-field messages */ - call codes_grib_multi_support_on() + ! turn on support for multi-field messages */ + call codes_grib_multi_support_on() - ! turn off support for multi-field messages */ - !call codes_grib_multi_support_off() + ! turn off support for multi-field messages */ + !call codes_grib_multi_support_off() - call codes_grib_new_from_file(ifile,igrib, iret) - ! Loop on all the messages in a file. + call codes_grib_new_from_file(ifile, igrib, iret) + ! Loop on all the messages in a file. - write(*,*) 'step' - do while (iret /= CODES_END_OF_FILE) + write (*, *) 'step' + do while (iret /= CODES_END_OF_FILE) - call codes_get(igrib,'step', step) - write(*,'(i3)') step + call codes_get(igrib, 'step', step) + write (*, '(i3)') step - call codes_grib_new_from_file(ifile,igrib, iret) + call codes_grib_new_from_file(ifile, igrib, iret) - end do - call codes_close_file(ifile) + end do + call codes_close_file(ifile) end program multi diff --git a/examples/F90/grib_multi_write.f90 b/examples/F90/grib_multi_write.f90 index 652971b94..7bec67a3e 100644 --- a/examples/F90/grib_multi_write.f90 +++ b/examples/F90/grib_multi_write.f90 @@ -15,37 +15,37 @@ ! ! program grib2_multi_write - use eccodes - implicit none - integer :: infile,outfile - integer :: in_gribid - integer :: multi_gribid - integer :: step,startsection + use eccodes + implicit none + integer :: infile, outfile + integer :: in_gribid + integer :: multi_gribid + integer :: step, startsection - ! multi field messages can be created only in edition 2 - call codes_open_file(infile,'../../data/sample.grib2','r') + ! multi field messages can be created only in edition 2 + call codes_open_file(infile, '../../data/sample.grib2', 'r') - call codes_open_file(outfile,'multi_created.grib2','w') + call codes_open_file(outfile, 'multi_created.grib2', 'w') - ! a grib message is loaded from file - ! in_gribid is the grib id to be used in subsequent calls - call codes_grib_new_from_file(infile,in_gribid) + ! a grib message is loaded from file + ! in_gribid is the grib id to be used in subsequent calls + call codes_grib_new_from_file(infile, in_gribid) - startsection=4 - do step=0,240,12 + startsection = 4 + do step = 0, 240, 12 - call codes_set(in_gribid,"step",step) - call codes_grib_multi_append(in_gribid,startsection,multi_gribid) + call codes_set(in_gribid, "step", step) + call codes_grib_multi_append(in_gribid, startsection, multi_gribid) - enddo + end do ! write messages to a file - call codes_grib_multi_write(multi_gribid,outfile) + call codes_grib_multi_write(multi_gribid, outfile) - call codes_release(in_gribid) - call codes_release(multi_gribid) + call codes_release(in_gribid) + call codes_release(multi_gribid) - call codes_close_file(infile) - call codes_close_file(outfile) + call codes_close_file(infile) + call codes_close_file(outfile) end program grib2_multi_write diff --git a/examples/F90/grib_nearest.f90 b/examples/F90/grib_nearest.f90 index 29735ebe8..2e2d5e1a3 100644 --- a/examples/F90/grib_nearest.f90 +++ b/examples/F90/grib_nearest.f90 @@ -12,67 +12,67 @@ ! ! program find - use eccodes - implicit none - integer :: npoints - integer :: infile - integer :: igrib, ios, i - real(8), dimension(:), allocatable :: lats, lons - real(8), dimension(:), allocatable :: nearest_lats, nearest_lons - real(8), dimension(:), allocatable :: distances, values, lsm_values - integer(kind=kindOfInt), dimension(:), allocatable :: indexes + use eccodes + implicit none + integer :: npoints + integer :: infile + integer :: igrib, ios, i + real(8), dimension(:), allocatable :: lats, lons + real(8), dimension(:), allocatable :: nearest_lats, nearest_lons + real(8), dimension(:), allocatable :: distances, values, lsm_values + integer(kind=kindOfInt), dimension(:), allocatable :: indexes - ! initialization - open( unit=1, file="../../data/list_points",form="formatted",action="read") - read(unit=1,fmt=*) npoints - allocate(lats(npoints)) - allocate(lons(npoints)) - allocate(nearest_lats(npoints)) - allocate(nearest_lons(npoints)) - allocate(distances(npoints)) - allocate(lsm_values(npoints)) - allocate(values(npoints)) - allocate(indexes(npoints)) - do i=1,npoints - read(unit=1,fmt=*, iostat=ios) lats(i), lons(i) - if (ios /= 0) then - npoints = i - 1 - exit - end if - end do - close(unit=1) - call codes_open_file(infile, & - '../../data/reduced_gaussian_lsm.grib1','r') + ! initialization + open (unit=1, file="../../data/list_points", form="formatted", action="read") + read (unit=1, fmt=*) npoints + allocate (lats(npoints)) + allocate (lons(npoints)) + allocate (nearest_lats(npoints)) + allocate (nearest_lons(npoints)) + allocate (distances(npoints)) + allocate (lsm_values(npoints)) + allocate (values(npoints)) + allocate (indexes(npoints)) + do i = 1, npoints + read (unit=1, fmt=*, iostat=ios) lats(i), lons(i) + if (ios /= 0) then + npoints = i - 1 + exit + end if + end do + close (unit=1) + call codes_open_file(infile, & + '../../data/reduced_gaussian_lsm.grib1', 'r') - ! A new grib message is loaded from file - ! igrib is the grib id to be used in subsequent calls - call codes_grib_new_from_file(infile,igrib) + ! A new grib message is loaded from file + ! igrib is the grib id to be used in subsequent calls + call codes_grib_new_from_file(infile, igrib) - call codes_grib_find_nearest(igrib, .true., lats, lons, nearest_lats, nearest_lons,lsm_values, distances, indexes) - call codes_release(igrib) + call codes_grib_find_nearest(igrib, .true., lats, lons, nearest_lats, nearest_lons, lsm_values, distances, indexes) + call codes_release(igrib) - call codes_close_file(infile) + call codes_close_file(infile) - ! will apply it to another GRIB - call codes_open_file(infile, & - '../../data/reduced_gaussian_pressure_level.grib1','r') - call codes_grib_new_from_file(infile,igrib) + ! will apply it to another GRIB + call codes_open_file(infile, & + '../../data/reduced_gaussian_pressure_level.grib1', 'r') + call codes_grib_new_from_file(infile, igrib) - call codes_get_element(igrib,"values", indexes, values) - call codes_release(igrib) - call codes_close_file(infile) + call codes_get_element(igrib, "values", indexes, values) + call codes_release(igrib) + call codes_close_file(infile) - do i=1, npoints - print*,lats(i), lons(i), nearest_lats(i), nearest_lons(i), distances(i), lsm_values(i), values(i) - end do + do i = 1, npoints + print *, lats(i), lons(i), nearest_lats(i), nearest_lons(i), distances(i), lsm_values(i), values(i) + end do - deallocate(lats) - deallocate(lons) - deallocate(nearest_lats) - deallocate(nearest_lons) - deallocate(distances) - deallocate(lsm_values) - deallocate(values) - deallocate(indexes) + deallocate (lats) + deallocate (lons) + deallocate (nearest_lats) + deallocate (nearest_lons) + deallocate (distances) + deallocate (lsm_values) + deallocate (values) + deallocate (indexes) end program find diff --git a/examples/F90/grib_precision.f90 b/examples/F90/grib_precision.f90 index f4dcc5918..9a444580c 100644 --- a/examples/F90/grib_precision.f90 +++ b/examples/F90/grib_precision.f90 @@ -13,83 +13,83 @@ ! ! program precision - use eccodes - implicit none - integer(kind = 4) :: size1 - integer :: infile,outfile - integer :: igrib - real(kind = 8), dimension(:), allocatable :: values1 - real(kind = 8), dimension(:), allocatable :: values2 - real(kind = 8) :: maxa,a,maxv,minv,maxr,r - integer( kind = 4) :: decimalPrecision,bitsPerValue1,bitsPerValue2 - integer :: i, iret + use eccodes + implicit none + integer(kind=4) :: size1 + integer :: infile, outfile + integer :: igrib + real(kind=8), dimension(:), allocatable :: values1 + real(kind=8), dimension(:), allocatable :: values2 + real(kind=8) :: maxa, a, maxv, minv, maxr, r + integer(kind=4) :: decimalPrecision, bitsPerValue1, bitsPerValue2 + integer :: i, iret - call codes_open_file(infile, & - '../../data/regular_latlon_surface_constant.grib1','r') + call codes_open_file(infile, & + '../../data/regular_latlon_surface_constant.grib1', 'r') - call codes_open_file(outfile, & - '../../data/regular_latlon_surface_prec.grib1','w') + call codes_open_file(outfile, & + '../../data/regular_latlon_surface_prec.grib1', 'w') - ! a new grib message is loaded from file - ! igrib is the grib id to be used in subsequent calls - call codes_grib_new_from_file(infile,igrib) + ! a new grib message is loaded from file + ! igrib is the grib id to be used in subsequent calls + call codes_grib_new_from_file(infile, igrib) - ! bitsPerValue before changing the packing parameters - call codes_get(igrib,'bitsPerValue',bitsPerValue1) + ! bitsPerValue before changing the packing parameters + call codes_get(igrib, 'bitsPerValue', bitsPerValue1) - ! get the size of the values array - call codes_get_size(igrib,"values",size1) + ! get the size of the values array + call codes_get_size(igrib, "values", size1) - allocate(values1(size1), stat=iret) - allocate(values2(size1), stat=iret) - ! get data values before changing the packing parameters*/ - call codes_get(igrib,"values",values1) + allocate (values1(size1), stat=iret) + allocate (values2(size1), stat=iret) + ! get data values before changing the packing parameters*/ + call codes_get(igrib, "values", values1) - ! setting decimal precision=2 means that 2 decimal digits - ! are preserved when packing. - decimalPrecision=2 - call codes_set(igrib,"changeDecimalPrecision", & - decimalPrecision) + ! setting decimal precision=2 means that 2 decimal digits + ! are preserved when packing. + decimalPrecision = 2 + call codes_set(igrib, "changeDecimalPrecision", & + decimalPrecision) - ! bitsPerValue after changing the packing parameters - call codes_get(igrib,"bitsPerValue",bitsPerValue2) + ! bitsPerValue after changing the packing parameters + call codes_get(igrib, "bitsPerValue", bitsPerValue2) - ! get data values after changing the packing parameters - call codes_get(igrib,"values",values2) + ! get data values after changing the packing parameters + call codes_get(igrib, "values", values2) - ! computing error - maxa=0 - maxr=0 - maxv=values2(1) - minv=maxv - do i=1,size1 - a=abs(values2(i)-values1(i)) - if ( values2(i) .gt. maxv ) maxv=values2(i) - if ( values2(i) .lt. maxv ) minv=values2(i) - if ( values2(i) .ne. 0 ) then - r=abs((values2(i)-values1(i))/values2(i)) - endif - if ( a .gt. maxa ) maxa=a - if ( r .gt. maxr ) maxr=r - enddo - write(*,*) "max absolute error = ",maxa - write(*,*) "max relative error = ",maxr - write(*,*) "min value = ",minv - write(*,*) "max value = ",maxv + ! computing error + maxa = 0 + maxr = 0 + maxv = values2(1) + minv = maxv + do i = 1, size1 + a = abs(values2(i) - values1(i)) + if (values2(i) .gt. maxv) maxv = values2(i) + if (values2(i) .lt. maxv) minv = values2(i) + if (values2(i) .ne. 0) then + r = abs((values2(i) - values1(i))/values2(i)) + end if + if (a .gt. maxa) maxa = a + if (r .gt. maxr) maxr = r + end do + write (*, *) "max absolute error = ", maxa + write (*, *) "max relative error = ", maxr + write (*, *) "min value = ", minv + write (*, *) "max value = ", maxv - write(*,*) "old number of bits per value=",bitsPerValue1 - write(*,*) "new number of bits per value=",bitsPerValue2 + write (*, *) "old number of bits per value=", bitsPerValue1 + write (*, *) "new number of bits per value=", bitsPerValue2 - ! write modified message to a file - call codes_write(igrib,outfile) + ! write modified message to a file + call codes_write(igrib, outfile) - call codes_release(igrib) + call codes_release(igrib) - call codes_close_file(infile) + call codes_close_file(infile) - call codes_close_file(outfile) + call codes_close_file(outfile) - deallocate(values1) - deallocate(values2) + deallocate (values1) + deallocate (values2) end program precision diff --git a/examples/F90/grib_print_data.f90 b/examples/F90/grib_print_data.f90 index 9225908eb..a2aa3757b 100644 --- a/examples/F90/grib_print_data.f90 +++ b/examples/F90/grib_print_data.f90 @@ -12,49 +12,49 @@ ! ! program print_data -use eccodes -implicit none -integer :: ifile -integer :: iret -integer :: igrib -integer :: i -real(kind=8), dimension(:), allocatable :: values -integer(kind=4) :: numPoints -real(kind=8) :: average -real(kind=8) :: the_max -real(kind=8) :: the_min + use eccodes + implicit none + integer :: ifile + integer :: iret + integer :: igrib + integer :: i + real(kind=8), dimension(:), allocatable :: values + integer(kind=4) :: numPoints + real(kind=8) :: average + real(kind=8) :: the_max + real(kind=8) :: the_min - call codes_open_file(ifile, & - '../../data/constant_field.grib1','r') + call codes_open_file(ifile, & + '../../data/constant_field.grib1', 'r') - ! A new GRIB message is loaded from file - ! igrib is the grib id to be used in subsequent calls - call codes_grib_new_from_file(ifile,igrib) + ! A new GRIB message is loaded from file + ! igrib is the grib id to be used in subsequent calls + call codes_grib_new_from_file(ifile, igrib) - ! Get the size of the values array - call codes_get_size(igrib,'values',numPoints) + ! Get the size of the values array + call codes_get_size(igrib, 'values', numPoints) - ! Get data values - print*, 'number of points ', numPoints - allocate(values(numPoints), stat=iret) + ! Get data values + print *, 'number of points ', numPoints + allocate (values(numPoints), stat=iret) - call codes_get(igrib,'values',values) + call codes_get(igrib, 'values', values) - do i=1,numPoints - write(*,*)' ',i,values(i) - enddo + do i = 1, numPoints + write (*, *) ' ', i, values(i) + end do - write(*,*)numPoints,' values found ' + write (*, *) numPoints, ' values found ' - call codes_get(igrib,'max',the_max) - write(*,*) 'max=',the_max - call codes_get(igrib,'min',the_min) - write(*,*) 'min=',the_min - call codes_get(igrib,'average',average) - write(*,*) 'average=',average + call codes_get(igrib, 'max', the_max) + write (*, *) 'max=', the_max + call codes_get(igrib, 'min', the_min) + write (*, *) 'min=', the_min + call codes_get(igrib, 'average', average) + write (*, *) 'average=', average - call codes_release(igrib) - call codes_close_file(ifile) - deallocate(values) + call codes_release(igrib) + call codes_close_file(ifile) + deallocate (values) end program print_data diff --git a/examples/F90/grib_print_data_static.f90 b/examples/F90/grib_print_data_static.f90 index 28a64fff7..e83af8f48 100644 --- a/examples/F90/grib_print_data_static.f90 +++ b/examples/F90/grib_print_data_static.f90 @@ -13,46 +13,46 @@ ! ! program print_data -use grib_api -implicit none -integer :: ifile -integer :: igrib -integer :: i -real(kind=8), dimension(99200) :: values_static -integer(kind=4) :: numPoints -real(kind=8) :: average -real(kind=8) :: the_max -real(kind=8) :: the_min + use grib_api + implicit none + integer :: ifile + integer :: igrib + integer :: i + real(kind=8), dimension(99200) :: values_static + integer(kind=4) :: numPoints + real(kind=8) :: average + real(kind=8) :: the_max + real(kind=8) :: the_min - call grib_open_file(ifile, & - '../../data/constant_field.grib1','r') + call grib_open_file(ifile, & + '../../data/constant_field.grib1', 'r') - ! A new GRIB message is loaded from file - ! igrib is the grib id to be used in subsequent calls - call grib_new_from_file(ifile,igrib) + ! A new GRIB message is loaded from file + ! igrib is the grib id to be used in subsequent calls + call grib_new_from_file(ifile, igrib) - ! Get the size of the values array - call grib_get_size(igrib,'values',numPoints) + ! Get the size of the values array + call grib_get_size(igrib, 'values', numPoints) - ! Get data values - print*, 'number of points ', numPoints + ! Get data values + print *, 'number of points ', numPoints - call grib_get(igrib,'values',values_static) + call grib_get(igrib, 'values', values_static) - do i=1,numPoints - write(*,*)' ',i,values_static(i) - enddo + do i = 1, numPoints + write (*, *) ' ', i, values_static(i) + end do - write(*,*)numPoints,' values found ' + write (*, *) numPoints, ' values found ' - call grib_get(igrib,'max',the_max) - write(*,*) 'max=',the_max - call grib_get(igrib,'min',the_min) - write(*,*) 'min=',the_min - call grib_get(igrib,'average',average) - write(*,*) 'average=',average + call grib_get(igrib, 'max', the_max) + write (*, *) 'max=', the_max + call grib_get(igrib, 'min', the_min) + write (*, *) 'min=', the_min + call grib_get(igrib, 'average', average) + write (*, *) 'average=', average - call grib_release(igrib) - call grib_close_file(ifile) + call grib_release(igrib) + call grib_close_file(ifile) end program print_data diff --git a/examples/F90/grib_read_message.f90 b/examples/F90/grib_read_message.f90 index ac0f80ff2..42c557df3 100644 --- a/examples/F90/grib_read_message.f90 +++ b/examples/F90/grib_read_message.f90 @@ -9,45 +9,45 @@ ! Description: how to get values using keys. ! program grib_read_message -use eccodes -implicit none - integer :: ifile,ofile - integer :: iret,igrib - integer , dimension(50000) :: buffer - integer(kind=kindOfSize_t) :: len1 - integer :: step,level + use eccodes + implicit none + integer :: ifile, ofile + integer :: iret, igrib + integer, dimension(50000) :: buffer + integer(kind=kindOfSize_t) :: len1 + integer :: step, level - call codes_open_file(ifile,'../../data/index.grib','r') - call codes_open_file(ofile,'out.readmsg.grib','w') + call codes_open_file(ifile, '../../data/index.grib', 'r') + call codes_open_file(ofile, 'out.readmsg.grib', 'w') ! a grib message is read from file into buffer - len1=size(buffer)*4 - call codes_read_from_file(ifile,buffer,len1,iret) + len1 = size(buffer)*4 + call codes_read_from_file(ifile, buffer, len1, iret) - do while (iret/=CODES_END_OF_FILE) + do while (iret /= CODES_END_OF_FILE) ! a new grib message is created from buffer - call codes_new_from_message(igrib,buffer) + call codes_new_from_message(igrib, buffer) ! get as a integer - call codes_get(igrib,'step', step) - write(*,*) 'step=',step + call codes_get(igrib, 'step', step) + write (*, *) 'step=', step - call codes_get(igrib,'level',level) - write(*,*) 'level=',level + call codes_get(igrib, 'level', level) + write (*, *) 'level=', level - call codes_release(igrib) + call codes_release(igrib) - call codes_write_bytes(ofile,buffer,len1) + call codes_write_bytes(ofile, buffer, len1) ! a grib message is read from file into buffer - len1=size(buffer)*4 - call codes_read_from_file(ifile,buffer,len1,iret) + len1 = size(buffer)*4 + call codes_read_from_file(ifile, buffer, len1, iret) - enddo + end do - call codes_close_file(ifile) - call codes_close_file(ofile) + call codes_close_file(ifile) + call codes_close_file(ofile) end program grib_read_message diff --git a/examples/F90/grib_samples.f90 b/examples/F90/grib_samples.f90 index cd64b6a4b..4c0edf606 100644 --- a/examples/F90/grib_samples.f90 +++ b/examples/F90/grib_samples.f90 @@ -11,86 +11,86 @@ ! ! program sample - use eccodes - implicit none - integer :: err - integer :: outfile, datafile - integer :: igribsample,igribclone,igribdata, size1 - integer :: date1, startStep, endStep, table2Version, indicatorOfParameter - integer :: decimalPrecision - character(len=10) stepType - real(kind=8), dimension(:), allocatable :: v1,v2,v + use eccodes + implicit none + integer :: err + integer :: outfile, datafile + integer :: igribsample, igribclone, igribdata, size1 + integer :: date1, startStep, endStep, table2Version, indicatorOfParameter + integer :: decimalPrecision + character(len=10) stepType + real(kind=8), dimension(:), allocatable :: v1, v2, v - date1 = 20080104 - startStep = 0 - endStep = 12 - stepType = 'accum' - table2Version = 2 - indicatorOfParameter = 61 - decimalPrecision = 2 + date1 = 20080104 + startStep = 0 + endStep = 12 + stepType = 'accum' + table2Version = 2 + indicatorOfParameter = 61 + decimalPrecision = 2 - ! A new grib message is loaded from an existing sample. - ! Samples are searched in a default sample path (use codes_info - ! to see where that is). The default sample path can be changed by - ! setting the environment variable ECCODES_SAMPLES_PATH - call codes_grib_new_from_samples(igribsample, "regular_latlon_surface.grib1") + ! A new grib message is loaded from an existing sample. + ! Samples are searched in a default sample path (use codes_info + ! to see where that is). The default sample path can be changed by + ! setting the environment variable ECCODES_SAMPLES_PATH + call codes_grib_new_from_samples(igribsample, "regular_latlon_surface.grib1") - call codes_open_file(outfile, 'f_out.samples.grib1','w') - call codes_open_file(datafile,'../../data/tp_ecmwf.grib','r') + call codes_open_file(outfile, 'f_out.samples.grib1', 'w') + call codes_open_file(datafile, '../../data/tp_ecmwf.grib', 'r') - call codes_grib_new_from_file(datafile,igribdata,err) + call codes_grib_new_from_file(datafile, igribdata, err) - call codes_get_size(igribdata,'values',size1) - allocate(v(size1)) - allocate(v1(size1)) - allocate(v2(size1)) + call codes_get_size(igribdata, 'values', size1) + allocate (v(size1)) + allocate (v1(size1)) + allocate (v2(size1)) - call codes_get(igribdata,'values',v) + call codes_get(igribdata, 'values', v) - v=v*1000.0 ! different units for the output grib - v1=v + v = v*1000.0 ! different units for the output grib + v1 = v - do while (err/=CODES_END_OF_FILE) + do while (err /= CODES_END_OF_FILE) - call codes_clone(igribsample,igribclone) ! clone sample before modifying it + call codes_clone(igribsample, igribclone) ! clone sample before modifying it - call codes_set(igribclone,'dataDate',date1) - call codes_set(igribclone,'table2Version',table2Version) - call codes_set(igribclone,'indicatorOfParameter',indicatorOfParameter) + call codes_set(igribclone, 'dataDate', date1) + call codes_set(igribclone, 'table2Version', table2Version) + call codes_set(igribclone, 'indicatorOfParameter', indicatorOfParameter) - call codes_set(igribclone,'stepType',stepType) - call codes_set(igribclone,'startStep',startStep) - call codes_set(igribclone,'endStep',endStep) + call codes_set(igribclone, 'stepType', stepType) + call codes_set(igribclone, 'startStep', startStep) + call codes_set(igribclone, 'endStep', endStep) - call codes_set(igribclone,'decimalPrecision',decimalPrecision) + call codes_set(igribclone, 'decimalPrecision', decimalPrecision) - call codes_set(igribclone,'values',v) + call codes_set(igribclone, 'values', v) - call codes_write(igribclone,outfile) + call codes_write(igribclone, outfile) - call codes_grib_new_from_file(datafile,igribdata,err) + call codes_grib_new_from_file(datafile, igribdata, err) - if (err==0) then - call codes_get(igribdata,'values',v2) + if (err == 0) then + call codes_get(igribdata, 'values', v2) - v2=v2*1000.0 ! different units for the output grib + v2 = v2*1000.0 ! different units for the output grib - v=v2-v1 ! accumulation from startStep to endStep + v = v2 - v1 ! accumulation from startStep to endStep - v1=v2 ! save previous step field + v1 = v2 ! save previous step field - startStep=startStep+12 - endStep=endStep+12 + startStep = startStep + 12 + endStep = endStep + 12 - endif + end if - enddo + end do - call codes_release(igribsample) - deallocate(v) - deallocate(v1) - deallocate(v2) + call codes_release(igribsample) + deallocate (v) + deallocate (v1) + deallocate (v2) - call codes_close_file(outfile) + call codes_close_file(outfile) end program sample diff --git a/examples/F90/grib_set_bitmap.f90 b/examples/F90/grib_set_bitmap.f90 index e9b4c064c..e2c2d6de4 100644 --- a/examples/F90/grib_set_bitmap.f90 +++ b/examples/F90/grib_set_bitmap.f90 @@ -13,67 +13,67 @@ ! ! program set_bitmap - use eccodes - implicit none - integer :: infile,outfile - integer :: igrib, iret - integer :: numberOfValues - real, dimension(:), allocatable :: values - real :: missingValue - logical :: grib1Example + use eccodes + implicit none + integer :: infile, outfile + integer :: igrib, iret + integer :: numberOfValues + real, dimension(:), allocatable :: values + real :: missingValue + logical :: grib1Example - grib1Example=.true. + grib1Example = .true. - if (grib1Example) then - ! GRIB 1 example - call codes_open_file(infile,'../../data/regular_latlon_surface.grib1','r') - else - ! GRIB 2 example - call codes_open_file(infile,'../../data/regular_latlon_surface.grib2','r') - end if + if (grib1Example) then + ! GRIB 1 example + call codes_open_file(infile, '../../data/regular_latlon_surface.grib1', 'r') + else + ! GRIB 2 example + call codes_open_file(infile, '../../data/regular_latlon_surface.grib2', 'r') + end if - call codes_open_file(outfile,'out.set_bitmap_f.grib','w') + call codes_open_file(outfile, 'out.set_bitmap_f.grib', 'w') - ! A new grib message is loaded from file - ! igrib is the grib id to be used in subsequent calls - call codes_grib_new_from_file(infile,igrib) + ! A new grib message is loaded from file + ! igrib is the grib id to be used in subsequent calls + call codes_grib_new_from_file(infile, igrib) - ! The missingValue is not coded in the message. - ! It is a value we define as a placeholder for a missing value - ! at a point in the grid. - ! It should be chosen so that it cannot be confused - ! with a valid field value - missingValue=9999 - call codes_set(igrib, 'missingValue',missingValue) - write(*,*) 'missingValue=',missingValue + ! The missingValue is not coded in the message. + ! It is a value we define as a placeholder for a missing value + ! at a point in the grid. + ! It should be chosen so that it cannot be confused + ! with a valid field value + missingValue = 9999 + call codes_set(igrib, 'missingValue', missingValue) + write (*, *) 'missingValue=', missingValue - ! get the size of the values array - call codes_get_size(igrib,'values',numberOfValues) - write(*,*) 'numberOfValues=',numberOfValues + ! get the size of the values array + call codes_get_size(igrib, 'values', numberOfValues) + write (*, *) 'numberOfValues=', numberOfValues - allocate(values(numberOfValues), stat=iret) + allocate (values(numberOfValues), stat=iret) - ! get data values - call codes_get(igrib,'values',values) + ! get data values + call codes_get(igrib, 'values', values) - ! enable bitmap - call codes_set(igrib, 'bitmapPresent', 1) + ! enable bitmap + call codes_set(igrib, 'bitmapPresent', 1) - ! set some values to be missing - values(1:10) = missingValue + ! set some values to be missing + values(1:10) = missingValue - ! set the values (the bitmap will be automatically built) - call codes_set(igrib,'values', values) + ! set the values (the bitmap will be automatically built) + call codes_set(igrib, 'values', values) - ! write modified message to a file - call codes_write(igrib,outfile) + ! write modified message to a file + call codes_write(igrib, outfile) - ! free memory - call codes_release(igrib) + ! free memory + call codes_release(igrib) - call codes_close_file(infile) - call codes_close_file(outfile) + call codes_close_file(infile) + call codes_close_file(outfile) - deallocate(values) + deallocate (values) end program set_bitmap diff --git a/examples/F90/grib_set_data.f90 b/examples/F90/grib_set_data.f90 index fcaa2711b..3ceec5535 100644 --- a/examples/F90/grib_set_data.f90 +++ b/examples/F90/grib_set_data.f90 @@ -13,51 +13,51 @@ ! If there are missing values, refer to: grib_set_bitmap ! program set_data - use eccodes - implicit none - integer :: outfile - integer :: i, igrib, iret, numberOfValues, cnt - real :: d, e - real, dimension(:), allocatable :: values - integer, parameter :: max_strsize = 200 - character(len=max_strsize) :: outfile_name + use eccodes + implicit none + integer :: outfile + integer :: i, igrib, iret, numberOfValues, cnt + real :: d, e + real, dimension(:), allocatable :: values + integer, parameter :: max_strsize = 200 + character(len=max_strsize) :: outfile_name - call getarg(1, outfile_name) - call codes_open_file(outfile,outfile_name,'w') + call getarg(1, outfile_name) + call codes_open_file(outfile, outfile_name, 'w') - ! Note: the full name of the sample file is "regular_ll_pl_grib1.tmpl" - ! Sample files are stored in the samples directory (use codes_info to - ! see where that is). The default sample path can be changed by - ! setting the environment variable ECCODES_SAMPLES_PATH - call codes_grib_new_from_samples(igrib, 'regular_ll_pl_grib1') + ! Note: the full name of the sample file is "regular_ll_pl_grib1.tmpl" + ! Sample files are stored in the samples directory (use codes_info to + ! see where that is). The default sample path can be changed by + ! setting the environment variable ECCODES_SAMPLES_PATH + call codes_grib_new_from_samples(igrib, 'regular_ll_pl_grib1') - ! Here we're changing the data values only, so the number of values - ! will be the same as the sample GRIB. - ! But if your data array has a different size, then specify the grid geometry - ! (e.g. keys Ni, Nj etc) and set the correct number of data values - call codes_get_size(igrib,'values',numberOfValues) + ! Here we're changing the data values only, so the number of values + ! will be the same as the sample GRIB. + ! But if your data array has a different size, then specify the grid geometry + ! (e.g. keys Ni, Nj etc) and set the correct number of data values + call codes_get_size(igrib, 'values', numberOfValues) - allocate(values(numberOfValues), stat=iret) - d = 10e-8 - e = d - cnt = 1 - do i=1,numberOfValues - if (cnt>100) then - e = e*10 - cnt=1 - endif - values(i) = d - !print *, values(i) - d = d + e - cnt = cnt + 1 - end do + allocate (values(numberOfValues), stat=iret) + d = 10e-8 + e = d + cnt = 1 + do i = 1, numberOfValues + if (cnt > 100) then + e = e*10 + cnt = 1 + end if + values(i) = d + !print *, values(i) + d = d + e + cnt = cnt + 1 + end do - call codes_set(igrib, 'bitsPerValue', 16) + call codes_set(igrib, 'bitsPerValue', 16) - ! set data values - call codes_set(igrib,'values', values) - call codes_write(igrib,outfile) - call codes_release(igrib) - deallocate(values) + ! set data values + call codes_set(igrib, 'values', values) + call codes_write(igrib, outfile) + call codes_release(igrib) + deallocate (values) end program set_data diff --git a/examples/F90/grib_set_gvc.f90 b/examples/F90/grib_set_gvc.f90 index 994ead1e5..763c44a53 100644 --- a/examples/F90/grib_set_gvc.f90 +++ b/examples/F90/grib_set_gvc.f90 @@ -13,55 +13,55 @@ ! ! program set - use eccodes - implicit none - integer :: infile,outfile - integer :: igrib + use eccodes + implicit none + integer :: infile, outfile + integer :: igrib - call codes_open_file(infile, '../../data/sample.grib2','r') + call codes_open_file(infile, '../../data/sample.grib2', 'r') - call codes_open_file(outfile, 'out_gvc.grib2','w') + call codes_open_file(outfile, 'out_gvc.grib2', 'w') - call codes_grib_new_from_file(infile,igrib) + call codes_grib_new_from_file(infile, igrib) - ! Individual ensemble forecast - call codes_set(igrib,'productDefinitionTemplateNumber', 11) + ! Individual ensemble forecast + call codes_set(igrib, 'productDefinitionTemplateNumber', 11) - ! Select level type as Generalized Vertical Height Coordinate - call codes_set(igrib,'typeOfLevel', 'generalVertical') + ! Select level type as Generalized Vertical Height Coordinate + call codes_set(igrib, 'typeOfLevel', 'generalVertical') - ! Now set keys specific to this level type - call codes_set(igrib,'nlev', 12.21) - call codes_set(igrib,'numberOfVGridUsed', 13.55) + ! Now set keys specific to this level type + call codes_set(igrib, 'nlev', 12.21) + call codes_set(igrib, 'numberOfVGridUsed', 13.55) - ! check integrity of GRIB message - call check_settings(igrib) + ! check integrity of GRIB message + call check_settings(igrib) - ! write modified message to a file - call codes_write(igrib,outfile) + ! write modified message to a file + call codes_write(igrib, outfile) - call codes_release(igrib) - call codes_close_file(infile) - call codes_close_file(outfile) + call codes_release(igrib) + call codes_close_file(infile) + call codes_close_file(outfile) contains !====================================== -subroutine check_settings(gribid) - implicit none - integer, intent(in) :: gribid + subroutine check_settings(gribid) + implicit none + integer, intent(in) :: gribid - integer(kind = 4) :: NV,typeOfFirstFixedSurface + integer(kind=4) :: NV, typeOfFirstFixedSurface - call codes_get(gribid,'NV', NV) - if (NV /= 6) then - call codes_check(-2, 'NV_should_be_6', '') - end if + call codes_get(gribid, 'NV', NV) + if (NV /= 6) then + call codes_check(-2, 'NV_should_be_6', '') + end if - call codes_get(gribid,'typeOfFirstFixedSurface', typeOfFirstFixedSurface) - if (typeOfFirstFixedSurface /= 150) then - call codes_check(-2, 'typeOfFirstFixedSurface_should_be_150', '') - end if + call codes_get(gribid, 'typeOfFirstFixedSurface', typeOfFirstFixedSurface) + if (typeOfFirstFixedSurface /= 150) then + call codes_check(-2, 'typeOfFirstFixedSurface_should_be_150', '') + end if -end subroutine check_settings + end subroutine check_settings end program set diff --git a/examples/F90/grib_set_keys.f90 b/examples/F90/grib_set_keys.f90 index 60e76e6f0..dfbb7b9b5 100644 --- a/examples/F90/grib_set_keys.f90 +++ b/examples/F90/grib_set_keys.f90 @@ -11,69 +11,69 @@ ! ! program set - use eccodes - implicit none - integer(kind = 4) :: centre, date1 - integer :: infile,outfile - integer :: igrib - character(len=12) :: marsType = 'ses' + use eccodes + implicit none + integer(kind=4) :: centre, date1 + integer :: infile, outfile + integer :: igrib + character(len=12) :: marsType = 'ses' - centre = 80 - call current_date(date1) - call codes_open_file(infile, '../../data/regular_latlon_surface_constant.grib1','r') - call codes_open_file(outfile, 'out.set.grib1','w') + centre = 80 + call current_date(date1) + call codes_open_file(infile, '../../data/regular_latlon_surface_constant.grib1', 'r') + call codes_open_file(outfile, 'out.set.grib1', 'w') - ! A new GRIB message is loaded from file - ! igrib is the grib id to be used in subsequent calls - call codes_grib_new_from_file(infile,igrib) + ! A new GRIB message is loaded from file + ! igrib is the grib id to be used in subsequent calls + call codes_grib_new_from_file(infile, igrib) - call codes_set(igrib,'dataDate',date1) - call codes_set(igrib,'type', marsType) + call codes_set(igrib, 'dataDate', date1) + call codes_set(igrib, 'type', marsType) - ! set centre as a integer */ - call codes_set(igrib,'centre',centre) + ! set centre as a integer */ + call codes_set(igrib, 'centre', centre) - ! Check if it is correct in the actual GRIB message - call check_settings(igrib) + ! Check if it is correct in the actual GRIB message + call check_settings(igrib) - ! Write modified message to a file - call codes_write(igrib,outfile) + ! Write modified message to a file + call codes_write(igrib, outfile) - call codes_release(igrib) + call codes_release(igrib) - call codes_close_file(infile) - call codes_close_file(outfile) + call codes_close_file(infile) + call codes_close_file(outfile) contains !====================================== -subroutine current_date(date1) -integer, intent(out) :: date1 + subroutine current_date(date1) + integer, intent(out) :: date1 -integer :: val_date(8) -call date_and_time ( values = val_date) + integer :: val_date(8) + call date_and_time(values=val_date) -date1 = val_date(1)* 10000 + val_date(2)*100 + val_date(3) -end subroutine current_date + date1 = val_date(1)*10000 + val_date(2)*100 + val_date(3) + end subroutine current_date !====================================== -subroutine check_settings(gribid) - implicit none - integer, intent(in) :: gribid + subroutine check_settings(gribid) + implicit none + integer, intent(in) :: gribid - integer(kind = 4) :: int_value - character(len = 10) :: string_value + integer(kind=4) :: int_value + character(len=10) :: string_value - ! get centre as a integer - call codes_get(gribid,'centre',int_value) - write(*,*) "get centre as a integer - centre = ",int_value + ! get centre as a integer + call codes_get(gribid, 'centre', int_value) + write (*, *) "get centre as a integer - centre = ", int_value - ! get centre as a string - call codes_get(gribid,'centre',string_value) - write(*,*) "get centre as a string - centre = ",string_value + ! get centre as a string + call codes_get(gribid, 'centre', string_value) + write (*, *) "get centre as a string - centre = ", string_value - ! get date as a string - call codes_get(gribid,'dataDate',string_value) - write(*,*) "get date as a string - date = ",string_value + ! get date as a string + call codes_get(gribid, 'dataDate', string_value) + write (*, *) "get date as a string - date = ", string_value -end subroutine check_settings + end subroutine check_settings end program set diff --git a/examples/F90/grib_set_missing.f90 b/examples/F90/grib_set_missing.f90 index e225b43eb..3f502268a 100644 --- a/examples/F90/grib_set_missing.f90 +++ b/examples/F90/grib_set_missing.f90 @@ -13,40 +13,40 @@ ! ! program set - use eccodes - implicit none - integer :: infile,outfile - integer :: igrib, Ni, is_missing + use eccodes + implicit none + integer :: infile, outfile + integer :: igrib, Ni, is_missing - infile=5 - outfile=6 + infile = 5 + outfile = 6 - call codes_open_file(infile, & - '../../data/reduced_gaussian_pressure_level.grib2','r') + call codes_open_file(infile, & + '../../data/reduced_gaussian_pressure_level.grib2', 'r') - call codes_open_file(outfile, & - 'f_out_surface_level.grib2','w') + call codes_open_file(outfile, & + 'f_out_surface_level.grib2', 'w') - ! a new grib message is loaded from file - ! igrib is the grib id to be used in subsequent calls - call codes_grib_new_from_file(infile,igrib) + ! a new grib message is loaded from file + ! igrib is the grib id to be used in subsequent calls + call codes_grib_new_from_file(infile, igrib) - call codes_set(igrib,'typeOfFirstFixedSurface','sfc') - call codes_set_missing(igrib,'scaleFactorOfFirstFixedSurface') - call codes_set_missing(igrib,'scaledValueOfFirstFixedSurface') + call codes_set(igrib, 'typeOfFirstFixedSurface', 'sfc') + call codes_set_missing(igrib, 'scaleFactorOfFirstFixedSurface') + call codes_set_missing(igrib, 'scaledValueOfFirstFixedSurface') - ! See GRIB-490 - call codes_get(igrib, 'Ni', Ni) - call codes_is_missing(igrib,'Ni',is_missing) - if ( is_missing == 0 ) then - ! Ni should be missing in gribs with Reduced Gaussian grids - call codes_check(-2, 'Ni_should_be_missing', '') - endif - call codes_set(igrib, 'Ni', Ni) + ! See GRIB-490 + call codes_get(igrib, 'Ni', Ni) + call codes_is_missing(igrib, 'Ni', is_missing) + if (is_missing == 0) then + ! Ni should be missing in gribs with Reduced Gaussian grids + call codes_check(-2, 'Ni_should_be_missing', '') + end if + call codes_set(igrib, 'Ni', Ni) - call codes_write(igrib,outfile) - call codes_release(igrib) - call codes_close_file(infile) - call codes_close_file(outfile) + call codes_write(igrib, outfile) + call codes_release(igrib) + call codes_close_file(infile) + call codes_close_file(outfile) end program set diff --git a/examples/F90/grib_set_packing.f90 b/examples/F90/grib_set_packing.f90 index be2babada..eb03bc3c9 100644 --- a/examples/F90/grib_set_packing.f90 +++ b/examples/F90/grib_set_packing.f90 @@ -10,45 +10,45 @@ ! e.g. Simple packing, CCSDS ! program set_packing - use eccodes - implicit none - integer :: outfile - integer :: i, igrib, iret, numberOfValues, cnt - real :: d, e - real, dimension(:), allocatable :: values - integer, parameter :: max_strsize = 200 - character(len=max_strsize) :: outfile_name, packing_type + use eccodes + implicit none + integer :: outfile + integer :: i, igrib, iret, numberOfValues, cnt + real :: d, e + real, dimension(:), allocatable :: values + integer, parameter :: max_strsize = 200 + character(len=max_strsize) :: outfile_name, packing_type - call getarg(1, packing_type) - call getarg(2, outfile_name) + call getarg(1, packing_type) + call getarg(2, outfile_name) - call codes_open_file(outfile,outfile_name,'w') + call codes_open_file(outfile, outfile_name, 'w') - call codes_grib_new_from_samples(igrib, 'gg_sfc_grib2') + call codes_grib_new_from_samples(igrib, 'gg_sfc_grib2') - call codes_get_size(igrib,'values', numberOfValues) - allocate(values(numberOfValues), stat=iret) - d = 10e-6 - e = d - cnt = 1 - do i=1,numberOfValues - if (cnt>100) then - e = e*1.01 - cnt=1 - endif - values(i) = d - d = d + e - cnt = cnt + 1 - end do + call codes_get_size(igrib, 'values', numberOfValues) + allocate (values(numberOfValues), stat=iret) + d = 10e-6 + e = d + cnt = 1 + do i = 1, numberOfValues + if (cnt > 100) then + e = e*1.01 + cnt = 1 + end if + values(i) = d + d = d + e + cnt = cnt + 1 + end do - call codes_set(igrib, 'numberOfBitsContainingEachPackedValue', 16) - call codes_set(igrib, 'packingType', packing_type) + call codes_set(igrib, 'numberOfBitsContainingEachPackedValue', 16) + call codes_set(igrib, 'packingType', packing_type) - ! set data values - call codes_set(igrib, 'values', values) + ! set data values + call codes_set(igrib, 'values', values) - call codes_write(igrib, outfile) - call codes_release(igrib) - deallocate(values) + call codes_write(igrib, outfile) + call codes_release(igrib) + deallocate (values) end program set_packing diff --git a/examples/F90/grib_set_pv.f90 b/examples/F90/grib_set_pv.f90 index 9b35fbd7f..212697339 100644 --- a/examples/F90/grib_set_pv.f90 +++ b/examples/F90/grib_set_pv.f90 @@ -12,62 +12,62 @@ ! ! program grib_set_pv - use eccodes - implicit none - integer :: numberOfLevels - integer :: numberOfCoefficients - integer :: outfile, igrib - integer :: i, ios - real, dimension(:),allocatable :: pv + use eccodes + implicit none + integer :: numberOfLevels + integer :: numberOfCoefficients + integer :: outfile, igrib + integer :: i, ios + real, dimension(:), allocatable :: pv - numberOfLevels=60 - numberOfCoefficients=2*(numberOfLevels+1) + numberOfLevels = 60 + numberOfCoefficients = 2*(numberOfLevels + 1) - allocate(pv(numberOfCoefficients)) + allocate (pv(numberOfCoefficients)) - ! read the model level coefficients from file - open( unit=1, file="../../data/60_model_levels", & - form="formatted",action="read") + ! read the model level coefficients from file + open (unit=1, file="../../data/60_model_levels", & + form="formatted", action="read") - do i=1,numberOfCoefficients,2 - read(unit=1,fmt=*, iostat=ios) pv(i), pv(i+1) - if (ios /= 0) then - print *, "I/O error: ",ios - exit - end if - end do + do i = 1, numberOfCoefficients, 2 + read (unit=1, fmt=*, iostat=ios) pv(i), pv(i + 1) + if (ios /= 0) then + print *, "I/O error: ", ios + exit + end if + end do - ! print coefficients - !do i=1,numberOfCoefficients,2 - ! print *," a=",pv(i)," b=",pv(i+1) - !end do + ! print coefficients + !do i=1,numberOfCoefficients,2 + ! print *," a=",pv(i)," b=",pv(i+1) + !end do - close(unit=1) + close (unit=1) - call codes_open_file(outfile, 'out.pv.grib1','w') + call codes_open_file(outfile, 'out.pv.grib1', 'w') - ! A new grib message is loaded from file - ! igrib is the grib id to be used in subsequent calls - call codes_grib_new_from_samples(igrib, "reduced_gg_sfc_grib1") + ! A new grib message is loaded from file + ! igrib is the grib id to be used in subsequent calls + call codes_grib_new_from_samples(igrib, "reduced_gg_sfc_grib1") - ! set levtype to ml (model level) - call codes_set(igrib,'typeOfLevel','hybrid') + ! set levtype to ml (model level) + call codes_set(igrib, 'typeOfLevel', 'hybrid') - ! set level - call codes_set(igrib,'level',2) + ! set level + call codes_set(igrib, 'level', 2) - ! set PVPresent as an integer - call codes_set(igrib,'PVPresent',1) + ! set PVPresent as an integer + call codes_set(igrib, 'PVPresent', 1) - call codes_set(igrib,'pv',pv) + call codes_set(igrib, 'pv', pv) - ! write modified message to a file - call codes_write(igrib,outfile) + ! write modified message to a file + call codes_write(igrib, outfile) - ! Free memory - call codes_release(igrib) - deallocate(pv) + ! Free memory + call codes_release(igrib) + deallocate (pv) - call codes_close_file(outfile) + call codes_close_file(outfile) end program grib_set_pv diff --git a/examples/F90/iterator_fortran.f90 b/examples/F90/iterator_fortran.f90 index 73761833e..10aafaba6 100644 --- a/examples/F90/iterator_fortran.f90 +++ b/examples/F90/iterator_fortran.f90 @@ -11,60 +11,60 @@ ! ! program iterator -use eccodes -implicit none - integer :: ifile - integer :: iret,iter - real(kind=8) :: lat,lon,value,missingValue - integer :: n,flags + use eccodes + implicit none + integer :: ifile + integer :: iret, iter + real(kind=8) :: lat, lon, value, missingValue + integer :: n, flags - ! Message identifier. - integer :: igrib + ! Message identifier. + integer :: igrib - ifile=5 + ifile = 5 - call codes_open_file(ifile, & - '../../data/regular_latlon_surface_constant.grib1','R') + call codes_open_file(ifile, & + '../../data/regular_latlon_surface_constant.grib1', 'R') - ! Loop on all the messages in a file. - call codes_grib_new_from_file(ifile,igrib,iret) + ! Loop on all the messages in a file. + call codes_grib_new_from_file(ifile, igrib, iret) - LOOP: DO WHILE (iret/=CODES_END_OF_FILE) + LOOP: DO WHILE (iret /= CODES_END_OF_FILE) ! get as a real8 call codes_get(igrib, & - 'missingValue',missingValue) - write(*,*) 'missingValue=',missingValue + 'missingValue', missingValue) + write (*, *) 'missingValue=', missingValue ! A new iterator on lat/lon/values is created from the message igrib flags = 0 - call grib_iterator_new(igrib,iter,flags) + call grib_iterator_new(igrib, iter, flags) n = 0 ! Loop on all the lat/lon/values. - call grib_iterator_next(iter,lat,lon,value, iret) + call grib_iterator_next(iter, lat, lon, value, iret) do while (iret .ne. 0) ! You can now print lat and lon, - if ( value .eq. missingValue ) then - ! decide what to print if a missing value is found. - write(*,*) "- ",n," - lat=",lat," lon=",lon," value=missing" + if (value .eq. missingValue) then + ! decide what to print if a missing value is found. + write (*, *) "- ", n, " - lat=", lat, " lon=", lon, " value=missing" else - ! or print the value if is not missing. - write(*,*) " ",n," lat=",lat," lon=",lon," value=",value - endif + ! or print the value if is not missing. + write (*, *) " ", n, " lat=", lat, " lon=", lon, " value=", value + end if - n=n+1 + n = n + 1 - call grib_iterator_next(iter,lat,lon,value, iret) + call grib_iterator_next(iter, lat, lon, value, iret) end do - ! At the end the iterator is deleted to free memory. - call grib_iterator_delete(iter) - call codes_release(igrib) + ! At the end the iterator is deleted to free memory. + call grib_iterator_delete(iter) + call codes_release(igrib) - call codes_grib_new_from_file(ifile,igrib, iret) + call codes_grib_new_from_file(ifile, igrib, iret) - end do LOOP + end do LOOP - call codes_close_file(ifile) + call codes_close_file(ifile) - end program iterator +end program iterator diff --git a/examples/F90/keys_iterator_fortran.f90 b/examples/F90/keys_iterator_fortran.f90 index 6181948ea..4f4addff5 100644 --- a/examples/F90/keys_iterator_fortran.f90 +++ b/examples/F90/keys_iterator_fortran.f90 @@ -14,55 +14,55 @@ ! ! program keys_iterator - use eccodes - implicit none - integer :: kiter,ifile,igrib,iret - character(len=256) :: key - character(len=256) :: value - character(len=2048) :: all - integer :: len - integer :: grib_count - len=256 + use eccodes + implicit none + integer :: kiter, ifile, igrib, iret + character(len=256) :: key + character(len=256) :: value + character(len=2048) :: all + integer :: len + integer :: grib_count + len = 256 - ifile=5 + ifile = 5 - call codes_open_file(ifile, & - '../../data/regular_latlon_surface.grib1','r') + call codes_open_file(ifile, & + '../../data/regular_latlon_surface.grib1', 'r') - grib_count=0 - ! Loop on all the messages in a file. + grib_count = 0 + ! Loop on all the messages in a file. - call codes_grib_new_from_file(ifile,igrib) + call codes_grib_new_from_file(ifile, igrib) - do while (igrib .ne. -1) + do while (igrib .ne. -1) - grib_count=grib_count+1 - write(*,'("-- GRIB N.",I4," --")') grib_count + grib_count = grib_count + 1 + write (*, '("-- GRIB N.",I4," --")') grib_count - ! valid name_spaces are ls and mars - call codes_keys_iterator_new(igrib,kiter,'ls') + ! valid name_spaces are ls and mars + call codes_keys_iterator_new(igrib, kiter, 'ls') - if (kiter .eq. -1) then - print *, 'invalid key iterator' - endif + if (kiter .eq. -1) then + print *, 'invalid key iterator' + end if - do - call codes_keys_iterator_next(kiter, iret) + do + call codes_keys_iterator_next(kiter, iret) - if (iret .ne. CODES_SUCCESS) exit + if (iret .ne. CODES_SUCCESS) exit - call codes_keys_iterator_get_name(kiter,key) + call codes_keys_iterator_get_name(kiter, key) - call codes_get(igrib,key,value) - all='|'//trim(key)//'|'//' = '//'|'//trim(value)//'|' - write(*,*) trim(all) + call codes_get(igrib, key, value) + all = '|'//trim(key)//'|'//' = '//'|'//trim(value)//'|' + write (*, *) trim(all) + end do + + call codes_keys_iterator_delete(kiter) + call codes_release(igrib) + call codes_grib_new_from_file(ifile, igrib, iret) end do - call codes_keys_iterator_delete(kiter) - call codes_release(igrib) - call codes_grib_new_from_file(ifile,igrib, iret) - end do - - call codes_close_file(ifile) + call codes_close_file(ifile) end program keys_iterator diff --git a/examples/F90/multi_fortran.f90 b/examples/F90/multi_fortran.f90 index f8ecd3f40..b51fc14e2 100644 --- a/examples/F90/multi_fortran.f90 +++ b/examples/F90/multi_fortran.f90 @@ -14,53 +14,53 @@ ! ! program multi - use eccodes - implicit none + use eccodes + implicit none - integer :: iret - integer(kind = 4) :: parameterCategory,parameterNumber,discipline - integer :: ifile,igrib + integer :: iret + integer(kind=4) :: parameterCategory, parameterNumber, discipline + integer :: ifile, igrib - call codes_open_file(ifile, '../../data/multi.grib2','r') + call codes_open_file(ifile, '../../data/multi.grib2', 'r') - ! turn on support for multi fields messages */ - call codes_grib_multi_support_on() + ! turn on support for multi fields messages */ + call codes_grib_multi_support_on() - ! turn off support for multi fields messages */ - !call codes_grib_multi_support_off() + ! turn off support for multi fields messages */ + !call codes_grib_multi_support_off() - call codes_grib_new_from_file(ifile,igrib) - ! Loop on all the messages in a file. + call codes_grib_new_from_file(ifile, igrib) + ! Loop on all the messages in a file. - do while (igrib .ne. -1) + do while (igrib .ne. -1) - ! get as a integer*4 - call codes_get(igrib,'discipline',discipline) - write(*,*) 'discipline=',discipline + ! get as a integer*4 + call codes_get(igrib, 'discipline', discipline) + write (*, *) 'discipline=', discipline - ! get as a integer*4 - call codes_get(igrib,'parameterCategory', & - parameterCategory) - write(*,*) 'parameterCategory=',parameterCategory + ! get as a integer*4 + call codes_get(igrib, 'parameterCategory', & + parameterCategory) + write (*, *) 'parameterCategory=', parameterCategory - ! get as a integer*4 - call codes_get(igrib,'parameterNumber', & - parameterNumber) - write(*,*) 'parameterNumber=',parameterNumber + ! get as a integer*4 + call codes_get(igrib, 'parameterNumber', & + parameterNumber) + write (*, *) 'parameterNumber=', parameterNumber - if ( discipline .eq. 0 .and. parameterCategory .eq. 2) then - if (parameterNumber .eq. 2) then - write(*,*) "-------- u -------" - endif - if (parameterNumber .eq. 3) then - write(*,*) "-------- v -------" - endif - endif + if (discipline .eq. 0 .and. parameterCategory .eq. 2) then + if (parameterNumber .eq. 2) then + write (*, *) "-------- u -------" + end if + if (parameterNumber .eq. 3) then + write (*, *) "-------- v -------" + end if + end if - call codes_release(igrib) - call codes_grib_new_from_file(ifile,igrib, iret) + call codes_release(igrib) + call codes_grib_new_from_file(ifile, igrib, iret) - end do - call codes_close_file(ifile) + end do + call codes_close_file(ifile) end program multi diff --git a/examples/F90/new_from_file.f90 b/examples/F90/new_from_file.f90 index a80010f4b..d1eecf272 100644 --- a/examples/F90/new_from_file.f90 +++ b/examples/F90/new_from_file.f90 @@ -9,33 +9,32 @@ ! ! program new_from_file -use eccodes - implicit none - integer :: ifile - integer :: iret - integer :: count1=0 + use eccodes + implicit none + integer :: ifile + integer :: iret + integer :: count1 = 0 - ! Message identifier. - integer :: igrib + ! Message identifier. + integer :: igrib - ifile=5 + ifile = 5 - call codes_open_file(ifile,'../../data/collection.grib1','r') + call codes_open_file(ifile, '../../data/collection.grib1', 'r') - ! Loop on all the messages in a file. - call codes_grib_new_from_file(ifile,igrib, iret) + ! Loop on all the messages in a file. + call codes_grib_new_from_file(ifile, igrib, iret) - do while (iret==CODES_SUCCESS) - count1=count1+1 - print *, "===== Message #",count1 - call codes_grib_new_from_file(ifile,igrib, iret) + do while (iret == CODES_SUCCESS) + count1 = count1 + 1 + print *, "===== Message #", count1 + call codes_grib_new_from_file(ifile, igrib, iret) - end do - if (iret /= CODES_END_OF_FILE) then - call codes_check(iret,'new_from_file','') - endif + end do + if (iret /= CODES_END_OF_FILE) then + call codes_check(iret, 'new_from_file', '') + end if - - call codes_close_file(ifile) + call codes_close_file(ifile) end program diff --git a/examples/F90/precision_fortran.f90 b/examples/F90/precision_fortran.f90 index 7481140b6..4a64abf43 100644 --- a/examples/F90/precision_fortran.f90 +++ b/examples/F90/precision_fortran.f90 @@ -11,82 +11,82 @@ ! ! program precision - use eccodes - implicit none - integer(kind = 4) :: size - integer :: infile,outfile - integer :: igrib - real(kind = 8), dimension(:), allocatable :: values1 - real(kind = 8), dimension(:), allocatable :: values2 - real(kind = 8) :: maxa,a,maxv,minv,maxr,r - integer( kind = 4) :: decimalPrecision,bitsPerValue1,bitsPerValue2 - integer :: i, iret + use eccodes + implicit none + integer(kind=4) :: size + integer :: infile, outfile + integer :: igrib + real(kind=8), dimension(:), allocatable :: values1 + real(kind=8), dimension(:), allocatable :: values2 + real(kind=8) :: maxa, a, maxv, minv, maxr, r + integer(kind=4) :: decimalPrecision, bitsPerValue1, bitsPerValue2 + integer :: i, iret - call codes_open_file(infile, & - '../../data/regular_latlon_surface_constant.grib1','r') + call codes_open_file(infile, & + '../../data/regular_latlon_surface_constant.grib1', 'r') - call codes_open_file(outfile, & - '../../data/regular_latlon_surface_prec.grib1','w') + call codes_open_file(outfile, & + '../../data/regular_latlon_surface_prec.grib1', 'w') - ! a new grib message is loaded from file - ! igrib is the grib id to be used in subsequent calls - call codes_grib_new_from_file(infile,igrib) + ! a new grib message is loaded from file + ! igrib is the grib id to be used in subsequent calls + call codes_grib_new_from_file(infile, igrib) - ! bitsPerValue before changing the packing parameters - call codes_get(igrib,'bitsPerValue',bitsPerValue1) + ! bitsPerValue before changing the packing parameters + call codes_get(igrib, 'bitsPerValue', bitsPerValue1) - ! get the size of the values array - call codes_get_size(igrib,"values",size) + ! get the size of the values array + call codes_get_size(igrib, "values", size) - allocate(values1(size), stat=iret) - allocate(values2(size), stat=iret) - ! get data values before changing the packing parameters*/ - call codes_get(igrib,"values",values1) + allocate (values1(size), stat=iret) + allocate (values2(size), stat=iret) + ! get data values before changing the packing parameters*/ + call codes_get(igrib, "values", values1) - ! setting decimal precision=2 means that 2 decimal digits - ! are preserved when packing. - decimalPrecision=2 - call codes_set(igrib,"setDecimalPrecision", & - decimalPrecision) + ! setting decimal precision=2 means that 2 decimal digits + ! are preserved when packing. + decimalPrecision = 2 + call codes_set(igrib, "setDecimalPrecision", & + decimalPrecision) - ! bitsPerValue after changing the packing parameters - call codes_get(igrib,"bitsPerValue",bitsPerValue2) + ! bitsPerValue after changing the packing parameters + call codes_get(igrib, "bitsPerValue", bitsPerValue2) - ! get data values after changing the packing parameters - call codes_get(igrib,"values",values2) + ! get data values after changing the packing parameters + call codes_get(igrib, "values", values2) - ! computing error - maxa=0 - maxr=0 - maxv=values2(1) - minv=maxv - do i=1,size - a=abs(values2(i)-values1(i)) - if ( values2(i) .gt. maxv ) maxv=values2(i) - if ( values2(i) .lt. maxv ) minv=values2(i) - if ( values2(i) .ne. 0 ) then - r=abs((values2(i)-values1(i))/values2(i)) - endif - if ( a .gt. maxa ) maxa=a - if ( r .gt. maxr ) maxr=r - enddo - write(*,*) "max absolute error = ",maxa - write(*,*) "max relative error = ",maxr - write(*,*) "min value = ",minv - write(*,*) "max value = ",maxv + ! computing error + maxa = 0 + maxr = 0 + maxv = values2(1) + minv = maxv + do i = 1, size + a = abs(values2(i) - values1(i)) + if (values2(i) .gt. maxv) maxv = values2(i) + if (values2(i) .lt. maxv) minv = values2(i) + if (values2(i) .ne. 0) then + r = abs((values2(i) - values1(i))/values2(i)) + end if + if (a .gt. maxa) maxa = a + if (r .gt. maxr) maxr = r + end do + write (*, *) "max absolute error = ", maxa + write (*, *) "max relative error = ", maxr + write (*, *) "min value = ", minv + write (*, *) "max value = ", maxv - write(*,*) "old number of bits per value=",bitsPerValue1 - write(*,*) "new number of bits per value=",bitsPerValue2 + write (*, *) "old number of bits per value=", bitsPerValue1 + write (*, *) "new number of bits per value=", bitsPerValue2 - ! write modified message to a file - call codes_write(igrib,outfile) + ! write modified message to a file + call codes_write(igrib, outfile) - call codes_release(igrib) + call codes_release(igrib) - call codes_close_file(infile) + call codes_close_file(infile) - call codes_close_file(outfile) + call codes_close_file(outfile) - deallocate(values1) - deallocate(values2) + deallocate (values1) + deallocate (values2) end program precision diff --git a/examples/F90/print_data_fortran.f90 b/examples/F90/print_data_fortran.f90 index 731df8947..8283637df 100644 --- a/examples/F90/print_data_fortran.f90 +++ b/examples/F90/print_data_fortran.f90 @@ -13,41 +13,41 @@ ! ! program print_data_fortran -use eccodes -implicit none -integer :: ifile -integer :: igrib -integer :: i -real(kind=8), dimension(:), allocatable :: values -real(kind=8) :: average -real(kind=8) :: max -real(kind=8) :: min + use eccodes + implicit none + integer :: ifile + integer :: igrib + integer :: i + real(kind=8), dimension(:), allocatable :: values + real(kind=8) :: average + real(kind=8) :: max + real(kind=8) :: min - call codes_open_file(ifile, & - '../../data/constant_field.grib1','r') + call codes_open_file(ifile, & + '../../data/constant_field.grib1', 'r') - ! A new grib message is loaded from file - ! igrib is the grib id to be used in subsequent calls - call codes_grib_new_from_file(ifile,igrib) + ! A new grib message is loaded from file + ! igrib is the grib id to be used in subsequent calls + call codes_grib_new_from_file(ifile, igrib) - call codes_get(igrib,'values',values) + call codes_get(igrib, 'values', values) - do i=1,size(values) - write(*,*)' ',i,values(i) - enddo + do i = 1, size(values) + write (*, *) ' ', i, values(i) + end do - write(*,*)size(values),' values found ' + write (*, *) size(values), ' values found ' - call codes_get(igrib,'max',max) - write(*,*) 'max=',max - call codes_get(igrib,'min',min) - write(*,*) 'min=',min - call codes_get(igrib,'average',average) - write(*,*) 'average=',average + call codes_get(igrib, 'max', max) + write (*, *) 'max=', max + call codes_get(igrib, 'min', min) + write (*, *) 'min=', min + call codes_get(igrib, 'average', average) + write (*, *) 'average=', average - call codes_release(igrib) + call codes_release(igrib) - call codes_close_file(ifile) + call codes_close_file(ifile) - deallocate(values) + deallocate (values) end program print_data_fortran diff --git a/examples/F90/read_from_file.f90 b/examples/F90/read_from_file.f90 index 112d19f02..3ea16ea9f 100644 --- a/examples/F90/read_from_file.f90 +++ b/examples/F90/read_from_file.f90 @@ -10,88 +10,88 @@ ! See GRIB-292 ! program read_from_file -use eccodes - implicit none - character(len=32) :: input_grib_file - integer,dimension(26) :: message_lengths ! expected message lengths + use eccodes + implicit none + character(len=32) :: input_grib_file + integer, dimension(26) :: message_lengths ! expected message lengths - input_grib_file = '../../data/v.grib2' - message_lengths = (/ 95917, 96963, 97308, 97386, 97215, 97440, 98451, 98629, 98448, & - 99186, 97517, 97466, 99307, 98460,101491, 99361,100292, 96838, & - 91093, 83247, 78244, 74872, 72663, 69305, 69881, 68572 /) + input_grib_file = '../../data/v.grib2' + message_lengths = (/95917, 96963, 97308, 97386, 97215, 97440, 98451, 98629, 98448, & + 99186, 97517, 97466, 99307, 98460, 101491, 99361, 100292, 96838, & + 91093, 83247, 78244, 74872, 72663, 69305, 69881, 68572/) - ! Get the grib message length using two different interfaces - call read_using_size_t() - call read_using_integer() - print *,'Passed' + ! Get the grib message length using two different interfaces + call read_using_size_t() + call read_using_integer() + print *, 'Passed' contains !====================================== -subroutine read_using_size_t - implicit none - integer :: size,intsize - parameter (intsize=100000,size=intsize*4) - integer :: ifile - integer :: iret - integer :: count1=0 - integer(kind=4),dimension(intsize) :: buffer - integer(kind=kindOfSize_t) :: len1 ! For large messages + subroutine read_using_size_t + implicit none + integer :: size, intsize + parameter(intsize=100000, size=intsize*4) + integer :: ifile + integer :: iret + integer :: count1 = 0 + integer(kind=4), dimension(intsize) :: buffer + integer(kind=kindOfSize_t) :: len1 ! For large messages - ifile=5 - call codes_open_file(ifile, input_grib_file, 'r') + ifile = 5 + call codes_open_file(ifile, input_grib_file, 'r') - len1=size - call codes_read_from_file(ifile, buffer, len1, iret) + len1 = size + call codes_read_from_file(ifile, buffer, len1, iret) - do while (iret==CODES_SUCCESS) - count1=count1+1 - if (len1 /= message_lengths(count1)) then - write(*,'(a,i3,a,i8,a,i8)') 'Error: Message #',count1,' length=', len1,'. Expected=',message_lengths(count1) - stop - end if - len1=size - call codes_read_from_file(ifile, buffer, len1, iret) - end do + do while (iret == CODES_SUCCESS) + count1 = count1 + 1 + if (len1 /= message_lengths(count1)) then + write (*, '(a,i3,a,i8,a,i8)') 'Error: Message #', count1, ' length=', len1, '. Expected=', message_lengths(count1) + stop + end if + len1 = size + call codes_read_from_file(ifile, buffer, len1, iret) + end do - if (iret/=CODES_END_OF_FILE) then - call codes_check(iret,'read_from_file','') - endif - call codes_close_file(ifile) + if (iret /= CODES_END_OF_FILE) then + call codes_check(iret, 'read_from_file', '') + end if + call codes_close_file(ifile) -end subroutine read_using_size_t + end subroutine read_using_size_t !====================================== -subroutine read_using_integer - implicit none - integer :: size,intsize - parameter (intsize=100000,size=intsize*4) - integer :: ifile - integer :: iret - integer :: count1=0 - integer(kind=4),dimension(intsize) :: buffer - integer :: len1 + subroutine read_using_integer + implicit none + integer :: size, intsize + parameter(intsize=100000, size=intsize*4) + integer :: ifile + integer :: iret + integer :: count1 = 0 + integer(kind=4), dimension(intsize) :: buffer + integer :: len1 - ifile=5 - call codes_open_file(ifile, input_grib_file, 'r') + ifile = 5 + call codes_open_file(ifile, input_grib_file, 'r') - len1=size - call codes_read_from_file(ifile, buffer, len1, iret) + len1 = size + call codes_read_from_file(ifile, buffer, len1, iret) - do while (iret==CODES_SUCCESS) - count1=count1+1 - if (len1 /= message_lengths(count1)) then - write(*,'(a,i3,a,i8,a,i8)') 'Error: Message #',count1,' length=', len1,'. Expected=',message_lengths(count1) - stop - end if - len1=size - call codes_read_from_file(ifile, buffer, len1, iret) - end do + do while (iret == CODES_SUCCESS) + count1 = count1 + 1 + if (len1 /= message_lengths(count1)) then + write (*, '(a,i3,a,i8,a,i8)') 'Error: Message #', count1, ' length=', len1, '. Expected=', message_lengths(count1) + stop + end if + len1 = size + call codes_read_from_file(ifile, buffer, len1, iret) + end do - if (iret/=CODES_END_OF_FILE) then - call codes_check(iret,'read_from_file','') - endif - call codes_close_file(ifile) + if (iret /= CODES_END_OF_FILE) then + call codes_check(iret, 'read_from_file', '') + end if + call codes_close_file(ifile) -end subroutine read_using_integer + end subroutine read_using_integer !====================================== end program diff --git a/examples/F90/set_fortran.f90 b/examples/F90/set_fortran.f90 index d976c1256..7e3f4ad2f 100644 --- a/examples/F90/set_fortran.f90 +++ b/examples/F90/set_fortran.f90 @@ -10,49 +10,49 @@ ! ! program set - use eccodes - implicit none + use eccodes + implicit none - integer(kind = 4) :: centre - integer(kind = 4) :: int_value - character(len = 10) :: string_value - character(len = 20) :: string_centre - integer :: infile,outfile - integer :: igrib + integer(kind=4) :: centre + integer(kind=4) :: int_value + character(len=10) :: string_value + character(len=20) :: string_centre + integer :: infile, outfile + integer :: igrib - infile=5 - outfile=6 + infile = 5 + outfile = 6 - call codes_open_file(infile, & - '../../data/regular_latlon_surface_constant.grib1','r') + call codes_open_file(infile, & + '../../data/regular_latlon_surface_constant.grib1', 'r') - call codes_open_file(outfile, & - '../../data/out.grib1','w') + call codes_open_file(outfile, & + '../../data/out.grib1', 'w') - ! A new grib message is loaded from file - ! igrib is the grib id to be used in subsequent calls - call codes_grib_new_from_file(infile,igrib) + ! A new grib message is loaded from file + ! igrib is the grib id to be used in subsequent calls + call codes_grib_new_from_file(infile, igrib) - ! set centre as a long */ - centre=80 - call codes_set(igrib,'centre',centre) + ! set centre as a long */ + centre = 80 + call codes_set(igrib, 'centre', centre) - ! get centre as a integer*4 - call codes_get(igrib,'centre',int_value) - write(*,*) 'centre=',int_value + ! get centre as a integer*4 + call codes_get(igrib, 'centre', int_value) + write (*, *) 'centre=', int_value - ! get centre as a string - call codes_get(igrib,'centre',string_value) - string_centre='centre='//string_value - write(*,*) string_centre + ! get centre as a string + call codes_get(igrib, 'centre', string_value) + string_centre = 'centre='//string_value + write (*, *) string_centre - ! write modified message to a file - call codes_write(igrib,outfile) + ! write modified message to a file + call codes_write(igrib, outfile) - call codes_release(igrib) + call codes_release(igrib) - call codes_close_file(infile) + call codes_close_file(infile) - call codes_close_file(outfile) + call codes_close_file(outfile) end program set diff --git a/examples/F90/set_missing_fortran.f90 b/examples/F90/set_missing_fortran.f90 index afb1cbd73..17379f2c8 100644 --- a/examples/F90/set_missing_fortran.f90 +++ b/examples/F90/set_missing_fortran.f90 @@ -10,34 +10,34 @@ ! ! program set - use eccodes - implicit none - integer :: infile,outfile - integer :: igrib + use eccodes + implicit none + integer :: infile, outfile + integer :: igrib - infile=5 - outfile=6 + infile = 5 + outfile = 6 - call codes_open_file(infile, & - '../../data/reduced_gaussian_pressure_level.grib2','r') + call codes_open_file(infile, & + '../../data/reduced_gaussian_pressure_level.grib2', 'r') - call codes_open_file(outfile, & - 'out_surface_level.grib2','w') + call codes_open_file(outfile, & + 'out_surface_level.grib2', 'w') - ! a new grib message is loaded from file - ! igrib is the grib id to be used in subsequent calls - call codes_grib_new_from_file(infile,igrib) + ! a new grib message is loaded from file + ! igrib is the grib id to be used in subsequent calls + call codes_grib_new_from_file(infile, igrib) - call codes_set(igrib,'typeOfFirstFixedSurface','sfc') - call codes_set_missing(igrib,'scaleFactorOfFirstFixedSurface') - call codes_set_missing(igrib,'scaledValueOfFirstFixedSurface') + call codes_set(igrib, 'typeOfFirstFixedSurface', 'sfc') + call codes_set_missing(igrib, 'scaleFactorOfFirstFixedSurface') + call codes_set_missing(igrib, 'scaledValueOfFirstFixedSurface') - call codes_write(igrib,outfile) + call codes_write(igrib, outfile) - call codes_release(igrib) + call codes_release(igrib) - call codes_close_file(infile) + call codes_close_file(infile) - call codes_close_file(outfile) + call codes_close_file(outfile) end program set From b62e22fef9c41fa2c077a397c0912f8a7040ca4c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 15 Feb 2021 12:34:48 +0000 Subject: [PATCH 308/683] Spelling --- definitions/grib2/localConcepts/kwbc/typeOfLevelConcept.def | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/definitions/grib2/localConcepts/kwbc/typeOfLevelConcept.def b/definitions/grib2/localConcepts/kwbc/typeOfLevelConcept.def index b07d32983..7df005d2e 100644 --- a/definitions/grib2/localConcepts/kwbc/typeOfLevelConcept.def +++ b/definitions/grib2/localConcepts/kwbc/typeOfLevelConcept.def @@ -1,6 +1,6 @@ # Concept typeOfLevel for kwbc 'atmosphereSingleLayer' = {typeOfFirstFixedSurface=200;} -'cceanSingleLayer' = {typeOfFirstFixedSurface=201;} +'oceanSingleLayer' = {typeOfFirstFixedSurface=201;} 'highestTroposphericFreezing' = {typeOfFirstFixedSurface=204;} 'gridScaleCloudBottom' = {typeOfFirstFixedSurface=206;} 'gridScaleCloudTop' = {typeOfFirstFixedSurface=207;} From de42c8f6a570efa618734a5d6e01f98478cf678e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 15 Feb 2021 12:46:59 +0000 Subject: [PATCH 309/683] Fortran API: formatting (https://github.com/pseewald/fprettify) --- fortran/eccodes_f90_head.f90 | 27 +- fortran/eccodes_f90_int.f90 | 50 +- fortran/eccodes_f90_int_size_t.f90 | 20 +- fortran/eccodes_f90_long_int.f90 | 63 +- fortran/eccodes_f90_long_size_t.f90 | 40 +- fortran/eccodes_f90_tail.f90 | 1980 +++++++++--------- fortran/fortranCtypes/test.f90 | 152 +- fortran/grib_f90_head.f90 | 21 +- fortran/grib_f90_int.f90 | 50 +- fortran/grib_f90_int_size_t.f90 | 20 +- fortran/grib_f90_long_int.f90 | 63 +- fortran/grib_f90_long_size_t.f90 | 40 +- fortran/grib_f90_tail.f90 | 2954 +++++++++++++-------------- fortran/grib_typeSizes.f90 | 30 +- fortran/grib_types.f90 | 148 +- fortran/same_int_long.f90 | 66 +- fortran/same_int_size_t.f90 | 66 +- 17 files changed, 2877 insertions(+), 2913 deletions(-) diff --git a/fortran/eccodes_f90_head.f90 b/fortran/eccodes_f90_head.f90 index 36e73b40d..2373e288c 100644 --- a/fortran/eccodes_f90_head.f90 +++ b/fortran/eccodes_f90_head.f90 @@ -17,13 +17,12 @@ module eccodes include "eccodes_visibility.h" include "eccodes_settings.h" - real(8), parameter,public :: CODES_MISSING_DOUBLE = -1.D+100 - integer(4), parameter,public :: CODES_MISSING_LONG = 2147483647 - - integer, parameter,public :: CODES_PRODUCT_ANY = 0 - integer, parameter,public :: CODES_PRODUCT_GRIB = 1 - integer, parameter,public :: CODES_PRODUCT_BUFR = 2 + real(8), parameter, public :: CODES_MISSING_DOUBLE = -1.D+100 + integer(4), parameter, public :: CODES_MISSING_LONG = 2147483647 + integer, parameter, public :: CODES_PRODUCT_ANY = 0 + integer, parameter, public :: CODES_PRODUCT_GRIB = 1 + integer, parameter, public :: CODES_PRODUCT_BUFR = 2 !> Create a new message in memory from an integer or character array containting the coded message. !> @@ -42,8 +41,8 @@ module eccodes !> @param message array containing the coded message !> @param status CODES_SUCCESS if OK, integer value on error interface codes_new_from_message - module procedure codes_new_from_message_int4 - module procedure codes_new_from_message_char + module procedure codes_new_from_message_int4 + module procedure codes_new_from_message_char end interface codes_new_from_message !> Get a value of specified index from an array key. @@ -70,9 +69,9 @@ module eccodes !> @param[out] status CODES_SUCCESS if OK, integer value on error interface codes_get_element module procedure codes_get_real4_element, & - codes_get_real8_element, & - codes_get_real4_elements, & - codes_get_real8_elements + codes_get_real8_element, & + codes_get_real4_elements, & + codes_get_real8_elements end interface codes_get_element !> Find the nearest point/points of a given latitude/longitude point. @@ -113,8 +112,8 @@ module eccodes !> @param[out] status CODES_SUCCESS if OK, integer value on error interface codes_grib_find_nearest module procedure codes_grib_find_nearest_single, & - codes_grib_find_nearest_four_single, & - codes_grib_find_nearest_multiple + codes_grib_find_nearest_four_single, & + codes_grib_find_nearest_multiple end interface codes_grib_find_nearest !> Get latitude/longitude and data values. @@ -136,5 +135,5 @@ module eccodes !> @param[out] values data values array with dimension "size" interface codes_grib_get_data module procedure codes_grib_get_data_real4, & - codes_grib_get_data_real8 + codes_grib_get_data_real8 end interface codes_grib_get_data diff --git a/fortran/eccodes_f90_int.f90 b/fortran/eccodes_f90_int.f90 index f3062c6e4..6f1aa7964 100644 --- a/fortran/eccodes_f90_int.f90 +++ b/fortran/eccodes_f90_int.f90 @@ -2,11 +2,10 @@ ! ! This software is licensed under the terms of the Apache Licence Version 2.0 ! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -! +! ! In applying this licence, ECMWF does not waive the privileges and immunities granted to it by ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. - !> Get the distinct values of the key in argument contained in the index. The key must belong to the index. !> !> @@ -22,8 +21,8 @@ !> @param status CODES_SUCCESS if OK, integer value on error interface codes_index_get module procedure codes_index_get_int, & - codes_index_get_string, & - codes_index_get_real8 + codes_index_get_string, & + codes_index_get_real8 end interface codes_index_get !> Get the number of distinct values of the key in argument contained in the index. The key must belong to the index. @@ -40,10 +39,10 @@ !> @param size number of distinct values of the key in the index !> @param status CODES_SUCCESS if OK, integer value on error interface codes_index_get_size - module procedure codes_index_get_size_int + module procedure codes_index_get_size_int end interface codes_index_get_size - - !> Select the message subset with key==value. + + !> Select the message subset with key==value. !> !> !> In case of error, if the status parameter (optional) is not given, the program will @@ -58,8 +57,8 @@ !> @param status CODES_SUCCESS if OK, integer value on error interface codes_index_select module procedure codes_index_select_int, & - codes_index_select_string, & - codes_index_select_real8 + codes_index_select_string, & + codes_index_select_real8 end interface codes_index_select !> Get the value for a key from a message. @@ -96,15 +95,14 @@ !> @param[out] status CODES_SUCCESS if OK, integer value on error interface codes_get module procedure codes_get_int, & - codes_get_real4, & - codes_get_real8, & - codes_get_string, & - codes_get_byte_array, & - codes_get_int_array, & - codes_get_real4_array, & - codes_get_real8_array + codes_get_real4, & + codes_get_real8, & + codes_get_string, & + codes_get_byte_array, & + codes_get_int_array, & + codes_get_real4_array, & + codes_get_real8_array end interface codes_get - !> Get the size of an array key. !> @@ -119,7 +117,7 @@ !> @param size size of the array key !> @param status CODES_SUCCESS if OK, integer value on error interface codes_get_size - module procedure codes_get_size_int + module procedure codes_get_size_int end interface codes_get_size !> Set the value for a key in a message. @@ -147,17 +145,17 @@ !> @param[out] status CODES_SUCCESS if OK, integer value on error interface codes_set module procedure codes_set_int, & - codes_set_real4, & - codes_set_real8, & - codes_set_string, & - codes_set_int_array, & - codes_set_byte_array, & - codes_set_real4_array, & - codes_set_real8_array + codes_set_real4, & + codes_set_real8, & + codes_set_string, & + codes_set_int_array, & + codes_set_byte_array, & + codes_set_real4_array, & + codes_set_real8_array end interface codes_set interface codes_set_force module procedure codes_set_force_real4_array, & - codes_set_force_real8_array + codes_set_force_real8_array end interface codes_set_force diff --git a/fortran/eccodes_f90_int_size_t.f90 b/fortran/eccodes_f90_int_size_t.f90 index b33bc5617..f795b5bad 100644 --- a/fortran/eccodes_f90_int_size_t.f90 +++ b/fortran/eccodes_f90_int_size_t.f90 @@ -17,8 +17,8 @@ !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error interface codes_read_from_file - module procedure codes_read_from_file_int4 - module procedure codes_read_from_file_char + module procedure codes_read_from_file_int4 + module procedure codes_read_from_file_char end interface codes_read_from_file !> Reads nbytes bytes into the buffer from a file opened with codes_open_file. @@ -32,10 +32,10 @@ !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error interface codes_read_bytes - module procedure codes_read_bytes_int4 - module procedure codes_read_bytes_char - module procedure codes_read_bytes_real8 - module procedure codes_read_bytes_real4 + module procedure codes_read_bytes_int4 + module procedure codes_read_bytes_char + module procedure codes_read_bytes_real8 + module procedure codes_read_bytes_real4 end interface codes_read_bytes !> Write nbytes bytes from the buffer in a file opened with codes_open_file. @@ -49,10 +49,10 @@ !> @param nbytes number of bytes to be written !> @param status CODES_SUCCESS if OK, integer value on error interface codes_write_bytes - module procedure codes_write_bytes_int4 - module procedure codes_write_bytes_char - module procedure codes_write_bytes_real8 - module procedure codes_write_bytes_real4 + module procedure codes_write_bytes_int4 + module procedure codes_write_bytes_char + module procedure codes_write_bytes_real8 + module procedure codes_write_bytes_real4 end interface codes_write_bytes !> Get the size of a coded message. diff --git a/fortran/eccodes_f90_long_int.f90 b/fortran/eccodes_f90_long_int.f90 index abb465493..937e4aad8 100644 --- a/fortran/eccodes_f90_long_int.f90 +++ b/fortran/eccodes_f90_long_int.f90 @@ -2,11 +2,10 @@ ! ! This software is licensed under the terms of the Apache Licence Version 2.0 ! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -! +! ! In applying this licence, ECMWF does not waive the privileges and immunities granted to it by ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. - !> Get the distinct values of the key in argument contained in the index. The key must belong to the index. !> !> @@ -22,9 +21,9 @@ !> @param status CODES_SUCCESS if OK, integer value on error interface codes_index_get module procedure codes_index_get_int, & - codes_index_get_long, & - codes_index_get_string, & - codes_index_get_real8 + codes_index_get_long, & + codes_index_get_string, & + codes_index_get_real8 end interface codes_index_get !> Get the number of distinct values of the key in argument contained in the index. The key must belong to the index. @@ -41,10 +40,10 @@ !> @param status CODES_SUCCESS if OK, integer value on error interface codes_index_get_size module procedure codes_index_get_size_int, & - codes_index_get_size_long + codes_index_get_size_long end interface codes_index_get_size - - !> Select the message subset with key==value. + + !> Select the message subset with key==value. !> !> !> In case of error, if the status parameter (optional) is not given, the program will @@ -59,11 +58,11 @@ !> @param status CODES_SUCCESS if OK, integer value on error interface codes_index_select module procedure codes_index_select_int, & - codes_index_select_long, & - codes_index_select_string, & - codes_index_select_real8 + codes_index_select_long, & + codes_index_select_string, & + codes_index_select_real8 end interface codes_index_select - + !> Get the value for a key from a message. !> !> Given a \em msgid and \em key as input a \em value for the \em key is returned. @@ -96,14 +95,14 @@ !> @param[out] status CODES_SUCCESS if OK, integer value on error interface codes_get module procedure codes_get_int, & - codes_get_long, & - codes_get_real4, & - codes_get_real8, & - codes_get_string, & - codes_get_byte_array, & - codes_get_int_array, & - codes_get_real4_array, & - codes_get_real8_array + codes_get_long, & + codes_get_real4, & + codes_get_real8, & + codes_get_string, & + codes_get_byte_array, & + codes_get_int_array, & + codes_get_real4_array, & + codes_get_real8_array end interface codes_get !> Get the size of an array key. @@ -119,8 +118,8 @@ !> @param size size of the array key !> @param status CODES_SUCCESS if OK, integer value on error interface codes_get_size - module procedure codes_get_size_int, & - codes_get_size_long + module procedure codes_get_size_int, & + codes_get_size_long end interface codes_get_size !> Set the value for a key in a message. @@ -148,19 +147,19 @@ !> @param[out] status CODES_SUCCESS if OK, integer value on error interface codes_set module procedure codes_set_int, & - codes_set_long, & - codes_set_real4, & - codes_set_real8, & - codes_set_string, & - codes_set_int_array, & - codes_set_long_array, & - codes_set_byte_array, & - codes_set_real4_array, & - codes_set_real8_array + codes_set_long, & + codes_set_real4, & + codes_set_real8, & + codes_set_string, & + codes_set_int_array, & + codes_set_long_array, & + codes_set_byte_array, & + codes_set_real4_array, & + codes_set_real8_array end interface codes_set interface codes_set_force module procedure codes_set_force_real4_array, & - codes_set_force_real8_array + codes_set_force_real8_array end interface codes_set_force diff --git a/fortran/eccodes_f90_long_size_t.f90 b/fortran/eccodes_f90_long_size_t.f90 index 282d3cf89..ea954d322 100644 --- a/fortran/eccodes_f90_long_size_t.f90 +++ b/fortran/eccodes_f90_long_size_t.f90 @@ -17,10 +17,10 @@ !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error interface codes_read_from_file - module procedure codes_read_from_file_int4 - module procedure codes_read_from_file_int4_size_t - module procedure codes_read_from_file_char - module procedure codes_read_from_file_char_size_t + module procedure codes_read_from_file_int4 + module procedure codes_read_from_file_int4_size_t + module procedure codes_read_from_file_char + module procedure codes_read_from_file_char_size_t end interface codes_read_from_file !> Reads nbytes bytes into the buffer from a file opened with codes_open_file. @@ -34,14 +34,14 @@ !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error interface codes_read_bytes - module procedure codes_read_bytes_int4 - module procedure codes_read_bytes_int4_size_t - module procedure codes_read_bytes_char - module procedure codes_read_bytes_char_size_t - module procedure codes_read_bytes_real8 - module procedure codes_read_bytes_real8_size_t - module procedure codes_read_bytes_real4 - module procedure codes_read_bytes_real4_size_t + module procedure codes_read_bytes_int4 + module procedure codes_read_bytes_int4_size_t + module procedure codes_read_bytes_char + module procedure codes_read_bytes_char_size_t + module procedure codes_read_bytes_real8 + module procedure codes_read_bytes_real8_size_t + module procedure codes_read_bytes_real4 + module procedure codes_read_bytes_real4_size_t end interface codes_read_bytes !> Write nbytes bytes from the buffer in a file opened with codes_open_file. @@ -55,14 +55,14 @@ !> @param nbytes number of bytes to be written !> @param status CODES_SUCCESS if OK, integer value on error interface codes_write_bytes - module procedure codes_write_bytes_int4 - module procedure codes_write_bytes_int4_size_t - module procedure codes_write_bytes_char - module procedure codes_write_bytes_char_size_t - module procedure codes_write_bytes_real8 - module procedure codes_write_bytes_real8_size_t - module procedure codes_write_bytes_real4 - module procedure codes_write_bytes_real4_size_t + module procedure codes_write_bytes_int4 + module procedure codes_write_bytes_int4_size_t + module procedure codes_write_bytes_char + module procedure codes_write_bytes_char_size_t + module procedure codes_write_bytes_real8 + module procedure codes_write_bytes_real8_size_t + module procedure codes_write_bytes_real4 + module procedure codes_write_bytes_real4_size_t end interface codes_write_bytes !> Get the size of a coded message. diff --git a/fortran/eccodes_f90_tail.f90 b/fortran/eccodes_f90_tail.f90 index 31a8e73ee..a4672d204 100644 --- a/fortran/eccodes_f90_tail.f90 +++ b/fortran/eccodes_f90_tail.f90 @@ -19,13 +19,13 @@ !> @param id ID of the message loaded in memory !> @param key key name !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_set_missing ( id, key, status ) - integer(kind=kindOfInt), intent(in) :: id - character(len=*), intent(in) :: key - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_set_missing(id, key, status) + integer(kind=kindOfInt), intent(in) :: id + character(len=*), intent(in) :: key + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_set_missing ( id, key, status ) -end subroutine codes_set_missing + call grib_set_missing(id, key, status) + end subroutine codes_set_missing !> Create a new index form a file. The file is indexed with the keys in argument. !> @@ -41,14 +41,14 @@ end subroutine codes_set_missing !> The type of the key can be explicitly declared appending :l for long (or alternatively :i), :d for double, :s for string to the key name. !> If the type is not declared explicitly, the native type is assumed. !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_index_create ( indexid, filename, keys, status ) - integer(kind=kindOfInt), intent(inout) :: indexid + subroutine codes_index_create(indexid, filename, keys, status) + integer(kind=kindOfInt), intent(inout) :: indexid character(len=*), intent(in) :: filename character(len=*), intent(in) :: keys - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_index_create ( indexid, filename, keys, status ) -end subroutine codes_index_create + call grib_index_create(indexid, filename, keys, status) + end subroutine codes_index_create !> Add a file to an index. !> @@ -61,13 +61,13 @@ end subroutine codes_index_create !> @param indexid id of the index I want to add a file to !> @param filename name of the file I want to add to the index !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_index_add_file ( indexid, filename, status ) + subroutine codes_index_add_file(indexid, filename, status) integer(kind=kindOfInt), intent(in) :: indexid character(len=*), intent(in) :: filename - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_index_add_file ( indexid, filename, status ) -end subroutine codes_index_add_file + call grib_index_add_file(indexid, filename, status) + end subroutine codes_index_add_file !> Get the number of distinct values of the key in argument contained in the index. The key must belong to the index. !> @@ -81,14 +81,14 @@ end subroutine codes_index_add_file !> @param key key for which the number of values is computed !> @param size number of distinct values of the key in the index !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_index_get_size_long( indexid, key, size, status ) - integer(kind=kindOfInt), intent(in) :: indexid + subroutine codes_index_get_size_long(indexid, key, size, status) + integer(kind=kindOfInt), intent(in) :: indexid character(len=*), intent(in) :: key - integer(kind=kindOfLong), intent(out) :: size - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfLong), intent(out) :: size + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_index_get_size_long( indexid, key, size, status ) -end subroutine codes_index_get_size_long + call grib_index_get_size_long(indexid, key, size, status) + end subroutine codes_index_get_size_long !> Get the number of distinct values of the key in argument contained in the index. The key must belong to the index. !> @@ -102,14 +102,14 @@ end subroutine codes_index_get_size_long !> @param key key for which the number of values is computed !> @param size number of distinct values of the key in the index !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_index_get_size_int( indexid, key, size, status ) - integer(kind=kindOfInt), intent(in) :: indexid + subroutine codes_index_get_size_int(indexid, key, size, status) + integer(kind=kindOfInt), intent(in) :: indexid character(len=*), intent(in) :: key - integer(kind=kindOfInt), intent(out) :: size - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), intent(out) :: size + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_index_get_size_int( indexid, key, size, status ) -end subroutine codes_index_get_size_int + call grib_index_get_size_int(indexid, key, size, status) + end subroutine codes_index_get_size_int !> Get the distinct values of the key in argument contained in the index. The key must belong to the index. This function is used when the type of the key was explicitly defined as long or when the native type of the key is long. !> @@ -124,14 +124,14 @@ end subroutine codes_index_get_size_int !> @param key key for wich the values are returned !> @param values array of values. The array must be allocated before entering this function and its size must be enough to contain all the values. !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_index_get_int( indexid, key, values, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key + subroutine codes_index_get_int(indexid, key, values, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key integer(kind=kindOfInt), dimension(:), intent(out) :: values - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_index_get_int( indexid, key, values, status ) -end subroutine codes_index_get_int + call grib_index_get_int(indexid, key, values, status) + end subroutine codes_index_get_int !> Get the distinct values of the key in argument contained in the index. The key must belong to the index. This function is used when the type of the key was explicitly defined as long or when the native type of the key is long. !> @@ -146,14 +146,14 @@ end subroutine codes_index_get_int !> @param key key for wich the values are returned !> @param values array of values. The array must be allocated before entering this function and its size must be enough to contain all the values. !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_index_get_long( indexid, key, values, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key + subroutine codes_index_get_long(indexid, key, values, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key integer(kind=kindOfLong), dimension(:), intent(out) :: values - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_index_get_long( indexid, key, values, status ) -end subroutine codes_index_get_long + call grib_index_get_long(indexid, key, values, status) + end subroutine codes_index_get_long !> Get the distinct values of the key in argument contained in the index. The key must belong to the index. This function is used when the type of the key was explicitly defined as long or when the native type of the key is long. !> @@ -168,17 +168,17 @@ end subroutine codes_index_get_long !> @param key key for wich the values are returned !> @param values array of values. The array must be allocated before entering this function and its size must be enough to contain all the values. !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_index_get_real8( indexid, key, values, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key + subroutine codes_index_get_real8(indexid, key, values, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key real(kind=kindOfDouble), dimension(:), intent(out) :: values - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_index_get_real8( indexid, key, values, status ) -end subroutine codes_index_get_real8 + call grib_index_get_real8(indexid, key, values, status) + end subroutine codes_index_get_real8 - !> Get the distinct values of the key in argument contained in the index. - !> The key must belong to the index. + !> Get the distinct values of the key in argument contained in the index. + !> The key must belong to the index. !> This function is used when the type of the key was explicitly defined as string or when the native type of the key is string. !> !> @@ -192,16 +192,16 @@ end subroutine codes_index_get_real8 !> @param key key for wich the values are returned !> @param values array of values. The array must be allocated before entering this function and its size must be enough to contain all the values. !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_index_get_string( indexid, key, values, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key + subroutine codes_index_get_string(indexid, key, values, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key character(len=*), dimension(:), intent(out) :: values - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_index_get_string( indexid, key, values, status ) -end subroutine codes_index_get_string + call grib_index_get_string(indexid, key, values, status) + end subroutine codes_index_get_string - !> Select the message subset with key==value. The value is a integer. + !> Select the message subset with key==value. The value is a integer. !> The key must have been created with string type or have string as native type if the type was not explicitly defined in the index creation. !> !> In case of error, if the status parameter (optional) is not given, the program will @@ -214,14 +214,14 @@ end subroutine codes_index_get_string !> @param key key to be selected !> @param value value of the key to select !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_index_select_string( indexid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key + subroutine codes_index_select_string(indexid, key, value, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key character(len=*), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_index_select_string( indexid, key, value, status ) -end subroutine codes_index_select_string + call grib_index_select_string(indexid, key, value, status) + end subroutine codes_index_select_string !> Select the message subset with key==value. The value is a integer. The key must have been created with integer type or have integer as native type if the type was not explicitly defined in the index creation. !> @@ -236,14 +236,14 @@ end subroutine codes_index_select_string !> @param key key to be selected !> @param value value of the key to select !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_index_select_int( indexid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key + subroutine codes_index_select_int(indexid, key, value, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key integer(kind=kindOfInt), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_index_select_int( indexid, key, value, status ) -end subroutine codes_index_select_int + call grib_index_select_int(indexid, key, value, status) + end subroutine codes_index_select_int !> Select the message subset with key==value. The value is a integer. The key must have been created with integer type or have integer as native type if the type was not explicitly defined in the index creation. !> @@ -258,14 +258,14 @@ end subroutine codes_index_select_int !> @param key key to be selected !> @param value value of the key to select !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_index_select_long( indexid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key + subroutine codes_index_select_long(indexid, key, value, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key integer(kind=kindOfLong), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_index_select_long( indexid, key, value, status ) -end subroutine codes_index_select_long + call grib_index_select_long(indexid, key, value, status) + end subroutine codes_index_select_long !> Select the message subset with key==value. The value is a real. The key must have been created with real type or have real as native type if the type was not explicitly defined in the index creation. !> @@ -280,14 +280,14 @@ end subroutine codes_index_select_long !> @param key key to be selected !> @param value value of the key to select !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_index_select_real8( indexid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key + subroutine codes_index_select_real8(indexid, key, value, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key real(kind=kindOfDouble), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_index_select_real8( indexid, key, value, status ) -end subroutine codes_index_select_real8 + call grib_index_select_real8(indexid, key, value, status) + end subroutine codes_index_select_real8 !> Create a new handle from an index after having selected the key values. !> All the keys belonging to the index must be selected before calling this function. Successive calls to this function will return all the handles compatible with the constraints defined selecting the values of the index keys. @@ -301,13 +301,13 @@ end subroutine codes_index_select_real8 !> @param indexid id of an index created from a file. !> @param msgid id of the message loaded in memory !> @param status CODES_SUCCESS if OK, CODES_END_OF_FILE at the end of file, or error code -subroutine codes_new_from_index ( indexid, msgid , status) - integer(kind=kindOfInt),intent(in) :: indexid - integer(kind=kindOfInt),intent(out) :: msgid - integer(kind=kindOfInt),optional,intent(out) :: status + subroutine codes_new_from_index(indexid, msgid, status) + integer(kind=kindOfInt), intent(in) :: indexid + integer(kind=kindOfInt), intent(out) :: msgid + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_new_from_index ( indexid, msgid , status) -end subroutine codes_new_from_index + call grib_new_from_index(indexid, msgid, status) + end subroutine codes_new_from_index !> Load an index file previously created with @ref codes_index_write. !> @@ -321,13 +321,13 @@ end subroutine codes_new_from_index !> @param indexid id of loaded index !> @param filename name of the index file to load !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_index_read ( indexid, filename, status ) - integer(kind=kindOfInt), intent(inout) :: indexid + subroutine codes_index_read(indexid, filename, status) + integer(kind=kindOfInt), intent(inout) :: indexid character(len=*), intent(in) :: filename - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_index_read ( indexid, filename, status ) -end subroutine codes_index_read + call grib_index_read(indexid, filename, status) + end subroutine codes_index_read !> Saves an index to a file for later reuse. Index files can be read with !> @ref codes_index_read. @@ -341,13 +341,13 @@ end subroutine codes_index_read !> @param indexid id of the index to save to file !> @param filename name of file to save the index to !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_index_write ( indexid, filename, status ) - integer(kind=kindOfInt), intent(inout) :: indexid + subroutine codes_index_write(indexid, filename, status) + integer(kind=kindOfInt), intent(inout) :: indexid character(len=*), intent(in) :: filename - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_index_write ( indexid, filename, status ) -end subroutine codes_index_write + call grib_index_write(indexid, filename, status) + end subroutine codes_index_write !> Delete the index. !> @@ -358,12 +358,12 @@ end subroutine codes_index_write !> !> @param indexid id of an index created from a file. !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_index_release ( indexid, status ) - integer(kind=kindOfInt), intent(in) :: indexid - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_index_release(indexid, status) + integer(kind=kindOfInt), intent(in) :: indexid + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_index_release ( indexid, status ) -end subroutine codes_index_release + call grib_index_release(indexid, status) + end subroutine codes_index_release !> Open a file according to a mode. !> @@ -377,14 +377,14 @@ end subroutine codes_index_release !> @param filename name of the file to be open !> @param mode open mode can be 'r' (read), 'w' (write) or 'a' (append) !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_open_file ( ifile, filename, mode, status ) - integer(kind=kindOfInt),intent(out) :: ifile + subroutine codes_open_file(ifile, filename, mode, status) + integer(kind=kindOfInt), intent(out) :: ifile character(len=*), intent(in) :: filename character(LEN=*), intent(in) :: mode - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_open_file ( ifile, filename, mode, status ) -end subroutine codes_open_file + call grib_open_file(ifile, filename, mode, status) + end subroutine codes_open_file !> Reads nbytes bytes into the buffer from a file opened with codes_open_file. !> @@ -397,14 +397,14 @@ end subroutine codes_open_file !> @param buffer binary buffer to be read !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_read_bytes_char ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - character(len=1),dimension(:), intent(out) :: buffer + subroutine codes_read_bytes_char(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + character(len=1), dimension(:), intent(out) :: buffer integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_read_bytes_char ( ifile, buffer, nbytes, status ) -end subroutine codes_read_bytes_char + call grib_read_bytes_char(ifile, buffer, nbytes, status) + end subroutine codes_read_bytes_char !> Reads nbytes bytes into the buffer from a file opened with codes_open_file. !> @@ -418,14 +418,14 @@ end subroutine codes_read_bytes_char !> @param buffer binary buffer to be read !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_read_bytes_char_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - character(len=1),dimension(:), intent(out) :: buffer + subroutine codes_read_bytes_char_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + character(len=1), dimension(:), intent(out) :: buffer integer(kind=kindOfSize_t), intent(in) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_read_bytes_char_size_t ( ifile, buffer, nbytes, status ) -end subroutine codes_read_bytes_char_size_t + call grib_read_bytes_char_size_t(ifile, buffer, nbytes, status) + end subroutine codes_read_bytes_char_size_t !> Reads nbytes bytes into the buffer from a file opened with codes_open_file. !> @@ -439,14 +439,14 @@ end subroutine codes_read_bytes_char_size_t !> @param buffer buffer to be read !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_read_bytes_int4 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=4),dimension(:), intent(out) :: buffer + subroutine codes_read_bytes_int4(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=4), dimension(:), intent(out) :: buffer integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_read_bytes_int4 ( ifile, buffer, nbytes, status ) -end subroutine codes_read_bytes_int4 + call grib_read_bytes_int4(ifile, buffer, nbytes, status) + end subroutine codes_read_bytes_int4 !> Reads nbytes bytes into the buffer from a file opened with codes_open_file. !> @@ -460,14 +460,14 @@ end subroutine codes_read_bytes_int4 !> @param buffer buffer to be read !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_read_bytes_int4_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=4),dimension(:), intent(out) :: buffer + subroutine codes_read_bytes_int4_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=4), dimension(:), intent(out) :: buffer integer(kind=kindOfSize_t), intent(in) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_read_bytes_int4_size_t ( ifile, buffer, nbytes, status ) -end subroutine codes_read_bytes_int4_size_t + call grib_read_bytes_int4_size_t(ifile, buffer, nbytes, status) + end subroutine codes_read_bytes_int4_size_t !> Reads nbytes bytes into the buffer from a file opened with codes_open_file. !> @@ -479,14 +479,14 @@ end subroutine codes_read_bytes_int4_size_t !> @param buffer buffer to be read !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_read_bytes_real4 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=4),dimension(:), intent(out) :: buffer + subroutine codes_read_bytes_real4(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=4), dimension(:), intent(out) :: buffer integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_read_bytes_real4 ( ifile, buffer, nbytes, status ) -end subroutine codes_read_bytes_real4 + call grib_read_bytes_real4(ifile, buffer, nbytes, status) + end subroutine codes_read_bytes_real4 !> Reads nbytes bytes into the buffer from a file opened with codes_open_file. !> @@ -500,14 +500,14 @@ end subroutine codes_read_bytes_real4 !> @param buffer buffer to be read !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_read_bytes_real4_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=4),dimension(:), intent(out) :: buffer + subroutine codes_read_bytes_real4_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=4), dimension(:), intent(out) :: buffer integer(kind=kindOfSize_t), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_read_bytes_real4_size_t ( ifile, buffer, nbytes, status ) -end subroutine codes_read_bytes_real4_size_t + call grib_read_bytes_real4_size_t(ifile, buffer, nbytes, status) + end subroutine codes_read_bytes_real4_size_t !> Reads nbytes bytes into the buffer from a file opened with codes_open_file. !> @@ -521,14 +521,14 @@ end subroutine codes_read_bytes_real4_size_t !> @param buffer buffer to be read !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_read_bytes_real8 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=8),dimension(:), intent(out) :: buffer + subroutine codes_read_bytes_real8(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=8), dimension(:), intent(out) :: buffer integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_read_bytes_real8 ( ifile, buffer, nbytes, status ) -end subroutine codes_read_bytes_real8 + call grib_read_bytes_real8(ifile, buffer, nbytes, status) + end subroutine codes_read_bytes_real8 !> Reads nbytes bytes into the buffer from a file opened with codes_open_file. !> @@ -542,14 +542,14 @@ end subroutine codes_read_bytes_real8 !> @param buffer buffer to be read !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_read_bytes_real8_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=8),dimension(:), intent(out) :: buffer + subroutine codes_read_bytes_real8_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=8), dimension(:), intent(out) :: buffer integer(kind=kindOfSize_t), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_read_bytes_real8_size_t ( ifile, buffer, nbytes, status ) -end subroutine codes_read_bytes_real8_size_t + call grib_read_bytes_real8_size_t(ifile, buffer, nbytes, status) + end subroutine codes_read_bytes_real8_size_t !> Reads a message in the buffer array from the file opened with codes_open_file. !> @@ -563,14 +563,14 @@ end subroutine codes_read_bytes_real8_size_t !> @param buffer binary buffer to be read !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_read_from_file_int4 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=4),dimension(:), intent(out) :: buffer + subroutine codes_read_from_file_int4(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=4), dimension(:), intent(out) :: buffer integer(kind=kindOfInt), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_read_from_file_int4 ( ifile, buffer, nbytes, status ) -end subroutine codes_read_from_file_int4 + call grib_read_from_file_int4(ifile, buffer, nbytes, status) + end subroutine codes_read_from_file_int4 !> Reads a message in the buffer array from the file opened with codes_open_file. !> @@ -584,14 +584,14 @@ end subroutine codes_read_from_file_int4 !> @param buffer binary buffer to be read !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_read_from_file_int4_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=4),dimension(:), intent(out) :: buffer + subroutine codes_read_from_file_int4_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=4), dimension(:), intent(out) :: buffer integer(kind=kindOfSize_t), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_read_from_file_int4_size_t ( ifile, buffer, nbytes, status ) -end subroutine codes_read_from_file_int4_size_t + call grib_read_from_file_int4_size_t(ifile, buffer, nbytes, status) + end subroutine codes_read_from_file_int4_size_t !> Reads a message in the buffer array from the file opened with codes_open_file. !> @@ -605,14 +605,14 @@ end subroutine codes_read_from_file_int4_size_t !> @param buffer binary buffer to be read !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_read_from_file_real4 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=4),dimension(:), intent(out) :: buffer + subroutine codes_read_from_file_real4(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=4), dimension(:), intent(out) :: buffer integer(kind=kindOfInt), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_read_from_file_real4 ( ifile, buffer, nbytes, status ) -end subroutine codes_read_from_file_real4 + call grib_read_from_file_real4(ifile, buffer, nbytes, status) + end subroutine codes_read_from_file_real4 !> Reads a message in the buffer array from the file opened with codes_open_file. !> @@ -626,14 +626,14 @@ end subroutine codes_read_from_file_real4 !> @param buffer binary buffer to be read !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_read_from_file_real4_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=4),dimension(:), intent(out) :: buffer + subroutine codes_read_from_file_real4_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=4), dimension(:), intent(out) :: buffer integer(kind=kindOfSize_t), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_read_from_file_real4_size_t ( ifile, buffer, nbytes, status ) -end subroutine codes_read_from_file_real4_size_t + call grib_read_from_file_real4_size_t(ifile, buffer, nbytes, status) + end subroutine codes_read_from_file_real4_size_t !> Reads a message in the buffer array from the file opened with codes_open_file. !> @@ -645,14 +645,14 @@ end subroutine codes_read_from_file_real4_size_t !> @param buffer binary buffer to be read !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_read_from_file_real8 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=8),dimension(:), intent(out) :: buffer + subroutine codes_read_from_file_real8(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=8), dimension(:), intent(out) :: buffer integer(kind=kindOfInt), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_read_from_file_real8 ( ifile, buffer, nbytes, status ) -end subroutine codes_read_from_file_real8 + call grib_read_from_file_real8(ifile, buffer, nbytes, status) + end subroutine codes_read_from_file_real8 !> Reads a message in the buffer array from the file opened with codes_open_file. !> @@ -666,14 +666,14 @@ end subroutine codes_read_from_file_real8 !> @param buffer binary buffer to be read !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_read_from_file_real8_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=8),dimension(:), intent(out) :: buffer + subroutine codes_read_from_file_real8_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=8), dimension(:), intent(out) :: buffer integer(kind=kindOfSize_t), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_read_from_file_real8_size_t ( ifile, buffer, nbytes, status ) -end subroutine codes_read_from_file_real8_size_t + call grib_read_from_file_real8_size_t(ifile, buffer, nbytes, status) + end subroutine codes_read_from_file_real8_size_t !> Reads a message in the buffer array from the file opened with codes_open_file. !> @@ -687,14 +687,14 @@ end subroutine codes_read_from_file_real8_size_t !> @param buffer buffer to be read !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_read_from_file_char ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - character(len=1),dimension(:), intent(out) :: buffer + subroutine codes_read_from_file_char(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + character(len=1), dimension(:), intent(out) :: buffer integer(kind=kindOfInt), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_read_from_file_char ( ifile, buffer, nbytes, status ) -end subroutine codes_read_from_file_char + call grib_read_from_file_char(ifile, buffer, nbytes, status) + end subroutine codes_read_from_file_char !> Reads a message in the buffer array from the file opened with codes_open_file. !> @@ -707,14 +707,14 @@ end subroutine codes_read_from_file_char !> @param buffer buffer to be read !> @param nbytes number of bytes to be read !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_read_from_file_char_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - character(len=1),dimension(:), intent(out) :: buffer + subroutine codes_read_from_file_char_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + character(len=1), dimension(:), intent(out) :: buffer integer(kind=kindOfSize_t), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_read_from_file_char_size_t ( ifile, buffer, nbytes, status ) -end subroutine codes_read_from_file_char_size_t + call grib_read_from_file_char_size_t(ifile, buffer, nbytes, status) + end subroutine codes_read_from_file_char_size_t !> Write nbytes bytes from the buffer in a file opened with codes_open_file. !> @@ -728,14 +728,14 @@ end subroutine codes_read_from_file_char_size_t !> @param buffer buffer to be written !> @param nbytes number of bytes to be written !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_write_bytes_char ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - character(len=1), dimension(:),intent(in) :: buffer + subroutine codes_write_bytes_char(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + character(len=1), dimension(:), intent(in) :: buffer integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt),optional,intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_write_bytes_char ( ifile, buffer, nbytes, status ) -end subroutine codes_write_bytes_char + call grib_write_bytes_char(ifile, buffer, nbytes, status) + end subroutine codes_write_bytes_char !> Write nbytes bytes from the buffer in a file opened with codes_open_file. !> @@ -749,14 +749,14 @@ end subroutine codes_write_bytes_char !> @param buffer buffer to be written !> @param nbytes number of bytes to be written !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_write_bytes_char_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - character(len=1), dimension(:),intent(in) :: buffer + subroutine codes_write_bytes_char_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + character(len=1), dimension(:), intent(in) :: buffer integer(kind=kindOfSize_t), intent(in) :: nbytes - integer(kind=kindOfInt),optional,intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_write_bytes_char_size_t ( ifile, buffer, nbytes, status ) -end subroutine codes_write_bytes_char_size_t + call grib_write_bytes_char_size_t(ifile, buffer, nbytes, status) + end subroutine codes_write_bytes_char_size_t !> Write nbytes bytes from the buffer in a file opened with codes_open_file. !> @@ -770,14 +770,14 @@ end subroutine codes_write_bytes_char_size_t !> @param buffer buffer to be written !> @param nbytes number of bytes to be written !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_write_bytes_int4 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=4), dimension(:),intent(in) :: buffer + subroutine codes_write_bytes_int4(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=4), dimension(:), intent(in) :: buffer integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt),optional,intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_write_bytes_int4 ( ifile, buffer, nbytes, status ) -end subroutine codes_write_bytes_int4 + call grib_write_bytes_int4(ifile, buffer, nbytes, status) + end subroutine codes_write_bytes_int4 !> Write nbytes bytes from the buffer in a file opened with codes_open_file. !> @@ -789,14 +789,14 @@ end subroutine codes_write_bytes_int4 !> @param buffer buffer to be written !> @param nbytes number of bytes to be written !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_write_bytes_int4_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=4), dimension(:),intent(in) :: buffer + subroutine codes_write_bytes_int4_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=4), dimension(:), intent(in) :: buffer integer(kind=kindOfSize_t), intent(in) :: nbytes - integer(kind=kindOfInt),optional,intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_write_bytes_int4_size_t ( ifile, buffer, nbytes, status ) -end subroutine codes_write_bytes_int4_size_t + call grib_write_bytes_int4_size_t(ifile, buffer, nbytes, status) + end subroutine codes_write_bytes_int4_size_t !> Write nbytes bytes from the buffer in a file opened with codes_open_file. !> @@ -809,14 +809,14 @@ end subroutine codes_write_bytes_int4_size_t !> @param buffer buffer to be written !> @param nbytes number of bytes to be written !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_write_bytes_real4 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=4), dimension(:),intent(in) :: buffer + subroutine codes_write_bytes_real4(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=4), dimension(:), intent(in) :: buffer integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt),optional,intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_write_bytes_real4 ( ifile, buffer, nbytes, status ) -end subroutine codes_write_bytes_real4 + call grib_write_bytes_real4(ifile, buffer, nbytes, status) + end subroutine codes_write_bytes_real4 !> Write nbytes bytes from the buffer in a file opened with codes_open_file. !> @@ -830,14 +830,14 @@ end subroutine codes_write_bytes_real4 !> @param buffer buffer to be written !> @param nbytes number of bytes to be written !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_write_bytes_real4_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=4), dimension(:),intent(in) :: buffer + subroutine codes_write_bytes_real4_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=4), dimension(:), intent(in) :: buffer integer(kind=kindOfSize_t), intent(in) :: nbytes - integer(kind=kindOfInt),optional,intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_write_bytes_real4_size_t ( ifile, buffer, nbytes, status ) -end subroutine codes_write_bytes_real4_size_t + call grib_write_bytes_real4_size_t(ifile, buffer, nbytes, status) + end subroutine codes_write_bytes_real4_size_t !> Write nbytes bytes from the buffer in a file opened with codes_open_file. !> @@ -851,14 +851,14 @@ end subroutine codes_write_bytes_real4_size_t !> @param buffer buffer to be written !> @param nbytes number of bytes to be written !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_write_bytes_real8 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=8), dimension(:),intent(in) :: buffer + subroutine codes_write_bytes_real8(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=8), dimension(:), intent(in) :: buffer integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt),optional,intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_write_bytes_real8 ( ifile, buffer, nbytes, status ) -end subroutine codes_write_bytes_real8 + call grib_write_bytes_real8(ifile, buffer, nbytes, status) + end subroutine codes_write_bytes_real8 !> Write nbytes bytes from the buffer in a file opened with codes_open_file. !> @@ -872,14 +872,14 @@ end subroutine codes_write_bytes_real8 !> @param buffer buffer to be written !> @param nbytes number of bytes to be written !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_write_bytes_real8_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=8), dimension(:),intent(in) :: buffer + subroutine codes_write_bytes_real8_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=8), dimension(:), intent(in) :: buffer integer(kind=kindOfSize_t), intent(in) :: nbytes - integer(kind=kindOfInt),optional,intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_write_bytes_real8_size_t ( ifile, buffer, nbytes, status ) -end subroutine codes_write_bytes_real8_size_t + call grib_write_bytes_real8_size_t(ifile, buffer, nbytes, status) + end subroutine codes_write_bytes_real8_size_t !> Close a file. !> @@ -894,12 +894,12 @@ end subroutine codes_write_bytes_real8_size_t !> !> @param ifile is the id of the file to be closed. !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_close_file ( ifile , status ) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_close_file(ifile, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_close_file ( ifile , status ) -end subroutine codes_close_file + call grib_close_file(ifile, status) + end subroutine codes_close_file !> Counts the messages in a file !> @@ -908,22 +908,22 @@ end subroutine codes_close_file !> @param ifile id of the file opened with @ref codes_open_file !> @param n number of messages in the file !> @param status CODES_SUCCESS if OK or error code -subroutine codes_count_in_file ( ifile, n , status) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=kindOfInt),intent(out) :: n - integer(kind=kindOfInt),optional,intent(out) :: status + subroutine codes_count_in_file(ifile, n, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: n + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_count_in_file ( ifile, n , status) -end subroutine codes_count_in_file + call grib_count_in_file(ifile, n, status) + end subroutine codes_count_in_file ! -subroutine codes_headers_only_new_from_file ( ifile, gribid , status) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=kindOfInt),intent(out) :: gribid - integer(kind=kindOfInt),optional,intent(out) :: status + subroutine codes_headers_only_new_from_file(ifile, gribid, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: gribid + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_headers_only_new_from_file ( ifile, gribid , status) -end subroutine codes_headers_only_new_from_file + call grib_headers_only_new_from_file(ifile, gribid, status) + end subroutine codes_headers_only_new_from_file !> Load in memory a message from a file. !> @@ -936,43 +936,43 @@ end subroutine codes_headers_only_new_from_file !> @param msgid id of the message loaded in memory !> @param product_kind One of CODES_PRODUCT_GRIB, CODES_PRODUCT_BUFR or CODES_PRODUCT_ANY !> @param status CODES_SUCCESS if OK, CODES_END_OF_FILE at the end of file, or error code -subroutine codes_new_from_file (ifile, msgid , product_kind, status) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=kindOfInt),intent(out) :: msgid - integer(kind=kindOfInt),intent(in) :: product_kind - integer(kind=kindOfInt),optional,intent(out) :: status + subroutine codes_new_from_file(ifile, msgid, product_kind, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: msgid + integer(kind=kindOfInt), intent(in) :: product_kind + integer(kind=kindOfInt), optional, intent(out) :: status if (product_kind == CODES_PRODUCT_GRIB) then - call codes_grib_new_from_file ( ifile, msgid , status) + call codes_grib_new_from_file(ifile, msgid, status) else if (product_kind == CODES_PRODUCT_BUFR) then - call codes_bufr_new_from_file ( ifile, msgid , status) + call codes_bufr_new_from_file(ifile, msgid, status) else - if (product_kind /= CODES_PRODUCT_ANY) then - call grib_check(CODES_INTERNAL_ERROR,'new_from_file','invalid_product_kind') - end if - call codes_any_new_from_file ( ifile, msgid , status) + if (product_kind /= CODES_PRODUCT_ANY) then + call grib_check(CODES_INTERNAL_ERROR, 'new_from_file', 'invalid_product_kind') + end if + call codes_any_new_from_file(ifile, msgid, status) end if -end subroutine codes_new_from_file + end subroutine codes_new_from_file !> Scan a file to search for messages without decoding. !> !> @param ifile id of the file opened with @ref codes_open_file !> @param nmessages number of messages found !> @param status CODES_SUCCESS if OK, CODES_END_OF_FILE at the end of file, or error code -subroutine codes_any_scan_file ( ifile, nmessages , status) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=kindOfInt),intent(out) :: nmessages + subroutine codes_any_scan_file(ifile, nmessages, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: nmessages integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt),optional,intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - iret=any_f_scan_file ( ifile, nmessages) + iret = any_f_scan_file(ifile, nmessages) if (present(status)) then status = iret else - call grib_check(iret,'any_f_scan_file','') - endif + call grib_check(iret, 'any_f_scan_file', '') + end if -end subroutine codes_any_scan_file + end subroutine codes_any_scan_file !> Decode message from scanned file. This function provides direct access to the n-th message in a file. !> A call to codes_any_scan_file must precede a call to this function. The file needs to be scanned to prepare @@ -985,64 +985,64 @@ end subroutine codes_any_scan_file !> @param nmsg n-th message in the file to be read !> @param msgid id of the message loaded in memory !> @param status CODES_SUCCESS if OK, CODES_END_OF_FILE at the end of file, or error code -subroutine codes_any_new_from_scanned_file ( ifile, nmsg, msgid , status) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=kindOfInt),intent(in) :: nmsg - integer(kind=kindOfInt),intent(out) :: msgid + subroutine codes_any_new_from_scanned_file(ifile, nmsg, msgid, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(in) :: nmsg + integer(kind=kindOfInt), intent(out) :: msgid integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt),optional,intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - iret=any_f_new_from_scanned_file( ifile, nmsg, msgid ) + iret = any_f_new_from_scanned_file(ifile, nmsg, msgid) if (present(status)) then status = iret else - call grib_check(iret,'any_f_new_from_scanned_file','') - endif + call grib_check(iret, 'any_f_new_from_scanned_file', '') + end if -end subroutine codes_any_new_from_scanned_file + end subroutine codes_any_new_from_scanned_file !> Load in memory all messages from a file without decoding. !> !> @param ifile id of the file opened with @ref codes_open_file !> @param nmessages number of messages loaded !> @param status CODES_SUCCESS if OK, CODES_END_OF_FILE at the end of file, or error code -subroutine codes_any_load_all_from_file ( ifile, nmessages , status) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=kindOfInt),intent(out) :: nmessages + subroutine codes_any_load_all_from_file(ifile, nmessages, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: nmessages integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt),optional,intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - iret=any_f_load_all_from_file ( ifile, nmessages) + iret = any_f_load_all_from_file(ifile, nmessages) if (present(status)) then status = iret else - call grib_check(iret,'any_f_load_all_from_file','') - endif + call grib_check(iret, 'any_f_load_all_from_file', '') + end if -end subroutine codes_any_load_all_from_file + end subroutine codes_any_load_all_from_file !> Decode message from loaded. !> !> The message can be accessed through its msgid and it will be available\n !> until @ref codes_release is called.\n !> - !> @param imsg id of the binary message + !> @param imsg id of the binary message !> @param msgid id of the message loaded in memory !> @param status CODES_SUCCESS if OK, CODES_END_OF_FILE at the end of file, or error code -subroutine codes_any_new_from_loaded ( imsg, msgid , status) - integer(kind=kindOfInt),intent(in) :: imsg - integer(kind=kindOfInt),intent(out) :: msgid + subroutine codes_any_new_from_loaded(imsg, msgid, status) + integer(kind=kindOfInt), intent(in) :: imsg + integer(kind=kindOfInt), intent(out) :: msgid integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt),optional,intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - iret=any_f_new_from_loaded( imsg, msgid ) + iret = any_f_new_from_loaded(imsg, msgid) if (present(status)) then status = iret else - call grib_check(iret,'any_f_new_from_loaded','') - endif + call grib_check(iret, 'any_f_new_from_loaded', '') + end if -end subroutine codes_any_new_from_loaded + end subroutine codes_any_new_from_loaded !> Load in memory a message from a file. !> @@ -1052,13 +1052,13 @@ end subroutine codes_any_new_from_loaded !> @param ifile id of the file opened with @ref codes_open_file !> @param msgid id of the message loaded in memory !> @param status CODES_SUCCESS if OK, CODES_END_OF_FILE at the end of file, or error code -subroutine codes_any_new_from_file ( ifile, msgid , status) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=kindOfInt),intent(out) :: msgid - integer(kind=kindOfInt),optional,intent(out) :: status + subroutine codes_any_new_from_file(ifile, msgid, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: msgid + integer(kind=kindOfInt), optional, intent(out) :: status - call any_new_from_file ( ifile, msgid , status) -end subroutine codes_any_new_from_file + call any_new_from_file(ifile, msgid, status) + end subroutine codes_any_new_from_file !> Load in memory a GRIB message from a file. !> @@ -1070,13 +1070,13 @@ end subroutine codes_any_new_from_file !> @param ifile id of the file opened with @ref codes_open_file !> @param gribid id of the GRIB loaded in memory !> @param status CODES_SUCCESS if OK, CODES_END_OF_FILE at the end of file, or error code -subroutine codes_grib_new_from_file ( ifile, gribid , status) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=kindOfInt),intent(out) :: gribid - integer(kind=kindOfInt),optional,intent(out) :: status + subroutine codes_grib_new_from_file(ifile, gribid, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: gribid + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_new_from_file ( ifile, gribid , status) -end subroutine codes_grib_new_from_file + call grib_new_from_file(ifile, gribid, status) + end subroutine codes_grib_new_from_file !> Load in memory a BUFR message from a file. !> @@ -1088,14 +1088,13 @@ end subroutine codes_grib_new_from_file !> @param ifile id of the file opened with @ref codes_open_file !> @param bufrid id of the BUFR loaded in memory !> @param status CODES_SUCCESS if OK, CODES_END_OF_FILE at the end of file, or error code -subroutine codes_bufr_new_from_file ( ifile, bufrid , status) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=kindOfInt),intent(out) :: bufrid - integer(kind=kindOfInt),optional,intent(out) :: status - - call bufr_new_from_file ( ifile, bufrid, status) -end subroutine codes_bufr_new_from_file + subroutine codes_bufr_new_from_file(ifile, bufrid, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: bufrid + integer(kind=kindOfInt), optional, intent(out) :: status + call bufr_new_from_file(ifile, bufrid, status) + end subroutine codes_bufr_new_from_file !> Create a new message in memory from a character array containting the coded message. !> @@ -1112,13 +1111,13 @@ end subroutine codes_bufr_new_from_file !> @param msgid id of the message loaded in memory !> @param message character array containing the coded message !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_new_from_message_char( msgid, message, status ) - integer(kind=kindOfInt),intent(out) :: msgid - character(len=1), dimension(:),intent(in) :: message - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_new_from_message_char(msgid, message, status) + integer(kind=kindOfInt), intent(out) :: msgid + character(len=1), dimension(:), intent(in) :: message + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_new_from_message_char( msgid, message, status ) -end subroutine codes_new_from_message_char + call grib_new_from_message_char(msgid, message, status) + end subroutine codes_new_from_message_char !> Create a new message in memory from an integer array containting the coded message. !> @@ -1136,13 +1135,13 @@ end subroutine codes_new_from_message_char !> @param msgid id of the message loaded in memory !> @param message integer array containing the coded message !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_new_from_message_int4 ( msgid, message, status ) - integer(kind=kindOfInt),intent(out) :: msgid - integer(kind=4), dimension(:),intent(in) :: message - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_new_from_message_int4(msgid, message, status) + integer(kind=kindOfInt), intent(out) :: msgid + integer(kind=4), dimension(:), intent(in) :: message + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_new_from_message_int4 ( msgid, message, status ) -end subroutine codes_new_from_message_int4 + call grib_new_from_message_int4(msgid, message, status) + end subroutine codes_new_from_message_int4 !> Create a new valid gribid from a GRIB sample contained in a samples directory pointed !> by the environment variable ECCODES_SAMPLES_PATH. @@ -1158,13 +1157,13 @@ end subroutine codes_new_from_message_int4 !> @param gribid id of the grib loaded in memory !> @param samplename name of the sample to be used !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_grib_new_from_samples ( gribid, samplename, status ) - integer(kind=kindOfInt), intent(out) :: gribid + subroutine codes_grib_new_from_samples(gribid, samplename, status) + integer(kind=kindOfInt), intent(out) :: gribid character(len=*), intent(in) :: samplename - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_new_from_samples ( gribid, samplename, status ) -end subroutine codes_grib_new_from_samples + call grib_new_from_samples(gribid, samplename, status) + end subroutine codes_grib_new_from_samples !> Create a new valid bufrid from a BUFR sample contained in a samples directory pointed !> by the environment variable ECCODES_SAMPLES_PATH. @@ -1177,19 +1176,19 @@ end subroutine codes_grib_new_from_samples !> @param bufrid id of the BUFR loaded in memory !> @param samplename name of the BUFR sample to be used !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_bufr_new_from_samples ( bufrid, samplename, status ) - integer(kind=kindOfInt), intent(out) :: bufrid - character(len=*), intent(in) :: samplename - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine codes_bufr_new_from_samples(bufrid, samplename, status) + integer(kind=kindOfInt), intent(out) :: bufrid + character(len=*), intent(in) :: samplename + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=codes_bufr_f_new_from_samples ( bufrid, samplename ) - if (present(status)) then - status = iret - else - call grib_check(iret,'bufr_new_from_samples','('//samplename//')') - endif -end subroutine codes_bufr_new_from_samples + iret = codes_bufr_f_new_from_samples(bufrid, samplename) + if (present(status)) then + status = iret + else + call grib_check(iret, 'bufr_new_from_samples', '('//samplename//')') + end if + end subroutine codes_bufr_new_from_samples !> Free the memory for the message referred as msgid. !> @@ -1201,12 +1200,12 @@ end subroutine codes_bufr_new_from_samples !> !> @param msgid id of the message loaded in memory !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_release ( msgid, status ) - integer(kind=kindOfInt), intent(in) :: msgid - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_release(msgid, status) + integer(kind=kindOfInt), intent(in) :: msgid + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_release ( msgid, status ) -end subroutine codes_release + call grib_release(msgid, status) + end subroutine codes_release !> Create a copy of a message. !> @@ -1223,24 +1222,24 @@ end subroutine codes_release !> @param msgid_src message to be cloned !> @param msgid_dest new message returned !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_clone ( msgid_src, msgid_dest, status ) - integer(kind=kindOfInt), intent(in) :: msgid_src - integer(kind=kindOfInt), intent(out) :: msgid_dest - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_clone(msgid_src, msgid_dest, status) + integer(kind=kindOfInt), intent(in) :: msgid_src + integer(kind=kindOfInt), intent(out) :: msgid_dest + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_clone ( msgid_src, msgid_dest, status ) -end subroutine codes_clone + call grib_clone(msgid_src, msgid_dest, status) + end subroutine codes_clone ! -subroutine codes_grib_util_sections_copy ( gribid_from, gribid_to, what, gribid_out,status ) - integer(kind=kindOfInt), intent(in) :: gribid_from - integer(kind=kindOfInt), intent(in) :: gribid_to - integer(kind=kindOfInt), intent(out) :: gribid_out - integer(kind=kindOfInt), intent(in) :: what - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_grib_util_sections_copy(gribid_from, gribid_to, what, gribid_out, status) + integer(kind=kindOfInt), intent(in) :: gribid_from + integer(kind=kindOfInt), intent(in) :: gribid_to + integer(kind=kindOfInt), intent(out) :: gribid_out + integer(kind=kindOfInt), intent(in) :: what + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_util_sections_copy ( gribid_from, gribid_to, what, gribid_out,status ) -end subroutine codes_grib_util_sections_copy + call grib_util_sections_copy(gribid_from, gribid_to, what, gribid_out, status) + end subroutine codes_grib_util_sections_copy !> Copy the value of all the keys belonging to a namespace from the source message !> to the destination message @@ -1254,14 +1253,14 @@ end subroutine codes_grib_util_sections_copy !> @param gribid_dest destination message !> @param namespace namespace to be copied !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_copy_namespace ( gribid_src, namespace, gribid_dest, status ) - integer(kind=kindOfInt), intent(in) :: gribid_src - integer(kind=kindOfInt), intent(in) :: gribid_dest - character(LEN=*), intent(in) :: namespace - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_copy_namespace(gribid_src, namespace, gribid_dest, status) + integer(kind=kindOfInt), intent(in) :: gribid_src + integer(kind=kindOfInt), intent(in) :: gribid_dest + character(LEN=*), intent(in) :: namespace + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_copy_namespace ( gribid_src, namespace, gribid_dest, status ) -end subroutine codes_copy_namespace + call grib_copy_namespace(gribid_src, namespace, gribid_dest, status) + end subroutine codes_copy_namespace !> Check the status returned by a subroutine. !> @@ -1271,13 +1270,13 @@ end subroutine codes_copy_namespace !> @param status the status to be checked !> @param caller name of the caller soubroutine !> @param string a string variable from the caller routine (e.g. key,filename) -subroutine codes_check ( status,caller,string ) + subroutine codes_check(status, caller, string) integer(kind=kindOfInt), intent(in) :: status - character(len=*), intent(in) :: caller - character(len=*), intent(in) :: string + character(len=*), intent(in) :: caller + character(len=*), intent(in) :: string - call grib_check ( status,caller,string ) -end subroutine codes_check + call grib_check(status, caller, string) + end subroutine codes_check !> Get latitudes/longitudes/data values (real(4)). !> @@ -1295,14 +1294,14 @@ end subroutine codes_check !> @param lons longitudes array with dimension "size" !> @param values data values array with dimension "size" !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_grib_get_data_real4 ( gribid, lats, lons, values, status ) - integer(kind=kindOfInt), intent(in) :: gribid - real ( kind = kindOfFloat ), dimension(:),intent(out) :: lats, lons - real ( kind = kindOfFloat ), dimension(:),intent(out) :: values - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_grib_get_data_real4(gribid, lats, lons, values, status) + integer(kind=kindOfInt), intent(in) :: gribid + real(kind=kindOfFloat), dimension(:), intent(out) :: lats, lons + real(kind=kindOfFloat), dimension(:), intent(out) :: values + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_get_data_real4 ( gribid, lats, lons, values, status ) -end subroutine codes_grib_get_data_real4 + call grib_get_data_real4(gribid, lats, lons, values, status) + end subroutine codes_grib_get_data_real4 !> Get latitudes/longitudes/data values (real(8)). !> @@ -1319,14 +1318,14 @@ end subroutine codes_grib_get_data_real4 !> @param lons longitudes array !> @param values data values array !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_grib_get_data_real8 ( gribid, lats, lons, values, status ) - integer(kind=kindOfInt), intent(in) :: gribid - real ( kind = kindOfDouble ), dimension(:),intent(out) :: lats, lons - real ( kind = kindOfDouble ), dimension(:),intent(out) :: values - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_grib_get_data_real8(gribid, lats, lons, values, status) + integer(kind=kindOfInt), intent(in) :: gribid + real(kind=kindOfDouble), dimension(:), intent(out) :: lats, lons + real(kind=kindOfDouble), dimension(:), intent(out) :: values + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_get_data_real8 ( gribid, lats, lons, values, status ) -end subroutine codes_grib_get_data_real8 + call grib_get_data_real8(gribid, lats, lons, values, status) + end subroutine codes_grib_get_data_real8 !> Create a new iterator on the keys. !> @@ -1349,25 +1348,25 @@ end subroutine codes_grib_get_data_real8 !> @param iterid keys iterator id to be used in the keys iterator functions !> @param namespace the namespace of the keys to search for (all the keys if empty) !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_keys_iterator_new ( msgid, iterid, namespace, status ) - integer(kind=kindOfInt), intent(in) :: msgid - integer(kind=kindOfInt), intent(inout) :: iterid + subroutine codes_keys_iterator_new(msgid, iterid, namespace, status) + integer(kind=kindOfInt), intent(in) :: msgid + integer(kind=kindOfInt), intent(inout) :: iterid character(LEN=*), intent(in) :: namespace - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_keys_iterator_new ( msgid, iterid, namespace, status ) -end subroutine codes_keys_iterator_new + call grib_keys_iterator_new(msgid, iterid, namespace, status) + end subroutine codes_keys_iterator_new !> Advance to the next keys iterator value. !> !> @param iterid keys iterator id created with @ref codes_keys_iterator_new !> @param status CODES_SUCCESS if next iterator exists, integer value if no more elements to iterate on -subroutine codes_keys_iterator_next ( iterid , status) - integer(kind=kindOfInt), intent(in) :: iterid - integer(kind=kindOfInt), intent(out) :: status + subroutine codes_keys_iterator_next(iterid, status) + integer(kind=kindOfInt), intent(in) :: iterid + integer(kind=kindOfInt), intent(out) :: status - call grib_keys_iterator_next ( iterid , status) -end subroutine codes_keys_iterator_next + call grib_keys_iterator_next(iterid, status) + end subroutine codes_keys_iterator_next !> Delete a keys iterator and free memory. !> @@ -1377,12 +1376,12 @@ end subroutine codes_keys_iterator_next !> !> @param iterid keys iterator id created with @ref codes_keys_iterator_new !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_keys_iterator_delete ( iterid , status) - integer(kind=kindOfInt), intent(in) :: iterid - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_keys_iterator_delete(iterid, status) + integer(kind=kindOfInt), intent(in) :: iterid + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_keys_iterator_delete ( iterid , status) -end subroutine codes_keys_iterator_delete + call grib_keys_iterator_delete(iterid, status) + end subroutine codes_keys_iterator_delete !> Get the name of a key from a keys iterator. !> @@ -1392,13 +1391,13 @@ end subroutine codes_keys_iterator_delete !> @param iterid keys iterator id created with @ref codes_keys_iterator_new !> @param name key name to be retrieved !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_keys_iterator_get_name ( iterid, name, status ) - integer(kind=kindOfInt), intent(in) :: iterid + subroutine codes_keys_iterator_get_name(iterid, name, status) + integer(kind=kindOfInt), intent(in) :: iterid character(LEN=*), intent(out) :: name - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_keys_iterator_get_name ( iterid, name, status ) -end subroutine codes_keys_iterator_get_name + call grib_keys_iterator_get_name(iterid, name, status) + end subroutine codes_keys_iterator_get_name !> Rewind a keys iterator. !> @@ -1408,13 +1407,12 @@ end subroutine codes_keys_iterator_get_name !> !> @param iterid keys iterator id created with @ref codes_keys_iterator_new !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_keys_iterator_rewind ( iterid, status ) - integer(kind=kindOfInt), intent(in) :: iterid - integer(kind=kindOfInt),optional, intent(out) :: status - - call grib_keys_iterator_rewind ( iterid, status ) -end subroutine codes_keys_iterator_rewind + subroutine codes_keys_iterator_rewind(iterid, status) + integer(kind=kindOfInt), intent(in) :: iterid + integer(kind=kindOfInt), optional, intent(out) :: status + call grib_keys_iterator_rewind(iterid, status) + end subroutine codes_keys_iterator_rewind ! BUFR keys iterator ! ----------------------- @@ -1431,38 +1429,36 @@ end subroutine codes_keys_iterator_rewind !> @param msgid id of the BUFR message loaded in memory !> @param iterid keys iterator id to be used in the keys iterator functions !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_bufr_keys_iterator_new ( msgid, iterid, status ) - integer(kind=kindOfInt), intent(in) :: msgid - integer(kind=kindOfInt), intent(inout) :: iterid - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_bufr_keys_iterator_new(msgid, iterid, status) + integer(kind=kindOfInt), intent(in) :: msgid + integer(kind=kindOfInt), intent(inout) :: iterid + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret iret = codes_f_bufr_keys_iterator_new(msgid, iterid) if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'bufr_keys_iterator_new','') - endif -end subroutine codes_bufr_keys_iterator_new - + call grib_check(iret, 'bufr_keys_iterator_new', '') + end if + end subroutine codes_bufr_keys_iterator_new !> Advance to the next BUFR keys iterator value. !> !> @param iterid keys iterator id created with @ref codes_bufr_keys_iterator_new !> @param status CODES_SUCCESS if next iterator exists, integer value if no more elements to iterate on -subroutine codes_bufr_keys_iterator_next (iterid , status) + subroutine codes_bufr_keys_iterator_next(iterid, status) integer(kind=kindOfInt), intent(in) :: iterid integer(kind=kindOfInt), intent(out) :: status integer(kind=kindOfInt) :: iret status = GRIB_SUCCESS - iret = codes_f_bufr_keys_iterator_next( iterid ) + iret = codes_f_bufr_keys_iterator_next(iterid) if (iret == 0) then - ! no more elements - status = GRIB_END - endif -end subroutine codes_bufr_keys_iterator_next - + ! no more elements + status = GRIB_END + end if + end subroutine codes_bufr_keys_iterator_next !> Get the name of a key from a BUFR keys iterator. !> @@ -1472,19 +1468,19 @@ end subroutine codes_bufr_keys_iterator_next !> @param iterid keys iterator id created with @ref codes_bufr_keys_iterator_new !> @param name key name to be retrieved !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_bufr_keys_iterator_get_name( iterid, name, status ) - integer(kind=kindOfInt), intent(in) :: iterid + subroutine codes_bufr_keys_iterator_get_name(iterid, name, status) + integer(kind=kindOfInt), intent(in) :: iterid character(LEN=*), intent(out) :: name - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret - iret = codes_f_bufr_keys_iterator_get_name( iterid, name ) + iret = codes_f_bufr_keys_iterator_get_name(iterid, name) if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'bufr_keys_iterator_get_name',name) - endif -end subroutine codes_bufr_keys_iterator_get_name + call grib_check(iret, 'bufr_keys_iterator_get_name', name) + end if + end subroutine codes_bufr_keys_iterator_get_name !> Rewind a BUFR keys iterator. !> @@ -1494,17 +1490,17 @@ end subroutine codes_bufr_keys_iterator_get_name !> !> @param iterid keys iterator id created with @ref codes_bufr_keys_iterator_new !> @param status CODES_SUCCESS if OK, integer value on error - subroutine codes_bufr_keys_iterator_rewind( iterid, status ) - integer(kind=kindOfInt), intent(in) :: iterid - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine codes_bufr_keys_iterator_rewind(iterid, status) + integer(kind=kindOfInt), intent(in) :: iterid + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret = codes_f_bufr_keys_iterator_rewind( iterid ) - if (present(status)) then - status = iret - else - call grib_check(iret,'bufr_keys_iterator_rewind','') - endif + iret = codes_f_bufr_keys_iterator_rewind(iterid) + if (present(status)) then + status = iret + else + call grib_check(iret, 'bufr_keys_iterator_rewind', '') + end if end subroutine codes_bufr_keys_iterator_rewind !> Delete a BUFR keys iterator and free memory. @@ -1515,21 +1511,19 @@ end subroutine codes_bufr_keys_iterator_get_name !> !> @param iterid keys iterator id created with @ref codes_bufr_keys_iterator_new !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine codes_bufr_keys_iterator_delete (iterid , status) - integer(kind=kindOfInt), intent(in) :: iterid - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine codes_bufr_keys_iterator_delete(iterid, status) + integer(kind=kindOfInt), intent(in) :: iterid + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret = codes_f_bufr_keys_iterator_delete(iterid) - if (present(status)) then - status = iret - else - call grib_check(iret,'bufr_keys_iterator_delete','') - endif + iret = codes_f_bufr_keys_iterator_delete(iterid) + if (present(status)) then + status = iret + else + call grib_check(iret, 'bufr_keys_iterator_delete', '') + end if end subroutine codes_bufr_keys_iterator_delete - - !> Dump the content of a message. !> !> In case of error, if the status parameter (optional) is not given, the program will @@ -1538,13 +1532,12 @@ end subroutine codes_bufr_keys_iterator_get_name !> !> @param msgid id of the message loaded in memory !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_dump ( msgid , status) - integer(kind=kindOfInt), intent(in) :: msgid - integer(kind=kindOfInt),optional, intent(out) :: status - - call grib_dump (msgid, status) -end subroutine codes_dump + subroutine codes_dump(msgid, status) + integer(kind=kindOfInt), intent(in) :: msgid + integer(kind=kindOfInt), optional, intent(out) :: status + call grib_dump(msgid, status) + end subroutine codes_dump !> Get the API version !> @@ -1554,29 +1547,28 @@ end subroutine codes_dump !> !> @param api_version The version as an integer !> @param status GRIB_SUCCESS if OK, integer value on error -subroutine codes_get_api_version(api_version, status) - integer(kind = kindOfInt), intent(out) :: api_version - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_get_api_version(api_version, status) + integer(kind=kindOfInt), intent(out) :: api_version + integer(kind=kindOfInt), optional, intent(out) :: status call grib_f_get_api_version(api_version) if (present(status)) then status = CODES_SUCCESS - endif -end subroutine codes_get_api_version - + end if + end subroutine codes_get_api_version !> Get the error message given an error code !> !> @param error error code !> @param error_message error message !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_error_string ( error, error_message, status ) - integer(kind=kindOfInt), intent(in) :: error + subroutine codes_get_error_string(error, error_message, status) + integer(kind=kindOfInt), intent(in) :: error character(len=*), intent(out) :: error_message - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_get_error_string ( error, error_message, status ) -end subroutine codes_get_error_string + call grib_get_error_string(error, error_message, status) + end subroutine codes_get_error_string !> Get the size of an array key. !> @@ -1590,14 +1582,14 @@ end subroutine codes_get_error_string !> @param key name of the key !> @param size size of the array key !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_size_int ( msgid, key, size , status) - integer(kind=kindOfInt), intent(in) :: msgid + subroutine codes_get_size_int(msgid, key, size, status) + integer(kind=kindOfInt), intent(in) :: msgid character(len=*), intent(in) :: key - integer(kind=kindOfInt), intent(out) :: size - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), intent(out) :: size + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_get_size_int ( msgid, key, size , status) -end subroutine codes_get_size_int + call grib_get_size_int(msgid, key, size, status) + end subroutine codes_get_size_int !> Get the size of an array key. !> @@ -1611,14 +1603,14 @@ end subroutine codes_get_size_int !> @param key name of the key !> @param size size of the array key !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_size_long ( msgid, key, size , status) - integer(kind=kindOfInt), intent(in) :: msgid + subroutine codes_get_size_long(msgid, key, size, status) + integer(kind=kindOfInt), intent(in) :: msgid character(len=*), intent(in) :: key - integer(kind=kindOfLong), intent(out) :: size - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfLong), intent(out) :: size + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_get_size_long ( msgid, key, size , status) -end subroutine codes_get_size_long + call grib_get_size_long(msgid, key, size, status) + end subroutine codes_get_size_long !> Get the integer value of a key from a message. !> @@ -1630,14 +1622,14 @@ end subroutine codes_get_size_long !> @param key key name !> @param value the integer(4) value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_int(msgid,key,value,status) - integer(kind=kindOfInt), intent(in) :: msgid + subroutine codes_get_int(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid character(len=*), intent(in) :: key - integer(kind = kindOfInt), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_get_int(msgid,key,value,status) -end subroutine codes_get_int + call grib_get_int(msgid, key, value, status) + end subroutine codes_get_int !> Get the integer value of a key from a message. !> @@ -1649,14 +1641,14 @@ end subroutine codes_get_int !> @param key key name !> @param value the integer(4) value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_long(msgid,key,value,status) - integer(kind=kindOfInt), intent(in) :: msgid + subroutine codes_get_long(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid character(len=*), intent(in) :: key - integer(kind = kindOfLong), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfLong), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_get_long(msgid,key,value,status) -end subroutine codes_get_long + call grib_get_long(msgid, key, value, status) + end subroutine codes_get_long !> Check if the value of a key is MISSING. !> @@ -1668,14 +1660,14 @@ end subroutine codes_get_long !> @param key key name !> @param is_missing 0->not missing, 1->missing !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_is_missing(msgid,key,is_missing,status) - integer(kind=kindOfInt), intent(in) :: msgid + subroutine codes_is_missing(msgid, key, is_missing, status) + integer(kind=kindOfInt), intent(in) :: msgid character(len=*), intent(in) :: key - integer(kind = kindOfInt), intent(out) :: is_missing - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), intent(out) :: is_missing + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_is_missing(msgid,key,is_missing,status) -end subroutine codes_is_missing + call grib_is_missing(msgid, key, is_missing, status) + end subroutine codes_is_missing !> Check if a key is defined (exists in the message) !> @@ -1687,14 +1679,14 @@ end subroutine codes_is_missing !> @param key key name !> @param is_defined 0->not defined, 1->defined !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_is_defined(msgid,key,is_defined,status) - integer(kind=kindOfInt), intent(in) :: msgid + subroutine codes_is_defined(msgid, key, is_defined, status) + integer(kind=kindOfInt), intent(in) :: msgid character(len=*), intent(in) :: key - integer(kind = kindOfInt), intent(out) :: is_defined - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), intent(out) :: is_defined + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_is_defined(msgid,key,is_defined,status) -end subroutine codes_is_defined + call grib_is_defined(msgid, key, is_defined, status) + end subroutine codes_is_defined !> Get the real(4) value of a key from a message. !> @@ -1706,14 +1698,14 @@ end subroutine codes_is_defined !> @param key key name !> @param value the real(4) value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_real4 ( msgid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - real(kind = kindOfFloat), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_get_real4(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + real(kind=kindOfFloat), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_get_real4 ( msgid, key, value, status ) -end subroutine codes_get_real4 + call grib_get_real4(msgid, key, value, status) + end subroutine codes_get_real4 !> Get the real(8) value of a key from a message. !> @@ -1725,14 +1717,14 @@ end subroutine codes_get_real4 !> @param key key name !> @param value the real(8) value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_real8 ( msgid, key, value , status) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - real(kind = kindOfDouble), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_get_real8(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + real(kind=kindOfDouble), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_get_real8 ( msgid, key, value , status) -end subroutine codes_get_real8 + call grib_get_real8(msgid, key, value, status) + end subroutine codes_get_real8 !> Get the character value of a key from a message. !> @@ -1744,14 +1736,14 @@ end subroutine codes_get_real8 !> @param key key name !> @param value the character value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_string ( msgid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - character(len=*), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_get_string(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + character(len=*), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_get_string ( msgid, key, value, status ) -end subroutine codes_get_string + call grib_get_string(msgid, key, value, status) + end subroutine codes_get_string !> Get the string array of values for a key from a message. !> @@ -1764,11 +1756,11 @@ end subroutine codes_get_string !> @param key key name !> @param value string array value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_string_array ( msgid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - character(len=*), dimension(:),allocatable,intent(inout) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_get_string_array(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + character(len=*), dimension(:), allocatable, intent(inout) :: value + integer(kind=kindOfInt), optional, intent(out) :: status character :: cvalue(size(value)*len(value(0))) integer(kind=kindOfInt) :: iret @@ -1776,29 +1768,29 @@ subroutine codes_get_string_array ( msgid, key, value, status ) integer(kind=kindOfInt) :: slen if (allocated(value) .eqv. .false.) then - iret=CODES_NULL_POINTER + iret = CODES_NULL_POINTER if (present(status)) then status = iret else - call grib_check(iret,'get',key) - endif + call grib_check(iret, 'get', key) + end if end if - nb_values=size(value) - slen=len(value(0)) - iret=grib_f_get_string_array ( msgid, key, cvalue , nb_values, slen ) - value=transfer(cvalue,value) + nb_values = size(value) + slen = len(value(0)) + iret = grib_f_get_string_array(msgid, key, cvalue, nb_values, slen) + value = transfer(cvalue, value) if (iret /= 0) then call grib_f_write_on_fail(msgid) - endif + end if if (present(status)) then status = iret else - call grib_check(iret,'get',key) - endif + call grib_check(iret, 'get', key) + end if -end subroutine codes_get_string_array + end subroutine codes_get_string_array !> Copy data values from a BUFR message msgid1 to another message msgid2 !> @@ -1809,21 +1801,21 @@ end subroutine codes_get_string_array !> @param msgid1 id of the message from which the data are copied !> @param msgid2 id of the message to which the data are copied !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_bufr_copy_data ( msgid1, msgid2, status ) - integer(kind=kindOfInt), intent(in) :: msgid1 - integer(kind=kindOfInt), intent(in) :: msgid2 - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_bufr_copy_data(msgid1, msgid2, status) + integer(kind=kindOfInt), intent(in) :: msgid1 + integer(kind=kindOfInt), intent(in) :: msgid2 + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret - iret=codes_f_bufr_copy_data ( msgid1,msgid2 ) + iret = codes_f_bufr_copy_data(msgid1, msgid2) if (present(status)) then status = iret else - call grib_check(iret,'bufr_copy_data','error while copying') - endif + call grib_check(iret, 'bufr_copy_data', 'error while copying') + end if -end subroutine codes_bufr_copy_data + end subroutine codes_bufr_copy_data !> Set the string values for an array key in a message. !> @@ -1836,41 +1828,40 @@ end subroutine codes_bufr_copy_data !> @param key key name !> @param value string array value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_set_string_array ( msgid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - character(len=*), dimension(:),allocatable, intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_set_string_array(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + character(len=*), dimension(:), allocatable, intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status character :: cvalue(size(value)*len(value(0))) character :: svalue(len(value(0))) integer(kind=kindOfInt) :: iret integer(kind=kindOfInt) :: nb_values integer(kind=kindOfInt) :: slen - integer(kind=kindOfInt) :: i,j + integer(kind=kindOfInt) :: i, j - nb_values=size(value) - slen=len(value(0)) - j=1 - do i=1,nb_values + nb_values = size(value) + slen = len(value(0)) + j = 1 + do i = 1, nb_values !cvalue(j:j+slen-1)=transfer(trim(value(i)),svalue) - cvalue(j:j+slen-1)=transfer(value(i),svalue) - j=j+slen - enddo + cvalue(j:j + slen - 1) = transfer(value(i), svalue) + j = j + slen + end do - iret=grib_f_set_string_array ( msgid, key, cvalue , nb_values, slen ) + iret = grib_f_set_string_array(msgid, key, cvalue, nb_values, slen) if (iret /= 0) then call grib_f_write_on_fail(msgid) - endif + end if if (present(status)) then status = iret else - call grib_check(iret,'set',key) - endif - -end subroutine codes_set_string_array + call grib_check(iret, 'set', key) + end if + end subroutine codes_set_string_array !> Get the integer array of values for a key from a message. !> @@ -1883,47 +1874,47 @@ end subroutine codes_set_string_array !> @param key key name !> @param value integer(4) array value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_int_array ( msgid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - integer(kind=kindOfInt), dimension(:),allocatable,intent(inout) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_get_int_array(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), dimension(:), allocatable, intent(inout) :: value + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret integer(kind=kindOfInt) :: nb_values integer(kind=kindOfInt) :: size_value integer(kind=kindOfInt) :: i - iret=grib_f_get_size_int(msgid,key,nb_values) + iret = grib_f_get_size_int(msgid, key, nb_values) if (iret /= 0) then call grib_f_write_on_fail(msgid) if (present(status)) then status = iret else - call grib_check(iret,'get',key) - endif + call grib_check(iret, 'get', key) + end if return - endif - if (allocated(value) .eqv. .false.) then - allocate(value(nb_values)) end if - size_value=size(value) - iret=grib_f_get_int_array ( msgid, key, value , nb_values ) - if (iret==0 .and. nb_values==1 .and. size_value/=1) then - do i=2,size_value - value(i)=value(1) - enddo - endif - if (iret /= 0) then - call grib_f_write_on_fail(msgid) - endif + if (allocated(value) .eqv. .false.) then + allocate (value(nb_values)) + end if + size_value = size(value) + iret = grib_f_get_int_array(msgid, key, value, nb_values) + if (iret == 0 .and. nb_values == 1 .and. size_value /= 1) then + do i = 2, size_value + value(i) = value(1) + end do + end if + if (iret /= 0) then + call grib_f_write_on_fail(msgid) + end if if (present(status)) then status = iret else - call grib_check(iret,'get',key) - endif + call grib_check(iret, 'get', key) + end if -end subroutine codes_get_int_array + end subroutine codes_get_int_array !> Get the integer array of values for a key from a message. !> @@ -1936,47 +1927,47 @@ end subroutine codes_get_int_array !> @param key key name !> @param value integer(4) array value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_long_array ( msgid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - integer(kind=kindOfLong), dimension(:),allocatable,intent(inout) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_get_long_array(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + integer(kind=kindOfLong), dimension(:), allocatable, intent(inout) :: value + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret integer(kind=kindOfInt) :: nb_values integer(kind=kindOfInt) :: size_value integer(kind=kindOfInt) :: i - iret=grib_f_get_size_int(msgid,key,nb_values) + iret = grib_f_get_size_int(msgid, key, nb_values) if (iret /= 0) then call grib_f_write_on_fail(msgid) if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'get',key) - endif + call grib_check(iret, 'get', key) + end if return - endif - if (allocated(value) .eqv. .false.) then - allocate(value(nb_values)) end if - size_value=size(value) - iret=grib_f_get_long_array ( msgid, key, value , nb_values ) - if (iret==0 .and. nb_values==1 .and. size_value/=1) then - do i=2,size_value - value(i)=value(1) - enddo - endif + if (allocated(value) .eqv. .false.) then + allocate (value(nb_values)) + end if + size_value = size(value) + iret = grib_f_get_long_array(msgid, key, value, nb_values) + if (iret == 0 .and. nb_values == 1 .and. size_value /= 1) then + do i = 2, size_value + value(i) = value(1) + end do + end if if (iret /= 0) then call grib_f_write_on_fail(msgid) - endif + end if if (present(status)) then status = iret else - call grib_check(iret,'get',key) - endif + call grib_check(iret, 'get', key) + end if -end subroutine codes_get_long_array + end subroutine codes_get_long_array !> Get the array of bytes (character) for a key from a message. !> @@ -1989,15 +1980,15 @@ end subroutine codes_get_long_array !> @param value character(len=1) array of byte values !> @param length (optional) output: number of values retrieved !> @param status (optional) CODES_SUCCESS if OK, integer value on error -subroutine codes_get_byte_array ( msgid, key, value, length, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - character(len=1), dimension(:), intent(inout) :: value - integer(kind=kindOfInt), optional, intent(out) :: length - integer(kind=kindOfInt), optional, intent(out) :: status + subroutine codes_get_byte_array(msgid, key, value, length, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + character(len=1), dimension(:), intent(inout) :: value + integer(kind=kindOfInt), optional, intent(out) :: length + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_get_byte_array ( msgid, key, value, length, status ) -end subroutine codes_get_byte_array + call grib_get_byte_array(msgid, key, value, length, status) + end subroutine codes_get_byte_array !> Get the real(4) array of values for a key from a message. !> @@ -2010,46 +2001,46 @@ end subroutine codes_get_byte_array !> @param key key name !> @param value real(4) array value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_real4_array ( msgid, key, value, status) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - real(kind = kindOfFloat), dimension(:),allocatable, intent(inout) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_get_real4_array(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + real(kind=kindOfFloat), dimension(:), allocatable, intent(inout) :: value + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret integer(kind=kindOfInt) :: nb_values integer(kind=kindOfInt) :: size_value integer(kind=kindOfInt) :: i - iret=grib_f_get_size_int(msgid,key,nb_values) + iret = grib_f_get_size_int(msgid, key, nb_values) if (iret /= 0) then call grib_f_write_on_fail(msgid) if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'get',key) - endif + call grib_check(iret, 'get', key) + end if return - endif - if (allocated(value) .eqv. .false.) then - allocate(value(nb_values)) end if - size_value=size(value) - iret=grib_f_get_real4_array ( msgid, key, value , nb_values ) - if (iret==0 .and. nb_values==1 .and. size_value/=1) then - do i=2,size_value - value(i)=value(1) - enddo - endif + if (allocated(value) .eqv. .false.) then + allocate (value(nb_values)) + end if + size_value = size(value) + iret = grib_f_get_real4_array(msgid, key, value, nb_values) + if (iret == 0 .and. nb_values == 1 .and. size_value /= 1) then + do i = 2, size_value + value(i) = value(1) + end do + end if if (iret /= 0) then call grib_f_write_on_fail(msgid) - endif + end if if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'get',key) - endif -end subroutine codes_get_real4_array + call grib_check(iret, 'get', key) + end if + end subroutine codes_get_real4_array !> Get the real(8) array of values for a key from a message. !> @@ -2062,47 +2053,46 @@ end subroutine codes_get_real4_array !> @param key key name !> @param value real(8) array value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_real8_array ( msgid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - real(kind = kindOfDouble), dimension(:),allocatable, intent(inout) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_get_real8_array(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + real(kind=kindOfDouble), dimension(:), allocatable, intent(inout) :: value + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret integer(kind=kindOfInt) :: nb_values integer(kind=kindOfInt) :: size_value integer(kind=kindOfInt) :: i - iret=grib_f_get_size_int(msgid,key,nb_values) + iret = grib_f_get_size_int(msgid, key, nb_values) if (iret /= 0) then call grib_f_write_on_fail(msgid) if (present(status)) then status = iret else - call grib_check(iret,'get',key) - endif + call grib_check(iret, 'get', key) + end if return - endif - if (allocated(value) .eqv. .false.) then - allocate(value(nb_values)) end if - size_value=size(value) - iret=grib_f_get_real8_array ( msgid, key, value, nb_values ) - if (iret==0 .and. nb_values==1 .and. size_value/=1) then - do i=2,size_value - value(i)=value(1) - enddo - endif + if (allocated(value) .eqv. .false.) then + allocate (value(nb_values)) + end if + size_value = size(value) + iret = grib_f_get_real8_array(msgid, key, value, nb_values) + if (iret == 0 .and. nb_values == 1 .and. size_value /= 1) then + do i = 2, size_value + value(i) = value(1) + end do + end if if (iret /= 0) then call grib_f_write_on_fail(msgid) - endif + end if if (present(status)) then status = iret else - call grib_check(iret,'get',key) - endif -end subroutine codes_get_real8_array - + call grib_check(iret, 'get', key) + end if + end subroutine codes_get_real8_array !> Get a real(4) value of specified index from an array key. !> @@ -2115,16 +2105,15 @@ end subroutine codes_get_real8_array !> @param kindex integer(4) index !> @param value real(4) value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_real4_element ( msgid, key, kindex,value, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - integer(kind=kindOfInt), intent(in) :: kindex - real(kind = kindOfFloat), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - - call grib_get_real4_element ( msgid, key, kindex,value, status ) -end subroutine codes_get_real4_element + subroutine codes_get_real4_element(msgid, key, kindex, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), intent(in) :: kindex + real(kind=kindOfFloat), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + call grib_get_real4_element(msgid, key, kindex, value, status) + end subroutine codes_get_real4_element !> Get a real(8) value of specified index from an array key. !> @@ -2137,16 +2126,15 @@ end subroutine codes_get_real4_element !> @param kindex integer(4) index !> @param value real(8) value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_real8_element ( msgid, key, kindex,value, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - integer(kind=kindOfInt), intent(in) :: kindex - real(kind = kindOfDouble), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - - call grib_get_real8_element ( msgid, key, kindex,value, status ) -end subroutine codes_get_real8_element + subroutine codes_get_real8_element(msgid, key, kindex, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), intent(in) :: kindex + real(kind=kindOfDouble), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + call grib_get_real8_element(msgid, key, kindex, value, status) + end subroutine codes_get_real8_element !> Get the real(4) values whose indexes are stored in the array "index" from an array key. !> @@ -2159,15 +2147,15 @@ end subroutine codes_get_real8_element !> @param kindex integer(4) array indexes !> @param value real(4) array value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_real4_elements ( msgid, key, kindex,value, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - integer(kind=kindOfInt),dimension(:), intent(in) :: kindex - real(kind = kindOfFloat), dimension(:), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_get_real4_elements(msgid, key, kindex, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), dimension(:), intent(in) :: kindex + real(kind=kindOfFloat), dimension(:), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_get_real4_elements ( msgid, key, kindex,value, status ) -end subroutine codes_get_real4_elements + call grib_get_real4_elements(msgid, key, kindex, value, status) + end subroutine codes_get_real4_elements !> Get the real(8) values whose indexes are stored in the array "index" from an array key. !> @@ -2180,15 +2168,15 @@ end subroutine codes_get_real4_elements !> @param kindex integer(4) array index !> @param value real(8) array value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_real8_elements ( msgid, key, kindex,value, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - integer(kind=kindOfInt),dimension(:), intent(in) :: kindex - real(kind = kindOfDouble), dimension(:), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_get_real8_elements(msgid, key, kindex, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), dimension(:), intent(in) :: kindex + real(kind=kindOfDouble), dimension(:), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_get_real8_elements ( msgid, key, kindex,value, status ) -end subroutine codes_get_real8_elements + call grib_get_real8_elements(msgid, key, kindex, value, status) + end subroutine codes_get_real8_elements !> Set the integer value for a key in a message. !> @@ -2200,15 +2188,14 @@ end subroutine codes_get_real8_elements !> @param key key name !> @param value integer(4) value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_set_int ( msgid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: msgid + subroutine codes_set_int(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid character(len=*), intent(in) :: key - integer(kind=kindOfInt), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - - call grib_set_int ( msgid, key, value, status ) -end subroutine codes_set_int + integer(kind=kindOfInt), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + call grib_set_int(msgid, key, value, status) + end subroutine codes_set_int !> Set the integer value for a key in a message. !> @@ -2220,15 +2207,14 @@ end subroutine codes_set_int !> @param key key name !> @param value integer(4) value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_set_long ( msgid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: msgid + subroutine codes_set_long(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid character(len=*), intent(in) :: key - integer(kind=kindOfLong), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - - call grib_set_long ( msgid, key, value, status ) -end subroutine codes_set_long + integer(kind=kindOfLong), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + call grib_set_long(msgid, key, value, status) + end subroutine codes_set_long !> Set the real(4) value for a key in a message. !> @@ -2240,14 +2226,14 @@ end subroutine codes_set_long !> @param key key name !> @param value real(4) value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_set_real4 ( msgid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - real(kind = kindOfFloat), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_set_real4(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + real(kind=kindOfFloat), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_set_real4 ( msgid, key, value, status ) -end subroutine codes_set_real4 + call grib_set_real4(msgid, key, value, status) + end subroutine codes_set_real4 !> Set the real(8) value for a key in a message. !> @@ -2259,15 +2245,14 @@ end subroutine codes_set_real4 !> @param key key name !> @param value real(8) value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_set_real8 ( msgid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - real(kind = kindOfDouble), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - - call grib_set_real8 ( msgid, key, value, status ) -end subroutine codes_set_real8 + subroutine codes_set_real8(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + real(kind=kindOfDouble), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + call grib_set_real8(msgid, key, value, status) + end subroutine codes_set_real8 !> Set the integers values for an array key in a message. !> @@ -2279,14 +2264,14 @@ end subroutine codes_set_real8 !> @param key key name !> @param value integer(4) array value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_set_int_array ( msgid, key, value, status) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - integer(kind=kindOfInt), dimension(:), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_set_int_array(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), dimension(:), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_set_int_array ( msgid, key, value, status) -end subroutine codes_set_int_array + call grib_set_int_array(msgid, key, value, status) + end subroutine codes_set_int_array !> Set the integers values for an array key in a message. !> @@ -2298,14 +2283,14 @@ end subroutine codes_set_int_array !> @param key key name !> @param value integer(4) array value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_set_long_array ( msgid, key, value, status) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - integer(kind=kindOfLong), dimension(:), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_set_long_array(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + integer(kind=kindOfLong), dimension(:), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_set_long_array ( msgid, key, value, status) -end subroutine codes_set_long_array + call grib_set_long_array(msgid, key, value, status) + end subroutine codes_set_long_array !> Set the array of bytes (character) for a key in a message. !> @@ -2318,15 +2303,15 @@ end subroutine codes_set_long_array !> @param value character(len=1) array of byte values !> @param length (optional) output: number of values written !> @param status (optional) CODES_SUCCESS if OK, integer value on error -subroutine codes_set_byte_array ( msgid, key, value, length, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - character(len=1), dimension(:), intent(in) :: value - integer(kind=kindOfInt), optional, intent(out) :: length - integer(kind=kindOfInt), optional, intent(out) :: status + subroutine codes_set_byte_array(msgid, key, value, length, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + character(len=1), dimension(:), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: length + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_set_byte_array ( msgid, key, value, length, status ) -end subroutine codes_set_byte_array + call grib_set_byte_array(msgid, key, value, length, status) + end subroutine codes_set_byte_array !> Set the real(4) values for an array key in a message. !> @@ -2338,14 +2323,14 @@ end subroutine codes_set_byte_array !> @param key key name !> @param value real(4) array value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_set_real4_array ( msgid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - real(kind = kindOfFloat), dimension(:), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_set_real4_array(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + real(kind=kindOfFloat), dimension(:), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_set_real4_array ( msgid, key, value, status ) -end subroutine codes_set_real4_array + call grib_set_real4_array(msgid, key, value, status) + end subroutine codes_set_real4_array !> Set the real(8) values for an array key in a message. !> @@ -2357,14 +2342,14 @@ end subroutine codes_set_real4_array !> @param key key name !> @param value real(8) array value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_set_real8_array ( msgid, key, value, status) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - real(kind = kindOfDouble), dimension(:), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_set_real8_array(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + real(kind=kindOfDouble), dimension(:), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_set_real8_array ( msgid, key, value, status) -end subroutine codes_set_real8_array + call grib_set_real8_array(msgid, key, value, status) + end subroutine codes_set_real8_array !> @cond !> Set the real(4) values for an array key in a grib message, forces the set if the key is read-only. @@ -2378,14 +2363,14 @@ end subroutine codes_set_real8_array !> @param key key name !> @param value real(4) array value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_set_force_real4_array ( msgid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - real(kind = kindOfFloat), dimension(:), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_set_force_real4_array(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + real(kind=kindOfFloat), dimension(:), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_set_force_real4_array ( msgid, key, value, status ) -end subroutine codes_set_force_real4_array + call grib_set_force_real4_array(msgid, key, value, status) + end subroutine codes_set_force_real4_array !> Set the real(8) values for an array key in a grib message, forces the set if the key is read-only. !> Use with great caution!! @@ -2398,14 +2383,14 @@ end subroutine codes_set_force_real4_array !> @param key key name !> @param value real(8) array value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_set_force_real8_array ( msgid, key, value, status) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - real(kind = kindOfDouble), dimension(:), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_set_force_real8_array(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + real(kind=kindOfDouble), dimension(:), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_set_force_real8_array ( msgid, key, value, status) -end subroutine codes_set_force_real8_array + call grib_set_force_real8_array(msgid, key, value, status) + end subroutine codes_set_force_real8_array !> @endcond !> Set the character value for a string key in a message. @@ -2418,14 +2403,14 @@ end subroutine codes_set_force_real8_array !> @param key key name !> @param value character value !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_set_string ( msgid, key, value , status) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=*), intent(in) :: key - character(len=*), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_set_string(msgid, key, value, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=*), intent(in) :: key + character(len=*), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_set_string ( msgid, key, value , status) -end subroutine codes_set_string + call grib_set_string(msgid, key, value, status) + end subroutine codes_set_string !> Get the size of a coded message. !> @@ -2436,14 +2421,13 @@ end subroutine codes_set_string !> @param msgid id of the grib loaded in memory !> @param nbytes size in bytes of the message !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_message_size_int ( msgid, nbytes, status) - integer(kind=kindOfInt), intent(in) :: msgid - integer(kind=kindOfInt), intent(out) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - - call grib_get_message_size_int ( msgid, nbytes, status) -end subroutine codes_get_message_size_int + subroutine codes_get_message_size_int(msgid, nbytes, status) + integer(kind=kindOfInt), intent(in) :: msgid + integer(kind=kindOfInt), intent(out) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + call grib_get_message_size_int(msgid, nbytes, status) + end subroutine codes_get_message_size_int !> Get the size of a coded message. !> @@ -2454,13 +2438,13 @@ end subroutine codes_get_message_size_int !> @param msgid id of the grib loaded in memory !> @param nbytes size in bytes of the message !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_get_message_size_size_t ( msgid, nbytes, status) - integer(kind=kindOfInt), intent(in) :: msgid - integer(kind=kindOfSize_t), intent(out) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_get_message_size_size_t(msgid, nbytes, status) + integer(kind=kindOfInt), intent(in) :: msgid + integer(kind=kindOfSize_t), intent(out) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_get_message_size_size_t ( msgid, nbytes, status) -end subroutine codes_get_message_size_size_t + call grib_get_message_size_size_t(msgid, nbytes, status) + end subroutine codes_get_message_size_size_t !> Copy the coded message into an array. !> @@ -2471,13 +2455,13 @@ end subroutine codes_get_message_size_size_t !> @param msgid id of the grib loaded in memory !> @param message array containing the coded message to be copied !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_copy_message ( msgid, message, status ) - integer(kind=kindOfInt), intent(in) :: msgid - character(len=1), dimension(:), intent(out) :: message - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_copy_message(msgid, message, status) + integer(kind=kindOfInt), intent(in) :: msgid + character(len=1), dimension(:), intent(out) :: message + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_copy_message ( msgid, message, status ) -end subroutine codes_copy_message + call grib_copy_message(msgid, message, status) + end subroutine codes_copy_message !> Write the coded message to a file. !> @@ -2488,13 +2472,13 @@ end subroutine codes_copy_message !> @param msgid id of the grib loaded in memory !> @param ifile file id of a file opened with \ref codes_open_file !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_write ( msgid, ifile , status) - integer(kind=kindOfInt), intent(in) :: msgid - integer(kind=kindOfInt), intent(in) :: ifile - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_write(msgid, ifile, status) + integer(kind=kindOfInt), intent(in) :: msgid + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_write ( msgid, ifile , status) -end subroutine codes_write + call grib_write(msgid, ifile, status) + end subroutine codes_write !> Write a multi field message to a file. !> @@ -2505,14 +2489,13 @@ end subroutine codes_write !> @param multigribid id of the multi field grib loaded in memory !> @param ifile file id of a file opened with \ref codes_open_file !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_grib_multi_write ( multigribid, ifile , status) - integer(kind=kindOfInt), intent(in) :: multigribid - integer(kind=kindOfInt), intent(in) :: ifile - integer(kind=kindOfInt),optional, intent(out) :: status - - call grib_multi_write ( multigribid, ifile , status) -end subroutine codes_grib_multi_write + subroutine codes_grib_multi_write(multigribid, ifile, status) + integer(kind=kindOfInt), intent(in) :: multigribid + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), optional, intent(out) :: status + call grib_multi_write(multigribid, ifile, status) + end subroutine codes_grib_multi_write !> Append a single field grib message to a multi field grib message. !> Only the sections with section number greather or equal "startsection" are copied from the input single message to the multi field output grib. @@ -2521,18 +2504,18 @@ end subroutine codes_grib_multi_write !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref codes_get_error_string. !> - !> @param ingribid id of the input single grib + !> @param ingribid id of the input single grib !> @param startsection starting from startsection (included) all the sections are copied from the input single grib to the output multi grib !> @param multigribid id of the output multi field grib !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_grib_multi_append ( ingribid, startsection, multigribid , status) - integer(kind=kindOfInt), intent(in) :: ingribid - integer(kind=kindOfInt), intent(in) :: startsection - integer(kind=kindOfInt), intent(out) :: multigribid - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_grib_multi_append(ingribid, startsection, multigribid, status) + integer(kind=kindOfInt), intent(in) :: ingribid + integer(kind=kindOfInt), intent(in) :: startsection + integer(kind=kindOfInt), intent(out) :: multigribid + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_multi_append ( ingribid, startsection, multigribid , status) -end subroutine codes_grib_multi_append + call grib_multi_append(ingribid, startsection, multigribid, status) + end subroutine codes_grib_multi_append !> Find the nearest point of a set of points whose latitudes and longitudes !> are given in the inlats, inlons arrays respectively. @@ -2551,24 +2534,24 @@ end subroutine codes_grib_multi_append !> @param indexes output integer(4) array of the zero based indexes !> @param values output real(8) array of the values !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_grib_find_nearest_multiple(gribid,is_lsm, & - inlats,inlons,outlats,outlons, & - values,distances, indexes,status) - integer(kind=kindOfInt), intent(in) :: gribid - logical, intent(in) :: is_lsm - real(kind = kindOfDouble), dimension(:), intent(in) :: inlats - real(kind = kindOfDouble), dimension(:), intent(in) :: inlons - real(kind = kindOfDouble), dimension(:), intent(out) :: outlats - real(kind = kindOfDouble), dimension(:), intent(out) :: outlons - real(kind = kindOfDouble), dimension(:), intent(out) :: distances - real(kind = kindOfDouble), dimension(:), intent(out) :: values - integer(kind = kindOfInt), dimension(:), intent(out) :: indexes - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_grib_find_nearest_multiple(gribid, is_lsm, & + inlats, inlons, outlats, outlons, & + values, distances, indexes, status) + integer(kind=kindOfInt), intent(in) :: gribid + logical, intent(in) :: is_lsm + real(kind=kindOfDouble), dimension(:), intent(in) :: inlats + real(kind=kindOfDouble), dimension(:), intent(in) :: inlons + real(kind=kindOfDouble), dimension(:), intent(out) :: outlats + real(kind=kindOfDouble), dimension(:), intent(out) :: outlons + real(kind=kindOfDouble), dimension(:), intent(out) :: distances + real(kind=kindOfDouble), dimension(:), intent(out) :: values + integer(kind=kindOfInt), dimension(:), intent(out) :: indexes + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_find_nearest_multiple(gribid,is_lsm, & - inlats,inlons,outlats,outlons, & - values,distances, indexes,status) -end subroutine codes_grib_find_nearest_multiple + call grib_find_nearest_multiple(gribid, is_lsm, & + inlats, inlons, outlats, outlons, & + values, distances, indexes, status) + end subroutine codes_grib_find_nearest_multiple !> Find the nearest point of a given latitude/longitude point. !> @@ -2586,25 +2569,24 @@ end subroutine codes_grib_find_nearest_multiple !> @param kindex zero based index !> @param value value of the field in the nearest point !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_grib_find_nearest_single(gribid,is_lsm, & - inlat,inlon,outlat,outlon, & - value,distance, kindex,status) - integer(kind=kindOfInt), intent(in) :: gribid - logical, intent(in) :: is_lsm - real(kind = kindOfDouble), intent(in) :: inlat - real(kind = kindOfDouble), intent(in) :: inlon - real(kind = kindOfDouble), intent(out) :: outlat - real(kind = kindOfDouble), intent(out) :: outlon - real(kind = kindOfDouble), intent(out) :: distance - real(kind = kindOfDouble), intent(out) :: value - integer(kind = kindOfInt), intent(out) :: kindex - integer(kind=kindOfInt),optional, intent(out) :: status - - call grib_find_nearest_single(gribid,is_lsm, & - inlat,inlon,outlat,outlon, & - value,distance, kindex,status) -end subroutine codes_grib_find_nearest_single + subroutine codes_grib_find_nearest_single(gribid, is_lsm, & + inlat, inlon, outlat, outlon, & + value, distance, kindex, status) + integer(kind=kindOfInt), intent(in) :: gribid + logical, intent(in) :: is_lsm + real(kind=kindOfDouble), intent(in) :: inlat + real(kind=kindOfDouble), intent(in) :: inlon + real(kind=kindOfDouble), intent(out) :: outlat + real(kind=kindOfDouble), intent(out) :: outlon + real(kind=kindOfDouble), intent(out) :: distance + real(kind=kindOfDouble), intent(out) :: value + integer(kind=kindOfInt), intent(out) :: kindex + integer(kind=kindOfInt), optional, intent(out) :: status + call grib_find_nearest_single(gribid, is_lsm, & + inlat, inlon, outlat, outlon, & + value, distance, kindex, status) + end subroutine codes_grib_find_nearest_single !> Find the 4 nearest points of a latitude longitude point. !> @@ -2622,26 +2604,25 @@ end subroutine codes_grib_find_nearest_single !> @param kindex zero based index !> @param value value of the field in the nearest point !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_grib_find_nearest_four_single(gribid,is_lsm, & - inlat,inlon,outlat,outlon, & - value,distance, kindex,status) - integer(kind=kindOfInt), intent(in) :: gribid - logical, intent(in) :: is_lsm - real(kind = kindOfDouble), intent(in) :: inlat - real(kind = kindOfDouble), intent(in) :: inlon - real(kind = kindOfDouble), dimension(4), intent(out) :: outlat - real(kind = kindOfDouble), dimension(4), intent(out) :: outlon - real(kind = kindOfDouble), dimension(4), intent(out) :: distance - real(kind = kindOfDouble), dimension(4), intent(out) :: value - integer(kind = kindOfInt), dimension(4), intent(out) :: kindex - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_grib_find_nearest_four_single(gribid, is_lsm, & + inlat, inlon, outlat, outlon, & + value, distance, kindex, status) + integer(kind=kindOfInt), intent(in) :: gribid + logical, intent(in) :: is_lsm + real(kind=kindOfDouble), intent(in) :: inlat + real(kind=kindOfDouble), intent(in) :: inlon + real(kind=kindOfDouble), dimension(4), intent(out) :: outlat + real(kind=kindOfDouble), dimension(4), intent(out) :: outlon + real(kind=kindOfDouble), dimension(4), intent(out) :: distance + real(kind=kindOfDouble), dimension(4), intent(out) :: value + integer(kind=kindOfInt), dimension(4), intent(out) :: kindex + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_find_nearest_four_single(gribid,is_lsm, & - inlat,inlon,outlat,outlon, & - value,distance, kindex,status) + call grib_find_nearest_four_single(gribid, is_lsm, & + inlat, inlon, outlat, outlon, & + value, distance, kindex, status) end subroutine codes_grib_find_nearest_four_single - !> Turn on the support for multiple fields in a single message. !> !> In case of error, if the status parameter (optional) is not given, the program will @@ -2649,11 +2630,11 @@ subroutine codes_grib_find_nearest_four_single(gribid,is_lsm, & !> gathered with @ref codes_get_error_string. !> !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_grib_multi_support_on (status ) - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_grib_multi_support_on(status) + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_multi_support_on (status ) -end subroutine codes_grib_multi_support_on + call grib_multi_support_on(status) + end subroutine codes_grib_multi_support_on !> Turn off the support for multiple fields in a single message. !> @@ -2662,11 +2643,11 @@ end subroutine codes_grib_multi_support_on !> gathered with @ref codes_get_error_string. !> !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_grib_multi_support_off ( status ) - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_grib_multi_support_off(status) + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_multi_support_off ( status ) -end subroutine codes_grib_multi_support_off + call grib_multi_support_off(status) + end subroutine codes_grib_multi_support_off !> Turn on the compatibility mode with gribex. !> @@ -2675,11 +2656,11 @@ end subroutine codes_grib_multi_support_off !> gathered with @ref codes_get_error_string. !> !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_gribex_mode_on (status ) - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_gribex_mode_on(status) + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_gribex_mode_on (status ) -end subroutine codes_gribex_mode_on + call grib_gribex_mode_on(status) + end subroutine codes_gribex_mode_on !> Turn off the compatibility mode with GRIBEX. !> @@ -2688,11 +2669,11 @@ end subroutine codes_gribex_mode_on !> gathered with @ref codes_get_error_string. !> !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_gribex_mode_off (status ) - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_gribex_mode_off(status) + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_gribex_mode_off (status ) -end subroutine codes_gribex_mode_off + call grib_gribex_mode_off(status) + end subroutine codes_gribex_mode_off !> Skip the computed keys in a keys iterator. !> @@ -2707,12 +2688,12 @@ end subroutine codes_gribex_mode_off !> !> @param iterid keys iterator id !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_skip_computed ( iterid , status) - integer(kind=kindOfInt), intent(in) :: iterid - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_skip_computed(iterid, status) + integer(kind=kindOfInt), intent(in) :: iterid + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_skip_computed ( iterid , status) -end subroutine codes_skip_computed + call grib_skip_computed(iterid, status) + end subroutine codes_skip_computed !> Skip the coded keys in a keys iterator. !> @@ -2726,12 +2707,12 @@ end subroutine codes_skip_computed !> !> @param iterid keys iterator id !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_skip_coded ( iterid, status ) - integer(kind=kindOfInt), intent(in) :: iterid - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_skip_coded(iterid, status) + integer(kind=kindOfInt), intent(in) :: iterid + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_skip_coded ( iterid, status ) -end subroutine codes_skip_coded + call grib_skip_coded(iterid, status) + end subroutine codes_skip_coded !> Skip the duplicated keys in a keys iterator. !> @@ -2743,12 +2724,12 @@ end subroutine codes_skip_coded !> !> @param iterid keys iterator id !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_skip_duplicates ( iterid, status ) - integer(kind=kindOfInt), intent(in) :: iterid - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_skip_duplicates(iterid, status) + integer(kind=kindOfInt), intent(in) :: iterid + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_skip_duplicates ( iterid, status ) -end subroutine codes_skip_duplicates + call grib_skip_duplicates(iterid, status) + end subroutine codes_skip_duplicates !> Skip the read_only keys in a keys iterator. !> @@ -2758,13 +2739,12 @@ end subroutine codes_skip_duplicates !> !> @param iterid keys iterator id !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_skip_read_only ( iterid, status ) - integer(kind=kindOfInt), intent(in) :: iterid - integer(kind=kindOfInt),optional, intent(out) :: status - - call grib_skip_read_only ( iterid, status ) -end subroutine codes_skip_read_only + subroutine codes_skip_read_only(iterid, status) + integer(kind=kindOfInt), intent(in) :: iterid + integer(kind=kindOfInt), optional, intent(out) :: status + call grib_skip_read_only(iterid, status) + end subroutine codes_skip_read_only !> Set the definition path !> @@ -2774,12 +2754,12 @@ end subroutine codes_skip_read_only !> !> @param path definitions path !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_set_definitions_path ( path, status ) - character(len=*), intent(in) :: path - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_set_definitions_path(path, status) + character(len=*), intent(in) :: path + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_set_definitions_path ( path, status ) -end subroutine codes_set_definitions_path + call grib_set_definitions_path(path, status) + end subroutine codes_set_definitions_path !> Set the samples path !> @@ -2789,47 +2769,46 @@ end subroutine codes_set_definitions_path !> !> @param path samples path !> @param status CODES_SUCCESS if OK, integer value on error -subroutine codes_set_samples_path ( path, status ) - character(len=*), intent(in) :: path - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_set_samples_path(path, status) + character(len=*), intent(in) :: path + integer(kind=kindOfInt), optional, intent(out) :: status - call grib_set_samples_path ( path, status ) -end subroutine codes_set_samples_path + call grib_set_samples_path(path, status) + end subroutine codes_set_samples_path - -subroutine codes_julian_to_datetime ( jd,year,month,day,hour,minute,second, status ) - real(kind=kindOfDouble) , intent(in) :: jd - integer(kind=kindOfLong) , intent(out) :: year,month,day,hour,minute,second - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_julian_to_datetime(jd, year, month, day, hour, minute, second, status) + real(kind=kindOfDouble), intent(in) :: jd + integer(kind=kindOfLong), intent(out) :: year, month, day, hour, minute, second + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret - iret=grib_f_julian_to_datetime(jd,year,month,day,hour,minute,second) + iret = grib_f_julian_to_datetime(jd, year, month, day, hour, minute, second) if (iret /= 0) then if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'codes_julian_to_datetime',' ') - endif + call grib_check(iret, 'codes_julian_to_datetime', ' ') + end if return - endif -end subroutine codes_julian_to_datetime + end if + end subroutine codes_julian_to_datetime -subroutine codes_datetime_to_julian ( year,month,day,hour,minute,second,jd, status ) - integer(kind=kindOfLong) , intent(in) :: year,month,day,hour,minute,second - real (kind=kindOfDouble) , intent(out) :: jd - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_datetime_to_julian(year, month, day, hour, minute, second, jd, status) + integer(kind=kindOfLong), intent(in) :: year, month, day, hour, minute, second + real(kind=kindOfDouble), intent(out) :: jd + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret - iret=grib_f_datetime_to_julian(year,month,day,hour,minute,second,jd) + iret = grib_f_datetime_to_julian(year, month, day, hour, minute, second, jd) if (iret /= 0) then if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'codes_datetime_to_julian',' ') - endif + call grib_check(iret, 'codes_datetime_to_julian', ' ') + end if return - endif -end subroutine codes_datetime_to_julian + end if + end subroutine codes_datetime_to_julian !> Copy the value of a key from the source message to the destination message !> @@ -2841,45 +2820,44 @@ end subroutine codes_datetime_to_julian !> @param msgid_dest destination message !> @param key key whose value is to be copied !> @param status GRIB_SUCCESS if OK, integer value on error -subroutine codes_copy_key( msgid_src, key, msgid_dest, status ) - integer(kind=kindOfInt), intent(in) :: msgid_src - integer(kind=kindOfInt), intent(in) :: msgid_dest - character(LEN=*), intent(in) :: key - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_copy_key(msgid_src, key, msgid_dest, status) + integer(kind=kindOfInt), intent(in) :: msgid_src + integer(kind=kindOfInt), intent(in) :: msgid_dest + character(LEN=*), intent(in) :: key + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret - iret=grib_f_copy_key(msgid_src, key, msgid_dest) + iret = grib_f_copy_key(msgid_src, key, msgid_dest) if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'codes_copy_key','('//key//')') - endif -end subroutine codes_copy_key + call grib_check(iret, 'codes_copy_key', '('//key//')') + end if + end subroutine codes_copy_key -subroutine codes_bufr_multi_element_constant_arrays_on (status ) - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_bufr_multi_element_constant_arrays_on(status) + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret - iret=codes_f_bufr_multi_element_constant_arrays_on() + iret = codes_f_bufr_multi_element_constant_arrays_on() if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'codes_bufr_multi_element_constant_arrays_on','') - endif -end subroutine codes_bufr_multi_element_constant_arrays_on + call grib_check(iret, 'codes_bufr_multi_element_constant_arrays_on', '') + end if + end subroutine codes_bufr_multi_element_constant_arrays_on -subroutine codes_bufr_multi_element_constant_arrays_off (status ) - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine codes_bufr_multi_element_constant_arrays_off(status) + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret - iret=codes_f_bufr_multi_element_constant_arrays_off() + iret = codes_f_bufr_multi_element_constant_arrays_off() if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'codes_bufr_multi_element_constant_arrays_off','') - endif - -end subroutine codes_bufr_multi_element_constant_arrays_off + call grib_check(iret, 'codes_bufr_multi_element_constant_arrays_off', '') + end if + end subroutine codes_bufr_multi_element_constant_arrays_off end module eccodes diff --git a/fortran/fortranCtypes/test.f90 b/fortran/fortranCtypes/test.f90 index 2a059fab0..3461b448c 100644 --- a/fortran/fortranCtypes/test.f90 +++ b/fortran/fortranCtypes/test.f90 @@ -4,25 +4,25 @@ integer function kind_of_long_long integer(8), dimension(2) :: x8 = (/1, 2/) character(len=1) :: ret - kind_of_long_long=-1 + kind_of_long_long = -1 - call check_long_long(x2(0),x2(1),ret) + call check_long_long(x2(0), x2(1), ret) if (ret == 't') then - kind_of_long_long=2 - return - endif + kind_of_long_long = 2 + return + end if - call check_long_long(x4(0),x4(1),ret) + call check_long_long(x4(0), x4(1), ret) if (ret == 't') then - kind_of_long_long=4 - return - endif + kind_of_long_long = 4 + return + end if - call check_long_long(x8(0),x8(1),ret) + call check_long_long(x8(0), x8(1), ret) if (ret == 't') then - kind_of_long_long=8 - return - endif + kind_of_long_long = 8 + return + end if end function kind_of_long_long @@ -32,25 +32,25 @@ integer function kind_of_size_t integer(8), dimension(2) :: x8 = (/1, 2/) character(len=1) :: ret - kind_of_size_t=-1 + kind_of_size_t = -1 - call check_size_t(x2(0),x2(1),ret) + call check_size_t(x2(0), x2(1), ret) if (ret == 't') then - kind_of_size_t=2 - return - endif + kind_of_size_t = 2 + return + end if - call check_size_t(x4(0),x4(1),ret) + call check_size_t(x4(0), x4(1), ret) if (ret == 't') then - kind_of_size_t=4 - return - endif + kind_of_size_t = 4 + return + end if - call check_size_t(x8(0),x8(1),ret) + call check_size_t(x8(0), x8(1), ret) if (ret == 't') then - kind_of_size_t=8 - return - endif + kind_of_size_t = 8 + return + end if end function kind_of_size_t @@ -60,25 +60,25 @@ integer function kind_of_long integer(8), dimension(2) :: x8 = (/1, 2/) character(len=1) :: ret - kind_of_long=-1 + kind_of_long = -1 - call check_long(x2(0),x2(1),ret) + call check_long(x2(0), x2(1), ret) if (ret == 't') then - kind_of_long=2 - return - endif + kind_of_long = 2 + return + end if - call check_long(x4(0),x4(1),ret) + call check_long(x4(0), x4(1), ret) if (ret == 't') then - kind_of_long=4 - return - endif + kind_of_long = 4 + return + end if - call check_long(x8(0),x8(1),ret) + call check_long(x8(0), x8(1), ret) if (ret == 't') then - kind_of_long=8 - return - endif + kind_of_long = 8 + return + end if end function kind_of_long @@ -88,25 +88,25 @@ integer function kind_of_int integer(8), dimension(2) :: x8 = (/1, 2/) character(len=1) :: ret - kind_of_int=-1 + kind_of_int = -1 - call check_int(x2(0),x2(1),ret) + call check_int(x2(0), x2(1), ret) if (ret == 't') then - kind_of_int=2 - return - endif + kind_of_int = 2 + return + end if - call check_int(x4(0),x4(1),ret) + call check_int(x4(0), x4(1), ret) if (ret == 't') then - kind_of_int=4 - return - endif + kind_of_int = 4 + return + end if - call check_int(x8(0),x8(1),ret) + call check_int(x8(0), x8(1), ret) if (ret == 't') then - kind_of_int=8 - return - endif + kind_of_int = 8 + return + end if end function kind_of_int @@ -115,19 +115,19 @@ integer function kind_of_float real(8), dimension(2) :: x8 = (/1., 2./) character(len=1) :: ret - kind_of_float=-1 + kind_of_float = -1 - call check_float(x4(0),x4(1),ret) + call check_float(x4(0), x4(1), ret) if (ret == 't') then - kind_of_float=4 - return - endif + kind_of_float = 4 + return + end if - call check_float(x8(0),x8(1),ret) + call check_float(x8(0), x8(1), ret) if (ret == 't') then - kind_of_float=8 - return - endif + kind_of_float = 8 + return + end if end function kind_of_float @@ -136,30 +136,30 @@ integer function kind_of_double real(8), dimension(2) :: real8 = (/1., 2./) character(len=1) :: ret - kind_of_double=-1 + kind_of_double = -1 - call check_double(real4(0),real4(1),ret) + call check_double(real4(0), real4(1), ret) if (ret == 't') then - kind_of_double=4 - return - endif + kind_of_double = 4 + return + end if - call check_double(real8(0),real8(1),ret) + call check_double(real8(0), real8(1), ret) if (ret == 't') then - kind_of_double=8 - return - endif + kind_of_double = 8 + return + end if end function kind_of_double program test - print *,'kind_of_double=',kind_of_double() - print *,'kind_of_float=',kind_of_float() - print *,'kind_of_int=',kind_of_int() - print *,'kind_of_long=',kind_of_long() - print *,'kind_of_size_t=',kind_of_size_t() - print *,'kind_of_long_long=',kind_of_long_long() + print *, 'kind_of_double=', kind_of_double() + print *, 'kind_of_float=', kind_of_float() + print *, 'kind_of_int=', kind_of_int() + print *, 'kind_of_long=', kind_of_long() + print *, 'kind_of_size_t=', kind_of_size_t() + print *, 'kind_of_long_long=', kind_of_long_long() end program test diff --git a/fortran/grib_f90_head.f90 b/fortran/grib_f90_head.f90 index 987203b2d..ee3eebdab 100644 --- a/fortran/grib_f90_head.f90 +++ b/fortran/grib_f90_head.f90 @@ -18,9 +18,8 @@ module grib_api include "grib_api_externals.h" include "grib_api_visibility.h" - real(8), parameter,public :: GRIB_MISSING_DOUBLE = -1.D+100 - integer(4), parameter,public :: GRIB_MISSING_LONG = 2147483647 - + real(8), parameter, public :: GRIB_MISSING_DOUBLE = -1.D+100 + integer(4), parameter, public :: GRIB_MISSING_LONG = 2147483647 !> Create a new message in memory from an integer or character array containting the coded message. !> @@ -39,8 +38,8 @@ module grib_api !> @param message array containing the coded message !> @param status GRIB_SUCCESS if OK, integer value on error interface grib_new_from_message - module procedure grib_new_from_message_int4 - module procedure grib_new_from_message_char + module procedure grib_new_from_message_int4 + module procedure grib_new_from_message_char end interface grib_new_from_message !> Get a value of specified index from an array key. @@ -67,9 +66,9 @@ module grib_api !> @param[out] status GRIB_SUCCESS if OK, integer value on error interface grib_get_element module procedure grib_get_real4_element, & - grib_get_real8_element, & - grib_get_real4_elements, & - grib_get_real8_elements + grib_get_real8_element, & + grib_get_real4_elements, & + grib_get_real8_elements end interface grib_get_element !> Find the nearest point/points of a given latitude/longitude point. @@ -110,8 +109,8 @@ module grib_api !> @param[out] status GRIB_SUCCESS if OK, integer value on error interface grib_find_nearest module procedure grib_find_nearest_single, & - grib_find_nearest_four_single, & - grib_find_nearest_multiple + grib_find_nearest_four_single, & + grib_find_nearest_multiple end interface grib_find_nearest !> Get latitude/longitude and data values. @@ -134,6 +133,6 @@ module grib_api !> @param[out] status GRIB_SUCCESS if OK, integer value on error interface grib_get_data module procedure grib_get_data_real4, & - grib_get_data_real8 + grib_get_data_real8 end interface grib_get_data diff --git a/fortran/grib_f90_int.f90 b/fortran/grib_f90_int.f90 index ec4307d40..d474cfa8e 100644 --- a/fortran/grib_f90_int.f90 +++ b/fortran/grib_f90_int.f90 @@ -2,11 +2,10 @@ ! ! This software is licensed under the terms of the Apache Licence Version 2.0 ! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -! +! ! In applying this licence, ECMWF does not waive the privileges and immunities granted to it by ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. - !> Get the distinct values of the key in argument contained in the index. The key must belong to the index. !> !> @@ -22,8 +21,8 @@ !> @param status GRIB_SUCCESS if OK, integer value on error interface grib_index_get module procedure grib_index_get_int, & - grib_index_get_string, & - grib_index_get_real8 + grib_index_get_string, & + grib_index_get_real8 end interface grib_index_get !> Get the number of distinct values of the key in argument contained in the index. The key must belong to the index. @@ -40,10 +39,10 @@ !> @param size number of distinct values of the key in the index !> @param status GRIB_SUCCESS if OK, integer value on error interface grib_index_get_size - module procedure grib_index_get_size_int + module procedure grib_index_get_size_int end interface grib_index_get_size - - !> Select the message subset with key==value. + + !> Select the message subset with key==value. !> !> !> In case of error, if the status parameter (optional) is not given, the program will @@ -58,8 +57,8 @@ !> @param status GRIB_SUCCESS if OK, integer value on error interface grib_index_select module procedure grib_index_select_int, & - grib_index_select_string, & - grib_index_select_real8 + grib_index_select_string, & + grib_index_select_real8 end interface grib_index_select !> Get the value for a key from a message. @@ -94,16 +93,15 @@ !> @param[out] status GRIB_SUCCESS if OK, integer value on error interface grib_get module procedure grib_get_int, & - grib_get_real4, & - grib_get_real8, & - grib_get_string, & - grib_get_int_array, & - grib_get_byte_array, & - grib_get_real4_array, & - grib_get_real8_array + grib_get_real4, & + grib_get_real8, & + grib_get_string, & + grib_get_int_array, & + grib_get_byte_array, & + grib_get_real4_array, & + grib_get_real8_array end interface grib_get - !> Get the size of an array key. !> !> To get the size of a key representing an array. @@ -117,7 +115,7 @@ !> @param size size of the array key !> @param status GRIB_SUCCESS if OK, integer value on error interface grib_get_size - module procedure grib_get_size_int + module procedure grib_get_size_int end interface grib_get_size !> Set the value for a key in a message. @@ -145,16 +143,16 @@ !> @param[out] status GRIB_SUCCESS if OK, integer value on error interface grib_set module procedure grib_set_int, & - grib_set_real4, & - grib_set_real8, & - grib_set_string, & - grib_set_int_array, & - grib_set_byte_array, & - grib_set_real4_array, & - grib_set_real8_array + grib_set_real4, & + grib_set_real8, & + grib_set_string, & + grib_set_int_array, & + grib_set_byte_array, & + grib_set_real4_array, & + grib_set_real8_array end interface grib_set interface grib_set_force module procedure grib_set_force_real4_array, & - grib_set_force_real8_array + grib_set_force_real8_array end interface grib_set_force diff --git a/fortran/grib_f90_int_size_t.f90 b/fortran/grib_f90_int_size_t.f90 index bd6cf83de..5468b6f45 100644 --- a/fortran/grib_f90_int_size_t.f90 +++ b/fortran/grib_f90_int_size_t.f90 @@ -18,8 +18,8 @@ !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error interface grib_read_from_file - module procedure grib_read_from_file_int4 - module procedure grib_read_from_file_char + module procedure grib_read_from_file_int4 + module procedure grib_read_from_file_char end interface grib_read_from_file !> Reads nbytes bytes into the buffer from a file opened with grib_open_file. @@ -34,10 +34,10 @@ !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error interface grib_read_bytes - module procedure grib_read_bytes_int4 - module procedure grib_read_bytes_char - module procedure grib_read_bytes_real8 - module procedure grib_read_bytes_real4 + module procedure grib_read_bytes_int4 + module procedure grib_read_bytes_char + module procedure grib_read_bytes_real8 + module procedure grib_read_bytes_real4 end interface grib_read_bytes !> Write nbytes bytes from the buffer in a file opened with grib_open_file. @@ -52,10 +52,10 @@ !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error interface grib_write_bytes - module procedure grib_write_bytes_int4 - module procedure grib_write_bytes_char - module procedure grib_write_bytes_real8 - module procedure grib_write_bytes_real4 + module procedure grib_write_bytes_int4 + module procedure grib_write_bytes_char + module procedure grib_write_bytes_real8 + module procedure grib_write_bytes_real4 end interface grib_write_bytes !> Get the size of a coded message. diff --git a/fortran/grib_f90_long_int.f90 b/fortran/grib_f90_long_int.f90 index 53a4e2829..9cd98a352 100644 --- a/fortran/grib_f90_long_int.f90 +++ b/fortran/grib_f90_long_int.f90 @@ -2,11 +2,10 @@ ! ! This software is licensed under the terms of the Apache Licence Version 2.0 ! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -! +! ! In applying this licence, ECMWF does not waive the privileges and immunities granted to it by ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. - !> Get the distinct values of the key in argument contained in the index. The key must belong to the index. !> !> @@ -22,9 +21,9 @@ !> @param status GRIB_SUCCESS if OK, integer value on error interface grib_index_get module procedure grib_index_get_int, & - grib_index_get_long, & - grib_index_get_string, & - grib_index_get_real8 + grib_index_get_long, & + grib_index_get_string, & + grib_index_get_real8 end interface grib_index_get !> Get the number of distinct values of the key in argument contained in the index. The key must belong to the index. @@ -42,10 +41,10 @@ !> @param status GRIB_SUCCESS if OK, integer value on error interface grib_index_get_size module procedure grib_index_get_size_int, & - grib_index_get_size_long + grib_index_get_size_long end interface grib_index_get_size - - !> Select the message subset with key==value. + + !> Select the message subset with key==value. !> !> !> In case of error, if the status parameter (optional) is not given, the program will @@ -60,11 +59,11 @@ !> @param status GRIB_SUCCESS if OK, integer value on error interface grib_index_select module procedure grib_index_select_int, & - grib_index_select_long, & - grib_index_select_string, & - grib_index_select_real8 + grib_index_select_long, & + grib_index_select_string, & + grib_index_select_real8 end interface grib_index_select - + !> Get the value for a key from a message. !> !> Given a \em msgid and \em key as input a \em value for the \em key is returned. @@ -97,14 +96,14 @@ !> @param[out] status GRIB_SUCCESS if OK, integer value on error interface grib_get module procedure grib_get_int, & - grib_get_long, & - grib_get_real4, & - grib_get_real8, & - grib_get_string, & - grib_get_int_array, & - grib_get_byte_array, & - grib_get_real4_array, & - grib_get_real8_array + grib_get_long, & + grib_get_real4, & + grib_get_real8, & + grib_get_string, & + grib_get_int_array, & + grib_get_byte_array, & + grib_get_real4_array, & + grib_get_real8_array end interface grib_get !> Get the size of an array key. @@ -120,8 +119,8 @@ !> @param size size of the array key !> @param status GRIB_SUCCESS if OK, integer value on error interface grib_get_size - module procedure grib_get_size_int, & - grib_get_size_long + module procedure grib_get_size_int, & + grib_get_size_long end interface grib_get_size !> Set the value for a key in a message. @@ -149,18 +148,18 @@ !> @param[out] status GRIB_SUCCESS if OK, integer value on error interface grib_set module procedure grib_set_int, & - grib_set_long, & - grib_set_real4, & - grib_set_real8, & - grib_set_string, & - grib_set_int_array, & - grib_set_long_array, & - grib_set_byte_array, & - grib_set_real4_array, & - grib_set_real8_array + grib_set_long, & + grib_set_real4, & + grib_set_real8, & + grib_set_string, & + grib_set_int_array, & + grib_set_long_array, & + grib_set_byte_array, & + grib_set_real4_array, & + grib_set_real8_array end interface grib_set interface grib_set_force module procedure grib_set_force_real4_array, & - grib_set_force_real8_array + grib_set_force_real8_array end interface grib_set_force diff --git a/fortran/grib_f90_long_size_t.f90 b/fortran/grib_f90_long_size_t.f90 index 74ad5b0ce..7aabcfae7 100644 --- a/fortran/grib_f90_long_size_t.f90 +++ b/fortran/grib_f90_long_size_t.f90 @@ -18,10 +18,10 @@ !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error interface grib_read_from_file - module procedure grib_read_from_file_int4 - module procedure grib_read_from_file_int4_size_t - module procedure grib_read_from_file_char - module procedure grib_read_from_file_char_size_t + module procedure grib_read_from_file_int4 + module procedure grib_read_from_file_int4_size_t + module procedure grib_read_from_file_char + module procedure grib_read_from_file_char_size_t end interface grib_read_from_file !> Reads nbytes bytes into the buffer from a file opened with grib_open_file. @@ -36,14 +36,14 @@ !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error interface grib_read_bytes - module procedure grib_read_bytes_int4 - module procedure grib_read_bytes_int4_size_t - module procedure grib_read_bytes_char - module procedure grib_read_bytes_char_size_t - module procedure grib_read_bytes_real8 - module procedure grib_read_bytes_real8_size_t - module procedure grib_read_bytes_real4 - module procedure grib_read_bytes_real4_size_t + module procedure grib_read_bytes_int4 + module procedure grib_read_bytes_int4_size_t + module procedure grib_read_bytes_char + module procedure grib_read_bytes_char_size_t + module procedure grib_read_bytes_real8 + module procedure grib_read_bytes_real8_size_t + module procedure grib_read_bytes_real4 + module procedure grib_read_bytes_real4_size_t end interface grib_read_bytes !> Write nbytes bytes from the buffer in a file opened with grib_open_file. @@ -58,14 +58,14 @@ !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error interface grib_write_bytes - module procedure grib_write_bytes_int4 - module procedure grib_write_bytes_int4_size_t - module procedure grib_write_bytes_char - module procedure grib_write_bytes_char_size_t - module procedure grib_write_bytes_real8 - module procedure grib_write_bytes_real8_size_t - module procedure grib_write_bytes_real4 - module procedure grib_write_bytes_real4_size_t + module procedure grib_write_bytes_int4 + module procedure grib_write_bytes_int4_size_t + module procedure grib_write_bytes_char + module procedure grib_write_bytes_char_size_t + module procedure grib_write_bytes_real8 + module procedure grib_write_bytes_real8_size_t + module procedure grib_write_bytes_real4 + module procedure grib_write_bytes_real4_size_t end interface grib_write_bytes !> Get the size of a coded message. diff --git a/fortran/grib_f90_tail.f90 b/fortran/grib_f90_tail.f90 index 6e73253e1..e58f9debe 100644 --- a/fortran/grib_f90_tail.f90 +++ b/fortran/grib_f90_tail.f90 @@ -15,21 +15,21 @@ !> @param gribid id of the grib loaded in memory !> @param key key name !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_set_missing ( gribid, key, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_set_missing(gribid, key, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_set_missing ( gribid, key ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'set_missing','('//key//')') - endif + iret = grib_f_set_missing(gribid, key) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'set_missing', '('//key//')') + end if end subroutine grib_set_missing !> Create a new index form a file. The file is indexed with the keys in argument. @@ -45,19 +45,19 @@ !> @param filename name of the file of messages to be indexed !> @param keys : comma separated list of keys for the index. The type of the key can be explicitly declared appending :l for long, :d for double, :s for string to the key name. If the type is not declared explicitly, the native type is assumed. !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_index_create ( indexid, filename, keys, status ) - integer(kind=kindOfInt), intent(inout) :: indexid - character(len=*), intent(in) :: filename - character(len=*), intent(in) :: keys - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_index_create(indexid, filename, keys, status) + integer(kind=kindOfInt), intent(inout) :: indexid + character(len=*), intent(in) :: filename + character(len=*), intent(in) :: keys + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_index_new_from_file(filename,keys,indexid) - if (present(status)) then - status = iret - else - call grib_check(iret,'index_create','('//filename//')') - endif + iret = grib_f_index_new_from_file(filename, keys, indexid) + if (present(status)) then + status = iret + else + call grib_check(iret, 'index_create', '('//filename//')') + end if end subroutine grib_index_create !> Add a file to an index. @@ -72,18 +72,18 @@ !> @param indexid id of the index I want to add a file to !> @param filename name of the file I want to add to the index !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_index_add_file ( indexid, filename, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: filename - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_index_add_file(indexid, filename, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: filename + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_index_add_file(indexid,filename) - if (present(status)) then - status = iret - else - call grib_check(iret,'index_add_file','('//filename//')') - endif + iret = grib_f_index_add_file(indexid, filename) + if (present(status)) then + status = iret + else + call grib_check(iret, 'index_add_file', '('//filename//')') + end if end subroutine grib_index_add_file !> Get the number of distinct values of the key in argument contained in the index. The key must belong to the index. @@ -99,19 +99,19 @@ !> @param key key for which the number of values is computed !> @param size number of distinct values of the key in the index !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_index_get_size_long( indexid, key, size, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key - integer(kind=kindOfLong), intent(out) :: size - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_index_get_size_long(indexid, key, size, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key + integer(kind=kindOfLong), intent(out) :: size + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_index_get_size_long(indexid,key,size) - if (present(status)) then - status = iret - else - call grib_check(iret,'index_get_size','('//key//')') - endif + iret = grib_f_index_get_size_long(indexid, key, size) + if (present(status)) then + status = iret + else + call grib_check(iret, 'index_get_size', '('//key//')') + end if end subroutine grib_index_get_size_long !> Get the number of distinct values of the key in argument contained in the index. The key must belong to the index. @@ -127,19 +127,19 @@ !> @param key key for which the number of values is computed !> @param size number of distinct values of the key in the index !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_index_get_size_int( indexid, key, size, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key - integer(kind=kindOfInt), intent(out) :: size - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_index_get_size_int(indexid, key, size, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), intent(out) :: size + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_index_get_size_int(indexid,key,size) - if (present(status)) then - status = iret - else - call grib_check(iret,'index_get_size','('//key//')') - endif + iret = grib_f_index_get_size_int(indexid, key, size) + if (present(status)) then + status = iret + else + call grib_check(iret, 'index_get_size', '('//key//')') + end if end subroutine grib_index_get_size_int !> Get the distinct values of the key in argument contained in the index. The key must belong to the index. This function is used when the type of the key was explicitly defined as long or when the native type of the key is long. @@ -155,21 +155,21 @@ !> @param key key for wich the values are returned !> @param values array of values. The array must be allocated before entering this function and its size must be enough to contain all the values. !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_index_get_int( indexid, key, values, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key - integer(kind=kindOfInt), dimension(:), intent(out) :: values - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt) :: nb_values + subroutine grib_index_get_int(indexid, key, values, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), dimension(:), intent(out) :: values + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: nb_values - nb_values = size(values) - iret=grib_f_index_get_int ( indexid, key, values , nb_values ) - if (present(status)) then - status = iret - else - call grib_check(iret,'index_get','('//key//')') - endif + nb_values = size(values) + iret = grib_f_index_get_int(indexid, key, values, nb_values) + if (present(status)) then + status = iret + else + call grib_check(iret, 'index_get', '('//key//')') + end if end subroutine grib_index_get_int !> Get the distinct values of the key in argument contained in the index. The key must belong to the index. This function is used when the type of the key was explicitly defined as long or when the native type of the key is long. @@ -185,21 +185,21 @@ !> @param key key for wich the values are returned !> @param values array of values. The array must be allocated before entering this function and its size must be enough to contain all the values. !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_index_get_long( indexid, key, values, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key - integer(kind=kindOfLong), dimension(:), intent(out) :: values - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt) :: nb_values + subroutine grib_index_get_long(indexid, key, values, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key + integer(kind=kindOfLong), dimension(:), intent(out) :: values + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: nb_values - nb_values = size(values) - iret=grib_f_index_get_long ( indexid, key, values , nb_values ) - if (present(status)) then - status = iret - else - call grib_check(iret,'index_get','('//key//')') - endif + nb_values = size(values) + iret = grib_f_index_get_long(indexid, key, values, nb_values) + if (present(status)) then + status = iret + else + call grib_check(iret, 'index_get', '('//key//')') + end if end subroutine grib_index_get_long !> Get the distinct values of the key in argument contained in the index. The key must belong to the index. This function is used when the type of the key was explicitly defined as long or when the native type of the key is long. @@ -215,25 +215,25 @@ !> @param key key for wich the values are returned !> @param values array of values. The array must be allocated before entering this function and its size must be enough to contain all the values. !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_index_get_real8( indexid, key, values, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key - real(kind=kindOfDouble), dimension(:), intent(out) :: values - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt) :: nb_values + subroutine grib_index_get_real8(indexid, key, values, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key + real(kind=kindOfDouble), dimension(:), intent(out) :: values + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: nb_values - nb_values = size(values) - iret=grib_f_index_get_real8 ( indexid, key, values , nb_values ) - if (present(status)) then - status = iret - else - call grib_check(iret,'index_get','('//key//')') - endif + nb_values = size(values) + iret = grib_f_index_get_real8(indexid, key, values, nb_values) + if (present(status)) then + status = iret + else + call grib_check(iret, 'index_get', '('//key//')') + end if end subroutine grib_index_get_real8 - !> Get the distinct values of the key in argument contained in the index. - !> The key must belong to the index. + !> Get the distinct values of the key in argument contained in the index. + !> The key must belong to the index. !> This function is used when the type of the key was explicitly defined as string or when the native type of the key is string. !> !> @@ -247,25 +247,25 @@ !> @param key key for wich the values are returned !> @param values array of values. The array must be allocated before entering this function and its size must be enough to contain all the values. !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_index_get_string( indexid, key, values, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key - character(len=*), dimension(:), intent(out) :: values - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt) :: nb_values - integer(kind=kindOfInt) :: size_value + subroutine grib_index_get_string(indexid, key, values, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key + character(len=*), dimension(:), intent(out) :: values + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: nb_values + integer(kind=kindOfInt) :: size_value size_value = len(values(1)) nb_values = size(values) - iret=grib_f_index_get_string ( indexid, key, values , size_value,nb_values ) + iret = grib_f_index_get_string(indexid, key, values, size_value, nb_values) if (present(status)) then status = iret else - call grib_check(iret,'index_get','('//key//')') - endif + call grib_check(iret, 'index_get', '('//key//')') + end if end subroutine grib_index_get_string - !> Select the message subset with key==value. The value is a integer. + !> Select the message subset with key==value. The value is a integer. !> The key must have been created with string type or have string as native type if the type was not explicitly defined in the index creation. !> !> @@ -279,19 +279,19 @@ !> @param key key to be selected !> @param value value of the key to select !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_index_select_string( indexid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key - character(len=*), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_index_select_string(indexid, key, value, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key + character(len=*), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_index_select_string ( indexid, key, value ) + iret = grib_f_index_select_string(indexid, key, value) if (present(status)) then status = iret else - call grib_check(iret,'index_select','('//key//')') - endif + call grib_check(iret, 'index_select', '('//key//')') + end if end subroutine grib_index_select_string !> Select the message subset with key==value. The value is a integer. The key must have been created with integer type or have integer as native type if the type was not explicitly defined in the index creation. @@ -307,19 +307,19 @@ !> @param key key to be selected !> @param value value of the key to select !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_index_select_int( indexid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key + subroutine grib_index_select_int(indexid, key, value, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key integer(kind=kindOfInt), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret - iret=grib_f_index_select_int ( indexid, key, value ) + iret = grib_f_index_select_int(indexid, key, value) if (present(status)) then status = iret else - call grib_check(iret,'index_select','('//key//')') - endif + call grib_check(iret, 'index_select', '('//key//')') + end if end subroutine grib_index_select_int !> Select the message subset with key==value. The value is a integer. The key must have been created with integer type or have integer as native type if the type was not explicitly defined in the index creation. @@ -335,19 +335,19 @@ !> @param key key to be selected !> @param value value of the key to select !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_index_select_long( indexid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key + subroutine grib_index_select_long(indexid, key, value, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key integer(kind=kindOfLong), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret - iret=grib_f_index_select_long ( indexid, key, value ) - if (present(status)) then - status = iret - else - call grib_check(iret,'index_select','('//key//')') - endif + iret = grib_f_index_select_long(indexid, key, value) + if (present(status)) then + status = iret + else + call grib_check(iret, 'index_select', '('//key//')') + end if end subroutine grib_index_select_long !> Select the message subset with key==value. The value is a real. The key must have been created with real type or have real as native type if the type was not explicitly defined in the index creation. @@ -363,20 +363,20 @@ !> @param key key to be selected !> @param value value of the key to select !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_index_select_real8( indexid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: indexid - character(len=*), intent(in) :: key - real(kind=kindOfDouble), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_index_select_real8(indexid, key, value, status) + integer(kind=kindOfInt), intent(in) :: indexid + character(len=*), intent(in) :: key + real(kind=kindOfDouble), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_index_select_real8 ( indexid, key, value ) + iret = grib_f_index_select_real8(indexid, key, value) if (present(status)) then status = iret else - call grib_check(iret,'index_select','('//key//')') - endif - end subroutine grib_index_select_real8 + call grib_check(iret, 'index_select', '('//key//')') + end if + end subroutine grib_index_select_real8 !> Create a new handle from an index after having selected the key values. !> All the keys belonging to the index must be selected before calling this function. Successive calls to this function will return all the handles compatible with the constraints defined selecting the values of the index keys. @@ -390,18 +390,18 @@ !> @param indexid id of an index created from a file. !> @param gribid id of the grib loaded in memory !> @param status GRIB_SUCCESS if OK, GRIB_END_OF_FILE at the end of file, or error code - subroutine grib_new_from_index ( indexid, gribid , status) - integer(kind=kindOfInt),intent(in) :: indexid - integer(kind=kindOfInt),intent(out) :: gribid - integer(kind=kindOfInt),optional,intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_new_from_index(indexid, gribid, status) + integer(kind=kindOfInt), intent(in) :: indexid + integer(kind=kindOfInt), intent(out) :: gribid + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_new_from_index( indexid, gribid ) + iret = grib_f_new_from_index(indexid, gribid) if (present(status)) then status = iret else - call grib_check(iret,'new_from_index','') - endif + call grib_check(iret, 'new_from_index', '') + end if end subroutine grib_new_from_index !> Load an index file previously created with @ref grib_index_write. @@ -416,19 +416,19 @@ !> @param indexid id of loaded index !> @param filename name of the index file to load !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_index_read ( indexid, filename, status ) - integer(kind=kindOfInt), intent(inout) :: indexid - character(len=*), intent(in) :: filename - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_index_read(indexid, filename, status) + integer(kind=kindOfInt), intent(inout) :: indexid + character(len=*), intent(in) :: filename + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_index_read(filename,indexid) + iret = grib_f_index_read(filename, indexid) if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'index_read','('//filename//')') - endif - + call grib_check(iret, 'index_read', '('//filename//')') + end if + end subroutine grib_index_read !> Saves an index to a file for later reuse. Index files can be read with @@ -444,19 +444,19 @@ !> @param indexid id of the index to save to file !> @param filename name of file to save the index to !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_index_write ( indexid, filename, status ) - integer(kind=kindOfInt), intent(inout) :: indexid - character(len=*), intent(in) :: filename - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_index_write(indexid, filename, status) + integer(kind=kindOfInt), intent(inout) :: indexid + character(len=*), intent(in) :: filename + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_index_write(indexid,filename) + iret = grib_f_index_write(indexid, filename) if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'index_write','('//filename//')') - endif - + call grib_check(iret, 'index_write', '('//filename//')') + end if + end subroutine grib_index_write !> Delete the index. @@ -468,17 +468,17 @@ !> !> @param indexid id of an index created from a file. !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_index_release ( indexid, status ) - integer(kind=kindOfInt), intent(in) :: indexid - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_index_release(indexid, status) + integer(kind=kindOfInt), intent(in) :: indexid + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_index_release ( indexid ) - if (present(status)) then - status = iret - else - call grib_check(iret,'index_release','') - endif + iret = grib_f_index_release(indexid) + if (present(status)) then + status = iret + else + call grib_check(iret, 'index_release', '') + end if end subroutine grib_index_release !> Open a file according to a mode. @@ -494,19 +494,19 @@ !> @param filename name of the file to be open !> @param mode open mode can be 'r' (read only), 'w' (write only) or 'a' (append) !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_open_file ( ifile, filename, mode, status ) - integer(kind=kindOfInt),intent(out) :: ifile - character(len=*), intent(in) :: filename - character(LEN=*), intent(in) :: mode - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_open_file(ifile, filename, mode, status) + integer(kind=kindOfInt), intent(out) :: ifile + character(len=*), intent(in) :: filename + character(LEN=*), intent(in) :: mode + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_open_file(ifile, filename, mode ) - if (present(status)) then - status = iret - else - call grib_check(iret,'open_file','('//filename//')') - endif + iret = grib_f_open_file(ifile, filename, mode) + if (present(status)) then + status = iret + else + call grib_check(iret, 'open_file', '('//filename//')') + end if end subroutine grib_open_file !> Reads nbytes bytes into the buffer from a file opened with grib_open_file. @@ -521,21 +521,21 @@ !> @param buffer binary buffer to be read !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_read_bytes_char ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - character(len=1),dimension(:), intent(out) :: buffer - integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfSize_t) :: ibytes - integer(kind=kindOfInt) :: iret + subroutine grib_read_bytes_char(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + character(len=1), dimension(:), intent(out) :: buffer + integer(kind=kindOfInt), intent(in) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfSize_t) :: ibytes + integer(kind=kindOfInt) :: iret - ibytes=nbytes - iret=grib_f_read_file(ifile,buffer,ibytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'read_bytes','') - endif + ibytes = nbytes + iret = grib_f_read_file(ifile, buffer, ibytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'read_bytes', '') + end if end subroutine grib_read_bytes_char !> Reads nbytes bytes into the buffer from a file opened with grib_open_file. @@ -550,19 +550,19 @@ !> @param buffer binary buffer to be read !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_read_bytes_char_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - character(len=1),dimension(:), intent(out) :: buffer - integer(kind=kindOfSize_t), intent(in) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_read_bytes_char_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + character(len=1), dimension(:), intent(out) :: buffer + integer(kind=kindOfSize_t), intent(in) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_read_file(ifile,buffer,nbytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'read_bytes','') - endif + iret = grib_f_read_file(ifile, buffer, nbytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'read_bytes', '') + end if end subroutine grib_read_bytes_char_size_t !> Reads nbytes bytes into the buffer from a file opened with grib_open_file. @@ -577,21 +577,21 @@ !> @param buffer buffer to be read !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_read_bytes_int4 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=4),dimension(:), intent(out) :: buffer - integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfSize_t) :: ibytes - integer(kind=kindOfInt) :: iret + subroutine grib_read_bytes_int4(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=4), dimension(:), intent(out) :: buffer + integer(kind=kindOfInt), intent(in) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfSize_t) :: ibytes + integer(kind=kindOfInt) :: iret - ibytes=nbytes - iret=grib_f_read_file(ifile,buffer,ibytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'read_bytes','') - endif + ibytes = nbytes + iret = grib_f_read_file(ifile, buffer, ibytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'read_bytes', '') + end if end subroutine grib_read_bytes_int4 !> Reads nbytes bytes into the buffer from a file opened with grib_open_file. @@ -606,19 +606,19 @@ !> @param buffer buffer to be read !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_read_bytes_int4_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=4),dimension(:), intent(out) :: buffer - integer(kind=kindOfSize_t), intent(in) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_read_bytes_int4_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=4), dimension(:), intent(out) :: buffer + integer(kind=kindOfSize_t), intent(in) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_read_file(ifile,buffer,nbytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'read_bytes','') - endif + iret = grib_f_read_file(ifile, buffer, nbytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'read_bytes', '') + end if end subroutine grib_read_bytes_int4_size_t !> Reads nbytes bytes into the buffer from a file opened with grib_open_file. @@ -633,21 +633,21 @@ !> @param buffer buffer to be read !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_read_bytes_real4 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=4),dimension(:), intent(out) :: buffer - integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfSize_t) :: ibytes - integer(kind=kindOfInt) :: iret + subroutine grib_read_bytes_real4(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=4), dimension(:), intent(out) :: buffer + integer(kind=kindOfInt), intent(in) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfSize_t) :: ibytes + integer(kind=kindOfInt) :: iret - ibytes=nbytes - iret=grib_f_read_file(ifile,buffer,ibytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'read_bytes','') - endif + ibytes = nbytes + iret = grib_f_read_file(ifile, buffer, ibytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'read_bytes', '') + end if end subroutine grib_read_bytes_real4 !> Reads nbytes bytes into the buffer from a file opened with grib_open_file. @@ -662,19 +662,19 @@ !> @param buffer buffer to be read !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_read_bytes_real4_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=4),dimension(:), intent(out) :: buffer - integer(kind=kindOfSize_t), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_read_bytes_real4_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=4), dimension(:), intent(out) :: buffer + integer(kind=kindOfSize_t), intent(inout) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_read_file(ifile,buffer,nbytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'read_bytes','') - endif + iret = grib_f_read_file(ifile, buffer, nbytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'read_bytes', '') + end if end subroutine grib_read_bytes_real4_size_t !> Reads nbytes bytes into the buffer from a file opened with grib_open_file. @@ -689,21 +689,21 @@ !> @param buffer buffer to be read !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_read_bytes_real8 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=8),dimension(:), intent(out) :: buffer - integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfSize_t) :: ibytes - integer(kind=kindOfInt) :: iret + subroutine grib_read_bytes_real8(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=8), dimension(:), intent(out) :: buffer + integer(kind=kindOfInt), intent(in) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfSize_t) :: ibytes + integer(kind=kindOfInt) :: iret - ibytes=nbytes - iret=grib_f_read_file(ifile,buffer,ibytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'read_bytes','') - endif + ibytes = nbytes + iret = grib_f_read_file(ifile, buffer, ibytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'read_bytes', '') + end if end subroutine grib_read_bytes_real8 !> Reads nbytes bytes into the buffer from a file opened with grib_open_file. @@ -718,19 +718,19 @@ !> @param buffer buffer to be read !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_read_bytes_real8_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=8),dimension(:), intent(out) :: buffer - integer(kind=kindOfSize_t), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_read_bytes_real8_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=8), dimension(:), intent(out) :: buffer + integer(kind=kindOfSize_t), intent(inout) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_read_file(ifile,buffer,nbytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'read_bytes','') - endif + iret = grib_f_read_file(ifile, buffer, nbytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'read_bytes', '') + end if end subroutine grib_read_bytes_real8_size_t !> Reads a message in the buffer array from the file opened with grib_open_file. @@ -745,25 +745,25 @@ !> @param buffer binary buffer to be read !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_read_from_file_int4 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=4),dimension(:), intent(out) :: buffer - integer(kind=kindOfInt), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfSize_t) :: ibytes - integer(kind=kindOfInt) :: iret + subroutine grib_read_from_file_int4(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=4), dimension(:), intent(out) :: buffer + integer(kind=kindOfInt), intent(inout) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfSize_t) :: ibytes + integer(kind=kindOfInt) :: iret - ibytes=nbytes - iret=grib_f_read_any_from_file(ifile,buffer,ibytes) - if (iret == GRIB_SUCCESS .and. ibytes > huge(nbytes)) then - iret = GRIB_MESSAGE_TOO_LARGE - endif - nbytes=ibytes - if (present(status)) then - status = iret - else - call grib_check(iret,'read_from_file','') - endif + ibytes = nbytes + iret = grib_f_read_any_from_file(ifile, buffer, ibytes) + if (iret == GRIB_SUCCESS .and. ibytes > huge(nbytes)) then + iret = GRIB_MESSAGE_TOO_LARGE + end if + nbytes = ibytes + if (present(status)) then + status = iret + else + call grib_check(iret, 'read_from_file', '') + end if end subroutine grib_read_from_file_int4 !> Reads a message in the buffer array from the file opened with grib_open_file. @@ -778,19 +778,19 @@ !> @param buffer binary buffer to be read !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_read_from_file_int4_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=4),dimension(:), intent(out) :: buffer - integer(kind=kindOfSize_t), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_read_from_file_int4_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=4), dimension(:), intent(out) :: buffer + integer(kind=kindOfSize_t), intent(inout) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_read_any_from_file(ifile,buffer,nbytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'read_from_file','') - endif + iret = grib_f_read_any_from_file(ifile, buffer, nbytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'read_from_file', '') + end if end subroutine grib_read_from_file_int4_size_t !> Reads a message in the buffer array from the file opened with grib_open_file. @@ -805,25 +805,25 @@ !> @param buffer binary buffer to be read !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_read_from_file_real4 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=4),dimension(:), intent(out) :: buffer - integer(kind=kindOfInt), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfSize_t) :: ibytes - integer(kind=kindOfInt) :: iret + subroutine grib_read_from_file_real4(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=4), dimension(:), intent(out) :: buffer + integer(kind=kindOfInt), intent(inout) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfSize_t) :: ibytes + integer(kind=kindOfInt) :: iret - ibytes=nbytes - iret=grib_f_read_any_from_file(ifile,buffer,ibytes) - if (iret == GRIB_SUCCESS .and. ibytes > huge(nbytes)) then - iret = GRIB_MESSAGE_TOO_LARGE - endif - nbytes=ibytes - if (present(status)) then - status = iret - else - call grib_check(iret,'read_from_file','') - endif + ibytes = nbytes + iret = grib_f_read_any_from_file(ifile, buffer, ibytes) + if (iret == GRIB_SUCCESS .and. ibytes > huge(nbytes)) then + iret = GRIB_MESSAGE_TOO_LARGE + end if + nbytes = ibytes + if (present(status)) then + status = iret + else + call grib_check(iret, 'read_from_file', '') + end if end subroutine grib_read_from_file_real4 !> Reads a message in the buffer array from the file opened with grib_open_file. @@ -838,19 +838,19 @@ !> @param buffer binary buffer to be read !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_read_from_file_real4_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=4),dimension(:), intent(out) :: buffer - integer(kind=kindOfSize_t), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_read_from_file_real4_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=4), dimension(:), intent(out) :: buffer + integer(kind=kindOfSize_t), intent(inout) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_read_any_from_file(ifile,buffer,nbytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'read_from_file','') - endif + iret = grib_f_read_any_from_file(ifile, buffer, nbytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'read_from_file', '') + end if end subroutine grib_read_from_file_real4_size_t !> Reads a message in the buffer array from the file opened with grib_open_file. @@ -865,25 +865,25 @@ !> @param buffer binary buffer to be read !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_read_from_file_real8 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=8),dimension(:), intent(out) :: buffer - integer(kind=kindOfInt), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfSize_t) :: ibytes - integer(kind=kindOfInt) :: iret + subroutine grib_read_from_file_real8(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=8), dimension(:), intent(out) :: buffer + integer(kind=kindOfInt), intent(inout) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfSize_t) :: ibytes + integer(kind=kindOfInt) :: iret - ibytes=nbytes - iret=grib_f_read_any_from_file(ifile,buffer,ibytes) - if (iret == GRIB_SUCCESS .and. ibytes > huge(nbytes)) then - iret = GRIB_MESSAGE_TOO_LARGE - endif - nbytes=ibytes - if (present(status)) then - status = iret - else - call grib_check(iret,'read_from_file','') - endif + ibytes = nbytes + iret = grib_f_read_any_from_file(ifile, buffer, ibytes) + if (iret == GRIB_SUCCESS .and. ibytes > huge(nbytes)) then + iret = GRIB_MESSAGE_TOO_LARGE + end if + nbytes = ibytes + if (present(status)) then + status = iret + else + call grib_check(iret, 'read_from_file', '') + end if end subroutine grib_read_from_file_real8 !> Reads a message in the buffer array from the file opened with grib_open_file. @@ -898,19 +898,19 @@ !> @param buffer binary buffer to be read !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_read_from_file_real8_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=8),dimension(:), intent(out) :: buffer - integer(kind=kindOfSize_t), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_read_from_file_real8_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=8), dimension(:), intent(out) :: buffer + integer(kind=kindOfSize_t), intent(inout) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_read_any_from_file(ifile,buffer,nbytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'read_from_file','') - endif + iret = grib_f_read_any_from_file(ifile, buffer, nbytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'read_from_file', '') + end if end subroutine grib_read_from_file_real8_size_t !> Reads a message in the buffer array from the file opened with grib_open_file. @@ -925,25 +925,25 @@ !> @param buffer buffer to be read !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_read_from_file_char ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - character(len=1),dimension(:), intent(out) :: buffer - integer(kind=kindOfInt), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfSize_t) :: ibytes - integer(kind=kindOfInt) :: iret + subroutine grib_read_from_file_char(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + character(len=1), dimension(:), intent(out) :: buffer + integer(kind=kindOfInt), intent(inout) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfSize_t) :: ibytes + integer(kind=kindOfInt) :: iret - ibytes=nbytes - iret=grib_f_read_any_from_file(ifile,buffer,ibytes) - if (iret == GRIB_SUCCESS .and. ibytes > huge(nbytes)) then - iret = GRIB_MESSAGE_TOO_LARGE - endif - nbytes=ibytes - if (present(status)) then - status = iret - else - call grib_check(iret,'read_from_file','') - endif + ibytes = nbytes + iret = grib_f_read_any_from_file(ifile, buffer, ibytes) + if (iret == GRIB_SUCCESS .and. ibytes > huge(nbytes)) then + iret = GRIB_MESSAGE_TOO_LARGE + end if + nbytes = ibytes + if (present(status)) then + status = iret + else + call grib_check(iret, 'read_from_file', '') + end if end subroutine grib_read_from_file_char !> Reads a message in the buffer array from the file opened with grib_open_file. @@ -958,19 +958,19 @@ !> @param buffer buffer to be read !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_read_from_file_char_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - character(len=1),dimension(:), intent(out) :: buffer - integer(kind=kindOfSize_t), intent(inout) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_read_from_file_char_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + character(len=1), dimension(:), intent(out) :: buffer + integer(kind=kindOfSize_t), intent(inout) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_read_any_from_file(ifile,buffer,nbytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'read_from_file','') - endif + iret = grib_f_read_any_from_file(ifile, buffer, nbytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'read_from_file', '') + end if end subroutine grib_read_from_file_char_size_t !> Write nbytes bytes from the buffer in a file opened with grib_open_file. @@ -985,21 +985,21 @@ !> @param buffer buffer to be written !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_write_bytes_char ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - character(len=1), dimension(:),intent(in) :: buffer - integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt),optional,intent(out) :: status - integer(kind=kindOfSize_t) :: ibytes - integer(kind=kindOfInt) :: iret + subroutine grib_write_bytes_char(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + character(len=1), dimension(:), intent(in) :: buffer + integer(kind=kindOfInt), intent(in) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfSize_t) :: ibytes + integer(kind=kindOfInt) :: iret - ibytes=nbytes - iret=grib_f_write_file(ifile,buffer,ibytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'write_bytes','') - endif + ibytes = nbytes + iret = grib_f_write_file(ifile, buffer, ibytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'write_bytes', '') + end if end subroutine grib_write_bytes_char !> Write nbytes bytes from the buffer in a file opened with grib_open_file. @@ -1014,19 +1014,19 @@ !> @param buffer buffer to be written !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_write_bytes_char_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - character(len=1), dimension(:),intent(in) :: buffer - integer(kind=kindOfSize_t), intent(in) :: nbytes - integer(kind=kindOfInt),optional,intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_write_bytes_char_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + character(len=1), dimension(:), intent(in) :: buffer + integer(kind=kindOfSize_t), intent(in) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_write_file(ifile,buffer,nbytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'write_bytes','') - endif + iret = grib_f_write_file(ifile, buffer, nbytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'write_bytes', '') + end if end subroutine grib_write_bytes_char_size_t !> Write nbytes bytes from the buffer in a file opened with grib_open_file. @@ -1041,21 +1041,21 @@ !> @param buffer buffer to be written !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_write_bytes_int4 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=4), dimension(:),intent(in) :: buffer - integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt),optional,intent(out) :: status - integer(kind=kindOfSize_t) :: ibytes - integer(kind=kindOfInt) :: iret + subroutine grib_write_bytes_int4(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=4), dimension(:), intent(in) :: buffer + integer(kind=kindOfInt), intent(in) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfSize_t) :: ibytes + integer(kind=kindOfInt) :: iret - ibytes=nbytes - iret=grib_f_write_file(ifile,buffer,ibytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'write_bytes','') - endif + ibytes = nbytes + iret = grib_f_write_file(ifile, buffer, ibytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'write_bytes', '') + end if end subroutine grib_write_bytes_int4 !> Write nbytes bytes from the buffer in a file opened with grib_open_file. @@ -1070,19 +1070,19 @@ !> @param buffer buffer to be written !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_write_bytes_int4_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=4), dimension(:),intent(in) :: buffer - integer(kind=kindOfSize_t), intent(in) :: nbytes - integer(kind=kindOfInt),optional,intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_write_bytes_int4_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=4), dimension(:), intent(in) :: buffer + integer(kind=kindOfSize_t), intent(in) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_write_file(ifile,buffer,nbytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'write_bytes','') - endif + iret = grib_f_write_file(ifile, buffer, nbytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'write_bytes', '') + end if end subroutine grib_write_bytes_int4_size_t !> Write nbytes bytes from the buffer in a file opened with grib_open_file. @@ -1097,21 +1097,21 @@ !> @param buffer buffer to be written !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_write_bytes_real4 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=4), dimension(:),intent(in) :: buffer - integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt),optional,intent(out) :: status - integer(kind=kindOfSize_t) :: ibytes - integer(kind=kindOfInt) :: iret + subroutine grib_write_bytes_real4(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=4), dimension(:), intent(in) :: buffer + integer(kind=kindOfInt), intent(in) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfSize_t) :: ibytes + integer(kind=kindOfInt) :: iret - ibytes=nbytes - iret=grib_f_write_file(ifile,buffer,ibytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'write_bytes','') - endif + ibytes = nbytes + iret = grib_f_write_file(ifile, buffer, ibytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'write_bytes', '') + end if end subroutine grib_write_bytes_real4 !> Write nbytes bytes from the buffer in a file opened with grib_open_file. @@ -1126,19 +1126,19 @@ !> @param buffer buffer to be written !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_write_bytes_real4_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=4), dimension(:),intent(in) :: buffer - integer(kind=kindOfSize_t), intent(in) :: nbytes - integer(kind=kindOfInt),optional,intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_write_bytes_real4_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=4), dimension(:), intent(in) :: buffer + integer(kind=kindOfSize_t), intent(in) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_write_file(ifile,buffer,nbytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'write_bytes','') - endif + iret = grib_f_write_file(ifile, buffer, nbytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'write_bytes', '') + end if end subroutine grib_write_bytes_real4_size_t !> Write nbytes bytes from the buffer in a file opened with grib_open_file. @@ -1153,21 +1153,21 @@ !> @param buffer buffer to be written !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_write_bytes_real8 ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=8), dimension(:),intent(in) :: buffer - integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt),optional,intent(out) :: status - integer(kind=kindOfSize_t) :: ibytes - integer(kind=kindOfInt) :: iret + subroutine grib_write_bytes_real8(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=8), dimension(:), intent(in) :: buffer + integer(kind=kindOfInt), intent(in) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfSize_t) :: ibytes + integer(kind=kindOfInt) :: iret - ibytes=nbytes - iret=grib_f_write_file(ifile,buffer,ibytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'write_bytes','') - endif + ibytes = nbytes + iret = grib_f_write_file(ifile, buffer, ibytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'write_bytes', '') + end if end subroutine grib_write_bytes_real8 !> Write nbytes bytes from the buffer in a file opened with grib_open_file. @@ -1182,19 +1182,19 @@ !> @param buffer buffer to be written !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_write_bytes_real8_size_t ( ifile, buffer, nbytes, status ) - integer(kind=kindOfInt),intent(in) :: ifile - real(kind=8), dimension(:),intent(in) :: buffer - integer(kind=kindOfSize_t), intent(in) :: nbytes - integer(kind=kindOfInt),optional,intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_write_bytes_real8_size_t(ifile, buffer, nbytes, status) + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=8), dimension(:), intent(in) :: buffer + integer(kind=kindOfSize_t), intent(in) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_write_file(ifile,buffer,nbytes) - if (present(status)) then - status = iret - else - call grib_check(iret,'write_bytes','') - endif + iret = grib_f_write_file(ifile, buffer, nbytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'write_bytes', '') + end if end subroutine grib_write_bytes_real8_size_t !> Close a file. @@ -1210,17 +1210,17 @@ !> !> @param ifile is the id of the file to be closed. !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_close_file ( ifile , status ) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_close_file(ifile, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_close_file(ifile) - if (present(status)) then - status = iret - else - call grib_check(iret,'close_file','') - endif + iret = grib_f_close_file(ifile) + if (present(status)) then + status = iret + else + call grib_check(iret, 'close_file', '') + end if end subroutine grib_close_file !> Counts the messages in a file @@ -1230,18 +1230,18 @@ !> @param ifile id of the file opened with @ref grib_open_file !> @param n number of messages in the file !> @param status GRIB_SUCCESS if OK or error code - subroutine grib_count_in_file ( ifile, n , status) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=kindOfInt),intent(out) :: n - integer(kind=kindOfInt),optional,intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_count_in_file(ifile, n, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: n + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_count_in_file( ifile, n ) - if (present(status)) then - status = iret - else - call grib_check(iret,'count_in_file','') - endif + iret = grib_f_count_in_file(ifile, n) + if (present(status)) then + status = iret + else + call grib_check(iret, 'count_in_file', '') + end if end subroutine grib_count_in_file !> Load in memory only the headers of a grib message from a file. @@ -1254,18 +1254,18 @@ !> @param ifile id of the file opened with @ref grib_open_file !> @param gribid id of the grib loaded in memory !> @param status GRIB_SUCCESS if OK, GRIB_END_OF_FILE at the end of file, or error code - subroutine grib_headers_only_new_from_file ( ifile, gribid , status) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=kindOfInt),intent(out) :: gribid - integer(kind=kindOfInt),optional,intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_headers_only_new_from_file(ifile, gribid, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: gribid + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_headers_only_new_from_file( ifile, gribid ) - if (present(status)) then - status = iret - else - call grib_check(iret,'headers_only_new_from_file','') - endif + iret = grib_f_headers_only_new_from_file(ifile, gribid) + if (present(status)) then + status = iret + else + call grib_check(iret, 'headers_only_new_from_file', '') + end if end subroutine grib_headers_only_new_from_file !> Load in memory a grib message from a file. @@ -1278,18 +1278,18 @@ !> @param ifile id of the file opened with @ref grib_open_file !> @param gribid id of the grib loaded in memory !> @param status GRIB_SUCCESS if OK, GRIB_END_OF_FILE at the end of file, or error code - subroutine grib_new_from_file ( ifile, gribid , status) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=kindOfInt),intent(out) :: gribid - integer(kind=kindOfInt),optional,intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_new_from_file(ifile, gribid, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: gribid + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_new_from_file( ifile, gribid ) - if (present(status)) then - status = iret - else - call grib_check(iret,'grib_new_from_file','') - endif + iret = grib_f_new_from_file(ifile, gribid) + if (present(status)) then + status = iret + else + call grib_check(iret, 'grib_new_from_file', '') + end if end subroutine grib_new_from_file !> Load in memory a BUFR message from a file. @@ -1302,18 +1302,18 @@ !> @param ifile id of the file opened with @ref codes_open_file !> @param bufrid id of the BUFR loaded in memory !> @param status GRIB_SUCCESS if OK, GRIB_END_OF_FILE at the end of file, or error code - subroutine bufr_new_from_file ( ifile, bufrid , status) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=kindOfInt),intent(out) :: bufrid - integer(kind=kindOfInt),optional,intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine bufr_new_from_file(ifile, bufrid, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: bufrid + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=bufr_f_new_from_file( ifile, bufrid ) - if (present(status)) then - status = iret - else - call grib_check(iret,'bufr_new_from_file','') - endif + iret = bufr_f_new_from_file(ifile, bufrid) + if (present(status)) then + status = iret + else + call grib_check(iret, 'bufr_new_from_file', '') + end if end subroutine bufr_new_from_file !> Load in memory a message from a file. @@ -1324,21 +1324,20 @@ !> @param ifile id of the file opened with @ref codes_open_file !> @param msgid id of the message loaded in memory !> @param status GRIB_SUCCESS if OK, GRIB_END_OF_FILE at the end of file, or error code - subroutine any_new_from_file ( ifile, msgid , status) - integer(kind=kindOfInt),intent(in) :: ifile - integer(kind=kindOfInt),intent(out) :: msgid - integer(kind=kindOfInt),optional,intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine any_new_from_file(ifile, msgid, status) + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: msgid + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=any_f_new_from_file( ifile, msgid ) - if (present(status)) then - status = iret - else - call grib_check(iret,'any_new_from_file','') - endif + iret = any_f_new_from_file(ifile, msgid) + if (present(status)) then + status = iret + else + call grib_check(iret, 'any_new_from_file', '') + end if end subroutine any_new_from_file - !> Create a new message in memory from a character array containting the coded message. !> !> The message can be accessed through its gribid and it will be available\n @@ -1354,20 +1353,20 @@ !> @param gribid id of the grib loaded in memory !> @param message character array containing the coded message !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_new_from_message_char( gribid, message, status ) - integer(kind=kindOfInt),intent(out) :: gribid - character(len=1), dimension(:),intent(in) :: message - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfSize_t) :: size_bytes - integer(kind=kindOfInt) :: iret + subroutine grib_new_from_message_char(gribid, message, status) + integer(kind=kindOfInt), intent(out) :: gribid + character(len=1), dimension(:), intent(in) :: message + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfSize_t) :: size_bytes + integer(kind=kindOfInt) :: iret - size_bytes=size(message,dim=1) - iret = grib_f_new_from_message ( gribid, message, size_bytes ) - if (present(status)) then - status = iret - else - call grib_check(iret,'new_from_message','') - endif + size_bytes = size(message, dim=1) + iret = grib_f_new_from_message(gribid, message, size_bytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'new_from_message', '') + end if end subroutine grib_new_from_message_char @@ -1387,20 +1386,20 @@ !> @param gribid id of the grib loaded in memory !> @param message integer array containing the coded message !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_new_from_message_int4 ( gribid, message, status ) - integer(kind=kindOfInt),intent(out) :: gribid - integer(kind=4), dimension(:),intent(in) :: message - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfSize_t) :: size_bytes - integer(kind=kindOfInt) :: iret + subroutine grib_new_from_message_int4(gribid, message, status) + integer(kind=kindOfInt), intent(out) :: gribid + integer(kind=4), dimension(:), intent(in) :: message + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfSize_t) :: size_bytes + integer(kind=kindOfInt) :: iret - size_bytes=size(message,dim=1)*sizeOfInteger4 - iret = grib_f_new_from_message ( gribid, message, size_bytes ) - if (present(status)) then - status = iret - else - call grib_check(iret,'new_from_message','') - endif + size_bytes = size(message, dim=1)*sizeOfInteger4 + iret = grib_f_new_from_message(gribid, message, size_bytes) + if (present(status)) then + status = iret + else + call grib_check(iret, 'new_from_message', '') + end if end subroutine grib_new_from_message_int4 @@ -1418,21 +1417,20 @@ !> @param gribid id of the grib loaded in memory !> @param samplename name of the sample to be used !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_new_from_samples ( gribid, samplename, status ) - integer(kind=kindOfInt), intent(out) :: gribid - character(len=*), intent(in) :: samplename - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_new_from_samples(gribid, samplename, status) + integer(kind=kindOfInt), intent(out) :: gribid + character(len=*), intent(in) :: samplename + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_new_from_samples ( gribid, samplename ) - if (present(status)) then - status = iret - else - call grib_check(iret,'grib_new_from_samples','('//samplename//')') - endif + iret = grib_f_new_from_samples(gribid, samplename) + if (present(status)) then + status = iret + else + call grib_check(iret, 'grib_new_from_samples', '('//samplename//')') + end if end subroutine grib_new_from_samples - !> Free the memory for the message referred as gribid. !> !> In case of error, if the status parameter (optional) is not given, the program will @@ -1443,20 +1441,20 @@ !> !> @param gribid id of the grib loaded in memory !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_release ( gribid, status ) - integer(kind=kindOfInt), intent(in) :: gribid - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_release(gribid, status) + integer(kind=kindOfInt), intent(in) :: gribid + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_release ( gribid ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'release','') - endif + iret = grib_f_release(gribid) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'release', '') + end if end subroutine grib_release !> Create a copy of a message. @@ -1474,40 +1472,40 @@ !> @param gribid_src grib to be cloned !> @param gribid_dest new grib returned !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_clone ( gribid_src, gribid_dest, status ) - integer(kind=kindOfInt), intent(in) :: gribid_src - integer(kind=kindOfInt), intent(out) :: gribid_dest - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_clone(gribid_src, gribid_dest, status) + integer(kind=kindOfInt), intent(in) :: gribid_src + integer(kind=kindOfInt), intent(out) :: gribid_dest + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_clone(gribid_src,gribid_dest) - if (iret /= 0) then - call grib_f_write_on_fail(gribid_src) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'clone','') - endif + iret = grib_f_clone(gribid_src, gribid_dest) + if (iret /= 0) then + call grib_f_write_on_fail(gribid_src) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'clone', '') + end if end subroutine grib_clone - subroutine grib_util_sections_copy ( gribid_from, gribid_to, what, gribid_out,status ) - integer(kind=kindOfInt), intent(in) :: gribid_from - integer(kind=kindOfInt), intent(in) :: gribid_to - integer(kind=kindOfInt), intent(out) :: gribid_out - integer(kind=kindOfInt), intent(in) :: what - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_util_sections_copy(gribid_from, gribid_to, what, gribid_out, status) + integer(kind=kindOfInt), intent(in) :: gribid_from + integer(kind=kindOfInt), intent(in) :: gribid_to + integer(kind=kindOfInt), intent(out) :: gribid_out + integer(kind=kindOfInt), intent(in) :: what + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_util_sections_copy(gribid_from,gribid_to,what,gribid_out) - if (iret /= 0) then - call grib_f_write_on_fail(gribid_from) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'grib_util_sections_copy','') - endif + iret = grib_f_util_sections_copy(gribid_from, gribid_to, what, gribid_out) + if (iret /= 0) then + call grib_f_write_on_fail(gribid_from) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'grib_util_sections_copy', '') + end if end subroutine grib_util_sections_copy !> Copy the value of all the keys belonging to a namespace from the source message @@ -1523,19 +1521,19 @@ !> @param gribid_dest destination message !> @param namespace namespace to be copied !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_copy_namespace ( gribid_src, namespace, gribid_dest, status ) - integer(kind=kindOfInt), intent(in) :: gribid_src - integer(kind=kindOfInt), intent(in) :: gribid_dest - character(LEN=*), intent(in) :: namespace - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_copy_namespace(gribid_src, namespace, gribid_dest, status) + integer(kind=kindOfInt), intent(in) :: gribid_src + integer(kind=kindOfInt), intent(in) :: gribid_dest + character(LEN=*), intent(in) :: namespace + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_copy_namespace(gribid_src,namespace,gribid_dest) - if (present(status)) then - status = iret - else - call grib_check(iret,'grib_copy_namespace','('//namespace//')') - endif + iret = grib_f_copy_namespace(gribid_src, namespace, gribid_dest) + if (present(status)) then + status = iret + else + call grib_check(iret, 'grib_copy_namespace', '('//namespace//')') + end if end subroutine grib_copy_namespace !> Check the status returned by a subroutine. @@ -1546,15 +1544,14 @@ !> @param status the status to be checked !> @param caller name of the caller soubroutine !> @param string a string variable from the caller routine (e.g. key,filename) - subroutine grib_check ( status,caller,string ) - integer(kind=kindOfInt), intent(in) :: status - character(len=*), intent(in) :: caller - character(len=*), intent(in) :: string + subroutine grib_check(status, caller, string) + integer(kind=kindOfInt), intent(in) :: status + character(len=*), intent(in) :: caller + character(len=*), intent(in) :: string - call grib_f_check( status,caller,string ) + call grib_f_check(status, caller, string) end subroutine grib_check - !> Get latitudes/longitudes/data values (real(4)). !> !> Latitudes, longitudes, data values arrays are returned. @@ -1571,24 +1568,24 @@ !> @param lons longitudes array with dimension "size" !> @param values data values array with dimension "size" !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_data_real4 ( gribid, lats, lons, values, status ) - integer(kind=kindOfInt), intent(in) :: gribid - real ( kind = kindOfFloat ), dimension(:),intent(out) :: lats, lons - real ( kind = kindOfFloat ), dimension(:),intent(out) :: values - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfSize_t) :: npoints + subroutine grib_get_data_real4(gribid, lats, lons, values, status) + integer(kind=kindOfInt), intent(in) :: gribid + real(kind=kindOfFloat), dimension(:), intent(out) :: lats, lons + real(kind=kindOfFloat), dimension(:), intent(out) :: values + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfSize_t) :: npoints - npoints=size(lats) - iret = grib_f_get_data_real4 ( gribid, lats, lons, values,npoints ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'grib_get_data','') - endif + npoints = size(lats) + iret = grib_f_get_data_real4(gribid, lats, lons, values, npoints) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'grib_get_data', '') + end if end subroutine grib_get_data_real4 @@ -1607,24 +1604,24 @@ !> @param lons longitudes array !> @param values data values array !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_data_real8 ( gribid, lats, lons, values, status ) - integer(kind=kindOfInt), intent(in) :: gribid - real ( kind = kindOfDouble ), dimension(:),intent(out) :: lats, lons - real ( kind = kindOfDouble ), dimension(:),intent(out) :: values - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfSize_t) :: npoints + subroutine grib_get_data_real8(gribid, lats, lons, values, status) + integer(kind=kindOfInt), intent(in) :: gribid + real(kind=kindOfDouble), dimension(:), intent(out) :: lats, lons + real(kind=kindOfDouble), dimension(:), intent(out) :: values + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfSize_t) :: npoints - npoints=size(lats) - iret = grib_f_get_data_real8 ( gribid, lats, lons, values,npoints ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'grib_get_data','') - endif + npoints = size(lats) + iret = grib_f_get_data_real8(gribid, lats, lons, values, npoints) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'grib_get_data', '') + end if end subroutine grib_get_data_real8 @@ -1649,36 +1646,36 @@ !> @param iterid keys iterator id to be used in the keys iterator functions !> @param namespace the namespace of the keys to search for (all the keys if empty) !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_keys_iterator_new ( gribid, iterid, namespace, status ) - integer(kind=kindOfInt), intent(in) :: gribid - integer(kind=kindOfInt), intent(inout) :: iterid - character(LEN=*), intent(in) :: namespace - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_keys_iterator_new(gribid, iterid, namespace, status) + integer(kind=kindOfInt), intent(in) :: gribid + integer(kind=kindOfInt), intent(inout) :: iterid + character(LEN=*), intent(in) :: namespace + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret = grib_f_keys_iterator_new ( gribid, iterid, namespace ) - if (present(status)) then - status = iret - else - call grib_check(iret,'keys_iterator_new',namespace) - endif + iret = grib_f_keys_iterator_new(gribid, iterid, namespace) + if (present(status)) then + status = iret + else + call grib_check(iret, 'keys_iterator_new', namespace) + end if end subroutine grib_keys_iterator_new !> Advance to the next keys iterator value. !> !> @param iterid keys iterator id created with @ref grib_keys_iterator_new !> @param status GRIB_SUCCESS if next iterator exists, integer value if no more elements to iterate on - subroutine grib_keys_iterator_next ( iterid , status) - integer(kind=kindOfInt), intent(in) :: iterid - integer(kind=kindOfInt), intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_keys_iterator_next(iterid, status) + integer(kind=kindOfInt), intent(in) :: iterid + integer(kind=kindOfInt), intent(out) :: status + integer(kind=kindOfInt) :: iret - status = GRIB_SUCCESS - iret = grib_f_keys_iterator_next ( iterid ) - if (iret == 0) then - ! no more elements - status = GRIB_END - endif + status = GRIB_SUCCESS + iret = grib_f_keys_iterator_next(iterid) + if (iret == 0) then + ! no more elements + status = GRIB_END + end if end subroutine grib_keys_iterator_next !> Delete a keys iterator and free memory. @@ -1689,17 +1686,17 @@ !> !> @param iterid keys iterator id created with @ref grib_keys_iterator_new !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_keys_iterator_delete ( iterid , status) - integer(kind=kindOfInt), intent(in) :: iterid - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_keys_iterator_delete(iterid, status) + integer(kind=kindOfInt), intent(in) :: iterid + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret = grib_f_keys_iterator_delete ( iterid ) - if (present(status)) then - status = iret - else - call grib_check(iret,'keys_iterator_delete','') - endif + iret = grib_f_keys_iterator_delete(iterid) + if (present(status)) then + status = iret + else + call grib_check(iret, 'keys_iterator_delete', '') + end if end subroutine grib_keys_iterator_delete !> Get the name of a key from a keys iterator. @@ -1710,18 +1707,18 @@ !> @param iterid keys iterator id created with @ref grib_keys_iterator_new !> @param name key name to be retrieved !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_keys_iterator_get_name ( iterid, name, status ) - integer(kind=kindOfInt), intent(in) :: iterid - character(LEN=*), intent(out) :: name - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_keys_iterator_get_name(iterid, name, status) + integer(kind=kindOfInt), intent(in) :: iterid + character(LEN=*), intent(out) :: name + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret = grib_f_keys_iterator_get_name ( iterid, name ) - if (present(status)) then - status = iret - else - call grib_check(iret,'keys_iterator_get_name',name) - endif + iret = grib_f_keys_iterator_get_name(iterid, name) + if (present(status)) then + status = iret + else + call grib_check(iret, 'keys_iterator_get_name', name) + end if end subroutine grib_keys_iterator_get_name !> Rewind a keys iterator. @@ -1732,17 +1729,17 @@ !> !> @param iterid keys iterator id created with @ref grib_keys_iterator_new !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_keys_iterator_rewind ( iterid, status ) - integer(kind=kindOfInt), intent(in) :: iterid - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_keys_iterator_rewind(iterid, status) + integer(kind=kindOfInt), intent(in) :: iterid + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret = grib_f_keys_iterator_rewind ( iterid ) - if (present(status)) then - status = iret - else - call grib_check(iret,'keys_iterator_rewind','') - endif + iret = grib_f_keys_iterator_rewind(iterid) + if (present(status)) then + status = iret + else + call grib_check(iret, 'keys_iterator_rewind', '') + end if end subroutine grib_keys_iterator_rewind !> Dump the content of a grib message. @@ -1753,17 +1750,17 @@ !> !> @param gribid id of the grib loaded in memory !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_dump ( gribid , status) - integer(kind=kindOfInt), intent(in) :: gribid - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_dump(gribid, status) + integer(kind=kindOfInt), intent(in) :: gribid + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_dump ( gribid ) - if (present(status)) then - status = iret - else - call grib_check(iret,'dump','') - endif + iret = grib_f_dump(gribid) + if (present(status)) then + status = iret + else + call grib_check(iret, 'dump', '') + end if end subroutine grib_dump !> Get the error message given an error code @@ -1771,18 +1768,18 @@ !> @param error error code !> @param error_message error message !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_error_string ( error, error_message, status ) - integer(kind=kindOfInt), intent(in) :: error - character(len=*), intent(out) :: error_message - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_get_error_string(error, error_message, status) + integer(kind=kindOfInt), intent(in) :: error + character(len=*), intent(out) :: error_message + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_get_error_string ( error, error_message ) - if (present(status)) then - status = iret - else - call grib_check(iret,'get_error_string','') - endif + iret = grib_f_get_error_string(error, error_message) + if (present(status)) then + status = iret + else + call grib_check(iret, 'get_error_string', '') + end if end subroutine grib_get_error_string !> Get the size of an array key. @@ -1797,22 +1794,22 @@ !> @param key name of the key !> @param size size of the array key !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_size_int ( gribid, key, size , status) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - integer(kind=kindOfInt), intent(out) :: size - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_get_size_int(gribid, key, size, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), intent(out) :: size + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_get_size_int ( gribid, key, size ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'get_size',key) - endif + iret = grib_f_get_size_int(gribid, key, size) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'get_size', key) + end if end subroutine grib_get_size_int !> Get the size of an array key. @@ -1827,22 +1824,22 @@ !> @param key name of the key !> @param size size of the array key !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_size_long ( gribid, key, size , status) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - integer(kind=kindOfLong), intent(out) :: size - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_get_size_long(gribid, key, size, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + integer(kind=kindOfLong), intent(out) :: size + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_get_size_long ( gribid, key, size ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'get_size',key) - endif + iret = grib_f_get_size_long(gribid, key, size) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'get_size', key) + end if end subroutine grib_get_size_long !> Get the integer value of a key from a grib message. @@ -1855,22 +1852,22 @@ !> @param key key name !> @param value the integer(4) value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_int(gribid,key,value,status) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - integer(kind = kindOfInt), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_get_int(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_get_int ( gribid, key, value ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'get',key) - endif + iret = grib_f_get_int(gribid, key, value) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'get', key) + end if end subroutine grib_get_int !> Get the integer value of a key from a grib message. @@ -1883,22 +1880,22 @@ !> @param key key name !> @param value the integer(4) value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_long(gribid,key,value,status) - integer(kind=kindOfInt), intent(in) :: gribid + subroutine grib_get_long(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid character(len=*), intent(in) :: key - integer(kind = kindOfLong), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfLong), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret - iret=grib_f_get_long ( gribid, key, value ) + iret = grib_f_get_long(gribid, key, value) if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif + call grib_f_write_on_fail(gribid) + end if if (present(status)) then status = iret else - call grib_check(iret,'get',key) - endif + call grib_check(iret, 'get', key) + end if end subroutine grib_get_long !> Check if the value of a key is MISSING. @@ -1911,22 +1908,22 @@ !> @param key key name !> @param is_missing 0->not missing, 1->missing !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_is_missing(gribid,key,is_missing,status) - integer(kind=kindOfInt), intent(in) :: gribid + subroutine grib_is_missing(gribid, key, is_missing, status) + integer(kind=kindOfInt), intent(in) :: gribid character(len=*), intent(in) :: key - integer(kind = kindOfInt), intent(out) :: is_missing - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfInt), intent(out) :: is_missing + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret - iret=grib_f_is_missing ( gribid, key, is_missing ) + iret = grib_f_is_missing(gribid, key, is_missing) if (iret /= 0) then call grib_f_write_on_fail(gribid) - endif + end if if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'is_missing',key) - endif + call grib_check(iret, 'is_missing', key) + end if end subroutine grib_is_missing !> Check if a key is DEFINED. @@ -1939,22 +1936,22 @@ !> @param key key name !> @param is_defined 0->not defined, 1->defined !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_is_defined(gribid,key,is_defined,status) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - integer(kind = kindOfInt), intent(out) :: is_defined - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_is_defined(gribid, key, is_defined, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), intent(out) :: is_defined + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_is_defined( gribid, key, is_defined ) + iret = grib_f_is_defined(gribid, key, is_defined) if (iret /= 0) then call grib_f_write_on_fail(gribid) - endif + end if if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'is_defined',key) - endif + call grib_check(iret, 'is_defined', key) + end if end subroutine grib_is_defined !> Get the real(4) value of a key from a grib message. @@ -1967,22 +1964,22 @@ !> @param key key name !> @param value the real(4) value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_real4 ( gribid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - real(kind = kindOfFloat), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_get_real4(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + real(kind=kindOfFloat), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_get_real4 ( gribid, key, value ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'get',key) - endif + iret = grib_f_get_real4(gribid, key, value) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'get', key) + end if end subroutine grib_get_real4 !> Get the real(8) value of a key from a grib message. @@ -1995,22 +1992,22 @@ !> @param key key name !> @param value the real(8) value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_real8 ( gribid, key, value , status) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - real(kind = kindOfDouble), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_get_real8(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + real(kind=kindOfDouble), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_get_real8 ( gribid, key, value ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'get',key) - endif + iret = grib_f_get_real8(gribid, key, value) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'get', key) + end if end subroutine grib_get_real8 !> Get the character value of a key from a grib message. @@ -2023,25 +2020,24 @@ !> @param key key name !> @param value the real(8) value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_string ( gribid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - character(len=*), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_get_string(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + character(len=*), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_get_string ( gribid, key, value ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'get',key) - endif + iret = grib_f_get_string(gribid, key, value) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'get', key) + end if end subroutine grib_get_string - !> Get the integer array of values for a key from a grib message. !> !> In case of error, if the status parameter (optional) is not given, the program will @@ -2052,25 +2048,25 @@ !> @param key key name !> @param value integer(4) array value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_int_array ( gribid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - integer(kind=kindOfInt), dimension(:), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine grib_get_int_array(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), dimension(:), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt) :: nb_values + integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: nb_values - nb_values = size(value) - iret=grib_f_get_int_array ( gribid, key, value , nb_values ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'get',key) - endif + nb_values = size(value) + iret = grib_f_get_int_array(gribid, key, value, nb_values) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'get', key) + end if end subroutine grib_get_int_array !> Get the integer array of values for a key from a grib message. @@ -2083,24 +2079,24 @@ !> @param key key name !> @param value integer(4) array value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_long_array ( gribid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - integer(kind = kindOfLong),dimension(:), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine grib_get_long_array(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + integer(kind=kindOfLong), dimension(:), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret integer(kind=kindOfInt) :: nb_values nb_values = size(value) - iret=grib_f_get_long_array ( gribid, key, value , nb_values ) + iret = grib_f_get_long_array(gribid, key, value, nb_values) if (iret /= 0) then call grib_f_write_on_fail(gribid) - endif + end if if (present(status)) then status = iret else - call grib_check(iret,'get',key) - endif + call grib_check(iret, 'get', key) + end if end subroutine grib_get_long_array !> Get the array of bytes (character) for a key from a grib message. @@ -2114,31 +2110,31 @@ !> @param value character(len=1) array of byte values !> @param length (optional) output: number of values retrieved !> @param status (optional) GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_byte_array ( gribid, key, value, length, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - character(len=1),dimension(:),intent(out) :: value - integer(kind=kindOfInt), optional, intent(out) :: length - integer(kind=kindOfInt), optional, intent(out) :: status + subroutine grib_get_byte_array(gribid, key, value, length, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + character(len=1), dimension(:), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: length + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret integer(kind=kindOfInt) :: nb_values character :: bytes(size(value)) - nb_values = size (value) + nb_values = size(value) bytes = ACHAR(0) - iret = grib_f_get_byte_array ( gribid, key, bytes, nb_values ) - value = transfer (bytes, value) + iret = grib_f_get_byte_array(gribid, key, bytes, nb_values) + value = transfer(bytes, value) if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif + call grib_f_write_on_fail(gribid) + end if if (present(length)) then - length = nb_values + length = nb_values end if if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'get',key) - endif + call grib_check(iret, 'get', key) + end if end subroutine grib_get_byte_array !> Get the real(4) array of values for a key from a grib message. @@ -2151,24 +2147,24 @@ !> @param key key name !> @param value real(4) array value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_real4_array ( gribid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - real(kind = kindOfFloat), dimension(:), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt) :: nb_values + subroutine grib_get_real4_array(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + real(kind=kindOfFloat), dimension(:), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: nb_values - nb_values = size(value) - iret=grib_f_get_real4_array ( gribid, key, value , nb_values ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'get',key) - endif + nb_values = size(value) + iret = grib_f_get_real4_array(gribid, key, value, nb_values) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'get', key) + end if end subroutine grib_get_real4_array !> Get the real(8) array of values for a key from a grib message. @@ -2181,24 +2177,24 @@ !> @param key key name !> @param value real(8) array value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_real8_array ( gribid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - real(kind = kindOfDouble),dimension(:), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt) :: nb_values + subroutine grib_get_real8_array(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + real(kind=kindOfDouble), dimension(:), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: nb_values - nb_values = size(value) - iret=grib_f_get_real8_array ( gribid, key, value, nb_values ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'get',key) - endif + nb_values = size(value) + iret = grib_f_get_real8_array(gribid, key, value, nb_values) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'get', key) + end if end subroutine grib_get_real8_array !> Get a real(4) value of specified index from an array key. @@ -2212,23 +2208,23 @@ !> @param kindex integer(4) index !> @param value real(4) value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_real4_element ( gribid, key, kindex,value, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - integer(kind=kindOfInt), intent(in) :: kindex - real(kind = kindOfFloat),intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_get_real4_element(gribid, key, kindex, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), intent(in) :: kindex + real(kind=kindOfFloat), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_get_real4_element ( gribid, key, kindex,value ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'get',key) - endif + iret = grib_f_get_real4_element(gribid, key, kindex, value) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'get', key) + end if end subroutine grib_get_real4_element !> Get a real(8) value of specified index from an array key. @@ -2242,23 +2238,23 @@ !> @param kindex integer(4) index !> @param value real(8) value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_real8_element ( gribid, key, kindex,value, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - integer(kind=kindOfInt), intent(in) :: kindex - real(kind = kindOfDouble), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_get_real8_element(gribid, key, kindex, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), intent(in) :: kindex + real(kind=kindOfDouble), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_get_real8_element ( gribid, key, kindex,value ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'get',key) - endif + iret = grib_f_get_real8_element(gribid, key, kindex, value) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'get', key) + end if end subroutine grib_get_real8_element !> Get the real(4) values whose indexes are stored in the array "index" from an array key. @@ -2272,25 +2268,25 @@ !> @param kindex integer(4) array indexes !> @param value real(4) array value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_real4_elements ( gribid, key, kindex, value, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - integer(kind=kindOfInt),dimension(:), intent(in) :: kindex - real(kind = kindOfFloat), dimension(:), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt) ::npoints + subroutine grib_get_real4_elements(gribid, key, kindex, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), dimension(:), intent(in) :: kindex + real(kind=kindOfFloat), dimension(:), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) ::npoints - npoints=size(value) - iret=grib_f_get_real4_elements ( gribid, key, kindex,value,npoints ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'get',key) - endif + npoints = size(value) + iret = grib_f_get_real4_elements(gribid, key, kindex, value, npoints) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'get', key) + end if end subroutine grib_get_real4_elements !> Get the real(8) values whose indexes are stored in the array "index" from an array key. @@ -2304,25 +2300,25 @@ !> @param kindex integer(4) array index !> @param value real(8) array value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_real8_elements ( gribid, key, kindex, value, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - integer(kind=kindOfInt),dimension(:), intent(in) :: kindex - real(kind = kindOfDouble), dimension(:), intent(out) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt) :: npoints + subroutine grib_get_real8_elements(gribid, key, kindex, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), dimension(:), intent(in) :: kindex + real(kind=kindOfDouble), dimension(:), intent(out) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: npoints - npoints=size(value) - iret=grib_f_get_real8_elements ( gribid, key, kindex,value,npoints ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'get',key) - endif + npoints = size(value) + iret = grib_f_get_real8_elements(gribid, key, kindex, value, npoints) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'get', key) + end if end subroutine grib_get_real8_elements !> Set the integer value for a key in a grib message. @@ -2335,22 +2331,22 @@ !> @param key key name !> @param value integer(4) value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_set_int ( gribid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - integer(kind=kindOfInt), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_set_int(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_set_int ( gribid, key, value ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'set',key) - endif + iret = grib_f_set_int(gribid, key, value) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'set', key) + end if end subroutine grib_set_int !> Set the integer value for a key in a grib message. @@ -2363,22 +2359,22 @@ !> @param key key name !> @param value integer(4) value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_set_long ( gribid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: gribid + subroutine grib_set_long(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid character(len=*), intent(in) :: key - integer(kind=kindOfLong), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + integer(kind=kindOfLong), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret - iret=grib_f_set_long ( gribid, key, value ) + iret = grib_f_set_long(gribid, key, value) if (iret /= 0) then call grib_f_write_on_fail(gribid) - endif + end if if (present(status)) then status = iret else - call grib_check(iret,'set',key) - endif + call grib_check(iret, 'set', key) + end if end subroutine grib_set_long !> Set the real(4) value for a key in a grib message. @@ -2391,22 +2387,22 @@ !> @param key key name !> @param value real(4) value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_set_real4 ( gribid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - real(kind = kindOfFloat), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_set_real4(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + real(kind=kindOfFloat), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_set_real4 ( gribid, key, value ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'set',key) - endif + iret = grib_f_set_real4(gribid, key, value) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'set', key) + end if end subroutine grib_set_real4 !> Set the real(8) value for a key in a grib message. @@ -2419,22 +2415,22 @@ !> @param key key name !> @param value real(8) value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_set_real8 ( gribid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - real(kind = kindOfDouble), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_set_real8(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + real(kind=kindOfDouble), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_set_real8 ( gribid, key, value ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'set',key) - endif + iret = grib_f_set_real8(gribid, key, value) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'set', key) + end if end subroutine grib_set_real8 !> Set the integers values for an array key in a grib message. @@ -2447,24 +2443,24 @@ !> @param key key name !> @param value integer(4) array value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_set_int_array ( gribid, key, value, status) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - integer(kind=kindOfInt), dimension(:), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt) :: nb_values + subroutine grib_set_int_array(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + integer(kind=kindOfInt), dimension(:), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: nb_values - nb_values = size(value) - iret=grib_f_set_int_array ( gribid, key, value, nb_values ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'set',key) - endif + nb_values = size(value) + iret = grib_f_set_int_array(gribid, key, value, nb_values) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'set', key) + end if end subroutine grib_set_int_array !> Set the integers values for an array key in a grib message. @@ -2477,25 +2473,25 @@ !> @param key key name !> @param value integer(4) array value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_set_long_array ( gribid, key, value, status) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - integer(kind=kindOfLong), dimension(:), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine grib_set_long_array(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + integer(kind=kindOfLong), dimension(:), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret integer(kind=kindOfInt) :: nb_values nb_values = size(value) - iret=grib_f_set_long_array ( gribid, key, value, nb_values ) + iret = grib_f_set_long_array(gribid, key, value, nb_values) if (iret /= 0) then call grib_f_write_on_fail(gribid) - endif + end if if (present(status)) then status = iret else - call grib_check(iret,'set',key) - endif - + call grib_check(iret, 'set', key) + end if + end subroutine grib_set_long_array !> Set the array of bytes (character) for a key in a grib message. @@ -2509,30 +2505,30 @@ !> @param value character(len=1) array of byte values !> @param length (optional) output: number of values written !> @param status (optional) GRIB_SUCCESS if OK, integer value on error - subroutine grib_set_byte_array ( gribid, key, value, length, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - character(len=1), dimension(:), intent(in) :: value - integer(kind=kindOfInt), optional, intent(out) :: length - integer(kind=kindOfInt), optional, intent(out) :: status + subroutine grib_set_byte_array(gribid, key, value, length, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + character(len=1), dimension(:), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: length + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret integer(kind=kindOfInt) :: nb_values character :: bytes(size(value)) - nb_values = size (value) - bytes = transfer (value, bytes) - iret = grib_f_set_byte_array ( gribid, key, bytes, nb_values ) + nb_values = size(value) + bytes = transfer(value, bytes) + iret = grib_f_set_byte_array(gribid, key, bytes, nb_values) if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif + call grib_f_write_on_fail(gribid) + end if if (present(length)) then - length = nb_values + length = nb_values end if if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'set',key) - endif + call grib_check(iret, 'set', key) + end if end subroutine grib_set_byte_array !> Set the real(4) values for an array key in a grib message. @@ -2545,24 +2541,24 @@ !> @param key key name !> @param value real(4) array value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_set_real4_array ( gribid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - real(kind = kindOfFloat), dimension(:), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt) :: nb_values + subroutine grib_set_real4_array(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + real(kind=kindOfFloat), dimension(:), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: nb_values - nb_values = size(value) - iret=grib_f_set_real4_array ( gribid, key, value, nb_values ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'set',key) - endif + nb_values = size(value) + iret = grib_f_set_real4_array(gribid, key, value, nb_values) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'set', key) + end if end subroutine grib_set_real4_array !> Set the real(8) values for an array key in a grib message. @@ -2575,24 +2571,24 @@ !> @param key key name !> @param value real(8) array value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_set_real8_array ( gribid, key, value, status) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - real(kind = kindOfDouble), dimension(:), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt) :: nb_values + subroutine grib_set_real8_array(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + real(kind=kindOfDouble), dimension(:), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: nb_values - nb_values = size(value) - iret=grib_f_set_real8_array ( gribid, key, value, nb_values ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'set',key) - endif + nb_values = size(value) + iret = grib_f_set_real8_array(gribid, key, value, nb_values) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'set', key) + end if end subroutine grib_set_real8_array !> Set the real(4) values for an array key in a grib message, forces the set if the key is read-only. @@ -2606,24 +2602,24 @@ !> @param key key name !> @param value real(4) array value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_set_force_real4_array ( gribid, key, value, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - real(kind = kindOfFloat), dimension(:), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt) :: nb_values + subroutine grib_set_force_real4_array(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + real(kind=kindOfFloat), dimension(:), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: nb_values - nb_values = size(value) - iret=grib_f_set_force_real4_array ( gribid, key, value, nb_values ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'set',key) - endif + nb_values = size(value) + iret = grib_f_set_force_real4_array(gribid, key, value, nb_values) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'set', key) + end if end subroutine grib_set_force_real4_array !> Set the real(8) values for an array key in a grib message, forces the set if the key is read-only. @@ -2637,24 +2633,24 @@ !> @param key key name !> @param value real(8) array value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_set_force_real8_array ( gribid, key, value, status) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - real(kind = kindOfDouble), dimension(:), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt) :: nb_values + subroutine grib_set_force_real8_array(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + real(kind=kindOfDouble), dimension(:), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: nb_values - nb_values = size(value) - iret=grib_f_set_force_real8_array ( gribid, key, value, nb_values ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'set',key) - endif + nb_values = size(value) + iret = grib_f_set_force_real8_array(gribid, key, value, nb_values) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'set', key) + end if end subroutine grib_set_force_real8_array !> Set the character value for a string key in a grib message. @@ -2667,22 +2663,22 @@ !> @param key key name !> @param value character value !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_set_string ( gribid, key, value , status) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=*), intent(in) :: key - character(len=*), intent(in) :: value - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_set_string(gribid, key, value, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=*), intent(in) :: key + character(len=*), intent(in) :: value + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_set_string ( gribid, key, value ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'set',key) - endif + iret = grib_f_set_string(gribid, key, value) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'set', key) + end if end subroutine grib_set_string !> Get the size of a coded message. @@ -2694,26 +2690,26 @@ !> @param gribid id of the grib loaded in memory !> @param nbytes size in bytes of the message !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_message_size_int ( gribid, nbytes, status) - integer(kind=kindOfInt), intent(in) :: gribid - integer(kind=kindOfInt), intent(out) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfSize_t) :: ibytes + subroutine grib_get_message_size_int(gribid, nbytes, status) + integer(kind=kindOfInt), intent(in) :: gribid + integer(kind=kindOfInt), intent(out) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfSize_t) :: ibytes - iret = grib_f_get_message_size ( gribid, ibytes ) - if (iret == GRIB_SUCCESS .and. ibytes > huge(nbytes)) then - iret = GRIB_MESSAGE_TOO_LARGE - endif - nbytes = ibytes - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'get_message_size','') - endif + iret = grib_f_get_message_size(gribid, ibytes) + if (iret == GRIB_SUCCESS .and. ibytes > huge(nbytes)) then + iret = GRIB_MESSAGE_TOO_LARGE + end if + nbytes = ibytes + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'get_message_size', '') + end if end subroutine grib_get_message_size_int !> Get the size of a coded message. @@ -2725,21 +2721,21 @@ !> @param gribid id of the grib loaded in memory !> @param nbytes size in bytes of the message !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_get_message_size_size_t ( gribid, nbytes, status) - integer(kind=kindOfInt), intent(in) :: gribid - integer(kind=kindOfSize_t), intent(out) :: nbytes - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_get_message_size_size_t(gribid, nbytes, status) + integer(kind=kindOfInt), intent(in) :: gribid + integer(kind=kindOfSize_t), intent(out) :: nbytes + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_get_message_size ( gribid, nbytes ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'get_message_size','') - endif + iret = grib_f_get_message_size(gribid, nbytes) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'get_message_size', '') + end if end subroutine grib_get_message_size_size_t !> Copy the coded message into an array. @@ -2751,23 +2747,23 @@ !> @param gribid id of the grib loaded in memory !> @param message array containing the coded message to be copied !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_copy_message ( gribid, message, status ) - integer(kind=kindOfInt), intent(in) :: gribid - character(len=1), dimension(:), intent(out) :: message - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfSize_t) :: size_bytes + subroutine grib_copy_message(gribid, message, status) + integer(kind=kindOfInt), intent(in) :: gribid + character(len=1), dimension(:), intent(out) :: message + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfSize_t) :: size_bytes - size_bytes = size(message,dim=1) - iret=grib_f_copy_message ( gribid, message, size_bytes ) - if (iret /= 0) then - call grib_f_write_on_fail(gribid) - endif - if (present(status)) then - status = iret - else - call grib_check(iret,'copy_message','') - endif + size_bytes = size(message, dim=1) + iret = grib_f_copy_message(gribid, message, size_bytes) + if (iret /= 0) then + call grib_f_write_on_fail(gribid) + end if + if (present(status)) then + status = iret + else + call grib_check(iret, 'copy_message', '') + end if end subroutine grib_copy_message !> Write the coded message to a file. @@ -2779,19 +2775,19 @@ !> @param gribid id of the grib loaded in memory !> @param ifile file id of a file opened with \ref grib_open_file !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_write ( gribid, ifile , status) - integer(kind=kindOfInt), intent(in) :: gribid - integer(kind=kindOfInt), intent(in) :: ifile - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine grib_write(gribid, ifile, status) + integer(kind=kindOfInt), intent(in) :: gribid + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: iret - iret = grib_f_write( gribid, ifile ) - if (present(status)) then - status = iret - else - call grib_check(iret,'write','') - endif + iret = grib_f_write(gribid, ifile) + if (present(status)) then + status = iret + else + call grib_check(iret, 'write', '') + end if end subroutine grib_write !> Write a multi field message to a file. @@ -2803,19 +2799,19 @@ !> @param multigribid id of the multi field grib loaded in memory !> @param ifile file id of a file opened with \ref grib_open_file !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_multi_write ( multigribid, ifile , status) - integer(kind=kindOfInt), intent(in) :: multigribid - integer(kind=kindOfInt), intent(in) :: ifile - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine grib_multi_write(multigribid, ifile, status) + integer(kind=kindOfInt), intent(in) :: multigribid + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret - iret = grib_f_multi_write( multigribid, ifile ) + iret = grib_f_multi_write(multigribid, ifile) if (present(status)) then status = iret else - call grib_check(iret,'grib_multi_write','') - endif - end subroutine grib_multi_write + call grib_check(iret, 'grib_multi_write', '') + end if + end subroutine grib_multi_write !> Append a single field grib message to a multi field grib message. !> Only the sections with section number greather or equal "startsection" are copied from the input single message to the multi field output grib. @@ -2824,24 +2820,24 @@ !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref grib_get_error_string. !> - !> @param ingribid id of the input single grib + !> @param ingribid id of the input single grib !> @param startsection starting from startsection (included) all the sections are copied from the input single grib to the output multi grib !> @param multigribid id of the output multi field grib !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_multi_append ( ingribid, startsection, multigribid , status) - integer(kind=kindOfInt), intent(in) :: ingribid - integer(kind=kindOfInt), intent(in) :: startsection - integer(kind=kindOfInt), intent(out) :: multigribid - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine grib_multi_append(ingribid, startsection, multigribid, status) + integer(kind=kindOfInt), intent(in) :: ingribid + integer(kind=kindOfInt), intent(in) :: startsection + integer(kind=kindOfInt), intent(out) :: multigribid + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret - iret = grib_f_multi_append( ingribid, startsection, multigribid ) + iret = grib_f_multi_append(ingribid, startsection, multigribid) if (present(status)) then status = iret else - call grib_check(iret,'grib_multi_append','') - endif + call grib_check(iret, 'grib_multi_append', '') + end if end subroutine grib_multi_append !> Find the nearest point of a set of points whose latitudes and longitudes @@ -2861,34 +2857,34 @@ !> @param indexes output integer(4) array of the zero based indexes !> @param values output real(8) array of the values !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_find_nearest_multiple(gribid,is_lsm, & - inlats,inlons,outlats,outlons, & - values,distances, indexes,status) - integer(kind=kindOfInt), intent(in) :: gribid - logical, intent(in) :: is_lsm - real(kind = kindOfDouble), dimension(:), intent(in) :: inlats - real(kind = kindOfDouble), dimension(:), intent(in) :: inlons - real(kind = kindOfDouble), dimension(:), intent(out) :: outlats - real(kind = kindOfDouble), dimension(:), intent(out) :: outlons - real(kind = kindOfDouble), dimension(:), intent(out) :: distances - real(kind = kindOfDouble), dimension(:), intent(out) :: values - integer(kind = kindOfInt), dimension(:), intent(out) :: indexes - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine grib_find_nearest_multiple(gribid, is_lsm, & + inlats, inlons, outlats, outlons, & + values, distances, indexes, status) + integer(kind=kindOfInt), intent(in) :: gribid + logical, intent(in) :: is_lsm + real(kind=kindOfDouble), dimension(:), intent(in) :: inlats + real(kind=kindOfDouble), dimension(:), intent(in) :: inlons + real(kind=kindOfDouble), dimension(:), intent(out) :: outlats + real(kind=kindOfDouble), dimension(:), intent(out) :: outlons + real(kind=kindOfDouble), dimension(:), intent(out) :: distances + real(kind=kindOfDouble), dimension(:), intent(out) :: values + integer(kind=kindOfInt), dimension(:), intent(out) :: indexes + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret integer(kind=kindOfInt) :: npoints integer(kind=kindOfInt) :: intis_lsm intis_lsm = 0 - if (is_lsm) intis_lsm=1 - npoints=size(inlats) - iret=grib_f_find_nearest_multiple(gribid,intis_lsm,inlats,inlons,outlats,outlons, & - values,distances,indexes,npoints) + if (is_lsm) intis_lsm = 1 + npoints = size(inlats) + iret = grib_f_find_nearest_multiple(gribid, intis_lsm, inlats, inlons, outlats, outlons, & + values, distances, indexes, npoints) if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'grib_find_nearest_multiple','') - endif + call grib_check(iret, 'grib_find_nearest_multiple', '') + end if end subroutine grib_find_nearest_multiple !> Find the nearest point of a given latitude/longitude point. @@ -2907,31 +2903,31 @@ !> @param kindex zero based index !> @param value value of the field in the nearest point !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_find_nearest_single(gribid, is_lsm, & - inlat, inlon, outlat, outlon, & - value, distance, kindex, status) - integer(kind=kindOfInt), intent(in) :: gribid - logical, intent(in) :: is_lsm - real(kind = kindOfDouble), intent(in) :: inlat - real(kind = kindOfDouble), intent(in) :: inlon - real(kind = kindOfDouble), intent(out) :: outlat - real(kind = kindOfDouble), intent(out) :: outlon - real(kind = kindOfDouble), intent(out) :: distance - real(kind = kindOfDouble), intent(out) :: value - integer(kind = kindOfInt), intent(out) :: kindex - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine grib_find_nearest_single(gribid, is_lsm, & + inlat, inlon, outlat, outlon, & + value, distance, kindex, status) + integer(kind=kindOfInt), intent(in) :: gribid + logical, intent(in) :: is_lsm + real(kind=kindOfDouble), intent(in) :: inlat + real(kind=kindOfDouble), intent(in) :: inlon + real(kind=kindOfDouble), intent(out) :: outlat + real(kind=kindOfDouble), intent(out) :: outlon + real(kind=kindOfDouble), intent(out) :: distance + real(kind=kindOfDouble), intent(out) :: value + integer(kind=kindOfInt), intent(out) :: kindex + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt) :: intis_lsm =0 + integer(kind=kindOfInt) :: intis_lsm = 0 - if (is_lsm) intis_lsm=1 - iret=grib_f_find_nearest_single(gribid,intis_lsm,inlat,inlon,outlat,outlon, & - value,distance,kindex) + if (is_lsm) intis_lsm = 1 + iret = grib_f_find_nearest_single(gribid, intis_lsm, inlat, inlon, outlat, outlon, & + value, distance, kindex) if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'grib_find_nearest_single','') - endif + call grib_check(iret, 'grib_find_nearest_single', '') + end if end subroutine grib_find_nearest_single !> Find the 4 nearest points of a latitude longitude point. @@ -2950,32 +2946,32 @@ !> @param kindex zero based index !> @param value value of the field in the nearest point !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_find_nearest_four_single(gribid,is_lsm, & - inlat,inlon,outlat,outlon, & - value,distance, kindex,status) - integer(kind=kindOfInt), intent(in) :: gribid - logical, intent(in) :: is_lsm - real(kind = kindOfDouble), intent(in) :: inlat - real(kind = kindOfDouble), intent(in) :: inlon - real(kind = kindOfDouble), dimension(4), intent(out) :: outlat - real(kind = kindOfDouble), dimension(4), intent(out) :: outlon - real(kind = kindOfDouble), dimension(4), intent(out) :: distance - real(kind = kindOfDouble), dimension(4), intent(out) :: value - integer(kind = kindOfInt), dimension(4), intent(out) :: kindex - integer(kind=kindOfInt),optional, intent(out) :: status + subroutine grib_find_nearest_four_single(gribid, is_lsm, & + inlat, inlon, outlat, outlon, & + value, distance, kindex, status) + integer(kind=kindOfInt), intent(in) :: gribid + logical, intent(in) :: is_lsm + real(kind=kindOfDouble), intent(in) :: inlat + real(kind=kindOfDouble), intent(in) :: inlon + real(kind=kindOfDouble), dimension(4), intent(out) :: outlat + real(kind=kindOfDouble), dimension(4), intent(out) :: outlon + real(kind=kindOfDouble), dimension(4), intent(out) :: distance + real(kind=kindOfDouble), dimension(4), intent(out) :: value + integer(kind=kindOfInt), dimension(4), intent(out) :: kindex + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret - integer(kind=kindOfInt) :: intis_lsm =0 + integer(kind=kindOfInt) :: intis_lsm = 0 - if (is_lsm) intis_lsm=1 + if (is_lsm) intis_lsm = 1 - iret=grib_f_find_nearest_four_single(gribid,intis_lsm,inlat,inlon,outlat,outlon, & - value,distance,kindex) + iret = grib_f_find_nearest_four_single(gribid, intis_lsm, inlat, inlon, outlat, outlon, & + value, distance, kindex) if (present(status)) then - status = iret + status = iret else - call grib_check(iret,'grib_find_nearest_four_single','') - endif + call grib_check(iret, 'grib_find_nearest_four_single', '') + end if end subroutine grib_find_nearest_four_single !> Turn on the support for multiple fields in a single message. @@ -2985,16 +2981,16 @@ !> gathered with @ref grib_get_error_string. !> !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_multi_support_on (status ) - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_multi_support_on(status) + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret = grib_f_multi_support_on ( ) - if (present(status)) then - status = iret - else - call grib_check(iret,'grib_multi_support_on','') - endif + iret = grib_f_multi_support_on() + if (present(status)) then + status = iret + else + call grib_check(iret, 'grib_multi_support_on', '') + end if end subroutine grib_multi_support_on !> Turn off the support for multiple fields in a single message. @@ -3004,16 +3000,16 @@ !> gathered with @ref grib_get_error_string. !> !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_multi_support_off ( status ) - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_multi_support_off(status) + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret = grib_f_multi_support_off ( ) - if (present(status)) then - status = iret - else - call grib_check(iret,'grib_multi_support_off','') - endif + iret = grib_f_multi_support_off() + if (present(status)) then + status = iret + else + call grib_check(iret, 'grib_multi_support_off', '') + end if end subroutine grib_multi_support_off !> Turn on the compatibility mode with gribex. @@ -3023,16 +3019,16 @@ !> gathered with @ref grib_get_error_string. !> !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_gribex_mode_on (status ) - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_gribex_mode_on(status) + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_gribex_mode_on() - if (present(status)) then - status = iret - else - call grib_check(iret,'grib_gribex_mode_on','') - endif + iret = grib_f_gribex_mode_on() + if (present(status)) then + status = iret + else + call grib_check(iret, 'grib_gribex_mode_on', '') + end if end subroutine grib_gribex_mode_on @@ -3043,16 +3039,16 @@ !> gathered with @ref grib_get_error_string. !> !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_gribex_mode_off (status ) - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_gribex_mode_off(status) + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_gribex_mode_off() - if (present(status)) then - status = iret - else - call grib_check(iret,'grib_gribex_mode_off','') - endif + iret = grib_f_gribex_mode_off() + if (present(status)) then + status = iret + else + call grib_check(iret, 'grib_gribex_mode_off', '') + end if end subroutine grib_gribex_mode_off @@ -3069,17 +3065,17 @@ !> !> @param iterid keys iterator id !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_skip_computed ( iterid , status) - integer(kind=kindOfInt), intent(in) :: iterid - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_skip_computed(iterid, status) + integer(kind=kindOfInt), intent(in) :: iterid + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret = grib_f_skip_computed ( iterid ) - if (present(status)) then - status = iret - else - call grib_check(iret,'skip_computed','') - endif + iret = grib_f_skip_computed(iterid) + if (present(status)) then + status = iret + else + call grib_check(iret, 'skip_computed', '') + end if end subroutine grib_skip_computed !> Skip the coded keys in a keys iterator. @@ -3094,20 +3090,19 @@ !> !> @param iterid keys iterator id !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_skip_coded ( iterid, status ) - integer(kind=kindOfInt), intent(in) :: iterid - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_skip_coded(iterid, status) + integer(kind=kindOfInt), intent(in) :: iterid + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret = grib_f_skip_coded ( iterid ) - if (present(status)) then - status = iret - else - call grib_check(iret,'skip_coded','') - endif + iret = grib_f_skip_coded(iterid) + if (present(status)) then + status = iret + else + call grib_check(iret, 'skip_coded', '') + end if end subroutine grib_skip_coded - !> Skip the duplicated keys in a keys iterator. !> !> In case of error, if the status parameter (optional) is not given, the program will @@ -3118,20 +3113,19 @@ !> !> @param iterid keys iterator id !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_skip_duplicates ( iterid, status ) - integer(kind=kindOfInt), intent(in) :: iterid - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_skip_duplicates(iterid, status) + integer(kind=kindOfInt), intent(in) :: iterid + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret = grib_f_skip_duplicates ( iterid ) - if (present(status)) then - status = iret - else - call grib_check(iret,'skip_duplicates','') - endif + iret = grib_f_skip_duplicates(iterid) + if (present(status)) then + status = iret + else + call grib_check(iret, 'skip_duplicates', '') + end if end subroutine grib_skip_duplicates - !> Skip the read_only keys in a keys iterator. !> !> Read only keys cannot be set. @@ -3140,17 +3134,17 @@ !> !> @param iterid keys iterator id !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_skip_read_only ( iterid, status ) - integer(kind=kindOfInt), intent(in) :: iterid - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_skip_read_only(iterid, status) + integer(kind=kindOfInt), intent(in) :: iterid + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret = grib_f_skip_read_only ( iterid ) - if (present(status)) then - status = iret - else - call grib_check(iret,'skip_read_only','') - endif + iret = grib_f_skip_read_only(iterid) + if (present(status)) then + status = iret + else + call grib_check(iret, 'skip_read_only', '') + end if end subroutine grib_skip_read_only !> Set the definition path @@ -3161,17 +3155,17 @@ !> !> @param path definitions path !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_set_definitions_path ( path, status ) - character(len=*), intent(in) :: path - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_set_definitions_path(path, status) + character(len=*), intent(in) :: path + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_set_definitions_path ( path ) - if (present(status)) then - status = iret - else - call grib_check(iret,'set_definitions_path','('//path//')') - endif + iret = grib_f_set_definitions_path(path) + if (present(status)) then + status = iret + else + call grib_check(iret, 'set_definitions_path', '('//path//')') + end if end subroutine grib_set_definitions_path !> Set the samples path @@ -3182,17 +3176,17 @@ !> !> @param path samples path !> @param status GRIB_SUCCESS if OK, integer value on error - subroutine grib_set_samples_path ( path, status ) - character(len=*), intent(in) :: path - integer(kind=kindOfInt),optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + subroutine grib_set_samples_path(path, status) + character(len=*), intent(in) :: path + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret - iret=grib_f_set_samples_path ( path ) - if (present(status)) then - status = iret - else - call grib_check(iret,'set_samples_path','('//path//')') - endif + iret = grib_f_set_samples_path(path) + if (present(status)) then + status = iret + else + call grib_check(iret, 'set_samples_path', '('//path//')') + end if end subroutine grib_set_samples_path end module grib_api diff --git a/fortran/grib_typeSizes.f90 b/fortran/grib_typeSizes.f90 index 0a55f2e47..1379c4640 100644 --- a/fortran/grib_typeSizes.f90 +++ b/fortran/grib_typeSizes.f90 @@ -1,11 +1,11 @@ ! Description: -! Provide named kind parameters for use in declarations of real and integer +! Provide named kind parameters for use in declarations of real and integer ! variables with specific byte sizes (i.e. one, two, four, and eight byte ! integers; four and eight byte reals). The parameters can then be used ! in (KIND = XX) modifiers in declarations. -! A single function (byteSizesOK()) is provided to ensure that the selected +! A single function (byteSizesOK()) is provided to ensure that the selected ! kind parameters are correct. -! +! ! Input Parameters: ! None. ! @@ -19,13 +19,13 @@ ! Robert Pincus ! Cooperative Institue for Meteorological Satellite Studies ! University of Wisconsin - Madison -! 1225 W. Dayton St. +! 1225 W. Dayton St. ! Madison, Wisconsin 53706 ! Robert.Pincus@ssec.wisc.edu ! ! Design Notes: ! Fortran 90 doesn't allow one to check the number of bytes in a real variable; -! we check only that four byte and eight byte reals have different kind parameters. +! we check only that four byte and eight byte reals have different kind parameters. ! module grib_typeSizes implicit none @@ -33,21 +33,21 @@ module grib_typeSizes integer, parameter :: FourByteInt = selected_int_kind(9), & EightByteInt = selected_int_kind(18) - integer, parameter :: FourByteReal = selected_real_kind(P = 6, R = 37), & - EightByteReal = selected_real_kind(P = 13, R = 307) + integer, parameter :: FourByteReal = selected_real_kind(P=6, R=37), & + EightByteReal = selected_real_kind(P=13, R=307) contains logical function byteSizesOK() - ! Users may call this function once to ensure that the kind parameters - ! the module defines are available with the current compiler. - ! We can't ensure that the two REAL kinds are actually four and - ! eight bytes long, but we can ensure that they are distinct. - ! Early Fortran 90 compilers would sometimes report incorrect results for - ! the bit_size intrinsic, but I haven't seen this in a long time. + ! Users may call this function once to ensure that the kind parameters + ! the module defines are available with the current compiler. + ! We can't ensure that the two REAL kinds are actually four and + ! eight bytes long, but we can ensure that they are distinct. + ! Early Fortran 90 compilers would sometimes report incorrect results for + ! the bit_size intrinsic, but I haven't seen this in a long time. ! Local variables - integer (kind = FourByteInt) :: Four + integer(kind=FourByteInt) :: Four - if (bit_size(Four) == 32 .and. & + if (bit_size(Four) == 32 .and. & FourByteReal > 0 .and. EightByteReal > 0 .and. & FourByteReal /= EightByteReal) then byteSizesOK = .true. diff --git a/fortran/grib_types.f90 b/fortran/grib_types.f90 index d897deaa0..e4e95649e 100644 --- a/fortran/grib_types.f90 +++ b/fortran/grib_types.f90 @@ -2,7 +2,7 @@ ! ! This software is licensed under the terms of the Apache Licence Version 2.0 ! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -! +! ! In applying this licence, ECMWF does not waive the privileges and immunities granted to it by ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. @@ -12,25 +12,25 @@ integer function kind_of_size_t() integer(8), dimension(2) :: x8 = (/1, 2/) character(len=1) :: ret - kind_of_size_t=-1 + kind_of_size_t = -1 - call check_size_t(x2(1),x2(2),ret) + call check_size_t(x2(1), x2(2), ret) if (ret == 't') then - kind_of_size_t=2 - return - endif + kind_of_size_t = 2 + return + end if - call check_size_t(x4(1),x4(2),ret) + call check_size_t(x4(1), x4(2), ret) if (ret == 't') then - kind_of_size_t=4 - return - endif + kind_of_size_t = 4 + return + end if - call check_size_t(x8(1),x8(2),ret) + call check_size_t(x8(1), x8(2), ret) if (ret == 't') then - kind_of_size_t=8 - return - endif + kind_of_size_t = 8 + return + end if end function kind_of_size_t @@ -40,25 +40,25 @@ integer function kind_of_long() integer(8), dimension(2) :: x8 = (/1, 2/) character(len=1) :: ret - kind_of_long=-1 + kind_of_long = -1 - call check_long(x2(1),x2(2),ret) + call check_long(x2(1), x2(2), ret) if (ret == 't') then - kind_of_long=2 - return - endif + kind_of_long = 2 + return + end if - call check_long(x4(1),x4(2),ret) + call check_long(x4(1), x4(2), ret) if (ret == 't') then - kind_of_long=4 - return - endif + kind_of_long = 4 + return + end if - call check_long(x8(1),x8(2),ret) + call check_long(x8(1), x8(2), ret) if (ret == 't') then - kind_of_long=8 - return - endif + kind_of_long = 8 + return + end if end function kind_of_long @@ -68,25 +68,25 @@ integer function kind_of_int() integer(8), dimension(2) :: x8 = (/1, 2/) character(len=1) :: ret - kind_of_int=-1 + kind_of_int = -1 - call check_int(x2(1),x2(2),ret) + call check_int(x2(1), x2(2), ret) if (ret == 't') then - kind_of_int=2 - return - endif + kind_of_int = 2 + return + end if - call check_int(x4(1),x4(2),ret) + call check_int(x4(1), x4(2), ret) if (ret == 't') then - kind_of_int=4 - return - endif + kind_of_int = 4 + return + end if - call check_int(x8(1),x8(2),ret) + call check_int(x8(1), x8(2), ret) if (ret == 't') then - kind_of_int=8 - return - endif + kind_of_int = 8 + return + end if end function kind_of_int @@ -95,19 +95,19 @@ integer function kind_of_float() real(8), dimension(2) :: x8 = (/1., 2./) character(len=1) :: ret - kind_of_float=-1 + kind_of_float = -1 - call check_float(x4(1),x4(2),ret) + call check_float(x4(1), x4(2), ret) if (ret == 't') then - kind_of_float=4 - return - endif + kind_of_float = 4 + return + end if - call check_float(x8(1),x8(2),ret) + call check_float(x8(1), x8(2), ret) if (ret == 't') then - kind_of_float=8 - return - endif + kind_of_float = 8 + return + end if end function kind_of_float @@ -116,19 +116,19 @@ integer function kind_of_double() real(8), dimension(2) :: real8 = (/1., 2./) character(len=1) :: ret - kind_of_double=-1 + kind_of_double = -1 - call check_double(real4(1),real4(2),ret) + call check_double(real4(1), real4(2), ret) if (ret == 't') then - kind_of_double=4 - return - endif + kind_of_double = 4 + return + end if - call check_double(real8(1),real8(2),ret) + call check_double(real8(1), real8(2), ret) if (ret == 't') then - kind_of_double=8 - return - endif + kind_of_double = 8 + return + end if end function kind_of_double @@ -140,22 +140,22 @@ program kind_h real(kind=4), dimension(2) :: r4 real(kind=8), dimension(2) :: r8 - print *,"integer,public,parameter :: kindOfInt=",kind_of_int() - print *,"integer,public,parameter :: kindOfLong=",kind_of_long() - print *,"integer,public,parameter :: kindOfSize_t=",kind_of_size_t() - print *,"integer,public,parameter :: kindOfSize=",kind_of_size_t() - print *,"integer,public,parameter :: kindOfDouble=",kind_of_double() - print *,"integer,public,parameter :: kindOfFloat=",kind_of_float() - call f_sizeof(i(1),i(2),size) - print *,"integer,public,parameter :: sizeOfInteger=",size - call f_sizeof(i2(1),i2(2),size) - print *,"integer,public,parameter :: sizeOfInteger2=",size - call f_sizeof(i4(1),i4(2),size) - print *,"integer,public,parameter :: sizeOfInteger4=",size - call f_sizeof(r4(1),r4(2),size) - print *,"integer,public,parameter :: sizeOfReal4=",size - call f_sizeof(r8(1),r8(2),size) - print *,"integer,public,parameter :: sizeOfReal8=",size + print *, "integer,public,parameter :: kindOfInt=", kind_of_int() + print *, "integer,public,parameter :: kindOfLong=", kind_of_long() + print *, "integer,public,parameter :: kindOfSize_t=", kind_of_size_t() + print *, "integer,public,parameter :: kindOfSize=", kind_of_size_t() + print *, "integer,public,parameter :: kindOfDouble=", kind_of_double() + print *, "integer,public,parameter :: kindOfFloat=", kind_of_float() + call f_sizeof(i(1), i(2), size) + print *, "integer,public,parameter :: sizeOfInteger=", size + call f_sizeof(i2(1), i2(2), size) + print *, "integer,public,parameter :: sizeOfInteger2=", size + call f_sizeof(i4(1), i4(2), size) + print *, "integer,public,parameter :: sizeOfInteger4=", size + call f_sizeof(r4(1), r4(2), size) + print *, "integer,public,parameter :: sizeOfReal4=", size + call f_sizeof(r8(1), r8(2), size) + print *, "integer,public,parameter :: sizeOfReal8=", size end program kind_h diff --git a/fortran/same_int_long.f90 b/fortran/same_int_long.f90 index 15603a0c5..dbb0f3b57 100644 --- a/fortran/same_int_long.f90 +++ b/fortran/same_int_long.f90 @@ -2,7 +2,7 @@ ! ! This software is licensed under the terms of the Apache Licence Version 2.0 ! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -! +! ! In applying this licence, ECMWF does not waive the privileges and immunities granted to it by ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. @@ -12,25 +12,25 @@ integer function kind_of_long() integer(8), dimension(2) :: x8 = (/1, 2/) character(len=1) :: ret - kind_of_long=-1 + kind_of_long = -1 - call check_long(x2(1),x2(2),ret) + call check_long(x2(1), x2(2), ret) if (ret == 't') then - kind_of_long=2 - return - endif + kind_of_long = 2 + return + end if - call check_long(x4(1),x4(2),ret) + call check_long(x4(1), x4(2), ret) if (ret == 't') then - kind_of_long=4 - return - endif + kind_of_long = 4 + return + end if - call check_long(x8(1),x8(2),ret) + call check_long(x8(1), x8(2), ret) if (ret == 't') then - kind_of_long=8 - return - endif + kind_of_long = 8 + return + end if end function kind_of_long @@ -40,37 +40,37 @@ integer function kind_of_int() integer(8), dimension(2) :: x8 = (/1, 2/) character(len=1) :: ret - kind_of_int=-1 + kind_of_int = -1 - call check_int(x2(1),x2(2),ret) + call check_int(x2(1), x2(2), ret) if (ret == 't') then - kind_of_int=2 - return - endif + kind_of_int = 2 + return + end if - call check_int(x4(1),x4(2),ret) + call check_int(x4(1), x4(2), ret) if (ret == 't') then - kind_of_int=4 - return - endif + kind_of_int = 4 + return + end if - call check_int(x8(1),x8(2),ret) + call check_int(x8(1), x8(2), ret) if (ret == 't') then - kind_of_int=8 - return - endif + kind_of_int = 8 + return + end if end function kind_of_int program same_int_long - integer ki,kl + integer ki, kl - ki=kind_of_int() - kl=kind_of_long() + ki = kind_of_int() + kl = kind_of_long() if (ki /= kl) then - write (*,'(i1)') 0 + write (*, '(i1)') 0 else - write (*,'(i1)') 1 - endif + write (*, '(i1)') 1 + end if end program same_int_long diff --git a/fortran/same_int_size_t.f90 b/fortran/same_int_size_t.f90 index 049be5034..563ac9b5e 100644 --- a/fortran/same_int_size_t.f90 +++ b/fortran/same_int_size_t.f90 @@ -2,7 +2,7 @@ ! ! This software is licensed under the terms of the Apache Licence Version 2.0 ! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -! +! ! In applying this licence, ECMWF does not waive the privileges and immunities granted to it by ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. @@ -12,25 +12,25 @@ integer function kind_of_size_t() integer(8), dimension(2) :: x8 = (/1, 2/) character(len=1) :: ret - kind_of_size_t=-1 + kind_of_size_t = -1 - call check_size_t(x2(1),x2(2),ret) + call check_size_t(x2(1), x2(2), ret) if (ret == 't') then - kind_of_size_t=2 - return - endif + kind_of_size_t = 2 + return + end if - call check_size_t(x4(1),x4(2),ret) + call check_size_t(x4(1), x4(2), ret) if (ret == 't') then - kind_of_size_t=4 - return - endif + kind_of_size_t = 4 + return + end if - call check_size_t(x8(1),x8(2),ret) + call check_size_t(x8(1), x8(2), ret) if (ret == 't') then - kind_of_size_t=8 - return - endif + kind_of_size_t = 8 + return + end if end function kind_of_size_t @@ -40,37 +40,37 @@ integer function kind_of_int() integer(8), dimension(2) :: x8 = (/1, 2/) character(len=1) :: ret - kind_of_int=-1 + kind_of_int = -1 - call check_int(x2(1),x2(2),ret) + call check_int(x2(1), x2(2), ret) if (ret == 't') then - kind_of_int=2 - return - endif + kind_of_int = 2 + return + end if - call check_int(x4(1),x4(2),ret) + call check_int(x4(1), x4(2), ret) if (ret == 't') then - kind_of_int=4 - return - endif + kind_of_int = 4 + return + end if - call check_int(x8(1),x8(2),ret) + call check_int(x8(1), x8(2), ret) if (ret == 't') then - kind_of_int=8 - return - endif + kind_of_int = 8 + return + end if end function kind_of_int program same_int_size_t - integer ki,kl + integer ki, kl - ki=kind_of_int() - kl=kind_of_size_t() + ki = kind_of_int() + kl = kind_of_size_t() if (ki /= kl) then - write (*,'(i1)') 0 + write (*, '(i1)') 0 else - write (*,'(i1)') 1 - endif + write (*, '(i1)') 1 + end if end program same_int_size_t From b158c067aca0dab8785aef67baeb4493b009dae9 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 15 Feb 2021 14:44:27 +0000 Subject: [PATCH 310/683] Definitions: formatting/comments --- definitions/grib2/template.5.4.def | 2 +- definitions/grib2/template.7.4.def | 27 ++++++++++++--------------- 2 files changed, 13 insertions(+), 16 deletions(-) diff --git a/definitions/grib2/template.5.4.def b/definitions/grib2/template.5.4.def index 1413d60e6..a7dba6b2a 100644 --- a/definitions/grib2/template.5.4.def +++ b/definitions/grib2/template.5.4.def @@ -3,7 +3,7 @@ # TEMPLATE 5.4, Grid point data - IEEE packing # added for conversion from other packing transient bitsPerValue=0 : hidden; -transient referenceValue=0 : hidden; +transient referenceValue=0 : hidden; transient binaryScaleFactor=0 : hidden; transient decimalScaleFactor=0 : hidden; alias numberOfBits = bitsPerValue; diff --git a/definitions/grib2/template.7.4.def b/definitions/grib2/template.7.4.def index fda92a0c2..2ef305f6b 100644 --- a/definitions/grib2/template.7.4.def +++ b/definitions/grib2/template.7.4.def @@ -1,25 +1,22 @@ # (C) Copyright 2005- ECMWF. -# TEMPLATE 7.4, Grid point data - simple packing -# Octets 6-nn : Binary data values - binary string, with each -# (scaled) -# ???? data_values__binary_string_with_each +# TEMPLATE 7.4, Grid point data - IEEE floating point data -meta codedValues data_raw_packing( +meta codedValues data_raw_packing( section7Length, offsetBeforeData, offsetSection7, numberOfValues, precision - ): read_only; - -meta values data_apply_bitmap(codedValues, - bitmap, - missingValue, - binaryScaleFactor, - numberOfDataPoints, - numberOfValues) : dump; + ): read_only; + +meta values data_apply_bitmap(codedValues, + bitmap, + missingValue, + binaryScaleFactor, + numberOfDataPoints, + numberOfValues) : dump; + +alias data.packedValues = codedValues; -alias data.packedValues = codedValues; - template statistics "common/statistics_grid.def"; From 2a2f6a6d8516176a912119b4a47e2c1aeb6790f4 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 15 Feb 2021 16:12:57 +0000 Subject: [PATCH 311/683] harmonizing template components before refactoring --- definitions/grib2/template.4.parameter.def | 10 ++--- .../grib2/template.4.parameter_aerosol.def | 19 +++++----- .../grib2/template.4.parameter_aerosol_44.def | 5 ++- .../template.4.parameter_aerosol_optical.def | 10 ++--- ...ate.4.parameter_aerosol_optical_source.def | 10 ++--- .../template.4.parameter_aerosol_source.def | 19 +++++----- .../grib2/template.4.parameter_chemical.def | 24 ++++++------ ...late.4.parameter_chemical_distribution.def | 25 ++++++------ .../template.4.parameter_chemical_source.def | 24 ++++++------ .../grib2/template.4.parameter_partition.def | 24 ++++++------ .../grib2/template.4.parameter_postproc.def | 38 +++++++++---------- .../grib2/template.4.parameter_tile.def | 25 ++++++------ 12 files changed, 117 insertions(+), 116 deletions(-) diff --git a/definitions/grib2/template.4.parameter.def b/definitions/grib2/template.4.parameter.def index ed8cdbb50..07f23e868 100644 --- a/definitions/grib2/template.4.parameter.def +++ b/definitions/grib2/template.4.parameter.def @@ -16,10 +16,10 @@ unsigned[1] backgroundProcess = 255 : edition_specific; alias backgroundGeneratingProcessIdentifier=backgroundProcess; # Analysis or forecast generating processes identifier (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; +unsigned[1] generatingProcessIdentifier : dump; # Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff =missing() : edition_specific,can_be_missing; +unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; # Minutes of observational data cut-off after reference time @@ -27,10 +27,10 @@ unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missin alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; # Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; -# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; +# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) +signed[4] forecastTime : dump; diff --git a/definitions/grib2/template.4.parameter_aerosol.def b/definitions/grib2/template.4.parameter_aerosol.def index d5a59c67a..4b37fb597 100644 --- a/definitions/grib2/template.4.parameter_aerosol.def +++ b/definitions/grib2/template.4.parameter_aerosol.def @@ -1,9 +1,9 @@ # (C) Copyright 2005- ECMWF. -# Parameter category +# Parameter category codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -# Parameter number +# Parameter number codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; meta parameterUnits codetable_units(parameterNumber) : dump; meta parameterName codetable_title(parameterNumber) : dump; @@ -14,34 +14,35 @@ codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; +# Size in metres signed[1] scaleFactorOfFirstSize : dump; signed[4] scaledValueOfFirstSize :dump; signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; -# Type of generating process +# Type of generating process codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; -# Background generating process identifier +# Background generating process identifier (defined by originating centre) unsigned[1] backgroundProcess = 255 : edition_specific; alias backgroundGeneratingProcessIdentifier=backgroundProcess; -# Analysis or forecast generating processes identifier +# Analysis or forecast generating processes identifier (defined by originating centre) unsigned[1] generatingProcessIdentifier : dump; -# Hours of observational data cut-off after reference time +# Hours of observational data cut-off after reference time unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; -# Minutes of observational data cut-off after reference time +# Minutes of observational data cut-off after reference time unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; -# Indicator of unit of time range +# Indicator of unit of time range codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; -# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) +# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) signed[4] forecastTime : dump; diff --git a/definitions/grib2/template.4.parameter_aerosol_44.def b/definitions/grib2/template.4.parameter_aerosol_44.def index 5c0a1e5e3..1ec350bc1 100644 --- a/definitions/grib2/template.4.parameter_aerosol_44.def +++ b/definitions/grib2/template.4.parameter_aerosol_44.def @@ -2,8 +2,10 @@ # GRIB-530: This template is to be used by template.4.44.def ONLY +# Parameter category codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; +# Parameter number codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; meta parameterUnits codetable_units(parameterNumber) : dump; meta parameterName codetable_title(parameterNumber) : dump; @@ -14,6 +16,7 @@ codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; +# Size in metres signed[1] scaleFactorOfFirstSize : dump; signed[4] scaledValueOfFirstSize :dump; signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; @@ -43,7 +46,7 @@ alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; -# Forecast time in units defined by octet 18 +# Forecast time in units defined by previous octet # See GRIB-530: We have to make a special case for the error in WMO spec if ( new() || (section4Length - 4*NV == 45) ) { # Use the WMO standard 2 octets for the following cases: diff --git a/definitions/grib2/template.4.parameter_aerosol_optical.def b/definitions/grib2/template.4.parameter_aerosol_optical.def index ebe73ec6e..8772ae016 100644 --- a/definitions/grib2/template.4.parameter_aerosol_optical.def +++ b/definitions/grib2/template.4.parameter_aerosol_optical.def @@ -8,7 +8,7 @@ codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',m meta parameterUnits codetable_units(parameterNumber) : dump; meta parameterName codetable_title(parameterNumber) : dump; -# Aerosol type +# Atmospheric chemical or physical constitutent type codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; @@ -32,15 +32,15 @@ signed[4] scaledValueOfSecondWavelength = missing(): can_be_missing,dump; # Type of generating process codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; -# Background generating process identifier +# Background generating process identifier (defined by originating centre) unsigned[1] backgroundProcess = 255 : edition_specific; alias backgroundGeneratingProcessIdentifier=backgroundProcess; -# Analysis or forecast generating processes identifier +# Analysis or forecast generating processes identifier (defined by originating centre) unsigned[1] generatingProcessIdentifier : dump; # Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; +unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; # Minutes of observational data cut-off after reference time @@ -53,5 +53,5 @@ alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; -# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) +# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) signed[4] forecastTime : dump; diff --git a/definitions/grib2/template.4.parameter_aerosol_optical_source.def b/definitions/grib2/template.4.parameter_aerosol_optical_source.def index d18f12ed0..4ad33d9cd 100644 --- a/definitions/grib2/template.4.parameter_aerosol_optical_source.def +++ b/definitions/grib2/template.4.parameter_aerosol_optical_source.def @@ -8,7 +8,7 @@ codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',m meta parameterUnits codetable_units(parameterNumber) : dump; meta parameterName codetable_title(parameterNumber) : dump; -# Aerosol type +# Atmospheric chemical or physical constitutent type codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; # Source, sink or chemical/physical process (Code table 4.238) @@ -35,15 +35,15 @@ signed[4] scaledValueOfSecondWavelength = missing(): can_be_missing,dump; # Type of generating process codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; -# Background generating process identifier +# Background generating process identifier (defined by originating centre) unsigned[1] backgroundProcess = 255 : edition_specific; alias backgroundGeneratingProcessIdentifier=backgroundProcess; -# Analysis or forecast generating processes identifier +# Analysis or forecast generating processes identifier (defined by originating centre) unsigned[1] generatingProcessIdentifier : dump; # Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; +unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; # Minutes of observational data cut-off after reference time @@ -56,5 +56,5 @@ alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; -# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) +# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) signed[4] forecastTime : dump; diff --git a/definitions/grib2/template.4.parameter_aerosol_source.def b/definitions/grib2/template.4.parameter_aerosol_source.def index 107d08291..a3169dd79 100644 --- a/definitions/grib2/template.4.parameter_aerosol_source.def +++ b/definitions/grib2/template.4.parameter_aerosol_source.def @@ -1,9 +1,9 @@ # (C) Copyright 2005- ECMWF. -# Parameter category +# Parameter category codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -# Parameter number +# Parameter number codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; meta parameterUnits codetable_units(parameterNumber) : dump; meta parameterName codetable_title(parameterNumber) : dump; @@ -17,34 +17,35 @@ codetable[1] sourceSinkChemicalPhysicalProcess ('4.238.table',masterDir,localDir codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; +# Size in metres signed[1] scaleFactorOfFirstSize : dump; signed[4] scaledValueOfFirstSize :dump; signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; -# Type of generating process +# Type of generating process codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; -# Background generating process identifier +# Background generating process identifier (defined by originating centre) unsigned[1] backgroundProcess = 255 : edition_specific; alias backgroundGeneratingProcessIdentifier=backgroundProcess; -# Analysis or forecast generating processes identifier +# Analysis or forecast generating processes identifier (defined by originating centre) unsigned[1] generatingProcessIdentifier : dump; -# Hours of observational data cut-off after reference time +# Hours of observational data cut-off after reference time unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; -# Minutes of observational data cut-off after reference time +# Minutes of observational data cut-off after reference time unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; -# Indicator of unit of time range +# Indicator of unit of time range codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; -# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) +# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) signed[4] forecastTime : dump; diff --git a/definitions/grib2/template.4.parameter_chemical.def b/definitions/grib2/template.4.parameter_chemical.def index 6b29f1591..dc9d74364 100644 --- a/definitions/grib2/template.4.parameter_chemical.def +++ b/definitions/grib2/template.4.parameter_chemical.def @@ -1,9 +1,9 @@ # (C) Copyright 2005- ECMWF. -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir): dump; +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -# Parameter number +# Parameter number codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; meta parameterUnits codetable_units(parameterNumber) : dump; meta parameterName codetable_title(parameterNumber) : dump; @@ -12,29 +12,29 @@ meta parameterName codetable_title(parameterNumber) : dump; codetable[2] constituentType ('4.230.table',masterDir,localDir) : dump; meta constituentTypeName codetable_title(constituentType); -# Type of generating process +# Type of generating process codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; -# Background generating process identifier (defined by originating centre) +# Background generating process identifier (defined by originating centre) unsigned[1] backgroundProcess = 255 : edition_specific; alias backgroundGeneratingProcessIdentifier=backgroundProcess; -# Analysis or forecast generating processes identifier -unsigned[1] generatingProcessIdentifier : dump; +# Analysis or forecast generating processes identifier (defined by originating centre) +unsigned[1] generatingProcessIdentifier : dump; -# Hours of observational data cut-off after reference time +# Hours of observational data cut-off after reference time unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; -# Minutes of observational data cut-off after reference time +# Minutes of observational data cut-off after reference time unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; -# Forecast time in units defined by indicatorOfUnitOfTimeRange +# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) signed[4] forecastTime : dump; diff --git a/definitions/grib2/template.4.parameter_chemical_distribution.def b/definitions/grib2/template.4.parameter_chemical_distribution.def index 203b468d0..7d2b785fd 100644 --- a/definitions/grib2/template.4.parameter_chemical_distribution.def +++ b/definitions/grib2/template.4.parameter_chemical_distribution.def @@ -1,9 +1,9 @@ # (C) Copyright 2005- ECMWF. -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir): dump; +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -# Parameter number +# Parameter number codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; meta parameterUnits codetable_units(parameterNumber) : dump; meta parameterName codetable_title(parameterNumber) : dump; @@ -30,30 +30,29 @@ listOfDistributionFunctionParameter list(numberOfDistributionFunctionParameters) unsigned[4] scaledValueOfDistributionFunctionParameter = missing() : can_be_missing,dump; } -# Type of generating process +# Type of generating process codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; -# Background generating process identifier (defined by originating centre) +# Background generating process identifier (defined by originating centre) unsigned[1] backgroundProcess = 255 : edition_specific; alias backgroundGeneratingProcessIdentifier=backgroundProcess; -# Analysis or forecast generating processes identifier -# (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; +# Analysis or forecast generating processes identifier (defined by originating centre) +unsigned[1] generatingProcessIdentifier : dump; -# Hours of observational data cut-off after reference time +# Hours of observational data cut-off after reference time unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; -# Minutes of observational data cut-off after reference time +# Minutes of observational data cut-off after reference time unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; -# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) +# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) signed[4] forecastTime : dump; diff --git a/definitions/grib2/template.4.parameter_chemical_source.def b/definitions/grib2/template.4.parameter_chemical_source.def index 3b78cf330..475389c14 100644 --- a/definitions/grib2/template.4.parameter_chemical_source.def +++ b/definitions/grib2/template.4.parameter_chemical_source.def @@ -1,9 +1,9 @@ # (C) Copyright 2005- ECMWF. -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir): dump; +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -# Parameter number +# Parameter number codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; meta parameterUnits codetable_units(parameterNumber) : dump; meta parameterName codetable_title(parameterNumber) : dump; @@ -15,29 +15,29 @@ meta constituentTypeName codetable_title(constituentType); # Source, sink or chemical/physical process (Code table 4.238) codetable[1] sourceSinkChemicalPhysicalProcess ('4.238.table',masterDir,localDir) = 255 : dump; -# Type of generating process +# Type of generating process codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; -# Background generating process identifier (defined by originating centre) +# Background generating process identifier (defined by originating centre) unsigned[1] backgroundProcess = 255 : edition_specific; alias backgroundGeneratingProcessIdentifier=backgroundProcess; -# Analysis or forecast generating processes identifier -unsigned[1] generatingProcessIdentifier : dump; +# Analysis or forecast generating processes identifier (defined by originating centre) +unsigned[1] generatingProcessIdentifier : dump; -# Hours of observational data cut-off after reference time +# Hours of observational data cut-off after reference time unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; -# Minutes of observational data cut-off after reference time +# Minutes of observational data cut-off after reference time unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; -# Forecast time in units defined by indicatorOfUnitOfTimeRange +# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) signed[4] forecastTime : dump; diff --git a/definitions/grib2/template.4.parameter_partition.def b/definitions/grib2/template.4.parameter_partition.def index 8c4252a23..59c43a89a 100644 --- a/definitions/grib2/template.4.parameter_partition.def +++ b/definitions/grib2/template.4.parameter_partition.def @@ -1,12 +1,13 @@ # (C) Copyright 2005- ECMWF. -# Parameter category +# Parameter category codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; meta parameterUnits codetable_units(parameterNumber) : dump; meta parameterName codetable_title(parameterNumber) : dump; + unsigned[1] partitionTable : dump; unsigned[1] numberOfPartitions=1 :dump; partitions list(numberOfPartitions) { @@ -15,30 +16,29 @@ partitions list(numberOfPartitions) { codetable[2] partitionNumber ('4.[partitionTable].table',masterDir,localDir) : dump; -# Type of generating process +# Type of generating process codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; -# Background generating process identifier (defined by originating centre) +# Background generating process identifier (defined by originating centre) unsigned[1] backgroundProcess = 255 : edition_specific; alias backgroundGeneratingProcessIdentifier=backgroundProcess; -# Analysis or forecast generating processes identifier -# (defined by originating centre) +# Analysis or forecast generating processes identifier (defined by originating centre) unsigned[1] generatingProcessIdentifier : dump; -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff =missing() : edition_specific,can_be_missing; +# Hours of observational data cut-off after reference time +unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; -# Minutes of observational data cut-off after reference time +# Minutes of observational data cut-off after reference time unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; -# Indicator of unit of time range +# Indicator of unit of time range codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; -# Forecast time in units defined by octet 18 (GRIB-29: supports negative forecast time) +# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) signed[4] forecastTime : dump; diff --git a/definitions/grib2/template.4.parameter_postproc.def b/definitions/grib2/template.4.parameter_postproc.def index d20c88000..8f5bcacfe 100644 --- a/definitions/grib2/template.4.parameter_postproc.def +++ b/definitions/grib2/template.4.parameter_postproc.def @@ -1,46 +1,46 @@ # (C) Copyright 2005- ECMWF. -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir): dump; +# Parameter category +codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; meta parameterUnits codetable_units(parameterNumber) : dump; meta parameterName codetable_title(parameterNumber) : dump; -# The input process identifier shall have the value of the 'analysis or forecast process identifier' of the -# original GRIB message used as input of the post-processing +# The input process identifier shall have the value of the 'analysis or forecast process identifier' of the +# original GRIB message used as input of the post-processing unsigned[2] inputProcessIdentifier : dump,edition_specific; -# The input originating centre shall have the value of the 'originating centre' of the original GRIB message -# used as input of the post-processing +# The input originating centre shall have the value of the 'originating centre' of the original GRIB message +# used as input of the post-processing codetable[2] inputOriginatingCentre 'common/c-11.table' : dump,edition_specific,string_type; -# This identifies which post-processing technique was used. This is defined by the originating centre + +# This identifies which post-processing technique was used. This is defined by the originating centre unsigned[1] typeOfPostProcessing : dump,edition_specific; -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; +# Type of generating process +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; -# Background generating process identifier (defined by originating centre) +# Background generating process identifier (defined by originating centre) unsigned[1] backgroundProcess = 255 : edition_specific; alias backgroundGeneratingProcessIdentifier=backgroundProcess; -# Analysis or forecast generating processes identifier -# (defined by originating centre) +# Analysis or forecast generating processes identifier (defined by originating centre) unsigned[1] generatingProcessIdentifier : dump; -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; +# Hours of observational data cut-off after reference time +unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; -# Minutes of observational data cut-off after reference time +# Minutes of observational data cut-off after reference time unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; -# Indicator of unit of time range +# Indicator of unit of time range codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; -# Forecast time in units defined by indicatorOfUnitOfTimeRange +# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) signed[4] forecastTime : dump; diff --git a/definitions/grib2/template.4.parameter_tile.def b/definitions/grib2/template.4.parameter_tile.def index 2002f212e..0f8646923 100644 --- a/definitions/grib2/template.4.parameter_tile.def +++ b/definitions/grib2/template.4.parameter_tile.def @@ -1,10 +1,10 @@ # (C) Copyright 2005- ECMWF. -# Parameter category +# Parameter category codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; +# Parameter number +codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; meta parameterUnits codetable_units(parameterNumber) : dump; meta parameterName codetable_title(parameterNumber) : dump; @@ -20,32 +20,29 @@ alias NUT=numberOfUsedSpatialTiles; alias ITN=tileIndex; alias NAT=numberOfUsedTileAttributes; -# Type of generating process +# Type of generating process codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; -# Background generating process identifier -# (defined by originating centre) +# Background generating process identifier (defined by originating centre) unsigned[1] backgroundProcess = 255 : edition_specific; alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier -# (defined by originating centre) +# Analysis or forecast generating processes identifier (defined by originating centre) unsigned[1] generatingProcessIdentifier : dump; -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff =missing() : edition_specific,can_be_missing; +# Hours of observational data cut-off after reference time +unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; -# Minutes of observational data cut-off after reference time +# Minutes of observational data cut-off after reference time unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; -# Indicator of unit of time range +# Indicator of unit of time range codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; -# Forecast time in units defined by octet 24 +# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) signed[4] forecastTime : dump; From 9b0cc3f0c58478d3dd01f3443e96de1979f38209 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 15 Feb 2021 17:04:44 +0000 Subject: [PATCH 312/683] extract generating process and forecast time from template.4.parameter.def to 2 new components and update of the relevant template 4 --- definitions/grib2/template.4.0.def | 2 ++ definitions/grib2/template.4.1.def | 2 ++ definitions/grib2/template.4.10.def | 2 ++ definitions/grib2/template.4.1000.def | 2 ++ definitions/grib2/template.4.1001.def | 2 ++ definitions/grib2/template.4.1002.def | 2 ++ definitions/grib2/template.4.11.def | 2 ++ definitions/grib2/template.4.1100.def | 2 ++ definitions/grib2/template.4.1101.def | 2 ++ definitions/grib2/template.4.12.def | 2 ++ definitions/grib2/template.4.13.def | 2 ++ definitions/grib2/template.4.14.def | 2 ++ definitions/grib2/template.4.15.def | 2 ++ definitions/grib2/template.4.2.def | 2 ++ definitions/grib2/template.4.3.def | 2 ++ definitions/grib2/template.4.32.def | 2 ++ definitions/grib2/template.4.4.def | 2 ++ definitions/grib2/template.4.5.def | 2 ++ definitions/grib2/template.4.51.def | 2 ++ definitions/grib2/template.4.6.def | 2 ++ definitions/grib2/template.4.60.def | 2 ++ definitions/grib2/template.4.61.def | 2 ++ definitions/grib2/template.4.8.def | 2 ++ definitions/grib2/template.4.86.def | 2 ++ definitions/grib2/template.4.87.def | 2 ++ definitions/grib2/template.4.88.def | 19 +++---------- definitions/grib2/template.4.9.def | 2 ++ definitions/grib2/template.4.91.def | 2 ++ .../grib2/template.4.forecast_time.def | 18 +++++++++++++ .../grib2/template.4.generating_process.def | 11 ++++++++ definitions/grib2/template.4.parameter.def | 27 ------------------- 31 files changed, 86 insertions(+), 43 deletions(-) create mode 100644 definitions/grib2/template.4.forecast_time.def create mode 100644 definitions/grib2/template.4.generating_process.def diff --git a/definitions/grib2/template.4.0.def b/definitions/grib2/template.4.0.def index a1a94830b..511d301d5 100644 --- a/definitions/grib2/template.4.0.def +++ b/definitions/grib2/template.4.0.def @@ -3,5 +3,7 @@ # TEMPLATE 4.0, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def"; +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def"; diff --git a/definitions/grib2/template.4.1.def b/definitions/grib2/template.4.1.def index 24372d2fb..7d012fb12 100644 --- a/definitions/grib2/template.4.1.def +++ b/definitions/grib2/template.4.1.def @@ -3,6 +3,8 @@ # TEMPLATE 4.1, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" diff --git a/definitions/grib2/template.4.10.def b/definitions/grib2/template.4.10.def index 1840943ec..d89e12526 100644 --- a/definitions/grib2/template.4.10.def +++ b/definitions/grib2/template.4.10.def @@ -3,6 +3,8 @@ # TEMPLATE 4.10, Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.percentile.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.1000.def b/definitions/grib2/template.4.1000.def index a2b57262a..c88c42db8 100644 --- a/definitions/grib2/template.4.1000.def +++ b/definitions/grib2/template.4.1000.def @@ -3,4 +3,6 @@ # TEMPLATE 4.1000, Cross section of analysis and forecast at a point in time include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.point_in_time.def"; diff --git a/definitions/grib2/template.4.1001.def b/definitions/grib2/template.4.1001.def index c0b81a6d7..9b3e8c27e 100644 --- a/definitions/grib2/template.4.1001.def +++ b/definitions/grib2/template.4.1001.def @@ -3,4 +3,6 @@ # TEMPLATE 4.1001, Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.1002.def b/definitions/grib2/template.4.1002.def index 63d0c0e13..64e77ab53 100644 --- a/definitions/grib2/template.4.1002.def +++ b/definitions/grib2/template.4.1002.def @@ -3,6 +3,8 @@ # TEMPLATE 4.1002, Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; # Horizontal dimension processed codetable[1] horizontalDimensionProcessed ('4.220.table',masterDir,localDir) : dump; diff --git a/definitions/grib2/template.4.11.def b/definitions/grib2/template.4.11.def index 1506df9f4..e9f571b57 100644 --- a/definitions/grib2/template.4.11.def +++ b/definitions/grib2/template.4.11.def @@ -3,6 +3,8 @@ # TEMPLATE 4.11, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.1100.def b/definitions/grib2/template.4.1100.def index c65c42cda..8b157c45d 100644 --- a/definitions/grib2/template.4.1100.def +++ b/definitions/grib2/template.4.1100.def @@ -3,4 +3,6 @@ # TEMPLATE 4.1100, Hovmöller-type grid with no averaging or other statistical processing include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.1101.def b/definitions/grib2/template.4.1101.def index e5739f887..8eb6278e8 100644 --- a/definitions/grib2/template.4.1101.def +++ b/definitions/grib2/template.4.1101.def @@ -3,5 +3,7 @@ # TEMPLATE 4.1101, Hovmöller-type grid with averaging or other statistical processing include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.12.def b/definitions/grib2/template.4.12.def index 70aa465ac..8ce009f65 100644 --- a/definitions/grib2/template.4.12.def +++ b/definitions/grib2/template.4.12.def @@ -3,6 +3,8 @@ # TEMPLATE 4.12, Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.derived.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.13.def b/definitions/grib2/template.4.13.def index 4de62804f..6fbdd9543 100644 --- a/definitions/grib2/template.4.13.def +++ b/definitions/grib2/template.4.13.def @@ -3,6 +3,8 @@ # TEMPLATE 4.13, Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.derived.def" include "grib2/template.4.rectangular_cluster.def" diff --git a/definitions/grib2/template.4.14.def b/definitions/grib2/template.4.14.def index 8ba50edd5..c9c5a0ec7 100644 --- a/definitions/grib2/template.4.14.def +++ b/definitions/grib2/template.4.14.def @@ -3,6 +3,8 @@ # TEMPLATE 4.14, Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.derived.def" include "grib2/template.4.circular_cluster.def" diff --git a/definitions/grib2/template.4.15.def b/definitions/grib2/template.4.15.def index d58a24851..1310b5cba 100644 --- a/definitions/grib2/template.4.15.def +++ b/definitions/grib2/template.4.15.def @@ -3,6 +3,8 @@ # TEMPLATE 4.15, Average, accumulation, extreme values, or other statistically-processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def"; +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def"; codetable[1] statisticalProcess 'grib2/tables/[tablesVersion]/4.10.table'; diff --git a/definitions/grib2/template.4.2.def b/definitions/grib2/template.4.2.def index 27b00c320..13a9caa7a 100644 --- a/definitions/grib2/template.4.2.def +++ b/definitions/grib2/template.4.2.def @@ -3,6 +3,8 @@ # TEMPLATE 4.2, Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def"; +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def"; include "grib2/template.4.derived.def"; diff --git a/definitions/grib2/template.4.3.def b/definitions/grib2/template.4.3.def index cdc928841..645cc1214 100644 --- a/definitions/grib2/template.4.3.def +++ b/definitions/grib2/template.4.3.def @@ -3,6 +3,8 @@ # TEMPLATE 4.3, Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.derived.def" diff --git a/definitions/grib2/template.4.32.def b/definitions/grib2/template.4.32.def index f3d29828b..813750ed4 100644 --- a/definitions/grib2/template.4.32.def +++ b/definitions/grib2/template.4.32.def @@ -6,6 +6,8 @@ constant dataRepresentationType = 90; # TEMPLATE 4.32, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.point_in_time.def"; # Required for interpolation and MARS. The level type is used to decide whether to apply the Land Sea Mask diff --git a/definitions/grib2/template.4.4.def b/definitions/grib2/template.4.4.def index 4b84053a8..5509d92bd 100644 --- a/definitions/grib2/template.4.4.def +++ b/definitions/grib2/template.4.4.def @@ -3,6 +3,8 @@ # TEMPLATE 4.4, Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.derived.def" diff --git a/definitions/grib2/template.4.5.def b/definitions/grib2/template.4.5.def index a0cba2d16..8da5ab9a3 100644 --- a/definitions/grib2/template.4.5.def +++ b/definitions/grib2/template.4.5.def @@ -3,6 +3,8 @@ # TEMPLATE 4.5, Probability forecasts at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.probability.def" diff --git a/definitions/grib2/template.4.51.def b/definitions/grib2/template.4.51.def index d495993db..f33fd2e51 100644 --- a/definitions/grib2/template.4.51.def +++ b/definitions/grib2/template.4.51.def @@ -3,6 +3,8 @@ # TEMPLATE 4.51, Categorical forecasts at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.categorical.def" diff --git a/definitions/grib2/template.4.6.def b/definitions/grib2/template.4.6.def index f173b2cfb..3dbfc567d 100644 --- a/definitions/grib2/template.4.6.def +++ b/definitions/grib2/template.4.6.def @@ -3,6 +3,8 @@ # TEMPLATE 4.6, Percentile forecasts at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.percentile.def" diff --git a/definitions/grib2/template.4.60.def b/definitions/grib2/template.4.60.def index 53773a2a7..999fff741 100644 --- a/definitions/grib2/template.4.60.def +++ b/definitions/grib2/template.4.60.def @@ -3,6 +3,8 @@ # TEMPLATE 4.60, Individual ensemble re-forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" diff --git a/definitions/grib2/template.4.61.def b/definitions/grib2/template.4.61.def index ef8683710..213487c7a 100644 --- a/definitions/grib2/template.4.61.def +++ b/definitions/grib2/template.4.61.def @@ -3,6 +3,8 @@ # TEMPLATE 4.61, Individual ensemble re-forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" include "grib2/template.4.reforecast.def" diff --git a/definitions/grib2/template.4.8.def b/definitions/grib2/template.4.8.def index ce39303d7..9ca5b7383 100644 --- a/definitions/grib2/template.4.8.def +++ b/definitions/grib2/template.4.8.def @@ -3,5 +3,7 @@ # TEMPLATE 4.8, Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.86.def b/definitions/grib2/template.4.86.def index a1cbc98de..4c38cffc5 100644 --- a/definitions/grib2/template.4.86.def +++ b/definitions/grib2/template.4.86.def @@ -3,6 +3,8 @@ # TEMPLATE 4.86, Quantile forecasts at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.quantile.def" diff --git a/definitions/grib2/template.4.87.def b/definitions/grib2/template.4.87.def index 32e37466e..511f31c6e 100644 --- a/definitions/grib2/template.4.87.def +++ b/definitions/grib2/template.4.87.def @@ -3,6 +3,8 @@ # TEMPLATE 4.87, Quantile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.quantile.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.88.def b/definitions/grib2/template.4.88.def index 4ef0e1784..745b2e631 100644 --- a/definitions/grib2/template.4.88.def +++ b/definitions/grib2/template.4.88.def @@ -2,21 +2,8 @@ # TEMPLATE 4.88, Analysis or Forecast at a horizontal level or in a horizontal layer at a local time -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -unsigned[1] generatingProcessIdentifier : dump; - -#Cannot include this as it has keys we do not need e.g. minutesAfterDataCutoff -#Also forecastTime will be used in the localtime template -#include "grib2/template.4.parameter.def" - +include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +# no template.4.forecast_time.def component in this tempalte. include "grib2/template.4.horizontal.def" include "grib2/template.4.localtime.def" diff --git a/definitions/grib2/template.4.9.def b/definitions/grib2/template.4.9.def index 11fffc68a..79ba81a86 100644 --- a/definitions/grib2/template.4.9.def +++ b/definitions/grib2/template.4.9.def @@ -3,6 +3,8 @@ # TEMPLATE 4.9, Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.probability.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.91.def b/definitions/grib2/template.4.91.def index 5824fd971..271d8b73a 100644 --- a/definitions/grib2/template.4.91.def +++ b/definitions/grib2/template.4.91.def @@ -3,6 +3,8 @@ # TEMPLATE 4.91, Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.categorical.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.forecast_time.def b/definitions/grib2/template.4.forecast_time.def new file mode 100644 index 000000000..662310fc6 --- /dev/null +++ b/definitions/grib2/template.4.forecast_time.def @@ -0,0 +1,18 @@ +# (C) Copyright 2005- ECMWF. + +# Hours of observational data cut-off after reference time +unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; + +# Minutes of observational data cut-off after reference time +unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; +alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; + +# Indicator of unit of time range +codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; +alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 +template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; +codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; + +# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) +signed[4] forecastTime : dump; diff --git a/definitions/grib2/template.4.generating_process.def b/definitions/grib2/template.4.generating_process.def new file mode 100644 index 000000000..7af6ad7f2 --- /dev/null +++ b/definitions/grib2/template.4.generating_process.def @@ -0,0 +1,11 @@ +# (C) Copyright 2005- ECMWF. + +# Type of generating process +codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; + +# Background generating process identifier (defined by originating centre) +unsigned[1] backgroundProcess = 255 : edition_specific; +alias backgroundGeneratingProcessIdentifier=backgroundProcess; + +# Analysis or forecast generating processes identifier (defined by originating centre) +unsigned[1] generatingProcessIdentifier : dump; diff --git a/definitions/grib2/template.4.parameter.def b/definitions/grib2/template.4.parameter.def index 07f23e868..84d7f3cbf 100644 --- a/definitions/grib2/template.4.parameter.def +++ b/definitions/grib2/template.4.parameter.def @@ -7,30 +7,3 @@ codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; meta parameterUnits codetable_units(parameterNumber) : dump; meta parameterName codetable_title(parameterNumber) : dump; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; From adb2e9822bfde8b7b0edb99f72301ae0ffc85db7 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 15 Feb 2021 17:26:02 +0000 Subject: [PATCH 313/683] splitting the template.4.parameter_aerosol.def into 5 components parameter, aerosol, aerosol size, generating process and forecast time --- definitions/grib2/template.4.45.def | 6 ++- definitions/grib2/template.4.46.def | 6 ++- definitions/grib2/template.4.47.def | 6 ++- definitions/grib2/template.4.85.def | 7 ++- definitions/grib2/template.4.aerosol.def | 4 ++ definitions/grib2/template.4.aerosol_size.def | 10 ++++ .../grib2/template.4.parameter_aerosol.def | 48 ------------------- 7 files changed, 35 insertions(+), 52 deletions(-) create mode 100644 definitions/grib2/template.4.aerosol.def create mode 100644 definitions/grib2/template.4.aerosol_size.def delete mode 100644 definitions/grib2/template.4.parameter_aerosol.def diff --git a/definitions/grib2/template.4.45.def b/definitions/grib2/template.4.45.def index 1820766c4..6c48d108e 100644 --- a/definitions/grib2/template.4.45.def +++ b/definitions/grib2/template.4.45.def @@ -2,7 +2,11 @@ # TEMPLATE 4.45, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol -include "grib2/template.4.parameter_aerosol.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.aerosol.def" +include "grib2/template.4.aerosol_size.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" diff --git a/definitions/grib2/template.4.46.def b/definitions/grib2/template.4.46.def index 844258874..445b16231 100644 --- a/definitions/grib2/template.4.46.def +++ b/definitions/grib2/template.4.46.def @@ -2,6 +2,10 @@ # TEMPLATE 4.46, Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -include "grib2/template.4.parameter_aerosol.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.aerosol.def" +include "grib2/template.4.aerosol_size.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.47.def b/definitions/grib2/template.4.47.def index 05a081a24..64c222032 100644 --- a/definitions/grib2/template.4.47.def +++ b/definitions/grib2/template.4.47.def @@ -3,7 +3,11 @@ # TEMPLATE 4.47, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval # Note: This template is deprecated. Template 4.85 should be used instead. -include "grib2/template.4.parameter_aerosol.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.aerosol.def" +include "grib2/template.4.aerosol_size.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.85.def b/definitions/grib2/template.4.85.def index 0a41b3239..b6afd6e69 100644 --- a/definitions/grib2/template.4.85.def +++ b/definitions/grib2/template.4.85.def @@ -1,7 +1,12 @@ # (C) Copyright 2005- ECMWF. # TEMPLATE 4.85, individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol -include "grib2/template.4.parameter_aerosol.def" + +include "grib2/template.4.parameter.def" +include "grib2/template.4.aerosol.def" +include "grib2/template.4.aerosol_size.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.aerosol.def b/definitions/grib2/template.4.aerosol.def new file mode 100644 index 000000000..dca13f766 --- /dev/null +++ b/definitions/grib2/template.4.aerosol.def @@ -0,0 +1,4 @@ +# (C) Copyright 2005- ECMWF. + +# Atmospheric chemical or physical constitutent type +codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; diff --git a/definitions/grib2/template.4.aerosol_size.def b/definitions/grib2/template.4.aerosol_size.def new file mode 100644 index 000000000..a5c9de676 --- /dev/null +++ b/definitions/grib2/template.4.aerosol_size.def @@ -0,0 +1,10 @@ +# (C) Copyright 2005- ECMWF. + +codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; +alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; + +# Size in metres +signed[1] scaleFactorOfFirstSize : dump; +signed[4] scaledValueOfFirstSize :dump; +signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; +signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; diff --git a/definitions/grib2/template.4.parameter_aerosol.def b/definitions/grib2/template.4.parameter_aerosol.def deleted file mode 100644 index 4b37fb597..000000000 --- a/definitions/grib2/template.4.parameter_aerosol.def +++ /dev/null @@ -1,48 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Atmospheric chemical or physical constitutent type -codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; - -codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; -alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; - -# Size in metres -signed[1] scaleFactorOfFirstSize : dump; -signed[4] scaledValueOfFirstSize :dump; -signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; -signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; From 0ce797212097bc9d05aae6cd3d1f25c4d25e7b12 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 15 Feb 2021 17:29:20 +0000 Subject: [PATCH 314/683] splitting the template.4.parameter_aerosol_optical.def into 6 components parameter, aerosol, aerosol size, optical, generating process and forecast time --- definitions/grib2/template.4.48.def | 7 ++- definitions/grib2/template.4.49.def | 7 ++- definitions/grib2/template.4.optical.def | 10 ++++ .../template.4.parameter_aerosol_optical.def | 57 ------------------- 4 files changed, 22 insertions(+), 59 deletions(-) create mode 100644 definitions/grib2/template.4.optical.def delete mode 100644 definitions/grib2/template.4.parameter_aerosol_optical.def diff --git a/definitions/grib2/template.4.48.def b/definitions/grib2/template.4.48.def index 6768145bc..65e4d3291 100644 --- a/definitions/grib2/template.4.48.def +++ b/definitions/grib2/template.4.48.def @@ -2,6 +2,11 @@ # TEMPLATE 4.48, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -include "grib2/template.4.parameter_aerosol_optical.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.aerosol.def" +include "grib2/template.4.aerosol_size.def" +include "grib2/template.4.optical.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.49.def b/definitions/grib2/template.4.49.def index 7c4ea91a2..40e48c7c6 100644 --- a/definitions/grib2/template.4.49.def +++ b/definitions/grib2/template.4.49.def @@ -2,7 +2,12 @@ # TEMPLATE 4.49, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol -include "grib2/template.4.parameter_aerosol_optical.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.aerosol.def" +include "grib2/template.4.aerosol_size.def" +include "grib2/template.4.optical.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" diff --git a/definitions/grib2/template.4.optical.def b/definitions/grib2/template.4.optical.def new file mode 100644 index 000000000..e1f9867ca --- /dev/null +++ b/definitions/grib2/template.4.optical.def @@ -0,0 +1,10 @@ +# (C) Copyright 2005- ECMWF. + +codetable[1] typeOfWavelengthInterval ('4.91.table',masterDir,localDir) : dump; +alias typeOfIntervalForFirstAndSecondWavelength=typeOfWavelengthInterval; + +# Wavelengths in metres +signed[1] scaleFactorOfFirstWavelength : dump; +signed[4] scaledValueOfFirstWavelength : dump; +signed[1] scaleFactorOfSecondWavelength = missing(): can_be_missing,dump; +signed[4] scaledValueOfSecondWavelength = missing(): can_be_missing,dump; diff --git a/definitions/grib2/template.4.parameter_aerosol_optical.def b/definitions/grib2/template.4.parameter_aerosol_optical.def deleted file mode 100644 index 8772ae016..000000000 --- a/definitions/grib2/template.4.parameter_aerosol_optical.def +++ /dev/null @@ -1,57 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Atmospheric chemical or physical constitutent type -codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; - -codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; -alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; - -# Size in metres -signed[1] scaleFactorOfFirstSize : dump; -signed[4] scaledValueOfFirstSize :dump; -signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; -signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; - -codetable[1] typeOfWavelengthInterval ('4.91.table',masterDir,localDir) : dump; -alias typeOfIntervalForFirstAndSecondWavelength=typeOfWavelengthInterval; - -# Wavelengths in metres -signed[1] scaleFactorOfFirstWavelength : dump; -signed[4] scaledValueOfFirstWavelength : dump; -signed[1] scaleFactorOfSecondWavelength = missing(): can_be_missing,dump; -signed[4] scaledValueOfSecondWavelength = missing(): can_be_missing,dump; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; From 62af2f5187db96dff20201e6798d03ece15a7e62 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 15 Feb 2021 17:33:39 +0000 Subject: [PATCH 315/683] splitting the template.4.parameter_aerosol_optical.def into 6 components parameter, aerosol, source, aerosol size, generating process and forecast time --- definitions/grib2/template.4.82.def | 14 +++-- definitions/grib2/template.4.83.def | 7 ++- definitions/grib2/template.4.84.def | 8 ++- .../template.4.parameter_aerosol_source.def | 51 ------------------- definitions/grib2/template.4.source.def | 4 ++ 5 files changed, 23 insertions(+), 61 deletions(-) delete mode 100644 definitions/grib2/template.4.parameter_aerosol_source.def create mode 100644 definitions/grib2/template.4.source.def diff --git a/definitions/grib2/template.4.82.def b/definitions/grib2/template.4.82.def index 6e64bbd7c..5d92154dd 100644 --- a/definitions/grib2/template.4.82.def +++ b/definitions/grib2/template.4.82.def @@ -1,14 +1,12 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 4.82, Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source/sink -include "grib2/template.4.parameter_aerosol_source.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.aerosol.def" +include "grib2/template.4.source.def" +include "grib2/template.4.aerosol_size.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.83.def b/definitions/grib2/template.4.83.def index 372549919..a92e3cfd4 100644 --- a/definitions/grib2/template.4.83.def +++ b/definitions/grib2/template.4.83.def @@ -3,7 +3,12 @@ # TEMPLATE 4.83, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval with source/sink # Note: This template is deprecated. Template 4.84 should be used instead. -include "grib2/template.4.parameter_aerosol_source.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.aerosol.def" +include "grib2/template.4.source.def" +include "grib2/template.4.aerosol_size.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.84.def b/definitions/grib2/template.4.84.def index 1463d22af..a85bded9f 100644 --- a/definitions/grib2/template.4.84.def +++ b/definitions/grib2/template.4.84.def @@ -1,7 +1,13 @@ # (C) Copyright 2005- ECMWF. # TEMPLATE 4.84, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol with source or sink -include "grib2/template.4.parameter_aerosol_source.def" + +include "grib2/template.4.parameter.def" +include "grib2/template.4.aerosol.def" +include "grib2/template.4.source.def" +include "grib2/template.4.aerosol_size.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.parameter_aerosol_source.def b/definitions/grib2/template.4.parameter_aerosol_source.def deleted file mode 100644 index a3169dd79..000000000 --- a/definitions/grib2/template.4.parameter_aerosol_source.def +++ /dev/null @@ -1,51 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Atmospheric chemical or physical constitutent type -codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; - -# Source, sink or chemical/physical process (Code table 4.238) -codetable[1] sourceSinkChemicalPhysicalProcess ('4.238.table',masterDir,localDir) = 255 : dump; - -codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; -alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; - -# Size in metres -signed[1] scaleFactorOfFirstSize : dump; -signed[4] scaledValueOfFirstSize :dump; -signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; -signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; diff --git a/definitions/grib2/template.4.source.def b/definitions/grib2/template.4.source.def new file mode 100644 index 000000000..b64a61cd0 --- /dev/null +++ b/definitions/grib2/template.4.source.def @@ -0,0 +1,4 @@ +# (C) Copyright 2005- ECMWF. + +# Source, sink or chemical/physical process (Code table 4.238) +codetable[1] sourceSinkChemicalPhysicalProcess ('4.238.table',masterDir,localDir) = 255 : dump; From 816294f76f4bb91afab4b546807700dc6f776b60 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 15 Feb 2021 17:36:18 +0000 Subject: [PATCH 316/683] splitting the template.4.parameter_aerosol_optical.def into 7 components parameter, aerosol, source, aerosol size, optical, generating process and forecast time --- definitions/grib2/template.4.80.def | 8 ++- definitions/grib2/template.4.81.def | 15 +++-- ...ate.4.parameter_aerosol_optical_source.def | 60 ------------------- 3 files changed, 14 insertions(+), 69 deletions(-) delete mode 100644 definitions/grib2/template.4.parameter_aerosol_optical_source.def diff --git a/definitions/grib2/template.4.80.def b/definitions/grib2/template.4.80.def index 4e3325762..383553c8b 100644 --- a/definitions/grib2/template.4.80.def +++ b/definitions/grib2/template.4.80.def @@ -9,6 +9,12 @@ # TEMPLATE 4.80, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink -include "grib2/template.4.parameter_aerosol_optical_source.def"; +include "grib2/template.4.parameter.def" +include "grib2/template.4.aerosol.def" +include "grib2/template.4.source.def" +include "grib2/template.4.aerosol_size.def" +include "grib2/template.4.source.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def"; diff --git a/definitions/grib2/template.4.81.def b/definitions/grib2/template.4.81.def index a758d4be1..940c8a16e 100644 --- a/definitions/grib2/template.4.81.def +++ b/definitions/grib2/template.4.81.def @@ -1,15 +1,14 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 4.81, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink -include "grib2/template.4.parameter_aerosol_optical_source.def"; +include "grib2/template.4.parameter.def" +include "grib2/template.4.aerosol.def" +include "grib2/template.4.source.def" +include "grib2/template.4.aerosol_size.def" +include "grib2/template.4.source.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def"; include "grib2/template.4.eps.def" diff --git a/definitions/grib2/template.4.parameter_aerosol_optical_source.def b/definitions/grib2/template.4.parameter_aerosol_optical_source.def deleted file mode 100644 index 4ad33d9cd..000000000 --- a/definitions/grib2/template.4.parameter_aerosol_optical_source.def +++ /dev/null @@ -1,60 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Atmospheric chemical or physical constitutent type -codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; - -# Source, sink or chemical/physical process (Code table 4.238) -codetable[1] sourceSinkChemicalPhysicalProcess ('4.238.table',masterDir,localDir) = 255 : dump; - -codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; -alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; - -# Size in metres -signed[1] scaleFactorOfFirstSize : dump; -signed[4] scaledValueOfFirstSize :dump; -signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; -signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; - -codetable[1] typeOfWavelengthInterval ('4.91.table',masterDir,localDir) : dump; -alias typeOfIntervalForFirstAndSecondWavelength=typeOfWavelengthInterval; - -# Wavelengths in metres -signed[1] scaleFactorOfFirstWavelength : dump; -signed[4] scaledValueOfFirstWavelength : dump; -signed[1] scaleFactorOfSecondWavelength = missing(): can_be_missing,dump; -signed[4] scaledValueOfSecondWavelength = missing(): can_be_missing,dump; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; From 917559eb55417981bae53c5810fd81716dcfc00b Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 15 Feb 2021 17:41:46 +0000 Subject: [PATCH 317/683] splitting the template.4.parameter_aerosol_optical.def into 4 components: parameter, chemical, generating process and forecast time --- definitions/grib2/template.4.40.def | 5 ++- definitions/grib2/template.4.41.def | 5 ++- definitions/grib2/template.4.42.def | 5 ++- definitions/grib2/template.4.43.def | 5 ++- definitions/grib2/template.4.chemical.def | 5 +++ .../grib2/template.4.parameter_chemical.def | 40 ------------------- 6 files changed, 21 insertions(+), 44 deletions(-) create mode 100644 definitions/grib2/template.4.chemical.def delete mode 100644 definitions/grib2/template.4.parameter_chemical.def diff --git a/definitions/grib2/template.4.40.def b/definitions/grib2/template.4.40.def index 88d6f5616..bc4fd84b3 100644 --- a/definitions/grib2/template.4.40.def +++ b/definitions/grib2/template.4.40.def @@ -2,6 +2,9 @@ # TEMPLATE 4.40, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -include "grib2/template.4.parameter_chemical.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.chemical.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.41.def b/definitions/grib2/template.4.41.def index f3fccee3f..0b8787a0e 100644 --- a/definitions/grib2/template.4.41.def +++ b/definitions/grib2/template.4.41.def @@ -2,7 +2,10 @@ # TEMPLATE 4.41, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents -include "grib2/template.4.parameter_chemical.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.chemical.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" diff --git a/definitions/grib2/template.4.42.def b/definitions/grib2/template.4.42.def index fc2f42a8e..9bc4e2111 100644 --- a/definitions/grib2/template.4.42.def +++ b/definitions/grib2/template.4.42.def @@ -2,6 +2,9 @@ # TEMPLATE 4.42, Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -include "grib2/template.4.parameter_chemical.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.chemical.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.43.def b/definitions/grib2/template.4.43.def index a514a0dd4..3bb670463 100644 --- a/definitions/grib2/template.4.43.def +++ b/definitions/grib2/template.4.43.def @@ -2,7 +2,10 @@ # TEMPLATE 4.43, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents -include "grib2/template.4.parameter_chemical.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.chemical.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.chemical.def b/definitions/grib2/template.4.chemical.def new file mode 100644 index 000000000..4c49d7dc0 --- /dev/null +++ b/definitions/grib2/template.4.chemical.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +# Atmospheric chemical or physical constitutent type +codetable[2] constituentType ('4.230.table',masterDir,localDir) : dump; +meta constituentTypeName codetable_title(constituentType); diff --git a/definitions/grib2/template.4.parameter_chemical.def b/definitions/grib2/template.4.parameter_chemical.def deleted file mode 100644 index dc9d74364..000000000 --- a/definitions/grib2/template.4.parameter_chemical.def +++ /dev/null @@ -1,40 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Atmospheric chemical or physical constitutent type -codetable[2] constituentType ('4.230.table',masterDir,localDir) : dump; -meta constituentTypeName codetable_title(constituentType); - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; From 87ea47b4e8d1b8e827715cc07b77ba7c9da2758d Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 15 Feb 2021 17:46:06 +0000 Subject: [PATCH 318/683] splitting the template.4.parameter_aerosol_optical.def into 5 components: parameter, chemical, distribution, generating process and forecast time --- definitions/grib2/template.4.57.def | 6 +- definitions/grib2/template.4.58.def | 6 +- definitions/grib2/template.4.67.def | 6 +- definitions/grib2/template.4.68.def | 6 +- definitions/grib2/template.4.distribution.def | 19 ++++++ ...late.4.parameter_chemical_distribution.def | 58 ------------------- 6 files changed, 39 insertions(+), 62 deletions(-) create mode 100644 definitions/grib2/template.4.distribution.def delete mode 100644 definitions/grib2/template.4.parameter_chemical_distribution.def diff --git a/definitions/grib2/template.4.57.def b/definitions/grib2/template.4.57.def index 939c0e5fa..aa419d139 100644 --- a/definitions/grib2/template.4.57.def +++ b/definitions/grib2/template.4.57.def @@ -2,6 +2,10 @@ # TEMPLATE 4.57, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -include "grib2/template.4.parameter_chemical_distribution.def"; +include "grib2/template.4.parameter.def" +include "grib2/template.4.chemical.def" +include "grib2/template.4.distribution.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def"; diff --git a/definitions/grib2/template.4.58.def b/definitions/grib2/template.4.58.def index 380f25725..ed6a008d8 100644 --- a/definitions/grib2/template.4.58.def +++ b/definitions/grib2/template.4.58.def @@ -2,7 +2,11 @@ # TEMPLATE 4.58, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function -include "grib2/template.4.parameter_chemical_distribution.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.chemical.def" +include "grib2/template.4.distribution.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" diff --git a/definitions/grib2/template.4.67.def b/definitions/grib2/template.4.67.def index 462d3ea6a..3c2571960 100644 --- a/definitions/grib2/template.4.67.def +++ b/definitions/grib2/template.4.67.def @@ -2,6 +2,10 @@ # TEMPLATE 4.67, Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function -include "grib2/template.4.parameter_chemical_distribution.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.chemical.def" +include "grib2/template.4.distribution.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.68.def b/definitions/grib2/template.4.68.def index 9fa3a3d20..8f7c6c82a 100644 --- a/definitions/grib2/template.4.68.def +++ b/definitions/grib2/template.4.68.def @@ -2,7 +2,11 @@ # TEMPLATE 4.68, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function -include "grib2/template.4.parameter_chemical_distribution.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.chemical.def" +include "grib2/template.4.distribution.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.distribution.def b/definitions/grib2/template.4.distribution.def new file mode 100644 index 000000000..6cdc4d58f --- /dev/null +++ b/definitions/grib2/template.4.distribution.def @@ -0,0 +1,19 @@ +# (C) Copyright 2005- ECMWF. + +# Number of mode(N) of distribution +unsigned[2] numberOfModeOfDistribution : dump; + +# Mode number (l) +unsigned[2] modeNumber : dump; + +# Type of distribution function +codetable[2] typeOfDistributionFunction ('4.240.table',masterDir,localDir) : dump; + +# Number of following function parameters (Np), defined by type given in octet 18-19 +unsigned[1] numberOfDistributionFunctionParameters : dump; +alias NP = numberOfDistributionFunctionParameters; + +listOfDistributionFunctionParameter list(numberOfDistributionFunctionParameters) { + signed[1] scaleFactorOfDistributionFunctionParameter = missing() : can_be_missing,dump; + unsigned[4] scaledValueOfDistributionFunctionParameter = missing() : can_be_missing,dump; +} diff --git a/definitions/grib2/template.4.parameter_chemical_distribution.def b/definitions/grib2/template.4.parameter_chemical_distribution.def deleted file mode 100644 index 7d2b785fd..000000000 --- a/definitions/grib2/template.4.parameter_chemical_distribution.def +++ /dev/null @@ -1,58 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Atmospheric chemical or physical constitutent type -codetable[2] constituentType ('4.230.table',masterDir,localDir) : dump; -meta constituentTypeName codetable_title(constituentType); - -# Number of mode(N) of distribution -unsigned[2] numberOfModeOfDistribution : dump; - -# Mode number (l) -unsigned[2] modeNumber : dump; - -# Type of distribution function -codetable[2] typeOfDistributionFunction ('4.240.table',masterDir,localDir) : dump; - -# Number of following function parameters (Np), defined by type given in octet 18-19 -unsigned[1] numberOfDistributionFunctionParameters : dump; -alias NP = numberOfDistributionFunctionParameters; - -listOfDistributionFunctionParameter list(numberOfDistributionFunctionParameters) { - signed[1] scaleFactorOfDistributionFunctionParameter = missing() : can_be_missing,dump; - unsigned[4] scaledValueOfDistributionFunctionParameter = missing() : can_be_missing,dump; -} - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; From 36fa4cad863993b40a938ff90005f47e709b5a5c Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 15 Feb 2021 17:49:42 +0000 Subject: [PATCH 319/683] splitting the template.4.parameter_chemical_source.def into 5 components: parameter, chemical, source, generating process and forecast time --- definitions/grib2/template.4.76.def | 7 ++- definitions/grib2/template.4.77.def | 7 ++- definitions/grib2/template.4.78.def | 7 ++- definitions/grib2/template.4.79.def | 7 ++- .../template.4.parameter_chemical_source.def | 43 ------------------- 5 files changed, 24 insertions(+), 47 deletions(-) delete mode 100644 definitions/grib2/template.4.parameter_chemical_source.def diff --git a/definitions/grib2/template.4.76.def b/definitions/grib2/template.4.76.def index 7de36ca77..fe2cd344a 100644 --- a/definitions/grib2/template.4.76.def +++ b/definitions/grib2/template.4.76.def @@ -1,6 +1,11 @@ # (C) Copyright 2005- ECMWF. # TEMPLATE 4.76, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with source/sink -include "grib2/template.4.parameter_chemical_source.def"; + +include "grib2/template.4.parameter.def" +include "grib2/template.4.chemical.def" +include "grib2/template.4.source.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def"; diff --git a/definitions/grib2/template.4.77.def b/definitions/grib2/template.4.77.def index 61b91b988..388c823eb 100644 --- a/definitions/grib2/template.4.77.def +++ b/definitions/grib2/template.4.77.def @@ -1,7 +1,12 @@ # (C) Copyright 2005- ECMWF. # TEMPLATE 4.77, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents with a source/sink -include "grib2/template.4.parameter_chemical_source.def" + +include "grib2/template.4.parameter.def" +include "grib2/template.4.chemical.def" +include "grib2/template.4.source.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" diff --git a/definitions/grib2/template.4.78.def b/definitions/grib2/template.4.78.def index 582d30e19..f42319718 100644 --- a/definitions/grib2/template.4.78.def +++ b/definitions/grib2/template.4.78.def @@ -1,6 +1,11 @@ # (C) Copyright 2005- ECMWF. # TEMPLATE 4.78, Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink -include "grib2/template.4.parameter_chemical_source.def" + +include "grib2/template.4.parameter.def" +include "grib2/template.4.chemical.def" +include "grib2/template.4.source.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.79.def b/definitions/grib2/template.4.79.def index f77ce8798..95dd0ee30 100644 --- a/definitions/grib2/template.4.79.def +++ b/definitions/grib2/template.4.79.def @@ -1,7 +1,12 @@ # (C) Copyright 2005- ECMWF. # TEMPLATE 4.79, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents with source/sink -include "grib2/template.4.parameter_chemical_source.def" + +include "grib2/template.4.parameter.def" +include "grib2/template.4.chemical.def" +include "grib2/template.4.source.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.parameter_chemical_source.def b/definitions/grib2/template.4.parameter_chemical_source.def deleted file mode 100644 index 475389c14..000000000 --- a/definitions/grib2/template.4.parameter_chemical_source.def +++ /dev/null @@ -1,43 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Atmospheric chemical or physical constitutent type -codetable[2] constituentType ('4.230.table',masterDir,localDir) : dump; -meta constituentTypeName codetable_title(constituentType); - -# Source, sink or chemical/physical process (Code table 4.238) -codetable[1] sourceSinkChemicalPhysicalProcess ('4.238.table',masterDir,localDir) = 255 : dump; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; From 5cc8b2d111349c66e6ab955aba02bedb82ab1570 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 15 Feb 2021 17:55:56 +0000 Subject: [PATCH 320/683] splitting the template.4.parameter_partition.def into 4 components: parameter, partition, generating process and forecast time --- definitions/grib2/template.4.53.def | 6 ++- .../grib2/template.4.parameter_partition.def | 44 ------------------- definitions/grib2/template.4.partition.def | 9 ++++ 3 files changed, 14 insertions(+), 45 deletions(-) delete mode 100644 definitions/grib2/template.4.parameter_partition.def create mode 100644 definitions/grib2/template.4.partition.def diff --git a/definitions/grib2/template.4.53.def b/definitions/grib2/template.4.53.def index eb1b32282..53888d9be 100644 --- a/definitions/grib2/template.4.53.def +++ b/definitions/grib2/template.4.53.def @@ -2,9 +2,13 @@ # TEMPLATE 4.53, Partitioned parameters at a horizontal level or in a horizontal layer at a point in time -include "grib2/template.4.parameter_partition.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.partition.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def"; + constant cat="cat"; alias mars.levtype=cat; alias mars.levelist=partitionNumber; diff --git a/definitions/grib2/template.4.parameter_partition.def b/definitions/grib2/template.4.parameter_partition.def deleted file mode 100644 index 59c43a89a..000000000 --- a/definitions/grib2/template.4.parameter_partition.def +++ /dev/null @@ -1,44 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -unsigned[1] partitionTable : dump; -unsigned[1] numberOfPartitions=1 :dump; -partitions list(numberOfPartitions) { - unsigned[2] partitionItems ; -} - -codetable[2] partitionNumber ('4.[partitionTable].table',masterDir,localDir) : dump; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; diff --git a/definitions/grib2/template.4.partition.def b/definitions/grib2/template.4.partition.def new file mode 100644 index 000000000..bd14990c1 --- /dev/null +++ b/definitions/grib2/template.4.partition.def @@ -0,0 +1,9 @@ +# (C) Copyright 2005- ECMWF. + +unsigned[1] partitionTable : dump; +unsigned[1] numberOfPartitions=1 :dump; +partitions list(numberOfPartitions) { + unsigned[2] partitionItems ; +} + +codetable[2] partitionNumber ('4.[partitionTable].table',masterDir,localDir) : dump; From 4c4cac6c0e0441da2e6efd9f22e6a100cadba751 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 15 Feb 2021 18:01:07 +0000 Subject: [PATCH 321/683] splitting the template.4.parameter_postproc.def into 4 components: parameter, postproc, generating process and forecast time --- definitions/grib2/template.4.70.def | 5 +- definitions/grib2/template.4.71.def | 5 +- definitions/grib2/template.4.72.def | 5 +- definitions/grib2/template.4.73.def | 5 +- .../grib2/template.4.parameter_postproc.def | 46 ------------------- definitions/grib2/template.4.postproc.def | 12 +++++ 6 files changed, 28 insertions(+), 50 deletions(-) delete mode 100644 definitions/grib2/template.4.parameter_postproc.def create mode 100644 definitions/grib2/template.4.postproc.def diff --git a/definitions/grib2/template.4.70.def b/definitions/grib2/template.4.70.def index d98aacf9e..59cad3c21 100644 --- a/definitions/grib2/template.4.70.def +++ b/definitions/grib2/template.4.70.def @@ -2,6 +2,9 @@ # EFAS: Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -include "grib2/template.4.parameter_postproc.def"; +include "grib2/template.4.parameter.def"; +include "grib2/template.4.postproc.def"; +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def"; diff --git a/definitions/grib2/template.4.71.def b/definitions/grib2/template.4.71.def index 31b5da5fe..5a401d796 100644 --- a/definitions/grib2/template.4.71.def +++ b/definitions/grib2/template.4.71.def @@ -2,7 +2,10 @@ # EFAS: Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -include "grib2/template.4.parameter_postproc.def" +include "grib2/template.4.parameter.def"; +include "grib2/template.4.postproc.def"; +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.point_in_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" diff --git a/definitions/grib2/template.4.72.def b/definitions/grib2/template.4.72.def index 3c773b45e..5947d08e8 100644 --- a/definitions/grib2/template.4.72.def +++ b/definitions/grib2/template.4.72.def @@ -2,6 +2,9 @@ # EFAS: Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -include "grib2/template.4.parameter_postproc.def" +include "grib2/template.4.parameter.def"; +include "grib2/template.4.postproc.def"; +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.73.def b/definitions/grib2/template.4.73.def index 5cfd284ab..08683a0d9 100644 --- a/definitions/grib2/template.4.73.def +++ b/definitions/grib2/template.4.73.def @@ -2,7 +2,10 @@ # EFAS: Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -include "grib2/template.4.parameter_postproc.def" +include "grib2/template.4.parameter.def"; +include "grib2/template.4.postproc.def"; +include "grib2/template.4.generating_process.def"; +include "grib2/template.4.forecast_time.def"; include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.parameter_postproc.def b/definitions/grib2/template.4.parameter_postproc.def deleted file mode 100644 index 8f5bcacfe..000000000 --- a/definitions/grib2/template.4.parameter_postproc.def +++ /dev/null @@ -1,46 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# The input process identifier shall have the value of the 'analysis or forecast process identifier' of the -# original GRIB message used as input of the post-processing -unsigned[2] inputProcessIdentifier : dump,edition_specific; -# The input originating centre shall have the value of the 'originating centre' of the original GRIB message -# used as input of the post-processing -codetable[2] inputOriginatingCentre 'common/c-11.table' : dump,edition_specific,string_type; - -# This identifies which post-processing technique was used. This is defined by the originating centre -unsigned[1] typeOfPostProcessing : dump,edition_specific; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; diff --git a/definitions/grib2/template.4.postproc.def b/definitions/grib2/template.4.postproc.def new file mode 100644 index 000000000..63e5d89ae --- /dev/null +++ b/definitions/grib2/template.4.postproc.def @@ -0,0 +1,12 @@ +# (C) Copyright 2005- ECMWF. + +# The input process identifier shall have the value of the 'analysis or forecast process identifier' of the +# original GRIB message used as input of the post-processing +unsigned[2] inputProcessIdentifier : dump,edition_specific; + +# The input originating centre shall have the value of the 'originating centre' of the original GRIB message +# used as input of the post-processing +codetable[2] inputOriginatingCentre 'common/c-11.table' : dump,edition_specific,string_type; + +# This identifies which post-processing technique was used. This is defined by the originating centre +unsigned[1] typeOfPostProcessing : dump,edition_specific; From ba91d0e87a69c854e12f848d836b864cad68e0fb Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 15 Feb 2021 18:05:06 +0000 Subject: [PATCH 322/683] splitting the template.4.parameter_tile.def into 4 components: parameter, tile, generating process and forecast time --- definitions/grib2/template.4.55.def | 5 +- definitions/grib2/template.4.56.def | 6 ++- definitions/grib2/template.4.59.def | 5 +- .../grib2/template.4.parameter_tile.def | 48 ------------------- definitions/grib2/template.4.tile.def | 13 +++++ 5 files changed, 26 insertions(+), 51 deletions(-) delete mode 100644 definitions/grib2/template.4.parameter_tile.def create mode 100644 definitions/grib2/template.4.tile.def diff --git a/definitions/grib2/template.4.55.def b/definitions/grib2/template.4.55.def index 8a7010bbe..ad14d7a84 100644 --- a/definitions/grib2/template.4.55.def +++ b/definitions/grib2/template.4.55.def @@ -2,6 +2,9 @@ # TEMPLATE 4.55, Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time -include "grib2/template.4.parameter_tile.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.tile.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.56.def b/definitions/grib2/template.4.56.def index b2bd148a0..23735e972 100644 --- a/definitions/grib2/template.4.56.def +++ b/definitions/grib2/template.4.56.def @@ -1,7 +1,11 @@ + # TEMPLATE 4.56, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters # Note: This template is deprecated. Template 4.59 should be used instead. -include "grib2/template.4.parameter_tile.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.tile.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" # Note: This template is missing the entry: diff --git a/definitions/grib2/template.4.59.def b/definitions/grib2/template.4.59.def index 5cddfb29d..3795b9524 100644 --- a/definitions/grib2/template.4.59.def +++ b/definitions/grib2/template.4.59.def @@ -4,7 +4,10 @@ # Use this instead of template 4.56 -include "grib2/template.4.parameter_tile.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.tile.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" diff --git a/definitions/grib2/template.4.parameter_tile.def b/definitions/grib2/template.4.parameter_tile.def deleted file mode 100644 index 0f8646923..000000000 --- a/definitions/grib2/template.4.parameter_tile.def +++ /dev/null @@ -1,48 +0,0 @@ -# (C) Copyright 2005- ECMWF. - -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Tile specifications -codetable[1] tileClassification ('4.242.table',masterDir,localDir) : dump; -unsigned[1] totalNumberOfTileAttributePairs=1 : dump; -unsigned[1] numberOfUsedSpatialTiles=1 : dump; -unsigned[1] tileIndex : dump; -unsigned[1] numberOfUsedTileAttributes=1 : dump; -codetable[1] attributeOfTile ('4.241.table',masterDir,localDir) : dump; -alias NT=totalNumberOfTileAttributePairs; -alias NUT=numberOfUsedSpatialTiles; -alias ITN=tileIndex; -alias NAT=numberOfUsedTileAttributes; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - -# Hours of observational data cut-off after reference time -unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; - -# Minutes of observational data cut-off after reference time -unsigned[1] minutesAfterDataCutoff = missing() : edition_specific,can_be_missing; -alias minutesAfterReferenceTimeOfDataCutoff=minutesAfterDataCutoff; - -# Indicator of unit of time range -codetable[1] indicatorOfUnitOfTimeRange ('4.4.table',masterDir,localDir) : dump; -alias defaultStepUnits = one; # 1 means Hour. See code table 4.4 -template_nofail default_step_units "grib2/localConcepts/[centre:s]/default_step_units.def"; -codetable[1] stepUnits 'stepUnits.table' = defaultStepUnits : transient,dump,no_copy; - -# Forecast time in units defined by previous octet (GRIB-29: supports negative forecast time) -signed[4] forecastTime : dump; diff --git a/definitions/grib2/template.4.tile.def b/definitions/grib2/template.4.tile.def new file mode 100644 index 000000000..4939ec4ca --- /dev/null +++ b/definitions/grib2/template.4.tile.def @@ -0,0 +1,13 @@ +# (C) Copyright 2005- ECMWF. + +# Tile specifications +codetable[1] tileClassification ('4.242.table',masterDir,localDir) : dump; +unsigned[1] totalNumberOfTileAttributePairs=1 : dump; +unsigned[1] numberOfUsedSpatialTiles=1 : dump; +unsigned[1] tileIndex : dump; +unsigned[1] numberOfUsedTileAttributes=1 : dump; +codetable[1] attributeOfTile ('4.241.table',masterDir,localDir) : dump; +alias NT=totalNumberOfTileAttributePairs; +alias NUT=numberOfUsedSpatialTiles; +alias ITN=tileIndex; +alias NAT=numberOfUsedTileAttributes; From d24fcfc2cac8914b8435bcc1a926c94147a350e5 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 15 Feb 2021 18:14:06 +0000 Subject: [PATCH 323/683] template.4.parameter_aerosol_44.def by component template.4.forecast_time_44.def and update template.4.44.def accordingly --- definitions/grib2/template.4.44.def | 10 ++++++- ...44.def => template.4.forecast_time_44.def} | 30 ------------------- 2 files changed, 9 insertions(+), 31 deletions(-) rename definitions/grib2/{template.4.parameter_aerosol_44.def => template.4.forecast_time_44.def} (52%) diff --git a/definitions/grib2/template.4.44.def b/definitions/grib2/template.4.44.def index 22dd46ab2..4e7315907 100644 --- a/definitions/grib2/template.4.44.def +++ b/definitions/grib2/template.4.44.def @@ -4,7 +4,15 @@ # It is recommended not to use this template. PDT 4.48 should be used instead with optical wave length range set to missing # GRIB-530: Special case for aerosol thanks to WMO error -include "grib2/template.4.parameter_aerosol_44.def" + +include "grib2/template.4.parameter.def" +include "grib2/template.4.aerosol.def" +include "grib2/template.4.aerosol_size.def" +include "grib2/template.4.optical.def" +include "grib2/template.4.generating_process.def" + +# GRIB-530: Special case for aerosol thanks to WMO error +include "grib2/template.4.forecast_time_44.def" include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.parameter_aerosol_44.def b/definitions/grib2/template.4.forecast_time_44.def similarity index 52% rename from definitions/grib2/template.4.parameter_aerosol_44.def rename to definitions/grib2/template.4.forecast_time_44.def index 1ec350bc1..494921b35 100644 --- a/definitions/grib2/template.4.parameter_aerosol_44.def +++ b/definitions/grib2/template.4.forecast_time_44.def @@ -2,36 +2,6 @@ # GRIB-530: This template is to be used by template.4.44.def ONLY -# Parameter category -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; - -# Parameter number -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; - -# Atmospheric chemical or physical constitutent type -codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; - -codetable[1] typeOfSizeInterval ('4.91.table',masterDir,localDir) : dump; -alias typeOfIntervalForFirstAndSecondSize=typeOfSizeInterval; - -# Size in metres -signed[1] scaleFactorOfFirstSize : dump; -signed[4] scaledValueOfFirstSize :dump; -signed[1] scaleFactorOfSecondSize = missing() : can_be_missing,dump; -signed[4] scaledValueOfSecondSize = missing() : can_be_missing,dump; - -# Type of generating process -codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; - -# Background generating process identifier (defined by originating centre) -unsigned[1] backgroundProcess = 255 : edition_specific; -alias backgroundGeneratingProcessIdentifier=backgroundProcess; - -# Analysis or forecast generating processes identifier (defined by originating centre) -unsigned[1] generatingProcessIdentifier : dump; - # Hours of observational data cut-off after reference time unsigned[2] hoursAfterDataCutoff = missing() : edition_specific,can_be_missing; alias hoursAfterReferenceTimeOfDataCutoff=hoursAfterDataCutoff; From 46bda29a22059565aca8e370fd7bd2b725e173a3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 15 Feb 2021 19:05:36 +0000 Subject: [PATCH 324/683] grib_util_set_spec: Refactoring --- src/grib_util.c | 99 +++++++++++++++++++++++++------------------------ 1 file changed, 51 insertions(+), 48 deletions(-) diff --git a/src/grib_util.c b/src/grib_util.c index e2044868d..c73cb7bfd 100644 --- a/src/grib_util.c +++ b/src/grib_util.c @@ -11,6 +11,7 @@ #include "grib_api_internal.h" #include +#define STR_EQUAL(s1, s2) (strcmp((s1), (s2)) == 0) typedef enum { @@ -888,8 +889,8 @@ grib_handle* grib_util_set_spec2(grib_handle* h, size_t count = 0; int i; long editionNumber; - grib_handle* outh = NULL; - grib_handle* tmp = NULL; + grib_handle* h_out = NULL; + grib_handle* h_sample = NULL; const char* grid_type = NULL; char name[1024]; char input_grid_type[100]; @@ -1090,7 +1091,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, } return h; - } + } /* flags & GRIB_UTIL_SET_SPEC_FLAGS_ONLY_PACKING */ grid_type = get_grid_type_name(spec->grid_type); if (grid_type == NULL) { @@ -1143,9 +1144,9 @@ grib_handle* grib_util_set_spec2(grib_handle* h, } } - /* TODO: recycle tmp handle */ - tmp = grib_handle_new_from_samples(NULL, name); - if (!tmp) { + /* TODO: recycle h_sample handle */ + h_sample = grib_handle_new_from_samples(NULL, name); + if (!h_sample) { *err = GRIB_INVALID_FILE; return NULL; } @@ -1446,6 +1447,8 @@ grib_handle* grib_util_set_spec2(grib_handle* h, SET_STRING_VALUE("packingType", "grid_simple"); } } + + /* ECC-1201: case of IEEE input ?? */ switch (packing_spec->accuracy) { case GRIB_UTIL_ACCURACY_SAME_BITS_PER_VALUES_AS_INPUT: { @@ -1470,7 +1473,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, default: fprintf(stderr, "invalid packing_spec->accuracy = %ld\n", (long)packing_spec->accuracy); - grib_handle_delete(tmp); + grib_handle_delete(h_sample); *err = GRIB_INTERNAL_ERROR; goto cleanup; break; @@ -1498,13 +1501,13 @@ grib_handle* grib_util_set_spec2(grib_handle* h, } } /* grib_write_message(h,"input.grib","w"); */ - /* grib_write_message(tmp,"geo.grib","w"); */ - /* copy product and local sections from h to tmp handle and store in outh */ - if ((outh = grib_util_sections_copy(h, tmp, GRIB_SECTION_PRODUCT | GRIB_SECTION_LOCAL, err)) == NULL) { + /* grib_write_message(h_sample,"geo.grib","w"); */ + /* copy product and local sections from h to h_sample handle and store in h_out */ + if ((h_out = grib_util_sections_copy(h, h_sample, GRIB_SECTION_PRODUCT | GRIB_SECTION_LOCAL, err)) == NULL) { goto cleanup; } - grib_handle_delete(tmp); + grib_handle_delete(h_sample); Assert(*err == 0); /* Set "pl" array if provided (For reduced Gaussian grids) */ @@ -1520,7 +1523,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, } if (spec->pl_size != 0 && (spec->grid_type == GRIB_UTIL_GRID_SPEC_REDUCED_GG || spec->grid_type == GRIB_UTIL_GRID_SPEC_REDUCED_ROTATED_GG)) { - *err = grib_set_long_array(outh, "pl", spec->pl, spec->pl_size); + *err = grib_set_long_array(h_out, "pl", spec->pl, spec->pl_size); if (*err) { fprintf(stderr, "SET_GRID_DATA_DESCRIPTION: Cannot set pl %s\n", grib_get_error_message(*err)); goto cleanup; @@ -1544,23 +1547,23 @@ grib_handle* grib_util_set_spec2(grib_handle* h, /* Apply adjustments to bounding box if needed */ if (expandBoundingBox) { - if ((*err = expand_bounding_box(outh, values, count)) != 0) { + if ((*err = expand_bounding_box(h_out, values, count)) != 0) { fprintf(stderr, "SET_GRID_DATA_DESCRIPTION: Cannot expand bounding box: %s\n", grib_get_error_message(*err)); if (h->context->write_on_fail) - grib_write_message(outh, "error.grib", "w"); + grib_write_message(h_out, "error.grib", "w"); goto cleanup; } } if (convertEditionEarlier && packing_spec->editionNumber > 1) { - *err = grib_set_long(outh, "edition", packing_spec->editionNumber); + *err = grib_set_long(h_out, "edition", packing_spec->editionNumber); if (*err) { fprintf(stderr, "SET_GRID_DATA_DESCRIPTION: Cannot convert to edition %ld.\n", packing_spec->editionNumber); goto cleanup; } } - if ((*err = grib_set_values(outh, values, count)) != 0) { + if ((*err = grib_set_values(h_out, values, count)) != 0) { fprintf(stderr, "SET_GRID_DATA_DESCRIPTION: Cannot set key values: %s\n", grib_get_error_message(*err)); for (i = 0; i < count; i++) @@ -1569,7 +1572,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, goto cleanup; } - if ((*err = grib_set_double_array(outh, "values", data_values, data_values_count)) != 0) { + if ((*err = grib_set_double_array(h_out, "values", data_values, data_values_count)) != 0) { FILE* ferror; size_t ii, lcount; grib_context* c = grib_context_get_default(); @@ -1589,66 +1592,66 @@ grib_handle* grib_util_set_spec2(grib_handle* h, fprintf(ferror, "%g }", data_values[data_values_count - 1]); fclose(ferror); if (c->write_on_fail) - grib_write_message(outh, "error.grib", "w"); + grib_write_message(h_out, "error.grib", "w"); goto cleanup; } - /* grib_write_message(outh,"h.grib","w"); */ + /* grib_write_message(h_out,"h.grib","w"); */ /* if the field is empty GRIBEX is packing as simple*/ /* if (!strcmp(input_packing_type,"grid_simple_matrix")) { long numberOfValues; - grib_get_long(outh,"numberOfValues",&numberOfValues); + grib_get_long(h_out,"numberOfValues",&numberOfValues); if (numberOfValues==0) { slen=11; - grib_set_string(outh,"packingType","grid_simple",&slen); + grib_set_string(h_out,"packingType","grid_simple",&slen); } } */ if (grib1_high_resolution_fix) { /* GRIB-863: must set increments to MISSING */ /* increments are not coded in message but computed */ - if ((*err = grib_set_missing(outh, "iDirectionIncrement")) != 0) { + if ((*err = grib_set_missing(h_out, "iDirectionIncrement")) != 0) { fprintf(stderr, "GRIB_UTIL_SET_SPEC: Cannot set Di to missing: %s\n", grib_get_error_message(*err)); goto cleanup; } - if ((*err = grib_set_missing(outh, "jDirectionIncrement")) != 0) { + if ((*err = grib_set_missing(h_out, "jDirectionIncrement")) != 0) { fprintf(stderr, "GRIB_UTIL_SET_SPEC: Cannot set Dj to missing: %s\n", grib_get_error_message(*err)); goto cleanup; } } - /*grib_dump_content(outh, stdout,"debug", ~0, NULL);*/ + /*grib_dump_content(h_out, stdout,"debug", ~0, NULL);*/ /* convert to second_order if not constant field. (Also see ECC-326) */ if (setSecondOrder) { int constant = 0; double missingValue = 0; - grib_get_double(outh, "missingValue", &missingValue); + grib_get_double(h_out, "missingValue", &missingValue); constant = is_constant_field(missingValue, data_values, data_values_count); if (!constant) { if (editionNumber == 1) { long numberOfGroups = 0; - grib_handle* htmp = grib_handle_clone(outh); + grib_handle* htmp = grib_handle_clone(h_out); slen = 17; grib_set_string(htmp, "packingType", "grid_second_order", &slen); grib_get_long(htmp, "numberOfGroups", &numberOfGroups); /* GRIBEX is not able to decode overflown numberOfGroups with SPD */ - if (numberOfGroups > 65534 && outh->context->no_spd) { + if (numberOfGroups > 65534 && h_out->context->no_spd) { slen = 24; - grib_set_string(outh, "packingType", "grid_second_order_no_SPD", &slen); + grib_set_string(h_out, "packingType", "grid_second_order_no_SPD", &slen); grib_handle_delete(htmp); } else { - grib_handle_delete(outh); - outh = htmp; + grib_handle_delete(h_out); + h_out = htmp; } } else { slen = 17; - grib_set_string(outh, "packingType", "grid_second_order", &slen); - *err = grib_set_double_array(outh, "values", data_values, data_values_count); + grib_set_string(h_out, "packingType", "grid_second_order", &slen); + *err = grib_set_double_array(h_out, "values", data_values, data_values_count); if (*err != GRIB_SUCCESS) { fprintf(stderr, "GRIB_UTIL_SET_SPEC: setting data values failed! %s\n", grib_get_error_message(*err)); goto cleanup; @@ -1656,21 +1659,21 @@ grib_handle* grib_util_set_spec2(grib_handle* h, } } else { - if (outh->context->gribex_mode_on) { - outh->context->gribex_mode_on = 0; - grib_set_double_array(outh, "values", data_values, data_values_count); - outh->context->gribex_mode_on = 1; + if (h_out->context->gribex_mode_on) { + h_out->context->gribex_mode_on = 0; + grib_set_double_array(h_out, "values", data_values, data_values_count); + h_out->context->gribex_mode_on = 1; } } } if (packing_spec->editionNumber && packing_spec->editionNumber != editionNumber) { - *err = grib_set_long(outh, "edition", packing_spec->editionNumber); + *err = grib_set_long(h_out, "edition", packing_spec->editionNumber); if (*err != GRIB_SUCCESS) { fprintf(stderr, "GRIB_UTIL_SET_SPEC: Failed to change edition to %ld: %s\n", packing_spec->editionNumber, grib_get_error_message(*err)); if (h->context->write_on_fail) - grib_write_message(outh, "error.grib", "w"); + grib_write_message(h_out, "error.grib", "w"); goto cleanup; } } @@ -1679,7 +1682,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, /* ECC-353 */ /* JPEG packing is not available in GRIB edition 1 and has to be done AFTER we set data values */ if (setJpegPacking == 1) { - *err = grib_set_string(outh, "packingType", "grid_jpeg", &slen); + *err = grib_set_string(h_out, "packingType", "grid_jpeg", &slen); if (*err != GRIB_SUCCESS) { fprintf(stderr, "GRIB_UTIL_SET_SPEC: Failed to change packingType to JPEG: %s\n", grib_get_error_message(*err)); @@ -1687,7 +1690,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, } } if (setCcsdsPacking == 1) { - *err = grib_set_string(outh, "packingType", "grid_ccsds", &slen); + *err = grib_set_string(h_out, "packingType", "grid_ccsds", &slen); if (*err != GRIB_SUCCESS) { fprintf(stderr, "GRIB_UTIL_SET_SPEC: Failed to change packingType to CCSDS: %s\n", grib_get_error_message(*err)); @@ -1697,7 +1700,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, } if (packing_spec->deleteLocalDefinition) { - grib_set_long(outh, "deleteLocalDefinition", 1); + grib_set_long(h_out, "deleteLocalDefinition", 1); } /* ECC-445 */ @@ -1705,16 +1708,16 @@ grib_handle* grib_util_set_spec2(grib_handle* h, Assert(!global_grid); /* ECC-576: "global" should not be set */ } - if ((*err = check_geometry(outh, spec, data_values_count, global_grid)) != GRIB_SUCCESS) { + if ((*err = check_geometry(h_out, spec, data_values_count, global_grid)) != GRIB_SUCCESS) { fprintf(stderr, "GRIB_UTIL_SET_SPEC: Geometry check failed! %s\n", grib_get_error_message(*err)); if (h->context->write_on_fail) - grib_write_message(outh, "error.grib", "w"); + grib_write_message(h_out, "error.grib", "w"); goto cleanup; } /* Disable check: need to re-examine GRIB-864 */ #if 0 - if ( (*err = check_handle_against_spec(outh, editionNumber, spec, global_grid)) != GRIB_SUCCESS) + if ( (*err = check_handle_against_spec(h_out, editionNumber, spec, global_grid)) != GRIB_SUCCESS) { grib_context* c=grib_context_get_default(); @@ -1723,18 +1726,18 @@ grib_handle* grib_util_set_spec2(grib_handle* h, fprintf(stderr,"Note: in GRIB edition 1 latitude and longitude values cannot be represented with sub-millidegree precision.\n"); } if (c->write_on_fail) - grib_write_message(outh,"error.grib","w"); + grib_write_message(h_out,"error.grib","w"); goto cleanup; } #endif if (h->context->debug == -1) fprintf(stderr, "ECCODES DEBUG: grib_util_set_spec end\n"); - return outh; + return h_out; cleanup: - if (outh) - grib_handle_delete(outh); + if (h_out) + grib_handle_delete(h_out); return NULL; } From 11bdc7cdaf521cfdbdac3ecb267e367d5227c9c2 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 15 Feb 2021 19:41:08 +0000 Subject: [PATCH 325/683] fix template.4.44.def --- definitions/grib2/template.4.44.def | 1 - 1 file changed, 1 deletion(-) diff --git a/definitions/grib2/template.4.44.def b/definitions/grib2/template.4.44.def index 4e7315907..fa1bf2d74 100644 --- a/definitions/grib2/template.4.44.def +++ b/definitions/grib2/template.4.44.def @@ -8,7 +8,6 @@ include "grib2/template.4.parameter.def" include "grib2/template.4.aerosol.def" include "grib2/template.4.aerosol_size.def" -include "grib2/template.4.optical.def" include "grib2/template.4.generating_process.def" # GRIB-530: Special case for aerosol thanks to WMO error From 285720cc16909da9ab076c1b0847c6ffaa1b8ecf Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Tue, 16 Feb 2021 10:21:31 +0000 Subject: [PATCH 326/683] new template 4 component eps_cluster --- definitions/grib2/template.4.13.def | 10 +++------- definitions/grib2/template.4.14.def | 9 +++------ definitions/grib2/template.4.3.def | 11 ++++------- definitions/grib2/template.4.4.def | 9 +++------ definitions/grib2/template.4.eps_cluster.def | 5 +++++ 5 files changed, 18 insertions(+), 26 deletions(-) create mode 100644 definitions/grib2/template.4.eps_cluster.def diff --git a/definitions/grib2/template.4.13.def b/definitions/grib2/template.4.13.def index 6fbdd9543..b892c0d52 100644 --- a/definitions/grib2/template.4.13.def +++ b/definitions/grib2/template.4.13.def @@ -3,14 +3,10 @@ # TEMPLATE 4.13, Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.derived.def" include "grib2/template.4.rectangular_cluster.def" include "grib2/template.4.statistical.def" - -ensembleForecastNumbersList list(numberOfForecastsInTheCluster) { - unsigned[1] ensembleForecastNumbers : dump; -} - +include "grib2/template.4.eps_cluster.def" diff --git a/definitions/grib2/template.4.14.def b/definitions/grib2/template.4.14.def index c9c5a0ec7..853a0d5a9 100644 --- a/definitions/grib2/template.4.14.def +++ b/definitions/grib2/template.4.14.def @@ -3,13 +3,10 @@ # TEMPLATE 4.14, Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.derived.def" include "grib2/template.4.circular_cluster.def" include "grib2/template.4.statistical.def" - -ensembleForecastNumbersList list(numberOfForecastsInTheCluster) { - unsigned[1] ensembleForecastNumbers : dump; -} +include "grib2/template.4.eps_cluster.def" diff --git a/definitions/grib2/template.4.3.def b/definitions/grib2/template.4.3.def index 645cc1214..4c32231a2 100644 --- a/definitions/grib2/template.4.3.def +++ b/definitions/grib2/template.4.3.def @@ -3,13 +3,10 @@ # TEMPLATE 4.3, Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; -include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" +include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.derived.def" include "grib2/template.4.rectangular_cluster.def" - -ensembleForecastNumbersList list(numberOfForecastsInTheCluster) { - unsigned[1] ensembleForecastNumbers : dump; -} +include "grib2/template.4.eps_cluster.def" diff --git a/definitions/grib2/template.4.4.def b/definitions/grib2/template.4.4.def index 5509d92bd..b86e482c2 100644 --- a/definitions/grib2/template.4.4.def +++ b/definitions/grib2/template.4.4.def @@ -3,13 +3,10 @@ # TEMPLATE 4.4, Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.derived.def" include "grib2/template.4.circular_cluster.def" - -ensembleForecastNumbersList list(numberOfForecastsInTheCluster) { - unsigned[1] ensembleForecastNumbers : dump; -} +include "grib2/template.4.eps_cluster.def" diff --git a/definitions/grib2/template.4.eps_cluster.def b/definitions/grib2/template.4.eps_cluster.def new file mode 100644 index 000000000..5bd3f96dd --- /dev/null +++ b/definitions/grib2/template.4.eps_cluster.def @@ -0,0 +1,5 @@ +# (C) Copyright 2005- ECMWF. + +ensembleForecastNumbersList list(numberOfForecastsInTheCluster) { + unsigned[1] ensembleForecastNumbers : dump; +} From 831710f30df1228a6e53717e5fc546faca373c06 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Tue, 16 Feb 2021 11:56:36 +0000 Subject: [PATCH 327/683] cleanup of templates 4.53 and 4.54 --- definitions/grib2/template.4.53.def | 4 ++-- definitions/grib2/template.4.54.def | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/definitions/grib2/template.4.53.def b/definitions/grib2/template.4.53.def index 53888d9be..3faebb20d 100644 --- a/definitions/grib2/template.4.53.def +++ b/definitions/grib2/template.4.53.def @@ -6,8 +6,8 @@ include "grib2/template.4.parameter.def" include "grib2/template.4.partition.def" include "grib2/template.4.generating_process.def" include "grib2/template.4.forecast_time.def" -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" constant cat="cat"; alias mars.levtype=cat; diff --git a/definitions/grib2/template.4.54.def b/definitions/grib2/template.4.54.def index b0acf7941..9246a2845 100644 --- a/definitions/grib2/template.4.54.def +++ b/definitions/grib2/template.4.54.def @@ -2,7 +2,12 @@ # TEMPLATE 4.54, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters -include "grib2/template.4.53.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.partition.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" constant cat="cat"; From ed3e7c07edd9564adde683232bf751b486551f96 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Tue, 16 Feb 2021 11:57:34 +0000 Subject: [PATCH 328/683] cleanup of the templates for satellite in section 4 --- definitions/grib2/template.4.30.def | 24 ++++----------- definitions/grib2/template.4.31.def | 20 ++----------- definitions/grib2/template.4.311.def | 10 ++----- definitions/grib2/template.4.32.def | 26 +++-------------- definitions/grib2/template.4.33.def | 10 +++---- definitions/grib2/template.4.34.def | 10 +++---- definitions/grib2/template.4.35.def | 19 ++---------- definitions/grib2/template.4.satellite.def | 23 +++++++++++++++ definitions/grib2/template.4.satellite_30.def | 29 +++++++++++++++++++ 9 files changed, 79 insertions(+), 92 deletions(-) create mode 100644 definitions/grib2/template.4.satellite.def create mode 100644 definitions/grib2/template.4.satellite_30.def diff --git a/definitions/grib2/template.4.30.def b/definitions/grib2/template.4.30.def index 83bea6ae3..eef3b680d 100644 --- a/definitions/grib2/template.4.30.def +++ b/definitions/grib2/template.4.30.def @@ -1,28 +1,14 @@ # (C) Copyright 2005- ECMWF. -# For grib2 to grib1 conversion -constant dataRepresentationType = 90; - # TEMPLATE 4.30, Satellite Product - # Note: This template is deprecated. Template 4.31 should be used instead. -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; +include "grib2/template.4.parameter.def" + codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; +# Observation generating process identifier (defined by originating centre) unsigned[1] observationGeneratingProcessIdentifier : dump; -unsigned[1] NB : dump; -alias numberOfContributingSpectralBands=NB; +alias generatingProcessIdentifier=observationGeneratingProcessIdentifier; -if (new() || section4Length>14) { - listOfContributingSpectralBands list(numberOfContributingSpectralBands){ - unsigned[2] satelliteSeries; - unsigned[2] satelliteNumber; - unsigned[1] instrumentType; - unsigned[1] scaleFactorOfCentralWaveNumber = missing() : can_be_missing ; - unsigned[4] scaledValueOfCentralWaveNumber = missing() : can_be_missing ; - } -} +include "grib2/template.4.satellite_30.def" diff --git a/definitions/grib2/template.4.31.def b/definitions/grib2/template.4.31.def index 006d6ed44..b9efb8761 100644 --- a/definitions/grib2/template.4.31.def +++ b/definitions/grib2/template.4.31.def @@ -1,13 +1,8 @@ # (C) Copyright 2005- ECMWF. -# For grib2 to grib1 conversion -constant dataRepresentationType = 90; - # TEMPLATE 4.31, Satellite Product -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; + +include "grib2/template.4.parameter.def" codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; @@ -15,13 +10,4 @@ codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; unsigned[1] observationGeneratingProcessIdentifier : dump; alias generatingProcessIdentifier=observationGeneratingProcessIdentifier; -unsigned[1] NB : dump; -alias numberOfContributingSpectralBands=NB; - -listOfContributingSpectralBands list(numberOfContributingSpectralBands){ - unsigned[2] satelliteSeries : dump; - unsigned[2] satelliteNumber : dump; - unsigned[2] instrumentType : dump; - unsigned[1] scaleFactorOfCentralWaveNumber = missing() : dump,can_be_missing ; - unsigned[4] scaledValueOfCentralWaveNumber = missing() : dump,can_be_missing ; -} +include "grib2/template.4.satellite.def" diff --git a/definitions/grib2/template.4.311.def b/definitions/grib2/template.4.311.def index ab4a284fc..5119e18a2 100644 --- a/definitions/grib2/template.4.311.def +++ b/definitions/grib2/template.4.311.def @@ -1,18 +1,14 @@ # (C) Copyright 2005- ECMWF. -# For grib2 to grib1 conversion -constant dataRepresentationType = 90; - # TEMPLATE 4.311, Satellite Product Auxiliary Information -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; + +include "grib2/template.4.parameter.def" codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; # Observation generating process identifier (defined by originating centre) unsigned[1] observationGeneratingProcessIdentifier : dump; +alias generatingProcessIdentifier=observationGeneratingProcessIdentifier; unsigned[1] NB : dump; alias numberOfContributingSpectralBands=NB; diff --git a/definitions/grib2/template.4.32.def b/definitions/grib2/template.4.32.def index 813750ed4..b09e799f0 100644 --- a/definitions/grib2/template.4.32.def +++ b/definitions/grib2/template.4.32.def @@ -1,27 +1,9 @@ # (C) Copyright 2005- ECMWF. -# For grib2 to grib1 conversion -constant dataRepresentationType = 90; - # TEMPLATE 4.32, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; -include "grib2/template.4.point_in_time.def"; - -# Required for interpolation and MARS. The level type is used to decide whether to apply the Land Sea Mask -constant typeOfLevel="surface"; -constant levelType="surface"; -constant level=0; - -unsigned[1] NB : dump; -alias numberOfContributingSpectralBands=NB; - -listOfContributingSpectralBands list(numberOfContributingSpectralBands){ - unsigned[2] satelliteSeries : dump; - unsigned[2] satelliteNumber : dump; - unsigned[2] instrumentType : dump; - unsigned[1] scaleFactorOfCentralWaveNumber = missing() : dump,can_be_missing ; - unsigned[4] scaledValueOfCentralWaveNumber = missing() : dump,can_be_missing ; -} +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.satellite.def" diff --git a/definitions/grib2/template.4.33.def b/definitions/grib2/template.4.33.def index 9abe54bad..6a105c23f 100644 --- a/definitions/grib2/template.4.33.def +++ b/definitions/grib2/template.4.33.def @@ -2,9 +2,9 @@ # TEMPLATE 4.33, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data -include "grib2/template.4.32.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.satellite.def" include "grib2/template.4.eps.def" - -alias instrument = instrumentType; -alias ident = satelliteNumber; - diff --git a/definitions/grib2/template.4.34.def b/definitions/grib2/template.4.34.def index a523031ed..308074981 100644 --- a/definitions/grib2/template.4.34.def +++ b/definitions/grib2/template.4.34.def @@ -2,10 +2,10 @@ # TEMPLATE 4.34, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data -include "grib2/template.4.32.def" +include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.satellite.def" include "grib2/template.4.eps.def" include "grib2/template.4.statistical.def" - -alias instrument = instrumentType; -alias ident = satelliteNumber; - diff --git a/definitions/grib2/template.4.35.def b/definitions/grib2/template.4.35.def index 0f6fef804..39d3fac8b 100644 --- a/definitions/grib2/template.4.35.def +++ b/definitions/grib2/template.4.35.def @@ -1,14 +1,8 @@ # (C) Copyright 2005- ECMWF. -# For grib2 to grib1 conversion -constant dataRepresentationType = 90; - # TEMPLATE 4.35, satellite product with or without associated quality values -codetable[1] parameterCategory ('4.1.[discipline:l].table',masterDir,localDir) : dump; -codetable[1] parameterNumber ('4.2.[discipline:l].[parameterCategory:l].table',masterDir,localDir) : dump; -meta parameterUnits codetable_units(parameterNumber) : dump; -meta parameterName codetable_title(parameterNumber) : dump; +include "grib2/template.4.parameter.def" codetable[1] typeOfGeneratingProcess ('4.3.table',masterDir,localDir) : dump; @@ -18,13 +12,4 @@ alias generatingProcessIdentifier=observationGeneratingProcessIdentifier; codetable[1] qualityValueAssociatedWithParameter('4.16.table',masterDir,localDir) : dump; -unsigned[1] NB : dump; -alias numberOfContributingSpectralBands=NB; - -listOfContributingSpectralBands list(numberOfContributingSpectralBands){ - unsigned[2] satelliteSeries : dump; - unsigned[2] satelliteNumber : dump; - unsigned[2] instrumentType : dump; - unsigned[1] scaleFactorOfCentralWaveNumber = missing() : dump,can_be_missing ; - unsigned[4] scaledValueOfCentralWaveNumber = missing() : dump,can_be_missing ; -} +include "grib2/template.4.satellite.def" diff --git a/definitions/grib2/template.4.satellite.def b/definitions/grib2/template.4.satellite.def new file mode 100644 index 000000000..eb2bce3c2 --- /dev/null +++ b/definitions/grib2/template.4.satellite.def @@ -0,0 +1,23 @@ +# (C) Copyright 2005- ECMWF. + +# For grib2 to grib1 conversion +constant dataRepresentationType = 90; + +unsigned[1] NB : dump; +alias numberOfContributingSpectralBands=NB; + +listOfContributingSpectralBands list(numberOfContributingSpectralBands){ + unsigned[2] satelliteSeries : dump; + unsigned[2] satelliteNumber : dump; + unsigned[2] instrumentType : dump; + unsigned[1] scaleFactorOfCentralWaveNumber = missing() : dump,can_be_missing ; + unsigned[4] scaledValueOfCentralWaveNumber = missing() : dump,can_be_missing ; +} + +alias instrument = instrumentType; +alias ident = satelliteNumber; + +# Required for interpolation and MARS. The level type is used to decide whether to apply the Land Sea Mask +constant typeOfLevel="surface"; +constant levelType="surface"; +constant level=0; diff --git a/definitions/grib2/template.4.satellite_30.def b/definitions/grib2/template.4.satellite_30.def new file mode 100644 index 000000000..37ef75d1a --- /dev/null +++ b/definitions/grib2/template.4.satellite_30.def @@ -0,0 +1,29 @@ +# (C) Copyright 2005- ECMWF. + +# This is specific to template 4.30 where instrumentType is only coded on 1 octet instead of 2 +# /!\ DO NOT INCLUDE this anywhere else + +# For grib2 to grib1 conversion +constant dataRepresentationType = 90; + +unsigned[1] NB : dump; +alias numberOfContributingSpectralBands=NB; + +if (new() || section4Length>14) { +listOfContributingSpectralBands list(numberOfContributingSpectralBands){ + unsigned[2] satelliteSeries : dump; + unsigned[2] satelliteNumber : dump; + # this is specific to template 4.30 + unsigned[1] instrumentType : dump; + unsigned[1] scaleFactorOfCentralWaveNumber = missing() : dump,can_be_missing ; + unsigned[4] scaledValueOfCentralWaveNumber = missing() : dump,can_be_missing ; + } +} + +alias instrument = instrumentType; +alias ident = satelliteNumber; + +# Required for interpolation and MARS. The level type is used to decide whether to apply the Land Sea Mask +constant typeOfLevel="surface"; +constant levelType="surface"; +constant level=0; From 0e44f93d57f6672d17d76b2399e799a4f6e33898 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Tue, 16 Feb 2021 15:01:06 +0000 Subject: [PATCH 329/683] move definitions of contants/key into the partition component --- definitions/grib2/template.4.53.def | 4 ---- definitions/grib2/template.4.54.def | 4 ---- definitions/grib2/template.4.partition.def | 4 ++++ 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/definitions/grib2/template.4.53.def b/definitions/grib2/template.4.53.def index 3faebb20d..719887a80 100644 --- a/definitions/grib2/template.4.53.def +++ b/definitions/grib2/template.4.53.def @@ -8,7 +8,3 @@ include "grib2/template.4.generating_process.def" include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" - -constant cat="cat"; -alias mars.levtype=cat; -alias mars.levelist=partitionNumber; diff --git a/definitions/grib2/template.4.54.def b/definitions/grib2/template.4.54.def index 9246a2845..892940830 100644 --- a/definitions/grib2/template.4.54.def +++ b/definitions/grib2/template.4.54.def @@ -9,7 +9,3 @@ include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" - -constant cat="cat"; -alias mars.levtype=cat; -alias mars.levelist=partitionNumber; diff --git a/definitions/grib2/template.4.partition.def b/definitions/grib2/template.4.partition.def index bd14990c1..bdb9bc2f3 100644 --- a/definitions/grib2/template.4.partition.def +++ b/definitions/grib2/template.4.partition.def @@ -7,3 +7,7 @@ partitions list(numberOfPartitions) { } codetable[2] partitionNumber ('4.[partitionTable].table',masterDir,localDir) : dump; + +constant cat="cat"; +alias mars.levtype=cat; +alias mars.levelist=partitionNumber; From d848347fe0e6cf2b70ccd3123414a0449ac20287 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 16 Feb 2021 16:48:50 +0000 Subject: [PATCH 330/683] ECC-1202: GRIB CCSDS packing: fails if input packingType=grid_ieee --- src/grib_accessor_class_data_ccsds_packing.c | 29 ++++++++++++-------- tests/grib_ccsds.sh | 20 ++++++++++---- 2 files changed, 33 insertions(+), 16 deletions(-) diff --git a/src/grib_accessor_class_data_ccsds_packing.c b/src/grib_accessor_class_data_ccsds_packing.c index 37b59c7dc..600a3d6b3 100644 --- a/src/grib_accessor_class_data_ccsds_packing.c +++ b/src/grib_accessor_class_data_ccsds_packing.c @@ -324,7 +324,7 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) grib_accessor_data_ccsds_packing* self = (grib_accessor_data_ccsds_packing*)a; grib_handle* hand = grib_handle_of_accessor(a); - int err = GRIB_SUCCESS, i = 0; + int err = GRIB_SUCCESS, i = 0, is_constant_field = 0; size_t buflen = 0; unsigned char* buf = NULL; @@ -373,7 +373,23 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) return GRIB_SUCCESS; } - if (bits_per_value == 0) { /* constant field */ + max = val[0]; + min = max; + for (i = 1; i < n_vals; i++) { + if (val[i] > max) max = val[i]; + else if (val[i] < min) min = val[i]; + } + + if (min == max) { + is_constant_field = 1; + } else { + if (bits_per_value == 0) { + /* ECC-1202: A non-constant field with bitsPerValue==0! */ + bits_per_value = 24; /* Set sane value */ + } + } + + if (is_constant_field) { #ifdef DEBUG for (i = 1; i < n_vals; i++) { Assert(val[i] == val[0]); @@ -401,15 +417,6 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) return err; d = grib_power(decimal_scale_factor, 10); - - max = val[0]; - min = max; - for (i = 1; i < n_vals; i++) { - if (val[i] > max) - max = val[i]; - else if (val[i] < min) - min = val[i]; - } min *= d; max *= d; diff --git a/tests/grib_ccsds.sh b/tests/grib_ccsds.sh index c2c3263f3..374c994d3 100755 --- a/tests/grib_ccsds.sh +++ b/tests/grib_ccsds.sh @@ -32,10 +32,8 @@ ${tools_dir}/grib_set -r -s packingType=grid_ccsds $outfile1 $outfile2 ${tools_dir}/grib_compare -b $BLACKLIST $outfile1 $outfile2 > $REDIRECT templateNumber=`${tools_dir}/grib_get -p dataRepresentationTemplateNumber $outfile2` - -if [ $templateNumber -ne 42 ] -then - echo dataRepresentationTemplateNumber=$templateNumber +if [ $templateNumber -ne 42 ]; then + echo "dataRepresentationTemplateNumber=$templateNumber. Should be 42!" exit 1 fi @@ -58,7 +56,8 @@ res3=`${tools_dir}/grib_get '-F%1.2f' -p min,max,avg $outfile2` rm -f $outfile1 $outfile2 -# ECC-297 +# ECC-297: Basic support +# -------------------------------------- infile=${data_dir}/tigge_ecmwf.grib2 outfile1=$infile.tmp_ccsds.1 outfile2=$infile.tmp_ccsds.2 @@ -68,10 +67,21 @@ ${tools_dir}/grib_set -r -s packingType=grid_ccsds $outfile1 $outfile2 ${tools_dir}/grib_compare -c data:n $outfile1 $outfile2 # ECC-477: redundant error message during conversion +# --------------------------------------------------- infile=${data_dir}/ccsds.grib2 rm -f $outfile2 ${tools_dir}/grib_set -r -s packingType=grid_simple $infile $outfile1 >$outfile2 2>&1 # there should be no error messages printed (to stdout or stderr) [ ! -s $outfile2 ] +# ECC-1202: Check input packingType=grid_ieee +# -------------------------------------------- +infile=${data_dir}/grid_ieee.grib +${tools_dir}/grib_set -r -s packingType=grid_ccsds $infile $outfile1 +grib_check_key_equals $outfile1 packingType grid_ccsds +${tools_dir}/grib_set -r -s packingType=grid_simple $infile $outfile2 +${tools_dir}/grib_compare -c data:n $outfile1 $outfile2 + + +# Clean up rm -f $outfile1 $outfile2 From 189de0025fb8f7f2d6ef783ff0100ce7d989e296 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 16 Feb 2021 16:53:13 +0000 Subject: [PATCH 331/683] Refactoring --- src/grib_util.c | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) diff --git a/src/grib_util.c b/src/grib_util.c index c73cb7bfd..231162276 100644 --- a/src/grib_util.c +++ b/src/grib_util.c @@ -920,8 +920,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, /* Get edition number from input handle */ if ((*err = grib_get_long(h, "edition", &editionNumber)) != 0) { grib_context* c = grib_context_get_default(); - if (c->write_on_fail) - grib_write_message(h, "error.grib", "w"); + if (c->write_on_fail) grib_write_message(h, "error.grib", "w"); return NULL; } @@ -1027,10 +1026,8 @@ grib_handle* grib_util_set_spec2(grib_handle* h, if ((*err = grib_set_values(h, values, count)) != 0) { fprintf(stderr, "GRIB_UTIL_SET_SPEC: Cannot set values %s\n", grib_get_error_message(*err)); - for (i = 0; i < count; i++) - if (values[i].error) - fprintf(stderr, " %s %s\n", values[i].name, grib_get_error_message(values[i].error)); + if (values[i].error) fprintf(stderr, " %s %s\n", values[i].name, grib_get_error_message(values[i].error)); goto cleanup; } if (h->context->debug == -1) { @@ -1565,10 +1562,8 @@ grib_handle* grib_util_set_spec2(grib_handle* h, if ((*err = grib_set_values(h_out, values, count)) != 0) { fprintf(stderr, "SET_GRID_DATA_DESCRIPTION: Cannot set key values: %s\n", grib_get_error_message(*err)); - for (i = 0; i < count; i++) - if (values[i].error) - fprintf(stderr, " %s %s\n", values[i].name, grib_get_error_message(values[i].error)); + if (values[i].error) fprintf(stderr, " %s %s\n", values[i].name, grib_get_error_message(values[i].error)); goto cleanup; } @@ -1591,8 +1586,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, } fprintf(ferror, "%g }", data_values[data_values_count - 1]); fclose(ferror); - if (c->write_on_fail) - grib_write_message(h_out, "error.grib", "w"); + if (c->write_on_fail) grib_write_message(h_out, "error.grib", "w"); goto cleanup; } @@ -1717,21 +1711,17 @@ grib_handle* grib_util_set_spec2(grib_handle* h, /* Disable check: need to re-examine GRIB-864 */ #if 0 - if ( (*err = check_handle_against_spec(h_out, editionNumber, spec, global_grid)) != GRIB_SUCCESS) - { - + if ( (*err = check_handle_against_spec(h_out, editionNumber, spec, global_grid)) != GRIB_SUCCESS) { grib_context* c=grib_context_get_default(); fprintf(stderr,"GRIB_UTIL_SET_SPEC: Geometry check failed! %s\n", grib_get_error_message(*err)); if (editionNumber == 1) { fprintf(stderr,"Note: in GRIB edition 1 latitude and longitude values cannot be represented with sub-millidegree precision.\n"); } - if (c->write_on_fail) - grib_write_message(h_out,"error.grib","w"); + if (c->write_on_fail) grib_write_message(h_out,"error.grib","w"); goto cleanup; } #endif - if (h->context->debug == -1) - fprintf(stderr, "ECCODES DEBUG: grib_util_set_spec end\n"); + if (h->context->debug == -1) fprintf(stderr, "ECCODES DEBUG: grib_util_set_spec end\n"); return h_out; From 86a5fb5b891a317aeb240ea9ebbd5fdae81ecddf Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 16 Feb 2021 21:30:51 +0000 Subject: [PATCH 332/683] Fix test (grib2_productTemplates.sh) --- definitions/grib2/template.4.80.def | 13 +++---------- definitions/grib2/template.4.81.def | 6 +++--- 2 files changed, 6 insertions(+), 13 deletions(-) diff --git a/definitions/grib2/template.4.80.def b/definitions/grib2/template.4.80.def index 383553c8b..3ebee5d44 100644 --- a/definitions/grib2/template.4.80.def +++ b/definitions/grib2/template.4.80.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 4.80, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol with source/sink @@ -13,8 +6,8 @@ include "grib2/template.4.parameter.def" include "grib2/template.4.aerosol.def" include "grib2/template.4.source.def" include "grib2/template.4.aerosol_size.def" -include "grib2/template.4.source.def"; +include "grib2/template.4.optical.def" include "grib2/template.4.generating_process.def" include "grib2/template.4.forecast_time.def" -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.81.def b/definitions/grib2/template.4.81.def index 940c8a16e..8b4810cb7 100644 --- a/definitions/grib2/template.4.81.def +++ b/definitions/grib2/template.4.81.def @@ -6,9 +6,9 @@ include "grib2/template.4.parameter.def" include "grib2/template.4.aerosol.def" include "grib2/template.4.source.def" include "grib2/template.4.aerosol_size.def" -include "grib2/template.4.source.def"; +include "grib2/template.4.optical.def" include "grib2/template.4.generating_process.def" include "grib2/template.4.forecast_time.def" -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" From ad238cb45ee9f06114a9e3ad4a121a068c7f4848 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 17 Feb 2021 16:40:45 +0000 Subject: [PATCH 333/683] Fix crash in IEEE -> PNG conversion --- src/grib_accessor_class_data_png_packing.c | 39 ++++++++++++++++------ tests/grib_png.sh | 9 +++++ 2 files changed, 38 insertions(+), 10 deletions(-) diff --git a/src/grib_accessor_class_data_png_packing.c b/src/grib_accessor_class_data_png_packing.c index 9cea480a6..92bbf5ad3 100644 --- a/src/grib_accessor_class_data_png_packing.c +++ b/src/grib_accessor_class_data_png_packing.c @@ -365,11 +365,26 @@ cleanup: return err; } +static int is_constant(const double* values, size_t n_vals) +{ + int isConstant = 1; + double v = 0; + size_t i; + for (i = 0; i < n_vals; i++) { + if (i == 0) v = values[i]; + else if (v != values[i]) { + isConstant = 0; + break; + } + } + return isConstant; +} + static int pack_double(grib_accessor* a, const double* val, size_t* len) { grib_accessor_data_png_packing* self = (grib_accessor_data_png_packing*)a; - int err = GRIB_SUCCESS; + int err = GRIB_SUCCESS, is_constant_field = 0; int i, j; size_t buflen = 0; @@ -421,12 +436,18 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) return GRIB_SUCCESS; } - if (bits_per_value == 0) { - int i; - /* constant field */ - for (i = 1; i < n_vals; i++) - Assert(val[i] == val[0]); + is_constant_field = is_constant(val, n_vals); + if (!is_constant_field && bits_per_value==0) { + /* A non-constant field with bitsPerValue==0! */ + bits_per_value = 24; /* Set sane value */ + } + if (is_constant_field) { +#ifdef DEBUG + for (i = 1; i < n_vals; i++) { + Assert(val[i] == val[0]); + } +#endif if ((err = grib_set_double_internal(grib_handle_of_accessor(a), self->reference_value, val[0])) != GRIB_SUCCESS) return err; { @@ -491,10 +512,8 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) max = val[0]; min = max; for (i = 1; i < n_vals; i++) { - if (val[i] > max) - max = val[i]; - else if (val[i] < min) - min = val[i]; + if (val[i] > max) max = val[i]; + else if (val[i] < min) min = val[i]; } min *= d; max *= d; diff --git a/tests/grib_png.sh b/tests/grib_png.sh index 3babf0dc4..59f6fbf89 100755 --- a/tests/grib_png.sh +++ b/tests/grib_png.sh @@ -42,3 +42,12 @@ for file in $files; do rm -f $temp $temp1 $temp2 done + +# Conversion from IEEE to PNG +infile=${data_dir}/grid_ieee.grib +${tools_dir}/grib_set -r -s packingType=grid_png $infile $temp +# TODO: check results +grib_check_key_equals $temp packingType grid_png + + +rm -f $temp From 04608de87e287fdef88c3c078c307c2e89a4493a Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 17 Feb 2021 17:14:27 +0000 Subject: [PATCH 334/683] Testing: more tests on IEEE packed GRIBs --- tests/ieee.sh | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/tests/ieee.sh b/tests/ieee.sh index da2c5b050..77962d844 100755 --- a/tests/ieee.sh +++ b/tests/ieee.sh @@ -112,8 +112,21 @@ stats2=`${tools_dir}/grib_get -M -F%.3f -p min,max,avg $temp` # [ "$stats1" = "$stats2" ] -rm -f $temp +echo "Test changing precision ..." +# ---------------------------------- +infile=${data_dir}/grid_ieee.grib +grib_check_key_equals $infile 'precision,section7Length' '1 44005' +# Switch from 32bits to 64bits +${tools_dir}/grib_set -r -s precision=2 $infile $temp +grib_check_key_equals $temp 'precision,section7Length' '2 88005' +stats1=`${tools_dir}/grib_get -M -F%.3f -p skew,kurt $infile` +stats2=`${tools_dir}/grib_get -M -F%.3f -p skew,kurt $temp` +[ "$stats1" = "$stats2" ] + + + +rm -f $temp ################################## # Disabled for now. Infinite loop From d0c3e7d458a0ed82811c51517dd623da1bcd1762 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 18 Feb 2021 14:44:54 +0000 Subject: [PATCH 335/683] ECC-1203: GRIB2 Definitions: Refactor section 4 templates for better modularisation --- definitions/grib2/template.4.0.def | 10 ++++----- definitions/grib2/template.4.1.def | 6 ++--- definitions/grib2/template.4.10.def | 4 ++-- definitions/grib2/template.4.1000.def | 6 ++--- definitions/grib2/template.4.1001.def | 4 ++-- definitions/grib2/template.4.1002.def | 12 ++++------ definitions/grib2/template.4.11.def | 4 ++-- definitions/grib2/template.4.1100.def | 6 ++--- definitions/grib2/template.4.1101.def | 6 ++--- definitions/grib2/template.4.12.def | 4 ++-- definitions/grib2/template.4.15.def | 12 +++++----- definitions/grib2/template.4.2.def | 12 +++++----- definitions/grib2/template.4.5.def | 6 ++--- definitions/grib2/template.4.51.def | 6 ++--- definitions/grib2/template.4.53.def | 5 +++++ definitions/grib2/template.4.54.def | 5 +++++ definitions/grib2/template.4.57.def | 6 ++--- definitions/grib2/template.4.58.def | 2 +- definitions/grib2/template.4.6.def | 6 ++--- definitions/grib2/template.4.60.def | 6 ++--- definitions/grib2/template.4.61.def | 4 ++-- definitions/grib2/template.4.67.def | 2 +- definitions/grib2/template.4.68.def | 2 +- definitions/grib2/template.4.70.def | 12 +++++----- definitions/grib2/template.4.71.def | 10 ++++----- definitions/grib2/template.4.72.def | 8 +++---- definitions/grib2/template.4.73.def | 8 +++---- definitions/grib2/template.4.76.def | 6 ++--- definitions/grib2/template.4.77.def | 4 ++-- definitions/grib2/template.4.78.def | 2 +- definitions/grib2/template.4.79.def | 2 +- definitions/grib2/template.4.8.def | 4 ++-- definitions/grib2/template.4.86.def | 6 ++--- definitions/grib2/template.4.87.def | 4 ++-- definitions/grib2/template.4.88.def | 4 ++-- definitions/grib2/template.4.9.def | 4 ++-- definitions/grib2/template.4.91.def | 4 ++-- definitions/grib2/template.4.aerosol.def | 2 +- definitions/grib2/template.4.chemical.def | 2 +- definitions/grib2/template.4.partition.def | 6 ++--- definitions/grib2/template.5.3.def | 26 +++++++++++----------- definitions/grib2/template.5.42.def | 2 +- 42 files changed, 129 insertions(+), 123 deletions(-) diff --git a/definitions/grib2/template.4.0.def b/definitions/grib2/template.4.0.def index 511d301d5..d94c9e293 100644 --- a/definitions/grib2/template.4.0.def +++ b/definitions/grib2/template.4.0.def @@ -2,8 +2,8 @@ # TEMPLATE 4.0, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -include "grib2/template.4.parameter.def"; -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; +include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.1.def b/definitions/grib2/template.4.1.def index 7d012fb12..d075620be 100644 --- a/definitions/grib2/template.4.1.def +++ b/definitions/grib2/template.4.1.def @@ -3,8 +3,8 @@ # TEMPLATE 4.1, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; -include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" +include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" diff --git a/definitions/grib2/template.4.10.def b/definitions/grib2/template.4.10.def index d89e12526..1bcd610b0 100644 --- a/definitions/grib2/template.4.10.def +++ b/definitions/grib2/template.4.10.def @@ -3,8 +3,8 @@ # TEMPLATE 4.10, Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.percentile.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.1000.def b/definitions/grib2/template.4.1000.def index c88c42db8..a31654ff5 100644 --- a/definitions/grib2/template.4.1000.def +++ b/definitions/grib2/template.4.1000.def @@ -3,6 +3,6 @@ # TEMPLATE 4.1000, Cross section of analysis and forecast at a point in time include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; -include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" +include "grib2/template.4.point_in_time.def" diff --git a/definitions/grib2/template.4.1001.def b/definitions/grib2/template.4.1001.def index 9b3e8c27e..b0e1ca17e 100644 --- a/definitions/grib2/template.4.1001.def +++ b/definitions/grib2/template.4.1001.def @@ -3,6 +3,6 @@ # TEMPLATE 4.1001, Cross section of averaged or otherwise statistically processed analysis or forecast over a range of time include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.1002.def b/definitions/grib2/template.4.1002.def index 64e77ab53..08cac187c 100644 --- a/definitions/grib2/template.4.1002.def +++ b/definitions/grib2/template.4.1002.def @@ -3,23 +3,19 @@ # TEMPLATE 4.1002, Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" -# Horizontal dimension processed codetable[1] horizontalDimensionProcessed ('4.220.table',masterDir,localDir) : dump; -# Treatment of missing data (e.g. below ground) +# Treatment of missing data (e.g. below ground) codetable[1] treatmentOfMissingData ('4.221.table',masterDir,localDir) : dump; -# Type of statistical processing +# Type of statistical processing codetable[1] typeOfStatisticalProcessing ('4.10.table',masterDir,localDir) : dump; #alias typeOfStatisticalProcessing=stepType; -# Start of range unsigned[4] startOfRange : dump; - -# End of range unsigned[4] endOfRange : dump; # Number of values diff --git a/definitions/grib2/template.4.11.def b/definitions/grib2/template.4.11.def index e9f571b57..e1c00f940 100644 --- a/definitions/grib2/template.4.11.def +++ b/definitions/grib2/template.4.11.def @@ -3,8 +3,8 @@ # TEMPLATE 4.11, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.1100.def b/definitions/grib2/template.4.1100.def index 8b157c45d..76ebfc467 100644 --- a/definitions/grib2/template.4.1100.def +++ b/definitions/grib2/template.4.1100.def @@ -1,8 +1,8 @@ # (C) Copyright 2005- ECMWF. -# TEMPLATE 4.1100, Hovmöller-type grid with no averaging or other statistical processing +# TEMPLATE 4.1100, Hovmoller-type grid with no averaging or other statistical processing include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.1101.def b/definitions/grib2/template.4.1101.def index 8eb6278e8..ef9e951ed 100644 --- a/definitions/grib2/template.4.1101.def +++ b/definitions/grib2/template.4.1101.def @@ -1,9 +1,9 @@ # (C) Copyright 2005- ECMWF. -# TEMPLATE 4.1101, Hovmöller-type grid with averaging or other statistical processing +# TEMPLATE 4.1101, Hovmoller-type grid with averaging or other statistical processing include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.12.def b/definitions/grib2/template.4.12.def index 8ce009f65..4b72f29ed 100644 --- a/definitions/grib2/template.4.12.def +++ b/definitions/grib2/template.4.12.def @@ -3,8 +3,8 @@ # TEMPLATE 4.12, Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.derived.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.15.def b/definitions/grib2/template.4.15.def index 1310b5cba..9192d1154 100644 --- a/definitions/grib2/template.4.15.def +++ b/definitions/grib2/template.4.15.def @@ -2,12 +2,12 @@ # TEMPLATE 4.15, Average, accumulation, extreme values, or other statistically-processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time -include "grib2/template.4.parameter.def"; -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; +include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" + codetable[1] statisticalProcess 'grib2/tables/[tablesVersion]/4.10.table'; codetable[1] spatialProcessing 'grib2/tables/[tablesVersion]/4.15.table'; unsigned[1] numberOfPointsUsed; - diff --git a/definitions/grib2/template.4.2.def b/definitions/grib2/template.4.2.def index 13a9caa7a..d8cb73222 100644 --- a/definitions/grib2/template.4.2.def +++ b/definitions/grib2/template.4.2.def @@ -2,9 +2,9 @@ # TEMPLATE 4.2, Derived forecast based on all ensemble members at a horizontal level or in a horizontal layer at a point in time -include "grib2/template.4.parameter.def"; -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; -include "grib2/template.4.derived.def"; +include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.derived.def" diff --git a/definitions/grib2/template.4.5.def b/definitions/grib2/template.4.5.def index 8da5ab9a3..ea951b9e5 100644 --- a/definitions/grib2/template.4.5.def +++ b/definitions/grib2/template.4.5.def @@ -3,8 +3,8 @@ # TEMPLATE 4.5, Probability forecasts at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; -include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" +include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.probability.def" diff --git a/definitions/grib2/template.4.51.def b/definitions/grib2/template.4.51.def index f33fd2e51..64ce2c3f8 100644 --- a/definitions/grib2/template.4.51.def +++ b/definitions/grib2/template.4.51.def @@ -3,8 +3,8 @@ # TEMPLATE 4.51, Categorical forecasts at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; -include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" +include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.categorical.def" diff --git a/definitions/grib2/template.4.53.def b/definitions/grib2/template.4.53.def index 719887a80..fe5c05bc6 100644 --- a/definitions/grib2/template.4.53.def +++ b/definitions/grib2/template.4.53.def @@ -8,3 +8,8 @@ include "grib2/template.4.generating_process.def" include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" + + +constant cat="cat"; +alias mars.levtype=cat; +alias mars.levelist=partitionNumber; diff --git a/definitions/grib2/template.4.54.def b/definitions/grib2/template.4.54.def index 892940830..585e43d52 100644 --- a/definitions/grib2/template.4.54.def +++ b/definitions/grib2/template.4.54.def @@ -9,3 +9,8 @@ include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" + + +constant cat="cat"; +alias mars.levtype=cat; +alias mars.levelist=partitionNumber; diff --git a/definitions/grib2/template.4.57.def b/definitions/grib2/template.4.57.def index aa419d139..3647b7f65 100644 --- a/definitions/grib2/template.4.57.def +++ b/definitions/grib2/template.4.57.def @@ -4,8 +4,8 @@ include "grib2/template.4.parameter.def" include "grib2/template.4.chemical.def" -include "grib2/template.4.distribution.def"; +include "grib2/template.4.distribution.def" include "grib2/template.4.generating_process.def" include "grib2/template.4.forecast_time.def" -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.58.def b/definitions/grib2/template.4.58.def index ed6a008d8..aaa97cae5 100644 --- a/definitions/grib2/template.4.58.def +++ b/definitions/grib2/template.4.58.def @@ -4,7 +4,7 @@ include "grib2/template.4.parameter.def" include "grib2/template.4.chemical.def" -include "grib2/template.4.distribution.def"; +include "grib2/template.4.distribution.def" include "grib2/template.4.generating_process.def" include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def" diff --git a/definitions/grib2/template.4.6.def b/definitions/grib2/template.4.6.def index 3dbfc567d..ea94aa32b 100644 --- a/definitions/grib2/template.4.6.def +++ b/definitions/grib2/template.4.6.def @@ -3,8 +3,8 @@ # TEMPLATE 4.6, Percentile forecasts at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; -include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" +include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.percentile.def" diff --git a/definitions/grib2/template.4.60.def b/definitions/grib2/template.4.60.def index 999fff741..20ae96179 100644 --- a/definitions/grib2/template.4.60.def +++ b/definitions/grib2/template.4.60.def @@ -3,9 +3,9 @@ # TEMPLATE 4.60, Individual ensemble re-forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; -include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" +include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" include "grib2/template.4.reforecast.def" diff --git a/definitions/grib2/template.4.61.def b/definitions/grib2/template.4.61.def index 213487c7a..4fc3886e8 100644 --- a/definitions/grib2/template.4.61.def +++ b/definitions/grib2/template.4.61.def @@ -3,8 +3,8 @@ # TEMPLATE 4.61, Individual ensemble re-forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" include "grib2/template.4.reforecast.def" diff --git a/definitions/grib2/template.4.67.def b/definitions/grib2/template.4.67.def index 3c2571960..62f40d4fe 100644 --- a/definitions/grib2/template.4.67.def +++ b/definitions/grib2/template.4.67.def @@ -4,7 +4,7 @@ include "grib2/template.4.parameter.def" include "grib2/template.4.chemical.def" -include "grib2/template.4.distribution.def"; +include "grib2/template.4.distribution.def" include "grib2/template.4.generating_process.def" include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.68.def b/definitions/grib2/template.4.68.def index 8f7c6c82a..60835b947 100644 --- a/definitions/grib2/template.4.68.def +++ b/definitions/grib2/template.4.68.def @@ -4,7 +4,7 @@ include "grib2/template.4.parameter.def" include "grib2/template.4.chemical.def" -include "grib2/template.4.distribution.def"; +include "grib2/template.4.distribution.def" include "grib2/template.4.generating_process.def" include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.70.def b/definitions/grib2/template.4.70.def index 59cad3c21..520106a26 100644 --- a/definitions/grib2/template.4.70.def +++ b/definitions/grib2/template.4.70.def @@ -2,9 +2,9 @@ # EFAS: Analysis or forecast at a horizontal level or in a horizontal layer at a point in time -include "grib2/template.4.parameter.def"; -include "grib2/template.4.postproc.def"; -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; +include "grib2/template.4.parameter.def" +include "grib2/template.4.postproc.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.71.def b/definitions/grib2/template.4.71.def index 5a401d796..f91f2e366 100644 --- a/definitions/grib2/template.4.71.def +++ b/definitions/grib2/template.4.71.def @@ -2,10 +2,10 @@ # EFAS: Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time -include "grib2/template.4.parameter.def"; -include "grib2/template.4.postproc.def"; -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; -include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.parameter.def" +include "grib2/template.4.postproc.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" +include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" diff --git a/definitions/grib2/template.4.72.def b/definitions/grib2/template.4.72.def index 5947d08e8..ba6ad7da9 100644 --- a/definitions/grib2/template.4.72.def +++ b/definitions/grib2/template.4.72.def @@ -2,9 +2,9 @@ # EFAS: Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -include "grib2/template.4.parameter.def"; -include "grib2/template.4.postproc.def"; -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; +include "grib2/template.4.parameter.def" +include "grib2/template.4.postproc.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.73.def b/definitions/grib2/template.4.73.def index 08683a0d9..535d7ba4e 100644 --- a/definitions/grib2/template.4.73.def +++ b/definitions/grib2/template.4.73.def @@ -2,10 +2,10 @@ # EFAS: Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -include "grib2/template.4.parameter.def"; -include "grib2/template.4.postproc.def"; -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; +include "grib2/template.4.parameter.def" +include "grib2/template.4.postproc.def" +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.76.def b/definitions/grib2/template.4.76.def index fe2cd344a..11ff6b277 100644 --- a/definitions/grib2/template.4.76.def +++ b/definitions/grib2/template.4.76.def @@ -4,8 +4,8 @@ include "grib2/template.4.parameter.def" include "grib2/template.4.chemical.def" -include "grib2/template.4.source.def"; +include "grib2/template.4.source.def" include "grib2/template.4.generating_process.def" include "grib2/template.4.forecast_time.def" -include "grib2/template.4.point_in_time.def"; -include "grib2/template.4.horizontal.def"; +include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.77.def b/definitions/grib2/template.4.77.def index 388c823eb..5690c99eb 100644 --- a/definitions/grib2/template.4.77.def +++ b/definitions/grib2/template.4.77.def @@ -4,9 +4,9 @@ include "grib2/template.4.parameter.def" include "grib2/template.4.chemical.def" -include "grib2/template.4.source.def"; +include "grib2/template.4.source.def" include "grib2/template.4.generating_process.def" include "grib2/template.4.forecast_time.def" -include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" diff --git a/definitions/grib2/template.4.78.def b/definitions/grib2/template.4.78.def index f42319718..88a383062 100644 --- a/definitions/grib2/template.4.78.def +++ b/definitions/grib2/template.4.78.def @@ -4,7 +4,7 @@ include "grib2/template.4.parameter.def" include "grib2/template.4.chemical.def" -include "grib2/template.4.source.def"; +include "grib2/template.4.source.def" include "grib2/template.4.generating_process.def" include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.79.def b/definitions/grib2/template.4.79.def index 95dd0ee30..0a7ba48c7 100644 --- a/definitions/grib2/template.4.79.def +++ b/definitions/grib2/template.4.79.def @@ -4,7 +4,7 @@ include "grib2/template.4.parameter.def" include "grib2/template.4.chemical.def" -include "grib2/template.4.source.def"; +include "grib2/template.4.source.def" include "grib2/template.4.generating_process.def" include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" diff --git a/definitions/grib2/template.4.8.def b/definitions/grib2/template.4.8.def index 9ca5b7383..8b14b6536 100644 --- a/definitions/grib2/template.4.8.def +++ b/definitions/grib2/template.4.8.def @@ -3,7 +3,7 @@ # TEMPLATE 4.8, Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.86.def b/definitions/grib2/template.4.86.def index 4c38cffc5..957fa492a 100644 --- a/definitions/grib2/template.4.86.def +++ b/definitions/grib2/template.4.86.def @@ -3,8 +3,8 @@ # TEMPLATE 4.86, Quantile forecasts at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; -include "grib2/template.4.point_in_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" +include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.quantile.def" diff --git a/definitions/grib2/template.4.87.def b/definitions/grib2/template.4.87.def index 511f31c6e..b8e264e0f 100644 --- a/definitions/grib2/template.4.87.def +++ b/definitions/grib2/template.4.87.def @@ -3,8 +3,8 @@ # TEMPLATE 4.87, Quantile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.quantile.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.88.def b/definitions/grib2/template.4.88.def index 745b2e631..8fd7405c1 100644 --- a/definitions/grib2/template.4.88.def +++ b/definitions/grib2/template.4.88.def @@ -3,7 +3,7 @@ # TEMPLATE 4.88, Analysis or Forecast at a horizontal level or in a horizontal layer at a local time include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -# no template.4.forecast_time.def component in this tempalte. +include "grib2/template.4.generating_process.def" +# no template.4.forecast_time.def component in this template. include "grib2/template.4.horizontal.def" include "grib2/template.4.localtime.def" diff --git a/definitions/grib2/template.4.9.def b/definitions/grib2/template.4.9.def index 79ba81a86..62774df29 100644 --- a/definitions/grib2/template.4.9.def +++ b/definitions/grib2/template.4.9.def @@ -3,8 +3,8 @@ # TEMPLATE 4.9, Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.probability.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.91.def b/definitions/grib2/template.4.91.def index 271d8b73a..207ecd911 100644 --- a/definitions/grib2/template.4.91.def +++ b/definitions/grib2/template.4.91.def @@ -3,8 +3,8 @@ # TEMPLATE 4.91, Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" -include "grib2/template.4.generating_process.def"; -include "grib2/template.4.forecast_time.def"; +include "grib2/template.4.generating_process.def" +include "grib2/template.4.forecast_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.categorical.def" include "grib2/template.4.statistical.def" diff --git a/definitions/grib2/template.4.aerosol.def b/definitions/grib2/template.4.aerosol.def index dca13f766..31b8a01f5 100644 --- a/definitions/grib2/template.4.aerosol.def +++ b/definitions/grib2/template.4.aerosol.def @@ -1,4 +1,4 @@ # (C) Copyright 2005- ECMWF. -# Atmospheric chemical or physical constitutent type +# Atmospheric chemical or physical constituent type codetable[2] aerosolType ('4.233.table',masterDir,localDir) : dump; diff --git a/definitions/grib2/template.4.chemical.def b/definitions/grib2/template.4.chemical.def index 4c49d7dc0..1a5ebf694 100644 --- a/definitions/grib2/template.4.chemical.def +++ b/definitions/grib2/template.4.chemical.def @@ -1,5 +1,5 @@ # (C) Copyright 2005- ECMWF. -# Atmospheric chemical or physical constitutent type +# Atmospheric chemical or physical constituent type codetable[2] constituentType ('4.230.table',masterDir,localDir) : dump; meta constituentTypeName codetable_title(constituentType); diff --git a/definitions/grib2/template.4.partition.def b/definitions/grib2/template.4.partition.def index bdb9bc2f3..4a08f835a 100644 --- a/definitions/grib2/template.4.partition.def +++ b/definitions/grib2/template.4.partition.def @@ -8,6 +8,6 @@ partitions list(numberOfPartitions) { codetable[2] partitionNumber ('4.[partitionTable].table',masterDir,localDir) : dump; -constant cat="cat"; -alias mars.levtype=cat; -alias mars.levelist=partitionNumber; +#constant cat="cat"; +#alias mars.levtype=cat; +#alias mars.levelist=partitionNumber; diff --git a/definitions/grib2/template.5.3.def b/definitions/grib2/template.5.3.def index c2d00ef45..f825ca270 100644 --- a/definitions/grib2/template.5.3.def +++ b/definitions/grib2/template.5.3.def @@ -5,47 +5,47 @@ include "grib2/template.5.packing.def"; include "grib2/template.5.original_values.def"; -# Group splitting method used +# Group splitting method used codetable[1] groupSplittingMethodUsed ('5.4.table',masterDir,localDir); -# Missing value management used +# Missing value management used codetable[1] missingValueManagementUsed ('5.5.table',masterDir,localDir); -# Primary missing value substitute +# Primary missing value substitute unsigned[4] primaryMissingValueSubstitute ; -# Secondary missing value substitute +# Secondary missing value substitute unsigned[4] secondaryMissingValueSubstitute ; -# NG - Number of groups of data values into which field is split +# NG - Number of groups of data values into which field is split unsigned[4] numberOfGroupsOfDataValues ; alias NG = numberOfGroupsOfDataValues; -# Reference for group widths +# Reference for group widths unsigned[1] referenceForGroupWidths ; -# Number of bits used for the group widths +# Number of bits used for the group widths # (after the reference value in octet 36 has been removed) unsigned[1] numberOfBitsUsedForTheGroupWidths ; -# Reference for group lengths +# Reference for group lengths unsigned[4] referenceForGroupLengths ; -# Length increment for the group lengths +# Length increment for the group lengths unsigned[1] lengthIncrementForTheGroupLengths ; -# True length of last group +# True length of last group unsigned[4] trueLengthOfLastGroup ; -# Number of bits used for the scaled group lengths +# Number of bits used for the scaled group lengths # (after subtraction of the reference value given in octets 38-41 and division # by the length increment given in octet 42) unsigned[1] numberOfBitsForScaledGroupLengths ; alias numberOfBitsUsedForTheScaledGroupLengths=numberOfBitsForScaledGroupLengths; -# Order of spatial differencing +# Order of spatial differencing codetable[1] orderOfSpatialDifferencing ('5.6.table',masterDir,localDir); -# Number of octets required in the Data Section to specify extra descriptors needed for spatial differencing +# Number of octets required in the Data Section to specify extra descriptors needed for spatial differencing # (octets 6-ww in Data Template 7.3) unsigned[1] numberOfOctetsExtraDescriptors ; diff --git a/definitions/grib2/template.5.42.def b/definitions/grib2/template.5.42.def index 2caa260fb..a2ad605af 100644 --- a/definitions/grib2/template.5.42.def +++ b/definitions/grib2/template.5.42.def @@ -12,7 +12,7 @@ flagbit AEC_DATA_SIGNED_OPTION_MASK(ccsdsFlags,0) = 0; # AEC_DATA_3BYTE_OPTION_MASK was switched on in order to allow data stored # with 17 <=bitsPerValue<= 24 to be stored in 3 rather than 4 bytes. -# This eliminates discretization errors that were occuring when it was off. +# This eliminates discretization errors that were occurring when it was off. flagbit AEC_DATA_3BYTE_OPTION_MASK(ccsdsFlags,1) = 1; flagbit AEC_DATA_MSB_OPTION_MASK(ccsdsFlags,2) = 1; From 4c750b47a93c5baefb5c6f8ac511b8ea9078ad9d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 18 Feb 2021 18:02:49 +0000 Subject: [PATCH 336/683] Definitions: update for pre-operational GRIB2 tables v27 (release candidate) --- definitions/grib2/tables/27/4.0.table | 2 +- definitions/grib2/tables/27/4.2.0.0.table | 2 +- definitions/grib2/tables/27/4.2.0.1.table | 11 ++++++----- definitions/grib2/tables/27/4.2.0.13.table | 2 +- definitions/grib2/tables/27/4.2.0.14.table | 2 +- definitions/grib2/tables/27/4.2.0.15.table | 2 +- definitions/grib2/tables/27/4.2.0.16.table | 2 +- definitions/grib2/tables/27/4.2.0.18.table | 4 ++-- definitions/grib2/tables/27/4.2.0.190.table | 2 +- definitions/grib2/tables/27/4.2.0.191.table | 2 +- definitions/grib2/tables/27/4.2.0.2.table | 2 +- definitions/grib2/tables/27/4.2.0.20.table | 6 +++--- definitions/grib2/tables/27/4.2.0.3.table | 2 +- definitions/grib2/tables/27/4.2.0.4.table | 4 ++-- definitions/grib2/tables/27/4.2.0.5.table | 2 +- definitions/grib2/tables/27/4.2.0.6.table | 4 ++-- definitions/grib2/tables/27/4.2.0.7.table | 2 +- definitions/grib2/tables/27/4.2.1.0.table | 2 +- definitions/grib2/tables/27/4.2.1.1.table | 2 +- definitions/grib2/tables/27/4.2.1.2.table | 4 ++++ definitions/grib2/tables/27/4.2.10.0.table | 9 ++++++++- definitions/grib2/tables/27/4.2.10.1.table | 2 +- definitions/grib2/tables/27/4.2.10.191.table | 5 +++-- definitions/grib2/tables/27/4.2.10.2.table | 3 ++- definitions/grib2/tables/27/4.2.10.3.table | 10 +++++++++- definitions/grib2/tables/27/4.2.10.4.table | 10 ++++++++-- definitions/grib2/tables/27/4.2.2.0.table | 3 ++- definitions/grib2/tables/27/4.2.2.3.table | 3 ++- definitions/grib2/tables/27/4.2.2.4.table | 10 +++++----- definitions/grib2/tables/27/4.2.2.5.table | 2 +- definitions/grib2/tables/27/4.2.20.0.table | 2 +- definitions/grib2/tables/27/4.2.20.1.table | 2 +- definitions/grib2/tables/27/4.2.20.2.table | 2 +- definitions/grib2/tables/27/4.2.3.0.table | 2 +- definitions/grib2/tables/27/4.2.3.1.table | 8 ++++---- definitions/grib2/tables/27/4.2.4.0.table | 2 +- definitions/grib2/tables/27/4.2.4.1.table | 2 +- definitions/grib2/tables/27/4.2.4.10.table | 2 +- definitions/grib2/tables/27/4.2.4.2.table | 2 +- definitions/grib2/tables/27/4.2.4.3.table | 2 +- definitions/grib2/tables/27/4.2.4.4.table | 2 +- definitions/grib2/tables/27/4.2.4.5.table | 2 +- definitions/grib2/tables/27/4.2.4.6.table | 2 +- definitions/grib2/tables/27/4.2.4.7.table | 2 +- definitions/grib2/tables/27/4.2.4.8.table | 2 +- definitions/grib2/tables/27/4.2.4.9.table | 2 +- definitions/grib2/tables/27/4.201.table | 4 ++-- definitions/grib2/tables/27/4.202.table | 2 +- definitions/grib2/tables/27/4.203.table | 2 +- definitions/grib2/tables/27/4.204.table | 2 +- definitions/grib2/tables/27/4.205.table | 2 +- definitions/grib2/tables/27/4.206.table | 2 +- definitions/grib2/tables/27/4.207.table | 2 +- definitions/grib2/tables/27/4.208.table | 2 +- definitions/grib2/tables/27/4.209.table | 4 ++-- definitions/grib2/tables/27/4.210.table | 2 +- definitions/grib2/tables/27/4.211.table | 2 +- definitions/grib2/tables/27/4.212.table | 4 ++-- definitions/grib2/tables/27/4.213.table | 4 ++-- definitions/grib2/tables/27/4.214.table | 2 +- definitions/grib2/tables/27/4.215.table | 6 +++--- definitions/grib2/tables/27/4.216.table | 2 +- definitions/grib2/tables/27/4.217.table | 2 +- definitions/grib2/tables/27/4.218.table | 4 ++-- definitions/grib2/tables/27/4.219.table | 2 +- definitions/grib2/tables/27/4.220.table | 2 +- definitions/grib2/tables/27/4.221.table | 2 +- definitions/grib2/tables/27/4.222.table | 2 +- definitions/grib2/tables/27/4.224.table | 16 ++++++++-------- definitions/grib2/tables/27/4.227.table | 2 +- definitions/grib2/tables/27/4.228.table | 2 +- definitions/grib2/tables/27/4.238.table | 2 +- definitions/grib2/tables/27/4.240.table | 2 +- definitions/grib2/tables/27/4.241.table | 2 +- definitions/grib2/tables/27/4.242.table | 4 ++-- definitions/grib2/tables/27/4.243.table | 4 ++-- definitions/grib2/tables/27/4.244.table | 2 +- definitions/grib2/tables/27/4.246.table | 2 +- definitions/grib2/tables/27/4.247.table | 2 +- definitions/grib2/tables/27/4.248.table | 3 ++- definitions/grib2/tables/27/4.3.table | 9 ++++++--- definitions/grib2/tables/27/4.5.table | 2 +- definitions/grib2/tables/27/5.0.table | 10 +++++----- definitions/grib2/tables/27/5.1.table | 2 +- definitions/grib2/tables/27/5.2.table | 4 ++-- definitions/grib2/tables/27/5.25.table | 8 ++++---- definitions/grib2/tables/27/5.26.table | 2 +- definitions/grib2/tables/27/5.3.table | 2 +- definitions/grib2/tables/27/5.4.table | 2 +- definitions/grib2/tables/27/5.40.table | 2 +- definitions/grib2/tables/27/5.5.table | 2 +- definitions/grib2/tables/27/5.6.table | 4 ++-- definitions/grib2/tables/27/5.7.table | 4 ++-- 93 files changed, 172 insertions(+), 138 deletions(-) diff --git a/definitions/grib2/tables/27/4.0.table b/definitions/grib2/tables/27/4.0.table index aa071fcb4..d0aaa8330 100644 --- a/definitions/grib2/tables/27/4.0.table +++ b/definitions/grib2/tables/27/4.0.table @@ -70,7 +70,7 @@ 85 85 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol 86 86 Quantile forecasts at a horizontal level or in a horizontal layer at a point in time 87 87 Quantile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval -88 88 Analysis or Forecast at a horizontal level or in a horizontal layer at a local time +88 88 Analysis or forecast at a horizontal level or in a horizontal layer at a specified local time # 89-90 Reserved 91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval # 92-253 Reserved diff --git a/definitions/grib2/tables/27/4.2.0.0.table b/definitions/grib2/tables/27/4.2.0.0.table index 4844c33f3..f361355b7 100644 --- a/definitions/grib2/tables/27/4.2.0.0.table +++ b/definitions/grib2/tables/27/4.2.0.0.table @@ -31,6 +31,6 @@ 29 29 Temperature advection (K s-1) 30 30 Latent heat net flux due to evaporation (W m-2) 31 31 Latent heat net flux due to sublimation (W m-2) -# 32-191 Reserved +# 32-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.1.table b/definitions/grib2/tables/27/4.2.0.1.table index 58d32d867..cc1c7cff3 100644 --- a/definitions/grib2/tables/27/4.2.0.1.table +++ b/definitions/grib2/tables/27/4.2.0.1.table @@ -62,7 +62,7 @@ 60 60 Snow depth water equivalent (kg m-2) 61 61 Snow density (kg m-3) 62 62 Snow evaporation (kg m-2) -63 63 Reserved +63 63 Reserved 64 64 Total column integrated water vapour (kg m-2) 65 65 Rain precipitation rate (kg m-2 s-1) 66 66 Snow precipitation rate (kg m-2 s-1) @@ -126,7 +126,7 @@ 124 124 Presence of showers (Code table 4.222) 125 125 Presence of blowing snow (Code table 4.222) 126 126 Presence of blizzard (Code table 4.222) -127 127 Ice pellets (non water equivalent) precipitation rate (m/s) +127 127 Ice pellets (non-water equivalent) precipitation rate (m/s) 128 128 Total solid precipitation rate (kg m-2 s-1) 129 129 Effective radius of cloud water (m) 130 130 Effective radius of rain (m) @@ -143,8 +143,9 @@ 141 141 Effective aspect ratio of hail (-) 142 142 Effective aspect ratio of subgrid ice clouds (-) 143 143 Potential evaporation rate (kg m–2 s–1) -144 144 specific rain water content (convective) (kg kg-1) -145 145 specific snow water content (convective) (kg kg-1) -# 146-191 Reserved +144 144 Specific rain water content (convective) (kg kg-1) +145 145 Specific snow water content (convective) (kg kg-1) +146 146 Cloud ice precipitation rate (kg m-2 s-1) +# 147-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.13.table b/definitions/grib2/tables/27/4.2.0.13.table index 5086101ad..926b454e3 100644 --- a/definitions/grib2/tables/27/4.2.0.13.table +++ b/definitions/grib2/tables/27/4.2.0.13.table @@ -1,5 +1,5 @@ # Code table 4.2 - Parameter number by product discipline and parameter category 0 0 Aerosol type (Code table 4.205) -# 1-191 Reserved +# 1-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.14.table b/definitions/grib2/tables/27/4.2.0.14.table index 215884737..8ce11f812 100644 --- a/definitions/grib2/tables/27/4.2.0.14.table +++ b/definitions/grib2/tables/27/4.2.0.14.table @@ -2,6 +2,6 @@ 0 0 Total ozone (DU) 1 1 Ozone mixing ratio (kg/kg) 2 2 Total column integrated ozone (DU) -# 3-191 Reserved +# 3-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.15.table b/definitions/grib2/tables/27/4.2.0.15.table index dfbc4d12f..80433a87d 100644 --- a/definitions/grib2/tables/27/4.2.0.15.table +++ b/definitions/grib2/tables/27/4.2.0.15.table @@ -16,6 +16,6 @@ 14 14 Reflectivity of hail (dB) 15 15 Hybrid scan reflectivity (dB) 16 16 Hybrid scan reflectivity height (m) -# 17-191 Reserved +# 17-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.16.table b/definitions/grib2/tables/27/4.2.0.16.table index 0c240a853..cb2021683 100644 --- a/definitions/grib2/tables/27/4.2.0.16.table +++ b/definitions/grib2/tables/27/4.2.0.16.table @@ -5,6 +5,6 @@ 3 3 Echo top (m) 4 4 Reflectivity (dB) 5 5 Composite reflectivity (dB) -# 6-191 Reserved +# 6-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.18.table b/definitions/grib2/tables/27/4.2.0.18.table index 9d106f419..fda683983 100644 --- a/definitions/grib2/tables/27/4.2.0.18.table +++ b/definitions/grib2/tables/27/4.2.0.18.table @@ -8,7 +8,7 @@ 6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) 7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) 8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) -9 9 Reserved +9 9 Reserved 10 10 Air concentration (Bq m-3) 11 11 Wet deposition (Bq m-2) 12 12 Dry deposition (Bq m-2) @@ -18,6 +18,6 @@ 16 16 Height of maximum air concentration (m) 17 17 Column-integrated air concentration (Bq m-2) 18 18 Column-averaged air concentration in layer (Bq m-3) -# 19-191 Reserved +# 19-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.190.table b/definitions/grib2/tables/27/4.2.0.190.table index de621a924..2e622fe9a 100644 --- a/definitions/grib2/tables/27/4.2.0.190.table +++ b/definitions/grib2/tables/27/4.2.0.190.table @@ -1,5 +1,5 @@ # Code table 4.2 - Parameter number by product discipline and parameter category 0 0 Arbitrary text string (CCITT IA5) -# 1-191 Reserved +# 1-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.191.table b/definitions/grib2/tables/27/4.2.0.191.table index e3bba0ebe..e580fb466 100644 --- a/definitions/grib2/tables/27/4.2.0.191.table +++ b/definitions/grib2/tables/27/4.2.0.191.table @@ -3,6 +3,6 @@ 1 1 Geographical latitude (deg N) 2 2 Geographical longitude (deg E) 3 3 Days since last observation (d) -# 4-191 Reserved +# 4-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.2.table b/definitions/grib2/tables/27/4.2.0.2.table index 5446262e6..9ff2cb2cd 100644 --- a/definitions/grib2/tables/27/4.2.0.2.table +++ b/definitions/grib2/tables/27/4.2.0.2.table @@ -46,6 +46,6 @@ 44 44 Geostrophic wind speed (m s-1) 45 45 Unbalanced component of divergence (s-1) 46 46 Vorticity advection (s-2) -# 47-191 Reserved +# 47-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.20.table b/definitions/grib2/tables/27/4.2.0.20.table index 042732760..842ff478c 100644 --- a/definitions/grib2/tables/27/4.2.0.20.table +++ b/definitions/grib2/tables/27/4.2.0.20.table @@ -17,7 +17,7 @@ 15 15 Dry deposition velocity (m/s) 16 16 Mass mixing ratio with respect to dry air (kg/kg) 17 17 Mass mixing ratio with respect to wet air (kg/kg) -# 18-49 Reserved +# 18-49 Reserved 50 50 Amount in atmosphere (mol) 51 51 Concentration in air (mol m-3) 52 52 Volume mixing ratio (fraction in air) (mol/mol) @@ -46,7 +46,7 @@ 75 75 Wildfire flux (kg m-2 s-1) 76 76 Emission rate (kg kg-1 s-1) 77 77 Surface emission flux (kg m-2 s-1) -# 78-99 Reserved +# 78-99 Reserved 100 100 Surface area density (aerosol) (/m) 101 101 Vertical visual range (m) 102 102 Aerosol optical thickness (Numeric) @@ -59,6 +59,6 @@ 109 109 Aerosol lidar extinction from satellite (/m) 110 110 Aerosol lidar extinction from the ground (/m) 111 111 Angstrom exponent (Numeric) -# 112-191 Reserved +# 112-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.3.table b/definitions/grib2/tables/27/4.2.0.3.table index 34941dcab..87113fc8c 100644 --- a/definitions/grib2/tables/27/4.2.0.3.table +++ b/definitions/grib2/tables/27/4.2.0.3.table @@ -31,6 +31,6 @@ 29 29 Updraught detrainment rate (kg m-3 s-1) 30 30 Downdraught detrainment rate (kg m-3 s-1) 31 31 Unbalanced component of logarithm of surface pressure (-) -# 32-191 Reserved +# 32-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.4.table b/definitions/grib2/tables/27/4.2.0.4.table index 31dcfa522..9d44c2e26 100644 --- a/definitions/grib2/tables/27/4.2.0.4.table +++ b/definitions/grib2/tables/27/4.2.0.4.table @@ -14,12 +14,12 @@ 12 12 Downward UV radiation (W m-2) 13 13 Direct short-wave radiation flux (W m-2) 14 14 Diffuse short-wave radiation flux (W m-2) -# 15-49 Reserved +# 15-49 Reserved 50 50 UV index (under clear sky) (Numeric) 51 51 UV index (Numeric) 52 52 Downward short-wave radiation flux, clear sky (W m-2) 53 53 Upward short-wave radiation flux, clear sky (W m-2) 54 54 Direct normal short-wave radiation flux (W m-2) -# 55-191 Reserved +# 55-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.5.table b/definitions/grib2/tables/27/4.2.0.5.table index 4550220b6..21d28b5e9 100644 --- a/definitions/grib2/tables/27/4.2.0.5.table +++ b/definitions/grib2/tables/27/4.2.0.5.table @@ -8,6 +8,6 @@ 6 6 Net long-wave radiation flux, clear sky (W m-2) 7 7 Brightness temperature (K) 8 8 Downward long-wave radiation flux, clear sky (W m-2) -# 9-191 Reserved +# 9-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.6.table b/definitions/grib2/tables/27/4.2.0.6.table index 2ffd9d513..e0f1d4fde 100644 --- a/definitions/grib2/tables/27/4.2.0.6.table +++ b/definitions/grib2/tables/27/4.2.0.6.table @@ -40,11 +40,11 @@ 38 38 Mass density of cloud droplets (kg m-3) 39 39 Mass density of cloud ice (kg m-3) 40 40 Mass density of convective cloud water droplets (kg m-3) -# 41-46 Reserved +# 41-46 Reserved 47 47 Volume fraction of cloud water droplets (Numeric) 48 48 Volume fraction of cloud ice particles (Numeric) 49 49 Volume fraction of cloud (ice and/or water) (Numeric) 50 50 Fog (%) -# 51-191 Reserved +# 51-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.0.7.table b/definitions/grib2/tables/27/4.2.0.7.table index 04d7f393f..ada6b8a54 100644 --- a/definitions/grib2/tables/27/4.2.0.7.table +++ b/definitions/grib2/tables/27/4.2.0.7.table @@ -13,7 +13,7 @@ 11 11 Best (4-layer) lifted index (K) 12 12 Richardson number (Numeric) 13 13 Showalter index (K) -14 14 Reserved +14 14 Reserved 15 15 Updraught helicity (m2 s-2) 16 16 Bulk Richardson number (Numeric) 17 17 Gradient Richardson number (Numeric) diff --git a/definitions/grib2/tables/27/4.2.1.0.table b/definitions/grib2/tables/27/4.2.1.0.table index bcd849c2e..297434e27 100644 --- a/definitions/grib2/tables/27/4.2.1.0.table +++ b/definitions/grib2/tables/27/4.2.1.0.table @@ -16,6 +16,6 @@ 14 14 Upstream accumulated precipitation (kg m-2) 15 15 Upstream accumulated snow melt (kg m-2) 16 16 Percolation rate (kg m-2 s-1) -# 17-191 Reserved +# 17-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.1.1.table b/definitions/grib2/tables/27/4.2.1.1.table index b488eb0bd..322aedb35 100644 --- a/definitions/grib2/tables/27/4.2.1.1.table +++ b/definitions/grib2/tables/27/4.2.1.1.table @@ -2,6 +2,6 @@ 0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) 1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) 2 2 Probability of 0.01 inch of precipitation (POP) (%) -# 3-191 Reserved +# 3-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.1.2.table b/definitions/grib2/tables/27/4.2.1.2.table index ec9b11d41..c6d5a9be5 100644 --- a/definitions/grib2/tables/27/4.2.1.2.table +++ b/definitions/grib2/tables/27/4.2.1.2.table @@ -13,3 +13,7 @@ 11 11 Attenuation coefficient of water with respect to solar radiation (/m) 12 12 Salinity (kg/kg) 13 13 Cross-sectional area of flow in channel (m2) +14 14 Snow temperature (K) +# 15-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.0.table b/definitions/grib2/tables/27/4.2.10.0.table index de15555c0..92d4cafa9 100644 --- a/definitions/grib2/tables/27/4.2.10.0.table +++ b/definitions/grib2/tables/27/4.2.10.0.table @@ -64,6 +64,13 @@ 62 62 Wave frequency width (-) 63 63 Frequency width of wind waves (-) 64 64 Frequency width of total swell (-) -# 65-191 Reserved +65 65 Peak wave period of first swell partition (s) +66 66 Peak wave period of second swell partition (s) +67 67 Peak wave period of third swell partition (s) +68 68 Peak wave direction of first swell partition (degree true) +69 69 Peak wave direction of second swell partition (degree true) +70 70 Peak wave direction of third swell partition (degree true) +71 71 Peak direction of wind waves (degree true) +# 72-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.1.table b/definitions/grib2/tables/27/4.2.10.1.table index 00a084e34..33674371f 100644 --- a/definitions/grib2/tables/27/4.2.10.1.table +++ b/definitions/grib2/tables/27/4.2.10.1.table @@ -4,6 +4,6 @@ 2 2 u-component of current (m/s) 3 3 v-component of current (m/s) 4 4 Rip current occurrence probability (%) -# 5-191 Reserved +# 5-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.191.table b/definitions/grib2/tables/27/4.2.10.191.table index 524929e78..900a29432 100644 --- a/definitions/grib2/tables/27/4.2.10.191.table +++ b/definitions/grib2/tables/27/4.2.10.191.table @@ -1,8 +1,9 @@ # Code table 4.2 - Parameter number by product discipline and parameter category 0 0 Seconds prior to initial reference time (defined in Section 1) (s) 1 1 Meridional overturning stream function (m3/s) -2 2 Reserved +2 2 Reserved 3 3 Days since last observation (d) -# 4-191 Reserved +4 4 Barotropic stream function (m3 s-1) +# 5-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.2.table b/definitions/grib2/tables/27/4.2.10.2.table index 6797062ac..3b4c07d99 100644 --- a/definitions/grib2/tables/27/4.2.10.2.table +++ b/definitions/grib2/tables/27/4.2.10.2.table @@ -12,6 +12,7 @@ 10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) 11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) 12 12 Compressive ice strength (N/m) -# 13-191 Reserved +13 13 Snow temperature (over sea-ice) (K) +# 14-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.3.table b/definitions/grib2/tables/27/4.2.10.3.table index 9f9492f04..b7a2f75a6 100644 --- a/definitions/grib2/tables/27/4.2.10.3.table +++ b/definitions/grib2/tables/27/4.2.10.3.table @@ -3,6 +3,14 @@ 1 1 Deviation of sea level from mean (m) 2 2 Heat exchange coefficient (-) 3 3 Practical salinity (Numeric) -# 4-191 Reserved +4 4 Downward heat flux (W m-2) +5 5 Eastward surface stress (N m-2) +6 6 Northward surface stress (N m-2) +7 7 x-component surface stress (N m-2) +8 8 y-component surface stress (N m-2) +9 9 Thermosteric change in sea surface height (m) +10 10 Halosteric change in sea surface height (m) +11 11 Steric change in sea surface height (m) +# 12-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.10.4.table b/definitions/grib2/tables/27/4.2.10.4.table index 69ba0cc66..a4bfd602f 100644 --- a/definitions/grib2/tables/27/4.2.10.4.table +++ b/definitions/grib2/tables/27/4.2.10.4.table @@ -7,7 +7,7 @@ 5 5 Ocean vertical salt diffusivity (m2/s) 6 6 Ocean vertical momentum diffusivity (m2/s) 7 7 Bathymetry (m) -# 8-10 Reserved +# 8-10 Reserved 11 11 Shape factor with respect to salinity profile (-) 12 12 Shape factor with respect to temperature profile in thermocline (-) 13 13 Attenuation coefficient of water with respect to solar radiation (/m) @@ -19,6 +19,12 @@ 19 19 Water potential density (rho theta) (kg m-3) 20 20 Water potential density anomaly (sigma theta) (kg m-3) 21 21 Practical salinity (Numeric) -# 22-191 Reserved +22 22 Water column-integrated heat content (J m-2) +23 23 Eastward water velocity (m s-1) +24 24 Northward water velocity (m s-1) +25 25 x-component water velocity (m s-1) +26 26 y-component water velocity (m s-1) +27 27 Upward water velocity (m s-1) +# 28-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.2.0.table b/definitions/grib2/tables/27/4.2.2.0.table index 849c2f1e4..1ce9c72b9 100644 --- a/definitions/grib2/tables/27/4.2.2.0.table +++ b/definitions/grib2/tables/27/4.2.2.0.table @@ -39,6 +39,7 @@ 37 37 Tile percentage (%) 38 38 Soil volumetric ice content (water equivalent) (m3 m-3) 39 39 Evapotranspiration rate (kg m-2 s-1) -# 40-191 Reserved +40 40 Potential evapotranspiration rate (kg m-2 s-1) +# 41-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.2.3.table b/definitions/grib2/tables/27/4.2.2.3.table index b77400890..763004b87 100644 --- a/definitions/grib2/tables/27/4.2.2.3.table +++ b/definitions/grib2/tables/27/4.2.2.3.table @@ -28,6 +28,7 @@ 26 26 Soil heat flux (W m-2) 27 27 Soil depth (m) 28 28 Snow temperature (K) -# 29-191 Reserved +29 29 Ice temperature (K) +# 30-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.2.4.table b/definitions/grib2/tables/27/4.2.2.4.table index a54e0f50d..03edc8999 100644 --- a/definitions/grib2/tables/27/4.2.2.4.table +++ b/definitions/grib2/tables/27/4.2.2.4.table @@ -15,10 +15,10 @@ 13 13 Drought factor (as defined by the Australian forest service ) (Numeric) 14 14 Rate of spread (as defined by the Australian forest service ) (m/s) 15 15 Fire danger index (as defined by the Australian forest service ) (Numeric) -16 16 Spread component (as defined by the U.S Forest Service National Fire-Danger Rating System) (Numeric) -17 17 Burning index (as defined by the U.S Forest Service National Fire-Danger Rating System) (Numeric) -18 18 Ignition component (as defined by the U.S Forest Service National Fire-Danger Rating System) (%) -19 19 Energy release component (as defined by the U.S Forest Service National Fire-Danger Rating System) (Joule/m2) -# 20-191 Reserved +16 16 Spread component (as defined by the U.S Forest Service National Fire Danger Rating System) (Numeric) +17 17 Burning index (as defined by the U.S Forest Service National Fire Danger Rating System) (Numeric) +18 18 Ignition component (as defined by the U.S Forest Service National Fire Danger Rating System) (%) +19 19 Energy release component (as defined by the U.S Forest Service National Fire Danger Rating System) (Joule/m2) +# 20-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.2.5.table b/definitions/grib2/tables/27/4.2.2.5.table index 122f0aa23..d5297e727 100644 --- a/definitions/grib2/tables/27/4.2.2.5.table +++ b/definitions/grib2/tables/27/4.2.2.5.table @@ -1,6 +1,6 @@ # Code table 4.2 - Parameter number by product discipline and parameter category 0 0 Glacier cover (Proportion) 1 1 Glacier temperature (K) -# 2-191 Reserved +# 2-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.20.0.table b/definitions/grib2/tables/27/4.2.20.0.table index 9cd936387..88c7248e1 100644 --- a/definitions/grib2/tables/27/4.2.20.0.table +++ b/definitions/grib2/tables/27/4.2.20.0.table @@ -1,6 +1,6 @@ # Code table 4.2 - Parameter number by product discipline and parameter category 0 0 Universal thermal climate index (K) 1 1 Mean radiant temperature (K) -# 2-191 Reserved +# 2-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.20.1.table b/definitions/grib2/tables/27/4.2.20.1.table index bdddca5f9..b98f62980 100644 --- a/definitions/grib2/tables/27/4.2.20.1.table +++ b/definitions/grib2/tables/27/4.2.20.1.table @@ -9,6 +9,6 @@ 7 7 Anopheles vector to host ratio (Fraction) 8 8 Anopheles vector number (Number m-2) 9 9 Fraction of malarial vector reproductive habitat (Fraction) -# 10-191 Reserved +# 10-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.20.2.table b/definitions/grib2/tables/27/4.2.20.2.table index 0804bcafd..4eab181af 100644 --- a/definitions/grib2/tables/27/4.2.20.2.table +++ b/definitions/grib2/tables/27/4.2.20.2.table @@ -1,5 +1,5 @@ # Code table 4.2 - Parameter number by product discipline and parameter category 0 0 Population density (Person m-2) -# 1-191 Reserved +# 1-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.3.0.table b/definitions/grib2/tables/27/4.2.3.0.table index c0ffa29f5..387eef7a5 100644 --- a/definitions/grib2/tables/27/4.2.3.0.table +++ b/definitions/grib2/tables/27/4.2.3.0.table @@ -9,6 +9,6 @@ 7 7 Cloud mask (Code table 4.217) 8 8 Pixel scene type (Code table 4.218) 9 9 Fire detection indicator (Code table 4.223) -# 10-191 Reserved +# 10-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.3.1.table b/definitions/grib2/tables/27/4.2.3.1.table index 7d4364f4d..5a30a7875 100644 --- a/definitions/grib2/tables/27/4.2.3.1.table +++ b/definitions/grib2/tables/27/4.2.3.1.table @@ -17,19 +17,19 @@ 15 15 Clear-sky brightness temperature (K) 16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) 17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) -18 18 Reserved +18 18 Reserved 19 19 Wind speed (m/s) 20 20 Aerosol optical thickness at 0.635 um 21 21 Aerosol optical thickness at 0.810 um 22 22 Aerosol optical thickness at 1.640 um 23 23 Angstrom coefficient -# 24-26 Reserved +# 24-26 Reserved 27 27 Bidirectional reflectance factor (numeric) 28 28 Brightness temperature (K) 29 29 Scaled radiance (numeric) -# 30-97 Reserved +# 30-97 Reserved 98 98 Correlation coefficient between MPE rain-rates for the co-located IR data and the microwave data rain-rates (Numeric) 99 99 Standard deviation between MPE rain-rates for the co-located IR data and the microwave data rain-rates (kg m-2 s-1) -# 100-191 Reserved +# 100-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.0.table b/definitions/grib2/tables/27/4.2.4.0.table index 0b35aba26..46bae651a 100644 --- a/definitions/grib2/tables/27/4.2.4.0.table +++ b/definitions/grib2/tables/27/4.2.4.0.table @@ -5,6 +5,6 @@ 3 3 Ion temperature (K) 4 4 Parallel temperature (K) 5 5 Perpendicular temperature (K) -# 6-191 Reserved +# 6-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.1.table b/definitions/grib2/tables/27/4.2.4.1.table index abd58440a..f69353f05 100644 --- a/definitions/grib2/tables/27/4.2.4.1.table +++ b/definitions/grib2/tables/27/4.2.4.1.table @@ -3,6 +3,6 @@ 1 1 1st vector component of velocity (coordinate system dependent) (m s-1) 2 2 2nd vector component of velocity (coordinate system dependent) (m s-1) 3 3 3rd vector component of velocity (coordinate system dependent) (m s-1) -# 4-191 Reserved +# 4-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.10.table b/definitions/grib2/tables/27/4.2.4.10.table index 420d2b43d..554410467 100644 --- a/definitions/grib2/tables/27/4.2.4.10.table +++ b/definitions/grib2/tables/27/4.2.4.10.table @@ -7,6 +7,6 @@ 5 5 Kp (Numeric) 6 6 Equatorial disturbance storm time index (Dst) (nT) 7 7 Auroral Electrojet (AE) (nT) -# 8-191 Reserved +# 8-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.2.table b/definitions/grib2/tables/27/4.2.4.2.table index 8dd05fcda..379b235ad 100644 --- a/definitions/grib2/tables/27/4.2.4.2.table +++ b/definitions/grib2/tables/27/4.2.4.2.table @@ -13,6 +13,6 @@ 11 11 Peak height (hm) (m) 12 12 Peak density (Nm) (m-3) 13 13 Equivalent slab thickness (tau) (km) -# 14-191 Reserved +# 14-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.3.table b/definitions/grib2/tables/27/4.2.4.3.table index a46f4a403..70f6a9d4c 100644 --- a/definitions/grib2/tables/27/4.2.4.3.table +++ b/definitions/grib2/tables/27/4.2.4.3.table @@ -7,6 +7,6 @@ 5 5 1st vector component of electric field (V m-1) 6 6 2nd vector component of electric field (V m-1) 7 7 3rd vector component of electric field (V m-1) -# 8-191 Reserved +# 8-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.4.table b/definitions/grib2/tables/27/4.2.4.4.table index b71abeb93..4e1779d19 100644 --- a/definitions/grib2/tables/27/4.2.4.4.table +++ b/definitions/grib2/tables/27/4.2.4.4.table @@ -6,6 +6,6 @@ 4 4 Heavy ion flux (differential) ((m2 s sr eV/nuc)-1) 5 5 Heavy ion flux (integral) ((m2 s sr)-1) 6 6 Cosmic ray neutron flux (/h) -# 7-191 Reserved +# 7-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.5.table b/definitions/grib2/tables/27/4.2.4.5.table index 014ea22fa..468a5598f 100644 --- a/definitions/grib2/tables/27/4.2.4.5.table +++ b/definitions/grib2/tables/27/4.2.4.5.table @@ -3,6 +3,6 @@ 1 1 Phase (rad) 2 2 Frequency (Hz) 3 3 Wave length (m) -# 4-191 Reserved +# 4-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.6.table b/definitions/grib2/tables/27/4.2.4.6.table index 67f551f7a..12310bc6e 100644 --- a/definitions/grib2/tables/27/4.2.4.6.table +++ b/definitions/grib2/tables/27/4.2.4.6.table @@ -6,6 +6,6 @@ 4 4 Solar spectral irradiance (W m-2 nm-1) 5 5 F10.7 (W m-2 Hz-1) 6 6 Solar radio emissions (W m-2 Hz-1) -# 7-191 Reserved +# 7-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.7.table b/definitions/grib2/tables/27/4.2.4.7.table index 9b93bcff1..15d142013 100644 --- a/definitions/grib2/tables/27/4.2.4.7.table +++ b/definitions/grib2/tables/27/4.2.4.7.table @@ -3,6 +3,6 @@ 1 1 Disk intensity (J m-2 s-1) 2 2 Disk intensity day (J m-2 s-1) 3 3 Disk intensity night (J m-2 s-1) -# 4-191 Reserved +# 4-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.8.table b/definitions/grib2/tables/27/4.2.4.8.table index 358b91ca7..00f76b77f 100644 --- a/definitions/grib2/tables/27/4.2.4.8.table +++ b/definitions/grib2/tables/27/4.2.4.8.table @@ -7,6 +7,6 @@ 5 5 White light coronagraph radiance (W sr-1 m-2) 6 6 Heliospheric radiance (W sr-1 m-2) 7 7 Thematic mask (Numeric) -# 8-191 Reserved +# 8-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.4.9.table b/definitions/grib2/tables/27/4.2.4.9.table index e96c81ba3..8892a61a9 100644 --- a/definitions/grib2/tables/27/4.2.4.9.table +++ b/definitions/grib2/tables/27/4.2.4.9.table @@ -2,6 +2,6 @@ 0 0 Pedersen conductivity (S m-1) 1 1 Hall conductivity (S m-1) 2 2 Parallel conductivity (S m-1) -# 3-191 Reserved +# 3-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.201.table b/definitions/grib2/tables/27/4.201.table index 44943d5e0..b4657c66e 100644 --- a/definitions/grib2/tables/27/4.201.table +++ b/definitions/grib2/tables/27/4.201.table @@ -1,5 +1,5 @@ # Code table 4.201 - Precipitation type -0 0 Reserved +0 0 Reserved 1 1 Rain 2 2 Thunderstorm 3 3 Freezing rain @@ -12,6 +12,6 @@ 10 10 Hail 11 11 Drizzle 12 12 Freezing drizzle -# 13-191 Reserved +# 13-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.202.table b/definitions/grib2/tables/27/4.202.table index 438502ff9..0e02f2957 100644 --- a/definitions/grib2/tables/27/4.202.table +++ b/definitions/grib2/tables/27/4.202.table @@ -1,4 +1,4 @@ # Code table 4.202 - Precipitable water category -# 0-191 Reserved +# 0-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.203.table b/definitions/grib2/tables/27/4.203.table index 8a9aedf7a..9d73d6422 100644 --- a/definitions/grib2/tables/27/4.203.table +++ b/definitions/grib2/tables/27/4.203.table @@ -20,7 +20,7 @@ 18 18 Cirrostratus - ground-based fog beneath the lowest layer 19 19 Cirrocumulus - ground-based fog beneath the lowest layer 20 20 Cirrus - ground-based fog beneath the lowest layer -# 21-190 Reserved +# 21-190 Reserved 191 191 Unknown # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.204.table b/definitions/grib2/tables/27/4.204.table index 481372936..f6d2985bd 100644 --- a/definitions/grib2/tables/27/4.204.table +++ b/definitions/grib2/tables/27/4.204.table @@ -4,6 +4,6 @@ 2 2 Few (3-5%) 3 3 Scattered (6-45%) 4 4 Numerous (> 45%) -# 5-191 Reserved +# 5-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.205.table b/definitions/grib2/tables/27/4.205.table index 5b4484dfd..3d579a07a 100644 --- a/definitions/grib2/tables/27/4.205.table +++ b/definitions/grib2/tables/27/4.205.table @@ -1,6 +1,6 @@ # Code table 4.205 - Presence of aerosol 0 0 Aerosol not present 1 1 Aerosol present -# 2-191 Reserved +# 2-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.206.table b/definitions/grib2/tables/27/4.206.table index 02c3dfdf9..245e69d32 100644 --- a/definitions/grib2/tables/27/4.206.table +++ b/definitions/grib2/tables/27/4.206.table @@ -1,6 +1,6 @@ # Code table 4.206 - Volcanic ash 0 0 Not present 1 1 Present -# 2-191 Reserved +# 2-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.207.table b/definitions/grib2/tables/27/4.207.table index 8ddb2e048..9b6f046f2 100644 --- a/definitions/grib2/tables/27/4.207.table +++ b/definitions/grib2/tables/27/4.207.table @@ -5,6 +5,6 @@ 3 3 Severe 4 4 Trace 5 5 Heavy -# 6-191 Reserved +# 6-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.208.table b/definitions/grib2/tables/27/4.208.table index b83685a1a..5320a7542 100644 --- a/definitions/grib2/tables/27/4.208.table +++ b/definitions/grib2/tables/27/4.208.table @@ -4,6 +4,6 @@ 2 2 Moderate 3 3 Severe 4 4 Extreme -# 5-191 Reserved +# 5-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.209.table b/definitions/grib2/tables/27/4.209.table index cb7617071..658d2b57c 100644 --- a/definitions/grib2/tables/27/4.209.table +++ b/definitions/grib2/tables/27/4.209.table @@ -1,9 +1,9 @@ # Code table 4.209 - Planetary boundary-layer regime -0 0 Reserved +0 0 Reserved 1 1 Stable 2 2 Mechanically driven turbulence 3 3 Forced convection 4 4 Free convection -# 5-191 Reserved +# 5-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.210.table b/definitions/grib2/tables/27/4.210.table index 524a6ca73..dc3d03302 100644 --- a/definitions/grib2/tables/27/4.210.table +++ b/definitions/grib2/tables/27/4.210.table @@ -1,6 +1,6 @@ # Code table 4.210 - Contrail intensity 0 0 Contrail not present 1 1 Contrail present -# 2-191 Reserved +# 2-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.211.table b/definitions/grib2/tables/27/4.211.table index 098eb2d43..407b95a79 100644 --- a/definitions/grib2/tables/27/4.211.table +++ b/definitions/grib2/tables/27/4.211.table @@ -2,6 +2,6 @@ 0 0 Low bypass 1 1 High bypass 2 2 Non-bypass -# 3-191 Reserved +# 3-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.212.table b/definitions/grib2/tables/27/4.212.table index 1a085b88d..34a500634 100644 --- a/definitions/grib2/tables/27/4.212.table +++ b/definitions/grib2/tables/27/4.212.table @@ -1,5 +1,5 @@ # Code table 4.212 - Land use -0 0 Reserved +0 0 Reserved 1 1 Urban land 2 2 Agriculture 3 3 Range land @@ -13,6 +13,6 @@ 11 11 Ice 12 12 Tropical forest 13 13 Savannah -# 14-191 Reserved +# 14-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.213.table b/definitions/grib2/tables/27/4.213.table index c65784a00..6d3c54217 100644 --- a/definitions/grib2/tables/27/4.213.table +++ b/definitions/grib2/tables/27/4.213.table @@ -1,5 +1,5 @@ # Code table 4.213 - Soil type -0 0 Reserved +0 0 Reserved 1 1 Sand 2 2 Loamy sand 3 3 Sandy loam @@ -11,6 +11,6 @@ 9 9 Sandy clay 10 10 Silty clay 11 11 Clay -# 12-191 Reserved +# 12-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.214.table b/definitions/grib2/tables/27/4.214.table index 9df466fe5..eb9db0d02 100644 --- a/definitions/grib2/tables/27/4.214.table +++ b/definitions/grib2/tables/27/4.214.table @@ -5,7 +5,7 @@ 3 3 Average 4 4 Good 5 5 Excellent -# 6-190 Reserved +# 6-190 Reserved 191 191 Unknown # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.215.table b/definitions/grib2/tables/27/4.215.table index 034db72be..e265bdca9 100644 --- a/definitions/grib2/tables/27/4.215.table +++ b/definitions/grib2/tables/27/4.215.table @@ -1,9 +1,9 @@ # Code table 4.215 - Remotely sensed snow coverage -# 0-49 Reserved +# 0-49 Reserved 50 50 No-snow/no-cloud -# 51-99 Reserved +# 51-99 Reserved 100 100 Clouds -# 101-249 Reserved +# 101-249 Reserved 250 250 Snow # 251-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.216.table b/definitions/grib2/tables/27/4.216.table index 5d1460cef..b460fb94b 100644 --- a/definitions/grib2/tables/27/4.216.table +++ b/definitions/grib2/tables/27/4.216.table @@ -1,5 +1,5 @@ # Code table 4.216 - Elevation of snow-covered terrain # 0-90 Elevation in increments of 100 m -# 91-253 Reserved +# 91-253 Reserved 254 254 Clouds 255 255 Missing diff --git a/definitions/grib2/tables/27/4.217.table b/definitions/grib2/tables/27/4.217.table index a4452182c..03a60b6b0 100644 --- a/definitions/grib2/tables/27/4.217.table +++ b/definitions/grib2/tables/27/4.217.table @@ -3,6 +3,6 @@ 1 1 Clear over land 2 2 Cloud 3 3 No data -# 4-191 Reserved +# 4-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.218.table b/definitions/grib2/tables/27/4.218.table index fcd06c348..8463ca3af 100644 --- a/definitions/grib2/tables/27/4.218.table +++ b/definitions/grib2/tables/27/4.218.table @@ -24,7 +24,7 @@ 22 22 Optically thin ice cloud 23 23 Optically thick ice cloud 24 24 Multilayered cloud -# 25-96 Reserved +# 25-96 Reserved 97 97 Snow/ice on land 98 98 Snow/ice on water 99 99 Sun-glint @@ -41,6 +41,6 @@ 110 110 Unknown cloud type 111 111 Single layer water cloud 112 112 Single layer ice cloud -# 113-191 Reserved +# 113-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.219.table b/definitions/grib2/tables/27/4.219.table index 86df0522e..6bec88ecb 100644 --- a/definitions/grib2/tables/27/4.219.table +++ b/definitions/grib2/tables/27/4.219.table @@ -3,6 +3,6 @@ 1 1 Fog in segment 2 2 Poor quality height estimation 3 3 Fog in segment and poor quality height estimation -# 4-191 Reserved +# 4-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.220.table b/definitions/grib2/tables/27/4.220.table index 93e841f8b..653056229 100644 --- a/definitions/grib2/tables/27/4.220.table +++ b/definitions/grib2/tables/27/4.220.table @@ -1,6 +1,6 @@ # Code table 4.220 - Horizontal dimension processed 0 0 Latitude 1 1 Longitude -# 2-191 Reserved +# 2-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.221.table b/definitions/grib2/tables/27/4.221.table index 8448533d7..0f76e0c58 100644 --- a/definitions/grib2/tables/27/4.221.table +++ b/definitions/grib2/tables/27/4.221.table @@ -1,6 +1,6 @@ # Code table 4.221 - Treatment of missing data 0 0 Not included 1 1 Extrapolated -# 2-191 Reserved +# 2-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.222.table b/definitions/grib2/tables/27/4.222.table index 57f113014..1624cafdb 100644 --- a/definitions/grib2/tables/27/4.222.table +++ b/definitions/grib2/tables/27/4.222.table @@ -1,6 +1,6 @@ # Code table 4.222 - Categorical result 0 0 No 1 1 Yes -# 2-191 Reserved +# 2-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.224.table b/definitions/grib2/tables/27/4.224.table index e87cde4bb..4e16305a4 100644 --- a/definitions/grib2/tables/27/4.224.table +++ b/definitions/grib2/tables/27/4.224.table @@ -1,18 +1,18 @@ # Code table 4.224 - Categorical outlook 0 0 No risk area -1 1 Reserved +1 1 Reserved 2 2 General thunderstorm risk area -3 3 Reserved +3 3 Reserved 4 4 Slight risk area -5 5 Reserved +5 5 Reserved 6 6 Moderate risk area -7 7 Reserved +7 7 Reserved 8 8 High risk area -# 9-10 Reserved +# 9-10 Reserved 11 11 Dry thunderstorm (dry lightning) risk area -# 12-13 Reserved +# 12-13 Reserved 14 14 Critical risk area -# 15-17 Reserved +# 15-17 Reserved 18 18 Extremely critical risk area -# 19-254 Reserved +# 19-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/27/4.227.table b/definitions/grib2/tables/27/4.227.table index 27c76553d..1ff73d623 100644 --- a/definitions/grib2/tables/27/4.227.table +++ b/definitions/grib2/tables/27/4.227.table @@ -4,6 +4,6 @@ 2 2 Convective 3 3 Stratiform 4 4 Freezing -# 5-191 Reserved +# 5-191 Reserved # 192-254 Reserved for local use 255 255 Missing value diff --git a/definitions/grib2/tables/27/4.228.table b/definitions/grib2/tables/27/4.228.table index 559ae916a..6198a462e 100644 --- a/definitions/grib2/tables/27/4.228.table +++ b/definitions/grib2/tables/27/4.228.table @@ -4,5 +4,5 @@ 2 2 Light 3 3 Moderate 4 4 Severe -# 5-254 Reserved +# 5-254 Reserved 255 255 Missing value diff --git a/definitions/grib2/tables/27/4.238.table b/definitions/grib2/tables/27/4.238.table index 7e1c8e4d0..785f06d14 100644 --- a/definitions/grib2/tables/27/4.238.table +++ b/definitions/grib2/tables/27/4.238.table @@ -27,6 +27,6 @@ 25 25 Wastes (solid and water) 26 26 Road transportation 27 27 Off-road transportation -# 28-191 Reserved +# 28-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.240.table b/definitions/grib2/tables/27/4.240.table index 4daef3d13..ca3bb8fd1 100644 --- a/definitions/grib2/tables/27/4.240.table +++ b/definitions/grib2/tables/27/4.240.table @@ -8,6 +8,6 @@ 6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) 7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) 8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type No. 7 (see above) with fixed variance(p1) and fixed particle density(p2) -# 9-49151 Reserved +# 9-49151 Reserved # 49152-65534 Reserved for local use 65535 65535 Missing value diff --git a/definitions/grib2/tables/27/4.241.table b/definitions/grib2/tables/27/4.241.table index a037b4ba5..556329f75 100644 --- a/definitions/grib2/tables/27/4.241.table +++ b/definitions/grib2/tables/27/4.241.table @@ -4,6 +4,6 @@ 2 2 Snow covered 3 3 Flooded 4 4 Ice covered -# 5-191 Reserved +# 5-191 Reserved # 192-254 Reserved for local use 255 255 Missing value diff --git a/definitions/grib2/tables/27/4.242.table b/definitions/grib2/tables/27/4.242.table index 083f88c29..d37a6f492 100644 --- a/definitions/grib2/tables/27/4.242.table +++ b/definitions/grib2/tables/27/4.242.table @@ -1,7 +1,7 @@ # Code table 4.242 - Tile classification -0 0 Reserved +0 0 Reserved 1 1 Land use classes according to ESA-GlobCover GCV2009 2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 -# 3-191 Reserved +# 3-191 Reserved # 192-254 Reserved for local use 255 255 Missing value diff --git a/definitions/grib2/tables/27/4.243.table b/definitions/grib2/tables/27/4.243.table index b39053311..e72b699f8 100644 --- a/definitions/grib2/tables/27/4.243.table +++ b/definitions/grib2/tables/27/4.243.table @@ -1,5 +1,5 @@ # Code table 4.243 - Tile class -0 0 Reserved +0 0 Reserved 1 1 Evergreen broadleaved forest 2 2 Deciduous broadleaved closed forest 3 3 Deciduous broadleaved open forest @@ -39,5 +39,5 @@ 37 37 Closed forest or shrubland permanently flooded 38 38 Closed to open grassland regularly flooded 39 39 Undefined -# 40-32767 Reserved +# 40-32767 Reserved # 32768- Reserved for local use diff --git a/definitions/grib2/tables/27/4.244.table b/definitions/grib2/tables/27/4.244.table index 40534ee09..2b8d8fe66 100644 --- a/definitions/grib2/tables/27/4.244.table +++ b/definitions/grib2/tables/27/4.244.table @@ -2,6 +2,6 @@ 0 0 No quality information available 1 1 Failed 2 2 Passed -# 3-191 Reserved +# 3-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.246.table b/definitions/grib2/tables/27/4.246.table index ab22dbe1e..ca791939e 100644 --- a/definitions/grib2/tables/27/4.246.table +++ b/definitions/grib2/tables/27/4.246.table @@ -3,5 +3,5 @@ 1 1 Weak thunderstorm 2 2 Moderate thunderstorm 3 3 Severe thunderstorm -# 4-254 Reserved +# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/27/4.247.table b/definitions/grib2/tables/27/4.247.table index cd7fc90bd..2e28368f6 100644 --- a/definitions/grib2/tables/27/4.247.table +++ b/definitions/grib2/tables/27/4.247.table @@ -3,5 +3,5 @@ 1 1 Light precipitation 2 2 Moderate precipitation 3 3 Heavy precipitation -# 4-254 Reserved +# 4-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/27/4.248.table b/definitions/grib2/tables/27/4.248.table index 5bb5e831c..04e365c97 100644 --- a/definitions/grib2/tables/27/4.248.table +++ b/definitions/grib2/tables/27/4.248.table @@ -1,4 +1,5 @@ -0 0 Nearest analysis time or forecast time to specified local time +# Code table 4.248 - Method used to derive data values for a given local time +0 0 Nearest forecast or analysis time to specified local time 1 1 Interpolated to be valid at the specified local time # 2-191 Reserved # 192-254 Reserved for local use diff --git a/definitions/grib2/tables/27/4.3.table b/definitions/grib2/tables/27/4.3.table index 8ba9e08ab..d5aadcfe1 100644 --- a/definitions/grib2/tables/27/4.3.table +++ b/definitions/grib2/tables/27/4.3.table @@ -11,13 +11,16 @@ 9 9 Climatological 10 10 Probability-weighted forecast 11 11 Bias-corrected ensemble forecast -12 12 Post-processed analysis -13 13 Post-processed forecast +12 12 Post-processed analysis +13 13 Post-processed forecast 14 14 Nowcast 15 15 Hindcast 16 16 Physical retrieval 17 17 Regression analysis 18 18 Difference between two forecasts -# 19-191 Reserved +19 19 First guess +20 20 Analysis increment +21 21 Initialization increment for analysis +# 22-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.5.table b/definitions/grib2/tables/27/4.5.table index 3a9861bcb..9d0ead333 100644 --- a/definitions/grib2/tables/27/4.5.table +++ b/definitions/grib2/tables/27/4.5.table @@ -56,7 +56,7 @@ # 120-149 Reserved 150 150 Generalized vertical height coordinate 151 sol Soil level (Numeric) -152 sol Sea ice level (Numeric) +152 sol Sea-ice level (Numeric) # 153-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) diff --git a/definitions/grib2/tables/27/5.0.table b/definitions/grib2/tables/27/5.0.table index ac0a10f02..eaca4ac66 100644 --- a/definitions/grib2/tables/27/5.0.table +++ b/definitions/grib2/tables/27/5.0.table @@ -4,19 +4,19 @@ 2 2 Grid point data - complex packing 3 3 Grid point data - complex packing and spatial differencing 4 4 Grid point data - IEEE floating point data -# 5-39 Reserved +# 5-39 Reserved 40 40 Grid point data - JPEG 2000 code stream format 41 41 Grid point data - Portable Network Graphics (PNG) 42 42 Grid point data - CCSDS recommended lossless compression -# 43-49 Reserved +# 43-49 Reserved 50 50 Spectral data - simple packing 51 51 Spherical harmonics data - complex packing # 52 Reserved 53 53 Spectral data for limited area models - complex packing -# 54-60 Reserved +# 54-60 Reserved 61 61 Grid point data - simple packing with logarithm pre-processing -# 62-199 Reserved +# 62-199 Reserved 200 200 Run length packing with level values -# 201-49151 Reserved +# 201-49151 Reserved # 49152-65534 Reserved for local use 65535 65535 Missing diff --git a/definitions/grib2/tables/27/5.1.table b/definitions/grib2/tables/27/5.1.table index 854330c74..86b532ccb 100644 --- a/definitions/grib2/tables/27/5.1.table +++ b/definitions/grib2/tables/27/5.1.table @@ -1,6 +1,6 @@ # Code table 5.1 - Type of original field values 0 0 Floating point 1 1 Integer -# 2-191 Reserved +# 2-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/5.2.table b/definitions/grib2/tables/27/5.2.table index 40586a131..a9729dafe 100644 --- a/definitions/grib2/tables/27/5.2.table +++ b/definitions/grib2/tables/27/5.2.table @@ -1,8 +1,8 @@ # Code table 5.2 - Matrix coordinate value function definition 0 0 Explicit coordinate values set 1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 -# 2-10 Reserved +# 2-10 Reserved 11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) -# 12-191 Reserved +# 12-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/5.25.table b/definitions/grib2/tables/27/5.25.table index 1b45f28a3..6722fb2c2 100644 --- a/definitions/grib2/tables/27/5.25.table +++ b/definitions/grib2/tables/27/5.25.table @@ -1,9 +1,9 @@ # Code table 5.25 - type of bi-Fourier subtruncation -# 0-76 Reserved +# 0-76 Reserved 77 77 Rectangular -# 78-87 Reserved +# 78-87 Reserved 88 88 Elliptic -# 89-98 Reserved +# 89-98 Reserved 99 99 Diamond -# 100-254 Reserved +# 100-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/27/5.26.table b/definitions/grib2/tables/27/5.26.table index 9e91ebf2e..e54d98aca 100644 --- a/definitions/grib2/tables/27/5.26.table +++ b/definitions/grib2/tables/27/5.26.table @@ -1,5 +1,5 @@ # Code table 5.26 - packing mode for axes 0 0 Spectral coefficients for axes are packed 1 1 Spectral coefficients for axes included in the unpacked subset -# 2-254 Reserved +# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/27/5.3.table b/definitions/grib2/tables/27/5.3.table index c3b7b30fe..758f4df78 100644 --- a/definitions/grib2/tables/27/5.3.table +++ b/definitions/grib2/tables/27/5.3.table @@ -2,6 +2,6 @@ 1 1 Direction degrees true 2 2 Frequency (s-1) 3 3 Radial number (2pi/lambda) (m-1) -# 4-191 Reserved +# 4-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/5.4.table b/definitions/grib2/tables/27/5.4.table index 8121c1819..be9d35030 100644 --- a/definitions/grib2/tables/27/5.4.table +++ b/definitions/grib2/tables/27/5.4.table @@ -1,6 +1,6 @@ # Code table 5.4 - Group splitting method 0 0 Row by row splitting 1 1 General group splitting -# 2-191 Reserved +# 2-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/5.40.table b/definitions/grib2/tables/27/5.40.table index b9bad2c39..f0977ac85 100644 --- a/definitions/grib2/tables/27/5.40.table +++ b/definitions/grib2/tables/27/5.40.table @@ -1,5 +1,5 @@ # Code table 5.40 - Type of compression 0 0 Lossless 1 1 Lossy -# 2-254 Reserved +# 2-254 Reserved 255 255 Missing diff --git a/definitions/grib2/tables/27/5.5.table b/definitions/grib2/tables/27/5.5.table index 3ef3eb070..0f31d8025 100644 --- a/definitions/grib2/tables/27/5.5.table +++ b/definitions/grib2/tables/27/5.5.table @@ -2,6 +2,6 @@ 0 0 No explicit missing values included within data values 1 1 Primary missing values included within data values 2 2 Primary and secondary missing values included within data values -# 3-191 Reserved +# 3-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/5.6.table b/definitions/grib2/tables/27/5.6.table index 6d5177877..bfd944ca8 100644 --- a/definitions/grib2/tables/27/5.6.table +++ b/definitions/grib2/tables/27/5.6.table @@ -1,7 +1,7 @@ # Code table 5.6 - Order of spatial differencing -0 0 Reserved +0 0 Reserved 1 1 First-order spatial differencing 2 2 Second-order spatial differencing -# 3-191 Reserved +# 3-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/5.7.table b/definitions/grib2/tables/27/5.7.table index 5ab780056..d7900695e 100644 --- a/definitions/grib2/tables/27/5.7.table +++ b/definitions/grib2/tables/27/5.7.table @@ -1,7 +1,7 @@ # Code table 5.7 - Precision of floating-point numbers -0 0 Reserved +0 0 Reserved 1 1 IEEE 32-bit (I=4 in section 7) 2 2 IEEE 64-bit (I=8 in section 7) 3 3 IEEE 128-bit (I=16 in section 7) -# 4-254 Reserved +# 4-254 Reserved 255 255 Missing From f2ea2ab3567d281a9160b9744e6f65689cf3767e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 18 Feb 2021 18:05:01 +0000 Subject: [PATCH 337/683] Scripts: WMO tables. Fix non-ascii inputs etc --- definitions/create_grib2_codetables.pl | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/definitions/create_grib2_codetables.pl b/definitions/create_grib2_codetables.pl index 04845c1ed..38925f2f0 100644 --- a/definitions/create_grib2_codetables.pl +++ b/definitions/create_grib2_codetables.pl @@ -32,8 +32,15 @@ while (<>) { #No Title_en SubTitle_en CodeFlag Value MeaningParameterDescription_en Note_en UnitComments_en Status #my ($rowid, $title, $subtitle, $codeFlag, $value, $meaning, $note, $unit, $status) = split(/\t/); + s/Hovmöller/Hovmoller/; + s/Carrée/Carree/; + s/μm/um/; + s/°C/degree C/; + s/f\(n\) = C2 × f\(n-1\)/f(n) = C2 * f(n-1)/; + s/\(see separate doc or pdf file\)/see separate doc or pdf file/; + my ($title, $subtitle, $codeFlag, $value, $meaning, $note, $unit, $status) = split(/\t/); - + if ($title =~ /Code table ([0-9.]+)/) { $codetable = $1; if ($subtitle =~ /Product [Dd]iscipline (\d+).*parameter category (\d+)/) { From 8ebfff3e32243453c5f89b391fc1a825fd3b6889 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 19 Feb 2021 11:40:23 +0000 Subject: [PATCH 338/683] ECC-1204: GRIB2 Definitions: Remove MARS keys from templates 4.53 and 4.54 --- definitions/grib2/template.4.53.def | 5 ----- definitions/grib2/template.4.54.def | 5 ----- definitions/grib2/template.4.partition.def | 6 +----- 3 files changed, 1 insertion(+), 15 deletions(-) diff --git a/definitions/grib2/template.4.53.def b/definitions/grib2/template.4.53.def index fe5c05bc6..719887a80 100644 --- a/definitions/grib2/template.4.53.def +++ b/definitions/grib2/template.4.53.def @@ -8,8 +8,3 @@ include "grib2/template.4.generating_process.def" include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" - - -constant cat="cat"; -alias mars.levtype=cat; -alias mars.levelist=partitionNumber; diff --git a/definitions/grib2/template.4.54.def b/definitions/grib2/template.4.54.def index 585e43d52..892940830 100644 --- a/definitions/grib2/template.4.54.def +++ b/definitions/grib2/template.4.54.def @@ -9,8 +9,3 @@ include "grib2/template.4.forecast_time.def" include "grib2/template.4.point_in_time.def" include "grib2/template.4.horizontal.def" include "grib2/template.4.eps.def" - - -constant cat="cat"; -alias mars.levtype=cat; -alias mars.levelist=partitionNumber; diff --git a/definitions/grib2/template.4.partition.def b/definitions/grib2/template.4.partition.def index 4a08f835a..cd6d2f3cf 100644 --- a/definitions/grib2/template.4.partition.def +++ b/definitions/grib2/template.4.partition.def @@ -3,11 +3,7 @@ unsigned[1] partitionTable : dump; unsigned[1] numberOfPartitions=1 :dump; partitions list(numberOfPartitions) { - unsigned[2] partitionItems ; + unsigned[2] partitionItems; } codetable[2] partitionNumber ('4.[partitionTable].table',masterDir,localDir) : dump; - -#constant cat="cat"; -#alias mars.levtype=cat; -#alias mars.levelist=partitionNumber; From b2c0b4956e4b648cd73359aa07ac6b11ff08342b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 19 Feb 2021 13:08:44 +0000 Subject: [PATCH 339/683] ECC-1205: GRIB2 Definitions: remove unneccesary extra key from satellite templates --- definitions/grib2/template.4.satellite.def | 15 +++++---------- definitions/grib2/template.4.satellite_30.def | 19 +++++++------------ 2 files changed, 12 insertions(+), 22 deletions(-) diff --git a/definitions/grib2/template.4.satellite.def b/definitions/grib2/template.4.satellite.def index eb2bce3c2..77cc7d4b3 100644 --- a/definitions/grib2/template.4.satellite.def +++ b/definitions/grib2/template.4.satellite.def @@ -7,17 +7,12 @@ unsigned[1] NB : dump; alias numberOfContributingSpectralBands=NB; listOfContributingSpectralBands list(numberOfContributingSpectralBands){ - unsigned[2] satelliteSeries : dump; - unsigned[2] satelliteNumber : dump; - unsigned[2] instrumentType : dump; - unsigned[1] scaleFactorOfCentralWaveNumber = missing() : dump,can_be_missing ; - unsigned[4] scaledValueOfCentralWaveNumber = missing() : dump,can_be_missing ; + unsigned[2] satelliteSeries : dump; + unsigned[2] satelliteNumber : dump; + unsigned[2] instrumentType : dump; + unsigned[1] scaleFactorOfCentralWaveNumber = missing() : dump,can_be_missing ; + unsigned[4] scaledValueOfCentralWaveNumber = missing() : dump,can_be_missing ; } alias instrument = instrumentType; alias ident = satelliteNumber; - -# Required for interpolation and MARS. The level type is used to decide whether to apply the Land Sea Mask -constant typeOfLevel="surface"; -constant levelType="surface"; -constant level=0; diff --git a/definitions/grib2/template.4.satellite_30.def b/definitions/grib2/template.4.satellite_30.def index 37ef75d1a..8ab55ec89 100644 --- a/definitions/grib2/template.4.satellite_30.def +++ b/definitions/grib2/template.4.satellite_30.def @@ -10,20 +10,15 @@ unsigned[1] NB : dump; alias numberOfContributingSpectralBands=NB; if (new() || section4Length>14) { -listOfContributingSpectralBands list(numberOfContributingSpectralBands){ - unsigned[2] satelliteSeries : dump; - unsigned[2] satelliteNumber : dump; - # this is specific to template 4.30 - unsigned[1] instrumentType : dump; - unsigned[1] scaleFactorOfCentralWaveNumber = missing() : dump,can_be_missing ; - unsigned[4] scaledValueOfCentralWaveNumber = missing() : dump,can_be_missing ; + listOfContributingSpectralBands list(numberOfContributingSpectralBands){ + unsigned[2] satelliteSeries : dump; + unsigned[2] satelliteNumber : dump; + # this is specific to template 4.30 + unsigned[1] instrumentType : dump; + unsigned[1] scaleFactorOfCentralWaveNumber = missing() : dump,can_be_missing ; + unsigned[4] scaledValueOfCentralWaveNumber = missing() : dump,can_be_missing ; } } alias instrument = instrumentType; alias ident = satelliteNumber; - -# Required for interpolation and MARS. The level type is used to decide whether to apply the Land Sea Mask -constant typeOfLevel="surface"; -constant levelType="surface"; -constant level=0; From 5032656ff6aca18596a77c43141b2bc963972c9e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 19 Feb 2021 13:13:38 +0000 Subject: [PATCH 340/683] grib_util_set_spec: cosmetics --- src/grib_util.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/grib_util.c b/src/grib_util.c index 231162276..46df97c05 100644 --- a/src/grib_util.c +++ b/src/grib_util.c @@ -928,7 +928,6 @@ grib_handle* grib_util_set_spec2(grib_handle* h, SET_LONG_VALUE("deleteLocalDefinition", 1); } - len = 100; grib_get_string(h, "packingType", input_packing_type, &len); grib_get_long(h, "bitsPerValue", &input_bits_per_value); grib_get_long(h, "decimalScaleFactor", &input_decimal_scale_factor); @@ -1444,8 +1443,6 @@ grib_handle* grib_util_set_spec2(grib_handle* h, SET_STRING_VALUE("packingType", "grid_simple"); } } - - /* ECC-1201: case of IEEE input ?? */ switch (packing_spec->accuracy) { case GRIB_UTIL_ACCURACY_SAME_BITS_PER_VALUES_AS_INPUT: { @@ -1555,13 +1552,13 @@ grib_handle* grib_util_set_spec2(grib_handle* h, if (convertEditionEarlier && packing_spec->editionNumber > 1) { *err = grib_set_long(h_out, "edition", packing_spec->editionNumber); if (*err) { - fprintf(stderr, "SET_GRID_DATA_DESCRIPTION: Cannot convert to edition %ld.\n", packing_spec->editionNumber); + fprintf(stderr, "GRIB_UTIL_SET_SPEC: Cannot convert to edition %ld.\n", packing_spec->editionNumber); goto cleanup; } } if ((*err = grib_set_values(h_out, values, count)) != 0) { - fprintf(stderr, "SET_GRID_DATA_DESCRIPTION: Cannot set key values: %s\n", grib_get_error_message(*err)); + fprintf(stderr, "GRIB_UTIL_SET_SPEC: Cannot set key values: %s\n", grib_get_error_message(*err)); for (i = 0; i < count; i++) if (values[i].error) fprintf(stderr, " %s %s\n", values[i].name, grib_get_error_message(values[i].error)); goto cleanup; From ab9a1b797ba72132c3596c4c7cad3455cc6d31ca Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 19 Feb 2021 22:18:43 +0000 Subject: [PATCH 341/683] Debug messages --- src/grib_handle.c | 4 ++-- src/grib_io.c | 4 ++-- src/grib_templates.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/grib_handle.c b/src/grib_handle.c index 30bef858e..e0a0749d5 100644 --- a/src/grib_handle.c +++ b/src/grib_handle.c @@ -261,7 +261,7 @@ grib_handle* grib_handle_new_from_samples(grib_context* c, const char* name) * if(g) return g; */ if (c->debug) { - fprintf(stderr, "ECCODES DEBUG: grib_handle_new_from_samples '%s'\n", name); + fprintf(stderr, "ECCODES DEBUG grib_handle_new_from_samples '%s'\n", name); } g = grib_external_template(c, name); @@ -288,7 +288,7 @@ grib_handle* codes_bufr_handle_new_from_samples(grib_context* c, const char* nam * if(g) return g; */ if (c->debug) { - fprintf(stderr, "ECCODES DEBUG: codes_bufr_handle_new_from_samples '%s'\n", name); + fprintf(stderr, "ECCODES DEBUG codes_bufr_handle_new_from_samples '%s'\n", name); } g = bufr_external_template(c, name); diff --git a/src/grib_io.c b/src/grib_io.c index 0aa7ec5bf..723a11dce 100644 --- a/src/grib_io.c +++ b/src/grib_io.c @@ -111,7 +111,7 @@ static int read_the_rest(reader* r, size_t message_length, unsigned char* tmp, i if ((r->read(r->read_data, buffer + already_read, rest, &err) != rest) || err) { /*fprintf(stderr, "read_the_rest: r->read failed: %s\n", grib_get_error_message(err));*/ if (c->debug) - fprintf(stderr, "ECCODES DEBUG: read_the_rest: Read failed (Coded length=%lu, Already read=%d)\n", + fprintf(stderr, "ECCODES DEBUG read_the_rest: Read failed (Coded length=%lu, Already read=%d)\n", message_length, already_read); return err; } @@ -123,7 +123,7 @@ static int read_the_rest(reader* r, size_t message_length, unsigned char* tmp, i buffer[message_length - 1] != '7')) { if (c->debug) - fprintf(stderr, "ECCODES DEBUG: read_the_rest: No final 7777 at expected location (Coded length=%lu)\n", message_length); + fprintf(stderr, "ECCODES DEBUG read_the_rest: No final 7777 at expected location (Coded length=%lu)\n", message_length); return GRIB_WRONG_LENGTH; } diff --git a/src/grib_templates.c b/src/grib_templates.c index b2a4298f8..a13b002dd 100644 --- a/src/grib_templates.c +++ b/src/grib_templates.c @@ -58,7 +58,7 @@ static grib_handle* try_template(grib_context* c, const char* dir, const char* n sprintf(path, "%s/%s.tmpl", dir, name); if (c->debug) { - fprintf(stderr, "ECCODES DEBUG: try_template path='%s'\n", path); + fprintf(stderr, "ECCODES DEBUG try_template path='%s'\n", path); } if (codes_access(path, F_OK) == 0) { @@ -86,7 +86,7 @@ static grib_handle* try_bufr_template(grib_context* c, const char* dir, const ch sprintf(path, "%s/%s.tmpl", dir, name); if (c->debug) { - fprintf(stderr, "ECCODES DEBUG: try_template path='%s'\n", path); + fprintf(stderr, "ECCODES DEBUG try_template path='%s'\n", path); } if (codes_access(path, F_OK) == 0) { From 357f652d5aa91137ef2dc5f456ff5dd8dcb37c41 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 19 Feb 2021 22:19:24 +0000 Subject: [PATCH 342/683] Debug messages --- src/grib_util.c | 74 +++++++++++++++++++++++++++++++++++++------------ 1 file changed, 57 insertions(+), 17 deletions(-) diff --git a/src/grib_util.c b/src/grib_util.c index 46df97c05..35380a3bf 100644 --- a/src/grib_util.c +++ b/src/grib_util.c @@ -338,31 +338,69 @@ static grib_trie* init_list(const char* name) return 0; } +static const char* get_packing_spec_packing_name(long packing_spec_packing) +{ + if (GRIB_UTIL_PACKING_USE_PROVIDED == packing_spec_packing) + return "GRIB_UTIL_PACKING_USE_PROVIDED"; + if (GRIB_UTIL_PACKING_SAME_AS_INPUT == packing_spec_packing) + return "GRIB_UTIL_PACKING_SAME_AS_INPUT"; + Assert(!"get_packing_spec_packing_name: invalid packing"); + return NULL; +} + +static const char* get_packing_spec_packing_type_name(long packing_spec_packing_type) +{ + if (GRIB_UTIL_PACKING_TYPE_SAME_AS_INPUT == packing_spec_packing_type) + return "GRIB_UTIL_PACKING_TYPE_SAME_AS_INPUT"; + if (GRIB_UTIL_PACKING_TYPE_SPECTRAL_COMPLEX == packing_spec_packing_type) + return "GRIB_UTIL_PACKING_TYPE_SPECTRAL_COMPLEX"; + if (GRIB_UTIL_PACKING_TYPE_SPECTRAL_SIMPLE == packing_spec_packing_type) + return "GRIB_UTIL_PACKING_TYPE_SPECTRAL_SIMPLE"; + if (GRIB_UTIL_PACKING_TYPE_JPEG == packing_spec_packing_type) + return "GRIB_UTIL_PACKING_TYPE_JPEG"; + if (GRIB_UTIL_PACKING_TYPE_GRID_COMPLEX == packing_spec_packing_type) + return "GRIB_UTIL_PACKING_TYPE_GRID_COMPLEX"; + if (GRIB_UTIL_PACKING_TYPE_GRID_SIMPLE == packing_spec_packing_type) + return "GRIB_UTIL_PACKING_TYPE_GRID_SIMPLE"; + if (GRIB_UTIL_PACKING_TYPE_GRID_SIMPLE_MATRIX == packing_spec_packing_type) + return "GRIB_UTIL_PACKING_TYPE_GRID_SIMPLE_MATRIX"; + if (GRIB_UTIL_PACKING_TYPE_GRID_SECOND_ORDER == packing_spec_packing_type) + return "GRIB_UTIL_PACKING_TYPE_GRID_SECOND_ORDER"; + if (GRIB_UTIL_PACKING_TYPE_CCSDS == packing_spec_packing_type) + return "GRIB_UTIL_PACKING_TYPE_CCSDS"; + if (GRIB_UTIL_PACKING_TYPE_IEEE == packing_spec_packing_type) + return "GRIB_UTIL_PACKING_TYPE_IEEE"; + Assert(!"get_packing_spec_packing_type_name: invalid packing_type"); + return NULL; +} + /* For debugging purposes */ -static void print_values(grib_context* c, const grib_util_grid_spec2* spec, +static void print_values(grib_context* c, + const grib_util_grid_spec2* spec, + const grib_util_packing_spec* packing_spec, const double* data_values, const size_t data_values_count, /* the data pay load */ const grib_values* keyval_pairs, const size_t count) /* keys and their values */ { size_t i = 0; int isConstant = 1; double v = 0, minVal = DBL_MAX, maxVal = -DBL_MAX; - fprintf(stderr, "ECCODES DEBUG grib_util grib_set_values: setting %lu key/value pairs\n", (unsigned long)count); + fprintf(stderr, "ECCODES DEBUG grib_util: grib_set_values, setting %lu key/value pairs\n", (unsigned long)count); for (i = 0; i < count; i++) { switch (keyval_pairs[i].type) { case GRIB_TYPE_LONG: - fprintf(stderr, "ECCODES DEBUG grib_util: => %s = %ld;\n", keyval_pairs[i].name, (long)keyval_pairs[i].long_value); + fprintf(stderr, "ECCODES DEBUG grib_util: => %s = %ld;\n", keyval_pairs[i].name, (long)keyval_pairs[i].long_value); break; case GRIB_TYPE_DOUBLE: - fprintf(stderr, "ECCODES DEBUG grib_util: => %s = %.16e;\n", keyval_pairs[i].name, keyval_pairs[i].double_value); + fprintf(stderr, "ECCODES DEBUG grib_util: => %s = %.16e;\n", keyval_pairs[i].name, keyval_pairs[i].double_value); break; case GRIB_TYPE_STRING: - fprintf(stderr, "ECCODES DEBUG grib_util: => %s = \"%s\";\n", keyval_pairs[i].name, keyval_pairs[i].string_value); + fprintf(stderr, "ECCODES DEBUG grib_util: => %s = \"%s\";\n", keyval_pairs[i].name, keyval_pairs[i].string_value); break; } } - fprintf(stderr, "ECCODES DEBUG grib_util: data_values_count=%lu;\n", (unsigned long)data_values_count); + fprintf(stderr, "ECCODES DEBUG grib_util: data_values_count=%lu;\n", (unsigned long)data_values_count); for (i = 0; i < data_values_count; i++) { if (i == 0) v = data_values[i]; @@ -386,10 +424,15 @@ static void print_values(grib_context* c, const grib_util_grid_spec2* spec, maxVal = v; } } - fprintf(stderr, "ECCODES DEBUG grib_util: data_values are CONSTANT? %d\t(min=%.16e, max=%.16e)\n", + fprintf(stderr, "ECCODES DEBUG grib_util: data_values are CONSTANT? %d\t(min=%.16e, max=%.16e)\n", isConstant, minVal, maxVal); if (c->gribex_mode_on) - fprintf(stderr, "ECCODES DEBUG grib_util: GRIBEX mode is turned on!\n"); + fprintf(stderr, "ECCODES DEBUG grib_util: GRIBEX mode is turned on!\n"); + + fprintf(stderr, "ECCODES DEBUG grib_util: packing_spec->packing = %s\n", + get_packing_spec_packing_name(packing_spec->packing)); + fprintf(stderr, "ECCODES DEBUG grib_util: packing_spec->packing_type = %s\n", + get_packing_spec_packing_type_name(packing_spec->packing_type)); #if 0 if (spec->bitmapPresent) { @@ -531,7 +574,7 @@ static int expand_bounding_box(grib_handle* h, grib_values* values, const size_t if (is_angle && !angle_can_be_encoded(h, values[i].double_value)) { new_angle = adjust_angle(values[i].double_value, roundingPolicy, angle_subdivisions); if (h->context->debug) { - fprintf(stderr, "ECCODES DEBUG grib_util EXPAND_BOUNDING_BOX %s: old=%.15e new=%.15e (%s)\n", + fprintf(stderr, "ECCODES DEBUG grib_util: EXPAND_BOUNDING_BOX %s: old=%.15e new=%.15e (%s)\n", values[i].name, values[i].double_value, new_angle, (roundingPolicy == eROUND_ANGLE_UP ? "Up" : "Down")); } @@ -1020,7 +1063,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, } if (h->context->debug == -1) { - print_values(h->context, spec, data_values, data_values_count, values, count); + print_values(h->context, spec, packing_spec, data_values, data_values_count, values, count); } if ((*err = grib_set_values(h, values, count)) != 0) { @@ -1504,8 +1547,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, grib_handle_delete(h_sample); Assert(*err == 0); - /* Set "pl" array if provided (For reduced Gaussian grids) */ - /* See GRIB-857 */ + /* GRIB-857: Set "pl" array if provided (For reduced Gaussian grids) */ Assert(spec->pl_size >= 0); if (spec->pl && spec->pl_size == 0) { fprintf(stderr, "pl array not NULL but pl_size == 0!\n"); @@ -1536,7 +1578,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, if (h->context->debug == -1) { fprintf(stderr, "ECCODES DEBUG grib_util: global_grid = %d\n", global_grid); fprintf(stderr, "ECCODES DEBUG grib_util: expandBoundingBox = %d\n", expandBoundingBox); - print_values(h->context, spec, data_values, data_values_count, values, count); + print_values(h->context, spec, packing_spec, data_values, data_values_count, values, count); } /* Apply adjustments to bounding box if needed */ @@ -1612,7 +1654,6 @@ grib_handle* grib_util_set_spec2(grib_handle* h, } /*grib_dump_content(h_out, stdout,"debug", ~0, NULL);*/ - /* convert to second_order if not constant field. (Also see ECC-326) */ if (setSecondOrder) { int constant = 0; @@ -1669,8 +1710,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, } } - if (editionNumber > 1 || packing_spec->editionNumber > 1) { - /* ECC-353 */ + if (editionNumber > 1 || packing_spec->editionNumber > 1) { /* ECC-353 */ /* JPEG packing is not available in GRIB edition 1 and has to be done AFTER we set data values */ if (setJpegPacking == 1) { *err = grib_set_string(h_out, "packingType", "grid_jpeg", &slen); @@ -1718,7 +1758,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, goto cleanup; } #endif - if (h->context->debug == -1) fprintf(stderr, "ECCODES DEBUG: grib_util_set_spec end\n"); + if (h->context->debug == -1) fprintf(stderr, "ECCODES DEBUG grib_util: grib_util_set_spec end\n"); return h_out; From 624b85f8ee9aa918d267bf40014bdecd799f75db Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 19 Feb 2021 22:32:53 +0000 Subject: [PATCH 343/683] grib_util_set_spec: Refactoring --- src/grib_util.c | 63 ++++++++++++++++--------------------------------- 1 file changed, 20 insertions(+), 43 deletions(-) diff --git a/src/grib_util.c b/src/grib_util.c index 35380a3bf..759fd6fd2 100644 --- a/src/grib_util.c +++ b/src/grib_util.c @@ -935,7 +935,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, grib_handle* h_out = NULL; grib_handle* h_sample = NULL; const char* grid_type = NULL; - char name[1024]; + char sample_name[1024]; /* name of sample file */ char input_grid_type[100]; char input_packing_type[100]; long input_bits_per_value = 0; @@ -1148,10 +1148,10 @@ grib_handle* grib_util_set_spec2(grib_handle* h, case GRIB_UTIL_GRID_SPEC_REDUCED_GG: case GRIB_UTIL_GRID_SPEC_REDUCED_ROTATED_GG: /* Choose a sample with the right Gaussian number and edition */ - sprintf(name, "%s_pl_%ld_grib%ld", grid_type, spec->N, editionNumber); + sprintf(sample_name, "%s_pl_%ld_grib%ld", grid_type, spec->N, editionNumber); if (spec->pl && spec->pl_size) { /* GRIB-834: pl is given so can use any of the reduced_gg_pl samples */ - sprintf(name, "%s_pl_grib%ld", grid_type, editionNumber); + sprintf(sample_name, "%s_pl_grib%ld", grid_type, editionNumber); } break; case GRIB_UTIL_GRID_SPEC_LAMBERT_AZIMUTHAL_EQUAL_AREA: @@ -1164,13 +1164,13 @@ grib_handle* grib_util_set_spec2(grib_handle* h, grid_type); convertEditionEarlier = 1; } - sprintf(name, "GRIB%ld", editionNumber); + sprintf(sample_name, "GRIB%ld", editionNumber); break; case GRIB_UTIL_GRID_SPEC_LAMBERT_CONFORMAL: - sprintf(name, "GRIB%ld", editionNumber); + sprintf(sample_name, "GRIB%ld", editionNumber); break; default: - sprintf(name, "%s_pl_grib%ld", grid_type, editionNumber); + sprintf(sample_name, "%s_pl_grib%ld", grid_type, editionNumber); } if (spec->pl && spec->grid_name) { @@ -1179,12 +1179,12 @@ grib_handle* grib_util_set_spec2(grib_handle* h, goto cleanup; } if (spec->grid_name) { - sprintf(name, "%s_grib%ld", spec->grid_name, editionNumber); + sprintf(sample_name, "%s_grib%ld", spec->grid_name, editionNumber); } } /* TODO: recycle h_sample handle */ - h_sample = grib_handle_new_from_samples(NULL, name); + h_sample = grib_handle_new_from_samples(NULL, sample_name); if (!h_sample) { *err = GRIB_INVALID_FILE; return NULL; @@ -1232,15 +1232,12 @@ grib_handle* grib_util_set_spec2(grib_handle* h, case GRIB_UTIL_GRID_SPEC_ROTATED_GG: COPY_SPEC_LONG(bitmapPresent); - if (spec->missingValue) - COPY_SPEC_DOUBLE(missingValue); + if (spec->missingValue) COPY_SPEC_DOUBLE(missingValue); SET_LONG_VALUE("ijDirectionIncrementGiven", 1); /* TODO: add Assert */ - COPY_SPEC_LONG(Ni); COPY_SPEC_DOUBLE(iDirectionIncrementInDegrees); - COPY_SPEC_LONG(Nj); COPY_SPEC_LONG(N); @@ -1255,12 +1252,10 @@ grib_handle* grib_util_set_spec2(grib_handle* h, case GRIB_UTIL_GRID_SPEC_REDUCED_LL: COPY_SPEC_LONG(bitmapPresent); - if (spec->missingValue) - COPY_SPEC_DOUBLE(missingValue); + if (spec->missingValue) COPY_SPEC_DOUBLE(missingValue); SET_LONG_VALUE("ijDirectionIncrementGiven", 0); COPY_SPEC_LONG(Nj); - COPY_SPEC_DOUBLE(longitudeOfFirstGridPointInDegrees); COPY_SPEC_DOUBLE(longitudeOfLastGridPointInDegrees); @@ -1270,8 +1265,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, case GRIB_UTIL_GRID_SPEC_POLAR_STEREOGRAPHIC: COPY_SPEC_LONG(bitmapPresent); - if (spec->missingValue) - COPY_SPEC_DOUBLE(missingValue); + if (spec->missingValue) COPY_SPEC_DOUBLE(missingValue); COPY_SPEC_DOUBLE(longitudeOfFirstGridPointInDegrees); COPY_SPEC_DOUBLE(latitudeOfFirstGridPointInDegrees); @@ -1281,26 +1275,20 @@ grib_handle* grib_util_set_spec2(grib_handle* h, /* default iScansNegatively=0 jScansPositively=0 is ok */ COPY_SPEC_LONG(iScansNegatively); COPY_SPEC_LONG(jScansPositively); - COPY_SPEC_DOUBLE(orientationOfTheGridInDegrees); - COPY_SPEC_LONG(DxInMetres); COPY_SPEC_LONG(DyInMetres); - break; case GRIB_UTIL_GRID_SPEC_LAMBERT_AZIMUTHAL_EQUAL_AREA: COPY_SPEC_LONG(bitmapPresent); - if (spec->missingValue) - COPY_SPEC_DOUBLE(missingValue); + if (spec->missingValue) COPY_SPEC_DOUBLE(missingValue); COPY_SPEC_DOUBLE(longitudeOfFirstGridPointInDegrees); COPY_SPEC_DOUBLE(latitudeOfFirstGridPointInDegrees); COPY_SPEC_LONG(Ni); /* same as Nx */ COPY_SPEC_LONG(Nj); /* same as Ny */ - /* TODO - * pass in extra keys e.g. Dx, Dy, standardParallel and centralLongitude - */ + /* TODO: pass in extra keys e.g. Dx, Dy, standardParallel and centralLongitude */ /* COPY_SPEC_LONG(DxInMetres); @@ -1314,16 +1302,12 @@ grib_handle* grib_util_set_spec2(grib_handle* h, break; case GRIB_UTIL_GRID_SPEC_UNSTRUCTURED: COPY_SPEC_LONG(bitmapPresent); - if (spec->missingValue) - COPY_SPEC_DOUBLE(missingValue); - /* - * TODO: Other keys - */ + if (spec->missingValue) COPY_SPEC_DOUBLE(missingValue); + /* TODO: Other keys */ break; case GRIB_UTIL_GRID_SPEC_LAMBERT_CONFORMAL: COPY_SPEC_LONG(bitmapPresent); - if (spec->missingValue) - COPY_SPEC_DOUBLE(missingValue); + if (spec->missingValue) COPY_SPEC_DOUBLE(missingValue); COPY_SPEC_DOUBLE(longitudeOfFirstGridPointInDegrees); COPY_SPEC_DOUBLE(latitudeOfFirstGridPointInDegrees); COPY_SPEC_LONG(Ni); /* same as Nx */ @@ -1332,11 +1316,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, /* * Note: DxInMetres and DyInMetres * should be 'double' and not integer. WMO GRIB2 uses millimetres! - * TODO: - * Add other keys like Latin1, LoV etc - - *err = GRIB_NOT_IMPLEMENTED; - goto cleanup; + * TODO: Add other keys like Latin1, LoV etc */ break; @@ -1344,16 +1324,13 @@ grib_handle* grib_util_set_spec2(grib_handle* h, case GRIB_UTIL_GRID_SPEC_REDUCED_ROTATED_GG: COPY_SPEC_LONG(bitmapPresent); - if (spec->missingValue) - COPY_SPEC_DOUBLE(missingValue); + if (spec->missingValue) COPY_SPEC_DOUBLE(missingValue); SET_LONG_VALUE("ijDirectionIncrementGiven", 0); COPY_SPEC_LONG(Nj); COPY_SPEC_LONG(N); - COPY_SPEC_DOUBLE(longitudeOfFirstGridPointInDegrees); COPY_SPEC_DOUBLE(longitudeOfLastGridPointInDegrees); - COPY_SPEC_DOUBLE(latitudeOfFirstGridPointInDegrees); COPY_SPEC_DOUBLE(latitudeOfLastGridPointInDegrees); @@ -1433,7 +1410,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, /* Have to delay JPEG packing: * Reason 1: It is not available in GRIB1 and so we have to wait until we change edition * Reason 2: It has to be done AFTER we set the data values - */ + */ if (strcmp(input_packing_type, "grid_jpeg") && !strcmp(input_packing_type, "grid_simple")) setJpegPacking = 1; break; @@ -1441,7 +1418,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, /* Have to delay CCSDS packing: * Reason 1: It is not available in GRIB1 and so we have to wait until we change edition * Reason 2: It has to be done AFTER we set the data values - */ + */ if (strcmp(input_packing_type, "grid_ccsds") && !strcmp(input_packing_type, "grid_simple")) setCcsdsPacking = 1; break; From 45e788e2266ce6fca00acc79342fdbf492c32045 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 21 Feb 2021 16:21:18 +0000 Subject: [PATCH 344/683] Scripts: Refactoring --- definitions/add_params_from_tsv.pl | 46 ++++++++++++++++++------------ 1 file changed, 27 insertions(+), 19 deletions(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index ba40c3661..05ee3efe1 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -38,6 +38,9 @@ use strict; use warnings; $ARGV[0] or die "USAGE: $0 input.tsv\n"; +my $WRITE_TO_FILES = 1; +my $WRITE_TO_PARAMDB = 0; + my ($paramId, $shortName, $name, $units, $cfVarName); my ($discipline, $pcategory, $pnumber, $type1, $type2, $scaledValue1, $scaleFactor1, $scaledValue2, $scaleFactor2, $stat); @@ -47,12 +50,13 @@ my $NAME_FILENAME = "name.def"; my $UNITS_FILENAME = "units.def"; my $CFVARNAME_FILENAME = "cfVarName.def"; -write_or_append(\*OUT_PARAMID, "$PARAMID_FILENAME"); -write_or_append(\*OUT_SHORTNAME, "$SHORTNAME_FILENAME"); -write_or_append(\*OUT_NAME, "$NAME_FILENAME"); -write_or_append(\*OUT_UNITS, "$UNITS_FILENAME"); -write_or_append(\*OUT_CFVARNAME, "$CFVARNAME_FILENAME"); - +if ($WRITE_TO_FILES) { + create_or_append(\*OUT_PARAMID, "$PARAMID_FILENAME"); + create_or_append(\*OUT_SHORTNAME, "$SHORTNAME_FILENAME"); + create_or_append(\*OUT_NAME, "$NAME_FILENAME"); + create_or_append(\*OUT_UNITS, "$UNITS_FILENAME"); + create_or_append(\*OUT_CFVARNAME, "$CFVARNAME_FILENAME"); +} my $first = 1; while (<>) { @@ -74,21 +78,25 @@ while (<>) { $cfVarName = $shortName; $cfVarName = '\\'.$shortName if ($shortName =~ /^[0-9]/); - write_out_file(\*OUT_PARAMID, $name, $paramId); - write_out_file(\*OUT_SHORTNAME, $name, $shortName); - write_out_file(\*OUT_NAME, $name, $name); - write_out_file(\*OUT_UNITS, $name, $units); - write_out_file(\*OUT_CFVARNAME, $name, $cfVarName); + if ($WRITE_TO_FILES) { + write_out_file(\*OUT_PARAMID, $name, $paramId); + write_out_file(\*OUT_SHORTNAME, $name, $shortName); + write_out_file(\*OUT_NAME, $name, $name); + write_out_file(\*OUT_UNITS, $name, $units); + write_out_file(\*OUT_CFVARNAME, $name, $cfVarName); + } } -print "Wrote output files: $PARAMID_FILENAME $SHORTNAME_FILENAME $NAME_FILENAME $UNITS_FILENAME $CFVARNAME_FILENAME\n"; -close(OUT_PARAMID) or die "$PARAMID_FILENAME: $!"; -close(OUT_SHORTNAME) or die "$SHORTNAME_FILENAME: $!"; -close(OUT_NAME) or die "$NAME_FILENAME: $!"; -close(OUT_UNITS) or die "$UNITS_FILENAME: $!"; -close(OUT_CFVARNAME) or die "$CFVARNAME_FILENAME: $!"; - +if ($WRITE_TO_FILES) { + print "Wrote output files: $PARAMID_FILENAME $SHORTNAME_FILENAME $NAME_FILENAME $UNITS_FILENAME $CFVARNAME_FILENAME\n"; + close(OUT_PARAMID) or die "$PARAMID_FILENAME: $!"; + close(OUT_SHORTNAME) or die "$SHORTNAME_FILENAME: $!"; + close(OUT_NAME) or die "$NAME_FILENAME: $!"; + close(OUT_UNITS) or die "$UNITS_FILENAME: $!"; + close(OUT_CFVARNAME) or die "$CFVARNAME_FILENAME: $!"; +} +# ------------------------------------------------------------------- sub write_out_file { my $outfile = $_[0]; my $name = $_[1]; @@ -134,7 +142,7 @@ sub check_first_row_column_names { die "Error: 1st row column titles wrong: Column 14 should be 'typeOfStatisticalProcessing'\n" if ($keys[13] ne "typeOfStatisticalProcessing"); } -sub write_or_append { +sub create_or_append { my $outfile = $_[0]; my $fname = $_[1]; From 8644e4f11fef548127a39d523c174d45d8d853ca Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 21 Feb 2021 18:02:20 +0000 Subject: [PATCH 345/683] Definitions: cosmetics --- definitions/grib2/tables/0/4.15.table | 3 +-- definitions/grib2/tables/1/4.15.table | 3 +-- definitions/grib2/tables/2/4.15.table | 3 +-- definitions/grib2/tables/3/4.15.table | 3 +-- definitions/grib2/tables/4/4.15.table | 3 +-- .../grib3/local/1098/template.2.0.def~ | 19 ------------------- 6 files changed, 5 insertions(+), 29 deletions(-) delete mode 100644 definitions/grib3/local/1098/template.2.0.def~ diff --git a/definitions/grib2/tables/0/4.15.table b/definitions/grib2/tables/0/4.15.table index 659d07036..fa65b654f 100644 --- a/definitions/grib2/tables/0/4.15.table +++ b/definitions/grib2/tables/0/4.15.table @@ -1,5 +1,4 @@ - -0 0 Confidence level ('grib2/4.151.table') +0 0 Confidence level (4.151.table) 1 1 Delta time (seconds) 192 192 Reserved for local use 193 193 Reserved for local use diff --git a/definitions/grib2/tables/1/4.15.table b/definitions/grib2/tables/1/4.15.table index 659d07036..fa65b654f 100644 --- a/definitions/grib2/tables/1/4.15.table +++ b/definitions/grib2/tables/1/4.15.table @@ -1,5 +1,4 @@ - -0 0 Confidence level ('grib2/4.151.table') +0 0 Confidence level (4.151.table) 1 1 Delta time (seconds) 192 192 Reserved for local use 193 193 Reserved for local use diff --git a/definitions/grib2/tables/2/4.15.table b/definitions/grib2/tables/2/4.15.table index 49b0b2d26..e95568204 100644 --- a/definitions/grib2/tables/2/4.15.table +++ b/definitions/grib2/tables/2/4.15.table @@ -1,6 +1,5 @@ # CODE TABLE 4.15, Type of auxiliary information - -0 0 Confidence level ('grib2/4.151.table') +0 0 Confidence level (4.151.table) 1 1 Delta time (seconds) 192 192 Reserved for local use 193 193 Reserved for local use diff --git a/definitions/grib2/tables/3/4.15.table b/definitions/grib2/tables/3/4.15.table index 49b0b2d26..e95568204 100644 --- a/definitions/grib2/tables/3/4.15.table +++ b/definitions/grib2/tables/3/4.15.table @@ -1,6 +1,5 @@ # CODE TABLE 4.15, Type of auxiliary information - -0 0 Confidence level ('grib2/4.151.table') +0 0 Confidence level (4.151.table) 1 1 Delta time (seconds) 192 192 Reserved for local use 193 193 Reserved for local use diff --git a/definitions/grib2/tables/4/4.15.table b/definitions/grib2/tables/4/4.15.table index 49b0b2d26..e95568204 100644 --- a/definitions/grib2/tables/4/4.15.table +++ b/definitions/grib2/tables/4/4.15.table @@ -1,6 +1,5 @@ # CODE TABLE 4.15, Type of auxiliary information - -0 0 Confidence level ('grib2/4.151.table') +0 0 Confidence level (4.151.table) 1 1 Delta time (seconds) 192 192 Reserved for local use 193 193 Reserved for local use diff --git a/definitions/grib3/local/1098/template.2.0.def~ b/definitions/grib3/local/1098/template.2.0.def~ deleted file mode 100644 index b8781760a..000000000 --- a/definitions/grib3/local/1098/template.2.0.def~ +++ /dev/null @@ -1,19 +0,0 @@ -codetable[2] tiggeModel 'grib2/local/[localSubSectionCentre:l]/models.table'; -codetable[2] tiggeCentre 'grib2/local/[localSubSectionCentre:l]/centres.table'; -concept tiggeLAMName { - "MOGREPS-MO- EUA" = {tiggeCentre=0;tiggeModel=0;} - "AEMet-SREPS-MM-EUAT"= {tiggeCentre=1;tiggeModel=1;} - "SRNWP-PEPS"= {tiggeCentre=1;tiggeModel=2;} - "COSMOLEPS-ARPASIMC-EU"= {tiggeCentre=2;tiggeModel=3;} - "NORLAMEPS" = {tiggeCentre=3;tiggeModel=4;} - "ALADIN-LAEF" = {tiggeCentre=4;tiggeModel=5;} - "COSMO-DE EPS" = {tiggeCentre=5;tiggeModel=6;} - "COSMO-SREPS-BO-EU" = {tiggeCentre=6;tiggeModel=7;} - "GLAMEPS" = {tiggeCentre=7;tiggeModel=8;} - "PEARCE" = {tiggeCentre=8;tiggeModel=9;} - "DMI- HIRLAM" = {tiggeCentre=9;tiggeModel=10;} - "OMSZ- ALADIN-EPS" = {tiggeCentre=10;tiggeModel=11;} - "OMSZ- ALADIN-EPS" = {tiggeCentre=11;tiggeModel=11;} - "OMSZ- ALADIN-EPS" = {tiggeCentre=12;tiggeModel=11;} -} - From edce5fdacf0e2b99e798d7952225e2d014fe75f9 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 21 Feb 2021 18:04:24 +0000 Subject: [PATCH 346/683] Definitions: GRIB3: remove references to grib2 dir --- definitions/grib3/local.82.82.def | 2 +- definitions/grib3/local.82.83.def | 2 +- definitions/grib3/local.82.def | 10 ++++----- definitions/grib3/local.85.2.def | 2 +- definitions/grib3/local.85.def | 4 ++-- definitions/grib3/local.98.192.def | 6 ++--- definitions/grib3/local.98.300.def | 2 +- definitions/grib3/local.98.500.def | 22 +++++++++---------- definitions/grib3/local.98.def | 10 ++++----- definitions/grib3/local.tigge.1.def | 2 +- definitions/grib3/local/1098/template.2.0.def | 4 ++-- definitions/grib3/products_4.def | 2 +- definitions/grib3/products_5.def | 2 +- definitions/grib3/products_6.def | 2 +- definitions/grib3/products_7.def | 2 +- definitions/grib3/products_8.def | 2 +- definitions/grib3/products_9.def | 2 +- definitions/grib3/section.02.def | 6 ++--- definitions/grib3/tables/0/4.15.table | 2 +- definitions/grib3/tables/1/4.15.table | 2 +- definitions/grib3/template.3.110.def | 6 ++--- definitions/grib3/template.3.140.def | 6 ++--- definitions/grib3/template.3.20.def | 8 +++---- .../grib3/template.3.resolution_flags.def | 2 +- .../grib3/template.4.resolution_flags.def | 2 +- .../grib3/template.4.scanning_mode.def | 2 +- 26 files changed, 57 insertions(+), 57 deletions(-) diff --git a/definitions/grib3/local.82.82.def b/definitions/grib3/local.82.82.def index 7cb9734ce..5e3236757 100644 --- a/definitions/grib3/local.82.82.def +++ b/definitions/grib3/local.82.82.def @@ -9,7 +9,7 @@ ################################# # base local definition -include "grib2/local.82.0.def"; +include "grib3/local.82.0.def"; unsigned[1] marsExperimentOffset = 0 : dump, long_type; diff --git a/definitions/grib3/local.82.83.def b/definitions/grib3/local.82.83.def index 2d7d37f6f..d7ca8c457 100644 --- a/definitions/grib3/local.82.83.def +++ b/definitions/grib3/local.82.83.def @@ -10,7 +10,7 @@ # base file: contains keywords always present -include "grib2/local.82.0.def"; +include "grib3/local.82.0.def"; # extra keywords specific to local definition 83 (MATCH) codetable[1] matchSort "grib1/localConcepts/eswi/sort.table" : dump,long_type; diff --git a/definitions/grib3/local.82.def b/definitions/grib3/local.82.def index 2e38242c3..5d3a78339 100644 --- a/definitions/grib3/local.82.def +++ b/definitions/grib3/local.82.def @@ -1,20 +1,20 @@ #local section ECMWF -alias localDefinitionNumber=grib2LocalSectionNumber; -template localSection "grib2/local.[centreForLocal:l].[grib2LocalSectionNumber:l].def"; +alias localDefinitionNumber=grib3LocalSectionNumber; +template localSection "grib3/local.[centreForLocal:l].[grib3LocalSectionNumber:l].def"; ##################### ### MARS LABELING ### ##################### -template mars_labeling "grib2/mars_labeling.82.def"; -template_nofail marsKeywords "mars/eswi/grib2.[stream:s].[type:s].def"; +template mars_labeling "grib3/mars_labeling.82.def"; +template_nofail marsKeywords "mars/eswi/grib3.[stream:s].[type:s].def"; ################### ### LS LABELING ### ################### -template ls_labeling "grib2/ls_labeling.82.def"; +template ls_labeling "grib3/ls_labeling.82.def"; position offsetAfterLocalSection; diff --git a/definitions/grib3/local.85.2.def b/definitions/grib3/local.85.2.def index 58fe1d88f..84384fd15 100644 --- a/definitions/grib3/local.85.2.def +++ b/definitions/grib3/local.85.2.def @@ -1,5 +1,5 @@ # Hollow grid-point fields used for AROME coupling -include "grib2/local.85.1.def"; +include "grib3/local.85.1.def"; unsigned[8] ICPLSIZE : dump; diff --git a/definitions/grib3/local.85.def b/definitions/grib3/local.85.def index c66079560..b7fdd008b 100644 --- a/definitions/grib3/local.85.def +++ b/definitions/grib3/local.85.def @@ -1,3 +1,3 @@ -alias localDefinitionNumber=grib2LocalSectionNumber; -template localSection "grib2/local.[centreForLocal:l].[grib2LocalSectionNumber:l].def"; +alias localDefinitionNumber=grib3LocalSectionNumber; +template localSection "grib3/local.[centreForLocal:l].[grib3LocalSectionNumber:l].def"; position offsetAfterLocalSection; diff --git a/definitions/grib3/local.98.192.def b/definitions/grib3/local.98.192.def index 6382bd8c3..32ff0645d 100644 --- a/definitions/grib3/local.98.192.def +++ b/definitions/grib3/local.98.192.def @@ -7,14 +7,14 @@ # virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. # -# GRIB2 Local Definition 192: Multiple ECMWF local definitions +# GRIB3 Local Definition 192: Multiple ECMWF local definitions unsigned[1] numberOfLocalDefinitions = 2 : dump; if (numberOfLocalDefinitions == 2 ) { unsigned[1] subLocalDefinitionNumber1 = 1 : dump; - template subDefinitions1 "grib2/local.98.[subLocalDefinitionNumber1].def"; + template subDefinitions1 "grib3/local.98.[subLocalDefinitionNumber1].def"; unsigned[1] subLocalDefinitionNumber2 = 24 : dump; - template subDefinitions2 "grib2/local.98.[subLocalDefinitionNumber2].def"; + template subDefinitions2 "grib3/local.98.[subLocalDefinitionNumber2].def"; } diff --git a/definitions/grib3/local.98.300.def b/definitions/grib3/local.98.300.def index c4d1f9b65..acb997945 100644 --- a/definitions/grib3/local.98.300.def +++ b/definitions/grib3/local.98.300.def @@ -9,7 +9,7 @@ # Definition 300 - Multi-dimensional parameters -codetable[1] dimensionType "grib2/dimensionType.table"=0; +codetable[1] dimensionType "grib3/dimensionType.table"=0; # The n-th dimension (out of total number of dimensions) unsigned[2] dimensionNumber; diff --git a/definitions/grib3/local.98.500.def b/definitions/grib3/local.98.500.def index 3fa593b58..3fde77178 100755 --- a/definitions/grib3/local.98.500.def +++ b/definitions/grib3/local.98.500.def @@ -25,29 +25,29 @@ #meta dataTime time(hour,minute,second) : dump; #alias mars.time = dataTime; -codetable[2] observationType "grib2/tables/local/ecmf/obstat.2.0.table"; +codetable[2] observationType "grib3/tables/local/ecmf/obstat.2.0.table"; -codetable[2] codeType "grib2/tables/local/ecmf/obstat.3.0.table"; +codetable[2] codeType "grib3/tables/local/ecmf/obstat.3.0.table"; -codetable[2] varno "grib2/tables/local/ecmf/obstat.varno.table"; +codetable[2] varno "grib3/tables/local/ecmf/obstat.varno.table"; -codetable[2] reportType "grib2/tables/local/ecmf/obstat.reporttype.table"; +codetable[2] reportType "grib3/tables/local/ecmf/obstat.reporttype.table"; unsigned[1] phase; -codetable[2] platform "grib2/tables/local/ecmf/obstat.4.0.table"; +codetable[2] platform "grib3/tables/local/ecmf/obstat.4.0.table"; -codetable[2] instrument "grib2/tables/local/ecmf/obstat.5.0.table"; +codetable[2] instrument "grib3/tables/local/ecmf/obstat.5.0.table"; -codetable[2] dataStream "grib2/tables/local/ecmf/obstat.6.0.table"; +codetable[2] dataStream "grib3/tables/local/ecmf/obstat.6.0.table"; -# include "grib2/template.4.horizontal.def" +# include "grib3/template.4.horizontal.def" -codetable[2] observationDiagnostic "grib2/tables/local/ecmf/obstat.9.0.table"; +codetable[2] observationDiagnostic "grib3/tables/local/ecmf/obstat.9.0.table"; -codetable[2] dataSelection "grib2/tables/local/ecmf/obstat.10.0.table"; +codetable[2] dataSelection "grib3/tables/local/ecmf/obstat.10.0.table"; unsigned[2] scanPosition; -codetable[1] mask "grib2/tables/local/ecmf/obstat.8.0.table"; +codetable[1] mask "grib3/tables/local/ecmf/obstat.8.0.table"; diff --git a/definitions/grib3/local.98.def b/definitions/grib3/local.98.def index 1de5ff9b8..4ec470b81 100644 --- a/definitions/grib3/local.98.def +++ b/definitions/grib3/local.98.def @@ -1,9 +1,9 @@ #local section ECMWF -template mars_labeling "grib2/mars_labeling.def"; +template mars_labeling "grib3/mars_labeling.def"; transient productDefinitionTemplateNumberInternal=-1; -meta localDefinitionNumber local_definition(grib2LocalSectionNumber, +meta localDefinitionNumber local_definition(grib3LocalSectionNumber, productDefinitionTemplateNumber, productDefinitionTemplateNumberInternal, type, @@ -19,7 +19,7 @@ meta eps g2_eps(productDefinitionTemplateNumber, stepType, derivedForecast); -template localSection "grib2/local.98.[grib2LocalSectionNumber:l].def"; +template localSection "grib3/local.98.[grib3LocalSectionNumber:l].def"; position offsetAfterLocalSection; transient addExtraLocalSection=0; transient deleteExtraLocalSection=0; @@ -27,7 +27,7 @@ transient deleteExtraLocalSection=0; meta extraLocalSectionPresent evaluate (section2Length - offsetAfterLocalSection + offsetSection2 > 0 ); if ( ( extraLocalSectionPresent || addExtraLocalSection ) && ! deleteExtraLocalSection) { # extra local section present - codetable[2] extraLocalSectionNumber 'grib2/grib2LocalSectionNumber.[centreForLocal:l].table' = 300 : dump; - template localSection "grib2/local.98.[extraLocalSectionNumber:l].def"; + codetable[2] extraLocalSectionNumber 'grib3/grib3LocalSectionNumber.[centreForLocal:l].table' = 300 : dump; + template localSection "grib3/local.98.[extraLocalSectionNumber:l].def"; } diff --git a/definitions/grib3/local.tigge.1.def b/definitions/grib3/local.tigge.1.def index 65b23701c..0b5bafd9d 100644 --- a/definitions/grib3/local.tigge.1.def +++ b/definitions/grib3/local.tigge.1.def @@ -1,5 +1,5 @@ # tigge LAM labeling -codetable[2] suiteName "grib2/tigge_suiteName.table" : dump; +codetable[2] suiteName "grib3/tigge_suiteName.table" : dump; alias tiggeSuiteID = suiteName; diff --git a/definitions/grib3/local/1098/template.2.0.def b/definitions/grib3/local/1098/template.2.0.def index 68e64f33b..38324e78f 100644 --- a/definitions/grib3/local/1098/template.2.0.def +++ b/definitions/grib3/local/1098/template.2.0.def @@ -1,5 +1,5 @@ -codetable[2] tiggeModel 'grib2/local/[localSubSectionCentre:l]/models.table'; -codetable[2] tiggeCentre 'grib2/local/[localSubSectionCentre:l]/centres.table'; +codetable[2] tiggeModel 'grib3/local/[localSubSectionCentre:l]/models.table'; +codetable[2] tiggeCentre 'grib3/local/[localSubSectionCentre:l]/centres.table'; concept tiggeLAMName { "MOGREPS-MO- EUA" = {tiggeCentre=0;tiggeModel=0;} "AEMet-SREPS-MM-EUAT"= {tiggeCentre=1;tiggeModel=1;} diff --git a/definitions/grib3/products_4.def b/definitions/grib3/products_4.def index 3d5e1fa0a..fceae7af2 100644 --- a/definitions/grib3/products_4.def +++ b/definitions/grib3/products_4.def @@ -9,4 +9,4 @@ # Tigge constant marsExpver = 'prod'; -include "grib2/products_tigge.def" +include "grib3/products_tigge.def" diff --git a/definitions/grib3/products_5.def b/definitions/grib3/products_5.def index 19aa93a96..0439382ae 100644 --- a/definitions/grib3/products_5.def +++ b/definitions/grib3/products_5.def @@ -9,4 +9,4 @@ # Tigge constant marsExpver = 'test'; -include "grib2/products_tigge.def" +include "grib3/products_tigge.def" diff --git a/definitions/grib3/products_6.def b/definitions/grib3/products_6.def index fe5c4d3b2..2a0d5472f 100644 --- a/definitions/grib3/products_6.def +++ b/definitions/grib3/products_6.def @@ -9,4 +9,4 @@ # S2S constant marsExpver = 'prod'; -include "grib2/products_s2s.def" +include "grib3/products_s2s.def" diff --git a/definitions/grib3/products_7.def b/definitions/grib3/products_7.def index c9e281dba..8d697f089 100644 --- a/definitions/grib3/products_7.def +++ b/definitions/grib3/products_7.def @@ -9,4 +9,4 @@ # S2S test constant marsExpver = 'test'; -include "grib2/products_s2s.def" +include "grib3/products_s2s.def" diff --git a/definitions/grib3/products_8.def b/definitions/grib3/products_8.def index f06ae4c71..fbbc2f856 100644 --- a/definitions/grib3/products_8.def +++ b/definitions/grib3/products_8.def @@ -9,4 +9,4 @@ # Uncertainties in ensembles of regional re-analysis project (UERRA) constant marsExpver = 'prod'; -include "grib2/products_uerra.def" +include "grib3/products_uerra.def" diff --git a/definitions/grib3/products_9.def b/definitions/grib3/products_9.def index cf7911e99..83b4b464b 100644 --- a/definitions/grib3/products_9.def +++ b/definitions/grib3/products_9.def @@ -9,4 +9,4 @@ # Uncertainties in ensembles of regional re-analysis project test (UERRA) constant marsExpver = 'test'; -include "grib2/products_uerra.def" +include "grib3/products_uerra.def" diff --git a/definitions/grib3/section.02.def b/definitions/grib3/section.02.def index 78c338932..8368b8c2d 100644 --- a/definitions/grib3/section.02.def +++ b/definitions/grib3/section.02.def @@ -40,7 +40,7 @@ unsigned[4] lengthOfIndexTemplate = 0: dump,edition_specific; template_nofail indexTemplate "grib3/template.2.[indexTemplateNumber:i].def"; #if ( addEmptySection2 == 0 ) { -# if ( grib2LocalSectionPresent==1 or ( section2Length>5 or new() ) ) { +# if ( grib3LocalSectionPresent==1 or ( section2Length>5 or new() ) ) { # alias section2Used=one; # # if(productionStatusOfProcessedData == 4 || productionStatusOfProcessedData == 5) { @@ -49,9 +49,9 @@ template_nofail indexTemplate "grib3/template.2.[indexTemplateNumber:i].def"; # template tiggeSection "grib3/local.tigge.[tiggeLocalVersion:l].def"; # } # -# codetable[2] grib2LocalSectionNumber 'grib3/grib2LocalSectionNumber.[centreForLocal:l].table' = 1 : dump; +# codetable[2] grib3LocalSectionNumber 'grib3/grib3LocalSectionNumber.[centreForLocal:l].table' = 1 : dump; # -# if (grib2LocalSectionNumber!=0) { +# if (grib3LocalSectionNumber!=0) { # template_nofail local "grib3/local.[centreForLocal:l].def"; # } else { # constant deleteLocalDefinition=1; diff --git a/definitions/grib3/tables/0/4.15.table b/definitions/grib3/tables/0/4.15.table index 49b0b2d26..d03503c5b 100644 --- a/definitions/grib3/tables/0/4.15.table +++ b/definitions/grib3/tables/0/4.15.table @@ -1,6 +1,6 @@ # CODE TABLE 4.15, Type of auxiliary information -0 0 Confidence level ('grib2/4.151.table') +0 0 Confidence level (4.151.table) 1 1 Delta time (seconds) 192 192 Reserved for local use 193 193 Reserved for local use diff --git a/definitions/grib3/tables/1/4.15.table b/definitions/grib3/tables/1/4.15.table index 49b0b2d26..d03503c5b 100644 --- a/definitions/grib3/tables/1/4.15.table +++ b/definitions/grib3/tables/1/4.15.table @@ -1,6 +1,6 @@ # CODE TABLE 4.15, Type of auxiliary information -0 0 Confidence level ('grib2/4.151.table') +0 0 Confidence level (4.151.table) 1 1 Delta time (seconds) 192 192 Reserved for local use 193 193 Reserved for local use diff --git a/definitions/grib3/template.3.110.def b/definitions/grib3/template.3.110.def index 480f50459..3f8676a3a 100644 --- a/definitions/grib3/template.3.110.def +++ b/definitions/grib3/template.3.110.def @@ -9,7 +9,7 @@ # TEMPLATE 3.110, Equatorial azimuthal equidistant projection -include "grib2/template.3.shape_of_the_earth.def"; +include "grib3/template.3.shape_of_the_earth.def"; # Nx - number of points along X-axis unsigned[4] numberOfPointsAlongXAxis : dump ; @@ -29,7 +29,7 @@ unsigned[4] longitudeOfTangencyPoint : dump ; alias Lo1 = longitudeOfTangencyPoint; # Resolution and component flag -flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump ; +flags[1] resolutionAndComponentFlags 'grib3/tables/[tablesVersion]/3.3.table' : dump ; # Dx - X-direction grid length in units of 10 -3 m as measured at the point of the axis unsigned[4] Dx : dump ; @@ -40,5 +40,5 @@ unsigned[4] Dy : dump ; # Projection centre flag unsigned[1] projectionCentreFlag : dump ; -include "grib2/template.3.scanning_mode.def"; +include "grib3/template.3.scanning_mode.def"; diff --git a/definitions/grib3/template.3.140.def b/definitions/grib3/template.3.140.def index 58ce8901f..17f417de1 100644 --- a/definitions/grib3/template.3.140.def +++ b/definitions/grib3/template.3.140.def @@ -10,7 +10,7 @@ # START 2/template.3.140 ---------------------------------------------------------------------- # TEMPLATE 3.140, Lambert azimuthal equal area projection -include "grib2/template.3.shape_of_the_earth.def"; +include "grib3/template.3.shape_of_the_earth.def"; # Nx - number of points along X-axis unsigned[4] numberOfPointsAlongXAxis : dump ; @@ -41,7 +41,7 @@ signed[4] centralLongitudeInMicrodegrees : dump; alias centralLongitude=centralLongitudeInMicrodegrees; # Resolution and component flag -flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump ; +flags[1] resolutionAndComponentFlags 'grib3/tables/[tablesVersion]/3.3.table' : dump ; # Dx - X-direction grid length in millimetres unsigned[4] xDirectionGridLengthInMillimetres : dump ; @@ -51,7 +51,7 @@ alias Dx = xDirectionGridLengthInMillimetres ; unsigned[4] yDirectionGridLengthInMillimetres : dump ; alias Dy = yDirectionGridLengthInMillimetres ; -include "grib2/template.3.scanning_mode.def"; +include "grib3/template.3.scanning_mode.def"; iterator lambert_azimuthal_equal_area(numberOfPoints,missingValue,values, radius,Nx,Ny, diff --git a/definitions/grib3/template.3.20.def b/definitions/grib3/template.3.20.def index af4afaaea..33be66ba6 100644 --- a/definitions/grib3/template.3.20.def +++ b/definitions/grib3/template.3.20.def @@ -10,7 +10,7 @@ # START 2/template.3.20 ---------------------------------------------------------------------- # TEMPLATE 3.20, Polar stereographic projection -include "grib2/template.3.shape_of_the_earth.def"; +include "grib3/template.3.shape_of_the_earth.def"; transient oneThousand=1000; # Nx - number of points along X-axis @@ -36,7 +36,7 @@ meta geography.longitudeOfFirstGridPointInDegrees scale(longitudeOfFirstGridPoin alias Lo1 = longitudeOfFirstGridPoint; # Resolution and component flag -flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : dump; +flags[1] resolutionAndComponentFlags 'grib3/tables/[tablesVersion]/3.3.table' : dump; # LaD - Latitude where Dx and Dy are specified signed[4] LaD : edition_specific; @@ -64,13 +64,13 @@ meta geography.DyInMetres scale(Dy,one,thousand,truncateDegrees) : dump; alias yDirectionGridLength=Dy; # Projection centre flag -flags[1] projectionCentreFlag 'grib2/tables/[tablesVersion]/3.5.table' : dump; +flags[1] projectionCentreFlag 'grib3/tables/[tablesVersion]/3.5.table' : dump; # Note our flagbit numbers go from 7 to 0, while WMO convention is from 1 to 8 # If bit 1 is 0, then the North Pole is on the projection plane # If bit 1 is 1, then the South Pole is on the projection plane flagbit southPoleOnProjectionPlane(projectionCentreFlag,7) : dump; # WMO bit 1 -include "grib2/template.3.scanning_mode.def"; +include "grib3/template.3.scanning_mode.def"; iterator polar_stereographic(numberOfPoints,missingValue,values, diff --git a/definitions/grib3/template.3.resolution_flags.def b/definitions/grib3/template.3.resolution_flags.def index 41b11dfed..bdc55846f 100644 --- a/definitions/grib3/template.3.resolution_flags.def +++ b/definitions/grib3/template.3.resolution_flags.def @@ -8,7 +8,7 @@ # # Resolution and component flags -flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : edition_specific,no_copy; +flags[1] resolutionAndComponentFlags 'grib3/tables/[tablesVersion]/3.3.table' : edition_specific,no_copy; # Note our flagbit numbers run from 7 to 0, while WMO convention uses 1 to 8 # (most significant to least significant) diff --git a/definitions/grib3/template.4.resolution_flags.def b/definitions/grib3/template.4.resolution_flags.def index 41b11dfed..bdc55846f 100644 --- a/definitions/grib3/template.4.resolution_flags.def +++ b/definitions/grib3/template.4.resolution_flags.def @@ -8,7 +8,7 @@ # # Resolution and component flags -flags[1] resolutionAndComponentFlags 'grib2/tables/[tablesVersion]/3.3.table' : edition_specific,no_copy; +flags[1] resolutionAndComponentFlags 'grib3/tables/[tablesVersion]/3.3.table' : edition_specific,no_copy; # Note our flagbit numbers run from 7 to 0, while WMO convention uses 1 to 8 # (most significant to least significant) diff --git a/definitions/grib3/template.4.scanning_mode.def b/definitions/grib3/template.4.scanning_mode.def index 718e2eda1..fe117d991 100644 --- a/definitions/grib3/template.4.scanning_mode.def +++ b/definitions/grib3/template.4.scanning_mode.def @@ -7,7 +7,7 @@ # virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. # -flags[1] scanningMode 'grib2/tables/[tablesVersion]/3.4.table' : edition_specific,no_copy ; +flags[1] scanningMode 'grib3/tables/[tablesVersion]/3.4.table' : edition_specific,no_copy ; # Note our flagbit numbers go from 7 to 0, while WMO convention is from 1 to 8 flagbit iScansNegatively(scanningMode,7) : dump; # WMO bit 1 From 2c5dd1d57c2f9bf3bc49c9721304e95ed202b97c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 22 Feb 2021 13:37:23 +0000 Subject: [PATCH 347/683] Scripts: initial support for populating Parameter Database --- definitions/add_params_from_tsv.pl | 104 ++++++++++++++++++++++++++++- 1 file changed, 102 insertions(+), 2 deletions(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index 05ee3efe1..5206c40de 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -36,20 +36,52 @@ $|=1; use strict; use warnings; +use DBI; +use Time::localtime; + $ARGV[0] or die "USAGE: $0 input.tsv\n"; -my $WRITE_TO_FILES = 1; +my $WRITE_TO_FILES = 0; my $WRITE_TO_PARAMDB = 0; my ($paramId, $shortName, $name, $units, $cfVarName); my ($discipline, $pcategory, $pnumber, $type1, $type2, $scaledValue1, $scaleFactor1, $scaledValue2, $scaleFactor2, $stat); +my %key_to_attrib_map = ( + 'discipline' => 4, + 'parameterCategory' => 8, + 'parameterNumber' => 5, + 'localTablesVersion' => 16, + 'typeOfFirstFixedSurface' => 6, + 'scaleFactorOfFirstFixedSurface' => 7, + 'scaledValueOfFirstFixedSurface' => 9, + 'typeOfStatisticalProcessing' => 11, + 'typeOfSecondFixedSurface' => 13, + 'scaledValueOfSecondFixedSurface' => 14, + 'scaleFactorOfSecondFixedSurface' => 15, + 'typeOfGeneratingProcess' => 28, + 'constituentType' => 40, + 'aerosolType' => 46 +); +my $db = "param"; +my $host = $ENV{'DB_HOST'} || 'unknown'; +my $user = $ENV{'DB_USER'} || 'unknown'; +my $pass = $ENV{'DB_PASS'} || 'unknown'; +my $dbh = 0; +my $centre = -3; # WMO +my $edition = 2; +my $contactId = "A test"; # JIRA issue ID + my $PARAMID_FILENAME = "paramId.def"; my $SHORTNAME_FILENAME = "shortName.def"; my $NAME_FILENAME = "name.def"; my $UNITS_FILENAME = "units.def"; my $CFVARNAME_FILENAME = "cfVarName.def"; +my $tm = localtime; +my $today_date = sprintf("%04d-%02d-%02d", $tm->year+1900, ($tm->mon)+1, $tm->mday); +print "Using insert and update dates: $today_date\n"; + if ($WRITE_TO_FILES) { create_or_append(\*OUT_PARAMID, "$PARAMID_FILENAME"); create_or_append(\*OUT_SHORTNAME, "$SHORTNAME_FILENAME"); @@ -57,6 +89,9 @@ if ($WRITE_TO_FILES) { create_or_append(\*OUT_UNITS, "$UNITS_FILENAME"); create_or_append(\*OUT_CFVARNAME, "$CFVARNAME_FILENAME"); } +if ($WRITE_TO_PARAMDB) { + $dbh = DBI->connect("dbi:mysql(RaiseError=>1):database=$db;host=$host",$user,$pass) or die $DBI::errstr; +} my $first = 1; while (<>) { @@ -85,7 +120,33 @@ while (<>) { write_out_file(\*OUT_UNITS, $name, $units); write_out_file(\*OUT_CFVARNAME, $name, $cfVarName); } -} + + if ($WRITE_TO_PARAMDB) { + my $units_code = get_db_units_code($units); + my $is_chem = "y"; + my $is_aero = "y"; + $dbh->do("insert into param(id,shortName,name,units_id,insert_date,update_date,contact) values (?,?,?,?,?,?,?)",undef, + $paramId, $shortName, $name , $units_code, $today_date, $today_date, $contactId); + + # Table 'grib' columns: param_id edition centre attribute_id attribute_value param_version + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,4, $discipline,0); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,8, $pcategory,0); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,5, $pnumber,0); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,6, $type1,0) if ($type1 ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,13,$type2,0) if ($type2 ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,9, $scaledValue1,0) if ($scaledValue1 ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,7, $scaleFactor1,0) if ($scaleFactor1 ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,14,$scaledValue2,0) if ($scaledValue2 ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,15,$scaleFactor2,0) if ($scaleFactor2 ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,11,$stat,0) if ($stat ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,53,$is_chem,0) if ($is_chem ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,54,$is_aero,0) if ($is_aero ne ""); + #$dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,yy,xx,0) if (xx ne ""); + + # format is only GRIB2 + $dbh->do("insert into param_format(param_id,grib1,grib2) values (?,?,?)",undef,$paramId,0,1); + } +} # for each input line if ($WRITE_TO_FILES) { print "Wrote output files: $PARAMID_FILENAME $SHORTNAME_FILENAME $NAME_FILENAME $UNITS_FILENAME $CFVARNAME_FILENAME\n"; @@ -97,6 +158,45 @@ if ($WRITE_TO_FILES) { } # ------------------------------------------------------------------- +sub get_db_units_code { + my $u = shift; + return 1 if ($u eq 'm**2 s**-1'); + return 2 if ($u eq 'K'); + return 3 if ($u eq '(0 - 1)'); + return 4 if ($u eq 'm'); + return 5 if ($u eq 'm s**-1'); + return 6 if ($u eq 'J m**-2'); + return 7 if ($u eq '~'); + return 8 if ($u eq 's**-1'); + return 9 if ($u eq 'kg m**-3'); + return 10 if ($u eq 'm**3 m**-3'); + return 12 if ($u eq 's'); + return 14 if ($u eq 'N m**-2 s'); + return 15 if ($u eq 'm**2 s**-2'); + return 16 if ($u eq 'Pa'); + return 17 if ($u eq 'J kg**-1'); + return 18 if ($u eq 'K m**2 kg**-1 s**-1'); + return 19 if ($u eq 'm**2 m**-2'); + return 20 if ($u eq 's m**-1'); + return 21 if ($u eq 'kg kg**-1'); + return 22 if ($u eq 'kg m**-2'); + return 23 if ($u eq 'dimensionless'); + return 26 if ($u eq 'Pa s**-1'); + return 27 if ($u eq 'm of water equivalent'); + return 28 if ($u eq 'gpm'); + return 29 if ($u eq '%'); + return 33 if ($u eq 'kg m**-2 s**-1'); + + return 179 if ($u eq 'W'); + return 172 if ($u eq 'W m**-2'); + return 173 if ($u eq 'Index'); + return 174 if ($u eq 'W m**-2'); + return 175 if ($u eq 'kg m**-3'); + return 182 if ($u eq 'Degree N'); + + die "Unrecognized units $u\n"; +} + sub write_out_file { my $outfile = $_[0]; my $name = $_[1]; From 71d0c20198915c9f3f333f1ef78e6fe752eb6b27 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 22 Feb 2021 15:47:23 +0000 Subject: [PATCH 348/683] Definitions: GRIB3: clean up --- definitions/add_params_from_tsv.pl | 69 +++++++++++-------- definitions/grib3/local.98.11.def | 7 -- definitions/grib3/local.98.14.def | 6 -- definitions/grib3/local.98.15.def | 6 -- definitions/grib3/local.98.16.def | 8 --- definitions/grib3/local.98.18.def | 7 -- definitions/grib3/local.98.192.def | 7 -- definitions/grib3/local.98.20.def | 7 -- definitions/grib3/local.98.21.def | 7 -- definitions/grib3/local.98.24.def | 6 -- definitions/grib3/local.98.25.def | 6 -- definitions/grib3/local.98.26.def | 6 -- definitions/grib3/local.98.28.def | 6 -- definitions/grib3/local.98.30.def | 7 -- definitions/grib3/local.98.300.def | 7 -- definitions/grib3/local.98.36.def | 7 -- definitions/grib3/local.98.38.def | 7 -- definitions/grib3/local.98.39.def | 7 -- definitions/grib3/local.98.7.def | 7 -- definitions/grib3/local.98.9.def | 8 --- definitions/grib3/mars_labeling.def | 7 -- definitions/grib3/meta.def | 7 -- definitions/grib3/parameters.def | 7 -- definitions/grib3/products_0.def | 7 -- definitions/grib3/products_1.def | 7 -- definitions/grib3/products_2.def | 7 -- definitions/grib3/products_3.def | 7 -- definitions/grib3/products_4.def | 7 -- definitions/grib3/products_5.def | 7 -- definitions/grib3/products_6.def | 7 -- definitions/grib3/products_7.def | 7 -- definitions/grib3/products_8.def | 7 -- definitions/grib3/products_9.def | 7 -- definitions/grib3/products_s2s.def | 7 -- definitions/grib3/products_tigge.def | 7 -- definitions/grib3/products_uerra.def | 7 -- definitions/grib3/rules.def | 7 -- definitions/grib3/section.00.def | 7 -- definitions/grib3/section.01.def | 7 -- definitions/grib3/section.02.def | 7 -- definitions/grib3/section.03.def | 7 -- definitions/grib3/section.04.def | 7 -- definitions/grib3/section.05.def | 7 -- definitions/grib3/section.06.def | 7 -- definitions/grib3/section.07.def | 7 -- definitions/grib3/section.08.def | 7 -- definitions/grib3/section.09.def | 7 -- definitions/grib3/section.10.def | 7 -- definitions/grib3/section.11.def | 6 -- definitions/grib3/sections.def | 7 -- definitions/grib3/template.10.0.def | 7 -- definitions/grib3/template.3.0.def | 7 -- definitions/grib3/template.3.110.def | 8 --- definitions/grib3/template.3.140.def | 8 --- definitions/grib3/template.3.20.def | 7 -- .../grib3/template.3.resolution_flags.def | 7 -- definitions/grib3/template.4.0.def | 7 -- definitions/grib3/template.4.1.def | 7 -- definitions/grib3/template.4.2.def | 7 -- definitions/grib3/template.4.3.def | 7 -- definitions/grib3/template.4.horizontal.def | 7 -- .../grib3/template.4.resolution_flags.def | 7 -- .../grib3/template.4.scanning_mode.def | 7 -- definitions/grib3/template.5.0.def | 7 -- definitions/grib3/template.5.1.def | 7 -- definitions/grib3/template.6.0.def | 7 -- definitions/grib3/template.6.1.def | 7 -- definitions/grib3/template.6.2.def | 7 -- definitions/grib3/template.7.0.def | 7 -- definitions/grib3/template.7.1.def | 7 -- definitions/grib3/template.7.2.def | 7 -- definitions/grib3/template.7.3.def | 7 -- definitions/grib3/template.7.4.def | 7 -- definitions/grib3/template.8.0.def | 7 -- definitions/grib3/template.8.1.def | 7 -- definitions/grib3/template.9.0.def | 7 -- 76 files changed, 42 insertions(+), 549 deletions(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index 5206c40de..099f79a9c 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -21,13 +21,15 @@ # parameterCategory # parameterNumber # # The following are optional keys -# typeOfFirstFixedSurface -# scaleFactorOfFirstFixedSurface -# scaledValueOfFirstFixedSurface -# typeOfSecondFixedSurface -# scaleFactorOfSecondFixedSurface -# scaledValueOfSecondFixedSurface -# typeOfStatisticalProcessing +# typeOfFirstFixedSurface +# scaleFactorOfFirstFixedSurface +# scaledValueOfFirstFixedSurface +# typeOfSecondFixedSurface +# scaleFactorOfSecondFixedSurface +# scaledValueOfSecondFixedSurface +# typeOfStatisticalProcessing +# aerosolType +# constituentType # # It outputs the def files: # name.def paramId.def shortName.def units.def cfVarName.def @@ -45,7 +47,8 @@ my $WRITE_TO_FILES = 0; my $WRITE_TO_PARAMDB = 0; my ($paramId, $shortName, $name, $units, $cfVarName); -my ($discipline, $pcategory, $pnumber, $type1, $type2, $scaledValue1, $scaleFactor1, $scaledValue2, $scaleFactor2, $stat); +my ($discipline, $pcategory, $pnumber, $type1, $type2, $scaledValue1, $scaleFactor1, $scaledValue2, $scaleFactor2); +my ($stat, $aero, $constit); my %key_to_attrib_map = ( 'discipline' => 4, @@ -94,6 +97,7 @@ if ($WRITE_TO_PARAMDB) { } my $first = 1; +my $lcount = 0; while (<>) { chomp; s/\r//g; # Remove DOS carriage returns @@ -102,10 +106,11 @@ while (<>) { $first = 0; next; } + $lcount++; ($paramId, $shortName, $name, $units, $discipline, $pcategory, $pnumber, $type1, $type2, - $scaledValue1, $scaleFactor1, $scaledValue2, $scaleFactor2, $stat) = split(/\t/); + $scaledValue1, $scaleFactor1, $scaledValue2, $scaleFactor2, $stat, $aero, $constit) = split(/\t/); die "Error: paramID \"$paramId\" is not an integer!" if (!is_integer($paramId)); @@ -123,28 +128,32 @@ while (<>) { if ($WRITE_TO_PARAMDB) { my $units_code = get_db_units_code($units); - my $is_chem = "y"; - my $is_aero = "y"; + my $is_chem = "1"; + my $is_aero = ""; $dbh->do("insert into param(id,shortName,name,units_id,insert_date,update_date,contact) values (?,?,?,?,?,?,?)",undef, $paramId, $shortName, $name , $units_code, $today_date, $today_date, $contactId); - # Table 'grib' columns: param_id edition centre attribute_id attribute_value param_version - $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,4, $discipline,0); - $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,8, $pcategory,0); - $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,5, $pnumber,0); - $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,6, $type1,0) if ($type1 ne ""); - $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,13,$type2,0) if ($type2 ne ""); - $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,9, $scaledValue1,0) if ($scaledValue1 ne ""); - $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,7, $scaleFactor1,0) if ($scaleFactor1 ne ""); - $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,14,$scaledValue2,0) if ($scaledValue2 ne ""); - $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,15,$scaleFactor2,0) if ($scaleFactor2 ne ""); - $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,11,$stat,0) if ($stat ne ""); - $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,53,$is_chem,0) if ($is_chem ne ""); - $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,54,$is_aero,0) if ($is_aero ne ""); - #$dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,yy,xx,0) if (xx ne ""); + # Table 'grib' columns: param_id edition centre attribute_id attribute_value param_version + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,4, $discipline,0); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,8, $pcategory,0); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,5, $pnumber,0); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,6, $type1,0) if ($type1 ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,13,$type2,0) if ($type2 ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,9, $scaledValue1,0) if ($scaledValue1 ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,7, $scaleFactor1,0) if ($scaleFactor1 ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,14,$scaledValue2,0) if ($scaledValue2 ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,15,$scaleFactor2,0) if ($scaleFactor2 ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,11,$stat,0) if ($stat ne ""); - # format is only GRIB2 - $dbh->do("insert into param_format(param_id,grib1,grib2) values (?,?,?)",undef,$paramId,0,1); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,46,$aero,0) if ($aero ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,40,$constit,0) if ($constit ne ""); + + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,53,$is_chem,0) if ($is_chem ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,54,$is_aero,0) if ($is_aero ne ""); + #$dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,yy,xx,0) if (xx ne ""); + + # format is only GRIB2 + $dbh->do("insert into param_format(param_id,grib1,grib2) values (?,?,?)",undef,$paramId,0,1); } } # for each input line @@ -156,6 +165,9 @@ if ($WRITE_TO_FILES) { close(OUT_UNITS) or die "$UNITS_FILENAME: $!"; close(OUT_CFVARNAME) or die "$CFVARNAME_FILENAME: $!"; } +if ($WRITE_TO_PARAMDB) { + print "Wrote to Param DB. $lcount rows processed\n"; +} # ------------------------------------------------------------------- sub get_db_units_code { @@ -240,6 +252,9 @@ sub check_first_row_column_names { die "Error: 1st row column titles wrong: Column 12 should be 'scaleFactorOfSecondFixedSurface'\n" if ($keys[11] ne "scaleFactorOfSecondFixedSurface"); die "Error: 1st row column titles wrong: Column 13 should be 'scaledValueOfSecondFixedSurface'\n" if ($keys[12] ne "scaledValueOfSecondFixedSurface"); die "Error: 1st row column titles wrong: Column 14 should be 'typeOfStatisticalProcessing'\n" if ($keys[13] ne "typeOfStatisticalProcessing"); + + die "Error: 1st row column titles wrong: Column 15 should be 'aerosolType'\n" if ($keys[14] ne "aerosolType"); + die "Error: 1st row column titles wrong: Column 16 should be 'constituentType'\n" if ($keys[15] ne "constituentType"); } sub create_or_append { diff --git a/definitions/grib3/local.98.11.def b/definitions/grib3/local.98.11.def index 7c91145af..dca733381 100644 --- a/definitions/grib3/local.98.11.def +++ b/definitions/grib3/local.98.11.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Definition 11, Supplementary data used by the analysis diff --git a/definitions/grib3/local.98.14.def b/definitions/grib3/local.98.14.def index 68a8514e4..dd84238a9 100644 --- a/definitions/grib3/local.98.14.def +++ b/definitions/grib3/local.98.14.def @@ -1,11 +1,5 @@ # (C) Copyright 2005- ECMWF. # -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Definition 14, Brightness temperature diff --git a/definitions/grib3/local.98.15.def b/definitions/grib3/local.98.15.def index ec0d61722..44082119f 100644 --- a/definitions/grib3/local.98.15.def +++ b/definitions/grib3/local.98.15.def @@ -1,11 +1,5 @@ # (C) Copyright 2005- ECMWF. # -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# unsigned[2] systemNumber : dump ; diff --git a/definitions/grib3/local.98.16.def b/definitions/grib3/local.98.16.def index 1b2da664a..e38f220b8 100644 --- a/definitions/grib3/local.98.16.def +++ b/definitions/grib3/local.98.16.def @@ -1,12 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# - unsigned[2] systemNumber : dump ; unsigned[2] methodNumber : dump ; diff --git a/definitions/grib3/local.98.18.def b/definitions/grib3/local.98.18.def index 786005b2b..625bab5e8 100644 --- a/definitions/grib3/local.98.18.def +++ b/definitions/grib3/local.98.18.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# codetable[1] dataOrigin "grib1/0.table" : dump; alias mars.origin=dataOrigin; diff --git a/definitions/grib3/local.98.192.def b/definitions/grib3/local.98.192.def index 32ff0645d..c2eb7b1b5 100644 --- a/definitions/grib3/local.98.192.def +++ b/definitions/grib3/local.98.192.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # GRIB3 Local Definition 192: Multiple ECMWF local definitions diff --git a/definitions/grib3/local.98.20.def b/definitions/grib3/local.98.20.def index 2df29e302..534e9c34e 100644 --- a/definitions/grib3/local.98.20.def +++ b/definitions/grib3/local.98.20.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# unsigned[1] iterationNumber : dump; alias number=iterationNumber; diff --git a/definitions/grib3/local.98.21.def b/definitions/grib3/local.98.21.def index 2321c07b6..1bc85bbcc 100644 --- a/definitions/grib3/local.98.21.def +++ b/definitions/grib3/local.98.21.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Definition 21 - Sensitive area predictions diff --git a/definitions/grib3/local.98.24.def b/definitions/grib3/local.98.24.def index b3cd50d33..f5813cddc 100644 --- a/definitions/grib3/local.98.24.def +++ b/definitions/grib3/local.98.24.def @@ -1,11 +1,5 @@ # (C) Copyright 2005- ECMWF. # -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# unsigned[2] channelNumber : dump, can_be_missing; alias mars.channel = channelNumber; diff --git a/definitions/grib3/local.98.25.def b/definitions/grib3/local.98.25.def index 7339ad9b2..80971f450 100644 --- a/definitions/grib3/local.98.25.def +++ b/definitions/grib3/local.98.25.def @@ -1,11 +1,5 @@ # (C) Copyright 2005- ECMWF. # -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# unsigned[1] componentIndex : dump; alias mars.number=componentIndex; diff --git a/definitions/grib3/local.98.26.def b/definitions/grib3/local.98.26.def index 6f7a3f709..9e7fbfee2 100644 --- a/definitions/grib3/local.98.26.def +++ b/definitions/grib3/local.98.26.def @@ -1,11 +1,5 @@ # (C) Copyright 2005- ECMWF. # -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# unsigned[4] referenceDate : dump ; unsigned[4] climateDateFrom : dump; diff --git a/definitions/grib3/local.98.28.def b/definitions/grib3/local.98.28.def index fa52aa684..9e54e5059 100644 --- a/definitions/grib3/local.98.28.def +++ b/definitions/grib3/local.98.28.def @@ -1,11 +1,5 @@ # (C) Copyright 2005- ECMWF. # -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Definition 28 - COSMO local area EPS unsigned[4] baseDateEPS : dump; diff --git a/definitions/grib3/local.98.30.def b/definitions/grib3/local.98.30.def index 40a2e29f9..c79663bf0 100644 --- a/definitions/grib3/local.98.30.def +++ b/definitions/grib3/local.98.30.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# unsigned[1] oceanAtmosphereCoupling : dump; diff --git a/definitions/grib3/local.98.300.def b/definitions/grib3/local.98.300.def index acb997945..c80fbf3bc 100644 --- a/definitions/grib3/local.98.300.def +++ b/definitions/grib3/local.98.300.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Definition 300 - Multi-dimensional parameters diff --git a/definitions/grib3/local.98.36.def b/definitions/grib3/local.98.36.def index cd148bdc7..57dcc33ca 100644 --- a/definitions/grib3/local.98.36.def +++ b/definitions/grib3/local.98.36.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Definition 36 - MARS labelling for long window 4Dvar system (inspired by local def 1) diff --git a/definitions/grib3/local.98.38.def b/definitions/grib3/local.98.38.def index e912bdb46..1de8167d8 100644 --- a/definitions/grib3/local.98.38.def +++ b/definitions/grib3/local.98.38.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Definition 38 - 4D variational increments for long window 4Dvar system (inspired by local def 20) diff --git a/definitions/grib3/local.98.39.def b/definitions/grib3/local.98.39.def index 9be03b61a..b37fb2719 100644 --- a/definitions/grib3/local.98.39.def +++ b/definitions/grib3/local.98.39.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Definition 39 - 4DVar model errors for long window 4Dvar system (inspired by local def 25) diff --git a/definitions/grib3/local.98.7.def b/definitions/grib3/local.98.7.def index e321ef80b..70d3dcf6d 100644 --- a/definitions/grib3/local.98.7.def +++ b/definitions/grib3/local.98.7.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# unsigned[1] iterationNumber : dump; alias number=iterationNumber; diff --git a/definitions/grib3/local.98.9.def b/definitions/grib3/local.98.9.def index 0a288c2e1..8a2baa606 100644 --- a/definitions/grib3/local.98.9.def +++ b/definitions/grib3/local.98.9.def @@ -1,12 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# - unsigned[2] forecastOrSingularVectorNumber : dump; diff --git a/definitions/grib3/mars_labeling.def b/definitions/grib3/mars_labeling.def index f542ecb7f..6905210ce 100644 --- a/definitions/grib3/mars_labeling.def +++ b/definitions/grib3/mars_labeling.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# codetable[2] marsClass "mars/class.table" = "od" : dump,string_type,lowercase; codetable[2] marsType "mars/type.table" = "an" : dump,string_type,no_fail,lowercase; diff --git a/definitions/grib3/meta.def b/definitions/grib3/meta.def index eb3ab581c..add27a592 100644 --- a/definitions/grib3/meta.def +++ b/definitions/grib3/meta.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# label "Empty file"; diff --git a/definitions/grib3/parameters.def b/definitions/grib3/parameters.def index e7cea2eb2..907431c7b 100644 --- a/definitions/grib3/parameters.def +++ b/definitions/grib3/parameters.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# transient dummyc=0: hidden; constant conceptsMasterDir="grib3" : hidden; diff --git a/definitions/grib3/products_0.def b/definitions/grib3/products_0.def index 4bf54ef1e..1f9241931 100644 --- a/definitions/grib3/products_0.def +++ b/definitions/grib3/products_0.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Operational products diff --git a/definitions/grib3/products_1.def b/definitions/grib3/products_1.def index 9688c57e7..a33b7f5d6 100644 --- a/definitions/grib3/products_1.def +++ b/definitions/grib3/products_1.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Operationl test products diff --git a/definitions/grib3/products_2.def b/definitions/grib3/products_2.def index 65a7fcd95..703c2c22d 100644 --- a/definitions/grib3/products_2.def +++ b/definitions/grib3/products_2.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Research products diff --git a/definitions/grib3/products_3.def b/definitions/grib3/products_3.def index bc11b6373..cb87096dc 100644 --- a/definitions/grib3/products_3.def +++ b/definitions/grib3/products_3.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Re-analysis products diff --git a/definitions/grib3/products_4.def b/definitions/grib3/products_4.def index fceae7af2..1063079ff 100644 --- a/definitions/grib3/products_4.def +++ b/definitions/grib3/products_4.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Tigge constant marsExpver = 'prod'; diff --git a/definitions/grib3/products_5.def b/definitions/grib3/products_5.def index 0439382ae..ec9ddf0c5 100644 --- a/definitions/grib3/products_5.def +++ b/definitions/grib3/products_5.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Tigge constant marsExpver = 'test'; diff --git a/definitions/grib3/products_6.def b/definitions/grib3/products_6.def index 2a0d5472f..94dbbeb6f 100644 --- a/definitions/grib3/products_6.def +++ b/definitions/grib3/products_6.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # S2S constant marsExpver = 'prod'; diff --git a/definitions/grib3/products_7.def b/definitions/grib3/products_7.def index 8d697f089..d303f7c46 100644 --- a/definitions/grib3/products_7.def +++ b/definitions/grib3/products_7.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # S2S test constant marsExpver = 'test'; diff --git a/definitions/grib3/products_8.def b/definitions/grib3/products_8.def index fbbc2f856..162021989 100644 --- a/definitions/grib3/products_8.def +++ b/definitions/grib3/products_8.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Uncertainties in ensembles of regional re-analysis project (UERRA) constant marsExpver = 'prod'; diff --git a/definitions/grib3/products_9.def b/definitions/grib3/products_9.def index 83b4b464b..86b6f808d 100644 --- a/definitions/grib3/products_9.def +++ b/definitions/grib3/products_9.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Uncertainties in ensembles of regional re-analysis project test (UERRA) constant marsExpver = 'test'; diff --git a/definitions/grib3/products_s2s.def b/definitions/grib3/products_s2s.def index 7d1dd7720..9afaa32a4 100644 --- a/definitions/grib3/products_s2s.def +++ b/definitions/grib3/products_s2s.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # S2S constant marsClass = 's2'; diff --git a/definitions/grib3/products_tigge.def b/definitions/grib3/products_tigge.def index bc1028008..9a3a4ae81 100644 --- a/definitions/grib3/products_tigge.def +++ b/definitions/grib3/products_tigge.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Tigge constant marsClass = 'ti'; diff --git a/definitions/grib3/products_uerra.def b/definitions/grib3/products_uerra.def index 82289f687..7338e8d6d 100644 --- a/definitions/grib3/products_uerra.def +++ b/definitions/grib3/products_uerra.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Uncertainties in ensembles of regional re-analysis project (UERRA) constant marsClass = 'ur'; diff --git a/definitions/grib3/rules.def b/definitions/grib3/rules.def index de8932e55..c1f74af5d 100644 --- a/definitions/grib3/rules.def +++ b/definitions/grib3/rules.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Experimental stuff diff --git a/definitions/grib3/section.00.def b/definitions/grib3/section.00.def index bc68175bb..548bd86f9 100644 --- a/definitions/grib3/section.00.def +++ b/definitions/grib3/section.00.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Section 0 - Indicator Section diff --git a/definitions/grib3/section.01.def b/definitions/grib3/section.01.def index 5bde245b5..a40f454e4 100644 --- a/definitions/grib3/section.01.def +++ b/definitions/grib3/section.01.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Section 1 - Originator Section diff --git a/definitions/grib3/section.02.def b/definitions/grib3/section.02.def index 8368b8c2d..02c0f5ec5 100644 --- a/definitions/grib3/section.02.def +++ b/definitions/grib3/section.02.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Section 2 - Repetitions and Index Section diff --git a/definitions/grib3/section.03.def b/definitions/grib3/section.03.def index 16ddc6bc0..5c9c9e9f4 100644 --- a/definitions/grib3/section.03.def +++ b/definitions/grib3/section.03.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Section 3 - Time Domain Section diff --git a/definitions/grib3/section.04.def b/definitions/grib3/section.04.def index fe8d01494..e43305bde 100644 --- a/definitions/grib3/section.04.def +++ b/definitions/grib3/section.04.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Section 4 - Horizontal Domain Section diff --git a/definitions/grib3/section.05.def b/definitions/grib3/section.05.def index 1cd85ec84..0b29d8348 100644 --- a/definitions/grib3/section.05.def +++ b/definitions/grib3/section.05.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Section 5 - Vertical Domain Section diff --git a/definitions/grib3/section.06.def b/definitions/grib3/section.06.def index 59db019e2..89e1ad4c4 100644 --- a/definitions/grib3/section.06.def +++ b/definitions/grib3/section.06.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Section 6 - Generating Process Section diff --git a/definitions/grib3/section.07.def b/definitions/grib3/section.07.def index 5ac66dbad..574a30483 100644 --- a/definitions/grib3/section.07.def +++ b/definitions/grib3/section.07.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Section 7 - Observable Property Section diff --git a/definitions/grib3/section.08.def b/definitions/grib3/section.08.def index 90838fa71..3e7773dc6 100644 --- a/definitions/grib3/section.08.def +++ b/definitions/grib3/section.08.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Section 8 - Data Representation Section diff --git a/definitions/grib3/section.09.def b/definitions/grib3/section.09.def index 8c4234835..f90499c37 100644 --- a/definitions/grib3/section.09.def +++ b/definitions/grib3/section.09.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Section 9 - Overlay Section diff --git a/definitions/grib3/section.10.def b/definitions/grib3/section.10.def index ff53c3e75..af2826840 100644 --- a/definitions/grib3/section.10.def +++ b/definitions/grib3/section.10.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Section 10 - Data Section diff --git a/definitions/grib3/section.11.def b/definitions/grib3/section.11.def index 2c6bd14c5..af847a6fc 100644 --- a/definitions/grib3/section.11.def +++ b/definitions/grib3/section.11.def @@ -1,11 +1,5 @@ # (C) Copyright 2005- ECMWF. # -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Section 11 - End Section constant section11Length=4; position offsetSection11; diff --git a/definitions/grib3/sections.def b/definitions/grib3/sections.def index 313b93b7c..197678d96 100644 --- a/definitions/grib3/sections.def +++ b/definitions/grib3/sections.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # The section number is always 1 byte and at the 5th byte of each section (so offset=4) diff --git a/definitions/grib3/template.10.0.def b/definitions/grib3/template.10.0.def index 96685a9cb..c6a432cec 100644 --- a/definitions/grib3/template.10.0.def +++ b/definitions/grib3/template.10.0.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 10.0, Grid point data - simple packing # Octets 6-nn : Binary data values - binary string, with each diff --git a/definitions/grib3/template.3.0.def b/definitions/grib3/template.3.0.def index bf36bce18..9a151d7db 100644 --- a/definitions/grib3/template.3.0.def +++ b/definitions/grib3/template.3.0.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 3.0, Forecast point in time diff --git a/definitions/grib3/template.3.110.def b/definitions/grib3/template.3.110.def index 3f8676a3a..d0f37c35a 100644 --- a/definitions/grib3/template.3.110.def +++ b/definitions/grib3/template.3.110.def @@ -1,12 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# - # TEMPLATE 3.110, Equatorial azimuthal equidistant projection include "grib3/template.3.shape_of_the_earth.def"; diff --git a/definitions/grib3/template.3.140.def b/definitions/grib3/template.3.140.def index 17f417de1..b5d9d023d 100644 --- a/definitions/grib3/template.3.140.def +++ b/definitions/grib3/template.3.140.def @@ -1,12 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# - # START 2/template.3.140 ---------------------------------------------------------------------- # TEMPLATE 3.140, Lambert azimuthal equal area projection diff --git a/definitions/grib3/template.3.20.def b/definitions/grib3/template.3.20.def index 33be66ba6..2ba66029a 100644 --- a/definitions/grib3/template.3.20.def +++ b/definitions/grib3/template.3.20.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # START 2/template.3.20 ---------------------------------------------------------------------- diff --git a/definitions/grib3/template.3.resolution_flags.def b/definitions/grib3/template.3.resolution_flags.def index bdc55846f..759ad5d0e 100644 --- a/definitions/grib3/template.3.resolution_flags.def +++ b/definitions/grib3/template.3.resolution_flags.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Resolution and component flags flags[1] resolutionAndComponentFlags 'grib3/tables/[tablesVersion]/3.3.table' : edition_specific,no_copy; diff --git a/definitions/grib3/template.4.0.def b/definitions/grib3/template.4.0.def index 8fa46dee2..e6d73f2d9 100644 --- a/definitions/grib3/template.4.0.def +++ b/definitions/grib3/template.4.0.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 4.0, Latitude/longitude regular grid on ellipsoidal planet diff --git a/definitions/grib3/template.4.1.def b/definitions/grib3/template.4.1.def index 477162a69..6710fd9b6 100644 --- a/definitions/grib3/template.4.1.def +++ b/definitions/grib3/template.4.1.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 4.1, Rotated latitude/longitude regular grid on ellipsoidal planet diff --git a/definitions/grib3/template.4.2.def b/definitions/grib3/template.4.2.def index 474ef1c38..ef7334d3b 100644 --- a/definitions/grib3/template.4.2.def +++ b/definitions/grib3/template.4.2.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 4.2, Stretched latitude/longitude regular grid on ellipsoidal planet diff --git a/definitions/grib3/template.4.3.def b/definitions/grib3/template.4.3.def index 930996946..28b5bb90b 100644 --- a/definitions/grib3/template.4.3.def +++ b/definitions/grib3/template.4.3.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 4.3, Stretched and rotated latitude/longitude regular grid on ellipsoidal planet diff --git a/definitions/grib3/template.4.horizontal.def b/definitions/grib3/template.4.horizontal.def index bc259c772..5b1b78233 100755 --- a/definitions/grib3/template.4.horizontal.def +++ b/definitions/grib3/template.4.horizontal.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Type of first fixed surface codetable[1] typeOfFirstFixedSurface ('4.5.table',masterDir,localDir) : dump,no_copy,edition_specific,string_type; diff --git a/definitions/grib3/template.4.resolution_flags.def b/definitions/grib3/template.4.resolution_flags.def index bdc55846f..759ad5d0e 100644 --- a/definitions/grib3/template.4.resolution_flags.def +++ b/definitions/grib3/template.4.resolution_flags.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # Resolution and component flags flags[1] resolutionAndComponentFlags 'grib3/tables/[tablesVersion]/3.3.table' : edition_specific,no_copy; diff --git a/definitions/grib3/template.4.scanning_mode.def b/definitions/grib3/template.4.scanning_mode.def index fe117d991..4fcd2fabb 100644 --- a/definitions/grib3/template.4.scanning_mode.def +++ b/definitions/grib3/template.4.scanning_mode.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# flags[1] scanningMode 'grib3/tables/[tablesVersion]/3.4.table' : edition_specific,no_copy ; diff --git a/definitions/grib3/template.5.0.def b/definitions/grib3/template.5.0.def index dd15efcb8..9dd751987 100644 --- a/definitions/grib3/template.5.0.def +++ b/definitions/grib3/template.5.0.def @@ -1,12 +1,5 @@ # (C) Copyright 2005- ECMWF. # -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# - # TEMPLATE 5.0, Vertical level # Vertical level diff --git a/definitions/grib3/template.5.1.def b/definitions/grib3/template.5.1.def index b2f4041b7..d59892970 100644 --- a/definitions/grib3/template.5.1.def +++ b/definitions/grib3/template.5.1.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 5.1, Vertical layer diff --git a/definitions/grib3/template.6.0.def b/definitions/grib3/template.6.0.def index f30084b0c..2e3aa4c9c 100644 --- a/definitions/grib3/template.6.0.def +++ b/definitions/grib3/template.6.0.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 6.0, Forecast, analysis or observation diff --git a/definitions/grib3/template.6.1.def b/definitions/grib3/template.6.1.def index 5f9e77fa6..282d9fa04 100644 --- a/definitions/grib3/template.6.1.def +++ b/definitions/grib3/template.6.1.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 6.1, Individual ensemble forecast or analysis diff --git a/definitions/grib3/template.6.2.def b/definitions/grib3/template.6.2.def index 6fd511fd8..6e410aa9f 100644 --- a/definitions/grib3/template.6.2.def +++ b/definitions/grib3/template.6.2.def @@ -1,12 +1,5 @@ # (C) Copyright 2005- ECMWF. # -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# - # TEMPLATE 6.2, Statistical post-processing of all ensemble members # Process type and identifier diff --git a/definitions/grib3/template.7.0.def b/definitions/grib3/template.7.0.def index ab6c102d3..05fa9d5be 100644 --- a/definitions/grib3/template.7.0.def +++ b/definitions/grib3/template.7.0.def @@ -1,12 +1,5 @@ # (C) Copyright 2005- ECMWF. # -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# - # TEMPLATE 7.0, Observable property by discipline, category and number # Observable property by discipline, category and number diff --git a/definitions/grib3/template.7.1.def b/definitions/grib3/template.7.1.def index e101423a6..cf3fed8f9 100644 --- a/definitions/grib3/template.7.1.def +++ b/definitions/grib3/template.7.1.def @@ -1,12 +1,5 @@ # (C) Copyright 2005- ECMWF. # -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# - # TEMPLATE 7.1, Observable Property with units conversion # Observable property by discipline, category and number diff --git a/definitions/grib3/template.7.2.def b/definitions/grib3/template.7.2.def index 8ed124fbd..910c83b5c 100644 --- a/definitions/grib3/template.7.2.def +++ b/definitions/grib3/template.7.2.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 7.2, Atmospheric chemical or physical constituents diff --git a/definitions/grib3/template.7.3.def b/definitions/grib3/template.7.3.def index c54707463..6c5e2b486 100644 --- a/definitions/grib3/template.7.3.def +++ b/definitions/grib3/template.7.3.def @@ -1,12 +1,5 @@ # (C) Copyright 2005- ECMWF. # -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# - # TEMPLATE 7.3, Aerosol physical property # Observable property by discipline, category and number diff --git a/definitions/grib3/template.7.4.def b/definitions/grib3/template.7.4.def index 4bb1b1500..83786f303 100644 --- a/definitions/grib3/template.7.4.def +++ b/definitions/grib3/template.7.4.def @@ -1,12 +1,5 @@ # (C) Copyright 2005- ECMWF. # -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# - # TEMPLATE 7.4, Aerosol optical property # Observable property by discipline, category and number diff --git a/definitions/grib3/template.8.0.def b/definitions/grib3/template.8.0.def index 3a9a0fffd..47c9f298b 100644 --- a/definitions/grib3/template.8.0.def +++ b/definitions/grib3/template.8.0.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 8.0, Simple packing diff --git a/definitions/grib3/template.8.1.def b/definitions/grib3/template.8.1.def index c05cebe03..629610c8e 100644 --- a/definitions/grib3/template.8.1.def +++ b/definitions/grib3/template.8.1.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 8.1, IEEE floating point diff --git a/definitions/grib3/template.9.0.def b/definitions/grib3/template.9.0.def index 9c5dfd50d..f41b54222 100644 --- a/definitions/grib3/template.9.0.def +++ b/definitions/grib3/template.9.0.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# # TEMPLATE 9.0, Bitmap From 9f86f392bb2006abdd761dfc7e7a3aa48d05b46d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 23 Feb 2021 11:54:48 +0000 Subject: [PATCH 349/683] ECC-1206: tigge_check not failing for some wrong validityTime/validityDate --- tigge/tigge_check.c | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/tigge/tigge_check.c b/tigge/tigge_check.c index f1905bdd3..935c85221 100755 --- a/tigge/tigge_check.c +++ b/tigge/tigge_check.c @@ -88,11 +88,11 @@ static void pressure_level(grib_handle*,const parameter*,double,double); static void potential_temperature_level(grib_handle*,const parameter*,double,double); static void potential_vorticity_level(grib_handle*,const parameter*,double,double); -/* -TODO: +/* +TODO: - Shape of the earth - Levels - */ +*/ #include "tigge_check.h" @@ -133,7 +133,7 @@ static void warn(const char* name,int a) warning++; } } - */ +*/ static void save(grib_handle* h, const char *name,FILE* f) { @@ -381,6 +381,7 @@ static void check_validity_datetime(grib_handle* h) long validityDate, validityTime; /* Check only applies to accumulated, max etc. */ + str_len = 100; err = grib_get_string(h, "stepRange", stepRange, &str_len); if (err) return; @@ -409,8 +410,7 @@ static void check_range(grib_handle* h,const parameter* p,double min,double max) missing = dget(h,"missingValue"); /* See ECC-437 */ - if(!(get(h,"bitMapIndicator") == 0 && min == missing && max == missing)){ - + if (!(get(h,"bitMapIndicator") == 0 && min == missing && max == missing)) { if(min < p->min1 || min > p->min2) { printf("warning: %s, field %d [%s]: %s minimum value %g is not in [%g,%g]\n",file,field,param, @@ -429,7 +429,6 @@ static void check_range(grib_handle* h,const parameter* p,double min,double max) printf(" => [%g,%g]\n",max < p->max1 ? max : p->max1, max > p->max2 ? max : p->max2); warning++; } - } } @@ -506,7 +505,7 @@ static void point_in_time(grib_handle* h,const parameter* p,double min,double ma CHECK(eq(h,"indicatorOfUnitOfTimeRange",1));/* Hours */ CHECK((get(h,"forecastTime") % 3) == 0); /* Every three hours */ } - } + } else if (is_uerra) { if(get(h,"indicatorOfUnitOfTimeRange") == 1) /* hourly */ { @@ -753,8 +752,8 @@ static void statistical_process(grib_handle* h,const parameter* p,double min,dou CHECK(eq(h,"indicatorOfUnitOfTimeRange",1));/* Hours */ CHECK((get(h,"forecastTime") % 3) == 0); /* Every three hours */ } - } - else if (is_uerra) + } + else if (is_uerra) { /* forecastTime for uerra might be all steps decreased by 1 i.e 0,1,2,3,4,5,8,11...29 too many... */ if(get(h,"indicatorOfUnitOfTimeRange") == 1) @@ -762,7 +761,7 @@ static void statistical_process(grib_handle* h,const parameter* p,double min,dou CHECK(le(h,"forecastTime",30)); } } - else + else { if(get(h,"indicatorOfUnitOfTimeRange") == 11) /* six hours */ { @@ -805,7 +804,6 @@ static void statistical_process(grib_handle* h,const parameter* p,double min,dou { CHECK((get(h,"endStep") % 6) == 0); /* Every six hours */ } - if(get(h,"indicatorOfUnitForTimeRange") == 11) { @@ -1400,8 +1398,6 @@ static void verify(grib_handle* h) todo ?? now it's allowed in the code here! if(!missing(h,"typeOfStatisticalProcessing")) CHECK(ne(h,"stepRange",0));*/ - - } void validate(const char* path) From d22b3d1617f5cd1fbc9194cd77de7783f2efef8d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 23 Feb 2021 12:09:59 +0000 Subject: [PATCH 350/683] Definitions: fix broken test due to dump diff --- definitions/grib2/tables/4/4.15.table | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/definitions/grib2/tables/4/4.15.table b/definitions/grib2/tables/4/4.15.table index e95568204..6dbf4f03c 100644 --- a/definitions/grib2/tables/4/4.15.table +++ b/definitions/grib2/tables/4/4.15.table @@ -1,5 +1,5 @@ # CODE TABLE 4.15, Type of auxiliary information -0 0 Confidence level (4.151.table) +0 0 Confidence level ('grib2/4.151.table') 1 1 Delta time (seconds) 192 192 Reserved for local use 193 193 Reserved for local use From c3c4291aa5cd18290559e1be99c6327133406152 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 23 Feb 2021 16:38:34 +0000 Subject: [PATCH 351/683] Definitions: Fix name of parameter in Code Table 4.2.4.2 (h prime F) --- definitions/grib2/tables/25/4.2.4.2.table | 2 +- definitions/grib2/tables/26/4.2.4.2.table | 2 +- definitions/grib2/tables/27/4.2.4.2.table | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/definitions/grib2/tables/25/4.2.4.2.table b/definitions/grib2/tables/25/4.2.4.2.table index 8dd05fcda..5f8dd4750 100644 --- a/definitions/grib2/tables/25/4.2.4.2.table +++ b/definitions/grib2/tables/25/4.2.4.2.table @@ -7,7 +7,7 @@ 5 5 HF absorption frequency (Hz) 6 6 HF absorption (dB) 7 7 Spread F (m) -8 8 h’ (m) +8 8 h'F (m) 9 9 Critical frequency (Hz) 10 10 Maximal usable frequency (MUF) (Hz) 11 11 Peak height (hm) (m) diff --git a/definitions/grib2/tables/26/4.2.4.2.table b/definitions/grib2/tables/26/4.2.4.2.table index 8dd05fcda..5f8dd4750 100644 --- a/definitions/grib2/tables/26/4.2.4.2.table +++ b/definitions/grib2/tables/26/4.2.4.2.table @@ -7,7 +7,7 @@ 5 5 HF absorption frequency (Hz) 6 6 HF absorption (dB) 7 7 Spread F (m) -8 8 h’ (m) +8 8 h'F (m) 9 9 Critical frequency (Hz) 10 10 Maximal usable frequency (MUF) (Hz) 11 11 Peak height (hm) (m) diff --git a/definitions/grib2/tables/27/4.2.4.2.table b/definitions/grib2/tables/27/4.2.4.2.table index 379b235ad..9430e193f 100644 --- a/definitions/grib2/tables/27/4.2.4.2.table +++ b/definitions/grib2/tables/27/4.2.4.2.table @@ -7,7 +7,7 @@ 5 5 HF absorption frequency (Hz) 6 6 HF absorption (dB) 7 7 Spread F (m) -8 8 h’ (m) +8 8 h'F (m) 9 9 Critical frequency (Hz) 10 10 Maximal usable frequency (MUF) (Hz) 11 11 Peak height (hm) (m) From d5f43831a76962f1acf47b9b6aaf614b8e344ffc Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 23 Feb 2021 17:14:11 +0000 Subject: [PATCH 352/683] Examples: Titles --- examples/F90/bufr_attributes.f90 | 2 +- examples/F90/bufr_clone.f90 | 2 +- examples/F90/bufr_copy_keys.f90 | 2 +- examples/F90/bufr_copy_message.f90 | 2 +- examples/F90/bufr_expanded.f90 | 2 +- examples/F90/bufr_get_keys.f90 | 2 +- examples/F90/bufr_get_string_array.f90 | 2 +- examples/F90/bufr_keys_iterator.f90 | 2 +- examples/F90/bufr_read_header.f90 | 2 +- examples/F90/bufr_read_scatterometer.f90 | 2 +- examples/F90/bufr_read_synop.f90 | 2 +- examples/F90/bufr_read_temp.f90 | 2 +- examples/F90/bufr_read_tempf.f90 | 2 +- examples/F90/bufr_read_tropical_cyclone.f90 | 2 +- examples/F90/bufr_set_keys.f90 | 2 +- examples/F90/grib_clone.f90 | 2 +- examples/F90/grib_copy_message.f90 | 4 +--- examples/F90/grib_copy_namespace.f90 | 2 +- examples/F90/grib_count_messages.f90 | 2 +- examples/F90/grib_count_messages_multi.f90 | 2 +- examples/F90/grib_ecc-671.f90 | 2 +- examples/F90/grib_get_data.f90 | 2 +- examples/F90/grib_get_keys.f90 | 2 +- examples/F90/grib_get_pl.f90 | 2 +- examples/F90/grib_get_pv.f90 | 2 +- examples/F90/grib_multi_write.f90 | 2 +- examples/F90/grib_nearest.f90 | 2 +- examples/F90/grib_precision.f90 | 2 +- examples/F90/grib_print_data.f90 | 2 +- examples/F90/grib_print_data_static.f90 | 2 +- examples/F90/grib_read_message.f90 | 2 +- examples/F90/grib_samples.f90 | 2 +- examples/F90/grib_set_bitmap.f90 | 2 +- examples/F90/grib_set_data.f90 | 2 +- examples/F90/grib_set_gvc.f90 | 2 +- examples/F90/grib_set_keys.f90 | 2 +- examples/F90/grib_set_missing.f90 | 3 +-- examples/F90/grib_set_packing.f90 | 2 +- examples/F90/grib_set_pv.f90 | 3 +-- 39 files changed, 39 insertions(+), 43 deletions(-) diff --git a/examples/F90/bufr_attributes.f90 b/examples/F90/bufr_attributes.f90 index eb5a330ae..b56b03f2a 100644 --- a/examples/F90/bufr_attributes.f90 +++ b/examples/F90/bufr_attributes.f90 @@ -9,7 +9,7 @@ ! ! FORTRAN 90 Implementation: bufr_attributes ! -! Description: how to read attributes of keys in BUFR messages. +! Description: How to read attributes of keys in BUFR messages. ! ! program bufr_attributes diff --git a/examples/F90/bufr_clone.f90 b/examples/F90/bufr_clone.f90 index 1dc231d7b..274e3dd29 100644 --- a/examples/F90/bufr_clone.f90 +++ b/examples/F90/bufr_clone.f90 @@ -8,7 +8,7 @@ ! ! FORTRAN 90 implementation: bufr_clone ! -! Description: how to create a new BUFR message by cloning +! Description: How to create a new BUFR message by cloning ! an existing message. ! ! diff --git a/examples/F90/bufr_copy_keys.f90 b/examples/F90/bufr_copy_keys.f90 index bbb679045..1c4c28f7d 100644 --- a/examples/F90/bufr_copy_keys.f90 +++ b/examples/F90/bufr_copy_keys.f90 @@ -6,7 +6,7 @@ ! In applying this licence, ECMWF does not waive the privileges and immunities granted to it by ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! -! Description: how to copy a BUFR key from a message to another. +! Description: How to copy a BUFR key from a message to another. ! program bufr_copy_keys use eccodes diff --git a/examples/F90/bufr_copy_message.f90 b/examples/F90/bufr_copy_message.f90 index 9c058aa60..2fcbd2fe2 100644 --- a/examples/F90/bufr_copy_message.f90 +++ b/examples/F90/bufr_copy_message.f90 @@ -7,7 +7,7 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! Description: how to copy a BUFR message in memory +! Description: How to copy a BUFR message in memory ! ! program copy diff --git a/examples/F90/bufr_expanded.f90 b/examples/F90/bufr_expanded.f90 index 5bc4c0177..5482cd4ad 100644 --- a/examples/F90/bufr_expanded.f90 +++ b/examples/F90/bufr_expanded.f90 @@ -9,7 +9,7 @@ ! ! FORTRAN 90 Implementation: bufr_expanded ! -! Description: how to read all the expanded data values from BUFR messages. +! Description: How to read all the expanded data values from BUFR messages. ! ! program bufr_expanded diff --git a/examples/F90/bufr_get_keys.f90 b/examples/F90/bufr_get_keys.f90 index 14b5d8406..9d4df930b 100644 --- a/examples/F90/bufr_get_keys.f90 +++ b/examples/F90/bufr_get_keys.f90 @@ -9,7 +9,7 @@ ! ! FORTRAN 90 Implementation: bufr_get_keys ! -! Description: how to read values of different type of keys from BUFR messages. +! Description: How to read values of different type of keys from BUFR messages. ! ! program bufr_get_keys diff --git a/examples/F90/bufr_get_string_array.f90 b/examples/F90/bufr_get_string_array.f90 index ff5995ade..c58e59de9 100644 --- a/examples/F90/bufr_get_string_array.f90 +++ b/examples/F90/bufr_get_string_array.f90 @@ -9,7 +9,7 @@ ! ! FORTRAN 90 Implementation: bufr_get_string_array ! -! Description: how to get an array of strings from a BUFR message. +! Description: How to get an array of strings from a BUFR message. program bufr_get_string_array use eccodes diff --git a/examples/F90/bufr_keys_iterator.f90 b/examples/F90/bufr_keys_iterator.f90 index 888c986fd..c68a73e71 100644 --- a/examples/F90/bufr_keys_iterator.f90 +++ b/examples/F90/bufr_keys_iterator.f90 @@ -10,7 +10,7 @@ ! FORTRAN 90 implementation: bufr_keys_iterator ! ! -! Description: how to use keys_iterator functions and the +! Description: How to use keys_iterator functions and the ! codes_bufr_keys_iterator structure to get all the available ! keys in a BUFR message. ! diff --git a/examples/F90/bufr_read_header.f90 b/examples/F90/bufr_read_header.f90 index de5d7df08..c6eb92421 100644 --- a/examples/F90/bufr_read_header.f90 +++ b/examples/F90/bufr_read_header.f90 @@ -9,7 +9,7 @@ ! ! FORTRAN 90 implementation: bufr_read_header ! -! Description: how to read the header of BUFR messages. +! Description: How to read the header of BUFR messages. ! ! program bufr_read_header diff --git a/examples/F90/bufr_read_scatterometer.f90 b/examples/F90/bufr_read_scatterometer.f90 index c3c314658..d879e3f09 100644 --- a/examples/F90/bufr_read_scatterometer.f90 +++ b/examples/F90/bufr_read_scatterometer.f90 @@ -9,7 +9,7 @@ ! ! FORTRAN 90 Implementation: bufr_read_scatterometer ! -! Description: how to read data for a given beam from scatterometer BUFR messages. +! Description: How to read data for a given beam from scatterometer BUFR messages. ! ! Please note that scatterometer data can be encoded in various ways in BUFR. Therefore the code ! below might not work directly for other types of messages than the one used in the diff --git a/examples/F90/bufr_read_synop.f90 b/examples/F90/bufr_read_synop.f90 index b88a8eabe..c94ab7988 100644 --- a/examples/F90/bufr_read_synop.f90 +++ b/examples/F90/bufr_read_synop.f90 @@ -9,7 +9,7 @@ ! ! FORTRAN 90 Implementation: bufr_read_synop ! -! Description: how to read SYNOP BUFR messages. +! Description: How to read SYNOP BUFR messages. ! Please note that SYNOP reports can be encoded in various ways in BUFR. Therefore the code ! below might not work directly for other types of SYNOP messages than the one used in the diff --git a/examples/F90/bufr_read_temp.f90 b/examples/F90/bufr_read_temp.f90 index cbbb77164..5f5aa1c60 100644 --- a/examples/F90/bufr_read_temp.f90 +++ b/examples/F90/bufr_read_temp.f90 @@ -9,7 +9,7 @@ ! ! FORTRAN 90 Implementation: bufr_read_temp ! -! Description: how to read levels from TEMP BUFR messages. +! Description: How to read levels from TEMP BUFR messages. ! ! Please note that TEMP reports can be encoded in various ways in BUFR. Therefore the code ! below might not work directly for other types of TEMP messages than the one used in the diff --git a/examples/F90/bufr_read_tempf.f90 b/examples/F90/bufr_read_tempf.f90 index 5214cf7c2..66abf7526 100644 --- a/examples/F90/bufr_read_tempf.f90 +++ b/examples/F90/bufr_read_tempf.f90 @@ -7,7 +7,7 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! Description: how to read radiosonde data from TEMP BUFR messages. +! Description: How to read radiosonde data from TEMP BUFR messages. ! This version also lists the position information from the WMO list ! (now OSCAR/Surface) - ECMWF version ! diff --git a/examples/F90/bufr_read_tropical_cyclone.f90 b/examples/F90/bufr_read_tropical_cyclone.f90 index 19e75bb0a..2795e6397 100644 --- a/examples/F90/bufr_read_tropical_cyclone.f90 +++ b/examples/F90/bufr_read_tropical_cyclone.f90 @@ -9,7 +9,7 @@ ! ! FORTRAN 90 Implementation: bufr_read_tropical_cyclone ! -! Description: how to read data for a tropical cyclone BUFR message. +! Description: How to read data for a tropical cyclone BUFR message. ! ! Please note that tropical cyclone tracks can be encoded in various ways in BUFR. ! Therefore the code below might not work directly for other types of messages diff --git a/examples/F90/bufr_set_keys.f90 b/examples/F90/bufr_set_keys.f90 index a51e76734..b74bf1122 100644 --- a/examples/F90/bufr_set_keys.f90 +++ b/examples/F90/bufr_set_keys.f90 @@ -8,7 +8,7 @@ ! ! FORTRAN 90 implementation: bufr_set_keys ! -! Description: how to set different type of keys in BUFR messages. +! Description: How to set different type of keys in BUFR messages. ! ! program bufr_set_keys diff --git a/examples/F90/grib_clone.f90 b/examples/F90/grib_clone.f90 index 7019a5156..f4944111d 100644 --- a/examples/F90/grib_clone.f90 +++ b/examples/F90/grib_clone.f90 @@ -9,7 +9,7 @@ ! ! FORTRAN 90 Implementation: grib_clone ! -! Description: how to create a new GRIB message by cloning +! Description: How to create a new GRIB message by cloning ! an existing message. ! ! diff --git a/examples/F90/grib_copy_message.f90 b/examples/F90/grib_copy_message.f90 index 2abd4a470..dba81df4e 100644 --- a/examples/F90/grib_copy_message.f90 +++ b/examples/F90/grib_copy_message.f90 @@ -7,9 +7,7 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! -! Description: how to copy a GRIB message in memory -! +! Description: How to copy a GRIB message in memory ! ! program copy diff --git a/examples/F90/grib_copy_namespace.f90 b/examples/F90/grib_copy_namespace.f90 index 854281f8a..043ba1d62 100644 --- a/examples/F90/grib_copy_namespace.f90 +++ b/examples/F90/grib_copy_namespace.f90 @@ -7,7 +7,7 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! Description: how to copy a namespace from a message to another. +! Description: How to copy a namespace from a message to another. ! ! program copy_namespace diff --git a/examples/F90/grib_count_messages.f90 b/examples/F90/grib_count_messages.f90 index fddaac45a..2c1b90755 100644 --- a/examples/F90/grib_count_messages.f90 +++ b/examples/F90/grib_count_messages.f90 @@ -6,7 +6,7 @@ ! In applying this licence, ECMWF does not waive the privileges and immunities granted to it by ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! -! Description: count messages before processing +! Description: Count messages before processing ! ! program get diff --git a/examples/F90/grib_count_messages_multi.f90 b/examples/F90/grib_count_messages_multi.f90 index 7f1244780..5e4fe92d9 100644 --- a/examples/F90/grib_count_messages_multi.f90 +++ b/examples/F90/grib_count_messages_multi.f90 @@ -6,7 +6,7 @@ ! In applying this licence, ECMWF does not waive the privileges and immunities granted to it by ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! -! Description: count messages in a file with GRIB2 multi-field messages +! Description: Count messages in a file with GRIB2 multi-field messages ! ! program grib_count_messages_multi diff --git a/examples/F90/grib_ecc-671.f90 b/examples/F90/grib_ecc-671.f90 index 4dc714a27..8cb94100b 100644 --- a/examples/F90/grib_ecc-671.f90 +++ b/examples/F90/grib_ecc-671.f90 @@ -6,7 +6,7 @@ ! In applying this licence, ECMWF does not waive the privileges and immunities granted to it by ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! -! Description: set string key with spaces +! Description: Set string key with spaces ! ! USE eccodes diff --git a/examples/F90/grib_get_data.f90 b/examples/F90/grib_get_data.f90 index 44047bd67..a5d29529f 100644 --- a/examples/F90/grib_get_data.f90 +++ b/examples/F90/grib_get_data.f90 @@ -7,7 +7,7 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! Description: how to get lat/lon/values. +! Description: How to get lat/lon/values. ! ! program get_data diff --git a/examples/F90/grib_get_keys.f90 b/examples/F90/grib_get_keys.f90 index 36f87c6af..2eeb6d95d 100644 --- a/examples/F90/grib_get_keys.f90 +++ b/examples/F90/grib_get_keys.f90 @@ -7,7 +7,7 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! Description: how to get values using keys from GRIB messages +! Description: How to get values using keys from GRIB messages ! ! program grib_get_keys diff --git a/examples/F90/grib_get_pl.f90 b/examples/F90/grib_get_pl.f90 index f52c2ea9d..b07a6937f 100644 --- a/examples/F90/grib_get_pl.f90 +++ b/examples/F90/grib_get_pl.f90 @@ -7,7 +7,7 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! Description: how to get PL values. +! Description: How to get PL values. ! ! program grib_get_pl diff --git a/examples/F90/grib_get_pv.f90 b/examples/F90/grib_get_pv.f90 index 49e5aaa06..25a8ddd1f 100644 --- a/examples/F90/grib_get_pv.f90 +++ b/examples/F90/grib_get_pv.f90 @@ -7,7 +7,7 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! Description: how to get PV values. +! Description: How to get PV values. ! ! program grib_get_pv diff --git a/examples/F90/grib_multi_write.f90 b/examples/F90/grib_multi_write.f90 index 7bec67a3e..9605b9737 100644 --- a/examples/F90/grib_multi_write.f90 +++ b/examples/F90/grib_multi_write.f90 @@ -8,7 +8,7 @@ ! ! ! -! Description: how to create a multi field message in memory and write +! Description: How to create a multi field message in memory and write ! it in a file. The multi field messages can be created ! only in GRIB edition 2. ! diff --git a/examples/F90/grib_nearest.f90 b/examples/F90/grib_nearest.f90 index 2e2d5e1a3..4b946182c 100644 --- a/examples/F90/grib_nearest.f90 +++ b/examples/F90/grib_nearest.f90 @@ -7,7 +7,7 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! Description: how to use codes_grib_find_nearest and codes_get_element +! Description: How to use codes_grib_find_nearest and codes_get_element ! ! ! diff --git a/examples/F90/grib_precision.f90 b/examples/F90/grib_precision.f90 index 9a444580c..707753e16 100644 --- a/examples/F90/grib_precision.f90 +++ b/examples/F90/grib_precision.f90 @@ -7,7 +7,7 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! Description: how to control decimal precision when packing fields. +! Description: How to control decimal precision when packing fields. ! ! ! diff --git a/examples/F90/grib_print_data.f90 b/examples/F90/grib_print_data.f90 index a2aa3757b..a4165c7ab 100644 --- a/examples/F90/grib_print_data.f90 +++ b/examples/F90/grib_print_data.f90 @@ -7,7 +7,7 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! Description: prints all the data contained in a GRIB file +! Description: Prints all the data contained in a GRIB file ! ! ! diff --git a/examples/F90/grib_print_data_static.f90 b/examples/F90/grib_print_data_static.f90 index e83af8f48..c8255fe89 100644 --- a/examples/F90/grib_print_data_static.f90 +++ b/examples/F90/grib_print_data_static.f90 @@ -7,7 +7,7 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! Description: prints all the data contained in a GRIB file. +! Description: Prints all the data contained in a GRIB file. ! Using the old interface with a STATIC array ! rather than the new ALLOCATABLE array ! diff --git a/examples/F90/grib_read_message.f90 b/examples/F90/grib_read_message.f90 index 42c557df3..165ecdb76 100644 --- a/examples/F90/grib_read_message.f90 +++ b/examples/F90/grib_read_message.f90 @@ -6,7 +6,7 @@ ! In applying this licence, ECMWF does not waive the privileges and immunities granted to it by ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! -! Description: how to get values using keys. +! Description: How to get values using keys. ! program grib_read_message use eccodes diff --git a/examples/F90/grib_samples.f90 b/examples/F90/grib_samples.f90 index 4c0edf606..44962b4f6 100644 --- a/examples/F90/grib_samples.f90 +++ b/examples/F90/grib_samples.f90 @@ -7,7 +7,7 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! Description: how to create a new GRIB message from a sample. +! Description: How to create a new GRIB message from a sample. ! ! program sample diff --git a/examples/F90/grib_set_bitmap.f90 b/examples/F90/grib_set_bitmap.f90 index e2c2d6de4..7313e0a0a 100644 --- a/examples/F90/grib_set_bitmap.f90 +++ b/examples/F90/grib_set_bitmap.f90 @@ -8,7 +8,7 @@ ! ! ! -! Description: how to set a bitmap in a GRIB message +! Description: How to set a bitmap in a GRIB message ! to encode missing values in the data ! ! diff --git a/examples/F90/grib_set_data.f90 b/examples/F90/grib_set_data.f90 index 3ceec5535..6ff979241 100644 --- a/examples/F90/grib_set_data.f90 +++ b/examples/F90/grib_set_data.f90 @@ -8,7 +8,7 @@ ! ! ! -! Description: set the data contained in a GRIB file. +! Description: Set the data contained in a GRIB file. ! In this example no missing values are present. ! If there are missing values, refer to: grib_set_bitmap ! diff --git a/examples/F90/grib_set_gvc.f90 b/examples/F90/grib_set_gvc.f90 index 763c44a53..30ec5ca0a 100644 --- a/examples/F90/grib_set_gvc.f90 +++ b/examples/F90/grib_set_gvc.f90 @@ -8,7 +8,7 @@ ! ! ! -! Description: how to set keys for a grib2 file with +! Description: How to set keys for a grib2 file with ! a Generalized Vertical Height Coordinate ! ! diff --git a/examples/F90/grib_set_keys.f90 b/examples/F90/grib_set_keys.f90 index dfbb7b9b5..125e1222c 100644 --- a/examples/F90/grib_set_keys.f90 +++ b/examples/F90/grib_set_keys.f90 @@ -7,7 +7,7 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! Description: how to set key values in GRIB messages +! Description: How to set key values in GRIB messages ! ! program set diff --git a/examples/F90/grib_set_missing.f90 b/examples/F90/grib_set_missing.f90 index 3f502268a..07494a7b4 100644 --- a/examples/F90/grib_set_missing.f90 +++ b/examples/F90/grib_set_missing.f90 @@ -7,8 +7,7 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! -! Description: how to set missing a key value. +! Description: How to set missing a key value. ! ! ! diff --git a/examples/F90/grib_set_packing.f90 b/examples/F90/grib_set_packing.f90 index eb03bc3c9..f274f2337 100644 --- a/examples/F90/grib_set_packing.f90 +++ b/examples/F90/grib_set_packing.f90 @@ -6,7 +6,7 @@ ! In applying this licence, ECMWF does not waive the privileges and immunities granted to it by ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! -! Description: set the packingType in a GRIB file +! Description: Set the packingType in a GRIB file ! e.g. Simple packing, CCSDS ! program set_packing diff --git a/examples/F90/grib_set_pv.f90 b/examples/F90/grib_set_pv.f90 index 212697339..6ab6ed437 100644 --- a/examples/F90/grib_set_pv.f90 +++ b/examples/F90/grib_set_pv.f90 @@ -7,8 +7,7 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! -! Description: how to set pv values in a GRIB message +! Description: How to set pv values in a GRIB message ! ! program grib_set_pv From aaf513ff55ef787537504a25fd78d05656e5f349 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 24 Feb 2021 17:04:34 +0000 Subject: [PATCH 353/683] Compiler warnings: -Wformat-overflow --- ..._accessor_class_bufr_extract_datetime_subsets.c | 14 +++++++------- src/grib_index.c | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/grib_accessor_class_bufr_extract_datetime_subsets.c b/src/grib_accessor_class_bufr_extract_datetime_subsets.c index 6ecbf799e..593177015 100644 --- a/src/grib_accessor_class_bufr_extract_datetime_subsets.c +++ b/src/grib_accessor_class_bufr_extract_datetime_subsets.c @@ -205,7 +205,7 @@ static int build_long_array(grib_context* c, grib_handle* h, int compressed, } else { /* uncompressed */ - char keystr[20] = {0,}; + char keystr[32] = {0,}; size_t values_len = 0; for (i = 0; i < numberOfSubsets; ++i) { long lVal = 0; @@ -243,12 +243,12 @@ static int select_datetime(grib_accessor* a) grib_iarray* subsets; long* subsets_ar = 0; size_t nsubsets = 0; - char yearstr[20] = "year"; - char monthstr[20] = "month"; - char daystr[20] = "day"; - char hourstr[20] = "hour"; - char minutestr[20] = "minute"; - char secondstr[20] = "second"; + char yearstr[32] = "year"; + char monthstr[32] = "month"; + char daystr[32] = "day"; + char hourstr[32] = "hour"; + char minutestr[32] = "minute"; + char secondstr[32] = "second"; ret = grib_get_long(h, "compressedData", &compressed); if (ret) diff --git a/src/grib_index.c b/src/grib_index.c index 2d2d65514..216b3a3b1 100644 --- a/src/grib_index.c +++ b/src/grib_index.c @@ -997,8 +997,8 @@ grib_index* grib_index_read(grib_context* c, const char* filename, int* err) int grib_index_search_same(grib_index* index, grib_handle* h) { int err = 0; - char buf[1024] = {0,}; - size_t buflen = 1024; + char buf[STRING_VALUE_LEN] = {0,}; + size_t buflen = STRING_VALUE_LEN; grib_index_key* keys; long lval = 0; double dval = 0.0; @@ -1016,7 +1016,7 @@ int grib_index_search_same(grib_index* index, grib_handle* h) if (err) keys->type = GRIB_TYPE_STRING; } - buflen = 1024; + buflen = STRING_VALUE_LEN; switch (keys->type) { case GRIB_TYPE_STRING: err = grib_get_string(h, keys->name, buf, &buflen); From e0376b72d91d971c91a2d3d715c6e4f08e808e20 Mon Sep 17 00:00:00 2001 From: Philippe Marguinaud Date: Wed, 24 Feb 2021 19:00:53 +0100 Subject: [PATCH 354/683] Add test to demonstrate that laplam (grib_accessor_class_data_g2bifourier_packing.c) is now broken. --- tests/grib_lam_bf.c | 46 ++++++++++++++++++++++++++++++--------------- 1 file changed, 31 insertions(+), 15 deletions(-) diff --git a/tests/grib_lam_bf.c b/tests/grib_lam_bf.c index 1915ee4c7..8b302fb95 100644 --- a/tests/grib_lam_bf.c +++ b/tests/grib_lam_bf.c @@ -672,6 +672,8 @@ typedef struct { int trunc; /* 77, 88, 99 = truncation type */ int subtrunc; /* 77, 88, 99 = subtruncation type */ + int subnsmax; + int subnmsmax; double* values; int len; const char* name; @@ -683,25 +685,39 @@ int main(int argc, char* argv[]) size_t len; const char* grids[] = { "lambert_bf", "mercator_bf", "polar_stereographic_bf" }; int igrid, itrunc; - trunc_t trunc[2]; + trunc_t trunc[3]; /* Elliptic truncation with diamond subtruncation */ - trunc[0].trunc = 88; - trunc[0].subtrunc = 99; - trunc[0].len = ILCHAM; - trunc[0].values = (double*)values; - trunc[0].name = "ellipse_diamond"; + trunc[0].trunc = 88; + trunc[0].subtrunc = 99; + trunc[0].subnsmax = NSTRON; + trunc[0].subnmsmax = NSTRON; + trunc[0].len = ILCHAM; + trunc[0].values = (double*)values; + trunc[0].name = "ellipse_diamond"; /* Rectangle truncation with rectangle subtruncation */ - trunc[1].trunc = 77; - trunc[1].subtrunc = 77; - trunc[1].len = 4 * (NSMAX + 1) * (NMSMAX + 1); - trunc[1].values = (double*)malloc(sizeof(double) * trunc[1].len); - trunc[1].name = "rectangle_rectangle"; - + trunc[1].trunc = 77; + trunc[1].subtrunc = 77; + trunc[1].subnsmax = NSTRON; + trunc[2].subnmsmax = NSTRON; + trunc[1].len = 4 * (NSMAX + 1) * (NMSMAX + 1); + trunc[1].values = (double*)malloc(sizeof(double) * trunc[1].len); + trunc[1].name = "rectangle_rectangle"; rectfromellipse(trunc[1].values, trunc[0].values, NSMAX, NMSMAX); - for (itrunc = 0; itrunc < 2; itrunc++) { + /* Elliptic truncation with full subtruncation */ + trunc[2].trunc = 88; + trunc[2].subtrunc = 88; + trunc[2].subnsmax = NSMAX; + trunc[2].subnmsmax = NMSMAX; + trunc[2].len = ILCHAM; + trunc[2].values = (double*)values; + trunc[2].name = "ellipse_full"; + + + + for (itrunc = 0; itrunc < 3; itrunc++) { for (igrid = 0; igrid < 3; igrid++) { GRIB_CHECK(((h = grib_handle_new_from_samples(NULL, "lambert_bf_grib2")) == NULL), 0); @@ -750,8 +766,8 @@ int main(int argc, char* argv[]) len = strlen("bifourier_complex"); GRIB_CHECK(grib_set_string(h, "packingType", "bifourier_complex", &len), 0); - GRIB_CHECK(grib_set_long(h, "biFourierResolutionSubSetParameterN", NSTRON), 0); - GRIB_CHECK(grib_set_long(h, "biFourierResolutionSubSetParameterM", NSTRON), 0); + GRIB_CHECK(grib_set_long(h, "biFourierResolutionSubSetParameterN", trunc[itrunc].subnsmax), 0); + GRIB_CHECK(grib_set_long(h, "biFourierResolutionSubSetParameterM", trunc[itrunc].subnmsmax), 0); GRIB_CHECK(grib_set_long(h, "biFourierSubTruncationType", trunc[itrunc].subtrunc), 0); GRIB_CHECK(grib_set_long(h, "biFourierPackingModeForAxes", 1), 0); GRIB_CHECK(grib_set_long(h, "unpackedSubsetPrecision", 2), 0); From f010d20b0d1a732227361f1c7151516616c35ab4 Mon Sep 17 00:00:00 2001 From: Philippe Marguinaud Date: Wed, 24 Feb 2021 19:03:12 +0100 Subject: [PATCH 355/683] Fix broken laplam (grib_accessor_class_data_g2bifourier_packing.c). --- src/grib_accessor_class_data_g2bifourier_packing.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/grib_accessor_class_data_g2bifourier_packing.c b/src/grib_accessor_class_data_g2bifourier_packing.c index 6a2b5575f..07a6d3770 100644 --- a/src/grib_accessor_class_data_g2bifourier_packing.c +++ b/src/grib_accessor_class_data_g2bifourier_packing.c @@ -411,6 +411,9 @@ static double laplam(bif_trunc_t* bt, const double val[]) } lmax = l; + if (lmax == 0) + return 0.; + /* * Now, itab2 contains all possible values of i*i+j*j, and itab1 contains * the rank of all i*i+j*j From 944a4cfacbb7c6c02c3daa7d46ff6eca4ddd9a68 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 24 Feb 2021 22:09:01 +0000 Subject: [PATCH 356/683] Scripts: Populating Parameter Database --- definitions/add_params_from_tsv.pl | 106 ++++++++++++++++------------- 1 file changed, 58 insertions(+), 48 deletions(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index 099f79a9c..70df7f6c9 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -10,7 +10,9 @@ # nor does it submit to any jurisdiction. # ####################################################################### -# Script to generate parameter definition files for GRIB2. +# Script for GRIB2 parameter definitions +# Can either write the *.def files or push to the Parameter DB +# # Reads an input TSV (tab-separated-value) file which should contain # the following parameter keys as columns: # paramId @@ -30,9 +32,15 @@ # typeOfStatisticalProcessing # aerosolType # constituentType +# typeOfGeneratingProcess +# localTablesVersion +# typeOfWavelengthInterval +# scaleFactorOfFirstWavelength +# scaledValueOfFirstWavelength +# scaleFactorOfSecondWavelength +# scaledValueOfSecondWavelength +# sourceSinkChemicalPhysicalProcess # -# It outputs the def files: -# name.def paramId.def shortName.def units.def cfVarName.def # ####################################################################### $|=1; @@ -49,6 +57,7 @@ my $WRITE_TO_PARAMDB = 0; my ($paramId, $shortName, $name, $units, $cfVarName); my ($discipline, $pcategory, $pnumber, $type1, $type2, $scaledValue1, $scaleFactor1, $scaledValue2, $scaleFactor2); my ($stat, $aero, $constit); +my ($typeGen, $localTV, $typeOfWLInt, $scaleFactorWL1, $scaledValueWL1, $scaleFactorWL2, $scaledValueWL2, $sourceSink); my %key_to_attrib_map = ( 'discipline' => 4, @@ -73,7 +82,7 @@ my $pass = $ENV{'DB_PASS'} || 'unknown'; my $dbh = 0; my $centre = -3; # WMO my $edition = 2; -my $contactId = "A test"; # JIRA issue ID +my $contactId; # JIRA issue ID my $PARAMID_FILENAME = "paramId.def"; my $SHORTNAME_FILENAME = "shortName.def"; @@ -83,7 +92,7 @@ my $CFVARNAME_FILENAME = "cfVarName.def"; my $tm = localtime; my $today_date = sprintf("%04d-%02d-%02d", $tm->year+1900, ($tm->mon)+1, $tm->mday); -print "Using insert and update dates: $today_date\n"; +#print "Using insert and update dates: $today_date\n"; if ($WRITE_TO_FILES) { create_or_append(\*OUT_PARAMID, "$PARAMID_FILENAME"); @@ -109,14 +118,20 @@ while (<>) { $lcount++; ($paramId, $shortName, $name, $units, - $discipline, $pcategory, $pnumber, $type1, $type2, - $scaledValue1, $scaleFactor1, $scaledValue2, $scaleFactor2, $stat, $aero, $constit) = split(/\t/); + $discipline, $pcategory, $pnumber, $type1, $type2, + $scaledValue1, $scaleFactor1, $scaledValue2, $scaleFactor2, $stat, $aero, $constit, + $typeGen, $localTV, $typeOfWLInt, $scaleFactorWL1, $scaledValueWL1, $scaleFactorWL2, $scaledValueWL2, $sourceSink + ) = split(/\t/); - die "Error: paramID \"$paramId\" is not an integer!" if (!is_integer($paramId)); + die "Error: paramID \"$paramId\" is not an integer (input row=$lcount)!" if (!is_integer($paramId)); $units = "~" if ($units eq ""); $cfVarName = $shortName; $cfVarName = '\\'.$shortName if ($shortName =~ /^[0-9]/); + $scaleFactorWL1 = undef if ($scaleFactorWL1 =~ /missing/); + $scaledValueWL1 = undef if ($scaledValueWL1 =~ /missing/); + $scaleFactorWL2 = undef if ($scaleFactorWL2 =~ /missing/); + $scaledValueWL2 = undef if ($scaledValueWL2 =~ /missing/); if ($WRITE_TO_FILES) { write_out_file(\*OUT_PARAMID, $name, $paramId); @@ -128,8 +143,19 @@ while (<>) { if ($WRITE_TO_PARAMDB) { my $units_code = get_db_units_code($units); - my $is_chem = "1"; + my $is_chem = ""; my $is_aero = ""; + if ($aero ne "") { + $is_aero = "1"; + $is_chem = ""; + } + if ($constit ne "") { + $is_aero = ""; + $is_chem = "1"; + } + die "Error: Both aerosolType and constituentType cannot be set!" if ($constit ne "" && $aero ne ""); + die "Error: No contact ID provided\n" if (!$contactId); + #print "Inserting paramId $paramId ...\n"; $dbh->do("insert into param(id,shortName,name,units_id,insert_date,update_date,contact) values (?,?,?,?,?,?,?)",undef, $paramId, $shortName, $name , $units_code, $today_date, $today_date, $contactId); @@ -150,7 +176,23 @@ while (<>) { $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,53,$is_chem,0) if ($is_chem ne ""); $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,54,$is_aero,0) if ($is_aero ne ""); - #$dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,yy,xx,0) if (xx ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,28,$typeGen,0) if ($typeGen ne ""); + + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,16,$localTV,0) if ($localTV ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,57,$typeOfWLInt,0) if ($typeOfWLInt ne ""); + + if (! defined $scaleFactorWL1 || $scaleFactorWL1 ne "") { + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,58,$scaleFactorWL1,0); + } + if (! defined $scaledValueWL1 || $scaledValueWL1 ne "") { + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,59,$scaledValueWL1,0); + } + if (! defined $scaleFactorWL2 ||$scaleFactorWL2 ne "") { + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,60,$scaleFactorWL2,0); + } + if (! defined $scaledValueWL2 || $scaledValueWL2 ne "") { + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,61,$scaledValueWL2,0); + } # format is only GRIB2 $dbh->do("insert into param_format(param_id,grib1,grib2) values (?,?,?)",undef,$paramId,0,1); @@ -166,47 +208,15 @@ if ($WRITE_TO_FILES) { close(OUT_CFVARNAME) or die "$CFVARNAME_FILENAME: $!"; } if ($WRITE_TO_PARAMDB) { - print "Wrote to Param DB. $lcount rows processed\n"; + print "Wrote to Parameter Database. Number of rows processed = $lcount\n"; } # ------------------------------------------------------------------- sub get_db_units_code { my $u = shift; - return 1 if ($u eq 'm**2 s**-1'); - return 2 if ($u eq 'K'); - return 3 if ($u eq '(0 - 1)'); - return 4 if ($u eq 'm'); - return 5 if ($u eq 'm s**-1'); - return 6 if ($u eq 'J m**-2'); - return 7 if ($u eq '~'); - return 8 if ($u eq 's**-1'); - return 9 if ($u eq 'kg m**-3'); - return 10 if ($u eq 'm**3 m**-3'); - return 12 if ($u eq 's'); - return 14 if ($u eq 'N m**-2 s'); - return 15 if ($u eq 'm**2 s**-2'); - return 16 if ($u eq 'Pa'); - return 17 if ($u eq 'J kg**-1'); - return 18 if ($u eq 'K m**2 kg**-1 s**-1'); - return 19 if ($u eq 'm**2 m**-2'); - return 20 if ($u eq 's m**-1'); - return 21 if ($u eq 'kg kg**-1'); - return 22 if ($u eq 'kg m**-2'); - return 23 if ($u eq 'dimensionless'); - return 26 if ($u eq 'Pa s**-1'); - return 27 if ($u eq 'm of water equivalent'); - return 28 if ($u eq 'gpm'); - return 29 if ($u eq '%'); - return 33 if ($u eq 'kg m**-2 s**-1'); - - return 179 if ($u eq 'W'); - return 172 if ($u eq 'W m**-2'); - return 173 if ($u eq 'Index'); - return 174 if ($u eq 'W m**-2'); - return 175 if ($u eq 'kg m**-3'); - return 182 if ($u eq 'Degree N'); - - die "Unrecognized units $u\n"; + my $unit_id = $dbh->selectrow_array("select id from units where name = ?",undef,$u); + die "Error: Unit not found: '$u'\n" if (!$unit_id); + return $unit_id; } sub write_out_file { @@ -262,9 +272,9 @@ sub create_or_append { my $fname = $_[1]; if (-f "$fname") { - open($outfile, ">>$fname") or die "$fname: $!"; + open($outfile, ">>$fname") or die "Error: $fname: $!"; } else { - open($outfile, ">$fname") or die "$fname: $!"; + open($outfile, ">$fname") or die "Error: $fname: $!"; } } From da7e8b33415835ac3353ce5bdd954997f429fb3f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 24 Feb 2021 22:29:23 +0000 Subject: [PATCH 357/683] Examples: compiler warning -Wmaybe-uninitialized --- examples/F90/grib_precision.f90 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/F90/grib_precision.f90 b/examples/F90/grib_precision.f90 index 707753e16..9a0c9d8d0 100644 --- a/examples/F90/grib_precision.f90 +++ b/examples/F90/grib_precision.f90 @@ -16,13 +16,13 @@ program precision use eccodes implicit none integer(kind=4) :: size1 - integer :: infile, outfile - integer :: igrib + integer :: infile, outfile + integer :: igrib real(kind=8), dimension(:), allocatable :: values1 real(kind=8), dimension(:), allocatable :: values2 - real(kind=8) :: maxa, a, maxv, minv, maxr, r - integer(kind=4) :: decimalPrecision, bitsPerValue1, bitsPerValue2 - integer :: i, iret + real(kind=8) :: maxa, a, maxv, minv, maxr, r=0 + integer(kind=4) :: decimalPrecision, bitsPerValue1, bitsPerValue2 + integer :: i, iret call codes_open_file(infile, & '../../data/regular_latlon_surface_constant.grib1', 'r') From d2ff0b22748b59e4e9da41def0a5e8b99defc782 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 24 Feb 2021 23:07:22 +0000 Subject: [PATCH 358/683] Fortran type conversion warnings --- fortran/grib_f90_tail.f90 | 204 +++++++++++++++++++------------------- 1 file changed, 101 insertions(+), 103 deletions(-) diff --git a/fortran/grib_f90_tail.f90 b/fortran/grib_f90_tail.f90 index e58f9debe..d29ba887f 100644 --- a/fortran/grib_f90_tail.f90 +++ b/fortran/grib_f90_tail.f90 @@ -746,10 +746,10 @@ !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_read_from_file_int4(ifile, buffer, nbytes, status) - integer(kind=kindOfInt), intent(in) :: ifile - integer(kind=4), dimension(:), intent(out) :: buffer + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=4), dimension(:), intent(out) :: buffer integer(kind=kindOfInt), intent(inout) :: nbytes - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfSize_t) :: ibytes integer(kind=kindOfInt) :: iret @@ -758,7 +758,7 @@ if (iret == GRIB_SUCCESS .and. ibytes > huge(nbytes)) then iret = GRIB_MESSAGE_TOO_LARGE end if - nbytes = ibytes + nbytes = INT(ibytes, kind=kindOfInt) if (present(status)) then status = iret else @@ -806,10 +806,10 @@ !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_read_from_file_real4(ifile, buffer, nbytes, status) - integer(kind=kindOfInt), intent(in) :: ifile - real(kind=4), dimension(:), intent(out) :: buffer + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=4), dimension(:), intent(out) :: buffer integer(kind=kindOfInt), intent(inout) :: nbytes - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfSize_t) :: ibytes integer(kind=kindOfInt) :: iret @@ -818,7 +818,7 @@ if (iret == GRIB_SUCCESS .and. ibytes > huge(nbytes)) then iret = GRIB_MESSAGE_TOO_LARGE end if - nbytes = ibytes + nbytes = INT(ibytes, kind=kindOfInt) if (present(status)) then status = iret else @@ -839,10 +839,10 @@ !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_read_from_file_real4_size_t(ifile, buffer, nbytes, status) - integer(kind=kindOfInt), intent(in) :: ifile - real(kind=4), dimension(:), intent(out) :: buffer + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=4), dimension(:), intent(out) :: buffer integer(kind=kindOfSize_t), intent(inout) :: nbytes - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret iret = grib_f_read_any_from_file(ifile, buffer, nbytes) @@ -855,7 +855,6 @@ !> Reads a message in the buffer array from the file opened with grib_open_file. !> - !> !> In case of error, if the status parameter (optional) is not given, the program will !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref grib_get_error_string. @@ -866,10 +865,10 @@ !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_read_from_file_real8(ifile, buffer, nbytes, status) - integer(kind=kindOfInt), intent(in) :: ifile - real(kind=8), dimension(:), intent(out) :: buffer + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=8), dimension(:), intent(out) :: buffer integer(kind=kindOfInt), intent(inout) :: nbytes - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfSize_t) :: ibytes integer(kind=kindOfInt) :: iret @@ -878,7 +877,7 @@ if (iret == GRIB_SUCCESS .and. ibytes > huge(nbytes)) then iret = GRIB_MESSAGE_TOO_LARGE end if - nbytes = ibytes + nbytes = INT(ibytes, kind=kindOfInt) if (present(status)) then status = iret else @@ -893,16 +892,15 @@ !> exit with an error message.\n Otherwise the error message can be !> gathered with @ref grib_get_error_string. !> - !> !> @param ifile id of the opened file to be used in all the file functions. !> @param buffer binary buffer to be read !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_read_from_file_real8_size_t(ifile, buffer, nbytes, status) - integer(kind=kindOfInt), intent(in) :: ifile - real(kind=8), dimension(:), intent(out) :: buffer + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=8), dimension(:), intent(out) :: buffer integer(kind=kindOfSize_t), intent(inout) :: nbytes - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret iret = grib_f_read_any_from_file(ifile, buffer, nbytes) @@ -926,10 +924,10 @@ !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_read_from_file_char(ifile, buffer, nbytes, status) - integer(kind=kindOfInt), intent(in) :: ifile - character(len=1), dimension(:), intent(out) :: buffer + integer(kind=kindOfInt), intent(in) :: ifile + character(len=1), dimension(:), intent(out) :: buffer integer(kind=kindOfInt), intent(inout) :: nbytes - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfSize_t) :: ibytes integer(kind=kindOfInt) :: iret @@ -938,7 +936,7 @@ if (iret == GRIB_SUCCESS .and. ibytes > huge(nbytes)) then iret = GRIB_MESSAGE_TOO_LARGE end if - nbytes = ibytes + nbytes = INT(ibytes, kind=kindOfInt) if (present(status)) then status = iret else @@ -959,10 +957,10 @@ !> @param nbytes number of bytes to be read !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_read_from_file_char_size_t(ifile, buffer, nbytes, status) - integer(kind=kindOfInt), intent(in) :: ifile - character(len=1), dimension(:), intent(out) :: buffer + integer(kind=kindOfInt), intent(in) :: ifile + character(len=1), dimension(:), intent(out) :: buffer integer(kind=kindOfSize_t), intent(inout) :: nbytes - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret iret = grib_f_read_any_from_file(ifile, buffer, nbytes) @@ -986,10 +984,10 @@ !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_write_bytes_char(ifile, buffer, nbytes, status) - integer(kind=kindOfInt), intent(in) :: ifile - character(len=1), dimension(:), intent(in) :: buffer + integer(kind=kindOfInt), intent(in) :: ifile + character(len=1), dimension(:), intent(in) :: buffer integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfSize_t) :: ibytes integer(kind=kindOfInt) :: iret @@ -1015,10 +1013,10 @@ !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_write_bytes_char_size_t(ifile, buffer, nbytes, status) - integer(kind=kindOfInt), intent(in) :: ifile - character(len=1), dimension(:), intent(in) :: buffer + integer(kind=kindOfInt), intent(in) :: ifile + character(len=1), dimension(:), intent(in) :: buffer integer(kind=kindOfSize_t), intent(in) :: nbytes - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret iret = grib_f_write_file(ifile, buffer, nbytes) @@ -1042,10 +1040,10 @@ !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_write_bytes_int4(ifile, buffer, nbytes, status) - integer(kind=kindOfInt), intent(in) :: ifile - integer(kind=4), dimension(:), intent(in) :: buffer + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=4), dimension(:), intent(in) :: buffer integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfSize_t) :: ibytes integer(kind=kindOfInt) :: iret @@ -1071,10 +1069,10 @@ !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_write_bytes_int4_size_t(ifile, buffer, nbytes, status) - integer(kind=kindOfInt), intent(in) :: ifile - integer(kind=4), dimension(:), intent(in) :: buffer + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=4), dimension(:), intent(in) :: buffer integer(kind=kindOfSize_t), intent(in) :: nbytes - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret iret = grib_f_write_file(ifile, buffer, nbytes) @@ -1098,10 +1096,10 @@ !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_write_bytes_real4(ifile, buffer, nbytes, status) - integer(kind=kindOfInt), intent(in) :: ifile - real(kind=4), dimension(:), intent(in) :: buffer + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=4), dimension(:), intent(in) :: buffer integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfSize_t) :: ibytes integer(kind=kindOfInt) :: iret @@ -1127,10 +1125,10 @@ !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_write_bytes_real4_size_t(ifile, buffer, nbytes, status) - integer(kind=kindOfInt), intent(in) :: ifile - real(kind=4), dimension(:), intent(in) :: buffer + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=4), dimension(:), intent(in) :: buffer integer(kind=kindOfSize_t), intent(in) :: nbytes - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret iret = grib_f_write_file(ifile, buffer, nbytes) @@ -1154,10 +1152,10 @@ !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_write_bytes_real8(ifile, buffer, nbytes, status) - integer(kind=kindOfInt), intent(in) :: ifile - real(kind=8), dimension(:), intent(in) :: buffer + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=8), dimension(:), intent(in) :: buffer integer(kind=kindOfInt), intent(in) :: nbytes - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfSize_t) :: ibytes integer(kind=kindOfInt) :: iret @@ -1183,10 +1181,10 @@ !> @param nbytes number of bytes to be written !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_write_bytes_real8_size_t(ifile, buffer, nbytes, status) - integer(kind=kindOfInt), intent(in) :: ifile - real(kind=8), dimension(:), intent(in) :: buffer + integer(kind=kindOfInt), intent(in) :: ifile + real(kind=8), dimension(:), intent(in) :: buffer integer(kind=kindOfSize_t), intent(in) :: nbytes - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret iret = grib_f_write_file(ifile, buffer, nbytes) @@ -1213,7 +1211,7 @@ subroutine grib_close_file(ifile, status) integer(kind=kindOfInt), intent(in) :: ifile integer(kind=kindOfInt), optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: iret iret = grib_f_close_file(ifile) if (present(status)) then @@ -1231,9 +1229,9 @@ !> @param n number of messages in the file !> @param status GRIB_SUCCESS if OK or error code subroutine grib_count_in_file(ifile, n, status) - integer(kind=kindOfInt), intent(in) :: ifile - integer(kind=kindOfInt), intent(out) :: n - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: n + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret iret = grib_f_count_in_file(ifile, n) @@ -1255,9 +1253,9 @@ !> @param gribid id of the grib loaded in memory !> @param status GRIB_SUCCESS if OK, GRIB_END_OF_FILE at the end of file, or error code subroutine grib_headers_only_new_from_file(ifile, gribid, status) - integer(kind=kindOfInt), intent(in) :: ifile - integer(kind=kindOfInt), intent(out) :: gribid - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: gribid + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret iret = grib_f_headers_only_new_from_file(ifile, gribid) @@ -1279,9 +1277,9 @@ !> @param gribid id of the grib loaded in memory !> @param status GRIB_SUCCESS if OK, GRIB_END_OF_FILE at the end of file, or error code subroutine grib_new_from_file(ifile, gribid, status) - integer(kind=kindOfInt), intent(in) :: ifile - integer(kind=kindOfInt), intent(out) :: gribid - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: gribid + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret iret = grib_f_new_from_file(ifile, gribid) @@ -1303,9 +1301,9 @@ !> @param bufrid id of the BUFR loaded in memory !> @param status GRIB_SUCCESS if OK, GRIB_END_OF_FILE at the end of file, or error code subroutine bufr_new_from_file(ifile, bufrid, status) - integer(kind=kindOfInt), intent(in) :: ifile - integer(kind=kindOfInt), intent(out) :: bufrid - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: bufrid + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret iret = bufr_f_new_from_file(ifile, bufrid) @@ -1325,9 +1323,9 @@ !> @param msgid id of the message loaded in memory !> @param status GRIB_SUCCESS if OK, GRIB_END_OF_FILE at the end of file, or error code subroutine any_new_from_file(ifile, msgid, status) - integer(kind=kindOfInt), intent(in) :: ifile - integer(kind=kindOfInt), intent(out) :: msgid - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), intent(in) :: ifile + integer(kind=kindOfInt), intent(out) :: msgid + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret iret = any_f_new_from_file(ifile, msgid) @@ -1354,9 +1352,9 @@ !> @param message character array containing the coded message !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_new_from_message_char(gribid, message, status) - integer(kind=kindOfInt), intent(out) :: gribid - character(len=1), dimension(:), intent(in) :: message - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), intent(out) :: gribid + character(len=1), dimension(:), intent(in) :: message + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfSize_t) :: size_bytes integer(kind=kindOfInt) :: iret @@ -1387,9 +1385,9 @@ !> @param message integer array containing the coded message !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_new_from_message_int4(gribid, message, status) - integer(kind=kindOfInt), intent(out) :: gribid - integer(kind=4), dimension(:), intent(in) :: message - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), intent(out) :: gribid + integer(kind=4), dimension(:), intent(in) :: message + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfSize_t) :: size_bytes integer(kind=kindOfInt) :: iret @@ -1419,9 +1417,9 @@ !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_new_from_samples(gribid, samplename, status) integer(kind=kindOfInt), intent(out) :: gribid - character(len=*), intent(in) :: samplename + character(len=*), intent(in) :: samplename integer(kind=kindOfInt), optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: iret iret = grib_f_new_from_samples(gribid, samplename) if (present(status)) then @@ -1444,7 +1442,7 @@ subroutine grib_release(gribid, status) integer(kind=kindOfInt), intent(in) :: gribid integer(kind=kindOfInt), optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: iret iret = grib_f_release(gribid) if (iret /= 0) then @@ -1476,7 +1474,7 @@ integer(kind=kindOfInt), intent(in) :: gribid_src integer(kind=kindOfInt), intent(out) :: gribid_dest integer(kind=kindOfInt), optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: iret iret = grib_f_clone(gribid_src, gribid_dest) if (iret /= 0) then @@ -1490,12 +1488,12 @@ end subroutine grib_clone subroutine grib_util_sections_copy(gribid_from, gribid_to, what, gribid_out, status) - integer(kind=kindOfInt), intent(in) :: gribid_from - integer(kind=kindOfInt), intent(in) :: gribid_to - integer(kind=kindOfInt), intent(out) :: gribid_out - integer(kind=kindOfInt), intent(in) :: what + integer(kind=kindOfInt), intent(in) :: gribid_from + integer(kind=kindOfInt), intent(in) :: gribid_to + integer(kind=kindOfInt), intent(out) :: gribid_out + integer(kind=kindOfInt), intent(in) :: what integer(kind=kindOfInt), optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: iret iret = grib_f_util_sections_copy(gribid_from, gribid_to, what, gribid_out) if (iret /= 0) then @@ -1522,11 +1520,11 @@ !> @param namespace namespace to be copied !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_copy_namespace(gribid_src, namespace, gribid_dest, status) - integer(kind=kindOfInt), intent(in) :: gribid_src - integer(kind=kindOfInt), intent(in) :: gribid_dest - character(LEN=*), intent(in) :: namespace + integer(kind=kindOfInt), intent(in) :: gribid_src + integer(kind=kindOfInt), intent(in) :: gribid_dest + character(LEN=*), intent(in) :: namespace integer(kind=kindOfInt), optional, intent(out) :: status - integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: iret iret = grib_f_copy_namespace(gribid_src, namespace, gribid_dest) if (present(status)) then @@ -1546,8 +1544,8 @@ !> @param string a string variable from the caller routine (e.g. key,filename) subroutine grib_check(status, caller, string) integer(kind=kindOfInt), intent(in) :: status - character(len=*), intent(in) :: caller - character(len=*), intent(in) :: string + character(len=*), intent(in) :: caller + character(len=*), intent(in) :: string call grib_f_check(status, caller, string) end subroutine grib_check @@ -1569,12 +1567,12 @@ !> @param values data values array with dimension "size" !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_get_data_real4(gribid, lats, lons, values, status) - integer(kind=kindOfInt), intent(in) :: gribid + integer(kind=kindOfInt), intent(in) :: gribid real(kind=kindOfFloat), dimension(:), intent(out) :: lats, lons real(kind=kindOfFloat), dimension(:), intent(out) :: values - integer(kind=kindOfInt), optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfSize_t) :: npoints + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfSize_t) :: npoints npoints = size(lats) iret = grib_f_get_data_real4(gribid, lats, lons, values, npoints) @@ -1605,12 +1603,12 @@ !> @param values data values array !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_get_data_real8(gribid, lats, lons, values, status) - integer(kind=kindOfInt), intent(in) :: gribid + integer(kind=kindOfInt), intent(in) :: gribid real(kind=kindOfDouble), dimension(:), intent(out) :: lats, lons real(kind=kindOfDouble), dimension(:), intent(out) :: values - integer(kind=kindOfInt), optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfSize_t) :: npoints + integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt) :: iret + integer(kind=kindOfSize_t) :: npoints npoints = size(lats) iret = grib_f_get_data_real8(gribid, lats, lons, values, npoints) @@ -1647,10 +1645,10 @@ !> @param namespace the namespace of the keys to search for (all the keys if empty) !> @param status GRIB_SUCCESS if OK, integer value on error subroutine grib_keys_iterator_new(gribid, iterid, namespace, status) - integer(kind=kindOfInt), intent(in) :: gribid - integer(kind=kindOfInt), intent(inout) :: iterid + integer(kind=kindOfInt), intent(in) :: gribid + integer(kind=kindOfInt), intent(inout) :: iterid character(LEN=*), intent(in) :: namespace - integer(kind=kindOfInt), optional, intent(out) :: status + integer(kind=kindOfInt), optional, intent(out) :: status integer(kind=kindOfInt) :: iret iret = grib_f_keys_iterator_new(gribid, iterid, namespace) @@ -1668,7 +1666,7 @@ subroutine grib_keys_iterator_next(iterid, status) integer(kind=kindOfInt), intent(in) :: iterid integer(kind=kindOfInt), intent(out) :: status - integer(kind=kindOfInt) :: iret + integer(kind=kindOfInt) :: iret status = GRIB_SUCCESS iret = grib_f_keys_iterator_next(iterid) @@ -2694,14 +2692,14 @@ integer(kind=kindOfInt), intent(in) :: gribid integer(kind=kindOfInt), intent(out) :: nbytes integer(kind=kindOfInt), optional, intent(out) :: status - integer(kind=kindOfInt) :: iret - integer(kind=kindOfSize_t) :: ibytes + integer(kind=kindOfInt) :: iret + integer(kind=kindOfSize_t) :: ibytes iret = grib_f_get_message_size(gribid, ibytes) if (iret == GRIB_SUCCESS .and. ibytes > huge(nbytes)) then iret = GRIB_MESSAGE_TOO_LARGE end if - nbytes = ibytes + nbytes = INT(ibytes, kind=kindOfInt) if (iret /= 0) then call grib_f_write_on_fail(gribid) end if From 5f38437e5f550bc7d0283c3b693eb6ec93dea353 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 25 Feb 2021 13:41:12 +0000 Subject: [PATCH 359/683] Scripts: Populating Parameter Database. Sanity checks --- definitions/add_params_from_tsv.pl | 38 +++++++++++++++++++++++------- 1 file changed, 30 insertions(+), 8 deletions(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index 70df7f6c9..9cd1b6ab6 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -80,9 +80,9 @@ my $host = $ENV{'DB_HOST'} || 'unknown'; my $user = $ENV{'DB_USER'} || 'unknown'; my $pass = $ENV{'DB_PASS'} || 'unknown'; my $dbh = 0; -my $centre = -3; # WMO -my $edition = 2; -my $contactId; # JIRA issue ID +my $centre = -3; # WMO table ID +my $edition = 2; # GRIB edition 2 +my $contactId; # JIRA issue ID my $PARAMID_FILENAME = "paramId.def"; my $SHORTNAME_FILENAME = "shortName.def"; @@ -92,7 +92,6 @@ my $CFVARNAME_FILENAME = "cfVarName.def"; my $tm = localtime; my $today_date = sprintf("%04d-%02d-%02d", $tm->year+1900, ($tm->mon)+1, $tm->mday); -#print "Using insert and update dates: $today_date\n"; if ($WRITE_TO_FILES) { create_or_append(\*OUT_PARAMID, "$PARAMID_FILENAME"); @@ -123,7 +122,9 @@ while (<>) { $typeGen, $localTV, $typeOfWLInt, $scaleFactorWL1, $scaledValueWL1, $scaleFactorWL2, $scaledValueWL2, $sourceSink ) = split(/\t/); - die "Error: paramID \"$paramId\" is not an integer (input row=$lcount)!" if (!is_integer($paramId)); + die "Error: paramID \"$paramId\" is not an integer (input row=$lcount)!\n" if (!is_integer($paramId)); + die "Error: shortName \"$shortName\" has an invalid character (input row=$lcount)!\n" if ($shortName =~ /[ '"]/); + die "Error: name \"$name\" should have uppercase 1st letter (input row=$lcount)!\n" if ($name !~ /^[A-Z]/); $units = "~" if ($units eq ""); $cfVarName = $shortName; @@ -178,8 +179,8 @@ while (<>) { $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,54,$is_aero,0) if ($is_aero ne ""); $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,28,$typeGen,0) if ($typeGen ne ""); - $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,16,$localTV,0) if ($localTV ne ""); - $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,57,$typeOfWLInt,0) if ($typeOfWLInt ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,16,$localTV,0) if ($localTV ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,57,$typeOfWLInt,0) if ($typeOfWLInt ne ""); if (! defined $scaleFactorWL1 || $scaleFactorWL1 ne "") { $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,58,$scaleFactorWL1,0); @@ -193,8 +194,9 @@ while (<>) { if (! defined $scaledValueWL2 || $scaledValueWL2 ne "") { $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,61,$scaledValueWL2,0); } + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,64,$sourceSink,0) if ($sourceSink ne ""); - # format is only GRIB2 + # format is only GRIB2 hence grib1 entry=0 and grib2=1 $dbh->do("insert into param_format(param_id,grib1,grib2) values (?,?,?)",undef,$paramId,0,1); } } # for each input line @@ -239,6 +241,15 @@ sub write_out_file { print $outfile " scaledValueOfSecondFixedSurface = $scaledValue2 ;\n" if ($scaledValue2 ne ""); print $outfile " scaleFactorOfSecondFixedSurface = $scaleFactor2 ;\n" if ($scaleFactor2 ne ""); print $outfile " typeOfStatisticalProcessing = $stat ;\n" if ($stat ne ""); + + print $outfile " aerosolType = $aero ;\n" if ($aero ne ""); + print $outfile " constituentType = $constit ;\n" if ($constit ne ""); + print $outfile " is_aerosol = 1 ;\n" if ($aero ne ""); + print $outfile " is_chemical = 1 ;\n" if ($constit ne ""); + + print $outfile " typeOfGeneratingProcess = $typeGen ;\n" if ($typeGen ne ""); + print $outfile " localTablesVersion = $localTV ;\n" if ($localTV ne ""); + print $outfile "}\n"; } @@ -265,6 +276,17 @@ sub check_first_row_column_names { die "Error: 1st row column titles wrong: Column 15 should be 'aerosolType'\n" if ($keys[14] ne "aerosolType"); die "Error: 1st row column titles wrong: Column 16 should be 'constituentType'\n" if ($keys[15] ne "constituentType"); + + die "Error: 1st row column titles wrong: Column 17 should be 'typeOfGeneratingProcess'\n" if ($keys[16] ne "typeOfGeneratingProcess"); + die "Error: 1st row column titles wrong: Column 18 should be 'localTablesVersion'\n" if ($keys[17] ne "localTablesVersion"); + + die "Error: 1st row column titles wrong: Column 19 should be 'typeOfWavelengthInterval'\n" if ($keys[18] ne "typeOfWavelengthInterval"); + die "Error: 1st row column titles wrong: Column 20 should be 'scaleFactorOfFirstWavelength'\n" if ($keys[19] ne "scaleFactorOfFirstWavelength"); + die "Error: 1st row column titles wrong: Column 21 should be 'scaledValueOfFirstWavelength'\n" if ($keys[20] ne "scaledValueOfFirstWavelength"); + die "Error: 1st row column titles wrong: Column 22 should be 'scaleFactorOfSecondWavelength'\n" if ($keys[21] ne "scaleFactorOfSecondWavelength"); + + die "Error: 1st row column titles wrong: Column 23 should be 'scaledValueOfSecondWavelength'\n" if ($keys[22] ne "scaledValueOfSecondWavelength"); + die "Error: 1st row column titles wrong: Column 24 should be 'sourceSinkChemicalPhysicalProcess'\n" if ($keys[23] ne "sourceSinkChemicalPhysicalProcess"); } sub create_or_append { From e4edb7b81d4620faeacc9db3f023e45c4e13ed10 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 25 Feb 2021 21:17:24 +0000 Subject: [PATCH 360/683] ECC-1207: GRIB2: BiFourier packing error --- ..._accessor_class_data_g2bifourier_packing.c | 19 +++++++++++-------- tests/grib_lam_bf.c | 5 +---- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/grib_accessor_class_data_g2bifourier_packing.c b/src/grib_accessor_class_data_g2bifourier_packing.c index 07a6d3770..df000c453 100644 --- a/src/grib_accessor_class_data_g2bifourier_packing.c +++ b/src/grib_accessor_class_data_g2bifourier_packing.c @@ -411,19 +411,22 @@ static double laplam(bif_trunc_t* bt, const double val[]) } lmax = l; - if (lmax == 0) - return 0.; + if (lmax == 0) { /* ECC-1207 */ + free(itab1); + free(itab2); + return 0.; + } + if (lmax < 0) { + free(itab1); + free(itab2); + Assert(!"data_g2bifourier_packing::laplam: lmax must be >= 0"); + return 0; + } /* * Now, itab2 contains all possible values of i*i+j*j, and itab1 contains * the rank of all i*i+j*j */ - if (lmax <= 0) { - free(itab1); - free(itab2); - Assert(!"data_g2bifourier_packing::laplam: lmax must be > 0"); - return 0; - } znorm = (double*)calloc(lmax, sizeof(double)); zw = (double*)malloc(sizeof(double) * lmax); diff --git a/tests/grib_lam_bf.c b/tests/grib_lam_bf.c index 8b302fb95..81b9ec137 100644 --- a/tests/grib_lam_bf.c +++ b/tests/grib_lam_bf.c @@ -700,7 +700,7 @@ int main(int argc, char* argv[]) trunc[1].trunc = 77; trunc[1].subtrunc = 77; trunc[1].subnsmax = NSTRON; - trunc[2].subnmsmax = NSTRON; + trunc[1].subnmsmax = NSTRON; trunc[1].len = 4 * (NSMAX + 1) * (NMSMAX + 1); trunc[1].values = (double*)malloc(sizeof(double) * trunc[1].len); trunc[1].name = "rectangle_rectangle"; @@ -715,8 +715,6 @@ int main(int argc, char* argv[]) trunc[2].values = (double*)values; trunc[2].name = "ellipse_full"; - - for (itrunc = 0; itrunc < 3; itrunc++) { for (igrid = 0; igrid < 3; igrid++) { GRIB_CHECK(((h = grib_handle_new_from_samples(NULL, "lambert_bf_grib2")) == NULL), 0); @@ -804,7 +802,6 @@ int main(int argc, char* argv[]) long int nsmax, nmsmax; char geometry[128]; - sprintf(f, "lam_bf_%s_%s.grib", grids[igrid], trunc[itrunc].name); fp = fopen(f, "rb"); h = grib_handle_new_from_file(0, fp, &err); From 1f1903ec7bbd9c9cf4bdab486999d503e72a2f64 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 25 Feb 2021 21:32:29 +0000 Subject: [PATCH 361/683] ECC-1207: cppcheck --- src/grib_accessor_class_data_g2bifourier_packing.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/grib_accessor_class_data_g2bifourier_packing.c b/src/grib_accessor_class_data_g2bifourier_packing.c index df000c453..831b8c7ac 100644 --- a/src/grib_accessor_class_data_g2bifourier_packing.c +++ b/src/grib_accessor_class_data_g2bifourier_packing.c @@ -416,13 +416,8 @@ static double laplam(bif_trunc_t* bt, const double val[]) free(itab2); return 0.; } + Assert(lmax>0); - if (lmax < 0) { - free(itab1); - free(itab2); - Assert(!"data_g2bifourier_packing::laplam: lmax must be >= 0"); - return 0; - } /* * Now, itab2 contains all possible values of i*i+j*j, and itab1 contains * the rank of all i*i+j*j From 52db2fb6cb041ba3c166c9069cd18baf1c0a0097 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 26 Feb 2021 14:27:09 +0000 Subject: [PATCH 362/683] Compiler warnings --- examples/F90/grib_print_data.sh | 2 +- examples/F90/grib_print_data_static.f90 | 4 ++-- src/grib_accessor_class_bufr_extract_area_subsets.c | 4 ++-- src/grib_context.c | 2 +- src/grib_templates.c | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/F90/grib_print_data.sh b/examples/F90/grib_print_data.sh index 31bdf42e3..5a27fbbd0 100755 --- a/examples/F90/grib_print_data.sh +++ b/examples/F90/grib_print_data.sh @@ -10,4 +10,4 @@ . ./include.sh ${examples_dir}/eccodes_f_grib_print_data | grep '99200 *values found' -${examples_dir}/eccodes_f_grib_print_data_static | grep '99200 *values found' +${examples_dir}/eccodes_f_grib_print_data_static | grep '496 *values found' diff --git a/examples/F90/grib_print_data_static.f90 b/examples/F90/grib_print_data_static.f90 index c8255fe89..d00a2944a 100644 --- a/examples/F90/grib_print_data_static.f90 +++ b/examples/F90/grib_print_data_static.f90 @@ -18,14 +18,14 @@ program print_data integer :: ifile integer :: igrib integer :: i - real(kind=8), dimension(99200) :: values_static + real(kind=8), dimension(496) :: values_static integer(kind=4) :: numPoints real(kind=8) :: average real(kind=8) :: the_max real(kind=8) :: the_min call grib_open_file(ifile, & - '../../data/constant_field.grib1', 'r') + '../../data/regular_latlon_surface_constant.grib1', 'r') ! A new GRIB message is loaded from file ! igrib is the grib id to be used in subsequent calls diff --git a/src/grib_accessor_class_bufr_extract_area_subsets.c b/src/grib_accessor_class_bufr_extract_area_subsets.c index 361078b04..2195e5b8a 100644 --- a/src/grib_accessor_class_bufr_extract_area_subsets.c +++ b/src/grib_accessor_class_bufr_extract_area_subsets.c @@ -196,8 +196,8 @@ static int select_area(grib_accessor* a) grib_iarray* subsets; long* subsets_ar = 0; size_t nsubsets = 0; - char latstr[20] = {0,}; - char lonstr[20] = {0,}; + char latstr[32] = {0,}; + char lonstr[32] = {0,}; ret = grib_get_long(h, "compressedData", &compressed); if (ret) diff --git a/src/grib_context.c b/src/grib_context.c index 0a8d3276d..5fa6e46fe 100644 --- a/src/grib_context.c +++ b/src/grib_context.c @@ -639,7 +639,7 @@ static int init_definition_files_dir(grib_context* c) return GRIB_NO_DEFINITIONS; /* Note: strtok modifies its first argument so we copy */ - strncpy(path, c->grib_definition_files_path, ECC_PATH_MAXLEN); + strncpy(path, c->grib_definition_files_path, ECC_PATH_MAXLEN-1); GRIB_MUTEX_INIT_ONCE(&once, &init); GRIB_MUTEX_LOCK(&mutex_c); diff --git a/src/grib_templates.c b/src/grib_templates.c index a13b002dd..60a94fc62 100644 --- a/src/grib_templates.c +++ b/src/grib_templates.c @@ -107,7 +107,7 @@ static grib_handle* try_bufr_template(grib_context* c, const char* dir, const ch static char* try_template_path(grib_context* c, const char* dir, const char* name) { - char path[1024]; + char path[2048]; sprintf(path, "%s/%s.tmpl", dir, name); From 70147cd99d171131b0759b85310b996f17fbc8c5 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 27 Feb 2021 14:11:57 +0000 Subject: [PATCH 363/683] ECC-1208: Fix name of macros: CODES_DUMP_FLAG_OCTECT and GRIB_DUMP_FLAG_OCTECT --- src/eccodes.h | 40 +++++++++++++++++------------------ src/grib_api.h | 8 +++---- src/grib_dumper_class_debug.c | 2 +- src/grib_dumper_class_wmo.c | 2 +- tools/bufr_dump.c | 2 +- tools/grib_dump.c | 2 +- tools/grib_merge.c | 26 ++++++----------------- tools/gts_dump.c | 2 +- tools/metar_dump.c | 2 +- tools/taf_dump.c | 2 +- 10 files changed, 38 insertions(+), 50 deletions(-) diff --git a/src/eccodes.h b/src/eccodes.h index d0af8ee09..41d32cbd4 100644 --- a/src/eccodes.h +++ b/src/eccodes.h @@ -44,37 +44,37 @@ Log mode for information for processing information /* Types */ #define CODES_TYPE_UNDEFINED GRIB_TYPE_UNDEFINED -#define CODES_TYPE_LONG GRIB_TYPE_LONG -#define CODES_TYPE_DOUBLE GRIB_TYPE_DOUBLE -#define CODES_TYPE_STRING GRIB_TYPE_STRING -#define CODES_TYPE_BYTES GRIB_TYPE_BYTES -#define CODES_TYPE_SECTION GRIB_TYPE_SECTION -#define CODES_TYPE_LABEL GRIB_TYPE_LABEL -#define CODES_TYPE_MISSING GRIB_TYPE_MISSING +#define CODES_TYPE_LONG GRIB_TYPE_LONG +#define CODES_TYPE_DOUBLE GRIB_TYPE_DOUBLE +#define CODES_TYPE_STRING GRIB_TYPE_STRING +#define CODES_TYPE_BYTES GRIB_TYPE_BYTES +#define CODES_TYPE_SECTION GRIB_TYPE_SECTION +#define CODES_TYPE_LABEL GRIB_TYPE_LABEL +#define CODES_TYPE_MISSING GRIB_TYPE_MISSING /* Missing values */ -#define CODES_MISSING_LONG GRIB_MISSING_LONG +#define CODES_MISSING_LONG GRIB_MISSING_LONG #define CODES_MISSING_DOUBLE GRIB_MISSING_DOUBLE /*set spec flags*/ #define CODES_UTIL_SET_SPEC_FLAGS_ONLY_PACKING GRIB_UTIL_SET_SPEC_FLAGS_ONLY_PACKING /* Dump option flags*/ -#define CODES_DUMP_FLAG_READ_ONLY GRIB_DUMP_FLAG_READ_ONLY -#define CODES_DUMP_FLAG_DUMP_OK GRIB_DUMP_FLAG_DUMP_OK -#define CODES_DUMP_FLAG_VALUES GRIB_DUMP_FLAG_VALUES -#define CODES_DUMP_FLAG_CODED GRIB_DUMP_FLAG_CODED -#define CODES_DUMP_FLAG_OCTECT GRIB_DUMP_FLAG_OCTECT -#define CODES_DUMP_FLAG_ALIASES GRIB_DUMP_FLAG_ALIASES -#define CODES_DUMP_FLAG_TYPE GRIB_DUMP_FLAG_TYPE -#define CODES_DUMP_FLAG_HEXADECIMAL GRIB_DUMP_FLAG_HEXADECIMAL -#define CODES_DUMP_FLAG_NO_DATA GRIB_DUMP_FLAG_NO_DATA -#define CODES_DUMP_FLAG_ALL_DATA GRIB_DUMP_FLAG_ALL_DATA +#define CODES_DUMP_FLAG_READ_ONLY GRIB_DUMP_FLAG_READ_ONLY +#define CODES_DUMP_FLAG_DUMP_OK GRIB_DUMP_FLAG_DUMP_OK +#define CODES_DUMP_FLAG_VALUES GRIB_DUMP_FLAG_VALUES +#define CODES_DUMP_FLAG_CODED GRIB_DUMP_FLAG_CODED +#define CODES_DUMP_FLAG_OCTET GRIB_DUMP_FLAG_OCTET +#define CODES_DUMP_FLAG_ALIASES GRIB_DUMP_FLAG_ALIASES +#define CODES_DUMP_FLAG_TYPE GRIB_DUMP_FLAG_TYPE +#define CODES_DUMP_FLAG_HEXADECIMAL GRIB_DUMP_FLAG_HEXADECIMAL +#define CODES_DUMP_FLAG_NO_DATA GRIB_DUMP_FLAG_NO_DATA +#define CODES_DUMP_FLAG_ALL_DATA GRIB_DUMP_FLAG_ALL_DATA #define CODES_DUMP_FLAG_ALL_ATTRIBUTES GRIB_DUMP_FLAG_ALL_ATTRIBUTES /* codes_nearest flags */ -#define CODES_NEAREST_SAME_GRID GRIB_NEAREST_SAME_GRID -#define CODES_NEAREST_SAME_DATA GRIB_NEAREST_SAME_DATA +#define CODES_NEAREST_SAME_GRID GRIB_NEAREST_SAME_GRID +#define CODES_NEAREST_SAME_DATA GRIB_NEAREST_SAME_DATA #define CODES_NEAREST_SAME_POINT GRIB_NEAREST_SAME_POINT /*! Iteration is carried out on all the keys available in the message diff --git a/src/grib_api.h b/src/grib_api.h index 58c91a72d..7be7faaad 100644 --- a/src/grib_api.h +++ b/src/grib_api.h @@ -104,7 +104,7 @@ Log mode for information for processing information #define GRIB_DUMP_FLAG_DUMP_OK (1 << 1) #define GRIB_DUMP_FLAG_VALUES (1 << 2) #define GRIB_DUMP_FLAG_CODED (1 << 3) -#define GRIB_DUMP_FLAG_OCTECT (1 << 4) +#define GRIB_DUMP_FLAG_OCTET (1 << 4) #define GRIB_DUMP_FLAG_ALIASES (1 << 5) #define GRIB_DUMP_FLAG_TYPE (1 << 6) #define GRIB_DUMP_FLAG_HEXADECIMAL (1 << 7) @@ -700,9 +700,9 @@ int grib_nearest_find(grib_nearest* nearest, const grib_handle* h, double inlat, double* values, double* distances, int* indexes, size_t* len); /** -* Frees an nearest from memory +* Frees a nearest neighbour object from memory * -* @param nearest : the nearest +* @param nearest : the nearest * @return 0 if OK, integer value on error */ int grib_nearest_delete(grib_nearest* nearest); @@ -766,7 +766,7 @@ int grib_get_size(const grib_handle* h, const char* key, size_t* size); * * @param h : the handle to get the offset from * @param key : the key to be searched -* @param length : the address of a size_t where the length will be set +* @param length : the address of a size_t where the length will be set * @return 0 if OK, integer value on error */ int grib_get_length(const grib_handle* h, const char* key, size_t* length); diff --git a/src/grib_dumper_class_debug.c b/src/grib_dumper_class_debug.c index 58c7bf1b4..15d6463af 100644 --- a/src/grib_dumper_class_debug.c +++ b/src/grib_dumper_class_debug.c @@ -511,7 +511,7 @@ static void dump_section(grib_dumper* d, grib_accessor* a, grib_block_of_accesso static void set_begin_end(grib_dumper* d, grib_accessor* a) { grib_dumper_debug* self = (grib_dumper_debug*)d; - if ((d->option_flags & GRIB_DUMP_FLAG_OCTECT) != 0) { + if ((d->option_flags & GRIB_DUMP_FLAG_OCTET) != 0) { self->begin = a->offset - self->section_offset + 1; self->theEnd = grib_get_next_position_offset(a) - self->section_offset; } diff --git a/src/grib_dumper_class_wmo.c b/src/grib_dumper_class_wmo.c index c1431c101..e8ba82488 100644 --- a/src/grib_dumper_class_wmo.c +++ b/src/grib_dumper_class_wmo.c @@ -569,7 +569,7 @@ static void dump_section(grib_dumper* d, grib_accessor* a, grib_block_of_accesso static void set_begin_end(grib_dumper* d, grib_accessor* a) { grib_dumper_wmo* self = (grib_dumper_wmo*)d; - if ((d->option_flags & GRIB_DUMP_FLAG_OCTECT) != 0) { + if ((d->option_flags & GRIB_DUMP_FLAG_OCTET) != 0) { self->begin = a->offset - self->section_offset + 1; self->theEnd = grib_get_next_position_offset(a) - self->section_offset; } diff --git a/tools/bufr_dump.c b/tools/bufr_dump.c index 53b5d4800..fb13aad89 100644 --- a/tools/bufr_dump.c +++ b/tools/bufr_dump.c @@ -125,7 +125,7 @@ int grib_tool_init(grib_runtime_options* options) if (grib_options_on("O")) { options->dump_mode = "wmo"; json = 0; - options->dump_flags = GRIB_DUMP_FLAG_CODED | GRIB_DUMP_FLAG_OCTECT | GRIB_DUMP_FLAG_VALUES | GRIB_DUMP_FLAG_READ_ONLY; + options->dump_flags = GRIB_DUMP_FLAG_CODED | GRIB_DUMP_FLAG_OCTET | GRIB_DUMP_FLAG_VALUES | GRIB_DUMP_FLAG_READ_ONLY; } if (grib_options_on("p")) { diff --git a/tools/grib_dump.c b/tools/grib_dump.c index 2a53ef351..fc358d726 100644 --- a/tools/grib_dump.c +++ b/tools/grib_dump.c @@ -90,7 +90,7 @@ int grib_tool_init(grib_runtime_options* options) if (grib_options_on("O")) { options->dump_mode = "wmo"; - options->dump_flags = GRIB_DUMP_FLAG_CODED | GRIB_DUMP_FLAG_OCTECT | GRIB_DUMP_FLAG_VALUES | GRIB_DUMP_FLAG_READ_ONLY; + options->dump_flags = GRIB_DUMP_FLAG_CODED | GRIB_DUMP_FLAG_OCTET | GRIB_DUMP_FLAG_VALUES | GRIB_DUMP_FLAG_READ_ONLY; } if (grib_options_on("D")) { diff --git a/tools/grib_merge.c b/tools/grib_merge.c index 16ee48c0f..ac74019db 100644 --- a/tools/grib_merge.c +++ b/tools/grib_merge.c @@ -131,21 +131,13 @@ static grib_handle* merge(grib_handle* h1, grib_handle* h2) long Ni1, Nj1, Ni2, Nj2; grib_handle* h = NULL; int err = 0; - /* - int dump_flags= GRIB_DUMP_FLAG_CODED - | GRIB_DUMP_FLAG_OCTECT - | GRIB_DUMP_FLAG_VALUES - | GRIB_DUMP_FLAG_READ_ONLY; - */ - - /* same products? */ + /* Same products? */ if (grib_key_equal(h1, h2, md5Key, GRIB_TYPE_STRING, &err) == 0 && err == 0) { return NULL; } - /* can we do it?*/ - + /* Can we do it? */ len2 = sizeof(s2) / sizeof(*s2); err = grib_get_string(h2, "gridType", s2, &len2); if (strcmp(s2, "regular_ll")) { @@ -187,21 +179,17 @@ static grib_handle* merge(grib_handle* h1, grib_handle* h2) return NULL; } - /* yes we can!*/ - - /* do we have something to do?*/ - + /* Yes we can! Do we have something to do? */ if (grib_key_equal(h1, h2, "latitudeOfFirstGridPointInDegrees", GRIB_TYPE_DOUBLE, &err) && grib_key_equal(h1, h2, "latitudeOfLastGridPointInDegrees", GRIB_TYPE_DOUBLE, &err) && grib_key_equal(h1, h2, "longitudeOfFirstGridPointInDegrees", GRIB_TYPE_DOUBLE, &err) && grib_key_equal(h1, h2, "longitudeOfLastGridPointInDegrees", GRIB_TYPE_DOUBLE, &err)) { - /* no we don't */ + /* No we don't */ return NULL; } - /* yes we do! */ - - /* check scanning mode */ + /* Yes we do! */ + /* Check scanning mode */ grib_get_long(h1, "iScansNegatively", &iscan); if (iscan) grib_set_long(h1, "swapScanningLon", 1); @@ -258,7 +246,7 @@ static grib_handle* merge(grib_handle* h1, grib_handle* h2) lonLast = 360 - di; } - /* create new grib for bigger area*/ + /* Create new grib for bigger area*/ h = grib_handle_clone(h1); grib_set_double(h, "latitudeOfFirstGridPointInDegrees", latFirst); grib_set_double(h, "longitudeOfFirstGridPointInDegrees", lonFirst); diff --git a/tools/gts_dump.c b/tools/gts_dump.c index 13b302c80..c8fe98eb3 100644 --- a/tools/gts_dump.c +++ b/tools/gts_dump.c @@ -68,7 +68,7 @@ int grib_tool_init(grib_runtime_options* options) if (grib_options_on("O")) { options->dump_mode = "wmo"; - options->dump_flags = GRIB_DUMP_FLAG_CODED | GRIB_DUMP_FLAG_OCTECT | GRIB_DUMP_FLAG_VALUES | GRIB_DUMP_FLAG_READ_ONLY; + options->dump_flags = GRIB_DUMP_FLAG_CODED | GRIB_DUMP_FLAG_OCTET | GRIB_DUMP_FLAG_VALUES | GRIB_DUMP_FLAG_READ_ONLY; } if (grib_options_on("D")) { diff --git a/tools/metar_dump.c b/tools/metar_dump.c index 1c496c5a8..2dcfe14b9 100644 --- a/tools/metar_dump.c +++ b/tools/metar_dump.c @@ -65,7 +65,7 @@ int grib_tool_init(grib_runtime_options* options) if (grib_options_on("O")) { options->dump_mode = "wmo"; - options->dump_flags = GRIB_DUMP_FLAG_CODED | GRIB_DUMP_FLAG_OCTECT | GRIB_DUMP_FLAG_VALUES | GRIB_DUMP_FLAG_READ_ONLY; + options->dump_flags = GRIB_DUMP_FLAG_CODED | GRIB_DUMP_FLAG_OCTET | GRIB_DUMP_FLAG_VALUES | GRIB_DUMP_FLAG_READ_ONLY; } if (grib_options_on("D")) { diff --git a/tools/taf_dump.c b/tools/taf_dump.c index a6cdb704e..346a6b1cc 100644 --- a/tools/taf_dump.c +++ b/tools/taf_dump.c @@ -59,7 +59,7 @@ int grib_tool_init(grib_runtime_options* options) if (grib_options_on("O")) { options->dump_mode = "wmo"; - options->dump_flags = GRIB_DUMP_FLAG_CODED | GRIB_DUMP_FLAG_OCTECT | GRIB_DUMP_FLAG_VALUES | GRIB_DUMP_FLAG_READ_ONLY; + options->dump_flags = GRIB_DUMP_FLAG_CODED | GRIB_DUMP_FLAG_OCTET | GRIB_DUMP_FLAG_VALUES | GRIB_DUMP_FLAG_READ_ONLY; } if (grib_options_on("D")) { From f8b61c28bd7df3aac01ecb93d2ed72aea893837d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 1 Mar 2021 22:23:12 +0000 Subject: [PATCH 364/683] Cosmetics --- ...or_class_data_g1second_order_general_extended_packing.c | 1 - src/grib_geography.c | 1 - src/grib_index.c | 4 ---- src/grib_nearest_class_latlon_reduced.c | 6 ++++++ src/grib_nearest_class_regular.c | 7 ++++++- src/grib_util.c | 2 -- 6 files changed, 12 insertions(+), 9 deletions(-) diff --git a/src/grib_accessor_class_data_g1second_order_general_extended_packing.c b/src/grib_accessor_class_data_g1second_order_general_extended_packing.c index 454472d39..79e28e2ce 100644 --- a/src/grib_accessor_class_data_g1second_order_general_extended_packing.c +++ b/src/grib_accessor_class_data_g1second_order_general_extended_packing.c @@ -535,7 +535,6 @@ static void grib_split_long_groups(grib_handle* hand, grib_context* c, long* num long* localFirstOrderValues; int maxNumberOfGroups = *numberOfGroups * 2; - /* the widthOfLengths is the same for all the groupLengths and therefore if few big groups are present all the groups have to be coded with a large number of bits (big widthOfLengths) even if the majority of them is small. diff --git a/src/grib_geography.c b/src/grib_geography.c index 3c60f9f28..d236580af 100644 --- a/src/grib_geography.c +++ b/src/grib_geography.c @@ -33,7 +33,6 @@ #define M_PI 3.14159265358979323846 #endif - static void gauss_first_guess(long trunc, double* vals) { long i = 0, numVals; diff --git a/src/grib_index.c b/src/grib_index.c index 216b3a3b1..fbb597d2e 100644 --- a/src/grib_index.c +++ b/src/grib_index.c @@ -22,7 +22,6 @@ #define NULL_MARKER 0 #define NOT_NULL_MARKER 255 - /* #if GRIB_PTHREADS */ #if 0 static pthread_once_t once = PTHREAD_ONCE_INIT; @@ -57,7 +56,6 @@ static void init() } #endif - static const char* mars_keys = "mars.date,mars.time,mars.expver,mars.stream,mars.class,mars.type," "mars.step,mars.param,mars.levtype,mars.levelist,mars.number,mars.iteration," @@ -81,7 +79,6 @@ static char* get_key(char** keys, int* type) while (*p == ' ') p++; - while (*p != 0 && *p != ':' && *p != ',') p++; if (*p == ':') { @@ -1404,7 +1401,6 @@ int grib_index_add_file(grib_index* index, const char* filename) if (err) return err; field->length=length; - if (field_tree->field) { grib_field* pfield=field_tree->field; while (pfield->next) pfield=pfield->next; diff --git a/src/grib_nearest_class_latlon_reduced.c b/src/grib_nearest_class_latlon_reduced.c index 3be537bea..5c4243718 100644 --- a/src/grib_nearest_class_latlon_reduced.c +++ b/src/grib_nearest_class_latlon_reduced.c @@ -136,6 +136,9 @@ static int find(grib_nearest* nearest, grib_handle* h, return ret; radius = ((double)iradius) / 1000.0; + /* Compute lat/lon info, create iterator etc if it's the 1st time or different grid. + * This is for performance: if the grid has not changed, we only do this once + * and reuse for other messages */ if (!nearest->h || (flags & GRIB_NEAREST_SAME_GRID) == 0) { double dummy = 0; double olat = 1.e10; @@ -183,6 +186,9 @@ static int find(grib_nearest* nearest, grib_handle* h, } nearest->h = h; + /* Compute distances if it's the 1st time or different point or different grid. + * This is for performance: if the grid and the input point have not changed + * we only do this once and reuse for other messages */ if (!self->distances || (flags & GRIB_NEAREST_SAME_POINT) == 0 || (flags & GRIB_NEAREST_SAME_GRID) == 0) { double* lons = NULL; int nlon = 0; diff --git a/src/grib_nearest_class_regular.c b/src/grib_nearest_class_regular.c index 72a13d426..18f1c6f50 100644 --- a/src/grib_nearest_class_regular.c +++ b/src/grib_nearest_class_regular.c @@ -175,7 +175,6 @@ static int find(grib_nearest* nearest, grib_handle* h, } nearest->h=h; - } if (!self->distances || (flags & GRIB_NEAREST_SAME_POINT)==0 @@ -258,6 +257,9 @@ static int find(grib_nearest* nearest, grib_handle* h, return ret; radius = ((double)iradius) / 1000.0; + /* Compute lat/lon info, create iterator etc if it's the 1st time or different grid. + * This is for performance: if the grid has not changed, we only do this once + * and reuse for other messages */ if (!nearest->h || (flags & GRIB_NEAREST_SAME_GRID) == 0) { double dummy = 0; double olat = 1.e10, olon = 1.e10; @@ -342,6 +344,9 @@ static int find(grib_nearest* nearest, grib_handle* h, } nearest->h = h; + /* Compute distances if it's the 1st time or different point or different grid. + * This is for performance: if the grid and the input point have not changed + * we only do this once and reuse for other messages */ if (!self->distances || (flags & GRIB_NEAREST_SAME_POINT) == 0 || (flags & GRIB_NEAREST_SAME_GRID) == 0) { int nearest_lons_found = 0; diff --git a/src/grib_util.c b/src/grib_util.c index 759fd6fd2..5b94e96b8 100644 --- a/src/grib_util.c +++ b/src/grib_util.c @@ -1086,7 +1086,6 @@ grib_handle* grib_util_set_spec2(grib_handle* h, if (h->context->debug == -1) fprintf(stderr, "ECCODES DEBUG grib_util: done grib_set_double_array \n"); - /* convert to second_order if not constant field */ if (setSecondOrder) { int constant = 0; @@ -1249,7 +1248,6 @@ grib_handle* grib_util_set_spec2(grib_handle* h, COPY_SPEC_DOUBLE(latitudeOfLastGridPointInDegrees); break; - case GRIB_UTIL_GRID_SPEC_REDUCED_LL: COPY_SPEC_LONG(bitmapPresent); if (spec->missingValue) COPY_SPEC_DOUBLE(missingValue); From cd805aafb376d246216f6a706d3985af303eb168 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 2 Mar 2021 17:03:33 +0000 Subject: [PATCH 365/683] ECC-1209: New and updated parameters for CARRA/CERRA --- definitions/grib2/cfVarName.def | 42 +++++++++++++++++++ .../grib2/localConcepts/ecmf/cfVarName.def | 6 --- .../localConcepts/ecmf/cfVarName.legacy.def | 6 +++ definitions/grib2/localConcepts/ecmf/name.def | 6 --- .../grib2/localConcepts/ecmf/name.legacy.def | 6 +++ .../grib2/localConcepts/ecmf/paramId.def | 6 --- .../localConcepts/ecmf/paramId.legacy.def | 6 +++ .../grib2/localConcepts/ecmf/shortName.def | 6 --- .../localConcepts/ecmf/shortName.legacy.def | 6 +++ .../grib2/localConcepts/ecmf/units.def | 6 --- .../grib2/localConcepts/ecmf/units.legacy.def | 6 +++ definitions/grib2/name.def | 42 +++++++++++++++++++ definitions/grib2/paramId.def | 42 +++++++++++++++++++ definitions/grib2/shortName.def | 42 +++++++++++++++++++ definitions/grib2/units.def | 42 +++++++++++++++++++ 15 files changed, 240 insertions(+), 30 deletions(-) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 0a07feaa4..2607aa71a 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -176,6 +176,15 @@ parameterCategory = 3 ; parameterNumber = 0 ; } +#Direct solar radiation +'dsrp' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 54 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #10 metre wind gust since previous post-processing 'fg10' = { discipline = 0 ; @@ -1088,6 +1097,24 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } +#Time integral of surface latent heat evaporation flux +'tislhef' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 30 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of surface latent heat sublimation flux +'tislhsf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #Cross sectional area of flow in channel 'chcross' = { discipline = 1 ; @@ -1702,6 +1729,21 @@ parameterCategory = 4 ; parameterNumber = 19 ; } +#Volumetric soil ice +'vsi' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 38 ; + } +#Time integral of total solid precipitation flux +'titspf' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 128 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #Universal thermal climate index 'utci' = { discipline = 20 ; diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.def b/definitions/grib2/localConcepts/ecmf/cfVarName.def index 113ceb826..7ea1a5e30 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.def @@ -245,12 +245,6 @@ parameterCategory = 128 ; parameterNumber = 46 ; } -#Direct solar radiation -'dsrp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; - } #Magnitude of turbulent surface stress 'magss' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def index 70301618f..2610ce188 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def @@ -190,3 +190,9 @@ parameterCategory = 174 ; parameterNumber = 8 ; } +#Direct solar radiation +'dsrp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/name.def b/definitions/grib2/localConcepts/ecmf/name.def index eabef9fa5..db16a2356 100644 --- a/definitions/grib2/localConcepts/ecmf/name.def +++ b/definitions/grib2/localConcepts/ecmf/name.def @@ -245,12 +245,6 @@ parameterCategory = 128 ; parameterNumber = 46 ; } -#Direct solar radiation -'Direct solar radiation' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; - } #Magnitude of turbulent surface stress 'Magnitude of turbulent surface stress' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/name.legacy.def b/definitions/grib2/localConcepts/ecmf/name.legacy.def index 9cc5571e5..e3cd3240b 100644 --- a/definitions/grib2/localConcepts/ecmf/name.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/name.legacy.def @@ -190,3 +190,9 @@ parameterCategory = 174 ; parameterNumber = 8 ; } +#Direct solar radiation +'Direct solar radiation' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/paramId.def b/definitions/grib2/localConcepts/ecmf/paramId.def index bba71a6d7..3e8677989 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.def @@ -245,12 +245,6 @@ parameterCategory = 128 ; parameterNumber = 46 ; } -#Direct solar radiation -'47' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; - } #Magnitude of turbulent surface stress '48' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def index 35c1eaeac..5bedd4ecc 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def @@ -190,3 +190,9 @@ parameterCategory = 174 ; parameterNumber = 8 ; } +#Direct solar radiation +'47' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/shortName.def b/definitions/grib2/localConcepts/ecmf/shortName.def index 129a268d8..59357f03e 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.def @@ -245,12 +245,6 @@ parameterCategory = 128 ; parameterNumber = 46 ; } -#Direct solar radiation -'dsrp' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; - } #Magnitude of turbulent surface stress 'magss' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def index 7699bff30..e5814e9b9 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def @@ -190,3 +190,9 @@ parameterCategory = 174 ; parameterNumber = 8 ; } +#Direct solar radiation +'dsrp' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/units.def b/definitions/grib2/localConcepts/ecmf/units.def index fa2e1ac0f..5641f6f77 100644 --- a/definitions/grib2/localConcepts/ecmf/units.def +++ b/definitions/grib2/localConcepts/ecmf/units.def @@ -245,12 +245,6 @@ parameterCategory = 128 ; parameterNumber = 46 ; } -#Direct solar radiation -'J m**-2' = { - discipline = 192 ; - parameterCategory = 128 ; - parameterNumber = 47 ; - } #Magnitude of turbulent surface stress 'N m**-2 s' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/units.legacy.def b/definitions/grib2/localConcepts/ecmf/units.legacy.def index 06c6a1ca3..f38e5feca 100644 --- a/definitions/grib2/localConcepts/ecmf/units.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/units.legacy.def @@ -190,3 +190,9 @@ parameterCategory = 174 ; parameterNumber = 8 ; } +#Direct solar radiation +'J m**-2' = { + discipline = 192 ; + parameterCategory = 128 ; + parameterNumber = 47 ; +} diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index e808c10aa..422f0e083 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -176,6 +176,15 @@ parameterCategory = 3 ; parameterNumber = 0 ; } +#Direct solar radiation +'Direct solar radiation' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 54 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #10 metre wind gust since previous post-processing '10 metre wind gust since previous post-processing' = { discipline = 0 ; @@ -1088,6 +1097,24 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } +#Time integral of surface latent heat evaporation flux +'Time integral of surface latent heat evaporation flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 30 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of surface latent heat sublimation flux +'Time integral of surface latent heat sublimation flux' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #Cross sectional area of flow in channel 'Cross sectional area of flow in channel' = { discipline = 1 ; @@ -1702,6 +1729,21 @@ parameterCategory = 4 ; parameterNumber = 19 ; } +#Volumetric soil ice +'Volumetric soil ice' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 38 ; + } +#Time integral of total solid precipitation flux +'Time integral of total solid precipitation flux' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 128 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #Universal thermal climate index 'Universal thermal climate index' = { discipline = 20 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index f5b50c9f0..88f82eff5 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -176,6 +176,15 @@ parameterCategory = 3 ; parameterNumber = 0 ; } +#Direct solar radiation +'47' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 54 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #10 metre wind gust since previous post-processing '49' = { discipline = 0 ; @@ -1088,6 +1097,24 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } +#Time integral of surface latent heat evaporation flux +'235019' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 30 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of surface latent heat sublimation flux +'235071' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #Cross sectional area of flow in channel '240011' = { discipline = 1 ; @@ -1702,6 +1729,21 @@ parameterCategory = 4 ; parameterNumber = 19 ; } +#Volumetric soil ice +'260644' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 38 ; + } +#Time integral of total solid precipitation flux +'260645' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 128 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #Universal thermal climate index '261001' = { discipline = 20 ; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index fd3db0743..65a7ade79 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -176,6 +176,15 @@ parameterCategory = 3 ; parameterNumber = 0 ; } +#Direct solar radiation +'dsrp' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 54 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #10 metre wind gust since previous post-processing '10fg' = { discipline = 0 ; @@ -1088,6 +1097,24 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } +#Time integral of surface latent heat evaporation flux +'tislhef' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 30 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of surface latent heat sublimation flux +'tislhsf' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #Cross sectional area of flow in channel 'chcross' = { discipline = 1 ; @@ -1702,6 +1729,21 @@ parameterCategory = 4 ; parameterNumber = 19 ; } +#Volumetric soil ice +'vsi' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 38 ; + } +#Time integral of total solid precipitation flux +'titspf' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 128 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #Universal thermal climate index 'utci' = { discipline = 20 ; diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index 45c722caa..c0eb7d378 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -176,6 +176,15 @@ parameterCategory = 3 ; parameterNumber = 0 ; } +#Direct solar radiation +'J m**-2' = { + discipline = 0 ; + parameterCategory = 4 ; + parameterNumber = 54 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #10 metre wind gust since previous post-processing 'm s**-1' = { discipline = 0 ; @@ -1088,6 +1097,24 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } +#Time integral of surface latent heat evaporation flux +'J m**-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 30 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of surface latent heat sublimation flux +'J m**-2' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 31 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #Cross sectional area of flow in channel 'm**2' = { discipline = 1 ; @@ -1702,6 +1729,21 @@ parameterCategory = 4 ; parameterNumber = 19 ; } +#Volumetric soil ice +'m**3 m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 38 ; + } +#Time integral of total solid precipitation flux +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 128 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #Universal thermal climate index 'K' = { discipline = 20 ; From 5b0fbacd51390ffb51687e5a9e356a7ea9c41f1c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 3 Mar 2021 12:44:03 +0000 Subject: [PATCH 366/683] ECC-1210: Add additional typeOfPostProcessing to EFAS local definition --- definitions/grib2/local.98.41.def | 1 + 1 file changed, 1 insertion(+) diff --git a/definitions/grib2/local.98.41.def b/definitions/grib2/local.98.41.def index 604dcf36b..da2ecc50c 100644 --- a/definitions/grib2/local.98.41.def +++ b/definitions/grib2/local.98.41.def @@ -45,6 +45,7 @@ concept efas_post_proc { "lisflood_eric" = { typeOfPostProcessing=2 ; } "lisflood_season" = { typeOfPostProcessing=3 ; } "lisflood_merged" = { typeOfPostProcessing=4 ; } + "lisflood_global" = { typeOfPostProcessing=5 ; } "ericha" = { typeOfPostProcessing=51 ; } "htessel_lisflood" = { typeOfPostProcessing=101; } "htessel_eric" = { typeOfPostProcessing=102; } From 36b4da6fc3b50e597bed92f8f0ec9d06e82e116c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 3 Mar 2021 14:28:57 +0000 Subject: [PATCH 367/683] ECC-1211: GRIB: Add new MARS class 'gw' - Global Wildfire --- definitions/mars/class.table | 1 + 1 file changed, 1 insertion(+) diff --git a/definitions/mars/class.table b/definitions/mars/class.table index 307b77554..7ecbe2757 100644 --- a/definitions/mars/class.table +++ b/definitions/mars/class.table @@ -37,6 +37,7 @@ 36 cr Copernicus Atmosphere Monitoring Service (CAMS) Research 37 rr Copernicus Regional ReAnalysis (CARRA/CERRA) 38 ul Project ULYSSES +39 gw Global Wildfire Information System 99 te Test 100 at Austria 101 be Belgium From f6a7672e595ed9d26bc1952ea287e81ba0d1f7c5 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 5 Mar 2021 12:08:34 +0000 Subject: [PATCH 368/683] Compiler warning re strncpy --- fortran/grib_fortran.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fortran/grib_fortran.c b/fortran/grib_fortran.c index 289e2c5b4..87bc33ae0 100644 --- a/fortran/grib_fortran.c +++ b/fortran/grib_fortran.c @@ -2148,9 +2148,9 @@ int grib_f_print(int* gid, char* key, int len){ /*****************************************************************************/ int grib_f_get_error_string_(int* err, char* buf, int len){ const char* err_msg = grib_get_error_message(*err); - size_t erlen = strlen(err_msg); + const size_t erlen = strlen(err_msg); if( len < erlen) return GRIB_ARRAY_TOO_SMALL; - strncpy(buf, err_msg,(size_t)erlen); + strncpy(buf, err_msg,(size_t)len); return GRIB_SUCCESS; } int grib_f_get_error_string__(int* err, char* buf, int len){ From 9f5183c3023593dd498782a3d95e9baf47525c64 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 5 Mar 2021 12:25:16 +0000 Subject: [PATCH 369/683] Definitions: clean up --- definitions/grib1/local.214.1.def | 17 ++---- definitions/grib1/local.214.244.def | 68 ++++++++++-------------- definitions/grib1/local.214.245.def | 23 +++----- definitions/grib1/local.54.def | 3 -- definitions/grib1/local_no_mars.98.1.def | 8 +-- definitions/grib1/predefined_grid.def | 6 +-- definitions/grib1/section.2.def | 15 ++---- 7 files changed, 49 insertions(+), 91 deletions(-) diff --git a/definitions/grib1/local.214.1.def b/definitions/grib1/local.214.1.def index 092bf992a..feaede42a 100644 --- a/definitions/grib1/local.214.1.def +++ b/definitions/grib1/local.214.1.def @@ -1,10 +1,5 @@ # (C) Copyright 2005- ECMWF. -# START 1/local.98.1 ---------------------------------------------------------------------- -# LOCAL 98 1 -# -# localDefinitionTemplate_001 -# --------------------------- # # Description Octet Code Ksec1 Count # ----------- ----- ---- ----- ----- @@ -21,31 +16,27 @@ template mars_labeling "grib1/mars_labeling.def"; unsigned[1] perturbationNumber : dump; -if(perturbationNumber != 0) -{ +if(perturbationNumber != 0) { alias number = perturbationNumber; } unsigned[1] numberOfForecastsInEnsemble : dump; pad padding_local1_1(1); -#1->2 +# 1->2 alias grib2LocalSectionPresent=present; constant grib2LocalSectionNumber=1; if (stepType is "instant" ) { if (numberOfForecastsInEnsemble!=0) { alias productDefinitionTemplateNumber=epsPoint; -} + } } else { if (numberOfForecastsInEnsemble!=0) { alias productDefinitionTemplateNumber=epsContinous; -} + } } # monthly mean #if (timeRangeIndicator==113) { #} - - -# END 1/local.98.1 ---------------------------------------------------------------------- diff --git a/definitions/grib1/local.214.244.def b/definitions/grib1/local.214.244.def index 20831ab81..3892cdf6c 100644 --- a/definitions/grib1/local.214.244.def +++ b/definitions/grib1/local.214.244.def @@ -1,22 +1,12 @@ # (C) Copyright 2005- ECMWF. -# START 1/local.98.244 ---------------------------------------------------------------------- -# LOCAL 214 98 244 # -#! -#! localDefinitionTemplate_244 -#! --------------------------- -#! -#! # SREPS Short-Range EPS information -#! -#! Last update: 20070223 -#! -#!Description -#!----------- -#! -#! -#! Compatibility with MARS -#! +# # SREPS Short-Range EPS information +# +# Last update: 20070223 +# +# Compatibility with MARS +# #localDefinitionNumber #Class #Type @@ -24,13 +14,13 @@ #experimentVersionNumber #Number #Total -#! +# #************_EXPERIMENT_************ #Experiment_Identifier_1 #Experiment_Identifier_2 #Sub-Experiment_Identifier_1 #Sub-Experiment_Identifier_2 -#! +# #************_PRODUCT_*************** #Original_CodeTable_2_Version_Number #Original_Parameter_Iden_(CodeTable2) @@ -38,16 +28,16 @@ #Original_Parameter_Identifier_2 #Product_Identifier_1 #Product_Identifier_2 -#! -#! Thresholds and Distributions -#! +# +# Thresholds and Distributions +# #Threshold_[Distribution]_(0=n,1=yes) #Threshold_[Distribution]_Units #At_least__[Distribut._Proportion_Of] #Less_Than_[To_Overall_Distribution] -#! +# #zeroForFutureProducts -#! +# #************_ENSEMBLE_************** #Number_Combination_Ensembles_(1=no) #Show_Combination_E._[2]_(0=no,1=yes) @@ -63,17 +53,17 @@ #Local_Number_Members_Used #Local_Number_Members_Possible #Local_Number_Members_Missing -#! +# #listMembersUsed - LIST - Local_Number_Members_Used #Used_Model_LBC #endlistMembersUsed - ENDLIST - listMembersUsed -#! +# #listMembersMissing - LIST - Local_Number_Members_Missing #Missing_Model_LBC #endlistMembersMissing - ENDLIST - listMembersMissing -#! -#! More than one Combination -#! +# +# More than one Combination +# #listEnsembleCombination2 - LIST - Show_Combination_E._[2]_(0=no,1=yes) #Ensemble_Combinat._Number_(0=no)_[2] #Ensemble_Identifier_1_[2] @@ -87,15 +77,15 @@ #Time_Range_One_[2] #Time_Range_Two_[2] #endlistEnsembleCombination2 - ENDLIST - listEnsembleCombination2 -#! +# #listMembersUsed_[2] - LIST - Local_Number_Members_Used_[2] #Used_Model_LBC_[2] #endlistMembersUsed_[2] - ENDLIST - listMembersUsed_[2] -#! +# #listMembersMissing_[2] - LIST - Local_Number_Members_Missing_[2] #Missing_Model_LBC_[2] #endlistMembersMissing_[2] - ENDLIST - listMembersMissing_[2] -#! +# #listEnsembleCombination3 - LIST - Show_Combination_E._[3]_(0=no,1=yes) #Ensemble_Combinat._Number_(0=no)_[3] #Ensemble_Identifier_1_[3] @@ -109,15 +99,15 @@ #Time_Range_One_[3] #Time_Range_Two_[3] #endlistEnsembleCombination3 - ENDLIST - listEnsembleCombination3 -#! +# #listMembersUsed_[3] - LIST - Local_Number_Members_Used_[3] #Used_Model_LBC_[3] - A4 #endlistMembersUsed_[3] - ENDLIST - listMembersUsed_[3] -#! +# #listMembersMissing_[3] - LIST - Local_Number_Members_Missing_[3] #Missing_Model_LBC_[3] - A4 #endlistMembersMissing_[3] - ENDLIST - listMembersMissing_[3] -#! +# #listEnsembleCombination4 - LIST - Show_Combination_E._[4]_(0=no,1=yes) #Ensemble_Combinat._Number_(0=no)_[4] #Ensemble_Identifier_1_[4] @@ -131,21 +121,21 @@ #Time_Range_One_[4] #Time_Range_Two_[4] #endlistEnsembleCombination4 - ENDLIST - listEnsembleCombination4 -#! +# #listMembersUsed_[4] - LIST - Local_Number_Members_Used_[4] #Used_Model_LBC_[4] #endlistMembersUsed_[4] - ENDLIST - listMembersUsed_[4] -#! +# #listMembersMissing_[4] - LIST - Local_Number_Members_Missing_[4] #Missing_Model_LBC_[4] #endlistMembersMissing_[4] - ENDLIST - listMembersMissing_[4] -#! -#! EXTRA INFORMATION like 191 +# +# EXTRA INFORMATION like 191 #*********_EXTRA_DATA_*************** #Extra_Data_FreeFormat_(0=none) #Data_Descriptor_Bytes - BYTES - Extra_Data_FreeFormat_(0=none) #padToAMultipleOf80Bytes - PADFROM n/a -#! +# template mars_labeling "grib1/mars_labeling.def"; diff --git a/definitions/grib1/local.214.245.def b/definitions/grib1/local.214.245.def index 6ed1e2f17..f2a62a3b3 100644 --- a/definitions/grib1/local.214.245.def +++ b/definitions/grib1/local.214.245.def @@ -1,20 +1,13 @@ # (C) Copyright 2005- ECMWF. -# START 1/local.98.245 ---------------------------------------------------------------------- -# LOCAL 214 98 245 +# # Members iformation of +# # SREPS Short-Range EPS +# +# Last update: 20070323 +# +#Description Octet Code Ksec1 Count +#----------- ----- ---- ----- ----- # -#! -#! localDefinitionTemplate_245 -#! --------------------------- -#! -#! # Members iformation of -#! # SREPS Short-Range EPS -#! -#! Last update: 20070323 -#! -#!Description Octet Code Ksec1 Count -#!----------- ----- ---- ----- ----- -#! #localDefinitionNumber 41 I1 37 - #class 42 I1 38 - #type 43 I1 39 - @@ -30,7 +23,7 @@ #Extra_Data_FreeFormat_(0=none) 100 I2 71 - #Data_Descriptor_Bytes 102 BYTES 72 Extra_Data_FreeFormat_(0=none) #padToAMultipleOf80Bytes 103 PADFROM n/a 80 -#! +# # template mars_labeling "grib1/mars_labeling.def"; diff --git a/definitions/grib1/local.54.def b/definitions/grib1/local.54.def index 1347570cf..83f63a306 100644 --- a/definitions/grib1/local.54.def +++ b/definitions/grib1/local.54.def @@ -1,15 +1,12 @@ # (C) Copyright 2005- ECMWF. label "CMC local definition (Canada)"; -# START 1/local.54 -------------------------------------------------------------------- -# LOCAL 54 # # CMC localDefinitionTemplate, based on KWBC # -------------------------------- # # Description Octet Code Ksec1 Count # ----------- ----- ---- ----- ----- -# # applicationIdentifier 41 # type 42 # identificationNumber 43 diff --git a/definitions/grib1/local_no_mars.98.1.def b/definitions/grib1/local_no_mars.98.1.def index ed418cee0..88771872d 100644 --- a/definitions/grib1/local_no_mars.98.1.def +++ b/definitions/grib1/local_no_mars.98.1.def @@ -1,8 +1,3 @@ -# START 1/local.98.1 ---------------------------------------------------------------------- -# LOCAL 98 1 -# -# localDefinitionTemplate_001 -# --------------------------- # # Description Octet Code Ksec1 Count # ----------- ----- ---- ----- ----- @@ -17,7 +12,6 @@ # constant GRIBEXSection1Problem = 52 - section1Length ; - unsigned[1] perturbationNumber : dump; alias number = perturbationNumber; @@ -25,7 +19,7 @@ unsigned[1] numberOfForecastsInEnsemble : dump; alias totalNumber=numberOfForecastsInEnsemble; pad padding_local1_1(1); -#1->2 +# 1->2 alias grib2LocalSectionPresent=present; constant grib2LocalSectionNumber=1; diff --git a/definitions/grib1/predefined_grid.def b/definitions/grib1/predefined_grid.def index 52298f859..03352f650 100644 --- a/definitions/grib1/predefined_grid.def +++ b/definitions/grib1/predefined_grid.def @@ -109,16 +109,15 @@ alias DjInDegrees = jDirectionIncrementInDegrees; alias numberOfPoints=numberOfDataPoints; #alias ls.valuesCount=numberOfValues; -# END 1/grid_definition.latitude_longitude_grid ---------------------------------------------------------------------- +# END 1/grid_definition.latitude_longitude_grid constant PVPresent = 0; constant PLPresent = 0; constant reducedGrid =0; # we always include the bitmap keys if a GDS is not present -# Number of unused bits at end of Section 3 constant numberOfUnusedBitsAtEndOfSection3 = 0; -# Table reference: +# Table reference: constant tableReference = 0; #position offsetBeforeBitmap; @@ -126,4 +125,3 @@ meta bitmap gds_not_present_bitmap( missingValue,numberOfValues, numberOfPoints, latitudeOfFirstGridPoint, Ni,numberOfUnusedBitsAtEndOfSection3) : read_only; - diff --git a/definitions/grib1/section.2.def b/definitions/grib1/section.2.def index 485898024..4bf1d5966 100644 --- a/definitions/grib1/section.2.def +++ b/definitions/grib1/section.2.def @@ -1,7 +1,6 @@ -# START grib1::section # SECTION 2, Grid description section -# Length of section +# Length of section position offsetSection2; section_length[3] section2Length ; meta section2Pointer section_pointer(offsetSection2,section2Length,2); @@ -10,7 +9,7 @@ alias radiusOfTheEarth=radius; alias radiusInMetres=radius; transient shapeOfTheEarth=0: hidden; #ECC-811 -# NV -- number of vertical coordinate parameters +# NV -- number of vertical coordinate parameters unsigned[1] numberOfVerticalCoordinateValues : dump ; constant neitherPresent = 255; @@ -18,18 +17,14 @@ constant neitherPresent = 255; alias NV = numberOfVerticalCoordinateValues; alias numberOfCoordinatesValues= numberOfVerticalCoordinateValues; -# PV -- location -# (octet number) - +# PV -- location (octet number) unsigned[1] pvlLocation = 255; -# Data representation type +# Data representation type codetable[1] dataRepresentationType 'grib1/6.table' = 0; meta gridDefinitionDescription codetable_title(dataRepresentationType); - -# Grid definition -# (according to data representation type - octet 6 above) +# Grid definition (according to data representation type - octet 6 above) alias isRotatedGrid=zero; if (dataRepresentationType < 192) { From 7b05c354f3bacbc817481e6b6a2b12abc9e9488d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 5 Mar 2021 18:55:36 +0000 Subject: [PATCH 370/683] Scripts: Fix order of keys --- definitions/add_params_from_tsv.pl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index 9cd1b6ab6..f79ea2044 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -82,7 +82,7 @@ my $pass = $ENV{'DB_PASS'} || 'unknown'; my $dbh = 0; my $centre = -3; # WMO table ID my $edition = 2; # GRIB edition 2 -my $contactId; # JIRA issue ID +my $contactId="ECC-1213"; # JIRA issue ID my $PARAMID_FILENAME = "paramId.def"; my $SHORTNAME_FILENAME = "shortName.def"; @@ -117,14 +117,15 @@ while (<>) { $lcount++; ($paramId, $shortName, $name, $units, - $discipline, $pcategory, $pnumber, $type1, $type2, - $scaledValue1, $scaleFactor1, $scaledValue2, $scaleFactor2, $stat, $aero, $constit, + $discipline, $pcategory, $pnumber, + $type1, $scaleFactor1, $scaledValue1, $type2, $scaleFactor2, $scaledValue2, + $stat, $aero, $constit, $typeGen, $localTV, $typeOfWLInt, $scaleFactorWL1, $scaledValueWL1, $scaleFactorWL2, $scaledValueWL2, $sourceSink ) = split(/\t/); die "Error: paramID \"$paramId\" is not an integer (input row=$lcount)!\n" if (!is_integer($paramId)); die "Error: shortName \"$shortName\" has an invalid character (input row=$lcount)!\n" if ($shortName =~ /[ '"]/); - die "Error: name \"$name\" should have uppercase 1st letter (input row=$lcount)!\n" if ($name !~ /^[A-Z]/); + die "Error: name \"$name\" should have uppercase 1st letter or digit (input row=$lcount)!\n" if ($name !~ /^[A-Z0-9]/); $units = "~" if ($units eq ""); $cfVarName = $shortName; From ed2db6179e4a3d0e31da513eed94561205ac4ca4 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 5 Mar 2021 19:09:41 +0000 Subject: [PATCH 371/683] ECC-1213: GRIB: New and updated parameters for CARRA/CERRA, bunch 3 (New params) --- definitions/grib2/cfVarName.def | 64 +++++++++++++++++++++++++++++++++ definitions/grib2/name.def | 64 +++++++++++++++++++++++++++++++++ definitions/grib2/paramId.def | 64 +++++++++++++++++++++++++++++++++ definitions/grib2/shortName.def | 64 +++++++++++++++++++++++++++++++++ definitions/grib2/units.def | 64 +++++++++++++++++++++++++++++++++ 5 files changed, 320 insertions(+) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 2607aa71a..af2edc892 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -1115,6 +1115,24 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } +#Time integral of snow evaporation flux +'tisef' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of evapotranspiration flux +'tietrf' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 39 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #Cross sectional area of flow in channel 'chcross' = { discipline = 1 ; @@ -1744,6 +1762,52 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } +#10 metre eastward wind gust since previous post-processing +'efg10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#10 metre northward wind gust since previous post-processing +'nfg10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Fog +'fog' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 50 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + } +#Sea ice surface temperature +'sist' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 255 ; + } +#Snow on ice total depth +'sitd' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 255 ; + } #Universal thermal climate index 'utci' = { discipline = 20 ; diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index 422f0e083..9ffe145be 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -1115,6 +1115,24 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } +#Time integral of snow evaporation flux +'Time integral of snow evaporation flux' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of evapotranspiration flux +'Time integral of evapotranspiration flux' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 39 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #Cross sectional area of flow in channel 'Cross sectional area of flow in channel' = { discipline = 1 ; @@ -1744,6 +1762,52 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } +#10 metre eastward wind gust since previous post-processing +'10 metre eastward wind gust since previous post-processing' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#10 metre northward wind gust since previous post-processing +'10 metre northward wind gust since previous post-processing' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Fog +'Fog' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 50 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + } +#Sea ice surface temperature +'Sea ice surface temperature' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 255 ; + } +#Snow on ice total depth +'Snow on ice total depth' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 255 ; + } #Universal thermal climate index 'Universal thermal climate index' = { discipline = 20 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index 88f82eff5..866352e2d 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -1115,6 +1115,24 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } +#Time integral of snow evaporation flux +'235072' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of evapotranspiration flux +'235073' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 39 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #Cross sectional area of flow in channel '240011' = { discipline = 1 ; @@ -1744,6 +1762,52 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } +#10 metre eastward wind gust since previous post-processing +'260646' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#10 metre northward wind gust since previous post-processing +'260647' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Fog +'260648' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 50 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + } +#Sea ice surface temperature +'260649' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 255 ; + } +#Snow on ice total depth +'260650' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 255 ; + } #Universal thermal climate index '261001' = { discipline = 20 ; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 65a7ade79..5ef91dae3 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -1115,6 +1115,24 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } +#Time integral of snow evaporation flux +'tisef' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of evapotranspiration flux +'tietrf' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 39 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #Cross sectional area of flow in channel 'chcross' = { discipline = 1 ; @@ -1744,6 +1762,52 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } +#10 metre eastward wind gust since previous post-processing +'10efg' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#10 metre northward wind gust since previous post-processing +'10nfg' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Fog +'fog' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 50 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + } +#Sea ice surface temperature +'sist' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 255 ; + } +#Snow on ice total depth +'sitd' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 255 ; + } #Universal thermal climate index 'utci' = { discipline = 20 ; diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index c0eb7d378..984e45590 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -1115,6 +1115,24 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } +#Time integral of snow evaporation flux +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Time integral of evapotranspiration flux +'kg m**-2' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 39 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } #Cross sectional area of flow in channel 'm**2' = { discipline = 1 ; @@ -1744,6 +1762,52 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } +#10 metre eastward wind gust since previous post-processing +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 23 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#10 metre northward wind gust since previous post-processing +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 24 ; + typeOfFirstFixedSurface = 103 ; + typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Fog +'%' = { + discipline = 0 ; + parameterCategory = 6 ; + parameterNumber = 50 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + } +#Sea ice surface temperature +'K' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 8 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 255 ; + } +#Snow on ice total depth +'m' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 11 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 255 ; + } #Universal thermal climate index 'K' = { discipline = 20 ; From 469d0820d47668286c3ef67195f5e32449b7cdd7 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 5 Mar 2021 21:58:00 +0000 Subject: [PATCH 372/683] ECC-1213: Temporary fix for test (174 needs to be mapped) --- tests/grib_levtype.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/grib_levtype.sh b/tests/grib_levtype.sh index 35ea7952f..fcbfd8242 100755 --- a/tests/grib_levtype.sh +++ b/tests/grib_levtype.sh @@ -24,6 +24,7 @@ latestOfficial=`${tools_dir}/grib_get -p tablesVersionLatestOfficial $sample2` # These level types are S2S ocean parameters and are dealt with differently (See products_s2s.def) exclude="20 160 169" +exclude="$exclude 174" ### TODO. See ECC-1213 paramId_file_wmo="$ECCODES_DEFINITION_PATH/grib2/paramId.def" paramId_file_ecm="$ECCODES_DEFINITION_PATH/grib2/localConcepts/ecmf/paramId.def" From 81ed1c3e7cfa1e7e410321427dfeba44c6394fab Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 5 Mar 2021 22:19:06 +0000 Subject: [PATCH 373/683] ECC-1213: Mapping for mars.levtype added (when typeOfFirstFixedSurface=174) --- definitions/grib2/tables/15/4.5.table | 2 +- definitions/grib2/tables/16/4.5.table | 2 +- definitions/grib2/tables/17/4.5.table | 2 +- definitions/grib2/tables/18/4.5.table | 2 +- definitions/grib2/tables/19/4.5.table | 2 +- definitions/grib2/tables/20/4.5.table | 2 +- definitions/grib2/tables/21/4.5.table | 2 +- definitions/grib2/tables/22/4.5.table | 2 +- definitions/grib2/tables/23/4.5.table | 2 +- definitions/grib2/tables/24/4.5.table | 2 +- definitions/grib2/tables/25/4.5.table | 2 +- definitions/grib2/tables/26/4.5.table | 2 +- definitions/grib2/tables/27/4.5.table | 2 +- tests/grib_levtype.sh | 1 - 14 files changed, 13 insertions(+), 14 deletions(-) diff --git a/definitions/grib2/tables/15/4.5.table b/definitions/grib2/tables/15/4.5.table index 8a184f4f4..ffbb29d24 100644 --- a/definitions/grib2/tables/15/4.5.table +++ b/definitions/grib2/tables/15/4.5.table @@ -47,7 +47,7 @@ 167 167 Bottom of root zone # 168-173 Reserved # 168-169 Reserved -174 174 Top surface of ice on sea, lake or river +174 sfc Top surface of ice on sea, lake or river 175 175 Top surface of ice, under snow cover, on sea, lake or river 176 176 Bottom surface (underside) ice on sea, lake or river 177 sfc Deep soil (of indefinite depth) diff --git a/definitions/grib2/tables/16/4.5.table b/definitions/grib2/tables/16/4.5.table index 9cabf1f73..430724c6a 100644 --- a/definitions/grib2/tables/16/4.5.table +++ b/definitions/grib2/tables/16/4.5.table @@ -46,7 +46,7 @@ 166 166 Mixing layer (-) 167 167 Bottom of root zone (-) # 168-173 Reserved -174 174 Top surface of ice on sea, lake or river +174 sfc Top surface of ice on sea, lake or river 175 175 Top surface of ice, under snow cover, on sea, lake or river 176 176 Bottom surface (underside) ice on sea, lake or river 177 sfc Deep soil (of indefinite depth) diff --git a/definitions/grib2/tables/17/4.5.table b/definitions/grib2/tables/17/4.5.table index 2e2695aa5..8adeaba31 100644 --- a/definitions/grib2/tables/17/4.5.table +++ b/definitions/grib2/tables/17/4.5.table @@ -51,7 +51,7 @@ 166 166 Mixing layer (-) 167 167 Bottom of root zone (-) # 168-173 Reserved -174 174 Top surface of ice on sea, lake or river +174 sfc Top surface of ice on sea, lake or river 175 175 Top surface of ice, under snow cover, on sea, lake or river 176 176 Bottom surface (underside) ice on sea, lake or river 177 sfc Deep soil (of indefinite depth) diff --git a/definitions/grib2/tables/18/4.5.table b/definitions/grib2/tables/18/4.5.table index c14343e74..cb125eb68 100644 --- a/definitions/grib2/tables/18/4.5.table +++ b/definitions/grib2/tables/18/4.5.table @@ -56,7 +56,7 @@ 166 166 Mixing layer (-) 167 167 Bottom of root zone (-) # 168-173 Reserved -174 174 Top surface of ice on sea, lake or river +174 sfc Top surface of ice on sea, lake or river 175 175 Top surface of ice, under snow cover, on sea, lake or river 176 176 Bottom surface (underside) ice on sea, lake or river 177 sfc Deep soil (of indefinite depth) diff --git a/definitions/grib2/tables/19/4.5.table b/definitions/grib2/tables/19/4.5.table index c14343e74..cb125eb68 100644 --- a/definitions/grib2/tables/19/4.5.table +++ b/definitions/grib2/tables/19/4.5.table @@ -56,7 +56,7 @@ 166 166 Mixing layer (-) 167 167 Bottom of root zone (-) # 168-173 Reserved -174 174 Top surface of ice on sea, lake or river +174 sfc Top surface of ice on sea, lake or river 175 175 Top surface of ice, under snow cover, on sea, lake or river 176 176 Bottom surface (underside) ice on sea, lake or river 177 sfc Deep soil (of indefinite depth) diff --git a/definitions/grib2/tables/20/4.5.table b/definitions/grib2/tables/20/4.5.table index c14343e74..cb125eb68 100644 --- a/definitions/grib2/tables/20/4.5.table +++ b/definitions/grib2/tables/20/4.5.table @@ -56,7 +56,7 @@ 166 166 Mixing layer (-) 167 167 Bottom of root zone (-) # 168-173 Reserved -174 174 Top surface of ice on sea, lake or river +174 sfc Top surface of ice on sea, lake or river 175 175 Top surface of ice, under snow cover, on sea, lake or river 176 176 Bottom surface (underside) ice on sea, lake or river 177 sfc Deep soil (of indefinite depth) diff --git a/definitions/grib2/tables/21/4.5.table b/definitions/grib2/tables/21/4.5.table index c14343e74..cb125eb68 100644 --- a/definitions/grib2/tables/21/4.5.table +++ b/definitions/grib2/tables/21/4.5.table @@ -56,7 +56,7 @@ 166 166 Mixing layer (-) 167 167 Bottom of root zone (-) # 168-173 Reserved -174 174 Top surface of ice on sea, lake or river +174 sfc Top surface of ice on sea, lake or river 175 175 Top surface of ice, under snow cover, on sea, lake or river 176 176 Bottom surface (underside) ice on sea, lake or river 177 sfc Deep soil (of indefinite depth) diff --git a/definitions/grib2/tables/22/4.5.table b/definitions/grib2/tables/22/4.5.table index c14343e74..cb125eb68 100644 --- a/definitions/grib2/tables/22/4.5.table +++ b/definitions/grib2/tables/22/4.5.table @@ -56,7 +56,7 @@ 166 166 Mixing layer (-) 167 167 Bottom of root zone (-) # 168-173 Reserved -174 174 Top surface of ice on sea, lake or river +174 sfc Top surface of ice on sea, lake or river 175 175 Top surface of ice, under snow cover, on sea, lake or river 176 176 Bottom surface (underside) ice on sea, lake or river 177 sfc Deep soil (of indefinite depth) diff --git a/definitions/grib2/tables/23/4.5.table b/definitions/grib2/tables/23/4.5.table index 9bd1b8993..1ec7d7302 100644 --- a/definitions/grib2/tables/23/4.5.table +++ b/definitions/grib2/tables/23/4.5.table @@ -57,7 +57,7 @@ 166 166 Mixing layer (-) 167 167 Bottom of root zone (-) # 168-173 Reserved -174 174 Top surface of ice on sea, lake or river +174 sfc Top surface of ice on sea, lake or river 175 175 Top surface of ice, under snow cover, on sea, lake or river 176 176 Bottom surface (underside) ice on sea, lake or river 177 sfc Deep soil (of indefinite depth) diff --git a/definitions/grib2/tables/24/4.5.table b/definitions/grib2/tables/24/4.5.table index 97795d3cc..2918f8522 100644 --- a/definitions/grib2/tables/24/4.5.table +++ b/definitions/grib2/tables/24/4.5.table @@ -60,7 +60,7 @@ 169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) 170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) # 171-173 Reserved -174 174 Top surface of ice on sea, lake or river +174 sfc Top surface of ice on sea, lake or river 175 175 Top surface of ice, under snow cover, on sea, lake or river 176 176 Bottom surface (underside) ice on sea, lake or river 177 sfc Deep soil (of indefinite depth) diff --git a/definitions/grib2/tables/25/4.5.table b/definitions/grib2/tables/25/4.5.table index bf8473c40..417beff43 100644 --- a/definitions/grib2/tables/25/4.5.table +++ b/definitions/grib2/tables/25/4.5.table @@ -68,7 +68,7 @@ 169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) 170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) # 171-173 Reserved -174 174 Top surface of ice on sea, lake or river +174 sfc Top surface of ice on sea, lake or river 175 175 Top surface of ice, under snow cover, on sea, lake or river 176 176 Bottom surface (underside) ice on sea, lake or river 177 sfc Deep soil (of indefinite depth) diff --git a/definitions/grib2/tables/26/4.5.table b/definitions/grib2/tables/26/4.5.table index 3a9861bcb..33296bda5 100644 --- a/definitions/grib2/tables/26/4.5.table +++ b/definitions/grib2/tables/26/4.5.table @@ -70,7 +70,7 @@ 169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) 170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) # 171-173 Reserved -174 174 Top surface of ice on sea, lake or river +174 sfc Top surface of ice on sea, lake or river 175 175 Top surface of ice, under snow cover, on sea, lake or river 176 176 Bottom surface (underside) ice on sea, lake or river 177 sfc Deep soil (of indefinite depth) diff --git a/definitions/grib2/tables/27/4.5.table b/definitions/grib2/tables/27/4.5.table index 9d0ead333..9ecc6e3c0 100644 --- a/definitions/grib2/tables/27/4.5.table +++ b/definitions/grib2/tables/27/4.5.table @@ -70,7 +70,7 @@ 169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) 170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) # 171-173 Reserved -174 174 Top surface of ice on sea, lake or river +174 sfc Top surface of ice on sea, lake or river 175 175 Top surface of ice, under snow cover, on sea, lake or river 176 176 Bottom surface (underside) ice on sea, lake or river 177 sfc Deep soil (of indefinite depth) diff --git a/tests/grib_levtype.sh b/tests/grib_levtype.sh index fcbfd8242..35ea7952f 100755 --- a/tests/grib_levtype.sh +++ b/tests/grib_levtype.sh @@ -24,7 +24,6 @@ latestOfficial=`${tools_dir}/grib_get -p tablesVersionLatestOfficial $sample2` # These level types are S2S ocean parameters and are dealt with differently (See products_s2s.def) exclude="20 160 169" -exclude="$exclude 174" ### TODO. See ECC-1213 paramId_file_wmo="$ECCODES_DEFINITION_PATH/grib2/paramId.def" paramId_file_ecm="$ECCODES_DEFINITION_PATH/grib2/localConcepts/ecmf/paramId.def" From 082c75197fd49e94c1505b7a3654e2b8858834e6 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 5 Mar 2021 23:57:49 +0000 Subject: [PATCH 374/683] ECC-1213: Mapping for 162 and 166 (sfc) --- definitions/grib2/cfVarName.def | 62 +++++++++++++++++++++++++++ definitions/grib2/name.def | 62 +++++++++++++++++++++++++++ definitions/grib2/paramId.def | 62 +++++++++++++++++++++++++++ definitions/grib2/shortName.def | 62 +++++++++++++++++++++++++++ definitions/grib2/tables/10/4.5.table | 4 +- definitions/grib2/tables/11/4.5.table | 4 +- definitions/grib2/tables/12/4.5.table | 4 +- definitions/grib2/tables/13/4.5.table | 4 +- definitions/grib2/tables/14/4.5.table | 4 +- definitions/grib2/tables/15/4.5.table | 4 +- definitions/grib2/tables/16/4.5.table | 4 +- definitions/grib2/tables/17/4.5.table | 4 +- definitions/grib2/tables/18/4.5.table | 4 +- definitions/grib2/tables/19/4.5.table | 4 +- definitions/grib2/tables/20/4.5.table | 4 +- definitions/grib2/tables/21/4.5.table | 4 +- definitions/grib2/tables/22/4.5.table | 4 +- definitions/grib2/tables/23/4.5.table | 4 +- definitions/grib2/tables/24/4.5.table | 4 +- definitions/grib2/tables/25/4.5.table | 4 +- definitions/grib2/tables/26/4.5.table | 4 +- definitions/grib2/tables/27/4.5.table | 4 +- definitions/grib2/tables/8/4.5.table | 4 +- definitions/grib2/tables/9/4.5.table | 4 +- definitions/grib2/units.def | 62 +++++++++++++++++++++++++++ 25 files changed, 350 insertions(+), 40 deletions(-) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index af2edc892..df6e1660b 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -2002,6 +2002,68 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Lake depth +'dl' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 162 ; + } +#Lake mix-layer temperature +'lmlt' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 166 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake mix-layer depth +'lmld' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 166 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake bottom temperature +'lblt' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 162 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake total layer temperature +'ltlt' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 162 ; + } +#Lake shape factor +'lshf' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Lake ice temperature +'lict' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake ice depth +'licd' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 176 ; + } #100 metre U wind component 'u100' = { discipline = 0 ; diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index 9ffe145be..5edcc4a18 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -2002,6 +2002,68 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Lake depth +'Lake depth' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 162 ; + } +#Lake mix-layer temperature +'Lake mix-layer temperature' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 166 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake mix-layer depth +'Lake mix-layer depth' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 166 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake bottom temperature +'Lake bottom temperature' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 162 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake total layer temperature +'Lake total layer temperature' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 162 ; + } +#Lake shape factor +'Lake shape factor' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Lake ice temperature +'Lake ice temperature' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake ice depth +'Lake ice depth' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 176 ; + } #100 metre U wind component '100 metre U wind component' = { discipline = 0 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index 866352e2d..cfb62bc0f 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -2002,6 +2002,68 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Lake depth +'228007' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 162 ; + } +#Lake mix-layer temperature +'228008' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 166 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake mix-layer depth +'228009' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 166 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake bottom temperature +'228010' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 162 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake total layer temperature +'228011' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 162 ; + } +#Lake shape factor +'228012' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Lake ice temperature +'228013' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake ice depth +'228014' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 176 ; + } #100 metre U wind component '228246' = { discipline = 0 ; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 5ef91dae3..b95984767 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -2002,6 +2002,68 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Lake depth +'dl' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 162 ; + } +#Lake mix-layer temperature +'lmlt' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 166 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake mix-layer depth +'lmld' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 166 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake bottom temperature +'lblt' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 162 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake total layer temperature +'ltlt' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 162 ; + } +#Lake shape factor +'lshf' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Lake ice temperature +'lict' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake ice depth +'licd' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 176 ; + } #100 metre U wind component '100u' = { discipline = 0 ; diff --git a/definitions/grib2/tables/10/4.5.table b/definitions/grib2/tables/10/4.5.table index 5d45cc504..000e489c2 100644 --- a/definitions/grib2/tables/10/4.5.table +++ b/definitions/grib2/tables/10/4.5.table @@ -39,11 +39,11 @@ # 151-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom +162 sfc Lake or river bottom 163 163 Bottom of sediment layer 164 164 Bottom of thermally active sediment layer 165 165 Bottom of sediment layer penetrated by thermal wave -166 166 Mixing layer +166 sfc Mixing layer # 167-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/11/4.5.table b/definitions/grib2/tables/11/4.5.table index 5d45cc504..000e489c2 100644 --- a/definitions/grib2/tables/11/4.5.table +++ b/definitions/grib2/tables/11/4.5.table @@ -39,11 +39,11 @@ # 151-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom +162 sfc Lake or river bottom 163 163 Bottom of sediment layer 164 164 Bottom of thermally active sediment layer 165 165 Bottom of sediment layer penetrated by thermal wave -166 166 Mixing layer +166 sfc Mixing layer # 167-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/12/4.5.table b/definitions/grib2/tables/12/4.5.table index 5d45cc504..000e489c2 100644 --- a/definitions/grib2/tables/12/4.5.table +++ b/definitions/grib2/tables/12/4.5.table @@ -39,11 +39,11 @@ # 151-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom +162 sfc Lake or river bottom 163 163 Bottom of sediment layer 164 164 Bottom of thermally active sediment layer 165 165 Bottom of sediment layer penetrated by thermal wave -166 166 Mixing layer +166 sfc Mixing layer # 167-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/13/4.5.table b/definitions/grib2/tables/13/4.5.table index ee26c48d8..f7fb9b78e 100644 --- a/definitions/grib2/tables/13/4.5.table +++ b/definitions/grib2/tables/13/4.5.table @@ -39,11 +39,11 @@ # 151-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom +162 sfc Lake or river bottom 163 163 Bottom of sediment layer 164 164 Bottom of thermally active sediment layer 165 165 Bottom of sediment layer penetrated by thermal wave -166 166 Mixing layer +166 sfc Mixing layer 167 167 Bottom of root zone # 168-191 Reserved # 192-254 Reserved for local use diff --git a/definitions/grib2/tables/14/4.5.table b/definitions/grib2/tables/14/4.5.table index 541268ff8..00e7c29a6 100644 --- a/definitions/grib2/tables/14/4.5.table +++ b/definitions/grib2/tables/14/4.5.table @@ -39,11 +39,11 @@ # 151-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom +162 sfc Lake or river bottom 163 163 Bottom of sediment layer 164 164 Bottom of thermally active sediment layer 165 165 Bottom of sediment layer penetrated by thermal wave -166 166 Mixing layer +166 sfc Mixing layer 167 167 Bottom of root zone # 168-191 Reserved # 192-254 Reserved for local use diff --git a/definitions/grib2/tables/15/4.5.table b/definitions/grib2/tables/15/4.5.table index ffbb29d24..ead38f293 100644 --- a/definitions/grib2/tables/15/4.5.table +++ b/definitions/grib2/tables/15/4.5.table @@ -39,11 +39,11 @@ # 151-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom +162 sfc Lake or river bottom 163 163 Bottom of sediment layer 164 164 Bottom of thermally active sediment layer 165 165 Bottom of sediment layer penetrated by thermal wave -166 166 Mixing layer +166 sfc Mixing layer 167 167 Bottom of root zone # 168-173 Reserved # 168-169 Reserved diff --git a/definitions/grib2/tables/16/4.5.table b/definitions/grib2/tables/16/4.5.table index 430724c6a..694903142 100644 --- a/definitions/grib2/tables/16/4.5.table +++ b/definitions/grib2/tables/16/4.5.table @@ -39,11 +39,11 @@ # 151-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) +162 sfc Lake or river bottom (-) 163 163 Bottom of sediment layer (-) 164 164 Bottom of thermally active sediment layer (-) 165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) +166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) # 168-173 Reserved 174 sfc Top surface of ice on sea, lake or river diff --git a/definitions/grib2/tables/17/4.5.table b/definitions/grib2/tables/17/4.5.table index 8adeaba31..9356f833c 100644 --- a/definitions/grib2/tables/17/4.5.table +++ b/definitions/grib2/tables/17/4.5.table @@ -44,11 +44,11 @@ # 152-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) +162 sfc Lake or river bottom (-) 163 163 Bottom of sediment layer (-) 164 164 Bottom of thermally active sediment layer (-) 165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) +166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) # 168-173 Reserved 174 sfc Top surface of ice on sea, lake or river diff --git a/definitions/grib2/tables/18/4.5.table b/definitions/grib2/tables/18/4.5.table index cb125eb68..f0ccbeea2 100644 --- a/definitions/grib2/tables/18/4.5.table +++ b/definitions/grib2/tables/18/4.5.table @@ -49,11 +49,11 @@ # 152-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) +162 sfc Lake or river bottom (-) 163 163 Bottom of sediment layer (-) 164 164 Bottom of thermally active sediment layer (-) 165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) +166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) # 168-173 Reserved 174 sfc Top surface of ice on sea, lake or river diff --git a/definitions/grib2/tables/19/4.5.table b/definitions/grib2/tables/19/4.5.table index cb125eb68..f0ccbeea2 100644 --- a/definitions/grib2/tables/19/4.5.table +++ b/definitions/grib2/tables/19/4.5.table @@ -49,11 +49,11 @@ # 152-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) +162 sfc Lake or river bottom (-) 163 163 Bottom of sediment layer (-) 164 164 Bottom of thermally active sediment layer (-) 165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) +166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) # 168-173 Reserved 174 sfc Top surface of ice on sea, lake or river diff --git a/definitions/grib2/tables/20/4.5.table b/definitions/grib2/tables/20/4.5.table index cb125eb68..f0ccbeea2 100644 --- a/definitions/grib2/tables/20/4.5.table +++ b/definitions/grib2/tables/20/4.5.table @@ -49,11 +49,11 @@ # 152-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) +162 sfc Lake or river bottom (-) 163 163 Bottom of sediment layer (-) 164 164 Bottom of thermally active sediment layer (-) 165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) +166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) # 168-173 Reserved 174 sfc Top surface of ice on sea, lake or river diff --git a/definitions/grib2/tables/21/4.5.table b/definitions/grib2/tables/21/4.5.table index cb125eb68..f0ccbeea2 100644 --- a/definitions/grib2/tables/21/4.5.table +++ b/definitions/grib2/tables/21/4.5.table @@ -49,11 +49,11 @@ # 152-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) +162 sfc Lake or river bottom (-) 163 163 Bottom of sediment layer (-) 164 164 Bottom of thermally active sediment layer (-) 165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) +166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) # 168-173 Reserved 174 sfc Top surface of ice on sea, lake or river diff --git a/definitions/grib2/tables/22/4.5.table b/definitions/grib2/tables/22/4.5.table index cb125eb68..f0ccbeea2 100644 --- a/definitions/grib2/tables/22/4.5.table +++ b/definitions/grib2/tables/22/4.5.table @@ -49,11 +49,11 @@ # 152-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) +162 sfc Lake or river bottom (-) 163 163 Bottom of sediment layer (-) 164 164 Bottom of thermally active sediment layer (-) 165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) +166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) # 168-173 Reserved 174 sfc Top surface of ice on sea, lake or river diff --git a/definitions/grib2/tables/23/4.5.table b/definitions/grib2/tables/23/4.5.table index 1ec7d7302..63578bbf7 100644 --- a/definitions/grib2/tables/23/4.5.table +++ b/definitions/grib2/tables/23/4.5.table @@ -50,11 +50,11 @@ # 152-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) +162 sfc Lake or river bottom (-) 163 163 Bottom of sediment layer (-) 164 164 Bottom of thermally active sediment layer (-) 165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) +166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) # 168-173 Reserved 174 sfc Top surface of ice on sea, lake or river diff --git a/definitions/grib2/tables/24/4.5.table b/definitions/grib2/tables/24/4.5.table index 2918f8522..4506d11f8 100644 --- a/definitions/grib2/tables/24/4.5.table +++ b/definitions/grib2/tables/24/4.5.table @@ -50,11 +50,11 @@ # 152-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) +162 sfc Lake or river bottom (-) 163 163 Bottom of sediment layer (-) 164 164 Bottom of thermally active sediment layer (-) 165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) +166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) 168 168 Ocean model level (Numeric) 169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) diff --git a/definitions/grib2/tables/25/4.5.table b/definitions/grib2/tables/25/4.5.table index 417beff43..333587c61 100644 --- a/definitions/grib2/tables/25/4.5.table +++ b/definitions/grib2/tables/25/4.5.table @@ -58,11 +58,11 @@ # 153-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) +162 sfc Lake or river bottom (-) 163 163 Bottom of sediment layer (-) 164 164 Bottom of thermally active sediment layer (-) 165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) +166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) 168 168 Ocean model level (Numeric) 169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) diff --git a/definitions/grib2/tables/26/4.5.table b/definitions/grib2/tables/26/4.5.table index 33296bda5..aa1aae39a 100644 --- a/definitions/grib2/tables/26/4.5.table +++ b/definitions/grib2/tables/26/4.5.table @@ -60,11 +60,11 @@ # 153-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) +162 sfc Lake or river bottom (-) 163 163 Bottom of sediment layer (-) 164 164 Bottom of thermally active sediment layer (-) 165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) +166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) 168 168 Ocean model level (Numeric) 169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) diff --git a/definitions/grib2/tables/27/4.5.table b/definitions/grib2/tables/27/4.5.table index 9ecc6e3c0..022582edd 100644 --- a/definitions/grib2/tables/27/4.5.table +++ b/definitions/grib2/tables/27/4.5.table @@ -60,11 +60,11 @@ # 153-159 Reserved 160 160 Depth below sea level (m) 161 161 Depth below water surface (m) -162 162 Lake or river bottom (-) +162 sfc Lake or river bottom (-) 163 163 Bottom of sediment layer (-) 164 164 Bottom of thermally active sediment layer (-) 165 165 Bottom of sediment layer penetrated by thermal wave (-) -166 166 Mixing layer (-) +166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) 168 168 Ocean model level (Numeric) 169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) diff --git a/definitions/grib2/tables/8/4.5.table b/definitions/grib2/tables/8/4.5.table index 91aabb83c..886768d03 100644 --- a/definitions/grib2/tables/8/4.5.table +++ b/definitions/grib2/tables/8/4.5.table @@ -38,11 +38,11 @@ # 151-159 Reserved 160 160 Depth below sea level m 161 161 Depth below water surface (m) -162 162 Lake or river bottom +162 sfc Lake or river bottom 163 163 Bottom of sediment layer 164 164 Bottom of thermally active sediment layer 165 165 Bottom of sediment layer penetrated by thermal wave -166 166 Mixing layer +166 sfc Mixing layer # 167-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/9/4.5.table b/definitions/grib2/tables/9/4.5.table index 1f17bae8d..f4fd65331 100644 --- a/definitions/grib2/tables/9/4.5.table +++ b/definitions/grib2/tables/9/4.5.table @@ -38,11 +38,11 @@ # 151-159 Reserved 160 160 Depth below sea level m 161 161 Depth below water surface (m) -162 162 Lake or river bottom +162 sfc Lake or river bottom 163 163 Bottom of sediment layer 164 164 Bottom of thermally active sediment layer 165 165 Bottom of sediment layer penetrated by thermal wave -166 166 Mixing layer +166 sfc Mixing layer # 167-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index 984e45590..be6d40d81 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -2002,6 +2002,68 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Lake depth +'m' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 162 ; + } +#Lake mix-layer temperature +'K' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 166 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake mix-layer depth +'m' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 166 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake bottom temperature +'K' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 162 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake total layer temperature +'K' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 162 ; + } +#Lake shape factor +'dimensionless' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 10 ; + } +#Lake ice temperature +'K' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 255 ; + } +#Lake ice depth +'m' = { + discipline = 1 ; + parameterCategory = 2 ; + parameterNumber = 5 ; + typeOfFirstFixedSurface = 174 ; + typeOfSecondFixedSurface = 176 ; + } #100 metre U wind component 'm s**-1' = { discipline = 0 ; From 94f47727bceee050d150a18e951aad00a860d6c5 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 5 Mar 2021 23:59:08 +0000 Subject: [PATCH 375/683] ECC-1213: Legacy ECMWF local codings --- .../localConcepts/ecmf/cfVarName.legacy.def | 18 ++++++++++++++++++ .../grib2/localConcepts/ecmf/name.legacy.def | 18 ++++++++++++++++++ .../localConcepts/ecmf/paramId.legacy.def | 18 ++++++++++++++++++ .../localConcepts/ecmf/shortName.legacy.def | 18 ++++++++++++++++++ .../grib2/localConcepts/ecmf/units.legacy.def | 18 ++++++++++++++++++ 5 files changed, 90 insertions(+) diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def index 2610ce188..07e150c19 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def @@ -196,3 +196,21 @@ parameterCategory = 128 ; parameterNumber = 47 ; } +#Lake total layer temperature +'ltlt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; +} +#Lake mix-layer temperature +'lmlt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; +} +#Lake mix-layer depth +'lmld' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/name.legacy.def b/definitions/grib2/localConcepts/ecmf/name.legacy.def index e3cd3240b..b5ecf8218 100644 --- a/definitions/grib2/localConcepts/ecmf/name.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/name.legacy.def @@ -196,3 +196,21 @@ parameterCategory = 128 ; parameterNumber = 47 ; } +#Lake total layer temperature +'Lake total layer temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; +} +#Lake mix-layer temperature +'Lake mix-layer temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; +} +#Lake mix-layer depth +'Lake mix-layer depth' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def index 5bedd4ecc..0403257ac 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def @@ -196,3 +196,21 @@ parameterCategory = 128 ; parameterNumber = 47 ; } +#Lake total layer temperature +'228011' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; +} +#Lake mix-layer temperature +'228008' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; +} +#Lake mix-layer depth +'228009' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def index e5814e9b9..775ee78ad 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def @@ -196,3 +196,21 @@ parameterCategory = 128 ; parameterNumber = 47 ; } +#Lake total layer temperature +'ltlt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; +} +#Lake mix-layer temperature +'lmlt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; +} +#Lake mix-layer depth +'lmld' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/units.legacy.def b/definitions/grib2/localConcepts/ecmf/units.legacy.def index f38e5feca..882e81d8f 100644 --- a/definitions/grib2/localConcepts/ecmf/units.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/units.legacy.def @@ -196,3 +196,21 @@ parameterCategory = 128 ; parameterNumber = 47 ; } +#Lake total layer temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 11 ; +} +#Lake mix-layer temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 8 ; +} +#Lake mix-layer depth +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 9 ; +} From 6542f6a3778102e57615ee5fc097537f26a3982e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 6 Mar 2021 00:41:31 +0000 Subject: [PATCH 376/683] ECC-1213: Legacy ECMWF local codings --- .../localConcepts/ecmf/cfVarName.legacy.def | 30 +++++++++++++++++++ .../grib2/localConcepts/ecmf/name.legacy.def | 30 +++++++++++++++++++ .../localConcepts/ecmf/paramId.legacy.def | 30 +++++++++++++++++++ .../localConcepts/ecmf/shortName.legacy.def | 30 +++++++++++++++++++ .../grib2/localConcepts/ecmf/units.legacy.def | 30 +++++++++++++++++++ 5 files changed, 150 insertions(+) diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def index 07e150c19..c00dbfa57 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def @@ -214,3 +214,33 @@ parameterCategory = 228 ; parameterNumber = 9 ; } +#Lake bottom temperature +'lblt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; +} +#Lake shape factor +'lshf' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; +} +#Lake ice temperature +'lict' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; +} +#Lake ice total depth +'licd' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; +} +#Lake total depth +'dl' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/name.legacy.def b/definitions/grib2/localConcepts/ecmf/name.legacy.def index b5ecf8218..896e686de 100644 --- a/definitions/grib2/localConcepts/ecmf/name.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/name.legacy.def @@ -214,3 +214,33 @@ parameterCategory = 228 ; parameterNumber = 9 ; } +#Lake bottom temperature +'Lake bottom temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; +} +#Lake shape factor +'Lake shape factor' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; +} +#Lake ice temperature +'Lake ice temperature' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; +} +#Lake ice total depth +'Lake ice total depth' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; +} +#Lake total depth +'Lake total depth' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def index 0403257ac..157023879 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def @@ -214,3 +214,33 @@ parameterCategory = 228 ; parameterNumber = 9 ; } +#Lake bottom temperature +'228010' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; +} +#Lake shape factor +'228012' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; +} +#Lake ice temperature +'228013' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; +} +#Lake ice total depth +'228014' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; +} +#Lake total depth +'228007' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def index 775ee78ad..49d307711 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def @@ -214,3 +214,33 @@ parameterCategory = 228 ; parameterNumber = 9 ; } +#Lake bottom temperature +'lblt' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; +} +#Lake shape factor +'lshf' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; +} +#Lake ice temperature +'lict' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; +} +#Lake ice total depth +'licd' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; +} +#Lake total depth +'dl' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/units.legacy.def b/definitions/grib2/localConcepts/ecmf/units.legacy.def index 882e81d8f..8f3c45578 100644 --- a/definitions/grib2/localConcepts/ecmf/units.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/units.legacy.def @@ -214,3 +214,33 @@ parameterCategory = 228 ; parameterNumber = 9 ; } +#Lake bottom temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 10 ; +} +#Lake shape factor +'dimensionless' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 12 ; +} +#Lake ice temperature +'K' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 13 ; +} +#Lake ice total depth +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 14 ; +} +#Lake total depth +'m' = { + discipline = 192 ; + parameterCategory = 228 ; + parameterNumber = 7 ; +} From 4927246e60bec1f62ddca74c969499c43145040f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 6 Mar 2021 13:19:00 +0000 Subject: [PATCH 377/683] ECC-1213: Change long names --- definitions/grib1/localConcepts/ecmf/cfVarName.def | 6 +++--- definitions/grib1/localConcepts/ecmf/name.def | 12 ++++++------ definitions/grib1/localConcepts/ecmf/paramId.def | 6 +++--- definitions/grib1/localConcepts/ecmf/shortName.def | 6 +++--- definitions/grib1/localConcepts/ecmf/units.def | 6 +++--- definitions/grib2/cfVarName.def | 6 +++--- definitions/grib2/name.def | 12 ++++++------ definitions/grib2/paramId.def | 6 +++--- definitions/grib2/shortName.def | 6 +++--- definitions/grib2/units.def | 6 +++--- 10 files changed, 36 insertions(+), 36 deletions(-) diff --git a/definitions/grib1/localConcepts/ecmf/cfVarName.def b/definitions/grib1/localConcepts/ecmf/cfVarName.def index 40549c858..a195e9835 100644 --- a/definitions/grib1/localConcepts/ecmf/cfVarName.def +++ b/definitions/grib1/localConcepts/ecmf/cfVarName.def @@ -17174,7 +17174,7 @@ table2Version = 228 ; indicatorOfParameter = 6 ; } -#Lake depth +#Lake total depth 'dl' = { table2Version = 228 ; indicatorOfParameter = 7 ; @@ -17204,12 +17204,12 @@ table2Version = 228 ; indicatorOfParameter = 12 ; } -#Lake ice temperature +#Lake ice surface temperature 'lict' = { table2Version = 228 ; indicatorOfParameter = 13 ; } -#Lake ice depth +#Lake ice total depth 'licd' = { table2Version = 228 ; indicatorOfParameter = 14 ; diff --git a/definitions/grib1/localConcepts/ecmf/name.def b/definitions/grib1/localConcepts/ecmf/name.def index 7323f9fc5..309abf00a 100644 --- a/definitions/grib1/localConcepts/ecmf/name.def +++ b/definitions/grib1/localConcepts/ecmf/name.def @@ -17174,8 +17174,8 @@ table2Version = 228 ; indicatorOfParameter = 6 ; } -#Lake depth -'Lake depth' = { +#Lake total depth +'Lake total depth' = { table2Version = 228 ; indicatorOfParameter = 7 ; } @@ -17204,13 +17204,13 @@ table2Version = 228 ; indicatorOfParameter = 12 ; } -#Lake ice temperature -'Lake ice temperature' = { +#Lake ice surface temperature +'Lake ice surface temperature' = { table2Version = 228 ; indicatorOfParameter = 13 ; } -#Lake ice depth -'Lake ice depth' = { +#Lake ice total depth +'Lake ice total depth' = { table2Version = 228 ; indicatorOfParameter = 14 ; } diff --git a/definitions/grib1/localConcepts/ecmf/paramId.def b/definitions/grib1/localConcepts/ecmf/paramId.def index 8b2378233..ac2723118 100644 --- a/definitions/grib1/localConcepts/ecmf/paramId.def +++ b/definitions/grib1/localConcepts/ecmf/paramId.def @@ -17174,7 +17174,7 @@ table2Version = 228 ; indicatorOfParameter = 6 ; } -#Lake depth +#Lake total depth '228007' = { table2Version = 228 ; indicatorOfParameter = 7 ; @@ -17204,12 +17204,12 @@ table2Version = 228 ; indicatorOfParameter = 12 ; } -#Lake ice temperature +#Lake ice surface temperature '228013' = { table2Version = 228 ; indicatorOfParameter = 13 ; } -#Lake ice depth +#Lake ice total depth '228014' = { table2Version = 228 ; indicatorOfParameter = 14 ; diff --git a/definitions/grib1/localConcepts/ecmf/shortName.def b/definitions/grib1/localConcepts/ecmf/shortName.def index c6bbdf88d..993b1ce67 100644 --- a/definitions/grib1/localConcepts/ecmf/shortName.def +++ b/definitions/grib1/localConcepts/ecmf/shortName.def @@ -17174,7 +17174,7 @@ table2Version = 228 ; indicatorOfParameter = 6 ; } -#Lake depth +#Lake total depth 'dl' = { table2Version = 228 ; indicatorOfParameter = 7 ; @@ -17204,12 +17204,12 @@ table2Version = 228 ; indicatorOfParameter = 12 ; } -#Lake ice temperature +#Lake ice surface temperature 'lict' = { table2Version = 228 ; indicatorOfParameter = 13 ; } -#Lake ice depth +#Lake ice total depth 'licd' = { table2Version = 228 ; indicatorOfParameter = 14 ; diff --git a/definitions/grib1/localConcepts/ecmf/units.def b/definitions/grib1/localConcepts/ecmf/units.def index 609f3d1cd..288b63890 100644 --- a/definitions/grib1/localConcepts/ecmf/units.def +++ b/definitions/grib1/localConcepts/ecmf/units.def @@ -17174,7 +17174,7 @@ table2Version = 228 ; indicatorOfParameter = 6 ; } -#Lake depth +#Lake total depth 'm' = { table2Version = 228 ; indicatorOfParameter = 7 ; @@ -17204,12 +17204,12 @@ table2Version = 228 ; indicatorOfParameter = 12 ; } -#Lake ice temperature +#Lake ice surface temperature 'K' = { table2Version = 228 ; indicatorOfParameter = 13 ; } -#Lake ice depth +#Lake ice total depth 'm' = { table2Version = 228 ; indicatorOfParameter = 14 ; diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index df6e1660b..0cdde2288 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -2002,7 +2002,7 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } -#Lake depth +#Lake total depth 'dl' = { discipline = 1 ; parameterCategory = 2 ; @@ -2048,7 +2048,7 @@ parameterCategory = 2 ; parameterNumber = 10 ; } -#Lake ice temperature +#Lake ice surface temperature 'lict' = { discipline = 1 ; parameterCategory = 2 ; @@ -2056,7 +2056,7 @@ typeOfFirstFixedSurface = 174 ; typeOfSecondFixedSurface = 255 ; } -#Lake ice depth +#Lake ice total depth 'licd' = { discipline = 1 ; parameterCategory = 2 ; diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index 5edcc4a18..f495f19ab 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -2002,8 +2002,8 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } -#Lake depth -'Lake depth' = { +#Lake total depth +'Lake total depth' = { discipline = 1 ; parameterCategory = 2 ; parameterNumber = 0 ; @@ -2048,16 +2048,16 @@ parameterCategory = 2 ; parameterNumber = 10 ; } -#Lake ice temperature -'Lake ice temperature' = { +#Lake ice surface temperature +'Lake ice surface temperature' = { discipline = 1 ; parameterCategory = 2 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 174 ; typeOfSecondFixedSurface = 255 ; } -#Lake ice depth -'Lake ice depth' = { +#Lake ice total depth +'Lake ice total depth' = { discipline = 1 ; parameterCategory = 2 ; parameterNumber = 5 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index cfb62bc0f..c6aceaa38 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -2002,7 +2002,7 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } -#Lake depth +#Lake total depth '228007' = { discipline = 1 ; parameterCategory = 2 ; @@ -2048,7 +2048,7 @@ parameterCategory = 2 ; parameterNumber = 10 ; } -#Lake ice temperature +#Lake ice surface temperature '228013' = { discipline = 1 ; parameterCategory = 2 ; @@ -2056,7 +2056,7 @@ typeOfFirstFixedSurface = 174 ; typeOfSecondFixedSurface = 255 ; } -#Lake ice depth +#Lake ice total depth '228014' = { discipline = 1 ; parameterCategory = 2 ; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index b95984767..82c4991c3 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -2002,7 +2002,7 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } -#Lake depth +#Lake total depth 'dl' = { discipline = 1 ; parameterCategory = 2 ; @@ -2048,7 +2048,7 @@ parameterCategory = 2 ; parameterNumber = 10 ; } -#Lake ice temperature +#Lake ice surface temperature 'lict' = { discipline = 1 ; parameterCategory = 2 ; @@ -2056,7 +2056,7 @@ typeOfFirstFixedSurface = 174 ; typeOfSecondFixedSurface = 255 ; } -#Lake ice depth +#Lake ice total depth 'licd' = { discipline = 1 ; parameterCategory = 2 ; diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index be6d40d81..43c271ab8 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -2002,7 +2002,7 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } -#Lake depth +#Lake total depth 'm' = { discipline = 1 ; parameterCategory = 2 ; @@ -2048,7 +2048,7 @@ parameterCategory = 2 ; parameterNumber = 10 ; } -#Lake ice temperature +#Lake ice surface temperature 'K' = { discipline = 1 ; parameterCategory = 2 ; @@ -2056,7 +2056,7 @@ typeOfFirstFixedSurface = 174 ; typeOfSecondFixedSurface = 255 ; } -#Lake ice depth +#Lake ice total depth 'm' = { discipline = 1 ; parameterCategory = 2 ; From db9138155878eaa84a64d107ceac90196e2c7cb5 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 6 Mar 2021 13:49:57 +0000 Subject: [PATCH 378/683] Scripts: Name of env. vars --- definitions/add_params_from_tsv.pl | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index f79ea2044..52d2c8936 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -51,8 +51,8 @@ use Time::localtime; $ARGV[0] or die "USAGE: $0 input.tsv\n"; -my $WRITE_TO_FILES = 0; -my $WRITE_TO_PARAMDB = 0; +my $WRITE_TO_FILES = 0; +my $WRITE_TO_PARAMDB = 1; # Be careful. Fill in $contactId before proceeding my ($paramId, $shortName, $name, $units, $cfVarName); my ($discipline, $pcategory, $pnumber, $type1, $type2, $scaledValue1, $scaleFactor1, $scaledValue2, $scaleFactor2); @@ -75,14 +75,14 @@ my %key_to_attrib_map = ( 'constituentType' => 40, 'aerosolType' => 46 ); -my $db = "param"; -my $host = $ENV{'DB_HOST'} || 'unknown'; -my $user = $ENV{'DB_USER'} || 'unknown'; -my $pass = $ENV{'DB_PASS'} || 'unknown'; -my $dbh = 0; +my $db = "param"; +my $host = $ENV{'PARAM_DB_HOST'} || 'unknown'; +my $user = $ENV{'PARAM_DB_USER'} || 'unknown'; +my $pass = $ENV{'PARAM_DB_PASS'} || 'unknown'; +my $dbh = 0; my $centre = -3; # WMO table ID my $edition = 2; # GRIB edition 2 -my $contactId="ECC-1213"; # JIRA issue ID +my $contactId; # JIRA issue ID my $PARAMID_FILENAME = "paramId.def"; my $SHORTNAME_FILENAME = "shortName.def"; From ecd45c61c1683a88976cc5496721cd82ba37f6bf Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 6 Mar 2021 13:51:06 +0000 Subject: [PATCH 379/683] ECC-1213: Local ECMWF codings --- .../grib2/localConcepts/ecmf/cfVarName.def | 48 ------------------- definitions/grib2/localConcepts/ecmf/name.def | 48 ------------------- .../grib2/localConcepts/ecmf/paramId.def | 48 ------------------- .../grib2/localConcepts/ecmf/shortName.def | 48 ------------------- .../grib2/localConcepts/ecmf/units.def | 48 ------------------- 5 files changed, 240 deletions(-) diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.def b/definitions/grib2/localConcepts/ecmf/cfVarName.def index 7ea1a5e30..6c6570bb4 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.def @@ -21788,54 +21788,6 @@ parameterCategory = 228 ; parameterNumber = 6 ; } -#Lake depth -'dl' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; - } -#Lake mix-layer temperature -'lmlt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; - } -#Lake mix-layer depth -'lmld' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; - } -#Lake bottom temperature -'lblt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; - } -#Lake total layer temperature -'ltlt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; - } -#Lake shape factor -'lshf' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; - } -#Lake ice temperature -'lict' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; - } -#Lake ice depth -'licd' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; - } #Minimum vertical gradient of refractivity inside trapping layer 'dndzn' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/name.def b/definitions/grib2/localConcepts/ecmf/name.def index db16a2356..f54c9b6f3 100644 --- a/definitions/grib2/localConcepts/ecmf/name.def +++ b/definitions/grib2/localConcepts/ecmf/name.def @@ -21788,54 +21788,6 @@ parameterCategory = 228 ; parameterNumber = 6 ; } -#Lake depth -'Lake depth' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; - } -#Lake mix-layer temperature -'Lake mix-layer temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; - } -#Lake mix-layer depth -'Lake mix-layer depth' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; - } -#Lake bottom temperature -'Lake bottom temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; - } -#Lake total layer temperature -'Lake total layer temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; - } -#Lake shape factor -'Lake shape factor' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; - } -#Lake ice temperature -'Lake ice temperature' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; - } -#Lake ice depth -'Lake ice depth' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; - } #Minimum vertical gradient of refractivity inside trapping layer 'Minimum vertical gradient of refractivity inside trapping layer' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/paramId.def b/definitions/grib2/localConcepts/ecmf/paramId.def index 3e8677989..7ce88f622 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.def @@ -21788,54 +21788,6 @@ parameterCategory = 228 ; parameterNumber = 6 ; } -#Lake depth -'228007' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; - } -#Lake mix-layer temperature -'228008' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; - } -#Lake mix-layer depth -'228009' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; - } -#Lake bottom temperature -'228010' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; - } -#Lake total layer temperature -'228011' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; - } -#Lake shape factor -'228012' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; - } -#Lake ice temperature -'228013' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; - } -#Lake ice depth -'228014' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; - } #Minimum vertical gradient of refractivity inside trapping layer '228015' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/shortName.def b/definitions/grib2/localConcepts/ecmf/shortName.def index 59357f03e..78aa64617 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.def @@ -21788,54 +21788,6 @@ parameterCategory = 228 ; parameterNumber = 6 ; } -#Lake depth -'dl' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; - } -#Lake mix-layer temperature -'lmlt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; - } -#Lake mix-layer depth -'lmld' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; - } -#Lake bottom temperature -'lblt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; - } -#Lake total layer temperature -'ltlt' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; - } -#Lake shape factor -'lshf' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; - } -#Lake ice temperature -'lict' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; - } -#Lake ice depth -'licd' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; - } #Minimum vertical gradient of refractivity inside trapping layer 'dndzn' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/units.def b/definitions/grib2/localConcepts/ecmf/units.def index 5641f6f77..6c45e71ed 100644 --- a/definitions/grib2/localConcepts/ecmf/units.def +++ b/definitions/grib2/localConcepts/ecmf/units.def @@ -21788,54 +21788,6 @@ parameterCategory = 228 ; parameterNumber = 6 ; } -#Lake depth -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 7 ; - } -#Lake mix-layer temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 8 ; - } -#Lake mix-layer depth -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 9 ; - } -#Lake bottom temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 10 ; - } -#Lake total layer temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 11 ; - } -#Lake shape factor -'dimensionless' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 12 ; - } -#Lake ice temperature -'K' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 13 ; - } -#Lake ice depth -'m' = { - discipline = 192 ; - parameterCategory = 228 ; - parameterNumber = 14 ; - } #Minimum vertical gradient of refractivity inside trapping layer 'm**-1' = { discipline = 192 ; From 118c44544abe26ddb4d108fe136f0b9b4e4f3cde Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 6 Mar 2021 14:58:28 +0000 Subject: [PATCH 380/683] ECC-1213: Change long names --- definitions/grib1/2.98.228.table | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/definitions/grib1/2.98.228.table b/definitions/grib1/2.98.228.table index c93451d40..fe5d65b41 100644 --- a/definitions/grib1/2.98.228.table +++ b/definitions/grib1/2.98.228.table @@ -5,14 +5,14 @@ 4 mean2t MEAN2T Mean temperature at 2 metres (K) 5 mean10ws MEAN10WS Mean of 10 metre wind speed (m s**-1) 6 meantcc MEANTCC Mean total cloud cover (0 - 1) -7 dl DL Lake depth (m) +7 dl DL Lake total depth (m) 8 lmlt LMLT Lake mix-layer temperature (K) 9 lmld LMLD Lake mix-layer depth (m) 10 lblt LBLT Lake bottom temperature (K) 11 ltlt LTLT Lake total layer temperature (K) 12 lshf LSHF Lake shape factor (dimensionless) -13 lict LICT Lake ice temperature (K) -14 licd LICD Lake ice depth (m) +13 lict LICT Lake ice surface temperature (K) +14 licd LICD Lake ice total depth (m) 15 dndzn DNDZN Minimum vertical gradient of refractivity inside trapping layer (m**-1) 16 dndza DNDZA Mean vertical gradient of refractivity inside trapping layer (m**-1) 17 dctb DCTB Duct base height (m) From e5ad647e9b70898a21352bbd83e089ab96760f63 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 6 Mar 2021 14:59:07 +0000 Subject: [PATCH 381/683] ECC-1213: Change long names --- definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def | 2 +- definitions/grib2/localConcepts/ecmf/name.legacy.def | 4 ++-- definitions/grib2/localConcepts/ecmf/paramId.legacy.def | 2 +- definitions/grib2/localConcepts/ecmf/shortName.legacy.def | 2 +- definitions/grib2/localConcepts/ecmf/units.legacy.def | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def index c00dbfa57..7480e3818 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def @@ -226,7 +226,7 @@ parameterCategory = 228 ; parameterNumber = 12 ; } -#Lake ice temperature +#Lake ice surface temperature 'lict' = { discipline = 192 ; parameterCategory = 228 ; diff --git a/definitions/grib2/localConcepts/ecmf/name.legacy.def b/definitions/grib2/localConcepts/ecmf/name.legacy.def index 896e686de..a12ea46b8 100644 --- a/definitions/grib2/localConcepts/ecmf/name.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/name.legacy.def @@ -226,8 +226,8 @@ parameterCategory = 228 ; parameterNumber = 12 ; } -#Lake ice temperature -'Lake ice temperature' = { +#Lake ice surface temperature +'Lake ice surface temperature' = { discipline = 192 ; parameterCategory = 228 ; parameterNumber = 13 ; diff --git a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def index 157023879..5ac473991 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def @@ -226,7 +226,7 @@ parameterCategory = 228 ; parameterNumber = 12 ; } -#Lake ice temperature +#Lake ice surface temperature '228013' = { discipline = 192 ; parameterCategory = 228 ; diff --git a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def index 49d307711..e99a753e2 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def @@ -226,7 +226,7 @@ parameterCategory = 228 ; parameterNumber = 12 ; } -#Lake ice temperature +#Lake ice surface temperature 'lict' = { discipline = 192 ; parameterCategory = 228 ; diff --git a/definitions/grib2/localConcepts/ecmf/units.legacy.def b/definitions/grib2/localConcepts/ecmf/units.legacy.def index 8f3c45578..789a79d13 100644 --- a/definitions/grib2/localConcepts/ecmf/units.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/units.legacy.def @@ -226,7 +226,7 @@ parameterCategory = 228 ; parameterNumber = 12 ; } -#Lake ice temperature +#Lake ice surface temperature 'K' = { discipline = 192 ; parameterCategory = 228 ; From ad00a7fda9c223a0cb7eaea794e532f84d313868 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 8 Mar 2021 11:19:17 +0000 Subject: [PATCH 382/683] ECC-1214 adding new entries to the postprocessing concept --- definitions/grib2/local.98.41.def | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/definitions/grib2/local.98.41.def b/definitions/grib2/local.98.41.def index da2ecc50c..d502299f2 100644 --- a/definitions/grib2/local.98.41.def +++ b/definitions/grib2/local.98.41.def @@ -51,6 +51,11 @@ concept efas_post_proc { "htessel_eric" = { typeOfPostProcessing=102; } "htessel_camaflood" = { typeOfPostProcessing=103; } "epic" = { typeOfPostProcessing=152; } + "jules_mrm" = { typeOfPostProcessing=201; } + "htessel_mrm" = { typeOfPostProcessing=202; } + "mhm_mrm" = { typeOfPostProcessing=203; } + "pcrg_mrm" = { typeOfPostProcessing=204; } + "meteogrid" = { typeOfPostProcessing=205; } "unknown" = { dummy = 1; } } : hidden; From 0b25def059d1e17b103de682f9937ed7e56ad070 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 9 Mar 2021 15:26:13 +0000 Subject: [PATCH 383/683] ECC-779: error messages should go to stderr --- tools/grib_dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/grib_dump.c b/tools/grib_dump.c index fc358d726..138acbb91 100644 --- a/tools/grib_dump.c +++ b/tools/grib_dump.c @@ -69,7 +69,7 @@ int grib_tool_init(grib_runtime_options* options) options->dump_mode = "default"; if (opt > 1) { - printf("%s: simultaneous j/O/D options not allowed\n", tool_name); + fprintf(stderr, "%s: simultaneous j/O/D options not allowed\n", tool_name); exit(1); } From 6f093b4f9e20156fd57b8e75518c7c564021159d Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Tue, 9 Mar 2021 16:10:09 +0000 Subject: [PATCH 384/683] working on mars indexing for new local time template --- definitions/grib2/section.4.def | 1 + definitions/grib2/template.4.localtime.def | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/definitions/grib2/section.4.def b/definitions/grib2/section.4.def index ddb13ff57..7e6ebccac 100644 --- a/definitions/grib2/section.4.def +++ b/definitions/grib2/section.4.def @@ -1,6 +1,7 @@ # (C) Copyright 2005- ECMWF. transient timeRangeIndicator=0 : no_copy,hidden; +transient is_localtime=0 : no_copy,hidden; position offsetSection4; section_length[4] section4Length ; diff --git a/definitions/grib2/template.4.localtime.def b/definitions/grib2/template.4.localtime.def index fd0a57aa2..c910f4200 100644 --- a/definitions/grib2/template.4.localtime.def +++ b/definitions/grib2/template.4.localtime.def @@ -1,5 +1,7 @@ # (C) Copyright 2005- ECMWF. +transient is_localtime=1; + # Method used to calculate the field value at the local time specified in section 1 codetable[1] localTimeMethod ('4.248.table',masterDir,localDir)=255 : dump; @@ -41,3 +43,18 @@ localTimeForecastList list(numberOfForecastsUsedInLocalTime) # Time increment between successive fields, in units defined by the previous octet unsigned[4] timeIncrement=0 : dump; } + +if (numberOfForecastsUsedInLocalTime == 1) { + meta dateOfForecastUsedInLocalTime g2date(yearOfForecastUsedInLocalTime, monthOfForecastUsedInLocalTime, dayOfForecastUsedInLocalTime) : dump; + meta timeOfForecastUsedInLocalTime g2time(hourOfForecastUsedInLocalTime, minuteOfForecastUsedInLocalTime, secondOfForecastUsedInLocalTime) : dump; + + transient stepOfForecastUsedInLocalTime = forecastTime : dump; + + # need something here to compute the diff between date time step of *OfForecastUsedInLocalTime and the local time defined in section 1 (dataDate and dataTime) + # this would be the offset (step) used to index data in mars as mars.step + #meta stepOfLocalTime XXXXXX() : hidden; + + alias mars.date = dateOfForecastUsedInLocalTime : dump; + alias mars.time = timeOfForecastUsedInLocalTime : dump; + alias mars.step = stepOfLocalTime : dump; +} From 16fc6045da65b31b06071fa09cad31b713654934 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Tue, 9 Mar 2021 16:39:24 +0000 Subject: [PATCH 385/683] corrected g2time to time and added stuff to compute stepOfLocalTime --- definitions/grib2/template.4.localtime.def | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/definitions/grib2/template.4.localtime.def b/definitions/grib2/template.4.localtime.def index c910f4200..d6426ad3a 100644 --- a/definitions/grib2/template.4.localtime.def +++ b/definitions/grib2/template.4.localtime.def @@ -46,15 +46,18 @@ localTimeForecastList list(numberOfForecastsUsedInLocalTime) if (numberOfForecastsUsedInLocalTime == 1) { meta dateOfForecastUsedInLocalTime g2date(yearOfForecastUsedInLocalTime, monthOfForecastUsedInLocalTime, dayOfForecastUsedInLocalTime) : dump; - meta timeOfForecastUsedInLocalTime g2time(hourOfForecastUsedInLocalTime, minuteOfForecastUsedInLocalTime, secondOfForecastUsedInLocalTime) : dump; + meta timeOfForecastUsedInLocalTime time(hourOfForecastUsedInLocalTime, minuteOfForecastUsedInLocalTime, secondOfForecastUsedInLocalTime) : dump; - transient stepOfForecastUsedInLocalTime = forecastTime : dump; + #transient stepOfForecastUsedInLocalTime = forecastTime : dump; - # need something here to compute the diff between date time step of *OfForecastUsedInLocalTime and the local time defined in section 1 (dataDate and dataTime) + # need something here to compute the diff between date time of *OfForecastUsedInLocalTime and the local time defined in section 1 (dataDate and dataTime) # this would be the offset (step) used to index data in mars as mars.step - #meta stepOfLocalTime XXXXXX() : hidden; + meta DateTimeOfForecastUsedInLocalTime julian_date(yearOfForecastUsedInLocalTime, monthOfForecastUsedInLocalTime, dayOfForecastUsedInLocalTime, hourOfForecastUsedInLocalTime, minuteOfForecastUsedInLocalTime, secondOfForecastUsedInLocalTime) : hidden; + meta DateTimeOfLocalTime julian_date(dataDate, dataTime) : hidden; + + transient stepOfLocalTime = DateTimeOfLocalTime - DateTimeOfForecastUsedInLocalTime : dump; alias mars.date = dateOfForecastUsedInLocalTime : dump; alias mars.time = timeOfForecastUsedInLocalTime : dump; - alias mars.step = stepOfLocalTime : dump; + #alias mars.step = stepOfLocalTime : dump; } From b993b88b1a2e74a80c57f6c1b7163854d06ac935 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 9 Mar 2021 18:33:08 +0000 Subject: [PATCH 386/683] ECC-1212: mars.step computation --- definitions/grib2/template.4.localtime.def | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/definitions/grib2/template.4.localtime.def b/definitions/grib2/template.4.localtime.def index d6426ad3a..8a9f5137a 100644 --- a/definitions/grib2/template.4.localtime.def +++ b/definitions/grib2/template.4.localtime.def @@ -52,12 +52,24 @@ if (numberOfForecastsUsedInLocalTime == 1) { # need something here to compute the diff between date time of *OfForecastUsedInLocalTime and the local time defined in section 1 (dataDate and dataTime) # this would be the offset (step) used to index data in mars as mars.step - meta DateTimeOfForecastUsedInLocalTime julian_date(yearOfForecastUsedInLocalTime, monthOfForecastUsedInLocalTime, dayOfForecastUsedInLocalTime, hourOfForecastUsedInLocalTime, minuteOfForecastUsedInLocalTime, secondOfForecastUsedInLocalTime) : hidden; - meta DateTimeOfLocalTime julian_date(dataDate, dataTime) : hidden; - - transient stepOfLocalTime = DateTimeOfLocalTime - DateTimeOfForecastUsedInLocalTime : dump; + meta DateTimeOfForecastUsedInLocalTime julian_date(yearOfForecastUsedInLocalTime, monthOfForecastUsedInLocalTime, dayOfForecastUsedInLocalTime, + hourOfForecastUsedInLocalTime, minuteOfForecastUsedInLocalTime, secondOfForecastUsedInLocalTime) : hidden; + meta DateTimeOfLocalTime julian_date(dataDate, dataTime) : hidden; + + + meta jd1 julian_day(dateOfForecastUsedInLocalTime, + hourOfForecastUsedInLocalTime, minuteOfForecastUsedInLocalTime, secondOfForecastUsedInLocalTime); + meta jd2 julian_day(dataDate, hour,minute,second); + + transient diffInDays = (jd2 - jd1) : hidden; # float + transient diffInHours = (diffInDays * 1440 + 0.5)/60 : hidden; + meta _endStep round(diffInHours, 10): dump, long_type; + transient endStep = _endStep; # needed to force it to be integer + + #transient stepOfLocalTime = DateTimeOfLocalTime - DateTimeOfForecastUsedInLocalTime : dump; alias mars.date = dateOfForecastUsedInLocalTime : dump; alias mars.time = timeOfForecastUsedInLocalTime : dump; - #alias mars.step = stepOfLocalTime : dump; + alias mars.step = endStep; + } From 27b85923aa86621475190674c5cdf627bdb4a3e2 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 10 Mar 2021 12:03:20 +0000 Subject: [PATCH 387/683] ECC-1212: Add test and fix the grib_ls date issue --- definitions/grib2/template.4.localtime.def | 3 + tests/CMakeLists.txt | 1 + tests/grib_ecc-1212.sh | 81 ++++++++++++++++++++++ 3 files changed, 85 insertions(+) create mode 100755 tests/grib_ecc-1212.sh diff --git a/definitions/grib2/template.4.localtime.def b/definitions/grib2/template.4.localtime.def index 8a9f5137a..6324bedcc 100644 --- a/definitions/grib2/template.4.localtime.def +++ b/definitions/grib2/template.4.localtime.def @@ -73,3 +73,6 @@ if (numberOfForecastsUsedInLocalTime == 1) { alias mars.step = endStep; } + +# See ECC-707 +alias ls.date = dataDate; diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 9d7bfc8f5..1e99e9e9c 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -80,6 +80,7 @@ if( HAVE_BUILD_TOOLS ) grib_ecc-1167 grib_ecc-1170 grib_ecc-1195 + grib_ecc-1212 bufr_ecc-1195 bufr_json_samples bufr_ecc-359 diff --git a/tests/grib_ecc-1212.sh b/tests/grib_ecc-1212.sh new file mode 100755 index 000000000..7f69c927f --- /dev/null +++ b/tests/grib_ecc-1212.sh @@ -0,0 +1,81 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +REDIRECT=/dev/null +label="grib_ecc-1212-test" +tempGrib=temp.$label.grib +tempFilt=temp.$label.filt +tempOut=temp.$label.out +tempRef=temp.$label.ref +sample_grib2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl + +# Create a GRIB with the local time template +cat > $tempFilt < $tempOut +cat > $tempRef < $tempOut +echo "2 ecmf 20200805 an regular_ll surface 0 t grid_simple" > $tempRef +cat $tempOut +diff $tempRef $tempOut + + +# Clean up +rm -f $tempGrib $tempFilt $tempOut $tempRef From 98a8682a245499a6891541e9a12407279bfa208a Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 10 Mar 2021 12:17:19 +0000 Subject: [PATCH 388/683] ECC-1212: Add test and fix the grib_ls date issue --- definitions/grib2/template.4.localtime.def | 2 +- tests/grib_ecc-1212.sh | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/definitions/grib2/template.4.localtime.def b/definitions/grib2/template.4.localtime.def index 6324bedcc..28de28173 100644 --- a/definitions/grib2/template.4.localtime.def +++ b/definitions/grib2/template.4.localtime.def @@ -75,4 +75,4 @@ if (numberOfForecastsUsedInLocalTime == 1) { } # See ECC-707 -alias ls.date = dataDate; +transient lsdate_bug = 1: hidden; diff --git a/tests/grib_ecc-1212.sh b/tests/grib_ecc-1212.sh index 7f69c927f..ede61bd1a 100755 --- a/tests/grib_ecc-1212.sh +++ b/tests/grib_ecc-1212.sh @@ -49,7 +49,7 @@ EOF ${tools_dir}/grib_filter -o $tempGrib $tempFilt $sample_grib2 -# Check mars keys +# Check MARS keys ${tools_dir}/grib_ls -j -m $tempGrib > $tempOut cat > $tempRef < $tempRef < $tempRef < $tempOut From 2d5deabea53dd8af9bc01912827dd9f64da2ce8c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 10 Mar 2021 15:07:39 +0000 Subject: [PATCH 389/683] Scripts: do not try to access Param DB by default --- definitions/add_params_from_tsv.pl | 4 ++-- tests/create_test.sh | 9 +++++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index 52d2c8936..d724bfaf2 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -51,8 +51,8 @@ use Time::localtime; $ARGV[0] or die "USAGE: $0 input.tsv\n"; -my $WRITE_TO_FILES = 0; -my $WRITE_TO_PARAMDB = 1; # Be careful. Fill in $contactId before proceeding +my $WRITE_TO_FILES = 1; +my $WRITE_TO_PARAMDB = 0; # Be careful. Fill in $contactId before proceeding my ($paramId, $shortName, $name, $units, $cfVarName); my ($discipline, $pcategory, $pnumber, $type1, $type2, $scaledValue1, $scaleFactor1, $scaledValue2, $scaleFactor2); diff --git a/tests/create_test.sh b/tests/create_test.sh index fc5a3c10c..d844c1985 100755 --- a/tests/create_test.sh +++ b/tests/create_test.sh @@ -3,7 +3,12 @@ TEST_DIR=`dirname $0` if [ $# -ne 1 ]; then - echo "Usage: $0 title > $TEST_DIR/title.sh" + echo "Usage: $0 title > $TEST_DIR/title.sh" 1>&2 + echo 1>&2 + echo "Example:" 1>&2 + echo " $0 ECC-6666 > tests/grib_ecc-6666.sh" 1>&2 + echo " $0 ECC-9999 > tests/bufr_ecc-9999.sh" 1>&2 + echo 1>&2 exit 1 fi @@ -31,7 +36,7 @@ cat < Date: Wed, 10 Mar 2021 15:08:56 +0000 Subject: [PATCH 390/683] Tools: apply fix for ls.time (related to ECC-707 and ECC-1216) --- tools/grib_tools.c | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/tools/grib_tools.c b/tools/grib_tools.c index 9e8bac985..4cfd28b59 100644 --- a/tools/grib_tools.c +++ b/tools/grib_tools.c @@ -975,9 +975,14 @@ static int fix_for_lsdate_needed(grib_handle* h) { long lsdate_bug = 0; int err = grib_get_long(h, "lsdate_bug", &lsdate_bug); - if (!err && lsdate_bug == 1) { - return 1; - } + if (!err && lsdate_bug == 1) return 1; + return 0; +} +static int fix_for_lstime_needed(grib_handle* h) +{ + long lstime_bug = 0; + int err = grib_get_long(h, "lstime_bug", &lstime_bug); + if (!err && lstime_bug == 1) return 1; return 0; } @@ -1053,6 +1058,7 @@ void grib_print_key_values(grib_runtime_options* options, grib_handle* h) grib_accessor* acc = NULL; size_t num_vals = 0; int fix_lsdate = 0; + int fix_lstime = 0; if (!options->verbose) return; @@ -1076,7 +1082,8 @@ void grib_print_key_values(grib_runtime_options* options, grib_handle* h) return; } - fix_lsdate = (fix_for_lsdate_needed(h) && options->name_space && strcmp(options->name_space, "ls") == 0); + fix_lsdate = (options->name_space && strcmp(options->name_space, "ls") == 0 && fix_for_lsdate_needed(h)); + fix_lstime = (options->name_space && strcmp(options->name_space, "ls") == 0 && fix_for_lstime_needed(h)); for (i = 0; i < options->print_keys_count; i++) { size_t len = MAX_STRING_LEN; @@ -1141,6 +1148,9 @@ void grib_print_key_values(grib_runtime_options* options, grib_handle* h) if (fix_lsdate && strcmp(pName, "date") == 0) { /* ECC-707 */ pName = "ls.date"; } + if (fix_lstime && strcmp(pName, "time") == 0) { + pName = "ls.time"; + } ret = grib_get_size(h, pName, &num_vals); if (ret == GRIB_SUCCESS && num_vals > 1) { /* See ECC-278 */ ret = get_initial_element_of_array(h, pName, num_vals, value); From 2ebf25e905ed63bfa8538dc38b8ed73908a91bb0 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 10 Mar 2021 15:20:22 +0000 Subject: [PATCH 391/683] Tools: apply fix for ls.time (related to ECC-707 and ECC-1216) --- tools/grib_tools.c | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/tools/grib_tools.c b/tools/grib_tools.c index 9e8bac985..4cfd28b59 100644 --- a/tools/grib_tools.c +++ b/tools/grib_tools.c @@ -975,9 +975,14 @@ static int fix_for_lsdate_needed(grib_handle* h) { long lsdate_bug = 0; int err = grib_get_long(h, "lsdate_bug", &lsdate_bug); - if (!err && lsdate_bug == 1) { - return 1; - } + if (!err && lsdate_bug == 1) return 1; + return 0; +} +static int fix_for_lstime_needed(grib_handle* h) +{ + long lstime_bug = 0; + int err = grib_get_long(h, "lstime_bug", &lstime_bug); + if (!err && lstime_bug == 1) return 1; return 0; } @@ -1053,6 +1058,7 @@ void grib_print_key_values(grib_runtime_options* options, grib_handle* h) grib_accessor* acc = NULL; size_t num_vals = 0; int fix_lsdate = 0; + int fix_lstime = 0; if (!options->verbose) return; @@ -1076,7 +1082,8 @@ void grib_print_key_values(grib_runtime_options* options, grib_handle* h) return; } - fix_lsdate = (fix_for_lsdate_needed(h) && options->name_space && strcmp(options->name_space, "ls") == 0); + fix_lsdate = (options->name_space && strcmp(options->name_space, "ls") == 0 && fix_for_lsdate_needed(h)); + fix_lstime = (options->name_space && strcmp(options->name_space, "ls") == 0 && fix_for_lstime_needed(h)); for (i = 0; i < options->print_keys_count; i++) { size_t len = MAX_STRING_LEN; @@ -1141,6 +1148,9 @@ void grib_print_key_values(grib_runtime_options* options, grib_handle* h) if (fix_lsdate && strcmp(pName, "date") == 0) { /* ECC-707 */ pName = "ls.date"; } + if (fix_lstime && strcmp(pName, "time") == 0) { + pName = "ls.time"; + } ret = grib_get_size(h, pName, &num_vals); if (ret == GRIB_SUCCESS && num_vals > 1) { /* See ECC-278 */ ret = get_initial_element_of_array(h, pName, num_vals, value); From 2e45994e84dd6450bfd1ab81bba7caa2a7ae28e5 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 10 Mar 2021 16:10:33 +0000 Subject: [PATCH 392/683] ECC-1216: GRIB2: Add 'time' to the 'ls' namespace for local time templates --- definitions/grib2/template.4.localtime.def | 9 ++++++--- tests/grib_ecc-1212.sh | 9 +++++---- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/definitions/grib2/template.4.localtime.def b/definitions/grib2/template.4.localtime.def index 28de28173..82c32f48c 100644 --- a/definitions/grib2/template.4.localtime.def +++ b/definitions/grib2/template.4.localtime.def @@ -44,6 +44,12 @@ localTimeForecastList list(numberOfForecastsUsedInLocalTime) unsigned[4] timeIncrement=0 : dump; } +alias ls.time=dataTime; +# See ECC-707 +transient lsdate_bug = 1: hidden; +transient lstime_bug = 1: hidden; + + if (numberOfForecastsUsedInLocalTime == 1) { meta dateOfForecastUsedInLocalTime g2date(yearOfForecastUsedInLocalTime, monthOfForecastUsedInLocalTime, dayOfForecastUsedInLocalTime) : dump; meta timeOfForecastUsedInLocalTime time(hourOfForecastUsedInLocalTime, minuteOfForecastUsedInLocalTime, secondOfForecastUsedInLocalTime) : dump; @@ -73,6 +79,3 @@ if (numberOfForecastsUsedInLocalTime == 1) { alias mars.step = endStep; } - -# See ECC-707 -transient lsdate_bug = 1: hidden; diff --git a/tests/grib_ecc-1212.sh b/tests/grib_ecc-1212.sh index ede61bd1a..148dad121 100755 --- a/tests/grib_ecc-1212.sh +++ b/tests/grib_ecc-1212.sh @@ -73,12 +73,13 @@ grib_check_key_equals $tempGrib dateOfForecastUsedInLocalTime '20200804' grib_check_key_equals $tempGrib timeOfForecastUsedInLocalTime '0' -# Check grib_ls output +# Check "ls" namespace ${tools_dir}/grib_get -n ls $tempGrib > $tempOut -echo "2 ecmf 20200805 an regular_ll surface 0 t grid_simple" > $tempRef +# edition centre date time dataType gridType typeOfLevel level shortName packingType +echo "2 ecmf 20200805 1200 an regular_ll surface 0 t grid_simple" > $tempRef cat $tempOut -diff $tempRef $tempOut +diff -w $tempRef $tempOut # Clean up -rm -f $tempGrib $tempFilt $tempOut $tempRef +#rm -f $tempGrib $tempFilt $tempOut $tempRef From 7972123e3d919468f98c8e5170e4300da37468c2 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 10 Mar 2021 17:15:59 +0000 Subject: [PATCH 393/683] Tools: JSON grib_ls: fix for ls.time (related to ECC-707 and ECC-1216) --- tools/grib_tools.c | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/tools/grib_tools.c b/tools/grib_tools.c index 4cfd28b59..25e191bda 100644 --- a/tools/grib_tools.c +++ b/tools/grib_tools.c @@ -917,7 +917,8 @@ static int is_valid_JSON_number(const char* input) return 1; } -static void get_value_for_key(grib_handle* h, const char* key_name, int key_type, char* value_str, const char* format) +static void get_value_for_key(grib_handle* h, const char* key_name, int key_type, char* value_str, + const char* format, int fix_lsdate, int fix_lstime) { int ret = 0, type = key_type; double dvalue = 0; @@ -942,7 +943,11 @@ static void get_value_for_key(grib_handle* h, const char* key_name, int key_type } if (type == GRIB_TYPE_STRING) { - ret = grib_get_string(h, key_name, value_str, &len); + const char* pName = key_name; + /* ECC-707 */ + if (fix_lsdate && strcmp(pName, "date") == 0) pName = "ls.date"; + if (fix_lstime && strcmp(pName, "time") == 0) pName = "ls.time"; + ret = grib_get_string(h, pName, value_str, &len); } else if (type == GRIB_TYPE_DOUBLE) { ret = grib_get_double(h, key_name, &dvalue); @@ -1063,12 +1068,16 @@ void grib_print_key_values(grib_runtime_options* options, grib_handle* h) if (!options->verbose) return; + fix_lsdate = (options->name_space && strcmp(options->name_space, "ls") == 0 && fix_for_lsdate_needed(h)); + fix_lstime = (options->name_space && strcmp(options->name_space, "ls") == 0 && fix_for_lstime_needed(h)); + if (options->json_output && !options->latlon) { /* fprintf(dump_file, "\"message %d\" : {\n", options->handle_count); */ fprintf(dump_file, " {\n"); for (i = 0; i < options->print_keys_count; i++) { fprintf(dump_file, " \"%s\": ", options->print_keys[i].name); - get_value_for_key(h, options->print_keys[i].name, options->print_keys[i].type, value, options->format); + get_value_for_key(h, options->print_keys[i].name, options->print_keys[i].type, value, + options->format, fix_lsdate, fix_lstime); if (is_valid_JSON_number(value)) fprintf(dump_file, "%s", value); else @@ -1082,9 +1091,6 @@ void grib_print_key_values(grib_runtime_options* options, grib_handle* h) return; } - fix_lsdate = (options->name_space && strcmp(options->name_space, "ls") == 0 && fix_for_lsdate_needed(h)); - fix_lstime = (options->name_space && strcmp(options->name_space, "ls") == 0 && fix_for_lstime_needed(h)); - for (i = 0; i < options->print_keys_count; i++) { size_t len = MAX_STRING_LEN; ret = GRIB_SUCCESS; From e60c6ffadc5ec637a798e1ac58c57ff9c10f3d15 Mon Sep 17 00:00:00 2001 From: Richard Mladek Date: Wed, 10 Mar 2021 17:50:24 +0000 Subject: [PATCH 394/683] CARRA/CERRA updates --- tigge/tigge_check.h | 559 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 556 insertions(+), 3 deletions(-) diff --git a/tigge/tigge_check.h b/tigge/tigge_check.h index 98178be7d..6438f3354 100644 --- a/tigge/tigge_check.h +++ b/tigge/tigge_check.h @@ -3487,7 +3487,6 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"discipline", GRIB_TYPE_LONG, 0}, {"parameterCategory", GRIB_TYPE_LONG, 6}, {"parameterNumber", GRIB_TYPE_LONG, 11}, - {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, {NULL, }, }, {&point_in_time, &predefined_level}, @@ -3505,7 +3504,6 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"discipline", GRIB_TYPE_LONG, 0}, {"parameterCategory", GRIB_TYPE_LONG, 6}, {"parameterNumber", GRIB_TYPE_LONG, 12}, - {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, {NULL, }, }, {&point_in_time, &predefined_level}, @@ -3626,10 +3624,565 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] }, {&point_in_time, &given_level, &height_level}, }, + { + "2_metre_specific_humidity_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 174096}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 1}, + {"parameterNumber", GRIB_TYPE_LONG, 0}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 103}, + {NULL, }, + }, + {&point_in_time, &given_level}, + }, + { + "time_integral_of_rain_flux_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 235015}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 1}, + {"parameterNumber", GRIB_TYPE_LONG, 65}, + {"typeOfStatisticalProcessing", GRIB_TYPE_LONG, 1}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {NULL, }, + }, + {&from_start, &predefined_level}, + }, + { + "total_column_cloud_liquid_water_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 78}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 1}, + {"parameterNumber", GRIB_TYPE_LONG, 69}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {"typeOfSecondFixedSurface", GRIB_TYPE_LONG, 8}, + {NULL, }, + }, + {&point_in_time, &predefined_thickness}, + }, + { + "total_column_cloud_ice_water_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 79}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 1}, + {"parameterNumber", GRIB_TYPE_LONG, 70}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {"typeOfSecondFixedSurface", GRIB_TYPE_LONG, 8}, + {NULL, }, + }, + {&point_in_time, &predefined_thickness}, + }, + { + "total_column_graupel_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 260001}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 1}, + {"parameterNumber", GRIB_TYPE_LONG, 74}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {"typeOfSecondFixedSurface", GRIB_TYPE_LONG, 8}, + {NULL, }, + }, + {&point_in_time, &predefined_thickness}, + }, + { + "direct_solar_radiation_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 47}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 4}, + {"parameterNumber", GRIB_TYPE_LONG, 54}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {"typeOfStatisticalProcessing", GRIB_TYPE_LONG, 1}, + {NULL, }, + }, + {&from_start, &predefined_level}, + }, + { + "time_integral_of_top_net_solar_radiation_flux_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 178}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 4}, + {"parameterNumber", GRIB_TYPE_LONG, 1}, + {"typeOfStatisticalProcessing", GRIB_TYPE_LONG, 1}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 8}, + {NULL, }, + }, + {&from_start, &predefined_level}, + }, + { + "time_integral_of_surface_latent_heat_evaporation_flux_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 235019}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 0}, + {"parameterNumber", GRIB_TYPE_LONG, 30}, + {"typeOfStatisticalProcessing", GRIB_TYPE_LONG, 1}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {NULL, }, + }, + {&from_start, &predefined_level}, + }, + { + "time_integral_of_surface_latent_heat_sublimation_flux_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 235071}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 0}, + {"parameterNumber", GRIB_TYPE_LONG, 31}, + {"typeOfStatisticalProcessing", GRIB_TYPE_LONG, 1}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {NULL, }, + }, + {&from_start, &predefined_level}, + }, + { + "time_integral_of_surface_eastward_momentum_flux_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 235017}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 2}, + {"parameterNumber", GRIB_TYPE_LONG, 17}, + {"typeOfStatisticalProcessing", GRIB_TYPE_LONG, 1}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {NULL, }, + }, + {&from_start, &predefined_level}, + }, + { + "time_integral_of_surface_northward_momentum_flux_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 235018}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 2}, + {"parameterNumber", GRIB_TYPE_LONG, 18}, + {"typeOfStatisticalProcessing", GRIB_TYPE_LONG, 1}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {NULL, }, + }, + {&from_start, &predefined_level}, + }, + { + "time_integral_of_total_solid_precipitation_flux_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 260645}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 1}, + {"parameterNumber", GRIB_TYPE_LONG, 128}, + {"typeOfStatisticalProcessing", GRIB_TYPE_LONG, 1}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {NULL, }, + }, + {&from_start, &predefined_level}, + }, + { + "time_integral_of_snow_evaporation_flux_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 235072}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 1}, + {"parameterNumber", GRIB_TYPE_LONG, 192}, + {"typeOfStatisticalProcessing", GRIB_TYPE_LONG, 1}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {NULL, }, + }, + {&from_start, &predefined_level}, + }, + { + "10_metre_eastward_wind_gust_since_pp_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 260646}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 2}, + {"parameterNumber", GRIB_TYPE_LONG, 23}, + {"typeOfStatisticalProcessing", GRIB_TYPE_LONG, 2}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 103}, + {"scaleFactorOfFirstFixedSurface", GRIB_TYPE_LONG, 0}, + {"scaledValueOfFirstFixedSurface", GRIB_TYPE_LONG, 10}, + {NULL, }, + }, + {&since_prev_pp, &given_level}, + }, + { + "10_metre_northward_wind_gust_since_pp_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 260647}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 2}, + {"parameterNumber", GRIB_TYPE_LONG, 24}, + {"typeOfStatisticalProcessing", GRIB_TYPE_LONG, 2}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 103}, + {"scaleFactorOfFirstFixedSurface", GRIB_TYPE_LONG, 0}, + {"scaledValueOfFirstFixedSurface", GRIB_TYPE_LONG, 10}, + {NULL, }, + }, + {&since_prev_pp, &given_level}, + }, + { + "fog_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 260648}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 6}, + {"parameterNumber", GRIB_TYPE_LONG, 50}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {NULL, }, + }, + {&point_in_time, &predefined_level}, + }, + { + "snow_on_ice_total_depth_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 260650}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 1}, + {"parameterNumber", GRIB_TYPE_LONG, 11}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 174}, + {NULL, }, + }, + {&point_in_time, &predefined_level}, + }, + { + "fraction_of_snow_cover_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 260289}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 1}, + {"parameterNumber", GRIB_TYPE_LONG, 121}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {NULL, }, + }, + {&point_in_time, &predefined_level}, + }, + { + "snow_albedo_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 228032}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 19}, + {"parameterNumber", GRIB_TYPE_LONG, 19}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {NULL, }, + }, + {&point_in_time, &predefined_level, &has_bitmap}, + }, + { + "sea_ice_thickness_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 174098}, + {"discipline", GRIB_TYPE_LONG, 10}, + {"parameterCategory", GRIB_TYPE_LONG, 2}, + {"parameterNumber", GRIB_TYPE_LONG, 1}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 160}, + {"scaleFactorOfFirstFixedSurface", GRIB_TYPE_LONG, 0}, + {"scaledValueOfFirstFixedSurface", GRIB_TYPE_LONG, 0}, + {NULL, }, + }, + {&point_in_time, &given_level, &has_bitmap}, + }, + { + "sea_ice_surface_temperature_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 260649}, + {"discipline", GRIB_TYPE_LONG, 10}, + {"parameterCategory", GRIB_TYPE_LONG, 2}, + {"parameterNumber", GRIB_TYPE_LONG, 8}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 174}, + {NULL, }, + }, + {&point_in_time, &predefined_level, &has_bitmap}, + }, + { + "roughness_length_for_heat", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 260457}, + {"discipline", GRIB_TYPE_LONG, 2}, + {"parameterCategory", GRIB_TYPE_LONG, 0}, + {"parameterNumber", GRIB_TYPE_LONG, 216}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {NULL, }, + }, + {&point_in_time, &predefined_level}, + }, + { + "volumetric_soil_ice_layer", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 260644}, + {"discipline", GRIB_TYPE_LONG, 2}, + {"parameterCategory", GRIB_TYPE_LONG, 0}, + {"parameterNumber", GRIB_TYPE_LONG, 38}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 151}, + {"scaleFactorOfFirstFixedSurface", GRIB_TYPE_LONG, 0}, + {"typeOfSecondFixedSurface", GRIB_TYPE_LONG, 151}, + {"scaleFactorOfSecondFixedSurface", GRIB_TYPE_LONG, 0}, + {NULL, }, + }, + {&point_in_time, &given_thickness, &has_bitmap, &has_soil_layer}, + }, + /* cerra */ - + { + "time_integral_of_evapotranspiration_flux_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 235073}, + {"discipline", GRIB_TYPE_LONG, 2}, + {"parameterCategory", GRIB_TYPE_LONG, 0}, + {"parameterNumber", GRIB_TYPE_LONG, 39}, + {"typeOfStatisticalProcessing", GRIB_TYPE_LONG, 1}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {NULL, }, + }, + {&from_start, &predefined_level, &has_bitmap}, + }, + { + "snow_melt_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 3099}, + {"discipline", GRIB_TYPE_LONG, 0}, + {"parameterCategory", GRIB_TYPE_LONG, 1}, + {"parameterNumber", GRIB_TYPE_LONG, 16}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {NULL, }, + }, + {&point_in_time, &predefined_level, &has_bitmap}, + }, + { + "lake_total_layer_temperature_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 228011}, + {"discipline", GRIB_TYPE_LONG, 1}, + {"parameterCategory", GRIB_TYPE_LONG, 2}, + {"parameterNumber", GRIB_TYPE_LONG, 1}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {"typeOfSecondFixedSurface", GRIB_TYPE_LONG, 162}, + {NULL, }, + }, + {&point_in_time, &predefined_thickness}, + }, + { + "lake_mix_layer_temperature_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 228008}, + {"discipline", GRIB_TYPE_LONG, 1}, + {"parameterCategory", GRIB_TYPE_LONG, 2}, + {"parameterNumber", GRIB_TYPE_LONG, 1}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 166}, + {NULL, }, + }, + {&point_in_time, &predefined_level}, + }, + { + "lake_mix_layer_depth_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 228009}, + {"discipline", GRIB_TYPE_LONG, 1}, + {"parameterCategory", GRIB_TYPE_LONG, 2}, + {"parameterNumber", GRIB_TYPE_LONG, 0}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 166}, + {NULL, }, + }, + {&point_in_time, &predefined_level}, + }, + { + "lake_bottom_temperature_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 228010}, + {"discipline", GRIB_TYPE_LONG, 1}, + {"parameterCategory", GRIB_TYPE_LONG, 2}, + {"parameterNumber", GRIB_TYPE_LONG, 1}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 162}, + {NULL, }, + }, + {&point_in_time, &predefined_level}, + }, + { + "lake_shape_factor_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 228012}, + {"discipline", GRIB_TYPE_LONG, 1}, + {"parameterCategory", GRIB_TYPE_LONG, 2}, + {"parameterNumber", GRIB_TYPE_LONG, 10}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {NULL, }, + }, + {&point_in_time, &predefined_level}, + }, + { + "lake_ice_surface_temperature_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 228013}, + {"discipline", GRIB_TYPE_LONG, 1}, + {"parameterCategory", GRIB_TYPE_LONG, 2}, + {"parameterNumber", GRIB_TYPE_LONG, 6}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 174}, + {NULL, }, + }, + {&point_in_time, &predefined_level}, + }, + { + "lake_ice_total_depth_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 228014}, + {"discipline", GRIB_TYPE_LONG, 1}, + {"parameterCategory", GRIB_TYPE_LONG, 2}, + {"parameterNumber", GRIB_TYPE_LONG, 5}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 174}, + {"typeOfSecondFixedSurface", GRIB_TYPE_LONG, 176}, + {NULL, }, + }, + {&point_in_time, &predefined_thickness}, + }, + { + "lake_total_depth_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 228007}, + {"discipline", GRIB_TYPE_LONG, 1}, + {"parameterCategory", GRIB_TYPE_LONG, 2}, + {"parameterNumber", GRIB_TYPE_LONG, 0}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {"typeOfSecondFixedSurface", GRIB_TYPE_LONG, 162}, + {NULL, }, + }, + {&point_in_time, &predefined_thickness}, + }, { "momentum_flux_u_component_sfc", -1e+8, From 4e4ffc974def8a7a1abc247f6f399dea771fcdb6 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 11 Mar 2021 12:22:43 +0000 Subject: [PATCH 395/683] Examples: cleanup --- examples/F90/bufr_read_header.sh | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/examples/F90/bufr_read_header.sh b/examples/F90/bufr_read_header.sh index c3be92506..3d224c9e9 100755 --- a/examples/F90/bufr_read_header.sh +++ b/examples/F90/bufr_read_header.sh @@ -9,33 +9,25 @@ . ./include.sh -#Define a common label for all the tmp files +# Define a common label for all the tmp files label="bufr_read_header_test_f" - -#Prepare tmp file fTmp=${label}.tmp.txt -rm -f $fTmp | true +rm -f $fTmp #----------------------------------------------------- # Test reading the header from a BUFR # file with multiple messages #---------------------------------------------------- - f=${data_dir}/bufr/syno_multi.bufr fRef=${f}.header.ref REDIRECT=/dev/null -#Write the values into a file and compare with reference -${examples_dir}/eccodes_f_bufr_read_header $f 2> $REDIRECT > $fTmp +# Write the values into a file and compare with reference +${examples_dir}/eccodes_f_bufr_read_header $f 2> $REDIRECT > $fTmp -#We compare output to the reference by ignoring the whitespaces +# Compare output to the reference by ignoring the whitespaces diff -w $fRef $fTmp >$REDIRECT 2> $REDIRECT -#cat $fRes - #Clean up -rm -f ${fTmp} | true - - - +rm -f ${fTmp} From 39551b5713f1783f2bbc6095bdd41ed832686eb9 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 11 Mar 2021 13:23:23 +0000 Subject: [PATCH 396/683] ECC-1212: use proper casing for keys --- definitions/grib2/template.4.localtime.def | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/definitions/grib2/template.4.localtime.def b/definitions/grib2/template.4.localtime.def index 82c32f48c..fa62eded9 100644 --- a/definitions/grib2/template.4.localtime.def +++ b/definitions/grib2/template.4.localtime.def @@ -58,10 +58,9 @@ if (numberOfForecastsUsedInLocalTime == 1) { # need something here to compute the diff between date time of *OfForecastUsedInLocalTime and the local time defined in section 1 (dataDate and dataTime) # this would be the offset (step) used to index data in mars as mars.step - meta DateTimeOfForecastUsedInLocalTime julian_date(yearOfForecastUsedInLocalTime, monthOfForecastUsedInLocalTime, dayOfForecastUsedInLocalTime, + meta dateTimeOfForecastUsedInLocalTime julian_date(yearOfForecastUsedInLocalTime, monthOfForecastUsedInLocalTime, dayOfForecastUsedInLocalTime, hourOfForecastUsedInLocalTime, minuteOfForecastUsedInLocalTime, secondOfForecastUsedInLocalTime) : hidden; - meta DateTimeOfLocalTime julian_date(dataDate, dataTime) : hidden; - + meta dateTimeOfLocalTime julian_date(dataDate, dataTime) : hidden; meta jd1 julian_day(dateOfForecastUsedInLocalTime, hourOfForecastUsedInLocalTime, minuteOfForecastUsedInLocalTime, secondOfForecastUsedInLocalTime); @@ -72,7 +71,7 @@ if (numberOfForecastsUsedInLocalTime == 1) { meta _endStep round(diffInHours, 10): dump, long_type; transient endStep = _endStep; # needed to force it to be integer - #transient stepOfLocalTime = DateTimeOfLocalTime - DateTimeOfForecastUsedInLocalTime : dump; + #transient stepOfLocalTime = dateTimeOfLocalTime - dateTimeOfForecastUsedInLocalTime : dump; alias mars.date = dateOfForecastUsedInLocalTime : dump; alias mars.time = timeOfForecastUsedInLocalTime : dump; From d0b4e1f0ea960b15de313f8cc16417bb3a4632db Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 11 Mar 2021 15:14:29 +0000 Subject: [PATCH 397/683] Debug: Add assert on result of calls --- src/grib_accessor_class_long_vector.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/grib_accessor_class_long_vector.c b/src/grib_accessor_class_long_vector.c index 5068ba97e..74bbb1a9e 100644 --- a/src/grib_accessor_class_long_vector.c +++ b/src/grib_accessor_class_long_vector.c @@ -160,7 +160,6 @@ static void init(grib_accessor* a, const long l, grib_arguments* c) int n = 0; self->vector = grib_arguments_get_name(grib_handle_of_accessor(a), c, n++); - va = (grib_accessor*)grib_find_accessor(grib_handle_of_accessor(a), self->vector); v = (grib_accessor_abstract_long_vector*)va; @@ -175,6 +174,7 @@ static void init(grib_accessor* a, const long l, grib_arguments* c) static int unpack_long(grib_accessor* a, long* val, size_t* len) { size_t size = 0; + int err = 0; long* vector; grib_accessor_long_vector* self = (grib_accessor_long_vector*)a; grib_accessor* va = NULL; @@ -184,9 +184,12 @@ static int unpack_long(grib_accessor* a, long* val, size_t* len) v = (grib_accessor_abstract_long_vector*)va; /*TODO implement the dirty mechanism to avoid to unpack every time */ - grib_get_size(grib_handle_of_accessor(a), self->vector, &size); + err = grib_get_size(grib_handle_of_accessor(a), self->vector, &size); + DebugAssert(!err); + DebugAssert(size > 0); vector = (long*)grib_context_malloc(a->context, sizeof(long) * size); - grib_unpack_long(va, vector, &size); + err = grib_unpack_long(va, vector, &size); + DebugAssert(!err); grib_context_free(a->context, vector); *val = v->v[self->index]; From 944a7838ee22cc7e17b13c82683355c5be7e0e72 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 11 Mar 2021 15:19:30 +0000 Subject: [PATCH 398/683] Fix memory leak --- tools/grib_set.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/grib_set.c b/tools/grib_set.c index c271bfa7d..776a4df88 100644 --- a/tools/grib_set.c +++ b/tools/grib_set.c @@ -127,8 +127,10 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) if (options->set_values_count != 0) { err = grib_set_values(h, options->set_values, options->set_values_count); - if (err != GRIB_SUCCESS && options->fail) + if (err != GRIB_SUCCESS && options->fail) { + free(v); exit(err); + } } if (options->repack) { From 519409b94a7a38b540c87ad2b4764eba2e1f662a Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 11 Mar 2021 16:02:20 +0000 Subject: [PATCH 399/683] Testing: add test for 'element' accessor --- tests/CMakeLists.txt | 1 + tests/Makefile.am | 1 + tests/grib_element.sh | 30 ++++++++++++++++++++++++++++++ 3 files changed, 32 insertions(+) create mode 100755 tests/grib_element.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 9d7bfc8f5..0c9351b7e 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -70,6 +70,7 @@ if( HAVE_BUILD_TOOLS ) grib_packing_order filter_substr grib_uerra + grib_element grib_2nd_order_numValues grib_ecc-136 grib_ecc-966 diff --git a/tests/Makefile.am b/tests/Makefile.am index 30ac16b0f..3297f09df 100755 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -53,6 +53,7 @@ TESTS = definitions.sh \ grib_level.sh \ grib_indexing.sh \ grib_list.sh \ + grib_element.sh \ grib_second_order.sh \ grib_change_scanning.sh \ julian.sh \ diff --git a/tests/grib_element.sh b/tests/grib_element.sh new file mode 100755 index 000000000..4035d18b5 --- /dev/null +++ b/tests/grib_element.sh @@ -0,0 +1,30 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh + +label="grib_element_test" +tempRef=temp.${label}.ref +tempText=temp.${label}.txt +tempFilt=temp.${label}.filt + +# Print the last three entries from the "pl" array +cat > $tempFilt < $tempText +echo "elemA=36, elemB=25, elemC=20" > $tempRef +diff $tempRef $tempText + +rm -f $tempRef $tempText $tempFilt From 46cc0d9af7db8f6f0f9d7ddd06a51da3d5dad33b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 11 Mar 2021 20:05:07 +0000 Subject: [PATCH 400/683] Testing: grid_ieee packing test --- tests/grib_packing_order.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/grib_packing_order.sh b/tests/grib_packing_order.sh index 7476bc5ff..81aea2618 100755 --- a/tests/grib_packing_order.sh +++ b/tests/grib_packing_order.sh @@ -23,6 +23,7 @@ temp_jpeg1=${label}".jpeg1.tmp" temp_jpeg2=${label}".jpeg2.tmp" temp_png1=${label}".png1.tmp" temp_png2=${label}".png2.tmp" +temp_ieee1=${label}".ieee1.tmp" # Simple Packing # ---------------- @@ -73,6 +74,12 @@ if [ $HAVE_JPEG -eq 1 ]; then ${tools_dir}/grib_compare -c data:n $temp_simple1 $temp_jpeg1 fi +# IEEE +# ------------ +# tests/grib_packing_order grid_ieee values_before_packing_type x2 # Does not work +$EXEC ${test_dir}/grib_packing_order grid_ieee packing_type_before_values $temp_ieee1 +# No point comparing with grid_simple as grid_ieee will be closer to the actual values +# and less lossy # Clean up rm -f $temp_simple1 $temp_simple2 @@ -80,3 +87,4 @@ rm -f $temp_second1 $temp_second2 rm -f $temp_png1 $temp_png2 rm -f $temp_ccsds1 $temp_ccsds2 rm -f $temp_jpeg1 $temp_jpeg2 +rm -f $temp_ieee1 From c5eeb299477eb28ff48fed86610a4073a0c4fef9 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 12 Mar 2021 12:23:17 +0000 Subject: [PATCH 401/683] Testing: Add test for second order packing (GRIB-883) --- tests/grib_second_order.sh | 35 ++++++++++++++++++++++++++++++----- 1 file changed, 30 insertions(+), 5 deletions(-) diff --git a/tests/grib_second_order.sh b/tests/grib_second_order.sh index 352b6f177..71c74eed3 100755 --- a/tests/grib_second_order.sh +++ b/tests/grib_second_order.sh @@ -106,17 +106,42 @@ res=`${tools_dir}/grib_get -w count=1 -l 0,0 lfpw.grib1` g1files="lfpw.grib1 gen_ext_spd_2.grib gen_ext_spd_3.grib" -temp_grib1=temp.grib_second_order.grib +temp1=temp1.grib_second_order.grib temp_stat1=temp.grib_second_order.stat1 temp_stat2=temp.grib_second_order.stat2 for f1 in $g1files; do # This does unpack and repack - ${tools_dir}/grib_copy -r $f1 $temp_grib1 - ${tools_dir}/grib_get -n statistics $f1 > $temp_stat1 - ${tools_dir}/grib_get -n statistics $temp_grib1 > $temp_stat2 + ${tools_dir}/grib_copy -r $f1 $temp1 + ${tools_dir}/grib_get -n statistics $f1 > $temp_stat1 + ${tools_dir}/grib_get -n statistics $temp1 > $temp_stat2 perl ${test_dir}/number_compare.pl $temp_stat1 $temp_stat2 done + +# GRIB-883 +# ------------ +# Two coded values: Should stay as grid_simple +temp2=temp2.grib_second_order.grib +temp3=temp3.grib_second_order.grib +cat > $test_filter< $test_filter< Date: Fri, 12 Mar 2021 12:56:28 +0000 Subject: [PATCH 402/683] Testing: Split bufr_filter tests for more parallelism --- tests/CMakeLists.txt | 1 + tests/Makefile.am | 3 + tests/bufr_filter.sh | 189 +--------------------- tests/bufr_filter_extract_datetime.sh | 1 + tests/bufr_filter_extract_subsets.sh | 215 ++++++++++++++++++++++++++ 5 files changed, 223 insertions(+), 186 deletions(-) create mode 100755 tests/bufr_filter_extract_subsets.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 0c9351b7e..8fd6aab4c 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -116,6 +116,7 @@ if( HAVE_BUILD_TOOLS ) bufr_count bufr_get bufr_filter + bufr_filter_extract_subsets bufr_filter_extract_datetime bufr_filter_extract_area bufr_json_data diff --git a/tests/Makefile.am b/tests/Makefile.am index 3297f09df..f9f0e382d 100755 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -9,6 +9,9 @@ TESTS = definitions.sh \ bufr_dump_subset.sh \ bufr_json_samples.sh \ bufr_filter.sh \ + bufr_filter_extract_subsets.sh \ + bufr_filter_extract_datetime.sh \ + bufr_filter_extract_area.sh \ bufr_json_data.sh \ bufr_compare.sh \ bufr_dump_descriptors.sh \ diff --git a/tests/bufr_filter.sh b/tests/bufr_filter.sh index 511c2df24..6870a2e91 100755 --- a/tests/bufr_filter.sh +++ b/tests/bufr_filter.sh @@ -45,7 +45,7 @@ bufr_files=`cat bufr_data_files.txt` for f in ${bufr_files} ; do echo "file: $f" >> $fLog ${tools_dir}/codes_bufr_filter $fRules $f >> $fLog - ${tools_dir}/codes_bufr_filter $fRules $f >> $fLog # See ECC-205 + ${tools_dir}/bufr_filter $fRules $f >> $fLog # See ECC-205 done #----------------------------------------------------------- @@ -72,8 +72,8 @@ set unpack=1; transient statid=1000*blockNumber+stationNumber; if (statid == 1003) { - write "${fBufrTmp}"; -} + write "${fBufrTmp}"; +} EOF rm -f $fBufrTmp @@ -927,57 +927,6 @@ fi rm -f ${fOut}.log rm -f $fLog $fRules ${fOut} ${fOut}.log.ref -#----------------------------------------------------------- -# Test: extract subsets uncompressed data -#----------------------------------------------------------- -cat > $fRules <> $fLog -echo "file: $f" >> $fLog -${tools_dir}/codes_bufr_filter -o ${fOut} $fRules $f 2>> $fLog 1>> $fLog - -cat > ${fRules} < ${fOut}.log - -cat > ${fOut}.log.ref < $fRules <> $fLog -echo "file: $f" >> $fLog -${tools_dir}/codes_bufr_filter -o $fOut $fRules $f 2>> $fLog 1>> $fLog - -cat > ${fRules} < ${f}.log - -cat > ${f}.log.ref < $fRules <> $fLog -echo "file: $f" >> $fLog - -${tools_dir}/codes_bufr_filter -o ${f}.out $fRules $f - -cat > $fRules < ${f}.log - -cat > ${f}.log.ref < $fRules <> $fLog -echo "file: $f" >> $fLog - -${tools_dir}/codes_bufr_filter -o ${f}.out $fRules $f - -cat > $fRules < $fRules < ${f}.log - -cat > ${f}.log.ref < $fRules <> $fLog +echo "file: $f" >> $fLog +${tools_dir}/codes_bufr_filter -o ${fOut} $fRules $f 2>> $fLog 1>> $fLog + +cat > ${fRules} < ${fOut}.log + +cat > ${fOut}.log.ref < $fRules <> $fLog +echo "file: $f" >> $fLog +${tools_dir}/codes_bufr_filter -o $fOut $fRules $f 2>> $fLog 1>> $fLog + +cat > ${fRules} < ${f}.log + +cat > ${f}.log.ref < $fRules <> $fLog +echo "file: $f" >> $fLog + +${tools_dir}/codes_bufr_filter -o ${f}.out $fRules $f + +cat > $fRules < ${f}.log + +cat > ${f}.log.ref < $fRules <> $fLog +echo "file: $f" >> $fLog + +${tools_dir}/codes_bufr_filter -o ${f}.out $fRules $f + +cat > $fRules < $fRules < ${f}.log + +cat > ${f}.log.ref < Date: Fri, 12 Mar 2021 14:04:45 +0000 Subject: [PATCH 403/683] CARRA/CERRA updates --- tigge/tigge_check.h | 46 +++++++++++++++++++++++++++------------------ 1 file changed, 28 insertions(+), 18 deletions(-) diff --git a/tigge/tigge_check.h b/tigge/tigge_check.h index 6438f3354..7e603f3e2 100644 --- a/tigge/tigge_check.h +++ b/tigge/tigge_check.h @@ -652,7 +652,6 @@ s2s/ammc: warning: s2s.mx2t6_20151224_26.grib2, field 47 [surface_air_maximum_te -1e+8, 1e+8, { - {"model", GRIB_TYPE_STRING, 0, "glob"}, {"paramId", GRIB_TYPE_LONG, 179}, {"discipline", GRIB_TYPE_LONG, 0}, {"parameterCategory", GRIB_TYPE_LONG, 5}, @@ -671,7 +670,6 @@ s2s/ammc: warning: s2s.mx2t6_20151224_26.grib2, field 47 [surface_air_maximum_te -1e+8, 1e+8, { - {"model", GRIB_TYPE_STRING, 0, "glob"}, {"paramId", GRIB_TYPE_LONG, 147}, {"discipline", GRIB_TYPE_LONG, 0}, {"parameterCategory", GRIB_TYPE_LONG, 0}, @@ -693,7 +691,6 @@ s2s/ammc: warning: s2s.mx2t6_20151224_26.grib2, field 47 [surface_air_maximum_te 1e+05, 1e+07, { - {"model", GRIB_TYPE_STRING, 0, "glob"}, {"paramId", GRIB_TYPE_LONG, 176}, {"discipline", GRIB_TYPE_LONG, 0}, {"parameterCategory", GRIB_TYPE_LONG, 4}, @@ -3559,9 +3556,6 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"discipline", GRIB_TYPE_LONG, 0}, {"parameterCategory", GRIB_TYPE_LONG, 1}, {"parameterNumber", GRIB_TYPE_LONG, 19}, - - {"typeOfStatisticalProcessing", GRIB_TYPE_LONG, 1}, - {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, {NULL, }, }, @@ -3719,8 +3713,8 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"discipline", GRIB_TYPE_LONG, 0}, {"parameterCategory", GRIB_TYPE_LONG, 4}, {"parameterNumber", GRIB_TYPE_LONG, 54}, - {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, {"typeOfStatisticalProcessing", GRIB_TYPE_LONG, 1}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, {NULL, }, }, {&from_start, &predefined_level}, @@ -3842,7 +3836,7 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, {NULL, }, }, - {&from_start, &predefined_level}, + {&from_start, &predefined_level, &has_bitmap}, }, { "10_metre_eastward_wind_gust_since_pp_sfc", @@ -3912,7 +3906,7 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 174}, {NULL, }, }, - {&point_in_time, &predefined_level}, + {&point_in_time, &predefined_level, &has_bitmap}, }, { "fraction_of_snow_cover_sfc", @@ -3928,7 +3922,7 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, {NULL, }, }, - {&point_in_time, &predefined_level}, + {&point_in_time, &predefined_level, &has_bitmap}, }, { "snow_albedo_sfc", @@ -3946,6 +3940,22 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] }, {&point_in_time, &predefined_level, &has_bitmap}, }, + { + "temperature_of_snow_layer_sfc", + -1e+8, + 1e+8, + -1e+8, + 1e+8, + { + {"paramId", GRIB_TYPE_LONG, 238}, + {"discipline", GRIB_TYPE_LONG, 2}, + {"parameterCategory", GRIB_TYPE_LONG, 3}, + {"parameterNumber", GRIB_TYPE_LONG, 28}, + {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {NULL, }, + }, + {&point_in_time, &predefined_level, &has_bitmap}, + }, { "sea_ice_thickness_sfc", -1e+8, @@ -4067,7 +4077,7 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"typeOfSecondFixedSurface", GRIB_TYPE_LONG, 162}, {NULL, }, }, - {&point_in_time, &predefined_thickness}, + {&point_in_time, &predefined_thickness, &has_bitmap}, }, { "lake_mix_layer_temperature_sfc", @@ -4083,7 +4093,7 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 166}, {NULL, }, }, - {&point_in_time, &predefined_level}, + {&point_in_time, &predefined_level, &has_bitmap}, }, { "lake_mix_layer_depth_sfc", @@ -4099,7 +4109,7 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 166}, {NULL, }, }, - {&point_in_time, &predefined_level}, + {&point_in_time, &predefined_level, &has_bitmap}, }, { "lake_bottom_temperature_sfc", @@ -4115,7 +4125,7 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 162}, {NULL, }, }, - {&point_in_time, &predefined_level}, + {&point_in_time, &predefined_level, &has_bitmap}, }, { "lake_shape_factor_sfc", @@ -4131,7 +4141,7 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, {NULL, }, }, - {&point_in_time, &predefined_level}, + {&point_in_time, &predefined_level, &has_bitmap}, }, { "lake_ice_surface_temperature_sfc", @@ -4147,7 +4157,7 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 174}, {NULL, }, }, - {&point_in_time, &predefined_level}, + {&point_in_time, &predefined_level, &has_bitmap}, }, { "lake_ice_total_depth_sfc", @@ -4164,7 +4174,7 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"typeOfSecondFixedSurface", GRIB_TYPE_LONG, 176}, {NULL, }, }, - {&point_in_time, &predefined_thickness}, + {&point_in_time, &predefined_thickness, &has_bitmap}, }, { "lake_total_depth_sfc", @@ -4181,7 +4191,7 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"typeOfSecondFixedSurface", GRIB_TYPE_LONG, 162}, {NULL, }, }, - {&point_in_time, &predefined_thickness}, + {&point_in_time, &predefined_thickness, &has_bitmap}, }, { "momentum_flux_u_component_sfc", From 6fec74c9973f7cd251f7911085d9e9d7a3f17e42 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 12 Mar 2021 14:39:53 +0000 Subject: [PATCH 404/683] long_vector: Check error codes --- src/grib_accessor_class_long_vector.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/grib_accessor_class_long_vector.c b/src/grib_accessor_class_long_vector.c index 74bbb1a9e..3f995dc11 100644 --- a/src/grib_accessor_class_long_vector.c +++ b/src/grib_accessor_class_long_vector.c @@ -185,12 +185,12 @@ static int unpack_long(grib_accessor* a, long* val, size_t* len) /*TODO implement the dirty mechanism to avoid to unpack every time */ err = grib_get_size(grib_handle_of_accessor(a), self->vector, &size); - DebugAssert(!err); + if (err) return err; DebugAssert(size > 0); vector = (long*)grib_context_malloc(a->context, sizeof(long) * size); err = grib_unpack_long(va, vector, &size); - DebugAssert(!err); grib_context_free(a->context, vector); + if (err) return err; *val = v->v[self->index]; From c686b3b9fcaf21e1c3093febb866c685a7072279 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 12 Mar 2021 20:18:05 +0000 Subject: [PATCH 405/683] Testing: Split bufr_filter tests for more parallelism --- tests/CMakeLists.txt | 1 + tests/Makefile.am | 1 + tests/bufr_filter.sh | 42 ---------------------- tests/bufr_filter_unpack_pack.sh | 61 ++++++++++++++++++++++++++++++++ 4 files changed, 63 insertions(+), 42 deletions(-) create mode 100755 tests/bufr_filter_unpack_pack.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 8d08a2489..8af99cd36 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -120,6 +120,7 @@ if( HAVE_BUILD_TOOLS ) bufr_filter_extract_subsets bufr_filter_extract_datetime bufr_filter_extract_area + bufr_filter_unpack_pack bufr_json_data bufr_ls bufr_ls_json diff --git a/tests/Makefile.am b/tests/Makefile.am index f9f0e382d..94c2cbe14 100755 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -12,6 +12,7 @@ TESTS = definitions.sh \ bufr_filter_extract_subsets.sh \ bufr_filter_extract_datetime.sh \ bufr_filter_extract_area.sh \ + bufr_filter_unpack_pack.sh \ bufr_json_data.sh \ bufr_compare.sh \ bufr_dump_descriptors.sh \ diff --git a/tests/bufr_filter.sh b/tests/bufr_filter.sh index 6870a2e91..1dec1302a 100755 --- a/tests/bufr_filter.sh +++ b/tests/bufr_filter.sh @@ -418,48 +418,6 @@ rm -f ${f}.ref ${f}.log #rm -f new_*bufr #rm -f $testScript $testScript1 - -#----------------------------------------------------------- -# Test: packing -#----------------------------------------------------------- -cat > $fRules <> $fLog - echo "file: $f" >> $fLog - ${tools_dir}/codes_bufr_filter -o ${f}.out $fRules $f 2>> $fLog 1>> $fLog - - ${tools_dir}/bufr_compare ${f}.out $f - - rm -f ${f}.out -done - - -rm -f $fRules - #----------------------------------------------------------- # Test: get string #----------------------------------------------------------- diff --git a/tests/bufr_filter_unpack_pack.sh b/tests/bufr_filter_unpack_pack.sh new file mode 100755 index 000000000..c3e511109 --- /dev/null +++ b/tests/bufr_filter_unpack_pack.sh @@ -0,0 +1,61 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh + +set -u +cd ${data_dir}/bufr + +# Define a common label for all the tmp files +label="bufr_filter_unpack_pack_test" + +# Create log file +fLog=${label}".log" +rm -f $fLog +touch $fLog + +# Define filter rules file +fRules=${label}.filter + +cat > $fRules <> $fLog + ${tools_dir}/codes_bufr_filter -o ${f}.out $fRules $f 2>> $fLog 1>> $fLog + + ${tools_dir}/bufr_compare ${f}.out $f + + rm -f ${f}.out +done + + +rm -f $fRules $fLog From ccebec07dbe43c567a0c88b5974119144160edd0 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 12 Mar 2021 20:42:04 +0000 Subject: [PATCH 406/683] Testing: cleanup --- tests/bufr_dump_descriptors.sh | 4 +--- tests/bufr_ecc-1195.sh | 2 +- tests/bufr_wmo_tables.sh | 4 +--- tests/grib2_templates.sh | 1 - tests/grib2_version.sh | 1 - tests/grib_bpv_limit.sh | 1 - tests/grib_calendar.sh | 1 - tests/grib_complex.sh | 1 - tests/grib_ecc-1195.sh | 2 +- tests/grib_ecc-1212.sh | 2 +- tests/grib_uerra.sh | 2 -- 11 files changed, 5 insertions(+), 16 deletions(-) diff --git a/tests/bufr_dump_descriptors.sh b/tests/bufr_dump_descriptors.sh index c42f11457..18fa959bd 100755 --- a/tests/bufr_dump_descriptors.sh +++ b/tests/bufr_dump_descriptors.sh @@ -30,10 +30,8 @@ fi # Test downloaded data files #============================================== bufr_files=`cat ${data_dir}/bufr/bufr_data_files.txt` -REDIRECT=/dev/null -for file in ${bufr_files} -do +for file in ${bufr_files}; do ${tools_dir}/bufr_dump -d ${data_dir}/bufr/$file >/dev/null done diff --git a/tests/bufr_ecc-1195.sh b/tests/bufr_ecc-1195.sh index 241d8290f..672c86e20 100755 --- a/tests/bufr_ecc-1195.sh +++ b/tests/bufr_ecc-1195.sh @@ -10,7 +10,7 @@ . ./include.sh set -u -REDIRECT=/dev/null + label="bufr_ecc-1195-test" temp1=temp.$label.bufr temp2=temp.$label.txt diff --git a/tests/bufr_wmo_tables.sh b/tests/bufr_wmo_tables.sh index dd907852c..850b82294 100755 --- a/tests/bufr_wmo_tables.sh +++ b/tests/bufr_wmo_tables.sh @@ -22,7 +22,6 @@ fDump=${label}".tmp.dump" # Testing latest WMO tables # -------------------------------- bufr_files=`cat ${data_dir}/bufr/bufr_data_files.txt` -REDIRECT=/dev/null blacklist=masterTablesVersionNumber @@ -38,8 +37,7 @@ blacklist=$blacklist",scanLevelQualityFlags" # The units for centre also changed blacklist=$blacklist",centre,subCentre,generatingApplication" -for file in ${bufr_files} -do +for file in ${bufr_files}; do input=${data_dir}/bufr/$file mtv=`${tools_dir}/bufr_get -wcount=1 -p masterTablesVersionNumber $input` # Must exclude old versions (before 14): diff --git a/tests/grib2_templates.sh b/tests/grib2_templates.sh index 5fd0e0f46..b1dad7335 100755 --- a/tests/grib2_templates.sh +++ b/tests/grib2_templates.sh @@ -9,7 +9,6 @@ # . ./include.sh set -u -REDIRECT=/dev/null label="grib2_templates" diff --git a/tests/grib2_version.sh b/tests/grib2_version.sh index 349a5ab82..589e2a01c 100755 --- a/tests/grib2_version.sh +++ b/tests/grib2_version.sh @@ -9,7 +9,6 @@ # . ./include.sh set -u -REDIRECT=/dev/null label="grib2_version" if [ ! -d "$ECCODES_DEFINITION_PATH" ]; then diff --git a/tests/grib_bpv_limit.sh b/tests/grib_bpv_limit.sh index edffa3c75..3360a6812 100755 --- a/tests/grib_bpv_limit.sh +++ b/tests/grib_bpv_limit.sh @@ -15,7 +15,6 @@ . ./include.sh -REDIRECT=/dev/null $EXEC ${test_dir}/grib_bpv_limit ${data_dir}/regular_latlon_surface.grib2 2>/dev/null diff --git a/tests/grib_calendar.sh b/tests/grib_calendar.sh index ceebeb2ac..892e7063a 100755 --- a/tests/grib_calendar.sh +++ b/tests/grib_calendar.sh @@ -10,7 +10,6 @@ . ./include.sh -REDIRECT=/dev/null temp1=temp1.calendar.$$ temp2=temp2.calendar.$$ diff --git a/tests/grib_complex.sh b/tests/grib_complex.sh index 5d451da2a..36854c27d 100755 --- a/tests/grib_complex.sh +++ b/tests/grib_complex.sh @@ -10,7 +10,6 @@ . ./include.sh -REDIRECT=/dev/null label="grib_complex" temp=${label}".grib.tmp" temp1=${label}".1.tmp" diff --git a/tests/grib_ecc-1195.sh b/tests/grib_ecc-1195.sh index 81532e18d..734668e75 100755 --- a/tests/grib_ecc-1195.sh +++ b/tests/grib_ecc-1195.sh @@ -10,7 +10,7 @@ . ./include.sh set -u -REDIRECT=/dev/null + label="grib_ecc-1195-test" temp1=temp.$label.grib temp2=temp.$label.txt diff --git a/tests/grib_ecc-1212.sh b/tests/grib_ecc-1212.sh index 148dad121..3caaff0e8 100755 --- a/tests/grib_ecc-1212.sh +++ b/tests/grib_ecc-1212.sh @@ -10,7 +10,7 @@ . ./include.sh set -u -REDIRECT=/dev/null + label="grib_ecc-1212-test" tempGrib=temp.$label.grib tempFilt=temp.$label.filt diff --git a/tests/grib_uerra.sh b/tests/grib_uerra.sh index bdc0664cb..b57ed1b32 100755 --- a/tests/grib_uerra.sh +++ b/tests/grib_uerra.sh @@ -10,8 +10,6 @@ . ./include.sh -REDIRECT=/dev/null - grib2_sample=$ECCODES_SAMPLES_PATH/GRIB2.tmpl label=grib_uerra_test tempSample=tempSample.${label}.grib2 From c537cc377152c553ecba1302ccc8c155e3e6640d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 13 Mar 2021 14:11:43 +0000 Subject: [PATCH 407/683] Return correct error code --- src/grib_accessor_class_element.c | 1 - src/grib_accessor_class_long.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/grib_accessor_class_element.c b/src/grib_accessor_class_element.c index 04c9f5ce1..f68f0aab5 100644 --- a/src/grib_accessor_class_element.c +++ b/src/grib_accessor_class_element.c @@ -205,7 +205,6 @@ static int pack_long(grib_accessor* a, const long* val, size_t* len) if ((ret = grib_get_long_array_internal(grib_handle_of_accessor(a), self->array, ar, &size)) != GRIB_SUCCESS) return ret; - ar[self->element] = *val; if ((ret = grib_set_long_array_internal(grib_handle_of_accessor(a), self->array, ar, size)) != GRIB_SUCCESS) diff --git a/src/grib_accessor_class_long.c b/src/grib_accessor_class_long.c index 85bac5ebc..6350ef106 100644 --- a/src/grib_accessor_class_long.c +++ b/src/grib_accessor_class_long.c @@ -233,7 +233,7 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) values = (long*)grib_context_malloc(a->context, rlen * sizeof(long)); if (!values) - return GRIB_INTERNAL_ERROR; + return GRIB_OUT_OF_MEMORY; ret = grib_unpack_long(a, values, &rlen); if (ret != GRIB_SUCCESS) { From a0485f41b64cf0767a5106c395656138524469cd Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 13 Mar 2021 14:20:07 +0000 Subject: [PATCH 408/683] Examples: clean up --- examples/C/bufr_attributes.sh | 4 ++-- examples/C/bufr_expanded.sh | 5 ++--- examples/C/bufr_missing.sh | 8 +++----- examples/C/bufr_read_header.sh | 5 ++--- examples/C/bufr_read_synop.sh | 8 +++----- examples/C/bufr_read_temp.sh | 4 ++-- examples/C/bufr_set_keys.sh | 4 ++-- examples/F90/bufr_attributes.sh | 4 ++-- examples/F90/bufr_clone.sh | 9 ++++----- examples/F90/bufr_expanded.sh | 2 +- examples/F90/bufr_get_keys.sh | 4 ++-- examples/F90/bufr_get_string_array.sh | 6 +++--- examples/F90/bufr_keys_iterator.sh | 4 ++-- examples/F90/bufr_read_synop.sh | 4 ++-- examples/F90/bufr_read_temp.sh | 3 +-- examples/F90/grib_read_message.sh | 3 +-- examples/F90/grib_samples.sh | 2 +- 17 files changed, 35 insertions(+), 44 deletions(-) diff --git a/examples/C/bufr_attributes.sh b/examples/C/bufr_attributes.sh index 9bffb6b16..e8a2e792b 100755 --- a/examples/C/bufr_attributes.sh +++ b/examples/C/bufr_attributes.sh @@ -16,7 +16,7 @@ label="bufr_attributes_test_c" #Define tmp file fTmp=${label}.tmp.txt -rm -f $fTmp | true +rm -f $fTmp #We check "syno_multi.bufr". The path is #hardcoded in the example @@ -31,4 +31,4 @@ ${examples_dir}/c_bufr_attributes 2> $REDIRECT > $fTmp #cat $fTmp #Clean up -rm -f $fTmp | true +rm -f $fTmp diff --git a/examples/C/bufr_expanded.sh b/examples/C/bufr_expanded.sh index 718bce1b9..6c9b6f947 100755 --- a/examples/C/bufr_expanded.sh +++ b/examples/C/bufr_expanded.sh @@ -14,12 +14,11 @@ label="bufr_expanded_test_c" #Prepare tmp file fTmp=${label}.tmp.txt -rm -f $fTmp | true +rm -f $fTmp -#----------------------------------------------------- +#---------------------------------------------------- # Test reading the expanded values #---------------------------------------------------- - f=${data_dir}/bufr/syno_1.bufr REDIRECT=/dev/null diff --git a/examples/C/bufr_missing.sh b/examples/C/bufr_missing.sh index ae6b0def6..073415e09 100755 --- a/examples/C/bufr_missing.sh +++ b/examples/C/bufr_missing.sh @@ -16,19 +16,17 @@ label="bufr_missing_test_c" #Define tmp file fTmp=${label}.tmp.txt -rm -f $fTmp | true +rm -f $fTmp #We check "syno_1.bufr". The path is #hardcoded in the example -REDIRECT=/dev/null - #Write the key values into a file -${examples_dir}/c_bufr_missing #2> $REDIRECT > $fTmp +${examples_dir}/c_bufr_missing #TODO: check the results #cat $fTmp #Clean up -rm -f $fTmp | true +rm -f $fTmp diff --git a/examples/C/bufr_read_header.sh b/examples/C/bufr_read_header.sh index 8491e461c..f7ce7c502 100755 --- a/examples/C/bufr_read_header.sh +++ b/examples/C/bufr_read_header.sh @@ -15,13 +15,12 @@ label="bufr_read_header_test_c" #Prepare tmp file fTmp=${label}.tmp.txt -rm -f $fTmp | true +rm -f $fTmp #----------------------------------------------------- # Test reading the header from a BUFR # file with multiple messages #---------------------------------------------------- - f=${data_dir}/bufr/syno_multi.bufr fRef=${f}.header.ref @@ -36,4 +35,4 @@ diff -w $fRef $fTmp >$REDIRECT 2> $REDIRECT #cat $fRes #Clean up -rm -f ${fTmp} | true +rm -f ${fTmp} diff --git a/examples/C/bufr_read_synop.sh b/examples/C/bufr_read_synop.sh index 9d132ad63..68cf264d7 100755 --- a/examples/C/bufr_read_synop.sh +++ b/examples/C/bufr_read_synop.sh @@ -16,19 +16,17 @@ label="bufr_read_synop_test_c" #Define tmp file fTmp=${label}".tmp.txt" -rm -f $fTmp | true +rm -f $fTmp #We check "syno_multi.bufr". The path is #hardcoded in the example -REDIRECT=/dev/null - #Write the values into a file and compare with reference -${examples_dir}/c_bufr_read_synop #2> $REDIRECT > $fTmp +${examples_dir}/c_bufr_read_synop #TODO: check the output #cat $fTmp #Clean up -rm -f $fTmp | true +rm -f $fTmp diff --git a/examples/C/bufr_read_temp.sh b/examples/C/bufr_read_temp.sh index 89b7f69f4..77c70fd37 100755 --- a/examples/C/bufr_read_temp.sh +++ b/examples/C/bufr_read_temp.sh @@ -16,7 +16,7 @@ label="bufr_read_temp_c" #Define tmp file fTmp=${label}.tmp.txt -rm -f $fTmp | true +rm -f $fTmp #We check "temp_101.bufr". The path is #hardcoded in the example @@ -31,4 +31,4 @@ ${examples_dir}/c_bufr_read_temp #2> $REDIRECT > $fTmp #cat $fTmp #Clean up -rm -f $fTmp | true +rm -f $fTmp diff --git a/examples/C/bufr_set_keys.sh b/examples/C/bufr_set_keys.sh index b52ff66b8..22da5eeb9 100755 --- a/examples/C/bufr_set_keys.sh +++ b/examples/C/bufr_set_keys.sh @@ -16,7 +16,7 @@ label="bufr_set_keys_test_c" #Define tmp file fBufrTmp=${label}.tmp.bufr -rm -f $fBufrTmp | true +rm -f $fBufrTmp #We check "syno_multi.bufr". The path is #hardcoded in the example @@ -43,4 +43,4 @@ set -e [ `${tools_dir}/bufr_count $f` -eq `${tools_dir}/bufr_count ${fBufrTmp}` ] #Clean up -rm -f $fBufrTmp | true +rm -f $fBufrTmp diff --git a/examples/F90/bufr_attributes.sh b/examples/F90/bufr_attributes.sh index 76d58abe0..684a08b82 100755 --- a/examples/F90/bufr_attributes.sh +++ b/examples/F90/bufr_attributes.sh @@ -16,7 +16,7 @@ label="bufr_attributes_test_f" #Define tmp file fTmp=${label}.tmp.txt -rm -f ${fTmp} | true +rm -f ${fTmp} #We check "syno_multi.bufr". The path is #hardcoded in the example @@ -31,4 +31,4 @@ ${examples_dir}/eccodes_f_bufr_attributes #2> $REDIRECT > $fTmp #cat $fTmp #Clean up -rm -f ${fTmp} | true +rm -f ${fTmp} diff --git a/examples/F90/bufr_clone.sh b/examples/F90/bufr_clone.sh index 54fdb9bff..b783cd71f 100755 --- a/examples/F90/bufr_clone.sh +++ b/examples/F90/bufr_clone.sh @@ -14,7 +14,7 @@ label="bufr_clone_test_f" #Prepare tmp file fBufrTmp=${label}.clone.bufr -rm -f $fBufrTmp | true +rm -f $fBufrTmp #We clone a bufr file with multiple messages. f=${data_dir}/bufr/syno_multi.bufr @@ -30,11 +30,10 @@ ${tools_dir}/bufr_compare $f $fBufrTmp >$REDIRECT 2> $REDIRECT #Check if clone is different if [ $? -eq 0 ]; then - echo "cloning produced identical files " >&2 - exit 1 + echo "cloning produced identical files " >&2 + exit 1 fi - set -e #Clean up -rm -f ${fBufrTmp} | true +rm -f ${fBufrTmp} diff --git a/examples/F90/bufr_expanded.sh b/examples/F90/bufr_expanded.sh index 8b75c97ca..48c6fc351 100755 --- a/examples/F90/bufr_expanded.sh +++ b/examples/F90/bufr_expanded.sh @@ -14,7 +14,7 @@ label="bufr_expanded_test_f" #Prepare tmp file fTmp=${label}.tmp.txt -rm -f $fTmp | true +rm -f $fTmp #----------------------------------------------------- # Test reading the expanded values diff --git a/examples/F90/bufr_get_keys.sh b/examples/F90/bufr_get_keys.sh index 6650f0ef3..6cc34839d 100755 --- a/examples/F90/bufr_get_keys.sh +++ b/examples/F90/bufr_get_keys.sh @@ -16,7 +16,7 @@ label="bufr_get_keys_test_f" #Define tmp file fTmp=${label}.tmp.txt -rm -f ${fTmp} | true +rm -f ${fTmp} #We check "syno_multi.bufr". The path is #hardcoded in the example @@ -31,4 +31,4 @@ ${examples_dir}/eccodes_f_bufr_get_keys 2> $REDIRECT > $fTmp #cat $fTmp #Clean up -rm -f ${fTmp} | true +rm -f ${fTmp} diff --git a/examples/F90/bufr_get_string_array.sh b/examples/F90/bufr_get_string_array.sh index e22728ec3..d94c72b41 100755 --- a/examples/F90/bufr_get_string_array.sh +++ b/examples/F90/bufr_get_string_array.sh @@ -8,13 +8,13 @@ # virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. . ./include.sh -set -x + #Define a common label for all the tmp files label="bufr_get_string_array_test_f" #Prepare tmp file fTmp=${label}.tmp.txt -rm -f $fTmp | true +rm -f $fTmp #----------------------------------------------------- # Test get string array from a BUFR @@ -33,7 +33,7 @@ diff -w $fRef $fTmp #cat $fRes #Clean up -rm -f ${fTmp} | true +rm -f ${fTmp} diff --git a/examples/F90/bufr_keys_iterator.sh b/examples/F90/bufr_keys_iterator.sh index 80f9f58d5..cc2e768a2 100755 --- a/examples/F90/bufr_keys_iterator.sh +++ b/examples/F90/bufr_keys_iterator.sh @@ -15,7 +15,7 @@ label="bufr_keys_iterator_test_f" #Define tmp file fTmp=${label}".tmp.txt" -rm -f $fTmp | true +rm -f $fTmp REDIRECT=/dev/null @@ -29,4 +29,4 @@ ${examples_dir}/eccodes_f_bufr_keys_iterator #2> $REDIRECT > $fTmp #cat $fTmp #Clean up -rm -f $fTmp | true +rm -f $fTmp diff --git a/examples/F90/bufr_read_synop.sh b/examples/F90/bufr_read_synop.sh index 902c75fcc..d1f424df6 100755 --- a/examples/F90/bufr_read_synop.sh +++ b/examples/F90/bufr_read_synop.sh @@ -16,7 +16,7 @@ label="bufr_read_synop_test_f" #Define tmp file fTmp=${label}".tmp.txt" -rm -f $fTmp | true +rm -f $fTmp #We check "syno_multi.bufr". The path is #hardcoded in the example @@ -31,4 +31,4 @@ ${examples_dir}/eccodes_f_bufr_read_synop #2> $REDIRECT > $fTmp #cat $fTmp #Clean up -rm -f $fTmp | true +rm -f $fTmp diff --git a/examples/F90/bufr_read_temp.sh b/examples/F90/bufr_read_temp.sh index 0b48d432c..26cc70b4a 100755 --- a/examples/F90/bufr_read_temp.sh +++ b/examples/F90/bufr_read_temp.sh @@ -16,7 +16,7 @@ label="bufr_read_temp_f" #Define tmp file fTmp=${label}.tmp.txt -rm -f $fTmp | true +rm -f $fTmp # The path to the BUFR file is hardcoded in the example @@ -29,4 +29,3 @@ ${examples_dir}/eccodes_f_bufr_read_temp > $fTmp #Clean up rm -f $fTmp - diff --git a/examples/F90/grib_read_message.sh b/examples/F90/grib_read_message.sh index 639fc4c97..0b5687505 100755 --- a/examples/F90/grib_read_message.sh +++ b/examples/F90/grib_read_message.sh @@ -12,11 +12,10 @@ in=../../data/index.grib out=out.readmsg.grib -rm -f $out | true +rm -f $out ${examples_dir}/eccodes_f_grib_read_message > /dev/null ${tools_dir}/grib_compare $in $out rm -f $out - diff --git a/examples/F90/grib_samples.sh b/examples/F90/grib_samples.sh index d77aeb8b1..daecadde5 100755 --- a/examples/F90/grib_samples.sh +++ b/examples/F90/grib_samples.sh @@ -10,7 +10,7 @@ . ./include.sh # Take a GRIB file in the data folder and make it a sample file (extension .tmpl) -rm -f ${data_dir}/regular_latlon_surface.grib1.tmpl | true +rm -f ${data_dir}/regular_latlon_surface.grib1.tmpl cp ${data_dir}/regular_latlon_surface.grib1 ${data_dir}/regular_latlon_surface.grib1.tmpl # Change the ECCODES_SAMPLES_PATH: put the data dir first From 67a6d6dcafd903e82453b8bb537349ce0b3c4c34 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 13 Mar 2021 15:45:11 +0000 Subject: [PATCH 409/683] Testing: rename bufr_filter test --- tests/CMakeLists.txt | 2 +- tests/Makefile.am | 2 +- tests/{bufr_filter.sh => bufr_filter_misc.sh} | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename tests/{bufr_filter.sh => bufr_filter_misc.sh} (99%) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 8af99cd36..ffd6d74ff 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -116,7 +116,7 @@ if( HAVE_BUILD_TOOLS ) bufr_copy bufr_count bufr_get - bufr_filter + bufr_filter_misc bufr_filter_extract_subsets bufr_filter_extract_datetime bufr_filter_extract_area diff --git a/tests/Makefile.am b/tests/Makefile.am index 94c2cbe14..7299837e4 100755 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -8,7 +8,7 @@ TESTS = definitions.sh \ bufr_dump_samples.sh \ bufr_dump_subset.sh \ bufr_json_samples.sh \ - bufr_filter.sh \ + bufr_filter_misc.sh \ bufr_filter_extract_subsets.sh \ bufr_filter_extract_datetime.sh \ bufr_filter_extract_area.sh \ diff --git a/tests/bufr_filter.sh b/tests/bufr_filter_misc.sh similarity index 99% rename from tests/bufr_filter.sh rename to tests/bufr_filter_misc.sh index 1dec1302a..a796852a1 100755 --- a/tests/bufr_filter.sh +++ b/tests/bufr_filter_misc.sh @@ -14,7 +14,7 @@ set -x cd ${data_dir}/bufr # Define a common label for all the tmp files -label="bufr_filter_test" +label="bufr_filter_misc_test" # Create log file fLog=${label}".log" From b0c22a42bd5ff2ab571e843381f18d9bbcdbdda9 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 13 Mar 2021 18:24:23 +0000 Subject: [PATCH 410/683] Testing: Fix names of output temp files --- tests/bufr_filter_extract_subsets.sh | 21 ++++++++++----------- tests/bufr_filter_unpack_pack.sh | 12 ++++++------ 2 files changed, 16 insertions(+), 17 deletions(-) diff --git a/tests/bufr_filter_extract_subsets.sh b/tests/bufr_filter_extract_subsets.sh index 22c7a8900..d985b6343 100755 --- a/tests/bufr_filter_extract_subsets.sh +++ b/tests/bufr_filter_extract_subsets.sh @@ -21,8 +21,8 @@ fLog=${label}".log" rm -f $fLog touch $fLog -# Define tmp bufr file -fBufrTmp=${label}".bufr.tmp" +fBufrTmp1=temp1.${label}.bufr +fBufrTmp2=temp2.${label}.bufr # Define filter rules file fRules=${label}.filter @@ -96,7 +96,7 @@ write; EOF f="g2nd_208.bufr" -fOut="g2nd_208.bufr.out" +fOut="$label.g2nd_208.bufr.out" echo "Test: extract subsets compressed data" >> $fLog echo "file: $f" >> $fLog @@ -149,7 +149,7 @@ f="imssnow.bufr" echo "Test: Simple thinning" >> $fLog echo "file: $f" >> $fLog -${tools_dir}/codes_bufr_filter -o ${f}.out $fRules $f +${tools_dir}/codes_bufr_filter -o $fBufrTmp1 $fRules $f cat > $fRules < ${f}.log +${tools_dir}/codes_bufr_filter $fRules $fBufrTmp1 > ${f}.log cat > ${f}.log.ref <> $fLog echo "file: $f" >> $fLog -${tools_dir}/codes_bufr_filter -o ${f}.out $fRules $f +${tools_dir}/codes_bufr_filter -o $fBufrTmp1 $fRules $f cat > $fRules < $fRules < ${f}.log +${tools_dir}/codes_bufr_filter $fRules $fBufrTmp2 > ${f}.log cat > ${f}.log.ref < $fRules <> $fLog - ${tools_dir}/codes_bufr_filter -o ${f}.out $fRules $f 2>> $fLog 1>> $fLog + echo "Test: unpack and pack $f ..." >> $fLog + ${tools_dir}/codes_bufr_filter -o $temp $fRules $f 2>> $fLog 1>> $fLog + ${tools_dir}/bufr_compare $temp $f - ${tools_dir}/bufr_compare ${f}.out $f - - rm -f ${f}.out + rm -f $temp done -rm -f $fRules $fLog +rm -f $fRules $fLog $temp From 2645cacfac894d7533e89f6e21b3d9b78d9a6855 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 13 Mar 2021 20:15:14 +0000 Subject: [PATCH 411/683] Testing: Python BUFR encode --- tests/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index ffd6d74ff..15887b4ca 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -270,7 +270,8 @@ if( HAVE_BUILD_TOOLS ) if( HAVE_PYTHON2 AND ENABLE_EXTRA_TESTS ) - list( APPEND ptests bufr_dump_encode_python bufr_dump_decode_python ) + list( APPEND ptests bufr_dump_decode_python ) + # list( APPEND ptests bufr_dump_encode_python ) foreach( test ${ptests} ) ecbuild_add_test( TARGET eccodes_t_${test} TYPE SCRIPT From 637cb4255090e82ac0ea40e87fb1badbcdb74dc3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 13 Mar 2021 21:10:16 +0000 Subject: [PATCH 412/683] CMake: cleanup --- examples/C/CMakeLists.txt | 10 +++++----- examples/F90/CMakeLists.txt | 3 +-- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/examples/C/CMakeLists.txt b/examples/C/CMakeLists.txt index eb25fbe23..400f946b4 100644 --- a/examples/C/CMakeLists.txt +++ b/examples/C/CMakeLists.txt @@ -6,7 +6,7 @@ configure_file( include.ctest.sh.in include.ctest.sh @ONLY ) execute_process( COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/include.sh ${CMAKE_CURRENT_BINARY_DIR} ) # Build the executables used by test scripts -######################################################################## +############################################# list( APPEND test_bins grib_nearest grib_set_bitmap @@ -50,6 +50,7 @@ list( APPEND test_bins bufr_read_temp bufr_set_keys bufr_subset ) + foreach( tool ${test_bins} ) ecbuild_add_executable( TARGET c_${tool} NOINSTALL @@ -58,7 +59,7 @@ foreach( tool ${test_bins} ) endforeach() # Now add each test (shell scripts) -######################################################################## +#################################### if( HAVE_BUILD_TOOLS ) # Command line tools are available list(APPEND tests_sanity @@ -147,8 +148,8 @@ foreach( test ${tests_extra} ) TEST_DEPENDS eccodes_download_gribs eccodes_download_bufrs ) endforeach() -######################################################################## # Tests which are conditional +############################# if( ENABLE_EXTRA_TESTS AND HAVE_ECCODES_THREADS ) # For POSIX threads list(APPEND pthread_tests grib_pthreads bufr_pthreads) @@ -164,9 +165,8 @@ if( ENABLE_EXTRA_TESTS AND HAVE_ECCODES_THREADS ) endforeach() endif() - -######################################################################## # Tests with no script +###################### ecbuild_add_test( TARGET eccodes_c_new_sample SOURCES new_sample.c diff --git a/examples/F90/CMakeLists.txt b/examples/F90/CMakeLists.txt index a39a5bca8..1a3b66c46 100644 --- a/examples/F90/CMakeLists.txt +++ b/examples/F90/CMakeLists.txt @@ -6,7 +6,7 @@ configure_file( include.ctest.sh.in include.ctest.sh @ONLY ) execute_process( COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/include.sh ${CMAKE_CURRENT_BINARY_DIR} ) # Add all the tests -############################################# +#################### if( HAVE_BUILD_TOOLS ) list( APPEND tests_sanity grib_set_pv @@ -124,7 +124,6 @@ ecbuild_add_test( TARGET eccodes_f_grib_set_packing COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/grib_set_packing.sh ) # Executables without a shell script -# TODO ecbuild_add_executable( TARGET eccodes_f_new_from_file NOINSTALL SOURCES new_from_file.f90 From 9ae1c478f9da3de6616af93778a865638d4a1326 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 14 Mar 2021 22:35:13 +0000 Subject: [PATCH 413/683] Testing: Python BUFR encode --- tests/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 1e99e9e9c..4f888cc95 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -267,7 +267,8 @@ if( HAVE_BUILD_TOOLS ) if( HAVE_PYTHON2 AND ENABLE_EXTRA_TESTS ) - list( APPEND ptests bufr_dump_encode_python bufr_dump_decode_python ) + list( APPEND ptests bufr_dump_decode_python ) + # list( APPEND ptests bufr_dump_encode_python ) foreach( test ${ptests} ) ecbuild_add_test( TARGET eccodes_t_${test} TYPE SCRIPT From 1ad546c3345387e3375832db18a2d34214ef2122 Mon Sep 17 00:00:00 2001 From: Richard Mladek Date: Mon, 15 Mar 2021 14:06:21 +0000 Subject: [PATCH 414/683] CARRA/CERRA DGOV-318 --- tigge/tigge_check.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tigge/tigge_check.h b/tigge/tigge_check.h index 7e603f3e2..f25585309 100644 --- a/tigge/tigge_check.h +++ b/tigge/tigge_check.h @@ -3991,16 +3991,16 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {&point_in_time, &predefined_level, &has_bitmap}, }, { - "roughness_length_for_heat", + "surface_roughness_length_for_heat", -1e+8, 1e+8, -1e+8, 1e+8, { - {"paramId", GRIB_TYPE_LONG, 260457}, + {"paramId", GRIB_TYPE_LONG, 260651}, {"discipline", GRIB_TYPE_LONG, 2}, {"parameterCategory", GRIB_TYPE_LONG, 0}, - {"parameterNumber", GRIB_TYPE_LONG, 216}, + {"parameterNumber", GRIB_TYPE_LONG, 192}, {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, {NULL, }, }, From b9c66456cd32d57de18d6a3460c7b800e11eede6 Mon Sep 17 00:00:00 2001 From: Richard Mladek Date: Mon, 15 Mar 2021 14:13:34 +0000 Subject: [PATCH 415/683] CARRA/CERRA DGOV-318 --- tigge/tigge_check.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tigge/tigge_check.h b/tigge/tigge_check.h index f25585309..986d9812b 100644 --- a/tigge/tigge_check.h +++ b/tigge/tigge_check.h @@ -4004,7 +4004,7 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, {NULL, }, }, - {&point_in_time, &predefined_level}, + {&point_in_time, &predefined_level, &has_bitmap}, }, { "volumetric_soil_ice_layer", From 543aab6f527bbabe2048dea56db9ff6157f14fb2 Mon Sep 17 00:00:00 2001 From: Richard Mladek Date: Mon, 15 Mar 2021 14:58:54 +0000 Subject: [PATCH 416/683] CARRA/CERRA DGOV-318 --- tigge/tigge_check.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tigge/tigge_check.h b/tigge/tigge_check.h index 986d9812b..07181ee83 100644 --- a/tigge/tigge_check.h +++ b/tigge/tigge_check.h @@ -3834,6 +3834,7 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"parameterNumber", GRIB_TYPE_LONG, 192}, {"typeOfStatisticalProcessing", GRIB_TYPE_LONG, 1}, {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {"localTablesVersion", GRIB_TYPE_LONG, 1}, {NULL, }, }, {&from_start, &predefined_level, &has_bitmap}, @@ -4002,6 +4003,7 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"parameterCategory", GRIB_TYPE_LONG, 0}, {"parameterNumber", GRIB_TYPE_LONG, 192}, {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, + {"localTablesVersion", GRIB_TYPE_LONG, 1}, {NULL, }, }, {&point_in_time, &predefined_level, &has_bitmap}, From 5637fb9312cd1249104005b397fea87776053034 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 15 Mar 2021 18:16:22 +0000 Subject: [PATCH 417/683] ECC-1223: GRIB: New and updated parameters for CARRA/CERRA, bunch 3.1 --- definitions/grib2/cfVarName.def | 9 --------- .../grib2/localConcepts/ecmf/cfVarName.def | 17 +++++++++++++++++ definitions/grib2/localConcepts/ecmf/name.def | 17 +++++++++++++++++ .../grib2/localConcepts/ecmf/paramId.def | 17 +++++++++++++++++ .../grib2/localConcepts/ecmf/shortName.def | 17 +++++++++++++++++ definitions/grib2/localConcepts/ecmf/units.def | 17 +++++++++++++++++ definitions/grib2/name.def | 9 --------- definitions/grib2/paramId.def | 9 --------- definitions/grib2/shortName.def | 9 --------- definitions/grib2/units.def | 9 --------- 10 files changed, 85 insertions(+), 45 deletions(-) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 0cdde2288..b6cdfc125 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -1115,15 +1115,6 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } -#Time integral of snow evaporation flux -'tisef' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } #Time integral of evapotranspiration flux 'tietrf' = { discipline = 2 ; diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.def b/definitions/grib2/localConcepts/ecmf/cfVarName.def index 6c6570bb4..bb9797d4b 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.def @@ -13636,6 +13636,23 @@ parameterCategory = 228 ; parameterNumber = 255 ; } +#Time integral of snow evaporation flux +'tisef' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface roughness length for heat +'srlh' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 200 ; + } #Stream function gradient 'strfgrd' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/name.def b/definitions/grib2/localConcepts/ecmf/name.def index f54c9b6f3..fc3e50749 100644 --- a/definitions/grib2/localConcepts/ecmf/name.def +++ b/definitions/grib2/localConcepts/ecmf/name.def @@ -13636,6 +13636,23 @@ parameterCategory = 228 ; parameterNumber = 255 ; } +#Time integral of snow evaporation flux +'Time integral of snow evaporation flux' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface roughness length for heat +'Surface roughness length for heat' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 200 ; + } #Stream function gradient 'Stream function gradient' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/paramId.def b/definitions/grib2/localConcepts/ecmf/paramId.def index 7ce88f622..c6cab33a8 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.def @@ -13636,6 +13636,23 @@ parameterCategory = 228 ; parameterNumber = 255 ; } +#Time integral of snow evaporation flux +'235072' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface roughness length for heat +'260651' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 200 ; + } #Stream function gradient '129001' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/shortName.def b/definitions/grib2/localConcepts/ecmf/shortName.def index 78aa64617..e467953c2 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.def @@ -13636,6 +13636,23 @@ parameterCategory = 228 ; parameterNumber = 255 ; } +#Time integral of snow evaporation flux +'tisef' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface roughness length for heat +'srlh' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 200 ; + } #Stream function gradient 'strfgrd' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/units.def b/definitions/grib2/localConcepts/ecmf/units.def index 6c45e71ed..01163d309 100644 --- a/definitions/grib2/localConcepts/ecmf/units.def +++ b/definitions/grib2/localConcepts/ecmf/units.def @@ -13636,6 +13636,23 @@ parameterCategory = 228 ; parameterNumber = 255 ; } +#Time integral of snow evaporation flux +'kg m**-2' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 192 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 255 ; + typeOfStatisticalProcessing = 1 ; + } +#Surface roughness length for heat +'m' = { + localTablesVersion = 1 ; + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 200 ; + } #Stream function gradient 'm**2 s**-1' = { discipline = 192 ; diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index f495f19ab..a97d52c44 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -1115,15 +1115,6 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } -#Time integral of snow evaporation flux -'Time integral of snow evaporation flux' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } #Time integral of evapotranspiration flux 'Time integral of evapotranspiration flux' = { discipline = 2 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index c6aceaa38..561c119a6 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -1115,15 +1115,6 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } -#Time integral of snow evaporation flux -'235072' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } #Time integral of evapotranspiration flux '235073' = { discipline = 2 ; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 82c4991c3..4ed813946 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -1115,15 +1115,6 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } -#Time integral of snow evaporation flux -'tisef' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } #Time integral of evapotranspiration flux 'tietrf' = { discipline = 2 ; diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index 43c271ab8..44268cf33 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -1115,15 +1115,6 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } -#Time integral of snow evaporation flux -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 192 ; - typeOfFirstFixedSurface = 1 ; - typeOfSecondFixedSurface = 255 ; - typeOfStatisticalProcessing = 1 ; - } #Time integral of evapotranspiration flux 'kg m**-2' = { discipline = 2 ; From e97820b614a55aafb78193fd3febc45c258da4c7 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 15 Mar 2021 18:50:04 +0000 Subject: [PATCH 418/683] ECC-1223: Local tables --- definitions/grib2/tables/local/ecmf/1/4.2.0.1.table | 3 +++ definitions/grib2/tables/local/ecmf/1/4.2.0.20.table | 2 +- definitions/grib2/tables/local/ecmf/1/4.2.2.0.table | 1 + definitions/grib2/tables/local/ecmf/1/4.230.table | 2 -- 4 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 definitions/grib2/tables/local/ecmf/1/4.2.0.1.table diff --git a/definitions/grib2/tables/local/ecmf/1/4.2.0.1.table b/definitions/grib2/tables/local/ecmf/1/4.2.0.1.table new file mode 100644 index 000000000..bf525b287 --- /dev/null +++ b/definitions/grib2/tables/local/ecmf/1/4.2.0.1.table @@ -0,0 +1,3 @@ +# Code table 4.2 - discipline=0 category=1 for ECMWF +192 192 Snow evaporation rate (kg m-2 s-1) + diff --git a/definitions/grib2/tables/local/ecmf/1/4.2.0.20.table b/definitions/grib2/tables/local/ecmf/1/4.2.0.20.table index 30b94d7a7..46fce15a8 100644 --- a/definitions/grib2/tables/local/ecmf/1/4.2.0.20.table +++ b/definitions/grib2/tables/local/ecmf/1/4.2.0.20.table @@ -1,3 +1,3 @@ # Code table 4.2 - discipline=0 category=20 for ECMWF 192 192 Source/gain (kg m-2 s-1) -193 193 Negative Fixer (kg m-2 s-1) +193 193 Negative Fixer (kg m-2 s-1) diff --git a/definitions/grib2/tables/local/ecmf/1/4.2.2.0.table b/definitions/grib2/tables/local/ecmf/1/4.2.2.0.table index ce920325e..d9bc80cf6 100644 --- a/definitions/grib2/tables/local/ecmf/1/4.2.2.0.table +++ b/definitions/grib2/tables/local/ecmf/1/4.2.2.0.table @@ -7,4 +7,5 @@ 197 197 Flux of Carbon Dioxide Gross Primary Production 198 198 GPP coefficient from Biogenic Flux Adjustment System 199 199 Rec coefficient from Biogenic Flux Adjustment System +200 200 Surface roughness length for heat (m) 255 255 Missing diff --git a/definitions/grib2/tables/local/ecmf/1/4.230.table b/definitions/grib2/tables/local/ecmf/1/4.230.table index 047fd259a..e5c01619a 100644 --- a/definitions/grib2/tables/local/ecmf/1/4.230.table +++ b/definitions/grib2/tables/local/ecmf/1/4.230.table @@ -1,4 +1,2 @@ # Code table 4.230 - Atmospheric chemical constituent type for ECMWF - 63000 63000 Some chemical - From 9292bc7e9f4d230f0012d596adf8a417ae61fa1c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 15 Mar 2021 23:57:52 +0000 Subject: [PATCH 419/683] Testing: Test for bufrTemplates concept --- tests/CMakeLists.txt | 1 + tests/Makefile.am | 1 + tests/bufr_templates.sh | 26 ++++++++++++++++++++++++++ 3 files changed, 28 insertions(+) create mode 100755 tests/bufr_templates.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 15887b4ca..0e371b958 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -87,6 +87,7 @@ if( HAVE_BUILD_TOOLS ) bufr_ecc-359 bufr_ecc-517 bufr_rdbSubTypes + bufr_templates grib_efas grib_sh_imag grib_sh_spectral_complex diff --git a/tests/Makefile.am b/tests/Makefile.am index 7299837e4..d677e4691 100755 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -21,6 +21,7 @@ TESTS = definitions.sh \ bufr_get.sh \ bufr_ls.sh \ bufr_set.sh \ + bufr_templates.sh \ bufr_change_edition.sh \ gts_ls.sh \ gts_compare.sh \ diff --git a/tests/bufr_templates.sh b/tests/bufr_templates.sh new file mode 100755 index 000000000..7d1498298 --- /dev/null +++ b/tests/bufr_templates.sh @@ -0,0 +1,26 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh + +set -u +label="bufr_templates_test" + +temp=${label}.bufr +sample=$ECCODES_SAMPLES_PATH/BUFR4.tmpl + +templates_file="${ECCODES_DEFINITION_PATH}/bufr/templates/BufrTemplate.def" +templates=`cat $templates_file | awk -F= '{print $1}' | tr -d '"'` +for t in $templates; do + ${tools_dir}/bufr_set -s bufrTemplate=$t $sample $temp + ${tools_dir}/bufr_dump -p $temp > /dev/null +done + +rm -f $temp From 1c3f6755efc3aa03032faee748617a944139acbe Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 16 Mar 2021 21:17:31 +0000 Subject: [PATCH 420/683] Scripts: Add extra column for interpolation. Improve checks. Support ECMWF as centre --- definitions/add_params_from_tsv.pl | 92 ++++++++++-------------------- 1 file changed, 30 insertions(+), 62 deletions(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index d724bfaf2..5a12a2008 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -14,33 +14,7 @@ # Can either write the *.def files or push to the Parameter DB # # Reads an input TSV (tab-separated-value) file which should contain -# the following parameter keys as columns: -# paramId -# shortName -# name -# units -# discipline -# parameterCategory -# parameterNumber -# # The following are optional keys -# typeOfFirstFixedSurface -# scaleFactorOfFirstFixedSurface -# scaledValueOfFirstFixedSurface -# typeOfSecondFixedSurface -# scaleFactorOfSecondFixedSurface -# scaledValueOfSecondFixedSurface -# typeOfStatisticalProcessing -# aerosolType -# constituentType -# typeOfGeneratingProcess -# localTablesVersion -# typeOfWavelengthInterval -# scaleFactorOfFirstWavelength -# scaledValueOfFirstWavelength -# scaleFactorOfSecondWavelength -# scaledValueOfSecondWavelength -# sourceSinkChemicalPhysicalProcess -# +# parameter keys as columns. See the @columns variable for expected contents # ####################################################################### $|=1; @@ -54,11 +28,19 @@ $ARGV[0] or die "USAGE: $0 input.tsv\n"; my $WRITE_TO_FILES = 1; my $WRITE_TO_PARAMDB = 0; # Be careful. Fill in $contactId before proceeding -my ($paramId, $shortName, $name, $units, $cfVarName); +my ($paramId, $shortName, $name, $units, $cfVarName, $interpol); my ($discipline, $pcategory, $pnumber, $type1, $type2, $scaledValue1, $scaleFactor1, $scaledValue2, $scaleFactor2); my ($stat, $aero, $constit); my ($typeGen, $localTV, $typeOfWLInt, $scaleFactorWL1, $scaledValueWL1, $scaleFactorWL2, $scaledValueWL2, $sourceSink); +my @columns = ("paramId", "shortName", "name", "units", "interpolation", + "discipline", "parameterCategory", "parameterNumber", + "typeOfFirstFixedSurface", "scaleFactorOfFirstFixedSurface", "scaledValueOfFirstFixedSurface", + "typeOfSecondFixedSurface", "scaleFactorOfSecondFixedSurface", "scaledValueOfSecondFixedSurface", + "typeOfStatisticalProcessing", "aerosolType", "constituentType", "typeOfGeneratingProcess", "localTablesVersion", + "typeOfWavelengthInterval", "scaleFactorOfFirstWavelength", "scaledValueOfFirstWavelength", + "scaleFactorOfSecondWavelength", "scaledValueOfSecondWavelength", "sourceSinkChemicalPhysicalProcess"); + my %key_to_attrib_map = ( 'discipline' => 4, 'parameterCategory' => 8, @@ -80,7 +62,8 @@ my $host = $ENV{'PARAM_DB_HOST'} || 'unknown'; my $user = $ENV{'PARAM_DB_USER'} || 'unknown'; my $pass = $ENV{'PARAM_DB_PASS'} || 'unknown'; my $dbh = 0; -my $centre = -3; # WMO table ID +my $centre_wmo = -3; # WMO centre ID +my $centre_ecmwf = 98; # ECMWF centre ID my $edition = 2; # GRIB edition 2 my $contactId; # JIRA issue ID @@ -116,7 +99,7 @@ while (<>) { } $lcount++; - ($paramId, $shortName, $name, $units, + ($paramId, $shortName, $name, $units, $interpol, $discipline, $pcategory, $pnumber, $type1, $scaleFactor1, $scaledValue1, $type2, $scaleFactor2, $scaledValue2, $stat, $aero, $constit, @@ -155,9 +138,11 @@ while (<>) { $is_aero = ""; $is_chem = "1"; } + my $centre = $localTV ne "" ? $centre_ecmwf : $centre_wmo; + die "Error: Both aerosolType and constituentType cannot be set!" if ($constit ne "" && $aero ne ""); die "Error: No contact ID provided\n" if (!$contactId); - #print "Inserting paramId $paramId ...\n"; + print "Inserting paramId $paramId (centre=$centre) ...\n"; $dbh->do("insert into param(id,shortName,name,units_id,insert_date,update_date,contact) values (?,?,?,?,?,?,?)",undef, $paramId, $shortName, $name , $units_code, $today_date, $today_date, $contactId); @@ -257,37 +242,20 @@ sub write_out_file { sub check_first_row_column_names { my $line = shift; # This is the first row my @keys = split(/\t/, $line); - die "Error: 1st row column titles wrong: Column 1 should be 'paramId'\n" if ($keys[0] ne "paramId"); - die "Error: 1st row column titles wrong: Column 2 should be 'shortName'\n" if ($keys[1] ne "shortName"); - die "Error: 1st row column titles wrong: Column 3 should be 'name'\n" if ($keys[2] ne "name"); - die "Error: 1st row column titles wrong: Column 4 should be 'units'\n" if ($keys[3] ne "units"); - - die "Error: 1st row column titles wrong: Column 5 should be 'discipline'\n" if ($keys[4] ne "discipline"); - die "Error: 1st row column titles wrong: Column 6 should be 'parameterCategory'\n" if ($keys[5] ne "parameterCategory"); - die "Error: 1st row column titles wrong: Column 7 should be 'parameterNumber'\n" if ($keys[6] ne "parameterNumber"); - - die "Error: 1st row column titles wrong: Column 8 should be 'typeOfFirstFixedSurface'\n" if ($keys[7] ne "typeOfFirstFixedSurface"); - die "Error: 1st row column titles wrong: Column 9 should be 'scaleFactorOfFirstFixedSurface'\n" if ($keys[8] ne "scaleFactorOfFirstFixedSurface"); - die "Error: 1st row column titles wrong: Column 10 should be 'scaledValueOfFirstFixedSurface'\n" if ($keys[9] ne "scaledValueOfFirstFixedSurface"); - - die "Error: 1st row column titles wrong: Column 11 should be 'typeOfSecondFixedSurface'\n" if ($keys[10] ne "typeOfSecondFixedSurface"); - die "Error: 1st row column titles wrong: Column 12 should be 'scaleFactorOfSecondFixedSurface'\n" if ($keys[11] ne "scaleFactorOfSecondFixedSurface"); - die "Error: 1st row column titles wrong: Column 13 should be 'scaledValueOfSecondFixedSurface'\n" if ($keys[12] ne "scaledValueOfSecondFixedSurface"); - die "Error: 1st row column titles wrong: Column 14 should be 'typeOfStatisticalProcessing'\n" if ($keys[13] ne "typeOfStatisticalProcessing"); - - die "Error: 1st row column titles wrong: Column 15 should be 'aerosolType'\n" if ($keys[14] ne "aerosolType"); - die "Error: 1st row column titles wrong: Column 16 should be 'constituentType'\n" if ($keys[15] ne "constituentType"); - - die "Error: 1st row column titles wrong: Column 17 should be 'typeOfGeneratingProcess'\n" if ($keys[16] ne "typeOfGeneratingProcess"); - die "Error: 1st row column titles wrong: Column 18 should be 'localTablesVersion'\n" if ($keys[17] ne "localTablesVersion"); - - die "Error: 1st row column titles wrong: Column 19 should be 'typeOfWavelengthInterval'\n" if ($keys[18] ne "typeOfWavelengthInterval"); - die "Error: 1st row column titles wrong: Column 20 should be 'scaleFactorOfFirstWavelength'\n" if ($keys[19] ne "scaleFactorOfFirstWavelength"); - die "Error: 1st row column titles wrong: Column 21 should be 'scaledValueOfFirstWavelength'\n" if ($keys[20] ne "scaledValueOfFirstWavelength"); - die "Error: 1st row column titles wrong: Column 22 should be 'scaleFactorOfSecondWavelength'\n" if ($keys[21] ne "scaleFactorOfSecondWavelength"); - - die "Error: 1st row column titles wrong: Column 23 should be 'scaledValueOfSecondWavelength'\n" if ($keys[22] ne "scaledValueOfSecondWavelength"); - die "Error: 1st row column titles wrong: Column 24 should be 'sourceSinkChemicalPhysicalProcess'\n" if ($keys[23] ne "sourceSinkChemicalPhysicalProcess"); + my $c = 0; + my $numkeys = scalar @keys; + my $numcols = scalar @columns; + die "Error: 1st row column titles wrong: Expected $numcols columns, got $numkeys.\n" if ($numkeys != $numcols); + for ( my $i = 0; $i < $numkeys; $i++ ) { + if ( $keys[$i] ne $columns[$i] ) { + die "Error: 1st row column titles wrong: check column ", $i+1, ". Expected '$columns[$i]', got '$keys[$i]'.\n"; + } + } + #if (@keys ~~ @columns) { + # print "[@keys] and [@columns] match\n"; + #} else { + # die "Error: must use these columns: @columns\n"; + #} } sub create_or_append { From b2a5f7f84b7b3279ed5fdb9196218a2de36c6d2f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 17 Mar 2021 13:58:46 +0000 Subject: [PATCH 421/683] ECC-1224: GRIB2: CAMS parameters for 48r1 (Part 1) --- definitions/grib2/cfVarName.def | 474 ++++++++++++++++- .../grib2/localConcepts/ecmf/cfVarName.def | 156 ++++++ definitions/grib2/localConcepts/ecmf/name.def | 156 ++++++ .../grib2/localConcepts/ecmf/paramId.def | 156 ++++++ .../grib2/localConcepts/ecmf/shortName.def | 156 ++++++ .../grib2/localConcepts/ecmf/units.def | 156 ++++++ definitions/grib2/name.def | 474 ++++++++++++++++- definitions/grib2/paramId.def | 476 ++++++++++++++++- definitions/grib2/shortName.def | 472 ++++++++++++++++- definitions/grib2/units.def | 480 +++++++++++++++++- 10 files changed, 3143 insertions(+), 13 deletions(-) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index b6cdfc125..b720bb2dc 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -509,10 +509,10 @@ discipline = 10 ; parameterCategory = 4 ; parameterNumber = 14 ; + typeOfSecondFixedSurface = 255 ; scaledValueOfFirstFixedSurface = 1 ; scaleFactorOfFirstFixedSurface = 2 ; typeOfFirstFixedSurface = 169 ; - typeOfSecondFixedSurface = 255 ; } #2 metre specific humidity 'sh2' = { @@ -524,6 +524,15 @@ scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Volcanic sulfur dioxide mass mixing ratio +'VSO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 8 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } #Ammonium aerosol mass mixing ratio 'aermr18' = { discipline = 0 ; @@ -549,22 +558,66 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; - typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 8 ; scaledValueOfFirstWavelength = 55 ; typeOfSizeInterval = 255 ; aerosolType = 62003 ; is_aerosol_optical = 1 ; + typeOfWavelengthInterval = 11 ; + } +#Biogenic secondary organic aerosol mass mixing ratio +'aermr19' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Anthropogenic secondary organic aerosol mass mixing ratio +'aermr20' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Volcanic sulfur dioxide mass mixing ratio increment +'VSO2diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + typeOfGeneratingProcess = 20 ; + constituentType = 8 ; + sourceSinkChemicalPhysicalProcess = 7 ; } #Ammonium aerosol mass mixing ratio 'aermr18diff' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; + typeOfGeneratingProcess = 20 ; aerosolType = 62003 ; is_aerosol = 1 ; + } +#Biogenic secondary organic aerosol mass mixing ratio increment +'aermr19diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62032 ; + is_aerosol = 1 ; typeOfGeneratingProcess = 20 ; } +#Anthropogenic secondary organic aerosol mass mixing ratio increment +'aermr20diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + aerosolType = 62033 ; + } #Dry deposition of ammonium aerosol 'aerddpam' = { discipline = 0 ; @@ -607,6 +660,414 @@ typeOfFirstFixedSurface = 1 ; aerosolType = 62003 ; } +#Dry deposition of biogenic secondary organic aerosol +'aerddpsoab' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 12 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Sedimentation of biogenic secondary organic aerosol +'aersdmsoab' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Wet deposition of biogenic secondary organic aerosol by large-scale precipitation +'aerwdlsoab' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Wet deposition of biogenic secondary organic aerosol by convective precipitation +'aerwdcsoab' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Vertically integrated mass of biogenic secondary organic aerosol +'aermsssoab' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Dry deposition of anthropogenic secondary organic aerosol +'aerddpsoaa' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 12 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Sedimentation of anthropogenic secondary organic aerosol +'aersdmsoaa' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Wet deposition of anthropogenic secondary organic aerosol by large-scale precipitation +'aerwdlsoaa' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Wet deposition of anthropogenic secondary organic aerosol by convective precipitation +'aerwdcsoaa' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + is_aerosol = 1 ; + aerosolType = 62033 ; + } +#Vertically integrated mass of anthropogenic secondary organic aerosol +'aermsssoaa' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Secondary organic aerosol optical depth at 550 nm +'soaod550' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + scaledValueOfFirstWavelength = 550 ; + scaleFactorOfSecondWavelength = missing() ; + scaledValueOfSecondWavelength = missing() ; + aerosolType = 62012 ; + is_aerosol = 1 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 9 ; + } +#Aromatic peroxy radical mass mixing ratio +'AROO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 60029 ; + is_chemical = 1 ; + } +#Ethyne mass mixing ratio +'C2H2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 10010 ; + is_chemical = 1 ; + } +#Acetonitrile mass mixing ratio +'CH3CN' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 10007 ; + is_chemical = 1 ; + } +#Methyl peroxy nitrate mass mixing ratio +'CH3O2NO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 10055 ; + is_chemical = 1 ; + } +#Hydrogen cyanide mass mixing ratio +'HCN' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 10006 ; + is_chemical = 1 ; + } +#Hydroperoxy aldehydes type 1 mass mixing ratio +'HPALD1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 60058 ; + } +#Hydroperoxy aldehydes type 2 mass mixing ratio +'HPALD' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 60059 ; + is_chemical = 1 ; + } +#Isoprene peroxy type B mass mixing ratio +'ISOPBO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 60056 ; + is_chemical = 1 ; + } +#Isoprene peroxy type D mass mixing ratio +'ISOPDO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 60057 ; + is_chemical = 1 ; + } +#Column integrated mass density of Volcanic sulfur dioxide +'tc_VSO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 8 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } +#Column integrated mass density of Aromatic peroxy radical +'tc_AROO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 60029 ; + } +#Column integrated mass density of Ethyne +'tc_C2H2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10010 ; + is_chemical = 1 ; + } +#Column integrated mass density of Acetonitrile +'tc_CH3CN' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10007 ; + is_chemical = 1 ; + } +#Column integrated mass density of Methyl peroxy nitrate +'tc_CH3O2NO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10055 ; + is_chemical = 1 ; + } +#Column integrated mass density of Hydrogen cyanide +'tc_HCN' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10006 ; + is_chemical = 1 ; + } +#Column integrated mass density of Hydroperoxy aldehydes type 1 +'tc_HPALD1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 60058 ; + } +#Column integrated mass density of Hydroperoxy aldehydes type 2 +'tc_HPALD2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 60059 ; + is_chemical = 1 ; + } +#Column integrated mass density of Isoprene peroxy type B +'tc_ISOPBO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 60056 ; + is_chemical = 1 ; + } +#Column integrated mass density of Isoprene peroxy type D +'tc_ISOPDO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 60057 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Volcanic sulfur dioxide +'e_VSO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 8 ; + is_chemical = 1 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } +#Atmosphere emission mass flux of Aromatic peroxy radical +'e_AROO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60029 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Ethyne +'e_C2H2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 10010 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Acetonitrile +'e_CH3CN' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 10007 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Methyl peroxy nitrate +'e_CH3O2NO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 10055 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Hydrogen cyanide +'e_HCN' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 10006 ; + } +#Atmosphere emission mass flux of Hydroperoxy aldehydes type 1 +'e_HPALD1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60058 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Hydroperoxy aldehydes type 2 +'e_HPALD2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60059 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Isoprene peroxy type B +'e_ISOPBO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60056 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Isoprene peroxy type D +'e_ISOPDO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60057 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Volcanic sulfur dioxide +'dv_VSO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 8 ; + is_chemical = 1 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } +#Dry deposition velocity of Aromatic peroxy radical +'dv_AROO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 60029 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Ethyne +'dv_C2H2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 10010 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Acetonitrile +'dv_CH3CN' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 10007 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Methyl peroxy nitrate +'dv_CH3O2NO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 10055 ; + } +#Dry deposition velocity of Hydrogen cyanide +'dv_HCN' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 10006 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Hydroperoxy aldehydes type 1 +'dv_HPALD1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 60058 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Hydroperoxy aldehydes type 2 +'dv_HPALD2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 60059 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Isoprene peroxy type B +'dv_ISOPBO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 60056 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Isoprene peroxy type D +'dv_ISOPDO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 60057 ; + } #-10 degrees C isothermal level (atm) 'degm10l' = { discipline = 0 ; @@ -859,6 +1320,15 @@ typeOfSecondFixedSurface = 106 ; scaledValueOfSecondFixedSurface = 10 ; } +#Atmosphere emission mass flux of Methane from Wetlands +'e_WLCH4' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 2 ; + is_chemical = 1 ; + sourceSinkChemicalPhysicalProcess = 10 ; + } #Convective precipitation 'cp' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.def b/definitions/grib2/localConcepts/ecmf/cfVarName.def index bb9797d4b..4f808fd6b 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.def @@ -6778,7 +6778,43 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 193 ; + is_aerosol = 1 ; aerosolType = 62003 ; + } +#Source/gain of biogenic secondary organic aerosol +'aersrcsoab' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Negative fixer of biogenic secondary organic aerosol +'aerngtsoab' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Source/gain of anthropogenic secondary organic aerosol +'aersrcsoaa' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Negative fixer of anthropogenic secondary organic aerosol +'aerngtsoaa' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 62033 ; is_aerosol = 1 ; } #Experimental product @@ -9505,6 +9541,24 @@ parameterCategory = 217 ; parameterNumber = 206 ; } +#Anthropogenic volatile organic compounds mass mixing ratio +'VOCA' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 65532 ; + is_chemical = 1 ; + } +#Biomass burning volatile organic compounds mass mixing ratio +'VOCBB' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 65531 ; + is_chemical = 1 ; + } #Total column hydrogen peroxide 'tc_h2o2' = { discipline = 192 ; @@ -10699,6 +10753,24 @@ parameterCategory = 218 ; parameterNumber = 206 ; } +#Column integrated mass density of Anthropogenic volatile organic compounds +'tc_VOCA' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 65532 ; + is_chemical = 1 ; + } +#Column integrated mass density of Biomass burning volatile organic compounds +'tc_VOCBB' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 65531 ; + } #Ozone emissions 'e_go3' = { discipline = 192 ; @@ -12019,6 +12091,24 @@ parameterCategory = 219 ; parameterNumber = 220 ; } +#Atmosphere emission mass flux of Anthropogenic volatile organic compounds +'e_VOCA' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 65532 ; + } +#Atmosphere emission mass flux of Biomass burning volatile organic compounds +'e_VOCBB' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 65531 ; + is_chemical = 1 ; + } #Ozone deposition velocity 'dv_go3' = { discipline = 192 ; @@ -13255,6 +13345,24 @@ parameterCategory = 221 ; parameterNumber = 206 ; } +#Dry deposition velocity of Anthropogenic volatile organic compounds +'dv_VOCA' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 65532 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Biomass burning volatile organic compounds +'dv_VOCBB' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 65531 ; + is_chemical = 1 ; + } #Total sky direct solar radiation at surface 'fdir' = { discipline = 192 ; @@ -13594,6 +13702,54 @@ parameterCategory = 228 ; parameterNumber = 103 ; } +#Solar induced Chlorophyll fluorescence at 740nm +'sif740' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + scaleFactorOfSecondWavelength = missing() ; + scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 9 ; + scaledValueOfFirstWavelength = 740 ; + } +#Solar induced Chlorophyll fluorescence at 755nm +'sif755' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 9 ; + scaledValueOfFirstWavelength = 755 ; + scaleFactorOfSecondWavelength = missing() ; + scaledValueOfSecondWavelength = missing() ; + } +#Solar induced Chlorophyll fluorescence at 771nm +'sif771' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 9 ; + scaledValueOfFirstWavelength = 771 ; + scaleFactorOfSecondWavelength = missing() ; + } +#Solar induced Chlorophyll fluorescence at 757nm +'sif757' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + scaleFactorOfFirstWavelength = 9 ; + scaledValueOfFirstWavelength = 757 ; + scaleFactorOfSecondWavelength = missing() ; + scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + } #Surface solar radiation downward clear-sky 'ssrdc' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/name.def b/definitions/grib2/localConcepts/ecmf/name.def index fc3e50749..fc1d5999f 100644 --- a/definitions/grib2/localConcepts/ecmf/name.def +++ b/definitions/grib2/localConcepts/ecmf/name.def @@ -6781,6 +6781,42 @@ is_aerosol = 1 ; aerosolType = 62003 ; } +#Source/gain of biogenic secondary organic aerosol +'Source/gain of biogenic secondary organic aerosol' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Negative fixer of biogenic secondary organic aerosol +'Negative fixer of biogenic secondary organic aerosol' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Source/gain of anthropogenic secondary organic aerosol +'Source/gain of anthropogenic secondary organic aerosol' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Negative fixer of anthropogenic secondary organic aerosol +'Negative fixer of anthropogenic secondary organic aerosol' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } #Experimental product 'Experimental product' = { discipline = 192 ; @@ -9505,6 +9541,24 @@ parameterCategory = 217 ; parameterNumber = 206 ; } +#Anthropogenic volatile organic compounds mass mixing ratio +'Anthropogenic volatile organic compounds mass mixing ratio' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 65532 ; + is_chemical = 1 ; + } +#Biomass burning volatile organic compounds mass mixing ratio +'Biomass burning volatile organic compounds mass mixing ratio' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 65531 ; + is_chemical = 1 ; + } #Total column hydrogen peroxide 'Total column hydrogen peroxide' = { discipline = 192 ; @@ -10699,6 +10753,24 @@ parameterCategory = 218 ; parameterNumber = 206 ; } +#Column integrated mass density of Anthropogenic volatile organic compounds +'Column integrated mass density of Anthropogenic volatile organic compounds ' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 65532 ; + is_chemical = 1 ; + } +#Column integrated mass density of Biomass burning volatile organic compounds +'Column integrated mass density of Biomass burning volatile organic compounds ' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 65531 ; + } #Ozone emissions 'Ozone emissions' = { discipline = 192 ; @@ -12019,6 +12091,24 @@ parameterCategory = 219 ; parameterNumber = 220 ; } +#Atmosphere emission mass flux of Anthropogenic volatile organic compounds +'Atmosphere emission mass flux of Anthropogenic volatile organic compounds ' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 65532 ; + } +#Atmosphere emission mass flux of Biomass burning volatile organic compounds +'Atmosphere emission mass flux of Biomass burning volatile organic compounds ' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 65531 ; + is_chemical = 1 ; + } #Ozone deposition velocity 'Ozone deposition velocity' = { discipline = 192 ; @@ -13255,6 +13345,24 @@ parameterCategory = 221 ; parameterNumber = 206 ; } +#Dry deposition velocity of Anthropogenic volatile organic compounds +'Dry deposition velocity of Anthropogenic volatile organic compounds ' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 65532 ; + } +#Dry deposition velocity of Biomass burning volatile organic compounds +'Dry deposition velocity of Biomass burning volatile organic compounds ' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 65531 ; + } #Total sky direct solar radiation at surface 'Total sky direct solar radiation at surface' = { discipline = 192 ; @@ -13594,6 +13702,54 @@ parameterCategory = 228 ; parameterNumber = 103 ; } +#Solar induced Chlorophyll fluorescence at 740nm +'Solar induced Chlorophyll fluorescence at 740nm' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + scaleFactorOfSecondWavelength = missing() ; + scaleFactorOfFirstWavelength = 9 ; + scaledValueOfSecondWavelength = missing() ; + scaledValueOfFirstWavelength = 740 ; + typeOfWavelengthInterval = 11 ; + } +#Solar induced Chlorophyll fluorescence at 755nm +'Solar induced Chlorophyll fluorescence at 755nm' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + scaledValueOfSecondWavelength = missing() ; + scaledValueOfFirstWavelength = 755 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; + scaleFactorOfFirstWavelength = 9 ; + } +#Solar induced Chlorophyll fluorescence at 771nm +'Solar induced Chlorophyll fluorescence at 771nm' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + scaledValueOfSecondWavelength = missing() ; + scaledValueOfFirstWavelength = 771 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; + scaleFactorOfFirstWavelength = 9 ; + } +#Solar induced Chlorophyll fluorescence at 757nm +'Solar induced Chlorophyll fluorescence at 757nm' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + scaleFactorOfSecondWavelength = missing() ; + scaleFactorOfFirstWavelength = 9 ; + scaledValueOfSecondWavelength = missing() ; + scaledValueOfFirstWavelength = 757 ; + typeOfWavelengthInterval = 11 ; + } #Surface solar radiation downward clear-sky 'Surface solar radiation downward clear-sky' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/paramId.def b/definitions/grib2/localConcepts/ecmf/paramId.def index c6cab33a8..da7d7ff59 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.def @@ -6781,6 +6781,42 @@ aerosolType = 62003 ; is_aerosol = 1 ; } +#Source/gain of biogenic secondary organic aerosol +'215212' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Negative fixer of biogenic secondary organic aerosol +'215217' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Source/gain of anthropogenic secondary organic aerosol +'215219' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Negative fixer of anthropogenic secondary organic aerosol +'215224' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } #Experimental product '216001' = { discipline = 192 ; @@ -9505,6 +9541,24 @@ parameterCategory = 217 ; parameterNumber = 206 ; } +#Anthropogenic volatile organic compounds mass mixing ratio +'217231' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 65532 ; + is_chemical = 1 ; + } +#Biomass burning volatile organic compounds mass mixing ratio +'217232' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 65531 ; + is_chemical = 1 ; + } #Total column hydrogen peroxide '218003' = { discipline = 192 ; @@ -10699,6 +10753,24 @@ parameterCategory = 218 ; parameterNumber = 206 ; } +#Column integrated mass density of Anthropogenic volatile organic compounds +'218231' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 65532 ; + is_chemical = 1 ; + } +#Column integrated mass density of Biomass burning volatile organic compounds +'218232' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 65531 ; + } #Ozone emissions '219001' = { discipline = 192 ; @@ -12019,6 +12091,24 @@ parameterCategory = 219 ; parameterNumber = 220 ; } +#Atmosphere emission mass flux of Anthropogenic volatile organic compounds +'219231' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 65532 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Biomass burning volatile organic compounds +'219232' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 65531 ; + is_chemical = 1 ; + } #Ozone deposition velocity '221001' = { discipline = 192 ; @@ -13255,6 +13345,24 @@ parameterCategory = 221 ; parameterNumber = 206 ; } +#Dry deposition velocity of Anthropogenic volatile organic compounds +'221231' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 65532 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Biomass burning volatile organic compounds +'221232' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 65531 ; + is_chemical = 1 ; + } #Total sky direct solar radiation at surface '228021' = { discipline = 192 ; @@ -13594,6 +13702,54 @@ parameterCategory = 228 ; parameterNumber = 103 ; } +#Solar induced Chlorophyll fluorescence at 740nm +'228105' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 9 ; + scaledValueOfFirstWavelength = 740 ; + scaleFactorOfSecondWavelength = missing() ; + scaledValueOfSecondWavelength = missing() ; + } +#Solar induced Chlorophyll fluorescence at 755nm +'228106' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 9 ; + scaledValueOfFirstWavelength = 755 ; + scaleFactorOfSecondWavelength = missing() ; + scaledValueOfSecondWavelength = missing() ; + } +#Solar induced Chlorophyll fluorescence at 771nm +'228107' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 9 ; + scaledValueOfFirstWavelength = 771 ; + scaleFactorOfSecondWavelength = missing() ; + scaledValueOfSecondWavelength = missing() ; + } +#Solar induced Chlorophyll fluorescence at 757nm +'228108' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 9 ; + scaledValueOfFirstWavelength = 757 ; + scaleFactorOfSecondWavelength = missing() ; + scaledValueOfSecondWavelength = missing() ; + } #Surface solar radiation downward clear-sky '228129' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/shortName.def b/definitions/grib2/localConcepts/ecmf/shortName.def index e467953c2..f4659e148 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.def @@ -6778,7 +6778,43 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 193 ; + is_aerosol = 1 ; aerosolType = 62003 ; + } +#Source/gain of biogenic secondary organic aerosol +'aersrcsoab' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Negative fixer of biogenic secondary organic aerosol +'aerngtsoab' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Source/gain of anthropogenic secondary organic aerosol +'aersrcsoaa' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Negative fixer of anthropogenic secondary organic aerosol +'aerngtsoaa' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 62033 ; is_aerosol = 1 ; } #Experimental product @@ -9505,6 +9541,24 @@ parameterCategory = 217 ; parameterNumber = 206 ; } +#Anthropogenic volatile organic compounds mass mixing ratio +'VOCA' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 65532 ; + is_chemical = 1 ; + } +#Biomass burning volatile organic compounds mass mixing ratio +'VOCBB' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 65531 ; + is_chemical = 1 ; + } #Total column hydrogen peroxide 'tc_h2o2' = { discipline = 192 ; @@ -10699,6 +10753,24 @@ parameterCategory = 218 ; parameterNumber = 206 ; } +#Column integrated mass density of Anthropogenic volatile organic compounds +'tc_VOCA' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 65532 ; + is_chemical = 1 ; + } +#Column integrated mass density of Biomass burning volatile organic compounds +'tc_VOCBB' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 65531 ; + } #Ozone emissions 'e_go3' = { discipline = 192 ; @@ -12019,6 +12091,24 @@ parameterCategory = 219 ; parameterNumber = 220 ; } +#Atmosphere emission mass flux of Anthropogenic volatile organic compounds +'e_VOCA' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 65532 ; + } +#Atmosphere emission mass flux of Biomass burning volatile organic compounds +'e_VOCBB' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 65531 ; + is_chemical = 1 ; + } #Ozone deposition velocity 'dv_go3' = { discipline = 192 ; @@ -13255,6 +13345,24 @@ parameterCategory = 221 ; parameterNumber = 206 ; } +#Dry deposition velocity of Anthropogenic volatile organic compounds +'dv_VOCA' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 65532 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Biomass burning volatile organic compounds +'dv_VOCBB' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 65531 ; + is_chemical = 1 ; + } #Total sky direct solar radiation at surface 'fdir' = { discipline = 192 ; @@ -13594,6 +13702,54 @@ parameterCategory = 228 ; parameterNumber = 103 ; } +#Solar induced Chlorophyll fluorescence at 740nm +'sif740' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + scaleFactorOfSecondWavelength = missing() ; + scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 9 ; + scaledValueOfFirstWavelength = 740 ; + } +#Solar induced Chlorophyll fluorescence at 755nm +'sif755' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 9 ; + scaledValueOfFirstWavelength = 755 ; + scaleFactorOfSecondWavelength = missing() ; + scaledValueOfSecondWavelength = missing() ; + } +#Solar induced Chlorophyll fluorescence at 771nm +'sif771' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 9 ; + scaledValueOfFirstWavelength = 771 ; + scaleFactorOfSecondWavelength = missing() ; + } +#Solar induced Chlorophyll fluorescence at 757nm +'sif757' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + scaleFactorOfFirstWavelength = 9 ; + scaledValueOfFirstWavelength = 757 ; + scaleFactorOfSecondWavelength = missing() ; + scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + } #Surface solar radiation downward clear-sky 'ssrdc' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/units.def b/definitions/grib2/localConcepts/ecmf/units.def index 01163d309..4e44dadaa 100644 --- a/definitions/grib2/localConcepts/ecmf/units.def +++ b/definitions/grib2/localConcepts/ecmf/units.def @@ -6781,6 +6781,42 @@ is_aerosol = 1 ; aerosolType = 62003 ; } +#Source/gain of biogenic secondary organic aerosol +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Negative fixer of biogenic secondary organic aerosol +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Source/gain of anthropogenic secondary organic aerosol +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 192 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Negative fixer of anthropogenic secondary organic aerosol +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 193 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } #Experimental product '~' = { discipline = 192 ; @@ -9505,6 +9541,24 @@ parameterCategory = 217 ; parameterNumber = 206 ; } +#Anthropogenic volatile organic compounds mass mixing ratio +'kg kg**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 65532 ; + is_chemical = 1 ; + } +#Biomass burning volatile organic compounds mass mixing ratio +'kg kg**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 65531 ; + is_chemical = 1 ; + } #Total column hydrogen peroxide 'kg m**-2' = { discipline = 192 ; @@ -10699,6 +10753,24 @@ parameterCategory = 218 ; parameterNumber = 206 ; } +#Column integrated mass density of Anthropogenic volatile organic compounds +'kg m**-2' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 65532 ; + is_chemical = 1 ; + } +#Column integrated mass density of Biomass burning volatile organic compounds +'kg m**-2' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 65531 ; + } #Ozone emissions 'kg m**-2 s**-1' = { discipline = 192 ; @@ -12019,6 +12091,24 @@ parameterCategory = 219 ; parameterNumber = 220 ; } +#Atmosphere emission mass flux of Anthropogenic volatile organic compounds +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 65532 ; + } +#Atmosphere emission mass flux of Biomass burning volatile organic compounds +'kg m**-2 s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 65531 ; + is_chemical = 1 ; + } #Ozone deposition velocity 'm s**-1' = { discipline = 192 ; @@ -13255,6 +13345,24 @@ parameterCategory = 221 ; parameterNumber = 206 ; } +#Dry deposition velocity of Anthropogenic volatile organic compounds +'m s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 65532 ; + } +#Dry deposition velocity of Biomass burning volatile organic compounds +'m s**-1' = { + localTablesVersion = 1 ; + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 65531 ; + } #Total sky direct solar radiation at surface 'J m**-2' = { discipline = 192 ; @@ -13594,6 +13702,54 @@ parameterCategory = 228 ; parameterNumber = 103 ; } +#Solar induced Chlorophyll fluorescence at 740nm +'10**-6 W m**-2 sr**-1 m**-1' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + scaleFactorOfSecondWavelength = missing() ; + scaleFactorOfFirstWavelength = 9 ; + scaledValueOfSecondWavelength = missing() ; + scaledValueOfFirstWavelength = 740 ; + typeOfWavelengthInterval = 11 ; + } +#Solar induced Chlorophyll fluorescence at 755nm +'10**-6 W m**-2 sr**-1 m**-1' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + scaledValueOfSecondWavelength = missing() ; + scaledValueOfFirstWavelength = 755 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; + scaleFactorOfFirstWavelength = 9 ; + } +#Solar induced Chlorophyll fluorescence at 771nm +'10**-6 W m**-2 sr**-1 m**-1' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + scaledValueOfSecondWavelength = missing() ; + scaledValueOfFirstWavelength = 771 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; + scaleFactorOfFirstWavelength = 9 ; + } +#Solar induced Chlorophyll fluorescence at 757nm +'10**-6 W m**-2 sr**-1 m**-1' = { + localTablesVersion = 1 ; + discipline = 4 ; + parameterCategory = 8 ; + parameterNumber = 254 ; + scaleFactorOfSecondWavelength = missing() ; + scaleFactorOfFirstWavelength = 9 ; + scaledValueOfSecondWavelength = missing() ; + scaledValueOfFirstWavelength = 757 ; + typeOfWavelengthInterval = 11 ; + } #Surface solar radiation downward clear-sky 'J m**-2' = { discipline = 192 ; diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index a97d52c44..7c19a70c1 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -524,6 +524,15 @@ scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Volcanic sulfur dioxide mass mixing ratio +'Volcanic sulfur dioxide mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 8 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } #Ammonium aerosol mass mixing ratio 'Ammonium aerosol mass mixing ratio' = { discipline = 0 ; @@ -556,14 +565,58 @@ is_aerosol_optical = 1 ; typeOfSizeInterval = 255 ; } +#Biogenic secondary organic aerosol mass mixing ratio +'Biogenic secondary organic aerosol mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Anthropogenic secondary organic aerosol mass mixing ratio +'Anthropogenic secondary organic aerosol mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_aerosol = 1 ; + aerosolType = 62033 ; + } +#Volcanic sulfur dioxide mass mixing ratio increment +'Volcanic sulfur dioxide mass mixing ratio increment' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + typeOfGeneratingProcess = 20 ; + constituentType = 8 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } #Ammonium aerosol mass mixing ratio 'Ammonium aerosol mass mixing ratio' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; + typeOfGeneratingProcess = 20 ; aerosolType = 62003 ; is_aerosol = 1 ; + } +#Biogenic secondary organic aerosol mass mixing ratio increment +'Biogenic secondary organic aerosol mass mixing ratio increment' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; typeOfGeneratingProcess = 20 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Anthropogenic secondary organic aerosol mass mixing ratio increment +'Anthropogenic secondary organic aerosol mass mixing ratio increment' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + aerosolType = 62033 ; } #Dry deposition of ammonium aerosol 'Dry deposition of ammonium aerosol' = { @@ -602,10 +655,418 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - aerosolType = 62003 ; - is_aerosol = 1 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; + is_aerosol = 1 ; + aerosolType = 62003 ; + } +#Dry deposition of biogenic secondary organic aerosol +'Dry deposition of biogenic secondary organic aerosol' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 12 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Sedimentation of biogenic secondary organic aerosol +'Sedimentation of biogenic secondary organic aerosol' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Wet deposition of biogenic secondary organic aerosol by large-scale precipitation +'Wet deposition of biogenic secondary organic aerosol by large-scale precipitation' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Wet deposition of biogenic secondary organic aerosol by convective precipitation +'Wet deposition of biogenic secondary organic aerosol by convective precipitation' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Vertically integrated mass of biogenic secondary organic aerosol +'Vertically integrated mass of biogenic secondary organic aerosol' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Dry deposition of anthropogenic secondary organic aerosol +'Dry deposition of anthropogenic secondary organic aerosol' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 12 ; + is_aerosol = 1 ; + aerosolType = 62033 ; + } +#Sedimentation of anthropogenic secondary organic aerosol +'Sedimentation of anthropogenic secondary organic aerosol' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Wet deposition of anthropogenic secondary organic aerosol by large-scale precipitation +'Wet deposition of anthropogenic secondary organic aerosol by large-scale precipitation' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + is_aerosol = 1 ; + aerosolType = 62033 ; + } +#Wet deposition of anthropogenic secondary organic aerosol by convective precipitation +'Wet deposition of anthropogenic secondary organic aerosol by convective precipitation' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Vertically integrated mass of anthropogenic secondary organic aerosol +'Vertically integrated mass of anthropogenic secondary organic aerosol' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Secondary organic aerosol optical depth at 550 nm +'Secondary organic aerosol optical depth at 550 nm' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + scaledValueOfSecondWavelength = missing() ; + scaledValueOfFirstWavelength = 550 ; + typeOfWavelengthInterval = 11 ; + aerosolType = 62012 ; + scaleFactorOfSecondWavelength = missing() ; + scaleFactorOfFirstWavelength = 9 ; + is_aerosol = 1 ; + } +#Aromatic peroxy radical mass mixing ratio +'Aromatic peroxy radical mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 60029 ; + is_chemical = 1 ; + } +#Ethyne mass mixing ratio +'Ethyne mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 10010 ; + } +#Acetonitrile mass mixing ratio +'Acetonitrile mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 10007 ; + } +#Methyl peroxy nitrate mass mixing ratio +'Methyl peroxy nitrate mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 10055 ; + is_chemical = 1 ; + } +#Hydrogen cyanide mass mixing ratio +'Hydrogen cyanide mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 10006 ; + } +#Hydroperoxy aldehydes type 1 mass mixing ratio +'Hydroperoxy aldehydes type 1 mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 60058 ; + } +#Hydroperoxy aldehydes type 2 mass mixing ratio +'Hydroperoxy aldehydes type 2 mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 60059 ; + is_chemical = 1 ; + } +#Isoprene peroxy type B mass mixing ratio +'Isoprene peroxy type B mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 60056 ; + } +#Isoprene peroxy type D mass mixing ratio +'Isoprene peroxy type D mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 60057 ; + } +#Column integrated mass density of Volcanic sulfur dioxide +'Column integrated mass density of Volcanic sulfur dioxide ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 8 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } +#Column integrated mass density of Aromatic peroxy radical +'Column integrated mass density of Aromatic peroxy radical ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 60029 ; + is_chemical = 1 ; + } +#Column integrated mass density of Ethyne +'Column integrated mass density of Ethyne ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10010 ; + is_chemical = 1 ; + } +#Column integrated mass density of Acetonitrile +'Column integrated mass density of Acetonitrile ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 10007 ; + } +#Column integrated mass density of Methyl peroxy nitrate +'Column integrated mass density of Methyl peroxy nitrate ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10055 ; + is_chemical = 1 ; + } +#Column integrated mass density of Hydrogen cyanide +'Column integrated mass density of Hydrogen cyanide ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10006 ; + is_chemical = 1 ; + } +#Column integrated mass density of Hydroperoxy aldehydes type 1 +'Column integrated mass density of Hydroperoxy aldehydes type 1 ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 60058 ; + } +#Column integrated mass density of Hydroperoxy aldehydes type 2 +'Column integrated mass density of Hydroperoxy aldehydes type 2 ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 60059 ; + is_chemical = 1 ; + } +#Column integrated mass density of Isoprene peroxy type B +'Column integrated mass density of Isoprene peroxy type B ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 60056 ; + is_chemical = 1 ; + } +#Column integrated mass density of Isoprene peroxy type D +'Column integrated mass density of Isoprene peroxy type D ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 60057 ; + } +#Atmosphere emission mass flux of Volcanic sulfur dioxide +'Atmosphere emission mass flux of Volcanic sulfur dioxide ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 8 ; + is_chemical = 1 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } +#Atmosphere emission mass flux of Aromatic peroxy radical +'Atmosphere emission mass flux of Aromatic peroxy radical ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 60029 ; + } +#Atmosphere emission mass flux of Ethyne +'Atmosphere emission mass flux of Ethyne ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 10010 ; + } +#Atmosphere emission mass flux of Acetonitrile +'Atmosphere emission mass flux of Acetonitrile ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 10007 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Methyl peroxy nitrate +'Atmosphere emission mass flux of Methyl peroxy nitrate ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 10055 ; + } +#Atmosphere emission mass flux of Hydrogen cyanide +'Atmosphere emission mass flux of Hydrogen cyanide ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 10006 ; + } +#Atmosphere emission mass flux of Hydroperoxy aldehydes type 1 +'Atmosphere emission mass flux of Hydroperoxy aldehydes type 1 ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60058 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Hydroperoxy aldehydes type 2 +'Atmosphere emission mass flux of Hydroperoxy aldehydes type 2 ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 60059 ; + } +#Atmosphere emission mass flux of Isoprene peroxy type B +'Atmosphere emission mass flux of Isoprene peroxy type B ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 60056 ; + } +#Atmosphere emission mass flux of Isoprene peroxy type D +'Atmosphere emission mass flux of Isoprene peroxy type D ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60057 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Volcanic sulfur dioxide +'Dry deposition velocity of Volcanic sulfur dioxide ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 8 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } +#Dry deposition velocity of Aromatic peroxy radical +'Dry deposition velocity of Aromatic peroxy radical ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 60029 ; + } +#Dry deposition velocity of Ethyne +'Dry deposition velocity of Ethyne ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 10010 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Acetonitrile +'Dry deposition velocity of Acetonitrile ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 10007 ; + } +#Dry deposition velocity of Methyl peroxy nitrate +'Dry deposition velocity of Methyl peroxy nitrate ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 10055 ; + } +#Dry deposition velocity of Hydrogen cyanide +'Dry deposition velocity of Hydrogen cyanide ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 10006 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Hydroperoxy aldehydes type 1 +'Dry deposition velocity of Hydroperoxy aldehydes type 1 ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 60058 ; + } +#Dry deposition velocity of Hydroperoxy aldehydes type 2 +'Dry deposition velocity of Hydroperoxy aldehydes type 2 ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 60059 ; + } +#Dry deposition velocity of Isoprene peroxy type B +'Dry deposition velocity of Isoprene peroxy type B ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 60056 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Isoprene peroxy type D +'Dry deposition velocity of Isoprene peroxy type D ' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 60057 ; } #-10 degrees C isothermal level (atm) '-10 degrees C isothermal level (atm)' = { @@ -859,6 +1320,15 @@ scaleFactorOfFirstFixedSurface = 0 ; scaleFactorOfSecondFixedSurface = 1 ; } +#Atmosphere emission mass flux of Methane from Wetlands +'Atmosphere emission mass flux of Methane from Wetlands' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 2 ; + is_chemical = 1 ; + sourceSinkChemicalPhysicalProcess = 10 ; + } #Convective precipitation 'Convective precipitation' = { discipline = 0 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index 561c119a6..062da8f4d 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -524,6 +524,15 @@ scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Volcanic sulfur dioxide mass mixing ratio +'210170' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 8 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } #Ammonium aerosol mass mixing ratio '210249' = { discipline = 0 ; @@ -549,21 +558,65 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 8 ; - scaledValueOfFirstWavelength = 55 ; typeOfSizeInterval = 255 ; aerosolType = 62003 ; is_aerosol_optical = 1 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 8 ; + scaledValueOfFirstWavelength = 55 ; + } +#Biogenic secondary organic aerosol mass mixing ratio +'210252' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Anthropogenic secondary organic aerosol mass mixing ratio +'210253' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Volcanic sulfur dioxide mass mixing ratio increment +'211170' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + is_chemical = 1 ; + typeOfGeneratingProcess = 20 ; + sourceSinkChemicalPhysicalProcess = 7 ; } #Ammonium aerosol mass mixing ratio '211249' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; + is_aerosol = 1 ; typeOfGeneratingProcess = 20 ; aerosolType = 62003 ; + } +#Biogenic secondary organic aerosol mass mixing ratio increment +'211252' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62032 ; is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + } +#Anthropogenic secondary organic aerosol mass mixing ratio increment +'211253' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; } #Dry deposition of ammonium aerosol '215206' = { @@ -607,6 +660,414 @@ aerosolType = 62003 ; is_aerosol = 1 ; } +#Dry deposition of biogenic secondary organic aerosol +'215213' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 12 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Sedimentation of biogenic secondary organic aerosol +'215214' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Wet deposition of biogenic secondary organic aerosol by large-scale precipitation +'215215' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Wet deposition of biogenic secondary organic aerosol by convective precipitation +'215216' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Vertically integrated mass of biogenic secondary organic aerosol +'215218' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Dry deposition of anthropogenic secondary organic aerosol +'215220' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 12 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Sedimentation of anthropogenic secondary organic aerosol +'215221' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Wet deposition of anthropogenic secondary organic aerosol by large-scale precipitation +'215222' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Wet deposition of anthropogenic secondary organic aerosol by convective precipitation +'215223' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Vertically integrated mass of anthropogenic secondary organic aerosol +'215225' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Secondary organic aerosol optical depth at 550 nm +'215226' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + scaledValueOfFirstWavelength = 550 ; + scaleFactorOfSecondWavelength = missing() ; + scaledValueOfSecondWavelength = missing() ; + aerosolType = 62012 ; + is_aerosol = 1 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 9 ; + } +#Aromatic peroxy radical mass mixing ratio +'217222' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 60029 ; + is_chemical = 1 ; + } +#Ethyne mass mixing ratio +'217223' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 10010 ; + is_chemical = 1 ; + } +#Acetonitrile mass mixing ratio +'217224' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 10007 ; + is_chemical = 1 ; + } +#Methyl peroxy nitrate mass mixing ratio +'217225' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 10055 ; + } +#Hydrogen cyanide mass mixing ratio +'217226' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 10006 ; + is_chemical = 1 ; + } +#Hydroperoxy aldehydes type 1 mass mixing ratio +'217227' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 60058 ; + } +#Hydroperoxy aldehydes type 2 mass mixing ratio +'217228' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 60059 ; + is_chemical = 1 ; + } +#Isoprene peroxy type B mass mixing ratio +'217229' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 60056 ; + is_chemical = 1 ; + } +#Isoprene peroxy type D mass mixing ratio +'217230' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 60057 ; + is_chemical = 1 ; + } +#Column integrated mass density of Volcanic sulfur dioxide +'218221' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 8 ; + is_chemical = 1 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } +#Column integrated mass density of Aromatic peroxy radical +'218222' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 60029 ; + is_chemical = 1 ; + } +#Column integrated mass density of Ethyne +'218223' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10010 ; + is_chemical = 1 ; + } +#Column integrated mass density of Acetonitrile +'218224' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10007 ; + is_chemical = 1 ; + } +#Column integrated mass density of Methyl peroxy nitrate +'218225' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10055 ; + is_chemical = 1 ; + } +#Column integrated mass density of Hydrogen cyanide +'218226' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10006 ; + is_chemical = 1 ; + } +#Column integrated mass density of Hydroperoxy aldehydes type 1 +'218227' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 60058 ; + is_chemical = 1 ; + } +#Column integrated mass density of Hydroperoxy aldehydes type 2 +'218228' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 60059 ; + } +#Column integrated mass density of Isoprene peroxy type B +'218229' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 60056 ; + is_chemical = 1 ; + } +#Column integrated mass density of Isoprene peroxy type D +'218230' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 60057 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Volcanic sulfur dioxide +'219221' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 8 ; + is_chemical = 1 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } +#Atmosphere emission mass flux of Aromatic peroxy radical +'219222' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60029 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Ethyne +'219223' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 10010 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Acetonitrile +'219224' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 10007 ; + } +#Atmosphere emission mass flux of Methyl peroxy nitrate +'219225' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 10055 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Hydrogen cyanide +'219226' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 10006 ; + } +#Atmosphere emission mass flux of Hydroperoxy aldehydes type 1 +'219227' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60058 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Hydroperoxy aldehydes type 2 +'219228' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60059 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Isoprene peroxy type B +'219229' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60056 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Isoprene peroxy type D +'219230' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60057 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Volcanic sulfur dioxide +'221221' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 8 ; + is_chemical = 1 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } +#Dry deposition velocity of Aromatic peroxy radical +'221222' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 60029 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Ethyne +'221223' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 10010 ; + } +#Dry deposition velocity of Acetonitrile +'221224' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 10007 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Methyl peroxy nitrate +'221225' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 10055 ; + } +#Dry deposition velocity of Hydrogen cyanide +'221226' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 10006 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Hydroperoxy aldehydes type 1 +'221227' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 60058 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Hydroperoxy aldehydes type 2 +'221228' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 60059 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Isoprene peroxy type B +'221229' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 60056 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Isoprene peroxy type D +'221230' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 60057 ; + is_chemical = 1 ; + } #-10 degrees C isothermal level (atm) '228020' = { discipline = 0 ; @@ -859,6 +1320,15 @@ scaledValueOfSecondFixedSurface = 10 ; scaleFactorOfSecondFixedSurface = 1 ; } +#Atmosphere emission mass flux of Methane from Wetlands +'228104' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 2 ; + sourceSinkChemicalPhysicalProcess = 10 ; + } #Convective precipitation '228143' = { discipline = 0 ; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 4ed813946..0142574c0 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -524,6 +524,15 @@ scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Volcanic sulfur dioxide mass mixing ratio +'VSO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 8 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } #Ammonium aerosol mass mixing ratio 'aermr18' = { discipline = 0 ; @@ -549,22 +558,66 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; - typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 8 ; scaledValueOfFirstWavelength = 55 ; typeOfSizeInterval = 255 ; aerosolType = 62003 ; is_aerosol_optical = 1 ; + typeOfWavelengthInterval = 11 ; + } +#Biogenic secondary organic aerosol mass mixing ratio +'aermr19' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Anthropogenic secondary organic aerosol mass mixing ratio +'aermr20' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Volcanic sulfur dioxide mass mixing ratio increment +'VSO2diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + typeOfGeneratingProcess = 20 ; + constituentType = 8 ; + sourceSinkChemicalPhysicalProcess = 7 ; } #Ammonium aerosol mass mixing ratio 'aermr18diff' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; + typeOfGeneratingProcess = 20 ; aerosolType = 62003 ; is_aerosol = 1 ; + } +#Biogenic secondary organic aerosol mass mixing ratio increment +'aermr19diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62032 ; + is_aerosol = 1 ; typeOfGeneratingProcess = 20 ; } +#Anthropogenic secondary organic aerosol mass mixing ratio increment +'aermr20diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + aerosolType = 62033 ; + } #Dry deposition of ammonium aerosol 'aerddpam' = { discipline = 0 ; @@ -607,6 +660,414 @@ typeOfFirstFixedSurface = 1 ; aerosolType = 62003 ; } +#Dry deposition of biogenic secondary organic aerosol +'aerddpsoab' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 12 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Sedimentation of biogenic secondary organic aerosol +'aersdmsoab' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Wet deposition of biogenic secondary organic aerosol by large-scale precipitation +'aerwdlsoab' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Wet deposition of biogenic secondary organic aerosol by convective precipitation +'aerwdcsoab' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Vertically integrated mass of biogenic secondary organic aerosol +'aermsssoab' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Dry deposition of anthropogenic secondary organic aerosol +'aerddpsoaa' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 12 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Sedimentation of anthropogenic secondary organic aerosol +'aersdmsoaa' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Wet deposition of anthropogenic secondary organic aerosol by large-scale precipitation +'aerwdlsoaa' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Wet deposition of anthropogenic secondary organic aerosol by convective precipitation +'aerwdcsoaa' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + is_aerosol = 1 ; + aerosolType = 62033 ; + } +#Vertically integrated mass of anthropogenic secondary organic aerosol +'aermsssoaa' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Secondary organic aerosol optical depth at 550 nm +'soaod550' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + scaledValueOfFirstWavelength = 550 ; + scaleFactorOfSecondWavelength = missing() ; + scaledValueOfSecondWavelength = missing() ; + aerosolType = 62012 ; + is_aerosol = 1 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 9 ; + } +#Aromatic peroxy radical mass mixing ratio +'AROO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 60029 ; + is_chemical = 1 ; + } +#Ethyne mass mixing ratio +'C2H2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 10010 ; + is_chemical = 1 ; + } +#Acetonitrile mass mixing ratio +'CH3CN' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 10007 ; + is_chemical = 1 ; + } +#Methyl peroxy nitrate mass mixing ratio +'CH3O2NO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 10055 ; + is_chemical = 1 ; + } +#Hydrogen cyanide mass mixing ratio +'HCN' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 10006 ; + is_chemical = 1 ; + } +#Hydroperoxy aldehydes type 1 mass mixing ratio +'HPALD1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 60058 ; + } +#Hydroperoxy aldehydes type 2 mass mixing ratio +'HPALD' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 60059 ; + is_chemical = 1 ; + } +#Isoprene peroxy type B mass mixing ratio +'ISOPBO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 60056 ; + is_chemical = 1 ; + } +#Isoprene peroxy type D mass mixing ratio +'ISOPDO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 60057 ; + is_chemical = 1 ; + } +#Column integrated mass density of Volcanic sulfur dioxide +'tc_VSO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 8 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } +#Column integrated mass density of Aromatic peroxy radical +'tc_AROO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 60029 ; + } +#Column integrated mass density of Ethyne +'tc_C2H2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10010 ; + is_chemical = 1 ; + } +#Column integrated mass density of Acetonitrile +'tc_CH3CN' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10007 ; + is_chemical = 1 ; + } +#Column integrated mass density of Methyl peroxy nitrate +'tc_CH3O2NO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10055 ; + is_chemical = 1 ; + } +#Column integrated mass density of Hydrogen cyanide +'tc_HCN' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10006 ; + is_chemical = 1 ; + } +#Column integrated mass density of Hydroperoxy aldehydes type 1 +'tc_HPALD1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 60058 ; + } +#Column integrated mass density of Hydroperoxy aldehydes type 2 +'tc_HPALD2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 60059 ; + is_chemical = 1 ; + } +#Column integrated mass density of Isoprene peroxy type B +'tc_ISOPBO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 60056 ; + is_chemical = 1 ; + } +#Column integrated mass density of Isoprene peroxy type D +'tc_ISOPDO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 60057 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Volcanic sulfur dioxide +'e_VSO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 8 ; + is_chemical = 1 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } +#Atmosphere emission mass flux of Aromatic peroxy radical +'e_AROO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60029 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Ethyne +'e_C2H2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 10010 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Acetonitrile +'e_CH3CN' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 10007 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Methyl peroxy nitrate +'e_CH3O2NO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 10055 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Hydrogen cyanide +'e_HCN' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 10006 ; + } +#Atmosphere emission mass flux of Hydroperoxy aldehydes type 1 +'e_HPALD1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60058 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Hydroperoxy aldehydes type 2 +'e_HPALD2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60059 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Isoprene peroxy type B +'e_ISOPBO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60056 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Isoprene peroxy type D +'e_ISOPDO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60057 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Volcanic sulfur dioxide +'dv_VSO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 8 ; + is_chemical = 1 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } +#Dry deposition velocity of Aromatic peroxy radical +'dv_AROO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 60029 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Ethyne +'dv_C2H2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 10010 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Acetonitrile +'dv_CH3CN' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 10007 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Methyl peroxy nitrate +'dv_CH3O2NO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 10055 ; + } +#Dry deposition velocity of Hydrogen cyanide +'dv_HCN' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 10006 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Hydroperoxy aldehydes type 1 +'dv_HPALD1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 60058 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Hydroperoxy aldehydes type 2 +'dv_HPALD2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 60059 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Isoprene peroxy type B +'dv_ISOPBO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 60056 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Isoprene peroxy type D +'dv_ISOPDO2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 60057 ; + } #-10 degrees C isothermal level (atm) 'degm10l' = { discipline = 0 ; @@ -859,6 +1320,15 @@ scaledValueOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 10 ; } +#Atmosphere emission mass flux of Methane from Wetlands +'e_WLCH4' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 2 ; + is_chemical = 1 ; + sourceSinkChemicalPhysicalProcess = 10 ; + } #Convective precipitation 'cp' = { discipline = 0 ; diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index 44268cf33..1d2e1efa7 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -524,6 +524,15 @@ scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Volcanic sulfur dioxide mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 8 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } #Ammonium aerosol mass mixing ratio 'kg kg**-1' = { discipline = 0 ; @@ -549,21 +558,65 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; - scaledValueOfFirstWavelength = 55 ; - typeOfWavelengthInterval = 11 ; - aerosolType = 62003 ; scaleFactorOfFirstWavelength = 8 ; is_aerosol_optical = 1 ; typeOfSizeInterval = 255 ; + scaledValueOfFirstWavelength = 55 ; + typeOfWavelengthInterval = 11 ; + aerosolType = 62003 ; + } +#Biogenic secondary organic aerosol mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Anthropogenic secondary organic aerosol mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_aerosol = 1 ; + aerosolType = 62033 ; + } +#Volcanic sulfur dioxide mass mixing ratio increment +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + typeOfGeneratingProcess = 20 ; + constituentType = 8 ; + sourceSinkChemicalPhysicalProcess = 7 ; } #Ammonium aerosol mass mixing ratio 'kg kg**-1' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; + typeOfGeneratingProcess = 20 ; aerosolType = 62003 ; is_aerosol = 1 ; + } +#Biogenic secondary organic aerosol mass mixing ratio increment +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; typeOfGeneratingProcess = 20 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Anthropogenic secondary organic aerosol mass mixing ratio increment +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_aerosol = 1 ; + typeOfGeneratingProcess = 20 ; + aerosolType = 62033 ; } #Dry deposition of ammonium aerosol 'kg m**-2 s**-1' = { @@ -602,10 +655,418 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - aerosolType = 62003 ; - is_aerosol = 1 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; + is_aerosol = 1 ; + aerosolType = 62003 ; + } +#Dry deposition of biogenic secondary organic aerosol +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 12 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Sedimentation of biogenic secondary organic aerosol +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Wet deposition of biogenic secondary organic aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + aerosolType = 62032 ; + is_aerosol = 1 ; + } +#Wet deposition of biogenic secondary organic aerosol by convective precipitation +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Vertically integrated mass of biogenic secondary organic aerosol +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_aerosol = 1 ; + aerosolType = 62032 ; + } +#Dry deposition of anthropogenic secondary organic aerosol +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 12 ; + is_aerosol = 1 ; + aerosolType = 62033 ; + } +#Sedimentation of anthropogenic secondary organic aerosol +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 11 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Wet deposition of anthropogenic secondary organic aerosol by large-scale precipitation +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 9 ; + is_aerosol = 1 ; + aerosolType = 62033 ; + } +#Wet deposition of anthropogenic secondary organic aerosol by convective precipitation +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 10 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Vertically integrated mass of anthropogenic secondary organic aerosol +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + aerosolType = 62033 ; + is_aerosol = 1 ; + } +#Secondary organic aerosol optical depth at 550 nm +'dimensionless' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 102 ; + scaledValueOfSecondWavelength = missing() ; + scaledValueOfFirstWavelength = 550 ; + typeOfWavelengthInterval = 11 ; + aerosolType = 62012 ; + scaleFactorOfSecondWavelength = missing() ; + scaleFactorOfFirstWavelength = 9 ; + is_aerosol = 1 ; + } +#Aromatic peroxy radical mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 60029 ; + is_chemical = 1 ; + } +#Ethyne mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 10010 ; + } +#Acetonitrile mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 10007 ; + } +#Methyl peroxy nitrate mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 10055 ; + is_chemical = 1 ; + } +#Hydrogen cyanide mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 10006 ; + } +#Hydroperoxy aldehydes type 1 mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 60058 ; + } +#Hydroperoxy aldehydes type 2 mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 60059 ; + is_chemical = 1 ; + } +#Isoprene peroxy type B mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 60056 ; + } +#Isoprene peroxy type D mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + is_chemical = 1 ; + constituentType = 60057 ; + } +#Column integrated mass density of Volcanic sulfur dioxide +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 8 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } +#Column integrated mass density of Aromatic peroxy radical +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 60029 ; + is_chemical = 1 ; + } +#Column integrated mass density of Ethyne +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10010 ; + is_chemical = 1 ; + } +#Column integrated mass density of Acetonitrile +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 10007 ; + } +#Column integrated mass density of Methyl peroxy nitrate +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10055 ; + is_chemical = 1 ; + } +#Column integrated mass density of Hydrogen cyanide +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 10006 ; + is_chemical = 1 ; + } +#Column integrated mass density of Hydroperoxy aldehydes type 1 +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 60058 ; + } +#Column integrated mass density of Hydroperoxy aldehydes type 2 +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 60059 ; + is_chemical = 1 ; + } +#Column integrated mass density of Isoprene peroxy type B +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + constituentType = 60056 ; + is_chemical = 1 ; + } +#Column integrated mass density of Isoprene peroxy type D +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 1 ; + is_chemical = 1 ; + constituentType = 60057 ; + } +#Atmosphere emission mass flux of Volcanic sulfur dioxide +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 8 ; + is_chemical = 1 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } +#Atmosphere emission mass flux of Aromatic peroxy radical +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 60029 ; + } +#Atmosphere emission mass flux of Ethyne +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 10010 ; + } +#Atmosphere emission mass flux of Acetonitrile +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 10007 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Methyl peroxy nitrate +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 10055 ; + } +#Atmosphere emission mass flux of Hydrogen cyanide +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 10006 ; + } +#Atmosphere emission mass flux of Hydroperoxy aldehydes type 1 +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60058 ; + is_chemical = 1 ; + } +#Atmosphere emission mass flux of Hydroperoxy aldehydes type 2 +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 60059 ; + } +#Atmosphere emission mass flux of Isoprene peroxy type B +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + is_chemical = 1 ; + constituentType = 60056 ; + } +#Atmosphere emission mass flux of Isoprene peroxy type D +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 60057 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Volcanic sulfur dioxide +'m s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 8 ; + sourceSinkChemicalPhysicalProcess = 7 ; + } +#Dry deposition velocity of Aromatic peroxy radical +'m s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 60029 ; + } +#Dry deposition velocity of Ethyne +'m s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 10010 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Acetonitrile +'m s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 10007 ; + } +#Dry deposition velocity of Methyl peroxy nitrate +'m s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 10055 ; + } +#Dry deposition velocity of Hydrogen cyanide +'m s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 10006 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Hydroperoxy aldehydes type 1 +'m s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 60058 ; + } +#Dry deposition velocity of Hydroperoxy aldehydes type 2 +'m s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 60059 ; + } +#Dry deposition velocity of Isoprene peroxy type B +'m s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + constituentType = 60056 ; + is_chemical = 1 ; + } +#Dry deposition velocity of Isoprene peroxy type D +'m s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 15 ; + is_chemical = 1 ; + constituentType = 60057 ; } #-10 degrees C isothermal level (atm) 'm' = { @@ -859,6 +1320,15 @@ typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; } +#Atmosphere emission mass flux of Methane from Wetlands +'kg m**-2 s**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 3 ; + constituentType = 2 ; + is_chemical = 1 ; + sourceSinkChemicalPhysicalProcess = 10 ; + } #Convective precipitation 'kg m**-2' = { discipline = 0 ; From 7b9adf77fe87e5ef62940d983392956e407fc07f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 17 Mar 2021 15:57:05 +0000 Subject: [PATCH 422/683] ECC-1224: GRIB2: CAMS parameters for 48r1 (Part 2) --- definitions/grib2/cfVarName.def | 4 ++-- definitions/grib2/localConcepts/ecmf/cfVarName.def | 8 ++++++-- definitions/grib2/localConcepts/ecmf/name.def | 4 ++++ definitions/grib2/localConcepts/ecmf/paramId.def | 8 ++++++-- definitions/grib2/localConcepts/ecmf/shortName.def | 8 ++++++-- definitions/grib2/localConcepts/ecmf/units.def | 4 ++++ definitions/grib2/name.def | 2 +- definitions/grib2/paramId.def | 6 +++--- definitions/grib2/shortName.def | 4 ++-- definitions/grib2/units.def | 2 +- 10 files changed, 35 insertions(+), 15 deletions(-) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index b720bb2dc..1f39ca42b 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -745,13 +745,13 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; + scaleFactorOfFirstWavelength = 9 ; scaledValueOfFirstWavelength = 550 ; scaleFactorOfSecondWavelength = missing() ; scaledValueOfSecondWavelength = missing() ; aerosolType = 62012 ; - is_aerosol = 1 ; + is_aerosol_optical = 1 ; typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 9 ; } #Aromatic peroxy radical mass mixing ratio 'AROO2' = { diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.def b/definitions/grib2/localConcepts/ecmf/cfVarName.def index 4f808fd6b..daf37cc26 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.def @@ -13708,11 +13708,12 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; + scaledValueOfFirstWavelength = 740 ; scaleFactorOfSecondWavelength = missing() ; scaledValueOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 9 ; - scaledValueOfFirstWavelength = 740 ; } #Solar induced Chlorophyll fluorescence at 755nm 'sif755' = { @@ -13725,6 +13726,7 @@ scaledValueOfFirstWavelength = 755 ; scaleFactorOfSecondWavelength = missing() ; scaledValueOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 771nm 'sif771' = { @@ -13732,11 +13734,12 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; + scaleFactorOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; scaledValueOfSecondWavelength = missing() ; typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 9 ; scaledValueOfFirstWavelength = 771 ; - scaleFactorOfSecondWavelength = missing() ; } #Solar induced Chlorophyll fluorescence at 757nm 'sif757' = { @@ -13745,6 +13748,7 @@ parameterCategory = 8 ; parameterNumber = 254 ; scaleFactorOfFirstWavelength = 9 ; + is_aerosol_optical = 1 ; scaledValueOfFirstWavelength = 757 ; scaleFactorOfSecondWavelength = missing() ; scaledValueOfSecondWavelength = missing() ; diff --git a/definitions/grib2/localConcepts/ecmf/name.def b/definitions/grib2/localConcepts/ecmf/name.def index fc1d5999f..ab74d3b4b 100644 --- a/definitions/grib2/localConcepts/ecmf/name.def +++ b/definitions/grib2/localConcepts/ecmf/name.def @@ -13713,6 +13713,7 @@ scaledValueOfSecondWavelength = missing() ; scaledValueOfFirstWavelength = 740 ; typeOfWavelengthInterval = 11 ; + is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 755nm 'Solar induced Chlorophyll fluorescence at 755nm' = { @@ -13723,6 +13724,7 @@ scaledValueOfSecondWavelength = missing() ; scaledValueOfFirstWavelength = 755 ; typeOfWavelengthInterval = 11 ; + is_aerosol_optical = 1 ; scaleFactorOfSecondWavelength = missing() ; scaleFactorOfFirstWavelength = 9 ; } @@ -13737,6 +13739,7 @@ typeOfWavelengthInterval = 11 ; scaleFactorOfSecondWavelength = missing() ; scaleFactorOfFirstWavelength = 9 ; + is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 757nm 'Solar induced Chlorophyll fluorescence at 757nm' = { @@ -13746,6 +13749,7 @@ parameterNumber = 254 ; scaleFactorOfSecondWavelength = missing() ; scaleFactorOfFirstWavelength = 9 ; + is_aerosol_optical = 1 ; scaledValueOfSecondWavelength = missing() ; scaledValueOfFirstWavelength = 757 ; typeOfWavelengthInterval = 11 ; diff --git a/definitions/grib2/localConcepts/ecmf/paramId.def b/definitions/grib2/localConcepts/ecmf/paramId.def index da7d7ff59..6a712cc9b 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.def @@ -13708,11 +13708,12 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; + scaleFactorOfSecondWavelength = missing() ; + scaledValueOfSecondWavelength = missing() ; typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 9 ; scaledValueOfFirstWavelength = 740 ; - scaleFactorOfSecondWavelength = missing() ; - scaledValueOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 755nm '228106' = { @@ -13723,6 +13724,7 @@ typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 9 ; scaledValueOfFirstWavelength = 755 ; + is_aerosol_optical = 1 ; scaleFactorOfSecondWavelength = missing() ; scaledValueOfSecondWavelength = missing() ; } @@ -13737,6 +13739,7 @@ scaledValueOfFirstWavelength = 771 ; scaleFactorOfSecondWavelength = missing() ; scaledValueOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 757nm '228108' = { @@ -13744,6 +13747,7 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; + is_aerosol_optical = 1 ; typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 9 ; scaledValueOfFirstWavelength = 757 ; diff --git a/definitions/grib2/localConcepts/ecmf/shortName.def b/definitions/grib2/localConcepts/ecmf/shortName.def index f4659e148..1c4e13a34 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.def @@ -13708,11 +13708,12 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; + scaledValueOfFirstWavelength = 740 ; scaleFactorOfSecondWavelength = missing() ; scaledValueOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 9 ; - scaledValueOfFirstWavelength = 740 ; } #Solar induced Chlorophyll fluorescence at 755nm 'sif755' = { @@ -13725,6 +13726,7 @@ scaledValueOfFirstWavelength = 755 ; scaleFactorOfSecondWavelength = missing() ; scaledValueOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 771nm 'sif771' = { @@ -13732,11 +13734,12 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; + scaleFactorOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; scaledValueOfSecondWavelength = missing() ; typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 9 ; scaledValueOfFirstWavelength = 771 ; - scaleFactorOfSecondWavelength = missing() ; } #Solar induced Chlorophyll fluorescence at 757nm 'sif757' = { @@ -13745,6 +13748,7 @@ parameterCategory = 8 ; parameterNumber = 254 ; scaleFactorOfFirstWavelength = 9 ; + is_aerosol_optical = 1 ; scaledValueOfFirstWavelength = 757 ; scaleFactorOfSecondWavelength = missing() ; scaledValueOfSecondWavelength = missing() ; diff --git a/definitions/grib2/localConcepts/ecmf/units.def b/definitions/grib2/localConcepts/ecmf/units.def index 4e44dadaa..7251ac771 100644 --- a/definitions/grib2/localConcepts/ecmf/units.def +++ b/definitions/grib2/localConcepts/ecmf/units.def @@ -13713,6 +13713,7 @@ scaledValueOfSecondWavelength = missing() ; scaledValueOfFirstWavelength = 740 ; typeOfWavelengthInterval = 11 ; + is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 755nm '10**-6 W m**-2 sr**-1 m**-1' = { @@ -13723,6 +13724,7 @@ scaledValueOfSecondWavelength = missing() ; scaledValueOfFirstWavelength = 755 ; typeOfWavelengthInterval = 11 ; + is_aerosol_optical = 1 ; scaleFactorOfSecondWavelength = missing() ; scaleFactorOfFirstWavelength = 9 ; } @@ -13737,6 +13739,7 @@ typeOfWavelengthInterval = 11 ; scaleFactorOfSecondWavelength = missing() ; scaleFactorOfFirstWavelength = 9 ; + is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 757nm '10**-6 W m**-2 sr**-1 m**-1' = { @@ -13746,6 +13749,7 @@ parameterNumber = 254 ; scaleFactorOfSecondWavelength = missing() ; scaleFactorOfFirstWavelength = 9 ; + is_aerosol_optical = 1 ; scaledValueOfSecondWavelength = missing() ; scaledValueOfFirstWavelength = 757 ; typeOfWavelengthInterval = 11 ; diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index 7c19a70c1..c242baf27 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -751,7 +751,7 @@ aerosolType = 62012 ; scaleFactorOfSecondWavelength = missing() ; scaleFactorOfFirstWavelength = 9 ; - is_aerosol = 1 ; + is_aerosol_optical = 1 ; } #Aromatic peroxy radical mass mixing ratio 'Aromatic peroxy radical mass mixing ratio' = { diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index 062da8f4d..3f324ca6f 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -745,13 +745,13 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfFirstWavelength = 9 ; scaledValueOfFirstWavelength = 550 ; scaleFactorOfSecondWavelength = missing() ; scaledValueOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; aerosolType = 62012 ; - is_aerosol = 1 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 9 ; } #Aromatic peroxy radical mass mixing ratio '217222' = { diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 0142574c0..71d4bb8ef 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -745,13 +745,13 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; + scaleFactorOfFirstWavelength = 9 ; scaledValueOfFirstWavelength = 550 ; scaleFactorOfSecondWavelength = missing() ; scaledValueOfSecondWavelength = missing() ; aerosolType = 62012 ; - is_aerosol = 1 ; + is_aerosol_optical = 1 ; typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 9 ; } #Aromatic peroxy radical mass mixing ratio 'AROO2' = { diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index 1d2e1efa7..28e7f2430 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -751,7 +751,7 @@ aerosolType = 62012 ; scaleFactorOfSecondWavelength = missing() ; scaleFactorOfFirstWavelength = 9 ; - is_aerosol = 1 ; + is_aerosol_optical = 1 ; } #Aromatic peroxy radical mass mixing ratio 'kg kg**-1' = { From 553757ec18658d67ced676d94521f46ae5364686 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 17 Mar 2021 16:44:11 +0000 Subject: [PATCH 423/683] Scripts: Add sanity checks for uniqueness --- definitions/add_params_from_tsv.pl | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index 5a12a2008..779d9d084 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -25,7 +25,8 @@ use Time::localtime; $ARGV[0] or die "USAGE: $0 input.tsv\n"; -my $WRITE_TO_FILES = 1; +my $SANITY_CHECK = 0; +my $WRITE_TO_FILES = 0; my $WRITE_TO_PARAMDB = 0; # Be careful. Fill in $contactId before proceeding my ($paramId, $shortName, $name, $units, $cfVarName, $interpol); @@ -89,6 +90,27 @@ if ($WRITE_TO_PARAMDB) { my $first = 1; my $lcount = 0; + +if ($SANITY_CHECK) { + print "Checking sanity: uniqueness of paramId and shortName keys ...\n"; + while (<>) { + chomp; + s/\r//g; # Remove DOS carriage returns + if ($first == 1) { + $first = 0; + next; + } + $lcount++; + ($paramId, $shortName) = split(/\t/); + my $x = $dbh->selectrow_array("select * from param.param where id = ?",undef,$paramId); + die "Error: paramId=$x already exists (line ", $lcount+1, ")\n" if (defined $x); + $x = $dbh->selectrow_array("select shortName from param.param where shortName = ?",undef,$shortName); + die "Error: shortName=$x already exists (line ", $lcount+1, ")\n" if (defined $x); + } + print "Sanity checking completed. $lcount rows checked. No errors\n"; + exit 0; +} + while (<>) { chomp; s/\r//g; # Remove DOS carriage returns From a1a809d279083a10ff43edcd3c0b8cd38c6b5252 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 17 Mar 2021 19:01:02 +0000 Subject: [PATCH 424/683] GRIB2: PDT Support for chemical source/sink --- definitions/grib2/section.1.def | 2 ++ src/grib_accessor_class_g2_chemical.c | 33 ++++++++++++++++++---- src/grib_accessor_class_g2_mars_labeling.c | 3 ++ src/grib_api_prototypes.h | 3 +- src/grib_util.c | 29 ++++++++++++++++++- 5 files changed, 63 insertions(+), 7 deletions(-) diff --git a/definitions/grib2/section.1.def b/definitions/grib2/section.1.def index 3cbdbb5a6..62a94ccd8 100644 --- a/definitions/grib2/section.1.def +++ b/definitions/grib2/section.1.def @@ -97,8 +97,10 @@ concept stepType { # 0=atmospheric chemical constituents # 1=atmospheric chemical constituents based on a distribution function +# 2=atmospheric chemical constituents with source or sink meta is_chemical g2_chemical(productDefinitionTemplateNumber, stepType, 0); meta is_chemical_distfn g2_chemical(productDefinitionTemplateNumber, stepType, 1); +meta is_chemical_srcsink g2_chemical(productDefinitionTemplateNumber, stepType, 2); # 0=aerosol # 1=optical properties of aerosol diff --git a/src/grib_accessor_class_g2_chemical.c b/src/grib_accessor_class_g2_chemical.c index 82bbb1480..87d606089 100644 --- a/src/grib_accessor_class_g2_chemical.c +++ b/src/grib_accessor_class_g2_chemical.c @@ -155,8 +155,16 @@ static int unpack_long(grib_accessor* a, long* val, size_t* len) long productDefinitionTemplateNumber = 0; grib_get_long(grib_handle_of_accessor(a), self->productDefinitionTemplateNumber, &productDefinitionTemplateNumber); - if (self->distribution) + /* + * 0 = atmospheric chemical constituents + * 1 = atmospheric chemical constituents based on a distribution function + * 2 = atmospheric chemical constituents with source or sink + */ + Assert(self->distribution == 0 || self->distribution == 1 || self->distribution == 2); + if (self->distribution == 1) *val = grib2_is_PDTN_ChemicalDistFunc(productDefinitionTemplateNumber); + else if (self->distribution == 2) + *val = grib2_is_PDTN_ChemicalSourceSink(productDefinitionTemplateNumber); else *val = grib2_is_PDTN_Chemical(productDefinitionTemplateNumber); @@ -194,20 +202,35 @@ static int pack_long(grib_accessor* a, const long* val, size_t* len) if (!strcmp(stepType, "instant")) isInstant = 1; + /* + * 0 = atmospheric chemical constituents + * 1 = atmospheric chemical constituents based on a distribution function + * 2 = atmospheric chemical constituents with source or sink + */ + Assert(self->distribution == 0 || self->distribution == 1 || self->distribution == 2); + if (eps == 1) { if (isInstant) { - productDefinitionTemplateNumberNew = (self->distribution ? 58 : 41); + if (self->distribution == 0) productDefinitionTemplateNumberNew=41; + if (self->distribution == 1) productDefinitionTemplateNumberNew=58; + if (self->distribution == 2) productDefinitionTemplateNumberNew=77; } else { - productDefinitionTemplateNumberNew = (self->distribution ? 68 : 43); + if (self->distribution == 0) productDefinitionTemplateNumberNew=43; + if (self->distribution == 1) productDefinitionTemplateNumberNew=68; + if (self->distribution == 2) productDefinitionTemplateNumberNew=79; } } else { if (isInstant) { - productDefinitionTemplateNumberNew = (self->distribution ? 57 : 40); + if (self->distribution == 0) productDefinitionTemplateNumberNew=40; + if (self->distribution == 1) productDefinitionTemplateNumberNew=57; + if (self->distribution == 2) productDefinitionTemplateNumberNew=76; } else { - productDefinitionTemplateNumberNew = (self->distribution ? 67 : 42); + if (self->distribution == 0) productDefinitionTemplateNumberNew=42; + if (self->distribution == 0) productDefinitionTemplateNumberNew=67; + if (self->distribution == 0) productDefinitionTemplateNumberNew=78; } } diff --git a/src/grib_accessor_class_g2_mars_labeling.c b/src/grib_accessor_class_g2_mars_labeling.c index 57d734efc..2f2cb2f01 100644 --- a/src/grib_accessor_class_g2_mars_labeling.c +++ b/src/grib_accessor_class_g2_mars_labeling.c @@ -239,10 +239,12 @@ static int extra_set(grib_accessor* a, long val) int is_instant = -1; long is_chemical = 0; long is_chemical_distfn = 0; + long is_chemical_srcsink = 0; long is_aerosol = 0; long is_aerosol_optical = 0; grib_get_long(hand, "is_chemical", &is_chemical); + grib_get_long(hand, "is_chemical_srcsink", &is_chemical_srcsink); grib_get_long(hand, "is_chemical_distfn", &is_chemical_distfn); grib_get_long(hand, "is_aerosol", &is_aerosol); grib_get_long(hand, "is_aerosol_optical", &is_aerosol_optical); @@ -414,6 +416,7 @@ static int extra_set(grib_accessor* a, long val) productDefinitionTemplateNumberNew = grib2_select_PDTN( is_eps, is_instant, is_chemical, + is_chemical_srcsink, is_chemical_distfn, is_aerosol, is_aerosol_optical); diff --git a/src/grib_api_prototypes.h b/src/grib_api_prototypes.h index 2fd9f17d7..196ebb42c 100644 --- a/src/grib_api_prototypes.h +++ b/src/grib_api_prototypes.h @@ -1476,10 +1476,11 @@ int grib_moments(grib_handle* h, double east, double north, double west, double int parse_keyval_string(const char* grib_tool, char* arg, int values_required, int default_type, grib_values values[], int* count); int grib2_is_PDTN_EPS(long productDefinitionTemplateNumber); int grib2_is_PDTN_Chemical(long productDefinitionTemplateNumber); +int grib2_is_PDTN_ChemicalSourceSink(long productDefinitionTemplateNumber); int grib2_is_PDTN_ChemicalDistFunc(long productDefinitionTemplateNumber); int grib2_is_PDTN_Aerosol(long productDefinitionTemplateNumber); int grib2_is_PDTN_AerosolOptical(long productDefinitionTemplateNumber); -int grib2_select_PDTN(int is_eps, int is_instant, int is_chemical, int is_chemical_distfn, int is_aerosol, int is_aerosol_optical); +int grib2_select_PDTN(int is_eps, int is_instant, int is_chemical, int is_chemical_srcsink, int is_chemical_distfn, int is_aerosol, int is_aerosol_optical); size_t sum_of_pl_array(const long* pl, size_t plsize); int grib_is_earth_oblate(grib_handle* h); int grib_util_grib_data_quality_check(grib_handle* h, double min_val, double max_val); diff --git a/src/grib_util.c b/src/grib_util.c index 5b94e96b8..faf09dc15 100644 --- a/src/grib_util.c +++ b/src/grib_util.c @@ -2021,6 +2021,17 @@ int grib2_is_PDTN_Chemical(long pdtn) pdtn == 43); } +/* Return 1 if the productDefinitionTemplateNumber (GRIB2) is for + * atmospheric chemical constituents with source or sink */ +int grib2_is_PDTN_ChemicalSourceSink(long pdtn) +{ + return ( + pdtn == 76 || + pdtn == 77 || + pdtn == 78 || + pdtn == 79); +} + /* Return 1 if the productDefinitionTemplateNumber (GRIB2) is for * atmospheric chemical constituents based on a distribution function */ int grib2_is_PDTN_ChemicalDistFunc(long pdtn) @@ -2066,13 +2077,14 @@ int grib2_is_PDTN_AerosolOptical(long pdtn) */ int grib2_select_PDTN(int is_eps, int is_instant, int is_chemical, + int is_chemical_srcsink, int is_chemical_distfn, int is_aerosol, int is_aerosol_optical) { /* At most one has to be set. All could be 0 */ /* Unfortunately if PDTN=48 then both aerosol and aerosol_optical can be 1! */ - const int sum = is_chemical + is_chemical_distfn + is_aerosol + is_aerosol_optical; + const int sum = is_chemical + is_chemical_srcsink + is_chemical_distfn + is_aerosol + is_aerosol_optical; Assert(sum == 0 || sum == 1 || sum == 2); if (is_chemical) { @@ -2090,6 +2102,21 @@ int grib2_select_PDTN(int is_eps, int is_instant, } } + if (is_chemical_srcsink) { + if (is_eps) { + if (is_instant) + return 77; + else + return 79; + } + else { + if (is_instant) + return 76; + else + return 78; + } + } + if (is_chemical_distfn) { if (is_eps) { if (is_instant) From 3dc64e0293a6f1b7eb0200e9731fca634945c5ac Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 17 Mar 2021 19:01:53 +0000 Subject: [PATCH 425/683] ECC-1224: Use is_chemical_srcsink when sourceSinkChemicalPhysicalProcess is set --- definitions/grib2/cfVarName.def | 14 +++++++------- definitions/grib2/name.def | 12 ++++++------ definitions/grib2/paramId.def | 12 ++++++------ definitions/grib2/shortName.def | 14 +++++++------- definitions/grib2/units.def | 12 ++++++------ 5 files changed, 32 insertions(+), 32 deletions(-) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 1f39ca42b..43512ec1a 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -529,8 +529,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 8 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Ammonium aerosol mass mixing ratio @@ -586,9 +586,9 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; - typeOfGeneratingProcess = 20 ; constituentType = 8 ; + typeOfGeneratingProcess = 20 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Ammonium aerosol mass mixing ratio @@ -830,8 +830,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 8 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Column integrated mass density of Aromatic peroxy radical @@ -912,7 +912,7 @@ parameterCategory = 20 ; parameterNumber = 3 ; constituentType = 8 ; - is_chemical = 1 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Atmosphere emission mass flux of Aromatic peroxy radical @@ -993,7 +993,7 @@ parameterCategory = 20 ; parameterNumber = 15 ; constituentType = 8 ; - is_chemical = 1 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Dry deposition velocity of Aromatic peroxy radical @@ -1326,7 +1326,7 @@ parameterCategory = 20 ; parameterNumber = 3 ; constituentType = 2 ; - is_chemical = 1 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 10 ; } #Convective precipitation diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index c242baf27..074bb2bd4 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -529,8 +529,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 8 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Ammonium aerosol mass mixing ratio @@ -586,9 +586,9 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; typeOfGeneratingProcess = 20 ; constituentType = 8 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Ammonium aerosol mass mixing ratio @@ -830,8 +830,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 8 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Column integrated mass density of Aromatic peroxy radical @@ -912,7 +912,7 @@ parameterCategory = 20 ; parameterNumber = 3 ; constituentType = 8 ; - is_chemical = 1 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Atmosphere emission mass flux of Aromatic peroxy radical @@ -992,8 +992,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 8 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Dry deposition velocity of Aromatic peroxy radical @@ -1326,7 +1326,7 @@ parameterCategory = 20 ; parameterNumber = 3 ; constituentType = 2 ; - is_chemical = 1 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 10 ; } #Convective precipitation diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index 3f324ca6f..b57612267 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -529,8 +529,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 8 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Ammonium aerosol mass mixing ratio @@ -587,8 +587,8 @@ parameterCategory = 20 ; parameterNumber = 2 ; constituentType = 8 ; - is_chemical = 1 ; typeOfGeneratingProcess = 20 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Ammonium aerosol mass mixing ratio @@ -831,7 +831,7 @@ parameterCategory = 20 ; parameterNumber = 1 ; constituentType = 8 ; - is_chemical = 1 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Column integrated mass density of Aromatic peroxy radical @@ -912,7 +912,7 @@ parameterCategory = 20 ; parameterNumber = 3 ; constituentType = 8 ; - is_chemical = 1 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Atmosphere emission mass flux of Aromatic peroxy radical @@ -993,7 +993,7 @@ parameterCategory = 20 ; parameterNumber = 15 ; constituentType = 8 ; - is_chemical = 1 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Dry deposition velocity of Aromatic peroxy radical @@ -1325,8 +1325,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 2 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 10 ; } #Convective precipitation diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 71d4bb8ef..2351c990b 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -529,8 +529,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 8 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Ammonium aerosol mass mixing ratio @@ -586,9 +586,9 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; - typeOfGeneratingProcess = 20 ; constituentType = 8 ; + typeOfGeneratingProcess = 20 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Ammonium aerosol mass mixing ratio @@ -830,8 +830,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 8 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Column integrated mass density of Aromatic peroxy radical @@ -912,7 +912,7 @@ parameterCategory = 20 ; parameterNumber = 3 ; constituentType = 8 ; - is_chemical = 1 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Atmosphere emission mass flux of Aromatic peroxy radical @@ -993,7 +993,7 @@ parameterCategory = 20 ; parameterNumber = 15 ; constituentType = 8 ; - is_chemical = 1 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Dry deposition velocity of Aromatic peroxy radical @@ -1326,7 +1326,7 @@ parameterCategory = 20 ; parameterNumber = 3 ; constituentType = 2 ; - is_chemical = 1 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 10 ; } #Convective precipitation diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index 28e7f2430..94ca77896 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -529,8 +529,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 8 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Ammonium aerosol mass mixing ratio @@ -586,9 +586,9 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; typeOfGeneratingProcess = 20 ; constituentType = 8 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Ammonium aerosol mass mixing ratio @@ -830,8 +830,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 8 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Column integrated mass density of Aromatic peroxy radical @@ -912,7 +912,7 @@ parameterCategory = 20 ; parameterNumber = 3 ; constituentType = 8 ; - is_chemical = 1 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Atmosphere emission mass flux of Aromatic peroxy radical @@ -992,8 +992,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 8 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } #Dry deposition velocity of Aromatic peroxy radical @@ -1326,7 +1326,7 @@ parameterCategory = 20 ; parameterNumber = 3 ; constituentType = 2 ; - is_chemical = 1 ; + is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 10 ; } #Convective precipitation From 24d973e1bc048d0b2ebc6ef43f8d6433aad6adaa Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 17 Mar 2021 21:23:41 +0000 Subject: [PATCH 426/683] Testing: GRIB2 chemical and aerosol PDT selection --- tests/CMakeLists.txt | 1 + tests/grib2_chemicals_aerosols.sh | 50 +++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100755 tests/grib2_chemicals_aerosols.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 0e371b958..e442182c1 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -180,6 +180,7 @@ if( HAVE_BUILD_TOOLS ) grib1to3 grib2to3 grib2_templates + grib2_chemicals_aerosols grib3_templates grib_bad grib_ls diff --git a/tests/grib2_chemicals_aerosols.sh b/tests/grib2_chemicals_aerosols.sh new file mode 100755 index 000000000..a82c456cc --- /dev/null +++ b/tests/grib2_chemicals_aerosols.sh @@ -0,0 +1,50 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u + +label="grib_ecc-1224-test" +temp=temp.$label +sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl + +latest=`${tools_dir}/grib_get -p tablesVersionLatest $sample2` + +# CHEMICALS +# ----------- +# Plain chemicals +${tools_dir}/grib_set -s tablesVersion=$latest,is_chemical=1 $sample2 $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '40' +grib_check_key_equals $temp constituentType '0' + +# Chemicals with source and sink +${tools_dir}/grib_set -s tablesVersion=$latest,is_chemical_srcsink=1 $sample2 $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '76' +grib_check_key_equals $temp constituentType,sourceSinkChemicalPhysicalProcess '0 255' + +# Chemicals with distribution function +${tools_dir}/grib_set -s tablesVersion=$latest,is_chemical_distfn=1 $sample2 $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '57' +grib_check_key_equals $temp constituentType,numberOfModeOfDistribution,modeNumber '0 0 0' + +# AEROSOLS +# ---------- +# Plain aerosols +${tools_dir}/grib_set -s tablesVersion=$latest,is_aerosol=1 $sample2 $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '48' +grib_check_key_equals $temp aerosolType,typeOfSizeInterval,typeOfWavelengthInterval '0 0 0' + +# Aerosol optical +${tools_dir}/grib_set -s tablesVersion=$latest,is_aerosol_optical=1 $sample2 $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '48' +#${tools_dir}/grib_dump -O $temp + + +rm -f $temp From 01c0cd75863feb93813b5554cb67fbd4ffec2e6a Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 17 Mar 2021 21:24:40 +0000 Subject: [PATCH 427/683] Rename data member and fix condition --- src/grib_accessor_class_g2_chemical.c | 39 ++++++++++++++------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/src/grib_accessor_class_g2_chemical.c b/src/grib_accessor_class_g2_chemical.c index 87d606089..5bcdea96e 100644 --- a/src/grib_accessor_class_g2_chemical.c +++ b/src/grib_accessor_class_g2_chemical.c @@ -19,7 +19,7 @@ IMPLEMENTS = init MEMBERS=const char* productDefinitionTemplateNumber MEMBERS=const char* stepType - MEMBERS=int distribution + MEMBERS=int chemical_type END_CLASS_DEF */ @@ -51,7 +51,7 @@ typedef struct grib_accessor_g2_chemical /* Members defined in g2_chemical */ const char* productDefinitionTemplateNumber; const char* stepType; - int distribution; + int chemical_type; } grib_accessor_g2_chemical; extern grib_accessor_class* grib_accessor_class_unsigned; @@ -146,7 +146,7 @@ static void init(grib_accessor* a, const long l, grib_arguments* c) self->productDefinitionTemplateNumber = grib_arguments_get_name(hand, c, n++); self->stepType = grib_arguments_get_name(hand, c, n++); - self->distribution = grib_arguments_get_long(hand, c, n++); + self->chemical_type = grib_arguments_get_long(hand, c, n++); } static int unpack_long(grib_accessor* a, long* val, size_t* len) @@ -160,10 +160,10 @@ static int unpack_long(grib_accessor* a, long* val, size_t* len) * 1 = atmospheric chemical constituents based on a distribution function * 2 = atmospheric chemical constituents with source or sink */ - Assert(self->distribution == 0 || self->distribution == 1 || self->distribution == 2); - if (self->distribution == 1) + Assert(self->chemical_type == 0 || self->chemical_type == 1 || self->chemical_type == 2); + if (self->chemical_type == 1) *val = grib2_is_PDTN_ChemicalDistFunc(productDefinitionTemplateNumber); - else if (self->distribution == 2) + else if (self->chemical_type == 2) *val = grib2_is_PDTN_ChemicalSourceSink(productDefinitionTemplateNumber); else *val = grib2_is_PDTN_Chemical(productDefinitionTemplateNumber); @@ -207,30 +207,31 @@ static int pack_long(grib_accessor* a, const long* val, size_t* len) * 1 = atmospheric chemical constituents based on a distribution function * 2 = atmospheric chemical constituents with source or sink */ - Assert(self->distribution == 0 || self->distribution == 1 || self->distribution == 2); + Assert(self->chemical_type == 0 || self->chemical_type == 1 || self->chemical_type == 2); if (eps == 1) { if (isInstant) { - if (self->distribution == 0) productDefinitionTemplateNumberNew=41; - if (self->distribution == 1) productDefinitionTemplateNumberNew=58; - if (self->distribution == 2) productDefinitionTemplateNumberNew=77; + if (self->chemical_type == 0) productDefinitionTemplateNumberNew=41; + else if (self->chemical_type == 1) productDefinitionTemplateNumberNew=58; + else if (self->chemical_type == 2) productDefinitionTemplateNumberNew=77; } else { - if (self->distribution == 0) productDefinitionTemplateNumberNew=43; - if (self->distribution == 1) productDefinitionTemplateNumberNew=68; - if (self->distribution == 2) productDefinitionTemplateNumberNew=79; + if (self->chemical_type == 0) productDefinitionTemplateNumberNew=43; + else if (self->chemical_type == 1) productDefinitionTemplateNumberNew=68; + else if (self->chemical_type == 2) productDefinitionTemplateNumberNew=79; } } else { + /* deterministic */ if (isInstant) { - if (self->distribution == 0) productDefinitionTemplateNumberNew=40; - if (self->distribution == 1) productDefinitionTemplateNumberNew=57; - if (self->distribution == 2) productDefinitionTemplateNumberNew=76; + if (self->chemical_type == 0) productDefinitionTemplateNumberNew=40; + else if (self->chemical_type == 1) productDefinitionTemplateNumberNew=57; + else if (self->chemical_type == 2) productDefinitionTemplateNumberNew=76; } else { - if (self->distribution == 0) productDefinitionTemplateNumberNew=42; - if (self->distribution == 0) productDefinitionTemplateNumberNew=67; - if (self->distribution == 0) productDefinitionTemplateNumberNew=78; + if (self->chemical_type == 0) productDefinitionTemplateNumberNew=42; + else if (self->chemical_type == 1) productDefinitionTemplateNumberNew=67; + else if (self->chemical_type == 2) productDefinitionTemplateNumberNew=78; } } From 0778f36301e513729e32de153d4f9e24bf7352af Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 17 Mar 2021 21:24:40 +0000 Subject: [PATCH 428/683] Rename data member and fix condition --- src/grib_accessor_class_g2_chemical.c | 39 ++++++++++++++------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/src/grib_accessor_class_g2_chemical.c b/src/grib_accessor_class_g2_chemical.c index 87d606089..5bcdea96e 100644 --- a/src/grib_accessor_class_g2_chemical.c +++ b/src/grib_accessor_class_g2_chemical.c @@ -19,7 +19,7 @@ IMPLEMENTS = init MEMBERS=const char* productDefinitionTemplateNumber MEMBERS=const char* stepType - MEMBERS=int distribution + MEMBERS=int chemical_type END_CLASS_DEF */ @@ -51,7 +51,7 @@ typedef struct grib_accessor_g2_chemical /* Members defined in g2_chemical */ const char* productDefinitionTemplateNumber; const char* stepType; - int distribution; + int chemical_type; } grib_accessor_g2_chemical; extern grib_accessor_class* grib_accessor_class_unsigned; @@ -146,7 +146,7 @@ static void init(grib_accessor* a, const long l, grib_arguments* c) self->productDefinitionTemplateNumber = grib_arguments_get_name(hand, c, n++); self->stepType = grib_arguments_get_name(hand, c, n++); - self->distribution = grib_arguments_get_long(hand, c, n++); + self->chemical_type = grib_arguments_get_long(hand, c, n++); } static int unpack_long(grib_accessor* a, long* val, size_t* len) @@ -160,10 +160,10 @@ static int unpack_long(grib_accessor* a, long* val, size_t* len) * 1 = atmospheric chemical constituents based on a distribution function * 2 = atmospheric chemical constituents with source or sink */ - Assert(self->distribution == 0 || self->distribution == 1 || self->distribution == 2); - if (self->distribution == 1) + Assert(self->chemical_type == 0 || self->chemical_type == 1 || self->chemical_type == 2); + if (self->chemical_type == 1) *val = grib2_is_PDTN_ChemicalDistFunc(productDefinitionTemplateNumber); - else if (self->distribution == 2) + else if (self->chemical_type == 2) *val = grib2_is_PDTN_ChemicalSourceSink(productDefinitionTemplateNumber); else *val = grib2_is_PDTN_Chemical(productDefinitionTemplateNumber); @@ -207,30 +207,31 @@ static int pack_long(grib_accessor* a, const long* val, size_t* len) * 1 = atmospheric chemical constituents based on a distribution function * 2 = atmospheric chemical constituents with source or sink */ - Assert(self->distribution == 0 || self->distribution == 1 || self->distribution == 2); + Assert(self->chemical_type == 0 || self->chemical_type == 1 || self->chemical_type == 2); if (eps == 1) { if (isInstant) { - if (self->distribution == 0) productDefinitionTemplateNumberNew=41; - if (self->distribution == 1) productDefinitionTemplateNumberNew=58; - if (self->distribution == 2) productDefinitionTemplateNumberNew=77; + if (self->chemical_type == 0) productDefinitionTemplateNumberNew=41; + else if (self->chemical_type == 1) productDefinitionTemplateNumberNew=58; + else if (self->chemical_type == 2) productDefinitionTemplateNumberNew=77; } else { - if (self->distribution == 0) productDefinitionTemplateNumberNew=43; - if (self->distribution == 1) productDefinitionTemplateNumberNew=68; - if (self->distribution == 2) productDefinitionTemplateNumberNew=79; + if (self->chemical_type == 0) productDefinitionTemplateNumberNew=43; + else if (self->chemical_type == 1) productDefinitionTemplateNumberNew=68; + else if (self->chemical_type == 2) productDefinitionTemplateNumberNew=79; } } else { + /* deterministic */ if (isInstant) { - if (self->distribution == 0) productDefinitionTemplateNumberNew=40; - if (self->distribution == 1) productDefinitionTemplateNumberNew=57; - if (self->distribution == 2) productDefinitionTemplateNumberNew=76; + if (self->chemical_type == 0) productDefinitionTemplateNumberNew=40; + else if (self->chemical_type == 1) productDefinitionTemplateNumberNew=57; + else if (self->chemical_type == 2) productDefinitionTemplateNumberNew=76; } else { - if (self->distribution == 0) productDefinitionTemplateNumberNew=42; - if (self->distribution == 0) productDefinitionTemplateNumberNew=67; - if (self->distribution == 0) productDefinitionTemplateNumberNew=78; + if (self->chemical_type == 0) productDefinitionTemplateNumberNew=42; + else if (self->chemical_type == 1) productDefinitionTemplateNumberNew=67; + else if (self->chemical_type == 2) productDefinitionTemplateNumberNew=78; } } From 7698634773cdb5b3259b14574fee2a1bb70fb9b8 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 17 Mar 2021 21:23:41 +0000 Subject: [PATCH 429/683] Testing: GRIB2 chemical and aerosol PDT selection --- tests/CMakeLists.txt | 1 + tests/grib2_chemicals_aerosols.sh | 50 +++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100755 tests/grib2_chemicals_aerosols.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 0e371b958..e442182c1 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -180,6 +180,7 @@ if( HAVE_BUILD_TOOLS ) grib1to3 grib2to3 grib2_templates + grib2_chemicals_aerosols grib3_templates grib_bad grib_ls diff --git a/tests/grib2_chemicals_aerosols.sh b/tests/grib2_chemicals_aerosols.sh new file mode 100755 index 000000000..a82c456cc --- /dev/null +++ b/tests/grib2_chemicals_aerosols.sh @@ -0,0 +1,50 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u + +label="grib_ecc-1224-test" +temp=temp.$label +sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl + +latest=`${tools_dir}/grib_get -p tablesVersionLatest $sample2` + +# CHEMICALS +# ----------- +# Plain chemicals +${tools_dir}/grib_set -s tablesVersion=$latest,is_chemical=1 $sample2 $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '40' +grib_check_key_equals $temp constituentType '0' + +# Chemicals with source and sink +${tools_dir}/grib_set -s tablesVersion=$latest,is_chemical_srcsink=1 $sample2 $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '76' +grib_check_key_equals $temp constituentType,sourceSinkChemicalPhysicalProcess '0 255' + +# Chemicals with distribution function +${tools_dir}/grib_set -s tablesVersion=$latest,is_chemical_distfn=1 $sample2 $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '57' +grib_check_key_equals $temp constituentType,numberOfModeOfDistribution,modeNumber '0 0 0' + +# AEROSOLS +# ---------- +# Plain aerosols +${tools_dir}/grib_set -s tablesVersion=$latest,is_aerosol=1 $sample2 $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '48' +grib_check_key_equals $temp aerosolType,typeOfSizeInterval,typeOfWavelengthInterval '0 0 0' + +# Aerosol optical +${tools_dir}/grib_set -s tablesVersion=$latest,is_aerosol_optical=1 $sample2 $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '48' +#${tools_dir}/grib_dump -O $temp + + +rm -f $temp From c76d7748af0d7477fcc74d1a329fe0eef5e2405d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 18 Mar 2021 20:20:33 +0000 Subject: [PATCH 430/683] Testing: GRIB2 chemicals/aerosols --- tests/grib2_chemicals_aerosols.sh | 60 ++++++++++++++++++++++++++++--- 1 file changed, 56 insertions(+), 4 deletions(-) diff --git a/tests/grib2_chemicals_aerosols.sh b/tests/grib2_chemicals_aerosols.sh index a82c456cc..4d47aec62 100755 --- a/tests/grib2_chemicals_aerosols.sh +++ b/tests/grib2_chemicals_aerosols.sh @@ -17,8 +17,9 @@ sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl latest=`${tools_dir}/grib_get -p tablesVersionLatest $sample2` -# CHEMICALS -# ----------- +# ============================= +# Deterministic instantaneous +# ============================= # Plain chemicals ${tools_dir}/grib_set -s tablesVersion=$latest,is_chemical=1 $sample2 $temp grib_check_key_equals $temp productDefinitionTemplateNumber '40' @@ -34,8 +35,6 @@ ${tools_dir}/grib_set -s tablesVersion=$latest,is_chemical_distfn=1 $sample2 $te grib_check_key_equals $temp productDefinitionTemplateNumber '57' grib_check_key_equals $temp constituentType,numberOfModeOfDistribution,modeNumber '0 0 0' -# AEROSOLS -# ---------- # Plain aerosols ${tools_dir}/grib_set -s tablesVersion=$latest,is_aerosol=1 $sample2 $temp grib_check_key_equals $temp productDefinitionTemplateNumber '48' @@ -47,4 +46,57 @@ grib_check_key_equals $temp productDefinitionTemplateNumber '48' #${tools_dir}/grib_dump -O $temp +# ============================= +# Deterministic interval-based +# ============================= +# Plain chemicals +${tools_dir}/grib_set -s tablesVersion=$latest,stepType=accum,is_chemical=1 $sample2 $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '42' +grib_check_key_equals $temp constituentType '0' + +# Chemicals with source and sink +${tools_dir}/grib_set -s tablesVersion=$latest,stepType=accum,is_chemical_srcsink=1 $sample2 $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '78' +grib_check_key_equals $temp constituentType,sourceSinkChemicalPhysicalProcess '0 255' + +# Chemicals with distribution function +${tools_dir}/grib_set -s tablesVersion=$latest,stepType=accum,is_chemical_distfn=1 $sample2 $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '67' +grib_check_key_equals $temp constituentType,numberOfModeOfDistribution,modeNumber '0 0 0' + +# Plain aerosols +${tools_dir}/grib_set -s tablesVersion=$latest,stepType=accum,is_aerosol=1 $sample2 $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '46' +grib_check_key_equals $temp aerosolType,typeOfSizeInterval '0 0' + + +# ============================= +# Ensemble instantaneous +# ============================= +# Plain chemicals +tempSample=temp.sample.$label +${tools_dir}/grib_set -s tablesVersion=$latest,productDefinitionTemplateNumber=1 $sample2 $tempSample +grib_check_key_equals $tempSample perturbationNumber '0' + +${tools_dir}/grib_set -s is_chemical=1 $tempSample $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '41' +grib_check_key_equals $temp constituentType,perturbationNumber '0 0' + +# Chemicals with source and sink +${tools_dir}/grib_set -s is_chemical_srcsink=1 $tempSample $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '77' +grib_check_key_equals $temp constituentType,sourceSinkChemicalPhysicalProcess '0 255' + +# Chemicals with distribution function +${tools_dir}/grib_set -s is_chemical_distfn=1 $tempSample $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '58' +grib_check_key_equals $temp constituentType,numberOfModeOfDistribution,modeNumber '0 0 0' + +# Plain aerosols +${tools_dir}/grib_set -s is_aerosol=1 $tempSample $temp +grib_check_key_equals $temp productDefinitionTemplateNumber '45' +grib_check_key_equals $temp aerosolType,typeOfSizeInterval '0 0' + + + rm -f $temp From a4de42701e3d6bc230454b7058b3140802238499 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 20 Mar 2021 12:59:06 +0000 Subject: [PATCH 431/683] C: New utility function path_is_regular_file --- src/codes_util.c | 16 +++++++++++++--- src/grib_api_prototypes.h | 1 + tools/bufr_split_by_rdbSubtype.c | 10 +--------- tools/grib_check_gaussian_grid.c | 11 +---------- 4 files changed, 16 insertions(+), 22 deletions(-) diff --git a/src/codes_util.c b/src/codes_util.c index ca54f9cd8..b1d091711 100644 --- a/src/codes_util.c +++ b/src/codes_util.c @@ -54,11 +54,21 @@ char get_dir_separator_char(void) return DIR_SEPARATOR_CHAR; } -/* Return 1 if the filepath is a directory, 0 otherwise */ -int path_is_directory(const char* filename) +/* Return 1 if the filepath is a regular file, 0 otherwise */ +int path_is_regular_file(const char* path) { struct stat s; - int stat_val = stat(filename, &s); + int stat_val = stat(path, &s); + if (stat_val != 0) + return 0; /*error doing stat*/ + return S_ISREG(s.st_mode); /* 1 if it's a regular file */ +} + +/* Return 1 if the filepath is a directory, 0 otherwise */ +int path_is_directory(const char* path) +{ + struct stat s; + int stat_val = stat(path, &s); if (stat_val == 0) { if (S_ISDIR(s.st_mode)) { return 1; diff --git a/src/grib_api_prototypes.h b/src/grib_api_prototypes.h index 196ebb42c..3237ebbff 100644 --- a/src/grib_api_prototypes.h +++ b/src/grib_api_prototypes.h @@ -1463,6 +1463,7 @@ grib_expression* grib_arguments_get_expression(grib_handle* h, grib_arguments* a /* codes_util.c */ double normalise_longitude_in_degrees(double lon); char get_dir_separator_char(void); +int path_is_regular_file(const char* path); int path_is_directory(const char* filename); char* codes_getenv(const char* name); diff --git a/tools/bufr_split_by_rdbSubtype.c b/tools/bufr_split_by_rdbSubtype.c index a4486f566..b6af983ac 100644 --- a/tools/bufr_split_by_rdbSubtype.c +++ b/tools/bufr_split_by_rdbSubtype.c @@ -28,14 +28,6 @@ static void usage(const char* prog) printf("Usage: %s [-v] infile\n", prog); exit(1); } -static int file_exists(const char* path) -{ - struct stat s; - int stat_val = stat(path, &s); - if (stat_val != 0) - return 0; /*error doing stat*/ - return S_ISREG(s.st_mode); -} /* If rdbSubtype can be extracted, return GRIB_SUCCESS otherwise error code. */ /* If BUFR message does not have an ECMWF local section, set rdbSubtype to -1 */ @@ -137,7 +129,7 @@ static int split_file_by_subtype(FILE* in, const char* filename, unsigned long* sprintf(ofilename, OUTPUT_FILENAME_SUBTYPE, rdbSubtype); if (verbose) { - if (!file_exists(ofilename)) + if (!path_is_regular_file(ofilename)) printf("Writing output to %s\n", ofilename); } out = fopen(ofilename, "ab"); diff --git a/tools/grib_check_gaussian_grid.c b/tools/grib_check_gaussian_grid.c index 0fa14343c..58d8bfb1f 100644 --- a/tools/grib_check_gaussian_grid.c +++ b/tools/grib_check_gaussian_grid.c @@ -73,22 +73,13 @@ double get_precision(long edition) return 0.0; } -static int is_regular_file(const char* path) -{ - struct stat s; - int stat_val = stat(path, &s); - if (stat_val != 0) - return 0; /*error doing stat*/ - return S_ISREG(s.st_mode); -} - int process_file(const char* filename) { int err = 0, msg_num = 0; codes_handle* h = NULL; FILE* in = NULL; - if (!is_regular_file(filename)) { + if (!path_is_regular_file(filename)) { if (verbose) printf(" WARNING: '%s' not a regular file! Ignoring\n", filename); return GRIB_IO_PROBLEM; From 8b29863ee532418d3b22a86db7de964fa0c85592 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 21 Mar 2021 17:26:25 +0000 Subject: [PATCH 432/683] Update author list --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index 39ca7f85e..13606179a 100755 --- a/AUTHORS +++ b/AUTHORS @@ -1,6 +1,7 @@ Enrico Fucile Shahram Najm Sandor Kertesz +Sebastien Villaume Florian Rathgeber Baudouin Raoult Cristian Codorean From d1ae16ae15d1c628f2d2b421d57dc9d9d2f3713e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 21 Mar 2021 17:26:42 +0000 Subject: [PATCH 433/683] Scripts: no need for tarfiles text --- definitions/create_def.pl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/definitions/create_def.pl b/definitions/create_def.pl index fc24d8ba7..c331d8a22 100755 --- a/definitions/create_def.pl +++ b/definitions/create_def.pl @@ -18,7 +18,7 @@ my $query; my $q; my $qh; my $dbh = DBI->connect("dbi:mysql(RaiseError=>1):database=$db;host=$host",$user,$pass) or die $DBI::errstr; # I have written to it already or not -my $tarfilesflag = 0; +#my $tarfilesflag = 0; sub create_cfName { my $p; my %seen; @@ -39,8 +39,8 @@ EOF # file containing the list of grib api parameters files we want to tar and # distribute to users for them to download and update their list of parameter # to the latest - open(TAR,$tarfilesflag ? ">>" : ">","tarfiles.txt") or die "Count not open file tarfiles.txt: $!"; - $tarfilesflag=1; + #open(TAR,$tarfilesflag ? ">>" : ">","tarfiles.txt") or die "Count not open file tarfiles.txt: $!"; + #$tarfilesflag=1; while (my ($keyval,$force128,$edition,$centre,$paramId,$attribute,$value,$name,$shortName)=$qh->fetchrow_array ) { @@ -112,8 +112,8 @@ EOF # file containing the list of grib api parameters files we want to tar and # distribute to users for them to download and update their list of parameter # to the latest - open(TAR,$tarfilesflag ? ">>" : ">","tarfiles.txt") or die "Count not open file tarfiles.txt: $!"; - $tarfilesflag=1; + #open(TAR,$tarfilesflag ? ">>" : ">","tarfiles.txt") or die "Count not open file tarfiles.txt: $!"; + #$tarfilesflag=1; while (my ($keyval,$force128,$edition,$centre,$paramId,$attribute,$value,$name,$shortName)=$qh->fetchrow_array ) { From 9e52edd4a31e07ea4ef15c16f2adcd3439366584 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 21 Mar 2021 17:27:14 +0000 Subject: [PATCH 434/683] Examples: print error rather than assert --- examples/C/bufr_missing.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/C/bufr_missing.c b/examples/C/bufr_missing.c index 3779b9753..da968b11a 100644 --- a/examples/C/bufr_missing.c +++ b/examples/C/bufr_missing.c @@ -62,8 +62,10 @@ int main(int argc, char* argv[]) } is_missing = codes_is_missing(h, "relativeHumidity", &err); - assert(!err); - assert(is_missing == 1); + if (err || !is_missing) { + fprintf(stderr, "Error: relativeHumidity should be 'missing'\n"); + return 1; + } /* Set some other keys to be missing */ CODES_CHECK(codes_set_missing(h, "blockNumber"), 0); From 1c6fdbd9a31aff51f0971803fd5c6d0356cb982a Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 21 Mar 2021 17:27:37 +0000 Subject: [PATCH 435/683] Tools: use the same includes as other tools --- tools/grib_check_gaussian_grid.c | 55 ++++++++++++++++---------------- 1 file changed, 28 insertions(+), 27 deletions(-) diff --git a/tools/grib_check_gaussian_grid.c b/tools/grib_check_gaussian_grid.c index 58d8bfb1f..b9101ccd4 100644 --- a/tools/grib_check_gaussian_grid.c +++ b/tools/grib_check_gaussian_grid.c @@ -19,7 +19,8 @@ #include #include #include -#include "eccodes.h" + +#include "grib_api_internal.h" #define STR_EQUAL(s1, s2) (strcmp((s1), (s2)) == 0) @@ -76,8 +77,8 @@ double get_precision(long edition) int process_file(const char* filename) { int err = 0, msg_num = 0; - codes_handle* h = NULL; - FILE* in = NULL; + grib_handle* h = NULL; + FILE* in = NULL; if (!path_is_regular_file(filename)) { if (verbose) @@ -94,7 +95,7 @@ int process_file(const char* filename) if (verbose) printf("Checking file %s\n", filename); - while ((h = codes_handle_new_from_file(0, in, PRODUCT_GRIB, &err)) != NULL) { + while ((h = grib_handle_new_from_file(0, in, &err)) != NULL) { int is_reduced = 0, is_regular = 0, grid_ok = 0; long edition = 0, N = 0, Nj = 0, numberOfDataPoints; size_t len = 0, sizeOfValuesArray = 0; @@ -104,15 +105,15 @@ int process_file(const char* filename) double angular_tolerance, lat1, lon1, lat2, lon2, expected_lon2; double iDirectionIncrementInDegrees; - if (err != CODES_SUCCESS) - CODES_CHECK(err, 0); + if (err != GRIB_SUCCESS) + GRIB_CHECK(err, 0); ++msg_num; - CODES_CHECK(codes_get_long(h, "edition", &edition), 0); + GRIB_CHECK(grib_get_long(h, "edition", &edition), 0); if (verbose) printf(" Processing GRIB message #%d (edition=%ld)\n", msg_num, edition); len = 32; - CODES_CHECK(codes_get_string(h, "gridType", gridType, &len), 0); + GRIB_CHECK(grib_get_string(h, "gridType", gridType, &len), 0); is_regular = STR_EQUAL(gridType, "regular_gg"); is_reduced = STR_EQUAL(gridType, "reduced_gg"); grid_ok = is_regular || is_reduced; @@ -120,18 +121,18 @@ int process_file(const char* filename) /*error("ERROR: gridType should be Reduced or Regular Gaussian Grid!\n");*/ if (verbose) printf(" WARNING: gridType should be Reduced or Regular Gaussian Grid! Ignoring\n"); - codes_handle_delete(h); + grib_handle_delete(h); continue; } - CODES_CHECK(codes_get_long(h, "N", &N), 0); - CODES_CHECK(codes_get_long(h, "Nj", &Nj), 0); - CODES_CHECK(codes_get_long(h, "numberOfDataPoints", &numberOfDataPoints), 0); - CODES_CHECK(codes_get_double(h, "latitudeOfFirstGridPointInDegrees", &lat1), 0); - CODES_CHECK(codes_get_double(h, "longitudeOfFirstGridPointInDegrees", &lon1), 0); - CODES_CHECK(codes_get_double(h, "latitudeOfLastGridPointInDegrees", &lat2), 0); - CODES_CHECK(codes_get_double(h, "longitudeOfLastGridPointInDegrees", &lon2), 0); - CODES_CHECK(codes_get_double(h, "iDirectionIncrementInDegrees", &iDirectionIncrementInDegrees), 0); + GRIB_CHECK(grib_get_long(h, "N", &N), 0); + GRIB_CHECK(grib_get_long(h, "Nj", &Nj), 0); + GRIB_CHECK(grib_get_long(h, "numberOfDataPoints", &numberOfDataPoints), 0); + GRIB_CHECK(grib_get_double(h, "latitudeOfFirstGridPointInDegrees", &lat1), 0); + GRIB_CHECK(grib_get_double(h, "longitudeOfFirstGridPointInDegrees", &lon1), 0); + GRIB_CHECK(grib_get_double(h, "latitudeOfLastGridPointInDegrees", &lat2), 0); + GRIB_CHECK(grib_get_double(h, "longitudeOfLastGridPointInDegrees", &lon2), 0); + GRIB_CHECK(grib_get_double(h, "iDirectionIncrementInDegrees", &iDirectionIncrementInDegrees), 0); angular_tolerance = get_precision(edition); @@ -155,7 +156,7 @@ int process_file(const char* filename) /* Note: grib_get_gaussian_latitudes() assumes the 'lats' array has 2N elements! */ /* So do not allocate Nj */ lats = (double*)malloc(sizeof(double) * 2 * N); - CODES_CHECK(codes_get_gaussian_latitudes(N, lats), 0); + GRIB_CHECK(grib_get_gaussian_latitudes(N, lats), 0); if (!DBL_EQUAL(lats[0], lat1, angular_tolerance)) { error(filename, msg_num, "latitudeOfFirstGridPointInDegrees=%f but should be %f\n", lat1, lats[0]); @@ -168,10 +169,10 @@ int process_file(const char* filename) int pl_sum = 0, max_pl = 0, is_missing_Ni = 0, is_missing_Di = 0; size_t i = 0, pl_len = 0; long is_octahedral = 0; - is_missing_Ni = codes_is_missing(h, "Ni", &err); - assert(err == CODES_SUCCESS); - is_missing_Di = codes_is_missing(h, "iDirectionIncrement", &err); - assert(err == CODES_SUCCESS); + is_missing_Ni = grib_is_missing(h, "Ni", &err); + assert(err == GRIB_SUCCESS); + is_missing_Di = grib_is_missing(h, "iDirectionIncrement", &err); + assert(err == GRIB_SUCCESS); if (!is_missing_Ni) { error(filename, msg_num, "For a reduced gaussian grid Ni should be missing\n"); } @@ -179,14 +180,14 @@ int process_file(const char* filename) error(filename, msg_num, "For a reduced gaussian grid iDirectionIncrement should be missing\n"); } - CODES_CHECK(codes_get_size(h, "pl", &pl_len), 0); + GRIB_CHECK(grib_get_size(h, "pl", &pl_len), 0); assert(pl_len > 0); if (pl_len != 2 * N) { error(filename, msg_num, "Length of pl array is %ld but should be 2*N (%ld)\n", pl_len, 2 * N); } pl = (long*)malloc(pl_len * sizeof(long)); assert(pl); - CODES_CHECK(codes_get_long_array(h, "pl", pl, &pl_len), 0); + GRIB_CHECK(grib_get_long_array(h, "pl", pl, &pl_len), 0); max_pl = pl[0]; /* Check pl is symmetric */ @@ -208,7 +209,7 @@ int process_file(const char* filename) if (pl_sum != numberOfDataPoints) { error(filename, msg_num, "Sum of pl array %ld does not match numberOfDataPoints %ld\n", pl_sum, numberOfDataPoints); } - CODES_CHECK(codes_get_long(h, "isOctahedral", &is_octahedral), 0); + GRIB_CHECK(grib_get_long(h, "isOctahedral", &is_octahedral), 0); if (is_octahedral) { if (verbose) printf(" This is an Octahedral Gaussian grid\n"); @@ -221,14 +222,14 @@ int process_file(const char* filename) error(filename, msg_num, "longitudeOfLastGridPointInDegrees=%f but should be %f\n", lon2, expected_lon2); } - CODES_CHECK(codes_get_size(h, "values", &sizeOfValuesArray), 0); + GRIB_CHECK(grib_get_size(h, "values", &sizeOfValuesArray), 0); if (sizeOfValuesArray != numberOfDataPoints) { error(filename, msg_num, "Number of data points %d different from size of values array %d\n", numberOfDataPoints, sizeOfValuesArray); } free(lats); - codes_handle_delete(h); + grib_handle_delete(h); } fclose(in); if (verbose) From 09f71fb62d5bd608edb35bc5df53ac6927f24085 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 22 Mar 2021 12:30:52 +0000 Subject: [PATCH 436/683] Testing: delete temp file --- tests/grib2_chemicals_aerosols.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/grib2_chemicals_aerosols.sh b/tests/grib2_chemicals_aerosols.sh index 4d47aec62..1a62e6ff6 100755 --- a/tests/grib2_chemicals_aerosols.sh +++ b/tests/grib2_chemicals_aerosols.sh @@ -98,5 +98,5 @@ grib_check_key_equals $temp productDefinitionTemplateNumber '45' grib_check_key_equals $temp aerosolType,typeOfSizeInterval '0 0' - +rm -f $tempSample rm -f $temp From 00ee2bd7e9d5accd5cad0e9775eaeb80530b4db7 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 22 Mar 2021 12:32:17 +0000 Subject: [PATCH 437/683] Bump up version --- .appveyor.yml | 2 +- CMakeLists.txt | 2 +- version.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 5d9889a4c..fa6559448 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -2,7 +2,7 @@ # general configuration # #---------------------------------# -version: 2.21.0-{build}-{branch} +version: 2.22.0-{build}-{branch} branches: only: diff --git a/CMakeLists.txt b/CMakeLists.txt index b706a4db8..ebe546d80 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ cmake_minimum_required( VERSION 3.12 FATAL_ERROR ) find_package( ecbuild 3.4 REQUIRED HINTS ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild) # Initialise project -project( eccodes VERSION 2.21.0 LANGUAGES C ) +project( eccodes VERSION 2.22.0 LANGUAGES C ) ############################################################################### # system checks needed for eccodes_config.h and some options like MEMFS diff --git a/version.sh b/version.sh index 88071baaf..784e2eedf 100644 --- a/version.sh +++ b/version.sh @@ -3,7 +3,7 @@ PACKAGE_NAME='eccodes' # Package version ECCODES_MAJOR_VERSION=2 -ECCODES_MINOR_VERSION=21 +ECCODES_MINOR_VERSION=22 ECCODES_REVISION_VERSION=0 ECCODES_CURRENT=1 From 310ad0bd0df084832228d97d765adaad4f22d4a6 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 22 Mar 2021 14:43:33 +0000 Subject: [PATCH 438/683] Update list of keys and hash --- definitions/grib3/template.3.110.def | 2 +- definitions/grib3/template.3.140.def | 2 +- definitions/grib3/template.3.20.def | 2 +- .../grib3/template.3.shape_of_the_earth.def | 106 + src/grib_hash_keys.c | 12465 ++++++++-------- tests/keys | 3697 ++--- 6 files changed, 8393 insertions(+), 7881 deletions(-) create mode 100755 definitions/grib3/template.3.shape_of_the_earth.def diff --git a/definitions/grib3/template.3.110.def b/definitions/grib3/template.3.110.def index d0f37c35a..419736fb2 100644 --- a/definitions/grib3/template.3.110.def +++ b/definitions/grib3/template.3.110.def @@ -32,5 +32,5 @@ unsigned[4] Dy : dump ; # Projection centre flag unsigned[1] projectionCentreFlag : dump ; -include "grib3/template.3.scanning_mode.def"; +include "grib3/template.4.scanning_mode.def"; diff --git a/definitions/grib3/template.3.140.def b/definitions/grib3/template.3.140.def index b5d9d023d..0b15856b6 100644 --- a/definitions/grib3/template.3.140.def +++ b/definitions/grib3/template.3.140.def @@ -43,7 +43,7 @@ alias Dx = xDirectionGridLengthInMillimetres ; unsigned[4] yDirectionGridLengthInMillimetres : dump ; alias Dy = yDirectionGridLengthInMillimetres ; -include "grib3/template.3.scanning_mode.def"; +include "grib3/template.4.scanning_mode.def"; iterator lambert_azimuthal_equal_area(numberOfPoints,missingValue,values, radius,Nx,Ny, diff --git a/definitions/grib3/template.3.20.def b/definitions/grib3/template.3.20.def index 2ba66029a..fa805f82d 100644 --- a/definitions/grib3/template.3.20.def +++ b/definitions/grib3/template.3.20.def @@ -63,7 +63,7 @@ flags[1] projectionCentreFlag 'grib3/tables/[tablesVersion]/3.5.table' : dump; # If bit 1 is 1, then the South Pole is on the projection plane flagbit southPoleOnProjectionPlane(projectionCentreFlag,7) : dump; # WMO bit 1 -include "grib3/template.3.scanning_mode.def"; +include "grib3/template.4.scanning_mode.def"; iterator polar_stereographic(numberOfPoints,missingValue,values, diff --git a/definitions/grib3/template.3.shape_of_the_earth.def b/definitions/grib3/template.3.shape_of_the_earth.def new file mode 100755 index 000000000..2ff2dcdf0 --- /dev/null +++ b/definitions/grib3/template.3.shape_of_the_earth.def @@ -0,0 +1,106 @@ +# (C) Copyright 2005- ECMWF. + +codetable[1] shapeOfTheEarth ('3.2.table',masterDir,localDir) : dump; + +# Scale factor of radius of spherical earth +unsigned[1] scaleFactorOfRadiusOfSphericalEarth = missing() : can_be_missing, edition_specific; + +# Scaled value of radius of spherical earth (in metres) +unsigned[4] scaledValueOfRadiusOfSphericalEarth = missing(): can_be_missing, edition_specific; + +# Scale factor of major axis of oblate spheroid earth +unsigned[1] scaleFactorOfEarthMajorAxis = missing(): can_be_missing, edition_specific; +alias scaleFactorOfMajorAxisOfOblateSpheroidEarth=scaleFactorOfEarthMajorAxis; + +# Scaled value of major axis of oblate spheroid earth +unsigned[4] scaledValueOfEarthMajorAxis = missing(): can_be_missing, edition_specific; +alias scaledValueOfMajorAxisOfOblateSpheroidEarth=scaledValueOfEarthMajorAxis; + +# Scale factor of minor axis of oblate spheroid earth +unsigned[1] scaleFactorOfEarthMinorAxis = missing(): can_be_missing, edition_specific; +alias scaleFactorOfMinorAxisOfOblateSpheroidEarth=scaleFactorOfEarthMinorAxis ; + +# Scaled value of minor axis of oblate spheroid earth +unsigned[4] scaledValueOfEarthMinorAxis = missing(): can_be_missing, edition_specific; +alias scaledValueOfMinorAxisOfOblateSpheroidEarth=scaledValueOfEarthMinorAxis; + +alias earthIsOblate=one; + +_if (shapeOfTheEarth == 0) { + transient radius=6367470; + alias radiusOfTheEarth=radius; + alias radiusInMetres=radius; + alias earthIsOblate=zero; +} +_if (shapeOfTheEarth == 1){ + meta radius from_scale_factor_scaled_value( + scaleFactorOfRadiusOfSphericalEarth, + scaledValueOfRadiusOfSphericalEarth); + alias radiusOfTheEarth=radius; + alias radiusInMetres=radius; + alias earthIsOblate=zero; +} +_if (shapeOfTheEarth == 6){ + transient radius=6371229; + alias radiusOfTheEarth=radius; + alias radiusInMetres=radius; + alias earthIsOblate=zero; +} + +_if (shapeOfTheEarth == 8){ + transient radius=6371200; + alias radiusOfTheEarth=radius; + alias radiusInMetres=radius; + alias earthIsOblate=zero; +} + + +# Oblate spheroid cases +_if (shapeOfTheEarth == 2){ + # IAU in 1965 + transient earthMajorAxis = 6378160.0; + transient earthMinorAxis = 6356775.0; + alias earthMajorAxisInMetres=earthMajorAxis; + alias earthMinorAxisInMetres=earthMinorAxis; +} +_if (shapeOfTheEarth == 3){ + # Major and minor axes specified (in km) by data producer + meta earthMajorAxis from_scale_factor_scaled_value( + scaleFactorOfEarthMajorAxis, scaledValueOfEarthMajorAxis); + meta earthMinorAxis from_scale_factor_scaled_value( + scaleFactorOfEarthMinorAxis, scaledValueOfEarthMinorAxis); + + # ECC-979 + # The 'scale' accessor works with integers so rounds its first argument + # which is not what we want because the inputs are doubles with decimal + # expansions. So use the trick of dividing by 0.001 to multiply by 1000 + # + # meta earthMajorAxisInMetres scale(earthMajorAxis, thousand, one, zero); + # meta earthMinorAxisInMetres scale(earthMinorAxis, thousand, one, zero); + meta earthMajorAxisInMetres divdouble(earthMajorAxis, 0.001); + meta earthMinorAxisInMetres divdouble(earthMinorAxis, 0.001); +} +_if (shapeOfTheEarth == 7){ + # Major and minor axes specified (in m) by data producer + meta earthMajorAxis from_scale_factor_scaled_value( + scaleFactorOfEarthMajorAxis, scaledValueOfEarthMajorAxis); + meta earthMinorAxis from_scale_factor_scaled_value( + scaleFactorOfEarthMinorAxis, scaledValueOfEarthMinorAxis); + alias earthMajorAxisInMetres=earthMajorAxis; + alias earthMinorAxisInMetres=earthMinorAxis; +} +_if (shapeOfTheEarth == 4 || shapeOfTheEarth == 5){ + # 4 -> IAG-GRS80 model + # 5 -> WGS84 + transient earthMajorAxis = 6378137.0; + transient earthMinorAxis = 6356752.314; + alias earthMajorAxisInMetres=earthMajorAxis; + alias earthMinorAxisInMetres=earthMinorAxis; +} +_if (shapeOfTheEarth == 9){ + # Airy 1830 + transient earthMajorAxis = 6377563.396; + transient earthMinorAxis = 6356256.909; + alias earthMajorAxisInMetres=earthMajorAxis; + alias earthMinorAxisInMetres=earthMinorAxis; +} diff --git a/src/grib_hash_keys.c b/src/grib_hash_keys.c index 8b3e516cb..6f7bfbd07 100644 --- a/src/grib_hash_keys.c +++ b/src/grib_hash_keys.c @@ -34,12 +34,12 @@ error "gperf generated tables don't work with this execution character set. Plea struct grib_keys_hash { char* name; int id;}; #include -#define TOTAL_KEYWORDS 2384 +#define TOTAL_KEYWORDS 2407 #define MIN_WORD_LENGTH 1 #define MAX_WORD_LENGTH 74 #define MIN_HASH_VALUE 1 -#define MAX_HASH_VALUE 31978 -/* maximum key range = 31978, duplicates = 0 */ +#define MAX_HASH_VALUE 33742 +/* maximum key range = 33742, duplicates = 0 */ #ifdef __GNUC__ @@ -55,32 +55,32 @@ hash_keys (str, len) { static const unsigned short asso_values[] = { - 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, - 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, - 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, - 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, - 31979, 31979, 0, 31979, 31979, 0, 31979, 31979, 250, 1792, - 1573, 1754, 1587, 2914, 361, 2514, 89, 11, 1, 1, - 0, 31979, 31979, 31979, 31979, 1331, 4690, 2538, 97, 741, - 76, 4857, 2907, 685, 602, 595, 505, 1271, 755, 64, - 1930, 79, 943, 128, 84, 4644, 1600, 2896, 256, 4587, - 1, 0, 0, 31979, 31979, 2806, 31979, 3, 345, 51, - 0, 5, 170, 181, 99, 4, 2371, 3054, 73, 4, - 0, 10, 21, 985, 2, 11, 2, 60, 202, 278, - 491, 55, 461, 10, 148, 0, 31979, 31979, 31979, 31979, - 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, - 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, - 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, - 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, - 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, - 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, - 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, - 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, - 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, - 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, - 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, - 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, - 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979, 31979 + 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, + 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, + 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, + 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, + 33743, 33743, 0, 33743, 33743, 1, 33743, 33743, 2, 1832, + 1690, 2223, 2185, 2408, 9, 2548, 62, 4, 1, 1, + 0, 33743, 33743, 33743, 33743, 2185, 2054, 2687, 106, 1497, + 46, 3993, 3842, 661, 551, 14, 522, 1570, 762, 128, + 1948, 47, 1046, 125, 81, 5551, 1623, 3583, 948, 4601, + 13, 0, 0, 33743, 33743, 1645, 33743, 3, 435, 42, + 0, 5, 215, 247, 78, 4, 2591, 3367, 68, 4, + 0, 10, 21, 1033, 2, 11, 2, 57, 162, 403, + 400, 54, 245, 52, 208, 1, 33743, 33743, 33743, 33743, + 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, + 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, + 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, + 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, + 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, + 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, + 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, + 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, + 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, + 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, + 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, + 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, + 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743, 33743 }; register int hval = len; @@ -168,1085 +168,1092 @@ static const unsigned char lengthtable[] = { 0, 1, 2, 3, 2, 1, 2, 2, 2, 1, 0, 3, 0, 2, 0, 4, 0, 0, 5, 4, 0, 4, 0, 3, 4, 0, 0, 6, - 0, 0, 5, 4, 7, 8, 0, 4, 0, 6, 0, 5, 0, 9, + 0, 1, 5, 4, 7, 8, 0, 4, 0, 6, 0, 5, 0, 9, 5, 0, 4, 0, 0, 9, 0, 0, 0, 3, 5, 0, 0, 7, - 0, 9, 9, 0, 7, 3, 0, 0, 4, 6, 0, 0, 0, 0, - 0, 4, 0, 0, 0, 8, 6, 4, 4, 10, 10, 5, 10, 6, - 0, 7, 6, 9, 0, 0, 7, 7, 4, 5, 10, 0, 0, 6, - 6, 0, 0, 0, 10, 0, 0, 0, 6, 2, 0, 8, 0, 0, - 2, 0, 7, 0, 3, 9, 8, 5, 8, 0, 10, 5, 0, 6, - 6, 0, 8, 7, 5, 0, 7, 0, 3, 0, 3, 0, 0, 0, - 0, 9, 0, 0, 0, 0, 0, 10, 10, 5, 0, 0, 0, 0, - 0, 7, 0, 0, 6, 0, 0, 4, 8, 0, 0, 5, 10, 0, - 5, 2, 5, 6, 8, 7, 0, 7, 6, 4, 10, 9, 9, 0, - 0, 5, 0, 0, 8, 0, 10, 7, 10, 4, 0, 8, 0, 0, - 10, 0, 8, 7, 0, 5, 0, 0, 0, 8, 9, 6, 10, 2, - 0, 0, 0, 0, 0, 10, 0, 8, 0, 5, 0, 11, 10, 0, - 0, 0, 0, 0, 0, 0, 13, 6, 5, 0, 14, 0, 0, 0, - 0, 0, 8, 7, 7, 0, 8, 11, 0, 0, 0, 0, 0, 0, - 0, 0, 2, 10, 0, 0, 0, 9, 0, 4, 8, 0, 0, 0, - 0, 0, 0, 8, 0, 8, 5, 10, 0, 0, 0, 0, 2, 17, - 11, 0, 9, 0, 0, 0, 0, 0, 5, 0, 0, 0, 11, 10, - 12, 10, 6, 8, 5, 0, 2, 0, 0, 3, 13, 0, 0, 0, - 0, 0, 9, 7, 9, 9, 0, 0, 0, 0, 0, 0, 0, 9, - 0, 8, 0, 8, 0, 10, 0, 0, 20, 9, 0, 0, 0, 0, - 12, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 9, - 0, 8, 4, 0, 10, 0, 0, 0, 0, 0, 13, 0, 0, 1, - 0, 8, 0, 10, 0, 0, 0, 6, 11, 0, 7, 7, 6, 0, - 10, 0, 0, 8, 13, 0, 0, 8, 6, 0, 0, 11, 0, 0, - 13, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, - 6, 0, 17, 10, 0, 0, 10, 7, 0, 0, 11, 0, 0, 0, - 11, 11, 18, 0, 6, 0, 11, 2, 8, 10, 0, 0, 0, 17, - 12, 0, 5, 14, 6, 0, 0, 0, 7, 0, 0, 0, 0, 6, - 24, 0, 9, 0, 0, 0, 5, 0, 0, 0, 0, 6, 0, 7, - 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 11, 0, - 11, 0, 0, 12, 0, 0, 0, 0, 0, 3, 4, 0, 0, 10, - 0, 0, 4, 0, 15, 0, 0, 0, 0, 0, 0, 12, 0, 0, - 0, 5, 0, 0, 0, 0, 0, 15, 14, 0, 14, 0, 12, 0, - 13, 5, 0, 23, 0, 0, 7, 6, 0, 0, 0, 13, 8, 13, - 0, 0, 19, 0, 14, 9, 0, 0, 10, 14, 0, 0, 0, 2, - 0, 0, 0, 0, 0, 0, 0, 3, 18, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 12, 11, 3, 0, 0, 0, - 0, 12, 6, 22, 0, 11, 0, 7, 10, 5, 22, 0, 0, 0, - 0, 0, 0, 14, 0, 0, 6, 0, 11, 0, 14, 0, 0, 0, - 0, 0, 0, 17, 0, 0, 15, 0, 0, 0, 4, 0, 0, 0, - 10, 2, 0, 0, 8, 0, 0, 8, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 11, 22, 0, 0, 0, 14, 0, 10, 12, 0, 13, - 15, 0, 0, 0, 11, 0, 15, 0, 0, 0, 23, 13, 12, 0, - 0, 0, 0, 11, 0, 0, 0, 14, 0, 12, 0, 3, 0, 0, - 18, 0, 0, 0, 0, 13, 3, 0, 0, 9, 0, 0, 0, 0, - 0, 0, 21, 0, 0, 0, 0, 8, 0, 0, 12, 14, 18, 0, - 0, 0, 0, 0, 0, 3, 0, 0, 13, 0, 0, 0, 0, 6, - 10, 0, 0, 13, 0, 0, 0, 0, 0, 9, 19, 7, 0, 19, - 0, 17, 13, 0, 0, 9, 6, 0, 0, 0, 0, 15, 0, 13, + 0, 9, 9, 0, 7, 0, 0, 0, 4, 6, 0, 6, 4, 0, + 4, 0, 5, 0, 6, 4, 7, 0, 9, 10, 10, 7, 10, 6, + 0, 10, 0, 8, 7, 0, 5, 4, 0, 0, 6, 0, 0, 6, + 5, 10, 8, 0, 5, 6, 8, 6, 0, 0, 9, 7, 2, 8, + 0, 10, 3, 8, 2, 8, 5, 0, 7, 0, 3, 0, 3, 0, + 0, 6, 5, 10, 0, 4, 0, 0, 6, 0, 0, 8, 0, 0, + 0, 7, 0, 7, 0, 0, 0, 0, 0, 7, 9, 5, 0, 4, + 8, 0, 0, 10, 5, 2, 5, 6, 0, 10, 0, 7, 8, 9, + 0, 8, 0, 0, 9, 6, 10, 10, 0, 5, 5, 0, 10, 0, + 8, 0, 0, 0, 7, 0, 0, 0, 10, 0, 5, 10, 8, 0, + 0, 11, 0, 0, 8, 7, 8, 9, 0, 0, 8, 0, 0, 6, + 0, 0, 0, 8, 0, 0, 2, 0, 10, 0, 0, 0, 13, 0, + 0, 0, 14, 0, 7, 0, 0, 8, 0, 11, 0, 0, 0, 0, + 12, 0, 0, 0, 0, 0, 7, 2, 10, 11, 0, 0, 0, 6, + 0, 10, 0, 0, 0, 4, 0, 0, 0, 0, 0, 9, 5, 0, + 2, 5, 9, 0, 0, 7, 0, 6, 11, 0, 4, 15, 0, 9, + 8, 0, 17, 0, 0, 0, 0, 0, 0, 5, 0, 10, 0, 0, + 0, 9, 0, 0, 0, 9, 0, 4, 0, 0, 0, 0, 0, 8, + 8, 0, 0, 0, 5, 8, 0, 0, 0, 0, 0, 0, 0, 9, + 0, 6, 0, 0, 0, 0, 0, 7, 0, 0, 0, 2, 0, 8, + 6, 8, 13, 0, 0, 0, 0, 5, 0, 9, 0, 2, 11, 0, + 0, 0, 10, 10, 0, 0, 0, 0, 0, 11, 10, 13, 0, 0, + 0, 12, 0, 0, 0, 0, 13, 8, 0, 0, 0, 10, 0, 11, + 0, 0, 18, 5, 20, 0, 11, 0, 11, 0, 0, 0, 0, 17, + 13, 0, 0, 12, 0, 0, 0, 11, 3, 4, 0, 10, 8, 0, + 24, 9, 0, 6, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, + 0, 10, 0, 0, 0, 10, 0, 8, 3, 0, 0, 0, 0, 10, + 0, 0, 7, 0, 0, 7, 0, 0, 4, 0, 0, 15, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 9, 0, 0, + 0, 0, 7, 14, 6, 0, 0, 0, 0, 8, 0, 6, 15, 0, + 0, 0, 0, 0, 0, 18, 0, 9, 0, 0, 0, 7, 0, 19, + 0, 12, 0, 0, 0, 1, 6, 23, 12, 0, 13, 0, 10, 0, + 0, 0, 0, 0, 0, 0, 0, 6, 0, 11, 0, 10, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 7, 0, 0, + 0, 0, 0, 0, 5, 0, 8, 0, 0, 13, 0, 0, 0, 0, + 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 5, 0, 15, 0, 0, 0, 0, 6, 0, 0, 3, 0, 9, 11, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 22, 0, 12, 0, + 0, 6, 0, 0, 6, 6, 0, 0, 0, 0, 22, 5, 0, 0, + 0, 6, 0, 0, 12, 14, 0, 0, 7, 0, 0, 0, 23, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 14, + 0, 11, 2, 0, 0, 11, 10, 0, 0, 14, 21, 0, 0, 0, + 21, 12, 0, 0, 0, 0, 0, 13, 0, 0, 10, 11, 0, 11, + 9, 0, 14, 0, 3, 0, 19, 14, 0, 0, 0, 0, 7, 0, + 0, 22, 0, 3, 0, 0, 0, 10, 0, 0, 0, 12, 13, 0, + 22, 0, 0, 6, 3, 0, 0, 13, 0, 0, 0, 0, 0, 9, + 0, 7, 0, 0, 0, 0, 0, 15, 0, 30, 10, 0, 0, 0, + 14, 0, 0, 21, 0, 0, 14, 0, 0, 11, 14, 17, 0, 0, + 0, 0, 0, 0, 0, 0, 14, 0, 11, 10, 0, 0, 3, 12, + 0, 2, 0, 11, 0, 13, 0, 0, 0, 14, 0, 0, 0, 0, + 0, 0, 12, 0, 0, 0, 0, 0, 19, 0, 0, 0, 2, 0, + 0, 0, 2, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 14, + 0, 0, 0, 0, 2, 2, 0, 0, 0, 17, 0, 19, 3, 9, + 10, 13, 30, 13, 12, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 9, 22, 2, 0, 0, 6, 2, 0, 0, 0, 10, - 10, 0, 21, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, - 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 5, 13, 0, 0, 0, 13, 0, 0, - 0, 8, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, - 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 12, 0, 14, - 0, 0, 14, 0, 0, 0, 13, 0, 0, 0, 0, 0, 17, 2, - 0, 0, 0, 17, 0, 18, 2, 0, 0, 9, 0, 0, 15, 2, - 11, 15, 18, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 20, 0, 0, 25, 15, 0, 0, 9, 12, 0, 12, - 9, 0, 0, 10, 0, 0, 0, 0, 8, 9, 0, 0, 0, 10, - 12, 19, 11, 0, 10, 16, 0, 16, 18, 3, 0, 0, 0, 0, - 0, 2, 21, 0, 3, 0, 0, 0, 0, 13, 0, 0, 18, 0, - 0, 11, 13, 0, 16, 48, 0, 0, 44, 0, 0, 0, 16, 0, - 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 13, - 0, 8, 0, 0, 39, 40, 0, 12, 0, 0, 0, 19, 10, 9, - 0, 0, 0, 0, 2, 0, 0, 0, 13, 0, 0, 30, 3, 14, - 30, 0, 0, 0, 18, 6, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 5, 0, 15, - 0, 13, 0, 0, 0, 0, 0, 0, 27, 0, 17, 10, 24, 0, - 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 30, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 27, 23, 0, 0, 0, 19, 0, 15, - 0, 0, 0, 0, 17, 25, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 14, 2, 0, 0, 0, 0, 0, 0, 0, 15, 21, 0, - 0, 0, 8, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 19, - 0, 0, 11, 0, 0, 0, 0, 0, 37, 0, 0, 0, 11, 0, - 0, 0, 17, 0, 0, 0, 0, 0, 11, 0, 0, 0, 20, 0, - 0, 0, 13, 0, 0, 0, 0, 0, 0, 14, 13, 8, 0, 13, - 0, 15, 14, 0, 0, 9, 0, 0, 0, 16, 0, 0, 0, 12, - 0, 0, 0, 0, 9, 0, 3, 0, 0, 13, 0, 0, 23, 0, - 19, 0, 0, 12, 0, 0, 0, 16, 11, 9, 3, 0, 0, 0, - 11, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 10, 0, - 0, 1, 0, 0, 11, 0, 0, 16, 0, 0, 0, 0, 10, 0, - 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 15, 14, 0, 0, - 0, 0, 0, 19, 0, 17, 0, 0, 0, 0, 0, 35, 31, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 10, 13, 0, 0, - 15, 0, 0, 22, 16, 0, 0, 18, 16, 0, 0, 0, 0, 0, - 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 13, 13, + 0, 15, 0, 0, 0, 9, 13, 12, 0, 0, 0, 17, 0, 9, + 0, 0, 0, 8, 2, 0, 0, 9, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 9, + 11, 27, 18, 0, 0, 0, 0, 0, 12, 6, 0, 0, 2, 0, + 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 13, 13, 0, + 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 21, 0, 17, + 18, 0, 12, 0, 13, 0, 0, 5, 0, 0, 13, 0, 10, 44, + 12, 0, 12, 0, 15, 0, 0, 0, 20, 0, 0, 0, 0, 25, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 13, 0, 0, + 0, 0, 0, 15, 0, 48, 0, 0, 0, 0, 0, 0, 2, 0, + 0, 0, 0, 13, 0, 0, 14, 0, 17, 0, 0, 0, 14, 0, + 18, 0, 0, 0, 0, 15, 13, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 21, 0, 11, 13, 0, 12, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 11, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 24, 19, 0, 0, 0, 0, 0, 0, 0, 15, 0, 23, 11, 0, - 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 16, 12, - 0, 12, 0, 0, 0, 0, 21, 16, 0, 0, 0, 0, 14, 0, - 10, 0, 0, 34, 0, 31, 0, 13, 0, 0, 0, 9, 0, 12, - 13, 0, 0, 15, 14, 0, 0, 13, 9, 0, 0, 0, 0, 0, - 0, 0, 0, 13, 0, 13, 25, 13, 0, 6, 0, 12, 0, 0, - 0, 0, 23, 0, 0, 0, 6, 0, 0, 0, 13, 0, 0, 9, - 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 26, 0, 0, 15, - 0, 12, 0, 0, 0, 9, 0, 0, 0, 23, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 26, 2, 0, 18, 0, 0, 10, 0, 0, 0, - 0, 0, 13, 14, 0, 20, 0, 17, 0, 0, 0, 0, 0, 1, - 0, 0, 6, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 2, 0, 0, 26, 0, 0, 0, 18, 0, 0, 0, - 23, 3, 13, 0, 0, 14, 13, 0, 0, 0, 3, 32, 0, 0, - 29, 0, 0, 0, 0, 17, 0, 18, 12, 0, 0, 13, 24, 0, - 0, 0, 3, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 13, 0, 23, 0, 0, 10, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 15, 10, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 22, 0, - 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, - 0, 22, 0, 0, 16, 15, 0, 0, 0, 0, 11, 0, 0, 0, - 0, 0, 15, 12, 11, 0, 0, 0, 15, 25, 12, 0, 0, 0, - 0, 0, 0, 15, 15, 0, 30, 0, 0, 0, 24, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 10, 12, 14, 0, 13, 0, 0, - 0, 0, 0, 18, 0, 18, 15, 0, 0, 14, 0, 0, 20, 15, - 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 2, 16, 0, 0, 0, 0, 0, 12, 22, 7, 0, - 0, 0, 0, 25, 0, 9, 0, 22, 15, 0, 0, 0, 7, 15, - 0, 9, 0, 2, 0, 9, 16, 19, 0, 0, 0, 0, 0, 0, - 0, 0, 24, 10, 14, 0, 0, 0, 0, 0, 0, 0, 0, 3, - 11, 0, 0, 0, 0, 0, 0, 0, 3, 0, 16, 3, 0, 0, - 20, 0, 0, 0, 0, 0, 0, 17, 15, 10, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 12, 19, 0, 0, 0, 0, - 0, 0, 0, 0, 12, 0, 11, 30, 47, 0, 0, 0, 0, 0, - 0, 25, 0, 0, 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, - 0, 13, 19, 0, 32, 0, 0, 12, 0, 0, 0, 0, 0, 0, - 15, 11, 0, 20, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, - 0, 0, 0, 15, 0, 0, 0, 23, 0, 0, 0, 16, 17, 0, - 12, 0, 30, 18, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, - 0, 0, 0, 0, 23, 0, 0, 21, 0, 15, 10, 28, 0, 0, - 0, 0, 0, 19, 9, 11, 0, 14, 0, 0, 0, 0, 0, 27, - 0, 6, 14, 16, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, - 0, 35, 0, 15, 0, 17, 0, 0, 30, 27, 0, 17, 0, 19, - 9, 9, 0, 0, 0, 0, 0, 0, 0, 17, 0, 15, 0, 0, - 0, 19, 0, 16, 0, 8, 25, 0, 0, 21, 0, 0, 0, 0, - 13, 0, 0, 15, 19, 12, 0, 0, 0, 0, 0, 20, 0, 8, - 0, 0, 0, 0, 0, 0, 22, 14, 0, 25, 0, 0, 0, 0, - 8, 11, 0, 0, 0, 17, 0, 0, 0, 0, 39, 14, 0, 0, - 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 2, - 0, 0, 21, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 15, 0, 0, - 0, 17, 0, 10, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, - 14, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, - 0, 16, 0, 0, 0, 0, 0, 30, 0, 0, 23, 8, 13, 0, - 0, 0, 2, 13, 0, 0, 0, 0, 23, 0, 0, 0, 10, 0, - 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 16, 0, 0, 0, 18, 0, 0, 0, 0, 0, 22, - 0, 0, 0, 0, 23, 38, 13, 21, 0, 0, 0, 0, 24, 0, - 0, 0, 20, 0, 14, 0, 0, 0, 0, 0, 0, 28, 0, 15, - 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 11, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 31, 0, 0, 0, - 0, 0, 25, 0, 42, 0, 0, 22, 0, 0, 0, 0, 0, 20, - 18, 3, 0, 3, 0, 23, 12, 0, 0, 11, 16, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 13, 18, 0, 0, 0, 0, - 3, 28, 0, 0, 0, 0, 0, 12, 16, 0, 0, 0, 0, 0, - 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, - 0, 0, 0, 0, 0, 0, 36, 17, 0, 0, 14, 26, 17, 0, - 0, 22, 14, 0, 21, 0, 0, 0, 0, 20, 25, 9, 0, 16, - 27, 18, 0, 18, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, - 4, 0, 0, 0, 0, 0, 0, 16, 0, 0, 26, 0, 0, 29, - 15, 0, 0, 0, 0, 16, 0, 14, 38, 0, 0, 0, 39, 33, - 23, 0, 0, 0, 0, 0, 0, 0, 18, 0, 14, 0, 0, 23, - 0, 17, 0, 3, 0, 0, 0, 17, 0, 0, 3, 0, 0, 29, - 0, 11, 0, 20, 25, 0, 15, 0, 0, 0, 23, 0, 14, 0, - 0, 24, 0, 32, 0, 13, 0, 13, 0, 0, 0, 0, 0, 0, - 0, 0, 27, 0, 21, 0, 0, 24, 16, 0, 20, 0, 0, 0, - 22, 0, 0, 17, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 26, 0, 0, 11, 0, 0, 23, 0, 0, 0, 18, 18, 0, - 0, 0, 0, 0, 0, 15, 0, 24, 0, 0, 12, 0, 18, 29, - 0, 0, 24, 0, 0, 0, 12, 0, 13, 0, 0, 0, 0, 0, - 0, 0, 18, 0, 0, 0, 0, 20, 0, 10, 0, 23, 0, 21, - 0, 0, 0, 29, 0, 21, 11, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 0, 0, 0, 0, 0, 1, 0, 0, 13, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 18, 0, - 10, 13, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, - 14, 20, 0, 0, 0, 0, 0, 0, 24, 21, 0, 0, 0, 0, - 10, 0, 0, 10, 12, 0, 0, 26, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 9, 0, 0, 18, 0, 0, 0, 0, 0, 0, 37, - 0, 0, 25, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 29, 0, 24, 0, 2, 23, 0, - 0, 0, 0, 21, 0, 0, 0, 12, 0, 0, 0, 0, 22, 0, - 0, 0, 0, 26, 0, 24, 0, 19, 0, 12, 0, 0, 0, 0, - 0, 0, 9, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 22, 15, 0, 0, - 18, 12, 0, 15, 0, 12, 0, 0, 15, 0, 14, 0, 0, 0, - 0, 21, 0, 0, 0, 0, 0, 0, 0, 17, 16, 0, 24, 32, - 9, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 16, 0, - 19, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 18, 3, 13, 27, 0, 0, 14, 0, 0, 0, 0, - 0, 0, 0, 15, 0, 11, 0, 0, 0, 0, 0, 13, 15, 0, - 11, 24, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, - 11, 0, 0, 0, 0, 0, 0, 0, 17, 10, 0, 0, 0, 0, - 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 22, 0, 0, 8, 26, 0, 0, 28, 0, 0, 0, - 10, 16, 0, 0, 21, 0, 0, 0, 0, 0, 0, 16, 0, 0, - 0, 0, 0, 0, 0, 28, 0, 0, 41, 0, 15, 0, 24, 25, - 0, 19, 0, 0, 0, 0, 0, 5, 18, 15, 13, 0, 0, 0, - 0, 14, 17, 10, 16, 0, 0, 0, 18, 0, 0, 17, 0, 0, - 0, 15, 23, 0, 35, 0, 0, 0, 2, 0, 25, 18, 0, 0, - 9, 0, 0, 0, 0, 0, 0, 0, 0, 31, 22, 0, 23, 9, - 21, 27, 10, 0, 32, 34, 16, 0, 0, 10, 0, 0, 0, 13, - 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 12, 0, - 0, 12, 0, 0, 7, 0, 0, 26, 0, 7, 0, 11, 0, 0, - 0, 30, 0, 9, 0, 24, 0, 0, 0, 0, 0, 0, 0, 10, - 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 9, 0, 0, 0, - 23, 0, 0, 0, 0, 0, 0, 22, 14, 21, 0, 0, 0, 0, - 0, 14, 28, 0, 0, 0, 7, 0, 0, 20, 14, 0, 9, 0, - 20, 17, 0, 0, 0, 0, 21, 0, 0, 0, 15, 0, 0, 0, - 30, 11, 4, 0, 10, 10, 0, 9, 0, 0, 11, 0, 0, 0, - 0, 10, 0, 20, 11, 0, 12, 0, 0, 0, 0, 0, 2, 3, - 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 22, 0, 0, - 0, 0, 0, 0, 0, 0, 10, 10, 0, 8, 20, 0, 0, 0, - 0, 14, 0, 3, 0, 0, 0, 0, 0, 0, 9, 40, 0, 17, - 0, 0, 6, 0, 15, 0, 0, 0, 9, 10, 0, 15, 0, 0, - 10, 8, 14, 34, 0, 35, 0, 0, 0, 0, 0, 0, 13, 11, - 0, 12, 6, 0, 18, 0, 0, 22, 14, 7, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 16, 0, 0, 0, - 0, 18, 11, 25, 0, 0, 0, 6, 0, 0, 0, 11, 0, 0, - 0, 23, 0, 8, 0, 0, 0, 23, 0, 21, 13, 0, 0, 6, - 0, 16, 0, 0, 0, 0, 0, 24, 0, 0, 13, 20, 0, 0, - 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 25, 12, - 0, 0, 0, 0, 0, 31, 0, 0, 0, 10, 0, 0, 0, 26, - 0, 0, 0, 0, 0, 0, 0, 15, 9, 0, 0, 0, 0, 30, - 16, 0, 0, 0, 0, 0, 18, 0, 18, 0, 0, 15, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, - 27, 0, 0, 0, 0, 0, 0, 0, 13, 0, 10, 0, 0, 9, - 13, 0, 22, 0, 0, 0, 8, 0, 0, 37, 0, 12, 0, 15, - 17, 0, 2, 0, 0, 0, 0, 7, 0, 0, 11, 0, 12, 25, - 0, 0, 25, 0, 15, 0, 0, 0, 0, 25, 0, 28, 13, 0, - 0, 0, 0, 33, 23, 0, 12, 0, 0, 0, 0, 0, 0, 24, - 0, 22, 0, 14, 16, 0, 0, 30, 0, 14, 0, 0, 0, 34, - 0, 0, 13, 0, 19, 0, 0, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 30, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 16, - 0, 14, 42, 0, 28, 15, 6, 0, 0, 18, 0, 0, 0, 11, - 0, 11, 0, 0, 0, 13, 33, 0, 19, 18, 2, 11, 13, 0, - 0, 30, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 11, - 24, 0, 26, 18, 20, 26, 0, 0, 0, 17, 0, 30, 23, 0, - 0, 3, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 11, 23, - 6, 0, 24, 0, 0, 0, 0, 25, 0, 0, 0, 19, 0, 0, - 18, 22, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 14, 0, - 0, 18, 0, 0, 0, 11, 13, 0, 0, 0, 0, 0, 0, 0, - 0, 12, 0, 0, 0, 0, 0, 0, 12, 31, 0, 0, 35, 0, - 23, 0, 0, 0, 0, 0, 0, 3, 9, 29, 0, 0, 0, 0, - 0, 0, 12, 0, 4, 0, 6, 0, 0, 0, 0, 0, 20, 0, - 20, 0, 0, 0, 15, 0, 0, 14, 20, 0, 0, 0, 0, 0, - 0, 0, 6, 3, 27, 32, 4, 32, 0, 0, 3, 0, 6, 4, - 0, 0, 0, 0, 11, 0, 0, 8, 18, 10, 0, 0, 0, 0, - 0, 0, 20, 15, 14, 12, 0, 0, 0, 0, 30, 0, 0, 21, - 0, 0, 0, 0, 0, 0, 0, 12, 18, 0, 0, 13, 0, 0, - 0, 0, 14, 6, 18, 0, 24, 0, 3, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 15, 0, 22, 0, 0, 0, 16, - 0, 15, 15, 0, 0, 0, 25, 0, 0, 0, 0, 9, 0, 33, - 0, 23, 0, 0, 0, 20, 24, 0, 21, 31, 14, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 32, 9, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 22, 14, 0, 0, 0, 0, - 0, 0, 29, 0, 16, 0, 0, 0, 0, 13, 0, 24, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, - 0, 12, 26, 9, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 2, 0, 0, 15, 0, 15, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 1, 0, 18, - 0, 0, 0, 0, 19, 31, 21, 10, 0, 15, 0, 0, 0, 42, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 31, 34, 0, 19, 19, 15, 0, 0, 0, 37, 0, 2, 0, 0, - 0, 0, 0, 0, 0, 14, 0, 15, 0, 14, 0, 0, 0, 0, - 37, 0, 0, 0, 28, 0, 0, 11, 0, 34, 0, 0, 0, 0, - 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 15, 0, 11, - 0, 0, 0, 0, 0, 0, 15, 27, 0, 2, 10, 0, 0, 31, - 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, - 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 42, 0, - 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 34, 0, 24, 0, 0, 0, 26, 0, 13, 0, - 0, 22, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 19, 0, 0, 0, - 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 16, 0, - 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, - 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 21, 30, 0, 0, 0, 3, 15, 0, 4, 0, 0, 0, - 3, 19, 6, 4, 0, 0, 0, 0, 15, 17, 34, 25, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 14, 15, 0, 0, 15, 0, 0, - 0, 19, 0, 0, 0, 12, 0, 0, 19, 15, 0, 17, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 14, 18, 0, 0, 19, 22, 0, + 10, 18, 0, 0, 8, 0, 6, 0, 0, 0, 0, 39, 40, 0, + 0, 0, 9, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 16, 0, 0, 14, 16, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 1, 0, 10, + 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 19, 0, 13, + 0, 0, 10, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, - 0, 0, 14, 0, 0, 0, 25, 31, 14, 0, 0, 0, 0, 27, - 0, 12, 0, 0, 17, 0, 16, 0, 0, 20, 0, 17, 0, 0, - 0, 0, 0, 0, 27, 0, 0, 15, 0, 0, 0, 0, 22, 0, - 0, 16, 0, 20, 0, 0, 0, 18, 0, 20, 0, 0, 0, 14, - 21, 0, 19, 0, 11, 0, 0, 0, 0, 0, 14, 0, 0, 0, - 0, 0, 0, 29, 12, 0, 50, 11, 37, 13, 14, 0, 0, 0, - 0, 0, 0, 18, 0, 29, 0, 0, 0, 0, 25, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, - 14, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 17, 0, - 3, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 22, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 16, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 28, 0, - 32, 2, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 27, 0, - 0, 0, 0, 0, 0, 0, 41, 0, 22, 0, 0, 0, 22, 0, - 0, 0, 0, 15, 28, 0, 0, 12, 0, 0, 0, 0, 13, 0, - 15, 15, 0, 15, 0, 0, 23, 0, 27, 0, 13, 0, 0, 8, - 0, 0, 0, 0, 31, 9, 0, 0, 0, 20, 27, 0, 32, 0, - 0, 0, 0, 14, 7, 0, 0, 0, 0, 0, 0, 24, 0, 0, - 33, 0, 25, 18, 0, 0, 13, 22, 0, 6, 0, 17, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 15, 0, 26, 27, 13, 0, 0, 19, - 0, 0, 0, 0, 10, 0, 17, 13, 26, 0, 0, 0, 0, 0, - 0, 19, 32, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 24, 19, 0, 0, 31, 12, 0, 20, 0, 0, - 17, 15, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 14, - 0, 15, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 15, 0, - 25, 21, 12, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 14, 23, 0, 0, 0, 0, 0, 0, 23, 0, 35, - 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 2, 0, 20, - 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 31, 11, 0, 0, - 11, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 37, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, - 0, 0, 9, 18, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 14, 15, 35, 0, 0, 0, 15, 0, 13, 0, - 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 30, - 0, 27, 0, 0, 14, 15, 17, 0, 0, 0, 0, 0, 0, 0, - 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 9, 0, 0, 0, 0, 0, 12, 0, 0, 7, 0, - 0, 0, 9, 0, 0, 0, 0, 15, 13, 0, 0, 0, 0, 32, - 0, 0, 0, 0, 19, 0, 0, 39, 0, 0, 0, 2, 0, 0, - 0, 15, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 25, - 35, 0, 0, 15, 0, 13, 0, 0, 0, 0, 16, 0, 29, 11, - 0, 0, 0, 0, 0, 11, 0, 26, 0, 11, 40, 0, 11, 0, - 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 19, 0, 0, 15, - 13, 0, 18, 29, 16, 20, 0, 0, 0, 0, 0, 0, 0, 15, - 0, 0, 28, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 12, 0, 12, 0, 0, 0, 0, 0, 19, 18, 0, - 0, 0, 16, 13, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 12, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, - 0, 10, 0, 25, 19, 0, 0, 21, 24, 0, 0, 0, 0, 0, - 13, 14, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, - 0, 0, 0, 0, 31, 0, 0, 0, 14, 35, 0, 0, 0, 0, - 22, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 28, 0, 0, 14, 16, 0, 0, 0, 30, - 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, - 19, 0, 0, 0, 0, 0, 34, 0, 0, 0, 2, 0, 0, 24, - 0, 0, 0, 25, 12, 0, 0, 0, 0, 0, 6, 0, 0, 0, - 0, 0, 25, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 8, 0, 14, 15, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 28, 0, 0, 0, 0, 13, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 0, 0, 0, 0, 0, 11, 7, 0, 11, 0, - 0, 0, 0, 0, 0, 11, 0, 0, 14, 15, 10, 10, 0, 0, - 12, 0, 0, 0, 0, 0, 3, 0, 13, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, - 8, 0, 0, 0, 0, 0, 8, 0, 0, 0, 14, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 11, 0, 0, 15, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, - 0, 32, 0, 0, 0, 3, 25, 0, 0, 26, 0, 0, 0, 0, - 27, 24, 0, 0, 0, 15, 0, 0, 0, 23, 0, 0, 0, 0, - 20, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, - 0, 0, 0, 25, 0, 22, 0, 26, 0, 0, 0, 0, 5, 0, - 0, 0, 0, 0, 0, 0, 0, 19, 8, 0, 16, 0, 0, 0, - 0, 23, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 43, 0, - 31, 33, 0, 0, 15, 0, 16, 0, 32, 0, 0, 0, 22, 0, - 31, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 22, 0, - 25, 0, 0, 0, 0, 0, 14, 0, 20, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 27, 27, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 29, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 73, 74, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, - 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 25, 0, 16, 0, 0, 0, 33, - 0, 24, 0, 21, 13, 0, 0, 0, 9, 0, 0, 2, 0, 0, - 0, 0, 0, 13, 12, 0, 0, 0, 17, 0, 0, 0, 0, 0, - 2, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 31, - 20, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, - 0, 0, 22, 0, 0, 0, 0, 0, 0, 31, 0, 0, 3, 15, - 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 15, - 0, 0, 0, 0, 16, 0, 0, 0, 0, 24, 0, 22, 0, 0, - 0, 0, 18, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 18, 0, 0, 15, 0, 0, 23, 20, 0, 0, - 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, - 0, 0, 11, 0, 0, 0, 18, 0, 0, 0, 15, 0, 0, 0, - 0, 19, 0, 0, 0, 33, 18, 0, 0, 0, 0, 0, 0, 0, - 22, 14, 0, 0, 35, 0, 0, 0, 0, 0, 0, 38, 24, 0, - 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 26, 0, 0, - 35, 0, 10, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 21, 14, 0, 0, 23, 0, 21, 0, 0, 0, - 0, 22, 0, 0, 0, 25, 0, 0, 0, 0, 14, 17, 0, 0, - 0, 0, 0, 0, 0, 14, 0, 25, 0, 0, 14, 0, 0, 0, - 0, 0, 0, 16, 0, 0, 0, 0, 28, 0, 8, 22, 0, 0, - 0, 18, 0, 43, 0, 0, 0, 0, 0, 0, 0, 28, 0, 29, - 0, 24, 29, 0, 0, 14, 0, 0, 0, 0, 23, 0, 0, 0, - 16, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, - 27, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 8, 0, 11, 18, 0, 0, 22, 2, 0, 0, 0, 0, - 0, 0, 8, 0, 18, 0, 30, 0, 0, 12, 0, 0, 0, 0, - 10, 0, 0, 0, 0, 0, 0, 22, 0, 24, 0, 38, 0, 0, - 0, 18, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, - 0, 0, 0, 14, 0, 20, 31, 0, 23, 0, 0, 0, 0, 11, - 0, 0, 0, 0, 13, 0, 0, 0, 0, 14, 0, 8, 0, 21, - 14, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 23, 14, 11, 12, 0, 0, 30, 0, 0, 0, - 26, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 36, 0, 13, 0, 26, 0, 0, 0, 0, 0, 19, - 0, 0, 28, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 26, 0, 3, 0, 0, 0, 30, 0, 0, 0, 0, 7, 0, - 15, 15, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 30, - 0, 0, 0, 0, 0, 0, 11, 0, 14, 12, 9, 0, 0, 0, - 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, - 18, 0, 0, 0, 16, 19, 0, 0, 0, 0, 9, 0, 0, 22, - 0, 0, 34, 14, 0, 0, 0, 19, 0, 28, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 26, 0, - 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, - 11, 24, 0, 0, 0, 28, 0, 0, 0, 13, 18, 0, 0, 34, - 0, 0, 11, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, - 0, 0, 21, 0, 0, 28, 0, 0, 0, 0, 18, 0, 0, 0, - 0, 31, 34, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 4, - 0, 0, 38, 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 29, - 0, 0, 0, 31, 0, 0, 0, 24, 0, 0, 0, 17, 0, 18, - 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 18, 0, 0, - 0, 0, 0, 0, 0, 6, 10, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 0, 0, 0, 0, 0, 0, 18, 16, 0, 0, 0, - 0, 0, 0, 0, 0, 17, 0, 0, 30, 0, 0, 0, 0, 0, - 0, 30, 0, 0, 0, 18, 0, 26, 0, 10, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, - 43, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, - 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, - 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 35, 0, 0, 16, 0, 0, 13, 0, 0, 24, 0, 0, - 0, 0, 3, 3, 0, 0, 0, 0, 24, 30, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 30, 0, 11, 15, 0, 0, 0, - 0, 0, 17, 14, 0, 20, 0, 2, 0, 0, 6, 0, 0, 0, - 9, 0, 19, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 28, 0, 0, 0, 29, 0, 0, 0, 0, 11, 15, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, - 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 37, 27, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, - 28, 0, 0, 0, 44, 0, 0, 0, 0, 0, 0, 30, 0, 0, - 0, 0, 0, 0, 0, 2, 0, 0, 0, 28, 0, 0, 0, 0, - 24, 0, 0, 32, 0, 0, 0, 0, 0, 0, 36, 18, 0, 0, - 0, 0, 0, 0, 0, 0, 6, 0, 0, 12, 36, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 14, 0, 0, 0, - 24, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, - 0, 0, 8, 0, 0, 0, 0, 10, 0, 17, 24, 22, 0, 0, - 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 21, 14, - 0, 16, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 29, 0, 0, 16, 0, 0, 0, 27, 0, 0, - 0, 20, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 12, 0, 0, 0, 21, 0, 0, 0, 0, 30, 0, 0, 10, - 0, 0, 0, 0, 0, 23, 0, 27, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 30, 0, 0, 36, 0, 0, 0, 0, - 15, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, 13, 0, - 0, 0, 0, 0, 29, 19, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 7, 0, 36, 0, 0, 0, 0, 0, 0, 34, 0, - 0, 15, 30, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, - 0, 0, 0, 7, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 27, 17, 0, 22, 0, 0, 0, 11, 0, 0, 0, - 0, 0, 0, 23, 0, 0, 3, 0, 0, 0, 13, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, - 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 0, 0, 33, 29, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 17, 0, 0, 21, 0, 0, 0, 0, - 0, 0, 15, 0, 0, 24, 0, 0, 0, 0, 0, 0, 30, 0, - 22, 0, 0, 29, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, - 22, 0, 0, 0, 0, 0, 0, 43, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 29, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 11, - 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 30, 0, 0, 27, 27, 0, 0, 0, 11, 31, - 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 19, 0, 0, - 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 23, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 8, 0, 23, 0, 0, 0, 0, 0, - 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 16, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 7, 0, - 0, 15, 16, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 22, - 0, 0, 0, 0, 28, 0, 19, 0, 0, 23, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 17, 0, 0, 0, - 0, 7, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, - 0, 0, 0, 0, 11, 0, 0, 28, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 72, 0, 0, 0, - 15, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 25, 0, - 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, - 0, 0, 0, 0, 0, 16, 0, 0, 16, 0, 17, 0, 25, 0, - 0, 0, 0, 0, 28, 0, 29, 35, 23, 0, 0, 0, 0, 0, - 0, 0, 0, 27, 0, 0, 15, 0, 0, 24, 0, 0, 0, 0, - 0, 24, 0, 29, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 12, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 31, - 0, 0, 0, 0, 7, 0, 0, 0, 13, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, - 0, 0, 0, 23, 0, 0, 0, 0, 13, 0, 0, 0, 14, 0, - 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 25, 0, 0, - 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 25, 0, 0, - 0, 0, 0, 24, 0, 19, 0, 25, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 23, 0, - 10, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 7, 0, 0, - 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 5, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 33, - 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 13, 33, 25, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 24, 23, - 0, 0, 25, 0, 33, 0, 0, 2, 0, 0, 0, 0, 0, 0, - 0, 30, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 35, 0, 0, 13, 0, 15, 0, 0, 0, 0, 0, - 0, 0, 0, 35, 0, 0, 0, 0, 28, 0, 0, 0, 16, 0, - 0, 31, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, - 0, 0, 0, 6, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, - 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 13, 0, - 15, 28, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 15, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 25, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 9, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 8, 0, 0, 0, - 0, 0, 11, 0, 0, 0, 0, 0, 17, 0, 0, 0, 35, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 26, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, - 0, 0, 16, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 6, 0, 32, 0, 9, 33, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, - 0, 0, 0, 0, 39, 0, 0, 26, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 2, 0, 0, - 0, 10, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 24, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 24, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 22, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, - 0, 10, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 24, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, - 0, 23, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 11, 0, 0, 0, 0, 32, 22, 0, 0, 0, + 0, 0, 0, 10, 0, 0, 0, 0, 0, 12, 14, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, + 16, 0, 27, 8, 0, 0, 0, 16, 0, 8, 0, 19, 0, 9, + 0, 0, 3, 0, 2, 0, 0, 15, 0, 0, 0, 17, 0, 0, + 11, 0, 0, 0, 11, 23, 0, 0, 0, 11, 0, 0, 0, 0, + 0, 0, 0, 13, 0, 0, 20, 18, 17, 37, 0, 0, 14, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 31, 0, 0, + 11, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 22, 11, + 0, 3, 0, 0, 0, 0, 0, 12, 13, 0, 19, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, 13, 0, 0, 0, + 16, 16, 10, 0, 19, 0, 0, 0, 10, 25, 0, 0, 0, 0, + 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 18, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 2, 11, 0, 0, 15, 0, + 13, 0, 17, 13, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 12, 0, 3, 0, 0, 0, 0, + 0, 0, 0, 11, 24, 0, 24, 16, 26, 0, 3, 0, 0, 0, + 0, 0, 0, 12, 0, 0, 0, 19, 13, 0, 0, 35, 0, 0, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 21, + 13, 0, 12, 0, 11, 0, 0, 0, 10, 0, 0, 0, 14, 0, + 16, 0, 0, 0, 0, 31, 0, 0, 0, 13, 0, 0, 0, 16, + 24, 0, 18, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 13, 9, 13, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, - 0, 0, 0, 15, 0, 0, 0, 0, 0, 26, 0, 0, 14, 0, - 0, 24, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 16, 27, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 22, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 34, 26, 0, 0, 0, 0, 0, - 0, 0, 25, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, + 14, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 9, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 12, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 3, 0, 0, + 23, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 3, 15, + 0, 0, 0, 0, 30, 0, 12, 0, 0, 15, 2, 0, 16, 0, + 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 23, + 32, 23, 0, 0, 0, 0, 13, 0, 15, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 18, 0, 0, 0, 16, 15, 15, 0, 11, 13, + 0, 0, 0, 24, 0, 0, 0, 0, 9, 22, 0, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 0, 22, 0, 0, 0, 0, 11, + 17, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 31, 0, + 0, 0, 0, 10, 8, 0, 0, 0, 7, 0, 9, 0, 0, 10, + 9, 0, 0, 0, 0, 0, 0, 13, 0, 0, 31, 0, 0, 0, + 31, 0, 0, 0, 0, 22, 0, 23, 0, 0, 0, 10, 10, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, + 17, 0, 0, 0, 10, 0, 0, 0, 26, 14, 0, 23, 10, 0, + 0, 0, 2, 2, 15, 0, 0, 22, 0, 0, 0, 0, 0, 13, + 18, 0, 2, 0, 24, 0, 15, 19, 24, 0, 0, 15, 8, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 13, 11, 9, 17, 11, 10, + 0, 0, 0, 0, 9, 0, 0, 10, 0, 13, 0, 19, 0, 30, + 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 14, 14, 0, + 0, 0, 0, 0, 15, 0, 0, 14, 22, 0, 0, 15, 11, 0, + 30, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 42, 30, 0, 0, 0, 16, 0, 18, 7, 10, 9, 0, 0, 0, + 11, 0, 12, 29, 12, 9, 11, 0, 0, 11, 0, 30, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, + 11, 0, 0, 28, 0, 20, 10, 0, 0, 0, 0, 0, 0, 0, + 15, 0, 0, 15, 0, 20, 0, 30, 14, 0, 20, 0, 0, 12, + 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 16, 2, 0, 0, + 25, 14, 0, 0, 0, 9, 0, 14, 0, 11, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 10, 8, 0, 0, 9, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 35, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 8, + 10, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 25, 0, 12, 8, 0, 25, 0, + 0, 15, 0, 0, 12, 10, 0, 0, 0, 0, 0, 0, 0, 26, + 0, 0, 0, 0, 32, 0, 0, 0, 0, 12, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 27, + 0, 0, 0, 9, 21, 10, 0, 0, 0, 25, 0, 0, 0, 0, + 0, 0, 0, 0, 18, 0, 0, 0, 13, 0, 0, 16, 14, 0, + 0, 0, 19, 0, 0, 0, 19, 0, 25, 0, 17, 0, 22, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 19, 0, 0, + 33, 0, 25, 21, 0, 19, 0, 10, 8, 0, 0, 0, 0, 0, + 0, 0, 16, 0, 0, 0, 0, 32, 16, 0, 0, 0, 6, 0, + 0, 27, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 20, + 22, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, + 13, 0, 39, 12, 0, 0, 0, 0, 0, 0, 10, 0, 11, 0, + 0, 0, 0, 13, 0, 0, 23, 0, 13, 0, 0, 0, 48, 0, + 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 16, 0, 0, 21, + 0, 3, 0, 0, 6, 0, 0, 0, 0, 0, 21, 0, 12, 0, + 0, 0, 22, 6, 0, 0, 3, 0, 0, 0, 0, 0, 20, 0, + 0, 12, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 14, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 11, 0, 13, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 12, 22, 0, 6, 0, 0, + 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 25, 13, 0, 0, + 11, 0, 0, 0, 0, 0, 0, 0, 0, 3, 11, 0, 0, 42, + 0, 9, 0, 0, 0, 20, 0, 0, 15, 0, 0, 0, 0, 31, + 19, 33, 14, 0, 0, 0, 0, 10, 23, 0, 0, 31, 14, 0, + 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 9, 0, 0, + 0, 38, 0, 16, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, + 0, 27, 0, 0, 0, 0, 34, 0, 0, 16, 0, 0, 0, 0, + 0, 10, 0, 15, 0, 3, 0, 9, 0, 0, 22, 0, 0, 0, + 0, 0, 14, 15, 0, 0, 0, 0, 23, 0, 18, 0, 0, 0, + 13, 39, 26, 0, 0, 38, 12, 17, 13, 27, 0, 0, 0, 0, + 0, 26, 24, 0, 29, 0, 23, 0, 0, 16, 0, 0, 0, 0, + 8, 26, 0, 0, 23, 0, 0, 0, 16, 0, 0, 18, 15, 0, + 0, 0, 18, 23, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 23, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, + 18, 0, 7, 28, 0, 32, 0, 0, 0, 15, 0, 0, 0, 0, + 21, 47, 24, 0, 17, 15, 0, 0, 17, 15, 0, 0, 0, 0, + 0, 0, 0, 23, 0, 0, 24, 0, 0, 0, 0, 0, 0, 30, + 11, 0, 0, 0, 29, 26, 0, 0, 0, 0, 0, 0, 28, 0, + 0, 0, 21, 0, 13, 0, 0, 20, 11, 8, 17, 0, 0, 0, + 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 11, 0, 0, + 18, 12, 3, 0, 0, 0, 11, 0, 0, 3, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, + 0, 0, 0, 0, 0, 12, 0, 18, 0, 0, 0, 0, 0, 9, + 11, 0, 15, 25, 0, 0, 0, 0, 0, 19, 0, 0, 22, 0, + 0, 0, 0, 0, 0, 0, 0, 16, 0, 12, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, - 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 15, 0, 0, 0, + 15, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 10, 0, 0, 0, 11, 10, 0, 0, 0, 0, 0, 0, 10, 23, + 0, 25, 0, 12, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 13, 20, 0, 0, 0, 0, 0, 17, + 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 10, 0, 15, + 0, 0, 0, 0, 21, 0, 18, 0, 11, 0, 0, 20, 0, 0, + 0, 0, 0, 0, 21, 15, 0, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 15, 16, 0, 0, 9, 0, 0, 16, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 30, 0, 14, 0, 0, 18, 12, 0, 11, + 0, 24, 0, 22, 0, 0, 24, 0, 14, 12, 13, 10, 14, 14, + 2, 0, 23, 0, 0, 0, 6, 0, 0, 0, 0, 0, 16, 16, + 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 23, 0, 0, 0, + 23, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 15, 23, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 15, 0, 0, 21, 14, 0, 0, + 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 15, 0, 0, 0, + 13, 0, 0, 0, 0, 0, 15, 0, 0, 9, 0, 0, 0, 0, + 0, 16, 0, 0, 0, 0, 0, 0, 24, 14, 0, 0, 24, 0, + 14, 0, 0, 0, 0, 0, 0, 13, 0, 16, 0, 0, 22, 0, + 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, + 21, 12, 0, 17, 0, 0, 0, 0, 0, 0, 13, 16, 12, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 21, 14, 15, 0, 0, 0, + 14, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 20, + 0, 0, 0, 0, 2, 0, 0, 0, 0, 11, 21, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 0, 0, 32, 11, 0, 0, 0, + 0, 0, 18, 20, 0, 18, 0, 14, 0, 0, 18, 0, 0, 0, + 0, 28, 12, 24, 0, 0, 0, 0, 0, 0, 0, 14, 24, 0, + 0, 0, 10, 20, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3, 0, 0, 0, 0, 20, 0, 14, 0, 0, + 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, + 0, 0, 0, 0, 22, 1, 16, 0, 11, 24, 0, 27, 0, 0, + 28, 0, 0, 0, 0, 0, 14, 0, 0, 18, 0, 15, 0, 15, + 12, 0, 0, 0, 15, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 0, 0, 0, 0, 23, 22, 0, 40, 19, 0, 15, 15, 0, 17, + 0, 14, 0, 16, 24, 28, 15, 10, 0, 0, 16, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 9, 0, + 0, 15, 0, 0, 0, 0, 0, 27, 0, 9, 12, 13, 0, 0, + 0, 0, 0, 0, 10, 0, 0, 20, 0, 0, 0, 0, 35, 15, + 0, 28, 0, 0, 0, 0, 14, 0, 0, 15, 0, 18, 0, 10, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, + 0, 21, 0, 33, 0, 0, 0, 22, 27, 0, 0, 0, 30, 0, + 0, 0, 34, 12, 0, 11, 0, 29, 18, 16, 0, 0, 0, 15, + 15, 0, 16, 24, 0, 31, 0, 20, 0, 0, 0, 0, 26, 0, + 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 21, 0, 0, + 0, 0, 0, 12, 0, 21, 0, 0, 0, 0, 0, 0, 22, 0, + 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 27, 12, 0, 0, 0, 0, + 27, 0, 13, 0, 0, 0, 0, 12, 2, 18, 0, 0, 0, 0, + 0, 6, 20, 0, 20, 11, 0, 23, 0, 0, 0, 0, 0, 18, + 0, 0, 0, 0, 0, 0, 11, 0, 20, 0, 0, 0, 0, 3, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 6, 13, + 0, 0, 0, 29, 4, 32, 13, 0, 16, 0, 30, 27, 0, 0, + 12, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 23, 34, 0, 25, 0, 0, 0, 0, 29, 0, 13, 0, 14, 16, + 0, 0, 0, 13, 0, 29, 0, 0, 0, 18, 22, 8, 0, 0, + 0, 0, 0, 0, 0, 13, 12, 0, 0, 0, 28, 0, 0, 0, + 24, 0, 0, 0, 15, 6, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 16, 17, + 0, 0, 0, 0, 0, 0, 0, 0, 25, 27, 0, 0, 0, 0, + 0, 0, 19, 14, 31, 0, 0, 0, 7, 0, 0, 19, 0, 26, + 17, 0, 0, 30, 0, 0, 0, 13, 6, 10, 0, 0, 23, 0, + 9, 13, 0, 42, 0, 0, 0, 0, 13, 0, 22, 9, 0, 0, + 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, + 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 33, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 12, 0, 28, 0, 0, 0, 0, 12, + 0, 0, 0, 20, 0, 0, 23, 0, 0, 0, 0, 13, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, + 0, 0, 0, 0, 0, 14, 17, 0, 0, 0, 0, 12, 0, 35, + 0, 0, 0, 3, 26, 0, 15, 13, 0, 0, 0, 0, 0, 0, + 0, 0, 6, 0, 20, 5, 0, 0, 0, 25, 0, 35, 23, 0, + 0, 0, 0, 15, 24, 18, 0, 0, 0, 0, 14, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 14, 0, 8, 0, 0, 0, 0, 6, + 0, 0, 18, 24, 0, 22, 0, 0, 0, 0, 0, 0, 33, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 24, 3, 7, 0, 26, 0, 0, 15, 0, 6, 0, 0, 18, 0, + 0, 0, 0, 0, 0, 0, 41, 0, 0, 0, 19, 0, 0, 0, + 0, 0, 0, 0, 0, 14, 0, 0, 12, 0, 0, 0, 0, 0, + 18, 0, 25, 0, 0, 17, 0, 0, 0, 0, 8, 0, 0, 0, + 0, 0, 0, 26, 0, 0, 0, 0, 7, 0, 4, 0, 15, 0, + 0, 0, 13, 0, 9, 0, 0, 15, 0, 0, 0, 0, 0, 0, + 0, 9, 0, 15, 0, 17, 0, 0, 0, 0, 0, 0, 0, 25, + 0, 0, 33, 0, 22, 30, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 18, 1, 0, 0, 24, 0, 0, 0, 0, 16, + 0, 0, 3, 0, 0, 4, 11, 0, 0, 3, 19, 6, 4, 18, + 0, 0, 0, 14, 0, 0, 0, 13, 0, 0, 0, 10, 0, 13, + 11, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, + 0, 31, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 29, 15, + 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, + 13, 0, 15, 0, 0, 21, 0, 0, 25, 0, 0, 0, 0, 29, + 24, 0, 0, 0, 15, 0, 0, 0, 0, 15, 0, 0, 0, 0, + 0, 0, 0, 0, 16, 0, 2, 0, 0, 0, 0, 21, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 14, 0, 8, 0, 0, 0, 0, + 0, 0, 42, 0, 0, 0, 0, 0, 22, 0, 0, 11, 0, 0, + 0, 0, 31, 0, 0, 0, 0, 15, 21, 0, 0, 0, 0, 22, + 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 31, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 37, 0, 10, 0, 0, 0, 14, 0, 12, 20, 0, 0, + 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, + 14, 0, 0, 0, 0, 0, 24, 0, 0, 0, 14, 0, 22, 0, + 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, + 2, 21, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 34, 0, 0, + 0, 11, 15, 0, 0, 0, 0, 0, 0, 11, 22, 0, 0, 0, + 0, 0, 11, 11, 0, 0, 3, 4, 0, 4, 0, 0, 19, 3, + 0, 6, 4, 31, 0, 0, 25, 0, 0, 0, 0, 0, 0, 20, + 0, 0, 0, 0, 0, 15, 0, 0, 6, 15, 0, 32, 0, 0, + 11, 0, 0, 26, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 18, 0, 25, 0, 0, 0, 0, 0, 0, 22, 31, 0, + 21, 0, 19, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, + 11, 10, 0, 0, 0, 19, 0, 0, 37, 0, 0, 7, 15, 0, + 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, + 0, 0, 0, 0, 19, 0, 0, 0, 0, 28, 0, 22, 0, 0, + 28, 0, 16, 15, 0, 11, 0, 0, 0, 0, 0, 0, 15, 15, + 0, 3, 0, 12, 2, 20, 0, 0, 0, 0, 0, 0, 0, 16, + 0, 0, 0, 0, 0, 33, 0, 30, 33, 0, 0, 0, 0, 0, + 0, 16, 0, 22, 17, 0, 42, 16, 0, 0, 0, 0, 0, 0, + 11, 28, 27, 0, 0, 18, 0, 0, 24, 0, 0, 0, 14, 0, + 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, + 0, 0, 24, 14, 0, 14, 0, 0, 0, 30, 14, 31, 0, 0, + 12, 0, 24, 0, 19, 0, 0, 0, 6, 19, 0, 0, 0, 0, + 0, 0, 0, 0, 2, 0, 0, 11, 0, 27, 10, 0, 29, 16, + 16, 33, 0, 28, 0, 0, 0, 0, 0, 0, 2, 0, 12, 0, + 8, 0, 9, 0, 0, 0, 15, 14, 36, 0, 0, 21, 14, 14, + 0, 17, 0, 25, 0, 0, 0, 13, 0, 6, 0, 29, 0, 0, + 8, 3, 19, 0, 22, 10, 0, 0, 0, 14, 0, 0, 14, 27, + 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 37, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 31, 0, + 0, 0, 0, 0, 0, 35, 0, 0, 0, 12, 12, 0, 14, 22, + 0, 16, 14, 0, 0, 0, 20, 0, 0, 0, 0, 28, 0, 23, + 0, 0, 0, 20, 0, 21, 0, 0, 0, 0, 18, 0, 16, 30, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 18, 14, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, + 17, 0, 13, 0, 12, 0, 0, 15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 25, 0, 0, 0, 12, 2, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 26, 14, 0, 0, 0, 0, 0, 0, 0, 13, + 12, 27, 0, 34, 26, 20, 0, 25, 15, 0, 0, 2, 13, 9, + 13, 0, 29, 0, 18, 0, 0, 0, 0, 0, 0, 0, 2, 0, + 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 0, 0, 0, 0, 0, 21, 0, 0, 20, 0, 19, + 0, 0, 17, 0, 0, 32, 0, 0, 0, 32, 0, 0, 0, 19, + 22, 13, 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 23, 0, 0, 0, 0, 0, 21, 0, 0, + 0, 25, 16, 0, 31, 25, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 17, + 0, 0, 0, 28, 0, 0, 15, 0, 17, 15, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 16, 0, 11, 0, 0, 0, 0, 0, 0, + 0, 0, 19, 0, 0, 13, 0, 24, 0, 0, 0, 9, 0, 0, + 32, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 20, 0, 11, + 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 20, 25, 0, 0, + 0, 0, 19, 0, 23, 11, 15, 0, 0, 0, 0, 0, 0, 0, + 2, 11, 0, 15, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, + 28, 0, 0, 0, 0, 15, 32, 0, 0, 0, 50, 0, 0, 0, + 0, 35, 0, 0, 37, 0, 24, 35, 21, 20, 0, 0, 41, 0, + 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 11, 0, 0, + 0, 0, 34, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 34, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 27, 72, 0, 15, 19, 0, 0, 0, 0, 18, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 11, 23, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, + 27, 0, 21, 0, 26, 0, 0, 0, 0, 0, 0, 13, 0, 0, + 30, 0, 0, 0, 0, 0, 0, 0, 0, 34, 35, 0, 18, 0, + 14, 0, 0, 16, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, + 16, 0, 13, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, + 35, 0, 0, 0, 14, 0, 19, 0, 0, 13, 0, 0, 37, 0, + 0, 0, 31, 0, 0, 14, 0, 0, 0, 0, 22, 0, 9, 0, + 0, 10, 0, 0, 34, 0, 0, 0, 0, 0, 19, 0, 0, 0, + 0, 0, 14, 0, 0, 0, 0, 11, 0, 11, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 11, 21, 0, 0, 11, 0, 14, 0, 15, 22, + 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 8, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 11, 0, 0, 43, + 32, 0, 0, 0, 0, 0, 0, 31, 22, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 13, 0, 0, 15, 0, 0, 0, 0, + 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, + 0, 0, 0, 0, 15, 0, 12, 0, 0, 14, 0, 0, 12, 0, + 0, 0, 0, 0, 15, 15, 0, 0, 12, 0, 0, 0, 0, 0, + 19, 0, 0, 0, 30, 0, 0, 0, 0, 23, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 2, 16, + 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 15, 0, 15, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 12, 30, 0, + 0, 0, 27, 0, 0, 0, 0, 0, 32, 0, 15, 0, 15, 0, + 0, 25, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, + 33, 28, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 15, + 0, 15, 9, 35, 0, 10, 0, 0, 0, 32, 0, 0, 0, 0, + 0, 0, 24, 25, 0, 19, 0, 0, 3, 0, 0, 0, 0, 25, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 18, 14, 16, 0, 0, 23, 0, 14, 0, 22, 0, + 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, + 17, 15, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 16, 0, 19, 24, 0, 19, 29, 0, + 0, 0, 23, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 18, 0, 0, 0, 0, 28, 0, 0, 0, 16, 0, + 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 14, + 0, 0, 14, 0, 0, 0, 27, 0, 15, 17, 32, 0, 0, 0, + 0, 19, 0, 0, 0, 0, 0, 0, 27, 0, 0, 9, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 7, 0, 0, + 14, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 26, 0, 0, 19, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 11, 0, 17, 0, 0, 9, + 0, 20, 0, 0, 0, 0, 12, 0, 25, 0, 0, 0, 0, 22, + 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, + 0, 0, 18, 0, 0, 0, 0, 12, 0, 29, 0, 0, 0, 20, + 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 22, 20, 0, + 0, 0, 0, 25, 12, 16, 0, 20, 25, 15, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 28, 0, 0, + 14, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 11, 0, + 19, 33, 0, 0, 0, 15, 0, 0, 22, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 22, 11, 0, 22, 20, 0, 0, 0, 0, + 0, 0, 0, 0, 18, 18, 0, 0, 0, 15, 0, 0, 0, 0, + 0, 13, 18, 0, 18, 0, 73, 74, 0, 0, 0, 0, 0, 0, + 0, 0, 14, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 24, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 32, 0, 31, 0, 21, 0, 0, 0, 0, 17, + 8, 26, 0, 0, 0, 0, 0, 13, 0, 18, 18, 0, 0, 0, + 0, 0, 15, 14, 0, 0, 0, 0, 0, 0, 20, 28, 12, 0, + 23, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, + 0, 0, 0, 0, 0, 0, 0, 9, 18, 0, 0, 0, 0, 33, + 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 2, 0, 0, 0, + 0, 0, 29, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 3, 17, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 9, 0, 0, 0, 24, 31, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 10, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 24, 0, + 0, 14, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 22, 0, 2, 0, 0, 0, 0, 0, 0, 13, + 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 22, 13, 0, 0, + 9, 28, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 10, 18, 0, 0, 0, 0, 0, 0, 0, 0, 22, 35, + 13, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 15, 0, 36, + 22, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 14, + 33, 0, 0, 3, 0, 14, 0, 28, 0, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 13, 0, 0, + 3, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 24, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 26, + 0, 0, 20, 11, 0, 40, 23, 18, 0, 0, 0, 0, 0, 0, + 30, 10, 0, 25, 0, 0, 13, 0, 0, 0, 0, 14, 0, 0, + 23, 26, 0, 0, 0, 0, 15, 0, 0, 15, 0, 26, 0, 0, + 0, 0, 0, 18, 16, 0, 0, 0, 0, 0, 0, 0, 0, 11, + 14, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 31, 0, 34, + 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 11, 0, 0, 0, 27, 0, 0, 0, 0, 13, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 7, 0, 16, 0, 0, 0, 14, 0, 0, 29, 0, 0, 25, 22, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, + 0, 0, 0, 16, 0, 10, 0, 0, 0, 0, 0, 0, 24, 0, + 0, 0, 0, 0, 0, 0, 10, 0, 0, 13, 3, 0, 0, 0, + 0, 16, 24, 0, 17, 0, 0, 0, 0, 13, 0, 0, 0, 0, + 0, 25, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 14, 0, + 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, + 0, 0, 0, 19, 0, 0, 9, 0, 0, 10, 0, 35, 30, 0, + 0, 22, 0, 0, 0, 2, 0, 0, 0, 0, 0, 21, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 22, + 0, 22, 14, 0, 34, 0, 0, 0, 0, 0, 0, 22, 0, 20, + 29, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 24, 14, 0, + 0, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 30, 16, 0, 0, 0, 7, 30, 0, 0, 0, + 0, 0, 0, 18, 0, 0, 0, 0, 18, 0, 23, 31, 0, 13, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 19, 27, + 0, 0, 0, 14, 0, 31, 29, 38, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 2, 0, 0, 8, 28, 30, 19, 0, 6, 0, 21, + 0, 18, 24, 11, 0, 22, 0, 24, 0, 0, 0, 0, 0, 0, + 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 36, 14, 0, 0, 0, 0, 43, 0, 0, 0, 0, 18, + 0, 22, 29, 0, 17, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 24, 0, 17, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 30, 0, 0, 38, 0, 0, 0, 0, 0, 23, 0, + 18, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, + 4, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, + 0, 27, 0, 0, 0, 0, 9, 0, 0, 10, 0, 0, 0, 0, + 3, 0, 0, 0, 12, 0, 0, 0, 8, 18, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 6, 0, 29, 0, 0, 7, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 36, 0, 0, 28, 0, 0, 0, 0, 0, 10, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 11, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 15, 0, 0, + 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, + 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 22, 0, 0, 0, 0, 0, 25, 0, 29, 23, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 23, 11, + 0, 0, 0, 0, 0, 11, 0, 0, 28, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 20, 0, 12, 0, 0, 28, 21, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, + 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, + 0, 0, 21, 0, 0, 0, 0, 16, 0, 0, 0, 0, 32, 0, + 0, 34, 0, 0, 22, 29, 0, 0, 14, 0, 26, 30, 0, 0, + 29, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, + 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, + 22, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 19, 31, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, + 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, + 0, 10, 0, 0, 0, 21, 0, 36, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 14, 0, 23, 0, 0, 0, 0, 29, 0, + 14, 0, 0, 29, 0, 0, 0, 25, 0, 0, 42, 30, 15, 29, + 0, 0, 29, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, + 0, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 13, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, + 0, 23, 0, 0, 0, 0, 0, 0, 11, 0, 16, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 24, 27, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, + 0, 13, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 30, + 29, 0, 0, 0, 29, 0, 0, 0, 0, 0, 28, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 14, 0, 24, 0, 24, 0, 28, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 23, 0, 0, + 0, 0, 0, 34, 14, 14, 0, 0, 14, 0, 0, 0, 0, 14, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 15, + 0, 0, 0, 0, 0, 14, 15, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, + 0, 0, 0, 0, 11, 7, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 23, 0, 0, 0, 21, 0, 32, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 7, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 24, 0, 0, 0, 16, 0, 0, 0, 0, + 0, 0, 30, 0, 0, 0, 0, 29, 0, 0, 0, 21, 0, 0, + 0, 0, 43, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, + 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, + 0, 0, 0, 29, 0, 28, 0, 0, 0, 0, 0, 37, 0, 0, + 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, + 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 6, 0, 0, 26, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, + 10, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 0, 3, 0, 0, 0, 0, 22, 17, 0, 0, 0, 0, 0, + 0, 0, 0, 33, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 16, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 16, 0, 2, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 22, 0, 0, 0, 19, 0, 0, 30, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 20, 0, - 23, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 14, 0, 28, 17, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 8, + 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 19, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 16, 9, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 25, 36, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 36, 0, 0, 15, 0, 21, 0, 0, + 0, 3, 0, 0, 13, 0, 0, 0, 0, 0, 0, 17, 0, 0, + 0, 0, 0, 23, 0, 0, 37, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, - 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 15, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 28, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, - 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 13, 17, 0, 0, 0, 0, 0, 0, 11, 0, 0, 31, - 29, 0, 25, 17, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 13, 0, 37, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, - 16, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 22, 0, 0, - 6, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 25, 0, 0, 0, - 0, 0, 17, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 17, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, - 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 23, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, - 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 13, 16, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 13, 16, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 19, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 22, 24, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, - 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, - 0, 0, 0, 0, 0, 7, 0, 0, 0, 14, 0, 0, 0, 0, - 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 22, 0, 0, 0, 0, 0, 0, 2, 0, 25, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 6, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, + 0, 0, 23, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 0, 0, + 0, 24, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 16, 0, + 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 17, + 0, 17, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 15, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 35, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 12, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 22, 0, 11, 0, 0, 35, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 28, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, + 27, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 16, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, + 15, 0, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, + 2, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 32, + 0, 33, 0, 25, 0, 0, 0, 0, 25, 0, 0, 19, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 7, 20, 36, 0, 21, 0, + 0, 28, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, + 0, 0, 28, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, + 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 33, 0, 0, 0, 0, 0, 15, 25, 0, 35, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, + 0, 0, 0, 31, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, + 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, + 0, 0, 17, 0, 27, 27, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 16, + 0, 0, 0, 0, 0, 0, 29, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 25, 0, + 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, + 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 24, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 25, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 16, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 32, 9, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, + 0, 0, 0, 0, 0, 15, 34, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 19, + 0, 0, 0, 0, 32, 0, 33, 0, 0, 0, 0, 0, 0, 0, + 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, + 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, + 32, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, + 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, + 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 23, 15, 0, 0, 0, 0, 16, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 25, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 5, 0, + 0, 24, 0, 0, 0, 43, 15, 0, 0, 22, 0, 25, 0, 0, + 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, + 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 7, 8, 25, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, + 0, 0, 0, 18, 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, + 14, 13, 0, 0, 0, 15, 0, 13, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 24, 0, 0, 15, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, + 0, 0, 0, 4, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 15, 0, + 0, 0, 15, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 22, 0, 0, 0, 0, 0, 0, 0, 15, 0, 4, 0, + 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, + 0, 0, 25, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 15, + 0, 0, 0, 0, 19, 15, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 14, 0, 0, 15, 0, 15, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 15, 27, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 15, 0, 0, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, + 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 14, 0, + 0, 0, 0, 0, 0, 16, 0, 15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 14, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, + 0, 0, 14, 0, 0, 16, 0, 0, 0, 0, 17, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 29, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 15, 0, 0, 0, + 0, 0, 0, 0, 30, 0, 0, 0, 0, 25, 0, 0, 0, 0, + 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, + 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 17, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 13, + 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, + 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 16, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 17, 0, + 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 16, 17, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, + 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 19, 0, + 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 17, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 17, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 17, 0, 17, 0, 16, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, + 0, 13, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 34, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 37, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 36, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 27, 0, 0, - 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 17, 0, 0, 17, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 17, 0, 0, 17, 0, 0, 14, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 18, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 28, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, + 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 17, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 17, 0, 0, + 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, + 0, 0, 0, 34, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 17, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 16, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 16, 0, 13, 0, 0, + 0, 7, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 37, 0, 0, 0, 14, 0, 0, 0, 0, - 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, - 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, + 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 17, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 17, 0, 0, 17, 0, 0, 0, 0, 0, - 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 14, 0, 0, 0, - 0, 17, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, - 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 0, - 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 13, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 32, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, - 35, 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 23, 7, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 15, 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 28, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 23, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, - 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, - 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 15, 0, 0, 0, 0, 0, - 28, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, + 0, 0, 22, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 16, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, - 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, + 0, 28, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 28, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 27, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 28, 0, 24, 17, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 28, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, + 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, + 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, + 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 2, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, + 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, - 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 14, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 20, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, - 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 17, 0, 0, 7, 0, 0, 0, 0, - 15, 0, 0, 0, 0, 0, 17, 0, 0, 14, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, + 0, 0, 17, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 28, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, - 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 28, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 17, 0, 0, 14, 0, 0, 15, 17, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 22, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, - 0, 0, 4, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, - 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, - 0, 0, 0, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, - 0, 0, 17, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 26, 15, - 0, 0, 0, 0, 0, 0, 0, 7, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 2, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 33, 0, 0, 0, 0, 16, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 15, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, - 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 17, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1254,41 +1261,39 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 18, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1299,11 +1304,9 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1317,7 +1320,9 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1329,14 +1334,14 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1349,6 +1354,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1356,7 +1362,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1366,25 +1371,27 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1398,22 +1405,21 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1451,150 +1457,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 36, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 36, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1795,6 +1657,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1820,22 +1683,19 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1863,20 +1723,20 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1939,7 +1799,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1957,6 +1816,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -1994,7 +1854,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2058,6 +1917,7 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2100,6 +1960,273 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 26, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2257,7 +2384,6 @@ static const unsigned char lengthtable[] = 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, @@ -2456,4579 +2582,4891 @@ static const unsigned char lengthtable[] = static const struct grib_keys_hash wordlist[] = { {""}, - {"n",1309}, - {"nd",1319}, - {"nnn",1323}, - {"td",2129}, - {"t",2119}, - {"nt",1337}, - {"ed",714}, - {"na",1312}, - {"m",1190}, + {"n",1324}, + {"nd",1334}, + {"nnn",1338}, + {"td",2149}, + {"t",2138}, + {"nt",1352}, + {"ed",718}, + {"na",1327}, + {"m",1203}, {""}, - {"min",1272}, + {"min",1285}, {""}, - {"sd",1912}, + {"sd",1930}, {""}, {"data",619}, {""}, {""}, - {"ident",948}, + {"ident",953}, {"date",637}, {""}, - {"name",1313}, + {"name",1328}, {""}, - {"one",1505}, - {"time",2155}, + {"one",1522}, + {"time",2175}, {""}, {""}, - {"domain",697}, + {"domain",701}, + {""}, + {"K",96}, + {"enorm",761}, + {"sort",2056}, + {"edition",719}, + {"metadata",1281}, + {""}, + {"mars",1206}, + {""}, + {"stream",2111}, + {""}, + {"names",1333}, + {""}, + {"iteration",1027}, + {"param",1631}, + {""}, + {"oper",1534}, {""}, {""}, - {"enorm",757}, - {"sort",2037}, - {"edition",715}, - {"metadata",1268}, - {""}, - {"mars",1193}, - {""}, - {"stream",2092}, - {""}, - {"names",1318}, - {""}, - {"iteration",1019}, - {"param",1614}, - {""}, - {"oper",1517}, - {""}, {""}, - {"dimension",680}, + {"dimension",684}, {""}, {""}, {""}, - {"eps",762}, - {"spare",2054}, + {"eps",766}, + {"spare",2073}, {""}, {""}, - {"present",1665}, + {"present",1682}, {""}, - {"assertion",311}, - {"parameter",1620}, + {"assertion",312}, + {"parameter",1637}, {""}, - {"opttime",1524}, - {"cat",378}, - {""}, {""}, - {"step",2081}, - {"points",1654}, - {""}, {""}, {""}, {""}, {""}, - {"year",2376}, + {"opttime",1541}, {""}, {""}, {""}, - {"stepZero",2091}, + {"step",2100}, + {"points",1671}, + {""}, {"centre",396}, {"core",594}, - {"true",2188}, - {"parameters",1628}, - {"partitions",1633}, + {""}, + {"year",2398}, + {""}, {"const",567}, - {"timerepres",2168}, - {"second",1913}, {""}, - {"rectime",1751}, - {"minute",1274}, - {"direction",683}, + {"second",1931}, + {"true",2210}, + {"rectime",1769}, + {""}, + {"direction",687}, + {"parameters",1645}, + {"partitions",1650}, + {"section",1954}, + {"timerepres",2189}, + {"minute",1287}, + {""}, + {"restricted",1810}, + {""}, + {"stepZero",2110}, + {"minimum",1286}, + {""}, + {"units",2270}, + {"type",2221}, {""}, {""}, - {"section",1935}, - {"minimum",1273}, - {"type",2199}, - {"units",2248}, - {"restricted",1792}, + {"radius",1744}, {""}, {""}, - {"radius",1726}, - {"system",2117}, - {""}, {""}, {""}, - {"instrument",975}, - {""}, {""}, {""}, - {"status",2080}, - {"Di",31}, + {"system",2136}, + {"hdate",925}, + {"instrument",981}, + {"section6",1985}, {""}, - {"leadtime",1080}, + {"three",2162}, + {"status",2099}, + {"leadtime",1090}, + {"method",1282}, {""}, {""}, - {"dy",704}, + {"precision",1677}, + {"radials",1743}, + {"dy",708}, + {"dataKeys",624}, {""}, - {"radials",1725}, - {""}, - {"day",648}, - {"precision",1660}, + {"statistics",2098}, + {"day",651}, {"dataTime",634}, - {"hdate",921}, - {"dateTime",646}, - {""}, - {"statistics",2079}, - {"three",2142}, - {""}, - {"Dstart",39}, - {"method",1269}, - {""}, - {"dataDate",622}, - {"process",1695}, + {"Di",31}, + {"dateTime",647}, {"count",608}, {""}, - {"marsDir",1197}, + {"process",1712}, {""}, - {"uco",2240}, + {"uco",2262}, {""}, - {"ucs",2241}, - {""}, {""}, {""}, {""}, - {"masterDir",1226}, - {""}, {""}, {""}, {""}, {""}, + {"ucs",2263}, + {""}, {""}, + {"yFirst",2396}, + {"phase",1664}, {"correction",599}, - {"marsDomain",1198}, - {"phase",1647}, - {""}, {""}, {""}, {""}, {""}, - {"product",1697}, - {""}, {""}, - {"yFirst",2374}, - {""}, {""}, + {""}, {"char",417}, - {"latitude",1046}, {""}, {""}, + {"Dstart",39}, + {""}, {""}, + {"dataDate",622}, + {""}, {""}, {""}, + {"marsDir",1210}, + {""}, + {"product",1714}, + {""}, {""}, {""}, {""}, {""}, + {"hundred",945}, + {"masterDir",1239}, {"class",420}, + {""}, + {"hour",936}, + {"latitude",1056}, + {""}, {""}, + {"marsDomain",1211}, + {"total",2191}, + {"pl",1668}, + {"model",1304}, + {"normal",1341}, + {""}, {"dataStream",632}, {""}, - {"total",2170}, - {"pl",1651}, - {"model",1290}, - {"normal",1326}, - {"landtype",1038}, - {"hundred",940}, - {""}, - {"million",1271}, - {"isSens",1004}, - {"hour",932}, - {"marsStream",1218}, + {"million",1284}, + {"landtype",1048}, {"consensus",565}, - {"latitudes",1076}, - {""}, {""}, - {"dummy",699}, + {""}, + {"thousand",2161}, {""}, {""}, + {"latitudes",1086}, + {"isSens",1010}, + {"discipline",693}, + {"marsStream",1231}, + {""}, + {"month",1311}, + {"dummy",703}, + {""}, + {"ieeeFloats",958}, + {""}, {"dataType",635}, - {""}, - {"discipline",689}, - {"endStep",749}, - {"notDecoded",1336}, - {"grid",899}, - {""}, - {"thousand",2141}, - {""}, {""}, - {"operStream",1518}, - {""}, - {"marsType",1221}, - {"refdate",1757}, - {""}, - {"range",1731}, {""}, {""}, {""}, - {"marsStep",1217}, - {"startStep",2073}, - {"origin",1529}, - {"identifier",952}, + {"endStep",753}, + {""}, {""}, {""}, + {"notDecoded",1351}, + {""}, + {"varno",2319}, + {"operStream",1535}, + {"marsType",1234}, + {""}, {""}, + {"temperature",2151}, + {""}, {""}, + {"reserved",1793}, + {"version",2324}, + {"marsStep",1230}, + {"startStep",2092}, + {""}, {""}, + {"section8",1993}, + {""}, {""}, + {"dummyc",706}, + {""}, {""}, {""}, + {"stepType",2106}, + {""}, {""}, {"Dy",43}, - {""}, {""}, {""}, {""}, {""}, - {"ieeeFloats",953}, {""}, - {"stepType",2087}, + {"reportType",1789}, + {""}, {""}, {""}, + {"elementsTable",725}, + {""}, {""}, {""}, + {"partitionTable",1649}, {""}, - {"month",1297}, - {""}, - {"temperature",2131}, - {"reportType",1771}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"elementsTable",721}, - {"dummyc",702}, - {"varno",2297}, - {""}, - {"partitionTable",1632}, - {""}, {""}, {""}, {""}, {""}, - {"reserved",1775}, - {"version",2302}, {"country",612}, - {""}, + {""}, {""}, {"codeType",545}, - {"oceanStream",1468}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"oceanStream",1485}, + {""}, {""}, {""}, {""}, + {"marsQuantile",1227}, + {""}, {""}, {""}, {""}, {""}, + {"refdate",1775}, {"TT",234}, {"conceptDir",557}, + {"unitsFactor",2276}, {""}, {""}, {""}, - {"reference",1758}, + {"eleven",727}, {""}, - {"file",841}, - {"efiOrder",719}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"section8",1974}, - {""}, - {"fcperiod",838}, - {"false",834}, - {"dataOrigin",626}, - {""}, {""}, {""}, {""}, - {"Xo",267}, - {"standardDeviation",2066}, - {"endTimeStep",751}, - {""}, - {"signature",2020}, + {"identifier",957}, + {""}, {""}, {""}, + {"grid",903}, {""}, {""}, {""}, {""}, {""}, - {"local",1117}, - {""}, {""}, {""}, - {"unitsFactor",2254}, - {"rectimeDay",1752}, - {"marsQuantile",1214}, - {"categories",379}, - {"eleven",723}, - {"platform",1652}, - {"eight",720}, + {"threshold",2163}, + {"local",1127}, {""}, - {"Xp",268}, + {"KS",97}, + {"range",1749}, + {"elevation",726}, {""}, {""}, - {"two",2197}, - {"dimensionType",682}, - {""}, {""}, {""}, {""}, {""}, - {"threshold",2143}, {"channel",415}, - {"matchSort",1233}, - {"elevation",722}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"localTime",1145}, {""}, - {"localDir",1126}, + {"origin",1546}, + {"endTimeStep",755}, {""}, - {"hideThis",926}, + {"zero",2406}, + {"correction3Part",605}, {""}, - {"diagnostic",676}, - {""}, {""}, - {"indicatorOfParameter",963}, - {"localDate",1118}, - {""}, {""}, {""}, {""}, - {"isOctahedral",1000}, - {""}, {""}, {""}, {""}, {""}, - {"TS",232}, + {"matchSort",1246}, + {"hideThis",930}, + {""}, + {"standardDeviation",2085}, {""}, {""}, {""}, {""}, {""}, {""}, - {"longitude",1151}, + {"zeros",2407}, {""}, - {"isFillup",998}, - {"band",323}, - {""}, - {"coefsFirst",549}, - {""}, {""}, {""}, {""}, {""}, - {"dataSelection",631}, - {""}, {""}, - {"g",876}, - {""}, - {"gridType",908}, - {""}, - {"longitudes",1181}, + {"rectimeDay",1770}, {""}, {""}, {""}, - {"values",2285}, - {"recDateTime",1748}, + {"reference",1776}, + {""}, {""}, {""}, + {"localTime",1155}, {""}, - {"rdbtime",1737}, - {"levtype",1101}, - {"offset",1470}, + {"file",845}, + {""}, {""}, {""}, {""}, {""}, + {"fcperiod",842}, + {"isFillup",1004}, + {""}, {""}, {""}, + {"false",838}, + {"localDir",1136}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"localDate",1128}, {""}, - {"countTotal",611}, - {""}, {""}, - {"anoffset",306}, - {"userTimeStart",2279}, - {""}, {""}, - {"levelist",1099}, - {"levels",1100}, - {""}, {""}, - {"aerosolType",294}, - {""}, {""}, - {"userDateStart",2275}, + {"values",2307}, + {""}, {""}, {""}, {""}, {""}, + {"levtype",1111}, + {""}, {""}, {""}, + {"TS",232}, + {""}, + {"levelist",1109}, + {"levels",1110}, + {"platform",1669}, + {"dataSelection",631}, {""}, {""}, {""}, {""}, - {"padding",1543}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"bitmap",361}, + {"eight",724}, {""}, + {"signature",2039}, + {""}, + {"pv",1728}, + {"recDateTime",1766}, + {""}, {""}, {""}, + {"categories",379}, + {"countTotal",611}, + {""}, {""}, {""}, {""}, {""}, + {"aerosolType",295}, + {"coefsFirst",549}, + {"dimensionType",686}, + {""}, {""}, {""}, + {"isOctahedral",1006}, + {""}, {""}, {""}, {""}, + {"userTimeStart",2301}, + {"efiOrder",723}, + {""}, {""}, {""}, + {"diagnostic",680}, + {""}, + {"typicalTime",2258}, + {""}, {""}, + {"statisticalProcess",2096}, + {"level",1106}, + {"indicatorOfParameter",968}, + {""}, + {"productType",1719}, + {""}, + {"isSatellite",1008}, + {""}, {""}, {""}, {""}, {"centreDescription",397}, + {"userDateStart",2297}, + {""}, {""}, + {"spectralType",2083}, + {""}, {""}, {""}, + {"typicalDate",2251}, + {"lev",1104}, + {"nlev",1337}, + {""}, + {"dataOrigin",626}, + {"meanSize",1273}, + {""}, + {"statisticalProcessesList",2097}, + {"longitude",1163}, + {""}, + {"TScalc",233}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"localDay",1130}, + {""}, {""}, {""}, {""}, + {"typicalDay",2253}, + {""}, {""}, {""}, + {"longitudes",1193}, + {""}, + {"gridType",912}, + {"two",2219}, + {""}, {""}, {""}, {""}, {"codeFigure",544}, {""}, {""}, - {"unitOfTime",2245}, - {"average",315}, + {"fcmonth",841}, {""}, {""}, - {"typicalTime",2236}, - {""}, {""}, {""}, - {"isSatellite",1002}, - {"productType",1702}, - {"statisticalProcess",2077}, + {"average",316}, + {""}, {""}, + {"band",324}, + {""}, {""}, + {"overlayTemplate",1554}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"laplacianOperator",1049}, {""}, - {"number",1338}, - {""}, - {"typicalDate",2229}, - {"pv",1711}, - {"localDay",1120}, - {"typicalDay",2231}, - {""}, {""}, {""}, - {"laplacianOperator",1039}, - {"spectralType",2064}, - {""}, - {"level",1096}, - {"forecastperiod",868}, - {"mybits",1308}, - {""}, {""}, {""}, - {"fcmonth",837}, + {"datumSize",650}, {""}, {""}, {""}, {""}, - {"TScalc",233}, - {"statisticalProcessesList",2078}, - {""}, - {"windSpeed",2346}, - {""}, {""}, {""}, - {"flags",856}, + {"rdbtime",1755}, + {"forecastperiod",872}, + {"offset",1487}, {""}, {""}, {""}, {""}, - {"fgTime",840}, + {"anoffset",307}, {""}, - {"obstype",1465}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"fgDate",839}, - {""}, {""}, {""}, {""}, - {"oneThousand",1516}, - {""}, - {"headersOnly",922}, - {""}, {""}, - {"forecastTime",867}, - {""}, {""}, {""}, {""}, {""}, - {"lev",1094}, - {"nlev",1322}, - {""}, {""}, - {"ccsdsFlags",385}, - {""}, {""}, - {"zero",2383}, - {""}, - {"overlayTemplate",1537}, + {"xFirst",2389}, + {"satelliteSeries",1874}, {""}, {""}, {""}, {""}, {""}, {""}, - {"periodOfTime",1643}, + {"coordinatesPresent",593}, + {""}, + {"levelType",1108}, {""}, {""}, {""}, - {"zeros",2384}, - {""}, {""}, {""}, {""}, {""}, - {"satelliteSeries",1856}, - {"longitudesList",1182}, + {"maximum",1251}, {""}, - {"endDescriptors",728}, + {"parameterDiscipline",1640}, {""}, - {"optionalData",1523}, + {"forecastTime",871}, + {""}, {""}, {""}, + {"g",880}, + {"bitmap",362}, + {"unitsDecimalScaleFactor",2274}, + {"validityTime",2306}, {""}, - {"localDateTime",1119}, + {"localDateTime",1129}, + {""}, + {"ccsdsFlags",385}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"number",1353}, + {""}, + {"oneThousand",1533}, + {""}, + {"unitOfTime",2267}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"mybits",1323}, + {""}, + {"padding",1560}, + {""}, {""}, {""}, {""}, {""}, {""}, {"Latin",113}, {""}, - {"unitsDecimalScaleFactor",2252}, + {"extraDim",792}, {""}, {""}, - {"rdbType",1735}, - {"crcrlf",613}, - {""}, {""}, {""}, - {"forecastSteps",866}, - {"dataFlag",623}, - {"windDirection",2335}, - {""}, {""}, - {"parameterDiscipline",1623}, - {""}, - {"dateOfForecast",639}, - {"levelType",1098}, - {""}, {""}, - {"tubeDomain",2195}, - {"timeOfForecast",2162}, - {""}, {""}, {""}, - {"gg",888}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Lap",108}, - {"coordinatesPresent",593}, + {"forecastSteps",870}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"obstype",1482}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"flags",860}, + {""}, + {"derivedForecast",678}, {""}, {""}, {""}, {""}, - {"validityTime",2284}, - {"rdbtimeTime",1744}, - {"avg",319}, - {""}, {""}, {""}, {""}, - {"categoryType",380}, + {"fgTime",844}, + {""}, {""}, + {"Lap",108}, + {""}, + {"windSpeed",2368}, + {"headersOnly",926}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"userDateTimeStart",2299}, + {""}, {""}, + {"controlForecastCluster",572}, + {""}, + {"periodOfTime",1660}, + {""}, {""}, + {"fgDate",843}, + {""}, {""}, + {"crcrlf",613}, {"daLoop",618}, - {"laplacianOperatorIsSet",1040}, - {""}, - {"rdbtimeDate",1738}, - {""}, - {"maximum",1238}, - {"rdbtimeDay",1739}, - {"yLast",2375}, - {"longitudeOfCentrePoint",1155}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"yearOfForecast",2380}, - {""}, {""}, - {"xFirst",2367}, - {""}, - {"localSecond",1140}, - {""}, - {"firstDimension",843}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"userDateTimeStart",2277}, - {""}, {""}, - {"derivedForecast",674}, + {""}, {""}, {""}, {""}, + {"laplacianOperatorIsSet",1050}, + {"yLast",2397}, {""}, {""}, {""}, - {"flag",851}, + {"expver",790}, + {""}, {""}, + {"categoryType",380}, + {"firstDimension",847}, + {""}, {""}, + {"rdbType",1753}, {""}, {""}, {""}, - {"waveDomain",2325}, + {"localDecimalScaleFactor",1131}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"dataFlag",623}, + {""}, + {"longitudesList",1194}, + {""}, + {"localSecond",1150}, {"Ly",151}, {""}, {""}, - {"extraDim",788}, + {"rdbtimeTime",1762}, + {"tubeDomain",2217}, {""}, {""}, - {"meanSize",1260}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"coefsSecond",550}, - {"controlForecastCluster",572}, + {"endDescriptors",732}, + {"localTimeForecastList",1156}, {""}, {""}, {""}, - {"aerosolpacking",296}, - {""}, - {"upperLimit",2270}, - {"logTransform",1150}, - {""}, - {"referenceDate",1759}, - {"analysisOffsets",299}, - {""}, {""}, {""}, - {"runwayState",1851}, - {""}, - {"correction3Part",605}, - {""}, {""}, {""}, - {"localDecimalScaleFactor",1121}, - {"dayOfForecast",651}, - {"angleDivisor",300}, - {""}, {""}, {""}, {""}, - {"rdbDateTime",1733}, - {""}, {""}, {""}, - {"offsetSection9",1501}, - {""}, - {"freeFormData",871}, - {""}, - {"Lcy",120}, - {""}, {""}, - {"representationType",1773}, - {""}, {""}, {""}, {""}, - {"startTimeStep",2075}, - {"Luy",147}, - {""}, {""}, - {"datumSize",647}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeOfCentrePoint",1051}, - {""}, {""}, {""}, {""}, - {"dataKeys",624}, - {""}, {""}, - {"ensembleSize",760}, - {"hourOfForecast",935}, - {"incrementOfLengths",957}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"LaD",105}, - {""}, {""}, - {"perturbedType",1646}, - {""}, {""}, {""}, {""}, - {"siteId",2027}, - {"oldSubtype",1504}, - {""}, {""}, - {"marsStartStep",1216}, + {"stepTypeForConversion",2107}, + {"optionalData",1540}, {""}, {""}, {""}, {""}, {""}, - {"marsIdent",1204}, - {"setDecimalPrecision",2010}, - {"paramId",1615}, - {""}, - {"latitudeSexagesimal",1073}, - {""}, - {"truncateLaplacian",2191}, - {"anoffsetFirst",307}, + {"windDirection",2357}, {""}, {""}, - {"localFlag",1128}, - {"expver",786}, - {""}, {""}, {""}, {""}, - {"monthOfForecast",1300}, - {""}, - {"reservedOctet",1780}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"auxiliary",314}, - {"verticalDomainTemplate",2312}, - {"Nr",196}, - {""}, {""}, - {"global",889}, - {"Ni",194}, - {""}, {""}, {""}, - {"visibility",2316}, - {"iIncrement",945}, - {""}, - {"stepTypeForConversion",2088}, - {""}, {""}, {""}, {""}, {""}, - {"lengthDescriptors",1085}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetDescriptors",1484}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"isEps",997}, - {"referenceStep",1766}, - {""}, {""}, {""}, - {"expandedTypes",779}, - {""}, {""}, {""}, - {"section6",1966}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetSection8",1500}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"originalSubCentreIdentifier",1532}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"validityDate",2283}, - {""}, - {"numberOfFloats",1385}, - {""}, {""}, - {"gridDefinition",901}, - {""}, {""}, {""}, - {"parameterName",1625}, - {""}, {""}, {""}, {""}, {""}, - {"computeStatistics",556}, - {"KS",97}, - {""}, {""}, {""}, - {"anoffsetFrequency",308}, - {""}, - {"decimalScaleFactor",656}, - {"JS",95}, - {""}, {""}, - {"suiteName",2111}, - {""}, {""}, - {"localDefinition",1124}, - {"Ny",202}, - {"clearTables",422}, - {"boustrophedonic",368}, - {"referenceOfLengths",1762}, - {""}, {""}, - {"modelName",1293}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"instrumentIdentifier",976}, - {""}, {""}, - {"generatingProcessTemplate",885}, - {"modelIdentifier",1292}, - {""}, {""}, - {"marsLevel",1209}, - {"marsLatitude",1208}, - {""}, - {"siteLatitude",2028}, - {"expoffset",785}, - {""}, {""}, - {"lowerLimit",1184}, - {""}, {""}, {""}, {""}, - {"topLevel",2169}, - {"shortName",2016}, - {""}, {""}, {""}, - {"dataLength",625}, - {"indexingTime",962}, - {"subcentreOfAnalysis",2109}, + {"upperLimit",2292}, {"clusterSize",538}, {""}, - {"newSubtype",1321}, - {"minuteOfForecast",1277}, + {"rdbtimeDate",1756}, + {"auxiliary",315}, {""}, - {"secondOfForecast",1920}, - {"integerScaleFactor",979}, + {"dateOfForecast",639}, + {""}, + {"avg",320}, + {""}, + {"setDecimalPrecision",2029}, + {"timeOfForecast",2182}, + {""}, {""}, {""}, {""}, + {"subSetK",2126}, + {""}, {""}, + {"longitudeOfCentrePoint",1167}, + {""}, + {"Lcy",120}, + {""}, {""}, {""}, + {"rdbtimeDay",1757}, + {""}, {""}, {""}, + {"angleDivisor",301}, + {"dayOfForecast",654}, + {""}, + {"verticalDomainTemplate",2334}, + {""}, {""}, + {"siteId",2046}, + {"Luy",147}, + {""}, {""}, + {"expandedTypes",783}, + {""}, {""}, {""}, {""}, {""}, + {"marsIdent",1217}, + {""}, + {"paramId",1632}, + {""}, {""}, {""}, {""}, {""}, + {"analysisOffsets",300}, + {""}, + {"horizontalCoordinateSupplement",932}, + {"waveDomain",2347}, + {""}, {""}, {""}, + {"yearOfForecast",2402}, + {""}, {""}, + {"latitudeOfCentrePoint",1061}, + {""}, {""}, + {"offsetSection0",1507}, + {""}, {""}, + {"coefsSecond",550}, + {"offsetSection9",1518}, + {"truncateLaplacian",2213}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetSection6",1515}, + {""}, + {"rdbDateTime",1751}, + {"iIncrement",950}, + {""}, {""}, + {"LaD",105}, + {"logTransform",1162}, + {""}, + {"gg",892}, + {""}, + {"runwayState",1869}, + {""}, + {"anoffsetFirst",308}, + {""}, {""}, {""}, + {"aerosolpacking",297}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"ensembleSize",764}, + {""}, {""}, {""}, {""}, {""}, + {"optimizeScaleFactor",1539}, + {""}, {""}, {""}, + {"Nr",196}, + {""}, {""}, {""}, + {"Ni",194}, + {""}, {""}, + {"startTimeStep",2094}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"flag",855}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"oldSubtype",1521}, + {""}, {""}, {""}, {""}, + {"hourOfForecast",939}, + {""}, {""}, {""}, {""}, + {"dx",707}, + {"JS",95}, + {""}, {""}, {""}, + {"lengthDescriptors",1095}, + {""}, + {"latitudeSexagesimal",1083}, + {"max",1250}, + {"localFlag",1138}, + {"visibility",2338}, + {"referenceDate",1777}, + {"horizontalCoordinateDefinition",931}, + {"marsStartStep",1229}, + {"freeFormData",875}, + {""}, {""}, {""}, {""}, + {"monthOfForecast",1314}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetSection8",1517}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"representationType",1791}, + {""}, {""}, + {"perturbedType",1663}, + {"parameterName",1642}, + {""}, + {"modelIdentifier",1306}, + {""}, {""}, {""}, + {"marsLevel",1222}, + {"reservedOctet",1798}, + {"indexingTime",967}, + {""}, {""}, {""}, + {"offsetDescriptors",1501}, + {""}, + {"suiteName",2130}, + {""}, {""}, {""}, + {"topLevel",2190}, + {"Ny",202}, + {""}, {""}, + {"modelName",1307}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"shortName",2035}, + {""}, {""}, {""}, + {"expoffset",789}, + {"clearTables",422}, + {"originalSubCentreIdentifier",1549}, + {"decimalScaleFactor",660}, + {""}, {""}, {""}, {""}, {""}, + {"validityDate",2305}, + {"global",893}, + {""}, {""}, + {"Dx",40}, + {""}, {""}, {""}, {""}, {""}, {""}, {"Ncy",192}, {""}, {""}, {""}, {""}, {""}, + {"latitudesList",1087}, + {"pressureLevel",1702}, + {""}, {""}, {""}, {"NT",186}, - {"overlayTemplateNumber",1538}, - {""}, + {""}, {""}, {""}, {"Nuy",200}, {""}, {""}, {""}, {""}, - {"matchLandType",1232}, - {""}, {""}, - {"setLocalDefinition",2011}, - {""}, {""}, - {"marsEndStep",1199}, - {"pressureLevel",1685}, + {"overlayTemplateNumber",1555}, {""}, - {"scaledDirections",1880}, - {"typeOfStatisticalPostProcessingOfEnsembleMembers",2223}, - {""}, {""}, - {"atmosphericChemicalOrPhysicalConstituentType",312}, - {""}, {""}, {""}, - {"defaultStepUnits",664}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudesList",1077}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"editionNumber",716}, + {"anoffsetFrequency",309}, + {"setLocalDefinition",2030}, {""}, - {"gridName",906}, - {""}, {""}, - {"integerScalingFactorAppliedToDirections",980}, - {"integerScalingFactorAppliedToFrequencies",981}, + {"marsKeywords",1218}, {""}, - {"observedData",1464}, - {""}, {""}, {""}, - {"optimizeScaleFactor",1522}, - {"rdbSubtype",1734}, - {"Nassigned",189}, - {""}, {""}, {""}, {""}, - {"dx",703}, - {""}, {""}, {""}, - {"indexTemplate",958}, + {"referenceStep",1784}, {""}, {""}, - {"horizontalCoordinateSupplement",928}, - {"max",1237}, - {"centreForLocal",398}, - {"latitudeOfCentrePointInDegrees",1052}, - {""}, {""}, {""}, - {"numberOfDirections",1375}, - {"cfName",403}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"xLast",2390}, {""}, {""}, - {"numberOfDiamonds",1374}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"xLast",2368}, + {"editionNumber",720}, + {""}, + {"dataLength",625}, + {"atmosphericChemicalOrPhysicalConstituentType",313}, + {"marsLatitude",1221}, + {""}, + {"siteLatitude",2047}, {""}, {"ccccIdentifiers",382}, - {""}, - {"sectionNumber",1983}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfStatisticalProcessing",2224}, - {""}, - {"numberOfTimeSteps",1445}, - {"energyNorm",756}, - {"numberingOrderOfDiamonds",1457}, - {""}, {""}, {""}, {""}, {""}, - {"listOfScaledFrequencies",1116}, - {""}, {""}, {""}, {""}, {""}, - {"horizontalCoordinateDefinition",927}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"generatingProcessIdentifier",884}, - {"iteratorDisableUnrotate",1021}, {""}, {""}, {""}, - {"preferLocalConcepts",1664}, + {"instrumentIdentifier",982}, + {""}, {""}, {""}, {""}, + {"generatingProcessTemplate",889}, + {""}, {""}, {""}, {""}, + {"Xo",267}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"matchLandType",1245}, + {""}, {""}, {""}, {""}, {""}, + {"boustrophedonic",369}, {""}, + {"typeOfStatisticalPostProcessingOfEnsembleMembers",2245}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Xp",268}, + {""}, {""}, {""}, {""}, + {"sectionNumber",2002}, + {""}, {""}, + {"numberOfFloats",1400}, + {""}, + {"computeStatistics",556}, + {""}, {""}, {""}, + {"centreForLocal",398}, + {""}, + {"incrementOfLengths",962}, + {""}, {""}, {""}, {""}, {"climateDateFrom",423}, - {""}, {""}, {""}, {""}, - {"templatesLocalDir",2133}, - {"gridDefinitionDescription",902}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"lcwfvSuiteName",1079}, - {"Dx",40}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfSubsets",1442}, - {"gridDefinitionSection",903}, - {""}, {""}, {""}, - {"ccsdsRsi",386}, - {""}, {""}, - {"Nf",193}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfFrequencies",1391}, - {""}, {""}, - {"userTimeEnd",2278}, - {""}, {""}, {""}, {""}, {""}, - {"generatingProcessIdentificationNumber",883}, - {""}, {""}, {""}, - {"userDateEnd",2274}, - {""}, {""}, {""}, - {"distinctLatitudes",691}, - {""}, {""}, {""}, {""}, {""}, - {"typeOfLevel",2213}, - {""}, {""}, {""}, - {"longitudeSexagesimal",1180}, - {""}, {""}, {""}, - {"siteElevation",2026}, + {"indexTemplate",963}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetSection0",1490}, - {"clusterNumber",537}, - {"quantile",1723}, - {""}, - {"endOfInterval",745}, - {""}, - {"userDateTimeEnd",2276}, - {"partitionItems",1630}, + {"localDefinition",1134}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"lowerLimit",1196}, + {"integerScaleFactor",985}, {""}, {""}, - {"sequences",2007}, - {""}, {""}, {""}, - {"forecastLeadTime",859}, - {""}, {""}, {""}, - {"bufrTemplate",373}, + {"gridName",910}, + {""}, + {"cfName",403}, {""}, {""}, {""}, {""}, - {"marsRange",1215}, + {"integerScalingFactorAppliedToDirections",986}, + {"integerScalingFactorAppliedToFrequencies",987}, + {""}, {""}, {""}, + {"Nassigned",189}, {""}, - {"qfe",1713}, + {"preferLocalConcepts",1681}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"scaledDirections",1898}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"secondOfForecast",1938}, + {""}, {""}, + {"gridDefinition",905}, + {"minuteOfForecast",1290}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"latitudeOfCentrePointInDegrees",1062}, + {""}, {""}, {""}, {""}, + {"J",94}, + {""}, + {"energyNorm",760}, + {""}, {""}, {""}, {""}, + {"clusterNumber",537}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"subcentreOfAnalysis",2128}, + {""}, {"channelNumber",416}, {""}, {""}, - {"referenceSampleInterval",1765}, + {"newSubtype",1336}, {""}, - {"satelliteIdentifier",1854}, - {""}, {""}, - {"indexingDate",961}, - {""}, {""}, {""}, - {"stretchingFactor",2094}, - {"bottomLevel",367}, - {"stepRange",2085}, - {"qnh",1716}, - {""}, {""}, {""}, - {"defaultName",660}, - {"K",96}, + {"templatesLocalDir",2153}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"listOfScaledFrequencies",1126}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"longitudinalDirectionGridLength",1183}, - {"modeNumber",1289}, - {""}, {""}, - {"J",94}, - {""}, {""}, - {"faFieldName",831}, - {""}, {""}, - {"numberOfForcasts",1386}, {""}, {""}, {""}, {""}, - {"diffInDays",678}, + {"typeOfStatisticalProcessing",2246}, + {""}, {""}, {""}, + {"rdbSubtype",1752}, {""}, {""}, {""}, {""}, {""}, - {"typeOfDistributionFunction",2204}, - {""}, {""}, {""}, {""}, {""}, - {"heightLevelName",923}, - {"groupSplitting",912}, - {""}, {""}, {""}, {""}, {""}, - {"conceptsLocalDirAll",560}, - {""}, - {"masterTableNumber",1227}, - {""}, {""}, {""}, {""}, {""}, - {"listOfDistributionFunctionParameter",1112}, - {"numberOfOperationalForecastTube",1411}, + {"observedData",1481}, + {"lcwfvSuiteName",1089}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"crraSection",616}, - {""}, - {"upperRange",2271}, - {"rectimeSecond",1755}, {""}, {""}, - {"numberOfSection",1438}, - {""}, {""}, - {"stretchingFactorScaled",2095}, - {"optimisationTime",1521}, - {""}, {""}, - {"offsetFreeFormData",1486}, - {"diagnosticNumber",677}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"northernLatitudeOfDomain",1334}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"localDefinitionNumber",1125}, + {"numberOfDirections",1390}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfDiamonds",1389}, {""}, - {"DiInDegrees",33}, + {"generatingProcessIdentifier",888}, + {"ccsdsRsi",386}, + {""}, {""}, {""}, + {"stretchingFactor",2113}, + {""}, + {"quantile",1740}, + {""}, + {"satelliteIdentifier",1872}, + {""}, + {"sequences",2026}, + {""}, {""}, + {"qnh",1733}, + {""}, + {"Nf",193}, + {""}, {""}, + {"heightLevelName",927}, + {""}, {""}, {""}, + {"numberOfTimeSteps",1462}, + {""}, {""}, + {"faFieldName",835}, + {""}, {""}, {""}, + {"typeOfLevel",2235}, + {"referenceSampleInterval",1783}, + {""}, {""}, {""}, + {"defaultName",664}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endOfInterval",749}, + {""}, {""}, + {"longitudeSexagesimal",1192}, + {"referenceOfLengths",1780}, + {"distinctLatitudes",695}, + {"generatingProcessIdentificationNumber",887}, + {""}, {""}, + {"partitionItems",1647}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfSubsets",1458}, + {""}, {""}, {""}, + {"longitudinalDirectionGridLength",1195}, + {""}, {""}, + {"bottomLevel",368}, + {""}, {""}, {""}, {""}, {""}, + {"forecastLeadTime",863}, + {""}, {""}, {""}, {""}, {""}, + {"stretchingFactorScaled",2114}, + {"levTypeName",1105}, + {""}, + {"qfe",1730}, + {""}, {""}, {""}, {""}, {""}, + {"indexingDate",966}, {"FirstLatitude",68}, {""}, - {"marsLevelist",1210}, + {"conceptsLocalDirAll",560}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"levTypeName",1095}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"totalNumber",2174}, {""}, - {"typeOfEnsembleForecast",2205}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"southernLatitudeOfDomain",2048}, - {"expandedDescriptors",773}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"matchTimeRepres",1234}, + {"crraSection",616}, + {""}, {""}, + {"rectimeSecond",1773}, + {""}, {""}, {""}, + {"optimisationTime",1538}, + {"diagnosticNumber",681}, + {"diffInDays",682}, {""}, - {"numberOfForecastsInTube",1390}, - {"DyInDegrees",44}, + {"numberOfFrequencies",1407}, + {""}, {""}, {""}, + {"modeNumber",1303}, + {"gridDefinitionDescription",906}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetSection6",1498}, - {""}, {""}, {""}, {""}, - {"stepTypeInternal",2089}, - {"marsKeywords",1205}, - {""}, - {"anoffsetLast",309}, - {""}, {""}, {""}, {""}, - {"periodOfTimeIntervals",1644}, - {"secondOrderFlags",1922}, - {""}, {""}, {""}, {""}, - {"secondLatitude",1917}, - {""}, - {"endOfRange",748}, - {""}, {""}, - {"powerOfTenUsedToScaleClimateWeight",1657}, - {""}, - {"longitudeOfCentrePointInDegrees",1156}, - {""}, - {"typicalSecond",2235}, - {""}, {""}, {""}, - {"frequency",872}, - {""}, - {"localSection",1141}, - {"firstLatitude",846}, - {""}, {""}, - {"secondDimension",1914}, - {"levelIndicator",1097}, - {""}, {""}, - {"extractSubset",819}, - {"molarMass",1296}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"marsLongitude",1211}, - {""}, - {"siteLongitude",2029}, - {"longitudeOfFirstGridPoint",1160}, - {"localLatitude",1131}, - {""}, - {"Adelta",13}, - {""}, - {"systemNumber",2118}, - {""}, {""}, {""}, {""}, - {"ensembleForecastNumbers",758}, - {""}, {""}, {""}, - {"isAuto",988}, - {""}, {""}, {""}, - {"expandedNames",774}, - {""}, {""}, - {"legNumber",1083}, + {"gridDefinitionSection",907}, {""}, {""}, {""}, {""}, {""}, - {"Nb",190}, - {""}, {""}, {""}, {""}, - {"orderOfSpatialDifferencing",1526}, - {""}, {""}, - {"missingDataFlag",1282}, - {""}, - {"methodNumber",1270}, - {""}, {""}, {""}, - {"marsModel",1212}, - {""}, {""}, {""}, - {"widthOfFirstOrderValues",2331}, + {"offsetFreeFormData",1503}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"multiplicationFactorForLatLong",1307}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"observablePropertyTemplate",1459}, {"Lx",149}, - {""}, - {"defaultFaFieldName",657}, + {"DiInDegrees",33}, {""}, {""}, - {"marsExpver",1201}, - {""}, {""}, {""}, {""}, {""}, - {"createNewData",614}, - {"SecondLatitude",223}, - {""}, - {"marsExperimentOffset",1200}, - {""}, - {"productDefinition",1698}, - {""}, {""}, {""}, {""}, {""}, - {"N",169}, - {""}, {""}, - {"TAFstr",230}, - {"lowerRange",1185}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"binaryScaleFactor",359}, - {""}, {""}, {""}, - {"MS",156}, - {""}, {""}, - {"addressOfFileFreeSpaceInfo",293}, - {""}, {""}, {""}, - {"numberOfIterations",1399}, - {""}, {""}, {""}, - {"deleteExtraLocalSection",671}, - {"Lcx",118}, - {"sizeOfOffsets",2031}, - {""}, {""}, - {"earthMinorAxis",708}, - {"rdbtimeSecond",1743}, - {""}, {""}, {""}, - {"Lux",145}, - {"observablePropertyTemplateNumber",1460}, - {""}, {""}, - {"unitOfOffsetFromReferenceTime",2244}, - {""}, {""}, {""}, {""}, - {"minuteOfReference",1279}, - {""}, - {"oneMillionConstant",1507}, - {"tiggeSection",2149}, - {""}, {""}, - {"dataAccessors",620}, - {"numberOfLocalDefinitions",1400}, - {""}, {""}, {""}, - {"TAF",229}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"indicatorOfUnitOfTimeRange",967}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"coordinate3Flag",584}, - {""}, {""}, {""}, - {"earthIsOblate",705}, {""}, - {"biFourierTruncationType",358}, - {""}, {""}, - {"tubeNumber",2196}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"dateOfReference",643}, - {""}, {""}, {""}, {""}, - {"timeOfReference",2164}, - {"theMessage",2136}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"bufrDataEncoded",370}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"clutterFilterIndicator",541}, - {""}, {""}, {""}, - {"clusterMember9",536}, + {"extractSubset",823}, + {""}, + {"masterTableNumber",1240}, + {"expandedNames",778}, + {""}, + {"marsRange",1228}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"spectralDataRepresentationMode",2061}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"stepRange",2104}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"marsLevelist",1223}, + {""}, + {"Lcx",118}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"DyInDegrees",44}, + {"northernLatitudeOfDomain",1349}, + {""}, + {"numberingOrderOfDiamonds",1474}, + {"numberOfForcasts",1401}, + {"typeOfDistributionFunction",2226}, + {""}, + {"Lux",145}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"bufrTemplate",374}, + {""}, {""}, {""}, + {"expandedDescriptors",777}, + {"localLatitude",1141}, + {""}, {""}, + {"listOfDistributionFunctionParameter",1122}, + {""}, {""}, {""}, {""}, + {"matchTimeRepres",1247}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"generatingProcessTemplateNumber",886}, - {""}, {""}, - {"northLatitudeOfCluster",1327}, - {""}, {""}, - {"verificationDate",2298}, - {"yearOfReference",2382}, + {"secondDimension",1932}, + {""}, + {"periodOfTimeIntervals",1661}, + {"typicalSecond",2257}, + {""}, + {"localSection",1151}, + {""}, + {"totalNumber",2195}, + {""}, {""}, {""}, + {"upperRange",2293}, + {""}, {""}, {""}, + {"secondLatitude",1935}, + {""}, + {"secondOrderFlags",1941}, {""}, {""}, {""}, {""}, - {"localMinute",1137}, - {""}, {""}, {""}, {""}, {""}, - {"iterationNumber",1020}, - {"thisMarsType",2140}, - {"tableNumber",2122}, + {"numberOfOperationalForecastTube",1427}, {""}, {""}, {""}, - {"dimensionNumber",681}, - {"numberOfDistinctSection9s",1382}, - {"oceanLevName",1467}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"parameterNumber",1626}, - {"partitionNumber",1631}, + {"firstLatitude",850}, + {""}, {""}, {""}, + {"stepTypeInternal",2108}, + {"southernLatitudeOfDomain",2067}, {""}, - {"spectralDataRepresentationType",2062}, - {""}, {""}, {""}, - {"unitsOfFirstFixedSurface",2256}, + {"defaultFaFieldName",661}, + {""}, + {"levelIndicator",1107}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"localMonth",1138}, - {"memberNumber",1266}, - {"localLongitude",1134}, - {""}, - {"operatingMode",1519}, - {""}, {""}, {""}, {""}, {""}, - {"simpleThinningSkip",2024}, - {""}, - {"representationMode",1772}, - {"directionNumber",684}, - {""}, {""}, - {"thisMarsStream",2139}, - {""}, {""}, - {"yDirectionGridLength",2371}, - {"angleMultiplier",301}, - {"southLatitudeOfCluster",2044}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfCentrePointInDegrees",1168}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"marsLongitude",1224}, + {"frequency",876}, + {"siteLongitude",2048}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"systemNumber",2137}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"methodNumber",1283}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"localDefinitionNumber",1135}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"N",169}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"groupSplitting",916}, + {""}, {""}, {""}, + {"SecondLatitude",223}, + {""}, {""}, + {"binaryScaleFactor",360}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"tileIndex",2174}, + {""}, {""}, {""}, {""}, {""}, + {"isEps",1003}, + {""}, {""}, {""}, {"Nx",201}, - {"unsignedIntegers",2263}, - {""}, {""}, {""}, {""}, {""}, - {"spectralMode",2063}, - {"eastLongitudeOfCluster",710}, - {"subSetK",2107}, + {"anoffsetLast",310}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"addressOfFileFreeSpaceInfo",294}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfDistinctSection8s",1381}, - {""}, - {"corr2Data",596}, - {""}, - {"scaleFactorOfFirstSize",1864}, - {"angleOfRotation",302}, - {""}, {""}, {""}, - {"subSetJ",2106}, - {"hourOfReference",937}, - {""}, - {"tileIndex",2154}, - {""}, - {"NL",182}, - {""}, - {"corr4Data",598}, - {"defaultShortName",663}, - {"iDirectionIncrement",941}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"computeLaplacianOperator",555}, - {"dataValues",636}, - {"clusterMember8",535}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"productDefinition",1715}, + {""}, {""}, {""}, {""}, {""}, + {"legNumber",1093}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"observablePropertyTemplate",1476}, {"Ncx",191}, - {"DxInDegrees",41}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Nux",199}, - {""}, - {"monthOfReference",1302}, - {"Azi",15}, {""}, {""}, - {"climatologicalRegime",425}, + {"numberOfForecastsInTube",1405}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"yDirectionGridLength",2393}, + {""}, {""}, + {"Nux",199}, + {"numberOfSection",1454}, + {""}, {""}, {""}, {""}, + {"multiplicationFactorForLatLong",1322}, + {""}, + {"oceanLevName",1484}, + {""}, {""}, + {"missingDataFlag",1296}, + {"Nb",190}, + {""}, + {"defaultStepUnits",668}, {""}, {""}, {""}, {""}, {""}, {""}, - {"doExtractDateTime",694}, - {"satelliteNumber",1855}, - {"tiggeModel",2148}, + {"longitudeOfFirstGridPoint",1172}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"endOfRange",752}, + {"biFourierTruncationType",359}, + {"observablePropertyTemplateNumber",1477}, + {"ensembleForecastNumbers",762}, + {""}, {""}, {""}, {""}, + {"rdbtimeSecond",1761}, + {""}, + {"iterationNumber",1028}, + {""}, {""}, {""}, {""}, {""}, + {"dimensionNumber",685}, + {""}, {""}, {""}, + {"numberOfIterations",1415}, + {""}, {""}, {""}, + {"verificationDate",2320}, + {"parameterNumber",1643}, + {"partitionNumber",1648}, + {""}, + {"marsEndStep",1212}, + {"sizeOfOffsets",2050}, + {""}, {""}, {""}, + {"unitsOfFirstFixedSurface",2278}, + {""}, {""}, {""}, {""}, + {"molarMass",1310}, + {"northLatitudeOfCluster",1342}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"directionNumber",688}, + {""}, {""}, {""}, {""}, + {"clutterFilterIndicator",541}, + {""}, {""}, {""}, {""}, + {"DxInDegrees",41}, + {"localDefNumberTwo",1133}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"tiggeSection",2169}, + {""}, {""}, {""}, + {"generatingProcessTemplateNumber",890}, + {""}, {""}, {""}, {""}, + {"section_09",2012}, + {"is_uerra",1022}, + {""}, {""}, {""}, + {"subSetJ",2125}, + {""}, + {"section_6",2020}, + {""}, {""}, + {"section_06",2009}, + {"marsModel",1225}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"createNewData",614}, + {""}, {""}, + {"secondOfForecastUsedInLocalTime",1939}, + {""}, {""}, {""}, + {"minuteOfForecastUsedInLocalTime",1291}, + {""}, {""}, {""}, {""}, + {"southLatitudeOfCluster",2063}, + {""}, + {"widthOfFirstOrderValues",2353}, + {""}, {""}, {""}, + {"short_name",2038}, + {"tubeNumber",2218}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"simpleThinningSkip",2043}, + {""}, {""}, {""}, + {"minuteOfReference",1293}, + {""}, {""}, {""}, + {"dataValues",636}, + {""}, {""}, {""}, + {"orderOfSpatialDifferencing",1543}, + {"localLongitude",1144}, + {""}, + {"iteratorDisableUnrotate",1029}, + {"lowerRange",1197}, + {""}, {""}, {""}, + {"NL",182}, + {"_T",283}, + {"satelliteNumber",1873}, + {""}, {""}, + {"scaleFactorOfFirstSize",1882}, + {""}, {""}, {""}, {""}, {""}, + {"earthIsOblate",709}, + {"oneMillionConstant",1524}, + {""}, + {"MS",156}, + {""}, + {"computeLaplacianOperator",555}, + {""}, + {"dateOfReference",644}, + {"iDirectionIncrement",946}, + {"numberOfLocalDefinitions",1416}, + {""}, {""}, + {"timeOfReference",2185}, + {"_endStep",286}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"siteElevation",2045}, + {"faLevelName",836}, + {"cnmc_isac",543}, + {"scaledFrequencies",1899}, + {"tableNumber",2141}, + {"is_aerosol",1011}, + {""}, {""}, {""}, {""}, + {"section_8",2022}, + {""}, {""}, + {"section_08",2011}, + {""}, + {"timeIncrement",2179}, + {""}, + {"indexTemplateNumber",964}, + {""}, + {"spectralDataRepresentationMode",2080}, + {"memberNumber",1279}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"corr2Data",596}, + {"clusterMember9",536}, + {"earthMinorAxis",712}, + {""}, {""}, {""}, {""}, {""}, + {"yearOfReference",2405}, + {""}, {""}, + {"clusterMember6",533}, + {"eastLongitudeOfCluster",714}, + {""}, {""}, + {"userDateTimeEnd",2298}, + {"pvlLocation",1729}, + {""}, + {"scaleFactorOfStandardDeviation",1894}, + {"defaultShortName",667}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scanningMode",1905}, - {"indexTemplateNumber",959}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfInts",1398}, - {""}, - {"faLevelName",832}, - {"scaleFactorOfStandardDeviation",1876}, - {"inputExtendedDelayedDescriptorReplicationFactor",970}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"unitsOfSecondFixedSurface",2257}, - {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfStandardDeviationInTheCluster",1877}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"timeIncrement",2159}, - {"roundedMarsLevelist",1797}, - {""}, - {"extractedDateTimeNumberOfSubsets",824}, - {""}, {""}, - {"globalDomain",890}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"correction1Part",601}, - {"pvlLocation",1712}, - {""}, - {"identificationNumber",949}, - {""}, {""}, {""}, {""}, - {"sensitiveAreaDomain",2006}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"monthOfAnalysis",1298}, + {"scaleFactorOfStandardDeviationInTheCluster",1895}, + {"spectralDataRepresentationType",2081}, {""}, {""}, {""}, - {"numberOfEffectiveValues",1384}, + {"unsignedIntegers",2285}, + {""}, + {"defaultFaLevelName",662}, + {"is_efas",1016}, + {"charValues",418}, + {"cnmc_cmcc",542}, {""}, {""}, {""}, - {"streamOfAnalysis",2093}, - {"localDefNumberTwo",1123}, + {"localMinute",1147}, {""}, {"LaDInDegrees",106}, - {""}, - {"scaleFactorOfFirstFixedSurface",1863}, - {"defaultFaLevelName",658}, - {""}, {""}, {""}, {""}, {""}, - {"roundedMarsLongitude",1798}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfSecondSize",1874}, + {"unitOfOffsetFromReferenceTime",2266}, + {"thisMarsType",2160}, + {"local_use",1161}, + {"userTimeEnd",2300}, {""}, {""}, - {"biFourierMakeTemplate",351}, + {"is_chemical",1013}, {""}, - {"classOfAnalysis",421}, - {"charValues",418}, - {"verticalDomainTemplateNumber",2313}, - {""}, {""}, {""}, {""}, {""}, - {"roundedMarsLatitude",1796}, - {"corr3Data",597}, - {"baseAddress",324}, - {""}, - {"referenceValue",1767}, - {""}, {""}, {""}, {""}, {""}, - {"ensembleForecastNumbersList",759}, - {""}, - {"g2grid",879}, - {"startOfMessage",2071}, - {"minuteOfAnalysis",1275}, - {""}, {""}, {""}, {""}, - {"indicatorOfUnitForTimeIncrement",965}, + {"scaleFactorOfFirstFixedSurface",1881}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"localMonth",1148}, {""}, {""}, {""}, {""}, {""}, {""}, - {"secondDimensionPhysicalSignificance",1916}, - {""}, - {"numberOfRadials",1431}, - {""}, - {"angleSubdivisions",305}, + {"userDateEnd",2296}, {""}, {""}, - {"distanceFromTubeToEnsembleMean",690}, - {"scalingFactorForFrequencies",1903}, + {"verticalDomainTemplateNumber",2335}, {""}, - {"dateOfForecastRun",640}, - {""}, - {"simpleThinningStart",2025}, - {"corr1Data",595}, - {"marsParam",1213}, + {"identificationNumber",954}, + {"theMessage",2156}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledFrequencies",1881}, - {""}, - {"internalVersion",983}, - {""}, {""}, {""}, - {"unitOfTimeIncrement",2246}, - {""}, - {"iScansNegatively",946}, - {""}, - {"epsPoint",764}, - {"ensembleStandardDeviation",761}, + {"internalVersion",989}, {""}, {""}, - {"applicationIdentifier",310}, - {""}, {""}, {""}, {""}, - {"scanningMode8",1910}, + {"hourOfReference",942}, + {""}, + {"xDirectionGridLength",2386}, + {""}, + {"indicatorOfUnitForForecastTime",970}, + {"thisMarsStream",2159}, + {""}, + {"climatologicalRegime",425}, {""}, {""}, - {"tablesMasterDir",2125}, - {"typeOfTimeIncrement",2225}, - {"marsLamModel",1207}, + {"is_localtime",1017}, {""}, {""}, {""}, {""}, {""}, - {"representativeMember",1774}, - {""}, - {"floatVal",857}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"westLongitudeOfCluster",2327}, - {"isAccumulation",987}, - {""}, - {"numberOfDistinctSection6s",1379}, + {"_TS",284}, {""}, {""}, {""}, {""}, - {"realPart",1746}, - {"codedValues",548}, - {""}, {""}, {""}, - {"calendarIdPresent",375}, - {""}, {""}, {""}, {""}, - {"inputDelayedDescriptorReplicationFactor",969}, - {"dateOfAnalysis",638}, - {""}, {""}, {""}, {""}, - {"timeOfAnalysis",2161}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"minutesAfterDataCutoff",1280}, - {""}, {""}, + {"monthOfReference",1317}, {"II",89}, {""}, {""}, - {"latitudeLastInDegrees",1048}, + {"unitsOfSecondFixedSurface",2279}, + {"clusterMember8",535}, {""}, {""}, {""}, - {"dayOfAnalysis",649}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"yearOfAnalysis",2377}, - {"defaultSequence",662}, - {""}, {""}, {""}, - {"conceptsMasterDir",563}, + {"marsParam",1226}, {""}, - {"DiInMetres",34}, - {""}, {""}, {""}, {""}, {""}, - {"significanceOfReferenceTime",2022}, - {""}, {""}, {""}, {""}, - {"typeOfAnalysis",2200}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractSubsetList",822}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfIntegers",1397}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfOctetsExtraDescriptors",1410}, + {"referenceValue",1785}, + {""}, + {"codedValues",548}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"gts_header",923}, + {"epsPoint",768}, {""}, {""}, - {"boustrophedonicOrdering",369}, - {"ifsParam",954}, - {"rectimeMinute",1754}, + {"corr1Data",595}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extractSubsetList",826}, + {""}, + {"secondDimensionPhysicalSignificance",1934}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"calendarIdPresent",376}, {""}, {""}, {""}, - {"XR",265}, - {"tablesVersion",2126}, + {"realPart",1764}, + {"efas_model",721}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfSecondSize",1892}, {""}, {""}, {""}, {""}, - {"offsetAfterLocalSection",1474}, + {"defaultSequence",666}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfDistinctSection9s",1397}, + {""}, + {"globalDomain",894}, + {"floatVal",861}, + {""}, + {"numberOfDistinctSection6s",1394}, + {""}, {""}, + {"angleMultiplier",302}, + {""}, {""}, + {"spectralMode",2082}, + {"gts_ddhh00",922}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"coordinate3OfLastGridPoint",586}, + {""}, {""}, {""}, {""}, + {"extractedDateTimeNumberOfSubsets",828}, + {""}, {""}, {""}, {""}, + {"numberOfInts",1414}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"dateOfForecastRun",640}, + {""}, {""}, {""}, {""}, {""}, + {"scalingFactorForFrequencies",1921}, {""}, {""}, {""}, + {"_anoffset",285}, + {"latitudeLastInDegrees",1058}, + {"marsExpver",1214}, + {""}, {""}, {""}, + {"numberOfDistinctSection8s",1396}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"representationMode",1790}, + {""}, {""}, {""}, + {"operatingMode",1536}, + {""}, {""}, + {"startStepInHours",2093}, + {"groupLeafNodeK",914}, + {""}, {""}, {""}, + {"roundedMarsLevelist",1815}, + {""}, {""}, {""}, + {"unitOfTimeIncrement",2268}, + {""}, + {"ensembleStandardDeviation",765}, + {""}, + {"angleSubdivisions",306}, + {""}, + {"typeOfEnsembleForecast",2227}, + {""}, + {"angleOfRotation",303}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"unitsBias",2271}, + {"typeOfTimeIncrement",2247}, + {""}, {""}, + {"lengthIncrementForTheGroupLengths",1096}, + {""}, + {"numberInTheAuxiliaryArray",1356}, + {"applicationIdentifier",311}, + {""}, + {"simpleThinningStart",2044}, + {""}, + {"tigge_name",2171}, + {"is_tigge",1021}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"iScansNegatively",951}, + {""}, {""}, {""}, {""}, + {"numberOfForecastsUsedInLocalTime",1406}, + {"dirty_statistics",691}, + {""}, {""}, {""}, + {"g2grid",883}, + {""}, {""}, + {"ensembleForecastNumbersList",763}, + {""}, {""}, + {"ifsParam",959}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"marsExperimentOffset",1213}, + {"calendarIdentification",377}, + {""}, {""}, {""}, {""}, + {"accumulationInterval",289}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"primaryBitmap",1704}, + {""}, + {"inputDelayedDescriptorReplicationFactor",975}, + {"scanningMode",1923}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"tiggeModel",2168}, + {""}, + {"floatValues",862}, + {""}, {""}, {""}, {""}, + {"scanningMode6",1926}, + {""}, {""}, + {"deleteExtraLocalSection",675}, + {""}, + {"tablesVersion",2145}, + {""}, {""}, {""}, + {"numberOfTimeIncrementsOfForecastsUsedInLocalTime",1460}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"powerOfTenUsedToScaleClimateWeight",1674}, + {""}, {""}, {""}, {""}, + {"standardParallel",2086}, + {""}, {""}, + {"lengthOfIndexTemplate",1099}, + {""}, + {"ITN",93}, + {""}, {""}, + {"Adelta",13}, + {""}, {""}, {""}, {""}, {""}, + {"biFourierMakeTemplate",352}, + {""}, + {"stringValues",2115}, + {""}, {""}, {""}, + {"westLongitudeOfCluster",2349}, + {"isAuto",994}, + {""}, {""}, + {"SPD",222}, + {""}, {""}, {""}, {""}, {""}, + {"roundedMarsLongitude",1816}, + {""}, {""}, + {"marsLamModel",1220}, + {""}, {""}, {""}, {""}, + {"dataRepresentation",627}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"neitherPresent",1335}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfRadials",1447}, + {"sfc_levtype",2032}, + {""}, + {"numericValues",1475}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"numberOfRows",1452}, + {"treatmentOfMissingData",2209}, + {""}, + {"TAFstr",230}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"calendarIdentificationTemplateNumber",378}, + {""}, {""}, {""}, {""}, {""}, + {"standardParallelInDegrees",2087}, + {"scanningMode8",1928}, + {""}, {""}, + {"extraValues",796}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"TAF",229}, + {"correction3",604}, + {""}, {""}, + {"scaleFactorOfDistributionFunctionParameter",1878}, + {""}, + {"corr4Data",598}, + {""}, {""}, {""}, + {"representativeMember",1792}, + {""}, {""}, + {"tablesMasterDir",2144}, + {""}, {""}, {""}, {""}, + {"scaleFactorOfSecondFixedSurface",1891}, + {"roundedMarsLatitude",1814}, + {"versionNumOfFilesFreeSpaceStorage",2325}, + {"startOfMessage",2090}, + {""}, {""}, {""}, {""}, + {"DiInMetres",34}, + {"nameOfFirstFixedSurface",1331}, + {""}, {""}, + {"productDefinitionTemplateNumber",1716}, + {"forecastPeriod",866}, + {""}, {""}, {""}, {""}, {""}, + {"dataAccessors",620}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"corr3Data",597}, + {""}, {""}, {""}, + {"observationGeneratingProcessIdentifier",1479}, + {""}, + {"defaultParameter",665}, + {""}, {""}, {""}, {""}, + {"perturbationNumber",1662}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"significanceOfReferenceTime",2041}, + {""}, {""}, {""}, {""}, + {"longitudeOfFirstGridPointInDegrees",1173}, + {""}, {""}, + {"numberOfIntegers",1413}, + {""}, {""}, {""}, {""}, {""}, {"DyInMetres",45}, {""}, - {"xDirectionGridLength",2364}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"doExtractSubsets",695}, - {""}, {""}, {""}, - {"dataRepresentation",627}, - {""}, {""}, {""}, {""}, {""}, - {"calendarIdentification",376}, - {""}, {""}, {""}, {""}, - {"nameOfFirstFixedSurface",1316}, - {"numberOfDistributionFunctionParameters",1383}, - {"postAuxiliary",1655}, - {"lengthOfIndexTemplate",1089}, - {""}, {""}, {""}, {""}, - {"extractAreaWestLongitude",798}, - {""}, {""}, {""}, - {"radialAngularSpacing",1724}, + {"localTimeMethod",1157}, {""}, - {"hourOfAnalysis",933}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"internationalDataSubCategory",984}, + {"Azi",15}, {""}, - {"listMembersUsed",1107}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfFirstGridPointInDegrees",1161}, - {""}, {""}, - {"floatValues",858}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"lengthIncrementForTheGroupLengths",1086}, - {"scaleFactorOfSecondFixedSurface",1873}, - {""}, {""}, {""}, {""}, {""}, - {"numberInTheAuxiliaryArray",1341}, - {""}, - {"scaleFactorOfDistributionFunctionParameter",1860}, - {""}, {""}, - {"treatmentOfMissingData",2187}, - {""}, {""}, {""}, {""}, {""}, - {"accumulationInterval",288}, - {"parameterIndicator",1624}, - {"SPD",222}, - {""}, - {"NAT",172}, - {""}, - {"typeOfFirstFixedSurface",2207}, - {"stringValues",2096}, - {""}, {""}, - {"correction3",604}, - {"standardParallel",2067}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"typicalMinute",2233}, - {"perturbationNumber",1645}, - {""}, {""}, {""}, {""}, - {"ITN",93}, - {"gridDefinitionTemplateNumber",904}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfRows",1436}, - {"numberOfAnalysis",1345}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"productDefinitionTemplateNumber",1699}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"meaningOfVerticalCoordinate",1265}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"calendarIdentificationTemplateNumber",377}, - {"normAtInitialTime",1325}, - {""}, {""}, - {"numberOfModels",1408}, - {"coordinate3OfLastGridPoint",586}, - {"marsForecastMonth",1202}, + {"probPoint",1708}, {""}, {""}, {"dataRepresentationType",630}, - {"clusterMember6",533}, - {""}, - {"numberOfReservedBytes",1435}, - {""}, {""}, {""}, {""}, - {"addExtraLocalSection",291}, - {"standardParallelInDegrees",2068}, - {"probPoint",1691}, - {""}, - {"endOfFileAddress",743}, - {"indicatorOfUnitForTimeRange",966}, - {"offsetAfterPadding",1475}, - {""}, - {"defaultTypeOfLevel",665}, - {""}, {""}, {""}, {""}, - {"forecastPeriod",862}, {""}, {""}, {""}, {""}, {""}, - {"TIDE",231}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"defaultParameter",661}, - {""}, {""}, - {"dataRepresentationTemplate",628}, - {""}, {""}, - {"offsetAfterCentreLocalSection",1472}, - {"startingAzimuth",2076}, + {"libraryVersion",1112}, + {"correction1Part",601}, {""}, {""}, {""}, {""}, - {"aerosolbinnumber",295}, + {"typeOfFirstFixedSurface",2229}, {""}, - {"neitherPresent",1320}, - {"observationGeneratingProcessIdentifier",1462}, + {"parameterIndicator",1641}, {""}, {""}, {""}, - {"productDefinitionTemplateNumberInternal",1700}, - {"versionNumOfFilesFreeSpaceStorage",2303}, - {"monthlyVerificationTime",1305}, + {"rectimeMinute",1772}, + {"productDefinitionTemplateNumberInternal",1717}, + {"biFourierSubTruncationType",358}, + {""}, {""}, + {"numberOfDistributionFunctionParameters",1398}, + {"missingValue",1297}, + {"conceptsMasterDir",563}, + {"integerValues",988}, + {"meaningOfVerticalCoordinate",1278}, + {""}, {""}, {""}, {""}, {""}, + {"dataRepresentationTemplate",628}, + {"nameOfSecondFixedSurface",1332}, + {""}, + {"temperatureAndDewpointPresent",2152}, + {""}, + {"monthlyVerificationTime",1320}, + {""}, {""}, + {"forecastPeriodTo",868}, + {""}, {""}, {""}, {""}, + {"halfByte",924}, + {"indicatorOfUnitOfTimeRange",973}, + {""}, {""}, + {"boustrophedonicOrdering",370}, + {""}, {""}, {""}, + {"aerosolbinnumber",296}, + {""}, {""}, + {"forecastPeriodFrom",867}, + {"param_value_min",1636}, + {""}, {""}, {""}, + {"typeOfSizeInterval",2244}, + {"monthlyVerificationDate",1318}, + {""}, {""}, + {"defaultTypeOfLevel",669}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"originalParameterNumber",1547}, + {""}, {""}, + {"epsStatisticsPoint",770}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"secondsOfReference",1934}, + {"is_aerosol_optical",1012}, {""}, - {"libraryVersion",1102}, - {""}, {""}, - {"monthlyVerificationDate",1303}, - {""}, - {"productIdentifier",1701}, - {""}, - {"LaR",107}, - {""}, {""}, {""}, - {"localDefNumberOne",1122}, - {""}, {""}, - {"LoR",126}, - {""}, {""}, - {"dayOfEndOfOverallTimeInterval",650}, - {""}, - {"faModelName",833}, - {""}, - {"numberOfDataMatrices",1369}, - {"longitudeOfStretchingPole",1171}, - {""}, - {"sectionPosition",1984}, - {""}, {""}, {""}, - {"conceptsLocalMarsDirAll",562}, - {""}, - {"radiusInMetres",1727}, - {""}, {""}, - {"nameOfSecondFixedSurface",1317}, + {"md5Data",1252}, + {"internationalDataSubCategory",990}, {""}, {"dataRepresentationTemplateNumber",629}, - {""}, - {"numericValues",1458}, - {""}, - {"rdbtimeMinute",1741}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfForecastsInEnsemble",1388}, - {""}, - {"Experiment_Identifier",56}, - {""}, {""}, - {"groupSplittingMethodUsed",913}, - {"forecastPeriodTo",864}, - {""}, - {"orientationOfTheGrid",1527}, {""}, {""}, {""}, - {"listOfModelIdentifiers",1114}, - {""}, {""}, - {"clusterIdentifier",526}, - {""}, - {"longitudeFirstInDegrees",1152}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"biFourierSubTruncationType",357}, - {""}, {""}, - {"extraValues",792}, - {""}, {""}, - {"originalParameterNumber",1530}, - {""}, {""}, {""}, - {"centuryOfReference",401}, - {"epsStatisticsPoint",766}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"lengthOfMessage",1090}, - {""}, - {"angleOfRotationInDegrees",303}, - {""}, {""}, - {"grib2divider",894}, - {""}, - {"forecastPeriodFrom",863}, - {"temperatureAndDewpointPresent",2132}, - {""}, {""}, - {"typeOfSecondFixedSurface",2221}, - {""}, {""}, {""}, - {"missingValue",1283}, - {""}, - {"integerValues",982}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"thresholdIndicator",2144}, + {"sectionPosition",2003}, {""}, {""}, {""}, {""}, - {"conceptsLocalDirECMF",561}, - {""}, - {"orderOfSPD",1525}, - {""}, - {"totalNumberOfdimensions",2186}, - {""}, - {"expandedAbbreviations",768}, - {""}, {""}, {""}, - {"listOfEnsembleForecastNumbers",1113}, - {""}, {"coordinateIndexNumber",592}, - {"windPresent",2345}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"bitMapIndicator",360}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"M",153}, - {""}, {""}, - {"scanningMode6",1908}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"endDayTrend3",726}, - {"typeOfSizeInterval",2222}, + {"inputExtendedDelayedDescriptorReplicationFactor",976}, + {"typeOfSecondFixedSurface",2243}, {""}, - {"LyInMetres",152}, - {"falseNorthing",836}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"referenceReflectivityForEchoTop",1764}, - {""}, {""}, {""}, {""}, {""}, - {"dayOfReference",653}, - {"typeOfEnsembleMember",2206}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"extractSubsetIntervalEnd",820}, - {"windVariableDirection",2356}, - {""}, {""}, {""}, {""}, - {"DxInMetres",42}, + {"localDefNumberOne",1132}, + {"offsetSection10",1509}, {""}, {""}, - {"isConstant",994}, + {"productIdentifier",1718}, + {"bufrDataEncoded",371}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeFirstInDegrees",1164}, + {""}, {""}, + {"extractSubsetIntervalEnd",824}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"monthOfForecastUsedInLocalTime",1315}, + {"legBaseTime",1092}, + {""}, {""}, {""}, + {"numberInTheGridCoordinateList",1357}, + {"extractSubsetIntervalStart",825}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"gridDefinitionTemplateNumber",908}, + {""}, {""}, {""}, + {"numberOfReservedBytes",1451}, + {""}, + {"typicalMinute",2255}, + {""}, {""}, + {"orientationOfTheGrid",1544}, + {"legBaseDate",1091}, + {"expandBy",771}, + {"doExtractDateTime",698}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"clusterIdentifier",526}, + {""}, {""}, {""}, {""}, {""}, + {"md5Section9",1266}, + {""}, {""}, + {"secondsOfReference",1953}, + {"latLonValues",1055}, + {"LaR",107}, + {""}, {""}, {""}, + {"md5Section6",1263}, + {""}, {""}, + {"LoR",126}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"indicatorOfUnitForTimeIncrement",971}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"orderOfSPD",1542}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"cloudsTitle3",516}, - {""}, {""}, - {"extractSubsetIntervalStart",821}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"thresholdIndicator",2164}, + {""}, {""}, {""}, {""}, {""}, {"cfVarName",406}, - {""}, {""}, - {"totalNumberOfTubes",2184}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfDistanceFromEnsembleMean",1859}, - {""}, {""}, - {"inputDataPresentIndicator",968}, - {""}, {""}, {""}, {""}, {""}, - {"numberInTheGridCoordinateList",1342}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"driverInformationBlockAddress",698}, - {""}, - {"numberOfMembersInCluster",1402}, - {""}, - {"NR",184}, - {"totalNumberOfDirections",2177}, - {""}, {""}, {""}, {""}, - {"numberOfRemaininChars",1433}, - {""}, {""}, {""}, - {"latLonValues",1045}, - {""}, {""}, {""}, {""}, - {"changeDecimalPrecision",409}, - {""}, {""}, {""}, {""}, - {"numberOfModeOfDistribution",1407}, - {""}, - {"totalNumberOfFrequencies",2179}, - {""}, - {"dewPointTemperature",675}, - {""}, - {"grib3divider",895}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"marsClass",1194}, - {""}, - {"iDirectionIncrementInDegrees",944}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"bitmapSectionPresent",363}, - {""}, {""}, - {"numberOfVerticalPoints",1456}, - {"averagingPeriod",318}, - {""}, {""}, - {"defaultFaModelName",659}, - {"endOfProduct",747}, - {""}, - {"truncateDegrees",2190}, - {""}, - {"grib1divider",891}, - {""}, {""}, - {"numberOfMissing",1404}, - {""}, - {"tableReference",2123}, - {""}, {""}, {""}, {""}, - {"trueLengthOfLastGroup",2189}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetAfterBitmap",1471}, - {"clusteringMethod",540}, - {""}, - {"latitudeOfStretchingPole",1064}, - {"numberOfVerticalCoordinateValues",1454}, - {"julianDay",1029}, - {""}, {""}, {""}, - {"CDFstr",23}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"startStepInHours",2074}, - {""}, - {"referenceValueError",1768}, - {""}, - {"originatingCentre",1533}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"orientationOfTheGridInDegrees",1528}, - {""}, - {"changingPrecision",414}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfVerticalGridDescriptors",1455}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"verticalVisibility",2314}, - {"CDF",22}, - {"parameterCode",1622}, - {"angleOfRotationOfProjection",304}, - {""}, {""}, - {"numberOfValues",1453}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"correction4Part",607}, - {""}, - {"LcyInMetres",121}, - {""}, {""}, {""}, {""}, {""}, - {"doExtractArea",693}, - {"coordinate1Flag",579}, - {""}, - {"LuyInMetres",148}, - {"reservedNeedNotBePresent",1779}, - {""}, {""}, {""}, {""}, {""}, - {"isotopeIdentificationNumber",1018}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"typeOfIntervalForFirstAndSecondSize",2211}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"lengthOfProjectLocalTemplate",1092}, - {"oneConstant",1506}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"secondsOfAnalysis",1933}, - {"widthOfSPD",2333}, - {""}, {""}, {""}, {""}, {""}, - {"matrixOfValues",1236}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"directionScalingFactor",686}, - {""}, {""}, - {"is_uerra",1014}, - {"typeOfAuxiliaryInformation",2201}, - {""}, {""}, - {"centuryOfReferenceTimeOfData",402}, - {""}, {""}, {""}, - {"projString",1705}, - {"modelVersionTime",1295}, - {""}, {""}, - {"extraDimensionPresent",789}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"modelVersionDate",1294}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"yDirectionGridLengthInMetres",2372}, - {""}, {""}, - {"typeOfIntervalForFirstAndSecondWavelength",2212}, - {""}, - {"offsetSection10",1492}, - {""}, - {"extraLocalSectionPresent",791}, - {"numberOfMembersInEnsemble",1403}, - {""}, - {"tablesVersionLatest",2127}, - {""}, {""}, {""}, {""}, {""}, - {"isEPS",996}, - {"tileClassification",2153}, - {"predefined_grid",1662}, - {"scaleValuesBy",1879}, - {""}, {""}, {""}, {""}, - {"componentIndex",553}, - {"julianForecastDay",1030}, - {"short_name",2019}, - {"reservedSection3",1782}, - {""}, {""}, {""}, - {"numberOfPartitions",1415}, - {""}, {""}, - {"centuryOfAnalysis",400}, - {""}, {""}, {""}, - {"frequencyNumber",873}, - {"scaleFactorOfLowerLimit",1868}, - {""}, - {"scaleFactorOfRadiusOfSphericalEarth",1872}, - {""}, {""}, {""}, - {"_T",283}, - {""}, - {"scanningModeForOneDiamond",1911}, - {"verticalCoordinate",2310}, - {""}, {""}, - {"subCentre",2097}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"totalNumberOfTileAttributePairs",2183}, - {"targetCompressionRatio",2128}, - {""}, - {"extraLocalSectionNumber",790}, - {"tableCode",2121}, - {"additionalFlagPresent",292}, - {"simpleThinningMissingRadius",2023}, - {"LxInMetres",150}, - {""}, - {"numberOfOctectsForNumberOfPoints",1409}, - {"totalNumberOfForecastProbabilities",2178}, - {"iScansPositively",947}, - {""}, {""}, - {"isHindcast",999}, - {""}, {""}, {""}, - {"forecastMonth",860}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"is_aerosol",1005}, - {""}, {""}, {""}, - {"dataCategory",621}, - {""}, {""}, - {"scanPosition",1904}, - {""}, {""}, - {"is_efas",1009}, - {""}, {""}, - {"longitudeOfIcosahedronPole",1162}, - {""}, - {"md5Data",1239}, - {""}, - {"tiggeCentre",2145}, - {""}, {""}, {""}, - {"interpretationOfNumberOfPoints",985}, - {""}, - {"cnmc_isac",543}, - {""}, - {"longitudeOfLastGridPoint",1163}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"qnhPresent",1718}, - {""}, {""}, - {"laplacianScalingFactor",1041}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"yDirectionGridLengthInMillimetres",2373}, - {""}, {""}, {""}, {""}, {""}, - {"section_8",2003}, - {""}, {""}, {""}, - {"identificationOfProject",951}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"expandedOriginalWidths",778}, - {"complexPacking",552}, - {"expandedOriginalCodes",775}, - {""}, {""}, {""}, {""}, {""}, - {"verifyingMonth",2301}, - {"verticalCoordinateDefinition",2311}, - {""}, {""}, {""}, - {"subSetM",2108}, - {""}, {""}, - {"projectionCenterFlag",1709}, - {"groupLeafNodeK",910}, - {""}, - {"local_use",1149}, - {""}, - {"typeOfPostProcessing",2217}, - {"verificationMonth",2299}, - {""}, {""}, {""}, {""}, - {"typeOfCompressionUsed",2203}, - {""}, {""}, {""}, - {"section9Pointer",1979}, - {""}, {""}, {""}, - {"versionNumberOfGribLocalTables",2307}, - {"rectimeHour",1753}, - {"kurt",1035}, - {""}, - {"gts_header",919}, - {"qfePresent",1714}, - {""}, - {"cnmc_cmcc",542}, - {""}, {""}, - {"is_chemical",1007}, - {""}, {""}, {""}, {""}, - {"jIncrement",1026}, - {""}, - {"projectionCentreFlag",1710}, - {"md5Section9",1253}, - {""}, - {"functionCode",875}, - {""}, {""}, {""}, {""}, {""}, - {"n2",1310}, - {"_TS",284}, - {""}, {""}, {""}, {""}, {""}, - {"sampleSizeOfModelClimate",1852}, - {""}, {""}, {""}, {""}, {""}, - {"expandedOriginalScales",777}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"efas_model",717}, - {"section_09",1993}, - {""}, - {"kurtosis",1036}, - {"projectLocalTemplate",1707}, - {""}, {""}, {""}, {""}, - {"instrumentType",977}, - {""}, - {"sp2",2050}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"_anoffset",285}, - {"secondDimensionCoordinateValueDefinition",1915}, - {""}, - {"parameterCategory",1621}, - {""}, {""}, - {"spare2",2056}, - {""}, - {"section8Pointer",1976}, - {""}, {""}, {""}, - {"localHour",1130}, - {"XRInMetres",266}, + {"md5Section8",1265}, {""}, {"correction2Part",603}, - {""}, {""}, - {"tigge_name",2151}, - {"is_tigge",1013}, - {"consensusCount",566}, - {"longitudeOfStretchingPoleInDegrees",1172}, - {""}, - {"numberOfMissingInStatisticalProcess",1405}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"setCalendarId",2009}, - {"md5Section8",1252}, - {""}, - {"extendedFlag",787}, - {"spare4",2058}, - {""}, - {"numberOfDataValues",1372}, - {""}, {""}, - {"earthMinorAxisInMetres",709}, - {"averaging2Flag",317}, - {"keyData",1031}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"LcxInMetres",119}, - {""}, {""}, - {"mAngleMultiplier",1191}, - {""}, {""}, {""}, {""}, - {"timeDomainTemplate",2157}, - {"LuxInMetres",146}, - {"numberOfDistinctSection4s",1377}, - {""}, {""}, {""}, - {"keySat",1033}, - {""}, {""}, {""}, - {"typicalHour",2232}, - {""}, {""}, {""}, - {"secondLatitudeInDegrees",1918}, - {""}, - {"section4",1957}, - {""}, {""}, {""}, - {"totalNumberOfIterations",2181}, - {""}, - {"constantFieldHalfByte",569}, - {"climateDateTo",424}, - {""}, {""}, - {"dummy2",701}, - {""}, - {"centralLongitude",393}, + {"longitudeOfStretchingPole",1183}, {""}, {""}, {""}, {""}, {""}, - {"easternLongitudeOfDomain",713}, + {"sensitiveAreaDomain",2025}, {""}, {""}, - {"Lar2InDegrees",112}, - {"typeOfHorizontalLine",2210}, - {""}, {""}, {""}, {""}, {""}, - {"Lor2InDegrees",144}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"conceptsMasterMarsDir",564}, + {"changeDecimalPrecision",409}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"bufrdcExpandedDescriptors",374}, - {"epsContinous",763}, - {""}, {""}, {""}, {""}, {""}, - {"monthOfEndOfOverallTimeInterval",1299}, - {""}, {""}, {""}, - {"section_08",1992}, - {""}, {""}, {""}, - {"expandedOriginalReferences",776}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typicalDateTime",2230}, - {"marsType2",1223}, - {""}, {""}, {""}, {""}, - {"yearOfEndOfOverallTimeInterval",2379}, - {"decimalPrecision",655}, - {""}, {""}, {""}, {""}, {""}, - {"sphericalHarmonics",2065}, + {"doExtractSubsets",699}, {""}, - {"timeRangeIndicator",2165}, - {""}, {""}, - {"section0Pointer",1937}, + {"grib2divider",898}, + {""}, {""}, {""}, + {"centuryOfReference",401}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"xDirectionGridLengthInMetres",2365}, + {""}, {""}, {""}, {""}, {""}, + {"secondaryBitmap",1945}, + {""}, {""}, + {"is_chemical_distfn",1014}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"lsdate_bug",1201}, + {""}, {""}, {""}, + {"faModelName",837}, + {"lstime_bug",1202}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorAtReferencePoint",1857}, + {"isConstant",1000}, + {"conceptsLocalMarsDirAll",562}, + {""}, + {"inputDataPresentIndicator",974}, + {""}, + {"endDayTrend3",730}, + {""}, {""}, {""}, + {"totalNumberOfdimensions",2208}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"falseNorthing",840}, + {"bitmapSectionPresent",364}, + {""}, {""}, {""}, {""}, {""}, + {"marsForecastMonth",1215}, + {""}, {""}, {""}, {""}, + {"iDirectionIncrementInDegrees",949}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"DxInMetres",42}, + {""}, + {"averagingPeriod",319}, + {""}, {""}, {""}, {""}, + {"windVariableDirection",2378}, + {""}, + {"verticalVisibility",2336}, + {""}, + {"windPresent",2367}, + {""}, {""}, + {"conceptsLocalDirECMF",561}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"extraDimensionPresent",793}, + {"default_max_val",670}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"radiusInMetres",1745}, + {""}, + {"correction4Part",607}, + {"clusteringMethod",540}, + {""}, {""}, + {"marsClass",1207}, + {""}, {""}, + {"streamOfAnalysis",2112}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"distanceFromTubeToEnsembleMean",694}, + {""}, + {"matrixOfValues",1249}, + {""}, {""}, + {"totalNumberOfTubes",2206}, + {"grib1divider",895}, + {""}, + {"baseAddress",325}, + {""}, + {"extraLocalSectionPresent",795}, + {""}, + {"secondaryBitmapPresent",1946}, + {""}, {""}, + {"totalNumberOfFrequencies",2200}, + {""}, + {"dayOfReference",657}, + {"md5Structure",1267}, + {"rdbtimeMinute",1759}, + {"LyInMetres",152}, + {"componentIndex",553}, + {"numberOfModels",1424}, + {"NR",184}, + {""}, + {"numberOfEffectiveValues",1399}, + {""}, {""}, {""}, + {"CDFstr",23}, + {""}, {""}, {""}, {""}, {""}, + {"minuteOfAnalysis",1288}, + {"secondaryBitmaps",1947}, + {""}, {""}, {""}, {""}, {""}, + {"totalNumberOfQuantiles",2203}, + {""}, {""}, {""}, {""}, + {"scaleFactorOfLowerLimit",1886}, + {""}, {""}, {""}, + {"totalNumberOfDirections",2198}, + {""}, {""}, {""}, + {"CDF",22}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"monthOfAnalysis",1312}, + {"extraLocalSectionNumber",794}, + {""}, {""}, {""}, {""}, {""}, + {"changingPrecision",414}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"lengthOfMessage",1100}, + {""}, + {"truncateDegrees",2212}, + {""}, {""}, + {"secondaryBitmapsCount",1948}, + {"numberOfValues",1470}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"dewPointTemperature",679}, + {""}, {""}, {""}, + {"classOfAnalysis",421}, + {""}, {""}, {""}, + {"postAuxiliary",1672}, + {""}, {""}, {""}, {""}, {""}, + {"bitMapIndicator",361}, + {""}, {""}, + {"julianDay",1039}, + {""}, {""}, {""}, {""}, {""}, + {"modelVersionTime",1309}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"groupSplittingMethodUsed",917}, + {"tableReference",2142}, + {""}, {""}, + {"angleOfRotationInDegrees",304}, + {""}, + {"isAccumulation",993}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"dayOfAnalysis",652}, + {""}, + {"modelVersionDate",1308}, + {""}, {""}, + {"minutesAfterDataCutoff",1294}, + {""}, + {"orientationOfTheGridInDegrees",1545}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"listOfModelIdentifiers",1124}, + {"numberOfRemaininChars",1449}, + {"endOfProduct",751}, + {""}, + {"originatingCentre",1550}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"parameterCode",1639}, + {"offsetBeforeData",1498}, + {"BufrTemplate",20}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"trueLengthOfLastGroup",2211}, + {"dateOfAnalysis",638}, + {"startingAzimuth",2095}, + {""}, {""}, {""}, + {"timeOfAnalysis",2181}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfVerticalPoints",1473}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfDataMatrices",1384}, + {""}, {""}, {""}, {""}, + {"XR",265}, + {""}, {""}, {""}, {""}, + {"LcyInMetres",121}, + {"additionalFlagPresent",293}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"frequencyNumber",877}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfVerticalCoordinateValues",1471}, + {"LuyInMetres",148}, + {""}, {""}, {""}, {""}, {""}, + {"tileClassification",2173}, + {"md5TimeDomainSection",1268}, + {""}, + {"verticalCoordinate",2332}, + {""}, + {"yearOfAnalysis",2399}, + {""}, {""}, + {"defaultFaModelName",663}, + {""}, {""}, {""}, {""}, + {"lengthOfProjectLocalTemplate",1102}, + {"scanPosition",1922}, + {"latitudeOfStretchingPole",1074}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfChars",1356}, - {""}, - {"groupWidth",914}, - {""}, {""}, - {"reserved2",1777}, - {"expandedCodes",769}, - {""}, - {"scaledValueOfFirstSize",1888}, + {"typeOfAnalysis",2222}, + {"extractAreaWestLongitude",802}, {""}, {""}, {""}, - {"skewness",2035}, + {"qnhPresent",1735}, + {"addExtraLocalSection",292}, {""}, {""}, - {"minutesAfterReferenceTimeOfDataCutoff",1281}, - {""}, - {"md5Structure",1254}, - {""}, - {"isSatelliteType",1003}, - {"referenceOfWidths",1763}, - {""}, - {"X2",263}, + {"numberOfVerticalGridDescriptors",1472}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"NAT",172}, {""}, {""}, {""}, {""}, - {"unknown",2258}, - {""}, {""}, - {"rdbtimeHour",1740}, + {"secondaryBitmapsSize",1949}, {""}, + {"complexPacking",552}, + {""}, {""}, {""}, {""}, {""}, + {"widthOfSPD",2355}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"normAtInitialTime",1340}, + {""}, {""}, {""}, {""}, {""}, + {"directionScalingFactor",690}, + {"M",153}, + {"iScansPositively",952}, + {""}, + {"oneConstant",1523}, + {"numberOfMembersInCluster",1418}, + {""}, + {"isotopeIdentificationNumber",1026}, + {""}, {""}, + {"yDirectionGridLengthInMetres",2394}, + {""}, {""}, {""}, {""}, {""}, + {"hourOfAnalysis",937}, + {""}, {""}, + {"groupInternalNodeK",913}, + {""}, + {"section0Pointer",1956}, + {""}, + {"section9Pointer",1998}, + {"boot_edition",367}, + {""}, {""}, {""}, + {"section6Pointer",1987}, + {""}, {""}, {""}, {""}, {""}, + {"longitudeOfIcosahedronPole",1174}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetAfterLocalSection",1491}, + {"targetCompressionRatio",2148}, + {""}, + {"secondDimensionCoordinateValueDefinition",1933}, + {"tablesVersionLatest",2146}, + {""}, + {"offsetBSection9",1496}, + {"rangeBinSpacing",1750}, + {""}, + {"julianForecastDay",1040}, + {""}, + {"md5DataSection",1253}, + {""}, + {"tigge_short_name",2172}, + {"longitudeOfLastGridPoint",1175}, + {"verticalCoordinateDefinition",2333}, + {"offsetBSection6",1495}, + {"LxInMetres",150}, + {""}, {""}, + {"reservedSection3",1800}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"versionNumberOfGribLocalTables",2329}, + {"subCentre",2116}, + {""}, {""}, + {"section8Pointer",1995}, + {""}, {""}, {""}, {""}, {""}, + {"indicatorOfUnitForTimeRange",972}, + {""}, + {"tableCode",2140}, + {"grib3divider",899}, + {"quantileValue",1741}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"qfePresent",1731}, + {""}, {""}, + {"radialAngularSpacing",1742}, + {""}, {""}, {""}, {""}, + {"scaleFactorOfRadiusOfSphericalEarth",1890}, + {"listMembersUsed",1117}, + {""}, + {"centuryOfReferenceTimeOfData",402}, + {""}, {""}, {""}, {""}, + {"consensusCount",566}, + {""}, {""}, + {"numberOfMissing",1420}, + {""}, + {"cloudsTitle3Trend2",518}, + {""}, + {"projString",1722}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"expandedOriginalWidths",782}, + {""}, + {"expandedOriginalCodes",779}, + {""}, + {"yDirectionGridLengthInMillimetres",2395}, + {""}, {""}, {""}, + {"laplacianScalingFactor",1051}, + {"angleOfRotationOfProjection",305}, + {""}, {""}, {""}, + {"numberOfOctetsExtraDescriptors",1426}, + {""}, {""}, {""}, + {"totalNumberOfForecastProbabilities",2199}, + {"dataCategory",621}, + {""}, + {"tiggeCentre",2165}, + {""}, + {"offsetAfterCentreLocalSection",1489}, + {"numberOfPartitions",1431}, + {"numberOfAnalysis",1360}, + {""}, {""}, {""}, + {"param_value_max",1635}, + {"predefined_grid",1679}, + {""}, + {"stepRangeInHours",2105}, + {"sampleSizeOfModelClimate",1870}, + {""}, + {"totalNumberOfTileAttributePairs",2205}, + {""}, + {"typeOfPostProcessing",2239}, + {""}, {""}, {""}, {""}, + {"numberOfModeOfDistribution",1423}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"jIncrement",1034}, + {""}, {""}, {""}, {""}, + {"expandedAbbreviations",772}, + {""}, {""}, {""}, {""}, {""}, + {"epsContinous",767}, + {""}, + {"Experiment_Identifier",56}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"expandedOriginalScales",781}, + {""}, {""}, + {"typeOfCompressionUsed",2225}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endOfFileAddress",747}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"simpleThinningMissingRadius",2042}, + {"functionCode",879}, + {""}, {""}, {""}, {""}, + {"indexedStorageInternalNodeK",965}, + {""}, + {"setCalendarId",2028}, + {""}, {""}, {""}, {""}, + {"extendedFlag",791}, + {"n2",1325}, + {"offsetAfterPadding",1492}, + {""}, {""}, {""}, {""}, {""}, + {"is_s2s",1020}, + {"projectLocalTemplate",1724}, + {""}, + {"projectionCenterFlag",1726}, + {"LcxInMetres",119}, + {""}, + {"secondLatitudeInDegrees",1936}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsTitle3Trend1",517}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"LuxInMetres",146}, + {""}, + {"projectionCentreFlag",1727}, + {""}, {""}, {""}, {""}, + {"sp2",2069}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfDistanceFromEnsembleMean",1877}, + {""}, {""}, + {"spare2",2075}, + {"Lar2InDegrees",112}, + {""}, {""}, {""}, + {"listOfEnsembleForecastNumbers",1123}, + {"kurt",1045}, + {"numberOfOctectsForNumberOfPoints",1425}, + {"Lor2InDegrees",144}, + {""}, + {"decimalPrecision",659}, + {""}, + {"interpretationOfNumberOfPoints",991}, + {"tablesVersionLatestOfficial",2147}, + {""}, {""}, {"LoVInDegrees",128}, - {"centralLongitudeInDegrees",394}, - {""}, {""}, - {"numberOfDistinctSection3s",1376}, - {""}, - {"constituentType",570}, - {""}, {""}, {""}, {""}, - {"localNumberOfObservations",1139}, - {""}, - {"extractedAreaNumberOfSubsets",823}, - {"bitmapPresent",362}, - {""}, {""}, {""}, {""}, - {"latitudeOfStretchingPoleInDegrees",1065}, - {"originatorLocalTemplate",1535}, - {""}, - {"nosigPresent",1335}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"totalNumberOfRepetitions",2182}, - {""}, - {"predefined_grid_values",1663}, - {""}, - {"averaging1Flag",316}, - {"dirty_statistics",687}, - {""}, {""}, - {"hourOfEndOfOverallTimeInterval",934}, - {""}, - {"upperThreshold",2272}, {""}, {""}, {""}, - {"significanceOfReferenceDateAndTime",2021}, - {""}, {""}, - {"probContinous",1690}, + {"scaleFactorAtReferencePoint",1875}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"totalNumberOfIterations",2202}, + {"longitudeOfStretchingPoleInDegrees",1184}, {""}, - {"primaryMissingValue",1688}, - {""}, {""}, {""}, {""}, {""}, - {"section6Pointer",1968}, - {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfStandardDeviation",1900}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"centreForTable2",399}, + {"scanningModeForOneDiamond",1929}, + {""}, {""}, {""}, {""}, + {"driverInformationBlockAddress",702}, + {""}, + {"local_padding",1160}, + {""}, + {"verifyingMonth",2323}, + {"centralLongitude",393}, {""}, {""}, {""}, + {"forecastMonth",864}, + {""}, + {"dayOfEndOfOverallTimeInterval",653}, + {""}, {""}, {""}, + {"numberOfDataValues",1387}, + {"scaledValueOfFirstSize",1906}, + {"kurtosis",1046}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"expandedCodes",773}, + {"numberOfBits",1361}, + {""}, {""}, {""}, + {"xDirectionGridLengthInMetres",2387}, + {""}, {""}, {""}, + {"easternLongitudeOfDomain",717}, + {""}, {""}, {""}, + {"coordinate1Flag",579}, + {"dummy2",705}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"identificationOfProject",956}, + {""}, {""}, {""}, {""}, {""}, {"crraLocalVersion",615}, + {"parameterCategory",1638}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfMembersInEnsemble",1419}, + {"numberOfForecastsInEnsemble",1403}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"localSectionPresent",1152}, + {"averaging2Flag",318}, + {"referenceReflectivityForEchoTop",1782}, + {""}, {""}, {""}, + {"keyData",1041}, + {""}, {""}, + {"referenceValueError",1786}, {""}, - {"startOfHeaders",2070}, - {"scaledValueOfStandardDeviationInTheCluster",1901}, + {"expandedOriginalReferences",780}, + {"verificationMonth",2321}, + {""}, {""}, + {"scaledValueOfStandardDeviation",1918}, + {""}, {""}, {""}, + {"bitmapPresent",363}, + {"keySat",1043}, + {"section_10",2014}, + {""}, {""}, + {"heightOrPressureOfLevel",928}, {""}, - {"flagForAnyFurtherInformation",852}, - {"attributeOfTile",313}, + {"marsType2",1236}, + {"Lar1InDegrees",110}, + {""}, + {"scaledValueOfStandardDeviationInTheCluster",1919}, + {""}, {""}, {""}, {""}, + {"Lor1InDegrees",142}, + {""}, + {"earthMinorAxisInMetres",713}, + {"reserved2",1795}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"reservedNeedNotBePresent",1797}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfFirstFixedSurface",1905}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"probContinous",1707}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"centralLongitudeInDegrees",394}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"xDirectionGridLengthInMillimetres",2388}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"La1InDegrees",103}, + {""}, + {"numberOfDataBinsAlongRadials",1383}, + {""}, {""}, {""}, {""}, + {"Lo1InDegrees",124}, + {""}, {""}, {""}, + {"updateSequenceNumber",2291}, + {""}, {""}, + {"numberIncludedInAverage",1358}, + {""}, {""}, {""}, {""}, + {"scaleValuesBy",1897}, + {""}, {""}, + {"centreForTable2",399}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"yearOfCentury",2400}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"averaging1Flag",317}, + {"spatialProcessing",2078}, + {""}, {""}, {""}, {""}, + {"nosigPresent",1350}, + {""}, + {"numberOfMissingInStatisticalProcess",1421}, + {""}, {""}, {""}, + {"sp1",2068}, + {"operationalForecastCluster",1537}, + {""}, + {"clusterMember10",528}, + {"numberOfChars",1371}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"spare1",2074}, + {""}, + {"typeOfEnsembleMember",2228}, + {"isEPS",1002}, + {""}, {""}, {""}, + {"localNumberOfObservations",1149}, + {""}, + {"typeOfIntervalForFirstAndSecondSize",2233}, + {"scaledValueOfSecondSize",1916}, + {""}, {""}, {""}, {""}, + {"coordinate2Flag",582}, + {"centralClusterDefinition",392}, + {"timeRangeIndicator",2186}, + {""}, {""}, {""}, {""}, + {"upperThreshold",2294}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"efas_post_proc",722}, + {""}, + {"section1",1957}, + {""}, {""}, {""}, {""}, {"LIMITS",99}, {""}, {""}, - {"cloudsTitle3Trend2",518}, - {""}, {""}, {""}, - {"groupWidths",915}, - {""}, - {"md5Section6",1250}, - {""}, {""}, {""}, - {"Lar1InDegrees",110}, - {"xDirectionGridLengthInMillimetres",2366}, - {""}, - {"constituentTypeName",571}, {"cloudsTitle3Trend4",520}, - {"n3",1311}, - {"sfc_levtype",2013}, - {"Lor1InDegrees",142}, - {""}, {""}, - {"implementationDateOfModelCycle",956}, - {""}, {""}, - {"yearOfCentury",2378}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"correction1",600}, - {"centralClusterDefinition",392}, + {"latitudeOfFirstGridPoint",1063}, {""}, - {"operationalForecastCluster",1520}, - {"numberOfCharacters",1355}, - {"md5TimeDomainSection",1255}, - {"projectLocalTemplateNumber",1708}, - {""}, {""}, {""}, - {"spatialProcessing",2059}, - {""}, - {"scaledValueOfFirstFixedSurface",1887}, - {"heightOrPressureOfLevel",924}, - {""}, {""}, - {"sp3",2051}, - {""}, {""}, {""}, {""}, {""}, - {"localSectionPresent",1142}, - {""}, {""}, {""}, {""}, - {"marsStream1",1219}, - {"scaledValueOfSecondSize",1898}, - {"spare3",2057}, - {""}, - {"westernLongitudeOfDomain",2330}, - {""}, {""}, {""}, {""}, - {"typeOfOriginalFieldValues",2215}, - {""}, {""}, {""}, - {"monthOfModelVersion",1301}, - {""}, {""}, - {"is_aerosol_optical",1006}, - {"totalInitialConditions",2172}, - {""}, {""}, {""}, {""}, {""}, - {"coordinate1Start",580}, - {""}, {""}, {""}, {""}, - {"md5DataSection",1240}, - {""}, {""}, - {"groupInternalNodeK",909}, - {""}, {""}, {""}, - {"packingType",1542}, - {"messageLength",1267}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"La1InDegrees",103}, + {"totalInitialConditions",2193}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Lo1InDegrees",124}, - {"timeRangeIndicatorFromStepRange",2166}, - {""}, {""}, - {"southEastLongitudeOfVerficationArea",2043}, - {""}, - {"numberIncludedInAverage",1343}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"sp1",2049}, - {"section_6",2001}, - {"primaryMissingValueSubstitute",1689}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"isCorrection",995}, - {""}, - {"skew",2034}, - {""}, - {"spare1",2055}, - {""}, {""}, {""}, {""}, {""}, - {"minuteOfModelVersion",1278}, - {""}, - {"secondOfModelVersion",1921}, - {""}, {""}, {""}, - {"param_value_min",1619}, - {""}, {""}, - {"typicalCentury",2228}, - {"plusOneinOrdersOfSPD",1653}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"DELETE",25}, - {"La2",104}, - {"thisExperimentVersionNumber",2137}, - {"minuteOfEndOfOverallTimeInterval",1276}, - {"Lar2",111}, - {"secondOfEndOfOverallTimeInterval",1919}, - {""}, {""}, - {"Lo2",125}, - {""}, - {"Latin2",116}, - {"Lor2",143}, - {""}, {""}, {""}, {""}, - {"DjInDegrees",37}, - {""}, {""}, - {"section1",1938}, - {"cloudsTitle3Trend3",519}, - {"lsdate_bug",1189}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"updateSequenceNumber",2269}, - {"shapeOfTheEarth",2014}, - {"numberOfPoints",1416}, - {"startOfRange",2072}, - {""}, {""}, {""}, {""}, - {"standardParallelInMicrodegrees",2069}, - {""}, {""}, - {"biFourierCoefficients",350}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"conceptsDir1",558}, - {"is_chemical_distfn",1008}, - {""}, {""}, - {"table2Version",2120}, - {""}, {""}, {""}, {""}, - {"lowerThreshold",1186}, - {"dummy1",700}, - {"cloudsTitle3Trend1",517}, - {""}, - {"latitudeOfFirstGridPoint",1053}, - {""}, - {"LoV",127}, + {"latitudeOfStretchingPoleInDegrees",1075}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"lengthOfHeaders",1088}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"totalNumberOfRepetitions",2204}, + {"LoV",127}, + {"subSetM",2127}, {""}, - {"inputOriginatingCentre",971}, + {"typeOfAuxiliaryInformation",2223}, + {""}, {""}, + {"default_min_val",671}, + {""}, + {"dummy1",704}, + {""}, {""}, + {"cloudsTitle3Trend3",519}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"typeOfIntervalForFirstAndSecondWavelength",2234}, {""}, {""}, {""}, - {"stepRangeInHours",2086}, + {"primaryMissingValue",1705}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"typicalCentury",2250}, + {""}, {""}, + {"isCorrection",1001}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfCharacters",1370}, + {""}, + {"typeOfOriginalFieldValues",2237}, + {""}, {""}, + {"referenceOfWidths",1781}, + {""}, {""}, {""}, {""}, + {"skewness",2054}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"projectLocalTemplateNumber",1725}, + {""}, {""}, {""}, {""}, + {"unknown",2280}, + {""}, + {"TIDE",231}, + {""}, + {"preBitmapValues",1675}, + {""}, {""}, {""}, + {"mars_labeling",1237}, + {""}, + {"marsType1",1235}, + {""}, {""}, + {"patch_precip_fp",1655}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"reserved1",1794}, {""}, {"coordinate4Flag",587}, - {"numberOfColumns",1363}, - {""}, {""}, {""}, - {"forecastProbabilityNumber",865}, - {""}, {""}, {""}, {""}, - {"reserved3",1778}, {""}, - {"longitudeOfLastGridPointInDegrees",1164}, - {""}, - {"shapeOfVerificationArea",2015}, - {""}, {""}, {""}, - {"SecondOfModelVersion",224}, - {"monthlyVerificationMonth",1304}, - {""}, - {"paleontologicalOffset",1613}, - {"listOfContributingSpectralBands",1111}, - {"gridCoordinate",900}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"masterTablesVersionNumber",1228}, - {"longitudeOfNorthWestCornerOfArea",1165}, - {"marsType1",1222}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"missingValueManagement",1284}, - {"offsetSection2",1494}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"extremeClockwiseWindDirection",825}, - {""}, - {"bufrHeaderCentre",371}, - {""}, {""}, {""}, {""}, - {"shortNameECMF",2017}, - {""}, - {"timeCoordinateDefinition",2156}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"offsetSection4",1496}, - {""}, {""}, {""}, {""}, {""}, - {"endDayTrend1",724}, - {"numberOfForecastsInCluster",1387}, - {"reserved1",1776}, - {"extractDateTimeYearStart",818}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"X1",261}, - {""}, {""}, - {"windSpeedTrend2",2348}, - {""}, - {"default_max_val",666}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"cloudsTitle1",506}, - {""}, {""}, - {"P",206}, - {""}, - {"numberOfCategories",1354}, - {""}, {""}, {""}, {""}, - {"windDirectionTrend2",2337}, - {"scaledValueOfSecondFixedSurface",1897}, - {"localExtensionPadding",1127}, - {"section_06",1990}, - {""}, - {"windSpeedTrend4",2350}, - {""}, {""}, {""}, - {"scaledValueOfDistributionFunctionParameter",1884}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"northernLatitudeOfClusterDomain",1333}, - {"firstMonthUsedToBuildClimateMonth2",849}, - {""}, - {"matchAerosolPacking",1231}, - {"windDirectionTrend4",2339}, - {"clusterMember10",528}, - {""}, {""}, {""}, - {"versionNumOfRootGroupSymbolTableEntry",2304}, - {""}, - {"N2",171}, + {"secondsOfAnalysis",1952}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"widthOfLengths",2332}, - {""}, - {"section2Present",1950}, - {""}, - {"earthMajorAxis",706}, - {""}, {""}, {""}, {""}, - {"latitudeOfCentralPointInClusterDomain",1050}, - {""}, {""}, {""}, - {"originalParameterTableNumber",1531}, + {"masterTablesVersionNumber",1241}, {""}, {""}, - {"stepInHours",2084}, + {"longitudeOfLastGridPointInDegrees",1176}, {""}, - {"flagForIrregularGridCoordinateList",853}, + {"predefined_grid_values",1680}, + {"implementationDateOfModelCycle",961}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"default_step_units",672}, + {"P",206}, + {""}, {""}, + {"westernLongitudeOfDomain",2352}, + {""}, {""}, {""}, {""}, + {"is_ocean2d_param",1018}, + {""}, {""}, + {"La2",104}, + {""}, {""}, + {"Lar2",111}, + {"DjInDegrees",37}, + {""}, {""}, + {"Lo2",125}, + {"monthOfModelVersion",1316}, + {"Latin2",116}, + {"Lor2",143}, + {"timeDomainTemplate",2177}, + {""}, {""}, {""}, + {"instrumentType",983}, + {""}, {""}, {""}, + {"table2Version",2139}, + {""}, {""}, {""}, + {"isHindcast",1005}, + {""}, + {"climateDateTo",424}, + {"packingType",1559}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"modelErrorType",1291}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"subDefinitions2",2099}, + {"numberOfPoints",1432}, + {""}, {""}, {""}, {""}, {""}, + {"timeRangeIndicatorFromStepRange",2187}, + {""}, {""}, + {"centuryOfAnalysis",400}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"primaryMissingValueSubstitute",1706}, + {"section10Length",1958}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"plusOneinOrdersOfSPD",1670}, + {""}, {""}, {""}, {""}, {""}, + {"messageLength",1280}, {""}, - {"totalLength",2173}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"probabilityType",1693}, - {"indexedStorageInternalNodeK",960}, + {"section2Present",1969}, + {""}, {""}, + {"conceptsMasterMarsDir",564}, + {""}, {""}, + {"forecastProbabilityNumber",869}, + {""}, {""}, {""}, {""}, + {"extremeClockwiseWindDirection",829}, + {"timeCoordinateDefinition",2176}, + {""}, {""}, {""}, + {"numberOfColumns",1378}, + {""}, {""}, {""}, {""}, + {"typicalDateTime",2252}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section10Pointer",1959}, {""}, {"NV",188}, - {"gts_ddhh00",918}, - {""}, {""}, - {"southernLatitudeOfClusterDomain",2047}, - {""}, {""}, {""}, - {"numberOfLogicals",1401}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfFirstDiamondCentreLine",1158}, - {""}, {""}, - {"longitudeOfFirstDiamondCenterLine",1157}, + {""}, {""}, {""}, {""}, + {"biFourierCoefficients",351}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfDataPoints",1370}, + {"gridCoordinate",904}, {""}, - {"longitudeOfFirstDiamondCentreLineInDegrees",1159}, + {"marsGrid",1216}, {""}, {""}, {""}, {""}, {""}, {""}, - {"AA",6}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"southEastLatitudeOfVerficationArea",2041}, - {""}, - {"formatVersionMajorNumber",869}, - {""}, {""}, {""}, - {"southEastLatitudeOfLPOArea",2040}, - {""}, - {"unpackedError",2260}, + {"scaledValueOfDistributionFunctionParameter",1902}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded3Trend2",478}, {""}, {""}, - {"epsStatisticsContinous",765}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"endOfMessage",746}, + {"rectimeHour",1771}, + {""}, {""}, {""}, {""}, + {"scaledValueOfSecondFixedSurface",1915}, + {""}, {""}, {""}, {""}, + {"isSatelliteType",1009}, + {"paleontologicalOffset",1630}, + {""}, {""}, {""}, {""}, + {"missingValueManagement",1298}, + {""}, {""}, + {"standardParallelInMicrodegrees",2088}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"numberOfForecastsInTheCluster",1389}, - {""}, - {"probabilityTypeName",1694}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"tigge_short_name",2152}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"doSimpleThinning",696}, + {"listOfContributingSpectralBands",1121}, + {"BOX",17}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"latitudeOfCentralPointInClusterDomain",1060}, {""}, - {"gribDataQualityChecks",896}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"groupWidth",918}, {""}, {""}, {""}, - {"azimuthalWidth",320}, - {"timeDomainTemplateNumber",2158}, + {"offsetSection2",1511}, + {""}, + {"startOfRange",2091}, + {"secondOfModelVersion",1940}, + {""}, {""}, {""}, + {"minuteOfModelVersion",1292}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"localHour",1140}, + {""}, {""}, + {"lowerThreshold",1198}, + {""}, {""}, {""}, {""}, {""}, + {"monthlyVerificationMonth",1319}, + {""}, {""}, {""}, + {"compressedData",554}, + {""}, + {"inputOriginatingCentre",977}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"northernLatitudeOfClusterDomain",1348}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"N2",171}, + {"constantFieldHalfByte",569}, + {""}, + {"correction1",600}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unitsConversionOffset",2250}, - {"sectionLengthLimitForEnsembles",1981}, + {"originalParameterTableNumber",1548}, + {""}, {""}, {""}, {""}, {""}, + {"flagForIrregularGridCoordinateList",857}, {""}, {""}, {""}, + {"typicalHour",2254}, + {"windSpeedTrend2",2370}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"_leg_number",287}, + {"cloudsBaseCoded3Trend1",477}, + {""}, {""}, {""}, {""}, {""}, + {"groupWidths",919}, + {"marsStream1",1232}, + {""}, {""}, {"La1",102}, - {"isectionNumber2",1015}, + {"skew",2053}, {""}, {"Lar1",109}, - {""}, {""}, {""}, + {""}, {""}, + {"windDirectionTrend2",2359}, {"Lo1",123}, - {"runwayDepositState2",1808}, + {""}, {"Latin1",114}, {"Lor1",141}, + {"southernLatitudeOfClusterDomain",2066}, + {""}, {""}, + {"bufrdcExpandedDescriptors",375}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"SecondOfModelVersion",224}, + {""}, {""}, {""}, {""}, {""}, + {"constituentType",570}, + {""}, {""}, + {"GTSstr",80}, + {"_numberOfValues",288}, + {""}, + {"longitudeOfNorthWestCornerOfArea",1177}, + {""}, {""}, + {"correction2",602}, + {""}, {""}, + {"numberOfForecastsInCluster",1402}, + {"originatorLocalTemplate",1552}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"sphericalHarmonics",2084}, + {""}, + {"numberOfDistinctSection4s",1392}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"epsStatisticsContinous",769}, + {"monthOfEndOfOverallTimeInterval",1313}, + {""}, + {"unitsConversionOffset",2272}, + {""}, + {"g1conceptsMasterDir",882}, + {""}, {""}, {""}, {""}, {""}, + {"yearOfEndOfOverallTimeInterval",2401}, + {""}, {""}, {""}, {""}, {""}, + {"marsStream2",1233}, + {"XRInMetres",266}, + {""}, {""}, {""}, + {"constituentTypeName",571}, + {""}, {""}, + {"versionNumOfRootGroupSymbolTableEntry",2326}, + {""}, {""}, + {"DiGiven",32}, + {"secondaryBitMap",1944}, + {""}, + {"numberOfDistinctSection3s",1391}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"doExtractArea",697}, {""}, {""}, {""}, {""}, - {"section10Length",1939}, - {"offsetEndSection4",1485}, - {"firstMonthUsedToBuildClimateMonth1",848}, - {"selectStepTemplateInstant",2004}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"tsectionNumber4",2193}, - {"typeOfCalendar",2202}, - {"isectionNumber4",1017}, + {"dateTimeOfLocalTime",649}, + {""}, {""}, {""}, {""}, + {"flagForAnyFurtherInformation",856}, + {""}, + {"latitudeOfSouthernPole",1072}, + {""}, {""}, + {"extractedAreaNumberOfSubsets",827}, + {""}, + {"coordinate1Start",580}, + {"subDefinitions2",2118}, + {""}, + {"totalLength",2194}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"attributeOfTile",314}, + {"isectionNumber2",1023}, + {""}, + {"GTS",79}, + {""}, + {"conceptsDir1",558}, + {"X2",263}, + {"typeOfHorizontalLine",2232}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfLogicals",1417}, + {""}, {""}, {""}, {""}, {""}, + {"longitudeOfFirstDiamondCentreLine",1170}, + {""}, + {"hourOfEndOfOverallTimeInterval",938}, + {"longitudeOfFirstDiamondCenterLine",1169}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"doSimpleThinning",700}, + {""}, + {"inputProcessIdentifier",979}, + {"gridPointPosition",911}, + {""}, + {"longitudeOfFirstDiamondCentreLineInDegrees",1171}, + {"numberOfClusters",1374}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"reducedGrid",1774}, + {"rootGroupObjectHeaderAddress",1811}, + {"thisExperimentVersionNumber",2157}, + {""}, {""}, + {"numberOfCategories",1369}, + {""}, {""}, + {"formatVersionMajorNumber",873}, + {""}, {""}, {""}, + {"offsetSection1",1508}, + {""}, + {"numberOfDataPoints",1385}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"coordinateFlag2",591}, {""}, {""}, {""}, - {"runwayDepositState4",1810}, + {"extractDateTimeYearStart",822}, + {"section0Length",1955}, + {""}, + {"section9Length",1997}, {""}, {""}, {""}, - {"packingError",1541}, + {"sectionLengthLimitForEnsembles",2000}, + {"section6Length",1986}, + {"masterTablesVersionNumberLatest",1242}, {""}, {""}, - {"jDirectionIncrement",1022}, - {"coordinate2Flag",582}, + {"conceptsDir2",559}, {""}, - {"lengthOfTimeRange",1093}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetSection3",1495}, - {"listMembersMissing",1103}, - {""}, {""}, - {"g1conceptsMasterDir",878}, - {"frequencyScalingFactor",874}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"windVariableDirectionTrend2",2358}, - {""}, {""}, - {"section9Length",1978}, + {"extractDateTimeHourStart",809}, + {""}, + {"jDirectionIncrement",1030}, {""}, {""}, {""}, - {"numberOfDistinctSection7s",1380}, - {"lengthOfOriginatorLocalTemplate",1091}, - {"twoOrdersOfSPD",2198}, - {""}, {""}, {""}, {""}, - {"windVariableDirectionTrend4",2360}, - {""}, - {"boot_edition",366}, - {""}, {""}, - {"backgroundProcess",322}, - {""}, - {"numberOfClusters",1359}, - {""}, {""}, - {"runwaySideCodeState2",1848}, - {""}, - {"numberOfTimeRange",1444}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"resolutionAndComponentFlags",1784}, - {""}, {""}, - {"windSpeedTrend3",2349}, - {""}, {""}, {""}, {""}, - {"latitudeOfSouthernPole",1062}, - {""}, {""}, - {"section10Pointer",1940}, - {""}, - {"fileConsistencyFlags",842}, - {""}, {""}, {""}, - {"distinctLongitudes",692}, - {""}, - {"runwaySideCodeState4",1850}, - {""}, {""}, {""}, - {"offsetSection1",1491}, - {"secondaryMissingValue",1931}, - {""}, - {"windDirectionTrend3",2338}, - {""}, - {"diffInHours",679}, - {""}, {""}, {""}, {""}, {""}, - {"qualityControl",1720}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"gridDescriptionSectionPresent",905}, - {"groupLengths",911}, - {""}, - {"totalNumberOfDataValuesMissingInStatisticalProcess",2176}, - {"correction4",606}, - {"scaledValueOfDistanceFromEnsembleMean",1883}, - {"thisMarsClass",2138}, - {"section8Length",1975}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfComponents",1364}, - {""}, - {"originatorLocalTemplateNumber",1536}, - {""}, {""}, {""}, {""}, - {"latitudeOfIcosahedronPole",1055}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windSpeedTrend1",2347}, - {"endStepInHours",750}, - {""}, {""}, {""}, {""}, - {"masterTablesVersionNumberLatest",1229}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"gridPointPosition",907}, - {""}, - {"WMO",258}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windDirectionTrend1",2336}, - {""}, {""}, {""}, {""}, - {"radiusOfCentralCluster",1728}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"listMembersUsed3",1109}, - {""}, {""}, {""}, {""}, - {"section2Padding",1948}, - {""}, {""}, {""}, {""}, {""}, - {"numberOfRepresentativeMember",1434}, - {""}, - {"latitudeWhereDxAndDyAreSpecified",1074}, + {"spare4",2077}, + {"runwayDepositState2",1826}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"N1",170}, - {""}, {""}, {""}, {""}, - {"section4Padding",1959}, - {""}, {""}, {""}, {""}, {""}, - {"windVariableDirectionTrend3",2359}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeWhereDxAndDyAreSpecifiedInDegrees",1075}, - {""}, - {"inputProcessIdentifier",973}, - {""}, {""}, {""}, - {"indicatorOfTypeOfLevel",964}, - {""}, {""}, {""}, {""}, - {"normAtFinalTime",1324}, - {"resolutionAndComponentFlags8",1791}, {""}, {""}, - {"tiggeLAMName",2146}, - {""}, {""}, {""}, {""}, - {"swapScanningX",2115}, + {"rdbtimeHour",1758}, {""}, - {"swapScanningLat",2113}, - {"subDefinitions1",2098}, + {"resolutionAndComponentFlags",1802}, + {"typeOfGrid",2231}, {""}, - {"swapScanningLon",2114}, - {""}, {""}, - {"latitudeLongitudeValues",1049}, + {"numberOfForecastsInTheCluster",1404}, + {"mAngleMultiplier",1204}, + {"is_ocean3d_param",1019}, + {"latitudeOfFirstGridPointInDegrees",1064}, {""}, - {"windVariableDirectionTrend1",2357}, + {"resolutionAndComponentFlags6",1807}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"n3",1326}, + {""}, + {"cloudsTitle1",506}, + {""}, + {"section4",1976}, {""}, - {"section3Flags",1952}, - {""}, {""}, - {"METARstr",155}, - {""}, {""}, {""}, {""}, - {"productionStatusOfProcessedData",1703}, {"PLPresent",209}, {""}, {""}, {""}, - {"numberOfPackedValues",1412}, - {"originatingCentreOfAnalysis",1534}, - {""}, - {"sectionLengthLimitForProbability",1982}, - {""}, {""}, {""}, {""}, - {"section0Length",1936}, - {"keyMore",1032}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeHourStart",805}, + {"windSpeedTrend1",2369}, + {"section8Length",1994}, + {"timeIncrementBetweenSuccessiveFields",2180}, {""}, {""}, - {"latitudeOfFirstGridPointInDegrees",1054}, + {"gribDataQualityChecks",900}, + {"earthMajorAxis",710}, + {"widthOfLengths",2354}, {""}, - {"ijDirectionIncrementGiven",955}, - {"coordAveragingTims",577}, - {""}, {""}, - {"section1Flags",1943}, - {"extractDateTimeYearEnd",816}, + {"offsetAfterBitmap",1488}, {""}, - {"is_s2s",1012}, - {""}, - {"stepHumanReadable",2083}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfLengthOfSemiMinorAxis",1867}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"tsectionNumber3",2192}, - {""}, - {"isectionNumber3",1016}, - {""}, - {"selectStepTemplateInterval",2005}, - {"secondOrderOfDifferentWidth",1923}, - {"presentTrend2",1667}, - {""}, {""}, - {"runwayDepositState3",1809}, - {""}, {""}, {""}, {""}, - {"DjInMetres",38}, - {""}, - {"stepForClustering",2082}, - {"local_padding",1148}, - {"coordinate4OfLastGridPoint",589}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"subLocalDefinition2",2101}, - {"versionNumberOfExperimentalSuite",2306}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentTrend4",1669}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"section3Padding",1954}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"section6Length",1967}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"grib2LocalSectionPresent",893}, - {"runwayDepositState1",1807}, - {""}, {""}, - {"latitudeOfNorthWestCornerOfArea",1058}, - {"endDayTrend4",727}, - {""}, - {"missingValuesPresent",1286}, - {""}, {""}, - {"NrInRadiusOfEarth",197}, - {"section1Padding",1945}, - {""}, {""}, {""}, {""}, {""}, - {"runwaySideCodeState3",1849}, - {""}, {""}, {""}, {""}, {""}, - {"localLatitude2",1133}, - {""}, - {"coordinateFlag1",590}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"falseEasting",835}, + {"numberOfDistinctSection5s",1393}, {""}, {""}, {""}, - {"observationType",1463}, + {"shortNameECMF",2036}, {""}, - {"numberOfDistinctSection5s",1378}, - {"versionOfModelClimate",2309}, - {"cloudsTitle4",521}, + {"INBITS",90}, {""}, - {"bitsPerValue",364}, + {"gridDescriptionSectionPresent",909}, + {""}, {""}, + {"windGust",2362}, + {"sp3",2070}, + {"windDirectionTrend1",2358}, + {""}, + {"frequencyScalingFactor",878}, + {"md5Product",1256}, + {""}, {""}, {""}, + {"typeOfCalendar",2224}, + {""}, {""}, + {"twoOrdersOfSPD",2220}, + {"windVariableDirectionTrend2",2380}, + {"spare3",2076}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase3",456}, + {"minutesAfterReferenceTimeOfDataCutoff",1295}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"missingValuesPresent",1300}, + {""}, {""}, {""}, + {"productionStatusOfProcessedData",1720}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"southEastLongitudeOfVerficationArea",2062}, + {""}, {""}, {""}, + {"cloudsTitle2",511}, + {"endDayTrend1",728}, + {""}, + {"azimuthalWidth",321}, + {"cloudsBaseCoded3Trend4",480}, + {""}, + {"coordinate2Start",583}, + {"qualityControl",1737}, + {""}, {""}, {""}, + {"fileConsistencyFlags",846}, + {""}, {""}, {""}, {""}, + {"resolutionAndComponentFlags8",1809}, + {""}, + {"scaledValueOfLowerLimit",1910}, + {""}, {""}, {""}, + {"matrixBitmapsPresent",1248}, + {""}, + {"localExtensionPadding",1137}, + {""}, {""}, {""}, {""}, + {"distinctLongitudes",696}, + {""}, + {"cloudsBaseCoded3",476}, + {"numberOfBytesInLocalDefinition",1366}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded3Trend3",479}, + {""}, + {"listMembersMissing",1113}, + {"startOfHeaders",2089}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"coordinate1End",578}, - {"grib2LocalSectionNumber",892}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfLowerLimit",1892}, + {"lengthOfTimeRange",1103}, + {""}, {""}, + {"backgroundProcess",323}, {""}, - {"scaledValueOfRadiusOfSphericalEarth",1896}, + {"marsKeywords1",1219}, + {""}, + {"bitsPerValue",365}, + {""}, {""}, + {"subDefinitions1",2117}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfDistinctSection7s",1395}, {""}, {""}, {""}, + {"endDayTrend2",729}, + {"X1",261}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"Yo",278}, + {"coordinate4OfLastGridPoint",589}, + {"offsetValuesBy",1520}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"thisMarsClass",2158}, + {"endOfMessage",750}, + {"windVariableDirectionTrend1",2379}, + {""}, + {"significanceOfReferenceDateAndTime",2040}, + {"accuracyMultipliedByFactor",290}, + {"runwaySideCodeState2",1866}, + {""}, + {"ijDirectionIncrementGiven",960}, + {"shapeOfTheEarth",2033}, + {""}, {""}, + {"Yp",279}, + {"section1Flags",1962}, + {"reserved3",1796}, + {"offsetBBitmap",1493}, + {""}, + {"numberOfBytesOfFreeFormatData",1367}, + {""}, + {"numberOfComponents",1379}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"NP",183}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"param_value_max",1618}, + {""}, {""}, {""}, {""}, + {"groupLengths",915}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"coordinateFlag1",590}, {""}, {""}, {""}, {""}, {""}, - {"Yp",279}, - {""}, - {"runwaySideCodeState1",1847}, - {""}, - {"correction2",602}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"codedNumberOfFirstOrderPackedValues",546}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"secondaryMissingValueSubstitute",1932}, - {"qnhAPresent",1717}, + {"secondaryMissingValue",1950}, {""}, {""}, - {"marsStream2",1220}, - {"longitudeOfSubSatellitePoint",1173}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section2Pointer",1949}, - {"longitudeOfSubSatellitePointInDegrees",1174}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"section4Pointer",1960}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"endOfHeadersMarker",744}, - {""}, {""}, - {"stepUnits",2090}, - {"cloudsTitle1Trend2",508}, - {"nameECMF",1314}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"cloudsTitle1Trend4",510}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"clusterMember2",529}, - {"endMinuteTrend2",736}, - {"numberOfDaysInClimateSamplingWindow",1373}, - {""}, {""}, {""}, - {"coordAveraging0",573}, + {"numberOfPackedValues",1428}, {""}, - {"mars_labeling",1224}, - {""}, {""}, {""}, - {"deleteCalendarId",670}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"directionOfVariation",685}, - {"centralLongitudeInMicrodegrees",395}, - {""}, - {"southEastLongitudeOfLPOArea",2042}, - {""}, {""}, - {"clusterMember4",531}, - {"endMinuteTrend4",738}, - {"parametersVersion",1629}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unitsECMF",2253}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unitsBias",2249}, - {""}, {""}, {""}, {""}, {""}, - {"conceptsDir2",559}, - {""}, {""}, - {"NEAREST",177}, - {""}, {""}, {""}, - {"localYear",1147}, - {""}, {""}, {""}, {""}, - {"default_min_val",667}, - {"presentTrend3",1668}, - {""}, {""}, {""}, {""}, - {"yCoordinateOfOriginOfSectorImage",2369}, - {""}, {""}, {""}, {""}, - {"MonthOfModelVersion",168}, - {""}, {""}, - {"firstDimensionCoordinateValueDefinition",844}, - {""}, {""}, {""}, - {"Dj",35}, - {""}, {""}, {""}, - {"localLongitude2",1136}, - {""}, {""}, {""}, - {"sizeOfLength",2030}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"heightPressureEtcOfLevels",925}, - {"totalNumberOfValuesInUnpackedSubset",2185}, - {""}, {""}, - {"section3Pointer",1955}, - {""}, - {"primaryBitmap",1687}, - {""}, {""}, {""}, {""}, - {"is_ocean2d_param",1010}, - {""}, - {"scaleFactorOfSecondWavelength",1875}, - {"baseTimeEPS",327}, - {""}, {""}, {""}, {""}, {""}, - {"typicalYear",2237}, - {""}, - {"unitsConversionScaleFactor",2251}, - {""}, - {"baseDateEPS",325}, - {"numberMissingFromAveragesOrAccumulations",1344}, - {""}, - {"cloudsCode3",496}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"marsGrid",1203}, - {""}, {""}, {""}, {""}, - {"typeOfPreProcessing",2218}, - {""}, {""}, - {"section1Pointer",1946}, - {"presentTrend1",1666}, - {""}, - {"cloudsTitle1Trend3",509}, - {"biFourierResolutionParameterN",354}, - {"coordinate2Start",583}, - {"MinuteOfModelVersion",157}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"percentileValue",1642}, - {""}, {""}, - {"resolutionAndComponentFlags6",1789}, - {""}, {""}, - {"subLocalDefinition1",2100}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"endDayTrend2",725}, - {""}, - {"typicalMonth",2234}, - {""}, {""}, {""}, {""}, {""}, - {"offsetICEFieldsUsed",1489}, - {"cloudsTitle1Trend1",507}, - {""}, {""}, {""}, - {"reservedSection4",1783}, - {"marsKeywords1",1206}, - {""}, {""}, {""}, {""}, - {"scaleFactorOfPrimeMeridianOffset",1871}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"windUnits",2351}, - {""}, {""}, - {"cloudsTitle2",511}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfFirstWavelength",1865}, - {""}, {""}, - {"md5Product",1243}, - {""}, - {"numberOfCoordinatesValues",1367}, {"Ensemble_Identifier",52}, {""}, {""}, - {"variationOfVisibility",2286}, - {"formatVersionMinorNumber",870}, - {""}, {""}, {""}, {""}, {""}, - {"scanningMode4",1906}, - {"compressedData",554}, - {""}, - {"localLatitude1",1132}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"variationOfVisibilityDirection",2287}, - {""}, {""}, {""}, {""}, - {"latitudeOfSouthernPoleInDegrees",1063}, - {""}, {""}, {""}, - {"beginDayTrend2",331}, - {"variationOfVisibilityDirectionAngle",2288}, - {""}, {""}, {""}, {""}, - {"extractDateTimeHourEnd",803}, - {""}, {""}, {""}, - {"rdbtimeYear",1745}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"jDirectionIncrementInDegrees",1025}, + {"numberOfTimeRange",1461}, {""}, {""}, - {"beginDayTrend4",333}, - {"is_ocean3d_param",1011}, + {"secondOfEndOfOverallTimeInterval",1937}, {""}, {""}, {""}, - {"forecastOrSingularVectorNumber",861}, - {""}, {""}, {""}, {""}, {""}, - {"oceanAtmosphereCoupling",1466}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"upperThresholdValue",2273}, - {""}, {""}, {""}, {""}, {""}, - {"flagShowingPostAuxiliaryArrayInUse",855}, + {"minuteOfEndOfOverallTimeInterval",1289}, {""}, {""}, {""}, - {"P2",208}, - {""}, {""}, - {"extractAreaNorthLatitude",796}, - {""}, {""}, {""}, - {"spatialSmoothingOfProduct",2060}, - {"rdbtimeMonth",1742}, - {""}, {""}, {""}, {""}, {""}, - {"GTSstr",80}, - {""}, {""}, {""}, {""}, {""}, - {"subLocalDefinitionLength2",2103}, - {""}, - {"extractAreaEastLongitude",793}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"halfByte",920}, - {""}, - {"clusterMember3",530}, - {"endMinuteTrend3",737}, - {""}, {""}, {""}, {""}, {""}, - {"section7",1970}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"numberOfCodedValues",1360}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfClusterLowResolution",1358}, - {""}, {""}, {""}, {""}, - {"pressureUnits",1686}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"biFourierResolutionSubSetParameterN",356}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"_numberOfValues",287}, + {"runwayDepositState1",1825}, + {"radiusOfCentralCluster",1746}, + {"rootTablesDir",1813}, {""}, {""}, {""}, {""}, {""}, {""}, - {"legBaseTime",1082}, - {"DiGiven",32}, - {""}, - {"reducedGrid",1756}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"legBaseDate",1081}, - {""}, {""}, - {"clusterMember1",527}, - {"endMinuteTrend1",735}, - {"typeOfGrid",2209}, - {"section_10",1995}, - {""}, {""}, - {"packedValues",1540}, + {"mBasicAngle",1205}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section2Padding",1967}, + {"latitudeLongitudeValues",1059}, {""}, {""}, {""}, {""}, {""}, - {"GTS",79}, - {""}, - {"spaceUnitFlag",2052}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"firstOrderValues",850}, - {""}, {""}, {""}, {""}, {""}, - {"windGust",2340}, - {""}, {""}, {""}, {""}, {""}, - {"deletePV",673}, + {"unexpandedDescriptors",2264}, {""}, {""}, {""}, - {"nameLegacyECMF",1315}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"secondaryBitmap",1926}, - {""}, - {"md5Section3",1247}, - {""}, {""}, - {"unitOfTimeRange",2247}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"secondOrderValuesDifferentWidths",1924}, - {""}, {""}, {""}, {""}, - {"xCoordinateOfOriginOfSectorImage",2362}, - {""}, {""}, {""}, - {"BOX",17}, - {"Sub-Experiment_Identifier",228}, - {""}, {""}, - {"numberOfDataPointsExpected",1371}, - {""}, {""}, {""}, {""}, - {"latitudeOfSubSatellitePoint",1066}, - {"mixedCoordinateFieldFlag",1288}, - {""}, {""}, {""}, - {"localLongitude1",1135}, - {""}, {""}, {""}, - {"verticalVisibilityCoded",2315}, - {""}, {""}, {""}, {""}, - {"extractDateTimeStart",815}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeSecondEnd",812}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"subLocalDefinitionNumber2",2105}, - {""}, - {"preProcessingParameter",1659}, - {""}, - {"extractDateTimeSecondStart",814}, - {""}, {""}, {""}, {""}, - {"METAR",154}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"lowerThresholdValue",1187}, - {"expandBy",767}, - {""}, - {"reservedSection2",1781}, - {""}, {""}, {""}, {""}, - {"experimentVersionNumber",781}, - {""}, {""}, {""}, - {"unpackedValues",2262}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfMajorAxisOfOblateSpheroidEarth",1869}, - {""}, - {"runwayFrictionCoefficientState2",1844}, - {"numberInMixedCoordinateDefinition",1340}, - {""}, {""}, - {"Latin2InDegrees",117}, - {""}, - {"dayOfTheYearDate",654}, - {""}, - {"longitudeOfSouthEastCornerOfArea",1168}, - {""}, {""}, {""}, - {"numberOfPointsInDomain",1427}, - {""}, - {"runwayFrictionCoefficientState4",1846}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"jScansPositively",1028}, - {""}, {""}, {""}, {""}, - {"secondaryBitmapPresent",1927}, - {""}, - {"longitudeOfReferencePoint",1166}, - {""}, {""}, {""}, {""}, {""}, - {"beginDayTrend3",332}, - {""}, - {"countOfICEFieldsUsed",610}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"backgroundGeneratingProcessIdentifier",321}, - {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfEarthMajorAxis",1861}, - {"scaleFactorOfEarthMinorAxis",1862}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"biFourierResolutionParameterM",353}, - {"sizeOfPostAuxiliaryArray",2032}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction",1361}, - {"numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction",1362}, - {""}, - {"secondaryBitmaps",1928}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"beginDayTrend1",330}, - {""}, {""}, {""}, {""}, + {"selectStepTemplateInstant",2023}, {"Model_Identifier",166}, + {""}, + {"lengthOfOriginatorLocalTemplate",1101}, + {"latitudeOfIcosahedronPole",1065}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"timeDomainTemplateNumber",2178}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"localLatitude2",1143}, + {""}, {""}, + {"parametersVersion",1646}, + {""}, {""}, {""}, + {"unexpandedDescriptorsEncoded",2265}, + {""}, {""}, + {"swapScanningLat",2132}, + {""}, + {"stepForClustering",2101}, + {"swapScanningLon",2133}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"bufrHeaderCentre",372}, + {""}, + {"stepInHours",2103}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"postAuxiliaryArrayPresent",1656}, - {""}, - {"dateSSTFieldUsed",645}, - {""}, {""}, {""}, - {"listOfParametersUsedForClustering",1115}, - {""}, - {"numberOfPointsAlongXAxis",1423}, - {""}, - {"secondaryBitmapsCount",1929}, - {"rootTablesDir",1795}, - {""}, {""}, {""}, - {"PVPresent",211}, + {"subLocalDefinition2",2120}, {""}, {""}, - {"Nj",195}, - {""}, {""}, {""}, {""}, {""}, - {"cfVarNameECMF",407}, - {"BufrTemplate",20}, + {"presentTrend2",1684}, + {""}, + {"grib2LocalSectionPresent",897}, {""}, {""}, {""}, - {"cavokOrVisibility",381}, - {""}, {""}, {""}, {""}, {""}, - {"P1",207}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetBeforeData",1481}, - {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCoefficientState3",1845}, - {"generalExtended2ordr",882}, - {""}, {""}, {""}, {""}, {""}, - {"subLocalDefinitionLength1",2102}, + {"localYear",1159}, + {""}, {""}, + {"sectionLengthLimitForProbability",2001}, + {""}, {""}, + {"unstructuredGrid",2286}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayDesignatorState2",1824}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"expandedUnits",780}, - {""}, {""}, {""}, {""}, - {"runwayDesignatorState4",1826}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCoefficientState1",1843}, - {""}, {""}, - {"NUT",187}, - {"Latin1InDegrees",115}, - {""}, - {"totalNumberOfClusters",2175}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfSingularVectorsEvolved",1440}, - {""}, - {"rangeBinSpacing",1732}, - {""}, {""}, {""}, {""}, - {"unstructuredGrid",2264}, - {""}, {""}, {""}, {""}, - {"longitudeOfTangencyPoint",1175}, - {""}, - {"earthMajorAxisInMetres",707}, - {""}, {""}, {""}, {""}, - {"integerPointValues",978}, - {""}, {""}, {""}, - {"offsetFromReferenceOfFirstTime",1488}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"localTablesVersion",1143}, - {""}, {""}, - {"section7Pointer",1972}, - {""}, {""}, - {"unpackedSubsetPrecision",2261}, - {"unstructuredGridType",2266}, - {""}, {""}, {""}, - {"cloudsAbbreviation2",431}, + {"shapeOfVerificationArea",2034}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetBSection9",1479}, - {""}, {""}, {""}, - {"md5Section7",1251}, - {""}, {""}, {""}, - {"cloudsTitle4Trend2",523}, - {""}, {""}, {""}, - {"section11Length",1941}, + {"referenceForGroupWidths",1779}, + {"directionOfVariation",689}, + {""}, + {"md5Section3",1260}, + {""}, {""}, {""}, {""}, {""}, + {"section2Pointer",1968}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation4",441}, - {""}, {""}, {""}, - {"numberOfContributingSpectralBands",1365}, - {"cloudsTitle4Trend4",525}, + {"unstructuredGridType",2288}, + {"Sub-Experiment_Identifier",228}, + {""}, {""}, {""}, {""}, + {"matchAerosolPacking",1244}, + {""}, + {"grib2LocalSectionNumber",896}, + {"correction4",606}, + {"section1Padding",1964}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"definitionFilesVersion",669}, - {"offsetSection7",1499}, - {""}, {""}, - {"biFourierResolutionSubSetParameterM",355}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"basicAngleOfTheInitialProductionDomain",329}, - {"extractDateTimeMinuteEnd",806}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"dataSubCategory",633}, - {""}, {""}, {""}, - {"extractDateTimeMinuteStart",808}, - {""}, {""}, - {"northWestLongitudeOfVerficationArea",1332}, + {"NB",173}, + {"typicalYear",2259}, {""}, - {"cfNameECMF",404}, - {""}, - {"changeIndicatorTrend2",411}, + {"probabilityType",1710}, + {""}, {""}, {""}, {""}, {""}, + {"lengthOfHeaders",1098}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"changeIndicatorTrend4",413}, - {"endMonthTrend2",740}, - {""}, {""}, - {"extractDateTimeMonthEnd",809}, - {""}, - {"unexpandedDescriptors",2242}, - {""}, {""}, {""}, {""}, - {"runwayDesignatorState3",1825}, - {""}, {""}, {""}, - {"extractDateTimeMonthStart",811}, - {""}, {""}, {""}, {""}, - {"section2Length",1947}, - {"tiggeLocalVersion",2147}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"endMonthTrend4",742}, + {"section5",1981}, {""}, - {"subLocalDefinitionNumber1",2104}, - {""}, {""}, - {"section4Length",1958}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"section11Pointer",1942}, + {"longitudeOfSubSatellitePoint",1185}, {""}, {""}, {""}, {""}, - {"rootGroupObjectHeaderAddress",1793}, - {""}, - {"qnhUnits",1719}, - {"runwayDesignatorState1",1823}, + {"percentileValue",1659}, + {"latitudeWhereDxAndDyAreSpecified",1084}, {""}, {""}, {""}, - {"dateOfSSTFieldUsed",644}, + {"totalNumberOfDataValuesMissingInStatisticalProcess",2197}, + {""}, {""}, {""}, {""}, + {"scaledValueOfRadiusOfSphericalEarth",1914}, + {""}, {""}, + {"longitudeOfSubSatellitePointInDegrees",1186}, {""}, - {"identificationOfOriginatingGeneratingCentre",950}, + {"referenceForGroupLengths",1778}, + {"codedNumberOfFirstOrderPackedValues",546}, + {"matchAerosolBinNumber",1243}, + {"runwaySideCodeState1",1865}, + {""}, {""}, + {"latitudeWhereDxAndDyAreSpecifiedInDegrees",1085}, + {""}, {""}, {""}, {""}, + {"probabilityTypeName",1711}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unexpandedDescriptorsEncoded",2243}, - {""}, - {"numberOfUnexpandedDescriptors",1446}, - {""}, - {"section9UniqueIdentifier",1980}, - {"numberOfClusterHighResolution",1357}, - {""}, {""}, - {"parameterUnits",1627}, + {"satelliteID",1871}, {""}, {""}, {""}, {""}, - {"referenceForGroupWidths",1761}, - {""}, {""}, {""}, - {"visibilityTrend3",2323}, - {"gribTablesVersionNo",898}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"longitudeOfCentralPointInClusterDomain",1154}, - {"numberOfControlForecastTube",1366}, - {""}, - {"marsClass2",1196}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"ITERATOR",92}, - {""}, - {"satelliteID",1853}, - {"cloudsTitle4Trend3",524}, - {""}, {""}, - {"alternativeRowScanning",297}, - {"NC",174}, + {"scaleFactorOfLengthOfSemiMinorAxis",1885}, {""}, {""}, {""}, {""}, {""}, {""}, - {"qfeUnits",1715}, - {""}, - {"typeOfSSTFieldUsed",2220}, - {""}, - {"longitudeOfThePoleOfStretching",1176}, + {"unitsConversionScaleFactor",2273}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfBits",1346}, + {"firstMonthUsedToBuildClimateMonth2",853}, + {""}, + {"DjInMetres",38}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"gts_TTAAii",917}, + {"windVariableDirectionTrend4",2382}, + {"typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing",2248}, + {""}, + {"section1Pointer",1965}, + {"expandedCrex_scales",774}, + {""}, {""}, {""}, {""}, + {"offsetBeforeBitmap",1497}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"sourceOfGridDefinition",2038}, - {""}, - {"section8UniqueIdentifier",1977}, - {""}, - {"longitudeOfTheSouthernPoleOfProjection",1179}, - {""}, {""}, {""}, - {"cloudsTitle4Trend1",522}, - {""}, {""}, {""}, {""}, - {"md5Headers",1242}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"changeIndicatorTrend3",412}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"referenceForGroupLengths",1760}, - {""}, {""}, {""}, - {"tablesLocalDir",2124}, - {""}, - {"secondaryBitmapsSize",1930}, - {"easternLongitudeOfClusterDomain",712}, - {""}, - {"qualityControlIndicator",1721}, - {""}, {""}, {""}, {""}, {"crraSuiteID",617}, - {""}, {""}, {""}, {""}, - {"kindOfProduct",1034}, - {""}, {""}, {""}, {""}, - {"section3Length",1953}, - {""}, - {"section5",1962}, - {""}, - {"changeIndicatorTrend1",410}, - {"coordinate2End",581}, - {""}, - {"addEmptySection2",290}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"totalAerosolBinsNumbers",2192}, + {"firstDimensionCoordinateValueDefinition",848}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"keyMore",1042}, + {"windVariableDirectionTrend3",2381}, + {""}, + {"variationOfVisibility",2308}, + {""}, + {"selectStepTemplateInterval",2024}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"section3Flags",1971}, {""}, {""}, - {"unstructuredGridSubtype",2265}, - {"section1Length",1944}, - {"ls_labeling",1188}, - {"wrongPadding",2361}, - {""}, {""}, - {"numberOfStepsUsedForClustering",1441}, - {""}, {""}, {""}, - {"numberOfUsedTileAttributes",1449}, - {""}, {""}, {""}, - {"localFlagLatestVersion",1129}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"latitudeOfSubSatellitePointInDegrees",1067}, - {""}, - {"isRotatedGrid",1001}, - {""}, - {"southPoleOnProjectionPlane",2046}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation3",436}, - {""}, {""}, - {"numberOfDataBinsAlongRadials",1368}, - {""}, - {"physicalFlag2",1649}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"produceLargeConstantFields",1696}, - {""}, - {"SOH",221}, - {""}, {""}, {""}, - {"yCoordinateOfSubSatellitePoint",2370}, - {""}, {""}, {""}, {""}, - {"HDF5str",82}, - {""}, - {"offsetSection11",1493}, - {"section5Pointer",1964}, - {""}, {""}, - {"realPartOf00",1747}, + {"variationOfVisibilityDirection",2309}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudinalDirectionGridLength",1078}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"paramIdECMF",1616}, + {"southEastLatitudeOfVerficationArea",2060}, + {"variationOfVisibilityDirectionAngle",2310}, {""}, - {"efas_post_proc",718}, - {"tiggeSuiteID",2150}, - {"section_2",1997}, - {""}, {""}, {""}, - {"cloudsTitle2Trend2",513}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"expandedCrex_units",775}, {""}, - {"numberOfGroups",1394}, + {"localLatitude1",1142}, {""}, {""}, - {"cloudsTitle2Trend4",515}, - {""}, {""}, {""}, - {"pastTendencyRVR3",1636}, - {"cloudsAbbreviation1",426}, - {""}, {""}, {""}, {""}, - {"section_4",1999}, - {""}, {""}, - {"latitudeFirstInDegrees",1047}, - {""}, {""}, - {"scaledValueOfLengthOfSemiMinorAxis",1891}, - {"endMonthTrend3",741}, - {""}, {""}, {""}, - {"expandedCrex_scales",770}, - {""}, - {"Model_Additional_Information",165}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"northWestLatitudeOfVerficationArea",1330}, + {"deleteCalendarId",674}, {""}, {""}, {""}, {""}, {""}, - {"northWestLatitudeOfLPOArea",1329}, + {"originatorLocalTemplateNumber",1553}, {""}, {""}, {""}, {""}, - {"verificationYear",2300}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"remarkPresent",1770}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"reservedSection2",1799}, {""}, - {"mask",1225}, + {"unpackedError",2282}, + {"numberOfRepresentativeMember",1450}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"md5Section5",1262}, + {"totalNumberOfValuesInUnpackedSubset",2207}, + {""}, {""}, {""}, + {"offsetSection4",1513}, {""}, - {"md5Section5",1249}, - {"section6UniqueIdentifier",1969}, + {"subLocalDefinition1",2119}, + {""}, {""}, + {"presentTrend1",1683}, + {""}, {""}, + {"scaledValueOfDistanceFromEnsembleMean",1901}, {""}, {""}, {""}, - {"visibilityInKilometresTrend2",2318}, - {""}, {""}, {""}, - {"recentWeather",1749}, - {"expandedCrex_units",771}, + {"latitudeOfSouthernPoleInDegrees",1073}, {""}, {""}, - {"firstDimensionPhysicalSignificance",845}, - {""}, {""}, - {"cloudsCode1",486}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"endMonthTrend1",739}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"jPointsAreConsecutive",1027}, - {""}, {""}, - {"visibilityInKilometresTrend4",2320}, + {"endStepInHours",754}, {""}, {""}, {""}, {""}, - {"dateOfIceFieldUsed",641}, - {""}, {""}, {""}, {""}, - {"westernLongitudeOfClusterDomain",2329}, - {"longitudeOfReferencePointInDegrees",1167}, + {"latitudeFirstInDegrees",1057}, {""}, - {"patch_precip_fp",1638}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"pack",1539}, + {"section_2",2016}, {""}, {""}, - {"numberOfPointsAlongXAxisInCouplingArea",1424}, - {""}, {""}, {""}, - {"numberOfParallelsBetweenAPoleAndTheEquator",1413}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"default_step_units",668}, - {""}, {""}, {""}, {""}, - {"gribMasterTablesVersionNumber",897}, - {""}, {""}, {""}, - {"reflectivityCalibrationConstant",1769}, - {""}, {""}, {""}, - {"numberOfUsedSpatialTiles",1448}, - {""}, {""}, {""}, - {"endGridDefinition",729}, - {""}, - {"cloudsTitle2Trend3",514}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"dateOfModelVersion",642}, - {""}, {""}, {""}, {""}, - {"timeOfModelVersion",2163}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"unpack",2259}, - {"marsClass1",1195}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"clusteringDomain",539}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsTitle2Trend1",512}, - {"gaussianGridName",880}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"getNumberOfValues",887}, + {"section_02",2005}, {""}, {""}, - {"pentagonalResolutionParameterK",1640}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"pentagonalResolutionParameterJ",1639}, - {""}, {""}, {""}, - {"yearOfModelVersion",2381}, - {""}, - {"numberOfGroupsOfDataValues",1395}, - {""}, - {"section_02",1986}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"listMembersUsed4",1110}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section_04",1988}, - {""}, {""}, {""}, {""}, - {"scaleFactorOfMinorAxisOfOblateSpheroidEarth",1870}, - {"rdb_key",1736}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"offsetBSection6",1478}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"constantAntennaElevationAngle",568}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"_leg_number",286}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"firstMonthUsedToBuildClimateMonth1",852}, {""}, {""}, {""}, {""}, {""}, - {"dayOfModelVersion",652}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"typeOfPreProcessing",2240}, {""}, {""}, {""}, {""}, {""}, - {"hourOfModelVersion",936}, + {"tablesLocalDir",2143}, + {""}, {""}, {""}, {""}, + {"rdbtimeYear",1763}, + {""}, + {"cloudsCode3",496}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"biFourierResolutionParameterN",355}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"ls_labeling",1200}, + {"versionOfModelClimate",2331}, + {""}, {""}, + {"md5Section7",1264}, + {""}, + {"offsetSection3",1512}, + {""}, + {"windSpeedTrend4",2372}, + {"indicatorOfTypeOfLevel",969}, + {"cloudsTitle4",521}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"localLongitude2",1146}, + {"section7",1989}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"windDirectionTrend4",2361}, + {""}, + {"diffInHours",683}, + {""}, {""}, + {"identificationOfOriginatingGeneratingCentre",955}, + {"yCoordinateOfOriginOfSectorImage",2391}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"secondaryMissingValueSubstitute",1951}, + {"sourceOfGridDefinition",2057}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"isRotatedGrid",1007}, + {""}, {""}, + {"section4Padding",1978}, + {""}, {""}, {""}, {""}, + {"numberOfDaysInClimateSamplingWindow",1388}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"experimentVersionNumber",785}, + {""}, {""}, {""}, {""}, {""}, + {"windSpeedTrend3",2371}, + {""}, + {"sizeOfLength",2049}, + {""}, {""}, + {"clusterMember2",529}, + {""}, {""}, + {"endDayTrend4",731}, + {""}, {""}, {""}, {""}, {""}, + {"endMinuteTrend2",740}, + {"section3Padding",1973}, + {""}, {""}, + {"packingError",1558}, + {""}, {""}, {""}, {""}, {""}, + {"windDirectionTrend3",2360}, + {""}, {""}, {""}, + {"latitudinalDirectionGridLength",1088}, + {""}, {""}, {""}, {""}, + {"unstructuredGridSubtype",2287}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"deletePV",677}, + {""}, {""}, + {"Dj",35}, + {"firstOrderValues",854}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfGroups",1410}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section_3",1998}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"latitudeOfTangencyPoint",1068}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"physicalMeaningOfVerticalCoordinate",1650}, - {""}, {""}, - {"recentWeatherTry",1750}, - {""}, {""}, - {"physicalFlag1",1648}, - {""}, {""}, - {"numberOfHorizontalPoints",1396}, - {""}, {""}, {""}, {""}, - {"NC2",176}, - {"NRj",185}, - {""}, {""}, {""}, {""}, - {"localTablesVersionNumber",1144}, - {"xCoordinateOfSubSatellitePoint",2363}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"scaleFactorOfCentralWaveNumber",1858}, - {""}, - {"mBasicAngle",1192}, - {"preBitmapValues",1658}, - {""}, {""}, {""}, {""}, {""}, - {"DayOfModelVersion",30}, - {"offsetSection5",1497}, - {""}, - {"unstructuredGridUUID",2267}, - {""}, - {"YR",274}, - {""}, {""}, {"P_INST",212}, {""}, {""}, {""}, - {"section_1",1994}, + {"tsectionNumber4",2215}, {""}, - {"expandedCrex_widths",772}, - {"templatesMasterDir",2134}, + {"isectionNumber4",1025}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"visibilityInKilometresTrend3",2319}, - {""}, {""}, {""}, - {"scaledValueOfSecondWavelength",1899}, - {""}, {""}, {""}, {""}, - {"md5Section1",1244}, - {"secondaryBitMap",1925}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"variationOfVisibilityTrend2",2294}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"RENAME",216}, {""}, {""}, {""}, {""}, {""}, - {"versionNumOfSharedHeaderMessageFormat",2305}, - {"variationOfVisibilityTrend4",2296}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"P2",208}, + {"tiggeSuiteID",2170}, + {"centralLongitudeInMicrodegrees",395}, {""}, {""}, {""}, - {"runwayDepthOfDepositCodeState2",1812}, + {"secondOrderOfDifferentWidth",1942}, + {""}, {""}, {""}, {""}, {""}, + {"secondOrderValuesDifferentWidths",1943}, + {""}, + {"section4Pointer",1979}, + {""}, + {"coordAveraging0",573}, {""}, {""}, - {"numberOfPointsAlongAMeridian",1417}, - {""}, {""}, {""}, - {"inputShortDelayedDescriptorReplicationFactor",974}, + {"numberOfCoordinatesValues",1382}, + {""}, + {"forecastOrSingularVectorNumber",865}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"observationType",1480}, + {""}, + {"numberOfBitsForScaledGroupLengths",1363}, + {"jDirectionIncrementInDegrees",1033}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"upperThresholdValue",2295}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section3Pointer",1974}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayDepthOfDepositCodeState4",1814}, + {"tsectionNumber3",2214}, + {""}, + {"isectionNumber3",1024}, + {"section_1",2013}, + {"biFourierResolutionSubSetParameterN",357}, + {""}, + {"section_01",2004}, + {""}, {""}, {""}, + {"scaleFactorOfPrimeMeridianOffset",1889}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"formatVersionMinorNumber",874}, + {"spatialSmoothingOfProduct",2079}, + {""}, + {"runwayDepositState4",1828}, + {""}, {""}, + {"WMO",258}, + {""}, {""}, {""}, {""}, + {"subLocalDefinitionLength2",2122}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsTitle1Trend2",508}, + {"modelErrorType",1305}, + {"dayOfTheYearDate",658}, + {""}, {""}, + {"verticalVisibilityCoded",2337}, + {""}, + {"beginDayTrend2",332}, + {""}, + {"preProcessingParameter",1676}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"NH",179}, - {""}, {""}, {""}, - {"visibilityInKilometresTrend1",2317}, - {""}, {""}, {""}, {""}, - {"horizontalDomainTemplate",930}, - {""}, {""}, - {"scaledValueOfPrimeMeridianOffset",1895}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"variationOfVisibilityDirectionTrend2",2290}, - {"extractDateTimeEnd",802}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"PUnset",210}, - {""}, {""}, - {"section2Used",1951}, - {"variationOfVisibilityDirectionTrend4",2292}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"scaledValueOfFirstWavelength",1889}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"longitudeLastInDegrees",1153}, - {""}, {""}, {""}, {""}, {""}, - {"clusterMember7",534}, - {""}, {""}, {""}, - {"iDirectionIncrementGiven",942}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"beginMinuteTrend2",339}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"meanRVR2",1257}, - {""}, {""}, {""}, {""}, - {"section_03",1987}, - {""}, - {"beginMinuteTrend4",341}, - {"extractAreaSouthLatitude",797}, - {"skipExtraKeyAttributes",2036}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfUpperLimit",1878}, - {""}, {""}, {""}, {""}, {""}, - {"matchAerosolBinNumber",1230}, - {"section7Length",1971}, - {""}, - {"radiusOfTheEarth",1730}, - {"meanRVR4",1259}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfPointsAlongSecondAxis",1420}, - {""}, {""}, - {"listMembersUsed2",1108}, - {""}, {""}, {""}, - {"variationOfVisibilityTrend3",2295}, - {""}, {""}, {""}, - {"checkInternalVersion",419}, - {""}, {""}, {""}, - {"runwayDepositCodeState2",1804}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"md5Section10",1245}, - {""}, {""}, {""}, - {"deleteLocalDefinition",672}, - {""}, {""}, {""}, {""}, - {"runwayDepthOfDepositCodeState3",1813}, - {""}, {""}, - {"section_01",1985}, - {""}, {""}, {""}, {""}, {""}, - {"runwayDepositCodeState4",1806}, - {""}, - {"variationOfVisibilityTrend1",2293}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"totalAerosolBinsNumbers",2171}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"packedValues",1557}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayDepthOfDepositCodeState1",1811}, - {""}, {""}, - {"variationOfVisibilityDirectionTrend3",2291}, + {"endGridDefinition",733}, + {"localLongitude1",1145}, {""}, {""}, {""}, {""}, - {"tsectionNumber5",2194}, + {"versionNumberOfExperimentalSuite",2328}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"listMembersUsed3",1119}, + {""}, + {"MonthOfModelVersion",168}, + {"mixedCoordinateFieldFlag",1302}, + {""}, + {"runwayDepositState3",1827}, + {"numberOfClusterHighResolution",1372}, {""}, {""}, {""}, - {"runwayFrictionCodeValueState2",1836}, + {"numberOfBytesPerInteger",1368}, + {""}, {""}, + {"clusteringDomain",539}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"coordAveragingTims",577}, + {""}, {""}, {""}, {""}, + {"numberOfClusterLowResolution",1373}, + {""}, {""}, {""}, + {"gaussianGridName",884}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"typeOfPacking",2216}, - {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCodeValueState4",1838}, - {"lengthOf4DvarWindow",1087}, + {"horizontalDomainTemplate",934}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"clusterMember1",527}, + {""}, {""}, + {"offsetSection5",1514}, + {""}, {""}, {""}, + {"latitudeOfSubSatellitePoint",1076}, + {""}, + {"endMinuteTrend1",739}, + {"stepHumanReadable",2102}, + {"xCoordinateOfOriginOfSectorImage",2384}, + {""}, {""}, {""}, {""}, + {"numberOfCodedValues",1375}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"originatingCentreOfAnalysis",1551}, + {""}, {""}, + {"PVPresent",211}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Date_E2",27}, + {"section5Pointer",1983}, {""}, - {"variationOfVisibilityDirectionTrend1",2289}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"scaleFactorOfLengthOfSemiMajorAxis",1866}, + {"rdb_key",1754}, {""}, {""}, - {"offsetAfterData",1473}, - {"numberOfBytesInLocalDefinition",1351}, - {""}, {""}, {""}, {""}, {""}, - {"beginMinuteTrend3",340}, + {"unpackedValues",2284}, + {""}, {""}, {""}, {""}, + {"cloudsTitle1Trend1",507}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"numberOfGroupsOfDataValues",1411}, + {""}, {""}, + {"expandedCrex_widths",776}, + {""}, {""}, + {"NrInRadiusOfEarth",197}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Date_E4",29}, - {""}, {""}, {""}, - {"numberOfPointsAlongAParallel",1418}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"scanningMode7",1909}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"P1",207}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"commonBlock",551}, {""}, - {"northWestLongitudeOfLPOArea",1331}, - {"beginMinuteTrend1",338}, - {""}, - {"numberOfRadarSitesUsed",1430}, - {""}, {""}, {""}, - {"cloudsCode4",501}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"monthlyVerificationYear",1306}, + {"offsetEndSection4",1502}, {""}, {""}, - {"NC1",175}, + {"stepUnits",2109}, + {""}, + {"runwaySideCodeState4",1868}, + {""}, {""}, {""}, {""}, + {"typicalMonth",2256}, + {""}, + {"subLocalDefinitionNumber2",2124}, + {""}, {""}, {""}, {""}, + {"numberOfPointsInDomain",1443}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"localTablesVersion",1153}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsTitle2Trend2",513}, + {""}, {""}, {""}, {""}, + {"tiggeLAMName",2166}, + {""}, + {"scaleFactorOfSecondWavelength",1893}, {""}, {""}, {""}, - {"widthOfWidths",2334}, + {"MinuteOfModelVersion",157}, + {""}, + {"latitudeOfNorthWestCornerOfArea",1068}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"qnhAPresent",1734}, + {""}, {""}, {""}, {""}, + {"Latin2InDegrees",117}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"definitionFilesVersion",673}, + {"unstructuredGridUUID",2289}, + {""}, {""}, {""}, {""}, + {"subLocalDefinitionLength1",2121}, + {"falseEasting",839}, + {"reservedSection4",1801}, + {""}, + {"runwaySideCodeState3",1867}, + {"heightPressureEtcOfLevels",929}, + {"section7Pointer",1991}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"inputShortDelayedDescriptorReplicationFactor",980}, + {""}, {""}, + {"offsetFromOriginToInnerBound",1504}, + {""}, {""}, + {"beginDayTrend1",331}, + {""}, {""}, + {"jScansPositively",1036}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfFirstWavelength",1883}, + {""}, {""}, {""}, {""}, + {"baseTimeEPS",328}, + {""}, + {"lowerThresholdValue",1199}, + {"listOfParametersUsedForClustering",1125}, + {""}, {""}, {""}, + {"tsectionNumber5",2216}, + {""}, {""}, + {"extractDateTimeYearEnd",820}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"longitudeLastInDegrees",1165}, + {"baseDateEPS",326}, + {""}, + {"extractDateTimeHourEnd",807}, + {"generalExtended2ordr",886}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"integerPointValues",984}, {"Product_Identifier",215}, - {""}, {""}, {""}, {""}, - {"accuracyMultipliedByFactor",289}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"beginHourTrend2",335}, {""}, {""}, {""}, - {"experimentVersionNumberOfAnalysis",784}, - {"numberOfBytesOfFreeFormatData",1352}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"paramIdLegacyECMF",1617}, - {""}, {""}, - {"theHindcastMarsStream",2135}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"beginHourTrend4",337}, - {""}, {""}, - {"typeOfWavelengthInterval",2227}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"pentagonalResolutionParameterM",1641}, + {"section11Length",1960}, + {""}, {""}, {""}, {""}, {""}, + {"presentTrend4",1686}, + {"cloudsTitle4Trend2",523}, {""}, - {"cloudsBaseCoded3Trend2",478}, - {""}, {""}, - {"runwayFrictionCodeValueState3",1837}, - {""}, {""}, - {"firstLatitudeInDegrees",847}, + {"cloudsTitle2Trend1",512}, + {""}, + {"numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction",1376}, + {"numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction",1377}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetSection7",1516}, + {""}, + {"backgroundGeneratingProcessIdentifier",322}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"iDirectionIncrementGiven",947}, + {""}, + {"Latin1InDegrees",115}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded3Trend4",480}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfMajorAxisOfOblateSpheroidEarth",1893}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"timeIncrementBetweenSuccessiveFields",2160}, - {""}, {""}, {""}, - {"runwayFrictionCodeValueState1",1835}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"beginMonthTrend3",344}, - {""}, {""}, {""}, - {"uuidOfVGrid",2281}, - {"meanRVR3",1258}, + {"section11Pointer",1961}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"inputOverriddenReferenceValues",972}, - {""}, {""}, - {"scaledValueOfEarthMajorAxis",1885}, - {"scaledValueOfEarthMinorAxis",1886}, + {"longitudeOfSouthEastCornerOfArea",1180}, + {""}, + {"runwayFrictionCoefficientState2",1862}, + {""}, + {"totalNumberOfClusters",2196}, + {""}, {""}, {""}, {""}, + {"tiggeLocalVersion",2167}, + {"nameECMF",1329}, + {"southEastLatitudeOfLPOArea",2059}, + {""}, {""}, {""}, {""}, {""}, + {"presentTrend3",1685}, + {""}, + {"templatesMasterDir",2154}, + {"unusedBitsInBitmap",2290}, + {""}, {""}, {""}, {""}, {""}, + {"normAtFinalTime",1339}, + {"offsetBeforePL",1499}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"extractDateTimeStart",819}, + {"visibilityInKilometresTrend2",2340}, + {"rdbtimeMonth",1760}, + {""}, + {"unpackedSubsetPrecision",2283}, {""}, {""}, {""}, - {"cloudsBase3",456}, - {"numberOfSingularVectorsComputed",1439}, + {"extractDateTimeSecondEnd",816}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"extractDateTimeSecondStart",818}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"subLocalDefinitionNumber1",2123}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"unitsECMF",2275}, + {"cloudsTitle1Trend4",510}, + {""}, {""}, {""}, {""}, + {"numberInMixedCoordinateDefinition",1355}, + {""}, {""}, {""}, {""}, + {"cloudsTitle4Trend1",522}, + {""}, {""}, {""}, {""}, {""}, + {"Nj",195}, + {""}, {""}, {""}, {""}, {""}, + {"biFourierResolutionParameterM",354}, + {""}, {""}, {""}, {""}, + {"deleteLocalDefinition",676}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"cloudsTitle1Trend3",509}, + {""}, {""}, {""}, {""}, {""}, + {"jd2",1038}, + {"cavokOrVisibility",381}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"windUnits",2373}, + {""}, {""}, {""}, + {"sizeOfPostAuxiliaryArray",2051}, + {"runwayFrictionCoefficientState1",1861}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endOfHeadersMarker",748}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"gribTablesVersionNo",902}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfCentralPointInClusterDomain",1166}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"runwayDesignatorState2",1842}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"section2Length",1966}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"section_4",2018}, + {""}, {""}, + {"section_04",2007}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"firstLatitudeInDegrees",851}, + {""}, {""}, + {"extractAreaNorthLatitude",800}, + {""}, {""}, + {"coordinate1End",578}, + {""}, + {"dataSubCategory",633}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"localFlagLatestVersion",1139}, + {""}, + {"NC",174}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"swapScanningX",2134}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsTitle2Trend4",515}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"verificationYear",2322}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"earthMajorAxisInMetres",711}, + {"pressureUnits",1703}, + {""}, {""}, + {"section_3",2017}, + {"visibilityInKilometresTrend1",2339}, + {""}, + {"section_03",2006}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"marsClass2",1209}, + {"cloudsTitle2Trend3",514}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayDesignatorState1",1841}, + {"biFourierResolutionSubSetParameterM",356}, + {"spaceUnitFlag",2071}, + {""}, {""}, {""}, {""}, {""}, {""}, {"GDSPresent",69}, {""}, {""}, {""}, - {"shortNameLegacyECMF",2018}, + {"offsetSection11",1510}, + {""}, + {"latitudeOfSubSatellitePointInDegrees",1077}, + {"cloudsBaseCoded1Trend2",468}, + {""}, {""}, {""}, {""}, {""}, + {"qualityControlIndicator",1738}, {""}, {""}, {""}, {""}, {""}, {""}, - {"visibilityTrend1",2321}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"runwayDepositCodeState3",1805}, - {""}, {""}, {""}, - {"section5Length",1963}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"meanRVR1",1256}, + {"section1Length",1963}, + {"numberOfContributingSpectralBands",1380}, + {""}, {""}, + {"lBB",1047}, {""}, - {"longitudeOfSouthernPole",1169}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"ZLMULT",282}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"projSourceString",1704}, - {""}, {""}, {""}, {""}, {""}, - {"listMembersMissing2",1104}, - {""}, {""}, {""}, {""}, {""}, - {"WRAPstr",260}, - {""}, {""}, - {"localUsePresent",1146}, - {"cloudsBaseCoded3",476}, - {""}, {""}, {""}, {""}, - {"projTargetString",1706}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded3Trend3",479}, - {""}, {""}, {""}, {""}, - {"numberOfPointsAlongFirstAxis",1419}, + {"clusterMember4",531}, {""}, - {"listMembersMissing4",1106}, - {""}, {""}, - {"runwayDepositCodeState1",1803}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"INBITS",90}, - {""}, {""}, - {"tempPressureUnits",2130}, - {""}, {""}, {""}, {""}, - {"Date_E3",28}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded3Trend1",477}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"numberOfMissingValues",1406}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"offsetValuesBy",1503}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"md5Section4",1248}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"iDirectionIncrementGridLength",943}, + {"Model_Additional_Information",165}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"endMinuteTrend4",742}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode2",491}, + {"endMonthTrend2",744}, + {""}, + {"cfVarNameECMF",407}, {""}, {""}, - {"weightAppliedToClimateMonth1",2326}, + {"jd1",1037}, + {""}, {""}, + {"easternLongitudeOfClusterDomain",716}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"extractDateTimeMinuteEnd",810}, + {""}, {""}, {""}, {""}, + {"southPoleOnProjectionPlane",2065}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extractDateTimeMinuteStart",812}, + {""}, {""}, + {"countOfICEFieldsUsed",610}, + {"cloudsBase1",446}, + {""}, + {"numberMissingFromAveragesOrAccumulations",1359}, + {"extractDateTimeMonthEnd",813}, + {"cloudsTitle4Trend4",525}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"yCoordinateOfSubSatellitePoint",2392}, + {"md5Headers",1255}, + {""}, + {"extractDateTimeMonthStart",815}, + {""}, {""}, + {"kindOfProduct",1044}, + {""}, {""}, {""}, {""}, + {"clusterMember3",530}, + {""}, {""}, + {"oceanAtmosphereCoupling",1483}, + {"produceLargeConstantFields",1713}, + {""}, {""}, {""}, {""}, + {"endMinuteTrend3",741}, + {""}, {""}, + {"unitOfTimeRange",2269}, + {""}, + {"numberOfDataPointsExpected",1386}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsTitle4Trend3",524}, + {"padding_sec1_loc",1624}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"uuidOfVGrid",2303}, + {"coordinate2End",581}, + {""}, {""}, {""}, {""}, + {"cloudsBaseCoded1",466}, + {""}, {""}, {""}, {""}, {""}, + {"runwayFrictionCoefficientState4",1864}, + {""}, + {"flagShowingPostAuxiliaryArrayInUse",859}, + {""}, {""}, + {"cloudsBaseCoded1Trend1",467}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"cloudsBase2",451}, + {""}, {""}, {""}, + {"numberOfControlForecastTube",1381}, + {""}, {""}, {""}, {""}, + {"physicalFlag2",1666}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"runwayFrictionCoefficientState3",1863}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"METARstr",155}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"HDF5str",82}, + {""}, + {"cloudsBaseCoded2",471}, + {""}, {""}, {""}, + {"beginDayTrend4",334}, + {""}, {""}, + {"iDirectionIncrementGridLength",948}, + {""}, {""}, + {"longitudeOfReferencePoint",1178}, + {"cloudsBaseCoded2Trend2",473}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"nameLegacyECMF",1330}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"addEmptySection2",291}, + {""}, + {"gts_TTAAii",921}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfTangencyPoint",1187}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"marsClass1",1208}, + {""}, {""}, + {"remarkPresent",1788}, + {"NUT",187}, + {""}, {""}, {""}, {""}, + {"dateSSTFieldUsed",646}, + {"localTablesVersionNumber",1154}, + {""}, + {"getNumberOfValues",891}, + {""}, {""}, {""}, {""}, + {"expandedUnits",784}, + {""}, {""}, {""}, {""}, {""}, + {"Total_Number_Members_Used",253}, + {""}, {""}, + {"wrongPadding",2383}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"beginDayTrend3",333}, + {""}, {""}, {""}, {""}, {""}, + {"pastTendencyRVR3",1653}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"northLatitudeOfDomainOfTubing",1328}, - {""}, {""}, - {"typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing",2226}, + {"endMonthTrend1",743}, {""}, {""}, {""}, - {"beginHourTrend3",336}, + {"offsetICEFieldsUsed",1506}, {""}, {""}, - {"matrixBitmapsPresent",1235}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation2Trend2",433}, + {"section_5",2019}, + {""}, {""}, + {"section_05",2008}, + {""}, + {"northWestLongitudeOfVerficationArea",1347}, + {"pentagonalResolutionParameterK",1657}, + {""}, {""}, + {"runwayDesignatorState4",1844}, + {""}, {""}, {""}, + {"AA",6}, + {""}, {""}, {""}, {""}, {""}, + {"changeIndicatorTrend2",411}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfThePolePoint",1177}, - {""}, {""}, {""}, - {"cloudsAbbreviation4Trend2",443}, + {""}, + {"southEastLongitudeOfLPOArea",2061}, + {""}, {""}, {""}, {""}, + {"cloudsBaseCoded4Trend2",483}, + {""}, + {"cloudsBaseCoded2Trend1",472}, + {"section4Length",1977}, + {""}, + {"firstDimensionPhysicalSignificance",849}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayDesignatorState3",1843}, + {""}, + {"intervalBetweenTimes",992}, + {"Total_Number_Members_Possible",252}, + {"scanningMode4",1924}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfLengthOfSemiMinorAxis",1909}, + {""}, {""}, {""}, {""}, {""}, + {"subdivisionsOfBasicAngle",2129}, + {"section3Length",1972}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"md5Section1",1257}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"offsetFromReferenceOfFirstTime",1505}, + {"visibilityTrend3",2345}, {""}, {""}, {""}, + {"Date_E2",27}, + {"xCoordinateOfSubSatellitePoint",2385}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"dateOfModelVersion",643}, + {""}, {""}, {""}, {""}, + {"timeOfModelVersion",2184}, + {""}, + {"latitudeOfLastGridPoint",1066}, + {"westernLongitudeOfClusterDomain",2351}, + {""}, + {"physicalFlag1",1665}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"dateOfSSTFieldUsed",645}, {"codedNumberOfGroups",547}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation2Trend4",435}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cfNameLegacyECMF",405}, - {""}, {""}, - {"pastTendencyRVR1",1634}, - {""}, - {"padding_local40_1",1604}, - {""}, - {"cloudsAbbreviation4Trend4",445}, - {""}, {""}, {""}, {""}, {""}, - {"resolutionAndComponentFlags2",1786}, - {""}, - {"southLatitudeOfDomainOfTubing",2045}, - {"hoursAfterReferenceTimeOfDataCutoff",939}, - {"latitudeOfLastGridPoint",1056}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Ensemble_Combination_Number",51}, - {""}, {""}, - {"beginHourTrend1",334}, - {""}, {""}, - {"section4UniqueIdentifier",1961}, - {""}, {""}, {""}, {""}, {""}, - {"latitudeOfReferencePoint",1059}, - {""}, - {"eastLongitudeOfDomainOfTubing",711}, - {"resolutionAndComponentFlags4",1788}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"timeUnitFlag",2167}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfPointsAlongTheXAxis",1421}, - {""}, {""}, {""}, - {"sizeOfPostAuxiliaryArrayPlusOne",2033}, - {""}, {""}, {""}, {""}, - {"endMark",734}, - {""}, {""}, {""}, - {"endHourTrend2",731}, - {""}, - {"coordAveraging2",575}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"ceilingAndVisibilityOK",387}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"totalNumberOfGridPoints",2180}, - {""}, {""}, {""}, {""}, - {"endHourTrend4",733}, + {"variationOfVisibilityTrend2",2316}, {""}, {""}, {""}, {"clusterMember5",532}, {""}, - {"runwayExtentOfContaminationState2",1832}, + {"reflectivityCalibrationConstant",1787}, + {"northLatitudeOfDomainOfTubing",1343}, + {"longitudeOfTheSouthernPoleOfProjection",1191}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"runwayExtentOfContaminationState4",1834}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"baseTimeOfThisLeg",328}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"baseDateOfThisLeg",326}, - {"cloudsAbbreviation3Trend2",438}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"listMembersMissing3",1105}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"numberInHorizontalCoordinates",1339}, - {"cloudsAbbreviation3Trend4",440}, - {""}, {""}, {""}, {""}, {""}, - {"setToMissingIfOutOfRange",2012}, - {""}, - {"typeOfProcessedData",2219}, - {""}, - {"cloudsAbbreviation1Trend2",428}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"section3UniqueIdentifier",1956}, - {""}, {""}, {""}, - {"numberOfGridInReference",1392}, - {""}, - {"YRInMetres",275}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation1Trend4",430}, - {""}, {""}, {""}, - {"DjGiven",36}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"disableGrib1LocalSection",688}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"legacyGaussSubarea",1084}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"ECMWF",46}, + {"YR",274}, {""}, {""}, - {"LLCOSP",100}, + {"qnhUnits",1736}, + {"horizontalDimensionProcessed",933}, + {"numberOfSingularVectorsEvolved",1456}, + {"typeOfProcessedData",2241}, + {""}, + {"DELETE",25}, + {""}, + {"changeIndicatorTrend1",410}, + {""}, + {"yearOfModelVersion",2404}, + {"section9UniqueIdentifier",1999}, + {"md5Section2",1259}, + {""}, + {"cloudsBaseCoded1Trend4",470}, + {""}, + {"section6UniqueIdentifier",1988}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded4Trend1",482}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"variationOfVisibilityDirectionTrend2",2312}, + {"parameterUnits",1644}, + {""}, {""}, {""}, {""}, + {"scaleFactorOfMajorAxisOfOblateSpheroidEarth",1887}, + {""}, {""}, {""}, {""}, + {"typeOfSSTFieldUsed",2242}, + {""}, + {"cloudsBaseCoded1Trend3",469}, + {"southLatitudeOfDomainOfTubing",2064}, + {""}, + {"padding_local40_1",1621}, + {""}, {""}, {""}, + {"mask",1238}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section8UniqueIdentifier",1996}, + {""}, + {"dayOfModelVersion",656}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"horizontalDomainTemplateNumber",935}, + {""}, {""}, + {"basicAngleOfTheInitialProductionDomain",330}, + {""}, {""}, {""}, {""}, {""}, + {"totalNumberOfGridPoints",2201}, + {""}, + {"hourOfModelVersion",941}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayExtentOfContaminationState3",1833}, - {"md5Section2",1246}, + {"scaleFactorOfCentralWaveNumber",1876}, + {""}, {""}, {""}, {""}, + {"pack",1556}, + {"section5Length",1982}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"longitudeOfThePoleOfStretching",1188}, + {""}, {""}, + {"variationOfVisibilityTrend1",2315}, + {""}, {""}, {""}, {""}, + {"section_7",2021}, + {""}, {""}, + {"section_07",2010}, + {""}, {""}, {""}, {""}, + {"NC2",176}, + {""}, {""}, {""}, + {"realPartOf00",1765}, + {""}, {""}, {""}, + {"qfeUnits",1732}, + {"legacyGaussSubarea",1094}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"cloudsAbbreviation2",431}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"unpack",2281}, + {""}, + {"eastLongitudeOfDomainOfTubing",715}, + {""}, {""}, + {"DjGiven",36}, + {""}, {""}, {""}, {""}, {""}, + {"DayOfModelVersion",30}, + {""}, {""}, {""}, + {"variationOfVisibilityDirectionTrend1",2311}, + {""}, {""}, + {"visibilityInKilometresTrend4",2342}, + {""}, {""}, {""}, {""}, {""}, + {"cfNameECMF",404}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"alternativeRowScanning",298}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"cloudsCode1",486}, + {"extractAreaEastLongitude",797}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBaseCoded2Trend4",475}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"offsetAfterData",1490}, + {""}, {""}, {""}, + {"section7Length",1990}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"visibilityInKilometresTrend3",2341}, + {""}, {""}, {""}, + {"clusterMember7",534}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"cloudsBaseCoded2Trend3",474}, + {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Used",137}, + {""}, + {"numberOfUnexpandedDescriptors",1463}, + {"numberOfGridInReference",1408}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"NRj",185}, + {""}, {""}, {""}, {""}, + {"monthlyVerificationYear",1321}, + {"cloudsCode2",491}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBase4",461}, + {""}, {""}, + {"Total_Number_Members_Missing",251}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"checkInternalVersion",419}, + {""}, + {"md5Section10",1258}, + {""}, {""}, + {"dayOfForecastUsedInLocalTime",655}, + {"observationDiagnostic",1478}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"scanningMode5",1925}, + {""}, + {"physicalMeaningOfVerticalCoordinate",1667}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"dateOfIceFieldUsed",642}, + {""}, {""}, {""}, {""}, {""}, + {"changeIndicatorTrend4",413}, + {""}, {""}, {""}, {""}, + {"cloudsBaseCoded4",481}, + {""}, {""}, {""}, {""}, + {"scaledValueOfPrimeMeridianOffset",1913}, + {""}, {""}, + {"northWestLatitudeOfVerficationArea",1345}, + {""}, {""}, + {"cloudsBaseCoded4Trend4",485}, + {"Local_Number_Members_Possible",133}, + {""}, {""}, + {"md5GridSection",1254}, + {""}, + {"numberOfUsedTileAttributes",1466}, + {"numberOfStepsUsedForClustering",1457}, + {""}, {""}, + {"Original_Parameter_Identifier",205}, + {""}, {""}, + {"pentagonalResolutionParameterJ",1656}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"changeIndicatorTrend3",412}, + {""}, {""}, {""}, {""}, + {"postAuxiliaryArrayPresent",1673}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"recentWeather",1767}, + {"cloudsBaseCoded4Trend3",484}, + {""}, {""}, + {"meanRVR2",1270}, + {"NC1",175}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Extra_Data_FreeFormat_0_none",57}, + {""}, {""}, + {"cloudsAbbreviation1",426}, + {"Threshold_Or_Distribution_Units",244}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"paramIdECMF",1633}, + {""}, {""}, {""}, {""}, {""}, + {"variationOfVisibilityTrend4",2318}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"typeOfGeneratingProcess",2230}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"variationOfVisibilityTrend3",2317}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"longitudeOfReferencePointInDegrees",1179}, + {""}, + {"section_11",2015}, + {""}, {""}, {""}, + {"jPointsAreConsecutive",1035}, + {""}, + {"variationOfVisibilityDirectionTrend4",2314}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"endMonthTrend4",746}, + {""}, + {"runwayDepositCodeState2",1822}, + {""}, {""}, {""}, {""}, + {"dateOfForecastUsedInLocalTime",641}, + {""}, + {"padding_loc9_2",1617}, + {""}, {""}, + {"timeOfForecastUsedInLocalTime",2183}, + {""}, {""}, {""}, + {"spacingOfBinsAlongRadials",2072}, + {""}, {""}, + {"numberOfParallelsBetweenAPoleAndTheEquator",1429}, + {"runwayDepthOfDepositCodeState2",1830}, + {"padding_loc30_2",1606}, + {"westLongitudeOfDomainOfTubing",2350}, + {""}, {""}, + {"runwayFrictionCodeValueState2",1854}, + {"variationOfVisibilityDirectionTrend3",2313}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"NEAREST",177}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"yearOfForecastUsedInLocalTime",2403}, + {""}, {""}, {""}, {""}, + {"scaleFactorOfEarthMajorAxis",1879}, + {"scaleFactorOfEarthMinorAxis",1880}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endMonthTrend3",745}, + {""}, + {"scanningMode7",1927}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"scaledValueOfSecondWavelength",1917}, + {""}, {""}, + {"latitudeOfTangencyPoint",1078}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"md5Section4",1261}, + {""}, + {"listMembersUsed2",1118}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"numberOfPointsAlongXAxis",1439}, + {"Ensemble_Combination_Number",51}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"disableGrib1LocalSection",692}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"hourOfForecastUsedInLocalTime",940}, + {""}, {""}, {""}, {""}, {""}, + {"typeOfPacking",2238}, + {""}, {""}, {""}, {""}, {""}, + {"meanRVR1",1269}, + {""}, {""}, {""}, {""}, {""}, + {"runwayDepthOfDepositCodeState1",1829}, + {"gribMasterTablesVersionNumber",901}, + {""}, {""}, {""}, + {"runwayFrictionCodeValueState1",1853}, + {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfFirstWavelength",1907}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"METAR",154}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"coordinate3OfFirstGridPoint",585}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"recentWeatherTry",1768}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"westLongitudeOfDomainOfTubing",2328}, + {"padding_sec3_1",1628}, + {""}, + {"numberOfUsedSpatialTiles",1465}, + {""}, + {"numberOfHorizontalPoints",1412}, + {""}, + {"Local_Number_Members_Missing",129}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"scanningMode5",1907}, - {"runwayExtentOfContaminationState1",1831}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"PUnset",210}, + {""}, {""}, {""}, + {"runwayDepositCodeState1",1821}, + {""}, {""}, {""}, {""}, {""}, + {"scaleFactorOfLengthOfSemiMajorAxis",1884}, + {"padding_loc9_1",1616}, + {"padding_loc7_1",1615}, + {""}, {""}, + {"padding_loc6_1",1614}, + {""}, {""}, {""}, {""}, + {"padding_loc3_1",1610}, + {""}, {""}, + {"padding_loc30_1",1605}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfSouthernPole",1181}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc5_1",1613}, + {""}, {""}, + {"padding_loc50_1",1612}, + {""}, {""}, {""}, {""}, {""}, + {"ccsdsBlockSize",383}, + {"padding_loc38_1",1609}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_local1_31",1620}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"numberOfSingularVectorsComputed",1455}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsCode4",501}, + {"Date_E4",29}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section2Used",1970}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"scaleFactorOfUpperLimit",1896}, + {""}, {""}, {""}, + {"numberOfMissingValues",1422}, + {""}, + {"latitudeOfLastGridPointInDegrees",1067}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"listMembersMissing2",1114}, + {""}, + {"Date_E3",28}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"flagForNormalOrStaggeredGrid",858}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extractAreaSouthLatitude",801}, + {""}, {""}, {""}, + {"projSourceString",1721}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayDepthOfDepositCodeState4",1832}, + {""}, {""}, {""}, {""}, + {"runwayFrictionCodeValueState4",1856}, + {""}, {""}, {""}, + {"radiusOfClusterDomain",1747}, + {""}, {""}, {""}, {""}, + {"scaleFactorOfMinorAxisOfOblateSpheroidEarth",1888}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"ITERATOR",92}, + {""}, {""}, {""}, {""}, + {"experimentVersionNumberOfAnalysis",788}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"runwayDepthOfDepositCodeState3",1831}, + {""}, {""}, {""}, {""}, + {"runwayFrictionCodeValueState3",1855}, + {""}, + {"resolutionAndComponentFlags2",1804}, + {""}, {""}, {""}, {""}, {""}, + {"versionNumOfSharedHeaderMessageFormat",2327}, + {""}, {""}, {""}, {""}, + {"cloudsBase3Trend2",458}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"ceilingAndVisibilityOK",387}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsAbbreviation4",441}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"projTargetString",1723}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"LLCOSP",100}, + {""}, {""}, + {"northWestLatitudeOfLPOArea",1344}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ZLBASE",281}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"cloudsAbbreviation3",436}, + {""}, {""}, {""}, {""}, + {"YRInMetres",275}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"paramIdLegacyECMF",1634}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"SOH",221}, + {""}, {""}, {""}, {""}, + {"skipExtraKeyAttributes",2055}, + {"beginMinuteTrend2",340}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"dateTimeOfForecastUsedInLocalTime",648}, + {"cloudsBase3Trend1",457}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"radiusOfTheEarth",1748}, + {""}, {""}, {""}, {""}, + {"localUsePresent",1158}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"listMembersUsed4",1120}, + {""}, + {"Y2",272}, + {"sizeOfPostAuxiliaryArrayPlusOne",2052}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"offsetBSection5",1494}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"theHindcastMarsStream",2155}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"Ensemble_Identifier_E2",53}, + {""}, {""}, {""}, + {"countOfGroupLengths",609}, + {""}, {""}, + {"inputOverriddenReferenceValues",978}, + {""}, {""}, + {"numberOfPointsAlongXAxisInCouplingArea",1440}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"typeOfWavelengthInterval",2249}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"offsetBeforePV",1500}, + {""}, + {"resolutionAndComponentFlags1",1803}, + {"beginMinuteTrend1",339}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"extractDateTimeEnd",806}, + {""}, {""}, {""}, + {"meanRVR4",1272}, + {"pentagonalResolutionParameterM",1658}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"shortNameLegacyECMF",2037}, + {""}, {""}, {""}, {""}, {""}, + {"longitudeOfThePolePoint",1189}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"************_ENSEMBLE_**************",1}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_grid90_1",1567}, + {"Minute_E2",158}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"meanRVR3",1271}, + {""}, {""}, {""}, {""}, {""}, + {"tempPressureUnits",2150}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"************_EXPERIMENT_************",2}, + {""}, {""}, + {"beginHourTrend2",336}, + {""}, + {"probProductDefinition",1709}, + {""}, {""}, {""}, + {"BBB",16}, + {""}, {""}, + {"widthOfWidths",2356}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_local11_1",1618}, + {""}, {""}, {""}, {""}, {""}, + {"runwayDepositCodeState4",1824}, + {""}, {""}, + {"numberOfBitsContainingEachPackedValue",1362}, + {""}, {""}, {""}, {""}, {""}, + {"beginMonthTrend3",345}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfRadarSitesUsed",1446}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Y1",270}, + {""}, + {"mixedCoordinateDefinition",1301}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"setToMissingIfOutOfRange",2031}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"pastTendencyRVR1",1651}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase3Trend4",460}, + {""}, + {"runwayDepositCodeState3",1823}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"endMark",738}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"ZLMULT",282}, + {"cloudsBase3Trend3",459}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"pastTendencyRVR2",1652}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extractDateTimeDayStart",805}, + {""}, {""}, {""}, {""}, {""}, + {"latitudeOfReferencePoint",1069}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"scaledValueOfMajorAxisOfOblateSpheroidEarth",1911}, + {""}, {""}, {""}, + {"jDirectionIncrementGiven",1031}, + {""}, {""}, {""}, {""}, {""}, + {"runwayFrictionCoefficientCodeState2",1858}, + {""}, {""}, {""}, {""}, + {"visibilityTrend1",2343}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfSecondOrderPackedValues",1453}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"beginMinuteTrend4",342}, + {""}, + {"cloudsCode3Trend2",498}, + {""}, {""}, {""}, {""}, + {"NH",179}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"scaledValueOfCentralWaveNumber",1900}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"beginMinuteTrend3",341}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"************_PRODUCT_***************",3}, + {""}, {""}, {""}, {""}, {""}, + {"beginHourTrend1",335}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"visibilityTrend2",2344}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"Ensemble_Identifier_E4",55}, + {""}, {""}, {""}, {""}, + {"Original_CodeTable_2_Version_Number",203}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"lengthOf4DvarWindow",1097}, + {"timeUnitFlag",2188}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"numberInHorizontalCoordinates",1354}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Ensemble_Identifier_E3",54}, + {""}, + {"uuidOfHGrid",2302}, + {""}, {""}, + {"runwayFrictionCoefficientCodeState1",1857}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"numberOfPointsAlongAMeridian",1433}, + {""}, + {"cloudsCode3Trend1",497}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"longitudeOfSouthernPoleInDegrees",1182}, + {""}, + {"northWestLongitudeOfLPOArea",1346}, + {""}, + {"weightAppliedToClimateMonth1",2348}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"experimentVersionNumber2",787}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsAbbreviation2Trend2",433}, + {""}, {""}, {""}, {""}, + {"padding_local_35",1622}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"endHourTrend2",735}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"listMembersMissing4",1116}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cfNameLegacyECMF",405}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"baseTimeOfThisLeg",329}, + {""}, + {"coordAveraging2",575}, + {""}, + {"numberOfPointsAlongSecondAxis",1436}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"baseDateOfThisLeg",327}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"NG",178}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_local_7_1",1623}, + {""}, {""}, {""}, {""}, + {"Local_Number_Members_Possible_E2",134}, + {""}, + {"runwayExtentOfContaminationState2",1850}, + {""}, + {"rootGroupSymbolTableEntry",1812}, + {""}, {""}, {""}, {""}, + {"cloudsAbbreviation1Trend2",428}, + {""}, {""}, + {"listMembersMissing3",1115}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"WRAPstr",260}, + {"runwayDesignatorRVR2",1838}, + {"Threshold_Or_Distribution_0_no_1_yes",243}, + {""}, + {"g1conceptsLocalDirAll",881}, + {""}, {""}, + {"resolutionAndComponentFlags4",1806}, + {""}, + {"setBitsPerValue",2027}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"HDF5",81}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"runwayDepthOfDepositState2",1834}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfReforecastYearsInModelClimate",1448}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfPointsAlongAParallel",1434}, + {""}, {""}, {""}, {""}, + {"laplacianScalingFactorUnset",1052}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"resolutionAndComponentFlags3",1805}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"section4UniqueIdentifier",1980}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"experimentVersionNumber1",786}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayExtentOfContaminationState1",1849}, + {""}, {""}, {""}, {""}, {""}, + {"beginYearTrend2",348}, + {"cloudsAbbreviation2Trend1",432}, + {""}, + {"runwayFrictionCoefficientCodeState4",1860}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"section3UniqueIdentifier",1975}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Missing_E2",130}, + {""}, {""}, + {"cloudsCode3Trend4",500}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayFrictionCoefficientCodeState3",1859}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"endHourTrend1",734}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"typicalYear2",2260}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsCode3Trend3",499}, + {""}, + {"scaledValueOfEarthMajorAxis",1903}, + {"scaledValueOfEarthMinorAxis",1904}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"coordAveraging1",574}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"pastTendencyRVR4",1654}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"jDirectionIncrementGridLength",1032}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"constantAntennaElevationAngle",568}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"numberOfPointsAlongFirstAxis",1435}, + {""}, + {"cloudsAbbreviation1Trend1",427}, + {""}, + {"windGustTrend2",2364}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"runwayDesignatorRVR1",1837}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"latitudeOfReferencePointInDegrees",1070}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"runwayDepthOfDepositState1",1833}, + {""}, {""}, + {"section5UniqueIdentifier",1984}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"ccsdsCompressionOptionsMask",384}, + {""}, + {"cloudsAbbreviation4Trend2",443}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"visibilityTrend4",2346}, + {"Less_Than_Or_To_Overall_Distribution",122}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"longitudeOfThePolePointInDegrees",1190}, + {"Minute_E4",160}, + {""}, {""}, {""}, + {"cloudsAbbreviation3Trend2",438}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"beginYearTrend1",347}, + {""}, {""}, {""}, {""}, {""}, + {"beginHourTrend4",338}, + {"scaledValueOfLengthOfSemiMajorAxis",1908}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfPressureLevelsUsedForClustering",1445}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"Minute_E3",159}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"section7UniqueIdentifier",1992}, + {"is_chemical_srcsink",1015}, + {""}, {""}, {""}, {""}, + {"Local_Number_Members_Possible_E4",136}, + {""}, + {"runwayExtentOfContaminationState4",1852}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather2Present",1692}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"beginHourTrend3",337}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"hoursAfterReferenceTimeOfDataCutoff",944}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Possible_E3",135}, + {""}, + {"runwayExtentOfContaminationState3",1851}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"unitsLegacyECMF",2277}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"qualityValueAssociatedWithParameter",1739}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"typeOfLevelECMF",2236}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"windGustTrend1",2363}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"scaledValueOfUpperLimit",1920}, + {"padding_grid1_2",1562}, + {""}, {""}, {""}, {""}, + {"uvRelativeToGrid",2304}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"endYearTrend2",757}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"cloudsAbbreviation4Trend1",442}, + {""}, + {"presentWeather1Present",1687}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Missing_E4",132}, + {""}, {""}, {""}, + {"ECMWF",46}, + {""}, {""}, + {"oneMinuteMeanMaximumRVR2",1526}, + {""}, {""}, {""}, + {"scaledValueOfMinorAxisOfOblateSpheroidEarth",1912}, + {"padding_loc19_2",1587}, + {""}, {""}, + {"latitudeOfThePolePoint",1080}, + {""}, + {"cloudsAbbreviation3Trend1",437}, + {""}, {""}, {""}, {""}, {""}, + {"sourceSinkChemicalPhysicalProcess",2058}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Number_Combination_Ensembles_1_none",198}, + {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Missing_E3",131}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"padding_loc18_2",1581}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"resolutionAndComponentFlags7",1808}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"windUnitsTrend2",2375}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_sec2_2",1626}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"isCavok",995}, + {"ICPLSIZE",88}, + {"cloudsAbbreviation2Trend4",435}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"missingValueManagementUsed",1299}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_grid1_1",1561}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfPointsUsed",1444}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfBitsUsedForTheScaledGroupLengths",1365}, + {""}, {""}, {""}, {""}, + {"padding_loc2_2",1604}, + {"endYearTrend1",756}, + {""}, {""}, {""}, + {"padding_loc29_2",1601}, + {""}, + {"endHourTrend4",737}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {"cloudsAbbreviation2Trend3",434}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"oneMinuteMeanMaximumRVR1",1525}, + {""}, {""}, + {"padding_loc10_1",1568}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc16_1",1578}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"endHourTrend3",736}, + {""}, {""}, {""}, + {"BUFR",19}, + {""}, {""}, {""}, {""}, + {"extractDateTimeDayEnd",803}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsAbbreviation1Trend4",430}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"runwayDesignatorRVR4",1840}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc18_1",1580}, + {""}, {""}, {""}, + {"coordAveraging3",576}, + {""}, {""}, + {"padding_local1_1",1619}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc4_2",1611}, + {""}, + {"presentWeather3Present",1697}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc37_2",1608}, + {""}, + {"GRIB",71}, + {""}, {""}, + {"runwayDepthOfDepositState4",1836}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"cloudsAbbreviation1Trend3",429}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"runwayDesignatorRVR3",1839}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"extractAreaLongitudeRank",799}, + {""}, {""}, {""}, {""}, {""}, + {"windUnitsTrend1",2374}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_sec2_1",1625}, + {""}, {""}, {""}, + {"versionNumberOfSuperblock",2330}, + {""}, {""}, {""}, {""}, + {"runwayDepthOfDepositState3",1835}, + {""}, {""}, {""}, {""}, {""}, + {"XpInGridLengths",269}, + {""}, {""}, {""}, {""}, + {"cfVarNameLegacyECMF",408}, + {"beginYearTrend4",350}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"TYPE_FF",238}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc2_1",1603}, + {""}, {""}, + {"padding_loc20_1",1588}, + {""}, + {"padding_loc29_1",1600}, + {""}, {""}, {""}, {""}, + {"padding_loc26_1",1596}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"typicalYearOfCentury",2261}, + {""}, {""}, + {"beginYearTrend3",349}, + {"coordinate4OfFirstGridPoint",588}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase1Trend2",448}, + {""}, {""}, + {"padding_grid4_1",1564}, + {""}, {""}, {""}, {""}, {""}, + {"TYPE_OF",240}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc28_1",1599}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfPointsAlongTheXAxis",1437}, + {""}, {""}, {""}, {""}, {""}, + {"padding_sec4_1",1629}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"beginMonthTrend1",343}, + {""}, + {"padding_grid3_1",1563}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"CLNOMA",24}, + {""}, {""}, + {"windGustTrend4",2366}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"RENAME",216}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"padding_loc190_1",1582}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_loc37_1",1607}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"beginMonthTrend2",344}, + {""}, {""}, {""}, {""}, + {"cloudsAbbreviation4Trend4",445}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"windGustTrend3",2365}, + {""}, {""}, + {"padding_loc191_3",1585}, + {""}, {""}, {""}, {""}, + {"cloudsBase1Trend1",447}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"latitudeOfThePoleOfStretching",1079}, + {""}, {""}, + {"cloudsAbbreviation3Trend4",440}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"latitudeOfTheSouthernPoleOfProjection",1082}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"cloudsAbbreviation4Trend3",444}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"observationDiagnostic",1461}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"resolutionAndComponentFlags3",1787}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"laplacianScalingFactorUnset",1042}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetToEndOf4DvarWindow",1502}, - {"typeOfGeneratingProcess",2208}, - {""}, {""}, - {"cloudsAbbreviation2Trend1",432}, - {""}, - {"numberOfBitsForScaledGroupLengths",1348}, - {""}, {""}, - {"Y2",272}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"horizontalDomainTemplateNumber",931}, - {"cloudsAbbreviation4Trend1",442}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCoefficientCodeState2",1840}, - {""}, {""}, - {"endHourTrend3",732}, - {""}, - {"coordAveraging3",576}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayFrictionCoefficientCodeState4",1842}, - {""}, {""}, {""}, {""}, - {"resolutionAndComponentFlags1",1785}, {""}, {""}, {""}, - {"visibilityTrend4",2324}, + {"cloudsBase2Trend2",453}, {""}, {""}, - {"numberOfSecondOrderPackedValues",1437}, + {"padding_grid5_1",1566}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode3Trend2",498}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"CLNOMA",24}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsCode3Trend4",500}, - {""}, {""}, {""}, {""}, - {"numberOfBytesPerInteger",1353}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfUsefulPointsAlongXAxis",1467}, {""}, {""}, {""}, {""}, {"cloudsAbbreviation3Trend3",439}, - {""}, {""}, - {"endHourTrend1",730}, - {""}, - {"coordAveraging1",574}, - {"horizontalDimensionProcessed",929}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"qualityValueAssociatedWithParameter",1722}, - {""}, {""}, {""}, - {"unitsLegacyECMF",2255}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"cloudsAbbreviation1Trend3",429}, + {"latitudeOfThePolePointInDegrees",1081}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"cloudsAbbreviation3Trend1",437}, - {""}, {""}, - {"padding_sec1_loc",1607}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"section_7",2002}, - {"typeOfLevelECMF",2214}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"runwayFrictionCoefficientCodeState3",1841}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"hoursAfterDataCutoff",943}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsAbbreviation1Trend1",427}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"scaledValueOfMinorAxisOfOblateSpheroidEarth",1894}, - {"ICPLSIZE",88}, + {"offsetToEndOf4DvarWindow",1519}, {""}, {""}, {""}, {""}, {""}, - {"commonBlock",551}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsCode3Trend3",499}, - {""}, {""}, {""}, - {"runwayFrictionCoefficientCodeState1",1839}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"runwayDepthOfDepositState2",1816}, + {"superblockExtensionAddress",2131}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode3Trend1",497}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayDepthOfDepositState4",1818}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase4Trend2",463}, {""}, - {"presentWeather2Present",1675}, + {"cloudsBase2Trend1",452}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"Minute_E2",158}, + {""}, {""}, + {"endYearTrend4",759}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"oneMinuteMeanMinimumRVR2",1530}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"pastTendencyRVR4",1637}, + {"oneMinuteMeanMaximumRVR4",1528}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"Hour_E2",84}, {""}, {""}, - {"runwayDesignatorRVR2",1820}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"FMULTE",66}, - {""}, - {"longitudeOfSouthernPoleInDegrees",1170}, - {""}, - {"Minute_E4",160}, - {"latitudeOfReferencePointInDegrees",1060}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayDesignatorRVR4",1822}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"scaledValueOfCentralWaveNumber",1882}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetFromOriginToInnerBound",1487}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"ZLBASE",281}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfPressureLevelsUsedForClustering",1429}, - {""}, {""}, - {"superblockExtensionAddress",2112}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"visibilityTrend2",2322}, - {""}, {""}, {""}, {""}, - {"Y1",270}, - {""}, {""}, {""}, - {"section_07",1991}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded1Trend2",468}, - {""}, {""}, {""}, - {"oneMinuteMeanMaximumRVR2",1509}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded1Trend4",470}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"presentWeather3Present",1680}, - {""}, {""}, {""}, {""}, - {"oneMinuteMeanMaximumRVR4",1511}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"presentWeather1Present",1670}, - {""}, - {"subdivisionsOfBasicAngle",2110}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"numberOfReforecastYearsInModelClimate",1432}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"beginMonthTrend1",342}, - {""}, - {"section_11",1996}, + {"endYearTrend3",758}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"longitudeOfThePolePointInDegrees",1178}, - {""}, {""}, - {"section7UniqueIdentifier",1973}, + {"altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius",299}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"flagForNormalOrStaggeredGrid",854}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"scaledValueOfUpperLimit",1902}, - {"cloudsBase1",446}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"uuidOfHGrid",2280}, - {""}, {""}, {""}, {""}, - {"latitudeOfLastGridPointInDegrees",1057}, - {"latitudeOfThePolePoint",1070}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"md5GridSection",1241}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"windUnitsTrend2",2353}, - {""}, {""}, {""}, {""}, {""}, - {"runwayDepthOfDepositState3",1817}, - {""}, {""}, - {"offsetBeforePL",1482}, - {""}, {""}, - {"extractAreaLongitudeRank",795}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded1Trend3",469}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windUnitsTrend4",2355}, + {"cloudsBase1Trend4",450}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsBase4Trend1",462}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded1",466}, - {"ccsdsCompressionOptionsMask",384}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded1Trend1",467}, - {""}, {""}, - {"Minute_E3",159}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"runwayDesignatorRVR3",1821}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"runwayDepthOfDepositState1",1815}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"pastTendencyRVR2",1635}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"scaledValueOfLengthOfSemiMajorAxis",1890}, - {"missingValueManagementUsed",1285}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Total_Number_Members_Used",253}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfUsefulPointsAlongXAxis",1450}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"experimentVersionNumber2",783}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"runwayDesignatorRVR1",1819}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"radiusOfClusterDomain",1729}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"numberOfPointsUsed",1428}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"coordinate3OfFirstGridPoint",585}, - {""}, {""}, - {"beginYearTrend2",347}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"oneMinuteMeanMaximumRVR3",1510}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Total_Number_Members_Possible",252}, - {""}, {""}, {""}, - {"beginYearTrend4",349}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"oneMinuteMeanMaximumRVR1",1508}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"countOfGroupLengths",609}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"g1conceptsLocalDirAll",877}, - {""}, {""}, {""}, {""}, {""}, - {"intervalBetweenTimes",986}, - {""}, - {"extractDateTimeDayStart",801}, - {""}, {""}, {""}, {""}, {""}, - {"section5UniqueIdentifier",1965}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"windUnitsTrend3",2354}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"section_5",2000}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"spacingOfBinsAlongRadials",2053}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cfVarNameLegacyECMF",408}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"probProductDefinition",1692}, + {"oneMinuteMeanMaximumRVR3",1527}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windUnitsTrend1",2352}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"rootGroupSymbolTableEntry",1794}, - {"************_EXPERIMENT_************",2}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"Total_Number_Members_Missing",251}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"sourceSinkChemicalPhysicalProcess",2039}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"isCavok",989}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"beginYearTrend3",348}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"HDF5",81}, - {""}, {""}, {""}, {""}, {""}, - {"experimentVersionNumber1",782}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Used",137}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"latitudeOfThePoleOfStretching",1069}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"beginYearTrend1",346}, - {""}, {""}, - {"section_05",1989}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"Extra_Data_FreeFormat_0_none",57}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"beginMonthTrend4",345}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"jDirectionIncrementGiven",1023}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"endYearTrend2",753}, - {"cloudsCode1Trend2",488}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase4",461}, - {""}, {""}, - {"latitudeOfSouthEastCornerOfArea",1061}, - {"Local_Number_Members_Possible",133}, - {""}, - {"mixedCoordinateDefinition",1287}, - {"cloudsCode1Trend4",490}, - {"WRAP",259}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"endYearTrend4",755}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"padding_local11_1",1601}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"ICEFieldsUsed",87}, - {""}, - {"latitudeOfTheSouthernPoleOfProjection",1072}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded4Trend2",483}, - {""}, {""}, - {"cloudsBaseCoded4",481}, - {""}, {""}, {""}, {""}, {""}, - {"Original_Parameter_Identifier",205}, - {""}, {""}, {""}, {""}, - {"cloudsBaseCoded4Trend4",485}, - {""}, {""}, - {"FMULTM",67}, - {""}, {""}, {""}, {""}, - {"latitudeOfThePolePointInDegrees",1071}, + {"cloudsBase1Trend3",449}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"oneMinuteMeanMinimumRVR2",1513}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"oneMinuteMeanMinimumRVR4",1515}, - {""}, - {"versionNumberOfSuperblock",2308}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsCode1Trend3",489}, - {""}, {""}, {""}, {""}, {"HourOfModelVersion",83}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"resolutionAndComponentFlags7",1790}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_grid50_1",1565}, + {""}, {""}, {""}, + {"windUnitsTrend4",2377}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsCode1Trend2",488}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"windUnitsTrend3",2376}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc9_2",1600}, - {""}, {""}, {""}, + {"padding_sec2_3",1627}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"oneMinuteMeanMinimumRVR1",1529}, + {""}, {""}, {""}, {""}, + {"cloudsBase2Trend4",455}, + {""}, {""}, {""}, {""}, {""}, + {"WRAP",259}, + {""}, {""}, {""}, {""}, {""}, + {"RVR2_1",218}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"padding_loc29_3",1602}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"beginMonthTrend4",346}, + {"cloudsBase2Trend3",454}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {"cloudsCode1Trend1",487}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"FMULTE",66}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius",298}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"************_PRODUCT_***************",3}, + {"bufrHeaderSubCentre",373}, {""}, {""}, {""}, {""}, - {"extractDateTimeDayEnd",799}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded4Trend3",484}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Missing",129}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractAreaLatitudeRank",794}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded4Trend1",482}, + {"ICEFieldsUsed",87}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"typicalYear2",2238}, {""}, {""}, {""}, {""}, - {"Ensemble_Identifier_E2",53}, + {"cloudsCode2Trend2",493}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBase4Trend4",465}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"endYearTrend3",754}, - {"beginMonthTrend2",343}, - {"Ensemble_Identifier_E4",55}, + {""}, {""}, {""}, {""}, + {"RVR1_1",217}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"cloudsBase4Trend3",464}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase2",451}, + {"FMULTM",67}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"numberOfTensOfThousandsOfYearsOfOffset",1459}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"DIAG",26}, + {""}, + {"GRIBEditionNumber",75}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"endYearTrend1",752}, - {"uvRelativeToGrid",2282}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"bufrHeaderSubCentre",372}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded2",471}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded2Trend2",473}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"cloudsBaseCoded2Trend4",475}, - {"oneMinuteMeanMinimumRVR3",1514}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"windGustTrend2",2342}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Ensemble_Identifier_E3",54}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"windGustTrend4",2344}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"numberOfBitsContainingEachPackedValue",1347}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"oneMinuteMeanMinimumRVR1",1512}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"jDirectionIncrementGridLength",1024}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"typicalYearOfCentury",2239}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc9_1",1599}, - {"padding_loc7_1",1598}, - {""}, {""}, {""}, {""}, {""}, - {"Hour_E2",84}, - {""}, {""}, {""}, - {"padding_loc6_1",1597}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBaseCoded2Trend3",474}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"Hour_E4",86}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"cloudsBaseCoded2Trend1",472}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc5_1",1596}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"numberOfPointsAlongYAxis",1425}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"XpInGridLengths",269}, - {"offsetBBitmap",1476}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc30_2",1589}, - {""}, - {"runwayExtentOfContaminationCodeState2",1828}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"runwayExtentOfContaminationCodeState4",1830}, - {""}, {""}, {""}, {""}, - {"*********_EXTRA_DATA_***************",4}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"windGustTrend3",2343}, - {""}, {""}, {""}, {""}, - {"biFourierPackingModeForAxes",352}, - {""}, {""}, {""}, {""}, - {"padding_grid90_1",1550}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {"cloudsCode4Trend2",503}, - {""}, {""}, - {"cloudsBase3Trend2",458}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode4Trend4",505}, - {""}, {""}, - {"cloudsBase3Trend4",460}, - {""}, {""}, - {"padding_sec3_1",1611}, + {"cloudsCode2Trend1",492}, + {""}, + {"numberOfGridUsed",1409}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extractAreaLatitudeRank",798}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"isCavokTrend2",997}, + {""}, {""}, {""}, {""}, {""}, + {"numberOfPointsAlongYAxis",1441}, {""}, {""}, {""}, {""}, - {"windGustTrend1",2341}, + {"Ensemble_Combinat_Number_0_none_E2",48}, + {""}, + {"LBC_Initial_Conditions",98}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"padding_loc50_1",1595}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"runwayExtentOfContaminationCodeState3",1829}, + {""}, {""}, + {"ECMWF_s",47}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"cloudsCode1Trend4",490}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"cloudsCode4Trend1",502}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"latitudeOfSouthEastCornerOfArea",1071}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"cloudsCode1Trend3",489}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"RVR4_1",220}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc3_1",1593}, + {"INGRIB",91}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"RVR3_1",219}, + {"YearOfModelVersion",277}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Hour_E3",85}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"isCavokTrend1",996}, {""}, {""}, {""}, {""}, {"ceilingAndVisibilityOKTrend2",389}, - {""}, {""}, - {"runwayExtentOfContaminationCodeState1",1827}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"ceilingAndVisibilityOKTrend4",391}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_local1_31",1603}, {""}, {""}, {""}, - {"hoursAfterDataCutoff",938}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc38_1",1592}, - {""}, {""}, {""}, - {"cloudsCode4Trend3",504}, - {""}, {""}, - {"cloudsBase3Trend3",459}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"NB",173}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"offsetBeforeBitmap",1480}, - {""}, - {"ccsdsBlockSize",383}, - {""}, {""}, {""}, {""}, - {"cloudsCode4Trend1",502}, - {""}, {""}, - {"cloudsBase3Trend1",457}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfTensOfThousandsOfYearsOfOffset",1443}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"lastMonthUsedToBuildClimateMonth2",1044}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"biFourierPackingModeForAxes",353}, + {""}, {""}, {""}, {""}, {""}, + {"runwayExtentOfContaminationCodeState2",1846}, {""}, {""}, {""}, {""}, {""}, - {"isCavokTrend2",991}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"isCavokTrend4",993}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc30_1",1588}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfParametersUsedForClustering",1414}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode2Trend2",493}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"ECMWF_s",47}, - {""}, {""}, {"cloudsCode2Trend4",495}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"TYPE_OF",240}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"TYPE_FF",238}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Original_CodeTable_2_Version_Number",203}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"ceilingAndVisibilityOKTrend3",390}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"lastMonthUsedToBuildClimateMonth1",1043}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"LSTCUM",101}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"NG",178}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"ceilingAndVisibilityOKTrend1",388}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Threshold_Or_Distribution_Units",244}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfPointsAlongYAxisInCouplingArea",1426}, - {""}, {""}, {""}, {""}, {""}, {"cloudsCode2Trend3",494}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"offsetBeforePV",1483}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"oneMinuteMeanMinimumRVR4",1532}, + {""}, {""}, + {"padding_loc12_1",1569}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Hour_E4",86}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsCode2Trend1",492}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayExtentOfContaminationCodeState1",1845}, + {""}, {""}, {""}, + {"cloudsCode4Trend4",505}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"oneMinuteMeanMinimumRVR3",1531}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"Hour_E3",85}, + {""}, {""}, {""}, {""}, + {"Ensemble_Combinat_Number_0_none_E4",50}, + {""}, {""}, {""}, + {"cloudsCode4Trend3",504}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"*********_EXTRA_DATA_***************",4}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"Ensemble_Combinat_Number_0_none_E3",49}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"isCavokTrend3",992}, - {"Local_Number_Members_Possible_E2",134}, + {"X2InGridLengths",264}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"Local_Number_Members_Possible_E4",136}, - {""}, {""}, {""}, {""}, - {"numberOfGridUsed",1393}, + {""}, {""}, + {"ceilingAndVisibilityOKTrend1",388}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"numberOfParametersUsedForClustering",1430}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc14_2",1576}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"isCavokTrend1",990}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"coordinate4OfFirstGridPoint",588}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Missing_E2",130}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Number_Combination_Ensembles_1_none",198}, - {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Missing_E4",132}, + {"padding_loc13_2",1571}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeYearRank",817}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"numberOfPointsAlongYAxisInCouplingArea",1442}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"X1InGridLengths",262}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"Time_Range_One_E2",245}, {"TYPE_FX",239}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Local_Number_Members_Possible_E3",135}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"padding_local_7_1",1606}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"YearOfModelVersion",277}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc19_2",1570}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"Local_Number_Members_Missing_E3",131}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc18_2",1564}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_local_35",1605}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"octetAtWichPackedDataBegins",1469}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfBitsUsedForTheScaledGroupLengths",1350}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"unusedBitsInBitmap",2268}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"************_ENSEMBLE_**************",1}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsBase1Trend2",448}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"cloudsBase1Trend4",450}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_grid1_2",1545}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc192_1",1586}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc21_1",1589}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather2PresentTrend2",1677}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather2PresentTrend4",1679}, - {"BUFR",19}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc190_1",1565}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_local1_1",1602}, - {""}, {""}, - {"extractDateTimeHourRank",804}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_loc18_1",1563}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase1Trend3",449}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"X2InGridLengths",264}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"cloudsBase1Trend1",447}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"setBitsPerValue",2008}, - {""}, {""}, {""}, {""}, - {"extractDateTimeSecondRank",813}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"padding_grid4_1",1547}, - {""}, - {"offsetBSection5",1477}, - {""}, {""}, {""}, {""}, {""}, - {"presentWeather3PresentTrend2",1682}, - {""}, {""}, - {"RVR2_1",218}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"RVR4_1",220}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"presentWeather3PresentTrend4",1684}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather1PresentTrend2",1672}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_loc10_1",1551}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather1PresentTrend4",1674}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"extremeValuesRVR2",828}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"extremeValuesRVR4",830}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc191_3",1568}, - {""}, {""}, {""}, {""}, - {"X1InGridLengths",262}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_grid3_1",1546}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc16_1",1561}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"presentWeather2PresentTrend3",1678}, - {""}, {""}, - {"RVR3_1",219}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_grid1_1",1544}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"RVR1_1",217}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"presentWeather2PresentTrend1",1676}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfPointsAlongTheYAxis",1422}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_loc4_2",1594}, - {"extremeValuesRVR3",829}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"extremeValuesRVR1",827}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeMinuteRank",807}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"presentWeather3PresentTrend3",1683}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeMonthRank",810}, - {""}, - {"DIAG",26}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"presentWeather1PresentTrend3",1673}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"presentWeather3PresentTrend1",1681}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"presentWeather1PresentTrend1",1671}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"numberOfVGridUsed",1452}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_sec2_2",1609}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"cloudsBase4Trend2",463}, - {""}, {""}, - {"TYPE_OR",241}, - {""}, {""}, {""}, {""}, - {"padding_loc37_2",1591}, - {""}, {""}, {""}, {""}, {""}, - {"cloudsBase4Trend4",465}, - {""}, {""}, - {"padding_sec4_1",1612}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_loc2_2",1587}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_loc29_2",1584}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {"TYPE_PF",242}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase4Trend3",464}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"ExtremeValuesRVR2",63}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"ExtremeValuesRVR4",65}, - {""}, {""}, - {"cloudsBase4Trend1",462}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Ensemble_Combinat_Number_0_none_E2",48}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"Ensemble_Combinat_Number_0_none_E4",50}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc14_2",1559}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_sec2_3",1610}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"ExtremeValuesRVR3",64}, - {"precisionOfTheUnpackedSubset",1661}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayExtentOfContaminationCodeState4",1848}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase2Trend2",453}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"cloudsBase2Trend4",455}, - {""}, {""}, - {"padding_sec2_1",1608}, - {""}, {""}, - {"padding_loc29_3",1585}, - {"ExtremeValuesRVR1",62}, - {""}, {""}, {""}, {""}, {""}, {"Missing_Model_LBC",161}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"runwayExtentOfContaminationCodeState3",1847}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extractDateTimeDayRank",800}, - {""}, {""}, - {"padding_loc37_1",1590}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Ensemble_Combinat_Number_0_none_E3",49}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"7777",5}, - {""}, - {"padding_loc13_2",1554}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc2_1",1586}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_loc29_1",1583}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc13_4",1556}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Time_Range_One_E2",245}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc192_1",1569}, + {"padding_loc14_1",1575}, {""}, {""}, {""}, {""}, + {"padding_loc191_1",1583}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"padding_loc13_1",1570}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"GG",70}, + {""}, {""}, {""}, {""}, + {"padding_loc17_2",1579}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc191_2",1584}, + {""}, + {"isCavokTrend4",999}, + {""}, {""}, {""}, + {"TYPE_OR",241}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Used_E2",138}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"extractDateTimeYearRank",821}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"extractDateTimeHourRank",808}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"isCavokTrend3",998}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"LSTCUM",101}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc15_1",1577}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"padding_loc23_1",1590}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"padding_loc27_2",1598}, + {""}, {""}, {""}, {""}, {""}, {"Time_Range_One_E4",247}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc28_1",1582}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase2Trend3",454}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"CCCC",21}, + {"numberOfVGridUsed",1469}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Time_Range_One_E3",246}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"ceilingAndVisibilityOKTrend4",391}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"ceilingAndVisibilityOKTrend3",390}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc27_1",1597}, + {""}, {""}, {""}, + {"lastMonthUsedToBuildClimateMonth2",1054}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"cloudsBase2Trend1",452}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"genVertHeightCoords",881}, + {"extremeValuesRVR2",832}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"TYPE_CF",236}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_grid5_1",1549}, + {"extractDateTimeSecondRank",817}, + {""}, {""}, + {"lastMonthUsedToBuildClimateMonth1",1053}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_loc13_4",1573}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"extractDateTimeDayRank",804}, + {""}, {""}, + {"extremeValuesRVR1",831}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfUsefulPointsAlongYAxis",1451}, + {"padding_loc13_3",1572}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"ExtremeValuesInMaximumRVR2",59}, - {""}, {""}, {""}, - {"Time_Range_One_E3",246}, {""}, {""}, {""}, {""}, - {"padding_grid50_1",1548}, + {"presentWeather2PresentTrend2",1694}, + {""}, {""}, + {"7777",5}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"presentWeather1PresentTrend2",1689}, + {"padding_loc244_3",1593}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"Original_Parameter_Iden_CodeTable2",204}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc12_1",1552}, - {""}, {""}, - {"ExtremeValuesInMaximumRVR4",61}, - {"padding_loc20_1",1571}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"TYPE_CF",236}, + {"Model_LBC_Member_Identifier",167}, + {"Local_Number_Members_Used_E4",140}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"extractDateTimeMinuteRank",811}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"presentWeather2PresentTrend1",1693}, {""}, - {"padding_loc14_1",1558}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_loc191_1",1566}, + {"extractDateTimeMonthRank",814}, + {"extremeValuesRVR4",834}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"extremeValuesRVR3",833}, + {""}, {""}, {""}, {""}, {""}, + {"Local_Number_Members_Used_E3",139}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc13_5",1574}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc13_3",1555}, + {"octetAtWichPackedDataBegins",1486}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather1PresentTrend1",1688}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather3PresentTrend2",1699}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc26_1",1579}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"CCCC",21}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"swapScanningY",2135}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"runwayBrakingActionState2",1818}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"TYPE_AN",235}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"YpInGridLengths",280}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather3PresentTrend1",1698}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"numberOfPointsAlongTheYAxis",1438}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather2PresentTrend4",1696}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"runwayBrakingActionState1",1817}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"YY",276}, + {""}, + {"presentWeather2PresentTrend3",1695}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"ExtremeValuesInMaximumRVR2",59}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather1PresentTrend4",1691}, + {""}, {""}, {""}, + {"numberOfUsefulPointsAlongYAxis",1468}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"P_TACC",213}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"presentWeather1PresentTrend3",1690}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"ExtremeValuesRVR2",63}, + {"Missing_Model_LBC_E2",162}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"numberOfUnusedBitsAtEndOfSection3",1464}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc13_1",1553}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"swapScanningY",2116}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ExtremeValuesInMaximumRVR1",58}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ExtremeValuesRVR1",62}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"presentWeather3PresentTrend4",1701}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, + {"presentWeather3PresentTrend3",1700}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"GRIBEXSection1Problem",72}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"genVertHeightCoords",885}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"runwayBrakingActionState4",1820}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"ExtremeValuesRVR4",65}, + {""}, {""}, {""}, {""}, {""}, + {"runwayBrakingActionState3",1819}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"At_least__Or_Distribut_Proportion_Of",14}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"precisionOfTheUnpackedSubset",1678}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"ExtremeValuesRVR3",64}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Time_Range_Two_E2",248}, + {""}, {""}, {""}, + {"padding_loc244_1",1591}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"padding_loc244_2",1592}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"extremeCounterClockwiseWindDirection",830}, + {""}, {""}, {""}, {""}, + {"ExtremeValuesInMaximumRVR4",61}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"padding_loc245_1",1594}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"ExtremeValuesInMaximumRVR3",60}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7037,96 +7475,13 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"ExtremeValuesInMaximumRVR1",58}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"extremeCounterClockwiseWindDirection",826}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"Threshold_Or_Distribution_0_no_1_yes",243}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc17_2",1562}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"GRIBEditionNumber",75}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"Less_Than_Or_To_Overall_Distribution",122}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"bitsPerValueAndRepack",365}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"YY",276}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"P_TACC",213}, + {"padding_loc245_2",1595}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"Missing_Model_LBC_E2",162}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {"Missing_Model_LBC_E4",164}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7134,245 +7489,30 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc191_2",1567}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"lBB",1037}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"YpInGridLengths",280}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"padding_loc15_1",1560}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {"Missing_Model_LBC_E3",163}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfUnusedBitsAtEndOfSection3",1447}, - {""}, {""}, {""}, {""}, - {"padding_loc244_3",1576}, + {""}, {""}, {""}, {""}, {""}, {""}, + {"NINT_RITZ_EXP",181}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_loc23_1",1573}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"runwayBrakingActionState2",1800}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"LBC_Initial_Conditions",98}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_loc21_1",1572}, - {"runwayBrakingActionState4",1802}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"GG",70}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc27_2",1581}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"runwayBrakingActionState3",1801}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"runwayBrakingActionState1",1799}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"Time_Range_Two_E2",248}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {"Time_Range_Two_E4",250}, - {""}, - {"Local_Number_Members_Used_E2",138}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Local_Number_Members_Used_E4",140}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"Time_Range_Two_E3",249}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"meanValueRVR2",1262}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc27_1",1580}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"meanValueRVR4",1264}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"Local_Number_Members_Used_E3",139}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"padding_loc13_5",1557}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {"TYPE_FC",237}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"meanValueRVR3",1263}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"meanValueRVR1",1261}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"padding_loc244_1",1574}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, - {"gts_CCCC",916}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, + {""}, {"Y2InGridLengths",273}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7387,21 +7527,12 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"GRIBEXShBugPresent",73}, + {""}, {""}, + {"gts_CCCC",920}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"GRIB",71}, - {""}, {""}, {""}, {""}, - {"Original_Parameter_Iden_CodeTable2",204}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {"Y1InGridLengths",271}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7415,174 +7546,7 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"GRIBEXSection1Problem",72}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"NINT_RITZ_EXP",181}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"padding_loc244_2",1575}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"padding_loc245_1",1577}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"INGRIB",91}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Model_LBC_Member_Identifier",167}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {"P_TAVG",214}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7604,6 +7568,21 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Show_Combination_Ensem_E2_0_no_1_yes",225}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"BUDG",18}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"bitsPerValueAndRepack",366}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7641,8 +7620,45 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"Show_Combination_Ensem_E4_0_no_1_yes",227}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Show_Combination_Ensem_E3_0_no_1_yes",226}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"meanValueRVR2",1275}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"padding_loc245_2",1578}, + {"GRIBEX_boustrophedonic",74}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7671,6 +7687,59 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, + {"meanValueRVR1",1274}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Used_Model_LBC",254}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, + {"numberOfBitsUsedForTheGroupWidths",1364}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7703,9 +7772,8 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"meanValueRVR4",1277}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7715,7 +7783,7 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"numberOfBitsUsedForTheGroupWidths",1349}, + {"meanValueRVR3",1276}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7731,8 +7799,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"BBB",16}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7759,17 +7825,10 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Show_Combination_Ensem_E2_0_no_1_yes",225}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"Show_Combination_Ensem_E4_0_no_1_yes",227}, - {""}, - {"Used_Model_LBC",254}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"GRIBEX_boustrophedonic",74}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -7781,92 +7840,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, - {"BUDG",18}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, - {"Show_Combination_Ensem_E3_0_no_1_yes",226}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"At_least__Or_Distribut_Proportion_Of",14}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"GRIBEXShBugPresent",73}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8177,6 +8150,7 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {"GRIB_DEPTH",76}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8194,63 +8168,7 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"AEC_DATA_SIGNED_OPTION_MASK",10}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, - {"AEC_RESTRICTED_OPTION_MASK",12}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {"GRIB_LATITUDE",77}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8262,7 +8180,122 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Used_Model_LBC_E2",255}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"Used_Model_LBC_E4",257}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, + {"Used_Model_LBC_E3",256}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {"AEC_PAD_RSI_OPTION_MASK",11}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8307,11 +8340,71 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, - {"Used_Model_LBC_E2",255}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, - {"Used_Model_LBC_E4",257}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8331,191 +8424,6 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"Used_Model_LBC_E3",256}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {"AEC_DATA_3BYTE_OPTION_MASK",7}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, {""}, {""}, {""}, {""}, {""}, {"GRIB_LONGITUDE",78}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8673,6 +8581,8 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"AEC_DATA_SIGNED_OPTION_MASK",10}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -8738,6 +8648,230 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {"AEC_RESTRICTED_OPTION_MASK",12}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, + {"AEC_DATA_3BYTE_OPTION_MASK",7}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, @@ -9228,7 +9362,256 @@ static const struct grib_keys_hash wordlist[] = {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, - {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, {""}, + {""}, {""}, {""}, {""}, {""}, {""}, {"AEC_DATA_PREPROCESS_OPTION_MASK",9} }; diff --git a/tests/keys b/tests/keys index b1a039394..0f882e872 100644 --- a/tests/keys +++ b/tests/keys @@ -288,99 +288,99 @@ ZLMULT,282 _T,283 _TS,284 _anoffset,285 -_leg_number,286 -_numberOfValues,287 -accumulationInterval,288 -accuracyMultipliedByFactor,289 -addEmptySection2,290 -addExtraLocalSection,291 -additionalFlagPresent,292 -addressOfFileFreeSpaceInfo,293 -aerosolType,294 -aerosolbinnumber,295 -aerosolpacking,296 -alternativeRowScanning,297 -altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius,298 -analysisOffsets,299 -angleDivisor,300 -angleMultiplier,301 -angleOfRotation,302 -angleOfRotationInDegrees,303 -angleOfRotationOfProjection,304 -angleSubdivisions,305 -anoffset,306 -anoffsetFirst,307 -anoffsetFrequency,308 -anoffsetLast,309 -applicationIdentifier,310 -assertion,311 -atmosphericChemicalOrPhysicalConstituentType,312 -attributeOfTile,313 -auxiliary,314 -average,315 -averaging1Flag,316 -averaging2Flag,317 -averagingPeriod,318 -avg,319 -azimuthalWidth,320 -backgroundGeneratingProcessIdentifier,321 -backgroundProcess,322 -band,323 -baseAddress,324 -baseDateEPS,325 -baseDateOfThisLeg,326 -baseTimeEPS,327 -baseTimeOfThisLeg,328 -basicAngleOfTheInitialProductionDomain,329 -beginDayTrend1,330 -beginDayTrend2,331 -beginDayTrend3,332 -beginDayTrend4,333 -beginHourTrend1,334 -beginHourTrend2,335 -beginHourTrend3,336 -beginHourTrend4,337 -beginMinuteTrend1,338 -beginMinuteTrend2,339 -beginMinuteTrend3,340 -beginMinuteTrend4,341 -beginMonthTrend1,342 -beginMonthTrend2,343 -beginMonthTrend3,344 -beginMonthTrend4,345 -beginYearTrend1,346 -beginYearTrend2,347 -beginYearTrend3,348 -beginYearTrend4,349 -biFourierCoefficients,350 -biFourierMakeTemplate,351 -biFourierPackingModeForAxes,352 -biFourierResolutionParameterM,353 -biFourierResolutionParameterN,354 -biFourierResolutionSubSetParameterM,355 -biFourierResolutionSubSetParameterN,356 -biFourierSubTruncationType,357 -biFourierTruncationType,358 -binaryScaleFactor,359 -bitMapIndicator,360 -bitmap,361 -bitmapPresent,362 -bitmapSectionPresent,363 -bitsPerValue,364 -bitsPerValueAndRepack,365 -boot_edition,366 -bottomLevel,367 -boustrophedonic,368 -boustrophedonicOrdering,369 -bufrDataEncoded,370 -bufrHeaderCentre,371 -bufrHeaderSubCentre,372 -bufrTemplate,373 -bufrdcExpandedDescriptors,374 -calendarIdPresent,375 -calendarIdentification,376 -calendarIdentificationTemplateNumber,377 -cat,378 +_endStep,286 +_leg_number,287 +_numberOfValues,288 +accumulationInterval,289 +accuracyMultipliedByFactor,290 +addEmptySection2,291 +addExtraLocalSection,292 +additionalFlagPresent,293 +addressOfFileFreeSpaceInfo,294 +aerosolType,295 +aerosolbinnumber,296 +aerosolpacking,297 +alternativeRowScanning,298 +altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius,299 +analysisOffsets,300 +angleDivisor,301 +angleMultiplier,302 +angleOfRotation,303 +angleOfRotationInDegrees,304 +angleOfRotationOfProjection,305 +angleSubdivisions,306 +anoffset,307 +anoffsetFirst,308 +anoffsetFrequency,309 +anoffsetLast,310 +applicationIdentifier,311 +assertion,312 +atmosphericChemicalOrPhysicalConstituentType,313 +attributeOfTile,314 +auxiliary,315 +average,316 +averaging1Flag,317 +averaging2Flag,318 +averagingPeriod,319 +avg,320 +azimuthalWidth,321 +backgroundGeneratingProcessIdentifier,322 +backgroundProcess,323 +band,324 +baseAddress,325 +baseDateEPS,326 +baseDateOfThisLeg,327 +baseTimeEPS,328 +baseTimeOfThisLeg,329 +basicAngleOfTheInitialProductionDomain,330 +beginDayTrend1,331 +beginDayTrend2,332 +beginDayTrend3,333 +beginDayTrend4,334 +beginHourTrend1,335 +beginHourTrend2,336 +beginHourTrend3,337 +beginHourTrend4,338 +beginMinuteTrend1,339 +beginMinuteTrend2,340 +beginMinuteTrend3,341 +beginMinuteTrend4,342 +beginMonthTrend1,343 +beginMonthTrend2,344 +beginMonthTrend3,345 +beginMonthTrend4,346 +beginYearTrend1,347 +beginYearTrend2,348 +beginYearTrend3,349 +beginYearTrend4,350 +biFourierCoefficients,351 +biFourierMakeTemplate,352 +biFourierPackingModeForAxes,353 +biFourierResolutionParameterM,354 +biFourierResolutionParameterN,355 +biFourierResolutionSubSetParameterM,356 +biFourierResolutionSubSetParameterN,357 +biFourierSubTruncationType,358 +biFourierTruncationType,359 +binaryScaleFactor,360 +bitMapIndicator,361 +bitmap,362 +bitmapPresent,363 +bitmapSectionPresent,364 +bitsPerValue,365 +bitsPerValueAndRepack,366 +boot_edition,367 +bottomLevel,368 +boustrophedonic,369 +boustrophedonicOrdering,370 +bufrDataEncoded,371 +bufrHeaderCentre,372 +bufrHeaderSubCentre,373 +bufrTemplate,374 +bufrdcExpandedDescriptors,375 +calendarIdPresent,376 +calendarIdentification,377 +calendarIdentificationTemplateNumber,378 categories,379 categoryType,380 cavokOrVisibility,381 @@ -643,1747 +643,1770 @@ date,637 dateOfAnalysis,638 dateOfForecast,639 dateOfForecastRun,640 -dateOfIceFieldUsed,641 -dateOfModelVersion,642 -dateOfReference,643 -dateOfSSTFieldUsed,644 -dateSSTFieldUsed,645 -dateTime,646 -datumSize,647 -day,648 -dayOfAnalysis,649 -dayOfEndOfOverallTimeInterval,650 -dayOfForecast,651 -dayOfModelVersion,652 -dayOfReference,653 -dayOfTheYearDate,654 -decimalPrecision,655 -decimalScaleFactor,656 -defaultFaFieldName,657 -defaultFaLevelName,658 -defaultFaModelName,659 -defaultName,660 -defaultParameter,661 -defaultSequence,662 -defaultShortName,663 -defaultStepUnits,664 -defaultTypeOfLevel,665 -default_max_val,666 -default_min_val,667 -default_step_units,668 -definitionFilesVersion,669 -deleteCalendarId,670 -deleteExtraLocalSection,671 -deleteLocalDefinition,672 -deletePV,673 -derivedForecast,674 -dewPointTemperature,675 -diagnostic,676 -diagnosticNumber,677 -diffInDays,678 -diffInHours,679 -dimension,680 -dimensionNumber,681 -dimensionType,682 -direction,683 -directionNumber,684 -directionOfVariation,685 -directionScalingFactor,686 -dirty_statistics,687 -disableGrib1LocalSection,688 -discipline,689 -distanceFromTubeToEnsembleMean,690 -distinctLatitudes,691 -distinctLongitudes,692 -doExtractArea,693 -doExtractDateTime,694 -doExtractSubsets,695 -doSimpleThinning,696 -domain,697 -driverInformationBlockAddress,698 -dummy,699 -dummy1,700 -dummy2,701 -dummyc,702 -dx,703 -dy,704 -earthIsOblate,705 -earthMajorAxis,706 -earthMajorAxisInMetres,707 -earthMinorAxis,708 -earthMinorAxisInMetres,709 -eastLongitudeOfCluster,710 -eastLongitudeOfDomainOfTubing,711 -easternLongitudeOfClusterDomain,712 -easternLongitudeOfDomain,713 -ed,714 -edition,715 -editionNumber,716 -efas_model,717 -efas_post_proc,718 -efiOrder,719 -eight,720 -elementsTable,721 -elevation,722 -eleven,723 -endDayTrend1,724 -endDayTrend2,725 -endDayTrend3,726 -endDayTrend4,727 -endDescriptors,728 -endGridDefinition,729 -endHourTrend1,730 -endHourTrend2,731 -endHourTrend3,732 -endHourTrend4,733 -endMark,734 -endMinuteTrend1,735 -endMinuteTrend2,736 -endMinuteTrend3,737 -endMinuteTrend4,738 -endMonthTrend1,739 -endMonthTrend2,740 -endMonthTrend3,741 -endMonthTrend4,742 -endOfFileAddress,743 -endOfHeadersMarker,744 -endOfInterval,745 -endOfMessage,746 -endOfProduct,747 -endOfRange,748 -endStep,749 -endStepInHours,750 -endTimeStep,751 -endYearTrend1,752 -endYearTrend2,753 -endYearTrend3,754 -endYearTrend4,755 -energyNorm,756 -enorm,757 -ensembleForecastNumbers,758 -ensembleForecastNumbersList,759 -ensembleSize,760 -ensembleStandardDeviation,761 -eps,762 -epsContinous,763 -epsPoint,764 -epsStatisticsContinous,765 -epsStatisticsPoint,766 -expandBy,767 -expandedAbbreviations,768 -expandedCodes,769 -expandedCrex_scales,770 -expandedCrex_units,771 -expandedCrex_widths,772 -expandedDescriptors,773 -expandedNames,774 -expandedOriginalCodes,775 -expandedOriginalReferences,776 -expandedOriginalScales,777 -expandedOriginalWidths,778 -expandedTypes,779 -expandedUnits,780 -experimentVersionNumber,781 -experimentVersionNumber1,782 -experimentVersionNumber2,783 -experimentVersionNumberOfAnalysis,784 -expoffset,785 -expver,786 -extendedFlag,787 -extraDim,788 -extraDimensionPresent,789 -extraLocalSectionNumber,790 -extraLocalSectionPresent,791 -extraValues,792 -extractAreaEastLongitude,793 -extractAreaLatitudeRank,794 -extractAreaLongitudeRank,795 -extractAreaNorthLatitude,796 -extractAreaSouthLatitude,797 -extractAreaWestLongitude,798 -extractDateTimeDayEnd,799 -extractDateTimeDayRank,800 -extractDateTimeDayStart,801 -extractDateTimeEnd,802 -extractDateTimeHourEnd,803 -extractDateTimeHourRank,804 -extractDateTimeHourStart,805 -extractDateTimeMinuteEnd,806 -extractDateTimeMinuteRank,807 -extractDateTimeMinuteStart,808 -extractDateTimeMonthEnd,809 -extractDateTimeMonthRank,810 -extractDateTimeMonthStart,811 -extractDateTimeSecondEnd,812 -extractDateTimeSecondRank,813 -extractDateTimeSecondStart,814 -extractDateTimeStart,815 -extractDateTimeYearEnd,816 -extractDateTimeYearRank,817 -extractDateTimeYearStart,818 -extractSubset,819 -extractSubsetIntervalEnd,820 -extractSubsetIntervalStart,821 -extractSubsetList,822 -extractedAreaNumberOfSubsets,823 -extractedDateTimeNumberOfSubsets,824 -extremeClockwiseWindDirection,825 -extremeCounterClockwiseWindDirection,826 -extremeValuesRVR1,827 -extremeValuesRVR2,828 -extremeValuesRVR3,829 -extremeValuesRVR4,830 -faFieldName,831 -faLevelName,832 -faModelName,833 -false,834 -falseEasting,835 -falseNorthing,836 -fcmonth,837 -fcperiod,838 -fgDate,839 -fgTime,840 -file,841 -fileConsistencyFlags,842 -firstDimension,843 -firstDimensionCoordinateValueDefinition,844 -firstDimensionPhysicalSignificance,845 -firstLatitude,846 -firstLatitudeInDegrees,847 -firstMonthUsedToBuildClimateMonth1,848 -firstMonthUsedToBuildClimateMonth2,849 -firstOrderValues,850 -flag,851 -flagForAnyFurtherInformation,852 -flagForIrregularGridCoordinateList,853 -flagForNormalOrStaggeredGrid,854 -flagShowingPostAuxiliaryArrayInUse,855 -flags,856 -floatVal,857 -floatValues,858 -forecastLeadTime,859 -forecastMonth,860 -forecastOrSingularVectorNumber,861 -forecastPeriod,862 -forecastPeriodFrom,863 -forecastPeriodTo,864 -forecastProbabilityNumber,865 -forecastSteps,866 -forecastTime,867 -forecastperiod,868 -formatVersionMajorNumber,869 -formatVersionMinorNumber,870 -freeFormData,871 -frequency,872 -frequencyNumber,873 -frequencyScalingFactor,874 -functionCode,875 -g,876 -g1conceptsLocalDirAll,877 -g1conceptsMasterDir,878 -g2grid,879 -gaussianGridName,880 -genVertHeightCoords,881 -generalExtended2ordr,882 -generatingProcessIdentificationNumber,883 -generatingProcessIdentifier,884 -generatingProcessTemplate,885 -generatingProcessTemplateNumber,886 -getNumberOfValues,887 -gg,888 -global,889 -globalDomain,890 -grib1divider,891 -grib2LocalSectionNumber,892 -grib2LocalSectionPresent,893 -grib2divider,894 -grib3divider,895 -gribDataQualityChecks,896 -gribMasterTablesVersionNumber,897 -gribTablesVersionNo,898 -grid,899 -gridCoordinate,900 -gridDefinition,901 -gridDefinitionDescription,902 -gridDefinitionSection,903 -gridDefinitionTemplateNumber,904 -gridDescriptionSectionPresent,905 -gridName,906 -gridPointPosition,907 -gridType,908 -groupInternalNodeK,909 -groupLeafNodeK,910 -groupLengths,911 -groupSplitting,912 -groupSplittingMethodUsed,913 -groupWidth,914 -groupWidths,915 -gts_CCCC,916 -gts_TTAAii,917 -gts_ddhh00,918 -gts_header,919 -halfByte,920 -hdate,921 -headersOnly,922 -heightLevelName,923 -heightOrPressureOfLevel,924 -heightPressureEtcOfLevels,925 -hideThis,926 -horizontalCoordinateDefinition,927 -horizontalCoordinateSupplement,928 -horizontalDimensionProcessed,929 -horizontalDomainTemplate,930 -horizontalDomainTemplateNumber,931 -hour,932 -hourOfAnalysis,933 -hourOfEndOfOverallTimeInterval,934 -hourOfForecast,935 -hourOfModelVersion,936 -hourOfReference,937 -hoursAfterDataCutoff,938 -hoursAfterReferenceTimeOfDataCutoff,939 -hundred,940 -iDirectionIncrement,941 -iDirectionIncrementGiven,942 -iDirectionIncrementGridLength,943 -iDirectionIncrementInDegrees,944 -iIncrement,945 -iScansNegatively,946 -iScansPositively,947 -ident,948 -identificationNumber,949 -identificationOfOriginatingGeneratingCentre,950 -identificationOfProject,951 -identifier,952 -ieeeFloats,953 -ifsParam,954 -ijDirectionIncrementGiven,955 -implementationDateOfModelCycle,956 -incrementOfLengths,957 -indexTemplate,958 -indexTemplateNumber,959 -indexedStorageInternalNodeK,960 -indexingDate,961 -indexingTime,962 -indicatorOfParameter,963 -indicatorOfTypeOfLevel,964 -indicatorOfUnitForTimeIncrement,965 -indicatorOfUnitForTimeRange,966 -indicatorOfUnitOfTimeRange,967 -inputDataPresentIndicator,968 -inputDelayedDescriptorReplicationFactor,969 -inputExtendedDelayedDescriptorReplicationFactor,970 -inputOriginatingCentre,971 -inputOverriddenReferenceValues,972 -inputProcessIdentifier,973 -inputShortDelayedDescriptorReplicationFactor,974 -instrument,975 -instrumentIdentifier,976 -instrumentType,977 -integerPointValues,978 -integerScaleFactor,979 -integerScalingFactorAppliedToDirections,980 -integerScalingFactorAppliedToFrequencies,981 -integerValues,982 -internalVersion,983 -internationalDataSubCategory,984 -interpretationOfNumberOfPoints,985 -intervalBetweenTimes,986 -isAccumulation,987 -isAuto,988 -isCavok,989 -isCavokTrend1,990 -isCavokTrend2,991 -isCavokTrend3,992 -isCavokTrend4,993 -isConstant,994 -isCorrection,995 -isEPS,996 -isEps,997 -isFillup,998 -isHindcast,999 -isOctahedral,1000 -isRotatedGrid,1001 -isSatellite,1002 -isSatelliteType,1003 -isSens,1004 -is_aerosol,1005 -is_aerosol_optical,1006 -is_chemical,1007 -is_chemical_distfn,1008 -is_efas,1009 -is_ocean2d_param,1010 -is_ocean3d_param,1011 -is_s2s,1012 -is_tigge,1013 -is_uerra,1014 -isectionNumber2,1015 -isectionNumber3,1016 -isectionNumber4,1017 -isotopeIdentificationNumber,1018 -iteration,1019 -iterationNumber,1020 -iteratorDisableUnrotate,1021 -jDirectionIncrement,1022 -jDirectionIncrementGiven,1023 -jDirectionIncrementGridLength,1024 -jDirectionIncrementInDegrees,1025 -jIncrement,1026 -jPointsAreConsecutive,1027 -jScansPositively,1028 -julianDay,1029 -julianForecastDay,1030 -keyData,1031 -keyMore,1032 -keySat,1033 -kindOfProduct,1034 -kurt,1035 -kurtosis,1036 -lBB,1037 -landtype,1038 -laplacianOperator,1039 -laplacianOperatorIsSet,1040 -laplacianScalingFactor,1041 -laplacianScalingFactorUnset,1042 -lastMonthUsedToBuildClimateMonth1,1043 -lastMonthUsedToBuildClimateMonth2,1044 -latLonValues,1045 -latitude,1046 -latitudeFirstInDegrees,1047 -latitudeLastInDegrees,1048 -latitudeLongitudeValues,1049 -latitudeOfCentralPointInClusterDomain,1050 -latitudeOfCentrePoint,1051 -latitudeOfCentrePointInDegrees,1052 -latitudeOfFirstGridPoint,1053 -latitudeOfFirstGridPointInDegrees,1054 -latitudeOfIcosahedronPole,1055 -latitudeOfLastGridPoint,1056 -latitudeOfLastGridPointInDegrees,1057 -latitudeOfNorthWestCornerOfArea,1058 -latitudeOfReferencePoint,1059 -latitudeOfReferencePointInDegrees,1060 -latitudeOfSouthEastCornerOfArea,1061 -latitudeOfSouthernPole,1062 -latitudeOfSouthernPoleInDegrees,1063 -latitudeOfStretchingPole,1064 -latitudeOfStretchingPoleInDegrees,1065 -latitudeOfSubSatellitePoint,1066 -latitudeOfSubSatellitePointInDegrees,1067 -latitudeOfTangencyPoint,1068 -latitudeOfThePoleOfStretching,1069 -latitudeOfThePolePoint,1070 -latitudeOfThePolePointInDegrees,1071 -latitudeOfTheSouthernPoleOfProjection,1072 -latitudeSexagesimal,1073 -latitudeWhereDxAndDyAreSpecified,1074 -latitudeWhereDxAndDyAreSpecifiedInDegrees,1075 -latitudes,1076 -latitudesList,1077 -latitudinalDirectionGridLength,1078 -lcwfvSuiteName,1079 -leadtime,1080 -legBaseDate,1081 -legBaseTime,1082 -legNumber,1083 -legacyGaussSubarea,1084 -lengthDescriptors,1085 -lengthIncrementForTheGroupLengths,1086 -lengthOf4DvarWindow,1087 -lengthOfHeaders,1088 -lengthOfIndexTemplate,1089 -lengthOfMessage,1090 -lengthOfOriginatorLocalTemplate,1091 -lengthOfProjectLocalTemplate,1092 -lengthOfTimeRange,1093 -lev,1094 -levTypeName,1095 -level,1096 -levelIndicator,1097 -levelType,1098 -levelist,1099 -levels,1100 -levtype,1101 -libraryVersion,1102 -listMembersMissing,1103 -listMembersMissing2,1104 -listMembersMissing3,1105 -listMembersMissing4,1106 -listMembersUsed,1107 -listMembersUsed2,1108 -listMembersUsed3,1109 -listMembersUsed4,1110 -listOfContributingSpectralBands,1111 -listOfDistributionFunctionParameter,1112 -listOfEnsembleForecastNumbers,1113 -listOfModelIdentifiers,1114 -listOfParametersUsedForClustering,1115 -listOfScaledFrequencies,1116 -local,1117 -localDate,1118 -localDateTime,1119 -localDay,1120 -localDecimalScaleFactor,1121 -localDefNumberOne,1122 -localDefNumberTwo,1123 -localDefinition,1124 -localDefinitionNumber,1125 -localDir,1126 -localExtensionPadding,1127 -localFlag,1128 -localFlagLatestVersion,1129 -localHour,1130 -localLatitude,1131 -localLatitude1,1132 -localLatitude2,1133 -localLongitude,1134 -localLongitude1,1135 -localLongitude2,1136 -localMinute,1137 -localMonth,1138 -localNumberOfObservations,1139 -localSecond,1140 -localSection,1141 -localSectionPresent,1142 -localTablesVersion,1143 -localTablesVersionNumber,1144 -localTime,1145 -localUsePresent,1146 -localYear,1147 -local_padding,1148 -local_use,1149 -logTransform,1150 -longitude,1151 -longitudeFirstInDegrees,1152 -longitudeLastInDegrees,1153 -longitudeOfCentralPointInClusterDomain,1154 -longitudeOfCentrePoint,1155 -longitudeOfCentrePointInDegrees,1156 -longitudeOfFirstDiamondCenterLine,1157 -longitudeOfFirstDiamondCentreLine,1158 -longitudeOfFirstDiamondCentreLineInDegrees,1159 -longitudeOfFirstGridPoint,1160 -longitudeOfFirstGridPointInDegrees,1161 -longitudeOfIcosahedronPole,1162 -longitudeOfLastGridPoint,1163 -longitudeOfLastGridPointInDegrees,1164 -longitudeOfNorthWestCornerOfArea,1165 -longitudeOfReferencePoint,1166 -longitudeOfReferencePointInDegrees,1167 -longitudeOfSouthEastCornerOfArea,1168 -longitudeOfSouthernPole,1169 -longitudeOfSouthernPoleInDegrees,1170 -longitudeOfStretchingPole,1171 -longitudeOfStretchingPoleInDegrees,1172 -longitudeOfSubSatellitePoint,1173 -longitudeOfSubSatellitePointInDegrees,1174 -longitudeOfTangencyPoint,1175 -longitudeOfThePoleOfStretching,1176 -longitudeOfThePolePoint,1177 -longitudeOfThePolePointInDegrees,1178 -longitudeOfTheSouthernPoleOfProjection,1179 -longitudeSexagesimal,1180 -longitudes,1181 -longitudesList,1182 -longitudinalDirectionGridLength,1183 -lowerLimit,1184 -lowerRange,1185 -lowerThreshold,1186 -lowerThresholdValue,1187 -ls_labeling,1188 -lsdate_bug,1189 -m,1190 -mAngleMultiplier,1191 -mBasicAngle,1192 -mars,1193 -marsClass,1194 -marsClass1,1195 -marsClass2,1196 -marsDir,1197 -marsDomain,1198 -marsEndStep,1199 -marsExperimentOffset,1200 -marsExpver,1201 -marsForecastMonth,1202 -marsGrid,1203 -marsIdent,1204 -marsKeywords,1205 -marsKeywords1,1206 -marsLamModel,1207 -marsLatitude,1208 -marsLevel,1209 -marsLevelist,1210 -marsLongitude,1211 -marsModel,1212 -marsParam,1213 -marsQuantile,1214 -marsRange,1215 -marsStartStep,1216 -marsStep,1217 -marsStream,1218 -marsStream1,1219 -marsStream2,1220 -marsType,1221 -marsType1,1222 -marsType2,1223 -mars_labeling,1224 -mask,1225 -masterDir,1226 -masterTableNumber,1227 -masterTablesVersionNumber,1228 -masterTablesVersionNumberLatest,1229 -matchAerosolBinNumber,1230 -matchAerosolPacking,1231 -matchLandType,1232 -matchSort,1233 -matchTimeRepres,1234 -matrixBitmapsPresent,1235 -matrixOfValues,1236 -max,1237 -maximum,1238 -md5Data,1239 -md5DataSection,1240 -md5GridSection,1241 -md5Headers,1242 -md5Product,1243 -md5Section1,1244 -md5Section10,1245 -md5Section2,1246 -md5Section3,1247 -md5Section4,1248 -md5Section5,1249 -md5Section6,1250 -md5Section7,1251 -md5Section8,1252 -md5Section9,1253 -md5Structure,1254 -md5TimeDomainSection,1255 -meanRVR1,1256 -meanRVR2,1257 -meanRVR3,1258 -meanRVR4,1259 -meanSize,1260 -meanValueRVR1,1261 -meanValueRVR2,1262 -meanValueRVR3,1263 -meanValueRVR4,1264 -meaningOfVerticalCoordinate,1265 -memberNumber,1266 -messageLength,1267 -metadata,1268 -method,1269 -methodNumber,1270 -million,1271 -min,1272 -minimum,1273 -minute,1274 -minuteOfAnalysis,1275 -minuteOfEndOfOverallTimeInterval,1276 -minuteOfForecast,1277 -minuteOfModelVersion,1278 -minuteOfReference,1279 -minutesAfterDataCutoff,1280 -minutesAfterReferenceTimeOfDataCutoff,1281 -missingDataFlag,1282 -missingValue,1283 -missingValueManagement,1284 -missingValueManagementUsed,1285 -missingValuesPresent,1286 -mixedCoordinateDefinition,1287 -mixedCoordinateFieldFlag,1288 -modeNumber,1289 -model,1290 -modelErrorType,1291 -modelIdentifier,1292 -modelName,1293 -modelVersionDate,1294 -modelVersionTime,1295 -molarMass,1296 -month,1297 -monthOfAnalysis,1298 -monthOfEndOfOverallTimeInterval,1299 -monthOfForecast,1300 -monthOfModelVersion,1301 -monthOfReference,1302 -monthlyVerificationDate,1303 -monthlyVerificationMonth,1304 -monthlyVerificationTime,1305 -monthlyVerificationYear,1306 -multiplicationFactorForLatLong,1307 -mybits,1308 -n,1309 -n2,1310 -n3,1311 -na,1312 -name,1313 -nameECMF,1314 -nameLegacyECMF,1315 -nameOfFirstFixedSurface,1316 -nameOfSecondFixedSurface,1317 -names,1318 -nd,1319 -neitherPresent,1320 -newSubtype,1321 -nlev,1322 -nnn,1323 -normAtFinalTime,1324 -normAtInitialTime,1325 -normal,1326 -northLatitudeOfCluster,1327 -northLatitudeOfDomainOfTubing,1328 -northWestLatitudeOfLPOArea,1329 -northWestLatitudeOfVerficationArea,1330 -northWestLongitudeOfLPOArea,1331 -northWestLongitudeOfVerficationArea,1332 -northernLatitudeOfClusterDomain,1333 -northernLatitudeOfDomain,1334 -nosigPresent,1335 -notDecoded,1336 -nt,1337 -number,1338 -numberInHorizontalCoordinates,1339 -numberInMixedCoordinateDefinition,1340 -numberInTheAuxiliaryArray,1341 -numberInTheGridCoordinateList,1342 -numberIncludedInAverage,1343 -numberMissingFromAveragesOrAccumulations,1344 -numberOfAnalysis,1345 -numberOfBits,1346 -numberOfBitsContainingEachPackedValue,1347 -numberOfBitsForScaledGroupLengths,1348 -numberOfBitsUsedForTheGroupWidths,1349 -numberOfBitsUsedForTheScaledGroupLengths,1350 -numberOfBytesInLocalDefinition,1351 -numberOfBytesOfFreeFormatData,1352 -numberOfBytesPerInteger,1353 -numberOfCategories,1354 -numberOfCharacters,1355 -numberOfChars,1356 -numberOfClusterHighResolution,1357 -numberOfClusterLowResolution,1358 -numberOfClusters,1359 -numberOfCodedValues,1360 -numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction,1361 -numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction,1362 -numberOfColumns,1363 -numberOfComponents,1364 -numberOfContributingSpectralBands,1365 -numberOfControlForecastTube,1366 -numberOfCoordinatesValues,1367 -numberOfDataBinsAlongRadials,1368 -numberOfDataMatrices,1369 -numberOfDataPoints,1370 -numberOfDataPointsExpected,1371 -numberOfDataValues,1372 -numberOfDaysInClimateSamplingWindow,1373 -numberOfDiamonds,1374 -numberOfDirections,1375 -numberOfDistinctSection3s,1376 -numberOfDistinctSection4s,1377 -numberOfDistinctSection5s,1378 -numberOfDistinctSection6s,1379 -numberOfDistinctSection7s,1380 -numberOfDistinctSection8s,1381 -numberOfDistinctSection9s,1382 -numberOfDistributionFunctionParameters,1383 -numberOfEffectiveValues,1384 -numberOfFloats,1385 -numberOfForcasts,1386 -numberOfForecastsInCluster,1387 -numberOfForecastsInEnsemble,1388 -numberOfForecastsInTheCluster,1389 -numberOfForecastsInTube,1390 -numberOfFrequencies,1391 -numberOfGridInReference,1392 -numberOfGridUsed,1393 -numberOfGroups,1394 -numberOfGroupsOfDataValues,1395 -numberOfHorizontalPoints,1396 -numberOfIntegers,1397 -numberOfInts,1398 -numberOfIterations,1399 -numberOfLocalDefinitions,1400 -numberOfLogicals,1401 -numberOfMembersInCluster,1402 -numberOfMembersInEnsemble,1403 -numberOfMissing,1404 -numberOfMissingInStatisticalProcess,1405 -numberOfMissingValues,1406 -numberOfModeOfDistribution,1407 -numberOfModels,1408 -numberOfOctectsForNumberOfPoints,1409 -numberOfOctetsExtraDescriptors,1410 -numberOfOperationalForecastTube,1411 -numberOfPackedValues,1412 -numberOfParallelsBetweenAPoleAndTheEquator,1413 -numberOfParametersUsedForClustering,1414 -numberOfPartitions,1415 -numberOfPoints,1416 -numberOfPointsAlongAMeridian,1417 -numberOfPointsAlongAParallel,1418 -numberOfPointsAlongFirstAxis,1419 -numberOfPointsAlongSecondAxis,1420 -numberOfPointsAlongTheXAxis,1421 -numberOfPointsAlongTheYAxis,1422 -numberOfPointsAlongXAxis,1423 -numberOfPointsAlongXAxisInCouplingArea,1424 -numberOfPointsAlongYAxis,1425 -numberOfPointsAlongYAxisInCouplingArea,1426 -numberOfPointsInDomain,1427 -numberOfPointsUsed,1428 -numberOfPressureLevelsUsedForClustering,1429 -numberOfRadarSitesUsed,1430 -numberOfRadials,1431 -numberOfReforecastYearsInModelClimate,1432 -numberOfRemaininChars,1433 -numberOfRepresentativeMember,1434 -numberOfReservedBytes,1435 -numberOfRows,1436 -numberOfSecondOrderPackedValues,1437 -numberOfSection,1438 -numberOfSingularVectorsComputed,1439 -numberOfSingularVectorsEvolved,1440 -numberOfStepsUsedForClustering,1441 -numberOfSubsets,1442 -numberOfTensOfThousandsOfYearsOfOffset,1443 -numberOfTimeRange,1444 -numberOfTimeSteps,1445 -numberOfUnexpandedDescriptors,1446 -numberOfUnusedBitsAtEndOfSection3,1447 -numberOfUsedSpatialTiles,1448 -numberOfUsedTileAttributes,1449 -numberOfUsefulPointsAlongXAxis,1450 -numberOfUsefulPointsAlongYAxis,1451 -numberOfVGridUsed,1452 -numberOfValues,1453 -numberOfVerticalCoordinateValues,1454 -numberOfVerticalGridDescriptors,1455 -numberOfVerticalPoints,1456 -numberingOrderOfDiamonds,1457 -numericValues,1458 -observablePropertyTemplate,1459 -observablePropertyTemplateNumber,1460 -observationDiagnostic,1461 -observationGeneratingProcessIdentifier,1462 -observationType,1463 -observedData,1464 -obstype,1465 -oceanAtmosphereCoupling,1466 -oceanLevName,1467 -oceanStream,1468 -octetAtWichPackedDataBegins,1469 -offset,1470 -offsetAfterBitmap,1471 -offsetAfterCentreLocalSection,1472 -offsetAfterData,1473 -offsetAfterLocalSection,1474 -offsetAfterPadding,1475 -offsetBBitmap,1476 -offsetBSection5,1477 -offsetBSection6,1478 -offsetBSection9,1479 -offsetBeforeBitmap,1480 -offsetBeforeData,1481 -offsetBeforePL,1482 -offsetBeforePV,1483 -offsetDescriptors,1484 -offsetEndSection4,1485 -offsetFreeFormData,1486 -offsetFromOriginToInnerBound,1487 -offsetFromReferenceOfFirstTime,1488 -offsetICEFieldsUsed,1489 -offsetSection0,1490 -offsetSection1,1491 -offsetSection10,1492 -offsetSection11,1493 -offsetSection2,1494 -offsetSection3,1495 -offsetSection4,1496 -offsetSection5,1497 -offsetSection6,1498 -offsetSection7,1499 -offsetSection8,1500 -offsetSection9,1501 -offsetToEndOf4DvarWindow,1502 -offsetValuesBy,1503 -oldSubtype,1504 -one,1505 -oneConstant,1506 -oneMillionConstant,1507 -oneMinuteMeanMaximumRVR1,1508 -oneMinuteMeanMaximumRVR2,1509 -oneMinuteMeanMaximumRVR3,1510 -oneMinuteMeanMaximumRVR4,1511 -oneMinuteMeanMinimumRVR1,1512 -oneMinuteMeanMinimumRVR2,1513 -oneMinuteMeanMinimumRVR3,1514 -oneMinuteMeanMinimumRVR4,1515 -oneThousand,1516 -oper,1517 -operStream,1518 -operatingMode,1519 -operationalForecastCluster,1520 -optimisationTime,1521 -optimizeScaleFactor,1522 -optionalData,1523 -opttime,1524 -orderOfSPD,1525 -orderOfSpatialDifferencing,1526 -orientationOfTheGrid,1527 -orientationOfTheGridInDegrees,1528 -origin,1529 -originalParameterNumber,1530 -originalParameterTableNumber,1531 -originalSubCentreIdentifier,1532 -originatingCentre,1533 -originatingCentreOfAnalysis,1534 -originatorLocalTemplate,1535 -originatorLocalTemplateNumber,1536 -overlayTemplate,1537 -overlayTemplateNumber,1538 -pack,1539 -packedValues,1540 -packingError,1541 -packingType,1542 -padding,1543 -padding_grid1_1,1544 -padding_grid1_2,1545 -padding_grid3_1,1546 -padding_grid4_1,1547 -padding_grid50_1,1548 -padding_grid5_1,1549 -padding_grid90_1,1550 -padding_loc10_1,1551 -padding_loc12_1,1552 -padding_loc13_1,1553 -padding_loc13_2,1554 -padding_loc13_3,1555 -padding_loc13_4,1556 -padding_loc13_5,1557 -padding_loc14_1,1558 -padding_loc14_2,1559 -padding_loc15_1,1560 -padding_loc16_1,1561 -padding_loc17_2,1562 -padding_loc18_1,1563 -padding_loc18_2,1564 -padding_loc190_1,1565 -padding_loc191_1,1566 -padding_loc191_2,1567 -padding_loc191_3,1568 -padding_loc192_1,1569 -padding_loc19_2,1570 -padding_loc20_1,1571 -padding_loc21_1,1572 -padding_loc23_1,1573 -padding_loc244_1,1574 -padding_loc244_2,1575 -padding_loc244_3,1576 -padding_loc245_1,1577 -padding_loc245_2,1578 -padding_loc26_1,1579 -padding_loc27_1,1580 -padding_loc27_2,1581 -padding_loc28_1,1582 -padding_loc29_1,1583 -padding_loc29_2,1584 -padding_loc29_3,1585 -padding_loc2_1,1586 -padding_loc2_2,1587 -padding_loc30_1,1588 -padding_loc30_2,1589 -padding_loc37_1,1590 -padding_loc37_2,1591 -padding_loc38_1,1592 -padding_loc3_1,1593 -padding_loc4_2,1594 -padding_loc50_1,1595 -padding_loc5_1,1596 -padding_loc6_1,1597 -padding_loc7_1,1598 -padding_loc9_1,1599 -padding_loc9_2,1600 -padding_local11_1,1601 -padding_local1_1,1602 -padding_local1_31,1603 -padding_local40_1,1604 -padding_local_35,1605 -padding_local_7_1,1606 -padding_sec1_loc,1607 -padding_sec2_1,1608 -padding_sec2_2,1609 -padding_sec2_3,1610 -padding_sec3_1,1611 -padding_sec4_1,1612 -paleontologicalOffset,1613 -param,1614 -paramId,1615 -paramIdECMF,1616 -paramIdLegacyECMF,1617 -param_value_max,1618 -param_value_min,1619 -parameter,1620 -parameterCategory,1621 -parameterCode,1622 -parameterDiscipline,1623 -parameterIndicator,1624 -parameterName,1625 -parameterNumber,1626 -parameterUnits,1627 -parameters,1628 -parametersVersion,1629 -partitionItems,1630 -partitionNumber,1631 -partitionTable,1632 -partitions,1633 -pastTendencyRVR1,1634 -pastTendencyRVR2,1635 -pastTendencyRVR3,1636 -pastTendencyRVR4,1637 -patch_precip_fp,1638 -pentagonalResolutionParameterJ,1639 -pentagonalResolutionParameterK,1640 -pentagonalResolutionParameterM,1641 -percentileValue,1642 -periodOfTime,1643 -periodOfTimeIntervals,1644 -perturbationNumber,1645 -perturbedType,1646 -phase,1647 -physicalFlag1,1648 -physicalFlag2,1649 -physicalMeaningOfVerticalCoordinate,1650 -pl,1651 -platform,1652 -plusOneinOrdersOfSPD,1653 -points,1654 -postAuxiliary,1655 -postAuxiliaryArrayPresent,1656 -powerOfTenUsedToScaleClimateWeight,1657 -preBitmapValues,1658 -preProcessingParameter,1659 -precision,1660 -precisionOfTheUnpackedSubset,1661 -predefined_grid,1662 -predefined_grid_values,1663 -preferLocalConcepts,1664 -present,1665 -presentTrend1,1666 -presentTrend2,1667 -presentTrend3,1668 -presentTrend4,1669 -presentWeather1Present,1670 -presentWeather1PresentTrend1,1671 -presentWeather1PresentTrend2,1672 -presentWeather1PresentTrend3,1673 -presentWeather1PresentTrend4,1674 -presentWeather2Present,1675 -presentWeather2PresentTrend1,1676 -presentWeather2PresentTrend2,1677 -presentWeather2PresentTrend3,1678 -presentWeather2PresentTrend4,1679 -presentWeather3Present,1680 -presentWeather3PresentTrend1,1681 -presentWeather3PresentTrend2,1682 -presentWeather3PresentTrend3,1683 -presentWeather3PresentTrend4,1684 -pressureLevel,1685 -pressureUnits,1686 -primaryBitmap,1687 -primaryMissingValue,1688 -primaryMissingValueSubstitute,1689 -probContinous,1690 -probPoint,1691 -probProductDefinition,1692 -probabilityType,1693 -probabilityTypeName,1694 -process,1695 -produceLargeConstantFields,1696 -product,1697 -productDefinition,1698 -productDefinitionTemplateNumber,1699 -productDefinitionTemplateNumberInternal,1700 -productIdentifier,1701 -productType,1702 -productionStatusOfProcessedData,1703 -projSourceString,1704 -projString,1705 -projTargetString,1706 -projectLocalTemplate,1707 -projectLocalTemplateNumber,1708 -projectionCenterFlag,1709 -projectionCentreFlag,1710 -pv,1711 -pvlLocation,1712 -qfe,1713 -qfePresent,1714 -qfeUnits,1715 -qnh,1716 -qnhAPresent,1717 -qnhPresent,1718 -qnhUnits,1719 -qualityControl,1720 -qualityControlIndicator,1721 -qualityValueAssociatedWithParameter,1722 -quantile,1723 -radialAngularSpacing,1724 -radials,1725 -radius,1726 -radiusInMetres,1727 -radiusOfCentralCluster,1728 -radiusOfClusterDomain,1729 -radiusOfTheEarth,1730 -range,1731 -rangeBinSpacing,1732 -rdbDateTime,1733 -rdbSubtype,1734 -rdbType,1735 -rdb_key,1736 -rdbtime,1737 -rdbtimeDate,1738 -rdbtimeDay,1739 -rdbtimeHour,1740 -rdbtimeMinute,1741 -rdbtimeMonth,1742 -rdbtimeSecond,1743 -rdbtimeTime,1744 -rdbtimeYear,1745 -realPart,1746 -realPartOf00,1747 -recDateTime,1748 -recentWeather,1749 -recentWeatherTry,1750 -rectime,1751 -rectimeDay,1752 -rectimeHour,1753 -rectimeMinute,1754 -rectimeSecond,1755 -reducedGrid,1756 -refdate,1757 -reference,1758 -referenceDate,1759 -referenceForGroupLengths,1760 -referenceForGroupWidths,1761 -referenceOfLengths,1762 -referenceOfWidths,1763 -referenceReflectivityForEchoTop,1764 -referenceSampleInterval,1765 -referenceStep,1766 -referenceValue,1767 -referenceValueError,1768 -reflectivityCalibrationConstant,1769 -remarkPresent,1770 -reportType,1771 -representationMode,1772 -representationType,1773 -representativeMember,1774 -reserved,1775 -reserved1,1776 -reserved2,1777 -reserved3,1778 -reservedNeedNotBePresent,1779 -reservedOctet,1780 -reservedSection2,1781 -reservedSection3,1782 -reservedSection4,1783 -resolutionAndComponentFlags,1784 -resolutionAndComponentFlags1,1785 -resolutionAndComponentFlags2,1786 -resolutionAndComponentFlags3,1787 -resolutionAndComponentFlags4,1788 -resolutionAndComponentFlags6,1789 -resolutionAndComponentFlags7,1790 -resolutionAndComponentFlags8,1791 -restricted,1792 -rootGroupObjectHeaderAddress,1793 -rootGroupSymbolTableEntry,1794 -rootTablesDir,1795 -roundedMarsLatitude,1796 -roundedMarsLevelist,1797 -roundedMarsLongitude,1798 -runwayBrakingActionState1,1799 -runwayBrakingActionState2,1800 -runwayBrakingActionState3,1801 -runwayBrakingActionState4,1802 -runwayDepositCodeState1,1803 -runwayDepositCodeState2,1804 -runwayDepositCodeState3,1805 -runwayDepositCodeState4,1806 -runwayDepositState1,1807 -runwayDepositState2,1808 -runwayDepositState3,1809 -runwayDepositState4,1810 -runwayDepthOfDepositCodeState1,1811 -runwayDepthOfDepositCodeState2,1812 -runwayDepthOfDepositCodeState3,1813 -runwayDepthOfDepositCodeState4,1814 -runwayDepthOfDepositState1,1815 -runwayDepthOfDepositState2,1816 -runwayDepthOfDepositState3,1817 -runwayDepthOfDepositState4,1818 -runwayDesignatorRVR1,1819 -runwayDesignatorRVR2,1820 -runwayDesignatorRVR3,1821 -runwayDesignatorRVR4,1822 -runwayDesignatorState1,1823 -runwayDesignatorState2,1824 -runwayDesignatorState3,1825 -runwayDesignatorState4,1826 -runwayExtentOfContaminationCodeState1,1827 -runwayExtentOfContaminationCodeState2,1828 -runwayExtentOfContaminationCodeState3,1829 -runwayExtentOfContaminationCodeState4,1830 -runwayExtentOfContaminationState1,1831 -runwayExtentOfContaminationState2,1832 -runwayExtentOfContaminationState3,1833 -runwayExtentOfContaminationState4,1834 -runwayFrictionCodeValueState1,1835 -runwayFrictionCodeValueState2,1836 -runwayFrictionCodeValueState3,1837 -runwayFrictionCodeValueState4,1838 -runwayFrictionCoefficientCodeState1,1839 -runwayFrictionCoefficientCodeState2,1840 -runwayFrictionCoefficientCodeState3,1841 -runwayFrictionCoefficientCodeState4,1842 -runwayFrictionCoefficientState1,1843 -runwayFrictionCoefficientState2,1844 -runwayFrictionCoefficientState3,1845 -runwayFrictionCoefficientState4,1846 -runwaySideCodeState1,1847 -runwaySideCodeState2,1848 -runwaySideCodeState3,1849 -runwaySideCodeState4,1850 -runwayState,1851 -sampleSizeOfModelClimate,1852 -satelliteID,1853 -satelliteIdentifier,1854 -satelliteNumber,1855 -satelliteSeries,1856 -scaleFactorAtReferencePoint,1857 -scaleFactorOfCentralWaveNumber,1858 -scaleFactorOfDistanceFromEnsembleMean,1859 -scaleFactorOfDistributionFunctionParameter,1860 -scaleFactorOfEarthMajorAxis,1861 -scaleFactorOfEarthMinorAxis,1862 -scaleFactorOfFirstFixedSurface,1863 -scaleFactorOfFirstSize,1864 -scaleFactorOfFirstWavelength,1865 -scaleFactorOfLengthOfSemiMajorAxis,1866 -scaleFactorOfLengthOfSemiMinorAxis,1867 -scaleFactorOfLowerLimit,1868 -scaleFactorOfMajorAxisOfOblateSpheroidEarth,1869 -scaleFactorOfMinorAxisOfOblateSpheroidEarth,1870 -scaleFactorOfPrimeMeridianOffset,1871 -scaleFactorOfRadiusOfSphericalEarth,1872 -scaleFactorOfSecondFixedSurface,1873 -scaleFactorOfSecondSize,1874 -scaleFactorOfSecondWavelength,1875 -scaleFactorOfStandardDeviation,1876 -scaleFactorOfStandardDeviationInTheCluster,1877 -scaleFactorOfUpperLimit,1878 -scaleValuesBy,1879 -scaledDirections,1880 -scaledFrequencies,1881 -scaledValueOfCentralWaveNumber,1882 -scaledValueOfDistanceFromEnsembleMean,1883 -scaledValueOfDistributionFunctionParameter,1884 -scaledValueOfEarthMajorAxis,1885 -scaledValueOfEarthMinorAxis,1886 -scaledValueOfFirstFixedSurface,1887 -scaledValueOfFirstSize,1888 -scaledValueOfFirstWavelength,1889 -scaledValueOfLengthOfSemiMajorAxis,1890 -scaledValueOfLengthOfSemiMinorAxis,1891 -scaledValueOfLowerLimit,1892 -scaledValueOfMajorAxisOfOblateSpheroidEarth,1893 -scaledValueOfMinorAxisOfOblateSpheroidEarth,1894 -scaledValueOfPrimeMeridianOffset,1895 -scaledValueOfRadiusOfSphericalEarth,1896 -scaledValueOfSecondFixedSurface,1897 -scaledValueOfSecondSize,1898 -scaledValueOfSecondWavelength,1899 -scaledValueOfStandardDeviation,1900 -scaledValueOfStandardDeviationInTheCluster,1901 -scaledValueOfUpperLimit,1902 -scalingFactorForFrequencies,1903 -scanPosition,1904 -scanningMode,1905 -scanningMode4,1906 -scanningMode5,1907 -scanningMode6,1908 -scanningMode7,1909 -scanningMode8,1910 -scanningModeForOneDiamond,1911 -sd,1912 -second,1913 -secondDimension,1914 -secondDimensionCoordinateValueDefinition,1915 -secondDimensionPhysicalSignificance,1916 -secondLatitude,1917 -secondLatitudeInDegrees,1918 -secondOfEndOfOverallTimeInterval,1919 -secondOfForecast,1920 -secondOfModelVersion,1921 -secondOrderFlags,1922 -secondOrderOfDifferentWidth,1923 -secondOrderValuesDifferentWidths,1924 -secondaryBitMap,1925 -secondaryBitmap,1926 -secondaryBitmapPresent,1927 -secondaryBitmaps,1928 -secondaryBitmapsCount,1929 -secondaryBitmapsSize,1930 -secondaryMissingValue,1931 -secondaryMissingValueSubstitute,1932 -secondsOfAnalysis,1933 -secondsOfReference,1934 -section,1935 -section0Length,1936 -section0Pointer,1937 -section1,1938 -section10Length,1939 -section10Pointer,1940 -section11Length,1941 -section11Pointer,1942 -section1Flags,1943 -section1Length,1944 -section1Padding,1945 -section1Pointer,1946 -section2Length,1947 -section2Padding,1948 -section2Pointer,1949 -section2Present,1950 -section2Used,1951 -section3Flags,1952 -section3Length,1953 -section3Padding,1954 -section3Pointer,1955 -section3UniqueIdentifier,1956 -section4,1957 -section4Length,1958 -section4Padding,1959 -section4Pointer,1960 -section4UniqueIdentifier,1961 -section5,1962 -section5Length,1963 -section5Pointer,1964 -section5UniqueIdentifier,1965 -section6,1966 -section6Length,1967 -section6Pointer,1968 -section6UniqueIdentifier,1969 -section7,1970 -section7Length,1971 -section7Pointer,1972 -section7UniqueIdentifier,1973 -section8,1974 -section8Length,1975 -section8Pointer,1976 -section8UniqueIdentifier,1977 -section9Length,1978 -section9Pointer,1979 -section9UniqueIdentifier,1980 -sectionLengthLimitForEnsembles,1981 -sectionLengthLimitForProbability,1982 -sectionNumber,1983 -sectionPosition,1984 -section_01,1985 -section_02,1986 -section_03,1987 -section_04,1988 -section_05,1989 -section_06,1990 -section_07,1991 -section_08,1992 -section_09,1993 -section_1,1994 -section_10,1995 -section_11,1996 -section_2,1997 -section_3,1998 -section_4,1999 -section_5,2000 -section_6,2001 -section_7,2002 -section_8,2003 -selectStepTemplateInstant,2004 -selectStepTemplateInterval,2005 -sensitiveAreaDomain,2006 -sequences,2007 -setBitsPerValue,2008 -setCalendarId,2009 -setDecimalPrecision,2010 -setLocalDefinition,2011 -setToMissingIfOutOfRange,2012 -sfc_levtype,2013 -shapeOfTheEarth,2014 -shapeOfVerificationArea,2015 -shortName,2016 -shortNameECMF,2017 -shortNameLegacyECMF,2018 -short_name,2019 -signature,2020 -significanceOfReferenceDateAndTime,2021 -significanceOfReferenceTime,2022 -simpleThinningMissingRadius,2023 -simpleThinningSkip,2024 -simpleThinningStart,2025 -siteElevation,2026 -siteId,2027 -siteLatitude,2028 -siteLongitude,2029 -sizeOfLength,2030 -sizeOfOffsets,2031 -sizeOfPostAuxiliaryArray,2032 -sizeOfPostAuxiliaryArrayPlusOne,2033 -skew,2034 -skewness,2035 -skipExtraKeyAttributes,2036 -sort,2037 -sourceOfGridDefinition,2038 -sourceSinkChemicalPhysicalProcess,2039 -southEastLatitudeOfLPOArea,2040 -southEastLatitudeOfVerficationArea,2041 -southEastLongitudeOfLPOArea,2042 -southEastLongitudeOfVerficationArea,2043 -southLatitudeOfCluster,2044 -southLatitudeOfDomainOfTubing,2045 -southPoleOnProjectionPlane,2046 -southernLatitudeOfClusterDomain,2047 -southernLatitudeOfDomain,2048 -sp1,2049 -sp2,2050 -sp3,2051 -spaceUnitFlag,2052 -spacingOfBinsAlongRadials,2053 -spare,2054 -spare1,2055 -spare2,2056 -spare3,2057 -spare4,2058 -spatialProcessing,2059 -spatialSmoothingOfProduct,2060 -spectralDataRepresentationMode,2061 -spectralDataRepresentationType,2062 -spectralMode,2063 -spectralType,2064 -sphericalHarmonics,2065 -standardDeviation,2066 -standardParallel,2067 -standardParallelInDegrees,2068 -standardParallelInMicrodegrees,2069 -startOfHeaders,2070 -startOfMessage,2071 -startOfRange,2072 -startStep,2073 -startStepInHours,2074 -startTimeStep,2075 -startingAzimuth,2076 -statisticalProcess,2077 -statisticalProcessesList,2078 -statistics,2079 -status,2080 -step,2081 -stepForClustering,2082 -stepHumanReadable,2083 -stepInHours,2084 -stepRange,2085 -stepRangeInHours,2086 -stepType,2087 -stepTypeForConversion,2088 -stepTypeInternal,2089 -stepUnits,2090 -stepZero,2091 -stream,2092 -streamOfAnalysis,2093 -stretchingFactor,2094 -stretchingFactorScaled,2095 -stringValues,2096 -subCentre,2097 -subDefinitions1,2098 -subDefinitions2,2099 -subLocalDefinition1,2100 -subLocalDefinition2,2101 -subLocalDefinitionLength1,2102 -subLocalDefinitionLength2,2103 -subLocalDefinitionNumber1,2104 -subLocalDefinitionNumber2,2105 -subSetJ,2106 -subSetK,2107 -subSetM,2108 -subcentreOfAnalysis,2109 -subdivisionsOfBasicAngle,2110 -suiteName,2111 -superblockExtensionAddress,2112 -swapScanningLat,2113 -swapScanningLon,2114 -swapScanningX,2115 -swapScanningY,2116 -system,2117 -systemNumber,2118 -t,2119 -table2Version,2120 -tableCode,2121 -tableNumber,2122 -tableReference,2123 -tablesLocalDir,2124 -tablesMasterDir,2125 -tablesVersion,2126 -tablesVersionLatest,2127 -targetCompressionRatio,2128 -td,2129 -tempPressureUnits,2130 -temperature,2131 -temperatureAndDewpointPresent,2132 -templatesLocalDir,2133 -templatesMasterDir,2134 -theHindcastMarsStream,2135 -theMessage,2136 -thisExperimentVersionNumber,2137 -thisMarsClass,2138 -thisMarsStream,2139 -thisMarsType,2140 -thousand,2141 -three,2142 -threshold,2143 -thresholdIndicator,2144 -tiggeCentre,2145 -tiggeLAMName,2146 -tiggeLocalVersion,2147 -tiggeModel,2148 -tiggeSection,2149 -tiggeSuiteID,2150 -tigge_name,2151 -tigge_short_name,2152 -tileClassification,2153 -tileIndex,2154 -time,2155 -timeCoordinateDefinition,2156 -timeDomainTemplate,2157 -timeDomainTemplateNumber,2158 -timeIncrement,2159 -timeIncrementBetweenSuccessiveFields,2160 -timeOfAnalysis,2161 -timeOfForecast,2162 -timeOfModelVersion,2163 -timeOfReference,2164 -timeRangeIndicator,2165 -timeRangeIndicatorFromStepRange,2166 -timeUnitFlag,2167 -timerepres,2168 -topLevel,2169 -total,2170 -totalAerosolBinsNumbers,2171 -totalInitialConditions,2172 -totalLength,2173 -totalNumber,2174 -totalNumberOfClusters,2175 -totalNumberOfDataValuesMissingInStatisticalProcess,2176 -totalNumberOfDirections,2177 -totalNumberOfForecastProbabilities,2178 -totalNumberOfFrequencies,2179 -totalNumberOfGridPoints,2180 -totalNumberOfIterations,2181 -totalNumberOfRepetitions,2182 -totalNumberOfTileAttributePairs,2183 -totalNumberOfTubes,2184 -totalNumberOfValuesInUnpackedSubset,2185 -totalNumberOfdimensions,2186 -treatmentOfMissingData,2187 -true,2188 -trueLengthOfLastGroup,2189 -truncateDegrees,2190 -truncateLaplacian,2191 -tsectionNumber3,2192 -tsectionNumber4,2193 -tsectionNumber5,2194 -tubeDomain,2195 -tubeNumber,2196 -two,2197 -twoOrdersOfSPD,2198 -type,2199 -typeOfAnalysis,2200 -typeOfAuxiliaryInformation,2201 -typeOfCalendar,2202 -typeOfCompressionUsed,2203 -typeOfDistributionFunction,2204 -typeOfEnsembleForecast,2205 -typeOfEnsembleMember,2206 -typeOfFirstFixedSurface,2207 -typeOfGeneratingProcess,2208 -typeOfGrid,2209 -typeOfHorizontalLine,2210 -typeOfIntervalForFirstAndSecondSize,2211 -typeOfIntervalForFirstAndSecondWavelength,2212 -typeOfLevel,2213 -typeOfLevelECMF,2214 -typeOfOriginalFieldValues,2215 -typeOfPacking,2216 -typeOfPostProcessing,2217 -typeOfPreProcessing,2218 -typeOfProcessedData,2219 -typeOfSSTFieldUsed,2220 -typeOfSecondFixedSurface,2221 -typeOfSizeInterval,2222 -typeOfStatisticalPostProcessingOfEnsembleMembers,2223 -typeOfStatisticalProcessing,2224 -typeOfTimeIncrement,2225 -typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing,2226 -typeOfWavelengthInterval,2227 -typicalCentury,2228 -typicalDate,2229 -typicalDateTime,2230 -typicalDay,2231 -typicalHour,2232 -typicalMinute,2233 -typicalMonth,2234 -typicalSecond,2235 -typicalTime,2236 -typicalYear,2237 -typicalYear2,2238 -typicalYearOfCentury,2239 -uco,2240 -ucs,2241 -unexpandedDescriptors,2242 -unexpandedDescriptorsEncoded,2243 -unitOfOffsetFromReferenceTime,2244 -unitOfTime,2245 -unitOfTimeIncrement,2246 -unitOfTimeRange,2247 -units,2248 -unitsBias,2249 -unitsConversionOffset,2250 -unitsConversionScaleFactor,2251 -unitsDecimalScaleFactor,2252 -unitsECMF,2253 -unitsFactor,2254 -unitsLegacyECMF,2255 -unitsOfFirstFixedSurface,2256 -unitsOfSecondFixedSurface,2257 -unknown,2258 -unpack,2259 -unpackedError,2260 -unpackedSubsetPrecision,2261 -unpackedValues,2262 -unsignedIntegers,2263 -unstructuredGrid,2264 -unstructuredGridSubtype,2265 -unstructuredGridType,2266 -unstructuredGridUUID,2267 -unusedBitsInBitmap,2268 -updateSequenceNumber,2269 -upperLimit,2270 -upperRange,2271 -upperThreshold,2272 -upperThresholdValue,2273 -userDateEnd,2274 -userDateStart,2275 -userDateTimeEnd,2276 -userDateTimeStart,2277 -userTimeEnd,2278 -userTimeStart,2279 -uuidOfHGrid,2280 -uuidOfVGrid,2281 -uvRelativeToGrid,2282 -validityDate,2283 -validityTime,2284 -values,2285 -variationOfVisibility,2286 -variationOfVisibilityDirection,2287 -variationOfVisibilityDirectionAngle,2288 -variationOfVisibilityDirectionTrend1,2289 -variationOfVisibilityDirectionTrend2,2290 -variationOfVisibilityDirectionTrend3,2291 -variationOfVisibilityDirectionTrend4,2292 -variationOfVisibilityTrend1,2293 -variationOfVisibilityTrend2,2294 -variationOfVisibilityTrend3,2295 -variationOfVisibilityTrend4,2296 -varno,2297 -verificationDate,2298 -verificationMonth,2299 -verificationYear,2300 -verifyingMonth,2301 -version,2302 -versionNumOfFilesFreeSpaceStorage,2303 -versionNumOfRootGroupSymbolTableEntry,2304 -versionNumOfSharedHeaderMessageFormat,2305 -versionNumberOfExperimentalSuite,2306 -versionNumberOfGribLocalTables,2307 -versionNumberOfSuperblock,2308 -versionOfModelClimate,2309 -verticalCoordinate,2310 -verticalCoordinateDefinition,2311 -verticalDomainTemplate,2312 -verticalDomainTemplateNumber,2313 -verticalVisibility,2314 -verticalVisibilityCoded,2315 -visibility,2316 -visibilityInKilometresTrend1,2317 -visibilityInKilometresTrend2,2318 -visibilityInKilometresTrend3,2319 -visibilityInKilometresTrend4,2320 -visibilityTrend1,2321 -visibilityTrend2,2322 -visibilityTrend3,2323 -visibilityTrend4,2324 -waveDomain,2325 -weightAppliedToClimateMonth1,2326 -westLongitudeOfCluster,2327 -westLongitudeOfDomainOfTubing,2328 -westernLongitudeOfClusterDomain,2329 -westernLongitudeOfDomain,2330 -widthOfFirstOrderValues,2331 -widthOfLengths,2332 -widthOfSPD,2333 -widthOfWidths,2334 -windDirection,2335 -windDirectionTrend1,2336 -windDirectionTrend2,2337 -windDirectionTrend3,2338 -windDirectionTrend4,2339 -windGust,2340 -windGustTrend1,2341 -windGustTrend2,2342 -windGustTrend3,2343 -windGustTrend4,2344 -windPresent,2345 -windSpeed,2346 -windSpeedTrend1,2347 -windSpeedTrend2,2348 -windSpeedTrend3,2349 -windSpeedTrend4,2350 -windUnits,2351 -windUnitsTrend1,2352 -windUnitsTrend2,2353 -windUnitsTrend3,2354 -windUnitsTrend4,2355 -windVariableDirection,2356 -windVariableDirectionTrend1,2357 -windVariableDirectionTrend2,2358 -windVariableDirectionTrend3,2359 -windVariableDirectionTrend4,2360 -wrongPadding,2361 -xCoordinateOfOriginOfSectorImage,2362 -xCoordinateOfSubSatellitePoint,2363 -xDirectionGridLength,2364 -xDirectionGridLengthInMetres,2365 -xDirectionGridLengthInMillimetres,2366 -xFirst,2367 -xLast,2368 -yCoordinateOfOriginOfSectorImage,2369 -yCoordinateOfSubSatellitePoint,2370 -yDirectionGridLength,2371 -yDirectionGridLengthInMetres,2372 -yDirectionGridLengthInMillimetres,2373 -yFirst,2374 -yLast,2375 -year,2376 -yearOfAnalysis,2377 -yearOfCentury,2378 -yearOfEndOfOverallTimeInterval,2379 -yearOfForecast,2380 -yearOfModelVersion,2381 -yearOfReference,2382 -zero,2383 -zeros,2384 +dateOfForecastUsedInLocalTime,641 +dateOfIceFieldUsed,642 +dateOfModelVersion,643 +dateOfReference,644 +dateOfSSTFieldUsed,645 +dateSSTFieldUsed,646 +dateTime,647 +dateTimeOfForecastUsedInLocalTime,648 +dateTimeOfLocalTime,649 +datumSize,650 +day,651 +dayOfAnalysis,652 +dayOfEndOfOverallTimeInterval,653 +dayOfForecast,654 +dayOfForecastUsedInLocalTime,655 +dayOfModelVersion,656 +dayOfReference,657 +dayOfTheYearDate,658 +decimalPrecision,659 +decimalScaleFactor,660 +defaultFaFieldName,661 +defaultFaLevelName,662 +defaultFaModelName,663 +defaultName,664 +defaultParameter,665 +defaultSequence,666 +defaultShortName,667 +defaultStepUnits,668 +defaultTypeOfLevel,669 +default_max_val,670 +default_min_val,671 +default_step_units,672 +definitionFilesVersion,673 +deleteCalendarId,674 +deleteExtraLocalSection,675 +deleteLocalDefinition,676 +deletePV,677 +derivedForecast,678 +dewPointTemperature,679 +diagnostic,680 +diagnosticNumber,681 +diffInDays,682 +diffInHours,683 +dimension,684 +dimensionNumber,685 +dimensionType,686 +direction,687 +directionNumber,688 +directionOfVariation,689 +directionScalingFactor,690 +dirty_statistics,691 +disableGrib1LocalSection,692 +discipline,693 +distanceFromTubeToEnsembleMean,694 +distinctLatitudes,695 +distinctLongitudes,696 +doExtractArea,697 +doExtractDateTime,698 +doExtractSubsets,699 +doSimpleThinning,700 +domain,701 +driverInformationBlockAddress,702 +dummy,703 +dummy1,704 +dummy2,705 +dummyc,706 +dx,707 +dy,708 +earthIsOblate,709 +earthMajorAxis,710 +earthMajorAxisInMetres,711 +earthMinorAxis,712 +earthMinorAxisInMetres,713 +eastLongitudeOfCluster,714 +eastLongitudeOfDomainOfTubing,715 +easternLongitudeOfClusterDomain,716 +easternLongitudeOfDomain,717 +ed,718 +edition,719 +editionNumber,720 +efas_model,721 +efas_post_proc,722 +efiOrder,723 +eight,724 +elementsTable,725 +elevation,726 +eleven,727 +endDayTrend1,728 +endDayTrend2,729 +endDayTrend3,730 +endDayTrend4,731 +endDescriptors,732 +endGridDefinition,733 +endHourTrend1,734 +endHourTrend2,735 +endHourTrend3,736 +endHourTrend4,737 +endMark,738 +endMinuteTrend1,739 +endMinuteTrend2,740 +endMinuteTrend3,741 +endMinuteTrend4,742 +endMonthTrend1,743 +endMonthTrend2,744 +endMonthTrend3,745 +endMonthTrend4,746 +endOfFileAddress,747 +endOfHeadersMarker,748 +endOfInterval,749 +endOfMessage,750 +endOfProduct,751 +endOfRange,752 +endStep,753 +endStepInHours,754 +endTimeStep,755 +endYearTrend1,756 +endYearTrend2,757 +endYearTrend3,758 +endYearTrend4,759 +energyNorm,760 +enorm,761 +ensembleForecastNumbers,762 +ensembleForecastNumbersList,763 +ensembleSize,764 +ensembleStandardDeviation,765 +eps,766 +epsContinous,767 +epsPoint,768 +epsStatisticsContinous,769 +epsStatisticsPoint,770 +expandBy,771 +expandedAbbreviations,772 +expandedCodes,773 +expandedCrex_scales,774 +expandedCrex_units,775 +expandedCrex_widths,776 +expandedDescriptors,777 +expandedNames,778 +expandedOriginalCodes,779 +expandedOriginalReferences,780 +expandedOriginalScales,781 +expandedOriginalWidths,782 +expandedTypes,783 +expandedUnits,784 +experimentVersionNumber,785 +experimentVersionNumber1,786 +experimentVersionNumber2,787 +experimentVersionNumberOfAnalysis,788 +expoffset,789 +expver,790 +extendedFlag,791 +extraDim,792 +extraDimensionPresent,793 +extraLocalSectionNumber,794 +extraLocalSectionPresent,795 +extraValues,796 +extractAreaEastLongitude,797 +extractAreaLatitudeRank,798 +extractAreaLongitudeRank,799 +extractAreaNorthLatitude,800 +extractAreaSouthLatitude,801 +extractAreaWestLongitude,802 +extractDateTimeDayEnd,803 +extractDateTimeDayRank,804 +extractDateTimeDayStart,805 +extractDateTimeEnd,806 +extractDateTimeHourEnd,807 +extractDateTimeHourRank,808 +extractDateTimeHourStart,809 +extractDateTimeMinuteEnd,810 +extractDateTimeMinuteRank,811 +extractDateTimeMinuteStart,812 +extractDateTimeMonthEnd,813 +extractDateTimeMonthRank,814 +extractDateTimeMonthStart,815 +extractDateTimeSecondEnd,816 +extractDateTimeSecondRank,817 +extractDateTimeSecondStart,818 +extractDateTimeStart,819 +extractDateTimeYearEnd,820 +extractDateTimeYearRank,821 +extractDateTimeYearStart,822 +extractSubset,823 +extractSubsetIntervalEnd,824 +extractSubsetIntervalStart,825 +extractSubsetList,826 +extractedAreaNumberOfSubsets,827 +extractedDateTimeNumberOfSubsets,828 +extremeClockwiseWindDirection,829 +extremeCounterClockwiseWindDirection,830 +extremeValuesRVR1,831 +extremeValuesRVR2,832 +extremeValuesRVR3,833 +extremeValuesRVR4,834 +faFieldName,835 +faLevelName,836 +faModelName,837 +false,838 +falseEasting,839 +falseNorthing,840 +fcmonth,841 +fcperiod,842 +fgDate,843 +fgTime,844 +file,845 +fileConsistencyFlags,846 +firstDimension,847 +firstDimensionCoordinateValueDefinition,848 +firstDimensionPhysicalSignificance,849 +firstLatitude,850 +firstLatitudeInDegrees,851 +firstMonthUsedToBuildClimateMonth1,852 +firstMonthUsedToBuildClimateMonth2,853 +firstOrderValues,854 +flag,855 +flagForAnyFurtherInformation,856 +flagForIrregularGridCoordinateList,857 +flagForNormalOrStaggeredGrid,858 +flagShowingPostAuxiliaryArrayInUse,859 +flags,860 +floatVal,861 +floatValues,862 +forecastLeadTime,863 +forecastMonth,864 +forecastOrSingularVectorNumber,865 +forecastPeriod,866 +forecastPeriodFrom,867 +forecastPeriodTo,868 +forecastProbabilityNumber,869 +forecastSteps,870 +forecastTime,871 +forecastperiod,872 +formatVersionMajorNumber,873 +formatVersionMinorNumber,874 +freeFormData,875 +frequency,876 +frequencyNumber,877 +frequencyScalingFactor,878 +functionCode,879 +g,880 +g1conceptsLocalDirAll,881 +g1conceptsMasterDir,882 +g2grid,883 +gaussianGridName,884 +genVertHeightCoords,885 +generalExtended2ordr,886 +generatingProcessIdentificationNumber,887 +generatingProcessIdentifier,888 +generatingProcessTemplate,889 +generatingProcessTemplateNumber,890 +getNumberOfValues,891 +gg,892 +global,893 +globalDomain,894 +grib1divider,895 +grib2LocalSectionNumber,896 +grib2LocalSectionPresent,897 +grib2divider,898 +grib3divider,899 +gribDataQualityChecks,900 +gribMasterTablesVersionNumber,901 +gribTablesVersionNo,902 +grid,903 +gridCoordinate,904 +gridDefinition,905 +gridDefinitionDescription,906 +gridDefinitionSection,907 +gridDefinitionTemplateNumber,908 +gridDescriptionSectionPresent,909 +gridName,910 +gridPointPosition,911 +gridType,912 +groupInternalNodeK,913 +groupLeafNodeK,914 +groupLengths,915 +groupSplitting,916 +groupSplittingMethodUsed,917 +groupWidth,918 +groupWidths,919 +gts_CCCC,920 +gts_TTAAii,921 +gts_ddhh00,922 +gts_header,923 +halfByte,924 +hdate,925 +headersOnly,926 +heightLevelName,927 +heightOrPressureOfLevel,928 +heightPressureEtcOfLevels,929 +hideThis,930 +horizontalCoordinateDefinition,931 +horizontalCoordinateSupplement,932 +horizontalDimensionProcessed,933 +horizontalDomainTemplate,934 +horizontalDomainTemplateNumber,935 +hour,936 +hourOfAnalysis,937 +hourOfEndOfOverallTimeInterval,938 +hourOfForecast,939 +hourOfForecastUsedInLocalTime,940 +hourOfModelVersion,941 +hourOfReference,942 +hoursAfterDataCutoff,943 +hoursAfterReferenceTimeOfDataCutoff,944 +hundred,945 +iDirectionIncrement,946 +iDirectionIncrementGiven,947 +iDirectionIncrementGridLength,948 +iDirectionIncrementInDegrees,949 +iIncrement,950 +iScansNegatively,951 +iScansPositively,952 +ident,953 +identificationNumber,954 +identificationOfOriginatingGeneratingCentre,955 +identificationOfProject,956 +identifier,957 +ieeeFloats,958 +ifsParam,959 +ijDirectionIncrementGiven,960 +implementationDateOfModelCycle,961 +incrementOfLengths,962 +indexTemplate,963 +indexTemplateNumber,964 +indexedStorageInternalNodeK,965 +indexingDate,966 +indexingTime,967 +indicatorOfParameter,968 +indicatorOfTypeOfLevel,969 +indicatorOfUnitForForecastTime,970 +indicatorOfUnitForTimeIncrement,971 +indicatorOfUnitForTimeRange,972 +indicatorOfUnitOfTimeRange,973 +inputDataPresentIndicator,974 +inputDelayedDescriptorReplicationFactor,975 +inputExtendedDelayedDescriptorReplicationFactor,976 +inputOriginatingCentre,977 +inputOverriddenReferenceValues,978 +inputProcessIdentifier,979 +inputShortDelayedDescriptorReplicationFactor,980 +instrument,981 +instrumentIdentifier,982 +instrumentType,983 +integerPointValues,984 +integerScaleFactor,985 +integerScalingFactorAppliedToDirections,986 +integerScalingFactorAppliedToFrequencies,987 +integerValues,988 +internalVersion,989 +internationalDataSubCategory,990 +interpretationOfNumberOfPoints,991 +intervalBetweenTimes,992 +isAccumulation,993 +isAuto,994 +isCavok,995 +isCavokTrend1,996 +isCavokTrend2,997 +isCavokTrend3,998 +isCavokTrend4,999 +isConstant,1000 +isCorrection,1001 +isEPS,1002 +isEps,1003 +isFillup,1004 +isHindcast,1005 +isOctahedral,1006 +isRotatedGrid,1007 +isSatellite,1008 +isSatelliteType,1009 +isSens,1010 +is_aerosol,1011 +is_aerosol_optical,1012 +is_chemical,1013 +is_chemical_distfn,1014 +is_chemical_srcsink,1015 +is_efas,1016 +is_localtime,1017 +is_ocean2d_param,1018 +is_ocean3d_param,1019 +is_s2s,1020 +is_tigge,1021 +is_uerra,1022 +isectionNumber2,1023 +isectionNumber3,1024 +isectionNumber4,1025 +isotopeIdentificationNumber,1026 +iteration,1027 +iterationNumber,1028 +iteratorDisableUnrotate,1029 +jDirectionIncrement,1030 +jDirectionIncrementGiven,1031 +jDirectionIncrementGridLength,1032 +jDirectionIncrementInDegrees,1033 +jIncrement,1034 +jPointsAreConsecutive,1035 +jScansPositively,1036 +jd1,1037 +jd2,1038 +julianDay,1039 +julianForecastDay,1040 +keyData,1041 +keyMore,1042 +keySat,1043 +kindOfProduct,1044 +kurt,1045 +kurtosis,1046 +lBB,1047 +landtype,1048 +laplacianOperator,1049 +laplacianOperatorIsSet,1050 +laplacianScalingFactor,1051 +laplacianScalingFactorUnset,1052 +lastMonthUsedToBuildClimateMonth1,1053 +lastMonthUsedToBuildClimateMonth2,1054 +latLonValues,1055 +latitude,1056 +latitudeFirstInDegrees,1057 +latitudeLastInDegrees,1058 +latitudeLongitudeValues,1059 +latitudeOfCentralPointInClusterDomain,1060 +latitudeOfCentrePoint,1061 +latitudeOfCentrePointInDegrees,1062 +latitudeOfFirstGridPoint,1063 +latitudeOfFirstGridPointInDegrees,1064 +latitudeOfIcosahedronPole,1065 +latitudeOfLastGridPoint,1066 +latitudeOfLastGridPointInDegrees,1067 +latitudeOfNorthWestCornerOfArea,1068 +latitudeOfReferencePoint,1069 +latitudeOfReferencePointInDegrees,1070 +latitudeOfSouthEastCornerOfArea,1071 +latitudeOfSouthernPole,1072 +latitudeOfSouthernPoleInDegrees,1073 +latitudeOfStretchingPole,1074 +latitudeOfStretchingPoleInDegrees,1075 +latitudeOfSubSatellitePoint,1076 +latitudeOfSubSatellitePointInDegrees,1077 +latitudeOfTangencyPoint,1078 +latitudeOfThePoleOfStretching,1079 +latitudeOfThePolePoint,1080 +latitudeOfThePolePointInDegrees,1081 +latitudeOfTheSouthernPoleOfProjection,1082 +latitudeSexagesimal,1083 +latitudeWhereDxAndDyAreSpecified,1084 +latitudeWhereDxAndDyAreSpecifiedInDegrees,1085 +latitudes,1086 +latitudesList,1087 +latitudinalDirectionGridLength,1088 +lcwfvSuiteName,1089 +leadtime,1090 +legBaseDate,1091 +legBaseTime,1092 +legNumber,1093 +legacyGaussSubarea,1094 +lengthDescriptors,1095 +lengthIncrementForTheGroupLengths,1096 +lengthOf4DvarWindow,1097 +lengthOfHeaders,1098 +lengthOfIndexTemplate,1099 +lengthOfMessage,1100 +lengthOfOriginatorLocalTemplate,1101 +lengthOfProjectLocalTemplate,1102 +lengthOfTimeRange,1103 +lev,1104 +levTypeName,1105 +level,1106 +levelIndicator,1107 +levelType,1108 +levelist,1109 +levels,1110 +levtype,1111 +libraryVersion,1112 +listMembersMissing,1113 +listMembersMissing2,1114 +listMembersMissing3,1115 +listMembersMissing4,1116 +listMembersUsed,1117 +listMembersUsed2,1118 +listMembersUsed3,1119 +listMembersUsed4,1120 +listOfContributingSpectralBands,1121 +listOfDistributionFunctionParameter,1122 +listOfEnsembleForecastNumbers,1123 +listOfModelIdentifiers,1124 +listOfParametersUsedForClustering,1125 +listOfScaledFrequencies,1126 +local,1127 +localDate,1128 +localDateTime,1129 +localDay,1130 +localDecimalScaleFactor,1131 +localDefNumberOne,1132 +localDefNumberTwo,1133 +localDefinition,1134 +localDefinitionNumber,1135 +localDir,1136 +localExtensionPadding,1137 +localFlag,1138 +localFlagLatestVersion,1139 +localHour,1140 +localLatitude,1141 +localLatitude1,1142 +localLatitude2,1143 +localLongitude,1144 +localLongitude1,1145 +localLongitude2,1146 +localMinute,1147 +localMonth,1148 +localNumberOfObservations,1149 +localSecond,1150 +localSection,1151 +localSectionPresent,1152 +localTablesVersion,1153 +localTablesVersionNumber,1154 +localTime,1155 +localTimeForecastList,1156 +localTimeMethod,1157 +localUsePresent,1158 +localYear,1159 +local_padding,1160 +local_use,1161 +logTransform,1162 +longitude,1163 +longitudeFirstInDegrees,1164 +longitudeLastInDegrees,1165 +longitudeOfCentralPointInClusterDomain,1166 +longitudeOfCentrePoint,1167 +longitudeOfCentrePointInDegrees,1168 +longitudeOfFirstDiamondCenterLine,1169 +longitudeOfFirstDiamondCentreLine,1170 +longitudeOfFirstDiamondCentreLineInDegrees,1171 +longitudeOfFirstGridPoint,1172 +longitudeOfFirstGridPointInDegrees,1173 +longitudeOfIcosahedronPole,1174 +longitudeOfLastGridPoint,1175 +longitudeOfLastGridPointInDegrees,1176 +longitudeOfNorthWestCornerOfArea,1177 +longitudeOfReferencePoint,1178 +longitudeOfReferencePointInDegrees,1179 +longitudeOfSouthEastCornerOfArea,1180 +longitudeOfSouthernPole,1181 +longitudeOfSouthernPoleInDegrees,1182 +longitudeOfStretchingPole,1183 +longitudeOfStretchingPoleInDegrees,1184 +longitudeOfSubSatellitePoint,1185 +longitudeOfSubSatellitePointInDegrees,1186 +longitudeOfTangencyPoint,1187 +longitudeOfThePoleOfStretching,1188 +longitudeOfThePolePoint,1189 +longitudeOfThePolePointInDegrees,1190 +longitudeOfTheSouthernPoleOfProjection,1191 +longitudeSexagesimal,1192 +longitudes,1193 +longitudesList,1194 +longitudinalDirectionGridLength,1195 +lowerLimit,1196 +lowerRange,1197 +lowerThreshold,1198 +lowerThresholdValue,1199 +ls_labeling,1200 +lsdate_bug,1201 +lstime_bug,1202 +m,1203 +mAngleMultiplier,1204 +mBasicAngle,1205 +mars,1206 +marsClass,1207 +marsClass1,1208 +marsClass2,1209 +marsDir,1210 +marsDomain,1211 +marsEndStep,1212 +marsExperimentOffset,1213 +marsExpver,1214 +marsForecastMonth,1215 +marsGrid,1216 +marsIdent,1217 +marsKeywords,1218 +marsKeywords1,1219 +marsLamModel,1220 +marsLatitude,1221 +marsLevel,1222 +marsLevelist,1223 +marsLongitude,1224 +marsModel,1225 +marsParam,1226 +marsQuantile,1227 +marsRange,1228 +marsStartStep,1229 +marsStep,1230 +marsStream,1231 +marsStream1,1232 +marsStream2,1233 +marsType,1234 +marsType1,1235 +marsType2,1236 +mars_labeling,1237 +mask,1238 +masterDir,1239 +masterTableNumber,1240 +masterTablesVersionNumber,1241 +masterTablesVersionNumberLatest,1242 +matchAerosolBinNumber,1243 +matchAerosolPacking,1244 +matchLandType,1245 +matchSort,1246 +matchTimeRepres,1247 +matrixBitmapsPresent,1248 +matrixOfValues,1249 +max,1250 +maximum,1251 +md5Data,1252 +md5DataSection,1253 +md5GridSection,1254 +md5Headers,1255 +md5Product,1256 +md5Section1,1257 +md5Section10,1258 +md5Section2,1259 +md5Section3,1260 +md5Section4,1261 +md5Section5,1262 +md5Section6,1263 +md5Section7,1264 +md5Section8,1265 +md5Section9,1266 +md5Structure,1267 +md5TimeDomainSection,1268 +meanRVR1,1269 +meanRVR2,1270 +meanRVR3,1271 +meanRVR4,1272 +meanSize,1273 +meanValueRVR1,1274 +meanValueRVR2,1275 +meanValueRVR3,1276 +meanValueRVR4,1277 +meaningOfVerticalCoordinate,1278 +memberNumber,1279 +messageLength,1280 +metadata,1281 +method,1282 +methodNumber,1283 +million,1284 +min,1285 +minimum,1286 +minute,1287 +minuteOfAnalysis,1288 +minuteOfEndOfOverallTimeInterval,1289 +minuteOfForecast,1290 +minuteOfForecastUsedInLocalTime,1291 +minuteOfModelVersion,1292 +minuteOfReference,1293 +minutesAfterDataCutoff,1294 +minutesAfterReferenceTimeOfDataCutoff,1295 +missingDataFlag,1296 +missingValue,1297 +missingValueManagement,1298 +missingValueManagementUsed,1299 +missingValuesPresent,1300 +mixedCoordinateDefinition,1301 +mixedCoordinateFieldFlag,1302 +modeNumber,1303 +model,1304 +modelErrorType,1305 +modelIdentifier,1306 +modelName,1307 +modelVersionDate,1308 +modelVersionTime,1309 +molarMass,1310 +month,1311 +monthOfAnalysis,1312 +monthOfEndOfOverallTimeInterval,1313 +monthOfForecast,1314 +monthOfForecastUsedInLocalTime,1315 +monthOfModelVersion,1316 +monthOfReference,1317 +monthlyVerificationDate,1318 +monthlyVerificationMonth,1319 +monthlyVerificationTime,1320 +monthlyVerificationYear,1321 +multiplicationFactorForLatLong,1322 +mybits,1323 +n,1324 +n2,1325 +n3,1326 +na,1327 +name,1328 +nameECMF,1329 +nameLegacyECMF,1330 +nameOfFirstFixedSurface,1331 +nameOfSecondFixedSurface,1332 +names,1333 +nd,1334 +neitherPresent,1335 +newSubtype,1336 +nlev,1337 +nnn,1338 +normAtFinalTime,1339 +normAtInitialTime,1340 +normal,1341 +northLatitudeOfCluster,1342 +northLatitudeOfDomainOfTubing,1343 +northWestLatitudeOfLPOArea,1344 +northWestLatitudeOfVerficationArea,1345 +northWestLongitudeOfLPOArea,1346 +northWestLongitudeOfVerficationArea,1347 +northernLatitudeOfClusterDomain,1348 +northernLatitudeOfDomain,1349 +nosigPresent,1350 +notDecoded,1351 +nt,1352 +number,1353 +numberInHorizontalCoordinates,1354 +numberInMixedCoordinateDefinition,1355 +numberInTheAuxiliaryArray,1356 +numberInTheGridCoordinateList,1357 +numberIncludedInAverage,1358 +numberMissingFromAveragesOrAccumulations,1359 +numberOfAnalysis,1360 +numberOfBits,1361 +numberOfBitsContainingEachPackedValue,1362 +numberOfBitsForScaledGroupLengths,1363 +numberOfBitsUsedForTheGroupWidths,1364 +numberOfBitsUsedForTheScaledGroupLengths,1365 +numberOfBytesInLocalDefinition,1366 +numberOfBytesOfFreeFormatData,1367 +numberOfBytesPerInteger,1368 +numberOfCategories,1369 +numberOfCharacters,1370 +numberOfChars,1371 +numberOfClusterHighResolution,1372 +numberOfClusterLowResolution,1373 +numberOfClusters,1374 +numberOfCodedValues,1375 +numberOfCoefficientsOrValuesUsedToSpecifyFirstDimensionCoordinateFunction,1376 +numberOfCoefficientsOrValuesUsedToSpecifySecondDimensionCoordinateFunction,1377 +numberOfColumns,1378 +numberOfComponents,1379 +numberOfContributingSpectralBands,1380 +numberOfControlForecastTube,1381 +numberOfCoordinatesValues,1382 +numberOfDataBinsAlongRadials,1383 +numberOfDataMatrices,1384 +numberOfDataPoints,1385 +numberOfDataPointsExpected,1386 +numberOfDataValues,1387 +numberOfDaysInClimateSamplingWindow,1388 +numberOfDiamonds,1389 +numberOfDirections,1390 +numberOfDistinctSection3s,1391 +numberOfDistinctSection4s,1392 +numberOfDistinctSection5s,1393 +numberOfDistinctSection6s,1394 +numberOfDistinctSection7s,1395 +numberOfDistinctSection8s,1396 +numberOfDistinctSection9s,1397 +numberOfDistributionFunctionParameters,1398 +numberOfEffectiveValues,1399 +numberOfFloats,1400 +numberOfForcasts,1401 +numberOfForecastsInCluster,1402 +numberOfForecastsInEnsemble,1403 +numberOfForecastsInTheCluster,1404 +numberOfForecastsInTube,1405 +numberOfForecastsUsedInLocalTime,1406 +numberOfFrequencies,1407 +numberOfGridInReference,1408 +numberOfGridUsed,1409 +numberOfGroups,1410 +numberOfGroupsOfDataValues,1411 +numberOfHorizontalPoints,1412 +numberOfIntegers,1413 +numberOfInts,1414 +numberOfIterations,1415 +numberOfLocalDefinitions,1416 +numberOfLogicals,1417 +numberOfMembersInCluster,1418 +numberOfMembersInEnsemble,1419 +numberOfMissing,1420 +numberOfMissingInStatisticalProcess,1421 +numberOfMissingValues,1422 +numberOfModeOfDistribution,1423 +numberOfModels,1424 +numberOfOctectsForNumberOfPoints,1425 +numberOfOctetsExtraDescriptors,1426 +numberOfOperationalForecastTube,1427 +numberOfPackedValues,1428 +numberOfParallelsBetweenAPoleAndTheEquator,1429 +numberOfParametersUsedForClustering,1430 +numberOfPartitions,1431 +numberOfPoints,1432 +numberOfPointsAlongAMeridian,1433 +numberOfPointsAlongAParallel,1434 +numberOfPointsAlongFirstAxis,1435 +numberOfPointsAlongSecondAxis,1436 +numberOfPointsAlongTheXAxis,1437 +numberOfPointsAlongTheYAxis,1438 +numberOfPointsAlongXAxis,1439 +numberOfPointsAlongXAxisInCouplingArea,1440 +numberOfPointsAlongYAxis,1441 +numberOfPointsAlongYAxisInCouplingArea,1442 +numberOfPointsInDomain,1443 +numberOfPointsUsed,1444 +numberOfPressureLevelsUsedForClustering,1445 +numberOfRadarSitesUsed,1446 +numberOfRadials,1447 +numberOfReforecastYearsInModelClimate,1448 +numberOfRemaininChars,1449 +numberOfRepresentativeMember,1450 +numberOfReservedBytes,1451 +numberOfRows,1452 +numberOfSecondOrderPackedValues,1453 +numberOfSection,1454 +numberOfSingularVectorsComputed,1455 +numberOfSingularVectorsEvolved,1456 +numberOfStepsUsedForClustering,1457 +numberOfSubsets,1458 +numberOfTensOfThousandsOfYearsOfOffset,1459 +numberOfTimeIncrementsOfForecastsUsedInLocalTime,1460 +numberOfTimeRange,1461 +numberOfTimeSteps,1462 +numberOfUnexpandedDescriptors,1463 +numberOfUnusedBitsAtEndOfSection3,1464 +numberOfUsedSpatialTiles,1465 +numberOfUsedTileAttributes,1466 +numberOfUsefulPointsAlongXAxis,1467 +numberOfUsefulPointsAlongYAxis,1468 +numberOfVGridUsed,1469 +numberOfValues,1470 +numberOfVerticalCoordinateValues,1471 +numberOfVerticalGridDescriptors,1472 +numberOfVerticalPoints,1473 +numberingOrderOfDiamonds,1474 +numericValues,1475 +observablePropertyTemplate,1476 +observablePropertyTemplateNumber,1477 +observationDiagnostic,1478 +observationGeneratingProcessIdentifier,1479 +observationType,1480 +observedData,1481 +obstype,1482 +oceanAtmosphereCoupling,1483 +oceanLevName,1484 +oceanStream,1485 +octetAtWichPackedDataBegins,1486 +offset,1487 +offsetAfterBitmap,1488 +offsetAfterCentreLocalSection,1489 +offsetAfterData,1490 +offsetAfterLocalSection,1491 +offsetAfterPadding,1492 +offsetBBitmap,1493 +offsetBSection5,1494 +offsetBSection6,1495 +offsetBSection9,1496 +offsetBeforeBitmap,1497 +offsetBeforeData,1498 +offsetBeforePL,1499 +offsetBeforePV,1500 +offsetDescriptors,1501 +offsetEndSection4,1502 +offsetFreeFormData,1503 +offsetFromOriginToInnerBound,1504 +offsetFromReferenceOfFirstTime,1505 +offsetICEFieldsUsed,1506 +offsetSection0,1507 +offsetSection1,1508 +offsetSection10,1509 +offsetSection11,1510 +offsetSection2,1511 +offsetSection3,1512 +offsetSection4,1513 +offsetSection5,1514 +offsetSection6,1515 +offsetSection7,1516 +offsetSection8,1517 +offsetSection9,1518 +offsetToEndOf4DvarWindow,1519 +offsetValuesBy,1520 +oldSubtype,1521 +one,1522 +oneConstant,1523 +oneMillionConstant,1524 +oneMinuteMeanMaximumRVR1,1525 +oneMinuteMeanMaximumRVR2,1526 +oneMinuteMeanMaximumRVR3,1527 +oneMinuteMeanMaximumRVR4,1528 +oneMinuteMeanMinimumRVR1,1529 +oneMinuteMeanMinimumRVR2,1530 +oneMinuteMeanMinimumRVR3,1531 +oneMinuteMeanMinimumRVR4,1532 +oneThousand,1533 +oper,1534 +operStream,1535 +operatingMode,1536 +operationalForecastCluster,1537 +optimisationTime,1538 +optimizeScaleFactor,1539 +optionalData,1540 +opttime,1541 +orderOfSPD,1542 +orderOfSpatialDifferencing,1543 +orientationOfTheGrid,1544 +orientationOfTheGridInDegrees,1545 +origin,1546 +originalParameterNumber,1547 +originalParameterTableNumber,1548 +originalSubCentreIdentifier,1549 +originatingCentre,1550 +originatingCentreOfAnalysis,1551 +originatorLocalTemplate,1552 +originatorLocalTemplateNumber,1553 +overlayTemplate,1554 +overlayTemplateNumber,1555 +pack,1556 +packedValues,1557 +packingError,1558 +packingType,1559 +padding,1560 +padding_grid1_1,1561 +padding_grid1_2,1562 +padding_grid3_1,1563 +padding_grid4_1,1564 +padding_grid50_1,1565 +padding_grid5_1,1566 +padding_grid90_1,1567 +padding_loc10_1,1568 +padding_loc12_1,1569 +padding_loc13_1,1570 +padding_loc13_2,1571 +padding_loc13_3,1572 +padding_loc13_4,1573 +padding_loc13_5,1574 +padding_loc14_1,1575 +padding_loc14_2,1576 +padding_loc15_1,1577 +padding_loc16_1,1578 +padding_loc17_2,1579 +padding_loc18_1,1580 +padding_loc18_2,1581 +padding_loc190_1,1582 +padding_loc191_1,1583 +padding_loc191_2,1584 +padding_loc191_3,1585 +padding_loc192_1,1586 +padding_loc19_2,1587 +padding_loc20_1,1588 +padding_loc21_1,1589 +padding_loc23_1,1590 +padding_loc244_1,1591 +padding_loc244_2,1592 +padding_loc244_3,1593 +padding_loc245_1,1594 +padding_loc245_2,1595 +padding_loc26_1,1596 +padding_loc27_1,1597 +padding_loc27_2,1598 +padding_loc28_1,1599 +padding_loc29_1,1600 +padding_loc29_2,1601 +padding_loc29_3,1602 +padding_loc2_1,1603 +padding_loc2_2,1604 +padding_loc30_1,1605 +padding_loc30_2,1606 +padding_loc37_1,1607 +padding_loc37_2,1608 +padding_loc38_1,1609 +padding_loc3_1,1610 +padding_loc4_2,1611 +padding_loc50_1,1612 +padding_loc5_1,1613 +padding_loc6_1,1614 +padding_loc7_1,1615 +padding_loc9_1,1616 +padding_loc9_2,1617 +padding_local11_1,1618 +padding_local1_1,1619 +padding_local1_31,1620 +padding_local40_1,1621 +padding_local_35,1622 +padding_local_7_1,1623 +padding_sec1_loc,1624 +padding_sec2_1,1625 +padding_sec2_2,1626 +padding_sec2_3,1627 +padding_sec3_1,1628 +padding_sec4_1,1629 +paleontologicalOffset,1630 +param,1631 +paramId,1632 +paramIdECMF,1633 +paramIdLegacyECMF,1634 +param_value_max,1635 +param_value_min,1636 +parameter,1637 +parameterCategory,1638 +parameterCode,1639 +parameterDiscipline,1640 +parameterIndicator,1641 +parameterName,1642 +parameterNumber,1643 +parameterUnits,1644 +parameters,1645 +parametersVersion,1646 +partitionItems,1647 +partitionNumber,1648 +partitionTable,1649 +partitions,1650 +pastTendencyRVR1,1651 +pastTendencyRVR2,1652 +pastTendencyRVR3,1653 +pastTendencyRVR4,1654 +patch_precip_fp,1655 +pentagonalResolutionParameterJ,1656 +pentagonalResolutionParameterK,1657 +pentagonalResolutionParameterM,1658 +percentileValue,1659 +periodOfTime,1660 +periodOfTimeIntervals,1661 +perturbationNumber,1662 +perturbedType,1663 +phase,1664 +physicalFlag1,1665 +physicalFlag2,1666 +physicalMeaningOfVerticalCoordinate,1667 +pl,1668 +platform,1669 +plusOneinOrdersOfSPD,1670 +points,1671 +postAuxiliary,1672 +postAuxiliaryArrayPresent,1673 +powerOfTenUsedToScaleClimateWeight,1674 +preBitmapValues,1675 +preProcessingParameter,1676 +precision,1677 +precisionOfTheUnpackedSubset,1678 +predefined_grid,1679 +predefined_grid_values,1680 +preferLocalConcepts,1681 +present,1682 +presentTrend1,1683 +presentTrend2,1684 +presentTrend3,1685 +presentTrend4,1686 +presentWeather1Present,1687 +presentWeather1PresentTrend1,1688 +presentWeather1PresentTrend2,1689 +presentWeather1PresentTrend3,1690 +presentWeather1PresentTrend4,1691 +presentWeather2Present,1692 +presentWeather2PresentTrend1,1693 +presentWeather2PresentTrend2,1694 +presentWeather2PresentTrend3,1695 +presentWeather2PresentTrend4,1696 +presentWeather3Present,1697 +presentWeather3PresentTrend1,1698 +presentWeather3PresentTrend2,1699 +presentWeather3PresentTrend3,1700 +presentWeather3PresentTrend4,1701 +pressureLevel,1702 +pressureUnits,1703 +primaryBitmap,1704 +primaryMissingValue,1705 +primaryMissingValueSubstitute,1706 +probContinous,1707 +probPoint,1708 +probProductDefinition,1709 +probabilityType,1710 +probabilityTypeName,1711 +process,1712 +produceLargeConstantFields,1713 +product,1714 +productDefinition,1715 +productDefinitionTemplateNumber,1716 +productDefinitionTemplateNumberInternal,1717 +productIdentifier,1718 +productType,1719 +productionStatusOfProcessedData,1720 +projSourceString,1721 +projString,1722 +projTargetString,1723 +projectLocalTemplate,1724 +projectLocalTemplateNumber,1725 +projectionCenterFlag,1726 +projectionCentreFlag,1727 +pv,1728 +pvlLocation,1729 +qfe,1730 +qfePresent,1731 +qfeUnits,1732 +qnh,1733 +qnhAPresent,1734 +qnhPresent,1735 +qnhUnits,1736 +qualityControl,1737 +qualityControlIndicator,1738 +qualityValueAssociatedWithParameter,1739 +quantile,1740 +quantileValue,1741 +radialAngularSpacing,1742 +radials,1743 +radius,1744 +radiusInMetres,1745 +radiusOfCentralCluster,1746 +radiusOfClusterDomain,1747 +radiusOfTheEarth,1748 +range,1749 +rangeBinSpacing,1750 +rdbDateTime,1751 +rdbSubtype,1752 +rdbType,1753 +rdb_key,1754 +rdbtime,1755 +rdbtimeDate,1756 +rdbtimeDay,1757 +rdbtimeHour,1758 +rdbtimeMinute,1759 +rdbtimeMonth,1760 +rdbtimeSecond,1761 +rdbtimeTime,1762 +rdbtimeYear,1763 +realPart,1764 +realPartOf00,1765 +recDateTime,1766 +recentWeather,1767 +recentWeatherTry,1768 +rectime,1769 +rectimeDay,1770 +rectimeHour,1771 +rectimeMinute,1772 +rectimeSecond,1773 +reducedGrid,1774 +refdate,1775 +reference,1776 +referenceDate,1777 +referenceForGroupLengths,1778 +referenceForGroupWidths,1779 +referenceOfLengths,1780 +referenceOfWidths,1781 +referenceReflectivityForEchoTop,1782 +referenceSampleInterval,1783 +referenceStep,1784 +referenceValue,1785 +referenceValueError,1786 +reflectivityCalibrationConstant,1787 +remarkPresent,1788 +reportType,1789 +representationMode,1790 +representationType,1791 +representativeMember,1792 +reserved,1793 +reserved1,1794 +reserved2,1795 +reserved3,1796 +reservedNeedNotBePresent,1797 +reservedOctet,1798 +reservedSection2,1799 +reservedSection3,1800 +reservedSection4,1801 +resolutionAndComponentFlags,1802 +resolutionAndComponentFlags1,1803 +resolutionAndComponentFlags2,1804 +resolutionAndComponentFlags3,1805 +resolutionAndComponentFlags4,1806 +resolutionAndComponentFlags6,1807 +resolutionAndComponentFlags7,1808 +resolutionAndComponentFlags8,1809 +restricted,1810 +rootGroupObjectHeaderAddress,1811 +rootGroupSymbolTableEntry,1812 +rootTablesDir,1813 +roundedMarsLatitude,1814 +roundedMarsLevelist,1815 +roundedMarsLongitude,1816 +runwayBrakingActionState1,1817 +runwayBrakingActionState2,1818 +runwayBrakingActionState3,1819 +runwayBrakingActionState4,1820 +runwayDepositCodeState1,1821 +runwayDepositCodeState2,1822 +runwayDepositCodeState3,1823 +runwayDepositCodeState4,1824 +runwayDepositState1,1825 +runwayDepositState2,1826 +runwayDepositState3,1827 +runwayDepositState4,1828 +runwayDepthOfDepositCodeState1,1829 +runwayDepthOfDepositCodeState2,1830 +runwayDepthOfDepositCodeState3,1831 +runwayDepthOfDepositCodeState4,1832 +runwayDepthOfDepositState1,1833 +runwayDepthOfDepositState2,1834 +runwayDepthOfDepositState3,1835 +runwayDepthOfDepositState4,1836 +runwayDesignatorRVR1,1837 +runwayDesignatorRVR2,1838 +runwayDesignatorRVR3,1839 +runwayDesignatorRVR4,1840 +runwayDesignatorState1,1841 +runwayDesignatorState2,1842 +runwayDesignatorState3,1843 +runwayDesignatorState4,1844 +runwayExtentOfContaminationCodeState1,1845 +runwayExtentOfContaminationCodeState2,1846 +runwayExtentOfContaminationCodeState3,1847 +runwayExtentOfContaminationCodeState4,1848 +runwayExtentOfContaminationState1,1849 +runwayExtentOfContaminationState2,1850 +runwayExtentOfContaminationState3,1851 +runwayExtentOfContaminationState4,1852 +runwayFrictionCodeValueState1,1853 +runwayFrictionCodeValueState2,1854 +runwayFrictionCodeValueState3,1855 +runwayFrictionCodeValueState4,1856 +runwayFrictionCoefficientCodeState1,1857 +runwayFrictionCoefficientCodeState2,1858 +runwayFrictionCoefficientCodeState3,1859 +runwayFrictionCoefficientCodeState4,1860 +runwayFrictionCoefficientState1,1861 +runwayFrictionCoefficientState2,1862 +runwayFrictionCoefficientState3,1863 +runwayFrictionCoefficientState4,1864 +runwaySideCodeState1,1865 +runwaySideCodeState2,1866 +runwaySideCodeState3,1867 +runwaySideCodeState4,1868 +runwayState,1869 +sampleSizeOfModelClimate,1870 +satelliteID,1871 +satelliteIdentifier,1872 +satelliteNumber,1873 +satelliteSeries,1874 +scaleFactorAtReferencePoint,1875 +scaleFactorOfCentralWaveNumber,1876 +scaleFactorOfDistanceFromEnsembleMean,1877 +scaleFactorOfDistributionFunctionParameter,1878 +scaleFactorOfEarthMajorAxis,1879 +scaleFactorOfEarthMinorAxis,1880 +scaleFactorOfFirstFixedSurface,1881 +scaleFactorOfFirstSize,1882 +scaleFactorOfFirstWavelength,1883 +scaleFactorOfLengthOfSemiMajorAxis,1884 +scaleFactorOfLengthOfSemiMinorAxis,1885 +scaleFactorOfLowerLimit,1886 +scaleFactorOfMajorAxisOfOblateSpheroidEarth,1887 +scaleFactorOfMinorAxisOfOblateSpheroidEarth,1888 +scaleFactorOfPrimeMeridianOffset,1889 +scaleFactorOfRadiusOfSphericalEarth,1890 +scaleFactorOfSecondFixedSurface,1891 +scaleFactorOfSecondSize,1892 +scaleFactorOfSecondWavelength,1893 +scaleFactorOfStandardDeviation,1894 +scaleFactorOfStandardDeviationInTheCluster,1895 +scaleFactorOfUpperLimit,1896 +scaleValuesBy,1897 +scaledDirections,1898 +scaledFrequencies,1899 +scaledValueOfCentralWaveNumber,1900 +scaledValueOfDistanceFromEnsembleMean,1901 +scaledValueOfDistributionFunctionParameter,1902 +scaledValueOfEarthMajorAxis,1903 +scaledValueOfEarthMinorAxis,1904 +scaledValueOfFirstFixedSurface,1905 +scaledValueOfFirstSize,1906 +scaledValueOfFirstWavelength,1907 +scaledValueOfLengthOfSemiMajorAxis,1908 +scaledValueOfLengthOfSemiMinorAxis,1909 +scaledValueOfLowerLimit,1910 +scaledValueOfMajorAxisOfOblateSpheroidEarth,1911 +scaledValueOfMinorAxisOfOblateSpheroidEarth,1912 +scaledValueOfPrimeMeridianOffset,1913 +scaledValueOfRadiusOfSphericalEarth,1914 +scaledValueOfSecondFixedSurface,1915 +scaledValueOfSecondSize,1916 +scaledValueOfSecondWavelength,1917 +scaledValueOfStandardDeviation,1918 +scaledValueOfStandardDeviationInTheCluster,1919 +scaledValueOfUpperLimit,1920 +scalingFactorForFrequencies,1921 +scanPosition,1922 +scanningMode,1923 +scanningMode4,1924 +scanningMode5,1925 +scanningMode6,1926 +scanningMode7,1927 +scanningMode8,1928 +scanningModeForOneDiamond,1929 +sd,1930 +second,1931 +secondDimension,1932 +secondDimensionCoordinateValueDefinition,1933 +secondDimensionPhysicalSignificance,1934 +secondLatitude,1935 +secondLatitudeInDegrees,1936 +secondOfEndOfOverallTimeInterval,1937 +secondOfForecast,1938 +secondOfForecastUsedInLocalTime,1939 +secondOfModelVersion,1940 +secondOrderFlags,1941 +secondOrderOfDifferentWidth,1942 +secondOrderValuesDifferentWidths,1943 +secondaryBitMap,1944 +secondaryBitmap,1945 +secondaryBitmapPresent,1946 +secondaryBitmaps,1947 +secondaryBitmapsCount,1948 +secondaryBitmapsSize,1949 +secondaryMissingValue,1950 +secondaryMissingValueSubstitute,1951 +secondsOfAnalysis,1952 +secondsOfReference,1953 +section,1954 +section0Length,1955 +section0Pointer,1956 +section1,1957 +section10Length,1958 +section10Pointer,1959 +section11Length,1960 +section11Pointer,1961 +section1Flags,1962 +section1Length,1963 +section1Padding,1964 +section1Pointer,1965 +section2Length,1966 +section2Padding,1967 +section2Pointer,1968 +section2Present,1969 +section2Used,1970 +section3Flags,1971 +section3Length,1972 +section3Padding,1973 +section3Pointer,1974 +section3UniqueIdentifier,1975 +section4,1976 +section4Length,1977 +section4Padding,1978 +section4Pointer,1979 +section4UniqueIdentifier,1980 +section5,1981 +section5Length,1982 +section5Pointer,1983 +section5UniqueIdentifier,1984 +section6,1985 +section6Length,1986 +section6Pointer,1987 +section6UniqueIdentifier,1988 +section7,1989 +section7Length,1990 +section7Pointer,1991 +section7UniqueIdentifier,1992 +section8,1993 +section8Length,1994 +section8Pointer,1995 +section8UniqueIdentifier,1996 +section9Length,1997 +section9Pointer,1998 +section9UniqueIdentifier,1999 +sectionLengthLimitForEnsembles,2000 +sectionLengthLimitForProbability,2001 +sectionNumber,2002 +sectionPosition,2003 +section_01,2004 +section_02,2005 +section_03,2006 +section_04,2007 +section_05,2008 +section_06,2009 +section_07,2010 +section_08,2011 +section_09,2012 +section_1,2013 +section_10,2014 +section_11,2015 +section_2,2016 +section_3,2017 +section_4,2018 +section_5,2019 +section_6,2020 +section_7,2021 +section_8,2022 +selectStepTemplateInstant,2023 +selectStepTemplateInterval,2024 +sensitiveAreaDomain,2025 +sequences,2026 +setBitsPerValue,2027 +setCalendarId,2028 +setDecimalPrecision,2029 +setLocalDefinition,2030 +setToMissingIfOutOfRange,2031 +sfc_levtype,2032 +shapeOfTheEarth,2033 +shapeOfVerificationArea,2034 +shortName,2035 +shortNameECMF,2036 +shortNameLegacyECMF,2037 +short_name,2038 +signature,2039 +significanceOfReferenceDateAndTime,2040 +significanceOfReferenceTime,2041 +simpleThinningMissingRadius,2042 +simpleThinningSkip,2043 +simpleThinningStart,2044 +siteElevation,2045 +siteId,2046 +siteLatitude,2047 +siteLongitude,2048 +sizeOfLength,2049 +sizeOfOffsets,2050 +sizeOfPostAuxiliaryArray,2051 +sizeOfPostAuxiliaryArrayPlusOne,2052 +skew,2053 +skewness,2054 +skipExtraKeyAttributes,2055 +sort,2056 +sourceOfGridDefinition,2057 +sourceSinkChemicalPhysicalProcess,2058 +southEastLatitudeOfLPOArea,2059 +southEastLatitudeOfVerficationArea,2060 +southEastLongitudeOfLPOArea,2061 +southEastLongitudeOfVerficationArea,2062 +southLatitudeOfCluster,2063 +southLatitudeOfDomainOfTubing,2064 +southPoleOnProjectionPlane,2065 +southernLatitudeOfClusterDomain,2066 +southernLatitudeOfDomain,2067 +sp1,2068 +sp2,2069 +sp3,2070 +spaceUnitFlag,2071 +spacingOfBinsAlongRadials,2072 +spare,2073 +spare1,2074 +spare2,2075 +spare3,2076 +spare4,2077 +spatialProcessing,2078 +spatialSmoothingOfProduct,2079 +spectralDataRepresentationMode,2080 +spectralDataRepresentationType,2081 +spectralMode,2082 +spectralType,2083 +sphericalHarmonics,2084 +standardDeviation,2085 +standardParallel,2086 +standardParallelInDegrees,2087 +standardParallelInMicrodegrees,2088 +startOfHeaders,2089 +startOfMessage,2090 +startOfRange,2091 +startStep,2092 +startStepInHours,2093 +startTimeStep,2094 +startingAzimuth,2095 +statisticalProcess,2096 +statisticalProcessesList,2097 +statistics,2098 +status,2099 +step,2100 +stepForClustering,2101 +stepHumanReadable,2102 +stepInHours,2103 +stepRange,2104 +stepRangeInHours,2105 +stepType,2106 +stepTypeForConversion,2107 +stepTypeInternal,2108 +stepUnits,2109 +stepZero,2110 +stream,2111 +streamOfAnalysis,2112 +stretchingFactor,2113 +stretchingFactorScaled,2114 +stringValues,2115 +subCentre,2116 +subDefinitions1,2117 +subDefinitions2,2118 +subLocalDefinition1,2119 +subLocalDefinition2,2120 +subLocalDefinitionLength1,2121 +subLocalDefinitionLength2,2122 +subLocalDefinitionNumber1,2123 +subLocalDefinitionNumber2,2124 +subSetJ,2125 +subSetK,2126 +subSetM,2127 +subcentreOfAnalysis,2128 +subdivisionsOfBasicAngle,2129 +suiteName,2130 +superblockExtensionAddress,2131 +swapScanningLat,2132 +swapScanningLon,2133 +swapScanningX,2134 +swapScanningY,2135 +system,2136 +systemNumber,2137 +t,2138 +table2Version,2139 +tableCode,2140 +tableNumber,2141 +tableReference,2142 +tablesLocalDir,2143 +tablesMasterDir,2144 +tablesVersion,2145 +tablesVersionLatest,2146 +tablesVersionLatestOfficial,2147 +targetCompressionRatio,2148 +td,2149 +tempPressureUnits,2150 +temperature,2151 +temperatureAndDewpointPresent,2152 +templatesLocalDir,2153 +templatesMasterDir,2154 +theHindcastMarsStream,2155 +theMessage,2156 +thisExperimentVersionNumber,2157 +thisMarsClass,2158 +thisMarsStream,2159 +thisMarsType,2160 +thousand,2161 +three,2162 +threshold,2163 +thresholdIndicator,2164 +tiggeCentre,2165 +tiggeLAMName,2166 +tiggeLocalVersion,2167 +tiggeModel,2168 +tiggeSection,2169 +tiggeSuiteID,2170 +tigge_name,2171 +tigge_short_name,2172 +tileClassification,2173 +tileIndex,2174 +time,2175 +timeCoordinateDefinition,2176 +timeDomainTemplate,2177 +timeDomainTemplateNumber,2178 +timeIncrement,2179 +timeIncrementBetweenSuccessiveFields,2180 +timeOfAnalysis,2181 +timeOfForecast,2182 +timeOfForecastUsedInLocalTime,2183 +timeOfModelVersion,2184 +timeOfReference,2185 +timeRangeIndicator,2186 +timeRangeIndicatorFromStepRange,2187 +timeUnitFlag,2188 +timerepres,2189 +topLevel,2190 +total,2191 +totalAerosolBinsNumbers,2192 +totalInitialConditions,2193 +totalLength,2194 +totalNumber,2195 +totalNumberOfClusters,2196 +totalNumberOfDataValuesMissingInStatisticalProcess,2197 +totalNumberOfDirections,2198 +totalNumberOfForecastProbabilities,2199 +totalNumberOfFrequencies,2200 +totalNumberOfGridPoints,2201 +totalNumberOfIterations,2202 +totalNumberOfQuantiles,2203 +totalNumberOfRepetitions,2204 +totalNumberOfTileAttributePairs,2205 +totalNumberOfTubes,2206 +totalNumberOfValuesInUnpackedSubset,2207 +totalNumberOfdimensions,2208 +treatmentOfMissingData,2209 +true,2210 +trueLengthOfLastGroup,2211 +truncateDegrees,2212 +truncateLaplacian,2213 +tsectionNumber3,2214 +tsectionNumber4,2215 +tsectionNumber5,2216 +tubeDomain,2217 +tubeNumber,2218 +two,2219 +twoOrdersOfSPD,2220 +type,2221 +typeOfAnalysis,2222 +typeOfAuxiliaryInformation,2223 +typeOfCalendar,2224 +typeOfCompressionUsed,2225 +typeOfDistributionFunction,2226 +typeOfEnsembleForecast,2227 +typeOfEnsembleMember,2228 +typeOfFirstFixedSurface,2229 +typeOfGeneratingProcess,2230 +typeOfGrid,2231 +typeOfHorizontalLine,2232 +typeOfIntervalForFirstAndSecondSize,2233 +typeOfIntervalForFirstAndSecondWavelength,2234 +typeOfLevel,2235 +typeOfLevelECMF,2236 +typeOfOriginalFieldValues,2237 +typeOfPacking,2238 +typeOfPostProcessing,2239 +typeOfPreProcessing,2240 +typeOfProcessedData,2241 +typeOfSSTFieldUsed,2242 +typeOfSecondFixedSurface,2243 +typeOfSizeInterval,2244 +typeOfStatisticalPostProcessingOfEnsembleMembers,2245 +typeOfStatisticalProcessing,2246 +typeOfTimeIncrement,2247 +typeOfTimeIncrementBetweenSuccessiveFieldsUsedInTheStatisticalProcessing,2248 +typeOfWavelengthInterval,2249 +typicalCentury,2250 +typicalDate,2251 +typicalDateTime,2252 +typicalDay,2253 +typicalHour,2254 +typicalMinute,2255 +typicalMonth,2256 +typicalSecond,2257 +typicalTime,2258 +typicalYear,2259 +typicalYear2,2260 +typicalYearOfCentury,2261 +uco,2262 +ucs,2263 +unexpandedDescriptors,2264 +unexpandedDescriptorsEncoded,2265 +unitOfOffsetFromReferenceTime,2266 +unitOfTime,2267 +unitOfTimeIncrement,2268 +unitOfTimeRange,2269 +units,2270 +unitsBias,2271 +unitsConversionOffset,2272 +unitsConversionScaleFactor,2273 +unitsDecimalScaleFactor,2274 +unitsECMF,2275 +unitsFactor,2276 +unitsLegacyECMF,2277 +unitsOfFirstFixedSurface,2278 +unitsOfSecondFixedSurface,2279 +unknown,2280 +unpack,2281 +unpackedError,2282 +unpackedSubsetPrecision,2283 +unpackedValues,2284 +unsignedIntegers,2285 +unstructuredGrid,2286 +unstructuredGridSubtype,2287 +unstructuredGridType,2288 +unstructuredGridUUID,2289 +unusedBitsInBitmap,2290 +updateSequenceNumber,2291 +upperLimit,2292 +upperRange,2293 +upperThreshold,2294 +upperThresholdValue,2295 +userDateEnd,2296 +userDateStart,2297 +userDateTimeEnd,2298 +userDateTimeStart,2299 +userTimeEnd,2300 +userTimeStart,2301 +uuidOfHGrid,2302 +uuidOfVGrid,2303 +uvRelativeToGrid,2304 +validityDate,2305 +validityTime,2306 +values,2307 +variationOfVisibility,2308 +variationOfVisibilityDirection,2309 +variationOfVisibilityDirectionAngle,2310 +variationOfVisibilityDirectionTrend1,2311 +variationOfVisibilityDirectionTrend2,2312 +variationOfVisibilityDirectionTrend3,2313 +variationOfVisibilityDirectionTrend4,2314 +variationOfVisibilityTrend1,2315 +variationOfVisibilityTrend2,2316 +variationOfVisibilityTrend3,2317 +variationOfVisibilityTrend4,2318 +varno,2319 +verificationDate,2320 +verificationMonth,2321 +verificationYear,2322 +verifyingMonth,2323 +version,2324 +versionNumOfFilesFreeSpaceStorage,2325 +versionNumOfRootGroupSymbolTableEntry,2326 +versionNumOfSharedHeaderMessageFormat,2327 +versionNumberOfExperimentalSuite,2328 +versionNumberOfGribLocalTables,2329 +versionNumberOfSuperblock,2330 +versionOfModelClimate,2331 +verticalCoordinate,2332 +verticalCoordinateDefinition,2333 +verticalDomainTemplate,2334 +verticalDomainTemplateNumber,2335 +verticalVisibility,2336 +verticalVisibilityCoded,2337 +visibility,2338 +visibilityInKilometresTrend1,2339 +visibilityInKilometresTrend2,2340 +visibilityInKilometresTrend3,2341 +visibilityInKilometresTrend4,2342 +visibilityTrend1,2343 +visibilityTrend2,2344 +visibilityTrend3,2345 +visibilityTrend4,2346 +waveDomain,2347 +weightAppliedToClimateMonth1,2348 +westLongitudeOfCluster,2349 +westLongitudeOfDomainOfTubing,2350 +westernLongitudeOfClusterDomain,2351 +westernLongitudeOfDomain,2352 +widthOfFirstOrderValues,2353 +widthOfLengths,2354 +widthOfSPD,2355 +widthOfWidths,2356 +windDirection,2357 +windDirectionTrend1,2358 +windDirectionTrend2,2359 +windDirectionTrend3,2360 +windDirectionTrend4,2361 +windGust,2362 +windGustTrend1,2363 +windGustTrend2,2364 +windGustTrend3,2365 +windGustTrend4,2366 +windPresent,2367 +windSpeed,2368 +windSpeedTrend1,2369 +windSpeedTrend2,2370 +windSpeedTrend3,2371 +windSpeedTrend4,2372 +windUnits,2373 +windUnitsTrend1,2374 +windUnitsTrend2,2375 +windUnitsTrend3,2376 +windUnitsTrend4,2377 +windVariableDirection,2378 +windVariableDirectionTrend1,2379 +windVariableDirectionTrend2,2380 +windVariableDirectionTrend3,2381 +windVariableDirectionTrend4,2382 +wrongPadding,2383 +xCoordinateOfOriginOfSectorImage,2384 +xCoordinateOfSubSatellitePoint,2385 +xDirectionGridLength,2386 +xDirectionGridLengthInMetres,2387 +xDirectionGridLengthInMillimetres,2388 +xFirst,2389 +xLast,2390 +yCoordinateOfOriginOfSectorImage,2391 +yCoordinateOfSubSatellitePoint,2392 +yDirectionGridLength,2393 +yDirectionGridLengthInMetres,2394 +yDirectionGridLengthInMillimetres,2395 +yFirst,2396 +yLast,2397 +year,2398 +yearOfAnalysis,2399 +yearOfCentury,2400 +yearOfEndOfOverallTimeInterval,2401 +yearOfForecast,2402 +yearOfForecastUsedInLocalTime,2403 +yearOfModelVersion,2404 +yearOfReference,2405 +zero,2406 +zeros,2407 From c9ec3eb6ed1489712278efd3ed5a61a8e40ae025 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 24 Mar 2021 13:01:07 +0000 Subject: [PATCH 439/683] Comments cleanup --- src/eccodes.h | 20 ++++++++++---------- src/grib_api.h | 28 ++++++++++++++-------------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/src/eccodes.h b/src/eccodes.h index 41d32cbd4..f0d26bf87 100644 --- a/src/eccodes.h +++ b/src/eccodes.h @@ -133,7 +133,7 @@ typedef struct grib_key_value_list codes_key_value_list; */ typedef struct grib_handle codes_handle; -/*! GRIB multi field handle, structure used to build multi fields messages. +/*! GRIB multi-field handle, structure used to build multi-field messages. \ingroup codes_handle \struct codes_multi_handle */ @@ -312,7 +312,7 @@ int codes_index_select_long(codes_index* index, const char* key, long value); int codes_index_select_double(codes_index* index, const char* key, double value); /** - * Select the message subset with key==value. The value is a string. The key must have been created with string type or have string as native type if the type was not explicitly defined in the index creation. + * Select the message subset with key==value. The value is a string. The key must have been created with string type or have string as native type if the type was not explicitly defined in the index creation. * * @param index : an index created from a file. * The index must have been created with the key in argument. @@ -323,13 +323,13 @@ int codes_index_select_double(codes_index* index, const char* key, double value) int codes_index_select_string(codes_index* index, const char* key, const char* value); /** - * Create a new handle from an index after having selected the key values. - * All the keys belonging to the index must be selected before calling this function. Successive calls to this function will return all the handles compatible with the constraints defined selecting the values of the index keys. + * Create a new handle from an index after having selected the key values. + * All the keys belonging to the index must be selected before calling this function. Successive calls to this function will return all the handles compatible with the constraints defined selecting the values of the index keys. * When no more handles are available from the index a NULL pointer is returned and the err variable is set to CODES_END_OF_INDEX. * * @param index : an index created from a file. - * @param err : 0 if OK, integer value on error. CODES_END_OF_INDEX when no more handles are contained in the index. - * @return grib handle. + * @param err : 0 if OK, integer value on error. CODES_END_OF_INDEX when no more handles are contained in the index. + * @return GRIB handle. */ codes_handle* codes_handle_new_from_index(codes_index* index, int* err); @@ -435,7 +435,7 @@ codes_handle* codes_handle_new_from_message(codes_context* c, const void* data, /** * Create a handle from a user message in memory. The message will not be freed at the end. * The message will be copied as soon as a modification is needed. -* This function works also with multi field messages. +* This function works also with multi-field messages. * * @param c : the context from which the handle will be created (NULL for default context) * @param data : the actual message @@ -685,7 +685,7 @@ int codes_grib_nearest_delete(codes_nearest* nearest); * Find the nearest point of a set of points whose latitudes and longitudes * are given in the inlats, inlons arrays respectively. * If the flag is_lsm is 1 the nearest land point is returned and the -* grib passed as handle (h) is considered a land sea mask. +* GRIB passed as handle (h) is considered a land sea mask. * The land nearest point is the nearest point with land sea mask value>=0.5. * If no nearest land points are found the nearest value is returned. * If the flag is_lsm is 0 the nearest point is returned. @@ -1067,14 +1067,14 @@ void codes_context_set_definitions_path(codes_context* c, const char* path); void codes_context_set_samples_path(codes_context* c, const char* path); /** -* Turn on support for multiple fields in single GRIB messages +* Turn on support for multi-fields in single GRIB messages * * @param c : the context to be modified */ void codes_grib_multi_support_on(codes_context* c); /** -* Turn off support for multiple fields in single GRIB messages +* Turn off support for multi-fields in single GRIB messages * * @param c : the context to be modified */ diff --git a/src/grib_api.h b/src/grib_api.h index 7be7faaad..1b7719453 100644 --- a/src/grib_api.h +++ b/src/grib_api.h @@ -187,7 +187,7 @@ struct grib_values */ typedef struct grib_handle grib_handle; -/*! Grib multi field handle, structure used to build multi field GRIB messages. +/*! Grib multi field handle, structure used to build multi-field GRIB messages. \ingroup grib_handle */ typedef struct grib_multi_handle grib_multi_handle; @@ -387,7 +387,7 @@ int grib_index_select_string(grib_index* index, const char* key, const char* val * * @param index : an index created from a file. * @param err : 0 if OK, integer value on error. GRIB_END_OF_INDEX when no more handles are contained in the index. - * @return grib handle. + * @return GRIB handle. */ grib_handle* grib_handle_new_from_index(grib_index* index, int* err); @@ -474,7 +474,7 @@ grib_handle* grib_handle_new_from_message(grib_context* c, const void* data, siz /** * Create a handle from a user message in memory. The message will not be freed at the end. * The message will be copied as soon as a modification is needed. -* This function works also with multi field messages. +* This function works also with multi-field messages. * Note: The data pointer argument may be modified * * @param c : the context from which the handle will be created (NULL for default context) @@ -526,7 +526,7 @@ grib_handle* grib_handle_clone(const grib_handle* h); int grib_handle_delete(grib_handle* h); /** - * Create an empty multi field handle. + * Create an empty multi-field handle. * Remember always to delete the multi handle when it is not needed anymore to avoid * memory leaks. * @@ -536,7 +536,7 @@ grib_multi_handle* grib_multi_handle_new(grib_context* c); /** * Append the sections starting with start_section of the message pointed by h at - * the end of the multi field handle mh. + * the end of the multi-field handle mh. * Remember always to delete the multi handle when it is not needed anymore to avoid * memory leaks. * @@ -548,20 +548,20 @@ grib_multi_handle* grib_multi_handle_new(grib_context* c); int grib_multi_handle_append(grib_handle* h, int start_section, grib_multi_handle* mh); /** - * Delete multi field handle. + * Delete multi-field handle. * - * @param mh : The multi field handle to be deleted. + * @param mh : The multi-field handle to be deleted. * @return 0 if OK, integer value on error */ int grib_multi_handle_delete(grib_multi_handle* mh); /** - * Write a multi field handle in a file. - * Remember always to delete the multi handle when it is not needed anymore to avoid + * Write a multi-field handle in a file. + * Remember to delete the multi handle when it is not needed anymore to avoid * memory leaks. * - * @param mh : The multi field handle to be written. - * @param f : File on which the file handle is written. + * @param mh : The multi field handle to be written. + * @param f : File on which the file handle is written. * @return 0 if OK, integer value on error */ int grib_multi_handle_write(grib_multi_handle* mh, FILE* f); @@ -1221,21 +1221,21 @@ void grib_context_set_print_proc(grib_context* c, grib_print_proc printp); void grib_context_set_logging_proc(grib_context* c, grib_log_proc logp); /** -* Turn on support for multiple fields in single grib messages +* Turn on support for multi-fields in single GRIB messages * * @param c : the context to be modified */ void grib_multi_support_on(grib_context* c); /** -* Turn off support for multiple fields in single GRIB messages +* Turn off support for multi-fields in single GRIB messages * * @param c : the context to be modified */ void grib_multi_support_off(grib_context* c); /** -* Reset file handle in multiple field support mode +* Reset file handle in multi-field support mode * * @param c : the context to be modified * @param f : the file pointer From ea48cf4456051c8b0bb32c0576d1b97450990312 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 24 Mar 2021 13:01:57 +0000 Subject: [PATCH 440/683] Indexing: Move static variables close together --- src/grib_index.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/grib_index.c b/src/grib_index.c index fbb597d2e..67e3555d1 100644 --- a/src/grib_index.c +++ b/src/grib_index.c @@ -8,15 +8,9 @@ * virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. */ -/* - * - * Description: grib index - * - */ - #include "grib_api_internal.h" -#define UNDEF_LONG -99999 +#define UNDEF_LONG -99999 #define UNDEF_DOUBLE -99999 #define NULL_MARKER 0 @@ -66,6 +60,7 @@ static const char* mars_keys = /* See GRIB-32: start off ID with -1 as it is incremented before being used */ static int grib_filesid = -1; static int index_count; +static long values_count = 0; static char* get_key(char** keys, int* type) { @@ -599,7 +594,6 @@ static void grib_index_key_delete(grib_context* c, grib_index_key* keys) grib_context_free(c, keys); } -static long values_count = 0; static grib_string_list* grib_read_key_values(grib_context* c, FILE* fh, int* err) { grib_string_list* values; From 52b8379f6294f6118af7e1c5f21178ebb6813c1d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 24 Mar 2021 16:47:45 +0000 Subject: [PATCH 441/683] ECC-1225: GRIB1: Fix units reported in grib_dump (for local parameters) --- definitions/grib1/2.98.128.table | 252 ++++++++--------- definitions/grib1/2.98.129.table | 472 +++++++++++++++---------------- definitions/grib1/2.98.130.table | 52 ++-- definitions/grib1/2.98.131.table | 152 +++++----- definitions/grib1/2.98.132.table | 24 +- definitions/grib1/2.98.133.table | 184 ++++++------ definitions/grib1/2.98.140.table | 174 ++++++------ definitions/grib1/2.98.150.table | 60 ++-- definitions/grib1/2.98.151.table | 158 +++++------ definitions/grib1/2.98.160.table | 216 +++++++------- definitions/grib1/2.98.162.table | 226 +++++++-------- definitions/grib1/2.98.170.table | 70 ++--- definitions/grib1/2.98.171.table | 372 ++++++++++++------------ definitions/grib1/2.98.172.table | 76 ++--- definitions/grib1/2.98.173.table | 76 ++--- definitions/grib1/2.98.174.table | 109 ++++--- definitions/grib1/2.98.175.table | 60 ++-- definitions/grib1/2.98.180.table | 64 ++--- definitions/grib1/2.98.190.table | 72 ++--- definitions/grib1/2.98.200.table | 470 +++++++++++++++--------------- definitions/grib1/2.98.201.table | 154 +++++----- definitions/grib1/2.98.210.table | 452 ++++++++++++++--------------- definitions/grib1/2.98.211.table | 342 +++++++++++----------- definitions/grib1/2.98.213.table | 110 +++---- definitions/grib1/2.98.215.table | 422 +++++++++++++-------------- definitions/grib1/2.98.220.table | 2 +- definitions/grib1/2.98.228.table | 214 +++++++------- definitions/grib1/2.98.230.table | 100 +++---- definitions/grib1/2.98.235.table | 96 +++---- 29 files changed, 2615 insertions(+), 2616 deletions(-) diff --git a/definitions/grib1/2.98.128.table b/definitions/grib1/2.98.128.table index a226d0d12..6d4f221b9 100644 --- a/definitions/grib1/2.98.128.table +++ b/definitions/grib1/2.98.128.table @@ -17,119 +17,119 @@ 16 aluvd UV visible albedo for diffuse radiation ((0 - 1)) 17 alnip Near IR albedo for direct radiation ((0 - 1)) 18 alnid Near IR albedo for diffuse radiation ((0 - 1)) -19 uvcs Clear sky surface UV (W m**-2 s) -20 parcs Clear sky surface photosynthetically active radiation (W m**-2 s) +19 uvcs Clear sky surface UV (J m**-2) +20 parcs Clear sky surface photosynthetically active radiation (J m**-2) 21 uctp Unbalanced component of temperature (K) -22 ucln Unbalanced component of logarithm of surface pressure () +22 ucln Unbalanced component of logarithm of surface pressure (~) 23 ucdv Unbalanced component of divergence (s**-1) -24 - Reserved for future unbalanced components () -25 - Reserved for future unbalanced components () +24 ~ Reserved for future unbalanced components (~) +25 ~ Reserved for future unbalanced components (~) 26 cl Lake cover ((0 - 1)) 27 cvl Low vegetation cover ((0 - 1)) 28 cvh High vegetation cover ((0 - 1)) -29 tvl Type of low vegetation () -30 tvh Type of high vegetation () -31 ci Sea-ice cover ((0 - 1)) +29 tvl Type of low vegetation (~) +30 tvh Type of high vegetation (~) +31 ci Sea ice area fraction ((0 - 1)) 32 asn Snow albedo ((0 - 1)) 33 rsn Snow density (kg m**-3) 34 sst Sea surface temperature (K) -35 istl1 Ice surface temperature layer 1 (K) -36 istl2 Ice surface temperature layer 2 (K) -37 istl3 Ice surface temperature layer 3 (K) -38 istl4 Ice surface temperature layer 4 (K) +35 istl1 Ice temperature layer 1 (K) +36 istl2 Ice temperature layer 2 (K) +37 istl3 Ice temperature layer 3 (K) +38 istl4 Ice temperature layer 4 (K) 39 swvl1 Volumetric soil water layer 1 (m**3 m**-3) 40 swvl2 Volumetric soil water layer 2 (m**3 m**-3) 41 swvl3 Volumetric soil water layer 3 (m**3 m**-3) 42 swvl4 Volumetric soil water layer 4 (m**3 m**-3) -43 slt Soil type () -44 es Snow evaporation (m of water) -45 smlt Snowmelt (m of water) +43 slt Soil type (~) +44 es Snow evaporation (m of water equivalent) +45 smlt Snowmelt (m of water equivalent) 46 sdur Solar duration (s) -47 dsrp Direct solar radiation (w m**-2) -48 magss Magnitude of surface stress (N m**-2 s) -49 10fg 10 metre wind gust (m s**-1) +47 dsrp Direct solar radiation (J m**-2) +48 magss Magnitude of turbulent surface stress (N m**-2 s) +49 10fg 10 metre wind gust since previous post-processing (m s**-1) 50 lspf Large-scale precipitation fraction (s) -51 mx2t24 Maximum temperature at 2 metres since last 24 hours (K) -52 mn2t24 Minimum temperature at 2 metres since last 24 hours (K) +51 mx2t24 Maximum temperature at 2 metres in the last 24 hours (K) +52 mn2t24 Minimum temperature at 2 metres in the last 24 hours (K) 53 mont Montgomery potential (m**2 s**-2) 54 pres Pressure (Pa) -55 mean2t24 Mean temperature at 2 metres since last 24 hours (K) -56 mn2d24 Mean 2 metre dewpoint temperature in past 24 hours (K) -57 uvb Downward UV radiation at the surface (w m**-2 s) -58 par Photosynthetically active radiation at the surface (w m**-2 s) +55 mean2t24 Mean temperature at 2 metres in the last 24 hours (K) +56 mn2d24 Mean 2 metre dewpoint temperature in the last 24 hours (K) +57 uvb Downward UV radiation at the surface (J m**-2) +58 par Photosynthetically active radiation at the surface (J m**-2) 59 cape Convective available potential energy (J kg**-1) 60 pv Potential vorticity (K m**2 kg**-1 s**-1) -62 obct Observation count () +62 obct Observation count (~) 63 stsktd Start time for skin temperature difference (s) 64 ftsktd Finish time for skin temperature difference (s) 65 sktd Skin temperature difference (K) -66 lai_lv Leaf area index, low vegetation (m**2 / m**2) -67 lai_hv Leaf area index, high vegetation (m**2 / m**2) +66 lai_lv Leaf area index, low vegetation (m**2 m**-2) +67 lai_hv Leaf area index, high vegetation (m**2 m**-2) 68 msr_lv Minimum stomatal resistance, low vegetation (s m**-1) 69 msr_hv Minimum stomatal resistance, high vegetation (s m**-1) 70 bc_lv Biome cover, low vegetation ((0 - 1)) 71 bc_hv Biome cover, high vegetation ((0 - 1)) -72 issrd Instantaneous surface solar radiation downwards (w m**-2) -73 istrd Instantaneous surface thermal radiation downwards (w m**-2) +72 issrd Instantaneous surface solar radiation downwards (W m**-2) +73 istrd Instantaneous surface thermal radiation downwards (W m**-2) 74 sdfor Standard deviation of filtered subgrid orography (m) -75 crwc Cloud rain water content (kg kg**-1) -76 cswc Cloud snow water content (kg kg**-1) +75 crwc Specific rain water content (kg kg**-1) +76 cswc Specific snow water content (kg kg**-1) 77 etadot Eta-coordinate vertical velocity (s**-1) -78 tclw Total column liquid water (kg m**-2) -79 tciw Total column ice water (kg m**-2) -80 - Experimental product () -81 - Experimental product () -82 - Experimental product () -83 - Experimental product () -84 - Experimental product () -85 - Experimental product () -86 - Experimental product () -87 - Experimental product () -88 - Experimental product () -89 - Experimental product () -90 - Experimental product () -91 - Experimental product () -92 - Experimental product () -93 - Experimental product () -94 - Experimental product () -95 - Experimental product () -96 - Experimental product () -97 - Experimental product () -98 - Experimental product () -99 - Experimental product () -100 - Experimental product () -101 - Experimental product () -102 - Experimental product () -103 - Experimental product () -104 - Experimental product () -105 - Experimental product () -106 - Experimental product () -107 - Experimental product () -108 - Experimental product () -109 - Experimental product () -110 - Experimental product () -111 - Experimental product () -112 - Experimental product () -113 - Experimental product () -114 - Experimental product () -115 - Experimental product () -116 - Experimental product () -117 - Experimental product () -118 - Experimental product () -119 - Experimental product () -120 - Experimental product () -121 mx2t6 Maximum temperature at 2 metres since last 6 hours (K) -122 mn2t6 Minimum temperature at 2 metres since last 6 hours (K) -123 10fg6 10 metre wind gust in the past 6 hours (m s**-1) +78 tclw Total column cloud liquid water (kg m**-2) +79 tciw Total column cloud ice water (kg m**-2) +80 ~ Experimental product (~) +81 ~ Experimental product (~) +82 ~ Experimental product (~) +83 ~ Experimental product (~) +84 ~ Experimental product (~) +85 ~ Experimental product (~) +86 ~ Experimental product (~) +87 ~ Experimental product (~) +88 ~ Experimental product (~) +89 ~ Experimental product (~) +90 ~ Experimental product (~) +91 ~ Experimental product (~) +92 ~ Experimental product (~) +93 ~ Experimental product (~) +94 ~ Experimental product (~) +95 ~ Experimental product (~) +96 ~ Experimental product (~) +97 ~ Experimental product (~) +98 ~ Experimental product (~) +99 ~ Experimental product (~) +100 ~ Experimental product (~) +101 ~ Experimental product (~) +102 ~ Experimental product (~) +103 ~ Experimental product (~) +104 ~ Experimental product (~) +105 ~ Experimental product (~) +106 ~ Experimental product (~) +107 ~ Experimental product (~) +108 ~ Experimental product (~) +109 ~ Experimental product (~) +110 ~ Experimental product (~) +111 ~ Experimental product (~) +112 ~ Experimental product (~) +113 ~ Experimental product (~) +114 ~ Experimental product (~) +115 ~ Experimental product (~) +116 ~ Experimental product (~) +117 ~ Experimental product (~) +118 ~ Experimental product (~) +119 ~ Experimental product (~) +120 ~ Experimental product (~) +121 mx2t6 Maximum temperature at 2 metres in the last 6 hours (K) +122 mn2t6 Minimum temperature at 2 metres in the last 6 hours (K) +123 10fg6 10 metre wind gust in the last 6 hours (m s**-1) 124 emis Surface emissivity (dimensionless) 125 vite Vertically integrated total energy (J m**-2) -126 - Generic parameter for sensitive area prediction (Various) -127 at Atmospheric tide () -128 bv Budget values () +126 ~ Generic parameter for sensitive area prediction (Various) +127 at Atmospheric tide (~) +128 bv Budget values (~) 129 z Geopotential (m**2 s**-2) 130 t Temperature (K) -131 u U velocity (m s**-1) -132 v V velocity (m s**-1) +131 u U component of wind (m s**-1) +132 v V component of wind (m s**-1) 133 q Specific humidity (kg kg**-1) 134 sp Surface pressure (Pa) 135 w Vertical velocity (Pa s**-1) @@ -137,51 +137,51 @@ 137 tcwv Total column water vapour (kg m**-2) 138 vo Vorticity (relative) (s**-1) 139 stl1 Soil temperature level 1 (K) -140 swl1 Soil wetness level 1 (m of water) +140 swl1 Soil wetness level 1 (m of water equivalent) 141 sd Snow depth (m of water equivalent) -142 lsp Stratiform precipitation (Large-scale precipitation) (m) +142 lsp Large-scale precipitation (m) 143 cp Convective precipitation (m) 144 sf Snowfall (m of water equivalent) -145 bld Boundary layer dissipation (W m**-2 s) -146 sshf Surface sensible heat flux (W m**-2 s) -147 slhf Surface latent heat flux (W m**-2 s) -148 chnk Charnock () -149 snr Surface net radiation (W m**-2 s) -150 tnr Top net radiation () +145 bld Boundary layer dissipation (J m**-2) +146 sshf Surface sensible heat flux (J m**-2) +147 slhf Surface latent heat flux (J m**-2) +148 chnk Charnock (~) +149 snr Surface net radiation (J m**-2) +150 tnr Top net radiation (J m**-2) 151 msl Mean sea level pressure (Pa) -152 lnsp Logarithm of surface pressure () +152 lnsp Logarithm of surface pressure (~) 153 swhr Short-wave heating rate (K) 154 lwhr Long-wave heating rate (K) 155 d Divergence (s**-1) -156 gh Gepotential Height (gpm) +156 gh Geopotential Height (gpm) 157 r Relative humidity (%) 158 tsp Tendency of surface pressure (Pa s**-1) 159 blh Boundary layer height (m) -160 sdor Standard deviation of orography () -161 isor Anisotropy of sub-gridscale orography () -162 anor Angle of sub-gridscale orography (rad) -163 slor Slope of sub-gridscale orography () +160 sdor Standard deviation of orography (~) +161 isor Anisotropy of sub-gridscale orography (~) +162 anor Angle of sub-gridscale orography (radians) +163 slor Slope of sub-gridscale orography (~) 164 tcc Total cloud cover ((0 - 1)) 165 10u 10 metre U wind component (m s**-1) 166 10v 10 metre V wind component (m s**-1) 167 2t 2 metre temperature (K) 168 2d 2 metre dewpoint temperature (K) -169 ssrd Surface solar radiation downwards (W m**-2 s) +169 ssrd Surface solar radiation downwards (J m**-2) 170 stl2 Soil temperature level 2 (K) -171 swl2 Soil wetness level 2 (m of water) +171 swl2 Soil wetness level 2 (m of water equivalent) 172 lsm Land-sea mask ((0 - 1)) 173 sr Surface roughness (m) 174 al Albedo ((0 - 1)) -175 strd Surface thermal radiation downwards (W m**-2 s) -176 ssr Surface solar radiation (W m**-2 s) -177 str Surface thermal radiation (W m**-2 s) -178 tsr Top solar radiation (W m**-2 s) -179 ttr Top thermal radiation (W m**-2 s) -180 ewss East-West surface stress (N m**-2 s) -181 nsss North-South surface stress (N m**-2 s) -182 e Evaporation (m of water) +175 strd Surface thermal radiation downwards (J m**-2) +176 ssr Surface net solar radiation (J m**-2) +177 str Surface net thermal radiation (J m**-2) +178 tsr Top net solar radiation (J m**-2) +179 ttr Top net thermal radiation (J m**-2) +180 ewss Eastward turbulent surface stress (N m**-2 s) +181 nsss Northward turbulent surface stress (N m**-2 s) +182 e Evaporation (m of water equivalent) 183 stl3 Soil temperature level 3 (K) -184 swl3 Soil wetness level 3 (m of water) +184 swl3 Soil wetness level 3 (m of water equivalent) 185 ccc Convective cloud cover ((0 - 1)) 186 lcc Low cloud cover ((0 - 1)) 187 mcc Medium cloud cover ((0 - 1)) @@ -192,24 +192,24 @@ 192 nwov North-West/South-East component of sub-gridscale orographic variance (m**2) 193 neov North-East/South-West component of sub-gridscale orographic variance (m**2) 194 btmp Brightness temperature (K) -195 lgws Latitudinal component of gravity wave stress (N m**-2 s) -196 mgws Meridional component of gravity wave stress (N m**-2 s) -197 gwd Gravity wave dissipation (W m**-2 s) -198 src Skin reservoir content (m of water) +195 lgws Eastward gravity wave surface stress (N m**-2 s) +196 mgws Northward gravity wave surface stress (N m**-2 s) +197 gwd Gravity wave dissipation (J m**-2) +198 src Skin reservoir content (m of water equivalent) 199 veg Vegetation fraction ((0 - 1)) 200 vso Variance of sub-gridscale orography (m**2) 201 mx2t Maximum temperature at 2 metres since previous post-processing (K) 202 mn2t Minimum temperature at 2 metres since previous post-processing (K) 203 o3 Ozone mass mixing ratio (kg kg**-1) -204 paw Precipitation analysis weights () +204 paw Precipitation analysis weights (~) 205 ro Runoff (m) 206 tco3 Total column ozone (kg m**-2) 207 10si 10 metre wind speed (m s**-1) -208 tsrc Top net solar radiation, clear sky (W m**-2 s) -209 ttrc Top net thermal radiation, clear sky (W m**-2 s) -210 ssrc Surface net solar radiation, clear sky (W m**-2 s) -211 strc Surface net thermal radiation, clear sky (W m**-2 s) -212 tisr TOA incident solar radiation (W m**-2 s) +208 tsrc Top net solar radiation, clear sky (J m**-2) +209 ttrc Top net thermal radiation, clear sky (J m**-2) +210 ssrc Surface net solar radiation, clear sky (J m**-2) +211 strc Surface net thermal radiation, clear sky (J m**-2) +212 tisr TOA incident solar radiation (J m**-2) 213 vimd Vertically integrated moisture divergence (kg m**-2) 214 dhr Diabatic heating by radiation (K) 215 dhvd Diabatic heating by vertical diffusion (K) @@ -224,14 +224,14 @@ 224 vdh Vertical diffusion of humidity (kg kg**-1) 225 htcc Humidity tendency by cumulus convection (kg kg**-1) 226 htlc Humidity tendency by large-scale condensation (kg kg**-1) -227 crnh Change from removal of negative humidity (kg kg**-1) +227 crnh Tendency due to removal of negative humidity (kg kg**-1) 228 tp Total precipitation (m) -229 iews Instantaneous X surface stress (N m**-2) -230 inss Instantaneous Y surface stress (N m**-2) -231 ishf Instantaneous surface heat flux (W m**-2) +229 iews Instantaneous eastward turbulent surface stress (N m**-2) +230 inss Instantaneous northward turbulent surface stress (N m**-2) +231 ishf Instantaneous surface sensible heat flux (W m**-2) 232 ie Instantaneous moisture flux (kg m**-2 s**-1) 233 asq Apparent surface humidity (kg kg**-1) -234 lsrh Logarithm of surface roughness length for heat () +234 lsrh Logarithm of surface roughness length for heat (~) 235 skt Skin temperature (K) 236 stl4 Soil temperature level 4 (K) 237 swl4 Soil wetness level 4 (m) @@ -242,9 +242,9 @@ 242 alw Accumulated liquid water tendency ((-1 to 1)) 243 fal Forecast albedo ((0 - 1)) 244 fsr Forecast surface roughness (m) -245 flsr Forecast logarithm of surface roughness for heat () -246 clwc Cloud liquid water content (kg kg**-1) -247 ciwc Cloud ice water content (kg kg**-1) +245 flsr Forecast logarithm of surface roughness for heat (~) +246 clwc Specific cloud liquid water content (kg kg**-1) +247 ciwc Specific cloud ice water content (kg kg**-1) 248 cc Fraction of cloud cover ((0 - 1)) 249 aiw Accumulated ice water tendency ((-1 to 1)) 250 ice Ice age ((0 - 1)) @@ -252,4 +252,4 @@ 252 athe Adiabatic tendency of humidity (kg kg**-1) 253 atze Adiabatic tendency of zonal wind (m s**-1) 254 atmw Adiabatic tendency of meridional wind (m s**-1) -255 - Indicates a missing value () +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.129.table b/definitions/grib1/2.98.129.table index e74bcd290..4d30c5e18 100644 --- a/definitions/grib1/2.98.129.table +++ b/definitions/grib1/2.98.129.table @@ -1,237 +1,237 @@ # This file was automatically generated by ./param.pl -1 strfgrd STRF Stream function gradient (m**2 s**-1) -2 vpotgrd VPOT Velocity potential gradient (m**2 s**-1) -3 ptgrd PT Potential temperature gradient (K) -4 eqptgrd EQPT Equivalent potential temperature gradient (K) -5 septgrd SEPT Saturated equivalent potential temperature gradient (K) -11 udvwgrd UDVW U component of divergent wind gradient (m s**-1) -12 vdvwgrd VDVW V component of divergent wind gradient (m s**-1) -13 urtwgrd URTW U component of rotational wind gradient (m s**-1) -14 vrtwgrd VRTW V component of rotational wind gradient (m s**-1) -21 uctpgrd UCTP Unbalanced component of temperature gradient (K) -22 uclngrd UCLN Unbalanced component of logarithm of surface pressure gradient -23 ucdvgrd UCDV Unbalanced component of divergence gradient (s**-1) -24 24 - Reserved for future unbalanced components -25 25 - Reserved for future unbalanced components -26 clgrd CL Lake cover gradient (0 - 1) -27 cvlgrd CVL Low vegetation cover gradient (0 - 1) -28 cvhgrd CVH High vegetation cover gradient (0 - 1) -29 tvlgrd TVL Type of low vegetation gradient -30 tvhgrd TVH Type of high vegetation gradient -31 sicgrd CI Sea-ice cover gradient (0 - 1) -32 asngrd ASN Snow albedo gradient (0 - 1) -33 rsngrd RSN Snow density gradient (kg m**-3) -34 sstkgrd SSTK Sea surface temperature gradient K -35 istl1grd ISTL1 Ice surface temperature layer 1 gradient K -36 istl2grd ISTL2 Ice surface temperature layer 2 gradient K -37 istl3grd ISTL3 Ice surface temperature layer 3 gradient K -38 istl4grd ISTL4 Ice surface temperature layer 4 gradient K -39 swvl1grd SWVL1 Volumetric soil water layer 1 gradient (m**3 m**-3) -40 swvl2grd SWVL2 Volumetric soil water layer 2 gradient (m**3 m**-3) -41 swvl3grd SWVL3 Volumetric soil water layer 3 gradient (m**3 m**-3) -42 swvl4grd SWVL4 Volumetric soil water layer 4 gradient (m**3 m**-3) -43 sltgrd SLT Soil type gradient -44 esgrd ES Snow evaporation gradient (kg m**-2) -45 smltgrd SMLT Snowmelt gradient (kg m**-2) -46 sdurgrd SDUR Solar duration gradient s -47 dsrpgrd DSRP Direct solar radiation gradient (J m**-2) -48 magssgrd MAGSS Magnitude of surface stress gradient (N m**-2 s) -49 10fggrd 10FG 10 metre wind gust gradient (m s**-1) -50 lspfgrd LSPF Large-scale precipitation fraction gradient (s) -51 mx2t24grd MX2T24 Maximum 2 metre temperature gradient (K) -52 mn2t24grd MN2T24 Minimum 2 metre temperature gradient (K) -53 montgrd MONT Montgomery potential gradient (m**2 s**-2) -54 presgrd PRES Pressure gradient (Pa) -55 mean2t24grd MEAN2T24 Mean 2 metre temperature in the last 24 hours gradient (K) -56 mn2d24grd MN2D24 Mean 2 metre dewpoint temperature in the last 24 hours gradient K -57 uvbgrd UVB Downward UV radiation at the surface gradient (J m**-2) -58 pargrd PAR Photosynthetically active radiation at the surface gradient (J m**-2) -59 capegrd CAPE Convective available potential energy gradient (J kg**-1) -60 pvgrd PV Potential vorticity gradient (K m**2 kg**-1 s**-1) -61 tpogrd TPO Total precipitation from observations gradient Millimetres*100 + number of stations -62 obctgrd OBCT Observation count gradient -63 63 - Start time for skin temperature difference (s) -64 64 - Finish time for skin temperature difference (s) -65 65 - Skin temperature difference (K) -66 66 - Leaf area index, low vegetation (m**2 / m**2) -67 67 - Leaf area index, high vegetation (m**2 / m**2) -68 68 - Minimum stomatal resistance, low vegetation (s m**-1) -69 69 - Minimum stomatal resistance, high vegetation (s m**-1) -70 70 - Biome cover, low vegetation (0 - 1) -71 71 - Biome cover, high vegetation (0 - 1) -78 78 - Total column liquid water (kg m**-2) -79 79 - Total column ice water (kg m**-2) -80 80 - Experimental product -81 81 - Experimental product -82 82 - Experimental product -83 83 - Experimental product -84 84 - Experimental product -85 85 - Experimental product -86 86 - Experimental product -87 87 - Experimental product -88 88 - Experimental product -89 89 - Experimental product -90 90 - Experimental product -91 91 - Experimental product -92 92 - Experimental product -93 93 - Experimental product -94 94 - Experimental product -95 95 - Experimental product -96 96 - Experimental product -97 97 - Experimental product -98 98 - Experimental product -99 99 - Experimental product -100 100 - Experimental product -101 101 - Experimental product -102 102 - Experimental product -103 103 - Experimental product -104 104 - Experimental product -105 105 - Experimental product -106 106 - Experimental product -107 107 - Experimental product -108 108 - Experimental product -109 109 - Experimental product -110 110 - Experimental product -111 111 - Experimental product -112 112 - Experimental product -113 113 - Experimental product -114 114 - Experimental product -115 115 - Experimental product -116 116 - Experimental product -117 117 - Experimental product -118 118 - Experimental product -119 119 - Experimental product -120 120 - Experimental product -121 mx2t6grd MX2T6 Maximum temperature at 2 metres gradient (K) -122 mn2t6grd MN2T6 Minimum temperature at 2 metres gradient (K) -123 10fg6grd 10FG6 10 metre wind gust in the last 6 hours gradient (m s**-1) -125 125 - Vertically integrated total energy (J m**-2) -126 126 - Generic parameter for sensitive area prediction Various -127 atgrd AT Atmospheric tide gradient -128 bvgrd BV Budget values gradient -129 zgrd Z Geopotential gradient (m**2 s**-2) -130 tgrd T Temperature gradient (K) -131 ugrd U U component of wind gradient (m s**-1) -132 vgrd V V component of wind gradient (m s**-1) -133 qgrd Q Specific humidity gradient (kg kg**-1) -134 spgrd SP Surface pressure gradient (Pa) -135 wgrd W vertical velocity (pressure) gradient (Pa s**-1) -136 tcwgrd TCW Total column water gradient (kg m**-2) -137 tcwvgrd TCWV Total column water vapour gradient (kg m**-2) -138 vogrd VO Vorticity (relative) gradient (s**-1) -139 stl1grd STL1 Soil temperature level 1 gradient (K) -140 swl1grd SWL1 Soil wetness level 1 gradient (kg m**-2) -141 sdgrd SD Snow depth gradient (m of water equivalent) -142 lspgrd LSP Stratiform precipitation (Large-scale precipitation) gradient (m) -143 cpgrd CP Convective precipitation gradient (m) -144 sfgrd SF Snowfall (convective + stratiform) gradient m of water equivalent -145 bldgrd BLD Boundary layer dissipation gradient (J m**-2) -146 sshfgrd SSHF Surface sensible heat flux gradient (J m**-2) -147 slhfgrd SLHF Surface latent heat flux gradient (J m**-2) -148 chnkgrd CHNK Charnock gradient -149 snrgrd SNR Surface net radiation gradient (J m**-2) -150 tnrgrd TNR Top net radiation gradient -151 mslgrd MSL Mean sea level pressure gradient (Pa) -152 lnspgrd LNSP Logarithm of surface pressure gradient -153 swhrgrd SWHR Short-wave heating rate gradient (K) -154 lwhrgrd LWHR Long-wave heating rate gradient (K) -155 dgrd D Divergence gradient (s**-1) -156 ghgrd GH Height gradient (m) -157 rgrd R Relative humidity gradient (%) -158 tspgrd TSP Tendency of surface pressure gradient (Pa s**-1) -159 blhgrd BLH Boundary layer height gradient (m) -160 sdorgrd SDOR Standard deviation of orography gradient -161 isorgrd ISOR Anisotropy of sub-gridscale orography gradient -162 anorgrd ANOR Angle of sub-gridscale orography gradient -163 slorgrd SLOR Slope of sub-gridscale orography gradient -164 tccgrd TCC Total cloud cover gradient (0 - 1) -165 10ugrd 10U 10 metre U wind component gradient (m s**-1) -166 10vgrd 10V 10 metre V wind component gradient (m s**-1) -167 2tgrd 2T 2 metre temperature gradient (K) -168 2dgrd 2D 2 metre dewpoint temperature gradient (K) -169 ssrdgrd SSRD Surface solar radiation downwards gradient (J m**-2) -170 stl2grd STL2 Soil temperature level 2 gradient (K) -171 swl2grd SWL2 Soil wetness level 2 gradient (kg m**-2) -172 lsmgrd LSM Land-sea mask gradient (0 - 1) -173 srgrd SR Surface roughness gradient (m) -174 algrd AL Albedo gradient (0 - 1) -175 strdgrd STRD Surface thermal radiation downwards gradient (J m**-2) -176 ssrgrd SSR Surface solar radiation gradient (J m**-2) -177 strgrd STR Surface thermal radiation gradient (J m**-2) -178 tsrgrd TSR Top solar radiation gradient (J m**-2) -179 ttrgrd TTR Top thermal radiation gradient (J m**-2) -180 ewssgrd EWSS East-West surface stress gradient (N m**-2 s) -181 nsssgrd NSSS North-South surface stress gradient (N m**-2 s) -182 egrd E Evaporation gradient (kg m**-2) -183 stl3grd STL3 Soil temperature level 3 gradient (K) -184 swl3grd SWL3 Soil wetness level 3 gradient (kg m**-2) -185 cccgrd CCC Convective cloud cover gradient (0 - 1) -186 lccgrd LCC Low cloud cover gradient (0 - 1) -187 mccgrd MCC Medium cloud cover gradient (0 - 1) -188 hccgrd HCC High cloud cover gradient (0 - 1) -189 sundgrd SUND Sunshine duration gradient (s) -190 ewovgrd EWOV East-West component of sub-gridscale orographic variance gradient (m**2) -191 nsovgrd NSOV North-South component of sub-gridscale orographic variance gradient (m**2) -192 nwovgrd NWOV North-West/South-East component of sub-gridscale orographic variance gradient (m**2) -193 neovgrd NEOV North-East/South-West component of sub-gridscale orographic variance gradient (m**2) -194 btmpgrd BTMP Brightness temperature gradient (K) -195 lgwsgrd LGWS Longitudinal component of gravity wave stress gradient (N m**-2 s) -196 mgwsgrd MGWS Meridional component of gravity wave stress gradient (N m**-2 s) -197 gwdgrd GWD Gravity wave dissipation gradient (J m**-2) -198 srcgrd SRC Skin reservoir content gradient (kg m**-2) -199 veggrd VEG Vegetation fraction gradient (0 - 1) -200 vsogrd VSO Variance of sub-gridscale orography gradient (m**2) -201 mx2tgrd MX2T Maximum temperature at 2 metres since previous post-processing gradient (K) -202 mn2tgrd MN2T Minimum temperature at 2 metres since previous post-processing gradient (K) -203 o3grd O3 Ozone mass mixing ratio gradient (kg kg**-1) -204 pawgrd PAW Precipitation analysis weights gradient -205 rogrd RO Runoff gradient (m) -206 tco3grd TCO3 Total column ozone gradient (kg m**-2) -207 10sigrd 10SI 10 metre wind speed gradient (m s**-1) -208 tsrcgrd TSRC Top net solar radiation, clear sky gradient (J m**-2) -209 ttrcgrd TTRC Top net thermal radiation, clear sky gradient (J m**-2) -210 ssrcgrd SSRC Surface net solar radiation, clear sky gradient (J m**-2) -211 strcgrd STRC Surface net thermal radiation, clear sky gradient (J m**-2) -212 tisrgrd TISR TOA incident solar radiation gradient (J m**-2) -214 dhrgrd DHR Diabatic heating by radiation gradient (K) -215 dhvdgrd DHVD Diabatic heating by vertical diffusion gradient (K) -216 dhccgrd DHCC Diabatic heating by cumulus convection gradient (K) -217 dhlcgrd DHLC Diabatic heating large-scale condensation gradient (K) -218 vdzwgrd VDZW Vertical diffusion of zonal wind gradient (m s**-1) -219 vdmwgrd VDMW Vertical diffusion of meridional wind gradient (m s**-1) -220 ewgdgrd EWGD East-West gravity wave drag tendency gradient (m s**-1) -221 nsgdgrd NSGD North-South gravity wave drag tendency gradient (m s**-1) -222 ctzwgrd CTZW Convective tendency of zonal wind gradient (m s**-1) -223 ctmwgrd CTMW Convective tendency of meridional wind gradient (m s**-1) -224 vdhgrd VDH Vertical diffusion of humidity gradient (kg kg**-1) -225 htccgrd HTCC Humidity tendency by cumulus convection gradient (kg kg**-1) -226 htlcgrd HTLC Humidity tendency by large-scale condensation gradient (kg kg**-1) -227 crnhgrd CRNH Change from removal of negative humidity gradient (kg kg**-1) -228 tpgrd TP Total precipitation gradient (m) -229 iewsgrd IEWS Instantaneous X surface stress gradient (N m**-2) -230 inssgrd INSS Instantaneous Y surface stress gradient (N m**-2) -231 ishfgrd ISHF Instantaneous surface heat flux gradient (W m**-2) -232 iegrd IE Instantaneous moisture flux gradient (kg m**-2 s) -233 asqgrd ASQ Apparent surface humidity gradient (kg kg**-1) -234 lsrhgrd LSRH Logarithm of surface roughness length for heat gradient -235 sktgrd SKT Skin temperature gradient (K) -236 stl4grd STL4 Soil temperature level 4 gradient (K) -237 swl4grd SWL4 Soil wetness level 4 gradient (m) -238 tsngrd TSN Temperature of snow layer gradient (K) -239 csfgrd CSF Convective snowfall gradient (m of water equivalent) -240 lsfgrd LSF Large scale snowfall gradient (m of water equivalent) -241 acfgrd ACF Accumulated cloud fraction tendency gradient (-1 to 1) -242 alwgrd ALW Accumulated liquid water tendency gradient gradient (-1 to 1) -243 falgrd FAL Forecast albedo gradient (0 - 1) -244 fsrgrd FSR Forecast surface roughness gradient (m) -245 flsrgrd FLSR Forecast logarithm of surface roughness for heat gradient -246 clwcgrd CLWC Specific cloud liquid water content gradient (kg kg**-1) -247 ciwcgrd CIWC Specific cloud ice water content gradient (kg kg**-1) -248 ccgrd CC Cloud cover gradient (0 - 1) -249 aiwgrd AIW Accumulated ice water tendency gradient (-1 to 1) -250 icegrd ICE Ice age gradient (0 - 1) -251 attegrd ATTE Adiabatic tendency of temperature gradient (K) -252 athegrd ATHE Adiabatic tendency of humidity gradient (kg kg**-1) -253 atzegrd ATZE Adiabatic tendency of zonal wind gradient (m s**-1) -254 atmwgrd ATMW Adiabatic tendency of meridional wind gradient (m s**-1) -255 255 - Indicates a missing value +1 strfgrd Stream function gradient (m**2 s**-1) +2 vpotgrd Velocity potential gradient (m**2 s**-1) +3 ptgrd Potential temperature gradient (K) +4 eqptgrd Equivalent potential temperature gradient (K) +5 septgrd Saturated equivalent potential temperature gradient (K) +11 udvwgrd U component of divergent wind gradient (m s**-1) +12 vdvwgrd V component of divergent wind gradient (m s**-1) +13 urtwgrd U component of rotational wind gradient (m s**-1) +14 vrtwgrd V component of rotational wind gradient (m s**-1) +21 uctpgrd Unbalanced component of temperature gradient (K) +22 uclngrd Unbalanced component of logarithm of surface pressure gradient (~) +23 ucdvgrd Unbalanced component of divergence gradient (s**-1) +24 ~ Reserved for future unbalanced components (~) +25 ~ Reserved for future unbalanced components (~) +26 clgrd Lake cover gradient ((0 - 1)) +27 cvlgrd Low vegetation cover gradient ((0 - 1)) +28 cvhgrd High vegetation cover gradient ((0 - 1)) +29 tvlgrd Type of low vegetation gradient (~) +30 tvhgrd Type of high vegetation gradient (~) +31 sicgrd Sea-ice cover gradient ((0 - 1)) +32 asngrd Snow albedo gradient ((0 - 1)) +33 rsngrd Snow density gradient (kg m**-3) +34 sstkgrd Sea surface temperature gradient (K) +35 istl1grd Ice surface temperature layer 1 gradient (K) +36 istl2grd Ice surface temperature layer 2 gradient (K) +37 istl3grd Ice surface temperature layer 3 gradient (K) +38 istl4grd Ice surface temperature layer 4 gradient (K) +39 swvl1grd Volumetric soil water layer 1 gradient (m**3 m**-3) +40 swvl2grd Volumetric soil water layer 2 gradient (m**3 m**-3) +41 swvl3grd Volumetric soil water layer 3 gradient (m**3 m**-3) +42 swvl4grd Volumetric soil water layer 4 gradient (m**3 m**-3) +43 sltgrd Soil type gradient (~) +44 esgrd Snow evaporation gradient (kg m**-2) +45 smltgrd Snowmelt gradient (kg m**-2) +46 sdurgrd Solar duration gradient (s) +47 dsrpgrd Direct solar radiation gradient (J m**-2) +48 magssgrd Magnitude of turbulent surface stress gradient (N m**-2 s) +49 10fggrd 10 metre wind gust gradient (m s**-1) +50 lspfgrd Large-scale precipitation fraction gradient (s) +51 mx2t24grd Maximum 2 metre temperature gradient (K) +52 mn2t24grd Minimum 2 metre temperature gradient (K) +53 montgrd Montgomery potential gradient (m**2 s**-2) +54 presgrd Pressure gradient (Pa) +55 mean2t24grd Mean 2 metre temperature in the last 24 hours gradient (K) +56 mn2d24grd Mean 2 metre dewpoint temperature in the last 24 hours gradient (K) +57 uvbgrd Downward UV radiation at the surface gradient (J m**-2) +58 pargrd Photosynthetically active radiation at the surface gradient (J m**-2) +59 capegrd Convective available potential energy gradient (J kg**-1) +60 pvgrd Potential vorticity gradient (K m**2 kg**-1 s**-1) +61 tpogrd Total precipitation from observations gradient (Millimetres*100 + number of stations) +62 obctgrd Observation count gradient (~) +63 ~ Start time for skin temperature difference (s) +64 ~ Finish time for skin temperature difference (s) +65 ~ Skin temperature difference (K) +66 ~ Leaf area index, low vegetation (m**2 m**-2) +67 ~ Leaf area index, high vegetation (m**2 m**-2) +68 ~ Minimum stomatal resistance, low vegetation (s m**-1) +69 ~ Minimum stomatal resistance, high vegetation (s m**-1) +70 ~ Biome cover, low vegetation ((0 - 1)) +71 ~ Biome cover, high vegetation ((0 - 1)) +78 ~ Total column liquid water (kg m**-2) +79 ~ Total column ice water (kg m**-2) +80 ~ Experimental product (~) +81 ~ Experimental product (~) +82 ~ Experimental product (~) +83 ~ Experimental product (~) +84 ~ Experimental product (~) +85 ~ Experimental product (~) +86 ~ Experimental product (~) +87 ~ Experimental product (~) +88 ~ Experimental product (~) +89 ~ Experimental product (~) +90 ~ Experimental product (~) +91 ~ Experimental product (~) +92 ~ Experimental product (~) +93 ~ Experimental product (~) +94 ~ Experimental product (~) +95 ~ Experimental product (~) +96 ~ Experimental product (~) +97 ~ Experimental product (~) +98 ~ Experimental product (~) +99 ~ Experimental product (~) +100 ~ Experimental product (~) +101 ~ Experimental product (~) +102 ~ Experimental product (~) +103 ~ Experimental product (~) +104 ~ Experimental product (~) +105 ~ Experimental product (~) +106 ~ Experimental product (~) +107 ~ Experimental product (~) +108 ~ Experimental product (~) +109 ~ Experimental product (~) +110 ~ Experimental product (~) +111 ~ Experimental product (~) +112 ~ Experimental product (~) +113 ~ Experimental product (~) +114 ~ Experimental product (~) +115 ~ Experimental product (~) +116 ~ Experimental product (~) +117 ~ Experimental product (~) +118 ~ Experimental product (~) +119 ~ Experimental product (~) +120 ~ Experimental product (~) +121 mx2t6grd Maximum temperature at 2 metres gradient (K) +122 mn2t6grd Minimum temperature at 2 metres gradient (K) +123 10fg6grd 10 metre wind gust in the last 6 hours gradient (m s**-1) +125 ~ Vertically integrated total energy (J m**-2) +126 ~ Generic parameter for sensitive area prediction (Various) +127 atgrd Atmospheric tide gradient (~) +128 bvgrd Budget values gradient (~) +129 zgrd Geopotential gradient (m**2 s**-2) +130 tgrd Temperature gradient (K) +131 ugrd U component of wind gradient (m s**-1) +132 vgrd V component of wind gradient (m s**-1) +133 qgrd Specific humidity gradient (kg kg**-1) +134 spgrd Surface pressure gradient (Pa) +135 wgrd vertical velocity (pressure) gradient (Pa s**-1) +136 tcwgrd Total column water gradient (kg m**-2) +137 tcwvgrd Total column water vapour gradient (kg m**-2) +138 vogrd Vorticity (relative) gradient (s**-1) +139 stl1grd Soil temperature level 1 gradient (K) +140 swl1grd Soil wetness level 1 gradient (kg m**-2) +141 sdgrd Snow depth gradient (m of water equivalent) +142 lspgrd Stratiform precipitation (Large-scale precipitation) gradient (m) +143 cpgrd Convective precipitation gradient (m) +144 sfgrd Snowfall (convective + stratiform) gradient (m of water equivalent) +145 bldgrd Boundary layer dissipation gradient (J m**-2) +146 sshfgrd Surface sensible heat flux gradient (J m**-2) +147 slhfgrd Surface latent heat flux gradient (J m**-2) +148 chnkgrd Charnock gradient (~) +149 snrgrd Surface net radiation gradient (J m**-2) +150 tnrgrd Top net radiation gradient (~) +151 mslgrd Mean sea level pressure gradient (Pa) +152 lnspgrd Logarithm of surface pressure gradient (~) +153 swhrgrd Short-wave heating rate gradient (K) +154 lwhrgrd Long-wave heating rate gradient (K) +155 dgrd Divergence gradient (s**-1) +156 ghgrd Height gradient (m) +157 rgrd Relative humidity gradient (%) +158 tspgrd Tendency of surface pressure gradient (Pa s**-1) +159 blhgrd Boundary layer height gradient (m) +160 sdorgrd Standard deviation of orography gradient (~) +161 isorgrd Anisotropy of sub-gridscale orography gradient (~) +162 anorgrd Angle of sub-gridscale orography gradient (radians) +163 slorgrd Slope of sub-gridscale orography gradient (~) +164 tccgrd Total cloud cover gradient ((0 - 1)) +165 10ugrd 10 metre U wind component gradient (m s**-1) +166 10vgrd 10 metre V wind component gradient (m s**-1) +167 2tgrd 2 metre temperature gradient (K) +168 2dgrd 2 metre dewpoint temperature gradient (K) +169 ssrdgrd Surface solar radiation downwards gradient (J m**-2) +170 stl2grd Soil temperature level 2 gradient (K) +171 swl2grd Soil wetness level 2 gradient (kg m**-2) +172 lsmgrd Land-sea mask gradient ((0 - 1)) +173 srgrd Surface roughness gradient (m) +174 algrd Albedo gradient ((0 - 1)) +175 strdgrd Surface thermal radiation downwards gradient (J m**-2) +176 ssrgrd Surface net solar radiation gradient (J m**-2) +177 strgrd Surface net thermal radiation gradient (J m**-2) +178 tsrgrd Top net solar radiation gradient (J m**-2) +179 ttrgrd Top net thermal radiation gradient (J m**-2) +180 ewssgrd East-West surface stress gradient (N m**-2 s) +181 nsssgrd North-South surface stress gradient (N m**-2 s) +182 egrd Evaporation gradient (kg m**-2) +183 stl3grd Soil temperature level 3 gradient (K) +184 swl3grd Soil wetness level 3 gradient (kg m**-2) +185 cccgrd Convective cloud cover gradient ((0 - 1)) +186 lccgrd Low cloud cover gradient ((0 - 1)) +187 mccgrd Medium cloud cover gradient ((0 - 1)) +188 hccgrd High cloud cover gradient ((0 - 1)) +189 sundgrd Sunshine duration gradient (s) +190 ewovgrd East-West component of sub-gridscale orographic variance gradient (m**2) +191 nsovgrd North-South component of sub-gridscale orographic variance gradient (m**2) +192 nwovgrd North-West/South-East component of sub-gridscale orographic variance gradient (m**2) +193 neovgrd North-East/South-West component of sub-gridscale orographic variance gradient (m**2) +194 btmpgrd Brightness temperature gradient (K) +195 lgwsgrd Longitudinal component of gravity wave stress gradient (N m**-2 s) +196 mgwsgrd Meridional component of gravity wave stress gradient (N m**-2 s) +197 gwdgrd Gravity wave dissipation gradient (J m**-2) +198 srcgrd Skin reservoir content gradient (kg m**-2) +199 veggrd Vegetation fraction gradient ((0 - 1)) +200 vsogrd Variance of sub-gridscale orography gradient (m**2) +201 mx2tgrd Maximum temperature at 2 metres since previous post-processing gradient (K) +202 mn2tgrd Minimum temperature at 2 metres since previous post-processing gradient (K) +203 o3grd Ozone mass mixing ratio gradient (kg kg**-1) +204 pawgrd Precipitation analysis weights gradient (~) +205 rogrd Runoff gradient (m) +206 tco3grd Total column ozone gradient (kg m**-2) +207 10sigrd 10 metre wind speed gradient (m s**-1) +208 tsrcgrd Top net solar radiation, clear sky gradient (J m**-2) +209 ttrcgrd Top net thermal radiation, clear sky gradient (J m**-2) +210 ssrcgrd Surface net solar radiation, clear sky gradient (J m**-2) +211 strcgrd Surface net thermal radiation, clear sky gradient (J m**-2) +212 tisrgrd TOA incident solar radiation gradient (J m**-2) +214 dhrgrd Diabatic heating by radiation gradient (K) +215 dhvdgrd Diabatic heating by vertical diffusion gradient (K) +216 dhccgrd Diabatic heating by cumulus convection gradient (K) +217 dhlcgrd Diabatic heating large-scale condensation gradient (K) +218 vdzwgrd Vertical diffusion of zonal wind gradient (m s**-1) +219 vdmwgrd Vertical diffusion of meridional wind gradient (m s**-1) +220 ewgdgrd East-West gravity wave drag tendency gradient (m s**-1) +221 nsgdgrd North-South gravity wave drag tendency gradient (m s**-1) +222 ctzwgrd Convective tendency of zonal wind gradient (m s**-1) +223 ctmwgrd Convective tendency of meridional wind gradient (m s**-1) +224 vdhgrd Vertical diffusion of humidity gradient (kg kg**-1) +225 htccgrd Humidity tendency by cumulus convection gradient (kg kg**-1) +226 htlcgrd Humidity tendency by large-scale condensation gradient (kg kg**-1) +227 crnhgrd Change from removal of negative humidity gradient (kg kg**-1) +228 tpgrd Total precipitation gradient (m) +229 iewsgrd Instantaneous X surface stress gradient (N m**-2) +230 inssgrd Instantaneous Y surface stress gradient (N m**-2) +231 ishfgrd Instantaneous surface heat flux gradient (J m**-2) +232 iegrd Instantaneous moisture flux gradient (kg m**-2 s) +233 asqgrd Apparent surface humidity gradient (kg kg**-1) +234 lsrhgrd Logarithm of surface roughness length for heat gradient (~) +235 sktgrd Skin temperature gradient (K) +236 stl4grd Soil temperature level 4 gradient (K) +237 swl4grd Soil wetness level 4 gradient (m) +238 tsngrd Temperature of snow layer gradient (K) +239 csfgrd Convective snowfall gradient (m of water equivalent) +240 lsfgrd Large scale snowfall gradient (m of water equivalent) +241 acfgrd Accumulated cloud fraction tendency gradient ((-1 to 1)) +242 alwgrd Accumulated liquid water tendency gradient ((-1 to 1)) +243 falgrd Forecast albedo gradient ((0 - 1)) +244 fsrgrd Forecast surface roughness gradient (m) +245 flsrgrd Forecast logarithm of surface roughness for heat gradient (~) +246 clwcgrd Specific cloud liquid water content gradient (kg kg**-1) +247 ciwcgrd Specific cloud ice water content gradient (kg kg**-1) +248 ccgrd Cloud cover gradient ((0 - 1)) +249 aiwgrd Accumulated ice water tendency gradient ((-1 to 1)) +250 icegrd Ice age gradient ((0 - 1)) +251 attegrd Adiabatic tendency of temperature gradient (K) +252 athegrd Adiabatic tendency of humidity gradient (kg kg**-1) +253 atzegrd Adiabatic tendency of zonal wind gradient (m s**-1) +254 atmwgrd Adiabatic tendency of meridional wind gradient (m s**-1) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.130.table b/definitions/grib1/2.98.130.table index c3778edfc..5004ac41b 100644 --- a/definitions/grib1/2.98.130.table +++ b/definitions/grib1/2.98.130.table @@ -1,27 +1,27 @@ # This file was automatically generated by ./param.pl -208 tsru TSRU Top solar radiation upward W m**-2 -209 ttru TTRU Top thermal radiation upward W m**-2 -210 tsuc TSUC Top solar radiation upward, clear sky W m**-2 -211 ttuc TTUC Top thermal radiation upward, clear sky W m**-2 -212 clw CLW Cloud liquid water kg kg**-1 -213 cf CF Cloud fraction (0 - 1) -214 dhr DHR Diabatic heating by radiation K s**-1 -215 dhvd DHVD Diabatic heating by vertical diffusion K s**-1 -216 dhcc DHCC Diabatic heating by cumulus convection K s**-1 -217 dhlc DHLC Diabatic heating by large-scale condensation K s**-1 -218 vdzw VDZW Vertical diffusion of zonal wind m**2 s**-3 -219 vdmw VDMW Vertical diffusion of meridional wind m**2 s**-3 -220 ewgd EWGD East-West gravity wave drag m**2 s**-3 -221 nsgd NSGD North-South gravity wave drag m**2 s**-3 -222 ctzw CTZW Convective tendency of zonal wind m**2 s**-3 -223 ctmw CTMW Convective tendency of meridional wind m**2 s**-3 -224 vdh VDH Vertical diffusion of humidity kg kg**-1 s**-1 -225 htcc HTCC Humidity tendency by cumulus convection kg kg**-1 s**-1 -226 htlc HTLC Humidity tendency by large-scale condensation kg kg**-1 s**-1 -227 crnh CRNH Change from removal of negative humidity kg kg**-1 s**-1 -228 att ATT Adiabatic tendency of temperature K s**-1 -229 ath ATH Adiabatic tendency of humidity kg kg**-1 s**-1 -230 atzw ATZW Adiabatic tendency of zonal wind m**2 s**-3 -231 atmwax ATMWAX Adiabatic tendency of meridional wind m**2 s**-3 -232 mvv MVV Mean vertical velocity Pa s**-1 -255 255 - Indicates a missing value +208 tsru Top solar radiation upward (J m**-2) +209 ttru Top thermal radiation upward (J m**-2) +210 tsuc Top solar radiation upward, clear sky (J m**-2) +211 ttuc Top thermal radiation upward, clear sky (J m**-2) +212 clw Cloud liquid water (kg kg**-1) +213 cf Cloud fraction ((0 - 1)) +214 dhr Diabatic heating by radiation (K s**-1) +215 dhvd Diabatic heating by vertical diffusion (K s**-1) +216 dhcc Diabatic heating by cumulus convection (K s**-1) +217 dhlc Diabatic heating by large-scale condensation (K s**-1) +218 vdzw Vertical diffusion of zonal wind (m**2 s**-3) +219 vdmw Vertical diffusion of meridional wind (m**2 s**-3) +220 ewgd East-West gravity wave drag (m**2 s**-3) +221 nsgd North-South gravity wave drag (m**2 s**-3) +222 ctzw Convective tendency of zonal wind (m s**-1) +223 ctmw Convective tendency of meridional wind (m s**-1) +224 vdh Vertical diffusion of humidity (kg kg**-1 s**-1) +225 htcc Humidity tendency by cumulus convection (kg kg**-1 s**-1) +226 htlc Humidity tendency by large-scale condensation (kg kg**-1 s**-1) +227 crnh Tendency due to removal of negative humidity (kg kg**-1) +228 att Adiabatic tendency of temperature (K s**-1) +229 ath Adiabatic tendency of humidity (kg kg**-1 s**-1) +230 atzw Adiabatic tendency of zonal wind (m**2 s**-3) +231 atmwax Adiabatic tendency of meridional wind (m**2 s**-3) +232 mvv Mean vertical velocity (Pa s**-1) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.131.table b/definitions/grib1/2.98.131.table index ac2e14f4b..8951161a1 100644 --- a/definitions/grib1/2.98.131.table +++ b/definitions/grib1/2.98.131.table @@ -1,77 +1,77 @@ # This file was automatically generated by ./param.pl -1 2tag2 2m temperature anomaly of at least +2K % -2 2tag1 2m temperature anomaly of at least +1K % -3 2tag0 2m temperature anomaly of at least 0K % -4 2talm1 2m temperature anomaly of at most -1K % -5 2talm2 2m temperature anomaly of at most -2K % -6 tpag20 Total precipitation anomaly of at least 20 mm % -7 tpag10 Total precipitation anomaly of at least 10 mm % -8 tpag0 Total precipitation anomaly of at least 0 mm % -9 stag0 Surface temperature anomaly of at least 0K % -10 mslag0 Mean sea level pressure anomaly of at least 0 Pa % -15 h0dip Height of 0 degree isotherm probability percentage -16 hslp Height of snowfall limit probability percentage -17 saip Showalter index probability percentage -18 whip Whiting index probability percentage -20 talm2 Temperature anomaly less than -2 K % -21 tag2 Temperature anomaly of at least +2 K % -22 talm8 Temperature anomaly less than -8 K % -23 talm4 Temperature anomaly less than -4 K % -24 tag4 Temperature anomaly greater than +4 K % -25 tag8 Temperature anomaly greater than +8 K % -49 10gp 10 metre wind gust probability percentage -59 capep Convective available potential energy probability percentage -60 tpg1 Total precipitation of at least 1 mm % -61 tpg5 Total precipitation of at least 5 mm % -62 tpg10 Total precipitation of at least 10 mm % -63 tpg20 Total precipitation of at least 20 mm % -64 tpl01 Total precipitation less than 0.1 mm % -65 tprl1 Total precipitation rate less than 1 mm/day % -66 tprg3 Total precipitation rate of at least 3 mm/day % -67 tprg5 Total precipitation rate of at least 5 mm/day % -68 10spg10 10 metre wind speed of at least 10 m/s % -69 10spg15 10 metre wind speed of at least 15 m/s % -70 10fgg15 10 metre wind gust of at least 15 m/s % -71 10fgg20 10 metre wind gust of at least 20 m/s % -72 10fgg25 10 metre wind gust of at least 25 m/s % -73 2tl273 2 metre temperature less than 273.15 K % -74 swhg2 Significant wave height of at least 2 m % -75 swhg4 Significant wave height of at least 4 m % -76 swhg6 Significant wave height of at least 6 m % -77 swhg8 Significant wave height of at least 8 m % -79 mwpg10 Mean wave period of at least 10 s % -80 mwpg12 Mean wave period of at least 12 s % -81 mwpg15 Mean wave period of at least 15 s % -82 tpg40 Total precipitation of at least 40 mm % -83 tpg60 Total precipitation of at least 60 mm % -84 tpg80 Total precipitation of at least 80 mm % -85 tpg100 Total precipitation of at least 100 mm % -86 tpg150 Total precipitation of at least 150 mm % -87 tpg200 Total precipitation of at least 200 mm % -88 tpg300 Total precipitation of at least 300 mm % -89 pts Probability of a tropical storm % -90 ph Probability of a hurricane % -91 ptd Probability of a tropical depression % -92 cpts Climatological probability of a tropical storm % -93 cph Climatological probability of a hurricane % -94 cptd Climatological probability of a tropical depression % -95 pats Probability anomaly of a tropical storm % -96 pah Probability anomaly of a hurricane % -97 patd Probability anomaly of a tropical depression % -98 tpg25 Total precipitation of at least 25 mm % -99 tpg50 Total precipitation of at least 50 mm % -100 10fgg10 10 metre wind gust of at least 10 m/s % -129 zp Geopotential probability zp % -130 tap Temperature anomaly probability percentage -139 2tp 2 metre temperature probability % -144 sfp Snowfall (convective + stratiform) probability percentage -151 tpp Total precipitation probability -164 tccp Total cloud cover probability percentage -165 10sp 10 metre speed probability percentage -167 2tp 2 metre temperature probability percentage -201 mx2tp Maximum 2 metre temperature probability percentage -202 mn2tp Minimum 2 metre temperature probability percentage -228 tpp Total precipitation probability percentage -229 swhp Significant wave height probability percentage -232 mwpp Mean wave period probability percentage -255 255 - Indicates a missing value +1 2tag2 2m temperature anomaly of at least +2K (%) +2 2tag1 2m temperature anomaly of at least +1K (%) +3 2tag0 2m temperature anomaly of at least 0K (%) +4 2talm1 2m temperature anomaly of at most -1K (%) +5 2talm2 2m temperature anomaly of at most -2K (%) +6 tpag20 Total precipitation anomaly of at least 20 mm (%) +7 tpag10 Total precipitation anomaly of at least 10 mm (%) +8 tpag0 Total precipitation anomaly of at least 0 mm (%) +9 stag0 Surface temperature anomaly of at least 0K (%) +10 mslag0 Mean sea level pressure anomaly of at least 0 Pa (%) +15 h0dip Height of 0 degree isotherm probability (%) +16 hslp Height of snowfall limit probability (%) +17 saip Showalter index probability (%) +18 whip Whiting index probability (%) +20 talm2 Temperature anomaly less than -2 K (%) +21 tag2 Temperature anomaly of at least +2 K (%) +22 talm8 Temperature anomaly less than -8 K (%) +23 talm4 Temperature anomaly less than -4 K (%) +24 tag4 Temperature anomaly greater than +4 K (%) +25 tag8 Temperature anomaly greater than +8 K (%) +49 10gp 10 metre wind gust probability (%) +59 capep Convective available potential energy probability (%) +60 tpg1 Total precipitation of at least 1 mm (%) +61 tpg5 Total precipitation of at least 5 mm (%) +62 tpg10 Total precipitation of at least 10 mm (%) +63 tpg20 Total precipitation of at least 20 mm (%) +64 tpl01 Total precipitation less than 0.1 mm (%) +65 tprl1 Total precipitation rate less than 1 mm/day (%) +66 tprg3 Total precipitation rate of at least 3 mm/day (%) +67 tprg5 Total precipitation rate of at least 5 mm/day (%) +68 10spg10 10 metre Wind speed of at least 10 m/s (%) +69 10spg15 10 metre Wind speed of at least 15 m/s (%) +70 10fgg15 10 metre wind gust of at least 15 m/s (%) +71 10fgg20 10 metre wind gust of at least 20 m/s (%) +72 10fgg25 10 metre wind gust of at least 25 m/s (%) +73 2tl273 2 metre temperature less than 273.15 K (%) +74 swhg2 Significant wave height of at least 2 m (%) +75 swhg4 Significant wave height of at least 4 m (%) +76 swhg6 Significant wave height of at least 6 m (%) +77 swhg8 Significant wave height of at least 8 m (%) +79 mwpg10 Mean wave period of at least 10 s (%) +80 mwpg12 Mean wave period of at least 12 s (%) +81 mwpg15 Mean wave period of at least 15 s (%) +82 tpg40 Total precipitation of at least 40 mm (%) +83 tpg60 Total precipitation of at least 60 mm (%) +84 tpg80 Total precipitation of at least 80 mm (%) +85 tpg100 Total precipitation of at least 100 mm (%) +86 tpg150 Total precipitation of at least 150 mm (%) +87 tpg200 Total precipitation of at least 200 mm (%) +88 tpg300 Total precipitation of at least 300 mm (%) +89 pts Probability of a tropical storm (%) +90 ph Probability of a hurricane (%) +91 ptd Probability of a tropical depression (%) +92 cpts Climatological probability of a tropical storm (%) +93 cph Climatological probability of a hurricane (%) +94 cptd Climatological probability of a tropical depression (%) +95 pats Probability anomaly of a tropical storm (%) +96 pah Probability anomaly of a hurricane (%) +97 patd Probability anomaly of a tropical depression (%) +98 tpg25 Total precipitation of at least 25 mm (%) +99 tpg50 Total precipitation of at least 50 mm (%) +100 10fgg10 10 metre wind gust of at least 10 m/s (%) +129 zp Geopotential probability (%) +130 tap Temperature anomaly probability (%) +139 stl1p Soil temperature level 1 probability (%) +144 sfp Snowfall (convective + stratiform) probability (%) +151 mslpp Mean sea level pressure probability (%) +164 tccp Total cloud cover probability (%) +165 10sp 10 metre speed probability (%) +167 2tp 2 metre temperature probability (%) +201 mx2tp Maximum 2 metre temperature probability (%) +202 mn2tp Minimum 2 metre temperature probability (%) +228 tpp Total precipitation probability (%) +229 swhp Significant wave height probability (%) +232 mwpp Mean wave period probability (%) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.132.table b/definitions/grib1/2.98.132.table index 7864b8ab8..fc22ec720 100644 --- a/definitions/grib1/2.98.132.table +++ b/definitions/grib1/2.98.132.table @@ -1,13 +1,13 @@ # This file was automatically generated by ./param.pl -44 44 CAPESI Convective available potential energy shear index (-1 to 1) -45 45 WVFI Water vapour flux index (dimensionless) -49 49 10GP 10 metre wind gust index (-1 to 1) -59 capei CAPEI Convective available potential energy index (-1 to 1) -144 144 sfi Snowfall index (-1 to 1) -165 165 10SP 10 metre speed index (-1 to 1) -167 167 2TP 2 metre temperature index (-1 to 1) -201 201 Maximum temperature at 2 metres index (-1 to 1) -202 202 Minimum temperature at 2 metres index (-1 to 1) -216 216 Maximum of significant wave height index (-1 to 1) -228 228 TTP Total precipitation index (-1 to 1) -255 255 - Indicates a missing value +44 capesi Convective available potential energy shear index ((-1 to 1)) +45 wvfi Water vapour flux index (dimensionless) +49 10fgi 10 metre wind gust index ((-1 to 1)) +59 capei Convective available potential energy index ((-1 to 1)) +144 sfi Snowfall index ((-1 to 1)) +165 10wsi 10 metre speed index ((-1 to 1)) +167 2ti 2 metre temperature index ((-1 to 1)) +201 mx2ti Maximum temperature at 2 metres index ((-1 to 1)) +202 mn2ti Minimum temperature at 2 metres index ((-1 to 1)) +216 maxswhi Maximum of significant wave height index ((-1 to 1)) +228 tpi Total precipitation index ((-1 to 1)) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.133.table b/definitions/grib1/2.98.133.table index af1ebcfa5..024f13794 100644 --- a/definitions/grib1/2.98.133.table +++ b/definitions/grib1/2.98.133.table @@ -1,93 +1,93 @@ # This file was automatically generated by ./param.pl -1 2tplm10 2m temperature probability less than -10 C % -2 2tplm5 2m temperature probability less than -5 C % -3 2tpl0 2m temperature probability less than 0 C % -4 2tpl5 2m temperature probability less than 5 C % -5 2tpl10 2m temperature probability less than 10 C % -6 2tpg25 2m temperature probability greater than 25 C % -7 2tpg30 2m temperature probability greater than 30 C % -8 2tpg35 2m temperature probability greater than 35 C % -9 2tpg40 2m temperature probability greater than 40 C % -10 2tpg45 2m temperature probability greater than 45 C % -11 mn2tplm10 Minimum 2 metre temperature probability less than -10 C % -12 mn2tplm5 Minimum 2 metre temperature probability less than -5 C % -13 mn2tpl0 Minimum 2 metre temperature probability less than 0 C % -14 mn2tpl5 Minimum 2 metre temperature probability less than 5 C % -15 mn2tpl10 Minimum 2 metre temperature probability less than 10 C % -16 mx2tpg25 Maximum 2 metre temperature probability greater than 25 C % -17 mx2tpg30 Maximum 2 metre temperature probability greater than 30 C % -18 mx2tpg35 Maximum 2 metre temperature probability greater than 35 C % -19 mx2tpg40 Maximum 2 metre temperature probability greater than 40 C % -20 mx2tpg45 Maximum 2 metre temperature probability greater than 45 C % -21 10spg10 10 metre wind speed probability of at least 10 m/s % -22 10spg15 10 metre wind speed probability of at least 15 m/s % -23 10spg20 10 metre wind speed probability of at least 20 m/s % -24 10spg35 10 metre wind speed probability of at least 35 m/s % -25 10spg50 10 metre wind speed probability of at least 50 m/s % -26 10gpg20 10 metre wind gust probability of at least 20 m/s % -27 10gpg35 10 metre wind gust probability of at least 35 m/s % -28 10gpg50 10 metre wind gust probability of at least 50 m/s % -29 10gpg75 10 metre wind gust probability of at least 75 m/s % -30 10gpg100 10 metre wind gust probability of at least 100 m/s % -31 tppg1 Total precipitation probability of at least 1 mm % -32 tppg5 Total precipitation probability of at least 5 mm % -33 tppg10 Total precipitation probability of at least 10 mm % -34 tppg20 Total precipitation probability of at least 20 mm % -35 tppg40 Total precipitation probability of at least 40 mm % -36 tppg60 Total precipitation probability of at least 60 mm % -37 tppg80 Total precipitation probability of at least 80 mm % -38 tppg100 Total precipitation probability of at least 100 mm % -39 tppg150 Total precipitation probability of at least 150 mm % -40 tppg200 Total precipitation probability of at least 200 mm % -41 tppg300 Total precipitation probability of at least 300 mm % -42 sfpg1 Snowfall probability of at least 1 mm % -43 sfpg5 Snowfall probability of at least 5 mm % -44 sfpg10 Snowfall probability of at least 10 mm % -45 sfpg20 Snowfall probability of at least 20 mm % -46 sfpg40 Snowfall probability of at least 40 mm % -47 sfpg60 Snowfall probability of at least 60 mm % -48 sfpg80 Snowfall probability of at least 80 mm % -49 sfpg100 Snowfall probability of at least 100 mm % -50 sfpg150 Snowfall probability of at least 150 mm % -51 sfpg200 Snowfall probability of at least 200 mm % -52 sfpg300 Snowfall probability of at least 300 mm % -53 tccpg10 Total Cloud Cover probability greater than 10% % -54 tccpg20 Total Cloud Cover probability greater than 20% % -55 tccpg30 Total Cloud Cover probability greater than 30% % -56 tccpg40 Total Cloud Cover probability greater than 40% % -57 tccpg50 Total Cloud Cover probability greater than 50% % -58 tccpg60 Total Cloud Cover probability greater than 60% % -59 tccpg70 Total Cloud Cover probability greater than 70% % -60 tccpg80 Total Cloud Cover probability greater than 80% % -61 tccpg90 Total Cloud Cover probability greater than 90% % -62 tccpg99 Total Cloud Cover probability greater than 99% % -63 hccpg10 High Cloud Cover probability greater than 10% % -64 hccpg20 High Cloud Cover probability greater than 20% % -65 hccpg30 High Cloud Cover probability greater than 30% % -66 hccpg40 High Cloud Cover probability greater than 40% % -67 hccpg50 High Cloud Cover probability greater than 50% % -68 hccpg60 High Cloud Cover probability greater than 60% % -69 hccpg70 High Cloud Cover probability greater than 70% % -70 hccpg80 High Cloud Cover probability greater than 80% % -71 hccpg90 High Cloud Cover probability greater than 90% % -72 hccpg99 High Cloud Cover probability greater than 99% % -73 mccpg10 Medium Cloud Cover probability greater than 10% % -74 mccpg20 Medium Cloud Cover probability greater than 20% % -75 mccpg30 Medium Cloud Cover probability greater than 30% % -76 mccpg40 Medium Cloud Cover probability greater than 40% % -77 mccpg50 Medium Cloud Cover probability greater than 50% % -78 mccpg60 Medium Cloud Cover probability greater than 60% % -79 mccpg70 Medium Cloud Cover probability greater than 70% % -80 mccpg80 Medium Cloud Cover probability greater than 80% % -81 mccpg90 Medium Cloud Cover probability greater than 90% % -82 mccpg99 Medium Cloud Cover probability greater than 99% % -83 lccpg10 Low Cloud Cover probability greater than 10% % -84 lccpg20 Low Cloud Cover probability greater than 20% % -85 lccpg30 Low Cloud Cover probability greater than 30% % -86 lccpg40 Low Cloud Cover probability greater than 40% % -87 lccpg50 Low Cloud Cover probability greater than 50% % -88 lccpg60 Low Cloud Cover probability greater than 60% % -89 lccpg70 Low Cloud Cover probability greater than 70% % -90 lccpg80 Low Cloud Cover probability greater than 80% % -91 lccpg90 Low Cloud Cover probability greater than 90% % -92 lccpg99 Low Cloud Cover probability greater than 99% % +1 2tplm10 2m temperature probability less than -10 C (%) +2 2tplm5 2m temperature probability less than -5 C (%) +3 2tpl0 2m temperature probability less than 0 C (%) +4 2tpl5 2m temperature probability less than 5 C (%) +5 2tpl10 2m temperature probability less than 10 C (%) +6 2tpg25 2m temperature probability greater than 25 C (%) +7 2tpg30 2m temperature probability greater than 30 C (%) +8 2tpg35 2m temperature probability greater than 35 C (%) +9 2tpg40 2m temperature probability greater than 40 C (%) +10 2tpg45 2m temperature probability greater than 45 C (%) +11 mn2tplm10 Minimum 2 metre temperature probability less than -10 C (%) +12 mn2tplm5 Minimum 2 metre temperature probability less than -5 C (%) +13 mn2tpl0 Minimum 2 metre temperature probability less than 0 C (%) +14 mn2tpl5 Minimum 2 metre temperature probability less than 5 C (%) +15 mn2tpl10 Minimum 2 metre temperature probability less than 10 C (%) +16 mx2tpg25 Maximum 2 metre temperature probability greater than 25 C (%) +17 mx2tpg30 Maximum 2 metre temperature probability greater than 30 C (%) +18 mx2tpg35 Maximum 2 metre temperature probability greater than 35 C (%) +19 mx2tpg40 Maximum 2 metre temperature probability greater than 40 C (%) +20 mx2tpg45 Maximum 2 metre temperature probability greater than 45 C (%) +21 10spg10 10 metre wind speed probability of at least 10 m/s (%) +22 10spg15 10 metre wind speed probability of at least 15 m/s (%) +23 10spg20 10 metre wind speed probability of at least 20 m/s (%) +24 10spg35 10 metre wind speed probability of at least 35 m/s (%) +25 10spg50 10 metre wind speed probability of at least 50 m/s (%) +26 10gpg20 10 metre wind gust probability of at least 20 m/s (%) +27 10gpg35 10 metre wind gust probability of at least 35 m/s (%) +28 10gpg50 10 metre wind gust probability of at least 50 m/s (%) +29 10gpg75 10 metre wind gust probability of at least 75 m/s (%) +30 10gpg100 10 metre wind gust probability of at least 100 m/s (%) +31 tppg1 Total precipitation probability of at least 1 mm (%) +32 tppg5 Total precipitation probability of at least 5 mm (%) +33 tppg10 Total precipitation probability of at least 10 mm (%) +34 tppg20 Total precipitation probability of at least 20 mm (%) +35 tppg40 Total precipitation probability of at least 40 mm (%) +36 tppg60 Total precipitation probability of at least 60 mm (%) +37 tppg80 Total precipitation probability of at least 80 mm (%) +38 tppg100 Total precipitation probability of at least 100 mm (%) +39 tppg150 Total precipitation probability of at least 150 mm (%) +40 tppg200 Total precipitation probability of at least 200 mm (%) +41 tppg300 Total precipitation probability of at least 300 mm (%) +42 sfpg1 Snowfall probability of at least 1 mm (%) +43 sfpg5 Snowfall probability of at least 5 mm (%) +44 sfpg10 Snowfall probability of at least 10 mm (%) +45 sfpg20 Snowfall probability of at least 20 mm (%) +46 sfpg40 Snowfall probability of at least 40 mm (%) +47 sfpg60 Snowfall probability of at least 60 mm (%) +48 sfpg80 Snowfall probability of at least 80 mm (%) +49 sfpg100 Snowfall probability of at least 100 mm (%) +50 sfpg150 Snowfall probability of at least 150 mm (%) +51 sfpg200 Snowfall probability of at least 200 mm (%) +52 sfpg300 Snowfall probability of at least 300 mm (%) +53 tccpg10 Total Cloud Cover probability greater than 10% (%) +54 tccpg20 Total Cloud Cover probability greater than 20% (%) +55 tccpg30 Total Cloud Cover probability greater than 30% (%) +56 tccpg40 Total Cloud Cover probability greater than 40% (%) +57 tccpg50 Total Cloud Cover probability greater than 50% (%) +58 tccpg60 Total Cloud Cover probability greater than 60% (%) +59 tccpg70 Total Cloud Cover probability greater than 70% (%) +60 tccpg80 Total Cloud Cover probability greater than 80% (%) +61 tccpg90 Total Cloud Cover probability greater than 90% (%) +62 tccpg99 Total Cloud Cover probability greater than 99% (%) +63 hccpg10 High Cloud Cover probability greater than 10% (%) +64 hccpg20 High Cloud Cover probability greater than 20% (%) +65 hccpg30 High Cloud Cover probability greater than 30% (%) +66 hccpg40 High Cloud Cover probability greater than 40% (%) +67 hccpg50 High Cloud Cover probability greater than 50% (%) +68 hccpg60 High Cloud Cover probability greater than 60% (%) +69 hccpg70 High Cloud Cover probability greater than 70% (%) +70 hccpg80 High Cloud Cover probability greater than 80% (%) +71 hccpg90 High Cloud Cover probability greater than 90% (%) +72 hccpg99 High Cloud Cover probability greater than 99% (%) +73 mccpg10 Medium Cloud Cover probability greater than 10% (%) +74 mccpg20 Medium Cloud Cover probability greater than 20% (%) +75 mccpg30 Medium Cloud Cover probability greater than 30% (%) +76 mccpg40 Medium Cloud Cover probability greater than 40% (%) +77 mccpg50 Medium Cloud Cover probability greater than 50% (%) +78 mccpg60 Medium Cloud Cover probability greater than 60% (%) +79 mccpg70 Medium Cloud Cover probability greater than 70% (%) +80 mccpg80 Medium Cloud Cover probability greater than 80% (%) +81 mccpg90 Medium Cloud Cover probability greater than 90% (%) +82 mccpg99 Medium Cloud Cover probability greater than 99% (%) +83 lccpg10 Low Cloud Cover probability greater than 10% (%) +84 lccpg20 Low Cloud Cover probability greater than 20% (%) +85 lccpg30 Low Cloud Cover probability greater than 30% (%) +86 lccpg40 Low Cloud Cover probability greater than 40% (%) +87 lccpg50 Low Cloud Cover probability greater than 50% (%) +88 lccpg60 Low Cloud Cover probability greater than 60% (%) +89 lccpg70 Low Cloud Cover probability greater than 70% (%) +90 lccpg80 Low Cloud Cover probability greater than 80% (%) +91 lccpg90 Low Cloud Cover probability greater than 90% (%) +92 lccpg99 Low Cloud Cover probability greater than 99% (%) diff --git a/definitions/grib1/2.98.140.table b/definitions/grib1/2.98.140.table index 6147bcc8a..fbff59f1d 100644 --- a/definitions/grib1/2.98.140.table +++ b/definitions/grib1/2.98.140.table @@ -1,88 +1,88 @@ # This file was automatically generated by ./param.pl -80 80 WX1 Wave experimental parameter 1 (~) -81 81 WX2 Wave experimental parameter 2 (~) -82 82 WX3 Wave experimental parameter 3 (~) -83 83 WX4 Wave experimental parameter 4 (~) -84 84 WX5 Wave experimental parameter 5 (~) -98 98 WETA Wave induced mean sea level correction (m) -99 99 WRAF Ratio of wave angular and frequency width (dimensionless) -100 100 WNSLC Number of events in freak waves statistics (dimensionless) -101 101 UTAUA U-component of atmospheric surface momentum flux (N m**-2) -102 102 VTAUA V-component of atmospheric surface momentum flux (N m**-2) -103 103 UTAUO U-component of surface momentum flux into ocean (N m**-2) -104 104 VTAUO V-component of surface momentum flux into ocean (N m**-2) -105 105 WPHIO Wave turbulent energy flux into ocean (W m**-2) -106 106 WDW1 Wave directional width of first swell partition (dimensionless) -107 107 WFW1 Wave frequency width of first swell partition (dimensionless) -108 108 WDW2 Wave directional width of second swell partition (dimensionless) -109 109 WFW2 Wave frequency width of second swell partition (dimensionless) -110 110 WDW3 Wave directional width of third swell partition (dimensionless) -111 111 WFW3 Wave frequency width of third swell partition (dimensionless) -112 112 WEFXM Wave energy flux magnitude (W m**-1) -113 113 WEFXD Wave energy flux mean direction (Degree true) -114 114 H1012 Significant wave height of all waves with periods within the inclusive range from 10 to 12 seconds (m) -115 115 H1214 Significant wave height of all waves with periods within the inclusive range from 12 to 14 seconds (m) -116 116 H1417 Significant wave height of all waves with periods within the inclusive range from 14 to 17 seconds (m) -117 117 H1721 Significant wave height of all waves with periods within the inclusive range from 17 to 21 seconds (m) -118 118 H2125 Significant wave height of all waves with periods within the inclusive range from 21 to 25 seconds (m) -119 119 H2530 Significant wave height of all waves with periods within the inclusive range from 25 to 30 seconds (m) -120 120 SH10 Significant wave height of all waves with period larger than 10s (m) -121 121 SWH1 Significant wave height of first swell partition (m) -122 122 MWD1 Mean wave direction of first swell partition (degrees) -123 123 MWP1 Mean wave period of first swell partition (s) -124 124 SWH2 Significant wave height of second swell partition (m) -125 125 MWD2 Mean wave direction of second swell partition (degrees) -126 126 MWP2 Mean wave period of second swell partition (s) -127 127 SWH3 Significant wave height of third swell partition (m) -128 128 MWD3 Mean wave direction of third swell partition (degrees) -129 129 MWP3 Mean wave period of third swell partition (s) -200 200 MAXSWH Maximum of significant wave height (m) -207 207 WSS Wave Spectral Skewness (dimensionless) -208 208 WSTAR Free convective velocity over the oceans (m s**-1) -209 209 RHOAO Air density over the oceans (kg m**-3) -210 210 MSWSI Mean square wave strain in sea ice (~) -211 211 PHIAW Normalized energy flux into waves (dimensionless) -212 212 PHIOC Normalized energy flux into ocean (dimensionless) -213 213 TLA Turbulent Langmuir number (~) -214 214 TAUOC Normalized stress into ocean (dimensionless) -215 215 UST U-component stokes drift (m s**-1) -216 216 VST V-component stokes drift (m s**-1) -217 217 TMAX Period corresponding to maximum individual wave height (s) -218 218 HMAX Maximum individual wave height (m) -219 219 WMB Model bathymetry (m) -220 220 MP1 Mean wave period based on first moment (s) -221 221 MP2 Mean zero-crossing wave period (s) -222 222 WDW Wave spectral directional width (dimensionless) -223 223 P1WW Mean wave period based on first moment for wind waves (s) -224 224 P2WW Mean wave period based on second moment for wind waves (s) -225 225 DWWW Wave spectral directional width for wind waves (dimensionless) -226 226 P1PS Mean wave period based on first moment for swell (s) -227 227 P2PS Mean wave period based on second moment for swell (s) -228 228 DWPS Wave spectral directional width for swell (dimensionless) -229 229 SWH Significant height of combined wind waves and swell (m) -230 230 MWD Mean wave direction (Degree true) -231 231 PP1D Peak wave period (s) -232 232 MWP Mean wave period (s) -233 233 CDWW Coefficient of drag with waves (dimensionless) -234 234 SHWW Significant height of wind waves (m) -235 235 MDWW Mean direction of wind waves (degrees) -236 236 MPWW Mean period of wind waves (s) -237 237 SHTS Significant height of total swell (m) -238 238 MDTS Mean direction of total swell (degrees) -239 239 MPTS Mean period of total swell (s) -240 240 SDHS Standard deviation wave height (m) -241 241 MU10 Mean of 10 metre wind speed (m s**-1) -242 242 MDWI Mean wind direction (degrees) -243 243 SDU Standard deviation of 10 metre wind speed (m s**-1) -244 244 MSQS Mean square slope of waves (dimensionless) -245 245 WIND 10 metre wind speed (m s**-1) -246 246 AWH Altimeter wave height (m) -247 247 ACWH Altimeter corrected wave height (m) -248 248 ARRC Altimeter range relative correction (~) -249 249 DWI 10 metre wind direction (degrees) -250 250 2DSP 2D wave spectra (multiple) (m**2 s radian**-1) -251 251 2DFD 2D wave spectra (single) (m**2 s radian**-1) -252 252 WSK Wave spectral kurtosis (dimensionless) -253 253 BFI Benjamin-Feir index (dimensionless) -254 254 WSP Wave spectral peakedness (dimensionless) -255 255 - Indicates a missing value +80 wx1 Wave experimental parameter 1 (~) +81 wx2 Wave experimental parameter 2 (~) +82 wx3 Wave experimental parameter 3 (~) +83 wx4 Wave experimental parameter 4 (~) +84 wx5 Wave experimental parameter 5 (~) +98 weta Wave induced mean sea level correction (m) +99 wraf Ratio of wave angular and frequency width (dimensionless) +100 wnslc Number of events in freak waves statistics (dimensionless) +101 utaua U-component of atmospheric surface momentum flux (N m**-2) +102 vtaua V-component of atmospheric surface momentum flux (N m**-2) +103 utauo U-component of surface momentum flux into ocean (N m**-2) +104 vtauo V-component of surface momentum flux into ocean (N m**-2) +105 wphio Wave turbulent energy flux into ocean (W m**-2) +106 wdw1 Wave directional width of first swell partition (dimensionless) +107 wfw1 Wave frequency width of first swell partition (dimensionless) +108 wdw2 Wave directional width of second swell partition (dimensionless) +109 wfw2 Wave frequency width of second swell partition (dimensionless) +110 wdw3 Wave directional width of third swell partition (dimensionless) +111 wfw3 Wave frequency width of third swell partition (dimensionless) +112 wefxm Wave energy flux magnitude (W m**-1) +113 wefxd Wave energy flux mean direction (Degree true) +114 h1012 Significant wave height of all waves with periods within the inclusive range from 10 to 12 seconds (m) +115 h1214 Significant wave height of all waves with periods within the inclusive range from 12 to 14 seconds (m) +116 h1417 Significant wave height of all waves with periods within the inclusive range from 14 to 17 seconds (m) +117 h1721 Significant wave height of all waves with periods within the inclusive range from 17 to 21 seconds (m) +118 h2125 Significant wave height of all waves with periods within the inclusive range from 21 to 25 seconds (m) +119 h2530 Significant wave height of all waves with periods within the inclusive range from 25 to 30 seconds (m) +120 sh10 Significant wave height of all waves with period larger than 10s (m) +121 swh1 Significant wave height of first swell partition (m) +122 mwd1 Mean wave direction of first swell partition (degrees) +123 mwp1 Mean wave period of first swell partition (s) +124 swh2 Significant wave height of second swell partition (m) +125 mwd2 Mean wave direction of second swell partition (degrees) +126 mwp2 Mean wave period of second swell partition (s) +127 swh3 Significant wave height of third swell partition (m) +128 mwd3 Mean wave direction of third swell partition (degrees) +129 mwp3 Mean wave period of third swell partition (s) +200 maxswh Maximum of significant wave height (m) +207 wss Wave Spectral Skewness (dimensionless) +208 wstar Free convective velocity over the oceans (m s**-1) +209 rhoao Air density over the oceans (kg m**-3) +210 mswsi Mean square wave strain in sea ice (~) +211 phiaw Normalized energy flux into waves (dimensionless) +212 phioc Normalized energy flux into ocean (dimensionless) +213 tla Turbulent Langmuir number (~) +214 tauoc Normalized stress into ocean (dimensionless) +215 ust U-component stokes drift (m s**-1) +216 vst V-component stokes drift (m s**-1) +217 tmax Period corresponding to maximum individual wave height (s) +218 hmax Maximum individual wave height (m) +219 wmb Model bathymetry (m) +220 mp1 Mean wave period based on first moment (s) +221 mp2 Mean zero-crossing wave period (s) +222 wdw Wave spectral directional width (dimensionless) +223 p1ww Mean wave period based on first moment for wind waves (s) +224 p2ww Mean wave period based on second moment for wind waves (s) +225 dwww Wave spectral directional width for wind waves (dimensionless) +226 p1ps Mean wave period based on first moment for swell (s) +227 p2ps Mean wave period based on second moment for swell (s) +228 dwps Wave spectral directional width for swell (dimensionless) +229 swh Significant height of combined wind waves and swell (m) +230 mwd Mean wave direction (Degree true) +231 pp1d Peak wave period (s) +232 mwp Mean wave period (s) +233 cdww Coefficient of drag with waves (dimensionless) +234 shww Significant height of wind waves (m) +235 mdww Mean direction of wind waves (degrees) +236 mpww Mean period of wind waves (s) +237 shts Significant height of total swell (m) +238 mdts Mean direction of total swell (degrees) +239 mpts Mean period of total swell (s) +240 sdhs Standard deviation wave height (m) +241 mu10 Mean of 10 metre wind speed (m s**-1) +242 mdwi Mean wind direction (degrees) +243 sdu Standard deviation of 10 metre wind speed (m s**-1) +244 msqs Mean square slope of waves (dimensionless) +245 wind 10 metre wind speed (m s**-1) +246 awh Altimeter wave height (m) +247 acwh Altimeter corrected wave height (m) +248 arrc Altimeter range relative correction (~) +249 dwi 10 metre wind direction (degrees) +250 2dsp 2D wave spectra (multiple) (m**2 s radian**-1) +251 2dfd 2D wave spectra (single) (m**2 s radian**-1) +252 wsk Wave spectral kurtosis (dimensionless) +253 bfi Benjamin-Feir index (dimensionless) +254 wsp Wave spectral peakedness (dimensionless) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.150.table b/definitions/grib1/2.98.150.table index c11508eaa..8cd29b6e6 100644 --- a/definitions/grib1/2.98.150.table +++ b/definitions/grib1/2.98.150.table @@ -1,33 +1,33 @@ # This file was automatically generated by ./param.pl 129 ocpt Ocean potential temperature (deg C) -130 ocs Ocean salinity psu -131 ocpd Ocean potential density kg m**-3 -1000 -133 ocu Ocean U wind component (m s**-1) -134 ocv Ocean V wind component (m s**-1) -135 ocw Ocean W wind component (m s**-1) -137 rn Richardson number -139 uv U*V product (m s**-2) -140 ut U*T product (m s**-1 deg C) -141 vt V*T product (m s**-1 deg C) -142 uu U*U product (m s**-2) -143 vv V*V product (m s**-2) -144 144 UV - U~V~ (m s**-2) -145 145 UT - U~T~ m s**-1 deg C -146 146 VT - V~T~ (m s**-1 deg C) -147 147 UU - U~U~ (m s**-2) -148 148 VV - V~V~ (m s**-2) -152 sl Sea level (m) -153 153 Barotropic stream function +130 ocs Ocean salinity (psu) +131 ocpd Ocean potential density (kg m**-3 -1000) +133 ~ Ocean U wind component (m s**-1) +134 ~ Ocean V wind component (m s**-1) +135 ocw Ocean W wind component (m s**-1) +137 rn Richardson number (~) +139 uv U*V product (m s**-2) +140 ut U*T product (m s**-1 deg C) +141 vt V*T product (m s**-1 deg C) +142 uu U*U product (m s**-2) +143 vv V*V product (m s**-2) +144 ~ UV - U~V~ (m s**-2) +145 ~ UT - U~T~ (m s**-1 deg C) +146 ~ VT - V~T~ (m s**-1 deg C) +147 ~ UU - U~U~ (m s**-2) +148 ~ VV - V~V~ (m s**-2) +152 sl Sea level (m) +153 ~ Barotropic stream function (~) 154 mld Mixed layer depth (m) -155 155 Depth (m) -168 168 U stress (Pa) -169 169 V stress (Pa) -170 170 Turbulent kinetic energy input -171 nsf Net surface heat flux -172 172 Surface solar radiation -173 173 P-E -180 180 Diagnosed sea surface temperature error (deg C) -181 181 Heat flux correction (W m**-2) -182 182 Observed sea surface temperature (deg C) -183 183 Observed heat flux (W m**-2) -255 255 Indicates a missing value +155 ~ Depth (m) +168 ~ U stress (Pa) +169 ~ V stress (Pa) +170 ~ Turbulent kinetic energy input (~) +171 nsf Net surface heat flux (~) +172 ~ Surface solar radiation (~) +173 ~ P-E (~) +180 ~ Diagnosed sea surface temperature error (deg C) +181 ~ Heat flux correction (J m**-2) +182 ~ Observed sea surface temperature (deg C) +183 ~ Observed heat flux (J m**-2) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.151.table b/definitions/grib1/2.98.151.table index 238fc46c4..cfa764d3e 100644 --- a/definitions/grib1/2.98.151.table +++ b/definitions/grib1/2.98.151.table @@ -1,80 +1,80 @@ # This file was automatically generated by ./param.pl -129 ocpt Ocean potential temperature deg C -130 s Salinity psu -131 ocu Ocean current zonal component (m s**-1) -132 ocv Ocean current meridional component (m s**-1) -133 ocw Ocean current vertical component (m s**-1) -134 mst Modulus of strain rate tensor s**-1 -135 vvs Vertical viscosity m**2 s**-1 -136 vdf Vertical diffusivity m**2 s**-1 -137 dep Bottom level Depth (m) -138 sth Sigma-theta kg m**-3 -139 rn Richardson number -140 uv UV product m**2 s**-2 -141 ut UT product m s**-1 degC -142 vt VT product m s**-1 deg C -143 uu UU product m**2 s**-2 -144 vv VV product m**2 s**-2 -145 sl Sea level m -146 sl_1 Sea level previous timestep m -147 bsf Barotropic stream function m**3 s**-1 -148 mld Mixed layer depth m -149 btp Bottom Pressure (equivalent height) (m) -151 crl Curl of Wind Stress N m**-3 -152 152 Divergence of wind stress (Nm**-3) -153 tax U stress Pa -154 tay V stress Pa -155 tki Turbulent kinetic energy input W m**-2 -156 nsf Net surface heat flux W m**-2 -157 asr Absorbed solar radiation W m**-2 -158 pme Precipitation - evaporation m s**-1 -159 sst Specified sea surface temperature deg C -160 shf Specified surface heat flux W m**-2 -161 dte Diagnosed sea surface temperature error deg C -162 hfc Heat flux correction W m**-2 -163 20d 20 degrees isotherm depth m -164 tav300 Average potential temperature in the upper 300m degrees C -165 uba1 Vertically integrated zonal velocity (previous time step) m**2 s**-1 -166 vba1 Vertically Integrated meridional velocity (previous time step) m**2 s**-1 -167 ztr Vertically integrated zonal volume transport m**2 s**-1 -168 mtr Vertically integrated meridional volume transport m**2 s**-1 -169 zht Vertically integrated zonal heat transport J m**-1 s**-1 -170 mht Vertically integrated meridional heat transport J m**-1 s**-1 -171 umax U velocity maximum m s**-1 -172 dumax Depth of the velocity maximum m -173 smax Salinity maximum psu -174 dsmax Depth of salinity maximum m -175 sav300 Average salinity in the upper 300m psu -176 ldp Layer Thickness at scalar points (m) -177 ldu Layer Thickness at vector points (m) -178 pti Potential temperature increment deg C -179 ptae Potential temperature analysis error deg C -180 bpt Background potential temperature deg C -181 apt Analysed potential temperature deg C -182 ptbe Potential temperature background error deg C -183 as Analysed salinity psu -184 sali Salinity increment psu -185 ebt Estimated Bias in Temperature deg C -186 ebs Estimated Bias in Salinity psu -187 uvi Zonal Velocity increment (from balance operator) m/s per time step -188 vvi Meridional Velocity increment (from balance operator) -190 subi Salinity increment (from salinity data) psu per time step -191 sale Salinity analysis error psu -192 bsal Background Salinity psu -193 193 - Reserved -194 salbe Salinity background error psu -199 ebta Estimated temperature bias from assimilation deg C -200 ebsa Estimated salinity bias from assimilation psu -201 lti Temperature increment from relaxation term deg C per time step -202 lsi Salinity increment from relaxation term psu per time step -203 bzpga Bias in the zonal pressure gradient (applied) (Pa**m-1) -204 bmpga Bias in the meridional pressure gradient (applied) (Pa**m-1) -205 ebtl Estimated temperature bias from relaxation deg C -206 ebsl Estimated salinity bias from relaxation psu -207 fgbt First guess bias in temperature deg C -208 fgbs First guess bias in salinity psu -209 bpa Applied bias in pressure Pa -210 fgbp FG bias in pressure Pa -211 pta Bias in temperature(applied) (deg C) -212 psa Bias in salinity (applied) (psu) -255 255 - Indicates a missing value +129 thetao Sea water potential temperature (deg C) +130 so Sea water practical salinity (psu) +131 ocu Eastward sea water velocity (m s**-1) +132 ocv Northward sea water velocity (m s**-1) +133 wo Upward sea water velocity (m s**-1) +134 mst Modulus of strain rate tensor (s**-1) +135 vvs Vertical viscosity (m**2 s**-1) +136 vdf Vertical diffusivity (m**2 s**-1) +137 dep Bottom level Depth (m) +138 sigmat Sea water sigma theta (kg m**-3) +139 rn Richardson number (~) +140 uv UV product (m**2 s**-2) +141 ut UT product (m s**-1 degC) +142 vt VT product (m s**-1 deg C) +143 uu UU product (m**2 s**-2) +144 vv VV product (m**2 s**-2) +145 zos Sea surface height (m) +146 sl_1 Sea level previous timestep (m) +147 stfbarot Ocean barotropic stream function (m**3 s**-1) +148 mld Mixed layer depth (m) +149 btp Bottom Pressure (equivalent height) (m) +151 crl Curl of Wind Stress (N m**-3) +152 ~ Divergence of wind stress (Nm**-3) +153 taueo Surface downward eastward stress (N m**-2) +154 tauno Surface downward northward stress (N m**-2) +155 tki Turbulent kinetic energy input (J m**-2) +156 nsf Net surface heat flux (J m**-2) +157 asr Absorbed solar radiation (J m**-2) +158 pme Precipitation - evaporation (m s**-1) +159 sst Specified sea surface temperature (deg C) +160 shf Specified surface heat flux (J m**-2) +161 dte Diagnosed sea surface temperature error (deg C) +162 hfc Heat flux correction (J m**-2) +163 t20d Depth of 20C isotherm (m) +164 tav300 Average potential temperature in the upper 300m (degrees C) +165 uba1 Vertically integrated zonal velocity (previous time step) (m**2 s**-1) +166 vba1 Vertically Integrated meridional velocity (previous time step) (m**2 s**-1) +167 ztr Vertically integrated zonal volume transport (m**2 s**-1) +168 mtr Vertically integrated meridional volume transport (m**2 s**-1) +169 zht Vertically integrated zonal heat transport (J m**-1 s**-1) +170 mht Vertically integrated meridional heat transport (J m**-1 s**-1) +171 umax U velocity maximum (m s**-1) +172 dumax Depth of the velocity maximum (m) +173 smax Salinity maximum (psu) +174 dsmax Depth of salinity maximum (m) +175 sav300 Average salinity in the upper 300m (psu) +176 ldp Layer Thickness at scalar points (m) +177 ldu Layer Thickness at vector points (m) +178 pti Potential temperature increment (deg C) +179 ptae Potential temperature analysis error (deg C) +180 bpt Background potential temperature (deg C) +181 apt Analysed potential temperature (deg C) +182 ptbe Potential temperature background error (deg C) +183 as Analysed salinity (psu) +184 sali Salinity increment (psu) +185 ebt Estimated Bias in Temperature (deg C) +186 ebs Estimated Bias in Salinity (psu) +187 uvi Zonal Velocity increment (from balance operator) (m s**-1 per time step) +188 vvi Meridional Velocity increment (from balance operator) (~) +190 subi Salinity increment (from salinity data) (psu per time step) +191 sale Salinity analysis error (psu) +192 bsal Background Salinity (psu) +193 ~ Reserved (~) +194 salbe Salinity background error (psu) +199 ebta Estimated temperature bias from assimilation (deg C) +200 ebsa Estimated salinity bias from assimilation (psu) +201 lti Temperature increment from relaxation term (deg C per time step) +202 lsi Salinity increment from relaxation term (~) +203 bzpga Bias in the zonal pressure gradient (applied) (Pa m**-1) +204 bmpga Bias in the meridional pressure gradient (applied) (Pa m**-1) +205 ebtl Estimated temperature bias from relaxation (deg C) +206 ebsl Estimated salinity bias from relaxation (psu) +207 fgbt First guess bias in temperature (deg C) +208 fgbs First guess bias in salinity (psu) +209 bpa Applied bias in pressure (Pa) +210 fgbp FG bias in pressure (Pa) +211 pta Bias in temperature(applied) (deg C) +212 psa Bias in salinity (applied) (psu) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.160.table b/definitions/grib1/2.98.160.table index b87f8872d..add7e5f4e 100644 --- a/definitions/grib1/2.98.160.table +++ b/definitions/grib1/2.98.160.table @@ -1,109 +1,109 @@ # This file was automatically generated by ./param.pl -127 127 AT Atmospheric tide -128 128 BV Budget values -129 129 Z Geopotential m**2 s**-2 -130 130 T Temperature K -131 131 U U velocity m s**-1 -132 132 V V velocity m s**-1 -133 133 Q Specific humidity kg kg**-1 -134 134 SP Surface pressure Pa -135 135 W Vertical velocity (pressure) Pa s**-1 -136 136 TCW Total column water kg m**-2 -137 137 PWC Precipitable water content kg m**-2 -138 138 VO Vorticity (relative) s**-1 -139 139 STL1 Soil temperature level 1 K -140 140 SWL1 Soil wetness level 1 m -141 141 SD Snow depth m of water -142 142 LSP Large-scale precipitation kg m**-2 s**-1 -143 143 CP Convective precipitation kg m**-2 s**-1 -144 144 SF Snowfall kg m**-2 s**-1 -145 145 BLD Boundary layer dissipation W m**-2 -146 146 SSHF Surface sensible heat flux W m**-2 -147 147 SLHF Surface latent heat flux W m**-2 -151 151 MSL Mean sea level pressure Pa -152 152 LNSP Logarithm of surface pressure -155 155 D Divergence s**-1 -156 156 GH Height m -157 157 R Relative humidity (0 - 1) -158 158 TSP Tendency of surface pressure Pa s**-1 -164 164 TCC Total cloud cover (0 - 1) -165 165 10U 10 metre U wind component m s**-1 -166 166 10V 10 metre V wind component m s**-1 -167 167 2T 2 metre temperature K -168 168 2D 2 metre dewpoint temperature K -170 170 STL2 Soil temperature level 2 K -171 171 SWL2 Soil wetness level 2 m -172 172 LSM Land-sea mask (0 - 1) -173 173 SR Surface roughness m -174 174 AL Albedo (0 - 1) -176 176 SSR Surface solar radiation W m**-2 -177 177 STR Surface thermal radiation W m**-2 -178 178 TSR Top solar radiation W m**-2 -179 179 TTR Top thermal radiation W m**-2 -180 180 EWSS East-West surface stress N m**-2 s**-1 -181 181 NSSS North-South surface stress N m**-2 s**-1 -182 182 E Evaporation kg m**-2 s**-1 -183 183 STL3 Soil temperature level 3 K -184 184 SWL3 Soil wetness level 3 m -185 185 CCC Convective cloud cover (0 - 1) -186 186 LCC Low cloud cover (0 - 1) -187 187 MCC Medium cloud cover (0 - 1) -188 188 HCC High cloud cover (0 - 1) -190 190 EWOV East-West component of sub-gridscale orographic variance m**2 -191 191 NSOV North-South component of sub-gridscale orographic variance m**2 -192 192 NWOV North-West/South-East component of sub-gridscale orographic variance m**2 -193 193 NEOV North-East/South-West component of sub-gridscale orographic variance m**2 -195 195 LGWS Latitudinal component of gravity wave stress N m**-2 s -196 196 MGWS Meridional component of gravity wave stress N m**-2 s -197 197 GWD Gravity wave dissipation W m**-2 s -198 198 SRC Skin reservoir content m of water -199 199 VEG Percentage of vegetation % -200 200 VSO Variance of sub-gridscale orography m**2 -201 201 MX2T Maximum temperature at 2 metres during averaging time K -202 202 MN2T Minimum temperature at 2 metres during averaging time K -204 204 PAW Precipitation analysis weights -205 205 RO Runoff kg m**-2 s**-1 -206 206 ZZ Standard deviation of geopotential m**2 s**-2 -207 207 TZ Covariance of temperature and geopotential K m**2 s**-2 -208 208 TT Standard deviation of temperature K -209 209 QZ Covariance of specific humidity and geopotential m**2 s**-2 -210 210 QT Covariance of specific humidity and temperature K -211 211 QQ Standard deviation of specific humidity (0 - 1) -212 212 UZ Covariance of U component and geopotential m**3 s**-3 -213 213 UT Covariance of U component and temperature K m s**-1 -214 214 UQ Covariance of U component and specific humidity m s**-1 -215 215 UU Standard deviation of U velocity m s**-1 -216 216 VZ Covariance of V component and geopotential m**3 s**-3 -217 217 VT Covariance of V component and temperature K m s**-1 -218 218 VQ Covariance of V component and specific humidity m s**-1 -219 219 VU Covariance of V component and U component m**2 s**-2 -220 220 VV Standard deviation of V component m s**-1 -221 221 WZ Covariance of W component and geopotential Pa m**2 s**-3 -222 222 WT Covariance of W component and temperature K Pa s**-1 -223 223 WQ Covariance of W component and specific humidity Pa s**-1 -224 224 WU Covariance of W component and U component Pa m s**-2 -225 225 WV Covariance of W component and V component Pa m s**-2 -226 226 WW Standard deviation of vertical velocity Pa s**-1 -228 228 TP Total precipitation m -229 229 IEWS Instantaneous X surface stress N m**-2 -230 230 INSS Instantaneous Y surface stress N m**-2 -231 231 ISHF Instantaneous surface heat flux W m**-2 -232 232 IE Instantaneous moisture flux kg m**-2 s**-1 -233 233 ASQ Apparent surface humidity kg kg**-1 -234 234 LSRH Logarithm of surface roughness length for heat -235 235 SKT Skin temperature K -236 236 STL4 Soil temperature level 4 K -237 237 SWL4 Soil wetness level 4 m -238 238 TSN Temperature of snow layer K -239 239 CSF Convective snowfall kg m**-2 s**-1 -240 240 LSF Large scale snowfall kg m**-2 s**-1 -241 241 CLWCER Cloud liquid water content kg kg**-1 -242 242 CC Cloud cover (0 - 1) -243 243 FAL Forecast albedo -244 244 FSR Forecast surface roughness m -245 245 FLSR Forecast logarithm of surface roughness for heat -246 246 10WS 10 metre wind speed m s**-1 -247 247 MOFL Momentum flux N m**-2 -249 249 - Gravity wave dissipation flux W m**-2 -254 254 HSD Heaviside beta function (0 - 1) -255 255 - Indicates a missing value +127 at Atmospheric tide (~) +128 bv Budget values (~) +129 z Geopotential (m**2 s**-2) +130 t Temperature (K) +131 u U component of wind (m s**-1) +132 v V component of wind (m s**-1) +133 q Specific humidity (kg kg**-1) +134 sp Surface pressure (Pa) +135 wrea vertical velocity (pressure) (Pa s**-1) +136 tcw Total column water (kg m**-2) +137 pwcrea Precipitable water content (kg m**-2) +138 vo Vorticity (relative) (s**-1) +139 stl1 Soil temperature level 1 (K) +140 swl1rea Soil wetness level 1 (m) +141 sdrea Snow depth (kg m**-2) +142 lsprea Large-scale precipitation (kg m**-2 s**-1) +143 cprea Convective precipitation (kg m**-2 s**-1) +144 sfrea Snowfall (kg m**-2 s**-1) +145 bld Boundary layer dissipation (J m**-2) +146 sshf Surface sensible heat flux (J m**-2) +147 slhf Surface latent heat flux (J m**-2) +151 msl Mean sea level pressure (Pa) +152 lnsp Logarithm of surface pressure (~) +155 d Divergence (s**-1) +156 ghrea Height (m) +157 rrea Relative humidity ((0 - 1)) +158 tsp Tendency of surface pressure (Pa s**-1) +164 tcc Total cloud cover ((0 - 1)) +165 10u 10 metre U wind component (m s**-1) +166 10v 10 metre V wind component (m s**-1) +167 2t 2 metre temperature (K) +168 2d 2 metre dewpoint temperature (K) +170 stl2 Soil temperature level 2 (K) +171 swl2rea Soil wetness level 2 (m) +172 lsm Land-sea mask ((0 - 1)) +173 sr Surface roughness (m) +174 al Albedo ((0 - 1)) +176 ssr Surface net solar radiation (J m**-2) +177 str Surface net thermal radiation (J m**-2) +178 tsr Top net solar radiation (J m**-2) +179 ttr Top net thermal radiation (J m**-2) +180 ewssrea East-West surface stress (N m**-2 s**-1) +181 nsssrea North-South surface stress (N m**-2 s**-1) +182 erea Evaporation (kg m**-2 s**-1) +183 stl3 Soil temperature level 3 (K) +184 swl3rea Soil wetness level 3 (m) +185 ccc Convective cloud cover ((0 - 1)) +186 lcc Low cloud cover ((0 - 1)) +187 mcc Medium cloud cover ((0 - 1)) +188 hcc High cloud cover ((0 - 1)) +190 ewov East-West component of sub-gridscale orographic variance (m**2) +191 nsov North-South component of sub-gridscale orographic variance (m**2) +192 nwov North-West/South-East component of sub-gridscale orographic variance (m**2) +193 neov North-East/South-West component of sub-gridscale orographic variance (m**2) +195 lgws Eastward gravity wave surface stress (N m**-2 s) +196 mgws Northward gravity wave surface stress (N m**-2 s) +197 gwd Gravity wave dissipation (J m**-2) +198 srcrea Skin reservoir content (kg m**-2) +199 vegrea Percentage of vegetation (%) +200 vso Variance of sub-gridscale orography (m**2) +201 mx2trea Maximum temperature at 2 metres during averaging time (K) +202 mn2trea Minimum temperature at 2 metres during averaging time (K) +204 paw Precipitation analysis weights (~) +205 rorea Runoff (kg m**-2 s**-1) +206 zzrea Standard deviation of geopotential (m**2 s**-2) +207 tzrea Covariance of temperature and geopotential (K m**2 s**-2) +208 ttrea Standard deviation of temperature (K) +209 qzrea Covariance of specific humidity and geopotential (m**2 s**-2) +210 qtrea Covariance of specific humidity and temperature (K) +211 qqrea Standard deviation of specific humidity ((0 - 1)) +212 uzrea Covariance of U component and geopotential (m**3 s**-3) +213 utrea Covariance of U component and temperature (K m s**-1) +214 uqrea Covariance of U component and specific humidity (m s**-1) +215 uurea Standard deviation of U velocity (m s**-1) +216 vzrea Covariance of V component and geopotential (m**3 s**-3) +217 vtrea Covariance of V component and temperature (K m s**-1) +218 vqrea Covariance of V component and specific humidity (m s**-1) +219 vurea Covariance of V component and U component (m**2 s**-2) +220 vvrea Standard deviation of V component (m s**-1) +221 wzrea Covariance of W component and geopotential (Pa m**2 s**-3) +222 wtrea Covariance of W component and temperature (K Pa s**-1) +223 wqrea Covariance of W component and specific humidity (Pa s**-1) +224 wurea Covariance of W component and U component (Pa m s**-2) +225 wvrea Covariance of W component and V component (Pa m s**-2) +226 wwrea Standard deviation of vertical velocity (Pa s**-1) +228 tp Total precipitation (m) +229 iews Instantaneous eastward turbulent surface stress (N m**-2) +230 inss Instantaneous northward turbulent surface stress (N m**-2) +231 ishfrea Instantaneous surface heat flux (J m**-2) +232 ie Instantaneous moisture flux (kg m**-2 s**-1) +233 asq Apparent surface humidity (kg kg**-1) +234 lsrh Logarithm of surface roughness length for heat (~) +235 skt Skin temperature (K) +236 stl4 Soil temperature level 4 (K) +237 swl4 Soil wetness level 4 (m) +238 tsn Temperature of snow layer (K) +239 csfrea Convective snowfall (kg m**-2 s**-1) +240 lsfrea Large scale snowfall (kg m**-2 s**-1) +241 clwcerrea Cloud liquid water content (kg kg**-1) +242 ccrea Cloud cover ((0 - 1)) +243 falrea Forecast albedo (~) +244 fsr Forecast surface roughness (m) +245 flsr Forecast logarithm of surface roughness for heat (~) +246 10wsrea 10 metre wind speed (m s**-1) +247 moflrea Momentum flux (N m**-2) +249 ~ Gravity wave dissipation flux (J m**-2) +254 hsdrea Heaviside beta function ((0 - 1)) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.162.table b/definitions/grib1/2.98.162.table index f70d3435d..ade29a31c 100644 --- a/definitions/grib1/2.98.162.table +++ b/definitions/grib1/2.98.162.table @@ -1,114 +1,114 @@ # This file was automatically generated by ./param.pl -45 45 WVF Water vapour flux (kg m**-1 s**-1) -51 51 - Surface geopotential (m**2 s**-2) -52 52 SP Surface pressure (Pa) -53 53 - Vertical integral of mass of atmosphere (kg m**-2) -54 54 - Vertical integral of temperature (K kg m**-2) -55 55 - Vertical integral of water vapour (kg m**-2) -56 56 - Vertical integral of cloud liquid water (kg m**-2) -57 57 - Vertical integral of cloud frozen water (kg m**-2) -58 58 - Vertical integral of ozone (kg m**-2) -59 59 - Vertical integral of kinetic energy (J m**-2) -60 60 - Vertical integral of thermal energy (J m**-2) -61 61 - Vertical integral of potential+internal energy (J m**-2) -62 62 - Vertical integral of potential+internal+latent energy (J m**-2) -63 63 - Vertical integral of total energy (J m**-2) -64 64 - Vertical integral of energy conversion (J m**-2) -65 65 - Vertical integral of eastward mass flux (kg m**-1 s**-1) -66 66 - Vertical integral of northward mass flux (kg m**-1 s**-1) -67 67 - Vertical integral of eastward kinetic energy flux (J m**-2) -68 68 - Vertical integral of northward kinetic energy flux (J m**-2) -69 69 - Vertical integral of eastward heat flux (J m**-2) -70 70 - Vertical integral of northward heat flux (J m**-2) -71 71 - Vertical integral of eastward water vapour flux (kg m**-1 s**-1) -72 72 - Vertical integral of northward water vapour flux (kg m**-1 s**-1) -73 73 - Vertical integral of eastward geopotential flux (J m**-2) -74 74 - Vertical integral of northward geopotential flux (J m**-2) -75 75 - Vertical integral of eastward total energy flux (J m**-2) -76 76 - Vertical integral of northward total energy flux (J m**-2) -77 77 - Vertical integral of eastward ozone flux (kg m**-1 s**-1) -78 78 - Vertical integral of northward ozone flux (kg m**-1 s**-1) -79 79 - Vertical integral of divergence of cloud liquid water flux (kg m**-2 s**-1) -80 80 - Vertical integral of divergence of cloud frozen water flux (kg m**-2 s**-1) -81 81 - Vertical integral of divergence of mass flux (kg m**-2 s**-1) -82 82 - Vertical integral of divergence of kinetic energy flux (J m**-2) -83 83 - Vertical integral of divergence of thermal energy flux (J m**-2) -84 84 - Vertical integral of divergence of moisture flux (kg m**-2 s**-1) -85 85 - Vertical integral of divergence of geopotential flux (J m**-2) -86 86 - Vertical integral of divergence of total energy flux (J m**-2) -87 87 - Vertical integral of divergence of ozone flux (kg m**-2 s**-1) -88 88 - Vertical integral of eastward cloud liquid water flux (kg m**-1 s**-1) -89 89 - Vertical integral of northward cloud liquid water flux (kg m**-1 s**-1) -90 90 - Vertical integral of eastward cloud frozen water flux (kg m**-1 s**-1) -91 91 - Vertical integral of northward cloud frozen water flux (kg m**-1 s**-1) -92 92 - Vertical integral of mass tendency (kg m**-2 s**-1) -100 100 - Tendency of short wave radiation (K) -101 101 - Tendency of long wave radiation (K) -102 102 - Tendency of clear sky short wave radiation (K) -103 103 - Tendency of clear sky long wave radiation (K) -104 104 - Updraught mass flux (kg m**-2) -105 105 - Downdraught mass flux (kg m**-2) -106 106 - Updraught detrainment rate (kg m**-3) -107 107 - Downdraught detrainment rate (kg m**-3) -108 108 - Total precipitation flux (kg m**-2) -109 109 - Turbulent diffusion coefficient for heat (m**2) -110 110 - Tendency of temperature due to physics (K) -111 111 - Tendency of specific humidity due to physics (kg kg**-1) -112 112 - Tendency of u component due to physics (m s**-1) -113 113 - Tendency of v component due to physics (m s**-1) -114 114 UTENDD U-tendency from dynamics (m s**-1) -115 115 VTENDD V-tendency from dynamics (m s**-1) -116 116 TTENDD T-tendency from dynamics (K) -117 117 QTENDD q-tendency from dynamics (kg kg**-1) -118 118 TTENDR T-tendency from radiation (K) -119 119 UTENDTS U-tendency from turbulent diffusion + subgrid orography (m s**-1) -120 120 VTENDTS V-tendency from turbulent diffusion + subgrid orography (m s**-1) -121 121 TTENDTS T-tendency from turbulent diffusion + subgrid orography (K) -122 122 QTENDT q-tendency from turbulent diffusion (kg kg**-1) -123 123 UTENDS U-tendency from subgrid orography (m s**-1) -124 124 VTENDS V-tendency from subgrid orography (m s**-1) -125 125 TTENDS T-tendency from subgrid orography (K) -126 126 UTENDCDS U-tendency from convection (deep+shallow) (m s**-1) -127 127 VTENDCDS V-tendency from convection (deep+shallow) (m s**-1) -128 128 TTENDCDS T-tendency from convection (deep+shallow) (K) -129 129 QTENDCDS q-tendency from convection (deep+shallow) (kg kg**-1) -130 130 LPC Liquid Precipitation flux from convection (kg m**-2) -131 131 IPC Ice Precipitation flux from convection (kg m**-2) -132 132 TTENDCS T-tendency from cloud scheme (K) -133 133 QTENDCS q-tendency from cloud scheme (kg kg**-1) -134 134 QLTENDCS ql-tendency from cloud scheme (kg kg**-1) -135 135 QITENDCS qi-tendency from cloud scheme (kg kg**-1) -136 136 LPCS Liquid Precip flux from cloud scheme (stratiform) (kg m**-2) -137 137 IPCS Ice Precip flux from cloud scheme (stratiform) (kg m**-2) -138 138 UTENDCS U-tendency from shallow convection (m s**-1) -139 139 VTENDCS V-tendency from shallow convection (m s**-1) -140 140 TTENDSC T-tendency from shallow convection (K) -141 141 QTENDSC q-tendency from shallow convection (kg kg**-1) -206 206 - Variance of geopotential (m**4 s**-4) -207 207 - Covariance of geopotential/temperature (m**2 K s**-2) -208 208 - Variance of temperature (K**2) -209 209 - Covariance of geopotential/specific humidity (m**2 s**-2) -210 210 - Covariance of temperature/specific humidity (K) -211 211 - Variance of specific humidity -212 212 - Covariance of u component/geopotential (m**3 s**-3) -213 213 - Covariance of u component/temperature (m s**-1 K) -214 214 - Covariance of u component/specific humidity (m s**-1) -215 215 - Variance of u component (m**2 s**-2) -216 216 - Covariance of v component/geopotential (m**3 s**-3) -217 217 - Covariance of v component/temperature (m s**-1 K) -218 218 - Covariance of v component/specific humidity (m s**-1) -219 219 - Covariance of v component/u component (m**2 s**-2) -220 220 - Variance of v component (m**2 s**-2) -221 221 - Covariance of omega/geopotential (m**2 Pa s**-3) -222 222 - Covariance of omega/temperature (Pa s**-1 K) -223 223 - Covariance of omega/specific humidity (Pa s**-1) -224 224 - Covariance of omega/u component (m Pa s**-2) -225 225 - Covariance of omega/v component (m Pa s**-2) -226 226 - Variance of omega (Pa**2 s**-2) -227 227 - Variance of surface pressure (Pa**2) -229 229 - Variance of relative humidity (dimensionless) -230 230 - Covariance of u component/ozone (m s**-1) -231 231 - Covariance of v component/ozone (m s**-1) -232 232 - Covariance of omega/ozone (Pa s**-1) -233 233 - Variance of ozone (dimensionless) -255 255 - Indicates a missing value +45 wvf Water vapour flux (kg m**-1 s**-1) +51 ~ Surface geopotential (m**2 s**-2) +52 sp Surface pressure (Pa) +53 vima Vertical integral of mass of atmosphere (kg m**-2) +54 vit Vertical integral of temperature (K kg m**-2) +55 viwv Vertical integral of water vapour (kg m**-2) +56 vilw Vertical integral of cloud liquid water (kg m**-2) +57 viiw Vertical integral of cloud frozen water (kg m**-2) +58 vioz Vertical integral of ozone (kg m**-2) +59 vike Vertical integral of kinetic energy (J m**-2) +60 vithe Vertical integral of thermal energy (J m**-2) +61 vipie Vertical integral of potential+internal energy (J m**-2) +62 vipile Vertical integral of potential+internal+latent energy (J m**-2) +63 vitoe Vertical integral of total energy (J m**-2) +64 viec Vertical integral of energy conversion (W m**-2) +65 vimae Vertical integral of eastward mass flux (kg m**-1 s**-1) +66 viman Vertical integral of northward mass flux (kg m**-1 s**-1) +67 vikee Vertical integral of eastward kinetic energy flux (W m**-1) +68 viken Vertical integral of northward kinetic energy flux (W m**-1) +69 vithee Vertical integral of eastward heat flux (W m**-1) +70 vithen Vertical integral of northward heat flux (W m**-1) +71 viwve Vertical integral of eastward water vapour flux (kg m**-1 s**-1) +72 viwvn Vertical integral of northward water vapour flux (kg m**-1 s**-1) +73 vige Vertical integral of eastward geopotential flux (W m**-1) +74 vign Vertical integral of northward geopotential flux (W m**-1) +75 vitoee Vertical integral of eastward total energy flux (W m**-1) +76 vitoen Vertical integral of northward total energy flux (W m**-1) +77 vioze Vertical integral of eastward ozone flux (kg m**-1 s**-1) +78 viozn Vertical integral of northward ozone flux (kg m**-1 s**-1) +79 vilwd Vertical integral of divergence of cloud liquid water flux (kg m**-2 s**-1) +80 viiwd Vertical integral of divergence of cloud frozen water flux (kg m**-2 s**-1) +81 vimad Vertical integral of divergence of mass flux (kg m**-2 s**-1) +82 viked Vertical integral of divergence of kinetic energy flux (W m**-2) +83 vithed Vertical integral of divergence of thermal energy flux (W m**-2) +84 viwvd Vertical integral of divergence of moisture flux (kg m**-2 s**-1) +85 vigd Vertical integral of divergence of geopotential flux (W m**-2) +86 vitoed Vertical integral of divergence of total energy flux (W m**-2) +87 viozd Vertical integral of divergence of ozone flux (kg m**-2 s**-1) +88 vilwe Vertical integral of eastward cloud liquid water flux (kg m**-1 s**-1) +89 vilwn Vertical integral of northward cloud liquid water flux (kg m**-1 s**-1) +90 viiwe Vertical integral of eastward cloud frozen water flux (kg m**-1 s**-1) +91 viiwn Vertical integral of northward cloud frozen water flux (kg m**-1 s**-1) +92 vimat Vertical integral of mass tendency (kg m**-2 s**-1) +100 srta Tendency of short wave radiation (K) +101 trta Tendency of long wave radiation (K) +102 srtca Tendency of clear sky short wave radiation (K) +103 trtca Tendency of clear sky long wave radiation (K) +104 umfa Updraught mass flux (kg m**-2) +105 dmfa Downdraught mass flux (kg m**-2) +106 udra Updraught detrainment rate (kg m**-3) +107 ddra Downdraught detrainment rate (kg m**-3) +108 tpfa Total precipitation flux (kg m**-2) +109 tdcha Turbulent diffusion coefficient for heat (m**2) +110 ttpha Tendency of temperature due to physics (K) +111 qtpha Tendency of specific humidity due to physics (kg kg**-1) +112 utpha Tendency of u component due to physics (m s**-1) +113 vtpha Tendency of v component due to physics (m s**-1) +114 utendd U-tendency from dynamics (m s**-1) +115 vtendd V-tendency from dynamics (m s**-1) +116 ttendd T-tendency from dynamics (K) +117 qtendd q-tendency from dynamics (kg kg**-1) +118 ttendr T-tendency from radiation (K) +119 utendts U-tendency from turbulent diffusion + subgrid orography (m s**-1) +120 vtendts V-tendency from turbulent diffusion + subgrid orography (m s**-1) +121 ttendts T-tendency from turbulent diffusion + subgrid orography (K) +122 qtendt q-tendency from turbulent diffusion (kg kg**-1) +123 utends U-tendency from subgrid orography (m s**-1) +124 vtends V-tendency from subgrid orography (m s**-1) +125 ttends T-tendency from subgrid orography (K) +126 utendcds U-tendency from convection (deep+shallow) (m s**-1) +127 vtendcds V-tendency from convection (deep+shallow) (m s**-1) +128 ttendcds T-tendency from convection (deep+shallow) (K) +129 qtendcds q-tendency from convection (deep+shallow) (kg kg**-1) +130 lpc Liquid Precipitation flux from convection (kg m**-2) +131 ipc Ice Precipitation flux from convection (kg m**-2) +132 ttendcs T-tendency from cloud scheme (K) +133 qtendcs q-tendency from cloud scheme (kg kg**-1) +134 qltendcs ql-tendency from cloud scheme (kg kg**-1) +135 qitendcs qi-tendency from cloud scheme (kg kg**-1) +136 lpcs Liquid Precip flux from cloud scheme (stratiform) (kg m**-2) +137 ipcs Ice Precip flux from cloud scheme (stratiform) (kg m**-2) +138 utendcs U-tendency from shallow convection (m s**-1) +139 vtendcs V-tendency from shallow convection (m s**-1) +140 ttendsc T-tendency from shallow convection (K) +141 qtendsc q-tendency from shallow convection (kg kg**-1) +206 ~ Variance of geopotential (m**4 s**-4) +207 ~ Covariance of geopotential/temperature (m**2 K s**-2) +208 ~ Variance of temperature (K**2) +209 ~ Covariance of geopotential/specific humidity (m**2 s**-2) +210 ~ Covariance of temperature/specific humidity (K) +211 ~ Variance of specific humidity (~) +212 ~ Covariance of u component/geopotential (m**3 s**-3) +213 ~ Covariance of u component/temperature (m s**-1 K) +214 ~ Covariance of u component/specific humidity (m s**-1) +215 ~ Variance of u component (m**2 s**-2) +216 ~ Covariance of v component/geopotential (m**3 s**-3) +217 ~ Covariance of v component/temperature (m s**-1 K) +218 ~ Covariance of v component/specific humidity (m s**-1) +219 ~ Covariance of v component/u component (m**2 s**-2) +220 ~ Variance of v component (m**2 s**-2) +221 ~ Covariance of omega/geopotential (m**2 Pa s**-3) +222 ~ Covariance of omega/temperature (Pa s**-1 K) +223 ~ Covariance of omega/specific humidity (Pa s**-1) +224 ~ Covariance of omega/u component (m Pa s**-2) +225 ~ Covariance of omega/v component (m Pa s**-2) +226 ~ Variance of omega (Pa**2 s**-2) +227 ~ Variance of surface pressure (Pa**2) +229 ~ Variance of relative humidity (dimensionless) +230 ~ Covariance of u component/ozone (m s**-1) +231 ~ Covariance of v component/ozone (m s**-1) +232 ~ Covariance of omega/ozone (Pa s**-1) +233 ~ Variance of ozone (dimensionless) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.170.table b/definitions/grib1/2.98.170.table index cd3dc7021..00fe9caeb 100644 --- a/definitions/grib1/2.98.170.table +++ b/definitions/grib1/2.98.170.table @@ -1,36 +1,36 @@ # This file was automatically generated by ./param.pl -1 1 SPI03 Standardised precipitation index valid in the last 3 months (dimensionless) -2 2 SPI06 Standardised precipitation index valid in the last 6 months (dimensionless) -3 3 SPI12 Standardised precipitation index valid in the last 12 months (dimensionless) -129 129 Z Geopotential (m**2 s**-2) -130 130 T Temperature (K) -131 131 U U component of wind (m s**-1) -132 132 V V component of wind (m s**-1) -133 133 Q Specific humidity (kg kg**-1) -135 135 W Vertical velocity (Pa s**-1) -138 138 VO Vorticity (relative) (s**-1) -139 139 STL1 Soil temperature level 1 (K) -140 140 SWL1 Soil wetness level 1 (m of water equivalent) -141 141 SD Snow depth (m of water equivalent) -142 142 LSP Large-scale precipitation (m) -143 143 CP Convective precipitation (m) -146 146 SSHF Surface sensible heat flux (J m**-2) -147 147 SLHF Surface latent heat flux (J m**-2) -149 149 TSW Total soil moisture (m) -151 151 MSL Mean sea level pressure (Pa) -155 155 D Divergence (s**-1) -157 157 R Relative humidity (%) -164 164 TCC Total cloud cover ((0 - 1)) -171 171 SWL2 Soil wetness level 2 (m) -176 176 SSR Surface net solar radiation (J m**-2) -177 177 STR Surface net thermal radiation (J m**-2) -179 179 TTR Top net thermal radiation (J m**-2) -180 180 EWSS Eastward turbulent surface stress (N m**-2 s) -181 181 NSSS Northward turbulent surface stress (N m**-2 s) -182 182 E Evaporation (m of water equivalent) -184 184 SWL3 Soil wetness level 3 (m of water equivalent) -185 185 CCC Convective cloud cover ((0 - 1)) -201 201 MX2T Maximum temperature at 2 metres since previous post-processing (K) -202 202 MN2T Minimum temperature at 2 metres since previous post-processing (K) -228 228 TP Total precipitation (m) -255 255 - Indicates a missing value +1 spi03 Standardised precipitation index valid in the last 3 months (dimensionless) +2 spi06 Standardised precipitation index valid in the last 6 months (dimensionless) +3 spi12 Standardised precipitation index valid in the last 12 months (dimensionless) +129 z Geopotential (m**2 s**-2) +130 t Temperature (K) +131 u U component of wind (m s**-1) +132 v V component of wind (m s**-1) +133 q Specific humidity (kg kg**-1) +135 w Vertical velocity (Pa s**-1) +138 vo Vorticity (relative) (s**-1) +139 stl1 Soil temperature level 1 (K) +140 swl1 Soil wetness level 1 (m of water equivalent) +141 sd Snow depth (m of water equivalent) +142 lsp Large-scale precipitation (m) +143 cp Convective precipitation (m) +146 sshf Surface sensible heat flux (J m**-2) +147 slhf Surface latent heat flux (J m**-2) +149 tsw Total soil moisture (m) +151 msl Mean sea level pressure (Pa) +155 d Divergence (s**-1) +157 r Relative humidity (%) +164 tcc Total cloud cover ((0 - 1)) +171 swl2 Soil wetness level 2 (m) +176 ssr Surface net solar radiation (J m**-2) +177 str Surface net thermal radiation (J m**-2) +179 ttr Top net thermal radiation (J m**-2) +180 ewss Eastward turbulent surface stress (N m**-2 s) +181 nsss Northward turbulent surface stress (N m**-2 s) +182 e Evaporation (m of water equivalent) +184 swl3 Soil wetness level 3 (m of water equivalent) +185 ccc Convective cloud cover ((0 - 1)) +201 mx2t Maximum temperature at 2 metres since previous post-processing (K) +202 mn2t Minimum temperature at 2 metres since previous post-processing (K) +228 tp Total precipitation (m) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.171.table b/definitions/grib1/2.98.171.table index 39cf33bfe..9baea3f48 100644 --- a/definitions/grib1/2.98.171.table +++ b/definitions/grib1/2.98.171.table @@ -1,187 +1,187 @@ # This file was automatically generated by ./param.pl -1 1 - Stream function anomaly (m**2 s**-1) -2 2 - Velocity potential anomaly (m**2 s**-1) -3 3 - Potential temperature anomaly (K) -4 4 - Equivalent potential temperature anomaly (K) -5 5 - Saturated equivalent potential temperature anomaly (K) -11 11 - U component of divergent wind anomaly (m s**-1) -12 12 - V component of divergent wind anomaly (m s**-1) -13 13 - U component of rotational wind anomaly (m s**-1) -14 14 - V component of rotational wind anomaly (m s**-1) -21 21 - Unbalanced component of temperature anomaly (K) -22 22 - Unbalanced component of logarithm of surface pressure anomaly -23 23 - Unbalanced component of divergence anomaly (s**-1) -24 24 - Lake mix-layer temperature anomaly (K) -25 25 - Lake ice depth anomaly (m) -26 26 - Lake cover anomaly (0 - 1) -27 27 - Low vegetation cover anomaly (0 - 1) -28 28 - High vegetation cover anomaly (0 - 1) -29 29 - Type of low vegetation anomaly -30 30 - Type of high vegetation anomaly -31 31 - Sea-ice cover anomaly (0 - 1) -32 32 - Snow albedo anomaly (0 - 1) -33 33 - Snow density anomaly (kg m**-3) -34 34 - Sea surface temperature anomaly (K) -35 35 - Ice surface temperature anomaly layer 1 (K) -36 36 - Ice surface temperature anomaly layer 2 (K) -37 37 - Ice surface temperature anomaly layer 3 (K) -38 38 - Ice surface temperature anomaly layer 4 (K) -39 39 - Volumetric soil water anomaly layer 1 (m**3 m**-3) -40 40 - Volumetric soil water anomaly layer 2 (m**3 m**-3) -41 41 - Volumetric soil water anomaly layer 3 (m**3 m**-3) -42 42 - Volumetric soil water anomaly layer 4 (m**3 m**-3) -43 43 - Soil type anomaly -44 44 - Snow evaporation anomaly m of water -45 45 - Snowmelt anomaly m of water -46 46 - Solar duration anomaly s -47 47 - Direct solar radiation anomaly (w m**-2) -48 48 - Magnitude of surface stress anomaly (N m**-2 s) -49 49 - 10 metre wind gust anomaly (m s**-1) -50 50 - Large-scale precipitation fraction anomaly (s) -51 51 - Maximum 2 metre temperature in the last 24 hours anomaly (K) -52 52 - Minimum 2 metre temperature in the last 24 hours anomaly (K) -53 53 - Montgomery potential anomaly (m**2 s**-2) -54 54 - Pressure anomaly (Pa) -55 55 - Mean 2 metre temperature in the last 24 hours anomaly (K) -56 56 - Mean 2 metre dewpoint temperature in the last 24 hours anomaly (K) -57 57 - Downward UV radiation at the surface anomaly (w m**-2) -58 58 - Photosynthetically active radiation at the surface anomaly (w m**-2) -59 59 - Convective available potential energy anomaly (J kg**-1) -60 60 - Potential vorticity anomaly (K m**2 kg**-1 s**-1) -61 61 - Total precipitation from observations anomaly (Millimetres*100 + number of stations) -62 62 - Observation count anomaly -63 63 - Start time for skin temperature difference anomaly (s) -64 64 - Finish time for skin temperature difference anomaly (s) -65 65 - Skin temperature difference anomaly (K) -78 78 - Total column liquid water anomaly (kg m**-2) -79 79 - Total column ice water anomaly (kg m**-2) -125 125 - Vertically integrated total energy anomaly (J m**-2) -126 126 - Generic parameter for sensitive area prediction Various -127 127 - Atmospheric tide anomaly -128 128 - Budget values anomaly -129 129 - Geopotential anomaly (m**2 s**-2) -130 130 - Temperature anomaly (K) -131 131 - U component of wind anomaly (m s**-1) -132 132 - V component of wind anomaly (m s**-1) -133 133 - Specific humidity anomaly (kg kg**-1) -134 134 - Surface pressure anomaly (Pa) -135 135 - Vertical velocity (pressure) anomaly (Pa s**-1) -136 136 - Total column water anomaly (kg m**-2) -137 137 - Total column water vapour anomaly (kg m**-2) -138 138 - Relative vorticity anomaly (s**-1) -139 139 - Soil temperature anomaly level 1 (K) -140 140 - Soil wetness anomaly level 1 (m of water) -141 141 - Snow depth anomaly m of water equivalent -142 142 - Stratiform precipitation (Large-scale precipitation) anomaly (m) -143 143 - Convective precipitation anomaly (m) -144 144 - Snowfall (convective + stratiform) anomaly m of water equivalent -145 145 - Boundary layer dissipation anomaly (W m**-2 s) -146 146 - Surface sensible heat flux anomaly (W m**-2 s) -147 147 - Surface latent heat flux anomaly (W m**-2 s) -148 148 - Charnock anomaly -149 149 - Surface net radiation anomaly (W m**-2 s) -150 150 - Top net radiation anomaly -151 151 - Mean sea level pressure anomaly (Pa) -152 152 - Logarithm of surface pressure anomaly -153 153 - Short-wave heating rate anomaly (K) -154 154 - Long-wave heating rate anomaly (K) -155 155 - Relative divergence anomaly (s**-1) -156 156 - Height anomaly (m) -157 157 - Relative humidity anomaly (%) -158 158 - Tendency of surface pressure anomaly (Pa s**-1) -159 159 - Boundary layer height anomaly (m) -160 160 - Standard deviation of orography anomaly -161 161 - Anisotropy of sub-gridscale orography anomaly -162 162 - Angle of sub-gridscale orography anomaly -163 163 - Slope of sub-gridscale orography anomaly -164 164 - Total cloud cover anomaly (0 - 1) -165 165 - 10 metre U wind component anomaly (m s**-1) -166 166 - 10 metre V wind component anomaly (m s**-1) -167 167 - 2 metre temperature anomaly (K) -168 168 - 2 metre dewpoint temperature anomaly (K) -169 169 - Surface solar radiation downwards anomaly (W m**-2 s) -170 170 - Soil temperature anomaly level 2 (K) -171 171 - Soil wetness anomaly level 2 m of water -172 172 - Land-sea mask (0 - 1) -173 173 - Surface roughness anomaly (m) -174 174 - Albedo anomaly (0 - 1) -175 175 - Surface thermal radiation downwards anomaly (W m**-2 s) -176 176 - Surface solar radiation anomaly (W m**-2 s) -177 177 - Surface thermal radiation anomaly (W m**-2 s) -178 178 - Top solar radiation anomaly (W m**-2 s) -179 179 - Top thermal radiation anomaly (W m**-2 s) -180 180 - East-West surface stress anomaly (N m**-2 s) -181 181 - North-South surface stress anomaly (N m**-2 s) -182 182 - Evaporation anomaly (m of water anomaly) -183 183 - Soil temperature anomaly level 3 (K) -184 184 - Soil wetness anomaly level 3 m of water -185 185 - Convective cloud cover anomaly (0 - 1) -186 186 - Low cloud cover anomaly (0 - 1) -187 187 - Medium cloud cover anomaly (0 - 1) -188 188 - High cloud cover anomaly (0 - 1) -189 189 - Sunshine duration anomaly (s) -190 190 - East-West component of sub-gridscale orographic variance anomaly (m**2) -191 191 - North-South component of sub-gridscale orographic variance anomaly (m**2) -192 192 - North-West/South-East component of sub-gridscale orographic variance anomaly (m**2) -193 193 - North-East/South-West component of sub-gridscale orographic variance anomaly (m**2) -194 194 - Brightness temperature anomaly (K) -195 195 - Longitudinal component of gravity wave stress anomaly (N m**-2 s) -196 196 - Meridional component of gravity wave stress anomaly (N m**-2 s) -197 197 - Gravity wave dissipation anomaly (W m**-2 s) -198 198 - Skin reservoir content anomaly (m of water) -199 199 - Vegetation fraction anomaly (0 - 1) -200 200 - Variance of sub-gridscale orography anomaly (m**2) -201 201 - Maximum temperature at 2 metres anomaly (K) -202 202 - Minimum temperature at 2 metres anomaly (K) -203 203 - Ozone mass mixing ratio (kg kg**-1) -204 204 - Precipitation analysis weights -205 205 - Runoff (m) -206 206 - Total column ozone (kg m**-2) -207 207 10SIA 10 metre wind speed (m s**-1) -208 208 - Top net solar radiation, clear sky (W m**-2 s) -209 209 - Top net thermal radiation, clear sky (W m**-2 s) -210 210 - Surface net solar radiation, clear sky (W m**-2 s) -211 211 - Surface net thermal radiation, clear sky (W m**-2 s) -212 212 - Solar insolation (W m**-2) -214 214 - Diabatic heating by radiation (K) -215 215 - Diabatic heating by vertical diffusion (K) -216 216 - Diabatic heating by cumulus convection (K) -217 217 - Diabatic heating by large-scale condensation (K) -218 218 - Vertical diffusion of zonal wind (m s**-1) -219 219 - Vertical diffusion of meridional wind (m s**-1) -220 220 - East-West gravity wave drag tendency (m s**-1) -221 221 - North-South gravity wave drag tendency (m s**-1) -222 222 - Convective tendency of zonal wind (m s**-1) -223 223 - Convective tendency of meridional wind (m s**-1) -224 224 - Vertical diffusion of humidity anomaly (kg kg**-1) -225 225 - Humidity tendency by cumulus convection anomaly (kg kg**-1) -226 226 - Humidity tendency by large-scale condensation anomaly (kg kg**-1) -227 227 - Change from removal of negative humidity anomaly (kg kg**-1) -228 228 - Total precipitation anomaly (m) -229 229 - Instantaneous X surface stress anomaly (N m**-2) -230 230 - Instantaneous Y surface stress anomaly (N m**-2) -231 231 - Instantaneous surface heat flux anomaly (W m**-2) -232 232 - Instantaneous moisture flux anomaly (kg m**-2 s) -233 233 - Apparent surface humidity anomaly (kg kg**-1) -234 234 - Logarithm of surface roughness length for heat anomaly -235 235 - Skin temperature anomaly (K) -236 236 - Soil temperature level 4 anomaly (K) -237 237 - Soil wetness level 4 anomaly (m) -238 238 - Temperature of snow layer anomaly (K) -239 239 - Convective snowfall anomaly (m of water equivalent) -240 240 - Large scale snowfall anomaly (m of water equivalent) -241 241 - Accumulated cloud fraction tendency anomaly (-1 to 1) -242 242 - Accumulated liquid water tendency anomaly (-1 to 1) -243 243 - Forecast albedo anomaly (0 - 1) -244 244 - Forecast surface roughness anomaly (m) -245 245 - Forecast logarithm of surface roughness for heat anomaly -246 246 - Cloud liquid water content anomaly (kg kg**-1) -247 247 - Cloud ice water content anomaly (kg kg**-1) -248 248 - Cloud cover anomaly (0 - 1) -249 249 - Accumulated ice water tendency anomaly (-1 to 1) -250 250 - Ice age anomaly (0 - 1) -251 251 - Adiabatic tendency of temperature anomaly (K) -252 252 - Adiabatic tendency of humidity anomaly (kg kg**-1) -253 253 - Adiabatic tendency of zonal wind anomaly (m s**-1) -254 254 - Adiabatic tendency of meridional wind anomaly (m s**-1) -255 255 - Indicates a missing value +1 strfa Stream function anomaly (m**2 s**-1) +2 vpota Velocity potential anomaly (m**2 s**-1) +3 pta Potential temperature anomaly (K) +4 epta Equivalent potential temperature anomaly (K) +5 septa Saturated equivalent potential temperature anomaly (K) +11 udwa U component of divergent wind anomaly (m s**-1) +12 vdwa V component of divergent wind anomaly (m s**-1) +13 urwa U component of rotational wind anomaly (m s**-1) +14 vrwa V component of rotational wind anomaly (m s**-1) +21 uctpa Unbalanced component of temperature anomaly (K) +22 uclna Unbalanced component of logarithm of surface pressure anomaly (~) +23 ucdva Unbalanced component of divergence anomaly (s**-1) +24 lmlta Lake mix-layer temperature anomaly (K) +25 licda Lake ice depth anomaly (m) +26 cla Lake cover anomaly ((0 - 1)) +27 cvla Low vegetation cover anomaly ((0 - 1)) +28 cvha High vegetation cover anomaly ((0 - 1)) +29 tvla Type of low vegetation anomaly (~) +30 tvha Type of high vegetation anomaly (~) +31 sica Sea-ice cover anomaly ((0 - 1)) +32 asna Snow albedo anomaly ((0 - 1)) +33 rsna Snow density anomaly (kg m**-3) +34 ssta Sea surface temperature anomaly (K) +35 istal1 Ice surface temperature anomaly layer 1 (K) +36 istal2 Ice surface temperature anomaly layer 2 (K) +37 istal3 Ice surface temperature anomaly layer 3 (K) +38 istal4 Ice surface temperature anomaly layer 4 (K) +39 swval1 Volumetric soil water anomaly layer 1 (m**3 m**-3) +40 swval2 Volumetric soil water anomaly layer 2 (m**3 m**-3) +41 swval3 Volumetric soil water anomaly layer 3 (m**3 m**-3) +42 swval4 Volumetric soil water anomaly layer 4 (m**3 m**-3) +43 slta Soil type anomaly (~) +44 esa Snow evaporation anomaly (kg m**-2) +45 smlta Snowmelt anomaly (kg m**-2) +46 sdura Solar duration anomaly (s) +47 dsrpa Direct solar radiation anomaly (J m**-2) +48 magssa Magnitude of turbulent surface stress anomaly (N m**-2 s) +49 10fga 10 metre wind gust anomaly (m s**-1) +50 lspfa Large-scale precipitation fraction anomaly (s) +51 mx2t24a Maximum 2 metre temperature in the last 24 hours anomaly (K) +52 mn2t24a Minimum 2 metre temperature in the last 24 hours anomaly (K) +53 monta Montgomery potential anomaly (m**2 s**-2) +54 pa Pressure anomaly (Pa) +55 mean2t24a Mean 2 metre temperature in the last 24 hours anomaly (K) +56 mn2d24a Mean 2 metre dewpoint temperature in the last 24 hours anomaly (K) +57 uvba Downward UV radiation at the surface anomaly (J m**-2) +58 para Photosynthetically active radiation at the surface anomaly (J m**-2) +59 capea Convective available potential energy anomaly (J kg**-1) +60 pva Potential vorticity anomaly (K m**2 kg**-1 s**-1) +61 tpoa Total precipitation from observations anomaly (Millimetres*100 + number of stations) +62 obcta Observation count anomaly (~) +63 stsktda Start time for skin temperature difference anomaly (s) +64 ftsktda Finish time for skin temperature difference anomaly (s) +65 sktda Skin temperature difference anomaly (K) +78 tclwa Total column liquid water anomaly (kg m**-2) +79 tciwa Total column ice water anomaly (kg m**-2) +125 vitea Vertically integrated total energy anomaly (J m**-2) +126 ~ Generic parameter for sensitive area prediction (Various) +127 ata Atmospheric tide anomaly (~) +128 bva Budget values anomaly (~) +129 za Geopotential anomaly (m**2 s**-2) +130 ta Temperature anomaly (K) +131 ua U component of wind anomaly (m s**-1) +132 va V component of wind anomaly (m s**-1) +133 qa Specific humidity anomaly (kg kg**-1) +134 spa Surface pressure anomaly (Pa) +135 wa Vertical velocity (pressure) anomaly (Pa s**-1) +136 tcwa Total column water anomaly (kg m**-2) +137 tcwva Total column water vapour anomaly (kg m**-2) +138 voa Relative vorticity anomaly (s**-1) +139 stal1 Soil temperature anomaly level 1 (K) +140 swal1 Soil wetness anomaly level 1 (kg m**-2) +141 sda Snow depth anomaly (m of water equivalent) +142 lspa Stratiform precipitation (Large-scale precipitation) anomaly (m) +143 cpa Convective precipitation anomaly (m) +144 sfa Snowfall (convective + stratiform) anomaly (m of water equivalent) +145 blda Boundary layer dissipation anomaly (J m**-2) +146 sshfa Surface sensible heat flux anomaly (J m**-2) +147 slhfa Surface latent heat flux anomaly (J m**-2) +148 chnka Charnock anomaly (~) +149 snra Surface net radiation anomaly (J m**-2) +150 tnra Top net radiation anomaly (~) +151 msla Mean sea level pressure anomaly (Pa) +152 lspa Logarithm of surface pressure anomaly (~) +153 swhra Short-wave heating rate anomaly (K) +154 lwhra Long-wave heating rate anomaly (K) +155 da Relative divergence anomaly (s**-1) +156 gha Height anomaly (m) +157 ra Relative humidity anomaly (%) +158 tspa Tendency of surface pressure anomaly (Pa s**-1) +159 blha Boundary layer height anomaly (m) +160 sdora Standard deviation of orography anomaly (~) +161 isora Anisotropy of sub-gridscale orography anomaly (~) +162 anora Angle of sub-gridscale orography anomaly (radians) +163 slora Slope of sub-gridscale orography anomaly (~) +164 tcca Total cloud cover anomaly ((0 - 1)) +165 10ua 10 metre U wind component anomaly (m s**-1) +166 10va 10 metre V wind component anomaly (m s**-1) +167 2ta 2 metre temperature anomaly (K) +168 2da 2 metre dewpoint temperature anomaly (K) +169 ssrda Surface solar radiation downwards anomaly (J m**-2) +170 stal2 Soil temperature anomaly level 2 (K) +171 swal2 Soil wetness anomaly level 2 (kg m**-2) +172 lsm Land-sea mask ((0 - 1)) +173 sra Surface roughness anomaly (m) +174 ala Albedo anomaly ((0 - 1)) +175 strda Surface thermal radiation downwards anomaly (J m**-2) +176 ssra Surface net solar radiation anomaly (J m**-2) +177 stra Surface net thermal radiation anomaly (J m**-2) +178 tsra Top net solar radiation anomaly (J m**-2) +179 ttra Top net thermal radiation anomaly (J m**-2) +180 eqssa East-West surface stress anomaly (N m**-2 s) +181 nsssa North-South surface stress anomaly (N m**-2 s) +182 ea Evaporation anomaly (kg m**-2) +183 stal3 Soil temperature anomaly level 3 (K) +184 swal3 Soil wetness anomaly level 3 (kg m**-2) +185 ccca Convective cloud cover anomaly ((0 - 1)) +186 lcca Low cloud cover anomaly ((0 - 1)) +187 mcca Medium cloud cover anomaly ((0 - 1)) +188 hcca High cloud cover anomaly ((0 - 1)) +189 sunda Sunshine duration anomaly (s) +190 ewova East-West component of sub-gridscale orographic variance anomaly (m**2) +191 nsova North-South component of sub-gridscale orographic variance anomaly (m**2) +192 nwova North-West/South-East component of sub-gridscale orographic variance anomaly (m**2) +193 neova North-East/South-West component of sub-gridscale orographic variance anomaly (m**2) +194 btmpa Brightness temperature anomaly (K) +195 lgwsa Longitudinal component of gravity wave stress anomaly (N m**-2 s) +196 mgwsa Meridional component of gravity wave stress anomaly (N m**-2 s) +197 gwda Gravity wave dissipation anomaly (J m**-2) +198 srca Skin reservoir content anomaly (kg m**-2) +199 vfa Vegetation fraction anomaly ((0 - 1)) +200 vsoa Variance of sub-gridscale orography anomaly (m**2) +201 mx2ta Maximum temperature at 2 metres anomaly (K) +202 mn2ta Minimum temperature at 2 metres anomaly (K) +203 o3a Ozone mass mixing ratio anomaly (kg kg**-1) +204 pawa Precipitation analysis weights anomaly (~) +205 roa Runoff anomaly (m) +206 tco3a Total column ozone anomaly (kg m**-2) +207 10sia 10 metre wind speed anomaly (m s**-1) +208 tsrca Top net solar radiation clear sky anomaly (J m**-2) +209 ttrca Top net thermal radiation clear sky anomaly (J m**-2) +210 ssrca Surface net solar radiation clear sky anomaly (J m**-2) +211 strca Surface net thermal radiation, clear sky anomaly (J m**-2) +212 sia Solar insolation anomaly (J m**-2) +214 dhra Diabatic heating by radiation anomaly (K) +215 dhvda Diabatic heating by vertical diffusion anomaly (K) +216 dhcca Diabatic heating by cumulus convection anomaly (K) +217 dhlca Diabatic heating by large-scale condensation anomaly (K) +218 vdzwa Vertical diffusion of zonal wind anomaly (m s**-1) +219 vdmwa Vertical diffusion of meridional wind anomaly (m s**-1) +220 ewgda East-West gravity wave drag tendency anomaly (m s**-1) +221 nsgda North-South gravity wave drag tendency anomaly (m s**-1) +222 ctzwa Convective tendency of zonal wind anomaly (m s**-1) +223 ctmwa Convective tendency of meridional wind anomaly (m s**-1) +224 vdha Vertical diffusion of humidity anomaly (kg kg**-1) +225 htcca Humidity tendency by cumulus convection anomaly (kg kg**-1) +226 htlca Humidity tendency by large-scale condensation anomaly (kg kg**-1) +227 crnha Change from removal of negative humidity anomaly (kg kg**-1) +228 tpa Total precipitation anomaly (m) +229 iewsa Instantaneous X surface stress anomaly (N m**-2) +230 inssa Instantaneous Y surface stress anomaly (N m**-2) +231 ishfa Instantaneous surface heat flux anomaly (J m**-2) +232 iea Instantaneous moisture flux anomaly (kg m**-2 s) +233 asqa Apparent surface humidity anomaly (kg kg**-1) +234 lsrha Logarithm of surface roughness length for heat anomaly (~) +235 skta Skin temperature anomaly (K) +236 stal4 Soil temperature level 4 anomaly (K) +237 swal4 Soil wetness level 4 anomaly (m) +238 tsna Temperature of snow layer anomaly (K) +239 csfa Convective snowfall anomaly (m of water equivalent) +240 lsfa Large scale snowfall anomaly (m of water equivalent) +241 acfa Accumulated cloud fraction tendency anomaly ((-1 to 1)) +242 alwa Accumulated liquid water tendency anomaly ((-1 to 1)) +243 fala Forecast albedo anomaly ((0 - 1)) +244 fsra Forecast surface roughness anomaly (m) +245 flsra Forecast logarithm of surface roughness for heat anomaly (~) +246 clwca Cloud liquid water content anomaly (kg kg**-1) +247 ciwca Cloud ice water content anomaly (kg kg**-1) +248 cca Cloud cover anomaly ((0 - 1)) +249 aiwa Accumulated ice water tendency anomaly ((-1 to 1)) +250 iaa Ice age anomaly ((0 - 1)) +251 attea Adiabatic tendency of temperature anomaly (K) +252 athea Adiabatic tendency of humidity anomaly (kg kg**-1) +253 atzea Adiabatic tendency of zonal wind anomaly (m s**-1) +254 atmwa Adiabatic tendency of meridional wind anomaly (m s**-1) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.172.table b/definitions/grib1/2.98.172.table index 5d8f8653c..4fa9d5cb1 100644 --- a/definitions/grib1/2.98.172.table +++ b/definitions/grib1/2.98.172.table @@ -1,39 +1,39 @@ # This file was automatically generated by ./param.pl -8 8 MSROR Mean surface runoff rate (m of water equivalent s**-1) -9 9 MSSROR Mean sub-surface runoff rate (m of water equivalent s**-1) -44 44 ESRATE Snow evaporation (m of water s**-1) -45 45 - Snowmelt (m of water s**-1) -48 48 - Magnitude of turbulent surface stress (N m**-2) -50 50 MLSPFR Mean large-scale precipitation fraction (~) -142 142 MLSPRT Mean large-scale precipitation rate (m s**-1) -143 143 CPRATE Mean convective precipitation rate (m s**-1) -144 144 - Snowfall (convective + stratiform) (m of water equivalent s**-1) -145 145 BLDRATE Boundary layer dissipation (W m**-2) -146 146 MSSHFL Mean surface sensible heat flux (W m**-2) -147 147 MSLHFL Mean surface latent heat flux (W m**-2) -149 149 MSNRF Mean surface net radiation flux (W m**-2) -153 153 MSWHR Mean short-wave heating rate (K s**-1) -154 154 MLWHR Mean long-wave heating rate (K s**-1) -169 169 MSDSRF Mean surface downward solar radiation flux (W m**-2) -175 175 MSDTRF Mean surface downward thermal radiation flux (W m**-2) -176 176 MSNSRF Mean surface net solar radiation flux (W m**-2) -177 177 MSNTRF Mean surface net thermal radiation flux (W m**-2) -178 178 MTNSRF Mean top net solar radiation flux (W m**-2) -179 179 MTNTRF Mean top net thermal radiation flux (W m**-2) -180 180 EWSSRA East-West surface stress rate of accumulation (N m**-2) -181 181 NSSSRA North-South surface stress rate of accumulation (N m**-2) -182 182 ERATE Evaporation (m of water s**-1) -189 189 - Sunshine duration (~) -195 195 - Longitudinal component of gravity wave stress (N m**-2) -196 196 - Meridional component of gravity wave stress (N m**-2) -197 197 GWDRATE Gravity wave dissipation (W m**-2) -205 205 MRORT Mean runoff rate (m s**-1) -208 208 - Top net solar radiation, clear sky (W m**-2) -209 209 - Top net thermal radiation, clear sky (W m**-2) -210 210 - Surface net solar radiation, clear sky (W m**-2) -211 211 - Surface net thermal radiation, clear sky (W m**-2) -212 212 SOIRA Solar insolation rate of accumulation (W m**-2) -228 228 TPRATE Mean total precipitation rate (m s**-1) -239 239 - Convective snowfall (m of water equivalent s**-1) -240 240 - Large scale snowfall (m of water equivalent s**-1) -255 255 - Indicates a missing value +8 msror Mean surface runoff rate (m of water equivalent s**-1) +9 mssror Mean sub-surface runoff rate (m of water equivalent s**-1) +44 esrate Snow evaporation (m of water s**-1) +45 ~ Snowmelt (m of water s**-1) +48 ~ Magnitude of turbulent surface stress (N m**-2) +50 mlspfr Mean large-scale precipitation fraction (~) +142 mlsprt Mean large-scale precipitation rate (m s**-1) +143 cprate Mean convective precipitation rate (m s**-1) +144 mtsfr Mean total snowfall rate (m of water equivalent s**-1) +145 bldrate Boundary layer dissipation (W m**-2) +146 msshfl Mean surface sensible heat flux (W m**-2) +147 mslhfl Mean surface latent heat flux (W m**-2) +149 msnrf Mean surface net radiation flux (W m**-2) +153 mswhr Mean short-wave heating rate (K s**-1) +154 mlwhr Mean long-wave heating rate (K s**-1) +169 msdsrf Mean surface downward solar radiation flux (W m**-2) +175 msdtrf Mean surface downward thermal radiation flux (W m**-2) +176 msnsrf Mean surface net solar radiation flux (W m**-2) +177 msntrf Mean surface net thermal radiation flux (W m**-2) +178 mtnsrf Mean top net solar radiation flux (W m**-2) +179 mtntrf Mean top net thermal radiation flux (W m**-2) +180 ewssra East-West surface stress rate of accumulation (N m**-2) +181 nsssra North-South surface stress rate of accumulation (N m**-2) +182 erate Evaporation (m of water s**-1) +189 msdr Mean sunshine duration rate (s s**-1) +195 ~ Longitudinal component of gravity wave stress (N m**-2) +196 ~ Meridional component of gravity wave stress (N m**-2) +197 gwdrate Gravity wave dissipation (W m**-2) +205 mrort Mean runoff rate (m s**-1) +208 ~ Top net solar radiation, clear sky (W m**-2) +209 ~ Top net thermal radiation, clear sky (W m**-2) +210 ~ Surface net solar radiation, clear sky (W m**-2) +211 ~ Surface net thermal radiation, clear sky (W m**-2) +212 soira Solar insolation rate of accumulation (W m**-2) +228 tprate Mean total precipitation rate (m s**-1) +239 ~ Convective snowfall (m of water equivalent s**-1) +240 ~ Large scale snowfall (m of water equivalent s**-1) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.173.table b/definitions/grib1/2.98.173.table index e16e9a700..6b9dbd79c 100644 --- a/definitions/grib1/2.98.173.table +++ b/definitions/grib1/2.98.173.table @@ -1,39 +1,39 @@ # This file was automatically generated by ./param.pl -8 8 MSRORA Mean surface runoff rate anomaly (m of water equivalent s**-1) -9 9 MSSRORA Mean sub-surface runoff rate anomaly (m of water equivalent s**-1) -44 44 - Snow evaporation anomaly (m of water s**-1) -45 45 - Snowmelt anomaly (m of water s**-1) -48 48 - Magnitude of turbulent surface stress anomaly (N m**-2) -50 50 - Large-scale precipitation fraction anomaly (~) -142 142 LSPARA Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation (m s**-1) -143 143 MCPRA Mean convective precipitation rate anomaly (m s**-1) -144 144 SFARA Snowfall (convective + stratiform) anomalous rate of accumulation (m of water equivalent s**-1) -145 145 - Boundary layer dissipation anomaly (J m**-2) -146 146 SSHFARA Surface sensible heat flux anomalous rate of accumulation (J m**-2) -147 147 SLHFARA Surface latent heat flux anomalous rate of accumulation (J m**-2) -149 149 - Surface net radiation anomaly (J m**-2) -153 153 - Short-wave heating rate anomaly (K s**-1) -154 154 - Long-wave heating rate anomaly (K s**-1) -169 169 SSRDARA Surface solar radiation downwards anomalous rate of accumulation (J m**-2) -175 175 STRDARA Surface thermal radiation downwards anomalous rate of accumulation (J m**-2) -176 176 SSRARA Surface solar radiation anomalous rate of accumulation (J m**-2) -177 177 STRARA Surface thermal radiation anomalous rate of accumulation (J m**-2) -178 178 TSRARA Top solar radiation anomalous rate of accumulation (J m**-2) -179 179 TTRARA Top thermal radiation anomalous rate of accumulation (J m**-2) -180 180 EWSSARA East-West surface stress anomalous rate of accumulation (N m**-2) -181 181 NSSSARA North-South surface stress anomalous rate of accumulation (N m**-2) -182 182 EVARA Evaporation anomalous rate of accumulation (m of water s**-1) -189 189 SUNDARA Sunshine duration anomalous rate of accumulation (dimensionless) -195 195 - Longitudinal component of gravity wave stress anomaly (N m**-2) -196 196 - Meridional component of gravity wave stress anomaly (N m**-2) -197 197 - Gravity wave dissipation anomaly (J m**-2) -205 205 ROARA Runoff anomalous rate of accumulation (m s**-1) -208 208 - Top net solar radiation, clear sky anomaly (J m**-2) -209 209 - Top net thermal radiation, clear sky anomaly (J m**-2) -210 210 - Surface net solar radiation, clear sky anomaly (J m**-2) -211 211 - Surface net thermal radiation, clear sky anomaly (J m**-2) -212 212 SOIARA Solar insolation anomalous rate of accumulation (W m**-2 s**-1) -228 228 TPARA Total precipitation anomalous rate of accumulation (m s**-1) -239 239 - Convective snowfall anomaly (m of water equivalent s**-1) -240 240 - Large scale snowfall anomaly (m of water equivalent s**-1) -255 255 - Indicates a missing value +8 msrora Mean surface runoff rate anomaly (m of water equivalent s**-1) +9 mssrora Mean sub-surface runoff rate anomaly (m of water equivalent s**-1) +44 ~ Snow evaporation anomaly (m of water s**-1) +45 ~ Snowmelt anomaly (m of water s**-1) +48 ~ Magnitude of turbulent surface stress anomaly (N m**-2) +50 ~ Large-scale precipitation fraction anomaly (~) +142 lspara Stratiform precipitation (Large-scale precipitation) anomalous rate of accumulation (m s**-1) +143 mcpra Mean convective precipitation rate anomaly (m s**-1) +144 sfara Snowfall (convective + stratiform) anomalous rate of accumulation (m of water equivalent s**-1) +145 ~ Boundary layer dissipation anomaly (J m**-2) +146 sshfara Surface sensible heat flux anomalous rate of accumulation (J m**-2) +147 slhfara Surface latent heat flux anomalous rate of accumulation (J m**-2) +149 ~ Surface net radiation anomaly (J m**-2) +153 ~ Short-wave heating rate anomaly (K s**-1) +154 ~ Long-wave heating rate anomaly (K s**-1) +169 ssrdara Surface solar radiation downwards anomalous rate of accumulation (J m**-2) +175 strdara Surface thermal radiation downwards anomalous rate of accumulation (J m**-2) +176 ssrara Surface solar radiation anomalous rate of accumulation (J m**-2) +177 strara Surface thermal radiation anomalous rate of accumulation (J m**-2) +178 tsrara Top solar radiation anomalous rate of accumulation (J m**-2) +179 ttrara Top thermal radiation anomalous rate of accumulation (J m**-2) +180 ewssara East-West surface stress anomalous rate of accumulation (N m**-2) +181 nsssara North-South surface stress anomalous rate of accumulation (N m**-2) +182 evara Evaporation anomalous rate of accumulation (m of water s**-1) +189 sundara Sunshine duration anomalous rate of accumulation (dimensionless) +195 ~ Longitudinal component of gravity wave stress anomaly (N m**-2) +196 ~ Meridional component of gravity wave stress anomaly (N m**-2) +197 ~ Gravity wave dissipation anomaly (J m**-2) +205 roara Runoff anomalous rate of accumulation (m s**-1) +208 ~ Top net solar radiation, clear sky anomaly (J m**-2) +209 ~ Top net thermal radiation, clear sky anomaly (J m**-2) +210 ~ Surface net solar radiation, clear sky anomaly (J m**-2) +211 ~ Surface net thermal radiation, clear sky anomaly (J m**-2) +212 soiara Solar insolation anomalous rate of accumulation (W m**-2 s**-1) +228 tpara Total precipitation anomalous rate of accumulation (m s**-1) +239 ~ Convective snowfall anomaly (m of water equivalent s**-1) +240 ~ Large scale snowfall anomaly (m of water equivalent s**-1) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.174.table b/definitions/grib1/2.98.174.table index 4cbeeb3d3..c37eb3ba1 100644 --- a/definitions/grib1/2.98.174.table +++ b/definitions/grib1/2.98.174.table @@ -1,56 +1,55 @@ # This file was automatically generated by ./param.pl -6 6 - Total soil moisture (m) -8 8 SRO Surface runoff (kg m**-2) -9 9 SSRO Sub-surface runoff (kg m**-2) -10 10 SSWCSDOWN Clear-sky (II) down surface sw flux (W m**-2) -13 13 SSWCSUP Clear-sky (II) up surface sw flux (W m**-2) -25 25 VIS15 Visibility at 1.5m (m) -31 31 - Fraction of sea-ice in sea (0 - 1) -34 34 - Open-sea surface temperature (K) -39 39 - Volumetric soil water layer 1 (m**3 m**-3) -40 40 - Volumetric soil water layer 2 (m**3 m**-3) -41 41 - Volumetric soil water layer 3 (m**3 m**-3) -42 42 - Volumetric soil water layer 4 (m**3 m**-3) -49 49 - 10 metre wind gust in the last 24 hours (m s**-1) -50 50 MN15T Minimum temperature at 1.5m since previous post-processing (K) -51 51 MX15T Maximum temperature at 1.5m since previous post-processing (K) -52 52 RHUM Relative humidity at 1.5m (kg kg**-1) -55 55 - 1.5m temperature - mean in the last 24 hours (K) -83 83 - Net primary productivity (kg C m**-2 s**-1) -85 85 - 10m U wind over land (m s**-1) -86 86 - 10m V wind over land (m s**-1) -87 87 - 1.5m temperature over land (K) -88 88 - 1.5m dewpoint temperature over land (K) -89 89 - Top incoming solar radiation (J m**-2) -90 90 - Top outgoing solar radiation (J m**-2) -94 94 - Mean sea surface temperature (K) -95 95 - 1.5m specific humidity (kg kg**-1) -96 96 - 2 metre specific humidity (kg kg**-1) -97 97 SIST Sea-ice Snow Thickness (m) -98 98 SIT Sea-ice thickness (m) -99 99 - Liquid water potential temperature (K) -110 110 - Ocean ice concentration (0 - 1) -111 111 - Ocean mean ice depth (m) -116 116 SWRSURF Short wave radiation flux at surface (J m**-2) -117 117 SWRTOP Short wave radiation flux at top of atmosphere (J m**-2) -137 137 TCWVAP Total column water vapour (kg m**-2) -139 139 - Soil temperature layer 1 (K) -142 142 LSRRATE Large scale rainfall rate (kg m**-2 s**-1) -143 143 CRFRATE Convective rainfall rate (kg m**-2 s**-1) -164 164 - Average potential temperature in upper 293.4m (degrees C) -167 167 - 1.5m temperature (K) -168 168 - 1.5m dewpoint temperature (K) -170 170 - Soil temperature layer 2 (K) -172 172 LSM Land-sea mask (0 - 1) -175 175 - Average salinity in upper 293.4m (psu) -183 183 - Soil temperature layer 3 (K) -186 186 VLCA Very low cloud amount (0 - 1) -201 201 - 1.5m temperature - maximum in the last 24 hours (K) -202 202 - 1.5m temperature - minimum in the last 24 hours (K) -236 236 - Soil temperature layer 4 (K) -239 239 CSFRATE Convective snowfall rate (kg m**-2 s**-1) -240 240 LSFRATE Large scale snowfall rate (kg m**-2 s**-1) -248 248 TCCRO Total cloud amount - random overlap (0 - 1) -249 249 TCCLWR Total cloud amount in lw radiation (0 - 1) -255 255 - Indicates a missing value - +6 ~ Total soil moisture (m) +8 sro Surface runoff (kg m**-2) +9 ssro Sub-surface runoff (kg m**-2) +10 sswcsdown Clear-sky (II) down surface sw flux (W m**-2) +13 sswcsup Clear-sky (II) up surface sw flux (W m**-2) +25 vis15 Visibility at 1.5m (m) +31 ~ Fraction of sea-ice in sea ((0 - 1)) +34 ~ Open-sea surface temperature (K) +39 ~ Volumetric soil water layer 1 (m**3 m**-3) +40 ~ Volumetric soil water layer 2 (m**3 m**-3) +41 ~ Volumetric soil water layer 3 (m**3 m**-3) +42 ~ Volumetric soil water layer 4 (m**3 m**-3) +49 ~ 10 metre wind gust in the last 24 hours (m s**-1) +50 mn15t Minimum temperature at 1.5m since previous post-processing (K) +51 mx15t Maximum temperature at 1.5m since previous post-processing (K) +52 rhum Relative humidity at 1.5m (kg kg**-1) +55 ~ 1.5m temperature - mean in the last 24 hours (K) +83 ~ Net primary productivity (kg C m**-2 s**-1) +85 ~ 10m U wind over land (m s**-1) +86 ~ 10m V wind over land (m s**-1) +87 ~ 1.5m temperature over land (K) +88 ~ 1.5m dewpoint temperature over land (K) +89 ~ Top incoming solar radiation (J m**-2) +90 ~ Top outgoing solar radiation (J m**-2) +94 ~ Mean sea surface temperature (K) +95 ~ 1.5m specific humidity (kg kg**-1) +96 2sh 2 metre specific humidity (kg kg**-1) +97 sisnthick Sea ice snow thickness (m) +98 sithick Sea-ice thickness (m) +99 ~ Liquid water potential temperature (K) +110 ~ Ocean ice concentration ((0 - 1)) +111 ~ Ocean mean ice depth (m) +116 swrsurf Short wave radiation flux at surface (J m**-2) +117 swrtop Short wave radiation flux at top of atmosphere (J m**-2) +137 tcwvap Total column water vapour (kg m**-2) +139 ~ Soil temperature layer 1 (K) +142 lsrrate Large scale rainfall rate (kg m**-2 s**-1) +143 crfrate Convective rainfall rate (kg m**-2 s**-1) +164 ~ Average potential temperature in upper 293.4m (degrees C) +167 ~ 1.5m temperature (K) +168 ~ 1.5m dewpoint temperature (K) +170 ~ Soil temperature layer 2 (K) +172 lsm Land-sea mask ((0 - 1)) +175 ~ Average salinity in upper 293.4m (psu) +183 ~ Soil temperature layer 3 (K) +186 vlca Very low cloud amount ((0 - 1)) +201 ~ 1.5m temperature - maximum in the last 24 hours (K) +202 ~ 1.5m temperature - minimum in the last 24 hours (K) +236 ~ Soil temperature layer 4 (K) +239 csfrate Convective snowfall rate (kg m**-2 s**-1) +240 lsfrate Large scale snowfall rate (kg m**-2 s**-1) +248 tccro Total cloud amount - random overlap ((0 - 1)) +249 tcclwr Total cloud amount in lw radiation ((0 - 1)) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.175.table b/definitions/grib1/2.98.175.table index a64289ad3..fa5f14149 100644 --- a/definitions/grib1/2.98.175.table +++ b/definitions/grib1/2.98.175.table @@ -1,31 +1,31 @@ # This file was automatically generated by ./param.pl -6 6 - Total soil moisture (m) -31 31 - Fraction of sea-ice in sea (0 - 1) -34 34 - Open-sea surface temperature (K) -39 39 - Volumetric soil water layer 1 (m**3 m**-3) -40 40 - Volumetric soil water layer 2 (m**3 m**-3) -41 41 - Volumetric soil water layer 3 (m**3 m**-3) -42 42 - Volumetric soil water layer 4 (m**3 m**-3) -49 49 - 10m wind gust in the last 24 hours (m s**-1) -55 55 - 1.5m temperature - mean in the last 24 hours (K) -83 83 - Net primary productivity (kg C m**-2 s**-1) -85 85 - 10m U wind over land (m s**-1) -86 86 - 10m V wind over land (m s**-1) -87 87 - 1.5m temperature over land (K) -88 88 - 1.5m dewpoint temperature over land (K) -89 89 - Top incoming solar radiation (J m**-2) -90 90 - Top outgoing solar radiation (J m**-2) -110 110 - Ocean ice concentration (0 - 1) -111 111 - Ocean mean ice depth (m) -139 139 - Soil temperature layer 1 (K) -164 164 - Average potential temperature in upper 293.4m (degrees C) -167 167 - 1.5m temperature (K) -168 168 - 1.5m dewpoint temperature (K) -170 170 - Soil temperature layer 2 (K) -172 172 lsm Land-sea mask (0 - 1) -175 175 - Average salinity in upper 293.4m (psu) -183 183 - Soil temperature layer 3 (K) -201 201 - 1.5m temperature - maximum in the last 24 hours (K) -202 202 - 1.5m temperature - minimum in the last 24 hours (K) -236 236 - Soil temperature layer 4 (K) -255 255 - Indicates a missing value +6 ~ Total soil moisture (m) +31 ~ Fraction of sea-ice in sea ((0 - 1)) +34 ~ Open-sea surface temperature (K) +39 ~ Volumetric soil water layer 1 (m**3 m**-3) +40 ~ Volumetric soil water layer 2 (m**3 m**-3) +41 ~ Volumetric soil water layer 3 (m**3 m**-3) +42 ~ Volumetric soil water layer 4 (m**3 m**-3) +49 ~ 10m wind gust in the last 24 hours (m s**-1) +55 ~ 1.5m temperature - mean in the last 24 hours (K) +83 ~ Net primary productivity (kg C m**-2 s**-1) +85 ~ 10m U wind over land (m s**-1) +86 ~ 10m V wind over land (m s**-1) +87 ~ 1.5m temperature over land (K) +88 ~ 1.5m dewpoint temperature over land (K) +89 ~ Top incoming solar radiation (J m**-2) +90 ~ Top outgoing solar radiation (J m**-2) +110 ~ Ocean ice concentration ((0 - 1)) +111 ~ Ocean mean ice depth (m) +139 ~ Soil temperature layer 1 (K) +164 ~ Average potential temperature in upper 293.4m (degrees C) +167 ~ 1.5m temperature (K) +168 ~ 1.5m dewpoint temperature (K) +170 ~ Soil temperature layer 2 (K) +172 lsm Land-sea mask ((0 - 1)) +175 ~ Average salinity in upper 293.4m (psu) +183 ~ Soil temperature layer 3 (K) +201 ~ 1.5m temperature - maximum in the last 24 hours (K) +202 ~ 1.5m temperature - minimum in the last 24 hours (K) +236 ~ Soil temperature layer 4 (K) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.180.table b/definitions/grib1/2.98.180.table index 8b5756e11..0b21eba79 100644 --- a/definitions/grib1/2.98.180.table +++ b/definitions/grib1/2.98.180.table @@ -1,33 +1,33 @@ # This file was automatically generated by ./param.pl -129 129 Z Geopotential (m**2 s**-2) -130 130 T Temperature (K) -131 131 U U component of wind (m s**-1) -132 132 V V component of wind (m s**-1) -133 133 Q Specific humidity (kg kg**-1) -134 134 SP Surface pressure (Pa) -137 137 TCWV Total column water vapour (kg m**-2) -138 138 VO Vorticity (relative) (s**-1) -141 141 SD Snow depth (m of water equivalent) -142 142 LSP Large-scale precipitation (m) -143 143 CP Convective precipitation (m) -144 144 SF Snowfall (m of water equivalent) -146 146 SSHF Surface sensible heat flux (J m**-2) -147 147 SLHF Surface latent heat flux (J m**-2) -149 149 TSW Total soil wetness (m) -151 151 MSL Mean sea level pressure (Pa) -155 155 D Divergence (s**-1) -164 164 TCC Total cloud cover (0 - 1) -165 165 10U 10 metre U wind component (m s**-1) -166 166 10V 10 metre V wind component (m s**-1) -167 167 2T 2 metre temperature (K) -168 168 2D 2 metre dewpoint temperature (K) -172 172 LSM Land-sea mask (0 - 1) -176 176 SSR Surface net solar radiation (J m**-2) -177 177 STR Surface net thermal radiation (J m**-2) -178 178 TSR Top net solar radiation (J m**-2) -179 179 TTR Top net thermal radiation (J m**-2) -180 180 EWSS Eastward turbulent surface stress (N m**-2 s) -181 181 NSSS Northward turbulent surface stress (N m**-2 s) -182 182 E Evaporation (m of water equivalent) -205 205 RO Runoff (m) -255 255 - Indicates a missing value +129 z Geopotential (m**2 s**-2) +130 t Temperature (K) +131 u U component of wind (m s**-1) +132 v V component of wind (m s**-1) +133 q Specific humidity (kg kg**-1) +134 sp Surface pressure (Pa) +137 tcwv Total column water vapour (kg m**-2) +138 vo Vorticity (relative) (s**-1) +141 sd Snow depth (m of water equivalent) +142 lsp Large-scale precipitation (m) +143 cp Convective precipitation (m) +144 sf Snowfall (m of water equivalent) +146 sshf Surface sensible heat flux (J m**-2) +147 slhf Surface latent heat flux (J m**-2) +149 tsw Total soil wetness (m) +151 msl Mean sea level pressure (Pa) +155 d Divergence (s**-1) +164 tcc Total cloud cover ((0 - 1)) +165 10u 10 metre U wind component (m s**-1) +166 10v 10 metre V wind component (m s**-1) +167 2t 2 metre temperature (K) +168 2d 2 metre dewpoint temperature (K) +172 lsm Land-sea mask ((0 - 1)) +176 ssr Surface net solar radiation (J m**-2) +177 str Surface net thermal radiation (J m**-2) +178 tsr Top net solar radiation (J m**-2) +179 ttr Top net thermal radiation (J m**-2) +180 ewss Eastward turbulent surface stress (N m**-2 s) +181 nsss Northward turbulent surface stress (N m**-2 s) +182 e Evaporation (m of water equivalent) +205 ro Runoff (m) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.190.table b/definitions/grib1/2.98.190.table index df3180386..54f51ca8a 100644 --- a/definitions/grib1/2.98.190.table +++ b/definitions/grib1/2.98.190.table @@ -1,37 +1,37 @@ # This file was automatically generated by ./param.pl -129 129 Z Geopotential (m**2 s**-2) -130 130 T Temperature (K) -131 131 U U component of wind (m s**-1) -132 132 V V component of wind (m s**-1) -133 133 Q Specific humidity (kg kg**-1) -134 134 SP Surface pressure (Pa) -138 138 VO Vorticity (relative) (s**-1) -139 139 STL1 Soil temperature level 1 (K) -141 141 SDSIEN Snow depth (kg m**-2) -146 146 SSHF Surface sensible heat flux (J m**-2) -147 147 SLHF Surface latent heat flux (J m**-2) -151 151 MSL Mean sea level pressure (Pa) -155 155 D Divergence (s**-1) -157 157 R Relative humidity (%) -164 164 TCC Total cloud cover (0 - 1) -165 165 10U 10 metre U wind component (m s**-1) -166 166 10V 10 metre V wind component (m s**-1) -167 167 2T 2 metre temperature (K) -168 168 2D 2 metre dewpoint temperature (K) -169 169 SSRD Surface solar radiation downwards (J m**-2) -170 170 CAP Field capacity (0 - 1) -171 171 WILTSIEN Wilting point (0 - 1) -172 172 LSM Land-sea mask (0 - 1) -173 173 SR Roughness length (0 - 1) -174 174 AL Albedo (0 - 1) -175 175 STRD Surface thermal radiation downwards (J m**-2) -176 176 SSR Surface net solar radiation (J m**-2) -177 177 STR Surface net thermal radiation (J m**-2) -178 178 TSR Top net solar radiation (J m**-2) -179 179 TTR Top net thermal radiation (J m**-2) -182 182 E Evaporation (m of water equivalent) -201 201 MX2T Maximum temperature at 2 metres since previous post-processing (K) -202 202 MN2T Minimum temperature at 2 metres since previous post-processing (K) -228 228 TP Total precipitation (m) -229 229 TSM Total soil moisture (m**3 m**-3) -255 255 - Indicates a missing value +129 z Geopotential (m**2 s**-2) +130 t Temperature (K) +131 u U component of wind (m s**-1) +132 v V component of wind (m s**-1) +133 q Specific humidity (kg kg**-1) +134 sp Surface pressure (Pa) +138 vo Vorticity (relative) (s**-1) +139 stl1 Soil temperature level 1 (K) +141 sdsien Snow depth (kg m**-2) +146 sshf Surface sensible heat flux (J m**-2) +147 slhf Surface latent heat flux (J m**-2) +151 msl Mean sea level pressure (Pa) +155 d Divergence (s**-1) +157 r Relative humidity (%) +164 tcc Total cloud cover ((0 - 1)) +165 10u 10 metre U wind component (m s**-1) +166 10v 10 metre V wind component (m s**-1) +167 2t 2 metre temperature (K) +168 2d 2 metre dewpoint temperature (K) +169 ssrd Surface solar radiation downwards (J m**-2) +170 cap Field capacity ((0 - 1)) +171 wiltsien Wilting point ((0 - 1)) +172 lsm Land-sea mask ((0 - 1)) +173 sr Roughness length ((0 - 1)) +174 al Albedo ((0 - 1)) +175 strd Surface thermal radiation downwards (J m**-2) +176 ssr Surface net solar radiation (J m**-2) +177 str Surface net thermal radiation (J m**-2) +178 tsr Top net solar radiation (J m**-2) +179 ttr Top net thermal radiation (J m**-2) +182 e Evaporation (m of water equivalent) +201 mx2t Maximum temperature at 2 metres since previous post-processing (K) +202 mn2t Minimum temperature at 2 metres since previous post-processing (K) +228 tp Total precipitation (m) +229 tsm Total soil moisture (m**3 m**-3) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.200.table b/definitions/grib1/2.98.200.table index cd5616825..0ebd521a2 100644 --- a/definitions/grib1/2.98.200.table +++ b/definitions/grib1/2.98.200.table @@ -1,236 +1,236 @@ # This file was automatically generated by ./param.pl -1 1 STRFDIFF Stream function difference (m**2 s**-1) -2 2 VPOTDIFF Velocity potential difference (m**2 s**-1) -3 3 PTDIFF Potential temperature difference (K) -4 4 EQPTDIFF Equivalent potential temperature difference (K) -5 5 SEPTDIFF Saturated equivalent potential temperature difference (K) -11 11 UDVWDIFF U component of divergent wind difference (m s**-1) -12 12 VDVWDIFF V component of divergent wind difference (m s**-1) -13 13 URTWDIFF U component of rotational wind difference (m s**-1) -14 14 VRTWDIFF V component of rotational wind difference (m s**-1) -21 21 UCTPDIFF Unbalanced component of temperature difference (K) -22 22 UCLNDIFF Unbalanced component of logarithm of surface pressure difference (~) -23 23 UCDVDIFF Unbalanced component of divergence difference (s**-1) -24 24 - Reserved for future unbalanced components (~) -25 25 - Reserved for future unbalanced components (~) -26 26 CLDIFF Lake cover difference (0 - 1) -27 27 CVLDIFF Low vegetation cover difference (0 - 1) -28 28 CVHDIFF High vegetation cover difference (0 - 1) -29 29 TVLDIFF Type of low vegetation difference (~) -30 30 TVHDIFF Type of high vegetation difference (~) -31 31 SICDIFF Sea-ice cover difference (0 - 1) -32 32 ASNDIFF Snow albedo difference (0 - 1) -33 33 RSNDIFF Snow density difference (kg m**-3) -34 34 SSTDIFF Sea surface temperature difference (K) -35 35 ISTL1DIFF Ice surface temperature layer 1 difference (K) -36 36 ISTL2DIFF Ice surface temperature layer 2 difference (K) -37 37 ISTL3DIFF Ice surface temperature layer 3 difference (K) -38 38 ISTL4DIFF Ice surface temperature layer 4 difference (K) -39 39 SWVL1DIFF Volumetric soil water layer 1 difference (m**3 m**-3) -40 40 SWVL2DIFF Volumetric soil water layer 2 difference (m**3 m**-3) -41 41 SWVL3DIFF Volumetric soil water layer 3 difference (m**3 m**-3) -42 42 SWVL4DIFF Volumetric soil water layer 4 difference (m**3 m**-3) -43 43 SLTDIFF Soil type difference (~) -44 44 ESDIFF Snow evaporation difference (kg m**-2) -45 45 SMLTDIFF Snowmelt difference (kg m**-2) -46 46 SDURDIFF Solar duration difference (s) -47 47 DSRPDIFF Direct solar radiation difference (J m**-2) -48 48 MAGSSDIFF Magnitude of surface stress difference (N m**-2 s) -49 49 10FGDIFF 10 metre wind gust difference (m s**-1) -50 50 LSPFDIFF Large-scale precipitation fraction difference (s) -51 51 MX2T24DIFF Maximum 2 metre temperature difference (K) -52 52 MN2T24DIFF Minimum 2 metre temperature difference (K) -53 53 MONTDIFF Montgomery potential difference (m**2 s**-2) -54 54 PRESDIFF Pressure difference (Pa) -55 55 MEAN2T24DIFF Mean 2 metre temperature in the last 24 hours difference (K) -56 56 MN2D24DIFF Mean 2 metre dewpoint temperature in the last 24 hours difference (K) -57 57 UVBDIFF Downward UV radiation at the surface difference (J m**-2) -58 58 PARDIFF Photosynthetically active radiation at the surface difference (J m**-2) -59 59 CAPEDIFF Convective available potential energy difference (J kg**-1) -60 60 PVDIFF Potential vorticity difference (K m**2 kg**-1 s**-1) -61 61 TPODIFF Total precipitation from observations difference (Millimetres*100 + number of stations) -62 62 OBCTDIFF Observation count difference (~) -63 63 - Start time for skin temperature difference (s) -64 64 - Finish time for skin temperature difference (s) -65 65 - Skin temperature difference (K) -66 66 - Leaf area index, low vegetation (m**2 m**-2) -67 67 - Leaf area index, high vegetation (m**2 m**-2) -68 68 - Minimum stomatal resistance, low vegetation (s m**-1) -69 69 - Minimum stomatal resistance, high vegetation (s m**-1) -70 70 - Biome cover, low vegetation (0 - 1) -71 71 - Biome cover, high vegetation (0 - 1) -78 78 - Total column liquid water (kg m**-2) -79 79 - Total column ice water (kg m**-2) -80 80 - Experimental product (~) -81 81 - Experimental product (~) -82 82 - Experimental product (~) -83 83 - Experimental product (~) -84 84 - Experimental product (~) -85 85 - Experimental product (~) -86 86 - Experimental product (~) -87 87 - Experimental product (~) -88 88 - Experimental product (~) -89 89 - Experimental product (~) -90 90 - Experimental product (~) -91 91 - Experimental product (~) -92 92 - Experimental product (~) -93 93 - Experimental product (~) -94 94 - Experimental product (~) -95 95 - Experimental product (~) -96 96 - Experimental product (~) -97 97 - Experimental product (~) -98 98 - Experimental product (~) -99 99 - Experimental product (~) -100 100 - Experimental product (~) -101 101 - Experimental product (~) -102 102 - Experimental product (~) -103 103 - Experimental product (~) -104 104 - Experimental product (~) -105 105 - Experimental product (~) -106 106 - Experimental product (~) -107 107 - Experimental product (~) -108 108 - Experimental product (~) -109 109 - Experimental product (~) -110 110 - Experimental product (~) -111 111 - Experimental product (~) -112 112 - Experimental product (~) -113 113 - Experimental product (~) -114 114 - Experimental product (~) -115 115 - Experimental product (~) -116 116 - Experimental product (~) -117 117 - Experimental product (~) -118 118 - Experimental product (~) -119 119 - Experimental product (~) -120 120 - Experimental product (~) -121 121 MX2T6DIFF Maximum temperature at 2 metres difference (K) -122 122 MN2T6DIFF Minimum temperature at 2 metres difference (K) -123 123 10FG6DIFF 10 metre wind gust in the last 6 hours difference (m s**-1) -125 125 - Vertically integrated total energy (J m**-2) -126 126 - Generic parameter for sensitive area prediction (Various) -127 127 ATDIFF Atmospheric tide difference (~) -128 128 BVDIFF Budget values difference (~) -129 129 ZDIFF Geopotential difference (m**2 s**-2) -130 130 TDIFF Temperature difference (K) -131 131 UDIFF U component of wind difference (m s**-1) -132 132 VDIFF V component of wind difference (m s**-1) -133 133 QDIFF Specific humidity difference (kg kg**-1) -134 134 SPDIFF Surface pressure difference (Pa) -135 135 WDIFF Vertical velocity (pressure) difference (Pa s**-1) -136 136 TCWDIFF Total column water difference (kg m**-2) -137 137 TCWVDIFF Total column water vapour difference (kg m**-2) -138 138 VODIFF Vorticity (relative) difference (s**-1) -139 139 STL1DIFF Soil temperature level 1 difference (K) -140 140 SWL1DIFF Soil wetness level 1 difference (kg m**-2) -141 141 SDDIFF Snow depth difference (m of water equivalent) -142 142 LSPDIFF Stratiform precipitation (Large-scale precipitation) difference (m) -143 143 CPDIFF Convective precipitation difference (m) -144 144 SFDIFF Snowfall (convective + stratiform) difference (m of water equivalent) -145 145 BLDDIFF Boundary layer dissipation difference (J m**-2) -146 146 SSHFDIFF Surface sensible heat flux difference (J m**-2) -147 147 SLHFDIFF Surface latent heat flux difference (J m**-2) -148 148 CHNKDIFF Charnock difference (~) -149 149 SNRDIFF Surface net radiation difference (J m**-2) -150 150 TNRDIFF Top net radiation difference (~) -151 151 MSLDIFF Mean sea level pressure difference (Pa) -152 152 LNSPDIFF Logarithm of surface pressure difference (kg m**-2) -153 153 SWHRDIFF Short-wave heating rate difference (K) -154 154 LWHRDIFF Long-wave heating rate difference (K) -155 155 DDIFF Divergence difference (s**-1) -156 156 GHDIFF Height difference (m) -157 157 RDIFF Relative humidity difference (%) -158 158 TSPDIFF Tendency of surface pressure difference (Pa s**-1) -159 159 BLHDIFF Boundary layer height difference (m) -160 160 SDORDIFF Standard deviation of orography difference (~) -161 161 ISORDIFF Anisotropy of sub-gridscale orography difference (~) -162 162 ANORDIFF Angle of sub-gridscale orography difference (radians) -163 163 SLORDIFF Slope of sub-gridscale orography difference (~) -164 164 TCCDIFF Total cloud cover difference (0 - 1) -165 165 10UDIFF 10 metre U wind component difference (m s**-1) -166 166 10VDIFF 10 metre V wind component difference (m s**-1) -167 167 2TDIFF 2 metre temperature difference (K) -168 168 2DDIFF 2 metre dewpoint temperature difference (K) -169 169 SSRDDIFF Surface solar radiation downwards difference (J m**-2) -170 170 STL2DIFF Soil temperature level 2 difference (K) -171 171 SWL2DIFF Soil wetness level 2 difference (kg m**-2) -172 172 LSMDIFF Land-sea mask difference (0 - 1) -173 173 SRDIFF Surface roughness difference (m) -174 174 ALDIFF Albedo difference (0 - 1) -175 175 STRDDIFF Surface thermal radiation downwards difference (J m**-2) -176 176 SSRDIFF Surface net solar radiation difference (J m**-2) -177 177 STRDIFF Surface net thermal radiation difference (J m**-2) -178 178 TSRDIFF Top net solar radiation difference (J m**-2) -179 179 TTRDIFF Top net thermal radiation difference (J m**-2) -180 180 EWSSDIFF East-West surface stress difference (N m**-2 s) -181 181 NSSSDIFF North-South surface stress difference (N m**-2 s) -182 182 EDIFF Evaporation difference (kg m**-2) -183 183 STL3DIFF Soil temperature level 3 difference (K) -184 184 SWL3DIFF Soil wetness level 3 difference (kg m**-2) -185 185 CCCDIFF Convective cloud cover difference (0 - 1) -186 186 LCCDIFF Low cloud cover difference (0 - 1) -187 187 MCCDIFF Medium cloud cover difference (0 - 1) -188 188 HCCDIFF High cloud cover difference (0 - 1) -189 189 SUNDDIFF Sunshine duration difference (s) -190 190 EWOVDIFF East-West component of sub-gridscale orographic variance difference (m**2) -191 191 NSOVDIFF North-South component of sub-gridscale orographic variance difference (m**2) -192 192 NWOVDIFF North-West/South-East component of sub-gridscale orographic variance difference (m**2) -193 193 NEOVDIFF North-East/South-West component of sub-gridscale orographic variance difference (m**2) -194 194 BTMPDIFF Brightness temperature difference (K) -195 195 LGWSDIFF Longitudinal component of gravity wave stress difference (N m**-2 s) -196 196 MGWSDIFF Meridional component of gravity wave stress difference (N m**-2 s) -197 197 GWDDIFF Gravity wave dissipation difference (J m**-2) -198 198 SRCDIFF Skin reservoir content difference (kg m**-2) -199 199 VEGDIFF Vegetation fraction difference (0 - 1) -200 200 VSODIFF Variance of sub-gridscale orography difference (m**2) -201 201 MX2TDIFF Maximum temperature at 2 metres since previous post-processing difference (K) -202 202 MN2TDIFF Minimum temperature at 2 metres since previous post-processing difference (K) -203 203 O3DIFF Ozone mass mixing ratio difference (kg kg**-1) -204 204 PAWDIFF Precipitation analysis weights difference (~) -205 205 RODIFF Runoff difference (m) -206 206 TCO3DIFF Total column ozone difference (kg m**-2) -207 207 10SIDIFF 10 metre wind speed difference (m s**-1) -208 208 TSRCDIFF Top net solar radiation, clear sky difference (J m**-2) -209 209 TTRCDIFF Top net thermal radiation, clear sky difference (J m**-2) -210 210 SSRCDIFF Surface net solar radiation, clear sky difference (J m**-2) -211 211 STRCDIFF Surface net thermal radiation, clear sky difference (J m**-2) -212 212 TISRDIFF TOA incident solar radiation difference (J m**-2) -214 214 DHRDIFF Diabatic heating by radiation difference (K) -215 215 DHVDDIFF Diabatic heating by vertical diffusion difference (K) -216 216 DHCCDIFF Diabatic heating by cumulus convection difference (K) -217 217 DHLCDIFF Diabatic heating large-scale condensation difference (K) -218 218 VDZWDIFF Vertical diffusion of zonal wind difference (m s**-1) -219 219 VDMWDIFF Vertical diffusion of meridional wind difference (m s**-1) -220 220 EWGDDIFF East-West gravity wave drag tendency difference (m s**-1) -221 221 NSGDDIFF North-South gravity wave drag tendency difference (m s**-1) -222 222 CTZWDIFF Convective tendency of zonal wind difference (m s**-1) -223 223 CTMWDIFF Convective tendency of meridional wind difference (m s**-1) -224 224 VDHDIFF Vertical diffusion of humidity difference (kg kg**-1) -225 225 HTCCDIFF Humidity tendency by cumulus convection difference (kg kg**-1) -226 226 HTLCDIFF Humidity tendency by large-scale condensation difference (kg kg**-1) -227 227 CRNHDIFF Change from removal of negative humidity difference (kg kg**-1) -228 228 TPDIFF Total precipitation difference (m) -229 229 IEWSDIFF Instantaneous X surface stress difference (N m**-2) -230 230 INSSDIFF Instantaneous Y surface stress difference (N m**-2) -231 231 ISHFDIFF Instantaneous surface heat flux difference (J m**-2) -232 232 IEDIFF Instantaneous moisture flux difference (kg m**-2 s) -233 233 ASQDIFF Apparent surface humidity difference (kg kg**-1) -234 234 LSRHDIFF Logarithm of surface roughness length for heat difference (~) -235 235 SKTDIFF Skin temperature difference (K) -236 236 STL4DIFF Soil temperature level 4 difference (K) -237 237 SWL4DIFF Soil wetness level 4 difference (m) -238 238 TSNDIFF Temperature of snow layer difference (K) -239 239 CSFDIFF Convective snowfall difference (m of water equivalent) -240 240 LSFDIFF Large scale snowfall difference (m of water equivalent) -241 241 ACFDIFF Accumulated cloud fraction tendency difference ((-1 to 1)) -242 242 ALWDIFF Accumulated liquid water tendency difference ((-1 to 1)) -243 243 FALDIFF Forecast albedo difference (0 - 1) -244 244 FSRDIFF Forecast surface roughness difference (m) -245 245 FLSRDIFF Forecast logarithm of surface roughness for heat difference (~) -246 246 CLWCDIFF Specific cloud liquid water content difference (kg kg**-1) -247 247 CIWCDIFF Specific cloud ice water content difference (kg kg**-1) -248 248 CCDIFF Cloud cover difference (0 - 1) -249 249 AIWDIFF Accumulated ice water tendency difference ((-1 to 1)) -250 250 ICEDIFF Ice age difference (0 - 1) -251 251 ATTEDIFF Adiabatic tendency of temperature difference (K) -252 252 ATHEDIFF Adiabatic tendency of humidity difference (kg kg**-1) -253 253 ATZEDIFF Adiabatic tendency of zonal wind difference (m s**-1) -254 254 ATMWDIFF Adiabatic tendency of meridional wind difference (m s**-1) +1 strfdiff Stream function difference (m**2 s**-1) +2 vpotdiff Velocity potential difference (m**2 s**-1) +3 ptdiff Potential temperature difference (K) +4 eqptdiff Equivalent potential temperature difference (K) +5 septdiff Saturated equivalent potential temperature difference (K) +11 udvwdiff U component of divergent wind difference (m s**-1) +12 vdvwdiff V component of divergent wind difference (m s**-1) +13 urtwdiff U component of rotational wind difference (m s**-1) +14 vrtwdiff V component of rotational wind difference (m s**-1) +21 uctpdiff Unbalanced component of temperature difference (K) +22 uclndiff Unbalanced component of logarithm of surface pressure difference (~) +23 ucdvdiff Unbalanced component of divergence difference (s**-1) +24 ~ Reserved for future unbalanced components (~) +25 ~ Reserved for future unbalanced components (~) +26 cldiff Lake cover difference ((0 - 1)) +27 cvldiff Low vegetation cover difference ((0 - 1)) +28 cvhdiff High vegetation cover difference ((0 - 1)) +29 tvldiff Type of low vegetation difference (~) +30 tvhdiff Type of high vegetation difference (~) +31 sicdiff Sea-ice cover difference ((0 - 1)) +32 asndiff Snow albedo difference ((0 - 1)) +33 rsndiff Snow density difference (kg m**-3) +34 sstdiff Sea surface temperature difference (K) +35 istl1diff Ice surface temperature layer 1 difference (K) +36 istl2diff Ice surface temperature layer 2 difference (K) +37 istl3diff Ice surface temperature layer 3 difference (K) +38 istl4diff Ice surface temperature layer 4 difference (K) +39 swvl1diff Volumetric soil water layer 1 difference (m**3 m**-3) +40 swvl2diff Volumetric soil water layer 2 difference (m**3 m**-3) +41 swvl3diff Volumetric soil water layer 3 difference (m**3 m**-3) +42 swvl4diff Volumetric soil water layer 4 difference (m**3 m**-3) +43 sltdiff Soil type difference (~) +44 esdiff Snow evaporation difference (kg m**-2) +45 smltdiff Snowmelt difference (kg m**-2) +46 sdurdiff Solar duration difference (s) +47 dsrpdiff Direct solar radiation difference (J m**-2) +48 magssdiff Magnitude of turbulent surface stress difference (N m**-2 s) +49 10fgdiff 10 metre wind gust difference (m s**-1) +50 lspfdiff Large-scale precipitation fraction difference (s) +51 mx2t24diff Maximum 2 metre temperature difference (K) +52 mn2t24diff Minimum 2 metre temperature difference (K) +53 montdiff Montgomery potential difference (m**2 s**-2) +54 presdiff Pressure difference (Pa) +55 mean2t24diff Mean 2 metre temperature in the last 24 hours difference (K) +56 mn2d24diff Mean 2 metre dewpoint temperature in the last 24 hours difference (K) +57 uvbdiff Downward UV radiation at the surface difference (J m**-2) +58 pardiff Photosynthetically active radiation at the surface difference (J m**-2) +59 capediff Convective available potential energy difference (J kg**-1) +60 pvdiff Potential vorticity difference (K m**2 kg**-1 s**-1) +61 tpodiff Total precipitation from observations difference (Millimetres*100 + number of stations) +62 obctdiff Observation count difference (~) +63 ~ Start time for skin temperature difference (s) +64 ~ Finish time for skin temperature difference (s) +65 ~ Skin temperature difference (K) +66 ~ Leaf area index, low vegetation (m**2 m**-2) +67 ~ Leaf area index, high vegetation (m**2 m**-2) +68 ~ Minimum stomatal resistance, low vegetation (s m**-1) +69 ~ Minimum stomatal resistance, high vegetation (s m**-1) +70 ~ Biome cover, low vegetation ((0 - 1)) +71 ~ Biome cover, high vegetation ((0 - 1)) +78 ~ Total column liquid water (kg m**-2) +79 ~ Total column ice water (kg m**-2) +80 ~ Experimental product (~) +81 ~ Experimental product (~) +82 ~ Experimental product (~) +83 ~ Experimental product (~) +84 ~ Experimental product (~) +85 ~ Experimental product (~) +86 ~ Experimental product (~) +87 ~ Experimental product (~) +88 ~ Experimental product (~) +89 ~ Experimental product (~) +90 ~ Experimental product (~) +91 ~ Experimental product (~) +92 ~ Experimental product (~) +93 ~ Experimental product (~) +94 ~ Experimental product (~) +95 ~ Experimental product (~) +96 ~ Experimental product (~) +97 ~ Experimental product (~) +98 ~ Experimental product (~) +99 ~ Experimental product (~) +100 ~ Experimental product (~) +101 ~ Experimental product (~) +102 ~ Experimental product (~) +103 ~ Experimental product (~) +104 ~ Experimental product (~) +105 ~ Experimental product (~) +106 ~ Experimental product (~) +107 ~ Experimental product (~) +108 ~ Experimental product (~) +109 ~ Experimental product (~) +110 ~ Experimental product (~) +111 ~ Experimental product (~) +112 ~ Experimental product (~) +113 ~ Experimental product (~) +114 ~ Experimental product (~) +115 ~ Experimental product (~) +116 ~ Experimental product (~) +117 ~ Experimental product (~) +118 ~ Experimental product (~) +119 ~ Experimental product (~) +120 ~ Experimental product (~) +121 mx2t6diff Maximum temperature at 2 metres difference (K) +122 mn2t6diff Minimum temperature at 2 metres difference (K) +123 10fg6diff 10 metre wind gust in the last 6 hours difference (m s**-1) +125 ~ Vertically integrated total energy (J m**-2) +126 ~ Generic parameter for sensitive area prediction (Various) +127 atdiff Atmospheric tide difference (~) +128 bvdiff Budget values difference (~) +129 zdiff Geopotential difference (m**2 s**-2) +130 tdiff Temperature difference (K) +131 udiff U component of wind difference (m s**-1) +132 vdiff V component of wind difference (m s**-1) +133 qdiff Specific humidity difference (kg kg**-1) +134 spdiff Surface pressure difference (Pa) +135 wdiff Vertical velocity (pressure) difference (Pa s**-1) +136 tcwdiff Total column water difference (kg m**-2) +137 tcwvdiff Total column water vapour difference (kg m**-2) +138 vodiff Vorticity (relative) difference (s**-1) +139 stl1diff Soil temperature level 1 difference (K) +140 swl1diff Soil wetness level 1 difference (kg m**-2) +141 sddiff Snow depth difference (m of water equivalent) +142 lspdiff Stratiform precipitation (Large-scale precipitation) difference (m) +143 cpdiff Convective precipitation difference (m) +144 sfdiff Snowfall (convective + stratiform) difference (m of water equivalent) +145 blddiff Boundary layer dissipation difference (J m**-2) +146 sshfdiff Surface sensible heat flux difference (J m**-2) +147 slhfdiff Surface latent heat flux difference (J m**-2) +148 chnkdiff Charnock difference (~) +149 snrdiff Surface net radiation difference (J m**-2) +150 tnrdiff Top net radiation difference (~) +151 msldiff Mean sea level pressure difference (Pa) +152 lnspdiff Logarithm of surface pressure difference (kg m**-2) +153 swhrdiff Short-wave heating rate difference (K) +154 lwhrdiff Long-wave heating rate difference (K) +155 ddiff Divergence difference (s**-1) +156 ghdiff Height difference (m) +157 rdiff Relative humidity difference (%) +158 tspdiff Tendency of surface pressure difference (Pa s**-1) +159 blhdiff Boundary layer height difference (m) +160 sdordiff Standard deviation of orography difference (~) +161 isordiff Anisotropy of sub-gridscale orography difference (~) +162 anordiff Angle of sub-gridscale orography difference (radians) +163 slordiff Slope of sub-gridscale orography difference (~) +164 tccdiff Total cloud cover difference ((0 - 1)) +165 10udiff 10 metre U wind component difference (m s**-1) +166 10vdiff 10 metre V wind component difference (m s**-1) +167 2tdiff 2 metre temperature difference (K) +168 2ddiff 2 metre dewpoint temperature difference (K) +169 ssrddiff Surface solar radiation downwards difference (J m**-2) +170 stl2diff Soil temperature level 2 difference (K) +171 swl2diff Soil wetness level 2 difference (kg m**-2) +172 lsmdiff Land-sea mask difference ((0 - 1)) +173 srdiff Surface roughness difference (m) +174 aldiff Albedo difference ((0 - 1)) +175 strddiff Surface thermal radiation downwards difference (J m**-2) +176 ssrdiff Surface net solar radiation difference (J m**-2) +177 strdiff Surface net thermal radiation difference (J m**-2) +178 tsrdiff Top net solar radiation difference (J m**-2) +179 ttrdiff Top net thermal radiation difference (J m**-2) +180 ewssdiff East-West surface stress difference (N m**-2 s) +181 nsssdiff North-South surface stress difference (N m**-2 s) +182 ediff Evaporation difference (kg m**-2) +183 stl3diff Soil temperature level 3 difference (K) +184 swl3diff Soil wetness level 3 difference (kg m**-2) +185 cccdiff Convective cloud cover difference ((0 - 1)) +186 lccdiff Low cloud cover difference ((0 - 1)) +187 mccdiff Medium cloud cover difference ((0 - 1)) +188 hccdiff High cloud cover difference ((0 - 1)) +189 sunddiff Sunshine duration difference (s) +190 ewovdiff East-West component of sub-gridscale orographic variance difference (m**2) +191 nsovdiff North-South component of sub-gridscale orographic variance difference (m**2) +192 nwovdiff North-West/South-East component of sub-gridscale orographic variance difference (m**2) +193 neovdiff North-East/South-West component of sub-gridscale orographic variance difference (m**2) +194 btmpdiff Brightness temperature difference (K) +195 lgwsdiff Longitudinal component of gravity wave stress difference (N m**-2 s) +196 mgwsdiff Meridional component of gravity wave stress difference (N m**-2 s) +197 gwddiff Gravity wave dissipation difference (J m**-2) +198 srcdiff Skin reservoir content difference (kg m**-2) +199 vegdiff Vegetation fraction difference ((0 - 1)) +200 vsodiff Variance of sub-gridscale orography difference (m**2) +201 mx2tdiff Maximum temperature at 2 metres since previous post-processing difference (K) +202 mn2tdiff Minimum temperature at 2 metres since previous post-processing difference (K) +203 o3diff Ozone mass mixing ratio difference (kg kg**-1) +204 pawdiff Precipitation analysis weights difference (~) +205 rodiff Runoff difference (m) +206 tco3diff Total column ozone difference (kg m**-2) +207 10sidiff 10 metre wind speed difference (m s**-1) +208 tsrcdiff Top net solar radiation, clear sky difference (J m**-2) +209 ttrcdiff Top net thermal radiation, clear sky difference (J m**-2) +210 ssrcdiff Surface net solar radiation, clear sky difference (J m**-2) +211 strcdiff Surface net thermal radiation, clear sky difference (J m**-2) +212 tisrdiff TOA incident solar radiation difference (J m**-2) +214 dhrdiff Diabatic heating by radiation difference (K) +215 dhvddiff Diabatic heating by vertical diffusion difference (K) +216 dhccdiff Diabatic heating by cumulus convection difference (K) +217 dhlcdiff Diabatic heating large-scale condensation difference (K) +218 vdzwdiff Vertical diffusion of zonal wind difference (m s**-1) +219 vdmwdiff Vertical diffusion of meridional wind difference (m s**-1) +220 ewgddiff East-West gravity wave drag tendency difference (m s**-1) +221 nsgddiff North-South gravity wave drag tendency difference (m s**-1) +222 ctzwdiff Convective tendency of zonal wind difference (m s**-1) +223 ctmwdiff Convective tendency of meridional wind difference (m s**-1) +224 vdhdiff Vertical diffusion of humidity difference (kg kg**-1) +225 htccdiff Humidity tendency by cumulus convection difference (kg kg**-1) +226 htlcdiff Humidity tendency by large-scale condensation difference (kg kg**-1) +227 crnhdiff Change from removal of negative humidity difference (kg kg**-1) +228 tpdiff Total precipitation difference (m) +229 iewsdiff Instantaneous X surface stress difference (N m**-2) +230 inssdiff Instantaneous Y surface stress difference (N m**-2) +231 ishfdiff Instantaneous surface heat flux difference (J m**-2) +232 iediff Instantaneous moisture flux difference (kg m**-2 s) +233 asqdiff Apparent surface humidity difference (kg kg**-1) +234 lsrhdiff Logarithm of surface roughness length for heat difference (~) +235 sktdiff Skin temperature difference (K) +236 stl4diff Soil temperature level 4 difference (K) +237 swl4diff Soil wetness level 4 difference (m) +238 tsndiff Temperature of snow layer difference (K) +239 csfdiff Convective snowfall difference (m of water equivalent) +240 lsfdiff Large scale snowfall difference (m of water equivalent) +241 acfdiff Accumulated cloud fraction tendency difference ((-1 to 1)) +242 alwdiff Accumulated liquid water tendency difference ((-1 to 1)) +243 faldiff Forecast albedo difference ((0 - 1)) +244 fsrdiff Forecast surface roughness difference (m) +245 flsrdiff Forecast logarithm of surface roughness for heat difference (~) +246 clwcdiff Specific cloud liquid water content difference (kg kg**-1) +247 ciwcdiff Specific cloud ice water content difference (kg kg**-1) +248 ccdiff Cloud cover difference ((0 - 1)) +249 aiwdiff Accumulated ice water tendency difference ((-1 to 1)) +250 icediff Ice age difference ((0 - 1)) +251 attediff Adiabatic tendency of temperature difference (K) +252 athediff Adiabatic tendency of humidity difference (kg kg**-1) +253 atzediff Adiabatic tendency of zonal wind difference (m s**-1) +254 atmwdiff Adiabatic tendency of meridional wind difference (m s**-1) diff --git a/definitions/grib1/2.98.201.table b/definitions/grib1/2.98.201.table index f937639ab..2709b4b1f 100644 --- a/definitions/grib1/2.98.201.table +++ b/definitions/grib1/2.98.201.table @@ -1,78 +1,78 @@ # This file was automatically generated by ./param.pl -1 1 - downward shortwave radiant flux density (J m**-2) -2 2 - upward shortwave radiant flux density (J m**-2) -3 3 - downward longwave radiant flux density (J m**-2) -4 4 - upward longwave radiant flux density (J m**-2) -5 5 APAB_S downwd photosynthetic active radiant flux density (J m**-2) -6 6 - net shortwave flux (J m**-2) -7 7 - net longwave flux (J m**-2) -8 8 - total net radiative flux density (J m**-2) -9 9 - downw shortw radiant flux density, cloudfree part (J m**-2) -10 10 - upw shortw radiant flux density, cloudy part (J m**-2) -11 11 - downw longw radiant flux density, cloudfree part (J m**-2) -12 12 - upw longw radiant flux density, cloudy part (J m**-2) -13 13 SOHR_RAD shortwave radiative heating rate (K s**-1) -14 14 THHR_RAD longwave radiative heating rate (K s**-1) -15 15 - total radiative heating rate (J m**-2) -16 16 - soil heat flux, surface (J m**-2) -17 17 - soil heat flux, bottom of layer (J m**-2) -29 29 CLC fractional cloud cover (0 - 1) -30 30 - cloud cover, grid scale (0 - 1) -31 31 QC specific cloud water content (kg kg**-1) -32 32 - cloud water content, grid scale, vert integrated (kg m**-2) -33 33 QI specific cloud ice content, grid scale (kg kg**-1) -34 34 - cloud ice content, grid scale, vert integrated (kg m**-2) -35 35 - specific rainwater content, grid scale (kg kg**-1) -36 36 - specific snow content, grid scale (kg kg**-1) -37 37 - specific rainwater content, gs, vert. integrated (kg m**-2) -38 38 - specific snow content, gs, vert. integrated (kg m**-2) -41 41 TWATER total column water (kg m**-2) -42 42 - vert. integral of divergence of tot. water content (kg m**-2) -50 50 CH_CM_CL cloud covers CH_CM_CL (000...888) (0 - 1) -51 51 - cloud cover CH (0..8) (0 - 1) -52 52 - cloud cover CM (0..8) (0 - 1) -53 53 - cloud cover CL (0..8) (0 - 1) -54 54 - total cloud cover (0..8) (0 - 1) -55 55 - fog (0..8) (0 - 1) -56 56 - fog (0 - 1) -60 60 - cloud cover, convective cirrus (0 - 1) -61 61 - specific cloud water content, convective clouds (kg kg**-1) -62 62 - cloud water content, conv clouds, vert integrated (kg m**-2) -63 63 - specific cloud ice content, convective clouds (kg kg**-1) -64 64 - cloud ice content, conv clouds, vert integrated (kg m**-2) -65 65 - convective mass flux (kg s**-1 m**-2) -66 66 - Updraft velocity, convection (m s**-1) -67 67 - entrainment parameter, convection (m**-1) -68 68 HBAS_CON cloud base, convective clouds (above msl) (m) -69 69 HTOP_CON cloud top, convective clouds (above msl) (m) -70 70 - convective layers (00...77) (BKE) (0 - 1) -71 71 - KO-index (dimensionless) -72 72 BAS_CON convection base index (dimensionless) -73 73 TOP_CON convection top index (dimensionless) -74 74 DT_CON convective temperature tendency (K s**-1) -75 75 DQV_CON convective tendency of specific humidity (s**-1) -76 76 - convective tendency of total heat (J kg**-1 s**-1) -77 77 - convective tendency of total water (s**-1) -78 78 DU_CON convective momentum tendency (X-component) (m s**-2) -79 79 DV_CON convective momentum tendency (Y-component) (m s**-2) -80 80 - convective vorticity tendency (s**-2) -81 81 - convective divergence tendency (s**-2) -82 82 HTOP_DC top of dry convection (above msl) (m) -83 83 - dry convection top index (dimensionless) -84 84 HZEROCL height of 0 degree Celsius isotherm above msl (m) -85 85 SNOWLMT height of snow-fall limit (m) -99 99 QRS_GSP spec. content of precip. particles (kg kg**-1) -100 100 PRR_GSP surface precipitation rate, rain, grid scale (kg s**-1 m**-2) -101 101 PRS_GSP surface precipitation rate, snow, grid scale (kg s**-1 m**-2) -102 102 RAIN_GSP surface precipitation amount, rain, grid scale (kg m**-2) -111 111 PRR_CON surface precipitation rate, rain, convective (kg s**-1 m**-2) -112 112 PRS_CON surface precipitation rate, snow, convective (kg s**-1 m**-2) -113 113 RAIN_CON surface precipitation amount, rain, convective (kg m**-2) -139 139 PP deviation of pressure from reference value (Pa) -150 150 - coefficient of horizontal diffusion (m**2 s**-1) -187 187 VMAX_10M Maximum wind velocity (m s**-1) -200 200 W_I water content of interception store (kg m**-2) -203 203 T_SNOW snow temperature (K) -215 215 T_ICE ice surface temperature (K) -241 241 CAPE_CON convective available potential energy (J kg**-1) -255 255 - Indicates a missing value +1 ~ downward shortwave radiant flux density (J m**-2) +2 ~ upward shortwave radiant flux density (J m**-2) +3 ~ downward longwave radiant flux density (J m**-2) +4 ~ upward longwave radiant flux density (J m**-2) +5 apab_s downwd photosynthetic active radiant flux density (J m**-2) +6 ~ net shortwave flux (J m**-2) +7 ~ net longwave flux (J m**-2) +8 ~ total net radiative flux density (J m**-2) +9 ~ downw shortw radiant flux density, cloudfree part (J m**-2) +10 ~ upw shortw radiant flux density, cloudy part (J m**-2) +11 ~ downw longw radiant flux density, cloudfree part (J m**-2) +12 ~ upw longw radiant flux density, cloudy part (J m**-2) +13 sohr_rad shortwave radiative heating rate (K s**-1) +14 thhr_rad longwave radiative heating rate (K s**-1) +15 ~ total radiative heating rate (J m**-2) +16 ~ soil heat flux, surface (J m**-2) +17 ~ soil heat flux, bottom of layer (J m**-2) +29 clc fractional cloud cover ((0 - 1)) +30 ~ cloud cover, grid scale ((0 - 1)) +31 qc specific cloud water content (kg kg**-1) +32 ~ cloud water content, grid scale, vert integrated (kg m**-2) +33 qi specific cloud ice content, grid scale (kg kg**-1) +34 ~ cloud ice content, grid scale, vert integrated (kg m**-2) +35 ~ specific rainwater content, grid scale (kg kg**-1) +36 ~ specific snow content, grid scale (kg kg**-1) +37 ~ specific rainwater content, gs, vert. integrated (kg m**-2) +38 ~ specific snow content, gs, vert. integrated (kg m**-2) +41 twater total column water (kg m**-2) +42 ~ vert. integral of divergence of tot. water content (kg m**-2) +50 ch_cm_cl cloud covers CH_CM_CL (000...888) ((0 - 1)) +51 ~ cloud cover CH (0..8) ((0 - 1)) +52 ~ cloud cover CM (0..8) ((0 - 1)) +53 ~ cloud cover CL (0..8) ((0 - 1)) +54 ~ total cloud cover (0..8) ((0 - 1)) +55 ~ fog (0..8) ((0 - 1)) +56 ~ fog ((0 - 1)) +60 ~ cloud cover, convective cirrus ((0 - 1)) +61 ~ specific cloud water content, convective clouds (kg kg**-1) +62 ~ cloud water content, conv clouds, vert integrated (kg m**-2) +63 ~ specific cloud ice content, convective clouds (kg kg**-1) +64 ~ cloud ice content, conv clouds, vert integrated (kg m**-2) +65 ~ convective mass flux (kg s**-1 m**-2) +66 ~ Updraft velocity, convection (m s**-1) +67 ~ entrainment parameter, convection (m**-1) +68 hbas_con cloud base, convective clouds (above msl) (m) +69 htop_con cloud top, convective clouds (above msl) (m) +70 ~ convective layers (00...77) (BKE) ((0 - 1)) +71 ~ KO-index (dimensionless) +72 bas_con convection base index (dimensionless) +73 top_con convection top index (dimensionless) +74 dt_con convective temperature tendency (K s**-1) +75 dqv_con convective tendency of specific humidity (s**-1) +76 ~ convective tendency of total heat (J kg**-1 s**-1) +77 ~ convective tendency of total water (s**-1) +78 du_con convective momentum tendency (X-component) (m s**-2) +79 dv_con convective momentum tendency (Y-component) (m s**-2) +80 ~ convective vorticity tendency (s**-2) +81 ~ convective divergence tendency (s**-2) +82 htop_dc top of dry convection (above msl) (m) +83 ~ dry convection top index (dimensionless) +84 hzerocl height of 0 degree Celsius isotherm above msl (m) +85 snowlmt height of snow-fall limit (m) +99 qrs_gsp spec. content of precip. particles (kg kg**-1) +100 prr_gsp surface precipitation rate, rain, grid scale (kg s**-1 m**-2) +101 prs_gsp surface precipitation rate, snow, grid scale (kg s**-1 m**-2) +102 rain_gsp surface precipitation amount, rain, grid scale (kg m**-2) +111 prr_con surface precipitation rate, rain, convective (kg s**-1 m**-2) +112 prs_con surface precipitation rate, snow, convective (kg s**-1 m**-2) +113 rain_con surface precipitation amount, rain, convective (kg m**-2) +139 pp deviation of pressure from reference value (Pa) +150 ~ coefficient of horizontal diffusion (m**2 s**-1) +187 vmax_10m Maximum wind velocity (m s**-1) +200 w_i water content of interception store (kg m**-2) +203 t_snow snow temperature (K) +215 t_ice ice surface temperature (K) +241 cape_con convective available potential energy (J kg**-1) +255 ~ Indicates a missing value (~) diff --git a/definitions/grib1/2.98.210.table b/definitions/grib1/2.98.210.table index e1ed044bd..16d65a12b 100644 --- a/definitions/grib1/2.98.210.table +++ b/definitions/grib1/2.98.210.table @@ -1,227 +1,227 @@ # This file was automatically generated by ./param.pl -1 1 AERMR01 Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio (kg kg**-1) -2 2 AERMR02 Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio (kg kg**-1) -3 3 AERMR03 Sea Salt Aerosol (5 - 20 um) Mixing Ratio (kg kg**-1) -4 4 AERMR04 Dust Aerosol (0.03 - 0.55 um) Mixing Ratio (kg kg**-1) -5 5 AERMR05 Dust Aerosol (0.55 - 0.9 um) Mixing Ratio (kg kg**-1) -6 6 AERMR06 Dust Aerosol (0.9 - 20 um) Mixing Ratio (kg kg**-1) -7 7 AERMR07 Hydrophilic Organic Matter Aerosol Mixing Ratio (kg kg**-1) -8 8 AERMR08 Hydrophobic Organic Matter Aerosol Mixing Ratio (kg kg**-1) -9 9 AERMR09 Hydrophilic Black Carbon Aerosol Mixing Ratio (kg kg**-1) -10 10 AERMR10 Hydrophobic Black Carbon Aerosol Mixing Ratio (kg kg**-1) -11 11 AERMR11 Sulphate Aerosol Mixing Ratio (kg kg**-1) -12 12 AERMR12 SO2 precursor mixing ratio (kg kg**-1) -13 13 AERMR13 Volcanic ash aerosol mixing ratio (kg kg**-1) -14 14 AERMR14 Volcanic sulphate aerosol mixing ratio (kg kg**-1) -15 15 AERMR15 Volcanic SO2 precursor mixing ratio (kg kg**-1) -16 16 AERGN01 Aerosol type 1 source/gain accumulated (kg m**-2) -17 17 AERGN02 Aerosol type 2 source/gain accumulated (kg m**-2) -18 18 AERGN03 Aerosol type 3 source/gain accumulated (kg m**-2) -19 19 AERGN04 Aerosol type 4 source/gain accumulated (kg m**-2) -20 20 AERGN05 Aerosol type 5 source/gain accumulated (kg m**-2) -21 21 AERGN06 Aerosol type 6 source/gain accumulated (kg m**-2) -22 22 AERGN07 Aerosol type 7 source/gain accumulated (kg m**-2) -23 23 AERGN08 Aerosol type 8 source/gain accumulated (kg m**-2) -24 24 AERGN09 Aerosol type 9 source/gain accumulated (kg m**-2) -25 25 AERGN10 Aerosol type 10 source/gain accumulated (kg m**-2) -26 26 AERGN11 Aerosol type 11 source/gain accumulated (kg m**-2) -27 27 AERGN12 Aerosol type 12 source/gain accumulated (kg m**-2) -28 28 AERPR03 SO4 aerosol precursor mass mixing ratio (kg kg**-1) -29 29 AERWV01 Water vapour mixing ratio for hydrophilic aerosols in mode 1 (kg kg**-1) -30 30 AERWV02 Water vapour mixing ratio for hydrophilic aerosols in mode 2 (kg kg**-1) -31 31 AERLS01 Aerosol type 1 sink/loss accumulated (kg m**-2) -32 32 AERLS02 Aerosol type 2 sink/loss accumulated (kg m**-2) -33 33 AERLS03 Aerosol type 3 sink/loss accumulated (kg m**-2) -34 34 AERLS04 Aerosol type 4 sink/loss accumulated (kg m**-2) -35 35 AERLS05 Aerosol type 5 sink/loss accumulated (kg m**-2) -36 36 AERLS06 Aerosol type 6 sink/loss accumulated (kg m**-2) -37 37 AERLS07 Aerosol type 7 sink/loss accumulated (kg m**-2) -38 38 AERLS08 Aerosol type 8 sink/loss accumulated (kg m**-2) -39 39 AERLS09 Aerosol type 9 sink/loss accumulated (kg m**-2) -40 40 AERLS10 Aerosol type 10 sink/loss accumulated (kg m**-2) -41 41 AERLS11 Aerosol type 11 sink/loss accumulated (kg m**-2) -42 42 AERLS12 Aerosol type 12 sink/loss accumulated (kg m**-2) -43 43 EMDMS DMS surface emission (kg m**-2 s**-1) -44 44 AERWV03 Water vapour mixing ratio for hydrophilic aerosols in mode 3 (kg kg**-1) -45 45 AERWV04 Water vapour mixing ratio for hydrophilic aerosols in mode 4 (kg kg**-1) -46 46 AERPR Aerosol precursor mixing ratio (kg kg**-1) -47 47 AERSM Aerosol small mode mixing ratio (kg kg**-1) -48 48 AERLG Aerosol large mode mixing ratio (kg kg**-1) -49 49 AODPR Aerosol precursor optical depth (dimensionless) -50 50 AODSM Aerosol small mode optical depth (dimensionless) -51 51 AODLG Aerosol large mode optical depth (dimensionless) -52 52 AERDEP Dust emission potential (kg s**2 m**-5) -53 53 AERLTS Lifting threshold speed (m s**-1) -54 54 AERSCC Soil clay content (%) -55 55 - Experimental product (~) -56 56 - Experimental product (~) -57 57 OCNUC Mixing ration of organic carbon aerosol, nucleation mode (kg kg**-1) -58 58 MONOT Monoterpene precursor mixing ratio (kg kg**-1) -59 59 SOAPR Secondary organic precursor mixing ratio (kg kg**-1) -60 60 INJH Injection height (from IS4FIRES) (m) -61 61 CO2 Carbon Dioxide (kg kg**-1) -62 62 CH4 Methane (kg kg**-1) -63 63 N2O Nitrous oxide (kg kg**-1) -64 64 TCCO2 CO2 column-mean molar fraction (ppm) -65 65 TCCH4 CH4 column-mean molar fraction (ppb) -66 66 TCN2O Total column Nitrous oxide (kg m**-2) -67 67 CO2OF Ocean flux of Carbon Dioxide (kg m**-2 s**-1) -68 68 CO2NBF Natural biosphere flux of Carbon Dioxide (kg m**-2 s**-1) -69 69 CO2APF Anthropogenic emissions of Carbon Dioxide (kg m**-2 s**-1) -70 70 CH4F Methane Surface Fluxes (kg m**-2 s**-1) -71 71 KCH4 Methane loss rate due to radical hydroxyl (OH) (s**-1) -72 72 PM1 Particulate matter d < 1 um (kg m**-3) -73 73 PM2P5 Particulate matter d < 2.5 um (kg m**-3) -74 74 PM10 Particulate matter d < 10 um (kg m**-3) -79 79 VAFIRE Wildfire viewing angle of observation (deg) -80 80 CO2FIRE Wildfire flux of Carbon Dioxide (kg m**-2 s**-1) -81 81 COFIRE Wildfire flux of Carbon Monoxide (kg m**-2 s**-1) -82 82 CH4FIRE Wildfire flux of Methane (kg m**-2 s**-1) -83 83 NMHCFIRE Wildfire flux of Non-Methane Hydro-Carbons (kg m**-2 s**-1) -84 84 H2FIRE Wildfire flux of Hydrogen (kg m**-2 s**-1) -85 85 NOXFIRE Wildfire flux of Nitrogen Oxides NOx (kg m**-2 s**-1) -86 86 N2OFIRE Wildfire flux of Nitrous Oxide (kg m**-2 s**-1) -87 87 PM2P5FIRE Wildfire flux of Particulate Matter PM2.5 (kg m**-2 s**-1) -88 88 TPMFIRE Wildfire flux of Total Particulate Matter (kg m**-2 s**-1) -89 89 TCFIRE Wildfire flux of Total Carbon in Aerosols (kg m**-2 s**-1) -90 90 OCFIRE Wildfire flux of Organic Carbon (kg m**-2 s**-1) -91 91 BCFIRE Wildfire flux of Black Carbon (kg m**-2 s**-1) -92 92 CFIRE Wildfire overall flux of burnt Carbon (kg m**-2 s**-1) -93 93 C4FFIRE Wildfire fraction of C4 plants (dimensionless) -94 94 VEGFIRE Wildfire vegetation map index (dimensionless) -95 95 CCFIRE Wildfire Combustion Completeness (dimensionless) -96 96 FLFIRE Wildfire Fuel Load: Carbon per unit area (kg m**-2) -97 97 OFFIRE Wildfire fraction of area observed (dimensionless) -98 98 NOFRP Number of positive FRP pixels per grid cell (~) -99 99 FRPFIRE Wildfire radiative power (W m**-2) -100 100 CRFIRE Wildfire combustion rate (kg m**-2 s**-1) -101 101 MAXFRPFIRE Wildfire radiative power maximum (W) -102 102 SO2FIRE Wildfire flux of Sulfur Dioxide (kg m**-2 s**-1) -103 103 CH3OHFIRE Wildfire Flux of Methanol (CH3OH) (kg m**-2 s**-1) -104 104 C2H5OHFIRE Wildfire Flux of Ethanol (C2H5OH) (kg m**-2 s**-1) -105 105 C3H8FIRE Wildfire Flux of Propane (C3H8) (kg m**-2 s**-1) -106 106 C2H4FIRE Wildfire Flux of Ethene (C2H4) (kg m**-2 s**-1) -107 107 C3H6FIRE Wildfire Flux of Propene (C3H6) (kg m**-2 s**-1) -108 108 C5H8FIRE Wildfire Flux of Isoprene (C5H8) (kg m**-2 s**-1) -109 109 TERPENESFIRE Wildfire Flux of Terpenes (C5H8)n (kg m**-2 s**-1) -110 110 TOLUENEFIRE Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) (kg m**-2 s**-1) -111 111 HIALKENESFIRE Wildfire Flux of Higher Alkenes (CnH2n, C>=4) (kg m**-2 s**-1) -112 112 HIALKANESFIRE Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) (kg m**-2 s**-1) -113 113 CH2OFIRE Wildfire Flux of Formaldehyde (CH2O) (kg m**-2 s**-1) -114 114 C2H4OFIRE Wildfire Flux of Acetaldehyde (C2H4O) (kg m**-2 s**-1) -115 115 C3H6OFIRE Wildfire Flux of Acetone (C3H6O) (kg m**-2 s**-1) -116 116 NH3FIRE Wildfire Flux of Ammonia (NH3) (kg m**-2 s**-1) -117 117 C2H6SFIRE Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) (kg m**-2 s**-1) -118 118 C2H6FIRE Wildfire Flux of Ethane (C2H6) (kg m**-2 s**-1) -119 119 MAMI Mean altitude of maximum injection (m) -120 120 APT Altitude of plume top (m) -121 121 NO2 Nitrogen dioxide (kg kg**-1) -122 122 SO2 Sulphur dioxide (kg kg**-1) -123 123 CO Carbon monoxide (kg kg**-1) -124 124 HCHO Formaldehyde (kg kg**-1) -125 125 TCNO2 Total column Nitrogen dioxide (kg m**-2) -126 126 TCSO2 Total column Sulphur dioxide (kg m**-2) -127 127 TCCO Total column Carbon monoxide (kg m**-2) -128 128 TCHCHO Total column Formaldehyde (kg m**-2) -129 129 NOX Nitrogen Oxides (kg kg**-1) -130 130 TCNOX Total Column Nitrogen Oxides (kg m**-2) -131 131 GRG1 Reactive tracer 1 mass mixing ratio (kg kg**-1) -132 132 TCGRG1 Total column GRG tracer 1 (kg m**-2) -133 133 GRG2 Reactive tracer 2 mass mixing ratio (kg kg**-1) -134 134 TCGRG2 Total column GRG tracer 2 (kg m**-2) -135 135 GRG3 Reactive tracer 3 mass mixing ratio (kg kg**-1) -136 136 TCGRG3 Total column GRG tracer 3 (kg m**-2) -137 137 GRG4 Reactive tracer 4 mass mixing ratio (kg kg**-1) -138 138 TCGRG4 Total column GRG tracer 4 (kg m**-2) -139 139 GRG5 Reactive tracer 5 mass mixing ratio (kg kg**-1) -140 140 TCGRG5 Total column GRG tracer 5 (kg m**-2) -141 141 GRG6 Reactive tracer 6 mass mixing ratio (kg kg**-1) -142 142 TCGRG6 Total column GRG tracer 6 (kg m**-2) -143 143 GRG7 Reactive tracer 7 mass mixing ratio (kg kg**-1) -144 144 TCGRG7 Total column GRG tracer 7 (kg m**-2) -145 145 GRG8 Reactive tracer 8 mass mixing ratio (kg kg**-1) -146 146 TCGRG8 Total column GRG tracer 8 (kg m**-2) -147 147 GRG9 Reactive tracer 9 mass mixing ratio (kg kg**-1) -148 148 TCGRG9 Total column GRG tracer 9 (kg m**-2) -149 149 GRG10 Reactive tracer 10 mass mixing ratio (kg kg**-1) -150 150 TCGRG10 Total column GRG tracer 10 (kg m**-2) -151 151 SFNOX Surface flux Nitrogen oxides (kg m**-2 s**-1) -152 152 SFNO2 Surface flux Nitrogen dioxide (kg m**-2 s**-1) -153 153 SFSO2 Surface flux Sulphur dioxide (kg m**-2 s**-1) -154 154 SFCO2 Surface flux Carbon monoxide (kg m**-2 s**-1) -155 155 SFHCHO Surface flux Formaldehyde (kg m**-2 s**-1) -156 156 SFGO3 Surface flux GEMS Ozone (kg m**-2 s**-1) -157 157 SFGR1 Surface flux reactive tracer 1 (kg m**-2 s**-1) -158 158 SFGR2 Surface flux reactive tracer 2 (kg m**-2 s**-1) -159 159 SFGR3 Surface flux reactive tracer 3 (kg m**-2 s**-1) -160 160 SFGR4 Surface flux reactive tracer 4 (kg m**-2 s**-1) -161 161 SFGR5 Surface flux reactive tracer 5 (kg m**-2 s**-1) -162 162 SFGR6 Surface flux reactive tracer 6 (kg m**-2 s**-1) -163 163 SFGR7 Surface flux reactive tracer 7 (kg m**-2 s**-1) -164 164 SFGR8 Surface flux reactive tracer 8 (kg m**-2 s**-1) -165 165 SFGR9 Surface flux reactive tracer 9 (kg m**-2 s**-1) -166 166 SFGR10 Surface flux reactive tracer 10 (kg m**-2 s**-1) -181 181 RA Radon (kg kg**-1) -182 182 SF6 Sulphur Hexafluoride (kg kg**-1) -183 183 TCRA Total column Radon (kg m**-2) -184 184 TCSF6 Total column Sulphur Hexafluoride (kg m**-2) -185 185 SF6APF Anthropogenic Emissions of Sulphur Hexafluoride (kg m**-2 s**-1) -186 186 ALUVPI UV visible albedo for direct radiation, isotropic component (0 - 1) -187 187 ALUVPV UV visible albedo for direct radiation, volumetric component (0 - 1) -188 188 ALUVPG UV visible albedo for direct radiation, geometric component (0 - 1) -189 189 ALNIPI Near IR albedo for direct radiation, isotropic component (0 - 1) -190 190 ALNIPV Near IR albedo for direct radiation, volumetric component (0 - 1) -191 191 ALNIPG Near IR albedo for direct radiation, geometric component (0 - 1) -192 192 ALUVDI UV visible albedo for diffuse radiation, isotropic component (0 - 1) -193 193 ALUVDV UV visible albedo for diffuse radiation, volumetric component (0 - 1) -194 194 ALUVDG UV visible albedo for diffuse radiation, geometric component (0 - 1) -195 195 ALNIDI Near IR albedo for diffuse radiation, isotropic component (0 - 1) -196 196 ALNIDV Near IR albedo for diffuse radiation, volumetric component (0 - 1) -197 197 ALNIDG Near IR albedo for diffuse radiation, geometric component (0 - 1) -203 203 GO3 GEMS Ozone (kg kg**-1) -206 206 GTCO3 GEMS Total column ozone (kg m**-2) -207 207 AOD550 Total Aerosol Optical Depth at 550nm (~) -208 208 SSAOD550 Sea Salt Aerosol Optical Depth at 550nm (~) -209 209 DUAOD550 Dust Aerosol Optical Depth at 550nm (~) -210 210 OMAOD550 Organic Matter Aerosol Optical Depth at 550nm (~) -211 211 BCAOD550 Black Carbon Aerosol Optical Depth at 550nm (~) -212 212 SUAOD550 Sulphate Aerosol Optical Depth at 550nm (~) -213 213 AOD469 Total Aerosol Optical Depth at 469nm (~) -214 214 AOD670 Total Aerosol Optical Depth at 670nm (~) -215 215 AOD865 Total Aerosol Optical Depth at 865nm (~) -216 216 AOD1240 Total Aerosol Optical Depth at 1240nm (~) -217 217 AOD340 Total aerosol optical depth at 340 nm (~) -218 218 AOD355 Total aerosol optical depth at 355 nm (~) -219 219 AOD380 Total aerosol optical depth at 380 nm (~) -220 220 AOD400 Total aerosol optical depth at 400 nm (~) -221 221 AOD440 Total aerosol optical depth at 440 nm (~) -222 222 AOD500 Total aerosol optical depth at 500 nm (~) -223 223 AOD532 Total aerosol optical depth at 532 nm (~) -224 224 AOD645 Total aerosol optical depth at 645 nm (~) -225 225 AOD800 Total aerosol optical depth at 800 nm (~) -226 226 AOD858 Total aerosol optical depth at 858 nm (~) -227 227 AOD1020 Total aerosol optical depth at 1020 nm (~) -228 228 AOD1064 Total aerosol optical depth at 1064 nm (~) -229 229 AOD1640 Total aerosol optical depth at 1640 nm (~) -230 230 AOD2130 Total aerosol optical depth at 2130 nm (~) -231 231 C7H8FIRE Wildfire Flux of Toluene (C7H8) (kg m**-2 s**-1) -232 232 C6H6FIRE Wildfire Flux of Benzene (C6H6) (kg m**-2 s**-1) -233 233 C8H10FIRE Wildfire Flux of Xylene (C8H10) (kg m**-2 s**-1) -234 234 C4H8FIRE Wildfire Flux of Butenes (C4H8) (kg m**-2 s**-1) -235 235 C5H10FIRE Wildfire Flux of Pentenes (C5H10) (kg m**-2 s**-1) -236 236 C6H12FIRE Wildfire Flux of Hexene (C6H12) (kg m**-2 s**-1) -237 237 C8H16FIRE Wildfire Flux of Octene (C8H16) (kg m**-2 s**-1) -238 238 C4H10FIRE Wildfire Flux of Butanes (C4H10) (kg m**-2 s**-1) -239 239 C5H12FIRE Wildfire Flux of Pentanes (C5H12) (kg m**-2 s**-1) -240 240 C6H14FIRE Wildfire Flux of Hexanes (C6H14) (kg m**-2 s**-1) -241 241 C7H16FIRE Wildfire Flux of Heptane (C7H16) (kg m**-2 s**-1) -242 242 APB Altitude of plume bottom (m) -243 243 VSUAOD550 Volcanic sulphate aerosol optical depth at 550 nm (~) -244 244 VASHAOD550 Volcanic ash optical depth at 550 nm (~) -245 245 TAEDEC550 Profile of total aerosol dry extinction coefficient (m**-1) -246 246 TAEDAB550 Profile of total aerosol dry absorption coefficient (m**-1) -247 247 AERMR16 Nitrate fine mode aerosol mass mixing ratio (kg kg**-1) -248 248 AERMR17 Nitrate coarse mode aerosol mass mixing ratio (kg kg**-1) -249 249 AERMR18 Ammonium aerosol mass mixing ratio (kg kg**-1) -250 250 NIAOD550 Nitrate aerosol optical depth at 550 nm (dimensionless) -251 251 AMAOD550 Ammonium aerosol optical depth at 550 nm (dimensionless) +1 aermr01 Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio (kg kg**-1) +2 aermr02 Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio (kg kg**-1) +3 aermr03 Sea Salt Aerosol (5 - 20 um) Mixing Ratio (kg kg**-1) +4 aermr04 Dust Aerosol (0.03 - 0.55 um) Mixing Ratio (kg kg**-1) +5 aermr05 Dust Aerosol (0.55 - 0.9 um) Mixing Ratio (kg kg**-1) +6 aermr06 Dust Aerosol (0.9 - 20 um) Mixing Ratio (kg kg**-1) +7 aermr07 Hydrophilic Organic Matter Aerosol Mixing Ratio (kg kg**-1) +8 aermr08 Hydrophobic Organic Matter Aerosol Mixing Ratio (kg kg**-1) +9 aermr09 Hydrophilic Black Carbon Aerosol Mixing Ratio (kg kg**-1) +10 aermr10 Hydrophobic Black Carbon Aerosol Mixing Ratio (kg kg**-1) +11 aermr11 Sulphate Aerosol Mixing Ratio (kg kg**-1) +12 aermr12 SO2 precursor mixing ratio (kg kg**-1) +13 aermr13 Volcanic ash aerosol mixing ratio (kg kg**-1) +14 aermr14 Volcanic sulphate aerosol mixing ratio (kg kg**-1) +15 aermr15 Volcanic SO2 precursor mixing ratio (kg kg**-1) +16 aergn01 Aerosol type 1 source/gain accumulated (kg m**-2) +17 aergn02 Aerosol type 2 source/gain accumulated (kg m**-2) +18 aergn03 Aerosol type 3 source/gain accumulated (kg m**-2) +19 aergn04 Aerosol type 4 source/gain accumulated (kg m**-2) +20 aergn05 Aerosol type 5 source/gain accumulated (kg m**-2) +21 aergn06 Aerosol type 6 source/gain accumulated (kg m**-2) +22 aergn07 Aerosol type 7 source/gain accumulated (kg m**-2) +23 aergn08 Aerosol type 8 source/gain accumulated (kg m**-2) +24 aergn09 Aerosol type 9 source/gain accumulated (kg m**-2) +25 aergn10 Aerosol type 10 source/gain accumulated (kg m**-2) +26 aergn11 Aerosol type 11 source/gain accumulated (kg m**-2) +27 aergn12 Aerosol type 12 source/gain accumulated (kg m**-2) +28 aerpr03 SO4 aerosol precursor mass mixing ratio (kg kg**-1) +29 aerwv01 Water vapour mixing ratio for hydrophilic aerosols in mode 1 (kg kg**-1) +30 aerwv02 Water vapour mixing ratio for hydrophilic aerosols in mode 2 (kg kg**-1) +31 aerls01 Aerosol type 1 sink/loss accumulated (kg m**-2) +32 aerls02 Aerosol type 2 sink/loss accumulated (kg m**-2) +33 aerls03 Aerosol type 3 sink/loss accumulated (kg m**-2) +34 aerls04 Aerosol type 4 sink/loss accumulated (kg m**-2) +35 aerls05 Aerosol type 5 sink/loss accumulated (kg m**-2) +36 aerls06 Aerosol type 6 sink/loss accumulated (kg m**-2) +37 aerls07 Aerosol type 7 sink/loss accumulated (kg m**-2) +38 aerls08 Aerosol type 8 sink/loss accumulated (kg m**-2) +39 aerls09 Aerosol type 9 sink/loss accumulated (kg m**-2) +40 aerls10 Aerosol type 10 sink/loss accumulated (kg m**-2) +41 aerls11 Aerosol type 11 sink/loss accumulated (kg m**-2) +42 aerls12 Aerosol type 12 sink/loss accumulated (kg m**-2) +43 emdms DMS surface emission (kg m**-2 s**-1) +44 aerwv03 Water vapour mixing ratio for hydrophilic aerosols in mode 3 (kg kg**-1) +45 aerwv04 Water vapour mixing ratio for hydrophilic aerosols in mode 4 (kg kg**-1) +46 aerpr Aerosol precursor mixing ratio (kg kg**-1) +47 aersm Aerosol small mode mixing ratio (kg kg**-1) +48 aerlg Aerosol large mode mixing ratio (kg kg**-1) +49 aodpr Aerosol precursor optical depth (dimensionless) +50 aodsm Aerosol small mode optical depth (dimensionless) +51 aodlg Aerosol large mode optical depth (dimensionless) +52 aerdep Dust emission potential (kg s**2 m**-5) +53 aerlts Lifting threshold speed (m s**-1) +54 aerscc Soil clay content (%) +55 ~ Experimental product (~) +56 ~ Experimental product (~) +57 ocnuc Mixing ration of organic carbon aerosol, nucleation mode (kg kg**-1) +58 monot Monoterpene precursor mixing ratio (kg kg**-1) +59 soapr Secondary organic precursor mixing ratio (kg kg**-1) +60 injh Injection height (from IS4FIRES) (m) +61 co2 Carbon Dioxide (kg kg**-1) +62 ch4 Methane (kg kg**-1) +63 n2o Nitrous oxide (kg kg**-1) +64 tcco2 CO2 column-mean molar fraction (ppm) +65 tcch4 CH4 column-mean molar fraction (ppb) +66 tcn2o Total column Nitrous oxide (kg m**-2) +67 co2of Ocean flux of Carbon Dioxide (kg m**-2 s**-1) +68 co2nbf Natural biosphere flux of Carbon Dioxide (kg m**-2 s**-1) +69 co2apf Anthropogenic emissions of Carbon Dioxide (kg m**-2 s**-1) +70 ch4f Methane Surface Fluxes (kg m**-2 s**-1) +71 kch4 Methane loss rate due to radical hydroxyl (OH) (s**-1) +72 pm1 Particulate matter d < 1 um (kg m**-3) +73 pm2p5 Particulate matter d < 2.5 um (kg m**-3) +74 pm10 Particulate matter d < 10 um (kg m**-3) +79 vafire Wildfire viewing angle of observation (deg) +80 co2fire Wildfire flux of Carbon Dioxide (kg m**-2 s**-1) +81 cofire Wildfire flux of Carbon Monoxide (kg m**-2 s**-1) +82 ch4fire Wildfire flux of Methane (kg m**-2 s**-1) +83 nmhcfire Wildfire flux of Non-Methane Hydro-Carbons (kg m**-2 s**-1) +84 h2fire Wildfire flux of Hydrogen (kg m**-2 s**-1) +85 noxfire Wildfire flux of Nitrogen Oxides NOx (kg m**-2 s**-1) +86 n2ofire Wildfire flux of Nitrous Oxide (kg m**-2 s**-1) +87 pm2p5fire Wildfire flux of Particulate Matter PM2.5 (kg m**-2 s**-1) +88 tpmfire Wildfire flux of Total Particulate Matter (kg m**-2 s**-1) +89 tcfire Wildfire flux of Total Carbon in Aerosols (kg m**-2 s**-1) +90 ocfire Wildfire flux of Organic Carbon (kg m**-2 s**-1) +91 bcfire Wildfire flux of Black Carbon (kg m**-2 s**-1) +92 cfire Wildfire overall flux of burnt Carbon (kg m**-2 s**-1) +93 c4ffire Wildfire fraction of C4 plants (dimensionless) +94 vegfire Wildfire vegetation map index (dimensionless) +95 ccfire Wildfire Combustion Completeness (dimensionless) +96 flfire Wildfire Fuel Load: Carbon per unit area (kg m**-2) +97 offire Wildfire fraction of area observed (dimensionless) +98 nofrp Number of positive FRP pixels per grid cell (~) +99 frpfire Wildfire radiative power (W m**-2) +100 crfire Wildfire combustion rate (kg m**-2 s**-1) +101 maxfrpfire Wildfire radiative power maximum (W) +102 so2fire Wildfire flux of Sulfur Dioxide (kg m**-2 s**-1) +103 ch3ohfire Wildfire Flux of Methanol (CH3OH) (kg m**-2 s**-1) +104 c2h5ohfire Wildfire Flux of Ethanol (C2H5OH) (kg m**-2 s**-1) +105 c3h8fire Wildfire Flux of Propane (C3H8) (kg m**-2 s**-1) +106 c2h4fire Wildfire Flux of Ethene (C2H4) (kg m**-2 s**-1) +107 c3h6fire Wildfire Flux of Propene (C3H6) (kg m**-2 s**-1) +108 c5h8fire Wildfire Flux of Isoprene (C5H8) (kg m**-2 s**-1) +109 terpenesfire Wildfire Flux of Terpenes (C5H8)n (kg m**-2 s**-1) +110 toluenefire Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) (kg m**-2 s**-1) +111 hialkenesfire Wildfire Flux of Higher Alkenes (CnH2n, C>=4) (kg m**-2 s**-1) +112 hialkanesfire Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) (kg m**-2 s**-1) +113 ch2ofire Wildfire Flux of Formaldehyde (CH2O) (kg m**-2 s**-1) +114 c2h4ofire Wildfire Flux of Acetaldehyde (C2H4O) (kg m**-2 s**-1) +115 c3h6ofire Wildfire Flux of Acetone (C3H6O) (kg m**-2 s**-1) +116 nh3fire Wildfire Flux of Ammonia (NH3) (kg m**-2 s**-1) +117 c2h6sfire Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) (kg m**-2 s**-1) +118 c2h6fire Wildfire Flux of Ethane (C2H6) (kg m**-2 s**-1) +119 mami Mean altitude of maximum injection (m) +120 apt Altitude of plume top (m) +121 no2 Nitrogen dioxide (kg kg**-1) +122 so2 Sulphur dioxide (kg kg**-1) +123 co Carbon monoxide (kg kg**-1) +124 hcho Formaldehyde (kg kg**-1) +125 tcno2 Total column Nitrogen dioxide (kg m**-2) +126 tcso2 Total column Sulphur dioxide (kg m**-2) +127 tcco Total column Carbon monoxide (kg m**-2) +128 tchcho Total column Formaldehyde (kg m**-2) +129 nox Nitrogen Oxides (kg kg**-1) +130 tcnox Total Column Nitrogen Oxides (kg m**-2) +131 grg1 Reactive tracer 1 mass mixing ratio (kg kg**-1) +132 tcgrg1 Total column GRG tracer 1 (kg m**-2) +133 grg2 Reactive tracer 2 mass mixing ratio (kg kg**-1) +134 tcgrg2 Total column GRG tracer 2 (kg m**-2) +135 grg3 Reactive tracer 3 mass mixing ratio (kg kg**-1) +136 tcgrg3 Total column GRG tracer 3 (kg m**-2) +137 grg4 Reactive tracer 4 mass mixing ratio (kg kg**-1) +138 tcgrg4 Total column GRG tracer 4 (kg m**-2) +139 grg5 Reactive tracer 5 mass mixing ratio (kg kg**-1) +140 tcgrg5 Total column GRG tracer 5 (kg m**-2) +141 grg6 Reactive tracer 6 mass mixing ratio (kg kg**-1) +142 tcgrg6 Total column GRG tracer 6 (kg m**-2) +143 grg7 Reactive tracer 7 mass mixing ratio (kg kg**-1) +144 tcgrg7 Total column GRG tracer 7 (kg m**-2) +145 grg8 Reactive tracer 8 mass mixing ratio (kg kg**-1) +146 tcgrg8 Total column GRG tracer 8 (kg m**-2) +147 grg9 Reactive tracer 9 mass mixing ratio (kg kg**-1) +148 tcgrg9 Total column GRG tracer 9 (kg m**-2) +149 grg10 Reactive tracer 10 mass mixing ratio (kg kg**-1) +150 tcgrg10 Total column GRG tracer 10 (kg m**-2) +151 sfnox Surface flux Nitrogen oxides (kg m**-2 s**-1) +152 sfno2 Surface flux Nitrogen dioxide (kg m**-2 s**-1) +153 sfso2 Surface flux Sulphur dioxide (kg m**-2 s**-1) +154 sfco2 Surface flux Carbon monoxide (kg m**-2 s**-1) +155 sfhcho Surface flux Formaldehyde (kg m**-2 s**-1) +156 sfgo3 Surface flux GEMS Ozone (kg m**-2 s**-1) +157 sfgr1 Surface flux reactive tracer 1 (kg m**-2 s**-1) +158 sfgr2 Surface flux reactive tracer 2 (kg m**-2 s**-1) +159 sfgr3 Surface flux reactive tracer 3 (kg m**-2 s**-1) +160 sfgr4 Surface flux reactive tracer 4 (kg m**-2 s**-1) +161 sfgr5 Surface flux reactive tracer 5 (kg m**-2 s**-1) +162 sfgr6 Surface flux reactive tracer 6 (kg m**-2 s**-1) +163 sfgr7 Surface flux reactive tracer 7 (kg m**-2 s**-1) +164 sfgr8 Surface flux reactive tracer 8 (kg m**-2 s**-1) +165 sfgr9 Surface flux reactive tracer 9 (kg m**-2 s**-1) +166 sfgr10 Surface flux reactive tracer 10 (kg m**-2 s**-1) +181 ra Radon (kg kg**-1) +182 sf6 Sulphur Hexafluoride (kg kg**-1) +183 tcra Total column Radon (kg m**-2) +184 tcsf6 Total column Sulphur Hexafluoride (kg m**-2) +185 sf6apf Anthropogenic Emissions of Sulphur Hexafluoride (kg m**-2 s**-1) +186 aluvpi UV visible albedo for direct radiation, isotropic component ((0 - 1)) +187 aluvpv UV visible albedo for direct radiation, volumetric component ((0 - 1)) +188 aluvpg UV visible albedo for direct radiation, geometric component ((0 - 1)) +189 alnipi Near IR albedo for direct radiation, isotropic component ((0 - 1)) +190 alnipv Near IR albedo for direct radiation, volumetric component ((0 - 1)) +191 alnipg Near IR albedo for direct radiation, geometric component ((0 - 1)) +192 aluvdi UV visible albedo for diffuse radiation, isotropic component ((0 - 1)) +193 aluvdv UV visible albedo for diffuse radiation, volumetric component ((0 - 1)) +194 aluvdg UV visible albedo for diffuse radiation, geometric component ((0 - 1)) +195 alnidi Near IR albedo for diffuse radiation, isotropic component ((0 - 1)) +196 alnidv Near IR albedo for diffuse radiation, volumetric component ((0 - 1)) +197 alnidg Near IR albedo for diffuse radiation, geometric component ((0 - 1)) +203 go3 GEMS Ozone (kg kg**-1) +206 gtco3 GEMS Total column ozone (kg m**-2) +207 aod550 Total Aerosol Optical Depth at 550nm (~) +208 ssaod550 Sea Salt Aerosol Optical Depth at 550nm (~) +209 duaod550 Dust Aerosol Optical Depth at 550nm (~) +210 omaod550 Organic Matter Aerosol Optical Depth at 550nm (~) +211 bcaod550 Black Carbon Aerosol Optical Depth at 550nm (~) +212 suaod550 Sulphate Aerosol Optical Depth at 550nm (~) +213 aod469 Total Aerosol Optical Depth at 469nm (~) +214 aod670 Total Aerosol Optical Depth at 670nm (~) +215 aod865 Total Aerosol Optical Depth at 865nm (~) +216 aod1240 Total Aerosol Optical Depth at 1240nm (~) +217 aod340 Total aerosol optical depth at 340 nm (~) +218 aod355 Total aerosol optical depth at 355 nm (~) +219 aod380 Total aerosol optical depth at 380 nm (~) +220 aod400 Total aerosol optical depth at 400 nm (~) +221 aod440 Total aerosol optical depth at 440 nm (~) +222 aod500 Total aerosol optical depth at 500 nm (~) +223 aod532 Total aerosol optical depth at 532 nm (~) +224 aod645 Total aerosol optical depth at 645 nm (~) +225 aod800 Total aerosol optical depth at 800 nm (~) +226 aod858 Total aerosol optical depth at 858 nm (~) +227 aod1020 Total aerosol optical depth at 1020 nm (~) +228 aod1064 Total aerosol optical depth at 1064 nm (~) +229 aod1640 Total aerosol optical depth at 1640 nm (~) +230 aod2130 Total aerosol optical depth at 2130 nm (~) +231 c7h8fire Wildfire Flux of Toluene (C7H8) (kg m**-2 s**-1) +232 c6h6fire Wildfire Flux of Benzene (C6H6) (kg m**-2 s**-1) +233 c8h10fire Wildfire Flux of Xylene (C8H10) (kg m**-2 s**-1) +234 c4h8fire Wildfire Flux of Butenes (C4H8) (kg m**-2 s**-1) +235 c5h10fire Wildfire Flux of Pentenes (C5H10) (kg m**-2 s**-1) +236 c6h12fire Wildfire Flux of Hexene (C6H12) (kg m**-2 s**-1) +237 c8h16fire Wildfire Flux of Octene (C8H16) (kg m**-2 s**-1) +238 c4h10fire Wildfire Flux of Butanes (C4H10) (kg m**-2 s**-1) +239 c5h12fire Wildfire Flux of Pentanes (C5H12) (kg m**-2 s**-1) +240 c6h14fire Wildfire Flux of Hexanes (C6H14) (kg m**-2 s**-1) +241 c7h16fire Wildfire Flux of Heptane (C7H16) (kg m**-2 s**-1) +242 apb Altitude of plume bottom (m) +243 vsuaod550 Volcanic sulphate aerosol optical depth at 550 nm (~) +244 vashaod550 Volcanic ash optical depth at 550 nm (~) +245 taedec550 Profile of total aerosol dry extinction coefficient (m**-1) +246 taedab550 Profile of total aerosol dry absorption coefficient (m**-1) +247 aermr16 Nitrate fine mode aerosol mass mixing ratio (kg kg**-1) +248 aermr17 Nitrate coarse mode aerosol mass mixing ratio (kg kg**-1) +249 aermr18 Ammonium aerosol mass mixing ratio (kg kg**-1) +250 niaod550 Nitrate aerosol optical depth at 550 nm (dimensionless) +251 amaod550 Ammonium aerosol optical depth at 550 nm (dimensionless) diff --git a/definitions/grib1/2.98.211.table b/definitions/grib1/2.98.211.table index cc6dacc84..9c780c572 100644 --- a/definitions/grib1/2.98.211.table +++ b/definitions/grib1/2.98.211.table @@ -1,172 +1,172 @@ # This file was automatically generated by ./param.pl -1 1 AERMR01DIFF Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio (kg kg**-1) -2 2 AERMR02DIFF Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio (kg kg**-1) -3 3 AERMR03DIFF Sea Salt Aerosol (5 - 20 um) Mixing Ratio (kg kg**-1) -4 4 AERMR04DIFF Dust Aerosol (0.03 - 0.55 um) Mixing Ratio (kg kg**-1) -5 5 AERMR05DIFF Dust Aerosol (0.55 - 0.9 um) Mixing Ratio (kg kg**-1) -6 6 AERMR06DIFF Dust Aerosol (0.9 - 20 um) Mixing Ratio (kg kg**-1) -7 7 AERMR07DIFF Hydrophilic Organic Matter Aerosol Mixing Ratio (kg kg**-1) -8 8 AERMR08DIFF Hydrophobic Organic Matter Aerosol Mixing Ratio (kg kg**-1) -9 9 AERMR09DIFF Hydrophilic Black Carbon Aerosol Mixing Ratio (kg kg**-1) -10 10 AERMR10DIFF Hydrophobic Black Carbon Aerosol Mixing Ratio (kg kg**-1) -11 11 AERMR11DIFF Sulphate Aerosol Mixing Ratio (kg kg**-1) -12 12 AERMR12DIFF Aerosol type 12 mixing ratio (kg kg**-1) -13 13 AERMR13DIFF Aerosol type 13 mass mixing ratio (kg kg**-1) -14 14 AERMR14DIFF Aerosol type 14 mass mixing ratio (kg kg**-1) -15 15 AERMR15DIFF Aerosol type 15 mass mixing ratio (kg kg**-1) -16 16 AERGN01DIFF Aerosol type 1 source/gain accumulated (kg m**-2) -17 17 AERGN02DIFF Aerosol type 2 source/gain accumulated (kg m**-2) -18 18 AERGN03DIFF Aerosol type 3 source/gain accumulated (kg m**-2) -19 19 AERGN04DIFF Aerosol type 4 source/gain accumulated (kg m**-2) -20 20 AERGN05DIFF Aerosol type 5 source/gain accumulated (kg m**-2) -21 21 AERGN06DIFF Aerosol type 6 source/gain accumulated (kg m**-2) -22 22 AERGN07DIFF Aerosol type 7 source/gain accumulated (kg m**-2) -23 23 AERGN08DIFF Aerosol type 8 source/gain accumulated (kg m**-2) -24 24 AERGN09DIFF Aerosol type 9 source/gain accumulated (kg m**-2) -25 25 AERGN10DIFF Aerosol type 10 source/gain accumulated (kg m**-2) -26 26 AERGN11DIFF Aerosol type 11 source/gain accumulated (kg m**-2) -27 27 AERGN12DIFF Aerosol type 12 source/gain accumulated (kg m**-2) -28 28 AERPR03DIFF SO4 aerosol precursor mass mixing ratio (kg kg**-1) -29 29 AERWV01DIFF Water vapour mixing ratio for hydrophilic aerosols in mode 1 (kg kg**-1) -30 30 AERWV02DIFF Water vapour mixing ratio for hydrophilic aerosols in mode 2 (kg kg**-1) -31 31 AERLS01DIFF Aerosol type 1 sink/loss accumulated (kg m**-2) -32 32 AERLS02DIFF Aerosol type 2 sink/loss accumulated (kg m**-2) -33 33 AERLS03DIFF Aerosol type 3 sink/loss accumulated (kg m**-2) -34 34 AERLS04DIFF Aerosol type 4 sink/loss accumulated (kg m**-2) -35 35 AERLS05DIFF Aerosol type 5 sink/loss accumulated (kg m**-2) -36 36 AERLS06DIFF Aerosol type 6 sink/loss accumulated (kg m**-2) -37 37 AERLS07DIFF Aerosol type 7 sink/loss accumulated (kg m**-2) -38 38 AERLS08DIFF Aerosol type 8 sink/loss accumulated (kg m**-2) -39 39 AERLS09DIFF Aerosol type 9 sink/loss accumulated (kg m**-2) -40 40 AERLS10DIFF Aerosol type 10 sink/loss accumulated (kg m**-2) -41 41 AERLS11DIFF Aerosol type 11 sink/loss accumulated (kg m**-2) -42 42 AERLS12DIFF Aerosol type 12 sink/loss accumulated (kg m**-2) -43 43 EMDMSDIFF DMS surface emission (kg m**-2 s**-1) -44 44 AERWV03DIFF Water vapour mixing ratio for hydrophilic aerosols in mode 3 (kg kg**-1) -45 45 AERWV04DIFF Water vapour mixing ratio for hydrophilic aerosols in mode 4 (kg kg**-1) -46 46 AERPRDIFF Aerosol precursor mixing ratio (kg kg**-1) -47 47 AERSMDIFF Aerosol small mode mixing ratio (kg kg**-1) -48 48 AERLGDIFF Aerosol large mode mixing ratio (kg kg**-1) -49 49 AODPRDIFF Aerosol precursor optical depth (dimensionless) -50 50 AODSMDIFF Aerosol small mode optical depth (dimensionless) -51 51 AODLGDIFF Aerosol large mode optical depth (dimensionless) -52 52 AERDEPDIFF Dust emission potential (kg s**2 m**-5) -53 53 AERLTSDIFF Lifting threshold speed (m s**-1) -54 54 AERSCCDIFF Soil clay content (%) -55 55 - Experimental product (~) -56 56 - Experimental product (~) -61 61 CO2DIFF Carbon Dioxide (kg kg**-1) -62 62 CH4DIFF Methane (kg kg**-1) -63 63 N2ODIFF Nitrous oxide (kg kg**-1) -64 64 TCCO2DIFF Total column Carbon Dioxide (kg m**-2) -65 65 TCCH4DIFF Total column Methane (kg m**-2) -66 66 TCN2ODIFF Total column Nitrous oxide (kg m**-2) -67 67 CO2OFDIFF Ocean flux of Carbon Dioxide (kg m**-2 s**-1) -68 68 CO2NBFDIFF Natural biosphere flux of Carbon Dioxide (kg m**-2 s**-1) -69 69 CO2APFDIFF Anthropogenic emissions of Carbon Dioxide (kg m**-2 s**-1) -70 70 CH4FDIFF Methane Surface Fluxes (kg m**-2 s**-1) -71 71 KCH4DIFF Methane loss rate due to radical hydroxyl (OH) (s**-1) -80 80 CO2FIREDIFF Wildfire flux of Carbon Dioxide (kg m**-2 s**-1) -81 81 COFIREDIFF Wildfire flux of Carbon Monoxide (kg m**-2 s**-1) -82 82 CH4FIREDIFF Wildfire flux of Methane (kg m**-2 s**-1) -83 83 NMHCFIREDIFF Wildfire flux of Non-Methane Hydro-Carbons (kg m**-2 s**-1) -84 84 H2FIREDIFF Wildfire flux of Hydrogen (kg m**-2 s**-1) -85 85 NOXFIREDIFF Wildfire flux of Nitrogen Oxides NOx (kg m**-2 s**-1) -86 86 N2OFIREDIFF Wildfire flux of Nitrous Oxide (kg m**-2 s**-1) -87 87 PM2P5FIREDIFF Wildfire flux of Particulate Matter PM2.5 (kg m**-2 s**-1) -88 88 TPMFIREDIFF Wildfire flux of Total Particulate Matter (kg m**-2 s**-1) -89 89 TCFIREDIFF Wildfire flux of Total Carbon in Aerosols (kg m**-2 s**-1) -90 90 OCFIREDIFF Wildfire flux of Organic Carbon (kg m**-2 s**-1) -91 91 BCFIREDIFF Wildfire flux of Black Carbon (kg m**-2 s**-1) -92 92 CFIREDIFF Wildfire overall flux of burnt Carbon (kg m**-2 s**-1) -93 93 C4FFIREDIFF Wildfire fraction of C4 plants (dimensionless) -94 94 VEGFIREDIFF Wildfire vegetation map index (dimensionless) -95 95 CCFIREDIFF Wildfire Combustion Completeness (dimensionless) -96 96 FLFIREDIFF Wildfire Fuel Load: Carbon per unit area (kg m**-2) -97 97 OFFIREDIFF Wildfire fraction of area observed (dimensionless) -98 98 OAFIREDIFF Wildfire observed area (m**2) -99 99 FRPFIREDIFF Wildfire radiative power (W m**-2) -100 100 CRFIREDIFF Wildfire combustion rate (kg m**-2 s**-1) -101 101 MAXFRPFIREDIFF Wildfire radiative power maximum (W) -102 102 SO2FIREDIFF Wildfire flux of Sulfur Dioxide (kg m**-2 s**-1) -103 103 CH3OHFIREDIFF Wildfire Flux of Methanol (CH3OH) (kg m**-2 s**-1) -104 104 C2H5OHFIREDIFF Wildfire Flux of Ethanol (C2H5OH) (kg m**-2 s**-1) -105 105 C3H8FIREDIFF Wildfire Flux of Propane (C3H8) (kg m**-2 s**-1) -106 106 C2H4FIREDIFF Wildfire Flux of Ethene (C2H4) (kg m**-2 s**-1) -107 107 C3H6FIREDIFF Wildfire Flux of Propene (C3H6) (kg m**-2 s**-1) -108 108 C5H8FIREDIFF Wildfire Flux of Isoprene (C5H8) (kg m**-2 s**-1) -109 109 TERPENESFIREDIFF Wildfire Flux of Terpenes (C5H8)n (kg m**-2 s**-1) -110 110 TOLUENEFIREDIFF Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) (kg m**-2 s**-1) -111 111 HIALKENESFIREDIFF Wildfire Flux of Higher Alkenes (CnH2n, C>=4) (kg m**-2 s**-1) -112 112 HIALKANESFIREDIFF Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) (kg m**-2 s**-1) -113 113 CH2OFIREDIFF Wildfire Flux of Formaldehyde (CH2O) (kg m**-2 s**-1) -114 114 C2H4OFIREDIFF Wildfire Flux of Acetaldehyde (C2H4O) (kg m**-2 s**-1) -115 115 C3H6OFIREDIFF Wildfire Flux of Acetone (C3H6O) (kg m**-2 s**-1) -116 116 NH3FIREDIFF Wildfire Flux of Ammonia (NH3) (kg m**-2 s**-1) -117 117 C2H6SFIREDIFF Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) (kg m**-2 s**-1) -118 118 C2H6FIREDIFF Wildfire Flux of Ethane (C2H6) (kg m**-2 s**-1) -119 119 ALEDIFF Altitude of emitter (m) -120 120 APTDIFF Altitude of plume top (m) -121 121 NO2DIFF Nitrogen dioxide (kg kg**-1) -122 122 SO2DIFF Sulphur dioxide (kg kg**-1) -123 123 CODIFF Carbon monoxide (kg kg**-1) -124 124 HCHODIFF Formaldehyde (kg kg**-1) -125 125 TCNO2DIFF Total column Nitrogen dioxide (kg m**-2) -126 126 TCSO2DIFF Total column Sulphur dioxide (kg m**-2) -127 127 TCCODIFF Total column Carbon monoxide (kg m**-2) -128 128 TCHCHODIFF Total column Formaldehyde (kg m**-2) -129 129 NOXDIFF Nitrogen Oxides (kg kg**-1) -130 130 TCNOXDIFF Total Column Nitrogen Oxides (kg m**-2) -131 131 GRG1DIFF Reactive tracer 1 mass mixing ratio (kg kg**-1) -132 132 TCGRG1DIFF Total column GRG tracer 1 (kg m**-2) -133 133 GRG2DIFF Reactive tracer 2 mass mixing ratio (kg kg**-1) -134 134 TCGRG2DIFF Total column GRG tracer 2 (kg m**-2) -135 135 GRG3DIFF Reactive tracer 3 mass mixing ratio (kg kg**-1) -136 136 TCGRG3DIFF Total column GRG tracer 3 (kg m**-2) -137 137 GRG4DIFF Reactive tracer 4 mass mixing ratio (kg kg**-1) -138 138 TCGRG4DIFF Total column GRG tracer 4 (kg m**-2) -139 139 GRG5DIFF Reactive tracer 5 mass mixing ratio (kg kg**-1) -140 140 TCGRG5DIFF Total column GRG tracer 5 (kg m**-2) -141 141 GRG6DIFF Reactive tracer 6 mass mixing ratio (kg kg**-1) -142 142 TCGRG6DIFF Total column GRG tracer 6 (kg m**-2) -143 143 GRG7DIFF Reactive tracer 7 mass mixing ratio (kg kg**-1) -144 144 TCGRG7DIFF Total column GRG tracer 7 (kg m**-2) -145 145 GRG8DIFF Reactive tracer 8 mass mixing ratio (kg kg**-1) -146 146 TCGRG8DIFF Total column GRG tracer 8 (kg m**-2) -147 147 GRG9DIFF Reactive tracer 9 mass mixing ratio (kg kg**-1) -148 148 TCGRG9DIFF Total column GRG tracer 9 (kg m**-2) -149 149 GRG10DIFF Reactive tracer 10 mass mixing ratio (kg kg**-1) -150 150 TCGRG10DIFF Total column GRG tracer 10 (kg m**-2) -151 151 SFNOXDIFF Surface flux Nitrogen oxides (kg m**-2 s**-1) -152 152 SFNO2DIFF Surface flux Nitrogen dioxide (kg m**-2 s**-1) -153 153 SFSO2DIFF Surface flux Sulphur dioxide (kg m**-2 s**-1) -154 154 SFCO2DIFF Surface flux Carbon monoxide (kg m**-2 s**-1) -155 155 SFHCHODIFF Surface flux Formaldehyde (kg m**-2 s**-1) -156 156 SFGO3DIFF Surface flux GEMS Ozone (kg m**-2 s**-1) -157 157 SFGR1DIFF Surface flux reactive tracer 1 (kg m**-2 s**-1) -158 158 SFGR2DIFF Surface flux reactive tracer 2 (kg m**-2 s**-1) -159 159 SFGR3DIFF Surface flux reactive tracer 3 (kg m**-2 s**-1) -160 160 SFGR4DIFF Surface flux reactive tracer 4 (kg m**-2 s**-1) -161 161 SFGR5DIFF Surface flux reactive tracer 5 (kg m**-2 s**-1) -162 162 SFGR6DIFF Surface flux reactive tracer 6 (kg m**-2 s**-1) -163 163 SFGR7DIFF Surface flux reactive tracer 7 (kg m**-2 s**-1) -164 164 SFGR8DIFF Surface flux reactive tracer 8 (kg m**-2 s**-1) -165 165 SFGR9DIFF Surface flux reactive tracer 9 (kg m**-2 s**-1) -166 166 SFGR10DIFF Surface flux reactive tracer 10 (kg m**-2 s**-1) -181 181 RADIFF Radon (kg kg**-1) -182 182 SF6DIFF Sulphur Hexafluoride (kg kg**-1) -183 183 TCRADIFF Total column Radon (kg m**-2) -184 184 TCSF6DIFF Total column Sulphur Hexafluoride (kg m**-2) -185 185 SF6APFDIFF Anthropogenic Emissions of Sulphur Hexafluoride (kg m**-2 s**-1) -203 203 GO3DIFF GEMS Ozone (kg kg**-1) -206 206 GTCO3DIFF GEMS Total column ozone (kg m**-2) -207 207 AOD550DIFF Total Aerosol Optical Depth at 550nm (~) -208 208 SSAOD550DIFF Sea Salt Aerosol Optical Depth at 550nm (~) -209 209 DUAOD550DIFF Dust Aerosol Optical Depth at 550nm (~) -210 210 OMAOD550DIFF Organic Matter Aerosol Optical Depth at 550nm (~) -211 211 BCAOD550DIFF Black Carbon Aerosol Optical Depth at 550nm (~) -212 212 SUAOD550DIFF Sulphate Aerosol Optical Depth at 550nm (~) -213 213 AOD469DIFF Total Aerosol Optical Depth at 469nm (~) -214 214 AOD670DIFF Total Aerosol Optical Depth at 670nm (~) -215 215 AOD865DIFF Total Aerosol Optical Depth at 865nm (~) -216 216 AOD1240DIFF Total Aerosol Optical Depth at 1240nm (~) +1 aermr01diff Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio (kg kg**-1) +2 aermr02diff Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio (kg kg**-1) +3 aermr03diff Sea Salt Aerosol (5 - 20 um) Mixing Ratio (kg kg**-1) +4 aermr04diff Dust Aerosol (0.03 - 0.55 um) Mixing Ratio (kg kg**-1) +5 aermr05diff Dust Aerosol (0.55 - 0.9 um) Mixing Ratio (kg kg**-1) +6 aermr06diff Dust Aerosol (0.9 - 20 um) Mixing Ratio (kg kg**-1) +7 aermr07diff Hydrophilic Organic Matter Aerosol Mixing Ratio (kg kg**-1) +8 aermr08diff Hydrophobic Organic Matter Aerosol Mixing Ratio (kg kg**-1) +9 aermr09diff Hydrophilic Black Carbon Aerosol Mixing Ratio (kg kg**-1) +10 aermr10diff Hydrophobic Black Carbon Aerosol Mixing Ratio (kg kg**-1) +11 aermr11diff Sulphate Aerosol Mixing Ratio (kg kg**-1) +12 aermr12diff Aerosol type 12 mixing ratio (kg kg**-1) +13 aermr13diff Aerosol type 13 mass mixing ratio (kg kg**-1) +14 aermr14diff Aerosol type 14 mass mixing ratio (kg kg**-1) +15 aermr15diff Aerosol type 15 mass mixing ratio (kg kg**-1) +16 aergn01diff Aerosol type 1 source/gain accumulated (kg m**-2) +17 aergn02diff Aerosol type 2 source/gain accumulated (kg m**-2) +18 aergn03diff Aerosol type 3 source/gain accumulated (kg m**-2) +19 aergn04diff Aerosol type 4 source/gain accumulated (kg m**-2) +20 aergn05diff Aerosol type 5 source/gain accumulated (kg m**-2) +21 aergn06diff Aerosol type 6 source/gain accumulated (kg m**-2) +22 aergn07diff Aerosol type 7 source/gain accumulated (kg m**-2) +23 aergn08diff Aerosol type 8 source/gain accumulated (kg m**-2) +24 aergn09diff Aerosol type 9 source/gain accumulated (kg m**-2) +25 aergn10diff Aerosol type 10 source/gain accumulated (kg m**-2) +26 aergn11diff Aerosol type 11 source/gain accumulated (kg m**-2) +27 aergn12diff Aerosol type 12 source/gain accumulated (kg m**-2) +28 aerpr03diff SO4 aerosol precursor mass mixing ratio (kg kg**-1) +29 aerwv01diff Water vapour mixing ratio for hydrophilic aerosols in mode 1 (kg kg**-1) +30 aerwv02diff Water vapour mixing ratio for hydrophilic aerosols in mode 2 (kg kg**-1) +31 aerls01diff Aerosol type 1 sink/loss accumulated (kg m**-2) +32 aerls02diff Aerosol type 2 sink/loss accumulated (kg m**-2) +33 aerls03diff Aerosol type 3 sink/loss accumulated (kg m**-2) +34 aerls04diff Aerosol type 4 sink/loss accumulated (kg m**-2) +35 aerls05diff Aerosol type 5 sink/loss accumulated (kg m**-2) +36 aerls06diff Aerosol type 6 sink/loss accumulated (kg m**-2) +37 aerls07diff Aerosol type 7 sink/loss accumulated (kg m**-2) +38 aerls08diff Aerosol type 8 sink/loss accumulated (kg m**-2) +39 aerls09diff Aerosol type 9 sink/loss accumulated (kg m**-2) +40 aerls10diff Aerosol type 10 sink/loss accumulated (kg m**-2) +41 aerls11diff Aerosol type 11 sink/loss accumulated (kg m**-2) +42 aerls12diff Aerosol type 12 sink/loss accumulated (kg m**-2) +43 emdmsdiff DMS surface emission (kg m**-2 s**-1) +44 aerwv03diff Water vapour mixing ratio for hydrophilic aerosols in mode 3 (kg kg**-1) +45 aerwv04diff Water vapour mixing ratio for hydrophilic aerosols in mode 4 (kg kg**-1) +46 aerprdiff Aerosol precursor mixing ratio (kg kg**-1) +47 aersmdiff Aerosol small mode mixing ratio (kg kg**-1) +48 aerlgdiff Aerosol large mode mixing ratio (kg kg**-1) +49 aodprdiff Aerosol precursor optical depth (dimensionless) +50 aodsmdiff Aerosol small mode optical depth (dimensionless) +51 aodlgdiff Aerosol large mode optical depth (dimensionless) +52 aerdepdiff Dust emission potential (kg s**2 m**-5) +53 aerltsdiff Lifting threshold speed (m s**-1) +54 aersccdiff Soil clay content (%) +55 ~ Experimental product (~) +56 ~ Experimental product (~) +61 co2diff Carbon Dioxide (kg kg**-1) +62 ch4diff Methane (kg kg**-1) +63 n2odiff Nitrous oxide (kg kg**-1) +64 tcco2diff Total column Carbon Dioxide (kg m**-2) +65 tcch4diff Total column Methane (kg m**-2) +66 tcn2odiff Total column Nitrous oxide (kg m**-2) +67 co2ofdiff Ocean flux of Carbon Dioxide (kg m**-2 s**-1) +68 co2nbfdiff Natural biosphere flux of Carbon Dioxide (kg m**-2 s**-1) +69 co2apfdiff Anthropogenic emissions of Carbon Dioxide (kg m**-2 s**-1) +70 ch4fdiff Methane Surface Fluxes (kg m**-2 s**-1) +71 kch4diff Methane loss rate due to radical hydroxyl (OH) (s**-1) +80 co2firediff Wildfire flux of Carbon Dioxide (kg m**-2 s**-1) +81 cofirediff Wildfire flux of Carbon Monoxide (kg m**-2 s**-1) +82 ch4firediff Wildfire flux of Methane (kg m**-2 s**-1) +83 nmhcfirediff Wildfire flux of Non-Methane Hydro-Carbons (kg m**-2 s**-1) +84 h2firediff Wildfire flux of Hydrogen (kg m**-2 s**-1) +85 noxfirediff Wildfire flux of Nitrogen Oxides NOx (kg m**-2 s**-1) +86 n2ofirediff Wildfire flux of Nitrous Oxide (kg m**-2 s**-1) +87 pm2p5firediff Wildfire flux of Particulate Matter PM2.5 (kg m**-2 s**-1) +88 tpmfirediff Wildfire flux of Total Particulate Matter (kg m**-2 s**-1) +89 tcfirediff Wildfire flux of Total Carbon in Aerosols (kg m**-2 s**-1) +90 ocfirediff Wildfire flux of Organic Carbon (kg m**-2 s**-1) +91 bcfirediff Wildfire flux of Black Carbon (kg m**-2 s**-1) +92 cfirediff Wildfire overall flux of burnt Carbon (kg m**-2 s**-1) +93 c4ffirediff Wildfire fraction of C4 plants (dimensionless) +94 vegfirediff Wildfire vegetation map index (dimensionless) +95 ccfirediff Wildfire Combustion Completeness (dimensionless) +96 flfirediff Wildfire Fuel Load: Carbon per unit area (kg m**-2) +97 offirediff Wildfire fraction of area observed (dimensionless) +98 oafirediff Wildfire observed area (m**2) +99 frpfirediff Wildfire radiative power (W m**-2) +100 crfirediff Wildfire combustion rate (kg m**-2 s**-1) +101 maxfrpfirediff Wildfire radiative power maximum (W) +102 so2firediff Wildfire flux of Sulfur Dioxide (kg m**-2 s**-1) +103 ch3ohfirediff Wildfire Flux of Methanol (CH3OH) (kg m**-2 s**-1) +104 c2h5ohfirediff Wildfire Flux of Ethanol (C2H5OH) (kg m**-2 s**-1) +105 c3h8firediff Wildfire Flux of Propane (C3H8) (kg m**-2 s**-1) +106 c2h4firediff Wildfire Flux of Ethene (C2H4) (kg m**-2 s**-1) +107 c3h6firediff Wildfire Flux of Propene (C3H6) (kg m**-2 s**-1) +108 c5h8firediff Wildfire Flux of Isoprene (C5H8) (kg m**-2 s**-1) +109 terpenesfirediff Wildfire Flux of Terpenes (C5H8)n (kg m**-2 s**-1) +110 toluenefirediff Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) (kg m**-2 s**-1) +111 hialkenesfirediff Wildfire Flux of Higher Alkenes (CnH2n, C>=4) (kg m**-2 s**-1) +112 hialkanesfirediff Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) (kg m**-2 s**-1) +113 ch2ofirediff Wildfire Flux of Formaldehyde (CH2O) (kg m**-2 s**-1) +114 c2h4ofirediff Wildfire Flux of Acetaldehyde (C2H4O) (kg m**-2 s**-1) +115 c3h6ofirediff Wildfire Flux of Acetone (C3H6O) (kg m**-2 s**-1) +116 nh3firediff Wildfire Flux of Ammonia (NH3) (kg m**-2 s**-1) +117 c2h6sfirediff Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) (kg m**-2 s**-1) +118 c2h6firediff Wildfire Flux of Ethane (C2H6) (kg m**-2 s**-1) +119 alediff Altitude of emitter (m) +120 aptdiff Altitude of plume top (m) +121 no2diff Nitrogen dioxide (kg kg**-1) +122 so2diff Sulphur dioxide (kg kg**-1) +123 codiff Carbon monoxide (kg kg**-1) +124 hchodiff Formaldehyde (kg kg**-1) +125 tcno2diff Total column Nitrogen dioxide (kg m**-2) +126 tcso2diff Total column Sulphur dioxide (kg m**-2) +127 tccodiff Total column Carbon monoxide (kg m**-2) +128 tchchodiff Total column Formaldehyde (kg m**-2) +129 noxdiff Nitrogen Oxides (kg kg**-1) +130 tcnoxdiff Total Column Nitrogen Oxides (kg m**-2) +131 grg1diff Reactive tracer 1 mass mixing ratio (kg kg**-1) +132 tcgrg1diff Total column GRG tracer 1 (kg m**-2) +133 grg2diff Reactive tracer 2 mass mixing ratio (kg kg**-1) +134 tcgrg2diff Total column GRG tracer 2 (kg m**-2) +135 grg3diff Reactive tracer 3 mass mixing ratio (kg kg**-1) +136 tcgrg3diff Total column GRG tracer 3 (kg m**-2) +137 grg4diff Reactive tracer 4 mass mixing ratio (kg kg**-1) +138 tcgrg4diff Total column GRG tracer 4 (kg m**-2) +139 grg5diff Reactive tracer 5 mass mixing ratio (kg kg**-1) +140 tcgrg5diff Total column GRG tracer 5 (kg m**-2) +141 grg6diff Reactive tracer 6 mass mixing ratio (kg kg**-1) +142 tcgrg6diff Total column GRG tracer 6 (kg m**-2) +143 grg7diff Reactive tracer 7 mass mixing ratio (kg kg**-1) +144 tcgrg7diff Total column GRG tracer 7 (kg m**-2) +145 grg8diff Reactive tracer 8 mass mixing ratio (kg kg**-1) +146 tcgrg8diff Total column GRG tracer 8 (kg m**-2) +147 grg9diff Reactive tracer 9 mass mixing ratio (kg kg**-1) +148 tcgrg9diff Total column GRG tracer 9 (kg m**-2) +149 grg10diff Reactive tracer 10 mass mixing ratio (kg kg**-1) +150 tcgrg10diff Total column GRG tracer 10 (kg m**-2) +151 sfnoxdiff Surface flux Nitrogen oxides (kg m**-2 s**-1) +152 sfno2diff Surface flux Nitrogen dioxide (kg m**-2 s**-1) +153 sfso2diff Surface flux Sulphur dioxide (kg m**-2 s**-1) +154 sfco2diff Surface flux Carbon monoxide (kg m**-2 s**-1) +155 sfhchodiff Surface flux Formaldehyde (kg m**-2 s**-1) +156 sfgo3diff Surface flux GEMS Ozone (kg m**-2 s**-1) +157 sfgr1diff Surface flux reactive tracer 1 (kg m**-2 s**-1) +158 sfgr2diff Surface flux reactive tracer 2 (kg m**-2 s**-1) +159 sfgr3diff Surface flux reactive tracer 3 (kg m**-2 s**-1) +160 sfgr4diff Surface flux reactive tracer 4 (kg m**-2 s**-1) +161 sfgr5diff Surface flux reactive tracer 5 (kg m**-2 s**-1) +162 sfgr6diff Surface flux reactive tracer 6 (kg m**-2 s**-1) +163 sfgr7diff Surface flux reactive tracer 7 (kg m**-2 s**-1) +164 sfgr8diff Surface flux reactive tracer 8 (kg m**-2 s**-1) +165 sfgr9diff Surface flux reactive tracer 9 (kg m**-2 s**-1) +166 sfgr10diff Surface flux reactive tracer 10 (kg m**-2 s**-1) +181 radiff Radon (kg kg**-1) +182 sf6diff Sulphur Hexafluoride (kg kg**-1) +183 tcradiff Total column Radon (kg m**-2) +184 tcsf6diff Total column Sulphur Hexafluoride (kg m**-2) +185 sf6apfdiff Anthropogenic Emissions of Sulphur Hexafluoride (kg m**-2 s**-1) +203 go3diff GEMS Ozone (kg kg**-1) +206 gtco3diff GEMS Total column ozone (kg m**-2) +207 aod550diff Total Aerosol Optical Depth at 550nm (~) +208 ssaod550diff Sea Salt Aerosol Optical Depth at 550nm (~) +209 duaod550diff Dust Aerosol Optical Depth at 550nm (~) +210 omaod550diff Organic Matter Aerosol Optical Depth at 550nm (~) +211 bcaod550diff Black Carbon Aerosol Optical Depth at 550nm (~) +212 suaod550diff Sulphate Aerosol Optical Depth at 550nm (~) +213 aod469diff Total Aerosol Optical Depth at 469nm (~) +214 aod670diff Total Aerosol Optical Depth at 670nm (~) +215 aod865diff Total Aerosol Optical Depth at 865nm (~) +216 aod1240diff Total Aerosol Optical Depth at 1240nm (~) diff --git a/definitions/grib1/2.98.213.table b/definitions/grib1/2.98.213.table index 430b240bf..65b46db1e 100644 --- a/definitions/grib1/2.98.213.table +++ b/definitions/grib1/2.98.213.table @@ -1,56 +1,56 @@ # This file was automatically generated by ./param.pl -1 1 SPPT1 Random pattern 1 for sppt (dimensionless) -2 2 SPPT2 Random pattern 2 for sppt (dimensionless) -3 3 SPPT3 Random pattern 3 for sppt (dimensionless) -4 4 SPPT4 Random pattern 4 for sppt (dimensionless) -5 5 SPPT5 Random pattern 5 for sppt (dimensionless) -101 101 SPP1 Random pattern 1 for SPP scheme (dimensionless) -102 102 SPP2 Random pattern 2 for SPP scheme (dimensionless) -103 103 SPP3 Random pattern 3 for SPP scheme (dimensionless) -104 104 SPP4 Random pattern 4 for SPP scheme (dimensionless) -105 105 SPP5 Random pattern 5 for SPP scheme (dimensionless) -106 106 SPP6 Random pattern 6 for SPP scheme (dimensionless) -107 107 SPP7 Random pattern 7 for SPP scheme (dimensionless) -108 108 SPP8 Random pattern 8 for SPP scheme (dimensionless) -109 109 SPP9 Random pattern 9 for SPP scheme (dimensionless) -110 110 SPP10 Random pattern 10 for SPP scheme (dimensionless) -111 111 SPP11 Random pattern 11 for SPP scheme (dimensionless) -112 112 SPP12 Random pattern 12 for SPP scheme (dimensionless) -113 113 SPP13 Random pattern 13 for SPP scheme (dimensionless) -114 114 SPP14 Random pattern 14 for SPP scheme (dimensionless) -115 115 SPP15 Random pattern 15 for SPP scheme (dimensionless) -116 116 SPP16 Random pattern 16 for SPP scheme (dimensionless) -117 117 SPP17 Random pattern 17 for SPP scheme (dimensionless) -118 118 SPP18 Random pattern 18 for SPP scheme (dimensionless) -119 119 SPP19 Random pattern 19 for SPP scheme (dimensionless) -120 120 SPP20 Random pattern 20 for SPP scheme (dimensionless) -121 121 SPP21 Random pattern 21 for SPP scheme (dimensionless) -122 122 SPP22 Random pattern 22 for SPP scheme (dimensionless) -123 123 SPP23 Random pattern 23 for SPP scheme (dimensionless) -124 124 SPP24 Random pattern 24 for SPP scheme (dimensionless) -125 125 SPP25 Random pattern 25 for SPP scheme (dimensionless) -126 126 SPP26 Random pattern 26 for SPP scheme (dimensionless) -127 127 SPP27 Random pattern 27 for SPP scheme (dimensionless) -128 128 SPP28 Random pattern 28 for SPP scheme (dimensionless) -129 129 SPP29 Random pattern 29 for SPP scheme (dimensionless) -130 130 SPP30 Random pattern 30 for SPP scheme (dimensionless) -131 131 SPP31 Random pattern 31 for SPP scheme (dimensionless) -132 132 SPP32 Random pattern 32 for SPP scheme (dimensionless) -133 133 SPP33 Random pattern 33 for SPP scheme (dimensionless) -134 134 SPP34 Random pattern 34 for SPP scheme (dimensionless) -135 135 SPP35 Random pattern 35 for SPP scheme (dimensionless) -136 136 SPP36 Random pattern 36 for SPP scheme (dimensionless) -137 137 SPP37 Random pattern 37 for SPP scheme (dimensionless) -138 138 SPP38 Random pattern 38 for SPP scheme (dimensionless) -139 139 SPP39 Random pattern 39 for SPP scheme (dimensionless) -140 140 SPP40 Random pattern 40 for SPP scheme (dimensionless) -141 141 SPP41 Random pattern 41 for SPP scheme (dimensionless) -142 142 SPP42 Random pattern 42 for SPP scheme (dimensionless) -143 143 SPP43 Random pattern 43 for SPP scheme (dimensionless) -144 144 SPP44 Random pattern 44 for SPP scheme (dimensionless) -145 145 SPP45 Random pattern 45 for SPP scheme (dimensionless) -146 146 SPP46 Random pattern 46 for SPP scheme (dimensionless) -147 147 SPP47 Random pattern 47 for SPP scheme (dimensionless) -148 148 SPP48 Random pattern 48 for SPP scheme (dimensionless) -149 149 SPP49 Random pattern 49 for SPP scheme (dimensionless) -150 150 SPP50 Random pattern 50 for SPP scheme (dimensionless) +1 sppt1 Random pattern 1 for sppt (dimensionless) +2 sppt2 Random pattern 2 for sppt (dimensionless) +3 sppt3 Random pattern 3 for sppt (dimensionless) +4 sppt4 Random pattern 4 for sppt (dimensionless) +5 sppt5 Random pattern 5 for sppt (dimensionless) +101 spp1 Random pattern 1 for SPP scheme (dimensionless) +102 spp2 Random pattern 2 for SPP scheme (dimensionless) +103 spp3 Random pattern 3 for SPP scheme (dimensionless) +104 spp4 Random pattern 4 for SPP scheme (dimensionless) +105 spp5 Random pattern 5 for SPP scheme (dimensionless) +106 spp6 Random pattern 6 for SPP scheme (dimensionless) +107 spp7 Random pattern 7 for SPP scheme (dimensionless) +108 spp8 Random pattern 8 for SPP scheme (dimensionless) +109 spp9 Random pattern 9 for SPP scheme (dimensionless) +110 spp10 Random pattern 10 for SPP scheme (dimensionless) +111 spp11 Random pattern 11 for SPP scheme (dimensionless) +112 spp12 Random pattern 12 for SPP scheme (dimensionless) +113 spp13 Random pattern 13 for SPP scheme (dimensionless) +114 spp14 Random pattern 14 for SPP scheme (dimensionless) +115 spp15 Random pattern 15 for SPP scheme (dimensionless) +116 spp16 Random pattern 16 for SPP scheme (dimensionless) +117 spp17 Random pattern 17 for SPP scheme (dimensionless) +118 spp18 Random pattern 18 for SPP scheme (dimensionless) +119 spp19 Random pattern 19 for SPP scheme (dimensionless) +120 spp20 Random pattern 20 for SPP scheme (dimensionless) +121 spp21 Random pattern 21 for SPP scheme (dimensionless) +122 spp22 Random pattern 22 for SPP scheme (dimensionless) +123 spp23 Random pattern 23 for SPP scheme (dimensionless) +124 spp24 Random pattern 24 for SPP scheme (dimensionless) +125 spp25 Random pattern 25 for SPP scheme (dimensionless) +126 spp26 Random pattern 26 for SPP scheme (dimensionless) +127 spp27 Random pattern 27 for SPP scheme (dimensionless) +128 spp28 Random pattern 28 for SPP scheme (dimensionless) +129 spp29 Random pattern 29 for SPP scheme (dimensionless) +130 spp30 Random pattern 30 for SPP scheme (dimensionless) +131 spp31 Random pattern 31 for SPP scheme (dimensionless) +132 spp32 Random pattern 32 for SPP scheme (dimensionless) +133 spp33 Random pattern 33 for SPP scheme (dimensionless) +134 spp34 Random pattern 34 for SPP scheme (dimensionless) +135 spp35 Random pattern 35 for SPP scheme (dimensionless) +136 spp36 Random pattern 36 for SPP scheme (dimensionless) +137 spp37 Random pattern 37 for SPP scheme (dimensionless) +138 spp38 Random pattern 38 for SPP scheme (dimensionless) +139 spp39 Random pattern 39 for SPP scheme (dimensionless) +140 spp40 Random pattern 40 for SPP scheme (dimensionless) +141 spp41 Random pattern 41 for SPP scheme (dimensionless) +142 spp42 Random pattern 42 for SPP scheme (dimensionless) +143 spp43 Random pattern 43 for SPP scheme (dimensionless) +144 spp44 Random pattern 44 for SPP scheme (dimensionless) +145 spp45 Random pattern 45 for SPP scheme (dimensionless) +146 spp46 Random pattern 46 for SPP scheme (dimensionless) +147 spp47 Random pattern 47 for SPP scheme (dimensionless) +148 spp48 Random pattern 48 for SPP scheme (dimensionless) +149 spp49 Random pattern 49 for SPP scheme (dimensionless) +150 spp50 Random pattern 50 for SPP scheme (dimensionless) diff --git a/definitions/grib1/2.98.215.table b/definitions/grib1/2.98.215.table index 96de89678..64674c0aa 100644 --- a/definitions/grib1/2.98.215.table +++ b/definitions/grib1/2.98.215.table @@ -1,212 +1,212 @@ # This file was automatically generated by ./param.pl -1 1 AERSRCSSS Source/gain of sea salt aerosol (0.03 - 0.5 um) (kg m**-2 s**-1) -2 2 AERSRCSSM Source/gain of sea salt aerosol (0.5 - 5 um) (kg m**-2 s**-1) -3 3 AERSRCSSL Source/gain of sea salt aerosol (5 - 20 um) (kg m**-2 s**-1) -4 4 AERDDPSSS Dry deposition of sea salt aerosol (0.03 - 0.5 um) (kg m**-2 s**-1) -5 5 AERDDPSSM Dry deposition of sea salt aerosol (0.5 - 5 um) (kg m**-2 s**-1) -6 6 AERDDPSSL Dry deposition of sea salt aerosol (5 - 20 um) (kg m**-2 s**-1) -7 7 AERSDMSSS Sedimentation of sea salt aerosol (0.03 - 0.5 um) (kg m**-2 s**-1) -8 8 AERSDMSSM Sedimentation of sea salt aerosol (0.5 - 5 um) (kg m**-2 s**-1) -9 9 AERSDMSSL Sedimentation of sea salt aerosol (5 - 20 um) (kg m**-2 s**-1) -10 10 AERWDLSSSS Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation (kg m**-2 s**-1) -11 11 AERWDLSSSM Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation (kg m**-2 s**-1) -12 12 AERWDLSSSL Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation (kg m**-2 s**-1) -13 13 AERWDCCSSS Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation (kg m**-2 s**-1) -14 14 AERWDCCSSM Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation (kg m**-2 s**-1) -15 15 AERWDCCSSL Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation (kg m**-2 s**-1) -16 16 AERNGTSSS Negative fixer of sea salt aerosol (0.03 - 0.5 um) (kg m**-2 s**-1) -17 17 AERNGTSSM Negative fixer of sea salt aerosol (0.5 - 5 um) (kg m**-2 s**-1) -18 18 AERNGTSSL Negative fixer of sea salt aerosol (5 - 20 um) (kg m**-2 s**-1) -19 19 AERMSSSSS Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) (kg m**-2) -20 20 AERMSSSSM Vertically integrated mass of sea salt aerosol (0.5 - 5 um) (kg m**-2) -21 21 AERMSSSSL Vertically integrated mass of sea salt aerosol (5 - 20 um) (kg m**-2) -22 22 AERODSSS Sea salt aerosol (0.03 - 0.5 um) optical depth (~) -23 23 AERODSSM Sea salt aerosol (0.5 - 5 um) optical depth (~) -24 24 AERODSSL Sea salt aerosol (5 - 20 um) optical depth (~) -25 25 AERSRCDUS Source/gain of dust aerosol (0.03 - 0.55 um) (kg m**-2 s**-1) -26 26 AERSRCDUM Source/gain of dust aerosol (0.55 - 9 um) (kg m**-2 s**-1) -27 27 AERSRCDUL Source/gain of dust aerosol (9 - 20 um) (kg m**-2 s**-1) -28 28 AERDDPDUS Dry deposition of dust aerosol (0.03 - 0.55 um) (kg m**-2 s**-1) -29 29 AERDDPDUM Dry deposition of dust aerosol (0.55 - 9 um) (kg m**-2 s**-1) -30 30 AERDDPDUL Dry deposition of dust aerosol (9 - 20 um) (kg m**-2 s**-1) -31 31 AERSDMDUS Sedimentation of dust aerosol (0.03 - 0.55 um) (kg m**-2 s**-1) -32 32 AERSDMDUM Sedimentation of dust aerosol (0.55 - 9 um) (kg m**-2 s**-1) -33 33 AERSDMDUL Sedimentation of dust aerosol (9 - 20 um) (kg m**-2 s**-1) -34 34 AERWDLSDUS Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation (kg m**-2 s**-1) -35 35 AERWDLSDUM Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation (kg m**-2 s**-1) -36 36 AERWDLSDUL Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation (kg m**-2 s**-1) -37 37 AERWDCCDUS Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation (kg m**-2 s**-1) -38 38 AERWDCCDUM Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation (kg m**-2 s**-1) -39 39 AERWDCCDUL Wet deposition of dust aerosol (9 - 20 um) by convective precipitation (kg m**-2 s**-1) -40 40 AERNGTDUS Negative fixer of dust aerosol (0.03 - 0.55 um) (kg m**-2 s**-1) -41 41 AERNGTDUM Negative fixer of dust aerosol (0.55 - 9 um) (kg m**-2 s**-1) -42 42 AERNGTDUL Negative fixer of dust aerosol (9 - 20 um) (kg m**-2 s**-1) -43 43 AERMSSDUS Vertically integrated mass of dust aerosol (0.03 - 0.55 um) (kg m**-2) -44 44 AERMSSDUM Vertically integrated mass of dust aerosol (0.55 - 9 um) (kg m**-2) -45 45 AERMSSDUL Vertically integrated mass of dust aerosol (9 - 20 um) (kg m**-2) -46 46 AERODDUS Dust aerosol (0.03 - 0.55 um) optical depth (~) -47 47 AERODDUM Dust aerosol (0.55 - 9 um) optical depth (~) -48 48 AERODDUL Dust aerosol (9 - 20 um) optical depth (~) -49 49 AERSRCOMHPHOB Source/gain of hydrophobic organic matter aerosol (kg m**-2 s**-1) -50 50 AERSRCOMHPHIL Source/gain of hydrophilic organic matter aerosol (kg m**-2 s**-1) -51 51 AERDDPOMHPHOB Dry deposition of hydrophobic organic matter aerosol (kg m**-2 s**-1) -52 52 AERDDPOMHPHIL Dry deposition of hydrophilic organic matter aerosol (kg m**-2 s**-1) -53 53 AERSDMOMHPHOB Sedimentation of hydrophobic organic matter aerosol (kg m**-2 s**-1) -54 54 AERSDMOMHPHIL Sedimentation of hydrophilic organic matter aerosol (kg m**-2 s**-1) -55 55 AERWDLSOMHPHOB Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation (kg m**-2 s**-1) -56 56 AERWDLSOMHPHIL Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation (kg m**-2 s**-1) -57 57 AERWDCCOMHPHOB Wet deposition of hydrophobic organic matter aerosol by convective precipitation (kg m**-2 s**-1) -58 58 AERWDCCOMHPHIL Wet deposition of hydrophilic organic matter aerosol by convective precipitation (kg m**-2 s**-1) -59 59 AERNGTOMHPHOB Negative fixer of hydrophobic organic matter aerosol (kg m**-2 s**-1) -60 60 AERNGTOMHPHIL Negative fixer of hydrophilic organic matter aerosol (kg m**-2 s**-1) -61 61 AERMSSOMHPHOB Vertically integrated mass of hydrophobic organic matter aerosol (kg m**-2) -62 62 AERMSSOMHPHIL Vertically integrated mass of hydrophilic organic matter aerosol (kg m**-2) -63 63 AERODOMHPHOB Hydrophobic organic matter aerosol optical depth (~) -64 64 AERODOMHPHIL Hydrophilic organic matter aerosol optical depth (~) -65 65 AERSRCBCHPHOB Source/gain of hydrophobic black carbon aerosol (kg m**-2 s**-1) -66 66 AERSRCBCHPHIL Source/gain of hydrophilic black carbon aerosol (kg m**-2 s**-1) -67 67 AERDDPBCHPHOB Dry deposition of hydrophobic black carbon aerosol (kg m**-2 s**-1) -68 68 AERDDPBCHPHIL Dry deposition of hydrophilic black carbon aerosol (kg m**-2 s**-1) -69 69 AERSDMBCHPHOB Sedimentation of hydrophobic black carbon aerosol (kg m**-2 s**-1) -70 70 AERSDMBCHPHIL Sedimentation of hydrophilic black carbon aerosol (kg m**-2 s**-1) -71 71 AERWDLSBCHPHOB Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation (kg m**-2 s**-1) -72 72 AERWDLSBCHPHIL Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation (kg m**-2 s**-1) -73 73 AERWDCCBCHPHOB Wet deposition of hydrophobic black carbon aerosol by convective precipitation (kg m**-2 s**-1) -74 74 AERWDCCBCHPHIL Wet deposition of hydrophilic black carbon aerosol by convective precipitation (kg m**-2 s**-1) -75 75 AERNGTBCHPHOB Negative fixer of hydrophobic black carbon aerosol (kg m**-2 s**-1) -76 76 AERNGTBCHPHIL Negative fixer of hydrophilic black carbon aerosol (kg m**-2 s**-1) -77 77 AERMSSBCHPHOB Vertically integrated mass of hydrophobic black carbon aerosol (kg m**-2) -78 78 AERMSSBCHPHIL Vertically integrated mass of hydrophilic black carbon aerosol (kg m**-2) -79 79 AERODBCHPHOB Hydrophobic black carbon aerosol optical depth (~) -80 80 AERODBCHPHIL Hydrophilic black carbon aerosol optical depth (~) -81 81 AERSRCSU Source/gain of sulphate aerosol (kg m**-2 s**-1) -82 82 AERDDPSU Dry deposition of sulphate aerosol (kg m**-2 s**-1) -83 83 AERSDMSU Sedimentation of sulphate aerosol (kg m**-2 s**-1) -84 84 AERWDLSSU Wet deposition of sulphate aerosol by large-scale precipitation (kg m**-2 s**-1) -85 85 AERWDCCSU Wet deposition of sulphate aerosol by convective precipitation (kg m**-2 s**-1) -86 86 AERNGTSU Negative fixer of sulphate aerosol (kg m**-2 s**-1) -87 87 AERMSSSU Vertically integrated mass of sulphate aerosol (kg m**-2) -88 88 AERODSU Sulphate aerosol optical depth (~) -89 89 ACCAOD550 Accumulated total aerosol optical depth at 550 nm (s) -90 90 ALUVPSN Effective (snow effect included) UV visible albedo for direct radiation (0 - 1) -91 91 AERDEP10SI 10 metre wind speed dust emission potential (kg s**2 m**-5) -92 92 AERDEP10FG 10 metre wind gustiness dust emission potential (kg s**2 m**-5) -93 93 AOT532 Total aerosol optical thickness at 532 nm (dimensionless) -94 94 NAOT532 Natural (sea-salt and dust) aerosol optical thickness at 532 nm (dimensionless) -95 95 AAOT532 Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm (dimensionless) -96 96 AODABS340 Total absorption aerosol optical depth at 340 nm (~) -97 97 AODABS355 Total absorption aerosol optical depth at 355 nm (~) -98 98 AODABS380 Total absorption aerosol optical depth at 380 nm (~) -99 99 AODABS400 Total absorption aerosol optical depth at 400 nm (~) -100 100 AODABS440 Total absorption aerosol optical depth at 440 nm (~) -101 101 AODABS469 Total absorption aerosol optical depth at 469 nm (~) -102 102 AODABS500 Total absorption aerosol optical depth at 500 nm (~) -103 103 AODABS532 Total absorption aerosol optical depth at 532 nm (~) -104 104 AODABS550 Total absorption aerosol optical depth at 550 nm (~) -105 105 AODABS645 Total absorption aerosol optical depth at 645 nm (~) -106 106 AODABS670 Total absorption aerosol optical depth at 670 nm (~) -107 107 AODABS800 Total absorption aerosol optical depth at 800 nm (~) -108 108 AODABS858 Total absorption aerosol optical depth at 858 nm (~) -109 109 AODABS865 Total absorption aerosol optical depth at 865 nm (~) -110 110 AODABS1020 Total absorption aerosol optical depth at 1020 nm (~) -111 111 AODABS1064 Total absorption aerosol optical depth at 1064 nm (~) -112 112 AODABS1240 Total absorption aerosol optical depth at 1240 nm (~) -113 113 AODABS1640 Total absorption aerosol optical depth at 1640 nm (~) -114 114 AODFM340 Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm (~) -115 115 AODFM355 Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm (~) -116 116 AODFM380 Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm (~) -117 117 AODFM400 Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm (~) -118 118 AODFM440 Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm (~) -119 119 AODFM469 Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm (~) -120 120 AODFM500 Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm (~) -121 121 AODFM532 Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm (~) -122 122 AODFM550 Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm (~) -123 123 AODFM645 Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm (~) -124 124 AODFM670 Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm (~) -125 125 AODFM800 Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm (~) -126 126 AODFM858 Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm (~) -127 127 AODFM865 Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm (~) -128 128 AODFM1020 Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm (~) -129 129 AODFM1064 Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm (~) -130 130 AODFM1240 Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm (~) -131 131 AODFM1640 Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm (~) -132 132 SSA340 Single scattering albedo at 340 nm (0 - 1) -133 133 SSA355 Single scattering albedo at 355 nm (0 - 1) -134 134 SSA380 Single scattering albedo at 380 nm (0 - 1) -135 135 SSA400 Single scattering albedo at 400 nm (0 - 1) -136 136 SSA440 Single scattering albedo at 440 nm (0 - 1) -137 137 SSA469 Single scattering albedo at 469 nm (0 - 1) -138 138 SSA500 Single scattering albedo at 500 nm (0 - 1) -139 139 SSA532 Single scattering albedo at 532 nm (0 - 1) -140 140 SSA550 Single scattering albedo at 550 nm (0 - 1) -141 141 SSA645 Single scattering albedo at 645 nm (0 - 1) -142 142 SSA670 Single scattering albedo at 670 nm (0 - 1) -143 143 SSA800 Single scattering albedo at 800 nm (0 - 1) -144 144 SSA858 Single scattering albedo at 858 nm (0 - 1) -145 145 SSA865 Single scattering albedo at 865 nm (0 - 1) -146 146 SSA1020 Single scattering albedo at 1020 nm (0 - 1) -147 147 SSA1064 Single scattering albedo at 1064 nm (0 - 1) -148 148 SSA1240 Single scattering albedo at 1240 nm (0 - 1) -149 149 SSA1640 Single scattering albedo at 1640 nm (0 - 1) -150 150 ASYMMETRY340 Asymmetry factor at 340 nm (~) -151 151 ASYMMETRY355 Asymmetry factor at 355 nm (~) -152 152 ASYMMETRY380 Asymmetry factor at 380 nm (~) -153 153 ASYMMETRY400 Asymmetry factor at 400 nm (~) -154 154 ASYMMETRY440 Asymmetry factor at 440 nm (~) -155 155 ASYMMETRY469 Asymmetry factor at 469 nm (~) -156 156 ASYMMETRY500 Asymmetry factor at 500 nm (~) -157 157 ASYMMETRY532 Asymmetry factor at 532 nm (~) -158 158 ASYMMETRY550 Asymmetry factor at 550 nm (~) -159 159 ASYMMETRY645 Asymmetry factor at 645 nm (~) -160 160 ASYMMETRY670 Asymmetry factor at 670 nm (~) -161 161 ASYMMETRY800 Asymmetry factor at 800 nm (~) -162 162 ASYMMETRY858 Asymmetry factor at 858 nm (~) -163 163 ASYMMETRY865 Asymmetry factor at 865 nm (~) -164 164 ASYMMETRY1020 Asymmetry factor at 1020 nm (~) -165 165 ASYMMETRY1064 Asymmetry factor at 1064 nm (~) -166 166 ASYMMETRY1240 Asymmetry factor at 1240 nm (~) -167 167 ASYMMETRY1640 Asymmetry factor at 1640 nm (~) -168 168 AERSRCSO2 Source/gain of sulphur dioxide (kg m**-2 s**-1) -169 169 AERDDPSO2 Dry deposition of sulphur dioxide (kg m**-2 s**-1) -170 170 AERSDMSO2 Sedimentation of sulphur dioxide (kg m**-2 s**-1) -171 171 AERWDLSSO2 Wet deposition of sulphur dioxide by large-scale precipitation (kg m**-2 s**-1) -172 172 AERWDCCSO2 Wet deposition of sulphur dioxide by convective precipitation (kg m**-2 s**-1) -173 173 AERNGTSO2 Negative fixer of sulphur dioxide (kg m**-2 s**-1) -174 174 AERMSSSO2 Vertically integrated mass of sulphur dioxide (kg m**-2) -175 175 AERODSO2 Sulphur dioxide optical depth (~) -176 176 AODABS2130 Total absorption aerosol optical depth at 2130 nm (~) -177 177 AODFM2130 Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm (~) -178 178 SSA2130 Single scattering albedo at 2130 nm (0 - 1) -179 179 ASYMMETRY2130 Asymmetry factor at 2130 nm (~) -180 180 AEREXT355 Aerosol extinction coefficient at 355 nm (m**-1) -181 181 AEREXT532 Aerosol extinction coefficient at 532 nm (m**-1) -182 182 AEREXT1064 Aerosol extinction coefficient at 1064 nm (m**-1) -183 183 AERBACKSCATTOA355 Aerosol backscatter coefficient at 355 nm (from top of atmosphere) (m**-1 sr**-1) -184 184 AERBACKSCATTOA532 Aerosol backscatter coefficient at 532 nm (from top of atmosphere) (m**-1 sr**-1) -185 185 AERBACKSCATTOA1064 Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) (m**-1 sr**-1) -186 186 AERBACKSCATGND355 Aerosol backscatter coefficient at 355 nm (from ground) (m**-1 sr**-1) -187 187 AERBACKSCATGND532 Aerosol backscatter coefficient at 532 nm (from ground) (m**-1 sr**-1) -188 188 AERBACKSCATGND1064 Aerosol backscatter coefficient at 1064 nm (from ground) (m**-1 sr**-1) -189 189 AERSRCNIF Source/gain of fine-mode nitrate aerosol (kg m**-2 s**-1) -190 190 AERSRCNIC Source/gain of coarse-mode nitrate aerosol (kg m**-2 s**-1) -191 191 AERDDPNIF Dry deposition of fine-mode nitrate aerosol (kg m**-2 s**-1) -192 192 AERDDPNIC Dry deposition of coarse-mode nitrate aerosol (kg m**-2 s**-1) -193 193 AERSDMNIF Sedimentation of fine-mode nitrate aerosol (kg m**-2 s**-1) -194 194 AERSDMNIC Sedimentation of coarse-mode nitrate aerosol (kg m**-2 s**-1) -195 195 AERWDLNIF Wet deposition of fine-mode nitrate aerosol by large-scale precipitation (kg m**-2 s**-1) -196 196 AERWDLNIC Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation (kg m**-2 s**-1) -197 197 AERWDCNIF Wet deposition of fine-mode nitrate aerosol by convective precipitation (kg m**-2 s**-1) -198 198 AERWDCNIC Wet deposition of coarse-mode nitrate aerosol by convective precipitation (kg m**-2 s**-1) -199 199 AERNGTNIF Negative fixer of fine-mode nitrate aerosol (kg m**-2 s**-1) -200 200 AERNGTNIC Negative fixer of coarse-mode nitrate aerosol (kg m**-2 s**-1) -201 201 AERMSSNIF Vertically integrated mass of fine-mode nitrate aerosol (kg m**-2) -202 202 AERMSSNIC Vertically integrated mass of coarse-mode nitrate aerosol (kg m**-2) -203 203 AERODNIF Fine-mode nitrate aerosol optical depth at 550 nm (dimensionless) -204 204 AERODNIC Coarse-mode nitrate aerosol optical depth at 550 nm (dimensionless) -205 205 AERSRCAM Source/gain of ammonium aerosol (kg m**-2 s**-1) -206 206 AERDDPAM Dry deposition of ammonium aerosol (kg m**-2 s**-1) -207 207 AERSDMAM Sedimentation of ammonium aerosol (kg m**-2 s**-1) -208 208 AERWDLAM Wet deposition of ammonium aerosol by large-scale precipitation (kg m**-2 s**-1) -209 209 AERWDCAM Wet deposition of ammonium aerosol by convective precipitation (kg m**-2 s**-1) -210 210 AERNGTAM Negative fixer of ammonium aerosol (kg m**-2 s**-1) -211 211 AERMSSAM Vertically integrated mass of ammonium aerosol (kg m**-2) +1 aersrcsss Source/gain of sea salt aerosol (0.03 - 0.5 um) (kg m**-2 s**-1) +2 aersrcssm Source/gain of sea salt aerosol (0.5 - 5 um) (kg m**-2 s**-1) +3 aersrcssl Source/gain of sea salt aerosol (5 - 20 um) (kg m**-2 s**-1) +4 aerddpsss Dry deposition of sea salt aerosol (0.03 - 0.5 um) (kg m**-2 s**-1) +5 aerddpssm Dry deposition of sea salt aerosol (0.5 - 5 um) (kg m**-2 s**-1) +6 aerddpssl Dry deposition of sea salt aerosol (5 - 20 um) (kg m**-2 s**-1) +7 aersdmsss Sedimentation of sea salt aerosol (0.03 - 0.5 um) (kg m**-2 s**-1) +8 aersdmssm Sedimentation of sea salt aerosol (0.5 - 5 um) (kg m**-2 s**-1) +9 aersdmssl Sedimentation of sea salt aerosol (5 - 20 um) (kg m**-2 s**-1) +10 aerwdlssss Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation (kg m**-2 s**-1) +11 aerwdlsssm Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation (kg m**-2 s**-1) +12 aerwdlsssl Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation (kg m**-2 s**-1) +13 aerwdccsss Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation (kg m**-2 s**-1) +14 aerwdccssm Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation (kg m**-2 s**-1) +15 aerwdccssl Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation (kg m**-2 s**-1) +16 aerngtsss Negative fixer of sea salt aerosol (0.03 - 0.5 um) (kg m**-2 s**-1) +17 aerngtssm Negative fixer of sea salt aerosol (0.5 - 5 um) (kg m**-2 s**-1) +18 aerngtssl Negative fixer of sea salt aerosol (5 - 20 um) (kg m**-2 s**-1) +19 aermsssss Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) (kg m**-2) +20 aermssssm Vertically integrated mass of sea salt aerosol (0.5 - 5 um) (kg m**-2) +21 aermssssl Vertically integrated mass of sea salt aerosol (5 - 20 um) (kg m**-2) +22 aerodsss Sea salt aerosol (0.03 - 0.5 um) optical depth (~) +23 aerodssm Sea salt aerosol (0.5 - 5 um) optical depth (~) +24 aerodssl Sea salt aerosol (5 - 20 um) optical depth (~) +25 aersrcdus Source/gain of dust aerosol (0.03 - 0.55 um) (kg m**-2 s**-1) +26 aersrcdum Source/gain of dust aerosol (0.55 - 9 um) (kg m**-2 s**-1) +27 aersrcdul Source/gain of dust aerosol (9 - 20 um) (kg m**-2 s**-1) +28 aerddpdus Dry deposition of dust aerosol (0.03 - 0.55 um) (kg m**-2 s**-1) +29 aerddpdum Dry deposition of dust aerosol (0.55 - 9 um) (kg m**-2 s**-1) +30 aerddpdul Dry deposition of dust aerosol (9 - 20 um) (kg m**-2 s**-1) +31 aersdmdus Sedimentation of dust aerosol (0.03 - 0.55 um) (kg m**-2 s**-1) +32 aersdmdum Sedimentation of dust aerosol (0.55 - 9 um) (kg m**-2 s**-1) +33 aersdmdul Sedimentation of dust aerosol (9 - 20 um) (kg m**-2 s**-1) +34 aerwdlsdus Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation (kg m**-2 s**-1) +35 aerwdlsdum Wet deposition of dust aerosol (0.55 - 9 um) by large-scale precipitation (kg m**-2 s**-1) +36 aerwdlsdul Wet deposition of dust aerosol (9 - 20 um) by large-scale precipitation (kg m**-2 s**-1) +37 aerwdccdus Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation (kg m**-2 s**-1) +38 aerwdccdum Wet deposition of dust aerosol (0.55 - 9 um) by convective precipitation (kg m**-2 s**-1) +39 aerwdccdul Wet deposition of dust aerosol (9 - 20 um) by convective precipitation (kg m**-2 s**-1) +40 aerngtdus Negative fixer of dust aerosol (0.03 - 0.55 um) (kg m**-2 s**-1) +41 aerngtdum Negative fixer of dust aerosol (0.55 - 9 um) (kg m**-2 s**-1) +42 aerngtdul Negative fixer of dust aerosol (9 - 20 um) (kg m**-2 s**-1) +43 aermssdus Vertically integrated mass of dust aerosol (0.03 - 0.55 um) (kg m**-2) +44 aermssdum Vertically integrated mass of dust aerosol (0.55 - 9 um) (kg m**-2) +45 aermssdul Vertically integrated mass of dust aerosol (9 - 20 um) (kg m**-2) +46 aeroddus Dust aerosol (0.03 - 0.55 um) optical depth (~) +47 aeroddum Dust aerosol (0.55 - 9 um) optical depth (~) +48 aeroddul Dust aerosol (9 - 20 um) optical depth (~) +49 aersrcomhphob Source/gain of hydrophobic organic matter aerosol (kg m**-2 s**-1) +50 aersrcomhphil Source/gain of hydrophilic organic matter aerosol (kg m**-2 s**-1) +51 aerddpomhphob Dry deposition of hydrophobic organic matter aerosol (kg m**-2 s**-1) +52 aerddpomhphil Dry deposition of hydrophilic organic matter aerosol (kg m**-2 s**-1) +53 aersdmomhphob Sedimentation of hydrophobic organic matter aerosol (kg m**-2 s**-1) +54 aersdmomhphil Sedimentation of hydrophilic organic matter aerosol (kg m**-2 s**-1) +55 aerwdlsomhphob Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation (kg m**-2 s**-1) +56 aerwdlsomhphil Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation (kg m**-2 s**-1) +57 aerwdccomhphob Wet deposition of hydrophobic organic matter aerosol by convective precipitation (kg m**-2 s**-1) +58 aerwdccomhphil Wet deposition of hydrophilic organic matter aerosol by convective precipitation (kg m**-2 s**-1) +59 aerngtomhphob Negative fixer of hydrophobic organic matter aerosol (kg m**-2 s**-1) +60 aerngtomhphil Negative fixer of hydrophilic organic matter aerosol (kg m**-2 s**-1) +61 aermssomhphob Vertically integrated mass of hydrophobic organic matter aerosol (kg m**-2) +62 aermssomhphil Vertically integrated mass of hydrophilic organic matter aerosol (kg m**-2) +63 aerodomhphob Hydrophobic organic matter aerosol optical depth (~) +64 aerodomhphil Hydrophilic organic matter aerosol optical depth (~) +65 aersrcbchphob Source/gain of hydrophobic black carbon aerosol (kg m**-2 s**-1) +66 aersrcbchphil Source/gain of hydrophilic black carbon aerosol (kg m**-2 s**-1) +67 aerddpbchphob Dry deposition of hydrophobic black carbon aerosol (kg m**-2 s**-1) +68 aerddpbchphil Dry deposition of hydrophilic black carbon aerosol (kg m**-2 s**-1) +69 aersdmbchphob Sedimentation of hydrophobic black carbon aerosol (kg m**-2 s**-1) +70 aersdmbchphil Sedimentation of hydrophilic black carbon aerosol (kg m**-2 s**-1) +71 aerwdlsbchphob Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation (kg m**-2 s**-1) +72 aerwdlsbchphil Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation (kg m**-2 s**-1) +73 aerwdccbchphob Wet deposition of hydrophobic black carbon aerosol by convective precipitation (kg m**-2 s**-1) +74 aerwdccbchphil Wet deposition of hydrophilic black carbon aerosol by convective precipitation (kg m**-2 s**-1) +75 aerngtbchphob Negative fixer of hydrophobic black carbon aerosol (kg m**-2 s**-1) +76 aerngtbchphil Negative fixer of hydrophilic black carbon aerosol (kg m**-2 s**-1) +77 aermssbchphob Vertically integrated mass of hydrophobic black carbon aerosol (kg m**-2) +78 aermssbchphil Vertically integrated mass of hydrophilic black carbon aerosol (kg m**-2) +79 aerodbchphob Hydrophobic black carbon aerosol optical depth (~) +80 aerodbchphil Hydrophilic black carbon aerosol optical depth (~) +81 aersrcsu Source/gain of sulphate aerosol (kg m**-2 s**-1) +82 aerddpsu Dry deposition of sulphate aerosol (kg m**-2 s**-1) +83 aersdmsu Sedimentation of sulphate aerosol (kg m**-2 s**-1) +84 aerwdlssu Wet deposition of sulphate aerosol by large-scale precipitation (kg m**-2 s**-1) +85 aerwdccsu Wet deposition of sulphate aerosol by convective precipitation (kg m**-2 s**-1) +86 aerngtsu Negative fixer of sulphate aerosol (kg m**-2 s**-1) +87 aermsssu Vertically integrated mass of sulphate aerosol (kg m**-2) +88 aerodsu Sulphate aerosol optical depth (~) +89 accaod550 Accumulated total aerosol optical depth at 550 nm (s) +90 aluvpsn Effective (snow effect included) UV visible albedo for direct radiation ((0 - 1)) +91 aerdep10si 10 metre wind speed dust emission potential (kg s**2 m**-5) +92 aerdep10fg 10 metre wind gustiness dust emission potential (kg s**2 m**-5) +93 aot532 Total aerosol optical thickness at 532 nm (dimensionless) +94 naot532 Natural (sea-salt and dust) aerosol optical thickness at 532 nm (dimensionless) +95 aaot532 Antropogenic (black carbon, organic matter, sulphate) aerosol optical thickness at 532 nm (dimensionless) +96 aodabs340 Total absorption aerosol optical depth at 340 nm (~) +97 aodabs355 Total absorption aerosol optical depth at 355 nm (~) +98 aodabs380 Total absorption aerosol optical depth at 380 nm (~) +99 aodabs400 Total absorption aerosol optical depth at 400 nm (~) +100 aodabs440 Total absorption aerosol optical depth at 440 nm (~) +101 aodabs469 Total absorption aerosol optical depth at 469 nm (~) +102 aodabs500 Total absorption aerosol optical depth at 500 nm (~) +103 aodabs532 Total absorption aerosol optical depth at 532 nm (~) +104 aodabs550 Total absorption aerosol optical depth at 550 nm (~) +105 aodabs645 Total absorption aerosol optical depth at 645 nm (~) +106 aodabs670 Total absorption aerosol optical depth at 670 nm (~) +107 aodabs800 Total absorption aerosol optical depth at 800 nm (~) +108 aodabs858 Total absorption aerosol optical depth at 858 nm (~) +109 aodabs865 Total absorption aerosol optical depth at 865 nm (~) +110 aodabs1020 Total absorption aerosol optical depth at 1020 nm (~) +111 aodabs1064 Total absorption aerosol optical depth at 1064 nm (~) +112 aodabs1240 Total absorption aerosol optical depth at 1240 nm (~) +113 aodabs1640 Total absorption aerosol optical depth at 1640 nm (~) +114 aodfm340 Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm (~) +115 aodfm355 Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm (~) +116 aodfm380 Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm (~) +117 aodfm400 Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm (~) +118 aodfm440 Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm (~) +119 aodfm469 Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm (~) +120 aodfm500 Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm (~) +121 aodfm532 Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm (~) +122 aodfm550 Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm (~) +123 aodfm645 Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm (~) +124 aodfm670 Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm (~) +125 aodfm800 Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm (~) +126 aodfm858 Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm (~) +127 aodfm865 Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm (~) +128 aodfm1020 Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm (~) +129 aodfm1064 Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm (~) +130 aodfm1240 Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm (~) +131 aodfm1640 Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm (~) +132 ssa340 Single scattering albedo at 340 nm ((0 - 1)) +133 ssa355 Single scattering albedo at 355 nm ((0 - 1)) +134 ssa380 Single scattering albedo at 380 nm ((0 - 1)) +135 ssa400 Single scattering albedo at 400 nm ((0 - 1)) +136 ssa440 Single scattering albedo at 440 nm ((0 - 1)) +137 ssa469 Single scattering albedo at 469 nm ((0 - 1)) +138 ssa500 Single scattering albedo at 500 nm ((0 - 1)) +139 ssa532 Single scattering albedo at 532 nm ((0 - 1)) +140 ssa550 Single scattering albedo at 550 nm ((0 - 1)) +141 ssa645 Single scattering albedo at 645 nm ((0 - 1)) +142 ssa670 Single scattering albedo at 670 nm ((0 - 1)) +143 ssa800 Single scattering albedo at 800 nm ((0 - 1)) +144 ssa858 Single scattering albedo at 858 nm ((0 - 1)) +145 ssa865 Single scattering albedo at 865 nm ((0 - 1)) +146 ssa1020 Single scattering albedo at 1020 nm ((0 - 1)) +147 ssa1064 Single scattering albedo at 1064 nm ((0 - 1)) +148 ssa1240 Single scattering albedo at 1240 nm ((0 - 1)) +149 ssa1640 Single scattering albedo at 1640 nm ((0 - 1)) +150 asymmetry340 Asymmetry factor at 340 nm (~) +151 asymmetry355 Asymmetry factor at 355 nm (~) +152 asymmetry380 Asymmetry factor at 380 nm (~) +153 asymmetry400 Asymmetry factor at 400 nm (~) +154 asymmetry440 Asymmetry factor at 440 nm (~) +155 asymmetry469 Asymmetry factor at 469 nm (~) +156 asymmetry500 Asymmetry factor at 500 nm (~) +157 asymmetry532 Asymmetry factor at 532 nm (~) +158 asymmetry550 Asymmetry factor at 550 nm (~) +159 asymmetry645 Asymmetry factor at 645 nm (~) +160 asymmetry670 Asymmetry factor at 670 nm (~) +161 asymmetry800 Asymmetry factor at 800 nm (~) +162 asymmetry858 Asymmetry factor at 858 nm (~) +163 asymmetry865 Asymmetry factor at 865 nm (~) +164 asymmetry1020 Asymmetry factor at 1020 nm (~) +165 asymmetry1064 Asymmetry factor at 1064 nm (~) +166 asymmetry1240 Asymmetry factor at 1240 nm (~) +167 asymmetry1640 Asymmetry factor at 1640 nm (~) +168 aersrcso2 Source/gain of sulphur dioxide (kg m**-2 s**-1) +169 aerddpso2 Dry deposition of sulphur dioxide (kg m**-2 s**-1) +170 aersdmso2 Sedimentation of sulphur dioxide (kg m**-2 s**-1) +171 aerwdlsso2 Wet deposition of sulphur dioxide by large-scale precipitation (kg m**-2 s**-1) +172 aerwdccso2 Wet deposition of sulphur dioxide by convective precipitation (kg m**-2 s**-1) +173 aerngtso2 Negative fixer of sulphur dioxide (kg m**-2 s**-1) +174 aermssso2 Vertically integrated mass of sulphur dioxide (kg m**-2) +175 aerodso2 Sulphur dioxide optical depth (~) +176 aodabs2130 Total absorption aerosol optical depth at 2130 nm (~) +177 aodfm2130 Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm (~) +178 ssa2130 Single scattering albedo at 2130 nm ((0 - 1)) +179 asymmetry2130 Asymmetry factor at 2130 nm (~) +180 aerext355 Aerosol extinction coefficient at 355 nm (m**-1) +181 aerext532 Aerosol extinction coefficient at 532 nm (m**-1) +182 aerext1064 Aerosol extinction coefficient at 1064 nm (m**-1) +183 aerbackscattoa355 Aerosol backscatter coefficient at 355 nm (from top of atmosphere) (m**-1 sr**-1) +184 aerbackscattoa532 Aerosol backscatter coefficient at 532 nm (from top of atmosphere) (m**-1 sr**-1) +185 aerbackscattoa1064 Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) (m**-1 sr**-1) +186 aerbackscatgnd355 Aerosol backscatter coefficient at 355 nm (from ground) (m**-1 sr**-1) +187 aerbackscatgnd532 Aerosol backscatter coefficient at 532 nm (from ground) (m**-1 sr**-1) +188 aerbackscatgnd1064 Aerosol backscatter coefficient at 1064 nm (from ground) (m**-1 sr**-1) +189 aersrcnif Source/gain of fine-mode nitrate aerosol (kg m**-2 s**-1) +190 aersrcnic Source/gain of coarse-mode nitrate aerosol (kg m**-2 s**-1) +191 aerddpnif Dry deposition of fine-mode nitrate aerosol (kg m**-2 s**-1) +192 aerddpnic Dry deposition of coarse-mode nitrate aerosol (kg m**-2 s**-1) +193 aersdmnif Sedimentation of fine-mode nitrate aerosol (kg m**-2 s**-1) +194 aersdmnic Sedimentation of coarse-mode nitrate aerosol (kg m**-2 s**-1) +195 aerwdlnif Wet deposition of fine-mode nitrate aerosol by large-scale precipitation (kg m**-2 s**-1) +196 aerwdlnic Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation (kg m**-2 s**-1) +197 aerwdcnif Wet deposition of fine-mode nitrate aerosol by convective precipitation (kg m**-2 s**-1) +198 aerwdcnic Wet deposition of coarse-mode nitrate aerosol by convective precipitation (kg m**-2 s**-1) +199 aerngtnif Negative fixer of fine-mode nitrate aerosol (kg m**-2 s**-1) +200 aerngtnic Negative fixer of coarse-mode nitrate aerosol (kg m**-2 s**-1) +201 aermssnif Vertically integrated mass of fine-mode nitrate aerosol (kg m**-2) +202 aermssnic Vertically integrated mass of coarse-mode nitrate aerosol (kg m**-2) +203 aerodnif Fine-mode nitrate aerosol optical depth at 550 nm (dimensionless) +204 aerodnic Coarse-mode nitrate aerosol optical depth at 550 nm (dimensionless) +205 aersrcam Source/gain of ammonium aerosol (kg m**-2 s**-1) +206 aerddpam Dry deposition of ammonium aerosol (kg m**-2 s**-1) +207 aersdmam Sedimentation of ammonium aerosol (kg m**-2 s**-1) +208 aerwdlam Wet deposition of ammonium aerosol by large-scale precipitation (kg m**-2 s**-1) +209 aerwdcam Wet deposition of ammonium aerosol by convective precipitation (kg m**-2 s**-1) +210 aerngtam Negative fixer of ammonium aerosol (kg m**-2 s**-1) +211 aermssam Vertically integrated mass of ammonium aerosol (kg m**-2) diff --git a/definitions/grib1/2.98.220.table b/definitions/grib1/2.98.220.table index cd6cafaf9..c9d6450c4 100644 --- a/definitions/grib1/2.98.220.table +++ b/definitions/grib1/2.98.220.table @@ -1,2 +1,2 @@ # This file was automatically generated by ./param.pl -228 228 TPOC Total precipitation observation count (dimensionless) +228 tpoc Total precipitation observation count (dimensionless) diff --git a/definitions/grib1/2.98.228.table b/definitions/grib1/2.98.228.table index fe5d65b41..c6fe1d108 100644 --- a/definitions/grib1/2.98.228.table +++ b/definitions/grib1/2.98.228.table @@ -1,108 +1,108 @@ # This file was automatically generated by ./param.pl -1 cin CIN Convective inhibition (J kg**-1) -2 orog OROG Orography (m) -3 zust ZUST Friction velocity (m s**-1) -4 mean2t MEAN2T Mean temperature at 2 metres (K) -5 mean10ws MEAN10WS Mean of 10 metre wind speed (m s**-1) -6 meantcc MEANTCC Mean total cloud cover (0 - 1) -7 dl DL Lake total depth (m) -8 lmlt LMLT Lake mix-layer temperature (K) -9 lmld LMLD Lake mix-layer depth (m) -10 lblt LBLT Lake bottom temperature (K) -11 ltlt LTLT Lake total layer temperature (K) -12 lshf LSHF Lake shape factor (dimensionless) -13 lict LICT Lake ice surface temperature (K) -14 licd LICD Lake ice total depth (m) -15 dndzn DNDZN Minimum vertical gradient of refractivity inside trapping layer (m**-1) -16 dndza DNDZA Mean vertical gradient of refractivity inside trapping layer (m**-1) -17 dctb DCTB Duct base height (m) -18 tplb TPLB Trapping layer base height (m) -19 tplt TPLT Trapping layer top height (m) -20 degm10l -10 degrees C isothermal level (m) -21 fdir FDIR Total sky direct solar radiation at surface (J m**-2) -22 cdir CDIR Clear-sky direct solar radiation at surface (J m**-2) -23 cbh CBH Cloud base height (m) -24 deg0l DEG0L Zero degree level (m) -25 hvis HVIS Horizontal visibility (m) -26 mx2t3 MX2T3 Maximum temperature at 2 metres in the last 3 hours (K) -27 mn2t3 MN2T3 Minimum temperature at 2 metres in the last 3 hours (K) -28 10fg3 10FG3 10 metre wind gust in the last 3 hours (m s**-1) -29 i10fg I10FG Instantaneous 10 metre wind gust (m s**-1) -39 sm SM Soil Moisture (kg m**-3) -40 swi1 SWI1 Soil wetness index in layer 1 (dimensionless) -41 swi2 SWI2 Soil wetness index in layer 2 (dimensionless) -42 swi3 SWI3 Soil wetness index in layer 3 (dimensionless) -43 swi4 SWI4 Soil wetness index in layer 4 (dimensionless) -44 capes CAPES Convective available potential energy shear (m**2 s**-2) -46 hcct HCCT Height of convective cloud top (m) -47 hwbt0 HWBT0 Height of zero-degree wet-bulb temperature (m) -48 hwbt1 HWBT1 Height of one-degree wet-bulb temperature (m) -50 litoti LITOTI Instantaneous total lightning flash density (km**-2 day**-1) -51 litota1 LITOTA1 Averaged total lightning flash density in the last hour (km**-2 day**-1) -52 licgi LICGI Instantaneous cloud-to-ground lightning flash density (km**-2 day**-1) -53 licga1 LICGA1 Averaged cloud-to-ground lightning flash density in the last hour (km**-2 day**-1) -70 smnnob SMNNOB SMOS observed soil moisture retrieved using neural network (m**3 m**-3) -71 smnner SMNNER SMOS observed soil moisture uncertainty retrieved using neural network (m**3 m**-3) -72 smnnrfi SMNNRFI SMOS radio frequency interference probability (%) -73 smnnnb SMNNNB SMOS number of observations per grid point (dimensionless) -74 smnntim SMNNTIM SMOS observation time for the satellite soil moisture data (hour) -78 gppbfas GPPBFAS GPP coefficient from Biogenic Flux Adjustment System (dimensionless) -79 recbfas RECBFAS Rec coefficient from Biogenic Flux Adjustment System (dimensionless) -80 aco2nee ACO2NEE Accumulated Carbon Dioxide Net Ecosystem Exchange (kg m**-2) -81 aco2gpp ACO2GPP Accumulated Carbon Dioxide Gross Primary Production (kg m**-2) -82 aco2rec ACO2REC Accumulated Carbon Dioxide Ecosystem Respiration (kg m**-2) -83 fco2nee FCO2NEE Flux of Carbon Dioxide Net Ecosystem Exchange (kg m**-2 s**-1) -84 fco2gpp FCO2GPP Flux of Carbon Dioxide Gross Primary Production (kg m**-2 s**-1) -85 fco2rec FCO2REC Flux of Carbon Dioxide Ecosystem Respiration (kg m**-2 s**-1) -88 tcslw TCSLW Total column supercooled liquid water (kg m**-2) -89 tcrw TCRW Total column rain water (kg m**-2) -90 tcsw TCSW Total column snow water (kg m**-2) -91 ccf CCF Canopy cover fraction (0 - 1) -92 stf STF Soil texture fraction (0 - 1) -93 swv SWV Volumetric soil moisture (m**3 m**-3) -94 ist IST Ice temperature (K) -109 ceil CEIL Ceiling (m) -121 kx KX K index (K) -123 totalx TOTALX Total totals index (K) -129 ssrdc SSRDC Surface solar radiation downward clear-sky (J m**-2) -130 strdc STRDC Surface thermal radiation downward clear-sky (J m**-2) -131 u10n U10N Neutral wind at 10 m u-component (m s**-1) -132 v10n V10N Neutral wind at 10 m v-component (m s**-1) -134 vtnowd VTNOWD V-tendency from non-orographic wave drag (m s**-2) -136 utnowd UTNOWD U-tendency from non-orographic wave drag (m s**-2) -139 st ST Soil Temperature (K) -141 sd SD Snow depth water equivalent (kg m**-2) -144 sf SF Snow Fall water equivalent (kg m**-2) -164 tcc TCC Total Cloud Cover (%) -170 cap CAP Field capacity (kg m**-3) -171 wilt WILT Wilting point (kg m**-3) -216 fzra FZRA Accumulated freezing rain (m) -217 ilspf ILSPF Instantaneous large-scale surface precipitation fraction (0 - 1) -218 crr CRR Convective rain rate (kg m**-2 s**-1) -219 lsrr LSRR Large scale rain rate (kg m**-2 s**-1) -220 csfr CSFR Convective snowfall rate water equivalent (kg m**-2 s**-1) -221 lssfr LSSFR Large scale snowfall rate water equivalent (kg m**-2 s**-1) -222 mxtpr3 MXTPR3 Maximum total precipitation rate in the last 3 hours (kg m**-2 s**-1) -223 mntpr3 MNTPR3 Minimum total precipitation rate in the last 3 hours (kg m**-2 s**-1) -224 mxtpr6 MXTPR6 Maximum total precipitation rate in the last 6 hours (kg m**-2 s**-1) -225 mntpr6 MNTPR6 Minimum total precipitation rate in the last 6 hours (kg m**-2 s**-1) -226 mxtpr MXTPR Maximum total precipitation rate since previous post-processing (kg m**-2 s**-1) -227 mntpr MNTPR Minimum total precipitation rate since previous post-processing (kg m**-2 s**-1) -228 tp TP Total Precipitation (kg m**-2) -229 smos_tb_cdfa SMOS_TB_CDFA SMOS first Brightness Temperature Bias Correction parameter (K) -230 smos_tb_cdfb SMOS_TB_CDFB SMOS second Brightness Temperature Bias Correction parameter (dimensionless) -239 200U 200 metre U wind component (m s**-1) -240 200V 200 metre V wind component (m s**-1) -241 200SI 200 metre wind speed (m s**-1) -242 fdif FDIF Surface solar radiation diffuse total sky (J m**-2) -243 cdif CDIF Surface solar radiation diffuse clear-sky (J m**-2) -244 aldr ALDR Surface albedo of direct radiation (0 - 1) -245 aldf ALDF Surface albedo of diffuse radiation (0 - 1) -246 100u 100U 100 metre U wind component (m s**-1) -247 100v 100V 100 metre V wind component (m s**-1) -249 100si 100SI 100 metre wind speed (m s**-1) -250 irrfr IRRFR Irrigation fraction (Proportion) -251 pev PEV Potential evaporation (m) -252 irr IRR Irrigation (m) -253 ascat_sm_cdfa ASCAT_SM_CDFA ASCAT first soil moisture CDF matching parameter (m**3 m**-3) -254 ascat_sm_cdfb ASCAT_SM_CDFB ASCAT second soil moisture CDF matching parameter (dimensionless) +1 cin Convective inhibition (J kg**-1) +2 orog Orography (m) +3 zust Friction velocity (m s**-1) +4 mean2t Mean temperature at 2 metres (K) +5 mean10ws Mean of 10 metre wind speed (m s**-1) +6 meantcc Mean total cloud cover ((0 - 1)) +7 dl Lake total depth (m) +8 lmlt Lake mix-layer temperature (K) +9 lmld Lake mix-layer depth (m) +10 lblt Lake bottom temperature (K) +11 ltlt Lake total layer temperature (K) +12 lshf Lake shape factor (dimensionless) +13 lict Lake ice surface temperature (K) +14 licd Lake ice total depth (m) +15 dndzn Minimum vertical gradient of refractivity inside trapping layer (m**-1) +16 dndza Mean vertical gradient of refractivity inside trapping layer (m**-1) +17 dctb Duct base height (m) +18 tplb Trapping layer base height (m) +19 tplt Trapping layer top height (m) +20 degm10l -10 degrees C isothermal level (atm) (m) +21 fdir Total sky direct solar radiation at surface (J m**-2) +22 cdir Clear-sky direct solar radiation at surface (J m**-2) +23 cbh Cloud base height (m) +24 deg0l 0 degrees C isothermal level (atm) (m) +25 hvis Horizontal visibility (m) +26 mx2t3 Maximum temperature at 2 metres in the last 3 hours (K) +27 mn2t3 Minimum temperature at 2 metres in the last 3 hours (K) +28 10fg3 10 metre wind gust in the last 3 hours (m s**-1) +29 i10fg Instantaneous 10 metre wind gust (m s**-1) +39 sm Soil Moisture (kg m**-3) +40 swi1 Soil wetness index in layer 1 (dimensionless) +41 swi2 Soil wetness index in layer 2 (dimensionless) +42 swi3 Soil wetness index in layer 3 (dimensionless) +43 swi4 Soil wetness index in layer 4 (dimensionless) +44 capes Convective available potential energy shear (m**2 s**-2) +46 hcct Height of convective cloud top (m) +47 hwbt0 Height of zero-degree wet-bulb temperature (m) +48 hwbt1 Height of one-degree wet-bulb temperature (m) +50 litoti Instantaneous total lightning flash density (km**-2 day**-1) +51 litota1 Averaged total lightning flash density in the last hour (km**-2 day**-1) +52 licgi Instantaneous cloud-to-ground lightning flash density (km**-2 day**-1) +53 licga1 Averaged cloud-to-ground lightning flash density in the last hour (km**-2 day**-1) +70 smnnob SMOS observed soil moisture retrieved using neural network (m**3 m**-3) +71 smnner SMOS observed soil moisture uncertainty retrieved using neural network (m**3 m**-3) +72 smnnrfi SMOS radio frequency interference probability (%) +73 smnnnb SMOS number of observations per grid point (dimensionless) +74 smnntim SMOS observation time for the satellite soil moisture data (hour) +78 gppbfas GPP coefficient from Biogenic Flux Adjustment System (dimensionless) +79 recbfas Rec coefficient from Biogenic Flux Adjustment System (dimensionless) +80 aco2nee Accumulated Carbon Dioxide Net Ecosystem Exchange (kg m**-2) +81 aco2gpp Accumulated Carbon Dioxide Gross Primary Production (kg m**-2) +82 aco2rec Accumulated Carbon Dioxide Ecosystem Respiration (kg m**-2) +83 fco2nee Flux of Carbon Dioxide Net Ecosystem Exchange (kg m**-2 s**-1) +84 fco2gpp Flux of Carbon Dioxide Gross Primary Production (kg m**-2 s**-1) +85 fco2rec Flux of Carbon Dioxide Ecosystem Respiration (kg m**-2 s**-1) +88 tcslw Total column supercooled liquid water (kg m**-2) +89 tcrw Total column rain water (kg m**-2) +90 tcsw Total column snow water (kg m**-2) +91 ccf Canopy cover fraction ((0 - 1)) +92 stf Soil texture fraction ((0 - 1)) +93 swv Volumetric soil moisture (m**3 m**-3) +94 ist Ice temperature (K) +109 ceil Ceiling (m) +121 kx K index (K) +123 totalx Total totals index (K) +129 ssrdc Surface solar radiation downward clear-sky (J m**-2) +130 strdc Surface thermal radiation downward clear-sky (J m**-2) +131 u10n Neutral wind at 10 m u-component (m s**-1) +132 v10n Neutral wind at 10 m v-component (m s**-1) +134 vtnowd V-tendency from non-orographic wave drag (m s**-2) +136 utnowd U-tendency from non-orographic wave drag (m s**-2) +139 st Soil Temperature (K) +141 sd Snow depth water equivalent (kg m**-2) +144 sf Snow Fall water equivalent (kg m**-2) +164 tcc Total Cloud Cover (%) +170 cap Field capacity (kg m**-3) +171 wilt Wilting point (kg m**-3) +216 fzra Accumulated freezing rain (m) +217 ilspf Instantaneous large-scale surface precipitation fraction ((0 - 1)) +218 crr Convective rain rate (kg m**-2 s**-1) +219 lsrr Large scale rain rate (kg m**-2 s**-1) +220 csfr Convective snowfall rate water equivalent (kg m**-2 s**-1) +221 lssfr Large scale snowfall rate water equivalent (kg m**-2 s**-1) +222 mxtpr3 Maximum total precipitation rate in the last 3 hours (kg m**-2 s**-1) +223 mntpr3 Minimum total precipitation rate in the last 3 hours (kg m**-2 s**-1) +224 mxtpr6 Maximum total precipitation rate in the last 6 hours (kg m**-2 s**-1) +225 mntpr6 Minimum total precipitation rate in the last 6 hours (kg m**-2 s**-1) +226 mxtpr Maximum total precipitation rate since previous post-processing (kg m**-2 s**-1) +227 mntpr Minimum total precipitation rate since previous post-processing (kg m**-2 s**-1) +228 tp Total Precipitation (kg m**-2) +229 smos_tb_cdfa SMOS first Brightness Temperature Bias Correction parameter (K) +230 smos_tb_cdfb SMOS second Brightness Temperature Bias Correction parameter (dimensionless) +239 200u 200 metre U wind component (m s**-1) +240 200v 200 metre V wind component (m s**-1) +241 200si 200 metre wind speed (m s**-1) +242 fdif Surface solar radiation diffuse total sky (J m**-2) +243 cdif Surface solar radiation diffuse clear-sky (J m**-2) +244 aldr Surface albedo of direct radiation ((0 - 1)) +245 aldf Surface albedo of diffuse radiation ((0 - 1)) +246 100u 100 metre U wind component (m s**-1) +247 100v 100 metre V wind component (m s**-1) +249 100si 100 metre wind speed (m s**-1) +250 irrfr Irrigation fraction (Proportion) +251 pev Potential evaporation (m) +252 irr Irrigation (m) +253 ascat_sm_cdfa ASCAT first soil moisture CDF matching parameter (m**3 m**-3) +254 ascat_sm_cdfb ASCAT second soil moisture CDF matching parameter (dimensionless) diff --git a/definitions/grib1/2.98.230.table b/definitions/grib1/2.98.230.table index 8ec456e96..7bd1c1a78 100644 --- a/definitions/grib1/2.98.230.table +++ b/definitions/grib1/2.98.230.table @@ -1,51 +1,51 @@ # This file was automatically generated by ./param.pl -8 8 SROVAR Surface runoff (variable resolution) (m) -9 9 SSROVAR Sub-surface runoff (variable resolution) (m) -20 20 PARCSVAR Clear sky surface photosynthetically active radiation (variable resolution) (J m**-2) -21 21 FDIRVAR Total sky direct solar radiation at surface (variable resolution) (J m**-2) -22 22 CDIRVAR Clear-sky direct solar radiation at surface (variable resolution) (J m**-2) -44 44 ESVAR Snow evaporation (variable resolution) (kg m**-2) -45 45 SMLTVAR Snowmelt (variable resolution) (kg m**-2) -46 46 SDURVAR Solar duration (variable resolution) (s) -47 47 DSRPVAR Direct solar radiation (variable resolution) (J m**-2) -50 50 LSPFVAR Large-scale precipitation fraction (variable resolution) (s) -57 57 UVBVAR Downward UV radiation at the surface (variable resolution) (J m**-2) -58 58 PARVAR Photosynthetically active radiation at the surface (variable resolution) (J m**-2) -80 80 ACO2NEEVAR Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) (kg m**-2) -81 81 ACO2GPPVAR Accumulated Carbon Dioxide Gross Primary Production (variable resolution) (kg m**-2) -82 82 ACO2RECVAR Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) (kg m**-2) -129 129 SSRDCVAR Surface solar radiation downward clear-sky (variable resolution) (J m**-2) -130 130 STRDCVAR Surface thermal radiation downward clear-sky (variable resolution) (J m**-2) -142 142 LSPVAR Stratiform precipitation (Large-scale precipitation) (variable resolution) (m) -143 143 CPVAR Convective precipitation (variable resolution) (m) -144 144 SFVAR Snowfall (convective + stratiform) (variable resolution) (m of water equivalent) -145 145 BLDVAR Boundary layer dissipation (variable resolution) (J m**-2) -146 146 SSHFVAR Surface sensible heat flux (variable resolution) (J m**-2) -147 147 SLHFVAR Surface latent heat flux (variable resolution) (J m**-2) -169 169 SSRDVAR Surface solar radiation downwards (variable resolution) (J m**-2) -174 174 ALVAR Albedo (variable resolution) (0 - 1) -175 175 STRDVAR Surface thermal radiation downwards (variable resolution) (J m**-2) -176 176 SSRVAR Surface net solar radiation (variable resolution) (J m**-2) -177 177 STRVAR Surface net thermal radiation (variable resolution) (J m**-2) -178 178 TSRVAR Top net solar radiation (variable resolution) (J m**-2) -179 179 TTRVAR Top net thermal radiation (variable resolution) (J m**-2) -180 180 EWSSVAR East-West surface stress (variable resolution) (N m**-2 s) -181 181 NSSSVAR North-South surface stress (variable resolution) (N m**-2 s) -182 182 EVAR Evaporation (variable resolution) (kg m**-2) -189 189 SUNDVAR Sunshine duration (variable resolution) (s) -195 195 LGWSVAR Longitudinal component of gravity wave stress (variable resolution) (N m**-2 s) -196 196 MGWSVAR Meridional component of gravity wave stress (variable resolution) (N m**-2 s) -197 197 GWDVAR Gravity wave dissipation (variable resolution) (J m**-2) -198 198 SRCVAR Skin reservoir content (variable resolution) (kg m**-2) -205 205 ROVAR Runoff (variable resolution) (m) -208 208 TSRCVAR Top net solar radiation, clear sky (variable resolution) (J m**-2) -209 209 TTRCVAR Top net thermal radiation, clear sky (variable resolution) (J m**-2) -210 210 SSRCVAR Surface net solar radiation, clear sky (variable resolution) (J m**-2) -211 211 STRCVAR Surface net thermal radiation, clear sky (variable resolution) (J m**-2) -212 212 TISRVAR TOA incident solar radiation (variable resolution) (J m**-2) -213 213 VIMDVAR Vertically integrated moisture divergence (variable resolution) (kg m**-2) -216 216 FZRAVAR Accumulated freezing rain (variable resolution) (m) -228 228 TPVAR Total precipitation (variable resolution) (m) -239 239 CSFVAR Convective snowfall (variable resolution) (m of water equivalent) -240 240 LSFVAR Large-scale snowfall (variable resolution) (m of water equivalent) -251 251 PEVVAR Potential evaporation (variable resolution) (m) +8 srovar Surface runoff (variable resolution) (m) +9 ssrovar Sub-surface runoff (variable resolution) (m) +20 parcsvar Clear sky surface photosynthetically active radiation (variable resolution) (J m**-2) +21 fdirvar Total sky direct solar radiation at surface (variable resolution) (J m**-2) +22 cdirvar Clear-sky direct solar radiation at surface (variable resolution) (J m**-2) +44 esvar Snow evaporation (variable resolution) (kg m**-2) +45 smltvar Snowmelt (variable resolution) (kg m**-2) +46 sdurvar Solar duration (variable resolution) (s) +47 dsrpvar Direct solar radiation (variable resolution) (J m**-2) +50 lspfvar Large-scale precipitation fraction (variable resolution) (s) +57 uvbvar Downward UV radiation at the surface (variable resolution) (J m**-2) +58 parvar Photosynthetically active radiation at the surface (variable resolution) (J m**-2) +80 aco2neevar Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) (kg m**-2) +81 aco2gppvar Accumulated Carbon Dioxide Gross Primary Production (variable resolution) (kg m**-2) +82 aco2recvar Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) (kg m**-2) +129 ssrdcvar Surface solar radiation downward clear-sky (variable resolution) (J m**-2) +130 strdcvar Surface thermal radiation downward clear-sky (variable resolution) (J m**-2) +142 lspvar Stratiform precipitation (Large-scale precipitation) (variable resolution) (m) +143 cpvar Convective precipitation (variable resolution) (m) +144 sfvar Snowfall (convective + stratiform) (variable resolution) (m of water equivalent) +145 bldvar Boundary layer dissipation (variable resolution) (J m**-2) +146 sshfvar Surface sensible heat flux (variable resolution) (J m**-2) +147 slhfvar Surface latent heat flux (variable resolution) (J m**-2) +169 ssrdvar Surface solar radiation downwards (variable resolution) (J m**-2) +174 alvar Albedo (variable resolution) ((0 - 1)) +175 strdvar Surface thermal radiation downwards (variable resolution) (J m**-2) +176 ssrvar Surface net solar radiation (variable resolution) (J m**-2) +177 strvar Surface net thermal radiation (variable resolution) (J m**-2) +178 tsrvar Top net solar radiation (variable resolution) (J m**-2) +179 ttrvar Top net thermal radiation (variable resolution) (J m**-2) +180 ewssvar East-West surface stress (variable resolution) (N m**-2 s) +181 nsssvar North-South surface stress (variable resolution) (N m**-2 s) +182 evar Evaporation (variable resolution) (kg m**-2) +189 sundvar Sunshine duration (variable resolution) (s) +195 lgwsvar Longitudinal component of gravity wave stress (variable resolution) (N m**-2 s) +196 mgwsvar Meridional component of gravity wave stress (variable resolution) (N m**-2 s) +197 gwdvar Gravity wave dissipation (variable resolution) (J m**-2) +198 srcvar Skin reservoir content (variable resolution) (kg m**-2) +205 rovar Runoff (variable resolution) (m) +208 tsrcvar Top net solar radiation, clear sky (variable resolution) (J m**-2) +209 ttrcvar Top net thermal radiation, clear sky (variable resolution) (J m**-2) +210 ssrcvar Surface net solar radiation, clear sky (variable resolution) (J m**-2) +211 strcvar Surface net thermal radiation, clear sky (variable resolution) (J m**-2) +212 tisrvar TOA incident solar radiation (variable resolution) (J m**-2) +213 vimdvar Vertically integrated moisture divergence (variable resolution) (kg m**-2) +216 fzravar Accumulated freezing rain (variable resolution) (m) +228 tpvar Total precipitation (variable resolution) (m) +239 csfvar Convective snowfall (variable resolution) (m of water equivalent) +240 lsfvar Large-scale snowfall (variable resolution) (m of water equivalent) +251 pevvar Potential evaporation (variable resolution) (m) diff --git a/definitions/grib1/2.98.235.table b/definitions/grib1/2.98.235.table index e5d790154..929b5f7e0 100644 --- a/definitions/grib1/2.98.235.table +++ b/definitions/grib1/2.98.235.table @@ -1,49 +1,49 @@ # This file was automatically generated by ./param.pl -20 20 - Mean surface runoff rate (kg m**-2 s**-1) -21 21 - Mean sub-surface runoff rate (kg m**-2 s**-1) -22 22 - Mean surface photosynthetically active radiation flux, clear sky (W m**-2) -23 23 - Mean snow evaporation rate (kg m**-2 s**-1) -24 24 - Mean snowmelt rate (kg m**-2 s**-1) -25 25 - Mean magnitude of surface stress (N m**-2) -26 26 - Mean large-scale precipitation fraction (Proportion) -27 27 - Mean surface downward UV radiation flux (W m**-2) -28 28 - Mean surface photosynthetically active radiation flux (W m**-2) -29 29 - Mean large-scale precipitation rate (kg m**-2 s**-1) -30 30 - Mean convective precipitation rate (kg m**-2 s**-1) -31 31 - Mean snowfall rate (kg m**-2 s**-1) -32 32 - Mean boundary layer dissipation (W m**-2) -33 33 - Mean surface sensible heat flux (W m**-2) -34 34 - Mean surface latent heat flux (W m**-2) -35 35 - Mean surface downward short-wave radiation flux (W m**-2) -36 36 - Mean surface downward long-wave radiation flux (W m**-2) -37 37 - Mean surface net short-wave radiation flux (W m**-2) -38 38 - Mean surface net long-wave radiation flux (W m**-2) -39 39 - Mean top net short-wave radiation flux (W m**-2) -40 40 - Mean top net long-wave radiation flux (W m**-2) -41 41 - Mean eastward turbulent surface stress (N m**-2) -42 42 - Mean northward turbulent surface stress (N m**-2) -43 43 - Mean evaporation rate (kg m**-2 s**-1) -44 44 - Sunshine duration fraction (Proportion) -45 45 - Mean eastward gravity wave surface stress (N m**-2) -46 46 - Mean northward gravity wave surface stress (N m**-2) -47 47 - Mean gravity wave dissipation (W m**-2) -48 48 - Mean runoff rate (kg m**-2 s**-1) -49 49 - Mean top net short-wave radiation flux, clear sky (W m**-2) -50 50 - Mean top net long-wave radiation flux, clear sky (W m**-2) -51 51 - Mean surface net short-wave radiation flux, clear sky (W m**-2) -52 52 - Mean surface net long-wave radiation flux, clear sky (W m**-2) -53 53 - Mean top downward short-wave radiation flux (W m**-2) -54 54 - Mean vertically integrated moisture divergence (kg m**-2 s**-1) -55 55 - Mean total precipitation rate (kg m**-2 s**-1) -56 56 - Mean convective snowfall rate (kg m**-2 s**-1) -57 57 - Mean large-scale snowfall rate (kg m**-2 s**-1) -58 58 - Mean surface direct short-wave radiation flux (W m**-2) -59 59 - Mean surface direct short-wave radiation flux, clear sky (W m**-2) -60 60 - Mean surface diffuse short-wave radiation flux (W m**-2) -61 61 - Mean surface diffuse short-wave radiation flux, clear sky (W m**-2) -62 62 - Mean carbon dioxide net ecosystem exchange flux (kg m**-2 s**-1) -63 63 - Mean carbon dioxide gross primary production flux (kg m**-2 s**-1) -64 64 - Mean carbon dioxide ecosystem respiration flux (kg m**-2 s**-1) -65 65 - Mean rain rate (kg m**-2 s**-1) -66 66 - Mean convective rain rate (kg m**-2 s**-1) -67 67 - Mean large-scale rain rate (kg m**-2 s**-1) +20 msror Mean surface runoff rate (kg m**-2 s**-1) +21 mssror Mean sub-surface runoff rate (kg m**-2 s**-1) +22 msparfcs Mean surface photosynthetically active radiation flux, clear sky (W m**-2) +23 mser Mean snow evaporation rate (kg m**-2 s**-1) +24 msmr Mean snowmelt rate (kg m**-2 s**-1) +25 mmtss Mean magnitude of turbulent surface stress (N m**-2) +26 mlspf Mean large-scale precipitation fraction (Proportion) +27 msdwuvrf Mean surface downward UV radiation flux (W m**-2) +28 msparf Mean surface photosynthetically active radiation flux (W m**-2) +29 mlspr Mean large-scale precipitation rate (kg m**-2 s**-1) +30 mcpr Mean convective precipitation rate (kg m**-2 s**-1) +31 msr Mean snowfall rate (kg m**-2 s**-1) +32 mbld Mean boundary layer dissipation (W m**-2) +33 msshf Mean surface sensible heat flux (W m**-2) +34 mslhf Mean surface latent heat flux (W m**-2) +35 msdwswrf Mean surface downward short-wave radiation flux (W m**-2) +36 msdwlwrf Mean surface downward long-wave radiation flux (W m**-2) +37 msnswrf Mean surface net short-wave radiation flux (W m**-2) +38 msnlwrf Mean surface net long-wave radiation flux (W m**-2) +39 mtnswrf Mean top net short-wave radiation flux (W m**-2) +40 mtnlwrf Mean top net long-wave radiation flux (W m**-2) +41 metss Mean eastward turbulent surface stress (N m**-2) +42 mntss Mean northward turbulent surface stress (N m**-2) +43 mer Mean evaporation rate (kg m**-2 s**-1) +44 sdf Sunshine duration fraction (Proportion) +45 megwss Mean eastward gravity wave surface stress (N m**-2) +46 mngwss Mean northward gravity wave surface stress (N m**-2) +47 mgwd Mean gravity wave dissipation (W m**-2) +48 mror Mean runoff rate (kg m**-2 s**-1) +49 mtnswrfcs Mean top net short-wave radiation flux, clear sky (W m**-2) +50 mtnlwrfcs Mean top net long-wave radiation flux, clear sky (W m**-2) +51 msnswrfcs Mean surface net short-wave radiation flux, clear sky (W m**-2) +52 msnlwrfcs Mean surface net long-wave radiation flux, clear sky (W m**-2) +53 mtdwswrf Mean top downward short-wave radiation flux (W m**-2) +54 mvimd Mean vertically integrated moisture divergence (kg m**-2 s**-1) +55 mtpr Mean total precipitation rate (kg m**-2 s**-1) +56 mcsr Mean convective snowfall rate (kg m**-2 s**-1) +57 mlssr Mean large-scale snowfall rate (kg m**-2 s**-1) +58 msdrswrf Mean surface direct short-wave radiation flux (W m**-2) +59 msdrswrfcs Mean surface direct short-wave radiation flux, clear sky (W m**-2) +60 msdfswrf Mean surface diffuse short-wave radiation flux (W m**-2) +61 msdfswrfcs Mean surface diffuse short-wave radiation flux, clear sky (W m**-2) +62 mcdneef Mean carbon dioxide net ecosystem exchange flux (kg m**-2 s**-1) +63 mcdgppf Mean carbon dioxide gross primary production flux (kg m**-2 s**-1) +64 mcderf Mean carbon dioxide ecosystem respiration flux (kg m**-2 s**-1) +65 mrr Mean rain rate (kg m**-2 s**-1) +66 mcrr Mean convective rain rate (kg m**-2 s**-1) +67 mlsrr Mean large-scale rain rate (kg m**-2 s**-1) From 8c726fc942b5ed0dde7287d5aa1d0c09402bdec6 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 29 Mar 2021 13:11:27 +0100 Subject: [PATCH 442/683] ECC-1227: GRIB2: Add new parameter 'Tropopause pressure' --- definitions/grib2/tables/0/4.5.table | 2 +- definitions/grib2/tables/1/4.5.table | 2 +- definitions/grib2/tables/10/4.5.table | 2 +- definitions/grib2/tables/11/4.5.table | 2 +- definitions/grib2/tables/12/4.5.table | 2 +- definitions/grib2/tables/13/4.5.table | 2 +- definitions/grib2/tables/14/4.5.table | 2 +- definitions/grib2/tables/15/4.5.table | 2 +- definitions/grib2/tables/16/4.5.table | 2 +- definitions/grib2/tables/17/4.5.table | 2 +- definitions/grib2/tables/18/4.5.table | 2 +- definitions/grib2/tables/19/4.5.table | 2 +- definitions/grib2/tables/2/4.5.table | 2 +- definitions/grib2/tables/20/4.5.table | 2 +- definitions/grib2/tables/21/4.5.table | 2 +- definitions/grib2/tables/22/4.5.table | 2 +- definitions/grib2/tables/23/4.5.table | 2 +- definitions/grib2/tables/24/4.5.table | 2 +- definitions/grib2/tables/25/4.5.table | 2 +- definitions/grib2/tables/26/4.5.table | 2 +- definitions/grib2/tables/27/4.5.table | 2 +- definitions/grib2/tables/3/4.5.table | 2 +- definitions/grib2/tables/4/4.5.table | 2 +- definitions/grib2/tables/5/4.5.table | 2 +- definitions/grib2/tables/6/4.5.table | 2 +- definitions/grib2/tables/7/4.5.table | 2 +- definitions/grib2/tables/8/4.5.table | 2 +- definitions/grib2/tables/9/4.5.table | 2 +- 28 files changed, 28 insertions(+), 28 deletions(-) diff --git a/definitions/grib2/tables/0/4.5.table b/definitions/grib2/tables/0/4.5.table index 72dc1ad1b..984d7a3a0 100644 --- a/definitions/grib2/tables/0/4.5.table +++ b/definitions/grib2/tables/0/4.5.table @@ -5,7 +5,7 @@ 4 4 Level of 0o C isotherm 5 5 Level of adiabatic condensation lifted from the surface 6 6 Maximum wind level -7 7 Tropopause +7 sfc Tropopause 8 sfc Nominal top of the atmosphere 9 9 Sea bottom 20 20 Isothermal level (K) diff --git a/definitions/grib2/tables/1/4.5.table b/definitions/grib2/tables/1/4.5.table index d4e950872..3b3039f7a 100644 --- a/definitions/grib2/tables/1/4.5.table +++ b/definitions/grib2/tables/1/4.5.table @@ -5,7 +5,7 @@ 4 4 Level of 0o C isotherm 5 5 Level of adiabatic condensation lifted from the surface 6 6 Maximum wind level -7 7 Tropopause +7 sfc Tropopause 8 sfc Nominal top of the atmosphere 9 9 Sea bottom 20 20 Isothermal level (K) diff --git a/definitions/grib2/tables/10/4.5.table b/definitions/grib2/tables/10/4.5.table index 000e489c2..1ada3eb23 100644 --- a/definitions/grib2/tables/10/4.5.table +++ b/definitions/grib2/tables/10/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm 5 5 Level of adiabatic condensation lifted from the surface 6 6 Maximum wind level -7 7 Tropopause +7 sfc Tropopause 8 sfc Nominal top of the atmosphere 9 9 Sea bottom 10 10 Entire atmosphere diff --git a/definitions/grib2/tables/11/4.5.table b/definitions/grib2/tables/11/4.5.table index 000e489c2..1ada3eb23 100644 --- a/definitions/grib2/tables/11/4.5.table +++ b/definitions/grib2/tables/11/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm 5 5 Level of adiabatic condensation lifted from the surface 6 6 Maximum wind level -7 7 Tropopause +7 sfc Tropopause 8 sfc Nominal top of the atmosphere 9 9 Sea bottom 10 10 Entire atmosphere diff --git a/definitions/grib2/tables/12/4.5.table b/definitions/grib2/tables/12/4.5.table index 000e489c2..1ada3eb23 100644 --- a/definitions/grib2/tables/12/4.5.table +++ b/definitions/grib2/tables/12/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm 5 5 Level of adiabatic condensation lifted from the surface 6 6 Maximum wind level -7 7 Tropopause +7 sfc Tropopause 8 sfc Nominal top of the atmosphere 9 9 Sea bottom 10 10 Entire atmosphere diff --git a/definitions/grib2/tables/13/4.5.table b/definitions/grib2/tables/13/4.5.table index f7fb9b78e..ddab1d723 100644 --- a/definitions/grib2/tables/13/4.5.table +++ b/definitions/grib2/tables/13/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm 5 5 Level of adiabatic condensation lifted from the surface 6 6 Maximum wind level -7 7 Tropopause +7 sfc Tropopause 8 sfc Nominal top of the atmosphere 9 9 Sea bottom 10 10 Entire atmosphere diff --git a/definitions/grib2/tables/14/4.5.table b/definitions/grib2/tables/14/4.5.table index 00e7c29a6..e6d6d424c 100644 --- a/definitions/grib2/tables/14/4.5.table +++ b/definitions/grib2/tables/14/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm 5 5 Level of adiabatic condensation lifted from the surface 6 6 Maximum wind level -7 7 Tropopause +7 sfc Tropopause 8 sfc Nominal top of the atmosphere 9 9 Sea bottom 10 10 Entire atmosphere diff --git a/definitions/grib2/tables/15/4.5.table b/definitions/grib2/tables/15/4.5.table index ead38f293..f73733e88 100644 --- a/definitions/grib2/tables/15/4.5.table +++ b/definitions/grib2/tables/15/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm 5 5 Level of adiabatic condensation lifted from the surface 6 6 Maximum wind level -7 7 Tropopause +7 sfc Tropopause 8 sfc Nominal top of the atmosphere 9 9 Sea bottom 10 10 Entire atmosphere diff --git a/definitions/grib2/tables/16/4.5.table b/definitions/grib2/tables/16/4.5.table index 694903142..73c6eb7bf 100644 --- a/definitions/grib2/tables/16/4.5.table +++ b/definitions/grib2/tables/16/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm (-) 5 5 Level of adiabatic condensation lifted from the surface (-) 6 6 Maximum wind level (-) -7 7 Tropopause (-) +7 sfc Tropopause (-) 8 sfc Nominal top of the atmosphere (-) 9 9 Sea bottom (-) 10 10 Entire atmosphere (-) diff --git a/definitions/grib2/tables/17/4.5.table b/definitions/grib2/tables/17/4.5.table index 9356f833c..e70520c3b 100644 --- a/definitions/grib2/tables/17/4.5.table +++ b/definitions/grib2/tables/17/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm (-) 5 5 Level of adiabatic condensation lifted from the surface (-) 6 6 Maximum wind level (-) -7 7 Tropopause (-) +7 sfc Tropopause (-) 8 sfc Nominal top of the atmosphere (-) 9 9 Sea bottom (-) 10 10 Entire atmosphere (-) diff --git a/definitions/grib2/tables/18/4.5.table b/definitions/grib2/tables/18/4.5.table index f0ccbeea2..2f1a8a8b7 100644 --- a/definitions/grib2/tables/18/4.5.table +++ b/definitions/grib2/tables/18/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm (-) 5 5 Level of adiabatic condensation lifted from the surface (-) 6 6 Maximum wind level (-) -7 7 Tropopause (-) +7 sfc Tropopause (-) 8 sfc Nominal top of the atmosphere (-) 9 9 Sea bottom (-) 10 10 Entire atmosphere (-) diff --git a/definitions/grib2/tables/19/4.5.table b/definitions/grib2/tables/19/4.5.table index f0ccbeea2..2f1a8a8b7 100644 --- a/definitions/grib2/tables/19/4.5.table +++ b/definitions/grib2/tables/19/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm (-) 5 5 Level of adiabatic condensation lifted from the surface (-) 6 6 Maximum wind level (-) -7 7 Tropopause (-) +7 sfc Tropopause (-) 8 sfc Nominal top of the atmosphere (-) 9 9 Sea bottom (-) 10 10 Entire atmosphere (-) diff --git a/definitions/grib2/tables/2/4.5.table b/definitions/grib2/tables/2/4.5.table index 89c5fb175..d2a6d7876 100644 --- a/definitions/grib2/tables/2/4.5.table +++ b/definitions/grib2/tables/2/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0o C isotherm 5 5 Level of adiabatic condensation lifted from the surface 6 6 Maximum wind level -7 7 Tropopause +7 sfc Tropopause 8 sfc Nominal top of the atmosphere 9 9 Sea bottom # 10-19 Reserved diff --git a/definitions/grib2/tables/20/4.5.table b/definitions/grib2/tables/20/4.5.table index f0ccbeea2..2f1a8a8b7 100644 --- a/definitions/grib2/tables/20/4.5.table +++ b/definitions/grib2/tables/20/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm (-) 5 5 Level of adiabatic condensation lifted from the surface (-) 6 6 Maximum wind level (-) -7 7 Tropopause (-) +7 sfc Tropopause (-) 8 sfc Nominal top of the atmosphere (-) 9 9 Sea bottom (-) 10 10 Entire atmosphere (-) diff --git a/definitions/grib2/tables/21/4.5.table b/definitions/grib2/tables/21/4.5.table index f0ccbeea2..2f1a8a8b7 100644 --- a/definitions/grib2/tables/21/4.5.table +++ b/definitions/grib2/tables/21/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm (-) 5 5 Level of adiabatic condensation lifted from the surface (-) 6 6 Maximum wind level (-) -7 7 Tropopause (-) +7 sfc Tropopause (-) 8 sfc Nominal top of the atmosphere (-) 9 9 Sea bottom (-) 10 10 Entire atmosphere (-) diff --git a/definitions/grib2/tables/22/4.5.table b/definitions/grib2/tables/22/4.5.table index f0ccbeea2..2f1a8a8b7 100644 --- a/definitions/grib2/tables/22/4.5.table +++ b/definitions/grib2/tables/22/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm (-) 5 5 Level of adiabatic condensation lifted from the surface (-) 6 6 Maximum wind level (-) -7 7 Tropopause (-) +7 sfc Tropopause (-) 8 sfc Nominal top of the atmosphere (-) 9 9 Sea bottom (-) 10 10 Entire atmosphere (-) diff --git a/definitions/grib2/tables/23/4.5.table b/definitions/grib2/tables/23/4.5.table index 63578bbf7..178a04445 100644 --- a/definitions/grib2/tables/23/4.5.table +++ b/definitions/grib2/tables/23/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm (-) 5 5 Level of adiabatic condensation lifted from the surface (-) 6 6 Maximum wind level (-) -7 7 Tropopause (-) +7 sfc Tropopause (-) 8 sfc Nominal top of the atmosphere (-) 9 9 Sea bottom (-) 10 10 Entire atmosphere (-) diff --git a/definitions/grib2/tables/24/4.5.table b/definitions/grib2/tables/24/4.5.table index 4506d11f8..a6840e55e 100644 --- a/definitions/grib2/tables/24/4.5.table +++ b/definitions/grib2/tables/24/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm (-) 5 5 Level of adiabatic condensation lifted from the surface (-) 6 6 Maximum wind level (-) -7 7 Tropopause (-) +7 sfc Tropopause (-) 8 sfc Nominal top of the atmosphere (-) 9 9 Sea bottom (-) 10 10 Entire atmosphere (-) diff --git a/definitions/grib2/tables/25/4.5.table b/definitions/grib2/tables/25/4.5.table index 333587c61..98d6308ac 100644 --- a/definitions/grib2/tables/25/4.5.table +++ b/definitions/grib2/tables/25/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm (-) 5 5 Level of adiabatic condensation lifted from the surface (-) 6 6 Maximum wind level (-) -7 7 Tropopause (-) +7 sfc Tropopause (-) 8 sfc Nominal top of the atmosphere (-) 9 9 Sea bottom (-) 10 10 Entire atmosphere (-) diff --git a/definitions/grib2/tables/26/4.5.table b/definitions/grib2/tables/26/4.5.table index aa1aae39a..05050c6b7 100644 --- a/definitions/grib2/tables/26/4.5.table +++ b/definitions/grib2/tables/26/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm (-) 5 5 Level of adiabatic condensation lifted from the surface (-) 6 6 Maximum wind level (-) -7 7 Tropopause (-) +7 sfc Tropopause (-) 8 sfc Nominal top of the atmosphere (-) 9 9 Sea bottom (-) 10 10 Entire atmosphere (-) diff --git a/definitions/grib2/tables/27/4.5.table b/definitions/grib2/tables/27/4.5.table index 022582edd..c3d56dfb6 100644 --- a/definitions/grib2/tables/27/4.5.table +++ b/definitions/grib2/tables/27/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm (-) 5 5 Level of adiabatic condensation lifted from the surface (-) 6 6 Maximum wind level (-) -7 7 Tropopause (-) +7 sfc Tropopause (-) 8 sfc Nominal top of the atmosphere (-) 9 9 Sea bottom (-) 10 10 Entire atmosphere (-) diff --git a/definitions/grib2/tables/3/4.5.table b/definitions/grib2/tables/3/4.5.table index 89c5fb175..d2a6d7876 100644 --- a/definitions/grib2/tables/3/4.5.table +++ b/definitions/grib2/tables/3/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0o C isotherm 5 5 Level of adiabatic condensation lifted from the surface 6 6 Maximum wind level -7 7 Tropopause +7 sfc Tropopause 8 sfc Nominal top of the atmosphere 9 9 Sea bottom # 10-19 Reserved diff --git a/definitions/grib2/tables/4/4.5.table b/definitions/grib2/tables/4/4.5.table index 89c5fb175..d2a6d7876 100644 --- a/definitions/grib2/tables/4/4.5.table +++ b/definitions/grib2/tables/4/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0o C isotherm 5 5 Level of adiabatic condensation lifted from the surface 6 6 Maximum wind level -7 7 Tropopause +7 sfc Tropopause 8 sfc Nominal top of the atmosphere 9 9 Sea bottom # 10-19 Reserved diff --git a/definitions/grib2/tables/5/4.5.table b/definitions/grib2/tables/5/4.5.table index 0df986b67..5e8573cca 100644 --- a/definitions/grib2/tables/5/4.5.table +++ b/definitions/grib2/tables/5/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm 5 5 Level of adiabatic condensation lifted from the surface 6 6 Maximum wind level -7 7 Tropopause +7 sfc Tropopause 8 sfc Nominal top of the atmosphere 9 9 Sea bottom 10 10 Entire atmosphere diff --git a/definitions/grib2/tables/6/4.5.table b/definitions/grib2/tables/6/4.5.table index a475587a5..9be96e9da 100644 --- a/definitions/grib2/tables/6/4.5.table +++ b/definitions/grib2/tables/6/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm 5 5 Level of adiabatic condensation lifted from the surface 6 6 Maximum wind level -7 7 Tropopause +7 sfc Tropopause 8 sfc Nominal top of the atmosphere 9 9 Sea bottom 10 10 Entire atmosphere diff --git a/definitions/grib2/tables/7/4.5.table b/definitions/grib2/tables/7/4.5.table index a475587a5..9be96e9da 100644 --- a/definitions/grib2/tables/7/4.5.table +++ b/definitions/grib2/tables/7/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm 5 5 Level of adiabatic condensation lifted from the surface 6 6 Maximum wind level -7 7 Tropopause +7 sfc Tropopause 8 sfc Nominal top of the atmosphere 9 9 Sea bottom 10 10 Entire atmosphere diff --git a/definitions/grib2/tables/8/4.5.table b/definitions/grib2/tables/8/4.5.table index 886768d03..4f36494e9 100644 --- a/definitions/grib2/tables/8/4.5.table +++ b/definitions/grib2/tables/8/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm 5 5 Level of adiabatic condensation lifted from the surface 6 6 Maximum wind level -7 7 Tropopause +7 sfc Tropopause 8 sfc Nominal top of the atmosphere 9 9 Sea bottom 10 10 Entire atmosphere diff --git a/definitions/grib2/tables/9/4.5.table b/definitions/grib2/tables/9/4.5.table index f4fd65331..9a46a3aa0 100644 --- a/definitions/grib2/tables/9/4.5.table +++ b/definitions/grib2/tables/9/4.5.table @@ -6,7 +6,7 @@ 4 4 Level of 0 degree C isotherm 5 5 Level of adiabatic condensation lifted from the surface 6 6 Maximum wind level -7 7 Tropopause +7 sfc Tropopause 8 sfc Nominal top of the atmosphere 9 9 Sea bottom 10 10 Entire atmosphere From 2fc59e677b009cf0cebddcbc90e67e2031cd91b7 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 29 Mar 2021 13:11:37 +0100 Subject: [PATCH 443/683] ECC-1227: GRIB2: Add new parameter 'Tropopause pressure' --- definitions/grib2/cfVarName.def | 8 ++++++++ definitions/grib2/name.def | 8 ++++++++ definitions/grib2/paramId.def | 8 ++++++++ definitions/grib2/shortName.def | 8 ++++++++ definitions/grib2/units.def | 8 ++++++++ 5 files changed, 40 insertions(+) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 43512ec1a..d9f6f0c54 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -1166,6 +1166,14 @@ parameterCategory = 3 ; parameterNumber = 23 ; } +#Tropopause pressure +'trpp' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 7 ; + typeOfSecondFixedSurface = missing() ; + } #Height of convective cloud top 'hcct' = { discipline = 0 ; diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index 074bb2bd4..dc2dbf422 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -1166,6 +1166,14 @@ parameterCategory = 3 ; parameterNumber = 23 ; } +#Tropopause pressure +'Tropopause pressure' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 7 ; + typeOfSecondFixedSurface = missing() ; + } #Height of convective cloud top 'Height of convective cloud top' = { discipline = 0 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index b57612267..fa2a8cf6e 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -1166,6 +1166,14 @@ parameterCategory = 3 ; parameterNumber = 23 ; } +#Tropopause pressure +'228045' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 7 ; + typeOfSecondFixedSurface = missing() ; + } #Height of convective cloud top '228046' = { discipline = 0 ; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 2351c990b..702688e14 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -1166,6 +1166,14 @@ parameterCategory = 3 ; parameterNumber = 23 ; } +#Tropopause pressure +'trpp' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 7 ; + typeOfSecondFixedSurface = missing() ; + } #Height of convective cloud top 'hcct' = { discipline = 0 ; diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index 94ca77896..34899cb8d 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -1166,6 +1166,14 @@ parameterCategory = 3 ; parameterNumber = 23 ; } +#Tropopause pressure +'Pa' = { + discipline = 0 ; + parameterCategory = 3 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 7 ; + typeOfSecondFixedSurface = missing() ; + } #Height of convective cloud top 'm' = { discipline = 0 ; From 86e98744dea000378c5b26248aa8660d4b0bdc06 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 29 Mar 2021 16:57:49 +0100 Subject: [PATCH 444/683] Tools: check GRIB_OMP_THREADS is defined --- tools/codes_info.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/codes_info.c b/tools/codes_info.c index 675ede538..9e2a1ee81 100644 --- a/tools/codes_info.c +++ b/tools/codes_info.c @@ -44,7 +44,9 @@ static void print_debug_info(grib_context* context) grib_context_log(context, GRIB_LOG_DEBUG, "HAVE_LIBPNG=%d", HAVE_LIBPNG); grib_context_log(context, GRIB_LOG_DEBUG, "HAVE_AEC=%d", aec); grib_context_log(context, GRIB_LOG_DEBUG, "HAVE_ECCODES_THREADS=%d", GRIB_PTHREADS); +#ifdef GRIB_OMP_THREADS grib_context_log(context, GRIB_LOG_DEBUG, "HAVE_ECCODES_OMP_THREADS=%d", GRIB_OMP_THREADS); +#endif grib_context_log(context, GRIB_LOG_DEBUG, "HAVE_MEMFS=%d", memfs); } From c2fa436890c84bdfaf871a1f92d9b3a5271835c1 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 29 Mar 2021 16:58:21 +0100 Subject: [PATCH 445/683] Testing: add tests --- tests/Makefile.am | 48 ++++++++++++++++++++++++++++++++++++++++------- tests/include.sh | 2 ++ tools/Makefile.am | 22 ++++++++++++---------- 3 files changed, 55 insertions(+), 17 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index d677e4691..54bac4a74 100755 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -4,9 +4,6 @@ TESTS = definitions.sh \ bufrdc_desc_ref.sh \ bufrdc_ref.sh \ grib_data_quality_checks.sh \ - bufr_dump_data.sh \ - bufr_dump_samples.sh \ - bufr_dump_subset.sh \ bufr_json_samples.sh \ bufr_filter_misc.sh \ bufr_filter_extract_subsets.sh \ @@ -14,8 +11,12 @@ TESTS = definitions.sh \ bufr_filter_extract_area.sh \ bufr_filter_unpack_pack.sh \ bufr_json_data.sh \ + bufr_keys_iter.sh \ + bufr_ls_json.sh \ bufr_compare.sh \ - bufr_dump_descriptors.sh \ + bufr_rdbSubTypes.sh \ + bufr_split_by_rdbSubtype.sh \ + bufr_wmo_tables.sh \ bufr_copy.sh \ bufr_count.sh \ bufr_get.sh \ @@ -23,6 +24,17 @@ TESTS = definitions.sh \ bufr_set.sh \ bufr_templates.sh \ bufr_change_edition.sh \ + bufr_check_descriptors.sh \ + bufr_dump_data.sh \ + bufr_dump_samples.sh \ + bufr_dump_subset.sh \ + bufr_dump_descriptors.sh \ + bufr_dump_decode_C.sh \ + bufr_dump_decode_filter.sh \ + bufr_dump_decode_fortran.sh \ + bufr_dump_encode_C.sh \ + bufr_dump_encode_filter.sh \ + bufr_dump_encode_fortran.sh \ gts_ls.sh \ gts_compare.sh \ gts_get.sh \ @@ -36,7 +48,12 @@ TESTS = definitions.sh \ grib2to3.sh \ grib_bad.sh \ grib_ls.sh \ + grib2_chemicals_aerosols.sh \ + grib2_templates.sh \ + grib2_version.sh \ grib_filter.sh \ + grib_copy.sh \ + grib_double_cmp.sh \ grib_multi.sh \ pseudo_budg.sh \ pseudo_diag.sh \ @@ -47,6 +64,8 @@ TESTS = definitions.sh \ grib_concept.sh \ grib_decimalPrecision.sh \ grib_bitsPerValue.sh \ + grib_check_gaussian_grids.sh \ + grib_complex.sh \ grib_get_fail.sh \ grib_missing.sh \ grib_local.sh \ @@ -115,6 +134,16 @@ TESTS = definitions.sh \ grib_ecc-1000.sh \ grib_ecc-1001.sh \ grib_ecc-1030.sh \ + grib_ecc-1150.sh \ + grib_ecc-1167.sh \ + grib_ecc-1170.sh \ + bufr_ecc-1195.sh \ + grib_ecc-1212.sh \ + grib_efas.sh \ + grib_g1fcperiod.sh \ + grib_levtype.sh \ + grib_packing_order.sh \ + grib_sh_spectral_complex.sh \ grib_lam_gp.sh \ grib_lam_bf.sh \ filter_substr.sh \ @@ -129,11 +158,14 @@ download_data: @$(top_srcdir)/data/download.sh $(top_srcdir)/data noinst_PROGRAMS = packing_check gauss_sub read_any grib_double_cmp packing pack_unpack \ - julian grib_read_index grib_indexing gribex_perf\ + julian grib_read_index grib_indexing gribex_perf grib_sh_spectral_complex \ jpeg_perf grib_ccsds_perf so_perf png_perf grib_bpv_limit laplacian \ - unit_tests bufr_ecc-517 grib_lam_gp grib_lam_bf grib_sh_imag \ - bufr_extract_headers bufr_get_element list_codetable_flagtable_keys + unit_tests bufr_ecc-517 bufr_keys_iter grib_lam_gp grib_lam_bf grib_sh_imag \ + bufr_extract_headers bufr_get_element list_codetable_flagtable_keys \ + bufr_check_descriptors grib_packing_order +grib_packing_order_SOURCES = grib_packing_order.c +grib_sh_spectral_complex_SOURCES = grib_sh_spectral_complex.c laplacian_SOURCES = laplacian.c packing_SOURCES = packing.c packing_check_SOURCES = packing_check.c @@ -151,12 +183,14 @@ grib_ccsds_perf_SOURCES = grib_ccsds_perf.c gribex_perf_SOURCES = gribex_perf.c gauss_sub_SOURCES = gauss_sub.c bufr_ecc_517_SOURCES = bufr_ecc-517.c +bufr_keys_iter_SOURCES = bufr_keys_iter.c grib_lam_gp_SOURCES = grib_lam_gp.c grib_lam_bf_SOURCES = grib_lam_bf.c list_codetable_flagtable_keys_SOURCES = list_codetable_flagtable_keys.c grib_sh_imag_SOURCES = grib_sh_imag.c bufr_extract_headers_SOURCES = bufr_extract_headers.c bufr_get_element_SOURCES = bufr_get_element.c +bufr_check_descriptors_SOURCES = bufr_check_descriptors.c LDADD = $(top_builddir)/src/libeccodes.la $(EMOS_LIB) diff --git a/tests/include.sh b/tests/include.sh index 1e1209537..27a92226d 100644 --- a/tests/include.sh +++ b/tests/include.sh @@ -30,8 +30,10 @@ else set -x EXEC="" HAVE_MEMFS=0 + HAVE_PNG=0 HAVE_EXTRA_TESTS=0 HAVE_JPEG=0 + HAVE_AEC=0 if [ -z "${data_dir}" ] then diff --git a/tools/Makefile.am b/tools/Makefile.am index 9d5d78dfa..60b9faf74 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -12,11 +12,11 @@ libgrib_tools_la_SOURCES = grib_tools.c \ dist_bin_SCRIPTS = bufr_compare_dir -bin_PROGRAMS = grib_histogram big2gribex \ +bin_PROGRAMS = grib_histogram big2gribex grib_check_gaussian_grid \ codes_info codes_count grib_filter grib_ls grib_dump grib_merge \ grib2ppm grib_set grib_get grib_get_data grib_copy grib_repair \ grib_compare grib_list_keys codes_parser grib_count grib_index_build grib1to2 \ - gg_sub_area_check grib_to_netcdf grib_to_json \ + gg_sub_area_check grib_to_netcdf grib_to_json bufr_split_by_rdbSubtype \ bufr_count codes_bufr_filter bufr_ls bufr_dump bufr_set bufr_get \ bufr_copy bufr_compare bufr_index_build codes_split_file \ gts_copy gts_dump gts_filter gts_ls gts_get gts_compare \ @@ -29,6 +29,7 @@ noinst_PROGRAMS = gaussian mars_request xref #compile #dumpload grib_compare_ol #dumpload_SOURCES = dumpload.c loady.y loadl.l load.c dump.c load.h +grib_check_gaussian_grid_SOURCES = grib_check_gaussian_grid.c grib_merge_SOURCES = grib_merge.c grib_to_netcdf_SOURCES = grib_to_netcdf.c grib_to_json_SOURCES = grib_to_json.c @@ -59,14 +60,15 @@ gaussian_SOURCES = gaussian.c gg_sub_area_check_SOURCES = gg_sub_area_check.c grib1to2_SOURCES = grib1to2.in -codes_bufr_filter_SOURCES = bufr_filter.c -bufr_ls_SOURCES = bufr_ls.c -bufr_dump_SOURCES = bufr_dump.c -bufr_set_SOURCES = bufr_set.c -bufr_get_SOURCES = bufr_get.c -bufr_copy_SOURCES = bufr_copy.c -bufr_compare_SOURCES = bufr_compare.c -bufr_index_build_SOURCES = bufr_index_build.c +codes_bufr_filter_SOURCES = bufr_filter.c +bufr_split_by_rdbSubtype_SOURCES = bufr_split_by_rdbSubtype.c +bufr_ls_SOURCES = bufr_ls.c +bufr_dump_SOURCES = bufr_dump.c +bufr_set_SOURCES = bufr_set.c +bufr_get_SOURCES = bufr_get.c +bufr_copy_SOURCES = bufr_copy.c +bufr_compare_SOURCES = bufr_compare.c +bufr_index_build_SOURCES = bufr_index_build.c gts_copy_SOURCES = gts_copy.c gts_compare_SOURCES = gts_compare.c From 79b27d4afb305b5997ee27f91926aaaaf4932152 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 5 Apr 2021 18:26:55 +0100 Subject: [PATCH 446/683] ECC-1229: GRIB2: jumbled key ordering after update from Param DB --- definitions/grib2/cfVarName.def | 2 +- definitions/grib2/localConcepts/ecmf/name.def | 150 +++--- .../grib2/localConcepts/ecmf/paramId.def | 130 ++--- .../grib2/localConcepts/ecmf/shortName.def | 146 +++--- .../grib2/localConcepts/ecmf/units.def | 150 +++--- definitions/grib2/name.def | 466 +++++++++--------- definitions/grib2/paramId.def | 362 +++++++------- definitions/grib2/shortName.def | 356 ++++++------- definitions/grib2/units.def | 458 ++++++++--------- 9 files changed, 1110 insertions(+), 1110 deletions(-) diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index d9f6f0c54..3575fa303 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -1172,7 +1172,7 @@ parameterCategory = 3 ; parameterNumber = 0 ; typeOfFirstFixedSurface = 7 ; - typeOfSecondFixedSurface = missing() ; + typeOfSecondFixedSurface = 255 ; } #Height of convective cloud top 'hcct' = { diff --git a/definitions/grib2/localConcepts/ecmf/name.def b/definitions/grib2/localConcepts/ecmf/name.def index ab74d3b4b..8db89a90f 100644 --- a/definitions/grib2/localConcepts/ecmf/name.def +++ b/definitions/grib2/localConcepts/ecmf/name.def @@ -5,11 +5,11 @@ parameterCategory = 1 ; parameterNumber = 52 ; typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 100 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 100 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 100 mm 'Total precipitation of at least 100 mm' = { @@ -262,24 +262,24 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - lengthOfTimeRange = 24 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 103 ; typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 24 ; } #Minimum temperature at 2 metres in the last 24 hours 'Minimum temperature at 2 metres in the last 24 hours' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 24 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 3 ; + lengthOfTimeRange = 24 ; } #Montgomery potential 'Montgomery potential' = { @@ -3197,8 +3197,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_aerosol = 1 ; aerosolType = 65534 ; + is_aerosol = 1 ; } #Nitrate coarse mode aerosol mass mixing ratio 'Nitrate coarse mode aerosol mass mixing ratio' = { @@ -3294,8 +3294,8 @@ parameterCategory = 20 ; parameterNumber = 2 ; aerosolType = 65534 ; - is_aerosol = 1 ; typeOfGeneratingProcess = 20 ; + is_aerosol = 1 ; } #Nitrate coarse mode aerosol mass mixing ratio 'Nitrate coarse mode aerosol mass mixing ratio' = { @@ -3303,8 +3303,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - typeOfGeneratingProcess = 20 ; aerosolType = 65533 ; + typeOfGeneratingProcess = 20 ; is_aerosol = 1 ; } #Experimental product @@ -6658,8 +6658,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 11 ; - is_aerosol = 1 ; aerosolType = 65533 ; + is_aerosol = 1 ; } #Wet deposition of fine-mode nitrate aerosol by large-scale precipitation 'Wet deposition of fine-mode nitrate aerosol by large-scale precipitation' = { @@ -6667,8 +6667,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 9 ; - is_aerosol = 1 ; aerosolType = 65534 ; + is_aerosol = 1 ; } #Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation 'Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation' = { @@ -6676,8 +6676,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 9 ; - is_aerosol = 1 ; aerosolType = 65533 ; + is_aerosol = 1 ; } #Wet deposition of fine-mode nitrate aerosol by convective precipitation 'Wet deposition of fine-mode nitrate aerosol by convective precipitation' = { @@ -6685,8 +6685,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 10 ; - is_aerosol = 1 ; aerosolType = 65534 ; + is_aerosol = 1 ; } #Wet deposition of coarse-mode nitrate aerosol by convective precipitation 'Wet deposition of coarse-mode nitrate aerosol by convective precipitation' = { @@ -6694,8 +6694,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 10 ; - is_aerosol = 1 ; aerosolType = 65533 ; + is_aerosol = 1 ; } #Negative fixer of fine-mode nitrate aerosol 'Negative fixer of fine-mode nitrate aerosol' = { @@ -6712,8 +6712,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 193 ; - is_aerosol = 1 ; aerosolType = 65533 ; + is_aerosol = 1 ; } #Vertically integrated mass of fine-mode nitrate aerosol 'Vertically integrated mass of fine-mode nitrate aerosol' = { @@ -6721,10 +6721,10 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_aerosol = 1 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; aerosolType = 65534 ; + is_aerosol = 1 ; } #Vertically integrated mass of coarse-mode nitrate aerosol 'Vertically integrated mass of coarse-mode nitrate aerosol' = { @@ -6732,10 +6732,10 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; aerosolType = 65533 ; is_aerosol = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; } #Fine-mode nitrate aerosol optical depth at 550 nm 'Fine-mode nitrate aerosol optical depth at 550 nm' = { @@ -6744,11 +6744,11 @@ parameterCategory = 20 ; parameterNumber = 102 ; scaleFactorOfFirstWavelength = 8 ; - is_aerosol_optical = 1 ; typeOfSizeInterval = 255 ; + aerosolType = 65534 ; scaledValueOfFirstWavelength = 55 ; typeOfWavelengthInterval = 11 ; - aerosolType = 65534 ; + is_aerosol_optical = 1 ; } #Coarse-mode nitrate aerosol optical depth at 550 nm 'Coarse-mode nitrate aerosol optical depth at 550 nm' = { @@ -6756,12 +6756,12 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; - typeOfWavelengthInterval = 11 ; - aerosolType = 65533 ; scaleFactorOfFirstWavelength = 8 ; - is_aerosol_optical = 1 ; typeOfSizeInterval = 255 ; + aerosolType = 65533 ; scaledValueOfFirstWavelength = 55 ; + typeOfWavelengthInterval = 11 ; + is_aerosol_optical = 1 ; } #Source/gain of ammonium aerosol 'Source/gain of ammonium aerosol' = { @@ -6769,8 +6769,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 192 ; - is_aerosol = 1 ; aerosolType = 62003 ; + is_aerosol = 1 ; } #Negative fixer of ammonium aerosol 'Negative fixer of ammonium aerosol' = { @@ -6778,8 +6778,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 193 ; - is_aerosol = 1 ; aerosolType = 62003 ; + is_aerosol = 1 ; } #Source/gain of biogenic secondary organic aerosol 'Source/gain of biogenic secondary organic aerosol' = { @@ -6787,8 +6787,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 192 ; - is_aerosol = 1 ; aerosolType = 62032 ; + is_aerosol = 1 ; } #Negative fixer of biogenic secondary organic aerosol 'Negative fixer of biogenic secondary organic aerosol' = { @@ -10768,8 +10768,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 65531 ; + is_chemical = 1 ; } #Ozone emissions 'Ozone emissions' = { @@ -12097,8 +12097,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 65532 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Biomass burning volatile organic compounds 'Atmosphere emission mass flux of Biomass burning volatile organic compounds ' = { @@ -13351,8 +13351,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 65532 ; + is_chemical = 1 ; } #Dry deposition velocity of Biomass burning volatile organic compounds 'Dry deposition velocity of Biomass burning volatile organic compounds ' = { @@ -13360,8 +13360,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 65531 ; + is_chemical = 1 ; } #Total sky direct solar radiation at surface 'Total sky direct solar radiation at surface' = { @@ -13392,24 +13392,24 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 3 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 3 ; } #Minimum temperature at 2 metres in the last 3 hours 'Minimum temperature at 2 metres in the last 3 hours' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 3 ; typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 3 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 3 ; + lengthOfTimeRange = 3 ; } #10 metre wind gust in the last 3 hours '10 metre wind gust in the last 3 hours' = { @@ -13458,8 +13458,8 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; } #Instantaneous total lightning flash density 'Instantaneous total lightning flash density' = { @@ -13472,10 +13472,10 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; lengthOfTimeRange = 1 ; } #Averaged total lightning flash density in the last hour @@ -13503,11 +13503,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; lengthOfTimeRange = 1 ; - typeOfSecondFixedSurface = 8 ; } #Averaged cloud-to-ground lightning flash density in the last hour 'Averaged cloud-to-ground lightning flash density in the last hour' = { @@ -13520,11 +13520,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; - lengthOfTimeRange = 3 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 3 ; } #Averaged total lightning flash density in the last 3 hours 'Averaged total lightning flash density in the last 3 hours' = { @@ -13538,9 +13538,9 @@ parameterCategory = 17 ; parameterNumber = 4 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; lengthOfTimeRange = 6 ; } #Averaged total lightning flash density in the last 6 hours @@ -13554,11 +13554,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; - lengthOfTimeRange = 3 ; + typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 3 ; } #Averaged cloud-to-ground lightning flash density in the last 3 hours 'Averaged cloud-to-ground lightning flash density in the last 3 hours' = { @@ -13571,11 +13571,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; - lengthOfTimeRange = 6 ; + typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 6 ; } #Averaged cloud-to-ground lightning flash density in the last 6 hours 'Averaged cloud-to-ground lightning flash density in the last 6 hours' = { @@ -13708,11 +13708,11 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; - scaleFactorOfSecondWavelength = missing() ; scaleFactorOfFirstWavelength = 9 ; - scaledValueOfSecondWavelength = missing() ; scaledValueOfFirstWavelength = 740 ; + scaledValueOfSecondWavelength = missing() ; typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 755nm @@ -13721,12 +13721,12 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; - scaledValueOfSecondWavelength = missing() ; - scaledValueOfFirstWavelength = 755 ; - typeOfWavelengthInterval = 11 ; - is_aerosol_optical = 1 ; - scaleFactorOfSecondWavelength = missing() ; scaleFactorOfFirstWavelength = 9 ; + scaledValueOfFirstWavelength = 755 ; + scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 771nm 'Solar induced Chlorophyll fluorescence at 771nm' = { @@ -13734,11 +13734,11 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; - scaledValueOfSecondWavelength = missing() ; + scaleFactorOfFirstWavelength = 9 ; scaledValueOfFirstWavelength = 771 ; + scaledValueOfSecondWavelength = missing() ; typeOfWavelengthInterval = 11 ; scaleFactorOfSecondWavelength = missing() ; - scaleFactorOfFirstWavelength = 9 ; is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 757nm @@ -13747,12 +13747,12 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; - scaleFactorOfSecondWavelength = missing() ; scaleFactorOfFirstWavelength = 9 ; - is_aerosol_optical = 1 ; - scaledValueOfSecondWavelength = missing() ; scaledValueOfFirstWavelength = 757 ; + scaledValueOfSecondWavelength = missing() ; typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; } #Surface solar radiation downward clear-sky 'Surface solar radiation downward clear-sky' = { @@ -15534,13 +15534,13 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfLowerLimit = 25 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 25 ; scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 103 ; probabilityType = 3 ; } #2 metre temperature less than 273.15 K @@ -15554,10 +15554,10 @@ discipline = 10 ; parameterCategory = 0 ; parameterNumber = 3 ; - scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 101 ; productDefinitionTemplateNumber = 5 ; scaledValueOfLowerLimit = 2 ; - typeOfFirstFixedSurface = 101 ; + scaleFactorOfLowerLimit = 0 ; probabilityType = 3 ; } #Significant wave height of at least 4 m @@ -15565,21 +15565,21 @@ discipline = 10 ; parameterCategory = 0 ; parameterNumber = 3 ; - probabilityType = 3 ; typeOfFirstFixedSurface = 101 ; productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; scaledValueOfLowerLimit = 4 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Significant wave height of at least 6 m 'Significant wave height of at least 6 m' = { discipline = 10 ; parameterCategory = 0 ; parameterNumber = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 6 ; - productDefinitionTemplateNumber = 5 ; typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + scaledValueOfLowerLimit = 6 ; + scaleFactorOfLowerLimit = 0 ; probabilityType = 3 ; } #Significant wave height of at least 8 m @@ -15587,9 +15587,9 @@ discipline = 10 ; parameterCategory = 0 ; parameterNumber = 3 ; - scaledValueOfLowerLimit = 8 ; typeOfFirstFixedSurface = 101 ; productDefinitionTemplateNumber = 5 ; + scaledValueOfLowerLimit = 8 ; scaleFactorOfLowerLimit = 0 ; probabilityType = 3 ; } diff --git a/definitions/grib2/localConcepts/ecmf/paramId.def b/definitions/grib2/localConcepts/ecmf/paramId.def index 6a712cc9b..9549a56de 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.def @@ -4,12 +4,12 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 100 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 100 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 100 mm '131085' = { @@ -262,24 +262,24 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 24 ; - indicatorOfUnitForTimeRange = 1 ; + scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 24 ; } #Minimum temperature at 2 metres in the last 24 hours '52' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - scaledValueOfFirstFixedSurface = 2 ; typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 24 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 3 ; + lengthOfTimeRange = 24 ; } #Montgomery potential '53' = { @@ -3294,8 +3294,8 @@ parameterCategory = 20 ; parameterNumber = 2 ; aerosolType = 65534 ; - is_aerosol = 1 ; typeOfGeneratingProcess = 20 ; + is_aerosol = 1 ; } #Nitrate coarse mode aerosol mass mixing ratio '211248' = { @@ -3303,8 +3303,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - typeOfGeneratingProcess = 20 ; aerosolType = 65533 ; + typeOfGeneratingProcess = 20 ; is_aerosol = 1 ; } #Experimental product @@ -6649,8 +6649,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 11 ; - is_aerosol = 1 ; aerosolType = 65534 ; + is_aerosol = 1 ; } #Sedimentation of coarse-mode nitrate aerosol '215194' = { @@ -6743,12 +6743,12 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; + scaleFactorOfFirstWavelength = 8 ; typeOfSizeInterval = 255 ; aerosolType = 65534 ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 8 ; scaledValueOfFirstWavelength = 55 ; + typeOfWavelengthInterval = 11 ; + is_aerosol_optical = 1 ; } #Coarse-mode nitrate aerosol optical depth at 550 nm '215204' = { @@ -6756,12 +6756,12 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; - aerosolType = 65533 ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 8 ; - scaledValueOfFirstWavelength = 55 ; typeOfSizeInterval = 255 ; + aerosolType = 65533 ; + scaledValueOfFirstWavelength = 55 ; + typeOfWavelengthInterval = 11 ; + is_aerosol_optical = 1 ; } #Source/gain of ammonium aerosol '215205' = { @@ -10768,8 +10768,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 65531 ; + is_chemical = 1 ; } #Ozone emissions '219001' = { @@ -13392,24 +13392,24 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 2 ; - lengthOfTimeRange = 3 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 3 ; } #Minimum temperature at 2 metres in the last 3 hours '228027' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 3 ; lengthOfTimeRange = 3 ; - typeOfFirstFixedSurface = 103 ; - indicatorOfUnitForTimeRange = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; } #10 metre wind gust in the last 3 hours '228028' = { @@ -13472,11 +13472,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 1 ; typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 1 ; } #Averaged total lightning flash density in the last hour '228051' = { @@ -13503,9 +13503,9 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; - indicatorOfUnitForTimeRange = 1 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; lengthOfTimeRange = 1 ; } @@ -13520,11 +13520,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 3 ; } #Averaged total lightning flash density in the last 3 hours '228057' = { @@ -13537,11 +13537,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; lengthOfTimeRange = 6 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfSecondFixedSurface = 8 ; } #Averaged total lightning flash density in the last 6 hours '228058' = { @@ -13554,11 +13554,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 3 ; } #Averaged cloud-to-ground lightning flash density in the last 3 hours '228059' = { @@ -13573,9 +13573,9 @@ parameterNumber = 2 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; } #Averaged cloud-to-ground lightning flash density in the last 6 hours '228060' = { @@ -13708,11 +13708,11 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; - scaleFactorOfSecondWavelength = missing() ; - scaledValueOfSecondWavelength = missing() ; - typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 9 ; scaledValueOfFirstWavelength = 740 ; + scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 755nm @@ -13721,12 +13721,12 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; - typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 9 ; scaledValueOfFirstWavelength = 755 ; - is_aerosol_optical = 1 ; - scaleFactorOfSecondWavelength = missing() ; scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 771nm '228107' = { @@ -13734,11 +13734,11 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; - typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 9 ; scaledValueOfFirstWavelength = 771 ; - scaleFactorOfSecondWavelength = missing() ; scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 757nm @@ -13747,12 +13747,12 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 9 ; scaledValueOfFirstWavelength = 757 ; - scaleFactorOfSecondWavelength = missing() ; scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; } #Surface solar radiation downward clear-sky '228129' = { @@ -15534,14 +15534,14 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 2 ; scaledValueOfLowerLimit = 25 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #2 metre temperature less than 273.15 K '131073' = { @@ -15554,20 +15554,20 @@ discipline = 10 ; parameterCategory = 0 ; parameterNumber = 3 ; - productDefinitionTemplateNumber = 5 ; typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; + productDefinitionTemplateNumber = 5 ; scaledValueOfLowerLimit = 2 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Significant wave height of at least 4 m '131075' = { discipline = 10 ; parameterCategory = 0 ; parameterNumber = 3 ; - scaledValueOfLowerLimit = 4 ; - productDefinitionTemplateNumber = 5 ; typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + scaledValueOfLowerLimit = 4 ; scaleFactorOfLowerLimit = 0 ; probabilityType = 3 ; } @@ -15576,9 +15576,9 @@ discipline = 10 ; parameterCategory = 0 ; parameterNumber = 3 ; - scaledValueOfLowerLimit = 6 ; - productDefinitionTemplateNumber = 5 ; typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + scaledValueOfLowerLimit = 6 ; scaleFactorOfLowerLimit = 0 ; probabilityType = 3 ; } @@ -15588,10 +15588,10 @@ parameterCategory = 0 ; parameterNumber = 3 ; typeOfFirstFixedSurface = 101 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 8 ; productDefinitionTemplateNumber = 5 ; + scaledValueOfLowerLimit = 8 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Mean wave period of at least 8 s '131078' = { diff --git a/definitions/grib2/localConcepts/ecmf/shortName.def b/definitions/grib2/localConcepts/ecmf/shortName.def index 1c4e13a34..41d5c4688 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.def @@ -4,12 +4,12 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 100 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; } #Total precipitation of at least 100 mm 'tpg100' = { @@ -262,12 +262,12 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - indicatorOfUnitForTimeRange = 1 ; typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 24 ; + scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 24 ; } #Minimum temperature at 2 metres in the last 24 hours 'mn2t24' = { @@ -275,11 +275,11 @@ parameterCategory = 0 ; parameterNumber = 0 ; typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 24 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - indicatorOfUnitForTimeRange = 1 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 3 ; + lengthOfTimeRange = 24 ; } #Montgomery potential 'mont' = { @@ -3294,8 +3294,8 @@ parameterCategory = 20 ; parameterNumber = 2 ; aerosolType = 65534 ; - is_aerosol = 1 ; typeOfGeneratingProcess = 20 ; + is_aerosol = 1 ; } #Nitrate coarse mode aerosol mass mixing ratio 'aermr17diff' = { @@ -3303,8 +3303,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - typeOfGeneratingProcess = 20 ; aerosolType = 65533 ; + typeOfGeneratingProcess = 20 ; is_aerosol = 1 ; } #Experimental product @@ -6622,8 +6622,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 192 ; - is_aerosol = 1 ; aerosolType = 65533 ; + is_aerosol = 1 ; } #Dry deposition of fine-mode nitrate aerosol 'aerddpnif' = { @@ -6640,8 +6640,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 6 ; - is_aerosol = 1 ; aerosolType = 65533 ; + is_aerosol = 1 ; } #Sedimentation of fine-mode nitrate aerosol 'aersdmnif' = { @@ -6721,10 +6721,10 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - aerosolType = 65534 ; - is_aerosol = 1 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; + aerosolType = 65534 ; + is_aerosol = 1 ; } #Vertically integrated mass of coarse-mode nitrate aerosol 'aermssnic' = { @@ -6743,12 +6743,12 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 8 ; - scaledValueOfFirstWavelength = 55 ; typeOfSizeInterval = 255 ; aerosolType = 65534 ; + scaledValueOfFirstWavelength = 55 ; + typeOfWavelengthInterval = 11 ; + is_aerosol_optical = 1 ; } #Coarse-mode nitrate aerosol optical depth at 550 nm 'aerodnic' = { @@ -6756,12 +6756,12 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; + scaleFactorOfFirstWavelength = 8 ; typeOfSizeInterval = 255 ; aerosolType = 65533 ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 8 ; scaledValueOfFirstWavelength = 55 ; + typeOfWavelengthInterval = 11 ; + is_aerosol_optical = 1 ; } #Source/gain of ammonium aerosol 'aersrcam' = { @@ -6778,8 +6778,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 193 ; - is_aerosol = 1 ; aerosolType = 62003 ; + is_aerosol = 1 ; } #Source/gain of biogenic secondary organic aerosol 'aersrcsoab' = { @@ -6787,8 +6787,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 192 ; - is_aerosol = 1 ; aerosolType = 62032 ; + is_aerosol = 1 ; } #Negative fixer of biogenic secondary organic aerosol 'aerngtsoab' = { @@ -6796,8 +6796,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 193 ; - is_aerosol = 1 ; aerosolType = 62032 ; + is_aerosol = 1 ; } #Source/gain of anthropogenic secondary organic aerosol 'aersrcsoaa' = { @@ -10768,8 +10768,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 65531 ; + is_chemical = 1 ; } #Ozone emissions 'e_go3' = { @@ -12097,8 +12097,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 65532 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Biomass burning volatile organic compounds 'e_VOCBB' = { @@ -13392,24 +13392,24 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; - lengthOfTimeRange = 3 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; - scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 3 ; } #Minimum temperature at 2 metres in the last 3 hours 'mn2t3' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; - scaledValueOfFirstFixedSurface = 2 ; typeOfStatisticalProcessing = 3 ; lengthOfTimeRange = 3 ; - typeOfFirstFixedSurface = 103 ; } #10 metre wind gust in the last 3 hours '10fg3' = { @@ -13458,8 +13458,8 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; } #Instantaneous total lightning flash density 'litoti' = { @@ -13472,11 +13472,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 1 ; - indicatorOfUnitForTimeRange = 1 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 1 ; } #Averaged total lightning flash density in the last hour 'litota1' = { @@ -13503,11 +13503,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; - lengthOfTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 1 ; } #Averaged cloud-to-ground lightning flash density in the last hour 'licga1' = { @@ -13520,10 +13520,10 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; - indicatorOfUnitForTimeRange = 1 ; typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; lengthOfTimeRange = 3 ; } #Averaged total lightning flash density in the last 3 hours @@ -13539,9 +13539,9 @@ parameterNumber = 4 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; } #Averaged total lightning flash density in the last 6 hours 'litota6' = { @@ -13554,11 +13554,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; } #Averaged cloud-to-ground lightning flash density in the last 3 hours 'licga3' = { @@ -13571,11 +13571,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 6 ; typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 6 ; } #Averaged cloud-to-ground lightning flash density in the last 6 hours 'licga6' = { @@ -13708,12 +13708,12 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; - scaledValueOfFirstWavelength = 740 ; - scaleFactorOfSecondWavelength = missing() ; - scaledValueOfSecondWavelength = missing() ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 9 ; + scaledValueOfFirstWavelength = 740 ; + scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 755nm 'sif755' = { @@ -13721,11 +13721,11 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; - typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 9 ; scaledValueOfFirstWavelength = 755 ; - scaleFactorOfSecondWavelength = missing() ; scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 771nm @@ -13734,12 +13734,12 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; - scaleFactorOfSecondWavelength = missing() ; - is_aerosol_optical = 1 ; - scaledValueOfSecondWavelength = missing() ; - typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 9 ; scaledValueOfFirstWavelength = 771 ; + scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 757nm 'sif757' = { @@ -13748,11 +13748,11 @@ parameterCategory = 8 ; parameterNumber = 254 ; scaleFactorOfFirstWavelength = 9 ; - is_aerosol_optical = 1 ; scaledValueOfFirstWavelength = 757 ; - scaleFactorOfSecondWavelength = missing() ; scaledValueOfSecondWavelength = missing() ; typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; } #Surface solar radiation downward clear-sky 'ssrdc' = { @@ -15534,14 +15534,14 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 2 ; scaledValueOfLowerLimit = 25 ; - typeOfFirstFixedSurface = 103 ; - probabilityType = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - productDefinitionTemplateNumber = 9 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #2 metre temperature less than 273.15 K '2tl273' = { @@ -15554,32 +15554,32 @@ discipline = 10 ; parameterCategory = 0 ; parameterNumber = 3 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 101 ; productDefinitionTemplateNumber = 5 ; - probabilityType = 3 ; scaledValueOfLowerLimit = 2 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Significant wave height of at least 4 m 'swhg4' = { discipline = 10 ; parameterCategory = 0 ; parameterNumber = 3 ; + typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + scaledValueOfLowerLimit = 4 ; scaleFactorOfLowerLimit = 0 ; probabilityType = 3 ; - scaledValueOfLowerLimit = 4 ; - productDefinitionTemplateNumber = 5 ; - typeOfFirstFixedSurface = 101 ; } #Significant wave height of at least 6 m 'swhg6' = { discipline = 10 ; parameterCategory = 0 ; parameterNumber = 3 ; - scaledValueOfLowerLimit = 6 ; - productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + scaledValueOfLowerLimit = 6 ; + scaleFactorOfLowerLimit = 0 ; probabilityType = 3 ; } #Significant wave height of at least 8 m @@ -15587,11 +15587,11 @@ discipline = 10 ; parameterCategory = 0 ; parameterNumber = 3 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 8 ; typeOfFirstFixedSurface = 101 ; productDefinitionTemplateNumber = 5 ; + scaledValueOfLowerLimit = 8 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Mean wave period of at least 8 s 'mwpg8' = { diff --git a/definitions/grib2/localConcepts/ecmf/units.def b/definitions/grib2/localConcepts/ecmf/units.def index 7251ac771..3dbfa6e5d 100644 --- a/definitions/grib2/localConcepts/ecmf/units.def +++ b/definitions/grib2/localConcepts/ecmf/units.def @@ -5,11 +5,11 @@ parameterCategory = 1 ; parameterNumber = 52 ; typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 100 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 100 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 100 mm '%' = { @@ -262,24 +262,24 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - lengthOfTimeRange = 24 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 103 ; typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 24 ; } #Minimum temperature at 2 metres in the last 24 hours 'K' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - indicatorOfUnitForTimeRange = 1 ; - lengthOfTimeRange = 24 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 3 ; + lengthOfTimeRange = 24 ; } #Montgomery potential 'm**2 s**-2' = { @@ -3197,8 +3197,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_aerosol = 1 ; aerosolType = 65534 ; + is_aerosol = 1 ; } #Nitrate coarse mode aerosol mass mixing ratio 'kg kg**-1' = { @@ -3294,8 +3294,8 @@ parameterCategory = 20 ; parameterNumber = 2 ; aerosolType = 65534 ; - is_aerosol = 1 ; typeOfGeneratingProcess = 20 ; + is_aerosol = 1 ; } #Nitrate coarse mode aerosol mass mixing ratio 'kg kg**-1' = { @@ -3303,8 +3303,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - typeOfGeneratingProcess = 20 ; aerosolType = 65533 ; + typeOfGeneratingProcess = 20 ; is_aerosol = 1 ; } #Experimental product @@ -6658,8 +6658,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 11 ; - is_aerosol = 1 ; aerosolType = 65533 ; + is_aerosol = 1 ; } #Wet deposition of fine-mode nitrate aerosol by large-scale precipitation 'kg m**-2 s**-1' = { @@ -6667,8 +6667,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 9 ; - is_aerosol = 1 ; aerosolType = 65534 ; + is_aerosol = 1 ; } #Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation 'kg m**-2 s**-1' = { @@ -6676,8 +6676,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 9 ; - is_aerosol = 1 ; aerosolType = 65533 ; + is_aerosol = 1 ; } #Wet deposition of fine-mode nitrate aerosol by convective precipitation 'kg m**-2 s**-1' = { @@ -6685,8 +6685,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 10 ; - is_aerosol = 1 ; aerosolType = 65534 ; + is_aerosol = 1 ; } #Wet deposition of coarse-mode nitrate aerosol by convective precipitation 'kg m**-2 s**-1' = { @@ -6694,8 +6694,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 10 ; - is_aerosol = 1 ; aerosolType = 65533 ; + is_aerosol = 1 ; } #Negative fixer of fine-mode nitrate aerosol 'kg m**-2 s**-1' = { @@ -6712,8 +6712,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 193 ; - is_aerosol = 1 ; aerosolType = 65533 ; + is_aerosol = 1 ; } #Vertically integrated mass of fine-mode nitrate aerosol 'kg m**-2' = { @@ -6721,10 +6721,10 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_aerosol = 1 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; aerosolType = 65534 ; + is_aerosol = 1 ; } #Vertically integrated mass of coarse-mode nitrate aerosol 'kg m**-2' = { @@ -6732,10 +6732,10 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; aerosolType = 65533 ; is_aerosol = 1 ; - typeOfSecondFixedSurface = 8 ; - typeOfFirstFixedSurface = 1 ; } #Fine-mode nitrate aerosol optical depth at 550 nm 'dimensionless' = { @@ -6744,11 +6744,11 @@ parameterCategory = 20 ; parameterNumber = 102 ; scaleFactorOfFirstWavelength = 8 ; - is_aerosol_optical = 1 ; typeOfSizeInterval = 255 ; + aerosolType = 65534 ; scaledValueOfFirstWavelength = 55 ; typeOfWavelengthInterval = 11 ; - aerosolType = 65534 ; + is_aerosol_optical = 1 ; } #Coarse-mode nitrate aerosol optical depth at 550 nm 'dimensionless' = { @@ -6756,12 +6756,12 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; - typeOfWavelengthInterval = 11 ; - aerosolType = 65533 ; scaleFactorOfFirstWavelength = 8 ; - is_aerosol_optical = 1 ; typeOfSizeInterval = 255 ; + aerosolType = 65533 ; scaledValueOfFirstWavelength = 55 ; + typeOfWavelengthInterval = 11 ; + is_aerosol_optical = 1 ; } #Source/gain of ammonium aerosol 'kg m**-2 s**-1' = { @@ -6769,8 +6769,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 192 ; - is_aerosol = 1 ; aerosolType = 62003 ; + is_aerosol = 1 ; } #Negative fixer of ammonium aerosol 'kg m**-2 s**-1' = { @@ -6778,8 +6778,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 193 ; - is_aerosol = 1 ; aerosolType = 62003 ; + is_aerosol = 1 ; } #Source/gain of biogenic secondary organic aerosol 'kg m**-2 s**-1' = { @@ -6787,8 +6787,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 192 ; - is_aerosol = 1 ; aerosolType = 62032 ; + is_aerosol = 1 ; } #Negative fixer of biogenic secondary organic aerosol 'kg m**-2 s**-1' = { @@ -10768,8 +10768,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 65531 ; + is_chemical = 1 ; } #Ozone emissions 'kg m**-2 s**-1' = { @@ -12097,8 +12097,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 65532 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Biomass burning volatile organic compounds 'kg m**-2 s**-1' = { @@ -13351,8 +13351,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 65532 ; + is_chemical = 1 ; } #Dry deposition velocity of Biomass burning volatile organic compounds 'm s**-1' = { @@ -13360,8 +13360,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 65531 ; + is_chemical = 1 ; } #Total sky direct solar radiation at surface 'J m**-2' = { @@ -13392,24 +13392,24 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 3 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 3 ; } #Minimum temperature at 2 metres in the last 3 hours 'K' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 3 ; typeOfFirstFixedSurface = 103 ; - lengthOfTimeRange = 3 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 3 ; + lengthOfTimeRange = 3 ; } #10 metre wind gust in the last 3 hours 'm s**-1' = { @@ -13458,8 +13458,8 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; } #Instantaneous total lightning flash density 'km**-2 day**-1' = { @@ -13472,10 +13472,10 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; lengthOfTimeRange = 1 ; } #Averaged total lightning flash density in the last hour @@ -13503,11 +13503,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; lengthOfTimeRange = 1 ; - typeOfSecondFixedSurface = 8 ; } #Averaged cloud-to-ground lightning flash density in the last hour 'km**-2 day**-1' = { @@ -13520,11 +13520,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; - lengthOfTimeRange = 3 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 3 ; } #Averaged total lightning flash density in the last 3 hours 'km**-2 day**-1' = { @@ -13538,9 +13538,9 @@ parameterCategory = 17 ; parameterNumber = 4 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; lengthOfTimeRange = 6 ; } #Averaged total lightning flash density in the last 6 hours @@ -13554,11 +13554,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; - lengthOfTimeRange = 3 ; + typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 3 ; } #Averaged cloud-to-ground lightning flash density in the last 3 hours 'km**-2 day**-1' = { @@ -13571,11 +13571,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; - lengthOfTimeRange = 6 ; + typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 6 ; } #Averaged cloud-to-ground lightning flash density in the last 6 hours 'km**-2 day**-1' = { @@ -13708,11 +13708,11 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; - scaleFactorOfSecondWavelength = missing() ; scaleFactorOfFirstWavelength = 9 ; - scaledValueOfSecondWavelength = missing() ; scaledValueOfFirstWavelength = 740 ; + scaledValueOfSecondWavelength = missing() ; typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 755nm @@ -13721,12 +13721,12 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; - scaledValueOfSecondWavelength = missing() ; - scaledValueOfFirstWavelength = 755 ; - typeOfWavelengthInterval = 11 ; - is_aerosol_optical = 1 ; - scaleFactorOfSecondWavelength = missing() ; scaleFactorOfFirstWavelength = 9 ; + scaledValueOfFirstWavelength = 755 ; + scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 771nm '10**-6 W m**-2 sr**-1 m**-1' = { @@ -13734,11 +13734,11 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; - scaledValueOfSecondWavelength = missing() ; + scaleFactorOfFirstWavelength = 9 ; scaledValueOfFirstWavelength = 771 ; + scaledValueOfSecondWavelength = missing() ; typeOfWavelengthInterval = 11 ; scaleFactorOfSecondWavelength = missing() ; - scaleFactorOfFirstWavelength = 9 ; is_aerosol_optical = 1 ; } #Solar induced Chlorophyll fluorescence at 757nm @@ -13747,12 +13747,12 @@ discipline = 4 ; parameterCategory = 8 ; parameterNumber = 254 ; - scaleFactorOfSecondWavelength = missing() ; scaleFactorOfFirstWavelength = 9 ; - is_aerosol_optical = 1 ; - scaledValueOfSecondWavelength = missing() ; scaledValueOfFirstWavelength = 757 ; + scaledValueOfSecondWavelength = missing() ; typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; } #Surface solar radiation downward clear-sky 'J m**-2' = { @@ -15534,13 +15534,13 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfLowerLimit = 25 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 25 ; scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 103 ; probabilityType = 3 ; } #2 metre temperature less than 273.15 K @@ -15554,10 +15554,10 @@ discipline = 10 ; parameterCategory = 0 ; parameterNumber = 3 ; - scaleFactorOfLowerLimit = 0 ; + typeOfFirstFixedSurface = 101 ; productDefinitionTemplateNumber = 5 ; scaledValueOfLowerLimit = 2 ; - typeOfFirstFixedSurface = 101 ; + scaleFactorOfLowerLimit = 0 ; probabilityType = 3 ; } #Significant wave height of at least 4 m @@ -15565,21 +15565,21 @@ discipline = 10 ; parameterCategory = 0 ; parameterNumber = 3 ; - probabilityType = 3 ; typeOfFirstFixedSurface = 101 ; productDefinitionTemplateNumber = 5 ; - scaleFactorOfLowerLimit = 0 ; scaledValueOfLowerLimit = 4 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Significant wave height of at least 6 m '%' = { discipline = 10 ; parameterCategory = 0 ; parameterNumber = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 6 ; - productDefinitionTemplateNumber = 5 ; typeOfFirstFixedSurface = 101 ; + productDefinitionTemplateNumber = 5 ; + scaledValueOfLowerLimit = 6 ; + scaleFactorOfLowerLimit = 0 ; probabilityType = 3 ; } #Significant wave height of at least 8 m @@ -15587,9 +15587,9 @@ discipline = 10 ; parameterCategory = 0 ; parameterNumber = 3 ; - scaledValueOfLowerLimit = 8 ; typeOfFirstFixedSurface = 101 ; productDefinitionTemplateNumber = 5 ; + scaledValueOfLowerLimit = 8 ; scaleFactorOfLowerLimit = 0 ; probabilityType = 3 ; } diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index dc2dbf422..010c738c3 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -4,12 +4,12 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; - scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 1 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 5 mm 'Total precipitation of at least 5 mm' = { @@ -17,95 +17,95 @@ parameterCategory = 1 ; parameterNumber = 52 ; typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 5 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 5 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 40 mm 'Total precipitation of at least 40 mm' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 40 ; - productDefinitionTemplateNumber = 9 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 40 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 60 mm 'Total precipitation of at least 60 mm' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 1 ; - scaledValueOfLowerLimit = 60 ; productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 60 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 80 mm 'Total precipitation of at least 80 mm' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 80 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 80 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 100 mm 'Total precipitation of at least 100 mm' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 100 ; - productDefinitionTemplateNumber = 9 ; typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 100 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 150 mm 'Total precipitation of at least 150 mm' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaledValueOfLowerLimit = 150 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 150 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 200 mm 'Total precipitation of at least 200 mm' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 200 ; - productDefinitionTemplateNumber = 9 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 200 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 300 mm 'Total precipitation of at least 300 mm' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 3 ; typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 3 ; scaleFactorOfLowerLimit = -2 ; + probabilityType = 3 ; } #Wind speed 'Wind speed' = { @@ -118,9 +118,9 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 100 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; is_uerra = 1 ; } #Wind speed @@ -128,10 +128,10 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - is_uerra = 1 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 200 ; scaleFactorOfFirstFixedSurface = 0 ; + is_uerra = 1 ; } #Unbalanced component of temperature 'Unbalanced component of temperature' = { @@ -191,10 +191,10 @@ parameterCategory = 2 ; parameterNumber = 22 ; typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; + is_uerra = 1 ; } #Specific rain water content 'Specific rain water content' = { @@ -243,8 +243,8 @@ discipline = 0 ; parameterCategory = 5 ; parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Top net solar radiation 'Top net solar radiation' = { @@ -271,21 +271,21 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; } #Minimum temperature at 2 metres since previous post-processing 'Minimum temperature at 2 metres since previous post-processing' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; is_uerra = 1 ; } #Ozone mass mixing ratio @@ -339,8 +339,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 54 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Snow depth 'Snow depth' = { @@ -371,60 +371,60 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 25 ; - productDefinitionTemplateNumber = 9 ; typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 25 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 50 mm 'Total precipitation of at least 50 mm' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 50 ; - productDefinitionTemplateNumber = 9 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 50 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #10 metre wind gust of at least 10 m/s '10 metre wind gust of at least 10 m/s' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 10 ; productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 10 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Probability of temperature standardized anomaly greater than 1 standard deviation 'Probability of temperature standardized anomaly greater than 1 standard deviation' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - scaledValueOfLowerLimit = 1 ; productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = 1 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Probability of temperature standardized anomaly greater than 1.5 standard deviation 'Probability of temperature standardized anomaly greater than 1.5 standard deviation' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - scaleFactorOfLowerLimit = 1 ; - scaledValueOfLowerLimit = 15 ; productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = 15 ; + scaleFactorOfLowerLimit = 1 ; + probabilityType = 3 ; } #Probability of temperature standardized anomaly greater than 2 standard deviation 'Probability of temperature standardized anomaly greater than 2 standard deviation' = { @@ -432,31 +432,31 @@ parameterCategory = 0 ; parameterNumber = 0 ; productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; typeOfStatisticalProcessing = 10 ; - scaleFactorOfLowerLimit = 0 ; scaledValueOfLowerLimit = 2 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Probability of temperature standardized anomaly less than -1 standard deviation 'Probability of temperature standardized anomaly less than -1 standard deviation' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - probabilityType = 0 ; - typeOfStatisticalProcessing = 10 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = -1 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = -1 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 0 ; } #Probability of temperature standardized anomaly less than -1.5 standard deviation 'Probability of temperature standardized anomaly less than -1.5 standard deviation' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - typeOfStatisticalProcessing = 10 ; - scaleFactorOfLowerLimit = 1 ; - scaledValueOfLowerLimit = -15 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = -15 ; + scaleFactorOfLowerLimit = 1 ; probabilityType = 0 ; } #Probability of temperature standardized anomaly less than -2 standard deviation @@ -464,11 +464,11 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = -2 ; productDefinitionTemplateNumber = 9 ; - probabilityType = 0 ; typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = -2 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 0 ; } #Mean sea water potential temperature in the upper 300 m 'Mean sea water potential temperature in the upper 300 m' = { @@ -509,9 +509,9 @@ discipline = 10 ; parameterCategory = 4 ; parameterNumber = 14 ; - scaledValueOfFirstFixedSurface = 1 ; typeOfFirstFixedSurface = 169 ; typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 1 ; scaleFactorOfFirstFixedSurface = 2 ; } #2 metre specific humidity @@ -538,32 +538,32 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_aerosol = 1 ; aerosolType = 62003 ; + is_aerosol = 1 ; } #Nitrate aerosol optical depth at 550 nm 'Nitrate aerosol optical depth at 550 nm' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; - typeOfWavelengthInterval = 11 ; - aerosolType = 62004 ; - typeOfSizeInterval = 255 ; scaleFactorOfFirstWavelength = 8 ; - is_aerosol_optical = 1 ; + typeOfSizeInterval = 255 ; + aerosolType = 62004 ; scaledValueOfFirstWavelength = 55 ; + typeOfWavelengthInterval = 11 ; + is_aerosol_optical = 1 ; } #Ammonium aerosol optical depth at 550 nm 'Ammonium aerosol optical depth at 550 nm' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; + scaleFactorOfFirstWavelength = 8 ; + typeOfSizeInterval = 255 ; + aerosolType = 62003 ; scaledValueOfFirstWavelength = 55 ; typeOfWavelengthInterval = 11 ; - aerosolType = 62003 ; - scaleFactorOfFirstWavelength = 8 ; is_aerosol_optical = 1 ; - typeOfSizeInterval = 255 ; } #Biogenic secondary organic aerosol mass mixing ratio 'Biogenic secondary organic aerosol mass mixing ratio' = { @@ -578,16 +578,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_aerosol = 1 ; aerosolType = 62033 ; + is_aerosol = 1 ; } #Volcanic sulfur dioxide mass mixing ratio increment 'Volcanic sulfur dioxide mass mixing ratio increment' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - typeOfGeneratingProcess = 20 ; constituentType = 8 ; + typeOfGeneratingProcess = 20 ; is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } @@ -596,8 +596,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - typeOfGeneratingProcess = 20 ; aerosolType = 62003 ; + typeOfGeneratingProcess = 20 ; is_aerosol = 1 ; } #Biogenic secondary organic aerosol mass mixing ratio increment @@ -605,8 +605,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - typeOfGeneratingProcess = 20 ; aerosolType = 62032 ; + typeOfGeneratingProcess = 20 ; is_aerosol = 1 ; } #Anthropogenic secondary organic aerosol mass mixing ratio increment @@ -614,9 +614,9 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_aerosol = 1 ; - typeOfGeneratingProcess = 20 ; aerosolType = 62033 ; + typeOfGeneratingProcess = 20 ; + is_aerosol = 1 ; } #Dry deposition of ammonium aerosol 'Dry deposition of ammonium aerosol' = { @@ -639,8 +639,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 9 ; - is_aerosol = 1 ; aerosolType = 62003 ; + is_aerosol = 1 ; } #Wet deposition of ammonium aerosol by convective precipitation 'Wet deposition of ammonium aerosol by convective precipitation' = { @@ -657,24 +657,24 @@ parameterNumber = 1 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; - is_aerosol = 1 ; aerosolType = 62003 ; + is_aerosol = 1 ; } #Dry deposition of biogenic secondary organic aerosol 'Dry deposition of biogenic secondary organic aerosol' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 12 ; - is_aerosol = 1 ; aerosolType = 62032 ; + is_aerosol = 1 ; } #Sedimentation of biogenic secondary organic aerosol 'Sedimentation of biogenic secondary organic aerosol' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 11 ; - is_aerosol = 1 ; aerosolType = 62032 ; + is_aerosol = 1 ; } #Wet deposition of biogenic secondary organic aerosol by large-scale precipitation 'Wet deposition of biogenic secondary organic aerosol by large-scale precipitation' = { @@ -689,24 +689,24 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 10 ; - is_aerosol = 1 ; aerosolType = 62032 ; + is_aerosol = 1 ; } #Vertically integrated mass of biogenic secondary organic aerosol 'Vertically integrated mass of biogenic secondary organic aerosol' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_aerosol = 1 ; aerosolType = 62032 ; + is_aerosol = 1 ; } #Dry deposition of anthropogenic secondary organic aerosol 'Dry deposition of anthropogenic secondary organic aerosol' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 12 ; - is_aerosol = 1 ; aerosolType = 62033 ; + is_aerosol = 1 ; } #Sedimentation of anthropogenic secondary organic aerosol 'Sedimentation of anthropogenic secondary organic aerosol' = { @@ -721,8 +721,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 9 ; - is_aerosol = 1 ; aerosolType = 62033 ; + is_aerosol = 1 ; } #Wet deposition of anthropogenic secondary organic aerosol by convective precipitation 'Wet deposition of anthropogenic secondary organic aerosol by convective precipitation' = { @@ -745,12 +745,12 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; - scaledValueOfSecondWavelength = missing() ; - scaledValueOfFirstWavelength = 550 ; - typeOfWavelengthInterval = 11 ; - aerosolType = 62012 ; - scaleFactorOfSecondWavelength = missing() ; scaleFactorOfFirstWavelength = 9 ; + aerosolType = 62012 ; + scaledValueOfFirstWavelength = 550 ; + scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } #Aromatic peroxy radical mass mixing ratio @@ -766,16 +766,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 10010 ; + is_chemical = 1 ; } #Acetonitrile mass mixing ratio 'Acetonitrile mass mixing ratio' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 10007 ; + is_chemical = 1 ; } #Methyl peroxy nitrate mass mixing ratio 'Methyl peroxy nitrate mass mixing ratio' = { @@ -790,16 +790,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 10006 ; + is_chemical = 1 ; } #Hydroperoxy aldehydes type 1 mass mixing ratio 'Hydroperoxy aldehydes type 1 mass mixing ratio' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 60058 ; + is_chemical = 1 ; } #Hydroperoxy aldehydes type 2 mass mixing ratio 'Hydroperoxy aldehydes type 2 mass mixing ratio' = { @@ -814,16 +814,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 60056 ; + is_chemical = 1 ; } #Isoprene peroxy type D mass mixing ratio 'Isoprene peroxy type D mass mixing ratio' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 60057 ; + is_chemical = 1 ; } #Column integrated mass density of Volcanic sulfur dioxide 'Column integrated mass density of Volcanic sulfur dioxide ' = { @@ -855,8 +855,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 10007 ; + is_chemical = 1 ; } #Column integrated mass density of Methyl peroxy nitrate 'Column integrated mass density of Methyl peroxy nitrate ' = { @@ -879,8 +879,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 60058 ; + is_chemical = 1 ; } #Column integrated mass density of Hydroperoxy aldehydes type 2 'Column integrated mass density of Hydroperoxy aldehydes type 2 ' = { @@ -903,8 +903,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 60057 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Volcanic sulfur dioxide 'Atmosphere emission mass flux of Volcanic sulfur dioxide ' = { @@ -920,16 +920,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 60029 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Ethyne 'Atmosphere emission mass flux of Ethyne ' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 10010 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Acetonitrile 'Atmosphere emission mass flux of Acetonitrile ' = { @@ -944,16 +944,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 10055 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Hydrogen cyanide 'Atmosphere emission mass flux of Hydrogen cyanide ' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 10006 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Hydroperoxy aldehydes type 1 'Atmosphere emission mass flux of Hydroperoxy aldehydes type 1 ' = { @@ -968,16 +968,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 60059 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Isoprene peroxy type B 'Atmosphere emission mass flux of Isoprene peroxy type B ' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 60056 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Isoprene peroxy type D 'Atmosphere emission mass flux of Isoprene peroxy type D ' = { @@ -1001,8 +1001,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 60029 ; + is_chemical = 1 ; } #Dry deposition velocity of Ethyne 'Dry deposition velocity of Ethyne ' = { @@ -1017,16 +1017,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 10007 ; + is_chemical = 1 ; } #Dry deposition velocity of Methyl peroxy nitrate 'Dry deposition velocity of Methyl peroxy nitrate ' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 10055 ; + is_chemical = 1 ; } #Dry deposition velocity of Hydrogen cyanide 'Dry deposition velocity of Hydrogen cyanide ' = { @@ -1041,16 +1041,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 60058 ; + is_chemical = 1 ; } #Dry deposition velocity of Hydroperoxy aldehydes type 2 'Dry deposition velocity of Hydroperoxy aldehydes type 2 ' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 60059 ; + is_chemical = 1 ; } #Dry deposition velocity of Isoprene peroxy type B 'Dry deposition velocity of Isoprene peroxy type B ' = { @@ -1065,8 +1065,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 60057 ; + is_chemical = 1 ; } #-10 degrees C isothermal level (atm) '-10 degrees C isothermal level (atm)' = { @@ -1091,13 +1091,13 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - is_uerra = 0 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 2 ; lengthOfTimeRange = 3 ; + is_uerra = 0 ; } #Relative humidity with respect to water 'Relative humidity with respect to water' = { @@ -1134,31 +1134,31 @@ discipline = 0 ; parameterCategory = 7 ; parameterNumber = 6 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 6 ; } #Maximum CAPES in the last 6 hours 'Maximum CAPES in the last 6 hours' = { discipline = 0 ; parameterCategory = 7 ; parameterNumber = 19 ; - lengthOfTimeRange = 6 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 6 ; } #2 metre relative humidity with respect to water '2 metre relative humidity with respect to water' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 93 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #Liquid water content in snow pack 'Liquid water content in snow pack' = { @@ -1172,7 +1172,7 @@ parameterCategory = 3 ; parameterNumber = 0 ; typeOfFirstFixedSurface = 7 ; - typeOfSecondFixedSurface = missing() ; + typeOfSecondFixedSurface = 255 ; } #Height of convective cloud top 'Height of convective cloud top' = { @@ -1185,18 +1185,18 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; } #Averaged total lightning flash density in the last hour 'Averaged total lightning flash density in the last hour' = { discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; lengthOfTimeRange = 1 ; } #Instantaneous cloud-to-ground lightning flash density @@ -1204,19 +1204,19 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; } #Averaged cloud-to-ground lightning flash density in the last hour 'Averaged cloud-to-ground lightning flash density in the last hour' = { discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; - lengthOfTimeRange = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 1 ; } #Unbalanced component of specific humidity 'Unbalanced component of specific humidity' = { @@ -1242,9 +1242,9 @@ parameterCategory = 17 ; parameterNumber = 4 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; lengthOfTimeRange = 3 ; } #Averaged total lightning flash density in the last 6 hours @@ -1252,11 +1252,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; lengthOfTimeRange = 6 ; - typeOfSecondFixedSurface = 8 ; } #Averaged cloud-to-ground lightning flash density in the last 3 hours 'Averaged cloud-to-ground lightning flash density in the last 3 hours' = { @@ -1264,68 +1264,68 @@ parameterCategory = 17 ; parameterNumber = 2 ; typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 3 ; typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 3 ; } #Averaged cloud-to-ground lightning flash density in the last 6 hours 'Averaged cloud-to-ground lightning flash density in the last 6 hours' = { discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; lengthOfTimeRange = 6 ; - typeOfFirstFixedSurface = 1 ; } #Soil moisture top 20 cm 'Soil moisture top 20 cm' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaledValueOfSecondFixedSurface = 2 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; } #Soil moisture top 100 cm 'Soil moisture top 100 cm' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaledValueOfSecondFixedSurface = 10 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = 1 ; } #Soil temperature top 20 cm 'Soil temperature top 20 cm' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; } #Soil temperature top 100 cm 'Soil temperature top 100 cm' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 10 ; scaleFactorOfSecondFixedSurface = 1 ; } #Atmosphere emission mass flux of Methane from Wetlands @@ -1342,8 +1342,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 37 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Water runoff and drainage 'Water runoff and drainage' = { @@ -1428,26 +1428,26 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 200 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #200 metre wind speed '200 metre wind speed' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; } #100 metre wind speed '100 metre wind speed' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 100 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; scaleFactorOfFirstFixedSurface = 0 ; } #Mean temperature tendency due to short-wave radiation @@ -1673,20 +1673,20 @@ discipline = 1 ; parameterCategory = 0 ; parameterNumber = 7 ; - lengthOfTimeRange = 6 ; typeOfFirstFixedSurface = 1 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 6 ; } #Mean discharge in the last 24 hours 'Mean discharge in the last 24 hours' = { discipline = 1 ; parameterCategory = 0 ; parameterNumber = 7 ; - lengthOfTimeRange = 24 ; + typeOfFirstFixedSurface = 1 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 24 ; } #Snow depth at elevation bands 'Snow depth at elevation bands' = { @@ -1811,9 +1811,9 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #Apparent temperature 'Apparent temperature' = { @@ -1844,17 +1844,17 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #10 metre wind direction '10 metre wind direction' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #Direct short wave radiation flux 'Direct short wave radiation flux' = { @@ -1873,17 +1873,17 @@ discipline = 0 ; parameterCategory = 4 ; parameterNumber = 13 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Evaporation in the last 6 hours 'Evaporation in the last 6 hours' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; lengthOfTimeRange = 6 ; is_uerra = 0 ; } @@ -1892,33 +1892,33 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 79 ; - is_uerra = 0 ; + typeOfFirstFixedSurface = 1 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; lengthOfTimeRange = 24 ; + is_uerra = 0 ; } #Total precipitation in the last 6 hours 'Total precipitation in the last 6 hours' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - is_efas = 1 ; - lengthOfTimeRange = 6 ; + typeOfFirstFixedSurface = 1 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 6 ; + is_efas = 1 ; } #Total precipitation in the last 24 hours 'Total precipitation in the last 24 hours' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - is_efas = 1 ; lengthOfTimeRange = 24 ; + is_efas = 1 ; } #Fraction of snow cover 'Fraction of snow cover' = { @@ -1985,45 +1985,45 @@ discipline = 0 ; parameterCategory = 4 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Accumulated surface upward short-wave radiation flux, clear sky 'Accumulated surface upward short-wave radiation flux, clear sky' = { discipline = 0 ; parameterCategory = 4 ; parameterNumber = 53 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Accumulated surface downward long-wave radiation flux, clear sky 'Accumulated surface downward long-wave radiation flux, clear sky' = { discipline = 0 ; parameterCategory = 5 ; parameterNumber = 8 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Percolation 'Percolation' = { discipline = 1 ; parameterCategory = 0 ; parameterNumber = 16 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 177 ; + typeOfStatisticalProcessing = 1 ; } #Cloudy brightness temperature 'Cloudy brightness temperature' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } #Clear-sky brightness temperature 'Clear-sky brightness temperature' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; - } + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; + } #Scaled radiance 'Scaled radiance' = { discipline = 3 ; @@ -2448,11 +2448,11 @@ discipline = 10 ; parameterCategory = 4 ; parameterNumber = 21 ; - typeOfSecondFixedSurface = 160 ; typeOfFirstFixedSurface = 160 ; - scaledValueOfSecondFixedSurface = 300 ; + typeOfSecondFixedSurface = 160 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 300 ; scaleFactorOfSecondFixedSurface = 0 ; } #Surface runoff @@ -2538,8 +2538,8 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 100 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; scaleFactorOfFirstFixedSurface = 0 ; } #100 metre V wind component @@ -2547,8 +2547,8 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 100 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; scaleFactorOfFirstFixedSurface = 0 ; } #Total precipitation of at least 10 mm @@ -2556,24 +2556,24 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - probabilityType = 3 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 10 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 20 mm 'Total precipitation of at least 20 mm' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 20 ; scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; } #Stream function 'Stream function' = { @@ -2604,8 +2604,8 @@ discipline = 0 ; parameterCategory = 7 ; parameterNumber = 6 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; } #Potential vorticity 'Potential vorticity' = { @@ -2618,26 +2618,26 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - is_uerra = 0 ; typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; lengthOfTimeRange = 6 ; + is_uerra = 0 ; } #Minimum temperature at 2 metres in the last 6 hours 'Minimum temperature at 2 metres in the last 6 hours' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - is_uerra = 0 ; - typeOfStatisticalProcessing = 3 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 3 ; lengthOfTimeRange = 6 ; + is_uerra = 0 ; } #Geopotential 'Geopotential' = { @@ -2707,8 +2707,8 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Surface latent heat flux 'Surface latent heat flux' = { @@ -2748,18 +2748,18 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; } #10 metre V wind component '10 metre V wind component' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; } #2 metre temperature '2 metre temperature' = { @@ -2767,8 +2767,8 @@ parameterCategory = 0 ; parameterNumber = 0 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; } #2 metre dewpoint temperature '2 metre dewpoint temperature' = { @@ -2776,8 +2776,8 @@ parameterCategory = 0 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Land-sea mask 'Land-sea mask' = { @@ -2805,24 +2805,24 @@ discipline = 0 ; parameterCategory = 5 ; parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Top net thermal radiation 'Top net thermal radiation' = { discipline = 0 ; parameterCategory = 5 ; parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 8 ; + typeOfStatisticalProcessing = 1 ; } #Sunshine duration 'Sunshine duration' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Brightness temperature 'Brightness temperature' = { @@ -2835,9 +2835,9 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #Skin temperature 'Skin temperature' = { @@ -4646,26 +4646,26 @@ parameterCategory = 2 ; parameterNumber = 22 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - probabilityType = 3 ; productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; typeOfStatisticalProcessing = 2 ; scaledValueOfLowerLimit = 15 ; - scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #10 metre wind gust of at least 20 m/s '10 metre wind gust of at least 20 m/s' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 2 ; scaledValueOfLowerLimit = 20 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; scaleFactorOfLowerLimit = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; probabilityType = 3 ; } #Convective inhibition @@ -4673,8 +4673,8 @@ discipline = 0 ; parameterCategory = 7 ; parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; } #Orography 'Orography' = { @@ -4694,10 +4694,10 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 2 ; scaleFactorOfSecondFixedSurface = 1 ; is_tigge = 1 ; @@ -4713,12 +4713,12 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 2 ; scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; is_tigge = 1 ; } #Snow depth water equivalent @@ -4740,19 +4740,19 @@ discipline = 0 ; parameterCategory = 6 ; parameterNumber = 1 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; } #Field capacity 'Field capacity' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 12 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; scaleFactorOfSecondFixedSurface = 1 ; } #Wilting point @@ -4760,12 +4760,12 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 26 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; scaledValueOfSecondFixedSurface = 2 ; scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; } #Total Precipitation 'Total Precipitation' = { diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index fa2a8cf6e..efe0555bc 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -4,12 +4,12 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaledValueOfLowerLimit = 1 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 1 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 5 mm '131061' = { @@ -20,67 +20,67 @@ productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 5 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 40 mm '131082' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 40 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 40 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 60 mm '131083' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 60 ; - probabilityType = 3 ; - typeOfFirstFixedSurface = 1 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 80 mm '131084' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 80 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 100 mm '131085' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 100 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; } #Total precipitation of at least 150 mm '131086' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 150 ; + scaleFactorOfLowerLimit = 0 ; probabilityType = 3 ; } #Total precipitation of at least 200 mm @@ -92,20 +92,20 @@ productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 200 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 300 mm '131088' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 3 ; scaleFactorOfLowerLimit = -2 ; probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; } #Wind speed '10' = { @@ -118,20 +118,20 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; + is_uerra = 1 ; } #Wind speed '10' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - is_uerra = 1 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; + is_uerra = 1 ; } #Unbalanced component of temperature '21' = { @@ -191,8 +191,8 @@ parameterCategory = 2 ; parameterNumber = 22 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; is_uerra = 1 ; } @@ -235,8 +235,8 @@ discipline = 0 ; parameterCategory = 4 ; parameterNumber = 7 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Surface thermal radiation downwards '175' = { @@ -271,22 +271,22 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; } #Minimum temperature at 2 metres since previous post-processing '202' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - is_uerra = 1 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 3 ; + is_uerra = 1 ; } #Ozone mass mixing ratio '203' = { @@ -339,8 +339,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 54 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Snow depth '3066' = { @@ -371,23 +371,23 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaledValueOfLowerLimit = 25 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 25 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 50 mm '131099' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 50 ; + scaleFactorOfLowerLimit = 0 ; probabilityType = 3 ; } #10 metre wind gust of at least 10 m/s @@ -395,25 +395,25 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 2 ; scaledValueOfLowerLimit = 10 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Probability of temperature standardized anomaly greater than 1 standard deviation '133093' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 10 ; scaledValueOfLowerLimit = 1 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; } #Probability of temperature standardized anomaly greater than 1.5 standard deviation '133094' = { @@ -423,30 +423,30 @@ productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 10 ; scaledValueOfLowerLimit = 15 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 1 ; + probabilityType = 3 ; } #Probability of temperature standardized anomaly greater than 2 standard deviation '133095' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 10 ; scaledValueOfLowerLimit = 2 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; } #Probability of temperature standardized anomaly less than -1 standard deviation '133096' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - probabilityType = 0 ; - scaleFactorOfLowerLimit = 0 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 10 ; scaledValueOfLowerLimit = -1 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 0 ; } #Probability of temperature standardized anomaly less than -1.5 standard deviation '133097' = { @@ -456,8 +456,8 @@ productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 10 ; scaledValueOfLowerLimit = -15 ; - probabilityType = 0 ; scaleFactorOfLowerLimit = 1 ; + probabilityType = 0 ; } #Probability of temperature standardized anomaly less than -2 standard deviation '133098' = { @@ -467,8 +467,8 @@ productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 10 ; scaledValueOfLowerLimit = -2 ; - probabilityType = 0 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 0 ; } #Mean sea water potential temperature in the upper 300 m '151126' = { @@ -489,8 +489,8 @@ parameterNumber = 15 ; typeOfFirstFixedSurface = 160 ; typeOfSecondFixedSurface = 160 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 300 ; scaleFactorOfSecondFixedSurface = 0 ; } @@ -509,10 +509,10 @@ discipline = 10 ; parameterCategory = 4 ; parameterNumber = 14 ; - typeOfSecondFixedSurface = 255 ; - scaleFactorOfFirstFixedSurface = 2 ; typeOfFirstFixedSurface = 169 ; + typeOfSecondFixedSurface = 255 ; scaledValueOfFirstFixedSurface = 1 ; + scaleFactorOfFirstFixedSurface = 2 ; } #2 metre specific humidity '174096' = { @@ -546,24 +546,24 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; + scaleFactorOfFirstWavelength = 8 ; typeOfSizeInterval = 255 ; aerosolType = 62004 ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 8 ; scaledValueOfFirstWavelength = 55 ; + typeOfWavelengthInterval = 11 ; + is_aerosol_optical = 1 ; } #Ammonium aerosol optical depth at 550 nm '210251' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; + scaleFactorOfFirstWavelength = 8 ; typeOfSizeInterval = 255 ; aerosolType = 62003 ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; - scaleFactorOfFirstWavelength = 8 ; scaledValueOfFirstWavelength = 55 ; + typeOfWavelengthInterval = 11 ; + is_aerosol_optical = 1 ; } #Biogenic secondary organic aerosol mass mixing ratio '210252' = { @@ -596,9 +596,9 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_aerosol = 1 ; - typeOfGeneratingProcess = 20 ; aerosolType = 62003 ; + typeOfGeneratingProcess = 20 ; + is_aerosol = 1 ; } #Biogenic secondary organic aerosol mass mixing ratio increment '211252' = { @@ -606,8 +606,8 @@ parameterCategory = 20 ; parameterNumber = 2 ; aerosolType = 62032 ; - is_aerosol = 1 ; typeOfGeneratingProcess = 20 ; + is_aerosol = 1 ; } #Anthropogenic secondary organic aerosol mass mixing ratio increment '211253' = { @@ -615,8 +615,8 @@ parameterCategory = 20 ; parameterNumber = 2 ; aerosolType = 62033 ; - is_aerosol = 1 ; typeOfGeneratingProcess = 20 ; + is_aerosol = 1 ; } #Dry deposition of ammonium aerosol '215206' = { @@ -655,8 +655,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; aerosolType = 62003 ; is_aerosol = 1 ; } @@ -745,13 +745,13 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; - typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 9 ; - scaledValueOfFirstWavelength = 550 ; - scaleFactorOfSecondWavelength = missing() ; - scaledValueOfSecondWavelength = missing() ; - is_aerosol_optical = 1 ; aerosolType = 62012 ; + scaledValueOfFirstWavelength = 550 ; + scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; } #Aromatic peroxy radical mass mixing ratio '217222' = { @@ -782,8 +782,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 10055 ; + is_chemical = 1 ; } #Hydrogen cyanide mass mixing ratio '217226' = { @@ -798,8 +798,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 60058 ; + is_chemical = 1 ; } #Hydroperoxy aldehydes type 2 mass mixing ratio '217228' = { @@ -887,8 +887,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 60059 ; + is_chemical = 1 ; } #Column integrated mass density of Isoprene peroxy type B '218229' = { @@ -936,8 +936,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 10007 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Methyl peroxy nitrate '219225' = { @@ -952,8 +952,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 10006 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Hydroperoxy aldehydes type 1 '219227' = { @@ -1009,8 +1009,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 10010 ; + is_chemical = 1 ; } #Dry deposition velocity of Acetonitrile '221224' = { @@ -1025,8 +1025,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 10055 ; + is_chemical = 1 ; } #Dry deposition velocity of Hydrogen cyanide '221226' = { @@ -1091,13 +1091,13 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - is_uerra = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 2 ; lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; + is_uerra = 0 ; } #Relative humidity with respect to water '228030' = { @@ -1134,11 +1134,11 @@ discipline = 0 ; parameterCategory = 7 ; parameterNumber = 6 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 2 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 6 ; } #Maximum CAPES in the last 6 hours '228036' = { @@ -1146,10 +1146,10 @@ parameterCategory = 7 ; parameterNumber = 19 ; typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 2 ; typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 6 ; } #2 metre relative humidity with respect to water '228037' = { @@ -1157,8 +1157,8 @@ parameterCategory = 1 ; parameterNumber = 93 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Liquid water content in snow pack '228038' = { @@ -1172,7 +1172,7 @@ parameterCategory = 3 ; parameterNumber = 0 ; typeOfFirstFixedSurface = 7 ; - typeOfSecondFixedSurface = missing() ; + typeOfSecondFixedSurface = 255 ; } #Height of convective cloud top '228046' = { @@ -1193,11 +1193,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 1 ; - indicatorOfUnitForTimeRange = 1 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 1 ; } #Instantaneous cloud-to-ground lightning flash density '228052' = { @@ -1213,10 +1213,10 @@ parameterCategory = 17 ; parameterNumber = 2 ; typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 1 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 1 ; } #Unbalanced component of specific humidity '228054' = { @@ -1241,22 +1241,22 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; lengthOfTimeRange = 3 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfSecondFixedSurface = 8 ; } #Averaged total lightning flash density in the last 6 hours '228058' = { discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; } #Averaged cloud-to-ground lightning flash density in the last 3 hours '228059' = { @@ -1265,9 +1265,9 @@ parameterNumber = 2 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; } #Averaged cloud-to-ground lightning flash density in the last 6 hours '228060' = { @@ -1276,19 +1276,19 @@ parameterNumber = 2 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; } #Soil moisture top 20 cm '228086' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 2 ; scaleFactorOfSecondFixedSurface = 1 ; } @@ -1297,10 +1297,10 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 10 ; scaleFactorOfSecondFixedSurface = 1 ; } @@ -1309,10 +1309,10 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 2 ; scaleFactorOfSecondFixedSurface = 1 ; } @@ -1321,10 +1321,10 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 10 ; scaleFactorOfSecondFixedSurface = 1 ; } @@ -1342,8 +1342,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 37 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Water runoff and drainage '228205' = { @@ -1420,8 +1420,8 @@ parameterCategory = 2 ; parameterNumber = 2 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; } #200 metre V wind component '228240' = { @@ -1429,8 +1429,8 @@ parameterCategory = 2 ; parameterNumber = 3 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; } #200 metre wind speed '228241' = { @@ -1438,17 +1438,17 @@ parameterCategory = 2 ; parameterNumber = 1 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; } #100 metre wind speed '228249' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 100 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Mean temperature tendency due to short-wave radiation '235001' = { @@ -1674,9 +1674,9 @@ parameterCategory = 0 ; parameterNumber = 7 ; typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; } #Mean discharge in the last 24 hours '240024' = { @@ -1684,9 +1684,9 @@ parameterCategory = 0 ; parameterNumber = 7 ; typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; lengthOfTimeRange = 24 ; - indicatorOfUnitForTimeRange = 1 ; } #Snow depth at elevation bands '240026' = { @@ -1853,8 +1853,8 @@ parameterCategory = 2 ; parameterNumber = 0 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Direct short wave radiation flux '260262' = { @@ -1882,20 +1882,20 @@ parameterCategory = 1 ; parameterNumber = 79 ; typeOfFirstFixedSurface = 1 ; - is_uerra = 0 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; + is_uerra = 0 ; } #Evaporation in the last 24 hours '260266' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 24 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; is_uerra = 0 ; } #Total precipitation in the last 6 hours @@ -1904,9 +1904,9 @@ parameterCategory = 1 ; parameterNumber = 52 ; typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; is_efas = 1 ; } #Total precipitation in the last 24 hours @@ -1915,9 +1915,9 @@ parameterCategory = 1 ; parameterNumber = 52 ; typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 24 ; - indicatorOfUnitForTimeRange = 1 ; is_efas = 1 ; } #Fraction of snow cover @@ -1993,8 +1993,8 @@ discipline = 0 ; parameterCategory = 4 ; parameterNumber = 53 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Accumulated surface downward long-wave radiation flux, clear sky '260428' = { @@ -2014,15 +2014,15 @@ } #Cloudy brightness temperature '260510' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 14 ; - } + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 14 ; + } #Clear-sky brightness temperature '260511' = { - discipline = 3 ; - parameterCategory = 1 ; - parameterNumber = 15 ; + discipline = 3 ; + parameterCategory = 1 ; + parameterNumber = 15 ; } #Scaled radiance '260530' = { @@ -2440,18 +2440,18 @@ parameterNumber = 14 ; typeOfFirstFixedSurface = 20 ; typeOfSecondFixedSurface = 255 ; - scaleFactorOfFirstFixedSurface = 2 ; scaledValueOfFirstFixedSurface = 29315 ; + scaleFactorOfFirstFixedSurface = 2 ; } #Average salinity in the upper 300m '151175' = { discipline = 10 ; parameterCategory = 4 ; parameterNumber = 21 ; - typeOfSecondFixedSurface = 160 ; typeOfFirstFixedSurface = 160 ; - scaleFactorOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 160 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 300 ; scaleFactorOfSecondFixedSurface = 0 ; } @@ -2538,17 +2538,17 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 100 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; } #100 metre V wind component '228247' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 100 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; scaleFactorOfFirstFixedSurface = 0 ; } #Total precipitation of at least 10 mm @@ -2556,12 +2556,12 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - probabilityType = 3 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 10 ; scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; } #Total precipitation of at least 20 mm '131063' = { @@ -2570,9 +2570,9 @@ parameterNumber = 52 ; typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 20 ; typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 20 ; + scaleFactorOfLowerLimit = 0 ; probabilityType = 3 ; } #Stream function @@ -2618,26 +2618,26 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - is_uerra = 0 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; lengthOfTimeRange = 6 ; + is_uerra = 0 ; } #Minimum temperature at 2 metres in the last 6 hours '122' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - is_uerra = 0 ; typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 3 ; lengthOfTimeRange = 6 ; + is_uerra = 0 ; } #Geopotential '129' = { @@ -2715,8 +2715,8 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Mean sea level pressure '151' = { @@ -2748,18 +2748,18 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #10 metre V wind component '166' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #2 metre temperature '167' = { @@ -2767,8 +2767,8 @@ parameterCategory = 0 ; parameterNumber = 0 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; } #2 metre dewpoint temperature '168' = { @@ -2776,8 +2776,8 @@ parameterCategory = 0 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Land-sea mask '172' = { @@ -2797,32 +2797,32 @@ discipline = 0 ; parameterCategory = 4 ; parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Surface net thermal radiation '177' = { discipline = 0 ; parameterCategory = 5 ; parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Top net thermal radiation '179' = { discipline = 0 ; parameterCategory = 5 ; parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 8 ; + typeOfStatisticalProcessing = 1 ; } #Sunshine duration '189' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Brightness temperature '194' = { @@ -2836,8 +2836,8 @@ parameterCategory = 2 ; parameterNumber = 1 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Skin temperature '235' = { @@ -4645,36 +4645,36 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - productDefinitionTemplateNumber = 9 ; - scaledValueOfFirstFixedSurface = 10 ; - probabilityType = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 15 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 15 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #10 metre wind gust of at least 20 m/s '131071' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; - productDefinitionTemplateNumber = 9 ; - scaledValueOfFirstFixedSurface = 10 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfLowerLimit = 20 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 20 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Convective inhibition '228001' = { discipline = 0 ; parameterCategory = 7 ; parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; } #Orography '228002' = { @@ -4694,10 +4694,10 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 2 ; scaleFactorOfSecondFixedSurface = 1 ; is_tigge = 1 ; @@ -4713,12 +4713,12 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 2 ; scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; is_tigge = 1 ; } #Snow depth water equivalent @@ -4732,8 +4732,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 53 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Total Cloud Cover '228164' = { @@ -4750,22 +4750,22 @@ parameterNumber = 12 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; } #Wilting point '228171' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 26 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; } #Total Precipitation '228228' = { diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 702688e14..91166eb03 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -4,96 +4,96 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 1 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 5 mm 'tpg5' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 5 ; - probabilityType = 3 ; - typeOfFirstFixedSurface = 1 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 40 mm 'tpg40' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; scaledValueOfLowerLimit = 40 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 60 mm 'tpg60' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 60 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 60 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 80 mm 'tpg80' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 80 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; } #Total precipitation of at least 100 mm 'tpg100' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 100 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 100 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 150 mm 'tpg150' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaledValueOfLowerLimit = 150 ; typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 150 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 200 mm 'tpg200' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaledValueOfLowerLimit = 200 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 200 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 300 mm 'tpg300' = { @@ -101,11 +101,11 @@ parameterCategory = 1 ; parameterNumber = 52 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 3 ; scaleFactorOfLowerLimit = -2 ; probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; } #Wind speed 'ws' = { @@ -118,20 +118,20 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 100 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; } #Wind speed 'ws' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 200 ; - is_uerra = 1 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 200 ; scaleFactorOfFirstFixedSurface = 0 ; + is_uerra = 1 ; } #Unbalanced component of temperature 'uctp' = { @@ -190,11 +190,11 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; } #Specific rain water content 'crwc' = { @@ -243,8 +243,8 @@ discipline = 0 ; parameterCategory = 5 ; parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Top net solar radiation 'tsr' = { @@ -272,8 +272,8 @@ parameterCategory = 0 ; parameterNumber = 0 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; is_uerra = 1 ; } @@ -282,11 +282,11 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 3 ; is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; } #Ozone mass mixing ratio 'o3' = { @@ -371,24 +371,24 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 25 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; + probabilityType = 3 ; } #Total precipitation of at least 50 mm 'tpg50' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 50 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #10 metre wind gust of at least 10 m/s '10fgg10' = { @@ -396,23 +396,23 @@ parameterCategory = 2 ; parameterNumber = 22 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfLowerLimit = 0 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 2 ; scaledValueOfLowerLimit = 10 ; + scaleFactorOfLowerLimit = 0 ; probabilityType = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; } #Probability of temperature standardized anomaly greater than 1 standard deviation 'ptsa_gt_1stdev' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - scaleFactorOfLowerLimit = 0 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 10 ; scaledValueOfLowerLimit = 1 ; + scaleFactorOfLowerLimit = 0 ; probabilityType = 3 ; } #Probability of temperature standardized anomaly greater than 1.5 standard deviation @@ -420,11 +420,11 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 10 ; scaledValueOfLowerLimit = 15 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 1 ; - productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; } #Probability of temperature standardized anomaly greater than 2 standard deviation 'ptsa_gt_2stdev' = { @@ -434,18 +434,18 @@ productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 10 ; scaledValueOfLowerLimit = 2 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Probability of temperature standardized anomaly less than -1 standard deviation 'ptsa_lt_1stdev' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - scaleFactorOfLowerLimit = 0 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 10 ; scaledValueOfLowerLimit = -1 ; + scaleFactorOfLowerLimit = 0 ; probabilityType = 0 ; } #Probability of temperature standardized anomaly less than -1.5 standard deviation @@ -453,22 +453,22 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - probabilityType = 0 ; - scaleFactorOfLowerLimit = 1 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 10 ; scaledValueOfLowerLimit = -15 ; + scaleFactorOfLowerLimit = 1 ; + probabilityType = 0 ; } #Probability of temperature standardized anomaly less than -2 standard deviation 'ptsa_lt_2stdev' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 10 ; scaledValueOfLowerLimit = -2 ; - probabilityType = 0 ; scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; + probabilityType = 0 ; } #Mean sea water potential temperature in the upper 300 m 'mswpt300m' = { @@ -489,8 +489,8 @@ parameterNumber = 15 ; typeOfFirstFixedSurface = 160 ; typeOfSecondFixedSurface = 160 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 300 ; scaleFactorOfSecondFixedSurface = 0 ; } @@ -509,10 +509,10 @@ discipline = 10 ; parameterCategory = 4 ; parameterNumber = 14 ; + typeOfFirstFixedSurface = 169 ; typeOfSecondFixedSurface = 255 ; scaledValueOfFirstFixedSurface = 1 ; scaleFactorOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 169 ; } #2 metre specific humidity '2sh' = { @@ -546,12 +546,12 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; - is_aerosol_optical = 1 ; - typeOfWavelengthInterval = 11 ; scaleFactorOfFirstWavelength = 8 ; - scaledValueOfFirstWavelength = 55 ; typeOfSizeInterval = 255 ; aerosolType = 62004 ; + scaledValueOfFirstWavelength = 55 ; + typeOfWavelengthInterval = 11 ; + is_aerosol_optical = 1 ; } #Ammonium aerosol optical depth at 550 nm 'amaod550' = { @@ -559,11 +559,11 @@ parameterCategory = 20 ; parameterNumber = 102 ; scaleFactorOfFirstWavelength = 8 ; - scaledValueOfFirstWavelength = 55 ; typeOfSizeInterval = 255 ; aerosolType = 62003 ; - is_aerosol_optical = 1 ; + scaledValueOfFirstWavelength = 55 ; typeOfWavelengthInterval = 11 ; + is_aerosol_optical = 1 ; } #Biogenic secondary organic aerosol mass mixing ratio 'aermr19' = { @@ -596,8 +596,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - typeOfGeneratingProcess = 20 ; aerosolType = 62003 ; + typeOfGeneratingProcess = 20 ; is_aerosol = 1 ; } #Biogenic secondary organic aerosol mass mixing ratio increment @@ -606,17 +606,17 @@ parameterCategory = 20 ; parameterNumber = 2 ; aerosolType = 62032 ; - is_aerosol = 1 ; typeOfGeneratingProcess = 20 ; + is_aerosol = 1 ; } #Anthropogenic secondary organic aerosol mass mixing ratio increment 'aermr20diff' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_aerosol = 1 ; - typeOfGeneratingProcess = 20 ; aerosolType = 62033 ; + typeOfGeneratingProcess = 20 ; + is_aerosol = 1 ; } #Dry deposition of ammonium aerosol 'aerddpam' = { @@ -647,26 +647,26 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 10 ; - is_aerosol = 1 ; aerosolType = 62003 ; + is_aerosol = 1 ; } #Vertically integrated mass of ammonium aerosol 'aermssam' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_aerosol = 1 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; aerosolType = 62003 ; + is_aerosol = 1 ; } #Dry deposition of biogenic secondary organic aerosol 'aerddpsoab' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 12 ; - is_aerosol = 1 ; aerosolType = 62032 ; + is_aerosol = 1 ; } #Sedimentation of biogenic secondary organic aerosol 'aersdmsoab' = { @@ -697,8 +697,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_aerosol = 1 ; aerosolType = 62032 ; + is_aerosol = 1 ; } #Dry deposition of anthropogenic secondary organic aerosol 'aerddpsoaa' = { @@ -729,8 +729,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 10 ; - is_aerosol = 1 ; aerosolType = 62033 ; + is_aerosol = 1 ; } #Vertically integrated mass of anthropogenic secondary organic aerosol 'aermsssoaa' = { @@ -746,12 +746,12 @@ parameterCategory = 20 ; parameterNumber = 102 ; scaleFactorOfFirstWavelength = 9 ; - scaledValueOfFirstWavelength = 550 ; - scaleFactorOfSecondWavelength = missing() ; - scaledValueOfSecondWavelength = missing() ; aerosolType = 62012 ; - is_aerosol_optical = 1 ; + scaledValueOfFirstWavelength = 550 ; + scaledValueOfSecondWavelength = missing() ; typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; } #Aromatic peroxy radical mass mixing ratio 'AROO2' = { @@ -798,8 +798,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 60058 ; + is_chemical = 1 ; } #Hydroperoxy aldehydes type 2 mass mixing ratio 'HPALD' = { @@ -839,8 +839,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 60029 ; + is_chemical = 1 ; } #Column integrated mass density of Ethyne 'tc_C2H2' = { @@ -879,8 +879,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 60058 ; + is_chemical = 1 ; } #Column integrated mass density of Hydroperoxy aldehydes type 2 'tc_HPALD2' = { @@ -952,8 +952,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 10006 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Hydroperoxy aldehydes type 1 'e_HPALD1' = { @@ -1025,8 +1025,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 10055 ; + is_chemical = 1 ; } #Dry deposition velocity of Hydrogen cyanide 'dv_HCN' = { @@ -1065,8 +1065,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 60057 ; + is_chemical = 1 ; } #-10 degrees C isothermal level (atm) 'degm10l' = { @@ -1091,13 +1091,13 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - is_uerra = 0 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 10 ; - typeOfStatisticalProcessing = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; lengthOfTimeRange = 3 ; + is_uerra = 0 ; } #Relative humidity with respect to water 'rhw' = { @@ -1134,21 +1134,21 @@ discipline = 0 ; parameterCategory = 7 ; parameterNumber = 6 ; - typeOfStatisticalProcessing = 2 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 6 ; } #Maximum CAPES in the last 6 hours 'mxcapes6' = { discipline = 0 ; parameterCategory = 7 ; parameterNumber = 19 ; - indicatorOfUnitForTimeRange = 1 ; typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 2 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; lengthOfTimeRange = 6 ; } #2 metre relative humidity with respect to water @@ -1157,8 +1157,8 @@ parameterCategory = 1 ; parameterNumber = 93 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Liquid water content in snow pack 'lwcs' = { @@ -1172,7 +1172,7 @@ parameterCategory = 3 ; parameterNumber = 0 ; typeOfFirstFixedSurface = 7 ; - typeOfSecondFixedSurface = missing() ; + typeOfSecondFixedSurface = 255 ; } #Height of convective cloud top 'hcct' = { @@ -1193,9 +1193,9 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; - indicatorOfUnitForTimeRange = 1 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; lengthOfTimeRange = 1 ; } @@ -1204,8 +1204,8 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; } #Averaged cloud-to-ground lightning flash density in the last hour 'licga1' = { @@ -1214,9 +1214,9 @@ parameterNumber = 2 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; lengthOfTimeRange = 1 ; - indicatorOfUnitForTimeRange = 1 ; } #Unbalanced component of specific humidity 'ucq' = { @@ -1243,31 +1243,31 @@ parameterNumber = 4 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; lengthOfTimeRange = 3 ; - indicatorOfUnitForTimeRange = 1 ; } #Averaged total lightning flash density in the last 6 hours 'litota6' = { discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; - typeOfStatisticalProcessing = 0 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 6 ; } #Averaged cloud-to-ground lightning flash density in the last 3 hours 'licga3' = { discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 3 ; typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 3 ; } #Averaged cloud-to-ground lightning flash density in the last 6 hours 'licga6' = { @@ -1275,20 +1275,20 @@ parameterCategory = 17 ; parameterNumber = 2 ; typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 0 ; typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 6 ; } #Soil moisture top 20 cm 'sm20' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 2 ; scaleFactorOfSecondFixedSurface = 1 ; } @@ -1297,36 +1297,36 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 10 ; scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; } #Soil temperature top 20 cm 'st20' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 2 ; scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; } #Soil temperature top 100 cm 'st100' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = 1 ; } #Atmosphere emission mass flux of Methane from Wetlands 'e_WLCH4' = { @@ -1419,9 +1419,9 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 200 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; } #200 metre V wind component '200v' = { @@ -1429,8 +1429,8 @@ parameterCategory = 2 ; parameterNumber = 3 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; } #200 metre wind speed '200si' = { @@ -1438,16 +1438,16 @@ parameterCategory = 2 ; parameterNumber = 1 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; } #100 metre wind speed '100si' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 100 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; scaleFactorOfFirstFixedSurface = 0 ; } #Mean temperature tendency due to short-wave radiation @@ -1673,18 +1673,18 @@ discipline = 1 ; parameterCategory = 0 ; parameterNumber = 7 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfFirstFixedSurface = 1 ; } #Mean discharge in the last 24 hours 'dis24' = { discipline = 1 ; parameterCategory = 0 ; parameterNumber = 7 ; - indicatorOfUnitForTimeRange = 1 ; typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; lengthOfTimeRange = 24 ; } @@ -1844,8 +1844,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #10 metre wind direction '10wdir' = { @@ -1853,8 +1853,8 @@ parameterCategory = 2 ; parameterNumber = 0 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Direct short wave radiation flux 'dirswrf' = { @@ -1873,8 +1873,8 @@ discipline = 0 ; parameterCategory = 4 ; parameterNumber = 13 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Evaporation in the last 6 hours 'eva06' = { @@ -1882,9 +1882,9 @@ parameterCategory = 1 ; parameterNumber = 79 ; typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; is_uerra = 0 ; } #Evaporation in the last 24 hours @@ -1892,8 +1892,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 79 ; - indicatorOfUnitForTimeRange = 1 ; typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 24 ; is_uerra = 0 ; @@ -1903,22 +1903,22 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - is_efas = 1 ; typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; + is_efas = 1 ; } #Total precipitation in the last 24 hours 'tp24' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - lengthOfTimeRange = 24 ; - indicatorOfUnitForTimeRange = 1 ; - is_efas = 1 ; typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + is_efas = 1 ; } #Fraction of snow cover 'fscov' = { @@ -1985,8 +1985,8 @@ discipline = 0 ; parameterCategory = 4 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Accumulated surface upward short-wave radiation flux, clear sky 'auswrf_cs' = { @@ -2009,8 +2009,8 @@ discipline = 1 ; parameterCategory = 0 ; parameterNumber = 16 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 177 ; + typeOfStatisticalProcessing = 1 ; } #Cloudy brightness temperature 'clbt' = { @@ -2438,22 +2438,22 @@ discipline = 10 ; parameterCategory = 4 ; parameterNumber = 14 ; - typeOfSecondFixedSurface = 255 ; typeOfFirstFixedSurface = 20 ; - scaleFactorOfFirstFixedSurface = 2 ; + typeOfSecondFixedSurface = 255 ; scaledValueOfFirstFixedSurface = 29315 ; + scaleFactorOfFirstFixedSurface = 2 ; } #Average salinity in the upper 300m 'sav300' = { discipline = 10 ; parameterCategory = 4 ; parameterNumber = 21 ; - typeOfSecondFixedSurface = 160 ; typeOfFirstFixedSurface = 160 ; + typeOfSecondFixedSurface = 160 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 300 ; scaleFactorOfSecondFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; } #Surface runoff 'sro' = { @@ -2538,8 +2538,8 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 100 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; scaleFactorOfFirstFixedSurface = 0 ; } #100 metre V wind component @@ -2548,8 +2548,8 @@ parameterCategory = 2 ; parameterNumber = 3 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Total precipitation of at least 10 mm 'tpg10' = { @@ -2557,23 +2557,23 @@ parameterCategory = 1 ; parameterNumber = 52 ; typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 10 ; scaleFactorOfLowerLimit = 0 ; probabilityType = 3 ; - scaledValueOfLowerLimit = 10 ; } #Total precipitation of at least 20 mm 'tpg20' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - probabilityType = 3 ; typeOfFirstFixedSurface = 1 ; - scaleFactorOfLowerLimit = 0 ; productDefinitionTemplateNumber = 9 ; - scaledValueOfLowerLimit = 20 ; typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 20 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Stream function 'strf' = { @@ -2618,26 +2618,26 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - is_uerra = 0 ; typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; lengthOfTimeRange = 6 ; + is_uerra = 0 ; } #Minimum temperature at 2 metres in the last 6 hours 'mn2t6' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - is_uerra = 0 ; - typeOfStatisticalProcessing = 3 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 3 ; lengthOfTimeRange = 6 ; + is_uerra = 0 ; } #Geopotential 'z' = { @@ -2707,16 +2707,16 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Surface latent heat flux 'slhf' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 10 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Mean sea level pressure 'msl' = { @@ -2748,18 +2748,18 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #10 metre V wind component '10v' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #2 metre temperature '2t' = { @@ -2767,8 +2767,8 @@ parameterCategory = 0 ; parameterNumber = 0 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; } #2 metre dewpoint temperature '2d' = { @@ -2776,8 +2776,8 @@ parameterCategory = 0 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Land-sea mask 'lsm' = { @@ -2797,32 +2797,32 @@ discipline = 0 ; parameterCategory = 4 ; parameterNumber = 9 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Surface net thermal radiation 'str' = { discipline = 0 ; parameterCategory = 5 ; parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Top net thermal radiation 'ttr' = { discipline = 0 ; parameterCategory = 5 ; parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 8 ; + typeOfStatisticalProcessing = 1 ; } #Sunshine duration 'sund' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Brightness temperature 'btmp' = { @@ -2835,8 +2835,8 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 10 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; } #Skin temperature @@ -4646,35 +4646,35 @@ parameterCategory = 2 ; parameterNumber = 22 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - probabilityType = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfLowerLimit = 0 ; scaledValueOfLowerLimit = 15 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #10 metre wind gust of at least 20 m/s '10fgg20' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfLowerLimit = 20 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 10 ; + scaledValueOfLowerLimit = 20 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Convective inhibition 'cin' = { discipline = 0 ; parameterCategory = 7 ; parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; } #Orography 'orog' = { @@ -4694,10 +4694,10 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 2 ; scaleFactorOfSecondFixedSurface = 1 ; is_tigge = 1 ; @@ -4713,12 +4713,12 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 2 ; scaleFactorOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; is_tigge = 1 ; } #Snow depth water equivalent @@ -4740,8 +4740,8 @@ discipline = 0 ; parameterCategory = 6 ; parameterNumber = 1 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; } #Field capacity 'cap' = { @@ -4750,9 +4750,9 @@ parameterNumber = 12 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 2 ; - scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfSecondFixedSurface = 1 ; } #Wilting point @@ -4760,18 +4760,18 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 26 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; } #Total Precipitation 'tp' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index 34899cb8d..62d03b12b 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -4,12 +4,12 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; - scaleFactorOfLowerLimit = 0 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 1 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 5 mm '%' = { @@ -17,95 +17,95 @@ parameterCategory = 1 ; parameterNumber = 52 ; typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 5 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 5 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 40 mm '%' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 40 ; - productDefinitionTemplateNumber = 9 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 40 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 60 mm '%' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 1 ; - scaledValueOfLowerLimit = 60 ; productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 60 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 80 mm '%' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 80 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 80 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 100 mm '%' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 100 ; - productDefinitionTemplateNumber = 9 ; typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 100 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 150 mm '%' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaledValueOfLowerLimit = 150 ; - productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 150 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 200 mm '%' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 200 ; - productDefinitionTemplateNumber = 9 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 200 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 300 mm '%' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - probabilityType = 3 ; - scaledValueOfLowerLimit = 3 ; typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 3 ; scaleFactorOfLowerLimit = -2 ; + probabilityType = 3 ; } #Wind speed 'm s**-1' = { @@ -118,9 +118,9 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 100 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; is_uerra = 1 ; } #Wind speed @@ -128,10 +128,10 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - is_uerra = 1 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 200 ; scaleFactorOfFirstFixedSurface = 0 ; + is_uerra = 1 ; } #Unbalanced component of temperature 'K' = { @@ -191,10 +191,10 @@ parameterCategory = 2 ; parameterNumber = 22 ; typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; + is_uerra = 1 ; } #Specific rain water content 'kg kg**-1' = { @@ -243,8 +243,8 @@ discipline = 0 ; parameterCategory = 5 ; parameterNumber = 3 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Top net solar radiation 'J m**-2' = { @@ -271,21 +271,21 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; } #Minimum temperature at 2 metres since previous post-processing 'K' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; is_uerra = 1 ; } #Ozone mass mixing ratio @@ -339,8 +339,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 54 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Snow depth 'm' = { @@ -371,60 +371,60 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 25 ; - productDefinitionTemplateNumber = 9 ; typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 25 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 50 mm '%' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 50 ; - productDefinitionTemplateNumber = 9 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 50 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #10 metre wind gust of at least 10 m/s '%' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - probabilityType = 3 ; - typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = 10 ; productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 103 ; + typeOfStatisticalProcessing = 2 ; + scaledValueOfLowerLimit = 10 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Probability of temperature standardized anomaly greater than 1 standard deviation '%' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - scaledValueOfLowerLimit = 1 ; productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = 1 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Probability of temperature standardized anomaly greater than 1.5 standard deviation '%' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - scaleFactorOfLowerLimit = 1 ; - scaledValueOfLowerLimit = 15 ; productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = 15 ; + scaleFactorOfLowerLimit = 1 ; + probabilityType = 3 ; } #Probability of temperature standardized anomaly greater than 2 standard deviation '%' = { @@ -432,31 +432,31 @@ parameterCategory = 0 ; parameterNumber = 0 ; productDefinitionTemplateNumber = 9 ; - probabilityType = 3 ; typeOfStatisticalProcessing = 10 ; - scaleFactorOfLowerLimit = 0 ; scaledValueOfLowerLimit = 2 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Probability of temperature standardized anomaly less than -1 standard deviation '%' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - probabilityType = 0 ; - typeOfStatisticalProcessing = 10 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = -1 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = -1 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 0 ; } #Probability of temperature standardized anomaly less than -1.5 standard deviation '%' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - typeOfStatisticalProcessing = 10 ; - scaleFactorOfLowerLimit = 1 ; - scaledValueOfLowerLimit = -15 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = -15 ; + scaleFactorOfLowerLimit = 1 ; probabilityType = 0 ; } #Probability of temperature standardized anomaly less than -2 standard deviation @@ -464,11 +464,11 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - scaleFactorOfLowerLimit = 0 ; - scaledValueOfLowerLimit = -2 ; productDefinitionTemplateNumber = 9 ; - probabilityType = 0 ; typeOfStatisticalProcessing = 10 ; + scaledValueOfLowerLimit = -2 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 0 ; } #Mean sea water potential temperature in the upper 300 m 'K' = { @@ -509,9 +509,9 @@ discipline = 10 ; parameterCategory = 4 ; parameterNumber = 14 ; - scaledValueOfFirstFixedSurface = 1 ; typeOfFirstFixedSurface = 169 ; typeOfSecondFixedSurface = 255 ; + scaledValueOfFirstFixedSurface = 1 ; scaleFactorOfFirstFixedSurface = 2 ; } #2 metre specific humidity @@ -538,20 +538,20 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_aerosol = 1 ; aerosolType = 62003 ; + is_aerosol = 1 ; } #Nitrate aerosol optical depth at 550 nm 'dimensionless' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; - typeOfWavelengthInterval = 11 ; - aerosolType = 62004 ; - typeOfSizeInterval = 255 ; scaleFactorOfFirstWavelength = 8 ; - is_aerosol_optical = 1 ; + typeOfSizeInterval = 255 ; + aerosolType = 62004 ; scaledValueOfFirstWavelength = 55 ; + typeOfWavelengthInterval = 11 ; + is_aerosol_optical = 1 ; } #Ammonium aerosol optical depth at 550 nm 'dimensionless' = { @@ -559,11 +559,11 @@ parameterCategory = 20 ; parameterNumber = 102 ; scaleFactorOfFirstWavelength = 8 ; - is_aerosol_optical = 1 ; typeOfSizeInterval = 255 ; + aerosolType = 62003 ; scaledValueOfFirstWavelength = 55 ; typeOfWavelengthInterval = 11 ; - aerosolType = 62003 ; + is_aerosol_optical = 1 ; } #Biogenic secondary organic aerosol mass mixing ratio 'kg kg**-1' = { @@ -578,16 +578,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_aerosol = 1 ; aerosolType = 62033 ; + is_aerosol = 1 ; } #Volcanic sulfur dioxide mass mixing ratio increment 'kg kg**-1' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - typeOfGeneratingProcess = 20 ; constituentType = 8 ; + typeOfGeneratingProcess = 20 ; is_chemical_srcsink = 1 ; sourceSinkChemicalPhysicalProcess = 7 ; } @@ -596,8 +596,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - typeOfGeneratingProcess = 20 ; aerosolType = 62003 ; + typeOfGeneratingProcess = 20 ; is_aerosol = 1 ; } #Biogenic secondary organic aerosol mass mixing ratio increment @@ -605,8 +605,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - typeOfGeneratingProcess = 20 ; aerosolType = 62032 ; + typeOfGeneratingProcess = 20 ; is_aerosol = 1 ; } #Anthropogenic secondary organic aerosol mass mixing ratio increment @@ -614,9 +614,9 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_aerosol = 1 ; - typeOfGeneratingProcess = 20 ; aerosolType = 62033 ; + typeOfGeneratingProcess = 20 ; + is_aerosol = 1 ; } #Dry deposition of ammonium aerosol 'kg m**-2 s**-1' = { @@ -639,8 +639,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 9 ; - is_aerosol = 1 ; aerosolType = 62003 ; + is_aerosol = 1 ; } #Wet deposition of ammonium aerosol by convective precipitation 'kg m**-2 s**-1' = { @@ -657,24 +657,24 @@ parameterNumber = 1 ; typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; - is_aerosol = 1 ; aerosolType = 62003 ; + is_aerosol = 1 ; } #Dry deposition of biogenic secondary organic aerosol 'kg m**-2 s**-1' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 12 ; - is_aerosol = 1 ; aerosolType = 62032 ; + is_aerosol = 1 ; } #Sedimentation of biogenic secondary organic aerosol 'kg m**-2 s**-1' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 11 ; - is_aerosol = 1 ; aerosolType = 62032 ; + is_aerosol = 1 ; } #Wet deposition of biogenic secondary organic aerosol by large-scale precipitation 'kg m**-2 s**-1' = { @@ -689,24 +689,24 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 10 ; - is_aerosol = 1 ; aerosolType = 62032 ; + is_aerosol = 1 ; } #Vertically integrated mass of biogenic secondary organic aerosol 'kg m**-2' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_aerosol = 1 ; aerosolType = 62032 ; + is_aerosol = 1 ; } #Dry deposition of anthropogenic secondary organic aerosol 'kg m**-2 s**-1' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 12 ; - is_aerosol = 1 ; aerosolType = 62033 ; + is_aerosol = 1 ; } #Sedimentation of anthropogenic secondary organic aerosol 'kg m**-2 s**-1' = { @@ -721,8 +721,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 9 ; - is_aerosol = 1 ; aerosolType = 62033 ; + is_aerosol = 1 ; } #Wet deposition of anthropogenic secondary organic aerosol by convective precipitation 'kg m**-2 s**-1' = { @@ -745,12 +745,12 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 102 ; - scaledValueOfSecondWavelength = missing() ; - scaledValueOfFirstWavelength = 550 ; - typeOfWavelengthInterval = 11 ; - aerosolType = 62012 ; - scaleFactorOfSecondWavelength = missing() ; scaleFactorOfFirstWavelength = 9 ; + aerosolType = 62012 ; + scaledValueOfFirstWavelength = 550 ; + scaledValueOfSecondWavelength = missing() ; + typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } #Aromatic peroxy radical mass mixing ratio @@ -766,16 +766,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 10010 ; + is_chemical = 1 ; } #Acetonitrile mass mixing ratio 'kg kg**-1' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 10007 ; + is_chemical = 1 ; } #Methyl peroxy nitrate mass mixing ratio 'kg kg**-1' = { @@ -790,16 +790,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 10006 ; + is_chemical = 1 ; } #Hydroperoxy aldehydes type 1 mass mixing ratio 'kg kg**-1' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 60058 ; + is_chemical = 1 ; } #Hydroperoxy aldehydes type 2 mass mixing ratio 'kg kg**-1' = { @@ -814,16 +814,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 60056 ; + is_chemical = 1 ; } #Isoprene peroxy type D mass mixing ratio 'kg kg**-1' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 60057 ; + is_chemical = 1 ; } #Column integrated mass density of Volcanic sulfur dioxide 'kg m**-2' = { @@ -855,8 +855,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 10007 ; + is_chemical = 1 ; } #Column integrated mass density of Methyl peroxy nitrate 'kg m**-2' = { @@ -879,8 +879,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 60058 ; + is_chemical = 1 ; } #Column integrated mass density of Hydroperoxy aldehydes type 2 'kg m**-2' = { @@ -903,8 +903,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 60057 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Volcanic sulfur dioxide 'kg m**-2 s**-1' = { @@ -920,16 +920,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 60029 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Ethyne 'kg m**-2 s**-1' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 10010 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Acetonitrile 'kg m**-2 s**-1' = { @@ -944,16 +944,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 10055 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Hydrogen cyanide 'kg m**-2 s**-1' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 10006 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Hydroperoxy aldehydes type 1 'kg m**-2 s**-1' = { @@ -968,16 +968,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 60059 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Isoprene peroxy type B 'kg m**-2 s**-1' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 60056 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Isoprene peroxy type D 'kg m**-2 s**-1' = { @@ -1001,8 +1001,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 60029 ; + is_chemical = 1 ; } #Dry deposition velocity of Ethyne 'm s**-1' = { @@ -1017,16 +1017,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 10007 ; + is_chemical = 1 ; } #Dry deposition velocity of Methyl peroxy nitrate 'm s**-1' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 10055 ; + is_chemical = 1 ; } #Dry deposition velocity of Hydrogen cyanide 'm s**-1' = { @@ -1041,16 +1041,16 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 60058 ; + is_chemical = 1 ; } #Dry deposition velocity of Hydroperoxy aldehydes type 2 'm s**-1' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 60059 ; + is_chemical = 1 ; } #Dry deposition velocity of Isoprene peroxy type B 'm s**-1' = { @@ -1065,8 +1065,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 60057 ; + is_chemical = 1 ; } #-10 degrees C isothermal level (atm) 'm' = { @@ -1091,13 +1091,13 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - is_uerra = 0 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; lengthOfTimeRange = 3 ; + is_uerra = 0 ; } #Relative humidity with respect to water '%' = { @@ -1134,31 +1134,31 @@ discipline = 0 ; parameterCategory = 7 ; parameterNumber = 6 ; - typeOfSecondFixedSurface = 8 ; - lengthOfTimeRange = 6 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 6 ; } #Maximum CAPES in the last 6 hours 'm**2 s**-2' = { discipline = 0 ; parameterCategory = 7 ; parameterNumber = 19 ; - lengthOfTimeRange = 6 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; typeOfSecondFixedSurface = 8 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; + lengthOfTimeRange = 6 ; } #2 metre relative humidity with respect to water '%' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 93 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #Liquid water content in snow pack 'kg m**-2' = { @@ -1172,7 +1172,7 @@ parameterCategory = 3 ; parameterNumber = 0 ; typeOfFirstFixedSurface = 7 ; - typeOfSecondFixedSurface = missing() ; + typeOfSecondFixedSurface = 255 ; } #Height of convective cloud top 'm' = { @@ -1185,18 +1185,18 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; } #Averaged total lightning flash density in the last hour 'km**-2 day**-1' = { discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; lengthOfTimeRange = 1 ; } #Instantaneous cloud-to-ground lightning flash density @@ -1204,19 +1204,19 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; } #Averaged cloud-to-ground lightning flash density in the last hour 'km**-2 day**-1' = { discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; - lengthOfTimeRange = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; + lengthOfTimeRange = 1 ; } #Unbalanced component of specific humidity 'kg kg**-1' = { @@ -1242,9 +1242,9 @@ parameterCategory = 17 ; parameterNumber = 4 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; lengthOfTimeRange = 3 ; } #Averaged total lightning flash density in the last 6 hours @@ -1252,11 +1252,11 @@ discipline = 0 ; parameterCategory = 17 ; parameterNumber = 4 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; lengthOfTimeRange = 6 ; - typeOfSecondFixedSurface = 8 ; } #Averaged cloud-to-ground lightning flash density in the last 3 hours 'km**-2 day**-1' = { @@ -1264,69 +1264,69 @@ parameterCategory = 17 ; parameterNumber = 2 ; typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 3 ; typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 3 ; } #Averaged cloud-to-ground lightning flash density in the last 6 hours 'km**-2 day**-1' = { discipline = 0 ; parameterCategory = 17 ; parameterNumber = 2 ; + typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfSecondFixedSurface = 8 ; lengthOfTimeRange = 6 ; - typeOfFirstFixedSurface = 1 ; } #Soil moisture top 20 cm 'kg m**-3' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 22 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; } #Soil moisture top 100 cm 'kg m**-3' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 22 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = 1 ; } #Soil temperature top 20 cm 'K' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; } #Soil temperature top 100 cm 'K' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; - scaledValueOfSecondFixedSurface = 10 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 10 ; scaleFactorOfSecondFixedSurface = 1 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; } #Atmosphere emission mass flux of Methane from Wetlands 'kg m**-2 s**-1' = { @@ -1342,8 +1342,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 37 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Water runoff and drainage 'kg m**-2' = { @@ -1428,26 +1428,26 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 200 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #200 metre wind speed 'm s**-1' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; } #100 metre wind speed 'm s**-1' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 100 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; scaleFactorOfFirstFixedSurface = 0 ; } #Mean temperature tendency due to short-wave radiation @@ -1673,20 +1673,20 @@ discipline = 1 ; parameterCategory = 0 ; parameterNumber = 7 ; - lengthOfTimeRange = 6 ; typeOfFirstFixedSurface = 1 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; + lengthOfTimeRange = 6 ; } #Mean discharge in the last 24 hours 'm**3 s**-1' = { discipline = 1 ; parameterCategory = 0 ; parameterNumber = 7 ; - lengthOfTimeRange = 24 ; + typeOfFirstFixedSurface = 1 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 0 ; - typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 24 ; } #Snow depth at elevation bands 'kg m**-2' = { @@ -1811,9 +1811,9 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #Apparent temperature 'K' = { @@ -1844,17 +1844,17 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #10 metre wind direction 'Degree true' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #Direct short wave radiation flux 'W m**-2' = { @@ -1873,19 +1873,19 @@ discipline = 0 ; parameterCategory = 4 ; parameterNumber = 13 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Evaporation in the last 6 hours 'kg m**-2' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 79 ; - lengthOfTimeRange = 6 ; - is_uerra = 0 ; + typeOfFirstFixedSurface = 1 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 6 ; + is_uerra = 0 ; } #Evaporation in the last 24 hours 'kg m**-2' = { @@ -1893,32 +1893,32 @@ parameterCategory = 1 ; parameterNumber = 79 ; typeOfFirstFixedSurface = 1 ; - lengthOfTimeRange = 24 ; - is_uerra = 0 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + is_uerra = 0 ; } #Total precipitation in the last 6 hours 'kg m**-2' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - is_efas = 1 ; - lengthOfTimeRange = 6 ; + typeOfFirstFixedSurface = 1 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; + lengthOfTimeRange = 6 ; + is_efas = 1 ; } #Total precipitation in the last 24 hours 'kg m**-2' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; - is_efas = 1 ; lengthOfTimeRange = 24 ; + is_efas = 1 ; } #Fraction of snow cover 'Proportion' = { @@ -1985,32 +1985,32 @@ discipline = 0 ; parameterCategory = 4 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Accumulated surface upward short-wave radiation flux, clear sky 'J m**-2' = { discipline = 0 ; parameterCategory = 4 ; parameterNumber = 53 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Accumulated surface downward long-wave radiation flux, clear sky 'J m**-2' = { discipline = 0 ; parameterCategory = 5 ; parameterNumber = 8 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Percolation 'kg m**-2' = { discipline = 1 ; parameterCategory = 0 ; parameterNumber = 16 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 177 ; + typeOfStatisticalProcessing = 1 ; } #Cloudy brightness temperature 'K' = { @@ -2448,11 +2448,11 @@ discipline = 10 ; parameterCategory = 4 ; parameterNumber = 21 ; - typeOfSecondFixedSurface = 160 ; typeOfFirstFixedSurface = 160 ; - scaledValueOfSecondFixedSurface = 300 ; + typeOfSecondFixedSurface = 160 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 300 ; scaleFactorOfSecondFixedSurface = 0 ; } #Surface runoff @@ -2538,8 +2538,8 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 100 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; scaleFactorOfFirstFixedSurface = 0 ; } #100 metre V wind component @@ -2547,8 +2547,8 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 100 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; scaleFactorOfFirstFixedSurface = 0 ; } #Total precipitation of at least 10 mm @@ -2556,24 +2556,24 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - probabilityType = 3 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 10 ; - productDefinitionTemplateNumber = 9 ; - typeOfFirstFixedSurface = 1 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 20 mm '%' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 20 ; scaleFactorOfLowerLimit = 0 ; - typeOfFirstFixedSurface = 1 ; probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; } #Stream function 'm**2 s**-1' = { @@ -2604,8 +2604,8 @@ discipline = 0 ; parameterCategory = 7 ; parameterNumber = 6 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; } #Potential vorticity 'K m**2 kg**-1 s**-1' = { @@ -2618,26 +2618,26 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - is_uerra = 0 ; typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 2 ; lengthOfTimeRange = 6 ; + is_uerra = 0 ; } #Minimum temperature at 2 metres in the last 6 hours 'K' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - is_uerra = 0 ; - typeOfStatisticalProcessing = 3 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 3 ; lengthOfTimeRange = 6 ; + is_uerra = 0 ; } #Geopotential 'm**2 s**-2' = { @@ -2707,8 +2707,8 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 11 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Surface latent heat flux 'J m**-2' = { @@ -2748,18 +2748,18 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; } #10 metre V wind component 'm s**-1' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; } #2 metre temperature 'K' = { @@ -2767,8 +2767,8 @@ parameterCategory = 0 ; parameterNumber = 0 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; } #2 metre dewpoint temperature 'K' = { @@ -2776,8 +2776,8 @@ parameterCategory = 0 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Land-sea mask '(0 - 1)' = { @@ -2805,24 +2805,24 @@ discipline = 0 ; parameterCategory = 5 ; parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Top net thermal radiation 'J m**-2' = { discipline = 0 ; parameterCategory = 5 ; parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 8 ; + typeOfStatisticalProcessing = 1 ; } #Sunshine duration 's' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 24 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Brightness temperature 'K' = { @@ -2835,9 +2835,9 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #Skin temperature 'K' = { @@ -4646,26 +4646,26 @@ parameterCategory = 2 ; parameterNumber = 22 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - probabilityType = 3 ; productDefinitionTemplateNumber = 9 ; - scaleFactorOfLowerLimit = 0 ; typeOfStatisticalProcessing = 2 ; scaledValueOfLowerLimit = 15 ; - scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #10 metre wind gust of at least 20 m/s '%' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 2 ; scaledValueOfLowerLimit = 20 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfFirstFixedSurface = 103 ; scaleFactorOfLowerLimit = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; probabilityType = 3 ; } #Convective inhibition @@ -4673,8 +4673,8 @@ discipline = 0 ; parameterCategory = 7 ; parameterNumber = 7 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; } #Orography 'm' = { @@ -4694,10 +4694,10 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 2 ; scaleFactorOfSecondFixedSurface = 1 ; is_tigge = 1 ; @@ -4713,12 +4713,12 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 0 ; + typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfSecondFixedSurface = 2 ; scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; is_tigge = 1 ; } #Snow depth water equivalent @@ -4740,19 +4740,19 @@ discipline = 0 ; parameterCategory = 6 ; parameterNumber = 1 ; - typeOfSecondFixedSurface = 8 ; typeOfFirstFixedSurface = 1 ; + typeOfSecondFixedSurface = 8 ; } #Field capacity 'kg m**-3' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 12 ; - typeOfSecondFixedSurface = 106 ; typeOfFirstFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; scaleFactorOfSecondFixedSurface = 1 ; } #Wilting point @@ -4760,12 +4760,12 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 26 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; scaledValueOfSecondFixedSurface = 2 ; scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; } #Total Precipitation 'kg m**-2' = { From 1e6c8d4dcb435ef5896714f1fd4fd402b4e6b8d7 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 5 Apr 2021 20:20:01 +0100 Subject: [PATCH 447/683] Testing: check 'missing' applied to Code Table keys --- tests/grib_check_param_concepts.c | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/tests/grib_check_param_concepts.c b/tests/grib_check_param_concepts.c index 477bf5e04..8ab69ce56 100644 --- a/tests/grib_check_param_concepts.c +++ b/tests/grib_check_param_concepts.c @@ -31,12 +31,17 @@ typedef struct grib_expression_string { char* value; } grib_expression_string; -static int type_of_surface_missing(const char* value) +static int type_of_surface_missing(const char* name, const char* value) { /* Surface Type is Code Table 4.5 in which 255 is the same as missing */ - if (strcmp(value, "missing") == 0 || strcmp(value, "255") == 0) { + if (strcmp(value, "255") == 0) { return 1; } + /* Beware of problems where we put 'missing()' for a code table key! */ + if (strncmp(value, "missing", 7) == 0) { + fprintf(stderr, "Invalid value for %s Code Table entry: '%s'\n", name, value); + Assert(0); + } return 0; } static int scale_factor_missing(const char* value) @@ -70,6 +75,7 @@ static int grib_check_param_concepts(const char* key, const char* filename) char condition_value[512] = {0,}; grib_expression* expression = concept_condition->expression; const char* condition_name = concept_condition->name; + /* printf("%s\n", concept_value->name); */ /* condition_name is discipline, parameterCategory etc. */ if (strcmp(expression->cclass->name, "long") == 0) { grib_expression_long* el = (grib_expression_long*)expression; @@ -84,13 +90,15 @@ static int grib_check_param_concepts(const char* key, const char* filename) sprintf(condition_value, "%s", es->value); } else { + fprintf(stderr, "%s %s: Unknown class name: '%s'\n", + key, concept_value->name, expression->cclass->name); Assert(0); } if (strcmp(condition_name, "typeOfFirstFixedSurface") == 0) { - type1Missing = type_of_surface_missing(condition_value); + type1Missing = type_of_surface_missing(condition_name, condition_value); } if (strcmp(condition_name, "typeOfSecondFixedSurface") == 0) { - type2Missing = type_of_surface_missing(condition_value); + type2Missing = type_of_surface_missing(condition_name, condition_value); } if (strcmp(condition_name, "scaleFactorOfFirstFixedSurface") == 0) { scaleFactor1Missing = scale_factor_missing(condition_value); @@ -99,10 +107,10 @@ static int grib_check_param_concepts(const char* key, const char* filename) scaleFactor2Missing = scale_factor_missing(condition_value); } if (strcmp(condition_name, "scaledValueOfFirstFixedSurface") == 0) { - scaledValue1Missing = (strcmp(condition_value, "missing") == 0); + scaledValue1Missing = (strncmp(condition_value, "missing", 7) == 0); } if (strcmp(condition_name, "scaledValueOfSecondFixedSurface") == 0) { - scaledValue2Missing = (strcmp(condition_value, "missing") == 0); + scaledValue2Missing = (strncmp(condition_value, "missing", 7) == 0); } concept_condition = concept_condition->next; From cc20e469e592cd6e877ee903b3877fd6a903b5ad Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 6 Apr 2021 15:01:27 +0100 Subject: [PATCH 448/683] ECC-1229: GRIB2: jumbled key ordering after update from Param DB (cnmc) --- definitions/grib1/localConcepts/cnmc/name.def | 14 +- .../grib1/localConcepts/cnmc/paramId.def | 8 +- .../grib1/localConcepts/cnmc/shortName.def | 6 +- .../grib1/localConcepts/cnmc/units.def | 14 +- definitions/grib2/localConcepts/cnmc/name.def | 464 ++++++++-------- .../grib2/localConcepts/cnmc/paramId.def | 348 ++++++------ .../grib2/localConcepts/cnmc/shortName.def | 384 ++++++------- .../grib2/localConcepts/cnmc/units.def | 512 +++++++++--------- 8 files changed, 875 insertions(+), 875 deletions(-) diff --git a/definitions/grib1/localConcepts/cnmc/name.def b/definitions/grib1/localConcepts/cnmc/name.def index a7af1d9ea..0e851c38e 100644 --- a/definitions/grib1/localConcepts/cnmc/name.def +++ b/definitions/grib1/localConcepts/cnmc/name.def @@ -385,24 +385,24 @@ table2Version = 2 ; indicatorOfParameter = 86 ; indicatorOfTypeOfLevel = 112 ; - bottomLevel = 190 ; topLevel = 100 ; + bottomLevel = 190 ; } #Column-integrated Soil Moisture (1) 0 -10 cm 'Column-integrated Soil Moisture (1) 0 -10 cm' = { table2Version = 2 ; indicatorOfParameter = 86 ; indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; bottomLevel = 10 ; + topLevel = 0 ; } #Column-integrated Soil Moisture (2) 10-100cm 'Column-integrated Soil Moisture (2) 10-100cm' = { table2Version = 2 ; indicatorOfParameter = 86 ; indicatorOfTypeOfLevel = 112 ; - bottomLevel = 100 ; topLevel = 10 ; + bottomLevel = 100 ; } #Plant cover 'Plant cover' = { @@ -415,27 +415,27 @@ table2Version = 2 ; indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; + bottomLevel = 100 ; timeRangeIndicator = 4 ; topLevel = 10 ; - bottomLevel = 100 ; } #Water Runoff (10-190) 'Water Runoff (10-190)' = { table2Version = 2 ; indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; + bottomLevel = 190 ; timeRangeIndicator = 4 ; topLevel = 10 ; - bottomLevel = 190 ; } #Water Runoff (s) 'Water Runoff (s)' = { table2Version = 2 ; indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; - bottomLevel = 10 ; timeRangeIndicator = 4 ; topLevel = 0 ; + bottomLevel = 10 ; } #Sea Ice Cover ( 0= free, 1=cover) 'Sea Ice Cover ( 0= free, 1=cover)' = { @@ -1325,8 +1325,8 @@ table2Version = 202 ; indicatorOfParameter = 74 ; indicatorOfTypeOfLevel = 112 ; - topLevel = 10 ; bottomLevel = 100 ; + topLevel = 10 ; } #evergreen forest 'evergreen forest' = { diff --git a/definitions/grib1/localConcepts/cnmc/paramId.def b/definitions/grib1/localConcepts/cnmc/paramId.def index 60a31048e..5a3079b8a 100644 --- a/definitions/grib1/localConcepts/cnmc/paramId.def +++ b/definitions/grib1/localConcepts/cnmc/paramId.def @@ -401,8 +401,8 @@ table2Version = 2 ; indicatorOfParameter = 86 ; indicatorOfTypeOfLevel = 112 ; - topLevel = 10 ; bottomLevel = 100 ; + topLevel = 10 ; } #Plant cover '500065' = { @@ -415,27 +415,27 @@ table2Version = 2 ; indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; + bottomLevel = 100 ; topLevel = 10 ; timeRangeIndicator = 4 ; - bottomLevel = 100 ; } #Water Runoff (10-190) '500067' = { table2Version = 2 ; indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; + bottomLevel = 190 ; topLevel = 10 ; timeRangeIndicator = 4 ; - bottomLevel = 190 ; } #Water Runoff (s) '500068' = { table2Version = 2 ; indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; + timeRangeIndicator = 4 ; bottomLevel = 10 ; topLevel = 0 ; - timeRangeIndicator = 4 ; } #Sea Ice Cover ( 0= free, 1=cover) '500069' = { diff --git a/definitions/grib1/localConcepts/cnmc/shortName.def b/definitions/grib1/localConcepts/cnmc/shortName.def index dcac8f562..f50479da7 100644 --- a/definitions/grib1/localConcepts/cnmc/shortName.def +++ b/definitions/grib1/localConcepts/cnmc/shortName.def @@ -415,18 +415,18 @@ table2Version = 2 ; indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; + topLevel = 10 ; timeRangeIndicator = 4 ; bottomLevel = 100 ; - topLevel = 10 ; } #Water Runoff (10-190) 'runoff_g_lm' = { table2Version = 2 ; indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; + topLevel = 10 ; timeRangeIndicator = 4 ; bottomLevel = 190 ; - topLevel = 10 ; } #Water Runoff (s) 'runoff_s' = { @@ -1325,8 +1325,8 @@ table2Version = 202 ; indicatorOfParameter = 74 ; indicatorOfTypeOfLevel = 112 ; - bottomLevel = 100 ; topLevel = 10 ; + bottomLevel = 100 ; } #evergreen forest 'for_e' = { diff --git a/definitions/grib1/localConcepts/cnmc/units.def b/definitions/grib1/localConcepts/cnmc/units.def index 11853f939..21347a34c 100644 --- a/definitions/grib1/localConcepts/cnmc/units.def +++ b/definitions/grib1/localConcepts/cnmc/units.def @@ -385,24 +385,24 @@ table2Version = 2 ; indicatorOfParameter = 86 ; indicatorOfTypeOfLevel = 112 ; - bottomLevel = 190 ; topLevel = 100 ; + bottomLevel = 190 ; } #Column-integrated Soil Moisture (1) 0 -10 cm 'kg m**-2' = { table2Version = 2 ; indicatorOfParameter = 86 ; indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; bottomLevel = 10 ; + topLevel = 0 ; } #Column-integrated Soil Moisture (2) 10-100cm 'kg m**-2' = { table2Version = 2 ; indicatorOfParameter = 86 ; indicatorOfTypeOfLevel = 112 ; - bottomLevel = 100 ; topLevel = 10 ; + bottomLevel = 100 ; } #Plant cover '%' = { @@ -415,27 +415,27 @@ table2Version = 2 ; indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; + bottomLevel = 100 ; timeRangeIndicator = 4 ; topLevel = 10 ; - bottomLevel = 100 ; } #Water Runoff (10-190) 'kg m**-2' = { table2Version = 2 ; indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; + bottomLevel = 190 ; timeRangeIndicator = 4 ; topLevel = 10 ; - bottomLevel = 190 ; } #Water Runoff (s) 'kg m**-2' = { table2Version = 2 ; indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; - bottomLevel = 10 ; timeRangeIndicator = 4 ; topLevel = 0 ; + bottomLevel = 10 ; } #Sea Ice Cover ( 0= free, 1=cover) '~' = { @@ -1325,8 +1325,8 @@ table2Version = 202 ; indicatorOfParameter = 74 ; indicatorOfTypeOfLevel = 112 ; - topLevel = 10 ; bottomLevel = 100 ; + topLevel = 10 ; } #evergreen forest '~' = { diff --git a/definitions/grib2/localConcepts/cnmc/name.def b/definitions/grib2/localConcepts/cnmc/name.def index 89dafe5d3..43a9b0f0b 100644 --- a/definitions/grib2/localConcepts/cnmc/name.def +++ b/definitions/grib2/localConcepts/cnmc/name.def @@ -19,19 +19,19 @@ parameterCategory = 0 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; } #2 metre dewpoint temperature '2 metre dewpoint temperature' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 6 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - is_s2s = 1 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; subCentre = 102 ; + is_s2s = 1 ; } #Pressure (S) (not reduced) 'Pressure (S) (not reduced)' = { @@ -72,8 +72,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 4 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Geopotential 'Geopotential' = { @@ -93,8 +93,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 6 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Total Column Integrated Ozone 'Total Column Integrated Ozone' = { @@ -115,11 +115,11 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - typeOfGeneratingProcess = 9 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 0 ; scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + typeOfGeneratingProcess = 9 ; } #Temperature 'Temperature' = { @@ -134,8 +134,8 @@ parameterNumber = 0 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 2 ; scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; } #Min 2m Temperature (i) 'Min 2m Temperature (i)' = { @@ -144,8 +144,8 @@ parameterNumber = 0 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 3 ; scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; } #2m Dew Point Temperature (AV) '2m Dew Point Temperature (AV)' = { @@ -154,8 +154,8 @@ parameterNumber = 6 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 0 ; scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; } #Radar spectra (1) 'Radar spectra (1)' = { @@ -188,9 +188,9 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Wind Direction (DD) 'Wind Direction (DD)' = { @@ -214,17 +214,17 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #U component of wind 'U component of wind' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; } #U component of wind 'U component of wind' = { @@ -237,9 +237,9 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; } #V component of wind 'V component of wind' = { @@ -271,9 +271,9 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Specific Humidity 'Specific Humidity' = { @@ -324,8 +324,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Large-Scale Precipitation rate 'Large-Scale Precipitation rate' = { @@ -366,18 +366,18 @@ discipline = 0 ; parameterCategory = 6 ; parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Cloud Cover (800 hPa - Soil) 'Cloud Cover (800 hPa - Soil)' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 1 ; scaledValueOfFirstFixedSurface = 800 ; scaleFactorOfFirstFixedSurface = -2 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 100 ; } #Cloud Cover (400 - 800 hPa) 'Cloud Cover (400 - 800 hPa)' = { @@ -387,9 +387,9 @@ typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 100 ; scaledValueOfFirstFixedSurface = 400 ; - scaleFactorOfSecondFixedSurface = -2 ; scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfSecondFixedSurface = 800 ; + scaleFactorOfSecondFixedSurface = -2 ; } #Cloud Cover (0 - 400 hPa) 'Cloud Cover (0 - 400 hPa)' = { @@ -398,9 +398,9 @@ parameterNumber = 22 ; typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfSecondFixedSurface = 400 ; - scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfSecondFixedSurface = -2 ; } #Total Column-Integrated Cloud Water @@ -415,16 +415,16 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 55 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Large-Scale snowfall rate water equivalent (s) 'Large-Scale snowfall rate water equivalent (s)' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Land Cover (1=land, 0=sea) 'Land Cover (1=land, 0=sea)' = { @@ -452,26 +452,26 @@ discipline = 0 ; parameterCategory = 19 ; parameterNumber = 1 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #Soil Temperature ( 36 cm depth, vv=0h) 'Soil Temperature ( 36 cm depth, vv=0h)' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; typeOfFirstFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 36 ; + scaleFactorOfFirstFixedSurface = -2 ; } #Soil Temperature (41 cm depth) 'Soil Temperature (41 cm depth)' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; typeOfFirstFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 41 ; + scaleFactorOfFirstFixedSurface = -2 ; } #Soil Temperature 'Soil Temperature' = { @@ -498,9 +498,9 @@ parameterNumber = 20 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 100 ; scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfSecondFixedSurface = 190 ; - scaledValueOfFirstFixedSurface = 100 ; scaleFactorOfSecondFixedSurface = -2 ; } #Column-integrated Soil Moisture (1) 0 -10 cm @@ -511,9 +511,9 @@ typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = -2 ; scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; } #Column-integrated Soil Moisture (2) 10-100cm 'Column-integrated Soil Moisture (2) 10-100cm' = { @@ -522,10 +522,10 @@ parameterNumber = 20 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 100 ; scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; } #Plant cover 'Plant cover' = { @@ -541,11 +541,11 @@ parameterNumber = 5 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - typeOfStatisticalProcessing = 1 ; + scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfSecondFixedSurface = 100 ; - scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 1 ; } #Water Runoff (10-190) 'Water Runoff (10-190)' = { @@ -554,11 +554,11 @@ parameterNumber = 5 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - typeOfStatisticalProcessing = 1 ; + scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfSecondFixedSurface = 190 ; - scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 1 ; } #Water Runoff (s) 'Water Runoff (s)' = { @@ -568,10 +568,10 @@ typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = -2 ; - typeOfStatisticalProcessing = 1 ; scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 1 ; } #Sea Ice Cover ( 0= free, 1=cover) 'Sea Ice Cover ( 0= free, 1=cover)' = { @@ -702,16 +702,16 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 11 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #Momentum Flux, U-Component (m) 'Momentum Flux, U-Component (m)' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 17 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #Momentum Flux, V-Component (m) 'Momentum Flux, V-Component (m)' = { @@ -749,25 +749,25 @@ discipline = 0 ; parameterCategory = 5 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Latent heat flux from bare soil 'Latent heat flux from bare soil' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #Latent heat flux from plants 'Latent heat flux from plants' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - scaleFactorOfFirstFixedSurface = -2 ; typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfStatisticalProcessing = 0 ; } #Sunshine 'Sunshine' = { @@ -788,8 +788,8 @@ discipline = 0 ; parameterCategory = 6 ; parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Non-Convective Cloud Cover, grid scale 'Non-Convective Cloud Cover, grid scale' = { @@ -812,16 +812,16 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 82 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Rain mixing ratio 'Rain mixing ratio' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 24 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Snow mixing ratio 'Snow mixing ratio' = { @@ -848,8 +848,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 32 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Total column integrated grauple 'Total column integrated grauple' = { @@ -876,8 +876,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #subgridscale cloud ice 'subgridscale cloud ice' = { @@ -950,24 +950,24 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #zonal wind tendency due to convection 'zonal wind tendency due to convection' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #meridional wind tendency due to convection 'meridional wind tendency due to convection' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #height of top of dry convection 'height of top of dry convection' = { @@ -994,8 +994,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 198 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #tendency of specific cloud ice content due to convection 'tendency of specific cloud ice content due to convection' = { @@ -1062,32 +1062,32 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 65 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #snow amount, grid-scale plus convective 'snow amount, grid-scale plus convective' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 66 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Temperature tendency due to grid scale precipation 'Temperature tendency due to grid scale precipation' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Specific humitiy tendency due to grid scale precipitation 'Specific humitiy tendency due to grid scale precipitation' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 200 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #tendency of specific cloud liquid water content due to grid scale precipitation 'tendency of specific cloud liquid water content due to grid scale precipitation' = { @@ -1108,8 +1108,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 202 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Graupel (snow pellets) precipitation rate 'Graupel (snow pellets) precipitation rate' = { @@ -1138,8 +1138,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #supercell detection index 1 (rot. up+down drafts) 'supercell detection index 1 (rot. up+down drafts)' = { @@ -1210,16 +1210,16 @@ discipline = 0 ; parameterCategory = 19 ; parameterNumber = 11 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Turbulent diffusioncoefficient for momentum 'Turbulent diffusioncoefficient for momentum' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 31 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Turbulent diffusion coefficient for heat (and moisture) 'Turbulent diffusion coefficient for heat (and moisture)' = { @@ -1255,8 +1255,8 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 10 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; } @@ -1271,16 +1271,16 @@ discipline = 2 ; parameterCategory = 3 ; parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; } #Column-integrated Soil Moisture (multilayers) 'Column-integrated Soil Moisture (multilayers)' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 20 ; - scaleFactorOfFirstFixedSurface = -2 ; typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; } #soil ice content (multilayers) 'soil ice content (multilayers)' = { @@ -1345,8 +1345,8 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Effective transmissivity of solar radiation 'Effective transmissivity of solar radiation' = { @@ -1468,8 +1468,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 5 ; - typeOfGeneratingProcess = 7 ; typeOfStatisticalProcessing = 6 ; + typeOfGeneratingProcess = 7 ; } #analysis error(standard deviation), u-comp. of wind 'analysis error(standard deviation), u-comp. of wind' = { @@ -1492,16 +1492,16 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 194 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #meridional wind tendency due to subgrid scale oro. 'meridional wind tendency due to subgrid scale oro.' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 195 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Standard deviation of sub-grid scale orography 'Standard deviation of sub-grid scale orography' = { @@ -1578,8 +1578,8 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 4 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; } #Plant covering degree in the quiescent phas 'Plant covering degree in the quiescent phas' = { @@ -1602,8 +1602,8 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 28 ; - typeOfStatisticalProcessing = 3 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 3 ; } #Orographie + Land-Meer-Verteilung 'Orographie + Land-Meer-Verteilung' = { @@ -1618,11 +1618,11 @@ parameterNumber = 20 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfStatisticalProcessing = 7 ; - scaleFactorOfSecondFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 7 ; } #variance of soil moisture content (10-100) 'variance of soil moisture content (10-100)' = { @@ -1631,11 +1631,11 @@ parameterNumber = 20 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfStatisticalProcessing = 7 ; - scaleFactorOfSecondFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 7 ; } #evergreen forest 'evergreen forest' = { @@ -1669,8 +1669,8 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 192 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum 'ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum' = { @@ -1749,8 +1749,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 207 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #water vapor flux 'water vapor flux' = { @@ -1813,8 +1813,8 @@ discipline = 0 ; parameterCategory = 14 ; parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Air concentration of Ruthenium 103 (Ru103- concentration) 'Air concentration of Ruthenium 103 (Ru103- concentration)' = { @@ -2052,8 +2052,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #v-momentum flux due to SSO-effects 'v-momentum flux due to SSO-effects' = { @@ -2186,16 +2186,16 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 1 ; - typeOfGeneratingProcess = 200 ; typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; } #Monthly Mean of RMS of difference FG-AN of u-component of wind 'Monthly Mean of RMS of difference FG-AN of u-component of wind' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; - typeOfGeneratingProcess = 199 ; typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; } #Monthly Mean of RMS of difference IA-AN of u-component of wind 'Monthly Mean of RMS of difference IA-AN of u-component of wind' = { @@ -2218,8 +2218,8 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; - typeOfGeneratingProcess = 200 ; typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; } #Monthly Mean of RMS of difference FG-AN of geopotential 'Monthly Mean of RMS of difference FG-AN of geopotential' = { @@ -2242,16 +2242,16 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 1 ; - typeOfGeneratingProcess = 199 ; typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; } #Monthly Mean of RMS of difference IA-AN of relative humidity 'Monthly Mean of RMS of difference IA-AN of relative humidity' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 1 ; - typeOfGeneratingProcess = 200 ; typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; } #Monthly Mean of RMS of difference FG-AN of temperature 'Monthly Mean of RMS of difference FG-AN of temperature' = { @@ -2274,8 +2274,8 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 8 ; - typeOfGeneratingProcess = 199 ; typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; } #Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) 'Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure)' = { @@ -2298,71 +2298,71 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 196 ; - typeOfGeneratingProcess = 200 ; typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; } #Synth. Sat. brightness temperature cloudy 'Synth. Sat. brightness temperature cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; + satelliteSeries = 331 ; satelliteNumber = 52 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. brightness temperature clear sky 'Synth. Sat. brightness temperature clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 52 ; + instrumentType = 205 ; } #Synth. Sat. radiance cloudy 'Synth. Sat. radiance cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; + satelliteSeries = 331 ; satelliteNumber = 52 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. radiance cloudy 'Synth. Sat. radiance cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 52 ; + instrumentType = 205 ; } #Synth. Sat. brightness temperature cloudy 'Synth. Sat. brightness temperature cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; + satelliteSeries = 331 ; satelliteNumber = 53 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. brightness temperature clear sky 'Synth. Sat. brightness temperature clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; + satelliteSeries = 331 ; satelliteNumber = 53 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. radiance cloudy 'Synth. Sat. radiance cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 53 ; + instrumentType = 205 ; } #Synth. Sat. radiance cloudy 'Synth. Sat. radiance cloudy' = { @@ -2378,18 +2378,18 @@ discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; + satelliteSeries = 331 ; satelliteNumber = 54 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. brightness temperature cloudy 'Synth. Sat. brightness temperature cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; + satelliteSeries = 331 ; satelliteNumber = 54 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. brightness temperature clear sky 'Synth. Sat. brightness temperature clear sky' = { @@ -2405,245 +2405,245 @@ discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 54 ; + instrumentType = 205 ; } #Synth. Sat. radiance clear sky 'Synth. Sat. radiance clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 54 ; + instrumentType = 205 ; } #Synth. Sat. radiance cloudy 'Synth. Sat. radiance cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; + satelliteSeries = 331 ; satelliteNumber = 54 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. radiance clear sky 'Synth. Sat. radiance clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 54 ; + instrumentType = 205 ; } #Synth. Sat. radiance cloudy 'Synth. Sat. radiance cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; + satelliteSeries = 331 ; satelliteNumber = 54 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. brightness temperature cloudy 'Synth. Sat. brightness temperature cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. brightness temperature cloudy 'Synth. Sat. brightness temperature cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 82644 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy 'Synth. Sat. brightness temperature cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy 'Synth. Sat. brightness temperature cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy 'Synth. Sat. brightness temperature cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. brightness temperature cloudy 'Synth. Sat. brightness temperature cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy 'Synth. Sat. brightness temperature cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. brightness temperature cloudy 'Synth. Sat. brightness temperature cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 136986 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. brightness temperature clear sky 'Synth. Sat. brightness temperature clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. brightness temperature clear sky 'Synth. Sat. brightness temperature clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky 'Synth. Sat. brightness temperature clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 82644 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. brightness temperature clear sky 'Synth. Sat. brightness temperature clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky 'Synth. Sat. brightness temperature clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky 'Synth. Sat. brightness temperature clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. brightness temperature clear sky 'Synth. Sat. brightness temperature clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky 'Synth. Sat. brightness temperature clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - satelliteNumber = 72 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 136986 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy 'Synth. Sat. radiance cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy 'Synth. Sat. radiance cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 82644 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. radiance cloudy 'Synth. Sat. radiance cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. radiance cloudy 'Synth. Sat. radiance cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy 'Synth. Sat. radiance cloudy' = { @@ -2651,8 +2651,8 @@ parameterCategory = 1 ; parameterNumber = 16 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; instrumentType = 207 ; } #Synth. Sat. radiance cloudy @@ -2660,152 +2660,152 @@ discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. radiance cloudy 'Synth. Sat. radiance cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy 'Synth. Sat. radiance cloudy' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - instrumentType = 207 ; satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 136986 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 136986 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky 'Synth. Sat. radiance clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. radiance clear sky 'Synth. Sat. radiance clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 82644 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. radiance clear sky 'Synth. Sat. radiance clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky 'Synth. Sat. radiance clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. radiance clear sky 'Synth. Sat. radiance clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky 'Synth. Sat. radiance clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. radiance clear sky 'Synth. Sat. radiance clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. radiance clear sky 'Synth. Sat. radiance clear sky' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; - instrumentType = 207 ; satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 136986 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 136986 ; + instrumentType = 207 ; } #smoothed forecast, temperature 'smoothed forecast, temperature' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 197 ; + scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, maximum temp. 'smoothed forecast, maximum temp.' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - typeOfGeneratingProcess = 197 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, minimum temp. 'smoothed forecast, minimum temp.' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - typeOfGeneratingProcess = 197 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 3 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, dew point temp. 'smoothed forecast, dew point temp.' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 6 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, u comp. of wind 'smoothed forecast, u comp. of wind' = { @@ -2813,19 +2813,19 @@ parameterCategory = 2 ; parameterNumber = 2 ; typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, v comp. of wind 'smoothed forecast, v comp. of wind' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 10 ; typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 197 ; + scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, total precipitation rate 'smoothed forecast, total precipitation rate' = { @@ -2833,8 +2833,8 @@ parameterCategory = 1 ; parameterNumber = 52 ; typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 197 ; typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, total cloud cover 'smoothed forecast, total cloud cover' = { @@ -2851,9 +2851,9 @@ parameterNumber = 22 ; typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 800 ; scaleFactorOfFirstFixedSurface = -2 ; typeOfGeneratingProcess = 197 ; - scaledValueOfFirstFixedSurface = 800 ; } #smoothed forecast, cloud cover medium 'smoothed forecast, cloud cover medium' = { @@ -2862,11 +2862,11 @@ parameterNumber = 22 ; typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 100 ; - scaledValueOfSecondFixedSurface = 800 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfSecondFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 400 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 800 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, cloud cover high 'smoothed forecast, cloud cover high' = { @@ -2876,28 +2876,28 @@ typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 100 ; scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 400 ; scaleFactorOfFirstFixedSurface = -2 ; - typeOfGeneratingProcess = 197 ; + scaledValueOfSecondFixedSurface = 400 ; scaleFactorOfSecondFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, large-scale snowfall rate w.e. 'smoothed forecast, large-scale snowfall rate w.e.' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 56 ; - typeOfGeneratingProcess = 197 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, soil temperature 'smoothed forecast, soil temperature' = { discipline = 0 ; parameterCategory = 3 ; parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; scaleFactorOfFirstFixedSurface = -2 ; typeOfGeneratingProcess = 197 ; - typeOfFirstFixedSurface = 106 ; } #smoothed forecast, wind speed (gust) 'smoothed forecast, wind speed (gust)' = { @@ -2905,10 +2905,10 @@ parameterCategory = 2 ; parameterNumber = 22 ; typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 197 ; + scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; } #calibrated forecast, total precipitation rate 'calibrated forecast, total precipitation rate' = { @@ -2916,8 +2916,8 @@ parameterCategory = 1 ; parameterNumber = 52 ; typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 198 ; typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 198 ; } #calibrated forecast, large-scale snowfall rate w.e. 'calibrated forecast, large-scale snowfall rate w.e.' = { @@ -2925,149 +2925,149 @@ parameterCategory = 1 ; parameterNumber = 56 ; typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 198 ; typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 198 ; } #calibrated forecast, wind speed (gust) 'calibrated forecast, wind speed (gust)' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 10 ; typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 198 ; + scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 198 ; } #Obser. Sat. Meteosat sec. generation Albedo (scaled) 'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 2000000 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Obser. Sat. Meteosat sec. generation Albedo (scaled) 'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 1 ; - satelliteNumber = 72 ; typeOfGeneratingProcess = 8 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 625000 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation Albedo (scaled) 'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 1 ; - instrumentType = 207 ; + typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 1666666 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation Albedo (scaled) 'Obser. Sat. Meteosat sec. generation Albedo (scaled)' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 1 ; - instrumentType = 207 ; + typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 1250000 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'Obser. Sat. Meteosat sec. generation brightness temperature' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'Obser. Sat. Meteosat sec. generation brightness temperature' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; - satelliteNumber = 72 ; typeOfGeneratingProcess = 8 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 83333 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'Obser. Sat. Meteosat sec. generation brightness temperature' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; - instrumentType = 207 ; + typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'Obser. Sat. Meteosat sec. generation brightness temperature' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; - instrumentType = 207 ; + typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'Obser. Sat. Meteosat sec. generation brightness temperature' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'Obser. Sat. Meteosat sec. generation brightness temperature' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'Obser. Sat. Meteosat sec. generation brightness temperature' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; - instrumentType = 207 ; + typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'Obser. Sat. Meteosat sec. generation brightness temperature' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 136986 ; - satelliteNumber = 72 ; typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 136986 ; + instrumentType = 207 ; } diff --git a/definitions/grib2/localConcepts/cnmc/paramId.def b/definitions/grib2/localConcepts/cnmc/paramId.def index 2e2b5181f..a0a324fe6 100644 --- a/definitions/grib2/localConcepts/cnmc/paramId.def +++ b/definitions/grib2/localConcepts/cnmc/paramId.def @@ -18,20 +18,20 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #2 metre dewpoint temperature '168' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 6 ; - is_s2s = 1 ; - scaledValueOfFirstFixedSurface = 2 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; subCentre = 102 ; + is_s2s = 1 ; } #Pressure (S) (not reduced) '500000' = { @@ -72,8 +72,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 4 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Geopotential '500006' = { @@ -93,8 +93,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 6 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Total Column Integrated Ozone '500009' = { @@ -115,9 +115,9 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; typeOfStatisticalProcessing = 0 ; typeOfGeneratingProcess = 9 ; } @@ -132,9 +132,9 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; typeOfStatisticalProcessing = 2 ; } #Min 2m Temperature (i) @@ -142,9 +142,9 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; typeOfStatisticalProcessing = 3 ; } #2m Dew Point Temperature (AV) @@ -152,9 +152,9 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; typeOfStatisticalProcessing = 0 ; } #Radar spectra (1) @@ -188,43 +188,43 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #Wind Direction (DD) '500024' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Wind speed (SP_10M) '500025' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #Wind speed (SP) '500026' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #U component of wind '500027' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #U component of wind '500028' = { @@ -237,9 +237,9 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #V component of wind '500030' = { @@ -271,9 +271,9 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #Specific Humidity '500035' = { @@ -287,9 +287,9 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #Relative Humidity '500037' = { @@ -366,18 +366,18 @@ discipline = 0 ; parameterCategory = 6 ; parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Cloud Cover (800 hPa - Soil) '500048' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 1 ; scaledValueOfFirstFixedSurface = 800 ; scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 100 ; } #Cloud Cover (400 - 800 hPa) '500049' = { @@ -386,10 +386,10 @@ parameterNumber = 22 ; typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 100 ; - scaledValueOfSecondFixedSurface = 800 ; - scaleFactorOfSecondFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 400 ; scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 800 ; + scaleFactorOfSecondFixedSurface = -2 ; } #Cloud Cover (0 - 400 hPa) '500050' = { @@ -398,10 +398,10 @@ parameterNumber = 22 ; typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfSecondFixedSurface = 400 ; + scaleFactorOfSecondFixedSurface = -2 ; } #Total Column-Integrated Cloud Water '500051' = { @@ -469,27 +469,27 @@ discipline = 2 ; parameterCategory = 3 ; parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 41 ; scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; } #Soil Temperature '500060' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; typeOfFirstFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 9 ; + scaleFactorOfFirstFixedSurface = -2 ; } #Soil Temperature '500061' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; } #Column-integrated Soil Moisture '500062' = { @@ -510,10 +510,10 @@ parameterNumber = 20 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; } #Column-integrated Soil Moisture (2) 10-100cm '500064' = { @@ -522,10 +522,10 @@ parameterNumber = 20 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; } #Plant cover '500065' = { @@ -541,11 +541,11 @@ parameterNumber = 5 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = -2 ; - typeOfStatisticalProcessing = 1 ; scaledValueOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 1 ; } #Water Runoff (10-190) '500067' = { @@ -554,11 +554,11 @@ parameterNumber = 5 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = -2 ; - typeOfStatisticalProcessing = 1 ; scaledValueOfSecondFixedSurface = 190 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 1 ; } #Water Runoff (s) '500068' = { @@ -567,11 +567,11 @@ parameterNumber = 5 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 1 ; } #Sea Ice Cover ( 0= free, 1=cover) '500069' = { @@ -741,16 +741,16 @@ discipline = 0 ; parameterCategory = 4 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Thermal radiation heating rate '500093' = { discipline = 0 ; parameterCategory = 5 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Latent heat flux from bare soil '500094' = { @@ -765,8 +765,8 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 194 ; - scaleFactorOfFirstFixedSurface = -2 ; typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; typeOfStatisticalProcessing = 0 ; } #Sunshine @@ -788,48 +788,48 @@ discipline = 0 ; parameterCategory = 6 ; parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Non-Convective Cloud Cover, grid scale '500099' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 14 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Cloud Mixing Ratio '500100' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Cloud Ice Mixing Ratio '500101' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 82 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Rain mixing ratio '500102' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 24 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Snow mixing ratio '500103' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 25 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Total column integrated rain '500104' = { @@ -876,16 +876,16 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #subgridscale cloud ice '500111' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 194 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #cloud base above msl, shallow convection '500115' = { @@ -906,8 +906,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 195 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Height of Convective Cloud Base (i) '500118' = { @@ -942,32 +942,32 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Specific humitiy tendency due to convection '500123' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #zonal wind tendency due to convection '500124' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #meridional wind tendency due to convection '500125' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #height of top of dry convection '500126' = { @@ -994,24 +994,24 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 198 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #tendency of specific cloud ice content due to convection '500130' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 199 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Specific content of precipitation particles (needed for water loadin)g '500131' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 196 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Large scale rain rate '500132' = { @@ -1054,8 +1054,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 76 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #rain amount, grid-scale plus convective '500138' = { @@ -1078,24 +1078,24 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Specific humitiy tendency due to grid scale precipitation '500141' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 200 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #tendency of specific cloud liquid water content due to grid scale precipitation '500142' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 201 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Fresh snow factor (weighting function for albedo indicating freshness of snow) '500143' = { @@ -1108,8 +1108,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 202 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Graupel (snow pellets) precipitation rate '500145' = { @@ -1194,40 +1194,40 @@ discipline = 0 ; parameterCategory = 19 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Kinetic Energy '500157' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 196 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Turbulent Kinetic Energy '500158' = { discipline = 0 ; parameterCategory = 19 ; parameterNumber = 11 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Turbulent diffusioncoefficient for momentum '500159' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 31 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Turbulent diffusion coefficient for heat (and moisture) '500160' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 20 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Turbulent transfer coefficient for impulse '500161' = { @@ -1255,10 +1255,10 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; } #Air concentration of Ruthenium 103 '500165' = { @@ -1353,8 +1353,8 @@ discipline = 0 ; parameterCategory = 4 ; parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #sum of contributions to evaporation '500178' = { @@ -1492,8 +1492,8 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 194 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #meridional wind tendency due to subgrid scale oro. '500199' = { @@ -1578,8 +1578,8 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 4 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; } #Plant covering degree in the quiescent phas '500211' = { @@ -1594,16 +1594,16 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 28 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; } #Min Leaf area index '500213' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 28 ; - typeOfStatisticalProcessing = 3 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 3 ; } #Orographie + Land-Meer-Verteilung '500214' = { @@ -1618,10 +1618,10 @@ parameterNumber = 20 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = -2 ; + scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; typeOfStatisticalProcessing = 7 ; } #variance of soil moisture content (10-100) @@ -1631,11 +1631,11 @@ parameterNumber = 20 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - typeOfStatisticalProcessing = 7 ; - scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; + scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 7 ; } #evergreen forest '500217' = { @@ -2037,8 +2037,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #u-momentum flux due to SSO-effects '500280' = { @@ -2052,8 +2052,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #v-momentum flux due to SSO-effects '500282' = { @@ -2067,8 +2067,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #Gravity wave dissipation (vertical integral) '500284' = { @@ -2186,8 +2186,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 1 ; - typeOfGeneratingProcess = 200 ; typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; } #Monthly Mean of RMS of difference FG-AN of u-component of wind '500310' = { @@ -2306,18 +2306,18 @@ discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; + satelliteSeries = 331 ; satelliteNumber = 52 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. brightness temperature clear sky '500325' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 52 ; + instrumentType = 205 ; } #Synth. Sat. radiance cloudy '500326' = { @@ -2333,9 +2333,9 @@ discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 52 ; + instrumentType = 205 ; } #Synth. Sat. brightness temperature cloudy '500328' = { @@ -2423,9 +2423,9 @@ discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 54 ; + instrumentType = 205 ; } #Synth. Sat. radiance clear sky '500338' = { @@ -2452,8 +2452,8 @@ parameterNumber = 14 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 92592 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy '500341' = { @@ -2462,17 +2462,17 @@ parameterNumber = 14 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 82644 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy '500342' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; - scaledValueOfCentralWaveNumber = 74626 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 74626 ; instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy @@ -2480,20 +2480,20 @@ discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 256410 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy '500344' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 114942 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy '500345' = { @@ -2502,17 +2502,17 @@ parameterNumber = 14 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 103092 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy '500346' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; - scaledValueOfCentralWaveNumber = 161290 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 161290 ; instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy @@ -2522,8 +2522,8 @@ parameterNumber = 14 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 136986 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky '500348' = { @@ -2532,8 +2532,8 @@ parameterNumber = 15 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 114942 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky '500349' = { @@ -2542,28 +2542,28 @@ parameterNumber = 15 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 92592 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky '500350' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 82644 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky '500351' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 74626 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky '500352' = { @@ -2572,8 +2572,8 @@ parameterNumber = 15 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 256410 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky '500353' = { @@ -2582,18 +2582,18 @@ parameterNumber = 15 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 103092 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky '500354' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 161290 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky '500355' = { @@ -2602,8 +2602,8 @@ parameterNumber = 15 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 136986 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy '500356' = { @@ -2612,17 +2612,17 @@ parameterNumber = 16 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 92592 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy '500357' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - scaledValueOfCentralWaveNumber = 82644 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 82644 ; instrumentType = 207 ; } #Synth. Sat. radiance cloudy @@ -2632,28 +2632,28 @@ parameterNumber = 16 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 74626 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy '500359' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 256410 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy '500360' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 114942 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy '500361' = { @@ -2662,8 +2662,8 @@ parameterNumber = 16 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 103092 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy '500362' = { @@ -2672,8 +2672,8 @@ parameterNumber = 16 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 161290 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy '500363' = { @@ -2682,8 +2682,8 @@ parameterNumber = 16 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 136986 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky '500364' = { @@ -2692,8 +2692,8 @@ parameterNumber = 17 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 92592 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky '500365' = { @@ -2702,28 +2702,28 @@ parameterNumber = 17 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 82644 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky '500366' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 74626 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky '500367' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 256410 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 256410 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky '500368' = { @@ -2732,8 +2732,8 @@ parameterNumber = 17 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 114942 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky '500369' = { @@ -2742,8 +2742,8 @@ parameterNumber = 17 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 103092 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky '500370' = { @@ -2752,8 +2752,8 @@ parameterNumber = 17 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 161290 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky '500371' = { @@ -2762,8 +2762,8 @@ parameterNumber = 17 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 136986 ; + instrumentType = 207 ; } #smoothed forecast, temperature '500372' = { @@ -2771,8 +2771,8 @@ parameterCategory = 0 ; parameterNumber = 0 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; typeOfGeneratingProcess = 197 ; } #smoothed forecast, maximum temp. @@ -2780,10 +2780,10 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; typeOfGeneratingProcess = 197 ; } #smoothed forecast, minimum temp. @@ -2791,10 +2791,10 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; typeOfGeneratingProcess = 197 ; } #smoothed forecast, dew point temp. @@ -2802,38 +2802,38 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 6 ; - typeOfGeneratingProcess = 197 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, u comp. of wind '500376' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, v comp. of wind '500377' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, total precipitation rate '500378' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; typeOfGeneratingProcess = 197 ; } #smoothed forecast, total cloud cover @@ -2851,8 +2851,8 @@ parameterNumber = 22 ; typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 1 ; - scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 800 ; + scaleFactorOfFirstFixedSurface = -2 ; typeOfGeneratingProcess = 197 ; } #smoothed forecast, cloud cover medium @@ -2862,10 +2862,10 @@ parameterNumber = 22 ; typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 400 ; - scaleFactorOfSecondFixedSurface = -2 ; + scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfSecondFixedSurface = 800 ; + scaleFactorOfSecondFixedSurface = -2 ; typeOfGeneratingProcess = 197 ; } #smoothed forecast, cloud cover high @@ -2875,20 +2875,20 @@ parameterNumber = 22 ; typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 400 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 400 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, large-scale snowfall rate w.e. '500383' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 56 ; - typeOfGeneratingProcess = 197 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, soil temperature '500384' = { @@ -2904,19 +2904,19 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 197 ; } #calibrated forecast, total precipitation rate '500386' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; typeOfGeneratingProcess = 198 ; } #calibrated forecast, large-scale snowfall rate w.e. @@ -2924,8 +2924,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; typeOfGeneratingProcess = 198 ; } #calibrated forecast, wind speed (gust) @@ -2933,10 +2933,10 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; typeOfGeneratingProcess = 198 ; } #Obser. Sat. Meteosat sec. generation Albedo (scaled) @@ -2947,8 +2947,8 @@ typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 2000000 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation Albedo (scaled) '500390' = { @@ -2958,19 +2958,19 @@ typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 625000 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation Albedo (scaled) '500391' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 1 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 1666666 ; typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 1666666 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation Albedo (scaled) '500392' = { @@ -2980,8 +2980,8 @@ typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 1250000 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature '500393' = { @@ -2991,8 +2991,8 @@ typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 92592 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature '500394' = { @@ -3002,19 +3002,19 @@ typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 83333 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature '500395' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 74626 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature '500396' = { @@ -3024,8 +3024,8 @@ typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 256410 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature '500397' = { @@ -3035,8 +3035,8 @@ typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 114942 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature '500398' = { @@ -3046,19 +3046,19 @@ typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 103092 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature '500399' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 161290 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature '500400' = { @@ -3068,6 +3068,6 @@ typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 136986 ; + instrumentType = 207 ; } diff --git a/definitions/grib2/localConcepts/cnmc/shortName.def b/definitions/grib2/localConcepts/cnmc/shortName.def index c6cc81982..2d0496ee2 100644 --- a/definitions/grib2/localConcepts/cnmc/shortName.def +++ b/definitions/grib2/localConcepts/cnmc/shortName.def @@ -10,16 +10,16 @@ discipline = 10 ; parameterCategory = 2 ; parameterNumber = 0 ; - is_s2s = 1 ; subCentre = 102 ; + is_s2s = 1 ; } #2 metre dewpoint temperature '2d' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 6 ; - scaledValueOfFirstFixedSurface = 2 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; } #2 metre dewpoint temperature @@ -27,11 +27,11 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 6 ; - is_s2s = 1 ; - subCentre = 102 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; + subCentre = 102 ; + is_s2s = 1 ; } #Pressure (S) (not reduced) 'ps' = { @@ -72,8 +72,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 4 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Geopotential 'fi' = { @@ -93,8 +93,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 6 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Total Column Integrated Ozone 'to3' = { @@ -115,9 +115,9 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; typeOfStatisticalProcessing = 0 ; typeOfGeneratingProcess = 9 ; } @@ -132,9 +132,9 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; typeOfStatisticalProcessing = 2 ; } #Min 2m Temperature (i) @@ -142,9 +142,9 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; typeOfStatisticalProcessing = 3 ; } #2m Dew Point Temperature (AV) @@ -152,10 +152,10 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 6 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 103 ; - typeOfStatisticalProcessing = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; } #Radar spectra (1) 'dbz_max' = { @@ -197,34 +197,34 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Wind speed (SP_10M) 'sp_10m' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Wind speed (SP) 'sp' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #U component of wind 'u_10m' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #U component of wind 'u' = { @@ -287,9 +287,9 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; } #Relative Humidity 'relhum' = { @@ -309,8 +309,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 79 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Total Column-Integrated Cloud Ice 'tqi' = { @@ -366,18 +366,18 @@ discipline = 0 ; parameterCategory = 6 ; parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Cloud Cover (800 hPa - Soil) 'clcl' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 1 ; scaledValueOfFirstFixedSurface = 800 ; scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 100 ; } #Cloud Cover (400 - 800 hPa) 'clcm' = { @@ -386,10 +386,10 @@ parameterNumber = 22 ; typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 100 ; - scaledValueOfSecondFixedSurface = 800 ; - scaleFactorOfSecondFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 400 ; scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 800 ; + scaleFactorOfSecondFixedSurface = -2 ; } #Cloud Cover (0 - 400 hPa) 'clch' = { @@ -398,10 +398,10 @@ parameterNumber = 22 ; typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 100 ; - scaledValueOfSecondFixedSurface = 400 ; - scaleFactorOfSecondFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 400 ; + scaleFactorOfSecondFixedSurface = -2 ; } #Total Column-Integrated Cloud Water 'tqc' = { @@ -460,36 +460,36 @@ discipline = 2 ; parameterCategory = 3 ; parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 36 ; scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; } #Soil Temperature (41 cm depth) 't_cl_lm' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 41 ; scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; } #Soil Temperature 't_m' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 9 ; scaleFactorOfFirstFixedSurface = -2 ; - typeOfFirstFixedSurface = 106 ; } #Soil Temperature 't_s' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; typeOfFirstFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; } #Column-integrated Soil Moisture 'w_cl' = { @@ -498,10 +498,10 @@ parameterNumber = 20 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 190 ; - scaleFactorOfSecondFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 100 ; scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 190 ; + scaleFactorOfSecondFixedSurface = -2 ; } #Column-integrated Soil Moisture (1) 0 -10 cm 'w_g1' = { @@ -510,10 +510,10 @@ parameterNumber = 20 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; } #Column-integrated Soil Moisture (2) 10-100cm 'w_g2' = { @@ -522,10 +522,10 @@ parameterNumber = 20 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; } #Plant cover 'plcov' = { @@ -541,11 +541,11 @@ parameterNumber = 5 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 1 ; } #Water Runoff (10-190) 'runoff_g_lm' = { @@ -554,11 +554,11 @@ parameterNumber = 5 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfSecondFixedSurface = 190 ; - scaleFactorOfSecondFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 190 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 1 ; } #Water Runoff (s) 'runoff_s' = { @@ -569,9 +569,9 @@ typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = -2 ; - typeOfStatisticalProcessing = 1 ; scaledValueOfSecondFixedSurface = 10 ; scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 1 ; } #Sea Ice Cover ( 0= free, 1=cover) 'fr_ice' = { @@ -664,8 +664,8 @@ discipline = 0 ; parameterCategory = 4 ; parameterNumber = 9 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; } #Net short wave radiation flux 'sobt_rad' = { @@ -726,8 +726,8 @@ discipline = 0 ; parameterCategory = 4 ; parameterNumber = 10 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #Photosynthetically active radiation 'pabs_rad' = { @@ -741,16 +741,16 @@ discipline = 0 ; parameterCategory = 4 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Thermal radiation heating rate 'thhr_rad' = { discipline = 0 ; parameterCategory = 5 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Latent heat flux from bare soil 'alhfl_bs' = { @@ -765,8 +765,8 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 194 ; - scaleFactorOfFirstFixedSurface = -2 ; typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; typeOfStatisticalProcessing = 0 ; } #Sunshine @@ -788,24 +788,24 @@ discipline = 0 ; parameterCategory = 6 ; parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Non-Convective Cloud Cover, grid scale 'clc_sgs' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 14 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Cloud Mixing Ratio 'qc' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Cloud Ice Mixing Ratio 'qi' = { @@ -820,16 +820,16 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 24 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Snow mixing ratio 'qs' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 25 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Total column integrated rain 'tqr' = { @@ -848,8 +848,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 32 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Total column integrated grauple 'tqg' = { @@ -876,16 +876,16 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #subgridscale cloud ice 'qi_rad' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 194 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #cloud base above msl, shallow convection 'hbas_sc' = { @@ -906,8 +906,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 195 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Height of Convective Cloud Base (i) 'hbas_con' = { @@ -942,32 +942,32 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Specific humitiy tendency due to convection 'dqv_con' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #zonal wind tendency due to convection 'du_con' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #meridional wind tendency due to convection 'dv_con' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #height of top of dry convection 'htop_dc' = { @@ -994,24 +994,24 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 198 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #tendency of specific cloud ice content due to convection 'dqi_con' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 199 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Specific content of precipitation particles (needed for water loadin)g 'q_sedim' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 196 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Large scale rain rate 'prr_gsp' = { @@ -1054,8 +1054,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 76 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #rain amount, grid-scale plus convective 'rr_f' = { @@ -1078,8 +1078,8 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Specific humitiy tendency due to grid scale precipitation 'dqv_gsp' = { @@ -1094,8 +1094,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 201 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Fresh snow factor (weighting function for albedo indicating freshness of snow) 'freshsnw' = { @@ -1108,8 +1108,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 202 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Graupel (snow pellets) precipitation rate 'prg_gsp' = { @@ -1138,8 +1138,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #supercell detection index 1 (rot. up+down drafts) 'sdi_1' = { @@ -1194,40 +1194,40 @@ discipline = 0 ; parameterCategory = 19 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Kinetic Energy 'ke' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 196 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Turbulent Kinetic Energy 'tke' = { discipline = 0 ; parameterCategory = 19 ; parameterNumber = 11 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Turbulent diffusioncoefficient for momentum 'tkvm' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 31 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Turbulent diffusion coefficient for heat (and moisture) 'tkvh' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 20 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Turbulent transfer coefficient for impulse 'tcm' = { @@ -1255,10 +1255,10 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; } #Air concentration of Ruthenium 103 'ru-103' = { @@ -1330,8 +1330,8 @@ discipline = 0 ; parameterCategory = 15 ; parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Base reflectivity (cmax) 'dbz_cmax' = { @@ -1476,8 +1476,8 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; - typeOfGeneratingProcess = 7 ; typeOfStatisticalProcessing = 6 ; + typeOfGeneratingProcess = 7 ; } #analysis error(standard deviation), v-comp. of wind 'ana_err_v' = { @@ -1578,24 +1578,24 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 4 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; } #Plant covering degree in the quiescent phas 'plcov_mn' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 4 ; - typeOfStatisticalProcessing = 3 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 3 ; } #Max Leaf area index 'lai_mx' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 28 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; } #Min Leaf area index 'lai_mn' = { @@ -1618,11 +1618,11 @@ parameterNumber = 20 ; typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 10 ; - typeOfStatisticalProcessing = 7 ; - scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 7 ; } #variance of soil moisture content (10-100) 'wvar2' = { @@ -1632,10 +1632,10 @@ typeOfFirstFixedSurface = 106 ; typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 100 ; - typeOfStatisticalProcessing = 7 ; scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 7 ; } #evergreen forest 'for_e' = { @@ -2037,8 +2037,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #u-momentum flux due to SSO-effects 'ustr_sso' = { @@ -2067,8 +2067,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 23 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #Gravity wave dissipation (vertical integral) 'vdis_sso' = { @@ -2095,8 +2095,8 @@ discipline = 0 ; parameterCategory = 7 ; parameterNumber = 8 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #absolute vorticity advection 'vabs' = { @@ -2178,8 +2178,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 1 ; - typeOfGeneratingProcess = 199 ; typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; } #Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL 'eia-ps' = { @@ -2258,8 +2258,8 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - typeOfGeneratingProcess = 199 ; typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; } #Monthly Mean of RMS of difference IA-AN of temperature 'eia-t' = { @@ -2306,9 +2306,9 @@ discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 52 ; + instrumentType = 205 ; } #Synth. Sat. brightness temperature clear sky 'synme5_bt_cs' = { @@ -2333,9 +2333,9 @@ discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; + satelliteSeries = 331 ; satelliteNumber = 52 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. brightness temperature cloudy 'synme6_bt_cl' = { @@ -2351,9 +2351,9 @@ discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 53 ; + instrumentType = 205 ; } #Synth. Sat. radiance cloudy 'synme6_rad_cl' = { @@ -2387,9 +2387,9 @@ discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 54 ; + instrumentType = 205 ; } #Synth. Sat. brightness temperature clear sky 'synme7_bt_cs_ir11.5' = { @@ -2405,9 +2405,9 @@ discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; + satelliteSeries = 331 ; satelliteNumber = 54 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. radiance clear sky 'synme7_rad_cl_ir11.5' = { @@ -2452,8 +2452,8 @@ parameterNumber = 14 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 92592 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy 'synmsg_bt_cl_ir12.1' = { @@ -2462,8 +2462,8 @@ parameterNumber = 14 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 82644 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy 'synmsg_bt_cl_ir13.4' = { @@ -2472,8 +2472,8 @@ parameterNumber = 14 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 74626 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy 'synmsg_bt_cl_ir3.9' = { @@ -2482,8 +2482,8 @@ parameterNumber = 14 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 256410 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy 'synmsg_bt_cl_ir8.7' = { @@ -2492,18 +2492,18 @@ parameterNumber = 14 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 114942 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy 'synmsg_bt_cl_ir9.7' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 103092 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy 'synmsg_bt_cl_wv6.2' = { @@ -2512,37 +2512,37 @@ parameterNumber = 14 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 161290 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy 'synmsg_bt_cl_wv7.3' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 136986 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 136986 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky 'synmsg_bt_cs_ir8.7' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 114942 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky 'synmsg_bt_cs_ir10.8' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - scaledValueOfCentralWaveNumber = 92592 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 92592 ; instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky @@ -2550,10 +2550,10 @@ discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 82644 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 82644 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky 'synmsg_bt_cs_ir13.4' = { @@ -2562,17 +2562,17 @@ parameterNumber = 15 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 74626 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky 'synmsg_bt_cs_ir3.9' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - scaledValueOfCentralWaveNumber = 256410 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 256410 ; instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky @@ -2582,18 +2582,18 @@ parameterNumber = 15 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 103092 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky 'synmsg_bt_cs_wv6.2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 161290 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky 'synmsg_bt_cs_wv7.3' = { @@ -2602,8 +2602,8 @@ parameterNumber = 15 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 136986 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy 'synmsg_rad_cl_ir10.8' = { @@ -2612,8 +2612,8 @@ parameterNumber = 16 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 92592 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy 'synmsg_rad_cl_ir12.1' = { @@ -2622,18 +2622,18 @@ parameterNumber = 16 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 82644 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy 'synmsg_rad_cl_ir13.4' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 74626 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 74626 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy 'synmsg_rad_cl_ir3.9' = { @@ -2642,37 +2642,37 @@ parameterNumber = 16 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 256410 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy 'synmsg_rad_cl_ir8.7' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 114942 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy 'synmsg_rad_cl_ir9.7' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 103092 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy 'synmsg_rad_cl_wv6.2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - scaledValueOfCentralWaveNumber = 161290 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 161290 ; instrumentType = 207 ; } #Synth. Sat. radiance cloudy @@ -2680,9 +2680,9 @@ discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - scaledValueOfCentralWaveNumber = 136986 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 136986 ; instrumentType = 207 ; } #Synth. Sat. radiance clear sky @@ -2692,8 +2692,8 @@ parameterNumber = 17 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 92592 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky 'synmsg_rad_cs_ir12.1' = { @@ -2702,8 +2702,8 @@ parameterNumber = 17 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 82644 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky 'synmsg_rad_cs_ir13.4' = { @@ -2712,8 +2712,8 @@ parameterNumber = 17 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 74626 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky 'synmsg_rad_cs_ir3.9' = { @@ -2722,47 +2722,47 @@ parameterNumber = 17 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 256410 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky 'synmsg_rad_cs_ir8.7' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; - satelliteNumber = 72 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 114942 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky 'synmsg_rad_cs_ir9.7' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 103092 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 103092 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky 'synmsg_rad_cs_wv6.2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 161290 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 161290 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky 'synmsg_rad_cs_wv7.3' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; - scaledValueOfCentralWaveNumber = 136986 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 136986 ; instrumentType = 207 ; } #smoothed forecast, temperature @@ -2771,8 +2771,8 @@ parameterCategory = 0 ; parameterNumber = 0 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; typeOfGeneratingProcess = 197 ; } #smoothed forecast, maximum temp. @@ -2780,10 +2780,10 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; typeOfGeneratingProcess = 197 ; } #smoothed forecast, minimum temp. @@ -2791,10 +2791,10 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; typeOfGeneratingProcess = 197 ; } #smoothed forecast, dew point temp. @@ -2803,8 +2803,8 @@ parameterCategory = 0 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; typeOfGeneratingProcess = 197 ; } #smoothed forecast, u comp. of wind @@ -2812,28 +2812,28 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, v comp. of wind 'v_10m_s' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; - typeOfGeneratingProcess = 197 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, total precipitation rate 'tot_prec_s' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; typeOfGeneratingProcess = 197 ; } #smoothed forecast, total cloud cover @@ -2852,8 +2852,8 @@ typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 1 ; scaledValueOfFirstFixedSurface = 800 ; - typeOfGeneratingProcess = 197 ; scaleFactorOfFirstFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, cloud cover medium 'clcm_s' = { @@ -2862,11 +2862,11 @@ parameterNumber = 22 ; typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 800 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 400 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 800 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, cloud cover high 'clch_s' = { @@ -2875,19 +2875,19 @@ parameterNumber = 22 ; typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 100 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfSecondFixedSurface = 400 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 400 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, large-scale snowfall rate w.e. 'snow_gsp_s' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; typeOfGeneratingProcess = 197 ; } #smoothed forecast, soil temperature @@ -2904,19 +2904,19 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfGeneratingProcess = 197 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 197 ; } #calibrated forecast, total precipitation rate 'tot_prec_c' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; typeOfGeneratingProcess = 198 ; } #calibrated forecast, large-scale snowfall rate w.e. @@ -2924,42 +2924,42 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 56 ; - typeOfGeneratingProcess = 198 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 198 ; } #calibrated forecast, wind speed (gust) 'vmax_10m_c' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - typeOfGeneratingProcess = 198 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 198 ; } #Obser. Sat. Meteosat sec. generation Albedo (scaled) 'obsmsg_alb_hrv' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 1 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 2000000 ; typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 2000000 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation Albedo (scaled) 'obsmsg_alb_nir1.6' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 625000 ; - typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation Albedo (scaled) 'obsmsg_alb_vis0.6' = { @@ -2969,18 +2969,18 @@ typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 1666666 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation Albedo (scaled) 'obsmsg_alb_vis0.8' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 1 ; - scaledValueOfCentralWaveNumber = 1250000 ; typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 1250000 ; instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature @@ -2988,22 +2988,22 @@ discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 92592 ; typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 92592 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'obsmsg_bt_ir12.0' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 83333 ; - typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'obsmsg_bt_ir13.4' = { @@ -3013,18 +3013,18 @@ typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 74626 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'obsmsg_bt_ir3.9' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; - scaledValueOfCentralWaveNumber = 256410 ; typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 256410 ; instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature @@ -3032,22 +3032,22 @@ discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; - instrumentType = 207 ; - scaledValueOfCentralWaveNumber = 114942 ; typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 114942 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'obsmsg_bt_ir9.7' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 103092 ; - typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'obsmsg_bt_wv6.2' = { @@ -3057,17 +3057,17 @@ typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; - instrumentType = 207 ; scaledValueOfCentralWaveNumber = 161290 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'obsmsg_bt_wv7.3' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; - scaledValueOfCentralWaveNumber = 136986 ; typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 136986 ; instrumentType = 207 ; } diff --git a/definitions/grib2/localConcepts/cnmc/units.def b/definitions/grib2/localConcepts/cnmc/units.def index a3af26326..177655a57 100644 --- a/definitions/grib2/localConcepts/cnmc/units.def +++ b/definitions/grib2/localConcepts/cnmc/units.def @@ -19,19 +19,19 @@ parameterCategory = 0 ; parameterNumber = 6 ; typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; } #2 metre dewpoint temperature 'K' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 6 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - is_s2s = 1 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; subCentre = 102 ; + is_s2s = 1 ; } #Pressure (S) (not reduced) 'Pa' = { @@ -72,8 +72,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 4 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Geopotential 'm**2 s**-2' = { @@ -93,8 +93,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 6 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Total Column Integrated Ozone 'Dobson' = { @@ -115,11 +115,11 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - typeOfGeneratingProcess = 9 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 0 ; scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; + typeOfGeneratingProcess = 9 ; } #Temperature 'K' = { @@ -134,8 +134,8 @@ parameterNumber = 0 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 2 ; scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; } #Min 2m Temperature (i) 'K' = { @@ -144,8 +144,8 @@ parameterNumber = 0 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 3 ; scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; } #2m Dew Point Temperature (AV) '~' = { @@ -154,8 +154,8 @@ parameterNumber = 6 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 0 ; scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 0 ; } #Radar spectra (1) '~' = { @@ -188,9 +188,9 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Wind Direction (DD) 'degrees' = { @@ -214,17 +214,17 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #U component of wind 'm s**-1' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; } #U component of wind 'm s**-1' = { @@ -237,9 +237,9 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; } #V component of wind 'm s**-1' = { @@ -271,9 +271,9 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Specific Humidity 'kg kg**-1' = { @@ -324,8 +324,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Large-Scale Precipitation rate 'kg m**-2 s**-1' = { @@ -366,18 +366,18 @@ discipline = 0 ; parameterCategory = 6 ; parameterNumber = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Cloud Cover (800 hPa - Soil) '%' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 1 ; scaledValueOfFirstFixedSurface = 800 ; scaleFactorOfFirstFixedSurface = -2 ; - typeOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 100 ; } #Cloud Cover (400 - 800 hPa) '%' = { @@ -385,22 +385,22 @@ parameterCategory = 6 ; parameterNumber = 22 ; typeOfFirstFixedSurface = 100 ; - scaledValueOfFirstFixedSurface = 400 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaleFactorOfFirstFixedSurface = -2 ; typeOfSecondFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 400 ; + scaleFactorOfFirstFixedSurface = -2 ; scaledValueOfSecondFixedSurface = 800 ; + scaleFactorOfSecondFixedSurface = -2 ; } #Cloud Cover (0 - 400 hPa) '%' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfSecondFixedSurface = 100 ; - scaledValueOfSecondFixedSurface = 400 ; typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 100 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 400 ; scaleFactorOfSecondFixedSurface = -2 ; } #Total Column-Integrated Cloud Water @@ -415,16 +415,16 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 55 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Large-Scale snowfall rate water equivalent (s) 'kg m**-2 s**-1' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 56 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Land Cover (1=land, 0=sea) '(0 - 1)' = { @@ -452,26 +452,26 @@ discipline = 0 ; parameterCategory = 19 ; parameterNumber = 1 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #Soil Temperature ( 36 cm depth, vv=0h) 'K' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; typeOfFirstFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 36 ; + scaleFactorOfFirstFixedSurface = -2 ; } #Soil Temperature (41 cm depth) 'K' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; typeOfFirstFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 41 ; + scaleFactorOfFirstFixedSurface = -2 ; } #Soil Temperature 'K' = { @@ -496,11 +496,11 @@ discipline = 2 ; parameterCategory = 3 ; parameterNumber = 20 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 190 ; typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 190 ; scaleFactorOfSecondFixedSurface = -2 ; } #Column-integrated Soil Moisture (1) 0 -10 cm @@ -508,24 +508,24 @@ discipline = 2 ; parameterCategory = 3 ; parameterNumber = 20 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; } #Column-integrated Soil Moisture (2) 10-100cm 'kg m**-2' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 20 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 100 ; typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfSecondFixedSurface = -2 ; scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; } #Plant cover '%' = { @@ -539,26 +539,26 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 100 ; typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 100 ; scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 1 ; } #Water Runoff (10-190) 'kg m**-2' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 5 ; - typeOfStatisticalProcessing = 1 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 190 ; typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 190 ; scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 1 ; } #Water Runoff (s) 'kg m**-2' = { @@ -566,12 +566,12 @@ parameterCategory = 0 ; parameterNumber = 5 ; typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 10 ; scaleFactorOfSecondFixedSurface = -2 ; typeOfStatisticalProcessing = 1 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 10 ; } #Sea Ice Cover ( 0= free, 1=cover) '~' = { @@ -702,16 +702,16 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 11 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #Momentum Flux, U-Component (m) 'N m**-2' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 17 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #Momentum Flux, V-Component (m) 'N m**-2' = { @@ -749,25 +749,25 @@ discipline = 0 ; parameterCategory = 5 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Latent heat flux from bare soil 'W m**-2' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 193 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #Latent heat flux from plants 'W m**-2' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; - scaleFactorOfFirstFixedSurface = -2 ; typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; + typeOfStatisticalProcessing = 0 ; } #Sunshine '~' = { @@ -788,8 +788,8 @@ discipline = 0 ; parameterCategory = 6 ; parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Non-Convective Cloud Cover, grid scale '%' = { @@ -812,16 +812,16 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 82 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Rain mixing ratio 'kg kg**-1' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 24 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Snow mixing ratio 'kg kg**-1' = { @@ -848,8 +848,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 32 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Total column integrated grauple 'kg m**-2' = { @@ -876,8 +876,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #subgridscale cloud ice 'kg kg**-1' = { @@ -950,24 +950,24 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #zonal wind tendency due to convection 'm s**-1' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #meridional wind tendency due to convection 'm s**-1' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #height of top of dry convection 'm' = { @@ -994,8 +994,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 198 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #tendency of specific cloud ice content due to convection 'kg kg**-1 s**-1' = { @@ -1062,32 +1062,32 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 65 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #snow amount, grid-scale plus convective 'kg m**-2' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 66 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; } #Temperature tendency due to grid scale precipation 'K s**-1' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 193 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Specific humitiy tendency due to grid scale precipitation 'kg kg**-1 s**-1' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 200 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #tendency of specific cloud liquid water content due to grid scale precipitation 'kg kg**-1 s**-1' = { @@ -1108,8 +1108,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 202 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Graupel (snow pellets) precipitation rate 'kg m**-2 s**-1' = { @@ -1138,8 +1138,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #supercell detection index 1 (rot. up+down drafts) 's**-1' = { @@ -1210,16 +1210,16 @@ discipline = 0 ; parameterCategory = 19 ; parameterNumber = 11 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Turbulent diffusioncoefficient for momentum 'm**2 s**-1' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 31 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Turbulent diffusion coefficient for heat (and moisture) 'm**2 s**-1' = { @@ -1255,8 +1255,8 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 10 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; } @@ -1271,16 +1271,16 @@ discipline = 2 ; parameterCategory = 3 ; parameterNumber = 18 ; - scaleFactorOfFirstFixedSurface = -2 ; typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; } #Column-integrated Soil Moisture (multilayers) 'kg m**-2' = { discipline = 2 ; parameterCategory = 3 ; parameterNumber = 20 ; - scaleFactorOfFirstFixedSurface = -2 ; typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = -2 ; } #soil ice content (multilayers) 'kg m**-2' = { @@ -1345,8 +1345,8 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 192 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Effective transmissivity of solar radiation 'K s**-1' = { @@ -1468,8 +1468,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 5 ; - typeOfGeneratingProcess = 7 ; typeOfStatisticalProcessing = 6 ; + typeOfGeneratingProcess = 7 ; } #analysis error(standard deviation), u-comp. of wind 'm**2 s**-2' = { @@ -1492,16 +1492,16 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 194 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #meridional wind tendency due to subgrid scale oro. 'm s**-1' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 195 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Standard deviation of sub-grid scale orography 'm' = { @@ -1578,8 +1578,8 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 4 ; - typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; } #Plant covering degree in the quiescent phas '~' = { @@ -1602,8 +1602,8 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 28 ; - typeOfStatisticalProcessing = 3 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 3 ; } #Orographie + Land-Meer-Verteilung 'm' = { @@ -1616,26 +1616,26 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 20 ; - scaledValueOfSecondFixedSurface = 10 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfStatisticalProcessing = 7 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 10 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 7 ; } #variance of soil moisture content (10-100) 'kg**2 m**-4' = { discipline = 0 ; parameterCategory = 3 ; parameterNumber = 20 ; - scaledValueOfSecondFixedSurface = 100 ; - typeOfSecondFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfStatisticalProcessing = 7 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 10 ; typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 100 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfStatisticalProcessing = 7 ; } #evergreen forest '~' = { @@ -1669,8 +1669,8 @@ discipline = 2 ; parameterCategory = 0 ; parameterNumber = 192 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #ratio of monthly mean NDVI (normalized differential vegetation index) to annual maximum '~' = { @@ -1749,8 +1749,8 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 207 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #water vapor flux 's**-1 m**-2' = { @@ -1813,8 +1813,8 @@ discipline = 0 ; parameterCategory = 14 ; parameterNumber = 1 ; - scaleFactorOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 105 ; + scaleFactorOfFirstFixedSurface = 0 ; } #Air concentration of Ruthenium 103 (Ru103- concentration) 'Bq m**-3' = { @@ -2052,8 +2052,8 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 194 ; - typeOfStatisticalProcessing = 0 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 0 ; } #v-momentum flux due to SSO-effects 'N m**-2' = { @@ -2186,16 +2186,16 @@ discipline = 0 ; parameterCategory = 3 ; parameterNumber = 1 ; - typeOfGeneratingProcess = 200 ; typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; } #Monthly Mean of RMS of difference FG-AN of u-component of wind 'm s**-1' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 2 ; - typeOfGeneratingProcess = 199 ; typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; } #Monthly Mean of RMS of difference IA-AN of u-component of wind 'm s**-1' = { @@ -2218,8 +2218,8 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; - typeOfGeneratingProcess = 200 ; typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; } #Monthly Mean of RMS of difference FG-AN of geopotential 'm**2 s**-2' = { @@ -2242,16 +2242,16 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 1 ; - typeOfGeneratingProcess = 199 ; typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; } #Monthly Mean of RMS of difference IA-AN of relative humidity '%' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 1 ; - typeOfGeneratingProcess = 200 ; typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; } #Monthly Mean of RMS of difference FG-AN of temperature 'K' = { @@ -2274,8 +2274,8 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 8 ; - typeOfGeneratingProcess = 199 ; typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 199 ; } #Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) 'Pa s**-1' = { @@ -2298,71 +2298,71 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 196 ; - typeOfGeneratingProcess = 200 ; typeOfStatisticalProcessing = 5 ; + typeOfGeneratingProcess = 200 ; } #Synth. Sat. brightness temperature cloudy 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; + satelliteSeries = 331 ; satelliteNumber = 52 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. brightness temperature clear sky 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 52 ; + instrumentType = 205 ; } #Synth. Sat. radiance cloudy 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; + satelliteSeries = 331 ; satelliteNumber = 52 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. radiance cloudy 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 52 ; + instrumentType = 205 ; } #Synth. Sat. brightness temperature cloudy 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; + satelliteSeries = 331 ; satelliteNumber = 53 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. brightness temperature clear sky 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; + satelliteSeries = 331 ; satelliteNumber = 53 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. radiance cloudy 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 53 ; + instrumentType = 205 ; } #Synth. Sat. radiance cloudy 'W m sr m**-2' = { @@ -2378,18 +2378,18 @@ discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; + satelliteSeries = 331 ; satelliteNumber = 54 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. brightness temperature cloudy 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; + satelliteSeries = 331 ; satelliteNumber = 54 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. brightness temperature clear sky 'K' = { @@ -2405,245 +2405,245 @@ discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 54 ; + instrumentType = 205 ; } #Synth. Sat. radiance clear sky 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 54 ; + instrumentType = 205 ; } #Synth. Sat. radiance cloudy 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; + satelliteSeries = 331 ; satelliteNumber = 54 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. radiance clear sky 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; - instrumentType = 205 ; satelliteSeries = 331 ; satelliteNumber = 54 ; + instrumentType = 205 ; } #Synth. Sat. radiance cloudy 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; + satelliteSeries = 331 ; satelliteNumber = 54 ; instrumentType = 205 ; - satelliteSeries = 331 ; } #Synth. Sat. brightness temperature cloudy 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. brightness temperature cloudy 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 82644 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. brightness temperature cloudy 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature cloudy 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. brightness temperature cloudy 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 14 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 136986 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. brightness temperature clear sky 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. brightness temperature clear sky 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 82644 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. brightness temperature clear sky 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. brightness temperature clear sky 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. brightness temperature clear sky 'K' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 15 ; - satelliteNumber = 72 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 136986 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 82644 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. radiance cloudy 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. radiance cloudy 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy 'W m sr m**-2' = { @@ -2651,8 +2651,8 @@ parameterCategory = 1 ; parameterNumber = 16 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; instrumentType = 207 ; } #Synth. Sat. radiance cloudy @@ -2660,152 +2660,152 @@ discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. radiance cloudy 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. radiance cloudy 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 16 ; - instrumentType = 207 ; satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 136986 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 136986 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. radiance clear sky 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 82644 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. radiance clear sky 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. radiance clear sky 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; + instrumentType = 207 ; } #Synth. Sat. radiance clear sky 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. radiance clear sky 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Synth. Sat. radiance clear sky 'W m sr m**-2' = { discipline = 3 ; parameterCategory = 1 ; parameterNumber = 17 ; - instrumentType = 207 ; satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 136986 ; satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 136986 ; + instrumentType = 207 ; } #smoothed forecast, temperature 'K' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 2 ; typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 197 ; + scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, maximum temp. 'K' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - typeOfGeneratingProcess = 197 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, minimum temp. 'K' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - typeOfGeneratingProcess = 197 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 3 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfFirstFixedSurface = 103 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, dew point temp. 'K' = { discipline = 0 ; parameterCategory = 0 ; parameterNumber = 6 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, u comp. of wind 'm s**-1' = { @@ -2813,19 +2813,19 @@ parameterCategory = 2 ; parameterNumber = 2 ; typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, v comp. of wind 'm s**-1' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 3 ; - scaledValueOfFirstFixedSurface = 10 ; typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 197 ; + scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, total precipitation rate 'kg m**-2 s**-1' = { @@ -2833,8 +2833,8 @@ parameterCategory = 1 ; parameterNumber = 52 ; typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 197 ; typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, total cloud cover '%' = { @@ -2849,55 +2849,55 @@ discipline = 0 ; parameterCategory = 6 ; parameterNumber = 22 ; + typeOfFirstFixedSurface = 100 ; typeOfSecondFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 800 ; scaleFactorOfFirstFixedSurface = -2 ; typeOfGeneratingProcess = 197 ; - scaledValueOfFirstFixedSurface = 800 ; - typeOfFirstFixedSurface = 100 ; } #smoothed forecast, cloud cover medium '%' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 22 ; - scaledValueOfSecondFixedSurface = 800 ; - typeOfSecondFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = -2 ; - typeOfGeneratingProcess = 197 ; - scaleFactorOfSecondFixedSurface = -2 ; - scaledValueOfFirstFixedSurface = 400 ; typeOfFirstFixedSurface = 100 ; + typeOfSecondFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 400 ; + scaleFactorOfFirstFixedSurface = -2 ; + scaledValueOfSecondFixedSurface = 800 ; + scaleFactorOfSecondFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, cloud cover high '%' = { discipline = 0 ; parameterCategory = 6 ; parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 0 ; typeOfFirstFixedSurface = 100 ; - scaledValueOfSecondFixedSurface = 400 ; typeOfSecondFixedSurface = 100 ; + scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = -2 ; - typeOfGeneratingProcess = 197 ; + scaledValueOfSecondFixedSurface = 400 ; scaleFactorOfSecondFixedSurface = -2 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, large-scale snowfall rate w.e. 'kg m**-2 s**-1' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 56 ; - typeOfGeneratingProcess = 197 ; - typeOfStatisticalProcessing = 1 ; typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 197 ; } #smoothed forecast, soil temperature 'K' = { discipline = 0 ; parameterCategory = 3 ; parameterNumber = 18 ; + typeOfFirstFixedSurface = 106 ; scaleFactorOfFirstFixedSurface = -2 ; typeOfGeneratingProcess = 197 ; - typeOfFirstFixedSurface = 106 ; } #smoothed forecast, wind speed (gust) 'm s**-1' = { @@ -2905,10 +2905,10 @@ parameterCategory = 2 ; parameterNumber = 22 ; typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 197 ; + scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; - scaledValueOfFirstFixedSurface = 10 ; + typeOfGeneratingProcess = 197 ; } #calibrated forecast, total precipitation rate 'kg m**-2 s**-1' = { @@ -2916,8 +2916,8 @@ parameterCategory = 1 ; parameterNumber = 52 ; typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 198 ; typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 198 ; } #calibrated forecast, large-scale snowfall rate w.e. 'kg m**-2 s**-1' = { @@ -2925,149 +2925,149 @@ parameterCategory = 1 ; parameterNumber = 56 ; typeOfFirstFixedSurface = 1 ; - typeOfGeneratingProcess = 198 ; typeOfStatisticalProcessing = 1 ; + typeOfGeneratingProcess = 198 ; } #calibrated forecast, wind speed (gust) 'm s**-1' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - scaledValueOfFirstFixedSurface = 10 ; typeOfFirstFixedSurface = 103 ; - typeOfGeneratingProcess = 198 ; + scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; + typeOfGeneratingProcess = 198 ; } #Obser. Sat. Meteosat sec. generation Albedo (scaled) 'Numeric' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 1 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 2000000 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Obser. Sat. Meteosat sec. generation Albedo (scaled) 'Numeric' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 1 ; - satelliteNumber = 72 ; typeOfGeneratingProcess = 8 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 625000 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation Albedo (scaled) 'Numeric' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 1 ; - instrumentType = 207 ; + typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 1666666 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation Albedo (scaled) 'Numeric' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 1 ; - instrumentType = 207 ; + typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 1250000 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'Numeric' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 92592 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'Numeric' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; - satelliteNumber = 72 ; typeOfGeneratingProcess = 8 ; - instrumentType = 207 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 83333 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'Numeric' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; - instrumentType = 207 ; + typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 74626 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'Numeric' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; - instrumentType = 207 ; + typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 256410 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'Numeric' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 114942 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'Numeric' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; + typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 103092 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; instrumentType = 207 ; - satelliteSeries = 333 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'Numeric' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; - instrumentType = 207 ; + typeOfGeneratingProcess = 8 ; satelliteSeries = 333 ; + satelliteNumber = 72 ; scaledValueOfCentralWaveNumber = 161290 ; - satelliteNumber = 72 ; - typeOfGeneratingProcess = 8 ; + instrumentType = 207 ; } #Obser. Sat. Meteosat sec. generation brightness temperature 'Numeric' = { discipline = 3 ; parameterCategory = 0 ; parameterNumber = 2 ; - instrumentType = 207 ; - satelliteSeries = 333 ; - scaledValueOfCentralWaveNumber = 136986 ; - satelliteNumber = 72 ; typeOfGeneratingProcess = 8 ; + satelliteSeries = 333 ; + satelliteNumber = 72 ; + scaledValueOfCentralWaveNumber = 136986 ; + instrumentType = 207 ; } From d527b49dc996000627f3a9471865a7dd58a1b7d7 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 6 Apr 2021 19:54:28 +0100 Subject: [PATCH 449/683] Legacy: Move 'rpms' into the 'experimental' dir --- CMakeLists.txt | 2 +- {rpms => experimental/rpms}/CMakeLists.txt | 0 {rpms => experimental/rpms}/eccodes.pc.in | 0 {rpms => experimental/rpms}/eccodes.spec.in | 0 {rpms => experimental/rpms}/eccodes_f90.pc.in | 0 5 files changed, 1 insertion(+), 1 deletion(-) rename {rpms => experimental/rpms}/CMakeLists.txt (100%) rename {rpms => experimental/rpms}/eccodes.pc.in (100%) rename {rpms => experimental/rpms}/eccodes.spec.in (100%) rename {rpms => experimental/rpms}/eccodes_f90.pc.in (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index ebe546d80..7368a09e1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -426,7 +426,7 @@ add_subdirectory( ifs_samples ) # must come after samples # ecbuild_dont_pack( DIRS samples DONT_PACK_REGEX "*.grib" ) ecbuild_dont_pack( DIRS experimental doxygen confluence tests/tests.ecmwf - config m4 rpms examples/F77 + config m4 examples/F77 examples/examples.dev examples/extra examples/deprecated bamboo fortran/fortranCtypes tigge/tools share/eccodes .settings ) #ecbuild_dont_pack( DIRS data/bufr DONT_PACK_REGEX "*.bufr" ) diff --git a/rpms/CMakeLists.txt b/experimental/rpms/CMakeLists.txt similarity index 100% rename from rpms/CMakeLists.txt rename to experimental/rpms/CMakeLists.txt diff --git a/rpms/eccodes.pc.in b/experimental/rpms/eccodes.pc.in similarity index 100% rename from rpms/eccodes.pc.in rename to experimental/rpms/eccodes.pc.in diff --git a/rpms/eccodes.spec.in b/experimental/rpms/eccodes.spec.in similarity index 100% rename from rpms/eccodes.spec.in rename to experimental/rpms/eccodes.spec.in diff --git a/rpms/eccodes_f90.pc.in b/experimental/rpms/eccodes_f90.pc.in similarity index 100% rename from rpms/eccodes_f90.pc.in rename to experimental/rpms/eccodes_f90.pc.in From fd549250dc5fe8f7f07dd242b8e781f73982735f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 6 Apr 2021 19:55:56 +0100 Subject: [PATCH 450/683] Legacy: Move 'rpms' into the 'experimental' dir --- .gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitignore b/.gitignore index 07b6b263b..a20dc2122 100644 --- a/.gitignore +++ b/.gitignore @@ -15,9 +15,6 @@ configure grib_api.spec grib_api.pc grib_api_f90.pc -rpms/eccodes.pc -rpms/eccodes.spec -rpms/eccodes_f90.pc # compiled source # ################### From 831d4fadc02448fb67fd794d338c1ea3ff72a0e4 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 8 Apr 2021 15:25:45 +0100 Subject: [PATCH 451/683] ECC-1230: Conversion of param=tp to edition=2 loses ensemble number --- definitions/grib1/section.1.def | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/definitions/grib1/section.1.def b/definitions/grib1/section.1.def index 1ed21d91e..e1ad6471d 100644 --- a/definitions/grib1/section.1.def +++ b/definitions/grib1/section.1.def @@ -319,7 +319,12 @@ alias time.stepType=stepType; # ECC-457: GRIB1 to GRIB2 conversion concept_nofail stepTypeForConversion (unknown, "stepTypeForConversion.def", conceptsDir2, conceptsDir1); if (stepTypeForConversion is "accum" ) { - alias productDefinitionTemplateNumber=eight; + if (productDefinitionTemplateNumber == 1) { + alias productDefinitionTemplateNumber=eleven; + } + else { + alias productDefinitionTemplateNumber=eight; + } } meta md5Section1 md5(offsetSection1,section1Length); From e7dc9e6e4371c54c767de8e21bc8834b8f4beed9 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 8 Apr 2021 16:40:35 +0100 Subject: [PATCH 452/683] ECC-1230: Add test --- tests/CMakeLists.txt | 1 + tests/grib_ecc-1230.sh | 48 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100755 tests/grib_ecc-1230.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index e442182c1..8fa904776 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -82,6 +82,7 @@ if( HAVE_BUILD_TOOLS ) grib_ecc-1170 grib_ecc-1195 grib_ecc-1212 + grib_ecc-1230 bufr_ecc-1195 bufr_json_samples bufr_ecc-359 diff --git a/tests/grib_ecc-1230.sh b/tests/grib_ecc-1230.sh new file mode 100755 index 000000000..a9e5265e4 --- /dev/null +++ b/tests/grib_ecc-1230.sh @@ -0,0 +1,48 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +REDIRECT=/dev/null +label="prod_ECC-1230-test" +temp1=temp1.$label +temp2=temp2.$label +sample_grib1=$ECCODES_SAMPLES_PATH/GRIB1.tmpl + +# paramId 228 is "Total precipitation" (=tp) +# ------------------------------------------ +${tools_dir}/grib_set -s \ +type=pf,localDefinitionNumber=30,stream=enfo,\ +perturbationNumber=10,numberOfForecastsInEnsemble=51,indicatorOfParameter=228 \ +$sample_grib1 $temp1 +grib_check_key_equals $temp1 "stepTypeForConversion" "accum" +grib_check_key_equals $temp1 "paramId,shortName,productDefinitionTemplateNumber" "228 tp 11" + +# Convert +${tools_dir}/grib_set -s edition=2 $temp1 $temp2 +grib_check_key_equals $temp2 "productDefinitionTemplateNumber" "11" +grib_check_key_equals $temp2 "numberOfForecastsInEnsemble,perturbationNumber" "51 10" + + +# Now check 2m temperature (not accumulated) +# ------------------------------------------ +${tools_dir}/grib_set -s \ +type=pf,localDefinitionNumber=30,stream=enfo,\ +perturbationNumber=10,numberOfForecastsInEnsemble=51,shortName=2t \ +$sample_grib1 $temp1 +grib_check_key_equals $temp1 "productDefinitionTemplateNumber" "1" +# Convert +${tools_dir}/grib_set -s edition=2 $temp1 $temp2 +grib_check_key_equals $temp2 "productDefinitionTemplateNumber" "1" +grib_check_key_equals $temp2 "numberOfForecastsInEnsemble,perturbationNumber" "51 10" + + +# Clean up +rm -f $temp1 $temp2 From 539932f03d3aae652ad7a5debc62291f92595810 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 9 Apr 2021 13:06:32 +0100 Subject: [PATCH 453/683] Examples: Fix memory leaks and clean up comments --- examples/F90/bufr_read_tempf.f90 | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/examples/F90/bufr_read_tempf.f90 b/examples/F90/bufr_read_tempf.f90 index 66abf7526..4851bd4ce 100644 --- a/examples/F90/bufr_read_tempf.f90 +++ b/examples/F90/bufr_read_tempf.f90 @@ -17,7 +17,7 @@ ! below might not work directly for other types of TEMP messages than the one used in the ! example. It is advised to use bufr_dump first to understand the structure of these messages. ! -program bufr_read_temp +program bufr_read_tempf use eccodes implicit none integer :: ifile @@ -44,11 +44,11 @@ program bufr_read_temp call codes_open_file(ifile, '../../data/bufr/PraticaTemp.bufr', 'r') - ! the first bufr message is loaded from file - ! ibufr is the bufr id to be used in subsequent calls + ! the first BUFR message is loaded from file + ! ibufr is the BUFR id to be used in subsequent calls call codes_bufr_new_from_file(ifile, ibufr, iret) - ! do while (iret/=CODES_END_OF_FILE) + ! loop through all messages in the file do while (iret /= CODES_END_OF_FILE .AND. status_time == CODES_SUCCESS) ! we need to instruct ecCodes to expand all the descriptors @@ -57,7 +57,6 @@ program bufr_read_temp ! In our BUFR message verticalSoundingSignificance is always followed by ! geopotential, airTemperature, dewpointTemperature, ! windDirection, windSpeed and pressure. - ! count = count + 1 llskip = .False. @@ -157,21 +156,21 @@ program bufr_read_temp wdirVal(i), wspVal(i), INT(vssVal(i)), Note end do - ! free arrays + ! free allocated arrays deallocate (dlatVal, dlonVal, vssVal) deallocate (presVal, zVal, tVal, tdVal, wdirVal, wspVal) + deallocate (lat, lon) END IF IF (ALLOCATED(timeVal)) deallocate (timeVal) - ! release the bufr message + ! release the BUFR message call codes_release(ibufr) - ! load the next bufr message + ! load the next BUFR message call codes_bufr_new_from_file(ifile, ibufr, iret) end do - ! close file call codes_close_file(ifile) -end program bufr_read_temp +end program bufr_read_tempf From af98a69aa16e7b0cbfc7588749bb9de40e743b48 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 10 Apr 2021 13:11:00 +0100 Subject: [PATCH 454/683] Examples: BUFR radiosonde updated code (From Bruce Ingleby) --- examples/F90/bufr_read_tempf.f90 | 61 +++++++++++++++++++------------- 1 file changed, 37 insertions(+), 24 deletions(-) diff --git a/examples/F90/bufr_read_tempf.f90 b/examples/F90/bufr_read_tempf.f90 index 4851bd4ce..601c365db 100644 --- a/examples/F90/bufr_read_tempf.f90 +++ b/examples/F90/bufr_read_tempf.f90 @@ -7,9 +7,9 @@ ! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. ! ! -! Description: How to read radiosonde data from TEMP BUFR messages. -! This version also lists the position information from the WMO list -! (now OSCAR/Surface) - ECMWF version +! Description: read and print radiosonde data from TEMP BUFR messages. +! If available this version also lists the position information from the WMO list +! (now OSCAR/Surface) appended to the reports by ECMWF ! ! Author: Bruce Ingleby ! @@ -34,6 +34,7 @@ program bufr_read_tempf logical :: llskip real(kind=8) :: year, month, day, hour, minute, second real(kind=8) :: htg, htp, htec = 0, sondeType + ! real(kind=8), dimension(:), allocatable :: descriptors real(kind=8), dimension(:), allocatable :: lat, lon real(kind=8), dimension(:), allocatable :: timeVal, dlatVal, dlonVal, vssVal real(kind=8), dimension(:), allocatable :: presVal, zVal, tVal, tdVal, wdirVal, wspVal @@ -51,9 +52,14 @@ program bufr_read_tempf ! loop through all messages in the file do while (iret /= CODES_END_OF_FILE .AND. status_time == CODES_SUCCESS) + ! Can check the template used + ! call codes_get(ibufr,'unexpandedDescriptors',descriptors) + ! write(0,*) 'Template: ', descriptors + ! IF (descriptors(1) /= 309056.0) GOTO 999 ! only list descent profiles + ! we need to instruct ecCodes to expand all the descriptors ! i.e. unpack the data values - call codes_set(ibufr, "unpack", 1); + call codes_set(ibufr, "unpack", 1); ! In our BUFR message verticalSoundingSignificance is always followed by ! geopotential, airTemperature, dewpointTemperature, ! windDirection, windSpeed and pressure. @@ -68,6 +74,8 @@ program bufr_read_tempf IF (statid_missing == 1) statid = "MISSING" call codes_get(ibufr, 'blockNumber', blockNumber) call codes_get(ibufr, 'stationNumber', stationNumber) + IF (blockNumber <= 99.0 .AND. stationNumber <= 1000) write(statid,'(I2.2,I3.3,3X)') blockNumber,stationNumber + call codes_get(ibufr, 'year', year) call codes_get(ibufr, 'month', month) call codes_get(ibufr, 'day', day) @@ -92,22 +100,22 @@ program bufr_read_tempf ! Ascent (skip incomplete reports for now) call codes_get(ibufr, 'timePeriod', timeVal, status_time) IF (status_time /= CODES_SUCCESS) THEN - write (*, '(A,I7,A,I2.2,A,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ', count, & - ' ', blockNumber, ' ', stationNumber, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType) + write (*, '(A,I7,A,A8,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ', count, & + ' ', statid, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType) write (*, '(A)') 'Missing times - skip' llskip = .True. END IF call codes_get(ibufr, 'pressure', presVal, status_p) IF (status_p /= CODES_SUCCESS) THEN - write (*, '(A,I7,A,I2.2,A,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ', count, & - ' ', blockNumber, ' ', stationNumber, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType) + write (*, '(A,I7,A,A8,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ', count, & + ' ', statid, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType) write (*, '(A)') 'Missing pressures - skip' llskip = .True. END IF call codes_get(ibufr, 'nonCoordinateGeopotentialHeight', zVal, status_ht) IF (status_ht /= CODES_SUCCESS) THEN - write (*, '(A,I7,A,I2.2,A,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ', count, & - ' ', blockNumber, ' ', stationNumber, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType) + write (*, '(A,I7,A,A8,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ', count, & + ' ', statid, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType) write (*, '(A)') 'Missing heights - skip' llskip = .True. END IF @@ -118,7 +126,6 @@ program bufr_read_tempf call codes_get(ibufr, 'latitudeDisplacement', dlatVal) call codes_get(ibufr, 'longitudeDisplacement', dlonVal) call codes_get(ibufr, 'extendedVerticalSoundingSignificance', vssVal) - !call codes_get(ibufr,'geopotentialHeight',zVal) call codes_get(ibufr, 'airTemperature', tVal) call codes_get(ibufr, 'dewpointTemperature', tdVal) call codes_get(ibufr, 'windDirection', wdirVal) @@ -128,11 +135,10 @@ program bufr_read_tempf sizews = size(wspVal) ! ---- Print the values -------------------------------- - write (*, '(A,A72)') 'Statid: ', statid - write (*, '(A,I7,A,I2.2,A,I3.3,I9,I7.6,F9.3,F10.3,2F7.1,I4,I5)') 'Ob: ', count, & - ' ', blockNumber, ' ', stationNumber, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType), sizews - IF (status_ht == CODES_SUCCESS) write (*, '(A,F9.3,F10.3,F7.1)') & - 'WMO list lat, lon, ht: ', lat(1), lon(1), htec + write (*, '(A,I7,A,A8,I9,I7.6,F9.3,F10.3,2F7.1,I4,I5)') 'Ob: ', count, & + ' ', statid, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType), sizews + IF (status_ht == CODES_SUCCESS .AND. SIZE(lat)>1) write (*, '(A,F9.3,F10.3,F7.1)') & + 'WMO list lat, lon, ht: ', lat(2), lon(2), htec IF (status_rsno == CODES_SUCCESS) write (*, '(A,A,A)') & 'Radiosonde number/software: ', rsnumber, rssoftware write (*, '(A)') 'level dtime dlat dlon pressure geopotH airTemp dewPtT windDir windSp signif' @@ -140,14 +146,12 @@ program bufr_read_tempf Note = ' ' iflag = vssVal(i) IF (i > 1) THEN - IF (presVal(i) > presVal(i - 1) .OR. zVal(i) < zVal(i - 1) & - .OR. timeVal(i) < timeVal(i - 1)) Note = ' OOO ' IF ((timeVal(i) - timeVal(i - 1)) > 120) Note = ' tjump ' IF (ABS(dlatVal(i) - dlatVal(i - 1)) > 0.1 .OR. & ABS(dlonVal(i) - dlonVal(i - 1)) > 0.1) THEN - Note = ' pjump ' + Note = ' lljump ' IF (dlatVal(i) == CODES_MISSING_DOUBLE .OR. & - dlatVal(i - 1) == CODES_MISSING_DOUBLE) Note = ' pmiss ' + dlatVal(i - 1) == CODES_MISSING_DOUBLE) Note = ' llmiss ' END IF END IF IF (.NOT. llstdonly .OR. BTEST(iflag, 16)) & @@ -156,13 +160,22 @@ program bufr_read_tempf wdirVal(i), wspVal(i), INT(vssVal(i)), Note end do - ! free allocated arrays - deallocate (dlatVal, dlonVal, vssVal) - deallocate (presVal, zVal, tVal, tdVal, wdirVal, wspVal) - deallocate (lat, lon) END IF + ! free allocated arrays IF (ALLOCATED(timeVal)) deallocate (timeVal) + IF (ALLOCATED(dlatVal)) deallocate(dlatVal) + IF (ALLOCATED(dlonVal)) deallocate(dlonVal) + IF (ALLOCATED(vssVal)) deallocate(vssVal) + IF (ALLOCATED(presVal)) deallocate(presVal) + IF (ALLOCATED(zVal)) deallocate(zVal) + IF (ALLOCATED(tVal)) deallocate(tVal) + IF (ALLOCATED(tdVal)) deallocate(tdVal) + IF (ALLOCATED(wdirVal)) deallocate(wdirVal) + IF (ALLOCATED(wspVal)) deallocate(wspVal) + IF (ALLOCATED(lat)) deallocate(lat) + IF (ALLOCATED(lon)) deallocate(lon) + ! 999 CONTINUE ! release the BUFR message call codes_release(ibufr) From 418157db495abfcec57d370f2bb1012e1ddf3edb Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 11 Apr 2021 17:07:02 +0100 Subject: [PATCH 455/683] ECC-1231: Python bindings: Remove the experimental high-level interface --- examples/python/CMakeLists.txt | 4 +- examples/python/high_level_api_grib.py | 4 +- python/eccodes/__init__.py | 5 - python/eccodes/high_level/__init__.py | 0 python/eccodes/high_level/bufr.py | 97 ----------- python/eccodes/high_level/codesfile.py | 71 --------- python/eccodes/high_level/codesmessage.py | 186 ---------------------- python/eccodes/high_level/gribfile.py | 17 -- python/eccodes/high_level/gribindex.py | 102 ------------ python/eccodes/high_level/gribmessage.py | 80 ---------- python/setup.py.in | 2 +- 11 files changed, 3 insertions(+), 565 deletions(-) delete mode 100644 python/eccodes/high_level/__init__.py delete mode 100644 python/eccodes/high_level/bufr.py delete mode 100644 python/eccodes/high_level/codesfile.py delete mode 100644 python/eccodes/high_level/codesmessage.py delete mode 100644 python/eccodes/high_level/gribfile.py delete mode 100644 python/eccodes/high_level/gribindex.py delete mode 100644 python/eccodes/high_level/gribmessage.py diff --git a/examples/python/CMakeLists.txt b/examples/python/CMakeLists.txt index 1b446e231..473227563 100644 --- a/examples/python/CMakeLists.txt +++ b/examples/python/CMakeLists.txt @@ -102,11 +102,9 @@ else() ) endif() -# The high level python test requires new features in the unittest +# Some tests require new features # which are only there for python 2.7 onwards if( HAVE_PYTHON2 AND PYTHON_VERSION_STRING VERSION_GREATER "2.7" ) - #ecbuild_info("Python examples: Adding test for High-level Pythonic Interface") - list( APPEND tests_extra high_level_api ) list( APPEND tests_extra grib_set_keys ) # Uses OrderedDict endif() diff --git a/examples/python/high_level_api_grib.py b/examples/python/high_level_api_grib.py index 0b5d3ebc5..14e8032c7 100644 --- a/examples/python/high_level_api_grib.py +++ b/examples/python/high_level_api_grib.py @@ -1,9 +1,7 @@ #!/bin/env python """ -Unit tests for high level Python interface for GRIB. - -Author: Daniel Lee, DWD, 2016 +This is now deprecated. Use cfgrib instead """ import os diff --git a/python/eccodes/__init__.py b/python/eccodes/__init__.py index 42006b9f0..40cda4ef4 100644 --- a/python/eccodes/__init__.py +++ b/python/eccodes/__init__.py @@ -4,8 +4,3 @@ import sys from .eccodes import * from .eccodes import __version__ -if sys.version_info >= (2, 6): - from .high_level.gribfile import GribFile - from .high_level.gribmessage import GribMessage - from .high_level.gribindex import GribIndex - from .high_level.bufr import BufrFile, BufrMessage diff --git a/python/eccodes/high_level/__init__.py b/python/eccodes/high_level/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/python/eccodes/high_level/bufr.py b/python/eccodes/high_level/bufr.py deleted file mode 100644 index e333391a9..000000000 --- a/python/eccodes/high_level/bufr.py +++ /dev/null @@ -1,97 +0,0 @@ -""" -Classes for handling BUFR with a high level interface. - -``BufrFiles`` can be treated mostly as regular files and used as context -managers, as can ``BufrMessages``. Each of these classes destructs itself and -any child instances appropriately. - -Author: Daniel Lee, DWD, 2016 -""" - -from .. import eccodes -from .codesmessage import CodesMessage -from .codesfile import CodesFile - - -class BufrMessage(CodesMessage): - - __doc__ = "\n".join(CodesMessage.__doc__.splitlines()[4:]).format( - prod_type="BUFR", classname="BufrMessage", parent="BufrFile", - alias="bufr") - - product_kind = eccodes.CODES_PRODUCT_BUFR - - # Arguments included explicitly to support introspection - # TODO: Can we get this to work with an index? - def __init__(self, codes_file=None, clone=None, sample=None, - headers_only=False): - """ - Open a message and inform the GRIB file that it's been incremented. - - The message is taken from ``codes_file``, cloned from ``clone`` or - ``sample``, or taken from ``index``, in that order of precedence. - """ - super(self.__class__, self).__init__(codes_file, clone, sample, - headers_only) - #self._unpacked = False - - #def get(self, key, ktype=None): - # """Return requested value, unpacking data values if necessary.""" - # # TODO: Only do this if accessing arrays that need unpacking - # if not self._unpacked: - # self.unpacked = True - # return super(self.__class__, self).get(key, ktype) - - #def missing(self, key): - # """ - # Report if key is missing.# - # - # Overloaded due to confusing behaviour in ``codes_is_missing`` (SUP-1874). - # """ - # return not bool(eccodes.codes_is_defined(self.codes_id, key)) - - def unpack(self): - """Decode data section""" - eccodes.codes_set(self.codes_id, 'unpack', 1) - - def pack(self): - """Encode data section""" - eccodes.codes_set(self.codes_id, 'pack', 1) - - def keys(self, namespace=None): - #self.unpack() - #return super(self.__class__, self).keys(namespace) - iterator = eccodes.codes_bufr_keys_iterator_new(self.codes_id) - keys = [] - while eccodes.codes_bufr_keys_iterator_next(iterator): - key = eccodes.codes_bufr_keys_iterator_get_name(iterator) - keys.append(key) - eccodes.codes_bufr_keys_iterator_delete(iterator) - return keys - - #@property - #def unpacked(self): - # return self._unpacked - - #@unpacked.setter - #def unpacked(self, val): - # eccodes.codes_set(self.codes_id, "unpack", val) - # self._unpacked = val - - #def __setitem__(self, key, value): - # """Set item and pack BUFR.""" - # if not self._unpacked: - # self.unpacked = True - # super(self.__class__, self).__setitem__(key, value) - # eccodes.codes_set(self.codes_id, "pack", True) - - def copy_data(self, destMsg): - """Copy data values from this message to another message""" - return eccodes.codes_bufr_copy_data(self.codes_id, destMsg.codes_id) - -class BufrFile(CodesFile): - - __doc__ = "\n".join(CodesFile.__doc__.splitlines()[4:]).format( - prod_type="BUFR", classname="BufrFile", alias="bufr") - - MessageClass = BufrMessage diff --git a/python/eccodes/high_level/codesfile.py b/python/eccodes/high_level/codesfile.py deleted file mode 100644 index b80f8127f..000000000 --- a/python/eccodes/high_level/codesfile.py +++ /dev/null @@ -1,71 +0,0 @@ -""" -``CodesFile`` class that implements a file that is readable by ecCodes and -closes itself and its messages when it is no longer needed. - -Author: Daniel Lee, DWD, 2016 -""" - -from .. import eccodes - - -class CodesFile(file): - - """ - An abstract class to specify and/or implement common behaviour that files - read by ecCodes should implement. - - A {prod_type} file handle meant for use in a context manager. - - Individual messages can be accessed using the ``next`` method. Of course, - it is also possible to iterate over each message in the file:: - - >>> with {classname}(filename) as {alias}: - ... # Print number of messages in file - ... len({alias}) - ... # Open all messages in file - ... for msg in {alias}: - ... print(msg[key_name]) - ... len({alias}.open_messages) - >>> # When the file is closed, any open messages are closed - >>> len({alias}.open_messages) - """ - - #: Type of messages belonging to this file - MessageClass = None - - def __init__(self, filename, mode="r"): - """Open file and receive codes file handle.""" - #: File handle for working with actual file on disc - #: The class holds the file it works with because ecCodes' - # typechecking does not allow using inherited classes. - self.file_handle = open(filename, mode) - #: Number of message in file currently being read - self.message = 0 - #: Open messages - self.open_messages = [] - - def __exit__(self, exception_type, exception_value, traceback): - """Close all open messages, release file handle and close file.""" - while self.open_messages: - self.open_messages.pop().close() - self.file_handle.close() - - def __len__(self): - """Return total number of messages in file.""" - return eccodes.codes_count_in_file(self.file_handle) - - def __enter__(self): - return self - - def close(self): - """Possibility to manually close file.""" - self.__exit__(None, None, None) - - def __iter__(self): - return self - - def next(self): - try: - return self.MessageClass(self) - except IOError: - raise StopIteration() diff --git a/python/eccodes/high_level/codesmessage.py b/python/eccodes/high_level/codesmessage.py deleted file mode 100644 index 234c1448e..000000000 --- a/python/eccodes/high_level/codesmessage.py +++ /dev/null @@ -1,186 +0,0 @@ -""" -``CodesMessage`` class that implements a message readable by ecCodes that -allows access to the message's key-value pairs in a dictionary-like manner -and closes the message when it is no longer needed, coordinating this with -its host file. - -Author: Daniel Lee, DWD, 2016 -""" - -from .. import eccodes - - -class CodesMessage(object): - - """ - An abstract class to specify and/or implement common behaviour that - messages read by ecCodes should implement. - - A {prod_type} message. - - Each ``{classname}`` is stored as a key/value pair in a dictionary-like - structure. It can be used in a context manager or by itself. When the - ``{parent}`` it belongs to is closed, the ``{parent}`` closes any open - ``{classname}``s that belong to it. If a ``{classname}`` is closed before - its ``{parent}`` is closed, it informs the ``{parent}`` of its closure. - - Scalar and vector values are set appropriately through the same method. - - ``{classname}``s can be instantiated from a ``{parent}``, cloned from - other ``{classname}``s or taken from samples. Iterating over the members - of a ``{parent}`` extracts the ``{classname}``s it contains until the - ``{parent}`` is exhausted. - - Usage:: - - >>> with {parent}(filename) as {alias}: - ... # Access a key from each message - ... for msg in {alias}: - ... print(msg[key_name]) - ... # Report number of keys in message - ... len(msg) - ... # Report message size in bytes - ... msg.size - ... # Report keys in message - ... msg.keys() - ... # Set scalar value - ... msg[scalar_key] = 5 - ... # Check key's value - ... msg[scalar_key] - ... msg[key_name] - ... # Array values are set transparently - ... msg[array_key] = [1, 2, 3] - ... # Messages can be written to file - ... with open(testfile, "w") as test: - ... msg.write(test) - ... # Messages can be cloned from other messages - ... msg2 = {classname}(clone=msg) - ... # If desired, messages can be closed manually or used in with - ... msg.close() - """ - - #: ecCodes enum-like PRODUCT constant - product_kind = None - - def __init__(self, codes_file=None, clone=None, sample=None, - headers_only=False, other_args_found=False): - """ - Open a message and inform the host file that it's been incremented. - - If ``codes_file`` is not supplied, the message is cloned from - ``CodesMessage`` ``clone``. If neither is supplied, - the ``CodesMessage`` is cloned from ``sample``. - - :param codes_file: A file readable for ecCodes - :param clone: A valid ``CodesMessage`` - :param sample: A valid sample path to create ``CodesMessage`` from - """ - if not other_args_found and codes_file is None and clone is None and sample is None: - raise RuntimeError("CodesMessage initialization parameters not " - "present.") - #: Unique ID, for ecCodes interface - self.codes_id = None - #: File containing message - self.codes_file = None - if codes_file is not None: - self.codes_id = eccodes.codes_new_from_file( - codes_file.file_handle, self.product_kind, headers_only) - if self.codes_id is None: - raise IOError("CodesFile %s is exhausted" % codes_file.name) - self.codes_file = codes_file - self.codes_file.message += 1 - self.codes_file.open_messages.append(self) - elif clone is not None: - self.codes_id = eccodes.codes_clone(clone.codes_id) - elif sample is not None: - self.codes_id = eccodes.codes_new_from_samples( - sample, self.product_kind) - - def write(self, outfile=None): - """Write message to file.""" - if not outfile: - # This is a hack because the API does not accept inheritance - outfile = self.codes_file.file_handle - eccodes.codes_write(self.codes_id, outfile) - - def __setitem__(self, key, value): - """ - Set value associated with key. - - Iterables and scalars are handled intelligently. - """ - # Passed key is iterable. Value has to be iterable too - if hasattr(key, "__iter__"): - if type(key) != type(value): - raise TypeError('Key must have same type as value') - if len(key) != len(value): - raise ValueError('Key array must have same size as value array') - eccodes.codes_set_key_vals(self.codes_id,",".join([str(key[i])+"="+str(value[i]) for i in range(len(key))])) - elif hasattr(value, "__iter__"): - # Passed value is iterable and not string - eccodes.codes_set_array(self.codes_id, key, value) - else: - eccodes.codes_set(self.codes_id, key, value) - - def keys(self, namespace=None): - """Get available keys in message.""" - iterator = eccodes.codes_keys_iterator_new(self.codes_id, - namespace=namespace) - keys = [] - while eccodes.codes_keys_iterator_next(iterator): - key = eccodes.codes_keys_iterator_get_name(iterator) - keys.append(key) - eccodes.codes_keys_iterator_delete(iterator) - return keys - - def size(self): - """Return size of message in bytes.""" - return eccodes.codes_get_message_size(self.codes_id) - - def dump(self): - """Dump message's binary content.""" - return eccodes.codes_get_message(self.codes_id) - - def get(self, key, ktype=None): - """Get value of a given key as its native or specified type.""" - # if self.missing(key): - # raise KeyError("Value of key %s is MISSING." % key) - if eccodes.codes_get_size(self.codes_id, key) > 1: - ret = eccodes.codes_get_array(self.codes_id, key, ktype) - else: - ret = eccodes.codes_get(self.codes_id, key, ktype) - return ret - - def __exit__(self, exc_type, exc_val, exc_tb): - """Release message handle and inform host file of release.""" - eccodes.codes_release(self.codes_id) - - def __enter__(self): - return self - - def close(self): - """Possibility to manually close message.""" - self.__exit__(None, None, None) - - def __contains__(self, key): - """Check whether a key is present in message.""" - return key in self.keys() - - def __len__(self): - """Return key count.""" - return len(self.keys()) - - def __getitem__(self, key): - """Return value associated with key as its native type.""" - return self.get(key) - - def __iter__(self): - return iter(self.keys()) - - # Not yet implemented - # def itervalues(self): - # return self.values() - - def items(self): - """Return list of tuples of all key/value pairs.""" - return [(key, self[key]) for key in self.keys()] diff --git a/python/eccodes/high_level/gribfile.py b/python/eccodes/high_level/gribfile.py deleted file mode 100644 index 6e074fe09..000000000 --- a/python/eccodes/high_level/gribfile.py +++ /dev/null @@ -1,17 +0,0 @@ -""" -``GribFile`` class that implements a GRIB file that closes itself and its -messages when it is no longer needed. - -Author: Daniel Lee, DWD, 2014 -""" - -from .codesfile import CodesFile -from .gribmessage import GribMessage - - -class GribFile(CodesFile): - - __doc__ = "\n".join(CodesFile.__doc__.splitlines()[4:]).format( - prod_type="GRIB", classname="GribFile", alias="grib") - - MessageClass = GribMessage diff --git a/python/eccodes/high_level/gribindex.py b/python/eccodes/high_level/gribindex.py deleted file mode 100644 index 934dd03a4..000000000 --- a/python/eccodes/high_level/gribindex.py +++ /dev/null @@ -1,102 +0,0 @@ -""" -``GribIndex`` class that implements a GRIB index that allows access to -ecCodes's index functionality. - -Author: Daniel Lee, DWD, 2014 -""" - -from .. import eccodes -from .gribmessage import GribMessage - - -class GribIndex(object): - """ - A GRIB index meant for use in a context manager. - - Usage:: - - >>> # Create index from file with keys - >>> with GribIndex(filename, keys) as idx: - ... # Write index to file - ... idx.write(index_file) - >>> # Read index from file - >>> with GribIndex(file_index=index_file) as idx: - ... # Add new file to index - ... idx.add(other_filename) - ... # Report number of unique values for given key - ... idx.size(key) - ... # Report unique values indexed by key - ... idx.values(key) - ... # Request GribMessage matching key, value - ... msg = idx.select({key: value}) - """ - - def __enter__(self): - return self - - def __exit__(self, exception_type, exception_value, traceback): - """Release GRIB message handle and inform file of release.""" - while self.open_messages: - self.open_messages[0].close() - eccodes.codes_index_release(self.iid) - - def close(self): - """Possibility to manually close index.""" - self.__exit__(None, None, None) - - def __init__(self, filename=None, keys=None, file_index=None, - grib_index=None): - """ - Create new GRIB index over ``keys`` from ``filename``. - - ``filename`` should be a string of the desired file's filename. - ``keys`` should be a sequence of keys to index. ``file_index`` should - be a string of the file that the index should be loaded from. - ``grib_index`` should be another ``GribIndex``. - - If ``filename`` and ``keys`` are provided, the ``GribIndex`` is - initialized over the given keys from the given file. If they are not - provided, the ``GribIndex`` is read from ``indexfile``. If - ``grib_index`` is provided, it is cloned from the given ``GribIndex``. - """ - #: Grib index ID - self.iid = None - if filename and keys: - self.iid = eccodes.codes_index_new_from_file(filename, keys) - elif file_index: - self.iid = eccodes.codes_index_read(file_index) - elif grib_index: - self.iid = eccodes.codes_new_from_index(grib_index.iid) - else: - raise RuntimeError("No source was supplied " - "(possibilities: grib_file, clone, sample).") - #: Indexed keys. Only available if GRIB is initialized from file. - self.keys = keys - #: Open GRIB messages - self.open_messages = [] - - def size(self, key): - """Return number of distinct values for index key.""" - return eccodes.codes_index_get_size(self.iid, key) - - def values(self, key, ktype=str): - """Return distinct values of index key.""" - return eccodes.codes_index_get(self.iid, key, ktype) - - def add(self, filename): - """Add ``filename`` to the ``GribIndex``.""" - eccodes.codes_index_add_file(self.iid, filename) - - def write(self, outfile): - """Write index to filename at ``outfile``.""" - eccodes.codes_index_write(self.iid, outfile) - - def select(self, key_value_pairs): - """ - Return message associated with given key value pairs. - - ``key_value_pairs`` should be passed as a dictionary. - """ - for key in key_value_pairs: - eccodes.codes_index_select(self.iid, key, key_value_pairs[key]) - return GribMessage(gribindex=self) diff --git a/python/eccodes/high_level/gribmessage.py b/python/eccodes/high_level/gribmessage.py deleted file mode 100644 index c87cfedd9..000000000 --- a/python/eccodes/high_level/gribmessage.py +++ /dev/null @@ -1,80 +0,0 @@ -""" -``GribMessage`` class that implements a GRIB message that allows access to -the message's key-value pairs in a dictionary-like manner and closes the -message when it is no longer needed, coordinating this with its host file. - -Author: Daniel Lee, DWD, 2014 -""" - -from .codesmessage import CodesMessage -from .. import eccodes - - -class IndexNotSelectedError(Exception): - """GRIB index was requested before selecting key/value pairs.""" - - -class GribMessage(CodesMessage): - - __doc__ = "\n".join(CodesMessage.__doc__.splitlines()[4:]).format( - prod_type="GRIB", classname="GribMessage", parent="GribFile", - alias="grib") - - product_kind = eccodes.CODES_PRODUCT_GRIB - - # Arguments included explicitly to support introspection - def __init__(self, codes_file=None, clone=None, sample=None, - headers_only=False, gribindex=None): - """ - Open a message and inform the GRIB file that it's been incremented. - - The message is taken from ``codes_file``, cloned from ``clone`` or - ``sample``, or taken from ``index``, in that order of precedence. - """ - grib_args_present = True - if gribindex is None: - grib_args_present = False - super(self.__class__, self).__init__(codes_file, clone, sample, - headers_only, grib_args_present) - #: GribIndex referencing message - self.grib_index = None - if gribindex is not None: - self.codes_id = eccodes.codes_new_from_index(gribindex.iid) - if not self.codes_id: - raise IndexNotSelectedError("All keys must have selected " - "values before receiving message " - "from index.") - self.grib_index = gribindex - gribindex.open_messages.append(self) - - def __exit__(self, exc_type, exc_val, exc_tb): - """Release GRIB message handle and inform file of release.""" - super(self.__class__, self).__exit__(exc_type, exc_val, exc_tb) - if self.grib_index: - self.grib_index.open_messages.remove(self) - - def missing(self, key): - """Report if the value of a key is MISSING.""" - return bool(eccodes.codes_is_missing(self.codes_id, key)) - - def set_missing(self, key): - """Set the value of key to MISSING.""" - eccodes.codes_set_missing(self.codes_id, key) - - @property - def gid(self): - """Provided for backwards compatibility.""" - return self.codes_id - - @property - def grib_file(self): - """Provided for backwards compatibility.""" - return self.codes_file - - @gid.setter - def gid(self, val): - self.codes_id = val - - @grib_file.setter - def grib_file(self, val): - self.codes_file = val diff --git a/python/setup.py.in b/python/setup.py.in index f6fee2fc6..d7f9b1f67 100644 --- a/python/setup.py.in +++ b/python/setup.py.in @@ -74,4 +74,4 @@ setup(name='eccodes', url='https://confluence.ecmwf.int/display/ECC/ecCodes+Home', download_url='https://confluence.ecmwf.int/display/ECC/Releases', ext_modules=[Extension('gribapi._gribapi_swig', **attdict)], - packages=['eccodes', 'eccodes.high_level', 'gribapi']) + packages=['eccodes', 'gribapi']) From 6c9bbf946f7bf793a6ffc90e278b2bae42f647ab Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 12 Apr 2021 14:44:15 +0100 Subject: [PATCH 456/683] ECC-1232: GRIB: Add units to orography fields --- definitions/grib1/2.98.171.table | 4 ++-- definitions/grib1/2.98.200.table | 2 +- definitions/grib1/localConcepts/ecmf/units.def | 6 +++--- definitions/grib2/localConcepts/ecmf/units.def | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/definitions/grib1/2.98.171.table b/definitions/grib1/2.98.171.table index 9baea3f48..a3753e5b7 100644 --- a/definitions/grib1/2.98.171.table +++ b/definitions/grib1/2.98.171.table @@ -90,8 +90,8 @@ 157 ra Relative humidity anomaly (%) 158 tspa Tendency of surface pressure anomaly (Pa s**-1) 159 blha Boundary layer height anomaly (m) -160 sdora Standard deviation of orography anomaly (~) -161 isora Anisotropy of sub-gridscale orography anomaly (~) +160 sdora Standard deviation of orography anomaly (m) +161 isora Anisotropy of sub-gridscale orography anomaly (m) 162 anora Angle of sub-gridscale orography anomaly (radians) 163 slora Slope of sub-gridscale orography anomaly (~) 164 tcca Total cloud cover anomaly ((0 - 1)) diff --git a/definitions/grib1/2.98.200.table b/definitions/grib1/2.98.200.table index 0ebd521a2..0f867735c 100644 --- a/definitions/grib1/2.98.200.table +++ b/definitions/grib1/2.98.200.table @@ -141,7 +141,7 @@ 158 tspdiff Tendency of surface pressure difference (Pa s**-1) 159 blhdiff Boundary layer height difference (m) 160 sdordiff Standard deviation of orography difference (~) -161 isordiff Anisotropy of sub-gridscale orography difference (~) +161 isordiff Anisotropy of sub-gridscale orography difference (m) 162 anordiff Angle of sub-gridscale orography difference (radians) 163 slordiff Slope of sub-gridscale orography difference (~) 164 tccdiff Total cloud cover difference ((0 - 1)) diff --git a/definitions/grib1/localConcepts/ecmf/units.def b/definitions/grib1/localConcepts/ecmf/units.def index 288b63890..6e52990b9 100644 --- a/definitions/grib1/localConcepts/ecmf/units.def +++ b/definitions/grib1/localConcepts/ecmf/units.def @@ -2805,7 +2805,7 @@ indicatorOfParameter = 160 ; } #Anisotropy of sub-gridscale orography difference -'~' = { +'m' = { table2Version = 200 ; indicatorOfParameter = 161 ; } @@ -14150,12 +14150,12 @@ indicatorOfParameter = 159 ; } #Standard deviation of orography anomaly -'~' = { +'m' = { table2Version = 171 ; indicatorOfParameter = 160 ; } #Anisotropy of sub-gridscale orography anomaly -'~' = { +'m' = { table2Version = 171 ; indicatorOfParameter = 161 ; } diff --git a/definitions/grib2/localConcepts/ecmf/units.def b/definitions/grib2/localConcepts/ecmf/units.def index 3dbfa6e5d..7b5a9834f 100644 --- a/definitions/grib2/localConcepts/ecmf/units.def +++ b/definitions/grib2/localConcepts/ecmf/units.def @@ -2028,7 +2028,7 @@ parameterNumber = 160 ; } #Anisotropy of sub-gridscale orography difference -'~' = { +'m' = { discipline = 192 ; parameterCategory = 200 ; parameterNumber = 161 ; @@ -18438,13 +18438,13 @@ parameterNumber = 159 ; } #Standard deviation of orography anomaly -'~' = { +'m' = { discipline = 192 ; parameterCategory = 171 ; parameterNumber = 160 ; } #Anisotropy of sub-gridscale orography anomaly -'~' = { +'m' = { discipline = 192 ; parameterCategory = 171 ; parameterNumber = 161 ; From 035d5635c49d5b586ea065df18f47649cdfefe66 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 13 Apr 2021 12:16:13 +0100 Subject: [PATCH 457/683] Unused function --- src/grib_api_prototypes.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/grib_api_prototypes.h b/src/grib_api_prototypes.h index 3237ebbff..9da6f7ec9 100644 --- a/src/grib_api_prototypes.h +++ b/src/grib_api_prototypes.h @@ -1194,7 +1194,6 @@ int codes_bufr_keys_iterator_delete(bufr_keys_iterator* kiter); /* grib_parse_utils.c */ int grib_recompose_name(grib_handle* h, grib_accessor* observer, const char* uname, char* fname, int fail); -int grib_accessor_print(grib_accessor* a, const char* name, int type, const char* format, const char* separator, int maxcols, int* newline, FILE* out); int grib_accessors_list_print(grib_handle* h, grib_accessors_list* al, const char* name, int type, const char* format, const char* separator, int maxcols, int* newline, FILE* out); int grib_recompose_print(grib_handle* h, grib_accessor* observer, const char* uname, int fail, FILE* out); grib_action_file* grib_find_action_file(const char* fname, grib_action_file_list* afl); From ded1337e562f6abb5c06f9c0b730d5ca2873defe Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 13 Apr 2021 12:17:01 +0100 Subject: [PATCH 458/683] ECC-1233: grib_filter: Allow printing of 'byte' keys like bitmap and section paddings --- src/grib_parse_utils.c | 46 ++++++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 22 deletions(-) diff --git a/src/grib_parse_utils.c b/src/grib_parse_utils.c index 802783d02..975f83892 100644 --- a/src/grib_parse_utils.c +++ b/src/grib_parse_utils.c @@ -173,6 +173,7 @@ int grib_recompose_name(grib_handle* h, grib_accessor* observer, const char* una return GRIB_SUCCESS; } +#if 0 int grib_accessor_print(grib_accessor* a, const char* name, int type, const char* format, const char* separator, int maxcols, int* newline, FILE* out) { @@ -296,12 +297,13 @@ int grib_accessor_print(grib_accessor* a, const char* name, int type, const char } return ret; } +#endif int grib_accessors_list_print(grib_handle* h, grib_accessors_list* al, const char* name, int type, const char* format, const char* separator, int maxcols, int* newline, FILE* out) { - size_t size = 0, len = 0, replen = 0; - char* sval = NULL; + size_t size = 0, len = 0, replen = 0, j = 0; + unsigned char* bval = NULL; char* p = NULL; double* dval = 0; long* lval = 0; @@ -336,14 +338,14 @@ int grib_accessors_list_print(grib_handle* h, grib_accessors_list* al, const cha } } else { - int i = 0; int cols = 0; + j = 0; cvals = (char**)grib_context_malloc_clear(h->context, sizeof(char*) * size); grib_accessors_list_unpack_string(al, cvals, &size); - for (i = 0; i < size; i++) { + for (j = 0; j < size; j++) { *newline = 1; - fprintf(out, "%s", cvals[i]); - if (i < size - 1) + fprintf(out, "%s", cvals[j]); + if (j < size - 1) fprintf(out, "%s", myseparator); cols++; if (cols >= maxcols) { @@ -351,7 +353,7 @@ int grib_accessors_list_print(grib_handle* h, grib_accessors_list* al, const cha *newline = 1; cols = 0; } - grib_context_free(h->context, cvals[i]); + grib_context_free(h->context, cvals[j]); } } grib_context_free(h->context, cvals); @@ -364,12 +366,12 @@ int grib_accessors_list_print(grib_handle* h, grib_accessors_list* al, const cha if (size == 1) fprintf(out, myformat, dval[0]); else { - int i = 0; int cols = 0; - for (i = 0; i < size; i++) { + j = 0; + for (j = 0; j < size; j++) { *newline = 1; - fprintf(out, myformat, dval[i]); - if (i < size - 1) + fprintf(out, myformat, dval[j]); + if (j < size - 1) fprintf(out, "%s", myseparator); cols++; if (cols >= maxcols) { @@ -389,12 +391,12 @@ int grib_accessors_list_print(grib_handle* h, grib_accessors_list* al, const cha if (size == 1) fprintf(out, myformat, lval[0]); else { - int i = 0; int cols = 0; - for (i = 0; i < size; i++) { + j = 0; + for (j = 0; j < size; j++) { *newline = 1; - fprintf(out, myformat, lval[i]); - if (i < size - 1) + fprintf(out, myformat, lval[j]); + if (j < size - 1) fprintf(out, "%s", myseparator); cols++; if (cols >= maxcols) { @@ -408,13 +410,13 @@ int grib_accessors_list_print(grib_handle* h, grib_accessors_list* al, const cha break; case GRIB_TYPE_BYTES: replen = a->length; - sval = (char*)grib_context_malloc(h->context, replen * sizeof(char)); - ret = grib_unpack_string(al->accessor, sval, &replen); - p = sval; - while ((replen--) > 0) - fprintf(out, "%c", *(p++)); - grib_context_free(h->context, sval); - *newline = 0; + bval = (unsigned char*)grib_context_malloc(h->context, replen * sizeof(unsigned char)); + ret = grib_unpack_bytes(al->accessor, bval, &replen); + for (j = 0; j < replen; j++) { + fprintf(out, "%02x", bval[j]); + } + grib_context_free(h->context, bval); + *newline = 1; break; default: grib_context_log(h->context, GRIB_LOG_WARNING, From d4e98b6ef56c66cf5d39c924b327d5e661ce117b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 13 Apr 2021 12:49:56 +0100 Subject: [PATCH 459/683] ECC-1233: Tests --- tests/grib_bitmap.sh | 33 ++++++++++++---- tests/grib_filter.sh | 94 +++++++++++++++++++++++--------------------- 2 files changed, 75 insertions(+), 52 deletions(-) diff --git a/tests/grib_bitmap.sh b/tests/grib_bitmap.sh index 1b504d573..64ab6254f 100755 --- a/tests/grib_bitmap.sh +++ b/tests/grib_bitmap.sh @@ -11,7 +11,7 @@ . ./include.sh REDIRECT=/dev/null - +set -u grib1=${data_dir}/regular_latlon_surface.grib1 grib2=${data_dir}/regular_latlon_surface.grib2 infile=${data_dir}/reduced_gaussian_model_level.grib1 @@ -75,21 +75,38 @@ rm -f $outfile1 $outfile1.dump $outfile $outfile.dump cat > $tempRules< $tempData1 ${tools_dir}/grib_get_data -m missing $temp2 > $tempData2 diff $tempData1 $tempData2 +rm -f $tempData1 $tempData2 + + +# ECC-1233: Allow printing of 'byte' keys e.g., bitmap, section paddings +# ----------------------------------------------------------------------- +cat > $tempRules< $tempData1 +cat $tempData1 +cat > $tempRef < $REDIRECT @@ -21,7 +20,7 @@ then fi cat >${data_dir}/f.rules <${data_dir}/nonexkey.rules < ${data_dir}/formatint.rules < ${data_dir}/formatint.rules < ${data_dir}/formatint.rules <temp.filt < ${data_dir}/binop.rules < val_lower) { - print "OK [referenceValue] > [val_lower]"; -} -else { - print "***ERROR: [referenceValue] <= [val_lower]"; - assert(0); -} -transient val_higher=209.99; -if (referenceValue < val_higher) { - print "OK [referenceValue] < [val_higher]"; -} -else { - print "***ERROR: [referenceValue] >= [val_higher]"; - assert(0); -} + } + transient val_lower=209; + if (referenceValue > val_lower) { + print "OK [referenceValue] > [val_lower]"; + } + else { + print "***ERROR: [referenceValue] <= [val_lower]"; + assert(0); + } + transient val_higher=209.99; + if (referenceValue < val_higher) { + print "OK [referenceValue] < [val_higher]"; + } + else { + print "***ERROR: [referenceValue] >= [val_higher]"; + assert(0); + } EOF ${tools_dir}/grib_filter ${data_dir}/binop.rules $ECCODES_SAMPLES_PATH/gg_sfc_grib1.tmpl >/dev/null @@ -122,13 +121,13 @@ ${tools_dir}/grib_filter ${data_dir}/binop.rules $ECCODES_SAMPLES_PATH/gg_sfc_g echo "Test GRIB-526: grib_filter very picky about format of floats" # ---------------------------------------------------------------- cat >temp.filt <temp.filt < Date: Tue, 13 Apr 2021 15:52:42 +0100 Subject: [PATCH 460/683] ECC-1232: Corrections --- definitions/grib1/localConcepts/ecmf/units.def | 8 ++++---- definitions/grib2/localConcepts/ecmf/units.def | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/definitions/grib1/localConcepts/ecmf/units.def b/definitions/grib1/localConcepts/ecmf/units.def index 6e52990b9..04b8d7981 100644 --- a/definitions/grib1/localConcepts/ecmf/units.def +++ b/definitions/grib1/localConcepts/ecmf/units.def @@ -1170,7 +1170,7 @@ indicatorOfParameter = 159 ; } #Standard deviation of orography -'~' = { +'m' = { table2Version = 128 ; indicatorOfParameter = 160 ; } @@ -2800,12 +2800,12 @@ indicatorOfParameter = 159 ; } #Standard deviation of orography difference -'~' = { +'m' = { table2Version = 200 ; indicatorOfParameter = 160 ; } #Anisotropy of sub-gridscale orography difference -'m' = { +'~' = { table2Version = 200 ; indicatorOfParameter = 161 ; } @@ -14155,7 +14155,7 @@ indicatorOfParameter = 160 ; } #Anisotropy of sub-gridscale orography anomaly -'m' = { +'~' = { table2Version = 171 ; indicatorOfParameter = 161 ; } diff --git a/definitions/grib2/localConcepts/ecmf/units.def b/definitions/grib2/localConcepts/ecmf/units.def index 7b5a9834f..75f882b14 100644 --- a/definitions/grib2/localConcepts/ecmf/units.def +++ b/definitions/grib2/localConcepts/ecmf/units.def @@ -765,7 +765,7 @@ parameterNumber = 159 ; } #Standard deviation of orography -'~' = { +'m' = { discipline = 192 ; parameterCategory = 128 ; parameterNumber = 160 ; @@ -2022,13 +2022,13 @@ parameterNumber = 159 ; } #Standard deviation of orography difference -'~' = { +'m' = { discipline = 192 ; parameterCategory = 200 ; parameterNumber = 160 ; } #Anisotropy of sub-gridscale orography difference -'m' = { +'~' = { discipline = 192 ; parameterCategory = 200 ; parameterNumber = 161 ; @@ -18444,7 +18444,7 @@ parameterNumber = 160 ; } #Anisotropy of sub-gridscale orography anomaly -'m' = { +'~' = { discipline = 192 ; parameterCategory = 171 ; parameterNumber = 161 ; From 17e18f06ebefcf056c1807605b10d6294c60172a Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 13 Apr 2021 16:36:48 +0100 Subject: [PATCH 461/683] ECC-1232: Corrections --- definitions/grib1/2.98.128.table | 2 +- definitions/grib1/2.98.200.table | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/definitions/grib1/2.98.128.table b/definitions/grib1/2.98.128.table index 6d4f221b9..c5dd9991a 100644 --- a/definitions/grib1/2.98.128.table +++ b/definitions/grib1/2.98.128.table @@ -157,7 +157,7 @@ 157 r Relative humidity (%) 158 tsp Tendency of surface pressure (Pa s**-1) 159 blh Boundary layer height (m) -160 sdor Standard deviation of orography (~) +160 sdor Standard deviation of orography (m) 161 isor Anisotropy of sub-gridscale orography (~) 162 anor Angle of sub-gridscale orography (radians) 163 slor Slope of sub-gridscale orography (~) diff --git a/definitions/grib1/2.98.200.table b/definitions/grib1/2.98.200.table index 0f867735c..60f353342 100644 --- a/definitions/grib1/2.98.200.table +++ b/definitions/grib1/2.98.200.table @@ -140,7 +140,7 @@ 157 rdiff Relative humidity difference (%) 158 tspdiff Tendency of surface pressure difference (Pa s**-1) 159 blhdiff Boundary layer height difference (m) -160 sdordiff Standard deviation of orography difference (~) +160 sdordiff Standard deviation of orography difference (m) 161 isordiff Anisotropy of sub-gridscale orography difference (m) 162 anordiff Angle of sub-gridscale orography difference (radians) 163 slordiff Slope of sub-gridscale orography difference (~) From f47a4a2c1cb40221d6dbef744024e6edc64cd915 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 14 Apr 2021 20:52:22 +0100 Subject: [PATCH 462/683] Examples: BUFR radiosonde updated code (From Bruce Ingleby) --- examples/F90/bufr_read_tempf.f90 | 28 ++++++++++------------------ 1 file changed, 10 insertions(+), 18 deletions(-) diff --git a/examples/F90/bufr_read_tempf.f90 b/examples/F90/bufr_read_tempf.f90 index 601c365db..f5337df22 100644 --- a/examples/F90/bufr_read_tempf.f90 +++ b/examples/F90/bufr_read_tempf.f90 @@ -26,14 +26,14 @@ program bufr_read_tempf integer :: i, count = 0 integer :: iflag integer :: status_id, status_ht, status_time = 0, status_p - integer :: status_rsno, status_rssoft, statid_missing + integer :: status_rsno, status_rssoft, status_balloonwt, statid_missing integer(kind=4) :: sizews integer(kind=4) :: blockNumber, stationNumber integer(kind=4) :: ymd, hms logical :: llstdonly = .True. ! Set True to list standard levels only logical :: llskip real(kind=8) :: year, month, day, hour, minute, second - real(kind=8) :: htg, htp, htec = 0, sondeType + real(kind=8) :: htg, htp, htec = 0, sondeType, balloonwt ! real(kind=8), dimension(:), allocatable :: descriptors real(kind=8), dimension(:), allocatable :: lat, lon real(kind=8), dimension(:), allocatable :: timeVal, dlatVal, dlonVal, vssVal @@ -96,6 +96,8 @@ program bufr_read_tempf hms = INT(hour)*10000 + INT(minute)*100 + INT(second) call codes_get(ibufr, 'radiosondeSerialNumber', rsnumber, status_rsno) call codes_get(ibufr, 'softwareVersionNumber', rssoftware, status_rssoft) + call codes_get(ibufr, 'weightOfBalloon', balloonwt, status_balloonwt) + IF (status_balloonwt /= CODES_SUCCESS) balloonwt = 0.0 ! Ascent (skip incomplete reports for now) call codes_get(ibufr, 'timePeriod', timeVal, status_time) @@ -137,32 +139,22 @@ program bufr_read_tempf ! ---- Print the values -------------------------------- write (*, '(A,I7,A,A8,I9,I7.6,F9.3,F10.3,2F7.1,I4,I5)') 'Ob: ', count, & ' ', statid, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType), sizews + IF (status_rsno == CODES_SUCCESS) write (*, '(A,A,A,F7.3)') & + 'RS number/software/balloonwt: ', rsnumber, rssoftware, balloonwt IF (status_ht == CODES_SUCCESS .AND. SIZE(lat)>1) write (*, '(A,F9.3,F10.3,F7.1)') & 'WMO list lat, lon, ht: ', lat(2), lon(2), htec - IF (status_rsno == CODES_SUCCESS) write (*, '(A,A,A)') & - 'Radiosonde number/software: ', rsnumber, rssoftware write (*, '(A)') 'level dtime dlat dlon pressure geopotH airTemp dewPtT windDir windSp signif' do i = 1, sizews - Note = ' ' iflag = vssVal(i) - IF (i > 1) THEN - IF ((timeVal(i) - timeVal(i - 1)) > 120) Note = ' tjump ' - IF (ABS(dlatVal(i) - dlatVal(i - 1)) > 0.1 .OR. & - ABS(dlonVal(i) - dlonVal(i - 1)) > 0.1) THEN - Note = ' lljump ' - IF (dlatVal(i) == CODES_MISSING_DOUBLE .OR. & - dlatVal(i - 1) == CODES_MISSING_DOUBLE) Note = ' llmiss ' - END IF - END IF IF (.NOT. llstdonly .OR. BTEST(iflag, 16)) & - write (*, '(I5,F7.1,2F7.3,F9.1,F8.1,4F8.2,I8,A)') i, timeVal(i), & - dlatVal(i), dlonVal(i), presVal(i), zVal(i), tVal(i), tVal(i) - tdVal(i), & - wdirVal(i), wspVal(i), INT(vssVal(i)), Note + write (*, '(I5,F7.1,2F7.3,F9.1,F8.1,4F8.2,I8)') i, timeVal(i), & + dlatVal(i), dlonVal(i), presVal(i), zVal(i), tVal(i), tdVal(i), & + wdirVal(i), wspVal(i), INT(vssVal(i)) end do END IF ! free allocated arrays - IF (ALLOCATED(timeVal)) deallocate (timeVal) + IF (ALLOCATED(timeVal)) deallocate(timeVal) IF (ALLOCATED(dlatVal)) deallocate(dlatVal) IF (ALLOCATED(dlonVal)) deallocate(dlonVal) IF (ALLOCATED(vssVal)) deallocate(vssVal) From 8abad788e31d3a3f50cc75d821d4be36cb1475e6 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 14 Apr 2021 21:02:10 +0100 Subject: [PATCH 463/683] Remove unused variables --- examples/F90/bufr_read_tempf.f90 | 1 - src/grib_parse_utils.c | 1 - 2 files changed, 2 deletions(-) diff --git a/examples/F90/bufr_read_tempf.f90 b/examples/F90/bufr_read_tempf.f90 index f5337df22..0b2862bd3 100644 --- a/examples/F90/bufr_read_tempf.f90 +++ b/examples/F90/bufr_read_tempf.f90 @@ -41,7 +41,6 @@ program bufr_read_tempf character(len=128) :: statid character(len=16) :: rsnumber character(len=16) :: rssoftware - character(len=8) :: Note call codes_open_file(ifile, '../../data/bufr/PraticaTemp.bufr', 'r') diff --git a/src/grib_parse_utils.c b/src/grib_parse_utils.c index 975f83892..230d68e32 100644 --- a/src/grib_parse_utils.c +++ b/src/grib_parse_utils.c @@ -304,7 +304,6 @@ int grib_accessors_list_print(grib_handle* h, grib_accessors_list* al, const cha { size_t size = 0, len = 0, replen = 0, j = 0; unsigned char* bval = NULL; - char* p = NULL; double* dval = 0; long* lval = 0; char** cvals = NULL; From 1f06d8f335f60fcf9c93a67d50df7476f8a3a120 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 15 Apr 2021 14:44:13 +0100 Subject: [PATCH 464/683] Examples: BUFR radiosonde in Python (From Bruce Ingleby) --- examples/F90/bufr_read_tempf.f90 | 282 ++++++++++++++--------------- examples/python/bufr_read_tempf.py | 202 +++++++++++++++++++++ 2 files changed, 343 insertions(+), 141 deletions(-) create mode 100644 examples/python/bufr_read_tempf.py diff --git a/examples/F90/bufr_read_tempf.f90 b/examples/F90/bufr_read_tempf.f90 index 0b2862bd3..6b0808f1a 100644 --- a/examples/F90/bufr_read_tempf.f90 +++ b/examples/F90/bufr_read_tempf.f90 @@ -18,163 +18,163 @@ ! example. It is advised to use bufr_dump first to understand the structure of these messages. ! program bufr_read_tempf - use eccodes - implicit none - integer :: ifile - integer :: iret - integer :: ibufr - integer :: i, count = 0 - integer :: iflag - integer :: status_id, status_ht, status_time = 0, status_p - integer :: status_rsno, status_rssoft, status_balloonwt, statid_missing - integer(kind=4) :: sizews - integer(kind=4) :: blockNumber, stationNumber - integer(kind=4) :: ymd, hms - logical :: llstdonly = .True. ! Set True to list standard levels only - logical :: llskip - real(kind=8) :: year, month, day, hour, minute, second - real(kind=8) :: htg, htp, htec = 0, sondeType, balloonwt - ! real(kind=8), dimension(:), allocatable :: descriptors - real(kind=8), dimension(:), allocatable :: lat, lon - real(kind=8), dimension(:), allocatable :: timeVal, dlatVal, dlonVal, vssVal - real(kind=8), dimension(:), allocatable :: presVal, zVal, tVal, tdVal, wdirVal, wspVal - character(len=128) :: statid - character(len=16) :: rsnumber - character(len=16) :: rssoftware + use eccodes + implicit none + integer :: ifile + integer :: iret + integer :: ibufr + integer :: i, count = 0 + integer :: iflag + integer :: status_id, status_ht, status_time = 0, status_p + integer :: status_rsno, status_rssoft, status_balloonwt, statid_missing + integer(kind=4) :: sizews + integer(kind=4) :: blockNumber, stationNumber + integer(kind=4) :: ymd, hms + logical :: llstdonly = .True. ! Set True to list standard levels only + logical :: llskip + real(kind=8) :: year, month, day, hour, minute, second + real(kind=8) :: htg, htp, htec = 0, sondeType, balloonwt + ! real(kind=8), dimension(:), allocatable :: descriptors + real(kind=8), dimension(:), allocatable :: lat, lon + real(kind=8), dimension(:), allocatable :: timeVal, dlatVal, dlonVal, vssVal + real(kind=8), dimension(:), allocatable :: presVal, zVal, tVal, tdVal, wdirVal, wspVal + character(len=128) :: statid + character(len=16) :: rsnumber + character(len=16) :: rssoftware - call codes_open_file(ifile, '../../data/bufr/PraticaTemp.bufr', 'r') + call codes_open_file(ifile, '../../data/bufr/PraticaTemp.bufr', 'r') - ! the first BUFR message is loaded from file - ! ibufr is the BUFR id to be used in subsequent calls - call codes_bufr_new_from_file(ifile, ibufr, iret) + ! the first BUFR message is loaded from file + ! ibufr is the BUFR id to be used in subsequent calls + call codes_bufr_new_from_file(ifile, ibufr, iret) - ! loop through all messages in the file - do while (iret /= CODES_END_OF_FILE .AND. status_time == CODES_SUCCESS) + ! loop through all messages in the file + do while (iret /= CODES_END_OF_FILE .AND. status_time == CODES_SUCCESS) - ! Can check the template used - ! call codes_get(ibufr,'unexpandedDescriptors',descriptors) - ! write(0,*) 'Template: ', descriptors - ! IF (descriptors(1) /= 309056.0) GOTO 999 ! only list descent profiles + ! Can check the template used + ! call codes_get(ibufr,'unexpandedDescriptors',descriptors) + ! write(0,*) 'Template: ', descriptors + ! IF (descriptors(1) /= 309056.0) GOTO 999 ! only list descent profiles - ! we need to instruct ecCodes to expand all the descriptors - ! i.e. unpack the data values - call codes_set(ibufr, "unpack", 1); - ! In our BUFR message verticalSoundingSignificance is always followed by - ! geopotential, airTemperature, dewpointTemperature, - ! windDirection, windSpeed and pressure. + ! we need to instruct ecCodes to expand all the descriptors + ! i.e. unpack the data values + call codes_set(ibufr, "unpack", 1); + ! In our BUFR message verticalSoundingSignificance is always followed by + ! geopotential, airTemperature, dewpointTemperature, + ! windDirection, windSpeed and pressure. - count = count + 1 - llskip = .False. + count = count + 1 + llskip = .False. - ! Metadata: - call codes_get(ibufr, 'shipOrMobileLandStationIdentifier', statid, status_id) - IF (status_id /= CODES_SUCCESS) statid = "UNKNOWN" - call codes_is_missing(ibufr, 'shipOrMobileLandStationIdentifier', statid_missing) - IF (statid_missing == 1) statid = "MISSING" - call codes_get(ibufr, 'blockNumber', blockNumber) - call codes_get(ibufr, 'stationNumber', stationNumber) - IF (blockNumber <= 99.0 .AND. stationNumber <= 1000) write(statid,'(I2.2,I3.3,3X)') blockNumber,stationNumber + ! Metadata: + call codes_get(ibufr, 'shipOrMobileLandStationIdentifier', statid, status_id) + IF (status_id /= CODES_SUCCESS) statid = "UNKNOWN" + call codes_is_missing(ibufr, 'shipOrMobileLandStationIdentifier', statid_missing) + IF (statid_missing == 1) statid = "MISSING" + call codes_get(ibufr, 'blockNumber', blockNumber) + call codes_get(ibufr, 'stationNumber', stationNumber) + IF (blockNumber <= 99.0 .AND. stationNumber <= 1000) write (statid, '(I2.2,I3.3,3X)') blockNumber, stationNumber - call codes_get(ibufr, 'year', year) - call codes_get(ibufr, 'month', month) - call codes_get(ibufr, 'day', day) - call codes_get(ibufr, 'hour', hour) - call codes_get(ibufr, 'minute', minute) - call codes_get(ibufr, 'second', second, status_time) - IF (status_time /= CODES_SUCCESS) second = 0.0 - call codes_get(ibufr, 'latitude', lat) - call codes_get(ibufr, 'longitude', lon) - call codes_get(ibufr, 'heightOfStationGroundAboveMeanSeaLevel', htg, status_ht) - IF (status_ht /= CODES_SUCCESS) htg = -999.0 - call codes_get(ibufr, 'heightOfBarometerAboveMeanSeaLevel', htp, status_ht) - IF (status_ht /= CODES_SUCCESS) htp = -999.0 - call codes_get(ibufr, 'radiosondeType', sondeType) - call codes_get(ibufr, 'heightOfStation', htec, status_ht) ! Height from WMO list (BUFR) - IF (status_ht == CODES_SUCCESS .AND. htg == -999.0) htg = htec - ymd = INT(year)*10000 + INT(month)*100 + INT(day) - hms = INT(hour)*10000 + INT(minute)*100 + INT(second) - call codes_get(ibufr, 'radiosondeSerialNumber', rsnumber, status_rsno) - call codes_get(ibufr, 'softwareVersionNumber', rssoftware, status_rssoft) - call codes_get(ibufr, 'weightOfBalloon', balloonwt, status_balloonwt) - IF (status_balloonwt /= CODES_SUCCESS) balloonwt = 0.0 + call codes_get(ibufr, 'year', year) + call codes_get(ibufr, 'month', month) + call codes_get(ibufr, 'day', day) + call codes_get(ibufr, 'hour', hour) + call codes_get(ibufr, 'minute', minute) + call codes_get(ibufr, 'second', second, status_time) + IF (status_time /= CODES_SUCCESS) second = 0.0 + call codes_get(ibufr, 'latitude', lat) + call codes_get(ibufr, 'longitude', lon) + call codes_get(ibufr, 'heightOfStationGroundAboveMeanSeaLevel', htg, status_ht) + IF (status_ht /= CODES_SUCCESS) htg = -999.0 + call codes_get(ibufr, 'heightOfBarometerAboveMeanSeaLevel', htp, status_ht) + IF (status_ht /= CODES_SUCCESS) htp = -999.0 + call codes_get(ibufr, 'radiosondeType', sondeType) + call codes_get(ibufr, 'heightOfStation', htec, status_ht) ! Height from WMO list (BUFR) + IF (status_ht == CODES_SUCCESS .AND. htg == -999.0) htg = htec + ymd = INT(year)*10000 + INT(month)*100 + INT(day) + hms = INT(hour)*10000 + INT(minute)*100 + INT(second) + call codes_get(ibufr, 'radiosondeSerialNumber', rsnumber, status_rsno) + call codes_get(ibufr, 'softwareVersionNumber', rssoftware, status_rssoft) + call codes_get(ibufr, 'weightOfBalloon', balloonwt, status_balloonwt) + IF (status_balloonwt /= CODES_SUCCESS) balloonwt = 0.0 - ! Ascent (skip incomplete reports for now) - call codes_get(ibufr, 'timePeriod', timeVal, status_time) - IF (status_time /= CODES_SUCCESS) THEN - write (*, '(A,I7,A,A8,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ', count, & - ' ', statid, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType) - write (*, '(A)') 'Missing times - skip' - llskip = .True. - END IF - call codes_get(ibufr, 'pressure', presVal, status_p) - IF (status_p /= CODES_SUCCESS) THEN - write (*, '(A,I7,A,A8,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ', count, & - ' ', statid, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType) - write (*, '(A)') 'Missing pressures - skip' - llskip = .True. - END IF - call codes_get(ibufr, 'nonCoordinateGeopotentialHeight', zVal, status_ht) - IF (status_ht /= CODES_SUCCESS) THEN - write (*, '(A,I7,A,A8,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ', count, & - ' ', statid, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType) - write (*, '(A)') 'Missing heights - skip' - llskip = .True. - END IF - ! IF (blockNumber /= 17 .OR. stationNumber /= 196) llskip=.True. ! FIX - ! IF (blockNumber /= 17.0) llskip=.True. ! FIX + ! Ascent (skip incomplete reports for now) + call codes_get(ibufr, 'timePeriod', timeVal, status_time) + IF (status_time /= CODES_SUCCESS) THEN + write (*, '(A,I7,A,A8,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ', count, & + ' ', statid, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType) + write (*, '(A)') 'Missing times - skip' + llskip = .True. + END IF + call codes_get(ibufr, 'pressure', presVal, status_p) + IF (status_p /= CODES_SUCCESS) THEN + write (*, '(A,I7,A,A8,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ', count, & + ' ', statid, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType) + write (*, '(A)') 'Missing pressures - skip' + llskip = .True. + END IF + call codes_get(ibufr, 'nonCoordinateGeopotentialHeight', zVal, status_ht) + IF (status_ht /= CODES_SUCCESS) THEN + write (*, '(A,I7,A,A8,I9,I7.6,F9.3,F10.3,2F7.1,I4)') 'Ob: ', count, & + ' ', statid, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType) + write (*, '(A)') 'Missing heights - skip' + llskip = .True. + END IF + ! IF (blockNumber /= 17 .OR. stationNumber /= 196) llskip=.True. ! FIX + ! IF (blockNumber /= 17.0) llskip=.True. ! FIX - IF (.NOT. llskip) THEN - call codes_get(ibufr, 'latitudeDisplacement', dlatVal) - call codes_get(ibufr, 'longitudeDisplacement', dlonVal) - call codes_get(ibufr, 'extendedVerticalSoundingSignificance', vssVal) - call codes_get(ibufr, 'airTemperature', tVal) - call codes_get(ibufr, 'dewpointTemperature', tdVal) - call codes_get(ibufr, 'windDirection', wdirVal) - call codes_get(ibufr, 'windSpeed', wspVal) + IF (.NOT. llskip) THEN + call codes_get(ibufr, 'latitudeDisplacement', dlatVal) + call codes_get(ibufr, 'longitudeDisplacement', dlonVal) + call codes_get(ibufr, 'extendedVerticalSoundingSignificance', vssVal) + call codes_get(ibufr, 'airTemperature', tVal) + call codes_get(ibufr, 'dewpointTemperature', tdVal) + call codes_get(ibufr, 'windDirection', wdirVal) + call codes_get(ibufr, 'windSpeed', wspVal) - ! ---- Array sizes (pressure size can be larger - wind shear levels) - sizews = size(wspVal) + ! ---- Array sizes (pressure size can be larger - wind shear levels) + sizews = size(wspVal) - ! ---- Print the values -------------------------------- - write (*, '(A,I7,A,A8,I9,I7.6,F9.3,F10.3,2F7.1,I4,I5)') 'Ob: ', count, & - ' ', statid, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType), sizews - IF (status_rsno == CODES_SUCCESS) write (*, '(A,A,A,F7.3)') & - 'RS number/software/balloonwt: ', rsnumber, rssoftware, balloonwt - IF (status_ht == CODES_SUCCESS .AND. SIZE(lat)>1) write (*, '(A,F9.3,F10.3,F7.1)') & - 'WMO list lat, lon, ht: ', lat(2), lon(2), htec - write (*, '(A)') 'level dtime dlat dlon pressure geopotH airTemp dewPtT windDir windSp signif' - do i = 1, sizews - iflag = vssVal(i) - IF (.NOT. llstdonly .OR. BTEST(iflag, 16)) & - write (*, '(I5,F7.1,2F7.3,F9.1,F8.1,4F8.2,I8)') i, timeVal(i), & - dlatVal(i), dlonVal(i), presVal(i), zVal(i), tVal(i), tdVal(i), & - wdirVal(i), wspVal(i), INT(vssVal(i)) - end do + ! ---- Print the values -------------------------------- + write (*, '(A,I7,A,A8,I9,I7.6,F9.3,F10.3,2F7.1,I4,I5)') 'Ob: ', count, & + ' ', statid, ymd, hms, lat(1), lon(1), htg, htp, INT(sondeType), sizews + IF (status_rsno == CODES_SUCCESS) write (*, '(A,A,A,F7.3)') & + 'RS number/software/balloonwt: ', rsnumber, rssoftware, balloonwt + IF (status_ht == CODES_SUCCESS .AND. SIZE(lat) > 1) write (*, '(A,F9.3,F10.3,F7.1)') & + 'WMO list lat, lon, ht: ', lat(2), lon(2), htec + write (*, '(A)') 'level dtime dlat dlon pressure geopotH airTemp dewPtT windDir windSp signif' + do i = 1, sizews + iflag = vssVal(i) + IF (.NOT. llstdonly .OR. BTEST(iflag, 16)) & + write (*, '(I5,F7.1,2F7.3,F9.1,F8.1,4F8.2,I8)') i, timeVal(i), & + dlatVal(i), dlonVal(i), presVal(i), zVal(i), tVal(i), tdVal(i), & + wdirVal(i), wspVal(i), INT(vssVal(i)) + end do - END IF - ! free allocated arrays - IF (ALLOCATED(timeVal)) deallocate(timeVal) - IF (ALLOCATED(dlatVal)) deallocate(dlatVal) - IF (ALLOCATED(dlonVal)) deallocate(dlonVal) - IF (ALLOCATED(vssVal)) deallocate(vssVal) - IF (ALLOCATED(presVal)) deallocate(presVal) - IF (ALLOCATED(zVal)) deallocate(zVal) - IF (ALLOCATED(tVal)) deallocate(tVal) - IF (ALLOCATED(tdVal)) deallocate(tdVal) - IF (ALLOCATED(wdirVal)) deallocate(wdirVal) - IF (ALLOCATED(wspVal)) deallocate(wspVal) - IF (ALLOCATED(lat)) deallocate(lat) - IF (ALLOCATED(lon)) deallocate(lon) + END IF + ! free allocated arrays + IF (ALLOCATED(timeVal)) deallocate (timeVal) + IF (ALLOCATED(dlatVal)) deallocate (dlatVal) + IF (ALLOCATED(dlonVal)) deallocate (dlonVal) + IF (ALLOCATED(vssVal)) deallocate (vssVal) + IF (ALLOCATED(presVal)) deallocate (presVal) + IF (ALLOCATED(zVal)) deallocate (zVal) + IF (ALLOCATED(tVal)) deallocate (tVal) + IF (ALLOCATED(tdVal)) deallocate (tdVal) + IF (ALLOCATED(wdirVal)) deallocate (wdirVal) + IF (ALLOCATED(wspVal)) deallocate (wspVal) + IF (ALLOCATED(lat)) deallocate (lat) + IF (ALLOCATED(lon)) deallocate (lon) - ! 999 CONTINUE - ! release the BUFR message - call codes_release(ibufr) + ! 999 CONTINUE + ! release the BUFR message + call codes_release(ibufr) - ! load the next BUFR message - call codes_bufr_new_from_file(ifile, ibufr, iret) + ! load the next BUFR message + call codes_bufr_new_from_file(ifile, ibufr, iret) - end do + end do - call codes_close_file(ifile) + call codes_close_file(ifile) end program bufr_read_tempf diff --git a/examples/python/bufr_read_tempf.py b/examples/python/bufr_read_tempf.py new file mode 100644 index 000000000..f1cd11106 --- /dev/null +++ b/examples/python/bufr_read_tempf.py @@ -0,0 +1,202 @@ +# +# Copyright 2005-2018 ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities +# granted to it by virtue of its status as an intergovernmental organisation +# nor does it submit to any jurisdiction. +# +# Python implementation: bufr_read_tempf +# +# +# Description: read and print radiosonde data from TEMP BUFR messages. +# If available this version also lists the position information from the WMO list +# (now OSCAR/Surface) appended to the reports by ECMWF +# +# Author: Bruce Ingleby +# +# Please note that TEMP reports can be encoded in various ways in BUFR. +# Therefore the code below might not work directly for other types of TEMP +# messages than the one used in the example. It is advised to use bufr_dump to +# understand the structure of the messages. +# +from __future__ import print_function +import traceback +import sys +import numpy as np +from eccodes import * + +INPUT = '../../data/bufr/PraticaTemp.bufr' +VERBOSE = 1 # verbose error reporting + + +def example(): + # open BUFR file + f = open(INPUT, "rb") + llstdonly = 1 + cnt = 0 + # loop over the messages in the file + while 1: + # get handle for message + bufr = codes_bufr_new_from_file(f) + if bufr is None: + break + # if cnt>9: + # break # Fix + cnt += 1 + + # desc = codes_get_array(bufr, 'unexpandedDescriptors') + # if all(desc != 309056): # descent reports + # codes_release(bufr) + # continue # Skip other templates + + # we need to instruct ecCodes to expand all the descriptors + # i.e. unpack the data section + codes_set(bufr, "unpack", 1) + # get header information from the message + try: + sid = codes_get(bufr, "aircraftRegistrationNumberOrOtherIdentification") + except Exception: + sid = "UNKNOWN" + + statid = "00000" + try: + block = codes_get(bufr, "blockNumber") + stnum = codes_get(bufr, "stationNumber") + if (block > 0) and (block < 100): # or block != CODES_MISSING_LONG + statid = str.format("%.2i%.3i" % (block, stnum)) + except Exception: + statid = "00000" + if statid == "00000": + statid = sid[0:8] + + # subtype = codes_get(bufr,'rdbSubtype') + sondetype = codes_get(bufr, "radiosondeType") + slat = codes_get_array(bufr, "latitude") + slon = codes_get_array(bufr, "longitude") + try: + htg = codes_get(ibufr, "heightOfStationGroundAboveMeanSeaLevel") + except Exception: + htg = -999.0 + try: + htp = codes_get(ibufr, "heightOfBarometerAboveMeanSeaLevel") + except Exception: + htp = -999.0 + year = codes_get(bufr, "year") + month = codes_get(bufr, "month") + day = codes_get(bufr, "day") + hour = codes_get(bufr, "hour") + minute = codes_get(bufr, "minute") + try: + second = codes_get(bufr, "second") + except Exception: + second = 0.0 + date = str.format("%i%.2i%.2i" % (year, month, day)) + time = str.format("%.2i%.2i%.2i" % (hour, minute, second)) + try: + windsp = codes_get_array(bufr, "windSpeed") + except Exception: + codes_release(bufr) + continue + print( + "Ob: %7i %s %s %s %7.3f %8.3f %6.1f %6.1f %3i %4i" + % ( + cnt, + statid, + date, + time, + slat[0], + slon[0], + htg, + htp, + sondetype, + len(windsp), + ) + ) + + try: + rsnumber = codes_get(bufr, "radiosondeSerialNumber") + rssoftware = codes_get(bufr, "softwareVersionNumber") + balloonwt = codes_get(bufr, "weightOfBalloon") + print("RS number/software/balloonwt ", rsnumber, rssoftware, balloonwt) + except Exception: + rsnumber = 0 + try: + htec = codes_get( + bufr, "heightOfStation" + ) # Height from WMO list (appended by ECMWF) + print("WMO list lat, lon, ht: ", statid, slat[1], slon[1], htec) + except Exception: + htec = 0 + + # get all the timePeriods + dtime = codes_get_array(bufr, "timePeriod") + try: + pressure = codes_get_array(bufr, "pressure") + except Exception: + codes_release(bufr) + continue + vsSignif = codes_get_array(bufr, "extendedVerticalSoundingSignificance") + try: + geopoth = codes_get_array(bufr, "nonCoordinateGeopotentialHeight") + except Exception: + codes_release(bufr) + continue + dlat = codes_get_array(bufr, "latitudeDisplacement") + dlon = codes_get_array(bufr, "longitudeDisplacement") + airt = codes_get_array(bufr, "airTemperature") + dewt = codes_get_array(bufr, "dewpointTemperature") + windd = codes_get_array(bufr, "windDirection") + dtime = np.where(dtime != CODES_MISSING_LONG, dtime, np.nan) + dlat = np.where(dlat != CODES_MISSING_DOUBLE, dlat, np.nan) + # dlat = np.where(dlat>-1E10, dlat, np.nan) + dlon = np.where(dlon > -1e10, dlon, np.nan) + airt = np.where(airt > -1e10, airt, np.nan) + dewt = np.where(dewt > -1e10, dewt, np.nan) + windd = np.where(windd != CODES_MISSING_LONG, windd, np.nan) + windsp = np.where(windsp > -1e10, windsp, np.nan) + geopoth = np.where(geopoth > -1e10, geopoth, np.nan) + pressure = np.where(pressure > -1e10, pressure, np.nan) + print( + "level dtime dlat dlon pressure geopotH airTemp dewPtT windDir windSp signif" + ) + for i in range(0, len(windsp) - 1): + if (not llstdonly) or vsSignif[i] != 65536: + continue + print( + "%5i %6.1f %6.3f %6.3f %8.1f %7.1f %7.2f %7.2f %7.2f %7.2f %7i" + % ( + i + 1, + dtime[i], + dlat[i], + dlon[i], + pressure[i], + geopoth[i], + airt[i], + dewt[i], + windd[i], + windsp[i], + vsSignif[i], + ) + ) + # delete handle + codes_release(bufr) + # close the file + f.close() + + +def main(): + try: + example() + except CodesInternalError as err: + if VERBOSE: + traceback.print_exc(file=sys.stderr) + else: + sys.stderr.write(err.msg + "\n") + return 1 + + +if __name__ == "__main__": + sys.exit(main()) From d4eaaf27e8c8f62d8d8c4259a108117b6cb25e44 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 15 Apr 2021 14:48:58 +0100 Subject: [PATCH 465/683] Examples: BUFR radiosonde in Python (From Bruce Ingleby) --- examples/python/bufr_read_tempf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/python/bufr_read_tempf.py b/examples/python/bufr_read_tempf.py index f1cd11106..9bf64ca80 100644 --- a/examples/python/bufr_read_tempf.py +++ b/examples/python/bufr_read_tempf.py @@ -28,7 +28,7 @@ import sys import numpy as np from eccodes import * -INPUT = '../../data/bufr/PraticaTemp.bufr' +INPUT = "../../data/bufr/PraticaTemp.bufr" VERBOSE = 1 # verbose error reporting From 3ffb386883f5fef15daa272be8eacf79c0697a04 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 15 Apr 2021 15:10:46 +0100 Subject: [PATCH 466/683] Examples: apply flake8 --- examples/python/bufr_read_tempf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/python/bufr_read_tempf.py b/examples/python/bufr_read_tempf.py index 9bf64ca80..10b08b6b5 100644 --- a/examples/python/bufr_read_tempf.py +++ b/examples/python/bufr_read_tempf.py @@ -77,11 +77,11 @@ def example(): slat = codes_get_array(bufr, "latitude") slon = codes_get_array(bufr, "longitude") try: - htg = codes_get(ibufr, "heightOfStationGroundAboveMeanSeaLevel") + htg = codes_get(bufr, "heightOfStationGroundAboveMeanSeaLevel") except Exception: htg = -999.0 try: - htp = codes_get(ibufr, "heightOfBarometerAboveMeanSeaLevel") + htp = codes_get(bufr, "heightOfBarometerAboveMeanSeaLevel") except Exception: htp = -999.0 year = codes_get(bufr, "year") From 2d08227508704a9c22972619014f366abad28189 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 15 Apr 2021 22:51:54 +0100 Subject: [PATCH 467/683] Examples: BUFR radiosonde in Python (From Bruce Ingleby) --- examples/python/bufr_read_tempf.py | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/examples/python/bufr_read_tempf.py b/examples/python/bufr_read_tempf.py index 10b08b6b5..555743858 100644 --- a/examples/python/bufr_read_tempf.py +++ b/examples/python/bufr_read_tempf.py @@ -1,5 +1,5 @@ # -# Copyright 2005-2018 ECMWF. +# Copyright 2005- ECMWF. # # This software is licensed under the terms of the Apache Licence Version 2.0 # which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. @@ -43,8 +43,6 @@ def example(): bufr = codes_bufr_new_from_file(f) if bufr is None: break - # if cnt>9: - # break # Fix cnt += 1 # desc = codes_get_array(bufr, 'unexpandedDescriptors') @@ -61,15 +59,15 @@ def example(): except Exception: sid = "UNKNOWN" - statid = "00000" + statid = "00000 " try: block = codes_get(bufr, "blockNumber") stnum = codes_get(bufr, "stationNumber") if (block > 0) and (block < 100): # or block != CODES_MISSING_LONG - statid = str.format("%.2i%.3i" % (block, stnum)) + statid = str.format("%.2i%.3i " % (block, stnum)) except Exception: - statid = "00000" - if statid == "00000": + statid = "00000 " + if statid == "00000 ": statid = sid[0:8] # subtype = codes_get(bufr,'rdbSubtype') @@ -127,7 +125,7 @@ def example(): htec = codes_get( bufr, "heightOfStation" ) # Height from WMO list (appended by ECMWF) - print("WMO list lat, lon, ht: ", statid, slat[1], slon[1], htec) + print("WMO list lat, lon, ht: %7.3f %8.3f %6.1f" % (slat[1], slon[1], htec)) except Exception: htec = 0 @@ -151,18 +149,18 @@ def example(): windd = codes_get_array(bufr, "windDirection") dtime = np.where(dtime != CODES_MISSING_LONG, dtime, np.nan) dlat = np.where(dlat != CODES_MISSING_DOUBLE, dlat, np.nan) - # dlat = np.where(dlat>-1E10, dlat, np.nan) - dlon = np.where(dlon > -1e10, dlon, np.nan) - airt = np.where(airt > -1e10, airt, np.nan) - dewt = np.where(dewt > -1e10, dewt, np.nan) + dlon = np.where(dlon != CODES_MISSING_DOUBLE, dlon, np.nan) + airt = np.where(airt != CODES_MISSING_DOUBLE, airt, np.nan) + dewt = np.where(dewt != CODES_MISSING_DOUBLE, dewt, np.nan) windd = np.where(windd != CODES_MISSING_LONG, windd, np.nan) - windsp = np.where(windsp > -1e10, windsp, np.nan) - geopoth = np.where(geopoth > -1e10, geopoth, np.nan) - pressure = np.where(pressure > -1e10, pressure, np.nan) + windsp = np.where(windsp != CODES_MISSING_DOUBLE, windsp, np.nan) + geopoth = np.where(geopoth != CODES_MISSING_DOUBLE, geopoth, np.nan) + pressure = np.where(pressure != CODES_MISSING_DOUBLE, pressure, np.nan) + # pressure = np.where(pressure > -1e10, pressure, np.nan) print( "level dtime dlat dlon pressure geopotH airTemp dewPtT windDir windSp signif" ) - for i in range(0, len(windsp) - 1): + for i in range(0, len(windsp)): if (not llstdonly) or vsSignif[i] != 65536: continue print( From a088dde988a806fb0be3105d0f4331b1658b4110 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 17 Apr 2021 17:04:10 +0100 Subject: [PATCH 468/683] ECC-1229: Fix GRIB1 order of keys (cnmc) --- definitions/grib1/localConcepts/cnmc/name.def | 14 +++++++------- definitions/grib1/localConcepts/cnmc/paramId.def | 6 +++--- definitions/grib1/localConcepts/cnmc/shortName.def | 8 ++++---- definitions/grib1/localConcepts/cnmc/units.def | 14 +++++++------- 4 files changed, 21 insertions(+), 21 deletions(-) diff --git a/definitions/grib1/localConcepts/cnmc/name.def b/definitions/grib1/localConcepts/cnmc/name.def index 0e851c38e..ddf477f26 100644 --- a/definitions/grib1/localConcepts/cnmc/name.def +++ b/definitions/grib1/localConcepts/cnmc/name.def @@ -385,8 +385,8 @@ table2Version = 2 ; indicatorOfParameter = 86 ; indicatorOfTypeOfLevel = 112 ; - topLevel = 100 ; bottomLevel = 190 ; + topLevel = 100 ; } #Column-integrated Soil Moisture (1) 0 -10 cm 'Column-integrated Soil Moisture (1) 0 -10 cm' = { @@ -401,8 +401,8 @@ table2Version = 2 ; indicatorOfParameter = 86 ; indicatorOfTypeOfLevel = 112 ; - topLevel = 10 ; bottomLevel = 100 ; + topLevel = 10 ; } #Plant cover 'Plant cover' = { @@ -416,8 +416,8 @@ indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; bottomLevel = 100 ; - timeRangeIndicator = 4 ; topLevel = 10 ; + timeRangeIndicator = 4 ; } #Water Runoff (10-190) 'Water Runoff (10-190)' = { @@ -425,17 +425,17 @@ indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; bottomLevel = 190 ; - timeRangeIndicator = 4 ; topLevel = 10 ; + timeRangeIndicator = 4 ; } #Water Runoff (s) 'Water Runoff (s)' = { table2Version = 2 ; indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; - timeRangeIndicator = 4 ; - topLevel = 0 ; bottomLevel = 10 ; + topLevel = 0 ; + timeRangeIndicator = 4 ; } #Sea Ice Cover ( 0= free, 1=cover) 'Sea Ice Cover ( 0= free, 1=cover)' = { @@ -1317,8 +1317,8 @@ table2Version = 202 ; indicatorOfParameter = 74 ; indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; bottomLevel = 10 ; + topLevel = 0 ; } #variance of soil moisture content (10-100) 'variance of soil moisture content (10-100)' = { diff --git a/definitions/grib1/localConcepts/cnmc/paramId.def b/definitions/grib1/localConcepts/cnmc/paramId.def index 5a3079b8a..b0dda4ef0 100644 --- a/definitions/grib1/localConcepts/cnmc/paramId.def +++ b/definitions/grib1/localConcepts/cnmc/paramId.def @@ -433,9 +433,9 @@ table2Version = 2 ; indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; - timeRangeIndicator = 4 ; bottomLevel = 10 ; topLevel = 0 ; + timeRangeIndicator = 4 ; } #Sea Ice Cover ( 0= free, 1=cover) '500069' = { @@ -1317,16 +1317,16 @@ table2Version = 202 ; indicatorOfParameter = 74 ; indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; bottomLevel = 10 ; + topLevel = 0 ; } #variance of soil moisture content (10-100) '500216' = { table2Version = 202 ; indicatorOfParameter = 74 ; indicatorOfTypeOfLevel = 112 ; - topLevel = 10 ; bottomLevel = 100 ; + topLevel = 10 ; } #evergreen forest '500217' = { diff --git a/definitions/grib1/localConcepts/cnmc/shortName.def b/definitions/grib1/localConcepts/cnmc/shortName.def index f50479da7..1987f9f15 100644 --- a/definitions/grib1/localConcepts/cnmc/shortName.def +++ b/definitions/grib1/localConcepts/cnmc/shortName.def @@ -415,18 +415,18 @@ table2Version = 2 ; indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; + bottomLevel = 100 ; topLevel = 10 ; timeRangeIndicator = 4 ; - bottomLevel = 100 ; } #Water Runoff (10-190) 'runoff_g_lm' = { table2Version = 2 ; indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; + bottomLevel = 190 ; topLevel = 10 ; timeRangeIndicator = 4 ; - bottomLevel = 190 ; } #Water Runoff (s) 'runoff_s' = { @@ -1317,16 +1317,16 @@ table2Version = 202 ; indicatorOfParameter = 74 ; indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; bottomLevel = 10 ; + topLevel = 0 ; } #variance of soil moisture content (10-100) 'wvar2' = { table2Version = 202 ; indicatorOfParameter = 74 ; indicatorOfTypeOfLevel = 112 ; - topLevel = 10 ; bottomLevel = 100 ; + topLevel = 10 ; } #evergreen forest 'for_e' = { diff --git a/definitions/grib1/localConcepts/cnmc/units.def b/definitions/grib1/localConcepts/cnmc/units.def index 21347a34c..05c4e126b 100644 --- a/definitions/grib1/localConcepts/cnmc/units.def +++ b/definitions/grib1/localConcepts/cnmc/units.def @@ -385,8 +385,8 @@ table2Version = 2 ; indicatorOfParameter = 86 ; indicatorOfTypeOfLevel = 112 ; - topLevel = 100 ; bottomLevel = 190 ; + topLevel = 100 ; } #Column-integrated Soil Moisture (1) 0 -10 cm 'kg m**-2' = { @@ -401,8 +401,8 @@ table2Version = 2 ; indicatorOfParameter = 86 ; indicatorOfTypeOfLevel = 112 ; - topLevel = 10 ; bottomLevel = 100 ; + topLevel = 10 ; } #Plant cover '%' = { @@ -416,8 +416,8 @@ indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; bottomLevel = 100 ; - timeRangeIndicator = 4 ; topLevel = 10 ; + timeRangeIndicator = 4 ; } #Water Runoff (10-190) 'kg m**-2' = { @@ -425,17 +425,17 @@ indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; bottomLevel = 190 ; - timeRangeIndicator = 4 ; topLevel = 10 ; + timeRangeIndicator = 4 ; } #Water Runoff (s) 'kg m**-2' = { table2Version = 2 ; indicatorOfParameter = 90 ; indicatorOfTypeOfLevel = 112 ; - timeRangeIndicator = 4 ; - topLevel = 0 ; bottomLevel = 10 ; + topLevel = 0 ; + timeRangeIndicator = 4 ; } #Sea Ice Cover ( 0= free, 1=cover) '~' = { @@ -1317,8 +1317,8 @@ table2Version = 202 ; indicatorOfParameter = 74 ; indicatorOfTypeOfLevel = 112 ; - topLevel = 0 ; bottomLevel = 10 ; + topLevel = 0 ; } #variance of soil moisture content (10-100) 'kg**2 m**-4' = { From 2f26c45e699add7f7d651130f39689ec6ce75f3d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 17 Apr 2021 17:19:50 +0100 Subject: [PATCH 469/683] Examples: Add new example to Confluence --- confluence/examples.par | 1 + 1 file changed, 1 insertion(+) diff --git a/confluence/examples.par b/confluence/examples.par index dd8b02afa..d9c71e24e 100644 --- a/confluence/examples.par +++ b/confluence/examples.par @@ -34,6 +34,7 @@ BUFR ( bufr_read_scatterometer bufr_read_synop bufr_read_temp + bufr_read_tempf bufr_set_keys bufr_subset bufr_read_tropical_cyclone From ec67e1293af120eeb838c05f7e8f8169e9fb135b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 23 Apr 2021 13:22:45 +0100 Subject: [PATCH 470/683] ECC-1235: Fortran examples: Show how to convert an error code into a string --- examples/F90/read_from_file.f90 | 134 +++++++++++++++++--------------- 1 file changed, 70 insertions(+), 64 deletions(-) diff --git a/examples/F90/read_from_file.f90 b/examples/F90/read_from_file.f90 index 3ea16ea9f..2397fa2f0 100644 --- a/examples/F90/read_from_file.f90 +++ b/examples/F90/read_from_file.f90 @@ -10,88 +10,94 @@ ! See GRIB-292 ! program read_from_file - use eccodes - implicit none - character(len=32) :: input_grib_file - integer, dimension(26) :: message_lengths ! expected message lengths + use eccodes + implicit none + character(len=32) :: input_grib_file + integer, dimension(26) :: message_lengths ! expected message lengths - input_grib_file = '../../data/v.grib2' - message_lengths = (/95917, 96963, 97308, 97386, 97215, 97440, 98451, 98629, 98448, & - 99186, 97517, 97466, 99307, 98460, 101491, 99361, 100292, 96838, & - 91093, 83247, 78244, 74872, 72663, 69305, 69881, 68572/) + input_grib_file = '../../data/v.grib2' + message_lengths = (/95917, 96963, 97308, 97386, 97215, 97440, 98451, 98629, 98448, & + 99186, 97517, 97466, 99307, 98460, 101491, 99361, 100292, 96838, & + 91093, 83247, 78244, 74872, 72663, 69305, 69881, 68572/) - ! Get the grib message length using two different interfaces - call read_using_size_t() - call read_using_integer() - print *, 'Passed' + ! Get the grib message length using two different interfaces + call read_using_size_t() + call read_using_integer() + print *, 'Passed' contains !====================================== - subroutine read_using_size_t - implicit none - integer :: size, intsize - parameter(intsize=100000, size=intsize*4) - integer :: ifile - integer :: iret - integer :: count1 = 0 - integer(kind=4), dimension(intsize) :: buffer - integer(kind=kindOfSize_t) :: len1 ! For large messages + subroutine read_using_size_t + implicit none + integer :: size, intsize + parameter(intsize=100000, size=intsize*4) + integer :: ifile + integer :: iret + integer :: count1 = 0 + integer(kind=4), dimension(intsize) :: buffer + integer(kind=kindOfSize_t) :: len1 ! For large messages + character(len=128) :: error_message - ifile = 5 - call codes_open_file(ifile, input_grib_file, 'r') + ifile = 5 + call codes_open_file(ifile, input_grib_file, 'r') + len1 = size + call codes_read_from_file(ifile, buffer, len1, iret) + + do while (iret == CODES_SUCCESS) + count1 = count1 + 1 + if (len1 /= message_lengths(count1)) then + write (*, '(a,i3,a,i8,a,i8)') 'Error: Message #', count1, ' length=', len1, '. Expected=', message_lengths(count1) + stop + end if len1 = size call codes_read_from_file(ifile, buffer, len1, iret) + end do - do while (iret == CODES_SUCCESS) - count1 = count1 + 1 - if (len1 /= message_lengths(count1)) then - write (*, '(a,i3,a,i8,a,i8)') 'Error: Message #', count1, ' length=', len1, '. Expected=', message_lengths(count1) - stop - end if - len1 = size - call codes_read_from_file(ifile, buffer, len1, iret) - end do + if (iret /= CODES_END_OF_FILE) then + call codes_get_error_string(iret, error_message) + write (*, *) 'error message: ', error_message + call codes_check(iret, 'read_from_file', '') + end if + call codes_close_file(ifile) - if (iret /= CODES_END_OF_FILE) then - call codes_check(iret, 'read_from_file', '') - end if - call codes_close_file(ifile) - - end subroutine read_using_size_t + end subroutine read_using_size_t !====================================== - subroutine read_using_integer - implicit none - integer :: size, intsize - parameter(intsize=100000, size=intsize*4) - integer :: ifile - integer :: iret - integer :: count1 = 0 - integer(kind=4), dimension(intsize) :: buffer - integer :: len1 + subroutine read_using_integer + implicit none + integer :: size, intsize + parameter(intsize=100000, size=intsize*4) + integer :: ifile + integer :: iret + integer :: count1 = 0 + integer(kind=4), dimension(intsize) :: buffer + integer :: len1 + character(len=128) :: error_message - ifile = 5 - call codes_open_file(ifile, input_grib_file, 'r') + ifile = 5 + call codes_open_file(ifile, input_grib_file, 'r') + len1 = size + call codes_read_from_file(ifile, buffer, len1, iret) + + do while (iret == CODES_SUCCESS) + count1 = count1 + 1 + if (len1 /= message_lengths(count1)) then + write (*, '(a,i3,a,i8,a,i8)') 'Error: Message #', count1, ' length=', len1, '. Expected=', message_lengths(count1) + stop + end if len1 = size call codes_read_from_file(ifile, buffer, len1, iret) + end do - do while (iret == CODES_SUCCESS) - count1 = count1 + 1 - if (len1 /= message_lengths(count1)) then - write (*, '(a,i3,a,i8,a,i8)') 'Error: Message #', count1, ' length=', len1, '. Expected=', message_lengths(count1) - stop - end if - len1 = size - call codes_read_from_file(ifile, buffer, len1, iret) - end do + if (iret /= CODES_END_OF_FILE) then + call codes_get_error_string(iret, error_message) + write (*, *) 'error message: ', error_message + call codes_check(iret, 'read_from_file', '') + end if + call codes_close_file(ifile) - if (iret /= CODES_END_OF_FILE) then - call codes_check(iret, 'read_from_file', '') - end if - call codes_close_file(ifile) - - end subroutine read_using_integer + end subroutine read_using_integer !====================================== end program From b07bc640b62da345751fa6b619bcca60eef67111 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 26 Apr 2021 14:10:58 +0100 Subject: [PATCH 471/683] ECC-1235: Fortran examples: Show how to convert an error code into a string --- examples/F90/CMakeLists.txt | 4 ++-- examples/F90/Makefile.am | 6 +++--- .../F90/{read_from_file.f90 => grib_read_from_file.f90} | 6 +++--- examples/F90/{read_from_file.sh => grib_read_from_file.sh} | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) rename examples/F90/{read_from_file.f90 => grib_read_from_file.f90} (95%) rename examples/F90/{read_from_file.sh => grib_read_from_file.sh} (89%) diff --git a/examples/F90/CMakeLists.txt b/examples/F90/CMakeLists.txt index 1a3b66c46..93b6435a1 100644 --- a/examples/F90/CMakeLists.txt +++ b/examples/F90/CMakeLists.txt @@ -34,7 +34,7 @@ if( HAVE_BUILD_TOOLS ) grib_count_messages_multi grib_copy_namespace grib_read_message - read_from_file + grib_read_from_file grib_get_set_uuid grib_clone bufr_attributes @@ -75,7 +75,7 @@ else() grib_samples grib_count_messages grib_count_messages_multi - read_from_file + grib_read_from_file grib_clone bufr_attributes bufr_clone diff --git a/examples/F90/Makefile.am b/examples/F90/Makefile.am index 6530fe905..a4824b086 100644 --- a/examples/F90/Makefile.am +++ b/examples/F90/Makefile.am @@ -6,7 +6,7 @@ TESTS = grib_copy_message.sh grib_get_keys.sh grib_get_data.sh grib_get_pl.sh gr grib_print_data.sh grib_set_keys.sh \ grib_set_bitmap.sh grib_set_missing.sh grib_set_pv.sh grib_samples.sh grib_count_messages.sh \ grib_read_message.sh grib_count_messages_multi.sh \ - read_from_file.sh grib_index.sh grib_get_set_uuid.sh \ + grib_read_from_file.sh grib_index.sh grib_get_set_uuid.sh \ bufr_attributes.sh grib_clone.sh bufr_clone.sh \ bufr_expanded.sh bufr_get_keys.sh bufr_get_string_array.sh \ bufr_read_header.sh bufr_read_synop.sh \ @@ -35,7 +35,7 @@ noinst_PROGRAMS = eccodes_f_grib_index \ eccodes_f_grib_count_messages \ eccodes_f_grib_count_messages_multi \ eccodes_f_grib_read_message \ - eccodes_f_read_from_file \ + eccodes_f_grib_read_from_file \ eccodes_f_new_from_file \ eccodes_f_grib_copy_namespace \ eccodes_f_grib_get_set_uuid \ @@ -77,7 +77,7 @@ eccodes_f_grib_samples_SOURCES=grib_samples.f90 eccodes_f_grib_count_messages_SOURCES=grib_count_messages.f90 eccodes_f_grib_count_messages_multi_SOURCES=grib_count_messages_multi.f90 eccodes_f_grib_read_message_SOURCES=grib_read_message.f90 -eccodes_f_read_from_file_SOURCES=read_from_file.f90 +eccodes_f_grib_read_from_file_SOURCES=grib_read_from_file.f90 eccodes_f_new_from_file_SOURCES=new_from_file.f90 eccodes_f_grib_copy_namespace_SOURCES=grib_copy_namespace.f90 eccodes_f_grib_get_set_uuid_SOURCES=grib_get_set_uuid.f90 diff --git a/examples/F90/read_from_file.f90 b/examples/F90/grib_read_from_file.f90 similarity index 95% rename from examples/F90/read_from_file.f90 rename to examples/F90/grib_read_from_file.f90 index 2397fa2f0..5a9e2b520 100644 --- a/examples/F90/read_from_file.f90 +++ b/examples/F90/grib_read_from_file.f90 @@ -9,7 +9,7 @@ ! Get message lengths using two different interfaces ! See GRIB-292 ! -program read_from_file +program grib_read_from_file use eccodes implicit none character(len=32) :: input_grib_file @@ -57,7 +57,7 @@ contains if (iret /= CODES_END_OF_FILE) then call codes_get_error_string(iret, error_message) write (*, *) 'error message: ', error_message - call codes_check(iret, 'read_from_file', '') + call codes_check(iret, 'grib_read_from_file', '') end if call codes_close_file(ifile) @@ -94,7 +94,7 @@ contains if (iret /= CODES_END_OF_FILE) then call codes_get_error_string(iret, error_message) write (*, *) 'error message: ', error_message - call codes_check(iret, 'read_from_file', '') + call codes_check(iret, 'grib_read_from_file', '') end if call codes_close_file(ifile) diff --git a/examples/F90/read_from_file.sh b/examples/F90/grib_read_from_file.sh similarity index 89% rename from examples/F90/read_from_file.sh rename to examples/F90/grib_read_from_file.sh index 116ffe8e1..5b8820df9 100755 --- a/examples/F90/read_from_file.sh +++ b/examples/F90/grib_read_from_file.sh @@ -13,4 +13,4 @@ # Check program completed successfully. We have to resort to testing # the output as there is no way in Fortran to set the exit code # -${examples_dir}/eccodes_f_read_from_file | grep 'Passed' +${examples_dir}/eccodes_f_grib_read_from_file | grep 'Passed' From 170a3c4d2572516b50d899c99cbba935ad8dd82e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 26 Apr 2021 14:28:30 +0100 Subject: [PATCH 472/683] ECC-1235: Add to Confluence --- confluence/examples.par | 1 + 1 file changed, 1 insertion(+) diff --git a/confluence/examples.par b/confluence/examples.par index d9c71e24e..07a1fbfeb 100644 --- a/confluence/examples.par +++ b/confluence/examples.par @@ -14,6 +14,7 @@ GRIB ( grib_nearest grib_precision grib_print_data + grib_read_from_file grib_samples grib_set_bitmap grib_set_data From e3cad311632e968217e0982aaae6136d6948fcf6 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 27 Apr 2021 12:44:31 +0100 Subject: [PATCH 473/683] ECC-1236: MARS Streams: Support next ENS-Extended range configuration --- definitions/mars/stream.table | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/definitions/mars/stream.table b/definitions/mars/stream.table index 601d18b61..8f6075db7 100644 --- a/definitions/mars/stream.table +++ b/definitions/mars/stream.table @@ -70,6 +70,12 @@ 1096 wmfm Wave monthly forecast means 1097 smma Seasonal monthly means anomalies 1110 seap Sensitive area prediction +1120 eefh Extended ensemble forecast hindcast +1121 eehs Extended ensemble forecast hindcast statistics +1122 eefo Extended ensemble prediction system +1123 weef Wave extended ensemble forecast +1124 weeh Wave extended ensemble forecast hindcast +1125 wees Wave extended ensemble forecast hindcast statistics 1200 mnfc Real-time 1201 mnfh Hindcasts 1202 mnfa Anomalies From ebe1670b661e8f4062e23747c18d2d394295cf49 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 27 Apr 2021 13:17:50 +0100 Subject: [PATCH 474/683] Testing: ensure MARS key values (stream, class, type) are unique --- tests/CMakeLists.txt | 2 +- tests/grib_mars_keys.sh | 55 ++++++++++++++++++++++++++++++++++++++++ tests/grib_mars_types.sh | 28 -------------------- 3 files changed, 56 insertions(+), 29 deletions(-) create mode 100755 tests/grib_mars_keys.sh delete mode 100755 tests/grib_mars_types.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 8fa904776..aaa6cd7b9 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -222,7 +222,7 @@ if( HAVE_BUILD_TOOLS ) grib_local_MeteoFrance grib_neg_fctime codes_split_file - grib_mars_types) + grib_mars_keys) if( HAVE_FORTRAN AND ENABLE_EXTRA_TESTS ) list(APPEND tests_data_reqd bufr_dump_encode_fortran) diff --git a/tests/grib_mars_keys.sh b/tests/grib_mars_keys.sh new file mode 100755 index 000000000..4eef24412 --- /dev/null +++ b/tests/grib_mars_keys.sh @@ -0,0 +1,55 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +label="grib_mars_keys" +grib1_sample=$ECCODES_SAMPLES_PATH/GRIB1.tmpl +temp=temp.${label}.out +types_table=$ECCODES_DEFINITION_PATH/mars/type.table +classes_table=$ECCODES_DEFINITION_PATH/mars/class.table +streams_table=$ECCODES_DEFINITION_PATH/mars/stream.table + +# Check numeric codes are unique +# ------------------------------- +tables="$types_table $classes_table $streams_table" +for table in $tables; do + echo "Testing numeric codes in $table ..." + awk '{print $1}' < $table > $temp + count1=`sort -u $temp | wc -l` + count2=`wc -l $temp | awk '{print $1}'` + [ $count1 = $count2 ] +done + +# Check abbreviations are unique +# ------------------------------- +tables="$types_table $classes_table $streams_table" +for table in $tables; do + echo "Testing abbreviations in $table ..." + awk '{print $2}' < $table > $temp + count1=`sort -u $temp | wc -l` + count2=`wc -l $temp | awk '{print $1}'` + [ $count1 = $count2 ] +done + +# Check MARS types +# ------------------------------ +# Exclude type=34 (go, Gridded observations) as it loads definitions/mars/grib.oper.go.def +# which requires the key 'N' to exist +mars_types=`awk '$1 !~ /34/ {print $1}' < $types_table` + +for t in $mars_types; do + #echo "Doing MARS type |$t|" + ${tools_dir}/grib_set -s marsType=$t,edition=2 $grib1_sample $temp + grib_check_key_equals $temp "mars.type:i" $t +done + + +rm -f $temp diff --git a/tests/grib_mars_types.sh b/tests/grib_mars_types.sh deleted file mode 100755 index b32627370..000000000 --- a/tests/grib_mars_types.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh -# (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# - -. ./include.sh - -label="grib_mars_types" -grib1_sample=$ECCODES_SAMPLES_PATH/GRIB1.tmpl -temp=temp.${label}.grib -types_table=$ECCODES_DEFINITION_PATH/mars/type.table - -# Exclude type=34 (go, Gridded observations) as it loads definitions/mars/grib.oper.go.def -# which requires the key 'N' to exist -mars_types=`awk '$1 !~ /34/ {print $1}' < $types_table` - -for t in $mars_types; do - #echo "Doing MARS type |$t|" - ${tools_dir}/grib_set -s marsType=$t,edition=2 $grib1_sample $temp - grib_check_key_equals $temp "mars.type:i" $t -done - -rm -f $temp From db0a97e39a891d7e173783f92c741ecf8a1e3fe9 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 28 Apr 2021 16:22:28 +0100 Subject: [PATCH 475/683] Scripts: WMO tables and surface types --- definitions/create_grib2_codetables.pl | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/definitions/create_grib2_codetables.pl b/definitions/create_grib2_codetables.pl index 38925f2f0..3b77241fa 100644 --- a/definitions/create_grib2_codetables.pl +++ b/definitions/create_grib2_codetables.pl @@ -180,8 +180,11 @@ sub TranslateCodes_Table_4_4 { ################################################################################################### sub TranslateCodes_Table_4_5 { my ($code) = @_; - return "sfc" if ($code eq "1" || $code eq "8" || $code eq "17" || $code eq "18" || - $code eq "101" || $code eq "103" || $code eq "106" || $code eq "177"); + return "sfc" if ($code eq "1" || $code eq "7" || + $code eq "8" || $code eq "17" || $code eq "18" || + $code eq "101" || $code eq "103" || $code eq "106" || + $code eq "162" || $code eq "166" || $code eq "174" || + $code eq "177"); return "pl" if ($code eq "100"); return "ml" if ($code eq "105"); return "pt" if ($code eq "107"); From c207d52c3e2355e6214dcf7debdf75773f9e8478 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 29 Apr 2021 16:54:04 +0100 Subject: [PATCH 476/683] ECC-1237: grib_compare behaves different for different compilers on CRAY --- definitions/grib1/local.98.1.def | 43 +++++++++++++++--------------- definitions/grib1/local.98.10.def | 2 ++ definitions/grib1/local.98.11.def | 1 + definitions/grib1/local.98.12.def | 1 - definitions/grib1/local.98.13.def | 1 + definitions/grib1/local.98.14.def | 1 + definitions/grib1/local.98.15.def | 5 ++-- definitions/grib1/local.98.16.def | 1 - definitions/grib1/local.98.17.def | 11 ++++---- definitions/grib1/local.98.18.def | 6 ++--- definitions/grib1/local.98.19.def | 1 + definitions/grib1/local.98.192.def | 29 ++++++++++---------- definitions/grib1/local.98.2.def | 1 + definitions/grib1/local.98.20.def | 3 ++- definitions/grib1/local.98.21.def | 1 + definitions/grib1/local.98.23.def | 3 +-- definitions/grib1/local.98.24.def | 1 + definitions/grib1/local.98.25.def | 6 ++--- definitions/grib1/local.98.26.def | 5 ++-- definitions/grib1/local.98.27.def | 3 +-- definitions/grib1/local.98.28.def | 2 +- definitions/grib1/local.98.29.def | 13 ++++----- definitions/grib1/local.98.3.def | 6 ++--- definitions/grib1/local.98.30.def | 23 ++++++++-------- definitions/grib1/local.98.31.def | 5 +--- definitions/grib1/local.98.32.def | 3 ++- definitions/grib1/local.98.33.def | 4 +-- definitions/grib1/local.98.35.def | 7 ++--- definitions/grib1/local.98.36.def | 43 +++++++++++++++--------------- definitions/grib1/local.98.37.def | 1 + definitions/grib1/local.98.38.def | 1 + definitions/grib1/local.98.39.def | 5 ++-- definitions/grib1/local.98.4.def | 41 ++++++++++++---------------- definitions/grib1/local.98.40.def | 1 + definitions/grib1/local.98.49.def | 5 ++-- definitions/grib1/local.98.5.def | 1 + definitions/grib1/local.98.50.def | 1 + definitions/grib1/local.98.6.def | 7 ++--- definitions/grib1/local.98.7.def | 3 ++- definitions/grib1/local.98.8.def | 1 + definitions/grib1/local.98.9.def | 3 ++- tools/grib_compare.c | 11 +++++--- 42 files changed, 162 insertions(+), 150 deletions(-) diff --git a/definitions/grib1/local.98.1.def b/definitions/grib1/local.98.1.def index d06ea2f20..d908b43ed 100644 --- a/definitions/grib1/local.98.1.def +++ b/definitions/grib1/local.98.1.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# MARS labelling or ensemble forecast data constant GRIBEXSection1Problem = 52 - section1Length ; @@ -19,31 +20,31 @@ if (stepType is "instant" ) { if (type is "em" || type is "es" ) { alias productDefinitionTemplateNumber=epsStatisticsPoint; } else { - if (numberOfForecastsInEnsemble!=0) { - if ((perturbationNumber/2)*2 == perturbationNumber) { - alias typeOfEnsembleForecast=two; - } else { - alias typeOfEnsembleForecast=three; - } - alias productDefinitionTemplateNumber=epsPoint; - } else { - alias productDefinitionTemplateNumber=zero; - } - } + if (numberOfForecastsInEnsemble!=0) { + if ((perturbationNumber/2)*2 == perturbationNumber) { + alias typeOfEnsembleForecast=two; + } else { + alias typeOfEnsembleForecast=three; + } + alias productDefinitionTemplateNumber=epsPoint; + } else { + alias productDefinitionTemplateNumber=zero; + } + } } else { if (type is "em" || type is "es" ) { alias productDefinitionTemplateNumber=epsStatisticsContinous; } else { - if (numberOfForecastsInEnsemble!=0) { - if ((perturbationNumber/2)*2 == perturbationNumber) { - alias typeOfEnsembleForecast=two; - } else { - alias typeOfEnsembleForecast=three; - } - alias productDefinitionTemplateNumber=epsContinous; - } else { - alias productDefinitionTemplateNumber=eight; - } + if (numberOfForecastsInEnsemble!=0) { + if ((perturbationNumber/2)*2 == perturbationNumber) { + alias typeOfEnsembleForecast=two; + } else { + alias typeOfEnsembleForecast=three; + } + alias productDefinitionTemplateNumber=epsContinous; + } else { + alias productDefinitionTemplateNumber=eight; + } } } diff --git a/definitions/grib1/local.98.10.def b/definitions/grib1/local.98.10.def index 625026d06..eab715a9e 100644 --- a/definitions/grib1/local.98.10.def +++ b/definitions/grib1/local.98.10.def @@ -1,4 +1,6 @@ # (C) Copyright 2005- ECMWF. +# EPS tubes + constant GRIBEXSection1Problem = 334 - section1Length ; template mars_labeling "grib1/mars_labeling.def"; diff --git a/definitions/grib1/local.98.11.def b/definitions/grib1/local.98.11.def index 658c8ba8d..475ab900f 100644 --- a/definitions/grib1/local.98.11.def +++ b/definitions/grib1/local.98.11.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Supplementary data used by the analysis constant GRIBEXSection1Problem = 72 - section1Length ; diff --git a/definitions/grib1/local.98.12.def b/definitions/grib1/local.98.12.def index b1705045b..3a65f98b6 100644 --- a/definitions/grib1/local.98.12.def +++ b/definitions/grib1/local.98.12.def @@ -1,5 +1,4 @@ # (C) Copyright 2005- ECMWF. - # Seasonal forecast monthly mean data for lagged systems constant GRIBEXSection1Problem = 120 - section1Length ; diff --git a/definitions/grib1/local.98.13.def b/definitions/grib1/local.98.13.def index 84acafb64..876e2c5a5 100644 --- a/definitions/grib1/local.98.13.def +++ b/definitions/grib1/local.98.13.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Wave 2D spectra direction and frequency template mars_labeling "grib1/mars_labeling.def"; diff --git a/definitions/grib1/local.98.14.def b/definitions/grib1/local.98.14.def index ad0901a49..9244c552e 100644 --- a/definitions/grib1/local.98.14.def +++ b/definitions/grib1/local.98.14.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Brightness temperature constant GRIBEXSection1Problem = 1080 - section1Length ; diff --git a/definitions/grib1/local.98.15.def b/definitions/grib1/local.98.15.def index 3a66d9e64..7602766b6 100644 --- a/definitions/grib1/local.98.15.def +++ b/definitions/grib1/local.98.15.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Seasonal forecast data # used in local definition 13 constant GRIBEXSection1Problem = 60 - section1Length ; @@ -10,9 +11,9 @@ template mars_labeling "grib1/mars_labeling.def"; alias grib2LocalSectionPresent=present; constant grib2LocalSectionNumber=15; if (stepType is "instant") { - alias productDefinitionTemplateNumber=one; + alias productDefinitionTemplateNumber=one; } else { - alias productDefinitionTemplateNumber=eleven; + alias productDefinitionTemplateNumber=eleven; } unsigned[2] perturbationNumber : dump ; diff --git a/definitions/grib1/local.98.16.def b/definitions/grib1/local.98.16.def index 4e5f184cd..f3ff7040a 100644 --- a/definitions/grib1/local.98.16.def +++ b/definitions/grib1/local.98.16.def @@ -1,5 +1,4 @@ # (C) Copyright 2005- ECMWF. - # Seasonal forecast monthly mean data constant GRIBEXSection1Problem = 80 - section1Length ; diff --git a/definitions/grib1/local.98.17.def b/definitions/grib1/local.98.17.def index e5ea33c3c..83fa341b2 100644 --- a/definitions/grib1/local.98.17.def +++ b/definitions/grib1/local.98.17.def @@ -1,14 +1,14 @@ # (C) Copyright 2005- ECMWF. +# Surface temperature or sea-ice data template mars_labeling "grib1/mars_labeling.def"; -# zeroes #pad padding_loc17_1(2); -unsigned[1] perturbationNumber : dump; +unsigned[1] perturbationNumber : dump; alias number = perturbationNumber; -unsigned[1] numberOfForecastsInEnsemble : dump; +unsigned[1] numberOfForecastsInEnsemble : dump; # Need a proper date (sst_date) unsigned[3] dateOfSSTFieldUsed : dump ; @@ -18,10 +18,9 @@ unsigned[1] typeOfSSTFieldUsed : dump ; unsigned[1] countOfICEFieldsUsed : dump ; position offsetICEFieldsUsed; -ICEFieldsUsed list(countOfICEFieldsUsed) -{ +ICEFieldsUsed list(countOfICEFieldsUsed) { unsigned[3] dateOfIceFieldUsed : dump ; -# d3date dateOfIceFieldUsed ; + # d3date dateOfIceFieldUsed ; unsigned[1] satelliteNumber : dump ; } diff --git a/definitions/grib1/local.98.18.def b/definitions/grib1/local.98.18.def index a7dd80414..2897af593 100644 --- a/definitions/grib1/local.98.18.def +++ b/definitions/grib1/local.98.18.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Multianalysis ensemble data constant GRIBEXSection1Problem = 120 - section1Length ; @@ -9,7 +10,7 @@ constant grib2LocalSectionNumber=18; if (stepType is "instant" ) { alias productDefinitionTemplateNumber=epsPoint; } else { - alias productDefinitionTemplateNumber=epsContinous; + alias productDefinitionTemplateNumber=epsContinous; } template mars_labeling "grib1/mars_labeling.def"; @@ -31,8 +32,7 @@ pad padding_loc18_1(3); #ascii[60] ccccIdentifiers : dump ; -consensus list(consensusCount) -{ +consensus list(consensusCount) { ascii[4] ccccIdentifiers : dump; } diff --git a/definitions/grib1/local.98.19.def b/definitions/grib1/local.98.19.def index c93438c7b..7c9a4f613 100644 --- a/definitions/grib1/local.98.19.def +++ b/definitions/grib1/local.98.19.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Extreme forecast index data template mars_labeling "grib1/mars_labeling.def"; diff --git a/definitions/grib1/local.98.192.def b/definitions/grib1/local.98.192.def index 7b0dd9295..89529ca5f 100644 --- a/definitions/grib1/local.98.192.def +++ b/definitions/grib1/local.98.192.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Multiple ECMWF local definitions # The mars labeling must be inline # template mars_labeling "grib1/mars_labeling.def"; @@ -22,18 +23,18 @@ pad padding_loc192_1(2); unsigned[1] numberOfLocalDefinitions = 2 : dump; if (numberOfLocalDefinitions == 2 ) { - unsigned[2] subLocalDefinitionLength1 = 7 : dump; - unsigned[1] subLocalDefinitionNumber1 = 1 : dump; - codetable[1] marsClass1 "mars/class.table" = "od" : dump,string_type,lowercase; - codetable[1] marsType1 "mars/type.table" = "an" : dump,string_type,lowercase; - codetable[2] marsStream1 "mars/stream.table" = "oper" : dump,string_type,lowercase; - ksec1expver[4] experimentVersionNumber1 = "0001" : dump; - template subDefinitions1 "grib1/local_no_mars.98.[subLocalDefinitionNumber1].def"; - unsigned[2] subLocalDefinitionLength2 = 9 : dump; - unsigned[1] subLocalDefinitionNumber2 = 24 : dump; - codetable[1] marsClass2 "mars/class.table" = "od" : dump,string_type,lowercase; - codetable[1] marsType2 "mars/type.table" = "an" : dump,string_type,lowercase; - codetable[2] marsStream2 "mars/stream.table" = "oper" : dump,string_type,lowercase; - ksec1expver[4] experimentVersionNumber2 = "0001" : dump; - template subDefinitions2 "grib1/local_no_mars.98.[subLocalDefinitionNumber2].def"; + unsigned[2] subLocalDefinitionLength1 = 7 : dump; + unsigned[1] subLocalDefinitionNumber1 = 1 : dump; + codetable[1] marsClass1 "mars/class.table" = "od" : dump,string_type,lowercase; + codetable[1] marsType1 "mars/type.table" = "an" : dump,string_type,lowercase; + codetable[2] marsStream1 "mars/stream.table" = "oper" : dump,string_type,lowercase; + ksec1expver[4] experimentVersionNumber1 = "0001" : dump; + template subDefinitions1 "grib1/local_no_mars.98.[subLocalDefinitionNumber1].def"; + unsigned[2] subLocalDefinitionLength2 = 9 : dump; + unsigned[1] subLocalDefinitionNumber2 = 24 : dump; + codetable[1] marsClass2 "mars/class.table" = "od" : dump,string_type,lowercase; + codetable[1] marsType2 "mars/type.table" = "an" : dump,string_type,lowercase; + codetable[2] marsStream2 "mars/stream.table" = "oper" : dump,string_type,lowercase; + ksec1expver[4] experimentVersionNumber2 = "0001" : dump; + template subDefinitions2 "grib1/local_no_mars.98.[subLocalDefinitionNumber2].def"; } diff --git a/definitions/grib1/local.98.2.def b/definitions/grib1/local.98.2.def index 1dbe247c7..df56d0ad6 100644 --- a/definitions/grib1/local.98.2.def +++ b/definitions/grib1/local.98.2.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Cluster means and standard deviations constant GRIBEXSection1Problem = 328 - section1Length ; diff --git a/definitions/grib1/local.98.20.def b/definitions/grib1/local.98.20.def index 4e114e911..a74ea96d5 100644 --- a/definitions/grib1/local.98.20.def +++ b/definitions/grib1/local.98.20.def @@ -1,8 +1,9 @@ # (C) Copyright 2005- ECMWF. +# 4D variational increments constant GRIBEXSection1Problem = 52 - section1Length ; -# 1 -> 2 +# 1->2 alias grib2LocalSectionPresent=present; constant grib2LocalSectionNumber=20; diff --git a/definitions/grib1/local.98.21.def b/definitions/grib1/local.98.21.def index e10f108da..dd777536e 100644 --- a/definitions/grib1/local.98.21.def +++ b/definitions/grib1/local.98.21.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Sensitive area predictions constant GRIBEXSection1Problem = 100 - section1Length ; diff --git a/definitions/grib1/local.98.23.def b/definitions/grib1/local.98.23.def index f23fce2be..53d08a658 100644 --- a/definitions/grib1/local.98.23.def +++ b/definitions/grib1/local.98.23.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Coupled atmospheric, wave and ocean means (with hindcast support) constant GRIBEXSection1Problem = 84 - section1Length ; @@ -40,13 +41,11 @@ alias local.thresholdIndicator=thresholdIndicator ; alias local.lowerThresholdValue=lowerThresholdValue ; alias local.upperThresholdValue=upperThresholdValue; - # TODO: BR Note: this is not where we expect it!! unsigned[2] numberOfForecastsInEnsemble : dump; alias totalNumber=numberOfForecastsInEnsemble; - #spareSetToZero pad padding_loc23_1(2); diff --git a/definitions/grib1/local.98.24.def b/definitions/grib1/local.98.24.def index 32f9341af..080447e57 100644 --- a/definitions/grib1/local.98.24.def +++ b/definitions/grib1/local.98.24.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Satellite image simulation constant GRIBEXSection1Problem = 56 - section1Length ; diff --git a/definitions/grib1/local.98.25.def b/definitions/grib1/local.98.25.def index 21b178918..ededf5058 100644 --- a/definitions/grib1/local.98.25.def +++ b/definitions/grib1/local.98.25.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# 4DVar model errors template mars_labeling "grib1/mars_labeling.def"; @@ -6,12 +7,11 @@ template mars_labeling "grib1/mars_labeling.def"; alias grib2LocalSectionPresent=present; constant grib2LocalSectionNumber=25; if (stepType is "instant") { - alias productDefinitionTemplateNumber=zero; + alias productDefinitionTemplateNumber=zero; } else { - alias productDefinitionTemplateNumber=eight; + alias productDefinitionTemplateNumber=eight; } - constant GRIBEXSection1Problem = 52 - section1Length ; unsigned[1] componentIndex : dump; diff --git a/definitions/grib1/local.98.26.def b/definitions/grib1/local.98.26.def index 83025d4bd..2ebd5a6c1 100644 --- a/definitions/grib1/local.98.26.def +++ b/definitions/grib1/local.98.26.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# MARS labelling or ensemble forecast data (with hindcast support) constant GRIBEXSection1Problem = 69 - section1Length ; @@ -11,9 +12,9 @@ alias grib2LocalSectionPresent=present; constant grib2LocalSectionNumber=26; if (stepType is "instant" ) { - alias productDefinitionTemplateNumber=epsPoint; + alias productDefinitionTemplateNumber=epsPoint; } else { - alias productDefinitionTemplateNumber=epsContinous; + alias productDefinitionTemplateNumber=epsContinous; } constant wrongPadding=1 : hidden; diff --git a/definitions/grib1/local.98.27.def b/definitions/grib1/local.98.27.def index 345f41f77..4693dde22 100644 --- a/definitions/grib1/local.98.27.def +++ b/definitions/grib1/local.98.27.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Forecasting Systems with Variable Resolution (Obsolete) constant GRIBEXSection1Problem = 107 - section1Length ; @@ -8,13 +9,11 @@ transient grib2LocalSectionNumber=30; template mars_labeling "grib1/mars_labeling.def"; constant wrongPadding=1 : hidden; - unsigned[1] perturbationNumber : dump ; unsigned[1] numberOfForecastsInEnsemble : dump ; alias totalNumber=numberOfForecastsInEnsemble; alias number = perturbationNumber; - unsigned[1] oceanAtmosphereCoupling : dump ; pad padding_loc27_1(3); diff --git a/definitions/grib1/local.98.28.def b/definitions/grib1/local.98.28.def index 8b4ad9084..d7393dd26 100644 --- a/definitions/grib1/local.98.28.def +++ b/definitions/grib1/local.98.28.def @@ -1,8 +1,8 @@ # (C) Copyright 2005- ECMWF. +# COSMO local area EPS # information about probabilities (they have already probabilities) # information about clustering (they save it as ASCII, at the moment...) -# constant GRIBEXSection1Problem = 79 - section1Length ; template mars_labeling "grib1/mars_labeling.def"; diff --git a/definitions/grib1/local.98.29.def b/definitions/grib1/local.98.29.def index 3b4cf72a5..9240ded6d 100644 --- a/definitions/grib1/local.98.29.def +++ b/definitions/grib1/local.98.29.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# COSMO clustering information constant GRIBEXSection1Problem = 960 - section1Length ; @@ -23,14 +24,14 @@ unsigned[1] numberOfStepsUsedForClustering : dump ; pad padding_loc29_2(10); listOfEnsembleForecastNumbers list(numberOfForecastsInCluster){ - unsigned[4] baseDateEPS : dump; - unsigned[2] baseTimeEPS : dump; - unsigned[1] number : dump; + unsigned[4] baseDateEPS : dump; + unsigned[2] baseTimeEPS : dump; + unsigned[1] number : dump; } listOfParametersUsedForClustering list(numberOfParametersUsedForClustering){ - unsigned[1] parameterCode; - unsigned[1] tableCode; + unsigned[1] parameterCode; + unsigned[1] tableCode; } unsigned[2] pressureLevel[numberOfPressureLevelsUsedForClustering] : dump; @@ -38,7 +39,7 @@ unsigned[2] pressureLevel[numberOfPressureLevelsUsedForClustering] : dump; # Name_change old=step new=stepForClustering unsigned[2] stepForClustering[numberOfStepsUsedForClustering] : dump; -#spareToEnsureFixedLength - PADTO n/a 960 +#spareToEnsureFixedLength - PADTO n/a 960 padto padding_loc29_3(offsetSection1 + 960); alias number = clusterNumber; diff --git a/definitions/grib1/local.98.3.def b/definitions/grib1/local.98.3.def index 66838992b..990ae1d8f 100644 --- a/definitions/grib1/local.98.3.def +++ b/definitions/grib1/local.98.3.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Satellite image data constant GRIBEXSection1Problem = 52 - section1Length ; @@ -6,13 +7,12 @@ template mars_labeling "grib1/mars_labeling.def"; constant operStream = "oper"; alias mars.stream = operStream; - unsigned[1] band : dump; alias mars.obstype = band; -meta marsIdent sprintf("%d",indicatorOfTypeOfLevel) : dump; +meta marsIdent sprintf("%d",indicatorOfTypeOfLevel) : dump; alias mars.ident = marsIdent; -unsigned[1] functionCode : dump; +unsigned[1] functionCode : dump; pad padding_loc3_1(1); diff --git a/definitions/grib1/local.98.30.def b/definitions/grib1/local.98.30.def index 952bf2f67..ee7c46a5e 100644 --- a/definitions/grib1/local.98.30.def +++ b/definitions/grib1/local.98.30.def @@ -1,6 +1,6 @@ # (C) Copyright 2005- ECMWF. - # Forecasting Systems with Variable Resolution + constant GRIBEXSection1Problem = 106 - section1Length ; # used in local definition 13 @@ -14,20 +14,19 @@ template mars_labeling "grib1/mars_labeling.def"; #1->2 if (stepType is "instant" ) { - if (type is "em" || type is "es" ) { - alias productDefinitionTemplateNumber=epsStatisticsPoint; - } else { - alias productDefinitionTemplateNumber=epsPoint; - } + if (type is "em" || type is "es" ) { + alias productDefinitionTemplateNumber=epsStatisticsPoint; + } else { + alias productDefinitionTemplateNumber=epsPoint; + } } else { - if (type is "em" || type is "es" ) { - alias productDefinitionTemplateNumber=epsStatisticsContinous; - } else { - alias productDefinitionTemplateNumber=epsContinous; - } + if (type is "em" || type is "es" ) { + alias productDefinitionTemplateNumber=epsStatisticsContinous; + } else { + alias productDefinitionTemplateNumber=epsContinous; + } } - unsigned[1] perturbationNumber : dump; alias number=perturbationNumber; unsigned[1] numberOfForecastsInEnsemble : dump; diff --git a/definitions/grib1/local.98.31.def b/definitions/grib1/local.98.31.def index e565832b3..ed5011ad5 100644 --- a/definitions/grib1/local.98.31.def +++ b/definitions/grib1/local.98.31.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# EUROSIP products constant GRIBEXSection1Problem = 240 - section1Length ; @@ -12,13 +13,9 @@ alias totalNumber=numberOfForecastsInEnsemble; unsigned[2] forecastMonth : dump; - - - unsigned[4] dateOfForecastRun : dump; alias referenceDate = dateOfForecastRun; - unsigned[1] numberOfModels :dump; pad padding_local1_31(42); listOfModelIdentifiers list (numberOfModels) { diff --git a/definitions/grib1/local.98.32.def b/definitions/grib1/local.98.32.def index 4e90083fd..c8c593f80 100644 --- a/definitions/grib1/local.98.32.def +++ b/definitions/grib1/local.98.32.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Cluster Scenarios constant GRIBEXSection1Problem = 328 - section1Length ; @@ -37,7 +38,7 @@ codetable[1] climatologicalRegime "grib1/regime.table" : dump; unsigned[1] numberOfForecastsInCluster : dump; if (numberOfForecastsInCluster > 0) { -unsigned[1] ensembleForecastNumbers[numberOfForecastsInCluster] : dump; + unsigned[1] ensembleForecastNumbers[numberOfForecastsInCluster] : dump; } # spareToEnsureFixedLength padto padding_loc2_2(offsetSection1 + 328); diff --git a/definitions/grib1/local.98.33.def b/definitions/grib1/local.98.33.def index 20fe3936e..61917dff7 100644 --- a/definitions/grib1/local.98.33.def +++ b/definitions/grib1/local.98.33.def @@ -14,11 +14,11 @@ transient secondsOfReference = 0 ; unsigned[1] numberOfForcasts=0 : dump; if (numberOfForcasts) { - unsigned[3] forecastSteps[numberOfForcasts] : dump; + unsigned[3] forecastSteps[numberOfForcasts] : dump; } unsigned[1] numberOfAnalysis=1 : dump; if (numberOfAnalysis) { - signed[3] analysisOffsets[numberOfAnalysis] : dump; + signed[3] analysisOffsets[numberOfAnalysis] : dump; } meta dateOfReference g1date(centuryOfReference,yearOfReference,monthOfReference,dayOfReference) : dump; diff --git a/definitions/grib1/local.98.35.def b/definitions/grib1/local.98.35.def index 62e5dfcda..7072c1316 100644 --- a/definitions/grib1/local.98.35.def +++ b/definitions/grib1/local.98.35.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Elaboration of ocean model products constant GRIBEXSection1Problem = 120 - section1Length ; @@ -16,10 +17,10 @@ unsigned[1] numberOfForcasts=0 : dump; unsigned[1] numberOfAnalysis=1 : dump; if (numberOfForcasts) { - unsigned[3] forecastSteps[numberOfForcasts] : dump; + unsigned[3] forecastSteps[numberOfForcasts] : dump; } if (numberOfAnalysis) { - signed[3] analysisOffsets[numberOfAnalysis] : dump; + signed[3] analysisOffsets[numberOfAnalysis] : dump; } padto padding_local_35(offsetSection1 + 120); @@ -28,5 +29,5 @@ meta dateOfReference g1date(centuryOfReference,yearOfReference,monthOfReference meta timeOfReference time(hourOfReference,minuteOfReference,secondsOfReference) : dump; if (indicatorOfTypeOfLevel==160) { - alias mars.levelist = level; + alias mars.levelist = level; } diff --git a/definitions/grib1/local.98.36.def b/definitions/grib1/local.98.36.def index fbffd4600..c0b6a1baf 100644 --- a/definitions/grib1/local.98.36.def +++ b/definitions/grib1/local.98.36.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# MARS labelling for long window 4Dvar system constant GRIBEXSection1Problem = 56 - section1Length ; @@ -25,30 +26,30 @@ if (stepType is "instant" ) { if (type is "em" || type is "es" ) { alias productDefinitionTemplateNumber=epsStatisticsPoint; } else { - if (numberOfForecastsInEnsemble!=0) { - if ((perturbationNumber/2)*2 == perturbationNumber) { - alias typeOfEnsembleForecast=two; - } else { - alias typeOfEnsembleForecast=three; - } - alias productDefinitionTemplateNumber=epsPoint; - } else { - alias productDefinitionTemplateNumber=zero; - } - } + if (numberOfForecastsInEnsemble!=0) { + if ((perturbationNumber/2)*2 == perturbationNumber) { + alias typeOfEnsembleForecast=two; + } else { + alias typeOfEnsembleForecast=three; + } + alias productDefinitionTemplateNumber=epsPoint; + } else { + alias productDefinitionTemplateNumber=zero; + } + } } else { if (type is "em" || type is "es" ) { alias productDefinitionTemplateNumber=epsStatisticsContinous; } else { - if (numberOfForecastsInEnsemble!=0) { - if ((perturbationNumber/2)*2 == perturbationNumber) { - alias typeOfEnsembleForecast=two; - } else { - alias typeOfEnsembleForecast=three; - } - alias productDefinitionTemplateNumber=epsContinous; - } else { - alias productDefinitionTemplateNumber=eight; - } + if (numberOfForecastsInEnsemble!=0) { + if ((perturbationNumber/2)*2 == perturbationNumber) { + alias typeOfEnsembleForecast=two; + } else { + alias typeOfEnsembleForecast=three; + } + alias productDefinitionTemplateNumber=epsContinous; + } else { + alias productDefinitionTemplateNumber=eight; + } } } diff --git a/definitions/grib1/local.98.37.def b/definitions/grib1/local.98.37.def index c4db38667..8702e84e0 100644 --- a/definitions/grib1/local.98.37.def +++ b/definitions/grib1/local.98.37.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Brightness temperature for long window 4Dvar system constant GRIBEXSection1Problem = 1080 - section1Length ; diff --git a/definitions/grib1/local.98.38.def b/definitions/grib1/local.98.38.def index 74cb02ea4..c5bad3b79 100644 --- a/definitions/grib1/local.98.38.def +++ b/definitions/grib1/local.98.38.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# 4D variational increments for long window 4Dvar system constant GRIBEXSection1Problem = 56 - section1Length ; diff --git a/definitions/grib1/local.98.39.def b/definitions/grib1/local.98.39.def index f59c67f3e..ac5c62099 100644 --- a/definitions/grib1/local.98.39.def +++ b/definitions/grib1/local.98.39.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# 4DVar model errors for long window 4Dvar system template mars_labeling "grib1/mars_labeling.def"; @@ -6,9 +7,9 @@ template mars_labeling "grib1/mars_labeling.def"; alias grib2LocalSectionPresent=present; constant grib2LocalSectionNumber=39; if (stepType is "instant") { - alias productDefinitionTemplateNumber=zero; + alias productDefinitionTemplateNumber=zero; } else { - alias productDefinitionTemplateNumber=eight; + alias productDefinitionTemplateNumber=eight; } constant GRIBEXSection1Problem = 56 - section1Length ; diff --git a/definitions/grib1/local.98.4.def b/definitions/grib1/local.98.4.def index bf4c18270..7a11e510d 100644 --- a/definitions/grib1/local.98.4.def +++ b/definitions/grib1/local.98.4.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Ocean model data constant GRIBEXSection1Problem = 0 ; @@ -7,19 +8,16 @@ transient localFlag=1 : hidden ; constant oceanStream = 1090; -if(marsStream == oceanStream) -{ - unsigned[2] perturbationNumber : dump ; +if(marsStream == oceanStream) { + unsigned[2] perturbationNumber : dump ; } -if(marsStream != oceanStream) -{ - unsigned[1] perturbationNumber : dump ; - pad padding_loc4_2(1); +if(marsStream != oceanStream) { + unsigned[1] perturbationNumber : dump ; + pad padding_loc4_2(1); } unsigned[1] flagShowingPostAuxiliaryArrayInUse; -# 'grib1/ocean.1.table'; unsigned[1] systemNumber : dump ; alias system=systemNumber; @@ -40,7 +38,6 @@ unsigned[1] timeUnitFlag : dump ; unsigned[1] timeCoordinateDefinition : dump ; - # # Position definition: mixed coordinates # @@ -105,21 +102,18 @@ unsigned[2] numberInTheAuxiliaryArray : dump ; # Horizontal coordinate definition # - unsigned[4] horizontalCoordinateSupplement[numberInHorizontalCoordinates] : dump; # # Mixed coordinate definition # - unsigned[4] mixedCoordinateDefinition[numberInMixedCoordinateDefinition] : dump; # # Grid coordinate list # if (numberInTheGridCoordinateList>0) { - signed[4] gridCoordinate[numberInTheGridCoordinateList] : dump; } @@ -135,19 +129,18 @@ unsigned[4] auxiliary[numberInTheAuxiliaryArray] : dump; constant postAuxiliaryArrayPresent = 1; -if (flagShowingPostAuxiliaryArrayInUse == postAuxiliaryArrayPresent){ - unsigned[4] sizeOfPostAuxiliaryArrayPlusOne : dump; - meta sizeOfPostAuxiliaryArray evaluate(sizeOfPostAuxiliaryArrayPlusOne - 1); - if (sizeOfPostAuxiliaryArray>0) { - unsigned[4] postAuxiliary[sizeOfPostAuxiliaryArray] : dump; - - if (sizeOfPostAuxiliaryArray>3) { - meta referenceDate element(postAuxiliary,3); - } - } else { - transient referenceDate=0; - } +if (flagShowingPostAuxiliaryArrayInUse == postAuxiliaryArrayPresent) { + unsigned[4] sizeOfPostAuxiliaryArrayPlusOne : dump; + meta sizeOfPostAuxiliaryArray evaluate(sizeOfPostAuxiliaryArrayPlusOne - 1); + if (sizeOfPostAuxiliaryArray>0) { + unsigned[4] postAuxiliary[sizeOfPostAuxiliaryArray] : dump; + if (sizeOfPostAuxiliaryArray>3) { + meta referenceDate element(postAuxiliary,3); + } + } else { + transient referenceDate=0; + } } alias hdate = dataDate; diff --git a/definitions/grib1/local.98.40.def b/definitions/grib1/local.98.40.def index 4e92d73eb..424e940c1 100644 --- a/definitions/grib1/local.98.40.def +++ b/definitions/grib1/local.98.40.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# MARS labeling with domain and model (for LAM) constant GRIBEXSection1Problem = 56 - section1Length ; diff --git a/definitions/grib1/local.98.49.def b/definitions/grib1/local.98.49.def index 6a8543b0b..bdd987f38 100644 --- a/definitions/grib1/local.98.49.def +++ b/definitions/grib1/local.98.49.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# 4DVar model errors for ELDA template mars_labeling "grib1/mars_labeling.def"; @@ -6,9 +7,9 @@ template mars_labeling "grib1/mars_labeling.def"; alias grib2LocalSectionPresent=present; constant grib2LocalSectionNumber=49; if (stepType is "instant") { - alias productDefinitionTemplateNumber=zero; + alias productDefinitionTemplateNumber=zero; } else { - alias productDefinitionTemplateNumber=eight; + alias productDefinitionTemplateNumber=eight; } constant GRIBEXSection1Problem = 56 - section1Length ; diff --git a/definitions/grib1/local.98.5.def b/definitions/grib1/local.98.5.def index a152d85cf..98bbc3517 100644 --- a/definitions/grib1/local.98.5.def +++ b/definitions/grib1/local.98.5.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Forecast probability data constant GRIBEXSection1Problem = 58 - section1Length ; diff --git a/definitions/grib1/local.98.50.def b/definitions/grib1/local.98.50.def index 182d6fe3c..192cb40f8 100644 --- a/definitions/grib1/local.98.50.def +++ b/definitions/grib1/local.98.50.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# Member State data constant GRIBEXSection1Problem = 300 - section1Length ; diff --git a/definitions/grib1/local.98.6.def b/definitions/grib1/local.98.6.def index 8e3ed4911..3cf9d2d73 100644 --- a/definitions/grib1/local.98.6.def +++ b/definitions/grib1/local.98.6.def @@ -1,9 +1,8 @@ # (C) Copyright 2005- ECMWF. +# Surface temperature data template mars_labeling "grib1/mars_labeling.def"; -# zeroes - pad padding_loc6_1(2); unsigned[3] dateSSTFieldUsed : dump; @@ -12,9 +11,7 @@ unsigned[1] typeOfSSTFieldUsed : dump; unsigned[1] countOfICEFieldsUsed : dump; - -ICEFieldsUsed list(countOfICEFieldsUsed) -{ +ICEFieldsUsed list(countOfICEFieldsUsed) { unsigned[3] dateOfIceFieldUsed : dump ; unsigned[1] satelliteNumber : dump ; } diff --git a/definitions/grib1/local.98.7.def b/definitions/grib1/local.98.7.def index 9b15b410b..5a938a0ee 100644 --- a/definitions/grib1/local.98.7.def +++ b/definitions/grib1/local.98.7.def @@ -1,6 +1,7 @@ # (C) Copyright 2005- ECMWF. +# Sensitivity data -# 1-> 2 +# 1->2 alias grib2LocalSectionPresent=present; constant grib2LocalSectionNumber=7; diff --git a/definitions/grib1/local.98.8.def b/definitions/grib1/local.98.8.def index b2878870d..e181452c5 100644 --- a/definitions/grib1/local.98.8.def +++ b/definitions/grib1/local.98.8.def @@ -1,4 +1,5 @@ # (C) Copyright 2005- ECMWF. +# ECMWF reanalysis data constant GRIBEXSection1Problem = 62 - section1Length ; diff --git a/definitions/grib1/local.98.9.def b/definitions/grib1/local.98.9.def index a3d37151b..4d419f4cf 100644 --- a/definitions/grib1/local.98.9.def +++ b/definitions/grib1/local.98.9.def @@ -1,6 +1,7 @@ # (C) Copyright 2005- ECMWF. +# Singular vectors and ensemble perturbations -# 1-> 2 +# 1->2 alias grib2LocalSectionPresent=present; constant grib2LocalSectionNumber=9; diff --git a/tools/grib_compare.c b/tools/grib_compare.c index de557c093..b38d22505 100644 --- a/tools/grib_compare.c +++ b/tools/grib_compare.c @@ -91,6 +91,8 @@ static int global_counter = 0; static int theStart = -1; static int theEnd = -1; +#define MINIMUM(x, y) ((x) < (y) ? (x) : (y)) + GRIB_INLINE static int grib_inline_strcmp(const char* a, const char* b) { if (*a != *b) @@ -1071,17 +1073,18 @@ static int compare_values(grib_runtime_options* options, grib_handle* h1, grib_h } if (err1 == GRIB_SUCCESS && err2 == GRIB_SUCCESS) { - if (memcmp(uval1, uval2, len1) != 0) { - for (i = 0; i < len1; i++) + const size_t len_min = MINIMUM(len1, len2); + if (memcmp(uval1, uval2, len_min) != 0) { + for (i = 0; i < len_min; i++) if (uval1[i] != uval2[i]) { printInfo(h1); save_error(c, name); - if (len1 == 1) + if (len_min == 1) printf("[%s] byte values are different: [%02x] and [%02x]\n", name, uval1[i], uval2[i]); else printf("[%s] byte value %d of %ld is different: [%02x] and [%02x]\n", - name, i, (long)len1, uval1[i], uval2[i]); + name, i, (long)len_min, uval1[i], uval2[i]); err1 = GRIB_VALUE_MISMATCH; break; From 6996b64061921ea54d85d23ba4bdfc25d53e9b47 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 30 Apr 2021 13:02:34 +0100 Subject: [PATCH 477/683] ECC-1201: grib_util_set_spec: packing=av on IEEE packed gribs (initial try) --- src/grib_util.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/grib_util.c b/src/grib_util.c index faf09dc15..def44623d 100644 --- a/src/grib_util.c +++ b/src/grib_util.c @@ -980,6 +980,16 @@ grib_handle* grib_util_set_spec2(grib_handle* h, fprintf(stderr, "ECCODES DEBUG grib_util: input_decimal_scale_factor = %ld\n", input_decimal_scale_factor); } + /* ECC-1201 + TODO: make sure input packing type is preserved */ + if (packing_spec->packing == GRIB_UTIL_PACKING_SAME_AS_INPUT && + packing_spec->packing_type == GRIB_UTIL_PACKING_TYPE_SAME_AS_INPUT) + { + if (STR_EQUAL(input_packing_type, "grid_ieee")) { + SET_STRING_VALUE("packingType", input_packing_type); + } + } + /*if ( (*err=check_values(data_values, data_values_count))!=GRIB_SUCCESS ) { fprintf(stderr,"GRIB_UTIL_SET_SPEC: Data values check failed! %s\n", grib_get_error_message(*err)); goto cleanup; From c6cf83bbae065563759ab378a98f76ffccac0b07 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 5 May 2021 16:41:35 +0100 Subject: [PATCH 478/683] ECC-1239: grib_get_data: Polar Stereographic: Better error message if earth is oblate --- src/grib_iterator_class_polar_stereographic.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/grib_iterator_class_polar_stereographic.c b/src/grib_iterator_class_polar_stereographic.c index f0f8a606d..1a29fd567 100644 --- a/src/grib_iterator_class_polar_stereographic.c +++ b/src/grib_iterator_class_polar_stereographic.c @@ -149,6 +149,11 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args) const char* sjPointsAreConsecutive = grib_arguments_get_name(h, args, self->carg++); const char* salternativeRowScanning = grib_arguments_get_name(h, args, self->carg++); + if (grib_is_earth_oblate(h)) { + grib_context_log(h->context, GRIB_LOG_ERROR, "Polar stereographic only supported for spherical earth."); + return GRIB_GEOCALCULUS_PROBLEM; + } + if ((ret = grib_get_double_internal(h, sradius, &radius)) != GRIB_SUCCESS) return ret; if ((ret = grib_get_long_internal(h, snx, &nx)) != GRIB_SUCCESS) @@ -156,11 +161,6 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args) if ((ret = grib_get_long_internal(h, sny, &ny)) != GRIB_SUCCESS) return ret; - if (grib_is_earth_oblate(h)) { - grib_context_log(h->context, GRIB_LOG_ERROR, "Polar stereographic only supported for spherical earth."); - return GRIB_GEOCALCULUS_PROBLEM; - } - if (iter->nv != nx * ny) { grib_context_log(h->context, GRIB_LOG_ERROR, "Wrong number of points (%ld!=%ldx%ld)", iter->nv, nx, ny); return GRIB_WRONG_GRID; From 65493220af2d7ffeecfb8caf3c19e07af1ef0010 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 6 May 2021 23:00:39 +0100 Subject: [PATCH 479/683] grib_util_set_spec: print editionNumber in debug mode --- src/grib_util.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/grib_util.c b/src/grib_util.c index def44623d..7fe3d2d2b 100644 --- a/src/grib_util.c +++ b/src/grib_util.c @@ -429,6 +429,8 @@ static void print_values(grib_context* c, if (c->gribex_mode_on) fprintf(stderr, "ECCODES DEBUG grib_util: GRIBEX mode is turned on!\n"); + fprintf(stderr, "ECCODES DEBUG grib_util: packing_spec->editionNumber = %ld\n", + packing_spec->editionNumber); fprintf(stderr, "ECCODES DEBUG grib_util: packing_spec->packing = %s\n", get_packing_spec_packing_name(packing_spec->packing)); fprintf(stderr, "ECCODES DEBUG grib_util: packing_spec->packing_type = %s\n", From b1f044b8228cd8df88dbdb53ed6eeef77a5f6c14 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 7 May 2021 13:48:43 +0100 Subject: [PATCH 480/683] Definitions: Add comments re packing types in grib1 --- definitions/grib1/section.4.def | 154 ++++++++++++++++---------------- 1 file changed, 78 insertions(+), 76 deletions(-) diff --git a/definitions/grib1/section.4.def b/definitions/grib1/section.4.def index aef4ec259..bb0131123 100644 --- a/definitions/grib1/section.4.def +++ b/definitions/grib1/section.4.def @@ -24,48 +24,48 @@ flagbit additionalFlagPresent(dataFlag,4) : edition_specific,dump; # second order packing if (complexPacking && sphericalHarmonics==0) { - unsigned[1] widthOfFirstOrderValues : dump ; - unsigned [2] N1; - flags[1] extendedFlag "grib1/11-2.table"; + unsigned[1] widthOfFirstOrderValues : dump ; + unsigned [2] N1; + flags[1] extendedFlag "grib1/11-2.table"; - # Undocumented use of octet 14 extededFlags - # Taken from d2ordr.F - # R------- only bit 1 is reserved. - # -0------ single datum at each grid point. - # -1------ matrix of values at each grid point. - # --0----- no secondary bit map. - # --1----- secondary bit map present. - # ---0---- second order values have constant width. - # ---1---- second order values have different widths. - # ----0--- no general extended second order packing. - # ----1--- general extended second order packing used. - # -----0-- standard field ordering in section 4. - # -----1-- boustrophedonic ordering in section 4. - # ------00 no spatial differencing used. - # ------01 1st-order spatial differencing used. - # ------10 2nd-order " " " . - # ------11 3rd-order " " " . + # Undocumented use of octet 14 extededFlags + # Taken from d2ordr.F + # R------- only bit 1 is reserved. + # -0------ single datum at each grid point. + # -1------ matrix of values at each grid point. + # --0----- no secondary bit map. + # --1----- secondary bit map present. + # ---0---- second order values have constant width. + # ---1---- second order values have different widths. + # ----0--- no general extended second order packing. + # ----1--- general extended second order packing used. + # -----0-- standard field ordering in section 4. + # -----1-- boustrophedonic ordering in section 4. + # ------00 no spatial differencing used. + # ------01 1st-order spatial differencing used. + # ------10 2nd-order " " " . + # ------11 3rd-order " " " . - #ksec4(8) - flagbit matrixOfValues (extendedFlag,6) = 0 : dump; - #ksec4(9) - flagbit secondaryBitmapPresent (extendedFlag,5) = 0 : dump; - #ksec4(10) - flagbit secondOrderOfDifferentWidth (extendedFlag,4) = 0 : dump; - #ksec4(12) - flagbit generalExtended2ordr (extendedFlag,3) = 0 : dump; - #ksec4(13) - flagbit boustrophedonicOrdering (extendedFlag,2) = 0 : dump; - #ksec4(14) - flagbit twoOrdersOfSPD (extendedFlag,1) = 0 : dump; - #ksec4(15) - flagbit plusOneinOrdersOfSPD (extendedFlag,0) = 0 : dump; - meta orderOfSPD evaluate(plusOneinOrdersOfSPD + 2 * twoOrdersOfSPD); - alias secondaryBitmap = secondaryBitmapPresent; - alias boustrophedonic=boustrophedonicOrdering; + #ksec4(8) + flagbit matrixOfValues (extendedFlag,6) = 0 : dump; + #ksec4(9) + flagbit secondaryBitmapPresent (extendedFlag,5) = 0 : dump; + #ksec4(10) + flagbit secondOrderOfDifferentWidth (extendedFlag,4) = 0 : dump; + #ksec4(12) + flagbit generalExtended2ordr (extendedFlag,3) = 0 : dump; + #ksec4(13) + flagbit boustrophedonicOrdering (extendedFlag,2) = 0 : dump; + #ksec4(14) + flagbit twoOrdersOfSPD (extendedFlag,1) = 0 : dump; + #ksec4(15) + flagbit plusOneinOrdersOfSPD (extendedFlag,0) = 0 : dump; + meta orderOfSPD evaluate(plusOneinOrdersOfSPD + 2 * twoOrdersOfSPD); + alias secondaryBitmap = secondaryBitmapPresent; + alias boustrophedonic=boustrophedonicOrdering; } else { - transient orderOfSPD=2; - transient boustrophedonic=0; + transient orderOfSPD=2; + transient boustrophedonic=0; } transient hideThis=0; @@ -76,47 +76,49 @@ concept packingType { "grid_ieee" = { sphericalHarmonics = 0; complexPacking = 0; integerPointValues=1; additionalFlagPresent=1;} "spectral_complex" = { sphericalHarmonics = 1; complexPacking = 1; - additionalFlagPresent = 0; } + additionalFlagPresent = 0; } "spectral_simple" = { sphericalHarmonics = 1; complexPacking = 0; additionalFlagPresent = 0; representationMode=1;} - "spectral_ieee" = { sphericalHarmonics = 1; complexPacking = 1; - additionalFlagPresent = 0;hideThis=1; } + "spectral_ieee" = { sphericalHarmonics = 1; complexPacking = 1; + additionalFlagPresent = 0;hideThis=1; } "grid_simple_matrix" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 1;} - "grid_second_order_row_by_row" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=0; } - "grid_second_order_constant_width" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=0; - matrixOfValues=0; secondaryBitmapPresent=1; generalExtended2ordr=0; } - "grid_second_order_general_grib1" = {sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=1; generalExtended2ordr=0; } - "grid_second_order_no_SPD" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; - plusOneinOrdersOfSPD=0; twoOrdersOfSPD=0;} - "grid_second_order" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; - plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; boustrophedonic=1;} - "grid_second_order" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; - plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; boustrophedonic=0;} - "grid_second_order_no_boustrophedonic" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; - plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; boustrophedonic=0;} - "grid_second_order_boustrophedonic" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; - plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; boustrophedonic=1;} - "grid_second_order_SPD1" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; - plusOneinOrdersOfSPD=1; twoOrdersOfSPD=0; } - "grid_second_order_SPD2" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; - plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; } - "grid_second_order_SPD3" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; - matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; - plusOneinOrdersOfSPD=1; twoOrdersOfSPD=1; } - "grid_jpeg" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} - "grid_png" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} - "grid_ccsds" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} - "grid_simple_log_preprocessing"= { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} + "grid_second_order_row_by_row" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=0; } + "grid_second_order_constant_width" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=0; + matrixOfValues=0; secondaryBitmapPresent=1; generalExtended2ordr=0; } + "grid_second_order_general_grib1" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=1; generalExtended2ordr=0; } + "grid_second_order_no_SPD" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; + plusOneinOrdersOfSPD=0; twoOrdersOfSPD=0;} + "grid_second_order" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; + plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; boustrophedonic=1;} + "grid_second_order" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; + plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; boustrophedonic=0;} + "grid_second_order_no_boustrophedonic" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; + plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; boustrophedonic=0;} + "grid_second_order_boustrophedonic" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; + plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; boustrophedonic=1;} + "grid_second_order_SPD1" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; + plusOneinOrdersOfSPD=1; twoOrdersOfSPD=0; } + "grid_second_order_SPD2" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; + plusOneinOrdersOfSPD=0; twoOrdersOfSPD=1; } + "grid_second_order_SPD3" = { sphericalHarmonics = 0; complexPacking = 1; secondOrderOfDifferentWidth=1; + matrixOfValues=0; secondaryBitmapPresent=0; generalExtended2ordr=1; + plusOneinOrdersOfSPD=1; twoOrdersOfSPD=1; } + # The following are not in GRIB edition 1. + # They are added here to stop failures when setting packingType. The packing itself is not changed + "grid_jpeg" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} + "grid_png" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} + "grid_ccsds" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} + "grid_simple_log_preprocessing" = { sphericalHarmonics = 0; complexPacking = 0; additionalFlagPresent = 0;} } : dump; From 85652e5e05d01f765b4899d83c4a612e8848e0d4 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 7 May 2021 23:39:18 +0100 Subject: [PATCH 481/683] ECC-1220: Encoding with packingType=grid_ieee via codes_grib_util_set_spec --- src/grib_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grib_util.c b/src/grib_util.c index 7fe3d2d2b..31f1e6e33 100644 --- a/src/grib_util.c +++ b/src/grib_util.c @@ -1433,7 +1433,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, setCcsdsPacking = 1; break; case GRIB_UTIL_PACKING_TYPE_IEEE: - if (strcmp(input_packing_type, "grid_ieee") && !strcmp(input_packing_type, "grid_simple")) + if ( !STR_EQUAL(input_packing_type, "grid_ieee") ) SET_STRING_VALUE("packingType", "grid_ieee"); break; case GRIB_UTIL_PACKING_TYPE_GRID_SECOND_ORDER: From ebe8ecb11fd1288a223398d5d29a8b04e03f9477 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 8 May 2021 17:10:16 +0100 Subject: [PATCH 482/683] Bamboo builds: enable POSIX threads --- bamboo/flags.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bamboo/flags.cmake b/bamboo/flags.cmake index 37ae618b6..a6e3c1324 100644 --- a/bamboo/flags.cmake +++ b/bamboo/flags.cmake @@ -1 +1,2 @@ -SET(ENABLE_EXTRA_TESTS ON CACHE BOOL "Enable extra tests") +SET(ENABLE_EXTRA_TESTS ON CACHE BOOL "Enable extra tests") +SET(ENABLE_ECCODES_THREADS ON CACHE BOOL "Enable POSIX threads") From 0276f2a0eb638b47c773f198e7957b0912e572fb Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 10 May 2021 14:17:10 +0100 Subject: [PATCH 483/683] ECC-1241 adding 3 local time templates for instantaneous parameters --- definitions/grib2/template.4.92.def | 11 +++++++++++ definitions/grib2/template.4.93.def | 11 +++++++++++ definitions/grib2/template.4.94.def | 12 ++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 definitions/grib2/template.4.92.def create mode 100644 definitions/grib2/template.4.93.def create mode 100644 definitions/grib2/template.4.94.def diff --git a/definitions/grib2/template.4.92.def b/definitions/grib2/template.4.92.def new file mode 100644 index 000000000..d94c89015 --- /dev/null +++ b/definitions/grib2/template.4.92.def @@ -0,0 +1,11 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.92, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a local time + +include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def" +#include "grib2/template.4.forecast_time.def" +#include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.localtime.def" diff --git a/definitions/grib2/template.4.93.def b/definitions/grib2/template.4.93.def new file mode 100644 index 000000000..8ee75e5e6 --- /dev/null +++ b/definitions/grib2/template.4.93.def @@ -0,0 +1,11 @@ +# (C) Copyright 2005- ECMWF. + +# Analysis or forecast at a horizontal level or in a horizontal layer at a local time + +include "grib2/template.4.parameter.def" +include "grib2/template.4.postproc.def" +include "grib2/template.4.generating_process.def" +#include "grib2/template.4.forecast_time.def" +#include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.localtime.def" diff --git a/definitions/grib2/template.4.94.def b/definitions/grib2/template.4.94.def new file mode 100644 index 000000000..1da76339d --- /dev/null +++ b/definitions/grib2/template.4.94.def @@ -0,0 +1,12 @@ +# (C) Copyright 2005- ECMWF. + +# Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a local time + +include "grib2/template.4.parameter.def" +include "grib2/template.4.postproc.def" +include "grib2/template.4.generating_process.def" +#include "grib2/template.4.forecast_time.def" +#include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.localtime.def" From 5598ea52dd0303e36e779ae35f951959b697b93b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 10 May 2021 18:36:45 +0100 Subject: [PATCH 484/683] ECC-1222: Encoding with packingType=grid_ccsds via codes_grib_util_set_spec --- src/grib_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grib_util.c b/src/grib_util.c index 31f1e6e33..f440b7868 100644 --- a/src/grib_util.c +++ b/src/grib_util.c @@ -1429,7 +1429,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, * Reason 1: It is not available in GRIB1 and so we have to wait until we change edition * Reason 2: It has to be done AFTER we set the data values */ - if (strcmp(input_packing_type, "grid_ccsds") && !strcmp(input_packing_type, "grid_simple")) + if (!STR_EQUAL(input_packing_type, "grid_ccsds")) setCcsdsPacking = 1; break; case GRIB_UTIL_PACKING_TYPE_IEEE: From 0f946776a42d739f881c759af2d2664befa7436e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 13 May 2021 12:13:12 +0100 Subject: [PATCH 485/683] ECC-1221: Encoding with packingType=grid_complex via codes_grib_util_set_spec (Part 1) --- src/grib_util.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/grib_util.c b/src/grib_util.c index f440b7868..125e44828 100644 --- a/src/grib_util.c +++ b/src/grib_util.c @@ -1413,8 +1413,10 @@ grib_handle* grib_util_set_spec2(grib_handle* h, SET_STRING_VALUE("packingType", "grid_simple"); break; case GRIB_UTIL_PACKING_TYPE_GRID_COMPLEX: - if (strcmp(input_packing_type, "grid_complex") && !strcmp(input_packing_type, "grid_simple")) + if (!STR_EQUAL(input_packing_type, "grid_complex")) { SET_STRING_VALUE("packingType", "grid_complex"); + convertEditionEarlier=1; + } break; case GRIB_UTIL_PACKING_TYPE_JPEG: /* Have to delay JPEG packing: From 8a4a793b9cbf7f5c7e3b18cca2cc2b313be36a7a Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Thu, 13 May 2021 15:20:25 +0100 Subject: [PATCH 486/683] ECC-1241 adding the 4 remaining templates for local time --- definitions/grib2/template.4.95.def | 10 ++++++++++ definitions/grib2/template.4.96.def | 12 ++++++++++++ definitions/grib2/template.4.97.def | 12 ++++++++++++ definitions/grib2/template.4.98.def | 13 +++++++++++++ .../grib2/template.4.localtime_statistical.def | 13 +++++++++++++ 5 files changed, 60 insertions(+) create mode 100644 definitions/grib2/template.4.95.def create mode 100644 definitions/grib2/template.4.96.def create mode 100644 definitions/grib2/template.4.97.def create mode 100644 definitions/grib2/template.4.98.def create mode 100644 definitions/grib2/template.4.localtime_statistical.def diff --git a/definitions/grib2/template.4.95.def b/definitions/grib2/template.4.95.def new file mode 100644 index 000000000..8baaba021 --- /dev/null +++ b/definitions/grib2/template.4.95.def @@ -0,0 +1,10 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.95, Average, accumulation extreme values or other statiscally processed value at a horizontal level or in a horizontal layer at a local time + +include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def" +# no template.4.forecast_time.def component in this template. +include "grib2/template.4.horizontal.def" +include "grib2/template.4.localtime_statistical.def" +include "grib2/template.4.localtime.def" diff --git a/definitions/grib2/template.4.96.def b/definitions/grib2/template.4.96.def new file mode 100644 index 000000000..f0d086cb4 --- /dev/null +++ b/definitions/grib2/template.4.96.def @@ -0,0 +1,12 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 4.96, Average, accumulation, extreme values or other statistically processed values of an individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a local time + +include "grib2/template.4.parameter.def" +include "grib2/template.4.generating_process.def" +#include "grib2/template.4.forecast_time.def" +#include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.localtime_statistical.def" +include "grib2/template.4.localtime.def" diff --git a/definitions/grib2/template.4.97.def b/definitions/grib2/template.4.97.def new file mode 100644 index 000000000..c01c8dc30 --- /dev/null +++ b/definitions/grib2/template.4.97.def @@ -0,0 +1,12 @@ +# (C) Copyright 2005- ECMWF. + +# Average, accumulation, extreme values or other statistically processed values of post-processing analysis or forecast at a horizontal level or in a horizontal layer at a local time + +include "grib2/template.4.parameter.def" +include "grib2/template.4.postproc.def" +include "grib2/template.4.generating_process.def" +#include "grib2/template.4.forecast_time.def" +#include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.localtime_statistical.def" +include "grib2/template.4.localtime.def" diff --git a/definitions/grib2/template.4.98.def b/definitions/grib2/template.4.98.def new file mode 100644 index 000000000..cd9b878b5 --- /dev/null +++ b/definitions/grib2/template.4.98.def @@ -0,0 +1,13 @@ +# (C) Copyright 2005- ECMWF. + +# Average, accumulation, extreme values or other statistically processed values of a post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a local time + +include "grib2/template.4.parameter.def" +include "grib2/template.4.postproc.def" +include "grib2/template.4.generating_process.def" +#include "grib2/template.4.forecast_time.def" +#include "grib2/template.4.point_in_time.def" +include "grib2/template.4.horizontal.def" +include "grib2/template.4.eps.def" +include "grib2/template.4.localtime_statistical.def" +include "grib2/template.4.localtime.def" diff --git a/definitions/grib2/template.4.localtime_statistical.def b/definitions/grib2/template.4.localtime_statistical.def new file mode 100644 index 000000000..7f2aa4ab7 --- /dev/null +++ b/definitions/grib2/template.4.localtime_statistical.def @@ -0,0 +1,13 @@ +# (C) Copyright 2005- ECMWF. + +# Statistical process used to calculate the processed field from the field at each time increment during the time range +codetable[1] typeOfStatisticalProcessing ('4.10.table',masterDir,localDir) : edition_specific; + +# Indicator of unit of time for time range over which statistical processing is done +codetable[1] indicatorOfUnitForTimeRange ('4.4.table',masterDir,localDir) =1 ; + +# Length of the time range over which statistical processing is done, in units defined by the previous octet +unsigned[4] lengthOfTimeRange=0 ; + +# Number of statistically processed fields used in the local time composite field == number of stripes +unsigned[1] numberOfStatisticallyFieldsForLocalTime; From 861cfc39135b2f0c6e3f7d929a26d5a2d7775b38 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 14 May 2021 16:20:12 +0100 Subject: [PATCH 487/683] ECC-1242: GRIB2: version 22 tables are incomplete --- definitions/grib2/tables/22/0.0.table | 10 + definitions/grib2/tables/22/1.0.table | 27 + definitions/grib2/tables/22/1.1.table | 4 + definitions/grib2/tables/22/1.2.table | 8 + definitions/grib2/tables/22/1.3.table | 16 + definitions/grib2/tables/22/1.5.table | 7 + definitions/grib2/tables/22/1.6.table | 8 + definitions/grib2/tables/22/3.0.table | 6 + definitions/grib2/tables/22/3.1.table | 54 ++ definitions/grib2/tables/22/3.10.table | 8 + definitions/grib2/tables/22/3.11.table | 7 + definitions/grib2/tables/22/3.2.table | 14 + definitions/grib2/tables/22/3.20.table | 6 + definitions/grib2/tables/22/3.21.table | 8 + definitions/grib2/tables/22/3.25.table | 10 + definitions/grib2/tables/22/3.3.table | 9 + definitions/grib2/tables/22/3.4.table | 17 + definitions/grib2/tables/22/3.5.table | 5 + definitions/grib2/tables/22/3.6.table | 3 + definitions/grib2/tables/22/3.7.table | 5 + definitions/grib2/tables/22/3.8.table | 7 + definitions/grib2/tables/22/3.9.table | 4 + definitions/grib2/tables/22/4.0.table | 75 +++ definitions/grib2/tables/22/4.1.0.table | 27 + definitions/grib2/tables/22/4.1.1.table | 7 + definitions/grib2/tables/22/4.1.10.table | 10 + definitions/grib2/tables/22/4.1.192.table | 4 + definitions/grib2/tables/22/4.1.2.table | 9 + definitions/grib2/tables/22/4.1.3.table | 11 + definitions/grib2/tables/22/4.11.table | 10 + definitions/grib2/tables/22/4.12.table | 7 + definitions/grib2/tables/22/4.13.table | 6 + definitions/grib2/tables/22/4.14.table | 6 + definitions/grib2/tables/22/4.15.table | 11 + definitions/grib2/tables/22/4.16.table | 9 + definitions/grib2/tables/22/4.192.table | 4 + definitions/grib2/tables/22/4.2.0.0.table | 34 ++ definitions/grib2/tables/22/4.2.0.1.table | 126 +++++ definitions/grib2/tables/22/4.2.0.13.table | 5 + definitions/grib2/tables/22/4.2.0.14.table | 7 + definitions/grib2/tables/22/4.2.0.15.table | 21 + definitions/grib2/tables/22/4.2.0.16.table | 10 + definitions/grib2/tables/22/4.2.0.17.table | 6 + definitions/grib2/tables/22/4.2.0.18.table | 23 + definitions/grib2/tables/22/4.2.0.19.table | 40 ++ definitions/grib2/tables/22/4.2.0.190.table | 5 + definitions/grib2/tables/22/4.2.0.191.table | 8 + definitions/grib2/tables/22/4.2.0.2.table | 51 ++ definitions/grib2/tables/22/4.2.0.20.table | 62 +++ definitions/grib2/tables/22/4.2.0.3.table | 36 ++ definitions/grib2/tables/22/4.2.0.4.table | 24 + definitions/grib2/tables/22/4.2.0.5.table | 13 + definitions/grib2/tables/22/4.2.0.6.table | 49 ++ definitions/grib2/tables/22/4.2.0.7.table | 24 + definitions/grib2/tables/22/4.2.1.0.table | 21 + definitions/grib2/tables/22/4.2.1.1.table | 7 + definitions/grib2/tables/22/4.2.1.2.table | 15 + definitions/grib2/tables/22/4.2.10.0.table | 70 +++ definitions/grib2/tables/22/4.2.10.1.table | 9 + definitions/grib2/tables/22/4.2.10.191.table | 8 + definitions/grib2/tables/22/4.2.10.2.table | 17 + definitions/grib2/tables/22/4.2.10.3.table | 7 + definitions/grib2/tables/22/4.2.10.4.table | 24 + definitions/grib2/tables/22/4.2.2.0.table | 43 ++ definitions/grib2/tables/22/4.2.2.3.table | 32 ++ definitions/grib2/tables/22/4.2.2.4.table | 16 + definitions/grib2/tables/22/4.2.2.5.table | 2 + definitions/grib2/tables/22/4.2.3.0.table | 14 + definitions/grib2/tables/22/4.2.3.1.table | 35 ++ definitions/grib2/tables/22/4.2.3.2.table | 24 + definitions/grib2/tables/22/4.2.3.3.table | 4 + definitions/grib2/tables/22/4.2.3.4.table | 10 + definitions/grib2/tables/22/4.2.3.5.table | 7 + definitions/grib2/tables/22/4.2.3.6.table | 7 + definitions/grib2/tables/22/4.201.table | 17 + definitions/grib2/tables/22/4.202.table | 4 + definitions/grib2/tables/22/4.203.table | 26 + definitions/grib2/tables/22/4.204.table | 9 + definitions/grib2/tables/22/4.205.table | 6 + definitions/grib2/tables/22/4.206.table | 6 + definitions/grib2/tables/22/4.207.table | 10 + definitions/grib2/tables/22/4.208.table | 9 + definitions/grib2/tables/22/4.209.table | 9 + definitions/grib2/tables/22/4.210.table | 6 + definitions/grib2/tables/22/4.211.table | 7 + definitions/grib2/tables/22/4.212.table | 18 + definitions/grib2/tables/22/4.213.table | 16 + definitions/grib2/tables/22/4.215.table | 9 + definitions/grib2/tables/22/4.216.table | 5 + definitions/grib2/tables/22/4.217.table | 8 + definitions/grib2/tables/22/4.218.table | 46 ++ definitions/grib2/tables/22/4.219.table | 8 + definitions/grib2/tables/22/4.220.table | 6 + definitions/grib2/tables/22/4.221.table | 6 + definitions/grib2/tables/22/4.222.table | 6 + definitions/grib2/tables/22/4.223.table | 5 + definitions/grib2/tables/22/4.224.table | 18 + definitions/grib2/tables/22/4.225.table | 2 + definitions/grib2/tables/22/4.227.table | 9 + definitions/grib2/tables/22/4.230.table | 136 +++-- definitions/grib2/tables/22/4.233.table | 511 +++++++++++++++++++ definitions/grib2/tables/22/4.234.table | 21 + definitions/grib2/tables/22/4.236.table | 8 + definitions/grib2/tables/22/4.240.table | 13 + definitions/grib2/tables/22/4.241.table | 9 + definitions/grib2/tables/22/4.242.table | 7 + definitions/grib2/tables/22/4.243.table | 43 ++ definitions/grib2/tables/22/4.244.table | 7 + definitions/grib2/tables/22/4.3.table | 23 + definitions/grib2/tables/22/4.6.table | 9 + definitions/grib2/tables/22/4.7.table | 14 + definitions/grib2/tables/22/4.8.table | 6 + definitions/grib2/tables/22/4.9.table | 13 + definitions/grib2/tables/22/5.0.table | 27 + definitions/grib2/tables/22/5.1.table | 6 + definitions/grib2/tables/22/5.2.table | 8 + definitions/grib2/tables/22/5.25.table | 9 + definitions/grib2/tables/22/5.26.table | 5 + definitions/grib2/tables/22/5.3.table | 7 + definitions/grib2/tables/22/5.4.table | 6 + definitions/grib2/tables/22/5.40.table | 5 + definitions/grib2/tables/22/5.40000.table | 5 + definitions/grib2/tables/22/5.5.table | 7 + definitions/grib2/tables/22/5.50002.table | 19 + definitions/grib2/tables/22/5.6.table | 7 + definitions/grib2/tables/22/5.7.table | 7 + definitions/grib2/tables/22/6.0.table | 6 + definitions/grib2/tables/22/stepType.table | 2 + 128 files changed, 2535 insertions(+), 37 deletions(-) create mode 100644 definitions/grib2/tables/22/0.0.table create mode 100644 definitions/grib2/tables/22/1.0.table create mode 100644 definitions/grib2/tables/22/1.1.table create mode 100644 definitions/grib2/tables/22/1.2.table create mode 100644 definitions/grib2/tables/22/1.3.table create mode 100644 definitions/grib2/tables/22/1.5.table create mode 100644 definitions/grib2/tables/22/1.6.table create mode 100644 definitions/grib2/tables/22/3.0.table create mode 100644 definitions/grib2/tables/22/3.1.table create mode 100644 definitions/grib2/tables/22/3.10.table create mode 100644 definitions/grib2/tables/22/3.11.table create mode 100644 definitions/grib2/tables/22/3.2.table create mode 100644 definitions/grib2/tables/22/3.20.table create mode 100644 definitions/grib2/tables/22/3.21.table create mode 100644 definitions/grib2/tables/22/3.25.table create mode 100644 definitions/grib2/tables/22/3.3.table create mode 100644 definitions/grib2/tables/22/3.4.table create mode 100644 definitions/grib2/tables/22/3.5.table create mode 100644 definitions/grib2/tables/22/3.6.table create mode 100644 definitions/grib2/tables/22/3.7.table create mode 100644 definitions/grib2/tables/22/3.8.table create mode 100644 definitions/grib2/tables/22/3.9.table create mode 100644 definitions/grib2/tables/22/4.0.table create mode 100644 definitions/grib2/tables/22/4.1.0.table create mode 100644 definitions/grib2/tables/22/4.1.1.table create mode 100644 definitions/grib2/tables/22/4.1.10.table create mode 100644 definitions/grib2/tables/22/4.1.192.table create mode 100644 definitions/grib2/tables/22/4.1.2.table create mode 100644 definitions/grib2/tables/22/4.1.3.table create mode 100644 definitions/grib2/tables/22/4.11.table create mode 100644 definitions/grib2/tables/22/4.12.table create mode 100644 definitions/grib2/tables/22/4.13.table create mode 100644 definitions/grib2/tables/22/4.14.table create mode 100644 definitions/grib2/tables/22/4.15.table create mode 100644 definitions/grib2/tables/22/4.16.table create mode 100644 definitions/grib2/tables/22/4.192.table create mode 100644 definitions/grib2/tables/22/4.2.0.0.table create mode 100644 definitions/grib2/tables/22/4.2.0.1.table create mode 100644 definitions/grib2/tables/22/4.2.0.13.table create mode 100644 definitions/grib2/tables/22/4.2.0.14.table create mode 100644 definitions/grib2/tables/22/4.2.0.15.table create mode 100644 definitions/grib2/tables/22/4.2.0.16.table create mode 100644 definitions/grib2/tables/22/4.2.0.17.table create mode 100644 definitions/grib2/tables/22/4.2.0.18.table create mode 100644 definitions/grib2/tables/22/4.2.0.19.table create mode 100644 definitions/grib2/tables/22/4.2.0.190.table create mode 100644 definitions/grib2/tables/22/4.2.0.191.table create mode 100644 definitions/grib2/tables/22/4.2.0.2.table create mode 100644 definitions/grib2/tables/22/4.2.0.20.table create mode 100644 definitions/grib2/tables/22/4.2.0.3.table create mode 100644 definitions/grib2/tables/22/4.2.0.4.table create mode 100644 definitions/grib2/tables/22/4.2.0.5.table create mode 100644 definitions/grib2/tables/22/4.2.0.6.table create mode 100644 definitions/grib2/tables/22/4.2.0.7.table create mode 100644 definitions/grib2/tables/22/4.2.1.0.table create mode 100644 definitions/grib2/tables/22/4.2.1.1.table create mode 100644 definitions/grib2/tables/22/4.2.1.2.table create mode 100644 definitions/grib2/tables/22/4.2.10.0.table create mode 100644 definitions/grib2/tables/22/4.2.10.1.table create mode 100644 definitions/grib2/tables/22/4.2.10.191.table create mode 100644 definitions/grib2/tables/22/4.2.10.2.table create mode 100644 definitions/grib2/tables/22/4.2.10.3.table create mode 100644 definitions/grib2/tables/22/4.2.10.4.table create mode 100644 definitions/grib2/tables/22/4.2.2.0.table create mode 100644 definitions/grib2/tables/22/4.2.2.3.table create mode 100644 definitions/grib2/tables/22/4.2.2.4.table create mode 100644 definitions/grib2/tables/22/4.2.2.5.table create mode 100644 definitions/grib2/tables/22/4.2.3.0.table create mode 100644 definitions/grib2/tables/22/4.2.3.1.table create mode 100644 definitions/grib2/tables/22/4.2.3.2.table create mode 100644 definitions/grib2/tables/22/4.2.3.3.table create mode 100644 definitions/grib2/tables/22/4.2.3.4.table create mode 100644 definitions/grib2/tables/22/4.2.3.5.table create mode 100644 definitions/grib2/tables/22/4.2.3.6.table create mode 100644 definitions/grib2/tables/22/4.201.table create mode 100644 definitions/grib2/tables/22/4.202.table create mode 100644 definitions/grib2/tables/22/4.203.table create mode 100644 definitions/grib2/tables/22/4.204.table create mode 100644 definitions/grib2/tables/22/4.205.table create mode 100644 definitions/grib2/tables/22/4.206.table create mode 100644 definitions/grib2/tables/22/4.207.table create mode 100644 definitions/grib2/tables/22/4.208.table create mode 100644 definitions/grib2/tables/22/4.209.table create mode 100644 definitions/grib2/tables/22/4.210.table create mode 100644 definitions/grib2/tables/22/4.211.table create mode 100644 definitions/grib2/tables/22/4.212.table create mode 100644 definitions/grib2/tables/22/4.213.table create mode 100644 definitions/grib2/tables/22/4.215.table create mode 100644 definitions/grib2/tables/22/4.216.table create mode 100644 definitions/grib2/tables/22/4.217.table create mode 100644 definitions/grib2/tables/22/4.218.table create mode 100644 definitions/grib2/tables/22/4.219.table create mode 100644 definitions/grib2/tables/22/4.220.table create mode 100644 definitions/grib2/tables/22/4.221.table create mode 100644 definitions/grib2/tables/22/4.222.table create mode 100644 definitions/grib2/tables/22/4.223.table create mode 100644 definitions/grib2/tables/22/4.224.table create mode 100644 definitions/grib2/tables/22/4.225.table create mode 100644 definitions/grib2/tables/22/4.227.table create mode 100644 definitions/grib2/tables/22/4.233.table create mode 100644 definitions/grib2/tables/22/4.234.table create mode 100644 definitions/grib2/tables/22/4.236.table create mode 100644 definitions/grib2/tables/22/4.240.table create mode 100644 definitions/grib2/tables/22/4.241.table create mode 100644 definitions/grib2/tables/22/4.242.table create mode 100644 definitions/grib2/tables/22/4.243.table create mode 100644 definitions/grib2/tables/22/4.244.table create mode 100644 definitions/grib2/tables/22/4.3.table create mode 100644 definitions/grib2/tables/22/4.6.table create mode 100644 definitions/grib2/tables/22/4.7.table create mode 100644 definitions/grib2/tables/22/4.8.table create mode 100644 definitions/grib2/tables/22/4.9.table create mode 100644 definitions/grib2/tables/22/5.0.table create mode 100644 definitions/grib2/tables/22/5.1.table create mode 100644 definitions/grib2/tables/22/5.2.table create mode 100644 definitions/grib2/tables/22/5.25.table create mode 100644 definitions/grib2/tables/22/5.26.table create mode 100644 definitions/grib2/tables/22/5.3.table create mode 100644 definitions/grib2/tables/22/5.4.table create mode 100644 definitions/grib2/tables/22/5.40.table create mode 100644 definitions/grib2/tables/22/5.40000.table create mode 100644 definitions/grib2/tables/22/5.5.table create mode 100644 definitions/grib2/tables/22/5.50002.table create mode 100644 definitions/grib2/tables/22/5.6.table create mode 100644 definitions/grib2/tables/22/5.7.table create mode 100644 definitions/grib2/tables/22/6.0.table create mode 100644 definitions/grib2/tables/22/stepType.table diff --git a/definitions/grib2/tables/22/0.0.table b/definitions/grib2/tables/22/0.0.table new file mode 100644 index 000000000..b24c50564 --- /dev/null +++ b/definitions/grib2/tables/22/0.0.table @@ -0,0 +1,10 @@ +# Code table 0.0 - Discipline of processed data in the GRIB message, number of GRIB Master table +0 0 Meteorological products +1 1 Hydrological products +2 2 Land surface products +3 3 Space products +# 4-9 Reserved +10 10 Oceanographic products +# 11-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/1.0.table b/definitions/grib2/tables/22/1.0.table new file mode 100644 index 000000000..c871ea8fe --- /dev/null +++ b/definitions/grib2/tables/22/1.0.table @@ -0,0 +1,27 @@ +# Code table 1.0 - GRIB master tables version number +0 0 Experimental +1 1 Version implemented on 7 November 2001 +2 2 Version implemented on 4 November 2003 +3 3 Version implemented on 2 November 2005 +4 4 Version implemented on 7 November 2007 +5 5 Version implemented on 4 November 2009 +6 6 Version implemented on 15 September 2010 +7 7 Version implemented on 4 May 2011 +8 8 Version implemented on 2 November 2011 +9 9 Version implemented on 2 May 2012 +10 10 Version implemented on 7 November 2012 +11 11 Version implemented on 8 May 2013 +12 12 Version implemented on 14 November 2013 +13 13 Version implemented on 7 May 2014 +14 14 Version implemented on 5 November 2014 +15 15 Version implemented on 6 May 2015 +16 16 Version implemented on 11 November 2015 +17 17 Version implemented on 4 May 2016 +18 18 Version implemented on 2 November 2016 +19 19 Version implemented on 3 May 2017 +20 20 Version implemented on 8 November 2017 +21 21 Version implemented on 2 May 2018 +22 22 Version implemented on 7 November 2018 +23 23 Version implemented on 15 May 2019 +# 24-254 Future versions +255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. diff --git a/definitions/grib2/tables/22/1.1.table b/definitions/grib2/tables/22/1.1.table new file mode 100644 index 000000000..d50f8fd72 --- /dev/null +++ b/definitions/grib2/tables/22/1.1.table @@ -0,0 +1,4 @@ +# Code table 1.1 - GRIB local tables version number +0 0 Local tables not used. Only table entries and templates from the current master table are valid +# 1-254 Number of local tables version used +255 255 Missing diff --git a/definitions/grib2/tables/22/1.2.table b/definitions/grib2/tables/22/1.2.table new file mode 100644 index 000000000..934b70455 --- /dev/null +++ b/definitions/grib2/tables/22/1.2.table @@ -0,0 +1,8 @@ +# Code table 1.2 - Significance of reference time +0 0 Analysis +1 1 Start of forecast +2 2 Verifying time of forecast +3 3 Observation time +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/1.3.table b/definitions/grib2/tables/22/1.3.table new file mode 100644 index 000000000..dd7e68132 --- /dev/null +++ b/definitions/grib2/tables/22/1.3.table @@ -0,0 +1,16 @@ +# Code table 1.3 - Production status of data +0 0 Operational products +1 1 Operational test products +2 2 Research products +3 3 Re-analysis products +4 4 THORPEX Interactive Grand Global Ensemble (TIGGE) +5 5 THORPEX Interactive Grand Global Ensemble test (TIGGE) +6 6 S2S operational products +7 7 S2S test products +8 8 Uncertainties in Ensembles of Regional ReAnalyses project (UERRA) +9 9 Uncertainties in Ensembles of Regional ReAnalyses project test (UERRA) +10 10 Copernicus regional reanalysis (CARRA/CERRA) +11 11 Copernicus regional reanalysis test (CARRA/CERRA) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/1.5.table b/definitions/grib2/tables/22/1.5.table new file mode 100644 index 000000000..b2cf9f087 --- /dev/null +++ b/definitions/grib2/tables/22/1.5.table @@ -0,0 +1,7 @@ +# Code table 1.5 - Identification template number +0 0 Calendar definition +1 1 Paleontological offset +2 2 Calendar definition and paleontological offset +# 3-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/definitions/grib2/tables/22/1.6.table b/definitions/grib2/tables/22/1.6.table new file mode 100644 index 000000000..5db921990 --- /dev/null +++ b/definitions/grib2/tables/22/1.6.table @@ -0,0 +1,8 @@ +# Code table 1.6 - Type of calendar +0 0 Gregorian +1 1 360-day +2 2 365-day +3 3 Proleptic Gregorian +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/3.0.table b/definitions/grib2/tables/22/3.0.table new file mode 100644 index 000000000..45187b80d --- /dev/null +++ b/definitions/grib2/tables/22/3.0.table @@ -0,0 +1,6 @@ +# Code table 3.0 - Source of grid definition +0 0 Specified in Code table 3.1 +1 1 Predetermined grid definition (Defined by originating centre) +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 A grid definition does not apply to this product diff --git a/definitions/grib2/tables/22/3.1.table b/definitions/grib2/tables/22/3.1.table new file mode 100644 index 000000000..ed68c5144 --- /dev/null +++ b/definitions/grib2/tables/22/3.1.table @@ -0,0 +1,54 @@ +# Code table 3.1 - Grid definition template number +0 0 Latitude/longitude (Also called equidistant cylindrical, or Plate Carree) +1 1 Rotated latitude/longitude +2 2 Stretched latitude/longitude +3 3 Stretched and rotated latitude/longitude +4 4 Variable resolution latitude/longitude +5 5 Variable resolution rotated latitude/longitude +# 6-9 Reserved +10 10 Mercator +# 11-12 Reserved +13 13 Mercator with modelling subdomains definition +# 14-19 Reserved +20 20 Polar stereographic projection (Can be south or north) +# 21-22 Reserved +23 23 Polar stereographic with modelling subdomains definition +# 24-29 Reserved +30 30 Lambert conformal (Can be secant or tangent, conical or bipolar) +31 31 Albers equal area +32 32 Reserved +33 33 Lambert conformal with modelling subdomains definition +# 34-39 Reserved +40 40 Gaussian latitude/longitude +41 41 Rotated Gaussian latitude/longitude +42 42 Stretched Gaussian latitude/longitude +43 43 Stretched and rotated Gaussian latitude/longitude +# 44-49 Reserved +50 50 Spherical harmonic coefficients +51 51 Rotated spherical harmonic coefficients +52 52 Stretched spherical harmonic coefficients +53 53 Stretched and rotated spherical harmonic coefficients +# 54-60 Reserved +61 61 Spectral Mercator with modelling subdomains definition +62 62 Spectral polar stereographic with modelling subdomains definition +63 63 Spectral Lambert conformal with modelling subdomains definition +# 64-89 Reserved +90 90 Space view perspective or orthographic +# 91-99 Reserved +100 100 Triangular grid based on an icosahedron +101 101 General unstructured grid +# 102-109 Reserved +110 110 Equatorial azimuthal equidistant projection +# 111-119 Reserved +120 120 Azimuth-range projection +# 121-139 Reserved +140 140 Lambert azimuthal equal area projection +# 141-999 Reserved +1000 1000 Cross-section grid with points equally spaced on the horizontal +# 1001-1099 Reserved +1100 1100 Hovmoller diagram grid with points equally spaced on the horizontal +# 1101-1199 Reserved +1200 1200 Time section grid +# 1201-32767 Reserved +# 32768-65534 Reserved for local use +65535 65535 Missing diff --git a/definitions/grib2/tables/22/3.10.table b/definitions/grib2/tables/22/3.10.table new file mode 100644 index 000000000..afa8843a7 --- /dev/null +++ b/definitions/grib2/tables/22/3.10.table @@ -0,0 +1,8 @@ +# Flag table 3.10 - Scanning mode for one diamond +1 0 Points scan in +i direction, i.e. from pole to Equator +1 1 Points scan in -i direction, i.e. from Equator to pole +2 0 Points scan in +j direction, i.e. from west to east +2 1 Points scan in -j direction, i.e. from east to west +3 0 Adjacent points in i direction are consecutive +3 1 Adjacent points in j direction are consecutive +# 4-8 Reserved diff --git a/definitions/grib2/tables/22/3.11.table b/definitions/grib2/tables/22/3.11.table new file mode 100644 index 000000000..e516a2ab9 --- /dev/null +++ b/definitions/grib2/tables/22/3.11.table @@ -0,0 +1,7 @@ +# Code table 3.11 - Interpretation of list of numbers at end of section 3 +0 0 There is no appended list +1 1 Numbers define number of points corresponding to full coordinate circles (i.e. parallels), coordinate values on each circle are multiple of the circle mesh, and extreme coordinate values given in grid definition (i.e. extreme longitudes) may not be reached in all rows +2 2 Numbers define number of points corresponding to coordinate lines delimited by extreme coordinate values given in grid definition (i.e. extreme longitudes) which are present in each row +3 3 Numbers define the actual latitudes for each row in the grid. The list of numbers are integer values of the valid latitudes in microdegrees (scaled by 10-6) or in unit equal to the ratio of the basic angle and the subdivisions number for each row, in the same order as specified in the scanning mode flag (bit no. 2) +# 4-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/22/3.2.table b/definitions/grib2/tables/22/3.2.table new file mode 100644 index 000000000..1b5c8241d --- /dev/null +++ b/definitions/grib2/tables/22/3.2.table @@ -0,0 +1,14 @@ +# Code table 3.2 - Shape of the Earth +0 0 Earth assumed spherical with radius = 6 367 470.0 m +1 1 Earth assumed spherical with radius specified (in m) by data producer +2 2 Earth assumed oblate spheroid with size as determined by IAU in 1965 (major axis = 6 378 160.0 m, minor axis = 6 356 775.0 m, f = 1/297.0) +3 3 Earth assumed oblate spheroid with major and minor axes specified (in km) by data producer +4 4 Earth assumed oblate spheroid as defined in IAG-GRS80 model (major axis = 6 378 137.0 m, minor axis = 6 356 752.314 m, f = 1/298.257 222 101) +5 5 Earth assumed represented by WGS-84 (as used by ICAO since 1998) +6 6 Earth assumed spherical with radius of 6 371 229.0 m +7 7 Earth assumed oblate spheroid with major or minor axes specified (in m) by data producer +8 8 Earth model assumed spherical with radius of 6 371 200 m, but the horizontal datum of the resulting latitude/longitude field is the WGS-84 reference frame +9 9 Earth represented by the Ordnance Survey Great Britain 1936 Datum, using the Airy 1830 Spheroid, the Greenwich meridian as 0 longitude, and the Newlyn datum as mean sea level, 0 height +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/3.20.table b/definitions/grib2/tables/22/3.20.table new file mode 100644 index 000000000..efbf08d19 --- /dev/null +++ b/definitions/grib2/tables/22/3.20.table @@ -0,0 +1,6 @@ +# Code table 3.20 - Type of horizontal line +0 0 Rhumb +1 1 Great circle +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/3.21.table b/definitions/grib2/tables/22/3.21.table new file mode 100644 index 000000000..88dbb9019 --- /dev/null +++ b/definitions/grib2/tables/22/3.21.table @@ -0,0 +1,8 @@ +# Code table 3.21 - Vertical dimension coordinate values definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1) = C1, f(n) = C2 * f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/3.25.table b/definitions/grib2/tables/22/3.25.table new file mode 100644 index 000000000..de1bc74ed --- /dev/null +++ b/definitions/grib2/tables/22/3.25.table @@ -0,0 +1,10 @@ +# Code table 3.25 - Type of bi-Fourier truncation +# 0-76 Reserved +77 77 Rectangular +# 78-87 Reserved +88 88 Elliptic +# 89-98 Reserved +99 99 Diamond +# 100-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/3.3.table b/definitions/grib2/tables/22/3.3.table new file mode 100644 index 000000000..5dd7c7001 --- /dev/null +++ b/definitions/grib2/tables/22/3.3.table @@ -0,0 +1,9 @@ +# Flag table 3.3 - Resolution and component flags +# 1-2 Reserved +3 0 i direction increments not given +3 1 i direction increments given +4 0 j direction increments not given +4 1 j direction increments given +5 0 Resolved u- and v- components of vector quantities relative to easterly and northerly directions +5 1 Resolved u- and v- components of vector quantities relative to the defined grid in the direction of increasing x and y (or i and j) coordinates, respectively +# 6-8 Reserved - set to zero diff --git a/definitions/grib2/tables/22/3.4.table b/definitions/grib2/tables/22/3.4.table new file mode 100644 index 000000000..897b813d7 --- /dev/null +++ b/definitions/grib2/tables/22/3.4.table @@ -0,0 +1,17 @@ +# Flag table 3.4 - Scanning mode +1 0 Points of first row or column scan in the +i (+x) direction +1 1 Points of first row or column scan in the -i (-x) direction +2 0 Points of first row or column scan in the -j (-y) direction +2 1 Points of first row or column scan in the +j (+y) direction +3 0 Adjacent points in i (x) direction are consecutive +3 1 Adjacent points in j (y) direction is consecutive +4 0 All rows scan in the same direction +4 1 Adjacent rows scans in the opposite direction +5 0 Points within odd rows are not offset in i (x) direction +5 1 Points within odd rows are offset by Di/2 in i (x) direction +6 0 Points within even rows are not offset in i (x) direction +6 1 Points within even rows are offset by Di/2 in i (x) direction +7 0 Points are not offset in j (y) direction +7 1 Points are offset by Dj/2 in j (y) direction +8 0 Rows have Ni grid points and columns have Nj grid points +8 1 Rows have Ni grid points if points are not offset in i direction Rows have Ni-1 grid points if points are offset by Di/2 in i direction Columns have Nj grid points if points are not offset in j direction Columns have Nj-1 grid points if points are offset by Dj/2 in j direction diff --git a/definitions/grib2/tables/22/3.5.table b/definitions/grib2/tables/22/3.5.table new file mode 100644 index 000000000..eabdde896 --- /dev/null +++ b/definitions/grib2/tables/22/3.5.table @@ -0,0 +1,5 @@ +# Flag table 3.5 - Projection centre +1 0 North Pole is on the projection plane +1 1 South Pole is on the projection plane +2 0 Only one projection centre is used +2 1 Projection is bipolar and symmetric diff --git a/definitions/grib2/tables/22/3.6.table b/definitions/grib2/tables/22/3.6.table new file mode 100644 index 000000000..dc7d107aa --- /dev/null +++ b/definitions/grib2/tables/22/3.6.table @@ -0,0 +1,3 @@ +# Code table 3.6 - Spectral data representation type +1 1 see separate doc or pdf file +2 2 Bi-Fourier representation diff --git a/definitions/grib2/tables/22/3.7.table b/definitions/grib2/tables/22/3.7.table new file mode 100644 index 000000000..0a7d6efde --- /dev/null +++ b/definitions/grib2/tables/22/3.7.table @@ -0,0 +1,5 @@ +# Code table 3.7 - Spectral data representation mode +0 0 Reserved +1 1 see separate doc or pdf file +# 2-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/22/3.8.table b/definitions/grib2/tables/22/3.8.table new file mode 100644 index 000000000..844e74235 --- /dev/null +++ b/definitions/grib2/tables/22/3.8.table @@ -0,0 +1,7 @@ +# Code table 3.8 - Grid point position +0 0 Grid points at triangle vertices +1 1 Grid points at centres of triangles +2 2 Grid points at midpoints of triangle sides +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/3.9.table b/definitions/grib2/tables/22/3.9.table new file mode 100644 index 000000000..fd730bc64 --- /dev/null +++ b/definitions/grib2/tables/22/3.9.table @@ -0,0 +1,4 @@ +# Flag table 3.9 - Numbering order of diamonds as seen from the corresponding pole +1 0 Clockwise orientation +1 1 Anti-clockwise (i.e. counter-clockwise) orientation +# 2-8 Reserved diff --git a/definitions/grib2/tables/22/4.0.table b/definitions/grib2/tables/22/4.0.table new file mode 100644 index 000000000..72f395b58 --- /dev/null +++ b/definitions/grib2/tables/22/4.0.table @@ -0,0 +1,75 @@ +# Code table 4.0 - Product definition template number +0 0 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +1 1 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +2 2 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer at a point in time +3 3 Derived forecasts based on a cluster of ensemble members over a rectangular area at a horizontal level or in a horizontal layer at a point in time +4 4 Derived forecasts based on a cluster of ensemble members over a circular area at a horizontal level or in a horizontal layer at a point in time +5 5 Probability forecasts at a horizontal level or in a horizontal layer at a point in time +6 6 Percentile forecasts at a horizontal level or in a horizontal layer at a point in time +7 7 Analysis or forecast error at a horizontal level or in a horizontal layer at a point in time +8 8 Average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +9 9 Probability forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +10 10 Percentile forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +11 11 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +12 12 Derived forecasts based on all ensemble members at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +13 13 Derived forecasts based on a cluster of ensemble members over a rectangular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +14 14 Derived forecasts based on a cluster of ensemble members over a circular area, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval +15 15 Average, accumulation, extreme values, or other statistically processed values over a spatial area at a horizontal level or in a horizontal layer at a point in time +# 16-19 Reserved +20 20 Radar product +# 21-29 Reserved +30 30 Satellite product (deprecated) +31 31 Satellite product +32 32 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +33 33 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +34 34 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +35 35 Satellite product with or without associated quality values +# 36-39 Reserved +40 40 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +41 41 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents +42 42 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +43 43 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents +44 44 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for aerosol +45 45 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for aerosol +46 46 Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +47 47 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for aerosol +48 48 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +49 49 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for optical properties of aerosol +# 50 Reserved +51 51 Categorical forecasts at a horizontal level or in a horizontal layer at a point in time +# 52 Reserved +53 53 Partitioned parameters at a horizontal level or in a horizontal layer at a point in time +54 54 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for partitioned parameters +55 55 Spatio-temporal changing tiles at a horizontal level or horizontal layer at a point in time +56 56 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (deprecated) +57 57 Analysis or forecast at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +58 58 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for atmospheric chemical constituents based on a distribution function +59 59 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for spatio-temporal changing tile parameters (corrected version of template 4.56) +60 60 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +61 61 Individual ensemble reforecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 62-66 Reserved +67 67 Average, accumulation and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +68 68 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval for atmospheric chemical constituents based on a distribution function +# 69 Reserved +70 70 Post-processing analysis or forecast at a horizontal level or in a horizontal layer at a point in time +71 71 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +72 72 Post-processing average, accumulation, extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +73 73 Post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous time interval +# 74-90 Reserved +91 91 Categorical forecasts at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# 92-253 Reserved +254 254 CCITT IA5 character string +# 255-999 Reserved +1000 1000 Cross-section of analysis and forecast at a point in time +1001 1001 Cross-section of averaged or otherwise statistically processed analysis or forecast over a range of time +1002 1002 Cross-section of analysis and forecast, averaged or otherwise statistically processed over latitude or longitude +# 1003-1099 Reserved +1100 1100 Hovmoller-type grid with no averaging or other statistical processing +1101 1101 Hovmoller-type grid with averaging or other statistical processing +50001 50001 Forecasting Systems with Variable Resolution in a point in time +50011 50011 Forecasting Systems with Variable Resolution in a continous or non countinous time interval +# 1102-32767 Reserved +# 32768-65534 Reserved for local use +40033 40033 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time for simulated (synthetic) satellite data +40034 40034 Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer, in a continuous or non-continuous interval for simulated (synthetic) satellite data +65535 65535 Missing diff --git a/definitions/grib2/tables/22/4.1.0.table b/definitions/grib2/tables/22/4.1.0.table new file mode 100644 index 000000000..04cfd7802 --- /dev/null +++ b/definitions/grib2/tables/22/4.1.0.table @@ -0,0 +1,27 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Temperature +1 1 Moisture +2 2 Momentum +3 3 Mass +4 4 Short-wave radiation +5 5 Long-wave radiation +6 6 Cloud +7 7 Thermodynamic stability indices +8 8 Kinematic stability indices +9 9 Temperature probabilities +10 10 Moisture probabilities +11 11 Momentum probabilities +12 12 Mass probabilities +13 13 Aerosols +14 14 Trace gases (e.g. ozone, CO2) +15 15 Radar +16 16 Forecast radar imagery +17 17 Electrodynamics +18 18 Nuclear/radiology +19 19 Physical atmospheric properties +20 20 Atmospheric chemical constituents +# 21-189 Reserved +190 190 CCITT IA5 string +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.1.1.table b/definitions/grib2/tables/22/4.1.1.table new file mode 100644 index 000000000..7b22b6fed --- /dev/null +++ b/definitions/grib2/tables/22/4.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Hydrology basic products +1 1 Hydrology probabilities +2 2 Inland water and sediment properties +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.1.10.table b/definitions/grib2/tables/22/4.1.10.table new file mode 100644 index 000000000..a9b20eb9c --- /dev/null +++ b/definitions/grib2/tables/22/4.1.10.table @@ -0,0 +1,10 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Waves +1 1 Currents +2 2 Ice +3 3 Surface properties +4 4 Subsurface properties +# 5-190 Reserved +191 191 Miscellaneous +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.1.192.table b/definitions/grib2/tables/22/4.1.192.table new file mode 100644 index 000000000..c428acab0 --- /dev/null +++ b/definitions/grib2/tables/22/4.1.192.table @@ -0,0 +1,4 @@ +#Discipline 192: ECMWF local parameters +255 255 Missing + + diff --git a/definitions/grib2/tables/22/4.1.2.table b/definitions/grib2/tables/22/4.1.2.table new file mode 100644 index 000000000..5b488fe9e --- /dev/null +++ b/definitions/grib2/tables/22/4.1.2.table @@ -0,0 +1,9 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Vegetation/biomass +1 1 Agri-/aquacultural special products +2 2 Transportation-related products +3 3 Soil products +4 4 Fire weather products +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.1.3.table b/definitions/grib2/tables/22/4.1.3.table new file mode 100644 index 000000000..7bf60d4a7 --- /dev/null +++ b/definitions/grib2/tables/22/4.1.3.table @@ -0,0 +1,11 @@ +# Code table 4.1 - Parameter category by product discipline +0 0 Image format products +1 1 Quantitative products +2 2 Cloud properties +3 3 Flight rule conditions +4 4 Volcanic ash +5 5 Sea-surface temperature +6 6 Solar radiation +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.11.table b/definitions/grib2/tables/22/4.11.table new file mode 100644 index 000000000..7f404c849 --- /dev/null +++ b/definitions/grib2/tables/22/4.11.table @@ -0,0 +1,10 @@ +# Code table 4.11 - Type of time intervals +0 0 Reserved +1 1 Successive times processed have same forecast time, start time of forecast is incremented +2 2 Successive times processed have same start time of forecast, forecast time is incremented +3 3 Successive times processed have start time of forecast incremented and forecast time decremented so that valid time remains constant +4 4 Successive times processed have start time of forecast decremented and forecast time incremented so that valid time remains constant +5 5 Floating subinterval of time between forecast time and end of overall time interval +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.12.table b/definitions/grib2/tables/22/4.12.table new file mode 100644 index 000000000..03fd89b36 --- /dev/null +++ b/definitions/grib2/tables/22/4.12.table @@ -0,0 +1,7 @@ +# Code table 4.12 - Operating mode +0 0 Maintenance mode +1 1 Clear air +2 2 Precipitation +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.13.table b/definitions/grib2/tables/22/4.13.table new file mode 100644 index 000000000..c92854eec --- /dev/null +++ b/definitions/grib2/tables/22/4.13.table @@ -0,0 +1,6 @@ +# Code table 4.13 - Quality control indicator +0 0 No quality control applied +1 1 Quality control applied +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.14.table b/definitions/grib2/tables/22/4.14.table new file mode 100644 index 000000000..a88cb93fa --- /dev/null +++ b/definitions/grib2/tables/22/4.14.table @@ -0,0 +1,6 @@ +# Code table 4.14 - Clutter filter indicator +0 0 No clutter filter used +1 1 Clutter filter used +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.15.table b/definitions/grib2/tables/22/4.15.table new file mode 100644 index 000000000..2e5f3dea3 --- /dev/null +++ b/definitions/grib2/tables/22/4.15.table @@ -0,0 +1,11 @@ +# Code table 4.15 - Type of spatial processing used to arrive at given data value from the source data +0 0 Data is calculated directly from the source grid with no interpolation +1 1 Bilinear interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +2 2 Bicubic interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +3 3 Using the value from the source grid grid-point which is nearest to the nominal grid-point +4 4 Budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +5 5 Spectral interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +6 6 Neighbor-budget interpolation using the 4 source grid grid-point values surrounding the nominal grid-point +# 7-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.16.table b/definitions/grib2/tables/22/4.16.table new file mode 100644 index 000000000..de025080a --- /dev/null +++ b/definitions/grib2/tables/22/4.16.table @@ -0,0 +1,9 @@ +# Code table 4.16 - Quality value associated with parameter +0 0 Confidence index +1 1 Quality indicator +2 2 Correlation of product with used calibration product +3 3 Standard deviation +4 4 Random error +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.192.table b/definitions/grib2/tables/22/4.192.table new file mode 100644 index 000000000..e1fd91594 --- /dev/null +++ b/definitions/grib2/tables/22/4.192.table @@ -0,0 +1,4 @@ +1 1 first +2 2 second +3 3 third +4 4 fourth diff --git a/definitions/grib2/tables/22/4.2.0.0.table b/definitions/grib2/tables/22/4.2.0.0.table new file mode 100644 index 000000000..7201a8667 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.0.table @@ -0,0 +1,34 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Temperature (K) +1 1 Virtual temperature (K) +2 2 Potential temperature (K) +3 3 Pseudo-adiabatic potential temperature or equivalent potential temperature (K) +4 4 Maximum temperature (K) +5 5 Minimum temperature (K) +6 6 Dewpoint temperature (K) +7 7 Dewpoint depression (or deficit) (K) +8 8 Lapse rate (K/m) +9 9 Temperature anomaly (K) +10 10 Latent heat net flux (W m-2) +11 11 Sensible heat net flux (W m-2) +12 12 Heat index (K) +13 13 Wind chill factor (K) +14 14 Minimum dewpoint depression (K) +15 15 Virtual potential temperature (K) +16 16 Snow phase change heat flux (W m-2) +17 17 Skin temperature (K) +18 18 Snow temperature (top of snow) (K) +19 19 Turbulent transfer coefficient for heat (Numeric) +20 20 Turbulent diffusion coefficient for heat (m2/s) +21 21 Apparent temperature (K) +22 22 Temperature tendency due to short-wave radiation (K s-1) +23 23 Temperature tendency due to long-wave radiation (K s-1) +24 24 Temperature tendency due to short-wave radiation, clear sky (K s-1) +25 25 Temperature tendency due to long-wave radiation, clear sky (K s-1) +26 26 Temperature tendency due to parameterization (K s-1) +27 27 Wet-bulb temperature (K) +28 28 Unbalanced component of temperature (K) +29 29 Temperature advection (K s-1) +# 30-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.0.1.table b/definitions/grib2/tables/22/4.2.0.1.table new file mode 100644 index 000000000..0c01ce89b --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.1.table @@ -0,0 +1,126 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Specific humidity (kg/kg) +1 1 Relative humidity (%) +2 2 Humidity mixing ratio (kg/kg) +3 3 Precipitable water (kg m-2) +4 4 Vapour pressure (Pa) +5 5 Saturation deficit (Pa) +6 6 Evaporation (kg m-2) +7 7 Precipitation rate (kg m-2 s-1) +8 8 Total precipitation (kg m-2) +9 9 Large-scale precipitation (non-convective) (kg m-2) +10 10 Convective precipitation (kg m-2) +11 11 Snow depth (m) +12 12 Snowfall rate water equivalent (kg m-2 s-1) +13 13 Water equivalent of accumulated snow depth (kg m-2) +14 14 Convective snow (kg m-2) +15 15 Large-scale snow (kg m-2) +16 16 Snow melt (kg m-2) +17 17 Snow age (d) +18 18 Absolute humidity (kg m-3) +19 19 Precipitation type (Code table 4.201) +20 20 Integrated liquid water (kg m-2) +21 21 Condensate (kg/kg) +22 22 Cloud mixing ratio (kg/kg) +23 23 Ice water mixing ratio (kg/kg) +24 24 Rain mixing ratio (kg/kg) +25 25 Snow mixing ratio (kg/kg) +26 26 Horizontal moisture convergence (kg kg-1 s-1) +27 27 Maximum relative humidity (%) +28 28 Maximum absolute humidity (kg m-3) +29 29 Total snowfall (m) +30 30 Precipitable water category (Code table 4.202) +31 31 Hail (m) +32 32 Graupel (snow pellets) (kg/kg) +33 33 Categorical rain (Code table 4.222) +34 34 Categorical freezing rain (Code table 4.222) +35 35 Categorical ice pellets (Code table 4.222) +36 36 Categorical snow (Code table 4.222) +37 37 Convective precipitation rate (kg m-2 s-1) +38 38 Horizontal moisture divergence (kg kg-1 s-1) +39 39 Per cent frozen precipitation (%) +40 40 Potential evaporation (kg m-2) +41 41 Potential evaporation rate (W m-2) +42 42 Snow cover (%) +43 43 Rain fraction of total cloud water (Proportion) +44 44 Rime factor (Numeric) +45 45 Total column integrated rain (kg m-2) +46 46 Total column integrated snow (kg m-2) +47 47 Large scale water precipitation (non-convective) (kg m-2) +48 48 Convective water precipitation (kg m-2) +49 49 Total water precipitation (kg m-2) +50 50 Total snow precipitation (kg m-2) +51 51 Total column water (Vertically integrated total water (vapour + cloud water/ice)) (kg m-2) +52 52 Total precipitation rate (kg m-2 s-1) +53 53 Total snowfall rate water equivalent (kg m-2 s-1) +54 54 Large scale precipitation rate (kg m-2 s-1) +55 55 Convective snowfall rate water equivalent (kg m-2 s-1) +56 56 Large scale snowfall rate water equivalent (kg m-2 s-1) +57 57 Total snowfall rate (m/s) +58 58 Convective snowfall rate (m/s) +59 59 Large scale snowfall rate (m/s) +60 60 Snow depth water equivalent (kg m-2) +61 61 Snow density (kg m-3) +62 62 Snow evaporation (kg m-2) +63 63 Reserved +64 64 Total column integrated water vapour (kg m-2) +65 65 Rain precipitation rate (kg m-2 s-1) +66 66 Snow precipitation rate (kg m-2 s-1) +67 67 Freezing rain precipitation rate (kg m-2 s-1) +68 68 Ice pellets precipitation rate (kg m-2 s-1) +69 69 Total column integrated cloud water (kg m-2) +70 70 Total column integrated cloud ice (kg m-2) +71 71 Hail mixing ratio (kg/kg) +72 72 Total column integrated hail (kg m-2) +73 73 Hail precipitation rate (kg m-2 s-1) +74 74 Total column integrated graupel (kg m-2) +75 75 Graupel (snow pellets) precipitation rate (kg m-2 s-1) +76 76 Convective rain rate (kg m-2 s-1) +77 77 Large scale rain rate (kg m-2 s-1) +78 78 Total column integrated water (all components including precipitation) (kg m-2) +79 79 Evaporation rate (kg m-2 s-1) +80 80 Total condensate (kg/kg) +81 81 Total column-integrated condensate (kg m-2) +82 82 Cloud ice mixing-ratio (kg/kg) +83 83 Specific cloud liquid water content (kg/kg) +84 84 Specific cloud ice water content (kg/kg) +85 85 Specific rainwater content (kg/kg) +86 86 Specific snow water content (kg/kg) +87 87 Stratiform precipitation rate (kg m-2 s-1) +88 88 Categorical convective precipitation (Code table 4.222) +# 89 Reserved +90 90 Total kinematic moisture flux (kg kg-1 m s-1) +91 91 u-component (zonal) kinematic moisture flux (kg kg-1 m s-1) +92 92 v-component (meridional) kinematic moisture flux (kg kg-1 m s-1) +93 93 Relative humidity with respect to water (%) +94 94 Relative humidity with respect to ice (%) +95 95 Freezing or frozen precipitation rate (kg m-2 s-1) +96 96 Mass density of rain (kg m-3) +97 97 Mass density of snow (kg m-3) +98 98 Mass density of graupel (kg m-3) +99 99 Mass density of hail (kg m-3) +100 100 Specific number concentration of rain (kg-1) +101 101 Specific number concentration of snow (kg-1) +102 102 Specific number concentration of graupel (kg-1) +103 103 Specific number concentration of hail (kg-1) +104 104 Number density of rain (m-3) +105 105 Number density of snow (m-3) +106 106 Number density of graupel (m-3) +107 107 Number density of hail (m-3) +108 108 Specific humidity tendency due to parameterization (kg kg-1 s-1) +109 109 Mass density of liquid water coating on hail expressed as mass of liquid water per unit volume of air (kg m-3) +110 110 Specific mass of liquid water coating on hail expressed as mass of liquid water per unit mass of moist air (kg kg-1) +111 111 Mass mixing ratio of liquid water coating on hail expressed as mass of liquid water per unit mass of dry air (kg kg-1) +112 112 Mass density of liquid water coating on graupel expressed as mass of liquid water per unit volume of air (kg m-3) +113 113 Specific mass of liquid water coating on graupel expressed as mass of liquid water per unit mass of moist air (kg kg-1) +114 114 Mass mixing ratio of liquid water coating on graupel expressed as mass of liquid water per unit mass of dry air (kg kg-1) +115 115 Mass density of liquid water coating on snow expressed as mass of liquid water per unit volume of air (kg m-3) +116 116 Specific mass of liquid water coating on snow expressed as mass of liquid water per unit mass of moist air (kg kg-1) +117 117 Mass mixing ratio of liquid water coating on snow expressed as mass of liquid water per unit mass of dry air (kg kg-1) +118 118 Unbalanced component of specific humidity (kg kg-1) +119 119 Unbalanced component of specific cloud liquid water content (kg kg-1) +120 120 Unbalanced component of specific cloud ice water content (kg kg-1) +121 121 Fraction of snow cover (Proportion) +# 122-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.0.13.table b/definitions/grib2/tables/22/4.2.0.13.table new file mode 100644 index 000000000..5086101ad --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.13.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Aerosol type (Code table 4.205) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.0.14.table b/definitions/grib2/tables/22/4.2.0.14.table new file mode 100644 index 000000000..215884737 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.14.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Total ozone (DU) +1 1 Ozone mixing ratio (kg/kg) +2 2 Total column integrated ozone (DU) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.0.15.table b/definitions/grib2/tables/22/4.2.0.15.table new file mode 100644 index 000000000..dfbc4d12f --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.15.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Base spectrum width (m/s) +1 1 Base reflectivity (dB) +2 2 Base radial velocity (m/s) +3 3 Vertically integrated liquid water (VIL) (kg m-2) +4 4 Layer-maximum base reflectivity (dB) +5 5 Precipitation (kg m-2) +6 6 Radar spectra (1) (-) +7 7 Radar spectra (2) (-) +8 8 Radar spectra (3) (-) +9 9 Reflectivity of cloud droplets (dB) +10 10 Reflectivity of cloud ice (dB) +11 11 Reflectivity of snow (dB) +12 12 Reflectivity of rain (dB) +13 13 Reflectivity of graupel (dB) +14 14 Reflectivity of hail (dB) +15 15 Hybrid scan reflectivity (dB) +16 16 Hybrid scan reflectivity height (m) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.0.16.table b/definitions/grib2/tables/22/4.2.0.16.table new file mode 100644 index 000000000..0c240a853 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.16.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Equivalent radar reflectivity factor for rain (mm6 m-3) +1 1 Equivalent radar reflectivity factor for snow (mm6 m-3) +2 2 Equivalent radar reflectivity factor for parameterized convection (mm6 m-3) +3 3 Echo top (m) +4 4 Reflectivity (dB) +5 5 Composite reflectivity (dB) +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.0.17.table b/definitions/grib2/tables/22/4.2.0.17.table new file mode 100644 index 000000000..ce1867aca --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.17.table @@ -0,0 +1,6 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Lightning strike density (m-2 s-1) +1 1 Lightning potential index (LPI) (J kg-1) +2 2 Cloud-to-ground Lightning flash density (km-2 day-1) +3 3 Cloud-to-cloud Lightning flash density (km-2 day-1) +4 4 Total Lightning flash density (km-2 day-1) diff --git a/definitions/grib2/tables/22/4.2.0.18.table b/definitions/grib2/tables/22/4.2.0.18.table new file mode 100644 index 000000000..9d106f419 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.18.table @@ -0,0 +1,23 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Air concentration of caesium 137 (Bq m-3) +1 1 Air concentration of iodine 131 (Bq m-3) +2 2 Air concentration of radioactive pollutant (Bq m-3) +3 3 Ground deposition of caesium 137 (Bq m-2) +4 4 Ground deposition of iodine 131 (Bq m-2) +5 5 Ground deposition of radioactive pollutant (Bq m-2) +6 6 Time-integrated air concentration of caesium pollutant (Bq s m-3) +7 7 Time-integrated air concentration of iodine pollutant (Bq s m-3) +8 8 Time-integrated air concentration of radioactive pollutant (Bq s m-3) +9 9 Reserved +10 10 Air concentration (Bq m-3) +11 11 Wet deposition (Bq m-2) +12 12 Dry deposition (Bq m-2) +13 13 Total deposition (wet + dry) (Bq m-2) +14 14 Specific activity concentration (Bq kg-1) +15 15 Maximum of air concentration in layer (Bq m-3) +16 16 Height of maximum air concentration (m) +17 17 Column-integrated air concentration (Bq m-2) +18 18 Column-averaged air concentration in layer (Bq m-3) +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.0.19.table b/definitions/grib2/tables/22/4.2.0.19.table new file mode 100644 index 000000000..d28010f2f --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.19.table @@ -0,0 +1,40 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Visibility (m) +1 1 Albedo (%) +2 2 Thunderstorm probability (%) +3 3 Mixed layer depth (m) +4 4 Volcanic ash (Code table 4.206) +5 5 Icing top (m) +6 6 Icing base (m) +7 7 Icing (Code table 4.207) +8 8 Turbulence top (m) +9 9 Turbulence base (m) +10 10 Turbulence (Code table 4.208) +11 11 Turbulent kinetic energy (J/kg) +12 12 Planetary boundary-layer regime (Code table 4.209) +13 13 Contrail intensity (Code table 4.210) +14 14 Contrail engine type (Code table 4.211) +15 15 Contrail top (m) +16 16 Contrail base (m) +17 17 Maximum snow albedo (%) +18 18 Snow free albedo (%) +19 19 Snow albedo (%) +20 20 Icing (%) +21 21 In-cloud turbulence (%) +22 22 Clear air turbulence (CAT) (%) +23 23 Supercooled large droplet probability (%) +24 24 Convective turbulent kinetic energy (J/kg) +25 25 Weather (Code table 4.225) +26 26 Convective outlook (Code table 4.224) +27 27 Icing scenario (Code table 4.227) +28 28 Mountain wave turbulence (eddy dissipation rate) (m2/3 s-1) +29 29 Clear air turbulence (CAT) (m2/3 s-1) +30 30 Eddy dissipation parameter (m2/3 s-1) +31 31 Maximum of eddy dissipation parameter in layer (m2/3 s-1) +32 32 Highest freezing level (m) +33 33 Visibility through liquid fog (m) +34 34 Visibility through ice fog (m) +35 35 Visibility through blowing snow (m) +# 36-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.0.190.table b/definitions/grib2/tables/22/4.2.0.190.table new file mode 100644 index 000000000..de621a924 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.190.table @@ -0,0 +1,5 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Arbitrary text string (CCITT IA5) +# 1-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.0.191.table b/definitions/grib2/tables/22/4.2.0.191.table new file mode 100644 index 000000000..e3bba0ebe --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Geographical latitude (deg N) +2 2 Geographical longitude (deg E) +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.0.2.table b/definitions/grib2/tables/22/4.2.0.2.table new file mode 100644 index 000000000..5446262e6 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.2.table @@ -0,0 +1,51 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wind direction (from which blowing) (degree true) +1 1 Wind speed (m/s) +2 2 u-component of wind (m/s) +3 3 v-component of wind (m/s) +4 4 Stream function (m2/s) +5 5 Velocity potential (m2/s) +6 6 Montgomery stream function (m2 s-2) +7 7 Sigma coordinate vertical velocity (/s) +8 8 Vertical velocity (pressure) (Pa/s) +9 9 Vertical velocity (geometric) (m/s) +10 10 Absolute vorticity (/s) +11 11 Absolute divergence (/s) +12 12 Relative vorticity (/s) +13 13 Relative divergence (/s) +14 14 Potential vorticity (K m2 kg-1 s-1) +15 15 Vertical u-component shear (/s) +16 16 Vertical v-component shear (/s) +17 17 Momentum flux, u-component (N m-2) +18 18 Momentum flux, v-component (N m-2) +19 19 Wind mixing energy (J) +20 20 Boundary layer dissipation (W m-2) +21 21 Maximum wind speed (m/s) +22 22 Wind speed (gust) (m/s) +23 23 u-component of wind (gust) (m/s) +24 24 v-component of wind (gust) (m/s) +25 25 Vertical speed shear (/s) +26 26 Horizontal momentum flux (N m-2) +27 27 u-component storm motion (m/s) +28 28 v-component storm motion (m/s) +29 29 Drag coefficient (Numeric) +30 30 Frictional velocity (m/s) +31 31 Turbulent diffusion coefficient for momentum (m2/s) +32 32 Eta coordinate vertical velocity (/s) +33 33 Wind fetch (m) +34 34 Normal wind component (m/s) +35 35 Tangential wind component (m/s) +36 36 Amplitude function for Rossby wave envelope for meridional wind (m/s) +37 37 Northward turbulent surface stress (N m-2 s) +38 38 Eastward turbulent surface stress (N m-2 s) +39 39 Eastward wind tendency due to parameterization (m s-2) +40 40 Northward wind tendency due to parameterization (m s-2) +41 41 u-component of geostrophic wind (m s-1) +42 42 v-component of geostrophic wind (m s-1) +43 43 Geostrophic wind direction (degree true) +44 44 Geostrophic wind speed (m s-1) +45 45 Unbalanced component of divergence (s-1) +46 46 Vorticity advection (s-2) +# 47-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.0.20.table b/definitions/grib2/tables/22/4.2.0.20.table new file mode 100644 index 000000000..9e6ac3c05 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.20.table @@ -0,0 +1,62 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Mass density (concentration) (kg m-3) +1 1 Column-integrated mass density (kg m-2) +2 2 Mass mixing ratio (mass fraction in air) (kg/kg) +3 3 Atmosphere emission mass flux (kg m-2 s-1) +4 4 Atmosphere net production mass flux (kg m-2 s-1) +5 5 Atmosphere net production and emission mass flux (kg m-2 s-1) +6 6 Surface dry deposition mass flux (kg m-2 s-1) +7 7 Surface wet deposition mass flux (kg m-2 s-1) +8 8 Atmosphere re-emission mass flux (kg m-2 s-1) +9 9 Wet deposition by large-scale precipitation mass flux (kg m-2 s-1) +10 10 Wet deposition by convective precipitation mass flux (kg m-2 s-1) +11 11 Sedimentation mass flux (kg m-2 s-1) +12 12 Dry deposition mass flux (kg m-2 s-1) +13 13 Transfer from hydrophobic to hydrophilic (kg kg-1 s-1) +14 14 Transfer from SO2 (sulphur dioxide) to SO4 (sulphate) (kg kg-1 s-1) +15 15 Dry deposition velocity (m/s) +16 16 Mass mixing ratio with respect to dry air (kg/kg) +17 17 Mass mixing ratio with respect to wet air (kg/kg) +# 18-49 Reserved +50 50 Amount in atmosphere (mol) +51 51 Concentration in air (mol m-3) +52 52 Volume mixing ratio (fraction in air) (mol/mol) +53 53 Chemical gross production rate of concentration (mol m-3 s-1) +54 54 Chemical gross destruction rate of concentration (mol m-3 s-1) +55 55 Surface flux (mol m-2 s-1) +56 56 Changes of amount in atmosphere (mol/s) +57 57 Total yearly average burden of the atmosphere (mol) +58 58 Total yearly averaged atmospheric loss (mol/s) +59 59 Aerosol number concentration (m-3) +60 60 Aerosol specific number concentration (kg-1) +61 61 Maximum of mass density in layer (kg m-3) +62 62 Height of maximum mass density (m) +63 63 Column-averaged mass density in layer (kg m-3) +64 64 Mole fraction with respect to dry air (mol/mol) +65 65 Mole fraction with respect to wet air (mol/mol) +66 66 Column-integrated in-cloud scavenging rate by precipitation (kg m-2 s-1) +67 67 Column-integrated below-cloud scavenging rate by precipitation (kg m-2 s-1) +68 68 Column-integrated release rate from evaporating precipitation (kg m-2 s-1) +69 69 Column-integrated in-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) +70 70 Column-integrated below-cloud scavenging rate by large-scale precipitation (kg m-2 s-1) +71 71 Column-integrated release rate from evaporating large-scale precipitation (kg m-2 s-1) +72 72 Column-integrated in-cloud scavenging rate by convective precipitation (kg m-2 s-1) +73 73 Column-integrated below-cloud scavenging rate by convective precipitation (kg m-2 s-1) +74 74 Column-integrated release rate from evaporating convective precipitation (kg m-2 s-1) +75 75 Wildfire flux (kg m-2 s-1) +# 76-99 Reserved +100 100 Surface area density (aerosol) (/m) +101 101 Vertical visual range (m) +102 102 Aerosol optical thickness (Numeric) +103 103 Single scattering albedo (Numeric) +104 104 Asymmetry factor (Numeric) +105 105 Aerosol extinction coefficient (/m) +106 106 Aerosol absorption coefficient (/m) +107 107 Aerosol lidar backscatter from satellite (m-1 sr-1) +108 108 Aerosol lidar backscatter from the ground (m-1 sr-1) +109 109 Aerosol lidar extinction from satellite (/m) +110 110 Aerosol lidar extinction from the ground (/m) +111 111 Angstrom exponent (Numeric) +# 112-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.0.3.table b/definitions/grib2/tables/22/4.2.0.3.table new file mode 100644 index 000000000..34941dcab --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.3.table @@ -0,0 +1,36 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Pressure (Pa) +1 1 Pressure reduced to MSL (Pa) +2 2 Pressure tendency (Pa/s) +3 3 ICAO Standard Atmosphere Reference Height (m) +4 4 Geopotential (m2 s-2) +5 5 Geopotential height (gpm) +6 6 Geometric height (m) +7 7 Standard deviation of height (m) +8 8 Pressure anomaly (Pa) +9 9 Geopotential height anomaly (gpm) +10 10 Density (kg m-3) +11 11 Altimeter setting (Pa) +12 12 Thickness (m) +13 13 Pressure altitude (m) +14 14 Density altitude (m) +15 15 5-wave geopotential height (gpm) +16 16 Zonal flux of gravity wave stress (N m-2) +17 17 Meridional flux of gravity wave stress (N m-2) +18 18 Planetary boundary layer height (m) +19 19 5-wave geopotential height anomaly (gpm) +20 20 Standard deviation of sub-grid scale orography (m) +21 21 Angle of sub-gridscale orography (rad) +22 22 Slope of sub-gridscale orography (Numeric) +23 23 Gravity wave dissipation (W m-2) +24 24 Anisotropy of sub-gridscale orography (Numeric) +25 25 Natural logarithm of pressure in Pa (Numeric) +26 26 Exner pressure (Numeric) +27 27 Updraught mass flux (kg m-2 s-1) +28 28 Downdraught mass flux (kg m-2 s-1) +29 29 Updraught detrainment rate (kg m-3 s-1) +30 30 Downdraught detrainment rate (kg m-3 s-1) +31 31 Unbalanced component of logarithm of surface pressure (-) +# 32-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.0.4.table b/definitions/grib2/tables/22/4.2.0.4.table new file mode 100644 index 000000000..0a5ded2b5 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net short-wave radiation flux (surface) (W m-2) +1 1 Net short-wave radiation flux (top of atmosphere) (W m-2) +2 2 Short-wave radiation flux (W m-2) +3 3 Global radiation flux (W m-2) +4 4 Brightness temperature (K) +5 5 Radiance (with respect to wave number) (W m-1 sr-1) +6 6 Radiance (with respect to wavelength) (W m-3 sr-1) +7 7 Downward short-wave radiation flux (W m-2) +8 8 Upward short-wave radiation flux (W m-2) +9 9 Net short wave radiation flux (W m-2) +10 10 Photosynthetically active radiation (W m-2) +11 11 Net short-wave radiation flux, clear sky (W m-2) +12 12 Downward UV radiation (W m-2) +13 13 Direct short-wave radiation flux (W m-2) +14 14 Diffuse short-wave radiation flux (W m-2) +# 15-49 Reserved +50 50 UV index (under clear sky) (Numeric) +51 51 UV index (Numeric) +52 52 Downward short-wave radiation flux, clear sky (W m-2) +53 53 Upward short-wave radiation flux, clear sky (W m-2) +# 54-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.0.5.table b/definitions/grib2/tables/22/4.2.0.5.table new file mode 100644 index 000000000..4550220b6 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.5.table @@ -0,0 +1,13 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Net long-wave radiation flux (surface) (W m-2) +1 1 Net long-wave radiation flux (top of atmosphere) (W m-2) +2 2 Long-wave radiation flux (W m-2) +3 3 Downward long-wave radiation flux (W m-2) +4 4 Upward long-wave radiation flux (W m-2) +5 5 Net long-wave radiation flux (W m-2) +6 6 Net long-wave radiation flux, clear sky (W m-2) +7 7 Brightness temperature (K) +8 8 Downward long-wave radiation flux, clear sky (W m-2) +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.0.6.table b/definitions/grib2/tables/22/4.2.0.6.table new file mode 100644 index 000000000..4cec0c8aa --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.6.table @@ -0,0 +1,49 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Cloud ice (kg m-2) +1 1 Total cloud cover (%) +2 2 Convective cloud cover (%) +3 3 Low cloud cover (%) +4 4 Medium cloud cover (%) +5 5 High cloud cover (%) +6 6 Cloud water (kg m-2) +7 7 Cloud amount (%) +8 8 Cloud type (Code table 4.203) +9 9 Thunderstorm maximum tops (m) +10 10 Thunderstorm coverage (Code table 4.204) +11 11 Cloud base (m) +12 12 Cloud top (m) +13 13 Ceiling (m) +14 14 Non-convective cloud cover (%) +15 15 Cloud work function (J/kg) +16 16 Convective cloud efficiency (Proportion) +17 17 Total condensate (kg/kg) +18 18 Total column-integrated cloud water (kg m-2) +19 19 Total column-integrated cloud ice (kg m-2) +20 20 Total column-integrated condensate (kg m-2) +21 21 Ice fraction of total condensate (Proportion) +22 22 Cloud cover (%) +23 23 Cloud ice mixing ratio (kg/kg) +24 24 Sunshine (Numeric) +25 25 Horizontal extent of cumulonimbus (CB) (%) +26 26 Height of convective cloud base (m) +27 27 Height of convective cloud top (m) +28 28 Number of cloud droplets per unit mass of air (/kg) +29 29 Number of cloud ice particles per unit mass of air (/kg) +30 30 Number density of cloud droplets (m-3) +31 31 Number density of cloud ice particles (m-3) +32 32 Fraction of cloud cover (Numeric) +33 33 Sunshine duration (s) +34 34 Surface long-wave effective total cloudiness (Numeric) +35 35 Surface short-wave effective total cloudiness (Numeric) +36 36 Fraction of stratiform precipitation cover (Proportion) +37 37 Fraction of convective precipitation cover (Proportion) +38 38 Mass density of cloud droplets (kg m-3) +39 39 Mass density of cloud ice (kg m-3) +40 40 Mass density of convective cloud water droplets (kg m-3) +# 41-46 Reserved +47 47 Volume fraction of cloud water droplets (Numeric) +48 48 Volume fraction of cloud ice particles (Numeric) +49 49 Volume fraction of cloud (ice and/or water) (Numeric) +# 50-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.0.7.table b/definitions/grib2/tables/22/4.2.0.7.table new file mode 100644 index 000000000..aff6a6516 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.0.7.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Parcel lifted index (to 500 hPa) (K) +1 1 Best lifted index (to 500 hPa) (K) +2 2 K index (K) +3 3 KO index (K) +4 4 Total totals index (K) +5 5 Sweat index (Numeric) +6 6 Convective available potential energy (J/kg) +7 7 Convective inhibition (J/kg) +8 8 Storm relative helicity (J/kg) +9 9 Energy helicity index (Numeric) +10 10 Surface lifted index (K) +11 11 Best (4-layer) lifted index (K) +12 12 Richardson number (Numeric) +13 13 Showalter index (K) +14 14 Reserved +15 15 Updraught helicity (m2 s-2) +16 16 Bulk Richardson number (Numeric) +17 17 Gradient Richardson number (Numeric) +18 18 Flux Richardson number (Numeric) +19 19 Convective available potential energy - shear (m2 s-2) +# 20-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.1.0.table b/definitions/grib2/tables/22/4.2.1.0.table new file mode 100644 index 000000000..bcd849c2e --- /dev/null +++ b/definitions/grib2/tables/22/4.2.1.0.table @@ -0,0 +1,21 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Flash flood guidance (Encoded as an accumulation over a floating subinterval of time between the reference time and valid time) (kg m-2) +1 1 Flash flood runoff (Encoded as an accumulation over a floating subinterval of time) (kg m-2) +2 2 Remotely-sensed snow cover (Code table 4.215) +3 3 Elevation of snow-covered terrain (Code table 4.216) +4 4 Snow water equivalent per cent of normal (%) +5 5 Baseflow-groundwater runoff (kg m-2) +6 6 Storm surface runoff (kg m-2) +7 7 Discharge from rivers or streams (m3/s) +8 8 Groundwater upper storage (kg m-2) +9 9 Groundwater lower storage (kg m-2) +10 10 Side flow into river channel (m3 s-1 m-1) +11 11 River storage of water (m3) +12 12 Floodplain storage of water (m3) +13 13 Depth of water on soil surface (kg m-2) +14 14 Upstream accumulated precipitation (kg m-2) +15 15 Upstream accumulated snow melt (kg m-2) +16 16 Percolation rate (kg m-2 s-1) +# 17-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.1.1.table b/definitions/grib2/tables/22/4.2.1.1.table new file mode 100644 index 000000000..b488eb0bd --- /dev/null +++ b/definitions/grib2/tables/22/4.2.1.1.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Conditional per cent precipitation amount fractile for an overall period (Encoded as an accumulation) (kg m-2) +1 1 Per cent precipitation in a sub-period of an overall period (Encoded as per cent accumulation over the sub-period) (%) +2 2 Probability of 0.01 inch of precipitation (POP) (%) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.1.2.table b/definitions/grib2/tables/22/4.2.1.2.table new file mode 100644 index 000000000..ec9b11d41 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.1.2.table @@ -0,0 +1,15 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water depth (m) +1 1 Water temperature (K) +2 2 Water fraction (Proportion) +3 3 Sediment thickness (m) +4 4 Sediment temperature (K) +5 5 Ice thickness (m) +6 6 Ice temperature (K) +7 7 Ice cover (Proportion) +8 8 Land cover (0 = water, 1 = land) (Proportion) +9 9 Shape factor with respect to salinity profile (-) +10 10 Shape factor with respect to temperature profile in thermocline (-) +11 11 Attenuation coefficient of water with respect to solar radiation (/m) +12 12 Salinity (kg/kg) +13 13 Cross-sectional area of flow in channel (m2) diff --git a/definitions/grib2/tables/22/4.2.10.0.table b/definitions/grib2/tables/22/4.2.10.0.table new file mode 100644 index 000000000..6a60ba8aa --- /dev/null +++ b/definitions/grib2/tables/22/4.2.10.0.table @@ -0,0 +1,70 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Wave spectra (1) (-) +1 1 Wave spectra (2) (-) +2 2 Wave spectra (3) (-) +3 3 Significant height of combined wind waves and swell (m) +4 4 Direction of wind waves (degree true) +5 5 Significant height of wind waves (m) +6 6 Mean period of wind waves (s) +7 7 Direction of swell waves (degree true) +8 8 Significant height of swell waves (m) +9 9 Mean period of swell waves (s) +10 10 Primary wave direction (degree true) +11 11 Primary wave mean period (s) +12 12 Secondary wave direction (degree true) +13 13 Secondary wave mean period (s) +14 14 Direction of combined wind waves and swell (degree true) +15 15 Mean period of combined wind waves and swell (s) +16 16 Coefficient of drag with waves (-) +17 17 Friction velocity (m/s) +18 18 Wave stress (N m-2) +19 19 Normalized wave stress (-) +20 20 Mean square slope of waves (-) +21 21 u-component surface Stokes drift (m/s) +22 22 v-component surface Stokes drift (m/s) +23 23 Period of maximum individual wave height (s) +24 24 Maximum individual wave height (m) +25 25 Inverse mean wave frequency (s) +26 26 Inverse mean frequency of wind waves (s) +27 27 Inverse mean frequency of total swell (s) +28 28 Mean zero-crossing wave period (s) +29 29 Mean zero-crossing period of wind waves (s) +30 30 Mean zero-crossing period of total swell (s) +31 31 Wave directional width (-) +32 32 Directional width of wind waves (-) +33 33 Directional width of total swell (-) +34 34 Peak wave period (s) +35 35 Peak period of wind waves (s) +36 36 Peak period of total swell (s) +37 37 Altimeter wave height (m) +38 38 Altimeter corrected wave height (m) +39 39 Altimeter range relative correction (-) +40 40 10-metre neutral wind speed over waves (m/s) +41 41 10-metre wind direction over waves (deg) +42 42 Wave energy spectrum (m2 s rad-1) +43 43 Kurtosis of the sea-surface elevation due to waves (-) +44 44 Benjamin-Feir index (-) +45 45 Spectral peakedness factor (/s) +46 46 Peak wave direction (deg) +47 47 Significant wave height of first swell partition (m) +48 48 Significant wave height of second swell partition (m) +49 49 Significant wave height of third swell partition (m) +50 50 Mean wave period of first swell partition (s) +51 51 Mean wave period of second swell partition (s) +52 52 Mean wave period of third swell partition (s) +53 53 Mean wave direction of first swell partition (deg) +54 54 Mean wave direction of second swell partition (deg) +55 55 Mean wave direction of third swell partition (deg) +# 56-191 Reserved +56 56 Wave directional width of first swell partition (-) +57 57 Wave directional width of second swell partition (-) +58 58 Wave directional width of third swell partition (-) +59 59 Wave frequency width of first swell partition (-) +60 60 Wave frequency width of second swell partition (-) +61 61 Wave frequency width of third swell partition (-) +62 62 Wave frequency width (-) +63 63 Frequency width of wind waves (-) +64 64 Frequency width of total swell (-) +# 65-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.10.1.table b/definitions/grib2/tables/22/4.2.10.1.table new file mode 100644 index 000000000..00a084e34 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.10.1.table @@ -0,0 +1,9 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Current direction (degree true) +1 1 Current speed (m/s) +2 2 u-component of current (m/s) +3 3 v-component of current (m/s) +4 4 Rip current occurrence probability (%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.10.191.table b/definitions/grib2/tables/22/4.2.10.191.table new file mode 100644 index 000000000..524929e78 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.10.191.table @@ -0,0 +1,8 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Seconds prior to initial reference time (defined in Section 1) (s) +1 1 Meridional overturning stream function (m3/s) +2 2 Reserved +3 3 Days since last observation (d) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.10.2.table b/definitions/grib2/tables/22/4.2.10.2.table new file mode 100644 index 000000000..6797062ac --- /dev/null +++ b/definitions/grib2/tables/22/4.2.10.2.table @@ -0,0 +1,17 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Ice cover (Proportion) +1 1 Ice thickness (m) +2 2 Direction of ice drift (degree true) +3 3 Speed of ice drift (m/s) +4 4 u-component of ice drift (m/s) +5 5 v-component of ice drift (m/s) +6 6 Ice growth rate (m/s) +7 7 Ice divergence (/s) +8 8 Ice temperature (K) +9 9 Module of ice internal pressure (Pa m) +10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) +11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) +12 12 Compressive ice strength (N/m) +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.10.3.table b/definitions/grib2/tables/22/4.2.10.3.table new file mode 100644 index 000000000..de7afd61c --- /dev/null +++ b/definitions/grib2/tables/22/4.2.10.3.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Water temperature (K) +1 1 Deviation of sea level from mean (m) +2 2 Heat exchange coefficient (-) +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.10.4.table b/definitions/grib2/tables/22/4.2.10.4.table new file mode 100644 index 000000000..69ba0cc66 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.10.4.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Main thermocline depth (m) +1 1 Main thermocline anomaly (m) +2 2 Transient thermocline depth (m) +3 3 Salinity (kg/kg) +4 4 Ocean vertical heat diffusivity (m2/s) +5 5 Ocean vertical salt diffusivity (m2/s) +6 6 Ocean vertical momentum diffusivity (m2/s) +7 7 Bathymetry (m) +# 8-10 Reserved +11 11 Shape factor with respect to salinity profile (-) +12 12 Shape factor with respect to temperature profile in thermocline (-) +13 13 Attenuation coefficient of water with respect to solar radiation (/m) +14 14 Water depth (m) +15 15 Water temperature (K) +16 16 Water density (rho) (kg m-3) +17 17 Water density anomaly (sigma) (kg m-3) +18 18 Water potential temperature (theta) (K) +19 19 Water potential density (rho theta) (kg m-3) +20 20 Water potential density anomaly (sigma theta) (kg m-3) +21 21 Practical salinity (Numeric) +# 22-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.2.0.table b/definitions/grib2/tables/22/4.2.2.0.table new file mode 100644 index 000000000..81548840c --- /dev/null +++ b/definitions/grib2/tables/22/4.2.2.0.table @@ -0,0 +1,43 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Land cover (0 = sea, 1 = land) (Proportion) +1 1 Surface roughness (m) +2 2 Soil temperature (K) +3 3 Soil moisture content (kg m-2) +4 4 Vegetation (%) +5 5 Water runoff (kg m-2) +6 6 Evapotranspiration (kg-2 s-1) +7 7 Model terrain height (m) +8 8 Land use (Code table 4.212) +9 9 Volumetric soil moisture content (Proportion) +10 10 Ground heat flux (W m-2) +11 11 Moisture availability (%) +12 12 Exchange coefficient (kg m-2 s-1) +13 13 Plant canopy surface water (kg m-2) +14 14 Blackadar's mixing length scale (m) +15 15 Canopy conductance (m/s) +16 16 Minimal stomatal resistance (s/m) +17 17 Wilting point (Proportion) +18 18 Solar parameter in canopy conductance (Proportion) +19 19 Temperature parameter in canopy (Proportion) +20 20 Humidity parameter in canopy conductance (Proportion) +21 21 Soil moisture parameter in canopy conductance (Proportion) +22 22 Soil moisture (kg m-3) +23 23 Column-integrated soil water (kg m-2) +24 24 Heat flux (W m-2) +25 25 Volumetric soil moisture (m3 m-3) +26 26 Wilting point (kg m-3) +27 27 Volumetric wilting point (m3 m-3) +28 28 Leaf area index (Numeric) +29 29 Evergreen forest cover (Proportion) +30 30 Deciduous forest cover (Proportion) +31 31 Normalized differential vegetation index (NDVI) (Numeric) +32 32 Root depth of vegetation (m) +33 33 Water runoff and drainage (kg m-2) +34 34 Surface water runoff (kg m-2) +35 35 Tile class (Code table 4.243) +36 36 Tile fraction (Proportion) +37 37 Tile percentage (%) +38 38 Soil volumetric ice content (water equivalent) (m3 m-3) +# 39-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.2.3.table b/definitions/grib2/tables/22/4.2.2.3.table new file mode 100644 index 000000000..690fab42b --- /dev/null +++ b/definitions/grib2/tables/22/4.2.2.3.table @@ -0,0 +1,32 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Soil type (Code table 4.213) +1 1 Upper layer soil temperature (K) +2 2 Upper layer soil moisture (kg m-3) +3 3 Lower layer soil moisture (kg m-3) +4 4 Bottom layer soil temperature (K) +5 5 Liquid volumetric soil moisture (non-frozen) (Proportion) +6 6 Number of soil layers in root zone (Numeric) +7 7 Transpiration stress-onset (soil moisture) (Proportion) +8 8 Direct evaporation cease (soil moisture) (Proportion) +9 9 Soil porosity (Proportion) +10 10 Liquid volumetric soil moisture (non-frozen) (m3 m-3) +11 11 Volumetric transpiration stress-onset (soil moisture) (m3 m-3) +12 12 Transpiration stress-onset (soil moisture) (kg m-3) +13 13 Volumetric direct evaporation cease (soil moisture) (m3 m-3) +14 14 Direct evaporation cease (soil moisture) (kg m-3) +15 15 Soil porosity (m3 m-3) +16 16 Volumetric saturation of soil moisture (m3 m-3) +17 17 Saturation of soil moisture (kg m-3) +18 18 Soil temperature (K) +19 19 Soil moisture (kg m-3) +20 20 Column-integrated soil moisture (kg m-2) +21 21 Soil ice (kg m-3) +22 22 Column-integrated soil ice (kg m-2) +23 23 Liquid water in snow pack (kg m-2) +24 24 Frost index (K day-1) +25 25 Snow depth at elevation bands (kg m-2) +26 26 Soil heat flux (W m-2) +27 27 Soil depth (m) +# 28-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.2.4.table b/definitions/grib2/tables/22/4.2.2.4.table new file mode 100644 index 000000000..bb54fac22 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.2.4.table @@ -0,0 +1,16 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Fire outlook (Code table 4.224) +1 1 Fire outlook due to dry thunderstorm (Code table 4.224) +2 2 Haines index (Numeric) +3 3 Fire burned area (%) +4 4 Fosberg index (Numeric) +5 5 Forest Fire Weather Index (Canadian Forest Service) (Numeric) +6 6 Fine Fuel Moisture Code (Canadian Forest Service) (Numeric) +7 7 Duff Moisture Code (Canadian Forest Service) (Numeric) +8 8 Drought Code (Canadian Forest Service) (Numeric) +9 9 Initial Fire Spread Index (Canadian Forest Service) (Numeric) +10 10 Fire Buildup Index (Canadian Forest Service) (Numeric) +11 11 Fire Daily Severity Rating (Canadian Forest Service) (Numeric) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.2.5.table b/definitions/grib2/tables/22/4.2.2.5.table new file mode 100644 index 000000000..10fb68956 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.2.5.table @@ -0,0 +1,2 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +1 1 Glacier temperature (K) diff --git a/definitions/grib2/tables/22/4.2.3.0.table b/definitions/grib2/tables/22/4.2.3.0.table new file mode 100644 index 000000000..c0ffa29f5 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.3.0.table @@ -0,0 +1,14 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Scaled radiance (Numeric) +1 1 Scaled albedo (Numeric) +2 2 Scaled brightness temperature (Numeric) +3 3 Scaled precipitable water (Numeric) +4 4 Scaled lifted index (Numeric) +5 5 Scaled cloud top pressure (Numeric) +6 6 Scaled skin temperature (Numeric) +7 7 Cloud mask (Code table 4.217) +8 8 Pixel scene type (Code table 4.218) +9 9 Fire detection indicator (Code table 4.223) +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.3.1.table b/definitions/grib2/tables/22/4.2.3.1.table new file mode 100644 index 000000000..7d4364f4d --- /dev/null +++ b/definitions/grib2/tables/22/4.2.3.1.table @@ -0,0 +1,35 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Estimated precipitation (kg m-2) +1 1 Instantaneous rain rate (kg m-2 s-1) +2 2 Cloud top height (m) +3 3 Cloud top height quality indicator (Code table 4.219) +4 4 Estimated u-component of wind (m/s) +5 5 Estimated v-component of wind (m/s) +6 6 Number of pixel used (Numeric) +7 7 Solar zenith angle (deg) +8 8 Relative azimuth angle (deg) +9 9 Reflectance in 0.6 micron channel (%) +10 10 Reflectance in 0.8 micron channel (%) +11 11 Reflectance in 1.6 micron channel (%) +12 12 Reflectance in 3.9 micron channel (%) +13 13 Atmospheric divergence (/s) +14 14 Cloudy brightness temperature (K) +15 15 Clear-sky brightness temperature (K) +16 16 Cloudy radiance (with respect to wave number) (W m-1 sr-1) +17 17 Clear-sky radiance (with respect to wave number) (W m-1 sr-1) +18 18 Reserved +19 19 Wind speed (m/s) +20 20 Aerosol optical thickness at 0.635 um +21 21 Aerosol optical thickness at 0.810 um +22 22 Aerosol optical thickness at 1.640 um +23 23 Angstrom coefficient +# 24-26 Reserved +27 27 Bidirectional reflectance factor (numeric) +28 28 Brightness temperature (K) +29 29 Scaled radiance (numeric) +# 30-97 Reserved +98 98 Correlation coefficient between MPE rain-rates for the co-located IR data and the microwave data rain-rates (Numeric) +99 99 Standard deviation between MPE rain-rates for the co-located IR data and the microwave data rain-rates (kg m-2 s-1) +# 100-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.2.3.2.table b/definitions/grib2/tables/22/4.2.3.2.table new file mode 100644 index 000000000..6316ab39c --- /dev/null +++ b/definitions/grib2/tables/22/4.2.3.2.table @@ -0,0 +1,24 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Clear sky probability (%) +1 1 Cloud top temperature (K) +2 2 Cloud top pressure (Pa) +3 3 Cloud type (Code table 4.218) +4 4 Cloud phase (Code table 4.218) +5 5 Cloud optical depth (Numeric) +6 6 Cloud particle effective radius (m) +7 7 Cloud liquid water path (kg m-2) +8 8 Cloud ice water path (kg m-2) +9 9 Cloud albedo (Numeric) +10 10 Cloud emissivity (Numeric) +11 11 Effective absorption optical depth ratio (Numeric) +30 30 Measurement cost (Numeric) +31 31 Upper layer cloud optical depth (Numeric) +32 32 Upper layer cloud top pressure (Pa) +33 33 Upper layer cloud effective radius (m) +34 34 Error in upper layer cloud optical depth (Numeric) +35 35 Error in upper layer cloud top pressure (Pa) +36 36 Error in upper layer cloud effective radius (m) +37 37 Lower layer cloud optical depth (Numeric) +38 38 Lower layer cloud top pressure (Pa) +39 39 Error in lower layer cloud optical depth (Numeric) +40 40 Error in lower layer cloud top pressure (Pa) diff --git a/definitions/grib2/tables/22/4.2.3.3.table b/definitions/grib2/tables/22/4.2.3.3.table new file mode 100644 index 000000000..cb5c4b6ed --- /dev/null +++ b/definitions/grib2/tables/22/4.2.3.3.table @@ -0,0 +1,4 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Probability of encountering marginal visual flight rule conditions (%) +1 1 Probability of encountering low instrument flight rule conditions (%) +2 2 Probability of encountering instrument flight rule conditions (%) diff --git a/definitions/grib2/tables/22/4.2.3.4.table b/definitions/grib2/tables/22/4.2.3.4.table new file mode 100644 index 000000000..f86d2d653 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.3.4.table @@ -0,0 +1,10 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Volcanic ash probability (%) +1 1 Volcanic ash cloud top temperature (K) +2 2 Volcanic ash cloud top pressure (Pa) +3 3 Volcanic ash cloud top height (m) +4 4 Volcanic ash cloud emissivity (Numeric) +5 5 Volcanic ash effective absorption optical depth ratio (Numeric) +6 6 Volcanic ash cloud optical depth (Numeric) +7 7 Volcanic ash column density (kg m-2) +8 8 Volcanic ash particle effective radius (m) diff --git a/definitions/grib2/tables/22/4.2.3.5.table b/definitions/grib2/tables/22/4.2.3.5.table new file mode 100644 index 000000000..92a050db0 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.3.5.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Interface sea-surface temperature (K) +1 1 Skin sea-surface temperature (K) +2 2 Sub-skin sea-surface temperature (K) +3 3 Foundation sea-surface temperature (K) +4 4 Estimated bias between sea-surface temperature and standard (K) +5 5 Estimated standard deviation between sea surface temperature and standard (K) diff --git a/definitions/grib2/tables/22/4.2.3.6.table b/definitions/grib2/tables/22/4.2.3.6.table new file mode 100644 index 000000000..471beed55 --- /dev/null +++ b/definitions/grib2/tables/22/4.2.3.6.table @@ -0,0 +1,7 @@ +# Code table 4.2 - Parameter number by product discipline and parameter category +0 0 Global solar irradiance (W m-2) +1 1 Global solar exposure (J m-2) +2 2 Direct solar irradiance (W m-2) +3 3 Direct solar exposure (J m-2) +4 4 Diffuse solar irradiance (W m-2) +5 5 Diffuse solar exposure (J m-2) diff --git a/definitions/grib2/tables/22/4.201.table b/definitions/grib2/tables/22/4.201.table new file mode 100644 index 000000000..44943d5e0 --- /dev/null +++ b/definitions/grib2/tables/22/4.201.table @@ -0,0 +1,17 @@ +# Code table 4.201 - Precipitation type +0 0 Reserved +1 1 Rain +2 2 Thunderstorm +3 3 Freezing rain +4 4 Mixed/ice +5 5 Snow +6 6 Wet snow +7 7 Mixture of rain and snow +8 8 Ice pellets +9 9 Graupel +10 10 Hail +11 11 Drizzle +12 12 Freezing drizzle +# 13-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.202.table b/definitions/grib2/tables/22/4.202.table new file mode 100644 index 000000000..438502ff9 --- /dev/null +++ b/definitions/grib2/tables/22/4.202.table @@ -0,0 +1,4 @@ +# Code table 4.202 - Precipitable water category +# 0-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.203.table b/definitions/grib2/tables/22/4.203.table new file mode 100644 index 000000000..8a9aedf7a --- /dev/null +++ b/definitions/grib2/tables/22/4.203.table @@ -0,0 +1,26 @@ +# Code table 4.203 - Cloud type +0 0 Clear +1 1 Cumulonimbus +2 2 Stratus +3 3 Stratocumulus +4 4 Cumulus +5 5 Altostratus +6 6 Nimbostratus +7 7 Altocumulus +8 8 Cirrostratus +9 9 Cirrocumulus +10 10 Cirrus +11 11 Cumulonimbus - ground-based fog beneath the lowest layer +12 12 Stratus - ground-based fog beneath the lowest layer +13 13 Stratocumulus - ground-based fog beneath the lowest layer +14 14 Cumulus - ground-based fog beneath the lowest layer +15 15 Altostratus - ground-based fog beneath the lowest layer +16 16 Nimbostratus - ground-based fog beneath the lowest layer +17 17 Altocumulus - ground-based fog beneath the lowest layer +18 18 Cirrostratus - ground-based fog beneath the lowest layer +19 19 Cirrocumulus - ground-based fog beneath the lowest layer +20 20 Cirrus - ground-based fog beneath the lowest layer +# 21-190 Reserved +191 191 Unknown +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.204.table b/definitions/grib2/tables/22/4.204.table new file mode 100644 index 000000000..481372936 --- /dev/null +++ b/definitions/grib2/tables/22/4.204.table @@ -0,0 +1,9 @@ +# Code table 4.204 - Thunderstorm coverage +0 0 None +1 1 Isolated (1-2%) +2 2 Few (3-5%) +3 3 Scattered (6-45%) +4 4 Numerous (> 45%) +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.205.table b/definitions/grib2/tables/22/4.205.table new file mode 100644 index 000000000..5b4484dfd --- /dev/null +++ b/definitions/grib2/tables/22/4.205.table @@ -0,0 +1,6 @@ +# Code table 4.205 - Presence of aerosol +0 0 Aerosol not present +1 1 Aerosol present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.206.table b/definitions/grib2/tables/22/4.206.table new file mode 100644 index 000000000..02c3dfdf9 --- /dev/null +++ b/definitions/grib2/tables/22/4.206.table @@ -0,0 +1,6 @@ +# Code table 4.206 - Volcanic ash +0 0 Not present +1 1 Present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.207.table b/definitions/grib2/tables/22/4.207.table new file mode 100644 index 000000000..8ddb2e048 --- /dev/null +++ b/definitions/grib2/tables/22/4.207.table @@ -0,0 +1,10 @@ +# Code table 4.207 - Icing +0 0 None +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Trace +5 5 Heavy +# 6-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.208.table b/definitions/grib2/tables/22/4.208.table new file mode 100644 index 000000000..b83685a1a --- /dev/null +++ b/definitions/grib2/tables/22/4.208.table @@ -0,0 +1,9 @@ +# Code table 4.208 - Turbulence +0 0 None (smooth) +1 1 Light +2 2 Moderate +3 3 Severe +4 4 Extreme +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.209.table b/definitions/grib2/tables/22/4.209.table new file mode 100644 index 000000000..cb7617071 --- /dev/null +++ b/definitions/grib2/tables/22/4.209.table @@ -0,0 +1,9 @@ +# Code table 4.209 - Planetary boundary-layer regime +0 0 Reserved +1 1 Stable +2 2 Mechanically driven turbulence +3 3 Forced convection +4 4 Free convection +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.210.table b/definitions/grib2/tables/22/4.210.table new file mode 100644 index 000000000..524a6ca73 --- /dev/null +++ b/definitions/grib2/tables/22/4.210.table @@ -0,0 +1,6 @@ +# Code table 4.210 - Contrail intensity +0 0 Contrail not present +1 1 Contrail present +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.211.table b/definitions/grib2/tables/22/4.211.table new file mode 100644 index 000000000..098eb2d43 --- /dev/null +++ b/definitions/grib2/tables/22/4.211.table @@ -0,0 +1,7 @@ +# Code table 4.211 - Contrail engine type +0 0 Low bypass +1 1 High bypass +2 2 Non-bypass +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.212.table b/definitions/grib2/tables/22/4.212.table new file mode 100644 index 000000000..1a085b88d --- /dev/null +++ b/definitions/grib2/tables/22/4.212.table @@ -0,0 +1,18 @@ +# Code table 4.212 - Land use +0 0 Reserved +1 1 Urban land +2 2 Agriculture +3 3 Range land +4 4 Deciduous forest +5 5 Coniferous forest +6 6 Forest/wetland +7 7 Water +8 8 Wetlands +9 9 Desert +10 10 Tundra +11 11 Ice +12 12 Tropical forest +13 13 Savannah +# 14-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.213.table b/definitions/grib2/tables/22/4.213.table new file mode 100644 index 000000000..c65784a00 --- /dev/null +++ b/definitions/grib2/tables/22/4.213.table @@ -0,0 +1,16 @@ +# Code table 4.213 - Soil type +0 0 Reserved +1 1 Sand +2 2 Loamy sand +3 3 Sandy loam +4 4 Silt loam +5 5 Organic (redefined) +6 6 Sandy clay loam +7 7 Silt clay loam +8 8 Clay loam +9 9 Sandy clay +10 10 Silty clay +11 11 Clay +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.215.table b/definitions/grib2/tables/22/4.215.table new file mode 100644 index 000000000..034db72be --- /dev/null +++ b/definitions/grib2/tables/22/4.215.table @@ -0,0 +1,9 @@ +# Code table 4.215 - Remotely sensed snow coverage +# 0-49 Reserved +50 50 No-snow/no-cloud +# 51-99 Reserved +100 100 Clouds +# 101-249 Reserved +250 250 Snow +# 251-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.216.table b/definitions/grib2/tables/22/4.216.table new file mode 100644 index 000000000..5d1460cef --- /dev/null +++ b/definitions/grib2/tables/22/4.216.table @@ -0,0 +1,5 @@ +# Code table 4.216 - Elevation of snow-covered terrain +# 0-90 Elevation in increments of 100 m +# 91-253 Reserved +254 254 Clouds +255 255 Missing diff --git a/definitions/grib2/tables/22/4.217.table b/definitions/grib2/tables/22/4.217.table new file mode 100644 index 000000000..a4452182c --- /dev/null +++ b/definitions/grib2/tables/22/4.217.table @@ -0,0 +1,8 @@ +# Code table 4.217 - Cloud mask type +0 0 Clear over water +1 1 Clear over land +2 2 Cloud +3 3 No data +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.218.table b/definitions/grib2/tables/22/4.218.table new file mode 100644 index 000000000..fcd06c348 --- /dev/null +++ b/definitions/grib2/tables/22/4.218.table @@ -0,0 +1,46 @@ +# Code table 4.218 - Pixel scene type +0 0 No scene identified +1 1 Green needle-leafed forest +2 2 Green broad-leafed forest +3 3 Deciduous needle-leafed forest +4 4 Deciduous broad-leafed forest +5 5 Deciduous mixed forest +6 6 Closed shrub-land +7 7 Open shrub-land +8 8 Woody savannah +9 9 Savannah +10 10 Grassland +11 11 Permanent wetland +12 12 Cropland +13 13 Urban +14 14 Vegetation/crops +15 15 Permanent snow/ice +16 16 Barren desert +17 17 Water bodies +18 18 Tundra +19 19 Warm liquid water cloud +20 20 Supercooled liquid water cloud +21 21 Mixed-phase cloud +22 22 Optically thin ice cloud +23 23 Optically thick ice cloud +24 24 Multilayered cloud +# 25-96 Reserved +97 97 Snow/ice on land +98 98 Snow/ice on water +99 99 Sun-glint +100 100 General cloud +101 101 Low cloud/fog/stratus +102 102 Low cloud/stratocumulus +103 103 Low cloud/unknown type +104 104 Medium cloud/nimbostratus +105 105 Medium cloud/altostratus +106 106 Medium cloud/unknown type +107 107 High cloud/cumulus +108 108 High cloud/cirrus +109 109 High cloud/unknown +110 110 Unknown cloud type +111 111 Single layer water cloud +112 112 Single layer ice cloud +# 113-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.219.table b/definitions/grib2/tables/22/4.219.table new file mode 100644 index 000000000..86df0522e --- /dev/null +++ b/definitions/grib2/tables/22/4.219.table @@ -0,0 +1,8 @@ +# Code table 4.219 - Cloud top height quality indicator +0 0 Nominal cloud top height quality +1 1 Fog in segment +2 2 Poor quality height estimation +3 3 Fog in segment and poor quality height estimation +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.220.table b/definitions/grib2/tables/22/4.220.table new file mode 100644 index 000000000..93e841f8b --- /dev/null +++ b/definitions/grib2/tables/22/4.220.table @@ -0,0 +1,6 @@ +# Code table 4.220 - Horizontal dimension processed +0 0 Latitude +1 1 Longitude +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.221.table b/definitions/grib2/tables/22/4.221.table new file mode 100644 index 000000000..8448533d7 --- /dev/null +++ b/definitions/grib2/tables/22/4.221.table @@ -0,0 +1,6 @@ +# Code table 4.221 - Treatment of missing data +0 0 Not included +1 1 Extrapolated +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.222.table b/definitions/grib2/tables/22/4.222.table new file mode 100644 index 000000000..57f113014 --- /dev/null +++ b/definitions/grib2/tables/22/4.222.table @@ -0,0 +1,6 @@ +# Code table 4.222 - Categorical result +0 0 No +1 1 Yes +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.223.table b/definitions/grib2/tables/22/4.223.table new file mode 100644 index 000000000..f0deb076a --- /dev/null +++ b/definitions/grib2/tables/22/4.223.table @@ -0,0 +1,5 @@ +# Code table 4.223 - Fire detection indicator +0 0 No fire detected +1 1 Possible fire detected +2 2 Probable fire detected +3 3 Missing diff --git a/definitions/grib2/tables/22/4.224.table b/definitions/grib2/tables/22/4.224.table new file mode 100644 index 000000000..e87cde4bb --- /dev/null +++ b/definitions/grib2/tables/22/4.224.table @@ -0,0 +1,18 @@ +# Code table 4.224 - Categorical outlook +0 0 No risk area +1 1 Reserved +2 2 General thunderstorm risk area +3 3 Reserved +4 4 Slight risk area +5 5 Reserved +6 6 Moderate risk area +7 7 Reserved +8 8 High risk area +# 9-10 Reserved +11 11 Dry thunderstorm (dry lightning) risk area +# 12-13 Reserved +14 14 Critical risk area +# 15-17 Reserved +18 18 Extremely critical risk area +# 19-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/22/4.225.table b/definitions/grib2/tables/22/4.225.table new file mode 100644 index 000000000..9dc374087 --- /dev/null +++ b/definitions/grib2/tables/22/4.225.table @@ -0,0 +1,2 @@ +# Code table 4.225 - Weather (see FM 94 BUFR/FM 95 CREX Code table 0 20 003 - Present weather) +511 511 Missing value diff --git a/definitions/grib2/tables/22/4.227.table b/definitions/grib2/tables/22/4.227.table new file mode 100644 index 000000000..27c76553d --- /dev/null +++ b/definitions/grib2/tables/22/4.227.table @@ -0,0 +1,9 @@ +# Code table 4.227 - Icing scenario (weather/cloud classification) +0 0 None +1 1 General +2 2 Convective +3 3 Stratiform +4 4 Freezing +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/definitions/grib2/tables/22/4.230.table b/definitions/grib2/tables/22/4.230.table index dfc1ffc31..32a863fcb 100644 --- a/definitions/grib2/tables/22/4.230.table +++ b/definitions/grib2/tables/22/4.230.table @@ -38,7 +38,15 @@ 36 36 Hypobromous acid HBrO 37 37 Bromine nitrate BrONO2 38 38 Oxygen O2 -#39-9999 Reserved +39 39 Nitryl chloride NO2Cl +40 40 Sulphuric acid H2SO4 +41 41 Hydrogen sulphide H2S +42 42 Sulphur trioxide SO3 +43 43 Bromine Br2 +44 44 Hydrofluoric acid HF +45 45 Sulphur hexafluoride SF6 +46 46 Chlorine Cl2 +# 47-9999 Reserved 10000 10000 Hydroxyl radical OH 10001 10001 Methyl peroxy radical CH3O2 10002 10002 Methyl hydroperoxide CH3O2H @@ -62,9 +70,41 @@ 10021 10021 Benzene C6H6 10022 10022 Toluene C7H8 10023 10023 Xylene C8H10 -#10024-10499 Reserved for other simple organic molecules (e.g. higher aldehydes, alcohols, peroxides...) +10024 10024 Methanesulphonic acid CH3SO3H +10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO +10026 10026 Peroxyacetyl radical CH3C(O)OO +10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH +10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO +10029 10029 Acetone (propan-2-one) CH3C(O)CH3 +10030 10030 Ethyl dioxidanyl radical CH3CH2OO +10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 +10032 10032 Acetaldehyde (ethanal) CH3CHO +10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO +10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH +10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH +10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O +10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO +10038 10038 Glyoxal (oxaldehyde) OCHCHO +10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO +10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH +10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH +10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH +10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 +10044 10044 Phenoxy radical C6H5O +10045 10045 Methyl radical CH3 +10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS +10047 10047 Dibromomethane CH2Br2 +10048 10048 Methoxy radical CH3O +10049 10049 Tribromomethane CHBr3 +10050 10050 Formyl radical (oxomethyl radical) HOC +10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO +10052 10052 Ethyl hydroperoxide CH3CH2OOH +10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO +10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH +# 10055-10499 Reserved for other simple organic molecules(e.g. higher aldehydes, alcohols, peroxides, ...) 10500 10500 Dimethyl sulphide CH3SCH3 (DMS) -#10501-20000 Reserved +10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO +#10502-20000 Reserved 20001 20001 Hydrogen chloride 20002 20002 CFC-11 20003 20003 CFC-12 @@ -86,9 +126,10 @@ 20019 20019 Hexachlorocyclohexane (HCH) 20020 20020 Alpha hexachlorocyclohexane 20021 20021 Hexachlorobiphenyl (PCB-153) -#20022-29999 Reserved +20022 20022 HCFC 141a (1,1-dichloro-2-fluoro-ethane) CH3CClF2 +# 20023-29999 Reserved 30000 30000 Radioactive pollutant (tracer, defined by originating centre) -#30001-30009 Reserved +#3000-30009 Reserved 30010 30010 Hydrogen H-3 30011 30011 Hydrogen organic bounded H-3o 30012 30012 Hydrogen inorganic H-3a @@ -374,9 +415,16 @@ 30292 30292 Sum noble gas SumNG 30293 30293 Activation gas ActGas 30294 30294 Cs-137 Equivalent EquCs137 -#30295-59999 Reserved +30295 30295 Carbon-13 C-13 +30296 30296 Lead Pb +#30297-39999 Reserved +40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 +40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 +40002 40002 Singlet excited oxygen atom O(D) +40003 40003 Triplet ground state oxygen atom O(P) +# 40004-59999 Reserved 60000 60000 HOx radical (OH+HO2) -60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) RO2 60002 60002 Passive Ozone 60003 60003 NOx expressed as nitrogen NOx 60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy @@ -388,12 +436,22 @@ 60010 60010 Lumped alkenes 60011 60011 Lumped aromatic compounds 60012 60012 Lumped terpenes -60013 60013 Non-methane volatile organic compounds expressed as carbon -60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon -60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon -60016 60016 Lumped oxygenated hydrocarbons -60017 60017 NOx expressed as nitrogen dioxide (NO2) -#60018-61999 Reserved +60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC +60016 60016 Lumped oxygenated hydrocarbons OVOC +60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx +60018 60018 Organic aldehydes RCHO +60019 60019 Organic peroxides ROOH +60020 60020 Organic nitrates RNO3 +60021 60021 Ethers ROR +60022 60022 Amines NRRR +60023 60023 Ketones RC(O)R +60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R +60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R +60026 60026 Hydroxy ketones RC(OH)C(O)R +60027 60027 Oxides Ox +# 60028-61999 Reserved 62000 62000 Total aerosol 62001 62001 Dust dry 62002 62002 Water in ambient @@ -418,32 +476,36 @@ 62021 62021 Smoke - low absorption 62022 62022 Aerosol - high absorption 62023 62023 Aerosol - low absorption +#62024 Reserved 62025 62025 Volcanic ash 62026 62026 Particulate matter (PM) -# 62027-62099 Reserved -62100 62100 Alnus (Alder) pollen -62101 62101 Betula (Birch) pollen -62102 62102 Castanea (Chestnut) pollen -62103 62103 Carpinus (Hornbeam) pollen -62104 62104 Corylus (Hazel) pollen -62105 62105 Fagus (Beech) pollen -62106 62106 Fraxinus (Ash) pollen -62107 62107 Pinus (Pine) pollen -62108 62108 Platanus (Plane) pollen -62109 62109 Populus (Cottonwood, Poplar) pollen -62110 62110 Quercus (Oak) pollen -62111 62111 Salix (Willow) pollen -62112 62112 Taxus (Yew) pollen -62113 62113 Tilia (Lime, Linden) pollen -62114 62114 Ulmus (Elm) pollen +#62027 Reserved +62028 62028 Total aerosol hydrophilic +62029 62029 Total aerosol hydrophobic +#62030-62099 Reserved +62100 62100 Alnus (alder) pollen +62101 62101 Betula (birch) pollen +62102 62102 Castanea (chestnut) pollen +62103 62103 Carpinus (hornbeam) pollen +62104 62104 Corylus (hazel) pollen +62105 62105 Fagus (beech) pollen +62106 62106 Fraxinus (ash) pollen +62107 62107 Pinus (pine) pollen +62108 62108 Platanus (plane) pollen +62109 62109 Populus (cottonwood, poplar) pollen +62110 62110 Quercus (oak) pollen +62111 62111 Salix (willow) pollen +62112 62112 Taxus (yew) pollen +62113 62113 Tilia (lime, linden) pollen +62114 62114 Ulmus (elm) pollen # 62115-62199 Reserved -62200 62200 Ambrosia (Ragweed, Burr-ragweed ) pollen -62201 62201 Artemisia (Sagebrush, Wormwood, Mugwort) pollen -62202 62202 Brassica (Rape, Broccoli, Brussels Sprouts, Cabbage, Cauliflower, Collards, Kale, Kohlrabi, Mustard, Rutabaga) pollen -62203 62203 Plantago (Plantain) pollen -62204 62204 Rumex (Dock, Sorrel) pollen -62205 62205 Urtica (Nettle) pollen +62200 62200 Ambrosia (ragweed, burr-ragweed) pollen +62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen +62203 62203 Plantago (plantain) pollen +62204 62204 Rumex (dock, sorrel) pollen +62205 62205 Urtica (nettle) pollen # 62206-62299 Reserved -62300 62300 Poaceae (Grass family) pollen -# 62301-65534 Reserved +62300 62300 Poaceae (grass family) pollen +#6230-65534 Reserved 65535 65535 Missing diff --git a/definitions/grib2/tables/22/4.233.table b/definitions/grib2/tables/22/4.233.table new file mode 100644 index 000000000..48a9fc4dc --- /dev/null +++ b/definitions/grib2/tables/22/4.233.table @@ -0,0 +1,511 @@ +# Code table 4.233 - Aerosol type +0 0 Ozone O3 +1 1 Water vapour H2O +2 2 Methane CH4 +3 3 Carbon dioxide CO2 +4 4 Carbon monoxide CO +5 5 Nitrogen dioxide NO2 +6 6 Nitrous oxide N2O +7 7 Formaldehyde HCHO +8 8 Sulphur dioxide SO2 +9 9 Ammonia NH3 +10 10 Ammonium NH4 +11 11 Nitrogen monoxide NO +12 12 Atomic oxygen O +13 13 Nitrate radical NO3 +14 14 Hydroperoxyl radical HO2 +15 15 Dinitrogen pentoxide N2O5 +16 16 Nitrous acid HONO +17 17 Nitric acid HNO3 +18 18 Peroxynitric acid HO2NO2 +19 19 Hydrogen peroxide H2O2 +20 20 Molecular hydrogen H2 +21 21 Atomic nitrogen N +22 22 Sulphate SO42- +23 23 Radon Rn +24 24 Elemental mercury Hg(0) +25 25 Divalent mercury Hg2+ +26 26 Atomic chlorine Cl +27 27 Chlorine monoxide ClO +28 28 Dichlorine peroxide Cl2O2 +29 29 Hypochlorous acid HClO +30 30 Chlorine nitrate ClONO2 +31 31 Chlorine dioxide ClO2 +32 32 Atomic bromine Br +33 33 Bromine monoxide BrO +34 34 Bromine chloride BrCl +35 35 Hydrogen bromide HBr +36 36 Hypobromous acid HBrO +37 37 Bromine nitrate BrONO2 +38 38 Oxygen O2 +39 39 Nitryl chloride NO2Cl +40 40 Sulphuric acid H2SO4 +41 41 Hydrogen sulphide H2S +42 42 Sulphur trioxide SO3 +43 43 Bromine Br2 +44 44 Hydrofluoric acid HF +45 45 Sulphur hexafluoride SF6 +46 46 Chlorine Cl2 +# 47-9999 Reserved +10000 10000 Hydroxyl radical OH +10001 10001 Methyl peroxy radical CH3O2 +10002 10002 Methyl hydroperoxide CH3O2H +10004 10004 Methanol CH3OH +10005 10005 Formic acid CH3OOH +10006 10006 Hydrogen cyanide HCN +10007 10007 Aceto nitrile CH3CN +10008 10008 Ethane C2H6 +10009 10009 Ethene (= Ethylene) C2H4 +10010 10010 Ethyne (= Acetylene) C2H2 +10011 10011 Ethanol C2H5OH +10012 10012 Acetic acid C2H5OOH +10013 10013 Peroxyacetyl nitrate CH3C(O)OONO2 +10014 10014 Propane C3H8 +10015 10015 Propene C3H6 +10016 10016 Butanes C4H10 +10017 10017 Isoprene C5H10 +10018 10018 Alpha pinene C10H16 +10019 10019 Beta pinene C10H16 +10020 10020 Limonene C10H16 +10021 10021 Benzene C6H6 +10022 10022 Toluene C7H8 +10023 10023 Xylene C8H10 +10024 10024 Methanesulphonic acid CH3SO3H +10025 10025 Methylglyoxal (2-oxopropanal) CH3C(O)CHO +10026 10026 Peroxyacetyl radical CH3C(O)OO +10027 10027 Methacrylic acid (2-methylprop-2-enoic acid) CH2C(CH3)COOH +10028 10028 Methacrolein (2-methylprop-2-enal) CH2C(CH3)CHO +10029 10029 Acetone (propan-2-one) CH3C(O)CH3 +10030 10030 Ethyl dioxidanyl radical CH3CH2OO +10031 10031 Butadiene (buta-1,3-diene) (CH2CH)2 +10032 10032 Acetaldehyde (ethanal) CH3CHO +10033 10033 Glycolaldehyde (hydroxyethanal) HOCH2CHO +10034 10034 Cresol (methylphenol), all isomers CH3C6H4OH +10035 10035 Peracetic acid (ethaneperoxoic acid) CH3C(O)OOH +10036 10036 2-hydroxyethyl oxidanyl radical HOCH2CH2O +10037 10037 2-hydroxyethyl dioxidanyl radical HOCH2CH2OO +10038 10038 Glyoxal (oxaldehyde) OCHCHO +10039 10039 Isopropyl dioxidanyl radical (CH3)2CHOO +10040 10040 Isopropyl hydroperoxide (2-hydroperoxypropane) (CH3)2CHOOH +10041 10041 Hydroxyacetone (1-hydroxypropan-2-one) CH3C(O)CH2OH +10042 10042 Peroxyacetic acid (ethaneperoxoic acid) CH3C(O)OOH +10043 10043 Methyl vinyl ketone (but-3-en-2-one) CH3C(O)CHCH2 +10044 10044 Phenoxy radical C6H5O +10045 10045 Methyl radical CH3 +10046 10046 Carbonyl sulphide (carbon oxide sulphide) OCS +10047 10047 Dibromomethane CH2Br2 +10048 10048 Methoxy radical CH3O +10049 10049 Tribromomethane CHBr3 +10050 10050 Formyl radical (oxomethyl radical) HOC +10051 10051 Hydroxymethyl dioxidanyl radical HOCH2OO +10052 10052 Ethyl hydroperoxide CH3CH2OOH +10053 10053 3-hydroxypropyl dioxidanyl radical HOCH2CH2CH2OO +10054 10054 3-hydroxypropyl hydroperoxide HOCH2CH2CH2OOH +# 10055-10499 Reserved for other simple organic molecules(e.g. higher aldehydes, alcohols, peroxides, ...) +10500 10500 Dimethyl sulphide CH3SCH3 (DMS) +10501 10501 DMSO (dimethyl sulfoxide) (CH3)2SO +#10502-20000 Reserved +20001 20001 Hydrogen chloride +20002 20002 CFC-11 +20003 20003 CFC-12 +20004 20004 CFC-113 +20005 20005 CFC-113a +20006 20006 CFC-114 +20007 20007 CFC-115 +20008 20008 HCFC-22 +20009 20009 HCFC-141b +20010 20010 HCFC-142b +20011 20011 Halon-1202 +20012 20012 Halon-1211 +20013 20013 Halon-1301 +20014 20014 Halon-2402 +20015 20015 Methyl chloride (HCC-40) +20016 20016 Carbon tetrachloride (HCC-10) +20017 20017 HCC-140a CH3CCl3 +20018 20018 Methyl bromide (HBC-40B1) +20019 20019 Hexachlorocyclohexane (HCH) +20020 20020 Alpha hexachlorocyclohexane +20021 20021 Hexachlorobiphenyl (PCB-153) +20022 20022 HCFC 141a (1,1-dichloro-2-fluoro-ethane) CH3CClF2 +# 20023-29999 Reserved +30000 30000 Radioactive pollutant (tracer, defined by originating centre) +#3000-30009 Reserved +30010 30010 Hydrogen H-3 +30011 30011 Hydrogen organic bounded H-3o +30012 30012 Hydrogen inorganic H-3a +30013 30013 Beryllium 7 Be-7 +30014 30014 Beryllium 10 Be-10 +30015 30015 Carbon 14 C-14 +30016 30016 Carbon 14 CO2 C-14CO2 +30017 30017 Carbon 14 other gases C-14og +30018 30018 Nitrogen 13 N-13 +30019 30019 Nitrogen 16 N-16 +30020 30020 Fluorine 18 F-18 +30021 30021 Sodium 22 Na-22 +30022 30022 Phosphate 32 P-32 +30023 30023 Phosphate 33 P-33 +30024 30024 Sulphur 35 S-35 +30025 30025 Chlorine 36 Cl-36 +30026 30026 Potassium 40 K-40 +30027 30027 Argon 41 Ar-41 +30028 30028 Calcium 41 Ca-41 +30029 30029 Calcium 45 Ca-45 +30030 30030 Titanium 44 Ti-44 +30031 30031 Scandium 46 Sc-46 +30032 30032 Vanadium 48 V-48 +30033 30033 Vanadium 49 V-49 +30034 30034 Chrome 51 Cr-51 +30035 30035 Manganese 52 Mn-52 +30036 30036 Manganese 54 Mn-54 +30037 30037 Iron 55 Fe-55 +30038 30038 Iron 59 Fe-59 +30039 30039 Cobalt 56 Co-56 +30040 30040 Cobalt 57 Co-57 +30041 30041 Cobalt 58 Co-58 +30042 30042 Cobalt 60 Co-60 +30043 30043 Nickel 59 Ni-59 +30044 30044 Nickel 63 Ni-63 +30045 30045 Zinc 65 Zn-65 +30046 30046 Gallium 67 Ga-67 +30047 30047 Gallium 68 Ga-68 +30048 30048 Germanium 68 Ge-68 +30049 30049 Germanium 69 Ge-69 +30050 30050 Arsenic 73 As-73 +30051 30051 Selenium 75 Se-75 +30052 30052 Selenium 79 Se-79 +30053 30053 Rubidium 81 Rb-81 +30054 30054 Rubidium 83 Rb-83 +30055 30055 Rubidium 84 Rb-84 +30056 30056 Rubidium 86 Rb-86 +30057 30057 Rubidium 87 Rb-87 +30058 30058 Rubidium 88 Rb-88 +30059 30059 Krypton 85 Kr-85 +30060 30060 Krypton 85 metastable Kr-85m +30061 30061 Krypton 87 Kr-87 +30062 30062 Krypton 88 Kr-88 +30063 30063 Krypton 89 Kr-89 +30064 30064 Strontium 85 Sr-85 +30065 30065 Strontium 89 Sr-89 +30066 30066 Strontium 89/90 Sr-8990 +30067 30067 Strontium 90 Sr-90 +30068 30068 Strontium 91 Sr-91 +30069 30069 Strontium 92 Sr-92 +30070 30070 Yttrium 87 Y-87 +30071 30071 Yttrium 88 Y-88 +30072 30072 Yttrium 90 Y-90 +30073 30073 Yttrium 91 Y-91 +30074 30074 Yttrium 91 metastable Y-91m +30075 30075 Yttrium 92 Y-92 +30076 30076 Yttrium 93 Y-93 +30077 30077 Zirconium 89 Zr-89 +30078 30078 Zirconium 93 Zr-93 +30079 30079 Zirconium 95 Zr-95 +30080 30080 Zirconium 97 Zr-97 +30081 30081 Niobium 93 metastable Nb-93m +30082 30082 Niobium 94 Nb-94 +30083 30083 Niobium 95 Nb-95 +30084 30084 Niobium 95 metastable Nb-95m +30085 30085 Niobium 97 Nb-97 +30086 30086 Niobium 97 metastable Nb-97m +30087 30087 Molybdenum 93 Mo-93 +30088 30088 Molybdenum 99 Mo-99 +30089 30089 Technetium 95 metastable Tc-95m +30090 30090 Technetium 96 Tc-96 +30091 30091 Technetium 99 Tc-99 +30092 30092 Technetium 99 metastable Tc-99m +30093 30093 Rhodium 99 Rh-99 +30094 30094 Rhodium 101 Rh-101 +30095 30095 Rhodium 102 metastable Rh-102m +30096 30096 Rhodium 103 metastable Rh-103m +30097 30097 Rhodium 105 Rh-105 +30098 30098 Rhodium 106 Rh-106 +30099 30099 Palladium 100 Pd-100 +30100 30100 Palladium 103 Pd-103 +30101 30101 Palladium 107 Pd-107 +30102 30102 Ruthenium 103 Ru-103 +30103 30103 Ruthenium 105 Ru-105 +30104 30104 Ruthenium 106 Ru-106 +30105 30105 Silver 108 metastable Ag-108m +30106 30106 Silver 110 metastable Ag-110m +30107 30107 Cadmium 109 Cd-109 +30108 30108 Cadmium 113 metastable Cd-113m +30109 30109 Cadmium 115 metastable Cd-115m +30110 30110 Indium 114 metastable In-114m +30111 30111 Tin 113 Sn-113 +30112 30112 Tin 119 metastable Sn-119m +30113 30113 Tin 121 metastable Sn-121m +30114 30114 Tin 122 Sn-122 +30115 30115 Tin 123 Sn-123 +30116 30116 Tin 126 Sn-126 +30117 30117 Antimony 124 Sb-124 +30118 30118 Antimony 125 Sb-125 +30119 30119 Antimony 126 Sb-126 +30120 30120 Antimony 127 Sb-127 +30121 30121 Antimony 129 Sb-129 +30122 30122 Tellurium 123 metastable Te-123m +30123 30123 Tellurium 125 metastable Te-125m +30124 30124 Tellurium 127 Te-127 +30125 30125 Tellurium 127 metastable Te-127m +30126 30126 Tellurium 129 Te-129 +30127 30127 Tellurium 129 metastable Te-129m +30128 30128 Tellurium 131 metastable Te-131m +30129 30129 Tellurium 132 Te-132 +30130 30130 Iodine 123 I-123 +30131 30131 Iodine 124 I-124 +30132 30132 Iodine 125 I-125 +30133 30133 Iodine 126 I-126 +30134 30134 Iodine 129 I-129 +30135 30135 Iodine 129 elementary gaseous I-129g +30136 30136 Iodine 129 organic bounded I-129o +30137 30137 Iodine 131 I-131 +30138 30138 Iodine 131 elementary gaseous I-131g +30139 30139 Iodine 131 organic bounded I-131o +30140 30140 Iodine 131 gaseous elementary and organic bounded I-131go +30141 30141 Iodine 131 aerosol I-131a +30142 30142 Iodine 132 I-132 +30143 30143 Iodine 132 elementary gaseous I-132g +30144 30144 Iodine 132 organic bounded I-132o +30145 30145 Iodine 132 gaseous elementary and organic bounded I-132go +30146 30146 Iodine 132 aerosol I-132a +30147 30147 Iodine 133 I-133 +30148 30148 Iodine 133 elementary gaseous I-133g +30149 30149 Iodine 133 organic bounded I-133o +30150 30150 Iodine 133 gaseous elementary and organic bounded I-133go +30151 30151 Iodine 133 aerosol I-133a +30152 30152 Iodine 134 I-134 +30153 30153 Iodine 134 elementary gaseous I-134g +30154 30154 Iodine 134 organic bounded I-134o +30155 30155 Iodine 135 I-135 +30156 30156 Iodine 135 elementary gaseous I-135g +30157 30157 Iodine 135 organic bounded I-135o +30158 30158 Iodine 135 gaseous elementary and organic bounded I-135go +30159 30159 Iodine 135 aerosol I-135a +30160 30160 Xenon 131 metastable Xe-131m +30161 30161 Xenon 133 Xe-133 +30162 30162 Xenon 133 metastable Xe-133m +30163 30163 Xenon 135 Xe-135 +30164 30164 Xenon 135 metastable Xe-135m +30165 30165 Xenon 137 Xe-137 +30166 30166 Xenon 138 Xe-138 +30167 30167 Xenon sum of all Xenon isotopes Xe-sum +30168 30168 Caesium 131 Cs-131 +30169 30169 Caesium 134 Cs-134 +30170 30170 Caesium 135 Cs-135 +30171 30171 Caesium 136 Cs-136 +30172 30172 Caesium 137 Cs-137 +30173 30173 Barium 133 Ba-133 +30174 30174 Barium 137 metastable Ba-137m +30175 30175 Barium 140 Ba-140 +30176 30176 Cerium 139 Ce-139 +30177 30177 Cerium 141 Ce-141 +30178 30178 Cerium 143 Ce-143 +30179 30179 Cerium 144 Ce-144 +30180 30180 Lanthanum 140 La-140 +30181 30181 Lanthanum 141 La-141 +30182 30182 Praseodymium 143 Pr-143 +30183 30183 Praseodymium 144 Pr-144 +30184 30184 Praseodymium 144 metastable Pr-144m +30185 30185 Samarium 145 Sm-145 +30186 30186 Samarium 147 Sm-147 +30187 30187 Samarium 151 Sm-151 +30188 30188 Neodymium 147 Nd-147 +30189 30189 Promethium 146 Pm-146 +30190 30190 Promethium 147 Pm-147 +30191 30191 Promethium 151 Pm-151 +30192 30192 Europium 152 Eu-152 +30193 30193 Europium 154 Eu-154 +30194 30194 Europium 155 Eu-155 +30195 30195 Gadolinium 153 Gd-153 +30196 30196 Terbium 160 Tb-160 +30197 30197 Holmium 166 metastable Ho-166m +30198 30198 Thulium 170 Tm-170 +30199 30199 Ytterbium 169 Yb-169 +30200 30200 Hafnium 175 Hf-175 +30201 30201 Hafnium 181 Hf-181 +30202 30202 Tantalum 179 Ta-179 +30203 30203 Tantalum 182 Ta-182 +30204 30204 Rhenium 184 Re-184 +30205 30205 Iridium 192 Ir-192 +30206 30206 Mercury 203 Hg-203 +30207 30207 Thallium 204 Tl-204 +30208 30208 Thallium 207 Tl-207 +30209 30209 Thallium 208 Tl-208 +30210 30210 Thallium 209 Tl-209 +30211 30211 Bismuth 205 Bi-205 +30212 30212 Bismuth 207 Bi-207 +30213 30213 Bismuth 210 Bi-210 +30214 30214 Bismuth 211 Bi-211 +30215 30215 Bismuth 212 Bi-212 +30216 30216 Bismuth 213 Bi-213 +30217 30217 Bismuth 214 Bi-214 +30218 30218 Polonium 208 Po-208 +30219 30219 Polonium 210 Po-210 +30220 30220 Polonium 212 Po-212 +30221 30221 Polonium 213 Po-213 +30222 30222 Polonium 214 Po-214 +30223 30223 Polonium 215 Po-215 +30224 30224 Polonium 216 Po-216 +30225 30225 Polonium 218 Po-218 +30226 30226 Lead 209 Pb-209 +30227 30227 Lead 210 Pb-210 +30228 30228 Lead 211 Pb-211 +30229 30229 Lead 212 Pb-212 +30230 30230 Lead 214 Pb-214 +30231 30231 Astatine 217 At-217 +30232 30232 Radon 219 Rn-219 +30233 30233 Radon 220 Rn-220 +30234 30234 Radon 222 Rn-222 +30235 30235 Francium 221 Fr-221 +30236 30236 Francium 223 Fr-223 +30237 30237 Radium 223 Ra-223 +30238 30238 Radium 224 Ra-224 +30239 30239 Radium 225 Ra-225 +30240 30240 Radium 226 Ra-226 +30241 30241 Radium 228 Ra-228 +30242 30242 Actinium 225 Ac-225 +30243 30243 Actinium 227 Ac-227 +30244 30244 Actinium 228 Ac-228 +30245 30245 Thorium 227 Th-227 +30246 30246 Thorium 228 Th-228 +30247 30247 Thorium 229 Th-229 +30248 30248 Thorium 230 Th-230 +30249 30249 Thorium 231 Th-231 +30250 30250 Thorium 232 Th-232 +30251 30251 Thorium 234 Th-234 +30252 30252 Protactinium 231 Pa-231 +30253 30253 Protactinium 233 Pa-233 +30254 30254 Protactinium 234 metastable Pa-234m +30255 30255 Uranium 232 U-232 +30256 30256 Uranium 233 U-233 +30257 30257 Uranium 234 U-234 +30258 30258 Uranium 235 U-235 +30259 30259 Uranium 236 U-236 +30260 30260 Uranium 237 U-237 +30261 30261 Uranium 238 U-238 +30262 30262 Plutonium 236 Pu-236 +30263 30263 Plutonium 238 Pu-238 +30264 30264 Plutonium 239 Pu-239 +30265 30265 Plutonium 240 Pu-240 +30266 30266 Plutonium 241 Pu-241 +30267 30267 Plutonium 242 Pu-242 +30268 30268 Plutonium 244 Pu-244 +30269 30269 Neptunium 237 Np-237 +30270 30270 Neptunium 238 Np-238 +30271 30271 Neptunium 239 Np-239 +30272 30272 Americium 241 Am-241 +30273 30273 Americium 242 Am-242 +30274 30274 Americium 242 metastable Am-242m +30275 30275 Americium 243 Am-243 +30276 30276 Curium 242 Cm-242 +30277 30277 Curium 243 Cm-243 +30278 30278 Curium 244 Cm-244 +30279 30279 Curium 245 Cm-245 +30280 30280 Curium 246 Cm-246 +30281 30281 Curium 247 Cm-247 +30282 30282 Curium 248 Cm-248 +30283 30283 Curium 243/244 Cm-243244 +30284 30284 Plutonium 238/Americium 241 Pu-238Am-241 +30285 30285 Plutonium 239/240 Pu-239240 +30286 30286 Berkelium 249 Bk-249 +30287 30287 Californium 249 Cf-249 +30288 30288 Californium 250 Cf-250 +30289 30289 Californium 252 Cf-252 +30290 30290 Sum aerosol particulates SumAer +30291 30291 Sum Iodine SumIod +30292 30292 Sum noble gas SumNG +30293 30293 Activation gas ActGas +30294 30294 Cs-137 Equivalent EquCs137 +30295 30295 Carbon-13 C-13 +30296 30296 Lead Pb +#30297-39999 Reserved +40000 40000 Singlet sigma oxygen (dioxygen (sigma singlet)) O2 +40001 40001 Singlet delta oxygen (dioxygen (delta singlet)) O2 +40002 40002 Singlet excited oxygen atom O(D) +40003 40003 Triplet ground state oxygen atom O(P) +# 40004-59999 Reserved +60000 60000 HOx radical (OH+HO2) +60001 60001 Total inorganic and organic peroxy radicals (HO2 + RO2) RO2 +60002 60002 Passive Ozone +60003 60003 NOx expressed as nitrogen NOx +60004 60004 All nitrogen oxides (NOy) expressed as nitrogen NOy +60005 60005 Total inorganic chlorine Clx +60006 60006 Total inorganic bromine Brx +60007 60007 Total inorganic chlorine except HCl, ClONO2: ClOx +60008 60008 Total inorganic bromine except HBr, BrONO2: BrOx +60009 60009 Lumped alkanes +60010 60010 Lumped alkenes +60011 60011 Lumped aromatic compounds +60012 60012 Lumped terpenes +60013 60013 Non-methane volatile organic compounds expressed as carbon NMVOC +60014 60014 Anthropogenic non-methane volatile organic compounds expressed as carbon aNMVOC +60015 60015 Biogenic non-methane volatile organic compounds expressed as carbon bNMVOC +60016 60016 Lumped oxygenated hydrocarbons OVOC +60017 60017 NOx expressed as nitrogen dioxide (NO2) NOx +60018 60018 Organic aldehydes RCHO +60019 60019 Organic peroxides ROOH +60020 60020 Organic nitrates RNO3 +60021 60021 Ethers ROR +60022 60022 Amines NRRR +60023 60023 Ketones RC(O)R +60024 60024 Dicarbonyls unsaturated RC(O)CH2C(O)R +60025 60025 Hydroxy dicarbonyls unsaturated RC(O)CHOHC(O)R +60026 60026 Hydroxy ketones RC(OH)C(O)R +60027 60027 Oxides Ox +# 60028-61999 Reserved +62000 62000 Total aerosol +62001 62001 Dust dry +62002 62002 Water in ambient +62003 62003 Ammonium dry +62004 62004 Nitrate dry +62005 62005 Nitric acid trihydrate +62006 62006 Sulphate dry +62007 62007 Mercury dry +62008 62008 Sea salt dry +62009 62009 Black carbon dry +62010 62010 Particulate organic matter dry +62011 62011 Primary particulate organic matter dry +62012 62012 Secondary particulate organic matter dry +62013 62013 Black carbon hydrophilic dry +62014 62014 Black carbon hydrophobic dry +62015 62015 Particulate organic matter hydrophilic dry +62016 62016 Particulate organic matter hydrophobic dry +62017 62017 Nitrate hydrophilic dry +62018 62018 Nitrate hydrophobic dry +#62019 Reserved +62020 62020 Smoke - high absorption +62021 62021 Smoke - low absorption +62022 62022 Aerosol - high absorption +62023 62023 Aerosol - low absorption +#62024 Reserved +62025 62025 Volcanic ash +62026 62026 Particulate matter (PM) +#62027 Reserved +62028 62028 Total aerosol hydrophilic +62029 62029 Total aerosol hydrophobic +#62030-62099 Reserved +62100 62100 Alnus (alder) pollen +62101 62101 Betula (birch) pollen +62102 62102 Castanea (chestnut) pollen +62103 62103 Carpinus (hornbeam) pollen +62104 62104 Corylus (hazel) pollen +62105 62105 Fagus (beech) pollen +62106 62106 Fraxinus (ash) pollen +62107 62107 Pinus (pine) pollen +62108 62108 Platanus (plane) pollen +62109 62109 Populus (cottonwood, poplar) pollen +62110 62110 Quercus (oak) pollen +62111 62111 Salix (willow) pollen +62112 62112 Taxus (yew) pollen +62113 62113 Tilia (lime, linden) pollen +62114 62114 Ulmus (elm) pollen +# 62115-62199 Reserved +62200 62200 Ambrosia (ragweed, burr-ragweed) pollen +62201 62201 Artemisia (sagebrush, wormwood, mugwort) pollen +62202 62202 Brassica (rape, broccoli, Brussels sprouts, cabbage, cauliflower, collards, kale,kohlrabi, mustard, rutabaga) pollen +62203 62203 Plantago (plantain) pollen +62204 62204 Rumex (dock, sorrel) pollen +62205 62205 Urtica (nettle) pollen +# 62206-62299 Reserved +62300 62300 Poaceae (grass family) pollen +#6230-65534 Reserved +65535 65535 Missing diff --git a/definitions/grib2/tables/22/4.234.table b/definitions/grib2/tables/22/4.234.table new file mode 100644 index 000000000..816541ce9 --- /dev/null +++ b/definitions/grib2/tables/22/4.234.table @@ -0,0 +1,21 @@ +# Code table 4.234 - Canopy cover fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Crops, mixed farming +2 2 Short grass +3 3 Evergreen needleleaf trees +4 4 Deciduous needleleaf trees +5 5 Deciduous broadleaf trees +6 6 Evergreen broadleaf trees +7 7 Tall grass +8 8 Desert +9 9 Tundra +10 10 Irrigated crops +11 11 Semidesert +12 12 Ice caps and glaciers +13 13 Bogs and marshes +14 14 Inland water +15 15 Ocean +16 16 Evergreen shrubs +17 17 Deciduous shrubs +18 18 Mixed forest +19 19 Interrupted forest +20 20 Water and land mixtures diff --git a/definitions/grib2/tables/22/4.236.table b/definitions/grib2/tables/22/4.236.table new file mode 100644 index 000000000..fbe093ce9 --- /dev/null +++ b/definitions/grib2/tables/22/4.236.table @@ -0,0 +1,8 @@ +# Code table 4.236 - Soil texture fraction (to be used as partitioned parameter in product definition template 4.53 or 4.54) +1 1 Coarse +2 2 Medium +3 3 Medium-fine +4 4 Fine +5 5 Very-fine +6 6 Organic +7 7 Tropical-organic diff --git a/definitions/grib2/tables/22/4.240.table b/definitions/grib2/tables/22/4.240.table new file mode 100644 index 000000000..f48c086e4 --- /dev/null +++ b/definitions/grib2/tables/22/4.240.table @@ -0,0 +1,13 @@ +# Code table 4.240 - Type of distribution function +0 0 No specific distribution function given +1 1 Delta functions with spatially variable concentration and fixed diameters Dl (p1) in metre +2 2 Delta functions with spatially variable concentration and fixed masses Ml (p1) in kg +3 3 Gaussian (normal) distribution with spatially variable concentration and fixed mean diameter Dl(p1) and variance(p2) +4 4 Gaussian (normal) distribution with spatially variable concentration, mean diameter and variance +5 5 Log-normal distribution with spatially variable number density, mean diameter and variance +6 6 Log-normal distribution with spatially variable number density, mean diameter and fixed variance(p1) +7 7 Log-normal distribution with spatially variable number density and mass density and fixed variance(p1) and fixed particle density(p2) +8 8 No distribution function. The encoded variable is derived from variables characterized by type of distribution function of type No. 7 (see above) with fixed variance(p1) and fixed particle density(p2) +# 9-49151 Reserved +# 49152-65534 Reserved for local use +65535 65535 Missing value diff --git a/definitions/grib2/tables/22/4.241.table b/definitions/grib2/tables/22/4.241.table new file mode 100644 index 000000000..a037b4ba5 --- /dev/null +++ b/definitions/grib2/tables/22/4.241.table @@ -0,0 +1,9 @@ +# Code table 4.241 - Coverage attributes +0 0 Undefined +1 1 Unmodified +2 2 Snow covered +3 3 Flooded +4 4 Ice covered +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/definitions/grib2/tables/22/4.242.table b/definitions/grib2/tables/22/4.242.table new file mode 100644 index 000000000..083f88c29 --- /dev/null +++ b/definitions/grib2/tables/22/4.242.table @@ -0,0 +1,7 @@ +# Code table 4.242 - Tile classification +0 0 Reserved +1 1 Land use classes according to ESA-GlobCover GCV2009 +2 2 Land use classes according to European Commission-Global Land Cover Project GLC2000 +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing value diff --git a/definitions/grib2/tables/22/4.243.table b/definitions/grib2/tables/22/4.243.table new file mode 100644 index 000000000..b39053311 --- /dev/null +++ b/definitions/grib2/tables/22/4.243.table @@ -0,0 +1,43 @@ +# Code table 4.243 - Tile class +0 0 Reserved +1 1 Evergreen broadleaved forest +2 2 Deciduous broadleaved closed forest +3 3 Deciduous broadleaved open forest +4 4 Evergreen needle-leaf forest +5 5 Deciduous needle-leaf forest +6 6 Mixed leaf trees +7 7 Freshwater flooded trees +8 8 Saline water flooded trees +9 9 Mosaic tree/natural vegetation +10 10 Burnt tree cover +11 11 Evergreen shrubs closed-open +12 12 Deciduous shrubs closed-open +13 13 Herbaceous vegetation closed-open +14 14 Sparse herbaceous or grass +15 15 Flooded shrubs or herbaceous +16 16 Cultivated and managed areas +17 17 Mosaic crop/tree/natural vegetation +18 18 Mosaic crop/shrub/grass +19 19 Bare areas +20 20 Water +21 21 Snow and ice +22 22 Artificial surface +23 23 Ocean +24 24 Irrigated croplands +25 25 Rainfed croplands +26 26 Mosaic cropland (50-70%) - vegetation (20-50%) +27 27 Mosaic vegetation (50-70%) - cropland (20-50%) +28 28 Closed broadleaved evergreen forest +29 29 Closed needle-leaved evergreen forest +30 30 Open needle-leaved deciduous forest +31 31 Mixed broadleaved and needle-leaved forest +32 32 Mosaic shrubland (50-70%) - grassland (20-50%) +33 33 Mosaic grassland (50-70%) - shrubland (20-50%) +34 34 Closed to open shrubland +35 35 Sparse vegetation +36 36 Closed to open forest regularly flooded +37 37 Closed forest or shrubland permanently flooded +38 38 Closed to open grassland regularly flooded +39 39 Undefined +# 40-32767 Reserved +# 32768- Reserved for local use diff --git a/definitions/grib2/tables/22/4.244.table b/definitions/grib2/tables/22/4.244.table new file mode 100644 index 000000000..40534ee09 --- /dev/null +++ b/definitions/grib2/tables/22/4.244.table @@ -0,0 +1,7 @@ +# Code table 4.244 - Quality indicator +0 0 No quality information available +1 1 Failed +2 2 Passed +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.3.table b/definitions/grib2/tables/22/4.3.table new file mode 100644 index 000000000..8ba9e08ab --- /dev/null +++ b/definitions/grib2/tables/22/4.3.table @@ -0,0 +1,23 @@ +# Code table 4.3 - Type of generating process +0 0 Analysis +1 1 Initialization +2 2 Forecast +3 3 Bias corrected forecast +4 4 Ensemble forecast +5 5 Probability forecast +6 6 Forecast error +7 7 Analysis error +8 8 Observation +9 9 Climatological +10 10 Probability-weighted forecast +11 11 Bias-corrected ensemble forecast +12 12 Post-processed analysis +13 13 Post-processed forecast +14 14 Nowcast +15 15 Hindcast +16 16 Physical retrieval +17 17 Regression analysis +18 18 Difference between two forecasts +# 19-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.6.table b/definitions/grib2/tables/22/4.6.table new file mode 100644 index 000000000..b2dfeb498 --- /dev/null +++ b/definitions/grib2/tables/22/4.6.table @@ -0,0 +1,9 @@ +# Code table 4.6 - Type of ensemble forecast +0 0 Unperturbed high-resolution control forecast +1 1 Unperturbed low-resolution control forecast +2 2 Negatively perturbed forecast +3 3 Positively perturbed forecast +4 4 Multi-model forecast +# 5-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.7.table b/definitions/grib2/tables/22/4.7.table new file mode 100644 index 000000000..e0de0e1b2 --- /dev/null +++ b/definitions/grib2/tables/22/4.7.table @@ -0,0 +1,14 @@ +# Code table 4.7 - Derived forecast +0 0 Unweighted mean of all members +1 1 Weighted mean of all members +2 2 Standard deviation with respect to cluster mean +3 3 Standard deviation with respect to cluster mean, normalized +4 4 Spread of all members +5 5 Large anomaly index of all members +6 6 Unweighted mean of the cluster members +7 7 Interquartile range (range between the 25th and 75th quantile) +8 8 Minimum of all ensemble members +9 9 Maximum of all ensemble members +# 10-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.8.table b/definitions/grib2/tables/22/4.8.table new file mode 100644 index 000000000..ad883039c --- /dev/null +++ b/definitions/grib2/tables/22/4.8.table @@ -0,0 +1,6 @@ +# Code table 4.8 - Clustering method +0 0 Anomaly correlation +1 1 Root mean square +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/4.9.table b/definitions/grib2/tables/22/4.9.table new file mode 100644 index 000000000..9f74599c3 --- /dev/null +++ b/definitions/grib2/tables/22/4.9.table @@ -0,0 +1,13 @@ +# Code table 4.9 - Probability type +0 0 Probability of event below lower limit +1 1 Probability of event above upper limit +2 2 Probability of event between lower and upper limits (the range includes the lower limit but not the upper limit) +3 3 Probability of event above lower limit +4 4 Probability of event below upper limit +5 5 Probability of event equal to lower limit +6 6 Probability of event in above normal category +7 7 Probability of event in near normal category +8 8 Probability of event in below normal category +# 9-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/5.0.table b/definitions/grib2/tables/22/5.0.table new file mode 100644 index 000000000..20ed3d129 --- /dev/null +++ b/definitions/grib2/tables/22/5.0.table @@ -0,0 +1,27 @@ +# Code table 5.0 - Data representation template number +0 0 Grid point data - simple packing +1 1 Matrix value at grid point - simple packing +2 2 Grid point data - complex packing +3 3 Grid point data - complex packing and spatial differencing +4 4 Grid point data - IEEE floating point data +# 5-39 Reserved +40 40 Grid point data - JPEG 2000 code stream format +41 41 Grid point data - Portable Network Graphics (PNG) +42 42 Grid point data - CCSDS recommended lossless compression +# 43-49 Reserved +50 50 Spectral data - simple packing +51 51 Spherical harmonics data - complex packing +# 52 Reserved +53 53 Spectral data for limited area models - complex packing +# 54-60 Reserved +61 61 Grid point data - simple packing with logarithm pre-processing +# 62-199 Reserved +200 200 Run length packing with level values +# 201-49151 Reserved +# 49152-65534 Reserved for local use +40000 40000 JPEG2000 Packing +40010 40010 PNG pacling +50000 50000 Sperical harmonics ieee packing +50001 50001 Second order packing +50002 50002 Second order packing +65535 65535 Missing diff --git a/definitions/grib2/tables/22/5.1.table b/definitions/grib2/tables/22/5.1.table new file mode 100644 index 000000000..854330c74 --- /dev/null +++ b/definitions/grib2/tables/22/5.1.table @@ -0,0 +1,6 @@ +# Code table 5.1 - Type of original field values +0 0 Floating point +1 1 Integer +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/5.2.table b/definitions/grib2/tables/22/5.2.table new file mode 100644 index 000000000..40586a131 --- /dev/null +++ b/definitions/grib2/tables/22/5.2.table @@ -0,0 +1,8 @@ +# Code table 5.2 - Matrix coordinate value function definition +0 0 Explicit coordinate values set +1 1 Linear coordinates f(1) = C1, f(n) = f(n-1) + C2 +# 2-10 Reserved +11 11 Geometric coordinates f(1)=C1, f(n)=C2*f(n-1) +# 12-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/5.25.table b/definitions/grib2/tables/22/5.25.table new file mode 100644 index 000000000..1b45f28a3 --- /dev/null +++ b/definitions/grib2/tables/22/5.25.table @@ -0,0 +1,9 @@ +# Code table 5.25 - type of bi-Fourier subtruncation +# 0-76 Reserved +77 77 Rectangular +# 78-87 Reserved +88 88 Elliptic +# 89-98 Reserved +99 99 Diamond +# 100-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/22/5.26.table b/definitions/grib2/tables/22/5.26.table new file mode 100644 index 000000000..9e91ebf2e --- /dev/null +++ b/definitions/grib2/tables/22/5.26.table @@ -0,0 +1,5 @@ +# Code table 5.26 - packing mode for axes +0 0 Spectral coefficients for axes are packed +1 1 Spectral coefficients for axes included in the unpacked subset +# 2-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/22/5.3.table b/definitions/grib2/tables/22/5.3.table new file mode 100644 index 000000000..c3b7b30fe --- /dev/null +++ b/definitions/grib2/tables/22/5.3.table @@ -0,0 +1,7 @@ +# Code table 5.3 - Matrix coordinate parameter +1 1 Direction degrees true +2 2 Frequency (s-1) +3 3 Radial number (2pi/lambda) (m-1) +# 4-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/5.4.table b/definitions/grib2/tables/22/5.4.table new file mode 100644 index 000000000..8121c1819 --- /dev/null +++ b/definitions/grib2/tables/22/5.4.table @@ -0,0 +1,6 @@ +# Code table 5.4 - Group splitting method +0 0 Row by row splitting +1 1 General group splitting +# 2-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/5.40.table b/definitions/grib2/tables/22/5.40.table new file mode 100644 index 000000000..b9bad2c39 --- /dev/null +++ b/definitions/grib2/tables/22/5.40.table @@ -0,0 +1,5 @@ +# Code table 5.40 - Type of compression +0 0 Lossless +1 1 Lossy +# 2-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/22/5.40000.table b/definitions/grib2/tables/22/5.40000.table new file mode 100644 index 000000000..1eef7c763 --- /dev/null +++ b/definitions/grib2/tables/22/5.40000.table @@ -0,0 +1,5 @@ +# Code Table 5.40: Type of Compression +0 0 Lossless +1 1 Lossy +#2-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/22/5.5.table b/definitions/grib2/tables/22/5.5.table new file mode 100644 index 000000000..3ef3eb070 --- /dev/null +++ b/definitions/grib2/tables/22/5.5.table @@ -0,0 +1,7 @@ +# Code table 5.5 - Missing value management for complex packing +0 0 No explicit missing values included within data values +1 1 Primary missing values included within data values +2 2 Primary and secondary missing values included within data values +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/5.50002.table b/definitions/grib2/tables/22/5.50002.table new file mode 100644 index 000000000..10c243cb0 --- /dev/null +++ b/definitions/grib2/tables/22/5.50002.table @@ -0,0 +1,19 @@ +# second order packing modes table + +1 0 no boustrophedonic +1 1 boustrophedonic +2 0 Reserved +2 1 Reserved +3 0 Reserved +3 1 Reserved +4 0 Reserved +4 1 Reserved +5 0 Reserved +5 1 Reserved +6 0 Reserved +6 1 Reserved +7 0 Reserved +7 1 Reserved +8 0 Reserved +8 1 Reserved + diff --git a/definitions/grib2/tables/22/5.6.table b/definitions/grib2/tables/22/5.6.table new file mode 100644 index 000000000..6d5177877 --- /dev/null +++ b/definitions/grib2/tables/22/5.6.table @@ -0,0 +1,7 @@ +# Code table 5.6 - Order of spatial differencing +0 0 Reserved +1 1 First-order spatial differencing +2 2 Second-order spatial differencing +# 3-191 Reserved +# 192-254 Reserved for local use +255 255 Missing diff --git a/definitions/grib2/tables/22/5.7.table b/definitions/grib2/tables/22/5.7.table new file mode 100644 index 000000000..5ab780056 --- /dev/null +++ b/definitions/grib2/tables/22/5.7.table @@ -0,0 +1,7 @@ +# Code table 5.7 - Precision of floating-point numbers +0 0 Reserved +1 1 IEEE 32-bit (I=4 in section 7) +2 2 IEEE 64-bit (I=8 in section 7) +3 3 IEEE 128-bit (I=16 in section 7) +# 4-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/22/6.0.table b/definitions/grib2/tables/22/6.0.table new file mode 100644 index 000000000..2a29aa285 --- /dev/null +++ b/definitions/grib2/tables/22/6.0.table @@ -0,0 +1,6 @@ +# Code table 6.0 - Bit map indicator +0 0 A bit map applies to this product and is specified in this Section +1 1 A bit map pre-determined by the originating/generating centre applies to this product and is not specified in this Section +# 1-253 A bit map predetermined by the originating/generating centre applies to this product and is not specified in this Section +254 254 A bit map defined previously in the same GRIB message applies to this product +255 255 A bit map does not apply to this product diff --git a/definitions/grib2/tables/22/stepType.table b/definitions/grib2/tables/22/stepType.table new file mode 100644 index 000000000..4ec73e7a1 --- /dev/null +++ b/definitions/grib2/tables/22/stepType.table @@ -0,0 +1,2 @@ +0 instant Instant +1 interval Interval From ee4921b9093f91306a9785e8db601ccc73bf48dc Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 14 May 2021 23:40:30 +0100 Subject: [PATCH 488/683] ECC-1219: packingType conversion from grid_ieee to grid_second_order --- ..._g1second_order_general_extended_packing.c | 19 ++++++++++++++++++- src/grib_value.c | 16 +++++++++++++--- tests/grib_second_order.sh | 8 ++++++++ 3 files changed, 39 insertions(+), 4 deletions(-) diff --git a/src/grib_accessor_class_data_g1second_order_general_extended_packing.c b/src/grib_accessor_class_data_g1second_order_general_extended_packing.c index 79e28e2ce..15afcf7a7 100644 --- a/src/grib_accessor_class_data_g1second_order_general_extended_packing.c +++ b/src/grib_accessor_class_data_g1second_order_general_extended_packing.c @@ -1237,6 +1237,22 @@ static int pack_double_old(grib_accessor* a, const double* val, size_t *len) } #endif +static int get_bits_per_value(grib_handle* h, const char* bits_per_value_str, long* bits_per_value) +{ + int err = 0; + if ((err = grib_get_long_internal(h, bits_per_value_str, bits_per_value)) != GRIB_SUCCESS) + return err; + + if (*bits_per_value == 0) { + /* Probably grid_ieee input which is a special case. Note: we cannot check the packingType + * because it has already been changed to second order! + * We have to take precision=1 for IEEE which is 32bits + */ + *bits_per_value = 32; + } + return err; +} + static int pack_double(grib_accessor* a, const double* val, size_t* len) { grib_accessor_data_g1second_order_general_extended_packing* self = (grib_accessor_data_g1second_order_general_extended_packing*)a; @@ -1294,7 +1310,8 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) min = val[i]; } - if ((ret = grib_get_long_internal(handle, self->bits_per_value, &bits_per_value)) != GRIB_SUCCESS) + /* ECC-1219: packingType conversion from grid_ieee to grid_second_order */ + if ((ret = get_bits_per_value(handle, self->bits_per_value, &bits_per_value)) != GRIB_SUCCESS) return ret; if ((ret = grib_get_long_internal(handle, self->optimize_scaling_factor, &optimize_scaling_factor)) != GRIB_SUCCESS) diff --git a/src/grib_value.c b/src/grib_value.c index f109f0a3b..59a75c6b6 100644 --- a/src/grib_value.c +++ b/src/grib_value.c @@ -382,10 +382,20 @@ int grib_set_string(grib_handle* h, const char* name, const char* val, size_t* l size_t numCodedVals = 0; grib_get_long(h, "bitsPerValue", &bitsPerValue); if (bitsPerValue == 0) { - if (h->context->debug) { - fprintf(stderr, "ECCODES DEBUG grib_set_string packingType: Constant field cannot be encoded in second order. Packing not changed\n"); + /* ECC-1219: packingType conversion from grid_ieee to grid_second_order */ + /* Normally having a bitsPerValue of 0 means a constant field but this is + * not so for IEEE packing which can be non-constant but always has bitsPerValue==0! + */ + char input_packing_type[100] = {0,}; + size_t len = sizeof(input_packing_type); + grib_get_string(h, "packingType", input_packing_type, &len); + if (strcmp(input_packing_type, "grid_ieee") != 0) { + /* If it's not IEEE, then bitsPerValue==0 means constant field */ + if (h->context->debug) { + fprintf(stderr, "ECCODES DEBUG grib_set_string packingType: Constant field cannot be encoded in second order. Packing not changed\n"); + } + return 0; } - return 0; } /* GRIB-883: check if there are enough coded values */ diff --git a/tests/grib_second_order.sh b/tests/grib_second_order.sh index 71c74eed3..e3b7f986f 100755 --- a/tests/grib_second_order.sh +++ b/tests/grib_second_order.sh @@ -141,6 +141,14 @@ ${tools_dir}/grib_set -r -s packingType=grid_second_order $temp2 $temp3 grib_check_key_equals $temp3 packingType grid_second_order +# ECC-1219: packingType conversion from grid_ieee to grid_second_order +# --------------------------------------------------------------------- +infile=grid_ieee.grib +${tools_dir}/grib_set -r -s packingType=grid_second_order $infile $temp1 +grib_check_key_equals $temp1 packingType grid_second_order +${tools_dir}/grib_compare -cdata:n -R all=3e-06 $infile $temp1 + + # Clean up rm -f $temp_stat1 $temp_stat2 rm -f $temp1 $temp2 $temp3 $sec_ord_bmp From 0a8df42176e1904701ffea749fe7325b8ff3c51c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 14 May 2021 23:43:27 +0100 Subject: [PATCH 489/683] Bump up version --- .appveyor.yml | 2 +- CMakeLists.txt | 2 +- version.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index fa6559448..0c7728555 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -2,7 +2,7 @@ # general configuration # #---------------------------------# -version: 2.22.0-{build}-{branch} +version: 2.23.0-{build}-{branch} branches: only: diff --git a/CMakeLists.txt b/CMakeLists.txt index 7368a09e1..0c758d250 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ cmake_minimum_required( VERSION 3.12 FATAL_ERROR ) find_package( ecbuild 3.4 REQUIRED HINTS ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild) # Initialise project -project( eccodes VERSION 2.22.0 LANGUAGES C ) +project( eccodes VERSION 2.23.0 LANGUAGES C ) ############################################################################### # system checks needed for eccodes_config.h and some options like MEMFS diff --git a/version.sh b/version.sh index 784e2eedf..c5d88fc66 100644 --- a/version.sh +++ b/version.sh @@ -3,7 +3,7 @@ PACKAGE_NAME='eccodes' # Package version ECCODES_MAJOR_VERSION=2 -ECCODES_MINOR_VERSION=22 +ECCODES_MINOR_VERSION=23 ECCODES_REVISION_VERSION=0 ECCODES_CURRENT=1 From 3ce30c6817f897a80c1f673d0ada40cd53bb1001 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 17 May 2021 15:05:39 +0100 Subject: [PATCH 490/683] Fix typo --- tools/bufr_filter.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bufr_filter.sh b/tools/bufr_filter.sh index 49a3a014d..1464a7c67 100755 --- a/tools/bufr_filter.sh +++ b/tools/bufr_filter.sh @@ -59,7 +59,7 @@ echo "\\endverbatim\\n" # Unpack -echo "-# To print values from the data section the messages have to be unpacked. To do that we need to set key unapack to 1. This rules_file: \\n" +echo "-# To print values from the data section the messages have to be unpacked. To do that we need to set key unpack to 1. This rules_file: \\n" echo "\\verbatim" echo "set unpack=1;" From 91cf5a4d3c54bc762500d31f8fd2392023df8076 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 17 May 2021 15:06:30 +0100 Subject: [PATCH 491/683] ECC-1243: grib_ls -j: error listing the geography namespace --- tools/grib_tools.c | 158 ++++++++++++++++++++++++--------------------- 1 file changed, 83 insertions(+), 75 deletions(-) diff --git a/tools/grib_tools.c b/tools/grib_tools.c index 25e191bda..496b36675 100644 --- a/tools/grib_tools.c +++ b/tools/grib_tools.c @@ -900,8 +900,10 @@ static int is_valid_JSON_number(const char* input) p++; while (*p) { - if (*p == '.') + if (*p == '.') { + if (is_float) return 0; /*more than 1 dot*/ is_float = 1; + } if (*p != '.' && !isdigit(*p)) return 0; p++; @@ -917,80 +919,6 @@ static int is_valid_JSON_number(const char* input) return 1; } -static void get_value_for_key(grib_handle* h, const char* key_name, int key_type, char* value_str, - const char* format, int fix_lsdate, int fix_lstime) -{ - int ret = 0, type = key_type; - double dvalue = 0; - long lvalue = 0; - size_t len = MAX_STRING_LEN; - - if (grib_is_missing(h, key_name, &ret) && ret == GRIB_SUCCESS) { - sprintf(value_str, "MISSING"); - return; - } - if (ret == GRIB_NOT_FOUND) { - sprintf(value_str, "not_found"); - return; - } - - if (type == GRIB_TYPE_UNDEFINED) { - ret = grib_get_native_type(h, key_name, &type); - if (ret != GRIB_SUCCESS) { - fprintf(dump_file, "Could not determine type for %s\n", key_name); - exit(1); - } - } - - if (type == GRIB_TYPE_STRING) { - const char* pName = key_name; - /* ECC-707 */ - if (fix_lsdate && strcmp(pName, "date") == 0) pName = "ls.date"; - if (fix_lstime && strcmp(pName, "time") == 0) pName = "ls.time"; - ret = grib_get_string(h, pName, value_str, &len); - } - else if (type == GRIB_TYPE_DOUBLE) { - ret = grib_get_double(h, key_name, &dvalue); - sprintf(value_str, format, dvalue); - } - else if (type == GRIB_TYPE_LONG) { - ret = grib_get_long(h, key_name, &lvalue); - sprintf(value_str, "%ld", lvalue); - } - else if (type == GRIB_TYPE_BYTES) { - ret = grib_get_string(h, key_name, value_str, &len); - } - else { - fprintf(dump_file, "invalid format option for %s\n", key_name); - exit(1); - } - - if (ret != GRIB_SUCCESS) { - if (ret == GRIB_NOT_FOUND) { - sprintf(value_str, "not_found"); - } else { - fprintf(dump_file, "Failed to get value for key %s\n", key_name); - exit(1); - } - } -} - -/* See ECC-707 */ -static int fix_for_lsdate_needed(grib_handle* h) -{ - long lsdate_bug = 0; - int err = grib_get_long(h, "lsdate_bug", &lsdate_bug); - if (!err && lsdate_bug == 1) return 1; - return 0; -} -static int fix_for_lstime_needed(grib_handle* h) -{ - long lstime_bug = 0; - int err = grib_get_long(h, "lstime_bug", &lstime_bug); - if (!err && lstime_bug == 1) return 1; - return 0; -} - static int get_initial_element_of_array(grib_handle* h, const char* keyName, size_t num_vals, char* value) { int err = 0, type = 0; @@ -1050,6 +978,86 @@ static int get_initial_element_of_array(grib_handle* h, const char* keyName, siz return GRIB_SUCCESS; } +static void get_value_for_key(grib_handle* h, const char* key_name, int key_type, char* value_str, + const char* format, int fix_lsdate, int fix_lstime) +{ + int ret = 0, type = key_type; + double dvalue = 0; + long lvalue = 0; + size_t len = MAX_STRING_LEN; + + if (grib_is_missing(h, key_name, &ret) && ret == GRIB_SUCCESS) { + sprintf(value_str, "MISSING"); + return; + } + if (ret == GRIB_NOT_FOUND) { + sprintf(value_str, "not_found"); + return; + } + + if (type == GRIB_TYPE_UNDEFINED) { + ret = grib_get_native_type(h, key_name, &type); + if (ret != GRIB_SUCCESS) { + fprintf(dump_file, "Could not determine type for %s\n", key_name); + exit(1); + } + } + + if (type == GRIB_TYPE_STRING) { + const char* pName = key_name; + size_t num_vals = 0; + /* ECC-707 */ + if (fix_lsdate && strcmp(pName, "date") == 0) pName = "ls.date"; + if (fix_lstime && strcmp(pName, "time") == 0) pName = "ls.time"; + ret = grib_get_size(h, pName, &num_vals); + if (ret == GRIB_SUCCESS && num_vals > 1) { /* See ECC-278 */ + ret = get_initial_element_of_array(h, pName, num_vals, value_str); + } else { + ret = grib_get_string(h, pName, value_str, &len); + } + } + else if (type == GRIB_TYPE_DOUBLE) { + ret = grib_get_double(h, key_name, &dvalue); + sprintf(value_str, format, dvalue); + } + else if (type == GRIB_TYPE_LONG) { + ret = grib_get_long(h, key_name, &lvalue); + sprintf(value_str, "%ld", lvalue); + } + else if (type == GRIB_TYPE_BYTES) { + ret = grib_get_string(h, key_name, value_str, &len); + } + else { + fprintf(dump_file, "invalid format option for %s\n", key_name); + exit(1); + } + + if (ret != GRIB_SUCCESS) { + if (ret == GRIB_NOT_FOUND) { + sprintf(value_str, "not_found"); + } else { + fprintf(dump_file, "Failed to get value for key %s\n", key_name); + exit(1); + } + } +} + +/* See ECC-707 */ +static int fix_for_lsdate_needed(grib_handle* h) +{ + long lsdate_bug = 0; + int err = grib_get_long(h, "lsdate_bug", &lsdate_bug); + if (!err && lsdate_bug == 1) return 1; + return 0; +} +static int fix_for_lstime_needed(grib_handle* h) +{ + long lstime_bug = 0; + int err = grib_get_long(h, "lstime_bug", &lstime_bug); + if (!err && lstime_bug == 1) return 1; + return 0; +} + void grib_print_key_values(grib_runtime_options* options, grib_handle* h) { int i = 0; From f4330ed8c3480b158e09fb232240ffaed32f562b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 17 May 2021 16:05:10 +0100 Subject: [PATCH 492/683] ECC-1243: grib_ls -j: error listing the geography namespace --- tests/grib_ls_json.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/grib_ls_json.sh b/tests/grib_ls_json.sh index 11938b903..172b978ac 100755 --- a/tests/grib_ls_json.sh +++ b/tests/grib_ls_json.sh @@ -103,6 +103,13 @@ for file in ${grib_files}; do fi done +# ECC-1243: listing the geography namespace +# ----------------------------------------- +${tools_dir}/grib_ls -j -n geography ${data_dir}/reduced_latlon_surface.grib2 > $tempLog +if test "x$JSON_CHECK" != "x"; then + json_xs -t none < $tempLog +fi + # Clean up rm -f $tempLog $tempOut $tempRef From c79c38911645fd15414f9d0b08490d9521b3b8c2 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 17 May 2021 16:42:51 +0100 Subject: [PATCH 493/683] ECC-922: grib_get_data should fail on incorrectly coded grid --- src/grib_iterator_class_latlon.c | 40 +++++++++++++++++++++----------- 1 file changed, 26 insertions(+), 14 deletions(-) diff --git a/src/grib_iterator_class_latlon.c b/src/grib_iterator_class_latlon.c index fc8ab47ed..e55246ae4 100644 --- a/src/grib_iterator_class_latlon.c +++ b/src/grib_iterator_class_latlon.c @@ -134,7 +134,7 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args) grib_iterator_latlon* self = (grib_iterator_latlon*)iter; int err = 0; double jdir; - double lat1; + double lat1=0, lat2=0, north=0, south=0; long jScansPositively; long lai; @@ -166,6 +166,8 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args) if ((err = grib_get_double_internal(h, s_lat1, &lat1))) return err; + if ((err = grib_get_double_internal(h, "latitudeLastInDegrees", &lat2))) + return err; if ((err = grib_get_double_internal(h, s_jdir, &jdir))) return err; if ((err = grib_get_long_internal(h, s_jScansPos, &jScansPositively))) @@ -178,22 +180,32 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args) /* ECC-984: If jDirectionIncrement is missing, then we cannot use it (See jDirectionIncrementGiven) */ /* So try to compute the increment */ if (grib_is_missing(h, s_jdir, &err) && err == GRIB_SUCCESS) { - double lat2; - if ((err = grib_get_double_internal(h, "latitudeLastInDegrees", &lat2)) == GRIB_SUCCESS) { - const long Nj = self->Nj; - Assert(Nj > 1); - if (lat1 > lat2) { - jdir = (lat1 - lat2) / (Nj - 1); - } - else { - jdir = (lat2 - lat1) / (Nj - 1); - } - grib_context_log(h->context, GRIB_LOG_INFO, - "%s is missing (See jDirectionIncrementGiven). Using value of %.6f obtained from La1, La2 and Nj", s_jdir, jdir); + const long Nj = self->Nj; + Assert(Nj > 1); + if (lat1 > lat2) { + jdir = (lat1 - lat2) / (Nj - 1); } + else { + jdir = (lat2 - lat1) / (Nj - 1); + } + grib_context_log(h->context, GRIB_LOG_INFO, + "%s is missing (See jDirectionIncrementGiven). Using value of %.6f obtained from La1, La2 and Nj", s_jdir, jdir); } - if (jScansPositively) + + if (jScansPositively) { + north = lat2; + south = lat1; jdir = -jdir; + } else { + north = lat1; + south = lat2; + } + if (south > north) { + grib_context_log(h->context, GRIB_LOG_ERROR, + "First and last latitudes are inconsistent with scanning order: lat1=%g, lat2=%g jScansPositively=%ld", + lat1, lat2, jScansPositively); + return GRIB_WRONG_GRID; + } for (lai = 0; lai < self->Nj; lai++) { self->las[lai] = lat1; From ed58c41962535c861f6d2d1eb36c5fb032087f14 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 17 May 2021 17:07:08 +0100 Subject: [PATCH 494/683] ECC-922: grib_get_data should fail on incorrectly coded grid --- tests/CMakeLists.txt | 1 + tests/grib_ecc-922.sh | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100755 tests/grib_ecc-922.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index aaa6cd7b9..1b00ca0e2 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -73,6 +73,7 @@ if( HAVE_BUILD_TOOLS ) grib_element grib_2nd_order_numValues grib_ecc-136 + grib_ecc-922 grib_ecc-966 grib_ecc-967 grib_ecc-1150 diff --git a/tests/grib_ecc-922.sh b/tests/grib_ecc-922.sh new file mode 100755 index 000000000..099420367 --- /dev/null +++ b/tests/grib_ecc-922.sh @@ -0,0 +1,34 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +# --------------------------------------------------------- +# This is the test for the JIRA issue ECC-922 +# grib_get_data should fail on incorrectly coded grid +# --------------------------------------------------------- + +REDIRECT=/dev/null +label="grib_ecc-922-test" +temp=temp.$label +sample_grib2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl + +# Create an inconsistent grid: j scans negatively but lat1 < lat2 +${tools_dir}/grib_set -s latitudeOfFirstGridPoint=0,latitudeOfLastGridPoint=60000000 $sample_grib2 $temp +grib_check_key_equals $temp jScansPositively 0 +# grib_get_data should fail +set +e +${tools_dir}/grib_get_data $temp +status=$? +set -e +[ $status -ne 0 ] + + +rm -f $temp From f15cbcbb73f74722b7045e50ccf57c87d6e632fe Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 18 May 2021 12:10:49 +0100 Subject: [PATCH 495/683] ECC-1244: grib_get_data: iterator consumes vast amounts of memory when Ni is missing --- src/grib_iterator_class_regular.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/grib_iterator_class_regular.c b/src/grib_iterator_class_regular.c index 6697b1eb2..35a3b4594 100644 --- a/src/grib_iterator_class_regular.c +++ b/src/grib_iterator_class_regular.c @@ -163,8 +163,18 @@ static int init(grib_iterator* i, grib_handle* h, grib_arguments* args) return ret; if ((ret = grib_get_long_internal(h, s_Ni, &Ni))) return ret; + if (grib_is_missing(h, s_Ni, &ret) && ret == GRIB_SUCCESS) { + grib_context_log(h->context, GRIB_LOG_ERROR, "Key %s cannot be missing for a regular grid!", s_Ni); + return GRIB_WRONG_GRID; + } + if ((ret = grib_get_long_internal(h, s_Nj, &Nj))) return ret; + if (grib_is_missing(h, s_Nj, &ret) && ret == GRIB_SUCCESS) { + grib_context_log(h->context, GRIB_LOG_ERROR, "Key %s cannot be missing for a regular grid!", s_Nj); + return GRIB_WRONG_GRID; + } + if ((ret = grib_get_long_internal(h, s_iScansNeg, &self->iScansNegatively))) return ret; From 2750e7d921b5652ec76e6779f42df2e245eab214 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 19 May 2021 17:40:44 +0100 Subject: [PATCH 496/683] ECC-1245: GRIB: Add typeOfPostProcessing for 'geff' to efas_post_proc --- definitions/grib2/local.98.41.def | 33 ++++++++++++++++--------------- tests/grib_efas.sh | 5 +++++ 2 files changed, 22 insertions(+), 16 deletions(-) diff --git a/definitions/grib2/local.98.41.def b/definitions/grib2/local.98.41.def index d502299f2..b15b31cb1 100644 --- a/definitions/grib2/local.98.41.def +++ b/definitions/grib2/local.98.41.def @@ -40,22 +40,23 @@ transient lsdate_bug = 1: hidden; # See ECC-707 # Note: the key typeOfPostProcessing is in the PDTNs 70, 71, 72 and 73 concept efas_post_proc { - "unknown" = { typeOfPostProcessing=0 ; } - "lisflood" = { typeOfPostProcessing=1 ; } - "lisflood_eric" = { typeOfPostProcessing=2 ; } - "lisflood_season" = { typeOfPostProcessing=3 ; } - "lisflood_merged" = { typeOfPostProcessing=4 ; } - "lisflood_global" = { typeOfPostProcessing=5 ; } - "ericha" = { typeOfPostProcessing=51 ; } - "htessel_lisflood" = { typeOfPostProcessing=101; } - "htessel_eric" = { typeOfPostProcessing=102; } - "htessel_camaflood" = { typeOfPostProcessing=103; } - "epic" = { typeOfPostProcessing=152; } - "jules_mrm" = { typeOfPostProcessing=201; } - "htessel_mrm" = { typeOfPostProcessing=202; } - "mhm_mrm" = { typeOfPostProcessing=203; } - "pcrg_mrm" = { typeOfPostProcessing=204; } - "meteogrid" = { typeOfPostProcessing=205; } + "unknown" = { typeOfPostProcessing = 0; } + "lisflood" = { typeOfPostProcessing = 1; } + "lisflood_eric" = { typeOfPostProcessing = 2; } + "lisflood_season" = { typeOfPostProcessing = 3; } + "lisflood_merged" = { typeOfPostProcessing = 4; } + "lisflood_global" = { typeOfPostProcessing = 5; } + "geff" = { typeOfPostProcessing = 10; } + "ericha" = { typeOfPostProcessing = 51; } + "htessel_lisflood" = { typeOfPostProcessing = 101; } + "htessel_eric" = { typeOfPostProcessing = 102; } + "htessel_camaflood" = { typeOfPostProcessing = 103; } + "epic" = { typeOfPostProcessing = 152; } + "jules_mrm" = { typeOfPostProcessing = 201; } + "htessel_mrm" = { typeOfPostProcessing = 202; } + "mhm_mrm" = { typeOfPostProcessing = 203; } + "pcrg_mrm" = { typeOfPostProcessing = 204; } + "meteogrid" = { typeOfPostProcessing = 205; } "unknown" = { dummy = 1; } } : hidden; diff --git a/tests/grib_efas.sh b/tests/grib_efas.sh index f1ef8452b..2e60766e5 100755 --- a/tests/grib_efas.sh +++ b/tests/grib_efas.sh @@ -50,6 +50,11 @@ grib_check_key_equals $temp2 is_efas,productDefinitionTemplateNumber,typeOfStati grib_check_key_equals $temp2 mars.origin 'ecmf' grib_check_key_equals $temp2 mars.model 'lisflood' +${tools_dir}/grib_set -s \ + setLocalDefinition=1,localDefinitionNumber=41,type=fc,inputOriginatingCentre=ecmf,typeOfPostProcessing=10 \ + $temp1 $temp2 +grib_check_key_equals $temp2 mars.model 'geff' + # Parameter tests ${tools_dir}/grib_set -s paramId=260267 $temp2 $temp3 grib_check_key_equals $temp3 paramId,is_efas,lengthOfTimeRange '260267 1 6' From 8f1da66e46a1823958b29dc7499ba8ab1e1e81de Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 20 May 2021 10:38:51 +0100 Subject: [PATCH 497/683] AppVeyor: Fix test --- tests/grib_second_order.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tests/grib_second_order.sh b/tests/grib_second_order.sh index e3b7f986f..6dde431e8 100755 --- a/tests/grib_second_order.sh +++ b/tests/grib_second_order.sh @@ -143,11 +143,12 @@ grib_check_key_equals $temp3 packingType grid_second_order # ECC-1219: packingType conversion from grid_ieee to grid_second_order # --------------------------------------------------------------------- -infile=grid_ieee.grib -${tools_dir}/grib_set -r -s packingType=grid_second_order $infile $temp1 -grib_check_key_equals $temp1 packingType grid_second_order -${tools_dir}/grib_compare -cdata:n -R all=3e-06 $infile $temp1 - +if [ $ECCODES_ON_WINDOWS -eq 0 ]; then + infile=grid_ieee.grib + ${tools_dir}/grib_set -r -s packingType=grid_second_order $infile $temp1 + grib_check_key_equals $temp1 packingType grid_second_order + ${tools_dir}/grib_compare -cdata:n -R all=3e-06 $infile $temp1 +fi # Clean up rm -f $temp_stat1 $temp_stat2 From c3e0332f63163e713c241632e59338de4a972dfd Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 20 May 2021 11:16:40 +0100 Subject: [PATCH 498/683] Testing --- tests/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Makefile.am b/tests/Makefile.am index 54bac4a74..ee499d0ea 100755 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -122,6 +122,7 @@ TESTS = definitions.sh \ bufr_ecc-1187.sh \ grib_ecc-136.sh \ grib_ecc-967.sh \ + grib_ecc-922.sh \ grib_ecc-1065.sh \ grib_ecc-1053.sh \ grib_ecc-490.sh \ From 4bc06614879eba18f389bfc7157d1e8f29dae0a5 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 20 May 2021 11:16:56 +0100 Subject: [PATCH 499/683] Cosmetics --- tools/grib_check_gaussian_grid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/grib_check_gaussian_grid.c b/tools/grib_check_gaussian_grid.c index b9101ccd4..835ab4777 100644 --- a/tools/grib_check_gaussian_grid.c +++ b/tools/grib_check_gaussian_grid.c @@ -88,7 +88,7 @@ int process_file(const char* filename) in = fopen(filename, "r"); if (!in) { - fprintf(stderr, "ERROR: unable to open input file %s\n", filename); + fprintf(stderr, "ERROR: unable to open input file '%s'\n", filename); exit(1); } @@ -263,7 +263,7 @@ int main(int argc, char** argv) verbose = 1; } else { - /* We have a GRIB file */ + /* We have a file (not an option) */ process_file(arg); } } From ac7b5d2cf30b17499819fef22f9c200e0acb74a2 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 27 May 2021 16:25:48 +0100 Subject: [PATCH 500/683] ECC-1247: grib_dump: indicate which keys can have values which are 'missing' --- src/grib_dumper_class_debug.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/grib_dumper_class_debug.c b/src/grib_dumper_class_debug.c index 15d6463af..b7afc8401 100644 --- a/src/grib_dumper_class_debug.c +++ b/src/grib_dumper_class_debug.c @@ -191,6 +191,8 @@ static void dump_long(grib_dumper* d, grib_accessor* a, const char* comment) fprintf(self->dumper.out, "%ld-%ld %s %s = %ld", self->begin, self->theEnd, a->creator->op, a->name, value); if (comment) fprintf(self->dumper.out, " [%s]", comment); + if ((a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) != 0) + fprintf(self->dumper.out, " %s", "(can be missing)"); } if (err) fprintf(self->dumper.out, " *** ERR=%d (%s) [grib_dumper_debug::dump_long]", err, grib_get_error_message(err)); From 8ba5a104abd10cf9638a823b60d9107b401f99ea Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 27 May 2021 17:17:52 +0100 Subject: [PATCH 501/683] ECC-1244: error msg --- src/grib_iterator_class_regular.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/grib_iterator_class_regular.c b/src/grib_iterator_class_regular.c index 35a3b4594..ef988b9c3 100644 --- a/src/grib_iterator_class_regular.c +++ b/src/grib_iterator_class_regular.c @@ -164,14 +164,14 @@ static int init(grib_iterator* i, grib_handle* h, grib_arguments* args) if ((ret = grib_get_long_internal(h, s_Ni, &Ni))) return ret; if (grib_is_missing(h, s_Ni, &ret) && ret == GRIB_SUCCESS) { - grib_context_log(h->context, GRIB_LOG_ERROR, "Key %s cannot be missing for a regular grid!", s_Ni); + grib_context_log(h->context, GRIB_LOG_ERROR, "Key %s cannot be 'missing' for a regular grid!", s_Ni); return GRIB_WRONG_GRID; } if ((ret = grib_get_long_internal(h, s_Nj, &Nj))) return ret; if (grib_is_missing(h, s_Nj, &ret) && ret == GRIB_SUCCESS) { - grib_context_log(h->context, GRIB_LOG_ERROR, "Key %s cannot be missing for a regular grid!", s_Nj); + grib_context_log(h->context, GRIB_LOG_ERROR, "Key %s cannot be 'missing' for a regular grid!", s_Nj); return GRIB_WRONG_GRID; } From 352d8ca27d28ff237f8e4ccb0be909abde23401e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 27 May 2021 17:24:53 +0100 Subject: [PATCH 502/683] ECC-1247: test --- tests/grib_dump_debug.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tests/grib_dump_debug.sh b/tests/grib_dump_debug.sh index 8ba66bfbf..00afd1f46 100755 --- a/tests/grib_dump_debug.sh +++ b/tests/grib_dump_debug.sh @@ -11,7 +11,7 @@ . ./include.sh label="grib_dump_debug" temp=temp.$label.txt - +set -u REDIRECT=/dev/null if [ $HAVE_MEMFS -eq 1 ]; then @@ -94,4 +94,12 @@ for file in $files; do fi done +# ECC-1247: indicate which keys can have values which are 'missing' +# ------------------------------------------------------------------ +infile=${data_dir}/sample.grib2 +${tools_dir}/grib_dump -D $infile > $temp +grep -q "unsigned hoursAfterDataCutoff = 0 (can be missing)" $temp +grep -q "unsigned iDirectionIncrement = 2000000 (can be missing)" $temp + + rm -f $temp From 1a1d00f9fd2c50e9343f57001542e4133869b5dd Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 2 Jun 2021 13:26:56 +0100 Subject: [PATCH 503/683] ECC-1249: GRIB: New CAMS parameters required for ADS, task 3 (Round 1) --- .../localConcepts/ecmf/cfName.legacy.def | 36 +++++++++++ .../localConcepts/ecmf/cfVarName.legacy.def | 60 +++++++++++++++++++ .../grib2/localConcepts/ecmf/name.legacy.def | 60 +++++++++++++++++++ .../localConcepts/ecmf/paramId.legacy.def | 60 +++++++++++++++++++ .../localConcepts/ecmf/shortName.legacy.def | 60 +++++++++++++++++++ .../grib2/localConcepts/ecmf/units.legacy.def | 60 +++++++++++++++++++ 6 files changed, 336 insertions(+) diff --git a/definitions/grib2/localConcepts/ecmf/cfName.legacy.def b/definitions/grib2/localConcepts/ecmf/cfName.legacy.def index 2882a4746..84902772f 100644 --- a/definitions/grib2/localConcepts/ecmf/cfName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/cfName.legacy.def @@ -52,3 +52,39 @@ parameterCategory = 128 ; parameterNumber = 238 ; } +#GEMS Ozone +'mass_fraction_of_ozone_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; +} +#Carbon monoxide +'mass_fraction_of_carbon_monoxide_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; +} +#Nitrogen dioxide +'mass_fraction_of_nitrogen_dioxide_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; +} +#Sulphur dioxide +'mass_fraction_of_sulfur_dioxide_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; +} +#Ammonia +'mass_fraction_of_ammonia_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; +} +#Nitrogen monoxide +'mass_fraction_of_nitrogen_monoxide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def index 7480e3818..7fa066543 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def @@ -244,3 +244,63 @@ parameterCategory = 228 ; parameterNumber = 7 ; } +#GEMS Ozone +'go3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; +} +#GEMS Ozone +'go3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; +} +#Carbon monoxide +'co' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; +} +#Carbon monoxide +'codiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; +} +#Nitrogen dioxide +'no2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; +} +#Nitrogen dioxide +'no2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; +} +#Sulphur dioxide +'so2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; +} +#Sulphur dioxide +'so2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; +} +#Ammonia +'nh3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; +} +#Nitrogen monoxide +'no' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/name.legacy.def b/definitions/grib2/localConcepts/ecmf/name.legacy.def index a12ea46b8..51eb07dec 100644 --- a/definitions/grib2/localConcepts/ecmf/name.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/name.legacy.def @@ -244,3 +244,63 @@ parameterCategory = 228 ; parameterNumber = 7 ; } +#GEMS Ozone +'GEMS Ozone' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; +} +#GEMS Ozone +'GEMS Ozone' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; +} +#Carbon monoxide +'Carbon monoxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; +} +#Carbon monoxide +'Carbon monoxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; +} +#Nitrogen dioxide +'Nitrogen dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; +} +#Nitrogen dioxide +'Nitrogen dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; +} +#Sulphur dioxide +'Sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; +} +#Sulphur dioxide +'Sulphur dioxide' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; +} +#Ammonia +'Ammonia' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; +} +#Nitrogen monoxide +'Nitrogen monoxide' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def index 5ac473991..1cea787c0 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def @@ -244,3 +244,63 @@ parameterCategory = 228 ; parameterNumber = 7 ; } +#GEMS Ozone +'210203' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; +} +#GEMS Ozone +'211203' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; +} +#Carbon monoxide +'210123' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; +} +#Carbon monoxide +'211123' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; +} +#Nitrogen dioxide +'210121' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; +} +#Nitrogen dioxide +'211121' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; +} +#Sulphur dioxide +'210122' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; +} +#Sulphur dioxide +'211122' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; +} +#Ammonia +'217019' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; +} +#Nitrogen monoxide +'217027' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def index e99a753e2..917425c0d 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def @@ -244,3 +244,63 @@ parameterCategory = 228 ; parameterNumber = 7 ; } +#GEMS Ozone +'go3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; +} +#GEMS Ozone +'go3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; +} +#Carbon monoxide +'co' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; +} +#Carbon monoxide +'codiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; +} +#Nitrogen dioxide +'no2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; +} +#Nitrogen dioxide +'no2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; +} +#Sulphur dioxide +'so2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; +} +#Sulphur dioxide +'so2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; +} +#Ammonia +'nh3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; +} +#Nitrogen monoxide +'no' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/units.legacy.def b/definitions/grib2/localConcepts/ecmf/units.legacy.def index 789a79d13..472f95161 100644 --- a/definitions/grib2/localConcepts/ecmf/units.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/units.legacy.def @@ -244,3 +244,63 @@ parameterCategory = 228 ; parameterNumber = 7 ; } +#GEMS Ozone +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; +} +#GEMS Ozone +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; +} +#Carbon monoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; +} +#Carbon monoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; +} +#Nitrogen dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; +} +#Nitrogen dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; +} +#Sulphur dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; +} +#Sulphur dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; +} +#Ammonia +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; +} +#Nitrogen monoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; +} From 31035bc90eea69e02b424a9e3bfdd29df7eb67e6 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 3 Jun 2021 17:21:19 +0100 Subject: [PATCH 504/683] Scripts: Print list of expected columns --- definitions/add_params_from_tsv.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index 779d9d084..6724a273f 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -26,7 +26,7 @@ use Time::localtime; $ARGV[0] or die "USAGE: $0 input.tsv\n"; my $SANITY_CHECK = 0; -my $WRITE_TO_FILES = 0; +my $WRITE_TO_FILES = 1; my $WRITE_TO_PARAMDB = 0; # Be careful. Fill in $contactId before proceeding my ($paramId, $shortName, $name, $units, $cfVarName, $interpol); @@ -267,7 +267,8 @@ sub check_first_row_column_names { my $c = 0; my $numkeys = scalar @keys; my $numcols = scalar @columns; - die "Error: 1st row column titles wrong: Expected $numcols columns, got $numkeys.\n" if ($numkeys != $numcols); + die "Error: 1st row column titles wrong: Expected $numcols columns, got $numkeys.\nColumns should be:\n@columns\n" + if ($numkeys != $numcols); for ( my $i = 0; $i < $numkeys; $i++ ) { if ( $keys[$i] ne $columns[$i] ) { die "Error: 1st row column titles wrong: check column ", $i+1, ". Expected '$columns[$i]', got '$keys[$i]'.\n"; From 9d500fd864256bd28fd29d465e91674a9ee14501 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 5 Jun 2021 23:04:48 +0100 Subject: [PATCH 505/683] Scripts: fix chemical vs src/sink --- definitions/add_params_from_tsv.pl | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index 6724a273f..2285f1a14 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -152,13 +152,21 @@ while (<>) { my $units_code = get_db_units_code($units); my $is_chem = ""; my $is_aero = ""; + my $is_srcsink = ""; if ($aero ne "") { $is_aero = "1"; $is_chem = ""; + $is_srcsink = ""; } if ($constit ne "") { $is_aero = ""; $is_chem = "1"; + $is_srcsink = ""; + } + if ($sourceSink ne "") { + $is_aero = ""; + $is_chem = ""; + $is_srcsink = "1"; } my $centre = $localTV ne "" ? $centre_ecmwf : $centre_wmo; @@ -202,7 +210,7 @@ while (<>) { if (! defined $scaledValueWL2 || $scaledValueWL2 ne "") { $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,61,$scaledValueWL2,0); } - $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,64,$sourceSink,0) if ($sourceSink ne ""); + $dbh->do("insert into grib values (?,?,?,?,?,?)",undef, $paramId,$edition,$centre,64,$sourceSink,0) if ($is_srcsink ne ""); # format is only GRIB2 hence grib1 entry=0 and grib2=1 $dbh->do("insert into param_format(param_id,grib1,grib2) values (?,?,?)",undef,$paramId,0,1); @@ -252,12 +260,22 @@ sub write_out_file { print $outfile " aerosolType = $aero ;\n" if ($aero ne ""); print $outfile " constituentType = $constit ;\n" if ($constit ne ""); - print $outfile " is_aerosol = 1 ;\n" if ($aero ne ""); - print $outfile " is_chemical = 1 ;\n" if ($constit ne ""); - + if ($sourceSink eq "") { + print $outfile " is_aerosol = 1 ;\n" if ($aero ne ""); + print $outfile " is_chemical = 1 ;\n" if ($constit ne ""); + } else { + print $outfile " is_chemical_srcsink = 1 ;\n"; + print $outfile " sourceSinkChemicalPhysicalProcess = $sourceSink ;\n"; + } print $outfile " typeOfGeneratingProcess = $typeGen ;\n" if ($typeGen ne ""); print $outfile " localTablesVersion = $localTV ;\n" if ($localTV ne ""); + print $outfile " typeOfWavelengthInterval = $typeOfWLInt ;\n" if ($typeOfWLInt ne ""); + print $outfile " scaleFactorOfFirstWavelength = $scaleFactorWL1 ;\n" if ($scaleFactorWL1 ne ""); + print $outfile " scaledValueOfFirstWavelength = $scaledValueWL1 ;\n" if ($scaledValueWL1 ne ""); + print $outfile " scaleFactorOfSecondWavelength = $scaleFactorWL2 ;\n" if ($scaleFactorWL2 ne ""); + print $outfile " scaledValueOfSecondWavelength = $scaledValueWL2 ;\n" if ($scaledValueWL2 ne ""); + print $outfile "}\n"; } From 1ea8e5450e85eddc304b127f9d163e2784d01fdd Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 7 Jun 2021 15:32:32 +0100 Subject: [PATCH 506/683] ECC-1249: GRIB: New CAMS parameters required for ADS (Part 1) --- definitions/grib2/cfName.def | 48 ++++++++++ definitions/grib2/cfVarName.def | 92 ++++++++++++++++++- .../grib2/localConcepts/ecmf/cfName.def | 36 -------- .../grib2/localConcepts/ecmf/cfVarName.def | 60 ------------ definitions/grib2/localConcepts/ecmf/name.def | 60 ------------ .../grib2/localConcepts/ecmf/paramId.def | 60 ------------ .../grib2/localConcepts/ecmf/shortName.def | 60 ------------ .../grib2/localConcepts/ecmf/units.def | 60 ------------ definitions/grib2/name.def | 84 +++++++++++++++++ definitions/grib2/paramId.def | 84 +++++++++++++++++ definitions/grib2/shortName.def | 84 +++++++++++++++++ definitions/grib2/units.def | 84 +++++++++++++++++ 12 files changed, 472 insertions(+), 340 deletions(-) diff --git a/definitions/grib2/cfName.def b/definitions/grib2/cfName.def index 9e55439c1..c13548767 100644 --- a/definitions/grib2/cfName.def +++ b/definitions/grib2/cfName.def @@ -87,6 +87,22 @@ scaledValueOfFirstFixedSurface = 1 ; scaleFactorOfFirstFixedSurface = 2 ; } +#Ammonia +'mass_fraction_of_ammonia_in_air' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 9 ; + is_chemical = 1 ; + } +#Nitrogen monoxide +'mass_fraction_of_nitrogen_monoxide_in_air' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 11 ; + is_chemical = 1 ; + } #Eastward sea water velocity 'eastward_sea_water_velocity' = { discipline = 10 ; @@ -131,6 +147,38 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Nitrogen dioxide +'mass_fraction_of_nitrogen_dioxide_in_air' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + is_chemical = 1 ; + } +#Sulphur dioxide +'mass_fraction_of_sulfur_dioxide_in_air' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + is_chemical = 1 ; + } +#Carbon monoxide +'mass_fraction_of_carbon_monoxide_in_air' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + is_chemical = 1 ; + } +#GEMS Ozone +'mass_fraction_of_ozone_in_air' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + is_chemical = 1 ; + } #Geopotential 'geopotential' = { discipline = 0 ; diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 3575fa303..f42f414e0 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -746,12 +746,28 @@ parameterCategory = 20 ; parameterNumber = 102 ; scaleFactorOfFirstWavelength = 9 ; - scaledValueOfFirstWavelength = 550 ; - scaleFactorOfSecondWavelength = missing() ; - scaledValueOfSecondWavelength = missing() ; aerosolType = 62012 ; - is_aerosol_optical = 1 ; + scaledValueOfFirstWavelength = 550 ; + scaledValueOfSecondWavelength = missing() ; typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; + } +#Ammonia +'nh3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 9 ; + is_chemical = 1 ; + } +#Nitrogen monoxide +'no' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 11 ; + is_chemical = 1 ; } #Aromatic peroxy radical mass mixing ratio 'AROO2' = { @@ -2471,6 +2487,74 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Nitrogen dioxide +'no2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + is_chemical = 1 ; + } +#Sulphur dioxide +'so2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + is_chemical = 1 ; + } +#Carbon monoxide +'co' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + is_chemical = 1 ; + } +#GEMS Ozone +'go3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + is_chemical = 1 ; + } +#Nitrogen dioxide +'no2diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Sulphur dioxide +'so2diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Carbon monoxide +'codiff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#GEMS Ozone +'go3diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } #Lake total depth 'dl' = { discipline = 1 ; diff --git a/definitions/grib2/localConcepts/ecmf/cfName.def b/definitions/grib2/localConcepts/ecmf/cfName.def index 713d4ea17..f352417a1 100644 --- a/definitions/grib2/localConcepts/ecmf/cfName.def +++ b/definitions/grib2/localConcepts/ecmf/cfName.def @@ -139,18 +139,6 @@ parameterCategory = 217 ; parameterNumber = 18 ; } -#Ammonia -'mass_fraction_of_ammonia_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } -#Nitrogen monoxide -'mass_fraction_of_nitrogen_monoxide_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } #Hydroxyl radical 'mass_fraction_of_hydroxyl_radical_in_air' = { discipline = 192 ; @@ -559,24 +547,6 @@ parameterCategory = 210 ; parameterNumber = 66 ; } -#Nitrogen dioxide -'mass_fraction_of_nitrogen_dioxide_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'mass_fraction_of_sulfur_dioxide_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'mass_fraction_of_carbon_monoxide_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } #Formaldehyde 'mass_fraction_of_formaldehyde_in_air' = { discipline = 192 ; @@ -619,12 +589,6 @@ parameterCategory = 210 ; parameterNumber = 183 ; } -#GEMS Ozone -'mass_fraction_of_ozone_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'atmosphere_mass_content_of_ozone' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.def b/definitions/grib2/localConcepts/ecmf/cfVarName.def index daf37cc26..357b8215a 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.def @@ -8425,12 +8425,6 @@ parameterCategory = 217 ; parameterNumber = 18 ; } -#Ammonia -'nh3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } #Sulfate 'so4' = { discipline = 192 ; @@ -8467,12 +8461,6 @@ parameterCategory = 217 ; parameterNumber = 26 ; } -#Nitrogen monoxide -'no' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } #Hydroperoxy radical 'ho2' = { discipline = 192 ; @@ -20789,24 +20777,6 @@ parameterCategory = 210 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'no2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'so2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'co' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } #Formaldehyde 'hcho' = { discipline = 192 ; @@ -21095,12 +21065,6 @@ parameterCategory = 210 ; parameterNumber = 185 ; } -#GEMS Ozone -'go3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'gtco3' = { discipline = 192 ; @@ -21557,24 +21521,6 @@ parameterCategory = 211 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'no2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'so2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'codiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } #Formaldehyde 'hchodiff' = { discipline = 192 ; @@ -21863,12 +21809,6 @@ parameterCategory = 211 ; parameterNumber = 185 ; } -#GEMS Ozone -'go3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'gtco3diff' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/name.def b/definitions/grib2/localConcepts/ecmf/name.def index 8db89a90f..7a2fc3fc0 100644 --- a/definitions/grib2/localConcepts/ecmf/name.def +++ b/definitions/grib2/localConcepts/ecmf/name.def @@ -8425,12 +8425,6 @@ parameterCategory = 217 ; parameterNumber = 18 ; } -#Ammonia -'Ammonia' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } #Sulfate 'Sulfate' = { discipline = 192 ; @@ -8467,12 +8461,6 @@ parameterCategory = 217 ; parameterNumber = 26 ; } -#Nitrogen monoxide -'Nitrogen monoxide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } #Hydroperoxy radical 'Hydroperoxy radical' = { discipline = 192 ; @@ -20789,24 +20777,6 @@ parameterCategory = 210 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'Nitrogen dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'Sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'Carbon monoxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } #Formaldehyde 'Formaldehyde' = { discipline = 192 ; @@ -21095,12 +21065,6 @@ parameterCategory = 210 ; parameterNumber = 185 ; } -#GEMS Ozone -'GEMS Ozone' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'GEMS Total column ozone' = { discipline = 192 ; @@ -21557,24 +21521,6 @@ parameterCategory = 211 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'Nitrogen dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'Sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'Carbon monoxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } #Formaldehyde 'Formaldehyde' = { discipline = 192 ; @@ -21863,12 +21809,6 @@ parameterCategory = 211 ; parameterNumber = 185 ; } -#GEMS Ozone -'GEMS Ozone' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'GEMS Total column ozone' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/paramId.def b/definitions/grib2/localConcepts/ecmf/paramId.def index 9549a56de..71b13be64 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.def @@ -8425,12 +8425,6 @@ parameterCategory = 217 ; parameterNumber = 18 ; } -#Ammonia -'217019' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } #Sulfate '217020' = { discipline = 192 ; @@ -8467,12 +8461,6 @@ parameterCategory = 217 ; parameterNumber = 26 ; } -#Nitrogen monoxide -'217027' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } #Hydroperoxy radical '217028' = { discipline = 192 ; @@ -20789,24 +20777,6 @@ parameterCategory = 210 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'210121' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'210122' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'210123' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } #Formaldehyde '210124' = { discipline = 192 ; @@ -21095,12 +21065,6 @@ parameterCategory = 210 ; parameterNumber = 185 ; } -#GEMS Ozone -'210203' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } #GEMS Total column ozone '210206' = { discipline = 192 ; @@ -21557,24 +21521,6 @@ parameterCategory = 211 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'211121' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'211122' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'211123' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } #Formaldehyde '211124' = { discipline = 192 ; @@ -21863,12 +21809,6 @@ parameterCategory = 211 ; parameterNumber = 185 ; } -#GEMS Ozone -'211203' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } #GEMS Total column ozone '211206' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/shortName.def b/definitions/grib2/localConcepts/ecmf/shortName.def index 41d5c4688..797b4e665 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.def @@ -8425,12 +8425,6 @@ parameterCategory = 217 ; parameterNumber = 18 ; } -#Ammonia -'nh3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } #Sulfate 'so4' = { discipline = 192 ; @@ -8467,12 +8461,6 @@ parameterCategory = 217 ; parameterNumber = 26 ; } -#Nitrogen monoxide -'no' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } #Hydroperoxy radical 'ho2' = { discipline = 192 ; @@ -20789,24 +20777,6 @@ parameterCategory = 210 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'no2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'so2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'co' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } #Formaldehyde 'hcho' = { discipline = 192 ; @@ -21095,12 +21065,6 @@ parameterCategory = 210 ; parameterNumber = 185 ; } -#GEMS Ozone -'go3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'gtco3' = { discipline = 192 ; @@ -21557,24 +21521,6 @@ parameterCategory = 211 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'no2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'so2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'codiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } #Formaldehyde 'hchodiff' = { discipline = 192 ; @@ -21863,12 +21809,6 @@ parameterCategory = 211 ; parameterNumber = 185 ; } -#GEMS Ozone -'go3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'gtco3diff' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/units.def b/definitions/grib2/localConcepts/ecmf/units.def index 75f882b14..7e7256248 100644 --- a/definitions/grib2/localConcepts/ecmf/units.def +++ b/definitions/grib2/localConcepts/ecmf/units.def @@ -8425,12 +8425,6 @@ parameterCategory = 217 ; parameterNumber = 18 ; } -#Ammonia -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } #Sulfate 'kg kg**-1' = { discipline = 192 ; @@ -8467,12 +8461,6 @@ parameterCategory = 217 ; parameterNumber = 26 ; } -#Nitrogen monoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } #Hydroperoxy radical 'kg kg**-1' = { discipline = 192 ; @@ -20789,24 +20777,6 @@ parameterCategory = 210 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } #Formaldehyde 'kg kg**-1' = { discipline = 192 ; @@ -21095,12 +21065,6 @@ parameterCategory = 210 ; parameterNumber = 185 ; } -#GEMS Ozone -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'kg m**-2' = { discipline = 192 ; @@ -21557,24 +21521,6 @@ parameterCategory = 211 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } #Formaldehyde 'kg kg**-1' = { discipline = 192 ; @@ -21863,12 +21809,6 @@ parameterCategory = 211 ; parameterNumber = 185 ; } -#GEMS Ozone -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'kg m**-2' = { discipline = 192 ; diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index 010c738c3..9fd160e62 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -753,6 +753,22 @@ scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } +#Ammonia +'Ammonia' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 9 ; + is_chemical = 1 ; + } +#Nitrogen monoxide +'Nitrogen monoxide' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 11 ; + is_chemical = 1 ; + } #Aromatic peroxy radical mass mixing ratio 'Aromatic peroxy radical mass mixing ratio' = { discipline = 0 ; @@ -2471,6 +2487,74 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Nitrogen dioxide +'Nitrogen dioxide' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + is_chemical = 1 ; + } +#Sulphur dioxide +'Sulphur dioxide' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + is_chemical = 1 ; + } +#Carbon monoxide +'Carbon monoxide' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + is_chemical = 1 ; + } +#GEMS Ozone +'GEMS Ozone' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + is_chemical = 1 ; + } +#Nitrogen dioxide +'Nitrogen dioxide' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Sulphur dioxide +'Sulphur dioxide' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Carbon monoxide +'Carbon monoxide' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#GEMS Ozone +'GEMS Ozone' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } #Lake total depth 'Lake total depth' = { discipline = 1 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index efe0555bc..a154682c5 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -753,6 +753,22 @@ scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } +#Ammonia +'217019' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 9 ; + is_chemical = 1 ; + } +#Nitrogen monoxide +'217027' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 11 ; + is_chemical = 1 ; + } #Aromatic peroxy radical mass mixing ratio '217222' = { discipline = 0 ; @@ -2471,6 +2487,74 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Nitrogen dioxide +'210121' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + is_chemical = 1 ; + } +#Sulphur dioxide +'210122' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + is_chemical = 1 ; + } +#Carbon monoxide +'210123' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + is_chemical = 1 ; + } +#GEMS Ozone +'210203' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + is_chemical = 1 ; + } +#Nitrogen dioxide +'211121' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Sulphur dioxide +'211122' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Carbon monoxide +'211123' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#GEMS Ozone +'211203' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } #Lake total depth '228007' = { discipline = 1 ; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 91166eb03..5bc243d70 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -753,6 +753,22 @@ scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } +#Ammonia +'nh3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 9 ; + is_chemical = 1 ; + } +#Nitrogen monoxide +'no' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 11 ; + is_chemical = 1 ; + } #Aromatic peroxy radical mass mixing ratio 'AROO2' = { discipline = 0 ; @@ -2471,6 +2487,74 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Nitrogen dioxide +'no2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + is_chemical = 1 ; + } +#Sulphur dioxide +'so2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + is_chemical = 1 ; + } +#Carbon monoxide +'co' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + is_chemical = 1 ; + } +#GEMS Ozone +'go3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + is_chemical = 1 ; + } +#Nitrogen dioxide +'no2diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Sulphur dioxide +'so2diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Carbon monoxide +'codiff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#GEMS Ozone +'go3diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } #Lake total depth 'dl' = { discipline = 1 ; diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index 62d03b12b..8dcdc1322 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -753,6 +753,22 @@ scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } +#Ammonia +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 9 ; + is_chemical = 1 ; + } +#Nitrogen monoxide +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 11 ; + is_chemical = 1 ; + } #Aromatic peroxy radical mass mixing ratio 'kg kg**-1' = { discipline = 0 ; @@ -2471,6 +2487,74 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Nitrogen dioxide +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + is_chemical = 1 ; + } +#Sulphur dioxide +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + is_chemical = 1 ; + } +#Carbon monoxide +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + is_chemical = 1 ; + } +#GEMS Ozone +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + is_chemical = 1 ; + } +#Nitrogen dioxide +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Sulphur dioxide +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Carbon monoxide +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#GEMS Ozone +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } #Lake total depth 'm' = { discipline = 1 ; From 83411cf8560f273a550002c972aabf04ceac706e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 7 Jun 2021 16:34:25 +0100 Subject: [PATCH 507/683] ECC-1249: GRIB: New CAMS parameters required for ADS (Part 2) --- .../grib1/localConcepts/ecmf/cfName.def | 12 +-- .../grib1/localConcepts/ecmf/cfVarName.def | 20 ++--- definitions/grib1/localConcepts/ecmf/name.def | 40 ++++----- .../grib1/localConcepts/ecmf/paramId.def | 20 ++--- .../grib1/localConcepts/ecmf/shortName.def | 20 ++--- .../grib1/localConcepts/ecmf/units.def | 20 ++--- definitions/grib2/cfName.def | 12 +-- definitions/grib2/cfVarName.def | 90 +++++++++---------- .../grib2/localConcepts/ecmf/name.legacy.def | 20 ++--- definitions/grib2/name.def | 40 ++++----- definitions/grib2/paramId.def | 20 ++--- definitions/grib2/shortName.def | 20 ++--- definitions/grib2/units.def | 20 ++--- 13 files changed, 177 insertions(+), 177 deletions(-) diff --git a/definitions/grib1/localConcepts/ecmf/cfName.def b/definitions/grib1/localConcepts/ecmf/cfName.def index 4a062bc47..552d275fc 100644 --- a/definitions/grib1/localConcepts/ecmf/cfName.def +++ b/definitions/grib1/localConcepts/ecmf/cfName.def @@ -739,12 +739,12 @@ table2Version = 217 ; indicatorOfParameter = 18 ; } -#Ammonia +#Ammonia mass mixing ratio 'mass_fraction_of_ammonia_in_air' = { table2Version = 217 ; indicatorOfParameter = 19 ; } -#Nitrogen monoxide +#Nitrogen monoxide mass mixing ratio 'mass_fraction_of_nitrogen_monoxide_in_air' = { table2Version = 217 ; indicatorOfParameter = 27 ; @@ -979,17 +979,17 @@ table2Version = 210 ; indicatorOfParameter = 66 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio 'mass_fraction_of_nitrogen_dioxide_in_air' = { table2Version = 210 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio 'mass_fraction_of_sulfur_dioxide_in_air' = { table2Version = 210 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio 'mass_fraction_of_carbon_monoxide_in_air' = { table2Version = 210 ; indicatorOfParameter = 123 ; @@ -1029,7 +1029,7 @@ table2Version = 210 ; indicatorOfParameter = 183 ; } -#GEMS Ozone +#Ozone mass mixing ratio (full chemistry scheme) 'mass_fraction_of_ozone_in_air' = { table2Version = 210 ; indicatorOfParameter = 203 ; diff --git a/definitions/grib1/localConcepts/ecmf/cfVarName.def b/definitions/grib1/localConcepts/ecmf/cfVarName.def index a195e9835..c071ab69d 100644 --- a/definitions/grib1/localConcepts/ecmf/cfVarName.def +++ b/definitions/grib1/localConcepts/ecmf/cfVarName.def @@ -8534,7 +8534,7 @@ table2Version = 217 ; indicatorOfParameter = 18 ; } -#Ammonia +#Ammonia mass mixing ratio 'nh3' = { table2Version = 217 ; indicatorOfParameter = 19 ; @@ -8569,7 +8569,7 @@ table2Version = 217 ; indicatorOfParameter = 26 ; } -#Nitrogen monoxide +#Nitrogen monoxide mass mixing ratio 'no' = { table2Version = 217 ; indicatorOfParameter = 27 ; @@ -16124,17 +16124,17 @@ table2Version = 210 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio 'no2' = { table2Version = 210 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio 'so2' = { table2Version = 210 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio 'co' = { table2Version = 210 ; indicatorOfParameter = 123 ; @@ -16379,7 +16379,7 @@ table2Version = 210 ; indicatorOfParameter = 185 ; } -#GEMS Ozone +#Ozone mass mixing ratio (full chemistry scheme) 'go3' = { table2Version = 210 ; indicatorOfParameter = 203 ; @@ -16824,17 +16824,17 @@ table2Version = 211 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio difference 'no2diff' = { table2Version = 211 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio difference 'so2diff' = { table2Version = 211 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio difference 'codiff' = { table2Version = 211 ; indicatorOfParameter = 123 ; @@ -17079,7 +17079,7 @@ table2Version = 211 ; indicatorOfParameter = 185 ; } -#GEMS Ozone +#Ozone mass mixing ratio difference (full chemistry scheme) 'go3diff' = { table2Version = 211 ; indicatorOfParameter = 203 ; diff --git a/definitions/grib1/localConcepts/ecmf/name.def b/definitions/grib1/localConcepts/ecmf/name.def index 309abf00a..3e9d7de37 100644 --- a/definitions/grib1/localConcepts/ecmf/name.def +++ b/definitions/grib1/localConcepts/ecmf/name.def @@ -8534,8 +8534,8 @@ table2Version = 217 ; indicatorOfParameter = 18 ; } -#Ammonia -'Ammonia' = { +#Ammonia mass mixing ratio +'Ammonia mass mixing ratio' = { table2Version = 217 ; indicatorOfParameter = 19 ; } @@ -8569,8 +8569,8 @@ table2Version = 217 ; indicatorOfParameter = 26 ; } -#Nitrogen monoxide -'Nitrogen monoxide' = { +#Nitrogen monoxide mass mixing ratio +'Nitrogen monoxide mass mixing ratio' = { table2Version = 217 ; indicatorOfParameter = 27 ; } @@ -16124,18 +16124,18 @@ table2Version = 210 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide -'Nitrogen dioxide' = { +#Nitrogen dioxide mass mixing ratio +'Nitrogen dioxide mass mixing ratio' = { table2Version = 210 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide -'Sulphur dioxide' = { +#Sulphur dioxide mass mixing ratio +'Sulphur dioxide mass mixing ratio' = { table2Version = 210 ; indicatorOfParameter = 122 ; } -#Carbon monoxide -'Carbon monoxide' = { +#Carbon monoxide mass mixing ratio +'Carbon monoxide mass mixing ratio' = { table2Version = 210 ; indicatorOfParameter = 123 ; } @@ -16379,8 +16379,8 @@ table2Version = 210 ; indicatorOfParameter = 185 ; } -#GEMS Ozone -'GEMS Ozone' = { +#Ozone mass mixing ratio (full chemistry scheme) +'Ozone mass mixing ratio (full chemistry scheme)' = { table2Version = 210 ; indicatorOfParameter = 203 ; } @@ -16824,18 +16824,18 @@ table2Version = 211 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide -'Nitrogen dioxide' = { +#Nitrogen dioxide mass mixing ratio difference +'Nitrogen dioxide mass mixing ratio difference' = { table2Version = 211 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide -'Sulphur dioxide' = { +#Sulphur dioxide mass mixing ratio difference +'Sulphur dioxide mass mixing ratio difference' = { table2Version = 211 ; indicatorOfParameter = 122 ; } -#Carbon monoxide -'Carbon monoxide' = { +#Carbon monoxide mass mixing ratio difference +'Carbon monoxide mass mixing ratio difference' = { table2Version = 211 ; indicatorOfParameter = 123 ; } @@ -17079,8 +17079,8 @@ table2Version = 211 ; indicatorOfParameter = 185 ; } -#GEMS Ozone -'GEMS Ozone' = { +#Ozone mass mixing ratio difference (full chemistry scheme) +'Ozone mass mixing ratio difference (full chemistry scheme)' = { table2Version = 211 ; indicatorOfParameter = 203 ; } diff --git a/definitions/grib1/localConcepts/ecmf/paramId.def b/definitions/grib1/localConcepts/ecmf/paramId.def index ac2723118..dcfb5eaf1 100644 --- a/definitions/grib1/localConcepts/ecmf/paramId.def +++ b/definitions/grib1/localConcepts/ecmf/paramId.def @@ -8534,7 +8534,7 @@ table2Version = 217 ; indicatorOfParameter = 18 ; } -#Ammonia +#Ammonia mass mixing ratio '217019' = { table2Version = 217 ; indicatorOfParameter = 19 ; @@ -8569,7 +8569,7 @@ table2Version = 217 ; indicatorOfParameter = 26 ; } -#Nitrogen monoxide +#Nitrogen monoxide mass mixing ratio '217027' = { table2Version = 217 ; indicatorOfParameter = 27 ; @@ -16124,17 +16124,17 @@ table2Version = 210 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio '210121' = { table2Version = 210 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio '210122' = { table2Version = 210 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio '210123' = { table2Version = 210 ; indicatorOfParameter = 123 ; @@ -16379,7 +16379,7 @@ table2Version = 210 ; indicatorOfParameter = 185 ; } -#GEMS Ozone +#Ozone mass mixing ratio (full chemistry scheme) '210203' = { table2Version = 210 ; indicatorOfParameter = 203 ; @@ -16824,17 +16824,17 @@ table2Version = 211 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio difference '211121' = { table2Version = 211 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio difference '211122' = { table2Version = 211 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio difference '211123' = { table2Version = 211 ; indicatorOfParameter = 123 ; @@ -17079,7 +17079,7 @@ table2Version = 211 ; indicatorOfParameter = 185 ; } -#GEMS Ozone +#Ozone mass mixing ratio difference (full chemistry scheme) '211203' = { table2Version = 211 ; indicatorOfParameter = 203 ; diff --git a/definitions/grib1/localConcepts/ecmf/shortName.def b/definitions/grib1/localConcepts/ecmf/shortName.def index 993b1ce67..cf056153a 100644 --- a/definitions/grib1/localConcepts/ecmf/shortName.def +++ b/definitions/grib1/localConcepts/ecmf/shortName.def @@ -8534,7 +8534,7 @@ table2Version = 217 ; indicatorOfParameter = 18 ; } -#Ammonia +#Ammonia mass mixing ratio 'nh3' = { table2Version = 217 ; indicatorOfParameter = 19 ; @@ -8569,7 +8569,7 @@ table2Version = 217 ; indicatorOfParameter = 26 ; } -#Nitrogen monoxide +#Nitrogen monoxide mass mixing ratio 'no' = { table2Version = 217 ; indicatorOfParameter = 27 ; @@ -16124,17 +16124,17 @@ table2Version = 210 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio 'no2' = { table2Version = 210 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio 'so2' = { table2Version = 210 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio 'co' = { table2Version = 210 ; indicatorOfParameter = 123 ; @@ -16379,7 +16379,7 @@ table2Version = 210 ; indicatorOfParameter = 185 ; } -#GEMS Ozone +#Ozone mass mixing ratio (full chemistry scheme) 'go3' = { table2Version = 210 ; indicatorOfParameter = 203 ; @@ -16824,17 +16824,17 @@ table2Version = 211 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio difference 'no2diff' = { table2Version = 211 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio difference 'so2diff' = { table2Version = 211 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio difference 'codiff' = { table2Version = 211 ; indicatorOfParameter = 123 ; @@ -17079,7 +17079,7 @@ table2Version = 211 ; indicatorOfParameter = 185 ; } -#GEMS Ozone +#Ozone mass mixing ratio difference (full chemistry scheme) 'go3diff' = { table2Version = 211 ; indicatorOfParameter = 203 ; diff --git a/definitions/grib1/localConcepts/ecmf/units.def b/definitions/grib1/localConcepts/ecmf/units.def index 04b8d7981..a1d9c10c9 100644 --- a/definitions/grib1/localConcepts/ecmf/units.def +++ b/definitions/grib1/localConcepts/ecmf/units.def @@ -8534,7 +8534,7 @@ table2Version = 217 ; indicatorOfParameter = 18 ; } -#Ammonia +#Ammonia mass mixing ratio 'kg kg**-1' = { table2Version = 217 ; indicatorOfParameter = 19 ; @@ -8569,7 +8569,7 @@ table2Version = 217 ; indicatorOfParameter = 26 ; } -#Nitrogen monoxide +#Nitrogen monoxide mass mixing ratio 'kg kg**-1' = { table2Version = 217 ; indicatorOfParameter = 27 ; @@ -16124,17 +16124,17 @@ table2Version = 210 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio 'kg kg**-1' = { table2Version = 210 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio 'kg kg**-1' = { table2Version = 210 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio 'kg kg**-1' = { table2Version = 210 ; indicatorOfParameter = 123 ; @@ -16379,7 +16379,7 @@ table2Version = 210 ; indicatorOfParameter = 185 ; } -#GEMS Ozone +#Ozone mass mixing ratio (full chemistry scheme) 'kg kg**-1' = { table2Version = 210 ; indicatorOfParameter = 203 ; @@ -16824,17 +16824,17 @@ table2Version = 211 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio difference 'kg kg**-1' = { table2Version = 211 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio difference 'kg kg**-1' = { table2Version = 211 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio difference 'kg kg**-1' = { table2Version = 211 ; indicatorOfParameter = 123 ; @@ -17079,7 +17079,7 @@ table2Version = 211 ; indicatorOfParameter = 185 ; } -#GEMS Ozone +#Ozone mass mixing ratio difference (full chemistry scheme) 'kg kg**-1' = { table2Version = 211 ; indicatorOfParameter = 203 ; diff --git a/definitions/grib2/cfName.def b/definitions/grib2/cfName.def index c13548767..46d203b12 100644 --- a/definitions/grib2/cfName.def +++ b/definitions/grib2/cfName.def @@ -87,7 +87,7 @@ scaledValueOfFirstFixedSurface = 1 ; scaleFactorOfFirstFixedSurface = 2 ; } -#Ammonia +#Ammonia mass mixing ratio 'mass_fraction_of_ammonia_in_air' = { discipline = 0 ; parameterCategory = 20 ; @@ -95,7 +95,7 @@ constituentType = 9 ; is_chemical = 1 ; } -#Nitrogen monoxide +#Nitrogen monoxide mass mixing ratio 'mass_fraction_of_nitrogen_monoxide_in_air' = { discipline = 0 ; parameterCategory = 20 ; @@ -147,7 +147,7 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio 'mass_fraction_of_nitrogen_dioxide_in_air' = { discipline = 0 ; parameterCategory = 20 ; @@ -155,7 +155,7 @@ constituentType = 5 ; is_chemical = 1 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio 'mass_fraction_of_sulfur_dioxide_in_air' = { discipline = 0 ; parameterCategory = 20 ; @@ -163,7 +163,7 @@ constituentType = 8 ; is_chemical = 1 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio 'mass_fraction_of_carbon_monoxide_in_air' = { discipline = 0 ; parameterCategory = 20 ; @@ -171,7 +171,7 @@ constituentType = 4 ; is_chemical = 1 ; } -#GEMS Ozone +#Ozone mass mixing ratio (full chemistry scheme) 'mass_fraction_of_ozone_in_air' = { discipline = 0 ; parameterCategory = 20 ; diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index f42f414e0..ed457d2fb 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -4,96 +4,96 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 1 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 5 mm 'tpg5' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 5 ; - probabilityType = 3 ; - typeOfFirstFixedSurface = 1 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 40 mm 'tpg40' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; scaledValueOfLowerLimit = 40 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 60 mm 'tpg60' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 60 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 60 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 80 mm 'tpg80' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 80 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; } #Total precipitation of at least 100 mm 'tpg100' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 100 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 100 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 150 mm 'tpg150' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaledValueOfLowerLimit = 150 ; typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 150 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 200 mm 'tpg200' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaledValueOfLowerLimit = 200 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 200 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 300 mm 'tpg300' = { @@ -101,11 +101,11 @@ parameterCategory = 1 ; parameterNumber = 52 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 3 ; scaleFactorOfLowerLimit = -2 ; probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; } #Wind speed 'ws' = { @@ -118,20 +118,20 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 100 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; } #Wind speed 'ws' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 200 ; - is_uerra = 1 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 200 ; scaleFactorOfFirstFixedSurface = 0 ; + is_uerra = 1 ; } #Unbalanced component of temperature 'uctp' = { @@ -753,7 +753,7 @@ scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } -#Ammonia +#Ammonia mass mixing ratio 'nh3' = { discipline = 0 ; parameterCategory = 20 ; @@ -761,7 +761,7 @@ constituentType = 9 ; is_chemical = 1 ; } -#Nitrogen monoxide +#Nitrogen monoxide mass mixing ratio 'no' = { discipline = 0 ; parameterCategory = 20 ; @@ -814,8 +814,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 60058 ; + is_chemical = 1 ; } #Hydroperoxy aldehydes type 2 mass mixing ratio 'HPALD' = { @@ -855,8 +855,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 60029 ; + is_chemical = 1 ; } #Column integrated mass density of Ethyne 'tc_C2H2' = { @@ -895,8 +895,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 60058 ; + is_chemical = 1 ; } #Column integrated mass density of Hydroperoxy aldehydes type 2 'tc_HPALD2' = { @@ -968,8 +968,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 10006 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Hydroperoxy aldehydes type 1 'e_HPALD1' = { @@ -1041,8 +1041,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 10055 ; + is_chemical = 1 ; } #Dry deposition velocity of Hydrogen cyanide 'dv_HCN' = { @@ -1081,8 +1081,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 60057 ; + is_chemical = 1 ; } #-10 degrees C isothermal level (atm) 'degm10l' = { @@ -2487,7 +2487,7 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio 'no2' = { discipline = 0 ; parameterCategory = 20 ; @@ -2495,7 +2495,7 @@ constituentType = 5 ; is_chemical = 1 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio 'so2' = { discipline = 0 ; parameterCategory = 20 ; @@ -2503,7 +2503,7 @@ constituentType = 8 ; is_chemical = 1 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio 'co' = { discipline = 0 ; parameterCategory = 20 ; @@ -2511,7 +2511,7 @@ constituentType = 4 ; is_chemical = 1 ; } -#GEMS Ozone +#Ozone mass mixing ratio (full chemistry scheme) 'go3' = { discipline = 0 ; parameterCategory = 20 ; @@ -2519,7 +2519,7 @@ constituentType = 0 ; is_chemical = 1 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio difference 'no2diff' = { discipline = 0 ; parameterCategory = 20 ; @@ -2528,7 +2528,7 @@ typeOfGeneratingProcess = 20 ; is_chemical = 1 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio difference 'so2diff' = { discipline = 0 ; parameterCategory = 20 ; @@ -2537,7 +2537,7 @@ typeOfGeneratingProcess = 20 ; is_chemical = 1 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio difference 'codiff' = { discipline = 0 ; parameterCategory = 20 ; @@ -2546,7 +2546,7 @@ typeOfGeneratingProcess = 20 ; is_chemical = 1 ; } -#GEMS Ozone +#Ozone mass mixing ratio difference (full chemistry scheme) 'go3diff' = { discipline = 0 ; parameterCategory = 20 ; diff --git a/definitions/grib2/localConcepts/ecmf/name.legacy.def b/definitions/grib2/localConcepts/ecmf/name.legacy.def index 51eb07dec..9ec90276f 100644 --- a/definitions/grib2/localConcepts/ecmf/name.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/name.legacy.def @@ -245,61 +245,61 @@ parameterNumber = 7 ; } #GEMS Ozone -'GEMS Ozone' = { +'Ozone mass mixing ratio (full chemistry scheme)' = { discipline = 192 ; parameterCategory = 210 ; parameterNumber = 203 ; } #GEMS Ozone -'GEMS Ozone' = { +'Ozone mass mixing ratio difference (full chemistry scheme)' = { discipline = 192 ; parameterCategory = 211 ; parameterNumber = 203 ; } #Carbon monoxide -'Carbon monoxide' = { +'Carbon monoxide mass mixing ratio' = { discipline = 192 ; parameterCategory = 210 ; parameterNumber = 123 ; } #Carbon monoxide -'Carbon monoxide' = { +'Carbon monoxide mass mixing ratio difference' = { discipline = 192 ; parameterCategory = 211 ; parameterNumber = 123 ; } #Nitrogen dioxide -'Nitrogen dioxide' = { +'Nitrogen dioxide mass mixing ratio' = { discipline = 192 ; parameterCategory = 210 ; parameterNumber = 121 ; } #Nitrogen dioxide -'Nitrogen dioxide' = { +'Nitrogen dioxide mass mixing ratio difference' = { discipline = 192 ; parameterCategory = 211 ; parameterNumber = 121 ; } #Sulphur dioxide -'Sulphur dioxide' = { +'Sulphur dioxide mass mixing ratio' = { discipline = 192 ; parameterCategory = 210 ; parameterNumber = 122 ; } #Sulphur dioxide -'Sulphur dioxide' = { +'Sulphur dioxide mass mixing ratio difference' = { discipline = 192 ; parameterCategory = 211 ; parameterNumber = 122 ; } #Ammonia -'Ammonia' = { +'Ammonia mass mixing ratio' = { discipline = 192 ; parameterCategory = 217 ; parameterNumber = 19 ; } #Nitrogen monoxide -'Nitrogen monoxide' = { +'Nitrogen monoxide mass mixing ratio' = { discipline = 192 ; parameterCategory = 217 ; parameterNumber = 27 ; diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index 9fd160e62..335d681ba 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -753,16 +753,16 @@ scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } -#Ammonia -'Ammonia' = { +#Ammonia mass mixing ratio +'Ammonia mass mixing ratio' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; constituentType = 9 ; is_chemical = 1 ; } -#Nitrogen monoxide -'Nitrogen monoxide' = { +#Nitrogen monoxide mass mixing ratio +'Nitrogen monoxide mass mixing ratio' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; @@ -2487,40 +2487,40 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } -#Nitrogen dioxide -'Nitrogen dioxide' = { +#Nitrogen dioxide mass mixing ratio +'Nitrogen dioxide mass mixing ratio' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; constituentType = 5 ; is_chemical = 1 ; } -#Sulphur dioxide -'Sulphur dioxide' = { +#Sulphur dioxide mass mixing ratio +'Sulphur dioxide mass mixing ratio' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; constituentType = 8 ; is_chemical = 1 ; } -#Carbon monoxide -'Carbon monoxide' = { +#Carbon monoxide mass mixing ratio +'Carbon monoxide mass mixing ratio' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; constituentType = 4 ; is_chemical = 1 ; } -#GEMS Ozone -'GEMS Ozone' = { +#Ozone mass mixing ratio (full chemistry scheme) +'Ozone mass mixing ratio (full chemistry scheme)' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; constituentType = 0 ; is_chemical = 1 ; } -#Nitrogen dioxide -'Nitrogen dioxide' = { +#Nitrogen dioxide mass mixing ratio difference +'Nitrogen dioxide mass mixing ratio difference' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; @@ -2528,8 +2528,8 @@ typeOfGeneratingProcess = 20 ; is_chemical = 1 ; } -#Sulphur dioxide -'Sulphur dioxide' = { +#Sulphur dioxide mass mixing ratio difference +'Sulphur dioxide mass mixing ratio difference' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; @@ -2537,8 +2537,8 @@ typeOfGeneratingProcess = 20 ; is_chemical = 1 ; } -#Carbon monoxide -'Carbon monoxide' = { +#Carbon monoxide mass mixing ratio difference +'Carbon monoxide mass mixing ratio difference' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; @@ -2546,8 +2546,8 @@ typeOfGeneratingProcess = 20 ; is_chemical = 1 ; } -#GEMS Ozone -'GEMS Ozone' = { +#Ozone mass mixing ratio difference (full chemistry scheme) +'Ozone mass mixing ratio difference (full chemistry scheme)' = { discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index a154682c5..56f9a4544 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -753,7 +753,7 @@ scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } -#Ammonia +#Ammonia mass mixing ratio '217019' = { discipline = 0 ; parameterCategory = 20 ; @@ -761,7 +761,7 @@ constituentType = 9 ; is_chemical = 1 ; } -#Nitrogen monoxide +#Nitrogen monoxide mass mixing ratio '217027' = { discipline = 0 ; parameterCategory = 20 ; @@ -2487,7 +2487,7 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio '210121' = { discipline = 0 ; parameterCategory = 20 ; @@ -2495,7 +2495,7 @@ constituentType = 5 ; is_chemical = 1 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio '210122' = { discipline = 0 ; parameterCategory = 20 ; @@ -2503,7 +2503,7 @@ constituentType = 8 ; is_chemical = 1 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio '210123' = { discipline = 0 ; parameterCategory = 20 ; @@ -2511,7 +2511,7 @@ constituentType = 4 ; is_chemical = 1 ; } -#GEMS Ozone +#Ozone mass mixing ratio (full chemistry scheme) '210203' = { discipline = 0 ; parameterCategory = 20 ; @@ -2519,7 +2519,7 @@ constituentType = 0 ; is_chemical = 1 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio difference '211121' = { discipline = 0 ; parameterCategory = 20 ; @@ -2528,7 +2528,7 @@ typeOfGeneratingProcess = 20 ; is_chemical = 1 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio difference '211122' = { discipline = 0 ; parameterCategory = 20 ; @@ -2537,7 +2537,7 @@ typeOfGeneratingProcess = 20 ; is_chemical = 1 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio difference '211123' = { discipline = 0 ; parameterCategory = 20 ; @@ -2546,7 +2546,7 @@ typeOfGeneratingProcess = 20 ; is_chemical = 1 ; } -#GEMS Ozone +#Ozone mass mixing ratio difference (full chemistry scheme) '211203' = { discipline = 0 ; parameterCategory = 20 ; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 5bc243d70..70b7ebeea 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -753,7 +753,7 @@ scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } -#Ammonia +#Ammonia mass mixing ratio 'nh3' = { discipline = 0 ; parameterCategory = 20 ; @@ -761,7 +761,7 @@ constituentType = 9 ; is_chemical = 1 ; } -#Nitrogen monoxide +#Nitrogen monoxide mass mixing ratio 'no' = { discipline = 0 ; parameterCategory = 20 ; @@ -2487,7 +2487,7 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio 'no2' = { discipline = 0 ; parameterCategory = 20 ; @@ -2495,7 +2495,7 @@ constituentType = 5 ; is_chemical = 1 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio 'so2' = { discipline = 0 ; parameterCategory = 20 ; @@ -2503,7 +2503,7 @@ constituentType = 8 ; is_chemical = 1 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio 'co' = { discipline = 0 ; parameterCategory = 20 ; @@ -2511,7 +2511,7 @@ constituentType = 4 ; is_chemical = 1 ; } -#GEMS Ozone +#Ozone mass mixing ratio (full chemistry scheme) 'go3' = { discipline = 0 ; parameterCategory = 20 ; @@ -2519,7 +2519,7 @@ constituentType = 0 ; is_chemical = 1 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio difference 'no2diff' = { discipline = 0 ; parameterCategory = 20 ; @@ -2528,7 +2528,7 @@ typeOfGeneratingProcess = 20 ; is_chemical = 1 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio difference 'so2diff' = { discipline = 0 ; parameterCategory = 20 ; @@ -2537,7 +2537,7 @@ typeOfGeneratingProcess = 20 ; is_chemical = 1 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio difference 'codiff' = { discipline = 0 ; parameterCategory = 20 ; @@ -2546,7 +2546,7 @@ typeOfGeneratingProcess = 20 ; is_chemical = 1 ; } -#GEMS Ozone +#Ozone mass mixing ratio difference (full chemistry scheme) 'go3diff' = { discipline = 0 ; parameterCategory = 20 ; diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index 8dcdc1322..e5fc404be 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -753,7 +753,7 @@ scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } -#Ammonia +#Ammonia mass mixing ratio 'kg kg**-1' = { discipline = 0 ; parameterCategory = 20 ; @@ -761,7 +761,7 @@ constituentType = 9 ; is_chemical = 1 ; } -#Nitrogen monoxide +#Nitrogen monoxide mass mixing ratio 'kg kg**-1' = { discipline = 0 ; parameterCategory = 20 ; @@ -2487,7 +2487,7 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio 'kg kg**-1' = { discipline = 0 ; parameterCategory = 20 ; @@ -2495,7 +2495,7 @@ constituentType = 5 ; is_chemical = 1 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio 'kg kg**-1' = { discipline = 0 ; parameterCategory = 20 ; @@ -2503,7 +2503,7 @@ constituentType = 8 ; is_chemical = 1 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio 'kg kg**-1' = { discipline = 0 ; parameterCategory = 20 ; @@ -2511,7 +2511,7 @@ constituentType = 4 ; is_chemical = 1 ; } -#GEMS Ozone +#Ozone mass mixing ratio (full chemistry scheme) 'kg kg**-1' = { discipline = 0 ; parameterCategory = 20 ; @@ -2519,7 +2519,7 @@ constituentType = 0 ; is_chemical = 1 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio difference 'kg kg**-1' = { discipline = 0 ; parameterCategory = 20 ; @@ -2528,7 +2528,7 @@ typeOfGeneratingProcess = 20 ; is_chemical = 1 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio difference 'kg kg**-1' = { discipline = 0 ; parameterCategory = 20 ; @@ -2537,7 +2537,7 @@ typeOfGeneratingProcess = 20 ; is_chemical = 1 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio difference 'kg kg**-1' = { discipline = 0 ; parameterCategory = 20 ; @@ -2546,7 +2546,7 @@ typeOfGeneratingProcess = 20 ; is_chemical = 1 ; } -#GEMS Ozone +#Ozone mass mixing ratio difference (full chemistry scheme) 'kg kg**-1' = { discipline = 0 ; parameterCategory = 20 ; From c6ffb8121f815ccdb0a4d198849aeab321d4d750 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 8 Jun 2021 12:50:09 +0100 Subject: [PATCH 508/683] Testing: Add test for ECC-1028 (incorrect replication) --- tests/CMakeLists.txt | 1 + tests/bufr_ecc-1028.sh | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100755 tests/bufr_ecc-1028.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 1b00ca0e2..341b2f4be 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -84,6 +84,7 @@ if( HAVE_BUILD_TOOLS ) grib_ecc-1195 grib_ecc-1212 grib_ecc-1230 + bufr_ecc-1028 bufr_ecc-1195 bufr_json_samples bufr_ecc-359 diff --git a/tests/bufr_ecc-1028.sh b/tests/bufr_ecc-1028.sh new file mode 100755 index 000000000..5b86e0d6e --- /dev/null +++ b/tests/bufr_ecc-1028.sh @@ -0,0 +1,30 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +label="bufr_ecc-1028_test" +tempFilter=temp.$label.filt +tempError=temp.$label.err + +sample_bufr4=$ECCODES_SAMPLES_PATH/BUFR4.tmpl + +# Incorrect replication. Encoding should fail +echo "set unexpandedDescriptors={ 101000, 31002 }; write;" > $tempFilter +set +e +${tools_dir}/bufr_filter $tempFilter $sample_bufr4 2>$tempError +status=$? +set -e +[ $status -ne 0 ] +# Check error message +grep -q "Delayed replication: 101000: expected 1 but only found 0 elements" $tempError + + +rm -f $tempFilter $tempError From a6c2652995f2bee08463f909814139d69413e929 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 10 Jun 2021 14:07:41 +0100 Subject: [PATCH 509/683] ECC-1251: MARS streams: Add config files for new ENS-Extended range streams --- definitions/mars/grib.eefh.cf.def | 3 +++ definitions/mars/grib.eefh.fcmax.def | 5 +++++ definitions/mars/grib.eefh.fcmean.def | 5 +++++ definitions/mars/grib.eefh.fcmin.def | 5 +++++ definitions/mars/grib.eefh.fcstdev.def | 5 +++++ definitions/mars/grib.eefh.ff.def | 3 +++ definitions/mars/grib.eefh.icp.def | 4 ++++ definitions/mars/grib.eefh.pf.def | 4 ++++ definitions/mars/grib.eefh.tims.def | 3 +++ definitions/mars/grib.eefo.cf.def | 1 + definitions/mars/grib.eefo.ci.def | 1 + definitions/mars/grib.eefo.cm.def | 2 ++ definitions/mars/grib.eefo.cr.def | 1 + definitions/mars/grib.eefo.cs.def | 4 ++++ definitions/mars/grib.eefo.cv.def | 1 + definitions/mars/grib.eefo.ed.def | 1 + definitions/mars/grib.eefo.ef.def | 1 + definitions/mars/grib.eefo.efi.def | 1 + definitions/mars/grib.eefo.efic.def | 2 ++ definitions/mars/grib.eefo.em.def | 1 + definitions/mars/grib.eefo.ep.def | 1 + definitions/mars/grib.eefo.es.def | 1 + definitions/mars/grib.eefo.fc.def | 1 + definitions/mars/grib.eefo.fcmax.def | 2 ++ definitions/mars/grib.eefo.fcmean.def | 2 ++ definitions/mars/grib.eefo.fcmin.def | 2 ++ definitions/mars/grib.eefo.fcstdev.def | 2 ++ definitions/mars/grib.eefo.ff.def | 1 + definitions/mars/grib.eefo.fp.def | 31 ++++++++++++++++++++++++++ definitions/mars/grib.eefo.icp.def | 1 + definitions/mars/grib.eefo.pb.def | 4 ++++ definitions/mars/grib.eefo.pd.def | 3 +++ definitions/mars/grib.eefo.pf.def | 2 ++ definitions/mars/grib.eefo.sot.def | 2 ++ definitions/mars/grib.eefo.sv.def | 1 + definitions/mars/grib.eefo.svar.def | 1 + definitions/mars/grib.eefo.taem.def | 1 + definitions/mars/grib.eefo.taes.def | 1 + definitions/mars/grib.eefo.tu.def | 3 +++ definitions/mars/grib.eehs.cd.def | 3 +++ definitions/mars/grib.eehs.ed.def | 1 + definitions/mars/grib.eehs.em.def | 1 + definitions/mars/grib.eehs.es.def | 1 + definitions/mars/grib.eehs.taem.def | 1 + definitions/mars/grib.eehs.taes.def | 1 + definitions/mars/grib.weef.cv.def | 1 + definitions/mars/grib.weef.efi.def | 1 + definitions/mars/grib.weef.efic.def | 2 ++ definitions/mars/grib.weef.ep.def | 2 ++ definitions/mars/grib.weef.fcmax.def | 2 ++ definitions/mars/grib.weef.fcmean.def | 2 ++ definitions/mars/grib.weef.fcmin.def | 2 ++ definitions/mars/grib.weef.fcstdev.def | 3 +++ definitions/mars/grib.weef.fp.def | 3 +++ definitions/mars/grib.weef.pf.def | 1 + definitions/mars/grib.weef.sot.def | 2 ++ definitions/mars/grib.weeh.cf.def | 2 ++ definitions/mars/grib.weeh.fcmax.def | 5 +++++ definitions/mars/grib.weeh.fcmean.def | 5 +++++ definitions/mars/grib.weeh.fcmin.def | 5 +++++ definitions/mars/grib.weeh.fcstdev.def | 5 +++++ definitions/mars/grib.weeh.pf.def | 3 +++ definitions/mars/grib.wees.cd.def | 3 +++ definitions/mars/grib.wees.ed.def | 1 + definitions/mars/grib.wees.em.def | 1 + definitions/mars/grib.wees.es.def | 1 + 66 files changed, 175 insertions(+) create mode 100644 definitions/mars/grib.eefh.cf.def create mode 100644 definitions/mars/grib.eefh.fcmax.def create mode 100644 definitions/mars/grib.eefh.fcmean.def create mode 100644 definitions/mars/grib.eefh.fcmin.def create mode 100644 definitions/mars/grib.eefh.fcstdev.def create mode 100644 definitions/mars/grib.eefh.ff.def create mode 100644 definitions/mars/grib.eefh.icp.def create mode 100644 definitions/mars/grib.eefh.pf.def create mode 100644 definitions/mars/grib.eefh.tims.def create mode 120000 definitions/mars/grib.eefo.cf.def create mode 100644 definitions/mars/grib.eefo.ci.def create mode 100644 definitions/mars/grib.eefo.cm.def create mode 120000 definitions/mars/grib.eefo.cr.def create mode 100644 definitions/mars/grib.eefo.cs.def create mode 100644 definitions/mars/grib.eefo.cv.def create mode 100644 definitions/mars/grib.eefo.ed.def create mode 120000 definitions/mars/grib.eefo.ef.def create mode 100644 definitions/mars/grib.eefo.efi.def create mode 100644 definitions/mars/grib.eefo.efic.def create mode 100644 definitions/mars/grib.eefo.em.def create mode 100644 definitions/mars/grib.eefo.ep.def create mode 100644 definitions/mars/grib.eefo.es.def create mode 120000 definitions/mars/grib.eefo.fc.def create mode 100644 definitions/mars/grib.eefo.fcmax.def create mode 100644 definitions/mars/grib.eefo.fcmean.def create mode 100644 definitions/mars/grib.eefo.fcmin.def create mode 100644 definitions/mars/grib.eefo.fcstdev.def create mode 100644 definitions/mars/grib.eefo.ff.def create mode 100644 definitions/mars/grib.eefo.fp.def create mode 100644 definitions/mars/grib.eefo.icp.def create mode 100644 definitions/mars/grib.eefo.pb.def create mode 100644 definitions/mars/grib.eefo.pd.def create mode 100644 definitions/mars/grib.eefo.pf.def create mode 100644 definitions/mars/grib.eefo.sot.def create mode 100644 definitions/mars/grib.eefo.sv.def create mode 100644 definitions/mars/grib.eefo.svar.def create mode 100644 definitions/mars/grib.eefo.taem.def create mode 100644 definitions/mars/grib.eefo.taes.def create mode 100644 definitions/mars/grib.eefo.tu.def create mode 100644 definitions/mars/grib.eehs.cd.def create mode 100644 definitions/mars/grib.eehs.ed.def create mode 100644 definitions/mars/grib.eehs.em.def create mode 100644 definitions/mars/grib.eehs.es.def create mode 100644 definitions/mars/grib.eehs.taem.def create mode 100644 definitions/mars/grib.eehs.taes.def create mode 100644 definitions/mars/grib.weef.cv.def create mode 100644 definitions/mars/grib.weef.efi.def create mode 100644 definitions/mars/grib.weef.efic.def create mode 100644 definitions/mars/grib.weef.ep.def create mode 100644 definitions/mars/grib.weef.fcmax.def create mode 100644 definitions/mars/grib.weef.fcmean.def create mode 100644 definitions/mars/grib.weef.fcmin.def create mode 100644 definitions/mars/grib.weef.fcstdev.def create mode 100644 definitions/mars/grib.weef.fp.def create mode 100644 definitions/mars/grib.weef.pf.def create mode 100644 definitions/mars/grib.weef.sot.def create mode 100644 definitions/mars/grib.weeh.cf.def create mode 100644 definitions/mars/grib.weeh.fcmax.def create mode 100644 definitions/mars/grib.weeh.fcmean.def create mode 100644 definitions/mars/grib.weeh.fcmin.def create mode 100644 definitions/mars/grib.weeh.fcstdev.def create mode 100644 definitions/mars/grib.weeh.pf.def create mode 100644 definitions/mars/grib.wees.cd.def create mode 100644 definitions/mars/grib.wees.ed.def create mode 100644 definitions/mars/grib.wees.em.def create mode 100644 definitions/mars/grib.wees.es.def diff --git a/definitions/mars/grib.eefh.cf.def b/definitions/mars/grib.eefh.cf.def new file mode 100644 index 000000000..6e01d7531 --- /dev/null +++ b/definitions/mars/grib.eefh.cf.def @@ -0,0 +1,3 @@ +#assert(local=4) +alias mars.hdate = dataDate; +alias mars.date = referenceDate; diff --git a/definitions/mars/grib.eefh.fcmax.def b/definitions/mars/grib.eefh.fcmax.def new file mode 100644 index 000000000..34f58fae9 --- /dev/null +++ b/definitions/mars/grib.eefh.fcmax.def @@ -0,0 +1,5 @@ +#assert(local=30) +alias mars.step = stepRange; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefh.fcmean.def b/definitions/mars/grib.eefh.fcmean.def new file mode 100644 index 000000000..34f58fae9 --- /dev/null +++ b/definitions/mars/grib.eefh.fcmean.def @@ -0,0 +1,5 @@ +#assert(local=30) +alias mars.step = stepRange; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefh.fcmin.def b/definitions/mars/grib.eefh.fcmin.def new file mode 100644 index 000000000..34f58fae9 --- /dev/null +++ b/definitions/mars/grib.eefh.fcmin.def @@ -0,0 +1,5 @@ +#assert(local=30) +alias mars.step = stepRange; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefh.fcstdev.def b/definitions/mars/grib.eefh.fcstdev.def new file mode 100644 index 000000000..34f58fae9 --- /dev/null +++ b/definitions/mars/grib.eefh.fcstdev.def @@ -0,0 +1,5 @@ +#assert(local=30) +alias mars.step = stepRange; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefh.ff.def b/definitions/mars/grib.eefh.ff.def new file mode 100644 index 000000000..3614de03b --- /dev/null +++ b/definitions/mars/grib.eefh.ff.def @@ -0,0 +1,3 @@ +alias mars.number = perturbationNumber; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; diff --git a/definitions/mars/grib.eefh.icp.def b/definitions/mars/grib.eefh.icp.def new file mode 100644 index 000000000..abf4978bc --- /dev/null +++ b/definitions/mars/grib.eefh.icp.def @@ -0,0 +1,4 @@ +# assert(=4) +alias mars.hdate = dataDate; +alias mars.date = referenceDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefh.pf.def b/definitions/mars/grib.eefh.pf.def new file mode 100644 index 000000000..abf4978bc --- /dev/null +++ b/definitions/mars/grib.eefh.pf.def @@ -0,0 +1,4 @@ +# assert(=4) +alias mars.hdate = dataDate; +alias mars.date = referenceDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefh.tims.def b/definitions/mars/grib.eefh.tims.def new file mode 100644 index 000000000..6e01d7531 --- /dev/null +++ b/definitions/mars/grib.eefh.tims.def @@ -0,0 +1,3 @@ +#assert(local=4) +alias mars.hdate = dataDate; +alias mars.date = referenceDate; diff --git a/definitions/mars/grib.eefo.cf.def b/definitions/mars/grib.eefo.cf.def new file mode 120000 index 000000000..a720ff713 --- /dev/null +++ b/definitions/mars/grib.eefo.cf.def @@ -0,0 +1 @@ +base.def \ No newline at end of file diff --git a/definitions/mars/grib.eefo.ci.def b/definitions/mars/grib.eefo.ci.def new file mode 100644 index 000000000..9e4e203cc --- /dev/null +++ b/definitions/mars/grib.eefo.ci.def @@ -0,0 +1 @@ +alias mars.number = clusterNumber; diff --git a/definitions/mars/grib.eefo.cm.def b/definitions/mars/grib.eefo.cm.def new file mode 100644 index 000000000..9b8810adb --- /dev/null +++ b/definitions/mars/grib.eefo.cm.def @@ -0,0 +1,2 @@ +alias mars.number = clusterNumber; +alias mars.domain = clusteringDomain; diff --git a/definitions/mars/grib.eefo.cr.def b/definitions/mars/grib.eefo.cr.def new file mode 120000 index 000000000..a720ff713 --- /dev/null +++ b/definitions/mars/grib.eefo.cr.def @@ -0,0 +1 @@ +base.def \ No newline at end of file diff --git a/definitions/mars/grib.eefo.cs.def b/definitions/mars/grib.eefo.cs.def new file mode 100644 index 000000000..3afea11e6 --- /dev/null +++ b/definitions/mars/grib.eefo.cs.def @@ -0,0 +1,4 @@ + +alias mars.number = clusterNumber; +alias mars.domain = clusteringDomain; + diff --git a/definitions/mars/grib.eefo.cv.def b/definitions/mars/grib.eefo.cv.def new file mode 100644 index 000000000..939f8df8a --- /dev/null +++ b/definitions/mars/grib.eefo.cv.def @@ -0,0 +1 @@ +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefo.ed.def b/definitions/mars/grib.eefo.ed.def new file mode 100644 index 000000000..939f8df8a --- /dev/null +++ b/definitions/mars/grib.eefo.ed.def @@ -0,0 +1 @@ +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefo.ef.def b/definitions/mars/grib.eefo.ef.def new file mode 120000 index 000000000..a720ff713 --- /dev/null +++ b/definitions/mars/grib.eefo.ef.def @@ -0,0 +1 @@ +base.def \ No newline at end of file diff --git a/definitions/mars/grib.eefo.efi.def b/definitions/mars/grib.eefo.efi.def new file mode 100644 index 000000000..630aea2ea --- /dev/null +++ b/definitions/mars/grib.eefo.efi.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.efic.def b/definitions/mars/grib.eefo.efic.def new file mode 100644 index 000000000..1fd1c4af1 --- /dev/null +++ b/definitions/mars/grib.eefo.efic.def @@ -0,0 +1,2 @@ + +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.em.def b/definitions/mars/grib.eefo.em.def new file mode 100644 index 000000000..d23a251e9 --- /dev/null +++ b/definitions/mars/grib.eefo.em.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.ep.def b/definitions/mars/grib.eefo.ep.def new file mode 100644 index 000000000..d23a251e9 --- /dev/null +++ b/definitions/mars/grib.eefo.ep.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.es.def b/definitions/mars/grib.eefo.es.def new file mode 100644 index 000000000..d23a251e9 --- /dev/null +++ b/definitions/mars/grib.eefo.es.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.fc.def b/definitions/mars/grib.eefo.fc.def new file mode 120000 index 000000000..a720ff713 --- /dev/null +++ b/definitions/mars/grib.eefo.fc.def @@ -0,0 +1 @@ +base.def \ No newline at end of file diff --git a/definitions/mars/grib.eefo.fcmax.def b/definitions/mars/grib.eefo.fcmax.def new file mode 100644 index 000000000..0277986e0 --- /dev/null +++ b/definitions/mars/grib.eefo.fcmax.def @@ -0,0 +1,2 @@ +alias mars.number = perturbationNumber; +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.fcmean.def b/definitions/mars/grib.eefo.fcmean.def new file mode 100644 index 000000000..0277986e0 --- /dev/null +++ b/definitions/mars/grib.eefo.fcmean.def @@ -0,0 +1,2 @@ +alias mars.number = perturbationNumber; +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.fcmin.def b/definitions/mars/grib.eefo.fcmin.def new file mode 100644 index 000000000..0277986e0 --- /dev/null +++ b/definitions/mars/grib.eefo.fcmin.def @@ -0,0 +1,2 @@ +alias mars.number = perturbationNumber; +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.fcstdev.def b/definitions/mars/grib.eefo.fcstdev.def new file mode 100644 index 000000000..0277986e0 --- /dev/null +++ b/definitions/mars/grib.eefo.fcstdev.def @@ -0,0 +1,2 @@ +alias mars.number = perturbationNumber; +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.ff.def b/definitions/mars/grib.eefo.ff.def new file mode 100644 index 000000000..939f8df8a --- /dev/null +++ b/definitions/mars/grib.eefo.ff.def @@ -0,0 +1 @@ +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefo.fp.def b/definitions/mars/grib.eefo.fp.def new file mode 100644 index 000000000..8697a1110 --- /dev/null +++ b/definitions/mars/grib.eefo.fp.def @@ -0,0 +1,31 @@ +#TODO assert(localDefinitionNumber == 5); +# This is obsolete. Here for backward compatibility + + +if(startStep == endStep) +{ + alias mars.step = endStep; +} +else +{ + if((paramId == 131228) && (class == 1)) + { + if(startStep == endStep - 24) + { + alias mars.step = endStep; + } + else + { + transient patch_precip_fp = 24; + meta stepRange g1step_range(P1,P2,timeRangeIndicator,unitOfTimeRange,stepUnits,stepType,patch_precip_fp) : dump,read_only; + alias mars.step = stepRange; + } + } + else + { + alias mars.step = stepRange; + } +} + + +alias mars.number = forecastProbabilityNumber; diff --git a/definitions/mars/grib.eefo.icp.def b/definitions/mars/grib.eefo.icp.def new file mode 100644 index 000000000..939f8df8a --- /dev/null +++ b/definitions/mars/grib.eefo.icp.def @@ -0,0 +1 @@ +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefo.pb.def b/definitions/mars/grib.eefo.pb.def new file mode 100644 index 000000000..5ecc47b04 --- /dev/null +++ b/definitions/mars/grib.eefo.pb.def @@ -0,0 +1,4 @@ +alias mars.step = stepRange; +meta marsQuantile sprintf("%d:%d",perturbationNumber,numberOfForecastsInEnsemble); +alias mars.quantile = marsQuantile; + diff --git a/definitions/mars/grib.eefo.pd.def b/definitions/mars/grib.eefo.pd.def new file mode 100644 index 000000000..a53d82ca0 --- /dev/null +++ b/definitions/mars/grib.eefo.pd.def @@ -0,0 +1,3 @@ +alias mars.step = stepRange; +meta marsQuantile sprintf("%d:%d",perturbationNumber,numberOfForecastsInEnsemble); +alias mars.quantile = marsQuantile; diff --git a/definitions/mars/grib.eefo.pf.def b/definitions/mars/grib.eefo.pf.def new file mode 100644 index 000000000..df5f41102 --- /dev/null +++ b/definitions/mars/grib.eefo.pf.def @@ -0,0 +1,2 @@ +alias mars.step = endStep; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefo.sot.def b/definitions/mars/grib.eefo.sot.def new file mode 100644 index 000000000..8a7bd70c9 --- /dev/null +++ b/definitions/mars/grib.eefo.sot.def @@ -0,0 +1,2 @@ +alias mars.step = stepRange; +alias mars.number = number; diff --git a/definitions/mars/grib.eefo.sv.def b/definitions/mars/grib.eefo.sv.def new file mode 100644 index 000000000..4f93ff8ac --- /dev/null +++ b/definitions/mars/grib.eefo.sv.def @@ -0,0 +1 @@ +alias mars.number = forecastOrSingularVectorNumber; diff --git a/definitions/mars/grib.eefo.svar.def b/definitions/mars/grib.eefo.svar.def new file mode 100644 index 000000000..4f93ff8ac --- /dev/null +++ b/definitions/mars/grib.eefo.svar.def @@ -0,0 +1 @@ +alias mars.number = forecastOrSingularVectorNumber; diff --git a/definitions/mars/grib.eefo.taem.def b/definitions/mars/grib.eefo.taem.def new file mode 100644 index 000000000..a4cef5d68 --- /dev/null +++ b/definitions/mars/grib.eefo.taem.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.taes.def b/definitions/mars/grib.eefo.taes.def new file mode 100644 index 000000000..a4cef5d68 --- /dev/null +++ b/definitions/mars/grib.eefo.taes.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.tu.def b/definitions/mars/grib.eefo.tu.def new file mode 100644 index 000000000..a0f9853c5 --- /dev/null +++ b/definitions/mars/grib.eefo.tu.def @@ -0,0 +1,3 @@ +alias mars.number = tubeNumber; +alias mars.domain = tubeDomain; +alias mars.reference = referenceStep; diff --git a/definitions/mars/grib.eehs.cd.def b/definitions/mars/grib.eehs.cd.def new file mode 100644 index 000000000..05e94a6f1 --- /dev/null +++ b/definitions/mars/grib.eehs.cd.def @@ -0,0 +1,3 @@ +alias mars.step = stepRange; +alias mars.quantile = quantile; + diff --git a/definitions/mars/grib.eehs.ed.def b/definitions/mars/grib.eehs.ed.def new file mode 100644 index 000000000..939f8df8a --- /dev/null +++ b/definitions/mars/grib.eehs.ed.def @@ -0,0 +1 @@ +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eehs.em.def b/definitions/mars/grib.eehs.em.def new file mode 100644 index 000000000..a4cef5d68 --- /dev/null +++ b/definitions/mars/grib.eehs.em.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eehs.es.def b/definitions/mars/grib.eehs.es.def new file mode 100644 index 000000000..a4cef5d68 --- /dev/null +++ b/definitions/mars/grib.eehs.es.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eehs.taem.def b/definitions/mars/grib.eehs.taem.def new file mode 100644 index 000000000..a4cef5d68 --- /dev/null +++ b/definitions/mars/grib.eehs.taem.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eehs.taes.def b/definitions/mars/grib.eehs.taes.def new file mode 100644 index 000000000..a4cef5d68 --- /dev/null +++ b/definitions/mars/grib.eehs.taes.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.weef.cv.def b/definitions/mars/grib.weef.cv.def new file mode 100644 index 000000000..939f8df8a --- /dev/null +++ b/definitions/mars/grib.weef.cv.def @@ -0,0 +1 @@ +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.weef.efi.def b/definitions/mars/grib.weef.efi.def new file mode 100644 index 000000000..630aea2ea --- /dev/null +++ b/definitions/mars/grib.weef.efi.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.weef.efic.def b/definitions/mars/grib.weef.efic.def new file mode 100644 index 000000000..1fd1c4af1 --- /dev/null +++ b/definitions/mars/grib.weef.efic.def @@ -0,0 +1,2 @@ + +alias mars.step = stepRange; diff --git a/definitions/mars/grib.weef.ep.def b/definitions/mars/grib.weef.ep.def new file mode 100644 index 000000000..1fd1c4af1 --- /dev/null +++ b/definitions/mars/grib.weef.ep.def @@ -0,0 +1,2 @@ + +alias mars.step = stepRange; diff --git a/definitions/mars/grib.weef.fcmax.def b/definitions/mars/grib.weef.fcmax.def new file mode 100644 index 000000000..0277986e0 --- /dev/null +++ b/definitions/mars/grib.weef.fcmax.def @@ -0,0 +1,2 @@ +alias mars.number = perturbationNumber; +alias mars.step = stepRange; diff --git a/definitions/mars/grib.weef.fcmean.def b/definitions/mars/grib.weef.fcmean.def new file mode 100644 index 000000000..0277986e0 --- /dev/null +++ b/definitions/mars/grib.weef.fcmean.def @@ -0,0 +1,2 @@ +alias mars.number = perturbationNumber; +alias mars.step = stepRange; diff --git a/definitions/mars/grib.weef.fcmin.def b/definitions/mars/grib.weef.fcmin.def new file mode 100644 index 000000000..0277986e0 --- /dev/null +++ b/definitions/mars/grib.weef.fcmin.def @@ -0,0 +1,2 @@ +alias mars.number = perturbationNumber; +alias mars.step = stepRange; diff --git a/definitions/mars/grib.weef.fcstdev.def b/definitions/mars/grib.weef.fcstdev.def new file mode 100644 index 000000000..c33c88b9b --- /dev/null +++ b/definitions/mars/grib.weef.fcstdev.def @@ -0,0 +1,3 @@ +# TODO: Check me +alias mars.number = perturbationNumber; +alias mars.step = stepRange; diff --git a/definitions/mars/grib.weef.fp.def b/definitions/mars/grib.weef.fp.def new file mode 100644 index 000000000..4c85256b0 --- /dev/null +++ b/definitions/mars/grib.weef.fp.def @@ -0,0 +1,3 @@ +alias mars.number = forecastProbabilityNumber; +alias mars.step = stepRange; + diff --git a/definitions/mars/grib.weef.pf.def b/definitions/mars/grib.weef.pf.def new file mode 100644 index 000000000..939f8df8a --- /dev/null +++ b/definitions/mars/grib.weef.pf.def @@ -0,0 +1 @@ +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.weef.sot.def b/definitions/mars/grib.weef.sot.def new file mode 100644 index 000000000..8a7bd70c9 --- /dev/null +++ b/definitions/mars/grib.weef.sot.def @@ -0,0 +1,2 @@ +alias mars.step = stepRange; +alias mars.number = number; diff --git a/definitions/mars/grib.weeh.cf.def b/definitions/mars/grib.weeh.cf.def new file mode 100644 index 000000000..98a1a81dc --- /dev/null +++ b/definitions/mars/grib.weeh.cf.def @@ -0,0 +1,2 @@ +alias mars.date = referenceDate; +alias mars.hdate = dataDate; diff --git a/definitions/mars/grib.weeh.fcmax.def b/definitions/mars/grib.weeh.fcmax.def new file mode 100644 index 000000000..34f58fae9 --- /dev/null +++ b/definitions/mars/grib.weeh.fcmax.def @@ -0,0 +1,5 @@ +#assert(local=30) +alias mars.step = stepRange; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.weeh.fcmean.def b/definitions/mars/grib.weeh.fcmean.def new file mode 100644 index 000000000..34f58fae9 --- /dev/null +++ b/definitions/mars/grib.weeh.fcmean.def @@ -0,0 +1,5 @@ +#assert(local=30) +alias mars.step = stepRange; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.weeh.fcmin.def b/definitions/mars/grib.weeh.fcmin.def new file mode 100644 index 000000000..34f58fae9 --- /dev/null +++ b/definitions/mars/grib.weeh.fcmin.def @@ -0,0 +1,5 @@ +#assert(local=30) +alias mars.step = stepRange; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.weeh.fcstdev.def b/definitions/mars/grib.weeh.fcstdev.def new file mode 100644 index 000000000..34f58fae9 --- /dev/null +++ b/definitions/mars/grib.weeh.fcstdev.def @@ -0,0 +1,5 @@ +#assert(local=30) +alias mars.step = stepRange; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.weeh.pf.def b/definitions/mars/grib.weeh.pf.def new file mode 100644 index 000000000..3614de03b --- /dev/null +++ b/definitions/mars/grib.weeh.pf.def @@ -0,0 +1,3 @@ +alias mars.number = perturbationNumber; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; diff --git a/definitions/mars/grib.wees.cd.def b/definitions/mars/grib.wees.cd.def new file mode 100644 index 000000000..05e94a6f1 --- /dev/null +++ b/definitions/mars/grib.wees.cd.def @@ -0,0 +1,3 @@ +alias mars.step = stepRange; +alias mars.quantile = quantile; + diff --git a/definitions/mars/grib.wees.ed.def b/definitions/mars/grib.wees.ed.def new file mode 100644 index 000000000..939f8df8a --- /dev/null +++ b/definitions/mars/grib.wees.ed.def @@ -0,0 +1 @@ +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.wees.em.def b/definitions/mars/grib.wees.em.def new file mode 100644 index 000000000..a4cef5d68 --- /dev/null +++ b/definitions/mars/grib.wees.em.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.wees.es.def b/definitions/mars/grib.wees.es.def new file mode 100644 index 000000000..a4cef5d68 --- /dev/null +++ b/definitions/mars/grib.wees.es.def @@ -0,0 +1 @@ +alias mars.step = stepRange; From cc948be671ebd2b4dee66d63c4750480cc739c81 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 10 Jun 2021 16:05:37 +0100 Subject: [PATCH 510/683] ECC-1252: Fortran example: problem compiling grib_read_from_file.f90 --- examples/F90/grib_read_from_file.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/F90/grib_read_from_file.f90 b/examples/F90/grib_read_from_file.f90 index 5a9e2b520..35696f92d 100644 --- a/examples/F90/grib_read_from_file.f90 +++ b/examples/F90/grib_read_from_file.f90 @@ -9,7 +9,7 @@ ! Get message lengths using two different interfaces ! See GRIB-292 ! -program grib_read_from_file +program grib_read_from_file_example use eccodes implicit none character(len=32) :: input_grib_file From cabb2d54bb2de22fef021f4497ac646c7153d4f6 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 10 Jun 2021 21:57:45 +0100 Subject: [PATCH 511/683] Const correctness --- src/grib_bits.c | 4 ++-- src/grib_db.c | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/grib_bits.c b/src/grib_bits.c index f3b770307..c50c5fbf5 100644 --- a/src/grib_bits.c +++ b/src/grib_bits.c @@ -155,7 +155,7 @@ void grib_set_bit(unsigned char* p, long bitp, int val) long grib_decode_signed_longb(const unsigned char* p, long* bitp, long nbits) { - int sign = grib_get_bit(p, *bitp); + const int sign = grib_get_bit(p, *bitp); long val = 0; Assert(nbits <= max_nbits); @@ -172,7 +172,7 @@ long grib_decode_signed_longb(const unsigned char* p, long* bitp, long nbits) int grib_encode_signed_longb(unsigned char* p, long val, long* bitp, long nb) { - short sign = val < 0; + const short sign = val < 0; Assert(nb <= max_nbits); diff --git a/src/grib_db.c b/src/grib_db.c index c2f85fbc4..91b2fa82c 100644 --- a/src/grib_db.c +++ b/src/grib_db.c @@ -252,6 +252,7 @@ static int grib_db_column_copy_from_handle(grib_handle* h, grib_db* db, int i) } /* --------------- grib_db functions ------------------*/ +#if 0 grib_db* grib_db_new_from_files(grib_context* c, char* filenames[], int nfiles, char** keys, int nkeys, int* err) { @@ -269,7 +270,7 @@ grib_db* grib_db_new_from_files(grib_context* c, char* filenames[], } db = grib_db_new_from_file(c, filenames[0], keys, nkeys, err); - if (!db || err != GRIB_SUCCESS) + if (!db || *err != GRIB_SUCCESS) return db; *err = GRIB_SUCCESS; @@ -307,6 +308,7 @@ grib_db* grib_db_new_from_file(grib_context* c, char* filename, return db; } +#endif static grib_db* grib_db_create_from_keys(grib_context* c, char** keys, int nkeys, int* err) { From 584095e8d58a14a508a8eb4b16c66c3411d9d363 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Fri, 11 Jun 2021 12:50:16 +0100 Subject: [PATCH 512/683] add new stream for ocean --- definitions/mars/stream.table | 2 ++ 1 file changed, 2 insertions(+) diff --git a/definitions/mars/stream.table b/definitions/mars/stream.table index 8f6075db7..ad212c29e 100644 --- a/definitions/mars/stream.table +++ b/definitions/mars/stream.table @@ -110,6 +110,8 @@ 1250 ewla Ensemble Wave Long window data Assimilation 1251 wamd Wave monthly means of daily means 1252 gfas Global fire assimilation system +1253 ocda Ocean Data Assimilation +1254 olda Ocean Long window Data Assimilation 2231 cnrm Meteo France climate centre 2232 mpic Max Plank Institute 2233 ukmo UKMO climate centre From 95b0e291bdf6e6c3414a2709d6d378331cfc801f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 11 Jun 2021 12:51:40 +0100 Subject: [PATCH 513/683] GRIB2: Prevent error when setting localDefinitionNumber --- src/grib_accessor_class_local_definition.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/grib_accessor_class_local_definition.c b/src/grib_accessor_class_local_definition.c index 1fa55e09c..bd27b4e3d 100644 --- a/src/grib_accessor_class_local_definition.c +++ b/src/grib_accessor_class_local_definition.c @@ -333,8 +333,8 @@ static int pack_long(grib_accessor* a, const long* val, size_t* len) break; default: - grib_context_log(a->context, GRIB_LOG_ERROR, "Invalid localDefinitionNumber %d", localDefinitionNumber); - return GRIB_ENCODING_ERROR; + grib_context_log(a->context, GRIB_LOG_WARNING, "Set localDefinitionNumber: keeping the same PDTN"); + productDefinitionTemplateNumberNew = productDefinitionTemplateNumber; break; } From 02b25b085f494b8b041e312303c01c4b3eb1f84c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 11 Jun 2021 14:26:02 +0100 Subject: [PATCH 514/683] ECC-1253: GRIB2: Error when setting localDefinitionNumber (centre=98) --- src/grib_accessor_class_local_definition.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/grib_accessor_class_local_definition.c b/src/grib_accessor_class_local_definition.c index 1fa55e09c..a4ea50565 100644 --- a/src/grib_accessor_class_local_definition.c +++ b/src/grib_accessor_class_local_definition.c @@ -333,8 +333,14 @@ static int pack_long(grib_accessor* a, const long* val, size_t* len) break; default: - grib_context_log(a->context, GRIB_LOG_ERROR, "Invalid localDefinitionNumber %d", localDefinitionNumber); +#ifdef DEBUG + /* In test & development mode, fail so we remember to adjust PDTN */ + grib_context_log(a->context, GRIB_LOG_ERROR, + "grib_accessor_local_definition: Invalid localDefinitionNumber %d", localDefinitionNumber); return GRIB_ENCODING_ERROR; +#endif + /* ECC-1253: Do not fail in operations. Leave PDTN as is */ + productDefinitionTemplateNumberNew = productDefinitionTemplateNumber; break; } From c442ffcd7aeedf28ebbc1079e117664be0736b75 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 14 Jun 2021 17:29:47 +0100 Subject: [PATCH 515/683] Testing: add test for accessor g1number_of_coded_values_sh_simple --- tests/grib_change_packing.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/grib_change_packing.sh b/tests/grib_change_packing.sh index ed45eccfd..246a63bbf 100755 --- a/tests/grib_change_packing.sh +++ b/tests/grib_change_packing.sh @@ -61,6 +61,7 @@ test_packing() { # ------------ input=${data_dir}/spherical_model_level.grib2 output=`${tools_dir}/grib_set -r -s packingType=spectral_simple $input $temp 2>&1` +grib_check_key_equals $temp packingType 'spectral_simple' # Check no error was posted i.e. output string is empty [ -z "$output" ] res1=`${tools_dir}/grib_get '-F%.1f' -p avg,enorm $input` @@ -84,4 +85,13 @@ stats2=`${tools_dir}/grib_get -F%.2f -p skew,kurt $temp` test_packing $grib1 $packing1 test_packing $grib2 $packing2 + +# spectral_simple for GRIB1 +# ------------------------- +input=${data_dir}/spherical_model_level.grib1 +${tools_dir}/grib_set -r -s packingType=spectral_simple $input $temp +grib_check_key_equals $temp packingType 'spectral_simple' +${tools_dir}/grib_ls -p numberOfCodedValues $temp + + rm -f $temp From 84e0d8b3682bed9d7261f1acb4deb82190ee5efc Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 15 Jun 2021 15:18:39 +0100 Subject: [PATCH 516/683] WMO GRIB: official release of v27 --- definitions/grib2/boot.def | 4 ++-- definitions/grib2/tables/27/4.2.0.19.table | 4 ++-- definitions/grib2/tables/27/4.2.10.2.table | 2 +- definitions/grib2/tables/27/4.2.2.4.table | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/definitions/grib2/boot.def b/definitions/grib2/boot.def index efa946828..d20772ace 100644 --- a/definitions/grib2/boot.def +++ b/definitions/grib2/boot.def @@ -8,8 +8,8 @@ # # This gets updated twice a year by WMO. -# See http://www.wmo.int/pages/prog/www/WMOCodes/WMO306_vI2/LatestVERSION/LatestVERSION.html -constant tablesVersionLatestOfficial = 26 : edition_specific; +# See https://community.wmo.int/activity-areas/wmo-codes/manual-codes/latest-version +constant tablesVersionLatestOfficial = 27 : edition_specific; # If this is different from the official version, then it is the pre-operational version constant tablesVersionLatest = 27 : edition_specific; diff --git a/definitions/grib2/tables/27/4.2.0.19.table b/definitions/grib2/tables/27/4.2.0.19.table index 3ffe0c124..80f4d1173 100644 --- a/definitions/grib2/tables/27/4.2.0.19.table +++ b/definitions/grib2/tables/27/4.2.0.19.table @@ -37,8 +37,8 @@ 35 35 Visibility through blowing snow (m) 36 36 Presence of snow squalls (Code table 4.222) 37 37 Icing severity (Code table 4.228) -38 38 Sky transparency index (Code Table 4.214) -39 39 Seeing index (Code Table 4.214) +38 38 Sky transparency index (Code table 4.214) +39 39 Seeing index (Code table 4.214) 40 40 Snow level (m) # 41-191 Reserved # 192-254 Reserved for local use diff --git a/definitions/grib2/tables/27/4.2.10.2.table b/definitions/grib2/tables/27/4.2.10.2.table index 3b4c07d99..42a380e7d 100644 --- a/definitions/grib2/tables/27/4.2.10.2.table +++ b/definitions/grib2/tables/27/4.2.10.2.table @@ -12,7 +12,7 @@ 10 10 Zonal vector component of vertically integrated ice internal pressure (Pa m) 11 11 Meridional vector component of vertically integrated ice internal pressure (Pa m) 12 12 Compressive ice strength (N/m) -13 13 Snow temperature (over sea-ice) (K) +13 13 Snow temperature (over sea ice) (K) # 14-191 Reserved # 192-254 Reserved for local use 255 255 Missing diff --git a/definitions/grib2/tables/27/4.2.2.4.table b/definitions/grib2/tables/27/4.2.2.4.table index 03edc8999..3421cbf3b 100644 --- a/definitions/grib2/tables/27/4.2.2.4.table +++ b/definitions/grib2/tables/27/4.2.2.4.table @@ -15,10 +15,10 @@ 13 13 Drought factor (as defined by the Australian forest service ) (Numeric) 14 14 Rate of spread (as defined by the Australian forest service ) (m/s) 15 15 Fire danger index (as defined by the Australian forest service ) (Numeric) -16 16 Spread component (as defined by the U.S Forest Service National Fire Danger Rating System) (Numeric) -17 17 Burning index (as defined by the U.S Forest Service National Fire Danger Rating System) (Numeric) -18 18 Ignition component (as defined by the U.S Forest Service National Fire Danger Rating System) (%) -19 19 Energy release component (as defined by the U.S Forest Service National Fire Danger Rating System) (Joule/m2) +16 16 Spread component (as defined by the US Forest Service National Fire Danger Rating System) (Numeric) +17 17 Burning index (as defined by the US Forest Service National Fire Danger Rating System) (Numeric) +18 18 Ignition component (as defined by the US Forest Service National Fire Danger Rating System) (%) +19 19 Energy release component (as defined by the US Forest Service National Fire Danger Rating System) (Joule/m2) # 20-191 Reserved # 192-254 Reserved for local use 255 255 Missing From af9092b726c753e03e5e80ba320f9174214de37c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 15 Jun 2021 16:34:20 +0100 Subject: [PATCH 517/683] Hotfix release version 2.22.1 --- .appveyor.yml | 2 +- CMakeLists.txt | 2 +- version.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index fa6559448..136b15dd7 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -2,7 +2,7 @@ # general configuration # #---------------------------------# -version: 2.22.0-{build}-{branch} +version: 2.22.1-{build}-{branch} branches: only: diff --git a/CMakeLists.txt b/CMakeLists.txt index 7368a09e1..903030ff4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ cmake_minimum_required( VERSION 3.12 FATAL_ERROR ) find_package( ecbuild 3.4 REQUIRED HINTS ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild) # Initialise project -project( eccodes VERSION 2.22.0 LANGUAGES C ) +project( eccodes VERSION 2.22.1 LANGUAGES C ) ############################################################################### # system checks needed for eccodes_config.h and some options like MEMFS diff --git a/version.sh b/version.sh index 784e2eedf..61a77f9de 100644 --- a/version.sh +++ b/version.sh @@ -4,7 +4,7 @@ PACKAGE_NAME='eccodes' # Package version ECCODES_MAJOR_VERSION=2 ECCODES_MINOR_VERSION=22 -ECCODES_REVISION_VERSION=0 +ECCODES_REVISION_VERSION=1 ECCODES_CURRENT=1 ECCODES_REVISION=0 From 0ba1bbccd23e26107ffc030206345fc81672b960 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 15 Jun 2021 16:58:04 +0100 Subject: [PATCH 518/683] ECC-1251: MARS streams: Add config files for new ENS-Extended range streams --- definitions/mars/grib.eefh.cf.def | 3 +++ definitions/mars/grib.eefh.fcmax.def | 5 +++++ definitions/mars/grib.eefh.fcmean.def | 5 +++++ definitions/mars/grib.eefh.fcmin.def | 5 +++++ definitions/mars/grib.eefh.fcstdev.def | 5 +++++ definitions/mars/grib.eefh.ff.def | 3 +++ definitions/mars/grib.eefh.icp.def | 4 ++++ definitions/mars/grib.eefh.pf.def | 4 ++++ definitions/mars/grib.eefh.tims.def | 3 +++ definitions/mars/grib.eefo.cf.def | 1 + definitions/mars/grib.eefo.ci.def | 1 + definitions/mars/grib.eefo.cm.def | 2 ++ definitions/mars/grib.eefo.cr.def | 1 + definitions/mars/grib.eefo.cs.def | 4 ++++ definitions/mars/grib.eefo.cv.def | 1 + definitions/mars/grib.eefo.ed.def | 1 + definitions/mars/grib.eefo.ef.def | 1 + definitions/mars/grib.eefo.efi.def | 1 + definitions/mars/grib.eefo.efic.def | 2 ++ definitions/mars/grib.eefo.em.def | 1 + definitions/mars/grib.eefo.ep.def | 1 + definitions/mars/grib.eefo.es.def | 1 + definitions/mars/grib.eefo.fc.def | 1 + definitions/mars/grib.eefo.fcmax.def | 2 ++ definitions/mars/grib.eefo.fcmean.def | 2 ++ definitions/mars/grib.eefo.fcmin.def | 2 ++ definitions/mars/grib.eefo.fcstdev.def | 2 ++ definitions/mars/grib.eefo.ff.def | 1 + definitions/mars/grib.eefo.fp.def | 31 ++++++++++++++++++++++++++ definitions/mars/grib.eefo.icp.def | 1 + definitions/mars/grib.eefo.pb.def | 4 ++++ definitions/mars/grib.eefo.pd.def | 3 +++ definitions/mars/grib.eefo.pf.def | 2 ++ definitions/mars/grib.eefo.sot.def | 2 ++ definitions/mars/grib.eefo.sv.def | 1 + definitions/mars/grib.eefo.svar.def | 1 + definitions/mars/grib.eefo.taem.def | 1 + definitions/mars/grib.eefo.taes.def | 1 + definitions/mars/grib.eefo.tu.def | 3 +++ definitions/mars/grib.eehs.cd.def | 3 +++ definitions/mars/grib.eehs.ed.def | 1 + definitions/mars/grib.eehs.em.def | 1 + definitions/mars/grib.eehs.es.def | 1 + definitions/mars/grib.eehs.taem.def | 1 + definitions/mars/grib.eehs.taes.def | 1 + definitions/mars/grib.weef.cv.def | 1 + definitions/mars/grib.weef.efi.def | 1 + definitions/mars/grib.weef.efic.def | 2 ++ definitions/mars/grib.weef.ep.def | 2 ++ definitions/mars/grib.weef.fcmax.def | 2 ++ definitions/mars/grib.weef.fcmean.def | 2 ++ definitions/mars/grib.weef.fcmin.def | 2 ++ definitions/mars/grib.weef.fcstdev.def | 3 +++ definitions/mars/grib.weef.fp.def | 3 +++ definitions/mars/grib.weef.pf.def | 1 + definitions/mars/grib.weef.sot.def | 2 ++ definitions/mars/grib.weeh.cf.def | 2 ++ definitions/mars/grib.weeh.fcmax.def | 5 +++++ definitions/mars/grib.weeh.fcmean.def | 5 +++++ definitions/mars/grib.weeh.fcmin.def | 5 +++++ definitions/mars/grib.weeh.fcstdev.def | 5 +++++ definitions/mars/grib.weeh.pf.def | 3 +++ definitions/mars/grib.wees.cd.def | 3 +++ definitions/mars/grib.wees.ed.def | 1 + definitions/mars/grib.wees.em.def | 1 + definitions/mars/grib.wees.es.def | 1 + 66 files changed, 175 insertions(+) create mode 100644 definitions/mars/grib.eefh.cf.def create mode 100644 definitions/mars/grib.eefh.fcmax.def create mode 100644 definitions/mars/grib.eefh.fcmean.def create mode 100644 definitions/mars/grib.eefh.fcmin.def create mode 100644 definitions/mars/grib.eefh.fcstdev.def create mode 100644 definitions/mars/grib.eefh.ff.def create mode 100644 definitions/mars/grib.eefh.icp.def create mode 100644 definitions/mars/grib.eefh.pf.def create mode 100644 definitions/mars/grib.eefh.tims.def create mode 120000 definitions/mars/grib.eefo.cf.def create mode 100644 definitions/mars/grib.eefo.ci.def create mode 100644 definitions/mars/grib.eefo.cm.def create mode 120000 definitions/mars/grib.eefo.cr.def create mode 100644 definitions/mars/grib.eefo.cs.def create mode 100644 definitions/mars/grib.eefo.cv.def create mode 100644 definitions/mars/grib.eefo.ed.def create mode 120000 definitions/mars/grib.eefo.ef.def create mode 100644 definitions/mars/grib.eefo.efi.def create mode 100644 definitions/mars/grib.eefo.efic.def create mode 100644 definitions/mars/grib.eefo.em.def create mode 100644 definitions/mars/grib.eefo.ep.def create mode 100644 definitions/mars/grib.eefo.es.def create mode 120000 definitions/mars/grib.eefo.fc.def create mode 100644 definitions/mars/grib.eefo.fcmax.def create mode 100644 definitions/mars/grib.eefo.fcmean.def create mode 100644 definitions/mars/grib.eefo.fcmin.def create mode 100644 definitions/mars/grib.eefo.fcstdev.def create mode 100644 definitions/mars/grib.eefo.ff.def create mode 100644 definitions/mars/grib.eefo.fp.def create mode 100644 definitions/mars/grib.eefo.icp.def create mode 100644 definitions/mars/grib.eefo.pb.def create mode 100644 definitions/mars/grib.eefo.pd.def create mode 100644 definitions/mars/grib.eefo.pf.def create mode 100644 definitions/mars/grib.eefo.sot.def create mode 100644 definitions/mars/grib.eefo.sv.def create mode 100644 definitions/mars/grib.eefo.svar.def create mode 100644 definitions/mars/grib.eefo.taem.def create mode 100644 definitions/mars/grib.eefo.taes.def create mode 100644 definitions/mars/grib.eefo.tu.def create mode 100644 definitions/mars/grib.eehs.cd.def create mode 100644 definitions/mars/grib.eehs.ed.def create mode 100644 definitions/mars/grib.eehs.em.def create mode 100644 definitions/mars/grib.eehs.es.def create mode 100644 definitions/mars/grib.eehs.taem.def create mode 100644 definitions/mars/grib.eehs.taes.def create mode 100644 definitions/mars/grib.weef.cv.def create mode 100644 definitions/mars/grib.weef.efi.def create mode 100644 definitions/mars/grib.weef.efic.def create mode 100644 definitions/mars/grib.weef.ep.def create mode 100644 definitions/mars/grib.weef.fcmax.def create mode 100644 definitions/mars/grib.weef.fcmean.def create mode 100644 definitions/mars/grib.weef.fcmin.def create mode 100644 definitions/mars/grib.weef.fcstdev.def create mode 100644 definitions/mars/grib.weef.fp.def create mode 100644 definitions/mars/grib.weef.pf.def create mode 100644 definitions/mars/grib.weef.sot.def create mode 100644 definitions/mars/grib.weeh.cf.def create mode 100644 definitions/mars/grib.weeh.fcmax.def create mode 100644 definitions/mars/grib.weeh.fcmean.def create mode 100644 definitions/mars/grib.weeh.fcmin.def create mode 100644 definitions/mars/grib.weeh.fcstdev.def create mode 100644 definitions/mars/grib.weeh.pf.def create mode 100644 definitions/mars/grib.wees.cd.def create mode 100644 definitions/mars/grib.wees.ed.def create mode 100644 definitions/mars/grib.wees.em.def create mode 100644 definitions/mars/grib.wees.es.def diff --git a/definitions/mars/grib.eefh.cf.def b/definitions/mars/grib.eefh.cf.def new file mode 100644 index 000000000..6e01d7531 --- /dev/null +++ b/definitions/mars/grib.eefh.cf.def @@ -0,0 +1,3 @@ +#assert(local=4) +alias mars.hdate = dataDate; +alias mars.date = referenceDate; diff --git a/definitions/mars/grib.eefh.fcmax.def b/definitions/mars/grib.eefh.fcmax.def new file mode 100644 index 000000000..34f58fae9 --- /dev/null +++ b/definitions/mars/grib.eefh.fcmax.def @@ -0,0 +1,5 @@ +#assert(local=30) +alias mars.step = stepRange; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefh.fcmean.def b/definitions/mars/grib.eefh.fcmean.def new file mode 100644 index 000000000..34f58fae9 --- /dev/null +++ b/definitions/mars/grib.eefh.fcmean.def @@ -0,0 +1,5 @@ +#assert(local=30) +alias mars.step = stepRange; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefh.fcmin.def b/definitions/mars/grib.eefh.fcmin.def new file mode 100644 index 000000000..34f58fae9 --- /dev/null +++ b/definitions/mars/grib.eefh.fcmin.def @@ -0,0 +1,5 @@ +#assert(local=30) +alias mars.step = stepRange; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefh.fcstdev.def b/definitions/mars/grib.eefh.fcstdev.def new file mode 100644 index 000000000..34f58fae9 --- /dev/null +++ b/definitions/mars/grib.eefh.fcstdev.def @@ -0,0 +1,5 @@ +#assert(local=30) +alias mars.step = stepRange; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefh.ff.def b/definitions/mars/grib.eefh.ff.def new file mode 100644 index 000000000..3614de03b --- /dev/null +++ b/definitions/mars/grib.eefh.ff.def @@ -0,0 +1,3 @@ +alias mars.number = perturbationNumber; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; diff --git a/definitions/mars/grib.eefh.icp.def b/definitions/mars/grib.eefh.icp.def new file mode 100644 index 000000000..abf4978bc --- /dev/null +++ b/definitions/mars/grib.eefh.icp.def @@ -0,0 +1,4 @@ +# assert(=4) +alias mars.hdate = dataDate; +alias mars.date = referenceDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefh.pf.def b/definitions/mars/grib.eefh.pf.def new file mode 100644 index 000000000..abf4978bc --- /dev/null +++ b/definitions/mars/grib.eefh.pf.def @@ -0,0 +1,4 @@ +# assert(=4) +alias mars.hdate = dataDate; +alias mars.date = referenceDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefh.tims.def b/definitions/mars/grib.eefh.tims.def new file mode 100644 index 000000000..6e01d7531 --- /dev/null +++ b/definitions/mars/grib.eefh.tims.def @@ -0,0 +1,3 @@ +#assert(local=4) +alias mars.hdate = dataDate; +alias mars.date = referenceDate; diff --git a/definitions/mars/grib.eefo.cf.def b/definitions/mars/grib.eefo.cf.def new file mode 120000 index 000000000..a720ff713 --- /dev/null +++ b/definitions/mars/grib.eefo.cf.def @@ -0,0 +1 @@ +base.def \ No newline at end of file diff --git a/definitions/mars/grib.eefo.ci.def b/definitions/mars/grib.eefo.ci.def new file mode 100644 index 000000000..9e4e203cc --- /dev/null +++ b/definitions/mars/grib.eefo.ci.def @@ -0,0 +1 @@ +alias mars.number = clusterNumber; diff --git a/definitions/mars/grib.eefo.cm.def b/definitions/mars/grib.eefo.cm.def new file mode 100644 index 000000000..9b8810adb --- /dev/null +++ b/definitions/mars/grib.eefo.cm.def @@ -0,0 +1,2 @@ +alias mars.number = clusterNumber; +alias mars.domain = clusteringDomain; diff --git a/definitions/mars/grib.eefo.cr.def b/definitions/mars/grib.eefo.cr.def new file mode 120000 index 000000000..a720ff713 --- /dev/null +++ b/definitions/mars/grib.eefo.cr.def @@ -0,0 +1 @@ +base.def \ No newline at end of file diff --git a/definitions/mars/grib.eefo.cs.def b/definitions/mars/grib.eefo.cs.def new file mode 100644 index 000000000..3afea11e6 --- /dev/null +++ b/definitions/mars/grib.eefo.cs.def @@ -0,0 +1,4 @@ + +alias mars.number = clusterNumber; +alias mars.domain = clusteringDomain; + diff --git a/definitions/mars/grib.eefo.cv.def b/definitions/mars/grib.eefo.cv.def new file mode 100644 index 000000000..939f8df8a --- /dev/null +++ b/definitions/mars/grib.eefo.cv.def @@ -0,0 +1 @@ +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefo.ed.def b/definitions/mars/grib.eefo.ed.def new file mode 100644 index 000000000..939f8df8a --- /dev/null +++ b/definitions/mars/grib.eefo.ed.def @@ -0,0 +1 @@ +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefo.ef.def b/definitions/mars/grib.eefo.ef.def new file mode 120000 index 000000000..a720ff713 --- /dev/null +++ b/definitions/mars/grib.eefo.ef.def @@ -0,0 +1 @@ +base.def \ No newline at end of file diff --git a/definitions/mars/grib.eefo.efi.def b/definitions/mars/grib.eefo.efi.def new file mode 100644 index 000000000..630aea2ea --- /dev/null +++ b/definitions/mars/grib.eefo.efi.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.efic.def b/definitions/mars/grib.eefo.efic.def new file mode 100644 index 000000000..1fd1c4af1 --- /dev/null +++ b/definitions/mars/grib.eefo.efic.def @@ -0,0 +1,2 @@ + +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.em.def b/definitions/mars/grib.eefo.em.def new file mode 100644 index 000000000..d23a251e9 --- /dev/null +++ b/definitions/mars/grib.eefo.em.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.ep.def b/definitions/mars/grib.eefo.ep.def new file mode 100644 index 000000000..d23a251e9 --- /dev/null +++ b/definitions/mars/grib.eefo.ep.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.es.def b/definitions/mars/grib.eefo.es.def new file mode 100644 index 000000000..d23a251e9 --- /dev/null +++ b/definitions/mars/grib.eefo.es.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.fc.def b/definitions/mars/grib.eefo.fc.def new file mode 120000 index 000000000..a720ff713 --- /dev/null +++ b/definitions/mars/grib.eefo.fc.def @@ -0,0 +1 @@ +base.def \ No newline at end of file diff --git a/definitions/mars/grib.eefo.fcmax.def b/definitions/mars/grib.eefo.fcmax.def new file mode 100644 index 000000000..0277986e0 --- /dev/null +++ b/definitions/mars/grib.eefo.fcmax.def @@ -0,0 +1,2 @@ +alias mars.number = perturbationNumber; +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.fcmean.def b/definitions/mars/grib.eefo.fcmean.def new file mode 100644 index 000000000..0277986e0 --- /dev/null +++ b/definitions/mars/grib.eefo.fcmean.def @@ -0,0 +1,2 @@ +alias mars.number = perturbationNumber; +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.fcmin.def b/definitions/mars/grib.eefo.fcmin.def new file mode 100644 index 000000000..0277986e0 --- /dev/null +++ b/definitions/mars/grib.eefo.fcmin.def @@ -0,0 +1,2 @@ +alias mars.number = perturbationNumber; +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.fcstdev.def b/definitions/mars/grib.eefo.fcstdev.def new file mode 100644 index 000000000..0277986e0 --- /dev/null +++ b/definitions/mars/grib.eefo.fcstdev.def @@ -0,0 +1,2 @@ +alias mars.number = perturbationNumber; +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.ff.def b/definitions/mars/grib.eefo.ff.def new file mode 100644 index 000000000..939f8df8a --- /dev/null +++ b/definitions/mars/grib.eefo.ff.def @@ -0,0 +1 @@ +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefo.fp.def b/definitions/mars/grib.eefo.fp.def new file mode 100644 index 000000000..8697a1110 --- /dev/null +++ b/definitions/mars/grib.eefo.fp.def @@ -0,0 +1,31 @@ +#TODO assert(localDefinitionNumber == 5); +# This is obsolete. Here for backward compatibility + + +if(startStep == endStep) +{ + alias mars.step = endStep; +} +else +{ + if((paramId == 131228) && (class == 1)) + { + if(startStep == endStep - 24) + { + alias mars.step = endStep; + } + else + { + transient patch_precip_fp = 24; + meta stepRange g1step_range(P1,P2,timeRangeIndicator,unitOfTimeRange,stepUnits,stepType,patch_precip_fp) : dump,read_only; + alias mars.step = stepRange; + } + } + else + { + alias mars.step = stepRange; + } +} + + +alias mars.number = forecastProbabilityNumber; diff --git a/definitions/mars/grib.eefo.icp.def b/definitions/mars/grib.eefo.icp.def new file mode 100644 index 000000000..939f8df8a --- /dev/null +++ b/definitions/mars/grib.eefo.icp.def @@ -0,0 +1 @@ +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefo.pb.def b/definitions/mars/grib.eefo.pb.def new file mode 100644 index 000000000..5ecc47b04 --- /dev/null +++ b/definitions/mars/grib.eefo.pb.def @@ -0,0 +1,4 @@ +alias mars.step = stepRange; +meta marsQuantile sprintf("%d:%d",perturbationNumber,numberOfForecastsInEnsemble); +alias mars.quantile = marsQuantile; + diff --git a/definitions/mars/grib.eefo.pd.def b/definitions/mars/grib.eefo.pd.def new file mode 100644 index 000000000..a53d82ca0 --- /dev/null +++ b/definitions/mars/grib.eefo.pd.def @@ -0,0 +1,3 @@ +alias mars.step = stepRange; +meta marsQuantile sprintf("%d:%d",perturbationNumber,numberOfForecastsInEnsemble); +alias mars.quantile = marsQuantile; diff --git a/definitions/mars/grib.eefo.pf.def b/definitions/mars/grib.eefo.pf.def new file mode 100644 index 000000000..df5f41102 --- /dev/null +++ b/definitions/mars/grib.eefo.pf.def @@ -0,0 +1,2 @@ +alias mars.step = endStep; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eefo.sot.def b/definitions/mars/grib.eefo.sot.def new file mode 100644 index 000000000..8a7bd70c9 --- /dev/null +++ b/definitions/mars/grib.eefo.sot.def @@ -0,0 +1,2 @@ +alias mars.step = stepRange; +alias mars.number = number; diff --git a/definitions/mars/grib.eefo.sv.def b/definitions/mars/grib.eefo.sv.def new file mode 100644 index 000000000..4f93ff8ac --- /dev/null +++ b/definitions/mars/grib.eefo.sv.def @@ -0,0 +1 @@ +alias mars.number = forecastOrSingularVectorNumber; diff --git a/definitions/mars/grib.eefo.svar.def b/definitions/mars/grib.eefo.svar.def new file mode 100644 index 000000000..4f93ff8ac --- /dev/null +++ b/definitions/mars/grib.eefo.svar.def @@ -0,0 +1 @@ +alias mars.number = forecastOrSingularVectorNumber; diff --git a/definitions/mars/grib.eefo.taem.def b/definitions/mars/grib.eefo.taem.def new file mode 100644 index 000000000..a4cef5d68 --- /dev/null +++ b/definitions/mars/grib.eefo.taem.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.taes.def b/definitions/mars/grib.eefo.taes.def new file mode 100644 index 000000000..a4cef5d68 --- /dev/null +++ b/definitions/mars/grib.eefo.taes.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eefo.tu.def b/definitions/mars/grib.eefo.tu.def new file mode 100644 index 000000000..a0f9853c5 --- /dev/null +++ b/definitions/mars/grib.eefo.tu.def @@ -0,0 +1,3 @@ +alias mars.number = tubeNumber; +alias mars.domain = tubeDomain; +alias mars.reference = referenceStep; diff --git a/definitions/mars/grib.eehs.cd.def b/definitions/mars/grib.eehs.cd.def new file mode 100644 index 000000000..05e94a6f1 --- /dev/null +++ b/definitions/mars/grib.eehs.cd.def @@ -0,0 +1,3 @@ +alias mars.step = stepRange; +alias mars.quantile = quantile; + diff --git a/definitions/mars/grib.eehs.ed.def b/definitions/mars/grib.eehs.ed.def new file mode 100644 index 000000000..939f8df8a --- /dev/null +++ b/definitions/mars/grib.eehs.ed.def @@ -0,0 +1 @@ +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.eehs.em.def b/definitions/mars/grib.eehs.em.def new file mode 100644 index 000000000..a4cef5d68 --- /dev/null +++ b/definitions/mars/grib.eehs.em.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eehs.es.def b/definitions/mars/grib.eehs.es.def new file mode 100644 index 000000000..a4cef5d68 --- /dev/null +++ b/definitions/mars/grib.eehs.es.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eehs.taem.def b/definitions/mars/grib.eehs.taem.def new file mode 100644 index 000000000..a4cef5d68 --- /dev/null +++ b/definitions/mars/grib.eehs.taem.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.eehs.taes.def b/definitions/mars/grib.eehs.taes.def new file mode 100644 index 000000000..a4cef5d68 --- /dev/null +++ b/definitions/mars/grib.eehs.taes.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.weef.cv.def b/definitions/mars/grib.weef.cv.def new file mode 100644 index 000000000..939f8df8a --- /dev/null +++ b/definitions/mars/grib.weef.cv.def @@ -0,0 +1 @@ +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.weef.efi.def b/definitions/mars/grib.weef.efi.def new file mode 100644 index 000000000..630aea2ea --- /dev/null +++ b/definitions/mars/grib.weef.efi.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.weef.efic.def b/definitions/mars/grib.weef.efic.def new file mode 100644 index 000000000..1fd1c4af1 --- /dev/null +++ b/definitions/mars/grib.weef.efic.def @@ -0,0 +1,2 @@ + +alias mars.step = stepRange; diff --git a/definitions/mars/grib.weef.ep.def b/definitions/mars/grib.weef.ep.def new file mode 100644 index 000000000..1fd1c4af1 --- /dev/null +++ b/definitions/mars/grib.weef.ep.def @@ -0,0 +1,2 @@ + +alias mars.step = stepRange; diff --git a/definitions/mars/grib.weef.fcmax.def b/definitions/mars/grib.weef.fcmax.def new file mode 100644 index 000000000..0277986e0 --- /dev/null +++ b/definitions/mars/grib.weef.fcmax.def @@ -0,0 +1,2 @@ +alias mars.number = perturbationNumber; +alias mars.step = stepRange; diff --git a/definitions/mars/grib.weef.fcmean.def b/definitions/mars/grib.weef.fcmean.def new file mode 100644 index 000000000..0277986e0 --- /dev/null +++ b/definitions/mars/grib.weef.fcmean.def @@ -0,0 +1,2 @@ +alias mars.number = perturbationNumber; +alias mars.step = stepRange; diff --git a/definitions/mars/grib.weef.fcmin.def b/definitions/mars/grib.weef.fcmin.def new file mode 100644 index 000000000..0277986e0 --- /dev/null +++ b/definitions/mars/grib.weef.fcmin.def @@ -0,0 +1,2 @@ +alias mars.number = perturbationNumber; +alias mars.step = stepRange; diff --git a/definitions/mars/grib.weef.fcstdev.def b/definitions/mars/grib.weef.fcstdev.def new file mode 100644 index 000000000..c33c88b9b --- /dev/null +++ b/definitions/mars/grib.weef.fcstdev.def @@ -0,0 +1,3 @@ +# TODO: Check me +alias mars.number = perturbationNumber; +alias mars.step = stepRange; diff --git a/definitions/mars/grib.weef.fp.def b/definitions/mars/grib.weef.fp.def new file mode 100644 index 000000000..4c85256b0 --- /dev/null +++ b/definitions/mars/grib.weef.fp.def @@ -0,0 +1,3 @@ +alias mars.number = forecastProbabilityNumber; +alias mars.step = stepRange; + diff --git a/definitions/mars/grib.weef.pf.def b/definitions/mars/grib.weef.pf.def new file mode 100644 index 000000000..939f8df8a --- /dev/null +++ b/definitions/mars/grib.weef.pf.def @@ -0,0 +1 @@ +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.weef.sot.def b/definitions/mars/grib.weef.sot.def new file mode 100644 index 000000000..8a7bd70c9 --- /dev/null +++ b/definitions/mars/grib.weef.sot.def @@ -0,0 +1,2 @@ +alias mars.step = stepRange; +alias mars.number = number; diff --git a/definitions/mars/grib.weeh.cf.def b/definitions/mars/grib.weeh.cf.def new file mode 100644 index 000000000..98a1a81dc --- /dev/null +++ b/definitions/mars/grib.weeh.cf.def @@ -0,0 +1,2 @@ +alias mars.date = referenceDate; +alias mars.hdate = dataDate; diff --git a/definitions/mars/grib.weeh.fcmax.def b/definitions/mars/grib.weeh.fcmax.def new file mode 100644 index 000000000..34f58fae9 --- /dev/null +++ b/definitions/mars/grib.weeh.fcmax.def @@ -0,0 +1,5 @@ +#assert(local=30) +alias mars.step = stepRange; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.weeh.fcmean.def b/definitions/mars/grib.weeh.fcmean.def new file mode 100644 index 000000000..34f58fae9 --- /dev/null +++ b/definitions/mars/grib.weeh.fcmean.def @@ -0,0 +1,5 @@ +#assert(local=30) +alias mars.step = stepRange; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.weeh.fcmin.def b/definitions/mars/grib.weeh.fcmin.def new file mode 100644 index 000000000..34f58fae9 --- /dev/null +++ b/definitions/mars/grib.weeh.fcmin.def @@ -0,0 +1,5 @@ +#assert(local=30) +alias mars.step = stepRange; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.weeh.fcstdev.def b/definitions/mars/grib.weeh.fcstdev.def new file mode 100644 index 000000000..34f58fae9 --- /dev/null +++ b/definitions/mars/grib.weeh.fcstdev.def @@ -0,0 +1,5 @@ +#assert(local=30) +alias mars.step = stepRange; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.weeh.pf.def b/definitions/mars/grib.weeh.pf.def new file mode 100644 index 000000000..3614de03b --- /dev/null +++ b/definitions/mars/grib.weeh.pf.def @@ -0,0 +1,3 @@ +alias mars.number = perturbationNumber; +alias mars.date = referenceDate; +alias mars.hdate = dataDate; diff --git a/definitions/mars/grib.wees.cd.def b/definitions/mars/grib.wees.cd.def new file mode 100644 index 000000000..05e94a6f1 --- /dev/null +++ b/definitions/mars/grib.wees.cd.def @@ -0,0 +1,3 @@ +alias mars.step = stepRange; +alias mars.quantile = quantile; + diff --git a/definitions/mars/grib.wees.ed.def b/definitions/mars/grib.wees.ed.def new file mode 100644 index 000000000..939f8df8a --- /dev/null +++ b/definitions/mars/grib.wees.ed.def @@ -0,0 +1 @@ +alias mars.number = perturbationNumber; diff --git a/definitions/mars/grib.wees.em.def b/definitions/mars/grib.wees.em.def new file mode 100644 index 000000000..a4cef5d68 --- /dev/null +++ b/definitions/mars/grib.wees.em.def @@ -0,0 +1 @@ +alias mars.step = stepRange; diff --git a/definitions/mars/grib.wees.es.def b/definitions/mars/grib.wees.es.def new file mode 100644 index 000000000..a4cef5d68 --- /dev/null +++ b/definitions/mars/grib.wees.es.def @@ -0,0 +1 @@ +alias mars.step = stepRange; From 95bb4f9037816cbfbb8de16be159920f329db46c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 15 Jun 2021 17:05:50 +0100 Subject: [PATCH 519/683] ECC-1245: GRIB: Add typeOfPostProcessing for 'geff' to efas_post_proc --- definitions/grib2/local.98.41.def | 33 ++++++++++++++++--------------- tests/grib_efas.sh | 5 +++++ 2 files changed, 22 insertions(+), 16 deletions(-) diff --git a/definitions/grib2/local.98.41.def b/definitions/grib2/local.98.41.def index d502299f2..b15b31cb1 100644 --- a/definitions/grib2/local.98.41.def +++ b/definitions/grib2/local.98.41.def @@ -40,22 +40,23 @@ transient lsdate_bug = 1: hidden; # See ECC-707 # Note: the key typeOfPostProcessing is in the PDTNs 70, 71, 72 and 73 concept efas_post_proc { - "unknown" = { typeOfPostProcessing=0 ; } - "lisflood" = { typeOfPostProcessing=1 ; } - "lisflood_eric" = { typeOfPostProcessing=2 ; } - "lisflood_season" = { typeOfPostProcessing=3 ; } - "lisflood_merged" = { typeOfPostProcessing=4 ; } - "lisflood_global" = { typeOfPostProcessing=5 ; } - "ericha" = { typeOfPostProcessing=51 ; } - "htessel_lisflood" = { typeOfPostProcessing=101; } - "htessel_eric" = { typeOfPostProcessing=102; } - "htessel_camaflood" = { typeOfPostProcessing=103; } - "epic" = { typeOfPostProcessing=152; } - "jules_mrm" = { typeOfPostProcessing=201; } - "htessel_mrm" = { typeOfPostProcessing=202; } - "mhm_mrm" = { typeOfPostProcessing=203; } - "pcrg_mrm" = { typeOfPostProcessing=204; } - "meteogrid" = { typeOfPostProcessing=205; } + "unknown" = { typeOfPostProcessing = 0; } + "lisflood" = { typeOfPostProcessing = 1; } + "lisflood_eric" = { typeOfPostProcessing = 2; } + "lisflood_season" = { typeOfPostProcessing = 3; } + "lisflood_merged" = { typeOfPostProcessing = 4; } + "lisflood_global" = { typeOfPostProcessing = 5; } + "geff" = { typeOfPostProcessing = 10; } + "ericha" = { typeOfPostProcessing = 51; } + "htessel_lisflood" = { typeOfPostProcessing = 101; } + "htessel_eric" = { typeOfPostProcessing = 102; } + "htessel_camaflood" = { typeOfPostProcessing = 103; } + "epic" = { typeOfPostProcessing = 152; } + "jules_mrm" = { typeOfPostProcessing = 201; } + "htessel_mrm" = { typeOfPostProcessing = 202; } + "mhm_mrm" = { typeOfPostProcessing = 203; } + "pcrg_mrm" = { typeOfPostProcessing = 204; } + "meteogrid" = { typeOfPostProcessing = 205; } "unknown" = { dummy = 1; } } : hidden; diff --git a/tests/grib_efas.sh b/tests/grib_efas.sh index f1ef8452b..2e60766e5 100755 --- a/tests/grib_efas.sh +++ b/tests/grib_efas.sh @@ -50,6 +50,11 @@ grib_check_key_equals $temp2 is_efas,productDefinitionTemplateNumber,typeOfStati grib_check_key_equals $temp2 mars.origin 'ecmf' grib_check_key_equals $temp2 mars.model 'lisflood' +${tools_dir}/grib_set -s \ + setLocalDefinition=1,localDefinitionNumber=41,type=fc,inputOriginatingCentre=ecmf,typeOfPostProcessing=10 \ + $temp1 $temp2 +grib_check_key_equals $temp2 mars.model 'geff' + # Parameter tests ${tools_dir}/grib_set -s paramId=260267 $temp2 $temp3 grib_check_key_equals $temp3 paramId,is_efas,lengthOfTimeRange '260267 1 6' From c6c26dd8226a12d4cf9ad741f0a83d0b065b52fa Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 15 Jun 2021 17:11:01 +0100 Subject: [PATCH 520/683] ECC-1249: GRIB: New CAMS parameters required for ADS --- .../grib1/localConcepts/ecmf/cfName.def | 12 +- .../grib1/localConcepts/ecmf/cfVarName.def | 20 +-- definitions/grib1/localConcepts/ecmf/name.def | 40 ++--- .../grib1/localConcepts/ecmf/paramId.def | 20 +-- .../grib1/localConcepts/ecmf/shortName.def | 20 +-- .../grib1/localConcepts/ecmf/units.def | 20 +-- definitions/grib2/cfName.def | 48 ++++++ definitions/grib2/cfVarName.def | 162 +++++++++++++----- .../grib2/localConcepts/ecmf/cfName.def | 36 ---- .../localConcepts/ecmf/cfName.legacy.def | 36 ++++ .../grib2/localConcepts/ecmf/cfVarName.def | 60 ------- .../localConcepts/ecmf/cfVarName.legacy.def | 60 +++++++ definitions/grib2/localConcepts/ecmf/name.def | 60 ------- .../grib2/localConcepts/ecmf/name.legacy.def | 60 +++++++ .../grib2/localConcepts/ecmf/paramId.def | 60 ------- .../localConcepts/ecmf/paramId.legacy.def | 60 +++++++ .../grib2/localConcepts/ecmf/shortName.def | 60 ------- .../localConcepts/ecmf/shortName.legacy.def | 60 +++++++ .../grib2/localConcepts/ecmf/units.def | 60 ------- .../grib2/localConcepts/ecmf/units.legacy.def | 60 +++++++ definitions/grib2/name.def | 84 +++++++++ definitions/grib2/paramId.def | 84 +++++++++ definitions/grib2/shortName.def | 84 +++++++++ definitions/grib2/units.def | 84 +++++++++ 24 files changed, 909 insertions(+), 441 deletions(-) diff --git a/definitions/grib1/localConcepts/ecmf/cfName.def b/definitions/grib1/localConcepts/ecmf/cfName.def index 4a062bc47..552d275fc 100644 --- a/definitions/grib1/localConcepts/ecmf/cfName.def +++ b/definitions/grib1/localConcepts/ecmf/cfName.def @@ -739,12 +739,12 @@ table2Version = 217 ; indicatorOfParameter = 18 ; } -#Ammonia +#Ammonia mass mixing ratio 'mass_fraction_of_ammonia_in_air' = { table2Version = 217 ; indicatorOfParameter = 19 ; } -#Nitrogen monoxide +#Nitrogen monoxide mass mixing ratio 'mass_fraction_of_nitrogen_monoxide_in_air' = { table2Version = 217 ; indicatorOfParameter = 27 ; @@ -979,17 +979,17 @@ table2Version = 210 ; indicatorOfParameter = 66 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio 'mass_fraction_of_nitrogen_dioxide_in_air' = { table2Version = 210 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio 'mass_fraction_of_sulfur_dioxide_in_air' = { table2Version = 210 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio 'mass_fraction_of_carbon_monoxide_in_air' = { table2Version = 210 ; indicatorOfParameter = 123 ; @@ -1029,7 +1029,7 @@ table2Version = 210 ; indicatorOfParameter = 183 ; } -#GEMS Ozone +#Ozone mass mixing ratio (full chemistry scheme) 'mass_fraction_of_ozone_in_air' = { table2Version = 210 ; indicatorOfParameter = 203 ; diff --git a/definitions/grib1/localConcepts/ecmf/cfVarName.def b/definitions/grib1/localConcepts/ecmf/cfVarName.def index a195e9835..c071ab69d 100644 --- a/definitions/grib1/localConcepts/ecmf/cfVarName.def +++ b/definitions/grib1/localConcepts/ecmf/cfVarName.def @@ -8534,7 +8534,7 @@ table2Version = 217 ; indicatorOfParameter = 18 ; } -#Ammonia +#Ammonia mass mixing ratio 'nh3' = { table2Version = 217 ; indicatorOfParameter = 19 ; @@ -8569,7 +8569,7 @@ table2Version = 217 ; indicatorOfParameter = 26 ; } -#Nitrogen monoxide +#Nitrogen monoxide mass mixing ratio 'no' = { table2Version = 217 ; indicatorOfParameter = 27 ; @@ -16124,17 +16124,17 @@ table2Version = 210 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio 'no2' = { table2Version = 210 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio 'so2' = { table2Version = 210 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio 'co' = { table2Version = 210 ; indicatorOfParameter = 123 ; @@ -16379,7 +16379,7 @@ table2Version = 210 ; indicatorOfParameter = 185 ; } -#GEMS Ozone +#Ozone mass mixing ratio (full chemistry scheme) 'go3' = { table2Version = 210 ; indicatorOfParameter = 203 ; @@ -16824,17 +16824,17 @@ table2Version = 211 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio difference 'no2diff' = { table2Version = 211 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio difference 'so2diff' = { table2Version = 211 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio difference 'codiff' = { table2Version = 211 ; indicatorOfParameter = 123 ; @@ -17079,7 +17079,7 @@ table2Version = 211 ; indicatorOfParameter = 185 ; } -#GEMS Ozone +#Ozone mass mixing ratio difference (full chemistry scheme) 'go3diff' = { table2Version = 211 ; indicatorOfParameter = 203 ; diff --git a/definitions/grib1/localConcepts/ecmf/name.def b/definitions/grib1/localConcepts/ecmf/name.def index 309abf00a..3e9d7de37 100644 --- a/definitions/grib1/localConcepts/ecmf/name.def +++ b/definitions/grib1/localConcepts/ecmf/name.def @@ -8534,8 +8534,8 @@ table2Version = 217 ; indicatorOfParameter = 18 ; } -#Ammonia -'Ammonia' = { +#Ammonia mass mixing ratio +'Ammonia mass mixing ratio' = { table2Version = 217 ; indicatorOfParameter = 19 ; } @@ -8569,8 +8569,8 @@ table2Version = 217 ; indicatorOfParameter = 26 ; } -#Nitrogen monoxide -'Nitrogen monoxide' = { +#Nitrogen monoxide mass mixing ratio +'Nitrogen monoxide mass mixing ratio' = { table2Version = 217 ; indicatorOfParameter = 27 ; } @@ -16124,18 +16124,18 @@ table2Version = 210 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide -'Nitrogen dioxide' = { +#Nitrogen dioxide mass mixing ratio +'Nitrogen dioxide mass mixing ratio' = { table2Version = 210 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide -'Sulphur dioxide' = { +#Sulphur dioxide mass mixing ratio +'Sulphur dioxide mass mixing ratio' = { table2Version = 210 ; indicatorOfParameter = 122 ; } -#Carbon monoxide -'Carbon monoxide' = { +#Carbon monoxide mass mixing ratio +'Carbon monoxide mass mixing ratio' = { table2Version = 210 ; indicatorOfParameter = 123 ; } @@ -16379,8 +16379,8 @@ table2Version = 210 ; indicatorOfParameter = 185 ; } -#GEMS Ozone -'GEMS Ozone' = { +#Ozone mass mixing ratio (full chemistry scheme) +'Ozone mass mixing ratio (full chemistry scheme)' = { table2Version = 210 ; indicatorOfParameter = 203 ; } @@ -16824,18 +16824,18 @@ table2Version = 211 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide -'Nitrogen dioxide' = { +#Nitrogen dioxide mass mixing ratio difference +'Nitrogen dioxide mass mixing ratio difference' = { table2Version = 211 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide -'Sulphur dioxide' = { +#Sulphur dioxide mass mixing ratio difference +'Sulphur dioxide mass mixing ratio difference' = { table2Version = 211 ; indicatorOfParameter = 122 ; } -#Carbon monoxide -'Carbon monoxide' = { +#Carbon monoxide mass mixing ratio difference +'Carbon monoxide mass mixing ratio difference' = { table2Version = 211 ; indicatorOfParameter = 123 ; } @@ -17079,8 +17079,8 @@ table2Version = 211 ; indicatorOfParameter = 185 ; } -#GEMS Ozone -'GEMS Ozone' = { +#Ozone mass mixing ratio difference (full chemistry scheme) +'Ozone mass mixing ratio difference (full chemistry scheme)' = { table2Version = 211 ; indicatorOfParameter = 203 ; } diff --git a/definitions/grib1/localConcepts/ecmf/paramId.def b/definitions/grib1/localConcepts/ecmf/paramId.def index ac2723118..dcfb5eaf1 100644 --- a/definitions/grib1/localConcepts/ecmf/paramId.def +++ b/definitions/grib1/localConcepts/ecmf/paramId.def @@ -8534,7 +8534,7 @@ table2Version = 217 ; indicatorOfParameter = 18 ; } -#Ammonia +#Ammonia mass mixing ratio '217019' = { table2Version = 217 ; indicatorOfParameter = 19 ; @@ -8569,7 +8569,7 @@ table2Version = 217 ; indicatorOfParameter = 26 ; } -#Nitrogen monoxide +#Nitrogen monoxide mass mixing ratio '217027' = { table2Version = 217 ; indicatorOfParameter = 27 ; @@ -16124,17 +16124,17 @@ table2Version = 210 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio '210121' = { table2Version = 210 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio '210122' = { table2Version = 210 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio '210123' = { table2Version = 210 ; indicatorOfParameter = 123 ; @@ -16379,7 +16379,7 @@ table2Version = 210 ; indicatorOfParameter = 185 ; } -#GEMS Ozone +#Ozone mass mixing ratio (full chemistry scheme) '210203' = { table2Version = 210 ; indicatorOfParameter = 203 ; @@ -16824,17 +16824,17 @@ table2Version = 211 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio difference '211121' = { table2Version = 211 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio difference '211122' = { table2Version = 211 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio difference '211123' = { table2Version = 211 ; indicatorOfParameter = 123 ; @@ -17079,7 +17079,7 @@ table2Version = 211 ; indicatorOfParameter = 185 ; } -#GEMS Ozone +#Ozone mass mixing ratio difference (full chemistry scheme) '211203' = { table2Version = 211 ; indicatorOfParameter = 203 ; diff --git a/definitions/grib1/localConcepts/ecmf/shortName.def b/definitions/grib1/localConcepts/ecmf/shortName.def index 993b1ce67..cf056153a 100644 --- a/definitions/grib1/localConcepts/ecmf/shortName.def +++ b/definitions/grib1/localConcepts/ecmf/shortName.def @@ -8534,7 +8534,7 @@ table2Version = 217 ; indicatorOfParameter = 18 ; } -#Ammonia +#Ammonia mass mixing ratio 'nh3' = { table2Version = 217 ; indicatorOfParameter = 19 ; @@ -8569,7 +8569,7 @@ table2Version = 217 ; indicatorOfParameter = 26 ; } -#Nitrogen monoxide +#Nitrogen monoxide mass mixing ratio 'no' = { table2Version = 217 ; indicatorOfParameter = 27 ; @@ -16124,17 +16124,17 @@ table2Version = 210 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio 'no2' = { table2Version = 210 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio 'so2' = { table2Version = 210 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio 'co' = { table2Version = 210 ; indicatorOfParameter = 123 ; @@ -16379,7 +16379,7 @@ table2Version = 210 ; indicatorOfParameter = 185 ; } -#GEMS Ozone +#Ozone mass mixing ratio (full chemistry scheme) 'go3' = { table2Version = 210 ; indicatorOfParameter = 203 ; @@ -16824,17 +16824,17 @@ table2Version = 211 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio difference 'no2diff' = { table2Version = 211 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio difference 'so2diff' = { table2Version = 211 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio difference 'codiff' = { table2Version = 211 ; indicatorOfParameter = 123 ; @@ -17079,7 +17079,7 @@ table2Version = 211 ; indicatorOfParameter = 185 ; } -#GEMS Ozone +#Ozone mass mixing ratio difference (full chemistry scheme) 'go3diff' = { table2Version = 211 ; indicatorOfParameter = 203 ; diff --git a/definitions/grib1/localConcepts/ecmf/units.def b/definitions/grib1/localConcepts/ecmf/units.def index 04b8d7981..a1d9c10c9 100644 --- a/definitions/grib1/localConcepts/ecmf/units.def +++ b/definitions/grib1/localConcepts/ecmf/units.def @@ -8534,7 +8534,7 @@ table2Version = 217 ; indicatorOfParameter = 18 ; } -#Ammonia +#Ammonia mass mixing ratio 'kg kg**-1' = { table2Version = 217 ; indicatorOfParameter = 19 ; @@ -8569,7 +8569,7 @@ table2Version = 217 ; indicatorOfParameter = 26 ; } -#Nitrogen monoxide +#Nitrogen monoxide mass mixing ratio 'kg kg**-1' = { table2Version = 217 ; indicatorOfParameter = 27 ; @@ -16124,17 +16124,17 @@ table2Version = 210 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio 'kg kg**-1' = { table2Version = 210 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio 'kg kg**-1' = { table2Version = 210 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio 'kg kg**-1' = { table2Version = 210 ; indicatorOfParameter = 123 ; @@ -16379,7 +16379,7 @@ table2Version = 210 ; indicatorOfParameter = 185 ; } -#GEMS Ozone +#Ozone mass mixing ratio (full chemistry scheme) 'kg kg**-1' = { table2Version = 210 ; indicatorOfParameter = 203 ; @@ -16824,17 +16824,17 @@ table2Version = 211 ; indicatorOfParameter = 100 ; } -#Nitrogen dioxide +#Nitrogen dioxide mass mixing ratio difference 'kg kg**-1' = { table2Version = 211 ; indicatorOfParameter = 121 ; } -#Sulphur dioxide +#Sulphur dioxide mass mixing ratio difference 'kg kg**-1' = { table2Version = 211 ; indicatorOfParameter = 122 ; } -#Carbon monoxide +#Carbon monoxide mass mixing ratio difference 'kg kg**-1' = { table2Version = 211 ; indicatorOfParameter = 123 ; @@ -17079,7 +17079,7 @@ table2Version = 211 ; indicatorOfParameter = 185 ; } -#GEMS Ozone +#Ozone mass mixing ratio difference (full chemistry scheme) 'kg kg**-1' = { table2Version = 211 ; indicatorOfParameter = 203 ; diff --git a/definitions/grib2/cfName.def b/definitions/grib2/cfName.def index 9e55439c1..46d203b12 100644 --- a/definitions/grib2/cfName.def +++ b/definitions/grib2/cfName.def @@ -87,6 +87,22 @@ scaledValueOfFirstFixedSurface = 1 ; scaleFactorOfFirstFixedSurface = 2 ; } +#Ammonia mass mixing ratio +'mass_fraction_of_ammonia_in_air' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 9 ; + is_chemical = 1 ; + } +#Nitrogen monoxide mass mixing ratio +'mass_fraction_of_nitrogen_monoxide_in_air' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 11 ; + is_chemical = 1 ; + } #Eastward sea water velocity 'eastward_sea_water_velocity' = { discipline = 10 ; @@ -131,6 +147,38 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Nitrogen dioxide mass mixing ratio +'mass_fraction_of_nitrogen_dioxide_in_air' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + is_chemical = 1 ; + } +#Sulphur dioxide mass mixing ratio +'mass_fraction_of_sulfur_dioxide_in_air' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + is_chemical = 1 ; + } +#Carbon monoxide mass mixing ratio +'mass_fraction_of_carbon_monoxide_in_air' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + is_chemical = 1 ; + } +#Ozone mass mixing ratio (full chemistry scheme) +'mass_fraction_of_ozone_in_air' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + is_chemical = 1 ; + } #Geopotential 'geopotential' = { discipline = 0 ; diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 3575fa303..ed457d2fb 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -4,96 +4,96 @@ discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - productDefinitionTemplateNumber = 9 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 1 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 5 mm 'tpg5' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 5 ; - probabilityType = 3 ; - typeOfFirstFixedSurface = 1 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 40 mm 'tpg40' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; - typeOfFirstFixedSurface = 1 ; scaledValueOfLowerLimit = 40 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 60 mm 'tpg60' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 60 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 60 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 80 mm 'tpg80' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 80 ; - typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; scaleFactorOfLowerLimit = 0 ; - productDefinitionTemplateNumber = 9 ; + probabilityType = 3 ; } #Total precipitation of at least 100 mm 'tpg100' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - typeOfStatisticalProcessing = 1 ; - scaledValueOfLowerLimit = 100 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 100 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 150 mm 'tpg150' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaledValueOfLowerLimit = 150 ; typeOfFirstFixedSurface = 1 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 150 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 200 mm 'tpg200' = { discipline = 0 ; parameterCategory = 1 ; parameterNumber = 52 ; - scaledValueOfLowerLimit = 200 ; - probabilityType = 3 ; - scaleFactorOfLowerLimit = 0 ; typeOfFirstFixedSurface = 1 ; productDefinitionTemplateNumber = 9 ; typeOfStatisticalProcessing = 1 ; + scaledValueOfLowerLimit = 200 ; + scaleFactorOfLowerLimit = 0 ; + probabilityType = 3 ; } #Total precipitation of at least 300 mm 'tpg300' = { @@ -101,11 +101,11 @@ parameterCategory = 1 ; parameterNumber = 52 ; typeOfFirstFixedSurface = 1 ; + productDefinitionTemplateNumber = 9 ; + typeOfStatisticalProcessing = 1 ; scaledValueOfLowerLimit = 3 ; scaleFactorOfLowerLimit = -2 ; probabilityType = 3 ; - typeOfStatisticalProcessing = 1 ; - productDefinitionTemplateNumber = 9 ; } #Wind speed 'ws' = { @@ -118,20 +118,20 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - is_uerra = 1 ; + typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 100 ; scaleFactorOfFirstFixedSurface = 0 ; - typeOfFirstFixedSurface = 103 ; + is_uerra = 1 ; } #Wind speed 'ws' = { discipline = 0 ; parameterCategory = 2 ; parameterNumber = 1 ; - scaledValueOfFirstFixedSurface = 200 ; - is_uerra = 1 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 200 ; scaleFactorOfFirstFixedSurface = 0 ; + is_uerra = 1 ; } #Unbalanced component of temperature 'uctp' = { @@ -746,12 +746,28 @@ parameterCategory = 20 ; parameterNumber = 102 ; scaleFactorOfFirstWavelength = 9 ; - scaledValueOfFirstWavelength = 550 ; - scaleFactorOfSecondWavelength = missing() ; - scaledValueOfSecondWavelength = missing() ; aerosolType = 62012 ; - is_aerosol_optical = 1 ; + scaledValueOfFirstWavelength = 550 ; + scaledValueOfSecondWavelength = missing() ; typeOfWavelengthInterval = 11 ; + scaleFactorOfSecondWavelength = missing() ; + is_aerosol_optical = 1 ; + } +#Ammonia mass mixing ratio +'nh3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 9 ; + is_chemical = 1 ; + } +#Nitrogen monoxide mass mixing ratio +'no' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 11 ; + is_chemical = 1 ; } #Aromatic peroxy radical mass mixing ratio 'AROO2' = { @@ -798,8 +814,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 2 ; - is_chemical = 1 ; constituentType = 60058 ; + is_chemical = 1 ; } #Hydroperoxy aldehydes type 2 mass mixing ratio 'HPALD' = { @@ -839,8 +855,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 60029 ; + is_chemical = 1 ; } #Column integrated mass density of Ethyne 'tc_C2H2' = { @@ -879,8 +895,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 1 ; - is_chemical = 1 ; constituentType = 60058 ; + is_chemical = 1 ; } #Column integrated mass density of Hydroperoxy aldehydes type 2 'tc_HPALD2' = { @@ -952,8 +968,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 3 ; - is_chemical = 1 ; constituentType = 10006 ; + is_chemical = 1 ; } #Atmosphere emission mass flux of Hydroperoxy aldehydes type 1 'e_HPALD1' = { @@ -1025,8 +1041,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 10055 ; + is_chemical = 1 ; } #Dry deposition velocity of Hydrogen cyanide 'dv_HCN' = { @@ -1065,8 +1081,8 @@ discipline = 0 ; parameterCategory = 20 ; parameterNumber = 15 ; - is_chemical = 1 ; constituentType = 60057 ; + is_chemical = 1 ; } #-10 degrees C isothermal level (atm) 'degm10l' = { @@ -2471,6 +2487,74 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Nitrogen dioxide mass mixing ratio +'no2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + is_chemical = 1 ; + } +#Sulphur dioxide mass mixing ratio +'so2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + is_chemical = 1 ; + } +#Carbon monoxide mass mixing ratio +'co' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + is_chemical = 1 ; + } +#Ozone mass mixing ratio (full chemistry scheme) +'go3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + is_chemical = 1 ; + } +#Nitrogen dioxide mass mixing ratio difference +'no2diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Sulphur dioxide mass mixing ratio difference +'so2diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Carbon monoxide mass mixing ratio difference +'codiff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Ozone mass mixing ratio difference (full chemistry scheme) +'go3diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } #Lake total depth 'dl' = { discipline = 1 ; diff --git a/definitions/grib2/localConcepts/ecmf/cfName.def b/definitions/grib2/localConcepts/ecmf/cfName.def index 713d4ea17..f352417a1 100644 --- a/definitions/grib2/localConcepts/ecmf/cfName.def +++ b/definitions/grib2/localConcepts/ecmf/cfName.def @@ -139,18 +139,6 @@ parameterCategory = 217 ; parameterNumber = 18 ; } -#Ammonia -'mass_fraction_of_ammonia_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } -#Nitrogen monoxide -'mass_fraction_of_nitrogen_monoxide_in_air' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } #Hydroxyl radical 'mass_fraction_of_hydroxyl_radical_in_air' = { discipline = 192 ; @@ -559,24 +547,6 @@ parameterCategory = 210 ; parameterNumber = 66 ; } -#Nitrogen dioxide -'mass_fraction_of_nitrogen_dioxide_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'mass_fraction_of_sulfur_dioxide_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'mass_fraction_of_carbon_monoxide_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } #Formaldehyde 'mass_fraction_of_formaldehyde_in_air' = { discipline = 192 ; @@ -619,12 +589,6 @@ parameterCategory = 210 ; parameterNumber = 183 ; } -#GEMS Ozone -'mass_fraction_of_ozone_in_air' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'atmosphere_mass_content_of_ozone' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/cfName.legacy.def b/definitions/grib2/localConcepts/ecmf/cfName.legacy.def index 2882a4746..84902772f 100644 --- a/definitions/grib2/localConcepts/ecmf/cfName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/cfName.legacy.def @@ -52,3 +52,39 @@ parameterCategory = 128 ; parameterNumber = 238 ; } +#GEMS Ozone +'mass_fraction_of_ozone_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; +} +#Carbon monoxide +'mass_fraction_of_carbon_monoxide_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; +} +#Nitrogen dioxide +'mass_fraction_of_nitrogen_dioxide_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; +} +#Sulphur dioxide +'mass_fraction_of_sulfur_dioxide_in_air' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; +} +#Ammonia +'mass_fraction_of_ammonia_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; +} +#Nitrogen monoxide +'mass_fraction_of_nitrogen_monoxide_in_air' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.def b/definitions/grib2/localConcepts/ecmf/cfVarName.def index daf37cc26..357b8215a 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.def @@ -8425,12 +8425,6 @@ parameterCategory = 217 ; parameterNumber = 18 ; } -#Ammonia -'nh3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } #Sulfate 'so4' = { discipline = 192 ; @@ -8467,12 +8461,6 @@ parameterCategory = 217 ; parameterNumber = 26 ; } -#Nitrogen monoxide -'no' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } #Hydroperoxy radical 'ho2' = { discipline = 192 ; @@ -20789,24 +20777,6 @@ parameterCategory = 210 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'no2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'so2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'co' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } #Formaldehyde 'hcho' = { discipline = 192 ; @@ -21095,12 +21065,6 @@ parameterCategory = 210 ; parameterNumber = 185 ; } -#GEMS Ozone -'go3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'gtco3' = { discipline = 192 ; @@ -21557,24 +21521,6 @@ parameterCategory = 211 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'no2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'so2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'codiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } #Formaldehyde 'hchodiff' = { discipline = 192 ; @@ -21863,12 +21809,6 @@ parameterCategory = 211 ; parameterNumber = 185 ; } -#GEMS Ozone -'go3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'gtco3diff' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def index 7480e3818..7fa066543 100644 --- a/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/cfVarName.legacy.def @@ -244,3 +244,63 @@ parameterCategory = 228 ; parameterNumber = 7 ; } +#GEMS Ozone +'go3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; +} +#GEMS Ozone +'go3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; +} +#Carbon monoxide +'co' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; +} +#Carbon monoxide +'codiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; +} +#Nitrogen dioxide +'no2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; +} +#Nitrogen dioxide +'no2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; +} +#Sulphur dioxide +'so2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; +} +#Sulphur dioxide +'so2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; +} +#Ammonia +'nh3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; +} +#Nitrogen monoxide +'no' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/name.def b/definitions/grib2/localConcepts/ecmf/name.def index 8db89a90f..7a2fc3fc0 100644 --- a/definitions/grib2/localConcepts/ecmf/name.def +++ b/definitions/grib2/localConcepts/ecmf/name.def @@ -8425,12 +8425,6 @@ parameterCategory = 217 ; parameterNumber = 18 ; } -#Ammonia -'Ammonia' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } #Sulfate 'Sulfate' = { discipline = 192 ; @@ -8467,12 +8461,6 @@ parameterCategory = 217 ; parameterNumber = 26 ; } -#Nitrogen monoxide -'Nitrogen monoxide' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } #Hydroperoxy radical 'Hydroperoxy radical' = { discipline = 192 ; @@ -20789,24 +20777,6 @@ parameterCategory = 210 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'Nitrogen dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'Sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'Carbon monoxide' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } #Formaldehyde 'Formaldehyde' = { discipline = 192 ; @@ -21095,12 +21065,6 @@ parameterCategory = 210 ; parameterNumber = 185 ; } -#GEMS Ozone -'GEMS Ozone' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'GEMS Total column ozone' = { discipline = 192 ; @@ -21557,24 +21521,6 @@ parameterCategory = 211 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'Nitrogen dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'Sulphur dioxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'Carbon monoxide' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } #Formaldehyde 'Formaldehyde' = { discipline = 192 ; @@ -21863,12 +21809,6 @@ parameterCategory = 211 ; parameterNumber = 185 ; } -#GEMS Ozone -'GEMS Ozone' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'GEMS Total column ozone' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/name.legacy.def b/definitions/grib2/localConcepts/ecmf/name.legacy.def index a12ea46b8..9ec90276f 100644 --- a/definitions/grib2/localConcepts/ecmf/name.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/name.legacy.def @@ -244,3 +244,63 @@ parameterCategory = 228 ; parameterNumber = 7 ; } +#GEMS Ozone +'Ozone mass mixing ratio (full chemistry scheme)' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; +} +#GEMS Ozone +'Ozone mass mixing ratio difference (full chemistry scheme)' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; +} +#Carbon monoxide +'Carbon monoxide mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; +} +#Carbon monoxide +'Carbon monoxide mass mixing ratio difference' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; +} +#Nitrogen dioxide +'Nitrogen dioxide mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; +} +#Nitrogen dioxide +'Nitrogen dioxide mass mixing ratio difference' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; +} +#Sulphur dioxide +'Sulphur dioxide mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; +} +#Sulphur dioxide +'Sulphur dioxide mass mixing ratio difference' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; +} +#Ammonia +'Ammonia mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; +} +#Nitrogen monoxide +'Nitrogen monoxide mass mixing ratio' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/paramId.def b/definitions/grib2/localConcepts/ecmf/paramId.def index 9549a56de..71b13be64 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.def @@ -8425,12 +8425,6 @@ parameterCategory = 217 ; parameterNumber = 18 ; } -#Ammonia -'217019' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } #Sulfate '217020' = { discipline = 192 ; @@ -8467,12 +8461,6 @@ parameterCategory = 217 ; parameterNumber = 26 ; } -#Nitrogen monoxide -'217027' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } #Hydroperoxy radical '217028' = { discipline = 192 ; @@ -20789,24 +20777,6 @@ parameterCategory = 210 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'210121' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'210122' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'210123' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } #Formaldehyde '210124' = { discipline = 192 ; @@ -21095,12 +21065,6 @@ parameterCategory = 210 ; parameterNumber = 185 ; } -#GEMS Ozone -'210203' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } #GEMS Total column ozone '210206' = { discipline = 192 ; @@ -21557,24 +21521,6 @@ parameterCategory = 211 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'211121' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'211122' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'211123' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } #Formaldehyde '211124' = { discipline = 192 ; @@ -21863,12 +21809,6 @@ parameterCategory = 211 ; parameterNumber = 185 ; } -#GEMS Ozone -'211203' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } #GEMS Total column ozone '211206' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def index 5ac473991..1cea787c0 100644 --- a/definitions/grib2/localConcepts/ecmf/paramId.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/paramId.legacy.def @@ -244,3 +244,63 @@ parameterCategory = 228 ; parameterNumber = 7 ; } +#GEMS Ozone +'210203' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; +} +#GEMS Ozone +'211203' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; +} +#Carbon monoxide +'210123' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; +} +#Carbon monoxide +'211123' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; +} +#Nitrogen dioxide +'210121' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; +} +#Nitrogen dioxide +'211121' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; +} +#Sulphur dioxide +'210122' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; +} +#Sulphur dioxide +'211122' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; +} +#Ammonia +'217019' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; +} +#Nitrogen monoxide +'217027' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/shortName.def b/definitions/grib2/localConcepts/ecmf/shortName.def index 41d5c4688..797b4e665 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.def @@ -8425,12 +8425,6 @@ parameterCategory = 217 ; parameterNumber = 18 ; } -#Ammonia -'nh3' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } #Sulfate 'so4' = { discipline = 192 ; @@ -8467,12 +8461,6 @@ parameterCategory = 217 ; parameterNumber = 26 ; } -#Nitrogen monoxide -'no' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } #Hydroperoxy radical 'ho2' = { discipline = 192 ; @@ -20789,24 +20777,6 @@ parameterCategory = 210 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'no2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'so2' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'co' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } #Formaldehyde 'hcho' = { discipline = 192 ; @@ -21095,12 +21065,6 @@ parameterCategory = 210 ; parameterNumber = 185 ; } -#GEMS Ozone -'go3' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'gtco3' = { discipline = 192 ; @@ -21557,24 +21521,6 @@ parameterCategory = 211 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'no2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'so2diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'codiff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } #Formaldehyde 'hchodiff' = { discipline = 192 ; @@ -21863,12 +21809,6 @@ parameterCategory = 211 ; parameterNumber = 185 ; } -#GEMS Ozone -'go3diff' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'gtco3diff' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def index e99a753e2..917425c0d 100644 --- a/definitions/grib2/localConcepts/ecmf/shortName.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/shortName.legacy.def @@ -244,3 +244,63 @@ parameterCategory = 228 ; parameterNumber = 7 ; } +#GEMS Ozone +'go3' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; +} +#GEMS Ozone +'go3diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; +} +#Carbon monoxide +'co' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; +} +#Carbon monoxide +'codiff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; +} +#Nitrogen dioxide +'no2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; +} +#Nitrogen dioxide +'no2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; +} +#Sulphur dioxide +'so2' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; +} +#Sulphur dioxide +'so2diff' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; +} +#Ammonia +'nh3' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; +} +#Nitrogen monoxide +'no' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; +} diff --git a/definitions/grib2/localConcepts/ecmf/units.def b/definitions/grib2/localConcepts/ecmf/units.def index 75f882b14..7e7256248 100644 --- a/definitions/grib2/localConcepts/ecmf/units.def +++ b/definitions/grib2/localConcepts/ecmf/units.def @@ -8425,12 +8425,6 @@ parameterCategory = 217 ; parameterNumber = 18 ; } -#Ammonia -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 19 ; - } #Sulfate 'kg kg**-1' = { discipline = 192 ; @@ -8467,12 +8461,6 @@ parameterCategory = 217 ; parameterNumber = 26 ; } -#Nitrogen monoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 217 ; - parameterNumber = 27 ; - } #Hydroperoxy radical 'kg kg**-1' = { discipline = 192 ; @@ -20789,24 +20777,6 @@ parameterCategory = 210 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 123 ; - } #Formaldehyde 'kg kg**-1' = { discipline = 192 ; @@ -21095,12 +21065,6 @@ parameterCategory = 210 ; parameterNumber = 185 ; } -#GEMS Ozone -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 210 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'kg m**-2' = { discipline = 192 ; @@ -21557,24 +21521,6 @@ parameterCategory = 211 ; parameterNumber = 100 ; } -#Nitrogen dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 121 ; - } -#Sulphur dioxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 122 ; - } -#Carbon monoxide -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 123 ; - } #Formaldehyde 'kg kg**-1' = { discipline = 192 ; @@ -21863,12 +21809,6 @@ parameterCategory = 211 ; parameterNumber = 185 ; } -#GEMS Ozone -'kg kg**-1' = { - discipline = 192 ; - parameterCategory = 211 ; - parameterNumber = 203 ; - } #GEMS Total column ozone 'kg m**-2' = { discipline = 192 ; diff --git a/definitions/grib2/localConcepts/ecmf/units.legacy.def b/definitions/grib2/localConcepts/ecmf/units.legacy.def index 789a79d13..472f95161 100644 --- a/definitions/grib2/localConcepts/ecmf/units.legacy.def +++ b/definitions/grib2/localConcepts/ecmf/units.legacy.def @@ -244,3 +244,63 @@ parameterCategory = 228 ; parameterNumber = 7 ; } +#GEMS Ozone +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 203 ; +} +#GEMS Ozone +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 203 ; +} +#Carbon monoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 123 ; +} +#Carbon monoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 123 ; +} +#Nitrogen dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 121 ; +} +#Nitrogen dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 121 ; +} +#Sulphur dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 210 ; + parameterNumber = 122 ; +} +#Sulphur dioxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 211 ; + parameterNumber = 122 ; +} +#Ammonia +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 19 ; +} +#Nitrogen monoxide +'kg kg**-1' = { + discipline = 192 ; + parameterCategory = 217 ; + parameterNumber = 27 ; +} diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index 010c738c3..335d681ba 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -753,6 +753,22 @@ scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } +#Ammonia mass mixing ratio +'Ammonia mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 9 ; + is_chemical = 1 ; + } +#Nitrogen monoxide mass mixing ratio +'Nitrogen monoxide mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 11 ; + is_chemical = 1 ; + } #Aromatic peroxy radical mass mixing ratio 'Aromatic peroxy radical mass mixing ratio' = { discipline = 0 ; @@ -2471,6 +2487,74 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Nitrogen dioxide mass mixing ratio +'Nitrogen dioxide mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + is_chemical = 1 ; + } +#Sulphur dioxide mass mixing ratio +'Sulphur dioxide mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + is_chemical = 1 ; + } +#Carbon monoxide mass mixing ratio +'Carbon monoxide mass mixing ratio' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + is_chemical = 1 ; + } +#Ozone mass mixing ratio (full chemistry scheme) +'Ozone mass mixing ratio (full chemistry scheme)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + is_chemical = 1 ; + } +#Nitrogen dioxide mass mixing ratio difference +'Nitrogen dioxide mass mixing ratio difference' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Sulphur dioxide mass mixing ratio difference +'Sulphur dioxide mass mixing ratio difference' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Carbon monoxide mass mixing ratio difference +'Carbon monoxide mass mixing ratio difference' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Ozone mass mixing ratio difference (full chemistry scheme) +'Ozone mass mixing ratio difference (full chemistry scheme)' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } #Lake total depth 'Lake total depth' = { discipline = 1 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index efe0555bc..56f9a4544 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -753,6 +753,22 @@ scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } +#Ammonia mass mixing ratio +'217019' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 9 ; + is_chemical = 1 ; + } +#Nitrogen monoxide mass mixing ratio +'217027' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 11 ; + is_chemical = 1 ; + } #Aromatic peroxy radical mass mixing ratio '217222' = { discipline = 0 ; @@ -2471,6 +2487,74 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Nitrogen dioxide mass mixing ratio +'210121' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + is_chemical = 1 ; + } +#Sulphur dioxide mass mixing ratio +'210122' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + is_chemical = 1 ; + } +#Carbon monoxide mass mixing ratio +'210123' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + is_chemical = 1 ; + } +#Ozone mass mixing ratio (full chemistry scheme) +'210203' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + is_chemical = 1 ; + } +#Nitrogen dioxide mass mixing ratio difference +'211121' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Sulphur dioxide mass mixing ratio difference +'211122' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Carbon monoxide mass mixing ratio difference +'211123' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Ozone mass mixing ratio difference (full chemistry scheme) +'211203' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } #Lake total depth '228007' = { discipline = 1 ; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 91166eb03..70b7ebeea 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -753,6 +753,22 @@ scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } +#Ammonia mass mixing ratio +'nh3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 9 ; + is_chemical = 1 ; + } +#Nitrogen monoxide mass mixing ratio +'no' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 11 ; + is_chemical = 1 ; + } #Aromatic peroxy radical mass mixing ratio 'AROO2' = { discipline = 0 ; @@ -2471,6 +2487,74 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Nitrogen dioxide mass mixing ratio +'no2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + is_chemical = 1 ; + } +#Sulphur dioxide mass mixing ratio +'so2' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + is_chemical = 1 ; + } +#Carbon monoxide mass mixing ratio +'co' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + is_chemical = 1 ; + } +#Ozone mass mixing ratio (full chemistry scheme) +'go3' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + is_chemical = 1 ; + } +#Nitrogen dioxide mass mixing ratio difference +'no2diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Sulphur dioxide mass mixing ratio difference +'so2diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Carbon monoxide mass mixing ratio difference +'codiff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Ozone mass mixing ratio difference (full chemistry scheme) +'go3diff' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } #Lake total depth 'dl' = { discipline = 1 ; diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index 62d03b12b..e5fc404be 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -753,6 +753,22 @@ scaleFactorOfSecondWavelength = missing() ; is_aerosol_optical = 1 ; } +#Ammonia mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 9 ; + is_chemical = 1 ; + } +#Nitrogen monoxide mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 11 ; + is_chemical = 1 ; + } #Aromatic peroxy radical mass mixing ratio 'kg kg**-1' = { discipline = 0 ; @@ -2471,6 +2487,74 @@ scaledValueOfFirstFixedSurface = 0 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Nitrogen dioxide mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + is_chemical = 1 ; + } +#Sulphur dioxide mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + is_chemical = 1 ; + } +#Carbon monoxide mass mixing ratio +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + is_chemical = 1 ; + } +#Ozone mass mixing ratio (full chemistry scheme) +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + is_chemical = 1 ; + } +#Nitrogen dioxide mass mixing ratio difference +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 5 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Sulphur dioxide mass mixing ratio difference +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 8 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Carbon monoxide mass mixing ratio difference +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 4 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } +#Ozone mass mixing ratio difference (full chemistry scheme) +'kg kg**-1' = { + discipline = 0 ; + parameterCategory = 20 ; + parameterNumber = 2 ; + constituentType = 0 ; + typeOfGeneratingProcess = 20 ; + is_chemical = 1 ; + } #Lake total depth 'm' = { discipline = 1 ; From a3c701ed27f3a653005c14fff17308a3629b9fa8 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 17 Jun 2021 15:23:51 +0100 Subject: [PATCH 521/683] Testing: Add test for accessor g1monthlydate --- tests/CMakeLists.txt | 1 + tests/grib_g1monthlydate.sh | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100755 tests/grib_g1monthlydate.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 341b2f4be..2a68311e3 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -100,6 +100,7 @@ if( HAVE_BUILD_TOOLS ) grib_grid_lambert_conformal grib_grid_polar_stereographic grib_grid_space_view + grib_g1monthlydate grib_g1fcperiod) # These tests do require data downloads diff --git a/tests/grib_g1monthlydate.sh b/tests/grib_g1monthlydate.sh new file mode 100755 index 000000000..7f2729dea --- /dev/null +++ b/tests/grib_g1monthlydate.sh @@ -0,0 +1,25 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh + +label="grib_g1monthlydate" +sample_g1=$ECCODES_SAMPLES_PATH/GRIB1.tmpl +temp=temp.$label.grib + +${tools_dir}/grib_set -s marsType=fc,marsStream=wamo $sample_g1 $temp + +grib_check_key_equals $temp "mars.date,monthlyVerificationDate" "20060301 20060301" + +${tools_dir}/grib_dump $temp + + +# Clean up +rm -f $temp From 3148184dd0624ba49c1bada80a6517e8891c393b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 17 Jun 2021 15:25:54 +0100 Subject: [PATCH 522/683] Testing: Add test for accessor g1monthlydate --- tests/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Makefile.am b/tests/Makefile.am index ee499d0ea..799542424 100755 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -142,6 +142,7 @@ TESTS = definitions.sh \ grib_ecc-1212.sh \ grib_efas.sh \ grib_g1fcperiod.sh \ + grib_g1monthlydate.sh \ grib_levtype.sh \ grib_packing_order.sh \ grib_sh_spectral_complex.sh \ From 7322d7d3a5f4427790bd168d711c6499f42d0c82 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 17 Jun 2021 15:50:34 +0100 Subject: [PATCH 523/683] Testing: BUFR python code generation --- tests/Makefile.am | 2 ++ tests/bufr_dump_decode_python.sh | 5 +++-- tests/bufr_dump_encode_python.sh | 23 +++++++++++++---------- 3 files changed, 18 insertions(+), 12 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 799542424..0b7865b97 100755 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -35,6 +35,8 @@ TESTS = definitions.sh \ bufr_dump_encode_C.sh \ bufr_dump_encode_filter.sh \ bufr_dump_encode_fortran.sh \ + bufr_dump_encode_python.sh \ + bufr_dump_decode_python.sh \ gts_ls.sh \ gts_compare.sh \ gts_get.sh \ diff --git a/tests/bufr_dump_decode_python.sh b/tests/bufr_dump_decode_python.sh index 6c030b669..291c0edb5 100755 --- a/tests/bufr_dump_decode_python.sh +++ b/tests/bufr_dump_decode_python.sh @@ -38,8 +38,9 @@ do # Generate Python code from BUFR file ${tools_dir}/bufr_dump -Dpython $inputBufr > $tempSrc - $PYTHON $tempSrc $inputBufr - + if test "x$PYTHON" != "x"; then + $PYTHON $tempSrc $inputBufr + fi rm -f $tempSrc done diff --git a/tests/bufr_dump_encode_python.sh b/tests/bufr_dump_encode_python.sh index 80d9f2a8a..f90cbce75 100755 --- a/tests/bufr_dump_encode_python.sh +++ b/tests/bufr_dump_encode_python.sh @@ -39,18 +39,21 @@ do #pylint --disable=E0602,R,C,W $tempSrc - # The python code always creates an output file called outfile.bufr - $PYTHON $tempSrc - # Check original BUFR file against one we generated from sample - ${tools_dir}/bufr_compare $inputBufr $tempBufr + if test "x$PYTHON" != "x"; then + # The python code always creates an output file called outfile.bufr + $PYTHON $tempSrc - TEMP_OUT1=${label}.$file.dump.out - TEMP_OUT2=${label}.$tempBufr.dump.out - ${tools_dir}/bufr_dump -p $inputBufr > $TEMP_OUT1 - ${tools_dir}/bufr_dump -p $tempBufr > $TEMP_OUT2 - diff $TEMP_OUT1 $TEMP_OUT2 - rm -f $TEMP_OUT1 $TEMP_OUT2 + # Check original BUFR file against one we generated from sample + ${tools_dir}/bufr_compare $inputBufr $tempBufr + + TEMP_OUT1=${label}.$file.dump.out + TEMP_OUT2=${label}.$tempBufr.dump.out + ${tools_dir}/bufr_dump -p $inputBufr > $TEMP_OUT1 + ${tools_dir}/bufr_dump -p $tempBufr > $TEMP_OUT2 + diff $TEMP_OUT1 $TEMP_OUT2 + rm -f $TEMP_OUT1 $TEMP_OUT2 + fi rm -f $tempSrc $tempBufr done From 3a0546444e68927ce6c107ff19337d91a17fd1eb Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 20 Jun 2021 14:41:58 +0100 Subject: [PATCH 524/683] Testing: Add test for accessor g1end_of_interval_monthly --- tests/grib_local.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/grib_local.sh b/tests/grib_local.sh index 0e4eacc96..72de8c4a1 100755 --- a/tests/grib_local.sh +++ b/tests/grib_local.sh @@ -122,8 +122,11 @@ grib_check_key_equals $temp 'mars.origin:s' 'lops' # Extra key in Local Definition 16 for GRIB1. ECC-679 -${tools_dir}/grib_set -s setLocalDefinition=1,localDefinitionNumber=16,numberOfForecastsInEnsemble=51 $sample_g1 $temp -grib_check_key_equals $temp 'totalNumber' '51' +# ---------------------------------------------------- +${tools_dir}/grib_set -s \ + setLocalDefinition=1,localDefinitionNumber=16,numberOfForecastsInEnsemble=51,verifyingMonth=11 \ + $sample_g1 $temp +grib_check_key_equals $temp 'totalNumber,endOfInterval' '51 0' # Local Definition 49 for GRIB1 From 4e5adb79158bb5608d38d5681ef603a7be579bc4 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 21 Jun 2021 14:29:36 +0100 Subject: [PATCH 525/683] ECC-1250: Update BUFR tables with the latest WMO v36.0.0 --- definitions/bufr/boot.def | 4 +- .../tables/0/wmo/36/codetables/1003.table | 8 + .../tables/0/wmo/36/codetables/10063.table | 10 + .../tables/0/wmo/36/codetables/10064.table | 4 + .../tables/0/wmo/36/codetables/1007.table | 223 +++ .../tables/0/wmo/36/codetables/1024.table | 9 + .../tables/0/wmo/36/codetables/1028.table | 7 + .../tables/0/wmo/36/codetables/1029.table | 8 + .../tables/0/wmo/36/codetables/1033.table | 239 +++ .../tables/0/wmo/36/codetables/1034.table | 104 + .../tables/0/wmo/36/codetables/1036.table | 38 + .../tables/0/wmo/36/codetables/1038.table | 7 + .../tables/0/wmo/36/codetables/1044.table | 9 + .../tables/0/wmo/36/codetables/1052.table | 4 + .../tables/0/wmo/36/codetables/1090.table | 5 + .../tables/0/wmo/36/codetables/1092.table | 6 + .../tables/0/wmo/36/codetables/1101.table | 202 ++ .../tables/0/wmo/36/codetables/11030.table | 25 + .../tables/0/wmo/36/codetables/11031.table | 16 + .../tables/0/wmo/36/codetables/11037.table | 30 + .../tables/0/wmo/36/codetables/11038.table | 17 + .../tables/0/wmo/36/codetables/11039.table | 17 + .../tables/0/wmo/36/codetables/1150.table | 7 + .../tables/0/wmo/36/codetables/1151.table | 3 + .../tables/0/wmo/36/codetables/13038.table | 4 + .../tables/0/wmo/36/codetables/13039.table | 3 + .../tables/0/wmo/36/codetables/13040.table | 13 + .../tables/0/wmo/36/codetables/13041.table | 10 + .../tables/0/wmo/36/codetables/13051.table | 8 + .../tables/0/wmo/36/codetables/13056.table | 11 + .../tables/0/wmo/36/codetables/13057.table | 11 + .../tables/0/wmo/36/codetables/15025.table | 4 + .../tables/0/wmo/36/codetables/19001.table | 7 + .../tables/0/wmo/36/codetables/19008.table | 5 + .../tables/0/wmo/36/codetables/19010.table | 3 + .../tables/0/wmo/36/codetables/19100.table | 9 + .../tables/0/wmo/36/codetables/19101.table | 10 + .../tables/0/wmo/36/codetables/19102.table | 8 + .../tables/0/wmo/36/codetables/19103.table | 12 + .../tables/0/wmo/36/codetables/19104.table | 12 + .../tables/0/wmo/36/codetables/19105.table | 10 + .../tables/0/wmo/36/codetables/19107.table | 11 + .../tables/0/wmo/36/codetables/19108.table | 8 + .../tables/0/wmo/36/codetables/19109.table | 12 + .../tables/0/wmo/36/codetables/19110.table | 8 + .../tables/0/wmo/36/codetables/19113.table | 8 + .../tables/0/wmo/36/codetables/19117.table | 4 + .../tables/0/wmo/36/codetables/19119.table | 4 + .../tables/0/wmo/36/codetables/20003.table | 266 +++ .../tables/0/wmo/36/codetables/20004.table | 21 + .../tables/0/wmo/36/codetables/20005.table | 21 + .../tables/0/wmo/36/codetables/20006.table | 5 + .../tables/0/wmo/36/codetables/20008.table | 19 + .../tables/0/wmo/36/codetables/20009.table | 6 + .../tables/0/wmo/36/codetables/2001.table | 4 + .../tables/0/wmo/36/codetables/20011.table | 16 + .../tables/0/wmo/36/codetables/20012.table | 55 + .../tables/0/wmo/36/codetables/20017.table | 11 + .../tables/0/wmo/36/codetables/20018.table | 4 + .../tables/0/wmo/36/codetables/2002.table | 3 + .../tables/0/wmo/36/codetables/20021.table | 23 + .../tables/0/wmo/36/codetables/20022.table | 7 + .../tables/0/wmo/36/codetables/20023.table | 14 + .../tables/0/wmo/36/codetables/20024.table | 8 + .../tables/0/wmo/36/codetables/20025.table | 13 + .../tables/0/wmo/36/codetables/20026.table | 16 + .../tables/0/wmo/36/codetables/20027.table | 8 + .../tables/0/wmo/36/codetables/20028.table | 4 + .../tables/0/wmo/36/codetables/20029.table | 4 + .../tables/0/wmo/36/codetables/2003.table | 13 + .../tables/0/wmo/36/codetables/20032.table | 6 + .../tables/0/wmo/36/codetables/20033.table | 3 + .../tables/0/wmo/36/codetables/20034.table | 12 + .../tables/0/wmo/36/codetables/20035.table | 12 + .../tables/0/wmo/36/codetables/20036.table | 12 + .../tables/0/wmo/36/codetables/20037.table | 12 + .../tables/0/wmo/36/codetables/2004.table | 11 + .../tables/0/wmo/36/codetables/20040.table | 9 + .../tables/0/wmo/36/codetables/20041.table | 14 + .../tables/0/wmo/36/codetables/20042.table | 4 + .../tables/0/wmo/36/codetables/20045.table | 4 + .../tables/0/wmo/36/codetables/20048.table | 5 + .../tables/0/wmo/36/codetables/20050.table | 10 + .../tables/0/wmo/36/codetables/20055.table | 12 + .../tables/0/wmo/36/codetables/20056.table | 8 + .../tables/0/wmo/36/codetables/2006.table | 9 + .../tables/0/wmo/36/codetables/20062.table | 21 + .../tables/0/wmo/36/codetables/20063.table | 71 + .../tables/0/wmo/36/codetables/2007.table | 11 + .../tables/0/wmo/36/codetables/20071.table | 11 + .../tables/0/wmo/36/codetables/2008.table | 7 + .../tables/0/wmo/36/codetables/20085.table | 3 + .../tables/0/wmo/36/codetables/20086.table | 11 + .../tables/0/wmo/36/codetables/20087.table | 6 + .../tables/0/wmo/36/codetables/20089.table | 11 + .../tables/0/wmo/36/codetables/20090.table | 7 + .../tables/0/wmo/36/codetables/20101.table | 11 + .../tables/0/wmo/36/codetables/20102.table | 11 + .../tables/0/wmo/36/codetables/20103.table | 11 + .../tables/0/wmo/36/codetables/20104.table | 11 + .../tables/0/wmo/36/codetables/20105.table | 12 + .../tables/0/wmo/36/codetables/20106.table | 7 + .../tables/0/wmo/36/codetables/20107.table | 11 + .../tables/0/wmo/36/codetables/20108.table | 9 + .../tables/0/wmo/36/codetables/2011.table | 100 + .../tables/0/wmo/36/codetables/20119.table | 4 + .../tables/0/wmo/36/codetables/20124.table | 4 + .../tables/0/wmo/36/codetables/2013.table | 11 + .../tables/0/wmo/36/codetables/20136.table | 44 + .../tables/0/wmo/36/codetables/20137.table | 11 + .../tables/0/wmo/36/codetables/20138.table | 9 + .../tables/0/wmo/36/codetables/2014.table | 51 + .../tables/0/wmo/36/codetables/2015.table | 7 + .../tables/0/wmo/36/codetables/2016.table | 4 + .../tables/0/wmo/36/codetables/2017.table | 6 + .../tables/0/wmo/36/codetables/2019.table | 366 ++++ .../tables/0/wmo/36/codetables/2020.table | 32 + .../tables/0/wmo/36/codetables/2021.table | 8 + .../tables/0/wmo/36/codetables/2022.table | 5 + .../tables/0/wmo/36/codetables/2023.table | 11 + .../tables/0/wmo/36/codetables/2024.table | 4 + .../tables/0/wmo/36/codetables/2025.table | 16 + .../tables/0/wmo/36/codetables/2030.table | 8 + .../tables/0/wmo/36/codetables/2031.table | 21 + .../tables/0/wmo/36/codetables/2032.table | 4 + .../tables/0/wmo/36/codetables/2033.table | 5 + .../tables/0/wmo/36/codetables/2034.table | 7 + .../tables/0/wmo/36/codetables/2036.table | 4 + .../tables/0/wmo/36/codetables/2037.table | 8 + .../tables/0/wmo/36/codetables/2038.table | 16 + .../tables/0/wmo/36/codetables/2039.table | 5 + .../tables/0/wmo/36/codetables/2040.table | 8 + .../tables/0/wmo/36/codetables/2041.table | 6 + .../tables/0/wmo/36/codetables/2042.table | 4 + .../tables/0/wmo/36/codetables/2044.table | 6 + .../tables/0/wmo/36/codetables/2045.table | 5 + .../tables/0/wmo/36/codetables/2046.table | 4 + .../tables/0/wmo/36/codetables/2047.table | 9 + .../tables/0/wmo/36/codetables/2048.table | 16 + .../tables/0/wmo/36/codetables/2049.table | 4 + .../tables/0/wmo/36/codetables/2050.table | 19 + .../tables/0/wmo/36/codetables/2051.table | 5 + .../tables/0/wmo/36/codetables/2052.table | 5 + .../tables/0/wmo/36/codetables/2053.table | 5 + .../tables/0/wmo/36/codetables/2054.table | 6 + .../tables/0/wmo/36/codetables/2055.table | 10 + .../tables/0/wmo/36/codetables/2056.table | 6 + .../tables/0/wmo/36/codetables/2057.table | 7 + .../tables/0/wmo/36/codetables/2058.table | 5 + .../tables/0/wmo/36/codetables/2059.table | 5 + .../tables/0/wmo/36/codetables/2060.table | 7 + .../tables/0/wmo/36/codetables/2061.table | 3 + .../tables/0/wmo/36/codetables/2062.table | 7 + .../tables/0/wmo/36/codetables/2064.table | 4 + .../tables/0/wmo/36/codetables/2066.table | 9 + .../tables/0/wmo/36/codetables/2070.table | 13 + .../tables/0/wmo/36/codetables/2080.table | 7 + .../tables/0/wmo/36/codetables/2081.table | 11 + .../tables/0/wmo/36/codetables/2083.table | 7 + .../tables/0/wmo/36/codetables/2084.table | 5 + .../tables/0/wmo/36/codetables/2092.table | 4 + .../tables/0/wmo/36/codetables/2095.table | 7 + .../tables/0/wmo/36/codetables/2096.table | 9 + .../tables/0/wmo/36/codetables/2097.table | 26 + .../tables/0/wmo/36/codetables/2099.table | 5 + .../tables/0/wmo/36/codetables/2101.table | 10 + .../tables/0/wmo/36/codetables/2103.table | 1 + .../tables/0/wmo/36/codetables/2104.table | 9 + .../tables/0/wmo/36/codetables/21066.table | 11 + .../tables/0/wmo/36/codetables/21067.table | 12 + .../tables/0/wmo/36/codetables/21068.table | 7 + .../tables/0/wmo/36/codetables/21069.table | 9 + .../tables/0/wmo/36/codetables/21070.table | 22 + .../tables/0/wmo/36/codetables/21072.table | 3 + .../tables/0/wmo/36/codetables/21073.table | 8 + .../tables/0/wmo/36/codetables/21076.table | 4 + .../tables/0/wmo/36/codetables/21109.table | 7 + .../tables/0/wmo/36/codetables/21115.table | 10 + .../tables/0/wmo/36/codetables/21116.table | 16 + .../tables/0/wmo/36/codetables/21119.table | 14 + .../tables/0/wmo/36/codetables/21144.table | 1 + .../tables/0/wmo/36/codetables/21148.table | 2 + .../tables/0/wmo/36/codetables/2115.table | 7 + .../tables/0/wmo/36/codetables/21150.table | 4 + .../tables/0/wmo/36/codetables/21155.table | 16 + .../tables/0/wmo/36/codetables/21158.table | 4 + .../tables/0/wmo/36/codetables/21159.table | 4 + .../tables/0/wmo/36/codetables/21169.table | 4 + .../tables/0/wmo/36/codetables/2119.table | 8 + .../tables/0/wmo/36/codetables/2131.table | 1 + .../tables/0/wmo/36/codetables/2137.table | 4 + .../tables/0/wmo/36/codetables/2138.table | 3 + .../tables/0/wmo/36/codetables/2139.table | 3 + .../tables/0/wmo/36/codetables/2143.table | 21 + .../tables/0/wmo/36/codetables/2144.table | 8 + .../tables/0/wmo/36/codetables/2145.table | 9 + .../tables/0/wmo/36/codetables/2146.table | 11 + .../tables/0/wmo/36/codetables/2147.table | 11 + .../tables/0/wmo/36/codetables/2148.table | 12 + .../tables/0/wmo/36/codetables/2149.table | 38 + .../tables/0/wmo/36/codetables/2150.table | 55 + .../tables/0/wmo/36/codetables/2151.table | 11 + .../tables/0/wmo/36/codetables/2152.table | 13 + .../tables/0/wmo/36/codetables/2158.table | 8 + .../tables/0/wmo/36/codetables/2159.table | 7 + .../tables/0/wmo/36/codetables/2160.table | 11 + .../tables/0/wmo/36/codetables/2161.table | 5 + .../tables/0/wmo/36/codetables/2162.table | 19 + .../tables/0/wmo/36/codetables/2163.table | 16 + .../tables/0/wmo/36/codetables/2164.table | 5 + .../tables/0/wmo/36/codetables/2165.table | 7 + .../tables/0/wmo/36/codetables/2166.table | 6 + .../tables/0/wmo/36/codetables/2167.table | 4 + .../tables/0/wmo/36/codetables/2169.table | 5 + .../tables/0/wmo/36/codetables/2170.table | 5 + .../tables/0/wmo/36/codetables/2172.table | 4 + .../tables/0/wmo/36/codetables/2175.table | 9 + .../tables/0/wmo/36/codetables/2176.table | 6 + .../tables/0/wmo/36/codetables/2177.table | 6 + .../tables/0/wmo/36/codetables/2178.table | 5 + .../tables/0/wmo/36/codetables/2179.table | 6 + .../tables/0/wmo/36/codetables/2180.table | 8 + .../tables/0/wmo/36/codetables/2181.table | 5 + .../tables/0/wmo/36/codetables/2182.table | 7 + .../tables/0/wmo/36/codetables/2183.table | 9 + .../tables/0/wmo/36/codetables/2184.table | 9 + .../tables/0/wmo/36/codetables/2185.table | 7 + .../tables/0/wmo/36/codetables/2186.table | 24 + .../tables/0/wmo/36/codetables/2187.table | 11 + .../tables/0/wmo/36/codetables/2188.table | 10 + .../tables/0/wmo/36/codetables/2189.table | 4 + .../tables/0/wmo/36/codetables/2191.table | 4 + .../tables/0/wmo/36/codetables/22056.table | 4 + .../tables/0/wmo/36/codetables/22060.table | 4 + .../tables/0/wmo/36/codetables/22061.table | 11 + .../tables/0/wmo/36/codetables/22067.table | 116 ++ .../tables/0/wmo/36/codetables/22068.table | 43 + .../tables/0/wmo/36/codetables/22120.table | 13 + .../tables/0/wmo/36/codetables/22121.table | 9 + .../tables/0/wmo/36/codetables/22122.table | 8 + .../tables/0/wmo/36/codetables/22123.table | 9 + .../tables/0/wmo/36/codetables/22178.table | 12 + .../tables/0/wmo/36/codetables/23001.table | 5 + .../tables/0/wmo/36/codetables/23002.table | 16 + .../tables/0/wmo/36/codetables/23003.table | 8 + .../tables/0/wmo/36/codetables/23004.table | 6 + .../tables/0/wmo/36/codetables/23005.table | 4 + .../tables/0/wmo/36/codetables/23006.table | 8 + .../tables/0/wmo/36/codetables/23007.table | 5 + .../tables/0/wmo/36/codetables/23008.table | 4 + .../tables/0/wmo/36/codetables/23009.table | 4 + .../tables/0/wmo/36/codetables/23016.table | 4 + .../tables/0/wmo/36/codetables/23018.table | 6 + .../tables/0/wmo/36/codetables/23031.table | 4 + .../tables/0/wmo/36/codetables/23032.table | 4 + .../tables/0/wmo/36/codetables/24003.table | 5 + .../tables/0/wmo/36/codetables/25004.table | 4 + .../tables/0/wmo/36/codetables/25005.table | 4 + .../tables/0/wmo/36/codetables/25006.table | 5 + .../tables/0/wmo/36/codetables/25009.table | 4 + .../tables/0/wmo/36/codetables/25010.table | 8 + .../tables/0/wmo/36/codetables/25011.table | 4 + .../tables/0/wmo/36/codetables/25012.table | 4 + .../tables/0/wmo/36/codetables/25013.table | 1 + .../tables/0/wmo/36/codetables/25015.table | 1 + .../tables/0/wmo/36/codetables/25017.table | 1 + .../tables/0/wmo/36/codetables/25020.table | 4 + .../tables/0/wmo/36/codetables/25021.table | 5 + .../tables/0/wmo/36/codetables/25022.table | 8 + .../tables/0/wmo/36/codetables/25023.table | 8 + .../tables/0/wmo/36/codetables/25024.table | 13 + .../tables/0/wmo/36/codetables/25029.table | 5 + .../tables/0/wmo/36/codetables/25030.table | 4 + .../tables/0/wmo/36/codetables/25031.table | 6 + .../tables/0/wmo/36/codetables/25032.table | 4 + .../tables/0/wmo/36/codetables/25033.table | 4 + .../tables/0/wmo/36/codetables/25034.table | 3 + .../tables/0/wmo/36/codetables/25035.table | 8 + .../tables/0/wmo/36/codetables/25036.table | 4 + .../tables/0/wmo/36/codetables/25040.table | 10 + .../tables/0/wmo/36/codetables/25041.table | 4 + .../tables/0/wmo/36/codetables/25042.table | 4 + .../tables/0/wmo/36/codetables/25053.table | 6 + .../tables/0/wmo/36/codetables/25063.table | 4 + .../tables/0/wmo/36/codetables/25069.table | 7 + .../tables/0/wmo/36/codetables/25086.table | 4 + .../tables/0/wmo/36/codetables/25090.table | 11 + .../tables/0/wmo/36/codetables/25093.table | 3 + .../tables/0/wmo/36/codetables/25095.table | 1 + .../tables/0/wmo/36/codetables/25096.table | 4 + .../tables/0/wmo/36/codetables/25097.table | 11 + .../tables/0/wmo/36/codetables/25098.table | 8 + .../tables/0/wmo/36/codetables/25099.table | 6 + .../tables/0/wmo/36/codetables/25110.table | 6 + .../tables/0/wmo/36/codetables/25112.table | 5 + .../tables/0/wmo/36/codetables/25113.table | 3 + .../tables/0/wmo/36/codetables/25120.table | 4 + .../tables/0/wmo/36/codetables/25122.table | 4 + .../tables/0/wmo/36/codetables/25123.table | 4 + .../tables/0/wmo/36/codetables/25124.table | 4 + .../tables/0/wmo/36/codetables/25150.table | 3 + .../tables/0/wmo/36/codetables/25174.table | 13 + .../tables/0/wmo/36/codetables/25181.table | 3 + .../tables/0/wmo/36/codetables/25182.table | 3 + .../tables/0/wmo/36/codetables/25184.table | 3 + .../tables/0/wmo/36/codetables/25185.table | 2 + .../tables/0/wmo/36/codetables/25187.table | 3 + .../tables/0/wmo/36/codetables/25188.table | 6 + .../tables/0/wmo/36/codetables/25190.table | 7 + .../tables/0/wmo/36/codetables/25191.table | 4 + .../tables/0/wmo/36/codetables/26010.table | 25 + .../tables/0/wmo/36/codetables/29001.table | 8 + .../tables/0/wmo/36/codetables/29002.table | 4 + .../tables/0/wmo/36/codetables/3001.table | 12 + .../tables/0/wmo/36/codetables/3003.table | 8 + .../tables/0/wmo/36/codetables/30031.table | 13 + .../tables/0/wmo/36/codetables/30032.table | 9 + .../tables/0/wmo/36/codetables/3004.table | 11 + .../tables/0/wmo/36/codetables/3008.table | 4 + .../tables/0/wmo/36/codetables/3010.table | 12 + .../tables/0/wmo/36/codetables/3011.table | 4 + .../tables/0/wmo/36/codetables/3012.table | 3 + .../tables/0/wmo/36/codetables/3016.table | 9 + .../tables/0/wmo/36/codetables/3017.table | 5 + .../tables/0/wmo/36/codetables/3018.table | 22 + .../tables/0/wmo/36/codetables/3019.table | 8 + .../tables/0/wmo/36/codetables/3020.table | 5 + .../tables/0/wmo/36/codetables/3021.table | 4 + .../tables/0/wmo/36/codetables/3022.table | 4 + .../tables/0/wmo/36/codetables/3023.table | 8 + .../tables/0/wmo/36/codetables/3027.table | 8 + .../tables/0/wmo/36/codetables/3028.table | 8 + .../tables/0/wmo/36/codetables/31021.table | 9 + .../tables/0/wmo/36/codetables/31031.table | 1 + .../tables/0/wmo/36/codetables/33002.table | 4 + .../tables/0/wmo/36/codetables/33003.table | 5 + .../tables/0/wmo/36/codetables/33005.table | 23 + .../tables/0/wmo/36/codetables/33006.table | 5 + .../tables/0/wmo/36/codetables/33015.table | 16 + .../tables/0/wmo/36/codetables/33020.table | 8 + .../tables/0/wmo/36/codetables/33021.table | 4 + .../tables/0/wmo/36/codetables/33022.table | 4 + .../tables/0/wmo/36/codetables/33023.table | 4 + .../tables/0/wmo/36/codetables/33024.table | 10 + .../tables/0/wmo/36/codetables/33025.table | 5 + .../tables/0/wmo/36/codetables/33026.table | 17 + .../tables/0/wmo/36/codetables/33027.table | 6 + .../tables/0/wmo/36/codetables/33028.table | 5 + .../tables/0/wmo/36/codetables/33030.table | 7 + .../tables/0/wmo/36/codetables/33031.table | 21 + .../tables/0/wmo/36/codetables/33032.table | 7 + .../tables/0/wmo/36/codetables/33033.table | 3 + .../tables/0/wmo/36/codetables/33035.table | 10 + .../tables/0/wmo/36/codetables/33037.table | 19 + .../tables/0/wmo/36/codetables/33038.table | 9 + .../tables/0/wmo/36/codetables/33039.table | 9 + .../tables/0/wmo/36/codetables/33041.table | 4 + .../tables/0/wmo/36/codetables/33042.table | 5 + .../tables/0/wmo/36/codetables/33043.table | 4 + .../tables/0/wmo/36/codetables/33044.table | 14 + .../tables/0/wmo/36/codetables/33047.table | 27 + .../tables/0/wmo/36/codetables/33048.table | 4 + .../tables/0/wmo/36/codetables/33049.table | 4 + .../tables/0/wmo/36/codetables/33050.table | 9 + .../tables/0/wmo/36/codetables/33055.table | 13 + .../tables/0/wmo/36/codetables/33056.table | 13 + .../tables/0/wmo/36/codetables/33060.table | 4 + .../tables/0/wmo/36/codetables/33066.table | 4 + .../tables/0/wmo/36/codetables/33070.table | 14 + .../tables/0/wmo/36/codetables/33071.table | 10 + .../tables/0/wmo/36/codetables/33072.table | 18 + .../tables/0/wmo/36/codetables/33075.table | 5 + .../tables/0/wmo/36/codetables/33076.table | 2 + .../tables/0/wmo/36/codetables/33077.table | 12 + .../tables/0/wmo/36/codetables/33078.table | 5 + .../tables/0/wmo/36/codetables/33079.table | 10 + .../tables/0/wmo/36/codetables/33080.table | 13 + .../tables/0/wmo/36/codetables/33081.table | 9 + .../tables/0/wmo/36/codetables/33082.table | 10 + .../tables/0/wmo/36/codetables/33083.table | 10 + .../tables/0/wmo/36/codetables/33084.table | 10 + .../tables/0/wmo/36/codetables/33085.table | 14 + .../tables/0/wmo/36/codetables/33086.table | 5 + .../tables/0/wmo/36/codetables/33087.table | 10 + .../tables/0/wmo/36/codetables/33088.table | 12 + .../tables/0/wmo/36/codetables/33092.table | 2 + .../tables/0/wmo/36/codetables/33093.table | 19 + .../tables/0/wmo/36/codetables/35000.table | 1 + .../tables/0/wmo/36/codetables/35001.table | 4 + .../tables/0/wmo/36/codetables/35030.table | 10 + .../tables/0/wmo/36/codetables/35031.table | 20 + .../tables/0/wmo/36/codetables/35032.table | 10 + .../tables/0/wmo/36/codetables/35033.table | 12 + .../tables/0/wmo/36/codetables/35034.table | 7 + .../tables/0/wmo/36/codetables/35035.table | 20 + .../tables/0/wmo/36/codetables/40005.table | 5 + .../tables/0/wmo/36/codetables/40006.table | 8 + .../tables/0/wmo/36/codetables/40011.table | 4 + .../tables/0/wmo/36/codetables/40012.table | 3 + .../tables/0/wmo/36/codetables/40013.table | 5 + .../tables/0/wmo/36/codetables/40020.table | 16 + .../tables/0/wmo/36/codetables/40023.table | 4 + .../tables/0/wmo/36/codetables/40024.table | 5 + .../tables/0/wmo/36/codetables/40025.table | 4 + .../tables/0/wmo/36/codetables/40028.table | 16 + .../tables/0/wmo/36/codetables/40036.table | 3 + .../tables/0/wmo/36/codetables/40043.table | 4 + .../tables/0/wmo/36/codetables/40045.table | 4 + .../tables/0/wmo/36/codetables/40046.table | 5 + .../tables/0/wmo/36/codetables/40047.table | 4 + .../tables/0/wmo/36/codetables/40048.table | 4 + .../tables/0/wmo/36/codetables/40049.table | 12 + .../tables/0/wmo/36/codetables/40050.table | 3 + .../tables/0/wmo/36/codetables/40051.table | 8 + .../tables/0/wmo/36/codetables/40052.table | 4 + .../tables/0/wmo/36/codetables/40054.table | 12 + .../tables/0/wmo/36/codetables/40055.table | 20 + .../tables/0/wmo/36/codetables/40056.table | 4 + .../tables/0/wmo/36/codetables/40057.table | 30 + .../tables/0/wmo/36/codetables/40068.table | 4 + .../tables/0/wmo/36/codetables/40074.table | 10 + .../tables/0/wmo/36/codetables/4059.table | 5 + .../tables/0/wmo/36/codetables/4080.table | 6 + .../tables/0/wmo/36/codetables/42004.table | 3 + .../tables/0/wmo/36/codetables/5069.table | 4 + .../tables/0/wmo/36/codetables/8001.table | 6 + .../tables/0/wmo/36/codetables/8002.table | 19 + .../tables/0/wmo/36/codetables/8003.table | 12 + .../tables/0/wmo/36/codetables/8004.table | 6 + .../tables/0/wmo/36/codetables/8005.table | 7 + .../tables/0/wmo/36/codetables/8006.table | 8 + .../tables/0/wmo/36/codetables/8007.table | 5 + .../tables/0/wmo/36/codetables/8008.table | 8 + .../tables/0/wmo/36/codetables/8009.table | 16 + .../tables/0/wmo/36/codetables/8010.table | 14 + .../tables/0/wmo/36/codetables/8011.table | 27 + .../tables/0/wmo/36/codetables/8012.table | 4 + .../tables/0/wmo/36/codetables/8013.table | 4 + .../tables/0/wmo/36/codetables/8014.table | 10 + .../tables/0/wmo/36/codetables/8015.table | 4 + .../tables/0/wmo/36/codetables/8016.table | 5 + .../tables/0/wmo/36/codetables/8017.table | 4 + .../tables/0/wmo/36/codetables/8018.table | 4 + .../tables/0/wmo/36/codetables/8019.table | 8 + .../tables/0/wmo/36/codetables/8021.table | 32 + .../tables/0/wmo/36/codetables/8023.table | 14 + .../tables/0/wmo/36/codetables/8024.table | 12 + .../tables/0/wmo/36/codetables/8025.table | 5 + .../tables/0/wmo/36/codetables/8026.table | 5 + .../tables/0/wmo/36/codetables/8029.table | 16 + .../tables/0/wmo/36/codetables/8032.table | 7 + .../tables/0/wmo/36/codetables/8033.table | 6 + .../tables/0/wmo/36/codetables/8034.table | 10 + .../tables/0/wmo/36/codetables/8035.table | 8 + .../tables/0/wmo/36/codetables/8036.table | 8 + .../tables/0/wmo/36/codetables/8037.table | 4 + .../tables/0/wmo/36/codetables/8038.table | 3 + .../tables/0/wmo/36/codetables/8039.table | 8 + .../tables/0/wmo/36/codetables/8040.table | 49 + .../tables/0/wmo/36/codetables/8041.table | 15 + .../tables/0/wmo/36/codetables/8042.table | 17 + .../tables/0/wmo/36/codetables/8043.table | 17 + .../tables/0/wmo/36/codetables/8050.table | 11 + .../tables/0/wmo/36/codetables/8051.table | 7 + .../tables/0/wmo/36/codetables/8052.table | 26 + .../tables/0/wmo/36/codetables/8053.table | 4 + .../tables/0/wmo/36/codetables/8054.table | 3 + .../tables/0/wmo/36/codetables/8060.table | 8 + .../tables/0/wmo/36/codetables/8065.table | 4 + .../tables/0/wmo/36/codetables/8066.table | 4 + .../tables/0/wmo/36/codetables/8070.table | 6 + .../tables/0/wmo/36/codetables/8072.table | 6 + .../tables/0/wmo/36/codetables/8074.table | 4 + .../tables/0/wmo/36/codetables/8075.table | 4 + .../tables/0/wmo/36/codetables/8076.table | 9 + .../tables/0/wmo/36/codetables/8077.table | 7 + .../tables/0/wmo/36/codetables/8079.table | 9 + .../tables/0/wmo/36/codetables/8080.table | 14 + .../tables/0/wmo/36/codetables/8081.table | 5 + .../tables/0/wmo/36/codetables/8082.table | 3 + .../tables/0/wmo/36/codetables/8083.table | 9 + .../tables/0/wmo/36/codetables/8085.table | 4 + .../tables/0/wmo/36/codetables/8086.table | 11 + .../tables/0/wmo/36/codetables/8087.table | 5 + .../tables/0/wmo/36/codetables/8088.table | 4 + .../tables/0/wmo/36/codetables/8091.table | 11 + .../tables/0/wmo/36/codetables/8092.table | 2 + .../tables/0/wmo/36/codetables/8093.table | 4 + .../bufr/tables/0/wmo/36/element.table | 1731 +++++++++++++++++ definitions/bufr/tables/0/wmo/36/sequence.def | 1136 +++++++++++ 490 files changed, 8821 insertions(+), 2 deletions(-) create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/1003.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/10063.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/10064.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/1007.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/1024.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/1028.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/1029.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/1033.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/1034.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/1036.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/1038.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/1044.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/1052.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/1090.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/1092.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/1101.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/11030.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/11031.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/11037.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/11038.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/11039.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/1150.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/1151.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/13038.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/13039.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/13040.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/13041.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/13051.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/13056.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/13057.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/15025.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/19001.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/19008.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/19010.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/19100.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/19101.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/19102.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/19103.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/19104.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/19105.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/19107.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/19108.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/19109.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/19110.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/19113.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/19117.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/19119.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20003.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20004.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20005.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20006.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20008.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20009.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2001.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20011.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20012.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20017.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20018.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2002.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20021.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20022.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20023.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20024.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20025.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20026.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20027.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20028.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20029.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2003.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20032.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20033.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20034.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20035.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20036.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20037.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2004.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20040.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20041.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20042.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20045.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20048.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20050.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20055.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20056.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2006.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20062.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20063.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2007.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20071.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2008.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20085.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20086.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20087.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20089.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20090.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20101.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20102.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20103.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20104.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20105.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20106.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20107.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20108.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2011.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20119.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20124.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2013.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20136.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20137.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/20138.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2014.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2015.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2016.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2017.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2019.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2020.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2021.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2022.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2023.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2024.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2025.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2030.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2031.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2032.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2033.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2034.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2036.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2037.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2038.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2039.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2040.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2041.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2042.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2044.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2045.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2046.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2047.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2048.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2049.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2050.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2051.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2052.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2053.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2054.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2055.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2056.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2057.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2058.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2059.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2060.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2061.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2062.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2064.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2066.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2070.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2080.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2081.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2083.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2084.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2092.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2095.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2096.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2097.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2099.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2101.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2103.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2104.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21066.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21067.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21068.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21069.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21070.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21072.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21073.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21076.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21109.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21115.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21116.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21119.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21144.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21148.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2115.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21150.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21155.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21158.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21159.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/21169.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2119.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2131.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2137.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2138.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2139.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2143.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2144.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2145.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2146.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2147.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2148.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2149.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2150.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2151.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2152.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2158.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2159.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2160.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2161.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2162.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2163.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2164.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2165.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2166.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2167.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2169.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2170.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2172.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2175.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2176.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2177.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2178.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2179.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2180.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2181.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2182.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2183.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2184.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2185.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2186.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2187.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2188.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2189.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/2191.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/22056.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/22060.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/22061.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/22067.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/22068.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/22120.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/22121.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/22122.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/22123.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/22178.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/23001.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/23002.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/23003.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/23004.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/23005.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/23006.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/23007.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/23008.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/23009.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/23016.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/23018.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/23031.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/23032.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/24003.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25004.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25005.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25006.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25009.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25010.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25011.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25012.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25013.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25015.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25017.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25020.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25021.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25022.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25023.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25024.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25029.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25030.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25031.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25032.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25033.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25034.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25035.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25036.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25040.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25041.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25042.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25053.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25063.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25069.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25086.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25090.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25093.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25095.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25096.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25097.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25098.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25099.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25110.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25112.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25113.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25120.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25122.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25123.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25124.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25150.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25174.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25181.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25182.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25184.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25185.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25187.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25188.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25190.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/25191.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/26010.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/29001.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/29002.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/3001.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/3003.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/30031.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/30032.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/3004.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/3008.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/3010.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/3011.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/3012.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/3016.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/3017.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/3018.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/3019.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/3020.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/3021.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/3022.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/3023.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/3027.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/3028.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/31021.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/31031.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33002.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33003.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33005.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33006.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33015.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33020.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33021.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33022.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33023.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33024.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33025.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33026.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33027.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33028.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33030.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33031.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33032.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33033.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33035.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33037.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33038.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33039.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33041.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33042.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33043.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33044.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33047.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33048.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33049.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33050.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33055.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33056.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33060.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33066.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33070.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33071.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33072.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33075.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33076.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33077.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33078.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33079.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33080.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33081.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33082.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33083.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33084.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33085.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33086.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33087.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33088.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33092.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/33093.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/35000.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/35001.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/35030.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/35031.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/35032.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/35033.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/35034.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/35035.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40005.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40006.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40011.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40012.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40013.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40020.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40023.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40024.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40025.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40028.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40036.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40043.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40045.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40046.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40047.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40048.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40049.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40050.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40051.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40052.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40054.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40055.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40056.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40057.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40068.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/40074.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/4059.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/4080.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/42004.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/5069.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8001.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8002.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8003.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8004.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8005.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8006.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8007.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8008.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8009.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8010.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8011.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8012.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8013.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8014.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8015.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8016.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8017.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8018.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8019.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8021.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8023.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8024.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8025.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8026.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8029.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8032.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8033.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8034.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8035.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8036.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8037.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8038.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8039.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8040.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8041.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8042.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8043.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8050.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8051.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8052.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8053.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8054.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8060.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8065.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8066.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8070.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8072.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8074.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8075.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8076.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8077.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8079.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8080.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8081.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8082.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8083.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8085.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8086.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8087.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8088.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8091.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8092.table create mode 100644 definitions/bufr/tables/0/wmo/36/codetables/8093.table create mode 100644 definitions/bufr/tables/0/wmo/36/element.table create mode 100644 definitions/bufr/tables/0/wmo/36/sequence.def diff --git a/definitions/bufr/boot.def b/definitions/bufr/boot.def index 36e0607b5..f678f48a8 100644 --- a/definitions/bufr/boot.def +++ b/definitions/bufr/boot.def @@ -12,8 +12,8 @@ transient missingValue=999999 : hidden; transient setToMissingIfOutOfRange=0 : hidden; # This gets updated twice a year by WMO. -# See http://www.wmo.int/pages/prog/www/WMOCodes/WMO306_vI2/LatestVERSION/LatestVERSION.html -constant masterTablesVersionNumberLatest = 35; +# See https://community.wmo.int/activity-areas/wmo-codes/manual-codes/latest-version +constant masterTablesVersionNumberLatest = 36; #negative value=not used transient inputDelayedDescriptorReplicationFactor={-1} : hidden; diff --git a/definitions/bufr/tables/0/wmo/36/codetables/1003.table b/definitions/bufr/tables/0/wmo/36/codetables/1003.table new file mode 100644 index 000000000..a0c90ee0f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/1003.table @@ -0,0 +1,8 @@ +0 0 ANTARCTICA +1 1 REGION I +2 2 REGION II +3 3 REGION III +4 4 REGION IV +5 5 REGION V +6 6 REGION VI +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/10063.table b/definitions/bufr/tables/0/wmo/36/codetables/10063.table new file mode 100644 index 000000000..50978740b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/10063.table @@ -0,0 +1,10 @@ +0 0 INCREASING, THEN DECREASING; ATMOSPHERIC PRESSURE THE SAME OR HIGHER THAN THREE HOURS AGO +1 1 INCREASING, THEN STEADY; OR INCREASING, THEN INCREASING MORE SLOWLY +2 2 INCREASING (STEADILY OR UNSTEADILY) +3 3 DECREASING OR STEADY, THEN INCREASING; OR INCREASING, THEN INCREASING MORE RAPIDLY +4 4 STEADY; ATMOSPHERIC PRESSURE THE SAME AS THREE HOURS AGO +5 5 DECREASING, THEN INCREASING; ATMOSPHERIC PRESSURE THE SAME OR LOWER THAN THREE HOURS AGO +6 6 DECREASING, THEN STEADY; OR DECREASING, THEN DECREASING MORE SLOWLY +7 7 DECREASING (STEADILY OR UNSTEADILY) +8 8 STEADY OR INCREASING, THEN DECREASING; OR DECREASING, THEN DECREASING MORE RAPIDLY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/10064.table b/definitions/bufr/tables/0/wmo/36/codetables/10064.table new file mode 100644 index 000000000..88ba38a95 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/10064.table @@ -0,0 +1,4 @@ +0 0 SUBSONIC +1 1 TRANSONIC +2 2 SUPERSONIC +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/1007.table b/definitions/bufr/tables/0/wmo/36/codetables/1007.table new file mode 100644 index 000000000..b42739c40 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/1007.table @@ -0,0 +1,223 @@ +0 0 RESERVED +1 1 ERS 1 +2 2 ERS 2 +3 3 METOP-1 (METOP-B) +4 4 METOP-2 (METOP-A) +5 5 METOP-3 (METOP-C) +20 20 SPOT1 +21 21 SPOT2 +22 22 SPOT3 +23 23 SPOT4 +40 40 OERSTED +41 41 CHAMP +42 42 TERRASAR-X +43 43 TANDEM-X +44 44 PAZ +46 46 SMOS +47 47 CRYOSAT-2 +48 48 AEOLUS +50 50 METEOSAT 3 +51 51 METEOSAT 4 +52 52 METEOSAT 5 +53 53 METEOSAT 6 +54 54 METEOSAT 7 +55 55 METEOSAT 8 +56 56 METEOSAT 9 +57 57 METEOSAT 10 +58 58 METEOSAT 1 +59 59 METEOSAT 2 +60 60 ENVISAT +61 61 SENTINEL 3A +62 62 SENTINEL 1A +63 63 SENTINEL 1B +64 64 SENTINEL 5P +65 65 SENTINEL 3B +66 66 SENTINEL-6A +67 67 SENTINEL-6B +70 70 METEOSAT 11 +120 120 ADEOS +121 121 ADEOS II +122 122 GCOM-W1 +140 140 GOSAT +150 150 GMS 3 +151 151 GMS 4 +152 152 GMS 5 +153 153 GMS +154 154 GMS 2 +171 171 MTSAT-1R +172 172 MTSAT-2 +173 173 HIMAWARI-8 +174 174 HIMAWARI-9 +200 200 NOAA 8 +201 201 NOAA 9 +202 202 NOAA 10 +203 203 NOAA 11 +204 204 NOAA 12 +205 205 NOAA 14 +206 206 NOAA 15 +207 207 NOAA 16 +208 208 NOAA 17 +209 209 NOAA 18 +220 220 LANDSAT 5 +221 221 LANDSAT 4 +222 222 LANDSAT 7 +223 223 NOAA 19 +224 224 NPP +225 225 NOAA 20 +226 226 NOAA 21 +240 240 DMSP 7 +241 241 DMSP 8 +242 242 DMSP 9 +243 243 DMSP 10 +244 244 DMSP 11 +245 245 DMSP 12 +246 246 DMSP 13 +247 247 DMSP 14 +248 248 DMSP 15 +249 249 DMSP 16 +250 250 GOES 6 +251 251 GOES 7 +252 252 GOES 8 +253 253 GOES 9 +254 254 GOES 10 +255 255 GOES 11 +256 256 GOES 12 +257 257 GOES 13 +258 258 GOES 14 +259 259 GOES 15 +260 260 JASON 1 +261 261 JASON 2 +262 262 JASON 3 +265 265 GEOOPTICS CICERO OP1 +266 266 GEOOPTICS CICERO OP2 +267 267 PLANETIQ GNOMES-A +268 268 PLANETIQ GNOMES-B +269 269 SPIRE LEMUR 3U CUBESAT +270 270 GOES 16 +271 271 GOES 17 +272 272 GOES 18 +273 273 GOES 19 +281 281 QUIKSCAT +282 282 TRMM +283 283 CORIOLIS +285 285 DMSP 17 +286 286 DMSP 18 +287 287 DMSP 19 +288 288 GPM-CORE +289 289 ORBITING CARBON OBSERVATORY - 2 (OCO-2, NASA) +310 310 GOMS 1 +311 311 GOMS 2 +320 320 METEOR 2-21 +321 321 METEOR 3-5 +322 322 METEOR 3M-1 +323 323 METEOR 3M-2 +324 324 METEOR-M N2 +325 325 METEOR-M N2 2 +341 341 RESURS 01-4 +410 410 KALPANA-1 +421 421 OCEANSAT-2 +422 422 SCATSAT-1 +423 423 OCEANSAT-3 +430 430 INSAT 1B +431 431 INSAT 1C +432 432 INSAT 1D +440 440 MEGHA-TROPIQUES +441 441 SARAL +450 450 INSAT 2A +451 451 INSAT 2B +452 452 INSAT 2E +470 470 INSAT 3A +471 471 INSAT 3D +472 472 INSAT 3E +473 473 INSAT 3DR +474 474 INSAT 3DS +500 500 FY-1C +501 501 FY-1D +502 502 HAI YANG 2A (HY-2A, SOA/NSOAS CHINA) +503 503 HAI YANG 2B (HY-2B, SOA/NSOAS CHINA) +504 504 HAI YANG 2C (HY-2C, SOA/NSOAS CHINA) +510 510 FY-2 +512 512 FY-2B +513 513 FY-2C +514 514 FY-2D +515 515 FY-2E +516 516 FY-2F +517 517 FY-2G +518 518 FY-2H +520 520 FY-3A +521 521 FY-3B +522 522 FY-3C +523 523 FY-3D +530 530 FY-4A +700 700 TIROS M (ITOS 1) +701 701 NOAA 1 +702 702 NOAA 2 +703 703 NOAA 3 +704 704 NOAA 4 +705 705 NOAA 5 +706 706 NOAA 6 +707 707 NOAA 7 +708 708 TIROS-N +710 710 GOES (SMS 1) +711 711 GOES (SMS 2) +720 720 TOPEX +721 721 GFO (GEOSAT FOLLOW ON) +722 722 GRACE A +723 723 GRACE B +724 724 COSMIC-2 P1 +725 725 COSMIC-2 P2 +726 726 COSMIC-2 P3 +727 727 COSMIC-2 P4 +728 728 COSMIC-2 P5 +729 729 COSMIC-2 P6 +731 731 GOES 1 +732 732 GOES 2 +733 733 GOES 3 +734 734 GOES 4 +735 735 GOES 5 +740 740 COSMIC-1 +741 741 COSMIC-2 +742 742 COSMIC-3 +743 743 COSMIC-4 +744 744 COSMIC-5 +745 745 COSMIC-6 +750 750 COSMIC-2 E1 +751 751 COSMIC-2 E2 +752 752 COSMIC-2 E3 +753 753 COSMIC-2 E4 +754 754 COSMIC-2 E5 +755 755 COSMIC-2 E6 +763 763 NIMBUS 3 +764 764 NIMBUS 4 +765 765 NIMBUS 5 +766 766 NIMBUS 6 +767 767 NIMBUS 7 +780 780 ERBS +781 781 UARS +782 782 EARTH PROBE +783 783 TERRA +784 784 AQUA +785 785 AURA +786 786 C/NOFS +787 787 CALIPSO +788 788 CLOUDSAT +800 800 SUNSAT +801 801 INTERNATIONAL SPACE STATION (ISS) +802 802 CFOSAT +803 803 GRACE C (GRACE-FO) +804 804 GRACE D (GRACE-FO) +810 810 COMS +811 811 GEO-KOMPSAT-2A +812 812 SCISAT-1 +813 813 ODIN +820 820 SAC-C +821 821 SAC-D +825 825 KOMPSAT-5 +850 850 COMBINATION OF TERRA AND AQUA +851 851 COMBINATION OF NOAA 16 TO NOAA 19 +852 852 COMBINATION OF METOP-1 TO METOP-3 +853 853 COMBINATION OF METEOSAT AND DMSP +854 854 NON-SPECIFIC MIXTURE OF GEOSTATIONARY AND LOW EARTH-ORBITING SATELLITES +855 855 COMBINATION OF INSAT 3D AND INSAT 3DR +856 856 COMBINATION OF SENTINEL-3 SATELLITES +1023 1023 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/1024.table b/definitions/bufr/tables/0/wmo/36/codetables/1024.table new file mode 100644 index 000000000..cdc9e2470 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/1024.table @@ -0,0 +1,9 @@ +0 0 NO WIND SPEED DATA AVAILABLE +1 1 AMSR-E DATA +2 2 TMI DATA +3 3 NWP: ECMWF +4 4 NWP: UK MET OFFICE +5 5 NWP: NCEP +6 6 REFERENCE CLIMATOLOGY +7 7 ERS_SCATTEROMETER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/1028.table b/definitions/bufr/tables/0/wmo/36/codetables/1028.table new file mode 100644 index 000000000..18f82068b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/1028.table @@ -0,0 +1,7 @@ +0 0 NO AOD DATA AVAILABLE +1 1 NESDIS +2 2 NAVOCEANO +3 3 NAAPS +4 4 MERIS +5 5 AATSR +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/1029.table b/definitions/bufr/tables/0/wmo/36/codetables/1029.table new file mode 100644 index 000000000..d63d07ef0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/1029.table @@ -0,0 +1,8 @@ +0 0 NO SSI DATA AVAILABLE +1 1 MSG_SEVIRI +2 2 GOES EAST +3 3 GOES WEST +4 4 ECMWF +5 5 NCEP +6 6 UK MET OFFICE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/1033.table b/definitions/bufr/tables/0/wmo/36/codetables/1033.table new file mode 100644 index 000000000..b448d6d9d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/1033.table @@ -0,0 +1,239 @@ +0 0 WMO SECRETARIAT +1 1 MELBOURNE +2 2 MELBOURNE +3 3 ) +4 4 MOSCOW +5 5 MOSCOW +6 6 ) +7 7 US NATIONAL WEATHER SERVICE - NATIONAL CENTRES FOR ENVIRONMENTAL PREDICTION (NCEP) +8 8 US NATIONAL WEATHER SERVICE TELECOMMUNICATIONS GATEWAY (NWSTG) +9 9 US NATIONAL WEATHER SERVICE - OTHER +10 10 CAIRO (RSMC) +11 11 ) +12 12 DAKAR (RSMC) +13 13 ) +14 14 NAIROBI (RSMC) +15 15 ) +16 16 CASABLANCA (RSMC) +17 17 TUNIS (RSMC) +18 18 TUNIS - CASABLANCA (RSMC) +19 19 ) +20 20 LAS PALMAS +21 21 ALGIERS (RSMC) +22 22 ACMAD +23 23 MOZAMBIQUE (NMC) +24 24 PRETORIA (RSMC) +25 25 LA RéUNION (RSMC) +26 26 KHABAROVSK (RSMC) +27 27 ) +28 28 NEW DELHI (RSMC) +29 29 ) +30 30 NOVOSIBIRSK (RSMC) +31 31 ) +32 32 TASHKENT (RSMC) +33 33 JEDDAH (RSMC) +34 34 TOKYO (RSMC), JAPAN METEOROLOGICAL AGENCY +35 35 ) +36 36 BANGKOK +37 37 ULAANBAATAR +38 38 BEIJING (RSMC) +39 39 ) +40 40 SEOUL +41 41 BUENOS AIRES (RSMC) +42 42 ) +43 43 BRASILIA (RSMC) +44 44 ) +45 45 SANTIAGO +46 46 BRAZILIAN SPACE AGENCY ­ INPE +47 47 COLOMBIA (NMC) +48 48 ECUADOR (NMC) +49 49 PERU (NMC) +50 50 VENEZUELA (BOLIVARIAN REPUBLIC OF) (NMC) +51 51 MIAMI (RSMC) +52 52 MIAMI (RSMC), NATIONAL HURRICANE CENTRE +53 53 MSC MONITORING +54 54 MONTREAL (RSMC) +55 55 SAN FRANCISCO +56 56 ARINC CENTRE +57 57 US AIR FORCE - AIR FORCE GLOBAL WEATHER CENTRAL +58 58 FLEET NUMERICAL METEOROLOGY AND OCEANOGRAPHY CENTER, MONTEREY, CA, UNITED STATES +59 59 THE NOAA FORECAST SYSTEMS LABORATORY, BOULDER, CO, UNITED STATES +60 60 UNITED STATES NATIONAL CENTER FOR ATMOSPHERIC RESEARCH (NCAR) +61 61 SERVICE ARGOS - LANDOVER +62 62 US NAVAL OCEANOGRAPHIC OFFICE +63 63 INTERNATIONAL RESEARCH INSTITUTE FOR CLIMATE AND SOCIETY (IRI) +64 64 HONOLULU (RSMC) +65 65 DARWIN (RSMC) +66 66 ) +67 67 MELBOURNE (RSMC) +68 68 RESERVED +69 69 WELLINGTON (RSMC) +70 70 ) +71 71 NADI (RSMC) +72 72 SINGAPORE +73 73 MALAYSIA (NMC) +74 74 UK METEOROLOGICAL OFFICE ­ EXETER (RSMC) +75 75 ) +76 76 MOSCOW (RSMC) +77 77 RESERVED +78 78 OFFENBACH (RSMC) +79 79 ) +80 80 ROME (RSMC) +81 81 ) +82 82 NORRKöPING +83 83 ) +84 84 TOULOUSE (RSMC) +85 85 TOULOUSE (RSMC) +86 86 HELSINKI +87 87 BELGRADE +88 88 OSLO +89 89 PRAGUE +90 90 EPISKOPI +91 91 ANKARA +92 92 FRANKFURT/MAIN +93 93 LONDON (WAFC) +94 94 COPENHAGEN +95 95 ROTA +96 96 ATHENS +97 97 EUROPEAN SPACE AGENCY (ESA) +98 98 EUROPEAN CENTRE FOR MEDIUM-RANGE WEATHER FORECASTS (ECMWF) (RSMC) +99 99 DE BILT +100 100 BRAZZAVILLE +101 101 ABIDJAN +102 102 LIBYA (NMC) +103 103 MADAGASCAR (NMC) +104 104 MAURITIUS (NMC) +105 105 NIGER (NMC) +106 106 SEYCHELLES (NMC) +107 107 UGANDA (NMC) +108 108 UNITED REPUBLIC OF TANZANIA (NMC) +109 109 ZIMBABWE (NMC) +110 110 HONG-KONG, CHINA +111 111 AFGHANISTAN (NMC) +112 112 BAHRAIN (NMC) +113 113 BANGLADESH (NMC) +114 114 BHUTAN (NMC) +115 115 CAMBODIA (NMC) +116 116 DEMOCRATIC PEOPLE'S REPUBLIC OF KOREA (NMC) +117 117 ISLAMIC REPUBLIC OF IRAN (NMC) +118 118 IRAQ (NMC) +119 119 KAZAKHSTAN (NMC) +120 120 KUWAIT (NMC) +121 121 KYRGYZSTAN (NMC) +122 122 LAO PEOPLE'S DEMOCRATIC REPUBLIC (NMC) +123 123 MACAO, CHINA +124 124 MALDIVES (NMC) +125 125 MYANMAR (NMC) +126 126 NEPAL (NMC) +127 127 OMAN (NMC) +128 128 PAKISTAN (NMC) +129 129 QATAR (NMC) +130 130 YEMEN (NMC) +131 131 SRI LANKA (NMC) +132 132 TAJIKISTAN (NMC) +133 133 TURKMENISTAN (NMC) +134 134 UNITED ARAB EMIRATES (NMC) +135 135 UZBEKISTAN (NMC) +136 136 VIET NAM (NMC) +140 140 BOLIVIA (PLURINATIONAL STATE OF) (NMC) +141 141 GUYANA (NMC) +142 142 PARAGUAY (NMC) +143 143 SURINAME (NMC) +144 144 URUGUAY (NMC) +145 145 FRENCH GUIANA +146 146 BRAZILIAN NAVY HYDROGRAPHIC CENTRE +147 147 NATIONAL COMMISSION ON SPACE ACTIVITIES (CONAE) - ARGENTINA +148 148 BRAZILIAN DEPARTMENT OF AIRSPACE CONTROL - DECEA +149 149 RESERVED FOR OTHER CENTRES +150 150 ANTIGUA AND BARBUDA (NMC) +151 151 BAHAMAS (NMC) +152 152 BARBADOS (NMC) +153 153 BELIZE (NMC) +154 154 BRITISH CARIBBEAN TERRITORIES CENTRE +155 155 SAN JOSé +156 156 CUBA (NMC) +157 157 DOMINICA (NMC) +158 158 DOMINICAN REPUBLIC (NMC) +159 159 EL SALVADOR (NMC) +160 160 US NOAA/NESDIS +161 161 US NOAA OFFICE OF OCEANIC AND ATMOSPHERIC RESEARCH +162 162 GUATEMALA (NMC) +163 163 HAITI (NMC) +164 164 HONDURAS (NMC) +165 165 JAMAICA (NMC) +166 166 MEXICO CITY +167 167 CURAçAO AND SINT MAARTEN (NMC) +168 168 NICARAGUA (NMC) +169 169 PANAMA (NMC) +170 170 SAINT LUCIA (NMC) +171 171 TRINIDAD AND TOBAGO (NMC) +172 172 FRENCH DEPARTMENTS IN RA IV +173 173 US NATIONAL AERONAUTICS AND SPACE ADMINISTRATION (NASA) +174 174 INTEGRATED SCIENCE DATA MANAGEMENT/MARINE ENVIRONMENTAL DATA SERVICE (ISDM/MEDS) - CANADA +175 175 UNIVERSITY CORPORATION FOR ATMOSPHERIC RESEARCH (UCAR) - UNITED STATES +176 176 COOPERATIVE INSTITUTE FOR METEOROLOGICAL SATELLITE STUDIES (CIMSS) - UNITED STATES +177 177 NOAA NATIONAL OCEAN SERVICE - UNITED STATES +178 178 SPIRE GLOBAL, INC. +179 179 GEOOPTICS, INC. +180 180 PLANETIQ +190 190 COOK ISLANDS (NMC) +191 191 FRENCH POLYNESIA (NMC) +192 192 TONGA (NMC) +193 193 VANUATU (NMC) +194 194 BRUNEI DARUSSALAM (NMC) +195 195 INDONESIA (NMC) +196 196 KIRIBATI (NMC) +197 197 FEDERATED STATES OF MICRONESIA (NMC) +198 198 NEW CALEDONIA (NMC) +199 199 NIUE +200 200 PAPUA NEW GUINEA (NMC) +201 201 PHILIPPINES (NMC) +202 202 SAMOA (NMC) +203 203 SOLOMON ISLANDS (NMC) +204 204 NATIONAL INSTITUTE OF WATER AND ATMOSPHERIC RESEARCH (NIWA - NEW ZEALAND) +210 210 FRASCATI (ESA/ESRIN) +211 211 LANNION +212 212 LISBON +213 213 REYKJAVIK +214 214 MADRID +215 215 ZURICH +216 216 SERVICE ARGOS - TOULOUSE +217 217 BRATISLAVA +218 218 BUDAPEST +219 219 LJUBLJANA +220 220 WARSAW +221 221 ZAGREB +222 222 ALBANIA (NMC) +223 223 ARMENIA (NMC) +224 224 AUSTRIA (NMC) +225 225 AZERBAIJAN (NMC) +226 226 BELARUS (NMC) +227 227 BELGIUM (NMC) +228 228 BOSNIA AND HERZEGOVINA (NMC) +229 229 BULGARIA (NMC) +230 230 CYPRUS (NMC) +231 231 ESTONIA (NMC) +232 232 GEORGIA (NMC) +233 233 DUBLIN +234 234 ISRAEL (NMC) +235 235 JORDAN (NMC) +236 236 LATVIA (NMC) +237 237 LEBANON (NMC) +238 238 LITHUANIA (NMC) +239 239 LUXEMBOURG +240 240 MALTA (NMC) +241 241 MONACO +242 242 ROMANIA (NMC) +243 243 SYRIAN ARAB REPUBLIC (NMC) +244 244 THE FORMER YUGOSLAV REPUBLIC OF MACEDONIA (NMC) +245 245 UKRAINE (NMC) +246 246 REPUBLIC OF MOLDOVA (NMC) +247 247 OPERATIONAL PROGRAMME FOR THE EXCHANGE OF WEATHER RADAR INFORMATION (OPERA) - EUMETNET +248 248 MONTENEGRO (NMC) +249 249 BARCELONA DUST FORECAST CENTER +250 250 CONSORTIUM FOR SMALL SCALE MODELLING (COSMO) +251 251 METEOROLOGICAL COOPERATION ON OPERATIONAL NWP (METCOOP) +252 252 MAX PLANCK INSTITUTE FOR METEOROLOGY (MPI-M) +253 253 RESERVED FOR OTHER CENTRES +254 254 EUMETSAT OPERATION CENTRE +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/1034.table b/definitions/bufr/tables/0/wmo/36/codetables/1034.table new file mode 100644 index 000000000..fab134d61 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/1034.table @@ -0,0 +1,104 @@ +0 0 NO SUB-CENTRE +1 1 LUXEMBOURG (NMC) +2 2 FUCINO +3 3 GATINEAU +4 4 MASPALOMAS (SPAIN) +5 5 ESA ERS CENTRAL FACILITY +6 6 PRINCE ALBERT +7 7 WEST FREUGH +8 8 LANGLEY RESEARCH CENTER +9 9 MARSHALL SPACE FLIGHT CENTER +10 10 TROMSO (NORWAY) +11 11 MCMURDO (ANTARCTICA) +12 12 SODANKYLA (FINLAND) +13 13 TROMSO +14 14 BARROW (UNITED STATES) +15 15 ROTHERA (ANTARCTICA) +16 16 SPACE WEATHER PREDICTION CENTER +17 17 ESRL GLOBAL SYSTEMS DIVISION +18 18 SIPAM-PORTO VELHO-RO +19 19 SIPAM-BELéM-PA +20 20 MASPALOMAS (SPAIN) +21 21 AGENZIA SPAZIALE ITALIANA (ITALY) +22 22 CENTRE NATIONAL DE LA RECHERCHE SCIENTIFIQUE (FRANCE) +23 23 GEOFORSCHUNGS ZENTRUM (GERMANY) +24 24 GEODETIC OBSERVATORY PECNY (CZECHIA) +25 25 INSTITUT D'ESTUDIS ESPACIALS DE CATALUNYA (SPAIN) +26 26 FEDERAL OFFICE OF TOPOGRAPHY (SWITZERLAND) +27 27 NORDIC COMMISSION OF GEODESY (NORWAY) +28 28 NORDIC COMMISSION OF GEODESY (SWEDEN) +29 29 INSTITUTE GéOGRAPHIQUE NATIONAL (FRANCE) - SERVICE DE GéODéSIE +30 30 KANGERLUSSUAQ (GREENLAND) +31 31 INSTITUTE OF ENGINEERING SATELLITE SURVEYING AND GEODESY (UNITED KINGDOM) +32 32 JOINT OPERATIONAL METEOROLOGY AND OCEANOGRAPHY CENTRE (JOMOC) +33 33 KONINKLIJK NEDERLANDS METEOROLOGISCH INSTITUT (NETHERLANDS) +34 34 NORDIC GPS ATMOSPHERIC ANALYSIS CENTRE (SWEDEN) +35 35 INSTITUTO GEOGRAFICO NACIONAL DE ESPAñA (SPAIN) +36 36 MET ÉIREANN (IRELAND) +37 37 ROYAL OBSERVATORY OF BELGIUM (BELGIUM) +40 40 EDMONTON (CANADA) +50 50 BEDFORD (CANADA) +60 60 GANDER (CANADA) +64 64 BUNDESWEHR GEOINFORMATION OFFICE (BGIO) +70 70 MONTEREY (UNITED STATES) +76 76 ROSHYDROMET (RUSSIAN FEDERATION) +78 78 DEUTSCHER WETTERDIENST (GERMANY) +80 80 WALLOPS ISLAND (UNITED STATES) +90 90 GILMOR CREEK (UNITED STATES) +96 96 HELLENIC NATIONAL METEOROLOGICAL SERVICE (GREECE) +100 100 ATHENS (GREECE) +101 101 ALBANIA (NMC) +102 102 NATIONAL RESEARCH COUNCIL/INSTITUTE OF ATMOSPHERIC SCIENCES AND CLIMATE (CNR-ISAC) +110 110 NOWCAST MOBILE (LIGHTNING DATA) +120 120 EWA BEACH, HAWAII +125 125 FORD ISLAND, HAWAII +130 130 MIAMI, FLORIDA +140 140 LANNION (FRANCE) +150 150 SVALBARD (NORWAY) +170 170 ST DENIS (LA RéUNION) +180 180 MOSCOW +190 190 MUSCAT +200 200 KHABAROVSK +201 201 RHEINISCHES INSTITUT FüR UMWELTFORSCHUNG AN DER UNIVERSITäT ZU KöLN E.V. (GERMANY) +202 202 INSTITUT FRANçAIS DE RECHERCHE POUR L'EXPLOITATION DE LA MER +203 203 AARHUS UNIVERSITY (DENMARK) +204 204 INSTITUTE OF ENVIRONMENTAL PROTECTION - NATIONAL RESEARCH INSTITUTE (POLAND) +205 205 NIUE +206 206 RAROTONGA (COOK ISLANDS) +207 207 APIA (SAMOA) +208 208 TONGA +209 209 TUVALU +210 210 NOVOSIBIRSK +211 211 TOKELAU +214 214 DARWIN +215 215 METEOSWISS (SWITZERLAND) +217 217 PERTH +219 219 TOWNSVILLE +220 220 INSTITUTE OF METEOROLOGY AND WATER MANAGEMENT (POLAND) +221 221 SCHLESWIG-HOLSTEIN, TRAFFIC OPERATIONS COMPUTING CENTRE (TOCC) KIEL/NEUMüNSTER +222 222 HAMBURG, TOCC HAMBURG +223 223 NIEDERSACHSEN, TOCC HANNOVER +224 224 AUSTRIA (NMC) +225 225 NORDRHEIN-WESTFALEN, TOCC KAMEN LEVERKUSEN +226 226 HESSEN, TOCC RüSSELSHEIM +227 227 RHEINLAND-PFALZ, TOCC KOBLENZ +228 228 BADEN-WüRTTEMBERG, TOCC LUDWIGSBURG +229 229 BAYERN, TOCC FREIMANN +230 230 SAARLAND, TOCC ROHRBACH +231 231 BAYERN, AUTOBAHN DIRECTORATE NORDBAYERN +232 232 BRANDENBURG, TOCC STOLPE +233 233 MECKLENBURG-VORPOMMERN, TOCC MALCHOW +234 234 SACHSEN, TOCC DRESDEN +235 235 SACHSEN-ANHALT, TOCC HALLE +236 236 THüRINGEN, TOCC ERFURT +237 237 EASYWAY - METEOTRANS +240 240 KIYOSE +241 241 REANALYSIS PROJECT +242 242 NATIONAL METEOROLOGICAL ADMINISTRATION (ROMANIA) +243 243 KELBURN +245 245 JINCHEON +249 249 SINGAPORE +250 250 VLADIVOSTOCK +251 251 GUAM +252 252 HONOLULU +254 254 EUMETSAT diff --git a/definitions/bufr/tables/0/wmo/36/codetables/1036.table b/definitions/bufr/tables/0/wmo/36/codetables/1036.table new file mode 100644 index 000000000..e7e4045e3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/1036.table @@ -0,0 +1,38 @@ +36001 36001 AUSTRALIA, BUREAU OF METEOROLOGY (BOM) +36002 36002 AUSTRALIA, JOINT AUSTRALIAN FACILITY FOR OCEAN OBSERVING SYSTEMS (JAFOOS) +36003 36003 AUSTRALIA, THE COMMONWEALTH SCIENTIFIC AND INDUSTRIAL RESEARCH ORGANIZATION (CSIRO) +124001 124001 CANADA, MARINE ENVIRONMENTAL DATA SERVICE (MEDS) +124002 124002 CANADA, INSTITUTE OF OCEAN SCIENCES (IOS) +124173 124173 CANADA, ENVIRONMENT CANADA +124174 124174 CANADA, DEPARTMENT OF NATIONAL DEFENCE +124175 124175 CANADA, NAV CANADA +156001 156001 CHINA, THE STATE OCEANIC ADMINISTRATION +156002 156002 CHINA, SECOND INSTITUTE OF OCEANOGRAPHY, STATE OCEANIC ADMINISTRATION +156003 156003 CHINA, INSTITUTE OF OCEAN TECHNOLOGY +250001 250001 FRANCE, INSTITUT DE RECHERCHE POUR LE DéVELOPPEMENT (IRD) +250002 250002 FRANCE, INSTITUT FRANçAIS DE RECHERCHE POUR L'EXPLOITATION DE LA MER (IFREMER) +276001 276001 GERMANY, BUNDESAMT FUER SEESCHIFFAHRT UND HYDROGRAPHIE (BSH) +276002 276002 GERMANY, INSTITUT FUER MEERESKUNDE, KIEL +356001 356001 INDIA, NATIONAL INSTITUTE OF OCEANOGRAPHY (NIO) +356002 356002 INDIA, NATIONAL INSTITUTE FOR OCEAN TECHNOLOGY (NIOT) +356003 356003 INDIA, NATIONAL CENTRE FOR OCEAN INFORMATION SERVICE +392001 392001 JAPAN, JAPAN METEOROLOGICAL AGENCY (JMA) +392002 392002 JAPAN, FRONTIER OBSERVATIONAL RESEARCH SYSTEM FOR GLOBAL CHANGE +392003 392003 JAPAN, JAPAN MARINE SCIENCE AND TECHNOLOGY CENTRE (JAMSTEC) +410001 410001 REPUBLIC OF KOREA, SEOUL NATIONAL UNIVERSITY +410002 410002 REPUBLIC OF KOREA, KOREA OCEAN RESEARCH AND DEVELOPMENT INSTITUTE (KORDI) +410003 410003 REPUBLIC OF KOREA, METEOROLOGICAL RESEARCH INSTITUTE +540001 540001 NEW CALEDONIA, INSTITUT DE RECHERCHE POUR LE DéVELOPPEMENT (IRD) +554001 554001 NEW ZEALAND, NATIONAL INSTITUTE OF WATER AND ATMOSPHERIC RESEARCH (NIWA) +643001 643001 RUSSIAN FEDERATION, STATE OCEANOGRAPHIC INSTITUTE OF ROSHYDROMET +643002 643002 RUSSIAN FEDERATION, FEDERAL SERVICE FOR HYDROMETEOROLOGY AND ENVIRONMENTAL MONITORING +724001 724001 SPAIN, INSTITUTO ESPAñOL DE OCEANOGRAFIA +826001 826001 UNITED KINGDOM, HYDROGRAPHIC OFFICE +826002 826002 UNITED KINGDOM, SOUTHAMPTON OCEANOGRAPHY CENTRE (SOC) +840001 840001 USA, NOAA ATLANTIC OCEANOGRAPHIC AND METEOROLOGICAL LABORATORIES (AOML) +840002 840002 USA, NOAA PACIFIC MARINE ENVIRONMENTAL LABORATORIES (PMEL) +840003 840003 USA, SCRIPPS INSTITUTION OF OCEANOGRAPHY (SIO) +840004 840004 USA, WOODS HOLE OCEANOGRAPHIC INSTITUTION (WHOI) +840005 840005 USA, UNIVERSITY OF WASHINGTON +840006 840006 USA, NAVAL OCEANOGRAPHIC OFFICE +1048575 1048575 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/1038.table b/definitions/bufr/tables/0/wmo/36/codetables/1038.table new file mode 100644 index 000000000..2eee38baf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/1038.table @@ -0,0 +1,7 @@ +0 0 NO SEA ICE SET +1 1 NSIDC SSM/I CAVALIERI ET AL (1992) +2 2 AMSR-E +3 3 ECMWF +4 4 CMS (FRANCE) CLOUD MASK USED BY MEDSPIRATION +5 5 EUMETSAT OSI-SAF +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/1044.table b/definitions/bufr/tables/0/wmo/36/codetables/1044.table new file mode 100644 index 000000000..c419e8307 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/1044.table @@ -0,0 +1,9 @@ +0 0 RESERVED +1 1 FULL WEIGHTED MIXTURE OF INDIVIDUAL QUALITY TESTS +2 2 WEIGHTED MIXTURE OF INDIVIDUAL TESTS, BUT EXCLUDING FORECAST COMPARISON +3 3 RECURSIVE FILTER FUNCTION +4 4 COMMON QUALITY INDEX (QI) WITHOUT FORECAST +5 5 QI WITHOUT FORECAST +6 6 QI WITH FORECAST +7 7 ESTIMATED ERROR IN M/S CONVERTED TO A PERCENT CONFIDENCE +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/1052.table b/definitions/bufr/tables/0/wmo/36/codetables/1052.table new file mode 100644 index 000000000..b8e14ed0f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/1052.table @@ -0,0 +1,4 @@ +0 0 PRIMARY +1 1 SECONDARY +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/1090.table b/definitions/bufr/tables/0/wmo/36/codetables/1090.table new file mode 100644 index 000000000..55f7ca25d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/1090.table @@ -0,0 +1,5 @@ +0 0 LAGGED-AVERAGE FORECASTING (LAF) +1 1 BREEDING +2 2 SINGULAR VECTORS +3 3 MULTIPLE ANALYSIS CYCLES +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/1092.table b/definitions/bufr/tables/0/wmo/36/codetables/1092.table new file mode 100644 index 000000000..ce982034d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/1092.table @@ -0,0 +1,6 @@ +0 0 UNPERTURBED HIGH-RESOLUTION CONTROL FORECAST +1 1 UNPERTURBED LOW-RESOLUTION CONTROL FORECAST +2 2 NEGATIVELY PERTURBED FORECAST +3 3 POSITIVELY PERTURBED FORECAST +4 4 PERTURBED FORECAST +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/1101.table b/definitions/bufr/tables/0/wmo/36/codetables/1101.table new file mode 100644 index 000000000..b5792ddac --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/1101.table @@ -0,0 +1,202 @@ +100 100 ALGERIA +101 101 ANGOLA +102 102 BENIN +103 103 BOTSWANA +104 104 BURKINA FASO +105 105 BURUNDI +106 106 CAMEROON +107 107 CABO VERDE +108 108 CENTRAL AFRICAN REPUBLIC +109 109 CHAD +110 110 COMOROS +111 111 CONGO +112 112 CôTE D'IVOIRE +113 113 DEMOCRATIC REPUBLIC OF THE CONGO +114 114 DJIBOUTI +115 115 EGYPT +116 116 ERITREA +117 117 ETHIOPIA +118 118 FRANCE (RA I) +119 119 GABON +120 120 GAMBIA +121 121 GHANA +122 122 GUINEA +123 123 GUINEA-BISSAU +124 124 KENYA +125 125 LESOTHO +126 126 LIBERIA +127 127 LIBYA +128 128 MADAGASCAR +129 129 MALAWI +130 130 MALI +131 131 MAURITANIA +132 132 MAURITIUS +133 133 MOROCCO +134 134 MOZAMBIQUE +135 135 NAMIBIA +136 136 NIGER +137 137 NIGERIA +138 138 PORTUGAL (RA I) +139 139 RWANDA +140 140 SAO TOME AND PRINCIPE +141 141 SENEGAL +142 142 SEYCHELLES +143 143 SIERRA LEONE +144 144 SOMALIA +145 145 SOUTH AFRICA +146 146 SPAIN (RA I) +147 147 SUDAN +148 148 ESWATINI +149 149 TOGO +150 150 TUNISIA +151 151 UGANDA +152 152 UNITED KINGDOM OF GREAT BRITAIN AND NORTHERN IRELAND (RA I) +153 153 UNITED REPUBLIC OF TANZANIA +154 154 ZAMBIA +155 155 ZIMBABWE +200 200 AFGHANISTAN +201 201 BAHRAIN +202 202 BANGLADESH +203 203 BHUTAN +204 204 CAMBODIA +205 205 CHINA +206 206 DEMOCRATIC PEOPLE'S REPUBLIC OF KOREA +207 207 HONG KONG, CHINA +208 208 INDIA +209 209 IRAN, ISLAMIC REPUBLIC OF +210 210 IRAQ +211 211 JAPAN +212 212 KAZAKHSTAN +213 213 KUWAIT +214 214 KYRGYZSTAN +215 215 LAO PEOPLE'S DEMOCRATIC REPUBLIC +216 216 MACAO, CHINA +217 217 MALDIVES +218 218 MONGOLIA +219 219 MYANMAR +220 220 NEPAL +221 221 OMAN +222 222 PAKISTAN +223 223 QATAR +224 224 REPUBLIC OF KOREA +225 225 YEMEN +226 226 RUSSIAN FEDERATION (RA II) +227 227 SAUDI ARABIA +228 228 SRI LANKA +229 229 TAJIKISTAN +230 230 THAILAND +231 231 TURKMENISTAN +232 232 UNITED ARAB EMIRATES +233 233 UZBEKISTAN +234 234 VIET NAM +300 300 ARGENTINA +301 301 BOLIVIA (PLURINATIONAL STATE OF) +302 302 BRAZIL +303 303 CHILE +304 304 COLOMBIA +305 305 ECUADOR +306 306 FRANCE (RA III) +307 307 GUYANA +308 308 PARAGUAY +309 309 PERU +310 310 SURINAME +311 311 URUGUAY +312 312 VENEZUELA (BOLIVARIAN REPUBLIC OF) +400 400 ANTIGUA AND BARBUDA +401 401 BAHAMAS +402 402 BARBADOS +403 403 BELIZE +404 404 BRITISH CARIBBEAN TERRITORIES +405 405 CANADA +406 406 COLOMBIA +407 407 COSTA RICA +408 408 CUBA +409 409 DOMINICA +410 410 DOMINICAN REPUBLIC +411 411 EL SALVADOR +412 412 FRANCE (RA IV) +413 413 GUATEMALA +414 414 HAITI +415 415 HONDURAS +416 416 JAMAICA +417 417 MEXICO +418 418 CURAçAO AND SINT MAARTEN +419 419 NICARAGUA +420 420 PANAMA +421 421 SAINT LUCIA +422 422 TRINIDAD AND TOBAGO +423 423 UNITED KINGDOM OF GREAT BRITAIN AND NORTHERN IRELAND (RA IV) +424 424 UNITED STATES OF AMERICA (RA IV) +425 425 VENEZUELA (BOLIVARIAN REPUBLIC OF) +500 500 AUSTRALIA +501 501 BRUNEI DARUSSALAM +502 502 COOK ISLANDS +503 503 FIJI +504 504 FRENCH POLYNESIA +505 505 INDONESIA +506 506 KIRIBATI +507 507 MALAYSIA +508 508 MICRONESIA, FEDERATED STATES OF +509 509 NEW CALEDONIA +510 510 NEW ZEALAND +511 511 NIUE +512 512 PAPUA NEW GUINEA +513 513 PHILIPPINES +514 514 SAMOA +515 515 SINGAPORE +516 516 SOLOMON ISLANDS +517 517 TONGA +518 518 UNITED KINGDOM OF GREAT BRITAIN AND NORTHERN IRELAND (RA V) +519 519 UNITED STATES OF AMERICA (RA V) +520 520 VANUATU +600 600 ALBANIA +601 601 ARMENIA +602 602 AUSTRIA +603 603 AZERBAIJAN +604 604 BELARUS +605 605 BELGIUM +606 606 BOSNIA AND HERZEGOVINA +607 607 BULGARIA +608 608 CROATIA +609 609 CYPRUS +610 610 CZECHIA +611 611 DENMARK +612 612 ESTONIA +613 613 FINLAND +614 614 FRANCE (RA VI) +615 615 GEORGIA +616 616 GERMANY +617 617 GREECE +618 618 HUNGARY +619 619 ICELAND +620 620 IRELAND +621 621 ISRAEL +622 622 ITALY +623 623 JORDAN +624 624 KAZAKHSTAN +625 625 LATVIA +626 626 LEBANON +627 627 LITHUANIA +628 628 LUXEMBOURG +629 629 MALTA +630 630 MONACO +631 631 MONTENEGRO +632 632 NETHERLANDS +633 633 NORWAY +634 634 POLAND +635 635 PORTUGAL (RA VI) +636 636 REPUBLIC OF MOLDOVA +637 637 ROMANIA +638 638 RUSSIAN FEDERATION (RA VI) +639 639 SERBIA +640 640 SLOVAKIA +641 641 SLOVENIA +642 642 SPAIN (RA VI) +643 643 SWEDEN +644 644 SWITZERLAND +645 645 SYRIAN ARAB REPUBLIC +646 646 THE FORMER YUGOSLAV REPUBLIC OF MACEDONIA +647 647 TURKEY +648 648 UKRAINE +649 649 UNITED KINGDOM OF GREAT BRITAIN AND NORTHERN IRELAND (RA VI) +1023 1023 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/11030.table b/definitions/bufr/tables/0/wmo/36/codetables/11030.table new file mode 100644 index 000000000..253b8fccc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/11030.table @@ -0,0 +1,25 @@ +0 0 NIL +1 1 LIGHT +2 2 MODERATE +3 3 SEVERE +4 4 NIL +5 5 LIGHT +6 6 MODERATE +7 7 SEVERE +8 8 NIL +9 9 LIGHT +10 10 MODERATE +11 11 SEVERE +12 12 EXTREME, IN CLEAR AIR +13 13 EXTREME, IN CLOUD +14 14 EXTREME, CLOUD/CLEAR AIR NOT SPECIFIED +15 15 LIGHT, ISOLATED MODERATE +16 16 LIGHT, OCCASIONAL MODERATE +17 17 LIGHT, FREQUENTLY MODERATE +18 18 MODERATE, ISOLATED SEVERE +19 19 MODERATE, OCCASIONAL SEVERE +20 20 MODERATE, FREQUENTLY SEVERE +21 21 SEVERE, ISOLATED EXTREME +22 22 SEVERE, OCCASIONAL EXTREME +23 23 SEVERE, FREQUENTLY EXTREME +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/11031.table b/definitions/bufr/tables/0/wmo/36/codetables/11031.table new file mode 100644 index 000000000..7bece1c85 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/11031.table @@ -0,0 +1,16 @@ +0 0 NIL +1 1 LIGHT +2 2 MODERATE +3 3 SEVERE +4 4 NIL +5 5 LIGHT +6 6 MODERATE +7 7 SEVERE +8 8 NIL +9 9 LIGHT +10 10 MODERATE +11 11 SEVERE +12 12 EXTREME, IN CLEAR AIR +13 13 EXTREME, IN CLOUD +14 14 EXTREME, CLOUD/CLEAR AIR NOT SPECIFIED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/11037.table b/definitions/bufr/tables/0/wmo/36/codetables/11037.table new file mode 100644 index 000000000..e25c9da63 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/11037.table @@ -0,0 +1,30 @@ +0 0 AVE < 0.1 +1 1 AVE < 0.1 +2 2 0.1 =< AVE < 0.2 +3 3 AVE <0.1 +4 4 0.1 =< AVE < 0.2 +5 5 0.2 =< AVE < 0.3 +6 6 AVE < 0.1 +7 7 0.1 =< AVE < 0.2 +8 8 0.2 =< AVE < 0.3 +9 9 0.3 =< AVE < 0.4 +10 10 AVE < 0.1 +11 11 0.1 =< AVE < 0.2 +12 12 0.2 =< AVE < 0.3 +13 13 0.3 =< AVE < 0.4 +14 14 0.4 =< AVE < 0.5 +15 15 AVE < 0.1 +16 16 0.1 =< AVE < 0.2 +17 17 0.2 =< AVE < 0.3 +18 18 0.3 =< AVE < 0.4 +19 19 0.4 =< AVE < 0.5 +20 20 0.5 =< AVE < 0.8 +21 21 AVE < 0.1 +22 22 0.1 =< AVE < 0.2 +23 23 0.2 =< AVE < 0.3 +24 24 0.3 =< AVE < 0.4 +25 25 0.4 =< AVE < 0.5 +26 26 0.5 =< AVE < 0.8 +27 27 0.8 =< AVE +28 28 NIL +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/11038.table b/definitions/bufr/tables/0/wmo/36/codetables/11038.table new file mode 100644 index 000000000..68876b0b6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/11038.table @@ -0,0 +1,17 @@ +0 0 MIN < 1 +1 1 1 =< MIN < 2 +2 2 2 =< MIN < 3 +3 3 3 =< MIN < 4 +4 4 4 =< MIN < 5 +5 5 5 =< MIN < 6 +6 6 6 =< MIN < 7 +7 7 7 =< MIN < 8 +8 8 8 =< MIN < 9 +9 9 9 =< MIN < 10 +10 10 10 =< MIN < 11 +11 11 11 =< MIN < 12 +12 12 12 =< MIN < 13 +13 13 13 =< MIN < 14 +14 14 14 =< MIN < 15 +15 15 NO TIMING INFORMATION AVAILABLE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/11039.table b/definitions/bufr/tables/0/wmo/36/codetables/11039.table new file mode 100644 index 000000000..e5af0f23b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/11039.table @@ -0,0 +1,17 @@ +0 0 MIN < 1 +1 1 1 =< MIN < 2 +2 2 2 =< MIN < 3 +3 3 3 =< MIN < 4 +4 4 4 =< MIN < 5 +5 5 5 =< MIN < 6 +6 6 6 =< MIN < 7 +7 7 7 =< MIN < 8 +8 8 8 =< MIN < 9 +9 9 9 =< MIN < 10 +10 10 10 =< MIN < 11 +11 11 11 =< MIN < 12 +12 12 12 =< MIN < 13 +13 13 13 =< MIN < 14 +14 14 14 =< MIN < 15 +60 60 NO TIMING INFORMATION AVAILABLE +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/1150.table b/definitions/bufr/tables/0/wmo/36/codetables/1150.table new file mode 100644 index 000000000..d5cbbe24a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/1150.table @@ -0,0 +1,7 @@ +0 0 WGS84, AS USED BY ICAO SINCE 1998 +1 1 ETRS89, AS DEFINED BY EPSG:4258 +2 2 NAD83, AS DEFINED BY EPSG:4269 +3 3 DHDN, AS DEFINED BY EPSG:4314 +4 4 ELLIPSOIDAL DATUM USING THE INTERNATIONAL REFERENCE MERIDIAN AND THE INTERNATIONAL REFERENCE POLE AS THE PRIME MERIDIAN AND PRIME POLE, RESPECTIVELY, AND THE ORIGIN OF THE INTERNATIONAL TERRESTRIAL REFERENCE SYSTEM (ITRS) (SEE NOTE 2). THE INTERNATIONAL REFERENCE MERIDIAN, INTERNATIONAL REFERENCE POLE AND ITRS ARE MAINTAINED BY THE INTERNATIONAL EARTH ROTATION AND REFERENCE SYSTEMS SERVICE (IERS) +5 5 EARTH-CENTERED, EARTH-FIXED (ECEF) COORDINATE SYSTEM OR EARTH-CENTRED ROTATIONAL (ECR) SYSTEM. THIS IS A RIGHT-HANDED CARTESIAN COORDINATE SYSTEM (X, Y, Z) ROTATING WITH THE EARTH. THE ORIGIN IS DEFINED BY THE CENTRE OF MASS OF THE EARTH. (FOOTNOTE (5) OF CLASS 27 DOES NOT APPLY IF ECEF COORDINATES ARE SPECIFIED.) +65535 65535 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/1151.table b/definitions/bufr/tables/0/wmo/36/codetables/1151.table new file mode 100644 index 000000000..8907f2371 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/1151.table @@ -0,0 +1,3 @@ +0 0 EARTH GRAVITATIONAL MODEL 1996 +1 1 BALTIC HEIGHT SYSTEM 1977 +4095 4095 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/13038.table b/definitions/bufr/tables/0/wmo/36/codetables/13038.table new file mode 100644 index 000000000..19bc42216 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/13038.table @@ -0,0 +1,4 @@ +0 0 NOT SUPERADIABATIC +1 1 SUPERADIABATIC +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/13039.table b/definitions/bufr/tables/0/wmo/36/codetables/13039.table new file mode 100644 index 000000000..c070b1da9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/13039.table @@ -0,0 +1,3 @@ +0 0 SEA ICE +1 1 SNOW ON LAND +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/13040.table b/definitions/bufr/tables/0/wmo/36/codetables/13040.table new file mode 100644 index 000000000..30cccb03b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/13040.table @@ -0,0 +1,13 @@ +0 0 LAND +1 1 RESERVED +2 2 NEAR COAST +3 3 ICE +4 4 POSSIBLE ICE +5 5 OCEAN +6 6 COAST +7 7 INLAND WATER +8 8 SNOW COVER +9 9 SEA ICE +10 10 STANDING WATER +11 11 SNOW +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/13041.table b/definitions/bufr/tables/0/wmo/36/codetables/13041.table new file mode 100644 index 000000000..9e77b6466 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/13041.table @@ -0,0 +1,10 @@ +1 1 A +2 2 A - B +3 3 B +4 4 B - C +5 5 C +6 6 D +7 7 E +8 8 F +9 9 G +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/13051.table b/definitions/bufr/tables/0/wmo/36/codetables/13051.table new file mode 100644 index 000000000..4bdb73e71 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/13051.table @@ -0,0 +1,8 @@ +0 0 SMALLER THAN ANY VALUE IN THE 30-YEAR PERIOD +1 1 IN THE FIRST QUINTILE +2 2 IN THE SECOND QUINTILE +3 3 IN THE THIRD QUINTILE +4 4 IN THE FOURTH QUINTILE +5 5 IN THE FIFTH QUINTILE +6 6 GREATER THAN ANY VALUE IN THE 30-YEAR PERIOD +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/13056.table b/definitions/bufr/tables/0/wmo/36/codetables/13056.table new file mode 100644 index 000000000..448c26927 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/13056.table @@ -0,0 +1,11 @@ +0 0 NO PRECIPITATION +1 1 LIGHT INTERMITTENT +2 2 MODERATE INTERMITTENT +3 3 HEAVY INTERMITTENT +4 4 VERY HEAVY INTERMITTENT +5 5 LIGHT CONTINUOUS +6 6 MODERATE CONTINUOUS +7 7 HEAVY CONTINUOUS +8 8 VERY HEAVY CONTINUOUS +9 9 VARIABLE - ALTERNATIVELY LIGHT AND HEAVY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/13057.table b/definitions/bufr/tables/0/wmo/36/codetables/13057.table new file mode 100644 index 000000000..6dfa18dd0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/13057.table @@ -0,0 +1,11 @@ +0 0 NO PRECIPITATION +1 1 WITHIN THE LAST HOUR +2 2 1 TO 2 HOURS AGO +3 3 2 TO 3 HOURS AGO +4 4 3 TO 4 HOURS AGO +5 5 4 TO 5 HOURS AGO +6 6 5 TO 6 HOURS AGO +7 7 6 TO 8 HOURS AGO +8 8 8 TO 10 HOURS AGO +9 9 MORE THAN 10 HOURS AGO +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/15025.table b/definitions/bufr/tables/0/wmo/36/codetables/15025.table new file mode 100644 index 000000000..6bb6ed508 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/15025.table @@ -0,0 +1,4 @@ +0 0 OZONE +11 11 FINE PARTICULATE MATTER (DIAMETER < 2.5 MICRONS) +12 12 FINE PARTICULATE MATTER (DIAMETER < 10 MICRONS) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/19001.table b/definitions/bufr/tables/0/wmo/36/codetables/19001.table new file mode 100644 index 000000000..af893eb9a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/19001.table @@ -0,0 +1,7 @@ +0 0 DEPRESSION OR LOW (EXTRATROPLCAL) +1 1 TROPICAL DEPRESSION +2 2 TROPICAL STORM +3 3 SEVERE TROPICAL STORM +4 4 TYPHOON +10 10 DUST/SANDSTORM +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/19008.table b/definitions/bufr/tables/0/wmo/36/codetables/19008.table new file mode 100644 index 000000000..3bcb5195a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/19008.table @@ -0,0 +1,5 @@ +0 0 RESERVED +1 1 SHALLOW (TOP OF CIRCULATION BELOW 700-HPA LEVEL) +2 2 MEDIUM (TOP BETWEEN 700-HPA AND 400-HPA LEVEL) +3 3 DEEP (TOP ABOVE 400-HPA LEVEL) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/19010.table b/definitions/bufr/tables/0/wmo/36/codetables/19010.table new file mode 100644 index 000000000..b091d96f0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/19010.table @@ -0,0 +1,3 @@ +1 1 MINIMUM VALUE OF SEA LEVEL PRESSURE +2 2 MAXIMUM VALUE OF 850 HPA RELATIVE VORTICITY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/19100.table b/definitions/bufr/tables/0/wmo/36/codetables/19100.table new file mode 100644 index 000000000..1f03a6f1b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/19100.table @@ -0,0 +1,9 @@ +3 3 DURING THE PRECEDING 15 MINUTES +4 4 DURING THE PRECEDING 30 MINUTES +5 5 DURING THE PRECEDING 1 HOUR +6 6 DURING THE PRECEDING 2 HOURS +7 7 DURING THE PRECEDING 3 HOURS +8 8 DURING THE PRECEDING 6 HOURS +9 9 DURING A PERIOD OF MORE THAN 6 HOURS +10 10 UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/19101.table b/definitions/bufr/tables/0/wmo/36/codetables/19101.table new file mode 100644 index 000000000..0cd1ff4a6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/19101.table @@ -0,0 +1,10 @@ +0 0 RESERVED +1 1 EYE VISIBLE ON RADAR SCOPE, ACCURACY GOOD (WITHIN 10 KM) +2 2 EYE VISIBLE ON RADAR SCOPE, ACCURACY FAIR (WITHIN 30 KM) +3 3 EYE VISIBLE ON RADAR SCOPE, ACCURACY POOR (WITHIN 50 KM) +4 4 POSITION OF THE CENTRE WITHIN THE AREA COVERED BY THE RADAR SCOPE, DETERMINATION BY MEANS OF THE SPIRAL-BAND OVERLAY, ACCURACY GOOD (WITHIN 10 KM) +5 5 POSITION OF THE CENTRE WITHIN THE AREA COVERED BY THE RADAR SCOPE, DETERMINATION BY MEANS OF THE SPIRAL-BAND OVERLAY, ACCURACY FAIR (WITHIN 30 KM) +6 6 POSITION OF THE CENTRE WITHIN THE AREA COVERED BY THE RADAR SCOPE, DETERMINATION BY MEANS OF THE SPIRAL-BAND OVERLAY, ACCURACY POOR (WITHIN 50 KM) +7 7 POSITION OF THE CENTRE OUTSIDE THE AREA COVERED BY THE RADAR SCOPE, EXTRAPOLATION BY MEANS OF THE SPIRAL-BAND OVERLAY +10 10 ACCURACY UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/19102.table b/definitions/bufr/tables/0/wmo/36/codetables/19102.table new file mode 100644 index 000000000..21ab7756b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/19102.table @@ -0,0 +1,8 @@ +0 0 CIRCULAR +1 1 ELLIPTICAL - THE MINOR AXIS IS AT LEAST 3/4 THE LENGTH OF THE MAJOR AXIS +2 2 ELLIPTICAL - THE MINOR AXIS IS LESS THAN 3/4 THE LENGTH OF THE MAJOR AXIS +3 3 APPARENT DOUBLE EYE +4 4 OTHER SHAPE +5 5 ILL DEFINED +6 6 UNDETERMINED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/19103.table b/definitions/bufr/tables/0/wmo/36/codetables/19103.table new file mode 100644 index 000000000..3abb184f8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/19103.table @@ -0,0 +1,12 @@ +0 0 LESS THAN 5 KM +1 1 5 TO LESS THAN 10 KM +2 2 10 TO LESS THAN 15 KM +3 3 15 TO LESS THAN 20 KM +4 4 20 TO LESS THAN 25 KM +5 5 25 TO LESS THAN 30 KM +6 6 30 TO LESS THAN 35 KM +7 7 35 TO LESS THAN 40 KM +8 8 40 TO LESS THAN 50 KM +9 9 50 KM AND GREATER +10 10 UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/19104.table b/definitions/bufr/tables/0/wmo/36/codetables/19104.table new file mode 100644 index 000000000..67ae47479 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/19104.table @@ -0,0 +1,12 @@ +0 0 EYE HAS FIRST BECOME VISIBLE DURING THE PAST 30 MINUTES +1 1 NO SIGNIFICANT CHANGE IN THE CHARACTERISTICS OR SIZE OF THE EYE +2 2 EYE HAS BECOME SMALLER WITH NO OTHER SIGNIFICANT CHANGE IN CHARACTERISTICS +3 3 EYE HAS BECOME LARGER WITH NO OTHER SIGNIFICANT CHANGE IN CHARACTERISTICS +4 4 EYE HAS BECOME LESS DISTINCT WITH NO SIGNIFICANT CHANGE IN SIZE +5 5 EYE HAS BECOME LESS DISTINCT AND DECREASED IN SIZE +6 6 EYE HAS BECOME LESS DISTINCT AND INCREASED IN SIZE +7 7 EYE HAS BECOME MORE DISTINCT WITH NO SIGNIFICANT CHANGE IN SIZE +8 8 EYE HAS BECOME MORE DISTINCT AND DECREASED IN SIZE +9 9 EYE HAS BECOME MORE DISTINCT AND INCREASED IN SIZE +10 10 CHANGE IN CHARACTER AND SIZE OF EYE CANNOT BE DETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/19105.table b/definitions/bufr/tables/0/wmo/36/codetables/19105.table new file mode 100644 index 000000000..becfceea8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/19105.table @@ -0,0 +1,10 @@ +0 0 0 TO LESS THAN 100 KM +1 1 100 TO LESS THAN 200 KM +2 2 200 TO LESS THAN 300 KM +3 3 300 TO LESS THAN 400 KM +4 4 400 TO LESS THAN 500 KM +5 5 500 TO LESS THAN 600 KM +6 6 600 TO LESS THAN 800 KM +7 7 800 KM OR MORE +10 10 DOUBTFUL OR UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/19107.table b/definitions/bufr/tables/0/wmo/36/codetables/19107.table new file mode 100644 index 000000000..ed6b79c54 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/19107.table @@ -0,0 +1,11 @@ +0 0 LESS THAN 1 HOUR +1 1 1 TO LESS THAN 2 HOURS +2 2 2 TO LESS THAN 3 HOURS +3 3 3 TO LESS THAN 6 HOURS +4 4 6 TO LESS THAN 9 HOURS +5 5 9 TO LESS THAN 12 HOURS +6 6 12 TO LESS THAN 15 HOURS +7 7 15 TO LESS THAN 18 HOURS +8 8 18 TO LESS THAN 21 HOURS +9 9 21 TO LESS THAN 30 HOURS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/19108.table b/definitions/bufr/tables/0/wmo/36/codetables/19108.table new file mode 100644 index 000000000..9350bc265 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/19108.table @@ -0,0 +1,8 @@ +0 0 CYCLONE CENTRE WITHIN 10 KM OF THE TRANSMITTED POSITION +1 1 CYCLONE CENTRE WITHIN 20 KM OF THE TRANSMITTED POSITION +2 2 CYCLONE CENTRE WITHIN 50 KM OF THE TRANSMITTED POSITION +3 3 CYCLONE CENTRE WITHIN 100 KM OF THE TRANSMITTED POSITION +4 4 CYCLONE CENTRE WITHIN 200 KM OF THE TRANSMITTED POSITION +5 5 CYCLONE CENTRE WITHIN 300 KM OF THE TRANSMITTED POSITION +6 6 CYCLONE CENTRE UNDETERMINED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/19109.table b/definitions/bufr/tables/0/wmo/36/codetables/19109.table new file mode 100644 index 000000000..e3c9c05bf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/19109.table @@ -0,0 +1,12 @@ +0 0 LESS THAN 1° OF LATITUDE +1 1 1° TO LESS THAN 2° OF LATITUDE +2 2 2° TO LESS THAN 3° OF LATITUDE +3 3 3° TO LESS THAN 4° OF LATITUDE +4 4 4° TO LESS THAN 5° OF LATITUDE +5 5 5° TO LESS THAN 6° OF LATITUDE +6 6 6° TO LESS THAN 7° OF LATITUDE +7 7 7° TO LESS THAN 8° OF LATITUDE +8 8 8° TO LESS THAN 9° OF LATITUDE +9 9 9° OF LATITUDE OR MORE +10 10 UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/19110.table b/definitions/bufr/tables/0/wmo/36/codetables/19110.table new file mode 100644 index 000000000..81f4f593c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/19110.table @@ -0,0 +1,8 @@ +0 0 MUCH WEAKENING +1 1 WEAKENING +2 2 NO CHANGE +3 3 INTENSIFICATION +4 4 STRONG INTENSIFICATION +9 9 NOT OBSERVED PREVIOUSLY +10 10 UNDETERMINED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/19113.table b/definitions/bufr/tables/0/wmo/36/codetables/19113.table new file mode 100644 index 000000000..ba46dca88 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/19113.table @@ -0,0 +1,8 @@ +1 1 CURVED BAND +2 2 SHEAR +3 3 EYE +4 4 BANDING EYE +5 5 CENTRAL DENSE OVERCAST (CDO) +6 6 EMBEDDED CENTRE +7 7 CENTRE COLD COVER (CCC) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/19117.table b/definitions/bufr/tables/0/wmo/36/codetables/19117.table new file mode 100644 index 000000000..b623197a3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/19117.table @@ -0,0 +1,4 @@ +1 1 A (CURVED BAND) +2 2 B (CDO) +3 3 C (SHEAR) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/19119.table b/definitions/bufr/tables/0/wmo/36/codetables/19119.table new file mode 100644 index 000000000..8329a8a58 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/19119.table @@ -0,0 +1,4 @@ +1 1 DT-NUMBER +2 2 PT-NUMBER +3 3 MET-NUMBER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20003.table b/definitions/bufr/tables/0/wmo/36/codetables/20003.table new file mode 100644 index 000000000..0ebc7c7e8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20003.table @@ -0,0 +1,266 @@ +0 0 CLOUD DEVELOPMENT NOT OBSERVED OR NOT OBSERVABLE +1 1 CLOUDS GENERALLY DISSOLVING OR BECOMING LESS DEVELOPED +2 2 STATE OF SKY ON THE WHOLE UNCHANGED +3 3 CLOUDS GENERALLY FORMING OR DEVELOPING +4 4 VISIBILITY REDUCED BY SMOKE, E.G. VELDT OR FOREST FIRES, INDUSTRIAL SMOKE OR VOLCANIC ASHES +5 5 HAZE +6 6 WIDESPREAD DUST IN SUSPENSION IN THE AIR, NOT RAISED BY WIND AT OR NEAR THE STATION AT THE TIME OF OBSERVATION +7 7 DUST OR SAND RAISED BY WIND AT OR NEAR THE STATION AT THE TIME OF OBSERVATION, BUT NO WELL-DEVELOPED DUST WHIRL(S) OR SAND WHIRL(S), AND NO DUSTSTORM OR SANDSTORM SEEN; OR, IN THE CASE OF SEA STATIONS AND COASTAL STATIONS, BLOWING SPRAY AT THE STATION +8 8 WELL-DEVELOPED DUST WHIRL(S) OR SAND WHIRL(S) SEEN AT OR NEAR THE STATION DURING THE PRECEDING HOUR OR AT THE SAME TIME OF OBSERVATION, BUT NO DUSTSTORM OR SANDSTORM +9 9 DUSTSTORM OR SANDSTORM WITHIN SIGHT AT THE TIME OF OBSERVATION, OR AT THE STATION DURING THE PRECEDING HOUR +10 10 MIST +11 11 PATCHES +12 12 MORE OR LESS CONTINUOUS +13 13 LIGHTNING VISIBLE, NO THUNDER HEARD +14 14 PRECIPITATION WITHIN SIGHT, NOT REACHING THE GROUND OR THE SURFACE OF THE SEA +15 15 PRECIPITATION WITHIN SIGHT, REACHING THE GROUND OR THE SURFACE OF THE SEA, BUT DISTANT, I.E. ESTIMATED TO BE MORE THAN 5 KM FROM THE STATION +16 16 PRECIPITATION WITHIN SIGHT, REACHING THE GROUND OR THE SURFACE OF THE SEA, NEAR TO, BUT NOT AT THE STATION +17 17 THUNDERSTORM, BUT NO PRECIPITATION AT THE TIME OF OBSERVATION +18 18 SQUALLS +19 19 FUNNEL CLOUD(S) +20 20 DRIZZLE (NOT FREEZING) OR SNOW GRAINS +21 21 RAIN (NOT FREEZING) +22 22 SNOW +23 23 RAIN AND SNOW OR ICE PELLETS +24 24 FREEZING DRIZZLE OR FREEZING RAIN +25 25 SHOWER(S) OF RAIN +26 26 SHOWER(S) OF SNOW, OR OF RAIN AND SNOW +27 27 SHOWER(S) OF HAIL*, OR OF RAIN AND HAIL* +28 28 FOG OR ICE FOG +29 29 THUNDERSTORM (WITH OR WITHOUT PRECIPITATION) +30 30 SLIGHT OR MODERATE DUSTSTORM OR SANDSTORM +31 31 SLIGHT OR MODERATE DUSTSTORM OR SANDSTORM +32 32 SLIGHT OR MODERATE DUSTSTORM OR SANDSTORM +33 33 SEVERE DUSTSTORM OR SANDSTORM +34 34 SEVERE DUSTSTORM OR SANDSTORM +35 35 SEVERE DUSTSTORM OR SANDSTORM +36 36 SLIGHT OR MODERATE DRIFTING SNOW +37 37 HEAVY DRIFTING SNOW +38 38 SLIGHT OR MODERATE BLOWING SNOW +39 39 HEAVY BLOWING SNOW +40 40 FOG OR ICE FOG AT A DISTANCE AT THE TIME OF OBSERVATION, BUT NOT AT THE STATION DURING THE PRECEDING HOUR, THE FOG OR ICE FOG EXTENDING TO A LEVEL ABOVE THAT OF THE OBSERVER +41 41 FOG OR ICE FOG IN PATCHES +42 42 FOG OR ICE FOG, SKY VISIBLE +43 43 FOG OR ICE FOG, SKY INVISIBLE +44 44 FOG OR ICE FOG, SKY VISIBLE +45 45 FOG OR ICE FOG, SKY INVISIBLE +46 46 FOG OR ICE FOG, SKY VISIBLE +47 47 FOG OR ICE FOG, SKY INVISIBLE +48 48 FOG, DEPOSITING RIME, SKY VISIBLE +49 49 FOG, DEPOSITING RIME, SKY INVISIBLE +50 50 DRIZZLE, NOT FREEZING, INTERMITTENT +51 51 DRIZZLE, NOT FREEZING, CONTINUOUS +52 52 DRIZZLE, NOT FREEZING, INTERMITTENT +53 53 DRIZZLE, NOT FREEZING, CONTINUOUS +54 54 DRIZZLE, NOT FREEZING, INTERMITTENT +55 55 DRIZZLE, NOT FREEZING, CONTINUOUS +56 56 DRIZZLE, FREEZING, SLIGHT +57 57 DRIZZLE, FREEZING, MODERATE OR HEAVY (DENSE) +58 58 DRIZZLE AND RAIN, SLIGHT +59 59 DRIZZLE AND RAIN, MODERATE OR HEAVY +60 60 RAIN, NOT FREEZING, INTERMITTENT +61 61 RAIN, NOT FREEZING, CONTINUOUS +62 62 RAIN, NOT FREEZING, INTERMITTENT +63 63 RAIN, NOT FREEZING, CONTINUOUS +64 64 RAIN, NOT FREEZING, INTERMITTENT +65 65 RAIN, NOT FREEZING, CONTINUOUS +66 66 RAIN, FREEZING, SLIGHT +67 67 RAIN, FREEZING, MODERATE OR HEAVY +68 68 RAIN OR DRIZZLE AND SNOW, SLIGHT +69 69 RAIN OR DRIZZLE AND SNOW, MODERATE OR HEAVY +70 70 INTERMITTENT FALL OF SNOWFLAKES +71 71 CONTINUOUS FALL OF SNOWFLAKES +72 72 INTERMITTENT FALL OF SNOWFLAKES +73 73 CONTINUOUS FALL OF SNOWFLAKES +74 74 INTERMITTENT FALL OF SNOWFLAKES +75 75 CONTINUOUS FALL OF SNOWFLAKES +76 76 DIAMOND DUST (WITH OR WITHOUT FOG) +77 77 SNOW GRAINS (WITH OR WITHOUT FOG) +78 78 ISOLATED STAR-LIKE SNOW CRYSTALS (WITH OR WITHOUT FOG) +79 79 ICE PELLETS +80 80 RAIN SHOWER(S), SLIGHT +81 81 RAIN SHOWER(S), MODERATE OR HEAVY +82 82 RAIN SHOWER(S), VIOLENT +83 83 SHOWER(S) OF RAIN AND SNOW MIXED, SLIGHT +84 84 SHOWER(S) OF RAIN AND SNOW MIXED, MODERATE OR HEAVY +85 85 SNOW SHOWER(S), SLIGHT +86 86 SNOW SHOWER(S), MODERATE OR HEAVY +87 87 SHOWER(S) OF SNOW PELLETS OR SMALL HAIL, WITH OR WITHOUT RAIN OR RAIN AND SNOW MIXED +88 88 SHOWER(S) OF SNOW PELLETS OR SMALL HAIL, WITH OR WITHOUT RAIN OR RAIN AND SNOW MIXED +89 89 SHOWER(S) OF HAIL, WITH OR WITHOUT RAIN OR RAIN AND SNOW MIXED, NOT ASSOCIATED WITH THUNDER +90 90 SHOWER(S) OF HAIL, WITH OR WITHOUT RAIN OR RAIN AND SNOW MIXED, NOT ASSOCIATED WITH THUNDER +91 91 SLIGHT RAIN AT TIME OF OBSERVATION +92 92 MODERATE OR HEAVY RAIN AT TIME OF OBSERVATION +93 93 SLIGHT SNOW, OR RAIN AND SNOW MIXED OR HAIL* AT TIME OF OBSERVATION +94 94 MODERATE OR HEAVY SNOW, OR RAIN AND SNOW MIXED OR HAIL* AT TIME OF OBSERVATION +95 95 THUNDERSTORM, SLIGHT OR MODERATE, WITHOUT HAIL*, BUT WITH RAIN AND/OR SNOW AT TIME OF OBSERVATION +96 96 THUNDERSTORM, SLIGHT OR MODERATE, WITH HAIL* AT TIME OF OBSERVATION +97 97 THUNDERSTORM, HEAVY, WITHOUT HAIL*, BUT WITH RAIN AND/OR SNOW AT TIME OF OBSERVATION +98 98 THUNDERSTORM COMBINED WITH DUSTSTORM OR SANDSTORM AT TIME OF OBSERVATION +99 99 THUNDERSTORM, HEAVY, WITH HAIL* AT TIME OF OBSERVATION +100 100 NO SIGNIFICANT WEATHER OBSERVED +101 101 CLOUDS GENERALLY DISSOLVING OR BECOMING LESS DEVELOPED DURING THE PAST HOUR +102 102 STATE OF SKY ON THE WHOLE UNCHANGED DURING THE PAST HOUR +103 103 CLOUDS GENERALLY FORMING OR DEVELOPING DURING THE PAST HOUR +104 104 HAZE OR SMOKE, OR DUST IN SUSPENSION IN THE AIR, VISIBILITY EQUAL TO, OR GREATER THAN, 1 KM +105 105 HAZE OR SMOKE, OR DUST IN SUSPENSION IN THE AIR, VISIBILITY LESS THAN 1 KM +110 110 MIST +111 111 DIAMOND DUST +112 112 DISTANT LIGHTNING +118 118 SQUALLS +119 119 RESERVED +120 120 FOG +121 121 PRECIPITATION +122 122 DRIZZLE (NOT FREEZING) OR SNOW GRAINS +123 123 RAIN (NOT FREEZING) +124 124 SNOW +125 125 FREEZING DRIZZLE OR FREEZING RAIN +126 126 THUNDERSTORM (WITH OR WITHOUT PRECIPITATION) +127 127 BLOWING OR DRIFTING SNOW OR SAND +128 128 BLOWING OR DRIFTING SNOW OR SAND, VISIBILITY EQUAL TO, OR GREATER THAN, 1 KM +129 129 BLOWING OR DRIFTING SNOW OR SAND, VISIBILITY LESS THAN 1 KM +130 130 FOG +131 131 FOG OR ICE FOG IN PATCHES +132 132 FOG OR ICE FOG, HAS BECOME THINNER DURING THE PAST HOUR +133 133 FOG OR ICE FOG, NO APPRECIABLE CHANGE DURING THE PAST HOUR +134 134 FOG OR ICE FOG, HAS BEGUN OR BECOME THICKER DURING THE PAST HOUR +135 135 FOG, DEPOSITING RIME +140 140 PRECIPITATION +141 141 PRECIPITATION, SLIGHT OR MODERATE +142 142 PRECIPITATION, HEAVY +143 143 LIQUID PRECIPITATION, SLIGHT OR MODERATE +144 144 LIQUID PRECIPITATION, HEAVY +145 145 SOLID PRECIPITATION, SLIGHT OR MODERATE +146 146 SOLID PRECIPITATION, HEAVY +147 147 FREEZING PRECIPITATION, SLIGHT OR MODERATE +148 148 FREEZING PRECIPITATION, HEAVY +149 149 RESERVED +150 150 DRIZZLE +151 151 DRIZZLE, NOT FREEZING, SLIGHT +152 152 DRIZZLE, NOT FREEZING, MODERATE +153 153 DRIZZLE, NOT FREEZING, HEAVY +154 154 DRIZZLE, FREEZING, SLIGHT +155 155 DRIZZLE, FREEZING, MODERATE +156 156 DRIZZLE, FREEZING, HEAVY +157 157 DRIZZLE AND RAIN, SLIGHT +158 158 DRIZZLE AND RAIN, MODERATE OR HEAVY +159 159 RESERVED +160 160 RAIN +161 161 RAIN, NOT FREEZING, SLIGHT +162 162 RAIN, NOT FREEZING, MODERATE +163 163 RAIN, NOT FREEZING, HEAVY +164 164 RAIN, FREEZING, SLIGHT +165 165 RAIN, FREEZING, MODERATE +166 166 RAIN, FREEZING, HEAVY +167 167 RAIN (OR DRIZZLE) AND SNOW, SLIGHT +168 168 RAIN (OR DRIZZLE) AND SNOW, MODERATE OR HEAVY +169 169 RESERVED +170 170 SNOW +171 171 SNOW, SLIGHT +172 172 SNOW, MODERATE +173 173 SNOW, HEAVY +174 174 ICE PELLETS, SLIGHT +175 175 ICE PELLETS, MODERATE +176 176 ICE PELLETS, HEAVY +177 177 SNOW GRAINS +178 178 ICE CRYSTALS +179 179 RESERVED +180 180 SHOWER(S) OR INTERMITTENT PRECIPITATION +181 181 RAIN SHOWER(S) OR INTERMITTENT RAIN, SLIGHT +182 182 RAIN SHOWER(S) OR INTERMITTENT RAIN, MODERATE +183 183 RAIN SHOWER(S) OR INTERMITTENT RAIN, HEAVY +184 184 RAIN SHOWER(S) OR INTERMITTENT RAIN, VIOLENT +185 185 SNOW SHOWER(S) OR INTERMITTENT SNOW, SLIGHT +186 186 SNOW SHOWER(S) OR INTERMITTENT SNOW, MODERATE +187 187 SNOW SHOWER(S) OR INTERMITTENT SNOW, HEAVY +188 188 RESERVED +189 189 HAIL +190 190 THUNDERSTORM +191 191 THUNDERSTORM, SLIGHT OR MODERATE, WITH NO PRECIPITATION +192 192 THUNDERSTORM, SLIGHT OR MODERATE, WITH RAIN SHOWERS AND/OR SNOW SHOWERS +193 193 THUNDERSTORM, SLIGHT OR MODERATE, WITH HAIL +194 194 THUNDERSTORM, HEAVY, WITH NO PRECIPITATION +195 195 THUNDERSTORM, HEAVY, WITH RAIN SHOWERS AND/OR SNOW SHOWERS +196 196 THUNDERSTORM, HEAVY, WITH HAIL +199 199 TORNADO +204 204 VOLCANIC ASH SUSPENDED IN THE AIR ALOFT +205 205 NOT USED +206 206 THICK DUST HAZE, VISIBILITY LESS THAN 1 KM +207 207 BLOWING SPRAY AT THE STATION +208 208 DRIFTING DUST (SAND) +209 209 WALL OF DUST OR SAND IN DISTANCE (LIKE HABOOB) +210 210 SNOW HAZE +211 211 WHITEOUT +212 212 NOT USED +213 213 LIGHTNING, CLOUD TO SURFACE +217 217 DRY THUNDERSTORM +218 218 NOT USED +219 219 TORNADO CLOUD (DESTRUCTIVE) AT OR WITHIN SIGHT OF THE STATION DURING PRECEDING HOUR OR AT THE TIME OF OBSERVATION +220 220 DEPOSITION OF VOLCANIC ASH +221 221 DEPOSITION OF DUST OR SAND +222 222 DEPOSITION OF DEW +223 223 DEPOSITION OF WET SNOW +224 224 DEPOSITION OF SOFT RIME +225 225 DEPOSITION OF HARD RIME +226 226 DEPOSITION OF HOAR FROST +227 227 DEPOSITION OF GLAZE +228 228 DEPOSITION OF ICE CRUST (ICE SLICK) +229 229 NOT USED +230 230 DUSTSTORM OR SANDSTORM WITH TEMPERATURE BELOW 0 °C +239 239 BLOWING SNOW, IMPOSSIBLE TO DETERMINE WHETHER SNOW IS FALLING OR NOT +240 240 NOT USED +241 241 FOG ON SEA +242 242 FOG IN VALLEYS +243 243 ARCTIC OR ANTARCTIC SEA SMOKE +244 244 STEAM FOG (SEA, LAKE OR RIVER) +245 245 STEAM LOG (LAND) +246 246 FOG OVER ICE OR SNOW COVER +247 247 DENSE FOG, VISIBILITY 60-90 M +248 248 DENSE FOG, VISIBILITY 30-60 M +249 249 DENSE FOG, VISIBILITY LESS THAN 30 M +250 250 DRIZZLE, RATE OF FALL - LESS THAN 0.10 MM H-1 +251 251 DRIZZLE, RATE OF FALL - 0.10-0.19 MM H-1 +252 252 DRIZZLE, RATE OF FALL - 0.20-0.39 MM H-1 +253 253 DRIZZLE, RATE OF FALL - 0.40-0.79 MM H-1 +254 254 DRIZZLE, RATE OF FALL - 0.80-1.59 MM H-1 +255 255 DRIZZLE, RATE OF FALL - 1.60-3.19 MM H-1 +256 256 DRIZZLE, RATE OF FALL - 3.20-6.39 MM H-1 +257 257 DRIZZLE, RATE OF FALL - 6.4 MM H-1 OR MORE +258 258 NOT USED +259 259 DRIZZLE AND SNOW +260 260 RAIN, RATE OF FALL - LESS THAN 1.0 MM H-1 +261 261 RAIN, RATE OF FALL - 1.0-1.9 MM H-1 +262 262 RAIN, RATE OF FALL - 2.0-3.9 MM H-1 +263 263 RAIN, RATE OF FALL - 4.0-7.9 MM H-1 +264 264 RAIN, RATE OF FALL - 8.0-15.9 MM H-1 +265 265 RAIN, RATE OF FALL - 16.0-31.9 MM H-1 +266 266 RAIN, RATE OF FALL - 32.0-63.9 MM H-1 +267 267 RAIN, RATE OF FALL - 64.0 MM H-1 OR MORE +270 270 SNOW, RATE OF FALL - LESS THAN 1.0 CM H-1 +271 271 SNOW, RATE OF FALL - 1.0-1.9 CM H-1 +272 272 SNOW, RATE OF FALL - 2.0-3.9 CM H-1 +273 273 SNOW, RATE OF FALL - 4.0-7.9 CM H-1 +274 274 SNOW, RATE OF FALL - 8.0-15.9 CM H-1 +275 275 SNOW, RATE OF FALL - 16.0-31.9 CM H-1 +276 276 SNOW, RATE OF FALL - 32.0-63.9 CM H-1 +277 277 SNOW, RATE OF FALL - 64.0 CM H-1 OR MORE +278 278 SNOW OR ICE CRYSTAL PRECIPITATION FROM A CLEAR SKY +279 279 WET SNOW, FREEZING ON CONTACT +280 280 PRECIPITATION OF RAIN +281 281 PRECIPITATION OF RAIN, FREEZING +282 282 PRECIPITATION OF RAIN AND SNOW MIXED +283 283 PRECIPITATION OF SNOW +284 284 PRECIPITATION OF SNOW PELLETS OR SMALL HALL +285 285 PRECIPITATION OF SNOW PELLETS OR SMALL HAIL, WITH RAIN +286 286 PRECIPITATION OF SNOW PELLETS OR SMALL HAIL, WITH RAIN AND SNOW MIXED +287 287 PRECIPITATION OF SNOW PELLETS OR SMALL HAIL, WITH SNOW +288 288 PRECIPITATION OF HAIL +289 289 PRECIPITATION OF HAIL, WITH RAIN +290 290 PRECIPITATION OF HALL, WITH RAIN AND SNOW MIXED +291 291 PRECIPITATION OF HAIL, WITH SNOW +292 292 SHOWER(S) OR THUNDERSTORM OVER SEA +293 293 SHOWER(S) OR THUNDERSTORM OVER MOUNTAINS +508 508 NO SIGNIFICANT PHENOMENON TO REPORT, PRESENT AND PAST WEATHER OMITTED +509 509 NO OBSERVATION, DATA NOT AVAILABLE, PRESENT AND PAST WEATHER OMITTED +510 510 PRESENT AND PAST WEATHER MISSING, BUT EXPECTED +511 511 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20004.table b/definitions/bufr/tables/0/wmo/36/codetables/20004.table new file mode 100644 index 000000000..6d6e7dac5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20004.table @@ -0,0 +1,21 @@ +0 0 CLOUD COVERING 1/2 OR LESS OF THE SKY THROUGHOUT THE APPROPRIATE PERIOD +1 1 CLOUD COVERING MORE THAN 1/2 OF THE SKY DURING PART OF THE APPROPRIATE PERIOD AND COVERING 1/2 OR LESS DURING PART OF THE PERIOD +2 2 CLOUD COVERING MORE THAN 1/2 OF THE SKY THROUGHOUT THE APPROPRIATE PERIOD +3 3 SANDSTORM, DUSTSTORM OR BLOWING SNOW +4 4 FOG OR ICE FOG OR THICK HAZE +5 5 DRIZZLE +6 6 RAIN +7 7 SNOW, OR RAIN AND SNOW MIXED +8 8 SHOWER(S) +9 9 THUNDERSTORM(S) WITH OR WITHOUT PRECIPITATION +10 10 NO SIGNIFICANT WEATHER OBSERVED +11 11 VISIBILITY REDUCED (SEE NOTE) +12 12 BLOWING PHENOMENA, VISIBILITY REDUCED +13 13 FOG (SEE NOTE) +14 14 PRECIPITATION (SEE NOTE) +15 15 DRIZZLE +16 16 RAIN +17 17 SNOW OR ICE PELLETS +18 18 SHOWERS OR INTERMITTENT PRECIPITATION +19 19 THUNDERSTORM +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20005.table b/definitions/bufr/tables/0/wmo/36/codetables/20005.table new file mode 100644 index 000000000..6d6e7dac5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20005.table @@ -0,0 +1,21 @@ +0 0 CLOUD COVERING 1/2 OR LESS OF THE SKY THROUGHOUT THE APPROPRIATE PERIOD +1 1 CLOUD COVERING MORE THAN 1/2 OF THE SKY DURING PART OF THE APPROPRIATE PERIOD AND COVERING 1/2 OR LESS DURING PART OF THE PERIOD +2 2 CLOUD COVERING MORE THAN 1/2 OF THE SKY THROUGHOUT THE APPROPRIATE PERIOD +3 3 SANDSTORM, DUSTSTORM OR BLOWING SNOW +4 4 FOG OR ICE FOG OR THICK HAZE +5 5 DRIZZLE +6 6 RAIN +7 7 SNOW, OR RAIN AND SNOW MIXED +8 8 SHOWER(S) +9 9 THUNDERSTORM(S) WITH OR WITHOUT PRECIPITATION +10 10 NO SIGNIFICANT WEATHER OBSERVED +11 11 VISIBILITY REDUCED (SEE NOTE) +12 12 BLOWING PHENOMENA, VISIBILITY REDUCED +13 13 FOG (SEE NOTE) +14 14 PRECIPITATION (SEE NOTE) +15 15 DRIZZLE +16 16 RAIN +17 17 SNOW OR ICE PELLETS +18 18 SHOWERS OR INTERMITTENT PRECIPITATION +19 19 THUNDERSTORM +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20006.table b/definitions/bufr/tables/0/wmo/36/codetables/20006.table new file mode 100644 index 000000000..cc2612116 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20006.table @@ -0,0 +1,5 @@ +0 0 LOW INSTRUMENT FLIGHT RULES - CEILING < 500 FEET AND/OR VISIBILITY < 1 MILE +1 1 INSTRUMENT FLIGHT RULES - CEILING < 1000 FEET AND/OR VISIBILITY < 3 MILES +2 2 MARGINAL VISUAL FLIGHT RULES - 1000 FEET =< CEILING < 3000 FEET AND/OR 3 MILES =< VISIBILITY < 5 MILES +3 3 VISUAL FLIGHT RULES - CEILING >= 3000 FEET AND/OR VISIBILITY >= 5 MILES +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20008.table b/definitions/bufr/tables/0/wmo/36/codetables/20008.table new file mode 100644 index 000000000..966bcc2fa --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20008.table @@ -0,0 +1,19 @@ +0 0 SKY CLEAR +1 1 FEW +2 2 SCATTERED +3 3 BROKEN +4 4 OVERCAST +5 5 RESERVED +6 6 SCATTERED/BROKEN +7 7 BROKEN/OVERCAST +8 8 ISOLATED +9 9 ISOLATED EMBEDDED +10 10 OCCASIONAL +11 11 OCCASIONAL EMBEDDED +12 12 FREQUENT +13 13 DENSE +14 14 LAYERS +15 15 OBSCURED (OBSC) +16 16 EMBEDDED (EMBD) +17 17 FREQUENT EMBEDDED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20009.table b/definitions/bufr/tables/0/wmo/36/codetables/20009.table new file mode 100644 index 000000000..f0119eb87 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20009.table @@ -0,0 +1,6 @@ +0 0 RESERVED +1 1 NSC NIL SIGNIFICANT CLOUD +2 2 CAVOK +3 3 SKC SKY CLEAR +4 4 NSW NIL SIGNIFICANT WEATHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2001.table b/definitions/bufr/tables/0/wmo/36/codetables/2001.table new file mode 100644 index 000000000..470fcccb7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2001.table @@ -0,0 +1,4 @@ +0 0 AUTOMATIC +1 1 MANNED +2 2 HYBRID: BOTH MANNED AND AUTOMATIC +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20011.table b/definitions/bufr/tables/0/wmo/36/codetables/20011.table new file mode 100644 index 000000000..06c6e106c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20011.table @@ -0,0 +1,16 @@ +0 0 0 +1 1 1 OKTA OR LESS, BUT NOT ZERO +2 2 2 OKTAS +3 3 3 OKTAS +4 4 4 OKTAS +5 5 5 OKTAS +6 6 6 OKTAS +7 7 7 OKTAS OR MORE, BUT NOT 8 OKTAS +8 8 8 OKTAS +9 9 SKY OBSCURED BY FOG AND/OR OTHER METEOROLOGICAL PHENOMENA +10 10 SKY PARTIALLY OBSCURED BY FOG AND/OR OTHER METEOROLOGICAL PHENOMENA +11 11 SCATTERED +12 12 BROKEN +13 13 FEW +14 14 RESERVED +15 15 CLOUD COVER IS INDISCERNIBLE FOR REASONS OTHER THAN FOG OR OTHER METEOROLOGICAL PHENOMENA, OR OBSERVATION IS NOT MADE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20012.table b/definitions/bufr/tables/0/wmo/36/codetables/20012.table new file mode 100644 index 000000000..c778f6077 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20012.table @@ -0,0 +1,55 @@ +0 0 CIRRUS (CI) +1 1 CIRROCUMULUS (CC) +2 2 CIRROSTRATUS (CS) +3 3 ALTOCUMULUS (AC) +4 4 ALTOSTRATUS (AS) +5 5 NIMBOSTRATUS (NS) +6 6 STRATOCUMULUS (SC) +7 7 STRATUS (ST) +8 8 CUMULUS (CU) +9 9 CUMULONIMBUS (CB) +10 10 NO CH CLOUDS +11 11 CIRRUS FIBRATUS, SOMETIMES UNCINUS, NOT PROGRESSIVELY INVADING THE SKY +12 12 CIRRUS SPISSATUS, IN PATCHES OR ENTANGLED SHEAVES, WHICH USUALLY DO NOT INCREASE AND SOMETIMES SEEM TO BE THE REMAINS OF THE UPPER PART OF A CUMULONIMBUS; OR CIRRUS CASTELLANUS OR FLOCCUS +13 13 CIRRUS SPISSATUS CUMULONIMBOGENITUS +14 14 CIRRUS UNCINUS OR FIBRATUS, OR BOTH, PROGRESSIVELY INVADING THE SKY; THEY GENERALLY THICKEN AS A WHOLE +15 15 CIRRUS (OFTEN IN BANDS) AND CIRROSTRATUS, OR CIRROSTRATUS ALONE, PROGRESSIVELY INVADING THE SKY; THEY GENERALLY THICKEN AS A WHOLE, BUT THE CONTINUOUS VEIL DOES NOT REACH 45 DEGREES ABOVE THE HORIZON +16 16 CIRRUS (OFTEN IN BANDS) AND CIRROSTRATUS, OR CIRROSTRATUS ALONE, PROGRESSIVELY INVADING THE SKY; THEY GENERALLY THICKEN AS A WHOLE; THE CONTINUOUS VEIL EXTENDS MORE THAN 45 DEGREES ABOVE THE HORIZON, WITHOUT THE SKY BEING TOTALLY COVERED +17 17 CIRROSTRATUS COVERING THE WHOLE SKY +18 18 CIRROSTRATUS NOT PROGRESSIVELY INVADING THE SKY AND NOT ENTIRELY COVERING IT +19 19 CIRROCUMULUS ALONE, OR CIRROCUMULUS PREDOMINANT AMONG THE CH CLOUDS +20 20 NO CM CLOUDS +21 21 ALTOSTRATUS TRANSLUCIDUS +22 22 ALTOSTRATUS OPACUS OR NIMBOSTRATUS +23 23 ALTOCUMULUS TRANSLUCIDUS AT A SINGLE LEVEL +24 24 PATCHES (OFTEN LENTICULAR) OF ALTOCUMULUS TRANSLUCIDUS, CONTINUALLY CHANGING AND OCCURRING AT ONE OR MORE LEVELS +25 25 ALTOCUMULUS TRANSLUCIDUS IN BANDS, OR ONE OR MORE LAYERS OF ALTOCUMULUS TRANSLUCIDUS OR OPACUS, PROGRESSIVELY INVADING THE SKY; THESE ALTOCUMULUS CLOUDS GENERALLY THICKEN AS A WHOLE +26 26 ALTOCUMULUS CUMULOGENITUS (OR CUMULONIMBOGENITUS) +27 27 ALTOCUMULUS TRANSLUCIDUS OR OPACUS IN TWO OR MORE LAYERS, OR ALTOCUMULUS OPACUS IN A SINGLE LAYER, NOT PROGRESSIVELY INVADING THE SKY, OR ALTOCUMULUS WITH ALTOSTRATUS OR NIMBOSTRATUS +28 28 ALTOCUMULUS CASTELLANUS OR FLOCCUS +29 29 ALTOCUMULUS OF A CHAOTIC SKY, GENERALLY AT SEVERAL LEVELS +30 30 NO CL CLOUDS +31 31 CUMULUS HUMILIS OR CUMULUS FRACTUS OTHER THAN OF BAD WEATHER,* OR BOTH +32 32 CUMULUS MEDIOCRIS OR CONGESTUS, TOWERING CUMULUS (TCU), WITH OR WITHOUT CUMULUS OF SPECIES FRACTUS OR HUMILIS OR STRATOCUMULUS, ALL HAVING THEIR BASES AT THE SAME LEVEL +33 33 CUMULONIMBUS CALVUS, WITH OR WITHOUT CUMULUS, STRATOCUMULUS OR STRATUS +34 34 STRATOCUMULUS CUMULOGENITUS +35 35 STRATOCUMULUS OTHER THAN STRATOCUMULUS CUMULOGENITUS +36 36 STRATUS NEBULOSUS OR STRATUS FRACTUS OTHER THAN OF BAD WEATHER,* OR BOTH +37 37 STRATUS FRACTUS OR CUMULUS FRACTUS OF BAD WEATHER,* OR BOTH (PANNUS), USUALLY BELOW ALTOSTRATUS OR NIMBOSTRATUS +38 38 CUMULUS AND STRATOCUMULUS OTHER THAN STRATOCUMULUS CUMULOGENITUS, WITH BASES AT DIFFERENT LEVELS +39 39 CUMULONIMBUS CAPILLATUS (OFTEN WITH AN ANVIL), WITH OR WITHOUT CUMULONIMBUS CALVUS, CUMULUS, STRATOCUMULUS, STRATUS OR PANNUS +40 40 CH +41 41 CM +42 42 CL +43 43 CLEAR +44 44 LIQUID WATER +45 45 SUPERCOOLED LIQUID WATER +46 46 MIXED PHASE +47 47 OPTICALLY THICK ICE +48 48 OPTICALLY THIN ICE +49 49 MULTILAYERED ICE +59 59 CLOUD NOT VISIBLE OWING TO DARKNESS, FOG, DUSTSTORM, SANDSTORM, OR OTHER ANALOGOUS PHENOMENA +60 60 CH CLOUDS INVISIBLE OWING TO DARKNESS, FOG, BLOWING DUST OR SAND, OR OTHER SIMILAR PHENOMENA, OR BECAUSE OF A CONTINUOUS LAYER OF LOWER CLOUDS +61 61 CM CLOUDS INVISIBLE OWING TO DARKNESS, FOG, BLOWING DUST OR SAND, OR OTHER SIMILAR PHENOMENA, OR BECAUSE OF CONTINUOUS LAYER OF LOWER CLOUDS +62 62 CL CLOUDS INVISIBLE OWING TO DARKNESS, FOG, BLOWING DUST OR SAND, OR OTHER SIMILAR PHENOMENA +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20017.table b/definitions/bufr/tables/0/wmo/36/codetables/20017.table new file mode 100644 index 000000000..5ec10bd41 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20017.table @@ -0,0 +1,11 @@ +0 0 ISOLATED CLOUD FRAGMENTS OF CLOUDS +1 1 CONTINUOUS CLOUD +2 2 BROKEN CLOUD - SMALL BREAKS +3 3 BROKEN CLOUD - LARGE BREAKS +4 4 CONTINUOUS CLOUD +5 5 BROKEN CLOUD - SMALL BREAKS +6 6 BROKEN CLOUD - LARGE BREAKS +7 7 CONTINUOUS OR ALMOST CONTINUOUS WAVES WITH TOWERING CLOUDS ABOVE THE TOP OF THE LAYER +8 8 GROUPS OF WAVES WITH TOWERING CLOUDS ABOVE THE TOP OF THE LAYER +9 9 TWO OR MORE LAYERS AT DIFFERENT LEVELS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20018.table b/definitions/bufr/tables/0/wmo/36/codetables/20018.table new file mode 100644 index 000000000..c0ffc3693 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20018.table @@ -0,0 +1,4 @@ +0 0 INCREASING (U) +1 1 DECREASING (D) +2 2 NO DISTINCT CHANGE (N) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2002.table b/definitions/bufr/tables/0/wmo/36/codetables/2002.table new file mode 100644 index 000000000..a701e1e40 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2002.table @@ -0,0 +1,3 @@ +1 1 CERTIFIED INSTRUMENTS +2 2 ORIGINALLY MEASURED IN KNOTS +3 3 ORIGINALLY MEASURED IN KM H-1 diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20021.table b/definitions/bufr/tables/0/wmo/36/codetables/20021.table new file mode 100644 index 000000000..747a7591e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20021.table @@ -0,0 +1,23 @@ +1 1 PRECIPITATION - UNKNOWN TYPE +2 2 LIQUID PRECIPITATION NOT FREEZING +3 3 LIQUID FREEZING PRECIPITATION +4 4 DRIZZLE +5 5 RAIN +6 6 SOLID PRECIPITATION +7 7 SNOW +8 8 SNOW GRAINS +9 9 SNOW PELLETS +10 10 ICE PELLETS +11 11 ICE CRYSTALS +12 12 DIAMOND DUST +13 13 SMALL HAIL +14 14 HAIL +15 15 GLAZE +16 16 RIME +17 17 SOFT RIME +18 18 HARD RIME +19 19 CLEAR ICE +20 20 WET SNOW +21 21 HOAR FROST +22 22 DEW +23 23 WHITE DEW diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20022.table b/definitions/bufr/tables/0/wmo/36/codetables/20022.table new file mode 100644 index 000000000..a551aac0e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20022.table @@ -0,0 +1,7 @@ +0 0 NO PRECIPITATION +1 1 CONTINUOUS +2 2 INTERMITTENT +3 3 SHOWER +4 4 NOT REACHING GROUND +5 5 DEPOSITION +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20023.table b/definitions/bufr/tables/0/wmo/36/codetables/20023.table new file mode 100644 index 000000000..97670dfbb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20023.table @@ -0,0 +1,14 @@ +1 1 DUST/SAND WHIRL +2 2 SQUALLS +3 3 SANDSTORM +4 4 DUSTSTORM +5 5 LIGHTNING - CLOUD TO SURFACE +6 6 LIGHTNING - CLOUD TO CLOUD +7 7 LIGHTNING - DISTANT +8 8 THUNDERSTORM +9 9 FUNNEL CLOUD NOT TOUCHING SURFACE +10 10 FUNNEL CLOUD TOUCHING SURFACE +11 11 SPRAY +12 12 WATERSPOUT +13 13 WIND SHEAR +14 14 DUST DEVILS diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20024.table b/definitions/bufr/tables/0/wmo/36/codetables/20024.table new file mode 100644 index 000000000..13aba873e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20024.table @@ -0,0 +1,8 @@ +0 0 NO PHENOMENA +1 1 LIGHT +2 2 MODERATE +3 3 HEAVY +4 4 VIOLENT +5 5 SEVERE +6 6 VERY SEVERE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20025.table b/definitions/bufr/tables/0/wmo/36/codetables/20025.table new file mode 100644 index 000000000..4d70e338f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20025.table @@ -0,0 +1,13 @@ +1 1 FOG +2 2 ICE FOG +3 3 STEAM FOG +7 7 MIST +8 8 HAZE +9 9 SMOKE +10 10 VOLCANIC ASH +11 11 DUST +12 12 SAND +13 13 SNOW +14 14 CLOUD +15 15 PRECIPITATION +16 16 IMPOSSIBLE TO DETERMINE WHETHER SNOW IS FALLING OR NOT diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20026.table b/definitions/bufr/tables/0/wmo/36/codetables/20026.table new file mode 100644 index 000000000..285209472 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20026.table @@ -0,0 +1,16 @@ +0 0 NO CHANGE +1 1 SHALLOW +2 2 PATCHES +3 3 PARTIAL +4 4 FREEZING +5 5 LOW DRIFTING +6 6 BLOWING +7 7 INCREASING +8 8 DECREASING +9 9 IN SUSPENSION IN THE AIR +10 10 WALL +11 11 DENSE +12 12 WHITEOUT +13 13 DRIFTING AND BLOWING +14 14 RESERVED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20027.table b/definitions/bufr/tables/0/wmo/36/codetables/20027.table new file mode 100644 index 000000000..c337f16a7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20027.table @@ -0,0 +1,8 @@ +1 1 AT TIME OF OBSERVATION +2 2 IN PAST HOUR +3 3 IN TIME PERIOD FOR PAST WEATHER W1W2 +4 4 IN TIME PERIOD SPECIFIED +5 5 RESERVED +6 6 BELOW STATION LEVEL +7 7 AT THE STATION +8 8 IN THE VICINITY diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20028.table b/definitions/bufr/tables/0/wmo/36/codetables/20028.table new file mode 100644 index 000000000..6b701a2b6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20028.table @@ -0,0 +1,4 @@ +0 0 NO CHANGE (NC) +1 1 FORECAST TO WEAKEN (WKN) +2 2 FORECAST TO INTENSIFY (INTSF) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20029.table b/definitions/bufr/tables/0/wmo/36/codetables/20029.table new file mode 100644 index 000000000..8b46da891 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20029.table @@ -0,0 +1,4 @@ +0 0 NO RAIN +1 1 RAIN +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2003.table b/definitions/bufr/tables/0/wmo/36/codetables/2003.table new file mode 100644 index 000000000..f364d1811 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2003.table @@ -0,0 +1,13 @@ +0 0 PRESSURE INSTRUMENT ASSOCIATED WITH WIND MEASURING EQUIPMENT +1 1 OPTICAL THEODOLITE +2 2 RADIO THEODOLITE +3 3 RADAR +4 4 VLF-OMEGA +5 5 LORAN C +6 6 WIND PROFILER +7 7 SATELLITE NAVIGATION +8 8 RADIO-ACOUSTIC SOUNDING SYSTEM (RASS) +9 9 SODAR +10 10 LIDAR +14 14 PRESSURE INSTRUMENT ASSOCIATED WITH WIND MEASURING EQUIPMENT BUT PRESSURE ELEMENT FAILED DURING ASCENT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20032.table b/definitions/bufr/tables/0/wmo/36/codetables/20032.table new file mode 100644 index 000000000..fd37c1e76 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20032.table @@ -0,0 +1,6 @@ +0 0 ICE NOT BUILDING UP +1 1 ICE BUILDING UP SLOWLY +2 2 ICE BUILDING UP RAPIDLY +3 3 ICE MELTING OR BREAKING UP SLOWLY +4 4 ICE MELTING OR BREAKING UP RAPIDLY +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20033.table b/definitions/bufr/tables/0/wmo/36/codetables/20033.table new file mode 100644 index 000000000..817873323 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20033.table @@ -0,0 +1,3 @@ +1 1 ICING FROM OCEAN SPRAY +2 2 ICING FROM FOG +3 3 ICING FROM RAIN diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20034.table b/definitions/bufr/tables/0/wmo/36/codetables/20034.table new file mode 100644 index 000000000..668e91671 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20034.table @@ -0,0 +1,12 @@ +0 0 NO SEA ICE IN SIGHT +1 1 SHIP IN OPEN LEAD MORE THAN 1.0 NAUTICAL MILE WIDE, OR SHIP IN FAST ICE WITH BOUNDARY BEYOND LIMIT OF VISIBILITY +2 2 SEA ICE PRESENT IN CONCENTRATIONS LESS THAN 3/10 (3/8), OPEN WATER OR VERY OPEN PACK ICE +3 3 4/10 TO 6/10 (3/8 TO LESS THAN 6/8), OPEN PACK ICE +4 4 7/10 TO 8/10 (6/8 TO LESS THAN 7/8), CLOSE PACK ICE +5 5 9/10 OR MORE, BUT NOT 10/10 (7/8 TO LESS THAN 8/8), VERY CLOSE PACK ICE +6 6 STRIPS AND PATCHES OF PACK ICE WITH OPEN WATER BETWEEN +7 7 STRIPS AND PATCHES OF CLOSE OR VERY CLOSE PACK ICE WITH AREAS OF LESSER CONCENTRATION BETWEEN +8 8 FAST ICE WITH OPEN WATER, VERY OPEN OR OPEN PACK ICE TO SEAWARD OF THE ICE BOUNDARY +9 9 FAST ICE WITH CLOSE OR VERY CLOSE PACK ICE TO SEAWARD OF THE BOUNDARY +14 14 UNABLE TO REPORT, BECAUSE OF DARKNESS, LACK OF VISIBILITY, OR BECAUSE SHIP IS MORE THAN 0.5 NAUTICAL MILE AWAY FROM ICE EDGE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20035.table b/definitions/bufr/tables/0/wmo/36/codetables/20035.table new file mode 100644 index 000000000..07a4a0284 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20035.table @@ -0,0 +1,12 @@ +0 0 NO ICE OF LAND ORIGIN +1 1 1-5 ICEBERGS, NO GROWLERS OR BERGY BITS +2 2 6-10 ICEBERGS, NO GROWLERS OR BERGY BITS +3 3 11-20 ICEBERGS, NO GROWLERS OR BERGY BITS +4 4 UP TO AND INCLUDING 10 GROWLERS AND BERGY BITS - NO ICEBERGS +5 5 MORE THAN 10 GROWLERS AND BERGY BITS - NO ICEBERGS +6 6 1-5 ICEBERGS, WITH GROWLERS AND BERGY BITS +7 7 6-10 ICEBERGS, WITH GROWLERS AND BERGY BITS +8 8 11-20 ICEBERGS, WITH GROWLERS AND BERGY BITS +9 9 MORE THAN 20 ICEBERGS, WITH GROWLERS AND BERGY BITS - A MAJOR HAZARD TO NAVIGATION +14 14 UNABLE TO REPORT, BECAUSE OF DARKNESS, LACK OF VISIBILITY OR BECAUSE ONLY SEA ICE IS VISIBLE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20036.table b/definitions/bufr/tables/0/wmo/36/codetables/20036.table new file mode 100644 index 000000000..b4cc874bd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20036.table @@ -0,0 +1,12 @@ +0 0 SHIP IN OPEN WATER WITH FLOATING ICE IN SIGHT +1 1 SHIP IN EASILY PENETRABLE ICE; CONDITIONS IMPROVING +2 2 SHIP IN EASILY PENETRABLE ICE; CONDITIONS NOT CHANGING +3 3 SHIP IN EASILY PENETRABLE ICE; CONDITIONS WORSENING +4 4 SHIP IN ICE DIFFICULT TO PENETRATE; CONDITIONS IMPROVING +5 5 SHIP IN ICE DIFFICULT TO PENETRATE; CONDITIONS NOT CHANGING +6 6 SHIP IN ICE DIFFICULT TO PENETRATE AND CONDITIONS WORSENING. ICE FORMING AND FLOES FREEZING TOGETHER +7 7 SHIP IN ICE DIFFICULT TO PENETRATE AND CONDITIONS WORSENING. ICE UNDER SLIGHT PRESSURE +8 8 SHIP IN ICE DIFFICULT TO PENETRATE AND CONDITIONS WORSENING. ICE UNDER MODERATE OR SEVERE PRESSURE +9 9 SHIP IN ICE DIFFICULT TO PENETRATE AND CONDITIONS WORSENING. SHIP BESET +30 30 UNABLE TO REPORT, BECAUSE OF DARKNESS OR LACK OF VISIBILITY +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20037.table b/definitions/bufr/tables/0/wmo/36/codetables/20037.table new file mode 100644 index 000000000..474eeaae2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20037.table @@ -0,0 +1,12 @@ +0 0 NEW ICE ONLY (FRAZIL ICE, GREASE ICE, SLUSH, SHUGA) +1 1 NILAS OR ICE RIND, LESS THAN 10 CM THICK +2 2 YOUNG ICE (GREY ICE, GREY-WHITE ICE), 10-30 CM THICK +3 3 PREDOMINANTLY NEW AND/OR YOUNG ICE WITH SOME FIRST-YEAR ICE +4 4 PREDOMINANTLY THIN FIRST-YEAR ICE WITH SOME NEW AND/OR YOUNG ICE +5 5 ALL THIN FIRST-YEAR ICE (30-70 CM THICK) +6 6 PREDOMINANTLY MEDIUM FIRST-YEAR ICE (70-120 CM THICK) AND THICK FIRST-YEAR ICE (>120 CM THICK) WITH SOME THINNER (YOUNGER) FIRST-YEAR ICE +7 7 ALL MEDIUM AND THICK FIRST-YEAR ICE +8 8 PREDOMINANTLY MEDIUM AND THICK FIRST-YEAR ICE WITH SOME OLD ICE (USUALLY MORE THAN 2 METRES THICK) +9 9 PREDOMINANTLY OLD ICE +30 30 UNABLE TO REPORT, BECAUSE OF DARKNESS, LACK OF VISIBILITY OR BECAUSE ONLY ICE OF LAND ORIGIN IS VISIBLE OR BECAUSE SHIP IS MORE THAN 0.5 NAUTICAL MILE AWAY FROM ICE EDGE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2004.table b/definitions/bufr/tables/0/wmo/36/codetables/2004.table new file mode 100644 index 000000000..a55de6c58 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2004.table @@ -0,0 +1,11 @@ +0 0 USA OPEN PAN EVAPORIMETER (WITHOUT COVER) +1 1 USA OPEN PAN EVAPORIMETER (MESH COVERED) +2 2 GGI-3000 EVAPORIMETER (SUNKEN) +3 3 20 M2 TANK +4 4 OTHERS +5 5 RICE +6 6 WHEAT +7 7 MAIZE +8 8 SORGHUM +9 9 OTHER CROPS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20040.table b/definitions/bufr/tables/0/wmo/36/codetables/20040.table new file mode 100644 index 000000000..889393bf8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20040.table @@ -0,0 +1,9 @@ +0 0 DRIFT SNOW ENDED BEFORE THE HOUR OF OBSERVATION +1 1 INTENSITY DIMINISHING +2 2 NO CHANGE +3 3 INTENSITY INCREASING +4 4 CONTINUES, APART FROM INTERRUPTION LASTING LESS THAN 30 MINUTES +5 5 GENERAL DRIFT SNOW HAS BECOME DRIFT SNOW NEAR THE GROUND +6 6 DRIFT SNOW NEAR THE GROUND HAS BECOME GENERAL DRIFT SNOW +7 7 DRIFT SNOW HAS STARTED AGAIN AFTER AN INTERRUPTION OF MORE THAN 30 MINUTES +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20041.table b/definitions/bufr/tables/0/wmo/36/codetables/20041.table new file mode 100644 index 000000000..fc571208d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20041.table @@ -0,0 +1,14 @@ +0 0 NO ICING +1 1 LIGHT ICING +2 2 LIGHT ICING IN CLOUD +3 3 LIGHT ICING IN PRECIPITATION +4 4 MODERATE ICING +5 5 MODERATE ICING IN CLOUD +6 6 MODERATE ICING IN PRECIPITATION +7 7 SEVERE ICING +8 8 SEVERE ICING IN CLOUD +9 9 SEVERE ICING IN PRECIPITATION +10 10 TRACE OF ICING +11 11 TRACE OF ICING IN CLOUD +12 12 TRACE OF ICING IN PRECIPITATION +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20042.table b/definitions/bufr/tables/0/wmo/36/codetables/20042.table new file mode 100644 index 000000000..2493af725 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20042.table @@ -0,0 +1,4 @@ +0 0 NO ICING +1 1 ICING PRESENT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20045.table b/definitions/bufr/tables/0/wmo/36/codetables/20045.table new file mode 100644 index 000000000..91ae63f48 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20045.table @@ -0,0 +1,4 @@ +0 0 NO SLD CONDITIONS PRESENT +1 1 SLD CONDITIONS PRESENT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20048.table b/definitions/bufr/tables/0/wmo/36/codetables/20048.table new file mode 100644 index 000000000..4a5488266 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20048.table @@ -0,0 +1,5 @@ +0 0 STABILITY +1 1 DIMINUTION +2 2 INTENSIFICATION +3 3 UNKNOWN +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20050.table b/definitions/bufr/tables/0/wmo/36/codetables/20050.table new file mode 100644 index 000000000..3f8654ed5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20050.table @@ -0,0 +1,10 @@ +0 0 RESERVED +1 1 1ST LOW CLOUD +2 2 2ND LOW CLOUD +3 3 3RD LOW CLOUD +4 4 1ST MEDIUM CLOUD +5 5 2ND MEDIUM CLOUD +6 6 3RD MEDIUM CLOUD +7 7 1ST HIGH CLOUD +8 8 2ND HIGH CLOUD +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20055.table b/definitions/bufr/tables/0/wmo/36/codetables/20055.table new file mode 100644 index 000000000..ea06427f6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20055.table @@ -0,0 +1,12 @@ +0 0 CUMULUS, IF ANY, ARE QUITE SMALL; GENERALLY LESS THAN 2/8 COVERAGE, EXCEPT ON WINDWARD SLOPES OF ELEVATED TERRAIN; AVERAGE WIDTH OF CLOUD IS AT LEAST AS GREAT AS ITS VERTICAL THICKNESS +1 1 CUMULUS OF INTERMEDIATE SIZE WITH CLOUD COVER LESS THAN 5/8; AVERAGE CLOUD WIDTH IS MORE THAN ITS VERTICAL THICKNESS; TOWERS ARE VERTICAL WITH LITTLE OR NO EVIDENCE OF PRECIPITATION, EXCEPT ALONG SLOPES OF ELEVATED TERRAIN; A GENERAL ABSENCE OF MIDDLE AND UPPER CLOUDS +2 2 SWELLING CUMULUS WITH RAPIDLY GROWING TALL TURRETS WHICH DECREASE IN SIZE WITH HEIGHT AND WHOSE TOPS TEND TO SEPARATE FROM THE LONGER CLOUD BODY AND EVAPORATE WITHIN MINUTES OF THE SEPARATION +3 3 SWELLING CUMULUS WITH TOWERS HAVING A PRONOUNCED TILT IN A DOWNWIND DIRECTION; VERTICAL CLOUD THICKNESS IS MORE THAN ONE AND A HALF TIMES THAT OF ITS AVERAGE WIDTH +4 4 SWELLING CUMULUS WITH TOWERS HAVING A PRONOUNCED TILT IN AN UPWIND DIRECTION; VERTICAL CLOUD THICKNESS IS MORE THAN ONE AND A HALF TIMES THAT OF ITS AVERAGE WIDTH +5 5 TALL CUMULUS CONGESTUS WITH VERTICAL THICKNESS MORE THAN TWICE THE AVERAGE WIDTH; NOT ORGANIZED IN CLUSTERS OR LINES; ONE OR MORE LAYERS OF CLOUDS EXTEND OUT FROM THE CLOUD TOWERS, ALTHOUGH NO CONTINUOUS CLOUD LAYERS EXIST +6 6 ISOLATED CUMULONIMBUS OR LARGE CLUSTERS OF CUMULUS TURRETS SEPARATED BY WIDE AREAS IN WHICH CLOUDS ARE ABSENT; CLOUD BASES ARE GENERALLY DARK WITH SHOWERS OBSERVED IN MOST CELLS; SOME SCATTERED MIDDLE AND UPPER CLOUDS MAY BE PRESENT; INDIVIDUAL CUMULUS CELLS ARE ONE TO TWO TIMES HIGHER THAN THEY ARE WIDE +7 7 NUMEROUS CUMULUS EXTENDING THROUGH THE MIDDLE TROPOSPHERE WITH BROKEN TO OVERCAST SHEETS OF MIDDLE CLOUDS AND/OR CIRROSTRATUS; CUMULUS TOWERS DO NOT DECREASE GENERALLY IN SIZE WITH HEIGHT; RAGGED DARK CLOUD BASES WITH SOME SHOWERS PRESENT +8 8 CONTINUOUS DENSE MIDDLE CLOUDS AND/OR CIRROSTRATUS CLOUD SHEETS WITH SOME LARGE ISOLATED CUMULONIMBUS OR CUMULUS CONGESTUS CLOUDS PENETRATING THESE SHEETS; LIGHT RAIN OCCASIONALLY OBSERVED FROM THE ALTOSTRATUS; CUMULONIMBUS BASES RAGGED AND DARK WITH SHOWERS VISIBLE +9 9 CONTINUOUS SHEETS OF MIDDLE CLOUDS AND/OR CIRROSTRATUS WITH CUMULONIMBUS AND CUMULUS CONGESTUS IN ORGANIZED LINES OR CLOUD BANDS; RAIN IS GENERALLY OBSERVED FROM ALTOSTRATUS SHEETS AND HEAVY SHOWERS FROM CUMULONIMBUS; WIND HAS A SQUALLY CHARACTER +10 10 STATE OF SKY UNKNOWN OR NOT DESCRIBED BY ANY OF THE ABOVE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20056.table b/definitions/bufr/tables/0/wmo/36/codetables/20056.table new file mode 100644 index 000000000..204b220b8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20056.table @@ -0,0 +1,8 @@ +0 0 UNKNOWN +1 1 WATER +2 2 ICE +3 3 MIXED +4 4 CLEAR +5 5 SUPERCOOLED LIQUID WATER +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2006.table b/definitions/bufr/tables/0/wmo/36/codetables/2006.table new file mode 100644 index 000000000..93b791469 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2006.table @@ -0,0 +1,9 @@ +0 0 RESERVED +1 1 ELASTIC BACKSCATTER LIDAR +2 2 RAMAN BACKSCATTER LIDAR +3 3 RADAR WIND PROFILER +4 4 LIDAR WIND PROFILER +5 5 SODAR WIND PROFILER +6 6 WIND PROFILER +7 7 LIDAR +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20062.table b/definitions/bufr/tables/0/wmo/36/codetables/20062.table new file mode 100644 index 000000000..24d96c46f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20062.table @@ -0,0 +1,21 @@ +0 0 SURFACE OF GROUND DRY (WITHOUT CRACKS AND NO APPRECIABLE AMOUNT OF DUST OR LOOSE SAND) +1 1 SURFACE OF GROUND MOIST +2 2 SURFACE OF GROUND WET (STANDING WATER IN SMALL OR LARGE POOLS ON SURFACE) +3 3 FLOODED +4 4 SURFACE OF GROUND FROZEN +5 5 GLAZE ON GROUND +6 6 LOOSE DRY DUST OR SAND NOT COVERING GROUND COMPLETELY +7 7 THIN COVER OF LOOSE DRY DUST OR SAND COVERING GROUND COMPLETELY +8 8 MODERATE OR THICK COVER OF LOOSE DRY DUST OR SAND COVERING GROUND COMPLETELY +9 9 EXTREMELY DRY WITH CRACKS +10 10 GROUND PREDOMINANTLY COVERED BY ICE +11 11 COMPACT OR WET SNOW (WITH OR WITHOUT ICE) COVERING LESS THAN ONE HALF OF THE GROUND +12 12 COMPACT OR WET SNOW (WITH OR WITHOUT ICE) COVERING AT LEAST ONE HALF OF THE GROUND BUT GROUND NOT COMPLETELY COVERED +13 13 EVEN LAYER OF COMPACT OR WET SNOW COVERING GROUND COMPLETELY +14 14 UNEVEN LAYER OF COMPACT OR WET SNOW COVERING GROUND COMPLETELY +15 15 LOOSE DRY SNOW COVERING LESS THAN ONE HALF OF THE GROUND +16 16 LOOSE DRY SNOW COVERING AT LEAST ONE HALF OF THE GROUND BUT GROUND NOT COMPLETELY COVERED +17 17 EVEN LAYER OF LOOSE DRY SNOW COVERING GROUND COMPLETELY +18 18 UNEVEN LAYER OF LOOSE DRY SNOW COVERING GROUND COMPLETELY +19 19 SNOW COVERING GROUND COMPLETELY; DEEP DRIFTS +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20063.table b/definitions/bufr/tables/0/wmo/36/codetables/20063.table new file mode 100644 index 000000000..90ce1c086 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20063.table @@ -0,0 +1,71 @@ +0 0 RESERVED +1 1 HIGHEST WIND SPEED GUSTS GREATER THAN 11.5 M/S +2 2 HIGHEST MEAN WIND SPEED GREATER THAN 17.5 M/S +7 7 VISIBILITY GREATER THAN 100 000 M +10 10 MIRAGE - NO SPECIFICATION +11 11 MIRAGE - IMAGE OF DISTANT OBJECT RAISED (LOOMING) +13 13 MIRAGE - INVERTED IMAGE OF DISTANT OBJECT +14 14 MIRAGE - COMPLEX, MULTIPLE IMAGES OF DISTANT OBJECT (IMAGES NOT INVERTED) +15 15 MIRAGE - COMPLEX, MULTIPLE IMAGES OF DISTANT OBJECT (SOME IMAGES BEING INVERTED) +16 16 MIRAGE - SUN OR MOON SEEN APPRECIABLY DISTORTED +17 17 MIRAGE - SUN VISIBLE, ALTHOUGH ASTRONOMICALLY BELOW THE HORIZON +18 18 MIRAGE - MOON VISIBLE, ALTHOUGH ASTRONOMICALLY BELOW THE HORIZON +19 19 RESERVED +20 20 DAY DARKNESS, BAD, WORST IN DIRECTION SPECIFIED +21 21 DAY DARKNESS, VERY BAD, WORST IN DIRECTION SPECIFIED +22 22 DAY DARKNESS, BLACK, WORST IN DIRECTION SPECIFIED +31 31 SLIGHT COLORATION OF CLOUDS AT SUNRISE ASSOCIATED WITH A TROPICAL DISTURBANCE +32 32 DEEP-RED COLORATION OF CLOUDS AT SUNRISE ASSOCIATED WITH A TROPICAL DISTURBANCE +33 33 SLIGHT COLORATION OF CLOUDS AT SUNSET ASSOCIATED WITH A TROPICAL DISTURBANCE +34 34 DEEP-RED COLORATION OF CLOUDS AT SUNSET ASSOCIATED WITH A TROPICAL DISTURBANCE +35 35 CONVERGENCE OF CH CLOUDS AT A POINT BELOW 45° FORMING OR INCREASING AND ASSOCIATED WITH A TROPICAL DISTURBANCE +36 36 CONVERGENCE OF CH CLOUDS AT A POINT ABOVE 45° ASSOCIATED WITH A TROPICAL DISTURBANCE +37 37 CONVERGENCE OF CH CLOUDS AT A POINT BELOW 45° DISSOLVING OR DIMINISHING AND ASSOCIATED WITH A TROPICAL DISTURBANCE +38 38 CONVERGENCE OF CH CLOUDS AT A POINT ABOVE 45° ASSOCIATED WITH A TROPICAL DISTURBANCE +39 39 RESERVED +40 40 HOAR FROST ON HORIZONTAL SURFACES +41 41 HOAR FROST ON HORIZONTAL AND VERTICAL SURFACES +42 42 PRECIPITATION CONTAINING SAND OR DESERT DUST +43 43 PRECIPITATION CONTAINING VOLCANIC ASH +50 50 CALM OR LIGHT WIND FOLLOWED BY A SQUALL +51 51 CALM OR LIGHT WIND FOLLOWED BY A SUCCESSION OF SQUALLS +52 52 GUSTY WEATHER FOLLOWED BY A SQUALL +53 53 GUSTY WEATHER FOLLOWED BY A SUCCESSION OF SQUALLS +54 54 SQUALL FOLLOWED BY GUSTY WEATHER +55 55 GENERAL GUSTY WEATHER WITH SQUALL AT INTERVALS +56 56 SQUALL APPROACHING STATION +57 57 LINE SQUALL +58 58 SQUALL WITH DRIFTING OR BLOWING DUST OR SAND +59 59 LINE SQUALL WITH DRIFTING OR BLOWING DUST OR SAND +60 60 TEMPERATURE STEADY +61 61 TEMPERATURE FALLING, WITHOUT GOING BELOW 0°C +62 62 TEMPERATURE RISING, WITHOUT GOING ABOVE 0°C +63 63 TEMPERATURE FALLING TO A VALUE BELOW 0°C +64 64 TEMPERATURE RISING TO A VALUE ABOVE 0°C +65 65 IRREGULAR VARIATION, OSCILLATIONS OF TEMPERATURE PASSING THROUGH 0°C +66 66 IRREGULAR VARIATION, OSCILLATIONS OF TEMPERATURE NOT PASSING THROUGH 0°C +67 67 VARIATION OF TEMPERATURE NOT OBSERVED +68 68 NOT ALLOCATED +69 69 VARIATION OF TEMPERATURE UNKNOWN OWING TO LACK OF THERMOGRAPH +70 70 VISIBILITY HAS NOT VARIED (SUN* VISIBLE) TOWARDS DIRECTION SPECIFIED +71 71 VISIBILITY HAS NOT VARIED (SUN* INVISIBLE) TOWARDS DIRECTION SPECIFIED +72 72 VISIBILITY HAS INCREASED (SUN* VISIBLE) TOWARDS DIRECTION SPECIFIED +73 73 VISIBILITY HAS INCREASED (SUN* INVISIBLE) TOWARDS DIRECTION SPECIFIED +74 74 VISIBILITY HAS DECREASED (SUN* VISIBLE) TOWARDS DIRECTION SPECIFIED +75 75 VISIBILITY HAS DECREASED (SUN* INVISIBLE) TOWARDS DIRECTION SPECIFIED +76 76 FOG COMING FROM DIRECTION SPECIFIED +77 77 FOG HAS LIFTED, WITHOUT DISSIPATING +78 78 FOG HAS DISPERSED WITHOUT REGARD TO DIRECTION +79 79 MOVING PATCHES OR BANKS OF FOG +80 80 BROCKEN SPECTRE +81 81 RAINBOW +82 82 SOLAR OR LUNAR HALO +83 83 PARHELIA OR ANTHELIA +84 84 SUN PILLAR +85 85 CORONA +86 86 TWILIGHT GLOW +87 87 TWILIGHT GLOW ON THE MOUNTAINS (ALPENGLüHEN) +88 88 MIRAGE +89 89 ZODIACAL LIGHT +90 90 ST ELMO'S FIRE +1023 1023 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2007.table b/definitions/bufr/tables/0/wmo/36/codetables/2007.table new file mode 100644 index 000000000..05b4c6bd1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2007.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 SHAFT ENCODER FLOAT SYSTEM +2 2 ULTRASONIC +3 3 RADAR +4 4 PRESSURE (SINGLE TRANSDUCER) +5 5 PRESSURE (MULTIPLE TRANSDUCER) +6 6 PRESSURE (IN STILLING WELL) +7 7 BUBBLER PRESSURE +8 8 ACOUSTIC (WITH SOUNDING TUBE) +9 9 ACOUSTIC (IN OPEN AIR) +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20071.table b/definitions/bufr/tables/0/wmo/36/codetables/20071.table new file mode 100644 index 000000000..72367bf8b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20071.table @@ -0,0 +1,11 @@ +0 0 NO ASSESSMENT +1 1 LESS THAN 50 KM +2 2 BETWEEN 50 AND 200 KM +3 3 MORE THAN 200 KM +4 4 LESS THAN 50 KM +5 5 BETWEEN 50 AND 200 KM +6 6 MORE THAN 200 KM +7 7 LESS THAN 50 KM +8 8 BETWEEN 50 AND 200 KM +9 9 MORE THAN 200 KM +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2008.table b/definitions/bufr/tables/0/wmo/36/codetables/2008.table new file mode 100644 index 000000000..e669727ec --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2008.table @@ -0,0 +1,7 @@ +0 0 FIXED PLATFORM +1 1 MOBILE OFFSHORE DRILL SHIP +2 2 JACK-UP RIG +3 3 SEMI-SUBMERSIBLE PLATFORM +4 4 FLOATING PRODUCTION STORAGE AND OFFLOADING (FPSO) UNIT +5 5 LIGHT VESSEL +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20085.table b/definitions/bufr/tables/0/wmo/36/codetables/20085.table new file mode 100644 index 000000000..f929e878d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20085.table @@ -0,0 +1,3 @@ +0 0 CLEARED (CLRD//) +1 1 ALL RUNWAYS CLOSED (SNOCLO) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20086.table b/definitions/bufr/tables/0/wmo/36/codetables/20086.table new file mode 100644 index 000000000..b5433303a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20086.table @@ -0,0 +1,11 @@ +0 0 CLEAR AND DRY +1 1 DAMP +2 2 WET WITH WATER PATCHES +3 3 RIME AND FROST COVERED (DEPTH NORMALLY LESS THAN 1 MM) +4 4 DRY SNOW +5 5 WET SNOW +6 6 SLUSH +7 7 ICE +8 8 COMPACTED OR ROLLED SNOW +9 9 FROZEN RUTS OR RIDGES +15 15 MISSING OR NOT REPORTED (E.G. DUE TO RUNWAY CLEARANCE IN PROGRESS) diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20087.table b/definitions/bufr/tables/0/wmo/36/codetables/20087.table new file mode 100644 index 000000000..ee7971ab6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20087.table @@ -0,0 +1,6 @@ +0 0 RESERVED +1 1 LESS THAN 10% OF RUNWAY COVERED +2 2 11% TO 25% OF RUNWAY COVERED +5 5 26% TO 50% OF RUNWAY COVERED +9 9 51% TO 100% OF RUNWAY COVERED +15 15 MISSING OR NOT REPORTED (E.G. DUE TO RUNWAY CLEARANCE IN PROGRESS) diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20089.table b/definitions/bufr/tables/0/wmo/36/codetables/20089.table new file mode 100644 index 000000000..f616c622c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20089.table @@ -0,0 +1,11 @@ +0 0 0.00 +1 1 0.01 +89 89 0.89 +90 90 0.90 +91 91 BRAKING ACTION POOR +92 92 BRAKING ACTION MEDIUM TO POOR +93 93 BRAKING ACTION MEDIUM +94 94 BRAKING ACTION MEDIUM TO GOOD +95 95 BRAKING ACTION GOOD +99 99 UNRELIABLE +127 127 MISSING, NOT REPORTED AND/OR RUNWAY NOT OPERATIONAL diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20090.table b/definitions/bufr/tables/0/wmo/36/codetables/20090.table new file mode 100644 index 000000000..d13502ec4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20090.table @@ -0,0 +1,7 @@ +0 0 RESERVED +1 1 NACREOUS CLOUDS +2 2 NOCTILUCENT CLOUDS +3 3 CLOUDS FROM WATERFALLS +4 4 CLOUDS FROM FIRES +5 5 CLOUDS FROM VOLCANIC ERUPTIONS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20101.table b/definitions/bufr/tables/0/wmo/36/codetables/20101.table new file mode 100644 index 000000000..abe89f5fe --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20101.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 SCHISTOCERCA GREGARIA +2 2 LOCUSTA MIGRATORIA +3 3 NOMADACRIS SEPTEMFASCIATA +4 4 OEDALEUS SENEGALENSIS +5 5 ANRACRIDIUM SPP +6 6 OTHER LOCUSTS +7 7 OTHER GRASSHOPPERS +8 8 OTHER CRICKETS +9 9 SPODOPTERA EXEMPTA +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20102.table b/definitions/bufr/tables/0/wmo/36/codetables/20102.table new file mode 100644 index 000000000..6a53039e9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20102.table @@ -0,0 +1,11 @@ +0 0 GREEN +1 1 GREEN OR BLACK +2 2 BLACK +3 3 YELLOW AND BLACK +4 4 STRAW/GREY +5 5 PINK +6 6 DARK RED/BROWN +7 7 MIXED RED AND YELLOW +8 8 YELLOW +9 9 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20103.table b/definitions/bufr/tables/0/wmo/36/codetables/20103.table new file mode 100644 index 000000000..9c4f68920 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20103.table @@ -0,0 +1,11 @@ +0 0 HOPPERS (NYMPHS, LARVAE), STAGE 1 +1 1 HOPPERS (NYMPHS, LARVAE), STAGE 2 OR MIXED 1, 2 INSTARS (STAGES) +2 2 HOPPERS (NYMPHS, LARVAE), STAGE 3 OR MIXED 2, 3 INSTARS +3 3 HOPPERS (NYMPHS, LARVAE), STAGE 4 OR MIXED 3, 4 INSTARS +4 4 HOPPERS (NYMPHS, LARVAE), STAGE 5 OR MIXED 4, 5 INSTARS +5 5 HOPPERS (NYMPHS, LARVAE), STAGE MIXED, ALL OR MANY INSTARS +6 6 FLEDGLINGS (WINGS TOO SOFT FOR SUSTAINED FLIGHT) +7 7 IMMATURE ADULTS +8 8 MIXED MATURITY ADULTS +9 9 MATURE ADULTS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20104.table b/definitions/bufr/tables/0/wmo/36/codetables/20104.table new file mode 100644 index 000000000..15ca8acd4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20104.table @@ -0,0 +1,11 @@ +0 0 HOPPERS ONLY, MAINLY IN BANDS OR CLUSTERS +1 1 WINGED ADULTS IN THE VICINITY MORE THAN 10 KILOMETRES FROM POINT OF OBSERVATION +2 2 LOCUSTS IN FLIGHT, A FEW SEEN AT THE STATION +3 3 LOCUSTS AT THE STATION, MOST OF THEM ON THE GROUND +4 4 LOCUSTS, SOME ON GROUND AND OTHERS IN FLIGHT AT A HEIGHT LESS THAN 10 METRES +5 5 LOCUSTS, SOME ON GROUND AND OTHERS IN FLIGHT AT A HEIGHT GREATER THAN 10 METRES +6 6 LOCUSTS, MOST IN FLIGHT AT A HEIGHT LESS THAN 10 METRES +7 7 LOCUSTS, MOST IN FLIGHT AT A HEIGHT GREATER THAN 10 METRES +8 8 LOCUSTS, ALL OVER INFLICTING SEVERE DAMAGE TO VEGETATION, NO EXTERMINATION OPERATION +9 9 LOCUSTS, ALL OVER INFLICTING SEVERE DAMAGE TO VEGETATION, EXTERMINATION OPERATION IN PROGRESS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20105.table b/definitions/bufr/tables/0/wmo/36/codetables/20105.table new file mode 100644 index 000000000..b7406c09c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20105.table @@ -0,0 +1,12 @@ +0 0 SMALL SWARM LESS THAN 1 KM2 OR ADULTS IN GROUND, TENS OR HUNDREDS OF INDIVIDUALS VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE LESS THAN 1 HOUR AGO +1 1 SMALL SWARM LESS THAN 1 KM2 OR ADULTS IN GROUND, TENS OR HUNDREDS OF INDIVIDUALS VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE 1 TO 6 HOURS AGO +2 2 SMALL SWARM LESS THAN 1 KM2 OR ADULTS IN GROUND, TENS OR HUNDREDS OF INDIVIDUALS VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE OVER 6 HOURS AGO +3 3 MEDIUM SWARM OR SCATTERED ADULTS, SEVERAL VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE LESS THAN 1 HOUR AGO +4 4 MEDIUM SWARM OR SCATTERED ADULTS, SEVERAL VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE 1 TO 6 HOURS AGO +5 5 MEDIUM SWARM OR SCATTERED ADULTS, SEVERAL VISIBLE SIMULTANEOUSLY, DURATION OF PASSAGE OVER 6 HOURS AGO +6 6 LARGE SWARM OR ISOLATED ADULTS, SEEN SINGLY, DURATION OF PASSAGE LESS THAN 1 HOUR AGO +7 7 LARGE SWARM OR ISOLATED ADULTS, SEEN SINGLY, DURATION OF PASSAGE 1 TO 6 HOURS AGO +8 8 LARGE SWARM OR ISOLATED ADULTS, SEEN SINGLY, DURATION OF PASSAGE OVER 6 HOURS AGO +9 9 MORE THAN ONE SWARM OF LOCUSTS +10 10 SIZE OF SWARM AND/OR DURATION OF PASSAGE NOT DETERMINED OWING TO DARKNESS OR SIMILAR PHENOMENA +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20106.table b/definitions/bufr/tables/0/wmo/36/codetables/20106.table new file mode 100644 index 000000000..2a8c4a098 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20106.table @@ -0,0 +1,7 @@ +0 0 RESERVED +1 1 THIN DENSITY SWARM (SWARM VISIBLE ONLY WHEN NEAR ENOUGH FOR INDIVIDUAL LOCUSTS TO BE DISCERNED) +2 2 MEDIUM DENSITY SWARM +3 3 DENSE SWARM (OBSCURING NEARBY FEATURES, E.G. TREES) +4 4 ISOLATED HOPPERS SEEN SINGLY +5 5 SCATTERED HOPPERS, SEVERAL VISIBLE SIMULTANEOUSLY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20107.table b/definitions/bufr/tables/0/wmo/36/codetables/20107.table new file mode 100644 index 000000000..0bea30ad5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20107.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 GENERALLY IN THE DIRECTION NE +2 2 GENERALLY IN THE DIRECTION E +3 3 GENERALLY IN THE DIRECTION SE +4 4 GENERALLY IN THE DIRECTION S +5 5 GENERALLY IN THE DIRECTION SW +6 6 GENERALLY IN THE DIRECTION W +7 7 GENERALLY IN THE DIRECTION NW +8 8 GENERALLY IN THE DIRECTION N +9 9 SPECIFIC DIRECTION INDETERMINABLE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20108.table b/definitions/bufr/tables/0/wmo/36/codetables/20108.table new file mode 100644 index 000000000..4404614cb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20108.table @@ -0,0 +1,9 @@ +0 0 BARE GROUND +1 1 DRY, PRESENCE OF FEW AND ISOLATED SHRUBS +2 2 SPARSE VEGETATION (SPROUTING) +3 3 DENSE VEGETATION (SPROUTING) +4 4 SPARSE VEGETATION (GROWING) +5 5 DENSE VEGETATION (GROWING) +6 6 SPARSE VEGETATION IN FLOWER +7 7 DENSE VEGETATION IN FLOWER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2011.table b/definitions/bufr/tables/0/wmo/36/codetables/2011.table new file mode 100644 index 000000000..a7f674a27 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2011.table @@ -0,0 +1,100 @@ +0 0 RESERVED +1 1 NOT VACANT +2 2 NO RADIOSONDE - PASSIVE TARGET (E.G. REFLECTOR) +3 3 NO RADIOSONDE - ACTIVE TARGET (E.G. TRANSPONDER) +4 4 NO RADIOSONDE - PASSIVE TEMPERATURE-HUMIDITY PROFILER +5 5 NO RADIOSONDE - ACTIVE TEMPERATURE-HUMIDITY PROFILER +6 6 NO RADIOSONDE - RADIO-ACOUSTIC SOUNDER +7 7 NOT VACANT +8 8 NO RADIOSONDE -... (RESERVED) +9 9 NO RADIOSONDE - SYSTEM UNKNOWN OR NOT SPECIFIED +10 10 SIPPICAN LMS5 W/CHIP THERMISTOR, DUCT MOUNTED CAPACITANCE RELATIVE HUMIDITY SENSOR AND DERIVED PRESSURE FROM GPS HEIGHT +11 11 SIPPICAN LMS6 W/CHIP THERMISTOR, EXTERNAL BOOM MOUNTED CAPACITANCE RELATIVE HUMIDITY SENSOR, AND DERIVED PRESSURE FROM GPS HEIGHT +12 12 JIN YANG RSG-20A WITH DERIVED PRESSURE FROM GPS HEIGHT/GL-5000P (REPUBLIC OF KOREA) +13 13 VAISALA RS92/MARWIN MW32 (FINLAND) +14 14 VAISALA RS92/DIGICORA MW41 (FINLAND) +15 15 PAZA-12M/RADIOTHEODOLITE-UL (UKRAINE) +16 16 PAZA-22/AVK-1 (UKRAINE) +17 17 GRAW DFM-09 (GERMANY) +18 18 NOT VACANT +19 19 POLUS-MRZ-N1 (RUSSIAN FEDERATION) +20 20 NOT VACANT +21 21 JIN YANG 1524LA LORAN-C/GL5000 (REPUBLIC OF KOREA) +22 22 MEISEI RS-11G GPS RADIOSONDE W/THERMISTOR, CAPACITANCE RELATIVE HUMIDITY SENSOR, AND DERIVED PRESSURE FROM GPS HEIGHT (JAPAN) +23 23 VAISALA RS41/DIGICORA MW41 (FINLAND) +24 24 VAISALA RS41/AUTOSONDE (FINLAND) +25 25 VAISALA RS41/MARWIN MW32 (FINLAND) +26 26 METEOLABOR SRS-C34/ARGUS 37 (SWITZERLAND) +27 27 NOT VACANT +28 28 AVK - AK2-02 (RUSSIAN FEDERATION) +29 29 MARL-A OR VEKTOR-M - AK2-02 (RUSSIAN FEDERATION) +30 30 MEISEI RS-06G (JAPAN) +31 31 TAIYUAN GTS1-1/GFE(L) (CHINA ) +32 32 SHANGHAI GTS1/GFE(L) (CHINA) +33 33 NANJING GTS1-2/GFE(L) (CHINA) +34 34 IMET-4 GPS RADIOSONDE (USA) +35 35 MEISEI IMS-100 GPS RADIOSONDE W/THERMISTOR SENSOR, CAPACITANCE RELATIVE HUMIDITY SENSOR, AND DERIVED PRESSURE FROM GPS HEIGHT (JAPAN) +36 36 MEISEI IMDS-17 GPS DROPSONDE W/THERMISTOR SENSOR, CAPACITANCE RELATIVE HUMIDITY SENSOR, AND CAPACITANCE PRESSURE SENSOR (JAPAN) +37 37 NOT VACANT +38 38 VIZ LOCATE LORAN-C (UNITED STATES) +39 39 SPRENGER E076 (GERMANY) +40 40 SPRENGER E084 (GERMANY) +41 41 VAISALA RS41 WITH PRESSURE DERIVED FROM GPS HEIGHT/DIGICORA MW41 (FINLAND) +42 42 VAISALA RS41 WITH PRESSURE DERIVED FROM GPS HEIGHT/AUTOSONDE (FINLAND) +43 43 NANJING DAQIAO XGP-3G (CHINA)* +44 44 TIANJIN HUAYUNTIANYI GTS(U)1 (CHINA)* +45 45 BEIJING CHANGFENG CF-06 (CHINA)* +46 46 SHANGHAI CHANGWANG GTS3 (CHINA)* +47 47 NOT VACANT +48 48 PAZA-22M/MARL-A +49 49 NOT VACANT +50 50 METEOLABOR SRS-C50/ARGUS (SWITZERLAND) +51 51 NOT VACANT +52 52 VAISALA RS92-NGP/INTERMET IMS-2000 (UNITED STATES) +53 53 AVK - I-2012 (RUSSIAN FEDERATION) +54 54 GRAW DFM-17 (GERMANY) +55 55 MEISEI RS-01G (JAPAN) +56 56 M2K2 (FRANCE) +57 57 MODEM M2K2-DC (FRANCE) +58 58 AVK-BAR (RUSSIAN FEDERATION) +59 59 MODEM M2K2-R 1680 MHZ RDF RADIOSONDE WITH PRESSURE SENSOR CHIP (FRANCE) +60 60 MARL-A OR VEKTOR-M - I-2012 (RUSSIAN FEDERATION) +61 61 NOT VACANT +62 62 MARL-A OR VEKTOR-M - MRZ-3MK (RUSSIAN FEDERATION) +63 63 MODEM M20 RADIOSONDE W/THERMISTOR SENSOR, CAPACITANCE RELATIVE HUMIDITY SENSOR, AND DERIVED PRESSURE FROM GPS HEIGHT (FRANCE) +64 64 MODEM PILOTSONDE GPS RADIOSONDE (FRANCE) +65 65 VIZ TRANSPONDER RADIOSONDE, MODEL NUMBER 1499-520 (UNITED STATES) +66 66 VAISALA RS80 /AUTOSONDE (FINLAND) +67 67 VAISALA RS80/DIGICORA III (FINLAND) +68 68 AVK-RZM-2 (RUSSIAN FEDERATION) +69 69 MARL-A OR VEKTOR-M-RZM-2 (RUSSIAN FEDERATION) +70 70 VAISALA RS92/STAR (FINLAND) +71 71 VAISALA RS90/LORAN/DIGICORA I, II OR MARWIN (FINLAND) +72 72 VAISALA RS90/PC-CORA (FINLAND) +73 73 VAISALA RS90/AUTOSONDE (FINLAND) +74 74 VAISALA RS90/STAR (FINLAND) +75 75 AVK-MRZ-ARMA (RUSSIAN FEDERATION) +76 76 AVK-RF95-ARMA (RUSSIAN FEDERATION) +77 77 MODEM GPSONDE M10 (FRANCE) +78 78 VAISALA RS90/DIGICORA III (FINLAND) +79 79 VAISALA RS92/DIGICORA I,II OR MARWIN (FINLAND) +80 80 VAISALA RS92/DIGICORA III (FINLAND) +81 81 VAISALA RS92/AUTOSONDE (FINLAND) +82 82 LOCKHEED MARTIN LMS-6 W/CHIP THERMISTOR; EXTERNAL BOOM MOUNTED POLYMER CAPACITIVE RELATIVE HUMIDITY SENSOR; CAPACITIVE PRESSURE SENSOR AND GPS WIND +83 83 VAISALA RS92-D/INTERMET IMS 1500 W/SILICON CAPACITIVE PRESSURE SENSOR, CAPACITIVE WIRE TEMPERATURE SENSOR, TWIN THIN-FILM HEATED POLYMER CAPACITIVE RELATIVE HUMIDITY SENSOR AND RDF WIND +84 84 IMET-54/IMET-3200/3400 GPS RADIOSONDE WITH DERIVED PRESSURE FROM GPS HEIGHT (SOUTH AFRICA) +85 85 SIPPICAN MARK IIA WITH CHIP THERMISTOR, CARBON ELEMENT AND DERIVED PRESSURE FROM GPS HEIGHT +86 86 SIPPICAN MARK II WITH CHIP THERMISTOR, PRESSURE AND CARBON ELEMENT +87 87 SIPPICAN MARK IIA WITH CHIP THERMISTOR, PRESSURE AND CARBON ELEMENT +88 88 MARL-A OR VEKTOR-M-MRZ (RUSSIAN FEDERATION) +89 89 MARL-A OR VEKTOR-M-BAR (RUSSIAN FEDERATION) +90 90 RADIOSONDE NOT SPECIFIED OR UNKNOWN +91 91 PRESSURE ONLY RADIOSONDE +92 92 PRESSURE ONLY RADIOSONDE PLUS TRANSPONDER +93 93 PRESSURE ONLY RADIOSONDE PLUS RADAR REFLECTOR +94 94 NO PRESSURE RADIOSONDE PLUS TRANSPONDER +95 95 NO PRESSURE RADIOSONDE PLUS RADAR REFLECTOR +96 96 DESCENDING RADIOSONDE +97 97 IMET-2/IMET-1500 RDF RADIOSONDE WITH PRESSURE SENSOR CHIP (SOUTH AFRICA) +98 98 IMET-2/IMET-1500 GPS RADIOSONDE WITH DERIVED PRESSURE FROM GPS HEIGHT (SOUTH AFRICA) +99 99 IMET-2/IMET-3200 GPS RADIOSONDE WITH DERIVED PRESSURE FROM GPS HEIGHT (SOUTH AFRICA) diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20119.table b/definitions/bufr/tables/0/wmo/36/codetables/20119.table new file mode 100644 index 000000000..4a4b40f87 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20119.table @@ -0,0 +1,4 @@ +0 0 NOT DEFINED +1 1 POSITIVE +2 2 NEGATIVE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20124.table b/definitions/bufr/tables/0/wmo/36/codetables/20124.table new file mode 100644 index 000000000..f78eacb17 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20124.table @@ -0,0 +1,4 @@ +0 0 NOT DEFINED +1 1 LIGHTNING STROKE +2 2 LIGHTNING FLASH, BY MANUAL OBSERVATION, OR IF EQUIPMENT INSENSITIVE TO STROKE RESOLUTION +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2013.table b/definitions/bufr/tables/0/wmo/36/codetables/2013.table new file mode 100644 index 000000000..91ce6501d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2013.table @@ -0,0 +1,11 @@ +0 0 NO CORRECTION +1 1 CIMO SOLAR CORRECTED AND CIMO INFRARED CORRECTED +2 2 CIMO SOLAR CORRECTED AND INFRARED CORRECTED +3 3 CIMO SOLAR CORRECTED ONLY +4 4 SOLAR AND INFRARED CORRECTED AUTOMATICALLY BY RADIOSONDE SYSTEM +5 5 SOLAR CORRECTED AUTOMATICALLY BY RADIOSONDE SYSTEM +6 6 SOLAR AND INFRARED CORRECTED AS SPECIFIED BY COUNTRY +7 7 SOLAR CORRECTED AS SPECIFIED BY COUNTRY +8 8 SOLAR AND INFRARED CORRECTED AS SPECIFIED BY GRUAN +9 9 SOLAR CORRECTED AS SPECIFIED BY GRUAN +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20136.table b/definitions/bufr/tables/0/wmo/36/codetables/20136.table new file mode 100644 index 000000000..0369f5de7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20136.table @@ -0,0 +1,44 @@ +0 0 ISOLATED CUMULUS HUMILIS AND/OR CUMULUS MEDIOCRIS OF VERTICAL DEVELOPMENT +1 1 NUMEROUS CUMULUS HUMILIS AND/OR CUMULUS MEDIOCRIS OF VERTICAL DEVELOPMENT +2 2 ISOLATED CUMULUS CONGESTUS OF VERTICAL DEVELOPMENT +3 3 NUMEROUS CUMULUS CONGESTUS OF VERTICAL DEVELOPMENT +4 4 ISOLATED CUMULONIMBUS OF VERTICAL DEVELOPMENT +5 5 NUMEROUS CUMULONIMBUS OF VERTICAL DEVELOPMENT +6 6 ISOLATED CUMULUS AND CUMULONIMBUS OF VERTICAL DEVELOPMENT +7 7 NUMEROUS CUMULUS AND CUMULONIMBUS OF VERTICAL DEVELOPMENT +10 10 RESERVED +11 11 ISOLATED OROGRAPHIC CLOUDS, PILEUS, INCUS, FORMING +12 12 ISOLATED OROGRAPHIC CLOUDS, PILEUS, INCUS, NOT CHANGING +13 13 ISOLATED OROGRAPHIC CLOUDS, PILEUS, INCUS, DISSOLVING +14 14 IRREGULAR BANKS OF OROGRAPHIC CLOUD, FöHN BANK, ETC., FORMING +15 15 IRREGULAR BANKS OF OROGRAPHIC CLOUD, FöHN BANK, ETC., NOT CHANGING +16 16 IRREGULAR BANKS OF OROGRAPHIC CLOUD, FöHN BANK, ETC., DISSOLVING +17 17 COMPACT LAYER OF OROGRAPHIC CLOUD, FöHN BANK, ETC., FORMING +18 18 COMPACT LAYER OF OROGRAPHIC CLOUD, FöHN BANK, ETC., NOT CHANGING +19 19 COMPACT LAYER OF OROGRAPHIC CLOUD, FöHN BANK, ETC., DISSOLVING +20 20 ALL MOUNTAINS OPEN, ONLY SMALL AMOUNTS OF CLOUD PRESENT +21 21 MOUNTAINS PARTLY COVERED WITH DETACHED CLOUDS (NOT MORE THAN HALF THE PEAKS CAN BE SEEN) +22 22 ALL MOUNTAIN SLOPES COVERED, PEAKS AND PASSES FREE +23 23 MOUNTAINS OPEN ON OBSERVER’S SIDE (ONLY SMALL AMOUNTS OF CLOUD PRESENT), BUT A CONTINUOUS WALL OF CLOUD ON THE OTHER SIDE +24 24 CLOUDS LOW ABOVE THE MOUNTAINS, BUT ALL SLOPES AND MOUNTAINS OPEN (ONLY SMALL AMOUNTS OF CLOUD ON THE SLOPES) +25 25 CLOUDS LOW ABOVE THE MOUNTAINS, PEAKS PARTLY COVERED BY PRECIPITATION TRAILS OR CLOUDS +26 26 ALL PEAKS COVERED BUT PASSES OPEN, SLOPES EITHER OPEN OR COVERED +27 27 MOUNTAINS GENERALLY COVERED BUT SOME PEAKS FREE, SLOPES WHOLLY OR PARTIALLY COVERED +28 28 ALL PEAKS, PASSES AND SLOPES COVERED +29 29 MOUNTAINS CANNOT BE SEEN OWING TO DARKNESS, FOG, SNOWSTORM, PRECIPITATION, ETC. +35 35 NON-PERSISTENT CONDENSATION TRAILS +36 36 PERSISTENT CONDENSATION TRAILS COVERING LESS THAN 1/8 OF THE SKY +37 37 PERSISTENT CONDENSATION TRAILS COVERING 1/8 OF THE SKY +38 38 PERSISTENT CONDENSATION TRAILS COVERING 2/8 OF THE SKY +39 39 PERSISTENT CONDENSATION TRAILS COVERING 3/8 OR MORE OF THE SKY +40 40 NO CLOUD OR MIST OBSERVED FROM A HIGHER LEVEL +41 41 MIST, CLEAR ABOVE OBSERVED FROM A HIGHER LEVEL +42 42 FOG PATCHES OBSERVED FROM A HIGHER LEVEL +43 43 LAYER OF SLIGHT FOG OBSERVED FROM A HIGHER LEVEL +44 44 LAYER OF THICK FOG OBSERVED FROM A HIGHER LEVEL +45 45 SOME ISOLATED CLOUDS OBSERVED FROM A HIGHER LEVEL +46 46 ISOLATED CLOUDS AND FOG BELOW OBSERVED FROM A HIGHER LEVEL +47 47 MANY ISOLATED CLOUDS OBSERVED FROM A HIGHER LEVEL +48 48 SEA OF CLOUDS OBSERVED FROM A HIGHER LEVEL +49 49 BAD VISIBILITY OBSCURING THE DOWNWARD VIEW OBSERVED FROM A HIGHER LEVEL +511 511 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20137.table b/definitions/bufr/tables/0/wmo/36/codetables/20137.table new file mode 100644 index 000000000..adda88054 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20137.table @@ -0,0 +1,11 @@ +0 0 NO CHANGE +1 1 CUMULIFICATION +2 2 SLOW ELEVATION +3 3 RAPID ELEVATION +4 4 ELEVATION AND STRATIFICATION +5 5 SLOW LOWERING +6 6 RAPID LOWERING +7 7 STRATIFICATION +8 8 STRATIFICATION AND LOWERING +9 9 RAPID CHANGE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/20138.table b/definitions/bufr/tables/0/wmo/36/codetables/20138.table new file mode 100644 index 000000000..ed9b315fc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/20138.table @@ -0,0 +1,9 @@ +0 0 DRY +1 1 MOIST +2 2 WET +3 3 RIME +4 4 SNOW +5 5 ICE +6 6 GLAZE +7 7 NOT DRY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2014.table b/definitions/bufr/tables/0/wmo/36/codetables/2014.table new file mode 100644 index 000000000..bc5c5fcb8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2014.table @@ -0,0 +1,51 @@ +0 0 NO WIND FINDING +1 1 AUTOMATIC WITH AUXILIARY OPTICAL DIRECTION FINDING +2 2 AUTOMATIC WITH AUXILIARY RADIO DIRECTION FINDING +3 3 AUTOMATIC WITH AUXILIARY RANGING +4 4 NOT USED +5 5 AUTOMATIC WITH MULTIPLE VLF-OMEGA SIGNALS +6 6 AUTOMATIC CROSS CHAIN LORAN-C +7 7 AUTOMATIC WITH AUXILIARY WIND PROFILER +8 8 AUTOMATIC SATELLITE NAVIGATION +19 19 TRACKING TECHNIQUE NOT SPECIFIED +20 20 VESSEL STOPPED +21 21 VESSEL DIVERTED FROM ORIGINAL DESTINATION +22 22 VESSEL'S ARRIVAL DELAYED +23 23 CONTAINER DAMAGED +24 24 POWER FAILURE TO CONTAINER +29 29 OTHER PROBLEMS +30 30 MAJOR POWER PROBLEMS +31 31 UPS INOPERATIVE +32 32 RECEIVER HARDWARE PROBLEMS +33 33 RECEIVER SOFTWARE PROBLEMS +34 34 PROCESSOR HARDWARE PROBLEMS +35 35 PROCESSOR SOFTWARE PROBLEMS +36 36 NAVAID SYSTEM DAMAGED +37 37 SHORTAGE OF LIFTING GAS +38 38 RESERVED +39 39 OTHER PROBLEMS +40 40 MECHANICAL DEFECT +41 41 MATERIAL DEFECT (HAND LAUNCHER) +42 42 POWER FAILURE +43 43 CONTROL FAILURE +44 44 PNEUMATIC/HYDRAULIC FAILURE +45 45 OTHER PROBLEMS +46 46 COMPRESSOR PROBLEMS +47 47 BALLOON PROBLEMS +48 48 BALLOON RELEASE PROBLEMS +49 49 LAUNCHER DAMAGED +50 50 R/S RECEIVER ANTENNA DEFECT +51 51 NAVAID ANTENNA DEFECT +52 52 R/S RECEIVER CABLING (ANTENNA) DEFECT +53 53 NAVAID ANTENNA CABLING DEFECT +59 59 OTHER PROBLEMS +60 60 ASAP COMMUNICATIONS DEFECT +61 61 COMMUNICATIONS FACILITY REJECTED DATA +62 62 NO POWER AT TRANSMITTING ANTENNA +63 63 ANTENNA CABLE BROKEN +64 64 ANTENNA CABLE DEFECT +65 65 MESSAGE TRANSMITTED POWER BELOW NORMAL +69 69 OTHER PROBLEMS +70 70 ALL SYSTEMS IN NORMAL OPERATION +99 99 STATUS OF SYSTEM AND ITS COMPONENTS NOT SPECIFIED +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2015.table b/definitions/bufr/tables/0/wmo/36/codetables/2015.table new file mode 100644 index 000000000..7b0ccaf86 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2015.table @@ -0,0 +1,7 @@ +0 0 RESERVED +1 1 PRESSURE ONLY RADIOSONDE +2 2 PRESSURE ONLY RADIOSONDE PLUS TRANSPONDER +3 3 PRESSURE ONLY RADIOSONDE PLUS RADAR REFLECTOR +4 4 NO-PRESSURE RADIOSONDE PLUS TRANSPONDER +5 5 NO-PRESSURE RADIOSONDE PLUS RADAR REFLECTOR +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2016.table b/definitions/bufr/tables/0/wmo/36/codetables/2016.table new file mode 100644 index 000000000..4a3022611 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2016.table @@ -0,0 +1,4 @@ +1 1 TRAIN REGULATOR +2 2 LIGHT UNIT +3 3 PARACHUTE +4 4 ROOFTOP RELEASE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2017.table b/definitions/bufr/tables/0/wmo/36/codetables/2017.table new file mode 100644 index 000000000..7fac2e10f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2017.table @@ -0,0 +1,6 @@ +0 0 NO CORRECTIONS +1 1 TIME LAG CORRECTION PROVIDED BY THE MANUFACTURER +2 2 SOLAR RADIATION CORRECTION PROVIDED BY THE MANUFACTURER +3 3 SOLAR RADIATION AND TIME LAG CORRECTION PROVIDED BY THE MANUFACTURER +7 7 GRUAN SOLAR RADIATION AND TIME LAG CORRECTION +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2019.table b/definitions/bufr/tables/0/wmo/36/codetables/2019.table new file mode 100644 index 000000000..547ec53d5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2019.table @@ -0,0 +1,366 @@ +10 10 AATSR +11 11 ATSR +12 12 ATSR-2 +13 13 MWR +14 14 PMR +30 30 ARGOS +40 40 LASER REFLECTORS +41 41 DORIS +42 42 DORIS-NG +47 47 POSEIDON-1 (SSALT1) +48 48 POSEIDON-2 (SSALT2) +49 49 POSEIDON-3 (SSALT3) +50 50 ATSR/M +51 51 HRG +52 52 HRV +53 53 HRVIR +54 54 SCARAB/MV2 +55 55 POLDER +56 56 IIR +57 57 POSEIDON-4 +60 60 VEGETATION +61 61 WINDII +62 62 ALTIKA +80 80 RADARSAT DTT +81 81 RADARSAT TTC +85 85 SAR (CSA) +90 90 MOPITT +91 91 OSIRIS +92 92 ACE-FTS +97 97 PANCHROMATIC IMAGER +98 98 GPS RECEIVER +102 102 CHAMP GPS SOUNDER +103 103 IGOR +104 104 TRI-G +116 116 CHAMP GRAVITY PACKAGE (ACCELEROMETER+GPS) +117 117 CHAMP MAGNETOMETRY PACKAGE (1 SCALAR+2 VECTOR MAGNETOMETER) +120 120 ENVISAT COMMS +121 121 ERS COMMS +130 130 ALADIN +131 131 ATLID +140 140 AMI/SAR/IMAGE +141 141 AMI/SAR/WAVE +142 142 AMI/SCATTEROMETER +143 143 ASAR +144 144 ASAR +145 145 ASAR +146 146 CPR +147 147 RA-2/MWR +148 148 RA/MWR +150 150 SCATTEROMETER +151 151 SAR-C +152 152 SW +161 161 MIPAS +162 162 MWR-2 +163 163 SOPRANO +170 170 GOME +172 172 GOMOS +174 174 MERIS +175 175 SCIAMACHY +176 176 MIRAS +177 177 SIRAL +178 178 SRAL +179 179 OLCI +180 180 SLSTR +181 181 METEOSAT COMMS +182 182 MSG COMMS +190 190 ASCAT +200 200 GERB +202 202 GRAS +203 203 MHS +205 205 MVIRI +207 207 SEVIRI +208 208 VIRI +220 220 GOME-2 +221 221 IASI +240 240 DCP +245 245 CCD +246 246 HSB +248 248 OBA +250 250 WFI +255 255 IRMSS +260 260 BSS & FSS TRANSPONDERS +261 261 DRT-S&R +262 262 INSAT COMMS +268 268 HR-PAN +269 269 MSMR +270 270 VHRR +271 271 WIFS +275 275 AWIFS +276 276 LISS-I +277 277 LISS-II +278 278 LISS-III +279 279 LISS-IV +284 284 PAN +285 285 MOS +286 286 OCM +287 287 ROSA +288 288 SCAT +289 289 IMG +290 290 MTSAT COMMS +291 291 HIMAWARI COMMS +294 294 JAMI +295 295 IMAGER/MTSAT-2 +296 296 VISSR +297 297 AHI +300 300 GLAS +301 301 LRA +302 302 MBLA +303 303 CALIOP +309 309 CPR (CLOUDSAT) +312 312 NSCAT +313 313 SEAWINDS +314 314 RAPIDSCAT +330 330 ACRIM +334 334 BUV +336 336 ALI +347 347 ASTER +348 348 CERES-2 +351 351 GPSDR +353 353 HIRDLS +354 354 HRDI +356 356 LIS +358 358 PEM +359 359 SEAWIFS +360 360 SUSIM (UARS) +363 363 SBUV/1 +365 365 TMI +366 366 JMR +367 367 AMR +369 369 LIMS +370 370 LRIR +371 371 EPIC +372 372 NISTAR +373 373 PLASMA-MAG +374 374 XPS +375 375 VIRS +376 376 POLDER II +377 377 TIM +379 379 WFC +382 382 CLAES +383 383 HALOE +384 384 ISAMS +385 385 MISR +386 386 MLS +387 387 MLS (EOS-AURA) +389 389 MODIS +393 393 HAIRS +394 394 OMI +395 395 ATMOSPHERIC CORRECTOR +396 396 HYPERION +397 397 HRIR +398 398 MRIR +399 399 SAGE I +400 400 SAGE II +401 401 SAGE III +402 402 SAMS +403 403 SAM-II +404 404 IRIS +405 405 GIFTS +420 420 AIRS +421 421 SIRS-A +422 422 SIRS-B +426 426 SOLSTICE +430 430 TES +431 431 TOMS +432 432 OCO +450 450 ADEOS COMMS +451 451 DCS (JAXA) +453 453 GMS COMMS +454 454 JERS-1 COMMS +460 460 RIS +461 461 PR +462 462 SAR +470 470 PALSAR +478 478 AMSR2 +479 479 AMSR-E +480 480 PRISM (ALOS) +481 481 AMSR +482 482 AVNIR +483 483 AVNIR-2 +484 484 GLI +485 485 MESSR +486 486 MSR +487 487 OCTS +488 488 OPS +489 489 VISSR (GMS-5) +490 490 VTIR +510 510 ILAS-I +511 511 ILAS-II +512 512 IMG +514 514 SEM +515 515 SOFIS +516 516 TANSO-FTS +517 517 TANSO-CAI +518 518 DPR +519 519 GMI +526 526 CION-A +527 527 CION-B +528 528 CION-C +529 529 CION-D +530 530 SGNOS-A +531 531 SGNOS-B +532 532 SGNOS-C +533 533 SGNOS-D +534 534 PYXIS-A +535 535 PYXIS-B +540 540 DCS (NOAA) +541 541 GOES COMMS +542 542 LANDSAT COMMS +543 543 NOAA COMMS +544 544 S&R (GOES) +545 545 S&R (NOAA) +546 546 WEFAX +547 547 SEM (GOES) +550 550 SSM +551 551 SSJ/4 +552 552 SSIES-2 +553 553 SSB/X-2 +570 570 AMSU-A +574 574 AMSU-B +580 580 ATOVS (HIRS/3 + AMSU + AVHRR/3) +590 590 AVHRR/2 +591 591 AVHRR/3 +592 592 AVHRR/4 +600 600 ERBE +601 601 ETM+ +604 604 HIRS/1 +605 605 HIRS/2 +606 606 HIRS/3 +607 607 HIRS/4 +615 615 IMAGER +616 616 VIIRS +617 617 ABI +618 618 GLM +620 620 CRIRS/NP +621 621 ATMS +622 622 MSS +623 623 MSU +624 624 SBUV/2 +625 625 SBUV/3 +626 626 SOUNDER +627 627 SSU +628 628 TM +629 629 TOVS (HIRS/2 + MSU + SSU) +630 630 VAS +631 631 SSZ +645 645 SEM +650 650 MVIRSR (10 CHANNEL) +651 651 MVIRSR (3 CHANNEL) +652 652 MVIRSR (5 CHANNEL) +670 670 RLSBO +680 680 MSU-EU +681 681 MSU-UM +682 682 RM-08 +683 683 SU-UMS +684 684 SU-VR +685 685 TRASSER +686 686 SCAT +687 687 ALT +688 688 MWI +700 700 KONDOR-2 +701 701 BRK +710 710 ALISSA +712 712 BALKAN-2 LIDAR +715 715 MK-4 +716 716 MK-4M +730 730 GREBEN +731 731 SAR-10 +732 732 SAR-3 +733 733 SAR-70 +740 740 SLR-3 +745 745 TRAVERS SAR +750 750 174-K +751 751 BTVK +752 752 CHAIKA +753 753 DELTA-2 +755 755 IKAR-D +756 756 IKAR-N +757 757 IKAR-P +760 760 ISP +761 761 KFA-1000 +762 762 KFA-200 +763 763 KFA-3000 +770 770 KLIMAT +771 771 KLIMAT-2 +775 775 MIRAS +776 776 MIVZA +777 777 MIVZA-M +780 780 MR-2000 +781 781 MR-2000M +785 785 MR-900 +786 786 MR-900B +790 790 MSU-E +791 791 MSU-E1 +792 792 MSU-E2 +793 793 MSU-M +794 794 MSU-S +795 795 MSU-SK +796 796 MSU-V +810 810 MTZA +815 815 MZOAS +820 820 R-225 +821 821 R-400 +822 822 R-600 +830 830 RMS +835 835 TV CAMERA +836 836 SILVA +840 840 SROSMO +850 850 BUFS-2 +851 851 BUFS-4 +855 855 ISTOK-1 +856 856 SFM-2 +857 857 DOPI +858 858 KGI-4 +859 859 OZON-M +860 860 RMK-2 +861 861 MTVZA-GY +862 862 IKFS-2 +900 900 MAXIE +901 901 OLS +905 905 SSM/I +906 906 SSM/T-1 +907 907 SSM/T-2 +908 908 SSMIS +909 909 VTPR +910 910 SXI +930 930 EHIC +931 931 X-RAY ASTRONOMY PAYLOAD +932 932 IVISSR (FY-2) +933 933 IRAS +934 934 MWAS +935 935 IMWAS +936 936 MWHS +937 937 MVIRS +938 938 MWRI +940 940 MTVZA-OK +941 941 SAPHIR +942 942 MADRAS +943 943 SCAT (ON CFOSAT) +944 944 ALT +945 945 TSIS +946 946 CMIS +947 947 OMPS +948 948 GPSOS +949 949 SESS +950 950 VIRR +951 951 TOM +952 952 OP +953 953 MWHS-2 +954 954 MWTS-2 +955 955 HIRAS +956 956 SBUS +957 957 TOU +958 958 GNOS +959 959 SMR +960 960 +961 961 AGRI +962 962 GIIRS +963 963 LMI +964 964 SEP +980 980 AMI +981 981 MI +982 982 KSEM +990 990 SMMR +991 991 THIR +2047 2047 diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2020.table b/definitions/bufr/tables/0/wmo/36/codetables/2020.table new file mode 100644 index 000000000..1f70013d3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2020.table @@ -0,0 +1,32 @@ +0 0 NIMBUS +1 1 VTPR +2 2 TIROS 1 (TIROS, NOAA-6 TO NOAA-13) +3 3 TIROS 2 (NOAA-14 ONWARDS) +10 10 EOS +20 20 GPM-CORE +31 31 DMSP +61 61 EUMETSAT POLAR SYSTEM (EPS) +91 91 ERS +92 92 SENTINEL-3 +121 121 ADEOS +122 122 GCOM +241 241 GOES +261 261 JASON +271 271 GMS +272 272 MTSAT +273 273 HIMAWARI +281 281 COMS +301 301 INSAT +331 331 METEOSAT OPERATIONAL PROGRAMME (MOP) +332 332 METEOSAT TRANSITIONAL PROGRAMME (MTP) +333 333 METEOSAT SECOND GENERATION PROGRAMME (MSG) +351 351 GOMS +380 380 FY-1 +381 381 FY-2 +382 382 FY-3 +383 383 FY-4 +401 401 GPS +402 402 GLONASS +403 403 GALILEO +404 404 BDS (BEIDOU NAVIGATION SATELLITE SYSTEM) +511 511 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2021.table b/definitions/bufr/tables/0/wmo/36/codetables/2021.table new file mode 100644 index 000000000..b95fdc989 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2021.table @@ -0,0 +1,8 @@ +1 1 HIGH-RESOLUTION INFRARED SOUNDER (HIRS) +2 2 MICROWAVE SOUNDING UNIT (MSU) +3 3 STRATOSPHERIC SOUNDING UNIT (SSU) +4 4 AMI (ADVANCED MICROWAVE INSTRUMENT) WIND MODE +5 5 AMI (ADVANCED MICROWAVE INSTRUMENT) WAVE MODE +6 6 AMI (ADVANCED MICROWAVE INSTRUMENT) IMAGE MODE +7 7 RADAR ALTIMETER +8 8 ATSR (ALONG-TRACK SCANNING RADIOMETER) diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2022.table b/definitions/bufr/tables/0/wmo/36/codetables/2022.table new file mode 100644 index 000000000..5068e7fd7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2022.table @@ -0,0 +1,5 @@ +1 1 PROCESSING TECHNIQUE NOT DEFINED +2 2 AUTOMATED STATISTICAL REGRESSION +3 3 CLEAR PATH +4 4 PARTLY CLOUDY PATH +5 5 CLOUDY PATH diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2023.table b/definitions/bufr/tables/0/wmo/36/codetables/2023.table new file mode 100644 index 000000000..be7eb84e4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2023.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 WIND DERIVED FROM CLOUD MOTION OBSERVED IN THE INFRARED CHANNEL +2 2 WIND DERIVED FROM CLOUD MOTION OBSERVED IN THE VISIBLE CHANNEL +3 3 WIND DERIVED FROM CLOUD MOTION OBSERVED IN THE WATER VAPOUR CHANNEL +4 4 WIND DERIVED FROM MOTION OBSERVED IN A COMBINATION OF SPECTRAL CHANNELS +5 5 WIND DERIVED FROM MOTION OBSERVED IN THE WATER VAPOUR CHANNEL IN CLEAR AIR +6 6 WIND DERIVED FROM MOTION OBSERVED IN THE OZONE CHANNEL +7 7 WIND DERIVED FROM MOTION OBSERVED IN WATER VAPOUR CHANNEL (CLOUD OR CLEAR AIR NOT SPECIFIED) +13 13 ROOT-MEAN-SQUARE +14 14 RESERVED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2024.table b/definitions/bufr/tables/0/wmo/36/codetables/2024.table new file mode 100644 index 000000000..00ec80ef6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2024.table @@ -0,0 +1,4 @@ +0 0 RESERVED +1 1 TABLE WITH FULL RANGE OF HUMIDITY VARIATION IN LAYER +2 2 REGRESSION TECHNIQUE ON 2 HUMIDITY VALUES IN LAYER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2025.table b/definitions/bufr/tables/0/wmo/36/codetables/2025.table new file mode 100644 index 000000000..64dc01875 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2025.table @@ -0,0 +1,16 @@ +1 1 RESERVED +2 2 HIRS +3 3 MSU +6 6 HIRS +7 7 MSU +10 10 HIRS (1, 2, 3, 8, 9, 16, 17) +11 11 HIRS (1, 2, 3, 9, 17) +12 12 MSU +15 15 HIRS +16 16 HIRS +17 17 MSU +18 18 SKINTK (OCEAN ONLY) +21 21 HIRS +22 22 SSU +23 23 MSU (3, 4) +24 24 RESERVED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2030.table b/definitions/bufr/tables/0/wmo/36/codetables/2030.table new file mode 100644 index 000000000..2777bbcd3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2030.table @@ -0,0 +1,8 @@ +0 0 RESERVED +1 1 ADCP (ACOUSTIC DOPPLER CURRENT PROFILER) +2 2 GEK (GEOMAGNETIC ELECTROKINETOGRAPH) +3 3 SHIP'S SET AND DRIFT DETERMINED BY FIXES 3-6 HOURS APART +4 4 SHIP'S SET AND DRIFT DETERMINED BY FIXES MORE THAN 6 HOURS BUT LESS THAN 12 HOURS APART +5 5 DRIFT OF BUOY +6 6 ADCP (ACOUSTIC DOPPLER CURRENT PROFILER) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2031.table b/definitions/bufr/tables/0/wmo/36/codetables/2031.table new file mode 100644 index 000000000..c096d370c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2031.table @@ -0,0 +1,21 @@ +0 0 RESERVED +1 1 INSTANTANEOUS +2 2 AVERAGED OVER 3 MIN OR LESS +3 3 AVERAGED OVER MORE THAN 3 MIN, BUT 6 MIN AT THE MOST +4 4 AVERAGED OVER MORE THAN 6 MIN, BUT 12 MIN AT THE MOST +5 5 INSTANTANEOUS +6 6 AVERAGED OVER 3 MIN OR LESS +7 7 AVERAGED OVER MORE THAN 3 MIN, BUT 6 MIN AT THE MOST +8 8 AVERAGED OVER MORE THAN 6 MIN, BUT 12 MIN AT THE MOST +9 9 VECTOR OR DOPPLER CURRENT PROFILING METHOD NOT USED +10 10 RESERVED +11 11 1 HOUR OR LESS +12 12 MORE THAN 1 HOUR BUT 2 HOURS AT THE MOST +13 13 MORE THAN 2 HOURS BUT 4 HOURS AT THE MOST +14 14 MORE THAN 4 HOURS BUT 8 HOURS AT THE MOST +15 15 MORE THAN 8 HOURS BUT 12 HOURS AT THE MOST +16 16 MORE THAN 12 HOURS BUT 18 HOURS AT THE MOST +17 17 MORE THAN 18 HOURS BUT 24 HOURS AT THE MOST +18 18 RESERVED +19 19 DRIFT METHOD NOT USED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2032.table b/definitions/bufr/tables/0/wmo/36/codetables/2032.table new file mode 100644 index 000000000..7e9310db0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2032.table @@ -0,0 +1,4 @@ +0 0 VALUES AT SELECTED DEPTHS (DATA POINTS FIXED BY THE INSTRUMENT OR SELECTED BY ANY OTHER METHOD) +1 1 VALUES AT SELECTED DEPTHS (DATA POINTS TAKEN FROM TRACES AT SIGNIFICANT DEPTHS) +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2033.table b/definitions/bufr/tables/0/wmo/36/codetables/2033.table new file mode 100644 index 000000000..8215be095 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2033.table @@ -0,0 +1,5 @@ +0 0 NO SALINITY MEASURED +1 1 IN SITU SENSOR, ACCURACY BETTER THAN 0.02 ‰ +2 2 IN SITU SENSOR, ACCURACY LESS THAN 0.02 ‰ +3 3 SAMPLE ANALYSIS +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2034.table b/definitions/bufr/tables/0/wmo/36/codetables/2034.table new file mode 100644 index 000000000..06cdd52d2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2034.table @@ -0,0 +1,7 @@ +0 0 UNSPECIFIED DROGUE +1 1 HOLEY SOCK +2 2 TRISTAR +3 3 WINDOW SHADE +4 4 PARACHUTE +5 5 NON-LAGRANGIAN SEA ANCHOR +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2036.table b/definitions/bufr/tables/0/wmo/36/codetables/2036.table new file mode 100644 index 000000000..7782d302a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2036.table @@ -0,0 +1,4 @@ +0 0 DRIFTING BUOY +1 1 FIXED BUOY +2 2 SUBSURFACE FLOAT (MOVING) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2037.table b/definitions/bufr/tables/0/wmo/36/codetables/2037.table new file mode 100644 index 000000000..729c40e63 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2037.table @@ -0,0 +1,8 @@ +0 0 RESERVED +1 1 MANUAL READING FROM VERTICAL TIDE STAFF +2 2 MANUAL READING FROM SINGLE AUTOMATIC RECORDER AT STATION +3 3 MANUAL READING FROM MULTIPLE AUTOMATIC RECORDERS AT STATION +4 4 AUTOMATIC READING FROM SINGLE AUTOMATIC RECORDER AT STATION WITHOUT LEVEL REFERENCE CHECK +5 5 AUTOMATIC READING FROM SINGLE AUTOMATIC RECORDER AT STATION WITH LEVEL REFERENCE CHECK, OR FROM MULTIPLE AUTOMATIC RECORDERS +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2038.table b/definitions/bufr/tables/0/wmo/36/codetables/2038.table new file mode 100644 index 000000000..458f14169 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2038.table @@ -0,0 +1,16 @@ +0 0 SHIP INTAKE +1 1 BUCKET +2 2 HULL CONTACT SENSOR +3 3 REVERSING THERMOMETER +4 4 STD/CTD SENSOR +5 5 MECHANICAL BT +6 6 EXPENDABLE BT +7 7 DIGITAL BT +8 8 THERMISTOR CHAIN +9 9 INFRARED SCANNER +10 10 MICROWAVE SCANNER +11 11 INFRARED RADIOMETER +12 12 IN-LINE THERMOSALINOGRAPH +13 13 TOWED BODY +14 14 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2039.table b/definitions/bufr/tables/0/wmo/36/codetables/2039.table new file mode 100644 index 000000000..0a94982b5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2039.table @@ -0,0 +1,5 @@ +0 0 MEASURED WET-BULB TEMPERATURE +1 1 ICED BULB MEASURED WET-BULB TEMPERATURE +2 2 COMPUTED WET-BULB TEMPERATURE +3 3 ICED BULB COMPUTED WET-BULB TEMPERATURE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2040.table b/definitions/bufr/tables/0/wmo/36/codetables/2040.table new file mode 100644 index 000000000..78b291706 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2040.table @@ -0,0 +1,8 @@ +0 0 SHIP'S MOTION REMOVED BY AVERAGING +1 1 SHIP'S MOTION REMOVED BY MOTION COMPENSATION +2 2 SHIP'S MOTION NOT REMOVED +3 3 SHIP'S MOTION REMOVED BY AVERAGING +4 4 SHIP'S MOTION REMOVED BY MOTION COMPENSATION +5 5 SHIP'S MOTION NOT REMOVED +6 6 DOPPLER CURRENT PROFILING METHOD NOT USED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2041.table b/definitions/bufr/tables/0/wmo/36/codetables/2041.table new file mode 100644 index 000000000..ef5bf86b3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2041.table @@ -0,0 +1,6 @@ +0 0 INFORMATION BASED ON MANUAL ANALYSIS +1 1 INFORMATION BASED ON COMPUTER ANALYSIS +2 2 INFORMATION BASED ON DATA ASSIMILATION +3 3 INFORMATION BASED ON COMPUTER ANALYSIS OR DATA ASSIMILATION MANUALLY MODIFIED +10 10 INFORMATION BASED ON THE NUMERICAL WEATHER PREDICTION +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2042.table b/definitions/bufr/tables/0/wmo/36/codetables/2042.table new file mode 100644 index 000000000..eb2445b83 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2042.table @@ -0,0 +1,4 @@ +0 0 VALUE ORIGINALLY REPORTED IN M/S +1 1 VALUE ORIGINALLY REPORTED IN KNOTS +2 2 NO SEA CURRENT DATA AVAILABLE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2044.table b/definitions/bufr/tables/0/wmo/36/codetables/2044.table new file mode 100644 index 000000000..0e10ed8e1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2044.table @@ -0,0 +1,6 @@ +0 0 RESERVED FOR FUTURE USE +1 1 LONGUET-HIGGINS (1964) +2 2 LONGUET-HIGGINS (F3 METHOD) +3 3 MAXIMUM LIKELIHOOD METHOD +4 4 MAXIMUM ENTROPY METHOD +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2045.table b/definitions/bufr/tables/0/wmo/36/codetables/2045.table new file mode 100644 index 000000000..374e4f27e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2045.table @@ -0,0 +1,5 @@ +0 0 SEA STATION +1 1 AUTOMATIC DATA BUOY +2 2 AIRCRAFT +3 3 SATELLITE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2046.table b/definitions/bufr/tables/0/wmo/36/codetables/2046.table new file mode 100644 index 000000000..57fb9d6be --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2046.table @@ -0,0 +1,4 @@ +0 0 RESERVED FOR FUTURE USE +1 1 HEAVE SENSOR +2 2 SLOPE SENSOR +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2047.table b/definitions/bufr/tables/0/wmo/36/codetables/2047.table new file mode 100644 index 000000000..821393179 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2047.table @@ -0,0 +1,9 @@ +0 0 RESERVED +1 1 DART II (PMEL) +2 2 DART ETD +3 3 SAIC TSUNAMI BUOY (STB) +4 4 GFZ - POTSDAM +5 5 INCOIS (INDIA) +6 6 INABUOY (INDONESIA) +7 7 ENVIRTECH +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2048.table b/definitions/bufr/tables/0/wmo/36/codetables/2048.table new file mode 100644 index 000000000..e4325f83b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2048.table @@ -0,0 +1,16 @@ +0 0 HIRS +1 1 MSU +2 2 SSU +3 3 AMSU-A +4 4 AMSU-B +5 5 AVHRR +6 6 SSMI +7 7 NSCAT +8 8 SEAWINDS +9 9 POSEIDON ALTIMETER +10 10 JMR (JASON MICROWAVE RADIOMETER) +11 11 MHS +12 12 ASCAT +13 13 OSCAT2 +14 14 RESERVED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2049.table b/definitions/bufr/tables/0/wmo/36/codetables/2049.table new file mode 100644 index 000000000..ade5cac86 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2049.table @@ -0,0 +1,4 @@ +1 1 PROCESSING TECHNIQUE NOT DEFINED +2 2 SIMULTANEOUS PHYSICAL RETRIEVAL +3 3 CLEAR SOUNDING +4 4 CLOUDY SOUNDING diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2050.table b/definitions/bufr/tables/0/wmo/36/codetables/2050.table new file mode 100644 index 000000000..fbcce617d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2050.table @@ -0,0 +1,19 @@ +1 1 1 +2 2 2 +3 3 3 +4 4 4 +5 5 5 +6 6 6 +7 7 7 +8 8 8 +9 9 9 +10 10 10 +11 11 11 +12 12 12 +13 13 13 +14 14 14 +15 15 15 +16 16 16 +17 17 17 +18 18 18 +19 19 19 diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2051.table b/definitions/bufr/tables/0/wmo/36/codetables/2051.table new file mode 100644 index 000000000..3524ae72d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2051.table @@ -0,0 +1,5 @@ +0 0 RESERVED +1 1 MAXIMUM/MINIMUM THERMOMETERS +2 2 AUTOMATED INSTRUMENTS +3 3 THERMOGRAPH +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2052.table b/definitions/bufr/tables/0/wmo/36/codetables/2052.table new file mode 100644 index 000000000..8b6262caa --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2052.table @@ -0,0 +1,5 @@ +1 1 1 +2 2 2 +3 3 3 +4 4 4 +5 5 5 diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2053.table b/definitions/bufr/tables/0/wmo/36/codetables/2053.table new file mode 100644 index 000000000..03e5e295e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2053.table @@ -0,0 +1,5 @@ +0 0 OBSERVED BRIGHTNESS TEMPERATURE +1 1 BRIGHTNESS TEMPERATURE WITH BIAS CORRECTION APPLIED +2 2 BRIGHTNESS TEMPERATURE CALCULATED FROM FIRST GUESS +3 3 BRIGHTNESS TEMPERATURE CALCULATED FROM SOUNDING +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2054.table b/definitions/bufr/tables/0/wmo/36/codetables/2054.table new file mode 100644 index 000000000..0995688ba --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2054.table @@ -0,0 +1,6 @@ +0 0 PARAMETER DERIVED USING OBSERVED SOUNDER BRIGHTNESS TEMPERATURES +1 1 PARAMETER DERIVED USING OBSERVED IMAGER BRIGHTNESS TEMPERATURES +2 2 PARAMETER DERIVED USING FIRST GUESS INFORMATION +3 3 PARAMETER DERIVED USING NMC ANALYSIS INFORMATION +4 4 PARAMETER DERIVED USING RADIOSONDE INFORMATION +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2055.table b/definitions/bufr/tables/0/wmo/36/codetables/2055.table new file mode 100644 index 000000000..ce06f0089 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2055.table @@ -0,0 +1,10 @@ +0 0 STATISTICS GENERATED COMPARING RETRIEVAL VERSUS RADIOSONDE +1 1 STATISTICS GENERATED COMPARING RETRIEVAL VERSUS FIRST GUESS +2 2 STATISTICS GENERATED COMPARING RADIOSONDE VERSUS FIRST GUESS +3 3 STATISTICS GENERATED COMPARING OBSERVED VERSUS RETRIEVAL +4 4 STATISTICS GENERATED COMPARING OBSERVED VERSUS FIRST GUESS +5 5 STATISTICS GENERATED COMPARING RADIOSONDE VERSUS IMAGER +6 6 STATISTICS GENERATED COMPARING RADIOSONDE VERSUS SOUNDER +7 7 STATISTICS GENERATED FOR RADIOSONDE +8 8 STATISTICS GENERATED FOR FIRST GUESS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2056.table b/definitions/bufr/tables/0/wmo/36/codetables/2056.table new file mode 100644 index 000000000..86eb98302 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2056.table @@ -0,0 +1,6 @@ +0 0 SUMS OF DIFFERENCES +1 1 SUMS OF SQUARED DIFFERENCES +2 2 SAMPLE SIZE +3 3 MINIMUM DIFFERENCE +4 4 MAXIMUM DIFFERENCE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2057.table b/definitions/bufr/tables/0/wmo/36/codetables/2057.table new file mode 100644 index 000000000..681e6bd08 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2057.table @@ -0,0 +1,7 @@ +0 0 NESTED GRID MODEL (NGM) +1 1 AVIATION MODEL (AVN) +2 2 MEDIUM RANGE FORECAST (MRF) MODEL +3 3 GLOBAL DATA ASSIMILATION SYSTEM (GDAS) FORECAST MODEL +4 4 PRIOR SOUNDINGS (WITHIN 3 HOURS OF CURRENT TIME) +5 5 CLIMATOLOGY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2058.table b/definitions/bufr/tables/0/wmo/36/codetables/2058.table new file mode 100644 index 000000000..6c45eda11 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2058.table @@ -0,0 +1,5 @@ +0 0 12 HOUR AND 18 HOUR +1 1 18 HOUR AND 24 HOUR +2 2 6 HOUR AND 12 HOUR +3 3 GREATER THAN 24 HOURS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2059.table b/definitions/bufr/tables/0/wmo/36/codetables/2059.table new file mode 100644 index 000000000..8f089d3c4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2059.table @@ -0,0 +1,5 @@ +0 0 NCEP NESTED GRID MODEL (NGM) ANALYSIS +1 1 NCEP AVIATION MODEL (AVN) ANALYSIS +2 2 NCEP MEDIUM RANGE FORECAST (MRF) MODEL ANALYSIS +3 3 NCEP GLOBAL DATA ASSIMILATION SYSTEM (GDAS) FORECAST MODEL ANALYSIS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2060.table b/definitions/bufr/tables/0/wmo/36/codetables/2060.table new file mode 100644 index 000000000..6f846987b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2060.table @@ -0,0 +1,7 @@ +0 0 CURRENT SURFACE HOURLY REPORTS +1 1 CURRENT SHIP REPORTS +2 2 CURRENT BUOY REPORTS +3 3 ONE HOUR OLD SURFACE HOURLY REPORTS +4 4 ONE HOUR OLD SHIP REPORTS +5 5 ONE HOUR OLD BUOY REPORTS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2061.table b/definitions/bufr/tables/0/wmo/36/codetables/2061.table new file mode 100644 index 000000000..592d51eb4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2061.table @@ -0,0 +1,3 @@ +0 0 INERTIAL NAVIGATION SYSTEM +1 1 OMEGA +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2062.table b/definitions/bufr/tables/0/wmo/36/codetables/2062.table new file mode 100644 index 000000000..2d0f4e202 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2062.table @@ -0,0 +1,7 @@ +0 0 ASDAR +1 1 ASDAR (ACARS ALSO AVAILABLE BUT NOT OPERATIVE) +2 2 ASDAR (ACARS ALSO AVAILABLE AND OPERATIVE) +3 3 ACARS +4 4 ACARS (ASDAR ALSO AVAILABLE BUT NOT OPERATIVE) +5 5 ACARS (ASDAR ALSO AVAILABLE AND OPERATIVE) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2064.table b/definitions/bufr/tables/0/wmo/36/codetables/2064.table new file mode 100644 index 000000000..741430292 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2064.table @@ -0,0 +1,4 @@ +0 0 GOOD +1 1 BAD +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2066.table b/definitions/bufr/tables/0/wmo/36/codetables/2066.table new file mode 100644 index 000000000..a3865dc68 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2066.table @@ -0,0 +1,9 @@ +0 0 INTERMET IMS 2000 +1 1 INTERMET IMS 1500C +2 2 SHANGHAI GTC1 +3 3 NANJING GTC2 +4 4 NANJING GFE(L)1 +5 5 MARL-A RADAR +6 6 VEKTOR-M RADAR +62 62 OTHER +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2070.table b/definitions/bufr/tables/0/wmo/36/codetables/2070.table new file mode 100644 index 000000000..5a098ea26 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2070.table @@ -0,0 +1,13 @@ +0 0 ACTUAL LOCATION IN SECONDS +1 1 ACTUAL LOCATION IN MINUTES +2 2 ACTUAL LOCATION IN DEGREES +3 3 ACTUAL LOCATION IN DECIDEGREES +4 4 ACTUAL LOCATION IN CENTIDEGREES +5 5 REFERENCED TO CHECKPOINT IN SECONDS +6 6 REFERENCED TO CHECKPOINT IN MINUTES +7 7 REFERENCED TO CHECKPOINT IN DEGREES +8 8 REFERENCED TO CHECKPOINT IN DECIDEGREES +9 9 REFERENCED TO CHECKPOINT IN CENTIDEGREES +10 10 ACTUAL LOCATION IN TENTHS OF A MINUTE +11 11 REFERENCED TO CHECKPOINT IN TENTHS OF A MINUTE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2080.table b/definitions/bufr/tables/0/wmo/36/codetables/2080.table new file mode 100644 index 000000000..c68a39dd6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2080.table @@ -0,0 +1,7 @@ +0 0 KAYSAM +1 1 TOTEX +2 2 KKS +3 3 GUANGZHOU SHUANGYI (CHINA) +4 4 CHEMCHINA ZHUZHOU (CHINA) +62 62 OTHER +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2081.table b/definitions/bufr/tables/0/wmo/36/codetables/2081.table new file mode 100644 index 000000000..dfe9551a9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2081.table @@ -0,0 +1,11 @@ +0 0 GP26 +1 1 GP28 +2 2 GP30 +3 3 HM26 +4 4 HM28 +5 5 HM30 +6 6 SV16 +7 7 TOTEX TA TYPE BALLOONS +8 8 TOTEX TX TYPE BALLOONS +30 30 OTHER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2083.table b/definitions/bufr/tables/0/wmo/36/codetables/2083.table new file mode 100644 index 000000000..611c5bf64 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2083.table @@ -0,0 +1,7 @@ +0 0 HIGH BAY +1 1 LOW BAY +2 2 BALLOON-INFLATED LAUNCH SYSTEM (BILS) +3 3 ROOF-TOP BILS +4 4 AUTOMATED UNMANNED SOUNDING SYSTEM +14 14 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2084.table b/definitions/bufr/tables/0/wmo/36/codetables/2084.table new file mode 100644 index 000000000..be6430ae6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2084.table @@ -0,0 +1,5 @@ +0 0 HYDROGEN +1 1 HELIUM +2 2 NATURAL GAS +14 14 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2092.table b/definitions/bufr/tables/0/wmo/36/codetables/2092.table new file mode 100644 index 000000000..b171b55c8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2092.table @@ -0,0 +1,4 @@ +0 0 UV CHANNEL BASED RETRIEVAL +1 1 VISIBLE CHANNEL BASED RETRIEVAL +2 2 COMBINED UV BASED RETRIEVAL AND VISIBLE BASED RETRIEVAL +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2095.table b/definitions/bufr/tables/0/wmo/36/codetables/2095.table new file mode 100644 index 000000000..580fe930c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2095.table @@ -0,0 +1,7 @@ +0 0 CAPACITANCE ANEROID +1 1 DERIVED FROM GPS +2 2 RESISTIVE STRAIN GAUGE +3 3 SILICON CAPACITOR +4 4 DERIVED FROM RADAR HEIGHT +30 30 OTHER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2096.table b/definitions/bufr/tables/0/wmo/36/codetables/2096.table new file mode 100644 index 000000000..9f1b1027c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2096.table @@ -0,0 +1,9 @@ +0 0 ROD THERMISTOR +1 1 BEAD THERMISTOR +2 2 CAPACITANCE BEAD +3 3 CAPACITANCE WIRE +4 4 RESISTIVE SENSOR +5 5 CHIP THERMISTOR +6 6 MERCURY +7 7 ALCOHOL/GLYCOL +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2097.table b/definitions/bufr/tables/0/wmo/36/codetables/2097.table new file mode 100644 index 000000000..309ef642a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2097.table @@ -0,0 +1,26 @@ +0 0 VIZ MARK II CARBON HYGRISTOR +1 1 VIZ B2 HYGRISTOR +2 2 VAISALA A-HUMICAP +3 3 VAISALA H-HUMICAP +4 4 CAPACITANCE SENSOR +5 5 VAISALA RS90 +6 6 SIPPICAN MARK IIA CARBON HYGRISTOR +7 7 TWIN ALTERNATIVELY HEATED HUMICAP CAPACITANCE SENSOR +8 8 HUMICAP CAPACITANCE SENSOR WITH ACTIVE DE-ICING METHOD +9 9 CARBON HYGRISTOR +10 10 PSYCHROMETER +11 11 CAPACITIVE (POLYMER) +12 12 CAPACITIVE (CERAMIC, INCLUDING METAL OXIDE) +13 13 RESISTIVE (GENERIC) +14 14 RESISTIVE (SALT POLYMER) +15 15 RESISTIVE (CONDUCTIVE POLYMER) +16 16 THERMAL CONDUCTIVITY +17 17 GRAVIMETRIC +18 18 PAPER-METAL COIL +19 19 ORDINARY HUMAN HAIR +20 20 ROLLED HAIR (TORSION) +21 21 GOLDBEATER'S SKIN +22 22 CHILLED MIRROR HYGROMETER +23 23 DEW CELL +24 24 OPTICAL ABSORPTION SENSOR +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2099.table b/definitions/bufr/tables/0/wmo/36/codetables/2099.table new file mode 100644 index 000000000..74cb817c9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2099.table @@ -0,0 +1,5 @@ +0 0 HH POLARIZATION +1 1 VV POLARIZATION +2 2 HV POLARIZATION REAL VALUED COMPONENT +3 3 HV POLARIZATION IMAGINARY VALUED COMPONENT +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2101.table b/definitions/bufr/tables/0/wmo/36/codetables/2101.table new file mode 100644 index 000000000..efdb3ec56 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2101.table @@ -0,0 +1,10 @@ +0 0 CENTRE FRONT-FED PARABOLOID +1 1 OFFSET FRONT-FED PARABOLOID +2 2 CENTRE CASSEGRAIN PARABOLOID +3 3 OFFSET CASSEGRAIN PARABOLOID +4 4 PLANAR ARRAY +5 5 COAXIAL-COLLINEAR ARRAY +6 6 YAGI ELEMENTS ARRAY +7 7 MICROSTRIP +14 14 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2103.table b/definitions/bufr/tables/0/wmo/36/codetables/2103.table new file mode 100644 index 000000000..417d2c9a4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2103.table @@ -0,0 +1 @@ +1 1 RADAR ANTENNA IS PROTECTED BY A RADOME diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2104.table b/definitions/bufr/tables/0/wmo/36/codetables/2104.table new file mode 100644 index 000000000..e39a15365 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2104.table @@ -0,0 +1,9 @@ +0 0 HORIZONTAL POLARIZATION +1 1 VERTICAL POLARIZATION +2 2 RIGHT CIRCULAR POLARIZATION +3 3 LEFT CIRCULAR POLARIZATION +4 4 HORIZONTAL AND VERTICAL POLARIZATION +5 5 RIGHT AND LEFT CIRCULAR POLARIZATION +6 6 QUASI-HORIZONTAL POLARIZATION +7 7 QUASI-VERTICAL POLARIZATION +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21066.table b/definitions/bufr/tables/0/wmo/36/codetables/21066.table new file mode 100644 index 000000000..9bcafea2a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21066.table @@ -0,0 +1,11 @@ +1 1 PROCESSING EQUIPMENT NOT WORKING +2 2 EQUIPMENT FAILED +3 3 PRF CODE CHANGED DURING IMAGE GENERATION +4 4 SAMPLING WINDOW CHANGED DURING IMAGE GENERATION +5 5 GAIN CHANGED DURING IMAGE GENERATION +6 6 CHIRP REPLICA EXCEEDS SPECIFIED VALUE +7 7 INPUT DATA MEAN AND STANDARD DEVIATION OF IN-PHASE AND QUADRATURE OUT OF RANGE +8 8 DOPPLER CENTROID CONFIDENCE > MMCC VALUE +9 9 DOPPLER CENTROID ABSOLUTE VALUE > PRF/2 +10 10 DOPPLER AMBIGUITY CONFIDENCE < MMCC VALUE +11 11 OUTPUT DATA MEAN AND STANDARD DEVIATION =< MMCC VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21067.table b/definitions/bufr/tables/0/wmo/36/codetables/21067.table new file mode 100644 index 000000000..a0ed399e4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21067.table @@ -0,0 +1,12 @@ +1 1 NO FOREBEAM CALCULATION +2 2 NO MIDBEAM CALCULATION +3 3 NO AFTBEAM CALCULATION +4 4 FOREBEAM ARCING DETECTED +5 5 MIDBEAM ARCING DETECTED +6 6 AFTBEAM ARCING DETECTED +7 7 ANY BEAM NOISE CONTENT ABOVE OR EQUAL TO THRESHOLD +8 8 LAND (ANY LAND IN CELL FOOTPRINT) +9 9 AUTONOMOUS AMBIGUITY REMOVAL NOT USED +10 10 METEOROLOGICAL BACKGROUND NOT USED +11 11 MINIMUM RESIDUAL EXCEEDED THRESHOLD +12 12 FRAME CHECKSUM ERROR DETECTED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21068.table b/definitions/bufr/tables/0/wmo/36/codetables/21068.table new file mode 100644 index 000000000..102171f44 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21068.table @@ -0,0 +1,7 @@ +1 1 STANDARD DEVIATION OF WIND SPEED OUTSIDE MMCC LIMIT +2 2 STANDARD DEVIATION OF SIGNIFICANT WAVE HEIGHT OUTSIDE MMCC LIMIT +3 3 STANDARD DEVIATION OF ALTITUDE OUTSIDE MMCC LIMIT +4 4 MEAN PEAKINESS OUTSIDE MMCC LIMIT +5 5 FRAME CHECKSUM ERROR DETECTED +6 6 HEIGHT-TIME LOOP TIME CONSTANT CORRECTION NOT PERFORMED +7 7 NOT ENOUGH MEASUREMENTS (N < 10) diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21069.table b/definitions/bufr/tables/0/wmo/36/codetables/21069.table new file mode 100644 index 000000000..320890afa --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21069.table @@ -0,0 +1,9 @@ +1 1 12.0 µM CHANNEL PRESENT IN SOURCE DATA +2 2 11.0 µM CHANNEL PRESENT IN SOURCE DATA +3 3 3.7 µM CHANNEL PRESENT IN SOURCE DATA +4 4 1.6 µM CHANNEL PRESENT IN SOURCE DATA +5 5 CLOUD IDENTIFICATION USED 1.6 µM HISTOGRAM REFLECTANCE CLOUD TEST +6 6 1.6 µM HISTOGRAM REFLECTANCE CLOUD TEST USED DYNAMIC THRESHOLD +7 7 SUN GLINT DETECTED BY 1.6 µM REFLECTANCE CLOUD TEST +8 8 3.7 µM CHANNEL USED IN SEA-SURFACE TEMPERATURE RETRIEVAL +9 9 SEA-SURFACE TEMPERATURE DERIVATION USED DAYTIME DATA (NIGHT-TIME IF ZERO) diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21070.table b/definitions/bufr/tables/0/wmo/36/codetables/21070.table new file mode 100644 index 000000000..669655f00 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21070.table @@ -0,0 +1,22 @@ +1 1 CELL 1: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +2 2 CELL 2: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +3 3 CELL 3: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +4 4 CELL 4: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +5 5 CELL 5: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +6 6 CELL 6: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +7 7 CELL 7: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +8 8 CELL 8: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +9 9 CELL 9: NADIR-ONLY VIEW SST USED 3.7 MICRON CHANNEL +10 10 CELL 1: DUAL VIEW SST USED 3.7 MICRON CHANNEL +11 11 CELL 2: DUAL VIEW SST USED 3.7 MICRON CHANNEL +12 12 CELL 3: DUAL VIEW SST USED 3.7 MICRON CHANNEL +13 13 CELL 4: DUAL VIEW SST USED 3.7 MICRON CHANNEL +14 14 CELL 5: DUAL VIEW SST USED 3.7 MICRON CHANNEL +15 15 CELL 6: DUAL VIEW SST USED 3.7 MICRON CHANNEL +16 16 CELL 7: DUAL VIEW SST USED 3.7 MICRON CHANNEL +17 17 CELL 8: DUAL VIEW SST USED 3.7 MICRON CHANNEL +18 18 CELL 9: DUAL VIEW SST USED 3.7 MICRON CHANNEL +19 19 NADIR VIEW CONTAINS DAY-TIME DATA (NIGHT IF ZERO) +20 20 FORWARD VIEW CONTAINS DAY-TIME DATA (NIGHT IF ZERO) +21 21 RECORD CONTAINS CONTRIBUTIONS FROM INSTRUMENT SCANS ACQUIRED WHEN ERS PLATFORM NOT IN YAW-STEERING MODE +22 22 RECORD CONTAINS CONTRIBUTIONS FROM INSTRUMENT SCANS FOR WHICH PRODUCT CONFIDENCE DATA SHOW QUALITY IS POOR OR UNKNOWN diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21072.table b/definitions/bufr/tables/0/wmo/36/codetables/21072.table new file mode 100644 index 000000000..99e4b1c29 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21072.table @@ -0,0 +1,3 @@ +1 1 HEIGHT ERROR CORRECTION APPLIED INSTEAD OF OPEN LOOP CALIBRATION +2 2 MICROWAVE SOUNDER USED FOR TROPOSPHERE CORRECTION +3 3 AGC OUTPUT CORRECTION APPLIED INSTEAD OF OPEN LOOP CALIBRATION diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21073.table b/definitions/bufr/tables/0/wmo/36/codetables/21073.table new file mode 100644 index 000000000..9538fa553 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21073.table @@ -0,0 +1,8 @@ +1 1 BLANK DATA RECORD +2 2 TEST +3 3 CALIBRATION (CLOSED LOOP) +4 4 BITE +5 5 ACQUISITION ON ICE +6 6 ACQUISITION ON OCEAN +7 7 TRACKING ON ICE +8 8 TRACKING ON OCEAN diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21076.table b/definitions/bufr/tables/0/wmo/36/codetables/21076.table new file mode 100644 index 000000000..bc52ac558 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21076.table @@ -0,0 +1,4 @@ +0 0 LINEAR +1 1 LOGARITHMIC (BASE E) +2 2 LOGARITHMIC (BASE 10) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21109.table b/definitions/bufr/tables/0/wmo/36/codetables/21109.table new file mode 100644 index 000000000..deb577aa0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21109.table @@ -0,0 +1,7 @@ +1 1 NOT ENOUGH GOOD SIGMA-0 AVAILABLE FOR WIND RETRIEVAL +2 2 POOR AZIMUTH DIVERSITY AMONG SIGMA-0 FOR WIND RETRIEVAL +8 8 SOME PORTION OF WIND VECTOR CELL IS OVER LAND +9 9 SOME PORTION OF WIND VECTOR CELL IS OVER ICE +10 10 WIND RETRIEVAL NOT PERFORMED FOR WIND VECTOR CELL +11 11 REPORTED WIND SPEED IS GREATER THAN 30 M S-1 +12 12 REPORTED WIND SPEED IS LESS THAN OR EQUAL TO 3 M S-1 diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21115.table b/definitions/bufr/tables/0/wmo/36/codetables/21115.table new file mode 100644 index 000000000..9e90133cd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21115.table @@ -0,0 +1,10 @@ +1 1 SIGMA-0 MEASUREMENT IS NOT USABLE +2 2 SIGNAL TO NOISE RATIO IS LOW +3 3 SIGMA-0 IS NEGATIVE +4 4 SIGMA-0 IS OUTSIDE OF ACCEPTABLE RANGE +5 5 SCATTEROMETER PULSE QUALITY IS NOT ACCEPTABLE +6 6 SIGMA-0 CELL LOCATION ALGORITHM DOES NOT CONVERGE +7 7 FREQUENCY SHIFT LIES BEYOND THE RANGE OF THE X FACTOR TABLE +8 8 SPACECRAFT TEMPERATURE IS BEYOND CALIBRATION COEFFICIENT RANGE +9 9 NO APPLICABLE ALTITUDE RECORDS WERE FOUND FOR THIS SIGMA-0 +10 10 INTERPOLATED EPHEMERIS DATA ARE NOT ACCEPTABLE FOR THIS SIGMA-0 diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21116.table b/definitions/bufr/tables/0/wmo/36/codetables/21116.table new file mode 100644 index 000000000..10b5c532c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21116.table @@ -0,0 +1,16 @@ +1 1 CALIBRATION/MEASUREMENT PULSE FLAG (1) +2 2 CALIBRATION/MEASUREMENT PULSE FLAG (2) +3 3 OUTER ANTENNA BEAM +4 4 SIGMA-0 CELL IS AFT OF SPACECRAFT +5 5 CURRENT MODE (1) +6 6 CURRENT MODE (2) +7 7 EFFECTIVE GATE WIDTH - SLICE RESOLUTION (1) +8 8 EFFECTIVE GATE WIDTH - SLICE RESOLUTION (2) +9 9 EFFECTIVE GATE WIDTH - SLICE RESOLUTION (3) +10 10 LOW RESOLUTION MODE - WHOLE PULSE DATA +11 11 SCATTEROMETER ELECTRONIC SUBSYSTEM B +12 12 ALTERNATE SPIN RATE - 19.8 RPM +13 13 RECEIVER PROTECTION ON +14 14 SLICES PER COMPOSITE FLAG (1) +15 15 SLICES PER COMPOSITE FLAG (2) +16 16 SLICES PER COMPOSITE FLAG (3) diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21119.table b/definitions/bufr/tables/0/wmo/36/codetables/21119.table new file mode 100644 index 000000000..e17e3c04a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21119.table @@ -0,0 +1,14 @@ +0 0 RESERVED +1 1 SASS +2 2 SASS2 +3 3 NSCAT0 +4 4 NSCAT1 +5 5 NSCAT2 +6 6 QSCAT0 +7 7 QSCAT1 +31 31 CMOD1 +32 32 CMOD2 +33 33 CMOD3 +34 34 CMOD4 +35 35 CMOD5 +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21144.table b/definitions/bufr/tables/0/wmo/36/codetables/21144.table new file mode 100644 index 000000000..1f082e6d9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21144.table @@ -0,0 +1 @@ +1 1 RAIN diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21148.table b/definitions/bufr/tables/0/wmo/36/codetables/21148.table new file mode 100644 index 000000000..11413ed72 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21148.table @@ -0,0 +1,2 @@ +1 1 NON SHORT SCALE VARIATION +2 2 SHORT SCALE VARIATION diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2115.table b/definitions/bufr/tables/0/wmo/36/codetables/2115.table new file mode 100644 index 000000000..c7e866c7a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2115.table @@ -0,0 +1,7 @@ +0 0 PDB +1 1 RSOIS +2 2 ASOS +3 3 PSYCHROMETER +4 4 F420 +30 30 OTHER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21150.table b/definitions/bufr/tables/0/wmo/36/codetables/21150.table new file mode 100644 index 000000000..851004635 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21150.table @@ -0,0 +1,4 @@ +0 0 DATA FROM SINGLE GROUND STATION (NO CO-LOCATION) +1 1 DATA FROM MULTIPLE GROUND STATION (CO-LOCATED DATA) +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21155.table b/definitions/bufr/tables/0/wmo/36/codetables/21155.table new file mode 100644 index 000000000..a7837cfa7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21155.table @@ -0,0 +1,16 @@ +1 1 NOT ENOUGH GOOD SIGMA-0 AVAILABLE FOR WIND RETRIEVAL +2 2 POOR AZIMUTH DIVERSITY AMONG SIGMA-0 FOR WIND RETRIEVAL +3 3 ANY BEAM NOISE CONTENT ABOVE THRESHOLD +4 4 PRODUCT MONITORING NOT USED +5 5 PRODUCT MONITORING FLAG +6 6 KNMI QUALITY CONTROL FAILS +7 7 VARIATIONAL QUALITY CONTROL FAILS +8 8 SOME PORTION OF WIND VECTOR CELL IS OVER LAND +9 9 SOME PORTION OF WIND VECTOR CELL IS OVER ICE +10 10 WIND RETRIEVAL NOT PERFORMED FOR WIND VECTOR CELL +11 11 REPORTED WIND SPEED IS GREATER THAN 30 M/S +12 12 REPORTED WIND SPEED IS LESS THAN OR EQUAL TO 3 M/S +13 13 RAIN FLAG FOR THE WIND VECTOR CELL IS NOT USABLE +14 14 RAIN FLAG ALGORITHM DETECTS RAIN +15 15 NO METEOROLOGICAL BACKGROUND USED +16 16 DATA ARE REDUNDANT diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21158.table b/definitions/bufr/tables/0/wmo/36/codetables/21158.table new file mode 100644 index 000000000..dd53c5159 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21158.table @@ -0,0 +1,4 @@ +0 0 ACCEPTABLE +1 1 NOT ACCEPTABLE +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21159.table b/definitions/bufr/tables/0/wmo/36/codetables/21159.table new file mode 100644 index 000000000..1703f9b8e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21159.table @@ -0,0 +1,4 @@ +0 0 GOOD +1 1 USABLE +2 2 BAD +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/21169.table b/definitions/bufr/tables/0/wmo/36/codetables/21169.table new file mode 100644 index 000000000..9b93444ce --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/21169.table @@ -0,0 +1,4 @@ +0 0 NO ICE PRESENT +1 1 ICE PRESENT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2119.table b/definitions/bufr/tables/0/wmo/36/codetables/2119.table new file mode 100644 index 000000000..0640af68b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2119.table @@ -0,0 +1,8 @@ +0 0 INTERMEDIATE FREQUENCY CALIBRATION MODE (IF CAL) +1 1 BUILT-IN TEST EQUIPMENT DIGITAL (BITE DGT) +2 2 BUILT-IN TEST EQUIPMENT RADIO FREQUENCY (BITE RF) +3 3 PRESET TRACKING (PSET TRK) +4 4 PRESET LOOP OUT +5 5 ACQUISITION +6 6 TRACKING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2131.table b/definitions/bufr/tables/0/wmo/36/codetables/2131.table new file mode 100644 index 000000000..f4336ef79 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2131.table @@ -0,0 +1 @@ +1 1 STC OPERATIONAL diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2137.table b/definitions/bufr/tables/0/wmo/36/codetables/2137.table new file mode 100644 index 000000000..40d33fdd3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2137.table @@ -0,0 +1,4 @@ +1 1 3:2 +2 2 4:3 +3 3 5:4 +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2138.table b/definitions/bufr/tables/0/wmo/36/codetables/2138.table new file mode 100644 index 000000000..a574506ad --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2138.table @@ -0,0 +1,3 @@ +1 1 CLOCKWISE ROTATION +2 2 COUNTERCLOCKWISE ROTATION +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2139.table b/definitions/bufr/tables/0/wmo/36/codetables/2139.table new file mode 100644 index 000000000..f6cf80294 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2139.table @@ -0,0 +1,3 @@ +0 0 SIRAL NOMINAL +1 1 SIRAL REDUNDANT +2 2 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2143.table b/definitions/bufr/tables/0/wmo/36/codetables/2143.table new file mode 100644 index 000000000..975d068be --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2143.table @@ -0,0 +1,21 @@ +0 0 RESERVED +1 1 BREWER SPECTROPHOTOMETER +2 2 CAVER TEICHERT +3 3 DOBSON +4 4 DOBSON (JAPAN) +5 5 EHMET +6 6 FECKER TELESCOPE +7 7 HOELPER +8 8 JODMETER +9 9 FILTER OZONOMETER M-83 +10 10 MAST +11 11 OXFORD +12 12 PAETZOLD +13 13 REGENER +14 14 RESERVED FOR FUTURE USE +15 15 VASSY FILTER OZONOMETER +16 16 CARBON IODIDE +17 17 SURFACE OZONE BUBBLER +18 18 FILTER OZONOMETER M-124 +19 19 ECC SONDE +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2144.table b/definitions/bufr/tables/0/wmo/36/codetables/2144.table new file mode 100644 index 000000000..5b0f37b34 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2144.table @@ -0,0 +1,8 @@ +0 0 DIRECT SUN +1 1 DIRECT SUN, ATTENUATOR #1 +2 2 DIRECT SUN, ATTENUATOR #2 +3 3 FOCUSED MOON +4 4 FOCUSED SUN +5 5 FOCUSED SUN CORRECTED WITH ADJACENT SKY MEASUREMENTS +6 6 ZENITH SKY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2145.table b/definitions/bufr/tables/0/wmo/36/codetables/2145.table new file mode 100644 index 000000000..1944e69fc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2145.table @@ -0,0 +1,9 @@ +0 0 WAVELENGTHS AD ORDINARY SETTING +1 1 WAVELENGTHS BD ORDINARY SETTING +2 2 WAVELENGTHS CD ORDINARY SETTING +3 3 WAVELENGTHS CC' ORDINARY SETTING +4 4 WAVELENGTHS AD FOCUSED IMAGE +5 5 WAVELENGTHS BD FOCUSED IMAGE +6 6 WAVELENGTHS CD FOCUSED IMAGE +7 7 WAVELENGTHS CC' FOCUSED IMAGE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2146.table b/definitions/bufr/tables/0/wmo/36/codetables/2146.table new file mode 100644 index 000000000..871b35709 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2146.table @@ -0,0 +1,11 @@ +0 0 ON DIRECT SUN +1 1 ON DIRECT MOON +2 2 ON BLUE ZENITH SKY +3 3 ON ZENITH CLOUD (UNIFORM STRATIFIED LAYER OF SMALL OPACITY) +4 4 ON ZENITH CLOUD (UNIFORM OR MODERATELY VARIABLE LAYER OF MEDIUM OPACITY) +5 5 ON ZENITH CLOUD (UNIFORM OR MODERATELY VARIABLE LAYER OF LARGE OPACITY) +6 6 ON ZENITH CLOUD (HIGHLY VARIABLE OPACITY, WITH OR WITHOUT PRECIPITATION) +7 7 ON ZENITH CLOUD (FOG) +8 8 ON ZENITH HAZE +9 9 ON DIRECT SUN THROUGH THIN CLOUD, FOG OR HAZE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2147.table b/definitions/bufr/tables/0/wmo/36/codetables/2147.table new file mode 100644 index 000000000..4ff1c92a9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2147.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 DIRECT LEASED CIRCUIT +2 2 DIALLED UP CONNECTION +3 3 INTERNET ISP +4 4 DCP VIA SATELLITE (MTSAT, METEOSAT, ETC.) +5 5 VSAT +6 6 GAN,* BGAN** +7 7 THISS TERMINAL +8 8 IRIDIUM SATELLITES +9 9 MOBILE TELEPHONY +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2148.table b/definitions/bufr/tables/0/wmo/36/codetables/2148.table new file mode 100644 index 000000000..7d8ca51e3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2148.table @@ -0,0 +1,12 @@ +0 0 RESERVED +1 1 ARGOS +2 2 GPS +3 3 GOES DCP +4 4 METEOSAT DCP +5 5 ORBCOMM +6 6 INMARSAT +7 7 IRIDIUM +8 8 IRIDIUM AND GPS +9 9 ARGOS-3 +10 10 ARGOS-4 +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2149.table b/definitions/bufr/tables/0/wmo/36/codetables/2149.table new file mode 100644 index 000000000..04638d229 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2149.table @@ -0,0 +1,38 @@ +0 0 UNSPECIFIED DRIFTING BUOY +1 1 STANDARD LAGRANGIAN DRIFTER (GLOBAL DRIFTER PROGRAMME) +2 2 STANDARD FGGE TYPE DRIFTING BUOY (NON-LAGRANGIAN METEOROLOGICAL DRIFTING BUOY) +3 3 WIND MEASURING FGGE TYPE DRIFTING BUOY (NON-LAGRANGIAN METEOROLOGICAL DRIFTING BUOY) +4 4 ICE DRIFTER +5 5 SVPG STANDARD LAGRANGIAN DRIFTER WITH GPS +6 6 SVP-HR DRIFTER WITH HIGH-RESOLUTION TEMPERATURE OR THERMISTOR STRING +7 7 RESERVED +8 8 UNSPECIFIED SUBSURFACE FLOAT +9 9 SOFAR +10 10 ALACE +11 11 MARVOR +12 12 RAFOS +13 13 PROVOR +14 14 SOLO +15 15 APEX +16 16 UNSPECIFIED MOORED BUOY +17 17 NOMAD +18 18 3-METRE DISCUS +19 19 10-12-METRE DISCUS +20 20 ODAS 30 SERIES +21 21 ATLAS (E.G. TAO AREA) +22 22 TRITON BUOY +23 23 FLEX MOORING (E.G. TIP AREA) +24 24 OMNIDIRECTIONAL WAVERIDER +25 25 DIRECTIONAL WAVERIDER +26 26 SUBSURFACE ARGO FLOAT +27 27 PALACE +28 28 NEMO +29 29 NINJA +30 30 ICE BUOY/FLOAT (POPS OR ITP) +34 34 MOORING OCEANOGRAPHIC +35 35 MOORING METEOROLOGICAL +36 36 MOORING MULTIDISCIPLINARY (OCEANSITES) +37 37 MOORING TIDE GAUGE OR TSUNAMI BUOY +38 38 ICE BEACON +39 39 ICE MASS BALANCE BUOY +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2150.table b/definitions/bufr/tables/0/wmo/36/codetables/2150.table new file mode 100644 index 000000000..8193b575a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2150.table @@ -0,0 +1,55 @@ +0 0 RESERVED +1 1 HIRS 1 +2 2 HIRS 2 +3 3 HIRS 3 +4 4 HIRS 4 +5 5 HIRS 5 +6 6 HIRS 6 +7 7 HIRS 7 +8 8 HIRS 8 +9 9 HIRS 9 +10 10 HIRS 10 +11 11 HIRS 11 +12 12 HIRS 12 +13 13 HIRS 13 +14 14 HIRS 14 +15 15 HIRS 15 +16 16 HIRS 16 +17 17 HIRS 17 +18 18 HIRS 18 +19 19 HIRS 19 +20 20 HIRS 20 +21 21 MSU 1 +22 22 MSU 2 +23 23 MSU 3 +24 24 MSU 4 +25 25 SSU 1 +26 26 SSU 2 +27 27 SSU 3 +28 28 AMSU-A 1 +29 29 AMSU-A 2 +30 30 AMSU-A 3 +31 31 AMSU-A 4 +32 32 AMSU-A 5 +33 33 AMSU-A 6 +34 34 AMSU-A 7 +35 35 AMSU-A 8 +36 36 AMSU-A 9 +37 37 AMSU-A 10 +38 38 AMSU-A 11 +39 39 AMSU-A 12 +40 40 AMSU-A 13 +41 41 AMSU-A 14 +42 42 AMSU-A 15 +43 43 AMSU-B 1 / MHS 1 +44 44 AMSU-B 2 / MHS 2 +45 45 AMSU-B 3 / MHS 3 +46 46 AMSU-B 4 / MHS 4 +47 47 AMSU-B 5 / MHS 5 +48 48 AVHRR 1 +49 49 AVHRR 2 +50 50 AVHRR 3A +51 51 AVHRR 3B +52 52 AVHRR 4 +53 53 AVHRR 5 +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2151.table b/definitions/bufr/tables/0/wmo/36/codetables/2151.table new file mode 100644 index 000000000..45c80df10 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2151.table @@ -0,0 +1,11 @@ +0 0 HIRS +1 1 MSU +2 2 SSU +3 3 AMSU-A1-1 +4 4 AMSU-A1-2 +5 5 AMSU-A2 +6 6 AMSU-B +7 7 AVHRR +8 8 RESERVED +9 9 MHS +2047 2047 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2152.table b/definitions/bufr/tables/0/wmo/36/codetables/2152.table new file mode 100644 index 000000000..880c384cf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2152.table @@ -0,0 +1,13 @@ +1 1 HIGH-RESOLUTION INFRARED SOUNDER (HIRS) +2 2 MICROWAVE SOUNDING UNIT (MSU) +3 3 STRATOSPHERIC SOUNDING UNIT (SSU) +4 4 AMI WIND MODE +5 5 AMI WAVE MODE +6 6 AMI IMAGE MODE +7 7 RADAR ALTIMETER +8 8 ATSR +9 9 GEOSTATIONARY IMAGER +10 10 GEOSTATIONARY SOUNDER +11 11 GEOSTATIONARY EARTH RADIATION (GERB) +12 12 MULTI-CHANNEL SCANNING RADIOMETER +13 13 POLAR-ORBITING IMAGER diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2158.table b/definitions/bufr/tables/0/wmo/36/codetables/2158.table new file mode 100644 index 000000000..97c4449c5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2158.table @@ -0,0 +1,8 @@ +1 1 MISMATCH IN RED VEC HPA +2 2 MISMATCH IN RED VEC RFSS +3 3 PTR CALIBRATION BAND 320 MHZ (KU) +4 4 PTR CALIBRATION BAND 80 MHZ (KU) +5 5 PTR CALIBRATION BAND 20 MHZ (KU) +6 6 PTR CALIBRATION BAND 160 MHZ (S) +7 7 KU FLIGHT CALIBRATION PARAMETERS AVAILABLE +8 8 S FLIGHT CALIBRATION PARAMETERS AVAILABLE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2159.table b/definitions/bufr/tables/0/wmo/36/codetables/2159.table new file mode 100644 index 000000000..63cb87c78 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2159.table @@ -0,0 +1,7 @@ +1 1 TEMPERATURE INCONSISTENCY +2 2 DATA IS MISSING +3 3 REDUNDANCY CHANNEL +4 4 POWER BUS PROTECTION +5 5 OVERVOLTAGE/OVERLOAD PROTECTION +6 6 RESERVED +7 7 RESERVED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2160.table b/definitions/bufr/tables/0/wmo/36/codetables/2160.table new file mode 100644 index 000000000..fd7f37274 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2160.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 10 TO LESS THAN 20 MM +2 2 RESERVED +3 3 20 TO LESS THAN 40 MM +4 4 RESERVED +5 5 40 TO LESS THAN 60 MM +6 6 RESERVED +7 7 60 TO LESS THAN 90 MM +8 8 90 TO LESS THAN 110 MM +9 9 110 MM AND GREATER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2161.table b/definitions/bufr/tables/0/wmo/36/codetables/2161.table new file mode 100644 index 000000000..55b88f4de --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2161.table @@ -0,0 +1,5 @@ +11 11 WIND HEIGHT CALCULATED FROM MEDIAN CLOUD-TOP PRESSURE OF TARGET +12 12 TARGET IS CLOUDY +13 13 LOW-LEVEL INVERSION +14 14 CROSS CORRELATION CONTRIBUTION (CCC) METHOD +15 15 NESTED TRACKING diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2162.table b/definitions/bufr/tables/0/wmo/36/codetables/2162.table new file mode 100644 index 000000000..510f09aa3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2162.table @@ -0,0 +1,19 @@ +0 0 AUTO EDITOR +1 1 IRW HEIGHT ASSIGNMENT +2 2 WV HEIGHT ASSIGNMENT +3 3 H2O INTERCEPT HEIGHT ASSIGNMENT +4 4 CO2 SLICING HEIGHT ASSIGNMENT +5 5 LOW PIXEL MAX GRADIENT +6 6 HIGHER PIXEL MAX GRADIENT +7 7 PRIMARY HEIGHT ASSIGNMENT +8 8 LAYER THICKNESS ASSIGNMENT +9 9 CUMULATIVE CONTRIBUTION FUNCTION - 10 PER CENT HEIGHT +10 10 CUMULATIVE CONTRIBUTION FUNCTION - 50 PER CENT HEIGHT +11 11 CUMULATIVE CONTRIBUTION FUNCTION - 90 PER CENT HEIGHT +12 12 CUMULATIVE CONTRIBUTION FUNCTION - HEIGHT OF MAXIMUM GRADIENT +13 13 IR/TWO WV CHANNEL RATIONING METHOD +14 14 COMPOSITE HEIGHT ASSIGNMENT +15 15 OPTIMAL ESTIMATION +16 16 INVERSION CORRECTION +17 17 GEOMETRIC HEIGHT ASSIGNMENT +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2163.table b/definitions/bufr/tables/0/wmo/36/codetables/2163.table new file mode 100644 index 000000000..8cac63196 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2163.table @@ -0,0 +1,16 @@ +0 0 AUTO EDITOR +1 1 IRW HEIGHT ASSIGNMENT +2 2 WV HEIGHT ASSIGNMENT +3 3 H2O INTERCEPT HEIGHT ASSIGNMENT +4 4 CO2 SLICING HEIGHT ASSIGNMENT +5 5 LOW PIXEL MAX GRADIENT +6 6 HIGHER PIXEL MAX GRADIENT +7 7 PRIMARY HEIGHT ASSIGNMENT +8 8 LAYER THICKNESS ASSIGNMENT +9 9 CUMULATIVE CONTRIBUTION FUNCTION - 10 PER CENT HEIGHT +10 10 CUMULATIVE CONTRIBUTION FUNCTION - 50 PER CENT HEIGHT +11 11 CUMULATIVE CONTRIBUTION FUNCTION - 90 PER CENT HEIGHT +12 12 CUMULATIVE CONTRIBUTION FUNCTION - HEIGHT OF MAXIMUM GRADIENT +13 13 IR / TWO WV CHANNEL RATIOING METHOD +14 14 COMPOSITE HEIGHT ASSIGNMENT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2164.table b/definitions/bufr/tables/0/wmo/36/codetables/2164.table new file mode 100644 index 000000000..4bf9aa961 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2164.table @@ -0,0 +1,5 @@ +0 0 LP - NORMS LEAST SQUARE MINIMUM +1 1 EN - EUCLIDEAN NORM WITH RADIANCE CORRELATION +2 2 CC - CROSS CORRELATION +3 3 STEREO MATCHING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2165.table b/definitions/bufr/tables/0/wmo/36/codetables/2165.table new file mode 100644 index 000000000..628be0e75 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2165.table @@ -0,0 +1,7 @@ +1 1 CLEAR PATH +2 2 PARTLY CLOUDY PATH +3 3 CLOUDY PATH +4 4 APODIZED +5 5 UNAPODIZED +6 6 RECONSTRUCTED +7 7 CLOUD CLEARED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2166.table b/definitions/bufr/tables/0/wmo/36/codetables/2166.table new file mode 100644 index 000000000..efac38f8d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2166.table @@ -0,0 +1,6 @@ +0 0 TYPE NOT DEFINED +1 1 AUTOMATED STATISTICAL REGRESSION +2 2 CLEAR PATH +3 3 PARTLY CLOUDY PATH +4 4 CLOUDY PATH +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2167.table b/definitions/bufr/tables/0/wmo/36/codetables/2167.table new file mode 100644 index 000000000..acb2f9d9c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2167.table @@ -0,0 +1,4 @@ +0 0 METHOD NOT DEFINED +1 1 1B RAW RADIANCE +2 2 PROCESSED RADIANCE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2169.table b/definitions/bufr/tables/0/wmo/36/codetables/2169.table new file mode 100644 index 000000000..bd31667d0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2169.table @@ -0,0 +1,5 @@ +0 0 CUP ROTOR +1 1 PROPELLER ROTOR +2 2 WIND OBSERVATION THROUGH AMBIENT NOISE (WOTAN) +3 3 SONIC +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2170.table b/definitions/bufr/tables/0/wmo/36/codetables/2170.table new file mode 100644 index 000000000..05bab00d7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2170.table @@ -0,0 +1,5 @@ +0 0 SPECTRASENSORS WVSS-II, VERSION 1 +1 1 SPECTRASENSORS WVSS-II, VERSION 2 +2 2 SPECTRASENSORS WVSS-II, VERSION 3 +62 62 OTHER +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2172.table b/definitions/bufr/tables/0/wmo/36/codetables/2172.table new file mode 100644 index 000000000..3c3641ab6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2172.table @@ -0,0 +1,4 @@ +0 0 RESERVED +1 1 RETRIEVAL FROM A NADIR SOUNDING +2 2 RETRIEVAL FROM A LIMB SOUNDING +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2175.table b/definitions/bufr/tables/0/wmo/36/codetables/2175.table new file mode 100644 index 000000000..2cf2a3d55 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2175.table @@ -0,0 +1,9 @@ +0 0 MANUAL MEASUREMENT +1 1 TIPPING BUCKET METHOD +2 2 WEIGHING METHOD +3 3 OPTICAL METHOD +4 4 PRESSURE METHOD +5 5 FLOAT METHOD +6 6 DROP COUNTER METHOD +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2176.table b/definitions/bufr/tables/0/wmo/36/codetables/2176.table new file mode 100644 index 000000000..2c27a6f91 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2176.table @@ -0,0 +1,6 @@ +0 0 MANUAL OBSERVATION +1 1 VIDEO CAMERA METHOD +2 2 INFRARED METHOD +3 3 LASER METHOD +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2177.table b/definitions/bufr/tables/0/wmo/36/codetables/2177.table new file mode 100644 index 000000000..e7bb67a7d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2177.table @@ -0,0 +1,6 @@ +0 0 MANUAL OBSERVATION +1 1 ULTRASONIC METHOD +2 2 VIDEO CAMERA METHOD +3 3 LASER METHOD +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2178.table b/definitions/bufr/tables/0/wmo/36/codetables/2178.table new file mode 100644 index 000000000..f4f8b592c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2178.table @@ -0,0 +1,5 @@ +0 0 MANUAL OBSERVATION +1 1 OPTICAL METHOD +2 2 CAPACITIVE METHOD +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2179.table b/definitions/bufr/tables/0/wmo/36/codetables/2179.table new file mode 100644 index 000000000..9e9ba189a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2179.table @@ -0,0 +1,6 @@ +0 0 MANUAL OBSERVATION +1 1 VAISALA ALGORITHM +2 2 ASOS (FAA) ALGORITHM +3 3 AWOS (CANADA) ALGORITHM +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2180.table b/definitions/bufr/tables/0/wmo/36/codetables/2180.table new file mode 100644 index 000000000..0b21b2c26 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2180.table @@ -0,0 +1,8 @@ +0 0 MANUAL OBSERVATION +1 1 OPTICAL SCATTER SYSTEM COMBINED WITH PRECIPITATION OCCURRENCE SENSING SYSTEM +2 2 FORWARD AND/OR BACKSCATTER SYSTEM OF VISIBLE LIGHT +3 3 FORWARD AND/OR BACKSCATTER SYSTEM OF INFRARED LIGHT +4 4 INFRARED LIGHT EMITTING DIODE (IRED) SYSTEM +5 5 DOPPLER RADAR SYSTEM +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2181.table b/definitions/bufr/tables/0/wmo/36/codetables/2181.table new file mode 100644 index 000000000..5096dc48a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2181.table @@ -0,0 +1,5 @@ +1 1 RAIN DETECTOR +2 2 FREEZING RAIN SENSOR +3 3 ICE DETECTION SENSOR +4 4 HAIL AND ICE PELLET SENSOR +20 20 OTHERS diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2182.table b/definitions/bufr/tables/0/wmo/36/codetables/2182.table new file mode 100644 index 000000000..4ffab2652 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2182.table @@ -0,0 +1,7 @@ +0 0 MANUAL MEASUREMENT +1 1 TRANSMISSOMETER SYSTEM (BASE > 25 M) +2 2 TRANSMISSOMETER SYSTEM (BASE < 25 M) +3 3 FORWARD SCATTER SYSTEM +4 4 BACKSCATTER SYSTEM +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2183.table b/definitions/bufr/tables/0/wmo/36/codetables/2183.table new file mode 100644 index 000000000..a804ea1e1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2183.table @@ -0,0 +1,9 @@ +0 0 MANUAL OBSERVATION +1 1 CEILOMETER SYSTEM +2 2 INFRARED CAMERA SYSTEM +3 3 MICROWAVE VISUAL CAMERA SYSTEM +4 4 SKY IMAGER SYSTEM +5 5 VIDEO TIME-LAPSED CAMERA SYSTEM +6 6 MICROPULSE LIDAR (MPL) SYSTEM +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2184.table b/definitions/bufr/tables/0/wmo/36/codetables/2184.table new file mode 100644 index 000000000..cf5ee84ac --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2184.table @@ -0,0 +1,9 @@ +0 0 MANUAL OBSERVATION +1 1 LIGHTNING IMAGING SENSOR +2 2 ELECTRICAL STORM IDENTIFICATION SENSOR +3 3 MAGNETIC FINDER SENSOR +4 4 LIGHTNING STRIKE SENSOR +5 5 FLASH COUNTER +6 6 ATDNET VLF WAVEFORM CORRELATED SENSOR +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2185.table b/definitions/bufr/tables/0/wmo/36/codetables/2185.table new file mode 100644 index 000000000..45b081051 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2185.table @@ -0,0 +1,7 @@ +0 0 MANUAL MEASUREMENT +1 1 BALANCED FLOATING METHOD +2 2 PRESSURE METHOD +3 3 ULTRASONIC METHOD +4 4 HYDRAULIC METHOD +14 14 OTHERS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2186.table b/definitions/bufr/tables/0/wmo/36/codetables/2186.table new file mode 100644 index 000000000..2a9e71004 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2186.table @@ -0,0 +1,24 @@ +1 1 PRECIPITATION-UNKNOWN TYPE +2 2 LIQUID PRECIPITATION NOT FREEZING +3 3 LIQUID FREEZING PRECIPITATION +4 4 DRIZZLE +5 5 RAIN +6 6 SOLID PRECIPITATION +7 7 SNOW +8 8 SNOW GRAINS +9 9 SNOW PELLETS +10 10 ICE PELLETS +11 11 ICE CRYSTALS +12 12 DIAMOND DUST +13 13 SMALL HAIL +14 14 HAIL +15 15 GLAZE +16 16 RIME +17 17 SOFT RIME +18 18 HARD RIME +19 19 CLEAR ICE +20 20 WET SNOW +21 21 HOAR FROST +22 22 DEW +23 23 WHITE DEW +24 24 CONVECTIVE PRECIPITATION diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2187.table b/definitions/bufr/tables/0/wmo/36/codetables/2187.table new file mode 100644 index 000000000..def3d2feb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2187.table @@ -0,0 +1,11 @@ +1 1 DUST/SAND WHIRL +2 2 SQUALLS +3 3 SAND STORM +4 4 DUST STORM +5 5 LIGHTNING - CLOUD TO SURFACE +6 6 LIGHTNING - CLOUD TO CLOUD +7 7 LIGHTNING - DISTANT +8 8 THUNDERSTORM +9 9 FUNNEL CLOUD NOT TOUCHING SURFACE +10 10 FUNNEL CLOUD TOUCHING SURFACE +11 11 SPRAY diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2188.table b/definitions/bufr/tables/0/wmo/36/codetables/2188.table new file mode 100644 index 000000000..bb8114ca8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2188.table @@ -0,0 +1,10 @@ +1 1 FOG +2 2 ICE FOG +3 3 STEAM FOG +7 7 MIST +8 8 HAZE +9 9 SMOKE +10 10 VOLCANIC ASH +11 11 DUST +12 12 SAND +13 13 SNOW diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2189.table b/definitions/bufr/tables/0/wmo/36/codetables/2189.table new file mode 100644 index 000000000..61ac9e322 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2189.table @@ -0,0 +1,4 @@ +1 1 MANUAL OBSERVATION +2 2 ALL LIGHTNING STRIKES WITHOUT DISCRIMINATION +3 3 LIGHTNING STRIKES CLOUD TO GROUND ONLY +4 4 ALL LIGHTNING STRIKES WITH DISCRIMINATION BETWEEN CLOUD TO GROUND AND CLOUD TO CLOUD diff --git a/definitions/bufr/tables/0/wmo/36/codetables/2191.table b/definitions/bufr/tables/0/wmo/36/codetables/2191.table new file mode 100644 index 000000000..2e96256c7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/2191.table @@ -0,0 +1,4 @@ +0 0 GEOPOTENTIAL HEIGHT CALCULATED FROM PRESSURE +1 1 GEOPOTENTIAL HEIGHT CALCULATED FROM GPS HEIGHT +2 2 GEOPOTENTIAL HEIGHT CALCULATED FROM RADAR HEIGHT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/22056.table b/definitions/bufr/tables/0/wmo/36/codetables/22056.table new file mode 100644 index 000000000..28ddbf4e4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/22056.table @@ -0,0 +1,4 @@ +0 0 UPWARDS PROFILE +1 1 DOWNWARDS PROFILE +2 2 HORIZONTAL +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/22060.table b/definitions/bufr/tables/0/wmo/36/codetables/22060.table new file mode 100644 index 000000000..b73ad3235 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/22060.table @@ -0,0 +1,4 @@ +0 0 DROGUE IS DETACHED +1 1 DROGUE IS ATTACHED +2 2 DROGUE STATUS UNKNOWN +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/22061.table b/definitions/bufr/tables/0/wmo/36/codetables/22061.table new file mode 100644 index 000000000..aa8c62bae --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/22061.table @@ -0,0 +1,11 @@ +0 0 CALM (GLASSY) +1 1 CALM (RIPPLED) +2 2 SMOOTH (WAVELETS) +3 3 SLIGHT +4 4 MODERATE +5 5 ROUGH +6 6 VERY ROUGH +7 7 HIGH +8 8 VERY HIGH +9 9 PHENOMENAL +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/22067.table b/definitions/bufr/tables/0/wmo/36/codetables/22067.table new file mode 100644 index 000000000..692c0a2e9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/22067.table @@ -0,0 +1,116 @@ +1 1 SIPPICAN T-4 +2 2 SIPPICAN T-4 +11 11 SIPPICAN T-5 +21 21 SIPPICAN FAST DEEP +31 31 SIPPICAN T-6 +32 32 SIPPICAN T-6 +41 41 SIPPICAN T-7 +42 42 SIPPICAN T-7 +51 51 SIPPICAN DEEP BLUE +52 52 SIPPICAN DEEP BLUE +61 61 SIPPICAN T-10 +71 71 SIPPICAN T-11 +81 81 SIPPICAN AXBT (300 M PROBES) +201 201 TSK T-4 +202 202 TSK T-4 +211 211 TSK T-6 +212 212 TSK T-6 +221 221 TSK T-7 +222 222 TSK T-7 +231 231 TSK T-5 +241 241 TSK T-10 +251 251 TSK DEEP BLUE +252 252 TSK DEEP BLUE +261 261 TSK AXBT +401 401 SPARTON XBT-1 +411 411 SPARTON XBT-3 +421 421 SPARTON XBT-4 +431 431 SPARTON XBT-5 +441 441 SPARTON XBT-5DB +451 451 SPARTON XBT-6 +461 461 SPARTON XBT-7 +462 462 SPARTON XBT-7 +471 471 SPARTON XBT-7DB +481 481 SPARTON XBT-10 +491 491 SPARTON XBT-20 +501 501 SPARTON XBT-20DB +510 510 SPARTON 536 AXBT +700 700 SIPPICAN XCTD STANDARD +710 710 SIPPICAN XCTD DEEP +720 720 SIPPICAN AXCTD +730 730 SIPPICAN SXCTD +741 741 TSK XCTD/XCTD-1/XCTD-1N +742 742 TSK XCTD-2/XCTD-2N +743 743 TSK XCTD-2F +744 744 TSK XCTD-3/XCTD-3N +745 745 TSK XCTD-4/XCTD-4N +751 751 TSK AXCTD +780 780 SEA-BIRD SBE21 SEACAT THERMOSALINOGRAPH +781 781 SEA-BIRD SBE45 MICROTSG THERMOSALINOGRAPH +800 800 MECHANICAL BT +810 810 HYDROCAST +820 820 THERMISTOR CHAIN +825 825 TEMPERATURE (SONIC) AND PRESSURE PROBES +830 830 CTD +831 831 CTD-P-ALACE FLOAT +834 834 PROVOR V SBE +835 835 PROVOR IV +836 836 PROVOR III +837 837 ARVOR_C, SBE CONDUCTIVITY SENSOR +838 838 ARVOR_D, SBE CONDUCTIVITY SENSOR +839 839 PROVOR-II, SBE CONDUCTIVITY SENSOR +840 840 PROVOR, NO CONDUCTIVITY SENSOR +841 841 PROVOR, SEA-BIRD CONDUCTIVITY SENSOR +842 842 PROVOR, FSI CONDUCTIVITY SENSOR +843 843 POLAR OCEAN PROFILING SYSTEM (POPS), PROVOR, SBE CTD +844 844 PROFILING FLOAT, ARVOR, SEA-BIRD CONDUCTIVITY SENSOR +845 845 WEBB RESEARCH, NO CONDUCTIVITY SENSOR +846 846 WEBB RESEARCH, SEA-BIRD CONDUCTIVITY SENSOR +847 847 WEBB RESEARCH, FSI CONDUCTIVITY SENSOR +848 848 APEX-EM, SBE CONDUCTIVITY SENSOR +849 849 APEX_D, SBE CONDUCTIVITY SENSOR +850 850 SOLO, NO CONDUCTIVITY SENSOR +851 851 SOLO, SEA-BIRD CONDUCTIVITY SENSOR +852 852 SOLO, FSI CONDUCTIVITY SENSOR +853 853 PROFILING FLOAT, SOLO2 (SCRIPPS), SEA-BIRD CONDUCTIVITY SENSOR +854 854 S2A, SBE CONDUCTIVITY SENSOR +855 855 PROFILING FLOAT, NINJA, NO CONDUCTIVITY SENSOR +856 856 PROFILING FLOAT, NINJA, SBE CONDUCTIVITY SENSOR +857 857 PROFILING FLOAT, NINJA, FSI CONDUCTIVITY SENSOR +858 858 PROFILING FLOAT, NINJA, TSK CONDUCTIVITY SENSOR +859 859 PROFILING FLOAT, NEMO, NO CONDUCTIVITY SENSOR +860 860 PROFILING FLOAT, NEMO, SBE CONDUCTIVITY SENSOR +861 861 PROFILING FLOAT, NEMO, FSI CONDUCTIVITY SENSOR +862 862 SOLO_D, SBE CONDUCTIVITY SENSOR +863 863 NAVIS-A, SBE CONDUCTIVITY SENSOR +864 864 NINJA_D, SBE CONDUCTIVITY SENSOR +865 865 NOVA, SBE CONDUCTIVITY SENSOR +866 866 ALAMO, NO CONDUCTIVITY SENSOR +867 867 ALAMO, RBR CONDUCTIVITY SENSOR +868 868 ALAMO, SBE CONDUCTIVITY SENSOR +869 869 RESERVED +870 870 HM2000 +871 871 COPEX +872 872 S2X +873 873 ALTO +874 874 SOLO_D_MRV +875 875 ALTO RBR +876 876 ALTO SBE +877 877 APEX RBR +878 878 ARVOR RBR +879 879 SOLO II RBR +880 880 S2A RBR +900 900 SIPPICAN LMP-5 XBT +901 901 ICE-TETHERED PROFILER (ITP), SBE CTD +902 902 BROOKE OCEAN MOVING VESSEL PROFILER (MVP) +903 903 SEA-BIRD CTD +904 904 AML OCEANOGRAPHIC CTD +905 905 FALMOUTH SCIENTIFIC CTD +906 906 OCEAN SENSORS CTD +907 907 VALEPORT CTD +908 908 OCEANSCIENCE MVP +909 909 IDRONAUT CTD +910 910 SEA-BIRD SBE 38 +995 995 INSTRUMENT ATTACHED TO MARINE MAMMALS +996 996 INSTRUMENT ATTACHED TO ANIMALS OTHER THAN MARINE MAMMALS +1023 1023 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/22068.table b/definitions/bufr/tables/0/wmo/36/codetables/22068.table new file mode 100644 index 000000000..f6ddeb270 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/22068.table @@ -0,0 +1,43 @@ +1 1 SIPPICAN STRIP CHART RECORDER +2 2 SIPPICAN MK2A/SSQ-61 +3 3 SIPPICAN MK-9 +4 4 SIPPICAN AN/BHQ-7/MK8 +5 5 SIPPICAN MK-12 +6 6 SIPPICAN MK-21 +7 7 SIPPICAN MK-8 LINEAR RECORDER +8 8 SIPPICAN MK-10 +10 10 SPARTON SOC BT/SV PROCESSOR MODEL 100 +11 11 LOCKHEED-SANDERS MODEL OL5005 +20 20 ARGOS XBT-ST +21 21 CLS-ARGOS/PROTECNO XBT-ST MODEL-1 +22 22 CLS-ARGOS/PROTECNO XBT-ST MODEL-2 +30 30 BATHY SYSTEMS SA-810 +31 31 SCRIPPS METROBYTE CONTROLLER +32 32 MURAYAMA DENKI Z-60-16 III +33 33 MURAYAMA DENKI Z-60-16 II +34 34 PROTECNO ETSM2 +35 35 NAUTILUS MARINE SERVICE NMS-XBT +40 40 TSK MK-2A +41 41 TSK MK-2S +42 42 TSK MK-30 +43 43 TSK MK-30N +45 45 TSK MK-100 +46 46 TSK MK-130 COMPATIBLE RECORDER FOR BOTH XBT AND XCTD +47 47 TSK MK-130A XCTD RECORDER +48 48 TSK AXBT RECEIVER MK-300 +49 49 TSK MK-150/MK-150N COMPATIBLE RECORDER FOR BOTH XBT AND XCTD +50 50 JMA ASTOS +60 60 ARGOS COMMUNICATIONS, SAMPLING ON UP TRANSIT +61 61 ARGOS COMMUNICATIONS, SAMPLING ON DOWN TRANSIT +62 62 ORBCOMM COMMUNICATIONS, SAMPLING ON UP TRANSIT +63 63 ORBCOMM COMMUNICATIONS, SAMPLING ON DOWN TRANSIT +64 64 IRIDIUM COMMUNICATIONS, SAMPLING ON UP TRANSIT +65 65 IRIDIUM COMMUNICATIONS, SAMPLING ON DOWN TRANSIT +70 70 CSIRO DEVIL-1 XBT ACQUISITION SYSTEM +71 71 CSIRO DEVIL-2 XBT ACQUISITION SYSTEM +72 72 TURO/CSIRO QUOLL XBT ACQUISITION SYSTEM +80 80 APPLIED MICROSYSTEMS LTD., MICRO-SVT&P +81 81 SEA MAMMAL RESEARCH UNIT, UNIV. ST. ANDREWS, UK, UNCORRECTED SALINITY FROM A SEA MAMMAL MOUNTED INSTRUMENT +82 82 SEA MAMMAL RESEARCH UNIT, UNIV. ST. ANDREWS, UK, CORRECTED SALINITY FROM A SEA MAMMAL MOUNTED INSTRUMENT +99 99 UNKNOWN +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/22120.table b/definitions/bufr/tables/0/wmo/36/codetables/22120.table new file mode 100644 index 000000000..8c747ce66 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/22120.table @@ -0,0 +1,13 @@ +0 0 GOOD DATA +1 1 MAXIMUM (HIGH) WATER LEVEL LIMIT EXCEEDED +2 2 MINIMUM (LOW) WATER LEVEL LIMIT EXCEEDED +3 3 RATE OF CHANGE LIMIT FOR WATER LEVEL EXCEEDED +4 4 FLAT LIMIT FOR WATER LEVEL EXCEEDED +5 5 OBSERVED MINUS PREDICTED WATER LEVEL VALUE LIMIT EXCEEDED +6 6 OBSERVED VALUE FROM PRIMARY WATER LEVEL SENSOR MINUS BACKUP WATER LEVEL SENSOR +7 7 VALUE EXCEEDED SPECIFIED TOLERANCE FROM EXPECTED VALUE +8 8 WATER LEVEL QA PARAMETER (SIGMAS AND/OR OUTLIERS) LIMITS EXCEEDED +9 9 SEA TEMPERATURE OUTSIDE OF EXPECTED RANGE +10 10 MULTIPLE QC CHECKS (ABOVE) FAILED +11 11 NO AUTOMATED WATER LEVEL CHECKS PERFORMED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/22121.table b/definitions/bufr/tables/0/wmo/36/codetables/22121.table new file mode 100644 index 000000000..7d4dfa821 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/22121.table @@ -0,0 +1,9 @@ +0 0 OPERATIONAL +1 1 POSSIBLE CLOGGING PROBLEM OR OTHERWISE DEGRADED WATER LEVEL DATA +2 2 POSSIBLE DATUM SHIFT +3 3 UNKNOWN STATUS OF WATER LEVEL SENSOR +4 4 SUSPECTED OR KNOWN SEA TEMPERATURE SENSOR PROBLEM +5 5 MULTIPLE POSSIBLE PROBLEMS (ABOVE) +6 6 BAD DATA - DO NOT DISSEMINATE! +7 7 NO MANUAL WATER LEVEL CHECKS PERFORMED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/22122.table b/definitions/bufr/tables/0/wmo/36/codetables/22122.table new file mode 100644 index 000000000..aa9d5ebbe --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/22122.table @@ -0,0 +1,8 @@ +0 0 GOOD DATA FROM ALL SENSORS +1 1 WIND DIRECTION OUTSIDE OF ALLOWABLE RANGE +2 2 WIND SPEED OUTSIDE OF EXPECTED RANGE +3 3 BAROMETRIC PRESSURE OUTSIDE OF EXPECTED RANGE +4 4 AIR TEMPERATURE OUTSIDE OF EXPECTED RANGE +5 5 MULTIPLE SENSORS FAILED QC CHECKS +6 6 NO AUTOMATED METEOROLOGICAL DATA CHECKS PERFORMED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/22123.table b/definitions/bufr/tables/0/wmo/36/codetables/22123.table new file mode 100644 index 000000000..acfb61609 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/22123.table @@ -0,0 +1,9 @@ +0 0 OPERATIONAL +1 1 SUSPECTED OR KNOWN PROBLEM WITH WIND SENSOR +2 2 SUSPECTED OR KNOWN PROBLEM WITH BAROMETRIC PRESSURE SENSOR +3 3 SUSPECTED OR KNOWN PROBLEM WITH AIR TEMPERATURE SENSOR +4 4 UNKNOWN STATUS OF ALL SENSORS +5 5 SUSPECTED OR KNOWN PROBLEMS WITH MULTIPLE SENSORS +6 6 BAD DATA - DO NOT DISSEMINATE! +7 7 NO MANUAL METEOROLOGICAL DATA CHECKS PERFORMED +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/22178.table b/definitions/bufr/tables/0/wmo/36/codetables/22178.table new file mode 100644 index 000000000..355848cc5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/22178.table @@ -0,0 +1,12 @@ +0 0 UNKNOWN +1 1 LM-2A DECK-MOUNTED +2 2 LM-3A HAND-HELD +3 3 LM-4A THRU-HULL +10 10 AL-12 TSK AUTOLAUNCHER (UP TO 12 PROBES) +20 20 SIO XBT AUTOLAUNCHER (UP TO 6 PROBES) +30 30 AOML XBT V6 AUTOLAUNCHER (UP TO 6 DEEP BLUE PROBES) +31 31 AOML XBT V8.0 AUTOLAUNCHER (UP TO 8 DEEP BLUE PROBES) +32 32 AOML XBT V8.1 AUTOLAUNCHER (UP TO 8 DEEP BLUE AND FAST DEEP PROBES) +90 90 CSIRO DEVIL AUTOLAUNCHER +100 100 MFSTEP AUTOLAUNCHER (MEDITERRANEAN) +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/23001.table b/definitions/bufr/tables/0/wmo/36/codetables/23001.table new file mode 100644 index 000000000..92ac5deaf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/23001.table @@ -0,0 +1,5 @@ +0 0 RESERVED +1 1 ARTICLES 1 AND 2 +2 2 ARTICLE 3 +3 3 ARTICLE 5.2 +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/23002.table b/definitions/bufr/tables/0/wmo/36/codetables/23002.table new file mode 100644 index 000000000..12815c6a8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/23002.table @@ -0,0 +1,16 @@ +0 0 RESERVED +1 1 NUCLEAR REACTOR ON GROUND +2 2 NUCLEAR REACTOR AT SEA +3 3 NUCLEAR REACTOR IN SPACE +4 4 NUCLEAR FUEL FACILITY +5 5 RADIOACTIVE WASTE MANAGEMENT FACILITY +6 6 TRANSPORT OF NUCLEAR FUEL OR RADIOACTIVE WASTE +7 7 STORAGE OF NUCLEAR FUEL OR RADIOACTIVE WASTE +8 8 MANUFACTURE OF RADIO-ISOTOPES +9 9 USE OF RADIO-ISOTOPES +10 10 STORAGE OF RADIO-ISOTOPES +11 11 DISPOSAL OF RADIO-ISOTOPES +12 12 TRANSPORT OF RADIO-ISOTOPES +13 13 USE OF RADIO-ISOTOPES FOR POWER GENERATION +30 30 OTHER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/23003.table b/definitions/bufr/tables/0/wmo/36/codetables/23003.table new file mode 100644 index 000000000..e3e891f9b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/23003.table @@ -0,0 +1,8 @@ +0 0 NO RELEASE +1 1 RELEASE TO ATMOSPHERE +2 2 RELEASE TO WATER +3 3 RELEASE TO BOTH ATMOSPHERE AND WATER +4 4 EXPECTED RELEASE TO ATMOSPHERE +5 5 EXPECTED RELEASE TO WATER +6 6 EXPECTED RELEASE TO BOTH ATMOSPHERE AND WATER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/23004.table b/definitions/bufr/tables/0/wmo/36/codetables/23004.table new file mode 100644 index 000000000..383731cec --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/23004.table @@ -0,0 +1,6 @@ +0 0 NO COUNTERMEASURES +1 1 EVACUATION +2 2 SHELTERING +3 3 PROPHYLAXIS +4 4 WATER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/23005.table b/definitions/bufr/tables/0/wmo/36/codetables/23005.table new file mode 100644 index 000000000..c5ff5ae75 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/23005.table @@ -0,0 +1,4 @@ +0 0 INCIDENT STATE DOES NOT UNDERSTAND WHAT HAPPENED +1 1 INCIDENT STATE KNOWS THE CAUSE OF THE INCIDENT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/23006.table b/definitions/bufr/tables/0/wmo/36/codetables/23006.table new file mode 100644 index 000000000..fe7706af4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/23006.table @@ -0,0 +1,8 @@ +0 0 NO IMPROVEMENT +1 1 UNSTABLE +2 2 NO DETERIORATION +3 3 IMPROVING +4 4 STABLE +5 5 DETERIORATING +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/23007.table b/definitions/bufr/tables/0/wmo/36/codetables/23007.table new file mode 100644 index 000000000..59fc043a8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/23007.table @@ -0,0 +1,5 @@ +0 0 NO RELEASE +1 1 RELEASE HAS STOPPED +2 2 RELEASE +3 3 RELEASE IS CONTINUING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/23008.table b/definitions/bufr/tables/0/wmo/36/codetables/23008.table new file mode 100644 index 000000000..4ac5c5837 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/23008.table @@ -0,0 +1,4 @@ +0 0 GASEOUS +1 1 PARTICULATE +2 2 MIXTURE OF GASEOUS AND PARTICULATE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/23009.table b/definitions/bufr/tables/0/wmo/36/codetables/23009.table new file mode 100644 index 000000000..4ac5c5837 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/23009.table @@ -0,0 +1,4 @@ +0 0 GASEOUS +1 1 PARTICULATE +2 2 MIXTURE OF GASEOUS AND PARTICULATE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/23016.table b/definitions/bufr/tables/0/wmo/36/codetables/23016.table new file mode 100644 index 000000000..ae84bae45 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/23016.table @@ -0,0 +1,4 @@ +0 0 NO SIGNIFICANT CHEMICAL TOXIC HEALTH EFFECT +1 1 SIGNIFICANT CHEMICAL TOXIC HEALTH EFFECT POSSIBLE +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/23018.table b/definitions/bufr/tables/0/wmo/36/codetables/23018.table new file mode 100644 index 000000000..ccdcc456d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/23018.table @@ -0,0 +1,6 @@ +0 0 RELEASE NO LONGER OCCURRING +1 1 RELEASE STILL OCCURRING +2 2 RELEASE EXPECTED TO INCREASE IN NEXT SIX HOURS +3 3 RELEASE EXPECTED TO REMAIN CONSTANT IN NEXT SIX HOURS +4 4 RELEASE EXPECTED TO DECREASE IN NEXT SIX HOURS +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/23031.table b/definitions/bufr/tables/0/wmo/36/codetables/23031.table new file mode 100644 index 000000000..cf20e26ee --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/23031.table @@ -0,0 +1,4 @@ +0 0 PLUME WILL NOT ENCOUNTER RAIN IN INCIDENT STATE +1 1 PLUME WILL ENCOUNTER RAIN IN INCIDENT STATE +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/23032.table b/definitions/bufr/tables/0/wmo/36/codetables/23032.table new file mode 100644 index 000000000..0f439b70d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/23032.table @@ -0,0 +1,4 @@ +0 0 NO SIGNIFICANT CHANGE EXPECTED WITHIN THE NEXT SIX HOURS +1 1 ANTICIPATED SIGNIFICANT CHANGE EXPECTED WITHIN THE NEXT SIX HOURS +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/24003.table b/definitions/bufr/tables/0/wmo/36/codetables/24003.table new file mode 100644 index 000000000..2daa8104b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/24003.table @@ -0,0 +1,5 @@ +0 0 NOBLE GASES +1 1 IODINES +2 2 CAESIUMS +3 3 TRANSURANICS +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25004.table b/definitions/bufr/tables/0/wmo/36/codetables/25004.table new file mode 100644 index 000000000..dfe451727 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25004.table @@ -0,0 +1,4 @@ +0 0 INCOHERENT +1 1 COHERENT (DOPPLER) +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25005.table b/definitions/bufr/tables/0/wmo/36/codetables/25005.table new file mode 100644 index 000000000..bc693a7bf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25005.table @@ -0,0 +1,4 @@ +0 0 LOGARITHM - 2.5 DB +1 1 LINEAR +2 2 SPECIAL +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25006.table b/definitions/bufr/tables/0/wmo/36/codetables/25006.table new file mode 100644 index 000000000..bf9d1f52a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25006.table @@ -0,0 +1,5 @@ +0 0 ZH TO R CONVERSION +1 1 (ZH, ZDR) TO (NO, DO) TO R +2 2 (Z (F1), Z (F2)) TO ATTENUATION TO R +6 6 OTHER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25009.table b/definitions/bufr/tables/0/wmo/36/codetables/25009.table new file mode 100644 index 000000000..bf34fb227 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25009.table @@ -0,0 +1,4 @@ +1 1 NONE +2 2 CALIBRATION TARGET OR SIGNAL +3 3 AGAINST RAINGAUGES +4 4 AGAINST OTHER INSTRUMENTS (DISDROMETER - ATTENUATION) diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25010.table b/definitions/bufr/tables/0/wmo/36/codetables/25010.table new file mode 100644 index 000000000..e88b3ca3c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25010.table @@ -0,0 +1,8 @@ +0 0 NONE +1 1 MAP +2 2 INSERTION OF HIGHER ELEVATION DATA AND MAP +3 3 ANALYSIS OF THE FLUCTUATING LOGARITHM SIGNAL (CLUTTER DETECTION) +4 4 EXTRACTION OF THE FLUCTUATING PART OF LINEAR SIGNAL (CLUTTER SUPPRESSION) +5 5 CLUTTER SUPPRESSION - DOPPLER +6 6 MULTIPARAMETER ANALYSIS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25011.table b/definitions/bufr/tables/0/wmo/36/codetables/25011.table new file mode 100644 index 000000000..f73949830 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25011.table @@ -0,0 +1,4 @@ +0 0 NONE +1 1 MAP OF CORRECTION FACTORS +2 2 INTERPOLATION (AZIMUTH OR ELEVATION) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25012.table b/definitions/bufr/tables/0/wmo/36/codetables/25012.table new file mode 100644 index 000000000..c869a4ace --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25012.table @@ -0,0 +1,4 @@ +0 0 HARDWARE +1 1 SOFTWARE +2 2 HARDWARE AND SOFTWARE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25013.table b/definitions/bufr/tables/0/wmo/36/codetables/25013.table new file mode 100644 index 000000000..b91ea71db --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25013.table @@ -0,0 +1 @@ +1 1 BRIGHT-BAND CORRECTION diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25015.table b/definitions/bufr/tables/0/wmo/36/codetables/25015.table new file mode 100644 index 000000000..043e587b6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25015.table @@ -0,0 +1 @@ +1 1 RADOME ATTENUATION CORRECTION diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25017.table b/definitions/bufr/tables/0/wmo/36/codetables/25017.table new file mode 100644 index 000000000..ed48487e1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25017.table @@ -0,0 +1 @@ +1 1 PRECIPITATION ATTENUATION CORRECTION diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25020.table b/definitions/bufr/tables/0/wmo/36/codetables/25020.table new file mode 100644 index 000000000..6133da3bf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25020.table @@ -0,0 +1,4 @@ +0 0 FFT (FAST FOURIER TRANSFORM) +1 1 PPP (PULSE-PAIR PROCESSING) +2 2 VPC (VECTOR-PHASE CHANGE) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25021.table b/definitions/bufr/tables/0/wmo/36/codetables/25021.table new file mode 100644 index 000000000..314716b3b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25021.table @@ -0,0 +1,5 @@ +1 1 SIMPLE AVERAGE +2 2 CONSENSUS AVERAGE +3 3 MEDIAN CHECK +4 4 VERTICAL CONSISTENCY CHECK +5 5 OTHER diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25022.table b/definitions/bufr/tables/0/wmo/36/codetables/25022.table new file mode 100644 index 000000000..95848784f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25022.table @@ -0,0 +1,8 @@ +1 1 UNPROCESSED +2 2 LAND SUSPECTED +3 3 WIND SPEED TOO LARGE +4 4 ICE DETECTED +5 5 RAIN DETECTED (MICROWAVE RETRIEVALS ONLY) +6 6 CLOUDY DETECTED (INFRA-RED RETRIEVALS ONLY) +7 7 COSMETIC VALUE +8 8 SST OUT OF RANGE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25023.table b/definitions/bufr/tables/0/wmo/36/codetables/25023.table new file mode 100644 index 000000000..e4840dc8c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25023.table @@ -0,0 +1,8 @@ +1 1 DEFAULT CONFIDENCE VALUE HAS BEEN USED +2 2 DEFAULT BIAS AND STANDARD DEVIATION HAVE BEEN USED +3 3 SUN GLINT SUSPECTED +4 4 SEA ICE RETRIEVAL FOR MICROWAVE DATA +5 5 HIGH WIND SPEED RETRIEVAL +6 6 INACCURATE SST DUE TO LOW SST (< 285K) (ONLY APPLIES TO THE TMI INSTRUMENT) +7 7 RELAXED RAIN CONTAMINATION SUSPECTED +8 8 POTENTIAL SIDE LOBE CONTAMINATION diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25024.table b/definitions/bufr/tables/0/wmo/36/codetables/25024.table new file mode 100644 index 000000000..81b26380c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25024.table @@ -0,0 +1,13 @@ +0 0 UNPROCESSED INFRARED RETRIEVAL +1 1 CLOUDY RETRIEVALS +2 2 BAD: DATA THAT ARE PROBABLY CONTAMINATED BY CLOUD +3 3 SUSPECT DATA +4 4 ACCEPTABLE DATA +5 5 EXCELLENT DATA +6 6 COOL SKIN SUSPECTED +10 10 UNPROCESSED MICROWAVE RETRIEVAL +11 11 QUESTIONABLE MICROWAVE RETRIEVAL THAT MAY BE CONTAMINATED +12 12 ACCEPTABLE MICROWAVE RETRIEVAL +13 13 HIGH PROBABILITY OF DIURNAL VARIABILITY +14 14 RESERVED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25029.table b/definitions/bufr/tables/0/wmo/36/codetables/25029.table new file mode 100644 index 000000000..fb00d01ca --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25029.table @@ -0,0 +1,5 @@ +1 1 RESERVED +2 2 CALIBRATION TARGET OR SIGNAL +3 3 AGAINST RAINGAUGES +4 4 AGAINST OTHER INSTRUMENTS (DISDROMETER - ATTENUATION) +5 5 RESERVED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25030.table b/definitions/bufr/tables/0/wmo/36/codetables/25030.table new file mode 100644 index 000000000..c3235d6e5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25030.table @@ -0,0 +1,4 @@ +0 0 RUNNING MEAN SEA-SURFACE TEMPERATURE NOT USED BECAUSE USAGE CRITERIA NOT MET +1 1 RUNNING MEAN SEA-SURFACE TEMPERATURE NOT USED BECAUSE DATA NOT AVAILABLE +2 2 RUNNING MEAN SEA-SURFACE TEMPERATURE USED AS PREDICTOR +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25031.table b/definitions/bufr/tables/0/wmo/36/codetables/25031.table new file mode 100644 index 000000000..16ff950a1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25031.table @@ -0,0 +1,6 @@ +0 0 RESERVED +1 1 NO THINNING APPLIED (ALL NATIVE MODEL LEVELS ARE INCLUDED FROM BASE TO TOP OF PSEUDO-SOUNDING) +2 2 NATIVE MODEL LEVELS ARE PRESENT ONLY IF THEY ARE SIGNIFICANT LEVELS AS PER REGULATIONS B/C 25 FOR CONVENTIONAL TEMP SOUNDINGS +3 3 A PREDEFINED SUBSET OF NATIVE MODEL LEVELS IS PRESENT +4 4 NO NATIVE MODEL LEVELS ARE PRESENT. ALL PROFILE LEVELS ARE INTERPOLATED TO A PREDEFINED SET OF PRESSURE COORDINATE LEVELS +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25032.table b/definitions/bufr/tables/0/wmo/36/codetables/25032.table new file mode 100644 index 000000000..9b894f470 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25032.table @@ -0,0 +1,4 @@ +0 0 RESERVED +1 1 DATA FROM LOW MODE +2 2 DATA FROM HIGH MODE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25033.table b/definitions/bufr/tables/0/wmo/36/codetables/25033.table new file mode 100644 index 000000000..e7141c078 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25033.table @@ -0,0 +1,4 @@ +0 0 WIND PROFILER OPERATING IN SUBMODE A +1 1 WIND PROFILER OPERATING IN SUBMODE B +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25034.table b/definitions/bufr/tables/0/wmo/36/codetables/25034.table new file mode 100644 index 000000000..473338a40 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25034.table @@ -0,0 +1,3 @@ +1 1 TEST A PERFORMED AND FAILED +2 2 TEST B PERFORMED AND FAILED +3 3 TEST RESULTS INCONCLUSIVE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25035.table b/definitions/bufr/tables/0/wmo/36/codetables/25035.table new file mode 100644 index 000000000..a0c8faa59 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25035.table @@ -0,0 +1,8 @@ +0 0 NOT DEFINED +1 1 INDIVIDUAL VOLTAGE DEFLECTION +2 2 CURRENT BASED, ABOVE A THRESHOLD +3 3 VOLTAGE BASED, ABOVE A THRESHOLD +4 4 CONSENSUS OF SENSORS, CURRENT ABOVE A THRESHOLD +5 5 CONSENSUS OF SENSORS, VOLTAGE ABOVE A THRESHOLD +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25036.table b/definitions/bufr/tables/0/wmo/36/codetables/25036.table new file mode 100644 index 000000000..79ebd8887 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25036.table @@ -0,0 +1,4 @@ +0 0 NETWORK OF SEVERAL DIRECTION-FINDERS OPERATING ON THE SAME INDIVIDUAL ATMOSPHERICS +1 1 NETWORK OF SEVERAL ARRIVAL-TIME STATIONS OPERATING ON THE SAME INDIVIDUAL ATMOSPHERICS +6 6 SINGLE STATION RANGE BEARING TECHNIQUE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25040.table b/definitions/bufr/tables/0/wmo/36/codetables/25040.table new file mode 100644 index 000000000..3ddf12e20 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25040.table @@ -0,0 +1,10 @@ +0 0 NON-SPECIFIC MODE +1 1 FIRST GUESS DATA +2 2 CLOUD DATA +3 3 AVERAGE VECTOR DATA +4 4 PRIMARY DATA +5 5 GUESS DATA +6 6 VECTOR DATA +7 7 TRACER DATA; THIS IMAGE +8 8 TRACER DATA TO NEXT IMAGE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25041.table b/definitions/bufr/tables/0/wmo/36/codetables/25041.table new file mode 100644 index 000000000..f388da0c2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25041.table @@ -0,0 +1,4 @@ +0 0 DIRECTION ORIGINALLY REPORTED IN TRUE DEGREES +1 1 DIRECTION ORIGINALLY REPORTED USING CODE TABLE 0700, FM 13 +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25042.table b/definitions/bufr/tables/0/wmo/36/codetables/25042.table new file mode 100644 index 000000000..f3cf05999 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25042.table @@ -0,0 +1,4 @@ +0 0 SPEED ORIGINALLY REPORTED IN METRES PER SECOND +1 1 SPEED ORIGINALLY REPORTED USING CODE TABLE 4451, FM 13 +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25053.table b/definitions/bufr/tables/0/wmo/36/codetables/25053.table new file mode 100644 index 000000000..af3413851 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25053.table @@ -0,0 +1,6 @@ +1 1 GOOD +2 2 REDUNDANT +3 3 QUESTIONABLE +4 4 BAD +5 5 EXPERIMENTAL +6 6 PRECIPITATING diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25063.table b/definitions/bufr/tables/0/wmo/36/codetables/25063.table new file mode 100644 index 000000000..a8970eaf4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25063.table @@ -0,0 +1,4 @@ +0 0 NOT DEFINED +1 1 MAIN PROCESSOR +2 2 BACKUP PROCESSOR +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25069.table b/definitions/bufr/tables/0/wmo/36/codetables/25069.table new file mode 100644 index 000000000..e627613dd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25069.table @@ -0,0 +1,7 @@ +1 1 SMOOTHED +2 2 BASELINE ADJUSTED +3 3 NORMALIZED TIME INTERVAL +4 4 OUTLIER CHECKED +5 5 PLAUSIBILITY CHECKED +6 6 CONSISTENCY CHECKED +7 7 INTERPOLATED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25086.table b/definitions/bufr/tables/0/wmo/36/codetables/25086.table new file mode 100644 index 000000000..294fa6977 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25086.table @@ -0,0 +1,4 @@ +0 0 DEPTHS ARE NOT CORRECTED +1 1 DEPTHS ARE CORRECTED +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25090.table b/definitions/bufr/tables/0/wmo/36/codetables/25090.table new file mode 100644 index 000000000..309fefcc0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25090.table @@ -0,0 +1,11 @@ +0 0 ORBIT COMPUTED DURING A MANOEUVRE +1 1 ADJUSTED MISSION OPERATIONS ORBIT +2 2 EXTRAPOLATED MISSION OPERATIONS ORBIT +3 3 ADJUSTED (PRELIMINARY/PRECISE) ORBIT +4 4 (PRELIMINARY/PRECISE) ORBIT IS ESTIMATED DURING A MANOEUVRE PERIOD +5 5 (PRELIMINARY/PRECISE) ORBIT IS INTERPOLATED OVER A TRACKING DATA GAP +6 6 (PRELIMINARY/PRECISE) ORBIT IS EXTRAPOLATED FOR A DURATION LESS THAN 1 DAY +7 7 (PRELIMINARY/PRECISE) ORBIT IS EXTRAPOLATED FOR A DURATION THAT RANGES FROM 1 DAY TO 2 DAYS +8 8 (PRELIMINARY/PRECISE) ORBIT IS EXTRAPOLATED FOR A DURATION LARGER THAN 2 DAYS, OR THAT THE ORBIT IS EXTRAPOLATED JUST AFTER A MANOEUVRE +9 9 DORIS* DIODE** NAVIGATOR ORBIT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25093.table b/definitions/bufr/tables/0/wmo/36/codetables/25093.table new file mode 100644 index 000000000..e547e6c81 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25093.table @@ -0,0 +1,3 @@ +1 1 NO CORRECTION +2 2 VERTICAL VELOCITY CORRECTION +7 7 ALL CORRECTIONS diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25095.table b/definitions/bufr/tables/0/wmo/36/codetables/25095.table new file mode 100644 index 000000000..c446a5045 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25095.table @@ -0,0 +1 @@ +1 1 ALTIMETER OPERATING (0 IF NOMINAL, 1 IF BACKUP) diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25096.table b/definitions/bufr/tables/0/wmo/36/codetables/25096.table new file mode 100644 index 000000000..89dcc3914 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25096.table @@ -0,0 +1,4 @@ +1 1 MODE INDICATOR (0 IF MODE 2, 1 IF MODE 1) +2 2 MODE 1 CALIBRATION SEQUENCE INDICATOR (0 IF NORMAL DATA TAKING EITHER MODE 1 OR 2, 1 IF MODE 1 CALIBRATION SEQUENCE) BITS 3 AND 4 INDICATE ACTIVE 23.8 GHZ CHANNEL(S): +3 3 CHANNEL 2 (0 IF ON, 1 IF OFF) +4 4 CHANNEL 3 (0 IF ON, 1 IF OFF) diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25097.table b/definitions/bufr/tables/0/wmo/36/codetables/25097.table new file mode 100644 index 000000000..d4e1e4646 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25097.table @@ -0,0 +1,11 @@ +0 0 RANGES BETWEEN 0 AND 30 CM +1 1 RANGES BETWEEN 30 AND 60 CM +2 2 RANGES BETWEEN 60 AND 90 CM +3 3 RANGES BETWEEN 90 AND 120 CM +4 4 RANGES BETWEEN 120 AND 150 CM +5 5 RANGES BETWEEN 150 AND 180 CM +6 6 RANGES BETWEEN 180 AND 210 CM +7 7 RANGES BETWEEN 210 AND 240 CM +8 8 RANGES BETWEEN 240 AND 270 CM +9 9 RANGES LARGER THAN 270 CM +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25098.table b/definitions/bufr/tables/0/wmo/36/codetables/25098.table new file mode 100644 index 000000000..9d505a5f4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25098.table @@ -0,0 +1,8 @@ +1 1 KU BAND RANGE +2 2 C BAND RANGE +3 3 KU BAND SWH* +4 4 C BAND SWH* +5 5 KU BAND BACKSCATTER COEFFICIENT +6 6 C BAND BACKSCATTER COEFFICIENT +7 7 OFF NADIR ANGLE FROM KU BAND WAVEFORM PARAMETERS +8 8 OFF NADIR ANGLE FROM PLATFORM diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25099.table b/definitions/bufr/tables/0/wmo/36/codetables/25099.table new file mode 100644 index 000000000..40f35b18c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25099.table @@ -0,0 +1,6 @@ +1 1 KU BAND RANGE INSTRUMENTAL CORRECTION +2 2 C BAND RANGE INSTRUMENTAL CORRECTION +3 3 KU BAND SWH* INSTRUMENTAL CORRECTION +4 4 C BAND SWH* INSTRUMENTAL CORRECTION +5 5 KU BAND BACKSCATTER COEFFICIENT INSTRUMENTAL CORRECTION +6 6 C BAND BACKSCATTER COEFFICIENT INSTRUMENTAL CORRECTION diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25110.table b/definitions/bufr/tables/0/wmo/36/codetables/25110.table new file mode 100644 index 000000000..912e01f54 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25110.table @@ -0,0 +1,6 @@ +1 1 RAW DATA ANALYSIS USED FOR RAW DATA CORRECTION. CORRECTION DONE USING DEFAULT PARAMETERS +2 2 RAW DATA ANALYSIS USED FOR RAW DATA CORRECTION. CORRECTION DONE USING RAW DATA ANALYSIS RESULTS +3 3 ANTENNA ELEVATION PATTERN CORRECTION APPLIED +4 4 NOMINAL CHIRP REPLICA USED +5 5 RECONSTRUCTED CHIRP USED +6 6 SLANT RANGE TO GROUND RANGE CONVERSION APPLIED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25112.table b/definitions/bufr/tables/0/wmo/36/codetables/25112.table new file mode 100644 index 000000000..a2a4ec9d3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25112.table @@ -0,0 +1,5 @@ +1 1 BAND SPECIFIC RANGE +2 2 BAND SPECIFIC SIGNIFICANT WAVE HEIGHT +3 3 BAND SPECIFIC BACKSCATTER COEFFICIENT +4 4 OFF NADIR ANGLE FROM BAND SPECIFIC WAVEFORM PARAMETERS +5 5 OFF NADIR ANGLE FROM PLATFORM diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25113.table b/definitions/bufr/tables/0/wmo/36/codetables/25113.table new file mode 100644 index 000000000..ef394b626 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25113.table @@ -0,0 +1,3 @@ +1 1 BAND SPECIFIC RANGE INSTRUMENTAL CORRECTION +2 2 BAND SPECIFIC SIGNIFICANT WAVE HEIGHT INSTRUMENTAL CORRECTION +3 3 BAND SPECIFIC BACKSCATTER COEFFICIENT INSTRUMENTAL CORRECTION diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25120.table b/definitions/bufr/tables/0/wmo/36/codetables/25120.table new file mode 100644 index 000000000..bdb9f96b3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25120.table @@ -0,0 +1,4 @@ +0 0 PERCENTAGE OF DSRS* FREE OF PROCESSING ERRORS DURING LEVEL 2 PROCESSING IS GREATER THAN THE ACCEPTABLE THRESHOLD +1 1 PERCENTAGE OF DSRS FREE OF PROCESSING ERRORS DURING LEVEL 2 PROCESSING IS LESS THAN THE ACCEPTABLE THRESHOLD +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25122.table b/definitions/bufr/tables/0/wmo/36/codetables/25122.table new file mode 100644 index 000000000..1085ef980 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25122.table @@ -0,0 +1,4 @@ +0 0 HARDWARE CONFIGURATION FOR RF IS A +1 1 HARDWARE CONFIGURATION FOR RF IS B +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25123.table b/definitions/bufr/tables/0/wmo/36/codetables/25123.table new file mode 100644 index 000000000..70f0670e9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25123.table @@ -0,0 +1,4 @@ +0 0 HARDWARE CONFIGURATION FOR HPA IS A +1 1 HARDWARE CONFIGURATION FOR HPA IS B +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25124.table b/definitions/bufr/tables/0/wmo/36/codetables/25124.table new file mode 100644 index 000000000..dce5b0492 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25124.table @@ -0,0 +1,4 @@ +0 0 PERCENTAGE OF DSRS** FREE OF PROCESSING ERRORS DURING LEVEL 2 PROCESSING IS GREATER THAN THE ACCEPTABLE THRESHOLD +1 1 PERCENTAGE OF DSRS** FREE OF PROCESSING ERRORS DURING LEVEL 2 PROCESSING IS LESS THAN THE ACCEPTABLE THRESHOLD +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25150.table b/definitions/bufr/tables/0/wmo/36/codetables/25150.table new file mode 100644 index 000000000..7b452c327 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25150.table @@ -0,0 +1,3 @@ +1 1 THE DVORAK'S VIS (VISUAL IMAGERY) INTENSITY ANALYSIS +2 2 THE DVORAK'S EIR (ENHANCED INFRARED IMAGERY) INTENSITY ANALYSIS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25174.table b/definitions/bufr/tables/0/wmo/36/codetables/25174.table new file mode 100644 index 000000000..c8a11b6d7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25174.table @@ -0,0 +1,13 @@ +1 1 PIXEL IS AFFECTED BY RFI EFFECTS +2 2 PIXEL IS LOCATED IN THE HEXAGONAL ALIAS DIRECTION CENTRED ON SUN ALIAS +3 3 PIXEL IS CLOSE TO THE BORDER DELIMITING THE EXTENDED ALIAS FREE ZONE +4 4 PIXEL IS INSIDE THE EXTENDED ALIAS FREE ZONE +5 5 PIXEL IS INSIDE THE EXCLUSIVE OF ALIAS FREE ZONE +6 6 PIXEL IS LOCATED IN A ZONE WHERE A MOON ALIAS WAS RECONSTRUCTED +7 7 PIXEL IS LOCATED IN A ZONE WHERE SUN REFLECTION HAS BEEN DETECTED +8 8 PIXEL IS LOCATED IN A ZONE WHERE SUN ALIAS WAS RECONSTRUCTED +9 9 FLAT TARGET TRANSFORMATION HAS BEEN PERFORMED DURING IMAGE RECONSTRUCTION OF THIS PIXEL +10 10 SCENE HAS BEEN COMBINED WITH AN ADJUSTMENT SCENE IN OPPOSITE POLARIZATION DURING IMAGE RECONSTRUCTION TO ACCOUNT FOR CROSS-POLARIZATION LEAKAGE +11 11 DIRECT MOON CORRECTION HAS BEEN PERFORMED DURING IMAGE RECONSTRUCTION OF THIS PIXEL +12 12 REFLECTED SUN CORRECTION HAS BEEN PERFORMED DURING IMAGE RECONSTRUCTION OF THIS PIXEL +13 13 DIRECT SUN CORRECTION HAS BEEN PERFORMED DURING IMAGE RECONSTRUCTION OF THIS IMAGE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25181.table b/definitions/bufr/tables/0/wmo/36/codetables/25181.table new file mode 100644 index 000000000..2c1eabf7c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25181.table @@ -0,0 +1,3 @@ +0 0 OK +1 1 PERCENTAGE OF L2B RECORDS FREE OF PROCESSING ERRORS IS LESS THAN ACCEPTABLE THRESHOLD +2 2 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25182.table b/definitions/bufr/tables/0/wmo/36/codetables/25182.table new file mode 100644 index 000000000..9827b1dfd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25182.table @@ -0,0 +1,3 @@ +0 0 OK +1 1 PERCENTAGE OF L1B RECORDS FREE OF PROCESSING ERRORS IS LESS THAN ACCEPTABLE THRESHOLD +2 2 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25184.table b/definitions/bufr/tables/0/wmo/36/codetables/25184.table new file mode 100644 index 000000000..29005c133 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25184.table @@ -0,0 +1,3 @@ +0 0 OK +1 1 PRODUCT AS A DURATION SHORTER THAN THE INPUT PRODUCT +2 2 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25185.table b/definitions/bufr/tables/0/wmo/36/codetables/25185.table new file mode 100644 index 000000000..ac18abae4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25185.table @@ -0,0 +1,2 @@ +0 0 AES 256 +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25187.table b/definitions/bufr/tables/0/wmo/36/codetables/25187.table new file mode 100644 index 000000000..683c09709 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25187.table @@ -0,0 +1,3 @@ +0 0 VALID +1 1 INVALID +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25188.table b/definitions/bufr/tables/0/wmo/36/codetables/25188.table new file mode 100644 index 000000000..b18013f21 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25188.table @@ -0,0 +1,6 @@ +0 0 PRESSURE ADJUSTED TO MEAN SEA LEVEL FOLLOWING WMO-NO. 8 FOR LOW LEVEL (< 50 M) STATIONS +1 1 PRESSURE ADJUSTED TO MEAN SEA LEVEL FOLLOWING WMO-NO. 8 FOR STATIONS BELOW 750 M +2 2 PRESSURE ADJUSTED TO SEA LEVEL FOLLOWING NATIONAL PRACTICE +3 3 PRESSURE ADJUSTED TO LOCAL WATER LEVEL FOLLOWING NATIONAL PRACTICE +4 4 PRESSURE NOT CORRECTED FOR HEIGHT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25190.table b/definitions/bufr/tables/0/wmo/36/codetables/25190.table new file mode 100644 index 000000000..184eab4ab --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25190.table @@ -0,0 +1,7 @@ +0 0 LOW RESOLUTION MODE (LRM) +1 1 SYNTHETIC APERTURE RADAR (SAR) +2 2 LRM AND SAR (INTERLEAVED) +3 3 RESERVED +4 4 PSEUDO-LRM (PLRM) +5 5 SAR INTERFEROMETRIC MODE (SARIN) +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/25191.table b/definitions/bufr/tables/0/wmo/36/codetables/25191.table new file mode 100644 index 000000000..ea22b6872 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/25191.table @@ -0,0 +1,4 @@ +0 0 OPEN LOOP +1 1 CLOSED LOOP +2 2 OPEN LOOP FIXED GAIN +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/26010.table b/definitions/bufr/tables/0/wmo/36/codetables/26010.table new file mode 100644 index 000000000..f825040f4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/26010.table @@ -0,0 +1,25 @@ +1 1 0100 INCLUDED +2 2 0200 INCLUDED +3 3 0300 INCLUDED +4 4 0400 INCLUDED +5 5 0500 INCLUDED +6 6 0600 INCLUDED +7 7 0700 INCLUDED +8 8 0800 INCLUDED +9 9 0900 INCLUDED +10 10 1000 INCLUDED +11 11 1100 INCLUDED +12 12 1200 INCLUDED +13 13 1300 INCLUDED +14 14 1400 INCLUDED +15 15 1500 INCLUDED +16 16 1600 INCLUDED +17 17 1700 INCLUDED +18 18 1800 INCLUDED +19 19 1900 INCLUDED +20 20 2000 INCLUDED +21 21 2100 INCLUDED +22 22 2200 INCLUDED +23 23 2300 INCLUDED +24 24 2400 INCLUDED +25 25 UNKNOWN MIXTURE OF HOURS diff --git a/definitions/bufr/tables/0/wmo/36/codetables/29001.table b/definitions/bufr/tables/0/wmo/36/codetables/29001.table new file mode 100644 index 000000000..148124391 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/29001.table @@ -0,0 +1,8 @@ +0 0 GNOMONIC PROJECTION +1 1 POLAR STEREOGRAPHIC PROJECTION +2 2 LAMBERT'S CONFORMAL CONIC PROJECTION +3 3 MERCATOR'S PROJECTION +4 4 SCANNING CONE (RADAR)* +5 5 RESERVED +6 6 NO PROJECTION +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/29002.table b/definitions/bufr/tables/0/wmo/36/codetables/29002.table new file mode 100644 index 000000000..1d7efd0c8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/29002.table @@ -0,0 +1,4 @@ +0 0 CARTESIAN +1 1 POLAR +2 2 OTHER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/3001.table b/definitions/bufr/tables/0/wmo/36/codetables/3001.table new file mode 100644 index 000000000..e9caa2a14 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/3001.table @@ -0,0 +1,12 @@ +0 0 LAND STATION (SYNOPTIC NETWORK) +1 1 SHALLOW WATER STATION (FIXED TO SEA/LAKE FLOOR) +2 2 SHIP +3 3 RIG/PLATFORM +4 4 MOORED BUOY +5 5 DRIFTING BUOY (OR DRIFTER) +6 6 ICE BUOY +7 7 LAND STATION (LOCAL NETWORK) +8 8 LAND VEHICLE +9 9 AUTONOMOUS MARINE VEHICLE +10 10 TAG ATTACHED TO MARINE ANIMAL +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/3003.table b/definitions/bufr/tables/0/wmo/36/codetables/3003.table new file mode 100644 index 000000000..cf530237f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/3003.table @@ -0,0 +1,8 @@ +0 0 SCREEN +1 1 SLING/WHIRLING +2 2 UNSCREENED +3 3 RADIATION SHIELD +4 4 ASPIRATED (E.G. ASSMANN) +5 5 OTHER SHELTER +6 6 HANDHELD +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/30031.table b/definitions/bufr/tables/0/wmo/36/codetables/30031.table new file mode 100644 index 000000000..80cce26f1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/30031.table @@ -0,0 +1,13 @@ +0 0 PPI +1 1 COMPOSITE +2 2 CAPPL +3 3 VERTICAL SECTION +4 4 ALPHANUMERIC DATA +5 5 MAP OF SUBJECT CLUTTER +6 6 MAP +7 7 TEST PICTURE +8 8 COMMENTS +9 9 MAP OF GROUND OCCULTATION +10 10 MAP OF RADAR BEAM HEIGHT +14 14 OTHER +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/30032.table b/definitions/bufr/tables/0/wmo/36/codetables/30032.table new file mode 100644 index 000000000..942cb5d7f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/30032.table @@ -0,0 +1,9 @@ +1 1 MAP +2 2 SATELLITE IR +3 3 SATELLITE VIS +4 4 SATELLITE WV +5 5 SATELLITE MULTISPECTRAL +6 6 SYNOPTIC OBSERVATIONS +7 7 FORECAST PARAMETERS +8 8 LIGHTNING DATA +15 15 OTHER DATA diff --git a/definitions/bufr/tables/0/wmo/36/codetables/3004.table b/definitions/bufr/tables/0/wmo/36/codetables/3004.table new file mode 100644 index 000000000..571e234bf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/3004.table @@ -0,0 +1,11 @@ +0 0 STEVENSON SCREEN +1 1 MARINE STEVENSON SCREEN +2 2 CYLINDRICAL SECTION PLATE SHIELD +3 3 CONCENTRIC TUBE +4 4 RECTANGULAR SECTION SHIELD +5 5 SQUARE SECTION SHIELD +6 6 TRIANGULAR SECTION SHIELD +7 7 OPEN COVERED LEAN-TO +8 8 OPEN COVERED INVERTED V ROOF +9 9 INTEGRATED (E.G. CHILLED MIRROR) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/3008.table b/definitions/bufr/tables/0/wmo/36/codetables/3008.table new file mode 100644 index 000000000..e321d5562 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/3008.table @@ -0,0 +1,4 @@ +0 0 NATURAL VENTILATION IN USE +1 1 ARTIFICIAL ASPIRATION IN USE: CONSTANT FLOW AT TIME OF READING +2 2 ARTIFICIAL ASPIRATION IN USE: VARIABLE FLOW AT TIME OF READING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/3010.table b/definitions/bufr/tables/0/wmo/36/codetables/3010.table new file mode 100644 index 000000000..75746a1c3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/3010.table @@ -0,0 +1,12 @@ +0 0 RESERVED +1 1 ADCP +2 2 GEK (GEOMAGNETIC ELECTROKINETOGRAPH) +3 3 SHIP'S SET AND DRIFT DETERMINED BY FIXES 3-6 HOURS APART +4 4 SHIP'S SET AND DRIFT DETERMINED BY FIXES MORE THAN 6 HOURS BUT LESS THAN 12 HOURS APART +5 5 DRIFT OF BUOY +6 6 ADCP +7 7 ADCP BOTTOM TRACKING MODE +8 8 ELECTROMAGNETIC SENSOR +9 9 ROTOR AND VANE +10 10 LOWERED ADCP +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/3011.table b/definitions/bufr/tables/0/wmo/36/codetables/3011.table new file mode 100644 index 000000000..748826848 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/3011.table @@ -0,0 +1,4 @@ +0 0 DEPTH CALCULATED USING FALL RATE EQUATION +1 1 DEPTH CALCULATED FROM WATER PRESSURE/EQUATION OF STATE +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/3012.table b/definitions/bufr/tables/0/wmo/36/codetables/3012.table new file mode 100644 index 000000000..35bdeadd5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/3012.table @@ -0,0 +1,3 @@ +0 0 ANDERRAA OXYGEN OPTODE +1 1 WINKLER BOTTLE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/3016.table b/definitions/bufr/tables/0/wmo/36/codetables/3016.table new file mode 100644 index 000000000..792788f42 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/3016.table @@ -0,0 +1,9 @@ +0 0 FAST LANE BETWEEN THE WHEEL TRACKS +1 1 FAST LANE BETWEEN THE WHEEL TRACKS IN THE OPPOSITE DIRECTION +2 2 FAST LANE IN THE WHEEL TRACKS +3 3 FAST LANE IN THE WHEEL TRACKS IN THE OPPOSITE DIRECTION +4 4 SLOW LANE BETWEEN THE WHEEL TRACKS +5 5 SLOW LANE BETWEEN THE WHEEL TRACKS IN THE OPPOSITE DIRECTION +6 6 SLOW LANE IN THE WHEEL TRACKS +7 7 SLOW LANE IN THE WHEEL TRACKS IN THE OPPOSITE DIRECTION +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/3017.table b/definitions/bufr/tables/0/wmo/36/codetables/3017.table new file mode 100644 index 000000000..e94c0a449 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/3017.table @@ -0,0 +1,5 @@ +1 1 AUTOMATIC +2 2 MANNED +3 3 EVENT TRIGGERED +4 4 LONGER TIME PERIOD THAN THE STANDARD +5 5 RESERVED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/3018.table b/definitions/bufr/tables/0/wmo/36/codetables/3018.table new file mode 100644 index 000000000..b3769ae40 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/3018.table @@ -0,0 +1,22 @@ +0 0 FREE TRACK WITHOUT FURTHER INFORMATION +1 1 FREE TRACK, EMBANKMENT +2 2 FREE TRACK, FLAT RELATIVE TO SURROUNDINGS +3 3 FREE TRACK, WATER BASIN(S) IN VICINITY +4 4 FREE TRACK, FOREST +5 5 FREE TRACK, CLEFT +6 6 FREE TRACK, ON HILLTOP +7 7 FREE TRACK, ON HILLTOP, FOREST +8 8 FREE TRACK, IN VALLEY +9 9 FREE TRACK, IN VALLEY, FOREST +10 10 FREE TRACK, NORTH INCLINATION +11 11 FREE TRACK, NORTH INCLINATION, FOREST +12 12 FREE TRACK, SOUTH INCLINATION +13 13 FREE TRACK, SOUTH INCLINATION, FOREST +20 20 BRIDGE WITHOUT FURTHER INFORMATION +21 21 BRIDGE ACROSS A VALLEY IN AN URBAN AREA +22 22 BRIDGE ACROSS A VALLEY WITH FOREST/MEADOWS/FIELDS +23 23 BRIDGE ACROSS STREET/TRACK +24 24 BRIDGE ACROSS BIG RIVER/CANAL +25 25 BRIDGE ACROSS RIVER/CANAL OF MEDIUM SIZE +26 26 BRIDGE ACROSS A SMALL STREAM/LOADING CANAL +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/3019.table b/definitions/bufr/tables/0/wmo/36/codetables/3019.table new file mode 100644 index 000000000..2f55b0028 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/3019.table @@ -0,0 +1,8 @@ +0 0 ASPHALT +1 1 CONCRETE +2 2 CONCRETE CONSTRUCTION +3 3 STEEL-GIRDER CONSTRUCTION +4 4 BOX GIRDER BRIDGE +5 5 ORTHOTROPIC SLAB +6 6 DRAIN ASPHALT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/3020.table b/definitions/bufr/tables/0/wmo/36/codetables/3020.table new file mode 100644 index 000000000..9f0feaea7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/3020.table @@ -0,0 +1,5 @@ +0 0 WOOD +1 1 METAL ALLOY +2 2 PLASTIC/GRP +3 3 REED/GRASS/LEAF +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/3021.table b/definitions/bufr/tables/0/wmo/36/codetables/3021.table new file mode 100644 index 000000000..27e1bfad4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/3021.table @@ -0,0 +1,4 @@ +0 0 UNHEATED +1 1 HEATED +2 2 NOT APPLICABLE +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/3022.table b/definitions/bufr/tables/0/wmo/36/codetables/3022.table new file mode 100644 index 000000000..daf67e27f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/3022.table @@ -0,0 +1,4 @@ +0 0 NATIONAL HYDROMETEOROLOGICAL/WEATHER SERVICE +1 1 OTHER +2 2 STANDARDS INSTITUTE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/3023.table b/definitions/bufr/tables/0/wmo/36/codetables/3023.table new file mode 100644 index 000000000..9e683c891 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/3023.table @@ -0,0 +1,8 @@ +0 0 SINGLE V-SECTION LOUVERS +1 1 OVERLAPPING LOUVERS +2 2 DOUBLE V-SECTION LOUVERS +3 3 NON-OVERLAPPING LOUVERS +4 4 VENTED, NON-LOUVERED +5 5 NOT APPLICABLE +6 6 RESERVED FOR FUTURE USE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/3027.table b/definitions/bufr/tables/0/wmo/36/codetables/3027.table new file mode 100644 index 000000000..8280e8602 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/3027.table @@ -0,0 +1,8 @@ +0 0 SOLO (SINGLE RADIOSONDE) +1 1 BLOCK +2 2 BAR +3 3 CROSS +4 4 T-RIG +5 5 DOUBLE T-RIG +6 6 COMPLEX +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/3028.table b/definitions/bufr/tables/0/wmo/36/codetables/3028.table new file mode 100644 index 000000000..9cc805953 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/3028.table @@ -0,0 +1,8 @@ +0 0 MULTI POINT MANUAL SNOW SURVEY +1 1 SINGLE POINT MANUAL SNOW WATER EQUIVALENT MEASUREMENT +2 2 SNOW PILLOW OR SNOW SCALE +3 3 PASSIVE GAMMA +4 4 GNSS/GPS METHODS +5 5 COSMIC RAY ATTENUATION +6 6 TIME DOMAIN REFLECTOMETRY +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/31021.table b/definitions/bufr/tables/0/wmo/36/codetables/31021.table new file mode 100644 index 000000000..fe82f5819 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/31021.table @@ -0,0 +1,9 @@ +0 0 RESERVED +1 1 1-BIT INDICATOR OF QUALITY +2 2 2-BIT INDICATOR OF QUALITY +6 6 4-BIT INDICATOR OF QUALITY CONTROL CLASS ACCORDING TO GTSPP +7 7 PERCENTAGE CONFIDENCE +8 8 0 = NOT SUSPECTED, 1 = SUSPECTED, 2 = RESERVED, 3 = INFORMATION NOT REQUIRED +9 9 0 = DATA PRESENT, GOOD, COLLOCATED, 1 = DATA AVAILABLE BUT OF DEGRADED QUALITY AND NOT USED, 2 = NO SPATIOTEMPORALLY COLLOCATED DATA AVAILABLE, 3-14 = NOT USED (RESERVED), 15 = MISSING VALUE +21 21 1-BIT INDICATOR OF CORRECTION +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/31031.table b/definitions/bufr/tables/0/wmo/36/codetables/31031.table new file mode 100644 index 000000000..1f2742950 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/31031.table @@ -0,0 +1 @@ +1 1 diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33002.table b/definitions/bufr/tables/0/wmo/36/codetables/33002.table new file mode 100644 index 000000000..4177c0577 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33002.table @@ -0,0 +1,4 @@ +0 0 DATA NOT SUSPECT +1 1 DATA SUSPECT +2 2 RESERVED +3 3 QUALITY INFORMATION NOT GIVEN diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33003.table b/definitions/bufr/tables/0/wmo/36/codetables/33003.table new file mode 100644 index 000000000..7577129b0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33003.table @@ -0,0 +1,5 @@ +0 0 DATA NOT SUSPECT +1 1 DATA SLIGHTLY SUSPECT +2 2 DATA HIGHLY SUSPECT +3 3 DATA CONSIDERED UNFIT FOR USE +7 7 QUALITY INFORMATION NOT GIVEN diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33005.table b/definitions/bufr/tables/0/wmo/36/codetables/33005.table new file mode 100644 index 000000000..8d7569ad2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33005.table @@ -0,0 +1,23 @@ +1 1 NO AUTOMATED METEOROLOGICAL DATA CHECKS PERFORMED +2 2 PRESSURE DATA SUSPECT +3 3 WIND DATA SUSPECT +4 4 AIR TEMPERATURE DATA SUSPECT +5 5 WET-BULB TEMPERATURE DATA SUSPECT +6 6 HUMIDITY DATA SUSPECT +7 7 GROUND TEMPERATURE DATA SUSPECT +8 8 SOIL TEMPERATURE (DEPTH 1) DATA SUSPECT +9 9 SOIL TEMPERATURE (DEPTH 2) DATA SUSPECT +10 10 SOIL TEMPERATURE (DEPTH 3) DATA SUSPECT +11 11 SOIL TEMPERATURE (DEPTH 4) DATA SUSPECT +12 12 SOIL TEMPERATURE (DEPTH 5) DATA SUSPECT +13 13 CLOUD DATA SUSPECT +14 14 VISIBILITY DATA SUSPECT +15 15 PRESENT WEATHER DATA SUSPECT +16 16 LIGHTNING DATA SUSPECT +17 17 ICE DEPOSIT DATA SUSPECT +18 18 PRECIPITATION DATA SUSPECT +19 19 STATE OF GROUND DATA SUSPECT +20 20 SNOW DATA SUSPECT +21 21 WATER CONTENT DATA SUSPECT +22 22 EVAPORATION/EVAPOTRANSPIRATION DATA SUSPECT +23 23 SUNSHINE DATA SUSPECT diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33006.table b/definitions/bufr/tables/0/wmo/36/codetables/33006.table new file mode 100644 index 000000000..0ea44a50b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33006.table @@ -0,0 +1,5 @@ +0 0 SELF-CHECK OK +1 1 AT LEAST ONE WARNING ACTIVE, NO ALARMS +2 2 AT LEAST ONE ALARM ACTIVE +3 3 SENSOR FAILURE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33015.table b/definitions/bufr/tables/0/wmo/36/codetables/33015.table new file mode 100644 index 000000000..f585808d0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33015.table @@ -0,0 +1,16 @@ +0 0 PASSED ALL CHECKS +1 1 MISSING DATA CHECK +2 2 DESCENDING/REASCENDING BALLOON CHECK +3 3 DATA PLAUSIBILITY CHECK (ABOVE LIMITS) +4 4 DATA PLAUSIBILITY CHECK (BELOW LIMITS) +5 5 SUPERADIABATIC LAPSE RATE CHECK +6 6 LIMITING ANGLES CHECK +7 7 ASCENSION RATE CHECK +8 8 EXCESSIVE CHANGE FROM PREVIOUS FLIGHT +9 9 BALLOON OVERHEAD CHECK +10 10 WIND SPEED CHECK +11 11 WIND DIRECTION CHECK +12 12 DEPENDENCY CHECK +13 13 DATA VALID BUT MODIFIED +14 14 DATA OUTLIER CHECK +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33020.table b/definitions/bufr/tables/0/wmo/36/codetables/33020.table new file mode 100644 index 000000000..ba7a4d4ea --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33020.table @@ -0,0 +1,8 @@ +0 0 GOOD +1 1 INCONSISTENT +2 2 DOUBTFUL +3 3 WRONG +4 4 NOT CHECKED +5 5 HAS BEEN CHANGED +6 6 ESTIMATED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33021.table b/definitions/bufr/tables/0/wmo/36/codetables/33021.table new file mode 100644 index 000000000..e3e67ae8c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33021.table @@ -0,0 +1,4 @@ +0 0 WITHIN LIMITS +1 1 OUTSIDE LIMITS +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33022.table b/definitions/bufr/tables/0/wmo/36/codetables/33022.table new file mode 100644 index 000000000..50ef65feb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33022.table @@ -0,0 +1,4 @@ +0 0 GOOD (SEVERAL IDENTICAL REPORTS HAVE BEEN RECEIVED) +1 1 DUBIOUS (NO IDENTICAL REPORTS HAVE BEEN RECEIVED) +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33023.table b/definitions/bufr/tables/0/wmo/36/codetables/33023.table new file mode 100644 index 000000000..896c816a9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33023.table @@ -0,0 +1,4 @@ +0 0 RELIABLE (LOCATION WAS MADE OVER TWO SATELLITE PASSES) +1 1 LATEST KNOWN (NO LOCATION OVER THE CORRESPONDING PASS) +2 2 DUBIOUS (LOCATION MADE OVER ONE PASS ONLY; A SECOND SOLUTION IS POSSIBLE IN 5 PER CENT OF THE CASES) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33024.table b/definitions/bufr/tables/0/wmo/36/codetables/33024.table new file mode 100644 index 000000000..771e04b81 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33024.table @@ -0,0 +1,10 @@ +0 0 RESERVED +1 1 EXCELLENT - WITHIN 3 METRES +2 2 GOOD - WITHIN 10 METRES +3 3 FAIR - WITHIN 20 METRES +4 4 POOR - MORE THAN 20 METRES +5 5 EXCELLENT - WITHIN 10 FEET +6 6 GOOD - WITHIN 30 FEET +7 7 FAIR - WITHIN 60 FEET +8 8 POOR - MORE THAN 60 FEET +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33025.table b/definitions/bufr/tables/0/wmo/36/codetables/33025.table new file mode 100644 index 000000000..4da695aa0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33025.table @@ -0,0 +1,5 @@ +0 0 TIME INTERPOLATED, LATITUDE AND LONGITUDE REPORTED +1 1 TIME REPORTED, LATITUDE AND LONGITUDE INTERPOLATED +2 2 TIME, LATITUDE, AND LONGITUDE INTERPOLATED +3 3 TIME, LATITUDE, AND LONGITUDE REPORTED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33026.table b/definitions/bufr/tables/0/wmo/36/codetables/33026.table new file mode 100644 index 000000000..08c61254b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33026.table @@ -0,0 +1,17 @@ +0 0 NORMAL OPERATIONS - MEASUREMENT MODE +1 1 NORMAL OPERATIONS - NON-MEASUREMENT MODE +2 2 SMALL RH +3 3 HUMIDITY ELEMENT IS WET +4 4 HUMIDITY ELEMENT CONTAMINATED +5 5 HEATER FAIL +6 6 HEATER FAIL AND WET/CONTAMINATED HUMIDITY ELEMENT +7 7 AT LEAST ONE OF THE INPUT PARAMETERS USED IN THE CALCULATION OF MIXING RATIO IS INVALID +8 8 NUMERIC ERROR +9 9 SENSOR NOT INSTALLED +10 10 CALCULATED RH > 100% +11 11 INPUT LASER POWER TOO LOW +12 12 PROBE WV TEMPERATURE OUT OF RANGE +13 13 PROBE WV PRESSURE OUT OF RANGE +14 14 SPECTRAL LINE OUT OF RANGE +15 15 NO LASER OUTPUT +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33027.table b/definitions/bufr/tables/0/wmo/36/codetables/33027.table new file mode 100644 index 000000000..c563af46f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33027.table @@ -0,0 +1,6 @@ +0 0 RADIUS >= 1500 M +1 1 500 M =< RADIUS <1500 M +2 2 250 M =< RADIUS < 500 M +3 3 RADIUS < 250 M +4 4 =< 100 M +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33028.table b/definitions/bufr/tables/0/wmo/36/codetables/33028.table new file mode 100644 index 000000000..84bd666f9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33028.table @@ -0,0 +1,5 @@ +1 1 NOMINAL +2 2 DEGRADED BY SW ERROR; ANY ERROR REPORTED BY THE ALGORITHMS +3 3 DEGRADED BY INSTRUMENT ERROR +4 4 DEGRADED BY CORRUPTED /MISSING ADF +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33030.table b/definitions/bufr/tables/0/wmo/36/codetables/33030.table new file mode 100644 index 000000000..c9e36c0f4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33030.table @@ -0,0 +1,7 @@ +1 1 DO NOT USE SCAN FOR PRODUCT GENERATION +2 2 TIME SEQUENCE ERROR DETECTED WITH THIS SCAN +3 3 DATA GAP PRECEDES THIS SCAN +4 4 NO CALIBRATION +5 5 NO EARTH LOCATION +6 6 FIRST GOOD TIME FOLLOWING A CLOCK UPDATE +7 7 INSTRUMENT STATUS CHANGED WITH THIS SCAN diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33031.table b/definitions/bufr/tables/0/wmo/36/codetables/33031.table new file mode 100644 index 000000000..c11fd4a09 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33031.table @@ -0,0 +1,21 @@ +1 1 TIME FIELD IS BAD BUT CAN PROBABLY BE INFERRED FROM THE PREVIOUS GOOD TIME +2 2 TIME FIELD IS BAD AND CANNOT BE INFERRED FROM THE PREVIOUS GOOD TIME +3 3 THIS RECORD STARTS A SEQUENCE THAT IS INCONSISTENT WITH PREVIOUS TIMES (I.E. THERE IS A TIME DISCONTINUITY). THIS MAY OR MAY NOT BE ASSOCIATED WITH A SPACECRAFT CLOCK UPDATE (SEE SCAN LINE STATUS FLAGS FOR ATOVS) +4 4 START OF A SEQUENCE THAT APPARENTLY REPEATS SCAN TIMES THAT HAVE BEEN PREVIOUSLY ACCEPTED +5 5 SCAN LINE WAS NOT CALIBRATED BECAUSE OF BAD TIME +6 6 SCAN LINE WAS CALIBRATED USING FEWER THAN THE PREFERRED NUMBER OF SCAN LINES BECAUSE OF PROXIMITY TO START OR END OF DATA OR TO A DATA GAP +7 7 SCAN LINE WAS NOT CALIBRATED BECAUSE OF BAD OR INSUFFICIENT PRT DATA +8 8 SCAN LINE WAS CALIBRATED BUT WITH MARGINAL PRT DATA +9 9 SOME UNCALIBRATED CHANNELS ON THIS SCAN +10 10 UNCALIBRATED DUE TO INSTRUMENT MODE +11 11 QUESTIONABLE CALIBRATION BECAUSE OF ANTENNA POSITION ERROR OF SPACE VIEW +12 12 QUESTIONABLE CALIBRATION BECAUSE OF ANTENNA POSITION ERROR OF BLACK BODY +13 13 NOT EARTH LOCATED BECAUSE OF BAD TIME +14 14 EARTH LOCATION QUESTIONABLE BECAUSE OF QUESTIONABLE TIME CODE (SEE TIME PROBLEM CODE BITS) +15 15 EARTH LOCATION QUESTIONABLE - ONLY MARGINAL AGREEMENT WITH REASONABLENESS CHECK +16 16 EARTH LOCATION QUESTIONABLE - FAILS REASONABLENESS CHECK +17 17 EARTH LOCATION QUESTIONABLE BECAUSE OF ANTENNA POSITION CHECK +18 18 SCAN LINE CALIBRATION COLD BLACK BODY +19 19 SCAN LINE CALIBRATION WARM BLACK BODY +20 20 SCAN LINE CALIBRATION SPACE VIEW +21 21 EARTH VIEW diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33032.table b/definitions/bufr/tables/0/wmo/36/codetables/33032.table new file mode 100644 index 000000000..33307f50a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33032.table @@ -0,0 +1,7 @@ +1 1 NO GOOD BLACKBODY COUNTS FOR SCAN LINE +2 2 NO GOOD SPACE VIEW COUNTS FOR THIS LINE +3 3 NO GOOD PRTS FOR THIS LINE +4 4 SOME BAD BLACKBODY VIEW COUNTS FOR THIS LINE +5 5 SOME BAD SPACE VIEW COUNTS FOR THIS LINE +6 6 SOME BAD PRT TEMPS ON THIS LINE +7 7 QUALITY FOR THIS SCAN IS REDUCED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33033.table b/definitions/bufr/tables/0/wmo/36/codetables/33033.table new file mode 100644 index 000000000..6fd320510 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33033.table @@ -0,0 +1,3 @@ +1 1 SET IF SECONDARY CALIBRATION USED +22 22 SET IF ALL THE CHANNELS ARE MISSING +23 23 SUSPECT diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33035.table b/definitions/bufr/tables/0/wmo/36/codetables/33035.table new file mode 100644 index 000000000..01996bae4 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33035.table @@ -0,0 +1,10 @@ +0 0 AUTOMATIC QUALITY CONTROL PASSED AND NOT MANUALLY CHECKED +1 1 AUTOMATIC QUALITY CONTROL PASSED AND MANUALLY CHECKED AND PASSED +2 2 AUTOMATIC QUALITY CONTROL PASSED AND MANUALLY CHECKED AND DELETED +3 3 AUTOMATIC QUALITY CONTROL FAILED AND MANUALLY NOT CHECKED +4 4 AUTOMATIC QUALITY CONTROL FAILED AND MANUALLY CHECKED AND FAILED +5 5 AUTOMATIC QUALITY CONTROL FAILED AND MANUALLY CHECKED AND RE-INSERTED +6 6 AUTOMATIC QUALITY CONTROL FLAGGED DATA AS QUESTIONABLE AND NOT MANUALLY CHECKED +7 7 AUTOMATIC QUALITY CONTROL FLAGGED DATA AS QUESTIONABLE AND MANUALLY CHECKED AND FAILED +8 8 MANUALLY CHECKED AND FAILED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33037.table b/definitions/bufr/tables/0/wmo/36/codetables/33037.table new file mode 100644 index 000000000..9f26652a5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33037.table @@ -0,0 +1,19 @@ +1 1 U DEPARTURE FROM GUESS +2 2 V DEPARTURE FROM GUESS +3 3 U AND V DEPARTURE FROM GUESS +4 4 U ACCELERATION +5 5 V ACCELERATION +6 6 U AND V ACCELERATION +7 7 POSSIBLE LAND FEATURE +8 8 U ACCELERATION AND POSSIBLE LAND FEATURE +9 9 V ACCELERATION AND POSSIBLE LAND FEATURE +10 10 U AND V ACCELERATION AND POSSIBLE LAND FEATURE +11 11 BAD WIND GUESS +12 12 CORRELATION FAILURE +13 13 SEARCH BOX OFF EDGE OF AREA +14 14 TARGET BOX OFF EDGE OF AREA +15 15 PIXEL BRIGHTNESS OUT OF BOUNDS (NOISY LINE) +16 16 TARGET OUTSIDE OF LATITUDE/LONGITUDE BOX +17 17 TARGET OUTSIDE OF PRESSURE MINIMUM/MAXIMUM +18 18 AUTOEDITOR FLAGGED SLOW VECTOR +19 19 AUTOEDITOR FLAGGED VECTORS diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33038.table b/definitions/bufr/tables/0/wmo/36/codetables/33038.table new file mode 100644 index 000000000..3dc1192e8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33038.table @@ -0,0 +1,9 @@ +1 1 TOTAL ZENITH DELAY QUALITY IS CONSIDERED POOR +2 2 GALILEO SATELLITES USED +3 3 GLONASS SATELLITES USED +4 4 GPS SATELLITES USED +5 5 METEOROLOGICAL DATA APPLIED +6 6 ATMOSPHERIC LOADING CORRECTION APPLIED +7 7 OCEAN TIDE LOADING APPLIED +8 8 CLIMATE QUALITY DATA PROCESSING +9 9 NEAR-REAL TIME DATA PROCESSING diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33039.table b/definitions/bufr/tables/0/wmo/36/codetables/33039.table new file mode 100644 index 000000000..50ff12664 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33039.table @@ -0,0 +1,9 @@ +1 1 NON-NOMINAL QUALITY +2 2 OFFLINE PRODUCT +3 3 ASCENDING OCCULTATION FLAG +4 4 EXCESS PHASE PROCESSING NON-NOMINAL +5 5 BENDING ANGLE PROCESSING NON-NOMINAL +6 6 REFRACTIVITY PROCESSING NON-NOMINAL +7 7 METEOROLOGICAL PROCESSING NON-NOMINAL +14 14 BACKGROUND PROFILE NON-NOMINAL +15 15 BACKGROUND (I.E. NOT RETRIEVED) PROFILE PRESENT diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33041.table b/definitions/bufr/tables/0/wmo/36/codetables/33041.table new file mode 100644 index 000000000..8bbdba90a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33041.table @@ -0,0 +1,4 @@ +0 0 THE FOLLOWING VALUE IS THE TRUE VALUE +1 1 THE FOLLOWING VALUE IS HIGHER THAN THE TRUE VALUE (THE MEASUREMENT HIT THE LOWER LIMIT OF THE INSTRUMENT) +2 2 THE FOLLOWING VALUE IS LOWER THAN THE TRUE VALUE (THE MEASUREMENT HIT THE HIGHER LIMIT OF THE INSTRUMENT) +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33042.table b/definitions/bufr/tables/0/wmo/36/codetables/33042.table new file mode 100644 index 000000000..b75447a4a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33042.table @@ -0,0 +1,5 @@ +0 0 EXCLUSIVE LOWER LIMIT (>) +1 1 INCLUSIVE LOWER LIMIT (>=) +2 2 EXCLUSIVE UPPER LIMIT (<) +3 3 INCLUSIVE UPPER LIMIT (=<) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33043.table b/definitions/bufr/tables/0/wmo/36/codetables/33043.table new file mode 100644 index 000000000..398d9ab2c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33043.table @@ -0,0 +1,4 @@ +1 1 SEA MDS. NADIR ONLY SST RETRIEVAL USED 3.7 MICRON CHANNEL. LAND MDS RESERVED +2 2 SEA MDS. DUAL VIEW SST RETRIEVAL USED 3.7 MICRON CHANNEL. LAND MDS RESERVED +3 3 NADIR VIEW CONTAINS DAY TIME DATA +4 4 FORWARD VIEW CONTAINS DAY TIME DATA diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33044.table b/definitions/bufr/tables/0/wmo/36/codetables/33044.table new file mode 100644 index 000000000..01746c795 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33044.table @@ -0,0 +1,14 @@ +1 1 INPUT DATA MEAN OUTSIDE NOMINAL RANGE FLAG +2 2 INPUT DATA STANDARD DEVIATION OUTSIDE NOMINAL RANGE FLAG +3 3 NUMBER OF INPUT DATA GAPS > THRESHOLD VALUE +4 4 PERCENTAGE OF MISSING LINES > THRESHOLD VALUE +5 5 DOPPLER CENTROID UNCERTAIN. CONFIDENCE MEASURE < SPECIFIC VALUE +6 6 DOPPLER AMBIGUITY ESTIMATE UNCERTAIN. CONFIDENCE MEASURE < SPECIFIC VALUE +7 7 OUTPUT DATA MEAN OUTSIDE NOMINAL RANGE FLAG +8 8 OUTPUT DATA STANDARD DEVIATION OUTSIDE NOMINAL RANGE FLAG +9 9 CHIRP RECONSTRUCTION FAILED OR IS OF LOW QUALITY FLAG +10 10 DATA SET MISSING +11 11 INVALID DOWNLINK PARAMETERS +12 12 AZIMUTH CUT-OFF ITERATION COUNT. THE AZIMUTH CUT-OFF FIT DID NOT CONVERGE WITHIN A MINIMUM NUMBER OF ITERATIONS +13 13 AZIMUTH CUT-OFF FIT DID NOT CONVERGE WITHIN A MINIMUM NUMBER OF ITERATIONS +14 14 PHASE INFORMATION CONFIDENCE MEASURE. THE IMAGINARY SPECTRAL PEAK IS LESS THAN A MINIMUM THRESHOLD, OR THE ZERO LAG SHIFT IS GREATER THAN A MINIMUM THRESHOLD diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33047.table b/definitions/bufr/tables/0/wmo/36/codetables/33047.table new file mode 100644 index 000000000..f69b56e18 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33047.table @@ -0,0 +1,27 @@ +1 1 ERROR DETECTED AND ATTEMPTS TO RECOVER MADE +2 2 ANOMALY IN ON-BOARD DATA HANDLING (OBDH) VALUE DETECTED +3 3 ANOMALY IN ULTRA STABLE OSCILLATOR PROCESSING (USOP) VALUE DETECTED +4 4 ERRORS DETECTED BY ON-BOARD COMPUTER +5 5 AUTOMATIC GAIN CONTROL (AGC) OUT OF RANGE +6 6 RECEPTION (RX) DELAY FAULT. RX DISTANCE OUT OF RANGE +7 7 WAVE FORM SAMPLES FAULT IDENTIFIER. ERROR +8 8 S BAND ANOMALY/ERROR DETECTED +12 12 BRIGHTNESS TEMPERATURE (CHANNEL 1) OUT OF RANGE +13 13 BRIGHTNESS TEMPERATURE (CHANNEL 2) OUT OF RANGE +14 14 RESERVED +15 15 KU BAND OCEAN RETRACKING ERROR +16 16 S BAND OCEAN RETRACKING ERROR +17 17 KU BAND ICE 1 RETRACKING ERROR +18 18 S BAND ICE 1 RETRACKING ERROR +19 19 KU BAND ICE 2 RETRACKING ERROR +20 20 S BAND ICE 2 RETRACKING ERROR +21 21 KU BAND SEA ICE RETRACKING ERROR +22 22 ARITHMETIC FAULT ERROR +23 23 METEO DATA STATE. NO MAP +24 24 METEO DATA STATE. 1 MAP +25 25 METEO DATA STATE. 2 MAPS DEGRADED +26 26 METEO DATA STATE. 2 MAPS NOMINAL +27 27 ORBIT PROPAGATOR STATUS FOR PROPAGATION MODE, SEVERAL ERRORS +28 28 ORBIT PROPAGATOR STATUS FOR PROPAGATION MODE, WARNING DETECTED +29 29 ORBIT PROPAGATOR STATUS FOR INITIALIZATION MODE, SEVERAL ERRORS +30 30 ORBIT PROPAGATOR STATUS FOR INITIALIZATION MODE, WARNING DETECTED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33048.table b/definitions/bufr/tables/0/wmo/36/codetables/33048.table new file mode 100644 index 000000000..312ba4071 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33048.table @@ -0,0 +1,4 @@ +0 0 INVERSION SUCCESSFUL +1 1 INVERSION NOT SUCCESSFUL +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33049.table b/definitions/bufr/tables/0/wmo/36/codetables/33049.table new file mode 100644 index 000000000..bdde0619b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33049.table @@ -0,0 +1,4 @@ +0 0 EXTERNAL WIND DIRECTION USED DURING INVERSION +1 1 EXTERNAL WIND DIRECTION NOT USED DURING INVERSION +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33050.table b/definitions/bufr/tables/0/wmo/36/codetables/33050.table new file mode 100644 index 000000000..ee7bb6deb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33050.table @@ -0,0 +1,9 @@ +0 0 UNQUALIFIED +1 1 CORRECT VALUE (ALL CHECKS PASSED) +2 2 PROBABLY GOOD BUT VALUE INCONSISTENT WITH STATISTICS (DIFFER FROM CLIMATOLOGY) +3 3 PROBABLY BAD (SPIKE, GRADIENT, ETC., IF OTHER TESTS PASSED) +4 4 BAD VALUE, IMPOSSIBLE VALUE (OUT OF SCALE, VERTICAL INSTABILITY, CONSTANT PROFILE) +5 5 VALUE MODIFIED DURING QUALITY CONTROL +8 8 INTERPOLATED VALUE +9 9 GOOD FOR OPERATIONAL USE; CAUTION; CHECK LITERATURE FOR OTHER USES +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33055.table b/definitions/bufr/tables/0/wmo/36/codetables/33055.table new file mode 100644 index 000000000..b757af0bb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33055.table @@ -0,0 +1,13 @@ +11 11 OCEAN SIGMA-0 IS NOT AVAILABLE FOR WIND RETRIEVALS +12 12 BACKGROUND WIND IS NOT AVAILABLE +13 13 BACKGROUND MODEL DETECT LAND +14 14 BACKGROUND MODEL DETECT ICE +15 15 SIGMA-0 IS NOT LAND/ICE FREE +16 16 SIGMA-0 LAND CONTAMINATION +17 17 SIGMA-0 ICE CONTAMINATION +18 18 NOT ENOUGH AZIMUTHAL DIVERSITY +19 19 INVERSION IS NOT DONE +20 20 OVERALL WVC FLAG +21 21 INVERSION IS ATTEMPTED (FLAG IS SET) +22 22 RAINFLAG IS ATTEMPTED (FLAG IS SET) +23 23 RAIN IS DETECTED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33056.table b/definitions/bufr/tables/0/wmo/36/codetables/33056.table new file mode 100644 index 000000000..ce44ca922 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33056.table @@ -0,0 +1,13 @@ +8 8 ASCENDING +9 9 VV POLARISATION +10 10 FORE OF SPACECRAFT +11 11 LAND +12 12 POOR SIGMA-0 (SUMMARY) +13 13 INVALID SIGMA-0 (SUMMARY) +14 14 POOR BT +15 15 INVALID BT +16 16 LAND-SEA BOUNDARY +17 17 NEGATIVE SIGMA-0 +21 21 ICE +22 22 MISSING DATA AT A GIVEN LATITUDE-LONGITUDE FOR SEA-ICE FLAGGING PROCESS FOR 2 OR MORE DAYS +23 23 ICE-OCEAN CONTAMINATION diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33060.table b/definitions/bufr/tables/0/wmo/36/codetables/33060.table new file mode 100644 index 000000000..741430292 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33060.table @@ -0,0 +1,4 @@ +0 0 GOOD +1 1 BAD +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33066.table b/definitions/bufr/tables/0/wmo/36/codetables/33066.table new file mode 100644 index 000000000..a80e6ab9a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33066.table @@ -0,0 +1,4 @@ +20 20 GOOD WIND, BUT AN ALTERNATIVE CHANNEL USED FOR FEATURE TRACKING +21 21 GOOD WIND, BUT AN ALTERNATIVE SET OF CHANNELS USED FOR THE DETERMINATION OF CLOUD-TOP HEIGHT/AMV HEIGHT ASSIGNMENT +22 22 CORRELATION SURFACE CONSTRAINT FAILS +23 23 RESERVED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33070.table b/definitions/bufr/tables/0/wmo/36/codetables/33070.table new file mode 100644 index 000000000..8a0467b65 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33070.table @@ -0,0 +1,14 @@ +0 0 GOOD RETRIEVAL +1 1 BAD AEROSOL INFORMATION FLAG OR NOAA-16 RADIANCE ANOMALY +2 2 SOLAR ZENITH ANGLE GREATER THAN 84 DEGREES +3 3 380 NM RESIDUE GREATER THAN LIMIT +4 4 OZONE INCONSISTENCY +5 5 DIFFERENCE BETWEEN PROFILE OZONE AND STEP 3 TOTAL OZONE EXCEEDS THRESHOLD (SET TO 25 DU) +6 6 STEP 1 OZONE ITERATION DID NOT CONVERGE +7 7 ANY CHANNEL RESIDUE GREATER THAN 16 OR BAD RADIANCE +8 8 INSUFFICIENT PIXELS - NOT PROCESSED +9 9 FIRST GUESS GOOD - OZONE FORECAST DATA USED +10 10 HIGH CLOUD IN PIXEL - NOT PROCESSED +11 11 SUCCESSFUL OZONE RETRIEVAL +12 12 UNSUCCESSFUL OZONE RETRIEVAL +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33071.table b/definitions/bufr/tables/0/wmo/36/codetables/33071.table new file mode 100644 index 000000000..8c9d4ded5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33071.table @@ -0,0 +1,10 @@ +0 0 GOOD RETRIEVAL +1 1 SOLAR ZENITH ANGLE GREATER THAN 84 DEGREES +2 2 DIFFERENCE BETWEEN STEP 3 AND PROFILE TOTAL OZONE GREATER THAN LIMIT (25 DU) +3 3 AVERAGE FINAL RESIDUE FOR WAVELENGTHS USED IN RETRIEVAL GREATER THAN THRESHOLD +4 4 FINAL RESIDUE GREATER THAN 3 TIMES A PRIORI ERROR +5 5 DIFFERENCE BETWEEN RETRIEVED AND A PRIORI GREATER THAN 3 TIMES A PRIORI ERROR +6 6 NON-CONVERGENT SOLUTION +7 7 UPPER LEVEL PROFILE ANOMALY OR STRAY LIGHT ANOMALY +8 8 INITIAL RESIDUE GREATER THAN 18.0 N-VALUE UNITS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33072.table b/definitions/bufr/tables/0/wmo/36/codetables/33072.table new file mode 100644 index 000000000..fcc7f0972 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33072.table @@ -0,0 +1,18 @@ +0 0 GOOD RETRIEVAL +1 1 REFLECTIVITY OUT OF RANGE +2 2 LARGER PIXELS (NUMBER OF CROSS-TRACK PIXELS LESS THAN 32) OR BACKWARD SCANS ERROR +3 3 SOLAR ZENITH ANGLE GREATER THAN 88 DEGREES +4 4 LATITUDE/LONGITUDE OUT OF RANGE +5 5 VIEWING ZENITH ANGLE OR SOLAR ZENITH ANGLE OUT OF RANGE +6 6 STEP-ONE PROCESS FAILED IN GENERAL +7 7 FIRST GUESS OZONE OUT OF RANGE +8 8 TOO MANY ITERATIONS (EXCEED 8) +9 9 STEP-ONE RESIDUE CALCULATION FAILED +10 10 STEP-TWO PROCESS FAILED IN GENERAL +11 11 FIRST GUESS OZONE PROFILE OUT OF RANGE +12 12 STEP-TWO OZONE VALUE OUT OF RANGE +13 13 STEP-TWO RESIDUE CALCULATION FAILED +14 14 STEP-THREE PROCESS FAILED IN GENERAL +15 15 POLARIZATION CORRECTION ACCURACY ALERT +16 16 RADIANCE OR IRRADIANCE LESS OR EQUAL TO ZERO +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33075.table b/definitions/bufr/tables/0/wmo/36/codetables/33075.table new file mode 100644 index 000000000..23edae628 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33075.table @@ -0,0 +1,5 @@ +1 1 GAP IN RAW DATA RECORD (RDR) DATA DETECTED (I.E., MISSING SCAN(S) PRECEDING THE CURRENT SCAN) +2 2 RECORDED TIME IS NOT IN SEQUENCE (I.E., THE SCAN START TIME IS OUT OF SEQUENCE) +3 3 LAMBDA MONITORED CALCULATION CANNOT BE UPDATED +4 4 THE MEASURED TEMPERATURES OF ANY INSTRUMENT COMPONENTS (E.G., BEAM-SPLITTER, SCAN MIRROR, SCAN BAFFLE) ARE OUTSIDE THE ALLOWABLE RANGES +5 5 AT LEAST ONE OF THE MONITORED INSTRUMENT TEMPERATURES HAS DRIFTED MORE THAN A SPECIFIED TOLERANCE VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33076.table b/definitions/bufr/tables/0/wmo/36/codetables/33076.table new file mode 100644 index 000000000..7100c4a0d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33076.table @@ -0,0 +1,2 @@ +1 1 LUNAR INTRUSION ON FIRST DEEP SPACE VIEW +2 2 LUNAR INTRUSION ON SECOND DEEP SPACE VIEW diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33077.table b/definitions/bufr/tables/0/wmo/36/codetables/33077.table new file mode 100644 index 000000000..742c83cb5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33077.table @@ -0,0 +1,12 @@ +1 1 DEGRADED SDR* QUALITY +2 2 INVALID SDR* QUALITY +3 3 INVALID SDR* GEOLOCATION INFORMATION +4 4 DEGRADED RADIOMETRIC CALIBRATION +5 5 INVALID RADIOMETRIC CALIBRATION +6 6 DEGRADED SPECTRAL CALIBRATION +7 7 INVALID SPECTRAL CALIBRATION +8 8 FRINGE COUNT ERROR DETECTED AND CORRECTED +9 9 DAY/NIGHT INDICATOR +10 10 INVALID RDR** DATA +11 11 SIGNIFICANT FRINGE COUNT ERROR DETECTED +12 12 BIT TRIM FAILED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33078.table b/definitions/bufr/tables/0/wmo/36/codetables/33078.table new file mode 100644 index 000000000..f3a218067 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33078.table @@ -0,0 +1,5 @@ +0 0 NOMINAL - ALTITUDE AND EPHEMERIS DATA AVAILABLE +1 1 MISSING AT MOST A SMALL GAP OF ALTITUDE AND EPHEMERIS DATA +2 2 MISSING MORE THAN A SMALL GAP OF ALTITUDE AND EPHEMERIS DATA, BUT NO MORE THAN A GRANULE BOUNDARY +3 3 MISSING MORE THAN A GRANULE BOUNDARY OF ALTITUDE AND EPHEMERIS DATA +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33079.table b/definitions/bufr/tables/0/wmo/36/codetables/33079.table new file mode 100644 index 000000000..08751431e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33079.table @@ -0,0 +1,10 @@ +6 6 THE NO. 1-NO. 7 HEALTH CHECKS FAILED +7 7 THE NO. 8-NO. 15 HEALTH CHECKS FAILED +8 8 THE NO. 16-NO. 23 HEALTH CHECKS FAILED +9 9 THE NO. 24-NO. 31 HEALTH CHECKS FAILED +10 10 THE NO. 32-NO. 39 HEALTH CHECKS FAILED +11 11 THE NO. 40-NO. 47 HEALTH CHECKS FAILED +12 12 THE NO. 48-NO. 55 HEALTH CHECKS FAILED +13 13 THE NO. 56-NO. 63 HEALTH CHECKS FAILED +14 14 THE NO. 64-NO. 70 HEALTH CHECKS FAILED +15 15 QUADRATIC CORRECTION APPLIED TO THE RADIOMETRIC TRANSFER FUNCTION FOR NON-LINEARITY CORRECTION diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33080.table b/definitions/bufr/tables/0/wmo/36/codetables/33080.table new file mode 100644 index 000000000..a39dd47ea --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33080.table @@ -0,0 +1,13 @@ +7 7 DIVIDE-BY-ZERO CONDITION OR COMPUTATION LOOP FAILED TO CONVERGE IN THE K/KA AND V (KAV) BAND PRT +8 8 DIVIDE-BY-ZERO CONDITION OR COMPUTATION LOOP FAILED TO CONVERGE IN THE WG BAND PRT +9 9 DIVIDE-BY-ZERO CONDITION OR COMPUTATION LOOP FAILED TO CONVERGE IN THE K/KA, V, W, G BAND RECEIVER SHELF PRT K TEMPERATURE COMPUTATION +10 10 OUT OF RANGE CONDITION FOR THE K/KA AND V BAND PRT +11 11 OUT OF RANGE CONDITION FOR THE WG BAND PRT +12 12 KAV PRT TEMPERATURE INCONSISTENCY +13 13 WG PRT TEMPERATURE INCONSISTENCY +14 14 TIME SEQUENCE ERROR +15 15 DATA GAP - MISSING SCAN(S) PRECEDING THE CURRENT SCAN +16 16 KAV PRT SUFFICIENCY - INSUFFICIENT KAV PRT DATA ARE AVAILABLE +17 17 WG PRT SUFFICIENCY - INSUFFICIENT WG PRT DATA ARE AVAILABLE +18 18 SPACE VIEW ANTENNA POSITION ERROR +19 19 BLACKBODY ANTENNA POSITION ERROR diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33081.table b/definitions/bufr/tables/0/wmo/36/codetables/33081.table new file mode 100644 index 000000000..f8759e0ef --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33081.table @@ -0,0 +1,9 @@ +3 3 MOON IN SPACE VIEW +4 4 GAIN ERROR - THE LOWEST BLACKBODY COUNT IS SMALLER THAN OR EQUAL TO THE HIGHEST SPACE VIEW COUNT IN A SCAN +5 5 CALIBRATION WITH FEWER THAN PREFERRED SAMPLES +6 6 SPACE VIEW DATA SUFFICIENCY CHECK - INSUFFICIENT SPACE VIEW SAMPLES ARE AVAILABLE +7 7 BLACKBODY VIEW DATA SUFFICIENCY CHECK - INSUFFICIENT BLACKBODY VIEW SAMPLES ARE AVAILABLE +8 8 OUT OF RANGE CONDITION FOR THE SPACE VIEW +9 9 OUT OF RANGE CONDITION FOR THE BLACKBODY VIEW +10 10 SPACE VIEW INCONSISTENCY +11 11 BLACKBODY VIEW INCONSISTENCY diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33082.table b/definitions/bufr/tables/0/wmo/36/codetables/33082.table new file mode 100644 index 000000000..467157461 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33082.table @@ -0,0 +1,10 @@ +6 6 WITHIN SOUTH ATLANTIC ANOMALY +7 7 INVALID INPUT DATA (INDICATES THAT ANY OF THE SPACECRAFT EPHEMERIS OR ATTITUDE DATA ARE INVALID) +8 8 BAD POINTING (INDICATES THAT THE SENSOR LOS DOES NOT INTERSECT THE GEOID, IS NEAR THE LIMB, HAS INVALID SENSOR ANGLES OR OTHER SIMILAR CONDITION) +9 9 BAD TERRAIN (INDICATES THAT THE ALGORITHM COULD NOT OBTAIN A VALID TERRAIN VALUE) +10 10 INVALID SOLAR ANGLES +11 11 MISSING AT MOST A SMALL GAP OF ALTITUDE AND EPHEMERIS DATA +12 12 MISSING MORE THAN A SMALL GAP OF ALTITUDE AND EPHEMERIS DATA, BUT NO MORE THAN A GRANULE BOUNDARY +13 13 MISSING MORE THAN A GRANULE BOUNDARY OF ALTITUDE AND EPHEMERIS DATA +14 14 THE NUMBER OF ENCODER PULSE VALUES PER DELTA TIME IS NOT AS EXPECTED +15 15 SOLAR ECLIPSE DURING EARTH VIEW SCAN diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33083.table b/definitions/bufr/tables/0/wmo/36/codetables/33083.table new file mode 100644 index 000000000..6fe63f623 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33083.table @@ -0,0 +1,10 @@ +6 6 PIXEL IS AFFECTED BY RADIO-FREQUENCY INTERFERENCE +7 7 POOR CALIBRATION QUALITY DUE TO BAD SPACE VIEW OFFSETS, OBC * VIEW OFFSETS, ETC. OR USE OF A PREVIOUS CALIBRATION VIEW +8 8 SATURATED PIXEL +9 9 MISSING DATA -DATA REQUIRED FOR CALIBRATION PROCESSING ARE NOT AVAILABLE FOR PROCESSING +10 10 CALIBRATED PIXEL RADIANCE OUT OF RANGE +11 11 CALIBRATED PIXEL REFLECTANCE OR EBBT OUT OF RANGE +12 12 THE MOON HAS CORRUPTED THE SPACE VIEW +13 13 SCAN DATA IS NOT PRESENT (NO VALID DATA) +14 14 QUALITY FOR THIS SCAN-LINE IS REDUCED. THE VALUE IS DETERMINED BY THE COMBINED NUMBER OF STEPS REQUIRED TO FIND A REPLACEMENT FOR THERMISTOR OR CALIBRATION SOURCE DATA +15 15 BAD DETECTOR diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33084.table b/definitions/bufr/tables/0/wmo/36/codetables/33084.table new file mode 100644 index 000000000..accb209c5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33084.table @@ -0,0 +1,10 @@ +6 6 BULK SST OUTSIDE OF VALIDATION RANGE +7 7 SKIN SST OUTSIDE OF VALIDATION RANGE +8 8 SENSOR ZENITH ANGLE > 40 DEGREES (PIXEL IS NOT WITHIN 40 DEGREES OF NADIR AND THEREFORE IS NOT OF HIGH QUALITY) +9 9 DEGRADATION - HORIZONTAL CELL SIZE (HCS) > 1.3 KM (HCS > 1.3 KM, SWATH WIDTH > 1 700 KM, SENSOR ZENITH ANGLE > 50.3 DEGREES) +10 10 EXCLUSION: NO OCEAN IN PIXEL +11 11 DEGRADATION: AEROSOL OPTICAL THICKNESS (AOT) > 0.6 (AOT IN HORIZONTAL CELL > 0.6 ON THE SLANT PATH (AOT @550 NM)) +12 12 EXCLUSION: AOT > 1.0 (AOT IN HORIZONTAL CELL > 1.0 ON THE SLANT PATH (AOT @550 NM)) +13 13 SUN GLINT PRESENT IN PIXEL +14 14 ICE CONCENTRATION THRESHOLD EXCEEDED (SST NOT RETRIEVED DUE TO ICE CONCENTRATION EXCEEDING THRESHOLD IN SYSTEM SPEC) +15 15 THIN CIRRUS DETECTED IN PIXEL diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33085.table b/definitions/bufr/tables/0/wmo/36/codetables/33085.table new file mode 100644 index 000000000..0872a2bb7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33085.table @@ -0,0 +1,14 @@ +4 4 ANGSTROM EXPONENT IS OUTSIDE OF THE SYSTEM SPECIFICATION RANGE +5 5 EXCLUDED, ANGSTROM EXPONENT FOR AOT* AT 550 NM < 0.15 +6 6 BRIGHT SURFACE IN CELL (IF OVER LAND), OR SHALLOW OR TURBID WATER IN CELL (IF OVER OCEAN) +7 7 LOW SUN, EXCLUDED, SOLAR ZENITH ANGLE > 80 DEGREES +8 8 LOW SUN, DEGRADED, 65 DEGREES < SOLAR ZENITH ANGLE =< 80 DEGREES +9 9 FIRE DETECTED IN CELL +10 10 SNOW/ICE IN CELL +11 11 CLOUD SHADOW IN CELL +12 12 SUN GLINT IN CELL +13 13 BAD SDR** DATA PRESENT IN HORIZONTAL CELL (QUALITY OF AOT/APSP*** DEGRADED OR AOT/APSP NOT RETRIEVED DUE TO BAD SDR DATA IN HORIZONTAL CELL) +14 14 CIRRUS CONTAMINATION IN CELL +15 15 CLOUD ADJACENT TO CELL +16 16 CLOUD CONTAMINATION IN CELL +17 17 AOT IS OUTSIDE OF THE SYSTEM SPECIFICATION RANGE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33086.table b/definitions/bufr/tables/0/wmo/36/codetables/33086.table new file mode 100644 index 000000000..b7cda3212 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33086.table @@ -0,0 +1,5 @@ +0 0 NOT RETRIEVED +1 1 EXCLUDED +2 2 DEGRADED +3 3 HIGH QUALITY +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33087.table b/definitions/bufr/tables/0/wmo/36/codetables/33087.table new file mode 100644 index 000000000..f3000e258 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33087.table @@ -0,0 +1,10 @@ +0 0 LESS THAN OR EQUAL TO 10% +1 1 GREATER THAN 10% BUT LESS THAN OR EQUAL TO 20% +2 2 GREATER THAN 20% BUT LESS THAN OR EQUAL TO 30% +3 3 GREATER THAN 30% BUT LESS THAN OR EQUAL TO 40% +4 4 GREATER THAN 40% BUT LESS THAN OR EQUAL TO 50% +5 5 GREATER THAN 50% BUT LESS THAN OR EQUAL TO 60% +6 6 GREATER THAN 60% BUT LESS THAN OR EQUAL TO 70% +7 7 GREATER THAN 70% BUT LESS THAN OR EQUAL TO 80% +8 8 GREATER THAN 80% +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33088.table b/definitions/bufr/tables/0/wmo/36/codetables/33088.table new file mode 100644 index 000000000..1dfa368f6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33088.table @@ -0,0 +1,12 @@ +6 6 SURFACE REFLECTIVITY OUT OF RANGE +7 7 RESIDUAL TOO LARGE +8 8 AEROSOL INDEX LIMIT EXCEEDED +9 9 SOLAR ECLIPSE PRESENT (ALL OR PART OF THE IFOV* IS AFFECTED BY A SOLAR ECLIPSE, UMBRA OR PENUMBRA VIEWING) +10 10 SUN GLINT PRESENT WITHIN IFOV +11 11 SNOW OR ICE SURFACE IS WITHIN THE IFOV +12 12 SOLAR ZENITH ANGLE IN EXCLUDED (NIGHT) CONDITION (SOLAR ZENITH ANGLE >= 88 DEGREES) +13 13 SOLAR ZENITH ANGLE IN DEGRADED CONDITION (80 DEGREES =< SOLAR ZENITH ANGLE < 88 DEGREES) +14 14 SO2 INDEX > 6 DU (DEGRADED CONDITION) +15 15 RESIDUES ARE NOT CONSISTENT (INDICATES WHETHER THE RESIDUES FROM THE 22 WAVELENGTHS ARE CONSISTENT) +16 16 O3 TRIPLET SELECTION IS NOT CONSISTENT WITHIN RETRIEVAL (OZONE TRIPLET CONSISTENCY) +17 17 INPUT DATA QUALITY IS NOT GOOD diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33092.table b/definitions/bufr/tables/0/wmo/36/codetables/33092.table new file mode 100644 index 000000000..2a9557582 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33092.table @@ -0,0 +1,2 @@ +1 1 ALTIMETER OPERATING +2 2 MICROWAVE RADIOMETER (MWR) OPERATING diff --git a/definitions/bufr/tables/0/wmo/36/codetables/33093.table b/definitions/bufr/tables/0/wmo/36/codetables/33093.table new file mode 100644 index 000000000..d872dc664 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/33093.table @@ -0,0 +1,19 @@ +1 1 PATH DELAY QUALITY IS CONSIDERED POOR +2 2 GALILEO SATELLITES USED +3 3 GLONASS SATELLITES USED +4 4 GPS SATELLITES USED +5 5 BEIDOU SATELLITES USED +9 9 METEOROLOGICAL DATA APPLIED +10 10 ATMOSPHERIC LOADING CORRECTION APPLIED +11 11 OCEAN TIDE LOADING APPLIED +12 12 SECOND ORDER IONOSPHERE CORRECTIONS APPLIED +13 13 THIRD ORDER IONOSPHERE CORRECTIONS APPLIED +14 14 PPP SOLUTION +15 15 GRADIENTS APPLIED TO PATH DELAY +16 16 MULTIPATH CORRECTIONS APPLIED TO PATH DELAY +17 17 RESIDUAL APPLIED TO PATH DELAY +18 18 CLIMATE QUALITY DATA PROCESSING +19 19 RE-PROCESSING +20 20 POST-PROCESSING +21 21 NEAR-REAL TIME DATA PROCESSING +22 22 REAL TIME DATA PROCESSING diff --git a/definitions/bufr/tables/0/wmo/36/codetables/35000.table b/definitions/bufr/tables/0/wmo/36/codetables/35000.table new file mode 100644 index 000000000..8c57023e3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/35000.table @@ -0,0 +1 @@ +1023 1023 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/35001.table b/definitions/bufr/tables/0/wmo/36/codetables/35001.table new file mode 100644 index 000000000..bba0c812e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/35001.table @@ -0,0 +1,4 @@ +0 0 REAL TIME +1 1 NEAR-REAL TIME +2 2 NON-REAL TIME +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/35030.table b/definitions/bufr/tables/0/wmo/36/codetables/35030.table new file mode 100644 index 000000000..5b83f8b81 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/35030.table @@ -0,0 +1,10 @@ +0 0 NO DISCREPANCIES +1 1 NON-COMPLIANCE WITH STANDARD AND RECOMMENDED PRACTICES AND PROCEDURES INCLUDING THOSE OF MONITORING +2 2 CATALOGUES OF METEOROLOGICAL BULLETINS NOT UPDATED IN A TIMELY MANNER +3 3 INCORRECT ROUTING DIRECTORIES +4 4 LACK OF FLEXIBILITY IN THE ROUTING ARRANGEMENTS +5 5 DEFICIENCIES IN THE OPERATION OF GTS CENTRES AND CIRCUITS +6 6 LOSS OF DATA OR DELAYS IN RELAYING DATA ON THE GTS +7 7 ROUTING OF DATA DIFFERENT FROM THE ROUTING PROVIDED IN THE PLAN +8 8 VARIOUS MALPRACTICES +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/35031.table b/definitions/bufr/tables/0/wmo/36/codetables/35031.table new file mode 100644 index 000000000..bdd705ddd --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/35031.table @@ -0,0 +1,20 @@ +1 1 SUFFICIENT AND ALL OF ACCEPTABLE QUALITY +2 2 SUFFICIENT BUT PARTLY OF ACCEPTABLE QUALITY +3 3 INSUFFICIENT BUT ALL OF ACCEPTABLE QUALITY +4 4 INSUFFICIENT AND OF UNACCEPTABLE QUALITY +5 5 SOME MESSAGES NOT COMPLETE +6 6 SUSPECT OR WRONGLY CODED GROUPS COULD NOT BE INTERPRETED CONFIDENTLY +7 7 GROSS CODING ERRORS +8 8 TRANSMISSION SEQUENTIAL ORDER NOT OBSERVED +9 9 REPORT COMPLETELY GARBLED AND THUS DISCARDED +10 10 DEFICIENCIES IDENTIFIED AND RECTIFIED +11 11 DEFICIENCIES IDENTIFIED BUT NOT RECTIFIED +12 12 DEFICIENCIES NOT IDENTIFIED +13 13 MEASURING ERRORS +14 14 MUTUAL INCONSISTENCY +15 15 TEMPORAL INCONSISTENCY +16 16 FORECAST ERROR +17 17 BIAS +18 18 IMPROVE SYSTEM OF QUALITY CONTROL +19 19 EXPAND TRAINING PROGRAMMES +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/35032.table b/definitions/bufr/tables/0/wmo/36/codetables/35032.table new file mode 100644 index 000000000..7f53a05f9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/35032.table @@ -0,0 +1,10 @@ +1 1 DATA GROUPS MISSING DUE TO RADIO FADING +2 2 DATA GROUPS MISSING DUE TO OUTAGE OF CENTRE +3 3 DATA GROUPS MISSING DUE TO OUTAGE OF CIRCUIT +4 4 NON-IMPLEMENTATION OR MAINTENANCE OF REQUIRED RBSN DENSITY +5 5 SHORTAGE OF QUALIFIED STAFF TO MAN STATIONS +6 6 LACK OF CONSUMABLES +7 7 INSTRUMENT FAILURE +8 8 NON-ADHERENCE TO TELECOMMUNICATION PROCEDURES +9 9 SOME OBSERVING PROGRAMMES CEASED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/35033.table b/definitions/bufr/tables/0/wmo/36/codetables/35033.table new file mode 100644 index 000000000..86e9592ef --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/35033.table @@ -0,0 +1,12 @@ +1 1 NO DEFICIENCY +2 2 OBSERVATIONS NOT MADE REGULARLY +3 3 OBSERVATIONS NOT MADE AT RIGHT TIME +4 4 OBSERVATIONS MADE BUT NOT DISSEMINATED +5 5 OBSERVATIONS MADE AND SENT TO INCORRECT USERS +6 6 COLLECTION NOT RECEIVED +7 7 COLLECTION TRANSMITTED LATE +8 8 COLLECTION NOT TRANSMITTED +9 9 DIFFICULTIES IN HF PROPAGATION AND SELECTION OF SUITABLE FREQUENCY +10 10 DIFFICULTIES IN MAINTENANCE OF COMMUNICATION EQUIPMENT AT REMOTE STATIONS +11 11 NO ALTERNATIVE ARRANGEMENT FOR ROUTING METEOROLOGICAL OBSERVATION +123 123 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/35034.table b/definitions/bufr/tables/0/wmo/36/codetables/35034.table new file mode 100644 index 000000000..7297664cf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/35034.table @@ -0,0 +1,7 @@ +1 1 SLIGHT IMPROVEMENT +2 2 SIGNIFICANT IMPROVEMENT +3 3 MOST SIGNIFICANT IMPROVEMENT +4 4 STEADY +5 5 DECREASING +6 6 EFFORTS REQUIRED TO IMPROVE NIGHT-TIME OBSERVATIONS +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/35035.table b/definitions/bufr/tables/0/wmo/36/codetables/35035.table new file mode 100644 index 000000000..0fce6ddb7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/35035.table @@ -0,0 +1,20 @@ +0 0 RESERVED +1 1 BALLOON BURST +2 2 BALLOON FORCED DOWN BY ICING +3 3 LEAKING OR FLOATING BALLOON +4 4 WEAK OR FADING SIGNAL +5 5 BATTERY FAILURE +6 6 GROUND EQUIPMENT FAILURE +7 7 SIGNAL INTERFERENCE +8 8 RADIOSONDE FAILURE +9 9 EXCESSIVE MISSING DATA FRAMES +10 10 RESERVED +11 11 EXCESSIVE MISSING TEMPERATURE +12 12 EXCESSIVE MISSING PRESSURE +13 13 USER TERMINATED +14 14 SUDDEN LOSS OF SIGNAL +15 15 TRACKING LOST +16 16 INCREASING PRESSURE +17 17 INVALID AND/OR MISSED DATA TIME LIMITS EXCEEDED +30 30 OTHER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40005.table b/definitions/bufr/tables/0/wmo/36/codetables/40005.table new file mode 100644 index 000000000..045a4f1b1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40005.table @@ -0,0 +1,5 @@ +1 1 SOIL MOISTURE BETWEEN -20% AND 0% +2 2 SOIL MOISTURE BETWEEN 100% AND 120% +3 3 CORRECTION OF WET BACKSCATTER REFERENCE +4 4 CORRECTION OF DRY BACKSCATTER REFERENCE +5 5 CORRECTION OF VOLUME SCATTERING IN SAND diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40006.table b/definitions/bufr/tables/0/wmo/36/codetables/40006.table new file mode 100644 index 000000000..d53382eff --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40006.table @@ -0,0 +1,8 @@ +1 1 NOT SOIL +2 2 SENSITIVITY TO SOIL MOISTURE BELOW LIMIT +3 3 AZIMUTHAL NOISE ABOVE LIMIT +4 4 BACKSCATTER FORE-AFT BEAM OUT OF RANGE +5 5 SLOPE MID-FORE BEAM OUT OF RANGE +6 6 SLOPE MID-AFT BEAM OUT OF RANGE +7 7 SOIL MOISTURE BELOW -20% +8 8 SOIL MOISTURE ABOVE 120% diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40011.table b/definitions/bufr/tables/0/wmo/36/codetables/40011.table new file mode 100644 index 000000000..ddc7e8672 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40011.table @@ -0,0 +1,4 @@ +1 1 MEAN SEA-SURFACE (MSS) INTERPOLATION FLAG +2 2 OCEAN TIDE SOLUTION 1 INTERPOLATION FLAG (0 = 4 POINTS OVER OCEAN, 1 = LESS THAN 4 POINTS) +3 3 OCEAN TIDE SOLUTION 2 INTERPOLATION FLAG (0 = 4 POINTS OVER OCEAN, 1 = LESS THAN 4 POINTS) +4 4 METEOROLOGICAL DATA INTERPOLATION FLAG (0 = 4 POINTS OVER OCEAN, 1 = LESS THAN 4 POINTS) diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40012.table b/definitions/bufr/tables/0/wmo/36/codetables/40012.table new file mode 100644 index 000000000..d8ce14d86 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40012.table @@ -0,0 +1,3 @@ +1 1 18.7 GHZ BRIGHTNESS TEMPERATURE +2 2 23.8 GHZ BRIGHTNESS TEMPERATURE +3 3 34 GHZ BRIGHTNESS TEMPERATURE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40013.table b/definitions/bufr/tables/0/wmo/36/codetables/40013.table new file mode 100644 index 000000000..79b991a29 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40013.table @@ -0,0 +1,5 @@ +0 0 INTERPOLATION WITH NO GAP BETWEEN JMR* DATA +1 1 INTERPOLATION WITH GAPS BETWEEN JMR* DATA +2 2 EXTRAPOLATION OF JMR* DATA +3 3 FAILURE OF EXTRAPOLATION AND INTERPOLATION +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40020.table b/definitions/bufr/tables/0/wmo/36/codetables/40020.table new file mode 100644 index 000000000..fa1d1f5c5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40020.table @@ -0,0 +1,16 @@ +1 1 NZPD AND COMPLEX CALIBRATION ERROR +2 2 BAND 3 AFFECTED BY SPIKE +3 3 BAND 3 AFFECTED BY SATURATION +4 4 BAND 2 AFFECTED BY SPIKE +5 5 BAND 1 AFFECTED BY SPIKE +6 6 OVERFLOW/UNDER FLOW +7 7 ON-BOARD PROCESSING ERROR +8 8 SPECTRAL CALIBRATION ERROR +9 9 RADIOMETRIC CALIBRATION ERROR +10 10 MISSING AVHRR DATA +11 11 MISSING IIS DATA +12 12 MISSING SOUNDER DATA +13 13 GQISFLAGQUAL SUMMARY FLAG FOR ALL BANDS +14 14 ON-GROUND PROCESSING ERROR +15 15 INTER-CALIBRATION ERROR IASI/AVHRR +16 16 SPARE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40023.table b/definitions/bufr/tables/0/wmo/36/codetables/40023.table new file mode 100644 index 000000000..2e4cbfb69 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40023.table @@ -0,0 +1,4 @@ +1 1 BAND SEQUENCE (0 = 3KU_1C_3KU, 1 = 2KU_1C_2KU) +2 2 C BAND FREQUENCY (0 = 320 MHZ, 1 = 100 MHZ) +3 3 C BAND STATUS (0 = ON, 1 = OFF) +4 4 KU BAND STATUS (0 = ON, 1 = OFF) diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40024.table b/definitions/bufr/tables/0/wmo/36/codetables/40024.table new file mode 100644 index 000000000..c8421e5af --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40024.table @@ -0,0 +1,5 @@ +0 0 2 MAPS AVAILABLE (6 HOURS APART) +1 1 2 MAPS AVAILABLE (> 6 HOURS APART) +2 2 1 MAP AVAILABLE; DATA EXTRAPOLATED +3 3 NO MAPS USED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40025.table b/definitions/bufr/tables/0/wmo/36/codetables/40025.table new file mode 100644 index 000000000..741430292 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40025.table @@ -0,0 +1,4 @@ +0 0 GOOD +1 1 BAD +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40028.table b/definitions/bufr/tables/0/wmo/36/codetables/40028.table new file mode 100644 index 000000000..e094f29dc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40028.table @@ -0,0 +1,16 @@ +0 0 GOOD DATA +1 1 POSSIBLE SUN GLINT +2 2 POSSIBLE RADIO-FREQUENCY INTERFERENCE +3 3 DEGRADED GEOLOCATION DATA +4 4 DATA CORRECTED FOR WARM LOAD INTRUSION +5 5 SCAN BLANKING ON +6 6 DATA IS MISSING FROM FILE OR UNREADABLE +7 7 UNPHYSICAL BRIGHTNESS TEMPERATURE +8 8 ERROR IN GEOLOCATION DATA +9 9 DATA MISSING IN ONE CHANNEL +10 10 DATA MISSING IN MULTIPLE CHANNELS +11 11 LAT/LON VALUES ARE OUT OF RANGE +12 12 NON-NORMAL STATUS MODES +13 13 DISTANCE TO CORRESPONDING LOW FREQUENCY PIXEL > 7 KM +14 14 RESERVED +15 15 MISSING VALUE (NO QUALITY INFORMATION AVAILABLE) diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40036.table b/definitions/bufr/tables/0/wmo/36/codetables/40036.table new file mode 100644 index 000000000..9a5418e3a --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40036.table @@ -0,0 +1,3 @@ +0 0 CLEAR +1 1 CLOUD +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40043.table b/definitions/bufr/tables/0/wmo/36/codetables/40043.table new file mode 100644 index 000000000..859484624 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40043.table @@ -0,0 +1,4 @@ +0 0 THE PLATFORM IS NOT UNDERGOING A MANOEUVRE +1 1 THE PLATFORM IS UNDERGOING A MANOEUVRE, NOMINAL PROCESSING +2 2 THE PLATFORM IS UNDERGOING A MANOEUVRE, NO PROCESSING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40045.table b/definitions/bufr/tables/0/wmo/36/codetables/40045.table new file mode 100644 index 000000000..08b600150 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40045.table @@ -0,0 +1,4 @@ +1 1 CLOUD PRODUCTS RETRIEVED WITH THE CHI-SQUARED METHOD +2 2 CLOUD PRODUCTS RETRIEVED WITH THE CO2-SLICING +3 3 HEIGHT ASSIGNMENT PERFORMED WITH STATISTICAL FIRST GUESS RETRIEVAL +4 4 HEIGHT ASSIGNMENT PERFORMED WITH NWP FORECASTS diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40046.table b/definitions/bufr/tables/0/wmo/36/codetables/40046.table new file mode 100644 index 000000000..31077db10 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40046.table @@ -0,0 +1,5 @@ +0 0 THE IASI IFOV IS CLEAR +1 1 SMALL CLOUD CONTAMINATION POSSIBLE +2 2 THE IASI IFOV IS PARTIALLY COVERED BY CLOUDS +3 3 HIGH OR FULL CLOUD COVERAGE +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40047.table b/definitions/bufr/tables/0/wmo/36/codetables/40047.table new file mode 100644 index 000000000..f7f29c7b8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40047.table @@ -0,0 +1,4 @@ +0 0 THE MEASUREMENTS AND SIDE INFORMATION ARE AVAILABLE AND OF GOOD QUALITY FOR L2 PROCESSING +1 1 THE L1C PRODUCTS ARE OF DEGRADED QUALITY ACCORDING TO L1C FLAGS, NO L2 PROCESSING +2 2 QUALITY CONTROL INDICATES THAT THE L1C DATA ARE OF DEGRADED QUALITY (NOT INDICATED BY THE IASI L1C FLAGS), NO L2 PROCESSING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40048.table b/definitions/bufr/tables/0/wmo/36/codetables/40048.table new file mode 100644 index 000000000..ee5d4fe0f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40048.table @@ -0,0 +1,4 @@ +0 0 THE EXPECTED AMSU MEASUREMENTS ARE AVAILABLE, OF GOOD QUALITY AND COLLOCATED WITH IASI FOR PROCESSING +1 1 AMSU-A DATA ARE AVAILABLE BUT OF DEGRADED QUALITY (ACCORDING TO AMSU L1 FLAGS OR QC TESTS) AND NOT USED FOR PROCESSING +2 2 NO COINCIDENT (TIME AND SPACE) AMSU MEASUREMENTS AVAILABLE FOR PROCESSING +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40049.table b/definitions/bufr/tables/0/wmo/36/codetables/40049.table new file mode 100644 index 000000000..19d1fe9d8 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40049.table @@ -0,0 +1,12 @@ +4 4 IASI CLOUD OPTICAL THICKNESS INDICATES A CLOUD +5 5 IASI CLOUD OPTICAL THICKNESS COMPUTED +6 6 AVHRR HETEROGENEITY TEST INDICATES A CLOUD +7 7 AVHRR HETEROGENEITY TEST EXECUTED +8 8 IASI-AVHRR ANN CLOUD TEST INDICATES A CLOUD +9 9 IASI-AVHRR ANN CLOUD TEST EXECUTED +10 10 AVHRR INTEGRATED CLOUD FRACTION INDICATES A CLOUD +11 11 AVHRR INTEGRATED CLOUD FRACTION ASSESSED +12 12 AMSU CLOUD TEST INDICATES A CLOUD +13 13 AMSU CLOUD TEST EXECUTED +14 14 IASI WINDOW CLOUD TEST INDICATES A CLOUD +15 15 IASI WINDOW CLOUD TEST EXECUTED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40050.table b/definitions/bufr/tables/0/wmo/36/codetables/40050.table new file mode 100644 index 000000000..503ab1443 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40050.table @@ -0,0 +1,3 @@ +5 5 MHS INCLUDED +6 6 AMSU INCLUDED +7 7 IASI INCLUDED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40051.table b/definitions/bufr/tables/0/wmo/36/codetables/40051.table new file mode 100644 index 000000000..60542bc0f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40051.table @@ -0,0 +1,8 @@ +0 0 OPTIMAL ESTIMATION METHODS (OEM) NOT ATTEMPTED +1 1 OEM ABORTED BECAUSE FIRST GUESS RESIDUALS TOO HIGH +2 2 THE MINIMIZATION DID NOT CONVERGE, SOUNDING REJECTED +3 3 THE MINIMIZATION DID NOT CONVERGE, SOUNDING ACCEPTED +4 4 THE MINIMIZATION CONVERGED BUT SOUNDING REJECTED +5 5 THE MINIMIZATION CONVERGED, SOUNDING ACCEPTED +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40052.table b/definitions/bufr/tables/0/wmo/36/codetables/40052.table new file mode 100644 index 000000000..1f48809c0 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40052.table @@ -0,0 +1,4 @@ +4 4 SUPERSATURATION CONDITIONS IN THE OEM RETRIEVAL +5 5 SUPERADIABATIC CONDITIONS IN THE OEM RETRIEVAL +6 6 SUPERSATURATION CONDITIONS IN THE FIRST GUESS +7 7 SUPERADIABATIC CONDITIONS IN THE FIRST GUESS diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40054.table b/definitions/bufr/tables/0/wmo/36/codetables/40054.table new file mode 100644 index 000000000..a034bc322 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40054.table @@ -0,0 +1,12 @@ +1 1 AN ERROR HAS BEEN DETECTED +2 2 MESSAGE FROM L1 +3 3 MESSAGE FROM L2 +4 4 MESSAGE FROM ANCILLARY DATA +5 5 MESSAGE FROM FITTING PROCEDURE +6 6 FILE OPENING +7 7 FILE READING +8 8 QUALITY FLAG +9 9 LEVEL 2 FROM LINEAR REGRESSION(F_QUAL), REPORT A PIXEL WHERE L2 ARE NOT FULLY TRUSTED +10 10 EMPTY FIELD OR DATA +11 11 MISSING SURFACE PRESSURE VALUE +12 12 RADIANCE FILTERING diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40055.table b/definitions/bufr/tables/0/wmo/36/codetables/40055.table new file mode 100644 index 000000000..b1ab38dc6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40055.table @@ -0,0 +1,20 @@ +1 1 RADIANCE FILTERING +2 2 POLAR REGIONS +3 3 LOCATION IN THE NIGHT +4 4 NEGATIVE ALTITUDE SURFACE BELOW MEAN SEA LEVEL +5 5 CLOUD COVERED SCENE +6 6 SCENE ABOVE THE SEA +7 7 SCENE ABOVE DESERT +8 8 SKIN TEMPERATURE +9 9 SKIN TEMPERATURE DIFFERENTIAL +10 10 SPECTRAL LINE CONTRAST TOO WEAK +11 11 MAXIMUM NUMBER OF ITERATIONS EXCEEDED +12 12 NEGATIVE PARTIAL COLUMNS +13 13 MATRIX ILL CONDITIONED +14 14 FIT DIVERGED +15 15 ERROR IN GNU SCIENTIFIC LIBRARY (GSL) USAGE +16 16 RESIDUALS “BIASED†+17 17 RESIDUALS “SLOPED†+18 18 RESIDUALS ROOT MEAN SQUARE (RMS) ERROR IS LARGE +19 19 WEIRD AVERAGING KERNELS +20 20 ICE PRESENCE DETECTED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40056.table b/definitions/bufr/tables/0/wmo/36/codetables/40056.table new file mode 100644 index 000000000..f4a31d340 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40056.table @@ -0,0 +1,4 @@ +0 0 USE NOT RECOMMENDED +1 1 USE WITH CAUTION +2 2 BEST QUALITY +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40057.table b/definitions/bufr/tables/0/wmo/36/codetables/40057.table new file mode 100644 index 000000000..c8a50e778 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40057.table @@ -0,0 +1,30 @@ +1 1 AN ERROR HAS BEEN DETECTED +2 2 MESSAGE FROM L1 +3 3 MESSAGE FROM L2 +4 4 MESSAGE FROM ANCILLARY DATA +5 5 MESSAGE FROM FITTING PROCEDURE +6 6 RESERVED +7 7 BAD L1 OR L2 FLAG RAISED +8 8 LEVEL 2 NOT FULLY TRUSTED +9 9 MISSING TEMPERATURE OR HUMIDITY LEVELS IN THE VERTICAL PROFILE +10 10 MISSING SURFACE PRESSURE VALUE +11 11 RADIANCE FILTERING +12 12 POLAR REGIONS +13 13 LOCATION IN THE NIGHT +14 14 NEGATIVE ALTITUDE +15 15 CLOUD COVERED SCENE +16 16 SCENE ABOVE THE SEA +17 17 SCENE ABOVE DESERT +18 18 MISSING SKIN TEMPERATURE +19 19 RETRIEVED SKIN TEMPERATURE TOO DIFFERENT FROM MODEL +20 20 SPECTRAL LINE CONTRAST TOO WEAK +21 21 MAXIMUM NUMBER OF ITERATIONS EXCEEDS +22 22 NEGATIVE PARTIAL COLUMNS +23 23 MATRIX ILL CONDITIONED +24 24 FIT DIVERGED +25 25 ERROR IN GSL USAGE +26 26 RESIDUALS BIASED +27 27 RESIDUALS SLOPED +28 28 RESIDUALS RMS ERROR IS LARGE +29 29 WEIRD AVERAGING KERNELS +30 30 ICE PRESENCE DETECTED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40068.table b/definitions/bufr/tables/0/wmo/36/codetables/40068.table new file mode 100644 index 000000000..0b1484e0b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40068.table @@ -0,0 +1,4 @@ +0 0 VALUES CALCULATED WITH IASI L2 +1 1 PRESSURE AND TEMPERATURE PROFILES MISSING IN IASI L2 DATA; MODEL/FORECAST DATA USED INSTEAD +2 2 BEST QUALITY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/40074.table b/definitions/bufr/tables/0/wmo/36/codetables/40074.table new file mode 100644 index 000000000..911a95245 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/40074.table @@ -0,0 +1,10 @@ +1 1 INCOMPATIBILITY OF A SCAN ANGLE FOR ELECTROENCEPHALOGRAM +2 2 CALIBRATION FAILURE (LIMIT OF BLACK BODY TEMPERATURE REACHED, NOT ENOUGH SOURCES FOR INTERFEROMETRY, ETC.) +3 3 GEOLOCATION EXECUTED TAKING INTO ACCOUNT THE ORIENTATION OF THE SPACECRAFT AND USING THE STAR CATALOGUE +4 4 HIGH LEVEL OF CRYOGENIC SEDIMENT REACHED, REQUIRING OUTGASSING OF THE RADIATION COOLER. SET WHEN NESR LEVEL OF THE ICE COVER THRESHOLD CROSSED +5 5 INTERFEROMETRY PACKAGE FLAG +6 6 GENERAL ACCURACY FLAG +7 7 NOISE PRESENT DURING THE INTERFEROMETRY +8 8 OUTGASSING OF THE RADIATION COOLER +9 9 FLAG PRECEDING THE FIRST 24 HOURS/DAY MARK (SET TO ON AS A RULE) +10 10 TELEMETRY PACKAGE FLAG diff --git a/definitions/bufr/tables/0/wmo/36/codetables/4059.table b/definitions/bufr/tables/0/wmo/36/codetables/4059.table new file mode 100644 index 000000000..91fc6f4f9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/4059.table @@ -0,0 +1,5 @@ +1 1 0000 UTC +2 2 0600 UTC +3 3 1200 UTC +4 4 1800 UTC +5 5 OTHER HOURS diff --git a/definitions/bufr/tables/0/wmo/36/codetables/4080.table b/definitions/bufr/tables/0/wmo/36/codetables/4080.table new file mode 100644 index 000000000..84caf2108 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/4080.table @@ -0,0 +1,6 @@ +0 0 SPOT VALUES +1 1 LESS THAN 15 MINUTES +2 2 FROM 15 TO 45 MINUTES +3 3 MORE THAN 45 MINUTES +9 9 DATA NOT AVAILABLE +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/42004.table b/definitions/bufr/tables/0/wmo/36/codetables/42004.table new file mode 100644 index 000000000..15a91da16 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/42004.table @@ -0,0 +1,3 @@ +0 0 WAVE DIRECTION RESOLVED +1 1 180-DEGREE AMBIGUITY NOT RESOLVED +15 15 MISSING diff --git a/definitions/bufr/tables/0/wmo/36/codetables/5069.table b/definitions/bufr/tables/0/wmo/36/codetables/5069.table new file mode 100644 index 000000000..e26774762 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/5069.table @@ -0,0 +1,4 @@ +0 0 MIE +1 1 RAYLEIGH +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8001.table b/definitions/bufr/tables/0/wmo/36/codetables/8001.table new file mode 100644 index 000000000..6210da3b3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8001.table @@ -0,0 +1,6 @@ +1 1 SURFACE +2 2 STANDARD LEVEL +3 3 TROPOPAUSE LEVEL +4 4 MAXIMUM WIND LEVEL +5 5 SIGNIFICANT LEVEL, TEMPERATURE AND/OR RELATIVE HUMIDITY +6 6 SIGNIFICANT LEVEL, WIND diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8002.table b/definitions/bufr/tables/0/wmo/36/codetables/8002.table new file mode 100644 index 000000000..6ab4fd72d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8002.table @@ -0,0 +1,19 @@ +0 0 OBSERVING RULES FOR BASE OF LOWEST CLOUD AND CLOUD TYPES OF FM 12 SYNOP AND FM 13 SHIP APPLY +1 1 FIRST NON-CUMULONIMBUS SIGNIFICANT LAYER +2 2 SECOND NON-CUMULONIMBUS SIGNIFICANT LAYER +3 3 THIRD NON-CUMULONIMBUS SIGNIFICANT LAYER +4 4 CUMULONIMBUS LAYER +5 5 CEILING +6 6 CLOUDS NOT DETECTED BELOW THE FOLLOWING HEIGHT(S) +7 7 LOW CLOUD +8 8 MIDDLE CLOUD +9 9 HIGH CLOUD +10 10 CLOUD LAYER WITH BASE BELOW AND TOP ABOVE THE STATION +11 11 CLOUD LAYER WITH BASE AND TOP BELOW THE STATION LEVEL +20 20 NO CLOUDS DETECTED BY THE CLOUD DETECTION SYSTEM +21 21 FIRST INSTRUMENT DETECTED CLOUD LAYER +22 22 SECOND INSTRUMENT DETECTED CLOUD LAYER +23 23 THIRD INSTRUMENT DETECTED CLOUD LAYER +24 24 FOURTH INSTRUMENT DETECTED CLOUD LAYER +62 62 VALUE NOT APPLICABLE +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8003.table b/definitions/bufr/tables/0/wmo/36/codetables/8003.table new file mode 100644 index 000000000..373135140 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8003.table @@ -0,0 +1,12 @@ +0 0 SURFACE +1 1 BASE OF SATELLITE SOUNDING +2 2 CLOUD TOP +3 3 TROPOPAUSE +4 4 PRECIPITABLE WATER +5 5 SOUNDING RADIANCES +6 6 MEAN TEMPERATURES +7 7 OZONE +8 8 LOW CLOUD +9 9 MED CLOUD +10 10 HIGH CLOUD +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8004.table b/definitions/bufr/tables/0/wmo/36/codetables/8004.table new file mode 100644 index 000000000..2a8925eeb --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8004.table @@ -0,0 +1,6 @@ +2 2 UNSTEADY (UNS) +3 3 LEVEL FLIGHT, ROUTINE OBSERVATION (LVR) +4 4 LEVEL FLIGHT, HIGHEST WIND ENCOUNTERED (LVW) +5 5 ASCENDING (ASC) +6 6 DESCENDING (DES) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8005.table b/definitions/bufr/tables/0/wmo/36/codetables/8005.table new file mode 100644 index 000000000..587ea9924 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8005.table @@ -0,0 +1,7 @@ +0 0 RESERVED +1 1 STORM CENTRE +2 2 OUTER LIMIT OR EDGE OF STORM +3 3 LOCATION OF MAXIMUM WIND +4 4 LOCATION OF THE STORM IN THE PERTURBED ANALYSIS +5 5 LOCATION OF THE STORM IN THE ANALYSIS +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8006.table b/definitions/bufr/tables/0/wmo/36/codetables/8006.table new file mode 100644 index 000000000..9f56c628d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8006.table @@ -0,0 +1,8 @@ +1 1 SURFACE +2 2 STANDARD LEVEL +3 3 TROPOPAUSE LEVEL +4 4 PROMINENT MAXIMUM LEVEL +5 5 PROMINENT MINIMUM LEVEL +6 6 MINIMUM PRESSURE LEVEL +7 7 RESERVED +8 8 LEVEL OF UNDETERMINED SIGNIFICANCE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8007.table b/definitions/bufr/tables/0/wmo/36/codetables/8007.table new file mode 100644 index 000000000..3e4d2cc3c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8007.table @@ -0,0 +1,5 @@ +0 0 POINT +1 1 LINE +2 2 AREA +3 3 VOLUME +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8008.table b/definitions/bufr/tables/0/wmo/36/codetables/8008.table new file mode 100644 index 000000000..2714b5aa2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8008.table @@ -0,0 +1,8 @@ +1 1 SURFACE +2 2 STANDARD LEVEL +3 3 TROPOPAUSE LEVEL +4 4 LEVEL OF BETA RADIATION MAXIMUM +5 5 LEVEL OF GAMMA RADIATION MAXIMUM +6 6 MINIMUM PRESSURE LEVEL +7 7 RESERVED +8 8 LEVEL OF UNDETERMINED SIGNIFICANCE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8009.table b/definitions/bufr/tables/0/wmo/36/codetables/8009.table new file mode 100644 index 000000000..b03398230 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8009.table @@ -0,0 +1,16 @@ +0 0 LEVEL FLIGHT, ROUTINE OBSERVATION, UNSTEADY +1 1 LEVEL FLIGHT, HIGHEST WIND ENCOUNTERED, UNSTEADY +2 2 UNSTEADY (UNS) +3 3 LEVEL FLIGHT, ROUTINE OBSERVATION (LVR) +4 4 LEVEL FLIGHT, HIGHEST WIND ENCOUNTERED (LVW) +5 5 ASCENDING (ASC) +6 6 DESCENDING (DES) +7 7 ASCENDING, OBSERVATION INTERVALS SELECTED BY TIME INCREMENTS +8 8 ASCENDING, OBSERVATION INTERVALS SELECTED BY TIME INCREMENTS, UNSTEADY +9 9 ASCENDING, OBSERVATION INTERVALS SELECTED BY PRESSURE INCREMENTS +10 10 ASCENDING, OBSERVATION INTERVALS SELECTED BY PRESSURE INCREMENTS, UNSTEADY +11 11 DESCENDING, OBSERVATION INTERVALS SELECTED BY TIME INCREMENTS +12 12 DESCENDING, OBSERVATION INTERVALS SELECTED BY TIME INCREMENTS, UNSTEADY +13 13 DESCENDING, OBSERVATION INTERVALS SELECTED BY PRESSURE INCREMENTS +14 14 DESCENDING, OBSERVATION INTERVALS SELECTED BY PRESSURE INCREMENTS, UNSTEADY +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8010.table b/definitions/bufr/tables/0/wmo/36/codetables/8010.table new file mode 100644 index 000000000..3c5fe71f3 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8010.table @@ -0,0 +1,14 @@ +0 0 RESERVED +1 1 BARE SOIL +2 2 BARE ROCK +3 3 LAND GRASS COVER +4 4 WATER (LAKE, SEA) +5 5 FLOOD WATER UNDERNEATH +6 6 SNOW +7 7 ICE +8 8 RUNWAY OR ROAD +9 9 SHIP OR PLATFORM DECK IN STEEL +10 10 SHIP OR PLATFORM DECK IN WOOD +11 11 SHIP OR PLATFORM DECK PARTLY COVERED WITH RUBBER MAT +12 12 BUILDING ROOF +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8011.table b/definitions/bufr/tables/0/wmo/36/codetables/8011.table new file mode 100644 index 000000000..e7a822114 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8011.table @@ -0,0 +1,27 @@ +0 0 QUASI-STATIONARY FRONT AT THE SURFACE +1 1 QUASI-STATIONARY FRONT ABOVE THE SURFACE +2 2 WARM FRONT AT THE SURFACE +3 3 WARM FRONT ABOVE THE SURFACE +4 4 COLD FRONT AT THE SURFACE +5 5 COLD FRONT ABOVE THE SURFACE +6 6 OCCLUSION +7 7 INSTABILITY LINE +8 8 INTERTROPICAL FRONT +9 9 CONVERGENCE LINE +10 10 JET STREAM +11 11 CLOUD CLEAR +12 12 CLOUD +13 13 TURBULENCE +14 14 STORM +15 15 AIRFRAME ICING +16 16 PHENOMENON +17 17 VOLCANO +18 18 ATMOSPHERICS +19 19 RESERVED +20 20 SPECIAL CLOUDS +21 21 THUNDERSTORM +22 22 TROPICAL CYCLONE +23 23 MOUNTAIN WAVE +24 24 DUSTSTORM +25 25 SANDSTORM +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8012.table b/definitions/bufr/tables/0/wmo/36/codetables/8012.table new file mode 100644 index 000000000..769bc0bb7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8012.table @@ -0,0 +1,4 @@ +0 0 LAND +1 1 SEA +2 2 COAST +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8013.table b/definitions/bufr/tables/0/wmo/36/codetables/8013.table new file mode 100644 index 000000000..e18d2959b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8013.table @@ -0,0 +1,4 @@ +0 0 NIGHT +1 1 DAY +2 2 TWILIGHT +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8014.table b/definitions/bufr/tables/0/wmo/36/codetables/8014.table new file mode 100644 index 000000000..e6f2e46b6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8014.table @@ -0,0 +1,10 @@ +0 0 10-MINUTE MEAN VALUE - NORMAL VALUE +1 1 10-MINUTE MEAN VALUE - ABOVE THE UPPER LIMIT FOR ASSESSMENTS OF RVR (P) +2 2 10-MINUTE MEAN VALUE - BELOW THE LOWER LIMIT FOR ASSESSMENTS OF RVR (M) +3 3 ONE-MINUTE MINIMUM VALUE - NORMAL VALUE +4 4 ONE-MINUTE MINIMUM VALUE - ABOVE THE UPPER LIMIT FOR ASSESSMENTS OF RVR (P) +5 5 ONE-MINUTE MINIMUM VALUE - BELOW THE LOWER LIMIT FOR ASSESSMENTS OF RVR (M) +6 6 ONE-MINUTE MAXIMUM VALUE - NORMAL VALUE +7 7 ONE-MINUTE MAXIMUM VALUE - ABOVE THE UPPER LIMIT FOR ASSESSMENTS OF RVR (P) +8 8 ONE-MINUTE MAXIMUM VALUE - BELOW THE LOWER LIMIT FOR ASSESSMENTS OF RVR (M) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8015.table b/definitions/bufr/tables/0/wmo/36/codetables/8015.table new file mode 100644 index 000000000..6830b9591 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8015.table @@ -0,0 +1,4 @@ +0 0 SINGLE SENSOR +1 1 PRIMARY SENSOR +2 2 SECONDARY SENSOR (BACKUP) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8016.table b/definitions/bufr/tables/0/wmo/36/codetables/8016.table new file mode 100644 index 000000000..6b8a1fa66 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8016.table @@ -0,0 +1,5 @@ +0 0 NOSIG +1 1 BECMG +2 2 TEMPO +3 3 FM +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8017.table b/definitions/bufr/tables/0/wmo/36/codetables/8017.table new file mode 100644 index 000000000..b3156f87e --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8017.table @@ -0,0 +1,4 @@ +0 0 FM +1 1 TL +2 2 AT +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8018.table b/definitions/bufr/tables/0/wmo/36/codetables/8018.table new file mode 100644 index 000000000..f91e554ea --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8018.table @@ -0,0 +1,4 @@ +1 1 LAND IS PRESENT +2 2 SURFACE ICE MAP INDICATES ICE IS PRESENT +11 11 ICE MAP DATA NOT AVAILABLE +12 12 ATTENUATION MAP DATA NOT AVAILABLE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8019.table b/definitions/bufr/tables/0/wmo/36/codetables/8019.table new file mode 100644 index 000000000..4ed413301 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8019.table @@ -0,0 +1,8 @@ +0 0 RESERVED +1 1 ATS (AIR TRAFFIC SERVICE) UNIT SERVING FIR (FLIGHT INFORMATION REGION) +2 2 FIR (FLIGHT INFORMATION REGION) +3 3 UIR (UPPER FLIGHT INFORMATION REGION) +4 4 CTA (CONTROL AREA) +5 5 VAAC (VOLCANIC ASH ADVISORY CENTRE) +6 6 MWO (METEOROLOGICAL WATCH OFFICE) ISSUING SIGMET +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8021.table b/definitions/bufr/tables/0/wmo/36/codetables/8021.table new file mode 100644 index 000000000..20fd7936f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8021.table @@ -0,0 +1,32 @@ +0 0 RESERVED +1 1 TIME SERIES +2 2 TIME AVERAGED (SEE NOTE 1) +3 3 ACCUMULATED +4 4 FORECAST +5 5 FORECAST TIME SERIES +6 6 FORECAST TIME AVERAGED +7 7 FORECAST ACCUMULATED +8 8 ENSEMBLE MEAN (SEE NOTE 2) +9 9 ENSEMBLE MEAN TIME SERIES +10 10 ENSEMBLE MEAN TIME AVERAGED +11 11 ENSEMBLE MEAN ACCUMULATED +12 12 ENSEMBLE MEAN FORECAST +13 13 ENSEMBLE MEAN FORECAST TIME SERIES +14 14 ENSEMBLE MEAN FORECAST TIME AVERAGED +15 15 ENSEMBLE MEAN FORECAST ACCUMULATED +16 16 ANALYSIS +17 17 START OF PHENOMENON +18 18 RADIOSONDE LAUNCH TIME +19 19 START OF ORBIT +20 20 END OF ORBIT +21 21 TIME OF ASCENDING NODE +22 22 TIME OF OCCURRENCE OF WIND SHIFT +23 23 MONITORING PERIOD +24 24 AGREED TIME LIMIT FOR REPORT RECEPTION +25 25 NOMINAL REPORTING TIME +26 26 TIME OF LAST KNOWN POSITION +27 27 FIRST GUESS +28 28 START OF SCAN +29 29 END OF SCAN OR TIME OF ENDING +30 30 TIME OF OCCURRENCE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8023.table b/definitions/bufr/tables/0/wmo/36/codetables/8023.table new file mode 100644 index 000000000..2125e23cf --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8023.table @@ -0,0 +1,14 @@ +2 2 MAXIMUM VALUE +3 3 MINIMUM VALUE +4 4 MEAN VALUE +5 5 MEDIAN VALUE +6 6 MODAL VALUE +7 7 MEAN ABSOLUTE ERROR +8 8 RESERVED +9 9 BEST ESTIMATE OF STANDARD DEVIATION (N-1) +10 10 STANDARD DEVIATION (N) +11 11 HARMONIC MEAN +12 12 ROOT-MEAN-SQUARE VECTOR ERROR +13 13 ROOT-MEAN-SQUARE +32 32 VECTOR MEAN +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8024.table b/definitions/bufr/tables/0/wmo/36/codetables/8024.table new file mode 100644 index 000000000..377858bb1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8024.table @@ -0,0 +1,12 @@ +2 2 OBSERVED MINUS MAXIMUM +3 3 OBSERVED MINUS MINIMUM +4 4 OBSERVED MINUS MEAN +5 5 OBSERVED MINUS MEDIAN +6 6 OBSERVED MINUS MODE +11 11 OBSERVED MINUS CLIMATOLOGY (ANOMALY) +12 12 OBSERVED MINUS ANALYSED VALUE +13 13 OBSERVED MINUS INITIALIZED ANALYSED VALUE +14 14 OBSERVED MINUS FORECAST VALUE +21 21 OBSERVED MINUS INTERPOLATED VALUE +22 22 OBSERVED MINUS HYDROSTATICALLY CALCULATED VALUE +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8025.table b/definitions/bufr/tables/0/wmo/36/codetables/8025.table new file mode 100644 index 000000000..1d88fa54f --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8025.table @@ -0,0 +1,5 @@ +0 0 UNIVERSAL TIME COORDINATED (UTC) MINUS LOCAL STANDARD TIME (LST) +1 1 LOCAL STANDARD TIME +2 2 UNIVERSAL TIME COORDINATED (UTC) MINUS SATELLITE CLOCK +5 5 TIME DIFFERENCE FROM EDGE OF PROCESSING SEGMENT +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8026.table b/definitions/bufr/tables/0/wmo/36/codetables/8026.table new file mode 100644 index 000000000..9bcef7864 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8026.table @@ -0,0 +1,5 @@ +0 0 AVERAGING KERNEL MATRIX +1 1 CORRELATION MATRIX (C) +2 2 LOWER TRIANGULAR CORRELATION MATRIX SQUARE ROOT (L FROM C=LLT) +3 3 INVERSE OF LOWER TRIANGULAR CORRELATION MATRIX SQUARE ROOT (L-1) +63 63 MISSING OR UNDEFINED SIGNIFICANCE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8029.table b/definitions/bufr/tables/0/wmo/36/codetables/8029.table new file mode 100644 index 000000000..d0eae5a57 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8029.table @@ -0,0 +1,16 @@ +0 0 OPEN OCEAN OR SEMI-ENCLOSED SEA +1 1 ENCLOSED SEA OR LAKE +2 2 CONTINENTAL ICE +3 3 LAND +4 4 LOW INLAND (BELOW SEA LEVEL) +5 5 MIX OF LAND AND WATER +6 6 MIX OF LAND AND LOW INLAND +11 11 RIVER +12 12 LAKE +13 13 SEA +14 14 GLACIER +15 15 URBAN LAND +16 16 RURAL LAND +17 17 SUBURBAN LAND +18 18 SEA ICE +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8032.table b/definitions/bufr/tables/0/wmo/36/codetables/8032.table new file mode 100644 index 000000000..712400dd1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8032.table @@ -0,0 +1,7 @@ +0 0 ROUTINE OPERATION +1 1 EVENT TRIGGERED BY STORM SURGE +2 2 EVENT TRIGGERED BY TSUNAMI +3 3 EVENT TRIGGERED MANUALLY +4 4 INSTALLATION TESTING +5 5 MAINTENANCE TESTING +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8033.table b/definitions/bufr/tables/0/wmo/36/codetables/8033.table new file mode 100644 index 000000000..1c695372b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8033.table @@ -0,0 +1,6 @@ +0 0 RESERVED +1 1 PERCENTAGE CONFIDENCE CALCULATED USING CLOUD FRACTION +2 2 PERCENTAGE CONFIDENCE CALCULATED USING STANDARD DEVIATION OF TEMPERATURE +3 3 PERCENTAGE CONFIDENCE CALCULATED USING PROBABILITY OF CLOUD CONTAMINATION +4 4 PERCENTAGE CONFIDENCE CALCULATED USING NORMALITY OF DISTRIBUTION +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8034.table b/definitions/bufr/tables/0/wmo/36/codetables/8034.table new file mode 100644 index 000000000..879f27400 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8034.table @@ -0,0 +1,10 @@ +0 0 SECONDARY SAMPLING: AVERAGED +1 1 SECONDARY SAMPLING: DISCRETE +2 2 SECONDARY SAMPLING: MIXED +3 3 NEAR-SURFACE SAMPLING: AVERAGED, PUMPED +4 4 NEAR-SURFACE SAMPLING: AVERAGED, UNPUMPED +5 5 NEAR-SURFACE SAMPLING: DISCRETE, PUMPED +6 6 NEAR-SURFACE SAMPLING: DISCRETE, UNPUMPED +7 7 NEAR-SURFACE SAMPLING: MIXED, PUMPED +8 8 NEAR-SURFACE SAMPLING: MIXED, UNPUMPED +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8035.table b/definitions/bufr/tables/0/wmo/36/codetables/8035.table new file mode 100644 index 000000000..3d641fd15 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8035.table @@ -0,0 +1,8 @@ +0 0 GLOBAL +1 1 REGIONAL +2 2 NATIONAL +3 3 SPECIAL +4 4 BILATERAL +5 5 RESERVED +6 6 RESERVED +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8036.table b/definitions/bufr/tables/0/wmo/36/codetables/8036.table new file mode 100644 index 000000000..6436989e6 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8036.table @@ -0,0 +1,8 @@ +0 0 WMO SECRETARIAT +1 1 WMO +2 2 RSMC +3 3 NMC +4 4 RTH +5 5 OBSERVING SITE +6 6 OTHER +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8037.table b/definitions/bufr/tables/0/wmo/36/codetables/8037.table new file mode 100644 index 000000000..38cbe9a53 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8037.table @@ -0,0 +1,4 @@ +0 0 MANUFACTURER’S BASELINE CHECK UNIT +1 1 WEATHER SCREEN +2 2 GRUAN STANDARD HUMIDITY CHAMBER +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8038.table b/definitions/bufr/tables/0/wmo/36/codetables/8038.table new file mode 100644 index 000000000..aa4d7b77b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8038.table @@ -0,0 +1,3 @@ +0 0 VERIFIED INSTRUMENT READING +1 1 REFERENCE INSTRUMENT READING +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8039.table b/definitions/bufr/tables/0/wmo/36/codetables/8039.table new file mode 100644 index 000000000..f4403c63d --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8039.table @@ -0,0 +1,8 @@ +0 0 ISSUE TIME OF FORECAST +1 1 TIME OF COMMENCEMENT OF PERIOD OF THE FORECAST +2 2 TIME OF ENDING OF PERIOD OF THE FORECAST +3 3 FORECAST TIME OF MAXIMUM TEMPERATURE +4 4 FORECAST TIME OF MINIMUM TEMPERATURE +5 5 TIME OF BEGINNING OF THE FORECAST CHANGE +6 6 TIME OF ENDING OF THE FORECAST CHANGE +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8040.table b/definitions/bufr/tables/0/wmo/36/codetables/8040.table new file mode 100644 index 000000000..42c5af0e5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8040.table @@ -0,0 +1,49 @@ +0 0 HIGH-RESOLUTION DATA SAMPLE +1 1 WITHIN 20 HPA OF SURFACE +2 2 PRESSURE LESS THAN 10 HPA (I.E., 9, 8, 7, ETC.) WHEN NO OTHER REASON APPLIES +3 3 BASE PRESSURE LEVEL FOR STABILITY INDEX +4 4 BEGIN DOUBTFUL TEMPERATURE, HEIGHT DATA +5 5 BEGIN MISSING DATA (ALL ELEMENTS) +6 6 BEGIN MISSING RELATIVE HUMIDITY DATA +7 7 BEGIN MISSING TEMPERATURE DATA +8 8 HIGHEST LEVEL REACHED BEFORE BALLOON DESCENT BECAUSE OF ICING OR TURBULENCE +9 9 END DOUBTFUL TEMPERATURE, HEIGHT DATA +10 10 END MISSING DATA (ALL ELEMENTS) +11 11 END MISSING RELATIVE HUMIDITY DATA +12 12 END MISSING TEMPERATURE DATA +13 13 ZERO DEGREES CELSIUS CROSSING(S) FOR RADAT +14 14 STANDARD PRESSURE LEVEL +15 15 OPERATOR-ADDED LEVEL +16 16 OPERATOR-DELETED LEVEL +17 17 BALLOON RE-ASCENDED BEYOND PREVIOUS HIGHEST ASCENT LEVEL +18 18 SIGNIFICANT RELATIVE HUMIDITY LEVEL +19 19 RELATIVE HUMIDITY LEVEL SELECTION TERMINATED +20 20 SURFACE LEVEL +21 21 SIGNIFICANT TEMPERATURE LEVEL +22 22 MANDATORY TEMPERATURE LEVEL +23 23 FLIGHT TERMINATION LEVEL +24 24 TROPOPAUSE(S) +25 25 AIRCRAFT REPORT +26 26 INTERPOLATED (GENERATED) LEVEL +27 27 MANDATORY WIND LEVEL +28 28 SIGNIFICANT WIND LEVEL +29 29 MAXIMUM WIND LEVEL +30 30 INCREMENTAL WIND LEVEL (FIXED REGIONAL) +31 31 INCREMENTAL HEIGHT LEVEL (GENERATED) +32 32 WIND TERMINATION LEVEL +33 33 PRESSURE 100 TO 110 HPA, WHEN NO OTHER REASON APPLIES +34 34 FREEZING LEVEL BASE +35 35 FREEZING LEVEL TOP +36 36 FLIGHT LEVEL BASE +37 37 FLIGHT LEVEL TOP +38 38 TOP OF WIND SOUNDING +39 39 BOTTOM OF WIND SOUNDING +40 40 SIGNIFICANT THERMODYNAMIC LEVEL (INVERSION) +41 41 SIGNIFICANT RELATIVE HUMIDITY LEVEL (ACCORDING TO NCDC CRITERIA) +42 42 SIGNIFICANT TEMPERATURE LEVEL (ACCORDING TO NCDC) +43 43 BEGIN MISSING WIND DATA +44 44 END MISSING WIND DATA +60 60 LEVEL OF 80-KNOT ISOTACH ABOVE JET +61 61 LEVEL OF 80-KNOT ISOTACH BELOW JET +62 62 OTHER +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8041.table b/definitions/bufr/tables/0/wmo/36/codetables/8041.table new file mode 100644 index 000000000..1f48fbedc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8041.table @@ -0,0 +1,15 @@ +0 0 PARENT SITE +1 1 OBSERVATION SITE +2 2 BALLOON MANUFACTURE DATE +3 3 BALLOON LAUNCH POINT +4 4 SURFACE OBSERVATION +5 5 SURFACE OBSERVATION DISPLACEMENT FROM LAUNCH POINT +6 6 FLIGHT LEVEL OBSERVATION +7 7 FLIGHT LEVEL TERMINATION POINT +8 8 IFR CEILING AND VISIBILITY +9 9 MOUNTAIN OBSCURATION +10 10 STRONG SURFACE WIND +11 11 FREEZING LEVEL +12 12 MULTIPLE FREEZING LEVEL +13 13 INSTRUMENT MANUFACTURE DATE +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8042.table b/definitions/bufr/tables/0/wmo/36/codetables/8042.table new file mode 100644 index 000000000..c71709a4c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8042.table @@ -0,0 +1,17 @@ +1 1 SURFACE +2 2 STANDARD LEVEL +3 3 TROPOPAUSE LEVEL +4 4 MAXIMUM WIND LEVEL +5 5 SIGNIFICANT TEMPERATURE LEVEL +6 6 SIGNIFICANT HUMIDITY LEVEL +7 7 SIGNIFICANT WIND LEVEL +8 8 BEGINNING OF MISSING TEMPERATURE DATA +9 9 END OF MISSING TEMPERATURE DATA +10 10 BEGINNING OF MISSING HUMIDITY DATA +11 11 END OF MISSING HUMIDITY DATA +12 12 BEGINNING OF MISSING WIND DATA +13 13 END OF MISSING WIND DATA +14 14 TOP OF WIND SOUNDING +15 15 LEVEL DETERMINED BY REGIONAL DECISION +16 16 FREEZING LEVEL +17 17 PRESSURE LEVEL ORIGINALLY INDICATED BY HEIGHT AS THE VERTICAL COORDINATE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8043.table b/definitions/bufr/tables/0/wmo/36/codetables/8043.table new file mode 100644 index 000000000..249fd0e55 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8043.table @@ -0,0 +1,17 @@ +0 0 OZONE +1 1 WATER VAPOUR +2 2 METHANE +3 3 CARBON DIOXIDE +4 4 CARBON MONOXIDE +5 5 NITROGEN DIOXIDE +6 6 NITROUS OXIDE +7 7 FORMALDEHYDE +8 8 SULPHUR DIOXIDE +25 25 PARTICULATE MATTER < 1.0 MICRONS +26 26 PARTICULATE MATTER < 2.5 MICRONS +27 27 PARTICULATE MATTER < 10 MICRONS +28 28 AEROSOLS (GENERIC) +29 29 SMOKE (GENERIC) +30 30 CRUSTAL MATERIAL (GENERIC DUST) +31 31 VOLCANIC ASH +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8050.table b/definitions/bufr/tables/0/wmo/36/codetables/8050.table new file mode 100644 index 000000000..4b401f1d2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8050.table @@ -0,0 +1,11 @@ +0 0 RESERVED +1 1 PRESSURE +2 2 TEMPERATURE +3 3 EXTREME TEMPERATURE +4 4 VAPOUR PRESSURE +5 5 PRECIPITATION +6 6 SUNSHINE DURATION +7 7 MAXIMUM TEMPERATURE +8 8 MINIMUM TEMPERATURE +9 9 WIND +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8051.table b/definitions/bufr/tables/0/wmo/36/codetables/8051.table new file mode 100644 index 000000000..5249fe6a2 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8051.table @@ -0,0 +1,7 @@ +1 1 PRESSURE +2 2 TEMPERATURE +3 3 EXTREME TEMPERATURE +4 4 VAPOUR PRESSURE +5 5 PRECIPITATION +6 6 SUNSHINE DURATION +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8052.table b/definitions/bufr/tables/0/wmo/36/codetables/8052.table new file mode 100644 index 000000000..46dcbbe21 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8052.table @@ -0,0 +1,26 @@ +0 0 MEAN WIND SPEED OVER A 10-MINUTE PERIOD OBSERVED OR RECORDED EQUAL TO OR MORE THAN 10 M S-1 OR 20 KNOTS +1 1 MEAN WIND SPEED OVER A 10-MINUTE PERIOD OBSERVED OR RECORDED EQUAL TO OR MORE THAN 20 M S-1 OR 40 KNOTS +2 2 MEAN WIND SPEED OVER A 10-MINUTE PERIOD OBSERVED OR RECORDED EQUAL TO OR MORE THAN 30 M S-1 OR 60 KNOTS +3 3 MAXIMUM TEMPERATURE LESS THAN 273.15 K +4 4 MAXIMUM TEMPERATURE EQUAL TO OR MORE THAN 298.15 K +5 5 MAXIMUM TEMPERATURE EQUAL TO OR MORE THAN 303.15 K +6 6 MAXIMUM TEMPERATURE EQUAL TO OR MORE THAN 308.15 K +7 7 MAXIMUM TEMPERATURE EQUAL TO OR MORE THAN 313.15 K +8 8 MINIMUM TEMPERATURE LESS THAN 273.15 K +9 9 MAXIMUM TEMPERATURE EQUAL TO OR MORE THAN 273.15 K +10 10 PRECIPITATION EQUAL TO OR MORE THAN 1.0 KG M-2 +11 11 PRECIPITATION EQUAL TO OR MORE THAN 5.0 KG M-2 +12 12 PRECIPITATION EQUAL TO OR MORE THAN 10.0 KG M-2 +13 13 PRECIPITATION EQUAL TO OR MORE THAN 50.0 KG M-2 +14 14 PRECIPITATION EQUAL TO OR MORE THAN 100.0 KG M-2 +15 15 PRECIPITATION EQUAL TO OR MORE THAN 150.0 KG M-2 +16 16 SNOW DEPTH MORE THAN 0.00 M +17 17 SNOW DEPTH MORE THAN 0.01 M +18 18 SNOW DEPTH MORE THAN 0.10 M +19 19 SNOW DEPTH MORE THAN 0.50 M +20 20 HORIZONTAL VISIBILITY LESS THAN 50 M +21 21 HORIZONTAL VISIBILITY LESS THAN 100 M +22 22 HORIZONTAL VISIBILITY LESS THAN 1000 M +23 23 HAIL +24 24 THUNDERSTORM +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8053.table b/definitions/bufr/tables/0/wmo/36/codetables/8053.table new file mode 100644 index 000000000..cbc11c9a7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8053.table @@ -0,0 +1,4 @@ +0 0 VALUE OCCURRED ON ONLY ONE DAY IN THE MONTH +1 1 VALUE OCCURRED ON MORE THAN ONE DAY IN THE MONTH +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8054.table b/definitions/bufr/tables/0/wmo/36/codetables/8054.table new file mode 100644 index 000000000..51b908e08 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8054.table @@ -0,0 +1,3 @@ +0 0 WIND SPEED OR GUST IS AS REPORTED +1 1 WIND SPEED IS GREATER THAN THAT REPORTED (P IN METAR/TAF/SPECI) +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8060.table b/definitions/bufr/tables/0/wmo/36/codetables/8060.table new file mode 100644 index 000000000..2865fece5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8060.table @@ -0,0 +1,8 @@ +0 0 RESERVED +1 1 RANGE +2 2 AZIMUTH +3 3 HORIZONTAL +4 4 VERTICAL +5 5 NORTH/SOUTH +6 6 EAST/WEST +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8065.table b/definitions/bufr/tables/0/wmo/36/codetables/8065.table new file mode 100644 index 000000000..69b80ea33 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8065.table @@ -0,0 +1,4 @@ +0 0 NO SUN-GLINT +1 1 SUN-GLINT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8066.table b/definitions/bufr/tables/0/wmo/36/codetables/8066.table new file mode 100644 index 000000000..fcc0252c9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8066.table @@ -0,0 +1,4 @@ +0 0 OPAQUE +1 1 SEMI-TRANSPARENT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8070.table b/definitions/bufr/tables/0/wmo/36/codetables/8070.table new file mode 100644 index 000000000..f58061757 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8070.table @@ -0,0 +1,6 @@ +0 0 RESERVED +1 1 RESERVED +2 2 EARTH LOCATED INSTRUMENT COUNTS, CALIBRATION COEFFICIENTS AND HOUSEKEEPING (LEVEL 1B) +3 3 EARTH LOCATED CALIBRATED RADIANCES (LEVEL 1C) +4 4 MAPPED TO A COMMON FOOTPRINT, EARTH LOCATED CALIBRATED RADIANCES (LEVEL 1D) +15 15 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8072.table b/definitions/bufr/tables/0/wmo/36/codetables/8072.table new file mode 100644 index 000000000..7dcd9611b --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8072.table @@ -0,0 +1,6 @@ +0 0 MIXED +1 1 CLEAR +2 2 CLOUDY +3 3 PROBABLY CLEAR +4 4 PROBABLY CLOUDY +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8074.table b/definitions/bufr/tables/0/wmo/36/codetables/8074.table new file mode 100644 index 000000000..5778e6552 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8074.table @@ -0,0 +1,4 @@ +0 0 OPEN OCEAN OR SEMI-ENCLOSED SEA +1 1 NON-OCEAN LIKE +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8075.table b/definitions/bufr/tables/0/wmo/36/codetables/8075.table new file mode 100644 index 000000000..5f5e3a24c --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8075.table @@ -0,0 +1,4 @@ +0 0 ASCENDING ORBIT +1 1 DESCENDING ORBIT +2 2 RESERVED +3 3 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8076.table b/definitions/bufr/tables/0/wmo/36/codetables/8076.table new file mode 100644 index 000000000..431496fbc --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8076.table @@ -0,0 +1,9 @@ +0 0 KU +1 1 C +2 2 LONG-WAVE INFRARED +3 3 MEDIUM-WAVE INFRARED +4 4 SHORT-WAVE INFRARED +5 5 M +6 6 I +7 7 DAY/NIGHT +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8077.table b/definitions/bufr/tables/0/wmo/36/codetables/8077.table new file mode 100644 index 000000000..2c7902bd7 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8077.table @@ -0,0 +1,7 @@ +0 0 LAND +1 1 SEA +2 2 COASTAL +3 3 OPEN OCEAN OR SEMI-ENCLOSED SEA +4 4 ENCLOSED SEA OR LAKE +5 5 CONTINENTAL ICE +127 127 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8079.table b/definitions/bufr/tables/0/wmo/36/codetables/8079.table new file mode 100644 index 000000000..735a09c37 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8079.table @@ -0,0 +1,9 @@ +0 0 NORMAL ISSUE +1 1 CORRECTION TO A PREVIOUSLY ISSUED PRODUCT (COR) +2 2 AMENDMENT TO A PREVIOUSLY ISSUED PRODUCT (AMD) +3 3 CORRECTION TO A PREVIOUSLY ISSUED AMENDED PRODUCT (COR AMD) +4 4 CANCELLATION OF A PREVIOUSLY ISSUED PRODUCT (CNL) +5 5 NO PRODUCT AVAILABLE (NIL) +6 6 SPECIAL REPORT (SPECI) +7 7 CORRECTED SPECIAL REPORT (SPECI COR) +15 15 MISSING OR NOT APPLICABLE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8080.table b/definitions/bufr/tables/0/wmo/36/codetables/8080.table new file mode 100644 index 000000000..1a0f3a5e5 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8080.table @@ -0,0 +1,14 @@ +0 0 TOTAL WATER PRESSURE PROFILE +1 1 TOTAL WATER TEMPERATURE PROFILE +2 2 TOTAL WATER SALINITY PROFILE +3 3 TOTAL WATER CONDUCTIVITY PROFILE +4 4 TOTAL WATER DEPTH +10 10 WATER PRESSURE AT A LEVEL +11 11 WATER TEMPERATURE AT A LEVEL +12 12 SALINITY AT A LEVEL +13 13 WATER DEPTH AT A LEVEL +14 14 SEA/WATER CURRENT SPEED AT A LEVEL +15 15 SEA/WATER CURRENT DIRECTION AT A LEVEL +16 16 DISSOLVED OXYGEN AT A LEVEL +20 20 POSITION +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8081.table b/definitions/bufr/tables/0/wmo/36/codetables/8081.table new file mode 100644 index 000000000..75d288732 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8081.table @@ -0,0 +1,5 @@ +0 0 SENSOR +1 1 TRANSMITTER +2 2 RECEIVER +3 3 OBSERVING PLATFORM +63 63 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8082.table b/definitions/bufr/tables/0/wmo/36/codetables/8082.table new file mode 100644 index 000000000..1f24db866 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8082.table @@ -0,0 +1,3 @@ +0 0 SENSOR HEIGHT IS NOT MODIFIED +1 1 SENSOR HEIGHT IS MODIFIED TO STANDARD LEVEL +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8083.table b/definitions/bufr/tables/0/wmo/36/codetables/8083.table new file mode 100644 index 000000000..174ef3428 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8083.table @@ -0,0 +1,9 @@ +1 1 ADJUSTED TO OR WITH RESPECT TO REPRESENTATIVE HEIGHT OF SENSOR ABOVE LOCAL GROUND (OR DECK OF MARINE PLATFORM) +2 2 ADJUSTED TO OR WITH RESPECT TO REPRESENTATIVE HEIGHT OF SENSOR ABOVE WATER SURFACE +3 3 ADJUSTED WITH RESPECT TO STANDARD SURFACE ROUGHNESS +4 4 ADJUSTED WITH RESPECT TO WIND SPEED +5 5 ADJUSTED WITH RESPECT TO TEMPERATURE +6 6 ADJUSTED WITH RESPECT TO PRESSURE +7 7 ADJUSTED WITH RESPECT TO HUMIDITY +8 8 ADJUSTED WITH RESPECT TO EVAPORATION +9 9 ADJUSTED WITH RESPECT TO WETTING LOSSES diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8085.table b/definitions/bufr/tables/0/wmo/36/codetables/8085.table new file mode 100644 index 000000000..79e1a3d90 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8085.table @@ -0,0 +1,4 @@ +0 0 FORE BEAM +1 1 MID BEAM +2 2 AFT BEAM +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8086.table b/definitions/bufr/tables/0/wmo/36/codetables/8086.table new file mode 100644 index 000000000..a9ecd0351 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8086.table @@ -0,0 +1,11 @@ +1 1 MODEL GROUND SURFACE +2 2 STANDARD LEVEL +3 3 TROPOPAUSE LEVEL +4 4 MAXIMUM WIND LEVEL +5 5 SIGNIFICANT TEMPERATURE LEVEL +6 6 SIGNIFICANT HUMIDITY LEVEL +7 7 SIGNIFICANT WIND LEVEL +8 8 VERTICALLY INTERPOLATED LEVEL (THIS SHOULD BE SET TO 1 FOR POINTS ON THE VERTICAL PROFILE THAT FALL BETWEEN THE MODEL'S NATIVE VERTICAL LEVELS.) +9 9 VIRTUAL STATION HEIGHT +10 10 LEVEL OF BEST FIT +11 11 RESERVED diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8087.table b/definitions/bufr/tables/0/wmo/36/codetables/8087.table new file mode 100644 index 000000000..d556c98de --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8087.table @@ -0,0 +1,5 @@ +0 0 UPPER LEFT +1 1 UPPER RIGHT +2 2 LOWER RIGHT +3 3 LOWER LEFT +7 7 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8088.table b/definitions/bufr/tables/0/wmo/36/codetables/8088.table new file mode 100644 index 000000000..d6f51be70 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8088.table @@ -0,0 +1,4 @@ +0 0 TOP VIEW (GEOGRAPHICAL LONGITUDE ON X-AXIS AND LATITUDE ON Y-AXIS) +1 1 NORTH-SOUTH VIEW (TRANSECT WITH GEOGRAPHICAL LONGITUDE ON X-AXIS AND VERTICAL HEIGHT ON Y-AXIS) +2 2 EAST-WEST VIEW (TRANSECT WITH GEOGRAPHICAL LATITUDE ON X-AXIS AND VERTICAL HEIGHT ON Y-AXIS) +63 63 MISSING diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8091.table b/definitions/bufr/tables/0/wmo/36/codetables/8091.table new file mode 100644 index 000000000..3a8c44df1 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8091.table @@ -0,0 +1,11 @@ +0 0 SATELLITE COORDINATES +1 1 OBSERVATION COORDINATES +2 2 START OF OBSERVATION +3 3 END OF OBSERVATION +4 4 HORIZONTAL CENTRE OF GRAVITY OF THE OBSERVATION +5 5 VERTICAL CENTRE OF GRAVITY OF THE OBSERVATION +6 6 TOP OF THE OBSERVATION +7 7 BOTTOM OF THE OBSERVATION +8 8 PROJECTION ORIGIN +9 9 COORDINATES OF TRUE SCALE +255 255 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8092.table b/definitions/bufr/tables/0/wmo/36/codetables/8092.table new file mode 100644 index 000000000..db46f8e50 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8092.table @@ -0,0 +1,2 @@ +0 0 STANDARD UNCERTAINTY +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/codetables/8093.table b/definitions/bufr/tables/0/wmo/36/codetables/8093.table new file mode 100644 index 000000000..74f5c3a63 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/codetables/8093.table @@ -0,0 +1,4 @@ +0 0 TOTAL UNCERTAINTY +1 1 SYSTEMATIC COMPONENT OF UNCERTAINTY +2 2 RANDOM COMPONENT OF UNCERTAINTY +31 31 MISSING VALUE diff --git a/definitions/bufr/tables/0/wmo/36/element.table b/definitions/bufr/tables/0/wmo/36/element.table new file mode 100644 index 000000000..eb9c4ea06 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/element.table @@ -0,0 +1,1731 @@ +#code|abbreviation|type|name|unit|scale|reference|width|crex_unit|crex_scale|crex_width +000001|tableAEntry|string|TABLE A: ENTRY|CCITT IA5|0|0|24|Character|0|3 +000002|tableALine1|string|TABLE A: DATA CATEGORY DESCRIPTION, LINE 1|CCITT IA5|0|0|256|Character|0|32 +000003|tableALine2|string|TABLE A: DATA CATEGORY DESCRIPTION, LINE 2|CCITT IA5|0|0|256|Character|0|32 +000004|masterTable|string|BUFR/CREX MASTER TABLE|CCITT IA5|0|0|16|Character|0|2 +000005|editionNumber|string|BUFR/CREX EDITION NUMBER|CCITT IA5|0|0|24|Character|0|3 +000006|bufrMasterTableVersionNumber|string|BUFR MASTER TABLE VERSION NUMBER|CCITT IA5|0|0|16|Character|0|2 +000007|crexMasterTableVersionNumber|string|CREX MASTER TABLE VERSION NUMBER|CCITT IA5|0|0|16|Character|0|2 +000008|bufrLocalTableVersionNumber|string|BUFR LOCAL TABLE VERSION NUMBER|CCITT IA5|0|0|16|Character|0|2 +000010|fDescriptorToBeAddedOrDefined|string|F DESCRIPTOR TO BE ADDED OR DEFINED|CCITT IA5|0|0|8|Character|0|1 +000011|xDescriptorToBeAddedOrDefined|string|X DESCRIPTOR TO BE ADDED OR DEFINED|CCITT IA5|0|0|16|Character|0|2 +000012|yDescriptorToBeAddedOrDefined|string|Y DESCRIPTOR TO BE ADDED OR DEFINED|CCITT IA5|0|0|24|Character|0|3 +000013|elementNameLine1|string|ELEMENT NAME, LINE 1|CCITT IA5|0|0|256|Character|0|32 +000014|elementNameLine2|string|ELEMENT NAME, LINE 2|CCITT IA5|0|0|256|Character|0|32 +000015|unitsName|string|UNITS NAME|CCITT IA5|0|0|192|Character|0|24 +000016|unitsScaleSign|string|UNITS SCALE SIGN|CCITT IA5|0|0|8|Character|0|1 +000017|unitsScale|string|UNITS SCALE|CCITT IA5|0|0|24|Character|0|3 +000018|unitsReferenceSign|string|UNITS REFERENCE SIGN|CCITT IA5|0|0|8|Character|0|1 +000019|unitsReferenceValue|string|UNITS REFERENCE VALUE|CCITT IA5|0|0|80|Character|0|10 +000020|elementDataWidth|string|ELEMENT DATA WIDTH|CCITT IA5|0|0|24|Character|0|3 +000024|codeFigure|string|CODE FIGURE|CCITT IA5|0|0|64|Character|0|8 +000025|codeFigureMeaning|string|CODE FIGURE MEANING|CCITT IA5|0|0|496|Character|0|62 +000026|bitNumber|string|BIT NUMBER|CCITT IA5|0|0|48|Character|0|6 +000027|bitNumberMeaning|string|BIT NUMBER MEANING|CCITT IA5|0|0|496|Character|0|62 +000030|descriptorDefiningSequence|string|DESCRIPTOR DEFINING SEQUENCE|CCITT IA5|0|0|48|Character|0|6 +001001|blockNumber|long|WMO BLOCK NUMBER|Numeric|0|0|7|Numeric|0|2 +001002|stationNumber|long|WMO STATION NUMBER|Numeric|0|0|10|Numeric|0|3 +001003|regionNumber|table|WMO REGION NUMBER/GEOGRAPHICAL AREA|CODE TABLE|0|0|3|CODE TABLE|0|1 +001004|wmoRegionSubArea|long|WMO REGION SUB-AREA|Numeric|0|0|3|Numeric|0|1 +001005|buoyOrPlatformIdentifier|long|BUOY/PLATFORM IDENTIFIER|Numeric|0|0|17|Numeric|0|5 +001006|aircraftFlightNumber|string|AIRCRAFT FLIGHT NUMBER|CCITT IA5|0|0|64|Character|0|8 +001007|satelliteIdentifier|table|SATELLITE IDENTIFIER|CODE TABLE|0|0|10|CODE TABLE|0|4 +001008|aircraftRegistrationNumberOrOtherIdentification|string|AIRCRAFT REGISTRATION NUMBER OR OTHER IDENTIFICATION|CCITT IA5|0|0|64|Character|0|8 +001009|commercialAircraftType|string|TYPE OF COMMERCIAL AIRCRAFT|CCITT IA5|0|0|64|Character|0|8 +001010|stationaryBuoyPlatformIdentifierEGCManBuoys|string|STATIONARY BUOY PLATFORM IDENTIFIER; E.G. C-MAN BUOYS|CCITT IA5|0|0|64|Character|0|8 +001011|shipOrMobileLandStationIdentifier|string|SHIP OR MOBILE LAND STATION IDENTIFIER|CCITT IA5|0|0|72|Character|0|9 +001012|directionOfMotionOfMovingObservingPlatform|long|DIRECTION OF MOTION OF MOVING OBSERVING PLATFORM|deg|0|0|9|deg|0|3 +001013|movingObservingPlatformSpeed|long|SPEED OF MOTION OF MOVING OBSERVING PLATFORM|m/s|0|0|10|m/s|0|3 +001014|platformDriftSpeed|double|PLATFORM DRIFT SPEED (HIGH PRECISION)|m/s|2|0|10|m/s|2|4 +001015|stationOrSiteName|string|STATION OR SITE NAME|CCITT IA5|0|0|160|Character|0|20 +001018|shortStationName|string|SHORT STATION OR SITE NAME|CCITT IA5|0|0|40|Character|0|5 +001019|longStationName|string|LONG STATION OR SITE NAME|CCITT IA5|0|0|256|Character|0|32 +001020|wmoRegionSubArea|long|WMO REGION SUB-AREA|Numeric|0|0|4|Numeric|0|2 +001021|synopticFeatureIdentifier|long|SYNOPTIC FEATURE IDENTIFIER|Numeric|0|0|14|Numeric|0|4 +001022|featureName|string|NAME OF FEATURE|CCITT IA5|0|0|224|Character|0|28 +001023|observationSequenceNumber|long|OBSERVATION SEQUENCE NUMBER|Numeric|0|0|9|Numeric|0|3 +001024|windSpeedSource|table|WIND SPEED SOURCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +001025|stormIdentifier|string|STORM IDENTIFIER|CCITT IA5|0|0|24|Character|0|3 +001026|stormName|string|WMO STORM NAME|CCITT IA5|0|0|64|Character|0|8 +001027|longStormName|string|WMO LONG STORM NAME|CCITT IA5|0|0|80|Character|0|10 +001028|aerosolOpticalDepthSource|table|AEROSOL OPTICAL DEPTH (AOD) SOURCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +001029|ssiSource|table|SSI SOURCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +001030|numericalModelIdentifier|string|NUMERICAL MODEL IDENTIFIER|CCITT IA5|0|0|128|Character|0|16 +001031|centre|table|IDENTIFICATION OF ORIGINATING/GENERATING CENTRE|CODE TABLE|0|0|16|CODE TABLE|0|5 +001032|generatingApplication|table|GENERATING APPLICATION|CODE TABLE defined by originating/generating centre|0|0|8|CODE TABLE|0|3 +001033|centre|table|IDENTIFICATION OF ORIGINATING/GENERATING CENTRE|Common CODE TABLE C-1|0|0|8|Common CODE TABLE C-1|0|3 +001034|subCentre|table|IDENTIFICATION OF ORIGINATING/GENERATING SUB-CENTRE|Common CODE TABLE C-12|0|0|8|Common CODE TABLE C-12|0|3 +001035|centre|table|ORIGINATING CENTRE|Common CODE TABLE C-11|0|0|16|Common CODE TABLE C-11|0|5 +001036|agencyInChargeOfOperatingObservingPlatform|table|AGENCY IN CHARGE OF OPERATING THE OBSERVING PLATFORM|CODE TABLE|0|0|20|CODE TABLE|0|7 +001037|sigmetSequenceIdentifier|string|SIGMET SEQUENCE IDENTIFIER|CCITT IA5|0|0|24|Character|0|3 +001038|sourceOfSeaIceFraction|table|SOURCE OF SEA ICE FRACTION|CODE TABLE|0|0|5|CODE TABLE|0|2 +001039|graphicalAreaForecastSequenceIdentifier|string|GRAPHICAL AREA FORECAST (GFA) SEQUENCE IDENTIFIER|CCITT IA5|0|0|40|Character|0|5 +001040|processingCentreIdCode|string|PROCESSING CENTRE ID CODE|CCITT IA5|0|0|48|Character|0|6 +001041|absolutePlatformVelocityFirstComponent|double|ABSOLUTE PLATFORM VELOCITY - FIRST COMPONENT|m/s|5|-1073741824|31|m/s|5|10 +001042|absolutePlatformVelocitySecondComponent|double|ABSOLUTE PLATFORM VELOCITY - SECOND COMPONENT|m/s|5|-1073741824|31|m/s|5|10 +001043|absolutePlatformVelocityThirdComponent|double|ABSOLUTE PLATFORM VELOCITY - THIRD COMPONENT|m/s|5|-1073741824|31|m/s|5|10 +001044|standardGeneratingApplication|table|STANDARD GENERATING APPLICATION|CODE TABLE|0|0|8|CODE TABLE|0|3 +001050|platformTransmitterIdNumber|long|PLATFORM TRANSMITTER ID NUMBER|Numeric|0|0|17|Numeric|0|6 +001051|platformTransmitterIdNumber|string|PLATFORM TRANSMITTER ID NUMBER|CCITT IA5|0|0|96|Character|0|12 +001052|platformTransmitterId|table|PLATFORM TRANSMITTER ID|CODE TABLE|0|0|3|CODE TABLE|0|1 +001053|tsunameterReportSequenceNumber|long|TSUNAMETER REPORT SEQUENCE NUMBER TRIGGERED BY A TSUNAMI EVENT|Numeric|0|0|7|Numeric|0|2 +001060|aircraftReportingPointBeaconIdentifier|string|AIRCRAFT REPORTING POINT (BEACON IDENTIFIER)|CCITT IA5|0|0|64|Character|0|8 +001062|shortIcaoLocationIndicator|string|SHORT ICAO LOCATION INDICATOR|CCITT IA5|0|0|32|Character|0|4 +001063|icaoLocationIndicator|string|ICAO LOCATION INDICATOR|CCITT IA5|0|0|64|Character|0|8 +001064|runwayDesignator|string|RUNWAY DESIGNATOR|CCITT IA5|0|0|32|Character|0|4 +001065|icaoRegionIdentifier|string|ICAO REGION IDENTIFIER|CCITT IA5|0|0|256|Character|0|32 +001075|tideStationIdentification|string|TIDE STATION IDENTIFICATION|CCITT IA5|0|0|40|Character|0|5 +001079|uniqueIdentifierForProfile|string|UNIQUE IDENTIFIER FOR THE PROFILE|CCITT IA5|0|0|64|Character|0|8 +001080|shipLineNumberAccordingToSoop|string|SHIP LINE NUMBER ACCORDING TO SOOP|CCITT IA5|0|0|32|Character|0|4 +001081|radiosondeSerialNumber|string|RADIOSONDE SERIAL NUMBER|CCITT IA5|0|0|160|Character|0|20 +001082|radiosondeAscensionNumber|long|RADIOSONDE ASCENSION NUMBER|Numeric|0|0|14|Numeric|0|4 +001083|radiosondeReleaseNumber|long|RADIOSONDE RELEASE NUMBER|Numeric|0|0|3|Numeric|0|1 +001085|observingPlatformManufacturerModel|string|OBSERVING PLATFORM MANUFACTURER'S MODEL|CCITT IA5|0|0|160|Character|0|20 +001086|observingPlatformManufacturerSerialNumber|string|OBSERVING PLATFORM MANUFACTURER'S SERIAL NUMBER|CCITT IA5|0|0|256|Character|0|32 +001087|marineObservingPlatformIdentifier|long|WMO MARINE OBSERVING PLATFORM EXTENDED IDENTIFIER|Numeric|0|0|23|Numeric|0|7 +001090|techniqueForMakingUpInitialPerturbations|table|TECHNIQUE FOR MAKING UP INITIAL PERTURBATIONS|CODE TABLE|0|0|8|CODE TABLE|0|3 +001091|ensembleMemberNumber|long|ENSEMBLE MEMBER NUMBER|Numeric|0|0|10|Numeric|0|4 +001092|ensembleForecastType|table|TYPE OF ENSEMBLE FORECAST|CODE TABLE|0|0|8|CODE TABLE|0|3 +001093|balloonLotNumber|string|BALLOON LOT NUMBER|CCITT IA5|0|0|96|Character|0|12 +001094|wbanNumber|long|WBAN NUMBER|Numeric|0|0|17|Numeric|0|5 +001095|observerIdentification|string|OBSERVER IDENTIFICATION|CCITT IA5|0|0|32|Character|0|4 +001096|stationAcquisition|string|STATION ACQUISITION|CCITT IA5|0|0|160|Character|0|20 +001099|uniqueProductDefinition|string|UNIQUE PRODUCT DEFINITION|CCITT IA5|0|0|248|Character|0|31 +001101|stateIdentifier|table|STATE IDENTIFIER|CODE TABLE|0|0|10|CODE TABLE|0|3 +001102|nationalStationNumber|long|NATIONAL STATION NUMBER|Numeric|0|0|30|Numeric|0|9 +001103|imoNumber|long|IMO NUMBER. UNIQUE LLOYD'S REGISTER|Numeric|0|0|24|Numeric|0|7 +001104|stateOrFederalStateIdentifier|string|STATE/FEDERAL STATE IDENTIFIER|CCITT IA5|0|0|32|Character|0|4 +001105|highwayDesignator|string|HIGHWAY DESIGNATOR|CCITT IA5|0|0|40|Character|0|5 +001106|locationAlongHighwayAsIndicatedByPositionMarkers|long|LOCATION ALONG HIGHWAY AS INDICATED BY POSITION MARKERS|m|-2|0|14|m|-2|5 +001110|aircraftTailNumber|string|AIRCRAFT TAIL NUMBER|CCITT IA5|0|0|48|Character|0|6 +001111|originationAirport|string|ORIGINATION AIRPORT|CCITT IA5|0|0|24|Character|0|3 +001112|destinationAirport|string|DESTINATION AIRPORT|CCITT IA5|0|0|24|Character|0|3 +001113|templateVersionNumberDefinedByOriginatingCentre|long|TEMPLATE VERSION NUMBER DEFINED BY ORIGINATING CENTRE|Numeric|1|0|9|Numeric|1|3 +001114|encryptedStationIdentifierBase64Encoding|string|ENCRYPTED SHIP OR MOBILE LAND STATION IDENTIFIER (BASE64 ENCODING)|CCITT IA5|0|0|352|Character|0|44 +001115|identifierOfTheCruiseOrMission|string|IDENTIFIER OF THE CRUISE OR MISSION UNDER WHICH THE DATA WERE COLLECTED|CCITT IA5|0|0|160|Character|0|20 +001124|gridPointIdentifier|long|GRID POINT IDENTIFIER|Numeric|0|0|24|Numeric|0|8 +001125|wigosIdentifierSeries|long|WIGOS IDENTIFIER SERIES|Numeric|0|0|4|Numeric|0|2 +001126|wigosIssuerOfIdentifier|long|WIGOS ISSUER OF IDENTIFIER|Numeric|0|0|16|Numeric|0|5 +001127|wigosIssueNumber|long|WIGOS ISSUE NUMBER|Numeric|0|0|16|Numeric|0|5 +001128|wigosLocalIdentifierCharacter|string|WIGOS LOCAL IDENTIFIER (CHARACTER)|CCITT IA5|0|0|128|Character|0|16 +001144|snapshotIdentifier|long|SNAPSHOT IDENTIFIER|Numeric|0|0|31|Numeric|0|10 +001150|coordinateReferenceSystem|table|COORDINATE REFERENCE SYSTEM|CODE TABLE|0|0|16|CODE TABLE|0|5 +001151|fixedMeanSeaLevelReferenceDatum|table|FIXED MEAN SEA-LEVEL REFERENCE DATUM|CODE TABLE|0|0|12|CODE TABLE|0|4 +001152|semiMajorAxisOfRotationEllipsoid|double|SEMI-MAJOR AXIS OF ROTATION ELLIPSOID|m|2|0|31|m|2|11 +001153|semiMinorAxisOfRotationEllipsoid|double|SEMI-MINOR AXIS OF ROTATION ELLIPSOID|m|2|0|31|m|2|11 +001154|sensorIdentifier|long|SENSOR IDENTIFIER|Numeric|0|0|12|Numeric|0|4 +002001|stationType|table|TYPE OF STATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +002002|instrumentationForWindMeasurement|flag|TYPE OF INSTRUMENTATION FOR WIND MEASUREMENT|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +002003|measuringEquipmentType|table|TYPE OF MEASURING EQUIPMENT USED|CODE TABLE|0|0|4|CODE TABLE|0|2 +002004|typeOfInstrumentationForEvaporationMeasurement|table|TYPE OF INSTRUMENTATION FOR EVAPORATION MEASUREMENT OR TYPE OF CROP FOR WHICH EVAPOTRANSPIRATION IS REPORTED|CODE TABLE|0|0|4|CODE TABLE|0|2 +002005|temperatureObservationPrecision|double|PRECISION OF TEMPERATURE OBSERVATION|K|2|0|7|K|2|3 +002006|upperAirRemoteSensingInstrumentType|table|UPPER AIR REMOTE SENSING INSTRUMENT TYPE|CODE TABLE|0|0|6|CODE TABLE|0|0 +002007|sensorForWaterLevelMeasuringInstrumentType|table|TYPE OF SENSOR FOR WATER LEVEL MEASURING INSTRUMENT|CODE TABLE|0|0|6|CODE TABLE|0|2 +002008|typeOfOffshorePlatform|table|TYPE OF OFFSHORE PLATFORM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002011|radiosondeType|table|RADIOSONDE TYPE|CODE TABLE|0|0|8|CODE TABLE|0|3 +002012|radiosondeComputationalMethod|table|RADIOSONDE COMPUTATIONAL METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +002013|solarAndInfraredRadiationCorrection|table|SOLAR AND INFRARED RADIATION CORRECTION|CODE TABLE|0|0|4|CODE TABLE|0|2 +002014|trackingTechniqueOrStatusOfSystem|table|TRACKING TECHNIQUE/STATUS OF SYSTEM USED|CODE TABLE|0|0|7|CODE TABLE|0|3 +002015|radiosondeCompleteness|table|RADIOSONDE COMPLETENESS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002016|radiosondeConfiguration|flag|RADIOSONDE CONFIGURATION|FLAG TABLE|0|0|5|FLAG TABLE|0|2 +002017|correctionAlgorithmsForHumidityMeasurements|table|CORRECTION ALGORITHMS FOR HUMIDITY MEASUREMENTS|CODE TABLE|0|0|5|CODE TABLE|0|2 +002019|satelliteInstruments|table|SATELLITE INSTRUMENTS|CODE TABLE|0|0|11|CODE TABLE|0|4 +002020|satelliteClassification|table|SATELLITE CLASSIFICATION|CODE TABLE|0|0|9|CODE TABLE|0|3 +002021|satelliteInstrumentDataUsedInProcessing|flag|SATELLITE INSTRUMENT DATA USED IN PROCESSING|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +002022|satelliteDataProcessingTechnique|flag|SATELLITE DATA-PROCESSING TECHNIQUE USED|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +002023|satelliteDerivedWindComputationMethod|table|SATELLITE-DERIVED WIND COMPUTATION METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +002024|meanHumidityComputationalMethod|table|INTEGRATED MEAN HUMIDITY COMPUTATIONAL METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +002025|satelliteChannelsUsedInComputation|flag|SATELLITE CHANNEL(S) USED IN COMPUTATION|FLAG TABLE|0|0|25|FLAG TABLE|0|9 +002026|crossTrackResolution|double|CROSS-TRACK RESOLUTION|m|2|0|12|m|2|4 +002027|alongTrackResolution|double|ALONG-TRACK RESOLUTION|m|2|0|12|m|2|4 +002028|segmentSizeAtNadirInXDirection|long|SEGMENT SIZE AT NADIR IN X-DIRECTION|m|0|0|18|m|0|6 +002029|segmentSizeAtNadirInYDirection|long|SEGMENT SIZE AT NADIR IN Y-DIRECTION|m|0|0|18|m|0|6 +002030|methodOfCurrentMeasurement|table|METHOD OF CURRENT MEASUREMENT|CODE TABLE|0|0|3|CODE TABLE|0|1 +002031|durationAndTimeOfCurrentMeasurement|table|DURATION AND TIME OF CURRENT MEASUREMENT|CODE TABLE|0|0|5|CODE TABLE|0|2 +002032|indicatorForDigitization|table|INDICATOR FOR DIGITIZATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +002033|methodOfSalinityOrDepthMeasurement|table|METHOD OF SALINITY/DEPTH MEASUREMENT|CODE TABLE|0|0|3|CODE TABLE|0|1 +002034|drogueType|table|DROGUE TYPE|CODE TABLE|0|0|5|CODE TABLE|0|2 +002035|cableLength|long|CABLE LENGTH|m|0|0|9|m|0|3 +002036|buoyType|table|BUOY TYPE|CODE TABLE|0|0|2|CODE TABLE|0|1 +002037|methodOfTidalObservation|table|METHOD OF TIDAL OBSERVATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +002038|methodOfWaterTemperatureAndOrOrSalinityMeasurement|table|METHOD OF WATER TEMPERATURE AND/OR SALINITY MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002039|methodOfWetBulbTemperatureMeasurement|table|METHOD OF WET-BULB TEMPERATURE MEASUREMENT|CODE TABLE|0|0|3|CODE TABLE|0|1 +002040|methodOfRemovingVelocityAndMotionOfPlatformFromCurrent|table|METHOD OF REMOVING VELOCITY AND MOTION OF PLATFORM FROM CURRENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002041|methodForEstimatingReportsRelatedToSynopticFeatures|table|METHOD FOR ESTIMATING REPORTS RELATED TO SYNOPTIC FEATURES|CODE TABLE|0|0|6|CODE TABLE|0|2 +002042|indicatorForSeaSurfaceCurrentSpeed|table|INDICATOR FOR SEA-SURFACE CURRENT SPEED|CODE TABLE|0|0|2|CODE TABLE|0|1 +002044|indicatorForMethodOfCalculatingSpectralWaveData|table|INDICATOR FOR METHOD OF CALCULATING SPECTRAL WAVE DATA|CODE TABLE|0|0|4|CODE TABLE|0|2 +002045|platformType|table|INDICATOR FOR TYPE OF PLATFORM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002046|waveMeasurementInstrumentation|table|WAVE MEASUREMENT INSTRUMENTATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +002047|deepOceanTsunameterType|table|DEEP-OCEAN TSUNAMETER TYPE|CODE TABLE|0|0|7|CODE TABLE|0|2 +002048|satelliteSensorIndicator|table|SATELLITE SENSOR INDICATOR|CODE TABLE|0|0|4|CODE TABLE|0|2 +002049|geostationarySatelliteDataProcessingTechnique|flag|GEOSTATIONARY SATELLITE DATA-PROCESSING TECHNIQUE USED|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +002050|geostationarySounderSatelliteChannels|flag|GEOSTATIONARY SOUNDER SATELLITE CHANNELS USED|FLAG TABLE|0|0|20|FLAG TABLE|0|7 +002051|indicatorToSpecifyObservingMethodForExtremeTemperatures|table|INDICATOR TO SPECIFY OBSERVING METHOD FOR EXTREME TEMPERATURES|CODE TABLE|0|0|4|CODE TABLE|0|2 +002052|geostationaryImagerSatelliteChannels|flag|GEOSTATIONARY IMAGER SATELLITE CHANNELS USED|FLAG TABLE|0|0|6|FLAG TABLE|0|2 +002053|goesBrightnessTemperatureCharacteristics|table|GOES-I/M BRIGHTNESS TEMPERATURE CHARACTERISTICS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002054|goesSoundingsParameter|table|GOES-I/M SOUNDINGS PARAMETER CHARACTERISTICS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002055|geostationarySoundingsStatisticalParameters|table|GEOSTATIONARY SOUNDINGS STATISTICAL PARAMETERS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002056|geostationarySoundingsAccuracyStatistics|table|GEOSTATIONARY SOUNDINGS ACCURACY STATISTICS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002057|originOfFirstGuessInformationForGoesIOrMSoundings|table|ORIGIN OF FIRST-GUESS INFORMATION FOR GOES-I/M SOUNDINGS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002058|validTimesOfFirstGuessInformationForGoesIOrMSoundings|table|VALID TIMES OF FIRST-GUESS INFORMATION FOR GOES-I/M SOUNDINGS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002059|originOfAnalysisInformationForGoesIOrMSoundings|table|ORIGIN OF ANALYSIS INFORMATION FOR GOES-I/M SOUNDINGS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002060|originOfSurfaceInformationForGoesIOrMSoundings|table|ORIGIN OF SURFACE INFORMATION FOR GOES-I/M SOUNDINGS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002061|aircraftNavigationalSystem|table|AIRCRAFT NAVIGATIONAL SYSTEM|CODE TABLE|0|0|3|CODE TABLE|0|1 +002062|aircraftDataRelaySystemType|table|TYPE OF AIRCRAFT DATA RELAY SYSTEM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002063|aircraftRollAngle|double|AIRCRAFT ROLL ANGLE|deg|2|-18000|16|deg|2|5 +002064|aircraftRollAngleQuality|table|AIRCRAFT ROLL ANGLE QUALITY|CODE TABLE|0|0|2|CODE TABLE|0|1 +002065|acarsGroundReceivingStation|string|ACARS GROUND-RECEIVING STATION|CCITT IA5|0|0|40|Character|0|5 +002066|radiosondeGroundReceivingSystem|table|RADIOSONDE GROUND RECEIVING SYSTEM|CODE TABLE|0|0|6|CODE TABLE|0|2 +002067|radiosondeOperatingFrequency|long|RADIOSONDE OPERATING FREQUENCY|Hz|-5|0|15|Hz|-5|5 +002070|originalSpecificationOfLatitudeOrLongitude|table|ORIGINAL SPECIFICATION OF LATITUDE/LONGITUDE|CODE TABLE|0|0|4|CODE TABLE|0|2 +002071|spectrographicWavelength|double|SPECTROGRAPHIC WAVELENGTH|m|13|0|30|m|13|10 +002072|spectrographicWidth|double|SPECTROGRAPHIC WIDTH|m|13|0|30|m|13|10 +002080|balloonManufacturer|table|BALLOON MANUFACTURER|CODE TABLE|0|0|6|CODE TABLE|0|2 +002081|balloonType|table|TYPE OF BALLOON|CODE TABLE|0|0|5|CODE TABLE|0|2 +002082|weightOfBalloon|double|WEIGHT OF BALLOON|kg|3|0|12|kg|3|4 +002083|balloonShelterType|table|TYPE OF BALLOON SHELTER|CODE TABLE|0|0|4|CODE TABLE|0|2 +002084|typeOfGasUsedInBalloon|table|TYPE OF GAS USED IN BALLOON|CODE TABLE|0|0|4|CODE TABLE|0|2 +002085|amountOfGasUsedInBalloon|double|AMOUNT OF GAS USED IN BALLOON|kg|3|0|13|kg|3|4 +002086|balloonFlightTrainLength|double|BALLOON FLIGHT TRAIN LENGTH|m|1|0|10|m|1|4 +002087|parachuteSurfaceArea|double|PARACHUTE SURFACE AREA|m2|4|0|15|m2|4|5 +002088|volumeOfGasUsedInBalloon|double|VOLUME OF GAS USED IN BALLOON|m3|3|0|13|m3|3|4 +002091|entrySensor4Or20Ma|double|ENTRY SENSOR 4/20 MA|A|4|0|10|A|4|3 +002092|ozoneProfileComputationMethod|table|OZONE PROFILE COMPUTATION METHOD|CODE TABLE|0|0|3|CODE TABLE|0|1 +002095|pressureSensorType|table|TYPE OF PRESSURE SENSOR|CODE TABLE|0|0|5|CODE TABLE|0|2 +002096|temperatureSensorType|table|TYPE OF TEMPERATURE SENSOR|CODE TABLE|0|0|5|CODE TABLE|0|2 +002097|humiditySensorType|table|TYPE OF HUMIDITY SENSOR|CODE TABLE|0|0|5|CODE TABLE|0|2 +002099|polarization|table|POLARIZATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +002100|radarConstant|double|RADAR CONSTANT|dB|1|0|12|dB|1|4 +002101|antennaType|table|TYPE OF ANTENNA|CODE TABLE|0|0|4|CODE TABLE|0|2 +002102|antennaHeightAboveTowerBase|long|ANTENNA HEIGHT ABOVE TOWER BASE|m|0|0|8|m|0|3 +002103|radome|flag|RADOME|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +002104|antennaPolarization|table|ANTENNA POLARIZATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +002105|maximumAntennaGain|long|MAXIMUM ANTENNA GAIN|dB|0|0|6|dB|0|2 +002106|3DbBeamwidth|double|3-DB BEAMWIDTH|deg|1|0|6|deg|1|2 +002107|sidelobeSuppression|long|SIDELOBE SUPPRESSION|dB|0|0|6|dB|0|2 +002108|crosspolDiscriminationOnAxis|long|CROSSPOL DISCRIMINATION (ON AXIS)|dB|0|0|6|dB|0|2 +002109|antennaSpeedAzimuth|double|ANTENNA SPEED (AZIMUTH)|deg/s|2|0|12|deg/s|2|4 +002110|antennaSpeedElevation|double|ANTENNA SPEED (ELEVATION)|deg/s|2|0|12|deg/s|2|4 +002111|radarIncidenceAngle|double|RADAR INCIDENCE ANGLE|deg|1|0|10|deg|1|4 +002112|radarLookAngle|double|RADAR LOOK ANGLE|deg|1|0|12|deg|1|4 +002113|numberOfAzimuthLooks|long|NUMBER OF AZIMUTH LOOKS|Numeric|0|0|4|Numeric|0|2 +002114|antennaEffectiveSurfaceArea|long|ANTENNA EFFECTIVE SURFACE AREA|m2|0|0|15|m2|0|5 +002115|surfaceObservingEquipmentType|table|TYPE OF SURFACE OBSERVING EQUIPMENT|CODE TABLE|0|0|5|CODE TABLE|0|2 +002116|percentageOf320MhzBandProcessed|long|PERCENTAGE OF 320 MHZ BAND PROCESSED|%|0|0|7|%|0|3 +002117|percentageOf80MhzBandProcessed|long|PERCENTAGE OF 80 MHZ BAND PROCESSED|%|0|0|7|%|0|3 +002118|percentageOf20MhzBandProcessed|long|PERCENTAGE OF 20 MHZ BAND PROCESSED|%|0|0|7|%|0|3 +002119|ra2InstrumentOperations|table|RA-2 INSTRUMENT OPERATIONS|CODE TABLE|0|0|3|CODE TABLE|0|1 +002120|oceanWaveFrequency|double|OCEAN WAVE FREQUENCY|Hz|3|0|10|Hz|3|4 +002121|meanFrequency|long|MEAN FREQUENCY|Hz|-8|0|7|Hz|-8|3 +002122|frequencyAgilityRange|long|FREQUENCY AGILITY RANGE|Hz|-6|-128|8|Hz|-6|3 +002123|peakPower|long|PEAK POWER|W|-4|0|7|W|-4|3 +002124|averagePower|long|AVERAGE POWER|W|-1|0|7|W|-1|3 +002125|pulseRepetitionFrequency|long|PULSE REPETITION FREQUENCY|Hz|-1|0|8|Hz|-1|3 +002126|pulseWidth|double|PULSE WIDTH|s|7|0|6|s|7|2 +002127|receiverIntermediateFrequency|long|RECEIVER INTERMEDIATE FREQUENCY|Hz|-6|0|7|Hz|-6|3 +002128|intermediateFrequencyBandwidth|long|INTERMEDIATE FREQUENCY BANDWIDTH|Hz|-5|0|6|Hz|-5|2 +002129|minimumDetectableSignal|long|MINIMUM DETECTABLE SIGNAL|dB|0|-150|5|dB|0|3 +002130|dynamicRange|long|DYNAMIC RANGE|dB|0|0|7|dB|0|3 +002131|sensitivityTimeControl|flag|SENSITIVITY TIME CONTROL (STC)|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +002132|azimuthPointingAccuracy|double|AZIMUTH POINTING ACCURACY|deg|2|0|6|deg|2|2 +002133|elevationPointingAccuracy|double|ELEVATION POINTING ACCURACY|deg|2|0|6|deg|2|2 +002134|antennaBeamAzimuth|double|ANTENNA BEAM AZIMUTH|deg|2|0|16|deg|2|5 +002135|antennaElevation|double|ANTENNA ELEVATION|deg|2|-9000|15|deg|2|5 +002136|rangeProcessedByRangeAttenuationCorrection|long|RANGE PROCESSED BY RANGE ATTENUATION CORRECTION|m|-3|0|16|m|-3|5 +002137|radarDualPrfRatio|table|RADAR DUAL PRF RATIO|CODE TABLE|0|0|4|CODE TABLE|0|2 +002138|antennaRotationDirection|table|ANTENNA ROTATION DIRECTION|CODE TABLE|0|0|2|CODE TABLE|0|1 +002139|siralInstrumentConfiguration|table|SIRAL INSTRUMENT CONFIGURATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +002140|satelliteRadarBeamAzimuthAngle|long|SATELLITE RADAR BEAM AZIMUTH ANGLE|deg|0|0|9|deg|0|3 +002141|measurementType|string|MEASUREMENT TYPE|CCITT IA5|0|0|24|Character|0|3 +002142|ozoneInstrument|string|OZONE INSTRUMENT SERIAL NUMBER/IDENTIFICATION|CCITT IA5|0|0|32|Character|0|4 +002143|ozoneInstrumentType|table|OZONE INSTRUMENT TYPE|CODE TABLE|0|0|7|CODE TABLE|0|3 +002144|lightSourceTypeForBrewerSpectrophotometer|table|LIGHT SOURCE TYPE FOR BREWER SPECTROPHOTOMETER|CODE TABLE|0|0|4|CODE TABLE|0|2 +002145|wavelengthSettingForDobsonInstruments|table|WAVELENGTH SETTING FOR DOBSON INSTRUMENTS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002146|sourceConditionsForDobsonInstruments|table|SOURCE CONDITIONS FOR DOBSON INSTRUMENTS|CODE TABLE|0|0|4|CODE TABLE|0|2 +002147|methodOfTransmissionToCollectionCentre|table|METHOD OF TRANSMISSION TO COLLECTION CENTRE|CODE TABLE|0|0|6|CODE TABLE|0|2 +002148|dataCollectionLocationSystem|table|DATA COLLECTION AND/OR LOCATION SYSTEM|CODE TABLE|0|0|5|CODE TABLE|0|2 +002149|dataBuoyType|table|TYPE OF DATA BUOY|CODE TABLE|0|0|6|CODE TABLE|0|2 +002150|tovsOrAtovsOrAvhrrInstrumentationChannelNumber|table|TOVS/ATOVS/AVHRR INSTRUMENTATION CHANNEL NUMBER|CODE TABLE|0|0|6|CODE TABLE|0|2 +002151|radiometerIdentifier|table|RADIOMETER IDENTIFIER|CODE TABLE|0|0|11|CODE TABLE|0|4 +002152|satelliteInstrumentUsedInDataProcessing|flag|SATELLITE INSTRUMENT USED IN DATA PROCESSING|FLAG TABLE|0|0|31|FLAG TABLE|0|10 +002153|satelliteChannelCentreFrequency|long|SATELLITE CHANNEL CENTRE FREQUENCY|Hz|-8|0|26|Hz|-8|8 +002154|satelliteChannelBandWidth|long|SATELLITE CHANNEL BAND WIDTH|Hz|-8|0|26|Hz|-8|8 +002155|satelliteChannelWavelength|double|SATELLITE CHANNEL WAVELENGTH|m|9|0|16|m|9|5 +002156|percentageOfValidKuOceanRetrackerMeasurements|long|PERCENTAGE OF VALID KU OCEAN RETRACKER MEASUREMENTS|%|0|0|7|%|0|3 +002157|percentageOfValidSOceanRetrackerMeasurements|long|PERCENTAGE OF VALID S OCEAN RETRACKER MEASUREMENTS|%|0|0|7|%|0|3 +002158|ra2Instrument|flag|RA-2 INSTRUMENT|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +002159|mwrInstrument|flag|MWR INSTRUMENT|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +002160|radarWaveLength|table|WAVELENGTH OF THE RADAR|CODE TABLE|0|0|4|CODE TABLE|0|2 +002161|windProcessingMethod|flag|WIND PROCESSING METHOD|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +002162|extendedHeightAssignmentMethod|table|EXTENDED HEIGHT ASSIGNMENT METHOD|CODE TABLE|0|0|6|CODE TABLE|0|2 +002163|heightAssignmentMethod|table|HEIGHT ASSIGNMENT METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +002164|tracerCorrelationMethod|table|TRACER CORRELATION METHOD|CODE TABLE|0|0|3|CODE TABLE|0|1 +002165|radianceTypeFlags|flag|RADIANCE TYPE FLAGS|FLAG TABLE|0|0|15|FLAG TABLE|0|5 +002166|radianceType|table|RADIANCE TYPE|CODE TABLE|0|0|4|CODE TABLE|0|2 +002167|radianceComputationalMethod|table|RADIANCE COMPUTATIONAL METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +002168|hydrostaticPressureOfLowerEndOfCableThermistorString|long|HYDROSTATIC PRESSURE OF LOWER END OF CABLE (THERMISTOR STRING)|Pa|-3|0|16|kPa|0|5 +002169|anemometerType|table|ANEMOMETER TYPE|CODE TABLE|0|0|4|CODE TABLE|0|2 +002170|aircraftHumiditySensors|table|AIRCRAFT HUMIDITY SENSORS|CODE TABLE|0|0|6|CODE TABLE|0|2 +002171|instrumentSerialNumberForWaterTemperatureProfile|string|INSTRUMENT SERIAL NUMBER FOR WATER TEMPERATURE PROFILE MEASUREMENT|CCITT IA5|0|0|64|Character|0|8 +002172|productTypeForRetrievedAtmosphericGases|table|PRODUCT TYPE FOR RETRIEVED ATMOSPHERIC GASES|CODE TABLE|0|0|8|CODE TABLE|0|3 +002173|squareOfOffNadirAngle|double|SQUARE OF THE OFF-NADIR ANGLE|deg2|4|0|10|deg2|4|4 +002174|meanAcrossTrackPixelNumber|long|MEAN ACROSS TRACK PIXEL NUMBER|Numeric|0|0|9|Numeric|0|3 +002175|methodOfPrecipitationMeasurement|table|METHOD OF PRECIPITATION MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002176|methodOfStateOfGroundMeasurement|table|METHOD OF STATE OF GROUND MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002177|methodOfSnowDepthMeasurement|table|METHOD OF SNOW DEPTH MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002178|methodOfLiquidContentMeasurementOfPrecipitation|table|METHOD OF LIQUID CONTENT MEASUREMENT OF PRECIPITATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +002179|skyConditionAlgorithmType|table|TYPE OF SKY CONDITION ALGORITHM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002180|mainPresentWeatherDetectingSystem|table|MAIN PRESENT WEATHER DETECTING SYSTEM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002181|supplementaryPresentWeatherSensor|flag|SUPPLEMENTARY PRESENT WEATHER SENSOR|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +002182|visibilityMeasurementSystem|table|VISIBILITY MEASUREMENT SYSTEM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002183|cloudDetectionSystem|table|CLOUD DETECTION SYSTEM|CODE TABLE|0|0|4|CODE TABLE|0|2 +002184|lightningDetectionSensorType|table|TYPE OF LIGHTNING DETECTION SENSOR|CODE TABLE|0|0|4|CODE TABLE|0|2 +002185|methodOfEvaporationMeasurement|table|METHOD OF EVAPORATION MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +002186|capabilityToDetectPrecipitationPhenomena|flag|CAPABILITY TO DETECT PRECIPITATION PHENOMENA|FLAG TABLE|0|0|30|FLAG TABLE|0|10 +002187|capabilityToDetectOtherWeatherPhenomena|flag|CAPABILITY TO DETECT OTHER WEATHER PHENOMENA|FLAG TABLE|0|0|18|FLAG TABLE|0|6 +002188|capabilityToDetectObscuration|flag|CAPABILITY TO DETECT OBSCURATION|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +002189|capabilityToDiscriminateLightningStrikes|flag|CAPABILITY TO DISCRIMINATE LIGHTNING STRIKES|FLAG TABLE|0|0|12|FLAG TABLE|0|4 +002190|lagrangianDrifterSubmergenceTimeSubmerged|long|LAGRANGIAN DRIFTER SUBMERGENCE (% TIME SUBMERGED)|%|0|0|7|%|0|3 +002191|geopotentialHeightCalculation|table|GEOPOTENTIAL HEIGHT CALCULATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +003001|surfaceStationType|table|SURFACE STATION TYPE|CODE TABLE|0|0|5|CODE TABLE|0|2 +003003|thermometerOrHygrometerHousing|table|THERMOMETER/HYGROMETER HOUSING|CODE TABLE|0|0|4|CODE TABLE|0|2 +003004|typeOfScreenOrShelterOrRadiationShield|table|TYPE OF SCREEN/SHELTER/RADIATION SHIELD|CODE TABLE|0|0|4|CODE TABLE|0|2 +003005|horizontalWidthOfScreenOrShieldX|double|HORIZONTAL WIDTH OF SCREEN OR SHIELD (X)|m|3|0|16|m|3|5 +003006|horizontalDepthOfScreenOrShieldY|double|HORIZONTAL DEPTH OF SCREEN OR SHIELD (Y)|m|3|0|16|m|3|5 +003007|verticalHeightOfScreenOrShieldZ|double|VERTICAL HEIGHT OF SCREEN OR SHIELD (Z)|m|3|0|16|m|3|5 +003008|artificiallyVentilatedScreenOrShield|table|ARTIFICIALLY VENTILATED SCREEN OR SHIELD|CODE TABLE|0|0|3|CODE TABLE|0|1 +003009|amountOfForcedVentilationAtTimeOfReading|double|AMOUNT OF FORCED VENTILATION AT TIME OF READING|m/s|1|0|9|m/s|1|3 +003010|methodOfSeaOrWaterCurrentMeasurement|table|METHOD OF SEA/WATER CURRENT MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +003011|methodOfDepthCalculation|table|METHOD OF DEPTH CALCULATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +003012|instrumentTypeOrSensorForDissolvedOxygenMeasurement|table|INSTRUMENT TYPE/SENSOR FOR DISSOLVED OXYGEN MEASUREMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +003016|positionOfRoadSensors|table|POSITION OF ROAD SENSORS|CODE TABLE|0|0|4|CODE TABLE|0|2 +003017|extendedTypeOfStation|flag|EXTENDED TYPE OF STATION|FLAG TABLE|0|0|6|FLAG TABLE|0|2 +003018|typeOfRoad|table|TYPE OF ROAD|CODE TABLE|0|0|5|CODE TABLE|0|2 +003019|typeOfConstruction|table|TYPE OF CONSTRUCTION|CODE TABLE|0|0|4|CODE TABLE|0|2 +003020|materialForThermometerOrHygrometerHousing|table|MATERIAL FOR THERMOMETER/HYGROMETER HOUSING|CODE TABLE|0|0|3|CODE TABLE|0|1 +003021|hygrometerHeating|table|HYGROMETER HEATING|CODE TABLE|0|0|2|CODE TABLE|0|1 +003022|instrumentOwner|table|INSTRUMENT OWNER|CODE TABLE|0|0|3|CODE TABLE|0|1 +003023|configurationOfLouversForThermometerOrHygrometerScreen|table|CONFIGURATION OF LOUVERS FOR THERMOMETER/HYGROMETER SCREEN|CODE TABLE|0|0|3|CODE TABLE|0|1 +003024|psychrometricCoefficient|double|PSYCHROMETRIC COEFFICIENT|K-1|6|0|10|K-1|6|3 +003025|crossTrackEstimationAreaSize|long|CROSS-TRACK ESTIMATION AREA SIZE|m|0|5000|16|m|0|5 +003026|alongTrackEstimationAreaSize|long|ALONG-TRACK ESTIMATION AREA SIZE|m|0|5000|16|m|0|5 +003027|typeOfFlightRig|table|TYPE OF FLIGHT RIG|CODE TABLE|0|0|4|CODE TABLE|0|2 +003028|methodOfSnowWaterEquivalentMeasurement|table|METHOD OF SNOW WATER EQUIVALENT MEASUREMENT|CODE TABLE|0|0|6|CODE TABLE|0|2 +004001|year|long|YEAR|a|0|0|12|a|0|4 +004002|month|long|MONTH|mon|0|0|4|mon|0|2 +004003|day|long|DAY|d|0|0|6|d|0|2 +004004|hour|long|HOUR|h|0|0|5|h|0|2 +004005|minute|long|MINUTE|min|0|0|6|min|0|2 +004006|second|long|SECOND|s|0|0|6|s|0|2 +004007|secondsWithinAMinuteMicrosecond|double|SECONDS WITHIN A MINUTE (MICROSECOND ACCURACY)|s|6|0|26|s|6|8 +004011|timeIncrement|long|TIME INCREMENT|a|0|-1024|11|a|0|4 +004012|timeIncrement|long|TIME INCREMENT|mon|0|-1024|11|mon|0|4 +004013|timeIncrement|long|TIME INCREMENT|d|0|-1024|11|d|0|4 +004014|timeIncrement|long|TIME INCREMENT|h|0|-1024|11|h|0|4 +004015|timeIncrement|long|TIME INCREMENT|min|0|-2048|12|min|0|4 +004016|timeIncrement|long|TIME INCREMENT|s|0|-4096|13|s|0|4 +004017|referenceTimePeriodForAccumulatedOrExtremeData|long|REFERENCE TIME PERIOD FOR ACCUMULATED OR EXTREME DATA|min|0|-1440|12|min|0|4 +004021|timePeriod|long|TIME PERIOD OR DISPLACEMENT|a|0|-1024|11|a|0|4 +004022|timePeriod|long|TIME PERIOD OR DISPLACEMENT|mon|0|-1024|11|mon|0|4 +004023|timePeriod|long|TIME PERIOD OR DISPLACEMENT|d|0|-1024|11|d|0|4 +004024|timePeriod|long|TIME PERIOD OR DISPLACEMENT|h|0|-2048|12|h|0|4 +004025|timePeriod|long|TIME PERIOD OR DISPLACEMENT|min|0|-2048|12|min|0|4 +004026|timePeriod|long|TIME PERIOD OR DISPLACEMENT|s|0|-4096|13|s|0|4 +004031|durationOfTimeRelatingToFollowingValue|long|DURATION OF TIME RELATING TO FOLLOWING VALUE|h|0|0|8|h|0|3 +004032|durationOfTimeRelatingToFollowingValue|long|DURATION OF TIME RELATING TO FOLLOWING VALUE|min|0|0|6|min|0|2 +004041|timeDifferenceUtcLmt|long|TIME DIFFERENCE, UTC - LMT|min|0|-1440|12|min|0|4 +004043|dayOfYear|long|DAY OF THE YEAR|d|0|0|9|d|0|3 +004051|principalTimeOfDailyReadingOfMaximumTemperature|long|PRINCIPAL TIME OF DAILY READING OF MAXIMUM TEMPERATURE|h|0|0|5|h|0|2 +004052|principalTimeOfDailyReadingOfMinimumTemperature|long|PRINCIPAL TIME OF DAILY READING OF MINIMUM TEMPERATURE|h|0|0|5|h|0|2 +004053|numberOfDaysWithPrecipitationEqualToOrMoreThan1Mm|long|NUMBER OF DAYS WITH PRECIPITATION EQUAL TO OR MORE THAN 1 MM|Numeric|0|0|6|Numeric|0|2 +004059|timesOfObservationUsedToComputeReportedMeanValues|flag|TIMES OF OBSERVATION USED TO COMPUTE THE REPORTED MEAN VALUES|FLAG TABLE|0|0|6|FLAG TABLE|0|2 +004065|timeIncrement|long|SHORT TIME INCREMENT|min|0|-128|8|min|0|2 +004066|timeIncrement|long|SHORT TIME INCREMENT|s|0|-128|8|s|0|2 +004073|timePeriod|long|SHORT TIME PERIOD OR DISPLACEMENT|d|0|-128|8|d|0|2 +004074|timePeriod|long|SHORT TIME PERIOD OR DISPLACEMENT|h|0|-128|8|h|0|2 +004075|timePeriod|long|SHORT TIME PERIOD OR DISPLACEMENT|min|0|-128|8|min|0|2 +004080|averagingPeriodForFollowingValue|table|AVERAGING PERIOD FOR FOLLOWING VALUE|CODE TABLE|0|0|4|CODE TABLE|0|2 +004086|timePeriod|long|LONG TIME PERIOD OR DISPLACEMENT|s|0|-8192|15|s|0|5 +005001|latitude|double|LATITUDE (HIGH ACCURACY)|deg|5|-9000000|25|deg|5|7 +005002|latitude|double|LATITUDE (COARSE ACCURACY)|deg|2|-9000|15|deg|2|4 +005011|latitudeIncrement|double|LATITUDE INCREMENT (HIGH ACCURACY)|deg|5|-9000000|25|deg|5|7 +005012|latitudeIncrement|double|LATITUDE INCREMENT (COARSE ACCURACY)|deg|2|-9000|15|deg|2|4 +005015|latitudeDisplacement|double|LATITUDE DISPLACEMENT (HIGH ACCURACY)|deg|5|-9000000|25|deg|5|7 +005016|latitudeDisplacement|double|LATITUDE DISPLACEMENT (COARSE ACCURACY)|deg|2|-9000|15|deg|2|4 +005021|bearingOrAzimuth|double|BEARING OR AZIMUTH|deg|2|0|16|deg|2|5 +005022|solarAzimuth|double|SOLAR AZIMUTH|deg|2|0|16|deg|2|5 +005023|sunToSatelliteAzimuthDifference|double|SUN TO SATELLITE AZIMUTH DIFFERENCE|deg|1|-1800|12|deg|1|4 +005030|directionSpectral|long|DIRECTION (SPECTRAL)|deg|0|0|12|deg|0|4 +005031|rowNumber|long|ROW NUMBER|Numeric|0|0|12|Numeric|0|4 +005032|yOffset|double|Y OFFSET|m|2|-1073741824|31|m|2|11 +005033|pixelSizeOnHorizontal1|long|PIXEL SIZE ON HORIZONTAL - 1|m|-1|0|16|m|-1|5 +005034|alongTrackRowNumber|long|ALONG TRACK ROW NUMBER|Numeric|0|0|11|Numeric|0|4 +005035|xDimensionMaximumSize|long|MAXIMUM SIZE OF X-DIMENSION|Numeric|0|0|12|Numeric|0|4 +005036|shipTransectNumberAccordingToSoop|long|SHIP TRANSECT NUMBER ACCORDING TO SOOP|Numeric|0|0|7|Numeric|0|2 +005040|orbitNumber|long|ORBIT NUMBER|Numeric|0|0|24|Numeric|0|8 +005041|scanLineNumber|long|SCAN LINE NUMBER|Numeric|0|0|8|Numeric|0|3 +005042|channelNumber|long|CHANNEL NUMBER|Numeric|0|0|6|Numeric|0|2 +005043|fieldOfViewNumber|long|FIELD OF VIEW NUMBER|Numeric|0|0|8|Numeric|0|3 +005044|satelliteCycleNumber|long|SATELLITE CYCLE NUMBER|Numeric|0|0|11|Numeric|0|4 +005045|fieldOfRegardNumber|long|FIELD OF REGARD NUMBER|Numeric|0|0|8|Numeric|0|3 +005052|channelNumberIncrement|long|CHANNEL NUMBER INCREMENT|Numeric|0|0|5|Numeric|0|2 +005053|fieldOfViewNumberIncrement|long|FIELD OF VIEW NUMBER INCREMENT|Numeric|0|0|5|Numeric|0|2 +005060|yAngularPositionFromCentreOfGravity|double|Y ANGULAR POSITION FROM CENTRE OF GRAVITY|deg|6|-8000000|24|deg|6|8 +005061|zAngularPositionFromCentreOfGravity|double|Z ANGULAR POSITION FROM CENTRE OF GRAVITY|deg|6|-8000000|24|deg|6|8 +005063|spacecraftRoll|double|SPACECRAFT ROLL|deg|2|0|16|deg|2|5 +005064|spacecraftPitch|double|SPACECRAFT PITCH|deg|2|0|16|deg|2|5 +005066|spacecraftYaw|double|SPACECRAFT YAW|deg|2|0|16|deg|2|5 +005067|numberOfScanLines|long|NUMBER OF SCAN LINES|Numeric|0|0|8|Numeric|0|3 +005068|profileNumber|long|PROFILE NUMBER|Numeric|0|0|16|Numeric|0|5 +005069|receiverChannel|table|RECEIVER CHANNEL|CODE TABLE|0|0|2|CODE TABLE|0|1 +005070|observationIdentifier|long|OBSERVATION IDENTIFIER|Numeric|0|0|30|Numeric|0|10 +005071|stripmapIdentifier|long|STRIPMAP IDENTIFIER|Numeric|0|0|16|Numeric|0|5 +005072|numberOfSpectraInRangeDirection|long|NUMBER OF SPECTRA IN RANGE DIRECTION|Numeric|0|0|8|Numeric|0|3 +005073|numberOfSpectraInAzimuthalDirection|long|NUMBER OF SPECTRA IN AZIMUTHAL DIRECTION|Numeric|0|0|8|Numeric|0|3 +005074|indexInRangeDirection|long|INDEX IN RANGE DIRECTION|Numeric|0|0|8|Numeric|0|3 +005075|indexInAzimuthalDirection|long|INDEX IN AZIMUTHAL DIRECTION|Numeric|0|0|8|Numeric|0|3 +006001|longitude|double|LONGITUDE (HIGH ACCURACY)|deg|5|-18000000|26|deg|5|8 +006002|longitude|double|LONGITUDE (COARSE ACCURACY)|deg|2|-18000|16|deg|2|5 +006011|longitudeIncrement|double|LONGITUDE INCREMENT (HIGH ACCURACY)|deg|5|-18000000|26|deg|5|8 +006012|longitudeIncrement|double|LONGITUDE INCREMENT (COARSE ACCURACY)|deg|2|-18000|16|deg|2|5 +006015|longitudeDisplacement|double|LONGITUDE DISPLACEMENT (HIGH ACCURACY)|deg|5|-18000000|26|deg|5|8 +006016|longitudeDisplacement|double|LONGITUDE DISPLACEMENT (COARSE ACCURACY)|deg|2|-18000|16|deg|2|5 +006021|distance|long|DISTANCE|m|-1|0|13|m|-1|4 +006029|waveNumber|double|WAVE NUMBER|/m|1|0|22|/m|1|7 +006030|waveNumberSpectral|double|WAVE NUMBER (SPECTRAL)|rad/m|5|0|13|rad/m|5|4 +006031|columnNumber|long|COLUMN NUMBER|Numeric|0|0|12|Numeric|0|4 +006032|xOffset|double|X OFFSET|m|2|-1073741824|31|m|2|11 +006033|pixelSizeOnHorizontal2|long|PIXEL SIZE ON HORIZONTAL - 2|m|-1|0|16|m|-1|5 +006034|crossTrackCellNumber|long|CROSS-TRACK CELL NUMBER|Numeric|0|0|7|Numeric|0|3 +006035|yDimensionMaximumSize|long|MAXIMUM SIZE OF Y-DIMENSION|Numeric|0|0|12|Numeric|0|4 +006040|radiusOfConfidence|long|RADIUS OF CONFIDENCE|m|0|0|13|m|0|4 +007001|heightOfStation|long|HEIGHT OF STATION|m|0|-400|15|m|0|5 +007002|height|long|HEIGHT OR ALTITUDE|m|-1|-40|16|m|-1|5 +007003|geopotential|long|GEOPOTENTIAL|m2 s-2|-1|-400|17|m2 s-2|-1|6 +007004|pressure|long|PRESSURE|Pa|-1|0|14|Pa|-1|5 +007005|heightIncrement|long|HEIGHT INCREMENT|m|0|-400|12|m|0|4 +007006|heightAboveStation|long|HEIGHT ABOVE STATION|m|0|0|15|m|0|5 +007007|height|long|HEIGHT|m|0|-1000|17|m|0|6 +007008|geopotential|long|GEOPOTENTIAL|m2 s-2|0|-10000|20|m2 s-2|0|7 +007009|geopotentialHeight|long|GEOPOTENTIAL HEIGHT|gpm|0|-1000|17|gpm|0|5 +007010|flightLevel|long|FLIGHT LEVEL|m|0|-1024|16|ft|-1|5 +007012|gridPointAltitude|double|GRID POINT ALTITUDE|m|2|-50000|20|m|2|7 +007021|elevation|double|ELEVATION|deg|2|-9000|15|deg|2|5 +007022|solarElevation|double|SOLAR ELEVATION|deg|2|-9000|15|deg|2|5 +007024|satelliteZenithAngle|double|SATELLITE ZENITH ANGLE|deg|2|-9000|15|deg|2|5 +007025|solarZenithAngle|double|SOLAR ZENITH ANGLE|deg|2|-9000|15|deg|2|5 +007026|satelliteZenithAngle|double|SATELLITE ZENITH ANGLE|deg|4|-900000|21|deg|4|7 +007030|heightOfStationGroundAboveMeanSeaLevel|double|HEIGHT OF STATION GROUND ABOVE MEAN SEA LEVEL|m|1|-4000|17|m|1|5 +007031|heightOfBarometerAboveMeanSeaLevel|double|HEIGHT OF BAROMETER ABOVE MEAN SEA LEVEL|m|1|-4000|17|m|1|5 +007032|heightOfSensorAboveLocalGroundOrDeckOfMarinePlatform|double|HEIGHT OF SENSOR ABOVE LOCAL GROUND (OR DECK OF MARINE PLATFORM)|m|2|0|16|m|2|5 +007033|heightOfSensorAboveWaterSurface|double|HEIGHT OF SENSOR ABOVE WATER SURFACE|m|1|0|12|m|1|4 +007035|zDimensionMaximumSize|long|MAXIMUM SIZE OF Z-DIMENSION|Numeric|0|0|12|Numeric|0|4 +007036|levelIndexOfZ|long|LEVEL INDEX OF Z|Numeric|0|0|12|Numeric|0|4 +007040|impactParameter|double|IMPACT PARAMETER|m|1|62000000|22|m|1|8 +007061|depthBelowLandSurface|double|DEPTH BELOW LAND SURFACE|m|2|0|14|m|2|5 +007062|depthBelowWaterSurface|double|DEPTH BELOW SEA/WATER SURFACE|m|1|0|17|m|1|6 +007063|depthBelowWaterSurface|double|DEPTH BELOW SEA/WATER SURFACE (CM)|m|2|0|20|m|2|7 +007064|representativeHeightOfSensorAboveStation|long|REPRESENTATIVE HEIGHT OF SENSOR ABOVE STATION|m|0|0|4|m|0|2 +007065|waterPressure|long|WATER PRESSURE|Pa|-3|0|17|Pa|-3|6 +007070|drogueDepth|long|DROGUE DEPTH|m|0|0|10|m|0|4 +007071|height|double|HEIGHT (HIGH RESOLUTION)|m|3|-10000000|26|m|3|8 +007072|scanAngle|double|SCAN ANGLE|deg|2|-9000|15|deg|2|6 +008001|verticalSoundingSignificance|flag|VERTICAL SOUNDING SIGNIFICANCE|FLAG TABLE|0|0|7|FLAG TABLE|0|3 +008002|verticalSignificanceSurfaceObservations|table|VERTICAL SIGNIFICANCE (SURFACE OBSERVATIONS)|CODE TABLE|0|0|6|CODE TABLE|0|2 +008003|verticalSignificanceSatelliteObservations|table|VERTICAL SIGNIFICANCE (SATELLITE OBSERVATIONS)|CODE TABLE|0|0|6|CODE TABLE|0|2 +008004|phaseOfAircraftFlight|table|PHASE OF AIRCRAFT FLIGHT|CODE TABLE|0|0|3|CODE TABLE|0|1 +008005|meteorologicalAttributeSignificance|table|METEOROLOGICAL ATTRIBUTE SIGNIFICANCE|CODE TABLE|0|0|4|CODE TABLE|0|2 +008006|ozoneVerticalSoundingSignificance|flag|OZONE VERTICAL SOUNDING SIGNIFICANCE|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +008007|dimensionalSignificance|table|DIMENSIONAL SIGNIFICANCE|CODE TABLE|0|0|4|CODE TABLE|0|2 +008008|radiationVerticalSoundingSignificance|flag|RADIATION VERTICAL SOUNDING SIGNIFICANCE|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +008009|detailedPhaseOfFlight|table|DETAILED PHASE OF FLIGHT|CODE TABLE|0|0|4|CODE TABLE|0|2 +008010|surfaceQualifierForTemperatureData|table|SURFACE QUALIFIER (TEMPERATURE DATA)|CODE TABLE|0|0|5|CODE TABLE|0|2 +008011|meteorologicalFeature|table|METEOROLOGICAL FEATURE|CODE TABLE|0|0|6|CODE TABLE|0|2 +008012|landOrSeaQualifier|table|LAND/SEA QUALIFIER|CODE TABLE|0|0|2|CODE TABLE|0|1 +008013|dayOrNightQualifier|table|DAY/NIGHT QUALIFIER|CODE TABLE|0|0|2|CODE TABLE|0|1 +008014|qualifierForRunwayVisualRange|table|QUALIFIER FOR RUNWAY VISUAL RANGE|CODE TABLE|0|0|4|CODE TABLE|0|2 +008015|significantQualifierForSensor|table|SIGNIFICANT QUALIFIER FOR SENSOR|CODE TABLE|0|0|3|CODE TABLE|0|1 +008016|changeQualifierOfATrendTypeForecastOrAnAerodromeForecast|table|CHANGE QUALIFIER OF A TREND-TYPE FORECAST OR AN AERODROME FORECAST|CODE TABLE|0|0|3|CODE TABLE|0|1 +008017|qualifierOfTimeWhenForecastChangeExpected|table|QUALIFIER OF THE TIME WHEN THE FORECAST CHANGE IS EXPECTED|CODE TABLE|0|0|2|CODE TABLE|0|1 +008018|seawindsLandOrIceSurfaceType|flag|SEAWINDS LAND/ICE SURFACE TYPE|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +008019|qualifierForFollowingCentreIdentifier|table|QUALIFIER FOR FOLLOWING CENTRE IDENTIFIER|CODE TABLE|0|0|4|CODE TABLE|0|2 +008020|totalNumberOfMissingEntitiesWithRespectToAccumulationOrAverage|long|TOTAL NUMBER OF MISSING ENTITIES (WITH RESPECT TO ACCUMULATION OR AVERAGE)|Numeric|0|0|16|Numeric|0|5 +008021|timeSignificance|table|TIME SIGNIFICANCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +008022|totalNumberWithRespectToAccumulationOrAverage|long|TOTAL NUMBER (WITH RESPECT TO ACCUMULATION OR AVERAGE)|Numeric|0|0|16|Numeric|0|5 +008023|firstOrderStatistics|table|FIRST-ORDER STATISTICS|CODE TABLE|0|0|6|CODE TABLE|0|2 +008024|differenceStatistics|table|DIFFERENCE STATISTICS|CODE TABLE|0|0|6|CODE TABLE|0|2 +008025|timeDifferenceQualifier|table|TIME DIFFERENCE QUALIFIER|CODE TABLE|0|0|4|CODE TABLE|0|2 +008026|matrixSignificance|table|MATRIX SIGNIFICANCE|CODE TABLE|0|0|6|CODE TABLE|0|2 +008029|surfaceType|table|SURFACE TYPE|CODE TABLE|0|0|8|CODE TABLE|0|3 +008030|manualOnCodesVolumeI1SectionCCodeTableFromWhichDataAreDerived|long|MANUAL ON CODES (VOLUME I.1, SECTION C) CODE TABLE FROM WHICH DATA ARE DERIVED|Numeric|0|0|13|Numeric|0|4 +008031|dataCategoryCrexTableA|long|DATA CATEGORY - CREX TABLE A|Numeric|0|0|8|Numeric|0|3 +008032|statusOfOperation|table|STATUS OF OPERATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +008033|methodOfDerivationOfPercentageConfidence|table|METHOD OF DERIVATION OF PERCENTAGE CONFIDENCE|CODE TABLE|0|0|7|CODE TABLE|0|3 +008034|temperatureOrSalinityMeasurementQualifier|table|TEMPERATURE/SALINITY MEASUREMENT QUALIFIER|CODE TABLE|0|0|4|CODE TABLE|0|2 +008035|monitoringExerciseType|table|TYPE OF MONITORING EXERCISE|CODE TABLE|0|0|3|CODE TABLE|0|1 +008036|typeOfCentreOrStationPerformingMonitoring|table|TYPE OF CENTRE OR STATION PERFORMING MONITORING|CODE TABLE|0|0|3|CODE TABLE|0|1 +008037|baselineCheckSignificance|table|BASELINE CHECK SIGNIFICANCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +008038|instrumentDataSignificance|table|INSTRUMENT DATA SIGNIFICANCE|CODE TABLE|0|0|8|CODE TABLE|0|3 +008039|timeSignificanceAviationForecast|table|TIME SIGNIFICANCE (AVIATION FORECAST)|CODE TABLE|0|0|6|CODE TABLE|0|2 +008040|flightLevelSignificance|table|FLIGHT LEVEL SIGNIFICANCE|CODE TABLE|0|0|6|CODE TABLE|0|2 +008041|dataSignificance|table|DATA SIGNIFICANCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +008042|extendedVerticalSoundingSignificance|flag|EXTENDED VERTICAL SOUNDING SIGNIFICANCE|FLAG TABLE|0|0|18|FLAG TABLE|0|6 +008043|atmosphericChemical|table|ATMOSPHERIC CHEMICAL OR PHYSICAL CONSTITUENT TYPE|CODE TABLE|0|0|8|CODE TABLE|0|3 +008044|casRegistryNumber|string|CAS REGISTRY NUMBER|CCITT IA5|0|0|88|Character|0|11 +008046|atmosphericChemical|table|ATMOSPHERIC CHEMICAL OR PHYSICAL CONSTITUENT TYPE|Common CODE TABLE C-14|0|0|16|Common CODE TABLE C-14|0|5 +008049|numberOfObservations|long|NUMBER OF OBSERVATIONS|Numeric|0|0|8|Numeric|0|3 +008050|qualifierForNumberOfMissingValuesInCalculationOfStatistic|table|QUALIFIER FOR NUMBER OF MISSING VALUES IN CALCULATION OF STATISTIC|CODE TABLE|0|0|4|CODE TABLE|0|2 +008051|qualifierForNumberOfMissingValuesInCalculationOfStatistic|table|QUALIFIER FOR NUMBER OF MISSING VALUES IN CALCULATION OF STATISTIC|CODE TABLE|0|0|3|CODE TABLE|0|1 +008052|conditionForWhichNumberOfDaysOfOccurrenceFollows|table|CONDITION FOR WHICH NUMBER OF DAYS OF OCCURRENCE FOLLOWS|CODE TABLE|0|0|5|CODE TABLE|0|2 +008053|dayOfOccurrenceQualifier|table|DAY OF OCCURRENCE QUALIFIER|CODE TABLE|0|0|2|CODE TABLE|0|1 +008054|qualifierForWindSpeedOrWindGusts|table|QUALIFIER FOR WIND SPEED OR WIND GUSTS|CODE TABLE|0|0|3|CODE TABLE|0|1 +008060|sampleScanningModeSignificance|table|SAMPLE SCANNING MODE SIGNIFICANCE|CODE TABLE|0|0|4|CODE TABLE|0|2 +008065|sunGlintIndicator|table|SUN-GLINT INDICATOR|CODE TABLE|0|0|2|CODE TABLE|0|1 +008066|semiTransparencyIndicator|table|SEMI-TRANSPARENCY INDICATOR|CODE TABLE|0|0|2|CODE TABLE|0|1 +008070|verticalSoundingProductQualifier|table|VERTICAL SOUNDING PRODUCT QUALIFIER|CODE TABLE|0|0|4|CODE TABLE|0|2 +008072|pixelType|table|PIXEL(S) TYPE|CODE TABLE|0|0|3|CODE TABLE|0|1 +008074|altimeterEchoType|table|ALTIMETER ECHO TYPE|CODE TABLE|0|0|2|CODE TABLE|0|1 +008075|orbitQualifier|table|ASCENDING/DESCENDING ORBIT QUALIFIER|CODE TABLE|0|0|2|CODE TABLE|0|1 +008076|band|table|TYPE OF BAND|CODE TABLE|0|0|6|CODE TABLE|0|2 +008077|radiometerSensedSurfaceType|table|RADIOMETER SENSED SURFACE TYPE|CODE TABLE|0|0|7|CODE TABLE|0|3 +008079|productStatus|table|PRODUCT STATUS|CODE TABLE|0|0|4|CODE TABLE|0|2 +008080|qualifierForGtsppQualityFlag|table|QUALIFIER FOR GTSPP QUALITY FLAG|CODE TABLE|0|0|6|CODE TABLE|0|2 +008081|equipmentType|table|TYPE OF EQUIPMENT|CODE TABLE|0|0|6|CODE TABLE|0|2 +008082|modificationOfSensorHeightToAnotherValue|table|MODIFICATION OF SENSOR HEIGHT TO ANOTHER VALUE|CODE TABLE|0|0|3|CODE TABLE|0|1 +008083|nominalValueIndicator|flag|NOMINAL VALUE INDICATOR|FLAG TABLE|0|0|15|FLAG TABLE|0|5 +008085|beamIdentifier|table|BEAM IDENTIFIER|CODE TABLE|0|0|3|CODE TABLE|0|1 +008086|verticalSignificanceForNwp|flag|VERTICAL SIGNIFICANCE FOR NWP|FLAG TABLE|0|0|12|FLAG TABLE|0|4 +008087|cornerPositionOfObservation|table|CORNER POSITION OF OBSERVATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +008088|mapSignificance|table|MAP SIGNIFICANCE|CODE TABLE|0|0|6|CODE TABLE|0|2 +008090|decimalScaleOfFollowingSignificands|long|DECIMAL SCALE OF FOLLOWING SIGNIFICANDS|Numeric|0|-127|8|Numeric|0|3 +008091|coordinatesSignificance|table|COORDINATES SIGNIFICANCE|CODE TABLE|0|0|8|CODE TABLE|0|3 +008092|measurementUncertaintyExpression|table|MEASUREMENT UNCERTAINTY EXPRESSION|CODE TABLE|0|0|5|CODE TABLE|0|2 +008093|measurementUncertaintySignificance|table|MEASUREMENT UNCERTAINTY SIGNIFICANCE|CODE TABLE|0|0|5|CODE TABLE|0|2 +010001|heightOfLandSurface|long|HEIGHT OF LAND SURFACE|m|0|-400|15|m|0|5 +010002|nonCoordinateHeight|long|HEIGHT|m|-1|-40|16|m|-1|5 +010003|nonCoordinateGeopotential|long|GEOPOTENTIAL|m2 s-2|-1|-400|17|m2 s-2|-1|6 +010004|nonCoordinatePressure|long|PRESSURE|Pa|-1|0|14|Pa|-1|5 +010007|nonCoordinateHeight|long|HEIGHT|m|0|-1000|17|m|0|6 +010008|nonCoordinateGeopotential|long|GEOPOTENTIAL|m2 s-2|0|-10000|20|m2 s-2|0|7 +010009|nonCoordinateGeopotentialHeight|long|GEOPOTENTIAL HEIGHT|gpm|0|-1000|17|gpm|0|5 +010010|minimumPressureReducedToMeanSeaLevel|long|MINIMUM PRESSURE REDUCED TO MEAN SEA LEVEL|Pa|-1|0|14|Pa|-1|5 +010011|maximumPressureReducedToMeanSeaLevel|long|MAXIMUM PRESSURE REDUCED TO MEAN SEA LEVEL|Pa|-1|0|14|Pa|-1|5 +010031|DistanceFromEarthCentreInDirectionOfNorthPole|double|IN DIRECTION OF THE NORTH POLE, DISTANCE FROM THE EARTH'S CENTRE|m|2|-1073741824|31|m|2|10 +010032|satelliteDistanceToEarthCentre|double|SATELLITE DISTANCE TO EARTH'S CENTRE|m|1|0|27|m|2|9 +010033|altitudePlatformToEllipsoid|double|ALTITUDE (PLATFORM TO ELLIPSOID)|m|1|0|27|m|2|9 +010034|earthRadius|double|EARTH'S RADIUS|m|1|0|27|m|2|9 +010035|earthLocalRadiusOfCurvature|double|EARTH'S LOCAL RADIUS OF CURVATURE|m|1|62000000|22|m|1|8 +010036|geoidUndulation|double|GEOID UNDULATION|m|2|-15000|15|m|2|6 +010038|maximumHeightOfDeckCargoAboveSummerLoadLine|long|MAXIMUM HEIGHT OF DECK CARGO ABOVE SUMMER LOAD LINE|m|0|0|6|m|0|2 +010039|departureOfReferenceLevelSummerMaximumLoadLineFromActualSeaLevel|long|DEPARTURE OF REFERENCE LEVEL (SUMMER MAXIMUM LOAD LINE) FROM ACTUAL SEA LEVEL|m|0|-32|6|m|0|3 +010040|numberOfRetrievedLayers|long|NUMBER OF RETRIEVED LAYERS|Numeric|0|0|10|Numeric|0|4 +010050|standardDeviationAltitude|double|STANDARD DEVIATION ALTITUDE|m|2|0|16|m|2|5 +010051|pressureReducedToMeanSeaLevel|long|PRESSURE REDUCED TO MEAN SEA LEVEL|Pa|-1|0|14|Pa|-1|5 +010052|altimeterSettingQnh|long|ALTIMETER SETTING (QNH)|Pa|-1|0|14|Pa|-1|5 +010053|globalNavigationSatelliteSystemAltitude|long|GLOBAL NAVIGATION SATELLITE SYSTEM ALTITUDE|m|0|-1000|17|m|0|5 +010060|pressureChange|long|PRESSURE CHANGE|Pa|-1|-1024|11|Pa|-1|4 +010061|3HourPressureChange|long|3-HOUR PRESSURE CHANGE|Pa|-1|-500|10|Pa|-1|4 +010062|24HourPressureChange|long|24-HOUR PRESSURE CHANGE|Pa|-1|-1000|11|Pa|-1|4 +010063|characteristicOfPressureTendency|table|CHARACTERISTIC OF PRESSURE TENDENCY|CODE TABLE|0|0|4|CODE TABLE|0|2 +010064|sigmetCruisingLevel|table|SIGMET CRUISING LEVEL|CODE TABLE|0|0|3|CODE TABLE|0|1 +010070|indicatedAircraftAltitude|long|INDICATED AIRCRAFT ALTITUDE|m|0|-400|16|m|0|5 +010071|verticalResolution|long|VERTICAL RESOLUTION|m|0|0|14|m|0|5 +010079|offNadirAngleOfTheSatelliteFromPlatformData|double|OFF-NADIR ANGLE OF THE SATELLITE FROM PLATFORM DATA|deg|4|0|16|deg|4|5 +010080|viewingZenithAngle|double|VIEWING ZENITH ANGLE|deg|2|-9000|15|deg|2|5 +010081|cogAltitudeAboveReferenceEllipsoid|double|ALTITUDE OF COG ABOVE REFERENCE ELLIPSOID|m|3|0|31|m|3|10 +010082|instantaneousAltitudeRate|double|INSTANTANEOUS ALTITUDE RATE|m/s|3|-65536|17|m/s|3|6 +010083|squaredOffNadirAngleOfSatelliteFromPlatformData|double|SQUARED OFF-NADIR ANGLE OF THE SATELLITE FROM PLATFORM DATA|deg2|2|0|16|deg2|2|5 +010084|squaredOffNadirAngleOfSatelliteFromWaveformData|double|SQUARED OFF-NADIR ANGLE OF THE SATELLITE FROM WAVEFORM DATA|deg2|2|0|16|deg2|2|5 +010085|meanSeaSurfaceHeight|double|MEAN SEA-SURFACE HEIGHT|m|3|-131072|18|m|3|6 +010086|geoidHeight|double|GEOID'S HEIGHT|m|3|-131072|18|m|3|6 +010087|oceanDepthOrLandElevation|double|OCEAN DEPTH/LAND ELEVATION|m|1|-131072|18|m|1|6 +010088|totalGeocentricOceanTideHeightSolution1|double|TOTAL GEOCENTRIC OCEAN TIDE HEIGHT (SOLUTION 1)|m|3|-32768|16|m|3|5 +010089|totalGeocentricOceanTideHeightSolution2|double|TOTAL GEOCENTRIC OCEAN TIDE HEIGHT (SOLUTION 2)|m|3|-32768|16|m|3|5 +010090|longPeriodTideHeight|double|LONG PERIOD TIDE HEIGHT|m|3|-32768|16|m|3|5 +010091|tidalLoadingHeight|double|TIDAL LOADING HEIGHT|m|3|-32768|16|m|3|5 +010092|solidEarthTideHeight|double|SOLID EARTH TIDE HEIGHT|m|3|-32768|16|m|3|5 +010093|geocentricPoleTideHeight|double|GEOCENTRIC POLE TIDE HEIGHT|m|3|-32768|16|m|3|5 +010095|heightOfAtmosphere|long|HEIGHT OF ATMOSPHERE USED|m|0|0|16|m|0|5 +010096|meanDynamicTopography|double|MEAN DYNAMIC TOPOGRAPHY|m|3|-131072|18|m|3|6 +010097|meanSeaSurfaceHeightFromAltimeterOnly|double|MEAN SEA-SURFACE HEIGHT FROM ALTIMETER ONLY|m|3|-131072|18|m|3|6 +010098|loadingTideHeightGeocentricOceanTideSolution1|double|LOADING TIDE HEIGHT GEOCENTRIC OCEAN TIDE SOLUTION 1|m|4|-2000|12|m|4|4 +010099|loadingTideHeightGeocentricOceanTideSolution2|double|LOADING TIDE HEIGHT GEOCENTRIC OCEAN TIDE SOLUTION 2|m|4|-2000|12|m|4|4 +010100|nonEquilibriumLongPeriodTideHeight|double|NON-EQUILIBRIUM LONG PERIOD TIDE HEIGHT|m|4|-2000|12|m|4|4 +010101|squaredOffNadirAngleOfSatelliteFromWaveformData|double|SQUARED OFF-NADIR ANGLE OF THE SATELLITE FROM WAVEFORM DATA|deg2|2|-32768|16|deg2|2|5 +010102|seaSurfaceHeightAnomaly|double|SEA-SURFACE HEIGHT ANOMALY|m|3|-32768|16|m|3|5 +010103|meanDynamicTopographyAccuracy|double|MEAN DYNAMIC TOPOGRAPHY ACCURACY|m|3|-131072|18|m|3|6 +011001|windDirection|long|WIND DIRECTION|deg|0|0|9|deg|0|3 +011002|windSpeed|double|WIND SPEED|m/s|1|0|12|m/s|1|4 +011003|u|double|U-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011004|v|double|V-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011005|w|double|W-COMPONENT|Pa/s|1|-512|10|Pa/s|1|4 +011006|w|double|W-COMPONENT|m/s|2|-4096|13|m/s|2|4 +011007|relativeWindDirectionInDegreesOffBow|long|RELATIVE WIND DIRECTION (IN DEGREES OFF BOW)|deg|0|0|9|deg|0|3 +011008|relativeWindSpeed|double|RELATIVE WIND SPEED|m/s|1|0|12|m/s|1|4 +011010|windDirectionAssociatedWithWindSpeedWhichFollows|long|WIND DIRECTION ASSOCIATED WITH WIND SPEED WHICH FOLLOWS|deg|0|0|9|deg|0|3 +011011|windDirectionAt10M|long|WIND DIRECTION AT 10 M|deg|0|0|9|deg|0|3 +011012|windSpeedAt10M|double|WIND SPEED AT 10 M|m/s|1|0|12|m/s|1|4 +011013|windDirectionAt5M|long|WIND DIRECTION AT 5 M|deg|0|0|9|deg|0|3 +011014|windSpeedAt5M|double|WIND SPEED AT 5 M|m/s|1|0|12|m/s|1|4 +011016|extremeCounterclockwiseWindDirectionOfAVariableWind|long|EXTREME COUNTERCLOCKWISE WIND DIRECTION OF A VARIABLE WIND|deg|0|0|9|deg|0|3 +011017|extremeClockwiseWindDirectionOfAVariableWind|long|EXTREME CLOCKWISE WIND DIRECTION OF A VARIABLE WIND|deg|0|0|9|deg|0|3 +011019|steadinessOfWind|long|STEADINESS OF WIND|%|0|0|7|%|0|3 +011021|relativeVorticity|double|RELATIVE VORTICITY|/s|9|-65536|17|/s|9|6 +011022|divergence|double|DIVERGENCE|/s|9|-65536|17|/s|9|6 +011023|velocityPotential|long|VELOCITY POTENTIAL|m2/s|-2|-65536|17|m2/s|-2|6 +011030|extendedDegreeOfTurbulence|table|EXTENDED DEGREE OF TURBULENCE|CODE TABLE|0|0|6|CODE TABLE|0|2 +011031|degreeOfTurbulence|table|DEGREE OF TURBULENCE|CODE TABLE|0|0|4|CODE TABLE|0|2 +011032|heightOfBaseOfTurbulence|long|HEIGHT OF BASE OF TURBULENCE|m|-1|-40|16|m|-1|5 +011033|heightOfTopOfTurbulence|long|HEIGHT OF TOP OF TURBULENCE|m|-1|-40|16|m|-1|5 +011034|verticalGustVelocity|double|VERTICAL GUST VELOCITY|m/s|1|-1024|11|m/s|1|4 +011035|verticalGustAcceleration|double|VERTICAL GUST ACCELERATION|m s-2|2|-8192|14|m s-2|2|5 +011036|maximumDerivedEquivalentVerticalGustSpeed|double|MAXIMUM DERIVED EQUIVALENT VERTICAL GUST SPEED|m/s|1|0|10|m/s|1|4 +011037|turbulenceIndex|table|TURBULENCE INDEX|CODE TABLE|0|0|6|CODE TABLE|0|2 +011038|timeOfOccurrenceOfPeakEddyDissipationRate|table|TIME OF OCCURRENCE OF PEAK EDDY DISSIPATION RATE|CODE TABLE|0|0|5|CODE TABLE|0|2 +011039|extendedTimeOfOccurrenceOfPeakEddyDissipationRate|table|EXTENDED TIME OF OCCURRENCE OF PEAK EDDY DISSIPATION RATE|CODE TABLE|0|0|6|CODE TABLE|0|2 +011040|maximumWindSpeedMeanWind|double|MAXIMUM WIND SPEED (MEAN WIND)|m/s|1|0|12|m/s|1|4 +011041|maximumWindGustSpeed|double|MAXIMUM WIND GUST SPEED|m/s|1|0|12|m/s|1|4 +011042|maximumWindSpeed10MinuteMeanWind|double|MAXIMUM WIND SPEED (10-MINUTE MEAN WIND)|m/s|1|0|12|m/s|1|4 +011043|maximumWindGustDirection|long|MAXIMUM WIND GUST DIRECTION|deg|0|0|9|deg|0|3 +011044|meanWindDirectionForSurfaceTo1500M|long|MEAN WIND DIRECTION FOR SURFACE - 1 500 M (5 000 FEET)|deg|0|0|9|deg|0|3 +011045|meanWindSpeedForSurfaceTo1500M|double|MEAN WIND SPEED FOR SURFACE - 1 500 M (5 000 FEET)|m/s|1|0|12|m/s|1|4 +011046|maximumInstantaneousWindSpeed|double|MAXIMUM INSTANTANEOUS WIND SPEED|m/s|1|0|12|m/s|1|4 +011047|maximumInstantaneousWindSpeedOver10Minutes|double|MAXIMUM INSTANTANEOUS WIND SPEED OVER 10 MINUTES|m/s|1|0|12|m/s|1|4 +011049|windDirectionStandardDeviation|long|STANDARD DEVIATION OF WIND DIRECTION|deg|0|0|9|deg|0|3 +011050|standardDeviationOfHorizontalWindSpeed|double|STANDARD DEVIATION OF HORIZONTAL WIND SPEED|m/s|1|0|12|m/s|1|4 +011051|standardDeviationOfVerticalWindSpeed|double|STANDARD DEVIATION OF VERTICAL WIND SPEED|m/s|1|0|8|m/s|1|3 +011052|formalUncertaintyInWindSpeed|double|FORMAL UNCERTAINTY IN WIND SPEED|m/s|2|0|13|m/s|2|5 +011053|formalUncertaintyInWindDirection|double|FORMAL UNCERTAINTY IN WIND DIRECTION|deg|2|0|15|deg|2|5 +011054|meanWindDirectionFor1500To3000M|long|MEAN WIND DIRECTION FOR 1 500 - 3 000 M|deg|0|0|9|deg|0|3 +011055|meanWindSpeedFor1500To3000M|double|MEAN WIND SPEED FOR 1 500 - 3 000 M|m/s|1|0|12|m/s|1|4 +011061|absoluteWindShearIn1KmLayerBelow|double|ABSOLUTE WIND SHEAR IN 1 KM LAYER BELOW|m/s|1|0|12|m/s|1|4 +011062|absoluteWindShearIn1KmLayerAbove|double|ABSOLUTE WIND SHEAR IN 1 KM LAYER ABOVE|m/s|1|0|12|m/s|1|4 +011070|designatorOfRunwayAffectedByWindShearIncludingAll|string|DESIGNATOR OF THE RUNWAY AFFECTED BY WIND SHEAR (INCLUDING ALL)|CCITT IA5|0|0|32|Character|0|4 +011071|turbulentVerticalMomentumFlux|double|TURBULENT VERTICAL MOMENTUM FLUX|m2 s-2|3|-128|14|m2 s-2|3|5 +011072|turbulentVerticalBuoyancyFlux|double|TURBULENT VERTICAL BUOYANCY FLUX|K m s-1|3|-128|11|K m s-1|3|4 +011073|turbulentKineticEnergy|double|TURBULENT KINETIC ENERGY|m2 s-2|2|-1024|13|m2 s-2|2|4 +011074|dissipationEnergy|double|DISSIPATION ENERGY|m2 s-2|2|-1024|10|m2 s-2|2|4 +011075|meanTurbulenceIntensityEddyDissipationRate|double|MEAN TURBULENCE INTENSITY (EDDY DISSIPATION RATE)|m2/3 s-1|2|0|8|m2/3 s-1|2|3 +011076|peakTurbulenceIntensityEddyDissipationRate|double|PEAK TURBULENCE INTENSITY (EDDY DISSIPATION RATE)|m2/3 s-1|2|0|8|m2/3 s-1|2|3 +011077|reportingIntervalOrAveragingTimeForEddyDissipationRate|long|REPORTING INTERVAL OR AVERAGING TIME FOR EDDY DISSIPATION RATE|s|0|0|12|s|0|4 +011081|modelWindDirectionAt10M|double|MODEL WIND DIRECTION AT 10 M|deg|2|0|16|deg|2|5 +011082|modelWindSpeedAt10M|double|MODEL WIND SPEED AT 10 M|m/s|2|0|14|m/s|2|4 +011083|windSpeed|long|WIND SPEED|km/h|0|0|9|km/h|0|3 +011084|windSpeed|long|WIND SPEED|kt|0|0|8|kt|0|3 +011085|maximumWindGustSpeed|long|MAXIMUM WIND GUST SPEED|km/h|0|0|9|km/h|0|3 +011086|maximumWindGustSpeed|long|MAXIMUM WIND GUST SPEED|kt|0|0|8|kt|0|3 +011095|u|double|U-COMPONENT OF THE MODEL WIND VECTOR|m/s|1|-4096|13|m/s|1|4 +011096|v|double|V-COMPONENT OF THE MODEL WIND VECTOR|m/s|1|-4096|13|m/s|1|4 +011097|windSpeedFromAltimeter|double|WIND SPEED FROM ALTIMETER|m/s|2|0|12|m/s|2|4 +011098|windSpeedFromRadiometer|double|WIND SPEED FROM RADIOMETER|m/s|2|0|12|m/s|2|4 +011100|aircraftTrueAirspeed|double|AIRCRAFT TRUE AIRSPEED|m/s|1|0|12|m/s|1|4 +011101|aircraftGroundSpeedUComponent|double|AIRCRAFT GROUND SPEED U-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011102|aircraftGroundSpeedVComponent|double|AIRCRAFT GROUND SPEED V-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011103|aircraftGroundSpeedWComponent|double|AIRCRAFT GROUND SPEED W-COMPONENT|m/s|1|-512|10|m/s|1|3 +011104|aircraftTrueHeading|long|TRUE HEADING OF AIRCRAFT, SHIP OR OTHER MOBILE PLATFORM|deg|0|0|9|deg|0|3 +011105|edrAlgorithmVersion|long|EDR ALGORITHM VERSION|Numeric|0|0|6|Numeric|0|2 +011106|runningMinimumConfidence|long|RUNNING MINIMUM CONFIDENCE|Numeric|1|0|4|Numeric|1|2 +011107|maximumNumberBadInputs|long|MAXIMUM NUMBER BAD INPUTS|Numeric|0|0|5|Numeric|0|2 +011108|peakLocation|long|PEAK LOCATION|Numeric|1|0|4|Numeric|1|2 +011109|numberOfGoodEdr|long|NUMBER OF GOOD EDR|Numeric|0|0|4|Numeric|0|2 +011110|uncertaintyInUComponent|double|UNCERTAINTY IN U-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011111|uncertaintyInVComponent|double|UNCERTAINTY IN V-COMPONENT|m/s|1|-4096|13|m/s|1|4 +011112|uncertaintyInWComponent|double|UNCERTAINTY IN W-COMPONENT|m/s|2|-4096|13|m/s|2|4 +011113|trackingCorrelationOfVector|long|TRACKING CORRELATION OF VECTOR|Numeric|3|-1000|12|Numeric|3|4 +012001|airTemperature|double|TEMPERATURE/AIR TEMPERATURE|K|1|0|12|C|1|3 +012002|wetBulbTemperature|double|WET-BULB TEMPERATURE|K|1|0|12|C|1|3 +012003|dewpointTemperature|double|DEWPOINT TEMPERATURE|K|1|0|12|C|1|3 +012004|airTemperatureAt2M|double|AIR TEMPERATURE AT 2 M|K|1|0|12|C|1|3 +012005|wetBulbTemperatureAt2M|double|WET-BULB TEMPERATURE AT 2 M|K|1|0|12|C|1|3 +012006|dewpointTemperatureAt2M|double|DEWPOINT TEMPERATURE AT 2 M|K|1|0|12|C|1|3 +012007|virtualTemperature|double|VIRTUAL TEMPERATURE|K|1|0|12|C|1|3 +012008|uncertaintyInVirtualTemperature|double|UNCERTAINTY IN VIRTUAL TEMPERATURE|K|1|0|12|C|1|4 +012011|maximumTemperatureAtHeightAndOverPeriodSpecified|double|MAXIMUM TEMPERATURE, AT HEIGHT AND OVER PERIOD SPECIFIED|K|1|0|12|C|1|3 +012012|minimumTemperatureAtHeightAndOverPeriodSpecified|double|MINIMUM TEMPERATURE, AT HEIGHT AND OVER PERIOD SPECIFIED|K|1|0|12|C|1|3 +012013|groundMinimumTemperaturePast12Hours|double|GROUND MINIMUM TEMPERATURE, PAST 12 HOURS|K|1|0|12|C|1|3 +012014|maximumTemperatureAt2MPast12Hours|double|MAXIMUM TEMPERATURE AT 2 M, PAST 12 HOURS|K|1|0|12|C|1|3 +012015|minimumTemperatureAt2MPast12Hours|double|MINIMUM TEMPERATURE AT 2 M, PAST 12 HOURS|K|1|0|12|C|1|3 +012016|maximumTemperatureAt2MPast24Hours|double|MAXIMUM TEMPERATURE AT 2 M, PAST 24 HOURS|K|1|0|12|C|1|3 +012017|minimumTemperatureAt2MPast24Hours|double|MINIMUM TEMPERATURE AT 2 M, PAST 24 HOURS|K|1|0|12|C|1|3 +012021|maximumTemperatureAt2M|double|MAXIMUM TEMPERATURE AT 2 M|K|2|0|16|C|2|4 +012022|minimumTemperatureAt2M|double|MINIMUM TEMPERATURE AT 2 M|K|2|0|16|C|2|4 +012023|temperature|long|TEMPERATURE|C|0|-99|8|C|0|2 +012024|dewpointTemperature|long|DEWPOINT TEMPERATURE|C|0|-99|8|C|0|2 +012030|soilTemperature|double|SOIL TEMPERATURE|K|1|0|12|C|1|3 +012049|temperatureChangeOverSpecifiedPeriod|long|TEMPERATURE CHANGE OVER SPECIFIED PERIOD|K|0|-30|6|C|0|2 +012051|standardDeviationTemperature|double|STANDARD DEVIATION TEMPERATURE|K|1|0|10|C|1|3 +012052|highestDailyMeanTemperature|double|HIGHEST DAILY MEAN TEMPERATURE|K|1|0|12|C|1|3 +012053|lowestDailyMeanTemperature|double|LOWEST DAILY MEAN TEMPERATURE|K|1|0|12|C|1|3 +012060|awsEnclosureInternalTemperature|double|AWS ENCLOSURE INTERNAL TEMPERATURE|K|1|0|12|C|1|3 +012061|skinTemperature|double|SKIN TEMPERATURE|K|1|0|12|C|1|3 +012062|equivalentBlackBodyTemperature|double|EQUIVALENT BLACK BODY TEMPERATURE|K|1|0|12|C|1|3 +012063|brightnessTemperature|double|BRIGHTNESS TEMPERATURE|K|1|0|12|C|1|3 +012064|instrumentTemperature|double|INSTRUMENT TEMPERATURE|K|1|0|12|K|1|4 +012065|standardDeviationBrightnessTemperature|double|STANDARD DEVIATION BRIGHTNESS TEMPERATURE|K|1|0|12|K|1|4 +012066|antennaTemperature|double|ANTENNA TEMPERATURE|K|2|0|16|C|2|5 +012070|warmLoadTemperature|double|WARM LOAD TEMPERATURE|K|2|0|16|K|2|5 +012071|coldestClusterTemperature|double|COLDEST CLUSTER TEMPERATURE|K|1|0|12|K|1|4 +012072|radiance|double|RADIANCE|W m-2 sr-1|6|0|31|W m-2 sr-1|6|9 +012075|spectralRadiance|long|SPECTRAL RADIANCE|W m-3 sr-1|-3|0|16|W m-3 sr-1|-3|5 +012076|radiance|double|RADIANCE|W m-2 sr-1|3|0|16|W m-2 sr-1|3|5 +012080|brightnessTemperatureRealPart|double|BRIGHTNESS TEMPERATURE REAL PART|K|2|-10000|16|K|2|5 +012081|brightnessTemperatureImaginaryPart|double|BRIGHTNESS TEMPERATURE IMAGINARY PART|K|2|-10000|16|K|2|5 +012082|pixelRadiometricAccuracy|double|PIXEL RADIOMETRIC ACCURACY|K|2|0|12|K|2|4 +012101|airTemperature|double|TEMPERATURE/AIR TEMPERATURE|K|2|0|16|C|2|4 +012102|wetBulbTemperature|double|WET-BULB TEMPERATURE|K|2|0|16|C|2|4 +012103|dewpointTemperature|double|DEWPOINT TEMPERATURE|K|2|0|16|C|2|4 +012104|airTemperatureAt2M|double|AIR TEMPERATURE AT 2 M|K|2|0|16|C|2|4 +012105|webBulbTemperatureAt2M|double|WEB-BULB TEMPERATURE AT 2 M|K|2|0|16|C|2|4 +012106|dewpointTemperatureAt2M|double|DEWPOINT TEMPERATURE AT 2 M|K|2|0|16|C|2|4 +012107|virtualTemperature|double|VIRTUAL TEMPERATURE|K|2|0|16|C|2|4 +012111|maximumTemperatureAtHeightAndOverPeriodSpecified|double|MAXIMUM TEMPERATURE, AT HEIGHT AND OVER PERIOD SPECIFIED|K|2|0|16|C|2|4 +012112|minimumTemperatureAtHeightAndOverPeriodSpecified|double|MINIMUM TEMPERATURE, AT HEIGHT AND OVER PERIOD SPECIFIED|K|2|0|16|C|2|4 +012113|groundMinimumTemperaturePast12Hours|double|GROUND MINIMUM TEMPERATURE, PAST 12 HOURS|K|2|0|16|C|2|4 +012114|maximumTemperatureAt2MPast12Hours|double|MAXIMUM TEMPERATURE AT 2 M, PAST 12 HOURS|K|2|0|16|C|2|4 +012115|minimumTemperatureAt2MPast12Hours|double|MINIMUM TEMPERATURE AT 2 M, PAST 12 HOURS|K|2|0|16|C|2|4 +012116|maximumTemperatureAt2MPast24Hours|double|MAXIMUM TEMPERATURE AT 2 M, PAST 24 HOURS|K|2|0|16|C|2|4 +012117|minimumTemperatureAt2MPast24Hours|double|MINIMUM TEMPERATURE AT 2 M, PAST 24 HOURS|K|2|0|16|C|2|4 +012118|maximumTemperatureAtHeightSpecifiedPast24Hours|double|MAXIMUM TEMPERATURE AT HEIGHT SPECIFIED, PAST 24 HOURS|K|2|0|16|C|2|4 +012119|minimumTemperatureAtHeightSpecifiedPast24Hours|double|MINIMUM TEMPERATURE AT HEIGHT SPECIFIED, PAST 24 HOURS|K|2|0|16|C|2|4 +012120|groundTemperature|double|GROUND TEMPERATURE|K|2|0|16|C|2|4 +012121|groundMinimumTemperature|double|GROUND MINIMUM TEMPERATURE|K|2|0|16|C|2|4 +012122|groundMinimumTemperatureOfPrecedingNight|double|GROUND MINIMUM TEMPERATURE OF THE PRECEDING NIGHT|K|2|0|16|C|2|4 +012128|roadSurfaceTemperature|double|ROAD SURFACE TEMPERATURE|K|2|0|16|C|2|5 +012129|roadSubSurfaceTemperature|double|ROAD SUBSURFACE TEMPERATURE|K|2|0|16|C|2|5 +012130|soilTemperature|double|SOIL TEMPERATURE|K|2|0|16|C|2|4 +012131|snowTemperature|double|SNOW TEMPERATURE|K|2|0|16|C|2|4 +012132|iceSurfaceTemperature|double|ICE SURFACE TEMPERATURE|K|2|0|16|C|2|4 +012151|dailyMeanTemperatureStandardDeviation|double|STANDARD DEVIATION OF DAILY MEAN TEMPERATURE|K|2|0|12|C|2|4 +012152|highestDailyMeanTemperature|double|HIGHEST DAILY MEAN TEMPERATURE|K|2|0|16|C|2|4 +012153|lowestDailyMeanTemperature|double|LOWEST DAILY MEAN TEMPERATURE|K|2|0|16|C|2|4 +012158|noiseEquivalentDeltaTemperatureWhileViewingColdTarget|double|NOISE-EQUIVALENT DELTA TEMPERATURE WHILE VIEWING COLD TARGET|K|2|0|12|C|2|4 +012159|noiseEquivalentDeltaTemperatureWhileViewingWarmTarget|double|NOISE-EQUIVALENT DELTA TEMPERATURE WHILE VIEWING WARM TARGET|K|2|0|12|C|2|4 +012161|skinTemperature|double|SKIN TEMPERATURE|K|2|0|16|C|2|4 +012162|equivalentBlackBodyTemperature|double|EQUIVALENT BLACK BODY TEMPERATURE|K|2|0|16|C|2|4 +012163|brightnessTemperature|double|BRIGHTNESS TEMPERATURE|K|2|0|16|C|2|4 +012164|instrumentTemperature|double|INSTRUMENT TEMPERATURE|K|2|0|16|K|2|5 +012165|directSunBrightnessTemperature|long|DIRECT SUN BRIGHTNESS TEMPERATURE|K|0|0|23|K|0|7 +012166|snapshotAccuracy|double|SNAPSHOT ACCURACY|K|1|-4000|13|K|1|4 +012167|radiometricAccuracyPurePolarization|double|RADIOMETRIC ACCURACY (PURE POLARIZATION)|K|1|0|9|K|1|3 +012168|radiometricAccuracyCrossPolarization|double|RADIOMETRIC ACCURACY (CROSS POLARIZATION)|K|1|0|9|K|1|3 +012171|coldestClusterTemperature|double|COLDEST CLUSTER TEMPERATURE|K|2|0|16|K|2|5 +012180|averaged12MicronBtForAllClearPixelsAtNadir|double|AVERAGED 12 MICRON BT FOR ALL CLEAR PIXELS AT NADIR|K|2|0|16|K|2|5 +012181|averaged11MicronBtForAllClearPixelsAtNadir|double|AVERAGED 11 MICRON BT FOR ALL CLEAR PIXELS AT NADIR|K|2|0|16|K|2|5 +012182|averaged37MicronBtForAllClearPixelsAtNadir|double|AVERAGED 3.7 MICRON BT FOR ALL CLEAR PIXELS AT NADIR|K|2|0|16|K|2|5 +012183|averaged12MicronBtForAllClearPixelsForwardView|double|AVERAGED 12 MICRON BT FOR ALL CLEAR PIXELS, FORWARD VIEW|K|2|0|16|K|2|5 +012184|averaged11MicronBtForAllClearPixelsForwardView|double|AVERAGED 11 MICRON BT FOR ALL CLEAR PIXELS, FORWARD VIEW|K|2|0|16|K|2|5 +012185|averaged37MicronBtForAllClearPixelsForwardView|double|AVERAGED 3.7 MICRON BT FOR ALL CLEAR PIXELS, FORWARD VIEW|K|2|0|16|K|2|5 +012186|meanNadirSeaSurfaceTemperature|double|MEAN NADIR SEA-SURFACE TEMPERATURE|K|2|0|16|K|2|5 +012187|meanDualViewSeaSurfaceTemperature|double|MEAN DUAL VIEW SEA-SURFACE TEMPERATURE|K|2|0|16|K|2|5 +012188|interpolated238GhzBrightnessTFromMwr|double|INTERPOLATED 23.8 GHZ BRIGHTNESS T FROM MWR|K|2|0|16|K|2|5 +012189|interpolated365GhzBrightnessTFromMwr|double|INTERPOLATED 36.5 GHZ BRIGHTNESS T FROM MWR|K|2|0|16|K|2|5 +013001|specificHumidity|double|SPECIFIC HUMIDITY|kg/kg|5|0|14|kg/kg|5|5 +013002|mixingRatio|double|MIXING RATIO|kg/kg|5|0|14|kg/kg|5|5 +013003|relativeHumidity|long|RELATIVE HUMIDITY|%|0|0|7|%|0|3 +013004|vapourPressure|long|VAPOUR PRESSURE|Pa|-1|0|10|Pa|-1|4 +013005|vapourDensity|double|VAPOUR DENSITY|kg m-3|3|0|7|kg m-3|3|3 +013006|mixingHeights|long|MIXING HEIGHTS|m|-1|-40|16|m|-1|5 +013007|minimumRelativeHumidity|long|MINIMUM RELATIVE HUMIDITY|%|0|0|7|%|0|3 +013008|maximumRelativeHumidity|long|MAXIMUM RELATIVE HUMIDITY|%|0|0|7|%|0|3 +013009|relativeHumidity|double|RELATIVE HUMIDITY|%|1|-1000|12|%|1|4 +013011|totalPrecipitationOrTotalWaterEquivalent|double|TOTAL PRECIPITATION/TOTAL WATER EQUIVALENT|kg m-2|1|-1|14|kg m-2|1|5 +013012|depthOfFreshSnow|double|DEPTH OF FRESH SNOW|m|2|-2|12|m|2|4 +013013|totalSnowDepth|double|TOTAL SNOW DEPTH|m|2|-2|16|m|2|5 +013014|rainfallOrWaterEquivalentOfSnowAveragedRate|double|RAINFALL/WATER EQUIVALENT OF SNOW (AVERAGED RATE)|kg m-2 s-1|4|0|12|kg m-2 s-1|4|4 +013015|snowfallAveragedRate|double|SNOWFALL (AVERAGED RATE)|m/s|7|0|12|m/s|7|4 +013016|precipitableWater|long|PRECIPITABLE WATER|kg m-2|0|0|7|kg m-2|0|3 +013019|totalPrecipitationPast1Hour|double|TOTAL PRECIPITATION PAST 1 HOUR|kg m-2|1|-1|14|kg m-2|1|4 +013020|totalPrecipitationPast3Hours|double|TOTAL PRECIPITATION PAST 3 HOURS|kg m-2|1|-1|14|kg m-2|1|5 +013021|totalPrecipitationPast6Hours|double|TOTAL PRECIPITATION PAST 6 HOURS|kg m-2|1|-1|14|kg m-2|1|5 +013022|totalPrecipitationPast12Hours|double|TOTAL PRECIPITATION PAST 12 HOURS|kg m-2|1|-1|14|kg m-2|1|5 +013023|totalPrecipitationPast24Hours|double|TOTAL PRECIPITATION PAST 24 HOURS|kg m-2|1|-1|14|kg m-2|1|5 +013031|evapotranspiration|long|EVAPOTRANSPIRATION|kg m-2|0|0|7|kg m-2|0|3 +013032|evaporation|double|EVAPORATION/EVAPOTRANSPIRATION|kg m-2|1|0|8|kg m-2|1|3 +013033|evaporation|double|EVAPORATION/EVAPOTRANSPIRATION|kg m-2|1|0|10|kg m-2|1|4 +013038|superadiabaticIndicator|table|SUPERADIABATIC INDICATOR|CODE TABLE|0|0|2|CODE TABLE|0|1 +013039|terrainTypeIceOrSnow|table|TERRAIN TYPE (ICE/SNOW)|CODE TABLE|0|0|3|CODE TABLE|0|1 +013040|surfaceFlag|table|SURFACE FLAG|CODE TABLE|0|0|4|CODE TABLE|0|2 +013041|pasquillGiffordStabilityCategory|table|PASQUILL-GIFFORD STABILITY CATEGORY|CODE TABLE|0|0|4|CODE TABLE|0|2 +013042|parcelLiftedIndexTo500Hpa|long|PARCEL LIFTED INDEX (TO 500 HPA)|K|0|-20|6|K|0|2 +013043|bestLiftedIndexTo500Hpa|long|BEST LIFTED INDEX (TO 500 HPA)|K|0|-20|6|K|0|2 +013044|kIndex|long|K INDEX|K|0|-30|8|K|0|3 +013045|koIndex|long|KO INDEX|K|0|-30|8|K|0|3 +013046|maximumBuoyancy|long|MAXIMUM BUOYANCY|K|0|-30|8|K|0|3 +013047|modifiedShowalterStabilityIndex|long|MODIFIED SHOWALTER STABILITY INDEX|K|0|-60|6|C|0|2 +013048|waterFraction|double|WATER FRACTION|%|1|0|10|%|1|4 +013051|frequencyGroupPrecipitation|table|FREQUENCY GROUP, PRECIPITATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +013052|highestDailyAmountOfPrecipitation|double|HIGHEST DAILY AMOUNT OF PRECIPITATION|kg m-2|1|-1|14|kg m-2|1|5 +013055|intensityOfPrecipitation|double|INTENSITY OF PRECIPITATION|kg m-2 s-1|4|0|8|mm/h|1|4 +013056|characterAndIntensityOfPrecipitation|table|CHARACTER AND INTENSITY OF PRECIPITATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +013057|timeOfBeginningOrEndOfPrecipitation|table|TIME OF BEGINNING OR END OF PRECIPITATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +013058|sizeOfPrecipitatingElement|double|SIZE OF PRECIPITATING ELEMENT|m|4|0|7|mm|1|3 +013059|numberOfFlashesThunderstorm|long|NUMBER OF FLASHES (THUNDERSTORM)|Numeric|0|0|7|Numeric|0|3 +013060|totalAccumulatedPrecipitation|double|TOTAL ACCUMULATED PRECIPITATION|kg m-2|1|-1|17|kg m-2|1|5 +013071|upstreamWaterLevel|double|UPSTREAM WATER LEVEL|m|2|0|14|m|2|4 +013072|downstreamWaterLevel|double|DOWNSTREAM WATER LEVEL|m|2|0|14|m|2|4 +013073|maximumWaterLevel|double|MAXIMUM WATER LEVEL|m|2|0|14|m|2|4 +013074|groundWaterLevel|double|GROUND WATER LEVEL|m|2|0|18|m|2|6 +013080|waterPh|double|WATER PH|pH unit|1|0|10|pH unit|1|3 +013081|waterConductivity|double|WATER CONDUCTIVITY|S/m|3|0|14|S/m|3|4 +013082|waterTemperature|double|WATER TEMPERATURE|K|1|0|12|K|1|4 +013083|dissolvedOxygen|double|DISSOLVED OXYGEN|kg m-3|6|0|15|kg m-3|6|5 +013084|turbidity|long|TURBIDITY|lm|0|0|14|lm|0|4 +013085|oxidationReductionPotential|double|OXIDATION REDUCTION POTENTIAL (ORP)|V|3|0|14|V|3|4 +013090|radiometerWaterVapourContent|double|RADIOMETER WATER VAPOUR CONTENT|kg m-2|1|0|10|kg m-2|1|4 +013091|radiometerLiquidContent|double|RADIOMETER LIQUID CONTENT|kg m-2|2|0|8|kg m-2|2|3 +013093|cloudOpticalThickness|long|CLOUD OPTICAL THICKNESS|Numeric|0|0|8|Numeric|0|3 +013095|totalColumnWaterVapour|double|TOTAL COLUMN WATER VAPOUR|kg m-2|4|0|19|kg m-2|4|6 +013096|mwrWaterVapourContent|double|MWR WATER VAPOUR CONTENT|kg m-2|2|0|14|kg m-2|2|5 +013097|mwrLiquidWaterContent|double|MWR LIQUID WATER CONTENT|kg m-2|2|0|14|kg m-2|2|5 +013098|integratedWaterVapourDensity|double|INTEGRATED WATER VAPOUR DENSITY|kg m-2|8|0|30|kg m-2|8|10 +013099|log10OfIntegratedCloudParticleDensity|double|LOG10 OF INTEGRATED CLOUD PARTICLE DENSITY|log (m-2)|1|0|7|log (m-2)|1|3 +013100|log10OfIntegratedCloudParticleArea|double|LOG10 OF INTEGRATED CLOUD PARTICLE AREA|log (m2 m-2)|1|-70|7|log (m2 m-2)|1|2 +013101|log10OfIntegratedCloudParticleVolume|double|LOG10 OF INTEGRATED CLOUD PARTICLE VOLUME|log (m3 m-2)|1|-140|7|log (m3 m-2)|1|3 +013109|iceOrLiquidWaterPath|double|ICE/LIQUID WATER PATH|kg m-2|3|0|10|kg m-2|3|4 +013110|massMixingRatio|long|MASS MIXING RATIO|%|0|0|7|%|0|3 +013111|soilMoisture|long|SOIL MOISTURE|g/kg|0|0|10|g/kg|0|4 +013112|objectWetnessDuration|long|OBJECT WETNESS DURATION|s|0|0|17|s|0|5 +013114|rateOfIceAccretion|double|RATE OF ICE ACCRETION|kg m-2 h-1|1|0|11|kg m-2 h-1|1|4 +013115|iceThickness|double|ICE THICKNESS|m|2|0|19|m|2|6 +013116|waterFilmThickness|double|WATER FILM THICKNESS|m|4|0|10|m|3|2 +013117|snowDensityLiquidWaterContent|long|SNOW DENSITY (LIQUID WATER CONTENT)|kg m-3|0|0|10|kg m-3|0|3 +013118|freshSnowDepth|double|DEPTH OF FRESH SNOW (HIGH ACCURACY)|m|3|-2|14|m|3|5 +013155|precipitationIntensityHighAccuracy|double|INTENSITY OF PRECIPITATION (HIGH ACCURACY)|kg m-2 s-1|5|-1|16|mm/h|2|5 +013160|radiometerLiquidContent|double|RADIOMETER LIQUID CONTENT|kg m-2|2|-350|10|kg m-2|2|3 +013162|cloudLiquidWater|double|CLOUD LIQUID WATER|kg m-2|2|0|8|kg m-2|2|3 +013163|snowWaterEquivalent|long|SNOW WATER EQUIVALENT|kg m-2|0|0|16|kg m-2|0|5 +013164|seaIceFreeboard|double|SEA ICE FREEBOARD|m|3|-131072|18|m|3|6 +014001|longWaveRadiationIntegratedOver24Hours|long|LONG-WAVE RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-3|-65536|17|J m-2|-3|5 +014002|longWaveRadiationIntegratedOverPeriodSpecified|long|LONG-WAVE RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-3|-65536|17|J m-2|-3|5 +014003|shortWaveRadiationIntegratedOver24Hours|long|SHORT-WAVE RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-3|-65536|17|J m-2|-3|5 +014004|shortWaveRadiationIntegratedOverPeriodSpecified|long|SHORT-WAVE RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-3|-65536|17|J m-2|-3|5 +014011|netLongWaveRadiationIntegratedOver24Hours|long|NET LONG-WAVE RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-3|-65536|17|J m-2|-3|5 +014012|netLongWaveRadiationIntegratedOverPeriodSpecified|long|NET LONG-WAVE RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-3|-65536|17|J m-2|-3|5 +014013|netShortWaveRadiation24Hours|long|NET SHORT-WAVE RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-3|-65536|17|J m-2|-3|5 +014014|netShortWaveRadiationIntegratedOverPeriodSpecified|long|NET SHORT-WAVE RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-3|-65536|17|J m-2|-3|5 +014015|netRadiationIntegratedOver24Hours|long|NET RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-4|-16384|15|J m-2|-4|5 +014016|netRadiationIntegratedOverPeriodSpecified|long|NET RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-4|-16384|15|J m-2|-4|5 +014017|instantaneousLongWaveRadiation|long|INSTANTANEOUS LONG-WAVE RADIATION|W m-2|0|-512|10|W m-2|0|4 +014018|instantaneousShortWaveRadiation|long|INSTANTANEOUS SHORT-WAVE RADIATION|W m-2|0|-2048|12|W m-2|0|4 +014019|surfaceAlbedo|long|SURFACE ALBEDO|%|0|0|7|%|0|3 +014020|globalSolarRadiation24Hours|long|GLOBAL SOLAR RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-4|0|15|J m-2|-4|5 +014021|globalSolarRadiationIntegratedOverPeriodSpecified|long|GLOBAL SOLAR RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-4|0|15|J m-2|-4|5 +014022|diffuseSolarRadiationIntegratedOver24Hours|long|DIFFUSE SOLAR RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-4|0|15|J m-2|-4|5 +014023|diffuseSolarRadiationIntegratedOverPeriodSpecified|long|DIFFUSE SOLAR RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-4|0|15|J m-2|-4|5 +014024|directSolarRadiationIntegratedOver24Hours|long|DIRECT SOLAR RADIATION, INTEGRATED OVER 24 HOURS|J m-2|-4|0|15|J m-2|-4|5 +014025|directSolarRadiationIntegratedOverPeriodSpecified|long|DIRECT SOLAR RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-4|0|15|J m-2|-4|5 +014026|cloudTopAlbedo|long|ALBEDO AT THE TOP OF CLOUDS|%|0|0|7|%|0|3 +014027|albedo|long|ALBEDO|%|0|0|7|%|0|3 +014028|globalSolarRadiationIntegratedOverPeriodSpecified|long|GLOBAL SOLAR RADIATION (HIGH ACCURACY), INTEGRATED OVER PERIOD SPECIFIED|J m-2|-2|0|20|J m-2|-2|6 +014029|diffuseSolarRadiationIntegratedOverPeriodSpecified|long|DIFFUSE SOLAR RADIATION (HIGH ACCURACY), INTEGRATED OVER PERIOD SPECIFIED|J m-2|-2|0|20|J m-2|-2|6 +014030|directSolarRadiationIntegratedOverPeriodSpecified|long|DIRECT SOLAR RADIATION (HIGH ACCURACY), INTEGRATED OVER PERIOD SPECIFIED|J m-2|-2|0|20|J m-2|-2|6 +014031|totalSunshine|long|TOTAL SUNSHINE|min|0|0|11|min|0|4 +014032|totalSunshine|long|TOTAL SUNSHINE|h|0|0|10|h|0|4 +014033|totalSunshine|long|TOTAL SUNSHINE|%|0|0|9|%|0|3 +014034|sunshineOverPeriodSpecified|long|SUNSHINE OVER PERIOD SPECIFIED|min|0|0|11|min|0|4 +014035|solarRadiationFlux|double|SOLAR RADIATION FLUX|W m-2|1|0|14|W m-2|1|5 +014042|bidirectionalReflectance|long|BIDIRECTIONAL REFLECTANCE|%|0|0|7|%|0|3 +014043|channelRadiance|double|CHANNEL RADIANCE|W m-2 sr-1 um-1|4|0|23|W m-2 sr-1 um-1|4|7 +014044|channelRadiance|double|CHANNEL RADIANCE|W m-2 sr-1 cm|7|-100000|22|W m-2 sr-1 cm|7|7 +014045|channelRadiance|long|CHANNEL RADIANCE|W m-2 sr-1 cm|0|0|11|W m-2 sr-1 cm|0|4 +014046|scaledRadiance|long|SCALED RADIANCE|W m-2 sr-1 m|0|-5000|16|W m-2 sr-1 m|0|5 +014047|scaledMeanAvhrrRadiance|long|SCALED MEAN AVHRR RADIANCE|W m-2 sr-1 m|0|0|31|W m-2 sr-1 m|0|10 +014048|scaledStandardDeviationAvhrrRadiance|long|SCALED STANDARD DEVIATION AVHRR RADIANCE|W m-2 sr-1 m|0|0|31|W m-2 sr-1 m|0|10 +014050|emissivity|double|EMISSIVITY|%|1|0|10|%|1|4 +014051|directSolarRadiationIntegratedOverLastHour|long|DIRECT SOLAR RADIATION INTEGRATED OVER LAST HOUR|J m-2|-3|0|14|J m-2|-3|4 +014052|globalUpwardSolarRadiationIntegratedOverPeriodSpecified|long|GLOBAL UPWARD SOLAR RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-2|-1048574|20|J m-2|-2|7 +014053|netRadiationIntegratedOverPeriodSpecified|long|NET RADIATION (HIGH ACCURACY), INTEGRATED OVER PERIOD SPECIFIED|J m-2|-2|-1048574|21|J m-2|-2|7 +014054|photosyntheticallyActiveRadiationIntegratedOverPeriodSpecified|long|PHOTOSYNTHETICALLY ACTIVE RADIATION, INTEGRATED OVER PERIOD SPECIFIED|J m-2|-3|0|16|J m-2|-3|5 +014055|solarActivityIndex|long|SOLAR ACTIVITY INDEX|Numeric|0|-32768|16|Numeric|0|5 +014056|backgroundLuminance|long|BACKGROUND LUMINANCE|cd m-2|0|0|18|cd m-2|0|6 +014057|soilHeatFlux|long|SOIL HEAT FLUX|J m-2|-2|-1048574|21|J m-2|-2|7 +014072|globalUvIrradiation|long|GLOBAL UV IRRADIATION|J m-2|0|-4000000|23|J m-2|0|7 +015001|totalOzone|long|TOTAL OZONE|DU|0|0|10|DU|0|4 +015002|airMassSlantPathAt22Km|long|AIR MASS (SLANT PATH AT 22 KM)|Numeric|2|0|10|Numeric|2|3 +015003|measuredOzonePartialPressureSounding|double|MEASURED OZONE PARTIAL PRESSURE (SOUNDING)|Pa|4|0|9|nbar|0|3 +015004|ozoneSoundingCorrectionFactor|long|OZONE SOUNDING CORRECTION FACTOR (CF)|Numeric|3|0|11|Numeric|3|4 +015005|ozoneP|long|OZONE P|DU|0|0|10|DU|0|3 +015006|log10OfNumberDensityOfAtmosphere|double|LOG10 OF NUMBER DENSITY OF ATMOSPHERE|log (m-3)|5|1800000|20|log (m-3)|5|7 +015008|significandOfVolumetricMixingRatio|long|SIGNIFICAND OF VOLUMETRIC MIXING RATIO|Numeric|0|0|10|Numeric|0|4 +015009|log10OfNumberDensityOfOzone|double|LOG10 OF NUMBER DENSITY OF OZONE|log (m-3)|5|1200000|20|log (m-3)|5|7 +015011|log10IntegratedElectronDensity|double|LOG10 OF INTEGRATED ELECTRON DENSITY|log (m-2)|3|14000|13|log (m-2)|3|4 +015012|totalElectronCountPerSquareMetre|long|TOTAL ELECTRON COUNT PER SQUARE METRE|m-2|-16|0|6|m-2|-16|2 +015015|maxImageSpectralComponentBeforeNormalization|long|MAXIMUM IMAGE SPECTRAL COMPONENT BEFORE NORMALIZATION|Numeric|0|0|31|Numeric|0|10 +015020|integratedOzoneDensity|double|INTEGRATED OZONE DENSITY|kg m-2|8|0|21|kg m-2|8|7 +015021|integratedMassDensity|double|INTEGRATED MASS DENSITY|kg m-2|11|0|31|kg m-2|11|10 +015024|opticalDepth|long|OPTICAL DEPTH|Numeric|4|0|24|Numeric|4|8 +015025|pollutantType|table|TYPE OF POLLUTANT|CODE TABLE|0|0|4|CODE TABLE|0|2 +015026|moleFractionOfPollutant|double|CONCENTRATION OF POLLUTANT (MOL MOL-1)|mol/mol|9|0|9|mol/mol|9|3 +015027|massConcentrationOfPollutant|double|CONCENTRATION OF POLLUTANT (KG M-3)|kg m-3|9|0|10|kg m-3|9|4 +015028|moleFractionOfAtmosphericConstituentOrPollutantInDryAir|double|MOLE FRACTION OF ATMOSPHERIC CONSTITUENT/POLLUTANT IN DRY AIR|0/00|5|0|16|0/00|5|5 +015029|extinctionCoefficient|double|EXTINCTION COEFFICIENT|/m|9|0|30|/m|9|10 +015030|aerosolContaminationIndex|long|AEROSOL CONTAMINATION INDEX|Numeric|2|-1000|12|Numeric|2|4 +015031|atmosphericPathDelayInSatelliteSignal|double|ATMOSPHERIC PATH DELAY IN SATELLITE SIGNAL|m|4|10000|15|m|4|5 +015032|estimatedErrorInAtmosphericPathDelay|double|ESTIMATED ERROR IN ATMOSPHERIC PATH DELAY|m|4|0|10|m|4|4 +015033|differenceInPathDelaysForLimbViewsAtExtremesOfScan|double|DIFFERENCE IN PATH DELAYS FOR LIMB VIEWS AT EXTREMES OF SCAN|m|5|-10000|15|m|5|5 +015034|estimatedErrorInPathDelayDifference|double|ESTIMATED ERROR IN PATH DELAY DIFFERENCE|m|5|0|14|m|5|5 +015035|componentOfZenithPathDelayDueToWaterVapour|double|COMPONENT OF ZENITH PATH DELAY DUE TO WATER VAPOUR|m|4|0|14|m|4|5 +015036|atmosphericRefractivity|double|ATMOSPHERIC REFRACTIVITY|N units|3|0|19|N units|3|6 +015037|bendingAngle|double|BENDING ANGLE|rad|8|-100000|23|rad|8|7 +015038|pathDelayDueToNeutralAtmosphere|double|PATH DELAY DUE TO NEUTRAL ATMOSPHERE|m|4|0|20|m|4|11 +015039|estimatedErrorInNeutralAtmospherePathDelay|double|ESTIMATED ERROR IN NEUTRAL ATMOSPHERE PATH DELAY|m|4|0|14|m|4|9 +015041|sulphurDioxideIndex|long|SULPHUR DIOXIDE INDEX|Numeric|2|-1200|14|Numeric|2|4 +015042|reflectance|double|REFLECTANCE|%|2|0|14|%|2|5 +015045|sulphurDioxide|double|SULPHUR DIOXIDE|DU|2|-2000|15|DU|2|5 +015046|volcanoContaminationIndex|long|VOLCANO CONTAMINATION INDEX|Numeric|2|-1000|11|Numeric|2|4 +015049|aerosolAngstromWavelengthExponent|long|AEROSOL ANGSTROM WAVELENGTH EXPONENT|Numeric|3|-2000|14|Numeric|3|5 +015051|meteorologicalOpticalRange|long|METEOROLOGICAL OPTICAL RANGE|m|0|0|18|m|0|6 +015052|log10OfNumberDensityOfAerosolParticlesWithDiameterGreaterThan5Nm|double|LOG10 OF NUMBER DENSITY OF AEROSOL PARTICLES WITH DIAMETER GREATER THAN 5 NM|log (m-3)|1|60|6|log (m-3)|1|3 +015053|log10OfNumberDensityOfAerosolParticlesWithDiameterGreaterThan14Nm|double|LOG10 OF NUMBER DENSITY OF AEROSOL PARTICLES WITH DIAMETER GREATER THAN 14 NM|log (m-3)|2|600|9|log (m-3)|2|4 +015054|log10OfNumberDensityOfAerosolParticlesWithDiameterBetween0p25And2p5|double|LOG10 OF NUMBER DENSITY OF AEROSOL PARTICLES WITH DIAMETER BETWEEN 0.25 AND 2.5 uM|log (m-3)|2|550|9|log (m-3)|2|4 +015055|nonVolatileAerosolRatio|long|NON VOLATILE AEROSOL RATIO|Numeric|2|0|7|Numeric|2|3 +015062|aerosolOpticalThickness|long|AEROSOL OPTICAL THICKNESS|Numeric|3|-1000|14|Numeric|3|5 +015063|attenuatedBackscatter|double|ATTENUATED BACKSCATTER|m-1 sr-1|8|0|20|m-1 sr-1|8|7 +015064|uncertaintyInAttenuatedBackscatter|double|UNCERTAINTY IN ATTENUATED BACKSCATTER|m-1 sr-1|8|0|20|m-1 sr-1|8|7 +015065|particleBackscatterCoefficient|double|PARTICLE BACKSCATTER COEFFICIENT|m-1 sr-1|8|0|20|m-1 sr-1|8|7 +015066|uncertaintyInParticleBackscatterCoefficient|double|UNCERTAINTY IN PARTICLE BACKSCATTER COEFFICIENT|m-1 sr-1|8|0|20|m-1 sr-1|8|7 +015067|particleExtinctionCoefficient|double|PARTICLE EXTINCTION COEFFICIENT|/m|8|0|20|/m|8|7 +015068|uncertaintyInParticleExtinctionCoefficient|double|UNCERTAINTY IN PARTICLE EXTINCTION COEFFICIENT|/m|8|0|20|/m|8|7 +015069|particleLidarRatio|double|PARTICLE LIDAR RATIO|sr|2|0|14|sr|2|5 +015070|uncertaintyInLidarRatio|double|UNCERTAINTY IN LIDAR RATIO|sr|2|0|14|sr|2|5 +015071|particleDepolarizationRatio|double|PARTICLE DEPOLARIZATION RATIO|%|2|0|14|%|2|5 +015072|uncertaintyInDepolarizationRatio|double|UNCERTAINTY IN DEPOLARIZATION RATIO|%|2|0|14|%|2|5 +015073|attenuatedBackscatter1|double|ATTENUATED BACKSCATTER|m-1 sr-1|8|-524288|20|m-1 sr-1|8|7 +015074|particleBackscatterCoefficient1|double|PARTICLE BACKSCATTER COEFFICIENT|m-1 sr-1|8|-524288|20|m-1 sr-1|8|7 +015075|particleExtinctionCoefficient1|double|PARTICLE EXTINCTION COEFFICIENT|m|8|-524288|20|/m|8|7 +015076|particleLidarRatio1|double|PARTICLE LIDAR RATIO|sr|1|-2048|13|sr|1|5 +015077|uncertaintyInLidarRatio1|double|UNCERTAINTY IN LIDAR RATIO|sr|1|0|12|sr|1|5 +015078|particleDepolarizationRatio1|double|PARTICLE DEPOLARIZATION RATIO|%|2|-8192|15|%|2|5 +015079|zenithPathDelayDueToNeutralAtmosphere|double|ZENITH PATH DELAY DUE TO NEUTRAL ATMOSPHERE|m|4|0|15|m|4|9 +015080|estimatedErrorInNeutralAtmosphereZenithPathDelay|double|ESTIMATED ERROR IN NEUTRAL ATMOSPHERE ZENITH PATH DELAY|m|4|0|12|m|4|8 +015081|wetPathDelayDueToNeutralAtmosphere|double|WET PATH DELAY DUE TO NEUTRAL ATMOSPHERE|m|4|0|18|m|4|10 +015082|pathIntegratedWaterVapour|double|PATH INTEGRATED WATER VAPOUR|kg m-2|1|0|16|kg m-2|1|10 +015083|gnssDerivedNeutralAtmosphereGradient|double|GNSS DERIVED NEUTRAL ATMOSPHERE GRADIENT|m|5|0|14|m|5|9 +015084|gnssLeastSquaresResidual|double|GNSS LEAST SQUARES RESIDUAL|m|4|0|14|m|4|9 +015085|gnssMultiPathDelay|double|GNSS MULTI-PATH DELAY|m|4|0|14|m|4|9 +015086|gnssHydrostaticMappingFunction|long|GNSS HYDROSTATIC MAPPING FUNCTION|Numeric|3|0|16|Numeric|3|10 +015087|gnssWetMappingFunction|long|GNSS WET MAPPING FUNCTION|Numeric|3|0|16|Numeric|3|10 +015088|gnssGradientMappingFunction|long|GNSS GRADIENT MAPPING FUNCTION|Numeric|3|0|16|Numeric|3|10 +015089|zenithPathDelayDueToNeutralHydrostaticAtmosphere|double|ZENITH PATH DELAY DUE TO NEUTRAL HYDROSTATIC ATMOSPHERE|m|4|0|15|m|4|9 +015090|pathDelayDueToNeutralHydrostaticAtmosphere|double|PATH DELAY DUE TO NEUTRAL HYDROSTATIC ATMOSPHERE|m|4|0|20|m|4|11 +019001|synopticFeatureType|table|TYPE OF SYNOPTIC FEATURE|CODE TABLE|0|0|6|CODE TABLE|0|2 +019002|effectiveRadiusOfFeature|long|EFFECTIVE RADIUS OF FEATURE|m|-2|0|12|m|-2|4 +019003|windSpeedThreshold|long|WIND SPEED THRESHOLD|m/s|0|0|8|m/s|0|3 +019004|effectiveRadiusWithRespectToWindSpeedsAboveThreshold|long|EFFECTIVE RADIUS WITH RESPECT TO WIND SPEEDS ABOVE THRESHOLD|m|-2|0|12|m|-2|4 +019005|featureDirectionOfMotion|long|DIRECTION OF MOTION OF FEATURE|deg|0|0|9|deg|0|3 +019006|speedOfMotionOfFeature|double|SPEED OF MOTION OF FEATURE|m/s|2|0|14|m/s|2|5 +019007|effectiveRadiusOfFeature|long|EFFECTIVE RADIUS OF FEATURE|m|-3|0|12|m|-3|4 +019008|verticalExtentOfCirculation|table|VERTICAL EXTENT OF CIRCULATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +019009|effectiveRadiusWithRespectToWindSpeedsAboveThresholdLargeStorms|long|EFFECTIVE RADIUS WITH RESPECT TO WIND SPEEDS ABOVE THRESHOLD (LARGE STORMS)|m|-3|0|12|m|-3|4 +019010|methodForTrackingCentreOfSynopticFeature|table|METHOD FOR TRACKING THE CENTRE OF SYNOPTIC FEATURE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019100|timeIntervalToCalculateMovementOfTropicalCyclone|table|TIME INTERVAL TO CALCULATE THE MOVEMENT OF THE TROPICAL CYCLONE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019101|accuracyOfPositionOfCentreOfTropicalCyclone|table|ACCURACY OF THE POSITION OF THE CENTRE OF THE TROPICAL CYCLONE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019102|shapeAndDefinitionOfEyeOfTropicalCyclone|table|SHAPE AND DEFINITION OF THE EYE OF THE TROPICAL CYCLONE|CODE TABLE|0|0|3|CODE TABLE|0|1 +019103|diameterOfMajorAxisOfEyeOfTropicalCyclone|table|DIAMETER OF MAJOR AXIS OF THE EYE OF THE TROPICAL CYCLONE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019104|changeInCharacterOfEyeDuring30Minutes|table|CHANGE IN CHARACTER OF THE EYE DURING THE 30 MINUTES|CODE TABLE|0|0|4|CODE TABLE|0|2 +019105|distanceBetweenEndOfSpiralBandAndCentre|table|DISTANCE BETWEEN THE END OF SPIRAL BAND AND THE CENTRE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019106|identificationNumberOfTropicalCyclone|long|IDENTIFICATION NUMBER OF TROPICAL CYCLONE|Numeric|0|0|7|Numeric|0|3 +019107|timeIntervalOverWhichMovementOfTropicalCycloneHasBeenCalculated|table|TIME INTERVAL OVER WHICH THE MOVEMENT OF THE TROPICAL CYCLONE HAS BEEN CALCULATED|CODE TABLE|0|0|4|CODE TABLE|0|2 +019108|accuracyOfGeographicalPositionOfTropicalCyclone|table|ACCURACY OF GEOGRAPHICAL POSITION OF THE TROPICAL CYCLONE|CODE TABLE|0|0|3|CODE TABLE|0|1 +019109|meanDiameterOfOvercastCloudOfTropicalCyclone|table|MEAN DIAMETER OF THE OVERCAST CLOUD OF THE TROPICAL CYCLONE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019110|apparent24HourChangeInIntensityOfTropicalCyclone|table|APPARENT 24-HOUR CHANGE IN INTENSITY OF THE TROPICAL CYCLONE|CODE TABLE|0|0|4|CODE TABLE|0|2 +019111|currentIntensityNumberOfTropicalCyclone|long|CURRENT INTENSITY (CI) NUMBER OF THE TROPICAL CYCLONE|Numeric|1|0|7|Numeric|1|3 +019112|dataTropicalNumberOfTropicalCyclone|long|DATA TROPICAL (DT) NUMBER OF THE TROPICAL CYCLONE|Numeric|1|0|7|Numeric|1|3 +019113|cloudPatternTypeOfDtNumber|table|CLOUD PATTERN TYPE OF THE DT-NUMBER|CODE TABLE|0|0|4|CODE TABLE|0|2 +019114|modelExpectedTropicalNumberOfTropicalCyclone|long|MODEL EXPECTED TROPICAL (MET) NUMBER OF THE TROPICAL CYCLONE|Numeric|1|0|7|Numeric|1|3 +019115|trendOfPast24HourChangeDevelopedWeakened|long|TREND OF THE PAST 24-HOUR CHANGE (+: DEVELOPED, -: WEAKENED)|Numeric|1|-30|6|Numeric|1|2 +019116|patternTropicalNumberOfTropicalCyclone|long|PATTERN TROPICAL (PT) NUMBER OF THE TROPICAL CYCLONE|Numeric|1|0|7|Numeric|1|3 +019117|cloudPictureTypeOfPtNumber|table|CLOUD PICTURE TYPE OF THE PT-NUMBER|CODE TABLE|0|0|3|CODE TABLE|0|1 +019118|finalTropicalNumberOfTropicalCyclone|long|FINAL TROPICAL (T) NUMBER OF THE TROPICAL CYCLONE|Numeric|1|0|7|Numeric|1|3 +019119|finalTNumberType|table|TYPE OF THE FINAL T-NUMBER|CODE TABLE|0|0|3|CODE TABLE|0|1 +019150|typhoonInternationalCommonNumberTyphoonCommittee|string|TYPHOON INTERNATIONAL COMMON NUMBER (TYPHOON COMMITTEE)|CCITT IA5|0|0|32|Character|0|4 +020001|horizontalVisibility|long|HORIZONTAL VISIBILITY|m|-1|0|13|m|-1|4 +020002|verticalVisibility|long|VERTICAL VISIBILITY|m|-1|0|7|m|-1|3 +020003|presentWeather|table|PRESENT WEATHER|CODE TABLE|0|0|9|CODE TABLE|0|3 +020004|pastWeather1|table|PAST WEATHER (1)|CODE TABLE|0|0|5|CODE TABLE|0|2 +020005|pastWeather2|table|PAST WEATHER (2)|CODE TABLE|0|0|5|CODE TABLE|0|2 +020006|flightRules|table|FLIGHT RULES|CODE TABLE|0|0|3|CODE TABLE|0|1 +020008|cloudDistributionForAviation|table|CLOUD DISTRIBUTION FOR AVIATION|CODE TABLE|0|0|5|CODE TABLE|0|2 +020009|generalWeatherIndicatorTafOrMetar|table|GENERAL WEATHER INDICATOR (TAF/METAR)|CODE TABLE|0|0|4|CODE TABLE|0|2 +020010|cloudCoverTotal|long|CLOUD COVER (TOTAL)|%|0|0|7|%|0|3 +020011|cloudAmount|table|CLOUD AMOUNT|CODE TABLE|0|0|4|CODE TABLE|0|2 +020012|cloudType|table|CLOUD TYPE|CODE TABLE|0|0|6|CODE TABLE|0|2 +020013|heightOfBaseOfCloud|long|HEIGHT OF BASE OF CLOUD|m|-1|-40|11|m|-1|4 +020014|heightOfTopOfCloud|long|HEIGHT OF TOP OF CLOUD|m|-1|-40|11|m|-1|4 +020015|pressureAtBaseOfCloud|long|PRESSURE AT BASE OF CLOUD|Pa|-1|0|14|Pa|-1|5 +020016|pressureAtTopOfCloud|long|PRESSURE AT TOP OF CLOUD|Pa|-1|0|14|Pa|-1|5 +020017|cloudTopDescription|table|CLOUD TOP DESCRIPTION|CODE TABLE|0|0|4|CODE TABLE|0|2 +020018|tendencyOfRunwayVisualRange|table|TENDENCY OF RUNWAY VISUAL RANGE|CODE TABLE|0|0|2|CODE TABLE|0|1 +020019|significantWeather|string|SIGNIFICANT PRESENT OR FORECAST WEATHER|CCITT IA5|0|0|72|Character|0|9 +020020|significantRecentWeatherPhenomena|string|SIGNIFICANT RECENT WEATHER PHENOMENA|CCITT IA5|0|0|32|Character|0|4 +020021|precipitationType|flag|TYPE OF PRECIPITATION|FLAG TABLE|0|0|30|FLAG TABLE|0|10 +020022|characterOfPrecipitation|table|CHARACTER OF PRECIPITATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +020023|otherWeatherPhenomena|flag|OTHER WEATHER PHENOMENA|FLAG TABLE|0|0|18|FLAG TABLE|0|6 +020024|intensityOfPhenomena|table|INTENSITY OF PHENOMENA|CODE TABLE|0|0|3|CODE TABLE|0|1 +020025|obscuration|flag|OBSCURATION|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +020026|characterOfObscuration|table|CHARACTER OF OBSCURATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +020027|phenomenaOccurrence|flag|PHENOMENA OCCURRENCE|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +020028|expectedChangeInIntensity|table|EXPECTED CHANGE IN INTENSITY|CODE TABLE|0|0|3|CODE TABLE|0|1 +020029|rainFlag|table|RAIN FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +020031|iceDepositThickness|double|ICE DEPOSIT (THICKNESS)|m|2|0|7|m|2|3 +020032|rateOfIceAccretionEstimated|table|RATE OF ICE ACCRETION (ESTIMATED)|CODE TABLE|0|0|3|CODE TABLE|0|1 +020033|causeOfIceAccretion|flag|CAUSE OF ICE ACCRETION|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +020034|seaIceConcentration|table|SEA ICE CONCENTRATION|CODE TABLE|0|0|5|CODE TABLE|0|2 +020035|amountAndTypeOfIce|table|AMOUNT AND TYPE OF ICE|CODE TABLE|0|0|4|CODE TABLE|0|2 +020036|iceSituation|table|ICE SITUATION|CODE TABLE|0|0|5|CODE TABLE|0|2 +020037|iceDevelopment|table|ICE DEVELOPMENT|CODE TABLE|0|0|5|CODE TABLE|0|2 +020038|iceEdgeBearing|long|BEARING OF ICE EDGE|deg|0|0|12|deg|0|3 +020039|iceDistance|long|ICE DISTANCE|m|-1|0|13|m|-1|4 +020040|evolutionOfDriftSnow|table|EVOLUTION OF DRIFT SNOW|CODE TABLE|0|0|4|CODE TABLE|0|2 +020041|airframeIcing|table|AIRFRAME ICING|CODE TABLE|0|0|4|CODE TABLE|0|2 +020042|airframeIcingPresent|table|AIRFRAME ICING PRESENT|CODE TABLE|0|0|2|CODE TABLE|0|1 +020043|peakLiquidWaterContent|double|PEAK LIQUID WATER CONTENT|kg m-3|4|0|7|kg m-3|4|2 +020044|averageLiquidWaterContent|double|AVERAGE LIQUID WATER CONTENT|kg m-3|4|0|7|kg m-3|4|2 +020045|supercooledLargeDropletConditions|table|SUPERCOOLED LARGE DROPLET (SLD) CONDITIONS|CODE TABLE|0|0|2|CODE TABLE|0|1 +020048|evolutionOfFeature|table|EVOLUTION OF FEATURE|CODE TABLE|0|0|4|CODE TABLE|0|2 +020050|cloudIndex|table|CLOUD INDEX|CODE TABLE|0|0|8|CODE TABLE|0|3 +020051|amountOfLowClouds|long|AMOUNT OF LOW CLOUDS|%|0|0|7|%|0|3 +020052|amountOfMiddleClouds|long|AMOUNT OF MIDDLE CLOUDS|%|0|0|7|%|0|3 +020053|amountOfHighClouds|long|AMOUNT OF HIGH CLOUDS|%|0|0|7|%|0|3 +020054|trueDirectionFromWhichAPhenomenonOrCloudsAreMovingOrInWhichTheyAreObserved|long|TRUE DIRECTION FROM WHICH A PHENOMENON OR CLOUDS ARE MOVING OR IN WHICH THEY ARE OBSERVED|deg|0|0|9|deg|0|3 +020055|stateOfSkyInTropics|table|STATE OF SKY IN THE TROPICS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020056|cloudPhase|table|CLOUD PHASE|CODE TABLE|0|0|3|CODE TABLE|0|1 +020058|visibilitySeawardsFromACoastalStation|long|VISIBILITY SEAWARDS FROM A COASTAL STATION|m|-1|0|13|m|-1|4 +020059|minimumHorizontalVisibility|long|MINIMUM HORIZONTAL VISIBILITY|m|-1|0|9|m|-1|3 +020060|prevailingHorizontalVisibility|long|PREVAILING HORIZONTAL VISIBILITY|m|-1|0|10|m|-1|4 +020061|runwayVisualRangeRvr|long|RUNWAY VISUAL RANGE (RVR)|m|0|0|12|m|0|4 +020062|stateOfGround|table|STATE OF THE GROUND (WITH OR WITHOUT SNOW)|CODE TABLE|0|0|5|CODE TABLE|0|2 +020063|specialPhenomena|table|SPECIAL PHENOMENA|CODE TABLE|0|0|10|CODE TABLE|0|4 +020065|snowCover|long|SNOW COVER|%|0|0|7|%|0|3 +020066|maximumDiameterOfHailstones|double|MAXIMUM DIAMETER OF HAILSTONES|m|3|0|8|m|3|3 +020067|diameterOfDeposit|double|DIAMETER OF DEPOSIT|m|3|0|9|m|3|3 +020070|minimumNumberOfAtmospherics|long|MINIMUM NUMBER OF ATMOSPHERICS|Numeric|0|0|7|Numeric|0|3 +020071|accuracyOfFixAndRateOfAtmospherics|table|ACCURACY OF FIX AND RATE OF ATMOSPHERICS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020081|cloudAmountInSegment|long|CLOUD AMOUNT IN SEGMENT|%|0|0|7|%|0|3 +020082|amountSegmentCloudFree|long|AMOUNT SEGMENT CLOUD FREE|%|0|0|7|%|0|3 +020083|amountOfSegmentCoveredByScene|long|AMOUNT OF SEGMENT COVERED BY SCENE|%|0|0|7|%|0|3 +020085|generalConditionOfRunway|table|GENERAL CONDITION OF RUNWAY|CODE TABLE|0|0|4|CODE TABLE|0|1 +020086|runwayDeposits|table|RUNWAY DEPOSITS|CODE TABLE|0|0|4|CODE TABLE|0|1 +020087|runwayContamination|table|RUNWAY CONTAMINATION|CODE TABLE|0|0|4|CODE TABLE|0|1 +020088|depthOfRunwayDeposits|double|DEPTH OF RUNWAY DEPOSITS|m|3|0|12|m|0|4 +020089|runwayFrictionCoefficient|table|RUNWAY FRICTION COEFFICIENT|CODE TABLE|0|0|7|CODE TABLE|0|2 +020090|specialClouds|table|SPECIAL CLOUDS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020091|verticalVisibility|long|VERTICAL VISIBILITY|ft|-2|0|10|ft|-2|3 +020092|heightOfBaseOfCloud|long|HEIGHT OF BASE OF CLOUD|ft|-2|0|10|ft|-2|3 +020093|heightOfInversion|long|HEIGHT OF INVERSION|m|-1|0|8|m|-1|3 +020095|iceProbability|long|ICE PROBABILITY|Numeric|3|0|10|Numeric|3|4 +020096|iceAgeAParameter|double|ICE AGE (A PARAMETER)|dB|2|-4096|13|dB|2|4 +020101|locustAcridianName|table|LOCUST (ACRIDIAN) NAME|CODE TABLE|0|0|4|CODE TABLE|0|2 +020102|locustMaturityColour|table|LOCUST (MATURITY) COLOUR|CODE TABLE|0|0|4|CODE TABLE|0|2 +020103|stageOfDevelopmentOfLocusts|table|STAGE OF DEVELOPMENT OF LOCUSTS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020104|organizationStateOfSwarm|table|ORGANIZATION STATE OF SWARM OR BAND OF LOCUSTS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020105|sizeOfSwarmOrBandOfLocustsAndDurationOfPassageOfSwarm|table|SIZE OF SWARM OR BAND OF LOCUSTS AND DURATION OF PASSAGE OF SWARM|CODE TABLE|0|0|4|CODE TABLE|0|2 +020106|locustPopulationDensity|table|LOCUST POPULATION DENSITY|CODE TABLE|0|0|4|CODE TABLE|0|2 +020107|directionOfMovementsOfLocustSwarm|table|DIRECTION OF MOVEMENTS OF LOCUST SWARM|CODE TABLE|0|0|4|CODE TABLE|0|2 +020108|extentOfVegetation|table|EXTENT OF VEGETATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +020111|xAxisErrorEllipseMajorComponent|long|X-AXIS ERROR ELLIPSE MAJOR COMPONENT|m|-1|0|17|m|-1|6 +020112|yAxisErrorEllipseMinorComponent|long|Y-AXIS ERROR ELLIPSE MINOR COMPONENT|m|-1|0|17|m|-1|6 +020113|zAxisErrorEllipseComponent|long|Z-AXIS ERROR ELLIPSE COMPONENT|m|-1|0|17|m|-1|6 +020114|angleOfXAxisInErrorEllipse|double|ANGLE OF X-AXIS IN ERROR ELLIPSE|deg|2|-18000|16|deg|2|5 +020115|angleOfZAxisInErrorEllipse|double|ANGLE OF Z-AXIS IN ERROR ELLIPSE|deg|2|-18000|16|deg|2|5 +020116|emissionHeightOfCloudStroke|long|EMISSION HEIGHT OF CLOUD STROKE|m|0|0|16|m|0|5 +020117|amplitudeOfLightningStrike|long|AMPLITUDE OF LIGHTNING STRIKE|A|-1|-32000|16|A|-1|5 +020118|lightningDetectionError|long|LIGHTNING DETECTION ERROR|m|0|0|19|m|0|6 +020119|lightningDischargePolarity|table|LIGHTNING DISCHARGE POLARITY|CODE TABLE|0|0|2|CODE TABLE|0|1 +020121|thresholdValueForPolarityDecision|double|THRESHOLD VALUE FOR POLARITY DECISION|V|3|0|16|V|3|5 +020122|thresholdValueForPolarityDecision|long|THRESHOLD VALUE FOR POLARITY DECISION|A|0|0|16|A|0|5 +020123|minimumDirectionThreshold|double|MINIMUM THRESHOLD FOR DETECTION|V/m|3|0|16|V/m|3|5 +020124|lightningStrokeOrFlash|table|LIGHTNING STROKE OR FLASH|CODE TABLE|0|0|2|CODE TABLE|0|1 +020126|lightningRateOfDischarge|long|LIGHTNING RATE OF DISCHARGE|/h|0|0|23|/h|0|7 +020127|lightningDistanceFromStation|long|LIGHTNING - DISTANCE FROM STATION|m|-3|0|8|m|-3|3 +020128|lightningDirectionFromStation|double|LIGHTNING - DIRECTION FROM STATION|deg|1|0|12|deg|1|4 +020129|lightningDensityStrokeFlashOrEvent|double|LIGHTNING DENSITY (STROKE, FLASH OR EVENT)|m-2|6|0|10|m-2|6|4 +020130|cloudHydrometeorConcentration|long|CLOUD HYDROMETEOR CONCENTRATION|Numeric|0|0|10|Numeric|0|3 +020131|effectiveRadiusOfCloudHydrometeors|double|EFFECTIVE RADIUS OF CLOUD HYDROMETEORS|m|5|0|6|m|5|2 +020132|cloudLiquidWaterContent|double|CLOUD LIQUID WATER CONTENT|kg m-3|5|0|11|kg m-3|5|4 +020133|hydrometeorRadius|double|HYDROMETEOR RADIUS|m|5|0|6|m|5|2 +020135|iceMassOnARod|double|ICE MASS (ON A ROD)|kg/m|1|0|10|kg/m|1|3 +020136|supplementaryCloudType|table|SUPPLEMENTARY CLOUD TYPE|CODE TABLE|0|0|9|CODE TABLE|0|3 +020137|evolutionOfClouds|table|EVOLUTION OF CLOUDS|CODE TABLE|0|0|4|CODE TABLE|0|2 +020138|roadSurfaceCondition|table|ROAD SURFACE CONDITION|CODE TABLE|0|0|4|CODE TABLE|0|2 +021001|horizontalReflectivity|long|HORIZONTAL REFLECTIVITY|dB|0|-64|7|dB|0|3 +021002|verticalReflectivity|long|VERTICAL REFLECTIVITY|dB|0|-64|7|dB|0|3 +021003|differentialReflectivity|double|DIFFERENTIAL REFLECTIVITY|dB|1|-5|7|dB|1|3 +021004|differentialReflectivity|double|DIFFERENTIAL REFLECTIVITY|dB|2|-800|11|dB|2|4 +021005|linearDepolarizationRatio|long|LINEAR DEPOLARIZATION RATIO|dB|0|-65|6|dB|0|2 +021006|circularDepolarizationRatio|long|CIRCULAR DEPOLARIZATION RATIO|dB|0|-65|6|dB|0|2 +021011|dopplerMeanVelocityXDirection|long|DOPPLER MEAN VELOCITY IN X-DIRECTION|m/s|0|-128|8|m/s|0|3 +021012|dopplerMeanVelocityYDirection|long|DOPPLER MEAN VELOCITY IN Y-DIRECTION|m/s|0|-128|8|m/s|0|3 +021013|dopplerMeanVelocityZDirection|long|DOPPLER MEAN VELOCITY IN Z-DIRECTION|m/s|0|-128|8|m/s|0|3 +021014|dopplerMeanVelocityRadial|double|DOPPLER MEAN VELOCITY (RADIAL)|m/s|1|-4096|13|m/s|1|4 +021017|dopplerVelocitySpectralWidth|double|DOPPLER VELOCITY SPECTRAL WIDTH|m/s|1|0|8|m/s|1|3 +021018|extendedNyquistVelocity|double|EXTENDED NYQUIST VELOCITY|m/s|1|0|10|m/s|1|4 +021019|highNyquistVelocity|double|HIGH NYQUIST VELOCITY|m/s|1|0|10|m/s|1|3 +021021|echoTops|long|ECHO TOPS|m|-3|0|4|m|-3|2 +021022|rangeBinOffset|double|RANGE BIN OFFSET|m|1|0|14|m|1|5 +021023|rangeBinSize|long|RANGE BIN SIZE|m|0|0|14|m|0|5 +021024|azimuthOffset|double|AZIMUTH OFFSET|deg|1|0|12|deg|1|4 +021025|azimuthalResolution|double|AZIMUTHAL RESOLUTION|deg|1|0|8|deg|1|3 +021028|differentialPhase|double|DIFFERENTIAL PHASE|deg|1|0|12|deg|1|4 +021029|crossPolarizationCorrelationCoefficient|long|CROSS-POLARIZATION CORRELATION COEFFICIENT|Numeric|2|-100|8|Numeric|2|3 +021030|signalToNoiseRatio|long|SIGNAL TO NOISE RATIO|dB|0|-32|8|dB|0|3 +021031|verticallyIntegratedLiquidWaterContent|long|VERTICALLY INTEGRATED LIQUID-WATER CONTENT|kg m-2|0|0|7|kg m-2|0|3 +021036|radarRainfallIntensity|double|RADAR RAINFALL INTENSITY|m/s|7|0|12|m/s|7|4 +021041|brightBandHeight|long|BRIGHT-BAND HEIGHT|m|-2|0|8|m|-2|3 +021051|signalPowerAbove1Mw|long|SIGNAL POWER ABOVE 1 MW|dB|0|-256|8|dB|0|3 +021062|backscatter|double|BACKSCATTER|dB|2|-5000|13|dB|2|4 +021063|radiometricResolutionNoiseValue|double|RADIOMETRIC RESOLUTION (NOISE VALUE)|%|1|0|10|%|1|4 +021064|clutterNoiseEstimate|long|CLUTTER NOISE ESTIMATE|Numeric|0|0|8|Numeric|0|3 +021065|missingPacketCounter|long|MISSING PACKET COUNTER|Numeric|0|-127|8|Numeric|0|3 +021066|waveScatterometerProductConfidenceData|flag|WAVE SCATTEROMETER PRODUCT CONFIDENCE DATA|FLAG TABLE|0|0|12|FLAG TABLE|0|4 +021067|windProductConfidenceData|flag|WIND PRODUCT CONFIDENCE DATA|FLAG TABLE|0|0|13|FLAG TABLE|0|5 +021068|radarAltimeterProductConfidenceData|flag|RADAR ALTIMETER PRODUCT CONFIDENCE DATA|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +021069|sstProductConfidenceData|flag|SST PRODUCT CONFIDENCE DATA|FLAG TABLE|0|0|10|FLAG TABLE|0|4 +021070|sstProductConfidenceDataSadist2|flag|SST PRODUCT CONFIDENCE DATA (SADIST-2)|FLAG TABLE|0|0|23|FLAG TABLE|0|6 +021071|peakiness|long|PEAKINESS|Numeric|0|0|16|Numeric|0|5 +021072|satelliteAltimeterCalibrationStatus|flag|SATELLITE ALTIMETER CALIBRATION STATUS|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +021073|satelliteAltimeterInstrumentMode|flag|SATELLITE ALTIMETER INSTRUMENT MODE|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +021075|imageSpectrumIntensity|long|IMAGE SPECTRUM INTENSITY|Numeric|0|0|8|Numeric|0|3 +021076|representationOfIntensities|table|REPRESENTATION OF INTENSITIES|CODE TABLE|0|0|3|CODE TABLE|0|1 +021077|altitudeCorrectionIonosphere|double|ALTITUDE CORRECTION (IONOSPHERE)|m|3|0|14|m|3|5 +021078|altitudeCorrectionDryTroposphere|double|ALTITUDE CORRECTION (DRY TROPOSPHERE)|m|3|0|9|m|3|3 +021079|altitudeCorrectionWetTroposphere|double|ALTITUDE CORRECTION (WET TROPOSPHERE)|m|3|2000|10|m|3|4 +021080|altitudeCorrectionCalibrationConstant|double|ALTITUDE CORRECTION (CALIBRATION CONSTANT)|m|3|0|11|m|3|4 +021081|openLoopCorrectionHeightTimeLoop|double|OPEN LOOP CORRECTION (HEIGHT-TIME LOOP)|m|3|0|10|m|3|4 +021082|openLoopCorrectionAutoGainControl|double|OPEN LOOP CORRECTION (AUTO GAIN CONTROL)|dB|3|-3000|14|dB|3|5 +021083|warmTargetCalibration|long|WARM TARGET CALIBRATION|Numeric|0|0|16|Numeric|0|5 +021084|coldTargetCalibration|long|COLD TARGET CALIBRATION|Numeric|0|0|16|Numeric|0|5 +021085|atsrSeaSurfaceTemperatureAcrossTrackBandNumber|long|ATSR SEA-SURFACE TEMPERATURE ACROSS-TRACK BAND NUMBER|Numeric|0|0|4|Numeric|0|2 +021086|numberOfPixelsInNadirOnlyAverage|long|NUMBER OF PIXELS IN NADIR ONLY, AVERAGE|Numeric|0|0|9|Numeric|0|3 +021087|numberOfPixelsInDualViewAverage|long|NUMBER OF PIXELS IN DUAL VIEW, AVERAGE|Numeric|0|0|9|Numeric|0|3 +021088|wetBackscatter|double|WET BACKSCATTER|dB|2|-5000|13|dB|2|4 +021091|radarSignalDopplerSpectrum0thMoment|long|RADAR SIGNAL DOPPLER SPECTRUM 0TH MOMENT|dB|0|-100|8|dB|0|3 +021092|rassSignalDopplerSpectrum0thMomentReferringToRassSignal|long|RASS SIGNAL DOPPLER SPECTRUM 0TH MOMENT, REFERRING TO RASS SIGNAL|dB|0|-100|8|dB|0|3 +021093|kuBandPeakiness|long|KU BAND PEAKINESS|Numeric|3|0|16|Numeric|3|5 +021094|sBandPeakiness|long|S BAND PEAKINESS|Numeric|3|0|16|Numeric|3|5 +021095|kpCoefficientA|long|KP COEFFICIENT A|Numeric|6|0|20|Numeric|6|7 +021096|kpCoefficientB|long|KP COEFFICIENT B|Numeric|6|0|20|Numeric|6|7 +021097|kpCoefficientC|long|KP COEFFICIENT C|Numeric|6|0|20|Numeric|6|7 +021101|numberOfVectorAmbiguities|long|NUMBER OF VECTOR AMBIGUITIES|Numeric|0|0|3|Numeric|0|1 +021102|indexOfSelectedWindVector|long|INDEX OF SELECTED WIND VECTOR|Numeric|0|0|3|Numeric|0|1 +021103|totalNumberOfSigma0Measurements|long|TOTAL NUMBER OF SIGMA-0 MEASUREMENTS|Numeric|0|0|5|Numeric|0|2 +021104|likelihoodComputedForSolution|long|LIKELIHOOD COMPUTED FOR SOLUTION|Numeric|3|-30000|15|Numeric|3|5 +021105|normalizedRadarCrossSection|double|NORMALIZED RADAR CROSS-SECTION|dB|2|-10000|14|dB|2|5 +021106|kpVarianceCoefficientAlpha|long|KP VARIANCE COEFFICIENT (ALPHA)|Numeric|3|0|14|Numeric|3|5 +021107|kpVarianceCoefficientBeta|long|KP VARIANCE COEFFICIENT (BETA)|Numeric|8|0|16|Numeric|8|5 +021109|seawindsWindVectorCellQuality|flag|SEAWINDS WIND VECTOR CELL QUALITY|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +021110|numberOfInnerBeamSigma0ForwardOfSatellite|long|NUMBER OF INNER-BEAM SIGMA-0 (FORWARD OF SATELLITE)|Numeric|0|0|6|Numeric|0|2 +021111|numberOfOuterBeamSigma0ForwardOfSatellite|long|NUMBER OF OUTER-BEAM SIGMA-0 (FORWARD OF SATELLITE)|Numeric|0|0|6|Numeric|0|2 +021112|numberOfInnerBeamSigma0AftOfSatellite|long|NUMBER OF INNER-BEAM SIGMA-0 (AFT OF SATELLITE)|Numeric|0|0|6|Numeric|0|2 +021113|numberOfOuterBeamSigma0AftOfSatellite|long|NUMBER OF OUTER-BEAM SIGMA-0 (AFT OF SATELLITE)|Numeric|0|0|6|Numeric|0|2 +021114|kpVarianceCoefficientGamma|double|KP VARIANCE COEFFICIENT (GAMMA)|dB|3|-140000|18|dB|3|6 +021115|seawindsSigma0Quality|flag|SEAWINDS SIGMA-0 QUALITY|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +021116|seawindsSigma0Mode|flag|SEAWINDS SIGMA-0 MODE|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +021117|sigma0VarianceQualityControl|long|SIGMA-0 VARIANCE QUALITY CONTROL|Numeric|2|0|16|Numeric|2|5 +021118|attenuationCorrectionOnSigma0|double|ATTENUATION CORRECTION ON SIGMA-0|dB|2|-10000|14|dB|2|5 +021119|windScatterometerGeophysicalModelFunction|table|WIND SCATTEROMETER GEOPHYSICAL MODEL FUNCTION|CODE TABLE|0|0|6|CODE TABLE|0|2 +021120|probabilityOfRain|long|PROBABILITY OF RAIN|Numeric|3|0|10|Numeric|3|4 +021121|seawindsNofRainIndex|long|SEAWINDS NOF* RAIN INDEX|Numeric|0|0|8|Numeric|0|3 +021122|attenuationCorrectionOnSigma0FromTb|double|ATTENUATION CORRECTION ON SIGMA-0 (FROM TB)|dB|2|-10000|14|dB|2|5 +021123|seawindsNormalizedRadarCrossSection|double|SEAWINDS NORMALIZED RADAR CROSS-SECTION|dB|2|-30000|15|dB|2|5 +021128|numberOfValidPointsPerSecondUsedToDerivePreviousParameters|long|NUMBER OF VALID POINTS PER SECOND USED TO DERIVE PREVIOUS PARAMETERS|Numeric|0|0|8|Numeric|0|3 +021130|spectrumTotalEnergy|long|SPECTRUM TOTAL ENERGY|Numeric|6|0|28|Numeric|6|9 +021131|spectrumMaxEnergy|long|SPECTRUM MAX ENERGY|Numeric|6|0|28|Numeric|6|9 +021132|directionOfSpectrumMaxOnHigherResolutionGrid|double|DIRECTION OF SPECTRUM MAX ON HIGHER RESOLUTION GRID|deg|3|0|19|deg|3|6 +021133|wavelengthOfSpectrumMaxOnHigherResolutionGrid|double|WAVELENGTH OF SPECTRUM MAX ON HIGHER RESOLUTION GRID|m|3|0|29|m|3|9 +021134|rangeResolutionOfCressCovarianceSpectrum|double|RANGE RESOLUTION OF CRESS COVARIANCE SPECTRUM|rad/m|3|0|19|rad/m|3|6 +021135|realPartOfCrossSpectraPolarGridNumberOfBins|long|REAL PART OF CROSS SPECTRA POLAR GRID NUMBER OF BINS|Numeric|3|-524288|20|Numeric|3|7 +021136|imaginaryPartOfCrossSpectraPolarGridNumberOfBins|long|IMAGINARY PART OF CROSS SPECTRA POLAR GRID NUMBER OF BINS|Numeric|3|-524288|20|Numeric|3|7 +021137|kuBandCorrectedOceanBackscatterCoefficient|double|KU BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021138|stdKuBandCorrectedOceanBackscatterCoefficient|double|STD KU BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021139|kuBandNetInstrumentalCorrectionForAgc|double|KU BAND NET INSTRUMENTAL CORRECTION FOR AGC|dB|2|-2048|12|dB|2|4 +021140|sBandCorrectedOceanBackscatterCoefficient|double|S BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021141|stdSBandCorrectedOceanBackscatterCoefficient|double|STD S BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021142|sBandNetInstrumentalCorrectionForAgc|double|S BAND NET INSTRUMENTAL CORRECTION FOR AGC|dB|2|-1024|11|dB|2|4 +021143|kuBandRainAttenuation|double|KU BAND RAIN ATTENUATION|dB|2|-1073741824|31|dB|2|10 +021144|altimeterRainFlag|flag|ALTIMETER RAIN FLAG|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +021145|kuBandAutomaticGainControl|double|KU BAND AUTOMATIC GAIN CONTROL|dB|2|0|13|dB|2|4 +021146|rmsKuBandAutomaticGainControl|double|RMS KU BAND AUTOMATIC GAIN CONTROL|dB|2|0|8|dB|2|3 +021147|numberOfValidPointsForKuBandAutomaticGainControl|long|NUMBER OF VALID POINTS FOR KU BAND AUTOMATIC GAIN CONTROL|Numeric|0|0|5|Numeric|0|2 +021148|trailingEdgeVariationFlag|flag|TRAILING EDGE VARIATION FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +021150|beamCollocation|table|BEAM CO-LOCATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +021151|estimatedErrorInSigma0At40DegreesIncidenceAngle|double|ESTIMATED ERROR IN SIGMA-0 AT 40 DEGREES INCIDENCE ANGLE|dB|2|0|9|dB|2|3 +021152|slopeAt40DegreesIncidenceAngle|double|SLOPE AT 40 DEGREES INCIDENCE ANGLE|dB/deg|2|-80|7|dB/deg|2|2 +021153|estimatedErrorInSlopeAt40DegreesIncidenceAngle|double|ESTIMATED ERROR IN SLOPE AT 40 DEGREES INCIDENCE ANGLE|dB/deg|2|-40|6|dB/deg|2|2 +021154|soilMoistureSensitivity|double|SOIL MOISTURE SENSITIVITY|dB|2|0|12|dB|2|4 +021155|windVectorCellQuality|flag|WIND VECTOR CELL QUALITY|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +021156|backscatterDistance|long|BACKSCATTER DISTANCE|Numeric|1|-4096|13|Numeric|1|4 +021157|lossPerUnitLengthOfAtmosphere|double|LOSS PER UNIT LENGTH OF ATMOSPHERE USED|dB/m|10|0|22|dB/m|10|7 +021158|ascatKpEstimateQuality|table|ASCAT KP ESTIMATE QUALITY|CODE TABLE|0|0|2|CODE TABLE|0|1 +021159|ascatSigma0Usability|table|ASCAT SIGMA-0 USABILITY|CODE TABLE|0|0|2|CODE TABLE|0|1 +021160|ascatUseOfSyntheticData|long|ASCAT USE OF SYNTHETIC DATA|Numeric|3|0|10|Numeric|3|4 +021161|ascatSyntheticDataQuantity|long|ASCAT SYNTHETIC DATA QUANTITY|Numeric|3|0|10|Numeric|3|4 +021162|ascatSatelliteOrbitAndAttitudeQuality|long|ASCAT SATELLITE ORBIT AND ATTITUDE QUALITY|Numeric|3|0|10|Numeric|3|4 +021163|ascatSolarArrayReflectionContamination|long|ASCAT SOLAR ARRAY REFLECTION CONTAMINATION|Numeric|3|0|10|Numeric|3|4 +021164|ascatTelemetryPresenceAndQuality|long|ASCAT TELEMETRY PRESENCE AND QUALITY|Numeric|3|0|10|Numeric|3|4 +021165|ascatExtrapolatedReferenceFunctionPresence|long|ASCAT EXTRAPOLATED REFERENCE FUNCTION PRESENCE|Numeric|3|0|10|Numeric|3|4 +021166|landFraction|long|LAND FRACTION|Numeric|3|0|10|Numeric|3|4 +021169|icePresenceIndicator|table|ICE PRESENCE INDICATOR|CODE TABLE|0|0|2|CODE TABLE|0|1 +021170|cBandCorrectedOceanBackscatterCoefficient|double|C BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021171|rmsCBandCorrectedOceanBackscatterCoefficient|double|RMS C BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021172|cBandNetInstrumentalCorrectionForAgc|double|C BAND NET INSTRUMENTAL CORRECTION FOR AGC|dB|2|-2048|12|dB|2|4 +021173|cBandAutomaticGainControl|double|C BAND AUTOMATIC GAIN CONTROL|dB|2|0|13|dB|2|4 +021174|rmsCBandAutomaticGainControl|double|RMS C BAND AUTOMATIC GAIN CONTROL|dB|2|0|9|dB|2|3 +021175|numberOfValidPointsForCBandAutomaticGainControl|long|NUMBER OF VALID POINTS FOR C BAND AUTOMATIC GAIN CONTROL|Numeric|0|0|10|Numeric|0|4 +021176|highFrequencyVariabilityCorrection|double|HIGH FREQUENCY VARIABILITY CORRECTION|m|3|0|16|m|3|5 +021177|correctedOcogBackscatterCoefficient|double|CORRECTED OCOG* BACKSCATTER COEFFICIENT|dB|2|0|16|dB|2|5 +021178|stdOf20HzOcogBackscatterCoefficient|double|STD OF 20 HZ OCOG BACKSCATTER COEFFICIENT|dB|2|0|16|dB|2|5 +021179|numberOf20HzValidPointsForOcogBackscatterCoefficient|long|NUMBER OF 20 HZ VALID POINTS FOR OCOG BACKSCATTER COEFFICIENT|Numeric|0|0|16|Numeric|0|5 +021180|numberOf20HzValidPointsForOceanBackscatterCoefficient|long|NUMBER OF 20 HZ VALID POINTS FOR OCEAN BACKSCATTER COEFFICIENT|Numeric|0|0|8|Numeric|0|3 +021181|20HzOceanBackscatterCoefficient|double|20 HZ OCEAN BACKSCATTER COEFFICIENT|dB|2|0|16|dB|2|5 +021182|20HzKuBandPeakiness|long|20 HZ KU BAND PEAKINESS|Numeric|3|0|16|Numeric|3|5 +021183|specificBandCorrectedOceanBackscatterCoefficient|double|SPECIFIC BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021184|stdSpecificBandCorrectedOceanBackscatterCoefficient|double|STD SPECIFIC BAND CORRECTED OCEAN BACKSCATTER COEFFICIENT|dB|2|-32768|16|dB|2|5 +021185|specificBandNetInstrumentalCorrectionForAgc|double|SPECIFIC BAND NET INSTRUMENTAL CORRECTION FOR AGC|dB|2|-2048|12|dB|2|4 +021186|specificBandAutomaticGainControl|double|SPECIFIC BAND AUTOMATIC GAIN CONTROL|dB|2|0|13|dB|2|4 +021187|rmsSpecificBandAutomaticGainControl|double|RMS SPECIFIC BAND AUTOMATIC GAIN CONTROL|dB|2|0|8|dB|2|3 +021188|numberOfValidPointsForSpecificBandAutomaticGainControl|long|NUMBER OF VALID POINTS FOR SPECIFIC BAND AUTOMATIC GAIN CONTROL|Numeric|0|0|7|Numeric|0|3 +021189|correctedOcogBackscatterCoefficientNegativeReference|double|CORRECTED OCOG* BACKSCATTER COEFFICIENT (NEGATIVE REFERENCE)|dB|2|-32768|16|dB|2|6 +022001|wavesDirection|long|DIRECTION OF WAVES|deg|0|0|9|deg|0|3 +022002|windWavesDirection|long|DIRECTION OF WIND WAVES|deg|0|0|9|deg|0|3 +022003|swellWavesDirection|long|DIRECTION OF SWELL WAVES|deg|0|0|9|deg|0|3 +022004|currentDirection|long|DIRECTION OF CURRENT|deg|0|0|9|deg|0|3 +022005|seaSurfaceCurrentDirection|long|DIRECTION OF SEA-SURFACE CURRENT|deg|0|0|9|deg|0|3 +022011|periodOfWaves|long|PERIOD OF WAVES|s|0|0|6|s|0|2 +022012|periodOfWindWaves|long|PERIOD OF WIND WAVES|s|0|0|6|s|0|2 +022013|periodOfSwellWaves|long|PERIOD OF SWELL WAVES|s|0|0|6|s|0|2 +022021|heightOfWaves|double|HEIGHT OF WAVES|m|1|0|10|m|1|4 +022022|heightOfWindWaves|double|HEIGHT OF WIND WAVES|m|1|0|10|m|1|4 +022023|heightOfSwellWaves|double|HEIGHT OF SWELL WAVES|m|1|0|10|m|1|4 +022025|standardDeviationWaveHeight|double|STANDARD DEVIATION WAVE HEIGHT|m|2|0|10|m|2|4 +022026|standardDeviationOfSignificantWaveHeight|double|STANDARD DEVIATION OF SIGNIFICANT WAVE HEIGHT|m|2|0|10|m|2|4 +022031|speedOfCurrent|double|SPEED OF CURRENT|m/s|2|0|13|m/s|2|4 +022032|speedOfSeaSurfaceCurrent|double|SPEED OF SEA-SURFACE CURRENT|m/s|2|0|13|m/s|2|4 +022035|tidalElevationWithRespectToLocalChartDatum|double|TIDAL ELEVATION WITH RESPECT TO LOCAL CHART DATUM|m|2|0|14|m|2|4 +022036|meteorologicalResidualTidalElevationSurgeOrOffset|double|METEOROLOGICAL RESIDUAL TIDAL ELEVATION (SURGE OR OFFSET)|m|2|0|14|m|2|4 +022037|tidalElevationWithRespectToNationalLandDatum|double|TIDAL ELEVATION WITH RESPECT TO NATIONAL LAND DATUM|m|3|-10000|15|m|3|5 +022038|tidalElevationWithRespectToLocalChartDatum|double|TIDAL ELEVATION WITH RESPECT TO LOCAL CHART DATUM|m|3|-10000|15|m|3|5 +022039|meteorologicalResidualTidalElevationSurgeOrOffset|double|METEOROLOGICAL RESIDUAL TIDAL ELEVATION (SURGE OR OFFSET)|m|3|-5000|13|m|3|4 +022040|meteorologicalResidualTidalElevationSurgeOrOffset|double|METEOROLOGICAL RESIDUAL TIDAL ELEVATION (SURGE OR OFFSET)|m|3|-5000|14|m|3|5 +022041|seaSurfaceTemperature15DayRunningMean|double|SEA-SURFACE TEMPERATURE (15-DAY RUNNING MEAN)|K|1|0|12|K|1|4 +022042|oceanographicWaterTemperature|double|SEA/WATER TEMPERATURE|K|1|0|12|K|1|4 +022043|oceanographicWaterTemperature|double|SEA/WATER TEMPERATURE|K|2|0|15|K|2|5 +022044|soundVelocity|double|SOUND VELOCITY|m/s|1|0|14|m/s|1|5 +022045|oceanographicWaterTemperature|double|SEA/WATER TEMPERATURE|K|3|0|19|K|3|6 +022046|seaIceFraction|long|SEA ICE FRACTION|Numeric|2|0|7|Numeric|2|3 +022049|seaSurfaceTemperature|double|SEA-SURFACE TEMPERATURE|K|2|0|15|K|2|5 +022050|standardDeviationSeaSurfaceTemperature|double|STANDARD DEVIATION SEA-SURFACE TEMPERATURE|K|2|0|8|K|2|3 +022055|floatCycleNumber|long|FLOAT CYCLE NUMBER|Numeric|0|0|10|Numeric|0|3 +022056|directionOfProfile|table|DIRECTION OF PROFILE|CODE TABLE|0|0|2|CODE TABLE|0|1 +022059|seaSurfaceSalinity|double|SEA-SURFACE SALINITY|0/00|2|0|14|0/00|2|5 +022060|lagrangianDrifterDrogueStatus|table|LAGRANGIAN DRIFTER DROGUE STATUS|CODE TABLE|0|0|3|CODE TABLE|0|1 +022061|seaState|table|STATE OF THE SEA|CODE TABLE|0|0|4|CODE TABLE|0|2 +022062|salinity|double|SALINITY|0/00|2|0|14|0/00|2|5 +022063|totalWaterDepth|long|TOTAL WATER DEPTH|m|0|0|14|m|0|5 +022064|salinity|double|SALINITY|0/00|3|0|17|0/00|3|6 +022065|oceanographicWaterPressure|long|WATER PRESSURE|Pa|-3|0|17|Pa|-3|6 +022066|oceanographicWaterConductivity|double|WATER CONDUCTIVITY|S/m|6|0|26|S/m|6|8 +022067|instrumentTypeForWaterTemperatureOrSalinityProfileMeasurement|table|INSTRUMENT TYPE FOR WATER TEMPERATURE/SALINITY PROFILE MEASUREMENT|CODE TABLE|0|0|10|CODE TABLE|0|4 +022068|waterTemperatureProfileRecorderTypes|table|WATER TEMPERATURE PROFILE RECORDER TYPES|CODE TABLE|0|0|7|CODE TABLE|0|3 +022069|spectralWaveDensity|double|SPECTRAL WAVE DENSITY|m2/Hz|3|0|22|m2/Hz|3|7 +022070|significantWaveHeight|double|SIGNIFICANT WAVE HEIGHT|m|2|0|13|m|2|4 +022071|spectralPeakWavePeriod|double|SPECTRAL PEAK WAVE PERIOD|s|1|0|9|s|1|3 +022072|spectralPeakWaveLength|long|SPECTRAL PEAK WAVELENGTH|m|0|0|13|m|0|4 +022073|maximumWaveHeight|double|MAXIMUM WAVE HEIGHT|m|2|0|13|m|2|4 +022074|averageWavePeriod|double|AVERAGE WAVE PERIOD|s|1|0|9|s|1|3 +022075|averageWaveLength|long|AVERAGE WAVELENGTH|m|0|0|13|m|0|4 +022076|directionFromWhichDominantWavesAreComing|long|DIRECTION FROM WHICH DOMINANT WAVES ARE COMING|deg|0|0|9|deg|0|3 +022077|directionalSpreadOfDominantWave|long|DIRECTIONAL SPREAD OF DOMINANT WAVE|deg|0|0|9|deg|0|3 +022078|durationOfWaveRecord|long|DURATION OF WAVE RECORD|s|0|0|12|s|0|4 +022079|lengthOfWaveRecord|long|LENGTH OF WAVE RECORD|m|0|0|16|m|0|5 +022080|wavebandCentralFrequency|double|WAVEBAND CENTRAL FREQUENCY|Hz|3|0|10|Hz|3|4 +022081|wavebandCentralWaveNumber|double|WAVEBAND CENTRAL WAVE NUMBER|/m|5|0|13|/m|5|4 +022082|maximumNonDirectionalSpectralWaveDensity|double|MAXIMUM NON-DIRECTIONAL SPECTRAL WAVE DENSITY|m2 s|2|0|20|m2 s|2|7 +022083|maximumNonDirectionalSpectralWaveNumber|double|MAXIMUM NON-DIRECTIONAL SPECTRAL WAVE NUMBER|m3|2|0|20|m3|2|7 +022084|bandContainingMaximumNonDirectionalSpectralWaveDensity|long|BAND CONTAINING MAXIMUM NON-DIRECTIONAL SPECTRAL WAVE DENSITY|Numeric|0|0|7|Numeric|0|3 +022085|spectralWaveDensityRatio|long|SPECTRAL WAVE DENSITY RATIO|Numeric|0|0|7|Numeric|0|3 +022086|meanDirectionFromWhichWavesAreComing|long|MEAN DIRECTION FROM WHICH WAVES ARE COMING|deg|0|0|9|deg|0|3 +022087|principalDirectionFromWhichWavesAreComing|long|PRINCIPAL DIRECTION FROM WHICH WAVES ARE COMING|deg|0|0|9|deg|0|3 +022088|firstNormalizedPolarCoordinateFromFourierCoefficients|long|FIRST NORMALIZED POLAR COORDINATE FROM FOURIER COEFFICIENTS|Numeric|2|0|7|Numeric|2|3 +022089|secondNormalizedPolarCoordinateFromFourierCoefficients|long|SECOND NORMALIZED POLAR COORDINATE FROM FOURIER COEFFICIENTS|Numeric|2|0|7|Numeric|2|3 +022090|nonDirectionalSpectralEstimateByWaveFrequency|double|NON-DIRECTIONAL SPECTRAL ESTIMATE BY WAVE FREQUENCY|m2 s|2|0|20|m2 s|2|7 +022091|nonDirectionalSpectralEstimateByWaveNumber|double|NON-DIRECTIONAL SPECTRAL ESTIMATE BY WAVE NUMBER|m3|2|0|20|m3|2|7 +022092|directionalSpectralEstimateByWaveFrequency|double|DIRECTIONAL SPECTRAL ESTIMATE BY WAVE FREQUENCY|m2 rad-1 s|2|0|20|m2 rad-1 s|2|7 +022093|directionalSpectralEstimateByWaveNumber|double|DIRECTIONAL SPECTRAL ESTIMATE BY WAVE NUMBER|m4|2|0|20|m4|2|7 +022094|totalNumberOfWaveBands|long|TOTAL NUMBER OF WAVE BANDS|Numeric|0|0|7|Numeric|0|3 +022095|directionalSpreadOfIndividualWaves|long|DIRECTIONAL SPREAD OF INDIVIDUAL WAVES|deg|0|0|8|deg|0|3 +022096|spectralBandWidth|double|SPECTRAL BAND WIDTH|/s|3|0|4|/s|3|2 +022097|meanWavelength731MOfImageSpectrumAtLowWaveNumbers|long|MEAN WAVELENGTH > 731 M OF IMAGE SPECTRUM AT LOW WAVE NUMBERS|m|0|0|14|m|0|5 +022098|wavelengthSpreadWavelength731MAtLowWaveNumbers|long|WAVELENGTH SPREAD (WAVELENGTH > 731 M) AT LOW WAVE NUMBERS|m|0|0|14|m|0|5 +022099|meanDirectionAtLowWaveNumbersWavelength731M|long|MEAN DIRECTION AT LOW WAVE NUMBERS (WAVELENGTH > 731 M)|deg|0|0|9|deg|0|3 +022100|directionSpreadAtLowWaveNumbersWavelength731M|long|DIRECTION SPREAD AT LOW WAVE NUMBERS (WAVELENGTH > 731 M)|deg|0|0|9|deg|0|3 +022101|totalEnergyWavelength731mAtLowWaveNumbers|long|TOTAL ENERGY (WAVELENGTH > 731M) AT LOW WAVE NUMBERS|Numeric|0|0|31|Numeric|0|10 +022102|scaledMaximumNonDirectionalSpectralWaveDensityByFrequency|long|SCALED MAXIMUM NON-DIRECTIONAL SPECTRAL WAVE DENSITY BY FREQUENCY|m2 s|0|0|14|m2 s|0|5 +022103|scaledMaximumNonDirectionalSpectralWaveDensityByWavenumber|long|SCALED MAXIMUM NON-DIRECTIONAL SPECTRAL WAVE DENSITY BY WAVE NUMBER|m3|0|0|14|m3|0|5 +022104|scaledNonDirectionalSpectralWaveDensityByFrequency|long|SCALED NON-DIRECTIONAL SPECTRAL WAVE DENSITY BY FREQUENCY|m2 s|0|0|14|m2 s|0|5 +022105|scaledNonDirectionalSpectralWaveDensityByWavenumber|long|SCALED NON-DIRECTIONAL SPECTRAL WAVE DENSITY BY WAVE NUMBER|m3|0|0|14|m3|0|5 +022106|scaledDirectionalSpectralWaveDensityByFrequency|long|SCALED DIRECTIONAL SPECTRAL WAVE DENSITY BY FREQUENCY|m2 rad-1 s|0|0|14|m2 rad-1 s|0|5 +022107|scaledDirectionalSpectralWaveDensityByWavenumber|long|SCALED DIRECTIONAL SPECTRAL WAVE DENSITY BY WAVE NUMBER|m4|0|0|14|m4|0|5 +022108|spectralWaveDensityRatio|long|SPECTRAL WAVE DENSITY RATIO|%|0|0|7|%|0|3 +022120|tideStationAutomatedWaterLevelCheck|table|TIDE STATION AUTOMATED WATER LEVEL CHECK|CODE TABLE|0|0|5|CODE TABLE|0|2 +022121|tideStationManualWaterLevelCheck|table|TIDE STATION MANUAL WATER LEVEL CHECK|CODE TABLE|0|0|5|CODE TABLE|0|2 +022122|automatedMeteorologicalDataCheck|table|TIDE STATION AUTOMATED METEOROLOGICAL DATA CHECK|CODE TABLE|0|0|5|CODE TABLE|0|2 +022123|tideStationManualMeteorologicalDataCheck|table|TIDE STATION MANUAL METEOROLOGICAL DATA CHECK|CODE TABLE|0|0|5|CODE TABLE|0|2 +022130|numberOfValidPointsForSpecificBand|long|NUMBER OF VALID POINTS FOR SPECIFIC BAND|Numeric|0|0|10|Numeric|0|4 +022131|rmsSpecificBandSignificantWaveHeight|double|RMS SPECIFIC BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022132|numberOfValidPointsForSpecificBandSignificantWaveHeight|long|NUMBER OF VALID POINTS FOR SPECIFIC BAND SIGNIFICANT WAVE HEIGHT|Numeric|0|0|10|Numeric|0|4 +022133|specificBandNetInstrumentCorrectionForSignificantWaveHeight|double|SPECIFIC BAND NET INSTRUMENT CORRECTION FOR SIGNIFICANT WAVE HEIGHT|m|3|-1000|11|m|3|4 +022134|numberOfValidPointsForSpecificBandBackscatter|long|NUMBER OF VALID POINTS FOR SPECIFIC BAND BACKSCATTER|Numeric|0|0|10|Numeric|0|4 +022141|seaSurfaceTemperature15DayRunningMean|double|SEA-SURFACE TEMPERATURE (15-DAY RUNNING MEAN)|K|2|0|15|K|2|5 +022142|squareOfSignificantWaveHeight|double|SQUARE OF SIGNIFICANT WAVE HEIGHT|m2|3|-33554432|26|m2|3|8 +022143|stdOf20HzSwhSquared|double|STD OF 20 HZ SWH SQUARED|m2|3|-8388608|24|m2|3|8 +022144|numberOf20HzValidPointsForSwhSquared|long|NUMBER OF 20 HZ VALID POINTS FOR SWH SQUARED|Numeric|0|0|9|Numeric|0|3 +022145|stdOf20HzOceanRange|double|STD OF 20 HZ OCEAN RANGE|m|3|-33554432|31|m|3|10 +022146|ocogRange|double|OCOG RANGE|m|3|0|31|m|3|10 +022147|stdOf20HzOcogRange|double|STD OF 20 HZ OCOG RANGE|m|3|-8388608|31|m|3|10 +022148|numberOf20HzValidPointsForOceanRange|long|NUMBER OF 20 HZ VALID POINTS FOR OCEAN RANGE|Numeric|0|0|9|Numeric|0|3 +022149|20HzSignificantWaveHeightSquared|double|20 HZ SIGNIFICANT WAVE HEIGHT SQUARED|m2|3|-33554432|26|m2|3|8 +022150|numberOf18HzValidPointsForKuBand|long|NUMBER OF 18 HZ VALID POINTS FOR KU BAND|Numeric|0|0|10|Numeric|0|4 +022151|kuBandOceanRange|double|KU BAND OCEAN RANGE|m|3|0|31|m|3|10 +022152|stdOf18HzKuBandOceanRange|double|STD OF 18 HZ KU BAND OCEAN RANGE|m|3|0|16|m|3|5 +022153|numberOf18HzValidPointsForSBand|long|NUMBER OF 18 HZ VALID POINTS FOR S BAND|Numeric|0|0|10|Numeric|0|4 +022154|sBandOceanRange|double|S BAND OCEAN RANGE|m|3|0|31|m|3|10 +022155|stdOf18HzSBandOceanRange|double|STD OF 18 HZ S BAND OCEAN RANGE|m|3|0|16|m|3|5 +022156|kuBandSignificantWaveHeight|double|KU BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022157|stdOf18HzKuBandOceanRange|double|STD OF 18 HZ KU BAND OCEAN RANGE|m|3|0|16|m|3|5 +022158|sBandSignificantWaveHeight|double|S BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022159|stdOf18HzSBandSignificantWaveHeight|double|STD OF 18 HZ S BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022160|normalizedInverseWaveAge|long|NORMALIZED INVERSE WAVE AGE|Numeric|6|0|21|Numeric|6|7 +022161|waveSpectra|double|WAVE SPECTRA|m4|4|0|27|m4|4|9 +022162|rmsOf20HzKuBandOceanRange|double|RMS OF 20 HZ KU BAND OCEAN RANGE|m|3|0|16|m|3|5 +022163|numberOf20HzValidPointsForKuBand|long|NUMBER OF 20 HZ VALID POINTS FOR KU BAND|Numeric|0|0|10|Numeric|0|4 +022164|rms20HzKuBandSignificantWaveHeight|double|RMS 20 HZ KU BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022165|numberOf20HzValidPointsForKuBandSignificantWaveHeight|long|NUMBER OF 20 HZ VALID POINTS FOR KU BAND SIGNIFICANT WAVE HEIGHT|Numeric|0|0|10|Numeric|0|4 +022166|kuBandNetInstrumentalCorrectionForSignificantWaveHeight|double|KU BAND NET INSTRUMENTAL CORRECTION FOR SIGNIFICANT WAVE HEIGHT|m|3|-1000|11|m|3|4 +022167|numberOfValidPointsForKuBandBackscatter|long|NUMBER OF VALID POINTS FOR KU BAND BACKSCATTER|Numeric|0|0|10|Numeric|0|4 +022168|cBandOceanRange|double|C BAND OCEAN RANGE|m|3|0|31|m|3|10 +022169|rmsOfCBandOceanRange|double|RMS OF C BAND OCEAN RANGE|m|3|0|16|m|3|5 +022170|numberOf20HzValidPointsForCBand|long|NUMBER OF 20 HZ VALID POINTS FOR C BAND|Numeric|0|0|10|Numeric|0|4 +022171|cBandSignificantWaveHeight|double|C BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022172|rms20HzCBandSignificantWaveHeight|double|RMS 20 HZ C BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022173|numberOf20HzValidPointsForCBandSignificantWaveHeight|long|NUMBER OF 20 HZ VALID POINTS FOR C BAND SIGNIFICANT WAVE HEIGHT|Numeric|0|0|10|Numeric|0|4 +022174|cBandNetInstrumentalCorrectionForSignificantWaveHeight|double|C BAND NET INSTRUMENTAL CORRECTION FOR SIGNIFICANT WAVE HEIGHT|m|3|-1000|11|m|3|4 +022175|numberOfValidPointsForCBandBackscatter|long|NUMBER OF VALID POINTS FOR C BAND BACKSCATTER|Numeric|0|0|10|Numeric|0|4 +022177|heightOfXbtOrXctdLauncher|long|HEIGHT OF XBT/XCTD LAUNCHER|m|0|0|6|m|0|3 +022178|xbtOrXctdLauncherType|table|XBT/XCTD LAUNCHER TYPE|CODE TABLE|0|0|8|CODE TABLE|0|3 +022179|specificBandSignificantWaveHeightNegativeReference|double|SPECIFIC BAND SIGNIFICANT WAVE HEIGHT (NEGATIVE REFERENCE)|m|3|-500|16|m|3|6 +022182|waterColumnHeight|double|WATER COLUMN HEIGHT|m|3|0|23|m|3|7 +022184|waterColumnHeightDeviationFromReferenceValue|double|WATER COLUMN HEIGHT DEVIATION FROM THE REFERENCE VALUE|m|3|-2000|12|m|3|4 +022185|bprTransmissionCount|long|BPR TRANSMISSION COUNT|Numeric|0|0|10|Numeric|0|3 +022186|directionFromWhichWavesAreComing|long|DIRECTION FROM WHICH WAVES ARE COMING|deg|0|0|9|deg|0|3 +022187|directionalSpreadOfWaves|long|DIRECTIONAL SPREAD OF WAVE|deg|0|0|9|deg|0|3 +022188|oceanographicDissolvedOxygen|double|DISSOLVED OXYGEN|umol/kg|3|0|19|umol/kg|3|6 +022189|specificBandOceanRange|double|SPECIFIC BAND OCEAN RANGE|m|3|0|31|m|3|10 +022190|specificBandSignificantWaveHeight|double|SPECIFIC BAND SIGNIFICANT WAVE HEIGHT|m|3|0|16|m|3|5 +022191|rmsOfSpecificBandOceanRange|double|RMS OF SPECIFIC BAND OCEAN RANGE|m|4|0|16|m|4|5 +023001|accidentEarlyNotificationArticleApplicable|table|ACCIDENT EARLY NOTIFICATION - ARTICLE APPLICABLE|CODE TABLE|0|0|3|CODE TABLE|0|1 +023002|facilityInvolvedInIncident|table|ACTIVITY OR FACILITY INVOLVED IN INCIDENT|CODE TABLE|0|0|5|CODE TABLE|0|2 +023003|releaseType|table|TYPE OF RELEASE|CODE TABLE|0|0|3|CODE TABLE|0|1 +023004|countermeasuresTakenNearBorder|table|COUNTERMEASURES TAKEN NEAR BORDER|CODE TABLE|0|0|3|CODE TABLE|0|1 +023005|causeOfIncident|table|CAUSE OF INCIDENT|CODE TABLE|0|0|2|CODE TABLE|0|1 +023006|incidentSituation|table|INCIDENT SITUATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +023007|characteristicsOfRelease|table|CHARACTERISTICS OF RELEASE|CODE TABLE|0|0|3|CODE TABLE|0|1 +023008|stateOfCurrentRelease|table|STATE OF CURRENT RELEASE|CODE TABLE|0|0|2|CODE TABLE|0|1 +023009|stateOfExpectedRelease|table|STATE OF EXPECTED RELEASE|CODE TABLE|0|0|2|CODE TABLE|0|1 +023016|possibilityOfSignificantChemicalToxicHealthEffect|table|POSSIBILITY OF SIGNIFICANT CHEMICAL TOXIC HEALTH EFFECT|CODE TABLE|0|0|2|CODE TABLE|0|1 +023017|flowDischargeOfMajorRecipient|double|FLOW DISCHARGE OF MAJOR RECIPIENT|m3/s|6|0|20|m3/s|6|7 +023018|releaseBehaviourOverTime|table|RELEASE BEHAVIOUR OVER TIME|CODE TABLE|0|0|3|CODE TABLE|0|1 +023019|actualReleaseHeight|long|ACTUAL RELEASE HEIGHT|m|0|-15000|17|m|0|6 +023021|effectiveReleaseHeight|long|EFFECTIVE RELEASE HEIGHT|m|0|-15000|17|m|0|6 +023022|distanceOfReleasePointOrSiteOfIncident|long|DISTANCE OF RELEASE POINT OR SITE OF INCIDENT|m|0|0|24|m|0|8 +023023|mainTransportSpeedInAtmosphere|double|MAIN TRANSPORT SPEED IN THE ATMOSPHERE|m/s|1|0|12|m/s|1|4 +023024|mainTransportSpeedInWater|double|MAIN TRANSPORT SPEED IN WATER|m/s|2|0|13|m/s|2|4 +023025|mainTransportSpeedInGroundWater|double|MAIN TRANSPORT SPEED IN GROUND WATER|m/s|2|0|13|m/s|2|4 +023027|mainTransportDirectionInTheAtmosphere|long|MAIN TRANSPORT DIRECTION IN THE ATMOSPHERE|deg|0|0|9|deg|0|3 +023028|mainTransportDirectionInWater|long|MAIN TRANSPORT DIRECTION IN WATER|deg|0|0|9|deg|0|3 +023029|mainTransportDirectionInGroundWater|long|MAIN TRANSPORT DIRECTION IN GROUND WATER|deg|0|0|9|deg|0|3 +023031|possibilityPlume|table|POSSIBILITY THAT PLUME WILL ENCOUNTER PRECIPITATION IN STATE IN WHICH INCIDENT OCCURRED|CODE TABLE|0|0|2|CODE TABLE|0|1 +023032|plumeWillEncounterChangeInWindDirectionAndOrOrSpeedFlag|table|PLUME WILL ENCOUNTER CHANGE IN WIND DIRECTION AND/OR SPEED FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +023040|flowDischargeRiver|double|FLOW DISCHARGE - RIVER|m3/s|1|0|22|m3/s|1|7 +023041|flowDischargeWell|double|FLOW DISCHARGE - WELL|m3/s|3|0|16|m3/s|3|5 +024001|estimateOfAmountOfRadioactivityReleasedUpToSpecifiedTime|long|ESTIMATE OF AMOUNT OF RADIOACTIVITY RELEASED UP TO SPECIFIED TIME|Bq|-11|0|28|Bq|-11|9 +024002|estimatedMaximumPotentialRelease|long|ESTIMATED MAXIMUM POTENTIAL RELEASE|Bq|-11|0|28|Bq|-11|9 +024003|compositionOfRelease|table|COMPOSITION OF RELEASE|CODE TABLE|0|0|5|CODE TABLE|0|2 +024004|elementName|string|ELEMENT NAME|CCITT IA5|0|0|16|Character|0|2 +024005|isotopeMass|long|ISOTOPE MASS|Numeric|0|0|9|Numeric|0|3 +024011|dose|double|DOSE|mSv|2|0|32|mSv|2|10 +024012|trajectoryDoseDefinedLocationAndExpectedTimeOfArrival|double|TRAJECTORY DOSE (DEFINED LOCATION AND EXPECTED TIME OF ARRIVAL)|mSv|2|0|32|mSv|2|10 +024013|gammaDoseInAirAlongMainTransportPathDefinedLocationAndTimePeriod|double|GAMMA DOSE IN AIR ALONG THE MAIN TRANSPORT PATH (DEFINED LOCATION AND TIME PERIOD)|mSv|2|0|32|mSv|2|10 +024014|gammaRadiationDoseRate|double|GAMMA RADIATION DOSE RATE|nSv/h|1|0|14|nSv/h|1|4 +024021|airConcentrationOfNamedIsotopeTypeIncludingGrossBeta|double|AIR CONCENTRATION (OF NAMED ISOTOPE TYPE INCLUDING GROSS BETA)|Bq m-3|2|0|32|Bq m-3|2|10 +024022|concentrationInPrecipitationOfNamedIsotopeType|double|CONCENTRATION IN PRECIPITATION (OF NAMED ISOTOPE TYPE)|Bq/l|2|0|32|Bq/l|2|10 +024023|pulseRateOfBetaRadiation|double|PULSE RATE OF BETA RADIATION|/s|1|0|14|/s|1|4 +024024|pulseRateOfGammaRadiation|double|PULSE RATE OF GAMMA RADIATION|/s|1|0|14|/s|1|4 +025001|rangeGateLength|long|RANGE-GATE LENGTH|m|-1|0|6|m|-1|2 +025002|numberOfGatesAveraged|long|NUMBER OF GATES AVERAGED|Numeric|0|0|4|Numeric|0|2 +025003|numberOfIntegratedPulses|long|NUMBER OF INTEGRATED PULSES|Numeric|0|0|8|Numeric|0|3 +025004|echoProcessing|table|ECHO PROCESSING|CODE TABLE|0|0|2|CODE TABLE|0|1 +025005|echoIntegration|table|ECHO INTEGRATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +025006|zToRConversion|table|Z TO R CONVERSION|CODE TABLE|0|0|3|CODE TABLE|0|1 +025007|zToRConversionFactor|long|Z TO R CONVERSION FACTOR|Numeric|0|0|12|Numeric|0|4 +025008|zToRConversionExponent|long|Z TO R CONVERSION EXPONENT|Numeric|2|0|9|Numeric|2|3 +025009|calibrationMethod|flag|CALIBRATION METHOD|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +025010|clutterTreatment|table|CLUTTER TREATMENT|CODE TABLE|0|0|4|CODE TABLE|0|2 +025011|groundOccultationCorrectionScreening|table|GROUND OCCULTATION CORRECTION (SCREENING)|CODE TABLE|0|0|2|CODE TABLE|0|1 +025012|rangeAttenuationCorrection|table|RANGE ATTENUATION CORRECTION|CODE TABLE|0|0|2|CODE TABLE|0|1 +025013|brightBandCorrection|flag|BRIGHT-BAND CORRECTION|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +025014|azimuthClutterCutOff|long|AZIMUTH CLUTTER CUT-OFF|Numeric|0|0|12|Numeric|0|4 +025015|radomeAttenuationCorrection|flag|RADOME ATTENUATION CORRECTION|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +025016|clearAirAttenuationCorrection|double|CLEAR-AIR ATTENUATION CORRECTION|dB/m|5|0|6|dB/m|5|2 +025017|precipitationAttenuationCorrection|flag|PRECIPITATION ATTENUATION CORRECTION|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +025018|aToZLawForAttenuationFactor|long|A TO Z LAW FOR ATTENUATION FACTOR|Numeric|7|0|6|Numeric|7|2 +025019|aToZLawForAttenuationExponent|long|A TO Z LAW FOR ATTENUATION EXPONENT|Numeric|2|0|7|Numeric|2|3 +025020|meanSpeedEstimation|table|MEAN SPEED ESTIMATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +025021|windComputationEnhancement|flag|WIND COMPUTATION ENHANCEMENT|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +025022|ghrsstRejectionFlag|flag|GHRSST* REJECTION FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025023|ghrsstConfidenceFlag|flag|GHRSST CONFIDENCE FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025024|ghrsstDataQuality|table|GHRSST DATA QUALITY|CODE TABLE|0|0|4|CODE TABLE|0|2 +025025|batteryVoltage|double|BATTERY VOLTAGE|V|1|0|9|V|1|3 +025026|batteryVoltageLargeRange|double|BATTERY VOLTAGE (LARGE RANGE)|V|1|0|12|V|1|4 +025028|operatorOrManufacturerDefinedParameter|long|OPERATOR OR MANUFACTURER DEFINED PARAMETER|Numeric|1|-16384|15|Numeric|1|5 +025029|calibrationMethod|flag|CALIBRATION METHOD|FLAG TABLE|0|0|6|FLAG TABLE|0|2 +025030|runningMeanSeaSurfaceTemperatureUsage|table|RUNNING MEAN SEA-SURFACE TEMPERATURE USAGE|CODE TABLE|0|0|2|CODE TABLE|0|1 +025031|nwpGeneratedVerticalProfileThinningMethod|table|NWP-GENERATED VERTICAL PROFILE THINNING METHOD|CODE TABLE|0|0|3|CODE TABLE|0|1 +025032|windProfilerModeInformation|table|WIND PROFILER MODE INFORMATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +025033|windProfilerSubmodeInformation|table|WIND PROFILER SUBMODE INFORMATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +025034|windProfilerQualityControlTestResults|flag|WIND PROFILER QUALITY CONTROL TEST RESULTS|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +025035|decisionMethodForPolarity|table|DECISION METHOD FOR POLARITY|CODE TABLE|0|0|3|CODE TABLE|0|1 +025036|atmosphericsLocationMethod|table|ATMOSPHERICS LOCATION METHOD|CODE TABLE|0|0|4|CODE TABLE|0|2 +025037|sstBias|double|SST BIAS|K|2|-127|8|K|2|3 +025038|differenceBetweenSstAndAnalysis|double|DIFFERENCE BETWEEN SST AND ANALYSIS|K|1|-127|8|K|1|3 +025040|co2WindProductDerivation|table|CO2 WIND PRODUCT DERIVATION|CODE TABLE|0|0|4|CODE TABLE|0|2 +025041|movingPlatformDirectionReportingMethod|table|MOVING PLATFORM DIRECTION REPORTING METHOD|CODE TABLE|0|0|2|CODE TABLE|0|1 +025042|movingPlatformSpeedReportingMethod|table|MOVING PLATFORM SPEED REPORTING METHOD|CODE TABLE|0|0|2|CODE TABLE|0|1 +025043|waveSamplingIntervalTime|double|WAVE SAMPLING INTERVAL (TIME)|s|4|0|15|s|4|5 +025044|waveSamplingIntervalSpace|double|WAVE SAMPLING INTERVAL (SPACE)|m|2|0|14|m|2|5 +025045|hirsChannelCombination|flag|HIRS CHANNEL COMBINATION|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +025046|msuChannelCombination|flag|MSU CHANNEL COMBINATION|FLAG TABLE|0|0|5|FLAG TABLE|0|2 +025047|ssuChannelCombination|flag|SSU CHANNEL COMBINATION|FLAG TABLE|0|0|4|FLAG TABLE|0|2 +025048|amsuAChannelCombination|flag|AMSU-A CHANNEL COMBINATION|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +025049|amsuBChannelCombination|flag|AMSU-B CHANNEL COMBINATION|FLAG TABLE|0|0|6|FLAG TABLE|0|2 +025050|principalComponentScore|long|PRINCIPAL COMPONENT SCORE|Numeric|4|-131072|18|Numeric|4|6 +025051|avhrrChannelCombination|flag|AVHRR CHANNEL COMBINATION|FLAG TABLE|0|0|7|FLAG TABLE|0|3 +025052|log10OfPrincipalComponentsNormalizedFitToData|long|LOG10 OF PRINCIPAL COMPONENTS NORMALIZED FIT TO DATA|Numeric|4|0|15|Numeric|4|5 +025053|observationQuality|flag|OBSERVATION QUALITY|FLAG TABLE|0|0|12|FLAG TABLE|0|4 +025054|ssmisSubframeIdNumber|long|SSMIS SUBFRAME ID NUMBER|Numeric|0|0|5|Numeric|0|2 +025055|multiplexerHousekeeping|double|MULTIPLEXER HOUSEKEEPING|K|2|0|16|K|2|5 +025060|softwareIdentification|long|SOFTWARE IDENTIFICATION|Numeric|0|0|14|Numeric|0|5 +025061|softwareVersionNumber|string|SOFTWARE IDENTIFICATION AND VERSION NUMBER|CCITT IA5|0|0|96|Character|0|12 +025062|databaseIdentification|long|DATABASE IDENTIFICATION|Numeric|0|0|14|Numeric|0|5 +025063|SystemIdentifier|table|CENTRAL PROCESSOR OR SYSTEM IDENTIFIER|CODE TABLE|0|0|8|CODE TABLE|0|3 +025065|orientationCorrectionAzimuth|double|ORIENTATION CORRECTION (AZIMUTH)|deg|2|-1000|11|deg|2|4 +025066|orientationCorrectionElevation|double|ORIENTATION CORRECTION (ELEVATION)|deg|2|-1000|11|deg|2|4 +025067|radiosondeReleasePointPressureCorrection|long|RADIOSONDE RELEASE POINT PRESSURE CORRECTION|Pa|0|-8000|14|Pa|0|4 +025068|numberOfArchiveRecomputes|long|NUMBER OF ARCHIVE RECOMPUTES|Numeric|0|0|7|Numeric|0|3 +025069|flightLevelPressureCorrections|flag|FLIGHT LEVEL PRESSURE CORRECTIONS|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +025070|majorFrameCount|long|MAJOR FRAME COUNT|Numeric|0|0|4|Numeric|0|2 +025071|frameCount|long|FRAME COUNT|Numeric|0|0|5|Numeric|0|2 +025075|satelliteAntennaCorrectionsVersionNumber|long|SATELLITE ANTENNA CORRECTIONS VERSION NUMBER|Numeric|0|0|5|Numeric|0|2 +025076|log10OfTemperatureRadianceCentralWaveNumberForAtovs|double|LOG10 OF (TEMPERATURE-RADIANCE CENTRAL WAVE NUMBER) FOR ATOVS|log (m-1)|8|0|30|log (m-1)|8|10 +025077|bandwidthCorrectionCoefficient1|long|BANDWIDTH CORRECTION COEFFICIENT 1|Numeric|5|-100000|18|Numeric|5|7 +025078|bandwidthCorrectionCoefficient2|long|BANDWIDTH CORRECTION COEFFICIENT 2|Numeric|5|0|17|Numeric|5|6 +025079|albedoRadianceSolarFilteredIrradianceForAtovs|double|ALBEDO-RADIANCE SOLAR FILTERED IRRADIANCE FOR ATOVS|W m-2|4|0|24|W m-2|4|8 +025080|albedoRadianceEquivalentFilterWidthForAtovs|double|ALBEDO-RADIANCE EQUIVALENT FILTER WIDTH FOR ATOVS|m|10|0|14|m|10|5 +025081|incidenceAngle|double|INCIDENCE ANGLE|deg|3|0|17|deg|3|6 +025082|azimuthAngle|double|AZIMUTH ANGLE|deg|3|0|19|deg|3|6 +025083|faradayRotationalAngle|double|FARADAY ROTATIONAL ANGLE|deg|3|0|19|deg|3|6 +025084|geometricRotationalAngle|double|GEOMETRIC ROTATIONAL ANGLE|deg|5|0|26|deg|5|8 +025085|fractionOfClearPixelsInHirsFov|long|FRACTION OF CLEAR PIXELS IN HIRS FOV|Numeric|0|0|7|Numeric|0|3 +025086|depthCorrectionIndicator|table|DEPTH CORRECTION INDICATOR|CODE TABLE|0|0|2|CODE TABLE|0|1 +025090|orbitStateFlag|table|ORBIT STATE FLAG|CODE TABLE|0|0|4|CODE TABLE|0|2 +025091|structureConstantOfRefractionIndexCn2|double|STRUCTURE CONSTANT OF THE REFRACTION INDEX (CN2)|dB|3|-18192|13|dB|3|5 +025092|acousticPropagationVelocity|double|ACOUSTIC PROPAGATION VELOCITY|m/s|2|28000|14|m/s|2|5 +025093|rassComputationCorrection|flag|RASS COMPUTATION CORRECTION|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +025095|altimeterStateFlag|flag|ALTIMETER STATE FLAG|FLAG TABLE|0|0|2|FLAG TABLE|0|1 +025096|radiometerStateFlag|flag|RADIOMETER STATE FLAG|FLAG TABLE|0|0|5|FLAG TABLE|0|2 +025097|threeDimensionalErrorEstimateOfNavigatorOrbit|table|THREE-DIMENSIONAL ERROR ESTIMATE OF THE NAVIGATOR ORBIT|CODE TABLE|0|0|4|CODE TABLE|0|2 +025098|altimeterDataQualityFlag|flag|ALTIMETER DATA QUALITY FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025099|altimeterCorrectionQualityFlag|flag|ALTIMETER CORRECTION QUALITY FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025100|xbtOrXctdFallRateEquationCoefficientA|long|XBT/XCTD FALL RATE EQUATION COEFFICIENT A|Numeric|5|0|20|Numeric|5|6 +025101|xbtOrXctdFallRateEquationCoefficientB|long|XBT/XCTD FALL RATE EQUATION COEFFICIENT B|Numeric|5|-500000|21|Numeric|5|6 +025102|numberOfMissingLinesExcludingDataGaps|long|NUMBER OF MISSING LINES EXCLUDING DATA GAPS|Numeric|0|0|8|Numeric|0|3 +025103|numberOfDirectionalBins|long|NUMBER OF DIRECTIONAL BINS|Numeric|0|0|8|Numeric|0|3 +025104|numberOfWavelengthBins|long|NUMBER OF WAVELENGTH BINS|Numeric|0|0|8|Numeric|0|3 +025105|firstDirectionalBin|double|FIRST DIRECTIONAL BIN|deg|3|0|19|deg|3|6 +025106|directionalBinStep|double|DIRECTIONAL BIN STEP|deg|3|0|19|deg|3|6 +025107|firstWavelengthBin|double|FIRST WAVELENGTH BIN|m|3|0|29|m|3|9 +025108|lastWavelengthBin|double|LAST WAVELENGTH BIN|m|3|0|29|m|3|9 +025110|imageProcessingSummary|flag|IMAGE PROCESSING SUMMARY|FLAG TABLE|0|0|10|FLAG TABLE|0|4 +025111|numberOfInputDataGaps|long|NUMBER OF INPUT DATA GAPS|Numeric|0|0|8|Numeric|0|3 +025112|bandSpecificAltimeterDataQualityFlag|flag|BAND SPECIFIC ALTIMETER DATA QUALITY FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025113|bandSpecificAltimeterCorrectionQualityFlag|flag|BAND SPECIFIC ALTIMETER CORRECTION QUALITY FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +025120|ra2L2ProcessingFlag|table|RA2-L2-PROCESSING FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +025121|ra2L2ProcessingQuality|long|RA2-L2-PROCESSING QUALITY|%|0|0|7|%|0|3 +025122|hardwareConfigurationForRf|table|HARDWARE CONFIGURATION FOR RF|CODE TABLE|0|0|2|CODE TABLE|0|1 +025123|hardwareConfigurationForHpa|table|HARDWARE CONFIGURATION FOR HPA|CODE TABLE|0|0|2|CODE TABLE|0|1 +025124|mwrL2ProcessingFlag|table|MWR-L2-PROCESSING FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +025125|mwrL2ProcessingQuality|long|MWR-L2-PROCESSING QUALITY|%|0|0|7|%|0|3 +025126|modelDryTroposphericCorrection|double|MODEL DRY TROPOSPHERIC CORRECTION|m|3|-32768|16|m|3|5 +025127|invertedBarometerCorrection|double|INVERTED BAROMETER CORRECTION|m|3|-32768|16|m|3|5 +025128|modelWetTroposphericCorrection|double|MODEL WET TROPOSPHERIC CORRECTION|m|3|-32768|16|m|3|5 +025129|mwrDerivedWetTroposphericCorrection|double|MWR DERIVED WET TROPOSPHERIC CORRECTION|m|3|-32768|16|m|3|5 +025130|ra2IonosphericCorrectionOnKuBand|double|RA2 IONOSPHERIC CORRECTION ON KU BAND|m|3|-32768|16|m|3|5 +025131|ionosphericCorrectionFromDorisOnKuBand|double|IONOSPHERIC CORRECTION FROM DORIS ON KU BAND|m|3|-32768|16|m|3|5 +025132|ionosphericCorrectionFromModelOnKuBand|double|IONOSPHERIC CORRECTION FROM MODEL ON KU BAND|m|3|-32768|16|m|3|5 +025133|seaStateBiasCorrectionOnKuBand|double|SEA STATE BIAS CORRECTION ON KU BAND|m|3|-32768|16|m|3|5 +025134|ra2IonosphericCorrectionOnSBand|double|RA2 IONOSPHERIC CORRECTION ON S BAND|m|3|-32768|16|m|3|5 +025135|ionosphericCorrectionFromDorisOnSBand|double|IONOSPHERIC CORRECTION FROM DORIS ON S BAND|m|3|-32768|16|m|3|5 +025136|ionosphericCorrectionFromModelOnSBand|double|IONOSPHERIC CORRECTION FROM MODEL ON S BAND|m|3|-32768|16|m|3|5 +025137|seaStateBiasCorrectionOnSBand|double|SEA STATE BIAS CORRECTION ON S BAND|m|3|-32768|16|m|3|5 +025138|averageSignalToNoiseRatio|long|AVERAGE SIGNAL-TO-NOISE RATIO|Numeric|0|-2048|12|Numeric|0|4 +025140|startChannel|long|START CHANNEL|Numeric|0|0|14|Numeric|0|5 +025141|endChannel|long|END CHANNEL|Numeric|0|0|14|Numeric|0|5 +025142|channelScaleFactor|long|CHANNEL SCALE FACTOR|Numeric|0|0|6|Numeric|0|2 +025143|linearCoefficient|long|LINEAR COEFFICIENT|Numeric|6|-5000000|24|Numeric|6|8 +025148|coefficientOfVariation|long|COEFFICIENT OF VARIATION|Numeric|2|-10000|15|Numeric|2|5 +025149|optimalEstimationCost|long|OPTIMAL ESTIMATION COST|Numeric|0|0|8|Numeric|0|3 +025150|methodOfTropicalCycloneIntensityAnalysisUsingSatelliteData|table|METHOD OF TROPICAL CYCLONE INTENSITY ANALYSIS USING SATELLITE DATA|CODE TABLE|0|0|4|CODE TABLE|0|2 +025160|kuBandNetInstrumentalCorrection|double|KU BAND NET INSTRUMENTAL CORRECTION|m|4|-120000|18|m|4|6 +025161|cBandNetInstrumentalCorrection|double|C BAND NET INSTRUMENTAL CORRECTION|m|4|-120000|18|m|4|6 +025162|seaStateBiasCorrectionOnCBand|double|SEA STATE BIAS CORRECTION ON C BAND|m|4|-6000|13|m|4|4 +025163|altimeterIonosphericCorrectionOnKuBand|double|ALTIMETER IONOSPHERIC CORRECTION ON KU BAND|m|3|-32768|16|m|3|5 +025164|radiometerWetTroposphericCorrection|double|RADIOMETER WET TROPOSPHERIC CORRECTION|m|4|-5000|13|m|4|4 +025165|ionosphericCorrectionFromModelOnSpecificBand|double|IONOSPHERIC CORRECTION FROM MODEL ON SPECIFIC BAND|m|4|-32768|16|m|4|5 +025166|seaStateBiasCorrectionOnSpecificBand|double|SEA STATE BIAS CORRECTION ON SPECIFIC BAND|m|4|-32768|16|m|4|5 +025167|specificBandNetInstrumentalCorrection|double|SPECIFIC BAND NET INSTRUMENTAL CORRECTION|m|4|-120000|18|m|4|6 +025170|samplingIntervalTime|long|SAMPLING INTERVAL (TIME)|s|0|0|10|s|0|4 +025171|sampleAveragingPeriod|long|SAMPLE AVERAGING PERIOD|s|0|0|10|s|0|4 +025172|numberOfSamples|long|NUMBER OF SAMPLES|Numeric|0|0|10|Numeric|0|4 +025174|smosInformationFlag|flag|SMOS INFORMATION FLAG|FLAG TABLE|0|0|14|FLAG TABLE|0|5 +025175|modifiedResidual|long|MODIFIED RESIDUAL|Numeric|2|0|13|Numeric|2|4 +025180|lrmPercent|double|LRM* PER CENT|%|2|0|16|%|2|5 +025181|l2ProcessingFlag|table|L2 PROCESSING FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +025182|l1ProcessingFlag|table|L1 PROCESSING FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +025183|l1ProcessingQuality|double|L1 PROCESSING QUALITY|%|2|0|14|%|2|5 +025184|l2ProductStatus|table|L2 PRODUCT STATUS|CODE TABLE|0|0|2|CODE TABLE|0|1 +025185|encryptionMethod|table|ENCRYPTION METHOD|CODE TABLE|0|0|8|CODE TABLE|0|3 +025186|encryptionKeyVersion|string|ENCRYPTION KEY VERSION|CCITT IA5|0|0|96|Character|0|12 +025187|confidenceFlag|table|CONFIDENCE FLAG|CODE TABLE|0|0|4|CODE TABLE|0|2 +025188|methodForReducingPressureToSeaLevel|table|METHOD FOR REDUCING PRESSURE TO SEA LEVEL|CODE TABLE|0|0|5|CODE TABLE|0|2 +025189|rangeCutOffWavelength|long|RANGE CUT-OFF WAVELENGTH|m|0|1|9|m|0|3 +025190|altimeterEchoProcessingMode|table|ALTIMETER ECHO PROCESSING MODE|CODE TABLE|0|0|8|CODE TABLE|0|3 +025191|altimeterTrackingMode|table|ALTIMETER TRACKING MODE|CODE TABLE|0|0|8|CODE TABLE|0|3 +026001|principalTimeOfDailyReadingInUtcOfMaximumTemperature|double|PRINCIPAL TIME OF DAILY READING IN UTC OF MAXIMUM TEMPERATURE|h|1|0|12|h|1|3 +026002|principalTimeOfDailyReadingInUtcOfMinimumTemperature|double|PRINCIPAL TIME OF DAILY READING IN UTC OF MINIMUM TEMPERATURE|h|1|0|12|h|1|3 +026003|timeDifference|long|TIME DIFFERENCE|min|0|-1440|12|min|0|4 +026010|hoursIncluded|flag|HOURS INCLUDED|FLAG TABLE|0|0|26|FLAG TABLE|0|9 +026020|durationOfPrecipitation|long|DURATION OF PRECIPITATION|min|0|0|11|min|0|4 +026021|nonCoordinateYear|long|YEAR|a|0|0|12|a|0|4 +026022|nonCoordinateMonth|long|MONTH|mon|0|0|4|mon|0|2 +026023|nonCoordinateDay|long|DAY|d|0|0|6|d|0|2 +026030|measurementIntegrationTime|double|MEASUREMENT INTEGRATION TIME|s|2|0|8|s|2|3 +027001|nonCoordinateLatitude|double|LATITUDE (HIGH ACCURACY)|deg|5|-9000000|25|deg|5|7 +027002|nonCoordinateLatitude|double|LATITUDE (COARSE ACCURACY)|deg|2|-9000|15|deg|2|4 +027003|alternateLatitude|double|ALTERNATE LATITUDE (COARSE ACCURACY)|deg|2|-9000|15|deg|2|4 +027004|alternateLatitude|double|ALTERNATE LATITUDE (HIGH ACCURACY)|deg|5|-9000000|25|deg|5|7 +027010|footprintAxis1|long|FOOTPRINT AXIS 1|m|-1|0|14|m|-1|5 +027020|satelliteLocationCounter|long|SATELLITE LOCATION COUNTER|Numeric|0|0|16|Numeric|0|5 +027021|satelliteSublocationDimension|long|SATELLITE SUBLOCATION DIMENSION|Numeric|0|0|16|Numeric|0|5 +027031|DistanceFromEarthCentreInDirectionOf0DegreesLongitude|double|IN DIRECTION OF 0 DEGREES LONGITUDE, DISTANCE FROM THE EARTH'S CENTRE|m|2|-1073741824|31|m|2|10 +027079|horizontalWidthOfSampledVolume|long|HORIZONTAL WIDTH OF SAMPLED VOLUME|m|0|0|18|m|0|6 +027080|viewingAzimuthAngle|double|VIEWING AZIMUTH ANGLE|deg|2|0|16|deg|0|5 +028001|nonCoordinateLongitude|double|LONGITUDE (HIGH ACCURACY)|deg|5|-18000000|26|deg|5|8 +028002|nonCoordinateLongitude|double|LONGITUDE (COARSE ACCURACY)|deg|2|-18000|16|deg|2|5 +028003|alternateLongitude|double|ALTERNATE LONGITUDE (COARSE ACCURACY)|deg|2|-18000|16|deg|2|5 +028004|alternateLongitude|double|ALTERNATE LONGITUDE (HIGH ACCURACY)|deg|5|-18000000|26|deg|5|8 +028010|footprintAxis2|long|FOOTPRINT AXIS 2|m|-1|0|14|m|-1|5 +028031|DistanceFromEarthCentreInDirection90DegreesEast|double|IN DIRECTION 90 DEGREES EAST, DISTANCE FROM THE EARTH'S CENTRE|m|2|-1073741824|31|m|2|10 +029001|projectionType|table|PROJECTION TYPE|CODE TABLE|0|0|3|CODE TABLE|0|1 +029002|coordinateGridType|table|COORDINATE GRID TYPE|CODE TABLE|0|0|3|CODE TABLE|0|1 +029014|optionalListOfParametersForAnExternalMapProjectionLibrary|string|OPTIONAL LIST OF PARAMETERS FOR AN EXTERNAL MAP PROJECTION LIBRARY|CCITT IA5|0|0|504|Character|0|63 +030001|pixelValue4Bits|long|PIXEL VALUE (4 BITS)|Numeric|0|0|4|Numeric|0|2 +030002|pixelValue8Bits|long|PIXEL VALUE (8 BITS)|Numeric|0|0|8|Numeric|0|3 +030004|pixelValue16Bits|long|PIXEL VALUE (16 BITS)|Numeric|0|0|16|Numeric|0|5 +030010|numberOfGridPoints|long|NUMBER OF GRID POINTS|Numeric|0|0|13|Numeric|0|4 +030021|numberOfPixelsPerRow|long|NUMBER OF PIXELS PER ROW|Numeric|0|0|12|Numeric|0|4 +030022|numberOfPixelsPerColumn|long|NUMBER OF PIXELS PER COLUMN|Numeric|0|0|12|Numeric|0|4 +030031|pictureType|table|PICTURE TYPE|CODE TABLE|0|0|4|CODE TABLE|0|2 +030032|combinationWithOtherData|flag|COMBINATION WITH OTHER DATA|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +030033|numberOfBinsAlongRadial|long|NUMBER OF BINS ALONG THE RADIAL|Numeric|0|0|12|Numeric|0|4 +030034|numberOfAzimuths|long|NUMBER OF AZIMUTHS|Numeric|0|0|12|Numeric|0|4 +031000|shortDelayedDescriptorReplicationFactor|long|SHORT DELAYED DESCRIPTOR REPLICATION FACTOR|Numeric|0|0|1|NA|0|0 +031001|delayedDescriptorReplicationFactor|long|DELAYED DESCRIPTOR REPLICATION FACTOR|Numeric|0|0|8|NA|0|0 +031002|extendedDelayedDescriptorReplicationFactor|long|EXTENDED DELAYED DESCRIPTOR REPLICATION FACTOR|Numeric|0|0|16|NA|0|0 +031011|delayedDescriptorAndDataRepetitionFactor|long|DELAYED DESCRIPTOR AND DATA REPETITION FACTOR|Numeric|0|0|8|NA|0|0 +031012|extendedDelayedDescriptorAndDataRepetitionFactor|long|EXTENDED DELAYED DESCRIPTOR AND DATA REPETITION FACTOR|Numeric|0|0|16|NA|0|0 +031021|associatedFieldSignificance|table|ASSOCIATED FIELD SIGNIFICANCE|CODE TABLE|0|0|6|NA|0|0 +031031|dataPresentIndicator|flag|DATA PRESENT INDICATOR|FLAG TABLE|0|0|1|NA|0|0 +033002|qualityInformation|table|QUALITY INFORMATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +033003|qualityInformation|table|QUALITY INFORMATION|CODE TABLE|0|0|3|CODE TABLE|0|1 +033005|qualityInformationAwsData|flag|QUALITY INFORMATION (AWS DATA)|FLAG TABLE|0|0|30|FLAG TABLE|0|10 +033006|internalMeasurementStatusInformationAws|table|INTERNAL MEASUREMENT STATUS INFORMATION (AWS)|CODE TABLE|0|0|3|CODE TABLE|0|1 +033007|percentConfidence|long|PER CENT CONFIDENCE|%|0|0|7|%|0|3 +033015|dataQualityCheckIndicator|table|DATA QUALITY-CHECK INDICATOR|CODE TABLE|0|0|6|CODE TABLE|0|2 +033020|qualityControlIndicationOfFollowingValue|table|QUALITY CONTROL INDICATION OF FOLLOWING VALUE|CODE TABLE|0|0|3|CODE TABLE|0|1 +033021|qualityOfFollowingValue|table|QUALITY OF FOLLOWING VALUE|CODE TABLE|0|0|2|CODE TABLE|0|1 +033022|qualityOfBuoySatelliteTransmission|table|QUALITY OF BUOY SATELLITE TRANSMISSION|CODE TABLE|0|0|2|CODE TABLE|0|1 +033023|qualityOfBuoyLocation|table|QUALITY OF BUOY LOCATION|CODE TABLE|0|0|2|CODE TABLE|0|1 +033024|stationElevationQualityMarkForMobileStations|table|STATION ELEVATION QUALITY MARK (FOR MOBILE STATIONS)|CODE TABLE|0|0|4|CODE TABLE|0|2 +033025|acarsInterpolatedValuesIndicator|table|ACARS INTERPOLATED VALUES INDICATOR|CODE TABLE|0|0|3|CODE TABLE|0|1 +033026|moistureQuality|table|MOISTURE QUALITY|CODE TABLE|0|0|6|CODE TABLE|0|2 +033027|locationQualityClassRangeOfRadiusOf66Confidence|table|LOCATION QUALITY CLASS (RANGE OF RADIUS OF 66 % CONFIDENCE)|CODE TABLE|0|0|3|CODE TABLE|0|1 +033028|snapshotOverallQuality|table|SNAPSHOT OVERALL QUALITY|CODE TABLE|0|0|3|CODE TABLE|0|1 +033030|scanLineStatusFlagsForAtovs|flag|SCAN LINE STATUS FLAGS FOR ATOVS|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033031|scanLineQualityFlagsForAtovs|flag|SCAN LINE QUALITY FLAGS FOR ATOVS|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033032|channelQualityFlagsForAtovs|flag|CHANNEL QUALITY FLAGS FOR ATOVS|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033033|fieldOfViewQualityFlagsForAtovs|flag|FIELD OF VIEW QUALITY FLAGS FOR ATOVS|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033035|qualityControl|table|MANUAL/AUTOMATIC QUALITY CONTROL|CODE TABLE|0|0|4|CODE TABLE|0|2 +033036|nominalConfidenceThreshold|long|NOMINAL CONFIDENCE THRESHOLD|%|0|0|7|%|0|3 +033037|windCorrelationError|flag|WIND CORRELATION ERROR|FLAG TABLE|0|0|20|FLAG TABLE|0|7 +033038|qualityFlagsForGroundBasedGnssData|flag|QUALITY FLAGS FOR GROUND-BASED GNSS DATA|FLAG TABLE|0|0|10|FLAG TABLE|0|4 +033039|radioOccultationDataQualityFlags|flag|QUALITY FLAGS FOR RADIO OCCULTATION DATA|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033040|confidenceInterval|long|CONFIDENCE INTERVAL|%|0|0|7|%|0|3 +033041|attributeOfFollowingValue|table|ATTRIBUTE OF FOLLOWING VALUE|CODE TABLE|0|0|2|CODE TABLE|0|1 +033042|typeOfLimitRepresentedByFollowingValue|table|TYPE OF LIMIT REPRESENTED BY FOLLOWING VALUE|CODE TABLE|0|0|3|CODE TABLE|0|1 +033043|astConfidence|flag|AST CONFIDENCE|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +033044|asarQualityInformation|flag|ASAR QUALITY INFORMATION|FLAG TABLE|0|0|15|FLAG TABLE|0|5 +033045|probabilityOfFollowingEvent|long|PROBABILITY OF FOLLOWING EVENT|%|0|0|7|%|0|3 +033046|conditionalProbability|long|CONDITIONAL PROBABILITY OF FOLLOWING EVENT WITH RESPECT TO SPECIFIED CONDITIONING EVENT|%|0|0|7|%|0|3 +033047|measurementConfidenceData|flag|MEASUREMENT CONFIDENCE DATA|FLAG TABLE|0|0|31|FLAG TABLE|0|11 +033048|confidenceMeasureOfSarInversion|table|CONFIDENCE MEASURE OF SAR INVERSION|CODE TABLE|0|0|2|CODE TABLE|0|1 +033049|confidenceMeasureOfWindRetrieval|table|CONFIDENCE MEASURE OF WIND RETRIEVAL|CODE TABLE|0|0|2|CODE TABLE|0|1 +033050|globalGtsppQualityFlag|table|GLOBAL GTSPP QUALITY FLAG|CODE TABLE|0|0|4|CODE TABLE|0|2 +033052|sBandOceanRetrackingQuality|flag|S BAND OCEAN RETRACKING QUALITY|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +033053|kuBandOceanRetrackingQuality|flag|KU BAND OCEAN RETRACKING QUALITY|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +033055|windVectorQualityFlag|flag|WIND VECTOR QUALITY FLAG|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033056|sigma0QualityFlag|flag|SIGMA-0 QUALITY FLAG|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033060|gqisFlagQual|table|GQISFLAGQUAL - INDIVIDUAL IASI-SYSTEM QUALITY FLAG|CODE TABLE|0|0|2|CODE TABLE|0|1 +033061|gqisQualIndex|long|GQISQUALINDEX - INDICATOR FOR INSTRUMENT NOISE PERFORMANCE (CONTRIBUTIONS FROM SPECTRAL AND RADIOMETRIC CALIBRATION)|%|0|0|7|%|0|3 +033062|gqisQualIndexLoc|long|GQISQUALINDEXLOC - INDICATOR FOR GEOMETRIC QUALITY INDEX|%|0|0|7|%|0|3 +033063|gqisQualIndexRad|long|GQISQUALINDEXRAD - INDICATOR FOR INSTRUMENT NOISE PERFORMANCE (CONTRIBUTIONS FROM RADIOMETRIC CALIBRATION)|%|0|0|7|%|0|3 +033064|gqisQualIndexSpect|long|GQISQUALINDEXSPECT - INDICATOR FOR INSTRUMENT NOISE PERFORMANCE (CONTRIBUTIONS FROM SPECTRAL CALIBRATION)|%|0|0|7|%|0|3 +033065|gqisSysTecQual|long|GQISSYSTECSONDQUAL - OUTPUT OF SYSTEM TEC (TECHNICAL EXPERTISE CENTRE) QUALITY FUNCTION|Numeric|0|0|24|Numeric|0|8 +033066|amvQualityFlag|flag|AMV QUALITY FLAG|FLAG TABLE|0|0|24|FLAG TABLE|0|8 +033070|totalOzoneQuality|table|TOTAL OZONE QUALITY|CODE TABLE|0|0|4|CODE TABLE|0|2 +033071|profileOzoneQuality|table|PROFILE OZONE QUALITY|CODE TABLE|0|0|4|CODE TABLE|0|2 +033072|ozoneError|table|OZONE ERROR|CODE TABLE|0|0|5|CODE TABLE|0|2 +033075|scanLevelDataValidityQualityFlags|flag|SCAN-LEVEL QUALITY FLAGS|FLAG TABLE|0|0|13|FLAG TABLE|0|5 +033076|calibrationQualityFlags|flag|CALIBRATION QUALITY FLAGS|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +033077|fieldOfViewQualityFlags|flag|FIELD-OF-VIEW QUALITY FLAGS|FLAG TABLE|0|0|19|FLAG TABLE|0|7 +033078|geolocationQuality|table|GEOLOCATION QUALITY|CODE TABLE|0|0|4|CODE TABLE|0|2 +033079|granuleLevelQualityFlags|flag|GRANULE LEVEL QUALITY FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033080|scanLevelQualityFlags|flag|SCAN LEVEL QUALITY FLAGS|FLAG TABLE|0|0|20|FLAG TABLE|0|7 +033081|channelDataQualityFlags|flag|CHANNEL DATA QUALITY FLAGS|FLAG TABLE|0|0|12|FLAG TABLE|0|4 +033082|geolocationQualityFlags|flag|GEOLOCATION QUALITY FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033083|radianceDataQualityFlags|flag|RADIANCE DATA QUALITY FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033084|pixelLevelQualityFlags|flag|PIXEL LEVEL QUALITY FLAGS|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +033085|aerosolOpticalThicknessQualityFlags|flag|AEROSOL OPTICAL THICKNESS QUALITY FLAGS|FLAG TABLE|0|0|18|FLAG TABLE|0|6 +033086|qualityOfPixelLevelRetrieval|table|QUALITY OF PIXEL LEVEL RETRIEVAL|CODE TABLE|0|0|3|CODE TABLE|0|1 +033087|extentOfSatelliteWithinSouthAtlanticAnomalyBasedOnClimatologicalData|table|EXTENT OF SATELLITE WITHIN SOUTH ATLANTIC ANOMALY (BASED ON CLIMATOLOGICAL DATA)|CODE TABLE|0|0|4|CODE TABLE|0|1 +033088|ozoneTotalColumnQualityFlag|flag|OZONE TOTAL COLUMN QUALITY FLAG|FLAG TABLE|0|0|18|FLAG TABLE|0|6 +033089|noiseEquivalentDeltaTemperatureNedtQualityIndicatorsForWarmTargetCalibration|double|NOISE EQUIVALENT DELTA TEMPERATURE (NEDT) QUALITY INDICATORS FOR WARM TARGET CALIBRATION|K|2|0|12|K|2|4 +033090|nedtQualityIndicatorsForColdTargetCalibration|double|NEDT QUALITY INDICATORS FOR COLD TARGET CALIBRATION|K|2|0|12|K|2|4 +033091|nedtQualityIndicatorsForOverallCalibration|double|NEDT QUALITY INDICATORS FOR OVERALL CALIBRATION|K|2|0|12|K|2|4 +033092|bandSpecificOceanQualityFlag|flag|BAND SPECIFIC OCEAN QUALITY FLAG|FLAG TABLE|0|0|9|FLAG TABLE|0|3 +033093|extendedQualityFlagsForGroundBasedGnssData|flag|EXTENDED QUALITY FLAGS FOR GROUND-BASED GNSS DATA|FLAG TABLE|0|0|31|FLAG TABLE|0|31 +035000|fmAndRegionalCodeNumber|table|FM AND REGIONAL CODE NUMBER|CODE TABLE|0|0|10|CODE TABLE|0|3 +035001|timeFrameForMonitoring|table|TIME FRAME FOR MONITORING|CODE TABLE|0|0|3|CODE TABLE|0|1 +035011|numberOfReportsActuallyReceived|long|NUMBER OF REPORTS ACTUALLY RECEIVED|Numeric|0|0|14|Numeric|0|4 +035021|bulletinBeingMonitoredTtaaii|string|BULLETIN BEING MONITORED (TTAAII)|CCITT IA5|0|0|48|Character|0|6 +035022|bulletinBeingMonitoredYygggg|string|BULLETIN BEING MONITORED (YYGGGG)|CCITT IA5|0|0|48|Character|0|6 +035023|bulletinBeingMonitoredCccc|string|BULLETIN BEING MONITORED (CCCC)|CCITT IA5|0|0|32|Character|0|4 +035024|bulletinBeingMonitoredBbb|string|BULLETIN BEING MONITORED (BBB)|CCITT IA5|0|0|24|Character|0|3 +035030|discrepanciesInAvailabilityOfExpectedData|table|DISCREPANCIES IN THE AVAILABILITY OF EXPECTED DATA|CODE TABLE|0|0|4|CODE TABLE|0|1 +035031|qualifierOnMonitoringResults|table|QUALIFIER ON MONITORING RESULTS|CODE TABLE|0|0|7|CODE TABLE|0|2 +035032|causeOfMissingData|table|CAUSE OF MISSING DATA|CODE TABLE|0|0|4|CODE TABLE|0|1 +035033|observationAndCollectionDeficiencies|table|OBSERVATION AND COLLECTION DEFICIENCIES|CODE TABLE|0|0|7|CODE TABLE|0|2 +035034|statisticalTrendsForAvailabilityOfDataDuringSurveyPeriods|table|STATISTICAL TRENDS FOR AVAILABILITY OF DATA (DURING THE SURVEY PERIOD(S))|CODE TABLE|0|0|3|CODE TABLE|0|1 +035035|reasonForTermination|table|REASON FOR TERMINATION|CODE TABLE|0|0|5|CODE TABLE|0|2 +040001|surfaceSoilMoisture|double|SURFACE SOIL MOISTURE (MS)|%|1|0|10|%|1|4 +040002|estimatedErrorInSurfaceSoilMoisture|double|ESTIMATED ERROR IN SURFACE SOIL MOISTURE|%|1|0|10|%|1|4 +040003|meanSurfaceSoilMoisture|long|MEAN SURFACE SOIL MOISTURE|Numeric|3|0|10|Numeric|3|4 +040004|rainFallDetection|long|RAIN FALL DETECTION|Numeric|3|0|10|Numeric|3|4 +040005|soilMoistureCorrectionFlag|flag|SOIL MOISTURE CORRECTION FLAG|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +040006|soilMoistureProcessingFlag|flag|SOIL MOISTURE PROCESSING FLAG|FLAG TABLE|0|0|16|FLAG TABLE|0|6 +040007|soilMoistureQuality|double|SOIL MOISTURE QUALITY|%|1|0|10|%|1|4 +040008|frozenLandSurfaceFraction|double|FROZEN LAND SURFACE FRACTION|%|1|0|10|%|1|4 +040009|inundationAndWetlandFraction|double|INUNDATION AND WETLAND FRACTION|%|1|0|10|%|1|4 +040010|topographicComplexity|double|TOPOGRAPHIC COMPLEXITY|%|1|0|10|%|1|4 +040011|interpolationFlag|flag|INTERPOLATION FLAG|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +040012|radiometerDataQualityFlag|flag|RADIOMETER DATA QUALITY FLAG|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +040013|radiometerBrightnessTemperatureInterpretationFlag|table|RADIOMETER BRIGHTNESS TEMPERATURE INTERPRETATION FLAG|CODE TABLE|0|0|3|CODE TABLE|0|1 +040014|highFrequencyFluctuationsOfSeaSurfaceTopographyCorrection|double|HIGH-FREQUENCY FLUCTUATIONS OF THE SEA-SURFACE TOPOGRAPHY CORRECTION|m|4|-3000|13|m|4|4 +040015|normalizedDifferentialVegetationIndex|long|NORMALIZED DIFFERENTIAL VEGETATION INDEX (NDVI)|Numeric|2|-100|8|Numeric|2|3 +040016|residualRmsInBand|long|RESIDUAL RMS IN BAND|Numeric|3|0|14|Numeric|3|5 +040017|nonNormalizedPrincipalComponentScore|long|NON-NORMALIZED PRINCIPAL COMPONENT SCORE|Numeric|0|-1073741824|31|Numeric|0|10 +040018|averageOfImagerMeasurements|double|GIACAVGIMAGIIS - AVERAGE OF IMAGER MEASUREMENTS|W m-2 sr-1 m|6|0|24|W m-2 sr-1 m|6|8 +040019|giacvarimagiisVarianceOfImagerMeasurements|double|GIACVARIMAGIIS - VARIANCE OF IMAGER MEASUREMENTS|W m-2 sr-1 m|6|0|24|W m-2 sr-1 m|6|8 +040020|gqisFlagQualDetailed|flag|GQISFLAGQUALDETAILED - QUALITY FLAG FOR THE SYSTEM|FLAG TABLE|0|0|17|FLAG TABLE|0|6 +040021|fractionOfWeightedAvhrrPixelInIasiFovCoveredWithSnowOrIce|long|FRACTION OF WEIGHTED AVHRR PIXEL IN IASI FOV COVERED WITH SNOW/ICE|%|0|0|7|%|0|3 +040022|numberOfMissingBadOrFailedAvhrrPixels|long|NUMBER OF MISSING, BAD OR FAILED AVHRR PIXELS|Numeric|0|0|7|Numeric|0|3 +040023|auxiliaryAltimeterStateFlags|flag|AUXILIARY ALTIMETER STATE FLAGS|FLAG TABLE|0|0|5|FLAG TABLE|0|2 +040024|meteorologicalMapAvailability|table|METEOROLOGICAL MAP AVAILABILITY|CODE TABLE|0|0|3|CODE TABLE|0|1 +040025|interpolationFlagForMeanDiurnalTide|table|INTERPOLATION FLAG FOR MEAN DIURNAL TIDE|CODE TABLE|0|0|2|CODE TABLE|0|1 +040026|scoreQuantizationFactor|long|SCORE QUANTIZATION FACTOR|Numeric|2|0|16|Numeric|2|5 +040027|sunGlintAngle|double|SUN GLINT ANGLE|deg|2|-18000|16|deg|2|5 +040028|gmiQualityFlag|table|GMI QUALITY FLAG|CODE TABLE|0|0|4|CODE TABLE|0|2 +040029|horizontalObservationIntegrationLength|long|HORIZONTAL OBSERVATION INTEGRATION LENGTH|m|0|0|26|m|0|8 +040030|horizontalLineOfSightWind|double|HORIZONTAL LINE OF SIGHT WIND|m/s|2|-32767|16|m/s|2|5 +040031|errorEstimateOfHorizontalLineOfSightWind|double|ERROR ESTIMATE OF HORIZONTAL LINE OF SIGHT WIND|m/s|2|0|15|m/s|2|5 +040032|derivativeWindToPressure|double|DERIVATIVE WIND TO PRESSURE|m s-1 Pa-1|3|-100000|18|m s-1 Pa-1|3|6 +040033|derivativeWindToTemperature|double|DERIVATIVE WIND TO TEMPERATURE|m s-1 K-1|3|-100000|18|m s-1 K-1|3|6 +040034|derivativeWindToBackscatterRatio|double|DERIVATIVE WIND TO BACKSCATTER RATIO|m/s|3|-200000|19|m/s|3|6 +040035|satelliteRange|long|SATELLITE RANGE|m|0|380000|18|m|0|6 +040036|lidarL2bClassificationType|table|LIDAR L2B CLASSIFICATION TYPE|CODE TABLE|0|0|4|CODE TABLE|0|2 +040037|backscatterRatio|long|BACKSCATTER RATIO|Numeric|3|500|20|Numeric|3|7 +040038|cloudParticleSize|double|CLOUD PARTICLE SIZE|m|7|0|28|m|7|6 +040039|singleLookComplexImageIntensity|long|SINGLE LOOK COMPLEX IMAGE INTENSITY|Numeric|0|-25|5|Numeric|0|3 +040040|singleLookComplexImageSkewness|long|SINGLE LOOK COMPLEX IMAGE SKEWNESS|Numeric|2|1|13|Numeric|0|4 +040041|singleLookComplexImageKurtosis|long|SINGLE LOOK COMPLEX IMAGE KURTOSIS|Numeric|2|1|13|Numeric|0|4 +040042|singleLookComplexImageVariance|long|SINGLE LOOK COMPLEX IMAGE VARIANCE|Numeric|2|1|13|Numeric|0|4 +040043|satelliteManoeuvreIndicator|table|SATELLITE MANOEUVRE INDICATOR|CODE TABLE|0|0|3|CODE TABLE|0|1 +040044|dustIndex|long|DUST INDEX|Numeric|1|0|8|Numeric|1|3 +040045|cloudFormationAndHeightAssignment|flag|CLOUD FORMATION AND HEIGHT ASSIGNMENT|FLAG TABLE|0|0|5|FLAG TABLE|0|2 +040046|cloudinessSummary|table|CLOUDINESS SUMMARY|CODE TABLE|0|0|3|CODE TABLE|0|1 +040047|validationFlagForIasiOrIasiNgLevel1Product|table|VALIDATION FLAG FOR IASI OR IASI-NG LEVEL 1 PRODUCT|CODE TABLE|0|0|3|CODE TABLE|0|1 +040048|validationFlagOfAmsuALevel1DataFlow|table|VALIDATION FLAG OF AMSU-A LEVEL 1 DATA FLOW|CODE TABLE|0|0|3|CODE TABLE|0|1 +040049|cloudTestsExecutedAndResults|flag|CLOUD TESTS EXECUTED AND RESULTS|FLAG TABLE|0|0|16|FLAG TABLE|0|5 +040050|retrievalInitialisation|flag|RETRIEVAL INITIALISATION|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +040051|convergenceOfTheIterativeRetrieval|table|CONVERGENCE OF THE ITERATIVE RETRIEVAL|CODE TABLE|0|0|3|CODE TABLE|0|1 +040052|indicationOfSuperAdiabaticAndSuperSaturationInFinalRetrieval|flag|INDICATION OF SUPER-ADIABATIC AND SUPER-SATURATION IN FINAL RETRIEVAL|FLAG TABLE|0|0|8|FLAG TABLE|0|3 +040053|numberOfIterationsUsedForRetrieval|long|NUMBER OF ITERATIONS USED FOR RETRIEVAL|Numeric|0|0|8|Numeric|0|3 +040054|potentialProcessingAndInputsErrors|flag|POTENTIAL PROCESSING AND INPUTS ERRORS|FLAG TABLE|0|0|13|FLAG TABLE|0|4 +040055|diagnosticsOnTheRetrieval|flag|DIAGNOSTICS ON THE RETRIEVAL|FLAG TABLE|0|0|21|FLAG TABLE|0|7 +040056|generalRetrievalQuality|table|GENERAL RETRIEVAL QUALITY|CODE TABLE|0|0|3|CODE TABLE|0|1 +040057|iasiLevel2RetrievalFlags|flag|IASI LEVEL 2 RETRIEVAL FLAGS|FLAG TABLE|0|0|31|FLAG TABLE|0|10 +040058|numberOfVectorsDescribingTheCharacterizationMatrices|long|NUMBER OF VECTORS DESCRIBING THE CHARACTERIZATION MATRICES|Numeric|0|0|8|Numeric|0|3 +040059|numberOfLayersActuallyRetrieved|long|NUMBER OF LAYERS ACTUALLY RETRIEVED|Numeric|0|0|8|Numeric|0|3 +040060|numberOfProfilesRetrievedInScanline|long|NUMBER OF PROFILES RETRIEVED IN SCANLINE|Numeric|0|0|8|Numeric|0|3 +040061|airPartialColumnsOnEachRetrievedLayer|double|AIR PARTIAL COLUMNS ON EACH RETRIEVED LAYER|mol cm-2|3|0|16|mol cm-2|3|5 +040062|aPrioriPartialColumnsOnEachRetrievedLayer|double|A-PRIORI PARTIAL COLUMNS ON EACH RETRIEVED LAYER|mol cm-2|10|0|16|mol cm-2|10|5 +040063|scalingVectorMultiplyingTheAPrioriVectorInOrderToDefineTheRetrievedVector|long|SCALING VECTOR MULTIPLYING THE A PRIORI VECTOR IN ORDER TO DEFINE THE RETRIEVED VECTOR|Numeric|5|0|26|Numeric|5|8 +040064|mainEigenvaluesOfTheSensitivityMatrix|long|MAIN EIGENVALUES OF THE SENSITIVITY MATRIX|Numeric|6|0|31|Numeric|6|10 +040065|mainEigenvectorsOfTheSensitivityMatrix|long|MAIN EIGENVECTORS OF THE SENSITIVITY MATRIX|Numeric|6|-1000000000|31|Numeric|6|10 +040066|qualityIndicatorForAtmosphericWaterVapour|long|QUALITY INDICATOR FOR ATMOSPHERIC WATER VAPOUR|Numeric|1|0|8|Numeric|1|3 +040067|qualityIndicatorForAtmosphericTemperature|long|QUALITY INDICATOR FOR ATMOSPHERIC TEMPERATURE|Numeric|1|0|8|Numeric|1|3 +040068|generalRetrievalQualityFlagForSo2|table|GENERAL RETRIEVAL QUALITY FLAG FOR SO2|CODE TABLE|0|0|4|CODE TABLE|0|2 +040069|pwlrEstimatedRetrievalErrorForSurfaceAirTemperature|double|PWLR ESTIMATED RETRIEVAL ERROR FOR SURFACE AIR TEMPERATURE|K|4|-1000000|21|K|4|7 +040070|pwlrEstimatedRetrievalErrorOfSurfaceDewpoint|double|PWLR ESTIMATED RETRIEVAL ERROR OF SURFACE DEWPOINT|K|4|-1000000|21|K|4|7 +040071|retrievalErrorCovarianceMatrixForOzoneInPrincipalComponentDomain|long|RETRIEVAL ERROR COVARIANCE MATRIX FOR OZONE IN PRINCIPAL COMPONENT DOMAIN|Numeric|4|-1000000|21|Numeric|4|7 +040072|pwlrEstimatedRetrievalQualityIndicatorOfAtmosphericOzone|long|PWLR ESTIMATED RETRIEVAL QUALITY INDICATOR OF ATMOSPHERIC OZONE|Numeric|1|0|8|Numeric|1|3 +040073|pwlrEstimatedRetrievalErrorOfSurfaceSkinTemperature|double|PWLR ESTIMATED RETRIEVAL ERROR OF SURFACE SKIN TEMPERATURE|K|1|0|8|K|1|3 +040074|generalInterferometryQualityFlags|flag|GENERAL INTERFEROMETRY QUALITY FLAGS|FLAG TABLE|0|0|16|NA|0|0 +041001|pco2|double|PCO2|Pa|3|0|18|Pa|3|6 +041002|fluorescence|double|FLUORESCENCE|kg l-1|12|0|16|kg l-1|12|5 +041003|dissolvedNitrates|double|DISSOLVED NITRATES|umol/kg|3|0|17|umol/kg|3|5 +041005|turbidity|double|TURBIDITY|NTU|2|0|12|NTU|2|4 +042001|dominantSwellWaveDirectionOfSpectralPartition|long|DOMINANT SWELL WAVE DIRECTION OF SPECTRAL PARTITION|deg|0|0|9|deg|0|3 +042002|significantSwellWaveHeightOfSpectralPartition|double|SIGNIFICANT SWELL WAVE HEIGHT OF SPECTRAL PARTITION|m|1|0|9|m|1|3 +042003|dominantSwellWavelengthOfSpectralPartition|double|DOMINANT SWELL WAVELENGTH OF SPECTRAL PARTITION|m|2|100|17|m|2|6 +042004|confidenceOfInversionForEachPartitionOfSwellWaveSpectra|table|CONFIDENCE OF INVERSION FOR EACH PARTITION OF SWELL WAVE SPECTRA|CODE TABLE|0|0|4|CODE TABLE|0|2 +042005|ambiguityRemovalFactorForSwellWavePartition|long|AMBIGUITY REMOVAL FACTOR FOR SWELL WAVE PARTITION|Numeric|5|-100000|18|Numeric|5|6 +042006|waveAge|long|WAVE AGE|Numeric|2|1|8|Numeric|2|3 +042007|shortestOceanWavelengthOnSpectralResolution|double|SHORTEST OCEAN WAVELENGTH ON SPECTRAL RESOLUTION|m|2|0|16|m|2|5 +042008|nonlinearInverseSpectralWidth|double|NONLINEAR INVERSE SPECTRAL WIDTH|m|2|0|16|m|2|5 +042009|binPartitionReference|long|BIN PARTITION REFERENCE|Numeric|0|0|8|Numeric|0|3 +042010|partitionNumber|long|PARTITION NUMBER|Numeric|0|1|4|Numeric|0|2 +042011|a1CoefficientOfTheDirectionalFourierSeries|long|A1 COEFFICIENT OF THE DIRECTIONAL FOURIER SERIES|Numeric|4|-20000|15|Numeric|4|6 +042012|b1CoefficientOfTheDirectionalFourierSeries|long|B1 COEFFICIENT OF THE DIRECTIONAL FOURIER SERIES|Numeric|4|-20000|15|Numeric|4|6 +042013|a2CoefficientOfTheDirectionalFourierSeries|long|A2 COEFFICIENT OF THE DIRECTIONAL FOURIER SERIES|Numeric|4|-20000|15|Numeric|4|6 +042014|b2CoefficientOfTheDirectionalFourierSeries|long|B2 COEFFICIENT OF THE DIRECTIONAL FOURIER SERIES|Numeric|4|-20000|15|Numeric|4|6 +042015|checkFactorK|long|CHECK FACTOR K|Numeric|2|0|12|Numeric|2|4 diff --git a/definitions/bufr/tables/0/wmo/36/sequence.def b/definitions/bufr/tables/0/wmo/36/sequence.def new file mode 100644 index 000000000..aa66de6d9 --- /dev/null +++ b/definitions/bufr/tables/0/wmo/36/sequence.def @@ -0,0 +1,1136 @@ +"300002" = [ 000002, 000003 ] +"300003" = [ 000010, 000011, 000012 ] +"300004" = [ 300003, 000013, 000014, 000015, 000016, 000017, 000018, 000019, 000020 ] +"300010" = [ 300003, 101000, 031001, 000030 ] +"300015" = [ 000030, 102000, 031002, 000024, 000025 ] +"300016" = [ 000030, 102000, 031001, 000026, 000027 ] +"301001" = [ 001001, 001002 ] +"301002" = [ 001003, 001004, 001005 ] +"301003" = [ 001011, 001012, 001013 ] +"301004" = [ 001001, 001002, 001015, 002001 ] +"301005" = [ 001035, 001034 ] +"301011" = [ 004001, 004002, 004003 ] +"301012" = [ 004004, 004005 ] +"301013" = [ 004004, 004005, 004006 ] +"301014" = [ 102002, 301011, 301012 ] +"301018" = [ 001114, 025185, 025186 ] +"301021" = [ 005001, 006001 ] +"301022" = [ 005001, 006001, 007001 ] +"301023" = [ 005002, 006002 ] +"301024" = [ 005002, 006002, 007001 ] +"301025" = [ 301023, 004003, 301012 ] +"301026" = [ 301021, 004003, 004003, 004004, 004004, 004005, 004005 ] +"301027" = [ 008007, 101000, 031001, 301028, 008007 ] +"301028" = [ 008040, 033042, 007010, 101000, 031002, 301023, 019007, 008040 ] +"301029" = [ 001018, 002001, 301011 ] +"301030" = [ 001018, 002001, 301011, 301024 ] +"301031" = [ 301001, 002001, 301011, 301012, 301022 ] +"301032" = [ 301001, 002001, 301011, 301012, 301024 ] +"301033" = [ 001005, 002001, 301011, 301012, 301021 ] +"301034" = [ 001005, 002001, 301011, 301012, 301023 ] +"301035" = [ 001005, 001012, 001013, 002001, 301011, 301012, 301023 ] +"301036" = [ 301003, 002001, 301011, 301012, 301023 ] +"301037" = [ 301001, 002011, 002012, 301011, 301012, 301022 ] +"301038" = [ 301001, 002011, 002012, 301011, 301012, 301024 ] +"301039" = [ 301003, 002011, 002012, 301011, 301012, 301023 ] +"301040" = [ 301003, 002011, 002012, 301011, 301012, 301024 ] +"301041" = [ 001007, 002021, 002022, 301011, 301012 ] +"301042" = [ 301041, 301021 ] +"301043" = [ 001007, 002023, 301011, 301013, 301021 ] +"301044" = [ 001007, 002024, 301011, 301013, 301021 ] +"301045" = [ 301011, 301012, 201138, 202131, 004006, 201000, 202000, 304030, 304031 ] +"301046" = [ 001007, 001012, 002048, 021119, 025060, 202124, 002026, 002027, 202000, 005040 + ] +"301047" = [ 001007, 025060, 001033, 001034, 001012, 301045, 002021, 301011, 301012, 201138, + 202131, 004006, 201000, 202000, 301023 ] +"301048" = [ 002104, 002121, 002113, 002026, 002027, 002111, 002140, 202127, 001013, 202126, + 007001, 202000, 025010, 021064 ] +"301049" = [ 002111, 002112, 021062, 021063, 021065 ] +"301051" = [ 001006, 002061, 301011, 301012, 301021, 008004 ] +"301055" = [ 001005, 002001, 301011, 301012, 301021, 001012, 001014 ] +"301056" = [ 001087, 001011, 001015, 002008, 002001, 301011, 301012, 301021, 007030, 007031 + ] +"301058" = [ 301011, 301012, 201152, 202135, 004006, 202000, 201000, 301021, 020111, 020112, + 020113, 020114, 020115, 020116, 020117, 020118, 020119, 025035, 020121, 020122, + 020123, 020124, 025175, 020023, 025063, 202136, 201136, 002121, 201000, 202000, + 025061, 002184, 002189, 025036, 101000, 031002, 301059 ] +"301059" = [ 301021, 007030, 007032 ] +"301062" = [ 101000, 031001, 301001 ] +"301065" = [ 001006, 001008, 002001, 002002, 002005, 002062, 002070, 002065 ] +"301066" = [ 301011, 301013, 301023, 007004, 002064, 008004 ] +"301070" = [ 002143, 002142, 002144 ] +"301071" = [ 001007, 001031, 002020, 002028, 002029 ] +"301072" = [ 301071, 301011, 301013, 301021 ] +"301074" = [ 002143, 002142, 002145, 002146 ] +"301075" = [ 301001, 001015, 301024, 008021, 301011, 301012 ] +"301076" = [ 002011, 002143, 002142 ] +"301089" = [ 001101, 001102 ] +"301090" = [ 301004, 301011, 301012, 301021, 007030, 007031 ] +"301091" = [ 002180, 002181, 002182, 002183, 002184, 002179, 002186, 002187, 002188, 002189 + ] +"301092" = [ 001011, 001003, 002001, 301011, 301012, 301021, 007030, 007031, 033024 ] +"301093" = [ 301036, 007030, 007031 ] +"301110" = [ 301001, 001011, 002011, 002014, 002003 ] +"301111" = [ 301001, 001011, 002011, 002013, 002014, 002003 ] +"301112" = [ 001006, 002011, 002013, 002014, 002003 ] +"301113" = [ 008021, 301011, 301013 ] +"301114" = [ 301021, 007030, 007031, 007007, 033024 ] +"301120" = [ 301001, 001094, 002011, 301121 ] +"301121" = [ 008041, 301122, 301021, 007031, 007007 ] +"301122" = [ 301011, 301012, 201135, 202130, 004006, 202000, 201000 ] +"301123" = [ 102002, 008041, 001062, 301001, 001094, 002011, 001018, 001095, 025061, 025068, + 001082, 001083, 001081, 002067, 002066, 002014, 025067, 025065, 025066, 002095, + 002096, 002097, 002016, 002083, 002080, 002081, 001093, 002084, 002085, 002086, + 002082, 008041, 301011 ] +"301125" = [ 001033, 001034, 025060, 001007, 002019, 001012 ] +"301126" = [ 001087, 001015, 002149, 301011, 301012, 301021 ] +"301128" = [ 001081, 001082, 001083, 001095, 002015, 002016, 002017, 002066, 002067, 002080, + 002081, 002082, 002083, 002084, 002085, 002086, 002095, 002096, 002097, 002103, + 002191, 025061, 035035 ] +"301129" = [ 001007, 001031, 002019, 002020 ] +"301130" = [ 301011, 301012, 202131, 201138, 004006, 201000, 202000 ] +"301131" = [ 301021, 007024, 005021, 007025, 005022 ] +"301132" = [ 301150, 301001, 301021, 007030, 008021, 301011, 301012, 002006, 001079, 001085 + ] +"301150" = [ 001125, 001126, 001127, 001128 ] +"302001" = [ 010004, 010051, 010061, 010063 ] +"302002" = [ 010004, 007004, 010003, 010061, 010063 ] +"302003" = [ 011011, 011012, 012004, 012006, 013003, 020001, 020003, 020004, 020005 ] +"302004" = [ 020010, 008002, 020011, 020013, 020012, 020012, 020012 ] +"302005" = [ 008002, 020011, 020012, 020013 ] +"302006" = [ 010004, 010051, 010062, 010063 ] +"302011" = [ 302001, 302003, 302004 ] +"302012" = [ 302002, 302003, 302004 ] +"302013" = [ 302006, 302003, 101000, 031001, 302005 ] +"302021" = [ 022001, 022011, 022021 ] +"302022" = [ 022002, 022012, 022022 ] +"302023" = [ 022003, 022013, 022023 ] +"302024" = [ 302022, 101002, 302023 ] +"302031" = [ 302001, 010062, 007004, 010009 ] +"302032" = [ 007032, 012101, 012103, 013003 ] +"302033" = [ 007032, 020001 ] +"302034" = [ 007032, 013023 ] +"302035" = [ 302032, 302033, 302034, 007032, 302004, 101000, 031001, 302005 ] +"302036" = [ 105000, 031001, 008002, 020011, 020012, 020014, 020017 ] +"302037" = [ 020062, 013013, 012113 ] +"302038" = [ 020003, 004024, 020004, 020005 ] +"302039" = [ 004024, 014031 ] +"302040" = [ 007032, 102002, 004024, 013011 ] +"302041" = [ 007032, 004024, 004024, 012111, 004024, 004024, 012112 ] +"302042" = [ 007032, 002002, 008021, 004025, 011001, 011002, 008021, 103002, 004025, 011043, + 011041 ] +"302043" = [ 302038, 101002, 302039, 302040, 302041, 302042, 007032 ] +"302044" = [ 004024, 002004, 013033 ] +"302045" = [ 004024, 014002, 014004, 014016, 014028, 014029, 014030 ] +"302046" = [ 004024, 004024, 012049 ] +"302047" = [ 102003, 008002, 020054 ] +"302048" = [ 005021, 007021, 020012, 005021, 007021 ] +"302049" = [ 008002, 020011, 020013, 020012, 020012, 020012, 008002 ] +"302050" = [ 008041, 005021, 007005, 202130, 006021, 202000, 008041, 201131, 202129, 002115, + 010004, 002115, 013003, 202000, 201000, 002115, 011001, 011002, 002115, 102002, + 012101, 004024, 002115, 012103, 012102, 101003, 020012, 020011, 020013, 101002, + 020003 ] +"302051" = [ 010004, 010051, 007004, 010003, 012004, 012051, 012016, 012017, 013004, 102004, + 008051, 008020 ] +"302052" = [ 007032, 007033, 012101, 002039, 012102, 012103, 013003 ] +"302053" = [ 007032, 007033, 020001 ] +"302054" = [ 302052, 302053, 007033, 302034, 007032, 302004, 101000, 031001, 302005 ] +"302055" = [ 020031, 020032, 020033, 020034, 020035, 020036, 020037, 020038 ] +"302056" = [ 002038, 007063, 022043, 007063 ] +"302057" = [ 302056, 302021, 302024 ] +"302058" = [ 007032, 007033, 004024, 004024, 012111, 004024, 004024, 012112 ] +"302059" = [ 007032, 007033, 002002, 008021, 004025, 011001, 011002, 008021, 103002, 004025, + 011043, 011041 ] +"302060" = [ 302038, 302040, 302058, 302059 ] +"302062" = [ 025188, 302001, 302093, 101000, 031000, 302053, 007032, 007033, 101000, 031000, + 302004, 101000, 031001, 302005, 008002, 101000, 031000, 302055, 101000, 031000, + 302056, 101000, 031000, 302021, 101000, 031000, 302024 ] +"302063" = [ 302038, 101000, 031000, 302040, 101000, 031000, 302034, 007032, 101000, 031000, + 302058, 101000, 031000, 302064 ] +"302064" = [ 007032, 007033, 002002, 008021, 004025, 011001, 011002, 008021, 103000, 031001, + 004025, 011043, 011041 ] +"302066" = [ 020023, 020024, 020027, 020054, 020023, 020027, 020054, 020025, 020026, 020027, + 020040, 020066, 020027, 020021, 020067, 020027 ] +"302067" = [ 001023, 004025, 002177, 101000, 031001, 020003, 103000, 031001, 005021, 020001, + 005021, 101000, 031000, 302056, 103000, 031000, 033041, 020058, 022061, 101000, + 031000, 302022, 101000, 031001, 302023, 104000, 031001, 020054, 020137, 020012, + 020090, 103000, 031001, 020054, 020137, 020136, 004025, 013012, 004025, 011042, + 104000, 031001, 008021, 004025, 011042, 008021, 115000, 031001, 008021, 004015, + 008021, 004025, 011001, 011002, 008021, 004015, 008021, 004025, 011001, 011002, + 008021, 004025, 004015, 103000, 031001, 004025, 004025, 020003, 110000, 031001, + 004025, 004025, 005021, 005021, 020054, 020024, 020025, 020026, 020027, 020063 + ] +"302069" = [ 007032, 007033, 033041, 020001 ] +"302070" = [ 007032, 007033, 011001, 011002, 011043, 011041, 011016, 011017 ] +"302071" = [ 007032, 007033, 008021, 004025, 011001, 011002, 008021, 103002, 004025, 011043, + 011041, 004025, 011016, 011017 ] +"302072" = [ 007032, 007033, 012101, 012103, 013003 ] +"302073" = [ 020010, 105004, 008002, 020011, 020012, 033041, 020013 ] +"302074" = [ 020003, 004025, 020004, 020005 ] +"302075" = [ 008021, 004025, 013055, 013058, 008021 ] +"302076" = [ 020021, 020022, 026020, 020023, 020024, 020025, 020026 ] +"302077" = [ 007032, 007033, 004025, 012111, 012112, 007032, 004025, 012112 ] +"302078" = [ 002176, 020062, 002177, 013013 ] +"302079" = [ 007032, 002175, 002178, 004025, 013011 ] +"302080" = [ 002185, 004025, 013033 ] +"302081" = [ 004025, 014031 ] +"302082" = [ 004025, 014002, 014004, 014016, 014028, 014029, 014030 ] +"302083" = [ 004025, 008023, 010004, 011001, 011002, 012101, 013003, 008023 ] +"302084" = [ 302031, 302072, 103000, 031000, 101005, 307063, 007061, 101000, 031000, 302069, + 007032, 007033, 105000, 031000, 020031, 020032, 002038, 022043, 302021, 101000, + 031000, 302078, 012113, 101000, 031000, 302004, 105000, 031001, 008002, 020011, + 020012, 033041, 020013, 302036, 101000, 031000, 302047, 008002, 101000, 031000, + 302048 ] +"302085" = [ 105000, 031000, 020003, 103002, 004024, 020004, 020005, 101000, 031000, 302175, + 102000, 031000, 004025, 302076, 102000, 031000, 004025, 013059, 007032, 007033, + 008021, 004025, 011001, 011002, 008021, 103003, 004025, 011043, 011041, 004025, + 011016, 011017, 302077, 007033, 302041, 106000, 031000, 007032, 002175, 002178, + 102005, 004024, 013011, 007032, 103000, 031000, 002185, 101002, 302044, 102000, + 031000, 101002, 302039, 102000, 031000, 101002, 302045, 101000, 031000, 302046, + 101000, 031000, 302083 ] +"302089" = [ 020101, 020102, 020103, 020104, 020105, 020106, 020107, 020108 ] +"302090" = [ 002038, 007063, 022045 ] +"302091" = [ 020001, 004024, 013011 ] +"302092" = [ 011104, 001012, 001013, 010038, 010039, 011007, 011008 ] +"302093" = [ 007032, 007033, 303099, 012101, 103000, 031000, 007032, 007033, 303099, 002039, + 002097, 003024, 003021, 012102, 012103, 013003, 007032, 007033, 303099, 002039, + 002097, 003021, 003024 ] +"302175" = [ 008021, 004025, 013155, 013058, 008021 ] +"303001" = [ 007003, 011001, 011002 ] +"303002" = [ 007004, 011001, 011002 ] +"303003" = [ 007004, 010003, 012001, 012003 ] +"303004" = [ 007004, 010003, 012001, 012003, 011001, 011002 ] +"303011" = [ 007003, 008001, 011001, 011002 ] +"303012" = [ 007004, 008001, 011001, 011002 ] +"303013" = [ 007004, 008001, 010003, 012001, 013003, 011001, 011002 ] +"303014" = [ 007004, 008001, 010003, 012001, 012003, 011001, 011002 ] +"303021" = [ 007004, 007004, 204007, 031021 ] +"303022" = [ 303021, 010003, 204000 ] +"303023" = [ 303021, 012001, 204000 ] +"303024" = [ 303021, 013016, 204000 ] +"303025" = [ 002025, 204007, 031021, 012063, 204000 ] +"303026" = [ 007004, 008003, 204007, 031021, 012001, 204000 ] +"303027" = [ 007004, 204007, 031021, 010003, 204000 ] +"303031" = [ 007004, 008003, 007021, 007022, 008012, 012061 ] +"303032" = [ 020011, 020016 ] +"303033" = [ 020010, 020016 ] +"303040" = [ 008041, 004025, 004026, 301021, 301122, 201131, 202129, 025069, 007004, 013003, + 202000, 201000, 002013, 012101, 010009, 102002, 008040, 035035 ] +"303041" = [ 002152, 002023, 007004, 011001, 011002, 002153, 002154, 012071 ] +"303050" = [ 004086, 008042, 007004, 005015, 006015, 011001, 011002 ] +"303051" = [ 004086, 008042, 007004, 005015, 006015, 011061, 011062 ] +"303052" = [ 004086, 008042, 007009, 005015, 006015, 011001, 011002 ] +"303053" = [ 004086, 008042, 007009, 005015, 006015, 011061, 011062 ] +"303054" = [ 004086, 008042, 007004, 010009, 005015, 006015, 012101, 012103, 011001, 011002 + ] +"303055" = [ 004086, 008042, 007009, 005015, 006015, 012101, 013009, 012103, 011001, 011002 + ] +"303056" = [ 004086, 008042, 207001, 007004, 010009, 207000, 005015, 006015, 012101, 012103, + 011001, 011002 ] +"303099" = [ 003005, 003006, 003007, 002096, 003022, 003003, 003020, 003004, 003023, 003008, + 003009 ] +"304001" = [ 008003, 010004, 012001, 011001, 011002 ] +"304002" = [ 008003, 010004, 011001, 011002 ] +"304003" = [ 008003, 012001 ] +"304004" = [ 008003, 010004, 020010, 012001 ] +"304005" = [ 002024, 007004, 007004, 013003 ] +"304006" = [ 014001, 014001, 014003 ] +"304011" = [ 002163, 002164, 008012, 007024, 002057, 008021, 004001, 004002, 004003, 004004, + 008021, 004024, 110004, 008021, 004004, 004005, 004006, 008021, 004004, 004005, + 004006, 011001, 011002, 103010, 002163, 007004, 012001 ] +"304030" = [ 027031, 028031, 010031 ] +"304031" = [ 001041, 001042, 001043 ] +"304032" = [ 002153, 002154, 020081, 020082, 020012 ] +"304033" = [ 002152, 002166, 002167, 002153, 002154, 012075, 012076, 012063 ] +"304034" = [ 102004, 027001, 028001, 007022, 005043, 020010, 020016, 033003, 010040 ] +"304035" = [ 002153, 002154, 012063, 008001, 012063, 008001, 012063, 008001, 008003, 012063, + 008003, 012063, 008003, 012063, 008003 ] +"304036" = [ 020082, 008012, 020082, 008012, 020081, 008003, 020081, 008003, 020081, 008003, + 020081, 008003 ] +"304037" = [ 002153, 002154, 012063, 008011, 012063, 008011, 012063, 008011, 008003, 012063, + 008003, 012063, 008003, 012063 ] +"304039" = [ 201136, 005042, 201000, 014046 ] +"304040" = [ 025140, 025141, 040026, 040016, 025062, 101000, 031002, 040017 ] +"305001" = [ 011001, 011002, 013060, 013071 ] +"305002" = [ 301012, 012001, 013003, 014051, 013060, 013072, 013080, 013081, 013082, 013083, + 013084 ] +"305003" = [ 301012, 004065, 101000, 031001, 305001 ] +"305004" = [ 301030, 305002, 305003 ] +"305006" = [ 013072, 013082, 013019, 012001, 013073, 013060 ] +"305007" = [ 301029, 301012, 004065, 101000, 031001, 305006 ] +"305008" = [ 305006, 012030 ] +"305009" = [ 301029, 301012, 004065, 101000, 031001, 305008 ] +"305010" = [ 305008, 002091, 002091 ] +"305011" = [ 301029, 301012, 004065, 101000, 031001, 305010 ] +"305016" = [ 014021, 007004, 013003, 011002, 011001, 011041, 011043 ] +"305017" = [ 013080, 013081, 013083, 013085, 013084 ] +"305018" = [ 301029, 301012, 004065, 103000, 031001, 305008, 305016, 305017 ] +"306001" = [ 002032, 102000, 031001, 007062, 022042 ] +"306002" = [ 002031, 022004, 022031 ] +"306003" = [ 002002, 011011, 011012, 012004 ] +"306004" = [ 002032, 002033, 103000, 031001, 007062, 022043, 022062 ] +"306005" = [ 002031, 103000, 031001, 007062, 022004, 022031 ] +"306006" = [ 306003, 306002, 022063 ] +"306007" = [ 001012, 001014, 306008, 004024, 027003, 028003 ] +"306008" = [ 002034, 002035, 002036 ] +"306011" = [ 301021, 001075, 002147, 301011, 301013 ] +"306012" = [ 002007, 008015, 008032, 306029 ] +"306013" = [ 306012, 301011, 301013, 022120, 022121, 004015, 004065, 102000, 031001, 022038, + 022040 ] +"306014" = [ 306012, 301011, 301013, 022120, 022121, 004015, 004065, 101000, 031001, 022038 + ] +"306016" = [ 301011, 301013, 010004, 010051, 302032, 007032, 002002, 008021, 004025, 011001, + 011002, 004025, 011043, 011041, 025026, 012060 ] +"306017" = [ 002032, 008034, 106000, 031002, 007065, 008080, 033050, 022045, 008080, 033050, + 008034 ] +"306018" = [ 002032, 008034, 109000, 031002, 007065, 008080, 033050, 022045, 008080, 033050, + 022064, 008080, 033050, 008034 ] +"306019" = [ 001075, 301011, 301012, 022042, 022120, 022121, 004015, 004065 ] +"306020" = [ 001075, 301011, 301012, 022042, 022120, 022121, 004075, 004065 ] +"306021" = [ 001075, 301011, 301012, 022122, 022123, 012001, 303002 ] +"306022" = [ 001075, 301011, 301012, 022038, 022039 ] +"306023" = [ 001015, 301023, 301011, 301012, 022038, 022039, 022120, 022121 ] +"306024" = [ 306020, 102006, 022038, 022039 ] +"306025" = [ 306019, 102006, 022038, 022039 ] +"306027" = [ 001005, 001052, 002047, 301011, 301013 ] +"306028" = [ 306027, 301011, 301013, 301021 ] +"306029" = [ 025170, 025171, 025172 ] +"306030" = [ 306027, 306029, 111000, 031001, 033002, 301011, 301013, 025025, 025025, 025026, + 022185, 004015, 004065, 101004, 022182 ] +"306031" = [ 306027, 306029, 001053, 033002, 301011, 301013, 301011, 301013, 022185, 022182, + 004016, 004066, 101000, 031001, 022184 ] +"306033" = [ 002033, 007063, 022064 ] +"306034" = [ 002031, 003010, 002040, 022005, 022032 ] +"306035" = [ 112000, 031002, 007062, 008080, 033050, 007065, 008080, 033050, 022043, 008080, + 033050, 022064, 008080, 033050 ] +"306036" = [ 112000, 031002, 007062, 008080, 033050, 007065, 008080, 033050, 022031, 008080, + 033050, 022004, 008080, 033050 ] +"306037" = [ 109000, 031002, 007062, 008080, 033050, 007065, 008080, 033050, 022188, 008080, + 033050 ] +"306038" = [ 010004, 010051, 007033, 012101, 012103, 013003, 007033, 008021, 004025, 011001, + 011002, 008021, 004025, 011041, 004025, 007033, 002005, 007063, 022049 ] +"306039" = [ 022078, 022070, 022073, 022074, 022071, 022076, 022077 ] +"306040" = [ 022078, 022082, 106000, 031001, 022080, 022069, 022086, 022087, 022088, 022089 + ] +"306041" = [ 002032, 102000, 031001, 007062, 022043 ] +"306042" = [ 002169, 007033, 008021, 004025, 011001, 011002 ] +"306043" = [ 041001, 008043, 015028, 008043, 013080, 041005, 041003, 022188, 041002, 106000, + 031000, 004024, 014002, 014002, 014012, 014004, 004024 ] +"307001" = [ 301031, 302011 ] +"307002" = [ 301032, 302011 ] +"307003" = [ 307001, 101000, 031001, 302005 ] +"307004" = [ 307002, 101000, 031001, 302005 ] +"307005" = [ 307001, 101004, 302005 ] +"307006" = [ 307002, 101004, 302005 ] +"307007" = [ 301031, 302012 ] +"307008" = [ 301032, 302012 ] +"307009" = [ 301031, 302013 ] +"307011" = [ 001063, 002001, 301011, 301012, 301024, 007006, 011001, 011016, 011017, 011002, + 011041, 007006, 012001, 012003, 010052, 020009 ] +"307012" = [ 103000, 031001, 008023, 005021, 020001 ] +"307013" = [ 106000, 031001, 001064, 008014, 020061, 008014, 020061, 020018 ] +"307014" = [ 101000, 031001, 020019 ] +"307015" = [ 101000, 031001, 302005, 020002 ] +"307016" = [ 101000, 031001, 020020 ] +"307017" = [ 101000, 031001, 011070 ] +"307018" = [ 008016, 102000, 031001, 008017, 301012, 104000, 031001, 007006, 011001, 011002, + 011041, 020009, 101000, 031001, 020001, 307014 ] +"307020" = [ 307011, 307014, 307016 ] +"307021" = [ 307011, 307012, 307013, 307014, 307015, 307016, 307017, 307018, 307015 ] +"307022" = [ 001015, 301011, 301012, 301022, 008021, 004025, 010004, 012001, 013003, 033038, + 008022, 106025, 002020, 001050, 005021, 007021, 015031, 015032, 008060, 015033, + 015034, 008060, 015033, 015034, 015035, 201131, 202129, 013016, 202000, 201000, + 015011 ] +"307024" = [ 301150, 001015, 001040, 008021, 301011, 301013, 301022, 010036, 025061, 010004, + 012001, 013003, 120000, 031000, 025060, 008021, 004025, 115000, 031001, 015079, + 015080, 008022, 033093, 015089, 015035, 102002, 008060, 015083, 201131, 202129, + 013016, 202000, 201000, 015011, 131000, 031000, 025060, 008021, 004025, 033093, + 125000, 031001, 002020, 001050, 001150, 202127, 304030, 202000, 005021, 007021, + 015038, 015039, 015090, 015081, 015082, 015079, 015089, 015035, 102002, 008060, + 015083, 015084, 015085, 015086, 015087, 015088, 015011 ] +"307030" = [ 015001, 015002 ] +"307031" = [ 008022, 008023, 015001, 008023, 015001, 008023, 015002 ] +"307041" = [ 301001, 001015, 301024, 301011, 301012, 301070, 307030 ] +"307042" = [ 301001, 001015, 301024, 301011, 301012, 008021, 004025, 301070, 307031 ] +"307043" = [ 301001, 001015, 301024, 301011, 301012, 301074, 307030 ] +"307044" = [ 301001, 001015, 301024, 301011, 301012, 008021, 004025, 301074, 307031 ] +"307045" = [ 001063, 008079, 002001, 301011, 301012, 301023, 007030, 007031, 007032, 011001, + 011016, 011017, 008054, 011083, 011084, 011002, 008054, 011085, 011086, 011041, + 008054, 007032, 012023, 012024, 007032, 010052, 020009 ] +"307046" = [ 020060, 102000, 031001, 005021, 020059 ] +"307047" = [ 105000, 031001, 008002, 020011, 020012, 020013, 020092, 020002, 020091 ] +"307048" = [ 008016, 102000, 031001, 008017, 301012, 112000, 031000, 007032, 011001, 008054, + 011083, 011084, 011002, 008054, 011085, 011086, 011041, 008054, 007032, 020009, + 101000, 031000, 020060, 307014, 307047 ] +"307049" = [ 102000, 031000, 022043, 022021 ] +"307050" = [ 101000, 031000, 020085, 102000, 031001, 001064, 020085, 105000, 031001, 001064, + 020086, 020087, 020088, 020089 ] +"307051" = [ 307045, 307046, 307013, 307014, 307047, 307016, 307017, 307049, 307050, 101000, + 031001, 307048 ] +"307052" = [ 001063, 008039, 301011, 301012, 008079, 008039, 301011, 301012, 008039, 301011, + 301012, 301023, 007030, 007031 ] +"307053" = [ 007032, 011001, 008054, 011083, 011084, 011002, 008054, 011085, 011086, 011041, + 008054, 007032, 020009, 020060, 307014, 307047 ] +"307054" = [ 007032, 008039, 004003, 004004, 008023, 012023, 008039, 004003, 004004, 008023, + 012023, 008023, 007032 ] +"307055" = [ 033045, 008016, 008039, 004003, 301012, 008039, 004003, 301012, 307053 ] +"307056" = [ 307052, 307053, 307054, 101000, 031001, 307055 ] +"307060" = [ 007061, 012030 ] +"307061" = [ 301031, 101005, 307060 ] +"307062" = [ 301032, 101005, 307060 ] +"307063" = [ 007061, 012130 ] +"307071" = [ 301090, 004074, 004023, 008023, 010004, 010051, 007004, 010009, 007032, 012101, + 002051, 004051, 012118, 004052, 012119, 013004, 008023, 012151, 007032, 102005, + 008050, 008020, 014032, 014033, 008050, 008020, 102018, 008052, 008022, 007032, + 008053, 004003, 012152, 008053, 004003, 012153, 008053, 004003, 008023, 012101, + 008053, 004003, 008023, 012101, 008023, 007032, 002002, 008053, 004003, 011046, + 008053, 004003, 004004, 004023, 007032, 013060, 013051, 004053, 008050, 008020, + 102006, 008052, 008022, 008053, 004003, 013052, 007032 ] +"307072" = [ 004001, 004001, 004002, 004003, 004004, 004074, 004022, 008023, 010004, 010051, + 007004, 010009, 007032, 012101, 002051, 004051, 012118, 004052, 012119, 013004, + 012151, 007032, 014032, 008023, 004001, 004001, 004002, 004003, 004004, 004022, + 007032, 008023, 013060, 004053, 008023, 102008, 008050, 008020 ] +"307073" = [ 307071, 307072 ] +"307074" = [ 301001, 004001, 004002, 301021, 007030, 007032, 112000, 031001, 004003, 004004, + 004024, 102003, 008023, 012101, 008023, 004004, 004024, 013060, 013012, 013013 + ] +"307076" = [ 301090, 004074, 004023, 008023, 010004, 010051, 007004, 010009, 007032, 012101, + 002051, 004051, 012118, 004052, 012119, 013004, 008023, 012151, 007032, 102005, + 008050, 008020, 014032, 014033, 008050, 008020, 102018, 008052, 008022, 007032, + 008053, 004003, 012152, 008053, 004003, 012153, 008053, 004003, 008023, 012101, + 008053, 004003, 008023, 012101, 008023, 007032, 002002, 008053, 004003, 011046, + 008053, 004003, 004004, 004074, 004023, 007032, 013060, 013051, 004053, 008050, + 008020, 102006, 008052, 008022, 008053, 004003, 013052, 007032 ] +"307077" = [ 004001, 004001, 004002, 004003, 004004, 004074, 004022, 008023, 010004, 010051, + 007004, 010009, 007032, 012101, 002051, 004051, 012118, 004052, 012119, 013004, + 012151, 007032, 014032, 008023, 004001, 004001, 004002, 004003, 004004, 004074, + 004022, 007032, 008023, 013060, 004053, 008023, 102008, 008050, 008020 ] +"307078" = [ 307076, 307077 ] +"307079" = [ 301090, 302031, 302035, 302036, 101000, 031000, 302047, 008002, 101000, 031000, + 302048, 302037, 102000, 031000, 022061, 020058, 101000, 031000, 302056, 101000, + 031000, 302055, 302043, 302044, 101000, 031001, 302045, 101000, 031000, 302046 + ] +"307080" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 302043, 302044, + 101002, 302045, 302046 ] +"307081" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 012122, 013056, + 013057, 020101, 020102, 020103, 020104, 020105, 020106, 020107, 020108, 302043, + 302044, 101002, 302045, 302046 ] +"307082" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 012121, 012122, + 302043, 302044, 101002, 302045, 302046 ] +"307083" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 012122, 302043, + 302044, 101002, 302045, 302046 ] +"307084" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 020055, 101000, + 031001, 205001, 302043, 302044, 101002, 302045, 302046 ] +"307086" = [ 301090, 302031, 302035, 302036, 008002, 302037, 302066, 302043, 302044, 101002, + 302045 ] +"307087" = [ 301001, 002001, 301011, 301012, 301023, 007030, 007031, 302001, 010062, 007004, + 010009, 007032, 012101, 012103, 013003, 007032, 020001, 302004, 101000, 031001, + 302005 ] +"307088" = [ 020003, 004024, 020004, 020005, 004024, 002004, 013033, 102002, 004024, 014031, + 102002, 004024, 013011, 007032, 004024, 012111, 004024, 012112, 007032, 002002, + 008021, 004025, 011001, 011002, 008021 ] +"307089" = [ 307087, 307088 ] +"307090" = [ 301092, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 302043, 302044, + 101002, 302045, 302046 ] +"307091" = [ 301089, 301090, 008010, 301091, 302001, 007004, 010009, 302072, 103000, 031000, + 101005, 307063, 007061, 101000, 031000, 302069, 007032, 007033, 105000, 031000, + 020031, 020032, 002038, 022043, 302021, 101000, 031000, 302078, 101000, 031000, + 302073, 101000, 031000, 302074, 101000, 031000, 302175, 102000, 031000, 004025, + 302076, 302071, 302077, 007033, 101000, 031000, 302079, 007032, 101000, 031000, + 302080, 101000, 031000, 302081, 101000, 031000, 302082, 102000, 031000, 004025, + 013059, 101000, 031000, 302083, 033005, 033006 ] +"307092" = [ 301150, 301001, 208040, 001019, 208000, 301011, 301012, 301021, 007030, 001023, + 108000, 031000, 007031, 204018, 031021, 010004, 010051, 007004, 010009, 204000, + 115000, 031001, 007032, 008010, 204018, 031021, 012101, 012103, 202129, 201132, + 013003, 201000, 202000, 013009, 204000, 007032, 008010, 107000, 031001, 007061, + 204018, 031021, 012130, 013111, 204000, 007061, 105000, 031000, 033041, 204018, + 031021, 020001, 204000, 113000, 031000, 204018, 031021, 020010, 204000, 107000, + 031001, 008002, 204018, 031021, 020011, 020013, 204000, 008002, 105000, 031000, + 204018, 031021, 020062, 013013, 204000, 105000, 031000, 004025, 204018, 031021, + 020003, 204000, 105000, 031000, 004025, 204018, 031021, 013011, 204000, 115000, + 031001, 007032, 008021, 004025, 204018, 031021, 011001, 011002, 204000, 008021, + 204018, 031021, 011043, 011041, 204000, 007032, 105000, 031000, 004025, 204018, + 031021, 014031, 204000, 110000, 031000, 004025, 204018, 031021, 014002, 014002, + 014004, 014028, 014029, 014030, 204000, 113000, 031000, 004025, 002071, 002072, + 204018, 031021, 014072, 204000, 002071, 002072, 204018, 031021, 014072, 204000 + ] +"307096" = [ 301090, 301089, 008010, 301091, 302084, 302085, 033005, 033006 ] +"307101" = [ 301089, 001019, 002001, 301011, 301012, 301021, 007030, 007032, 012101, 007032, + 002177, 020062, 013013 ] +"307102" = [ 301089, 001018, 001015, 001104, 001105, 001106, 003017, 003018, 003019, 301011, + 301012, 301021, 007030, 007032, 012101, 012103, 013003, 007032, 020001, 109000, + 031001, 003016, 012128, 102000, 031001, 007061, 012129, 007061, 013116, 020138, + 004025, 020024, 013055, 020021, 013011, 007032, 008021, 004025, 011001, 011002, + 008021, 004025, 011043, 011041, 033005 ] +"307103" = [ 301150, 307101, 013117, 003028, 013163 ] +"307182" = [ 301090, 302031, 302035, 302036, 302047, 008002, 302048, 302037, 012120, 012122, + 302043, 302044, 101002, 302045, 302046 ] +"308001" = [ 301033, 302011, 022042 ] +"308002" = [ 301034, 302011, 022042 ] +"308003" = [ 301035, 302011, 022042 ] +"308004" = [ 301036, 302011, 022042 ] +"308005" = [ 308004, 302024 ] +"308006" = [ 010004, 010061, 010063, 011001, 011002, 012004, 013003, 022042 ] +"308007" = [ 301055, 302011, 007062, 022042 ] +"308009" = [ 301093, 302001, 302054, 008002, 302055, 302057, 302060 ] +"308010" = [ 001011, 113000, 031001, 301011, 301012, 301021, 004080, 022049, 004080, 022059, + 004080, 022005, 002042, 022032, 002042, 004080 ] +"308011" = [ 001011, 002001, 301011, 301012, 301023, 007030, 007031, 004074, 004023, 008023, + 010051, 007032, 007033, 012101, 013004, 007032, 007033, 302056, 008023, 004003, + 004004, 004023, 007032, 013060, 013051, 004053, 007032 ] +"308012" = [ 004001, 004001, 004002, 004003, 004004, 004074, 004022, 008023, 010051, 007032, + 007033, 012101, 013004, 007032, 007033, 302056, 008023, 004001, 004001, 004002, + 004003, 004004, 004022, 007032, 008023, 013060, 004053, 008023 ] +"308013" = [ 308011, 308012 ] +"308014" = [ 101000, 031000, 301018, 003001, 301093, 208032, 001079, 208000, 302062, 302063, + 101000, 031000, 302092, 101000, 031000, 306033, 101000, 031000, 306034, 101000, + 031000, 306043 ] +"308015" = [ 001003, 001020, 001005, 001011, 001007, 001001, 001002, 002044, 002045, 301011, + 301012, 301021, 022063, 022076, 022077, 022094, 025043, 022078, 105002, 002046, + 022070, 022071, 022073, 022074, 127000, 031001, 002046, 008090, 022102, 008090, + 022084, 120000, 031001, 022080, 022108, 022086, 022087, 022088, 022089, 105000, + 031001, 008090, 022104, 008090, 022186, 022187, 105000, 031001, 008090, 022106, + 008090, 022186, 022187 ] +"308016" = [ 001003, 001020, 001005, 001011, 001007, 001001, 001002, 002044, 002045, 301011, + 301012, 301021, 022063, 022076, 022077, 022094, 025044, 022079, 105002, 002046, + 022070, 022072, 022073, 022075, 127000, 031001, 002046, 008090, 022103, 008090, + 022084, 120000, 031001, 022081, 022108, 022086, 022087, 022088, 022089, 105000, + 031001, 008090, 022105, 008090, 022186, 022187, 105000, 031001, 008090, 022107, + 008090, 022186, 022187 ] +"308017" = [ 301056, 302001, 302052, 101000, 031000, 302056, 302064, 302053, 101000, 031000, + 302004, 101000, 031000, 302005, 101000, 031000, 302038, 101000, 031000, 306039 + ] +"308018" = [ 301150, 301093, 302001, 302072, 101000, 031000, 302056, 101000, 031000, 302064 + ] +"308021" = [ 001011, 002001, 301011, 301012, 301023, 007030, 007031, 004074, 004023, 008023, + 010051, 007032, 007033, 012101, 013004, 007032, 007033, 302056, 008023, 004003, + 004004, 004074, 004023, 007032, 013060, 013051, 004053, 007032 ] +"308022" = [ 004001, 004001, 004002, 004003, 004004, 004074, 004022, 008023, 010051, 007032, + 007033, 012101, 013004, 007032, 007033, 302056, 008023, 004001, 004001, 004002, + 004003, 004004, 004074, 004022, 007032, 008023, 013060, 004053, 008023 ] +"308023" = [ 308021, 308022 ] +"309001" = [ 301037, 101000, 031001, 303011 ] +"309002" = [ 301038, 101000, 031001, 303011 ] +"309003" = [ 301037, 101000, 031001, 303012 ] +"309004" = [ 301038, 101000, 031001, 303012 ] +"309005" = [ 301037, 302004, 101000, 031001, 303013 ] +"309006" = [ 301038, 302004, 101000, 031001, 303013 ] +"309007" = [ 301037, 302004, 101000, 031001, 303014 ] +"309008" = [ 301038, 302004, 101000, 031001, 303014 ] +"309011" = [ 301039, 101000, 031001, 303011 ] +"309012" = [ 301039, 101000, 031001, 303012 ] +"309013" = [ 301039, 302004, 101000, 031001, 303013 ] +"309014" = [ 301039, 302004, 101000, 031001, 303014 ] +"309015" = [ 301040, 101000, 031001, 303011 ] +"309016" = [ 301040, 101000, 031001, 303012 ] +"309017" = [ 301040, 302004, 101000, 031001, 303013 ] +"309018" = [ 301040, 302004, 101000, 031001, 303014 ] +"309019" = [ 301031, 002003, 101000, 031001, 303011 ] +"309020" = [ 301031, 002003, 104000, 031001, 007003, 011003, 011004, 011005 ] +"309021" = [ 301001, 005001, 006001, 007030, 301014, 002003, 002121, 112000, 031001, 007007, + 301021, 011003, 011110, 011004, 011111, 033002, 011006, 011112, 033002, 010071, + 027079 ] +"309022" = [ 301001, 005001, 006001, 007030, 301014, 002003, 002121, 110000, 031001, 007007, + 301021, 012007, 012008, 033002, 011006, 011112, 033002, 010071, 027079 ] +"309023" = [ 301001, 005001, 006001, 007030, 301014, 002003, 302004, 302005, 114000, 031001, + 007007, 301021, 101000, 031001, 002121, 015063, 015064, 015065, 015066, 015067, + 015068, 015069, 015070, 015071, 015072, 033002, 010071, 027079 ] +"309024" = [ 301132, 201151, 202130, 002121, 202000, 201000, 008021, 004025, 109000, 031002, + 007007, 301021, 011003, 011004, 033002, 011006, 033002, 010071, 027079 ] +"309025" = [ 301132, 201151, 202130, 002121, 202000, 201000, 008021, 004025, 106000, 031002, + 007007, 301021, 012007, 033002, 010071, 027079 ] +"309026" = [ 301132, 302004, 302005, 008092, 008093, 008021, 004025, 201138, 202126, 002121, + 202000, 201000, 115000, 031002, 007007, 301021, 015073, 015064, 015074, 015066, + 015075, 015068, 015076, 015077, 015078, 015072, 033002, 010071, 027079 ] +"309030" = [ 015004, 015005, 104000, 031001, 004015, 008006, 007004, 015003 ] +"309031" = [ 015004, 015005, 104000, 031001, 004025, 008006, 007004, 015003 ] +"309040" = [ 301075, 301076, 309030 ] +"309041" = [ 307041, 301075, 301076, 309030 ] +"309042" = [ 307042, 301075, 301076, 309030 ] +"309043" = [ 307043, 301075, 301076, 309030 ] +"309044" = [ 307044, 301075, 301076, 309030 ] +"309045" = [ 301075, 301076, 309031 ] +"309046" = [ 307041, 301075, 301076, 309031 ] +"309047" = [ 307042, 301075, 301076, 309031 ] +"309048" = [ 307043, 301075, 301076, 309031 ] +"309049" = [ 307044, 301075, 301076, 309031 ] +"309050" = [ 301110, 301113, 301114, 101000, 031002, 303050, 101000, 031001, 303051 ] +"309051" = [ 301110, 301113, 301114, 101000, 031002, 303052, 101000, 031001, 303053 ] +"309052" = [ 301111, 301113, 301114, 302049, 022043, 101000, 031002, 303054, 101000, 031001, + 303051 ] +"309053" = [ 301112, 301113, 301114, 101000, 031002, 303054, 101000, 031001, 303051 ] +"309054" = [ 301001, 001011, 301011, 301012, 301021, 007030, 007031, 007007, 004023, 004059, + 115000, 031001, 008001, 008023, 007004, 010009, 012101, 012103, 008023, 011001, + 011002, 008023, 011019, 008050, 008020, 008050, 008020 ] +"309055" = [ 301111, 025061, 001081, 001082, 002067, 002095, 002096, 002097, 002081, 002082, + 002084, 002191, 301113, 301114, 010004, 302032, 007032, 002002, 011001, 011002, + 007032, 020003, 302049, 022043, 101000, 031002, 303055 ] +"309056" = [ 301150, 301111, 301128, 301113, 008091, 301021, 007007, 008091, 101000, 031002, + 303056, 101000, 031001, 303051 ] +"309057" = [ 301150, 301111, 301128, 301113, 301114, 302049, 022043, 101000, 031002, 303056, + 101000, 031001, 303051 ] +"309060" = [ 301123, 301121, 302050, 303040 ] +"309061" = [ 301120, 008041, 301122, 201131, 202129, 025069, 007004, 202000, 201000, 033007, + 033035, 033015, 013009, 033007, 033035, 033015, 002013, 012101, 033007, 033035, + 033015 ] +"309062" = [ 301120, 008041, 301122, 005001, 033035, 033015, 006001, 033035, 033015, 007007, + 033035, 033015, 011003, 033035, 033015, 011004, 033035, 033015, 033007 ] +"309063" = [ 301120, 008041, 301122, 005001, 033035, 033015, 006001, 033035, 033015, 007007, + 033035, 033015, 011003, 033035, 033015, 011004, 033035, 033015, 033007 ] +"309064" = [ 301120, 008041, 301122, 201131, 202129, 104002, 025069, 007004, 033035, 033015, + 013003, 033035, 033015, 202000, 201000, 104002, 002013, 012101, 033035, 033015, + 012103, 033035, 033015, 010009, 033035, 033015 ] +"309065" = [ 301120, 008041, 301122, 005001, 033035, 033015, 006001, 033035, 033015, 007007, + 033035, 033015, 011003, 033035, 033015, 011004, 033035, 033015 ] +"309066" = [ 301120, 008041, 301122, 008040, 201131, 202129, 025069, 007004, 013003, 202000, + 201000, 002013, 012101, 012103, 010009, 010007, 011002, 011001 ] +"309070" = [ 001035, 001032, 001015, 001063, 301001, 301011, 301012, 301021, 207001, 010001, + 207000, 008086, 007030, 025031, 008021, 004014, 010004, 010051, 010009, 020010, + 013095, 128000, 031002, 113000, 031000, 008086, 007004, 011001, 011002, 012101, + 012102, 012103, 010009, 103000, 031000, 011021, 011022, 011005, 104000, 031000, + 008086, 007006, 011001, 011002, 105000, 031000, 008086, 007006, 012101, 012102, + 012103 ] +"309071" = [ 301001, 002014, 002003, 301113, 301114, 301023, 007030, 007007, 103000, 031001, + 007009, 011001, 011002 ] +"310001" = [ 301042, 303031, 303032, 101026, 303025 ] +"310002" = [ 301042, 303031, 303032, 101009, 303023 ] +"310003" = [ 301042, 303031, 303032, 101006, 303023 ] +"310004" = [ 301042, 303031, 303032, 101003, 303024 ] +"310005" = [ 301042, 303031, 303033, 101000, 031001, 303025 ] +"310006" = [ 301042, 303031, 303033, 101000, 031001, 303023 ] +"310007" = [ 301042, 303031, 303033, 101000, 031001, 303024 ] +"310008" = [ 310011, 101019, 310012, 002150, 025079, 025080, 033032, 014045 ] +"310009" = [ 310011, 101015, 310012 ] +"310010" = [ 310011, 101005, 310012 ] +"310011" = [ 008070, 001033, 001034, 008070, 001033, 001034, 001007, 002048, 005040, 025075, + 201133, 005041, 201000, 005043, 025070, 033030, 033031, 004001, 004002, 004003, + 004004, 004005, 202131, 201138, 004006, 201000, 202000, 005001, 006001, 202126, + 007001, 202000, 007024, 005021, 007025, 005022, 033033, 002151, 012064, 002151, + 012064, 002151, 012064, 002151, 012064 ] +"310012" = [ 002150, 025076, 025077, 025078, 033032, 201132, 202129, 012063, 202000, 201000 + ] +"310013" = [ 001007, 005040, 004001, 004002, 004003, 004004, 004005, 004006, 005001, 006001, + 007025, 005043, 025085, 201131, 202129, 002150, 008023, 008072, 014027, 008072, + 014027, 002150, 008023, 008072, 014027, 008072, 014027, 002150, 008023, 008072, + 014027, 008072, 014027, 202000, 201000, 201132, 202129, 002150, 008023, 008072, + 012063, 008072, 012063, 002150, 008023, 008072, 012063, 008072, 012063, 008023, + 008072, 012063, 008072, 012063, 002150, 008023, 008072, 012063, 008072, 012063, + 202000, 201000 ] +"310014" = [ 301072, 303041, 304011 ] +"310015" = [ 301072, 007024, 010002, 303041, 101003, 304032, 002152, 002024, 007004, 007004, + 013003, 101003, 304033 ] +"310016" = [ 301072, 007024, 010002, 303041, 101012, 304032, 002152, 002024, 007004, 007004, + 013003, 101012, 304033 ] +"310018" = [ 001007, 005040, 004001, 004043, 004004, 004005, 004006, 207002, 026030, 207000, + 005002, 006002, 033072, 007025, 005022, 207002, 015001, 207000, 008003, 207001, + 010004, 207000, 008003, 008003, 033042, 207001, 007004, 207000, 207002, 015001, + 207000, 008003, 207002, 020081, 207000, 020065, 008029, 207004, 015030, 207000, + 008075 ] +"310019" = [ 001007, 002019, 301011, 301013, 301023, 007025, 008021, 007025, 008021, 007025, + 008021, 008029, 005040, 008075, 008003, 010004, 008003, 207002, 015001, 207000, + 033070, 015030, 207002, 020081, 207000, 008003, 033042, 007004, 207002, 015001, + 207000, 008003, 113021, 007004, 007004, 207002, 008021, 015005, 008021, 015005, + 033007, 207000, 008026, 101020, 025143, 008026, 008043, 109015, 007004, 008090, + 207006, 015008, 207000, 008090, 207002, 033007, 207000, 008043, 033071, 108008, + 202124, 201107, 002071, 201000, 202000, 207002, 020081, 207000 ] +"310020" = [ 310022, 301011, 301013, 301021, 304034, 310021 ] +"310021" = [ 108000, 031001, 201131, 202129, 007004, 007004, 202000, 201000, 015020, 010002 + ] +"310022" = [ 001007, 002019, 001033, 002172 ] +"310023" = [ 301072, 030021, 030022, 008012, 007024, 007025, 010002, 101012, 304032, 105002, + 002152, 002024, 007004, 007004, 013003, 101012, 304033 ] +"310024" = [ 301072, 030021, 030022, 008012, 007024, 007025, 010002, 101003, 304032, 105002, + 002152, 002024, 007004, 007004, 013003, 101003, 304033 ] +"310025" = [ 001007, 008021, 004001, 004002, 004003, 004004, 004005, 201138, 202131, 004006, + 202000, 201000, 201132, 005041, 201000, 201129, 005043, 201000, 005002, 006002, + 013040, 020029, 104024, 005042, 012163, 021083, 021084, 115003, 004001, 004002, + 004003, 201142, 202131, 004026, 202000, 201000, 005001, 006001, 201138, 202129, + 007001, 202000, 201000, 008021, 004001, 004002, 004003, 004004, 004005, 005040, + 101003, 012070, 025054, 101004, 025055, 008007, 104028, 005002, 006002, 002111, + 005021 ] +"310026" = [ 310022, 025060, 008021, 301011, 301012, 201138, 202131, 004006, 202000, 201000, + 033039, 033007, 304030, 304031, 002020, 001050, 202127, 304030, 202000, 304031, + 201133, 202131, 004016, 202000, 201000, 301021, 304030, 010035, 005021, 010036, + 113000, 031002, 301021, 005021, 108000, 031001, 002121, 007040, 015037, 008023, + 201125, 015037, 201000, 008023, 033007, 108000, 031002, 007007, 015036, 008023, + 201123, 015036, 201000, 008023, 033007, 116000, 031002, 007009, 010004, 012001, + 013001, 008023, 201120, 010004, 201000, 201122, 012001, 201000, 201123, 013001, + 201000, 008023, 033007, 008003, 007009, 010004, 008023, 201120, 010004, 201000, + 008023, 033007 ] +"310027" = [ 301071, 301011, 301013, 301021, 030021, 030022, 010002, 304036, 002152, 002167, + 101011, 304035 ] +"310028" = [ 301071, 301011, 301013, 301021, 030021, 030022, 010002, 304036, 002152, 002167, + 101011, 304037 ] +"310029" = [ 110000, 031001, 201138, 202130, 007004, 007004, 202000, 201000, 015020, 010002, + 012101, 013098 ] +"310030" = [ 310022, 301011, 301013, 301021, 304034, 310029 ] +"310050" = [ 310051, 310052, 101000, 031002, 310053, 101004, 310054, 020010, 310052, 101015, + 310053, 310052, 101005, 310053 ] +"310051" = [ 001007, 005040, 201133, 005041, 201000, 201132, 025070, 201000, 202126, 007001, + 202000, 007025, 005022, 102009, 002151, 012064 ] +"310052" = [ 002019, 301011, 301012, 202131, 201138, 004006, 201000, 202000, 301021, 007024, + 005021, 005043 ] +"310053" = [ 201134, 005042, 201000, 025076, 033032, 012163 ] +"310054" = [ 201134, 005042, 201000, 025076, 033032, 201131, 202129, 102002, 008023, 014027, + 008023, 202000, 201000 ] +"310055" = [ 310051, 310052, 102020, 025076, 025052, 101000, 031002, 025050 ] +"310060" = [ 001007, 001033, 002019, 002020, 301011, 301012, 207003, 004006, 207000, 304030, + 301021, 007024, 005021, 007025, 005022, 008075, 201133, 005041, 201000, 005045, + 005043, 005040, 010001, 201129, 007002, 201000, 202127, 201125, 021166, 201000, + 202000, 008012, 020010, 020014, 002165, 033075, 107003, 008076, 006029, 006029, + 025140, 025141, 033076, 033077, 008076, 033078, 033003, 104000, 031002, 201133, + 005042, 201000, 014044 ] +"310061" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 005041, 005043, 033079, 033080, 033078, 301021, 201129, 007002, 201000, + 007024, 005021, 007025, 005022, 025075, 111000, 031002, 005042, 202131, 002153, + 002154, 202000, 002104, 012066, 012163, 012158, 012159, 033081 ] +"310062" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 201133, 005041, 005043, 201000, 008076, 033082, 301021, 201129, 007002, + 201000, 007024, 005021, 007025, 005022, 008072, 008029, 105000, 031002, 005042, + 002155, 033083, 014043, 015042 ] +"310063" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 201133, 005041, 005043, 201000, 033082, 301021, 201129, 007002, 201000, + 007024, 005021, 007025, 005022, 008075, 008013, 008072, 033084, 007062, 033086, + 022043, 007062, 007062, 033086, 022043 ] +"310064" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 201133, 005041, 005043, 201000, 033082, 301021, 201129, 007002, 201000, + 007024, 005021, 007025, 005022, 008075, 008029, 008046, 033085, 033086, 015049, + 033086, 102011, 002155, 015062 ] +"310065" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 033082, 301021, 201129, 007002, 201000, 007024, 005021, 007025, 005022, + 008075, 033071, 033070, 020021, 015045, 015046, 008065, 033087, 008003, 010004, + 008003, 207002, 015001, 207000, 105012, 010040, 010004, 207003, 015005, 207000, + 008046, 107019, 010040, 010004, 008090, 207006, 015008, 207000, 008090 ] +"310066" = [ 001007, 001033, 001034, 002019, 002020, 301011, 301012, 207003, 004006, 207000, + 005040, 033082, 301021, 201129, 007002, 201000, 007024, 005021, 007025, 005022, + 008075, 020081, 207004, 015030, 207000, 020065, 015041, 033086, 033087, 033088, + 008003, 207001, 007004, 207000, 008003, 207002, 015001, 207000, 008003, 033042, + 207001, 007004, 207000, 207002, 015001, 207000, 008003, 001032, 207002, 015001, + 207000 ] +"310067" = [ 001033, 001034, 025061, 025062, 001007, 002153, 001012, 201138, 002026, 002027, + 201000, 002028, 002029, 002161, 002164, 002023, 008012, 008013, 001124, 005001, + 006001, 004001, 004002, 004003, 004004, 004005, 004006, 004086, 011001, 011002, + 011003, 011004, 002162, 007004, 012001, 020014, 007024, 001023, 104000, 031001, + 002162, 007004, 012001, 020014, 113000, 031001, 004086, 002020, 001007, 002019, + 005042, 002153, 005040, 007024, 005021, 002162, 007004, 012001, 020014, 119000, + 031001, 004086, 004086, 005001, 006001, 011003, 011004, 011113, 025148, 103000, + 031001, 008023, 011003, 011004, 008023, 103000, 031001, 020111, 020112, 020114, + 001033, 008021, 011095, 011096, 007004, 008021, 011095, 011096, 007004, 008021, + 008086, 011095, 011096, 007004, 008086, 102004, 001032, 033007, 008092, 011003, + 011004, 007004, 008092, 033066, 020081, 020012, 020056, 117000, 031001, 008023, + 020016, 008092, 008003, 012001, 008003, 020016, 008092, 025149, 020016, 020014, + 013093, 013109, 040038, 008011, 014050, 008011, 008023 ] +"310068" = [ 008070, 001033, 001034, 001007, 002019, 012064, 005040, 201136, 005041, 201000, + 005043, 301011, 301012, 201138, 202131, 004006, 202000, 201000, 005001, 006001, + 202126, 007001, 202000, 010007, 007024, 005021, 007025, 005022, 013040, 012101, + 201131, 202129, 011011, 202000, 201000, 201130, 202129, 011012, 202000, 201000, + 020029, 020010, 020014, 013162, 014050 ] +"310069" = [ 005042, 201139, 002155, 201000, 025077, 025078, 033007, 201132, 202129, 012063, + 202000, 201000 ] +"310070" = [ 310068, 101013, 310069 ] +"310071" = [ 310068, 101015, 310069 ] +"310072" = [ 310068, 101026, 310069 ] +"310077" = [ 001033, 001034, 025061, 025062, 001007, 002153, 001012, 201138, 002026, 002027, + 201000, 002028, 002029, 002161, 002164, 002023, 008012, 008013, 001124, 005001, + 006001, 004001, 004002, 004003, 004004, 004005, 004006, 004086, 002162, 007004, + 011001, 011002, 011003, 011004, 012001, 020014, 007024, 001023, 104000, 031001, + 002162, 007004, 012001, 020014, 113000, 031001, 004086, 002020, 001007, 002019, + 005042, 002153, 005040, 007024, 005021, 002162, 007004, 012001, 020014, 119000, + 031001, 004086, 004086, 005001, 006001, 011003, 011004, 011113, 025148, 103000, + 031001, 008023, 011003, 011004, 008023, 103000, 031001, 020111, 020112, 020114, + 001033, 008021, 007004, 011095, 011096, 008021, 007004, 011095, 011096, 008021, + 008086, 007004, 011095, 011096, 008086, 102004, 001044, 033007, 008092, 007004, + 011003, 011004, 008092, 033066, 020081, 020012, 020056, 117000, 031001, 008023, + 020016, 008092, 008003, 012001, 008003, 020016, 008092, 025149, 020016, 020014, + 013093, 013109, 040038, 008011, 014050, 008011, 008023 ] +"311001" = [ 301051, 007002, 012001, 011001, 011002, 011031, 011032, 011033, 020041 ] +"311002" = [ 301065, 301066, 311003, 311004 ] +"311003" = [ 010070, 011001, 011002, 012001, 013002 ] +"311004" = [ 101000, 031000, 011034, 101000, 031000, 011035, 101000, 031000, 011075, 101000, + 031000, 011076, 101000, 031000, 033025, 101000, 031000, 033026 ] +"311005" = [ 001008, 001023, 301021, 301011, 301013, 007010, 008009, 011001, 011002, 011031, + 011036, 012101, 033025 ] +"311006" = [ 007010, 011001, 011002, 002064, 012101, 012103 ] +"311007" = [ 007010, 301021, 011001, 011002, 002064, 012101, 012103 ] +"311008" = [ 001008, 301011, 301013, 301021, 008004, 101000, 031001, 311006 ] +"311009" = [ 001008, 301011, 301013, 301021, 008004, 101000, 031001, 311007 ] +"311010" = [ 001008, 001023, 001006, 001110, 001111, 001112, 204002, 031021, 301011, 301013, + 301021, 007010, 010053, 008009, 011001, 011002, 002064, 011100, 011101, 011102, + 011103, 011104, 012101, 002170, 201144, 202133, 013002, 202000, 201000, 201135, + 202130, 013003, 202000, 201000, 101000, 031000, 012103, 033026, 101000, 031000, + 020042, 103000, 031000, 020043, 020044, 020045, 101000, 031000, 033025, 103000, + 031001, 011075, 011076, 011039, 102000, 031000, 011037, 011077, 103000, 031000, + 011034, 011035, 011036, 204000, 119000, 031001, 301011, 301013, 301021, 007007, + 011105, 204007, 031021, 011076, 011075, 204000, 011106, 011107, 011108, 011109, + 012101, 011001, 201130, 011084, 201000 ] +"311011" = [ 001023, 008004, 301011, 301013, 005002, 006002, 007004, 011001, 011002, 012101, + 106000, 031001, 008046, 201139, 202126, 015026, 202000, 201000, 106000, 031001, + 008046, 201138, 202130, 015026, 202000, 201000, 015052, 015053, 015054, 015055, + 007004, 007004, 013099, 013100, 013101 ] +"311012" = [ 301150, 001008, 001111, 001112, 301011, 301013, 301021, 008004, 110000, 031002, + 301011, 301013, 311007, 201144, 202133, 013002, 202000, 201000, 013003, 033026 + ] +"312001" = [ 301043, 304001 ] +"312002" = [ 301043, 304002 ] +"312003" = [ 301042, 304003 ] +"312004" = [ 301042, 304004 ] +"312005" = [ 301042, 020014 ] +"312006" = [ 301044, 304005 ] +"312007" = [ 301042, 304006 ] +"312010" = [ 001007, 005040, 002021, 005041, 004001, 004043 ] +"312011" = [ 202131, 201149, 004006, 201000, 202126, 010002, 202000, 005043, 005053 ] +"312012" = [ 202129, 201132, 101019, 012063, 201000, 202000 ] +"312013" = [ 005042, 202129, 201135, 012063, 201000, 202000 ] +"312014" = [ 312010, 312011, 105056, 301023, 005042, 005052, 312012, 312013 ] +"312015" = [ 109011, 301023, 005042, 005052, 202129, 201132, 101004, 012063, 202000, 201000 + ] +"312016" = [ 312010, 312011, 312015 ] +"312017" = [ 109008, 301023, 005042, 005052, 202129, 201132, 101003, 012063, 202000, 201000 + ] +"312018" = [ 312010, 312011, 312017 ] +"312019" = [ 301047, 301048, 015015, 029002, 021076, 106012, 201129, 006030, 201000, 102012, + 005030, 021075, 021066 ] +"312020" = [ 301047, 301048, 015015, 029002, 021076, 104012, 006030, 102012, 005030, 021075, + 021066 ] +"312021" = [ 301047, 101003, 301049, 011012, 011011, 021067 ] +"312022" = [ 301047, 008022, 011012, 011050, 022070, 022026, 312041, 010050, 021068, 021071, + 021072, 021073, 312042, 021062, 015011 ] +"312023" = [ 301047, 103003, 008022, 012061, 022050, 021069, 021085 ] +"312024" = [ 312020, 008060, 008022, 008060, 008022, 025014, 022101, 022097, 022098, 022099, + 022100 ] +"312025" = [ 312019, 008060, 008022, 008060, 008022, 025014, 022101, 022097, 022098, 022099, + 022100 ] +"312026" = [ 301046, 301011, 301013, 301023, 312031, 101004, 312030, 021110, 301023, 321027, + 021111, 301023, 321027, 021112, 301023, 321027, 021113, 301023, 321027 ] +"312027" = [ 301047, 105009, 301023, 007021, 012061, 007021, 012061, 021085, 021070 ] +"312028" = [ 301046, 301011, 301013, 301023, 008025, 201136, 004006, 201000, 312031, 312032, + 101004, 312030, 101002, 312033, 021110, 301023, 321028, 021111, 301023, 321028, + 021112, 301023, 321028, 021113, 301023, 321028 ] +"312029" = [ 301046, 301011, 301013, 301023, 008025, 201136, 004006, 201000, 005034, 201129, + 006034, 201000, 033055, 011081, 011082, 021101, 021102, 021103, 312032, 101004, + 312030, 101002, 312033, 021110, 301023, 321028, 021111, 301023, 321028, 021112, + 301023, 321028, 021113, 301023, 321028 ] +"312030" = [ 201130, 202129, 011012, 202000, 201000, 011052, 201135, 202130, 011011, 202000, + 201000, 011053, 021104 ] +"312031" = [ 005034, 006034, 021109, 011081, 011082, 021101, 021102, 021103 ] +"312032" = [ 021120, 021121, 013055, 021122 ] +"312033" = [ 002104, 008022, 012063, 012065 ] +"312034" = [ 301046, 301011, 301013, 301023, 008025, 201136, 004006, 201000, 312031, 312032, + 101004, 312030, 101002, 312033, 103018, 021110, 301023, 321028 ] +"312035" = [ 001007, 001031, 002048, 202124, 002026, 002027, 202000, 005040, 004001, 004002, + 004003, 004004, 004005, 004006, 005002, 006002, 005034, 006031, 201129, 006034, + 201000, 005021, 002111, 012063, 021095, 021096, 021097, 021030, 021105, 033056 + ] +"312041" = [ 201141, 202130, 007001, 201000, 202000 ] +"312042" = [ 021077, 021078, 021079, 021080, 021081, 021082 ] +"312045" = [ 001007, 002019, 001096, 025061, 005040, 301011, 301013, 301021, 007002, 012180, + 012181, 012182, 012183, 012184, 012185, 002174, 021086, 012186, 021087, 012187, + 033043 ] +"312050" = [ 001007, 002019, 001096, 025061, 005040, 301011, 301013, 301021, 007025, 005022, + 010080, 027080, 008003, 007004, 013093, 008003, 201131, 202129, 007004, 007004, + 202000, 201000, 013095 ] +"312051" = [ 001007, 002019, 001096, 025061, 005040, 008075, 301011, 301013, 301021, 001012, + 201131, 001013, 201000, 010032, 010033, 010034, 007002, 008012, 025110, 025111, + 025102, 002104, 025103, 025104, 025105, 025106, 025107, 025108, 002111, 002121, + 002026, 002027, 021130, 021131, 021132, 021133, 021064, 025014, 021134, 107018, + 005030, 105024, 201130, 006030, 201000, 021135, 021136, 033044 ] +"312052" = [ 001007, 002019, 001096, 025061, 005040, 025120, 025121, 025124, 025125, 025122, + 025123, 301011, 301013, 301021, 007002, 002119, 033047, 010081, 010082, 010083, + 010084, 002116, 002117, 002118, 002156, 002157, 014055, 022150, 022151, 022152, + 022153, 022154, 022155, 022156, 022157, 022158, 022159, 021137, 021138, 021139, + 021140, 021141, 021142, 010085, 010086, 010087, 010088, 010089, 010090, 010091, + 010092, 010093, 011002, 025126, 025127, 025128, 025129, 025130, 025131, 025132, + 025133, 025134, 025135, 025136, 025137, 013096, 013097, 011095, 011096, 012188, + 012189, 002158, 002159, 033052, 033053, 021143, 021144 ] +"312053" = [ 001007, 002019, 001096, 025061, 005040, 008075, 301011, 301013, 301021, 001012, + 201131, 001013, 201000, 010032, 010033, 010034, 007002, 008012, 025110, 025111, + 025102, 002104, 025103, 025104, 025105, 025106, 025107, 025108, 011001, 011002, + 022160, 025138, 201130, 202129, 022021, 202000, 201000, 033048, 033049, 002026, + 002027, 021130, 021131, 021132, 021133, 025014, 106036, 005030, 104024, 201130, + 006030, 201000, 022161, 033044 ] +"312055" = [ 005033, 005040, 006034, 010095, 021157 ] +"312056" = [ 025060, 001032, 011082, 011081, 020095, 020096, 021155, 201133, 021101, 021102, + 201000 ] +"312057" = [ 201130, 202129, 011012, 202000, 201000, 201131, 202129, 011011, 202000, 201000, + 021156, 021104 ] +"312058" = [ 301125, 301011, 301013, 301021, 312055, 021150, 101003, 321030 ] +"312059" = [ 312056, 101000, 031001, 312057 ] +"312060" = [ 025060, 025062, 040001, 040002, 021062, 021151, 021152, 021153, 021154, 021062, + 021088, 040003, 040004, 040005, 040006, 040007, 020065, 040008, 040009, 040010 + ] +"312061" = [ 312058, 312060, 312059 ] +"312070" = [ 001007, 002019, 001144, 001124, 030010, 301011, 301013, 301021, 007012, 015012, + 012165, 012166, 012167, 012168, 027010, 028010, 002099, 013048, 025081, 025082, + 025083, 025084, 012080, 012081, 012082, 025174, 033028 ] +"312071" = [ 001007, 002019, 002139, 001096, 001040, 025061, 005040, 005044, 008075, 008077, + 004001, 004002, 004003, 004004, 004005, 004006, 005001, 006001, 010081, 022156, + 022142, 101020, 022149, 022143, 022144, 021137, 101020, 021181, 021138, 021180, + 021177, 021178, 021179, 010079, 010085, 010086, 010087, 010089, 010090, 010091, + 010092, 010093, 011097, 021093, 101020, 021182, 033053, 022151, 022145, 022148, + 022146, 022147, 025126, 025128, 025127, 021176, 025132, 025133, 025182, 025183, + 025180, 025184, 025181, 033080 ] +"313009" = [ 021001, 101000, 031001, 021001 ] +"313010" = [ 021036, 101000, 031001, 021036 ] +"313031" = [ 006002, 006012, 101000, 031002, 030001 ] +"313032" = [ 005002, 005012, 101000, 031002, 313031 ] +"313041" = [ 006002, 110000, 031001, 104000, 031001, 006012, 101000, 031012, 030001, 006012, + 101000, 031001, 030001 ] +"313042" = [ 005002, 005012, 101000, 031002, 313041 ] +"313043" = [ 006002, 005002, 005012, 112000, 031001, 110000, 031001, 104000, 031001, 006012, + 101000, 031011, 030001, 006012, 101000, 031001, 030001 ] +"315001" = [ 001011, 301011, 301012, 301023, 306001 ] +"315002" = [ 001011, 301011, 301012, 301023, 306004 ] +"315003" = [ 001087, 001085, 001086, 002036, 002148, 002149, 022055, 022056, 022067, 301011, + 301012, 301021, 008080, 033050, 109000, 031002, 007065, 008080, 033050, 022045, + 008080, 033050, 022064, 008080, 033050 ] +"315004" = [ 001079, 001011, 001103, 001087, 001019, 001080, 005036, 001036, 001013, 001012, + 301011, 301012, 301021, 007032, 007033, 002002, 011002, 011001, 007032, 007033, + 012101, 012103, 007032, 007033, 302021, 002031, 002030, 022005, 022032, 022063, + 008080, 033050, 022178, 022177, 022067, 008041, 026021, 026022, 026023, 022068, + 025061, 008041, 008080, 002171, 302090, 002171, 002032, 315005 ] +"315005" = [ 106000, 031002, 007063, 008080, 033050, 022043, 008080, 033050 ] +"315007" = [ 301003, 001019, 001103, 001087, 001036, 001115, 001080, 005036, 301011, 301012, + 301021, 001079, 001023, 022063, 101000, 031000, 302001, 101000, 031000, 302021, + 101000, 031000, 302052, 101000, 031000, 302059, 022067, 002171, 302090, 306033, + 306034, 002171, 022067, 002038, 022067, 022068, 002171, 002033, 002032, 022056, + 003011, 306035, 107000, 031000, 002032, 003010, 002031, 002040, 022056, 003011, + 306036, 104000, 031000, 002032, 003012, 003011, 306037 ] +"315008" = [ 301126, 306038, 101000, 031000, 302091, 101000, 031000, 302082, 101000, 031000, + 306039, 101000, 031000, 306040, 102000, 031000, 002005, 306041, 102000, 031000, + 002005, 306004, 101000, 031000, 306005 ] +"315009" = [ 001087, 001019, 002149, 008021, 301011, 301012, 301021, 208016, 001051, 208000, + 002148, 001012, 001014, 033022, 033023, 033027, 025026, 002034, 022060, 007070, + 002190, 008021, 301011, 301012, 002005, 022043, 002033, 022059, 008029, 013115, + 103000, 031000, 002005, 306004, 002005, 010004, 010051, 102000, 031000, 007033, + 012101, 101000, 031000, 306042, 101000, 031000, 306039 ] +"315010" = [ 112000, 031001, 201144, 202133, 022080, 022096, 022069, 202000, 201000, 042011, + 042012, 042013, 042014, 042015 ] +"315011" = [ 301150, 001087, 001036, 001085, 001086, 003001, 208032, 001079, 208000, 301011, + 301012, 301021, 001012, 001014, 011104, 103000, 031000, 007031, 306038, 012161, + 101000, 031000, 306034, 101000, 031000, 306039, 101000, 031000, 306033, 101000, + 031000, 306041, 101000, 031000, 306004, 101000, 031000, 306005, 105000, 031000, + 041001, 008043, 015028, 008043, 013080, 104000, 031000, 041005, 041003, 022188, + 041002, 101000, 031000, 306040, 104000, 031000, 008021, 004025, 014017, 014018 + ] +"315013" = [ 301150, 001087, 208032, 001019, 208000, 003001, 022067, 001051, 002148, 112000, + 031001, 008021, 301011, 301012, 301021, 001012, 001014, 033022, 033023, 033027, + 007063, 022045, 008021, 107000, 031001, 301011, 301012, 301021, 001079, 001023, + 022056, 306035 ] +"316001" = [ 301011, 004004, 301023, 001021, 002041, 019001, 010051, 019002, 019003, 019004 + ] +"316002" = [ 008021, 004001, 004002, 004003, 004004, 004005, 001033, 008021, 004001, 004002, + 004003, 004004, 004005, 007002, 007002 ] +"316003" = [ 110000, 031001, 008011, 008007, 104000, 031001, 005002, 006002, 010002, 011002, + 008007, 008011 ] +"316004" = [ 111000, 031001, 008011, 008007, 007002, 007002, 102000, 031001, 005002, 006002, + 011031, 008007, 008011 ] +"316005" = [ 108000, 031001, 008005, 008007, 005002, 006002, 001026, 019001, 008007, 008005 + ] +"316006" = [ 112000, 031001, 008011, 008007, 007002, 007002, 102000, 031001, 005002, 006002, + 020011, 020012, 008007, 008011 ] +"316007" = [ 110000, 031001, 008011, 008007, 104000, 031001, 005002, 006002, 019005, 019006, + 008007, 008011 ] +"316008" = [ 111000, 031001, 008001, 008007, 008023, 103000, 031001, 005002, 006002, 010002, + 008023, 008007, 008001 ] +"316009" = [ 111000, 031001, 008011, 008007, 007002, 007002, 102000, 031001, 005002, 006002, + 020041, 008007, 008011 ] +"316010" = [ 107000, 031001, 008011, 008007, 001022, 005002, 006002, 008007, 008011 ] +"316011" = [ 117000, 031001, 008011, 001022, 008007, 102000, 031001, 005002, 006002, 008021, + 004001, 004002, 004003, 004004, 004005, 020090, 008021, 008007, 008011 ] +"316020" = [ 001033, 001025, 001027, 301011, 301012 ] +"316021" = [ 301023, 002041, 019001, 019007, 019005, 019006, 019008, 008005, 010004, 008005, + 010004, 019007, 008005, 008021, 004075, 011040, 019007, 105004, 005021, 005021, + 102002, 019003, 019004 ] +"316022" = [ 001032, 002041, 019001, 019010, 118000, 031001, 008021, 004014, 008005, 301023, + 019005, 019006, 010004, 011041, 008021, 004075, 011040, 019008, 105004, 005021, + 005021, 102002, 019003, 019004 ] +"316026" = [ 316020, 316021 ] +"316027" = [ 316020, 316022 ] +"316030" = [ 301014, 001037, 010064, 008019, 001062, 008019, 001065, 008019, 001062, 008019 + ] +"316031" = [ 008021, 301011, 301012, 301027, 019005, 019006, 020028, 008021 ] +"316032" = [ 008021, 301011, 301012, 301027, 008021 ] +"316033" = [ 008021, 301011, 301012, 101000, 031001, 301027, 008021 ] +"316034" = [ 008079, 316030, 008011, 001022, 008007, 301023, 008007, 020090, 316031, 101000, + 031000, 316032, 101000, 031001, 316033, 008011, 008079 ] +"316035" = [ 008079, 316030, 008011, 020023, 020021, 020008, 316031, 008011, 008079 ] +"316036" = [ 008079, 316030, 008011, 001027, 316031, 101000, 031000, 316032, 101000, 031001, + 316033, 008011, 008079 ] +"316037" = [ 008079, 316030, 008011, 011031, 316031, 008011, 008079 ] +"316038" = [ 008079, 316030, 008011, 020041, 020021, 316031, 008011, 008079 ] +"316039" = [ 008079, 316030, 008011, 020024, 316031, 008011, 008079 ] +"316040" = [ 316030, 008079, 301014, 001037, 010064, 008079 ] +"316050" = [ 301001, 301011, 301012, 002160, 008005, 005002, 006002, 008005, 019100, 019005, + 019006, 019101, 019102, 019103, 019104, 019105 ] +"316052" = [ 301005, 301011, 301012, 001007, 025150, 122000, 031001, 001027, 019150, 019106, + 008005, 005002, 006002, 008005, 019107, 019005, 019006, 019108, 019109, 019110, + 019111, 019112, 019113, 019114, 019115, 019116, 019117, 019118, 019119 ] +"316060" = [ 301011, 301012, 005002, 006002, 019005, 019006, 005002, 006002, 005002, 006002, + 004074, 020048, 011041, 013055 ] +"316061" = [ 301011, 301012, 005002, 006002, 019005, 019006, 102000, 031001, 005002, 006002, + 102000, 031001, 005002, 006002, 004074, 020048, 011041, 013055 ] +"316071" = [ 301014, 101000, 031002, 316075, 101000, 031002, 316076 ] +"316072" = [ 301014, 101000, 031002, 316077, 101000, 031002, 316078, 101000, 031002, 316079 + ] +"316073" = [ 301014, 101000, 031002, 316080, 101000, 031002, 316081 ] +"316074" = [ 001039, 008021, 301014, 301027, 008021 ] +"316075" = [ 008079, 008041, 316074, 020006, 033042, 020013, 033042, 020001, 020025, 020026, + 008041, 008079 ] +"316076" = [ 008079, 008041, 316074, 020006, 020025, 020026, 008041, 008079 ] +"316077" = [ 008079, 008011, 316074, 011031, 008011, 008079 ] +"316078" = [ 008079, 008041, 316074, 033042, 011012, 008041, 008079 ] +"316079" = [ 008079, 008011, 316074, 020023, 020024, 008011, 008079 ] +"316080" = [ 008079, 008011, 316074, 020041, 008011, 008079 ] +"316081" = [ 008079, 008041, 316074, 008041, 008079 ] +"316082" = [ 001033, 001034, 001032, 001025, 001027, 001090, 001091, 001092, 301011, 301012, + 008005, 301023, 008005, 301023, 010051, 008005, 301023, 011012, 107003, 019003, + 105004, 005021, 005021, 201131, 019004, 201000, 116000, 031001, 008021, 004024, + 008005, 301023, 010051, 008005, 301023, 011012, 107003, 019003, 105004, 005021, + 005021, 201131, 019004, 201000 ] +"318001" = [ 301025, 024011 ] +"318003" = [ 301026, 024005, 024004, 024021 ] +"318004" = [ 301025, 004023, 013011, 024005, 024004, 024022 ] +"321001" = [ 002101, 002114, 002105, 002106, 002107, 002121 ] +"321003" = [ 021051, 021014, 021017, 021030 ] +"321004" = [ 301031, 002003, 101000, 031001, 321003 ] +"321005" = [ 025004, 002121, 002122, 002123, 002124, 002125, 002126, 002127, 002128, 002129, + 002130, 002131 ] +"321006" = [ 025001, 025002, 025003, 025005 ] +"321007" = [ 025009, 025010, 025011, 025012, 025013, 025015, 025016, 025017 ] +"321008" = [ 025006, 025007, 025008 ] +"321009" = [ 025018, 025019 ] +"321010" = [ 002101, 007002, 002102, 002103, 002104, 002105, 002106, 002107, 002108, 002109, + 002110, 002132, 002133 ] +"321011" = [ 030031, 030032, 029002 ] +"321012" = [ 101000, 031001, 002135 ] +"321021" = [ 002003, 002101, 201130, 002106, 201000, 201132, 202130, 002121, 202000, 201000, + 201133, 202129, 025001, 202000, 201000 ] +"321022" = [ 007007, 204001, 031021, 011001, 204000, 011002, 204001, 031021, 011006, 204000, + 021030 ] +"321023" = [ 007007, 021091, 021030, 202129, 021014, 201129, 021017, 202000, 201000 ] +"321024" = [ 007007, 204001, 031021, 012007, 011006, 204000, 021030 ] +"321025" = [ 007007, 021091, 021030, 202129, 021014, 201129, 021017, 202000, 201000, 021092, + 021030, 025092, 201129, 202129, 021017, 202000, 201000 ] +"321026" = [ 007007, 204001, 031021, 012007, 025091, 011071, 011072, 011073, 011074, 204000 + ] +"321027" = [ 021118, 202129, 201132, 002112, 201000, 201131, 002111, 201000, 202000, 002104, + 021105, 021106, 021107, 021114, 021115, 021116, 008018, 021117 ] +"321028" = [ 021118, 202129, 201132, 002112, 201000, 201131, 002111, 201000, 202000, 002104, + 021123, 021106, 021107, 021114, 021115, 021116, 008018, 021117 ] +"321030" = [ 008085, 202129, 201131, 002111, 201000, 202000, 002134, 021062, 021063, 021158, + 021159, 021160, 021161, 021162, 021163, 021164, 021165, 021166 ] +"322028" = [ 001007, 002019, 004001, 004002, 004003, 004004, 004005, 004006, 005001, 006001, + 027001, 028001, 027001, 028001, 027001, 028001, 027001, 028001, 010001, 014019, + 007025, 010080, 005023, 020010, 008003, 007004, 014026, 020014, 013093, 105000, + 031001, 007004, 007004, 008043, 008044, 015021 ] +"340001" = [ 001007, 001031, 002019, 002020, 004001, 004002, 004003, 004004, 004005, 202131, + 201138, 004006, 201000, 202000, 005001, 006001, 007024, 005021, 007025, 005022, + 005043, 005040, 201133, 005041, 201000, 201132, 025070, 201000, 202126, 007001, + 202000, 033060, 033061, 033062, 033063, 033064, 033065, 101010, 340002, 101087, + 340003, 002019, 025051, 101007, 340004 ] +"340002" = [ 025140, 025141, 025142 ] +"340003" = [ 104100, 201136, 005042, 201000, 014046 ] +"340004" = [ 005060, 005061, 025085, 105006, 005042, 025142, 014047, 025142, 014048 ] +"340005" = [ 001007, 002019, 001096, 025061, 005044, 005040, 001030, 004001, 004002, 004003, + 004004, 004005, 004007, 005001, 006001, 008029, 008074, 008077, 040011, 025097, + 025095, 025098, 025099, 021144, 025096, 040012, 040013, 021169, 022151, 022162, + 022163, 025160, 025133, 022156, 022164, 022165, 022166, 021137, 021138, 022167, + 021139, 021118, 021145, 021146, 021147, 022168, 022169, 022170, 025161, 025162, + 022171, 022172, 022173, 022174, 021170, 021171, 022175, 021172, 021118, 021173, + 021174, 021175, 002153, 012063, 002153, 012063, 002153, 012063, 013090, 013091, + 007002, 011097, 011098, 007002, 011095, 011096, 010096, 010081, 010082, 010083, + 010101, 025132, 025163, 025126, 025128, 025164, 010085, 010097, 010086, 010087, + 010092, 010088, 010089, 010098, 010099, 010090, 010100, 010093, 025127, 040014 + ] +"340007" = [ 001007, 001031, 002019, 002020, 004001, 004002, 004003, 004004, 004005, 202131, + 201138, 004006, 201000, 202000, 005001, 006001, 007024, 005021, 007025, 005022, + 005043, 005040, 201133, 005041, 201000, 201132, 025070, 201000, 202126, 007001, + 202000, 103003, 025140, 025141, 033060, 033061, 033062, 033063, 033064, 033065, + 040020, 101010, 340002, 101087, 340003, 002019, 025051, 101007, 340004, 020081, + 008029, 020083, 008029, 040018, 040019, 040021, 040022 ] +"340008" = [ 001007, 001031, 002019, 002020, 004001, 004002, 004003, 004004, 004005, 202131, + 201138, 004006, 201000, 202000, 005001, 006001, 007024, 005021, 007025, 005022, + 005043, 005040, 201133, 005041, 201000, 201132, 025070, 201000, 202126, 007001, + 202000, 103003, 025140, 025141, 033060, 033061, 033062, 033063, 033064, 033065, + 040020, 101010, 340002, 104000, 031002, 201136, 005042, 201000, 014046, 108003, + 025140, 025141, 040026, 040016, 025062, 101000, 031002, 040017, 002019, 025051, + 101007, 340004, 020081, 008029, 020083, 008029, 040018, 040019, 040021, 040022 + ] +"340009" = [ 001007, 001031, 002019, 002020, 301011, 301013, 005040, 201136, 005041, 201000, + 025071, 005001, 005001, 006001, 006001, 107064, 106032, 008012, 008013, 008065, + 008072, 013039, 040015 ] +"340010" = [ 001007, 002019, 001096, 025061, 005044, 005040, 001030, 004001, 004002, 004003, + 004004, 004005, 004007, 005001, 006001, 008029, 008074, 008077, 040011, 025097, + 025095, 025098, 025099, 021144, 025096, 040012, 040013, 021169, 040023, 040024, + 040025, 022151, 022162, 022163, 025160, 025133, 022156, 022164, 022165, 022166, + 021137, 021138, 022167, 021139, 021118, 021145, 021146, 021147, 022168, 022169, + 022170, 025161, 025162, 022171, 022172, 022173, 022174, 021170, 021171, 022175, + 021172, 021118, 021173, 021174, 021175, 002153, 012063, 002153, 012063, 002153, + 012063, 013090, 013091, 007002, 011097, 011098, 007002, 011095, 011096, 010096, + 010081, 010082, 010083, 010101, 025132, 025163, 025126, 025128, 025164, 010085, + 010097, 010086, 010087, 010092, 010088, 010089, 010098, 010099, 010090, 010100, + 010093, 025127, 040014, 010102 ] +"340011" = [ 001007, 002019, 001096, 025061, 005044, 005040, 001030, 004001, 004002, 004003, + 004004, 004005, 004007, 005001, 006001, 008029, 008077, 040011, 025097, 025112, + 025113, 021148, 021169, 040024, 040025, 002153, 022189, 022191, 022130, 025167, + 025166, 022190, 022131, 022132, 022133, 021183, 021184, 022134, 021185, 021118, + 021186, 021187, 021188, 002153, 012063, 002153, 012063, 013090, 013160, 007002, + 011097, 007002, 011095, 011096, 010096, 010081, 010082, 010083, 010101, 002153, + 025165, 025126, 025128, 025164, 010085, 010086, 010087, 010092, 010088, 010089, + 010098, 010099, 010090, 010100, 010093, 025127, 040014, 010102 ] +"340012" = [ 001007, 002019, 008091, 005001, 006001, 007002, 005063, 005064, 005066, 005041, + 005067, 301011, 301012, 004007, 008091, 005001, 006001, 107000, 031001, 005042, + 002153, 002104, 040028, 007024, 040027, 012063 ] +"340013" = [ 001007, 002019, 001033, 001034, 004001, 004002, 004003, 004004, 004005, 004007, + 005068, 005070, 005069, 040036, 008091, 005001, 006001, 004016, 008091, 005001, + 006001, 004016, 008091, 005001, 006001, 004016, 008091, 007071, 005021, 007021, + 040035, 008091, 007071, 005021, 007021, 040035, 008091, 007071, 005021, 007021, + 040035, 040029, 040030, 040031, 025187, 010004, 012001, 040037, 040032, 040033, + 040034 ] +"340015" = [ 001007, 002019, 301011, 301012, 004007, 201133, 005041, 201000, 201130, 005043, + 201000, 207001, 005002, 006002, 207000, 040027, 013040, 021120, 207003, 102003, + 002186, 013155, 207000, 033003 ] +"340016" = [ 301129, 301130, 301131, 202134, 007001, 202000, 101000, 031002, 340002, 101000, + 031002, 304039, 101000, 031002, 304040 ] +"340017" = [ 001007, 002019, 005044, 001096, 005040, 001040, 025061, 025182, 025183, 025181, + 025184, 301011, 301013, 004007, 301021, 005063, 005064, 005066, 010081, 010082, + 008075, 025090, 008029, 201137, 202129, 006021, 202000, 201000, 010087, 025096, + 040012, 008077, 104002, 002153, 012063, 012065, 040013, 007002, 011098, 013090, + 013091, 025164, 025095, 040023, 025113, 008074, 025190, 021144, 025191, 021143, + 013055, 021169, 010101, 015012, 007002, 011097, 040024, 007002, 025126, 025128, + 040011, 007002, 011095, 011096, 010088, 010089, 010090, 010092, 010093, 010098, + 010099, 010100, 025127, 040014, 010085, 010086, 010096, 010103, 010102, 022080, + 008076, 022189, 022191, 022130, 025165, 025166, 025167, 021183, 021184, 022134, + 021122, 022190, 022131, 022132, 022133, 021186, 021187, 021188, 021185, 025112, + 025113, 033092, 008076, 022189, 022191, 022130, 025165, 025166, 025167, 021183, + 021184, 022134, 021122, 022190, 022131, 022132, 022133, 021186, 021187, 021188, + 021185, 025112, 025113, 033092, 025190, 011097, 013090, 013091, 021143, 021184, + 025128, 025163, 025164, 010102, 022189, 022191, 022130, 025166, 021183, 021184, + 022134, 022190, 022131, 022132, 025112, 025113, 033092, 008049, 022080, 134021, + 301011, 301013, 004007, 301021, 010081, 010082, 008029, 201137, 202129, 006021, + 202000, 201000, 025191, 021071, 010085, 040011, 010102, 022189, 022146, 025165, + 025167, 021183, 022190, 022133, 021177, 021185, 013164, 202126, 022046, 202000, + 013117, 013013, 025112, 033092 ] +"340018" = [ 301129, 301130, 301131, 007072, 040074, 104000, 031002, 201136, 005042, 201000, + 014044 ] +"340019" = [ 340020, 340021, 340022, 340023 ] +"340020" = [ 001007, 002019, 005044, 001096, 005040, 001040, 025061, 025182, 025183, 025181, + 025184, 008075, 025090, 301011, 301013, 004007, 301021, 005063, 005064, 005066, + 010081, 010082 ] +"340021" = [ 040012, 008077, 104000, 031001, 002153, 012063, 012065, 040013, 007002, 011098 + ] +"340022" = [ 008029, 201137, 202129, 006021, 202000, 201000, 010087, 040024, 007002, 025126, + 025128, 040011, 007002, 011095, 011096, 010088, 010089, 010090, 010092, 010093, + 010098, 010099, 010100, 025127, 040014, 001030, 010085, 001030, 010085, 010086, + 010096, 010103, 021169, 013055, 025165 ] +"340023" = [ 025095, 040023, 008074, 340024, 340024, 340024, 340025 ] +"340024" = [ 022080, 008076, 025190, 010102, 022189, 022191, 022130, 025167, 025163, 015012, + 025164, 013090, 013091, 025166, 007002, 011097, 021183, 021184, 022134, 021122, + 021186, 021187, 021188, 201131, 021185, 201000, 022179, 022131, 022132, 022133, + 021144, 025191, 021143, 010101, 025112, 025113, 033092 ] +"340025" = [ 008049, 022080, 008076, 025190, 146021, 301011, 301013, 004007, 301021, 010081, + 010082, 008029, 201137, 202129, 006021, 202000, 201000, 025191, 021071, 001030, + 010085, 001030, 010085, 040011, 010088, 010089, 025164, 007002, 025126, 025128, + 010102, 022189, 025167, 025163, 021183, 201131, 021185, 201000, 022179, 022133, + 022146, 021189, 013163, 202126, 022046, 202000, 013117, 013013, 025112, 025113, + 033092 ] From e8bf0aa855ec86a72cb0dfe402e5c3dcc720ff14 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 21 Jun 2021 15:24:06 +0100 Subject: [PATCH 526/683] Testing: Fix clang address sanitizer errors --- src/grib_accessor_class_g1end_of_interval_monthly.c | 2 ++ tests/grib_local.sh | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/grib_accessor_class_g1end_of_interval_monthly.c b/src/grib_accessor_class_g1end_of_interval_monthly.c index 5efb065eb..cedd9341a 100644 --- a/src/grib_accessor_class_g1end_of_interval_monthly.c +++ b/src/grib_accessor_class_g1end_of_interval_monthly.c @@ -167,6 +167,8 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) if (!a->dirty) return GRIB_SUCCESS; + DebugAssert(*len == self->number_of_elements); + if ((ret = grib_get_string(grib_handle_of_accessor(a), self->verifyingMonth, verifyingMonth, &slen)) != GRIB_SUCCESS) return ret; diff --git a/tests/grib_local.sh b/tests/grib_local.sh index 72de8c4a1..6c5ceda98 100755 --- a/tests/grib_local.sh +++ b/tests/grib_local.sh @@ -124,10 +124,10 @@ grib_check_key_equals $temp 'mars.origin:s' 'lops' # Extra key in Local Definition 16 for GRIB1. ECC-679 # ---------------------------------------------------- ${tools_dir}/grib_set -s \ - setLocalDefinition=1,localDefinitionNumber=16,numberOfForecastsInEnsemble=51,verifyingMonth=11 \ + setLocalDefinition=1,localDefinitionNumber=16,numberOfForecastsInEnsemble=51,verifyingMonth=11 \ $sample_g1 $temp -grib_check_key_equals $temp 'totalNumber,endOfInterval' '51 0' - +grib_check_key_equals $temp 'totalNumber' '51' +grib_check_key_equals $temp 'yearOfEndOfOverallTimeInterval,monthOfEndOfOverallTimeInterval,dayOfEndOfOverallTimeInterval' '0 11 30' # Local Definition 49 for GRIB1 # ----------------------------- From 82650ee9fef1cf63b9f992ea7c6526efdac82edf Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 21 Jun 2021 16:40:07 +0100 Subject: [PATCH 527/683] Check incoming value size --- src/grib_accessor_class_g1end_of_interval_monthly.c | 3 ++- src/grib_accessor_class_statistics.c | 3 +++ src/grib_accessor_class_statistics_spectral.c | 3 +++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/grib_accessor_class_g1end_of_interval_monthly.c b/src/grib_accessor_class_g1end_of_interval_monthly.c index cedd9341a..e4aadbc44 100644 --- a/src/grib_accessor_class_g1end_of_interval_monthly.c +++ b/src/grib_accessor_class_g1end_of_interval_monthly.c @@ -167,7 +167,8 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) if (!a->dirty) return GRIB_SUCCESS; - DebugAssert(*len == self->number_of_elements); + if (*len != self->number_of_elements) + return GRIB_ARRAY_TOO_SMALL; if ((ret = grib_get_string(grib_handle_of_accessor(a), self->verifyingMonth, verifyingMonth, &slen)) != GRIB_SUCCESS) return ret; diff --git a/src/grib_accessor_class_statistics.c b/src/grib_accessor_class_statistics.c index 3f523dd60..e9ce50b23 100644 --- a/src/grib_accessor_class_statistics.c +++ b/src/grib_accessor_class_statistics.c @@ -179,6 +179,9 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) if (!a->dirty) return GRIB_SUCCESS; + if (*len != self->number_of_elements) + return GRIB_ARRAY_TOO_SMALL; + if ((ret = grib_get_size(h, self->values, &size)) != GRIB_SUCCESS) return ret; diff --git a/src/grib_accessor_class_statistics_spectral.c b/src/grib_accessor_class_statistics_spectral.c index 13f2c2ca5..0d6a61edd 100644 --- a/src/grib_accessor_class_statistics_spectral.c +++ b/src/grib_accessor_class_statistics_spectral.c @@ -185,6 +185,9 @@ static int unpack_double(grib_accessor* a, double* val, size_t* len) if (!a->dirty) return GRIB_SUCCESS; + if (*len != self->number_of_elements) + return GRIB_ARRAY_TOO_SMALL; + if ((ret = grib_get_size(h, self->values, &size)) != GRIB_SUCCESS) return ret; From 0e89d1730c34535f5252ecdf954e607b8cbc2191 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 21 Jun 2021 17:11:59 +0100 Subject: [PATCH 528/683] Cosmetics --- src/action_class_remove.c | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/action_class_remove.c b/src/action_class_remove.c index 001442e4c..5f2e57120 100644 --- a/src/action_class_remove.c +++ b/src/action_class_remove.c @@ -102,7 +102,7 @@ static void remove_accessor(grib_accessor* a) s = a->parent; if (grib_handle_of_accessor(a)->use_trie && *(a->all_names[0]) != '_') { - id = grib_hash_keys_get_id(a->context->keys, a->all_names[0]); + id = grib_hash_keys_get_id(a->context->keys, a->all_names[0]); grib_handle_of_accessor(a)->accessors[id] = NULL; } @@ -122,18 +122,15 @@ static int create_accessor(grib_section* p, grib_action* act, grib_loader* h) { grib_action_remove* a = (grib_action_remove*)act; - grib_accessor* ga = NULL; - ga = grib_find_accessor(p->h, grib_arguments_get_name(p->h, a->args, 0)); - if (ga) + if (ga) { remove_accessor(ga); - - - else { - grib_context_log(act->context, GRIB_LOG_DEBUG, "Action_class_remove : create_accessor_buffer : No accessor named %s to remove ", grib_arguments_get_name(p->h, a->args, 0)); + } else { + grib_context_log(act->context, GRIB_LOG_DEBUG, + "Action_class_remove : create_accessor_buffer : No accessor named %s to remove ", grib_arguments_get_name(p->h, a->args, 0)); } return GRIB_SUCCESS; } From 72c38d59b99718aa2b0186bc5e12f6539b1636de Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 22 Jun 2021 11:46:19 +0100 Subject: [PATCH 529/683] ECC-1255: GRIB2: Key 'is_efas' has two elements rather than just one --- definitions/grib2/local.98.41.def | 1 + definitions/grib2/template.4.reforecast.def | 1 + src/action_class_remove.c | 2 +- tests/CMakeLists.txt | 1 + tests/grib_ecc-1255.sh | 42 +++++++++++++++++++++ 5 files changed, 46 insertions(+), 1 deletion(-) create mode 100755 tests/grib_ecc-1255.sh diff --git a/definitions/grib2/local.98.41.def b/definitions/grib2/local.98.41.def index b15b31cb1..48df66e8b 100644 --- a/definitions/grib2/local.98.41.def +++ b/definitions/grib2/local.98.41.def @@ -35,6 +35,7 @@ unsigned[2] anoffsetLast = missing(): dump, can_be_missing; unsigned[2] anoffsetFrequency = missing(): dump, can_be_missing; # Boolean +remove is_efas; transient is_efas = 1; transient lsdate_bug = 1: hidden; # See ECC-707 diff --git a/definitions/grib2/template.4.reforecast.def b/definitions/grib2/template.4.reforecast.def index 53bdf4351..f415ce80a 100644 --- a/definitions/grib2/template.4.reforecast.def +++ b/definitions/grib2/template.4.reforecast.def @@ -11,4 +11,5 @@ unsigned[1] SecondOfModelVersion = 0: edition_specific; meta modelVersionDate g2date(YearOfModelVersion,MonthOfModelVersion,DayOfModelVersion) : dump; meta modelVersionTime time(HourOfModelVersion, MinuteOfModelVersion, SecondOfModelVersion) : dump; +remove isHindcast; constant isHindcast = 1; diff --git a/src/action_class_remove.c b/src/action_class_remove.c index 5f2e57120..18a6c9e2d 100644 --- a/src/action_class_remove.c +++ b/src/action_class_remove.c @@ -130,7 +130,7 @@ static int create_accessor(grib_section* p, grib_action* act, grib_loader* h) remove_accessor(ga); } else { grib_context_log(act->context, GRIB_LOG_DEBUG, - "Action_class_remove : create_accessor_buffer : No accessor named %s to remove ", grib_arguments_get_name(p->h, a->args, 0)); + "Action_class_remove: create_accessor: No accessor named %s to remove", grib_arguments_get_name(p->h, a->args, 0)); } return GRIB_SUCCESS; } diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 2a68311e3..79cafc7e2 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -84,6 +84,7 @@ if( HAVE_BUILD_TOOLS ) grib_ecc-1195 grib_ecc-1212 grib_ecc-1230 + grib_ecc-1255 bufr_ecc-1028 bufr_ecc-1195 bufr_json_samples diff --git a/tests/grib_ecc-1255.sh b/tests/grib_ecc-1255.sh new file mode 100755 index 000000000..cc4dcefaf --- /dev/null +++ b/tests/grib_ecc-1255.sh @@ -0,0 +1,42 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +REDIRECT=/dev/null +label="grib_ecc-1255-test" +tempGrib=temp.$label.grib +tempFilt1=temp.1.$label.filt +tempFilt2=temp.2.$label.filt + +sample_grib2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl + +cat > $tempFilt1 < $tempFilt2 < Date: Tue, 22 Jun 2021 15:14:07 +0100 Subject: [PATCH 530/683] ECC-1258: find_nearest returns wrong point if searched location is at a grid point --- src/grib_geography.c | 5 +++-- tests/CMakeLists.txt | 1 + tests/grib_ecc-1255.sh | 11 ++++++----- tests/grib_ecc-1258.sh | 38 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 48 insertions(+), 7 deletions(-) create mode 100755 tests/grib_ecc-1258.sh diff --git a/src/grib_geography.c b/src/grib_geography.c index d236580af..9fd45495f 100644 --- a/src/grib_geography.c +++ b/src/grib_geography.c @@ -4155,14 +4155,15 @@ double geographic_distance_spherical(double radius, double lon1, double lat1, do if (lat1 == lat2 && lon1 == lon2) { return 0.0; /* the two points are identical */ } - if (rlon1 >= 360) rlon1 -= 360.0; rlon1 = RADIAN(rlon1); if (rlon2 >= 360) rlon2 -= 360.0; rlon2 = RADIAN(rlon2); a = sin(rlat1) * sin(rlat2) + cos(rlat1) * cos(rlat2) * cos(rlon2 - rlon1); - DebugAssert(a >= -1 && a <= 1); + /* ECC-1258: sometimes 'a' can be very slightly outside the range [-1,1] */ + if (a > 1.0) a = 1.0; + if (a < -1.0) a = -1.0; return radius * acos(a); } diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 79cafc7e2..a698a808f 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -85,6 +85,7 @@ if( HAVE_BUILD_TOOLS ) grib_ecc-1212 grib_ecc-1230 grib_ecc-1255 + grib_ecc-1258 bufr_ecc-1028 bufr_ecc-1195 bufr_json_samples diff --git a/tests/grib_ecc-1255.sh b/tests/grib_ecc-1255.sh index cc4dcefaf..e5fb1dfe3 100755 --- a/tests/grib_ecc-1255.sh +++ b/tests/grib_ecc-1255.sh @@ -10,14 +10,15 @@ . ./include.sh set -u -REDIRECT=/dev/null + label="grib_ecc-1255-test" tempGrib=temp.$label.grib tempFilt1=temp.1.$label.filt tempFilt2=temp.2.$label.filt - sample_grib2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl +# Non-EFAS GRIB +# ----------------- cat > $tempFilt1 < $tempFilt2 < $tempFilt2 < $tempFilt < $tempOut +grep -q "Grid Point chosen #3 index=121" $tempOut +grep -q "index=121 .*distance=0.0" $tempOut + + +rm -f $tempFilt $tempGrib $tempOut From 0b0a80948196ca4a6d45aad411fe323544b1f062 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 22 Jun 2021 15:57:11 +0100 Subject: [PATCH 531/683] Testing: remove temp files --- tests/grib_ecc-1212.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/grib_ecc-1212.sh b/tests/grib_ecc-1212.sh index 3caaff0e8..a6d970df3 100755 --- a/tests/grib_ecc-1212.sh +++ b/tests/grib_ecc-1212.sh @@ -82,4 +82,4 @@ diff -w $tempRef $tempOut # Clean up -#rm -f $tempGrib $tempFilt $tempOut $tempRef +rm -f $tempGrib $tempFilt $tempOut $tempRef From 4b334bb8a77e9045fb1144bc4fef11815d54e1a4 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 22 Jun 2021 15:57:51 +0100 Subject: [PATCH 532/683] ECC-1255: fix is_localtime key --- definitions/grib2/template.4.localtime.def | 1 + tests/grib2_templates.sh | 13 ++++++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/definitions/grib2/template.4.localtime.def b/definitions/grib2/template.4.localtime.def index fa62eded9..74fd1f368 100644 --- a/definitions/grib2/template.4.localtime.def +++ b/definitions/grib2/template.4.localtime.def @@ -1,5 +1,6 @@ # (C) Copyright 2005- ECMWF. +remove is_localtime; transient is_localtime=1; # Method used to calculate the field value at the local time specified in section 1 diff --git a/tests/grib2_templates.sh b/tests/grib2_templates.sh index b1dad7335..3ece2d083 100755 --- a/tests/grib2_templates.sh +++ b/tests/grib2_templates.sh @@ -15,6 +15,7 @@ label="grib2_templates" temp1=temp1.$label.grib2 temp2=temp2.$label.grib2 temp=temp.$label.grib2 +tempFilt=temp.$label.filt sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl @@ -27,9 +28,15 @@ grib_check_key_equals $temp totalNumberOfQuantiles,quantileValue '2 0' # Template 4.88 # ------------- -# TODO: Add tablesVersion later... -$tools_dir/grib_set -s productDefinitionTemplateNumber=88,numberOfForecastsUsedInLocalTime=1 $sample2 $temp +$tools_dir/grib_set -s tablesVersion=27,productDefinitionTemplateNumber=88,numberOfForecastsUsedInLocalTime=1 $sample2 $temp grib_check_key_equals $temp localTimeMethod 255 +# ECC-1255: check transient is_localtime is not an array +cat > $tempFilt < 4.79, 4.80 -> 4.83 # ------------------------------------- @@ -112,4 +119,4 @@ $tools_dir/grib_set -s tablesVersion=26,productDefinitionTemplateNumber=85 $samp $tools_dir/grib_compare -b productDefinitionTemplateNumber $temp1 $temp2 -rm -f $temp $temp1 $temp2 +rm -f $temp $temp1 $temp2 $tempFilt From 1a94df09156e69e9279ff0fc64ccb502cbe21ea8 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Wed, 23 Jun 2021 16:27:29 +0100 Subject: [PATCH 533/683] getting rid of is_efas, is_uerra, is_tigge and is_s2s, part 1 --- definitions/grib2/boot.def | 6 +++--- definitions/grib2/section.1.def | 14 +++++++------- definitions/grib2/section.4.def | 19 +++++++++++++++++++ 3 files changed, 29 insertions(+), 10 deletions(-) diff --git a/definitions/grib2/boot.def b/definitions/grib2/boot.def index d20772ace..03f0ee66c 100644 --- a/definitions/grib2/boot.def +++ b/definitions/grib2/boot.def @@ -16,9 +16,9 @@ constant tablesVersionLatest = 27 : edition_specific; constant million = 1000000 : hidden; constant grib2divider = 1000000; alias extraDimensionPresent=zero; -alias is_tigge = zero; -alias is_s2s = zero; -transient is_efas = 0; +#alias is_tigge = zero; +#alias is_s2s = zero; +#transient is_efas = 0; transient angleSubdivisions=grib2divider; # micro degrees meta gts_header gts_header() : no_copy,hidden,read_only; diff --git a/definitions/grib2/section.1.def b/definitions/grib2/section.1.def index 62a94ccd8..cbd10c07c 100644 --- a/definitions/grib2/section.1.def +++ b/definitions/grib2/section.1.def @@ -116,13 +116,13 @@ if ( ((section1Length > 21) or setCalendarId > 0) and deleteCalendarId == 0) { template calendarIdentification "grib2/template.1.[calendarIdentificationTemplateNumber:l].def"; } -concept is_uerra(zero) { - '1' = {productionStatusOfProcessedData=10;} - '1' = {productionStatusOfProcessedData=11;} - '1' = {productionStatusOfProcessedData=9;} - '1' = {productionStatusOfProcessedData=8;} - '0' = {dummy=1;} -} +#concept is_uerra(zero) { +# '1' = {productionStatusOfProcessedData=10;} +# '1' = {productionStatusOfProcessedData=11;} +# '1' = {productionStatusOfProcessedData=9;} +# '1' = {productionStatusOfProcessedData=8;} +# '0' = {dummy=1;} +#} constant conceptsMasterDir="grib2" : hidden; constant conceptsLocalDirAll="grib2/localConcepts/[centre:s]" : hidden; diff --git a/definitions/grib2/section.4.def b/definitions/grib2/section.4.def index 7e6ebccac..b49b235ce 100644 --- a/definitions/grib2/section.4.def +++ b/definitions/grib2/section.4.def @@ -23,6 +23,25 @@ if (centre==7 || centre==46) { alias disableGrib1LocalSection=one; } +concept datasetForLocal(unknown) { + "tigge" = {productionStatusOfProcessedData=4;} + "tigge" = {productionStatusOfProcessedData=5;} + "s2s" = {productionStatusOfProcessedData=6;} + "s2s" = {productionStatusOfProcessedData=7;} + "hydro" = {marsClass="ce";} # EFAS/GLOFAS + "hydro" = {marsClass="ul";} #ULYSSES + "uerra" = {productionStatusOfProcessedData=8;} # UERRA + "uerra" = {productionStatusOfProcessedData=9;} # UERRA + "uerra" = {productionStatusOfProcessedData=10;} # CARRA/CERRA + "uerra" = {productionStatusOfProcessedData=11;} # CARRA/CERRA + "unknown" = { dummy=1; } +} + +if (!(datasetForLocal is "unknown")) { +constant conceptsDir1 = "grib2/localConcepts/[datasetForLocal]": hidden; +constant conceptsDir2 = "grib2": hidden; +} + codetable[2] productDefinitionTemplateNumber('4.0.table',masterDir,localDir) : dump; if (section2Used == 1) { From 8be460a9c58c7e472e675b77b0c8ce13ada25298 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Thu, 24 Jun 2021 09:09:21 +0100 Subject: [PATCH 534/683] adding uerra specific concepts --- .../grib2/localConcepts/uerra/cfVarName.def | 37 +++++++++++++++++++ .../grib2/localConcepts/uerra/name.def | 37 +++++++++++++++++++ .../grib2/localConcepts/uerra/paramId.def | 37 +++++++++++++++++++ .../grib2/localConcepts/uerra/shortName.def | 37 +++++++++++++++++++ .../grib2/localConcepts/uerra/units.def | 37 +++++++++++++++++++ 5 files changed, 185 insertions(+) create mode 100644 definitions/grib2/localConcepts/uerra/cfVarName.def create mode 100644 definitions/grib2/localConcepts/uerra/name.def create mode 100644 definitions/grib2/localConcepts/uerra/paramId.def create mode 100644 definitions/grib2/localConcepts/uerra/shortName.def create mode 100644 definitions/grib2/localConcepts/uerra/units.def diff --git a/definitions/grib2/localConcepts/uerra/cfVarName.def b/definitions/grib2/localConcepts/uerra/cfVarName.def new file mode 100644 index 000000000..1501b921d --- /dev/null +++ b/definitions/grib2/localConcepts/uerra/cfVarName.def @@ -0,0 +1,37 @@ +#Wind speed +'ws' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + } +#10 metre wind gust since previous post-processing +'fg10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + typeOfStatisticalProcessing = 2 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 2 ; + } diff --git a/definitions/grib2/localConcepts/uerra/name.def b/definitions/grib2/localConcepts/uerra/name.def new file mode 100644 index 000000000..6910cb990 --- /dev/null +++ b/definitions/grib2/localConcepts/uerra/name.def @@ -0,0 +1,37 @@ +#Wind speed +'Wind speed' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + } +#10 metre wind gust since previous post-processing +'10 metre wind gust since previous post-processing' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Maximum temperature at 2 metres since previous post-processing +'Maximum temperature at 2 metres since previous post-processing' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Minimum temperature at 2 metres since previous post-processing +'Minimum temperature at 2 metres since previous post-processing' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; + } diff --git a/definitions/grib2/localConcepts/uerra/paramId.def b/definitions/grib2/localConcepts/uerra/paramId.def new file mode 100644 index 000000000..97c17a41c --- /dev/null +++ b/definitions/grib2/localConcepts/uerra/paramId.def @@ -0,0 +1,37 @@ +#Wind speed +'10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + } +#10 metre wind gust since previous post-processing +'49' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Maximum temperature at 2 metres since previous post-processing +'201' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Minimum temperature at 2 metres since previous post-processing +'202' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; + } diff --git a/definitions/grib2/localConcepts/uerra/shortName.def b/definitions/grib2/localConcepts/uerra/shortName.def new file mode 100644 index 000000000..593aa762d --- /dev/null +++ b/definitions/grib2/localConcepts/uerra/shortName.def @@ -0,0 +1,37 @@ +#Wind speed +'ws' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + } +#10 metre wind gust since previous post-processing +'10fg' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; + } diff --git a/definitions/grib2/localConcepts/uerra/units.def b/definitions/grib2/localConcepts/uerra/units.def new file mode 100644 index 000000000..9be44fc19 --- /dev/null +++ b/definitions/grib2/localConcepts/uerra/units.def @@ -0,0 +1,37 @@ +#Wind speed +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + } +#10 metre wind gust since previous post-processing +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Maximum temperature at 2 metres since previous post-processing +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + } +#Minimum temperature at 2 metres since previous post-processing +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 3 ; + } From 667f914746e5cdc754a71a7327ad1729fd87204f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 24 Jun 2021 13:59:29 +0100 Subject: [PATCH 535/683] ECC-1259: BUFR encoding: Crash if compressedData set after unexpandedDescriptors --- src/grib_accessor_class_bufr_data_array.c | 28 +++++++----- tests/CMakeLists.txt | 1 + tests/bufr_ecc-1259.sh | 54 +++++++++++++++++++++++ 3 files changed, 73 insertions(+), 10 deletions(-) create mode 100755 tests/bufr_ecc-1259.sh diff --git a/src/grib_accessor_class_bufr_data_array.c b/src/grib_accessor_class_bufr_data_array.c index b72607360..5f53f64a5 100644 --- a/src/grib_accessor_class_bufr_data_array.c +++ b/src/grib_accessor_class_bufr_data_array.c @@ -810,6 +810,9 @@ static int encode_double_array(grib_context* c, grib_buffer* buff, long* pos, bu if (nvals <= 0) return GRIB_NO_VALUES; + if (!dvalues) + return GRIB_ENCODING_ERROR; + set_missing_long_to_double(dvalues); v = dvalues->v; @@ -1305,7 +1308,7 @@ static int encode_overridden_reference_value(grib_context* c, grib_accessor_bufr grib_buffer_set_ulength_bits(c, buff, buff->ulength_bits + numBits); err = grib_encode_signed_longb(buff->data, currRefVal, pos, numBits); if (err) { - grib_context_log(c, GRIB_LOG_ERROR, "encoding overridden reference value %ld for %s (code=%6.6ld)", + grib_context_log(c, GRIB_LOG_ERROR, "Encoding overridden reference value %ld for %s (code=%6.6ld)", currRefVal, bd->shortName, bd->code); } self->refValIndex++; @@ -1384,7 +1387,7 @@ static int encode_new_replication(grib_context* c, grib_accessor_bufr_data_array case 31000: if (self->nInputShortReplications >= 0) { if (self->iInputShortReplications >= self->nInputShortReplications) { - grib_context_log(c, GRIB_LOG_ERROR, "array inputShortDelayedDescriptorReplicationFactor: dimension mismatch (nInputShortReplications=%d)", + grib_context_log(c, GRIB_LOG_ERROR, "Array inputShortDelayedDescriptorReplicationFactor: dimension mismatch (nInputShortReplications=%d)", self->nInputShortReplications); return GRIB_ARRAY_TOO_SMALL; } @@ -1395,7 +1398,7 @@ static int encode_new_replication(grib_context* c, grib_accessor_bufr_data_array case 31001: if (self->nInputReplications >= 0) { if (self->iInputReplications >= self->nInputReplications) { - grib_context_log(c, GRIB_LOG_ERROR, "array inputDelayedDescriptorReplicationFactor: dimension mismatch (nInputReplications=%d)", + grib_context_log(c, GRIB_LOG_ERROR, "Array inputDelayedDescriptorReplicationFactor: dimension mismatch (nInputReplications=%d)", self->nInputReplications); return GRIB_ARRAY_TOO_SMALL; } @@ -1406,7 +1409,7 @@ static int encode_new_replication(grib_context* c, grib_accessor_bufr_data_array case 31002: if (self->nInputExtendedReplications >= 0) { if (self->iInputExtendedReplications >= self->nInputExtendedReplications) { - grib_context_log(c, GRIB_LOG_ERROR, "array inputExtendedDelayedDescriptorReplicationFactor: dimension mismatch (nInputExtendedReplications=%d)", + grib_context_log(c, GRIB_LOG_ERROR, "Array inputExtendedDelayedDescriptorReplicationFactor: dimension mismatch (nInputExtendedReplications=%d)", self->nInputExtendedReplications); return GRIB_ARRAY_TOO_SMALL; } @@ -1415,7 +1418,7 @@ static int encode_new_replication(grib_context* c, grib_accessor_bufr_data_array } break; default: - grib_context_log(c, GRIB_LOG_ERROR, "unsupported descriptor code %ld\n", descriptors[i]->code); + grib_context_log(c, GRIB_LOG_ERROR, "Unsupported descriptor code %ld\n", descriptors[i]->code); return GRIB_INTERNAL_ERROR; } @@ -1467,7 +1470,7 @@ static int encode_element(grib_context* c, grib_accessor_bufr_data_array* self, } idx = (int)self->numericValues->v[subsetIndex]->v[elementIndex] / 1000 - 1; if (idx < 0 || idx >= self->stringValues->n) { - grib_context_log(c, GRIB_LOG_ERROR, "encode_element: %s: Invalid index %d", bd->shortName, idx); + grib_context_log(c, GRIB_LOG_ERROR, "encode_element '%s': Invalid index %d", bd->shortName, idx); return GRIB_INVALID_ARGUMENT; } err = encode_string_value(c, buff, pos, bd, self, self->stringValues->v[idx]->v[0]); @@ -1478,11 +1481,16 @@ static int encode_element(grib_context* c, grib_accessor_bufr_data_array* self, if (self->compressedData) { err = encode_double_array(c, buff, pos, bd, self, self->numericValues->v[elementIndex]); if (err) { - grib_context_log(c, GRIB_LOG_ERROR, "encoding %s ( code=%6.6ld width=%ld scale=%ld reference=%ld )", + grib_darray* varr = self->numericValues->v[elementIndex]; + grib_context_log(c, GRIB_LOG_ERROR, "Encoding key '%s' ( code=%6.6ld width=%ld scale=%ld reference=%ld )", bd->shortName, bd->code, bd->width, bd->scale, bd->reference); - for (j = 0; j < grib_darray_used_size(self->numericValues->v[elementIndex]); j++) - grib_context_log(c, GRIB_LOG_ERROR, "value[%d]\t= %g", j, self->numericValues->v[elementIndex]->v[j]); + if (varr) { + for (j = 0; j < grib_darray_used_size(varr); j++) + grib_context_log(c, GRIB_LOG_ERROR, "value[%d]\t= %g", j, varr->v[j]); + } else { + grib_context_log(c, GRIB_LOG_ERROR, "Empty array: Check the order of keys being set!"); + } } } else { @@ -2677,7 +2685,7 @@ static int create_keys(const grib_accessor* a, long onlySubset, long startSubset if (associatedFieldSignificanceAccessor) { grib_accessor* newAccessor = grib_accessor_clone(associatedFieldSignificanceAccessor, section, &err); if (err) { - grib_context_log(a->context, GRIB_LOG_ERROR, "unable to clone accessor '%s'\n", associatedFieldSignificanceAccessor->name); + grib_context_log(a->context, GRIB_LOG_ERROR,"Unable to clone accessor '%s'\n", associatedFieldSignificanceAccessor->name); return err; } grib_accessor_add_attribute(associatedFieldAccessor, newAccessor, 1); diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index a698a808f..23e86053f 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -88,6 +88,7 @@ if( HAVE_BUILD_TOOLS ) grib_ecc-1258 bufr_ecc-1028 bufr_ecc-1195 + bufr_ecc-1259 bufr_json_samples bufr_ecc-359 bufr_ecc-517 diff --git a/tests/bufr_ecc-1259.sh b/tests/bufr_ecc-1259.sh new file mode 100755 index 000000000..44a123508 --- /dev/null +++ b/tests/bufr_ecc-1259.sh @@ -0,0 +1,54 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +REDIRECT=/dev/null +label="bufr_ecc-1259-test" + +tempBufr=temp.$label.bufr +tempFilt=temp.$label.filt +tempOut=temp.$label.out + +sample_bufr4=$ECCODES_SAMPLES_PATH/BUFR4.tmpl + +# Check no crash if invalid encoding +# ------------------------------------- +cat > $tempFilt <$tempOut + +# Check the right error message came out +grep -q "ECCODES ERROR.*Error while setting key pack (Encoding invalid)" $tempOut + + +# Now fix the order of keys and rerun +# ------------------------------------- +cat > $tempFilt < Date: Fri, 25 Jun 2021 16:01:56 +0100 Subject: [PATCH 536/683] Testing: move lengthy test to extra set --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 23e86053f..84784e202 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -102,7 +102,6 @@ if( HAVE_BUILD_TOOLS ) grib_grid_unstructured grib_grid_lambert_conformal grib_grid_polar_stereographic - grib_grid_space_view grib_g1monthlydate grib_g1fcperiod) @@ -113,6 +112,7 @@ if( HAVE_BUILD_TOOLS ) grib_complex grib_double_cmp grib_change_packing + grib_grid_space_view bufr_dump_data bufr_dump_descriptors bufr_dump_subset From a04b01bee017651525d03285876c74cc03876d44 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 25 Jun 2021 19:19:41 +0100 Subject: [PATCH 537/683] ECC-1260: grib_get -p step does not show step ranges with hyphens --- tools/grib_tools.c | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/tools/grib_tools.c b/tools/grib_tools.c index 496b36675..010d244dd 100644 --- a/tools/grib_tools.c +++ b/tools/grib_tools.c @@ -1100,8 +1100,9 @@ void grib_print_key_values(grib_runtime_options* options, grib_handle* h) } for (i = 0; i < options->print_keys_count; i++) { - size_t len = MAX_STRING_LEN; - ret = GRIB_SUCCESS; + size_t len = MAX_STRING_LEN; + int keyType = options->print_keys[i].type; + ret = GRIB_SUCCESS; if (h->product_kind == PRODUCT_BUFR) { /* ECC-236: Do not use grib_is_missing for BUFR */ @@ -1111,9 +1112,9 @@ void grib_print_key_values(grib_runtime_options* options, grib_handle* h) ret = grib_get_size(h, options->print_keys[i].name, &num_vals); } if (ret == GRIB_SUCCESS) { - if (options->print_keys[i].type == GRIB_TYPE_UNDEFINED) - grib_get_native_type(h, options->print_keys[i].name, &(options->print_keys[i].type)); - switch (options->print_keys[i].type) { + if (keyType == GRIB_TYPE_UNDEFINED) + grib_get_native_type(h, options->print_keys[i].name, &keyType); + switch (keyType) { case GRIB_TYPE_STRING: acc = grib_find_accessor(h, options->print_keys[i].name); ret = grib_get_string(h, options->print_keys[i].name, value, &len); @@ -1154,9 +1155,9 @@ void grib_print_key_values(grib_runtime_options* options, grib_handle* h) } else if (ret == GRIB_SUCCESS) { const char* pName = NULL; - if (options->print_keys[i].type == GRIB_TYPE_UNDEFINED) - grib_get_native_type(h, options->print_keys[i].name, &(options->print_keys[i].type)); - switch (options->print_keys[i].type) { + if (keyType == GRIB_TYPE_UNDEFINED) + grib_get_native_type(h, options->print_keys[i].name, &keyType); + switch (keyType) { case GRIB_TYPE_STRING: pName = options->print_keys[i].name; if (fix_lsdate && strcmp(pName, "date") == 0) { /* ECC-707 */ From 9932f9fb41d04e5012f60bca057955440570afef Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 27 Jun 2021 13:30:24 +0100 Subject: [PATCH 538/683] ECC-1260: test case --- tests/CMakeLists.txt | 1 + tests/grib_ecc-1260.sh | 45 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100755 tests/grib_ecc-1260.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 84784e202..751dbc7a4 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -86,6 +86,7 @@ if( HAVE_BUILD_TOOLS ) grib_ecc-1230 grib_ecc-1255 grib_ecc-1258 + grib_ecc-1260 bufr_ecc-1028 bufr_ecc-1195 bufr_ecc-1259 diff --git a/tests/grib_ecc-1260.sh b/tests/grib_ecc-1260.sh new file mode 100755 index 000000000..1b2057515 --- /dev/null +++ b/tests/grib_ecc-1260.sh @@ -0,0 +1,45 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u +REDIRECT=/dev/null +label="grib_ecc-1260-test" +tempGrib=temp.$label.grib +tempRef=temp.$label.ref +tempOut=temp.$label.txt + +sample_grib1=$ECCODES_SAMPLES_PATH/GRIB1.tmpl +sample_grib2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl + +# Create a GRIB with a stepRange having a hyphen +${tools_dir}/grib_set -s stepType=avg,productionStatusOfProcessedData=6,typeOfProcessedData=3,stepRange=0-24 \ + $sample_grib2 $tempGrib +grib_check_key_equals $tempGrib step,stepRange "0-24 0-24" + +# Put the average first +${tools_dir}/grib_get -p step $tempGrib $sample_grib2 > $tempOut +cat > $tempRef << EOF +0-24 +0 +EOF +diff $tempRef $tempOut + +# Put the instantaneous first +${tools_dir}/grib_get -p step $sample_grib2 $tempGrib > $tempOut +cat > $tempRef << EOF +0 +0-24 +EOF +diff $tempRef $tempOut + + +# Clean up +rm -f $tempRef $tempGrib $tempOut From 989c2da2001a0cf68681c2b5b3398b02cf9fee3f Mon Sep 17 00:00:00 2001 From: Richard Mladek Date: Wed, 30 Jun 2021 13:23:41 +0100 Subject: [PATCH 539/683] snowmelt fix for CARRA/CERRA --- tigge/tigge_check.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tigge/tigge_check.h b/tigge/tigge_check.h index 07181ee83..619c845d6 100644 --- a/tigge/tigge_check.h +++ b/tigge/tigge_check.h @@ -4059,10 +4059,11 @@ uerra, eswi-enfo:total_cloud_cover_sfc maximum value 96.4844 is not in [100,100] {"discipline", GRIB_TYPE_LONG, 0}, {"parameterCategory", GRIB_TYPE_LONG, 1}, {"parameterNumber", GRIB_TYPE_LONG, 16}, + {"typeOfStatisticalProcessing", GRIB_TYPE_LONG, 1}, {"typeOfFirstFixedSurface", GRIB_TYPE_LONG, 1}, {NULL, }, }, - {&point_in_time, &predefined_level, &has_bitmap}, + {&from_start, &predefined_level, &has_bitmap}, }, { "lake_total_layer_temperature_sfc", From 4ec43befcb50e34a8def9a3d592c32514d025a97 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 30 Jun 2021 17:11:06 +0100 Subject: [PATCH 540/683] WMO GRIB: official release of v27 (Code table 1.0) --- definitions/grib2/tables/1.0.table | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/definitions/grib2/tables/1.0.table b/definitions/grib2/tables/1.0.table index 342f6c50e..3dd474a1f 100644 --- a/definitions/grib2/tables/1.0.table +++ b/definitions/grib2/tables/1.0.table @@ -26,6 +26,7 @@ 24 24 Version implemented on 6 November 2019 25 25 Version implemented on 6 May 2020 26 26 Version implemented on 16 November 2020 -27 27 Pre-operational to be implemented by next amendment -# 28-254 Future versions +27 27 Version implemented on 15 June 2021 +28 28 Pre-operational to be implemented by next amendment +# 29-254 Future versions 255 255 Master tables not used. Local table entries and local templates may use the entire range of the table, not just those sections marked Reserved for local used. From a4f04e7e604ceebb10dd2b501b2f1208fa8ef6d5 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 1 Jul 2021 15:13:32 +0100 Subject: [PATCH 541/683] Definitions clean up --- definitions/budg/mars_labeling.def | 11 --- definitions/budg/section.1.def | 22 +---- definitions/budg/section.4.def | 104 +++++++++------------ definitions/common/statistics_grid.def | 7 -- definitions/common/statistics_spectral.def | 8 -- definitions/grib2/boot_multifield.def | 22 +---- definitions/metar/boot.flexible.def | 7 -- 7 files changed, 52 insertions(+), 129 deletions(-) diff --git a/definitions/budg/mars_labeling.def b/definitions/budg/mars_labeling.def index 5fa826a74..ff3652858 100644 --- a/definitions/budg/mars_labeling.def +++ b/definitions/budg/mars_labeling.def @@ -1,20 +1,9 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# constant domain = "g"; constant levtype = "sfc"; constant param = "128.128"; - - alias mars.param = param; alias mars.levtype = levtype; #alias mars.domain = domain; - - diff --git a/definitions/budg/section.1.def b/definitions/budg/section.1.def index 2a412d313..d70384543 100644 --- a/definitions/budg/section.1.def +++ b/definitions/budg/section.1.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# section_length[3] section1Length ; @@ -31,27 +24,18 @@ alias ls.levelType=indicatorOfTypeOfLevel; # NOTE 6 NOT FOUND unsigned[1] yearOfCentury ; -# Month unsigned[1] month ; - -# Day unsigned[1] day; - -# Hour unsigned[1] hour ; - -# Minute unsigned[1] minute ; - transient second = 0; meta dataDate budgdate(yearOfCentury,month,day); -alias ls.date=dataDate; +alias ls.date=dataDate; meta dataTime time(hour,minute,second); meta julianDay julian_day(dataDate,hour,minute,second) : edition_specific; - # Indicator of unit of time range codetable[1] indicatorOfUnitOfTimeRange 'grib1/4.table'; @@ -59,13 +43,13 @@ codetable[1] indicatorOfUnitOfTimeRange 'grib1/4.table'; # (number of time units) unsigned[1] periodOfTime ; -alias P1 = periodOfTime ; +alias P1 = periodOfTime ; # P2 - Period of time # (number of time units) unsigned[1] periodOfTimeIntervals ; -alias P2 = periodOfTimeIntervals ; +alias P2 = periodOfTimeIntervals ; codetable[1] timeRangeIndicator 'grib1/5.table'; diff --git a/definitions/budg/section.4.def b/definitions/budg/section.4.def index 5d1dfe107..5f57a1fbe 100644 --- a/definitions/budg/section.4.def +++ b/definitions/budg/section.4.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# section_length[3] section4Length ; @@ -37,73 +30,64 @@ unsigned[1] reserved=0 : hidden; ibmfloat floatValues[numberOfFloats]; alias floatVal=floatValues; -if(numberOfBytesPerInteger == 1) { signed[1] integerValues[numberOfIntegers]; } -if(numberOfBytesPerInteger == 2) { signed[2] integerValues[numberOfIntegers]; } -if(numberOfBytesPerInteger == 3) { signed[3] integerValues[numberOfIntegers]; } -if(numberOfBytesPerInteger == 4) { signed[4] integerValues[numberOfIntegers]; } +if (numberOfBytesPerInteger == 1) { signed[1] integerValues[numberOfIntegers]; } +if (numberOfBytesPerInteger == 2) { signed[2] integerValues[numberOfIntegers]; } +if (numberOfBytesPerInteger == 3) { signed[3] integerValues[numberOfIntegers]; } +if (numberOfBytesPerInteger == 4) { signed[4] integerValues[numberOfIntegers]; } -if(numberOfChars >= 12) -{ - ascii[2] marsClass; - ascii[2] dummy1; - ascii[2] marsType; - ascii[2] dummy2; - ascii[4] experimentVersionNumber; +if (numberOfChars >= 12) { + ascii[2] marsClass; + ascii[2] dummy1; + ascii[2] marsType; + ascii[2] dummy2; + ascii[4] experimentVersionNumber; - alias expver=experimentVersionNumber; - alias marsExpver=experimentVersionNumber; + alias expver=experimentVersionNumber; + alias marsExpver=experimentVersionNumber; - constant numberOfRemaininChars = numberOfChars - 12; + constant numberOfRemaininChars = numberOfChars - 12; - charValues list(numberOfRemaininChars) { - ascii[1] char; - } + charValues list(numberOfRemaininChars) { + ascii[1] char; + } + constant zero = 0; + concept isEps(zero) { 1 = { marsType = "pf"; } } + concept isSens(zero) { 1 = { marsType = "sf"; } } - constant zero = 0; - concept isEps(zero) { 1 = { marsType = "pf"; } } - concept isSens(zero) { 1 = { marsType = "sf"; } } + constant oper = "oper"; - constant oper = "oper"; + concept marsStream(oper) { + "enfo" = { marsType = "pf"; } + "enfo" = { marsType = "cf"; } + "sens" = { marsType = "sf"; } + } - concept marsStream(oper) { - "enfo" = { marsType = "pf"; } - "enfo" = { marsType = "cf"; } - "sens" = { marsType = "sf"; } - } + if (isEps) { + constant perturbationNumber = 0; + alias mars.number = perturbationNumber; + } - if(isEps) - { - constant perturbationNumber = 0; - alias mars.number = perturbationNumber; - } - - if(isSens) - { - constant iterationNumber = 0; - constant diagnosticNumber = 0; - alias mars.iteration = iterationNumber; - alias mars.diagnostic = diagnosticNumber; - } - - # This is commented out because some of the BUDG have the wrong info there - alias mars.stream = marsStream; - alias mars.class = marsClass; - alias mars.type = marsType; - alias mars.expver = marsExpver; + if (isSens) { + constant iterationNumber = 0; + constant diagnosticNumber = 0; + alias mars.iteration = iterationNumber; + alias mars.diagnostic = diagnosticNumber; + } + # This is commented out because some of the BUDG have the wrong info there + alias mars.stream = marsStream; + alias mars.class = marsClass; + alias mars.type = marsType; + alias mars.expver = marsExpver; } else { - - charValues list(numberOfChars) { - ascii[1] char; - } - + charValues list(numberOfChars) { + ascii[1] char; + } } } else { -#TODO: decode properly these old data + #TODO: decode properly these old data section_padding padding; - } - diff --git a/definitions/common/statistics_grid.def b/definitions/common/statistics_grid.def index b99ed6283..f3351175d 100644 --- a/definitions/common/statistics_grid.def +++ b/definitions/common/statistics_grid.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# meta dirty_statistics dirty(computeStatistics) ; when (changed(values)) { set dirty_statistics=1;} diff --git a/definitions/common/statistics_spectral.def b/definitions/common/statistics_spectral.def index 47dc27bb3..de0e216fc 100644 --- a/definitions/common/statistics_spectral.def +++ b/definitions/common/statistics_spectral.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# meta dirty_statistics dirty(computeStatistics) ; when (changed(values)) { set dirty_statistics=1;} @@ -21,4 +14,3 @@ alias statistics.avg = average; alias statistics.enorm = energyNorm; alias statistics.sd = standardDeviation; alias statistics.const = isConstant; - diff --git a/definitions/grib2/boot_multifield.def b/definitions/grib2/boot_multifield.def index 5684aa588..8b2008907 100644 --- a/definitions/grib2/boot_multifield.def +++ b/definitions/grib2/boot_multifield.def @@ -1,31 +1,19 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# constant grib2divider = 1000000; transient missingValue = 9999; constant ieeeFloats = 1 : edition_specific; - ascii[4] identifier; ascii[2] reserved : hidden; codetable[1] discipline 'grib2/0.0.table'; unsigned[1] editionNumber : edition_specific; section_length[8] totalLength; - -template core "grib2/sections.def"; +template core "grib2/sections.def"; lookup[4] endOfProduct(0); - - if(endOfProduct != `7777`){ - template core "grib2/sections.def"; - } - - template section8 "grib2/section.8.def"; - +if(endOfProduct != `7777`){ + template core "grib2/sections.def"; +} +template section8 "grib2/section.8.def"; diff --git a/definitions/metar/boot.flexible.def b/definitions/metar/boot.flexible.def index 19774d05e..c822b4bd7 100644 --- a/definitions/metar/boot.flexible.def +++ b/definitions/metar/boot.flexible.def @@ -1,11 +1,4 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# constant normal="NORMAL"; constant correction="CORRECTION"; From a726417726a67a79d3f5939b9a0301b1ef043b70 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 1 Jul 2021 19:24:33 +0100 Subject: [PATCH 542/683] Testing: clean up temp files --- tests/grib_lam_bf.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/grib_lam_bf.sh b/tests/grib_lam_bf.sh index 5a7a1c27a..852da86e0 100755 --- a/tests/grib_lam_bf.sh +++ b/tests/grib_lam_bf.sh @@ -56,3 +56,6 @@ rm -f lam_bf_polar_stereographic_bf_ellipse_diamond.grib rm -f lam_bf_lambert_bf_rectangle_rectangle.grib rm -f lam_bf_mercator_bf_rectangle_rectangle.grib rm -f lam_bf_polar_stereographic_bf_rectangle_rectangle.grib +rm -f lam_bf_mercator_bf_ellipse_full.grib +rm -f lam_bf_polar_stereographic_bf_ellipse_full.grib +rm -f lam_bf_lambert_bf_ellipse_full.grib From 7c38a7c2ccd796f258dcfc1b06ab16f8c9656345 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 1 Jul 2021 19:24:48 +0100 Subject: [PATCH 543/683] Testing: BUDG output --- tests/pseudo_budg.sh | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/tests/pseudo_budg.sh b/tests/pseudo_budg.sh index 4ee4ced56..e240c2a90 100755 --- a/tests/pseudo_budg.sh +++ b/tests/pseudo_budg.sh @@ -11,8 +11,27 @@ . ./include.sh -REDIRECT=/dev/null +label="pseudo_budg_test" +set -u +tempOut=temp.$label.txt +tempRef=temp.$label.ref -${tools_dir}/grib_ls ${data_dir}/budg > $REDIRECT -${tools_dir}/grib_dump ${data_dir}/budg > $REDIRECT +${tools_dir}/grib_ls -j ${data_dir}/budg > $tempOut +cat > $tempRef << EOF +{ "messages" : [ + { + "identifier": "BUDG", + "centre": "ecmf", + "levelType": "sfc", + "date": 20061204, + "stepRange": 0, + "parameter": 128 + } +]} +EOF +diff $tempRef $tempOut +${tools_dir}/grib_dump ${data_dir}/budg +${tools_dir}/grib_dump -O ${data_dir}/budg + +rm -f $tempRef $tempOut From a516cdcc5fc99cf104ba9f64b5006ecad7b18a78 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 8 Jul 2021 14:36:35 +0100 Subject: [PATCH 544/683] ECC-1261: GRIB local definition 12: MARS 'time' key should be HHMM not single digit --- definitions/grib1/local.98.12.def | 6 +++++- definitions/grib2/local.98.12.def | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/definitions/grib1/local.98.12.def b/definitions/grib1/local.98.12.def index 3a65f98b6..d0b76d61d 100644 --- a/definitions/grib1/local.98.12.def +++ b/definitions/grib1/local.98.12.def @@ -57,8 +57,12 @@ alias totalNumber=numberOfForecastsInEnsemble; unsigned[4] indexingDate: dump; # MARS archiving date (YYYYMMDD) unsigned[2] indexingTime: dump; # MARS archiving time (HHMM) +transient indexingTimeHH = indexingTime/100 : hidden; +transient indexingTimeMM = indexingTime - 100 * indexingTimeHH : hidden; +meta indexingTimeHHMM sprintf("%.2d%.2d",indexingTimeHH,indexingTimeMM); + alias mars.date = indexingDate; -alias mars.time = indexingTime; +alias mars.time = indexingTimeHHMM; # spareSetToZero pad padding_loc12_1(50); diff --git a/definitions/grib2/local.98.12.def b/definitions/grib2/local.98.12.def index 8632fd6a6..355362b5e 100644 --- a/definitions/grib2/local.98.12.def +++ b/definitions/grib2/local.98.12.def @@ -8,7 +8,11 @@ alias local.methodNumber=methodNumber; unsigned[4] indexingDate: dump; # MARS archiving date (YYYYMMDD) unsigned[2] indexingTime: dump; # MARS archiving time (HHMM) +transient indexingTimeHH = indexingTime/100 : hidden; +transient indexingTimeMM = indexingTime - 100 * indexingTimeHH : hidden; +meta indexingTimeHHMM sprintf("%.2d%.2d",indexingTimeHH,indexingTimeMM); + alias mars.date = indexingDate; -alias mars.time = indexingTime; +alias mars.time = indexingTimeHHMM; pad padding_loc12_1(50); From 14be017ab6e3f967fe85b07f125104f841aebb20 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 9 Jul 2021 17:14:32 +0100 Subject: [PATCH 545/683] ECC-1261: Added test --- tests/CMakeLists.txt | 1 + tests/grib_ecc-1261.sh | 48 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100755 tests/grib_ecc-1261.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 751dbc7a4..579922867 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -87,6 +87,7 @@ if( HAVE_BUILD_TOOLS ) grib_ecc-1255 grib_ecc-1258 grib_ecc-1260 + grib_ecc-1261 bufr_ecc-1028 bufr_ecc-1195 bufr_ecc-1259 diff --git a/tests/grib_ecc-1261.sh b/tests/grib_ecc-1261.sh new file mode 100755 index 000000000..3c4d4899e --- /dev/null +++ b/tests/grib_ecc-1261.sh @@ -0,0 +1,48 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u + +label="grib_ecc-1261-test" + +tempFilt="temp.${label}.filt" +tempGrib="temp.${label}.grib" + +sample_grib1=$ECCODES_SAMPLES_PATH/GRIB1.tmpl +sample_grib2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl + +test_ld12() +{ + samplef=$1 + itime=$2 # input indexingTime + otime=$3 # output (expected) + + cat > $tempFilt << EOF + set setLocalDefinition=1; + set localDefinitionNumber=12; + set indexingTime = $itime; + write; +EOF + ${tools_dir}/grib_filter -o $tempGrib $tempFilt $samplef + grib_check_key_equals $tempGrib "mars.time" "$otime" + rm -f $tempFilt $tempGrib +} + +test_ld12 $sample_grib1 "0" "0000" +test_ld12 $sample_grib1 "12" "0012" +test_ld12 $sample_grib1 "2400" "2400" +test_ld12 $sample_grib1 "1423" "1423" + +test_ld12 $sample_grib2 "0" "0000" +test_ld12 $sample_grib2 "12" "0012" +test_ld12 $sample_grib2 "2400" "2400" +test_ld12 $sample_grib2 "1423" "1423" + From 8746533b7c529b4eec22c6b96381330fab35388a Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 12 Jul 2021 14:08:55 +0100 Subject: [PATCH 546/683] ECC-1262: GRIB: Key 'typeOfLevel' not mapped for typeOfFirstFixedSurface 17 and 18 --- definitions/grib2/typeOfLevelConcept.def | 2 ++ 1 file changed, 2 insertions(+) diff --git a/definitions/grib2/typeOfLevelConcept.def b/definitions/grib2/typeOfLevelConcept.def index 550fe2d1c..f39a33095 100644 --- a/definitions/grib2/typeOfLevelConcept.def +++ b/definitions/grib2/typeOfLevelConcept.def @@ -10,6 +10,8 @@ 'seaBottom' = {typeOfFirstFixedSurface=9; typeOfSecondFixedSurface=255;} # Note: We already had 'entireAtmosphere' mapped before adding this one so had to choose another name 'atmosphere' = {typeOfFirstFixedSurface=10; typeOfSecondFixedSurface=255;} +'mostUnstableParcel' = {typeOfFirstFixedSurface=17; typeOfSecondFixedSurface=255;} +'mixedLayerParcel' = {typeOfFirstFixedSurface=18; typeOfSecondFixedSurface=255;} 'isothermal' = {typeOfFirstFixedSurface=20; typeOfSecondFixedSurface=255;} 'isobaricInPa' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=255; pressureUnits='Pa';} 'isobaricInhPa' = {typeOfFirstFixedSurface=100; pressureUnits='hPa'; typeOfSecondFixedSurface=255;} From 1ec8ed51c44df6d29157c141e53c8f5a0c1d9764 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 14 Jul 2021 17:43:02 +0100 Subject: [PATCH 547/683] Examples: remove warning --- examples/C/bufr_read_temp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/C/bufr_read_temp.c b/examples/C/bufr_read_temp.c index 0e7056372..7a3610671 100644 --- a/examples/C/bufr_read_temp.c +++ b/examples/C/bufr_read_temp.c @@ -84,7 +84,7 @@ int main(int argc, char* argv[]) sprintf(key_name, "/verticalSoundingSignificance=4/pressure"); CODES_CHECK(codes_get_size(h, key_name, &sigt_len), 0); - printf("Number of T significant levels: %lu\n", sigt_len); + printf("Number of T significant levels: %lu\n", (unsigned long)sigt_len); /* Allocate memory for the values to be read. Each * parameter must have the same number of values. */ From cb446e5b193ac0c2564e5cc1906d6d1fbb1062da Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 14 Jul 2021 17:43:25 +0100 Subject: [PATCH 548/683] Testing: check each local def number appears in the table --- definitions/grib2/grib2LocalSectionNumber.98.table | 1 + tests/grib_local.sh | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/definitions/grib2/grib2LocalSectionNumber.98.table b/definitions/grib2/grib2LocalSectionNumber.98.table index c40763096..d57063c98 100644 --- a/definitions/grib2/grib2LocalSectionNumber.98.table +++ b/definitions/grib2/grib2LocalSectionNumber.98.table @@ -23,3 +23,4 @@ 42 42 Lead Centre for Wave Forecast Verification 192 192 Multiple ECMWF local definitions 300 300 Multi-dimensional parameters +500 500 Observation diagnostics diff --git a/tests/grib_local.sh b/tests/grib_local.sh index 6c5ceda98..ae23a316d 100755 --- a/tests/grib_local.sh +++ b/tests/grib_local.sh @@ -16,6 +16,15 @@ REDIRECT=/dev/null cd ${data_dir} rm -f local.log +# Check all GRIB2 local def files and definitions/grib2/grib2LocalSectionNumber.98.table +# Each number should appear in the table +g2lds=${ECCODES_DEFINITION_PATH}/grib2/local.98.*.def +for g2ld in $g2lds; do + dnum=`echo $g2ld | cut -d. -f3` + grep -q "^$dnum" ${ECCODES_DEFINITION_PATH}/grib2/grib2LocalSectionNumber.98.table +done + + ${tools_dir}/grib_set -s edition=2,setLocalDefinition=1 reduced_gaussian_model_level.grib1 loc.grib2 ${tools_dir}/grib_set -s setLocalDefinition=1 reduced_gaussian_model_level.grib1 loc.grib1 From 43ed8bae26cb8b376fa0f0990ac7ef60e47fe9b6 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 14 Jul 2021 19:24:46 +0100 Subject: [PATCH 549/683] ECC-1263: GRIB2: CCSDS packing: Assertion when creating constant field --- src/grib_accessor_class_data_ccsds_packing.c | 7 ------- tests/grib_ccsds.sh | 12 ++++++++++++ 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/src/grib_accessor_class_data_ccsds_packing.c b/src/grib_accessor_class_data_ccsds_packing.c index 600a3d6b3..b952c8e11 100644 --- a/src/grib_accessor_class_data_ccsds_packing.c +++ b/src/grib_accessor_class_data_ccsds_packing.c @@ -397,13 +397,6 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) #endif if ((err = grib_set_double_internal(hand, self->reference_value, val[0])) != GRIB_SUCCESS) return err; - { - /* Make sure we can decode it again */ - double ref = 1e-100; - grib_get_double_internal(hand, self->reference_value, &ref); - /*printf("%g %g %g\n",reference_value,ref,reference_value-ref);*/ - Assert(ref == reference_value); - } if ((err = grib_set_long_internal(hand, self->number_of_values, n_vals)) != GRIB_SUCCESS) return err; diff --git a/tests/grib_ccsds.sh b/tests/grib_ccsds.sh index 374c994d3..3de467758 100755 --- a/tests/grib_ccsds.sh +++ b/tests/grib_ccsds.sh @@ -25,6 +25,18 @@ outfile1=$infile.tmp_ccsds.1 outfile2=$infile.tmp_ccsds.2 rm -f $outfile1 $outfile2 + +# ECC-1263 +# --------- +grib2_sample=$ECCODES_SAMPLES_PATH/gg_sfc_grib2.tmpl +${tools_dir}/grib_set -s packingType=grid_ccsds $grib2_sample $outfile1 +${tools_dir}/grib_set -d1 $outfile1 $outfile2 +grib_check_key_equals $grib2_sample packingType,const "grid_simple 0" +grib_check_key_equals $outfile2 packingType,const "grid_ccsds 1" +rm -f $outfile1 $outfile2 + +# Change packingType +# ------------------ ${tools_dir}/grib_set -r -s packingType=grid_simple $infile $outfile1 ${tools_dir}/grib_compare -b $BLACKLIST $outfile1 $infile > $REDIRECT From 4ddd53c0a001e1b53c8441181b829cdf4c3f7bda Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 14 Jul 2021 19:25:10 +0100 Subject: [PATCH 550/683] Remove printf --- src/grib_accessor_class_data_png_packing.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grib_accessor_class_data_png_packing.c b/src/grib_accessor_class_data_png_packing.c index 92bbf5ad3..7fb893c67 100644 --- a/src/grib_accessor_class_data_png_packing.c +++ b/src/grib_accessor_class_data_png_packing.c @@ -454,7 +454,7 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) /* Make sure we can decode it again */ double ref = 1e-100; grib_get_double_internal(grib_handle_of_accessor(a), self->reference_value, &ref); - printf("%g %g %g\n", reference_value, ref, reference_value - ref); + /*printf("%g %g %g\n", reference_value, ref, reference_value - ref);*/ Assert(ref == reference_value); } From 7a9a87f30a36edd8ad5a0d7eb176d7cc83d534dd Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 14 Jul 2021 19:39:26 +0100 Subject: [PATCH 551/683] Testing: fix test (Broken in metabuilder) --- tests/grib_local.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/grib_local.sh b/tests/grib_local.sh index ae23a316d..be2c6f1ea 100755 --- a/tests/grib_local.sh +++ b/tests/grib_local.sh @@ -20,7 +20,8 @@ rm -f local.log # Each number should appear in the table g2lds=${ECCODES_DEFINITION_PATH}/grib2/local.98.*.def for g2ld in $g2lds; do - dnum=`echo $g2ld | cut -d. -f3` + bname=`basename $g2ld` + dnum=`echo $bname | cut -d. -f3` grep -q "^$dnum" ${ECCODES_DEFINITION_PATH}/grib2/grib2LocalSectionNumber.98.table done From cad7ef0721deded23c510174e28f52f3778f351d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 15 Jul 2021 14:44:24 +0100 Subject: [PATCH 552/683] Tools: print gridType in warning --- tools/grib_check_gaussian_grid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/grib_check_gaussian_grid.c b/tools/grib_check_gaussian_grid.c index 835ab4777..128fc257c 100644 --- a/tools/grib_check_gaussian_grid.c +++ b/tools/grib_check_gaussian_grid.c @@ -120,7 +120,7 @@ int process_file(const char* filename) if (!grid_ok) { /*error("ERROR: gridType should be Reduced or Regular Gaussian Grid!\n");*/ if (verbose) - printf(" WARNING: gridType should be Reduced or Regular Gaussian Grid! Ignoring\n"); + printf(" WARNING: gridType=%s. It should be Reduced or Regular Gaussian Grid! Ignoring\n", gridType); grib_handle_delete(h); continue; } From 6656065e8fcb37179cafe439d7e578b339dbd2c3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 16 Jul 2021 15:06:26 +0100 Subject: [PATCH 553/683] Scripts: Add sanity check for type of fixed surface values --- definitions/add_params_from_tsv.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index 2285f1a14..70d3979e8 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -130,7 +130,9 @@ while (<>) { die "Error: paramID \"$paramId\" is not an integer (input row=$lcount)!\n" if (!is_integer($paramId)); die "Error: shortName \"$shortName\" has an invalid character (input row=$lcount)!\n" if ($shortName =~ /[ '"]/); - die "Error: name \"$name\" should have uppercase 1st letter or digit (input row=$lcount)!\n" if ($name !~ /^[A-Z0-9]/); + die "Error: name \"$name\" should have uppercase 1st letter or digit (input row=$lcount)!\n" if ($name !~ /^[A-Z0-9]/); + die "Error: typeOfFirstFixedSurface \"$type1\" is not an integer (input row=$lcount)!\tPick a value from Code Table 4.5\n" if (!is_integer($type1)); + die "Error: typeOfSecondFixedSurface \"$type2\" is not an integer (input row=$lcount)!\tPick a value from Code Table 4.5\n" if (!is_integer($type2)); $units = "~" if ($units eq ""); $cfVarName = $shortName; From 3107c5a36d41df5aa0c5cea1d43283b41db5d401 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 19 Jul 2021 15:59:56 +0100 Subject: [PATCH 554/683] more work on removing is_XXX --- definitions/grib2/cfVarName.def | 68 ----------- definitions/grib2/local.98.41.def | 4 +- definitions/grib2/localConcepts/cnmc/name.def | 19 ---- .../grib2/localConcepts/cnmc/paramId.def | 19 ---- .../grib2/localConcepts/cnmc/shortName.def | 19 ---- .../grib2/localConcepts/cnmc/units.def | 19 ---- .../grib2/localConcepts/egrr/cfVarName.def | 22 ---- definitions/grib2/localConcepts/egrr/name.def | 22 ---- .../grib2/localConcepts/egrr/paramId.def | 22 ---- .../grib2/localConcepts/egrr/shortName.def | 22 ---- .../grib2/localConcepts/egrr/units.def | 22 ---- .../grib2/localConcepts/hydro/cfVarName.def | 20 ++++ .../grib2/localConcepts/hydro/name.def | 20 ++++ .../grib2/localConcepts/hydro/paramId.def | 20 ++++ .../grib2/localConcepts/hydro/shortName.def | 20 ++++ .../grib2/localConcepts/hydro/units.def | 20 ++++ definitions/grib2/localConcepts/s2s/name.def | 17 +++ .../grib2/localConcepts/s2s/paramId.def | 17 +++ .../grib2/localConcepts/s2s/shortName.def | 17 +++ definitions/grib2/localConcepts/s2s/units.def | 17 +++ .../grib2/localConcepts/tigge/cfVarName.def | 24 ++++ .../grib2/localConcepts/tigge/name.def | 24 ++++ .../grib2/localConcepts/tigge/paramId.def | 24 ++++ .../grib2/localConcepts/tigge/shortName.def | 24 ++++ .../grib2/localConcepts/tigge/units.def | 24 ++++ definitions/grib2/name.def | 106 ------------------ definitions/grib2/paramId.def | 106 ------------------ definitions/grib2/products_s2s.def | 2 +- definitions/grib2/products_tigge.def | 2 +- definitions/grib2/shortName.def | 106 ------------------ definitions/grib2/units.def | 106 ------------------ 31 files changed, 292 insertions(+), 682 deletions(-) create mode 100644 definitions/grib2/localConcepts/hydro/cfVarName.def create mode 100644 definitions/grib2/localConcepts/hydro/name.def create mode 100644 definitions/grib2/localConcepts/hydro/paramId.def create mode 100644 definitions/grib2/localConcepts/hydro/shortName.def create mode 100644 definitions/grib2/localConcepts/hydro/units.def create mode 100644 definitions/grib2/localConcepts/s2s/name.def create mode 100644 definitions/grib2/localConcepts/s2s/paramId.def create mode 100644 definitions/grib2/localConcepts/s2s/shortName.def create mode 100644 definitions/grib2/localConcepts/s2s/units.def create mode 100644 definitions/grib2/localConcepts/tigge/cfVarName.def create mode 100644 definitions/grib2/localConcepts/tigge/name.def create mode 100644 definitions/grib2/localConcepts/tigge/paramId.def create mode 100644 definitions/grib2/localConcepts/tigge/shortName.def create mode 100644 definitions/grib2/localConcepts/tigge/units.def diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index ed457d2fb..084ddade4 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -121,7 +121,6 @@ typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 100 ; scaleFactorOfFirstFixedSurface = 0 ; - is_uerra = 1 ; } #Wind speed 'ws' = { @@ -131,7 +130,6 @@ typeOfFirstFixedSurface = 103 ; scaledValueOfFirstFixedSurface = 200 ; scaleFactorOfFirstFixedSurface = 0 ; - is_uerra = 1 ; } #Unbalanced component of temperature 'uctp' = { @@ -193,7 +191,6 @@ scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 10 ; typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; typeOfFirstFixedSurface = 103 ; } #Specific rain water content @@ -275,18 +272,6 @@ scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } -#Minimum temperature at 2 metres since previous post-processing -'mn2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; } #Ozone mass mixing ratio 'o3' = { @@ -1107,7 +1092,6 @@ discipline = 0 ; parameterCategory = 2 ; parameterNumber = 22 ; - is_uerra = 0 ; typeOfFirstFixedSurface = 103 ; scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 10 ; @@ -1901,7 +1885,6 @@ typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 6 ; indicatorOfUnitForTimeRange = 1 ; - is_uerra = 0 ; } #Evaporation in the last 24 hours 'eva24' = { @@ -1912,29 +1895,6 @@ typeOfFirstFixedSurface = 1 ; typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 24 ; - is_uerra = 0 ; - } -#Total precipitation in the last 6 hours -'tp06' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - is_efas = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 6 ; - indicatorOfUnitForTimeRange = 1 ; - } -#Total precipitation in the last 24 hours -'tp24' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - lengthOfTimeRange = 24 ; - indicatorOfUnitForTimeRange = 1 ; - is_efas = 1 ; - typeOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 1 ; } #Fraction of snow cover 'fscov' = { @@ -2702,7 +2662,6 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - is_uerra = 0 ; typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 103 ; scaleFactorOfFirstFixedSurface = 0 ; @@ -2715,7 +2674,6 @@ discipline = 0 ; parameterCategory = 0 ; parameterNumber = 0 ; - is_uerra = 0 ; typeOfFirstFixedSurface = 103 ; typeOfStatisticalProcessing = 3 ; scaleFactorOfFirstFixedSurface = 0 ; @@ -4773,38 +4731,12 @@ parameterCategory = 0 ; parameterNumber = 22 ; } -#Soil Moisture -'sm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } #Soil Temperature 'st' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; } -#Soil Temperature -'st' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_tigge = 1 ; - } #Snow depth water equivalent 'sd' = { discipline = 0 ; diff --git a/definitions/grib2/local.98.41.def b/definitions/grib2/local.98.41.def index 48df66e8b..93c4ec4da 100644 --- a/definitions/grib2/local.98.41.def +++ b/definitions/grib2/local.98.41.def @@ -35,8 +35,8 @@ unsigned[2] anoffsetLast = missing(): dump, can_be_missing; unsigned[2] anoffsetFrequency = missing(): dump, can_be_missing; # Boolean -remove is_efas; -transient is_efas = 1; +#remove is_efas; +#transient is_efas = 1; transient lsdate_bug = 1: hidden; # See ECC-707 # Note: the key typeOfPostProcessing is in the PDTNs 70, 71, 72 and 73 diff --git a/definitions/grib2/localConcepts/cnmc/name.def b/definitions/grib2/localConcepts/cnmc/name.def index 43a9b0f0b..bdabd3447 100644 --- a/definitions/grib2/localConcepts/cnmc/name.def +++ b/definitions/grib2/localConcepts/cnmc/name.def @@ -5,14 +5,6 @@ parameterCategory = 2 ; parameterNumber = 0 ; } -#Sea ice area fraction -'Sea ice area fraction' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - subCentre = 102 ; - is_s2s = 1 ; - } #2 metre dewpoint temperature '2 metre dewpoint temperature' = { discipline = 0 ; @@ -22,17 +14,6 @@ scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; } -#2 metre dewpoint temperature -'2 metre dewpoint temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - subCentre = 102 ; - is_s2s = 1 ; - } #Pressure (S) (not reduced) 'Pressure (S) (not reduced)' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/cnmc/paramId.def b/definitions/grib2/localConcepts/cnmc/paramId.def index a0a324fe6..6721c08d6 100644 --- a/definitions/grib2/localConcepts/cnmc/paramId.def +++ b/definitions/grib2/localConcepts/cnmc/paramId.def @@ -5,14 +5,6 @@ parameterCategory = 2 ; parameterNumber = 0 ; } -#Sea ice area fraction -'31' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - subCentre = 102 ; - is_s2s = 1 ; - } #2 metre dewpoint temperature '168' = { discipline = 0 ; @@ -22,17 +14,6 @@ scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; } -#2 metre dewpoint temperature -'168' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - subCentre = 102 ; - is_s2s = 1 ; - } #Pressure (S) (not reduced) '500000' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/cnmc/shortName.def b/definitions/grib2/localConcepts/cnmc/shortName.def index 2d0496ee2..71bcf2db5 100644 --- a/definitions/grib2/localConcepts/cnmc/shortName.def +++ b/definitions/grib2/localConcepts/cnmc/shortName.def @@ -5,14 +5,6 @@ parameterCategory = 2 ; parameterNumber = 0 ; } -#Sea ice area fraction -'ci' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - subCentre = 102 ; - is_s2s = 1 ; - } #2 metre dewpoint temperature '2d' = { discipline = 0 ; @@ -22,17 +14,6 @@ scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; } -#2 metre dewpoint temperature -'2d' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - subCentre = 102 ; - is_s2s = 1 ; - } #Pressure (S) (not reduced) 'ps' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/cnmc/units.def b/definitions/grib2/localConcepts/cnmc/units.def index 177655a57..37051c5aa 100644 --- a/definitions/grib2/localConcepts/cnmc/units.def +++ b/definitions/grib2/localConcepts/cnmc/units.def @@ -5,14 +5,6 @@ parameterCategory = 2 ; parameterNumber = 0 ; } -#Sea ice area fraction -'(0 - 1)' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - subCentre = 102 ; - is_s2s = 1 ; - } #2 metre dewpoint temperature 'K' = { discipline = 0 ; @@ -22,17 +14,6 @@ scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; } -#2 metre dewpoint temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - subCentre = 102 ; - is_s2s = 1 ; - } #Pressure (S) (not reduced) 'Pa' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/egrr/cfVarName.def b/definitions/grib2/localConcepts/egrr/cfVarName.def index 99a9945ed..432101fc9 100644 --- a/definitions/grib2/localConcepts/egrr/cfVarName.def +++ b/definitions/grib2/localConcepts/egrr/cfVarName.def @@ -1,26 +1,4 @@ # Automatically generated by ./create_def.pl, do not edit -#Maximum temperature at 2 metres since previous post-processing -'mx2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } -#Minimum temperature at 2 metres since previous post-processing -'mn2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - } #Maximum temperature at 2 metres in the last 6 hours 'mx2t6' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/egrr/name.def b/definitions/grib2/localConcepts/egrr/name.def index f1ce0156a..b1b4c5700 100644 --- a/definitions/grib2/localConcepts/egrr/name.def +++ b/definitions/grib2/localConcepts/egrr/name.def @@ -1,26 +1,4 @@ # Automatically generated by ./create_def.pl, do not edit -#Maximum temperature at 2 metres since previous post-processing -'Maximum temperature at 2 metres since previous post-processing' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#Minimum temperature at 2 metres since previous post-processing -'Minimum temperature at 2 metres since previous post-processing' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; - } #Maximum temperature at 2 metres in the last 6 hours 'Maximum temperature at 2 metres in the last 6 hours' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/egrr/paramId.def b/definitions/grib2/localConcepts/egrr/paramId.def index 561ef8625..a3ccb82c4 100644 --- a/definitions/grib2/localConcepts/egrr/paramId.def +++ b/definitions/grib2/localConcepts/egrr/paramId.def @@ -1,26 +1,4 @@ # Automatically generated by ./create_def.pl, do not edit -#Maximum temperature at 2 metres since previous post-processing -'201' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 15 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - } -#Minimum temperature at 2 metres since previous post-processing -'202' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - typeOfStatisticalProcessing = 3 ; - } #Maximum temperature at 2 metres in the last 6 hours '121' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/egrr/shortName.def b/definitions/grib2/localConcepts/egrr/shortName.def index 3a824a001..93aedfec9 100644 --- a/definitions/grib2/localConcepts/egrr/shortName.def +++ b/definitions/grib2/localConcepts/egrr/shortName.def @@ -1,26 +1,4 @@ # Automatically generated by ./create_def.pl, do not edit -#Maximum temperature at 2 metres since previous post-processing -'mx2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } -#Minimum temperature at 2 metres since previous post-processing -'mn2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfStatisticalProcessing = 3 ; - is_uerra = 1 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - } #Maximum temperature at 2 metres in the last 6 hours 'mx2t6' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/egrr/units.def b/definitions/grib2/localConcepts/egrr/units.def index 8e1c3f3ad..9847903a6 100644 --- a/definitions/grib2/localConcepts/egrr/units.def +++ b/definitions/grib2/localConcepts/egrr/units.def @@ -1,26 +1,4 @@ # Automatically generated by ./create_def.pl, do not edit -#Maximum temperature at 2 metres since previous post-processing -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - is_uerra = 1 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - } -#Minimum temperature at 2 metres since previous post-processing -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - scaledValueOfFirstFixedSurface = 15 ; - scaleFactorOfFirstFixedSurface = 1 ; - typeOfStatisticalProcessing = 3 ; - typeOfFirstFixedSurface = 103 ; - is_uerra = 1 ; - } #Maximum temperature at 2 metres in the last 6 hours 'K' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/hydro/cfVarName.def b/definitions/grib2/localConcepts/hydro/cfVarName.def new file mode 100644 index 000000000..40d4a9c61 --- /dev/null +++ b/definitions/grib2/localConcepts/hydro/cfVarName.def @@ -0,0 +1,20 @@ +#Total precipitation in the last 6 hours +'tp06' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Total precipitation in the last 24 hours +'tp24' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + lengthOfTimeRange = 24 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + } diff --git a/definitions/grib2/localConcepts/hydro/name.def b/definitions/grib2/localConcepts/hydro/name.def new file mode 100644 index 000000000..29be30ae1 --- /dev/null +++ b/definitions/grib2/localConcepts/hydro/name.def @@ -0,0 +1,20 @@ +#Total precipitation in the last 6 hours +'Total precipitation in the last 6 hours' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + } +#Total precipitation in the last 24 hours +'Total precipitation in the last 24 hours' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } diff --git a/definitions/grib2/localConcepts/hydro/paramId.def b/definitions/grib2/localConcepts/hydro/paramId.def new file mode 100644 index 000000000..a73020f4a --- /dev/null +++ b/definitions/grib2/localConcepts/hydro/paramId.def @@ -0,0 +1,20 @@ +#Total precipitation in the last 6 hours +'260267' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + } +#Total precipitation in the last 24 hours +'260268' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } diff --git a/definitions/grib2/localConcepts/hydro/shortName.def b/definitions/grib2/localConcepts/hydro/shortName.def new file mode 100644 index 000000000..2f3ea9f11 --- /dev/null +++ b/definitions/grib2/localConcepts/hydro/shortName.def @@ -0,0 +1,20 @@ +#Total precipitation in the last 6 hours +'tp06' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + } +#Total precipitation in the last 24 hours +'tp24' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } diff --git a/definitions/grib2/localConcepts/hydro/units.def b/definitions/grib2/localConcepts/hydro/units.def new file mode 100644 index 000000000..25290e5ad --- /dev/null +++ b/definitions/grib2/localConcepts/hydro/units.def @@ -0,0 +1,20 @@ +#Total precipitation in the last 6 hours +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + } +#Total precipitation in the last 24 hours +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 52 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } diff --git a/definitions/grib2/localConcepts/s2s/name.def b/definitions/grib2/localConcepts/s2s/name.def new file mode 100644 index 000000000..3bb3ed9a5 --- /dev/null +++ b/definitions/grib2/localConcepts/s2s/name.def @@ -0,0 +1,17 @@ +#Sea ice area fraction +'Sea ice area fraction' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + subCentre = 102 ; + } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + subCentre = 102 ; + } diff --git a/definitions/grib2/localConcepts/s2s/paramId.def b/definitions/grib2/localConcepts/s2s/paramId.def new file mode 100644 index 000000000..f2bcf79bf --- /dev/null +++ b/definitions/grib2/localConcepts/s2s/paramId.def @@ -0,0 +1,17 @@ +#Sea ice area fraction +'31' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + subCentre = 102 ; + } +#2 metre dewpoint temperature +'168' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + subCentre = 102 ; + } diff --git a/definitions/grib2/localConcepts/s2s/shortName.def b/definitions/grib2/localConcepts/s2s/shortName.def new file mode 100644 index 000000000..6d210a750 --- /dev/null +++ b/definitions/grib2/localConcepts/s2s/shortName.def @@ -0,0 +1,17 @@ +#Sea ice area fraction +'ci' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + subCentre = 102 ; + } +#2 metre dewpoint temperature +'2d' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + subCentre = 102 ; + } diff --git a/definitions/grib2/localConcepts/s2s/units.def b/definitions/grib2/localConcepts/s2s/units.def new file mode 100644 index 000000000..2b0a562ab --- /dev/null +++ b/definitions/grib2/localConcepts/s2s/units.def @@ -0,0 +1,17 @@ +#Sea ice area fraction +'(0 - 1)' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + subCentre = 102 ; + } +#2 metre dewpoint temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + subCentre = 102 ; + } diff --git a/definitions/grib2/localConcepts/tigge/cfVarName.def b/definitions/grib2/localConcepts/tigge/cfVarName.def new file mode 100644 index 000000000..d6762bcdc --- /dev/null +++ b/definitions/grib2/localConcepts/tigge/cfVarName.def @@ -0,0 +1,24 @@ +#Soil Moisture +'sm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Soil Temperature +'st' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + } diff --git a/definitions/grib2/localConcepts/tigge/name.def b/definitions/grib2/localConcepts/tigge/name.def new file mode 100644 index 000000000..b79c43cef --- /dev/null +++ b/definitions/grib2/localConcepts/tigge/name.def @@ -0,0 +1,24 @@ +#Soil Moisture +'Soil Moisture' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Soil Temperature +'Soil Temperature' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; +} diff --git a/definitions/grib2/localConcepts/tigge/paramId.def b/definitions/grib2/localConcepts/tigge/paramId.def new file mode 100644 index 000000000..0d906699f --- /dev/null +++ b/definitions/grib2/localConcepts/tigge/paramId.def @@ -0,0 +1,24 @@ +#Soil Moisture +'228039' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Soil Temperature +'228139' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } diff --git a/definitions/grib2/localConcepts/tigge/shortName.def b/definitions/grib2/localConcepts/tigge/shortName.def new file mode 100644 index 000000000..16ddd8763 --- /dev/null +++ b/definitions/grib2/localConcepts/tigge/shortName.def @@ -0,0 +1,24 @@ +#Soil Moisture +'sm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Soil Temperature +'st' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } diff --git a/definitions/grib2/localConcepts/tigge/units.def b/definitions/grib2/localConcepts/tigge/units.def new file mode 100644 index 000000000..2971af794 --- /dev/null +++ b/definitions/grib2/localConcepts/tigge/units.def @@ -0,0 +1,24 @@ +#Soil Moisture +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } +#Soil Temperature +'K' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + } diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index 335d681ba..74bb8a210 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -113,26 +113,6 @@ parameterCategory = 2 ; parameterNumber = 1 ; } -#Wind speed -'Wind speed' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_uerra = 1 ; - } -#Wind speed -'Wind speed' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 200 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_uerra = 1 ; - } #Unbalanced component of temperature 'Unbalanced component of temperature' = { discipline = 0 ; @@ -185,17 +165,6 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } -#10 metre wind gust since previous post-processing -'10 metre wind gust since previous post-processing' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } #Specific rain water content 'Specific rain water content' = { discipline = 0 ; @@ -266,28 +235,6 @@ parameterCategory = 2 ; parameterNumber = 37 ; } -#Maximum temperature at 2 metres since previous post-processing -'Maximum temperature at 2 metres since previous post-processing' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } -#Minimum temperature at 2 metres since previous post-processing -'Minimum temperature at 2 metres since previous post-processing' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - is_uerra = 1 ; - } #Ozone mass mixing ratio 'Ozone mass mixing ratio' = { discipline = 0 ; @@ -1113,7 +1060,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 2 ; lengthOfTimeRange = 3 ; - is_uerra = 0 ; } #Relative humidity with respect to water 'Relative humidity with respect to water' = { @@ -1901,7 +1847,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 6 ; - is_uerra = 0 ; } #Evaporation in the last 24 hours 'Evaporation in the last 24 hours' = { @@ -1912,29 +1857,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 24 ; - is_uerra = 0 ; - } -#Total precipitation in the last 6 hours -'Total precipitation in the last 6 hours' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 6 ; - is_efas = 1 ; - } -#Total precipitation in the last 24 hours -'Total precipitation in the last 24 hours' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; - is_efas = 1 ; } #Fraction of snow cover 'Fraction of snow cover' = { @@ -2708,7 +2630,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 2 ; lengthOfTimeRange = 6 ; - is_uerra = 0 ; } #Minimum temperature at 2 metres in the last 6 hours 'Minimum temperature at 2 metres in the last 6 hours' = { @@ -2721,7 +2642,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 3 ; lengthOfTimeRange = 6 ; - is_uerra = 0 ; } #Geopotential 'Geopotential' = { @@ -4773,38 +4693,12 @@ parameterCategory = 0 ; parameterNumber = 22 ; } -#Soil Moisture -'Soil Moisture' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } #Soil Temperature 'Soil Temperature' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; } -#Soil Temperature -'Soil Temperature' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } #Snow depth water equivalent 'Snow depth water equivalent' = { discipline = 0 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index 56f9a4544..c81359224 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -113,26 +113,6 @@ parameterCategory = 2 ; parameterNumber = 1 ; } -#Wind speed -'10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_uerra = 1 ; - } -#Wind speed -'10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 200 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_uerra = 1 ; - } #Unbalanced component of temperature '21' = { discipline = 0 ; @@ -185,17 +165,6 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } -#10 metre wind gust since previous post-processing -'49' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } #Specific rain water content '75' = { discipline = 0 ; @@ -266,28 +235,6 @@ parameterCategory = 2 ; parameterNumber = 37 ; } -#Maximum temperature at 2 metres since previous post-processing -'201' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } -#Minimum temperature at 2 metres since previous post-processing -'202' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - is_uerra = 1 ; - } #Ozone mass mixing ratio '203' = { discipline = 0 ; @@ -1113,7 +1060,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 2 ; lengthOfTimeRange = 3 ; - is_uerra = 0 ; } #Relative humidity with respect to water '228030' = { @@ -1901,7 +1847,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 6 ; - is_uerra = 0 ; } #Evaporation in the last 24 hours '260266' = { @@ -1912,29 +1857,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 24 ; - is_uerra = 0 ; - } -#Total precipitation in the last 6 hours -'260267' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 6 ; - is_efas = 1 ; - } -#Total precipitation in the last 24 hours -'260268' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; - is_efas = 1 ; } #Fraction of snow cover '260289' = { @@ -2708,7 +2630,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 2 ; lengthOfTimeRange = 6 ; - is_uerra = 0 ; } #Minimum temperature at 2 metres in the last 6 hours '122' = { @@ -2721,7 +2642,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 3 ; lengthOfTimeRange = 6 ; - is_uerra = 0 ; } #Geopotential '129' = { @@ -4773,38 +4693,12 @@ parameterCategory = 0 ; parameterNumber = 22 ; } -#Soil Moisture -'228039' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } #Soil Temperature '228139' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; } -#Soil Temperature -'228139' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } #Snow depth water equivalent '228141' = { discipline = 0 ; diff --git a/definitions/grib2/products_s2s.def b/definitions/grib2/products_s2s.def index 48d09e587..99e686f73 100644 --- a/definitions/grib2/products_s2s.def +++ b/definitions/grib2/products_s2s.def @@ -3,7 +3,7 @@ # S2S constant marsClass = 's2'; constant marsModel = 'glob'; -alias is_s2s = one; +#alias is_s2s = one; alias parameter.paramId=paramId; alias parameter.shortName=shortName; diff --git a/definitions/grib2/products_tigge.def b/definitions/grib2/products_tigge.def index 9a3a4ae81..adf79db7f 100644 --- a/definitions/grib2/products_tigge.def +++ b/definitions/grib2/products_tigge.def @@ -3,7 +3,7 @@ # Tigge constant marsClass = 'ti'; constant marsModel = 'glob'; -alias is_tigge = one; +#alias is_tigge = one; alias tigge_short_name=shortName; alias short_name=shortName; diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 70b7ebeea..239871d9a 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -113,26 +113,6 @@ parameterCategory = 2 ; parameterNumber = 1 ; } -#Wind speed -'ws' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_uerra = 1 ; - } -#Wind speed -'ws' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 200 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_uerra = 1 ; - } #Unbalanced component of temperature 'uctp' = { discipline = 0 ; @@ -185,17 +165,6 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } -#10 metre wind gust since previous post-processing -'10fg' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } #Specific rain water content 'crwc' = { discipline = 0 ; @@ -266,28 +235,6 @@ parameterCategory = 2 ; parameterNumber = 37 ; } -#Maximum temperature at 2 metres since previous post-processing -'mx2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } -#Minimum temperature at 2 metres since previous post-processing -'mn2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - is_uerra = 1 ; - } #Ozone mass mixing ratio 'o3' = { discipline = 0 ; @@ -1113,7 +1060,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 2 ; lengthOfTimeRange = 3 ; - is_uerra = 0 ; } #Relative humidity with respect to water 'rhw' = { @@ -1901,7 +1847,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 6 ; - is_uerra = 0 ; } #Evaporation in the last 24 hours 'eva24' = { @@ -1912,29 +1857,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 24 ; - is_uerra = 0 ; - } -#Total precipitation in the last 6 hours -'tp06' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 6 ; - is_efas = 1 ; - } -#Total precipitation in the last 24 hours -'tp24' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; - is_efas = 1 ; } #Fraction of snow cover 'fscov' = { @@ -2708,7 +2630,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 2 ; lengthOfTimeRange = 6 ; - is_uerra = 0 ; } #Minimum temperature at 2 metres in the last 6 hours 'mn2t6' = { @@ -2721,7 +2642,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 3 ; lengthOfTimeRange = 6 ; - is_uerra = 0 ; } #Geopotential 'z' = { @@ -4773,38 +4693,12 @@ parameterCategory = 0 ; parameterNumber = 22 ; } -#Soil Moisture -'sm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } #Soil Temperature 'st' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; } -#Soil Temperature -'st' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } #Snow depth water equivalent 'sd' = { discipline = 0 ; diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index e5fc404be..e96670959 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -113,26 +113,6 @@ parameterCategory = 2 ; parameterNumber = 1 ; } -#Wind speed -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_uerra = 1 ; - } -#Wind speed -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 200 ; - scaleFactorOfFirstFixedSurface = 0 ; - is_uerra = 1 ; - } #Unbalanced component of temperature 'K' = { discipline = 0 ; @@ -185,17 +165,6 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } -#10 metre wind gust since previous post-processing -'m s**-1' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 10 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } #Specific rain water content 'kg kg**-1' = { discipline = 0 ; @@ -266,28 +235,6 @@ parameterCategory = 2 ; parameterNumber = 37 ; } -#Maximum temperature at 2 metres since previous post-processing -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 2 ; - is_uerra = 1 ; - } -#Minimum temperature at 2 metres since previous post-processing -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - typeOfStatisticalProcessing = 3 ; - is_uerra = 1 ; - } #Ozone mass mixing ratio 'kg kg**-1' = { discipline = 0 ; @@ -1113,7 +1060,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 2 ; lengthOfTimeRange = 3 ; - is_uerra = 0 ; } #Relative humidity with respect to water '%' = { @@ -1901,7 +1847,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 6 ; - is_uerra = 0 ; } #Evaporation in the last 24 hours 'kg m**-2' = { @@ -1912,29 +1857,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 24 ; - is_uerra = 0 ; - } -#Total precipitation in the last 6 hours -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 6 ; - is_efas = 1 ; - } -#Total precipitation in the last 24 hours -'kg m**-2' = { - discipline = 0 ; - parameterCategory = 1 ; - parameterNumber = 52 ; - typeOfFirstFixedSurface = 1 ; - indicatorOfUnitForTimeRange = 1 ; - typeOfStatisticalProcessing = 1 ; - lengthOfTimeRange = 24 ; - is_efas = 1 ; } #Fraction of snow cover 'Proportion' = { @@ -2708,7 +2630,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 2 ; lengthOfTimeRange = 6 ; - is_uerra = 0 ; } #Minimum temperature at 2 metres in the last 6 hours 'K' = { @@ -2721,7 +2642,6 @@ indicatorOfUnitForTimeRange = 1 ; typeOfStatisticalProcessing = 3 ; lengthOfTimeRange = 6 ; - is_uerra = 0 ; } #Geopotential 'm**2 s**-2' = { @@ -4773,38 +4693,12 @@ parameterCategory = 0 ; parameterNumber = 22 ; } -#Soil Moisture -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } #Soil Temperature 'K' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; } -#Soil Temperature -'K' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - is_tigge = 1 ; - } #Snow depth water equivalent 'kg m**-2' = { discipline = 0 ; From d4a46e1049840dab02ef4153ee6d1c506a5d488b Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Thu, 22 Jul 2021 13:24:28 +0100 Subject: [PATCH 555/683] switch mars levtype to be assigned from a concept --- definitions/grib2/marsLevtypeConcept.def | 62 +++++++++++++++++++++ definitions/grib2/template.4.horizontal.def | 3 +- 2 files changed, 64 insertions(+), 1 deletion(-) create mode 100644 definitions/grib2/marsLevtypeConcept.def diff --git a/definitions/grib2/marsLevtypeConcept.def b/definitions/grib2/marsLevtypeConcept.def new file mode 100644 index 000000000..ccfbfea4c --- /dev/null +++ b/definitions/grib2/marsLevtypeConcept.def @@ -0,0 +1,62 @@ +# Concept marsLevtype +'sfc' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=255;} +#'entireAtmosphere' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=8;} +#'entireOcean' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=9;} +#'cloudBase' = {typeOfFirstFixedSurface=2; typeOfSecondFixedSurface=255;} +#'cloudTop' = {typeOfFirstFixedSurface=3; typeOfSecondFixedSurface=255;} +#'isothermZero' = {typeOfFirstFixedSurface=4; typeOfSecondFixedSurface=255;} +#'adiabaticCondensation' = {typeOfFirstFixedSurface=5; typeOfSecondFixedSurface=255;} +#'maxWind' = {typeOfFirstFixedSurface=6; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=7; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=8; typeOfSecondFixedSurface=255;} +#'seaBottom' = {typeOfFirstFixedSurface=9; typeOfSecondFixedSurface=255;} +# Note: We already had 'entireAtmosphere' mapped before adding this one so had to choose another name +#'atmosphere' = {typeOfFirstFixedSurface=10; typeOfSecondFixedSurface=255;} +#'mostUnstableParcel' = {typeOfFirstFixedSurface=17; typeOfSecondFixedSurface=255;} +#'mixedLayerParcel' = {typeOfFirstFixedSurface=18; typeOfSecondFixedSurface=255;} +#'isothermal' = {typeOfFirstFixedSurface=20; typeOfSecondFixedSurface=255;} +'pl' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=255;} +#'isobaricInhPa' = {typeOfFirstFixedSurface=100; pressureUnits='hPa'; typeOfSecondFixedSurface=255;} +#'isobaricLayer' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=100;} +'sfc' = {typeOfFirstFixedSurface=101; typeOfSecondFixedSurface=255;} +#'heightAboveSea' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=255;} +#'heightAboveSeaLayer' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=102;} +'sfc' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=103;} +#'sigma' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=255;} +#'sigmaLayer' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=104;} +#'hybrid' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=255;} +#'hybridHeight' = {typeOfFirstFixedSurface=118; typeOfSecondFixedSurface=255;} +'ml' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=105;} +'sfc' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=106;} +'pt' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=255;} +'pt' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=107;} +#'pressureFromGround' = {typeOfFirstFixedSurface=108; typeOfSecondFixedSurface=255;} +#'pressureFromGroundLayer' = {typeOfFirstFixedSurface=108; typeOfSecondFixedSurface=108;} +'pv' = {typeOfFirstFixedSurface=109; typeOfSecondFixedSurface=255;} +#'eta' = {typeOfFirstFixedSurface=111; typeOfSecondFixedSurface=255;} +'sol' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=255;} +#'snowLayer' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=114;} +#'genericMixedLayerDepth' = {typeOfFirstFixedSurface=117; typeOfSecondFixedSurface=255;} +'sol' = {typeOfFirstFixedSurface=151; typeOfSecondFixedSurface=255;} +'sol' = {typeOfFirstFixedSurface=151; typeOfSecondFixedSurface=151;} +'sol' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=255;} +'sol' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=152;} +# In the case of Generalized vertical height coordinates, NV must be 6 +#'generalVertical' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; NV=6;} +#'generalVerticalLayer' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; typeOfSecondFixedSurface=150; NV=6;} +#'depthBelowSea' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=160; scaleFactorOfFirstFixedSurface=0; scaledValueOfFirstFixedSurface=0; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=160;} +'o2d' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=9;} +'o3d' = {typeOfFirstFixedSurface=168; typeOfSecondFixedSurface=255;} +'o3d' = {typeOfFirstFixedSurface=168; typeOfSecondFixedSurface=168;} +'o2d' = {typeOfFirstFixedSurface=169; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=170; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=171; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=174; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=175; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=176; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=174; typeOfSecondFixedSurface=176;} +'o2d' = {typeOfFirstFixedSurface=175; typeOfSecondFixedSurface=176;} diff --git a/definitions/grib2/template.4.horizontal.def b/definitions/grib2/template.4.horizontal.def index 071ae07b0..9f26273cb 100755 --- a/definitions/grib2/template.4.horizontal.def +++ b/definitions/grib2/template.4.horizontal.def @@ -74,7 +74,8 @@ if (extraDim) { alias mars.levelist = level; } } - alias mars.levtype = typeOfFirstFixedSurface; + #alias mars.levtype = typeOfFirstFixedSurface; + concept mars.levtype (unknown,"marsLevtypeConcept.def",conceptsDir2,conceptsDir1); # GRIB-372: levelist alias does not pertain to surface parameters if (levtype is "sfc") { unalias mars.levelist; From ac05da089c8bef8ce4f4c56325ed7f2061de6584 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Fri, 23 Jul 2021 10:04:16 +0100 Subject: [PATCH 556/683] cleanup new marsLevtype concept --- definitions/grib2/marsLevtypeConcept.def | 51 +++++++----------------- 1 file changed, 14 insertions(+), 37 deletions(-) diff --git a/definitions/grib2/marsLevtypeConcept.def b/definitions/grib2/marsLevtypeConcept.def index ccfbfea4c..0d9517e6f 100644 --- a/definitions/grib2/marsLevtypeConcept.def +++ b/definitions/grib2/marsLevtypeConcept.def @@ -1,55 +1,31 @@ # Concept marsLevtype -'sfc' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=255;} -#'entireAtmosphere' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=8;} -#'entireOcean' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=9;} -#'cloudBase' = {typeOfFirstFixedSurface=2; typeOfSecondFixedSurface=255;} -#'cloudTop' = {typeOfFirstFixedSurface=3; typeOfSecondFixedSurface=255;} -#'isothermZero' = {typeOfFirstFixedSurface=4; typeOfSecondFixedSurface=255;} -#'adiabaticCondensation' = {typeOfFirstFixedSurface=5; typeOfSecondFixedSurface=255;} -#'maxWind' = {typeOfFirstFixedSurface=6; typeOfSecondFixedSurface=255;} -'sfc' = {typeOfFirstFixedSurface=7; typeOfSecondFixedSurface=255;} -'sfc' = {typeOfFirstFixedSurface=8; typeOfSecondFixedSurface=255;} -#'seaBottom' = {typeOfFirstFixedSurface=9; typeOfSecondFixedSurface=255;} -# Note: We already had 'entireAtmosphere' mapped before adding this one so had to choose another name -#'atmosphere' = {typeOfFirstFixedSurface=10; typeOfSecondFixedSurface=255;} -#'mostUnstableParcel' = {typeOfFirstFixedSurface=17; typeOfSecondFixedSurface=255;} -#'mixedLayerParcel' = {typeOfFirstFixedSurface=18; typeOfSecondFixedSurface=255;} -#'isothermal' = {typeOfFirstFixedSurface=20; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=7; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=8; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=17; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=18; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=20; scaleFactorOfFirstFixedSurface=-2; scaledValueOfFirstFixedSurface=29315; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=20; typeOfSecondFixedSurface=255;} 'pl' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=255;} -#'isobaricInhPa' = {typeOfFirstFixedSurface=100; pressureUnits='hPa'; typeOfSecondFixedSurface=255;} -#'isobaricLayer' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=100;} 'sfc' = {typeOfFirstFixedSurface=101; typeOfSecondFixedSurface=255;} -#'heightAboveSea' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=255;} -#'heightAboveSeaLayer' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=102;} 'sfc' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=255;} -'sfc' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=103;} -#'sigma' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=255;} -#'sigmaLayer' = {typeOfFirstFixedSurface=104; typeOfSecondFixedSurface=104;} -#'hybrid' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=255;} -#'hybridHeight' = {typeOfFirstFixedSurface=118; typeOfSecondFixedSurface=255;} -'ml' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=105;} +'ml' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=255;} 'sfc' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=255;} -'sfc' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=106;} 'pt' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=255;} -'pt' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=107;} -#'pressureFromGround' = {typeOfFirstFixedSurface=108; typeOfSecondFixedSurface=255;} -#'pressureFromGroundLayer' = {typeOfFirstFixedSurface=108; typeOfSecondFixedSurface=108;} 'pv' = {typeOfFirstFixedSurface=109; typeOfSecondFixedSurface=255;} -#'eta' = {typeOfFirstFixedSurface=111; typeOfSecondFixedSurface=255;} 'sol' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=255;} -#'snowLayer' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=114;} -#'genericMixedLayerDepth' = {typeOfFirstFixedSurface=117; typeOfSecondFixedSurface=255;} +'hhl' = {typeOfFirstFixedSurface=118; typeOfSecondFixedSurface=255;} +'hpl' = {typeOfFirstFixedSurface=119; typeOfSecondFixedSurface=255;} 'sol' = {typeOfFirstFixedSurface=151; typeOfSecondFixedSurface=255;} 'sol' = {typeOfFirstFixedSurface=151; typeOfSecondFixedSurface=151;} 'sol' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=255;} 'sol' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=152;} -# In the case of Generalized vertical height coordinates, NV must be 6 -#'generalVertical' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; NV=6;} -#'generalVerticalLayer' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; typeOfSecondFixedSurface=150; NV=6;} -#'depthBelowSea' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=255;} 'o2d' = {typeOfFirstFixedSurface=160; scaleFactorOfFirstFixedSurface=0; scaledValueOfFirstFixedSurface=0; typeOfSecondFixedSurface=255;} 'o2d' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=160;} 'o2d' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=9;} +'sfc' = {typeOfFirstFixedSurface=162; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=166; typeOfSecondFixedSurface=255;} 'o3d' = {typeOfFirstFixedSurface=168; typeOfSecondFixedSurface=255;} 'o3d' = {typeOfFirstFixedSurface=168; typeOfSecondFixedSurface=168;} 'o2d' = {typeOfFirstFixedSurface=169; typeOfSecondFixedSurface=255;} @@ -60,3 +36,4 @@ 'o2d' = {typeOfFirstFixedSurface=176; typeOfSecondFixedSurface=255;} 'o2d' = {typeOfFirstFixedSurface=174; typeOfSecondFixedSurface=176;} 'o2d' = {typeOfFirstFixedSurface=175; typeOfSecondFixedSurface=176;} +'sfc' = {typeOfFirstFixedSurface=177; typeOfSecondFixedSurface=255;} From 1e55a22d33e3b574176377f97960ed403d87759f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 23 Jul 2021 12:31:03 +0100 Subject: [PATCH 557/683] ECC-1264: GRIB2: Allow date and time of forecast to be 'missing' in local definition 98.41 --- .../grib2/grib2LocalSectionNumber.98.table | 2 +- definitions/grib2/local.98.41.def | 15 +++++++++------ tests/grib_efas.sh | 4 ++++ 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/definitions/grib2/grib2LocalSectionNumber.98.table b/definitions/grib2/grib2LocalSectionNumber.98.table index d57063c98..f2c144ebe 100644 --- a/definitions/grib2/grib2LocalSectionNumber.98.table +++ b/definitions/grib2/grib2LocalSectionNumber.98.table @@ -19,7 +19,7 @@ 36 36 MARS labelling for long window 4DVar system 38 38 4D variational increments for long window 4DVar system 39 39 4DVar model errors for long window 4Dvar system -41 41 The European Flood Awareness System +41 41 The Flood Awareness System 42 42 Lead Centre for Wave Forecast Verification 192 192 Multiple ECMWF local definitions 300 300 Multi-dimensional parameters diff --git a/definitions/grib2/local.98.41.def b/definitions/grib2/local.98.41.def index 48df66e8b..924d6d6a3 100644 --- a/definitions/grib2/local.98.41.def +++ b/definitions/grib2/local.98.41.def @@ -1,6 +1,6 @@ # (C) Copyright 2005- ECMWF. -# Local definition 41 - The European Flood Awareness System +# Local definition 41 - The Flood Awareness System # isFillup can be 0, 1 or missing # When it is 0, it means "Water Balance" @@ -8,11 +8,13 @@ unsigned[1] isFillup = missing() : dump, can_be_missing; alias local.isFillup = isFillup; # Forecast Reference Date and Time -unsigned[2] yearOfForecast = year : dump; -unsigned[1] monthOfForecast = month : dump; -unsigned[1] dayOfForecast = day : dump; -unsigned[1] hourOfForecast = hour : dump; -unsigned[1] minuteOfForecast = minute : dump; +# ECC-1264: When isFillup is missing, these should also be set to missing +# and dateOfForecast, timeOfForecast, anoffset are not relevant +unsigned[2] yearOfForecast = year : dump, can_be_missing; +unsigned[1] monthOfForecast = month : dump, can_be_missing; +unsigned[1] dayOfForecast = day : dump, can_be_missing; +unsigned[1] hourOfForecast = hour : dump, can_be_missing; +unsigned[1] minuteOfForecast = minute : dump, can_be_missing; constant secondOfForecast = 0; meta dateOfForecast g2date(yearOfForecast,monthOfForecast, dayOfForecast) : dump; meta timeOfForecast time (hourOfForecast,minuteOfForecast,secondOfForecast) : dump; @@ -29,6 +31,7 @@ meta _anoffset round(diffInHours, 10): dump,long_type; transient anoffset = _anoffset; # needed to force anoffset to be integer alias local.anoffset = anoffset; + # ECC-662 unsigned[2] anoffsetFirst = missing(): dump, can_be_missing; unsigned[2] anoffsetLast = missing(): dump, can_be_missing; diff --git a/tests/grib_efas.sh b/tests/grib_efas.sh index 2e60766e5..6e2d563d5 100755 --- a/tests/grib_efas.sh +++ b/tests/grib_efas.sh @@ -104,6 +104,10 @@ grib_check_key_equals $temp2 mars.hdate,mars.date '20070323 20191213' anoffset=`${tools_dir}/grib_get -f -p mars.anoffset $temp2` [ "$anoffset" = "not_found" ] +# ECC-1264 +${tools_dir}/grib_set -s localDefinitionNumber=41,yearOfForecast=missing,monthOfForecast=missing $temp1 $temp2 +#${tools_dir}/grib_dump -O $temp2 + # Clean up rm -f $sample $temp1 $temp2 $temp3 From 56bb84d35b2b271fb5e543308b294c3981778eab Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Fri, 23 Jul 2021 15:34:47 +0100 Subject: [PATCH 558/683] adding missing levtype concept --- definitions/grib2/marsLevtypeConcept.def | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/definitions/grib2/marsLevtypeConcept.def b/definitions/grib2/marsLevtypeConcept.def index 0d9517e6f..2d431259f 100644 --- a/definitions/grib2/marsLevtypeConcept.def +++ b/definitions/grib2/marsLevtypeConcept.def @@ -1,5 +1,7 @@ # Concept marsLevtype 'sfc' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=8;} +'o2d' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=9;} 'sfc' = {typeOfFirstFixedSurface=7; typeOfSecondFixedSurface=255;} 'sfc' = {typeOfFirstFixedSurface=8; typeOfSecondFixedSurface=255;} 'sfc' = {typeOfFirstFixedSurface=17; typeOfSecondFixedSurface=255;} @@ -8,9 +10,11 @@ 'o2d' = {typeOfFirstFixedSurface=20; typeOfSecondFixedSurface=255;} 'pl' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=255;} 'sfc' = {typeOfFirstFixedSurface=101; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=255;} 'sfc' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=255;} 'ml' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=255;} 'sfc' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=106;typeOfSecondFixedSurface=106;} 'pt' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=255;} 'pv' = {typeOfFirstFixedSurface=109; typeOfSecondFixedSurface=255;} 'sol' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=255;} From b680da06f8defeeb84c04b5df6c539f13a1ec2e7 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 23 Jul 2021 15:46:09 +0100 Subject: [PATCH 559/683] MARS levtype: fix broken tests --- definitions/grib2/template.4.horizontal.def | 2 +- tests/grib_indexing.sh | 4 ++-- tests/grib_set.sh | 10 +++++----- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/definitions/grib2/template.4.horizontal.def b/definitions/grib2/template.4.horizontal.def index 9f26273cb..771e6847d 100755 --- a/definitions/grib2/template.4.horizontal.def +++ b/definitions/grib2/template.4.horizontal.def @@ -75,7 +75,7 @@ if (extraDim) { } } #alias mars.levtype = typeOfFirstFixedSurface; - concept mars.levtype (unknown,"marsLevtypeConcept.def",conceptsDir2,conceptsDir1); + concept mars.levtype (unknown,"marsLevtypeConcept.def",conceptsDir2,conceptsDir1):no_copy; # GRIB-372: levelist alias does not pertain to surface parameters if (levtype is "sfc") { unalias mars.levelist; diff --git a/tests/grib_indexing.sh b/tests/grib_indexing.sh index 86abd7708..0dcd3e879 100755 --- a/tests/grib_indexing.sh +++ b/tests/grib_indexing.sh @@ -94,8 +94,8 @@ diff $tempRef $tempOut ${tools_dir}/grib_index_build -N -k mars.levtype -o $tempIndex ${data_dir}/tigge_cf_ecmwf.grib2 |\ grep -q "mars.levtype = { sfc, pl, pv, pt }" -${tools_dir}/grib_index_build -N -k mars.levtype:i -o $tempIndex ${data_dir}/tigge_cf_ecmwf.grib2 |\ - grep -q "mars.levtype = { 103, 1, 106, 100, 101, 8, 109, 107 }" +#${tools_dir}/grib_index_build -N -k mars.levtype:i -o $tempIndex ${data_dir}/tigge_cf_ecmwf.grib2 |\ +# grep -q "mars.levtype = { 103, 1, 106, 100, 101, 8, 109, 107 }" echo "grib_compare with index files..." # ------------------------------------ diff --git a/tests/grib_set.sh b/tests/grib_set.sh index 325d4168e..4930214f5 100755 --- a/tests/grib_set.sh +++ b/tests/grib_set.sh @@ -25,8 +25,8 @@ levtype=`${tools_dir}/grib_get -p levtype $outfile` centre=`${tools_dir}/grib_get -p centre $outfile` [ $centre = "cnmc" ] -levtype=`${tools_dir}/grib_get -p levtype:l $outfile` -[ $levtype -eq 100 ] +#levtype=`${tools_dir}/grib_get -p levtype:l $outfile` +#[ $levtype -eq 100 ] centre=`${tools_dir}/grib_get -p centre:l $outfile` [ $centre -eq 80 ] @@ -38,7 +38,7 @@ outfile=${data_dir}/set.grib2 rm -f $outfile -${tools_dir}/grib_set -v -p levtype:l,centre:s -s levtype:l=100,centre:s=cnmc $infile $outfile >$REDIRECT +${tools_dir}/grib_set -v -p levtype:l,centre:s -s levtype=pl,centre:s=cnmc $infile $outfile >$REDIRECT levtype=`${tools_dir}/grib_get -p levtype $outfile` [ $levtype = "pl" ] @@ -46,8 +46,8 @@ levtype=`${tools_dir}/grib_get -p levtype $outfile` centre=`${tools_dir}/grib_get -p centre $outfile` [ $centre = "cnmc" ] -levtype=`${tools_dir}/grib_get -p levtype:l $outfile` -[ $levtype -eq 100 ] +#levtype=`${tools_dir}/grib_get -p levtype:l $outfile` +#[ $levtype -eq 100 ] centre=`${tools_dir}/grib_get -p centre:l $outfile` [ $centre -eq 80 ] From 1c63f4b03d5706257bad05498eaf016f54f6cb9c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 26 Jul 2021 17:15:47 +0100 Subject: [PATCH 560/683] ECC-1265: grib_repair: endless loop --- tools/grib_repair.c | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/tools/grib_repair.c b/tools/grib_repair.c index 31228a094..d71d9e938 100644 --- a/tools/grib_repair.c +++ b/tools/grib_repair.c @@ -10,6 +10,8 @@ #include "grib_api_internal.h" +static const char* ENV_VAR = "ECCODES_GRIB_REPAIR_MAX_NUM_MESSAGES"; + static void usage(const char* name) { fprintf(stderr, "Usage: %s in out [bad]\n", name); @@ -25,8 +27,10 @@ int main(int argc, char** argv) char *cout, *cbad; size_t data_len = SIZE; - long count = 0; + unsigned long count = 0; + unsigned long MAX_NUM_MESSAGES = 100*1000; unsigned char* data; + char* sMaxNumMessages = NULL; if (argc != 3 && argc != 4) usage(argv[0]); @@ -56,14 +60,28 @@ int main(int argc, char** argv) bad = out; cbad = cout; } + + sMaxNumMessages = getenv(ENV_VAR); + if (sMaxNumMessages) { + long lmax = 0; + if (string_to_long(sMaxNumMessages, &lmax) == GRIB_SUCCESS) { + MAX_NUM_MESSAGES = lmax; + } + } for (;;) { size_t len = SIZE; long ret = wmo_read_grib_from_file(in, buffer, &len); if (ret == GRIB_END_OF_FILE && len == 0) break; + if (count > MAX_NUM_MESSAGES) { + /* ECC-1265 */ + printf("\nExceeded the maximum number of messages. Limit = %lu.\n", MAX_NUM_MESSAGES); + printf("This limit can be overridden by setting the environment variable %s.\n", ENV_VAR); + break; + } - printf("GRIB %ld: size: %ld code: %ld (%s)\n", ++count, (long)len, ret, grib_get_error_message(ret)); + printf("GRIB %lu: size: %ld code: %ld (%s)\n", ++count, (long)len, ret, grib_get_error_message(ret)); switch (ret) { case 0: @@ -80,7 +98,7 @@ int main(int argc, char** argv) len = data_len = SIZE; data = (unsigned char*)&buffer[0]; ret = grib_read_any_from_memory(NULL, &data, &data_len, buffer, &len); - printf(" -> GRIB %ld: size: %ld code: %ld (%s)\n", count, (long)len, ret, grib_get_error_message(ret)); + printf(" -> GRIB %lu: size: %ld code: %ld (%s)\n", count, (long)len, ret, grib_get_error_message(ret)); if (ret == 0) { if (fwrite(buffer, 1, len, bad) != len) { perror(cbad); From 7cce5f0cc6ae6ab98ef47a5e8710d5bac9678d76 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 28 Jul 2021 14:46:01 +0100 Subject: [PATCH 561/683] Warnings: conversion to 'size_t' from 'int' --- src/grib_bufr_descriptors_array.c | 2 +- src/grib_iarray.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/grib_bufr_descriptors_array.c b/src/grib_bufr_descriptors_array.c index d7109bf97..9fe074957 100644 --- a/src/grib_bufr_descriptors_array.c +++ b/src/grib_bufr_descriptors_array.c @@ -93,7 +93,7 @@ static bufr_descriptors_array* grib_bufr_descriptors_array_resize_to(bufr_descri static bufr_descriptors_array* grib_bufr_descriptors_array_resize(bufr_descriptors_array* v) { - const int newsize = v->incsize + v->size; + const size_t newsize = v->incsize + v->size; return grib_bufr_descriptors_array_resize_to(v, newsize); } diff --git a/src/grib_iarray.c b/src/grib_iarray.c index 2df15a4ce..8f4f3829c 100644 --- a/src/grib_iarray.c +++ b/src/grib_iarray.c @@ -126,7 +126,7 @@ static grib_iarray* grib_iarray_resize_to(grib_iarray* v, size_t newsize) static grib_iarray* grib_iarray_resize(grib_iarray* v) { - const int newsize = v->incsize + v->size; + const size_t newsize = v->incsize + v->size; return grib_iarray_resize_to(v, newsize); } From b70198151dbfb0b4a87f74de05fa64202af68ba3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 28 Jul 2021 15:11:10 +0100 Subject: [PATCH 562/683] ECC-1267: Performance: reduce number of calls to function 'grib_is_all_bits_one' --- src/grib_accessor_class_bufr_data_array.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/grib_accessor_class_bufr_data_array.c b/src/grib_accessor_class_bufr_data_array.c index 5f53f64a5..21feeac77 100644 --- a/src/grib_accessor_class_bufr_data_array.c +++ b/src/grib_accessor_class_bufr_data_array.c @@ -667,7 +667,7 @@ static grib_darray* decode_double_array(grib_context* c, unsigned char* data, lo } for (j = 0; j < self->numberOfSubsets; j++) { lval = grib_decode_size_t(data, pos, localWidth); - if (grib_is_all_bits_one(lval, localWidth) && canBeMissing) { + if (canBeMissing && grib_is_all_bits_one(lval, localWidth)) { dval = GRIB_MISSING_DOUBLE; } else { @@ -678,7 +678,7 @@ static grib_darray* decode_double_array(grib_context* c, unsigned char* data, lo } else { /* ECC-428 */ - if (grib_is_all_bits_one(lval, modifiedWidth) && canBeMissing) { + if (canBeMissing && grib_is_all_bits_one(lval, modifiedWidth)) { dval = GRIB_MISSING_DOUBLE; } else { @@ -1096,7 +1096,7 @@ static double decode_double_value(grib_context* c, unsigned char* data, long* po } lval = grib_decode_size_t(data, pos, modifiedWidth); - if (grib_is_all_bits_one(lval, modifiedWidth) && canBeMissing) { + if (canBeMissing && grib_is_all_bits_one(lval, modifiedWidth)) { dval = GRIB_MISSING_DOUBLE; } else { From 77490a8dc5bcac5aafb4a2be31ad9e6e64be7b30 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 29 Jul 2021 12:21:48 +0100 Subject: [PATCH 563/683] ECC-1268: eccodes_f90 library should link to threading library (pthreads/omp) --- CMakeLists.txt | 1 + fortran/CMakeLists.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0c758d250..8ecacfa11 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -274,6 +274,7 @@ if( HAVE_ECCODES_THREADS ) ecbuild_critical("Pthreads is not supported on your system: thread library found=[${CMAKE_THREAD_LIBS_INIT}]") endif() set( GRIB_PTHREADS 1 ) + set( THREADS_LIBRARIES Threads::Threads ) if( ${CMAKE_SYSTEM_NAME} MATCHES "Linux" ) set( GRIB_LINUX_PTHREADS 1 ) endif() diff --git a/fortran/CMakeLists.txt b/fortran/CMakeLists.txt index 7362750d7..e057469ed 100644 --- a/fortran/CMakeLists.txt +++ b/fortran/CMakeLists.txt @@ -49,7 +49,7 @@ if( HAVE_FORTRAN ) GENERATED grib_f90.f90 eccodes_f90.f90 PUBLIC_INCLUDES $ $ - PRIVATE_LIBS eccodes ) + PRIVATE_LIBS eccodes ${THREADS_LIBRARIES} ) if( DEFINED ecbuild_VERSION AND NOT ${ecbuild_VERSION} VERSION_LESS 3.1 ) # Installed module directory is not in the PUBLIC INCLUDES! From 36c37a016a4efeac92fe55952aed63ff8c88feb8 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 29 Jul 2021 13:18:20 +0100 Subject: [PATCH 564/683] ECC-1268: revert change (breaks libemos in CI) --- fortran/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fortran/CMakeLists.txt b/fortran/CMakeLists.txt index e057469ed..bb4cc1194 100644 --- a/fortran/CMakeLists.txt +++ b/fortran/CMakeLists.txt @@ -49,7 +49,8 @@ if( HAVE_FORTRAN ) GENERATED grib_f90.f90 eccodes_f90.f90 PUBLIC_INCLUDES $ $ - PRIVATE_LIBS eccodes ${THREADS_LIBRARIES} ) + PRIVATE_LIBS eccodes ) + # PRIVATE_LIBS eccodes ${THREADS_LIBRARIES} ) if( DEFINED ecbuild_VERSION AND NOT ${ecbuild_VERSION} VERSION_LESS 3.1 ) # Installed module directory is not in the PUBLIC INCLUDES! From 109146520601e350fe7a0577230113e3ba3e0093 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 29 Jul 2021 13:58:48 +0100 Subject: [PATCH 565/683] ECC-1268: revert change (breaks libemos in CI) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8ecacfa11..f22856c09 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -274,7 +274,7 @@ if( HAVE_ECCODES_THREADS ) ecbuild_critical("Pthreads is not supported on your system: thread library found=[${CMAKE_THREAD_LIBS_INIT}]") endif() set( GRIB_PTHREADS 1 ) - set( THREADS_LIBRARIES Threads::Threads ) + # set( THREADS_LIBRARIES Threads::Threads ) if( ${CMAKE_SYSTEM_NAME} MATCHES "Linux" ) set( GRIB_LINUX_PTHREADS 1 ) endif() From 0c69cc9658413defe0f87c1035368e82322a7b7e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 29 Jul 2021 15:31:38 +0100 Subject: [PATCH 566/683] ECC-1268: Second try --- CMakeLists.txt | 2 +- fortran/CMakeLists.txt | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f22856c09..c4265cfaf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -274,7 +274,7 @@ if( HAVE_ECCODES_THREADS ) ecbuild_critical("Pthreads is not supported on your system: thread library found=[${CMAKE_THREAD_LIBS_INIT}]") endif() set( GRIB_PTHREADS 1 ) - # set( THREADS_LIBRARIES Threads::Threads ) + set( ECCODES_PTHREADS_LIBRARIES Threads::Threads ) # ECC-1268 if( ${CMAKE_SYSTEM_NAME} MATCHES "Linux" ) set( GRIB_LINUX_PTHREADS 1 ) endif() diff --git a/fortran/CMakeLists.txt b/fortran/CMakeLists.txt index bb4cc1194..650296c06 100644 --- a/fortran/CMakeLists.txt +++ b/fortran/CMakeLists.txt @@ -49,8 +49,7 @@ if( HAVE_FORTRAN ) GENERATED grib_f90.f90 eccodes_f90.f90 PUBLIC_INCLUDES $ $ - PRIVATE_LIBS eccodes ) - # PRIVATE_LIBS eccodes ${THREADS_LIBRARIES} ) + PRIVATE_LIBS eccodes ${ECCODES_PTHREADS_LIBRARIES} ) if( DEFINED ecbuild_VERSION AND NOT ${ecbuild_VERSION} VERSION_LESS 3.1 ) # Installed module directory is not in the PUBLIC INCLUDES! From b10f441d794ec4d3d6187c6c091d7e8586e4d7ce Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 2 Aug 2021 16:41:20 +0100 Subject: [PATCH 567/683] Scripts: Fix check for type of fixed surface --- definitions/add_params_from_tsv.pl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/definitions/add_params_from_tsv.pl b/definitions/add_params_from_tsv.pl index 70d3979e8..ef32f2178 100755 --- a/definitions/add_params_from_tsv.pl +++ b/definitions/add_params_from_tsv.pl @@ -131,8 +131,10 @@ while (<>) { die "Error: paramID \"$paramId\" is not an integer (input row=$lcount)!\n" if (!is_integer($paramId)); die "Error: shortName \"$shortName\" has an invalid character (input row=$lcount)!\n" if ($shortName =~ /[ '"]/); die "Error: name \"$name\" should have uppercase 1st letter or digit (input row=$lcount)!\n" if ($name !~ /^[A-Z0-9]/); - die "Error: typeOfFirstFixedSurface \"$type1\" is not an integer (input row=$lcount)!\tPick a value from Code Table 4.5\n" if (!is_integer($type1)); - die "Error: typeOfSecondFixedSurface \"$type2\" is not an integer (input row=$lcount)!\tPick a value from Code Table 4.5\n" if (!is_integer($type2)); + die "Error: typeOfFirstFixedSurface \"$type1\" is not an integer (input row=$lcount)!\tPick a value from Code Table 4.5\n" + if ($type1 ne "" && !is_integer($type1)); + die "Error: typeOfSecondFixedSurface \"$type2\" is not an integer (input row=$lcount)!\tPick a value from Code Table 4.5\n" + if ($type2 ne "" && !is_integer($type2)); $units = "~" if ($units eq ""); $cfVarName = $shortName; From 0a6aa92f545f33018e91088cbb66bef76bc0f057 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 2 Aug 2021 16:52:42 +0100 Subject: [PATCH 568/683] Definitions: GRIB2 NCEP local table --- definitions/grib2/localConcepts/kwbc/name.def | 276 ++++++++++++++++++ .../grib2/localConcepts/kwbc/paramId.def | 276 ++++++++++++++++++ .../grib2/localConcepts/kwbc/shortName.def | 276 ++++++++++++++++++ .../grib2/localConcepts/kwbc/units.def | 276 ++++++++++++++++++ 4 files changed, 1104 insertions(+) diff --git a/definitions/grib2/localConcepts/kwbc/name.def b/definitions/grib2/localConcepts/kwbc/name.def index aa9759030..9b1810666 100644 --- a/definitions/grib2/localConcepts/kwbc/name.def +++ b/definitions/grib2/localConcepts/kwbc/name.def @@ -1649,3 +1649,279 @@ parameterCategory = 1 ; parameterNumber = 8 ; } +#Simulated Brightness Temperature for AMSRE on Aqua, Channel 10 +'Simulated Brightness Temperature for AMSRE on Aqua, Channel 10' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 11 ; +} +#Simulated Brightness Temperature for AMSRE on Aqua, Channel 11 +'Simulated Brightness Temperature for AMSRE on Aqua, Channel 11' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 12 ; +} +#Simulated Brightness Temperature for AMSRE on Aqua, Channel 12 +'Simulated Brightness Temperature for AMSRE on Aqua, Channel 12' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 13 ; +} +#Simulated Brightness Temperature for AMSRE on Aqua, Channel 9 +'Simulated Brightness Temperature for AMSRE on Aqua, Channel 9' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 10 ; +} +#Simulated Brightness Counts for GOES 12, Channel 3 +'Simulated Brightness Counts for GOES 12, Channel 3' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 4 ; +} +#Simulated Brightness Counts for GOES 12, Channel 4 +'Simulated Brightness Counts for GOES 12, Channel 4' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 5 ; +} +#Simulated Brightness Temperature for GOES 11, Channel 2 +'Simulated Brightness Temperature for GOES 11, Channel 2' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 6 ; +} +#Simulated Brightness Temperature for GOES 11, Channel 3 +'Simulated Brightness Temperature for GOES 11, Channel 3' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 7 ; +} +#Simulated Brightness Temperature for GOES 11, Channel 4 +'Simulated Brightness Temperature for GOES 11, Channel 4' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 8 ; +} +#Simulated Brightness Temperature for GOES 11, Channel 5 +'Simulated Brightness Temperature for GOES 11, Channel 5' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 9 ; +} +#Simulated Brightness Temperature for GOES 12, Channel 2 +'Simulated Brightness Temperature for GOES 12, Channel 2' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 0 ; +} +#Simulated Brightness Temperature for GOES 12, Channel 3 +'Simulated Brightness Temperature for GOES 12, Channel 3' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 1 ; +} +#Simulated Brightness Temperature for GOES 12, Channel 4 +'Simulated Brightness Temperature for GOES 12, Channel 4' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 2 ; +} +#Simulated Brightness Temperature for GOES 12, Channel 6 +'Simulated Brightness Temperature for GOES 12, Channel 6' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 3 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-10 +'Simulated Brightness Temperature for ABI GOES-16, Band-10' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 23 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-11 +'Simulated Brightness Temperature for ABI GOES-16, Band-11' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 24 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-12 +'Simulated Brightness Temperature for ABI GOES-16, Band-12' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 25 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-13 +'Simulated Brightness Temperature for ABI GOES-16, Band-13' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 26 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-14 +'Simulated Brightness Temperature for ABI GOES-16, Band-14' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 27 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-15 +'Simulated Brightness Temperature for ABI GOES-16, Band-15' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 28 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-16 +'Simulated Brightness Temperature for ABI GOES-16, Band-16' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 29 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-7 +'Simulated Brightness Temperature for ABI GOES-16, Band-7' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 20 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-8 +'Simulated Brightness Temperature for ABI GOES-16, Band-8' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 21 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-9 +'Simulated Brightness Temperature for ABI GOES-16, Band-9' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 22 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-10 +'Simulated Brightness Temperature for ABI GOES-17, Band-10' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 39 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-11 +'Simulated Brightness Temperature for ABI GOES-17, Band-11' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 40 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-12 +'Simulated Brightness Temperature for ABI GOES-17, Band-12' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 41 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-13 +'Simulated Brightness Temperature for ABI GOES-17, Band-13' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 42 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-14 +'Simulated Brightness Temperature for ABI GOES-17, Band-14' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 43 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-15 +'Simulated Brightness Temperature for ABI GOES-17, Band-15' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 44 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-16 +'Simulated Brightness Temperature for ABI GOES-17, Band-16' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 45 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-7 +'Simulated Brightness Temperature for ABI GOES-17, Band-7' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 36 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-8 +'Simulated Brightness Temperature for ABI GOES-17, Band-8' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 37 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-9 +'Simulated Brightness Temperature for ABI GOES-17, Band-9' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 38 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-1 +'Simulated Reflectance Factor for ABI GOES-16, Band-1' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 14 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-2 +'Simulated Reflectance Factor for ABI GOES-16, Band-2' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 15 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-3 +'Simulated Reflectance Factor for ABI GOES-16, Band-3' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 16 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-4 +'Simulated Reflectance Factor for ABI GOES-16, Band-4' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 17 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-5 +'Simulated Reflectance Factor for ABI GOES-16, Band-5' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 18 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-6 +'Simulated Reflectance Factor for ABI GOES-16, Band-6' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 19 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-1 +'Simulated Reflectance Factor for ABI GOES-17, Band-1' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 30 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-2 +'Simulated Reflectance Factor for ABI GOES-17, Band-2' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 31 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-3 +'Simulated Reflectance Factor for ABI GOES-17, Band-3' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 32 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-4 +'Simulated Reflectance Factor for ABI GOES-17, Band-4' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 33 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-5 +'Simulated Reflectance Factor for ABI GOES-17, Band-5' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 34 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-6 +'Simulated Reflectance Factor for ABI GOES-17, Band-6' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 35 ; +} diff --git a/definitions/grib2/localConcepts/kwbc/paramId.def b/definitions/grib2/localConcepts/kwbc/paramId.def index eba8b0bb0..9533c0969 100644 --- a/definitions/grib2/localConcepts/kwbc/paramId.def +++ b/definitions/grib2/localConcepts/kwbc/paramId.def @@ -1649,3 +1649,279 @@ parameterCategory = 1 ; parameterNumber = 8 ; } +#Simulated Brightness Temperature for AMSRE on Aqua, Channel 10 +'7001294' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 11 ; +} +#Simulated Brightness Temperature for AMSRE on Aqua, Channel 11 +'7001295' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 12 ; +} +#Simulated Brightness Temperature for AMSRE on Aqua, Channel 12 +'7001296' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 13 ; +} +#Simulated Brightness Temperature for AMSRE on Aqua, Channel 9 +'7001297' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 10 ; +} +#Simulated Brightness Counts for GOES 12, Channel 3 +'7001298' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 4 ; +} +#Simulated Brightness Counts for GOES 12, Channel 4 +'7001299' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 5 ; +} +#Simulated Brightness Temperature for GOES 11, Channel 2 +'7001300' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 6 ; +} +#Simulated Brightness Temperature for GOES 11, Channel 3 +'7001301' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 7 ; +} +#Simulated Brightness Temperature for GOES 11, Channel 4 +'7001302' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 8 ; +} +#Simulated Brightness Temperature for GOES 11, Channel 5 +'7001303' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 9 ; +} +#Simulated Brightness Temperature for GOES 12, Channel 2 +'7001304' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 0 ; +} +#Simulated Brightness Temperature for GOES 12, Channel 3 +'7001305' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 1 ; +} +#Simulated Brightness Temperature for GOES 12, Channel 4 +'7001306' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 2 ; +} +#Simulated Brightness Temperature for GOES 12, Channel 6 +'7001307' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 3 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-10 +'7001308' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 23 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-11 +'7001309' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 24 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-12 +'7001310' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 25 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-13 +'7001311' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 26 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-14 +'7001312' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 27 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-15 +'7001313' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 28 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-16 +'7001314' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 29 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-7 +'7001315' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 20 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-8 +'7001316' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 21 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-9 +'7001317' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 22 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-10 +'7001318' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 39 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-11 +'7001319' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 40 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-12 +'7001320' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 41 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-13 +'7001321' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 42 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-14 +'7001322' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 43 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-15 +'7001323' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 44 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-16 +'7001324' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 45 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-7 +'7001325' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 36 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-8 +'7001326' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 37 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-9 +'7001327' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 38 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-1 +'7001328' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 14 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-2 +'7001329' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 15 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-3 +'7001330' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 16 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-4 +'7001331' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 17 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-5 +'7001332' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 18 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-6 +'7001333' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 19 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-1 +'7001334' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 30 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-2 +'7001335' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 31 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-3 +'7001336' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 32 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-4 +'7001337' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 33 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-5 +'7001338' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 34 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-6 +'7001339' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 35 ; +} diff --git a/definitions/grib2/localConcepts/kwbc/shortName.def b/definitions/grib2/localConcepts/kwbc/shortName.def index 1e85feed5..de05e2086 100644 --- a/definitions/grib2/localConcepts/kwbc/shortName.def +++ b/definitions/grib2/localConcepts/kwbc/shortName.def @@ -1649,3 +1649,279 @@ parameterCategory = 1 ; parameterNumber = 8 ; } +#Simulated Brightness Temperature for AMSRE on Aqua, Channel 10 +'AMSRE10' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 11 ; +} +#Simulated Brightness Temperature for AMSRE on Aqua, Channel 11 +'AMSRE11' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 12 ; +} +#Simulated Brightness Temperature for AMSRE on Aqua, Channel 12 +'AMSRE12' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 13 ; +} +#Simulated Brightness Temperature for AMSRE on Aqua, Channel 9 +'AMSRE9' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 10 ; +} +#Simulated Brightness Counts for GOES 12, Channel 3 +'SBC123' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 4 ; +} +#Simulated Brightness Counts for GOES 12, Channel 4 +'SBC124' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 5 ; +} +#Simulated Brightness Temperature for GOES 11, Channel 2 +'SBT112' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 6 ; +} +#Simulated Brightness Temperature for GOES 11, Channel 3 +'SBT113' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 7 ; +} +#Simulated Brightness Temperature for GOES 11, Channel 4 +'SBT114' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 8 ; +} +#Simulated Brightness Temperature for GOES 11, Channel 5 +'SBT115' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 9 ; +} +#Simulated Brightness Temperature for GOES 12, Channel 2 +'SBT122' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 0 ; +} +#Simulated Brightness Temperature for GOES 12, Channel 3 +'SBT123' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 1 ; +} +#Simulated Brightness Temperature for GOES 12, Channel 4 +'SBT124' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 2 ; +} +#Simulated Brightness Temperature for GOES 12, Channel 6 +'SBT126' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 3 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-10 +'SBTA1610' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 23 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-11 +'SBTA1611' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 24 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-12 +'SBTA1612' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 25 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-13 +'SBTA1613' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 26 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-14 +'SBTA1614' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 27 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-15 +'SBTA1615' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 28 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-16 +'SBTA1616' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 29 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-7 +'SBTA167' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 20 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-8 +'SBTA168' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 21 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-9 +'SBTA169' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 22 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-10 +'SBTA1710' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 39 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-11 +'SBTA1711' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 40 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-12 +'SBTA1712' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 41 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-13 +'SBTA1713' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 42 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-14 +'SBTA1714' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 43 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-15 +'SBTA1715' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 44 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-16 +'SBTA1716' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 45 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-7 +'SBTA177' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 36 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-8 +'SBTA178' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 37 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-9 +'SBTA179' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 38 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-1 +'SRFA161' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 14 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-2 +'SRFA162' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 15 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-3 +'SRFA163' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 16 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-4 +'SRFA164' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 17 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-5 +'SRFA165' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 18 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-6 +'SRFA166' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 19 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-1 +'SRFA171' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 30 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-2 +'SRFA172' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 31 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-3 +'SRFA173' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 32 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-4 +'SRFA174' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 33 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-5 +'SRFA175' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 34 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-6 +'SRFA176' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 35 ; +} diff --git a/definitions/grib2/localConcepts/kwbc/units.def b/definitions/grib2/localConcepts/kwbc/units.def index ac782eb8c..a3eafbc0f 100644 --- a/definitions/grib2/localConcepts/kwbc/units.def +++ b/definitions/grib2/localConcepts/kwbc/units.def @@ -1649,3 +1649,279 @@ parameterCategory = 1 ; parameterNumber = 8 ; } +#Simulated Brightness Temperature for AMSRE on Aqua, Channel 10 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 11 ; +} +#Simulated Brightness Temperature for AMSRE on Aqua, Channel 11 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 12 ; +} +#Simulated Brightness Temperature for AMSRE on Aqua, Channel 12 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 13 ; +} +#Simulated Brightness Temperature for AMSRE on Aqua, Channel 9 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 10 ; +} +#Simulated Brightness Counts for GOES 12, Channel 3 +'Byte' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 4 ; +} +#Simulated Brightness Counts for GOES 12, Channel 4 +'Byte' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 5 ; +} +#Simulated Brightness Temperature for GOES 11, Channel 2 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 6 ; +} +#Simulated Brightness Temperature for GOES 11, Channel 3 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 7 ; +} +#Simulated Brightness Temperature for GOES 11, Channel 4 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 8 ; +} +#Simulated Brightness Temperature for GOES 11, Channel 5 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 9 ; +} +#Simulated Brightness Temperature for GOES 12, Channel 2 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 0 ; +} +#Simulated Brightness Temperature for GOES 12, Channel 3 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 1 ; +} +#Simulated Brightness Temperature for GOES 12, Channel 4 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 2 ; +} +#Simulated Brightness Temperature for GOES 12, Channel 6 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 3 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-10 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 23 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-11 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 24 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-12 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 25 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-13 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 26 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-14 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 27 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-15 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 28 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-16 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 29 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-7 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 20 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-8 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 21 ; +} +#Simulated Brightness Temperature for ABI GOES-16, Band-9 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 22 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-10 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 39 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-11 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 40 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-12 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 41 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-13 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 42 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-14 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 43 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-15 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 44 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-16 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 45 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-7 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 36 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-8 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 37 ; +} +#Simulated Brightness Temperature for ABI GOES-17, Band-9 +'K' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 38 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-1 +'-' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 14 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-2 +'-' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 15 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-3 +'-' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 16 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-4 +'-' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 17 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-5 +'-' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 18 ; +} +#Simulated Reflectance Factor for ABI GOES-16, Band-6 +'-' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 19 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-1 +'-' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 30 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-2 +'-' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 31 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-3 +'-' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 32 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-4 +'-' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 33 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-5 +'-' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 34 ; +} +#Simulated Reflectance Factor for ABI GOES-17, Band-6 +'-' = { + discipline = 3 ; + parameterCategory = 192 ; + parameterNumber = 35 ; +} From 22f7e8691e87b9ccb29b07dfb57b989202d7dcf9 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 5 Aug 2021 16:39:55 +0100 Subject: [PATCH 569/683] ECC-1271: Arakawa Non-E Staggered grid (Try 1) --- .../grib2/local/local.7.template.3.32769.def | 39 +++++++++++++++++++ definitions/grib2/section.3.def | 7 +++- .../grib2/tables/local/kwbc/1/3.1.table | 2 + 3 files changed, 46 insertions(+), 2 deletions(-) create mode 100644 definitions/grib2/local/local.7.template.3.32769.def create mode 100644 definitions/grib2/tables/local/kwbc/1/3.1.table diff --git a/definitions/grib2/local/local.7.template.3.32769.def b/definitions/grib2/local/local.7.template.3.32769.def new file mode 100644 index 000000000..a7c818ab9 --- /dev/null +++ b/definitions/grib2/local/local.7.template.3.32769.def @@ -0,0 +1,39 @@ +# (C) Copyright 2005- ECMWF. + +# TEMPLATE 3.32769 - Rotate Latitude/Longitude (Arakawa Non-E Staggered grid) +# See https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_temp3-32769.shtml + +include "grib2/template.3.shape_of_the_earth.def"; +unsigned[4] Ni : dump; +unsigned[4] Nj : dump; + +unsigned[4] basicAngleOfTheInitialProductionDomain = 0; +unsigned[4] subdivisionsOfBasicAngle = missing() : can_be_missing;; + +signed[4] latitudeOfFirstGridPoint : edition_specific; +unsigned[4] longitudeOfFirstGridPoint : edition_specific; +alias La1 = latitudeOfFirstGridPoint; +alias Lo1 = longitudeOfFirstGridPoint; +meta latitudeOfFirstGridPointInDegrees scale(La1,one,grib2divider,truncateDegrees) : dump; +meta longitudeOfFirstGridPointInDegrees scale(Lo1,one,grib2divider,truncateDegrees) : dump; +alias La1InDegrees = latitudeOfFirstGridPointInDegrees; +alias Lo1InDegrees = longitudeOfFirstGridPointInDegrees; + +include "grib2/template.3.resolution_flags.def"; + +# La2 - centre latitude of grid point +signed[4] centreLatitude: edition_specific; +unsigned[4] centreLongitude: edition_specific; +alias La2 = centreLatitude; +alias Lo2 = centreLongitude; +meta centreLatitudeInDegrees scale(centreLatitude,one,grib2divider,truncateDegrees) : dump; +meta centreLongitudeInDegrees scale(centreLongitude,one,grib2divider,truncateDegrees) : dump; +alias La2InDegrees = centreLatitudeInDegrees; +alias Lo2InDegrees = centreLongitudeInDegrees; + +unsigned[4] Di : can_be_missing; # Longitudinal direction increment +unsigned[4] Dj : can_be_missing; # Latitudinal direction increment +flags[1] scanningMode 'grib2/tables/[tablesVersion]/3.4.table' : edition_specific,no_copy ; + +signed[4] latitudeOfGridPoints : dump; +unsigned[4] longitudeOfGridPoints: dump; diff --git a/definitions/grib2/section.3.def b/definitions/grib2/section.3.def index b846652af..a873e2d04 100644 --- a/definitions/grib2/section.3.def +++ b/definitions/grib2/section.3.def @@ -34,8 +34,11 @@ codetable[2] gridDefinitionTemplateNumber ('3.1.table',masterDir,localDir) =0 : meta gridDefinitionDescription codetable_title(gridDefinitionTemplateNumber); alias isRotatedGrid=zero; - -template gridDefinitionSection "grib2/template.3.[gridDefinitionTemplateNumber:l].def"; +if (gridDefinitionTemplateNumber >= 32768) { + template gridDefinitionSection "grib2/local/local.[centreForLocal:l].template.3.[gridDefinitionTemplateNumber:l].def"; +} else { + template gridDefinitionSection "grib2/template.3.[gridDefinitionTemplateNumber:l].def"; +} if(PLPresent){ if(numberOfOctectsForNumberOfPoints == 1){ diff --git a/definitions/grib2/tables/local/kwbc/1/3.1.table b/definitions/grib2/tables/local/kwbc/1/3.1.table new file mode 100644 index 000000000..74131ee64 --- /dev/null +++ b/definitions/grib2/tables/local/kwbc/1/3.1.table @@ -0,0 +1,2 @@ +# Code table 3.1 - Grid definition template number (NCEP local) +32769 32769 Rotate Latitude/Longitude (Arakawa Non-E Staggered grid) From 2a92252deeb78b7a824267f1375e08998948ad67 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 5 Aug 2021 18:30:42 +0100 Subject: [PATCH 570/683] ECC-1271: Simplify template --- .../grib2/local/local.7.template.3.32769.def | 31 +++++++------------ 1 file changed, 11 insertions(+), 20 deletions(-) diff --git a/definitions/grib2/local/local.7.template.3.32769.def b/definitions/grib2/local/local.7.template.3.32769.def index a7c818ab9..f6ed7da90 100644 --- a/definitions/grib2/local/local.7.template.3.32769.def +++ b/definitions/grib2/local/local.7.template.3.32769.def @@ -4,36 +4,27 @@ # See https://www.nco.ncep.noaa.gov/pmb/docs/grib2/grib2_doc/grib2_temp3-32769.shtml include "grib2/template.3.shape_of_the_earth.def"; -unsigned[4] Ni : dump; -unsigned[4] Nj : dump; +include "grib2/template.3.grid.def"; -unsigned[4] basicAngleOfTheInitialProductionDomain = 0; -unsigned[4] subdivisionsOfBasicAngle = missing() : can_be_missing;; - -signed[4] latitudeOfFirstGridPoint : edition_specific; -unsigned[4] longitudeOfFirstGridPoint : edition_specific; -alias La1 = latitudeOfFirstGridPoint; -alias Lo1 = longitudeOfFirstGridPoint; meta latitudeOfFirstGridPointInDegrees scale(La1,one,grib2divider,truncateDegrees) : dump; meta longitudeOfFirstGridPointInDegrees scale(Lo1,one,grib2divider,truncateDegrees) : dump; alias La1InDegrees = latitudeOfFirstGridPointInDegrees; alias Lo1InDegrees = longitudeOfFirstGridPointInDegrees; -include "grib2/template.3.resolution_flags.def"; +meta latitudeOfLastGridPointInDegrees scale(La2,one,grib2divider,truncateDegrees) : dump; +meta longitudeOfLastGridPointInDegrees scale(Lo2,one,grib2divider,truncateDegrees) : dump; +alias La2InDegrees = latitudeOfLastGridPointInDegrees; +alias Lo2InDegrees = longitudeOfLastGridPointInDegrees; -# La2 - centre latitude of grid point -signed[4] centreLatitude: edition_specific; -unsigned[4] centreLongitude: edition_specific; -alias La2 = centreLatitude; -alias Lo2 = centreLongitude; -meta centreLatitudeInDegrees scale(centreLatitude,one,grib2divider,truncateDegrees) : dump; -meta centreLongitudeInDegrees scale(centreLongitude,one,grib2divider,truncateDegrees) : dump; -alias La2InDegrees = centreLatitudeInDegrees; -alias Lo2InDegrees = centreLongitudeInDegrees; +alias centreLatitude = latitudeOfLastGridPoint; +alias centreLongitude = longitudeOfLastGridPoint; +alias centreLatitudeInDegrees = latitudeOfLastGridPointInDegrees; +alias centreLongitudeInDegrees = longitudeOfLastGridPointInDegrees; unsigned[4] Di : can_be_missing; # Longitudinal direction increment unsigned[4] Dj : can_be_missing; # Latitudinal direction increment -flags[1] scanningMode 'grib2/tables/[tablesVersion]/3.4.table' : edition_specific,no_copy ; + +flags[1] scanningMode 'grib2/tables/[tablesVersion]/3.4.table' : edition_specific,no_copy; signed[4] latitudeOfGridPoints : dump; unsigned[4] longitudeOfGridPoints: dump; From 41aa47edbfc65559f23ca2ed1e010370bed7a8b6 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 5 Aug 2021 18:38:18 +0100 Subject: [PATCH 571/683] ECC-1271: Change location of local templates --- .../template.3.32769.def} | 0 definitions/grib2/section.3.def | 5 +++-- 2 files changed, 3 insertions(+), 2 deletions(-) rename definitions/grib2/local/{local.7.template.3.32769.def => kwbc/template.3.32769.def} (100%) diff --git a/definitions/grib2/local/local.7.template.3.32769.def b/definitions/grib2/local/kwbc/template.3.32769.def similarity index 100% rename from definitions/grib2/local/local.7.template.3.32769.def rename to definitions/grib2/local/kwbc/template.3.32769.def diff --git a/definitions/grib2/section.3.def b/definitions/grib2/section.3.def index a873e2d04..a7d6e5242 100644 --- a/definitions/grib2/section.3.def +++ b/definitions/grib2/section.3.def @@ -34,10 +34,11 @@ codetable[2] gridDefinitionTemplateNumber ('3.1.table',masterDir,localDir) =0 : meta gridDefinitionDescription codetable_title(gridDefinitionTemplateNumber); alias isRotatedGrid=zero; + if (gridDefinitionTemplateNumber >= 32768) { - template gridDefinitionSection "grib2/local/local.[centreForLocal:l].template.3.[gridDefinitionTemplateNumber:l].def"; + template gridDefinitionSection "grib2/local/[centreForLocal]/template.3.[gridDefinitionTemplateNumber:l].def"; } else { - template gridDefinitionSection "grib2/template.3.[gridDefinitionTemplateNumber:l].def"; + template gridDefinitionSection "grib2/template.3.[gridDefinitionTemplateNumber:l].def"; } if(PLPresent){ From 6138060e9d6dc513b732e254d4910bc1bd2a57d3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 5 Aug 2021 21:05:17 +0100 Subject: [PATCH 572/683] ECC-1271: Add tests --- tests/CMakeLists.txt | 1 + tests/grib_ecc-1271.sh | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100755 tests/grib_ecc-1271.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 751dbc7a4..6b9f13c02 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -87,6 +87,7 @@ if( HAVE_BUILD_TOOLS ) grib_ecc-1255 grib_ecc-1258 grib_ecc-1260 + grib_ecc-1271 bufr_ecc-1028 bufr_ecc-1195 bufr_ecc-1259 diff --git a/tests/grib_ecc-1271.sh b/tests/grib_ecc-1271.sh new file mode 100755 index 000000000..6c61f8e12 --- /dev/null +++ b/tests/grib_ecc-1271.sh @@ -0,0 +1,28 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh + +label="grib_ecc-1271-test" +temp=temp.$label + +sample_grib2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl + + +${tools_dir}/grib_set -s \ + centre=kwbc,gridDefinitionTemplateNumber=32769,localTablesVersion=1 \ +$sample_grib2 $temp + + +grib_check_key_equals $temp Ni,Nj "16 31" +grib_check_key_equals $temp centreLatitudeInDegrees,centreLongitudeInDegrees "0 30" +grib_check_key_equals $temp minimum,maximum "1 1" + +rm -f $temp From 69f65dff6b65a4cb633f851dc1af7efc7227b7f1 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 6 Aug 2021 13:50:11 +0100 Subject: [PATCH 573/683] Added Github workflow for CI --- .github/workflows/ci.yml | 80 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..166f132d4 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,80 @@ +name: ci + +# Controls when the action will run +on: + + # Trigger the workflow on all pushes, except on tag creation + push: + branches: + - '**' + tags-ignore: + - '**' + + # Trigger the workflow on all pull requests + pull_request: ~ + + # Allow workflow to be dispatched on demand + workflow_dispatch: ~ + +jobs: + ci: + name: ci + strategy: + matrix: + name: + - gnu-10@ubuntu-20.04 + - clang-12@ubuntu-20.04 + - gnu-10@ubuntu-18.04 + - clang-9@ubuntu-18.04 + - gnu-10@macos-10.15 + - clang-12@macos-10.15 + include: + - name: gnu-10@ubuntu-20.04 + os: ubuntu-20.04 + compiler: gnu-10 + compiler_cc: gcc-10 + compiler_fc: gfortran-10 + - name: clang-12@ubuntu-20.04 + os: ubuntu-20.04 + compiler: clang-12 + compiler_cc: clang-12 + compiler_fc: gfortran-10 + - name: gnu-10@ubuntu-18.04 + os: ubuntu-18.04 + compiler: gnu-10 + compiler_cc: gcc-10 + compiler_fc: gfortran-10 + - name: clang-9@ubuntu-18.04 + os: ubuntu-18.04 + compiler: clang-9 + compiler_cc: clang-9 + compiler_fc: gfortran-9 + - name: gnu-10@macos-10.15 + os: macos-10.15 + compiler: gnu-10 + compiler_cc: gcc-10 + compiler_fc: gfortran-10 + - name: clang-12@macos-10.15 + os: macos-10.15 + compiler: clang-12 + compiler_cc: ~ + compiler_cxx: ~ + compiler_fc: gfortran-10 + runs-on: ${{ matrix.os }} + steps: + - name: Checkout Repository + uses: actions/checkout@v2 + + - name: Build & Test + id: build-test + uses: ecmwf-actions/build-package@v1 + with: + self_coverage: true + dependencies: ecmwf/ecbuild + dependency_branch: develop + + - name: Codecov Upload + if: steps.build-test.outputs.coverage_file && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/develop') + uses: codecov/codecov-action@v2 + with: + files: ${{ steps.build-test.outputs.coverage_file }} From 874f5fe39bef701b8f1f5c303f69cd46d10f857c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 10 Aug 2021 12:01:40 +0100 Subject: [PATCH 574/683] ECC-1271: set gridType --- definitions/grib2/section.3.def | 43 ++++++++++++++++++--------------- 1 file changed, 23 insertions(+), 20 deletions(-) diff --git a/definitions/grib2/section.3.def b/definitions/grib2/section.3.def index a7d6e5242..b97ad2a50 100644 --- a/definitions/grib2/section.3.def +++ b/definitions/grib2/section.3.def @@ -62,27 +62,27 @@ when (PLPresent == 0) { section_padding section3Padding : read_only; concept gridType { - "regular_ll" = { gridDefinitionTemplateNumber=0; PLPresent=0; } - "reduced_ll" = { gridDefinitionTemplateNumber=0; PLPresent=1; } - "rotated_ll" = { gridDefinitionTemplateNumber=1; PLPresent=0; } - "stretched_ll" = { gridDefinitionTemplateNumber=2; PLPresent=0; } - "stretched_rotated_ll" = { gridDefinitionTemplateNumber=3; PLPresent=0; } - "mercator" = { gridDefinitionTemplateNumber=10; PLPresent=0; } - "transverse_mercator" = { gridDefinitionTemplateNumber=12; PLPresent=0; } - "polar_stereographic" = { gridDefinitionTemplateNumber=20; PLPresent=0; } - "lambert" = { gridDefinitionTemplateNumber=30; PLPresent=0; } - "albers" = { gridDefinitionTemplateNumber=31; PLPresent=0; } + "regular_ll" = { gridDefinitionTemplateNumber=0; PLPresent=0; } + "reduced_ll" = { gridDefinitionTemplateNumber=0; PLPresent=1; } + "rotated_ll" = { gridDefinitionTemplateNumber=1; PLPresent=0; } + "stretched_ll" = { gridDefinitionTemplateNumber=2; PLPresent=0; } + "stretched_rotated_ll" = { gridDefinitionTemplateNumber=3; PLPresent=0; } + "mercator" = { gridDefinitionTemplateNumber=10; PLPresent=0; } + "transverse_mercator" = { gridDefinitionTemplateNumber=12; PLPresent=0; } + "polar_stereographic" = { gridDefinitionTemplateNumber=20; PLPresent=0; } + "lambert" = { gridDefinitionTemplateNumber=30; PLPresent=0; } + "albers" = { gridDefinitionTemplateNumber=31; PLPresent=0; } - "regular_gg" = { gridDefinitionTemplateNumber=40; PLPresent=0; } + "regular_gg" = { gridDefinitionTemplateNumber=40; PLPresent=0; } "reduced_gg" = { gridDefinitionTemplateNumber=40; PLPresent=1; numberOfOctectsForNumberOfPoints=2;iDirectionIncrementGiven=0;numberOfPointsAlongAParallel = missing(); } - "rotated_gg" = { gridDefinitionTemplateNumber=41; PLPresent=0; } + "rotated_gg" = { gridDefinitionTemplateNumber=41; PLPresent=0; } "reduced_rotated_gg" = { gridDefinitionTemplateNumber=41; PLPresent=1; numberOfOctectsForNumberOfPoints=2;iDirectionIncrementGiven=0;numberOfPointsAlongAParallel = missing(); } - "stretched_gg" = { gridDefinitionTemplateNumber=42; PLPresent=0; } + "stretched_gg" = { gridDefinitionTemplateNumber=42; PLPresent=0; } "reduced_stretched_gg" = { gridDefinitionTemplateNumber=42; PLPresent=1; numberOfOctectsForNumberOfPoints=2;iDirectionIncrementGiven=0;numberOfPointsAlongAParallel = missing(); } - "stretched_rotated_gg" = { gridDefinitionTemplateNumber=43; PLPresent=0; } + "stretched_rotated_gg" = { gridDefinitionTemplateNumber=43; PLPresent=0; } "reduced_stretched_rotated_gg" = { gridDefinitionTemplateNumber=43; PLPresent=1; numberOfOctectsForNumberOfPoints=2;iDirectionIncrementGiven=0;numberOfPointsAlongAParallel = missing(); } # For consistency add the prefix regular_ @@ -104,12 +104,15 @@ concept gridType { "cross_section" = { gridDefinitionTemplateNumber=1000;PLPresent=0; } "Hovmoller" = { gridDefinitionTemplateNumber=1100;PLPresent=0; } "time_section" = { gridDefinitionTemplateNumber=1200;PLPresent=0; } - "lambert_lam" = { gridDefinitionTemplateNumber=33; PLPresent=0; } - "mercator_lam" = { gridDefinitionTemplateNumber=13; PLPresent=0; } - "polar_stereographic_lam" = { gridDefinitionTemplateNumber=23; PLPresent=0; } - "lambert_bf" = { gridDefinitionTemplateNumber=63; PLPresent=0; } - "mercator_bf" = { gridDefinitionTemplateNumber=61; PLPresent=0; } - "polar_stereographic_bf" = { gridDefinitionTemplateNumber=62; PLPresent=0; } + "lambert_lam" = { gridDefinitionTemplateNumber=33; PLPresent=0; } + "mercator_lam" = { gridDefinitionTemplateNumber=13; PLPresent=0; } + "polar_stereographic_lam" = { gridDefinitionTemplateNumber=23; PLPresent=0; } + "lambert_bf" = { gridDefinitionTemplateNumber=63; PLPresent=0; } + "mercator_bf" = { gridDefinitionTemplateNumber=61; PLPresent=0; } + "polar_stereographic_bf" = { gridDefinitionTemplateNumber=62; PLPresent=0; } + + "ncep_32769" = { centre=7; gridDefinitionTemplateNumber=32769; PLPresent=0; } + "unknown" = {PLPresent=0;} "unknown_PLPresent" = {PLPresent=1;} } : dump; From 5f00e714b62fdd6e4b2347ffff5b1d572178326a Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 12 Aug 2021 16:59:01 +0100 Subject: [PATCH 575/683] Testing: Use of subCentre=98 for other centre GRIBs --- tests/grib_local.sh | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/tests/grib_local.sh b/tests/grib_local.sh index be2c6f1ea..48bc6ba82 100755 --- a/tests/grib_local.sh +++ b/tests/grib_local.sh @@ -12,12 +12,15 @@ #set -x REDIRECT=/dev/null +sample_g1=$ECCODES_SAMPLES_PATH/reduced_gg_pl_640_grib1.tmpl +sample_g2=$ECCODES_SAMPLES_PATH/reduced_gg_pl_640_grib2.tmpl cd ${data_dir} rm -f local.log # Check all GRIB2 local def files and definitions/grib2/grib2LocalSectionNumber.98.table # Each number should appear in the table +# ----------------------------------------- g2lds=${ECCODES_DEFINITION_PATH}/grib2/local.98.*.def for g2ld in $g2lds; do bname=`basename $g2ld` @@ -25,11 +28,20 @@ for g2ld in $g2lds; do grep -q "^$dnum" ${ECCODES_DEFINITION_PATH}/grib2/grib2LocalSectionNumber.98.table done +# Use of subCentre=98 for other centre GRIBs +# ------------------------------------------ +temp=temp.grib_local.grib +${tools_dir}/grib_set -s centre=edzw,subCentre=98,setLocalDefinition=1,localDefinitionNumber=1 \ + $ECCODES_SAMPLES_PATH/GRIB2.tmpl $temp +grib_check_key_equals $temp section2Length,centre,expver,marsClass:i,marsType:i,marsStream:i "17 edzw 0001 1 2 1025" +rm -f $temp + ${tools_dir}/grib_set -s edition=2,setLocalDefinition=1 reduced_gaussian_model_level.grib1 loc.grib2 ${tools_dir}/grib_set -s setLocalDefinition=1 reduced_gaussian_model_level.grib1 loc.grib1 -# conversion 1->2 +# Conversion 1->2 +# ---------------- for localDefinitionNumber in 1 15 26 30 do ${tools_dir}/grib_set -s localDefinitionNumber=$localDefinitionNumber,perturbationNumber=2,numberOfForecastsInEnsemble=50 loc.grib1 eps.grib1 @@ -45,7 +57,8 @@ do ${tools_dir}/grib_compare -e -b param eps.grib1 eps.grib2 done -#local -> local +# Local -> local +# --------------- for localStart in 1 7 9 20 25 26 30 do ${tools_dir}/grib_set -s localDefinitionNumber=$localStart loc.grib1 loc1.grib1 @@ -60,7 +73,8 @@ do done done -#special types/streams +# Special types/streams +# ---------------------- ${tools_dir}/grib_set -s localDefinitionNumber=1,numberOfForecastsInEnsemble=0 loc.grib1 loc1.grib1 ${tools_dir}/grib_set -s edition=2 loc1.grib1 loc1.grib2 ${tools_dir}/grib_get -f -p localDefinitionNumber,perturbationNumber loc1.grib2 >> local.log @@ -78,8 +92,6 @@ rm -f local.log loc.grib1 loc.grib2 loc1.grib1 loc1.grib2 eps.grib1 eps.grib2 # Delete Local Definition # ----------------------- -sample_g1=$ECCODES_SAMPLES_PATH/reduced_gg_pl_640_grib1.tmpl -sample_g2=$ECCODES_SAMPLES_PATH/reduced_gg_pl_640_grib2.tmpl temp=temp.grib_local.grib grib_check_key_equals $sample_g1 localUsePresent 1 ${tools_dir}/grib_set -s deleteLocalDefinition=1 $sample_g1 $temp From ea0105bd24135ab3bdf31250f38c68ad5ca05c5a Mon Sep 17 00:00:00 2001 From: Tiago Quintino Date: Fri, 13 Aug 2021 00:06:28 +0100 Subject: [PATCH 576/683] Fix build error after ninja clean --- src/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index cc019209d..8f87bb871 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -436,10 +436,9 @@ endif() ecbuild_add_library( TARGET eccodes - SOURCES grib_api_version.c + SOURCES ${CMAKE_CURRENT_BINARY_DIR}/grib_api_version.c # griby.c gribl.c ${grib_api_srcs} - GENERATED grib_api_version.c #PRIVATE_LIBS ${ECCODES_EXTRA_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${CMATH_LIBRARIES} PRIVATE_INCLUDES "${AEC_INCLUDE_DIRS}" PRIVATE_LIBS ${ECCODES_EXTRA_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT} ${AEC_LIBRARIES} ${PNG_LIBRARIES} From 6132e9d8de32c3941c48827080e96b06b01383d4 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 14 Aug 2021 12:42:27 +0100 Subject: [PATCH 577/683] Cleanup: Remove the tiny test and xref --- src/action_class_alias.c | 3 +++ src/action_class_gen.c | 6 ++++++ tests/tiny.sh | 22 ---------------------- 3 files changed, 9 insertions(+), 22 deletions(-) delete mode 100755 tests/tiny.sh diff --git a/src/action_class_alias.c b/src/action_class_alias.c index 0e91454f0..145e098bf 100644 --- a/src/action_class_alias.c +++ b/src/action_class_alias.c @@ -269,6 +269,8 @@ static void dump(grib_action* act, FILE* f, int lvl) static void xref(grib_action* act, FILE* f, const char* path) { + Assert(!"xref is disabled"); +#if 0 grib_action_alias* a = (grib_action_alias*)act; if (a->target) { fprintf(f, "bless({name=>'%s', target=>'%s', path=>'%s'},'xref::alias'),\n", act->name, a->target, path); @@ -280,6 +282,7 @@ static void xref(grib_action* act, FILE* f, const char* path) if (act->name_space) fprintf(f, "bless({name=>'%s.%s', path=>'%s'},'xref::unalias'),\n", act->name_space, act->name, path); } +#endif } static void destroy(grib_context* context, grib_action* act) diff --git a/src/action_class_gen.c b/src/action_class_gen.c index 4eb060960..235bf257b 100644 --- a/src/action_class_gen.c +++ b/src/action_class_gen.c @@ -131,6 +131,7 @@ static void dump(grib_action* act, FILE* f, int lvl) grib_context_print(act->context, f, "%s[%d] %s \n", act->op, a->len, act->name); } +#if 0 #define F(x) \ if (flg & x) { \ fprintf(f, "%s=>1,", #x); \ @@ -176,6 +177,11 @@ static void xref(grib_action* act, FILE* f, const char* path) fprintf(f, "]}, 'xref::%s'),\n", act->op); } +#endif +static void xref(grib_action* act, FILE* f, const char* path) +{ + Assert(!"xref is disabled"); +} static int create_accessor(grib_section* p, grib_action* act, grib_loader* loader) { diff --git a/tests/tiny.sh b/tests/tiny.sh deleted file mode 100755 index 4bac5063e..000000000 --- a/tests/tiny.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh -# (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# - - -. ./include.sh - -REDIRECT=/dev/null - -cat >${data_dir}/f.rules < $REDIRECT > $REDIRECT - From d41b90070d9193b5144874cbdd382bc56bf85645 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 14 Aug 2021 18:14:13 +0100 Subject: [PATCH 578/683] Testing: Add test for accessor g1day_of_the_year_date --- ...ib_accessor_class_g1day_of_the_year_date.c | 5 ---- tests/CMakeLists.txt | 1 + tests/grib_g1day_of_the_year_date.sh | 25 +++++++++++++++++++ 3 files changed, 26 insertions(+), 5 deletions(-) create mode 100755 tests/grib_g1day_of_the_year_date.sh diff --git a/src/grib_accessor_class_g1day_of_the_year_date.c b/src/grib_accessor_class_g1day_of_the_year_date.c index 5abe2ff5b..1ae06ab9b 100644 --- a/src/grib_accessor_class_g1day_of_the_year_date.c +++ b/src/grib_accessor_class_g1day_of_the_year_date.c @@ -142,7 +142,6 @@ static void init(grib_accessor* a, const long l, grib_arguments* c) a->flags |= GRIB_ACCESSOR_FLAG_READ_ONLY; } - static void dump(grib_accessor* a, grib_dumper* dumper) { grib_dump_string(dumper, a, NULL); @@ -153,7 +152,6 @@ static int unpack_string(grib_accessor* a, char* val, size_t* len) /* special clim case where each mont have 30 days.. to comply with mars*/ grib_accessor_g1day_of_the_year_date* self = (grib_accessor_g1day_of_the_year_date*)a; - char tmp[1024]; long year = 0; @@ -164,7 +162,6 @@ static int unpack_string(grib_accessor* a, char* val, size_t* len) long fullyear = 0; long fake_day_of_year = 0; - size_t l; grib_get_long_internal(grib_handle_of_accessor(a), self->century, ¢ury); @@ -175,7 +172,6 @@ static int unpack_string(grib_accessor* a, char* val, size_t* len) if (*len < 1) return GRIB_BUFFER_TOO_SMALL; - fullyear = ((century - 1) * 100 + year); fake_day_of_year = ((month - 1) * 30) + day; sprintf(tmp, "%04ld-%03ld", fullyear, fake_day_of_year); @@ -189,6 +185,5 @@ static int unpack_string(grib_accessor* a, char* val, size_t* len) *len = l; strcpy(val, tmp); - return GRIB_SUCCESS; } diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 6b9f13c02..1089a3570 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -105,6 +105,7 @@ if( HAVE_BUILD_TOOLS ) grib_grid_lambert_conformal grib_grid_polar_stereographic grib_g1monthlydate + grib_g1day_of_the_year_date grib_g1fcperiod) # These tests do require data downloads diff --git a/tests/grib_g1day_of_the_year_date.sh b/tests/grib_g1day_of_the_year_date.sh new file mode 100755 index 000000000..e5e972f85 --- /dev/null +++ b/tests/grib_g1day_of_the_year_date.sh @@ -0,0 +1,25 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh + +label="grib_g1day_of_the_year_date" +sample_g1=$ECCODES_SAMPLES_PATH/GRIB1.tmpl +temp=temp.$label.grib + +${tools_dir}/grib_set -s marsType=s3,marsStream=mpic $sample_g1 $temp +grib_check_key_equals $temp "mars.date:s,dayOfTheYearDate:s" "2006-076 2006-076" + +${tools_dir}/grib_set -s marsType=s3,marsStream=ukmo $sample_g1 $temp +grib_check_key_equals $temp "mars.date:s,dayOfTheYearDate:s" "2006-076 2006-076" + + +# Clean up +rm -f $temp From ea7ea3e197b537057f1e235300c14d4409676911 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 14 Aug 2021 18:42:53 +0100 Subject: [PATCH 579/683] Unused function --- src/grib_api_prototypes.h | 1 - src/grib_index.c | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/grib_api_prototypes.h b/src/grib_api_prototypes.h index 9da6f7ec9..6013475c4 100644 --- a/src/grib_api_prototypes.h +++ b/src/grib_api_prototypes.h @@ -743,7 +743,6 @@ char* grib_get_field_file(grib_index* index, off_t* offset); grib_handle* grib_handle_new_from_index(grib_index* index, int* err); grib_handle* codes_new_from_index(grib_index* index, int message_type, int* err); void grib_index_rewind(grib_index* index); -int grib_index_search(grib_index* index, grib_index_key* keys); int codes_index_set_product_kind(grib_index* index, ProductKind product_kind); int codes_index_set_unpack_bufr(grib_index* index, int unpack); int is_index_file(const char* filename); diff --git a/src/grib_index.c b/src/grib_index.c index 67e3555d1..8255baf31 100644 --- a/src/grib_index.c +++ b/src/grib_index.c @@ -1921,6 +1921,7 @@ void grib_index_rewind(grib_index* index) index->rewind = 1; } +#if 0 static grib_index_key* search_key(grib_index_key* keys, grib_index_key* to_search) { if (!keys || !strcmp(keys->name, to_search->name)) @@ -1947,6 +1948,7 @@ int grib_index_search(grib_index* index, grib_index_key* keys) grib_index_rewind(index); return 0; } +#endif int codes_index_set_product_kind(grib_index* index, ProductKind product_kind) { From 2903d3b06a18053ef0fa1dccdc5e14cff73ed027 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 14 Aug 2021 21:11:13 +0100 Subject: [PATCH 580/683] Testing: Add test for NetCDF-4 and HDF5 --- tests/grib_to_netcdf.sh | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/tests/grib_to_netcdf.sh b/tests/grib_to_netcdf.sh index 9aead8365..5b70b0097 100755 --- a/tests/grib_to_netcdf.sh +++ b/tests/grib_to_netcdf.sh @@ -33,6 +33,8 @@ tempGrib=temp.${label}.grib tempNetcdf=temp.${label}.nc tempText=temp.${label}.txt +have_netcdf4=0 + # Do we have ncdump? NC_DUMPER="" if command -v "ncdump" >/dev/null 2>&1; then @@ -51,6 +53,20 @@ if test "x$NC_DUMPER" != "x"; then grep -q "short tp_0001" $tempText fi +echo "Test HDF5 decoding ..." +# ------------------------- +# Note: this is only available in NetCDF-4. So need to check if the command worked with -k3 +input=${data_dir}/sample.grib2 +set +e +${tools_dir}/grib_to_netcdf -k3 -o $tempNetcdf $input 2>/dev/null +stat=$? +set -e +if [ $stat -eq 0 ]; then + have_netcdf4=1 + res=`${tools_dir}/grib_get -TA -p identifier,versionNumberOfSuperblock,endOfFileAddress $tempNetcdf` + [ "$res" = "HDF5 0 11973" ] +fi + grib_files="\ regular_latlon_surface.grib2 \ @@ -78,8 +94,10 @@ echo "Test creating different kinds; netcdf3 classic and large ..." input=${data_dir}/regular_latlon_surface.grib2 ${tools_dir}/grib_to_netcdf -k 1 -o $tempNetcdf $input >/dev/null ${tools_dir}/grib_to_netcdf -k 2 -o $tempNetcdf $input >/dev/null -#${tools_dir}/grib_to_netcdf -k 3 -o $tempNetcdf $input >/dev/null -#${tools_dir}/grib_to_netcdf -k 4 -o $tempNetcdf $input >/dev/null +if [ $have_netcdf4 -eq 1 ]; then + ${tools_dir}/grib_to_netcdf -k 3 -o $tempNetcdf $input >/dev/null + ${tools_dir}/grib_to_netcdf -k 4 -o $tempNetcdf $input >/dev/null +fi echo "Test ECC-1060 ..." # ---------------------- From e7c6360c507e6a74aec71cbfc3bf3825f80211c8 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 14 Aug 2021 22:22:37 +0100 Subject: [PATCH 581/683] Testing: Fix Bamboo broken test --- tests/grib_to_netcdf.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/grib_to_netcdf.sh b/tests/grib_to_netcdf.sh index 5b70b0097..4652add66 100755 --- a/tests/grib_to_netcdf.sh +++ b/tests/grib_to_netcdf.sh @@ -63,8 +63,8 @@ stat=$? set -e if [ $stat -eq 0 ]; then have_netcdf4=1 - res=`${tools_dir}/grib_get -TA -p identifier,versionNumberOfSuperblock,endOfFileAddress $tempNetcdf` - [ "$res" = "HDF5 0 11973" ] + res=`${tools_dir}/grib_get -TA -p identifier,versionNumberOfSuperblock $tempNetcdf` + [ "$res" = "HDF5 0" ] fi From 20a52d119aa82c742b6a254c75c71e0f5a0484e6 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 15 Aug 2021 15:54:13 +0100 Subject: [PATCH 582/683] Testing: Test for WRAP --- definitions/tide/section.4.def | 108 +++++++++++++++------------------ definitions/wrap/boot.def | 14 ++--- samples/wrap.tmpl | Bin 0 -> 31 bytes tests/CMakeLists.txt | 1 + tests/wrap.sh | 29 +++++++++ 5 files changed, 85 insertions(+), 67 deletions(-) create mode 100644 samples/wrap.tmpl create mode 100755 tests/wrap.sh diff --git a/definitions/tide/section.4.def b/definitions/tide/section.4.def index dde9e20f4..953d29d7b 100644 --- a/definitions/tide/section.4.def +++ b/definitions/tide/section.4.def @@ -1,31 +1,24 @@ # (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# -section_length[3] section4Length ; +section_length[3] section4Length; -unsigned[1] reserved=0 : hidden; +unsigned[1] reserved=0 : hidden; flags[1] missingDataFlag 'grib1/1.table'; unsigned[1] numberOfBytesPerInteger ; -unsigned[2] reserved=0 : hidden; +unsigned[2] reserved=0 : hidden; -unsigned[3] numberOfChars ; +unsigned[3] numberOfChars; -unsigned[3] numberOfFloats ; +unsigned[3] numberOfFloats; -unsigned[3] numberOfInts ; +unsigned[3] numberOfInts; -unsigned[3] numberOfLogicals ; +unsigned[3] numberOfLogicals; -unsigned[3] numberOfReservedBytes ; +unsigned[3] numberOfReservedBytes; unsigned[4] reserved=0 : hidden; unsigned[4] reserved=0 : hidden; @@ -40,62 +33,57 @@ if(numberOfBytesPerInteger == 4) { signed[4] integerValues[numberOfInts]; } if(numberOfChars >= 12) { - ascii[2] marsClass; - ascii[2] dummy1; - ascii[2] marsType; - ascii[2] dummy2; - ascii[4] marsExpver; + ascii[2] marsClass; + ascii[2] dummy1; + ascii[2] marsType; + ascii[2] dummy2; + ascii[4] marsExpver; - constant numberOfRemaininChars = numberOfChars - 12; + constant numberOfRemaininChars = numberOfChars - 12; - charValues list(numberOfRemaininChars) { - ascii[1] char; - } + charValues list(numberOfRemaininChars) { + ascii[1] char; + } + constant zero = 0; + concept isEps(zero) { 1 = { marsType = "pf"; } } + concept isSens(zero) { 1 = { marsType = "sf"; } } - constant zero = 0; - concept isEps(zero) { 1 = { marsType = "pf"; } } - concept isSens(zero) { 1 = { marsType = "sf"; } } + constant oper = "oper"; - constant oper = "oper"; + concept marsStream(oper) { + "enfo" = { marsType = "pf"; } + "enfo" = { marsType = "cf"; } + "sens" = { marsType = "sf"; } + } - concept marsStream(oper) { - "enfo" = { marsType = "pf"; } - "enfo" = { marsType = "cf"; } - "sens" = { marsType = "sf"; } - } + if(isEps) + { + constant perturbationNumber = 0; + alias mars.number = perturbationNumber; + } - if(isEps) - { - constant perturbationNumber = 0; - alias mars.number = perturbationNumber; - } - - if(isSens) - { - constant iterationNumber = 0; - constant diagnosticNumber = 0; - alias mars.iteration = iterationNumber; - alias mars.diagnostic = diagnosticNumber; - } - - # This is commented out because some of the BUDG have the wrong info there - alias mars.stream = marsStream; - alias mars.class = marsClass; - alias mars.type = marsType; - alias mars.expver = marsExpver; + if(isSens) + { + constant iterationNumber = 0; + constant diagnosticNumber = 0; + alias mars.iteration = iterationNumber; + alias mars.diagnostic = diagnosticNumber; + } + # This is commented out because some of the BUDG have the wrong info there + alias mars.stream = marsStream; + alias mars.class = marsClass; + alias mars.type = marsType; + alias mars.expver = marsExpver; } else { - - charValues list(numberOfChars) { - ascii[1] char; - } - + charValues list(numberOfChars) { + ascii[1] char; + } } #reservedBytes list (numberOfReservedBytes){ -# unsigned[1] byte; -# } - +# unsigned[1] byte; +#} diff --git a/definitions/wrap/boot.def b/definitions/wrap/boot.def index f7915d89c..fafb296ad 100644 --- a/definitions/wrap/boot.def +++ b/definitions/wrap/boot.def @@ -11,17 +11,17 @@ position startOfHeaders; ascii[4] identifier = `WRAP`: dump; alias ls.identifier=identifier; -uint64 totalLength : dump; -uint8 version = 1 : dump; -uint8 spare; +uint64 totalLength : dump; +uint8 version = 1 : dump; +uint8 spare; -template metadata "wrap/metadata.[version].def"; +template metadata "wrap/metadata.[version].def"; -position endOfHeadersMarker; +position endOfHeadersMarker; constant dataLength = (totalLength - endOfHeadersMarker - 4); blob data[dataLength] : dump; -ascii[4] endMark = `7777` : dump; +ascii[4] endMark = `7777` : dump; -position totalLength; +position totalLength; diff --git a/samples/wrap.tmpl b/samples/wrap.tmpl new file mode 100644 index 0000000000000000000000000000000000000000..8e2b4ae1c878af020372b5fb81cedd90c921b7fc GIT binary patch literal 31 gcmWF!atvUA0C@%mkJOx;d>w`I{Gyx`MROnk09$AVzW@LL literal 0 HcmV?d00001 diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 1089a3570..fc1a86f0c 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -100,6 +100,7 @@ if( HAVE_BUILD_TOOLS ) grib_sh_imag grib_sh_spectral_complex pseudo_diag + wrap grib_levtype grib_grid_unstructured grib_grid_lambert_conformal diff --git a/tests/wrap.sh b/tests/wrap.sh new file mode 100755 index 000000000..4605885a2 --- /dev/null +++ b/tests/wrap.sh @@ -0,0 +1,29 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +# Tests for WRAP + +. ./include.sh +label="wrap-test" +tempOut=temp.${label}.out +tempTxt=temp.${label}.txt +tempRef=temp.${label}.ref + +REDIRECT=/dev/null + +input=$ECCODES_SAMPLES_PATH/wrap.tmpl + +${tools_dir}/grib_dump -TA -O $input +id=`${tools_dir}/grib_get -TA -p identifier $input` +[ "$id" = "WRAP" ] + + +# Clean up +rm -f $tempOut $tempRef $tempTxt From bd3a014bb117f55c03a3850e8de469e18fe5fb8a Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 15 Aug 2021 16:18:59 +0100 Subject: [PATCH 583/683] Testing: Test for BUDG mars step --- tests/pseudo_budg.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/pseudo_budg.sh b/tests/pseudo_budg.sh index e240c2a90..244af520c 100755 --- a/tests/pseudo_budg.sh +++ b/tests/pseudo_budg.sh @@ -34,4 +34,12 @@ diff $tempRef $tempOut ${tools_dir}/grib_dump ${data_dir}/budg ${tools_dir}/grib_dump -O ${data_dir}/budg +ms=`${tools_dir}/grib_get -p mars.step ${data_dir}/budg` +[ "$ms" = "0" ] +${tools_dir}/grib_set -s mars.step=19 ${data_dir}/budg $tempOut +${tools_dir}/grib_ls -jm $tempOut +ms=`${tools_dir}/grib_get -p mars.step $tempOut` +[ "$ms" = "19" ] + + rm -f $tempRef $tempOut From db81ff6b54e4df039c1079037a7e1770f28ec1c4 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 15 Aug 2021 22:15:30 +0100 Subject: [PATCH 584/683] Testing: Add test for shuffle and deflate --- tests/grib_to_netcdf.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/grib_to_netcdf.sh b/tests/grib_to_netcdf.sh index 4652add66..7500ce228 100755 --- a/tests/grib_to_netcdf.sh +++ b/tests/grib_to_netcdf.sh @@ -88,9 +88,8 @@ for dt in $ncf_types; do done done -echo "Test creating different kinds; netcdf3 classic and large ..." +echo "Test creating different kinds ..." # ------------------------------------------------------------------ -# TODO: enable tests for netcdf4 formats too input=${data_dir}/regular_latlon_surface.grib2 ${tools_dir}/grib_to_netcdf -k 1 -o $tempNetcdf $input >/dev/null ${tools_dir}/grib_to_netcdf -k 2 -o $tempNetcdf $input >/dev/null @@ -99,6 +98,11 @@ if [ $have_netcdf4 -eq 1 ]; then ${tools_dir}/grib_to_netcdf -k 4 -o $tempNetcdf $input >/dev/null fi +echo "Test shuffle and deflate ..." +# --------------------------------- +input=${data_dir}/sst_globus0083.grib +${tools_dir}/grib_to_netcdf -s -d9 -k4 -o $tempNetcdf $input + echo "Test ECC-1060 ..." # ---------------------- sample2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl From 863bf14e22740bab4b1f3680db29d9fe528a1cbc Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 15 Aug 2021 22:20:50 +0100 Subject: [PATCH 585/683] Testing: shuffle and deflate only available for NetCDF-4 --- tests/grib_to_netcdf.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/grib_to_netcdf.sh b/tests/grib_to_netcdf.sh index 7500ce228..3fb898a90 100755 --- a/tests/grib_to_netcdf.sh +++ b/tests/grib_to_netcdf.sh @@ -100,8 +100,10 @@ fi echo "Test shuffle and deflate ..." # --------------------------------- -input=${data_dir}/sst_globus0083.grib -${tools_dir}/grib_to_netcdf -s -d9 -k4 -o $tempNetcdf $input +if [ $have_netcdf4 -eq 1 ]; then + input=${data_dir}/sst_globus0083.grib + ${tools_dir}/grib_to_netcdf -s -d9 -k4 -o $tempNetcdf $input +fi echo "Test ECC-1060 ..." # ---------------------- From 2fec9b19c4fbb7fb94d12b3b11658c46a538fab8 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 16 Aug 2021 10:48:00 +0100 Subject: [PATCH 586/683] Testing: Fix test for AppVeyor --- tests/grib_to_netcdf.sh | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/tests/grib_to_netcdf.sh b/tests/grib_to_netcdf.sh index 3fb898a90..914dc1f5a 100755 --- a/tests/grib_to_netcdf.sh +++ b/tests/grib_to_netcdf.sh @@ -53,21 +53,22 @@ if test "x$NC_DUMPER" != "x"; then grep -q "short tp_0001" $tempText fi -echo "Test HDF5 decoding ..." -# ------------------------- -# Note: this is only available in NetCDF-4. So need to check if the command worked with -k3 -input=${data_dir}/sample.grib2 -set +e -${tools_dir}/grib_to_netcdf -k3 -o $tempNetcdf $input 2>/dev/null -stat=$? -set -e -if [ $stat -eq 0 ]; then - have_netcdf4=1 - res=`${tools_dir}/grib_get -TA -p identifier,versionNumberOfSuperblock $tempNetcdf` - [ "$res" = "HDF5 0" ] +if [ $ECCODES_ON_WINDOWS -eq 0 ]; then + echo "Test HDF5 decoding ..." + # --------------------------- + # Note: this is only available in NetCDF-4. So need to check if the command worked with -k3 + input=${data_dir}/sample.grib2 + set +e + ${tools_dir}/grib_to_netcdf -k3 -o $tempNetcdf $input 2>/dev/null + stat=$? + set -e + if [ $stat -eq 0 ]; then + have_netcdf4=1 + res=`${tools_dir}/grib_get -TA -p identifier,versionNumberOfSuperblock $tempNetcdf` + [ "$res" = "HDF5 0" ] + fi fi - grib_files="\ regular_latlon_surface.grib2 \ regular_latlon_surface.grib1 \ From 295cd9c82b5cf550272999af6dd7d94f95c11e35 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 17 Aug 2021 16:19:21 +0100 Subject: [PATCH 587/683] Examples: prepBufr table/definition extraction --- examples/python/prepBufr_create_defs.py | 199 ++++++++++++++++++++++++ 1 file changed, 199 insertions(+) create mode 100644 examples/python/prepBufr_create_defs.py diff --git a/examples/python/prepBufr_create_defs.py b/examples/python/prepBufr_create_defs.py new file mode 100644 index 000000000..05aeb52c2 --- /dev/null +++ b/examples/python/prepBufr_create_defs.py @@ -0,0 +1,199 @@ +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities +# granted to it by virtue of its status as an intergovernmental organisation +# nor does it submit to any jurisdiction. + +import traceback +import sys +import os +import re +import getopt + +from eccodes import * + +VERBOSE = 1 # verbose error reporting +DEBUG = 0 + + +def usage(): + progname = os.path.basename(sys.argv[0]) + print("Usage: ", progname, "[options] bufr_file") + print("Options:") + print("\t-e generate the file defining Table B descriptors (element.table)") + print("\t-s generate the file defining Table D descriptors (sequence.def)") + print("") + + +def infer_type(units, scale): + ktype = "double" + if re.search("^CCITT", units) or re.search("^CHARACTER", units): + return "string" + if re.search("CODE\s*TABLE", units): + return "table" + if re.search("FLAG\s*TABLE", units): + return "flag" + if re.search("NUMERIC", units) or int(scale) <= 0: + return "long" + return ktype + + +def generate_tables(INPUT, what): + assert what in ("element", "sequence") + + f = open(INPUT, "rb") + + cnt = 0 + if what == "element": + print("#code|abbreviation|type|name|unit|scale|reference|width") + + # loop for the messages in the file + while 1: + # get handle for message + bufr = codes_bufr_new_from_file(f) + if bufr is None: + break + + # Sanity check + if codes_get(bufr, "dataCategory") != 11: + # print('BUFR message dataCategory must be 11 (BUFR tables). Ignoring') + codes_release(bufr) + continue + if codes_get(bufr, "numberOfSubsets") == 0: + # print('BUFR message number of subsets == 0. Ignoring') + codes_release(bufr) + continue + + if DEBUG: + print(f"Processing message {cnt+1}") + codes_set(bufr, "unpack", 1) + + # Each table message contains three delayed replications (031001): + # First is for Table A (skipped), second for Table B and third for Table D + + replications = codes_get_array(bufr, "delayedDescriptorReplicationFactor") + fDesc = codes_get_array(bufr, "fDescriptorToBeAddedOrDefined") + xDesc = codes_get_array(bufr, "xDescriptorToBeAddedOrDefined") + yDesc = codes_get_array(bufr, "yDescriptorToBeAddedOrDefined") + + assert len(fDesc) == len(xDesc) + assert len(fDesc) == len(yDesc) + assert len(replications) > 0 + assert len(fDesc) == replications[1] + replications[2] + + if what == "element": + try: + elementName1 = codes_get_array(bufr, "elementNameLine1") + elementName2 = codes_get_array(bufr, "elementNameLine2") + unitsName = codes_get_array(bufr, "unitsName") + unitsScaleSign = codes_get_array(bufr, "unitsScaleSign") + unitsScale = codes_get_array(bufr, "unitsScale") + unitsReferenceSign = codes_get_array(bufr, "unitsReferenceSign") + unitsReferenceValue = codes_get_array(bufr, "unitsReferenceValue") + elementDataWidth = codes_get_array(bufr, "elementDataWidth") + except CodesInternalError as err: + if DEBUG: + print("No element descriptors found") + pass + + for i in range(len(fDesc)): + fd = fDesc[i] + xd = xDesc[i] + yd = yDesc[i] + if fd == "0": + # ecCodes key (abbreviation) => first word of elementNameLine1 + el1 = elementName1[i].rstrip() + key = str.split(el1)[0] + # description (name) => Combine rest of elementNameLine1 and elementNameLine2 + desc = " ".join(str.split(el1)[1:]) + elementName2[i].rstrip() + if len(desc) == 0: + desc = key + units = unitsName[i].rstrip() + sign = unitsScaleSign[i] + scale = int(unitsScale[i]) + if sign == "-": + scale = -1 * scale + sign = unitsReferenceSign[i] + reference = int(unitsReferenceValue[i]) + if sign == "-": + reference = -1 * reference + width = elementDataWidth[i].rstrip() + ktype = infer_type(units, scale) + print( + f"{fd}{xd}{yd}|{key}|{ktype}|{desc}|{units}|{scale}|{reference}|{width}" + ) + if what == "sequence": + try: + descriptorDefiningSequence = codes_get_array( + bufr, "descriptorDefiningSequence" + ) + except CodesInternalError as err: + if DEBUG: + print("No sequence descriptors found") + pass + k = 0 + rindex = 3 # From index 3 onwards we have the contents of sequences + for i in range(len(fDesc)): + fd = fDesc[i] + xd = xDesc[i] + yd = yDesc[i] + if fd == "3": + repls = replications[rindex] + if repls: + print(f'"{fd}{xd}{yd}" = [ ', end="") + comma = "," + for j in range(repls): + seq = descriptorDefiningSequence[k + j] + if j == repls - 1: + comma = "" + print(f"{seq}{comma} ", end="") + k = k + repls + rindex = rindex + 1 + print("]") + + cnt += 1 + + codes_release(bufr) + + f.close() + + +def main(): + if len(sys.argv) < 2: + usage() + return 1 + try: + what = "element" + options = "es" + opts, args = getopt.getopt(sys.argv[1:], options) + for o, a in opts: + if o == "-e": + what = "element" + elif o == "-s": + what = "sequence" + else: + assert False, "Invalid option" + # Check we have a BUFR file to process + if not args: + usage() + return 1 + for arg in args: + generate_tables(arg, what) + except getopt.GetoptError as err: + print("Error: ", err) + usage() + return 1 + except CodesInternalError as err: + if VERBOSE: + traceback.print_exc(file=sys.stderr) + else: + sys.stderr.write(err.msg + "\n") + + return 1 + + +if __name__ == "__main__": + sys.exit(main()) From d8b4b30b5199db5123e66ea95ea142dd158b1b4f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 20 Aug 2021 13:20:35 +0100 Subject: [PATCH 588/683] Testing: test for data_g1simple_packing (GRIB1 spectral_simple) --- tests/grib_change_packing.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/grib_change_packing.sh b/tests/grib_change_packing.sh index 246a63bbf..b5b7fb8f5 100755 --- a/tests/grib_change_packing.sh +++ b/tests/grib_change_packing.sh @@ -92,6 +92,9 @@ input=${data_dir}/spherical_model_level.grib1 ${tools_dir}/grib_set -r -s packingType=spectral_simple $input $temp grib_check_key_equals $temp packingType 'spectral_simple' ${tools_dir}/grib_ls -p numberOfCodedValues $temp +${tools_dir}/grib_ls -n statistics $temp +stats=`${tools_dir}/grib_get -F%.1f -p average,standardDeviation $temp` +[ "$stats" = "195.1 12.0" ] rm -f $temp From dd04264394e798b87ce1f78911a01f14c1818852 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 20 Aug 2021 14:51:14 +0100 Subject: [PATCH 589/683] Testing: test for local def 4 for GRIB1 (accessor 'round') --- tests/grib_local.sh | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/tests/grib_local.sh b/tests/grib_local.sh index 48bc6ba82..6680bd8e9 100755 --- a/tests/grib_local.sh +++ b/tests/grib_local.sh @@ -117,8 +117,16 @@ grib_check_key_equals $temp section2Length 5 rm -f $temp -# Local Definition 5 -# ----------------------- +# Local Definition 4: Ocean model data +# --------------------------------------- +${tools_dir}/grib_set -s \ + localDefinitionNumber=4,coordinate2Flag=2,averaging1Flag=1,coordinate1Flag=1,coordinate2Start=1234 \ + $sample_g1 $temp +grib_check_key_equals $temp "mars.levelist,roundedMarsLevelist:d,roundedMarsLevelist:s" "1 1.234 1.234" + + +# Local Definition 5: Forecast probability data +# --------------------------------------------- sample_g1=$ECCODES_SAMPLES_PATH/GRIB1.tmpl temp=temp.grib_local.grib ${tools_dir}/grib_set -s setLocalDefinition=1,localDefinitionNumber=5 $sample_g1 $temp.1 @@ -181,4 +189,5 @@ result=`echo 'print "[ccccIdentifiers]";' | ${tools_dir}/grib_filter - $temp` [ "$result" = "kwbc ecmf sabm" ] + rm -f $temp $temp.1 $temp.2 $temp.3 From 71b81094cd3d4fcc88caeea4fa8e2ec717410d12 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 20 Aug 2021 15:20:59 +0100 Subject: [PATCH 590/683] Testing: test for grib_filter 'switch' --- tests/grib_filter.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tests/grib_filter.sh b/tests/grib_filter.sh index 41f967d0c..d0d7c0ece 100755 --- a/tests/grib_filter.sh +++ b/tests/grib_filter.sh @@ -189,6 +189,17 @@ sample1=$ECCODES_SAMPLES_PATH/sh_ml_grib1.tmpl padding=`echo 'print "[padding_grid50_1]";' | ${tools_dir}/grib_filter - $sample1` [ "$padding" = "000000000000000000000000000000000000" ] +echo "Test switch statement" +# -------------------------- +cat >temp.filt < Date: Fri, 20 Aug 2021 16:09:18 +0100 Subject: [PATCH 591/683] Spelling --- examples/C/fieldset.c | 2 +- examples/deprecated/fieldset.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/C/fieldset.c b/examples/C/fieldset.c index 8aaba204f..6eeda64cb 100644 --- a/examples/C/fieldset.c +++ b/examples/C/fieldset.c @@ -56,7 +56,7 @@ int main(int argc, char** argv) set = codes_fieldset_new_from_files(0, filenames, nfiles, keys, nkeys, 0, 0, &err); CODES_CHECK(err, 0); - /* not jet implemented */ + /* not yet implemented */ /* err=codes_fieldset_apply_where(set,"(centre=='ecmf') && number==1 || step==6 "); */ /* CODES_CHECK(err,0); */ diff --git a/examples/deprecated/fieldset.c b/examples/deprecated/fieldset.c index a4d53f559..8cf7c599b 100644 --- a/examples/deprecated/fieldset.c +++ b/examples/deprecated/fieldset.c @@ -57,7 +57,7 @@ int main(int argc, char** argv) { set=grib_fieldset_new_from_files(0,filenames,nfiles,keys,nkeys,0,0,&err); GRIB_CHECK(err,0); - /* not jet implemented */ + /* not yet implemented */ /* err=grib_fieldset_apply_where(set,"(centre=='ecmf') && number==1 || step==6 "); */ /* GRIB_CHECK(err,0); */ From 6fb7c21a2d7c9fb799ad174d84506e756e7240f1 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 20 Aug 2021 16:09:41 +0100 Subject: [PATCH 592/683] Memory leak --- src/grib_fieldset.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/grib_fieldset.c b/src/grib_fieldset.c index 5bf49f205..91e85929d 100644 --- a/src/grib_fieldset.c +++ b/src/grib_fieldset.c @@ -423,6 +423,7 @@ int grib_fieldset_apply_where(grib_fieldset* set, const char* where_string) print_math(m); printf("\n"); + grib_math_delete(set->context, m); return err; } From 32b23dc9fda675c62e6774aa8d0471d2e4fe16cb Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 20 Aug 2021 16:10:18 +0100 Subject: [PATCH 593/683] Initialize struct members --- src/grib_header_compute.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/grib_header_compute.c b/src/grib_header_compute.c index 828b4b42e..2e253620d 100644 --- a/src/grib_header_compute.c +++ b/src/grib_header_compute.c @@ -193,6 +193,7 @@ static grib_math* readatom(grib_context* c, char** form, int* err) p->name = strdup(buf); Assert(p->name); p->left = 0; + p->right = 0; switch (**form) { case '(': @@ -252,9 +253,9 @@ static grib_math* readpower(grib_context* c, char** form, int* err) { grib_math* p = readatom(c, form, err); - while (**form == '^' || (**form == '*' && *(*form + 1) == '*')) { grib_math* q = (grib_math*)grib_context_malloc(c, sizeof(grib_math)); + q->right = 0; q->left = p; q->arity = 2; From 686bd82b46db221dff20029470320a2cf87e0793 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 20 Aug 2021 16:10:55 +0100 Subject: [PATCH 594/683] Testing: experimental feature grib_fieldset_apply_where --- tests/grib_nearest_test.c | 6 ++++++ tests/grib_nearest_test.sh | 2 ++ 2 files changed, 8 insertions(+) diff --git a/tests/grib_nearest_test.c b/tests/grib_nearest_test.c index f5b1df4fb..4dd6d29d7 100644 --- a/tests/grib_nearest_test.c +++ b/tests/grib_nearest_test.c @@ -21,6 +21,8 @@ #include "eccodes.h" +int grib_fieldset_apply_where(grib_fieldset* set, const char* where_string); /*experimental*/ + static void usage(const char* prog) { printf("Usage: %s [-n] grib_file grib_file ...\n", prog); @@ -72,6 +74,10 @@ int main(int argc, char** argv) set = codes_fieldset_new_from_files(0, filenames, nfiles, 0, 0, 0, order_by, &err); CODES_CHECK(err, 0); + /* grib_fieldset_apply_where not fully implemented*/ + err=grib_fieldset_apply_where(set, "(centre=='ecmf') && number==1 || step==6"); + CODES_CHECK(err, 0); + printf("ordering by %s\n", order_by); printf("%d fields in the fieldset\n", codes_fieldset_count(set)); printf("n,step,param\n"); diff --git a/tests/grib_nearest_test.sh b/tests/grib_nearest_test.sh index 57381e1b2..666e1b26e 100755 --- a/tests/grib_nearest_test.sh +++ b/tests/grib_nearest_test.sh @@ -19,6 +19,7 @@ input_grb=${data_dir}/reduced_gaussian_pressure_level.grib1 # -------------------------------------- $EXEC ${test_dir}/grib_nearest_test $input_grb > $temp cat > $tempRef < $temp cat > $tempRef < Date: Fri, 20 Aug 2021 16:36:37 +0100 Subject: [PATCH 595/683] Testing: BUDG set date --- tests/pseudo_budg.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/pseudo_budg.sh b/tests/pseudo_budg.sh index 244af520c..fcff48d74 100755 --- a/tests/pseudo_budg.sh +++ b/tests/pseudo_budg.sh @@ -15,6 +15,7 @@ label="pseudo_budg_test" set -u tempOut=temp.$label.txt tempRef=temp.$label.ref +tempBud=temp.$label.bud ${tools_dir}/grib_ls -j ${data_dir}/budg > $tempOut cat > $tempRef << EOF @@ -31,6 +32,11 @@ cat > $tempRef << EOF EOF diff $tempRef $tempOut +# Set date +${tools_dir}/grib_set -s date=20170102 ${data_dir}/budg $tempBud +res=`${tools_dir}/grib_get -p mars.date $tempBud` +[ "$res" = "20170102" ] + ${tools_dir}/grib_dump ${data_dir}/budg ${tools_dir}/grib_dump -O ${data_dir}/budg @@ -42,4 +48,4 @@ ms=`${tools_dir}/grib_get -p mars.step $tempOut` [ "$ms" = "19" ] -rm -f $tempRef $tempOut +rm -f $tempRef $tempOut $tempBud From 64929ab32f68d607c373dd6dcfedb5116f58ee79 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 20 Aug 2021 16:37:31 +0100 Subject: [PATCH 596/683] Testing: BUFR code generation on sample --- tests/bufr_dump_samples.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tests/bufr_dump_samples.sh b/tests/bufr_dump_samples.sh index 05796c8eb..01ddc77a9 100755 --- a/tests/bufr_dump_samples.sh +++ b/tests/bufr_dump_samples.sh @@ -23,7 +23,15 @@ for file in $ECCODES_SAMPLES_PATH/BUFR*.tmpl; do done # Check one specific BUFR file dump output -${tools_dir}/bufr_dump -p $ECCODES_SAMPLES_PATH/BUFR3.tmpl > $temp +input=$ECCODES_SAMPLES_PATH/BUFR3.tmpl +${tools_dir}/bufr_dump -p $input > $temp diff ${data_dir}/BUFR3.tmpl.dump.plain.ref $temp +# Code generation +input=$ECCODES_SAMPLES_PATH/BUFR4.tmpl +for lang in C python fortran filter; do + ${tools_dir}/bufr_dump -D $lang $input >/dev/null + ${tools_dir}/bufr_dump -E $lang $input >/dev/null +done + rm -f $temp From 28ab943001c1933b81b4edd27691974bfb631a33 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 21 Aug 2021 22:17:22 +0100 Subject: [PATCH 597/683] Definitions: clean up --- definitions/grib1/local.98.4.def | 10 +- definitions/grib1/mars_labeling.4.def | 206 +++++++++++--------------- 2 files changed, 87 insertions(+), 129 deletions(-) diff --git a/definitions/grib1/local.98.4.def b/definitions/grib1/local.98.4.def index 7a11e510d..c335600f9 100644 --- a/definitions/grib1/local.98.4.def +++ b/definitions/grib1/local.98.4.def @@ -27,7 +27,6 @@ unsigned[1] methodNumber : dump ; # # Coordinate structure definition # - unsigned[1] spaceUnitFlag : dump ; unsigned[1] verticalCoordinateDefinition : dump ; @@ -41,7 +40,6 @@ unsigned[1] timeCoordinateDefinition : dump ; # # Position definition: mixed coordinates # - unsigned[1] mixedCoordinateFieldFlag : dump ; unsigned[1] coordinate1Flag : dump ; @@ -63,7 +61,6 @@ signed[4] coordinate2End : dump ; # # Data grid definitions # - unsigned[1] coordinate3Flag : dump ; unsigned[1] coordinate4Flag : dump ; @@ -87,7 +84,6 @@ flags[1] flagForNormalOrStaggeredGrid 'grib1/ocean.1.table' : dump; # # Auxiliary information # - flags[1] flagForAnyFurtherInformation 'grib1/ocean.1.table' : dump; unsigned[1] numberInHorizontalCoordinates : dump; @@ -101,13 +97,11 @@ unsigned[2] numberInTheAuxiliaryArray : dump ; # # Horizontal coordinate definition # - unsigned[4] horizontalCoordinateSupplement[numberInHorizontalCoordinates] : dump; # # Mixed coordinate definition # - unsigned[4] mixedCoordinateDefinition[numberInMixedCoordinateDefinition] : dump; # @@ -120,17 +114,15 @@ if (numberInTheGridCoordinateList>0) { # # Auxiliary array # - unsigned[4] auxiliary[numberInTheAuxiliaryArray] : dump; # # Post-auxiliary array # - constant postAuxiliaryArrayPresent = 1; if (flagShowingPostAuxiliaryArrayInUse == postAuxiliaryArrayPresent) { - unsigned[4] sizeOfPostAuxiliaryArrayPlusOne : dump; + unsigned[4] sizeOfPostAuxiliaryArrayPlusOne : dump; meta sizeOfPostAuxiliaryArray evaluate(sizeOfPostAuxiliaryArrayPlusOne - 1); if (sizeOfPostAuxiliaryArray>0) { unsigned[4] postAuxiliary[sizeOfPostAuxiliaryArray] : dump; diff --git a/definitions/grib1/mars_labeling.4.def b/definitions/grib1/mars_labeling.4.def index 279943ae6..d75df1341 100644 --- a/definitions/grib1/mars_labeling.4.def +++ b/definitions/grib1/mars_labeling.4.def @@ -21,173 +21,139 @@ constant isectionNumber2 = "h"; constant isectionNumber3 = "m"; constant isectionNumber4 = "z"; - constant tsectionNumber3 = "v"; constant tsectionNumber4 = "z"; constant tsectionNumber5 = "m"; -constant GRIB_DEPTH = 2; -constant GRIB_LONGITUDE = 3; -constant GRIB_LATITUDE = 4; +constant GRIB_DEPTH = 2; +constant GRIB_LONGITUDE = 3; +constant GRIB_LATITUDE = 4; meta verificationDate g1verificationdate(dataDate, dataTime, endStep) : read_only; - -if(horizontalCoordinateDefinition == 0) -{ - - if(coordinate1Flag == 1 ) - { - -# range - - - if(averaging1Flag == P_TAVG ){ - if( - marsType == TYPE_OR - || marsType == TYPE_FC - || marsType == TYPE_FF - || marsType == TYPE_FX - ) - { - meta marsRange evaluate((coordinate1End - coordinate1Start)/3600); - alias mars.range = marsRange; - } +if (horizontalCoordinateDefinition == 0) { + if (coordinate1Flag == 1 ) { + # range + if (averaging1Flag == P_TAVG ) { + if (marsType == TYPE_OR + || marsType == TYPE_FC + || marsType == TYPE_FF + || marsType == TYPE_FX) + { + meta marsRange evaluate((coordinate1End - coordinate1Start)/3600); + alias mars.range = marsRange; + } } -# section + # section + if (coordinate2Flag == 2) { alias mars.section = isectionNumber2; } + if (coordinate2Flag == 3) { alias mars.section = isectionNumber3; } + if (coordinate2Flag == 4) { alias mars.section = isectionNumber4; } - if(coordinate2Flag == 2) { alias mars.section = isectionNumber2;} - if(coordinate2Flag == 3) { alias mars.section = isectionNumber3;} - if(coordinate2Flag == 4) { alias mars.section = isectionNumber4;} - -# levelist latitude longitude - - if(coordinate2Flag == GRIB_DEPTH){ - meta marsLevelist divdouble( coordinate2Start,1000 ); - meta roundedMarsLevelist round( marsLevelist ,1000); - alias mars.levelist = roundedMarsLevelist ; - - } - if(coordinate2Flag == GRIB_LONGITUDE){ - meta marsLongitude divdouble( coordinate2Start,1000000 ); - meta roundedMarsLongitude round( marsLongitude ,1000); - alias mars.longitude = roundedMarsLongitude ; - } - - if(coordinate2Flag == GRIB_LATITUDE){ - meta marsLatitude divdouble( coordinate2Start,1000000 ); - - meta roundedMarsLatitude round( marsLatitude ,1000); - alias mars.latitude = roundedMarsLatitude ; + # levelist latitude longitude + if (coordinate2Flag == GRIB_DEPTH) { + meta marsLevelist divdouble( coordinate2Start,1000 ); + meta roundedMarsLevelist round( marsLevelist ,1000); + alias mars.levelist = roundedMarsLevelist ; + } + if (coordinate2Flag == GRIB_LONGITUDE) { + meta marsLongitude divdouble( coordinate2Start,1000000 ); + meta roundedMarsLongitude round( marsLongitude ,1000); + alias mars.longitude = roundedMarsLongitude ; } + if (coordinate2Flag == GRIB_LATITUDE) { + meta marsLatitude divdouble( coordinate2Start,1000000 ); + meta roundedMarsLatitude round( marsLatitude ,1000); + alias mars.latitude = roundedMarsLatitude ; + } -#product - if(averaging1Flag == 0) { alias mars.product = coordAveraging0;} - if(averaging1Flag == 1) { alias mars.product = coordAveraging1;} - if(averaging1Flag == 2) { alias mars.product = coordAveraging2;} - if(averaging1Flag == 3) { alias mars.product = coordAveraging3;} + #product + if (averaging1Flag == 0) { alias mars.product = coordAveraging0;} + if (averaging1Flag == 1) { alias mars.product = coordAveraging1;} + if (averaging1Flag == 2) { alias mars.product = coordAveraging2;} + if (averaging1Flag == 3) { alias mars.product = coordAveraging3;} -# date - if( - (marsType == TYPE_OR && averaging1Flag == P_TAVG) + # date + if ( (marsType == TYPE_OR && averaging1Flag == P_TAVG) || (marsType == TYPE_OR && averaging1Flag == P_TACC) - || (marsType == TYPE_FX && averaging1Flag == P_TAVG) - ) - { + || (marsType == TYPE_FX && averaging1Flag == P_TAVG)) + { #remove mars.date; alias mars.date = verificationDate; #remove mars.step; constant stepZero = 0; alias mars.step = stepZero; - } - - - } - else - { - - meta coordinateIndexNumber evaluate(coordinate4Flag+coordinate3Flag); + } + } + else + { + meta coordinateIndexNumber evaluate(coordinate4Flag+coordinate3Flag); # levelist latitude longitude + if (coordinateIndexNumber== 3) { + meta marsLatitude divdouble( coordinate1Start,1000000); + meta marsLongitude divdouble( coordinate2Start,1000000); - if(coordinateIndexNumber== 3) - { - meta marsLatitude divdouble( coordinate1Start,1000000); - meta marsLongitude divdouble( coordinate2Start,1000000); + meta roundedMarsLatitude round( marsLatitude ,1000); + meta roundedMarsLongitude round( marsLongitude ,1000); - meta roundedMarsLatitude round( marsLatitude ,1000); - meta roundedMarsLongitude round( marsLongitude ,1000); + alias mars.latitude = roundedMarsLatitude ; + alias mars.longitude = roundedMarsLongitude ; + } - alias mars.latitude = roundedMarsLatitude ; - alias mars.longitude = roundedMarsLongitude ; + if (coordinateIndexNumber == 4) { + meta marsLevelist divdouble( coordinate1Start,1000); + meta marsLatitude divdouble( coordinate2Start,1000000); - } + meta roundedMarsLevelist round( marsLevelist ,1000); + meta roundedMarsLatitude round( marsLatitude ,1000); - if(coordinateIndexNumber == 4) - { - meta marsLevelist divdouble( coordinate1Start,1000); - meta marsLatitude divdouble( coordinate2Start,1000000); + alias mars.levelist = roundedMarsLevelist ; + alias mars.latitude = roundedMarsLatitude ; + } - meta roundedMarsLevelist round( marsLevelist ,1000); - meta roundedMarsLatitude round( marsLatitude ,1000); + if (coordinateIndexNumber == 5) { + meta marsLevelist divdouble( coordinate1Start,1000); + meta marsLongitude divdouble( coordinate2Start,1000000); - alias mars.levelist = roundedMarsLevelist ; - alias mars.latitude = roundedMarsLatitude ; - } + meta roundedMarsLevelist round( marsLevelist ,1000); + meta roundedMarsLongitude round( marsLongitude ,1000); - if(coordinateIndexNumber == 5) - { - meta marsLevelist divdouble( coordinate1Start,1000); - meta marsLongitude divdouble( coordinate2Start,1000000); + alias mars.levelist = roundedMarsLevelist ; + alias mars.longitude = roundedMarsLongitude ; + } - meta roundedMarsLevelist round( marsLevelist ,1000); - meta roundedMarsLongitude round( marsLongitude ,1000); + # section + if (coordinateIndexNumber == 3) { alias mars.section = tsectionNumber3; } + if (coordinateIndexNumber == 4) { alias mars.section = tsectionNumber4; } + if (coordinateIndexNumber == 5) { alias mars.section = tsectionNumber5; } - alias mars.levelist = roundedMarsLevelist ; - alias mars.longitude = roundedMarsLongitude ; - - } - -# section - - if(coordinateIndexNumber == 3) { alias mars.section = tsectionNumber3;} - if(coordinateIndexNumber == 4) { alias mars.section = tsectionNumber4;} - if(coordinateIndexNumber == 5) { alias mars.section = tsectionNumber5;} - -# range - if(averaging1Flag == P_INST){ - if( - (marsType == TYPE_OR) + # range + if (averaging1Flag == P_INST) { + if ((marsType == TYPE_OR) ||(marsType == TYPE_FC) ||(marsType == TYPE_CF) ||(marsType == TYPE_PF) ||(marsType == TYPE_FF) - ||(marsType == TYPE_OF) - ) + ||(marsType == TYPE_OF)) { - if( coordinate4Flag == 1){ + if (coordinate4Flag == 1){ meta marsRange evaluate((coordinate4OfLastGridPoint - coordinate4OfFirstGridPoint)/3600); - }else{ - + } else { meta marsRange evaluate((coordinate3OfLastGridPoint - coordinate3OfFirstGridPoint)/3600); } - - alias mars.range = marsRange; + alias mars.range = marsRange; } - } - + } # product alias mars.product = coordAveragingTims; # date - - if(marsType == TYPE_OR && averaging1Flag == P_INST){ - + if (marsType == TYPE_OR && averaging1Flag == P_INST) { #remove mars.date; alias mars.date = verificationDate; #remove mars.step; constant stepZero = 0; alias mars.step =stepZero; } - } + } } From 8258c79d92b8868b4d43bb6bda23813d3b7895af Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 23 Aug 2021 16:38:30 +0100 Subject: [PATCH 598/683] Spelling --- tests/windows_testing.bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/windows_testing.bashrc b/tests/windows_testing.bashrc index 60b316082..37509e676 100644 --- a/tests/windows_testing.bashrc +++ b/tests/windows_testing.bashrc @@ -1,4 +1,4 @@ -# bashrc to be used for running tests on windows. +# bashrc to be used for running tests on Microsoft Windows. # In order for the functions to be usable by the tests, we need to use the -i option. # Typical usage: # bash --rcfile windows_testing.bashrc -ci "some/test/script.sh" From 2cde2806d03858b74df6a726951d500956656e5b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 23 Aug 2021 16:38:53 +0100 Subject: [PATCH 599/683] ECC-1273: grib_get_data: keys added via '-p' should be separated by spaces not commas --- tests/grib_iterator.sh | 6 ++++++ tools/grib_get_data.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/grib_iterator.sh b/tests/grib_iterator.sh index 3506ef29b..1563957e9 100755 --- a/tests/grib_iterator.sh +++ b/tests/grib_iterator.sh @@ -9,6 +9,8 @@ # . ./include.sh +set -u +temp=temp.grib_iterator.grib files="reduced_latlon_surface.grib1 \ reduced_gaussian_pressure_level.grib1 \ @@ -32,3 +34,7 @@ done # ECC-822: Increase lat/lon decimals using default grib_get_data ${tools_dir}/grib_get_data -L%12.6f%11.5f ${data_dir}/regular_latlon_surface.grib2 +${tools_dir}/grib_get_data -p shortName,level ${data_dir}/regular_latlon_surface.grib2 > $temp +grep -q "Latitude Longitude Value shortName level" $temp + +rm -f $temp diff --git a/tools/grib_get_data.c b/tools/grib_get_data.c index 1317a4d46..4d0e054a7 100644 --- a/tools/grib_get_data.c +++ b/tools/grib_get_data.c @@ -208,7 +208,7 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h) if (print_keys) for (i = 0; i < options->print_keys_count; i++) - fprintf(dump_file, ", %s", options->print_keys[i].name); + fprintf(dump_file, " %s", options->print_keys[i].name); fprintf(dump_file, "\n"); From 82a4d1ff748cabe722375d311a82e49e60442103 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 23 Aug 2021 16:43:30 +0100 Subject: [PATCH 600/683] Bump up version --- .appveyor.yml | 2 +- CMakeLists.txt | 2 +- version.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 0c7728555..68e119544 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -2,7 +2,7 @@ # general configuration # #---------------------------------# -version: 2.23.0-{build}-{branch} +version: 2.24.0-{build}-{branch} branches: only: diff --git a/CMakeLists.txt b/CMakeLists.txt index c4265cfaf..feabfed3b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ cmake_minimum_required( VERSION 3.12 FATAL_ERROR ) find_package( ecbuild 3.4 REQUIRED HINTS ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/../ecbuild) # Initialise project -project( eccodes VERSION 2.23.0 LANGUAGES C ) +project( eccodes VERSION 2.24.0 LANGUAGES C ) ############################################################################### # system checks needed for eccodes_config.h and some options like MEMFS diff --git a/version.sh b/version.sh index c5d88fc66..6f5863982 100644 --- a/version.sh +++ b/version.sh @@ -3,7 +3,7 @@ PACKAGE_NAME='eccodes' # Package version ECCODES_MAJOR_VERSION=2 -ECCODES_MINOR_VERSION=23 +ECCODES_MINOR_VERSION=24 ECCODES_REVISION_VERSION=0 ECCODES_CURRENT=1 From 97710440d41e8fd3248b126521b59fe9742f8341 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 26 Aug 2021 13:03:16 +0100 Subject: [PATCH 601/683] ECC-1274: BUFR: duplicated/incorrect error messages during decode --- src/grib_accessor_class_bufr_elements_table.c | 2 +- src/grib_accessor_class_expanded_descriptors.c | 13 +++++++++---- src/grib_api_prototypes.h | 2 +- src/grib_bufr_descriptor.c | 4 ++-- 4 files changed, 13 insertions(+), 8 deletions(-) diff --git a/src/grib_accessor_class_bufr_elements_table.c b/src/grib_accessor_class_bufr_elements_table.c index 860ebe440..79d81caea 100644 --- a/src/grib_accessor_class_bufr_elements_table.c +++ b/src/grib_accessor_class_bufr_elements_table.c @@ -407,7 +407,7 @@ bufr_descriptor* accessor_bufr_elements_table_get_descriptor(grib_accessor* a, i v = (bufr_descriptor*)grib_context_malloc_clear(c, sizeof(bufr_descriptor)); if (!v) { grib_context_log(c, GRIB_LOG_ERROR, - "grib_bufr_descriptor_new unable to allocate %ld bytes\n", sizeof(bufr_descriptor)); + "accessor_bufr_elements_table_get_descriptor: unable to allocate %ld bytes\n", sizeof(bufr_descriptor)); *err = GRIB_OUT_OF_MEMORY; return NULL; } diff --git a/src/grib_accessor_class_expanded_descriptors.c b/src/grib_accessor_class_expanded_descriptors.c index bee48fb9e..b27c36302 100644 --- a/src/grib_accessor_class_expanded_descriptors.c +++ b/src/grib_accessor_class_expanded_descriptors.c @@ -216,6 +216,7 @@ static int global_depth = -1; #endif #define BUFR_DESCRIPTORS_ARRAY_USED_SIZE(v) ((v)->n) +#define SILENT 1 static void __expand(grib_accessor* a, bufr_descriptors_array* unexpanded, bufr_descriptors_array* expanded, change_coding_params* ccp, int* err) @@ -273,7 +274,7 @@ static void __expand(grib_accessor* a, bufr_descriptors_array* unexpanded, bufr_ inner_unexpanded = grib_bufr_descriptors_array_new(c, DESC_SIZE_INIT, DESC_SIZE_INCR); for (i = 0; i < size; i++) { - vv = grib_bufr_descriptor_new(self->tablesAccessor, v[i], err); + vv = grib_bufr_descriptor_new(self->tablesAccessor, v[i], !SILENT, err); inner_unexpanded = grib_bufr_descriptors_array_push(inner_unexpanded, vv); } grib_context_free(c, v); @@ -396,7 +397,7 @@ static void __expand(grib_accessor* a, bufr_descriptors_array* unexpanded, bufr_ DESCRIPTORS_POP_FRONT_OR_RETURN(unexpanded, u); size = 1; if (ccp->associatedFieldWidth && u->X != 31) { - bufr_descriptor* au = grib_bufr_descriptor_new(self->tablesAccessor, 999999, err); + bufr_descriptor* au = grib_bufr_descriptor_new(self->tablesAccessor, 999999, !SILENT, err); au->width = ccp->associatedFieldWidth; grib_bufr_descriptor_set_scale(au, 0); strcpy(au->shortName, "associatedField"); @@ -658,8 +659,12 @@ static int expand(grib_accessor* a) unexpanded_copy = grib_bufr_descriptors_array_new(c, unexpandedSize, DESC_SIZE_INCR); operator206yyy_width = 0; for (i = 0; i < unexpandedSize; i++) { - bufr_descriptor* aDescriptor1 = grib_bufr_descriptor_new(self->tablesAccessor, u[i], &err); - bufr_descriptor* aDescriptor2 = grib_bufr_descriptor_new(self->tablesAccessor, u[i], &err); + bufr_descriptor *aDescriptor1, *aDescriptor2; + /* ECC-1274: clear error and only issue msg once */ + err = 0; + aDescriptor1 = grib_bufr_descriptor_new(self->tablesAccessor, u[i], SILENT, &err); + err = 0; + aDescriptor2 = grib_bufr_descriptor_new(self->tablesAccessor, u[i], !SILENT, &err); /* ECC-433: Operator 206YYY */ if (aDescriptor1->F == 2 && aDescriptor1->X == 6) { diff --git a/src/grib_api_prototypes.h b/src/grib_api_prototypes.h index 6013475c4..66ec2432e 100644 --- a/src/grib_api_prototypes.h +++ b/src/grib_api_prototypes.h @@ -171,7 +171,7 @@ grib_hash_array_value* grib_double_hash_array_value_new(grib_context* c, const c void grib_hash_array_value_delete(grib_context* c, grib_hash_array_value* v); /* grib_bufr_descriptor.c */ -bufr_descriptor* grib_bufr_descriptor_new(grib_accessor* tables_accessor, int code, int* err); +bufr_descriptor* grib_bufr_descriptor_new(grib_accessor* tables_accessor, int code, int silent, int* err); bufr_descriptor* grib_bufr_descriptor_clone(bufr_descriptor* d); int grib_bufr_descriptor_set_code(grib_accessor* tables_accessor, int code, bufr_descriptor* v); void grib_bufr_descriptor_set_reference(bufr_descriptor* v, long reference); diff --git a/src/grib_bufr_descriptor.c b/src/grib_bufr_descriptor.c index 9518786e5..a0e0eb315 100644 --- a/src/grib_bufr_descriptor.c +++ b/src/grib_bufr_descriptor.c @@ -11,10 +11,10 @@ #include "grib_api_internal.h" -bufr_descriptor* grib_bufr_descriptor_new(grib_accessor* tables_accessor, int code, int* err) +bufr_descriptor* grib_bufr_descriptor_new(grib_accessor* tables_accessor, int code, int silent, int* err) { bufr_descriptor* ret = accessor_bufr_elements_table_get_descriptor(tables_accessor, code, err); - if (*err) + if (!silent && *err) grib_context_log(tables_accessor->context, GRIB_LOG_ERROR, "unable to get descriptor %06d from table", code); return ret; From 5bee4847be28c9d79e885a12c4d3fd5ee1eaabc0 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 27 Aug 2021 19:38:46 +0100 Subject: [PATCH 602/683] ECC-1275: grib_set: Setting unsigned values to -1 sets the maximum value for that key --- src/grib_accessor_class_unsigned.c | 12 +++++----- tests/grib_set.sh | 38 ++++++++++++++++++++++++++---- 2 files changed, 39 insertions(+), 11 deletions(-) diff --git a/src/grib_accessor_class_unsigned.c b/src/grib_accessor_class_unsigned.c index d1e09634e..093d2a500 100644 --- a/src/grib_accessor_class_unsigned.c +++ b/src/grib_accessor_class_unsigned.c @@ -235,14 +235,14 @@ int pack_long_unsigned_helper(grib_accessor* a, const long* val, size_t* len, in /* Check if value fits into number of bits */ if (check) { - const long nbits = self->nbytes * 8; + if (v < 0) { + grib_context_log(a->context, GRIB_LOG_ERROR, + "Key \"%s\": Trying to encode a negative value of %ld for key of type unsigned\n", a->name, v); + return GRIB_ENCODING_ERROR; + } /* See GRIB-23 and GRIB-262 */ if (!value_is_missing(v)) { - if (v < 0) { - grib_context_log(a->context, GRIB_LOG_ERROR, - "Key \"%s\": Trying to encode a negative value of %ld for key of type unsigned\n", a->name, v); - return GRIB_ENCODING_ERROR; - } + const long nbits = self->nbytes * 8; if (nbits < 33) { unsigned long maxval = (1UL << nbits) - 1; if (maxval > 0 && v > maxval) { /* See ECC-1002 */ diff --git a/tests/grib_set.sh b/tests/grib_set.sh index 325d4168e..2871f661d 100755 --- a/tests/grib_set.sh +++ b/tests/grib_set.sh @@ -13,7 +13,8 @@ REDIRECT=/dev/null infile=${data_dir}/regular_gaussian_surface.grib1 -outfile=${data_dir}/set.grib1 +outfile=${data_dir}/temp.grib_set.grib +temp=temp.grib_set.out rm -f $outfile @@ -52,13 +53,37 @@ levtype=`${tools_dir}/grib_get -p levtype:l $outfile` centre=`${tools_dir}/grib_get -p centre:l $outfile` [ $centre -eq 80 ] +# Set without -s. Expected to fail +# ---------------------------------------------------- set +e -# This is expected to fail ${tools_dir}/grib_set -p levtype $infile $outfile 2> $REDIRECT > $REDIRECT -[ $? -ne 0 ] +status=$? set -e +[ $status -ne 0 ] -# GRIB-941: encoding of grib2 angles +# Out-of-bounds value. Expected to fail +# ---------------------------------------------------- +input=${data_dir}/reduced_gaussian_sub_area.grib2 +set +e +${tools_dir}/grib_set -s perturbationNumber=1000 $input $outfile 2>$temp +status=$? +set -e +[ $status -ne 0 ] +grep -q "Trying to encode value of 1000 but the maximum allowable value is 255 (number of bits=8)" $temp + +# Negative value for an unsigned key. Expected to fail +# ---------------------------------------------------- +input=${data_dir}/reduced_gaussian_sub_area.grib2 +set +e +${tools_dir}/grib_set -s perturbationNumber=-1 $input $outfile 2>$temp +status=$? +set -e +[ $status -ne 0 ] +grep -q "Trying to encode a negative value of -1 for key of type unsigned" $temp + + +# GRIB-941: encoding of GRIB2 angles +# ----------------------------------- angleInDegrees=130.9989 angleInMicroDegrees=130998900 files="GRIB2.tmpl regular_gg_pl_grib2.tmpl reduced_gg_pl_320_grib2.tmpl polar_stereographic_pl_grib2.tmpl" @@ -69,14 +94,17 @@ for f in $files; do done # GRIB-943: centre code table +# ---------------------------- ${tools_dir}/grib_set -s centre=289 $ECCODES_SAMPLES_PATH/GRIB2.tmpl $outfile ${tools_dir}/grib_dump -O $outfile | grep -q 'centre = 289.*Zambia' # ECC-539: avoid output being the same as input +# ----------------------------------------------- set +e ${tools_dir}/grib_set -s centre=0 $outfile $outfile status=$? set -e [ $status -ne 0 ] -rm -f $outfile + +rm -f $outfile $temp From 7dbb862a4ccbe1abd70e808abb2b8fd09b826ac7 Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Sun, 29 Aug 2021 16:25:42 +0100 Subject: [PATCH 603/683] Generate 7 memfs files for Windows --- memfs.py | 4 ++-- memfs/CMakeLists.txt | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/memfs.py b/memfs.py index 187a58ab1..31a38032a 100755 --- a/memfs.py +++ b/memfs.py @@ -14,7 +14,7 @@ print("MEMFS: starting") # Exclude experimental features e.g. GRIB3 and TAF # The BUFR codetables is not used in the engine EXCLUDED = ["grib3", "codetables", "taf", "stations"] -EXPECTED_FCOUNT = 6 +EXPECTED_FCOUNT = 7 pos = 1 if sys.argv[1] == "-exclude": @@ -36,7 +36,7 @@ print("Excluding: ", EXCLUDED) FILES = {} SIZES = {} NAMES = [] -CHUNK = 16 * 1024 * 1024 # chunk size in bytes +CHUNK = 14 * 1024 * 1024 # chunk size in bytes # Binary to ASCII function. Different in Python 2 and 3 try: diff --git a/memfs/CMakeLists.txt b/memfs/CMakeLists.txt index 427c24818..b6523ac73 100644 --- a/memfs/CMakeLists.txt +++ b/memfs/CMakeLists.txt @@ -6,6 +6,7 @@ set( generated_c_files ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_004.c ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_005.c ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_006.c + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_007.c ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_final.c) set( exclude "" ) From f8e9f1c9ad62fafadb92855f5aa1664ea9f8ffb3 Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Sun, 29 Aug 2021 22:58:18 +0100 Subject: [PATCH 604/683] Better control of memfs --- memfs.py | 16 ++++++++++------ memfs/CMakeLists.txt | 14 ++------------ 2 files changed, 12 insertions(+), 18 deletions(-) diff --git a/memfs.py b/memfs.py index 31a38032a..eb3f388d5 100755 --- a/memfs.py +++ b/memfs.py @@ -14,17 +14,14 @@ print("MEMFS: starting") # Exclude experimental features e.g. GRIB3 and TAF # The BUFR codetables is not used in the engine EXCLUDED = ["grib3", "codetables", "taf", "stations"] -EXPECTED_FCOUNT = 7 pos = 1 if sys.argv[1] == "-exclude": product = sys.argv[2] if product == "bufr": EXCLUDED.append(product) - EXPECTED_FCOUNT = 4 elif product == "grib": EXCLUDED.extend(["grib1", "grib2"]) - EXPECTED_FCOUNT = 2 else: assert False, "Invalid product %s" % product pos = 3 @@ -54,7 +51,8 @@ def get_outfile_name(base, count): output_file_base = sys.argv[-1] buffer = None -fcount = -1 +fcount = 0 +MAX_FCOUNT = 10 for directory in dirs: @@ -69,8 +67,8 @@ for directory in dirs: for name in files: if buffer is None: - fcount += 1 opath = get_outfile_name(output_file_base, fcount) + fcount += 1 print("MEMFS: Generating output:", opath) buffer = open(opath, "w") @@ -119,9 +117,15 @@ for directory in dirs: if buffer is not None: buffer.close() +while fcount < MAX_FCOUNT: + opath = get_outfile_name(output_file_base, fcount) + print("MEMFS: Generating output:", opath, "(empty)") + with open(opath, "w") as f: + print("/* empty */", file=f) + fcount += 1 + # The number of generated C files is hard coded. # See memfs/CMakeLists.txt -assert fcount == EXPECTED_FCOUNT, fcount opath = output_file_base + "_final.c" print("MEMFS: Generating output:", opath) g = open(opath, "w") diff --git a/memfs/CMakeLists.txt b/memfs/CMakeLists.txt index b6523ac73..e3fe7dd41 100644 --- a/memfs/CMakeLists.txt +++ b/memfs/CMakeLists.txt @@ -7,25 +7,15 @@ set( generated_c_files ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_005.c ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_006.c ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_007.c + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_008.c + ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_009.c ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_final.c) set( exclude "" ) if( NOT HAVE_PRODUCT_BUFR ) set( exclude -exclude bufr ) - set( generated_c_files - ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_000.c - ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_001.c - ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_002.c - ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_003.c - ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_004.c - ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_final.c) elseif( NOT HAVE_PRODUCT_GRIB ) set( exclude -exclude grib ) - set( generated_c_files - ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_000.c - ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_001.c - ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_002.c - ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_final.c) endif() add_custom_command( From 44518bee3d59c87855340fce698db373315c47e0 Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Sun, 29 Aug 2021 22:59:06 +0100 Subject: [PATCH 605/683] Better memfs --- memfs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/memfs.py b/memfs.py index eb3f388d5..ea4800abb 100755 --- a/memfs.py +++ b/memfs.py @@ -117,6 +117,8 @@ for directory in dirs: if buffer is not None: buffer.close() +assert fcount <= MAX_FCOUNT, fcount + while fcount < MAX_FCOUNT: opath = get_outfile_name(output_file_base, fcount) print("MEMFS: Generating output:", opath, "(empty)") From 2b84a6d52771818a824aa404a396f569d86bb3bf Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Mon, 30 Aug 2021 08:34:39 +0100 Subject: [PATCH 606/683] Better handling of memfs --- memfs.py | 72 ++++++++++++++++++++++++++++++++++---------- memfs/CMakeLists.txt | 17 +++++++---- 2 files changed, 67 insertions(+), 22 deletions(-) diff --git a/memfs.py b/memfs.py index ea4800abb..df7f42d8d 100755 --- a/memfs.py +++ b/memfs.py @@ -1,12 +1,54 @@ #!/usr/bin/env python from __future__ import print_function + +import argparse +import binascii import os import re import sys -import binascii import time -assert len(sys.argv) > 2 +parser = argparse.ArgumentParser() + +parser.add_argument( + "-n", + "--count", + type=int, + default=10, + help="Number of files to generate", +) + +parser.add_argument( + "-C", + "--chunk", + type=int, + default=16, + help="Chunk size (MB)", +) + +parser.add_argument( + "-o", + "--output", + type=str, + default="memfs_gen", + help="Name of C file to generate", +) + +parser.add_argument( + "-e", + "--exclude", + help="Exclude packages", +) + +parser.add_argument( + "dirs", + type=str, + nargs="+", + help="The list of directories to process", +) + +args = parser.parse_args() + start = time.time() print("MEMFS: starting") @@ -15,25 +57,23 @@ print("MEMFS: starting") # The BUFR codetables is not used in the engine EXCLUDED = ["grib3", "codetables", "taf", "stations"] -pos = 1 -if sys.argv[1] == "-exclude": - product = sys.argv[2] - if product == "bufr": - EXCLUDED.append(product) - elif product == "grib": - EXCLUDED.extend(["grib1", "grib2"]) - else: - assert False, "Invalid product %s" % product - pos = 3 +EXCLUDE = { + None: [], + "bufr": ["bufr"], + "grib": ["grib1", "grib2"], +} -dirs = [os.path.realpath(x) for x in sys.argv[pos:-1]] +EXCLUDED.extend(EXCLUDE[args.exclude]) + + +dirs = [os.path.realpath(x) for x in args.dirs] print("Directories: ", dirs) print("Excluding: ", EXCLUDED) FILES = {} SIZES = {} NAMES = [] -CHUNK = 14 * 1024 * 1024 # chunk size in bytes +CHUNK = args.chunk * 1024 * 1024 # chunk size in bytes # Binary to ASCII function. Different in Python 2 and 3 try: @@ -48,11 +88,11 @@ def get_outfile_name(base, count): # The last argument is the base name of the generated C file(s) -output_file_base = sys.argv[-1] +output_file_base = args.output buffer = None fcount = 0 -MAX_FCOUNT = 10 +MAX_FCOUNT = args.count for directory in dirs: diff --git a/memfs/CMakeLists.txt b/memfs/CMakeLists.txt index e3fe7dd41..04aba8494 100644 --- a/memfs/CMakeLists.txt +++ b/memfs/CMakeLists.txt @@ -1,3 +1,8 @@ +list( APPEND memfs_args + --count 10 + --output ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen + ) + set( generated_c_files ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_000.c ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_001.c @@ -11,21 +16,21 @@ set( generated_c_files ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_009.c ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen_final.c) -set( exclude "" ) if( NOT HAVE_PRODUCT_BUFR ) - set( exclude -exclude bufr ) -elseif( NOT HAVE_PRODUCT_GRIB ) - set( exclude -exclude grib ) + list( APPEND memfs_args --exclude bufr) +endif() + +if( NOT HAVE_PRODUCT_GRIB ) + list( APPEND memfs_args --exclude grib) endif() add_custom_command( OUTPUT ${generated_c_files} COMMAND ${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/memfs.py - ${exclude} + ${memfs_args} ${PROJECT_SOURCE_DIR}/definitions ${PROJECT_SOURCE_DIR}/samples ${PROJECT_SOURCE_DIR}/ifs_samples - ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen DEPENDS ${PROJECT_SOURCE_DIR}/memfs.py) set_source_files_properties( From 26e5abf45fcecac95f459741eca711410e396590 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 30 Aug 2021 13:47:38 +0100 Subject: [PATCH 607/683] ECC-1275: Fix broken tests on Windows --- src/grib_accessor_class_unsigned.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/grib_accessor_class_unsigned.c b/src/grib_accessor_class_unsigned.c index 093d2a500..f98f910d3 100644 --- a/src/grib_accessor_class_unsigned.c +++ b/src/grib_accessor_class_unsigned.c @@ -235,9 +235,9 @@ int pack_long_unsigned_helper(grib_accessor* a, const long* val, size_t* len, in /* Check if value fits into number of bits */ if (check) { - if (v < 0) { + if (val[0] < 0) { grib_context_log(a->context, GRIB_LOG_ERROR, - "Key \"%s\": Trying to encode a negative value of %ld for key of type unsigned\n", a->name, v); + "Key \"%s\": Trying to encode a negative value of %ld for key of type unsigned\n", a->name, val[0]); return GRIB_ENCODING_ERROR; } /* See GRIB-23 and GRIB-262 */ From eeb48dda9443fbfe35da0b643a7d471078111e20 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 31 Aug 2021 10:59:25 +0100 Subject: [PATCH 608/683] Suppress warning by ISO compilers re empty translation unit --- memfs.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/memfs.py b/memfs.py index df7f42d8d..31e2efe84 100755 --- a/memfs.py +++ b/memfs.py @@ -163,7 +163,9 @@ while fcount < MAX_FCOUNT: opath = get_outfile_name(output_file_base, fcount) print("MEMFS: Generating output:", opath, "(empty)") with open(opath, "w") as f: - print("/* empty */", file=f) + # ISO compilers issue a warning for an empty translation unit + # so add a dummy declaration to suppress this + print("struct eccodes_suppress_iso_warning;/* empty */", file=f) fcount += 1 # The number of generated C files is hard coded. From eac369e7e63733cb06caafae919fbdec9b8146f3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 31 Aug 2021 11:38:56 +0100 Subject: [PATCH 609/683] ECC-1276: MEMFS: Better management of generated files --- memfs/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/memfs/CMakeLists.txt b/memfs/CMakeLists.txt index 04aba8494..254336231 100644 --- a/memfs/CMakeLists.txt +++ b/memfs/CMakeLists.txt @@ -1,3 +1,5 @@ +# Note: the count 10 of generated C files must match +# the 'generated_c_files' list list( APPEND memfs_args --count 10 --output ${CMAKE_CURRENT_BINARY_DIR}/memfs_gen From f08c23a0ee0fed2cc2e06c4ab0b883c5bebbcbdc Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 2 Sep 2021 11:19:51 +0100 Subject: [PATCH 610/683] ECC-1277: Test eccodes_t_grib_to_netcdf fails --- tests/grib_to_netcdf.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/grib_to_netcdf.sh b/tests/grib_to_netcdf.sh index 914dc1f5a..68eca4cfb 100755 --- a/tests/grib_to_netcdf.sh +++ b/tests/grib_to_netcdf.sh @@ -62,10 +62,11 @@ if [ $ECCODES_ON_WINDOWS -eq 0 ]; then ${tools_dir}/grib_to_netcdf -k3 -o $tempNetcdf $input 2>/dev/null stat=$? set -e + ${tools_dir}/grib_dump -TA -O $tempNetcdf if [ $stat -eq 0 ]; then have_netcdf4=1 - res=`${tools_dir}/grib_get -TA -p identifier,versionNumberOfSuperblock $tempNetcdf` - [ "$res" = "HDF5 0" ] + res=`${tools_dir}/grib_get -TA -p identifier $tempNetcdf` + [ "$res" = "HDF5" ] fi fi From b4e390d2940bb68aff7eeb0e80ba94f90fe7d2e7 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 2 Sep 2021 14:07:39 +0100 Subject: [PATCH 611/683] ECC-1277: fix test for netcdf3 --- tests/grib_to_netcdf.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/grib_to_netcdf.sh b/tests/grib_to_netcdf.sh index 68eca4cfb..a2bc97340 100755 --- a/tests/grib_to_netcdf.sh +++ b/tests/grib_to_netcdf.sh @@ -62,9 +62,9 @@ if [ $ECCODES_ON_WINDOWS -eq 0 ]; then ${tools_dir}/grib_to_netcdf -k3 -o $tempNetcdf $input 2>/dev/null stat=$? set -e - ${tools_dir}/grib_dump -TA -O $tempNetcdf if [ $stat -eq 0 ]; then have_netcdf4=1 + ${tools_dir}/grib_dump -TA -O $tempNetcdf res=`${tools_dir}/grib_get -TA -p identifier $tempNetcdf` [ "$res" = "HDF5" ] fi From 26195f39735c0cfb6cc7954e25035b8bbd098c37 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 3 Sep 2021 12:44:44 +0100 Subject: [PATCH 612/683] ECC-1234: Python3 bindings: Remove the experimental high-level interface --- examples/python/high_level_api.sh | 18 -- examples/python/high_level_api_bufr.py | 211 -------------------- examples/python/high_level_api_grib.py | 257 ------------------------- 3 files changed, 486 deletions(-) delete mode 100755 examples/python/high_level_api.sh delete mode 100644 examples/python/high_level_api_bufr.py delete mode 100644 examples/python/high_level_api_grib.py diff --git a/examples/python/high_level_api.sh b/examples/python/high_level_api.sh deleted file mode 100755 index 367af6587..000000000 --- a/examples/python/high_level_api.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -. ./include.sh - -# To get verbose output -#$PYTHON -m unittest -v high_level_api - -if [ $HAVE_PRODUCT_GRIB -eq 1 ]; then - echo 'Running tests for GRIB ...' - $PYTHON $examples_src/high_level_api_grib.py -v - rm -f test.index -fi - -if [ $HAVE_PRODUCT_BUFR -eq 1 ]; then - echo 'Running tests for BUFR ...' - $PYTHON $examples_src/high_level_api_bufr.py -v - rm -f test.index -fi diff --git a/examples/python/high_level_api_bufr.py b/examples/python/high_level_api_bufr.py deleted file mode 100644 index 4d002bc14..000000000 --- a/examples/python/high_level_api_bufr.py +++ /dev/null @@ -1,211 +0,0 @@ -#!/bin/env python - -""" -Unit tests for high level Python interface for BUFR. - -Author: Daniel Lee, DWD, 2016 -""" - -import os -from tempfile import NamedTemporaryFile -import unittest - -from eccodes import BufrFile, BufrMessage - -TESTBUFR = "../../data/bufr/syno_multi.bufr" -TEST_OUTPUT = "test-output.codes" - -KNOWN_BUFR_KEYS = ['edition', 'masterTableNumber', 'bufrHeaderSubCentre', 'bufrHeaderCentre', - 'updateSequenceNumber', 'dataCategory', 'dataSubCategory', 'masterTablesVersionNumber', - 'localTablesVersionNumber', 'typicalYearOfCentury', 'typicalMonth', 'typicalDay', - 'typicalHour', 'typicalMinute', 'typicalDate', 'typicalTime', 'rdbType', 'newSubtype', 'rdbtimeDay', - 'rdbtimeHour', 'rdbtimeMinute', 'rdbtimeSecond', 'rectimeDay', 'rectimeHour', 'rectimeMinute', 'rectimeSecond', - 'correction1', 'correction1Part', 'correction2', 'correction2Part', 'correction3', 'correction3Part', - 'correction4', 'correction4Part', 'qualityControl', 'numberOfSubsets', 'localLatitude', - 'localLongitude', 'observedData', 'compressedData', 'unexpandedDescriptors', 'subsetNumber', '#1#blockNumber', - '#1#blockNumber->percentConfidence', '#1#stationNumber', '#1#stationNumber->percentConfidence', - '#1#stationType', '#1#stationType->percentConfidence', '#1#year', '#1#year->percentConfidence', - '#1#month', '#1#month->percentConfidence', '#1#day', '#1#day->percentConfidence', '#1#hour', - '#1#hour->percentConfidence', '#1#minute', '#1#minute->percentConfidence', '#1#latitude', - '#1#latitude->percentConfidence', '#1#longitude', '#1#longitude->percentConfidence', - '#1#heightOfStation', '#1#heightOfStation->percentConfidence', '#1#nonCoordinatePressure', - '#1#nonCoordinatePressure->percentConfidence', '#1#pressureReducedToMeanSeaLevel', - '#1#pressureReducedToMeanSeaLevel->percentConfidence', '#1#3HourPressureChange', - '#1#3HourPressureChange->percentConfidence', '#1#characteristicOfPressureTendency', - '#1#characteristicOfPressureTendency->percentConfidence', '#1#windDirectionAt10M', - '#1#windDirectionAt10M->percentConfidence', '#1#windSpeedAt10M', - '#1#windSpeedAt10M->percentConfidence', - '#1#airTemperatureAt2M', '#1#airTemperatureAt2M->percentConfidence', '#1#dewpointTemperatureAt2M', - '#1#dewpointTemperatureAt2M->percentConfidence', '#1#relativeHumidity', - '#1#relativeHumidity->percentConfidence', '#1#horizontalVisibility', - '#1#horizontalVisibility->percentConfidence', '#1#presentWeather', - '#1#presentWeather->percentConfidence', '#1#pastWeather1', '#1#pastWeather1->percentConfidence', - '#1#pastWeather2', '#1#pastWeather2->percentConfidence', '#1#cloudCoverTotal', - '#1#cloudCoverTotal->percentConfidence', '#1#verticalSignificanceSurfaceObservations', - '#1#verticalSignificanceSurfaceObservations->percentConfidence', '#1#cloudAmount', - '#1#cloudAmount->percentConfidence', '#1#heightOfBaseOfCloud', - '#1#heightOfBaseOfCloud->percentConfidence', '#1#cloudType', '#1#cloudType->percentConfidence', - '#2#cloudType', '#2#cloudType->percentConfidence', '#3#cloudType', '#3#cloudType->percentConfidence', - '#2#verticalSignificanceSurfaceObservations', - '#2#verticalSignificanceSurfaceObservations->percentConfidence', - '#2#cloudAmount', '#2#cloudAmount->percentConfidence', '#4#cloudType', - '#4#cloudType->percentConfidence', '#2#heightOfBaseOfCloud', - '#2#heightOfBaseOfCloud->percentConfidence', - '#3#verticalSignificanceSurfaceObservations', - '#3#verticalSignificanceSurfaceObservations->percentConfidence', - '#3#cloudAmount', '#3#cloudAmount->percentConfidence', '#5#cloudType', - '#5#cloudType->percentConfidence', - '#3#heightOfBaseOfCloud', '#3#heightOfBaseOfCloud->percentConfidence', - '#4#verticalSignificanceSurfaceObservations', - '#4#verticalSignificanceSurfaceObservations->percentConfidence', '#4#cloudAmount', - '#4#cloudAmount->percentConfidence', - '#6#cloudType', '#6#cloudType->percentConfidence', '#4#heightOfBaseOfCloud', - '#4#heightOfBaseOfCloud->percentConfidence', - '#5#verticalSignificanceSurfaceObservations', - '#5#verticalSignificanceSurfaceObservations->percentConfidence', '#5#cloudAmount', - '#5#cloudAmount->percentConfidence', '#7#cloudType', '#7#cloudType->percentConfidence', - '#5#heightOfBaseOfCloud', - '#5#heightOfBaseOfCloud->percentConfidence', '#1#totalPrecipitationPast6Hours', - '#1#totalPrecipitationPast6Hours->percentConfidence', '#1#totalSnowDepth', - '#1#totalSnowDepth->percentConfidence', - '#1#centre', '#1#generatingApplication'] - - - -class TestBufrFile(unittest.TestCase): - """Test BufrFile functionality.""" - - def test_memory_management(self): - """Messages in BufrFile can be opened and closed properly.""" - with BufrFile(TESTBUFR) as bufr_file: - self.assertEqual(len(bufr_file), 3) - for i in range(len(bufr_file)): - msg = BufrMessage(bufr_file) - self.assertEqual(msg["bufrHeaderCentre"], 98) - self.assertEqual(msg['count'], i + 1) - self.assertEqual(len(bufr_file.open_messages), 3) - self.assertEqual(len(bufr_file.open_messages), 0) - - def test_message_counting_works(self): - """The BufrFile is aware of its messages.""" - with BufrFile(TESTBUFR) as bufr_file: - msg_count = len(bufr_file) - self.assertEqual(msg_count, 3) - - def test_iterator_protocol(self): - """The BufrFile allows pythonic iteration over all messages.""" - latitudes = [] - with BufrFile(TESTBUFR) as bufr_file: - for msg in bufr_file: - latitudes.append(msg["localLatitude"]) - self.assertSequenceEqual(latitudes, [70.93, 77, 78.92]) - - def test_read_past_last_message(self): - """Trying to open message on exhausted BUFR file raises IOError.""" - with BufrFile(TESTBUFR) as bufr_file: - for _ in range(len(bufr_file)): - BufrMessage(bufr_file) - self.assertRaises(IOError, lambda: BufrMessage(bufr_file)) - - def test_read_invalid_file(self): - """Trying to open message on nonexistent file raises IOError.""" - with NamedTemporaryFile(mode='r') as f: - with BufrFile(f.name) as bufr_file: - self.assertRaises(IOError, lambda: BufrMessage(bufr_file)) - - -class TestBufrMessage(unittest.TestCase): - """Test BufrMessage functionality""" - - def test_metadata(self): - """Metadata is read correctly from BufrMessage.""" - with BufrFile(TESTBUFR) as bufr_file: - msg = BufrMessage(bufr_file) - msg.unpack() - msg_keys = list(msg.keys()) - self.assertEqual(len(msg_keys), 202) - for key in KNOWN_BUFR_KEYS: - assert key in msg_keys - # Size of message in bytes - self.assertEqual(msg.size(), 220) - self.assertEqual(len(list(msg.keys())), len(msg)) - - def test_content(self): - """Data values are read correctly from BufrMessage.""" - with BufrFile(TESTBUFR) as bufr_file: - msg = BufrMessage(bufr_file) - msg.unpack() - self.assertEqual(msg["airTemperatureAt2M"], 274.5) - - # TODO: Test behaviour with missing messages (SUP-1874) - - def test_value_setting(self): - """Keys can be set properly.""" - with BufrFile(TESTBUFR) as bufr_file: - msg = BufrMessage(bufr_file) - key, val = "localLongitude", 5 - msg[key] = val - self.assertEqual(msg[key], val) - - def test_serialize(self): - """Message can be serialized to file.""" - with BufrFile(TESTBUFR) as bufr_file: - msg = BufrMessage(bufr_file) - with open(TEST_OUTPUT, "wb") as test: - msg.write(test) - os.unlink(TEST_OUTPUT) - - def test_clone(self): - """Messages can be used to produce clone Messages.""" - with BufrFile(TESTBUFR) as bufr_file: - msg = BufrMessage(bufr_file) - msg2 = BufrMessage(clone=msg) - self.assertSequenceEqual(list(msg.keys()), list(msg2.keys())) - - def test_copy_data(self): - """Can copy data section from one message to another""" - bufr = BufrMessage(sample='BUFR3') - with BufrFile('../../data/bufr/metar_with_2_bias.bufr') as bufr_file: - bufrin = BufrMessage(bufr_file) - ivalues = ( - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 0) - bufr['inputDataPresentIndicator'] = ivalues - bufr['edition'] = 3 - bufr['masterTableNumber'] = 0 - bufr['bufrHeaderSubCentre'] = 0 - bufr['bufrHeaderCentre'] = 98 - bufr['updateSequenceNumber'] = 1 - bufr['dataCategory'] = 0 - bufr['dataSubCategory'] = 140 - bufr['masterTablesVersionNumber'] = 13 - bufr['localTablesVersionNumber'] = 1 - bufr['typicalYearOfCentury'] = 15 - bufr['typicalMonth'] = 5 - bufr['typicalDay'] = 4 - bufr['typicalHour'] = 9 - bufr['typicalMinute'] = 30 - bufr['numberOfSubsets'] = 1 - bufr['observedData'] = 1 - bufr['compressedData'] = 0 - ivalues = ( - 307011, 7006, 10004, 222000, 101023, 31031, 1031, 1032, 101023, 33007, - 225000, 236000, 101023, 31031, 1031, 1032, 8024, 101001, 225255, 225000, - 236000, 101023, 31031, 1031, 1032, 8024, 101001, 225255, - 1063, 2001, 4001, 4002, 4003, 4004, 4005, 5002, - 6002, 7001, 7006, 11001, 11016, 11017, 11002) - bufr['unexpandedDescriptors'] = ivalues - bufrin.unpack() - bufrin.copy_data(bufr) - with open(TEST_OUTPUT, 'wb') as test: - bufr.write(test) - os.unlink(TEST_OUTPUT) - - -if __name__ == "__main__": - unittest.main() diff --git a/examples/python/high_level_api_grib.py b/examples/python/high_level_api_grib.py deleted file mode 100644 index 14e8032c7..000000000 --- a/examples/python/high_level_api_grib.py +++ /dev/null @@ -1,257 +0,0 @@ -#!/bin/env python - -""" -This is now deprecated. Use cfgrib instead -""" - -import os -from tempfile import NamedTemporaryFile -import unittest - -from eccodes import GribFile -from eccodes import GribIndex -from eccodes import GribMessage -from eccodes.high_level.gribmessage import IndexNotSelectedError - -TESTGRIB = "../../data/high_level_api.grib2" -TEST_OUTPUT = "test-output.codes" -TEST_INDEX = "test.index" -TEST_KEYS = ("dataDate", "stepRange") -TEST_VALUES = 20110225, 0 -SELECTION_DICTIONARY = {} -for i1 in range(len(TEST_KEYS)): - SELECTION_DICTIONARY[TEST_KEYS[i1]] = TEST_VALUES[i1] -TEST_INDEX_OUTPUT = TESTGRIB -TEST_STEPRANGE = ('0', '12', '18', '24', '6') -# These keys should be available even if new keys are defined -KNOWN_GRIB_KEYS = ['7777', 'GRIBEditionNumber', 'N', 'NV', - 'Ni', 'Nj', 'PLPresent', 'PVPresent', 'addEmptySection2', - 'addExtraLocalSection', 'alternativeRowScanning', - 'angleDivisor', 'angleSubdivisions', - 'average', 'backgroundProcess', 'basicAngleOfTheInitialProductionDomain', - 'binaryScaleFactor', 'bitMapIndicator', 'bitmapPresent', - 'bitsPerValue', 'bottomLevel', 'centre', - 'centreDescription', 'cfName', 'cfNameECMF', 'cfVarName', - 'cfVarNameECMF', 'changeDecimalPrecision', 'class', - 'climateDateFrom', 'climateDateTo', 'codedValues', - 'dataDate', 'dataRepresentationTemplateNumber', 'dataTime', - 'day', 'decimalPrecision', 'decimalScaleFactor', - 'deleteCalendarId', 'deleteExtraLocalSection', 'deletePV', - 'discipline', 'distinctLatitudes', 'distinctLongitudes', - 'editionNumber', 'endStep', 'eps', - 'experimentVersionNumber', 'extraLocalSectionPresent', - 'forecastTime', 'g2grid', 'gaussianGridName', - 'genVertHeightCoords', 'generatingProcessIdentifier', - 'getNumberOfValues', 'global', 'globalDomain', - 'grib2LocalSectionNumber', 'grib2LocalSectionPresent', - 'grib2divider', 'gridDefinitionDescription', - 'gridDefinitionTemplateNumber', - 'gridDescriptionSectionPresent', 'gridType', 'hour', - 'hoursAfterDataCutoff', 'iDirectionIncrement', - 'iDirectionIncrementGiven', 'iDirectionIncrementInDegrees', - 'iScansNegatively', 'iScansPositively', 'identifier', - 'ieeeFloats', 'ifsParam', 'ijDirectionIncrementGiven', - 'indicatorOfUnitOfTimeRange', - 'interpretationOfNumberOfPoints', 'isConstant', - 'isHindcast', 'isOctahedral', 'is_uerra', - 'jDirectionIncrementGiven', 'jPointsAreConsecutive', - 'jScansPositively', 'julianDay', 'kurtosis', 'latLonValues', - 'latitudeOfFirstGridPoint', 'latitudeOfFirstGridPointInDegrees', - 'latitudeOfLastGridPoint', 'latitudeOfLastGridPointInDegrees', 'latitudes', - 'legBaseDate', 'legBaseTime', 'legNumber', - 'lengthOfHeaders', 'level', 'localDefinitionNumber', - 'localDir', 'localTablesVersion', - 'longitudeOfFirstGridPoint', 'longitudeOfFirstGridPointInDegrees', - 'longitudeOfLastGridPoint', 'longitudeOfLastGridPointInDegrees', 'longitudes', - 'mAngleMultiplier', 'mBasicAngle', 'marsClass', - 'marsStream', 'marsType', 'masterDir', 'maximum', - 'md5Headers', 'md5Section1', 'md5Section3', 'md5Section4', - 'md5Section5', 'md5Section6', 'md5Section7', 'minimum', - 'minute', 'minutesAfterDataCutoff', 'missingValue', - 'modelName', 'month', 'name', 'nameECMF', - 'nameOfFirstFixedSurface', 'nameOfSecondFixedSurface', - 'neitherPresent', 'numberOfDataPoints', - 'numberOfForecastsInEnsemble', 'numberOfMissing', - 'numberOfOctectsForNumberOfPoints', 'numberOfSection', - 'numberOfValues', 'oceanAtmosphereCoupling', - 'offsetValuesBy', 'optimizeScaleFactor', 'packingError', - 'packingType', 'paramId', 'paramIdECMF', - 'parameterCategory', 'parameterName', 'parameterNumber', - 'parameterUnits', 'perturbationNumber', 'pressureUnits', - 'productDefinitionTemplateNumber', - 'productDefinitionTemplateNumberInternal', 'productType', - 'productionStatusOfProcessedData', 'radius', - 'referenceDate', 'referenceValue', 'referenceValueError', - 'resolutionAndComponentFlags', 'resolutionAndComponentFlags1', - 'resolutionAndComponentFlags2', 'resolutionAndComponentFlags6', - 'resolutionAndComponentFlags7', 'resolutionAndComponentFlags8', - 'scaleFactorOfEarthMajorAxis', 'scaleFactorOfEarthMinorAxis', - 'scaleFactorOfFirstFixedSurface', 'scaleFactorOfRadiusOfSphericalEarth', - 'scaleFactorOfSecondFixedSurface', 'scaleValuesBy', - 'scaledValueOfEarthMajorAxis', 'scaledValueOfEarthMinorAxis', - 'scaledValueOfFirstFixedSurface', 'scaledValueOfRadiusOfSphericalEarth', - 'scaledValueOfSecondFixedSurface', 'scanningMode', - 'scanningMode5', 'scanningMode6', 'scanningMode7', - 'scanningMode8', 'second', 'section0Length', - 'section1Length', 'section2Length', 'section2Padding', - 'section3Length', 'section3Padding', 'section4Length', - 'section5Length', 'section6Length', 'section7Length', - 'section8Length', 'sectionNumber', 'selectStepTemplateInstant', 'selectStepTemplateInterval', - 'setBitsPerValue', 'setCalendarId', 'shapeOfTheEarth', - 'shortName', 'shortNameECMF', 'significanceOfReferenceTime', - 'skewness', 'sourceOfGridDefinition', 'standardDeviation', - 'startStep', 'stepRange', 'stepType', 'stepTypeInternal', - 'stepUnits', 'stream', 'subCentre', - 'subdivisionsOfBasicAngle', 'tablesVersion', - 'tablesVersionLatest', 'tempPressureUnits', 'topLevel', - 'totalLength', 'type', 'typeOfEnsembleForecast', - 'typeOfFirstFixedSurface', 'typeOfGeneratingProcess', - 'typeOfLevel', 'typeOfOriginalFieldValues', - 'typeOfProcessedData', 'typeOfSecondFixedSurface', 'units', - 'unitsECMF', 'unitsOfFirstFixedSurface', - 'unitsOfSecondFixedSurface', 'unpackedError', - 'uvRelativeToGrid', 'validityDate', 'validityTime', - 'values', 'year'] - - -class TestGribFile(unittest.TestCase): - """Test GribFile functionality.""" - - def test_memory_management(self): - """Messages in GribFile can be opened and closed properly.""" - with GribFile(TESTGRIB) as grib_file: - self.assertEqual(len(grib_file), 5) - for i in range(len(grib_file)): - msg = GribMessage(grib_file) - self.assertEqual(msg["shortName"], "msl") - self.assertEqual(msg['count'], i + 1) - self.assertEqual(len(grib_file.open_messages), 5) - self.assertEqual(len(grib_file.open_messages), 0) - - def test_message_counting_works(self): - """The GribFile is aware of its messages.""" - with GribFile(TESTGRIB) as grib_file: - msg_count = len(grib_file) - self.assertEqual(msg_count, 5) - - def test_iterator_protocol(self): - """The GribFile allows pythonic iteration over all messages.""" - step_ranges = [] - with GribFile(TESTGRIB) as grib_file: - for msg in grib_file: - step_ranges.append(msg["stepRange"]) - self.assertSequenceEqual(step_ranges, ["0", "6", "12", "18", "24"]) - - def test_read_past_last_message(self): - """Trying to open message on exhausted GRIB file raises IOError.""" - with GribFile(TESTGRIB) as grib_file: - for _ in range(len(grib_file)): - GribMessage(grib_file) - self.assertRaises(IOError, lambda: GribMessage(grib_file)) - - def test_read_invalid_file(self): - """Trying to open message on nonexistent GRIB file raises IOError.""" - with NamedTemporaryFile(mode='r') as f: - with GribFile(f.name) as grib_file: - self.assertRaises(IOError, lambda: GribMessage(grib_file)) - - -class TestGribMessage(unittest.TestCase): - """Test GribMessage functionality.""" - - def test_metadata(self): - """Metadata is read correctly from GribMessage.""" - with GribFile(TESTGRIB) as grib_file: - msg = GribMessage(grib_file) - msg_keys = list(msg.keys()) - for key in KNOWN_GRIB_KEYS: - assert key in msg_keys, "key '%s' not found" % key - # Size of message in bytes - self.assertEqual(msg.size(), 160219) - self.assertEqual(len(list(msg.keys())), len(msg)) - - def test_missing_message_behaviour(self): - """Key with MISSING value.""" - with GribFile(TESTGRIB) as grib_file: - msg = GribMessage(grib_file) - self.assertTrue(msg.missing("scaleFactorOfSecondFixedSurface")) - msg["scaleFactorOfSecondFixedSurface"] = 5 - msg.set_missing("scaleFactorOfSecondFixedSurface") - # with self.assertRaises(KeyError): - # msg["scaleFactorOfSecondFixedSurface"] - - def test_value_setting(self): - """Keys can be set properly.""" - with GribFile(TESTGRIB) as grib_file: - msg = GribMessage(grib_file) - msg["scaleFactorOfSecondFixedSurface"] = 5 - msg["values"] = [1, 2, 3] - self.assertEqual(msg['scaleFactorOfSecondFixedSurface'], 5) - - def test_multi_value_setting(self): - """Multiple keys/values can be set properly.""" - msg = GribMessage(sample='GRIB1') - msg['paramId', 'stepType', 'edition'] = 49, 'avg', 2 - self.assertEqual(msg['shortName'], '10fg') - # Another test - with GribFile(TESTGRIB) as grib_file: - msg = GribMessage(grib_file) - msg['setLocalDefinition', 'localDefinitionNumber'] = 1, 25 - msg['typeOfFirstFixedSurface', 'typeOfSecondFixedSurface'] = 1, 8 - msg[('typeOfFirstFixedSurface', 'typeOfSecondFixedSurface')] = (1, 8) # Also works - self.assertEqual(msg['localDefinitionNumber'], 25) - self.assertEqual(msg['typeOfLevel'], 'entireAtmosphere') - - def test_serialize(self): - """Message can be serialized to file.""" - with GribFile(TESTGRIB) as grib_file: - msg = GribMessage(grib_file) - with open(TEST_OUTPUT, "wb") as test: - msg.write(test) - os.unlink(TEST_OUTPUT) - - def test_clone(self): - """Messages can be used to produce clone Messages.""" - with GribFile(TESTGRIB) as grib_file: - msg = GribMessage(grib_file) - msg2 = GribMessage(clone=msg) - self.assertSequenceEqual(list(msg.keys()), list(msg2.keys())) - - -class TestGribIndex(unittest.TestCase): - """Test GribIndex functionality.""" - - def test_memory_management(self): - """GribIndex closes GribMessages properly.""" - with GribIndex(TESTGRIB, TEST_KEYS) as idx: - idx.select(SELECTION_DICTIONARY) - self.assertEqual(len(idx.open_messages), 1) - self.assertEqual(len(idx.open_messages), 0) - - def test_create_and_serialize_index(self): - """GribIndex can be saved to file, file can be added to index.""" - with GribIndex(TESTGRIB, TEST_KEYS) as idx: - idx.write(TEST_INDEX) - with GribIndex(file_index=TEST_INDEX) as idx: - idx.add(TESTGRIB) - os.unlink(TEST_INDEX) - - def test_index_comprehension(self): - """GribIndex understands underlying GRIB index properly.""" - with GribIndex(TESTGRIB, TEST_KEYS) as idx: - self.assertEqual(idx.size(TEST_KEYS[1]), 5) - self.assertSequenceEqual(idx.values(TEST_KEYS[1]), TEST_STEPRANGE) - with self.assertRaises(IndexNotSelectedError): - # Note: The following will issue a message to stderr: - # ECCODES ERROR : please select a value for index key "dataDate" - # This is expected behaviour - idx.select({TEST_KEYS[1]: TEST_VALUES[0]}) - # Now it will be OK as we have selected all necessary keys - idx.select(SELECTION_DICTIONARY) - self.assertEqual(len(idx.open_messages), 1) - - - - -if __name__ == "__main__": - unittest.main() From 98be1aec7ef7fd6102dc7cf1a7a871f502b9281c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 3 Sep 2021 18:00:07 +0100 Subject: [PATCH 613/683] ECC-1270: clean up spaces --- definitions/grib2/marsLevtypeConcept.def | 78 ++++++++++++------------ 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/definitions/grib2/marsLevtypeConcept.def b/definitions/grib2/marsLevtypeConcept.def index 2d431259f..5ad13fad2 100644 --- a/definitions/grib2/marsLevtypeConcept.def +++ b/definitions/grib2/marsLevtypeConcept.def @@ -1,43 +1,43 @@ -# Concept marsLevtype -'sfc' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=255;} -'sfc' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=8;} -'o2d' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=9;} -'sfc' = {typeOfFirstFixedSurface=7; typeOfSecondFixedSurface=255;} -'sfc' = {typeOfFirstFixedSurface=8; typeOfSecondFixedSurface=255;} -'sfc' = {typeOfFirstFixedSurface=17; typeOfSecondFixedSurface=255;} -'sfc' = {typeOfFirstFixedSurface=18; typeOfSecondFixedSurface=255;} -'o2d' = {typeOfFirstFixedSurface=20; scaleFactorOfFirstFixedSurface=-2; scaledValueOfFirstFixedSurface=29315; typeOfSecondFixedSurface=255;} -'o2d' = {typeOfFirstFixedSurface=20; typeOfSecondFixedSurface=255;} -'pl' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=255;} -'sfc' = {typeOfFirstFixedSurface=101; typeOfSecondFixedSurface=255;} -'sfc' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=255;} -'sfc' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=255;} -'ml' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=255;} -'sfc' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=255;} -'sfc' = {typeOfFirstFixedSurface=106;typeOfSecondFixedSurface=106;} -'pt' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=255;} -'pv' = {typeOfFirstFixedSurface=109; typeOfSecondFixedSurface=255;} -'sol' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=255;} -'hhl' = {typeOfFirstFixedSurface=118; typeOfSecondFixedSurface=255;} +# Concept marsLevtype +'sfc' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=8;} +'o2d' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=9;} +'sfc' = {typeOfFirstFixedSurface=7; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=8; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=17; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=18; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=20; scaleFactorOfFirstFixedSurface=-2; scaledValueOfFirstFixedSurface=29315; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=20; typeOfSecondFixedSurface=255;} +'pl' = {typeOfFirstFixedSurface=100; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=101; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=102; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=103; typeOfSecondFixedSurface=255;} +'ml' = {typeOfFirstFixedSurface=105; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=106; typeOfSecondFixedSurface=255;} +'sfc' = {typeOfFirstFixedSurface=106;typeOfSecondFixedSurface=106;} +'pt' = {typeOfFirstFixedSurface=107; typeOfSecondFixedSurface=255;} +'pv' = {typeOfFirstFixedSurface=109; typeOfSecondFixedSurface=255;} +'sol' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=255;} +'hhl' = {typeOfFirstFixedSurface=118; typeOfSecondFixedSurface=255;} 'hpl' = {typeOfFirstFixedSurface=119; typeOfSecondFixedSurface=255;} -'sol' = {typeOfFirstFixedSurface=151; typeOfSecondFixedSurface=255;} -'sol' = {typeOfFirstFixedSurface=151; typeOfSecondFixedSurface=151;} -'sol' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=255;} -'sol' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=152;} -'o2d' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=255;} -'o2d' = {typeOfFirstFixedSurface=160; scaleFactorOfFirstFixedSurface=0; scaledValueOfFirstFixedSurface=0; typeOfSecondFixedSurface=255;} -'o2d' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=160;} -'o2d' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=9;} +'sol' = {typeOfFirstFixedSurface=151; typeOfSecondFixedSurface=255;} +'sol' = {typeOfFirstFixedSurface=151; typeOfSecondFixedSurface=151;} +'sol' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=255;} +'sol' = {typeOfFirstFixedSurface=152; typeOfSecondFixedSurface=152;} +'o2d' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=160; scaleFactorOfFirstFixedSurface=0; scaledValueOfFirstFixedSurface=0; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=160;} +'o2d' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=9;} 'sfc' = {typeOfFirstFixedSurface=162; typeOfSecondFixedSurface=255;} 'sfc' = {typeOfFirstFixedSurface=166; typeOfSecondFixedSurface=255;} -'o3d' = {typeOfFirstFixedSurface=168; typeOfSecondFixedSurface=255;} -'o3d' = {typeOfFirstFixedSurface=168; typeOfSecondFixedSurface=168;} -'o2d' = {typeOfFirstFixedSurface=169; typeOfSecondFixedSurface=255;} -'o2d' = {typeOfFirstFixedSurface=170; typeOfSecondFixedSurface=255;} -'o2d' = {typeOfFirstFixedSurface=171; typeOfSecondFixedSurface=255;} -'o2d' = {typeOfFirstFixedSurface=174; typeOfSecondFixedSurface=255;} -'o2d' = {typeOfFirstFixedSurface=175; typeOfSecondFixedSurface=255;} -'o2d' = {typeOfFirstFixedSurface=176; typeOfSecondFixedSurface=255;} -'o2d' = {typeOfFirstFixedSurface=174; typeOfSecondFixedSurface=176;} -'o2d' = {typeOfFirstFixedSurface=175; typeOfSecondFixedSurface=176;} +'o3d' = {typeOfFirstFixedSurface=168; typeOfSecondFixedSurface=255;} +'o3d' = {typeOfFirstFixedSurface=168; typeOfSecondFixedSurface=168;} +'o2d' = {typeOfFirstFixedSurface=169; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=170; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=171; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=174; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=175; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=176; typeOfSecondFixedSurface=255;} +'o2d' = {typeOfFirstFixedSurface=174; typeOfSecondFixedSurface=176;} +'o2d' = {typeOfFirstFixedSurface=175; typeOfSecondFixedSurface=176;} 'sfc' = {typeOfFirstFixedSurface=177; typeOfSecondFixedSurface=255;} From 45d338822113b2fa49ac5f35adc39fc27cb742fa Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 3 Sep 2021 21:27:36 +0100 Subject: [PATCH 614/683] Move autotools stuff into deprecated dir --- Makefile.am => deprecated/Makefile.am | 0 acinclude.m4 => deprecated/acinclude.m4 | 0 {config => deprecated/config}/config.guess | 0 {config => deprecated/config}/config.sub | 0 {config => deprecated/config}/depcomp | 0 {config => deprecated/config}/install-sh | 0 {config => deprecated/config}/ltmain.sh | 0 {config => deprecated/config}/missing | 0 configure.ac => deprecated/configure.ac | 0 {m4 => deprecated/m4}/ax_linux_distribution.m4 | 0 {m4 => deprecated/m4}/ax_python_devel.m4 | 0 {m4 => deprecated/m4}/ax_rpm_init.m4 | 0 {m4 => deprecated/m4}/libtool.m4 | 0 {m4 => deprecated/m4}/ltoptions.m4 | 0 {m4 => deprecated/m4}/ltsugar.m4 | 0 {m4 => deprecated/m4}/ltversion.m4 | 0 {m4 => deprecated/m4}/lt~obsolete.m4 | 0 {perf => deprecated/perf}/jmeter.awk | 0 {perf => deprecated/perf}/time.sh | 0 version.sh => deprecated/version.sh | 0 show_compile.sh => experimental/show_compile.sh | 0 21 files changed, 0 insertions(+), 0 deletions(-) rename Makefile.am => deprecated/Makefile.am (100%) rename acinclude.m4 => deprecated/acinclude.m4 (100%) rename {config => deprecated/config}/config.guess (100%) rename {config => deprecated/config}/config.sub (100%) rename {config => deprecated/config}/depcomp (100%) rename {config => deprecated/config}/install-sh (100%) rename {config => deprecated/config}/ltmain.sh (100%) rename {config => deprecated/config}/missing (100%) rename configure.ac => deprecated/configure.ac (100%) rename {m4 => deprecated/m4}/ax_linux_distribution.m4 (100%) rename {m4 => deprecated/m4}/ax_python_devel.m4 (100%) rename {m4 => deprecated/m4}/ax_rpm_init.m4 (100%) rename {m4 => deprecated/m4}/libtool.m4 (100%) rename {m4 => deprecated/m4}/ltoptions.m4 (100%) rename {m4 => deprecated/m4}/ltsugar.m4 (100%) rename {m4 => deprecated/m4}/ltversion.m4 (100%) rename {m4 => deprecated/m4}/lt~obsolete.m4 (100%) rename {perf => deprecated/perf}/jmeter.awk (100%) rename {perf => deprecated/perf}/time.sh (100%) rename version.sh => deprecated/version.sh (100%) rename show_compile.sh => experimental/show_compile.sh (100%) diff --git a/Makefile.am b/deprecated/Makefile.am similarity index 100% rename from Makefile.am rename to deprecated/Makefile.am diff --git a/acinclude.m4 b/deprecated/acinclude.m4 similarity index 100% rename from acinclude.m4 rename to deprecated/acinclude.m4 diff --git a/config/config.guess b/deprecated/config/config.guess similarity index 100% rename from config/config.guess rename to deprecated/config/config.guess diff --git a/config/config.sub b/deprecated/config/config.sub similarity index 100% rename from config/config.sub rename to deprecated/config/config.sub diff --git a/config/depcomp b/deprecated/config/depcomp similarity index 100% rename from config/depcomp rename to deprecated/config/depcomp diff --git a/config/install-sh b/deprecated/config/install-sh similarity index 100% rename from config/install-sh rename to deprecated/config/install-sh diff --git a/config/ltmain.sh b/deprecated/config/ltmain.sh similarity index 100% rename from config/ltmain.sh rename to deprecated/config/ltmain.sh diff --git a/config/missing b/deprecated/config/missing similarity index 100% rename from config/missing rename to deprecated/config/missing diff --git a/configure.ac b/deprecated/configure.ac similarity index 100% rename from configure.ac rename to deprecated/configure.ac diff --git a/m4/ax_linux_distribution.m4 b/deprecated/m4/ax_linux_distribution.m4 similarity index 100% rename from m4/ax_linux_distribution.m4 rename to deprecated/m4/ax_linux_distribution.m4 diff --git a/m4/ax_python_devel.m4 b/deprecated/m4/ax_python_devel.m4 similarity index 100% rename from m4/ax_python_devel.m4 rename to deprecated/m4/ax_python_devel.m4 diff --git a/m4/ax_rpm_init.m4 b/deprecated/m4/ax_rpm_init.m4 similarity index 100% rename from m4/ax_rpm_init.m4 rename to deprecated/m4/ax_rpm_init.m4 diff --git a/m4/libtool.m4 b/deprecated/m4/libtool.m4 similarity index 100% rename from m4/libtool.m4 rename to deprecated/m4/libtool.m4 diff --git a/m4/ltoptions.m4 b/deprecated/m4/ltoptions.m4 similarity index 100% rename from m4/ltoptions.m4 rename to deprecated/m4/ltoptions.m4 diff --git a/m4/ltsugar.m4 b/deprecated/m4/ltsugar.m4 similarity index 100% rename from m4/ltsugar.m4 rename to deprecated/m4/ltsugar.m4 diff --git a/m4/ltversion.m4 b/deprecated/m4/ltversion.m4 similarity index 100% rename from m4/ltversion.m4 rename to deprecated/m4/ltversion.m4 diff --git a/m4/lt~obsolete.m4 b/deprecated/m4/lt~obsolete.m4 similarity index 100% rename from m4/lt~obsolete.m4 rename to deprecated/m4/lt~obsolete.m4 diff --git a/perf/jmeter.awk b/deprecated/perf/jmeter.awk similarity index 100% rename from perf/jmeter.awk rename to deprecated/perf/jmeter.awk diff --git a/perf/time.sh b/deprecated/perf/time.sh similarity index 100% rename from perf/time.sh rename to deprecated/perf/time.sh diff --git a/version.sh b/deprecated/version.sh similarity index 100% rename from version.sh rename to deprecated/version.sh diff --git a/show_compile.sh b/experimental/show_compile.sh similarity index 100% rename from show_compile.sh rename to experimental/show_compile.sh From 9b2da5b0bf0f0b5b6f72627483f8bbd3ee677f87 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 4 Sep 2021 18:03:44 +0100 Subject: [PATCH 615/683] Error messages --- src/grib_util.c | 43 +++++++++++++++++++++---------------------- 1 file changed, 21 insertions(+), 22 deletions(-) diff --git a/src/grib_util.c b/src/grib_util.c index 125e44828..18c6ab61c 100644 --- a/src/grib_util.c +++ b/src/grib_util.c @@ -1038,7 +1038,8 @@ grib_handle* grib_util_set_spec2(grib_handle* h, setSecondOrder = 1; break; default: - fprintf(stderr, "invalid packing_spec->packing_type = %ld\n", (long)packing_spec->packing_type); + fprintf(stderr, "GRIB_UTIL_SET_SPEC: invalid packing_spec->packing_type (%ld)\n", + (long)packing_spec->packing_type); *err = GRIB_INTERNAL_ERROR; goto cleanup; break; @@ -1062,7 +1063,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, break; default: - fprintf(stderr, "invalid packing_spec->accuracy = %ld\n", (long)packing_spec->accuracy); + fprintf(stderr, "GRIB_UTIL_SET_SPEC: invalid packing_spec->accuracy (%ld)\n", (long)packing_spec->accuracy); *err = GRIB_INTERNAL_ERROR; goto cleanup; break; @@ -1079,7 +1080,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, } if ((*err = grib_set_values(h, values, count)) != 0) { - fprintf(stderr, "GRIB_UTIL_SET_SPEC: Cannot set values %s\n", grib_get_error_message(*err)); + fprintf(stderr, "GRIB_UTIL_SET_SPEC: Cannot set values: %s\n", grib_get_error_message(*err)); for (i = 0; i < count; i++) if (values[i].error) fprintf(stderr, " %s %s\n", values[i].name, grib_get_error_message(values[i].error)); goto cleanup; @@ -1144,16 +1145,14 @@ grib_handle* grib_util_set_spec2(grib_handle* h, } /* flags & GRIB_UTIL_SET_SPEC_FLAGS_ONLY_PACKING */ grid_type = get_grid_type_name(spec->grid_type); - if (grid_type == NULL) { - fprintf(stderr, "GRIB_UTIL_SET_SPEC: Unknown grid type: %d\n", spec->grid_type); + if (!grid_type) { + fprintf(stderr, "GRIB_UTIL_SET_SPEC: Unknown spec.grid_type (%d)\n", spec->grid_type); *err = GRIB_NOT_IMPLEMENTED; return NULL; } - SET_STRING_VALUE("gridType", grid_type); /* The "pl" is given from the template, but "section_copy" will take care of setting the right headers */ - { switch (spec->grid_type) { case GRIB_UTIL_GRID_SPEC_REDUCED_GG: @@ -1169,10 +1168,9 @@ grib_handle* grib_util_set_spec2(grib_handle* h, case GRIB_UTIL_GRID_SPEC_UNSTRUCTURED: if (editionNumber == 1) { /* This grid type is not available in edition 1 */ if (h->context->debug == -1) - fprintf(stderr, - "ECCODES DEBUG grib_util: '%s' specified " - "but input is GRIB1. Output must be a higher edition!\n", - grid_type); + fprintf(stderr, "ECCODES DEBUG grib_util: '%s' specified " + "but input is GRIB1. Output must be a higher edition!\n", + grid_type); convertEditionEarlier = 1; } sprintf(sample_name, "GRIB%ld", editionNumber); @@ -1186,7 +1184,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, if (spec->pl && spec->grid_name) { /* Cannot have BOTH pl and grid name specified */ - fprintf(stderr, "GRIB_UTIL_SET_SPEC: Cannot set BOTH pl and grid_name.\n"); + fprintf(stderr, "GRIB_UTIL_SET_SPEC: Cannot set BOTH spec.pl and spec.grid_name!\n"); goto cleanup; } if (spec->grid_name) { @@ -1444,7 +1442,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, setSecondOrder = 1; break; default: - fprintf(stderr, "invalid packing_spec->packing_type = %ld\n", (long)packing_spec->packing_type); + fprintf(stderr, "GRIB_UTIL_SET_SPEC: invalid packing_spec.packing_type (%ld)\n", (long)packing_spec->packing_type); *err = GRIB_INTERNAL_ERROR; goto cleanup; break; @@ -1498,7 +1496,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, break; default: - fprintf(stderr, "invalid packing_spec->accuracy = %ld\n", (long)packing_spec->accuracy); + fprintf(stderr, "GRIB_UTIL_SET_SPEC: invalid packing_spec.accuracy (%ld)\n", (long)packing_spec->accuracy); grib_handle_delete(h_sample); *err = GRIB_INTERNAL_ERROR; goto cleanup; @@ -1539,24 +1537,25 @@ grib_handle* grib_util_set_spec2(grib_handle* h, /* GRIB-857: Set "pl" array if provided (For reduced Gaussian grids) */ Assert(spec->pl_size >= 0); if (spec->pl && spec->pl_size == 0) { - fprintf(stderr, "pl array not NULL but pl_size == 0!\n"); + fprintf(stderr, "GRIB_UTIL_SET_SPEC: pl array not NULL but pl_size == 0!\n"); goto cleanup; } if (spec->pl_size > 0 && spec->pl == NULL) { - fprintf(stderr, "pl_size not zero but pl array == NULL!\n"); + fprintf(stderr, "GRIB_UTIL_SET_SPEC: pl_size not zero but pl array == NULL!\n"); goto cleanup; } if (spec->pl_size != 0 && (spec->grid_type == GRIB_UTIL_GRID_SPEC_REDUCED_GG || spec->grid_type == GRIB_UTIL_GRID_SPEC_REDUCED_ROTATED_GG)) { *err = grib_set_long_array(h_out, "pl", spec->pl, spec->pl_size); if (*err) { - fprintf(stderr, "SET_GRID_DATA_DESCRIPTION: Cannot set pl %s\n", grib_get_error_message(*err)); + fprintf(stderr, "GRIB_UTIL_SET_SPEC: Cannot set pl: %s\n", grib_get_error_message(*err)); goto cleanup; } if (global_grid) { size_t sum = sum_of_pl_array(spec->pl, spec->pl_size); if (data_values_count != sum) { - fprintf(stderr, "invalid reduced gaussian grid: specified as global, data_values_count=%ld but sum of pl array=%ld\n", + fprintf(stderr, "GRIB_UTIL_SET_SPEC: invalid reduced gaussian grid: " + "specified as global, data_values_count=%ld but sum of pl array=%ld\n", (long)data_values_count, (long)sum); *err = GRIB_WRONG_GRID; goto cleanup; @@ -1573,7 +1572,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, /* Apply adjustments to bounding box if needed */ if (expandBoundingBox) { if ((*err = expand_bounding_box(h_out, values, count)) != 0) { - fprintf(stderr, "SET_GRID_DATA_DESCRIPTION: Cannot expand bounding box: %s\n", grib_get_error_message(*err)); + fprintf(stderr, "GRIB_UTIL_SET_SPEC: Cannot expand bounding box: %s\n", grib_get_error_message(*err)); if (h->context->write_on_fail) grib_write_message(h_out, "error.grib", "w"); goto cleanup; @@ -1674,7 +1673,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, grib_set_string(h_out, "packingType", "grid_second_order", &slen); *err = grib_set_double_array(h_out, "values", data_values, data_values_count); if (*err != GRIB_SUCCESS) { - fprintf(stderr, "GRIB_UTIL_SET_SPEC: setting data values failed! %s\n", grib_get_error_message(*err)); + fprintf(stderr, "GRIB_UTIL_SET_SPEC: setting data values failed: %s\n", grib_get_error_message(*err)); goto cleanup; } } @@ -1729,7 +1728,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, } if ((*err = check_geometry(h_out, spec, data_values_count, global_grid)) != GRIB_SUCCESS) { - fprintf(stderr, "GRIB_UTIL_SET_SPEC: Geometry check failed! %s\n", grib_get_error_message(*err)); + fprintf(stderr, "GRIB_UTIL_SET_SPEC: Geometry check failed: %s\n", grib_get_error_message(*err)); if (h->context->write_on_fail) grib_write_message(h_out, "error.grib", "w"); goto cleanup; @@ -1739,7 +1738,7 @@ grib_handle* grib_util_set_spec2(grib_handle* h, #if 0 if ( (*err = check_handle_against_spec(h_out, editionNumber, spec, global_grid)) != GRIB_SUCCESS) { grib_context* c=grib_context_get_default(); - fprintf(stderr,"GRIB_UTIL_SET_SPEC: Geometry check failed! %s\n", grib_get_error_message(*err)); + fprintf(stderr,"GRIB_UTIL_SET_SPEC: Geometry check failed: %s\n", grib_get_error_message(*err)); if (editionNumber == 1) { fprintf(stderr,"Note: in GRIB edition 1 latitude and longitude values cannot be represented with sub-millidegree precision.\n"); } From 1f1133df5dfde86f6a5b0a823ad58967de46f61c Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 11 Sep 2021 13:44:40 +0100 Subject: [PATCH 616/683] ECC-1280: GRIB1: geoiterator for 'space view' is not implemented --- definitions/grib1/grid_definition_90.def | 37 +++++++++++++++++++----- src/grib_iterator_class_space_view.c | 3 +- 2 files changed, 31 insertions(+), 9 deletions(-) diff --git a/definitions/grib1/grid_definition_90.def b/definitions/grib1/grid_definition_90.def index 63682ccb4..3a8d97ca3 100644 --- a/definitions/grib1/grid_definition_90.def +++ b/definitions/grib1/grid_definition_90.def @@ -1,4 +1,5 @@ # GRID DEFINITION Space view, perspective or orthographic + # grib 1 -> 2 constant gridDefinitionTemplateNumber = 90; @@ -40,8 +41,9 @@ include "grib1/scanning_mode.def"; unsigned[3] orientationOfTheGrid : edition_specific ; meta geography.orientationOfTheGridInDegrees scale(orientationOfTheGrid,oneConstant,grib1divider,truncateDegrees) : dump; -unsigned[3] NrInRadiusOfEarth : edition_specific,can_be_missing,no_copy; -alias altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius = NrInRadiusOfEarth; +unsigned[3] Nr : can_be_missing,no_copy; +meta NrInRadiusOfEarth scale(Nr,oneConstant,oneMillionConstant,truncateDegrees) : dump; +alias altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius = Nr; unsigned[2] Xo : dump; alias xCoordinateOfOriginOfSectorImage=Xo; @@ -51,11 +53,11 @@ unsigned[2] Yo : dump; alias yCoordinateOfOriginOfSectorImage=Yo; alias geography.Yo=Yo; -#Ce Length is normally 32 + stretched and/or rotated -#Ce parameters + vertical coordinate parameters + list of -#Ce numbers of points. -#Ce (Lambert conformal and Mercator are 42 octets in length, -#Ce while Space view is 40 for ECMWF (44 in GRIB specification) +#Ce Length is normally 32 + stretched and/or rotated +#Ce parameters + vertical coordinate parameters + list of +#Ce numbers of points. +#Ce (Lambert conformal and Mercator are 42 octets in length, +#Ce while Space view is 40 for ECMWF (44 in GRIB specification) if ( centre != 98 ) { pad padding_grid90_1(6); } @@ -64,3 +66,24 @@ meta numberOfDataPoints number_of_points(Ni,Nj,PLPresent,pl) : dump; alias numberOfPoints=numberOfDataPoints; meta numberOfValues number_of_values(values,bitsPerValue,numberOfDataPoints,bitmapPresent,bitmap,numberOfCodedValues) : dump; #alias ls.valuesCount=numberOfValues; + +iterator space_view(numberOfPoints, missingValue, values, radius, + earthIsOblate, + earthMajorAxis, earthMinorAxis, + Nx, Ny, + latitudeOfSubSatellitePointInDegrees, + longitudeOfSubSatellitePointInDegrees, + dx, dy, XpInGridLengths, YpInGridLengths, + orientationOfTheGridInDegrees, + NrInRadiusOfEarth, Xo, Yo, + iScansNegatively, jScansPositively, + jPointsAreConsecutive, alternativeRowScanning); + +nearest space_view(values,radius,Nx,Ny); + +meta latLonValues latlonvalues(values); +alias latitudeLongitudeValues=latLonValues; +meta latitudes latitudes(values,0); +meta longitudes longitudes(values,0); +meta distinctLatitudes latitudes(values,1); +meta distinctLongitudes longitudes(values,1); diff --git a/src/grib_iterator_class_space_view.c b/src/grib_iterator_class_space_view.c index d939030e7..6c9f97cd8 100644 --- a/src/grib_iterator_class_space_view.c +++ b/src/grib_iterator_class_space_view.c @@ -225,8 +225,7 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args) lop *= DEG2RAD; orient_angle = orientationInDegrees; - if (orient_angle != 0.0) - return GRIB_NOT_IMPLEMENTED; + /* if (orient_angle != 0.0) return GRIB_NOT_IMPLEMENTED; */ xp = xpInGridLengths; yp = ypInGridLengths; From 6747dac30b48ae40f686a778cb38fcf58902b9aa Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 11 Sep 2021 13:52:23 +0100 Subject: [PATCH 617/683] ECC-1280: remove unused variable --- src/grib_iterator_class_space_view.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/grib_iterator_class_space_view.c b/src/grib_iterator_class_space_view.c index 6c9f97cd8..1035dbdaf 100644 --- a/src/grib_iterator_class_space_view.c +++ b/src/grib_iterator_class_space_view.c @@ -115,7 +115,7 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args) long Xo, Yo, jScansPositively, jPointsAreConsecutive, i; double major = 0, minor = 0, r_eq, r_pol, height; - double lap, lop, orient_angle, angular_size; + double lap, lop, angular_size; double xp, yp, dx, dy, rx, ry, x, y; double cos_x, cos_y, sin_x, sin_y; double factor_1, factor_2, tmp1, Sd, Sn, Sxy, S1, S2, S3; @@ -224,7 +224,7 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args) /*lap *= DEG2RAD;*/ lop *= DEG2RAD; - orient_angle = orientationInDegrees; + /*orient_angle = orientationInDegrees;*/ /* if (orient_angle != 0.0) return GRIB_NOT_IMPLEMENTED; */ xp = xpInGridLengths; From f9cb002aa888fffa304ab13417f91366ceaffb97 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 12 Sep 2021 22:27:36 +0100 Subject: [PATCH 618/683] Move autotools stuff into deprecated dir --- autogen.sh => deprecated/autogen.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename autogen.sh => deprecated/autogen.sh (100%) diff --git a/autogen.sh b/deprecated/autogen.sh similarity index 100% rename from autogen.sh rename to deprecated/autogen.sh From cad5b545a2d0c379eabe72ac048b70191ab4ce00 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 13 Sep 2021 15:03:02 +0100 Subject: [PATCH 619/683] ECC-1280: Revert NrInRadiusOfEarth (Breaks Magics). Fix angle conversions --- definitions/grib1/grid_definition_90.def | 27 ++++++------- definitions/grib2/template.3.90.def | 5 ++- src/grib_iterator_class_space_view.c | 50 ++++++++++++++++++++++-- 3 files changed, 63 insertions(+), 19 deletions(-) diff --git a/definitions/grib1/grid_definition_90.def b/definitions/grib1/grid_definition_90.def index 3a8d97ca3..5d98f86d6 100644 --- a/definitions/grib1/grid_definition_90.def +++ b/definitions/grib1/grid_definition_90.def @@ -3,12 +3,12 @@ # grib 1 -> 2 constant gridDefinitionTemplateNumber = 90; -unsigned[2] Nx : dump; +unsigned[2] Nx : dump; alias numberOfPointsAlongXAxis = Nx; alias Ni = Nx; alias geography.Nx=Nx; -unsigned[2] Ny : dump; +unsigned[2] Ny : dump; alias numberOfPointsAlongYAxis = Ny; alias Nj = Ny; alias geography.Ny=Ny; @@ -19,21 +19,20 @@ alias Lap=latitudeOfSubSatellitePoint; signed[3] longitudeOfSubSatellitePoint ; meta geography.longitudeOfSubSatellitePointInDegrees scale(longitudeOfSubSatellitePoint,oneConstant,grib1divider,truncateDegrees) : dump; -alias Lap=longitudeOfSubSatellitePoint; +alias Lop=longitudeOfSubSatellitePoint; include "grib1/resolution_flags.def"; -unsigned[3] dx : dump; +unsigned[3] dx : dump; alias geography.dx=dx; -unsigned[3] dy : dump; +unsigned[3] dy : dump; alias geography.dy=dy; -unsigned[2] XpInGridLengths : dump; +unsigned[2] XpInGridLengths : dump; alias geography.XpInGridLengths=XpInGridLengths; - -unsigned[2] YpInGridLengths : dump; +unsigned[2] YpInGridLengths : dump; alias geography.YpInGridLengths=YpInGridLengths; include "grib1/scanning_mode.def"; @@ -41,15 +40,15 @@ include "grib1/scanning_mode.def"; unsigned[3] orientationOfTheGrid : edition_specific ; meta geography.orientationOfTheGridInDegrees scale(orientationOfTheGrid,oneConstant,grib1divider,truncateDegrees) : dump; -unsigned[3] Nr : can_be_missing,no_copy; -meta NrInRadiusOfEarth scale(Nr,oneConstant,oneMillionConstant,truncateDegrees) : dump; -alias altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius = Nr; +unsigned[3] NrInRadiusOfEarth : edition_specific,can_be_missing,no_copy; +alias altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius = NrInRadiusOfEarth; +meta NrInRadiusOfEarthScaled scale(NrInRadiusOfEarth,oneConstant,oneMillionConstant,truncateDegrees) : dump; -unsigned[2] Xo : dump; +unsigned[2] Xo : dump; alias xCoordinateOfOriginOfSectorImage=Xo; alias geography.Xo=Xo; -unsigned[2] Yo : dump; +unsigned[2] Yo : dump; alias yCoordinateOfOriginOfSectorImage=Yo; alias geography.Yo=Yo; @@ -75,7 +74,7 @@ iterator space_view(numberOfPoints, missingValue, values, radius, longitudeOfSubSatellitePointInDegrees, dx, dy, XpInGridLengths, YpInGridLengths, orientationOfTheGridInDegrees, - NrInRadiusOfEarth, Xo, Yo, + NrInRadiusOfEarthScaled, Xo, Yo, iScansNegatively, jScansPositively, jPointsAreConsecutive, alternativeRowScanning); diff --git a/definitions/grib2/template.3.90.def b/definitions/grib2/template.3.90.def index 7d51b21dc..9db979eda 100644 --- a/definitions/grib2/template.3.90.def +++ b/definitions/grib2/template.3.90.def @@ -14,10 +14,10 @@ alias numberOfPointsAlongYAxis = Ny; alias geography.Ny=Ny; # Lap - latitude of sub-satellite point -signed[4] latitudeOfSubSatellitePoint ; +signed[4] latitudeOfSubSatellitePoint; # Lop - longitude of sub-satellite point -signed[4] longitudeOfSubSatellitePoint ; +signed[4] longitudeOfSubSatellitePoint; meta geography.latitudeOfSubSatellitePointInDegrees scale(latitudeOfSubSatellitePoint,one,grib2divider,truncateDegrees) : dump; meta geography.longitudeOfSubSatellitePointInDegrees scale(longitudeOfSubSatellitePoint,one,grib2divider,truncateDegrees) : dump; @@ -57,6 +57,7 @@ meta geography.orientationOfTheGridInDegrees unsigned[4] Nr : edition_specific,can_be_missing,no_copy; alias altitudeOfTheCameraFromTheEarthsCentreMeasuredInUnitsOfTheEarthsRadius = Nr; meta geography.NrInRadiusOfEarth scale(Nr,oneConstant,oneMillionConstant,truncateDegrees) : dump; +alias NrInRadiusOfEarthScaled=NrInRadiusOfEarth; # Xo - X-coordinate of origin of sector image unsigned[4] Xo : dump; diff --git a/src/grib_iterator_class_space_view.c b/src/grib_iterator_class_space_view.c index 1035dbdaf..73a416f87 100644 --- a/src/grib_iterator_class_space_view.c +++ b/src/grib_iterator_class_space_view.c @@ -97,6 +97,48 @@ static int next(grib_iterator* i, double* lat, double* lon, double* val) return 1; } +#if 0 +static void adjustBadlyEncodedEcmwfGribs(grib_handle* h, + long* nx, long* ny, double* dx, double* dy, double* xp, double* yp) +{ + /* Correct the information provided in the headers of certain satellite imagery that + * we have available. This is specific to ECMWF. + * Obtained through trial-and-error to get the best match with the coastlines. + * + * Copied from Magics GribSatelliteInterpretor::AdjustBadlyEncodedGribs() + */ + long centre = 0; + int err = grib_get_long(h, "centre", ¢re); + if (!err && centre == 98) { + int err1 = 0, err2 = 0, err3 = 0; + long satelliteIdentifier, channelNumber, functionCode; + /* These keys are defined in the ECMWF local definition 24 - Satellite image simulation */ + err1 = grib_get_long(h, "satelliteIdentifier", &satelliteIdentifier); + err2 = grib_get_long(h, "channelNumber", &channelNumber); + err3 = grib_get_long(h, "functionCode", &functionCode); + if (!err1 && !err2 && !err3) { + if (satelliteIdentifier == 54 && channelNumber == 2 && *dx == 1179) { /* Meteosat 7, channel 2 */ + *nx = *ny = 900; + *dx = *dy = 853; + *xp = *yp = 450; + } + else if (satelliteIdentifier == 54 && channelNumber == 3 && *dx == 1179) { /* Meteosat 7, channel 3 */ + *dx = *dy = 1184; + *xp = *yp = 635; + } + else if (satelliteIdentifier == 259 && channelNumber == 4 && *dx == 1185) { /* GOES-15 (West) channel 4 */ + *dx = *dy = 880; + *xp = *yp = 450; + } + else if (satelliteIdentifier == 57 && *dx == 1732) { /* MSG (Meteosat second generation), non-HRV channels */ + *dx = *dy = 1811; + *xp = *yp = 928; + } + } + } +} +#endif + #define RAD2DEG 57.29577951308232087684 /* 180 over pi */ #define DEG2RAD 0.01745329251994329576 /* pi over 180 */ @@ -217,12 +259,12 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args) lap = latOfSubSatellitePointInDegrees; lop = lonOfSubSatellitePointInDegrees; - lap *= 1e-6; /* default scaling factor */ - lop *= 1e-6; + /* lap *= 1e-6; // default scaling factor */ + /* lop *= 1e-6; */ if (lap != 0.0) return GRIB_NOT_IMPLEMENTED; /*lap *= DEG2RAD;*/ - lop *= DEG2RAD; + /*lop *= DEG2RAD;*/ /*orient_angle = orientationInDegrees;*/ /* if (orient_angle != 0.0) return GRIB_NOT_IMPLEMENTED; */ @@ -232,6 +274,8 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args) x0 = Xo; y0 = Yo; + /* adjustBadlyEncodedEcmwfGribs(h, &nx, &ny, &dx, &dy, &xp, &yp); */ + rx = angular_size / dx; ry = (r_pol / r_eq) * angular_size / dy; From 00f5a6837cd0f227f97a1066197f59ded10d32eb Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 13 Sep 2021 15:16:59 +0100 Subject: [PATCH 620/683] ECC-1280: Use NrInRadiusOfEarthScaled for both editions --- definitions/grib2/template.3.90.def | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/definitions/grib2/template.3.90.def b/definitions/grib2/template.3.90.def index 9db979eda..a4f6a092f 100644 --- a/definitions/grib2/template.3.90.def +++ b/definitions/grib2/template.3.90.def @@ -77,7 +77,7 @@ iterator space_view(numberOfPoints, missingValue, values, radius, longitudeOfSubSatellitePointInDegrees, dx, dy, XpInGridLengths, YpInGridLengths, orientationOfTheGridInDegrees, - NrInRadiusOfEarth, Xo, Yo, + NrInRadiusOfEarthScaled, Xo, Yo, iScansNegatively, jScansPositively, jPointsAreConsecutive, alternativeRowScanning); From 76d82b7c4b683deb1901810aa70837c51e7c4b90 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 13 Sep 2021 17:50:31 +0100 Subject: [PATCH 621/683] ECC-1115: Add experimental support for 'space view' --- src/grib_accessor_class_proj_string.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/grib_accessor_class_proj_string.c b/src/grib_accessor_class_proj_string.c index cc6f017b7..a57841e55 100644 --- a/src/grib_accessor_class_proj_string.c +++ b/src/grib_accessor_class_proj_string.c @@ -202,7 +202,14 @@ static int proj_regular_latlon(grib_handle* h, char* result) static int proj_space_view(grib_handle* h, char* result) { - return GRIB_NOT_IMPLEMENTED; + int err = 0; + char shape[64] = {0,}; + + if ((err = get_earth_shape(h, shape)) != GRIB_SUCCESS) + return err; + /* Experimental: For now do the same as gdalsrsinfo - hard coded values! */ + sprintf(result, "+proj=geos +lon_0=0 +h=35785831 +x_0=0 +y_0=0 %s", shape); + return err; } static int proj_albers(grib_handle* h, char* result) { From d00c94e4ced4a754826a286102f8593f4f14e1fd Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 13 Sep 2021 21:34:35 +0100 Subject: [PATCH 622/683] ECC-1280: Check to avoid divide by zero --- src/grib_iterator_class_space_view.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/grib_iterator_class_space_view.c b/src/grib_iterator_class_space_view.c index 73a416f87..bbfc6d366 100644 --- a/src/grib_iterator_class_space_view.c +++ b/src/grib_iterator_class_space_view.c @@ -254,17 +254,19 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args) else { r_eq = r_pol = radius * 0.001; /*conv to km*/ } + + if (nrInRadiusOfEarth == 0) { + grib_context_log(h->context, GRIB_LOG_ERROR, "Key %s must be greater than zero", sNrInRadiusOfEarth); + return GRIB_GEOCALCULUS_PROBLEM; + } + angular_size = 2.0 * asin(1.0 / nrInRadiusOfEarth); height = nrInRadiusOfEarth * r_eq; lap = latOfSubSatellitePointInDegrees; lop = lonOfSubSatellitePointInDegrees; - /* lap *= 1e-6; // default scaling factor */ - /* lop *= 1e-6; */ if (lap != 0.0) return GRIB_NOT_IMPLEMENTED; - /*lap *= DEG2RAD;*/ - /*lop *= DEG2RAD;*/ /*orient_angle = orientationInDegrees;*/ /* if (orient_angle != 0.0) return GRIB_NOT_IMPLEMENTED; */ @@ -275,7 +277,10 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args) y0 = Yo; /* adjustBadlyEncodedEcmwfGribs(h, &nx, &ny, &dx, &dy, &xp, &yp); */ - + if (dx == 0 || dy == 0) { + grib_context_log(h->context, GRIB_LOG_ERROR, "Keys %s and %s must be greater than zero", sDx, sDy); + return GRIB_GEOCALCULUS_PROBLEM; + } rx = angular_size / dx; ry = (r_pol / r_eq) * angular_size / dy; From 2aa0c7ed602e956a16f685b0594d18e5176348d6 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 13 Sep 2021 21:34:53 +0100 Subject: [PATCH 623/683] ECC-1280: Add test for GRIB1 --- tests/grib_grid_space_view.sh | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/tests/grib_grid_space_view.sh b/tests/grib_grid_space_view.sh index 07f1853bb..71a1d0008 100755 --- a/tests/grib_grid_space_view.sh +++ b/tests/grib_grid_space_view.sh @@ -15,9 +15,10 @@ tempFilter="temp.${label}.filt" tempGrib="temp.${label}.grib" tempOut="temp.${label}.out" +# ----------- +# GRIB2 +# ----------- input=$ECCODES_SAMPLES_PATH/GRIB2.tmpl - -# Create a filter cat > $tempFilter < $tempOut ${tools_dir}/grib_ls -l 50,0 $tempGrib +# ----------- +# GRIB1 +# ----------- +input=$ECCODES_SAMPLES_PATH/GRIB1.tmpl +cat > $tempFilter < $tempOut + # Clean up rm -f $tempFilter $tempGrib $tempOut From e1c5fadca56b94a458c61d54da592202bce2090e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 14 Sep 2021 10:54:54 +0100 Subject: [PATCH 624/683] Revert experimental support for 'space view' (broke Magics) --- src/grib_accessor_class_proj_string.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/grib_accessor_class_proj_string.c b/src/grib_accessor_class_proj_string.c index a57841e55..0dfca41bb 100644 --- a/src/grib_accessor_class_proj_string.c +++ b/src/grib_accessor_class_proj_string.c @@ -202,6 +202,8 @@ static int proj_regular_latlon(grib_handle* h, char* result) static int proj_space_view(grib_handle* h, char* result) { + return GRIB_NOT_IMPLEMENTED; +#if 0 int err = 0; char shape[64] = {0,}; @@ -210,6 +212,7 @@ static int proj_space_view(grib_handle* h, char* result) /* Experimental: For now do the same as gdalsrsinfo - hard coded values! */ sprintf(result, "+proj=geos +lon_0=0 +h=35785831 +x_0=0 +y_0=0 %s", shape); return err; +#endif } static int proj_albers(grib_handle* h, char* result) { From 7aef3a9fbd32758300fd9857f917dd25ff8efed6 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 14 Sep 2021 15:30:21 +0100 Subject: [PATCH 625/683] ECC-1241: renamed key --- .../grib2/template.4.localtime_statistical.def | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/definitions/grib2/template.4.localtime_statistical.def b/definitions/grib2/template.4.localtime_statistical.def index 7f2aa4ab7..f07845f07 100644 --- a/definitions/grib2/template.4.localtime_statistical.def +++ b/definitions/grib2/template.4.localtime_statistical.def @@ -1,13 +1,13 @@ # (C) Copyright 2005- ECMWF. -# Statistical process used to calculate the processed field from the field at each time increment during the time range +# Statistical process used to calculate the processed field from the field at each time increment during the time range codetable[1] typeOfStatisticalProcessing ('4.10.table',masterDir,localDir) : edition_specific; -# Indicator of unit of time for time range over which statistical processing is done -codetable[1] indicatorOfUnitForTimeRange ('4.4.table',masterDir,localDir) =1 ; +# Indicator of unit of time for time range over which statistical processing is done +codetable[1] indicatorOfUnitForTimeRange ('4.4.table',masterDir,localDir) =1; -# Length of the time range over which statistical processing is done, in units defined by the previous octet -unsigned[4] lengthOfTimeRange=0 ; +# Length of the time range over which statistical processing is done, in units defined by the previous octet +unsigned[4] lengthOfTimeRange=0; # Number of statistically processed fields used in the local time composite field == number of stripes -unsigned[1] numberOfStatisticallyFieldsForLocalTime; +unsigned[1] numberOfStatisticallyProcessedFieldsForLocalTime; From 4ff859828405a66ce11365354f869353042d4c1f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 14 Sep 2021 16:31:57 +0100 Subject: [PATCH 626/683] Definitions: clean up --- definitions/grib2/template.4.70.def | 2 +- definitions/grib2/template.4.71.def | 2 +- definitions/grib2/template.4.72.def | 2 +- definitions/grib2/template.4.73.def | 2 +- definitions/grib2/template.4.93.def | 2 +- definitions/grib2/template.4.94.def | 2 +- definitions/grib2/template.4.95.def | 2 +- definitions/grib2/template.4.97.def | 2 +- definitions/grib2/template.4.98.def | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/definitions/grib2/template.4.70.def b/definitions/grib2/template.4.70.def index 520106a26..399e81197 100644 --- a/definitions/grib2/template.4.70.def +++ b/definitions/grib2/template.4.70.def @@ -1,6 +1,6 @@ # (C) Copyright 2005- ECMWF. -# EFAS: Analysis or forecast at a horizontal level or in a horizontal layer at a point in time +# TEMPLATE 4.70, Analysis or forecast at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" include "grib2/template.4.postproc.def" diff --git a/definitions/grib2/template.4.71.def b/definitions/grib2/template.4.71.def index f91f2e366..ba40285b1 100644 --- a/definitions/grib2/template.4.71.def +++ b/definitions/grib2/template.4.71.def @@ -1,6 +1,6 @@ # (C) Copyright 2005- ECMWF. -# EFAS: Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time +# TEMPLATE 4.71, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a point in time include "grib2/template.4.parameter.def" include "grib2/template.4.postproc.def" diff --git a/definitions/grib2/template.4.72.def b/definitions/grib2/template.4.72.def index ba6ad7da9..33d58a725 100644 --- a/definitions/grib2/template.4.72.def +++ b/definitions/grib2/template.4.72.def @@ -1,6 +1,6 @@ # (C) Copyright 2005- ECMWF. -# EFAS: Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# TEMPLATE 4.72, Average, accumulation, and/or extreme values or other statistically processed values at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" include "grib2/template.4.postproc.def" diff --git a/definitions/grib2/template.4.73.def b/definitions/grib2/template.4.73.def index 535d7ba4e..306ea6ed0 100644 --- a/definitions/grib2/template.4.73.def +++ b/definitions/grib2/template.4.73.def @@ -1,6 +1,6 @@ # (C) Copyright 2005- ECMWF. -# EFAS: Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval +# TEMPLATE 4.73, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer in a continuous or non-continuous time interval include "grib2/template.4.parameter.def" include "grib2/template.4.postproc.def" diff --git a/definitions/grib2/template.4.93.def b/definitions/grib2/template.4.93.def index 8ee75e5e6..ba14d95d4 100644 --- a/definitions/grib2/template.4.93.def +++ b/definitions/grib2/template.4.93.def @@ -1,6 +1,6 @@ # (C) Copyright 2005- ECMWF. -# Analysis or forecast at a horizontal level or in a horizontal layer at a local time +# TEMPLATE 4.93, Analysis or forecast at a horizontal level or in a horizontal layer at a local time include "grib2/template.4.parameter.def" include "grib2/template.4.postproc.def" diff --git a/definitions/grib2/template.4.94.def b/definitions/grib2/template.4.94.def index 1da76339d..0ba58bb53 100644 --- a/definitions/grib2/template.4.94.def +++ b/definitions/grib2/template.4.94.def @@ -1,6 +1,6 @@ # (C) Copyright 2005- ECMWF. -# Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a local time +# TEMPLATE 4.94, Individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a local time include "grib2/template.4.parameter.def" include "grib2/template.4.postproc.def" diff --git a/definitions/grib2/template.4.95.def b/definitions/grib2/template.4.95.def index 8baaba021..53d2aef4e 100644 --- a/definitions/grib2/template.4.95.def +++ b/definitions/grib2/template.4.95.def @@ -1,6 +1,6 @@ # (C) Copyright 2005- ECMWF. -# TEMPLATE 4.95, Average, accumulation extreme values or other statiscally processed value at a horizontal level or in a horizontal layer at a local time +# TEMPLATE 4.95, Average, accumulation extreme values or other statistically processed value at a horizontal level or in a horizontal layer at a local time include "grib2/template.4.parameter.def" include "grib2/template.4.generating_process.def" diff --git a/definitions/grib2/template.4.97.def b/definitions/grib2/template.4.97.def index c01c8dc30..67b315ff1 100644 --- a/definitions/grib2/template.4.97.def +++ b/definitions/grib2/template.4.97.def @@ -1,6 +1,6 @@ # (C) Copyright 2005- ECMWF. -# Average, accumulation, extreme values or other statistically processed values of post-processing analysis or forecast at a horizontal level or in a horizontal layer at a local time +# TEMPLATE 4.97, Average, accumulation, extreme values or other statistically processed values of post-processing analysis or forecast at a horizontal level or in a horizontal layer at a local time include "grib2/template.4.parameter.def" include "grib2/template.4.postproc.def" diff --git a/definitions/grib2/template.4.98.def b/definitions/grib2/template.4.98.def index cd9b878b5..12e70affe 100644 --- a/definitions/grib2/template.4.98.def +++ b/definitions/grib2/template.4.98.def @@ -1,6 +1,6 @@ # (C) Copyright 2005- ECMWF. -# Average, accumulation, extreme values or other statistically processed values of a post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a local time +# TEMPLATE 4.98, Average, accumulation, extreme values or other statistically processed values of a post-processing individual ensemble forecast, control and perturbed, at a horizontal level or in a horizontal layer at a local time include "grib2/template.4.parameter.def" include "grib2/template.4.postproc.def" From 2db15a68fc43687b13d3718086c7a61a45eb92b4 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 15 Sep 2021 12:28:05 +0100 Subject: [PATCH 627/683] Python examples: run isort --- examples/python/binary_message.py | 2 +- examples/python/bufr_attributes.py | 4 +++- examples/python/bufr_clone.py | 3 ++- examples/python/bufr_copy_data.py | 4 +++- examples/python/bufr_copy_data2.py | 4 +++- examples/python/bufr_copy_data3.py | 4 +++- examples/python/bufr_ecc-448.py | 3 ++- examples/python/bufr_ecc-869.py | 4 +++- examples/python/bufr_encode_flight.py | 9 +++++---- examples/python/bufr_expanded.py | 6 +++--- examples/python/bufr_get_keys.py | 3 ++- examples/python/bufr_keys_iterator.py | 3 ++- examples/python/bufr_read_header.py | 3 ++- examples/python/bufr_read_sample.py | 3 ++- examples/python/bufr_read_scatterometer.py | 3 ++- examples/python/bufr_read_synop.py | 3 ++- examples/python/bufr_read_temp.py | 4 +++- examples/python/bufr_read_tempf.py | 4 +++- examples/python/bufr_read_tropical_cyclone.py | 5 +++-- examples/python/bufr_set_keys.py | 3 ++- examples/python/bufr_subset.py | 3 ++- examples/python/get_product_kind.py | 4 +++- examples/python/grib_ccsds.py | 3 ++- examples/python/grib_clone.py | 4 ++-- examples/python/grib_count_messages.py | 3 ++- examples/python/grib_get_keys.py | 4 +++- examples/python/grib_get_message_offset.py | 4 +++- examples/python/grib_index.py | 5 +++-- examples/python/grib_iterator.py | 3 ++- examples/python/grib_iterator_bitmap.py | 3 ++- examples/python/grib_keys_iterator.py | 3 ++- examples/python/grib_ls_JSON.py | 8 +++++--- examples/python/grib_multi_write.py | 2 +- examples/python/grib_nearest.py | 3 ++- examples/python/grib_print_data.py | 3 ++- examples/python/grib_read_sample.py | 3 ++- examples/python/grib_samples.py | 2 +- examples/python/grib_set_bitmap.py | 4 +++- examples/python/grib_set_keys.py | 7 ++++--- examples/python/grib_set_missing.py | 2 +- examples/python/grib_set_pv.py | 2 +- examples/python/gts_get_keys.py | 3 ++- examples/python/keys_iterator_gts.py | 3 ++- examples/python/metar_get_keys.py | 3 ++- examples/python/prepBufr_create_defs.py | 6 +++--- 45 files changed, 108 insertions(+), 59 deletions(-) diff --git a/examples/python/binary_message.py b/examples/python/binary_message.py index de6016361..9f269646e 100644 --- a/examples/python/binary_message.py +++ b/examples/python/binary_message.py @@ -9,8 +9,8 @@ # nor does it submit to any jurisdiction. # -import traceback import sys +import traceback from eccodes import * diff --git a/examples/python/bufr_attributes.py b/examples/python/bufr_attributes.py index b3661fa3b..61f504c0a 100644 --- a/examples/python/bufr_attributes.py +++ b/examples/python/bufr_attributes.py @@ -15,8 +15,10 @@ # from __future__ import print_function -import traceback + import sys +import traceback + from eccodes import * INPUT = '../../data/bufr/syno_multi.bufr' diff --git a/examples/python/bufr_clone.py b/examples/python/bufr_clone.py index 1a54b9b79..f3384b171 100644 --- a/examples/python/bufr_clone.py +++ b/examples/python/bufr_clone.py @@ -16,8 +16,9 @@ # from __future__ import absolute_import -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/bufr_copy_data.py b/examples/python/bufr_copy_data.py index b65e47124..a7d27e694 100644 --- a/examples/python/bufr_copy_data.py +++ b/examples/python/bufr_copy_data.py @@ -14,8 +14,10 @@ # position in the data tree and with the same number of values to the output handle # from __future__ import print_function -import traceback + import sys +import traceback + from eccodes import * VERBOSE = 1 # verbose error reporting diff --git a/examples/python/bufr_copy_data2.py b/examples/python/bufr_copy_data2.py index 5e6f54c7a..609cc725a 100644 --- a/examples/python/bufr_copy_data2.py +++ b/examples/python/bufr_copy_data2.py @@ -15,8 +15,10 @@ # This example is for messages which use the operator 203YYY (overridden reference values) # from __future__ import print_function -import traceback + import sys +import traceback + from eccodes import * VERBOSE = 1 # verbose error reporting diff --git a/examples/python/bufr_copy_data3.py b/examples/python/bufr_copy_data3.py index 9cf11ae81..10b9dacf0 100644 --- a/examples/python/bufr_copy_data3.py +++ b/examples/python/bufr_copy_data3.py @@ -15,8 +15,10 @@ # In this example we add the WIGOS sequence 301150 to a SYNOP # from __future__ import print_function -import traceback + import sys +import traceback + from eccodes import * VERBOSE = 1 # verbose error reporting diff --git a/examples/python/bufr_ecc-448.py b/examples/python/bufr_ecc-448.py index 7216df4b6..9e828af0f 100644 --- a/examples/python/bufr_ecc-448.py +++ b/examples/python/bufr_ecc-448.py @@ -8,8 +8,9 @@ # nor does it submit to any jurisdiction. from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/bufr_ecc-869.py b/examples/python/bufr_ecc-869.py index ef9671946..3a35d5ebe 100644 --- a/examples/python/bufr_ecc-869.py +++ b/examples/python/bufr_ecc-869.py @@ -3,8 +3,10 @@ # See ECC-869 from __future__ import print_function -import traceback + import sys +import traceback + from eccodes import * OUTPUT_FILENAME = 'outfile_ecc_869_test.bufr' diff --git a/examples/python/bufr_encode_flight.py b/examples/python/bufr_encode_flight.py index 9d6c9e13f..2b61058b3 100644 --- a/examples/python/bufr_encode_flight.py +++ b/examples/python/bufr_encode_flight.py @@ -11,11 +11,12 @@ # Description: how to encode flight dataset into BUFR from __future__ import print_function -from datetime import datetime -import traceback -import numpy as np -import sys +import sys +import traceback +from datetime import datetime + +import numpy as np from eccodes import * VERBOSE = 1 # verbose error reporting diff --git a/examples/python/bufr_expanded.py b/examples/python/bufr_expanded.py index a012e6db6..b5cca1141 100644 --- a/examples/python/bufr_expanded.py +++ b/examples/python/bufr_expanded.py @@ -13,10 +13,10 @@ # Description: how to read values of different type of keys from BUFR messages. # -from __future__ import absolute_import -from __future__ import print_function -import traceback +from __future__ import absolute_import, print_function + import sys +import traceback from eccodes import * diff --git a/examples/python/bufr_get_keys.py b/examples/python/bufr_get_keys.py index 35a1c6a0f..cf30075ff 100644 --- a/examples/python/bufr_get_keys.py +++ b/examples/python/bufr_get_keys.py @@ -15,8 +15,9 @@ # from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/bufr_keys_iterator.py b/examples/python/bufr_keys_iterator.py index f4a4eecfd..e2a89d5dd 100644 --- a/examples/python/bufr_keys_iterator.py +++ b/examples/python/bufr_keys_iterator.py @@ -16,8 +16,9 @@ from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/bufr_read_header.py b/examples/python/bufr_read_header.py index 163568dc6..058475b75 100644 --- a/examples/python/bufr_read_header.py +++ b/examples/python/bufr_read_header.py @@ -16,8 +16,9 @@ # from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/bufr_read_sample.py b/examples/python/bufr_read_sample.py index 4d66122cb..51e234d0b 100644 --- a/examples/python/bufr_read_sample.py +++ b/examples/python/bufr_read_sample.py @@ -14,8 +14,9 @@ # from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/bufr_read_scatterometer.py b/examples/python/bufr_read_scatterometer.py index da52ffe22..310cd34e3 100644 --- a/examples/python/bufr_read_scatterometer.py +++ b/examples/python/bufr_read_scatterometer.py @@ -20,8 +20,9 @@ # from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/bufr_read_synop.py b/examples/python/bufr_read_synop.py index 82496c18c..6cc1a87d2 100644 --- a/examples/python/bufr_read_synop.py +++ b/examples/python/bufr_read_synop.py @@ -19,8 +19,9 @@ # understand the structure of the messages. from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/bufr_read_temp.py b/examples/python/bufr_read_temp.py index 10e554312..1be6b8677 100644 --- a/examples/python/bufr_read_temp.py +++ b/examples/python/bufr_read_temp.py @@ -20,8 +20,10 @@ # understand the structure of the messages. # from __future__ import print_function -import traceback + import sys +import traceback + from eccodes import * INPUT = '../../data/bufr/PraticaTemp.bufr' diff --git a/examples/python/bufr_read_tempf.py b/examples/python/bufr_read_tempf.py index 555743858..1f83f042d 100644 --- a/examples/python/bufr_read_tempf.py +++ b/examples/python/bufr_read_tempf.py @@ -23,8 +23,10 @@ # understand the structure of the messages. # from __future__ import print_function -import traceback + import sys +import traceback + import numpy as np from eccodes import * diff --git a/examples/python/bufr_read_tropical_cyclone.py b/examples/python/bufr_read_tropical_cyclone.py index 5494af806..2a534b380 100644 --- a/examples/python/bufr_read_tropical_cyclone.py +++ b/examples/python/bufr_read_tropical_cyclone.py @@ -17,9 +17,10 @@ # from __future__ import print_function -import traceback -import sys + import collections +import sys +import traceback from eccodes import * diff --git a/examples/python/bufr_set_keys.py b/examples/python/bufr_set_keys.py index 1b48b2478..89141025c 100644 --- a/examples/python/bufr_set_keys.py +++ b/examples/python/bufr_set_keys.py @@ -15,8 +15,9 @@ # from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/bufr_subset.py b/examples/python/bufr_subset.py index 9e20a3dc4..29275f232 100644 --- a/examples/python/bufr_subset.py +++ b/examples/python/bufr_subset.py @@ -15,8 +15,9 @@ # from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/get_product_kind.py b/examples/python/get_product_kind.py index 7813315ca..48e93298f 100644 --- a/examples/python/get_product_kind.py +++ b/examples/python/get_product_kind.py @@ -15,8 +15,10 @@ # and print the kind of product (e.g. GRIB, BUFR etc) from __future__ import print_function -import traceback + import sys +import traceback + from eccodes import * VERBOSE = 1 # verbose error reporting diff --git a/examples/python/grib_ccsds.py b/examples/python/grib_ccsds.py index d171daa70..0bf7f8640 100644 --- a/examples/python/grib_ccsds.py +++ b/examples/python/grib_ccsds.py @@ -8,8 +8,9 @@ # nor does it submit to any jurisdiction. from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/grib_clone.py b/examples/python/grib_clone.py index 531ea22bb..624bf2618 100644 --- a/examples/python/grib_clone.py +++ b/examples/python/grib_clone.py @@ -9,9 +9,9 @@ # nor does it submit to any jurisdiction. # -import traceback -import sys import random +import sys +import traceback from eccodes import * diff --git a/examples/python/grib_count_messages.py b/examples/python/grib_count_messages.py index 28df17bd3..018cb729a 100644 --- a/examples/python/grib_count_messages.py +++ b/examples/python/grib_count_messages.py @@ -10,8 +10,9 @@ # from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/grib_get_keys.py b/examples/python/grib_get_keys.py index 1d94f492d..e4c63475a 100644 --- a/examples/python/grib_get_keys.py +++ b/examples/python/grib_get_keys.py @@ -13,8 +13,10 @@ # from __future__ import print_function -import traceback + import sys +import traceback + from eccodes import * INPUT = '../../data/reduced_latlon_surface.grib1' diff --git a/examples/python/grib_get_message_offset.py b/examples/python/grib_get_message_offset.py index 32583980e..701ee79d3 100644 --- a/examples/python/grib_get_message_offset.py +++ b/examples/python/grib_get_message_offset.py @@ -15,8 +15,10 @@ # from __future__ import print_function -import traceback + import sys +import traceback + from eccodes import * VERBOSE = 1 # verbose error reporting diff --git a/examples/python/grib_index.py b/examples/python/grib_index.py index b13cdae67..b78baee4d 100644 --- a/examples/python/grib_index.py +++ b/examples/python/grib_index.py @@ -13,9 +13,10 @@ # a file from __future__ import print_function -import traceback -import sys + import os +import sys +import traceback from eccodes import * diff --git a/examples/python/grib_iterator.py b/examples/python/grib_iterator.py index 2c7d5ede8..f693424ff 100644 --- a/examples/python/grib_iterator.py +++ b/examples/python/grib_iterator.py @@ -9,8 +9,9 @@ # from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/grib_iterator_bitmap.py b/examples/python/grib_iterator_bitmap.py index c2937de9b..e6fb3d838 100644 --- a/examples/python/grib_iterator_bitmap.py +++ b/examples/python/grib_iterator_bitmap.py @@ -13,8 +13,9 @@ # (rather than compare each value with the missingValue key) # from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/grib_keys_iterator.py b/examples/python/grib_keys_iterator.py index 237c016f3..666fe6367 100644 --- a/examples/python/grib_keys_iterator.py +++ b/examples/python/grib_keys_iterator.py @@ -10,8 +10,9 @@ # from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/grib_ls_JSON.py b/examples/python/grib_ls_JSON.py index 685687070..8cb3c3d08 100644 --- a/examples/python/grib_ls_JSON.py +++ b/examples/python/grib_ls_JSON.py @@ -12,10 +12,12 @@ # from __future__ import print_function -import traceback -import sys -import os + import getopt +import os +import sys +import traceback + from eccodes import * VERBOSE = 1 # verbose error reporting diff --git a/examples/python/grib_multi_write.py b/examples/python/grib_multi_write.py index e4386b9cf..2e7e447b8 100644 --- a/examples/python/grib_multi_write.py +++ b/examples/python/grib_multi_write.py @@ -9,8 +9,8 @@ # nor does it submit to any jurisdiction. # -import traceback import sys +import traceback from eccodes import * diff --git a/examples/python/grib_nearest.py b/examples/python/grib_nearest.py index 5eed9dff7..332afaa31 100644 --- a/examples/python/grib_nearest.py +++ b/examples/python/grib_nearest.py @@ -10,8 +10,9 @@ # from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/grib_print_data.py b/examples/python/grib_print_data.py index 735479e01..a3bd70b71 100644 --- a/examples/python/grib_print_data.py +++ b/examples/python/grib_print_data.py @@ -10,8 +10,9 @@ # from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/grib_read_sample.py b/examples/python/grib_read_sample.py index d044f5c7c..b48ac93ac 100644 --- a/examples/python/grib_read_sample.py +++ b/examples/python/grib_read_sample.py @@ -14,8 +14,9 @@ # from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/grib_samples.py b/examples/python/grib_samples.py index 7be5cbbbc..32558bcbc 100644 --- a/examples/python/grib_samples.py +++ b/examples/python/grib_samples.py @@ -9,8 +9,8 @@ # nor does it submit to any jurisdiction. # -import traceback import sys +import traceback from eccodes import * diff --git a/examples/python/grib_set_bitmap.py b/examples/python/grib_set_bitmap.py index d7e7f1ec6..0d8b73015 100644 --- a/examples/python/grib_set_bitmap.py +++ b/examples/python/grib_set_bitmap.py @@ -7,8 +7,10 @@ # virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. from __future__ import print_function -import traceback + import sys +import traceback + from eccodes import * INPUT = '../../data/regular_latlon_surface.grib1' diff --git a/examples/python/grib_set_keys.py b/examples/python/grib_set_keys.py index c48edc84d..b741f1e12 100644 --- a/examples/python/grib_set_keys.py +++ b/examples/python/grib_set_keys.py @@ -13,12 +13,13 @@ # from __future__ import print_function -import traceback + import sys +import traceback +from collections import OrderedDict +from datetime import date from eccodes import * -from datetime import date -from collections import OrderedDict INPUT = '../../data/regular_latlon_surface_constant.grib1' OUTPUT = 'out.set.grib' diff --git a/examples/python/grib_set_missing.py b/examples/python/grib_set_missing.py index 703977b8f..dcf25d99f 100644 --- a/examples/python/grib_set_missing.py +++ b/examples/python/grib_set_missing.py @@ -9,8 +9,8 @@ # nor does it submit to any jurisdiction. # -import traceback import sys +import traceback from eccodes import * diff --git a/examples/python/grib_set_pv.py b/examples/python/grib_set_pv.py index e85f174e7..f08f67bfc 100644 --- a/examples/python/grib_set_pv.py +++ b/examples/python/grib_set_pv.py @@ -9,8 +9,8 @@ # nor does it submit to any jurisdiction. # -import traceback import sys +import traceback from eccodes import * diff --git a/examples/python/gts_get_keys.py b/examples/python/gts_get_keys.py index 1c9932889..2404b3100 100644 --- a/examples/python/gts_get_keys.py +++ b/examples/python/gts_get_keys.py @@ -14,8 +14,9 @@ # from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/keys_iterator_gts.py b/examples/python/keys_iterator_gts.py index 409546e8a..28f8fdeac 100644 --- a/examples/python/keys_iterator_gts.py +++ b/examples/python/keys_iterator_gts.py @@ -10,8 +10,9 @@ # from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/metar_get_keys.py b/examples/python/metar_get_keys.py index 292b82450..e9fa1fb52 100644 --- a/examples/python/metar_get_keys.py +++ b/examples/python/metar_get_keys.py @@ -15,8 +15,9 @@ # from __future__ import print_function -import traceback + import sys +import traceback from eccodes import * diff --git a/examples/python/prepBufr_create_defs.py b/examples/python/prepBufr_create_defs.py index 05aeb52c2..9a725b2c4 100644 --- a/examples/python/prepBufr_create_defs.py +++ b/examples/python/prepBufr_create_defs.py @@ -7,11 +7,11 @@ # granted to it by virtue of its status as an intergovernmental organisation # nor does it submit to any jurisdiction. -import traceback -import sys +import getopt import os import re -import getopt +import sys +import traceback from eccodes import * From 6198f46ba2c446418d62a5a766069ad1bab84e25 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 15 Sep 2021 20:36:30 +0100 Subject: [PATCH 628/683] Examples: Run flake8 checks --- examples/python/bufr_copy_data2.py | 23 ++++++++-------- examples/python/bufr_ecc-869.py | 26 +++++++++++-------- examples/python/bufr_encode_flight.py | 1 + examples/python/bufr_read_sample.py | 1 + examples/python/bufr_read_tropical_cyclone.py | 4 +-- examples/python/grib_clone.py | 4 +-- examples/python/grib_print_data.py | 2 +- examples/python/metar_get_keys.py | 1 + 8 files changed, 34 insertions(+), 28 deletions(-) diff --git a/examples/python/bufr_copy_data2.py b/examples/python/bufr_copy_data2.py index 609cc725a..bf9c49c94 100644 --- a/examples/python/bufr_copy_data2.py +++ b/examples/python/bufr_copy_data2.py @@ -23,29 +23,30 @@ from eccodes import * VERBOSE = 1 # verbose error reporting + def example(input_filename, output_filename): f = open(input_filename, 'rb') ibufrin = codes_bufr_new_from_file(f) f.close() # Need to unpack to get delayed replications and reference values from input - codes_set(ibufrin,'unpack',1) - references=codes_get_array(ibufrin,'inputOverriddenReferenceValues') - replication=codes_get_array(ibufrin,'delayedDescriptorReplicationFactor') + codes_set(ibufrin, 'unpack', 1) + references = codes_get_array(ibufrin, 'inputOverriddenReferenceValues') + replication = codes_get_array(ibufrin, 'delayedDescriptorReplicationFactor') - ibufrout=codes_clone(ibufrin) + ibufrout = codes_clone(ibufrin) # Copy over to output - codes_set_array(ibufrout,'inputOverriddenReferenceValues',references) - codes_set_array(ibufrout,'inputDelayedDescriptorReplicationFactor',replication) + codes_set_array(ibufrout, 'inputOverriddenReferenceValues', references) + codes_set_array(ibufrout, 'inputDelayedDescriptorReplicationFactor', replication) # Keep all original descriptors and add 'meanWindDirectionForSurfaceTo1500M' (011044) - ivalues=( 203014, 7030, 7031, 203255, 307080, 11044, ) - codes_set_array(ibufrout,'unexpandedDescriptors',ivalues) + ivalues = (203014, 7030, 7031, 203255, 307080, 11044,) + codes_set_array(ibufrout, 'unexpandedDescriptors', ivalues) - codes_bufr_copy_data ( ibufrin,ibufrout) + codes_bufr_copy_data(ibufrin, ibufrout) - outfile=open(output_filename, 'wb') - codes_write(ibufrout,outfile) + outfile = open(output_filename, 'wb') + codes_write(ibufrout, outfile) outfile.close() codes_release(ibufrin) diff --git a/examples/python/bufr_ecc-869.py b/examples/python/bufr_ecc-869.py index 3a35d5ebe..06db87948 100644 --- a/examples/python/bufr_ecc-869.py +++ b/examples/python/bufr_ecc-869.py @@ -11,13 +11,16 @@ from eccodes import * OUTPUT_FILENAME = 'outfile_ecc_869_test.bufr' +VERBOSE = 1 # verbose error reporting + + def bufr_encode(): ibufr = codes_bufr_new_from_samples('BUFR3_local') - ivalues = (0, 0, 0, 0 ,) + ivalues = (0, 0, 0, 0,) codes_set_array(ibufr, 'inputShortDelayedDescriptorReplicationFactor', ivalues) SIZE_OF_BMP = 41 - bitMask = [1]*SIZE_OF_BMP + bitMask = [1] * SIZE_OF_BMP bitMask[0] = 0 # marineObservingPlatformIdentifier bitMask[37] = 0 # pressureReducedToMeanSeaLevel codes_set_array(ibufr, 'inputDataPresentIndicator', bitMask) @@ -44,7 +47,7 @@ def bufr_encode(): codes_set(ibufr, 'localHour', 21) codes_set(ibufr, 'localMinute', 4) codes_set(ibufr, 'localSecond', 0) - codes_set(ibufr, 'ident',' 3101544') + codes_set(ibufr, 'ident', ' 3101544') codes_set(ibufr, 'rdbtimeDay', 21) codes_set(ibufr, 'rdbtimeHour', 21) codes_set(ibufr, 'rdbtimeMinute', 26) @@ -71,15 +74,12 @@ def bufr_encode(): # Create the structure of the data section codes_set_array(ibufr, 'unexpandedDescriptors', - (315009, - 222000, 236000, - 101000 + SIZE_OF_BMP, 31031, - 33007, 33007) + (315009, 222000, 236000, 101000 + SIZE_OF_BMP, 31031, 33007, 33007) ) codes_set(ibufr, 'marineObservingPlatformIdentifier', 3101544) codes_set(ibufr, 'marineObservingPlatformIdentifier->percentConfidence', 44) - codes_set(ibufr, 'longStationName','SIO Lagrangian Drifter Lab') + codes_set(ibufr, 'longStationName', 'SIO Lagrangian Drifter Lab') codes_set(ibufr, 'dataBuoyType', 1) codes_set(ibufr, '#1#timeSignificance', 26) codes_set(ibufr, '#1#year', 2018) @@ -89,7 +89,7 @@ def bufr_encode(): codes_set(ibufr, '#1#minute', 4) codes_set(ibufr, 'latitude', -3.598198000000000008e+01) codes_set(ibufr, 'longitude', -4.484317000000000064e+01) - codes_set(ibufr, 'platformTransmitterIdNumber',' 300234065315740') + codes_set(ibufr, 'platformTransmitterIdNumber', ' 300234065315740') codes_set(ibufr, 'dataCollectionLocationSystem', 8) codes_set(ibufr, 'directionOfMotionOfMovingObservingPlatform', CODES_MISSING_LONG) codes_set(ibufr, 'platformDriftSpeed', CODES_MISSING_DOUBLE) @@ -122,7 +122,7 @@ def bufr_encode(): outfile = open(OUTPUT_FILENAME, 'wb') codes_write(ibufr, outfile) - print ("Created output BUFR file ",OUTPUT_FILENAME) + print("Created output BUFR file ", OUTPUT_FILENAME) codes_release(ibufr) @@ -130,7 +130,11 @@ def main(): try: bufr_encode() except CodesInternalError as err: - traceback.print_exc(file=sys.stderr) + if VERBOSE: + traceback.print_exc(file=sys.stderr) + else: + sys.stderr.write(err.msg + '\n') + return 1 diff --git a/examples/python/bufr_encode_flight.py b/examples/python/bufr_encode_flight.py index 2b61058b3..53f2e7f0d 100644 --- a/examples/python/bufr_encode_flight.py +++ b/examples/python/bufr_encode_flight.py @@ -21,6 +21,7 @@ from eccodes import * VERBOSE = 1 # verbose error reporting + def parse_date(x): return datetime.strptime(x.decode('ascii'), '%Y%m%d') diff --git a/examples/python/bufr_read_sample.py b/examples/python/bufr_read_sample.py index 51e234d0b..7e51c92b1 100644 --- a/examples/python/bufr_read_sample.py +++ b/examples/python/bufr_read_sample.py @@ -22,6 +22,7 @@ from eccodes import * VERBOSE = 1 # verbose error reporting + def get_key_value(msgid, key): v = codes_get(msgid, key) if v == CODES_MISSING_DOUBLE or v == CODES_MISSING_LONG: diff --git a/examples/python/bufr_read_tropical_cyclone.py b/examples/python/bufr_read_tropical_cyclone.py index 2a534b380..2f903bfe8 100644 --- a/examples/python/bufr_read_tropical_cyclone.py +++ b/examples/python/bufr_read_tropical_cyclone.py @@ -173,9 +173,7 @@ def example(): for k in range(len(memberNumber)): data[k][i] = [lat[k], lon[k], press[k], latWind[k], lonWind[k], wind10m[k]] - - # ---------------------------------------- Print the values ------------- - + # ---------------------------------------- Print the values ------------- for m in range(len(memberNumber)): print("== Member %d" % memberNumber[m]) print("step latitude longitude pressure latitude longitude wind") diff --git a/examples/python/grib_clone.py b/examples/python/grib_clone.py index 624bf2618..29ddd5835 100644 --- a/examples/python/grib_clone.py +++ b/examples/python/grib_clone.py @@ -26,8 +26,8 @@ def example(): gid = codes_grib_new_from_file(fin) - assert codes_is_missing(gid, 'Ni') == False - assert codes_is_missing(gid, 'Nj') == False + assert not codes_is_missing(gid, 'Ni') + assert not codes_is_missing(gid, 'Nj') nx = codes_get(gid, 'Ni') ny = codes_get(gid, 'Nj') diff --git a/examples/python/grib_print_data.py b/examples/python/grib_print_data.py index a3bd70b71..f16b0ef6c 100644 --- a/examples/python/grib_print_data.py +++ b/examples/python/grib_print_data.py @@ -36,7 +36,7 @@ def example(): # Example of accessing specific elements from data values # Get first, middle and last elements - indexes = [0, int(num_vals/2), num_vals-1] + indexes = [0, int(num_vals / 2), num_vals - 1] elems = codes_get_double_elements(gid, 'values', indexes) codes_release(gid) diff --git a/examples/python/metar_get_keys.py b/examples/python/metar_get_keys.py index e9fa1fb52..04fdb5658 100644 --- a/examples/python/metar_get_keys.py +++ b/examples/python/metar_get_keys.py @@ -24,6 +24,7 @@ from eccodes import * INPUT = '../../data/metar/metar.txt' VERBOSE = 1 # verbose error reporting + def print_keys(msg_id): keys = ['CCCC', 'latitude', 'longitude', 'dateTime', 'elevation', 'temperature', 'dewPointTemperature', 'qnh'] From 280f144111baedf9c872d932abdd9566a28c7c26 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 15 Sep 2021 20:45:34 +0100 Subject: [PATCH 629/683] Examples: Run black formatter --- examples/python/binary_message.py | 6 +- examples/python/bufr_attributes.py | 32 ++- examples/python/bufr_clone.py | 12 +- examples/python/bufr_copy_data2.py | 29 ++- examples/python/bufr_copy_data3.py | 20 +- examples/python/bufr_ecc-448.py | 8 +- examples/python/bufr_ecc-869.py | 197 +++++++++--------- examples/python/bufr_encode_flight.py | 85 ++++---- examples/python/bufr_expanded.py | 12 +- examples/python/bufr_get_keys.py | 36 ++-- examples/python/bufr_keys_iterator.py | 6 +- examples/python/bufr_read_header.py | 22 +- examples/python/bufr_read_sample.py | 38 ++-- examples/python/bufr_read_scatterometer.py | 12 +- examples/python/bufr_read_synop.py | 36 ++-- examples/python/bufr_read_temp.py | 30 ++- examples/python/bufr_read_tropical_cyclone.py | 138 ++++++++---- examples/python/bufr_set_keys.py | 18 +- examples/python/bufr_subset.py | 22 +- examples/python/get_product_kind.py | 8 +- examples/python/grib_ccsds.py | 14 +- examples/python/grib_clone.py | 20 +- examples/python/grib_count_messages.py | 41 ++-- examples/python/grib_get_keys.py | 35 ++-- examples/python/grib_get_message_offset.py | 6 +- examples/python/grib_index.py | 16 +- examples/python/grib_iterator.py | 4 +- examples/python/grib_iterator_bitmap.py | 12 +- examples/python/grib_keys_iterator.py | 8 +- examples/python/grib_ls_JSON.py | 44 ++-- examples/python/grib_multi_write.py | 10 +- examples/python/grib_nearest.py | 9 +- examples/python/grib_print_data.py | 14 +- examples/python/grib_read_sample.py | 24 +-- examples/python/grib_samples.py | 28 +-- examples/python/grib_set_bitmap.py | 18 +- examples/python/grib_set_keys.py | 64 +++--- examples/python/grib_set_missing.py | 18 +- examples/python/grib_set_pv.py | 22 +- examples/python/gts_get_keys.py | 10 +- examples/python/keys_iterator_gts.py | 4 +- examples/python/metar_get_keys.py | 20 +- 42 files changed, 652 insertions(+), 556 deletions(-) diff --git a/examples/python/binary_message.py b/examples/python/binary_message.py index 9f269646e..66a2266c2 100644 --- a/examples/python/binary_message.py +++ b/examples/python/binary_message.py @@ -18,8 +18,8 @@ VERBOSE = 1 # verbose error reporting def example(): - f = open(sys.argv[1], 'rb') - fout = open(sys.argv[2], 'wb') + f = open(sys.argv[1], "rb") + fout = open(sys.argv[2], "wb") while 1: gid = codes_grib_new_from_file(f) @@ -45,7 +45,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/bufr_attributes.py b/examples/python/bufr_attributes.py index 61f504c0a..82f54777d 100644 --- a/examples/python/bufr_attributes.py +++ b/examples/python/bufr_attributes.py @@ -21,24 +21,18 @@ import traceback from eccodes import * -INPUT = '../../data/bufr/syno_multi.bufr' +INPUT = "../../data/bufr/syno_multi.bufr" VERBOSE = 1 # verbose error reporting def example(): # open bufr file - f = open(INPUT, 'rb') + f = open(INPUT, "rb") cnt = 0 # define the attributes to be printed (see BUFR code table B) - attrs = [ - 'code', - 'units', - 'scale', - 'reference', - 'width' - ] + attrs = ["code", "units", "scale", "reference", "width"] # loop for the messages in the file while 1: @@ -51,16 +45,16 @@ def example(): # we need to instruct ecCodes to expand all the descriptors # i.e. unpack the data values - codes_set(bufr, 'unpack', 1) + codes_set(bufr, "unpack", 1) # -------------------------------------------------------------- # We will read the value and all the attributes available for # the 2m temperature. # -------------------------------------------------------------- # get the value - key = 'airTemperatureAt2M' + key = "airTemperatureAt2M" try: - print(' %s: %s' % (key, codes_get(bufr, key))) + print(" %s: %s" % (key, codes_get(bufr, key))) except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) @@ -68,9 +62,9 @@ def example(): # are keys as well. Their name is constructed like: # keyname->attributename for attr in attrs: - key = 'airTemperatureAt2M' + "->" + attr + key = "airTemperatureAt2M" + "->" + attr try: - print(' %s: %s' % (key, codes_get(bufr, key))) + print(" %s: %s" % (key, codes_get(bufr, key))) except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) @@ -81,17 +75,17 @@ def example(): # ------------------------------------------------------------------ # get the value - key = 'airTemperatureAt2M->percentConfidence' + key = "airTemperatureAt2M->percentConfidence" try: - print(' %s: %s' % (key, codes_get(bufr, key))) + print(" %s: %s" % (key, codes_get(bufr, key))) except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) # print the values of the attributes of the key. for attr in attrs: - key = 'airTemperatureAt2M->percentConfidence' + "->" + attr + key = "airTemperatureAt2M->percentConfidence" + "->" + attr try: - print(' %s: %s' % (key, codes_get(bufr, key))) + print(" %s: %s" % (key, codes_get(bufr, key))) except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) @@ -111,7 +105,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/bufr_clone.py b/examples/python/bufr_clone.py index f3384b171..3e36f6faa 100644 --- a/examples/python/bufr_clone.py +++ b/examples/python/bufr_clone.py @@ -22,17 +22,17 @@ import traceback from eccodes import * -INPUT = '../../data/bufr/syno_1.bufr' -OUTPUT = 'bufr_clone_test_p.clone.bufr' +INPUT = "../../data/bufr/syno_1.bufr" +OUTPUT = "bufr_clone_test_p.clone.bufr" VERBOSE = 1 # verbose error reporting def example(): # open BUFR file - fin = open(INPUT, 'rb') + fin = open(INPUT, "rb") # open output BUFR file - fout = open(OUTPUT, 'wb') + fout = open(OUTPUT, "wb") # get handle for message bufr = codes_bufr_new_from_file(fin) @@ -44,7 +44,7 @@ def example(): clone_id = codes_clone(bufr) # this is the place where you may wish to modify the clone - codes_set(clone_id, 'bufrHeaderCentre', centre) + codes_set(clone_id, "bufrHeaderCentre", centre) # write the cloned message to a file codes_write(clone_id, fout) @@ -66,7 +66,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/bufr_copy_data2.py b/examples/python/bufr_copy_data2.py index bf9c49c94..aa36f4ee4 100644 --- a/examples/python/bufr_copy_data2.py +++ b/examples/python/bufr_copy_data2.py @@ -25,27 +25,34 @@ VERBOSE = 1 # verbose error reporting def example(input_filename, output_filename): - f = open(input_filename, 'rb') + f = open(input_filename, "rb") ibufrin = codes_bufr_new_from_file(f) f.close() # Need to unpack to get delayed replications and reference values from input - codes_set(ibufrin, 'unpack', 1) - references = codes_get_array(ibufrin, 'inputOverriddenReferenceValues') - replication = codes_get_array(ibufrin, 'delayedDescriptorReplicationFactor') + codes_set(ibufrin, "unpack", 1) + references = codes_get_array(ibufrin, "inputOverriddenReferenceValues") + replication = codes_get_array(ibufrin, "delayedDescriptorReplicationFactor") ibufrout = codes_clone(ibufrin) # Copy over to output - codes_set_array(ibufrout, 'inputOverriddenReferenceValues', references) - codes_set_array(ibufrout, 'inputDelayedDescriptorReplicationFactor', replication) + codes_set_array(ibufrout, "inputOverriddenReferenceValues", references) + codes_set_array(ibufrout, "inputDelayedDescriptorReplicationFactor", replication) # Keep all original descriptors and add 'meanWindDirectionForSurfaceTo1500M' (011044) - ivalues = (203014, 7030, 7031, 203255, 307080, 11044,) - codes_set_array(ibufrout, 'unexpandedDescriptors', ivalues) + ivalues = ( + 203014, + 7030, + 7031, + 203255, + 307080, + 11044, + ) + codes_set_array(ibufrout, "unexpandedDescriptors", ivalues) codes_bufr_copy_data(ibufrin, ibufrout) - outfile = open(output_filename, 'wb') + outfile = open(output_filename, "wb") codes_write(ibufrout, outfile) outfile.close() @@ -55,7 +62,7 @@ def example(input_filename, output_filename): def main(): if len(sys.argv) < 3: - print('Usage: ', sys.argv[0], ' bufr_in bufr_out', file=sys.stderr) + print("Usage: ", sys.argv[0], " bufr_in bufr_out", file=sys.stderr) sys.exit(1) input_filename = sys.argv[1] @@ -67,7 +74,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/bufr_copy_data3.py b/examples/python/bufr_copy_data3.py index 10b9dacf0..9f02981c7 100644 --- a/examples/python/bufr_copy_data3.py +++ b/examples/python/bufr_copy_data3.py @@ -26,21 +26,21 @@ WIGOS_SEQ = 301150 def example(input_filename, output_filename): - f = open(input_filename, 'rb') + f = open(input_filename, "rb") ibufrin = codes_bufr_new_from_file(f) f.close() - codes_set(ibufrin, 'unpack', 1) - inUE = codes_get_array(ibufrin, 'unexpandedDescriptors').tolist() + codes_set(ibufrin, "unpack", 1) + inUE = codes_get_array(ibufrin, "unexpandedDescriptors").tolist() nsubsets = 2 - ibufrout = codes_bufr_new_from_samples('BUFR4') + ibufrout = codes_bufr_new_from_samples("BUFR4") # Update the unexpandedDescriptors to add the WIGOS data at the beginning outUE = inUE outUE.insert(0, WIGOS_SEQ) - codes_set(ibufrout, 'masterTablesVersionNumber', 28) - codes_set(ibufrout, 'numberOfSubsets', nsubsets) - codes_set_array(ibufrout, 'unexpandedDescriptors', outUE) + codes_set(ibufrout, "masterTablesVersionNumber", 28) + codes_set(ibufrout, "numberOfSubsets", nsubsets) + codes_set_array(ibufrout, "unexpandedDescriptors", outUE) # Some dummy WIGOS info for i in range(0, nsubsets): @@ -50,7 +50,7 @@ def example(input_filename, output_filename): # Copy across other data in input codes_bufr_copy_data(ibufrin, ibufrout) - outfile = open(output_filename, 'wb') + outfile = open(output_filename, "wb") codes_write(ibufrout, outfile) outfile.close() @@ -60,7 +60,7 @@ def example(input_filename, output_filename): def main(): if len(sys.argv) < 3: - print('Usage: ', sys.argv[0], ' bufr_in bufr_out', file=sys.stderr) + print("Usage: ", sys.argv[0], " bufr_in bufr_out", file=sys.stderr) return 1 input_filename = sys.argv[1] @@ -72,7 +72,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 return 0 diff --git a/examples/python/bufr_ecc-448.py b/examples/python/bufr_ecc-448.py index 9e828af0f..a864aeb6e 100644 --- a/examples/python/bufr_ecc-448.py +++ b/examples/python/bufr_ecc-448.py @@ -14,13 +14,13 @@ import traceback from eccodes import * -INPUT = '../../data/bufr/syno_1.bufr' +INPUT = "../../data/bufr/syno_1.bufr" VERBOSE = 1 # verbose error reporting def example(): # open bufr file - f = open(INPUT, 'rb') + f = open(INPUT, "rb") cnt = 0 @@ -38,7 +38,7 @@ def example(): the_message = codes_get_message(bufr) newbufr = codes_new_from_message(the_message) - codes_set(newbufr, 'unpack', 1) + codes_set(newbufr, "unpack", 1) # get BUFR key iterator iterid = codes_bufr_keys_iterator_new(newbufr) @@ -68,7 +68,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/bufr_ecc-869.py b/examples/python/bufr_ecc-869.py index 06db87948..e39103aaa 100644 --- a/examples/python/bufr_ecc-869.py +++ b/examples/python/bufr_ecc-869.py @@ -9,118 +9,125 @@ import traceback from eccodes import * -OUTPUT_FILENAME = 'outfile_ecc_869_test.bufr' +OUTPUT_FILENAME = "outfile_ecc_869_test.bufr" VERBOSE = 1 # verbose error reporting def bufr_encode(): - ibufr = codes_bufr_new_from_samples('BUFR3_local') - ivalues = (0, 0, 0, 0,) - codes_set_array(ibufr, 'inputShortDelayedDescriptorReplicationFactor', ivalues) + ibufr = codes_bufr_new_from_samples("BUFR3_local") + ivalues = ( + 0, + 0, + 0, + 0, + ) + codes_set_array(ibufr, "inputShortDelayedDescriptorReplicationFactor", ivalues) SIZE_OF_BMP = 41 bitMask = [1] * SIZE_OF_BMP bitMask[0] = 0 # marineObservingPlatformIdentifier bitMask[37] = 0 # pressureReducedToMeanSeaLevel - codes_set_array(ibufr, 'inputDataPresentIndicator', bitMask) + codes_set_array(ibufr, "inputDataPresentIndicator", bitMask) - codes_set(ibufr, 'edition', 3) - codes_set(ibufr, 'masterTableNumber', 0) - codes_set(ibufr, 'bufrHeaderSubCentre', 0) - codes_set(ibufr, 'bufrHeaderCentre', 98) - codes_set(ibufr, 'updateSequenceNumber', 0) - codes_set(ibufr, 'dataCategory', 1) - codes_set(ibufr, 'dataSubCategory', 182) - codes_set(ibufr, 'masterTablesVersionNumber', 22) - codes_set(ibufr, 'localTablesVersionNumber', 0) - codes_set(ibufr, 'typicalYearOfCentury', 18) - codes_set(ibufr, 'typicalMonth', 11) - codes_set(ibufr, 'typicalDay', 21) - codes_set(ibufr, 'typicalHour', 21) - codes_set(ibufr, 'typicalMinute', 4) - codes_set(ibufr, 'rdbType', 1) - codes_set(ibufr, 'oldSubtype', 182) - codes_set(ibufr, 'localYear', 2018) - codes_set(ibufr, 'localMonth', 11) - codes_set(ibufr, 'localDay', 21) - codes_set(ibufr, 'localHour', 21) - codes_set(ibufr, 'localMinute', 4) - codes_set(ibufr, 'localSecond', 0) - codes_set(ibufr, 'ident', ' 3101544') - codes_set(ibufr, 'rdbtimeDay', 21) - codes_set(ibufr, 'rdbtimeHour', 21) - codes_set(ibufr, 'rdbtimeMinute', 26) - codes_set(ibufr, 'rdbtimeSecond', 59) - codes_set(ibufr, 'rectimeDay', 10) - codes_set(ibufr, 'rectimeHour', 10) - codes_set(ibufr, 'rectimeMinute', 0) - codes_set(ibufr, 'rectimeSecond', 0) - codes_set(ibufr, 'correction1', 0) - codes_set(ibufr, 'correction1Part', 0) - codes_set(ibufr, 'correction2', 0) - codes_set(ibufr, 'correction2Part', 0) - codes_set(ibufr, 'correction3', 0) - codes_set(ibufr, 'correction3Part', 0) - codes_set(ibufr, 'correction4', 0) - codes_set(ibufr, 'correction4Part', 0) - codes_set(ibufr, 'qualityControl', 70) - codes_set(ibufr, 'newSubtype', 0) - codes_set(ibufr, 'numberOfSubsets', 1) - codes_set(ibufr, 'localLatitude', -3.598198000000000008e+01) - codes_set(ibufr, 'localLongitude', -4.484317000000000064e+01) - codes_set(ibufr, 'observedData', 1) - codes_set(ibufr, 'compressedData', 0) + codes_set(ibufr, "edition", 3) + codes_set(ibufr, "masterTableNumber", 0) + codes_set(ibufr, "bufrHeaderSubCentre", 0) + codes_set(ibufr, "bufrHeaderCentre", 98) + codes_set(ibufr, "updateSequenceNumber", 0) + codes_set(ibufr, "dataCategory", 1) + codes_set(ibufr, "dataSubCategory", 182) + codes_set(ibufr, "masterTablesVersionNumber", 22) + codes_set(ibufr, "localTablesVersionNumber", 0) + codes_set(ibufr, "typicalYearOfCentury", 18) + codes_set(ibufr, "typicalMonth", 11) + codes_set(ibufr, "typicalDay", 21) + codes_set(ibufr, "typicalHour", 21) + codes_set(ibufr, "typicalMinute", 4) + codes_set(ibufr, "rdbType", 1) + codes_set(ibufr, "oldSubtype", 182) + codes_set(ibufr, "localYear", 2018) + codes_set(ibufr, "localMonth", 11) + codes_set(ibufr, "localDay", 21) + codes_set(ibufr, "localHour", 21) + codes_set(ibufr, "localMinute", 4) + codes_set(ibufr, "localSecond", 0) + codes_set(ibufr, "ident", " 3101544") + codes_set(ibufr, "rdbtimeDay", 21) + codes_set(ibufr, "rdbtimeHour", 21) + codes_set(ibufr, "rdbtimeMinute", 26) + codes_set(ibufr, "rdbtimeSecond", 59) + codes_set(ibufr, "rectimeDay", 10) + codes_set(ibufr, "rectimeHour", 10) + codes_set(ibufr, "rectimeMinute", 0) + codes_set(ibufr, "rectimeSecond", 0) + codes_set(ibufr, "correction1", 0) + codes_set(ibufr, "correction1Part", 0) + codes_set(ibufr, "correction2", 0) + codes_set(ibufr, "correction2Part", 0) + codes_set(ibufr, "correction3", 0) + codes_set(ibufr, "correction3Part", 0) + codes_set(ibufr, "correction4", 0) + codes_set(ibufr, "correction4Part", 0) + codes_set(ibufr, "qualityControl", 70) + codes_set(ibufr, "newSubtype", 0) + codes_set(ibufr, "numberOfSubsets", 1) + codes_set(ibufr, "localLatitude", -3.598198000000000008e01) + codes_set(ibufr, "localLongitude", -4.484317000000000064e01) + codes_set(ibufr, "observedData", 1) + codes_set(ibufr, "compressedData", 0) # Create the structure of the data section - codes_set_array(ibufr, 'unexpandedDescriptors', - (315009, 222000, 236000, 101000 + SIZE_OF_BMP, 31031, 33007, 33007) + codes_set_array( + ibufr, + "unexpandedDescriptors", + (315009, 222000, 236000, 101000 + SIZE_OF_BMP, 31031, 33007, 33007), ) - codes_set(ibufr, 'marineObservingPlatformIdentifier', 3101544) - codes_set(ibufr, 'marineObservingPlatformIdentifier->percentConfidence', 44) - codes_set(ibufr, 'longStationName', 'SIO Lagrangian Drifter Lab') - codes_set(ibufr, 'dataBuoyType', 1) - codes_set(ibufr, '#1#timeSignificance', 26) - codes_set(ibufr, '#1#year', 2018) - codes_set(ibufr, '#1#month', 11) - codes_set(ibufr, '#1#day', 21) - codes_set(ibufr, '#1#hour', 21) - codes_set(ibufr, '#1#minute', 4) - codes_set(ibufr, 'latitude', -3.598198000000000008e+01) - codes_set(ibufr, 'longitude', -4.484317000000000064e+01) - codes_set(ibufr, 'platformTransmitterIdNumber', ' 300234065315740') - codes_set(ibufr, 'dataCollectionLocationSystem', 8) - codes_set(ibufr, 'directionOfMotionOfMovingObservingPlatform', CODES_MISSING_LONG) - codes_set(ibufr, 'platformDriftSpeed', CODES_MISSING_DOUBLE) - codes_set(ibufr, 'qualityOfBuoySatelliteTransmission', 0) - codes_set(ibufr, 'qualityOfBuoyLocation', 0) - codes_set(ibufr, 'locationQualityClassRangeOfRadiusOf66Confidence', 3) - codes_set(ibufr, 'batteryVoltageLargeRange', 1.020000000000000107e+01) - codes_set(ibufr, 'drogueType', 1) - codes_set(ibufr, 'lagrangianDrifterDrogueStatus', 2) - codes_set(ibufr, 'drogueDepth', 15) - codes_set(ibufr, 'lagrangianDrifterSubmergenceTimeSubmerged', 30) - codes_set(ibufr, '#2#timeSignificance', 25) - codes_set(ibufr, '#2#year', 2018) - codes_set(ibufr, '#2#month', 11) - codes_set(ibufr, '#2#day', 21) - codes_set(ibufr, '#2#hour', 21) - codes_set(ibufr, '#2#minute', 4) - codes_set_missing(ibufr, 'temperatureObservationPrecision') - codes_set(ibufr, 'oceanographicWaterTemperature', 2.914499999999999886e+02) - codes_set_missing(ibufr, 'methodOfSalinityOrDepthMeasurement') - codes_set(ibufr, 'seaSurfaceSalinity', CODES_MISSING_DOUBLE) - codes_set(ibufr, 'surfaceType', CODES_MISSING_LONG) - codes_set(ibufr, 'iceThickness', CODES_MISSING_DOUBLE) - codes_set(ibufr, 'nonCoordinatePressure', CODES_MISSING_DOUBLE) - codes_set(ibufr, 'pressureReducedToMeanSeaLevel', 1.021700000000000000e+05) - codes_set(ibufr, 'pressureReducedToMeanSeaLevel->percentConfidence', 45) + codes_set(ibufr, "marineObservingPlatformIdentifier", 3101544) + codes_set(ibufr, "marineObservingPlatformIdentifier->percentConfidence", 44) + codes_set(ibufr, "longStationName", "SIO Lagrangian Drifter Lab") + codes_set(ibufr, "dataBuoyType", 1) + codes_set(ibufr, "#1#timeSignificance", 26) + codes_set(ibufr, "#1#year", 2018) + codes_set(ibufr, "#1#month", 11) + codes_set(ibufr, "#1#day", 21) + codes_set(ibufr, "#1#hour", 21) + codes_set(ibufr, "#1#minute", 4) + codes_set(ibufr, "latitude", -3.598198000000000008e01) + codes_set(ibufr, "longitude", -4.484317000000000064e01) + codes_set(ibufr, "platformTransmitterIdNumber", " 300234065315740") + codes_set(ibufr, "dataCollectionLocationSystem", 8) + codes_set(ibufr, "directionOfMotionOfMovingObservingPlatform", CODES_MISSING_LONG) + codes_set(ibufr, "platformDriftSpeed", CODES_MISSING_DOUBLE) + codes_set(ibufr, "qualityOfBuoySatelliteTransmission", 0) + codes_set(ibufr, "qualityOfBuoyLocation", 0) + codes_set(ibufr, "locationQualityClassRangeOfRadiusOf66Confidence", 3) + codes_set(ibufr, "batteryVoltageLargeRange", 1.020000000000000107e01) + codes_set(ibufr, "drogueType", 1) + codes_set(ibufr, "lagrangianDrifterDrogueStatus", 2) + codes_set(ibufr, "drogueDepth", 15) + codes_set(ibufr, "lagrangianDrifterSubmergenceTimeSubmerged", 30) + codes_set(ibufr, "#2#timeSignificance", 25) + codes_set(ibufr, "#2#year", 2018) + codes_set(ibufr, "#2#month", 11) + codes_set(ibufr, "#2#day", 21) + codes_set(ibufr, "#2#hour", 21) + codes_set(ibufr, "#2#minute", 4) + codes_set_missing(ibufr, "temperatureObservationPrecision") + codes_set(ibufr, "oceanographicWaterTemperature", 2.914499999999999886e02) + codes_set_missing(ibufr, "methodOfSalinityOrDepthMeasurement") + codes_set(ibufr, "seaSurfaceSalinity", CODES_MISSING_DOUBLE) + codes_set(ibufr, "surfaceType", CODES_MISSING_LONG) + codes_set(ibufr, "iceThickness", CODES_MISSING_DOUBLE) + codes_set(ibufr, "nonCoordinatePressure", CODES_MISSING_DOUBLE) + codes_set(ibufr, "pressureReducedToMeanSeaLevel", 1.021700000000000000e05) + codes_set(ibufr, "pressureReducedToMeanSeaLevel->percentConfidence", 45) # Encode the keys back in the data section - codes_set(ibufr, 'pack', 1) + codes_set(ibufr, "pack", 1) - outfile = open(OUTPUT_FILENAME, 'wb') + outfile = open(OUTPUT_FILENAME, "wb") codes_write(ibufr, outfile) print("Created output BUFR file ", OUTPUT_FILENAME) codes_release(ibufr) @@ -133,7 +140,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/bufr_encode_flight.py b/examples/python/bufr_encode_flight.py index 53f2e7f0d..d3cd2a997 100644 --- a/examples/python/bufr_encode_flight.py +++ b/examples/python/bufr_encode_flight.py @@ -23,49 +23,54 @@ VERBOSE = 1 # verbose error reporting def parse_date(x): - return datetime.strptime(x.decode('ascii'), '%Y%m%d') + return datetime.strptime(x.decode("ascii"), "%Y%m%d") def parse_time(x): - return datetime.strptime(x.decode('ascii'), '%H:%M:%S') + return datetime.strptime(x.decode("ascii"), "%H:%M:%S") def example(csvfile, input_filename, output_filename): - fbufrin = open(input_filename, 'rb') - fbufrout = open(output_filename, 'wb') + fbufrin = open(input_filename, "rb") + fbufrout = open(output_filename, "wb") - print('Using ecCodes version: ', codes_get_api_version()) + print("Using ecCodes version: ", codes_get_api_version()) # The first line in the CSV has the column names - print('Reading input CSV file: ', csvfile) - data = np.genfromtxt(csvfile, delimiter=',', dtype=None, names=True, - converters={0: parse_date, 1: parse_time}) + print("Reading input CSV file: ", csvfile) + data = np.genfromtxt( + csvfile, + delimiter=",", + dtype=None, + names=True, + converters={0: parse_date, 1: parse_time}, + ) - ymd_column = data['ymd'] + ymd_column = data["ymd"] years = np.array([x.year for x in ymd_column]) months = np.array([x.month for x in ymd_column]) days = np.array([x.day for x in ymd_column]) - time_column = data['time'] + time_column = data["time"] hours = np.array([x.hour for x in time_column]) minutes = np.array([x.minute for x in time_column]) seconds = np.array([x.second for x in time_column]) - latitudes = data['latitude'] - longitudes = data['longitude'] - altitudes = data['altitude'] - pressures = data['pressure'] - windSpeeds = data['windSpeed'] - windDirections = data['windDirection'] - temperatures = data['temperature'] + latitudes = data["latitude"] + longitudes = data["longitude"] + altitudes = data["altitude"] + pressures = data["pressure"] + windSpeeds = data["windSpeed"] + windDirections = data["windDirection"] + temperatures = data["temperature"] - print('Reading input BUFR file: ', input_filename) + print("Reading input BUFR file: ", input_filename) bufr = codes_bufr_new_from_file(fbufrin) - codes_set(bufr, 'masterTablesVersionNumber', 24) - codes_set(bufr, 'localTablesVersionNumber', 0) - codes_set(bufr, 'compressedData', 1) - codes_set(bufr, 'numberOfSubsets', len(years)) + codes_set(bufr, "masterTablesVersionNumber", 24) + codes_set(bufr, "localTablesVersionNumber", 0) + codes_set(bufr, "compressedData", 1) + codes_set(bufr, "numberOfSubsets", len(years)) # unexpandedDescriptors and BufrTemplate can be set alternatively # to choose the template for the BUFR message @@ -73,26 +78,26 @@ def example(csvfile, input_filename, output_filename): # unexpandedDescriptors = [301051,4006,7002,10004,12001,11001,11002,11031,11032,11033,20041] # codes_set_array(bufr, 'unexpandedDescriptors', unexpandedDescriptors) - codes_set(bufr, 'BufrTemplate', 'aircraftReportWithSecondsAndPressure') + codes_set(bufr, "BufrTemplate", "aircraftReportWithSecondsAndPressure") - codes_set_array(bufr, 'year', years) - codes_set_array(bufr, 'month', months) - codes_set_array(bufr, 'day', days) - codes_set_array(bufr, 'hour', hours) - codes_set_array(bufr, 'minute', minutes) - codes_set_array(bufr, 'second', seconds) - codes_set_array(bufr, 'latitude', latitudes) - codes_set_array(bufr, 'longitude', longitudes) - codes_set_array(bufr, 'height', altitudes) - codes_set_array(bufr, 'nonCoordinatePressure', pressures) - codes_set_array(bufr, 'windSpeed', windSpeeds) - codes_set_array(bufr, 'windDirection', windDirections) - codes_set_array(bufr, 'airTemperature', temperatures) + codes_set_array(bufr, "year", years) + codes_set_array(bufr, "month", months) + codes_set_array(bufr, "day", days) + codes_set_array(bufr, "hour", hours) + codes_set_array(bufr, "minute", minutes) + codes_set_array(bufr, "second", seconds) + codes_set_array(bufr, "latitude", latitudes) + codes_set_array(bufr, "longitude", longitudes) + codes_set_array(bufr, "height", altitudes) + codes_set_array(bufr, "nonCoordinatePressure", pressures) + codes_set_array(bufr, "windSpeed", windSpeeds) + codes_set_array(bufr, "windDirection", windDirections) + codes_set_array(bufr, "airTemperature", temperatures) - codes_set(bufr, 'pack', 1) + codes_set(bufr, "pack", 1) codes_write(bufr, fbufrout) - print('Created output BUFR file: ', output_filename) + print("Created output BUFR file: ", output_filename) fbufrin.close() fbufrout.close() @@ -100,7 +105,7 @@ def example(csvfile, input_filename, output_filename): def main(): if len(sys.argv) < 4: - print('Usage: ', sys.argv[0], ' csv bufr_in bufr_out', file=sys.stderr) + print("Usage: ", sys.argv[0], " csv bufr_in bufr_out", file=sys.stderr) sys.exit(1) csv_filename = sys.argv[1] @@ -113,7 +118,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/bufr_expanded.py b/examples/python/bufr_expanded.py index b5cca1141..f954b8d73 100644 --- a/examples/python/bufr_expanded.py +++ b/examples/python/bufr_expanded.py @@ -20,13 +20,13 @@ import traceback from eccodes import * -INPUT = '../../data/bufr/syno_1.bufr' +INPUT = "../../data/bufr/syno_1.bufr" VERBOSE = 1 # verbose error reporting def example(): # open bufr file - f = open(INPUT, 'rb') + f = open(INPUT, "rb") cnt = 0 @@ -41,16 +41,16 @@ def example(): # we need to instruct ecCodes to expand all the descriptors # i.e. unpack the data values - codes_set(bufr, 'unpack', 1) + codes_set(bufr, "unpack", 1) # ---------------------------------- # get all the expanded data values # ---------------------------------- - key = 'numericValues' + key = "numericValues" # get size num = codes_get_size(bufr, key) - print(' size of %s is: %s' % (key, num)) + print(" size of %s is: %s" % (key, num)) # get values values = codes_get_array(bufr, key) @@ -73,7 +73,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/bufr_get_keys.py b/examples/python/bufr_get_keys.py index cf30075ff..46b752ada 100644 --- a/examples/python/bufr_get_keys.py +++ b/examples/python/bufr_get_keys.py @@ -21,13 +21,13 @@ import traceback from eccodes import * -INPUT = '../../data/bufr/syno_multi.bufr' +INPUT = "../../data/bufr/syno_multi.bufr" VERBOSE = 1 # verbose error reporting def example(): # open bufr file - f = open(INPUT, 'rb') + f = open(INPUT, "rb") cnt = 0 @@ -42,54 +42,54 @@ def example(): # we need to instruct ecCodes to expand all the descriptors # i.e. unpack the data values - codes_set(bufr, 'unpack', 1) + codes_set(bufr, "unpack", 1) # --------------------------------------------- # get values for keys holding a single value # --------------------------------------------- # Native type integer - key = 'blockNumber' + key = "blockNumber" try: - print(' %s: %s' % (key, codes_get(bufr, key))) + print(" %s: %s" % (key, codes_get(bufr, key))) except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) # Native type integer - key = 'stationNumber' + key = "stationNumber" try: - print(' %s: %s' % (key, codes_get(bufr, key))) + print(" %s: %s" % (key, codes_get(bufr, key))) except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) assert codes_is_missing(bufr, key) == 0 # Native type float - key = 'airTemperatureAt2M' + key = "airTemperatureAt2M" try: - print(' %s: %s' % (key, codes_get(bufr, key))) + print(" %s: %s" % (key, codes_get(bufr, key))) except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) assert codes_is_missing(bufr, key) == 0 # Native type string - key = 'typicalDate' + key = "typicalDate" try: - print(' %s: %s' % (key, codes_get(bufr, key))) + print(" %s: %s" % (key, codes_get(bufr, key))) except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) - assert codes_is_missing(bufr, 'relativeHumidity') == 1 - assert codes_is_missing(bufr, '#5#cloudAmount') == 1 + assert codes_is_missing(bufr, "relativeHumidity") == 1 + assert codes_is_missing(bufr, "#5#cloudAmount") == 1 # -------------------------------- # get values for an array # -------------------------------- # Native type integer - key = 'bufrdcExpandedDescriptors' + key = "bufrdcExpandedDescriptors" # get size num = codes_get_size(bufr, key) - print(' size of %s is: %s' % (key, num)) + print(" size of %s is: %s" % (key, num)) # get values values = codes_get_array(bufr, key) @@ -97,11 +97,11 @@ def example(): print(" %d %06d" % (i + 1, values[i])) # Native type float - key = 'numericValues' + key = "numericValues" # get size num = codes_get_size(bufr, key) - print(' size of %s is: %s' % (key, num)) + print(" size of %s is: %s" % (key, num)) # get values values = codes_get_array(bufr, key) @@ -124,7 +124,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/bufr_keys_iterator.py b/examples/python/bufr_keys_iterator.py index e2a89d5dd..9d9ef1c61 100644 --- a/examples/python/bufr_keys_iterator.py +++ b/examples/python/bufr_keys_iterator.py @@ -27,7 +27,7 @@ VERBOSE = 1 # verbose error reporting def example(INPUT): # open bufr file - f = open(INPUT, 'rb') + f = open(INPUT, "rb") cnt = 0 @@ -42,7 +42,7 @@ def example(INPUT): # we need to instruct ecCodes to expand all the descriptors # i.e. unpack the data values - codes_set(bufr, 'unpack', 1) + codes_set(bufr, "unpack", 1) # get BUFR key iterator iterid = codes_bufr_keys_iterator_new(bufr) @@ -72,7 +72,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/bufr_read_header.py b/examples/python/bufr_read_header.py index 058475b75..8327ae291 100644 --- a/examples/python/bufr_read_header.py +++ b/examples/python/bufr_read_header.py @@ -27,18 +27,18 @@ VERBOSE = 1 # verbose error reporting def example(INPUT): # open bufr file - f = open(INPUT, 'rb') + f = open(INPUT, "rb") # define the keys to be printed keys = [ - 'dataCategory', - 'dataSubCategory', - 'typicalDate', - 'bufrHeaderCentre', - 'bufrHeaderSubCentre', - 'masterTablesVersionNumber', - 'localTablesVersionNumber', - 'numberOfSubsets', + "dataCategory", + "dataSubCategory", + "typicalDate", + "bufrHeaderCentre", + "bufrHeaderSubCentre", + "masterTablesVersionNumber", + "localTablesVersionNumber", + "numberOfSubsets", ] cnt = 0 @@ -55,7 +55,7 @@ def example(INPUT): # print the values for the selected keys from the message for key in keys: try: - print(' %s: %s' % (key, codes_get(bufr, key))) + print(" %s: %s" % (key, codes_get(bufr, key))) except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) @@ -75,7 +75,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/bufr_read_sample.py b/examples/python/bufr_read_sample.py index 7e51c92b1..7ee13f659 100644 --- a/examples/python/bufr_read_sample.py +++ b/examples/python/bufr_read_sample.py @@ -26,30 +26,30 @@ VERBOSE = 1 # verbose error reporting def get_key_value(msgid, key): v = codes_get(msgid, key) if v == CODES_MISSING_DOUBLE or v == CODES_MISSING_LONG: - v = 'MISSING' + v = "MISSING" return v def example(INPUT): # open BUFR file - f = open(INPUT, 'rb') + f = open(INPUT, "rb") # These keys should be in the sample files keys = [ - 'editionNumber', - 'unexpandedDescriptors', - 'blockNumber', - 'stationNumber', - 'verticalSignificanceSurfaceObservations', - 'latitude', - 'longitude', - '24HourPressureChange', - 'horizontalVisibility', - '#1#cloudAmount', # cloud amount (low and mid level) - '#1#heightOfBaseOfCloud', - '#1#cloudType', # cloud type (low clouds) - '#2#cloudType', # cloud type (middle clouds) - '#3#cloudType' # cloud type (highclouds) + "editionNumber", + "unexpandedDescriptors", + "blockNumber", + "stationNumber", + "verticalSignificanceSurfaceObservations", + "latitude", + "longitude", + "24HourPressureChange", + "horizontalVisibility", + "#1#cloudAmount", # cloud amount (low and mid level) + "#1#heightOfBaseOfCloud", + "#1#cloudType", # cloud type (low clouds) + "#2#cloudType", # cloud type (middle clouds) + "#3#cloudType", # cloud type (highclouds) ] cnt = 0 @@ -62,10 +62,10 @@ def example(INPUT): print("message: %s" % cnt) - codes_set(bufr, 'unpack', 1) + codes_set(bufr, "unpack", 1) for key in keys: - print(' %s=%s' % (key, get_key_value(bufr, key))) + print(" %s=%s" % (key, get_key_value(bufr, key))) cnt += 1 @@ -81,7 +81,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/bufr_read_scatterometer.py b/examples/python/bufr_read_scatterometer.py index 310cd34e3..3433118d3 100644 --- a/examples/python/bufr_read_scatterometer.py +++ b/examples/python/bufr_read_scatterometer.py @@ -26,13 +26,13 @@ import traceback from eccodes import * -INPUT = '../../data/bufr/asca_139.bufr' +INPUT = "../../data/bufr/asca_139.bufr" VERBOSE = 1 # verbose error reporting def example(): # open bufr file - f = open(INPUT, 'rb') + f = open(INPUT, "rb") cnt = 0 @@ -47,7 +47,7 @@ def example(): # We need to instruct ecCodes to expand all the descriptors # i.e. unpack the data values - codes_set(bufr, 'unpack', 1) + codes_set(bufr, "unpack", 1) # The BUFR file contains a single message with 2016 subsets in a # compressed form. It means each subset has exactly the same structure: @@ -60,7 +60,7 @@ def example(): # Get the total number of subsets. numObs = codes_get(bufr, "numberOfSubsets") - print(' Number of values: %ld' % numObs) + print(" Number of values: %ld" % numObs) # Get latitude (for all the subsets) lat = codes_get_array(bufr, "latitude") @@ -74,7 +74,7 @@ def example(): # Check that all arrays are same size if len(lat) != numObs or len(lon) != numObs or len(bscat) != numObs: - print('inconsistent array dimension') + print("inconsistent array dimension") return 1 # Print the values @@ -100,7 +100,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/bufr_read_synop.py b/examples/python/bufr_read_synop.py index 6cc1a87d2..32aec4268 100644 --- a/examples/python/bufr_read_synop.py +++ b/examples/python/bufr_read_synop.py @@ -25,29 +25,29 @@ import traceback from eccodes import * -INPUT = '../../data/bufr/syno_multi.bufr' +INPUT = "../../data/bufr/syno_multi.bufr" VERBOSE = 1 # verbose error reporting def example(): # open bufr file - f = open(INPUT, 'rb') + f = open(INPUT, "rb") # define the keys to be printed keys = [ - 'blockNumber', - 'stationNumber', - 'latitude', - 'longitude', - 'airTemperatureAt2M', - 'dewpointTemperatureAt2M', - 'windSpeedAt10M', - 'windDirectionAt10M', - '#1#cloudAmount', # cloud amount (low and mid level) - '#1#heightOfBaseOfCloud', - '#1#cloudType', # cloud type (low clouds) - '#2#cloudType', # cloud type (middle clouds) - '#3#cloudType' # cloud type (highclouds) + "blockNumber", + "stationNumber", + "latitude", + "longitude", + "airTemperatureAt2M", + "dewpointTemperatureAt2M", + "windSpeedAt10M", + "windDirectionAt10M", + "#1#cloudAmount", # cloud amount (low and mid level) + "#1#heightOfBaseOfCloud", + "#1#cloudType", # cloud type (low clouds) + "#2#cloudType", # cloud type (middle clouds) + "#3#cloudType", # cloud type (highclouds) ] # The cloud information is stored in several blocks in the @@ -72,12 +72,12 @@ def example(): # we need to instruct ecCodes to expand all the descriptors # i.e. unpack the data values - codes_set(bufr, 'unpack', 1) + codes_set(bufr, "unpack", 1) # print the values for the selected keys from the message for key in keys: try: - print(' %s: %s' % (key, codes_get(bufr, key))) + print(" %s: %s" % (key, codes_get(bufr, key))) except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) @@ -97,7 +97,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/bufr_read_temp.py b/examples/python/bufr_read_temp.py index 1be6b8677..dd5f3a732 100644 --- a/examples/python/bufr_read_temp.py +++ b/examples/python/bufr_read_temp.py @@ -26,13 +26,13 @@ import traceback from eccodes import * -INPUT = '../../data/bufr/PraticaTemp.bufr' +INPUT = "../../data/bufr/PraticaTemp.bufr" VERBOSE = 1 # verbose error reporting def example(): # open BUFR file - f = open(INPUT, 'rb') + f = open(INPUT, "rb") cnt = 0 # loop over the messages in the file while 1: @@ -43,11 +43,13 @@ def example(): print("message: %s" % cnt) # we need to instruct ecCodes to expand all the descriptors # i.e. unpack the data section - codes_set(bufr, 'unpack', 1) + codes_set(bufr, "unpack", 1) # get all the timePeriods timePeriod = codes_get_array(bufr, "timePeriod") pressure = codes_get_array(bufr, "pressure") - extendedVerticalSoundingSignificance = codes_get_array(bufr, "extendedVerticalSoundingSignificance") + extendedVerticalSoundingSignificance = codes_get_array( + bufr, "extendedVerticalSoundingSignificance" + ) geopotentialHeight = codes_get_array(bufr, "nonCoordinateGeopotentialHeight") latitudeDisplacement = codes_get_array(bufr, "latitudeDisplacement") longitudeDisplacement = codes_get_array(bufr, "longitudeDisplacement") @@ -57,12 +59,22 @@ def example(): windSpeed = codes_get_array(bufr, "windSpeed") blockNumber = codes_get(bufr, "blockNumber") stationNumber = codes_get(bufr, "stationNumber") - print('station %d%d' % (blockNumber, stationNumber)) + print("station %d%d" % (blockNumber, stationNumber)) print( - 'timePeriod pressure geopotentialHeight latitudeDisplacement longitudeDisplacement airTemperature windDirection windSpeed significance') + "timePeriod pressure geopotentialHeight latitudeDisplacement longitudeDisplacement airTemperature windDirection windSpeed significance" + ) for i in range(0, len(windSpeed) - 1): - print(timePeriod[i], pressure[i], geopotentialHeight[i], latitudeDisplacement[i], longitudeDisplacement[i], - airTemperature[i], windDirection[i], windSpeed[i], extendedVerticalSoundingSignificance[i]) + print( + timePeriod[i], + pressure[i], + geopotentialHeight[i], + latitudeDisplacement[i], + longitudeDisplacement[i], + airTemperature[i], + windDirection[i], + windSpeed[i], + extendedVerticalSoundingSignificance[i], + ) cnt += 1 # delete handle codes_release(bufr) @@ -77,7 +89,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/bufr_read_tropical_cyclone.py b/examples/python/bufr_read_tropical_cyclone.py index 2f903bfe8..d0b02ec40 100644 --- a/examples/python/bufr_read_tropical_cyclone.py +++ b/examples/python/bufr_read_tropical_cyclone.py @@ -24,7 +24,7 @@ import traceback from eccodes import * -INPUT = '../../data/bufr/tropical_cyclone.bufr' +INPUT = "../../data/bufr/tropical_cyclone.bufr" VERBOSE = 1 # verbose error reporting data = collections.defaultdict(dict) @@ -32,7 +32,7 @@ data = collections.defaultdict(dict) def example(): # open BUFR file - f = open(INPUT, 'rb') + f = open(INPUT, "rb") cnt = 0 @@ -43,11 +43,11 @@ def example(): if bufr is None: break - print('**************** MESSAGE: ', cnt + 1, ' *****************') + print("**************** MESSAGE: ", cnt + 1, " *****************") # we need to instruct ecCodes to expand all the descriptors # i.e. unpack the data values - codes_set(bufr, 'unpack', 1) + codes_set(bufr, "unpack", 1) numObs = codes_get(bufr, "numberOfSubsets") year = codes_get(bufr, "year") @@ -56,10 +56,10 @@ def example(): hour = codes_get(bufr, "hour") minute = codes_get(bufr, "minute") - print('Date and time: ', day, '.', month, '.', year, ' ', hour, ':', minute) + print("Date and time: ", day, ".", month, ".", year, " ", hour, ":", minute) stormIdentifier = codes_get(bufr, "stormIdentifier") - print('Storm identifier: ', stormIdentifier) + print("Storm identifier: ", stormIdentifier) # How many different timePeriod in the data structure? numberOfPeriods = 0 @@ -76,50 +76,74 @@ def example(): memberNumberLen = len(memberNumber) # Observed Storm Centre - significance = codes_get(bufr, '#1#meteorologicalAttributeSignificance') - latitudeCentre = codes_get(bufr, '#1#latitude') - longitudeCentre = codes_get(bufr, '#1#longitude') + significance = codes_get(bufr, "#1#meteorologicalAttributeSignificance") + latitudeCentre = codes_get(bufr, "#1#latitude") + longitudeCentre = codes_get(bufr, "#1#longitude") if significance != 1: - print('ERROR: unexpected #1#meteorologicalAttributeSignificance') + print("ERROR: unexpected #1#meteorologicalAttributeSignificance") return 1 - if (latitudeCentre == CODES_MISSING_DOUBLE) and (longitudeCentre == CODES_MISSING_DOUBLE): - print('Observed storm centre position missing') + if (latitudeCentre == CODES_MISSING_DOUBLE) and ( + longitudeCentre == CODES_MISSING_DOUBLE + ): + print("Observed storm centre position missing") else: - print('Observed storm centre: latitude=', latitudeCentre, ' longitude=', longitudeCentre) + print( + "Observed storm centre: latitude=", + latitudeCentre, + " longitude=", + longitudeCentre, + ) # Location of storm in perturbed analysis - significance = codes_get(bufr, '#2#meteorologicalAttributeSignificance') + significance = codes_get(bufr, "#2#meteorologicalAttributeSignificance") if significance != 4: - print('ERROR: unexpected #2#meteorologicalAttributeSignificance') + print("ERROR: unexpected #2#meteorologicalAttributeSignificance") return 1 - latitudeAnalysis = codes_get_array(bufr, '#2#latitude') - longitudeAnalysis = codes_get_array(bufr, '#2#longitude') - pressureAnalysis = codes_get_array(bufr, '#1#pressureReducedToMeanSeaLevel') + latitudeAnalysis = codes_get_array(bufr, "#2#latitude") + longitudeAnalysis = codes_get_array(bufr, "#2#longitude") + pressureAnalysis = codes_get_array(bufr, "#1#pressureReducedToMeanSeaLevel") # Location of Maximum Wind - significance = codes_get(bufr, '#3#meteorologicalAttributeSignificance') + significance = codes_get(bufr, "#3#meteorologicalAttributeSignificance") if significance != 3: - print('ERROR: unexpected #3#meteorologicalAttributeSignificance=', significance) + print( + "ERROR: unexpected #3#meteorologicalAttributeSignificance=", + significance, + ) return 1 - latitudeMaxWind0 = codes_get_array(bufr, '#3#latitude') - longitudeMaxWind0 = codes_get_array(bufr, '#3#longitude') - windMaxWind0 = codes_get_array(bufr, '#1#windSpeedAt10M') + latitudeMaxWind0 = codes_get_array(bufr, "#3#latitude") + longitudeMaxWind0 = codes_get_array(bufr, "#3#longitude") + windMaxWind0 = codes_get_array(bufr, "#1#windSpeedAt10M") - if len(latitudeAnalysis) == len(memberNumber) and len(latitudeMaxWind0) == len(memberNumber): + if len(latitudeAnalysis) == len(memberNumber) and len(latitudeMaxWind0) == len( + memberNumber + ): for k in range(len(memberNumber)): - data[k][0] = [latitudeAnalysis[k], longitudeAnalysis[k], pressureAnalysis[k], latitudeMaxWind0[k], - longitudeMaxWind0[k], windMaxWind0[k]] + data[k][0] = [ + latitudeAnalysis[k], + longitudeAnalysis[k], + pressureAnalysis[k], + latitudeMaxWind0[k], + longitudeMaxWind0[k], + windMaxWind0[k], + ] else: for k in range(len(memberNumber)): - data[k][0] = [latitudeAnalysis[0], longitudeAnalysis[0], pressureAnalysis[k], latitudeMaxWind0[0], - longitudeMaxWind0[0], windMaxWind0[k]] + data[k][0] = [ + latitudeAnalysis[0], + longitudeAnalysis[0], + pressureAnalysis[k], + latitudeMaxWind0[0], + longitudeMaxWind0[0], + windMaxWind0[k], + ] timePeriod = [0 for x in range(numberOfPeriods)] for i in range(1, numberOfPeriods): @@ -137,7 +161,9 @@ def example(): break # Location of the storm - values = codes_get_array(bufr, "#%d#meteorologicalAttributeSignificance" % rank1) + values = codes_get_array( + bufr, "#%d#meteorologicalAttributeSignificance" % rank1 + ) if len(values) == 1: significance = values[0] else: @@ -149,12 +175,19 @@ def example(): if significance == 1: lat = codes_get_array(bufr, "#%d#latitude" % rank1) lon = codes_get_array(bufr, "#%d#longitude" % rank1) - press = codes_get_array(bufr, "#%d#pressureReducedToMeanSeaLevel" % (i + 1)) + press = codes_get_array( + bufr, "#%d#pressureReducedToMeanSeaLevel" % (i + 1) + ) else: - print('ERROR: unexpected meteorologicalAttributeSignificance=', significance) + print( + "ERROR: unexpected meteorologicalAttributeSignificance=", + significance, + ) # Location of maximum wind - values = codes_get_array(bufr, "#%d#meteorologicalAttributeSignificance" % rank3) + values = codes_get_array( + bufr, "#%d#meteorologicalAttributeSignificance" % rank3 + ) if len(values) == 1: significanceWind = values[0] else: @@ -168,20 +201,47 @@ def example(): lonWind = codes_get_array(bufr, "#%d#longitude" % rank3) wind10m = codes_get_array(bufr, "#%d#windSpeedAt10M" % (i + 1)) else: - print('ERROR: unexpected meteorologicalAttributeSignificance=', significanceWind) + print( + "ERROR: unexpected meteorologicalAttributeSignificance=", + significanceWind, + ) for k in range(len(memberNumber)): - data[k][i] = [lat[k], lon[k], press[k], latWind[k], lonWind[k], wind10m[k]] + data[k][i] = [ + lat[k], + lon[k], + press[k], + latWind[k], + lonWind[k], + wind10m[k], + ] # ---------------------------------------- Print the values ------------- for m in range(len(memberNumber)): print("== Member %d" % memberNumber[m]) print("step latitude longitude pressure latitude longitude wind") for s in range(len(timePeriod)): - if data[m][s][0] != CODES_MISSING_DOUBLE and data[m][s][1] != CODES_MISSING_DOUBLE: - print(" {0:>3d}{1}{2:>6.1f}{3}{4:>6.1f}{5}{6:>8.1f}{7}{8:>6.1f}{9}{10:>6.1f}{11}{12:>6.1f}".format( - timePeriod[s], ' ', data[m][s][0], ' ', data[m][s][1], ' ', data[m][s][2], ' ', - data[m][s][3], ' ', data[m][s][4], ' ', data[m][s][5])) + if ( + data[m][s][0] != CODES_MISSING_DOUBLE + and data[m][s][1] != CODES_MISSING_DOUBLE + ): + print( + " {0:>3d}{1}{2:>6.1f}{3}{4:>6.1f}{5}{6:>8.1f}{7}{8:>6.1f}{9}{10:>6.1f}{11}{12:>6.1f}".format( + timePeriod[s], + " ", + data[m][s][0], + " ", + data[m][s][1], + " ", + data[m][s][2], + " ", + data[m][s][3], + " ", + data[m][s][4], + " ", + data[m][s][5], + ) + ) # ----------------------------------------------------------------------- cnt += 1 @@ -200,7 +260,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/bufr_set_keys.py b/examples/python/bufr_set_keys.py index 89141025c..885c274a3 100644 --- a/examples/python/bufr_set_keys.py +++ b/examples/python/bufr_set_keys.py @@ -21,17 +21,17 @@ import traceback from eccodes import * -INPUT = '../../data/bufr/syno_multi.bufr' -OUTPUT = 'bufr_set_keys_test_p.tmp.bufr' +INPUT = "../../data/bufr/syno_multi.bufr" +OUTPUT = "bufr_set_keys_test_p.tmp.bufr" VERBOSE = 1 # verbose error reporting def example(): # open BUFR file - fin = open(INPUT, 'rb') + fin = open(INPUT, "rb") # open output BUFR file - fout = open(OUTPUT, 'wb') + fout = open(OUTPUT, "wb") cnt = 0 @@ -54,16 +54,16 @@ def example(): # set centre val = 222 - print(' set bufrHeaderCentre to: %d' % val) + print(" set bufrHeaderCentre to: %d" % val) - key = 'bufrHeaderCentre' + key = "bufrHeaderCentre" try: - print(' %s: %s' % (key, codes_set(bufr, key, val))) + print(" %s: %s" % (key, codes_set(bufr, key, val))) except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) # check bufrHeaderCentre's value - print(' %s''s new value is: %d' % (key, codes_get(bufr, key))) + print(" %s" "s new value is: %d" % (key, codes_get(bufr, key))) # write modified message to output codes_write(bufr, fout) @@ -84,7 +84,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/bufr_subset.py b/examples/python/bufr_subset.py index 29275f232..657233a08 100644 --- a/examples/python/bufr_subset.py +++ b/examples/python/bufr_subset.py @@ -21,13 +21,13 @@ import traceback from eccodes import * -INPUT = '../../data/bufr/synop_multi_subset.bufr' +INPUT = "../../data/bufr/synop_multi_subset.bufr" VERBOSE = 1 # verbose error reporting def example(): # open BUFR file - f = open(INPUT, 'rb') + f = open(INPUT, "rb") cnt = 0 @@ -42,25 +42,25 @@ def example(): # we need to instruct ecCodes to expand all the descriptors # i.e. unpack the data values - codes_set(bufr, 'unpack', 1) + codes_set(bufr, "unpack", 1) # find out the number of subsets - key = 'numberOfSubsets' - numberOfSubsets = codes_get(bufr, 'numberOfSubsets') - print(' %s: %d' % (key, numberOfSubsets)) + key = "numberOfSubsets" + numberOfSubsets = codes_get(bufr, "numberOfSubsets") + print(" %s: %d" % (key, numberOfSubsets)) # loop over the subsets for i in range(1, numberOfSubsets + 1): # read and print some data values - key = '/subsetNumber=%d/blockNumber' % i + key = "/subsetNumber=%d/blockNumber" % i print(key) val = codes_get_long(bufr, key) - print(' %s= %d' % (key, val)) + print(" %s= %d" % (key, val)) - key = '/subsetNumber=%d/stationNumber' % i + key = "/subsetNumber=%d/stationNumber" % i val = codes_get_long(bufr, key) - print(' %s: %d' % (key, val)) + print(" %s: %d" % (key, val)) cnt += 1 @@ -78,7 +78,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/get_product_kind.py b/examples/python/get_product_kind.py index 48e93298f..da6d3b976 100644 --- a/examples/python/get_product_kind.py +++ b/examples/python/get_product_kind.py @@ -26,16 +26,16 @@ VERBOSE = 1 # verbose error reporting def example(): if len(sys.argv) < 2: - print('Usage: ', sys.argv[0], ' file', file=sys.stderr) + print("Usage: ", sys.argv[0], " file", file=sys.stderr) sys.exit(1) - f = open(sys.argv[1], 'rb') + f = open(sys.argv[1], "rb") while 1: ident = codes_new_from_file(f, CODES_PRODUCT_ANY) if ident is None: break - print('product: ', codes_get(ident, 'kindOfProduct', str)) + print("product: ", codes_get(ident, "kindOfProduct", str)) codes_release(ident) @@ -49,7 +49,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/grib_ccsds.py b/examples/python/grib_ccsds.py index 0bf7f8640..70166af34 100644 --- a/examples/python/grib_ccsds.py +++ b/examples/python/grib_ccsds.py @@ -14,17 +14,17 @@ import traceback from eccodes import * -INPUT = '../../data/ccsds.grib2' +INPUT = "../../data/ccsds.grib2" VERBOSE = 1 # verbose error reporting def example(): - f = open(INPUT, 'rb') + f = open(INPUT, "rb") keys = [ - 'ccsdsFlags', - 'ccsdsBlockSize', - 'bitsPerValue', + "ccsdsFlags", + "ccsdsBlockSize", + "bitsPerValue", ] while 1: @@ -34,7 +34,7 @@ def example(): for key in keys: try: - print(' %s: %s' % (key, codes_get(gid, key))) + print(" %s: %s" % (key, codes_get(gid, key))) except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) @@ -50,7 +50,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/grib_clone.py b/examples/python/grib_clone.py index 29ddd5835..58ba07ba2 100644 --- a/examples/python/grib_clone.py +++ b/examples/python/grib_clone.py @@ -15,25 +15,25 @@ import traceback from eccodes import * -INPUT = '../../data/constant_field.grib1' -OUTPUT = 'out.clone.grib' +INPUT = "../../data/constant_field.grib1" +OUTPUT = "out.clone.grib" VERBOSE = 1 # verbose error reporting def example(): - fin = open(INPUT, 'rb') - fout = open(OUTPUT, 'wb') + fin = open(INPUT, "rb") + fout = open(OUTPUT, "wb") gid = codes_grib_new_from_file(fin) - assert not codes_is_missing(gid, 'Ni') - assert not codes_is_missing(gid, 'Nj') - nx = codes_get(gid, 'Ni') - ny = codes_get(gid, 'Nj') + assert not codes_is_missing(gid, "Ni") + assert not codes_is_missing(gid, "Nj") + nx = codes_get(gid, "Ni") + ny = codes_get(gid, "Nj") for step in range(0, 24, 6): clone_id = codes_clone(gid) - codes_set(clone_id, 'step', step) + codes_set(clone_id, "step", step) values = [random.random() for i in range(nx * ny)] @@ -55,7 +55,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/grib_count_messages.py b/examples/python/grib_count_messages.py index 018cb729a..14ca11fe8 100644 --- a/examples/python/grib_count_messages.py +++ b/examples/python/grib_count_messages.py @@ -16,12 +16,12 @@ import traceback from eccodes import * -INPUT = '../../data/tigge_pf_ecmwf.grib2' +INPUT = "../../data/tigge_pf_ecmwf.grib2" VERBOSE = 1 # verbose error reporting def example(): - f = open(INPUT, 'rb') + f = open(INPUT, "rb") mcount = codes_count_in_file(f) gid_list = [codes_grib_new_from_file(f) for i in range(mcount)] @@ -29,14 +29,14 @@ def example(): f.close() keys = [ - 'Ni', - 'Nj', - 'latitudeOfFirstGridPointInDegrees', - 'longitudeOfFirstGridPointInDegrees', - 'latitudeOfLastGridPointInDegrees', - 'longitudeOfLastGridPointInDegrees', - 'jDirectionIncrementInDegrees', - 'iDirectionIncrementInDegrees', + "Ni", + "Nj", + "latitudeOfFirstGridPointInDegrees", + "longitudeOfFirstGridPointInDegrees", + "latitudeOfLastGridPointInDegrees", + "longitudeOfLastGridPointInDegrees", + "jDirectionIncrementInDegrees", + "iDirectionIncrementInDegrees", ] for i in range(mcount): @@ -45,16 +45,19 @@ def example(): print("processing message number", i + 1) for key in keys: - print('%s=%g' % (key, codes_get(gid, key))) + print("%s=%g" % (key, codes_get(gid, key))) - print('There are %d, average is %g, min is %g, max is %g' % ( - codes_get_size(gid, 'values'), - codes_get(gid, 'average'), - codes_get(gid, 'min'), - codes_get(gid, 'max') - )) + print( + "There are %d, average is %g, min is %g, max is %g" + % ( + codes_get_size(gid, "values"), + codes_get(gid, "average"), + codes_get(gid, "min"), + codes_get(gid, "max"), + ) + ) - print('-' * 100) + print("-" * 100) codes_release(gid) @@ -66,7 +69,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/grib_get_keys.py b/examples/python/grib_get_keys.py index e4c63475a..a07829b87 100644 --- a/examples/python/grib_get_keys.py +++ b/examples/python/grib_get_keys.py @@ -19,20 +19,20 @@ import traceback from eccodes import * -INPUT = '../../data/reduced_latlon_surface.grib1' +INPUT = "../../data/reduced_latlon_surface.grib1" VERBOSE = 1 # verbose error reporting def example(): - f = open(INPUT, 'rb') + f = open(INPUT, "rb") keys = [ - 'Ni', - 'Nj', - 'latitudeOfFirstGridPointInDegrees', - 'longitudeOfFirstGridPointInDegrees', - 'latitudeOfLastGridPointInDegrees', - 'longitudeOfLastGridPointInDegrees', + "Ni", + "Nj", + "latitudeOfFirstGridPointInDegrees", + "longitudeOfFirstGridPointInDegrees", + "latitudeOfLastGridPointInDegrees", + "longitudeOfLastGridPointInDegrees", ] while 1: @@ -42,7 +42,7 @@ def example(): for key in keys: try: - print(' %s: %s' % (key, codes_get(gid, key))) + print(" %s: %s" % (key, codes_get(gid, key))) except KeyValueNotFoundError as err: # Full list of exceptions here: # https://confluence.ecmwf.int/display/ECC/Python+exception+classes @@ -50,12 +50,15 @@ def example(): except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) - print('There are %d values, average is %f, min is %f, max is %f' % ( - codes_get_size(gid, 'values'), - codes_get(gid, 'average'), - codes_get(gid, 'min'), - codes_get(gid, 'max') - )) + print( + "There are %d values, average is %f, min is %f, max is %f" + % ( + codes_get_size(gid, "values"), + codes_get(gid, "average"), + codes_get(gid, "min"), + codes_get(gid, "max"), + ) + ) codes_release(gid) @@ -69,7 +72,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/grib_get_message_offset.py b/examples/python/grib_get_message_offset.py index 701ee79d3..29d83c2d1 100644 --- a/examples/python/grib_get_message_offset.py +++ b/examples/python/grib_get_message_offset.py @@ -26,10 +26,10 @@ VERBOSE = 1 # verbose error reporting def example(): if len(sys.argv) < 2: - print('Usage: ', sys.argv[0], ' file', file=sys.stderr) + print("Usage: ", sys.argv[0], " file", file=sys.stderr) sys.exit(1) - f = open(sys.argv[1], 'rb') + f = open(sys.argv[1], "rb") while 1: ident = codes_grib_new_from_file(f) if ident is None: @@ -49,7 +49,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/grib_index.py b/examples/python/grib_index.py index b78baee4d..0949a3477 100644 --- a/examples/python/grib_index.py +++ b/examples/python/grib_index.py @@ -20,14 +20,14 @@ import traceback from eccodes import * -INPUT = '../../data/index.grib' +INPUT = "../../data/index.grib" VERBOSE = 1 # verbose error reporting def product(*args, **kwds): # product('ABCD', 'xy') --> Ax Ay Bx By Cx Cy Dx Dy # product(range(2), repeat=3) --> 000 001 010 011 100 101 110 111 - pools = list(map(tuple, args)) * kwds.get('repeat', 1) + pools = list(map(tuple, args)) * kwds.get("repeat", 1) result = [[]] for pool in pools: result = [x + [y] for x in result for y in pool] @@ -54,10 +54,7 @@ def example(): index_vals = [] for key in index_keys: - print("%sSize=%d" % ( - key, - codes_index_get_size(iid, key) - )) + print("%sSize=%d" % (key, codes_index_get_size(iid, key))) key_vals = codes_index_get(iid, key) print(" ".join(key_vals)) @@ -72,8 +69,9 @@ def example(): gid = codes_new_from_index(iid) if gid is None: break - print(" ".join(["%s=%s" % (key, codes_get(gid, key)) - for key in index_keys])) + print( + " ".join(["%s=%s" % (key, codes_get(gid, key)) for key in index_keys]) + ) codes_release(gid) codes_index_release(iid) @@ -86,7 +84,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/grib_iterator.py b/examples/python/grib_iterator.py index f693424ff..589e35f91 100644 --- a/examples/python/grib_iterator.py +++ b/examples/python/grib_iterator.py @@ -16,7 +16,7 @@ import traceback from eccodes import * VERBOSE = 1 # verbose error reporting -missingValue = 1e+20 # A value out of range +missingValue = 1e20 # A value out of range def example(INPUT): @@ -66,7 +66,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/grib_iterator_bitmap.py b/examples/python/grib_iterator_bitmap.py index e6fb3d838..26ce35e5d 100644 --- a/examples/python/grib_iterator_bitmap.py +++ b/examples/python/grib_iterator_bitmap.py @@ -23,7 +23,7 @@ VERBOSE = 1 # verbose error reporting def example(INPUT): - f = open(INPUT, 'rb') + f = open(INPUT, "rb") while 1: gid = codes_grib_new_from_file(f) @@ -32,13 +32,13 @@ def example(INPUT): iterid = codes_grib_iterator_new(gid, 0) - bitmapPresent = codes_get(gid, 'bitmapPresent') + bitmapPresent = codes_get(gid, "bitmapPresent") if bitmapPresent: # Get the bitmap array which contains 0s and 1s - bitmap = codes_get_array(gid, 'bitmap', int) + bitmap = codes_get_array(gid, "bitmap", int) # Do some sanity checking - assert len(bitmap) == codes_get_size(gid, 'values') - assert len(bitmap) == codes_get(gid, 'numberOfDataPoints') + assert len(bitmap) == codes_get_size(gid, "values") + assert len(bitmap) == codes_get(gid, "numberOfDataPoints") i = 0 while 1: @@ -71,7 +71,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/grib_keys_iterator.py b/examples/python/grib_keys_iterator.py index 666fe6367..327a98a9c 100644 --- a/examples/python/grib_keys_iterator.py +++ b/examples/python/grib_keys_iterator.py @@ -16,19 +16,19 @@ import traceback from eccodes import * -INPUT = '../../data/reduced_latlon_surface.grib1' +INPUT = "../../data/reduced_latlon_surface.grib1" VERBOSE = 1 # verbose error reporting def example(): - f = open(INPUT, 'rb') + f = open(INPUT, "rb") while 1: gid = codes_grib_new_from_file(f) if gid is None: break - iterid = codes_keys_iterator_new(gid, 'ls') + iterid = codes_keys_iterator_new(gid, "ls") # Different types of keys can be skipped # codes_skip_computed(iterid) @@ -56,7 +56,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/grib_ls_JSON.py b/examples/python/grib_ls_JSON.py index 8cb3c3d08..19d045cd5 100644 --- a/examples/python/grib_ls_JSON.py +++ b/examples/python/grib_ls_JSON.py @@ -21,14 +21,14 @@ import traceback from eccodes import * VERBOSE = 1 # verbose error reporting -default_namespace = 'ls' +default_namespace = "ls" def do_print(namespace, INPUT): - f = open(INPUT, 'rb') + f = open(INPUT, "rb") first_time = True - print('{') + print("{") print(' "messages" : [') while 1: gid = codes_grib_new_from_file(f) @@ -36,9 +36,9 @@ def do_print(namespace, INPUT): break if not first_time: - print(' ,{') + print(" ,{") else: - print(' {') + print(" {") first_time = False iterid = codes_keys_iterator_new(gid, namespace) @@ -48,30 +48,30 @@ def do_print(namespace, INPUT): keyname = codes_keys_iterator_get_name(iterid) keyval = codes_get_string(gid, keyname) if not f1: - print(',') + print(",") else: - print('') + print("") f1 = False - print(" \"%s\" : \"%s\"" % (keyname, keyval), end=' ') + print(' "%s" : "%s"' % (keyname, keyval), end=" ") - print('') - print(' }') + print("") + print(" }") codes_keys_iterator_delete(iterid) codes_release(gid) - print(' ]') - print('}') + print(" ]") + print("}") f.close() def usage(): progname = os.path.basename(sys.argv[0]) print("Usage: ", progname, "[options] grib_file1 grib_file2 ...") - print('Options:') - print('\t-n namespace') - print('\t\tAll the keys belonging to namespace are printed.') - print('\t-m Mars keys are printed.') - print('') + print("Options:") + print("\t-n namespace") + print("\t\tAll the keys belonging to namespace are printed.") + print("\t-m Mars keys are printed.") + print("") def main(): @@ -83,12 +83,12 @@ def main(): namespace = default_namespace opts, args = getopt.getopt(sys.argv[1:], options) for o, a in opts: - if o == '-m': - namespace = 'mars' - elif o == '-n': + if o == "-m": + namespace = "mars" + elif o == "-n": namespace = a or default_namespace else: - assert False, 'Invalid option' + assert False, "Invalid option" # Check we have some GRIB files to process if not args: @@ -97,7 +97,7 @@ def main(): for arg in args: do_print(namespace, arg) except getopt.GetoptError as err: - print('Error: ', err) + print("Error: ", err) usage() return 1 except GribInternalError as err: diff --git a/examples/python/grib_multi_write.py b/examples/python/grib_multi_write.py index 2e7e447b8..783bb42ec 100644 --- a/examples/python/grib_multi_write.py +++ b/examples/python/grib_multi_write.py @@ -14,14 +14,14 @@ import traceback from eccodes import * -INPUT = '../../data/sample.grib2' -OUTPUT = 'out.mw.grib' +INPUT = "../../data/sample.grib2" +OUTPUT = "out.mw.grib" VERBOSE = 1 # verbose error reporting def example(): - fin = open(INPUT, 'rb') - fout = open(OUTPUT, 'wb') + fin = open(INPUT, "rb") + fout = open(OUTPUT, "wb") gid = codes_grib_new_from_file(fin) @@ -46,7 +46,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/grib_nearest.py b/examples/python/grib_nearest.py index 332afaa31..5d272be64 100644 --- a/examples/python/grib_nearest.py +++ b/examples/python/grib_nearest.py @@ -16,21 +16,20 @@ import traceback from eccodes import * -INPUT = '../../data/reduced_gaussian_lsm.grib1' +INPUT = "../../data/reduced_gaussian_lsm.grib1" VERBOSE = 1 # verbose error reporting def example(): points = ((30, -20), (13, 234)) - f = open(INPUT, 'rb') + f = open(INPUT, "rb") gid = codes_grib_new_from_file(f) for lat, lon in points: nearest = codes_grib_find_nearest(gid, lat, lon)[0] print(lat, lon) - print(nearest.lat, nearest.lon, nearest.value, nearest.distance, - nearest.index) + print(nearest.lat, nearest.lon, nearest.value, nearest.distance, nearest.index) four = codes_grib_find_nearest(gid, lat, lon, is_lsm=False, npoints=4) for i in range(len(four)): @@ -50,7 +49,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/grib_print_data.py b/examples/python/grib_print_data.py index f16b0ef6c..a32a76a12 100644 --- a/examples/python/grib_print_data.py +++ b/examples/python/grib_print_data.py @@ -16,12 +16,12 @@ import traceback from eccodes import * -INPUT = '../../data/regular_latlon_surface.grib1' +INPUT = "../../data/regular_latlon_surface.grib1" VERBOSE = 1 # verbose error reporting def example(): - f = open(INPUT, 'rb') + f = open(INPUT, "rb") gid = codes_grib_new_from_file(f) values = codes_get_values(gid) @@ -29,15 +29,15 @@ def example(): for i in range(num_vals): print("%d %.10e" % (i + 1, values[i])) - print('%d values found in %s' % (num_vals, INPUT)) + print("%d values found in %s" % (num_vals, INPUT)) - for key in ('max', 'min', 'average'): - print('%s=%.10e' % (key, codes_get(gid, key))) + for key in ("max", "min", "average"): + print("%s=%.10e" % (key, codes_get(gid, key))) # Example of accessing specific elements from data values # Get first, middle and last elements indexes = [0, int(num_vals / 2), num_vals - 1] - elems = codes_get_double_elements(gid, 'values', indexes) + elems = codes_get_double_elements(gid, "values", indexes) codes_release(gid) f.close() @@ -50,7 +50,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/grib_read_sample.py b/examples/python/grib_read_sample.py index b48ac93ac..3e89d62b6 100644 --- a/examples/python/grib_read_sample.py +++ b/examples/python/grib_read_sample.py @@ -25,19 +25,19 @@ VERBOSE = 1 # verbose error reporting def example(INPUT): # open GRIB file - f = open(INPUT, 'rb') + f = open(INPUT, "rb") # These keys should be in the sample files keys = [ - 'identifier', - 'editionNumber', - 'year', - 'month', - 'latitudeOfFirstGridPointInDegrees', - 'longitudeOfFirstGridPointInDegrees', - 'bitsPerValue', - 'stepType', - 'packingType' + "identifier", + "editionNumber", + "year", + "month", + "latitudeOfFirstGridPointInDegrees", + "longitudeOfFirstGridPointInDegrees", + "bitsPerValue", + "stepType", + "packingType", ] cnt = 0 @@ -51,7 +51,7 @@ def example(INPUT): print("message: %s" % cnt) for key in keys: - print(' %s=%s' % (key, codes_get(gid, key))) + print(" %s=%s" % (key, codes_get(gid, key))) cnt += 1 @@ -67,7 +67,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/grib_samples.py b/examples/python/grib_samples.py index 32558bcbc..c83f05040 100644 --- a/examples/python/grib_samples.py +++ b/examples/python/grib_samples.py @@ -14,24 +14,24 @@ import traceback from eccodes import * -INPUT = '../../data/tp_ecmwf.grib' -OUTPUT = 'p_out.grib_samples.grib' +INPUT = "../../data/tp_ecmwf.grib" +OUTPUT = "p_out.grib_samples.grib" VERBOSE = 1 # verbose error reporting def example(): sample_id = codes_grib_new_from_samples("regular_ll_sfc_grib1") - fin = open(INPUT, 'rb') - fout = open(OUTPUT, 'wb') + fin = open(INPUT, "rb") + fout = open(OUTPUT, "wb") keys = { - 'dataDate': 20080104, - 'startStep': 0, - 'endStep': 12, - 'stepType': 'accum', - 'table2Version': 2, - 'indicatorOfParameter': 61, - 'decimalPrecision': 2, + "dataDate": 20080104, + "startStep": 0, + "endStep": 12, + "stepType": "accum", + "table2Version": 2, + "indicatorOfParameter": 61, + "decimalPrecision": 2, } prev_vals = None @@ -54,8 +54,8 @@ def example(): result[i] -= prev_vals[i] prev_vals = curr_vals - keys['startStep'] += 12 - keys['endStep'] += 12 + keys["startStep"] += 12 + keys["endStep"] += 12 clone_id = codes_clone(sample_id) @@ -79,7 +79,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/grib_set_bitmap.py b/examples/python/grib_set_bitmap.py index 0d8b73015..7dc45065c 100644 --- a/examples/python/grib_set_bitmap.py +++ b/examples/python/grib_set_bitmap.py @@ -13,15 +13,15 @@ import traceback from eccodes import * -INPUT = '../../data/regular_latlon_surface.grib1' -OUTPUT = 'out.set_bitmap_p.grib' +INPUT = "../../data/regular_latlon_surface.grib1" +OUTPUT = "out.set_bitmap_p.grib" MISSING = 9999 VERBOSE = 1 # verbose error reporting def example(): - fin = open(INPUT, 'rb') - fout = open(OUTPUT, 'wb') + fin = open(INPUT, "rb") + fout = open(OUTPUT, "wb") gid = codes_grib_new_from_file(fin) # The missingValue is not coded in the message. @@ -29,12 +29,12 @@ def example(): # at a point in the grid. # It should be chosen so that it cannot be confused # with a valid field value - codes_set(gid, 'missingValue', MISSING) + codes_set(gid, "missingValue", MISSING) values = codes_get_values(gid) # Enable bitmap - codes_set(gid, 'bitmapPresent', 1) + codes_set(gid, "bitmapPresent", 1) # Change some data values to be missing num_missing = 0 @@ -46,10 +46,10 @@ def example(): codes_set_values(gid, values) # Check counts of missing and non-missing values - num_data = codes_get(gid, 'numberOfDataPoints', int) + num_data = codes_get(gid, "numberOfDataPoints", int) assert num_data == len(values) - assert codes_get(gid, 'numberOfCodedValues', int) == num_data - num_missing - assert codes_get(gid, 'numberOfMissing', int) == num_missing + assert codes_get(gid, "numberOfCodedValues", int) == num_data - num_missing + assert codes_get(gid, "numberOfMissing", int) == num_missing codes_write(gid, fout) codes_release(gid) diff --git a/examples/python/grib_set_keys.py b/examples/python/grib_set_keys.py index b741f1e12..d5953b462 100644 --- a/examples/python/grib_set_keys.py +++ b/examples/python/grib_set_keys.py @@ -21,51 +21,51 @@ from datetime import date from eccodes import * -INPUT = '../../data/regular_latlon_surface_constant.grib1' -OUTPUT = 'out.set.grib' +INPUT = "../../data/regular_latlon_surface_constant.grib1" +OUTPUT = "out.set.grib" VERBOSE = 1 # verbose error reporting def example(): - fin = open(INPUT, 'rb') - fout = open(OUTPUT, 'wb') + fin = open(INPUT, "rb") + fout = open(OUTPUT, "wb") gid = codes_grib_new_from_file(fin) dt = date.today() today = "%d%02d%02d" % (dt.year, dt.month, dt.day) - codes_set(gid, 'dataDate', int(today)) - codes_set(gid, 'centre', 80) + codes_set(gid, "dataDate", int(today)) + codes_set(gid, "centre", 80) - centreIntVal = codes_get_array(gid, 'centre', int) - centreStrVal = codes_get_array(gid, 'centre', str) - dateStrVal = codes_get_array(gid, 'dataDate', str) - assert (centreIntVal[0] == 80) - assert (centreStrVal[0] == 'cnmc') - assert (dateStrVal[0] == today) - print('get centre as an integer - centre = %d' % centreIntVal[0]) - print('get centre as a string - centre = %s' % centreStrVal[0]) - print('get date as a string - date = %s' % dateStrVal[0]) + centreIntVal = codes_get_array(gid, "centre", int) + centreStrVal = codes_get_array(gid, "centre", str) + dateStrVal = codes_get_array(gid, "dataDate", str) + assert centreIntVal[0] == 80 + assert centreStrVal[0] == "cnmc" + assert dateStrVal[0] == today + print("get centre as an integer - centre = %d" % centreIntVal[0]) + print("get centre as a string - centre = %s" % centreStrVal[0]) + print("get date as a string - date = %s" % dateStrVal[0]) # Now do the same but using set_key_vals, setting keys all at once - print('set keys using one long comma-separated string...') - codes_set_key_vals(gid, 'level=1,centre=98') - assert (codes_get(gid, 'centre', str) == 'ecmf') - assert (codes_get(gid, 'level', int) == 1) + print("set keys using one long comma-separated string...") + codes_set_key_vals(gid, "level=1,centre=98") + assert codes_get(gid, "centre", str) == "ecmf" + assert codes_get(gid, "level", int) == 1 - print('set keys using a list of strings...') - codes_set_key_vals(gid, ['level=2', 'centre=kwbc']) - assert (codes_get(gid, 'centre', int) == 7) - assert (codes_get(gid, 'level', int) == 2) + print("set keys using a list of strings...") + codes_set_key_vals(gid, ["level=2", "centre=kwbc"]) + assert codes_get(gid, "centre", int) == 7 + assert codes_get(gid, "level", int) == 2 - print('set keys using a dictionary (order not as specified!)...') - codes_set_key_vals(gid, {'level': 3, 'centre': 84}) - assert (codes_get(gid, 'centre', str) == 'lfpw') - assert (codes_get(gid, 'level', int) == 3) + print("set keys using a dictionary (order not as specified!)...") + codes_set_key_vals(gid, {"level": 3, "centre": 84}) + assert codes_get(gid, "centre", str) == "lfpw" + assert codes_get(gid, "level", int) == 3 - print('set keys using an ordered dictionary...') - codes_set_key_vals(gid, OrderedDict([('level', 3), ('centre', 84)])) - assert (codes_get(gid, 'centre', str) == 'lfpw') - assert (codes_get(gid, 'level', int) == 3) + print("set keys using an ordered dictionary...") + codes_set_key_vals(gid, OrderedDict([("level", 3), ("centre", 84)])) + assert codes_get(gid, "centre", str) == "lfpw" + assert codes_get(gid, "level", int) == 3 codes_gts_header(True) codes_gts_header(False) @@ -83,7 +83,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/grib_set_missing.py b/examples/python/grib_set_missing.py index dcf25d99f..939570629 100644 --- a/examples/python/grib_set_missing.py +++ b/examples/python/grib_set_missing.py @@ -14,26 +14,26 @@ import traceback from eccodes import * -INPUT = '../../data/tigge/tigge_ecmf_pl_t.grib' -OUTPUT = 'out.p_set_missing.grib' +INPUT = "../../data/tigge/tigge_ecmf_pl_t.grib" +OUTPUT = "out.p_set_missing.grib" VERBOSE = 1 # verbose error reporting def example(): - fin = open(INPUT, 'rb') - fout = open(OUTPUT, 'wb') + fin = open(INPUT, "rb") + fout = open(OUTPUT, "wb") gid = codes_grib_new_from_file(fin) codes_set_long(gid, "scaledValueOfFirstFixedSurface", 15) codes_set_long(gid, "scaleFactorOfFirstFixedSurface", 1) level = codes_get_double(gid, "level") - assert (level == 1.5) + assert level == 1.5 # set type of level to surface - codes_set(gid, 'typeOfFirstFixedSurface', 'sfc') - codes_set_missing(gid, 'scaleFactorOfFirstFixedSurface') - codes_set_missing(gid, 'scaledValueOfFirstFixedSurface') + codes_set(gid, "typeOfFirstFixedSurface", "sfc") + codes_set_missing(gid, "scaleFactorOfFirstFixedSurface") + codes_set_missing(gid, "scaledValueOfFirstFixedSurface") codes_write(gid, fout) @@ -49,7 +49,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/grib_set_pv.py b/examples/python/grib_set_pv.py index f08f67bfc..0583a855b 100644 --- a/examples/python/grib_set_pv.py +++ b/examples/python/grib_set_pv.py @@ -23,20 +23,20 @@ def example(): """ # read the coefficients from file pv = [] - for line in open('../../data/60_model_levels'): - pv.extend([float(x) for x in line.strip().split('\t')]) + for line in open("../../data/60_model_levels"): + pv.extend([float(x) for x in line.strip().split("\t")]) numberOfLevels = 60 numberOfCoefficients = 2 * (numberOfLevels + 1) - assert (len(pv) == numberOfCoefficients) + assert len(pv) == numberOfCoefficients - fout = open('grib_set_pv.py.temp.grib', 'wb') - gid = codes_grib_new_from_samples('reduced_gg_sfc_grib1') + fout = open("grib_set_pv.py.temp.grib", "wb") + gid = codes_grib_new_from_samples("reduced_gg_sfc_grib1") - codes_set(gid, 'typeOfLevel', 'hybrid') - codes_set(gid, 'level', 2) - codes_set(gid, 'PVPresent', 1) - codes_set_array(gid, 'pv', pv) + codes_set(gid, "typeOfLevel", "hybrid") + codes_set(gid, "level", 2) + codes_set(gid, "PVPresent", 1) + codes_set_array(gid, "pv", pv) codes_write(gid, fout) @@ -51,10 +51,10 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 -if __name__ == '__main__': +if __name__ == "__main__": sys.exit(main()) diff --git a/examples/python/gts_get_keys.py b/examples/python/gts_get_keys.py index 2404b3100..abacf06d3 100644 --- a/examples/python/gts_get_keys.py +++ b/examples/python/gts_get_keys.py @@ -20,13 +20,13 @@ import traceback from eccodes import * -INPUT = '../../data/gts/EGRR20150317121020_00493212.DAT' +INPUT = "../../data/gts/EGRR20150317121020_00493212.DAT" VERBOSE = 1 # verbose error reporting def example(): # open GTS file - f = open(INPUT, 'rb') + f = open(INPUT, "rb") cnt = 0 @@ -43,11 +43,11 @@ def example(): # --------------------------------------------- # get values for keys holding a single value # --------------------------------------------- - keys = ['TT', 'AA', 'II', 'CCCC', 'YY', 'GG', 'gg', 'BBB'] + keys = ["TT", "AA", "II", "CCCC", "YY", "GG", "gg", "BBB"] for key in keys: try: - print(' %s: %s' % (key, codes_get(gid, key))) + print(" %s: %s" % (key, codes_get(gid, key))) except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) @@ -65,7 +65,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 diff --git a/examples/python/keys_iterator_gts.py b/examples/python/keys_iterator_gts.py index 28f8fdeac..543de92fe 100644 --- a/examples/python/keys_iterator_gts.py +++ b/examples/python/keys_iterator_gts.py @@ -16,12 +16,12 @@ import traceback from eccodes import * -INPUT = '../../data/gts.bufr' +INPUT = "../../data/gts.bufr" VERBOSE = 1 # verbose error reporting def example(): - f = open(INPUT, 'rb') + f = open(INPUT, "rb") while 1: gid = gts_new_from_file(f) diff --git a/examples/python/metar_get_keys.py b/examples/python/metar_get_keys.py index 04fdb5658..05ce9c227 100644 --- a/examples/python/metar_get_keys.py +++ b/examples/python/metar_get_keys.py @@ -21,17 +21,25 @@ import traceback from eccodes import * -INPUT = '../../data/metar/metar.txt' +INPUT = "../../data/metar/metar.txt" VERBOSE = 1 # verbose error reporting def print_keys(msg_id): - keys = ['CCCC', 'latitude', 'longitude', 'dateTime', - 'elevation', 'temperature', 'dewPointTemperature', 'qnh'] + keys = [ + "CCCC", + "latitude", + "longitude", + "dateTime", + "elevation", + "temperature", + "dewPointTemperature", + "qnh", + ] for key in keys: try: if codes_is_defined(msg_id, key): - print(' %s: %s' % (key, codes_get(msg_id, key))) + print(" %s: %s" % (key, codes_get(msg_id, key))) except CodesInternalError as err: print('Error with key="%s" : %s' % (key, err.msg)) @@ -62,7 +70,7 @@ def example1(): def example2(): # This time read from a string rather than a file. - metar_str = 'METAR LQMO 022350Z 09003KT 6000 FEW010 SCT035 BKN060 08/08 Q1003=' + metar_str = "METAR LQMO 022350Z 09003KT 6000 FEW010 SCT035 BKN060 08/08 Q1003=" # get handle for message msg_id = codes_new_from_message(metar_str) @@ -81,7 +89,7 @@ def main(): if VERBOSE: traceback.print_exc(file=sys.stderr) else: - sys.stderr.write(err.msg + '\n') + sys.stderr.write(err.msg + "\n") return 1 From 84652311435c2dbb5a387db8a4c0c44405b03ba3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 16 Sep 2021 16:47:25 +0100 Subject: [PATCH 630/683] ECC-1284: bufr_dump: Display of missing strings in arrays --- examples/F90/CMakeLists.txt | 1 + examples/F90/bufr_ecc-1284.f90 | 74 +++++++++++++++++++++++++++++ examples/F90/bufr_ecc-1284.sh | 69 +++++++++++++++++++++++++++ src/grib_dumper_class_bufr_simple.c | 9 +++- src/grib_dumper_class_json.c | 9 +++- 5 files changed, 158 insertions(+), 4 deletions(-) create mode 100644 examples/F90/bufr_ecc-1284.f90 create mode 100755 examples/F90/bufr_ecc-1284.sh diff --git a/examples/F90/CMakeLists.txt b/examples/F90/CMakeLists.txt index 93b6435a1..ecd3a3d1a 100644 --- a/examples/F90/CMakeLists.txt +++ b/examples/F90/CMakeLists.txt @@ -11,6 +11,7 @@ if( HAVE_BUILD_TOOLS ) list( APPEND tests_sanity grib_set_pv grib_set_data + bufr_ecc-1284 grib_ecc-671 ) list( APPEND tests_extra grib_index diff --git a/examples/F90/bufr_ecc-1284.f90 b/examples/F90/bufr_ecc-1284.f90 new file mode 100644 index 000000000..ae3fd5fea --- /dev/null +++ b/examples/F90/bufr_ecc-1284.f90 @@ -0,0 +1,74 @@ +! (C) Copyright 2005- ECMWF. +! +! This software is licensed under the terms of the Apache Licence Version 2.0 +! which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +! +! In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +! virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +! +! +program bufr_encode + use eccodes + implicit none + integer :: iret + integer :: outfile + integer :: ibufr + integer, parameter :: max_strsize = 100 + character(len=max_strsize) , dimension(:),allocatable :: svalues + character(9) :: missing_string + character(len=max_strsize) :: outfile_name + + call getarg(1, outfile_name) + + call codes_bufr_new_from_samples(ibufr,'BUFR4',iret) + if (iret/=CODES_SUCCESS) then + print *,'ERROR creating BUFR from BUFR4' + stop 1 + endif + call codes_set(ibufr,'masterTableNumber',0) + call codes_set(ibufr,'bufrHeaderSubCentre',0) + call codes_set(ibufr,'bufrHeaderCentre',98) + call codes_set(ibufr,'updateSequenceNumber',0) + call codes_set(ibufr,'dataCategory',1) + call codes_set(ibufr,'dataSubCategory',110) + call codes_set(ibufr,'masterTablesVersionNumber',13) + call codes_set(ibufr,'typicalYearOfCentury',12) + call codes_set(ibufr,'typicalMonth',10) + call codes_set(ibufr,'typicalDay',31) + call codes_set(ibufr,'typicalHour',0) + call codes_set(ibufr,'typicalMinute',2) + call codes_set(ibufr,'numberOfSubsets',10) + call codes_set(ibufr,'observedData',1) + call codes_set(ibufr,'compressedData',1) + + ! Create the structure of the data section + call codes_set(ibufr,'unexpandedDescriptors',307022) + + missing_string = char(255)//char(255)//char(255)//char(255)//char(255)//char(255)//char(255)//char(255)//char(255) + + allocate(svalues(10)) + svalues=(/"ARD2-LPTR", & + "ETH2-LPTR", & + "ETH2-LPTR", & + "KALT-LPTR", & + "KALT-LPTR", & + "FHBB-LPTR", & + "FHBB-LPTR", & + "LIND-LPTR", & + "LIND-LPTR", & + "EPFL-LPTR" /) + svalues(3) = missing_string + svalues(10) = missing_string + call codes_set_string_array(ibufr,'stationOrSiteName',svalues) + + ! Encode the keys back in the data section + call codes_set(ibufr,'pack',1) + + call codes_open_file(outfile,outfile_name,'w') + print *,'Wrote ',outfile_name + call codes_write(ibufr,outfile) + call codes_close_file(outfile) + call codes_release(ibufr) + + if(allocated(svalues)) deallocate(svalues) +end program bufr_encode diff --git a/examples/F90/bufr_ecc-1284.sh b/examples/F90/bufr_ecc-1284.sh new file mode 100755 index 000000000..f7a1e04ee --- /dev/null +++ b/examples/F90/bufr_ecc-1284.sh @@ -0,0 +1,69 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh +set -u + +label="bufr_ecc-1284_test_f" +TEMP_DUMP=temp.$label.dump +TEMP_TEXT=temp.$label.txt +TEMP_REF=temp.$label.ref +TEMP_BUFR=temp.$label.bufr + +# Create a BUFR which has some missing entries in the string array stationOrSiteName +${examples_dir}/eccodes_f_bufr_ecc-1284 $TEMP_BUFR + +# -------------- +# Plain dump +# -------------- +${tools_dir}/bufr_dump -p $TEMP_BUFR > $TEMP_DUMP +awk '/stationOrSiteName/{x=NR+10}(NR<=x){print}' $TEMP_DUMP > $TEMP_TEXT + +cat > $TEMP_REF << EOF +stationOrSiteName={ "ARD2-LPTR", + "ETH2-LPTR", + MISSING, + "KALT-LPTR", + "KALT-LPTR", + "FHBB-LPTR", + "FHBB-LPTR", + "LIND-LPTR", + "LIND-LPTR", + MISSING +} +EOF + +diff $TEMP_REF $TEMP_TEXT + +# -------------- +# JSON dump +# -------------- +${tools_dir}/bufr_dump $TEMP_BUFR > $TEMP_DUMP +awk '/stationOrSiteName/{x=NR+12}(NR<=x){print}' $TEMP_DUMP > $TEMP_TEXT + +cat > $TEMP_REF << EOF + "key" : "stationOrSiteName", + "value" : + [ "ARD2-LPTR", + "ETH2-LPTR", + null, + "KALT-LPTR", + "KALT-LPTR", + "FHBB-LPTR", + "FHBB-LPTR", + "LIND-LPTR", + "LIND-LPTR", + null + ], +EOF +diff $TEMP_REF $TEMP_TEXT + +# Clean up +rm -f $TEMP_BUFR $TEMP_DUMP $TEMP_TEXT $TEMP_REF diff --git a/src/grib_dumper_class_bufr_simple.c b/src/grib_dumper_class_bufr_simple.c index 6ae765c69..785b41c2e 100644 --- a/src/grib_dumper_class_bufr_simple.c +++ b/src/grib_dumper_class_bufr_simple.c @@ -568,6 +568,7 @@ static void dump_string_array(grib_dumper* d, grib_accessor* a, const char* comm size_t size = 0, i = 0; grib_context* c = a->context; int err = 0; + int is_missing = 0; long count = 0; int r = 0; grib_handle* h = grib_handle_of_accessor(a); @@ -601,9 +602,13 @@ static void dump_string_array(grib_dumper* d, grib_accessor* a, const char* comm fprintf(self->dumper.out, "{"); for (i = 0; i < size - 1; i++) { - fprintf(self->dumper.out, " \"%s\",\n", values[i]); + is_missing = grib_is_missing_string(a, (unsigned char*)values[i], strlen(values[i])); + if (is_missing) fprintf(self->dumper.out, " %s,\n", "MISSING"); + else fprintf(self->dumper.out, " \"%s\",\n", values[i]); } - fprintf(self->dumper.out, " \"%s\"\n", values[i]); + is_missing = grib_is_missing_string(a, (unsigned char*)values[i], strlen(values[i])); + if (is_missing) fprintf(self->dumper.out, " %s\n", "MISSING"); + else fprintf(self->dumper.out, " \"%s\"\n", values[i]); fprintf(self->dumper.out, "}\n"); diff --git a/src/grib_dumper_class_json.c b/src/grib_dumper_class_json.c index 8a526005c..ccc1f0874 100644 --- a/src/grib_dumper_class_json.c +++ b/src/grib_dumper_class_json.c @@ -381,6 +381,7 @@ static void dump_string_array(grib_dumper* d, grib_accessor* a, const char* comm size_t size = 0, i = 0; grib_context* c = NULL; int err = 0; + int is_missing = 0; long count = 0; c = a->context; @@ -423,9 +424,13 @@ static void dump_string_array(grib_dumper* d, grib_accessor* a, const char* comm fprintf(self->dumper.out, "\n%-*s[", depth, " "); depth += 2; for (i = 0; i < size - 1; i++) { - fprintf(self->dumper.out, "%-*s\"%s\",\n", depth, " ", values[i]); + is_missing = grib_is_missing_string(a, (unsigned char*)values[i], strlen(values[i])); + if (is_missing) fprintf(self->dumper.out, "%-*s%s,\n", depth, " ", "null"); + else fprintf(self->dumper.out, "%-*s\"%s\",\n", depth, " ", values[i]); } - fprintf(self->dumper.out, "%-*s\"%s\"\n", depth, " ", values[i]); + is_missing = grib_is_missing_string(a, (unsigned char*)values[i], strlen(values[i])); + if (is_missing) fprintf(self->dumper.out, "%-*s%s", depth, " ", "null"); + else fprintf(self->dumper.out, "%-*s\"%s\"", depth, " ", values[i]); depth -= 2; fprintf(self->dumper.out, "\n%-*s]", depth, " "); From b594c9cc65cbd4699c668a6efbf9e2d0311775be Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 16 Sep 2021 17:07:38 +0100 Subject: [PATCH 631/683] ECC-1284: clean up --- examples/F90/bufr_ecc-1284.f90 | 2 ++ examples/F90/bufr_ecc-1284.sh | 1 + 2 files changed, 3 insertions(+) diff --git a/examples/F90/bufr_ecc-1284.f90 b/examples/F90/bufr_ecc-1284.f90 index ae3fd5fea..132086659 100644 --- a/examples/F90/bufr_ecc-1284.f90 +++ b/examples/F90/bufr_ecc-1284.f90 @@ -44,6 +44,7 @@ program bufr_encode ! Create the structure of the data section call codes_set(ibufr,'unexpandedDescriptors',307022) + ! Create a string with characters all set to 255 i.e., all bits=1 missing_string = char(255)//char(255)//char(255)//char(255)//char(255)//char(255)//char(255)//char(255)//char(255) allocate(svalues(10)) @@ -57,6 +58,7 @@ program bufr_encode "LIND-LPTR", & "LIND-LPTR", & "EPFL-LPTR" /) + ! Change some entries to be missing (undefined) svalues(3) = missing_string svalues(10) = missing_string call codes_set_string_array(ibufr,'stationOrSiteName',svalues) diff --git a/examples/F90/bufr_ecc-1284.sh b/examples/F90/bufr_ecc-1284.sh index f7a1e04ee..56b635717 100755 --- a/examples/F90/bufr_ecc-1284.sh +++ b/examples/F90/bufr_ecc-1284.sh @@ -24,6 +24,7 @@ ${examples_dir}/eccodes_f_bufr_ecc-1284 $TEMP_BUFR # Plain dump # -------------- ${tools_dir}/bufr_dump -p $TEMP_BUFR > $TEMP_DUMP +# From the dump output, grab 10 lines after stationOrSiteName awk '/stationOrSiteName/{x=NR+10}(NR<=x){print}' $TEMP_DUMP > $TEMP_TEXT cat > $TEMP_REF << EOF From f5b10d4c75330daf3903ebf5670b91bf8037b961 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Fri, 17 Sep 2021 11:33:17 +0100 Subject: [PATCH 632/683] keeping only changes to remove is_efas and is_uerra --- definitions/grib2/boot.def | 4 +- definitions/grib2/cfVarName.def | 64 ++++++++----------- definitions/grib2/localConcepts/cnmc/name.def | 19 ++++++ .../grib2/localConcepts/cnmc/paramId.def | 19 ++++++ .../grib2/localConcepts/cnmc/shortName.def | 19 ++++++ .../grib2/localConcepts/cnmc/units.def | 19 ++++++ definitions/grib2/localConcepts/s2s/name.def | 17 ----- .../grib2/localConcepts/s2s/paramId.def | 17 ----- .../grib2/localConcepts/s2s/shortName.def | 17 ----- definitions/grib2/localConcepts/s2s/units.def | 17 ----- .../grib2/localConcepts/tigge/cfVarName.def | 24 ------- .../grib2/localConcepts/tigge/name.def | 24 ------- .../grib2/localConcepts/tigge/paramId.def | 24 ------- .../grib2/localConcepts/tigge/shortName.def | 24 ------- .../grib2/localConcepts/tigge/units.def | 24 ------- definitions/grib2/name.def | 26 ++++++++ definitions/grib2/paramId.def | 26 ++++++++ definitions/grib2/products_s2s.def | 2 +- definitions/grib2/products_tigge.def | 2 +- definitions/grib2/section.4.def | 8 +-- definitions/grib2/shortName.def | 26 ++++++++ definitions/grib2/tables/24/4.5.table | 28 +++----- definitions/grib2/tables/25/4.5.table | 8 +-- definitions/grib2/tables/27/4.5.table | 14 ++-- definitions/grib2/typeOfLevelConcept.def | 4 +- definitions/grib2/units.def | 26 ++++++++ 26 files changed, 236 insertions(+), 266 deletions(-) delete mode 100644 definitions/grib2/localConcepts/s2s/name.def delete mode 100644 definitions/grib2/localConcepts/s2s/paramId.def delete mode 100644 definitions/grib2/localConcepts/s2s/shortName.def delete mode 100644 definitions/grib2/localConcepts/s2s/units.def delete mode 100644 definitions/grib2/localConcepts/tigge/cfVarName.def delete mode 100644 definitions/grib2/localConcepts/tigge/name.def delete mode 100644 definitions/grib2/localConcepts/tigge/paramId.def delete mode 100644 definitions/grib2/localConcepts/tigge/shortName.def delete mode 100644 definitions/grib2/localConcepts/tigge/units.def diff --git a/definitions/grib2/boot.def b/definitions/grib2/boot.def index 03f0ee66c..a3fea39f1 100644 --- a/definitions/grib2/boot.def +++ b/definitions/grib2/boot.def @@ -16,8 +16,8 @@ constant tablesVersionLatest = 27 : edition_specific; constant million = 1000000 : hidden; constant grib2divider = 1000000; alias extraDimensionPresent=zero; -#alias is_tigge = zero; -#alias is_s2s = zero; +alias is_tigge = zero; +alias is_s2s = zero; #transient is_efas = 0; transient angleSubdivisions=grib2divider; # micro degrees diff --git a/definitions/grib2/cfVarName.def b/definitions/grib2/cfVarName.def index 084ddade4..589beb2bc 100644 --- a/definitions/grib2/cfVarName.def +++ b/definitions/grib2/cfVarName.def @@ -113,24 +113,6 @@ parameterCategory = 2 ; parameterNumber = 1 ; } -#Wind speed -'ws' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 100 ; - scaleFactorOfFirstFixedSurface = 0 ; - } -#Wind speed -'ws' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 1 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 200 ; - scaleFactorOfFirstFixedSurface = 0 ; - } #Unbalanced component of temperature 'uctp' = { discipline = 0 ; @@ -183,16 +165,6 @@ typeOfSecondFixedSurface = 255 ; typeOfStatisticalProcessing = 1 ; } -#10 metre wind gust since previous post-processing -'fg10' = { - discipline = 0 ; - parameterCategory = 2 ; - parameterNumber = 22 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 10 ; - typeOfStatisticalProcessing = 2 ; - typeOfFirstFixedSurface = 103 ; - } #Specific rain water content 'crwc' = { discipline = 0 ; @@ -263,16 +235,6 @@ parameterCategory = 2 ; parameterNumber = 37 ; } -#Maximum temperature at 2 metres since previous post-processing -'mx2t' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 0 ; - typeOfFirstFixedSurface = 103 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 2 ; - typeOfStatisticalProcessing = 2 ; - } #Ozone mass mixing ratio 'o3' = { discipline = 0 ; @@ -4731,12 +4693,38 @@ parameterCategory = 0 ; parameterNumber = 22 ; } +#Soil Moisture +'sm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfSecondFixedSurface = 106 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } #Soil Temperature 'st' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; } +#Soil Temperature +'st' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + scaledValueOfFirstFixedSurface = 0 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + typeOfFirstFixedSurface = 106 ; + scaleFactorOfFirstFixedSurface = 0 ; + is_tigge = 1 ; + } #Snow depth water equivalent 'sd' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/cnmc/name.def b/definitions/grib2/localConcepts/cnmc/name.def index bdabd3447..43a9b0f0b 100644 --- a/definitions/grib2/localConcepts/cnmc/name.def +++ b/definitions/grib2/localConcepts/cnmc/name.def @@ -5,6 +5,14 @@ parameterCategory = 2 ; parameterNumber = 0 ; } +#Sea ice area fraction +'Sea ice area fraction' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + subCentre = 102 ; + is_s2s = 1 ; + } #2 metre dewpoint temperature '2 metre dewpoint temperature' = { discipline = 0 ; @@ -14,6 +22,17 @@ scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; } +#2 metre dewpoint temperature +'2 metre dewpoint temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + subCentre = 102 ; + is_s2s = 1 ; + } #Pressure (S) (not reduced) 'Pressure (S) (not reduced)' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/cnmc/paramId.def b/definitions/grib2/localConcepts/cnmc/paramId.def index 6721c08d6..a0a324fe6 100644 --- a/definitions/grib2/localConcepts/cnmc/paramId.def +++ b/definitions/grib2/localConcepts/cnmc/paramId.def @@ -5,6 +5,14 @@ parameterCategory = 2 ; parameterNumber = 0 ; } +#Sea ice area fraction +'31' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + subCentre = 102 ; + is_s2s = 1 ; + } #2 metre dewpoint temperature '168' = { discipline = 0 ; @@ -14,6 +22,17 @@ scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; } +#2 metre dewpoint temperature +'168' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + subCentre = 102 ; + is_s2s = 1 ; + } #Pressure (S) (not reduced) '500000' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/cnmc/shortName.def b/definitions/grib2/localConcepts/cnmc/shortName.def index 71bcf2db5..2d0496ee2 100644 --- a/definitions/grib2/localConcepts/cnmc/shortName.def +++ b/definitions/grib2/localConcepts/cnmc/shortName.def @@ -5,6 +5,14 @@ parameterCategory = 2 ; parameterNumber = 0 ; } +#Sea ice area fraction +'ci' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + subCentre = 102 ; + is_s2s = 1 ; + } #2 metre dewpoint temperature '2d' = { discipline = 0 ; @@ -14,6 +22,17 @@ scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; } +#2 metre dewpoint temperature +'2d' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + subCentre = 102 ; + is_s2s = 1 ; + } #Pressure (S) (not reduced) 'ps' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/cnmc/units.def b/definitions/grib2/localConcepts/cnmc/units.def index 37051c5aa..177655a57 100644 --- a/definitions/grib2/localConcepts/cnmc/units.def +++ b/definitions/grib2/localConcepts/cnmc/units.def @@ -5,6 +5,14 @@ parameterCategory = 2 ; parameterNumber = 0 ; } +#Sea ice area fraction +'(0 - 1)' = { + discipline = 10 ; + parameterCategory = 2 ; + parameterNumber = 0 ; + subCentre = 102 ; + is_s2s = 1 ; + } #2 metre dewpoint temperature 'K' = { discipline = 0 ; @@ -14,6 +22,17 @@ scaledValueOfFirstFixedSurface = 2 ; scaleFactorOfFirstFixedSurface = 0 ; } +#2 metre dewpoint temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 6 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 2 ; + scaleFactorOfFirstFixedSurface = 0 ; + subCentre = 102 ; + is_s2s = 1 ; + } #Pressure (S) (not reduced) 'Pa' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/s2s/name.def b/definitions/grib2/localConcepts/s2s/name.def deleted file mode 100644 index 3bb3ed9a5..000000000 --- a/definitions/grib2/localConcepts/s2s/name.def +++ /dev/null @@ -1,17 +0,0 @@ -#Sea ice area fraction -'Sea ice area fraction' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - subCentre = 102 ; - } -#2 metre dewpoint temperature -'2 metre dewpoint temperature' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - subCentre = 102 ; - } diff --git a/definitions/grib2/localConcepts/s2s/paramId.def b/definitions/grib2/localConcepts/s2s/paramId.def deleted file mode 100644 index f2bcf79bf..000000000 --- a/definitions/grib2/localConcepts/s2s/paramId.def +++ /dev/null @@ -1,17 +0,0 @@ -#Sea ice area fraction -'31' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - subCentre = 102 ; - } -#2 metre dewpoint temperature -'168' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - subCentre = 102 ; - } diff --git a/definitions/grib2/localConcepts/s2s/shortName.def b/definitions/grib2/localConcepts/s2s/shortName.def deleted file mode 100644 index 6d210a750..000000000 --- a/definitions/grib2/localConcepts/s2s/shortName.def +++ /dev/null @@ -1,17 +0,0 @@ -#Sea ice area fraction -'ci' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - subCentre = 102 ; - } -#2 metre dewpoint temperature -'2d' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - subCentre = 102 ; - } diff --git a/definitions/grib2/localConcepts/s2s/units.def b/definitions/grib2/localConcepts/s2s/units.def deleted file mode 100644 index 2b0a562ab..000000000 --- a/definitions/grib2/localConcepts/s2s/units.def +++ /dev/null @@ -1,17 +0,0 @@ -#Sea ice area fraction -'(0 - 1)' = { - discipline = 10 ; - parameterCategory = 2 ; - parameterNumber = 0 ; - subCentre = 102 ; - } -#2 metre dewpoint temperature -'K' = { - discipline = 0 ; - parameterCategory = 0 ; - parameterNumber = 6 ; - typeOfFirstFixedSurface = 103 ; - scaledValueOfFirstFixedSurface = 2 ; - scaleFactorOfFirstFixedSurface = 0 ; - subCentre = 102 ; - } diff --git a/definitions/grib2/localConcepts/tigge/cfVarName.def b/definitions/grib2/localConcepts/tigge/cfVarName.def deleted file mode 100644 index d6762bcdc..000000000 --- a/definitions/grib2/localConcepts/tigge/cfVarName.def +++ /dev/null @@ -1,24 +0,0 @@ -#Soil Moisture -'sm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfSecondFixedSurface = 106 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Soil Temperature -'st' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - scaledValueOfFirstFixedSurface = 0 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - typeOfFirstFixedSurface = 106 ; - scaleFactorOfFirstFixedSurface = 0 ; - } diff --git a/definitions/grib2/localConcepts/tigge/name.def b/definitions/grib2/localConcepts/tigge/name.def deleted file mode 100644 index b79c43cef..000000000 --- a/definitions/grib2/localConcepts/tigge/name.def +++ /dev/null @@ -1,24 +0,0 @@ -#Soil Moisture -'Soil Moisture' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Soil Temperature -'Soil Temperature' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; -} diff --git a/definitions/grib2/localConcepts/tigge/paramId.def b/definitions/grib2/localConcepts/tigge/paramId.def deleted file mode 100644 index 0d906699f..000000000 --- a/definitions/grib2/localConcepts/tigge/paramId.def +++ /dev/null @@ -1,24 +0,0 @@ -#Soil Moisture -'228039' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Soil Temperature -'228139' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - } diff --git a/definitions/grib2/localConcepts/tigge/shortName.def b/definitions/grib2/localConcepts/tigge/shortName.def deleted file mode 100644 index 16ddd8763..000000000 --- a/definitions/grib2/localConcepts/tigge/shortName.def +++ /dev/null @@ -1,24 +0,0 @@ -#Soil Moisture -'sm' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Soil Temperature -'st' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - } diff --git a/definitions/grib2/localConcepts/tigge/units.def b/definitions/grib2/localConcepts/tigge/units.def deleted file mode 100644 index 2971af794..000000000 --- a/definitions/grib2/localConcepts/tigge/units.def +++ /dev/null @@ -1,24 +0,0 @@ -#Soil Moisture -'kg m**-3' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 22 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - } -#Soil Temperature -'K' = { - discipline = 2 ; - parameterCategory = 0 ; - parameterNumber = 2 ; - typeOfFirstFixedSurface = 106 ; - typeOfSecondFixedSurface = 106 ; - scaledValueOfFirstFixedSurface = 0 ; - scaleFactorOfFirstFixedSurface = 0 ; - scaledValueOfSecondFixedSurface = 2 ; - scaleFactorOfSecondFixedSurface = 1 ; - } diff --git a/definitions/grib2/name.def b/definitions/grib2/name.def index 74bb8a210..62d3ff6ac 100644 --- a/definitions/grib2/name.def +++ b/definitions/grib2/name.def @@ -4693,12 +4693,38 @@ parameterCategory = 0 ; parameterNumber = 22 ; } +#Soil Moisture +'Soil Moisture' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } #Soil Temperature 'Soil Temperature' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; } +#Soil Temperature +'Soil Temperature' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } #Snow depth water equivalent 'Snow depth water equivalent' = { discipline = 0 ; diff --git a/definitions/grib2/paramId.def b/definitions/grib2/paramId.def index c81359224..5baf2aeae 100644 --- a/definitions/grib2/paramId.def +++ b/definitions/grib2/paramId.def @@ -4693,12 +4693,38 @@ parameterCategory = 0 ; parameterNumber = 22 ; } +#Soil Moisture +'228039' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } #Soil Temperature '228139' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; } +#Soil Temperature +'228139' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } #Snow depth water equivalent '228141' = { discipline = 0 ; diff --git a/definitions/grib2/products_s2s.def b/definitions/grib2/products_s2s.def index 99e686f73..48d09e587 100644 --- a/definitions/grib2/products_s2s.def +++ b/definitions/grib2/products_s2s.def @@ -3,7 +3,7 @@ # S2S constant marsClass = 's2'; constant marsModel = 'glob'; -#alias is_s2s = one; +alias is_s2s = one; alias parameter.paramId=paramId; alias parameter.shortName=shortName; diff --git a/definitions/grib2/products_tigge.def b/definitions/grib2/products_tigge.def index adf79db7f..9a3a4ae81 100644 --- a/definitions/grib2/products_tigge.def +++ b/definitions/grib2/products_tigge.def @@ -3,7 +3,7 @@ # Tigge constant marsClass = 'ti'; constant marsModel = 'glob'; -#alias is_tigge = one; +alias is_tigge = one; alias tigge_short_name=shortName; alias short_name=shortName; diff --git a/definitions/grib2/section.4.def b/definitions/grib2/section.4.def index b49b235ce..c40755c2e 100644 --- a/definitions/grib2/section.4.def +++ b/definitions/grib2/section.4.def @@ -24,10 +24,10 @@ if (centre==7 || centre==46) { } concept datasetForLocal(unknown) { - "tigge" = {productionStatusOfProcessedData=4;} - "tigge" = {productionStatusOfProcessedData=5;} - "s2s" = {productionStatusOfProcessedData=6;} - "s2s" = {productionStatusOfProcessedData=7;} +# "tigge" = {productionStatusOfProcessedData=4;} +# "tigge" = {productionStatusOfProcessedData=5;} +# "s2s" = {productionStatusOfProcessedData=6;} +# "s2s" = {productionStatusOfProcessedData=7;} "hydro" = {marsClass="ce";} # EFAS/GLOFAS "hydro" = {marsClass="ul";} #ULYSSES "uerra" = {productionStatusOfProcessedData=8;} # UERRA diff --git a/definitions/grib2/shortName.def b/definitions/grib2/shortName.def index 239871d9a..1392bd480 100644 --- a/definitions/grib2/shortName.def +++ b/definitions/grib2/shortName.def @@ -4693,12 +4693,38 @@ parameterCategory = 0 ; parameterNumber = 22 ; } +#Soil Moisture +'sm' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } #Soil Temperature 'st' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; } +#Soil Temperature +'st' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } #Snow depth water equivalent 'sd' = { discipline = 0 ; diff --git a/definitions/grib2/tables/24/4.5.table b/definitions/grib2/tables/24/4.5.table index 65e7052e8..a6840e55e 100644 --- a/definitions/grib2/tables/24/4.5.table +++ b/definitions/grib2/tables/24/4.5.table @@ -13,9 +13,9 @@ 11 11 Cumulonimbus (CB) base (m) 12 12 Cumulonimbus (CB) top (m) 13 13 Lowest level where vertically integrated cloud cover exceeds the specified percentage (cloud base for a given percentage cloud cover) (%) -14 14 Level of free convection (LFC) (-) -15 15 Convective condensation level (CCL) (-) -16 16 Level of neutral buoyancy or equilibrium level (LNB) (-) +14 14 Level of free convection (LFC) +15 15 Convective condensation level (CCL) +16 16 Level of neutral buoyancy or equilibrium level (LNB) # 17-19 Reserved 20 20 Isothermal level (K) 21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) @@ -23,14 +23,7 @@ 23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) 24 24 Highest level where air concentration exceeds the specified value (top for a given threshold of air concentration) (Bq m-3) 25 25 Highest level where radar reflectivity exceeds the specified value (echo top for a given threshold of reflectivity) (dBZ) -# 26-29 Reserved -30 30 Specified radius from the center of the Sun (m) -31 31 Solar photosphere -32 32 Ionospheric D-region level -33 33 Ionospheric E-region level -34 34 Ionospheric F1-region level -35 35 Ionospheric F2-region level -# 36-99 Reserved +# 26-99 Reserved 100 pl Isobaric surface (Pa) 101 sfc Mean sea level 102 102 Specific altitude above mean sea level (m) @@ -45,7 +38,7 @@ 111 111 Eta level (-) 112 112 Reserved 113 113 Logarithmic hybrid level -114 sol Snow level (Numeric) +114 114 Snow level (Numeric) 115 115 Sigma height level # 116 Reserved 117 117 Mixed layer depth (m) @@ -54,9 +47,8 @@ # 120-149 Reserved 150 150 Generalized vertical height coordinate 151 sol Soil level (Numeric) -152 sol Sea ice level (Numeric) -# 153-159 Reserved -160 o2d Depth below sea level (m) +# 152-159 Reserved +160 160 Depth below sea level (m) 161 161 Depth below water surface (m) 162 sfc Lake or river bottom (-) 163 163 Bottom of sediment layer (-) @@ -64,9 +56,9 @@ 165 165 Bottom of sediment layer penetrated by thermal wave (-) 166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) -168 o3d Ocean model level (Numeric) -169 o2d Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) -170 o2d Ocean level defined by water potential temperature difference from near-surface to level (K) +168 168 Ocean model level (Numeric) +169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) +170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) # 171-173 Reserved 174 sfc Top surface of ice on sea, lake or river 175 175 Top surface of ice, under snow cover, on sea, lake or river diff --git a/definitions/grib2/tables/25/4.5.table b/definitions/grib2/tables/25/4.5.table index 65e7052e8..98d6308ac 100644 --- a/definitions/grib2/tables/25/4.5.table +++ b/definitions/grib2/tables/25/4.5.table @@ -56,7 +56,7 @@ 151 sol Soil level (Numeric) 152 sol Sea ice level (Numeric) # 153-159 Reserved -160 o2d Depth below sea level (m) +160 160 Depth below sea level (m) 161 161 Depth below water surface (m) 162 sfc Lake or river bottom (-) 163 163 Bottom of sediment layer (-) @@ -64,9 +64,9 @@ 165 165 Bottom of sediment layer penetrated by thermal wave (-) 166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) -168 o3d Ocean model level (Numeric) -169 o2d Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) -170 o2d Ocean level defined by water potential temperature difference from near-surface to level (K) +168 168 Ocean model level (Numeric) +169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) +170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) # 171-173 Reserved 174 sfc Top surface of ice on sea, lake or river 175 175 Top surface of ice, under snow cover, on sea, lake or river diff --git a/definitions/grib2/tables/27/4.5.table b/definitions/grib2/tables/27/4.5.table index f040f8bca..c3d56dfb6 100644 --- a/definitions/grib2/tables/27/4.5.table +++ b/definitions/grib2/tables/27/4.5.table @@ -19,7 +19,7 @@ 17 sfc Departure level of the most unstable parcel of air (MUDL) 18 sfc Departure level of a mixed layer parcel of air with specified layer depth (Pa) # 19 Reserved -20 o2d Isothermal level (K) +20 20 Isothermal level (K) 21 21 Lowest level where mass density exceeds the specified value (base for a given threshold of mass density) (kg m-3) 22 22 Highest level where mass density exceeds the specified value (top for a given threshold of mass density) (kg m-3) 23 23 Lowest level where air concentration exceeds the specified value (base for a given threshold of air concentration) (Bq m-3) @@ -58,7 +58,7 @@ 151 sol Soil level (Numeric) 152 sol Sea-ice level (Numeric) # 153-159 Reserved -160 o2d Depth below sea level (m) +160 160 Depth below sea level (m) 161 161 Depth below water surface (m) 162 sfc Lake or river bottom (-) 163 163 Bottom of sediment layer (-) @@ -66,12 +66,12 @@ 165 165 Bottom of sediment layer penetrated by thermal wave (-) 166 sfc Mixing layer (-) 167 167 Bottom of root zone (-) -168 o3d Ocean model level (Numeric) -169 o2d Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) -170 o2d Ocean level defined by water potential temperature difference from near-surface to level (K) +168 168 Ocean model level (Numeric) +169 169 Ocean level defined by water density (sigma-theta) difference from near-surface to level (kg m-3) +170 170 Ocean level defined by water potential temperature difference from near-surface to level (K) # 171-173 Reserved -174 o2d Top surface of ice on sea, lake or river -175 o2d Top surface of ice, under snow cover, on sea, lake or river +174 sfc Top surface of ice on sea, lake or river +175 175 Top surface of ice, under snow cover, on sea, lake or river 176 176 Bottom surface (underside) ice on sea, lake or river 177 sfc Deep soil (of indefinite depth) # 178 Reserved diff --git a/definitions/grib2/typeOfLevelConcept.def b/definitions/grib2/typeOfLevelConcept.def index 2ab82bfc8..f39a33095 100644 --- a/definitions/grib2/typeOfLevelConcept.def +++ b/definitions/grib2/typeOfLevelConcept.def @@ -41,9 +41,7 @@ 'generalVerticalLayer' = {genVertHeightCoords=1; typeOfFirstFixedSurface=150; typeOfSecondFixedSurface=150; NV=6;} 'depthBelowSea' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=255;} 'oceanSurface' = {typeOfFirstFixedSurface=160; scaleFactorOfFirstFixedSurface=0; scaledValueOfFirstFixedSurface=0; typeOfSecondFixedSurface=255;} -'oceanDepthLayer' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=160;} -'oceanModelLevel' = {typeOfFirstFixedSurface=168; typeOfSecondFixedSurface=255;} -'oceanModelLayer' = {typeOfFirstFixedSurface=168; typeOfSecondFixedSurface=168;} +'oceanLayer' = {typeOfFirstFixedSurface=160; typeOfSecondFixedSurface=160;} 'entireAtmosphere' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=8;} 'entireOcean' = {typeOfFirstFixedSurface=1; typeOfSecondFixedSurface=9;} 'snow' = {typeOfFirstFixedSurface=114; typeOfSecondFixedSurface=255;} diff --git a/definitions/grib2/units.def b/definitions/grib2/units.def index e96670959..5134eefe2 100644 --- a/definitions/grib2/units.def +++ b/definitions/grib2/units.def @@ -4693,12 +4693,38 @@ parameterCategory = 0 ; parameterNumber = 22 ; } +#Soil Moisture +'kg m**-3' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } #Soil Temperature 'K' = { discipline = 2 ; parameterCategory = 0 ; parameterNumber = 2 ; } +#Soil Temperature +'K' = { + discipline = 2 ; + parameterCategory = 0 ; + parameterNumber = 2 ; + typeOfFirstFixedSurface = 106 ; + typeOfSecondFixedSurface = 106 ; + scaledValueOfFirstFixedSurface = 0 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfSecondFixedSurface = 2 ; + scaleFactorOfSecondFixedSurface = 1 ; + is_tigge = 1 ; + } #Snow depth water equivalent 'kg m**-2' = { discipline = 0 ; From c12a0c90b0c886d0b86b1588d22f789daf5f4eb3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 17 Sep 2021 13:25:57 +0100 Subject: [PATCH 633/683] ECC-1283: bufr_compare: Does not detect differences in string arrays --- tools/bufr_compare.c | 48 ++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 46 insertions(+), 2 deletions(-) diff --git a/tools/bufr_compare.c b/tools/bufr_compare.c index 947f2ae28..6086577e9 100644 --- a/tools/bufr_compare.c +++ b/tools/bufr_compare.c @@ -675,7 +675,8 @@ static int compare_values(grib_runtime_options* options, grib_handle* handle1, g int countdiff; int isMissing1 = 0, isMissing2 = 0; - char *sval1 = NULL, *sval2 = NULL; +// char *sval1 = NULL, *sval2 = NULL; + char **svals1 = NULL, **svals2 = NULL; unsigned char *uval1 = NULL, *uval2 = NULL; double *dval1 = NULL, *dval2 = NULL; long *lval1 = NULL, *lval2 = NULL; @@ -792,6 +793,49 @@ static int compare_values(grib_runtime_options* options, grib_handle* handle1, g case GRIB_TYPE_STRING: if (verbose) printf(" as string\n"); + + svals1 = (char**)grib_context_malloc_clear(handle1->context, len1 * sizeof(char*)); + svals2 = (char**)grib_context_malloc_clear(handle2->context, len2 * sizeof(char*)); + + if ((err1 = grib_get_string_array(handle1, name, svals1, &len1)) != GRIB_SUCCESS) { + printInfo(handle1); + printf("Oops... cannot get string value of [%s] in %s field: %s\n", + name, first_str, grib_get_error_message(err1)); + save_error(c, name); + } + if ((err2 = grib_get_string_array(handle2, name, svals2, &len2)) != GRIB_SUCCESS) { + printInfo(handle1); + printf("Oops... cannot get string value of [%s] in %s field: %s\n", + name, second_str, grib_get_error_message(err2)); + save_error(c, name); + } + + if (err1 == GRIB_SUCCESS && err2 == GRIB_SUCCESS && len1 != len2) { + printInfo(handle1); + printf("Different size for \"%s\" [%ld] [%ld]\n", name, (long)len1, (long)len2); + err1 = GRIB_INTERNAL_ERROR; + save_error(c, name); + } + if (err1 == GRIB_SUCCESS && err2 == GRIB_SUCCESS && len1 == len2) { + int ii; + countdiff = 0; + for (ii = 0; ii < len1; ii++) { + if (grib_inline_strcmp(svals1[ii], svals2[ii]) != 0) { //lval1[ii] != lval2[ii]) + countdiff++; + } + } + + if (countdiff) { + printInfo(handle1); + save_error(c, name); + err1 = GRIB_VALUE_MISMATCH; + if (len1 == 1) + printf("string [%s]: [%s] != [%s]\n", name, *svals1, *svals2); + else + printf("string [%s] %d out of %ld different\n", name, countdiff, (long)len1); + } + } +#if 0 /* See ECC-710: It is very slow getting the key length this way */ /*grib_get_string_length(handle1,name,&len1);*/ /*grib_get_string_length(handle2,name,&len2);*/ @@ -836,7 +880,7 @@ static int compare_values(grib_runtime_options* options, grib_handle* handle1, g grib_context_free(handle1->context, sval1); grib_context_free(handle2->context, sval2); - +#endif if (err1) return err1; if (err2) From e337247173f6894ae97f6b15d9a9eb10d0bd6e14 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 17 Sep 2021 18:13:17 +0100 Subject: [PATCH 634/683] ECC-1284: use the Fortran REPEAT statement --- examples/F90/bufr_ecc-1284.f90 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/F90/bufr_ecc-1284.f90 b/examples/F90/bufr_ecc-1284.f90 index 132086659..69600a1c7 100644 --- a/examples/F90/bufr_ecc-1284.f90 +++ b/examples/F90/bufr_ecc-1284.f90 @@ -10,13 +10,13 @@ program bufr_encode use eccodes implicit none - integer :: iret - integer :: outfile - integer :: ibufr - integer, parameter :: max_strsize = 100 + integer :: iret, outfile + integer :: ibufr + integer, parameter :: max_strsize = 100 + character (len=1), parameter :: missing_char = char(255) + character(9) :: missing_string + character(len=max_strsize) :: outfile_name character(len=max_strsize) , dimension(:),allocatable :: svalues - character(9) :: missing_string - character(len=max_strsize) :: outfile_name call getarg(1, outfile_name) @@ -44,8 +44,8 @@ program bufr_encode ! Create the structure of the data section call codes_set(ibufr,'unexpandedDescriptors',307022) - ! Create a string with characters all set to 255 i.e., all bits=1 - missing_string = char(255)//char(255)//char(255)//char(255)//char(255)//char(255)//char(255)//char(255)//char(255) + ! Create a string with characters all set to 255 (all bits=1) + missing_string = repeat(missing_char, 9) allocate(svalues(10)) svalues=(/"ARD2-LPTR", & From e13118ef9ccfc1e4e55d16af3302159f031d0213 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 18 Sep 2021 22:52:21 +0100 Subject: [PATCH 635/683] Remove the transients is_efas and is_uerra --- definitions/grib2/boot.def | 1 - definitions/grib2/local.98.41.def | 2 -- definitions/grib2/section.1.def | 8 -------- 3 files changed, 11 deletions(-) diff --git a/definitions/grib2/boot.def b/definitions/grib2/boot.def index a3fea39f1..44cf284ae 100644 --- a/definitions/grib2/boot.def +++ b/definitions/grib2/boot.def @@ -18,7 +18,6 @@ constant grib2divider = 1000000; alias extraDimensionPresent=zero; alias is_tigge = zero; alias is_s2s = zero; -#transient is_efas = 0; transient angleSubdivisions=grib2divider; # micro degrees meta gts_header gts_header() : no_copy,hidden,read_only; diff --git a/definitions/grib2/local.98.41.def b/definitions/grib2/local.98.41.def index 810fde8a9..5619b7b47 100644 --- a/definitions/grib2/local.98.41.def +++ b/definitions/grib2/local.98.41.def @@ -38,8 +38,6 @@ unsigned[2] anoffsetLast = missing(): dump, can_be_missing; unsigned[2] anoffsetFrequency = missing(): dump, can_be_missing; # Boolean -#remove is_efas; -#transient is_efas = 1; transient lsdate_bug = 1: hidden; # See ECC-707 # Note: the key typeOfPostProcessing is in the PDTNs 70, 71, 72 and 73 diff --git a/definitions/grib2/section.1.def b/definitions/grib2/section.1.def index cbd10c07c..a9bca14ce 100644 --- a/definitions/grib2/section.1.def +++ b/definitions/grib2/section.1.def @@ -116,14 +116,6 @@ if ( ((section1Length > 21) or setCalendarId > 0) and deleteCalendarId == 0) { template calendarIdentification "grib2/template.1.[calendarIdentificationTemplateNumber:l].def"; } -#concept is_uerra(zero) { -# '1' = {productionStatusOfProcessedData=10;} -# '1' = {productionStatusOfProcessedData=11;} -# '1' = {productionStatusOfProcessedData=9;} -# '1' = {productionStatusOfProcessedData=8;} -# '0' = {dummy=1;} -#} - constant conceptsMasterDir="grib2" : hidden; constant conceptsLocalDirAll="grib2/localConcepts/[centre:s]" : hidden; constant conceptsLocalDirECMF="grib2/localConcepts/ecmf" : hidden; From 2d4923435ada085a2e209027ecea59868f51eca0 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 18 Sep 2021 23:04:31 +0100 Subject: [PATCH 636/683] Remove test grib_ecc-1255.sh (not relevant anymore) --- tests/CMakeLists.txt | 1 - tests/grib_ecc-1255.sh | 43 ------------------------------------------ 2 files changed, 44 deletions(-) delete mode 100755 tests/grib_ecc-1255.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index c5716238e..685557296 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -84,7 +84,6 @@ if( HAVE_BUILD_TOOLS ) grib_ecc-1195 grib_ecc-1212 grib_ecc-1230 - grib_ecc-1255 grib_ecc-1258 grib_ecc-1260 grib_ecc-1261 diff --git a/tests/grib_ecc-1255.sh b/tests/grib_ecc-1255.sh deleted file mode 100755 index e5fb1dfe3..000000000 --- a/tests/grib_ecc-1255.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/sh -# (C) Copyright 2005- ECMWF. -# -# This software is licensed under the terms of the Apache Licence Version 2.0 -# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. -# -# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by -# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. -# - -. ./include.sh -set -u - -label="grib_ecc-1255-test" -tempGrib=temp.$label.grib -tempFilt1=temp.1.$label.filt -tempFilt2=temp.2.$label.filt -sample_grib2=$ECCODES_SAMPLES_PATH/GRIB2.tmpl - -# Non-EFAS GRIB -# ----------------- -cat > $tempFilt1 < $tempFilt2 < Date: Sat, 18 Sep 2021 23:05:00 +0100 Subject: [PATCH 637/683] Remove tests for transients is_efas --- tests/grib_efas.sh | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/tests/grib_efas.sh b/tests/grib_efas.sh index 6e2d563d5..4124974ca 100755 --- a/tests/grib_efas.sh +++ b/tests/grib_efas.sh @@ -22,31 +22,28 @@ temp3=temp3.$label.grib # Create a starting GRIB with a basic local definition for MARS ${tools_dir}/grib_set -s tablesVersion=19,setLocalDefinition=1,stream=efas $ECCODES_SAMPLES_PATH/GRIB2.tmpl $sample -# Check is_efas key -grib_check_key_equals $sample is_efas 0 - # Test a non-ensemble, instantaneous field ${tools_dir}/grib_set -s productDefinitionTemplateNumber=0 $sample $temp1 ${tools_dir}/grib_set -s setLocalDefinition=1,localDefinitionNumber=41 $temp1 $temp2 -grib_check_key_equals $temp2 is_efas,productDefinitionTemplateNumber '1 70' +grib_check_key_equals $temp2 productDefinitionTemplateNumber '70' grib_check_key_exists $temp2 isFillup,dateOfForecast,timeOfForecast,anoffset # Test an ensemble, instantaneous field ${tools_dir}/grib_set -s productDefinitionTemplateNumber=1,number=13 $sample $temp1 ${tools_dir}/grib_set -s setLocalDefinition=1,localDefinitionNumber=41 $temp1 $temp2 -grib_check_key_equals $temp2 is_efas,number,productDefinitionTemplateNumber '1 13 71' +grib_check_key_equals $temp2 number,productDefinitionTemplateNumber '13 71' # Test a non-ensemble, non-instantaneous field ${tools_dir}/grib_set -s productDefinitionTemplateNumber=8,stepType=accum $sample $temp1 ${tools_dir}/grib_set -s setLocalDefinition=1,localDefinitionNumber=41 $temp1 $temp2 -grib_check_key_equals $temp2 is_efas,productDefinitionTemplateNumber,typeOfStatisticalProcessing '1 72 1' +grib_check_key_equals $temp2 productDefinitionTemplateNumber,typeOfStatisticalProcessing '72 1' # Test an ensemble, non-instantaneous field (plus mars.origin tests) ${tools_dir}/grib_set -s productDefinitionTemplateNumber=11,stepType=accum $sample $temp1 ${tools_dir}/grib_set -s \ setLocalDefinition=1,localDefinitionNumber=41,type=pf,inputOriginatingCentre=ecmf,typeOfPostProcessing=1 \ $temp1 $temp2 -grib_check_key_equals $temp2 is_efas,productDefinitionTemplateNumber,typeOfStatisticalProcessing '1 73 1' +grib_check_key_equals $temp2 productDefinitionTemplateNumber,typeOfStatisticalProcessing '73 1' grib_check_key_equals $temp2 mars.origin 'ecmf' grib_check_key_equals $temp2 mars.model 'lisflood' @@ -57,10 +54,10 @@ grib_check_key_equals $temp2 mars.model 'geff' # Parameter tests ${tools_dir}/grib_set -s paramId=260267 $temp2 $temp3 -grib_check_key_equals $temp3 paramId,is_efas,lengthOfTimeRange '260267 1 6' +grib_check_key_equals $temp3 paramId,lengthOfTimeRange '260267 6' ${tools_dir}/grib_set -s paramId=260268 $temp2 $temp3 -grib_check_key_equals $temp3 paramId,is_efas,lengthOfTimeRange '260268 1 24' +grib_check_key_equals $temp3 paramId,lengthOfTimeRange '260268 24' # Use stepType ${tools_dir}/grib_set -s localDefinitionNumber=41,stepType=accum $sample $temp1 From b26d806ea265985719e84ed80995c242c3482e12 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 19 Sep 2021 13:16:52 +0100 Subject: [PATCH 638/683] Add guards for grib_is_missing_string --- src/grib_accessor_class_bufr_data_element.c | 2 +- src/grib_parse_utils.c | 1 + src/grib_value.c | 4 +++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/grib_accessor_class_bufr_data_element.c b/src/grib_accessor_class_bufr_data_element.c index 937ab1192..19d5c646d 100644 --- a/src/grib_accessor_class_bufr_data_element.c +++ b/src/grib_accessor_class_bufr_data_element.c @@ -603,7 +603,7 @@ static int get_native_type(grib_accessor* a) { grib_accessor_bufr_data_element* self = (grib_accessor_bufr_data_element*)a; int ret = GRIB_TYPE_DOUBLE; - + DebugAssert(self); switch (self->type) { case BUFR_DESCRIPTOR_TYPE_STRING: ret = GRIB_TYPE_STRING; diff --git a/src/grib_parse_utils.c b/src/grib_parse_utils.c index 230d68e32..f74fd1eb6 100644 --- a/src/grib_parse_utils.c +++ b/src/grib_parse_utils.c @@ -314,6 +314,7 @@ int grib_accessors_list_print(grib_handle* h, grib_accessors_list* al, const cha char long_format[] = "%ld"; /* default format for printing integer keys */ char default_separator[] = " "; grib_accessor* a = al->accessor; + DebugAssert(a); /* Number of columns specified as 0 means print on ONE line i.e. num cols = infinity */ if (maxcols == 0) diff --git a/src/grib_value.c b/src/grib_value.c index 59a75c6b6..9f27282e2 100644 --- a/src/grib_value.c +++ b/src/grib_value.c @@ -599,7 +599,9 @@ int grib_is_missing_string(grib_accessor* a, unsigned char* x, size_t len) } } - ret = (a == NULL || ((a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) && ret == 1)) ? 1 : 0; + if (!a) return ret; + + ret = ( ((a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) && ret == 1) ) ? 1 : 0; return ret; } From 2fa1ae27a1d7dcb31319a541ea65ac4264939eb8 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 19 Sep 2021 14:09:47 +0100 Subject: [PATCH 639/683] Fix remaining test (class must be 'ce') --- tests/grib_efas.sh | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/tests/grib_efas.sh b/tests/grib_efas.sh index 4124974ca..3c2524188 100755 --- a/tests/grib_efas.sh +++ b/tests/grib_efas.sh @@ -48,7 +48,7 @@ grib_check_key_equals $temp2 mars.origin 'ecmf' grib_check_key_equals $temp2 mars.model 'lisflood' ${tools_dir}/grib_set -s \ - setLocalDefinition=1,localDefinitionNumber=41,type=fc,inputOriginatingCentre=ecmf,typeOfPostProcessing=10 \ + setLocalDefinition=1,localDefinitionNumber=41,class=ce,type=fc,inputOriginatingCentre=ecmf,typeOfPostProcessing=10 \ $temp1 $temp2 grib_check_key_equals $temp2 mars.model 'geff' @@ -60,7 +60,7 @@ ${tools_dir}/grib_set -s paramId=260268 $temp2 $temp3 grib_check_key_equals $temp3 paramId,lengthOfTimeRange '260268 24' # Use stepType -${tools_dir}/grib_set -s localDefinitionNumber=41,stepType=accum $sample $temp1 +${tools_dir}/grib_set -s localDefinitionNumber=41,class=ce,stepType=accum $sample $temp1 ${tools_dir}/grib_set -s paramId=260267 $temp1 $temp2 # Test anoffset calculation @@ -72,18 +72,22 @@ grib_check_key_equals $temp1 anoffsetFirst,anoffsetLast,anoffsetFrequency "MISSI # MARS step types="sfo fu go" for t in $types; do - ${tools_dir}/grib_set -s setLocalDefinition=1,localDefinitionNumber=41,type=$t,stepType=accum,stepRange=12-36,paramId=260268 \ + ${tools_dir}/grib_set -s \ + setLocalDefinition=1,localDefinitionNumber=41,class=ce,type=$t,stepType=accum,stepRange=12-36 \ $sample $temp1 - grib_check_key_equals $temp1 mars.step 36 # end step (ECC-701) - grib_check_key_exists $temp1 mars.anoffset + ${tools_dir}/grib_set -s paramId=260268 $temp1 $temp2 + grib_check_key_equals $temp2 mars.step 36 # end step (ECC-701) + grib_check_key_exists $temp2 mars.anoffset #${tools_dir}/grib_dump -Da $temp1 | grep mars.step done types="fc pf cf" for t in $types; do - ${tools_dir}/grib_set -s setLocalDefinition=1,localDefinitionNumber=41,type=$t,stepType=accum,stepRange=12-36,paramId=260268 \ + ${tools_dir}/grib_set -s \ + setLocalDefinition=1,localDefinitionNumber=41,class=ce,type=$t,stepType=accum,stepRange=12-36 \ $sample $temp1 - grib_check_key_equals $temp1 mars.step 36 # end step + ${tools_dir}/grib_set -s paramId=260268 $temp1 $temp2 + grib_check_key_equals $temp2 mars.step 36 # end step #${tools_dir}/grib_dump -Da $temp1 | grep mars.step done From 03cd35392530f3b39ca7507427c94ed488534cde Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 20 Sep 2021 13:47:55 +0100 Subject: [PATCH 640/683] Testing: For EFAS sample GRIB class must be 'ce' --- tests/grib_efas.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/tests/grib_efas.sh b/tests/grib_efas.sh index 3c2524188..58aa70273 100755 --- a/tests/grib_efas.sh +++ b/tests/grib_efas.sh @@ -20,7 +20,9 @@ temp3=temp3.$label.grib # Stream EFAS # --------------------------- # Create a starting GRIB with a basic local definition for MARS -${tools_dir}/grib_set -s tablesVersion=19,setLocalDefinition=1,stream=efas $ECCODES_SAMPLES_PATH/GRIB2.tmpl $sample +# The MARS class must be set to categorise the EFAS parameters as 'hydrological' +# See key 'datasetForLocal' +${tools_dir}/grib_set -s tablesVersion=19,setLocalDefinition=1,class=ce,stream=efas $ECCODES_SAMPLES_PATH/GRIB2.tmpl $sample # Test a non-ensemble, instantaneous field ${tools_dir}/grib_set -s productDefinitionTemplateNumber=0 $sample $temp1 @@ -48,7 +50,7 @@ grib_check_key_equals $temp2 mars.origin 'ecmf' grib_check_key_equals $temp2 mars.model 'lisflood' ${tools_dir}/grib_set -s \ - setLocalDefinition=1,localDefinitionNumber=41,class=ce,type=fc,inputOriginatingCentre=ecmf,typeOfPostProcessing=10 \ + setLocalDefinition=1,localDefinitionNumber=41,type=fc,inputOriginatingCentre=ecmf,typeOfPostProcessing=10 \ $temp1 $temp2 grib_check_key_equals $temp2 mars.model 'geff' @@ -60,7 +62,7 @@ ${tools_dir}/grib_set -s paramId=260268 $temp2 $temp3 grib_check_key_equals $temp3 paramId,lengthOfTimeRange '260268 24' # Use stepType -${tools_dir}/grib_set -s localDefinitionNumber=41,class=ce,stepType=accum $sample $temp1 +${tools_dir}/grib_set -s localDefinitionNumber=41,stepType=accum $sample $temp1 ${tools_dir}/grib_set -s paramId=260267 $temp1 $temp2 # Test anoffset calculation @@ -73,7 +75,7 @@ grib_check_key_equals $temp1 anoffsetFirst,anoffsetLast,anoffsetFrequency "MISSI types="sfo fu go" for t in $types; do ${tools_dir}/grib_set -s \ - setLocalDefinition=1,localDefinitionNumber=41,class=ce,type=$t,stepType=accum,stepRange=12-36 \ + setLocalDefinition=1,localDefinitionNumber=41,type=$t,stepType=accum,stepRange=12-36 \ $sample $temp1 ${tools_dir}/grib_set -s paramId=260268 $temp1 $temp2 grib_check_key_equals $temp2 mars.step 36 # end step (ECC-701) @@ -84,7 +86,7 @@ done types="fc pf cf" for t in $types; do ${tools_dir}/grib_set -s \ - setLocalDefinition=1,localDefinitionNumber=41,class=ce,type=$t,stepType=accum,stepRange=12-36 \ + setLocalDefinition=1,localDefinitionNumber=41,type=$t,stepType=accum,stepRange=12-36 \ $sample $temp1 ${tools_dir}/grib_set -s paramId=260268 $temp1 $temp2 grib_check_key_equals $temp2 mars.step 36 # end step From 2a54e418f9648965b131e1b95afd3e79a3597144 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 20 Sep 2021 13:48:11 +0100 Subject: [PATCH 641/683] No need to set conceptsDir2 --- definitions/grib2/section.4.def | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/definitions/grib2/section.4.def b/definitions/grib2/section.4.def index c40755c2e..05669c86f 100644 --- a/definitions/grib2/section.4.def +++ b/definitions/grib2/section.4.def @@ -38,8 +38,8 @@ concept datasetForLocal(unknown) { } if (!(datasetForLocal is "unknown")) { -constant conceptsDir1 = "grib2/localConcepts/[datasetForLocal]": hidden; -constant conceptsDir2 = "grib2": hidden; + constant conceptsDir1 = "grib2/localConcepts/[datasetForLocal]": hidden; + # conceptsDir2 remains unchanged } codetable[2] productDefinitionTemplateNumber('4.0.table',masterDir,localDir) : dump; From 4ecc87ee020b7ab1e2a8a8aac8f42eb2274e7e70 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 20 Sep 2021 16:55:38 +0100 Subject: [PATCH 642/683] Definitions: Spelling --- definitions/grib2/tables/26/4.246.table | 12 ++++++------ definitions/grib2/tables/27/4.246.table | 10 +++++----- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/definitions/grib2/tables/26/4.246.table b/definitions/grib2/tables/26/4.246.table index ab22dbe1e..0ca9c0c98 100644 --- a/definitions/grib2/tables/26/4.246.table +++ b/definitions/grib2/tables/26/4.246.table @@ -1,7 +1,7 @@ # Code table 4.246 - Thunderstorm intensity -0 0 No thunderstorm occurence -1 1 Weak thunderstorm -2 2 Moderate thunderstorm -3 3 Severe thunderstorm -# 4-254 Reserved -255 255 Missing +0 0 No thunderstorm occurrence +1 1 Weak thunderstorm +2 2 Moderate thunderstorm +3 3 Severe thunderstorm +# 4-254 Reserved +255 255 Missing diff --git a/definitions/grib2/tables/27/4.246.table b/definitions/grib2/tables/27/4.246.table index ca791939e..0ca9c0c98 100644 --- a/definitions/grib2/tables/27/4.246.table +++ b/definitions/grib2/tables/27/4.246.table @@ -1,7 +1,7 @@ # Code table 4.246 - Thunderstorm intensity -0 0 No thunderstorm occurence -1 1 Weak thunderstorm -2 2 Moderate thunderstorm -3 3 Severe thunderstorm +0 0 No thunderstorm occurrence +1 1 Weak thunderstorm +2 2 Moderate thunderstorm +3 3 Severe thunderstorm # 4-254 Reserved -255 255 Missing +255 255 Missing From 854a8c178d9732d3962b890eeebc54539a832b52 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 20 Sep 2021 17:20:54 +0100 Subject: [PATCH 643/683] ECC-1286: GRIB: Cannot set keys 'scaleFactorOfLowerLimit' and 'scaledValueOfLowerLimit' via the 'lowerLimit' key --- ...accessor_class_from_scale_factor_scaled_value.c | 11 +++++++++-- tests/grib_ecc-1150.sh | 14 +++++++++++--- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/src/grib_accessor_class_from_scale_factor_scaled_value.c b/src/grib_accessor_class_from_scale_factor_scaled_value.c index 3b5311e6e..f7121cf06 100644 --- a/src/grib_accessor_class_from_scale_factor_scaled_value.c +++ b/src/grib_accessor_class_from_scale_factor_scaled_value.c @@ -189,6 +189,7 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) int64_t value = 0, prev_value = 0; double exact = *val; /*the input*/ const float epsilon = float_epsilon(); + int is_negative = 0; unsigned long maxval_value, maxval_factor; /*maximum allowable values*/ grib_accessor *accessor_factor, *accessor_value; @@ -217,9 +218,11 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) maxval_value = (1UL << (accessor_value->length * 8)) - 2; /* exclude missing */ maxval_factor = (1UL << (accessor_factor->length * 8)) - 2; /* exclude missing */ - Assert(exact > 0); - /* Loop until we find a close enough approximation. Keep the last good values */ + if (exact < 0) { + is_negative = 1; + exact *= -1; + } factor = prev_factor = 0; value = prev_value = round(exact); while (!is_approximately_equal(exact, eval_value_factor(value, factor), epsilon) && @@ -236,6 +239,10 @@ static int pack_double(grib_accessor* a, const double* val, size_t* len) prev_value = value; } + if (is_negative) { + value *= -1; + } + if ((ret = grib_set_long_internal(hand, self->scaleFactor, factor)) != GRIB_SUCCESS) return ret; if ((ret = grib_set_long_internal(hand, self->scaledValue, value)) != GRIB_SUCCESS) diff --git a/tests/grib_ecc-1150.sh b/tests/grib_ecc-1150.sh index c58cb950e..02ea73ff8 100755 --- a/tests/grib_ecc-1150.sh +++ b/tests/grib_ecc-1150.sh @@ -13,6 +13,7 @@ set -u # --------------------------------------------------------- # This is the test for the JIRA issue ECC-1150 # ECC-1150: keys 'lowerLimit' & 'upperLimit' cannot be MISSING +# See also ECC-1286 # --------------------------------------------------------- label="grib_ecc-1150-test" tempGrib=temp.${label}.grib @@ -60,12 +61,19 @@ ${tools_dir}/grib_filter $tempFilt $tempGrib # Encoding # ---------- temp2=temp2.${label}.grib -${tools_dir}/grib_set -s upperLimit=missing,lowerLimit=missing $tempGrib $temp2 +${tools_dir}/grib_set -s lowerLimit=missing,upperLimit=missing $tempGrib $temp2 grib_check_key_equals $temp2 lowerLimit,upperLimit 'MISSING MISSING' grib_check_key_equals $temp2 \ scaleFactorOfLowerLimit,scaledValueOfLowerLimit,scaleFactorOfUpperLimit,scaledValueOfUpperLimit \ 'MISSING MISSING MISSING MISSING' -rm -f $temp2 + +${tools_dir}/grib_set -s lowerLimit=3.14,upperLimit=missing $tempGrib $temp2 +grib_check_key_equals $temp2 lowerLimit,upperLimit '3.14 MISSING' + +# Negative values +${tools_dir}/grib_set -s lowerLimit=-6.6,upperLimit=-1.02 $tempGrib $temp2 +grib_check_key_equals $temp2 scaleFactorOfLowerLimit,scaledValueOfLowerLimit,lowerLimit "1 -66 -6.6" +grib_check_key_equals $temp2 scaleFactorOfUpperLimit,scaledValueOfUpperLimit,upperLimit "2 -102 -1.02" # Clean up -rm -f $tempGrib $tempFilt +rm -f $tempGrib $tempFilt $temp2 From 33d2e264c02ab513acdf4dbe54af810ea237196b Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 21 Sep 2021 11:03:32 +0100 Subject: [PATCH 644/683] Space View iterator: add more checks --- src/grib_iterator_class_space_view.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/grib_iterator_class_space_view.c b/src/grib_iterator_class_space_view.c index bbfc6d366..90456fc56 100644 --- a/src/grib_iterator_class_space_view.c +++ b/src/grib_iterator_class_space_view.c @@ -228,7 +228,7 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args) /* Orthographic not supported. This happens when Nr (camera altitude) is missing */ if (grib_is_missing(h, sNrInRadiusOfEarth, &ret)) { - grib_context_log(h->context, GRIB_LOG_ERROR, "Orthographic view (Nr missing) not supported"); + grib_context_log(h->context, GRIB_LOG_ERROR, "Space View: Orthographic view (Nr missing) not supported"); return GRIB_NOT_IMPLEMENTED; } if ((ret = grib_get_double_internal(h, sNrInRadiusOfEarth, &nrInRadiusOfEarth)) != GRIB_SUCCESS) @@ -256,7 +256,7 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args) } if (nrInRadiusOfEarth == 0) { - grib_context_log(h->context, GRIB_LOG_ERROR, "Key %s must be greater than zero", sNrInRadiusOfEarth); + grib_context_log(h->context, GRIB_LOG_ERROR, "Space View: Key %s must be greater than zero", sNrInRadiusOfEarth); return GRIB_GEOCALCULUS_PROBLEM; } @@ -265,8 +265,12 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args) lap = latOfSubSatellitePointInDegrees; lop = lonOfSubSatellitePointInDegrees; - if (lap != 0.0) - return GRIB_NOT_IMPLEMENTED; + if (lap != 0.0) { + grib_context_log(h->context, GRIB_LOG_ERROR, + "Space View: Key '%s' must be 0 (satellite must be located in the equator plane)", + sLatOfSubSatellitePointInDegrees); + return GRIB_GEOCALCULUS_PROBLEM; + } /*orient_angle = orientationInDegrees;*/ /* if (orient_angle != 0.0) return GRIB_NOT_IMPLEMENTED; */ @@ -278,7 +282,7 @@ static int init(grib_iterator* iter, grib_handle* h, grib_arguments* args) /* adjustBadlyEncodedEcmwfGribs(h, &nx, &ny, &dx, &dy, &xp, &yp); */ if (dx == 0 || dy == 0) { - grib_context_log(h->context, GRIB_LOG_ERROR, "Keys %s and %s must be greater than zero", sDx, sDy); + grib_context_log(h->context, GRIB_LOG_ERROR, "Space View: Keys %s and %s must be greater than zero", sDx, sDy); return GRIB_GEOCALCULUS_PROBLEM; } rx = angular_size / dx; From 9d954e2f92d925cef99ad4ca3b82d3b2cc5ffcab Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 21 Sep 2021 11:07:15 +0100 Subject: [PATCH 645/683] Use longitudeOfSubSatellitePointInDegrees for space view --- src/grib_accessor_class_proj_string.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/grib_accessor_class_proj_string.c b/src/grib_accessor_class_proj_string.c index 0dfca41bb..f1ce6fafa 100644 --- a/src/grib_accessor_class_proj_string.c +++ b/src/grib_accessor_class_proj_string.c @@ -206,9 +206,17 @@ static int proj_space_view(grib_handle* h, char* result) #if 0 int err = 0; char shape[64] = {0,}; + double latOfSubSatellitePointInDegrees, lonOfSubSatellitePointInDegrees; if ((err = get_earth_shape(h, shape)) != GRIB_SUCCESS) return err; + + if ((err = grib_get_double_internal(h, "longitudeOfSubSatellitePointInDegrees", &lonOfSubSatellitePointInDegrees)) != GRIB_SUCCESS) + return err; + + sprintf(result, "+proj=geos +lon_0=%lf +h=35785831 +x_0=0 +y_0=0 %s", lonOfSubSatellitePointInDegrees, shape); + return err; + /* Experimental: For now do the same as gdalsrsinfo - hard coded values! */ sprintf(result, "+proj=geos +lon_0=0 +h=35785831 +x_0=0 +y_0=0 %s", shape); return err; From 95b3dc1ac6adfa21d19ab21f7d807ee2e6155c5d Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Tue, 21 Sep 2021 11:45:42 +0100 Subject: [PATCH 646/683] fix uerra localConcept lookup and param --- definitions/grib2/localConcepts/uerra/paramId.def | 10 ++++++++++ definitions/grib2/section.4.def | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/definitions/grib2/localConcepts/uerra/paramId.def b/definitions/grib2/localConcepts/uerra/paramId.def index 97c17a41c..25a4f7af2 100644 --- a/definitions/grib2/localConcepts/uerra/paramId.def +++ b/definitions/grib2/localConcepts/uerra/paramId.def @@ -4,7 +4,17 @@ parameterCategory = 2 ; parameterNumber = 1 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; } +'10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; + } #10 metre wind gust since previous post-processing '49' = { discipline = 0 ; diff --git a/definitions/grib2/section.4.def b/definitions/grib2/section.4.def index c40755c2e..07737dd08 100644 --- a/definitions/grib2/section.4.def +++ b/definitions/grib2/section.4.def @@ -38,8 +38,8 @@ concept datasetForLocal(unknown) { } if (!(datasetForLocal is "unknown")) { -constant conceptsDir1 = "grib2/localConcepts/[datasetForLocal]": hidden; -constant conceptsDir2 = "grib2": hidden; +constant conceptsDir2 = "grib2/localConcepts/[datasetForLocal]": hidden; +constant conceptsDir1 = "grib2": hidden; } codetable[2] productDefinitionTemplateNumber('4.0.table',masterDir,localDir) : dump; From 3cad3e9ee7a611b7faddc9d3c225feb576dc4d89 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 21 Sep 2021 11:52:09 +0100 Subject: [PATCH 647/683] Remove MARS streams ocda and olda --- definitions/mars/stream.table | 2 -- 1 file changed, 2 deletions(-) diff --git a/definitions/mars/stream.table b/definitions/mars/stream.table index ad212c29e..8f6075db7 100644 --- a/definitions/mars/stream.table +++ b/definitions/mars/stream.table @@ -110,8 +110,6 @@ 1250 ewla Ensemble Wave Long window data Assimilation 1251 wamd Wave monthly means of daily means 1252 gfas Global fire assimilation system -1253 ocda Ocean Data Assimilation -1254 olda Ocean Long window Data Assimilation 2231 cnrm Meteo France climate centre 2232 mpic Max Plank Institute 2233 ukmo UKMO climate centre From c1afc875d63f6e2413078b0f3fd44fa020786d40 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 21 Sep 2021 15:28:31 +0100 Subject: [PATCH 648/683] Definitions: Clean up --- definitions/grib2/section.4.def | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/definitions/grib2/section.4.def b/definitions/grib2/section.4.def index 07737dd08..7618e9054 100644 --- a/definitions/grib2/section.4.def +++ b/definitions/grib2/section.4.def @@ -38,8 +38,8 @@ concept datasetForLocal(unknown) { } if (!(datasetForLocal is "unknown")) { -constant conceptsDir2 = "grib2/localConcepts/[datasetForLocal]": hidden; -constant conceptsDir1 = "grib2": hidden; + constant conceptsDir2 = "grib2/localConcepts/[datasetForLocal]": hidden; + constant conceptsDir1 = "grib2": hidden; } codetable[2] productDefinitionTemplateNumber('4.0.table',masterDir,localDir) : dump; From 1b4c6dfb41f03daa6e29ef94627ebb548a2af7a4 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Tue, 21 Sep 2021 15:48:21 +0100 Subject: [PATCH 649/683] fix def files for uerra local concepts --- definitions/grib2/localConcepts/uerra/cfVarName.def | 11 +++++++++++ definitions/grib2/localConcepts/uerra/name.def | 11 +++++++++++ definitions/grib2/localConcepts/uerra/shortName.def | 11 +++++++++++ definitions/grib2/localConcepts/uerra/units.def | 11 +++++++++++ 4 files changed, 44 insertions(+) diff --git a/definitions/grib2/localConcepts/uerra/cfVarName.def b/definitions/grib2/localConcepts/uerra/cfVarName.def index 1501b921d..7a8d182ac 100644 --- a/definitions/grib2/localConcepts/uerra/cfVarName.def +++ b/definitions/grib2/localConcepts/uerra/cfVarName.def @@ -4,7 +4,18 @@ parameterCategory = 2 ; parameterNumber = 1 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; } +#Wind speed +'ws' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; + } #10 metre wind gust since previous post-processing 'fg10' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/uerra/name.def b/definitions/grib2/localConcepts/uerra/name.def index 6910cb990..d166f6e8f 100644 --- a/definitions/grib2/localConcepts/uerra/name.def +++ b/definitions/grib2/localConcepts/uerra/name.def @@ -4,7 +4,18 @@ parameterCategory = 2 ; parameterNumber = 1 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; } +#Wind speed +'Wind speed' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; + } #10 metre wind gust since previous post-processing '10 metre wind gust since previous post-processing' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/uerra/shortName.def b/definitions/grib2/localConcepts/uerra/shortName.def index 593aa762d..95fb6131d 100644 --- a/definitions/grib2/localConcepts/uerra/shortName.def +++ b/definitions/grib2/localConcepts/uerra/shortName.def @@ -4,7 +4,18 @@ parameterCategory = 2 ; parameterNumber = 1 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; } +#Wind speed +'ws' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; + } #10 metre wind gust since previous post-processing '10fg' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/uerra/units.def b/definitions/grib2/localConcepts/uerra/units.def index 9be44fc19..8f9d45c15 100644 --- a/definitions/grib2/localConcepts/uerra/units.def +++ b/definitions/grib2/localConcepts/uerra/units.def @@ -4,7 +4,18 @@ parameterCategory = 2 ; parameterNumber = 1 ; typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 100 ; + scaleFactorOfFirstFixedSurface = 0 ; } +#Wind speed +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 200 ; + scaleFactorOfFirstFixedSurface = 0 ; + } #10 metre wind gust since previous post-processing 'm s**-1' = { discipline = 0 ; From 404a854376c53b14c031a0e91047eb89012b6b27 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 21 Sep 2021 16:19:51 +0100 Subject: [PATCH 650/683] Definitions: Add comment line --- definitions/grib2/localConcepts/uerra/paramId.def | 1 + 1 file changed, 1 insertion(+) diff --git a/definitions/grib2/localConcepts/uerra/paramId.def b/definitions/grib2/localConcepts/uerra/paramId.def index 25a4f7af2..9a46f4982 100644 --- a/definitions/grib2/localConcepts/uerra/paramId.def +++ b/definitions/grib2/localConcepts/uerra/paramId.def @@ -7,6 +7,7 @@ scaledValueOfFirstFixedSurface = 100 ; scaleFactorOfFirstFixedSurface = 0 ; } +#Wind speed '10' = { discipline = 0 ; parameterCategory = 2 ; From c115db8b45b55fcaa2e7b2b7691d2c04f07f19e2 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Fri, 24 Sep 2021 10:40:31 +0100 Subject: [PATCH 651/683] fix few uerra parameters regressions --- .../grib2/localConcepts/uerra/cfVarName.def | 34 +++++++++++++++++++ .../grib2/localConcepts/uerra/name.def | 34 +++++++++++++++++++ .../grib2/localConcepts/uerra/paramId.def | 34 +++++++++++++++++++ .../grib2/localConcepts/uerra/shortName.def | 34 +++++++++++++++++++ .../grib2/localConcepts/uerra/units.def | 34 +++++++++++++++++++ 5 files changed, 170 insertions(+) diff --git a/definitions/grib2/localConcepts/uerra/cfVarName.def b/definitions/grib2/localConcepts/uerra/cfVarName.def index 7a8d182ac..68611ed2d 100644 --- a/definitions/grib2/localConcepts/uerra/cfVarName.def +++ b/definitions/grib2/localConcepts/uerra/cfVarName.def @@ -25,7 +25,21 @@ scaledValueOfFirstFixedSurface = 10 ; typeOfStatisticalProcessing = 2 ; typeOfFirstFixedSurface = 103 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 3 ; } +#10 metre wind gust since previous post-processing +'fg10' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + scaleFactorOfFirstFixedSurface = 0 ; + scaledValueOfFirstFixedSurface = 10 ; + typeOfStatisticalProcessing = 2 ; + typeOfFirstFixedSurface = 103 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 1 ; + } #Maximum temperature at 2 metres since previous post-processing 'mx2t' = { discipline = 0 ; @@ -46,3 +60,23 @@ scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; } +#Evaporation in the last 6 hours +'eva' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + indicatorOfUnitForTimeRange = 1 ; + } +#Evaporation in the last 24 hours +'eva' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } diff --git a/definitions/grib2/localConcepts/uerra/name.def b/definitions/grib2/localConcepts/uerra/name.def index d166f6e8f..85489bb21 100644 --- a/definitions/grib2/localConcepts/uerra/name.def +++ b/definitions/grib2/localConcepts/uerra/name.def @@ -25,7 +25,21 @@ scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 3 ; } +#10 metre wind gust since previous post-processing +'10 metre wind gust since previous post-processing' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 1 ; + } #Maximum temperature at 2 metres since previous post-processing 'Maximum temperature at 2 metres since previous post-processing' = { discipline = 0 ; @@ -46,3 +60,23 @@ scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 3 ; } +#Evaporation +'Evaporation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + } +#Evaporation +'Evaporation' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } diff --git a/definitions/grib2/localConcepts/uerra/paramId.def b/definitions/grib2/localConcepts/uerra/paramId.def index 9a46f4982..0d13f9b6d 100644 --- a/definitions/grib2/localConcepts/uerra/paramId.def +++ b/definitions/grib2/localConcepts/uerra/paramId.def @@ -25,7 +25,21 @@ scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 3 ; } +#10 metre wind gust since previous post-processing +'49' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 1 ; + } #Maximum temperature at 2 metres since previous post-processing '201' = { discipline = 0 ; @@ -46,3 +60,23 @@ scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 3 ; } +#Evaporation +'260259' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + } +#Evaporation +'260259' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } diff --git a/definitions/grib2/localConcepts/uerra/shortName.def b/definitions/grib2/localConcepts/uerra/shortName.def index 95fb6131d..4b1914432 100644 --- a/definitions/grib2/localConcepts/uerra/shortName.def +++ b/definitions/grib2/localConcepts/uerra/shortName.def @@ -25,7 +25,21 @@ scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 3 ; } +#10 metre wind gust since previous post-processing +'10fg' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 1 ; + } #Maximum temperature at 2 metres since previous post-processing 'mx2t' = { discipline = 0 ; @@ -46,3 +60,23 @@ scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 3 ; } +#Evaporation +'eva' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + } +#Evaporation +'eva' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } diff --git a/definitions/grib2/localConcepts/uerra/units.def b/definitions/grib2/localConcepts/uerra/units.def index 8f9d45c15..fd8b277f6 100644 --- a/definitions/grib2/localConcepts/uerra/units.def +++ b/definitions/grib2/localConcepts/uerra/units.def @@ -25,7 +25,21 @@ scaledValueOfFirstFixedSurface = 10 ; scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 3 ; } +#10 metre wind gust since previous post-processing +'m s**-1' = { + discipline = 0 ; + parameterCategory = 2 ; + parameterNumber = 22 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 10 ; + scaleFactorOfFirstFixedSurface = 0 ; + typeOfStatisticalProcessing = 2 ; + indicatorOfUnitForTimeRange = 1 ; + lengthOfTimeRange = 1 ; + } #Maximum temperature at 2 metres since previous post-processing 'K' = { discipline = 0 ; @@ -46,3 +60,23 @@ scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 3 ; } +#Evaporation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 6 ; + } +#Evaporation +'kg m**-2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 79 ; + typeOfFirstFixedSurface = 1 ; + indicatorOfUnitForTimeRange = 1 ; + typeOfStatisticalProcessing = 1 ; + lengthOfTimeRange = 24 ; + } From deb5d3da5edc8a1f82d7757af2676a2a73d89527 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 24 Sep 2021 12:00:59 +0100 Subject: [PATCH 652/683] Definitions: fix comments --- definitions/grib2/localConcepts/uerra/cfVarName.def | 4 ++-- definitions/grib2/localConcepts/uerra/name.def | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/definitions/grib2/localConcepts/uerra/cfVarName.def b/definitions/grib2/localConcepts/uerra/cfVarName.def index 68611ed2d..d314e4c86 100644 --- a/definitions/grib2/localConcepts/uerra/cfVarName.def +++ b/definitions/grib2/localConcepts/uerra/cfVarName.def @@ -60,7 +60,7 @@ scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; } -#Evaporation in the last 6 hours +#Evaporation 'eva' = { discipline = 0 ; parameterCategory = 1 ; @@ -70,7 +70,7 @@ lengthOfTimeRange = 6 ; indicatorOfUnitForTimeRange = 1 ; } -#Evaporation in the last 24 hours +#Evaporation 'eva' = { discipline = 0 ; parameterCategory = 1 ; diff --git a/definitions/grib2/localConcepts/uerra/name.def b/definitions/grib2/localConcepts/uerra/name.def index 85489bb21..218f87fa2 100644 --- a/definitions/grib2/localConcepts/uerra/name.def +++ b/definitions/grib2/localConcepts/uerra/name.def @@ -70,7 +70,7 @@ typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 6 ; } -#Evaporation +#Evaporation 'Evaporation' = { discipline = 0 ; parameterCategory = 1 ; From f44f7b8d6692dd24673f1f4b0914f3f4a91e169d Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Fri, 24 Sep 2021 14:00:23 +0100 Subject: [PATCH 653/683] fixing more uerra regression --- .../grib2/localConcepts/uerra/cfVarName.def | 18 ++++++++++++++++++ definitions/grib2/localConcepts/uerra/name.def | 18 ++++++++++++++++++ .../grib2/localConcepts/uerra/paramId.def | 18 ++++++++++++++++++ .../grib2/localConcepts/uerra/shortName.def | 18 ++++++++++++++++++ .../grib2/localConcepts/uerra/units.def | 18 ++++++++++++++++++ 5 files changed, 90 insertions(+) diff --git a/definitions/grib2/localConcepts/uerra/cfVarName.def b/definitions/grib2/localConcepts/uerra/cfVarName.def index d314e4c86..45b7b7419 100644 --- a/definitions/grib2/localConcepts/uerra/cfVarName.def +++ b/definitions/grib2/localConcepts/uerra/cfVarName.def @@ -80,3 +80,21 @@ typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 24 ; } +#2 metre temperature +'t2m' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + } +#Surface air relative humidity +'r2' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + } diff --git a/definitions/grib2/localConcepts/uerra/name.def b/definitions/grib2/localConcepts/uerra/name.def index 218f87fa2..5a24c7c87 100644 --- a/definitions/grib2/localConcepts/uerra/name.def +++ b/definitions/grib2/localConcepts/uerra/name.def @@ -80,3 +80,21 @@ typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 24 ; } +#2 metre temperature +'2 metre temperature' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + } +#Surface air relative humidity +'Surface air relative humidity' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + typeOfFirstFixedSurface = 103 ; + } diff --git a/definitions/grib2/localConcepts/uerra/paramId.def b/definitions/grib2/localConcepts/uerra/paramId.def index 0d13f9b6d..35481aef0 100644 --- a/definitions/grib2/localConcepts/uerra/paramId.def +++ b/definitions/grib2/localConcepts/uerra/paramId.def @@ -80,3 +80,21 @@ typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 24 ; } +#2 metre temperature +'167' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + } +#Surface air relative humidity +'260242' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + } diff --git a/definitions/grib2/localConcepts/uerra/shortName.def b/definitions/grib2/localConcepts/uerra/shortName.def index 4b1914432..ba0ad2a57 100644 --- a/definitions/grib2/localConcepts/uerra/shortName.def +++ b/definitions/grib2/localConcepts/uerra/shortName.def @@ -80,3 +80,21 @@ typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 24 ; } +#2 metre temperature +'2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + } +#Surface air relative humidity +'2r' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + } diff --git a/definitions/grib2/localConcepts/uerra/units.def b/definitions/grib2/localConcepts/uerra/units.def index fd8b277f6..ab9ce1ac0 100644 --- a/definitions/grib2/localConcepts/uerra/units.def +++ b/definitions/grib2/localConcepts/uerra/units.def @@ -80,3 +80,21 @@ typeOfStatisticalProcessing = 1 ; lengthOfTimeRange = 24 ; } +#2 metre temperature +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + } +#Surface air relative humidity +'%' = { + discipline = 0 ; + parameterCategory = 1 ; + parameterNumber = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + typeOfFirstFixedSurface = 103 ; + } From 187115eef719e5f910dcefdd71d0cef04748f1a6 Mon Sep 17 00:00:00 2001 From: Sebastien Villaume Date: Mon, 27 Sep 2021 14:11:14 +0100 Subject: [PATCH 654/683] hopefully last uerra fix regression --- .../grib2/localConcepts/uerra/cfVarName.def | 20 +++++++++++++++++++ .../grib2/localConcepts/uerra/name.def | 20 +++++++++++++++++++ .../grib2/localConcepts/uerra/paramId.def | 20 +++++++++++++++++++ .../grib2/localConcepts/uerra/shortName.def | 20 +++++++++++++++++++ .../grib2/localConcepts/uerra/units.def | 20 +++++++++++++++++++ 5 files changed, 100 insertions(+) diff --git a/definitions/grib2/localConcepts/uerra/cfVarName.def b/definitions/grib2/localConcepts/uerra/cfVarName.def index 45b7b7419..24926018d 100644 --- a/definitions/grib2/localConcepts/uerra/cfVarName.def +++ b/definitions/grib2/localConcepts/uerra/cfVarName.def @@ -60,6 +60,26 @@ scaleFactorOfFirstFixedSurface = 0 ; scaledValueOfFirstFixedSurface = 2 ; } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + typeOfStatisticalProcessing = 2 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfStatisticalProcessing = 3 ; + typeOfFirstFixedSurface = 103 ; + scaleFactorOfFirstFixedSurface = 1 ; + scaledValueOfFirstFixedSurface = 15 ; + } #Evaporation 'eva' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/uerra/name.def b/definitions/grib2/localConcepts/uerra/name.def index 5a24c7c87..40456ac19 100644 --- a/definitions/grib2/localConcepts/uerra/name.def +++ b/definitions/grib2/localConcepts/uerra/name.def @@ -60,6 +60,26 @@ scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 3 ; } +#Maximum temperature at 2 metres since previous post-processing +'Maximum temperature at 2 metres since previous post-processing' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; + } +#Minimum temperature at 2 metres since previous post-processing +'Minimum temperature at 2 metres since previous post-processing' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 3 ; + } #Evaporation 'Evaporation' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/uerra/paramId.def b/definitions/grib2/localConcepts/uerra/paramId.def index 35481aef0..227c609d1 100644 --- a/definitions/grib2/localConcepts/uerra/paramId.def +++ b/definitions/grib2/localConcepts/uerra/paramId.def @@ -60,6 +60,26 @@ scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 3 ; } +#Maximum temperature at 2 metres since previous post-processing +'201' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; + } +#Minimum temperature at 2 metres since previous post-processing +'202' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 3 ; + } #Evaporation '260259' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/uerra/shortName.def b/definitions/grib2/localConcepts/uerra/shortName.def index ba0ad2a57..836bfce97 100644 --- a/definitions/grib2/localConcepts/uerra/shortName.def +++ b/definitions/grib2/localConcepts/uerra/shortName.def @@ -60,6 +60,26 @@ scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 3 ; } +#Maximum temperature at 2 metres since previous post-processing +'mx2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; + } +#Minimum temperature at 2 metres since previous post-processing +'mn2t' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 3 ; + } #Evaporation 'eva' = { discipline = 0 ; diff --git a/definitions/grib2/localConcepts/uerra/units.def b/definitions/grib2/localConcepts/uerra/units.def index ab9ce1ac0..fc9c4cf36 100644 --- a/definitions/grib2/localConcepts/uerra/units.def +++ b/definitions/grib2/localConcepts/uerra/units.def @@ -60,6 +60,26 @@ scaleFactorOfFirstFixedSurface = 0 ; typeOfStatisticalProcessing = 3 ; } +#Maximum temperature at 2 metres since previous post-processing +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 2 ; + } +#Minimum temperature at 2 metres since previous post-processing +'K' = { + discipline = 0 ; + parameterCategory = 0 ; + parameterNumber = 0 ; + typeOfFirstFixedSurface = 103 ; + scaledValueOfFirstFixedSurface = 15 ; + scaleFactorOfFirstFixedSurface = 1 ; + typeOfStatisticalProcessing = 3 ; + } #Evaporation 'kg m**-2' = { discipline = 0 ; From 90a6fa20b14d68edd8c6da214c25c171096503c3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 28 Sep 2021 13:35:24 +0100 Subject: [PATCH 655/683] ECC-1270: Remove the old alias --- definitions/grib2/template.4.horizontal.def | 1 - 1 file changed, 1 deletion(-) diff --git a/definitions/grib2/template.4.horizontal.def b/definitions/grib2/template.4.horizontal.def index 771e6847d..4e58946dd 100755 --- a/definitions/grib2/template.4.horizontal.def +++ b/definitions/grib2/template.4.horizontal.def @@ -74,7 +74,6 @@ if (extraDim) { alias mars.levelist = level; } } - #alias mars.levtype = typeOfFirstFixedSurface; concept mars.levtype (unknown,"marsLevtypeConcept.def",conceptsDir2,conceptsDir1):no_copy; # GRIB-372: levelist alias does not pertain to surface parameters if (levtype is "sfc") { From 9f512e8ba4b1e0e61a435c765d052af6ccbc7114 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 28 Sep 2021 16:37:02 +0100 Subject: [PATCH 656/683] Spelling --- tests/tests.ecmwf/chemical.c | 2 +- tigge/tigge_check.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests.ecmwf/chemical.c b/tests/tests.ecmwf/chemical.c index d46a60932..031c2cd47 100644 --- a/tests/tests.ecmwf/chemical.c +++ b/tests/tests.ecmwf/chemical.c @@ -5,7 +5,7 @@ #include "test.h" void handle_error(int err,const char* caller); -void preproc(double* values,double bias,int lenght,int mode); +void preproc(double* values,double bias,int length,int mode); int main(int argc, char *argv[]) { diff --git a/tigge/tigge_check.h b/tigge/tigge_check.h index 619c845d6..2292f5535 100644 --- a/tigge/tigge_check.h +++ b/tigge/tigge_check.h @@ -800,7 +800,7 @@ s2s/ammc: warning: s2s.mx2t6_20151224_26.grib2, field 47 [surface_air_maximum_te - TBD: the problem is that for tigge/tigge-lam there are cumulated parameters from step 0 and the limits for e.g. 0-3 period should be very different to ones for e.g. 0-120 even - the value is divided by the period lenght in hours! + the value is divided by the period length in hours! */ { From 4323334a3b18a6e4cdad1b5b39e8d497a13ff008 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 28 Sep 2021 16:57:10 +0100 Subject: [PATCH 657/683] Definitions: Clean up --- definitions/grib2/section.0.def | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/definitions/grib2/section.0.def b/definitions/grib2/section.0.def index 0268e173c..6cf6abd60 100644 --- a/definitions/grib2/section.0.def +++ b/definitions/grib2/section.0.def @@ -2,9 +2,9 @@ position offsetSection0; constant section0Length=16; -ascii[4] identifier = "GRIB" : read_only; -unsigned[2] reserved = missing() : can_be_missing,hidden,read_only,edition_specific; -codetable[1] discipline ('0.0.table',masterDir,localDir) : dump; +ascii[4] identifier = "GRIB" : read_only; +unsigned[2] reserved = missing() : can_be_missing,hidden,read_only,edition_specific; +codetable[1] discipline ('0.0.table',masterDir,localDir) : dump; unsigned[1] editionNumber = 2 : edition_specific,dump; alias ls.edition = editionNumber; From 2b90bf09e17e5fe3af224a056c614f00edba91f3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 28 Sep 2021 16:57:33 +0100 Subject: [PATCH 658/683] Add guard for codetable keys with can_be_missing --- src/grib_accessor_class_codetable.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/grib_accessor_class_codetable.c b/src/grib_accessor_class_codetable.c index f0d51259f..c504aef76 100644 --- a/src/grib_accessor_class_codetable.c +++ b/src/grib_accessor_class_codetable.c @@ -210,6 +210,12 @@ static void init(grib_accessor* a, const long len, grib_arguments* params) /*if (a->flags & GRIB_ACCESSOR_FLAG_STRING_TYPE) printf("-------- %s type string (%ld)\n",a->name,a->flags);*/ +#ifdef DEBUG + if (a->flags & GRIB_ACCESSOR_FLAG_CAN_BE_MISSING) { + grib_context_log(a->context, GRIB_LOG_FATAL, "codetable '%s' has flag can_be_missing!", a->name); + Assert(!"codetable with can_be_missing?"); + } +#endif if (a->flags & GRIB_ACCESSOR_FLAG_TRANSIENT) { a->length = 0; From 6b844c46236142af02fff4d02fa0be06f69fbfa5 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 29 Sep 2021 16:55:50 +0100 Subject: [PATCH 659/683] Testing: use temp prefix for temporary output files --- tests/bufr_dump_decode_C.sh | 8 ++++---- tests/bufr_dump_decode_filter.sh | 4 ++-- tests/bufr_dump_decode_fortran.sh | 8 ++++---- tests/bufr_dump_decode_python.sh | 6 +++--- tests/bufr_dump_encode_C.sh | 6 +++--- tests/bufr_dump_encode_filter.sh | 6 +++--- tests/bufr_dump_encode_fortran.sh | 6 +++--- tests/bufr_dump_encode_python.sh | 6 +++--- 8 files changed, 25 insertions(+), 25 deletions(-) diff --git a/tests/bufr_dump_decode_C.sh b/tests/bufr_dump_decode_C.sh index 8f964dc96..6e04bccf3 100755 --- a/tests/bufr_dump_decode_C.sh +++ b/tests/bufr_dump_decode_C.sh @@ -19,10 +19,10 @@ if [ $HAVE_MEMFS -eq 1 ]; then fi # Create log file -fLog=${label}".log" +fLog=temp.${label}".log" rm -f $fLog -tempDir=${label}.dir +tempDir=temp.${label}.dir rm -rf $tempDir mkdir -p $tempDir @@ -55,8 +55,8 @@ fi for file in ${bufr_files} do - tempSrc=$label.$file.c - tempExe=$label.$file.exe + tempSrc=temp.$label.$file.c + tempExe=temp.$label.$file.exe filePath=${data_dir}/bufr/$file # Generate C code from BUFR file diff --git a/tests/bufr_dump_decode_filter.sh b/tests/bufr_dump_decode_filter.sh index 6769c7d9d..6d9bff7f4 100755 --- a/tests/bufr_dump_decode_filter.sh +++ b/tests/bufr_dump_decode_filter.sh @@ -17,12 +17,12 @@ cd ${data_dir}/bufr label="bufr_dump_decode_filter_test" # Create log file -fLog=${label}".log" +fLog=temp.${label}".log" rm -f $fLog touch $fLog # Define filter rules file -fRules=${label}.filter +fRules=temp.${label}.filter #----------------------------------------------------------- # NOTE: not all of our BUFR files pass this test. bufr_filter is limited diff --git a/tests/bufr_dump_decode_fortran.sh b/tests/bufr_dump_decode_fortran.sh index c2e6649f2..48939365d 100755 --- a/tests/bufr_dump_decode_fortran.sh +++ b/tests/bufr_dump_decode_fortran.sh @@ -14,11 +14,11 @@ label="bufr_dump_decode_fortran_test" # Create log file -fLog=${label}".log" +fLog=temp.${label}".log" rm -f $fLog tempBufr=outfile.bufr -tempDir=${label}.dir +tempDir=temp.${label}.dir rm -rf $tempDir mkdir -p $tempDir @@ -51,8 +51,8 @@ fi for file in ${bufr_files} do - tempSrc=$label.$file.f90 - tempExe=$label.$file.exe + tempSrc=temp.$label.$file.f90 + tempExe=temp.$label.$file.exe filePath=${data_dir}/bufr/$file # Generate F90 code from BUFR file diff --git a/tests/bufr_dump_decode_python.sh b/tests/bufr_dump_decode_python.sh index 291c0edb5..4548cffe9 100755 --- a/tests/bufr_dump_decode_python.sh +++ b/tests/bufr_dump_decode_python.sh @@ -14,10 +14,10 @@ label="bufr_dump_decode_python_test" # Create log file -fLog=${label}".log" +fLog=temp.${label}".log" rm -f $fLog -tempDir=${label}.dir +tempDir=temp.${label}.dir mkdir -p $tempDir cd $tempDir @@ -28,7 +28,7 @@ bufr_files=`cat ${data_dir}/bufr/bufr_data_files.txt` for file in ${bufr_files} do inputBufr=${data_dir}/bufr/$file - tempSrc=$label.$file.py + tempSrc=temp.$label.$file.py # Too large for this test if [ "$file" = "ias1_240.bufr" ]; then diff --git a/tests/bufr_dump_encode_C.sh b/tests/bufr_dump_encode_C.sh index 2e3f05334..791f16b84 100755 --- a/tests/bufr_dump_encode_C.sh +++ b/tests/bufr_dump_encode_C.sh @@ -19,11 +19,11 @@ if [ $HAVE_MEMFS -eq 1 ]; then fi # Create log file -fLog=${label}".log" +fLog=temp.${label}".log" rm -f $fLog tempBufr=outfile.bufr -tempDir=${label}.dir +tempDir=temp.${label}.dir rm -rf $tempDir mkdir -p $tempDir @@ -64,7 +64,7 @@ fi for file in ${bufr_files} do - tempSrc=$label.$file.c + tempSrc=temp.$label.$file.c tempExe=$label.$file.exe # Generate C code from BUFR file diff --git a/tests/bufr_dump_encode_filter.sh b/tests/bufr_dump_encode_filter.sh index b6a4a31db..aa7611ccf 100755 --- a/tests/bufr_dump_encode_filter.sh +++ b/tests/bufr_dump_encode_filter.sh @@ -17,15 +17,15 @@ cd ${data_dir}/bufr label="bufr_dump_encode_filter_test" # Create log file -fLog=${label}".log" +fLog=temp.${label}".log" rm -f $fLog touch $fLog # Define tmp bufr file -fBufrTmp=${label}".bufr.tmp" +fBufrTmp=temp.${label}".bufr" # Define filter rules file -fRules=${label}.filter +fRules=temp.${label}.filter #----------------------------------------------------------- # NOTE: not all of our BUFR files pass this test. bufr_filter is limited diff --git a/tests/bufr_dump_encode_fortran.sh b/tests/bufr_dump_encode_fortran.sh index 859d2111e..2fbcef9ca 100755 --- a/tests/bufr_dump_encode_fortran.sh +++ b/tests/bufr_dump_encode_fortran.sh @@ -14,11 +14,11 @@ label="bufr_dump_encode_fortran_test" # Create log file -fLog=${label}".log" +fLog=temp.${label}".log" rm -f $fLog tempBufr=outfile.bufr -tempDir=${label}.dir +tempDir=temp.${label}.dir rm -rf $tempDir mkdir -p $tempDir @@ -51,7 +51,7 @@ fi for file in ${bufr_files} do - tempSrc=$label.$file.f90 + tempSrc=temp.$label.$file.f90 tempExe=$label.$file.exe # Generate F90 code from BUFR file diff --git a/tests/bufr_dump_encode_python.sh b/tests/bufr_dump_encode_python.sh index f90cbce75..c3ec36384 100755 --- a/tests/bufr_dump_encode_python.sh +++ b/tests/bufr_dump_encode_python.sh @@ -14,11 +14,11 @@ label="bufr_dump_encode_python_test" # Create log file -fLog=${label}".log" +fLog=temp.${label}".log" rm -f $fLog tempBufr=outfile.bufr -tempDir=${label}.dir +tempDir=temp.${label}.dir mkdir -p $tempDir cd $tempDir @@ -27,7 +27,7 @@ bufr_files=`cat ${data_dir}/bufr/bufr_data_files.txt` for file in ${bufr_files} do inputBufr=${data_dir}/bufr/$file - tempSrc=$label.$file.py + tempSrc=temp.$label.$file.py # Too large for this test if [ "$file" = "ias1_240.bufr" ]; then From 04ab71311e99e685d286a37b09fd0120897922f9 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 29 Sep 2021 18:11:15 +0100 Subject: [PATCH 660/683] ECC-1283: bufr_compare: Does not detect differences in string arrays --- tools/bufr_compare.c | 170 ++++++++++++++++++++++--------------------- 1 file changed, 88 insertions(+), 82 deletions(-) diff --git a/tools/bufr_compare.c b/tools/bufr_compare.c index 6086577e9..73a558bf7 100644 --- a/tools/bufr_compare.c +++ b/tools/bufr_compare.c @@ -675,7 +675,7 @@ static int compare_values(grib_runtime_options* options, grib_handle* handle1, g int countdiff; int isMissing1 = 0, isMissing2 = 0; -// char *sval1 = NULL, *sval2 = NULL; + char *sval1 = NULL, *sval2 = NULL; char **svals1 = NULL, **svals2 = NULL; unsigned char *uval1 = NULL, *uval2 = NULL; double *dval1 = NULL, *dval2 = NULL; @@ -794,93 +794,99 @@ static int compare_values(grib_runtime_options* options, grib_handle* handle1, g if (verbose) printf(" as string\n"); - svals1 = (char**)grib_context_malloc_clear(handle1->context, len1 * sizeof(char*)); - svals2 = (char**)grib_context_malloc_clear(handle2->context, len2 * sizeof(char*)); - - if ((err1 = grib_get_string_array(handle1, name, svals1, &len1)) != GRIB_SUCCESS) { - printInfo(handle1); - printf("Oops... cannot get string value of [%s] in %s field: %s\n", - name, first_str, grib_get_error_message(err1)); - save_error(c, name); - } - if ((err2 = grib_get_string_array(handle2, name, svals2, &len2)) != GRIB_SUCCESS) { - printInfo(handle1); - printf("Oops... cannot get string value of [%s] in %s field: %s\n", - name, second_str, grib_get_error_message(err2)); - save_error(c, name); - } - - if (err1 == GRIB_SUCCESS && err2 == GRIB_SUCCESS && len1 != len2) { - printInfo(handle1); - printf("Different size for \"%s\" [%ld] [%ld]\n", name, (long)len1, (long)len2); - err1 = GRIB_INTERNAL_ERROR; - save_error(c, name); - } - if (err1 == GRIB_SUCCESS && err2 == GRIB_SUCCESS && len1 == len2) { - int ii; - countdiff = 0; - for (ii = 0; ii < len1; ii++) { - if (grib_inline_strcmp(svals1[ii], svals2[ii]) != 0) { //lval1[ii] != lval2[ii]) - countdiff++; - } - } - - if (countdiff) { + if (len1 == len2 && len1 == 1) { + /* Single string */ + size_t slen1 = 0; + size_t slen2 = 0; + /* See ECC-710: It is very slow getting the key length this way */ + /*grib_get_string_length(handle1,name,&slen1);*/ + /*grib_get_string_length(handle2,name,&slen2);*/ + slen1 = slen2 = 4096; /* Significantly faster to use an upper bound */ + sval1 = (char*)grib_context_malloc(handle1->context, slen1 * sizeof(char)); + sval2 = (char*)grib_context_malloc(handle2->context, slen2 * sizeof(char)); + if ((err1 = grib_get_string(handle1, name, sval1, &slen1)) != GRIB_SUCCESS) { printInfo(handle1); - save_error(c, name); - err1 = GRIB_VALUE_MISMATCH; - if (len1 == 1) - printf("string [%s]: [%s] != [%s]\n", name, *svals1, *svals2); - else - printf("string [%s] %d out of %ld different\n", name, countdiff, (long)len1); - } - } -#if 0 - /* See ECC-710: It is very slow getting the key length this way */ - /*grib_get_string_length(handle1,name,&len1);*/ - /*grib_get_string_length(handle2,name,&len2);*/ - len1 = len2 = 4096; /* Significantly faster to use an upper bound */ - sval1 = (char*)grib_context_malloc(handle1->context, len1 * sizeof(char)); - sval2 = (char*)grib_context_malloc(handle2->context, len2 * sizeof(char)); - - if ((err1 = grib_get_string(handle1, name, sval1, &len1)) != GRIB_SUCCESS) { - printInfo(handle1); - printf("Oops... cannot get string value of [%s] in %s field: %s\n", + printf("Oops... cannot get string value of [%s] in %s field: %s\n", name, first_str, grib_get_error_message(err1)); - save_error(c, name); - } - - if ((err2 = grib_get_string(handle2, name, sval2, &len2)) != GRIB_SUCCESS) { - printInfo(handle1); - printf("Oops... cannot get string value of [%s] in %s field: %s\n", - name, second_str, grib_get_error_message(err2)); - save_error(c, name); - } - - if (err1 == GRIB_SUCCESS && err2 == GRIB_SUCCESS) { - if (grib_inline_strcmp(sval1, sval2) != 0) { - /* Check if strings are 'missing'. - * Note: one string could have all its bits=1 and the other empty */ - int equal = 0; - grib_accessor* a1 = grib_find_accessor(handle1, name); - grib_accessor* a2 = grib_find_accessor(handle2, name); - int is_miss_1 = grib_is_missing_string(a1, (unsigned char*)sval1, len1); - int is_miss_2 = grib_is_missing_string(a2, (unsigned char*)sval2, len2); - if (is_miss_1 && is_miss_2) { - equal = 1; - } - if (!equal) { - printInfo(handle1); - printf("string [%s]: [%s] != [%s]\n", name, sval1, sval2); - err1 = GRIB_VALUE_MISMATCH; - save_error(c, name); + save_error(c, name); + } + if ((err2 = grib_get_string(handle2, name, sval2, &slen2)) != GRIB_SUCCESS) { + printInfo(handle1); + printf("Oops... cannot get string value of [%s] in %s field: %s\n", + name, second_str, grib_get_error_message(err2)); + save_error(c, name); + } + if (err1 == GRIB_SUCCESS && err2 == GRIB_SUCCESS) { + if (grib_inline_strcmp(sval1, sval2) != 0) { + /* Check if strings are 'missing'. + * Note: one string could have all its bits=1 and the other empty */ + int equal = 0; + grib_accessor* a1 = grib_find_accessor(handle1, name); + grib_accessor* a2 = grib_find_accessor(handle2, name); + int is_miss_1 = grib_is_missing_string(a1, (unsigned char*)sval1, slen1); + int is_miss_2 = grib_is_missing_string(a2, (unsigned char*)sval2, slen2); + if (is_miss_1 && is_miss_2) { + equal = 1; + } + if (!equal) { + printInfo(handle1); + printf("string [%s]: [%s] != [%s]\n", name, sval1, sval2); + err1 = GRIB_VALUE_MISMATCH; + save_error(c, name); + } } } + grib_context_free(handle1->context, sval1); + grib_context_free(handle2->context, sval2); } + else { + /* Array of strings */ + size_t i = 0; + svals1 = (char**)grib_context_malloc_clear(handle1->context, len1 * sizeof(char*)); + svals2 = (char**)grib_context_malloc_clear(handle2->context, len2 * sizeof(char*)); - grib_context_free(handle1->context, sval1); - grib_context_free(handle2->context, sval2); -#endif + if ((err1 = grib_get_string_array(handle1, name, svals1, &len1)) != GRIB_SUCCESS) { + printInfo(handle1); + printf("Oops... cannot get string value of [%s] in %s field: %s\n", + name, first_str, grib_get_error_message(err1)); + save_error(c, name); + } + if ((err2 = grib_get_string_array(handle2, name, svals2, &len2)) != GRIB_SUCCESS) { + printInfo(handle1); + printf("Oops... cannot get string value of [%s] in %s field: %s\n", + name, second_str, grib_get_error_message(err2)); + save_error(c, name); + } + + if (err1 == GRIB_SUCCESS && err2 == GRIB_SUCCESS && len1 != len2) { + printInfo(handle1); + printf("Different size for \"%s\" [%ld] [%ld]\n", name, (long)len1, (long)len2); + err1 = GRIB_INTERNAL_ERROR; + save_error(c, name); + } + if (err1 == GRIB_SUCCESS && err2 == GRIB_SUCCESS && len1 == len2) { + int ii; + countdiff = 0; + for (ii = 0; ii < len1; ii++) { + if (grib_inline_strcmp(svals1[ii], svals2[ii]) != 0) { + countdiff++; + } + } + if (countdiff) { + printInfo(handle1); + save_error(c, name); + err1 = GRIB_VALUE_MISMATCH; + if (len1 == 1) + printf("string [%s]: [%s] != [%s]\n", name, *svals1, *svals2); + else + printf("string [%s] %d out of %ld different\n", name, countdiff, (long)len1); + } + } + for (i=0; icontext, svals1); + grib_context_free(handle1->context, svals2); + } if (err1) return err1; if (err2) From 61b846b876d3468fcdb7d8e892c22f0be6842c2d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 29 Sep 2021 18:29:01 +0100 Subject: [PATCH 661/683] ECC-1283: Add test --- tests/bufr_compare.sh | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/tests/bufr_compare.sh b/tests/bufr_compare.sh index 209ba775a..7b5d7b951 100755 --- a/tests/bufr_compare.sh +++ b/tests/bufr_compare.sh @@ -199,6 +199,39 @@ EOF # The relative differences are around 3.5e-5. Suppress all instances ${tools_dir}/bufr_compare -R airTemperature=4e-5 $f $fBufrTmp +#-------------------------------------------------------------------- +# ECC-1283: string arrays +#-------------------------------------------------------------------- +sample=$ECCODES_SAMPLES_PATH/BUFR4.tmpl +fBufrTmp1=temp1.${label}".bufr" +fBufrTmp2=temp2.${label}".bufr" + +${tools_dir}/codes_bufr_filter -o $fBufrTmp1 - $sample <$fLog +status=$? +set -e +[ $status -eq 1 ] +grep -q "string \[stationOrSiteName\] 1 out of 3 different" $fLog + +${tools_dir}/bufr_compare -b stationOrSiteName $fBufrTmp1 $fBufrTmp2 +rm -f $fBufrTmp1 $fBufrTmp2 + # Clean up # ------------- From 139d9bc1dce644acb2da1fd161185882032d246e Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 29 Sep 2021 18:49:07 +0100 Subject: [PATCH 662/683] ECC-1283: Add test --- tests/bufr_compare.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/bufr_compare.sh b/tests/bufr_compare.sh index 7b5d7b951..a98702d35 100755 --- a/tests/bufr_compare.sh +++ b/tests/bufr_compare.sh @@ -17,17 +17,17 @@ cd ${data_dir}/bufr label="bufr_compare_test" # Create log file -fLog=${label}".log" +fLog=temp.${label}".log" rm -f $fLog touch $fLog # Define tmp bufr file -fBufrTmp=${label}".bufr.tmp" -fBufrInput1=${label}".bufr.input1" -fBufrInput2=${label}".bufr.input2" +fBufrTmp=temp.${label}".bufr" +fBufrInput1=temp1.in.${label}".bufr" +fBufrInput2=temp2.in.${label}".bufr" # Define filter rules file -fRules=${label}.filter +fRules=temp.${label}.filter #---------------------------------------------------- # Test: comparing same files From 910048d87f66f19ab1d5f96d813bfe134d5726f3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 30 Sep 2021 11:12:40 +0100 Subject: [PATCH 663/683] ECC-1287: Added test --- tests/grib_check_param_concepts.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/grib_check_param_concepts.sh b/tests/grib_check_param_concepts.sh index 161733c18..476ae1f1e 100755 --- a/tests/grib_check_param_concepts.sh +++ b/tests/grib_check_param_concepts.sh @@ -18,9 +18,13 @@ # ---------------------------------------------------- $EXEC ${test_dir}/grib_check_param_concepts paramId $ECCODES_DEFINITION_PATH/grib2/paramId.def $EXEC ${test_dir}/grib_check_param_concepts paramId $ECCODES_DEFINITION_PATH/grib2/localConcepts/ecmf/paramId.def +$EXEC ${test_dir}/grib_check_param_concepts paramId $ECCODES_DEFINITION_PATH/grib2/localConcepts/uerra/paramId.def +$EXEC ${test_dir}/grib_check_param_concepts paramId $ECCODES_DEFINITION_PATH/grib2/localConcepts/hydro/paramId.def $EXEC ${test_dir}/grib_check_param_concepts shortName $ECCODES_DEFINITION_PATH/grib2/shortName.def $EXEC ${test_dir}/grib_check_param_concepts shortName $ECCODES_DEFINITION_PATH/grib2/localConcepts/ecmf/shortName.def +$EXEC ${test_dir}/grib_check_param_concepts shortName $ECCODES_DEFINITION_PATH/grib2/localConcepts/uerra/shortName.def +$EXEC ${test_dir}/grib_check_param_concepts shortName $ECCODES_DEFINITION_PATH/grib2/localConcepts/hydro/shortName.def # Check the group: name.def paramId.def shortName.def units.def cfVarName.def @@ -52,6 +56,9 @@ defs_dirs=" $ECCODES_DEFINITION_PATH/grib1/localConcepts/lowm $ECCODES_DEFINITION_PATH/grib1/localConcepts/rjtd + $ECCODES_DEFINITION_PATH/grib2/localConcepts/uerra + $ECCODES_DEFINITION_PATH/grib2/localConcepts/hydro + $ECCODES_DEFINITION_PATH/grib2/localConcepts/egrr $ECCODES_DEFINITION_PATH/grib2/localConcepts/ekmi $ECCODES_DEFINITION_PATH/grib2/localConcepts/eswi From 433bd328adda8c2d7ad4021575f8804878a92331 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 2 Oct 2021 17:38:22 +0100 Subject: [PATCH 664/683] ECC-1283: bufr_compare: Does not detect differences in string arrays --- tools/bufr_compare.c | 41 ++++++++++++++++++++++++++++++----------- 1 file changed, 30 insertions(+), 11 deletions(-) diff --git a/tools/bufr_compare.c b/tools/bufr_compare.c index 73a558bf7..822ad273a 100644 --- a/tools/bufr_compare.c +++ b/tools/bufr_compare.c @@ -664,6 +664,29 @@ static char* get_keyname_without_rank(const char* name) return ret; } +static int are_strings_both_missing(grib_handle* h1, grib_handle* h2, const char* key, + const char* s1, const char* s2, + size_t slen1, size_t slen2) +{ + /* Note: one string could have all its bits=1 and the other empty */ + int is_miss_1 = 0, is_miss_2 = 0; + if (strlen(s1) == 0) { + is_miss_1 = 1; + } else { + grib_accessor* a1 = grib_find_accessor(h1, key); + is_miss_1 = grib_is_missing_string(a1, (unsigned char*)s1, slen1); + } + if (strlen(s2) == 0) { + is_miss_2 = 1; + } else { + grib_accessor* a2 = grib_find_accessor(h2, key); + is_miss_2 = grib_is_missing_string(a2, (unsigned char*)s2, slen2); + } + if (is_miss_1 && is_miss_2) { + return 1; /* both classed as missing */ + } + return 0; +} static int compare_values(grib_runtime_options* options, grib_handle* handle1, grib_handle* handle2, const char* name, int type) { size_t len1 = 0; @@ -818,17 +841,10 @@ static int compare_values(grib_runtime_options* options, grib_handle* handle1, g } if (err1 == GRIB_SUCCESS && err2 == GRIB_SUCCESS) { if (grib_inline_strcmp(sval1, sval2) != 0) { - /* Check if strings are 'missing'. + /* Strings are different. Now check if strings are 'missing'. * Note: one string could have all its bits=1 and the other empty */ - int equal = 0; - grib_accessor* a1 = grib_find_accessor(handle1, name); - grib_accessor* a2 = grib_find_accessor(handle2, name); - int is_miss_1 = grib_is_missing_string(a1, (unsigned char*)sval1, slen1); - int is_miss_2 = grib_is_missing_string(a2, (unsigned char*)sval2, slen2); - if (is_miss_1 && is_miss_2) { - equal = 1; - } - if (!equal) { + int both_missing = are_strings_both_missing(handle1, handle2, name, sval1, sval2,slen1, slen2); + if (!both_missing) { printInfo(handle1); printf("string [%s]: [%s] != [%s]\n", name, sval1, sval2); err1 = GRIB_VALUE_MISMATCH; @@ -869,7 +885,10 @@ static int compare_values(grib_runtime_options* options, grib_handle* handle1, g countdiff = 0; for (ii = 0; ii < len1; ii++) { if (grib_inline_strcmp(svals1[ii], svals2[ii]) != 0) { - countdiff++; + /* Strings are different. Now check if strings are 'missing' */ + int both_missing = are_strings_both_missing(handle1, handle2, name, svals1[ii], svals2[ii],len1, len2); + if (!both_missing) + countdiff++; } } if (countdiff) { From c1d9fe21526a887639d8ae49e06aa07a662dd137 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 2 Oct 2021 19:05:31 +0100 Subject: [PATCH 665/683] ECC-1283: Test --- tests/bufr_compare.sh | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/tests/bufr_compare.sh b/tests/bufr_compare.sh index a98702d35..d842e42c9 100755 --- a/tests/bufr_compare.sh +++ b/tests/bufr_compare.sh @@ -232,6 +232,35 @@ grep -q "string \[stationOrSiteName\] 1 out of 3 different" $fLog ${tools_dir}/bufr_compare -b stationOrSiteName $fBufrTmp1 $fBufrTmp2 rm -f $fBufrTmp1 $fBufrTmp2 +# Comparing empty string with 'missing' +${tools_dir}/codes_bufr_filter -o $fBufrTmp1 - $sample <$fLog +status=$? +set -e +[ $status -eq 1 ] +grep -q "string \[stationOrSiteName\] 2 out of 3 different" $fLog + +${tools_dir}/bufr_compare -b stationOrSiteName $fBufrTmp1 $fBufrTmp2 +unset ECCODES_BUFR_MULTI_ELEMENT_CONSTANT_ARRAYS +rm -f $fBufrTmp1 $fBufrTmp2 + # Clean up # ------------- From 440d4eb6770af55218fae1933d9925d415462583 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sat, 2 Oct 2021 21:28:31 +0100 Subject: [PATCH 666/683] ECC-1283: Clean up --- tools/bufr_compare.c | 68 +++++++++++++++++++++++++------------------- 1 file changed, 39 insertions(+), 29 deletions(-) diff --git a/tools/bufr_compare.c b/tools/bufr_compare.c index 822ad273a..1562759f5 100644 --- a/tools/bufr_compare.c +++ b/tools/bufr_compare.c @@ -665,28 +665,46 @@ static char* get_keyname_without_rank(const char* name) } static int are_strings_both_missing(grib_handle* h1, grib_handle* h2, const char* key, - const char* s1, const char* s2, - size_t slen1, size_t slen2) + const char* s1, const char* s2, + size_t slen1, size_t slen2) { /* Note: one string could have all its bits=1 and the other empty */ int is_miss_1 = 0, is_miss_2 = 0; if (strlen(s1) == 0) { is_miss_1 = 1; - } else { + } + else { grib_accessor* a1 = grib_find_accessor(h1, key); - is_miss_1 = grib_is_missing_string(a1, (unsigned char*)s1, slen1); + is_miss_1 = grib_is_missing_string(a1, (unsigned char*)s1, slen1); } if (strlen(s2) == 0) { is_miss_2 = 1; - } else { + } + else { grib_accessor* a2 = grib_find_accessor(h2, key); - is_miss_2 = grib_is_missing_string(a2, (unsigned char*)s2, slen2); + is_miss_2 = grib_is_missing_string(a2, (unsigned char*)s2, slen2); } if (is_miss_1 && is_miss_2) { return 1; /* both classed as missing */ } return 0; } + +static int strings_are_different(grib_handle* h1, grib_handle* h2, const char* key, + const char* s1, const char* s2, + size_t slen1, size_t slen2) +{ + if (grib_inline_strcmp(s1, s2) == 0) { + return 0; + } + /* Strings are different. Now check if strings are 'missing'. + * Note: one string could have all its bits=1 and the other empty */ + if (are_strings_both_missing(h1, h2, key, s1, s2, slen1, slen2)) { + return 0; + } + return 1; +} + static int compare_values(grib_runtime_options* options, grib_handle* handle1, grib_handle* handle2, const char* name, int type) { size_t len1 = 0; @@ -825,12 +843,12 @@ static int compare_values(grib_runtime_options* options, grib_handle* handle1, g /*grib_get_string_length(handle1,name,&slen1);*/ /*grib_get_string_length(handle2,name,&slen2);*/ slen1 = slen2 = 4096; /* Significantly faster to use an upper bound */ - sval1 = (char*)grib_context_malloc(handle1->context, slen1 * sizeof(char)); - sval2 = (char*)grib_context_malloc(handle2->context, slen2 * sizeof(char)); + sval1 = (char*)grib_context_malloc(handle1->context, slen1 * sizeof(char)); + sval2 = (char*)grib_context_malloc(handle2->context, slen2 * sizeof(char)); if ((err1 = grib_get_string(handle1, name, sval1, &slen1)) != GRIB_SUCCESS) { printInfo(handle1); printf("Oops... cannot get string value of [%s] in %s field: %s\n", - name, first_str, grib_get_error_message(err1)); + name, first_str, grib_get_error_message(err1)); save_error(c, name); } if ((err2 = grib_get_string(handle2, name, sval2, &slen2)) != GRIB_SUCCESS) { @@ -840,16 +858,11 @@ static int compare_values(grib_runtime_options* options, grib_handle* handle1, g save_error(c, name); } if (err1 == GRIB_SUCCESS && err2 == GRIB_SUCCESS) { - if (grib_inline_strcmp(sval1, sval2) != 0) { - /* Strings are different. Now check if strings are 'missing'. - * Note: one string could have all its bits=1 and the other empty */ - int both_missing = are_strings_both_missing(handle1, handle2, name, sval1, sval2,slen1, slen2); - if (!both_missing) { - printInfo(handle1); - printf("string [%s]: [%s] != [%s]\n", name, sval1, sval2); - err1 = GRIB_VALUE_MISMATCH; - save_error(c, name); - } + if (strings_are_different(handle1, handle2, name, sval1, sval2, slen1, slen2)) { + printInfo(handle1); + printf("string [%s]: [%s] != [%s]\n", name, sval1, sval2); + err1 = GRIB_VALUE_MISMATCH; + save_error(c, name); } } grib_context_free(handle1->context, sval1); @@ -858,8 +871,8 @@ static int compare_values(grib_runtime_options* options, grib_handle* handle1, g else { /* Array of strings */ size_t i = 0; - svals1 = (char**)grib_context_malloc_clear(handle1->context, len1 * sizeof(char*)); - svals2 = (char**)grib_context_malloc_clear(handle2->context, len2 * sizeof(char*)); + svals1 = (char**)grib_context_malloc_clear(handle1->context, len1 * sizeof(char*)); + svals2 = (char**)grib_context_malloc_clear(handle2->context, len2 * sizeof(char*)); if ((err1 = grib_get_string_array(handle1, name, svals1, &len1)) != GRIB_SUCCESS) { printInfo(handle1); @@ -881,14 +894,11 @@ static int compare_values(grib_runtime_options* options, grib_handle* handle1, g save_error(c, name); } if (err1 == GRIB_SUCCESS && err2 == GRIB_SUCCESS && len1 == len2) { - int ii; + size_t ii; countdiff = 0; for (ii = 0; ii < len1; ii++) { - if (grib_inline_strcmp(svals1[ii], svals2[ii]) != 0) { - /* Strings are different. Now check if strings are 'missing' */ - int both_missing = are_strings_both_missing(handle1, handle2, name, svals1[ii], svals2[ii],len1, len2); - if (!both_missing) - countdiff++; + if (strings_are_different(handle1, handle2, name, svals1[ii], svals2[ii], len1, len2)) { + countdiff++; } } if (countdiff) { @@ -901,8 +911,8 @@ static int compare_values(grib_runtime_options* options, grib_handle* handle1, g printf("string [%s] %d out of %ld different\n", name, countdiff, (long)len1); } } - for (i=0; icontext, svals1); grib_context_free(handle1->context, svals2); } From 9dbae2ade1ba0c8a8e50a8757bdf140b35eb9fef Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 3 Oct 2021 18:06:50 +0100 Subject: [PATCH 667/683] Spelling --- src/make_table.pl | 2 +- tools/grib_set.dox | 2 +- tools/grib_set.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/make_table.pl b/src/make_table.pl index 6e903179c..4309f610f 100755 --- a/src/make_table.pl +++ b/src/make_table.pl @@ -114,7 +114,7 @@ foreach my $version (@versions) $s->execute; my $out="local_table_2_version_$version"; - open(G,">$out") or die "can not write to $out"; + open(G,">$out") or die "cannot write to $out"; while(my (@x) = $s->fetchrow_array) { diff --git a/tools/grib_set.dox b/tools/grib_set.dox index f29ab90cd..b7d5f94df 100644 --- a/tools/grib_set.dox +++ b/tools/grib_set.dox @@ -59,7 +59,7 @@ \verbatim >grib_set -s scaleFactorOfFirstFixedSurface=missing,scaledValueOfFirstFixedSurface=MISSING ../data/regular_latlon_surface.grib2 out.grib2 \endverbatim\n -Since some values can not be set to missing you can get an error for those keys.\n +Since some values cannot be set to missing you can get an error for those keys.\n -# To set scaleFactorOfSecondFixedSurface to missing only for the fields for which scaleFactorOfSecondFixedSurface is not missing: \n \verbatim >grib_set -s scaleFactorOfSecondFixedSurface=missing -w scaleFactorOfSecondFixedSurface!=missing tigge_pf_ecmwf.grib2 out.grib2 diff --git a/tools/grib_set.sh b/tools/grib_set.sh index 28b4702ae..849655f83 100755 --- a/tools/grib_set.sh +++ b/tools/grib_set.sh @@ -17,7 +17,7 @@ echo "-# When a key is not used all the bits of its value should be set to 1 to \\verbatim >grib_set -s scaleFactorOfFirstFixedSurface=missing,scaledValueOfFirstFixedSurface=MISSING ../data/regular_latlon_surface.grib2 out.grib2 \\endverbatim\\n -Since some values can not be set to missing you can get an error for those keys.\\n" +Since some values cannot be set to missing you can get an error for those keys.\\n" echo "-# To set scaleFactorOfSecondFixedSurface to missing only for the fields for which scaleFactorOfSecondFixedSurface is not missing: \\n \\verbatim From d1ec27697e870380684910013d6f8a9eaa35e974 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 5 Oct 2021 12:05:15 +0100 Subject: [PATCH 668/683] grib_util_grid_spec: Comments --- src/grib_api.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/grib_api.h b/src/grib_api.h index 1b7719453..202ae3717 100644 --- a/src/grib_api.h +++ b/src/grib_api.h @@ -1423,7 +1423,7 @@ int grib_points_get_values(grib_handle* h, grib_points* points, double* val); typedef struct grib_util_grid_spec { - int grid_type; + int grid_type; /* e.g. GRIB_UTIL_GRID_SPEC_REGULAR_LL etc */ /* Grid */ long Ni; @@ -1450,18 +1450,18 @@ typedef struct grib_util_grid_spec /* Gaussian number */ long N; - /* bitmap */ + /* Bitmap */ long bitmapPresent; - double missingValue; + double missingValue; /* 0 means use the default */ - /* pl list for reduced */ + /* 'pl' array for reduced Gaussian grids */ const long* pl; long pl_size; /* Spherical harmonics */ long truncation; - /* polar stereographic */ + /* Polar stereographic */ double orientationOfTheGridInDegrees; long DyInMetres; long DxInMetres; @@ -1470,7 +1470,7 @@ typedef struct grib_util_grid_spec typedef struct grib_util_grid_spec2 { - int grid_type; + int grid_type; /* e.g. GRIB_UTIL_GRID_SPEC_REGULAR_LL etc */ const char* grid_name; /* e.g. N320 */ /* Grid */ @@ -1499,18 +1499,18 @@ typedef struct grib_util_grid_spec2 /* Gaussian number */ long N; - /* bitmap */ + /* Bitmap */ long bitmapPresent; - double missingValue; + double missingValue; /* 0 means use the default */ - /* pl list for reduced */ + /* 'pl' array for reduced Gaussian grids */ const long* pl; long pl_size; /* Spherical harmonics */ long truncation; - /* polar stereographic */ + /* Polar stereographic */ double orientationOfTheGridInDegrees; long DyInMetres; long DxInMetres; From 862897f46e81e8b2b7bf3ff001ca042cb9dbc263 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 5 Oct 2021 18:13:36 +0100 Subject: [PATCH 669/683] ECC-1288: Implement a mechanism to erase cached definitions/tables --- src/grib_context.c | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/grib_context.c b/src/grib_context.c index 5fa6e46fe..bf14b7a05 100644 --- a/src/grib_context.c +++ b/src/grib_context.c @@ -811,6 +811,7 @@ void grib_context_reset(grib_context* c) grib_context_free(c, cur->value); grib_context_free(c, cur); } + c->grib_definition_files_dir=0; } if (c->multi_support_on) @@ -831,15 +832,27 @@ void grib_context_reset(grib_context* c) void grib_context_delete(grib_context* c) { + size_t i = 0; if (!c) c = grib_context_get_default(); grib_hash_keys_delete(c->keys); - /*grib_trie_delete(c->def_files); TODO:masn */ + /* grib_trie_delete(c->def_files); TODO:masn */ grib_context_reset(c); + if (c != &default_grib_context) grib_context_free_persistent(&default_grib_context, c); + + for(i=0; ihash_array[i] = NULL; + c->hash_array_count = 0; + grib_itrie_delete(c->hash_array_index); + c->hash_array_index=0; + grib_trie_delete(c->expanded_descriptors); + c->expanded_descriptors=0; + + c->inited = 0; } void codes_bufr_multi_element_constant_arrays_on(grib_context* c) From bddded25b3732316a9e50d10de18f93304634c54 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Tue, 5 Oct 2021 23:02:36 +0100 Subject: [PATCH 670/683] ECC-1288: Add test --- tests/CMakeLists.txt | 7 ++++++ tests/bufr_ecc-1288.c | 51 ++++++++++++++++++++++++++++++++++++++++++ tests/bufr_ecc-1288.sh | 43 +++++++++++++++++++++++++++++++++++ 3 files changed, 101 insertions(+) create mode 100644 tests/bufr_ecc-1288.c create mode 100755 tests/bufr_ecc-1288.sh diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index c5716238e..b94632b94 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -30,6 +30,7 @@ list(APPEND test_bins grib_optimize_scaling_sh grib_ecc-386 bufr_ecc-517 + bufr_ecc-1288 bufr_get_element bufr_extract_headers extract_offsets @@ -317,6 +318,12 @@ if( HAVE_BUILD_TOOLS ) CONDITION NOT ECCODES_ON_WINDOWS AND ENABLE_EXTRA_TESTS COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/bufr_ecc-197.sh TEST_DEPENDS eccodes_download_bufrs ) + ecbuild_add_test( TARGET eccodes_t_bufr_ecc-1288 + TYPE SCRIPT + CONDITION NOT ECCODES_ON_WINDOWS AND ENABLE_EXTRA_TESTS + COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/bufr_ecc-1288.sh + TEST_DEPENDS eccodes_download_bufrs ) + if( ENABLE_EXTRA_TESTS AND HAVE_ECCODES_THREADS ) ecbuild_add_executable( TARGET grib_encode_pthreads diff --git a/tests/bufr_ecc-1288.c b/tests/bufr_ecc-1288.c new file mode 100644 index 000000000..981ca49a9 --- /dev/null +++ b/tests/bufr_ecc-1288.c @@ -0,0 +1,51 @@ +#include "eccodes.h" +#include + +const char* KEY = "encryptedShipOrMobileLandStationIdentifier"; + +int main(int argc, char* argv[]) +{ + FILE* in = NULL; + codes_handle* h = NULL; + int err = 0; + size_t slen = 0; + char buf[256] = {0,}; + char** strArray = NULL; /* array of strings */ + + const char* infile = argv[1]; + const char* DEFS_PATH_LOCAL = argv[2]; + + assert(infile); + in = fopen(infile, "rb"); + assert(in); + + h = codes_handle_new_from_file(NULL, in, PRODUCT_BUFR, &err); + assert(h && !err); + printf("Phase 1: unpacking...\n"); + codes_set_long(h, "unpack", 1); /* An error should be issued */ + assert ( !codes_is_defined(h, KEY) ); + codes_handle_delete(h); + + printf("Wipe the cache and extend the definitions path...\n"); + sprintf(buf, "%s:%s", DEFS_PATH_LOCAL, codes_definition_path(NULL)); + codes_context_delete(NULL); + codes_context_set_definitions_path(NULL, buf); + printf("ECCODES_DEFINITION_PATH is now = |%s|\n", buf); + + /* Now rewind and decode the BUFR again */ + fseeko(in, 0, SEEK_SET); + h = codes_handle_new_from_file(NULL, in, PRODUCT_BUFR, &err); assert(h); assert(!err); + printf("Phase 2: unpacking...\n"); + err = codes_set_long(h, "unpack", 1); + + CODES_CHECK(codes_get_size(h, KEY, &slen), 0); + assert( slen == 40 ); + strArray = (char**)malloc(slen * sizeof(char*)); + CODES_CHECK(codes_get_string_array(h, KEY, strArray, &slen), 0); + assert( slen == 40 ); + assert( strcmp(strArray[0], "ABCDEFHIJ0123456789ABCDEFGHIJ0123456789ABCD ") == 0 ); + codes_handle_delete(h); + + fclose(in); + return 0; +} diff --git a/tests/bufr_ecc-1288.sh b/tests/bufr_ecc-1288.sh new file mode 100755 index 000000000..435254e94 --- /dev/null +++ b/tests/bufr_ecc-1288.sh @@ -0,0 +1,43 @@ +#!/bin/sh +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# + +. ./include.sh + +# --------------------------------------------------------- +# This is the test for the JIRA issue ECC-1288. +# It tests decoding a BUFR file which cannot be done unless +# we extend the definitions to include extra files +# --------------------------------------------------------- +label="bufr_ecc-1288-test" + +TEMP=${label}.temp +LOG=${label}.log +set -u + +# Create a temporary directory which holds the tables etc +TEMP_DIR=${label}.temp-dir.$$ +rm -rf $TEMP_DIR +mkdir -p $TEMP_DIR/definitions/bufr/tables/0/local/0/65535/0 + +# Copy the definition files needed to decode our BUFR file +def_files="${proj_dir}/tests/ECC-197/*" +for df in ${def_files}; do + cp -f $df $TEMP_DIR/definitions/bufr/tables/0/local/0/65535/0 +done +LOCAL_DEFS=`pwd`/$TEMP_DIR/definitions + +input=${data_dir}/bufr/vos308014_v3_26.bufr +$EXEC ${test_dir}/bufr_ecc-1288 $input "$LOCAL_DEFS" 2>$LOG + +grep -q "ECCODES ERROR : hash_array: no match for sequences=308014" $LOG + +# Clean up +rm -rf $TEMP_DIR +rm -f $TEMP $LOG From f4af7f52764a0a987145eff7115e1b933fc59a33 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 6 Oct 2021 11:29:57 +0100 Subject: [PATCH 671/683] Debugging messages --- src/grib_accessor_class_bufr_elements_table.c | 2 +- src/grib_accessor_class_dictionary.c | 2 +- src/grib_expression_class_is_in_dict.c | 2 +- src/grib_expression_class_is_in_list.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/grib_accessor_class_bufr_elements_table.c b/src/grib_accessor_class_bufr_elements_table.c index 79d81caea..28b98adb4 100644 --- a/src/grib_accessor_class_bufr_elements_table.c +++ b/src/grib_accessor_class_bufr_elements_table.c @@ -240,7 +240,7 @@ static grib_trie* load_bufr_elements_table(grib_accessor* a, int* err) goto the_end; } else { - grib_context_log(c, GRIB_LOG_DEBUG, "found def file %s", filename); + grib_context_log(c, GRIB_LOG_DEBUG, "bufr_elements_table: found def file %s", filename); } dictionary = (grib_trie*)grib_trie_get(c->lists, dictName); diff --git a/src/grib_accessor_class_dictionary.c b/src/grib_accessor_class_dictionary.c index 4a7210903..a2f58fd89 100644 --- a/src/grib_accessor_class_dictionary.c +++ b/src/grib_accessor_class_dictionary.c @@ -210,7 +210,7 @@ static grib_trie* load_dictionary(grib_context* c, grib_accessor* a, int* err) return NULL; } else { - grib_context_log(c, GRIB_LOG_DEBUG, "found def file %s", filename); + grib_context_log(c, GRIB_LOG_DEBUG, "dictionary: found def file %s", filename); } dictionary = (grib_trie*)grib_trie_get(c->lists, dictName); if (dictionary) { diff --git a/src/grib_expression_class_is_in_dict.c b/src/grib_expression_class_is_in_dict.c index 07de322ad..7e494a909 100644 --- a/src/grib_expression_class_is_in_dict.c +++ b/src/grib_expression_class_is_in_dict.c @@ -111,7 +111,7 @@ static grib_trie* load_dictionary(grib_context* c, grib_expression* e, int* err) return NULL; } else { - grib_context_log(c, GRIB_LOG_DEBUG, "found def file %s", filename); + grib_context_log(c, GRIB_LOG_DEBUG, "is_in_dict: found def file %s", filename); } dictionary = (grib_trie*)grib_trie_get(c->lists, filename); if (dictionary) { diff --git a/src/grib_expression_class_is_in_list.c b/src/grib_expression_class_is_in_list.c index 9f64f5979..e939f2da0 100644 --- a/src/grib_expression_class_is_in_list.c +++ b/src/grib_expression_class_is_in_list.c @@ -110,7 +110,7 @@ static grib_trie* load_list(grib_context* c, grib_expression* e, int* err) return NULL; } else { - grib_context_log(c, GRIB_LOG_DEBUG, "found def file %s", filename); + grib_context_log(c, GRIB_LOG_DEBUG, "is_in_list: found def file %s", filename); } list = (grib_trie*)grib_trie_get(c->lists, filename); if (list) { From 560a12aa32dc20668ac593eb454896b18b873972 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 6 Oct 2021 12:24:10 +0100 Subject: [PATCH 672/683] ECC-1288: Fix test --- tests/bufr_ecc-1288.c | 2 +- tests/bufr_ecc-1288.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/bufr_ecc-1288.c b/tests/bufr_ecc-1288.c index 981ca49a9..a31e42d68 100644 --- a/tests/bufr_ecc-1288.c +++ b/tests/bufr_ecc-1288.c @@ -9,7 +9,7 @@ int main(int argc, char* argv[]) codes_handle* h = NULL; int err = 0; size_t slen = 0; - char buf[256] = {0,}; + char buf[1024] = {0,}; char** strArray = NULL; /* array of strings */ const char* infile = argv[1]; diff --git a/tests/bufr_ecc-1288.sh b/tests/bufr_ecc-1288.sh index 435254e94..394be8483 100755 --- a/tests/bufr_ecc-1288.sh +++ b/tests/bufr_ecc-1288.sh @@ -34,9 +34,9 @@ done LOCAL_DEFS=`pwd`/$TEMP_DIR/definitions input=${data_dir}/bufr/vos308014_v3_26.bufr -$EXEC ${test_dir}/bufr_ecc-1288 $input "$LOCAL_DEFS" 2>$LOG +$EXEC ${test_dir}/bufr_ecc-1288 $input "$LOCAL_DEFS" # 2>$LOG -grep -q "ECCODES ERROR : hash_array: no match for sequences=308014" $LOG +#grep -q "ECCODES ERROR : hash_array: no match for sequences=308014" $LOG # Clean up rm -rf $TEMP_DIR From 85ec4622903a0f165acefd869955127d90dcd816 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 6 Oct 2021 15:43:09 +0100 Subject: [PATCH 673/683] Testing: More checks on BUFR element.table files --- tests/bufr_check_descriptors.c | 73 ++++++++++++++++++++++++++++++++-- 1 file changed, 69 insertions(+), 4 deletions(-) diff --git a/tests/bufr_check_descriptors.c b/tests/bufr_check_descriptors.c index b4f3906ac..95ebe7136 100644 --- a/tests/bufr_check_descriptors.c +++ b/tests/bufr_check_descriptors.c @@ -11,6 +11,22 @@ #include #include "grib_api_internal.h" +static const size_t MIN_NUM_COLUMNS = 8; + +#define NUMBER(a) (sizeof(a) / sizeof(a[0])) +static const char* allowed_types[] = {"long", "double", "table", "flag", "string"}; + +static int check_descriptor_type(const char* atype) +{ + size_t i = 0, numTypes = NUMBER(allowed_types); + for(i=0; i 0); if (line[0] == '#') continue; /* Ignore first line with column titles */ list = string_split(line, "|"); - Assert(list); + if (!list) { + fprintf(stderr, "Error on line %lu: string_split failed!\n", line_number); + return 1; + } + for (i = 0; list[i] != NULL; ++i) {} /* count how many tokens */ + if (i < MIN_NUM_COLUMNS) { + fprintf(stderr, "Error on line %lu: Number of columns (=%lu) < required miniumum (=%lu)!\n", + line_number, i, MIN_NUM_COLUMNS); + return 1; + } + str_code = list[0]; + if (string_to_long(str_code, &lValue) != GRIB_SUCCESS) { + fprintf(stderr, "Error on line %lu: descriptor code '%s' (column 1) is not numeric.\n", + line_number, str_code); + return 1; + } str_key = list[1]; - str_units = list[4]; + str_type = list[2]; + if (check_descriptor_type(str_type) != GRIB_SUCCESS) { + fprintf(stderr, "Error on line %lu: descriptor key type '%s' (column 3) is not valid.\n", + line_number, str_type); + fprintf(stderr, "Please choose one of:\n"); + for(i=0; i< NUMBER(allowed_types); ++i) { + fprintf(stderr, "\t%s\n", allowed_types[i]); + } + return 1; + } if (strlen(str_key) >= maxlen_keyName) { - fprintf(stderr, "Error on line %lu: bufr_descriptor key name '%s' exceeds %lu characters.\n", + fprintf(stderr, "Error on line %lu: descriptor key name '%s' (column 2) exceeds %lu characters.\n", line_number, str_key, maxlen_keyName); return 1; } + str_units = list[4]; if (strlen(str_units) >= maxlen_units) { - fprintf(stderr, "Error on line %lu: bufr_descriptor units '%s' exceeds %lu characters.\n", + fprintf(stderr, "Error on line %lu: descriptor units '%s' (column 5) exceeds %lu characters.\n", line_number, str_units, maxlen_units); return 1; } + str_scale = list[5]; + str_ref = list[6]; + str_width = list[7]; + if (string_to_long(str_scale, &lValue) != GRIB_SUCCESS) { + fprintf(stderr, "Error on line %lu: descriptor scale '%s' (column 6) is not numeric.\n", + line_number, str_scale); + return 1; + } + if (string_to_long(str_ref, &lValue) != GRIB_SUCCESS) { + fprintf(stderr, "Error on line %lu: descriptor reference '%s' (column 7) is not numeric.\n", + line_number, str_ref); + return 1; + } + if (string_to_long(str_width, &lValue) != GRIB_SUCCESS) { + fprintf(stderr, "Error on line %lu: descriptor width '%s' (column 8) is not numeric.\n", + line_number, str_width); + return 1; + } for (i = 0; list[i] != NULL; ++i) free(list[i]); free(list); From 921949d683abd67f2bbe46d11d262aa94f94ead8 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 6 Oct 2021 15:44:45 +0100 Subject: [PATCH 674/683] Formatting --- tests/bufr_check_descriptors.c | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/tests/bufr_check_descriptors.c b/tests/bufr_check_descriptors.c index 95ebe7136..e1d2ac14e 100644 --- a/tests/bufr_check_descriptors.c +++ b/tests/bufr_check_descriptors.c @@ -14,13 +14,13 @@ static const size_t MIN_NUM_COLUMNS = 8; #define NUMBER(a) (sizeof(a) / sizeof(a[0])) -static const char* allowed_types[] = {"long", "double", "table", "flag", "string"}; +static const char* allowed_types[] = { "long", "double", "table", "flag", "string" }; static int check_descriptor_type(const char* atype) { size_t i = 0, numTypes = NUMBER(allowed_types); - for(i=0; i Date: Wed, 6 Oct 2021 19:39:00 +0100 Subject: [PATCH 675/683] Testing: Memory leak suppressions --- tests/lsan-leap42.supp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/lsan-leap42.supp b/tests/lsan-leap42.supp index d11c22254..c292f798a 100644 --- a/tests/lsan-leap42.supp +++ b/tests/lsan-leap42.supp @@ -1,3 +1,4 @@ leak:process_elements leak:tests/bufr_ecc-517.c +leak:tests/bufr_ecc-1288.c leak:src/action_class_rename.c From aa214d67284e3afcd0a57c709de069a860a8ff4d Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 6 Oct 2021 20:49:23 +0100 Subject: [PATCH 676/683] Testing: Memory leaks --- tests/bufr_ecc-1288.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/bufr_ecc-1288.c b/tests/bufr_ecc-1288.c index a31e42d68..ec94d14ac 100644 --- a/tests/bufr_ecc-1288.c +++ b/tests/bufr_ecc-1288.c @@ -8,7 +8,7 @@ int main(int argc, char* argv[]) FILE* in = NULL; codes_handle* h = NULL; int err = 0; - size_t slen = 0; + size_t i = 0, slen = 0; char buf[1024] = {0,}; char** strArray = NULL; /* array of strings */ @@ -46,6 +46,9 @@ int main(int argc, char* argv[]) assert( strcmp(strArray[0], "ABCDEFHIJ0123456789ABCDEFGHIJ0123456789ABCD ") == 0 ); codes_handle_delete(h); + for (i = 0; i < slen; ++i) free(strArray[i]); + free(strArray); + fclose(in); return 0; } From 01d93d5e8bdf8cd612099e72ec51065802142beb Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Wed, 6 Oct 2021 20:55:26 +0100 Subject: [PATCH 677/683] ECC-1288: Fix test for Microsoft Windows --- tests/bufr_ecc-1288.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/bufr_ecc-1288.c b/tests/bufr_ecc-1288.c index ec94d14ac..5477f4d0e 100644 --- a/tests/bufr_ecc-1288.c +++ b/tests/bufr_ecc-1288.c @@ -1,6 +1,10 @@ #include "eccodes.h" #include +#ifndef HAVE_FSEEKO +#define fseeko fseek +#endif + const char* KEY = "encryptedShipOrMobileLandStationIdentifier"; int main(int argc, char* argv[]) From 7867b43cf2477ac7a58d61eb7fd0a4a80bdf80c4 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Thu, 7 Oct 2021 16:25:03 +0100 Subject: [PATCH 678/683] Definitions: MARS stream names --- definitions/mars/stream.table | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/definitions/mars/stream.table b/definitions/mars/stream.table index 8f6075db7..12e77e981 100644 --- a/definitions/mars/stream.table +++ b/definitions/mars/stream.table @@ -106,8 +106,8 @@ 1246 espd Ensemble supplementary data 1247 lwda Long window daily archive 1248 lwwv Long window wave -1249 elda Ensemble Long window Data Assimilation -1250 ewla Ensemble Wave Long window data Assimilation +1249 elda Ensemble Long window data assimilation +1250 ewla Ensemble Wave Long window data assimilation 1251 wamd Wave monthly means of daily means 1252 gfas Global fire assimilation system 2231 cnrm Meteo France climate centre From d825769d43285ab0c6236b4020aa0526fbd8d641 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 10 Oct 2021 18:19:20 +0100 Subject: [PATCH 679/683] Examples: Python script to check BUFR Table B (element.table) files --- examples/python/bufr_check_table.py | 126 ++++++++++++++++++++++++++++ 1 file changed, 126 insertions(+) create mode 100644 examples/python/bufr_check_table.py diff --git a/examples/python/bufr_check_table.py b/examples/python/bufr_check_table.py new file mode 100644 index 000000000..2fc5f6730 --- /dev/null +++ b/examples/python/bufr_check_table.py @@ -0,0 +1,126 @@ +# (C) Copyright 2005- ECMWF. +# +# This software is licensed under the terms of the Apache Licence Version 2.0 +# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. +# +# In applying this licence, ECMWF does not waive the privileges and immunities granted to it by +# virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction. +# +# +# Description: Verify the given BUFR table (B or D) are correctly formed for ecCodes +# + +from __future__ import print_function + +import getopt +import os +import sys +import traceback +import numpy as np + +MIN_NUM_COLUMNS = 8 +LEN_DESCRIPTOR = 6 # FXY +ALLOWED_TYPES = ("long", "double", "table", "flag", "string") + + +def isNumeric(a_str): + result = True + try: + int(a_str) + except ValueError: + result = False + return result + + +def verify_table(table, filename): + if table == "D": + raise NotImplementedError("Table D verification: Not yet implemented.") + + data = np.genfromtxt(filename, comments="#", dtype=str, delimiter="|") + + # If there is only 1 row, then we get a plain list and not list of lists + if len(data.shape) == 1: + data = np.asarray([data]) + + for i, a_row in enumerate(data): + # print(f"Checking {a_row}") + linenum = 1 + i + numcols = len(a_row) + if numcols < MIN_NUM_COLUMNS: + print(f"{a_row}") + print( + f"Error in line {linenum}: Number of columns (={numcols}) < required miniumum (={MIN_NUM_COLUMNS})" + ) + return 1 + a_code = a_row[0] + a_key = a_row[1] + a_type = a_row[2] + a_unit = a_row[4] + a_scale = a_row[5] + a_ref = a_row[6] + a_width = a_row[7] + if not isNumeric(a_code): + print(f"Error in line {linenum}: Code '{a_code}' (column 1) is not numeric") + return 1 + if len(a_code) != LEN_DESCRIPTOR: + print( + f"Error in line {linenum}: Code '{a_code}' (column 1) should be {LEN_DESCRIPTOR} digits long" + ) + print( + f"\tAll descriptors have a F-X-Y structure: 1 digit for F, 2 for X and 3 for Y" + ) + return 1 + if not a_key: + print(f"Error in line {linenum}: Key '{a_key}' (column 2) is not valid") + if a_type not in ALLOWED_TYPES: + print(f"Error in line {linenum}: Type '{a_type}' (column 3) is not valid") + print(f"\tPlease choose from: {ALLOWED_TYPES}") + return 1 + if not isNumeric(a_scale): + print( + f"Error in line {linenum}: Scale '{a_scale}' (column 6) is not numeric" + ) + return 1 + if not isNumeric(a_ref): + print( + f"Error in line {linenum}: Reference '{a_ref}' (column 7) is not numeric" + ) + return 1 + if not isNumeric(a_width): + print( + f"Error in line {linenum}: Width '{a_width}' (column 8) is not numeric" + ) + return 1 + + print("All OK") + return 0 + + +def usage(): + progname = os.path.basename(sys.argv[0]) + print("Usage: ", progname, "option file") + print("Options:") + print("\t-B: Input is Table B (element.table)") + print("\t-D: Input is Table D (sequence.def)") + print("") + + +def main(): + if len(sys.argv) != 3: + usage() + return 1 + if sys.argv[1] == "-B": + table = "B" + elif sys.argv[1] == "-D": + table = "D" + else: + assert False, "Invalid option. Specify -B or -D" + filename = sys.argv[2] + + print(f"Processing {filename}") + status = verify_table(table, filename) + return status + + +if __name__ == "__main__": + sys.exit(main()) From 2b6e5af279311e7a36a86864a2f69f7faba06e0a Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 10 Oct 2021 18:22:35 +0100 Subject: [PATCH 680/683] Testing: Check descriptor code: FXY must be 6 digits --- tests/bufr_check_descriptors.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/bufr_check_descriptors.c b/tests/bufr_check_descriptors.c index e1d2ac14e..a457e0730 100644 --- a/tests/bufr_check_descriptors.c +++ b/tests/bufr_check_descriptors.c @@ -12,6 +12,7 @@ #include "grib_api_internal.h" static const size_t MIN_NUM_COLUMNS = 8; +static const size_t NUM_DESCRIPTOR_DIGITS = 6; /* FXY */ #define NUMBER(a) (sizeof(a) / sizeof(a[0])) static const char* allowed_types[] = { "long", "double", "table", "flag", "string" }; @@ -73,6 +74,11 @@ int main(int argc, char** argv) line_number, str_code); return 1; } + if (strlen(str_code) != NUM_DESCRIPTOR_DIGITS) { + fprintf(stderr, "Error on line %lu: descriptor code '%s' (column 1) is not %lu digits.\n", + line_number, str_code, NUM_DESCRIPTOR_DIGITS); + return 1; + } str_key = list[1]; str_type = list[2]; if (check_descriptor_type(str_type) != GRIB_SUCCESS) { From 3200d6f4bcd8067e1ea395009e0767ff88cd488f Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 10 Oct 2021 20:30:18 +0100 Subject: [PATCH 681/683] Examples: Python script to check BUFR Table B (only consider first 8 columns) --- examples/python/bufr_check_table.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/python/bufr_check_table.py b/examples/python/bufr_check_table.py index 2fc5f6730..2f534a2ea 100644 --- a/examples/python/bufr_check_table.py +++ b/examples/python/bufr_check_table.py @@ -36,7 +36,9 @@ def verify_table(table, filename): if table == "D": raise NotImplementedError("Table D verification: Not yet implemented.") - data = np.genfromtxt(filename, comments="#", dtype=str, delimiter="|") + data = np.genfromtxt( + filename, comments="#", dtype=str, delimiter="|", usecols=np.arange(0, 8) + ) # If there is only 1 row, then we get a plain list and not list of lists if len(data.shape) == 1: @@ -48,9 +50,7 @@ def verify_table(table, filename): numcols = len(a_row) if numcols < MIN_NUM_COLUMNS: print(f"{a_row}") - print( - f"Error in line {linenum}: Number of columns (={numcols}) < required miniumum (={MIN_NUM_COLUMNS})" - ) + print(f"Error in line {linenum}: Column count (={numcols}) < required miniumum (={MIN_NUM_COLUMNS})") return 1 a_code = a_row[0] a_key = a_row[1] From 20ebd55074b3b83332ba17eaa476481c9fc39249 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Sun, 10 Oct 2021 21:07:48 +0100 Subject: [PATCH 682/683] Examples: Python script to check BUFR Table B (formatting, isort, flake8 etc) --- examples/python/bufr_check_table.py | 27 +++++++-------------------- 1 file changed, 7 insertions(+), 20 deletions(-) diff --git a/examples/python/bufr_check_table.py b/examples/python/bufr_check_table.py index 2f534a2ea..200cf2492 100644 --- a/examples/python/bufr_check_table.py +++ b/examples/python/bufr_check_table.py @@ -12,10 +12,9 @@ from __future__ import print_function -import getopt import os import sys -import traceback + import numpy as np MIN_NUM_COLUMNS = 8 @@ -49,13 +48,11 @@ def verify_table(table, filename): linenum = 1 + i numcols = len(a_row) if numcols < MIN_NUM_COLUMNS: - print(f"{a_row}") print(f"Error in line {linenum}: Column count (={numcols}) < required miniumum (={MIN_NUM_COLUMNS})") return 1 a_code = a_row[0] a_key = a_row[1] a_type = a_row[2] - a_unit = a_row[4] a_scale = a_row[5] a_ref = a_row[6] a_width = a_row[7] @@ -63,12 +60,8 @@ def verify_table(table, filename): print(f"Error in line {linenum}: Code '{a_code}' (column 1) is not numeric") return 1 if len(a_code) != LEN_DESCRIPTOR: - print( - f"Error in line {linenum}: Code '{a_code}' (column 1) should be {LEN_DESCRIPTOR} digits long" - ) - print( - f"\tAll descriptors have a F-X-Y structure: 1 digit for F, 2 for X and 3 for Y" - ) + print(f"Error in line {linenum}: Code '{a_code}' (column 1) should be {LEN_DESCRIPTOR} digits long") + print("\tAll descriptor codes (FXY) must have 1 digit for F, 2 for X and 3 for Y") return 1 if not a_key: print(f"Error in line {linenum}: Key '{a_key}' (column 2) is not valid") @@ -77,19 +70,13 @@ def verify_table(table, filename): print(f"\tPlease choose from: {ALLOWED_TYPES}") return 1 if not isNumeric(a_scale): - print( - f"Error in line {linenum}: Scale '{a_scale}' (column 6) is not numeric" - ) + print(f"Error in line {linenum}: Scale '{a_scale}' (column 6) is not numeric") return 1 if not isNumeric(a_ref): - print( - f"Error in line {linenum}: Reference '{a_ref}' (column 7) is not numeric" - ) + print(f"Error in line {linenum}: Reference '{a_ref}' (column 7) is not numeric") return 1 if not isNumeric(a_width): - print( - f"Error in line {linenum}: Width '{a_width}' (column 8) is not numeric" - ) + print(f"Error in line {linenum}: Width '{a_width}' (column 8) is not numeric") return 1 print("All OK") @@ -117,7 +104,7 @@ def main(): assert False, "Invalid option. Specify -B or -D" filename = sys.argv[2] - print(f"Processing {filename}") + print(f"Processing {filename}: Table{table}") status = verify_table(table, filename) return status From 4c7dcac25d6041ec8b125ef98f64b88cd5e6e4f3 Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Mon, 11 Oct 2021 18:05:44 +0100 Subject: [PATCH 683/683] YACC cleanup/formatting/spelling --- src/grib_yacc.c | 62 +++++++++++++++---------------- src/griby.y | 98 ++++++++++++++++++++++++------------------------- src/makeyacc | 10 ++++- 3 files changed, 84 insertions(+), 86 deletions(-) diff --git a/src/grib_yacc.c b/src/grib_yacc.c index 980c00fcf..3c9fa9821 100644 --- a/src/grib_yacc.c +++ b/src/grib_yacc.c @@ -869,7 +869,7 @@ static const char *const grib_yytname[] = "hash_array_block", "case_list", "case_value", "switch_block", "concept_value", "concept_conditions", "concept_condition", "hash_array_value", "string_or_ident", "atom", "power", "factor", "term", - "condition", "conjonction", "disjonction", "expression", "rule", + "condition", "conjunction", "disjunction", "expression", "rule", "rule_entry", "rule_entries", "fact", "conditional_rule", "rules", YY_NULLPTR }; #endif @@ -2368,7 +2368,7 @@ grib_yyreduce: { case 2: #line 262 "griby.y" - { grib_parser_all_actions = 0;grib_parser_concept=0; + { grib_parser_all_actions = 0;grib_parser_concept=0; grib_parser_hash_array=0;grib_parser_rules=0; } #line 2374 "y.tab.c" break; @@ -2406,7 +2406,7 @@ grib_yyreduce: case 9: #line 276 "griby.y" - { (grib_yyval.dvalue)=grib_darray_push(grib_parser_context,0,(grib_yyvsp[0].dval));} + { (grib_yyval.dvalue)=grib_darray_push(grib_parser_context,0,(grib_yyvsp[0].dval));} #line 2411 "y.tab.c" break; @@ -2430,7 +2430,7 @@ grib_yyreduce: case 13: #line 282 "griby.y" - { (grib_yyval.svalue)=grib_sarray_push(grib_parser_context,0,(grib_yyvsp[0].str));} + { (grib_yyval.svalue)=grib_sarray_push(grib_parser_context,0,(grib_yyvsp[0].str));} #line 2435 "y.tab.c" break; @@ -2442,7 +2442,7 @@ grib_yyreduce: case 15: #line 287 "griby.y" - { (grib_yyval.ivalue)=grib_iarray_push(0,(grib_yyvsp[0].lval));} + { (grib_yyval.ivalue)=grib_iarray_push(0,(grib_yyvsp[0].lval));} #line 2447 "y.tab.c" break; @@ -2484,7 +2484,7 @@ grib_yyreduce: case 36: #line 321 "griby.y" - { (grib_yyval.explist) = grib_arguments_new(grib_parser_context,(grib_yyvsp[0].exp),NULL); } + { (grib_yyval.explist) = grib_arguments_new(grib_parser_context,(grib_yyvsp[0].exp),NULL); } #line 2489 "y.tab.c" break; @@ -3199,7 +3199,7 @@ grib_yyreduce: case 148: #line 657 "griby.y" - { (grib_yyval.act) = grib_action_create_set(grib_parser_context,(grib_yyvsp[-2].str),(grib_yyvsp[0].exp),0); free((grib_yyvsp[-2].str)); } + { (grib_yyval.act) = grib_action_create_set(grib_parser_context,(grib_yyvsp[-2].str),(grib_yyvsp[0].exp),0); free((grib_yyvsp[-2].str)); } #line 3204 "y.tab.c" break; @@ -3217,7 +3217,7 @@ grib_yyreduce: case 152: #line 666 "griby.y" - { (grib_yyval.explist) = NULL ;} + { (grib_yyval.explist) = NULL ;} #line 3222 "y.tab.c" break; @@ -3229,7 +3229,7 @@ grib_yyreduce: case 154: #line 670 "griby.y" - { (grib_yyval.lval) = 0 ; } + { (grib_yyval.lval) = 0 ; } #line 3234 "y.tab.c" break; @@ -3331,25 +3331,25 @@ grib_yyreduce: case 172: #line 694 "griby.y" - { (grib_yyval.act) = grib_action_create_list(grib_parser_context,(grib_yyvsp[-7].str),(grib_yyvsp[-4].exp),(grib_yyvsp[-1].act)); free((grib_yyvsp[-7].str)); } + { (grib_yyval.act) = grib_action_create_list(grib_parser_context,(grib_yyvsp[-7].str),(grib_yyvsp[-4].exp),(grib_yyvsp[-1].act)); free((grib_yyvsp[-7].str)); } #line 3336 "y.tab.c" break; case 173: #line 697 "griby.y" - { (grib_yyval.act) = grib_action_create_while(grib_parser_context,(grib_yyvsp[-4].exp),(grib_yyvsp[-1].act)); } + { (grib_yyval.act) = grib_action_create_while(grib_parser_context,(grib_yyvsp[-4].exp),(grib_yyvsp[-1].act)); } #line 3342 "y.tab.c" break; case 174: #line 700 "griby.y" - { (grib_yyval.act) = grib_action_create_trigger(grib_parser_context,(grib_yyvsp[-4].explist),(grib_yyvsp[-1].act)); } + { (grib_yyval.act) = grib_action_create_trigger(grib_parser_context,(grib_yyvsp[-4].explist),(grib_yyvsp[-1].act)); } #line 3348 "y.tab.c" break; case 175: #line 703 "griby.y" - { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-2].concept_value),0,0,0,0,0,0,(grib_yyvsp[0].lval),0); free((grib_yyvsp[-4].str)); } + { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-2].concept_value),0,0,0,0,0,0,(grib_yyvsp[0].lval),0); free((grib_yyvsp[-4].str)); } #line 3354 "y.tab.c" break; @@ -3403,7 +3403,7 @@ grib_yyreduce: case 184: #line 712 "griby.y" - { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-2].concept_value),0,0,0,0,0,0,(grib_yyvsp[0].lval),1); free((grib_yyvsp[-4].str)); } + { (grib_yyval.act) = grib_action_create_concept(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-2].concept_value),0,0,0,0,0,0,(grib_yyvsp[0].lval),1); free((grib_yyvsp[-4].str)); } #line 3408 "y.tab.c" break; @@ -3463,7 +3463,7 @@ grib_yyreduce: case 196: #line 731 "griby.y" - { (grib_yyval.act) = grib_action_create_hash_array(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-2].hash_array_value),0,0,0,0,0,0,(grib_yyvsp[0].lval),0); free((grib_yyvsp[-4].str)); } + { (grib_yyval.act) = grib_action_create_hash_array(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-2].hash_array_value),0,0,0,0,0,0,(grib_yyvsp[0].lval),0); free((grib_yyvsp[-4].str)); } #line 3468 "y.tab.c" break; @@ -3481,7 +3481,7 @@ grib_yyreduce: case 200: #line 739 "griby.y" - { (grib_yyval.case_value) = grib_case_new(grib_parser_context,(grib_yyvsp[-2].explist),(grib_yyvsp[0].act)); } + { (grib_yyval.case_value) = grib_case_new(grib_parser_context,(grib_yyvsp[-2].explist),(grib_yyvsp[0].act)); } #line 3486 "y.tab.c" break; @@ -3505,7 +3505,7 @@ grib_yyreduce: case 204: #line 748 "griby.y" - { + { (grib_yyval.concept_value) = grib_concept_value_new(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-1].concept_condition)); free((grib_yyvsp[-4].str));} #line 3511 "y.tab.c" break; @@ -3539,7 +3539,7 @@ grib_yyreduce: case 210: #line 762 "griby.y" - { (grib_yyval.concept_condition) = grib_concept_condition_new(grib_parser_context,(grib_yyvsp[-3].str),(grib_yyvsp[-1].exp),0); free((grib_yyvsp[-3].str)); } + { (grib_yyval.concept_condition) = grib_concept_condition_new(grib_parser_context,(grib_yyvsp[-3].str),(grib_yyvsp[-1].exp),0); free((grib_yyvsp[-3].str)); } #line 3544 "y.tab.c" break; @@ -3551,7 +3551,7 @@ grib_yyreduce: case 212: #line 767 "griby.y" - { + { (grib_yyval.hash_array_value) = grib_integer_hash_array_value_new(grib_parser_context,(grib_yyvsp[-4].str),(grib_yyvsp[-1].ivalue)); free((grib_yyvsp[-4].str));} #line 3557 "y.tab.c" break; @@ -3565,19 +3565,19 @@ grib_yyreduce: case 214: #line 773 "griby.y" - { (grib_yyval.exp) = new_accessor_expression(grib_parser_context,(grib_yyvsp[-5].str),(grib_yyvsp[-3].lval),(grib_yyvsp[-1].lval)); free((grib_yyvsp[-5].str)); } + { (grib_yyval.exp) = new_accessor_expression(grib_parser_context,(grib_yyvsp[-5].str),(grib_yyvsp[-3].lval),(grib_yyvsp[-1].lval)); free((grib_yyvsp[-5].str)); } #line 3570 "y.tab.c" break; case 215: #line 774 "griby.y" - { (grib_yyval.exp) = new_accessor_expression(grib_parser_context,(grib_yyvsp[0].str),0,0); free((grib_yyvsp[0].str)); } + { (grib_yyval.exp) = new_accessor_expression(grib_parser_context,(grib_yyvsp[0].str),0,0); free((grib_yyvsp[0].str)); } #line 3576 "y.tab.c" break; case 216: #line 775 "griby.y" - { (grib_yyval.exp) = new_sub_string_expression(grib_parser_context,(grib_yyvsp[-5].str),(grib_yyvsp[-3].lval),(grib_yyvsp[-1].lval)); free((grib_yyvsp[-5].str)); } + { (grib_yyval.exp) = new_sub_string_expression(grib_parser_context,(grib_yyvsp[-5].str),(grib_yyvsp[-3].lval),(grib_yyvsp[-1].lval)); free((grib_yyvsp[-5].str)); } #line 3582 "y.tab.c" break; @@ -3637,13 +3637,13 @@ grib_yyreduce: case 227: #line 792 "griby.y" - { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_pow,NULL,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } + { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_pow,NULL,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } #line 3642 "y.tab.c" break; case 229: #line 796 "griby.y" - { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_mul,&grib_op_mul_d,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } + { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_mul,&grib_op_mul_d,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } #line 3648 "y.tab.c" break; @@ -3709,7 +3709,7 @@ grib_yyreduce: case 241: #line 810 "griby.y" - { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_add,&grib_op_add_d,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } + { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_add,&grib_op_add_d,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } #line 3714 "y.tab.c" break; @@ -3721,7 +3721,7 @@ grib_yyreduce: case 244: #line 815 "griby.y" - { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_gt,&grib_op_gt_d,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } + { (grib_yyval.exp) = new_binop_expression(grib_parser_context,&grib_op_gt,&grib_op_gt_d,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } #line 3726 "y.tab.c" break; @@ -3769,19 +3769,19 @@ grib_yyreduce: case 253: #line 831 "griby.y" - { (grib_yyval.exp) = new_logical_and_expression(grib_parser_context,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } + { (grib_yyval.exp) = new_logical_and_expression(grib_parser_context,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp)); } #line 3774 "y.tab.c" break; case 255: #line 835 "griby.y" - { (grib_yyval.exp) = new_logical_or_expression(grib_parser_context,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp));} + { (grib_yyval.exp) = new_logical_or_expression(grib_parser_context,(grib_yyvsp[-2].exp),(grib_yyvsp[0].exp));} #line 3780 "y.tab.c" break; case 260: #line 849 "griby.y" - { (grib_yyval.rule_entry) = grib_new_rule_entry(grib_parser_context,(grib_yyvsp[-3].str),(grib_yyvsp[-1].exp)); free((grib_yyvsp[-3].str)); } + { (grib_yyval.rule_entry) = grib_new_rule_entry(grib_parser_context,(grib_yyvsp[-3].str),(grib_yyvsp[-1].exp)); free((grib_yyvsp[-3].str)); } #line 3786 "y.tab.c" break; @@ -4078,11 +4078,7 @@ static grib_hash_array_value *_reverse_hash_array(grib_hash_array_value *r,grib_ return _reverse_hash_array(v,r); } - static grib_hash_array_value* reverse_hash_array(grib_hash_array_value* r) { return _reverse_hash_array(r,NULL); } - - - diff --git a/src/griby.y b/src/griby.y index 8787cca0d..425a8d7b9 100644 --- a/src/griby.y +++ b/src/griby.y @@ -228,8 +228,8 @@ static grib_hash_array_value *_reverse_hash_array(grib_hash_array_value *r,grib_ %type factor %type term %type power -%type conjonction -%type disjonction +%type conjunction +%type disjunction %type string_or_ident %type flag @@ -259,7 +259,7 @@ static grib_hash_array_value *_reverse_hash_array(grib_hash_array_value *r,grib_ %% -all : empty { grib_parser_all_actions = 0;grib_parser_concept=0; +all: empty { grib_parser_all_actions = 0;grib_parser_concept=0; grib_parser_hash_array=0;grib_parser_rules=0; } | concept_list { grib_parser_concept = reverse_concept($1); } | hash_array_list { grib_parser_hash_array = reverse_hash_array($1); } @@ -273,22 +273,22 @@ all : empty { grib_parser_all_actions = 0;grib_parser_concept=0; empty:; -dvalues : FLOAT { $$=grib_darray_push(grib_parser_context,0,$1);} +dvalues: FLOAT { $$=grib_darray_push(grib_parser_context,0,$1);} | dvalues ',' FLOAT { $$=grib_darray_push(grib_parser_context,$1,$3);} | INTEGER { $$=grib_darray_push(grib_parser_context,0,$1);} | dvalues ',' INTEGER { $$=grib_darray_push(grib_parser_context,$1,$3);} ; -svalues : STRING { $$=grib_sarray_push(grib_parser_context,0,$1);} +svalues: STRING { $$=grib_sarray_push(grib_parser_context,0,$1);} | svalues ',' STRING { $$=grib_sarray_push(grib_parser_context,$1,$3);} ; -integer_array : INTEGER { $$=grib_iarray_push(0,$1);} +integer_array: INTEGER { $$=grib_iarray_push(0,$1);} | integer_array ',' INTEGER { $$=grib_iarray_push($1,$3);} ; -instructions : instruction +instructions: instruction | instruction instructions { $1->next = $2; $$ = $1; } | instruction ';' instructions { $1->next = $3; $$ = $1; } | instruction ';' { $$ = $1;} @@ -306,7 +306,7 @@ instruction: simple ';' ; - semi: ';' +semi: ';' | semi ';' @@ -314,15 +314,15 @@ argument_list: empty { $$ = 0; } | arguments ; -arguments : argument +arguments: argument | argument ',' arguments { $1->next = $3; $$ = $1; } ; -argument : expression { $$ = grib_arguments_new(grib_parser_context,$1,NULL); } +argument: expression { $$ = grib_arguments_new(grib_parser_context,$1,NULL); } ; -simple : UNSIGNED '[' INTEGER ']' IDENT default flags +simple: UNSIGNED '[' INTEGER ']' IDENT default flags { $$ = grib_action_create_gen(grib_parser_context,$5,"unsigned",$3,NULL,$6,$7,NULL,NULL); free($5); } | UNSIGNED '[' INTEGER ']' IDENT '[' argument_list ']' default flags @@ -641,37 +641,37 @@ simple : UNSIGNED '[' INTEGER ']' IDENT default flags | PRINT { $$ = grib_action_create_print(grib_parser_context,"",0); } ; -if_block : +if_block: IF '(' expression ')' '{' instructions '}' { $$ = grib_action_create_if(grib_parser_context,$3,$6,0,0,yylineno,file_being_parsed()); } | IF '(' expression ')' '{' instructions '}' ELSE '{' instructions '}' { $$ = grib_action_create_if(grib_parser_context,$3,$6,$10,0,yylineno,file_being_parsed()); } | IF_TRANSIENT '(' expression ')' '{' instructions '}' { $$ = grib_action_create_if(grib_parser_context,$3,$6,0,1,yylineno,file_being_parsed()); } | IF_TRANSIENT '(' expression ')' '{' instructions '}' ELSE '{' instructions '}' { $$ = grib_action_create_if(grib_parser_context,$3,$6,$10,1,yylineno,file_being_parsed()); } ; -when_block : +when_block: WHEN '(' expression ')' set semi { $$ = grib_action_create_when(grib_parser_context,$3,$5,NULL); } | WHEN '(' expression ')' '{' set_list '}' { $$ = grib_action_create_when(grib_parser_context,$3,$6,NULL); } | WHEN '(' expression ')' '{' set_list '}' ELSE '{' set_list '}' { $$ = grib_action_create_when(grib_parser_context,$3,$6,$10); } ; -set : SET IDENT '=' expression { $$ = grib_action_create_set(grib_parser_context,$2,$4,0); free($2); } +set: SET IDENT '=' expression { $$ = grib_action_create_set(grib_parser_context,$2,$4,0); free($2); } | SET_NOFAIL IDENT '=' expression { $$ = grib_action_create_set(grib_parser_context,$2,$4,1); free($2); } ; -set_list : set semi +set_list: set semi | set_list set semi { $1->next = $2; $$ = $1; } ; -default : empty { $$ = NULL ;} +default: empty { $$ = NULL ;} | '=' argument_list { $$ = $2 ;} ; -flags : empty { $$ = 0 ; } +flags: empty { $$ = 0 ; } | ':' flag_list { $$ = $2; } ; -flag_list : flag +flag_list: flag | flag_list ',' flag { $$ = $1 | $3; } ; @@ -691,16 +691,16 @@ flag: READ_ONLY { $$ = GRIB_ACCESSOR_FLAG_READ_ONLY; } | DOUBLE_TYPE { $$ = GRIB_ACCESSOR_FLAG_DOUBLE_TYPE; } ; -list_block : IDENT LIST '(' expression ')' '{' instructions '}' { $$ = grib_action_create_list(grib_parser_context,$1,$4,$7); free($1); } +list_block: IDENT LIST '(' expression ')' '{' instructions '}' { $$ = grib_action_create_list(grib_parser_context,$1,$4,$7); free($1); } ; -while_block : WHILE '(' expression ')' '{' instructions '}' { $$ = grib_action_create_while(grib_parser_context,$3,$6); } +while_block: WHILE '(' expression ')' '{' instructions '}' { $$ = grib_action_create_while(grib_parser_context,$3,$6); } ; -trigger_block : TRIGGER '(' argument_list ')' '{' instructions '}' { $$ = grib_action_create_trigger(grib_parser_context,$3,$6); } +trigger_block: TRIGGER '(' argument_list ')' '{' instructions '}' { $$ = grib_action_create_trigger(grib_parser_context,$3,$6); } ; -concept_block : CONCEPT IDENT '{' concept_list '}' flags { $$ = grib_action_create_concept(grib_parser_context,$2,$4,0,0,0,0,0,0,$6,0); free($2); } +concept_block: CONCEPT IDENT '{' concept_list '}' flags { $$ = grib_action_create_concept(grib_parser_context,$2,$4,0,0,0,0,0,0,$6,0); free($2); } | CONCEPT IDENT '(' IDENT ')' '{' concept_list '}' flags { $$ = grib_action_create_concept(grib_parser_context,$2,$7,0,0,$4,0,0,0,$9,0); free($2);free($4); } | CONCEPT IDENT '(' IDENT ',' STRING ',' IDENT ',' IDENT ')' flags { $$ = grib_action_create_concept(grib_parser_context,$2,0,$6,0,$4,$8,$10,0,$12,0); free($2);free($6);free($4);free($8);free($10); } | CONCEPT IDENT '(' IDENT ',' STRING ',' IDENT ',' IDENT ',' IDENT ')' flags { $$ = grib_action_create_concept(grib_parser_context,$2,0,$6,0,$4,$8,$10,$12,$14,0); free($2);free($6);free($4);free($8);free($10);free($12); } @@ -709,7 +709,7 @@ concept_block : CONCEPT IDENT '{' concept_list '}' flags { $$ = grib_action_crea | CONCEPT IDENT '.' IDENT '(' IDENT ',' STRING ',' IDENT ')' flags { $$ = grib_action_create_concept(grib_parser_context,$4,0,$8,$2,$6,$10,0,0,$12,0); free($4);free($8);free($6);free($10); free($2);} | CONCEPT IDENT '.' IDENT '{' concept_list '}' flags { $$ = grib_action_create_concept(grib_parser_context,$4,$6,0,$2,0,0,0,0,$8,0); free($2);free($4); } | CONCEPT IDENT '.' IDENT '(' IDENT ')' '{' concept_list '}' flags { $$ = grib_action_create_concept(grib_parser_context,$4,$9,0,$2,$6,0,0,0,$11,0); free($2);free($4);free($6); } - |CONCEPT_NOFAIL IDENT '{' concept_list '}' flags { $$ = grib_action_create_concept(grib_parser_context,$2,$4,0,0,0,0,0,0,$6,1); free($2); } + | CONCEPT_NOFAIL IDENT '{' concept_list '}' flags { $$ = grib_action_create_concept(grib_parser_context,$2,$4,0,0,0,0,0,0,$6,1); free($2); } | CONCEPT_NOFAIL IDENT '(' IDENT ')' '{' concept_list '}' flags { $$ = grib_action_create_concept(grib_parser_context,$2,$7,0,0,$4,0,0,0,$9,1); free($2);free($4); } | CONCEPT_NOFAIL IDENT '(' IDENT ',' STRING ',' IDENT ',' IDENT ')' flags { $$ = grib_action_create_concept(grib_parser_context,$2,0,$6,0,$4,$8,$10,0,$12,1); free($2);free($6);free($4);free($8);free($10); } | CONCEPT_NOFAIL IDENT '(' IDENT ',' STRING ',' IDENT ')' flags { $$ = grib_action_create_concept(grib_parser_context,$2,0,$6,0,$4,$8,0,0,$10,1); free($2);free($6);free($4);free($8); } @@ -720,32 +720,32 @@ concept_block : CONCEPT IDENT '{' concept_list '}' flags { $$ = grib_action_crea ; -concept_list : concept_value +concept_list: concept_value | concept_list concept_value { $$ = $2; $2->next = $1; } ; -hash_array_list : hash_array_value +hash_array_list: hash_array_value | hash_array_list hash_array_value { $$ = $2; $2->next = $1; } ; -hash_array_block : HASH_ARRAY IDENT '{' hash_array_list '}' flags { $$ = grib_action_create_hash_array(grib_parser_context,$2,$4,0,0,0,0,0,0,$6,0); free($2); } +hash_array_block: HASH_ARRAY IDENT '{' hash_array_list '}' flags { $$ = grib_action_create_hash_array(grib_parser_context,$2,$4,0,0,0,0,0,0,$6,0); free($2); } | HASH_ARRAY IDENT '(' IDENT ',' STRING ',' IDENT ',' IDENT ')' flags { $$ = grib_action_create_hash_array(grib_parser_context,$2,0,$6,0,$4,$8,$10,0,$12,0); free($2);free($6);free($4);free($8);free($10); } ; -case_list : case_value +case_list: case_value | case_list case_value { $$ = $2; $2->next = $1; } ; -case_value : CASE arguments ':' instructions { $$ = grib_case_new(grib_parser_context,$2,$4); } +case_value: CASE arguments ':' instructions { $$ = grib_case_new(grib_parser_context,$2,$4); } ; -switch_block : +switch_block: SWITCH '(' argument_list ')' '{' case_list DEFAULT ':' instructions '}' { $$ = grib_action_create_switch(grib_parser_context,$3,$6,$9); } | SWITCH '(' argument_list ')' '{' case_list DEFAULT ':' '}' { $$ = grib_action_create_switch(grib_parser_context,$3,$6,grib_action_create_noop(grib_parser_context,"continue")); } | SWITCH '(' argument_list ')' '{' case_list '}' { $$ = grib_action_create_switch(grib_parser_context,$3,$6,0); } ; - concept_value : STRING '=' '{' concept_conditions '}' { +concept_value: STRING '=' '{' concept_conditions '}' { $$ = grib_concept_value_new(grib_parser_context,$1,$4); free($1);} | IDENT '=' '{' concept_conditions '}' { $$ = grib_concept_value_new(grib_parser_context,$1,$4); free($1);} @@ -755,28 +755,28 @@ switch_block : char buf[80]; sprintf(buf,"%g",(double)$1); $$ = grib_concept_value_new(grib_parser_context,buf,$4);} ; -concept_conditions : concept_condition +concept_conditions: concept_condition | concept_condition concept_conditions { $1->next = $2; $$ = $1; } ; -concept_condition : IDENT '=' expression ';' { $$ = grib_concept_condition_new(grib_parser_context,$1,$3,0); free($1); } +concept_condition: IDENT '=' expression ';' { $$ = grib_concept_condition_new(grib_parser_context,$1,$3,0); free($1); } | IDENT '=' '[' integer_array ']' ';' { $$ = grib_concept_condition_new(grib_parser_context,$1,0,$4); free($1); } ; -hash_array_value : STRING '=' '[' integer_array ']' { +hash_array_value: STRING '=' '[' integer_array ']' { $$ = grib_integer_hash_array_value_new(grib_parser_context,$1,$4); free($1);} | IDENT '=' '[' integer_array ']' { $$ = grib_integer_hash_array_value_new(grib_parser_context,$1,$4); free($1);} ; -string_or_ident : SUBSTR '(' IDENT ',' INTEGER ',' INTEGER ')' { $$ = new_accessor_expression(grib_parser_context,$3,$5,$7); free($3); } +string_or_ident: SUBSTR '(' IDENT ',' INTEGER ',' INTEGER ')' { $$ = new_accessor_expression(grib_parser_context,$3,$5,$7); free($3); } | IDENT { $$ = new_accessor_expression(grib_parser_context,$1,0,0); free($1); } | SUBSTR '(' STRING ',' INTEGER ',' INTEGER ')' { $$ = new_sub_string_expression(grib_parser_context,$3,$5,$7); free($3); } | STRING { $$ = new_string_expression(grib_parser_context,$1); free($1); } ; -atom : string_or_ident +atom: string_or_ident | INTEGER { $$ = new_long_expression(grib_parser_context,$1); } | FLOAT { $$ = new_double_expression(grib_parser_context,$1); /* TODO: change to new_float_expression*/} @@ -789,11 +789,11 @@ atom : string_or_ident ; -power : atom '^' power { $$ = new_binop_expression(grib_parser_context,&grib_op_pow,NULL,$1,$3); } +power: atom '^' power { $$ = new_binop_expression(grib_parser_context,&grib_op_pow,NULL,$1,$3); } | atom ; -factor : factor '*' power { $$ = new_binop_expression(grib_parser_context,&grib_op_mul,&grib_op_mul_d,$1,$3); } +factor: factor '*' power { $$ = new_binop_expression(grib_parser_context,&grib_op_mul,&grib_op_mul_d,$1,$3); } | factor '/' power { $$ = new_binop_expression(grib_parser_context,&grib_op_div,&grib_op_div_d,$1,$3); } | factor '%' power { $$ = new_binop_expression(grib_parser_context,&grib_op_modulo,NULL,$1,$3); } | factor BIT power { $$ = new_binop_expression(grib_parser_context,&grib_op_bit,NULL,$1,$3); } @@ -807,12 +807,12 @@ factor : factor '*' power { $$ = new_binop_expression(grib_parser_con | IS_INTEGER '(' IDENT ')' { $$ = new_is_integer_expression(grib_parser_context,$3,0,0); free($3);} ; -term : term '+' factor { $$ = new_binop_expression(grib_parser_context,&grib_op_add,&grib_op_add_d,$1,$3); } +term: term '+' factor { $$ = new_binop_expression(grib_parser_context,&grib_op_add,&grib_op_add_d,$1,$3); } | term '-' factor { $$ = new_binop_expression(grib_parser_context,&grib_op_sub,&grib_op_sub_d,$1,$3); } | factor ; -condition : condition GT term { $$ = new_binop_expression(grib_parser_context,&grib_op_gt,&grib_op_gt_d,$1,$3); } +condition: condition GT term { $$ = new_binop_expression(grib_parser_context,&grib_op_gt,&grib_op_gt_d,$1,$3); } /* | condition '=' term { $$ = new_binop_expression(grib_parser_context,&grib_op_eq,$1,$3); } */ | condition EQ term { $$ = new_binop_expression(grib_parser_context,&grib_op_eq,&grib_op_eq_d,$1,$3); } | condition LT term { $$ = new_binop_expression(grib_parser_context,&grib_op_lt,&grib_op_lt_d,$1,$3); } @@ -828,29 +828,29 @@ condition : condition GT term { $$ = new_binop_expression(grib_parser_con | term ; -conjonction : conjonction AND condition { $$ = new_logical_and_expression(grib_parser_context,$1,$3); } +conjunction: conjunction AND condition { $$ = new_logical_and_expression(grib_parser_context,$1,$3); } | condition ; -disjonction : disjonction OR conjonction { $$ = new_logical_or_expression(grib_parser_context,$1,$3);} - | conjonction +disjunction: disjunction OR conjunction { $$ = new_logical_or_expression(grib_parser_context,$1,$3);} + | conjunction ; -expression : disjonction +expression: disjunction ; /* */ -rule : fact +rule: fact | conditional_rule ; -rule_entry : IDENT '=' expression ';' { $$ = grib_new_rule_entry(grib_parser_context,$1,$3); free($1); } +rule_entry: IDENT '=' expression ';' { $$ = grib_new_rule_entry(grib_parser_context,$1,$3); free($1); } | SKIP ';' { $$ = grib_new_rule_entry(grib_parser_context,"skip",0);} ; -rule_entries : rule_entry +rule_entries: rule_entry | rule_entry rule_entries { $1->next = $2; $$ = $1; } ; @@ -861,7 +861,7 @@ fact: rule_entry { $$ = grib_new_rule(grib_parser_context,NULL,$1); } conditional_rule: IF '(' expression ')' '{' rule_entries '}' { $$ = grib_new_rule(grib_parser_context,$3,$6); } ; -rules : rule +rules: rule | rule rules { $1->next = $2; $$ = $1; } ; @@ -895,11 +895,7 @@ static grib_hash_array_value *_reverse_hash_array(grib_hash_array_value *r,grib_ return _reverse_hash_array(v,r); } - static grib_hash_array_value* reverse_hash_array(grib_hash_array_value* r) { return _reverse_hash_array(r,NULL); } - - - diff --git a/src/makeyacc b/src/makeyacc index 747c95df4..14f8525ce 100755 --- a/src/makeyacc +++ b/src/makeyacc @@ -1,7 +1,5 @@ set -xe -# We use flex and bison - export LEX=flex export LEX_OUT=gribl.c $LEX -o gribl.c gribl.l @@ -17,5 +15,13 @@ sed 's/fgetc/getc/g' < grib_yacc1.c > grib_yacc.c rm -f grib_yacc1.c sed 's/yy/grib_yy/g' < y.tab.h > grib_yacc.h rm -f y.tab.c y.tab.h + +set +x +echo "---------------------------------------------" +# We use flex and bison +echo "Did you use the latest YACC and FLEX modules?" +echo " module avail bison" +echo " module avail flex" + echo echo ALL OK